diff --git a/2.TCGA-process.ipynb b/2.TCGA-process.ipynb
index ce7a9d3..9e2757a 100755
--- a/2.TCGA-process.ipynb
+++ b/2.TCGA-process.ipynb
@@ -931,7 +931,8 @@
],
"source": [
"# Number of samples with at least one mutation\n",
- "snp_mutation_df.sample_id.nunique()"
+ "samples_with_mutation_calls = sorted(set(snp_mutation_df.sample_id))\n",
+ "len(samples_with_mutation_calls)"
]
},
{
@@ -1211,7 +1212,7 @@
{
"data": {
"text/plain": [
- "(9093, 20224)"
+ "(9104, 20224)"
]
},
"execution_count": 22,
@@ -1226,6 +1227,7 @@
" columns='entrez_gene_id',\n",
" values='count',\n",
" fill_value=0)\n",
+ " .reindex(samples_with_mutation_calls, fill_value=0)\n",
" .astype(bool).astype(int)\n",
")\n",
"gene_mutation_mat_df.columns = gene_mutation_mat_df.columns.astype(str)\n",
@@ -1514,7 +1516,7 @@
"\n",
"Find samples with both mutation and expression data.\n",
"\n",
- "We assume that if a sample was not in the `MC3` data, it was not assayed for mutation. Hence, zero-mutation cancers are excluded even if they have mutation data."
+ "We assume that if a sample was not in the `MC3` data, it was not assayed for mutation ([more info](https://github.com/cognoma/cancer-data/issues/43#issuecomment-380957274))."
]
},
{
@@ -1525,7 +1527,7 @@
{
"data": {
"text/plain": [
- "8388"
+ "8397"
]
},
"execution_count": 31,
@@ -1597,8 +1599,8 @@
"
A1BG | \n",
" alpha-1-B glycoprotein | \n",
" protein-coding | \n",
- " 6.540659 | \n",
- " 2.308643 | \n",
+ " 6.540815 | \n",
+ " 2.307743 | \n",
" \n",
" \n",
" 100 | \n",
@@ -1606,8 +1608,8 @@
" ADA | \n",
" adenosine deaminase | \n",
" protein-coding | \n",
- " 7.445200 | \n",
- " 1.538660 | \n",
+ " 7.444250 | \n",
+ " 1.538879 | \n",
"
\n",
" \n",
"\n",
@@ -1621,8 +1623,8 @@
"\n",
" mean_expression stdev_expression \n",
"sample \n",
- "1 6.540659 2.308643 \n",
- "100 7.445200 1.538660 "
+ "1 6.540815 2.307743 \n",
+ "100 7.444250 1.538879 "
]
},
"execution_count": 34,
@@ -1679,7 +1681,7 @@
" alpha-1-B glycoprotein | \n",
" protein-coding | \n",
" 54 | \n",
- " 0.006438 | \n",
+ " 0.006431 | \n",
" \n",
" \n",
" 2 | \n",
@@ -1688,7 +1690,7 @@
" alpha-2-macroglobulin | \n",
" protein-coding | \n",
" 198 | \n",
- " 0.023605 | \n",
+ " 0.023580 | \n",
"
\n",
" \n",
"\n",
@@ -1702,8 +1704,8 @@
"\n",
" n_mutations mutation_freq \n",
"entrez_gene_id \n",
- "1 54 0.006438 \n",
- "2 198 0.023605 "
+ "1 54 0.006431 \n",
+ "2 198 0.023580 "
]
},
"execution_count": 35,
@@ -1722,6 +1724,110 @@
"y_gene_df.head(2)"
]
},
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "### Cancer type (disease) stats"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 36,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " | \n",
+ " acronym | \n",
+ " disease | \n",
+ " n_samples | \n",
+ " n_clinical_samples | \n",
+ " n_expression_samples | \n",
+ " n_mutation_samples | \n",
+ " median_mutations | \n",
+ " mean_mutations | \n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " 0 | \n",
+ " ACC | \n",
+ " adrenocortical cancer | \n",
+ " 79 | \n",
+ " 92 | \n",
+ " 79 | \n",
+ " 92 | \n",
+ " 27.0 | \n",
+ " 68.000000 | \n",
+ "
\n",
+ " \n",
+ " 1 | \n",
+ " BLCA | \n",
+ " bladder urothelial carcinoma | \n",
+ " 403 | \n",
+ " 409 | \n",
+ " 405 | \n",
+ " 407 | \n",
+ " 164.0 | \n",
+ " 228.168734 | \n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
"
+ ],
+ "text/plain": [
+ " acronym disease n_samples n_clinical_samples \\\n",
+ "0 ACC adrenocortical cancer 79 92 \n",
+ "1 BLCA bladder urothelial carcinoma 403 409 \n",
+ "\n",
+ " n_expression_samples n_mutation_samples median_mutations mean_mutations \n",
+ "0 79 92 27.0 68.000000 \n",
+ "1 405 407 164.0 228.168734 "
+ ]
+ },
+ "execution_count": 36,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "sample_to_acronym = dict(zip(clinmat_df.sample_id, clinmat_df.acronym))\n",
+ "\n",
+ "def get_cancer_count_column(sample_ids):\n",
+ " \"\"\"\n",
+ " sample_ids is a pandas.Series\n",
+ " \"\"\"\n",
+ " sample_ids = pandas.Series(sample_ids)\n",
+ " acronyms = sample_ids.map(sample_to_acronym)\n",
+ " counter = collections.Counter(acronyms)\n",
+ " counts = disease_df.acronym.map(counter)\n",
+ " return counts.fillna(0).astype(int)\n",
+ "\n",
+ "# Compute nubmer of samples per disease (cancer type)\n",
+ "disease_df['n_samples'] = get_cancer_count_column(sample_df.sample_id)\n",
+ "disease_df['n_clinical_samples'] = get_cancer_count_column(clinmat_df.sample_id)\n",
+ "disease_df['n_expression_samples'] = get_cancer_count_column(expr_df.index)\n",
+ "disease_df['n_mutation_samples'] = get_cancer_count_column(gene_mutation_mat_df.index)\n",
+ "\n",
+ "# Compute n_mutation summaries for samples in the aligned set\n",
+ "acronyms = list(pandas.Series(y_df.index).map(sample_to_acronym))\n",
+ "groups = y_df.sum(axis='columns').groupby(acronyms)\n",
+ "disease_df['median_mutations'] = disease_df.acronym.map(dict(groups.median()))\n",
+ "disease_df['mean_mutations'] = disease_df.acronym.map(dict(groups.mean()))\n",
+ "\n",
+ "# Export to TSV\n",
+ "path = os.path.join('data', 'diseases.tsv')\n",
+ "disease_df.to_csv(path, sep='\\t', float_format='%.1f', index=False)\n",
+ "\n",
+ "disease_df.head(2)"
+ ]
+ },
{
"cell_type": "markdown",
"metadata": {},
@@ -1733,7 +1839,7 @@
},
{
"cell_type": "code",
- "execution_count": 36,
+ "execution_count": 37,
"metadata": {},
"outputs": [],
"source": [
@@ -1743,7 +1849,7 @@
},
{
"cell_type": "code",
- "execution_count": 37,
+ "execution_count": 38,
"metadata": {},
"outputs": [],
"source": [
@@ -1763,7 +1869,7 @@
},
{
"cell_type": "code",
- "execution_count": 38,
+ "execution_count": 39,
"metadata": {},
"outputs": [],
"source": [
diff --git a/3.explore-mutations.ipynb b/3.explore-mutations.ipynb
index aebc654..108a49d 100644
--- a/3.explore-mutations.ipynb
+++ b/3.explore-mutations.ipynb
@@ -37,7 +37,7 @@
{
"data": {
"text/plain": [
- "(8388, 20224)"
+ "(8397, 20224)"
]
},
"execution_count": 2,
@@ -253,7 +253,7 @@
"data": {
"image/png": "iVBORw0KGgoAAAANSUhEUgAAAXIAAAEGCAYAAAB4lx7eAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADl0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uIDIuMS4xLCBodHRwOi8vbWF0cGxvdGxpYi5vcmcvAOZPmwAAIABJREFUeJzt3Xl8XGd97/HPmU0jaUb7aJctr49jx4md3WSxgxNIIdBCQ8vaS9tAl7Q39Pb2NsDlUigtUAqBJr1t6Q2kKYQ1TQgJ2QhxSOKsTuQ9jxdJlrXv+zoz5/5xZhRZtqSRPDNnlt/79fLLs8/Px5rvPHrOc37HME0TIYQQ6cthdwFCCCHOjwS5EEKkOQlyIYRIcxLkQgiR5iTIhRAizbmS/YY9PSNJXSZTXJzHwMB4Mt8y5ck2OZtsk3OT7XI2u7ZJIOA3Frov40fkLpfT7hJSjmyTs8k2OTfZLmdLxW2S8UEuhBCZToJcCCHSnAS5EEKkOQlyIYRIcxLkQgiR5iTIhRAizUmQCyFEmpMgF0KINCdBLoQQaS6mQ/SVUncCVwEmcLvW+tU5970BDM15+Ee01m1xrVKIFdrTcO4fxV3bapJciRCJs2SQK6V2Ahu01juUUpuB7wJXzn2M1npXYsoTQgixlFimVnYDDwForY8AxUqpgjn3+xNRmBBCiNjEMrVSCeybc70rcttw5HqpUur7QD3wDPA5rfWCHQ6Li/OS3nQmEJDvmvmyZZv4fd5z3n6uf/9C2+TxF5vPeftNO+pXWFV6yZafleVItW0SS5DPb51oYM2VR30G+D4wAfwMeD/wwEIvluz2j4GAn56ekaS+Z6rLpm0yMjp5ztvn//uj22ShOfVYXiMTZdPPSqzs2iaLfXnEEuRtWCPwqGqgM3pFa/0v0ctKqUeAi1gkyIUQQsRXLHPkTwK3ACiltgPtWuuRyPUypdQvlFLuyGN3AocSUqkQSTA0OkX3wARDo1PMBMN2lyNETJYckWut9yql9iml9gJh4Dal1MeBIa31g0qpZ4AXlVJTwBvIaFykoZlgiB8+fZwnXz09e5vb6eCqCytYU1WwyDOFsF9M68i11nfMu2n/nPu+BnwtnkUJkUy9gxP87X2v0dQ+TEGem7oKP1MzIZo7hnlufwfdAxNctimA0yHHz4nUlPRzdgqRSoKhMP/ys0M0dYywc1s11WX5uF1WYG+pL+HZhjZ0yyCmCVdtqbC5WiHOTYYYIqs9sreZpo4Rrr+0lv9206bZEAco9Hl4147VFPk8HDs9SHvvmI2VCrEwCXKRtU62D/HI3lOUFuTwR++76JyPcTkdXL21CsOAFw91Mh0MJblKIZYmQS6yUigc5juPHsU0TW69eTP5ue4FH1ta6GXr2lLGJoPse7MniVUKERsJcpGVXjjYSUffONdtq0atKl7y8VvXlVKY7+FE2xDjk8EkVChE7CTIRdYJhsL87Pkm3C4H7716TUzPcToMLqgvxjTh2OnBBFcoxPJIkIuso1sGGRiZ4oZLayn258T8vDVVBbhdDo63DhIOL9hOSIikkyAXWWU6GOJQYz+5OS5+46rVy3qu2+VgXU0BE1MhWrqk/4hIHRLkIqscPz3E1EyId15Rh2+RHZwLUXXWfLpukekVkTokyEXWCIdN3jw1gMtp8PZLalf0GoU+D1WleXQNTMi6cpEyJMhF1mjpHmVsMsja6sIVjcaj1tUUAvD6MVmKKFKDHKIvssbR5n4ALlhdfFbfcb/Pu2Dv8vlqyvIxDNh/speb31Yf7zKFWDYZkYus0DM4Qc/gJDWBfAp9nvN6rRyPk/KiXBrbhhkem45ThUKsnAS5yArRnZMXrF764J9Y1JT7MIGDjX1xeT0hzocEuch4wVCYlq4RfLluqkrz4vKadYF8APaf6I3L6wlxPiTIRcZr6xkjGDKpr/JjGPNPQbsyBfkeyotyOdTUTzAkZxIS9pIgFxmvqWMYgDVV8TvzuWEYXLS+lMnpEFoO2Rc2kyAXGW06GKKtZ4zCfA9FvtgPx4/FtvVlgEyvCPtJkIuM1to9Sigc32mVqI11RXhcDt48NRDX1xViuSTIRUZr6rB6otRXxv8Eyi6ng3U1hbT2jDE6MRP31xciVhLkImONTwZp7x2j2J9z3mvHF7KxrgiA4zJPLmwkQS4y1pstA5gm1JX7EvYeKhLkssNT2EmCXGSsw5FD8qvK4rN2/FzWVhfgchoS5MJWEuQiYx1ptjodBgpzE/YeHreTNVUFtHSNyCnghG0kyEVG6huapKt/nMqSPByO+K5WmU+tKsI04USbjMqFPSTIRUaanVYpzU/4e22UeXJhMwlykZGOJGF+PGp9TSEOw+CYnDVI2ESCXGScsGlypHnAWnaYn5hlh3N5PS7qq/w0d44wNR1K+PsJMZ8Eucg4p7tGGZ2YYfPq4rgfzbmQ9TWFhMImzZ3DSXk/IeaSMwSJjHM0csj85jUlTM0kboQ89yxDk5H3aWwfRq2KT89zIWIlI3KRcY5FdjpuSmKgBgq9AJxslxG5SD4JcpFRwqbJ8dZBygq9FPvj2+1wMXleF7k5Lk62DWGaZtLeVwiIcWpFKXUncBVgArdrrV89x2O+DOzQWu+Ka4VCLEN77xhjk0EujrSYTRbDMAgUeWnpGqV/eIrSyAhdiGRYckSulNoJbNBa7wBuBe4+x2M2A9fFvzwhlifavCq6tjuZyoqsI0hPtg8l/b1FdotlamU38BCA1voIUKyUmt8T9OvAZ+NcmxDLdqzVCtENtYVJf+/oPHmjzJOLJItlaqUS2DfnelfktmEApdTHgWeB5ljesLg4D5fLuawiz1cgEL9TfGWKTN0mJ9uHKfR52KoqMAwDvy/2KY7lPPZcvF4PDkcrLd2jGbV9M+nfEi+ptk1iCfL5C3ENrLlylFIlwO8DNwA1sbzhwMD4cuo7b4GAn56ekaS+Z6rL1G3yyIvN9A5OsKrCx09/qZf1XL/Py8jo5HnXUBfwcaJ1iPaOIdyu9F9LkKk/K+fDrm2y2JdHLD9pbVgj8KhqoDNy+e1AAHgOeBC4JLJjVIik644MEsqLE9ftcClrawoIhsKc7h61rQaRfWIJ8ieBWwCUUtuBdq31CIDW+qda681a66uA9wGva63/ImHVCrGIrv4JAMqLE99fZSFrq6zdR7LDUyTTkkGutd4L7FNK7QXuAm5TSn1cKfW+hFcnxDJ0D0zgchqUJHH9+HzraqydrLLDUyRTTOvItdZ3zLtp/zke0wzsOv+ShFi+kfFphsamqSpNfP/xxVQU55LvtQ4MEiJZ0n9vjBDA8ciywwob58fBOjBobXUhvUOTDI1N21qLyB4S5CIjRPur2Dk/HrWu2ponb5R5cpEkEuQiIxxvHcRhQFmR/YfGr62JBrnMk4vkkDa2Iu1NTgc51TlKaaEXl9PescmehjamIy1t9+me2Z4ru7bFdJiFECsiI3KR9k62DxM2zZSYVgHwuJ0U5nvoHZogLJ0QRRJIkIu0F22UZfeOzrnKirwEQyZDo1N2lyKygAS5SHvHW4cwgEAKBXkg0gmxZ/D8D/sXYikS5CKtBUNhTrYPURPIJ8ed3GZsiwlEdrr2DE7YXInIBhLkIq2d6hxheibMhtrk9x9fTKEvB5fToFdG5CIJJMhFWoueaHnT6tQ64bHDMCgt8DI0Ns1MMGx3OSLDSZCLtHakuR+ATatSa0QOzC497BuWUblILAlykbamZkKcaBtiVYUPf57H7nLOMhvkQxLkIrEkyEXaOtE6RDBksnl1id2lnFOZBLlIEglykbaOnLKmVS6oT6358ShfrhuP2yFTKyLhJMhF2jraPIDTYbAxxVasRBmRHZ4j4zOMTszYXY7IYBLkIi2NTsxwqnOEdTWF5HhSZ/34fNHpleZOaaAlEkeCXKQl3TKACWxOsWWH80V3eDZ3yAmMReJIkIu0dKTZWj++uT41d3RGRYO8qUNG5CJxJMhF2jFNk4ONfeTmuKiv8ttdzqLyclzk5jhp7pQRuUgcCXKRdjr7x+kdmmTLmhLb+48vJbrDc2BkSjohioRJ7U+BEOdw4GQfAFvXpva0StTsPLmMykWCSJCLtPNWkJfaXElsSgqsIG/pkiAXiSGnehNpZXI6iG4ZoKQgh4YTvXaXE5OSghwAWrpGba5EZCoZkYu0crR5gLAJNWX5dpcSs7wcF75cN6dkRC4SRIJcpJUDjda0Sk3AZ3MlsTMMg9UVPnqHJhmflCM8RfxJkIu0YZomB0724XE7KIucgSddrKqwlknK9IpIBAlykTZOd48yMDJFdVk+DsOwu5xleSvIZXpFxJ8EuUgb+yM7N+vSaFolalWFVfMpGZGLBJAgF2mj4UQvTodBdSB9dnRGVZTkkeN20tItI3IRfxLkIi0Mjk7R1DHChtpCctyp2+1wIQ7DoK7cR0fvONMzIbvLERlGglykhei0yrYNAZsrWblVFT7Cpklb75jdpYgMI0Eu0sL+E9ayw23r0+NoznOJ7vCU9eQi3mI6slMpdSdwFWACt2utX51z3yeAPwRCwH7gNq21mYBaRZaamglxuLmf6rJ8yovzOHJqwO6SVmS1LEEUCbLkiFwptRPYoLXeAdwK3D3nvjzgg8C1WuurgU3AjgTVKrLU0eYBZoJhLk7j0fiehjZOtA9iGHCosY89DW3saWizuyyRIWKZWtkNPASgtT4CFCulCiLXx7XWu7XWM5FQLwQ6E1atyEoNJ3oA2L4+fefHAZwOB0W+HAZGpgib8kuriJ9YplYqgX1zrndFbps95YlS6g7gduCbWuvGxV6suDgPlyu5qw4CgdQ++YAd0mWbhMMmBxv7Kcj3cMXFNTgdBn5fYo7qTNTrzlVRksfAyBQh06DQ702L/4d0qDHZUm2bxBLk8w+hM7Dmymdprb+ilPoW8Aul1PNa6xcWerGBgfHlV3keAgE/PT2yc2mudNomje3DDIxMcfXWSvr7rLnlkdHJuL+P3+dNyOue9T65bgBOdw7jdpDy/w/p9LOSLHZtk8W+PGKZWmnDGoFHVROZPlFKlSilrgPQWk8AjwFXr7hSIeaJtqrdtr7M5kriI9rStn848V8aInvEEuRPArcAKKW2A+1a6+jXkRu4VykVPWb6CkDHvUqRtRqO9+JyGmxZkx5nA1pK8WyQy2nfRPwsObWitd6rlNqnlNoLhIHblFIfB4a01g8qpb4IPKOUCmItP3w4oRWLrNE7NEFrzyhb15bi9WTGOVA8Lif+PDf9I5OYssNTxElMnw6t9R3zbto/5757gXvjV5IQlkw4COhcSgq8nOocYWwyaHcpIkPIkZ0iZUXnxy/OkPnxqBK/zJOL+JIgFylpYirIm6cGWFXhmz15caaI/ntknlzEiwS5SEmHm/oJhc2MWa0yl6xcEfGWGXuQRNqbf7j68wc6ANi2IfOCPDfHRW6Ok/4RGZGL+JAgFyknHDZp6xkjN8dFU8cwzZ2Zd0BKSYGXtp4xRidm8EUOEhJipWRqRaScnsEJpmZC1JXnY6TZuTljVRzZ4XlaWtqKOJAgFymntcc6FL+2PP3OzRmr2SDvlpa24vxJkIuUc7p7DJfToKokz+5SEqZEglzEkQS5SCnDY9MMj01TVZqP05m5P57+fA9OhyFBLuIicz8pIi219Vjns6wN5NtcSWI5DIMifw7tfWMEQ2G7yxFpToJcpJS2XmuEWp3hQQ7WPHkwZNLZl9zWziLzSJCLlBEMhensn6DI5yHfm/lL8mSeXMSLBLlIGZ3944TDJjWBzF2tMpesXBHxIkEuUkZ0frymLPOnVWBukMtacnF+JMhFymjvtZYdBopz7S4lKTxuJ2WFXhmRi/MmQS5SwvDYNCPjM9ayQ0dmHs15LnXlPobHZxgalb4rYuUkyEVKmJ1WyYLVKnPVRY5ebZFRuTgP0jRLpIT2XivIq7NkfjxqaGwagGcb2uiLtLXdta3GzpJEGpIRubDdTDBEZ/84hT5P1nUCLJGTMYs4kCAXtjt2eohQ2KS6NLtG4wC+XDcel2N2NC7ESkiQC9sdarJOspxt0yoAhmFQUuBlZHyGmaAcqi9WRoJc2O5QUz9Oh0FFSXYsO5xvdnplREblYmUkyIWt+ocnaesZo6IkF1cGdztczOzJmIdknlysTHZ+ckTKONzUD2TntEqUjMjF+ZIgF7Y6KEFOQaQ3uaxcESslQS5sEwqHOdrcT2lBDoX5HrvLsY3DMCj25zA4OkUoLDs8xfJJkAvbNHWMMDYZZMua0ow9yXKsSgq8mCYMjkzbXYpIQxLkwjaHGq1lh1vXlthcif1KZw8MknlysXwS5MI2h5r6cRgGF6yWII+uXOmTeXKxAhLkwhajEzM0dQyzrqaAPK+0/CnyezAMGZGLlZEgF7Y40tyPacKFa2Q0DuB0OCjxe+kfnpIjPMWyxTQUUkrdCVwFmMDtWutX59x3PfBlIARo4FattfwkikUdarSWHV64ttTmSlJHoNhL3/Akp7pGWF9TaHc5Io0sOSJXSu0ENmitdwC3AnfPe8i3gVu01lcDfuCmuFcpMoppmhxq6sOX62Z1pd/uclJGoMhqUXCidcjmSkS6iWVqZTfwEIDW+ghQrJQqmHP/pVrr1sjlHkCGWGJRbT1jDI5Oc+GaEhxZvuxwrvJokLdJkIvliWVqpRLYN+d6V+S2YQCt9TCAUqoKuBH43GIvVlych8vlXFGxKxUIyKhvPju3ybMHOwHYcXH1bB1+n9e2eqLsrsHv8+LLddPYMUxZmS9l1tbL5+dsqbZNYgny+T9NBtZc+SylVDnwc+A2rXXfYi82MDC+rALPVyDgp6dHzlI+l93b5Lk3WjEMqA/kz9YxMmrvag2/z2t7DQClhV5OdY5w5ETP7AjdTnb/rKQiu7bJYl8esUyttGGNwKOqgc7olcg0y2PA57TWT66wRpElBkamaGwfRtUV4c/L3sPyFxIN75MyTy6WIZYgfxK4BUAptR1o11rP/Tr6OnCn1vqxBNQnMswbx3sAuGRjwOZKUlOg2JrekXlysRxLTq1orfcqpfYppfYCYeA2pdTHgSHgCeD3gA1KqVsjT7lfa/3tRBUs0tvrxyTIF1Pi9+JxOSTIxbLEtI5ca33HvJv2z7mcE79yRCYbm5xBtwxSWuDlQOOiu1KylsNhUF9VwPHWQSamguTmyFGvYmlyZKdImv0negmFTVZV+OwuJaVtqC3ENOF466DdpYg0IUEukub1Y70A1EmQLyratuDASfmtRcRGglwkxcRUkIONfVSV5lHkk9m4xayrKSQ3x8WBk32Yprn0E0TWkwk4kTB7GtpmL59sG2ImGKai2P610anO5XSwZU0Jr73ZTUffeFafBk/ERkbkIimaOqwVq/VVBUs8UgBcFGkmJtMrIhYS5CLhJqeDdPSNUVropSCLz825HFvXRYO81+ZKRDqQIBcJ19w5gmnCmqrU6k+RygrzPdRX+jneOsTEVNDuckSKkyAXCdfUHplWqZRpleW4aF0pobDJ4aZ+u0sRKU6CXCTU6MQMPYMTVJbkySndlumidWUANJyQ6RWxOAlykVAnI4ear6mW0fhy1Vf5KS3wsu9YD1MzIbvLESlMglwkjGmanGgdwuU0qJczAS2bwzDYcWEFU9MhGo7LqFwsTH7XFQnT0TfO2GSQ9bWFuF0yZojV3PX3Tod1OoBHXmzmys0VNlUkUp18ukTCRM89KScSXrlCXw6lBV7ae8cYHpu2uxyRoiTIRUKMTszQ0j1KYb6HQJH9p3FLZ2urCzBNePlol92liBQlQS4S4qXDnYTDJutrC1Pm3JPpqr7Kj2FY21SIc5EgF3EXNk2eeaMNh2GNJsX5yc1xUV2aT1PHCB19Y3aXI1KQBLmIuyNN/XT0jVNfVSAnRoiT6Bfii4dlekWcTYJcxN1Tr7UCcMHqYpsryRx1FT5yPE5rykpa24p5JMhFXHX0jXGwsY/1tYWUFspOznhxOR1cujFA79Dk7GogIaIkyEVcPb3PGo3feFmdzZVknh0XVgLwouz0FPNIkIu4GZ2Y4YWDnZQU5HDJxjK7y8k4F6wqpsjn4dWj3cwEw3aXI1KIBLmImydfbWFqJsQ7Ll+F0yE/WvH26wPtVJflMz4V5AdPHzvjCFCR3eTTJuJibHKGp/e1UpDnZue2arvLyVjR1SuN7cM2VyJSiQS5iItfvtbKxFSIm65cTY7baXc5GaukwEuRz0Nr9xhT09IRUVgkyMV5G58M8tSrp/Hlutm1XUbjiba2uoCwaXKqc8TuUkSKkCAX5+2p104zPhXkHZfX4fXIAUCJFu3t3tgh0yvCIkEuzsvQ2DSPv9xCQZ6b3ZfW2l1OVsj3uqksyaN7YIKewQm7yxEpQIJcnJefv9DE1EyI916zRg7HT6LoTk9ppCVATiwhzkPXwDjPNrTjz3MDyHK4JFpV6ePlIwZ7D3dx89vqpcNklpMRuVixB55tJBQ22b4xgMMhQZJMHpeTunIfXf3jNMtOz6wnQS5WRLcM8Nqb3aytLmB1hc/ucrJSdHpl7yGZXsl2EuRi2cJhk/t/eRyAD9+wUX6tt0l1WT7+PDevHO0iGJJD9rNZTEGulLpTKfWiUmqvUuryefd5lVL3KaVeS0yJItX8en87p7tHufrCSjlxhI0cDoMrLqhgZHyGw039dpcjbLRkkCuldgIbtNY7gFuBu+c95GvAGwmoTaSgJ15t4Ue/OoHLaVBVli87OG22Y4t0RBSxjch3Aw8BaK2PAMVKqbnDsM8ADyagNpGC9p/oZWomxEXrSsnzyqInu62p8lNRkscbx3uZmAraXY6wSSyfxEpg35zrXZHbhgG01iNKqdJY37C4OA+XK7m9OAIBf1LfLx2sZJuc6hxGtwxS6PNwxZYqnM7M2sXi96XfiTDKywu48YpVfO/xNznaOsw7r1od9/eQz8/ZUm2bxBLk8/dkGcCKzzU1MDC+0qeuSCDgp6dHlmfNtZJtYpom//cnDZgmXLIxwPjEdIKqs4ff52VkdNLuMpatp2eEbWtL+D7w2AuNXLKuJK6vL5+fs9m1TRb78oglyNuwRuBR1YBMyKWh6Hz2/NData1mwcdGtXSNcKR5gOqyPGoD+YktVCxLSYGXLWtLONTYT1vvGDVl8v+TbWL53fhJ4BYApdR2oF1rLV/RWWRyOshLh7twGHDZpnJZbpiCrr3I6jr53P52mysRdlhyRK613quU2qeU2guEgduUUh8HhrTWDyqlfgLUAUoptQf4ttb6/kQWLZLHNE32HupicjrEJSpAkS/H7pLEHNHfnELhMDluJ882tBMozmX3JdLALJvEtOxAa33HvJv2z7nvA3GtSKSU461DtHaPUlmSx5b6YrvLEQtwOhysrS7g6KkBWrtH7S5HJFlmLTsQcdXRN8arR7vxuBxcvbVSplRS3PraQgB0y6DNlYhkkyAX59TVP84zr7dhmnDtxdXk57rtLkksodifQ2VpHp3947R0yW6sbCJBLs6iWwZ4el8robDJzu3V1MgqlbQRnf564pUWmysRySRBLs6w91AH//jDBkJhk+surqauXDobppPqsnwKfR5eOdpN/3D6rYsXKyNBLgBrdcrDLzTx/x45isft5IbLalldmVpHr4mlGYbB5voSQmGTX+5rtbsckSQS5ALTNPnJMyd56Lkmygq9fPZjl1JVKtMp6WpttZ+CfA/PNrQxOjFjdzkiCSTIs5xpmnzvqWM8/koLVaV5fPqjl1ItRwamNafDwbuuXMXEVIifv9BsdzkiCSTIs5hpmrxytJtnXm+jrtzHX3/4Eor9csBPJrj+klrKCr386vVWupPc30gknwR5ljJNk9eP9aJbBqkN5PNXH9pOQb7H7rJEnLhdDm7ZtY5Q2OSnzzbaXY5IMAnyLHWwsZ/DTf0U5Ln5yw9uxyfrxDPKnoY2xiZnKCv08tqb3fzomeN2lyQSSII8CzUc66HheC++XDc3XlFHoYzEM5JhGFy2qRyAvQc7mZoO2VyRSBQJ8ixz7PQgLxxoJzfHxY2X15LvlZF4JisvzmVzfTEj4zP8eM8Ju8sRCSJBnkWOtw7x0uEuvB4nN15eiz9PRuLZYPuGMop8Hp55vY1DjX12lyMSQII8S7xwsIMXD3XicTv4zevWSTvaLOJ0Orj6oiqcDoN/f+QIvUMTdpck4kzOnpsF9h7q4DuPHsXjdvCOy+soK8o94wxB888GJDJPaYGXD+7ewPefOsZdDxzk0x+9BK9HPv6ZQkbkGe7Fw53c88hR8rwubrysjpKC9DvBsIiPt19Sw67tNZzuHuWeR44SNld86l2RYuQreYUWGsWe6/yXdtl7qIN7Hj1Kbo6Lv/zgNpo7pbVpNnt2fzu1gXwqSnLZd6yHr/+wgcs2Bbh+u5xNKN1JkKegc31JLOcLIhQO88CzjTz+cstsiNdXFkiQCxwOg13banjilRaOnhrA63FKkGcACfIkOd9wjvU3gI6+Mb735DGOnhqgoiSPP3//VumdIs6Q47G6Wz72UgtvHO/l2YY2dqbQb5Ji+STIM4BpmpzqGuHpfa3sPdSJacLF60r5xHu2kOeV/2Jxtjyvmxsuq+Pxl1u47wmNL9fNparc7rLECsmnPE2NT87Q1T9BS+cI+0/2MTAyBUBNIJ/3XbuW7RvK5BybYlGFPg+7L6vl6X2t/NvDh/mL33FzwWo5wXY6kiBPcTPBMB19YwyNTTM2McPw2AyDo1NMzjncOt/rYseWSi5VAbatL+PXB9p5dn+7jVWLdFFW6OXP3r+Vb/54P3c9cIC//vAlckKRNCRBnqL6hiY53NxPa/cowdCZy8R8uW5qy3MpL/LyG1etZnWFH5dTVpKKldlSX8In3rOZf/vZYe78cQOf/tilVBTn2V2WWAYJ8hQzPD7Ni4c6Od46BIA/z019pZ9AUS75uW58uW7crrdCe111oV2ligwR3ZF+xeZyXj7Szd/dt4+brqzjXVfV21uYiJkE+QqEwyavvdnN8dYhSgpyqA34WFdTENORckOjU7xytJvxySBPvnIar8dJbbmPsgIv+vQgx04PEgqbFPo8XL6pnKrSPJnrFkmhVhUzOR1i/4k+nnjlNFdeUEkgINMs6UCCfJmmZ0L8+yNHONI8gMftoKt/gq7+CY4OZ2QOAAAM3ElEQVS3DnHTlXWLPrexfZiXDncSDJnkuJ2Ypknv0MQZ67tXV/opL85F1RXhcEiAi+S6aF0pYRMOnuzjq/e/zpdvuwan3UWJJUmQL0MoHOZbPz0QWaOdy/XbawiFTQ6c7EO3DPL0a63svLiG3JwzN6tpmrxxrIeDjf24nQ6uu7iS+qoCdm2rIRgK09k/Ts/ABPVVBRT7c6T3ibCNYRhs31CG04CGE3381V3P8ae/eSHra2UKL5XJHrJleHTvKY6eGmDb+jJuuKwWj9tJbo6LKy4oZ31tIX3DU3zrJ/sZGZ+efY5pmjz4XCMHG/vx57l599tWU19VMHu/y+mgNuBj+8aAnC9TpIyL1pfx4Rs2MDw2zVfvf51f72/HlN4sKUuCPEYn2oZ4+IVmSgpy+MObL8DpeGvTGYbBVVsqWF3p51jrEH/z3VfRLQMcbx3kPx7XPLL3FP48N++8ok7OiynSxg2X1fHFT+zA63Fy72NvcueP99PVLydyTkUytRKD8ckg//7zw5imySdu3nzOs+o4DIPrLq5ibGOAB59r5Kv3vzF7X3lxLtdeXEWenI1HpJE9DW34fV7ecUUdLx3u4lBTP5+752Wuuaia67fXUFfus7tEESFBvoSZYIi7/+sAPYOTvHvHatSqhY98MwyDm99Wz/qaQn7x0ikCRblcuKaEzfUlvHikM4lVCxE//jwPN1xWy6muUQ439rHnjTb2vNHGqgofF64pZXN9MfWVBdIOwkay5RcRDpt8++EjvNkyyKUbA7zv2rUxPW/T6mI2yaHOIoMYhkF9pZ9V5T7aesc4dnqQ1u5RWrpG+cVLpwAIFHlZVeFnVYWf1RU+6sr9FPk8snw2CWIKcqXUncBVgAncrrV+dc59NwB/D4SAX2it/zYRhSZbR98YP/rVCQ6c7GPTqiI++d7NshxQZD2Hw6Cu3EdduY+ZYJjugXE6+yfoH56kf3iKfbqHfbpn9vEFeW6qSq0e6BXFeZQX51FenEuhz4PP65bPVJwsGeRKqZ3ABq31DqXUZuC7wJVzHvJPwDuBNuB5pdQDWusjiSh2fHKGyekQobBJMBQmFDaZngkzPjXD+GSQsckg45Mzs39PTofIy/UwMxPE63aR5438yYledpOX48LlNAiGTMangrT3jtHYPsTLR7oJmyYb64r4s/dfhNslq2mFmMvtclAT8FETsObKTdNkfDJI/8jUbLAPjEyhTw+iTw+e9XzDAH+uG3++B3+uG4/bSc6cPx6P44zrOW4nHrcTr8eJ2+XA4TBwGAYOh7WPymEYGA4Dh8GivwXE8tURXZ9zrpU6k2Ho7x9j/j0Ow6rDiLz/mZetc6f6chOznyyWEflu4CEArfURpVSxUqpAaz2slFoL9GutTwMopR6NPD7uQd5wvJe7Hjhw1sZLlMqSPH575zou2ShdBIWIhWEY5Oe6yc91n7EjNBQKMzI+w/D4NMPjM4yOTzM5HbL+TAXpGZigrWfMxsqT57euXcN7r14T99eNJcgrgX1zrndFbhuO/N0z575OYN1iLxYI+FeUijcG/Nz4tvhvgJX6wI2bEvb45b52vJ8vhEgvsawjnx+8Bm/95rHYfUIIIZIgliBvwxp5R1VjjbzPdV8N0BGf0oQQQsQiliB/ErgFQCm1HWjXWo8AaK2bgQKlVL1SygXcHHm8EEKIJDFi6Z+glPoKcB0QBm4DtgNDWusHlVLXAV+NPPQBrfU/JqpYIYQQZ4spyIUQQqQuaZolhBBpToJcCCHSXEb3WlmstUC2Ukp9BPhfQBD4nNb6FzaXlHRKqUuBnwEnIjcd1Fr/eeS+dwKPa62z5igwpVQucBj4IvA08J+AE2sF2se01lNKqd8F/hJrP9nTWuvP2lVvoiil/gG4FisXv4x1YOO3sfLjGPAnWuugUupLwPVYA+EHtdb/oJQqBO4HCoFR4MNa6/5k1Z6xI/K5rQWAW4G7bS7JdkqpUuDzwDVYK4x+y96KbOMDfqq13hX5Ew1xL/Bpsm8J7f8G+iKXvwj8s9b6WqAZ+AOlVB7WgobdwA7ghki7joyhlLoeuDCSFzcB38T6N39Za70TaAF+Ryl1IfB2rfXVwNXA7yulKoFPAXu01tcADwN/ncz6MzbImddaAChWShUs/pSMdwPwS631iNa6Q2v9SbsLsslCZxT+DPDPwPQC92ccpdQmYDPwaOSmXVhBBNZvLTdorceBrZGfGxMr9EuTXWuC/Rr4QOTyAJAPbAReidz2BPAOYAjwKqVyAC/WbyjjWHnzYOSxP8P6rCVNJgf5/PYB0dYC2aweMJRSP1JKPaeU2m13QTbxAdcopR5TSv1aKXW9UmojcLHW+id2F5dkXwf+x5zr+VrrqcjlTqAKIHrsSGREWg+8lMQaE05rHdJaRxu+3Ar8AjgAvDty2zuBikhfqZ8ApyJ//lVrPb9dyex2S5ZMDnJpH3A2A6gFPgJ8HPiuUipr5oLn2A98UWv9G1gf2v8AvsWZgZbxlFK/B7yotW6ac/Pcz8gZnxml1AbgB1jzvzPJqTK5lFK/Cfwh8GfA/8SaTvkVVlYakUaB7wPWAuuBP1ZKlXNm3iQ9azJ5Z+dirQWyVRewV2sdBE4qpUaAANBtb1nJpbU+ChyNXD6mlJrC+rX5+0opgCql1LORudFM9m5grVLqZqwv+ClgTCmVq7WeYE7LDaVULdZU5ce01g12FZxIkR3dnwVu0loPYU2j3DznvirgcuDlyHQTSqkDwIW8lTdD2NCqJJOD/EngC8C/zW8tkMWeBO5VSn0VKMGaYui1t6TkU0r9AeDTWv9TZEeVB8jVWk9H7m/OghBHa/270ctKqb/B2rn5NuC3ge9F/n488pB7sFZtvJ7cKpMjsurka1j7BPojt30BeEVr/Sjw+1ireTqBTymlHFgre7YCjVifrQ8AX+LM7ZYUGX1k5/zWAlrr/TaXZDul1B8BHwLygC9prR9e4ikZRylVDHwf64ssB/jC3GWYkSCvt6k8W8wJ8ieA+7B25J3CCrA1QANv7fgD+EYm/ewopT4J/A3WMsOoz2OF+zTwjNb6c5HHfgG4EWsK5Uda628qpXxYX36lwCDw0cioPikyOsiFECIbZPLOTiGEyAoS5EIIkeYkyIUQIs1JkAshRJqTIBdCiDQnQS7SnlKqWin19hge99HI39uUUnclvjJrKaNSav0Kn+tRSn1TKWVGTqUoxDlJkItMcD2waJArpWqAPwbQWjdEOx6muG9g9fsQYlHyLS8SQim1C7gDaAW2ADNYhz6PL/D4Uayj4t6DdaTl3wOfABTWEYVPKqX2YB3E9EulVD3wPFb/6L/D6oPRj3Wgz39i/WwXAt/SWt+H1St6q1LqPuA7kde5JtIs61+xBjUu4A6t9fNKqXuBdqwj9zYC90T6Tl8PfAWr450X+O+x9LlXSjmxWqNeitWH41da689Fet3cjdUeth04Doxprf838Bmt9bBS6p55r9Uc+fdcCZQBn9JaP7NUDSJzyYhcJNIOrDDaAYSwOsgtJB94LdLneQx4j9b6XcDfAn+y0JMiDZ/uBf5Ta/0NrJ46d2ut347VJ+MbkYd+HusEEr837yXuAv5Fa70r8j73zblvrdb6PVh9WKInUvgU1lGN12M1Hou1y93vYB0heTXW0cbviPTM3w1cgdXD43d5q9seka56C+nTWu/GavT19RhrEBlKglwk0lGtdbQh1yms/i6LeT7ydyuwd87lomW8ZzvwIaXU88APWbpv9pXAUwBa64NAgVKqLHLfnsjtpyK3O7FGwn+nlPo6VlvTWA9TvxKrF7yptQ4Bz2GF9zbg13PaqD4R4+tFH/cCVj9xkcUkyEUiBeddX6plbnCBy9Hnze0n4VngNb4EHI+cqeXdCzxmrvk9Kua2ID2rfq31j4DLgJeB/6OU+vsY3uNcou/jmFdDKMbnRz+70p5ZSJCLtDIM1EUuz925GQZyI5crgJORyx8GwpGzucx9zFwvEZnyiXTJ7NNa953jcUQe8wXAqbX+MXA71vRRLF4EblRKGZEVKDsj7/0mcFXk9jwWn36aK/rvvwbZIZr1ZGenSCd3A/+qlPowZ7YJfQ74kVJqPPKYuyJLDb+DdTLh+4FPAqVKqaewdo5G/XnkNf8YcAMfW6KG48BTSqlBrIHQ52Os/SdYLWKfx2p/+pDW+oVIqH8IeA3rvJB7ifwmoJT6L96ajnpaKdWqtf5I5HqNUupRrD7ifxpjDSJDSfdDIWwU6YP9W8B9WmtTKfUw8AOt9Q8WeU4zVt/sE8mpUqQ6GZGLpFBK5QKPLXD3V7TWSW3EH09KqZ9hLXWc716t9b1LPH0EayXL7UqpCax+2Nl23lBxnmRELoQQaU52dgohRJqTIBdCiDQnQS6EEGlOglwIIdKcBLkQQqS5/w/2bJqIo4FhlwAAAABJRU5ErkJggg==\n",
"text/plain": [
- ""
+ ""
]
},
"metadata": {},
@@ -436,9 +436,9 @@
"outputs": [
{
"data": {
- "image/png": "iVBORw0KGgoAAAANSUhEUgAAAYEAAAEGCAYAAACD7ClEAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADl0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uIDIuMS4xLCBodHRwOi8vbWF0cGxvdGxpYi5vcmcvAOZPmwAAIABJREFUeJzt3Xl8XFeV4PFfLdpLS8kqS5bk3fLxmtjZHGfBdhYS0gnQ0wEaGJgAoadDBsL0MpPpGTpNeoFuBkI39HSTTwNpIKRJgCSGxGCS2CTGWR3b8Xolb1qtxVJpX2uZP94rW1a0lKzlqarO9/Pxx1Wv3lOdK1XVqXfvfee6otEoSimlUpPb6QCUUko5R5OAUkqlME0CSimVwjQJKKVUCtMkoJRSKczrdAAxLS1dk5qm5PdnEwz2zlQ4c1oqtx20/dr+1G3/aG0PBHJdU/mZCXsm4PV6nA7BMancdtD2a/tTt/0z0faETQJKKaWmTpOAUkqlME0CSimVwjQJKKVUCtMkoJRSKUyTgFJKpTBNAkoplcI0CSilVArTJKCUUilszpSNUApg94H6d23buqHMgUiUSg16JqCUUilMzwRUwtKzBqWmTs8ElFIqhWkSUEqpFKZJQCmlUpgmAaWUSmGaBJRSKoVpElBKqRQW1xRREXkEuBaIAg8YY94c9thngc8AYeAgcD9wBfAscMLe7ZAx5vPTGLdSSqlpMGESEJEtQIUxZrOIrAG+D2yyH8sG/hC40RgzJCIvAZuBNOCnxpgvzlzoKplFo1HOtvZyvDrIi/vqCIej5GR6ueWqhbzvRp/T4SmVNOI5E7gZeAbAGHNURPwikmeM6TTG9NqPxxJCPtAIrJmpgFXya2nv47UjTQS7BgDIyfTicbtoDvbxne1HeP71aj75XnE4SqWSQzxJoATYN+x+k72tM7ZBRB4EHgC+aYw5JSLXADeIyA4gB3jIGLNrvCfx+7Pxej2TCj4QyJ3U/skkWdte29LDb/fXE41EqVhYwIaVAT55h/WdorG1hydfqOTFt2r5xpMHuOO6pZTMy7no+GT9vYyUKu0cSyq3f7rbHk8ScI1yPzp8gzHmqyLyj8DzIrIHa2zgYWPMdhFZCbwgIiuMMYNjPUkw2DupwAOBXFpauiZ1TLJIxrZHo1Ge3HWCXfvqSE9z854ryigtsj7gY231AB+9aQVXrirmH374FttfOcWtV5dTlJ91/uck2+9lNMn495+MVG7/aG2falKIZ3ZQPdY3/5hSrC4fRKRQRN4DYIzpA3YA1xtjjhljttvbK+39taiLGtOO12v49Ru15Oek83ubF59PAKO5/vJSPnvXGkKhCC++VU9vf2gWI1UqucSTBHYCdwOIyEagwRgTS0VpwGMiEhupuwYwIvJpEfmCfUwJUIyVTJR6l1ePNPLT3ScpzMvg1qvLyc1On/CYTWuKuWrVfAaGwuw9fJZoNDrhMUqpd5uwO8gYs1dE9onIXiAC3C8i9wAdxpinReRhYJeIhLC6gbYDBcDjInI3kAHcN15XkEpd1Y1dfO+5Y2RlePnvH7qcqvqOd+0zslpori+Tru5+Vi0uoOFcD/Xnejhe3c7qJf7ZCluppBHXdQLGmAdHbDo47LHHgMdGPB4E7phKYCr5hcIRvvvcUcKRKPd9YC1lAd+oSWAsLpeL69aXsH3PGfZVtrCgKHsGo1UqOel6Asoxv9x7hrqWHrZsKGXdsnmX9DOyMrxsXlfM7v0NvHakiQ9cvxSX6+K5DKOtOwC69oBSoGUjlENqmrp47tVqCvMy+PC2FVP6WYuKc1lU7KM52MfvDjVOU4RKpQZNAsoR//FiFeFIlHtuX0VWxtRPSK9eNR+vx8WTu07Q3Tc0DREqlRo0CahZZ2qCHK9pZ92ywkvuBhopJyuNy1cU0d03xFO7Tkx8gFIK0DEB5YBn95wGYOF835j99Zdi9WI/TW19vPLOWW64bAEV5QXT9rOVSlZ6JqBm1fFq6yxg/bJ5BAqyJj5gEtxuF5+8zaop9INfG0LhyLT+fKWSkSYBNatiZwEfuGHpjPz8FeX5vOfyUupbenjhrboZeQ6lkokmATVrapu7MbXtrF1ayLLSvBl7nru3LseXlcYze07R2tE/Y8+jVDLQMQE1rUbr44/Nx3/lYAMA2zbO7Px8X1YaH7lpBd997hg/fqGS9cunZ/BZqWSkZwJqVgyFwrx6pJG8nHQum4UP5evWlbByYQH7q85R29w948+nVKLSJKBmxb7KFnr6Q1y/vgSvZ+Zfdi6Xi0/cJnjcLt442sRQSAeJlRqNJgE1K145eBaA91xWOmvPWVaUw+2bFtHTH+Kdk62z9rxKJRJNAmrGNQd7OVYdRBYWUFw4u0Xe7rxuCb6sNI6eaTu/XKVS6gJNAmrGvXa0CYAbLlsw68+dkebhmtXziUbh9aNNuu6AUiNoElAz7u3KFjxuFxsrAo48f/l83/kCcyfrOyc+QKkUoklAzaju3iFqmrpZvdhPdqZzM5JjBeb2mRYdJFZqGL1OQM2ommZrJVJfdtq01gmarJysNNYtLeTAiVaOVQdnZZqqUolAzwTUjKptsuboL5zvm2DPmbd6SSEZaR6OnG5jYDDsdDhKzQlxnQmIyCPAtUAUeMAY8+awxz4LfAYIYy07eb8xJjreMSo19A2EaA72ESjImpY1A6Yqzetm3bJC9pkWjpxu47ZrFjkdklKOm/CdKSJbgApjzGYRWQN8H9hkP5YN/CFwozFmSEReAjaLSNpYx6jUUdfcTRRYVDx7ZwETdTnJogKOnglyvCZIR/cA+b6MWYpMqbkpnu6gm4FnAIwxRwG/iOTZ93uNMTfbCSAbyAcaxztGpY4au1zDbCaBiXg9btYvLyQUjvLS286NUSg1V8STBEqAlmH3m+xt54nIg8BJ4EljzKl4jlHJLRyJ0NTWS35OOrnZ6U6Hc5EVZfmkp7nZfaCeoZCODajUFk9HrWuU+xddcWOM+aqI/CPwvIjsieeYkfz+bLxeTxzhXBAI5E5q/2QyV9ue68sEoL65m1A4yuIFeee3zcTzXKq1S+exv7KFY3Wd3Hx14o0NzNW//2xJ5fZPd9vjSQL1XPwtvhSrywcRKQTWGWNeNsb0icgO4PrxjhlLMNg7mbgJBHJpaema1DHJYi63vavbqt9/si4IQFFexvlt0yXXlznln7l0QS4Hqlr4+a4q1i8uwOUa+b1l7prLf//ZkMrtH63tU00K8XQH7QTuBhCRjUCDMSYWRRrwmIjEOn2vAcwEx6gUcLa1F5eLWa8VFC9fVhpXVASoaermRH2H0+Eo5ZgJzwSMMXtFZJ+I7AUiwP0icg/QYYx5WkQeBnaJSAhriuh2e4roRcfMYBvUHDMwFKa1o5+AP4s079y9FGVegdWl9MQLVbxng1XdNLYAjlKpIq7J28aYB0dsOjjssceAx+I4RqWIxtZeosCCeXPzLCCm2J9FXk46tc3dDIbCpE9yTEqpZDB3v6aphHW2tQeA0nk5DkcyPpfLxbLSPMKRKDWNuvqYSk2aBNS0O9vaS5rXzbz86Z8VNN2WLrAG1U6d1eqiKjVpElDTqrtviK7eIUoKs3G75/6Mm9zsdAIFmTS29tLbH3I6HKVmnSYBNa2a2qypviVzdFbQaJaVWhezn9azAZWCNAmoadUU7ANgvj/L4Ujit7gkF5cLTjVoElCpR5OAmlbNwT7SPG78eYlTmC0z3UtZUQ7BroHzg9pKpQpNAmradPQM0tkzSMCfiTuBrsAF62wAYH/VOYcjUWp2aRJQ06aqth2A+f7EGQ+IKQv4cAH7q1om3FepZKJJQE2byjorCRQn0HhATGa6h/mFWZyq76S9e8DpcJSaNZoE1LSpqu3A7XJRlADXB4xm4XwfUeDACe0SUqlDk4CaFn0DIWqauygqyMTjScyXVWwd5P2VmgRU6kjMd6uac07UdxCNJtbU0JFys9NZON/Hseo2+gb0wjGVGpxf/VslrOHr+e6vtAZUE3E8YLiNFUXUNndz6FQr16wudjocpWacngmoadHcbl0kFihI9CQQAOCdk60OR6LU7NAkoKYsEonS2tFPvi+d9LTELse8sNhHXnYaR063EY2OuyKqUklBk4CasmD3AKFwNOHPAgDcLhdrlxbS0TNIbbOWl1bJT5OAmrKWJOkKilm3bB4Ah0+3ORyJUjNPk4CasnPt1qLvgYLEvD5guN0H6s9fLLbnnbMXDX4rlYw0Cagpaw72ke51k5+T7nQo0yIrw0thXgbNwV6GQhGnw1FqRsU1RVREHgGuBaLAA8aYN4c9tg34ChAGDHAvsBF4Fjhh73bIGPP5aYxbzRF9AyG6+4YoK8rBlWBF48ZTWpRDW+fA+fURlEpWEyYBEdkCVBhjNovIGuD7wKZhuzwKbDPG1InIU8DtQA/wU2PMF2ciaDV3XBgPSPyuoOHKinI4fKqN+nNaWlolt3i6g24GngEwxhwF/CKSN+zxK40xdfbtFmAekDutUao5q8UeDyhKkkHhmEBBFmkeNw2aBFSSi6c7qATYN+x+k72tE8AY0wkgIguAW4Ev2f/fICI7gBzgIWPMrvGexO/Pxuud3BzzQCB1c81caHuuL5O2LmsQdWlZwaxeI5Drm/kzj/JiH6cbOgm73ZTMy5nx55uMufD3d1Iqt3+62x5PEhjZ0evCGhs4T0TmA78A7jfGtIrIQeBhY8x2EVkJvCAiK4wxg2M9STA4ub7XQCCXlpauSR2TLOZK2zs6+2hu68Wfm8HAwBADA0Oz8ry5vky6uvtn/HnmF2RxuqGTl9+qYdsV5TP+fPGaK39/p6Ry+0dr+1STQjzdQfVY3/xjSoHG2B27a2gH8CVjzE4AY8wxY8x2+3alvX/ZlCJVc05b1wDhSDTpxgNiSousxXEOndLrBVTyiicJ7ATuBhCRjUCDMWZ4Kvo68IgxZkdsg4h8WkS+YN8uAYqxkolKIsl2kdhIudnp5GancawmSCisU0VVcpqwO8gYs1dE9onIXiAC3C8i9wAdwK+BTwIVInKvfciPgaeAx0XkbiADuG+8riCVmJI9CYA1VdTUtHOyvgNZ5Hc6HKWmXVzXCRhjHhyx6eCw2xljHHbHJUWkEkZLsI+MNA+52WlOhzJjyuwkcOhUmyYBlZT0imF1Sdq7B+jpDxEoyEyqi8RGKi7Mxutxcfi0lpZWyUmTgLokJ+s7gOTuCgJI87qpKC+gpqmbjh7t0VTJR5OAuiQn6zuB5E8CAOuWFgJwVKuKqiSkSUBdkhMNHbiAefnJOT10uLV2EtDS0ioZaRJQkxYKRzhztgt/XgZp3uR/CZXP95GXk86RM7ramEo+yf8OVtOuuqmLUDiSEl1BYK82tsRPZ88gdS1aS0glF00CatJO1sUGhZO/Kygm1iV0RLuEVJLRJKAmrcpOAvMLsh2OZPasXRJLAjpVVCUXTQJqUqLRKFV17fhzM8jJiutaw6SQ78tg4XwfpraDgaGw0+EoNW00CahJaQ720dk7REV5flJfJDaatUsLCYUjVNW2Ox2KUtMmdb7KqWlRWWd9AFaUFzgcyeyJLTYfKyL3qzdqONfZz9YNWhhXJT49E1CTcsIeD6goz3c4ktlX7M/C43bpamMqqWgSUJNSVddBZrqH8oDP6VBmncfjprgwi/buQXr7Q06Ho9S00CSg4tbZO0hjWy8ryvJxu1NrPCCm1F5m8myrng2o5KBJQMUtlbuCYkqLrCSgXUIqWWgSUHGrSsFB4ZHyfelkZXhpONdLREtIqCSgSUDFrbK2HY/bxdLSPKdDcYzL5aK0KJuBoTC1Td1Oh6PUlGkSUHHp7Q9xprGLpaV5ZKR5nA7HUbFxAV1oRiUDTQIqLpW17USjsFqXWGRBkVUuQ+sIqWQQ18ViIvIIcC0QBR4wxrw57LFtwFeAMGCAe40xkfGOUYnnWHUQgNWLNQlkpnspzMugqq6D/sEQmel6zaVKXBOeCYjIFqDCGLMZuBf49ohdHgXuNsZcD+QCt8dxjEowx6qDpHndLC9L3fGA4cqKcghHohw7E3Q6FKWmJJ7uoJuBZwCMMUcBv4gM/yS40hhTZ99uAebFcYxKIF29g9S1dLOiLJ80b2qPB8TELpY7ePKcw5EoNTXxnMeWAPuG3W+yt3UCGGM6AURkAXAr8CWs7qExjxmN35+Nd5IfMIFA7qT2Tyaz2fbKgw0AXLWm5KLnzfU5t56Ak88NkJOTQd7hRg6fDlJU5Jv1Ynqp/NqH1G7/dLc9niQw8tXtwurnP09E5gO/AO43xrSKyITHjBQM9sYRygWBQC4tLV2TOiZZzHbbXz9kJYFFRdkXPW9Xd/+sxTBcri/Tsecebu2SQl490si+w2dZXDJ7H0qp/NqH1G7/aG2falKIpzuoHutbfEwp0Bi7Y3fz7AC+ZIzZGc8xKrEcqw6Ske6Z1Q+6RHD5inmAdgmpxBZPEtgJ3A0gIhuBBmPM8FT0deARY8yOSRyjEkSwa4DGtl5kYQFej84oHm7d0kLcLhfvnNTrBVTimrA7yBizV0T2icheIALcLyL3AB3Ar4FPAhUicq99yI+NMY+OPGZmwlcz7dAp6wNujb28orogOzONivJ8Kmvb6ewZJC8n3emQlJq0uCY4G2MeHLHp4LDbGXEeoxJQ7Fvu5cvnORzJ3HT5iiJMbTvvnGzlhssWOB2OUpOm5/dqTEOhCEfOtFHsz6K4MHUWlZ+M2LjA/qoWhyNR6tLopY7qIrGlFMGqmT8wGGb9ZXoWMJYF83IoLcrh8Ok2vXpYJSQ9E1Bjqmu2auZfpl1B47pyZYChUIRDp7SWkEo8+rVFjan+XA9ej4umYC/nOpyflz/XxM6aovYlMDteq+bqVfOdDEmpSdMzATWqrt5BOnsGKZmXg8etL5Px+HMz8GWlUdfSzVAo7HQ4Sk2KvrvVqOparK6g8kCOw5HMfS6Xi0XFPkLhKEe0oJxKMJoE1Khqmqxr+8o0CcRlcbF1NfXbRmcJqcSiSUC9S99AiKa2PgIFmeRkpjkdTkIoKsgkK8PL/qoWQuGI0+EoFTdNAupdqu2zgCUlWv07Xi6XiyUlufT0hzikZSRUAtEkoN6lutFKAotKfA5HkliWlVpJ89WjTQ5HolT8NAmoi1zoCsrSrqBJKszLYMG8bA6eOEdvf8jpcJSKiyYBdZELXUFaNnqyXC4X164tYSgUYV9ls9PhKBUXTQLqItoVNDXXrikG4LUj2iWkEoMmAXVea0e/dgVNUaAgixXl+RyvDhLsGnA6HKUmpElAnbf38FkAVpTprKCpuG5tCVFgz6GzToei1IQ0CSgAItEoew6dxetxsXiBjgdMxaY1xWSkeXj5QAOR6LhLayvlOE0CCoCq2nZa2vtZVJxLutfjdDgJLSvDy6Y1xbR29nPktFYWVXObVhFVAOx5x+4KKs93OJLEFqssmpttjan8dPdJ1i/TUtxq7tIzAUXfQIg3TTOBgkyK/VlOh5MU5uVnUpiXQV1Ltw4QqzktrjMBEXkEuBaIAg8YY94c9lgm8Ciwxhhzlb3tSuBZ4IS92yFjzOenM3A1fV4/2sTgUITr1y/A5XI5HU7SWLmwgNeONPHKwQbef8NSp8NRalQTngmIyBagwhizGbgX+PaIXb4G7B+xzQf81Biz1f6nCWCOikajvLivDo/bxY2XlTodTlJZuiCPNK+bXfvrGQppUTk1N8XTHXQz8AyAMeYo4BeR4XMI/wJ4esQxOr0kQRyvaaf+XA9XSgB/bobT4SSVNK+blQvz6egZ5LUjjU6Ho9So4ukOKgH2DbvfZG/rBDDGdInIyJEvH3CDiOwAcoCHjDG7xnsSvz8b7yRnpQQCqZtrpqvtj/7yKAAfukUIBHLJ9WVOy8+daYkS51VrFnC8up0X3q7jgzetxO2enu62VH7tQ2q3f7rbHk8SGPmqdQETTX4+CDxsjNkuIiuBF0RkhTFmcKwDgsHeOEK5IBDIpaWla1LHJIvpavu59j5eP9LI4pJcCrO9tLR00dU999cSzvVlJkScMZvWFLP3cCMvvn6GDSuKpvzzUvm1D6nd/tHaPtWkEE93UD3WN/+YUmDcc1tjzDFjzHb7dqW9f9mlBqlmxkv764lG4ZYry3VAeAbdds0iAH79eo3DkSj1bvEkgZ3A3QAishFoMMaMm4ZF5NMi8gX7dglQjJVM1BzR2x/itwfqyctO45rV850OJ6ktnO9j3dJCTG07lbXtToej1EUmTALGmL3APhHZC3wLuF9E7hGR3wcQkaeA/7Buym4R+RjWQPHtIvIy1lTR+8brClKzb9f+OvoGwtx69ULS9ArhGff+660pos+8csrhSJS6WFzXCRhjHhyx6eCwxz40xmF3XGpQamYNDoX5zZu1ZGV42Lax3Olwkl7sKuKyohyO17TzxIuVLJiXw9YN2kOqnKdXDKegPYfO0tk7xLaN5WRnauWQ2XJ5hTUofKDqHFEtLKfmCE0CKSYcifCr12tI87q59eqFToeTUoryM1k430dLez/153qcDkcpQJNAynnjaDPnOvq54bIF5OekOx1OytlQUYQL2He8hVBYryJWztMkkEIi0SjPv1aN2+Xidnvaoppd/twMKuyriHe9rRPmlPM0CaSQd060Un+uh2vWzCdQoNVCnbKhooh0r5tn9pyms1cnzSlnaRJIEdFolOdeOwPAHdcudjaYFJeZ7uXyFUX0DYR4+mWdMqqcpVNDUkRlbTsn6zvZsKKI8oDv/LRF5QxZVED9uR5ePtDA1g1lLC5J3Vo4yll6JpAinnu1GoA7NutZwFzgdrv46C0VRIEnXqjUKaPKMZoEUsDPXj7J4dNtFPuzqGvp1rOAOWLtkkI2VhRRWdfBm8ebnQ5HpShNAing8ClrsfN1utbtnPORm1bg9bh4ctcJBobCToejUpAmgSTX1NZLTWMXhXkZlBZlOx2OGmb3gXqOVgdZtdhPW+cA//LMYadDUilIk0CS2/F6NVFg3dJCLRc9R61fNo+sDA9HTrfR2pE46ySo5KBJIIl19Q6y93AjudlpLNLZJ3NWmtfNFSsDhCNRntp9wulwVIrRJJDEfneokVA4iiwqwK1nAXPastI8ivIzeeNYM6Ym6HQ4KoVoEkhSkWiU3x6ox+txs7w03+lw1ARcLhdX24v7PPqLo7y0v47dB+p1JpeacZoEktTx6iBNwT6uXjWfjHRdNCYRBAqyWFaaR7BrgBN1HU6Ho1KEJoEktftAAwDbNurCJYnkipUBvB4XB6rOMahTRtUs0CSQhDq6B9hf2UJ5IIflZXlOh6MmITvTy/pl8+gfDPPOyVanw1EpQJNAEtpz6CzhSJQtG8p0WmgCWrPEjy8rjWPVQbq0yqiaYXEVkBORR4BrgSjwgDHmzWGPZQKPAmuMMVfFc4yaurEGDN9zWSm/PdBAepqbzWtLZjkqNR08HjcbVxbxysGzHDzRyl3XLXU6JJXEJjwTEJEtQIUxZjNwL/DtEbt8Ddg/yWPUDDl8uo1zHf1sWl2s6wcnsCUlufhzMzjV0EldS7fT4agkFk930M3AMwDGmKOAX0SGdzT/BfD0JI9RM+S39hnCVh0QTmgul4uN9sL0uuaAmknxfFUsAfYNu99kb+sEMMZ0icjIymTjHjMavz8br3dyUxkDgdS9CjbXl/mubd29gxw8cY7l5flcc1nZuPsmumRs00ircjI4Wh1kf9U5gn0hVi7yn38slV/7kNrtn+62x5MERo4surD6+af1mGCwN45QLggEcmlp6ZrUMckiEMilq/vdNWYOnjhHJAo3rCu56Hcz2r6JLNeXmXRtGsvly+fR2NrLvz1ziD//6EYgtV/7kNrtH63tU00K8XQH1WN9i48pBRpn4Bg1BZFIlKraDjLTPWxaU+x0OGqaFBdms25pIceqgxw90+Z0OCoJxZMEdgJ3A4jIRqDBGDNRGr6UY9QU1LV00zsQYvPaEjLTdUA4mfynLcsA+PnLp3QFMjXtJvy0MMbsFZF9IrIXiAD3i8g9QIcx5mkReQpYCIiI7AYeNcb8eOQxM9cEBVBVa5UZ2LKh1OFI1HQ709jFomIfpxo6+dFvKlmzrIiu7n62btDBfzV1cX1lNMY8OGLTwWGPfSjOY9QM6e4dov5cD0X5mSwqTt0Bs2S2oaKI2qZu9le2sHqprhCnpo9eMZwEquraAZBFBQ5HomZKgS+DZaV5tHcPUlXb7nQ4KoloEkhwkUiUqroO0r1uFuvCMUntshXzcLngjaONRCI6NqCmhyaBBFfb3E3/YJjlZfl4PfrnTGa52elUlOfT0T3IyQYtNa2mh04jSXDG7hqoWGgtHKOLkCS3y5bP42R9JwdPtDIUipDm1cSvpkZfQQmss2eQxtZeiv1ZFPgynA5HzYLszDTWLy+itz/ES2/XOR2OSgKaBBJYpX0WsHKhDginkitXzSfd6+aXe8/Q3TfkdDgqwWkSSFDhcIST9Z1kpHlYVOJzOhw1izIzvKxfPo+e/hC/3HvG6XBUgtMkkKCqm7oZGAqzojwPj1v/jKlm1aICivIzeentOprb+5wORyUw/fRIQNFolOPVQQAqyrUrKBV5PG7+05ZlhMJRnnzphNPhqASmSSABmeog5zr6KZ/vIy8n3elwlEOuWV1MRXk+b1e2sL+qxelwVILSJJCAnn35JABrFvsn2FMlM7fLxX+5fRUet4sf7aykbyDkdEgqAWkSSDCtHf3sPXQWf24GxYVZToejHFZalMMd1y4m2DXA06/oCmRq8jQJJJgX364jEomyerEfl2vk2j0qFd153WKKC7N58a06juiaA2qSNAkkkN7+IX57oIECXwZLS7VOkLKkeT189s41uN0uHt1+hGDXgNMhqQSiSSCB7Hyzlr6BEL+/dblOC1UXWVaax4dvWkFX7xDfefYw4UjE6ZBUgtDaQQmip3+I37xVS252Gndct5RfvKzTAlPdyDpRXo+LqyTAW6aFH/zKcM/7VmmXoZqQfp1MEL95s5a+gTDv27SYzAzN3erdXC4Xn7pjNYtLcnnlnbM88WKVLkepJqRJIAHEzgLystPYtlGXFFRjy8rw8icfvpyyohxeeKuOn+4+qYlAjUuTQALYvucMfQNhbt+0mIx0j9PhqDls94F69lW2sHldCbno2GvCAAAUiElEQVTZaex4vYbvbD/CUCjsdGhqjoqrX0FEHgGuBaLAA8aYN4c9dgvwd0AYeN4Y89ciciXwLBDruD5kjPn8tEaeIupbunlxXx3z/VncfGW50+GoBJGd6eV91y5i19sNvHGsmdaOfu774DoK8zKdDk3NMRMmARHZAlQYYzaLyBrg+8CmYbv8E3AbUA/sEZGfAT7gp8aYL85AzCkjGo3y4xeqiESjrFtayO8OnwUg16dvZDWxzHQv772mnFP1nbx6pImHvvcGn75jNRtXBpwOTc0h8XQH3Qw8A2CMOQr4RSQPQESWAW3GmFpjTAR4zt5fJ7FPg32mhWPVQcoCOZTP13LRavI8bjf33rmGT94mDIYifOvnh/j3Xx2nt19LTChLPN1BJcC+Yfeb7G2d9v/DK1c1AsvtbTeIyA4gB3jIGLNrvCfx+7PxeifX3x0IJG+u6ege4IkXq/B6XGy9YiG5I1YOS/WzAW1//O1/+2QbubmZ/MG2FfzmjRp+e6CBt0wLf/qxK7h6TckMRjlzkvm9P5Hpbns8SWDkRGMX1tjAeI8dBB42xmwXkZXACyKywhgzONaTBIO9cYZsCQRyaWnpmtQxiSIajfL/njlMsGuAu7cux+OK0tXdf/7xXF/mRfdTjbb/0tqf7nFx+6ZFHD7VyqGTrTz83de5dm0xH725gtzsxKlGm8zv/YmM1vapJoV4kkA91jf+mFKsb/yjPVYGnDXGHAOOARhjKkWk0X7s9JSiTRGvHmlkn2mhojyf269ZxMvvNDgdkkoSHreLy1cUsag4l72HG3ntSBMHqs5xxcoAy8vy2LZRJx+kmnjGBHYCdwOIyEagwRjTBWCMOQPkicgSEfECdwI7ReTTIvIF+5gSoBgrYagJNLX18vhvKslI93CvXQ9Gqenmz83gfdcu4koJMBSKsPdwI8+/WnN+3WqVOiY8EzDG7BWRfSKyF4gA94vIPUCHMeZp4D7gCXv3n9jf/FuAx0XkbiADuG+8riBl6RsI8U8/e4e+gTCfvXMNgQItFa1mjtvlYu3SQpaU5LKvsoUzZ7v46uNvs3aJnw/cuIwVZflOh6hmgWuuXE3Y0tI1qUASvV9wZN2XaDTK7v0N1DZ3c+tVC/noLRVj7qt94tr+mWh/S7CP6qYujp6JLV2az23XLGLDiqI5dUaa6O/9qRhjTGBKfxwtQjNHHKg6R21zN6sX+/nwTcudDkeloIA/iw9tW0FlbTvPvVrNoVOtVNUdYr4/i/devZDr1y8gI02vWE82mgTmgOPVQQ6daiM3O431ywt55Z2zToekUlTsrHPjyiKWluZy9EyQM2c7+dHOSp5++RTbrijj5ivKyR8xZVklLq0d5LDqxi7eONZMZrqHW64qJzNd87KaGwp8GVy3roSvfe563n/9ElwuF7/cW82f/8tentp9gv5BveAsGegnjoPqW7p55WADXo+Lm68sT6i52ip17K9qoSA3g/ffsIRT9Z0cOtXKjtdq2L2/gWtWz2dxyYV56ls3aJXbRKNnAg4529rD7v0NuFwubrqinHn5qX0FrJr7vB43KxcV8IEbl3LZ8nkMDIX57YEGXjvSRDisK5klKk0CDjhWHWTX2/VEo7B1Yxkl87KdDkmpuHk9bjZUFHHXdYsp8KVTWdvO86/V0N035HRo6hJoEphlB0+c45EnDxKJRNmysZSyQI7TISl1SfJ9GdyxeTEV5fkEuwbY8VoNdc3dToelJkmTwCx641gT3/75Idwu2HZFOQu1MqhKcF6Pm83rSrhSAvQNhPjK4/s4Xh10Oiw1CTowPAt27a/j0Kk2DlSdI83jZtsVZRQXaheQSh5rlxaSleHl1cONfOPJA3z2rrVcvWq+02GpOGgSuEQjr+KNGTk7om8gxJ53znL6bBc5mV5uurIMf64OAqvks6w0j2vXFPPtnx/iX585TPstFdx61UKnw1IT0O6gGVRV185fff8NTp/toig/kzs2L9YEoJJac3ufdb1LhocnXqji6z/ZT2SOlKZRo9MkMAM6ewb54U7DVx9/m3Md/axbVshtmxaRlaEnXir5FeZl8r5Ni8nLSefI6SD/9sujhHQK6Zyln0rTqH8wzPY9p/nVGzX0D4YpLszmU+9bRUNrj9OhKTWrfNlp3L5pES/tq+O1I020tPfxuQ+ux5+r5SbmGk0CI4zW1z/RVZBtnf1U1nZwsr6DcCSKLyuNj9+6nC0bSvF63JoEVErKTPfw3msWcrK+k9ePNvHlx97kvg+sRRb5nQ5NDaNJ4BINDoU5c7aLqroOWjutsr45mV7uun4pN162QLt+lMKaQvpHd61h6YI8nnzpBH//4/1su6KMu7cs1/fIHKF/hUkYCkU4cqaNN48188axJsKRKC6gPJDDivJ8ygM+brpCl+dTajiXy8V7r17I8tI8vr/jOLverudA1Tl+b/NibrxsAWleLU/tJE0C4+gfDNPRPcCO16uprGnH1LbTPxgGwJeVRkV5PsvL8sjOTHM4UqXmruFdrNuuKOXQyTaOnG7jRzsr+cXeM9x4WSnXrJpPWSAHl2vuLF6TKjQJ2Fo7+jleE+T1o020dw/Q0T14/gM/Zr4/i60bAlwpAWqau/QFq9QkedxW3SFZVEB33xAvvV3PL/ee4Zd7zxAoyGR5aT5LFuQxvyCLwrwMfFlppKd58LhdhCNRwpEoePtoDvYyFI4SCkUYDIUZCkUYDEXedX/I/hfbduH+hX0HQxGGhqzbXb1DuFzW0pter5usdA/ZmV7yczLw52ZQmJdBur2wTrJUTE3ZJNDRM8jx6iDHqoMcrw7S3N530eO+rDTKA5nk+zK4fn0JstB/0cyG2hatkaLUpcrK8PK+TYt5/3VLOXjyHG8ca+Z4dZDXjjbx2tGmWY3F5QKP24XX47aW0YzAUDRCV98QrZGLr3FwAYV5GRQXZlOQk8HKhfkJ3xMQVxIQkUeAa4Eo8IAx5s1hj90C/B0QBp43xvz1RMc4obtvCFPTbn3w1wRpOHdhxk5WhocNK4pYtdhPZ+8gBb50vJ4Ll1Bcu6bEiZCVSmrDu4nWLStk7VI/nT1DtHX109M3RE9/iMGh8PkzALfLhdvtIiPdSyQcwe22ziy8Hhcetwu3x43Xbd32eNzW/24XHo8Lr9uN2+OyHo89Fts+xvrJ0WiUoVCEnv4Q7V0DtHUN0NLex7n2Plo7Bzh6JogLWFjsY9UiP7KwgIqFBfiyEispTJgERGQLUGGM2Swia4DvA5uG7fJPwG1APbBHRH4GBCY4ZtqEIxFaOwcYGAwzMGT9GxwM094zSFtnP41tvdQ0ddHSfmFh7vQ0N2uXFrJ6sZ/Vi/0sKvbhcVsf+mOVg1BKzSyXy0W+L5183/iLK+X6Munq7h93n+mKJz3NQ3qaB39uBkvt7aFwhJb2PjLTvJjadk41dFDT1M3ON2txAWWBHBbMy6G4MIv8nAyyM73kZHrJzkgjK9OL1+PC5XLhtrudsjK8js6UiueZbwaeATDGHBURv4jkGWM6RWQZ0GaMqQUQkefs/QNjHTPdDfiXZ47wdmXLuPv4stJYs8TPyvICVi32s6w076Jv+kopFS+vx82CeTnnxwQGh8KcaujE1LZjaoKcauikriX+a4O8HhcPf2YTJQ4VlYwnCZQA+4bdb7K3ddr/D/8EbgSWA0XjHDOqQCB30qOsgUAuX/6v1032sHF96NZV07rfZPdVSiWestICbrxq0aw8VyCQO/FOkxDP1+GRH84urH7+8R4b7xillFJzRDxnAvVY3+JjSrG+8Y/2WBlwFhga5xillFJzRDxnAjuBuwFEZCPQYIzpAjDGnAHyRGSJiHiBO+39xzxGKaXU3OGKxlHrW0S+CrwHiAD3AxuBDmPM0yLyHuDv7V1/Zoz5v6MdY4w5OAPxK6WUmoK4koBSSqnkpPMklVIqhWkSUEqpFJZwtYPmWjmK2SYiHwf+BxACvmSMed7hkGaUiFwJPAucsDcdMsZ83n7sNuBXxpikrOQnIlnAEeBh4EXgh4AHawbeJ4wxAyLyEeBPscbeXjTG/G+n4p0qEfkH4Easz6WvAEeBR7He65XAfcaYkIj8DbAN60vs08aYfxCRfODHQD7QDXzMGNPmQDMmZZQ2v4lVYSENa5blfzbGNNrv+y9i/Z2/Y4z5nj0Z57vAMnv/PzPG7BGRXwB+rM8IgD81xgy/busiCXUmMLyEBXAv8G2HQ5pVIjIPeAi4AWsm1gedjWhW+ICfGmO22v9iCSAT+F9YH4jJ6v8Arfbth4F/NsbcCJwBPi0i2ViTMm4GNgO32GVaEo6IbAPW2e/t24FvYrXtK8aYLUAN8GERWQfcZIy5Hrge+JSIlGB9QO42xtwAbAf+pxPtmIwx2vw3wKN2m58G/kREcoC/BG4BtgL/Q0QKgU8APfZr4jPAN+wf7QPuHPaeGTMBQIIlAUaUsAD8IpLnbEiz6hbgBWNMlzHmrDHmj5wOaBaMdXnkXwD/DAzOYiyzRkRWAWuA5+xNW7E+3MA6M7rFGNMLrLdfD1GshDFvtmOdJi8DH7JvB4EcYCXwhr3t18B7gQ4gU0QygEysb8a9WJ8NT9v7Pov1XpnrRmvz54Cf2dtasP6em4A3jTEdxpg+4BWsBPgj4E9G7Atjv2dGlWjdQeOVsEgFSwCXiPwE6wK8vzLGvOhsSDPOB9wgIjuw3iQPYV2keLkx5i9F5GuORjdzvg78N+C/2PdzjDED9u1GYAFA7Pob+xvyEuC12Q1zehhjwkCs4M69wPNAOvB7wA+wilQWG2NqReQpoBqra+xhu47Z8BI2538/c9lobTbG9ACIiAdrOv7DjF6eZ4ExZgirywisM6Ef27d9wD+LyCLgEPAnxpgxK+4l2plAqpejcAHlwMeBe4Dvi0hS9ocPcxDrjf4+rDfKvwP/yIVvQElHRD4JvGqMOT1s8/DX+UWvexGpAJ7A6gcfIoGJyAewujb+G/BnWF1AL2F9VrnsopW/j9UPvgL4YxGZz8WfDQn1uTCizbEE8EPgJftL3rifeyJyP3AFVsIAa2zhz7Cu0/JiJZMxJdqZwHglLFJBE7DXGBMCTopIF1bF1mZnw5o5xphjwDH7dqWIDGB1CzwuIgALROS3dh9qsvg9YJmI3ImV9AeAHhHJsrsDYuVZEJFyrC7STxhjDjgV8HSwB/r/N3C7MaYDq+vnzmGPLQCuBl63u8IQkXeAdVz4bOhg2O9nrhulzWANDFcZY75s36/H/j3YyrDP+ETkM8BdwAdjXwCMMf8+7Oc/A3xkvBgSLQnsBL4MfCdFy1HsBB4Tkb8HCrFO+845G9LMEpFPAz5jzD/Zp/zpQJYxZtB+/EySJQCMMefftCLyV1gDwdcBf4DVD/wHwK/sXb6LNWvm7dmNcnrZs3u+hjXW0WZv+zLwhjHmOeBTWN+OG4EviogbqztoPXAK673xIayB1eG/nzlrjDZ/HBg0xjw0bNfXgX8TkQKsGT/XY/0OlgF/DGyJdffYZxE7gd+3S/dvBQ6PF0fCXTGc6uUoROS/Ah8FsoG/McZsn+CQhCYifuBxrISXAXx5+LRYOwkscSi8GTcsCfwaq288E6s//FPAUuAAFwZPAb6RiK8JEfkj4K+wpoLGPIT1ITkI7DLGfMne98vArVjdIj8xxnxTRHxYCXIe0I41tbKDOWyMNi/Cij82znnUGPM5Ebkb+HOsbqBvGWMeF5G/A/4Qa+ZUzHuBDwP/HWu8oR74TOzMaTQJlwSUUkpNn0QbGFZKKTWNNAkopVQK0ySglFIpTJOAUkqlME0CSimVwjQJqKQkIqUiclMc+/1n+/8NIvKtmY/MmtYqIisu8dh0EfmmiETtKpJKTYkmAZWstgHjJgERKcO62AZjzIFYhdI57hvAO04HoZKHfpNQs0ZEtgIPAnXAWqziV7ePdSGLiHRjXQF6F9aVwn8HfBYQrKtkd4rIbqyL5l4QkSXAHqz67H+LVWumDetisx9ivd7zgX80xvwAq+DWehH5AfA9++fcICIrgX/F+pLkBR6067Q/BjRgXaW6EviuXct+G/BVrGqWmcAX4lnnwr6685vAlVgXAb1kjPmSXQ/q21jloRuAKqySwf8H+Au7YNp3R/ysM3Z7NgFFwBeNMbsmikEpPRNQs20z1gfZZiCMVR1yLDnAW3bt+B7gLmPMHcBfA/eNdZBdeO0x4IfGmG9g1Zj6tjHmJqwaLLG66w9hLVLzyRE/4lvAvxhjttrP84Nhjy0zxtyFdWVmbAGXL2JdqbsNq7BfvBUsP4x11e/1WFfBv9deM+Nm4BqsOjkfwaolFGvbeBVzW40xN2MV1/t6nDGoFKdJQM22Y8aYWMG7aqwaSOPZY/9fB+wddrtgEs/ZAHxURPYA/8HENfc3Ab8BMMYcAvJEpMh+bLe9vdre7sH6Bv63IvJ1rHLH8ZZt2IS1PkTULiv8CtYH/wbgZWNM2C4t/Os4f15sv99hrUWg1IQ0CajZFhpxf6JS2KExbseOG173JH2Mn/E3WFUZb2DYt+pxjKylMrx077viN8b8BLgKq9DXX9o1XS5F7HncI2IIx3l87P2cUKWUlbM0CahE1wkstG8PHwiOAFn27WLgpH37Y0DEXplq+D7DvYbdTWVXq201xrSOsh/2Pl8GPMaYJ4EHsLq84vEqcKuIuOyZPlvs5z4OXGtvz2b8LrPhYu2/AR08VnHSgWGV6L4N/KuIfIyLywe/AvxERHrtfb5lTwf9Htai7T8G/giYJyK/wRpIjvm8/TP/GGsB709MEEMV8BsRacf6YvXQBPvHPIVVInoPVlnkZ4wxv7MTwkeBt7AqRO7FPgMRkZ9zoQvtRRGpM8Z83L5fJiLPYa1B8Lk4Y1ApTquIKjXH2HXmPwj8wBgTFZHtwBPGmCfGOeYMVl36E7MTpUoWeiagHCMiWcCOMR7+qjFmzi8MMhYReRZrOupIjxljHpvg8C6sGUMPiEgfVr35p6Y3QqUseiaglFIpTAeGlVIqhWkSUEqpFKZJQCmlUpgmAaWUSmGaBJRSKoX9fyKaS4ZDQyvwAAAAAElFTkSuQmCC\n",
+ "image/png": "iVBORw0KGgoAAAANSUhEUgAAAYEAAAEGCAYAAACD7ClEAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADl0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uIDIuMS4xLCBodHRwOi8vbWF0cGxvdGxpYi5vcmcvAOZPmwAAIABJREFUeJzt3XmcXFd54P1fLb1XdXd1d/UqtZaW9MiSrc14kW0sG9tgwGyDgQQG4gBhIA6YyeSd8cuEEBySkOElhkCGxBOCBwKE2MQLMV7wIi9ItrVYstajrbul3lf1vtXy/nFvy+V2LyWpum4tz/fz8Ue13Fv1HHdVPfeec89zXNFoFKWUUtnJ7XQASimlnKNJQCmlspgmAaWUymKaBJRSKotpElBKqSzmdTqAad3dQ45ephQIFNLfP+pkCEmVTe3NprZCdrU3m9oKs7c3GPS7LuY19UzA5vV6nA4hqbKpvdnUVsiu9mZTW2Fx2qtJQCmlspgmAaWUymKaBJRSKotpElBKqSymSUAppbKYJgGllMpimgSUUiqLaRJQSqkspklAKaWyWMqUjVDqfGzf1zrr4zdsqktyJEqlNz0TUEqpLKZJQCmlspgmAaWUymKaBJRSKovpwLDKKLMNGH/klrUORKJUeogrCYjIvcDVQBS4yxizK+a5PwA+A4SB/cCdwBbgEeCEvdkBY8wXExi3UkqpBFgwCYjINmC1MWariKwDfgRcZT9XCPwO8HZjzJSIPAtsBXKAB40xX1680JV6q+GxKfoGxxkanQKgoa7Y4YiUSm3xnAncBDwMYIw5LCIBESk2xgwaY0bt56cTQgnQAaxbrICVms1UKML+Ez0cae4nGrNQ6f4TPUyE4OYttRTl5zgXoFIpKp4kUA3sibnfaT82OP2AiNwN3AV8xxhzSkSuBK4TkceBIuBrxpjn5nuTQKDQ8aXigkG/o++fbOncXr8v/9ztjt4Rnny5meGxKYqLclm/spwSXy7Do1PsO9bNIy+c5FBjL3/5+WsozJJEkM5/2/OVTW2FxLc3niQwcxFjF9bYwDnGmG+KyHeBX4vIS1hjA/cYYx4VkTXA0yKyyhgzOdebOL1YdDDop7t7yNEYkind2zs0PA5AV/8Yz+xuIRSJsKGhnEtXluH1WBe9VZbks6zKR2f/OE/vOs3X/89O7rp9IznezL4oLt3/tucjm9oKs7f3YpNCPN+GVqwj/2m1WF0+iEiZiFwPYIwZAx4HrjXGHDHGPGo/fszeXufzq4Tq6h/l6d1nCEUiXL+xlk2rK84lgGket4s/+shGNq2q4HBTPz96/AjRaHSOV1Qq+8STBJ4CbgcQkc1AmzFmOhXlAPeLiM++fyVgROTTIvIle59qoAormSiVEKPjUzy3t41wJMr1G2tZVj330ZDH4+bzH1hPQ20xLx/qZI/pTmKkSqW2BZOAMWYHsEdEdgDfA+4UkTtE5EPGmE7gHuA5EdkJ9ACPAg8Bt4rIC1iXin5hvq4gpc5HJBLlxf3tTEyFueKSynkTwLTcHA+fuW0dXo+bn/7mGCPjU0mIVKnUF9c8AWPM3TMe2h/z3P3A/TOe7wfeczGBKTWX/9jZRGf/GPVVPmRpadz7VZcV8oHrlvPL50/xwHMnuOPdlyxekEqlicweIVMZ53TnEI+81Ehhvpet66txuWZetzC/d11Zz5Kgjxf2t3PszNlFilKp9KFJQKWVB7efJBqFreurycs9/0uKvR43v/duAeDnzxwnooPEKstpElBp43BTHwcb+1i3PEBdsOiCX6ehtoSr11XR3DHEy4c6EhihUulHk4BKC5FolAe2nwTg9hsaLvr1PrytgRyvm18+f4qJqfBFv55S6UqriKq0sPtoF80dQ1x5SSXLq4tp6oh/gtATO5vOTS6bdsOmOt55xVIe29nMk6+e5v3XrkhwxEqlB00CKi08+eppXC740PUrE/J62/e1UlyUS36uh//Y0YTX46Yw36trFKuso91BKuU1dwzR2D7EhpXlVAUKE/a6OV43m1ZXEApH2Xe8J2Gvq1Q60TMBlfKetxeK2bY58Ufpq5aUcLS5nxOtA6xdVjrrojR6dqAymSYB5Yh4f2zHJkLsPNxJWXEeG1aWJzwOt8vF29ZW8vTuFnYf7eaWK5ac99wDpdKZdgeplPbKkU4mJsNcv6EWt3txfpxrK4qoCxbR0TdKS/fIoryHUqlKzwRUSnt+XxsuF3i9rlnPHhLlcgnS1jPCnqNd1FUULVrCUSrV6JmASlkdfaM0dwxRV1G06IvBlPryWLO0lMHRKYyWk1BZRJOASlmvHbNKPtdXJWflqI2rysnxuq0lKXUCmcoSmgRUytp7vBuXC5ZUXniJiPORn+vlsoZyJqciHDjZm5T3VMppmgRUSjo7PMGp1kFkaSn5uckburqkvhRfQQ5Hm/sZHNElMFTm0ySgUtK+Ez1Egc2rg0l9X4/HzRYJEonC3mO6ApnKfJoEVEqa/gHevLoi6e+9rMpHsDSf053DdPaNJv39lUomTQIq5YxNhDjS1E99pY+K0oKkv7/LnkAGsNt068L0KqNpElAp58CpXsKRKJvXJLcrKFawtID6Kh+9A+OY03rJqMpccY24ici9wNVAFLjLGLMr5rk/AD4DhLHWHr7TGBOdbx+l5nO4qR+ADQ2JLxNxPtavKON05zBPvnqatcsCjsai1GJZ8ExARLYBq40xW4HPAt+Pea4Q+B3g7caYa4G1wNb59lFqIUeb+ynI81Jf5XM0jmBpAcHSfPaf7KW9V8tJqMwUT3fQTcDDAMaYw0BARIrt+6PGmJuMMVN2QigBOubbR6n59AyM0XV2DFlaisftfG/luuVlADy164zDkSi1OOLpDqoG9sTc77QfG5x+QETuBu4CvmOMOSUiC+4zUyBQiNd7/guHJ1IwmJyZqanCyfb6fflveSwY9LO/0eoKumJ99bn4Zts2Ee8Xj3UNeZgzZ9l5sIM/+NAGSnx5Fx1LMmTTZzmb2gqJb288SWBmJS0XVj//OcaYb4rId4Ffi8hL8ewzU3+/s5fiBYN+urvjX7Iw3Tnd3pnLPQI88JujvPR6OwAdPcM88JujCXkvvy9/1veL142b6vj5M8f51fMneNeV9QmJaTE5/bdNpmxqK8ze3otNCvEkgVaso/hptVhdPohIGXCpMeYFY8yYiDwOXDvfPkrNJRqN0tE7Sn6uh1JfrtPhnBOORnC5rC6hvNw3zlZ1sRmVCeLpdH0KuB1ARDYDbcaY6VSUA9wvItMjeFcCZoF9lJrV0OgUoxMhqsoKU2phl/xcL3VBH/1DE/QPTTgdjlIJtWASMMbsAPaIyA7ge8CdInKHiHzIGNMJ3AM8JyI7gR7g0dn2WbwmqEzR3mt1CdaUJW4d4URpqLWuazjVNuewllJpKa55AsaYu2c8tD/mufuB++PYR6l5ddglGqrLUy8JLAkWkeN109g2yOY1FbhT6ExFqYvh/DV4SmGNB3T1j1KQ58FfuLgLyFwIj8fNsmo/oxMhrSekMoomAZUSRsZCjE2ECZYWpNR4QCztElKZSJOASgldZ8cAqHSgYFy8KgMFFOR5aekaIaJF5VSG0CSgUkK3nQSCKZwEXC4XSyuLmJgKn4tXqXSnSUClhJ6zY7hdLspKUntG7pJK62rolq5hhyNRKjE0CSjHTYUi9A1NUF6SlxL1guZTU1aI1+PiTJcWlFOZIbW/cSor9A6OE42mdlfQNI/HTW1FEYMjk1pZVGUETQLKcd39qT8eEGtJ0OoS2n+i1+FIlLp4mgSU49JhUDjWksoiAPYd14XoVfrTJKAcFY1G6T47TlG+l8L8uCawOy4/10uwtIDjrQMMj005HY5SF0WTgHLU0OgUE1PhtDkLmFYXLCIahSPN/U6HotRF0SSgHNUzYNX5ryi9+IVjkqnGrm90qLHP4UiUujiaBJSjeu0kUF6SXkmgvCSfwjwvh5v6iOrsYZXGNAkoR/UOjuMCyvzplQTcLheXLAvQMzB+ruSFUulIk4ByTCQSpW9wnBJfLjne9PsorlthLUJ/WLuEVBpLj8sxVEYaGJkkFI6mXVfQtOGxSQCe39+Gy21VPtUlJ1W6Sb/DL5UxpscDKtI0CfgLc/EV5NDeO0okouMCKj1pElCO6R1Mz0HhWDXlhUyFIufaolS60SSgHNMzMI7bBQF/alcOnU9thTV7eHp9ZKXSTVxjAiJyL3A1EAXuMsbsinnuRuCvgTBggM8Cm4FHgBP2ZgeMMV9MYNwqzYUjUfoHJwj481O+cuh8qsqsSW4dvaNsaCh3OBqlzt+CSUBEtgGrjTFbRWQd8CPgqphN7gNuNMa0iMgDwK3ACPCgMebLixG0Sn9nhyaIRKOUp/j6AQvJz/VS6sul++wY4UjE6XCUOm/xHILdBDwMYIw5DAREpDjm+cuNMS327W6gHPAnNEqVcXrOTRJLr3IRs6kuLyQcidJzVscFVPqJJwlUY/24T+u0HwPAGDMIICI1wC3ArwEfcJ2IPC4iL9hdRkqd88aVQel9JgBQXWaVkOjs03EBlX7iGRNwzXL/TdfDiUgl8CvgTmNMr4jsB+4xxjwqImuAp0VklTFmcq43CQQK8Xo95xl+YgWD2XUC42R7+4cn8HpcLKkqwe2e+RFLPL9v8a5Aasjxsv21NroHJlLmM5QqcSRDNrUVEt/eeJJAKzFH/kAt0DF9x+4aehz4U2PMUwDGmCPAEfv2MRHpAOqAxrnepL/f2aOoYNBPd/eQozEkk5PtnZgK0zc4TkVJASOjE4v+fn5fPkPDi9tVE/Dn0dE7Qlv7WXJS4GAmWz7L2dRWmL29F5sU4ukOegq4HUBENgNtxpjYKL4N3GuMeXz6ARH5tIh8yb5dDVRhJROlONM5TDSavpPEZlNdZo0LnGobdDoUpc7LgmcCxpgdIrJHRHYAEeBOEbkDGACeBD4FrBaRz9q7/Ax4APipiNwO5AFfmK8rSGWXxnbrhzKdJ4nNVFVWwJHmfszps0h9wOlwlIpbXPMEjDF3z3hof8ztuUb23nNBEamM19hhJ4HiDEoCAWtw+Ojpft7PCoejUSp+6TtLR6WtpvYhcrxuiotynA4lYfJyPQT8eZxoHWQqFHY6HKXipklAJdXoeIiOvlHKi/NxuRb/qqBkqi4rJBSO6LiASiuaBFRSNXda1xRk0njAtOkSEkdPn3U4EqXip0lAJVWTPSicSVcGTasqK8QFHNXF51Ua0SSgkurclUEZNCg8LS/Hw9IqHyfbdFxApQ9NAiqpmjqG8BXkUFSQmYvara0PEApHONmq4wIqPWgSUEkzODpJz8A4y2v8GTcoPE3qSwHrUlGl0oEmAZU001fNrKwpXmDL9CVLS61xAR0cVmlCk4BKmsbpJFBb4nAki6cwP4f6Kj+n2gaYnNJxAZX6NAmopDnVPp0EMvdMAKwuoVA4ykmdL6DSgCYBlRSRaJTGtkEqAwX4CjJnpvBs1tq1g4yOC6g0oElAJUVX/xijE6GMHg+YtmZpCS6XzhdQ6UGTgEqKU20DAKzI8K6g7ftaefVoF2V2HaGn95xxOiSl5qVJQCXFuSuDMjwJTKsqKyQSjdJ9dszpUJSalyYBlRSN7YN43C7qK31Oh5IUb6w7rElApTZNAmrRTYXCnO4cpr7K5/jSi8lSGSjABXTo4vMqxWkSUIvudOcw4UiUlTWZOz9gptwcD2XF+fScHWNC5wuoFKZJQC26k1k2HjCtqqyASBROtg44HYpSc9IkoBbd8TNWCYXVS7LnTACgunx6yUktIaFSlyYBtaii0SjHWs4S8Odl5EIy86kMFOBywZHmPqdDUWpOcdXzFZF7gauBKHCXMWZXzHM3An8NhAEDfNYYE5lvH5U9OvvHGBqd4spLKjO2cuhccr0eKkryaWwbYnQ8RGF+ZpbPVultwTMBEdkGrDbGbAU+C3x/xib3AbcbY64F/MCtceyjssQxuytozdJShyNxRk15EZFoVEtLq5QVT3fQTcDDAMaYw0BARGJH+C43xrTYt7uB8jj2UVliejxgzZIsTQIV1rjAoSbtElKpKZ7z02pgT8z9TvuxQQBjzCCAiNQAtwBfxeoemnOf2QQChXgdvoY8GPQ7+v7Jloz2nmwfpKggh42XVON2v9Ed5Pcld3wg2e83rbAwj4K8dszps0n9fGXTZzmb2gqJb288SWBmR64Lq5//HBGpBH4F3GmM6RWRBfeZqb/f2Uk1waCf7u4hR2NIpmS0t39ogo7eUTY0lNPbO/ym54aGxxf1vWP5fflJfb+ZZGkp+070cOREFxUlBYv+ftn0Wc6mtsLs7b3YpBBPd1Ar1lH8tFqgY/qO3c3zOPBVY8xT8eyjssPxluweD5i2brlVWvpwk44LqNQTTxJ4CrgdQEQ2A23GmNhU9G3gXmPM4+exj8oCx89Yk6SydTxg2voVZQAcbNRxAZV6FuwOMsbsEJE9IrIDiAB3isgdwADwJPApYLWIfNbe5WfGmPtm7rM44atUZs70k+N1s6w6u/psZ6ouKyTgz+NIUx+RSPRNYyNKOS2uC5eNMXfPeGh/zO28OPdRWeTs8AQt3SOsX1FGjje75yS6XC7WryjjpdfbaewYpCGD11hW6Se7v51q0Ryyuz7WLy9zOJLUsLGhAoD9J3odjkSpN9MkoBbFdBK4dKUmAbAGhz1uF6+f7HE6FKXeRJOASrhINMrBxj5KfbnUVRQ5HU5KKMjzsra+lNOdw/QPTTgdjlLnaBJQCXemc5jhsSnWryjLunpB89mwyuoS0rMBlUo0CaiEO9ho9XtPXxqpLBsbygEdF1CpRZOASrhDjX24gHU6KPwmlYFCasoLOdzcx1RIVxtTqUGTgEqo8ckQx1sGqK/2U1yY63Q4KWdjQwWTUxFdaEalDC1wri7I9n2tb3nshk11HDzVRzgS5TK9KmhWG1eV88Srp3ntWDeXrSx3OhylNAmoxNm+r5UX9rcBEI2+kShu2FTnZFiOi02YkWiU/FwPLx/u5BPvXIPHrSfjyln6CVQJE45EaO0awVeQQ1nxrBPJs57b5aK+ys/4ZJhj2iWkUoAmAZUw7T2jTIUj1Ff59NLQeSyr9gGw23Q7HIlSmgRUAjV3WoVil1Vld8G4hVQFCsnP9bDnWDeRyLzLbCi16DQJqISIRKKc6RqmIM9LRakzq3ilC7fbRX2Vj8GRyXNrMCvlFE0CKiE6+kaZnNKuoHjV22dLu02Xw5GobKdJQCVEU4d2BZ2P6rJCfAU57D7aRSgccToclcU0CaiLNhWK0Nw+RGG+l8qyxV9DNxO43S6uWlfF4OiUrjimHKXzBNRFO905xFQ4wtrlAdyzdAXNNrFMwXWX1fDMnhZ+e6CdTXZxOaWSTc8E1EU72ToIwKq6YocjSS/1VT6WBIvYd7yH4bEpp8NRWUqTgLoow6NTdPSNUhkowK+1gs6Ly+Xi2stqCEeivHK40+lwVJaKqztIRO4FrgaiwF3GmF0xz+UD9wHrjDFvsx+7HHgEOGFvdsAY88VEBq5Sw8m2AQBW1em6uRdi6/pqHtx+kpcOtHPT5UucDkdloQWTgIhsA1YbY7aKyDrgR8BVMZt8C3gNWBfzmA940Bjz5UQGq1JLJBrlZOsgXo+LZdV6VdD5mh4rqakoorljiH9/4ST/6foGh6NS2Sae7qCbgIcBjDGHgYCIxHb+fgV4aMY++ouQBVq7Rxgem2J5TTE5Xu1ZvFCrl1hnUUZrCSkHxNMdVA3sibnfaT82CGCMGRKRmTVxfcB1IvI4UAR8zRjz3HxvEggU4vV64g58MQSD2ZW7Lqa9fl8+x/daR7KXr63C70vtWcKpHN/aojz2mG4a2wfJL8pLyNhKNn2Ws6mtkPj2xpMEZl7z58IaG5jPfuAeY8yjIrIGeFpEVhljJufaob9/NI5QFk8w6Ke7e8jRGJLpYtt7pmOAlq5hqsoKyPO6GBoeT2B0ieX35ad0fABrlpSw23Tz0LPHePdVyy7qtbLps5xNbYXZ23uxSSGec/hWrCP/abVAx3w7GGOOGGMetW8fs7fP7qLyGeZocz8AlywLOBxJZli1pASvx8Wze1oIR3QGsUqeeJLAU8DtACKyGWgzxsybekXk0yLyJft2NVCFlUxUBhgZn+JU2yBF+V6WBH1Oh5MRcnM8rKwtpndwgn3HdSF6lTwLJgFjzA5gj4jsAL4H3Ckid4jIhwBE5AHgX62bsl1EPo41UHyriLyAdanoF+brClLp5cX97YTCUWRZALdbi8Ulylr7rOqJV5uJRrXEtEqOuOYJGGPunvHQ/pjnPjLHbu+50KBU6opEojyzpwWvx3XuqhaVGKW+PDatqmDfiR6Onj6rXW0qKfS6PnVe9p3ooXdwnJW1xeTlOHs1VyZ637XLAfjVbxudDURlDU0C6rw8vfsMAGvr9Sh1MayoKebSFWUcPX2W4y06b0AtPk0CKm5nuobPdVOU+nUh+cVy2zXLAfjVjiZH41DZQZOAitsze6yzgFvettThSDLbmqWlrK0v5eCpPk60DDgdjspwmgRUXIbHpth5qJNgaT4bGmZOEFeJsn1fK9v3tbK8xqrM8k+PHea511ocjkplMk0CKi7P72tlKhThpi1L9LLQJKgMFLCk0kdX/xitPSNOh6MymCYBtaBwJMKze1vJy/Fw3YYap8PJGptXW6uNvXash4jOG1CLRJeXVOfMtQykLz+H/qEJbtxSR2F+TpKjyl4Bfx4ra4s51TbIK4c72bq+euGdlDpPeiagFjR9WejNuuhJ0m1aVYHb5eKhF04RCmtNIZV4eiag5tU3OM6xlgHWryijprzI6XCyjq8wB6kv5UhzP//0H4fPlZYAuGGT1mRUF0/PBNS8jtuXKL5js/7gOOWyhjK8Hhevn+xlKqRnAyqxNAmoOYXCERrbBikpyuUyvSzUMfm5XtavKGN8MsyRpj6nw1EZRpOAmtPpziEmQxGu21CD16MfFSetW15Gfq6HQ439jE+GnA5HZRAdE1BzOn7G6grKzXHPeeWQSo4cr5vLVpaz62gXB072ccUllU6HpDKEHt6pWQ2OTNLZP0Z1WWFC1rxVF29NfQm+ghzM6bMMj005HY7KEJoE1Kyma9bomgGpw+N2s3FVOZFolP0nepwOR2UITQLqLaLRKKfaB8nxuqmv0uUjU8mK2mJKfbmcah2ktXvY6XBUBtAkoN6io2+U0fEQy6r9eHRAOKW4XS62rAkSBf79hVNOh6MygH7D1VucahsEoKG22OFI1GzqgkUESwt47XgPJ1q11LS6OHFdHSQi9wJXA1HgLmPMrpjn8oH7gHXGmLfFs49KXaFwhOaOIYryvVQGCpwOR83C5XKxRSp48pUzPLj9JP/j45txubSyq7owC54JiMg2YLUxZivwWeD7Mzb5FvDaee6jUtSZrmFC4Sgra4v1hyWFVQUK2dhQzrEzZzlwqtfpcFQai6c76CbgYQBjzGEgICKx/QRfAR46z31UipruClqpXUEp78PbGnABD7/YSFRLTasLFE93UDWwJ+Z+p/3YIIAxZkhEZtYUmHef2QQChXi9nnhiXjTBoN/R90+2me31eD209YxYC5pUZ9aloX5fvtMhJNzm9TVs3VDDjtfbaekfZ4u8MYEsmz7L2dRWSHx740kCM/sEXFj9/Andp79/NI5QFk8w6Ke7e8jRGJJptvYePNFDNArLqvwMDY87FFni+X35GdWead3dQ9yyZQk7Xm/np48fYWmZNYaTTZ/lbGorzN7ei00K8XQHtWIdxU+rBToWYR/lsFNtg7hcsLwmu46s0tmyaj8b7LGBY2fOOh2OSkPxJIGngNsBRGQz0GaMWSj1Xsg+ykHtvSP0Do5TW1FEQZ6WlEont21dDsB/7GhyNA6Vnhb8thtjdojIHhHZAUSAO0XkDmDAGPOQiDwALAVERLYD9xljfjZzn8VrgkqEnYesE7WVNTognG5WLSlhbX0pBxv7aGwfzLo+cnVx4jrkM8bcPeOh/THPfSTOfVSKikSj7DzYSY7HzVItE5GW3nvNco6e3sdjO5u5coMuAKTipzOGFcfPnKV3cJz6ap+uG5Cm1i0LsKKmmL3HumnumPMiPKXeQjt/FTsPdQI6NyDdzFzjYXmNn8b2QR585jifeucah6JS6UYP+7LcVCjMrqNdBPx5VJUVOh2OughLgkUsCfp44bUWOh2+5FqlDz0TyHL7T/QyNhHihk21uLVMRFpzuVysqPXT0j3MDx87wjWXvnGV9g2bdJxAzU7PBLLc9FVBW9dXL7ClSgfLqv2U+vI41TrAiK4+puKgSSCLDY9N8frJXpZW+lhSqVcFZQK3y8WWtZVEonCoqc/pcFQa0CSQxXYd6SQciepZQIZZUx+gKN/L8TMDjE2EnA5HpThNAlnspQMduFxw1boqp0NRCeRxu1i/soxwJMrhpn6nw1EpTpNAljrZcpbG9kE2rCwn4M9zOhyVYKvrSijI82BO9zM6rmcDam6aBLLUEy83A7Bts141kok8HjebVlcQCkd57Xi30+GoFKZJIAuNTYR4fu8Zyorz2LBy5lIQKlM01JUQ8OdxsnWQ5g6t36hmp0kgC71yuJOxiTDbNtbiduvcgEzldrm4XIIA/OLZ47r6mJqVJoEsE41Gee61VtxuF2/fWOt0OGqR1VYUsSRYxNHTZ3nlcKfT4agUpEkgyxxvGeBM1zBXra+m1KcDwtngiksqycvx8C9PHaN/aMLpcFSK0SSQZZ545TQAH7i+weFIVLL4C3P52E2rGJ0I8c+/PqLdQupNNAlkkdaeEfad6GFVXQnrdUA4q2zbWMtlK8s51NjH03tanA5HpRBNAlnkSfss4N1X1TsciUo2l8vFHe9ei78wh3995jivn+xxOiSVIjQJZIn+oQl2HuqguqyQjasrnA5HOSDgz+NLt28gx+PmBw8fokkXn1FoEsgaT7xymnAkyq1X1WvJ6CzWUFvC596/nsmpMN/5t/06f0DFt56AiNwLXA1EgbuMMbtinrsZ+CsgDPzaGPMXInI58Ahwwt7sgDHmiwmNXMWt5+wYz73WQkVJvhaLU2xZE+ST7xJ+8qThb362ly9+eAOXLAs4HZZyyIJJQES2AauNMVtFZB3wI+CqmE3+DngX0Aq8JCLopwZoAAAUNklEQVS/BHzAg8aYLy9CzOo8PfRiI6FwlA9dv5Icr578ZaOZS1Higv/ygfX8n18d5t5/28fv3bqWay+rcSY45ah4fhFuAh4GMMYcBgIiUgwgIiuBPmPMGWNMBHjM3t6/SPGq83S6c4iXD3WwtNKn1ULVm4xOhLhxSx0ul4sfPnaEb/50D8/sPeN0WCrJ4kkC1UBsBapO+7HZnusAarDOBK4TkcdF5AURuTERwarzE41GeXD7SaLAR25o0LEA9Ra1FUW8d+sySn25HDszwBMvn6a9d8TpsFQSxTMmMPOXw4U1NjDfc/uBe4wxj4rIGuBpEVlljJmc600CgUK8Xk+cYS+OYDCzTmBe2t/KwcY+llT6GA9H2XOi99xztwb9b2mv35ef7BCTJpPbNpvzaa/fl89Hb7YWqD/a3M/Xf7SLO25bz3uvXZEWtaUy7Xu7kES3N54k0MobR/4AtVhH/LM9Vwe0G2OOAEcAjDHHRKTDfq5xrjfp7x89j7ATLxj0092dOVdKjIxP8YNfvo7b7eJtEmR45M3lAp7Y2cTQ8LgzwSWZ35efNW2FC2/vlZdUUhUo4OVDndz38AF+9eJJrr2smsL8nJRdqD7TvrcLma29F5sU4ukOegq4HUBENgNtxpghAGNME1AsIstFxAvcBjwlIp8WkS/Z+1QDVVgJQyXJA8+dYHBkko0N5RQX5TodjkoTy6r9vP+65dQFi2jvHeXRl5o40TJAREtNZKwFk4AxZgewR0R2AN8D7hSRO0TkQ/YmXwB+DrwI/MIYcwx4CLhVRF7AulT0C/N1BanEOtTUxwv721kS9LF+RZnT4ag0U5Dn5R1b6rh6fRWRaJQdBzv45r/s1TkFGcqVKsWkuruHHA0kU04rB4Yn+NqPdjEyNsVXPnk5zZ2ztymbukiyqa2Q2PaOjE2x+2gXzZ3DuIAr11XxwetWUFVWmJDXv1iZ8r2N1xzdQRc1cBPXZDGVHiKRKPf96jCDI5N87B2rWFFTPGcSUCoeRQU5bNtcR7CkgAe2n+CVw53sOtLF1eureM/Vy6itKHI6RHWRNAmkqbdM/gEGhyc50tzPxoZy3nnFUgeiUplq/YoyLll+BXtNN4+81MiOgx3sPNjBljVB3nvNMpZXFzsdorpAmgQyRHPHEM/va6OsOI/P3LYOl84JUAkUe9DxjsvrONM1THPHEHuOdbPnWDeXrijjozeuYkmlz8Eo1YXQJJABegfG+e2BdrweF9dcWs1u0+V0SCqDuVwu6qv8LK300VBXwoFTvRxs7ONQ06usWVrKF//TZRTm5zgdpoqTJoE0NzI+xXN7WwmFo9ywuZay4uyaFKWc43K5qK0ooraiiNbuYV490oU5fZa7//Flrt9YQ0VpwbltU3WegdJS0mltYjLM07tbGJ0IsWVNBfVV2TVzUqWOuqCP91+3gg0N5QyPTfHEK6c52tzvdFgqDpoE0tRUKMKze1sYGJ7kkmUBnQ+gHOdxu9i0uoKb37aE3BwPrx7pYvfRLl3TOMVpEkhDE1NhntvbSvfZcVbWFvO2tUEdCFYpo7aiiPdsXUZxUS6Hm/r57YEOQuGI02GpOWgSSDMTk2G++8B+OvpGWVrp45pLqzUBqJTjK8jh1quWUlGSz6m2Qf7x0UOaCFKUDgynuNhL88YnQzy3t43us2PUV/m4fmNtWlR5VNkpP9fLLVcs5dm9Lewx3fzDI4f4/AfW4/XosWcq0b9GmugfmuDXO0/TfXaM5dV+TQAqLeR43bxjyxLW1pey91g3P3j4oJ4RpBg9E0ghs80CjkajnGgdZNeRTkLhKBsaytm4qly7gFTayPG6uesjG/m7B1/nteM9/O+HDvKFD16qS52mCP0rpLCh0Ume3t3CzoMduHBx/cYaNq2u0ASg0k5ejoe7bt/A+uUB9p3o4e8fOsDkVNjpsBSaBFLS8NgUOw928PCLjbT3jlIXLOL91y1neY3WZ1HpKzfHwxc/vIFLV5Tx+slevvXz1xgc0QrzTtPuoBTSOzDOkeZ+GtsHiUahuDCHTasrWFbt16N/ldZiuzo3ri5ndCLEybZBvvHj3dx1+wbqglpzyCmaBBJotj79habLT06F2W262P5aGydaBwAo8eVy6YoyVtQU6+Cvyjget5trL6vm0hVlPPrbJr5+/25u37aSm69YilsPdpJOk4BD2ntHeH5fG7890M7IeAgX1iSbS5YFqK0o1CN/ldFcLhcffPtKllX7uf/xo/zrsyfYc6ybD29rYM3SUqfDyyqaBJIgEo3SMzBOS9cwx1vO8vrJXtp7RwGry+e9W5dx/cZaDjX1ORypUsm1eXWQhtoSfvKkYc+xbr75072sWx7g+o21bGyoIC/X43SI51zImX460CSQYNFolLPDk/ScHaNnYJzfvt5OS88IE5NvXAmR63WzoaGcay6tZsuaoE6eUVkp9kd1/coyKgMF7DvRw+Gmfg439ZOb42bN0lKWV/tZEvRR6sujpCgXj9tFFIgCIZeb3r5RJkMRJkNhJqciTE6Frfuz/DsVijAZijBlPzYVu9+Mf8G6vDU/10OZP4/JUISAP49gaQEBf17GdNVqErA9sbNp1nVZ48n0o+NTHGzs46XX22ntHmEi5tI3j9tFdXkhS4M+6oJFLKv2I0tLyfGmzhGOUqkgGCjgliuWsqq2hFePdrLraDcHT/Vx8NTinyG7XNbVS3leN+FI1Dowc1mFGkfHQ+fO3Kd5PS6qy4uIRqJcurKcYEzZ7HQTVxIQkXuBq7GS713GmF0xz90M/BUQBn5tjPmLhfZJBWMTIfqHJhgdDzE6EaKpfZDx8Sm8Hhd5uR7ycqz/ZopGo4yMh2juHOJk6wBHm/s5dmaAiF0psSDPS0NtMcHSAipK83n/tSv0SF+p83CibYCy4nzedeVSxidD9A1OMDA8ydhkiPGJMJFoFBeAC3JyPIRCETxuF16P2/7Xvu1x43W78Jy778Lrtv6N3d7jceN2Me843FQowvDYFH2D43T1j9HRN0pL1zA/eeoYAFVlhVy2ooxLV5Yj9aWz/nakqgWTgIhsA1YbY7aKyDrgR8BVMZv8HfAuoBV4SUR+CQQX2CdhItEoA8OThMMRQpGo9W84yuhEiKHRSYZGpxgem2JwdJL+wQl6BsbpGxxndCIU1+s/9MIp8nM9uN0uolEYHJlkMvTGtHcXsLymmI2rypkKRyjz573pw6QJQKkLl5/rpbbCO+eC9n5f/qxn8ImW43UT8OcR8OfRUFcCWJM5ffk5HDjVx5Hmfp7e08LTe1rwuK3FdpZW+qgMWF1HJUV55OW4yc3xkOu1/vXayScv10N+rnOdMvG8803AwwDGmMMiEhCRYmPMoIisBPqMMWcAROQxe/vgXPskugE/ePgge0x33Nvn5XgoL8mnoa6EgD+PogIvhXle2vrGGB+fIhSOMDEVZnwyzMRkGI/HzcRkmFDYOtKvKS+ixJdLXbCIVbUlNCwpobgwF5h94EgplZn8hbncsKmOG7csIRSOcKJlgAONvRxt7qe1e4QzXcNxvY7X4+Kez1xFdVnhIkc8x/vHsU01sCfmfqf92KD9b+wvcAfQAFTMs8+sgkH/BY2y/PnnrrmQ3RbFR25Z6+j+Sinn1FSX8Pa31S/6+wSDiV1BMJ6+ipk/zi6sfv75nptvH6WUUikinjOBVqyj+Gm1WEf8sz1XB7QDU/Pso5RSKkXEcybwFHA7gIhsBtqMMUMAxpgmoFhElouIF7jN3n7OfZRSSqUOVzyLQIvIN4HrgQhwJ7AZGDDGPCQi1wN/Y2/6S2PM/zfbPsaY/YsQv1JKqYsQVxJQSimVmfQidqWUymKaBJRSKotp7SBSv8RFoonIJ4D/DoSArxpjfu1wSAkjIpcDjwAn7IcOGGO+aD/3LuAJY0xGVP4SkQLgEHAP8AzwE8CDdYXeJ40xEyLyMeC/YY3NPWOM+Z9OxXu+ROR/AW/H+p36a+AwcB/W9/QY8AVjTEhEvgHciHVQ+5Ax5n+JSAnwM6AEGAY+boxJqTK9s7RvF1Z1hRysKyz/szGmw/6+fhnrb/iPxph/ti/E+SGw0t7+T4wxL4nIr4AA1ncb4L8ZY2LnbL1F1p8JxJbFAD4LfN/hkBaViJQDXwOuw7qa64PORpRwPuBBY8wN9n/TCSAf+H+xfiAzxZ8Cvfbte4C/N8a8HWgCPi0ihVgXbdwEbAVutsu4pDwRuRG41P5e3gp8B6stf22M2QacBj4qIpcC7zDGXAtcC/y+iFRj/WhuN8ZcBzwK/A8n2jGXOdr3DeA+u30PAX8sIkXAnwE3AzcA/11EyoBPAiP23/szwN/aL+0Dbov5/M+bAECTAMwoiwEERCSTF/O9GXjaGDNkjGk3xnzO6YASbK7plF8B/h7IiEVtRWQtsA54zH7oBqwfO7DOhG42xowCl9l/6yhWwihPdqwX6AXgI/btfqAIWAO8aj/2JPBOYADIF5E8IB/raHkU63v9kL3tI1if+1QyW/v+EPil/Vg31t/qKmCXMWbAGDMGvIiV7P4F+OMZ28Lcn/85aXfQ/GUxMtFywCUiv8CaxPfnxphnnA0poXzAdSLyONYX62tYkxo3GmP+TES+5Wh0ifNt4I+A37PvFxljJuzbHUANwPT8HPuIeTnwcnLDvDDGmDAwYt/9LPBrIBd4L/BjrKKVVcaYMyLyANCM1RV2j13XLLakzbn/H6litvYZY0YARMSDdSn+PcxemqfGGDOF1WUE1lnPz+zbPuDvRaQeOAD8sTFm3gp7eiaQfSUuXMAS4BPAHcCPRCQj+sht+7F+CN6N9eX6v8B3eeOoKe2JyKeAncaYxpiHYz+zb/oMi8hq4OdY/eJTpBER+QBWd8cfAX+C1QX0LNZvl8suYvkhrL7xVcDnRaSSN3+vU/Y7PaN90wngJ8Cz9sHZvL9PInInsAUrYYA1tvAnWHO0vFjJZF56JjB/WYxM1AnsMMaEgJMiMoRV9bXL2bASwxhzBDhi3z4mIhNY3QY/FRGAGhF53u53TVfvBVaKyG1YCX0CGBGRArvLYLp8CyKyBKu785PGmH1OBXwh7IH8/wncaowZwOr6uS3muRrgCuAVu+sLEXkduJQ3vtcDxPz/SCWztA+sgeHjxpiv2/dbsdtsq8M+mxORzwDvAz44ndyNMf835vUfBj62UByaBKwSF18H/jFLSlw8BdwvIn8DlGGdPvY4G1LiiMinAZ8x5u/sLoFcoMAYM2k/35TmCQBjzLkvtoj8OdZA8DXAh7H6ij8MPGFv8kOsq2j2JjfKi2Nf3fMtrLGNPvuxrwOvGmMeA34f64i5A/iyiLixuoMuA05hfc4/gjXYGvv/IyXM0b5PAJPGmK/FbPoK8E8iUop1xc+1WO1dCXwe2Dbd3WOfRTwFfMgu238DcHChWHTGMNlX4kJE/gvwu0Ah8A1jzKML7JI2RCQA/BQrueUBX4+9BNZOAssdCi/hYpLAk1h95flY/eO/D6wA9vHGYCrA36bD31tEPgf8OdaloNO+hvXDOQk8Z4z5qr3t14FbsLpKfmGM+Y6I+LASYjlwFutyywFSxBztq8eKdXo88rAx5g9F5Hbg/8HqBvqeMeanIvJXwO9gXSU17Z3AR4H/ijXe0Ap8ZvosaS6aBJRSKovpwLBSSmUxTQJKKZXFNAkopVQW0ySglFJZTJOAUkplMU0CKiOJSK2IvCOO7f6z/e8mEfne4kdmXaYqIqsucN9cEfmOiETtSpJKXRRNAipT3QjMmwREpA5rwg3GmH3TFUdT3N8CrzsdhMoceiShkkZEbgDuBlqA9VgFsG6dazKLiAxjzfh8H9bM378C/gAQrFmwT4nIdqwJb0+LyHLgJawa7X+JVVumD2vy2E+wPu8lwHeNMT/GKrp1mYj8GPhn+3WuE5E1wD9gHSR5gbvtWu33A21Ys1LXAD+0a9ffCHwTq3plPvCleNaksGd4fge4HGsi0LPGmK/atZy+j1X+uQ04jlU2+E+Br9gF0n4447Wa7PZcBVQAXzbGPLdQDErpmYBKtq1YP2RbgTBWNci5FAG77VrxI8D7jDHvAf4C+MJcO9mF1e4HfmKM+VuselDfN8a8A6sOy3Tt9a9hLTrzqRkv8T3gB8aYG+z3+XHMcyuNMe/Dmp05vUDLl7Fm4t6IVZQv3oqVH8Wa1Xst1oz1d9rrW9wEXIlVF+djWLWCpts2X3XbXmPMTVjF8r4dZwwqy2kSUMl2xBgzXayuGat+0Xxesv9tAXbE3C49j/dsA35XRF4C/pWFa+pfBfwGwBhzACgWkQr7ue3248324x6sI/C/FJFvY5U3jrcsw1VYaztE7dLCL2L98G8CXjDGhO3ywk/G+XrT2/0Wa60BpRakSUAlW2jG/YXKWIfmuD29X2zdk9w5XuMbWJUZryPmqHoeM2upxJbvfUv8xphfAG/DKvb1Z3Zdlwsx/T7uGTGE49x/+vucsqWTVerRJKDS3SCw1L4dOxAcAQrs21XASfv2x4GIvRJV7DaxXsbuprIry/YaY3pn2Q57m68DHmPMvwF3YXV5xWMncIuIuOwrfbbZ730UuNp+vJD5u8xiTbf/OnTwWMVJB4ZVuvs+8A8i8nHeXC74ReAXIjJqb/M9+3LQf8ZalP1nwOeAchH5DdZA8rQv2q/5eaxFvD+5QAzHgd+IyFmsA6uvLbD9tAewSkC/hFUG+WFjzG/thPC7wG6sKpE7sM9AROTfeaML7RkRaTHGfMK+Xycij2GtMfCHccagspxWEVUqxdi15j8I/NgYExWRR4GfG2N+Ps8+TVi16U8kJ0qVKfRMQDlGRAqAx+d4+pvGmJRaCOR8iMgjWJejznS/Meb+BXYfwrpi6C4RGcOqOf9AYiNUyqJnAkoplcV0YFgppbKYJgGllMpimgSUUiqLaRJQSqkspklAKaWy2P8PY8U11T3n2poAAAAASUVORK5CYII=\n",
"text/plain": [
- ""
+ ""
]
},
"metadata": {},
@@ -467,9 +467,9 @@
"outputs": [
{
"data": {
- "image/png": "iVBORw0KGgoAAAANSUhEUgAAAaYAAAGoCAYAAAANe0FzAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADl0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uIDIuMS4xLCBodHRwOi8vbWF0cGxvdGxpYi5vcmcvAOZPmwAAIABJREFUeJzsvXm0bUdZL/qrmt1q99rtadM3bMQ0mKvGgD7ORUAcQ0x4eM0jSoKoAVQ4KOORRsILIYhh5PLE0Okbhp5xuTeKylMu4GUAPkkgkBElGhYkJCc57e7X3qudTdX7o2bNNZuaa6+1zz45a59Tv5GMs3bNWV81s/rvV99HOOfQ0NDQ0NAYF9DTnQENDQ0NDY049MSkoaGhoTFW0BOThoaGhsZYQU9MGhoaGhpjBT0xaWhoaGiMFczTnYFBWFzcGIkyODVVwupq+1RlZ0vQeRoOOk/DYxzzpfM0HGSe5uaq5HTnZZxxRu2YTNM43VnIQOdpOOg8DY9xzJfO03AYxzyNI86oiUlDQ0NDY+djrI/yNHY2vv7okdxnB164/znMiYaGxk6Cnpg0xgp5k5meyDQ0zh7oozwNDQ0NjbGCnpg0NDQ0NMYK+ihP47QgfWRXrRSw0eyeptxoaGiME/TEpLGjoQkWGhpnHvTEpJHBqASEQZODhoaGxqjQOiYNDQ0NjbGCnpg0NDQ0NMYK+ihPY2icziM7fVyooXH2QO+YNDQ0NDTGCnrHpHHGQluR0NDYmdA7Jg0NDQ2NsYKemDQ0NDQ0xgr6KO8shiYUaGhojCP0jklDQ0NDY6ygd0waZx00KUJDY7yhd0waGhoaGmMFPTFpaGhoaIwV9MSkoaGhoTFW0BOThoaGhsZYQZMfNDRC5Dkv1KQIDY3nFnrHpKGhoaExVtATk4aGhobGWEFPTBoaGhoaYwU9MWloaGhojBU0+eEMwSh276RSX2M4aEsRGhrPLfSOSUNDQ0NjrKAnJg0NDQ2NsYKemDQ0NDQ0xgpax6ShsUUM0utp/ZOGxtahd0waGhoaGmMFvWPS0DgF0Ew+DY2tQ++YNDQ0NDTGCnrHNKYY5V6ShoaGxpkEPTFpaDyH0Ed8GhqbQ09MGhpjAD1haWj0oSem5wB60NHQ0NAYHpr8oKGhoaExVtA7Jg2NMYZqt60962qc6dAT02mEZt5paGhoZKGP8jQ0NDQ0xgp6YtLQ0NDQGCvoozwNjR0KzfbUOFOhJ6ZtRJ6iWkPjuYSesDR2OvTEpKFxlmBUso2eyDROF/TENACaNadxNkP7m9I4XdATk4aGxshIT1ryblUe9ESmMQrOuIlp1PN1vSvS0NDQGC+ccROThobG+EETMjRGwVhPTPqMW0PjzMaZ3sfzjjz/y8uff5pytDMw1hOThobG2YuTPWbfTO+lMb4gnPPTnQcNDQ0NDY0I2iSRhoaGhsZYQU9MGhoaGhpjBT0xaWhoaGiMFfTEpKGhoaExVtATk4aGhobGWEFPTBoaGhoaY4VTdo9pfn6eAvgYgMsAuADeBKAF4NMADADHALyuXq/3TlUeNDQ0NDR2Hk7ljulaALV6vf4iAL8N4F4AdwH4cL1e/wUATwN4wylMX0NDQ0NjB+JUTkyXAvgOANTr9ScBnA/gAIC/D5//HYCXncL0NTQ0NDR2IE6lSaLvA/jD+fn5PwNwCYCLAJRiR3fHAezdRIY2S7FFuF6grDxKCEyDgBCSCOecw/WZUpZpEBh0e9YwTx1tYK3pZsJti2KqWgBN5QsAuq4/UhqOZWD3dAmUZmX98Jk1BCxbM7smC5iZLI6UzsJqB0whq1w0USlamTreCvyAKfMLALZJR0rD9QJ0euq6nCjbSlnNtqtMn1ICa8T089pRwDj8QN32RpU1CD0vGOl9QgDLGK2Mo4gf9sV//Jcfc5oq6yuvuWC783M6kFsHp2xiqtfrX5qfn38xgG8C+DcAjwO4PJWpoScezrmygeSFP1dxxlaWUsrWwBkHJ6OlHzCWO3AQAigtYXGM0F2FHHB1WRnjyomJUpI70I9ax1sZrvJkMcZASHbBMChOHgbJGjVfz1U7AufhBx0yXwMyNmp9jfr+4HyN3oc3Q6udXcgtLm6MLGfcMDdXzX12So241uv1d8rf8/PzTwI4Mj8/X6zX6x0A+yEIEJtC2vNLf9h4OIDcZ6OEbyWOqsHl2SA8GVnDxOG8v/pMv0+JWGmq4ni+Og7nHAEIAp/BNCgMOjh9xjjaXQ8B4zAoQbFgwqA0ytfe2TJ2TZdwbKmFjbYHACjYBnZNFmEYBH7A4QexuuMcjmVEeZRPqiUbU1UHHBwrjS5aXbETkFlfanRRdAxUS3Y0QXHOcfH+CXTdAMeW2tEKulQwYRgE6y0XBduAbRmJusmrl9nJAvyAo9F0ozov2gbKRWvk7yXmSg7LoIkJ1aAEBjVi74gJMe87DpJlmRSWaaPb86PdMSGAaVJ4AQcJgsQuiHOOStEC50Cn50XfxTQoio4JQpDIF8J8UULAePI7DmpHlAC2ZSBgPLFoMCkBpRSMcwQBj749JaJeRu0rtinbYVKWaRoAAD/gYNFYIso57HdMhwsZ6vFFY3OcSlbelQAO1uv1N8zPz78SwCMAVgG8BsBnwn//5yAZ8Y9JiGiI6Q+sGkCGibOZrFHiDJKVztMoZRk1X4xx+IxHq0/5DOgf+8RlMSaOiUQUnpu+hB8wBIEY4NL5Yoyh5wVwvf6RTMA4mm0PtklBDQqEaZgGwf65Crquj54bwLGMaAA1DTG4dV0WLYtlOrZlwKAEUxMFGJSEcQhmakVUSgFW13sgpP9+pxeg63YwVXUSeS7YBi7YW0Wj5YIxBkr79dJ1A7hegHLRgjw+GfS9TAOYqTnouj5MQ+SPDvm9goAhiNU95xxewEAUdWwaFBxi4peD+qBvDyBXVsExYVscPS9ITFyMi+NcgyLa7Yo2A5QKFvyAgYDAiB0Fy8GbcR6VmxACCsA2CTyfRYP9Zu1IpEuiRU1cFjWz4bKO0/UbD0+PBwBghbIoJSCJOgY4F3UabxPbOYbIZ6foePCMwanWMdH5+fkHAawBuAmCJv6p+fn5NwI4BOCTmwmJf8BBH1b13qA46QacfpYXPqqsuLxRyrKV9H3GZEDimRF2skwZgdgKMdvhlcdXJJlmP79ITEo5kaKgSEehlMUz78t3JmOTTFxW3tEdODK6EDnYWgZBQLLHjUZsUNqsXqLB3jYTf6fLoooT8OTf8l+aGnyjPAMgVC1L9e0HyiKAYSTL3p8gsnoVMQknJ5JEnnPCeSq8/zz5XjL94cLls0F1PGwa/Wdc2VeAwf1+2Hyp/tbI4lTqmBiA1ysevfxUpblVqDsOyax4tiprqxhHWXlytnJQQUBG1tPkvb+V8uXmOZxoVSIHpXM2t6NR09juPG3XUdm4yjrboC0/aGhoaGiMFc6aiUlvn8cTI68nt/EzDhKlm4uGxunD2E9MaSViXKmpClf9Tv8ff8ZywlXK03T4MPlKP0vLyks/L41BskhO+ozlpMF5NACr0lTFCQIGzhUsRvC+7icV3/ODjCzGeMTcStwFCt8xTfXM0HXVsiRLDamycwA9RRzORRxVffmhwj7TVhhHp+tF9RlP3/UCBAFLlGWr3yuvrcbbSzqcpr6j/B0wdVnkkkDV7oK89qLIb157kb8NRb5kGnn1Muxv1bN0fvPijCpru/qq6m+NLE4pXfxkoWK4xHc+qk6tYuvkxYlTawWVmubG2UzWoHCVLM7jtFUeUmMHp5GXL85FWaSiOf6+ESq54yyivpKdwqZiYPViFxwH1jEh8AKWqS9KKUoFiiBgaHe9PrU51Nf03EBcijQoOAdW1rtYbwm6eNExUCsLWjelBFZI1w4ChlbHjxhUtYoNxzIS+eIAmh0X7W4Q5S9UucM0CMpFC4QKdlifYt2nP2fqixKYJoUfcFDCozJ2ez6W17vwAzGhzdQKKNgmAsax3Oii0/NBANQqNmoVZ+D3itOf0+mbBgUlWdZXnEpNwnyRWBqWmaTUx7+z5ye/V1JWn5gj5NBcVqGqP8bD03kmhMA0DRicJ2jlqjaZV1/D9Pu8vpqX51FlRYxHAASxRdAWZKXHAw01xnpikoh3nmHCN4ujsorAOCI66rDpDAoH8ldG8fs4Ej7jsAiQvuG9GUtOJYsQElF+h2EqUUpggYi7LEOWkYWToZm6GW8YFJWSjfWWm4njBxzLjTY6bnJn0ekFAFzMTRVgGkZCVrVsgZKslQFCCNabPXTdIHGPRpanVLAS7D0OwAs4XM/PWGsgRCwKLNNIpME40Or6WG/2ElYx/IDjxEoHlknhx+qfA8KqBQFqZWek72WGk3K6jH7ABE07McgJOWnLD4QQ2JaBnhcov5frhxR8xTeW94/q9TruvPNOAMD8/DzuvPPOhKzl5WXccsst6PV68DwPt912Gy677DK8/vWvj95ZWFjAq1/9arzpTW+K5Fumobz4OwyzTRV+3XXXoVrtX9C89957sXv37kycH/7wh3j1q1+NL3/5y9i/f/9QaTz00EP4wAc+AEopzj//Atx513tAKcU//L9fxMfvvx+GaeBtBw/iwIEDePjhh/GBD3wApmmiVCrhnnvuweTkJNLQRIjRsCMmpu3G6W4e25l+nqxRV2aSKrsdGJRuwLjSjE9ePLmKVz3jHJlJScYxVNRxYGDaefn2ckw15YUPGn+263ttFWIvmQUN03/ve9+L22+/HVdccQUOHjyIb37zm3jJS14Svff3f//3uPbaa/GqV70K3/72t/HBD34Q999/Pz796U9H7/zO7/wOrr322kwa213GeJoqcM5xzz334Pzzzx9J7rve9S586lOfwq5du/HWg2/Fv/x//4zLr7gSH/voR/Df/vsDaLfb+NhHPoQDBw7gfe97H+69915cdNFF+NjHPobPf/7zeOMb33gyxdLAWToxaWhsJ77ypS/iu995EO12C0uLC/iN33wdfvOG6/Hd7343Wk3v3bsXd911F3wGvPOPb8OJEyfQaXfw5t/7fbzkwAHceOPr8LznPQ8A8Gu/9mt497vfDdu2YVoW7nn/vaCU4o4/vh0bGxvwfR+33HY7XnjFZXj5y1+Ol73sZXjkkUdQrVbxl3/5l/jIhz+Ew4cP48iRw7j/45+EEe5C//IvPoaHHnwwkfc/vuMOXHzxJQAA13Vx5MgRXHHFFQCAX/zFX8S3vvWtxMT0W7/1W9Hv48ePY/fu3Ql53/rWt3DBBRdg7969WFxcxH333Ye77ror8c5LX/pSXHfddXjooYdg2zb+/M//PLH7ec973oMf/vCHAPo7qfvuuy+xE2m1Wpt+l7/+67/GNddcg2984xv9b/WVr+D++++HaZq47LLLcOutt2bi/c3f/A0qlQoY45iamsbaWgMPPfggrv65a1Aul1Eul/Ge97wHADA1NYW1tTUAQKPRwIUXXrhpvjQ2x46YmOJ6GfXKeTSTQLZJM+ZPCKA0ILqd6UsdgCpOXK8wrKw800OAOG4KWJAxQpknf5CsvHDlhdbw3WrJRs/zE5duDSosPrgew/GVdmLH0XMDHFloYaZWSJj08X2GnuvDMigKjhnlwQ8YQITxV89n0S6FEKBgGenTqkieYxuh5YG4LgCR2aRsGYG5qSLWWy66bhALJ7AMGrWhQ0//GB/5fz6DXreFN77hBtzwf/wX3H333fjEJz6ByclJvP/978eXv/xlvOhFL8KLXvRi/Oq11+Hws8/i7W//Q/zn/3wAAHDppZfita99Le6++2689rWvxXXXXYdvPfgg1tdW8Q//+I+44sor8Ybf/h38+2OP4d73/yk+85nP4Nlnn8W1116LW265Bb/+67+Oer0urCf4Hj75qc8kyvK7N78Rv3vzG7NlDP9cWVnBxMREFD4zM4sTC4tw/WQ7WlxcxJve9Ca0Wi188pOfTNTvJz7xSbzjllvh+QFmZ2czk5JsyxdffDHe+ta34k//9E/xhS98ATfeeGP0zh133JF4V3yjZJ7X1tbw9re/HUeOHMHVV1+Nt73tbYnjstXVVfzd3/0dPv7xj+Mb3/gGOOdotVr46Ec/is9//vOwbRsHDx7E9773PVx11VWJb1+pVMJyLuChhx7EW9/6VjzwwAPgnOP/fPsfYXFxAW95y1twzTXX4LbbbsPrXvc6TExMoFar4Y/+6I9GGo801Bj7iSmuNIwr71VMl3R4/O/0b2n+RCjyk0c/qkaUl75KgZsGYwwcQl8QP+PnnCesfQ+SFU9T6nfSstL5YozD5SyyLaZSxnIuTNdsJiueL4MmrQCo6phSgoJtwrEEccA0aXQkZ5oUF+2bwHKjg6VGLyoTCzgWVjtwmi5mJx2w2EmZ6zN4vouCY8DzmbDDxgVpxbFCsgIlKBXMgfkS+hQK0+iTAuIWENLthxICQglqVQdln6HRdMNjr347Mg2KK3/qKsxNl1EpTaFWq2FlZQWHDh3CH/zBHwAAOp0OpqbEs//498fw1w/8DxBC0Fhbi/R0l19+OTjneOlLX4o777wTTz/9NH75l38ZF198ER7/j3/HzTe/EZQAP/XCK/D000+DEIJKpYL5+XkAwO7du7G+vg5CCK644grYJs2YBIrXRfo7xutA1HEAQpBpR7Ozs3jggQfwzW9+E7feeivuv/9+cA4cPnoM7U4b5553XhRHTGjJtDnnuOaaa8A5x5VXXolvf/vbA7+Xqt/94R/+IV71qlfBcRz8/u//Pr785S/jl37pl6I49957Lw4ePAjTNKM4Tz75JI4ePYo3vOENIIRgY2MDR44cwVVXXZX59svLy3jzm9+M/+td78LszDQoARZOnMCHPvQhHDt2FDfddBO+9rWv4e6778aHPvQhXHXVVbjnnnvwuc99DjfeeGNuH473L418jPXElGbRpEkFeR83rVxVMXLkv5aiY+alsZmsvHxxoG/WP51+yl7YIFmEEASM9Y1jbhIn+hfZ830xcTF4I8qS7K68ekmHEwIUC2ZKBgFI1iSOSFe4JwgURAwOSZSIEoj0JY7VZ/Op8qUqS7ru+3nIrtTlAsI0kjsrWa+2SVEt2VGahmFg165dkR5Evv+FL3wB6+vr+OxnP4tGo4HXvOY10TPbFvGvueYaPPDAA/j617+O2267De94xzuiusySTQzlQk3KIqHqkBCSOcojBLjzzjtxySXiKG9mZgZra2twfQbOOU4sLGB2di7Rjh5++GE8//nPR61Ww0te8hK84x3vEBNZwPHP//xNXH31z/WFy0ipupdtL13Hshx33XUXfvSjHyXKc99996FWq0Xv3XDDDdGzAwcOoF6v45WvfGUU9uCDD0YynnjiCbzlLW/B3Xffjcsuuwx/9Vd/lWgTn/vc5/ClL30JU1NT+OAHP4hms4mbb74ZBw8exM///M9HdXPVVT8FyzJx/vnno1wuY3V1FfV6PZrYXvziF+OLX/zi0OOURj7GemIChpt8hpExaJWiCld19i3L2sTDxymXRXKUzmR0WYPyOmjXqD4ezHkX+Ur6QSzMQfnarm+fF+ff/u1fwRhDo9FAq9WK9CFPPvkkLr74Ynz605/Gz/zMz2B1dRXnnHMODMPAV77yFXiel5H1mc98BgcOHMCv/uqvgnOOxx9/HJdffjm+853v4IUvfCEeffRRXHrppSPVAQDc/MY34eY3SqZc1teQZVm46KKL8Mgj38NVV/0n/K9/+ipuuOE34oLw1a9+FY8//jhe//rXo16vY+/evVE7+vfHHsNLDhwYKl+PPPIIXv7yl+PRRx+NJkb57h133JHTXsR3XFlZwS233IKPfOQjsCwLDz/8cLRbkvja174Wxbnxxhvxvve9DzMzM3jyySexvLyM6elp3Hfffbj++utxww03JCa6e+65BzfddFNCt/YLv/ALuPXWW3HzzTdjdXUV7XYbU1NTmJ2dxRNPPIFLL70U3//+9xNEi83a0cng648ewYEX7j9pOeOKsZ+YNDR2Avbt24+DBw/i0KFDeNvb3gZKKd773vfitttug2VZ2LVrF66//npUKhW8+c1vxqOPPorXvOY12LNnDz784Q8nZJ1//vk4ePAgqtUqbNvG+973PhQKBdx+++246aabwDnHu971rlNSjttvvx3vvOMOcMZx+RVX4OeueREA4K1v+X18+MMfwe/93u/h1ltvxVe/+lW4rhtRywGhe5qeno7+XlpaxMc+8uGIKBDHY489hs9+9rMghOAtb3nLSHmcnp7G1Vdfjeuvvx62beMFL3gBXvGKV+SSLSSKxSJuv/12/O7v/m4Ub9euXYl3Op0O/vZv/xaHDh3CAw88AAD4lV/5FVx//fV4xStegZtuugmdTgfvfOc7QSnFu9/9btxxxx2wLAu1Wg1/8id/MlJZNNQg46yU45zzQSunnDgjrUi2ImvU8PQF1jjyvJBuRVZenLguISErRsYYRZbqrtegOHnhy40uFlY7mXBKgN3TxZFkyYux25GvvGecc6xtZJ22fekf/h5HDz+FP779tqFlbWe+BoV7fvaeF6DeMUnkeXrdSjv6s//7v+KWd7wjEfbSl74UX/ziF1EqlU5bvZxuWVAfCCjxP776A+UgvdN3THNz1dw6GGuTRCoiQF9pP5xJovi7o8iKP8uLM3y+1HEAZMzFDCtLdQ6W12lyTankLEqEyR11GQPWZ+/l5TkrS51+wTaggh9w9DwWpRWPkycrYFlTSYDwpJtmYMp8Mc4z5oV4FIaMHyGhO1L0JS5NNeW3I5Ws+L+JOFB/+620SdEk1GXMjZMTPrAdKdqx6/bwcz93TW5/HLUs6bibyUrHPRlZ25mvvHxq9DHWO6aeF3CpdI4jrVwcNnwrcU5WFud9c0EynIiXM6ZZJOIDqbQIEE+D86SnUqAvi3MkdlRxskKUfkzvEpclOhOw0XbR7vqwTIrJihMNxgET9G1ChNdZK/T8KckdnCNh+oYDaLZctHsBTIOiVrEj9mOn52NlvQs/YPB8BkEMFKZ6Ftfa6LoBdk0VceG+iYgs0Wx7aHZ8mAbBZMUWO6Qw7XbXB4fwbFsqmGG5OJ45voH1loupCQfn7q5GVwIEI7ALy6TYN1uJJsmeG2BxrYOAcUxVHUyU7b4eP6wvz2dod0R60eROxE5yomJHfqYCxtHp+mBceOF1YhOx9JaaNu3U8wL0XMGGKzpmwoxQpyesVqRl5bW9eDvKa6vp9OOmg+LtRdWOADHBd3p9s1FxaxuezyLHhsWCGdV93MSP3IEPKsdmz0YNPxlZJ5t+TI7eMQ3YMY39xCR/j3rkNejZdsbJCw8CsVJX1W7ecZgXsqHScQyS9BoaT1tlRkmG05g31c3AGMNSo4tuz88c/cgJJd1UJAVc1YR6vQBdNytL0LR55rio2fGwut6N3K1HZacE8+dPoeexjNWGckF4vk24Yocov+8zLK93E3mjhGDXdBGtrp85eqpVbFBCkqw/ACXHwK7pUubOFufqYz1A2P6TnljjoER4j1UdrQXh3ar0zsowSDj5pmRRoFK0c47v1O1I5lsVhxK1FQ1Jp0+3I88P4PlMeYSnKjsgFjNE0Y7iC7Rh8/tc9OFTLEtPTAMmJk1+OEXgEMc3efoQpf4o7ygiJw1CSK4nTlX4IBBC0O76ymd+wEBJ9tiNheaFVOm0e2pZ7W52spJodbJxAsbR6vjKy7yux2Ca2dNoz2dYSU1KgKjf1Y2eMr+tjq/Un6QnBAlCBBVb9ck8n4ErFxKiPHmTiQpBkKXhS1l5yGtHg5CXr7zFDecD8pzzgQPGYahkjZhXjTMfemLS0NDQ2IH4+qNHMmE7fRclMdbkB4nN1v3bdRw5qhzOBUNOKN7T58tQrsBzrPgIFw9tD92en5HFQj3QVvI3TBggdkXlgplR7hMijhJV8Rjr+1pKh1smyZSVEKEDKheT6yHOOVjAhCXxVCRxhJvNLyFAuWjCsZJ1LHRAgTgaSsWROjPpOiORjkUzukxA7BjaXQ+BgglZKpgJnYpMv+f66Ci+Y54JJ89nWN3oCT1ZSoG+3nLRaLmZY0xKhNWSYUkVeWFAnKGXfb/b89HteYqyhEdzqTgGJSg6ptKIrh8weF62vWz1Xo+KVOD7wSnvK1vJVxCyabeymz0bMfY6prRyFNj84lres+1QgkrECQPyXenLJh1HvitdC6TRbHtoxY7RKAXKRSuyMhDPU1pZvZUyxt/jHGLgjbHTPJ+h3fNhmwaKzmAle0TkoEIPJpzs9Z+LyYvDtmhkAYKHz9eaLtpdUfaIvQeg1fbQ7vqYDu3mESQHr5JjJEgJogw+Oq4fyZJ5DAIOxhimJgqolOzo8q7nMzSavUgxH/8qwsUFERN17NjViZUhjiDgaHY8+D5L+rWCmLxsi8KyjMy351z4pdpoedFxliR2BIyj0XRjfq2AaslEpWjBMo1okpNtQup14nWv+l7pb5lukwETiyDfZ0lbkgQoFbJtEhBEFj9gKNhmhvyQnqCjvmLR0DRUdgExqB3nhcevUcg+qRo7hpElZYwSJzdfob5Tkp/k97JUq6Ac5OmYVNhJO6Ydq2OyFSZj4jTMPOXjsHEGycph0oBznvBrE2/IjHEQhW5nkAPCpUY3YVAUABgT+hOVLiq+cB61LPFwQoQjvmbHS4QBYoKtmfbQsoAYAyxVL5QC1bKZ8DUk/iEwTZIgOxAiFP2VkoXZyaIyncmKjYJtpJiKAKHIECcIITBNYNdUNXLrIFIWbUtOAOk0CpYBO2XeCAB6HkPBCdOLPTMMEZa+X8bDONVyti455zi80IwcBkr4AY/sByZkcaDbY5iumZmJWk5IqjaZ21c4V/YvgwKdXpZowjngeoGyTRad/jASf2aZFK5HIoeM6cpR3aPaSl8NAgaf9XVx8rkkBo0ia1C/HzlfofmwdL7yXK9o9DH2R3kqxb4qfCtxBsnaLE76DGOrsliOct0gebJS+Rgi/UHhg94dVBYVeDgwpt+Pd8o4fD+fWJCXlmUQ5ZFYEHDlkS8BSUxK8TR4Thok77wVyDjzk7J8xVEfIFh1olpUcdTMuTwYxmCHlSO1ScWALf/OGzhV9TgoHbljUJIqNmmno7Tv+G5kkMxhZI2a/qbjkSpfI/TFsxVjPzFpaGiMP0ZZ+GhobAY9MWloaJw0xllXrbFi2WWfAAAgAElEQVTzMPYTk4rhogrfSpxhGEx5cdIXSbYqK4+pFfA8Wal8DJH+oPCE0BjyVsCDWEWEEGW9SP1bGpvrf7NxPJY1fQMI5b8qZ1L1oqqvvNQH1aHKNTznPJeQItx3qNMfQf8dyVLfKeK5dZ/3HQe1o7w2qTKfFZehlDViO9pKX5U6t2Hb/sn0+5HHI0W+9CS+OcZ6YkorcdNKxnj4oGebhctGPWwc26RR542/K/UP6fcHyZqdLKBUSDLfDCoYYdLkD2Lvx8eMzfLLuLAh1+p4aHe9jN06xoVH1/RAZFCCStGKqNhyYvF8huPLbRxbbkfmZmTaBiWwrWS9cC4YXktrHWy03WhgYyHzq90NYJuGcoLoeUGkOJYwDQLGYpYNpKzwQm3P9TO27wBgYa2NdsgOS5ZfkTBCRb8fJOqLcUHdfuzJJSytdTJ16VgU5RS7jxAkvm38/SBgmW9PCEITSSXsni6CUkTyCAGqZSsjS9Z9XPcWbw9WyHyTBdusHQWMwzKpggmLiBCSrkc/YHBT7UH+W461o4QsUy1L5judr7xwzjkMgyaIFPF6UZVxkKy4PvSk80X7zjHz8rXd+PqjR5T3m3YaxpoujtiSOW/1l24c6Wejho8iS94vosiaVBlVlh8wbLQ92CZBqWAlGrNUrKedxA0qi+cF8IKsyRjHMmCaNHM7P2AMnHE4tplY/TMmbNe1Oj4araQJnrnJAmplO+OgjzGOZtuNJhcJSgTl2A09wcbLMMgKdrlgJWzz9essQKfnY7mRtPJghA790vViGhRTVScy4DoMOBd1s7bRS9RlwTZw6bmTwsJHLOOcc2HrjhJUS3Zi0o9PyvHk/YCh2fFRcgxUy30zQ4wJSxWMcUzXCsrJwkyZC+Jc0KbTbXJQO+ovYngiX3ICNSiBY5uJOAFjAEdk8y6eJxXbjjGOrusLj8MpWVvtw+k4Mr8M+Yy/Ufr9duZL1m/sew09O41CF5fYCbTxHUsXHxbbpXgddBygAg1XpHnsnlFkmYagL6tYP5Zp5HaEPHS9QHl85gUMINk6MyiFbWfLQqmgdKep2ADQcQNM19RxWgrzRowDy+tdpIyGgxACw6BgChM3nItVt+pIaHW9l6C7R+kwDigMl/sBg+sFuUdVKvgBw3Kjg/Sn7LrCFmB6siSEoFyy1IsIqM34mAbFrqliJl+UEszUCrnfXtX2SE6b3KwdqUwvEUJQcEwYVH2w4gcswzDjCgaiLEvRMbelr8Tjpf82t9BXVLK2O18GIaBEu1QfFmN9lKehoaGhcfZBT0wxSKOk43a8KV1DDJsvznl450T9LMgpY17ZK0ULJSe7ufZ9hrX1XiaO6wU4vtyC6yctdXPO4XqB8s5PwFjk0yidpxMrbbheVtbCahuNZvYyarvr49hSS7ljdBU7Sc5FGktrWaeFvi+sIKTzxTnH4moHXYWx2m4vyJgXkmmvrneV6W+0vUwZtxtd10e7mzUvBOSbS8o79sxri4zxSJ+Zfl9FHBmEQW01D2wLcTTGDztCx5TOY1qZOGx43jOh42CRQotAuHRQmRfaTFY6fND7m+VZdnKpD5I6GkNhFiYex4sN8EHAomOa+Pk3AYSZHBrz0yQeKn3vcA6sNXs4stiM3B0Iy+KCDHL+3gmUixZ+fKSB7z+5LAYgQnDe7gr2zZbhB0JPI/NiGRTFggUQoNvzo0GZADAtUffNtouVRjf0OEVwzq4K9s1V0Gj18OD3j6HRdME5R63i4OL9NRgGwaHjG1hYaQMEsAwDP3HhFGZqxUxdFWwDBdtAq+PhX59YxnqoP5uqOrj8khkUbROrGz2st9yoXdgmBYHw8yStpxMAe2bKOG9PFZwLVxieL45LbcvA3GQBpkFxbKmFhdV2+B0J9s6WUS1Z6HmiXuTnrJYtTE8UEt8l3VbyzHTltSN5HNkNXXqYJsXsZBGOZWTe38wfE4CwfSWfcx7a1XNZVC+VkolSwQLnSasYcT1UXn8MAob46WKeP6h4nHjeAZGGqh43q69B4VuJkzMeaB3TTvXHxMPMDdso4o02L45KWSqp2WlZeSaR8mSp8jVsnHS45wXouKkVdJivSknYiUvHSXfMeBn9lPsE+Vs6nMvqnEjGnAvjwn7bD55eQRqc84itFydWUEIwPSEc7g0LzjmWG90MSYASYK3pYnWjlyFvkCifSbYdpQQ/+4LdKBctpHF0qYVDxzcSq3gCwLENXLS/BkKQIQN4XpakQQlQKdnKCZCFrEjBSIzllwh/SqZBMzT3StHE3FTSJJNsK9IA7bDtqNXxBDkklYZBCPbtKmesOchFWtpig6rtyN+cc2y0PCV5pVQw4dhGJg6lQheWzjNjDF6eNRRFm5TEgnT7lpBOG09mYkk/2w5ZZARl09k4MY09+UGlSFQ1wPjfg56lw5niHblCHDX9PKXrqHEIIRm2U/hAHLkoyAuEkBxWG4mOYtJlJDllBNSmdyghaHXUzvGEO/QgQxJgnGcMwW4GFg6O2XBgve0q/f2EW+vMAEyQtOUWx3JI+07LsaOdRLZeVHXMeH4awohsNl+cizpWjTilQpYkMOh7DWpHXTdQpiG8/w5vqimeRrodRbb6ctJJ51n0L5IJ7/+tFpZrWoqpJyUAmUkpXZZs2mrG3Vb68CBZGoNxyiam+fn5CoBPAZgGYAN4N4DjAD4K0fL+rV6vv/lUpZ9GLlNnfDeMGqcRnGcIZ1uXtT1idijUE7zGqcVmd5nGfUd1KskPrwdQr9frBwD8GoAPAvgzAAfr9fqLAczMz8//8ilMX0NDQ0NjB+JUTkxLAGbC31MAVgBcWK/XHw7D/g7AyzYTkqcDG0U31lfgq866gMz5kzpoc1k54ZvlVamczXmX8XxTOvmy1DEG5ourn+ex/dL6mDhymVhczZ7Ky2+Ufu5TZRL5sgy1LLG7HiER5DMat7JZyJO1pXaUkz7bpIzb0e9EhNH6xFbKCGzteGwr+dqOfj/Oev1xwSk7yqvX6/9tfn7+9fPz809ATEyvAvDh2CvHAewdJGOQbmiUOIPetwwKH1nSQF4UlSzZ0HwmJo242bT0mfyweSs4JkB8uF7Kxw8XdGhxWbF/xi30MuLyKE3JNU0KBCzh94lxDtdjWG91MF0TLDDJQmSMo7HRQ7VkwbHNBLNpdrII12c4sdxK1JlpUOyZKWFprRNZEKAEIJSAUsGOUllIEPqZpOUIy6I4Z3cFJ5bb4iZ/eKxGCcGVl8zimRMbOLEq9ENChwDsmirCsQ08u9ACuNB5UEpQsA0sr3cxPeFEOgpZxmrRQrubrGNKgHLBRME20EvVPaUElYKJjhtk9EbiEi5HuWQnLgM7FoVBLXFBmYcHW0TUV8E24Ac8ozNrtFxQSiLCRr9uhKsMeadXloVDsOlMSgEkSUBFx4TrBZmygAOtjhdaGenrIjnjaHc8WJYB00BCVtxyRDxfVujbar3lJajlhIhJ1lDYEWRc+ktCQhalFBZ4xrdVmGXlRWtJiMgQYkj2ILFfFg5KkyvzQX11K314K7JUKJds0JxLzlvF3Fx1W+VtN06ljuk3ATxTr9dfOT8/fyWABwA0Y6/kazlTyGPExJ/lhaefpcMJETfi454mpSfaYdOPnOSFYKHpEaVKa8iyEEJQdCzYFke74yYmAWG+yIVtUTiWiZ7rh15XQ0OflESeRONlNAyOXs9HwIT3WDkgNztNTFZs1Ko2Wh0frdCaQrvno2AbEUNMUr33zpYxUyvgqSONhIWHkmPi3F0VNJrCHfhU1cHsZN+igTRLEwQM7a4flcn1g9AzK0XJsYRinhBUijZW17tYWuugVnEwN1UCpQSzUyWsrnfxrz9ahEEpLj6nhlLoWXb3dBlPHW1greninF0VTFYdEEKw3vLC+jKw3uxhYbUDxoW5I8cSFiEs08Al59ZQLogJoeBwdLqibi2DRE7yTJPC9QK0e33WJOPAUqOLRsvFnpkyLINGtgMdAEXHwkbbRdcNMFWxUS070aDv+Qytrg+DIrKtttH20On5mKoWQkeEYR1yDtfnIUMtSe/2AhZ6s6Xwg0AQH7i4YuDYHK2uB844SgVR1wHjoh2ZFLZtotV2ozL1PAbTFPb/ZN+IyhoEoRmqPiUbpmAzNkMZjkVRcAabHpL9xjSSiylKCWxCo7LFqeJ5fcU0CAzKIyq7MP2TZcnF+yoLAEJ4xA5MY9SxZZg4W9nZtdpqwtHJYHFxY9tljopBk+OpZOW9GMCXAaBer/9rSIYox57vB3BsGEGDGG/y+bBx8sIpIREbaxTGnasyowMxgBgj5CuvLNJOWUdxkdP1GHpuLxNHXhROr1QpIfAZsLSWtC0HCBp21/UzsrpugGbHQ8FONhXbMrB7poynjzYyXnUnqw52z5SydUwJeq4YMOPgXJjqmZ5ImuUhhGC6VsS0goY9NVHAz/7knsylVMukuPicSeV3cT2GZ45vZMpuGhT7ZsuR19wov0SY0TFoMg1CxDfpulnquHAn7qEyWUyUn1KCyYqT8YxLYu0uvUrzA3GPraqg2ksX6Jlvz4FO283SwynBRMlWtr2eF6DRypp28n2GTtfLtCMOMdBaRtqTsLjKYNtqp4nynTQY46BGts9tZopL1U/tnDiEEPQUF5h5uHNTWYeP7xZV4VsZjzSGw6nUMT0B4GoAmJ+fPx/ABoDH5ufnfz58/r8D+J+nMH0NDQ0NjR2IU7lj+gsA98/Pz38jTOdNEHqlv5ifn6cAvl2v1//pVCUuL/7tpDsDwxwdpJGr3GYclGbLzzkHJYDqDqNIRrXaVKfh+eIIzEwZMpWXetMW14HwXgmyZ7jCyoWPSil5EZZzcT/KSe00ZPoynYSs8OhJ3qGJo+v6kcuFTJ4ZV7oksEyqvFdVdMzQnUaqLFzsZtIGXgeBEoJggLJclV/XCzI7MEDszlR3vcROmim/V26+ckwVyW9MaVaWH1okH7bvcT7gOsc2Ik93kDdW7MQxBBh/KvgwGGvLD4juTW6uL4o/k8ccgGiMKp8ow8rKiyN1A/JYI3FsQ7IK4mFlAcLvkNRx9VxfKK7Dox4ZhxDAMsU5f6Qf43LACgkDAAqOEVl36LkBOr0gGtQ6vezlS0L6/qYoAaaqhWiykGf+nHM8ebiB7/1gAb7PMFGxsXu6BNOgYIzDDctCQ79SZmhCyfdZ9F3aPUE64Jyj1fWx1OiCc465ySKed94UHMtAzxU27zo9X/gpmqugVLAQMIZjSy0shrbtpqoOauFxV7vrY7Eh7NEVbAMTZRuGQdHuevjB06tY2+jBNMXRnSQXSPNElAjL4JWicDviWAZqZeG6otPzsdToIAiEv6K9MyWUCha8gOGJww2sbQibfYYhjqAIgFrFxmRVkC4oien9ZEWHsEyhv+Jc1IucBB3LiIghlMrvLfKyuNqBHwg/UHNTRdihRQiTkpCsIiZhaWOx2fHQbPvgED6iJkKXHIyJ9hJ2tChfhADVkoWiY4ID6HS9yLqCHzBIM4hFW7jqoJTA84V5pYAJYkG5aEX9YJCFBFkfaV3SdvXVeLgkisjX4n033m8ZxykZQ2JhQ892o1p+2CkT0443SQRklZh54fEBXoYTQqIOO4qsvPD4AJ3oYEQ4QIvHScvLKGMVJpEAgDMO109aUpBxLMtImGaR4Z2uh56nOhMXvYClZDEujIeqmkCtYmHPdBkgfSYU5xzrTRf/9PCz2Oi4EcuPhGns31XJrMYBMdGldyKcCyLEk0fWxUTG+3mlhOCcXeVoso2XwzIpmh0/zH88jlD6eykzRgTA6kYXx5c7CT0OIYLJd9G+WlJPAsFivPScSTi2kfhenAsfUNWUSaiAMSyudnB4sZXUH0EsMi7YO5FU3ocZFJNYcgEjBn4e7jiS7UiahJKkhng6u2eKmKw4GVntro8ji60Mi5AQoBb5fgq5a6HQgmNiopwso1zMrDVdZXvJ31UaGbNXAycpIpwe9hdgW7d1l46brOO+6azNdkTRGGJkLVaMOobE5OmJ6WwxSRQwptgBiPdUlNVBsoDsZCF/9wfE5LO84wtVOtGgppAFAF6QNe9DiBis0unI365iUhLlyB5hECJNuSijYG4y6x+IEIIfH21gLWXRm0NMCqo6BtRLQ0IEUy5NYxZ55XDdQLHbBDbaWZtsnIt6DNKOniAo/EeX2plwzoFdIcsvXZZK0VKSFAgBakUnI8ugFBttL5tfCKd4Bk0daYa/46vweDqmoR4sPY+hq9jlcgATIcsvLavRUptwStKuSSJfE2Vb+e1VJqeivCkmJQAZJ5JSlurYOj4ZqcK30lfTv/vp509IebJyTSKNkC9VfjSyOPPcXgw4pz9rsZ1lH9CpcpMZ0A9PZxcdlHaWIzcmyMn0+A516no83YPzmH5djRBn3sSkoaGhobGjceZNTFtYiW3nbuq07sxyii4JGkO+LuLkFENtD1ukklv1A6pk1NoatXoHlVHlAG/z9J+b75uXTl7yW9is5qe9hTj5yD8u2y5sRVZuUz1TxoIdjrGfmCRlc9Bv+Xfcjlr8PaBvfywdX5rPScsalKa8C5iOE6QcqMWfjVIWQDCw0kxdxgR7b73lJuyp9Wmt6nphnCvDOeLhPPH+E4fX0HODhN4mCBh2T5dDtwz9fBkhsaRatDKTE+fCuoCf8k4bMAbLJGAs6x3WDziOLbeEzjBWxiBgWFhpotP1Mvokxnji/TB1AMLEUBqcc/zg0CpaHQ9BzPxNwDiOL7dx6NhGwnMtYyL9I4stQX5hyXzZJs2UkTGOlfUOnl3YSDyTddxouhm7eIwLerwfJL29Cv0ph+uFnnFTdXZsqSXMN6XMPk1UbEEmiL0rfxuGenhutrP54pyjYJtKOj2AWFvliX+7PU/Z9vJ+S2KCqn+k+/BmstJy47/7Zc+SFNJmj4YZQ9gm+cp7pqHGWLPygK3RxaUXVyBrzqTfqACf9RlccarooHTSzJ40O0+8A6UTtLgsxnjC51JcRtzzprAk4INxjtWNHhpNYZ7EtgTlueiY6LkBGuFkBYhyyAFEOn0TZSShHx4I+nBoeoiEcSgV/nuW1jrwAwZKCS7ZX8OF+2sIAoYfHFrFUqMLAGh3vcif0SXn1PCCi2ZgGhQ9L8Ch4xtYbwlPrmvNXsTem6zYmKw48BlD/dAqFlY7UX6lzbaNlouVdWGZwrYoLt5fw2TVwdp6Fw89dgSNZg+EABefO4WfuHAOlJDIm25U9yGNvtkRHnDlN/L8kI0ViLoUlhOAi/bVcPklwt7wU0fXo3ztmS7h5T97LmoVB4urbTx9bB1+SBe/9NxJ7J4pCQ+4P1rCWvhdiiGjjYPjyEIrctc+PeHgRZfvRa3ioOv6YnHBRbubniigWrIQBKGpqJBIUHSMyMHi0cUWFtZkfQkrEmkzPZQI0srUhAPGOTo9H0FI8e66glEHDkxW7chUUxAwtDrCTBUlwk6hHJgdq8+oi7d1z2dod/yQ9NIncUj7i5yH1w5isgxKlL6Z8vqXLKe03+gHfa3fqNcx8sLjfRgADILo7t3QY0jAlPnKS/+5oItvB54LZt+OpYsjtpxRsVs2C+ecK40fqkyTAH0PmaOkM6oszrnSXA4AmFQYsUzHWVrr4OhSEwq7lpiecHKPd1ToeQG6PV/BbONYXO0oGVzSDl36UbVk4Zy5MkqFrHfYLz14SClrea2DZsfLHKN5PkO350f2+OJYXF1Hp5s1yXTFJbuwb9dEJtz1AjRaPaWsZ45vKMMnqzbKRTtjCb3kGPjJi6ahIPyBc6Cr+P7NjotWx8/IKjoGrrl8r7IdFSxDeQzd6ooFRFoWJQS7popKWbsmHSVtn4QDb9r8DmMMPQULEhCTjopt6fsBPD9rEgnI7yt5sgbFyQs3KFGaEdqKLMZYhgko39/KGDJkvvTENGBiGvujvK1C1dDGHYPynOc5ItelxADkTWSqiQSQu65sOKUkcvWdyVdOIvLYQxknJ/2uwk7goDQGycqrriB1dCbBkU+FzhucOB+Q/oj5GiQrD3nVQglRHsVtpa8MinOm9LudOIacKThjJyYNDQ0NjZ2Jsb9gCyTJA8Nu0fPicM5hmzSj45EXV0dJP5IVnoHHZalsjDHOI9Mu8sy9f3lPfVnPDxhMg+DcXRUsNbpoh0daBiXYN1vGdK2AjZaLtWYvWinL4wSpD5A5s0zhM8mkFM8uNKOLsoQA1ZKNPdNlLDU6OLrUilbp5aKFmVoBQcATx2MEgOsG+NHhBnZPFSOdhR8w/PhIA07oVsELYgp/xkMzNwbWmm5k8sU2Kc7fXYVjG3j62DpOrHSifM1NFjF//kU4sdzE408tRbuXuakS9sxmzeYblGD3dAnn7K7gyGJfxwMAkxUH/9tPTWB5rYP6odXoSLVasnDBvgkQQrC20YvSMA2CXVMluD6HScV3kN9momLj/GoBrY6HY8utqF4KtoH9c1PgnOOJw41IJ+hYBn7ywhmUClbC6oCE6wdCLxOz40cJMF21MVW1sbjWjSzMUwJMlLLHp7IslbI4kvRj394PGNZbgjhRqziRVQvOObxw55duezRsx6r+RSmBYxsJ/Z6UIRGPY5lUmDdK6YsEoUdc3DUMktDliONwmnErQ8O+Omq/V4XHzZdFLjyGkGWb2XyRIfKlMRzGXscUVxqq8pq+YZ3uGKr48d9+wIQts5g+KC+drcgCxBm20lkbxIBl20Zo1qcvi3He17mE2mRh10wwtvaEbiWkvTMOjqW1LoJAsPPSsiZKNsolK0onYEL+8eUWik7MWVx41HZ0qQXbpLAsYUMOXAwm7a7wExTXn4kBlcK2DPz4yDoY6x/9cc7R81joFDA5gPVcH45tYLJSSPhs6rkBnl1oYmrCidKR7KenjqxidrKEibKT0VdUYnbupCzPZzi61EQ1tA0nZTHG8fSxdVimgXLRitLnXNSxQSlmaoWMuaKJsrALaBh9WZwLR4EGJSg4ZqTwDxjDesuD7we4cP9koiyA0IWpep9JCYoFM1HHjAm23kbbQ7nY/47xdjQ3VYhILPE0NtouPD+ZkmVSVEtWuJjhAPpxhD8vI9OO0ojqknN4HlP2CUoJSgUrU3Y/YOi6vtDdSbZEWMcFx0yYaorHkXKGyVe6P8fjpCdI+T4J6yYta9BvSRSKW4YYYqzSOqadapIoy3bLNrT0s7zfebJU7J50AzwZWYBYlakmJQCwQ+OhaVm9OBFArqApQalgolKyE2mIwVN0KvGTJGRNpAZsQKzsbIuiXEz6+hEecAlqZRsBi5Uz7LQq5S7nwnjq08eyzscIIXC9IKMPIoSgVnFCT7zJsjhO3zlh/H3TILjk3OmweMk6Ljpmpow0LONktZCRZRgEc1MlhddT4VOoXDAz35ED2DdXznx7QsSEJdpMvI4pZmuFjFfbqB1lakvAto0McYZSAtukqJayvpkAYM9sEQbNMsK6bpCZlIC+zy7xXrK9WJaRmPg27XcD+kq5aCUGbPmv0OlFL0fxOHjGVFNe/xpmPMjrq5KtmpbVt850asYQ1d8aWexYHdN2ftw8xee2yRpAwBk1FUIGXXGFktmVXl0PkzM+IE7u+4PypUSOcnnA+jA+kGaf5ccb9f28758bDnW+CB309XPSzktnQIbzUhl0IpL3JL+9bK19q8uifl/lOn3T9LfQV/Pa9+hfKz8PegLaOsZ6x6ShoaGh8dzj648eUYY/V5bLd+yOaVScSauX7SzJdh5e58p6jvSY25nM6LrX7Uv8uVIonDk9YnSczWXfCRjricnzs+Zq0uZA0uHp3/F3R5EVfzZK+qp0CI2bbEnK6rm+UpaZYzIlUJhlAYS5IIOSjGkUxoQFAGFGp6/n4pzDoPlmaQq24n4S57nvS6ZUGtJ0kOoujucHUXlSCY10LMc5R9f14PopthsX5oJ8P8iYMAIEYUMF4dAwmy/GOBZX2xGLqx8uyB4qMz6uG6DrBgmzR1JWZNooQwoJlLIIkuajJAiAtsL0D+MctqUoo6wXxd0tSf5Q94m8dp/fVzq9QGmux1QecQofW+n3N0tf1Vc3Gw9kUx1W1lbGg83iaORjrFl5jWaPGwZByUnaYMtjvmwWvpU4JysrHtbzAvTcsNND+NdhXNCSaxU7UqImzb8EkZLYCBlOcdYV54go2qsbPVgmxdxkMXLrvd7qYa3ZAyUE5+6uYvd0CUJfLVhJjCdNzADSg62wWbfW7MHz+zbBpB0zP5wEZHir60e22iSFOGAc9WdWcWKlDdsycMGeKkohoyxOJa8WBXFBlJ1jtSlo6ZSIvPSVzCRi4nl+EJrbEY4ADy80wTnHRftruOScSQBAp+fj0R8totF0UavYuOScKdhWUrHOGI+8xooJLsB6swfGgZmag7nJUpTe08c20Op4mJsq4kVX7EXJESfhh45v4PhyG4ZBcN7uCibKDsA5lte7qD+zCs9nuHBvDZddPCvcngcMTx9fR7PtoegY2DdbgWUJU1GdXoCeF4BSgpkJJ2LgeT6L3LhLAgoh4sLs3FQxss4RtQsArXbf7FT8GWN9h5pFxwgdBvZJLF54RaFWcSKGWrcnJlgg6fwv7j05kT7ve+O1DMFwdGKLHUkO6Pb8iLZPKUHJMaNvHO9Hsq3KdqAkk4zYVzlPXqeImx46VWNITM7QS6/TwcrLw3Ye5e1Yk0SNZi/KnKT7ppFmygzzbDvjjCrLDxhW1rtKEzeTFRtEubVC5Fo7jiB067260c0cYxUdE54fZMzv7J4uYv9cNdMtGGPodANQmu2Ex5bbYkJNZavb89HsZKnInHN89/ETWG50M6y3C/dNoOhYGVlisCVK9mK1ZGVYagDw7PF1LDU66PSSFhgcWwy20uadBAHwMz+5R2ky5sRqG40NN7MbIuHkKO8jxcOvfN4c2h0/sqnWLwsiY7txlBwTl543lQkHgP1z5dAKfDK8XLBQdGjGHJVhEOybKaNSsjL10tjoouuxzG5I2glMb14JASpFU2mqqVQwAV1y5s4AACAASURBVJ61TGEZBJZFM/nlXCxSVNYy9syUULCzau2AcbCAJe71SXh+oLSKsZ0miYLQJJGKeHEKxwM9Me1UuviZCEKIclICRAc1FRMTDQdtFVbXu0qdRCfHjI/rMzDOQEmyU0sKtSq/hOTrPVSDGSEEi2udzKAFiAG7kHUCm7msGEee/ULXZ5lJCQB6boBFt5MJVw380bNw55nJV8Cx3s1OJJwDy42ucnBsdXx03Wz9uz7D2kZPucByfaaUJSYTomTklYvZSUnKGsX0EefItXvn+SxBQ4/L6dPNs3GUaQ/4vpRkJ6W8/G43VJ5pNU4vxlrHpKGhoaFx9mFHTEziln2+0lAVvtkR5Shx8sKlPkWYVBlOwUnAMT3hZJTShIjVsedlZTEuTPCnlauMA5eeNxm5RpCglKBctBJn+jINxzIjNwdxWasbPTx1tIH1lptIp+v6WF7vod31EuEB4ziy2MTRpRbcmDFTzjkOL2xgo9WLlOhRnIDhyWeX8aNnlhO7E0kqOHRsPbPTaLZdfP/JJSystBKyXC9Au+vlH+cowjw/wHf+/RieOd7IyFpYaaHdcTOr+oJtYKpWSFgDAMRRaTG8CJtIN5Sbfh9AeGk3my9CgHbHi3wXReEALJMoD30sg2JlvYuem9wxtjoeDi+0wuPdZFkoIbDNLOnACq12pI+yLJNiZqKg9GdlWyJOPIYkOwiyR5IMYBri/VH7qmVQ5RFbEJkyGo1YcCrHEB72063ka6fg648eyaWSbyfGWse03urxgm1GN8FlXlXKSRkOqBtBXvw8WZu958WcAopkCSyDZgYeGS8tS5hxCbDe8gSjLTxGi27fmzRz5CPOwcXEEz9CC5ggLzxzfAMktPhN0D+66vQ82JaBmVohcZbuWBQgwhWEdIVBiBiMd4d285Yaff0VgVB8r7c9/PhIo3+cA6EHMg2Kh//jGFbWu/BD00gGJSjYJrquh3bHBSH9o5OLzplCueTgxHIrdjQE1CoOpqoOFlY76HQ9sFDh79gGLtpfQ6vt4fhKO5p9hK3CPiNPll3+DhhHp+dFR0zSdNDll8yi3fVx+EQTPGKWAQXbRLkorGXETRX13ADNjoc906WMGaOeFwhWYOy7cC7Yb4ZBMTdVzPhPEt+ZwAjrI2xGKBUtlIsWSo4ZhvXjGJSgXDATZq9si6JcsPDsQhNLax3xHSHaydxkIeaWhMv/Qtah0CHFzQWxMM+TVUdYGEG/jtdbwv1G2lGkHzB0ewHWNnoJMz9iIUSFv6mynZjERu2rnCOzOJPPpR8llZx4Glvp95vlK14HkrAkn6f9M8XjkRHODsdJxySxHbqmHUt+4GHm8hgxwyofB8WJN6Rhw92QwZV+NsgHkyp9zoV3V9VZfdqgZSwSQEgmfbFTEbuXdBzbEgY00ytPP2A4fGJDubvohXbc0s1jdb2L4yvtTLgfBPjefxxXxvE8DwBXEDQsVCtJ00NxSKZYHJZJYRk0o3sIGFPrNrhgFsYnK4lS0ULBMjKyio6YmFXtq1axlSv4VsdT+tmyTBotCNIoWGq9ytSEg1rFUbavqoLsAADPnNgQu5S0rErfKWASHI4ldkLpdjQ7WYy8Esch6f0qgsKzJ1qZPAHABXurcCwjI2uzfqfKV9qMkAQlJGFgd7N0TmY8UOYrmjDTC0mEi9WsLD0x7XB/TOnvJ/8eRVm5WZxRzImcjCxVWcQ8o4iTl4ZiUpKygkCtwKY5jCMml9YKiN1gNlyutDPhPo/Kkycvg02+oSoOJSRXga8Sx1P/xiHufSnSUDhrjKevzKsyVG1lfjOoBjNgcHUFLDspAYiMzWZl5bdJ1aSUjhcHy6l7IKR25/iAGiRf2Vdy4m02FIwyhmwlX6EtsGycXNNZo7eJsw1jPzFpaGhoaJxd0BOTxrZh7M4bNsOOy7CGxtmBsZ6YhL5CzW4ZpBsbNs4gWZvFUb0v/x9FlvLIhKvNrwzMM+eCJaUQF5n9ScUxSP4tv7zTBuFgLhtumjTyRaWSoxLHGVPa5Kakr7xPy5IEiTQoFUcq6WcyT2n2HCVCL6V06BgyBrOy8tM3KVEfJSqOXaXsrFZCIM9l+yAX68JChkpWljAg8tXPXxoqkgHnPMpr+lnOFTsAwu2GyuzRqH2yTzJKl6NvEWJYxt3J9Pth8wUgRqgZbgzR6GOsyQ89L+B5zBYg+4GHZfpISC+2JEwj3r4k687MOW9Ps3BkGmlZghXnI2AMBdtIWG+QJn78lI03QoSVh7jpISmr3RV274qOAdsyonSlrbq1povF1U6kO5EsLsOg/dFIsgqIcBi40uig1fGiDYRBxWVbL7zAGg8vFUz0vABPPNsQJnJC3YZpCJlPHW3g6GIrZj6GRvqvntsDAQGlQLlo4+rL9qPgmPjB0yvYaHtgnIMSgvP3VDE7VcSRhSaOLbUiHcZE2cbcVAmux7C81hGKcIhJcd9sGQYleObERqIsc1MlTFYcHF1s4uiiYN9RQrB/roKf/ond2Oh4+P4TS+EFU8CxTVxz2R5MVQt48kgDDekZmAhvutMTDlpdH622F+o8BHV8plZEp+fj0PH1UN8miA9XXDKLWtXBsyc2Qiq+mIxqFRu1io1O10czlEUJUC3buPicSVBCsNbs9ZmGRDDoVPonyUpb2+hhQbLyiHAeODtZgG0q7B6GMA2aIOw4Fo2cFMb7Hed9x3rpfuT5og03Wm7iwrNBRR1USjamJwqh3lQ0PXldQEVaGMSYi7xFx5SK0vPsqOOB6tmoY4gMZ0yQIDbLl2bl9bFjWXk9r8+9tRXmSoB8Fo18pgoXk0pWiS/nH5XJljx2jYqJJZ9xln0uqcppKweCdSQ8p6Y94HpeAC/gmTsrJiWoVW0YqbseQcBweKEJQkjG6VoeS6Dn+jix0hayUu6lu24AgyZlcc7xzIkmji81M+zBVtfDd//jOCg1MrJmJizsmS7jwv2TCVkLqx2sbHSxf66auAPU7fl46ug6alXhVFCCcY5my4VlUkylWGdrG12sNV3MTBYTg2vP9bHR6uGCfTXsmir1ZTFx98qxDDzvvKlEnlcaXZxYbWOmVkzkKwgYOq6PctFO5ItzjvWmyNeF+2oJWY1WD4srbUxWnUS+gpByP1MrJJwacs7RbLvwGUfBNjLtjxLANJP3j/yA4cRKGwXHEHTzIcY/SoBKyUbBNjK0a+kqPMOCDPtQkLL84XoBVjd6kSddCUKA3VMlGAbNOI00qHCqOArL1g/EbtvIZ70NJUuGizyOFicvXwCUjNpUnB09MaWxlYnqjDdJNCrLJc/0jdwBZRvU6OkGAYfvB5lJQO6SVKtE4c5acbTEkZmUpCxVBzAMikrRzthwCxNS5te2DFhWdmVNCEkMvPHwWtnG2np2ki0XLFimmVHhEEJw4f4p7J0pZ8JnJ4uoVZxMnIJjYs9sGWlQQjBTKygv2FbLDgoKe3yObeJ5501mTOxQSvC886aU5ZyoCBuNaVmGQTFTKyq/4/5dlYw3XQCoFC3wySw93qAE5+yqZGwhEkJQLFhKU0kAlO3FNITX3FFGMs4R3k1SL+Ly2nl6UhJ5otFOPp1Gzw9QUNq7HCGzEPWivEpxEtgOWaciX2crxlrHpKGhoaFx9uGU7Zjm5+d/G8DrYkE/DeDFAD4Koff9t3q9/ubtSCtvu52Hvt+irJw8+AHLrIYGvU+IuEOiWuz6ftaSstT1lAri1n8clIhLsm7K8jbjHGsbPVTLdmLnwBhHq+tFR3nDwPOFOSTDzB4LPnmkgWrJxt7UzuXwwgaeOtrA/rlK4ghIZYlcotn2sGr3hCX1WDoLKy0srLZx0f4pmKmjvKePrGJuuoxysW96iXMON7SgnT6ubHd9bLRd1CpO4jiJMY7jyy1MVftuImT4oz84gpJj4vL5fYnyd3s+1ltuwtIDIAgKP3xmFft3VTBT6++COBemmhyL4oK9tUS+uq6PjZaLUtFKkDEY5zix0sZktRC5/5CyBhEe8tqkKoaQJdJK63UCxrC42sHURNL0EufCpQU1SGKXKS+7ej5TyMrPb7crzE2lLYxLnZOqLH5oOWMzl+sSwpdWAMce7hhzK9gsX6OORxpZPCc6pvn5+ZcA+HUALwDwjnq9/vD8/Px/B/Dxer3+pbx4p5r8ELdoPYysOMmAMY5AQX5Ix+Ecoe2s7Fm2JBlstD0cW25HjK9ywcLe2TIskyZkMS5sqgllcwB5kkIgjpxqZRvNjo/jy+2oXKYhfDgZlCjJD4xxrG10hWI+TEfm6/hyB4/UFyKLCtMTDq56/i4EAcdXv30IRxabEbNw/vxpzEwUcGSxFYYn2di2ZWCyagsdGiEoOgbO31MFYwzfffwYTqy0INx7EFz5vD3YO1vBk4dXUX96Kcr23rkKLtg/DULEACQToCEpg3PgxHIbGx03qpfpWgHlogXXEzbc5HgxPVHA/rkKTiyv4yv/8gO02j0QQjBVLeK6X7wcu2erOLHcxnrbjehz1ZKNomPgqaPr+P6Ty5Hpn/P2VPGfnr8LXsDwxLNrke3AYsHETz9/N2oVBwsrbay3ehH5oVKyUCqYcH1hzkdmuFZ2cO7uCgxKRbvB5pAWRziH8viWMWmtJP49KCgRxBzpaoQQoeeaqRUAnrQSTghgWQZ45HurL0z674rLGgTLpJGeLeoTYSKCOCT6JRNMC4D0zfuo+rEkH7S7XsIsVcExcxdmWxlDgD7padh8pWWdKeSHNLZbx/RcTUz/C8BvAfhmvV6/IAz7DQBX1ev1t+fFY5xzweRR71LS4fHGMWycOBFis8Y6CIPiMMbgemozRseWWuh6QWb3VqvY2BfuUOJx/IBhabWjHLBcT03qsEwqDIgKYVF4EDAcXmxGzLo4Hqkv4sRKO8MW7HR9LK62MgpxgxJYljB7lI5TLdlKHUan6+LIQgPIyAI4RKeP2wQ0KME5u2vYM1tVlD3AynoX0hachGS6GUbSKgUlwFPPLuDwseWMDmdmsoyXvegFIaMq/oTj0R8uoecFmXxNlC1M1wqZui/YhiBBIJkvQvrMyzSmqw52z5S2ZdXt+wyeQhfEOVfS0gmEz66+fb0oAnzGM763BskaBMcyMDUh/J8oy5km6XAOI8UglGn7AUO7q3bzUi0JJ4jDjgdxpPtwXj2mmY2bydITk8BpJT/Mz8//DIBnAfgAVmOPjgPYOyhuelKC4u90+KhmRuT6Kv7KVgaEQXH4gHdUkxKAXEZVZEZIEWdUf0aRm3ZFnJX1rJM/zsVxlCqdgHGYHAh4No6KUQaIY7L0pCRkAQBHeu0dMI5apQAVJEsrHUdSp9N1zDiwtt5SEgsqpYKgovMsCaalGAADxlF0TOV3NEOaPlcQavKaTKm4fcdQaQZcPH1lOJCxSg8g3F3nMVBHz5fcyeSWMx1OSIatKuPnHXeKCWn0MST/mfokRuXPaXNZw6NcskEVPrHGCXNz2cXiyeC5YOX9DoBPIEuPzBleN8egM9xRqaKDcrAV2ul2DSgDK2bs10/DYzuLsq3Vso3CwpPA4d8/3d/3NKc/sK9uk+pmK2NIrqwBGduOMaHVzjqqHDcsLm6MHGfQZPZcTEwH/n/23izGsiQ9D/siznrXvLlXZq293t6Hs3CGM1wkWpTIsQADovxgQCQI6YGWYcmwDK+AbYztB1veYMAwZAKWIVmSaZM2LFKgSIojchZytu6e6b36VnVVdS1ZuWfe/d6zRIQf4sS5Z4lz62Z2Vk911/2BqsyMc+KP5cT+f/H9AP42ZLNaToSfB7D9MaQ/l7nMZS5zeYiS9NF0FpdvH+r+sNlsbgLot1otv9VqBQDebzabPxM9/mUAf/AgHbPSjMzyrh4UURDvAbuik+SraAUqhChEG0njrya/BeqEkJc0delzodcl4+nzZpsUGvNHdCyYD5fvFhiMuZ6qKUsTNIt4QVhQ99MRbDoxjLxzPECCVYqEFpRf+Z/KCufixDuQkBV/L50IUUyHVShTqp6dVJcq4AniFLdHfV+d1ocLcxVn6+GOIafVNZdiedgHlxsA9hJ//7sA/utms/lnAG60Wq2vT4ucBSOozpcMT/5Tl1eTnTQLhkiGcy4hx2HIc52bUgJTDZyJhqR8vyQHNB6h+9o9L6bWSerzAw4v4gxLpS8EVhZc6bAvVW4gCDhGo0BbRtvMew4NQ47+0J94z4zf59ja6+Pebi++ra/KPhhLH0Jc5Aein3rpHDZXK7FxXhV3dbEk4eGUxBMXpQRri2W88MQSKiVzMuEIjjDw8f77H2Bv/zC2Uai8Ly2UcH6tnnKzQIi8IHthfQFuxocU5wxvvPsh7m4fgDEOQERlD3Ht/fdw9Z0fIvB9iIQthADoDoK4XcT1xTgWFxdRrVZBCEnZI7wQuHm/gyDkifYDlF0LX/3yZawvlSUFEyTqseKa+MrLG3ju0pKcuBP1OPRC3N3vp3Sp9A/aY3h+fqI96o5x3B2n2gsgqYesDHWWahO9CK2ZMuwDaFRt1Erp9kIALFRsXFqvRVD7yTODEnQHfuxzLP0Psi9kwoNQspJkKbooAaqlPDKOYMIokf0n61qPZkuWOfnPMqn2crRE/U3iJOMWjSEqrewYkvxEYqI0Ko9eV8h4bjyay2zySFMSIbHWzDZaJZxLGGyYWS0r/jCt0Z9x+CHL3QtyLAPUICn6IdXAuJjwik3SFhh5IUa+5DtTQqlkRaCUYOSlSSwNKvUEjCNpS/YDhs7Ag20ZqJUnzugIkY7rKCUYjie65IDA4AVyQhr7SY4yAtsyMfbDyMX2JPzCWhWuY2LncJhCUhmUwNLwlnX6Hl69ugchRGqiCBnH7mEfY5/h2UuLqFecOF/7xyO8d3Mfnc4x+r1OrKtUcvHSc0/DcazU3SPGObb3e+gPfawt1VCKEGFCCPSHHu7tHMP3xvA8L9ZVLjloXlnFeDTA66+/jvF4HNW9gWeeexnnNi/myiJZCSh6wwCd/uTcPgxDdNrHoJRidWUJVuxAD7i4VsPGSgXLC26cLwC4v9/HW9cP0Ly8iC++eC6+0jAcB/jTN7fQS7QHJSsLLpbqLsYeS8G6bUuySBiUpO63GZRgY7kMJ+JYpIk2GYTSY+7YZylYt2HItmdHg/WkjkXM1bfScGN2BiHk/bn9toeSY6S+i+JZFAI5RBqL+oTkgUy2bwLXpnAsIyL8nbSXkRfCMinqFSdHVSXrOwsQkROIri/r4gghMPZChBEYJXvNZFo6unC1qwtZGmqvJAkVj+PMPh59qlB5SZn1KO9TQ0lUhCzTneBwARRRVw7GQeGpQ5YTT15SNVKrLCWUEhz3xinoMCAnrO7A19KTMA4wlqcqsi0DqwulXLgQwHDMcjAuSX9iYGs/7zmUcYG940EuX4wL3N3rayljGBewNDTRC1UHmysVHPe8VLhpUFzZbKQuhKp8rS2V8fVv386tEkejMcbjEWoZZJ1BKTZW69GKP62rVnEx6Hdzx3TDkYc/++6rGA+OU+GcM2xv3cbauU0YRrp5ByHHfnuU+/amaeLc+lrqYi8gq7zd9/DZZv7Z5moVP/HMao5bruxauLhex3u3DpEVxSGXbRN+wGEYJEdJxLjA0AsjyHP62xsGRa+b/iaApAkqOSaczDc2KMHKgpu72E0IweJCCb4GBs64wMhnOQon9awIobhQdXLhpiFdrBe5QNcfs5NCjkz1PPt3ybW0fbUoztRwob8XBhRzd55mPJpLXh5tDOJc5jKXuczlsZNPxcR0UhN6kdG9CNWpbDK6VZ1tGXqQgEFiO8SscgosAGplSxuuO8oAoPVNBCC2hRWBFIrqrAhw8MzlNe3qOAg5/CC/0s6e4ydlZbGmTb9araBcyRO82raFSvaCaCTLdVerixB9O6KEYKyxAwkhsN8eaYESyj1IVkyDYKFq58IBeYysa3+S8kcbBXYBq8FJQSXTQDhF6VNKYFv69It06WyZSs7olsWZy0nz9WhbRj458omwMU0zgipJ0gtlaYx0cQSA0TiIj7tc20gdcanjBcY4kidiysdKSpeQBuv+KAAhQKPqoFaxQQCMPIbe0J802PRZVfzDMieAiiDkE4697PeJ3rFMGg9+Qchwe7uH/iiAaRCsLJTg2JLde/ugj/2IKaJaslCNJrIgui0vhIw/HMnjTUoJGlUHjm2AMY5O34cXSNtWu++hHdlmTIPEZ+YGmTgKrJYtXNmogxBZv7/1+6/h6o1tEEpRqy/CsqWLitXFCtaXayBEHj/pbtUr6hpCgDBkePPqHWzvtWGZBp55YgNLjSoA4MObN/Duu++Ac44Xn38WP/WlL8A0pN+orf0+/ICjWrLwzMWFqFwC79w8wv2DAQgiP0fRIM+FiG02y3UXF9aqMA0Ky6JYWSzDsQwMRgE+uHscHXMRvPLUCi5v1CEgLw17fhjz312/20HIOC6u16KjPwLPZ7h+t43BKEDJMfH0xUY8kXaHPkZeCEoINlfKWG2UtHWk2h5jAu2BhyDksE2KzdVKDAQIQh4vHORCKd0nRFTW4TiUCy9M6LMMKidR1SdG4wndkGtTuNGF4pEX4qA9ji4ZG1htlCTLBoAwYiJR+U3artSRYrKvxr6Womae9Gs2C6tCUXj22Ul1CTHxRUUIYNIJYERni87arJJlfBxsTEoeZGv6sVMSnVZEInMPanzJCYdMeT8bh3ORQISl0TXZwVJ1rqTzQBWHcwEuOAihKe+rcnITOOyOIRQNwUQhTIPE9otk+nIgivjgVJyoLNWKrSXP7PY9cJ6+7c65iEAQXiocER/Z9v4gZTxHVH+UAtnjdSEk9cxRz0O2XxEAz19ZzBGn+kGIb772IX7w3m4qvxKgYeDixiII8m4lGjUnxxjBGEe3PwIXkstP5YFzDgiOhbIJ13VgmmmCVsskqJTs1E6CMY6tgz7u7PTTNpeo7Jc36tFuOP29Rr4kdc3SMW2sVNC8tJgqg9ohOJYJN7GDlYhMOYlJQEn625sGxfKCk/IIrNqkF+TbsxACpkkjVxvZdgztICqEQH8U5lxXCCFgWxTlkpXrR4p0RJeGImHNghqCgCWcHU6eUUpQ0aShfkqk5OknI6WjCCRxUl3yp74uGZcLySzaD4BE0JJ8+uQEt24fx4npkQc/6AycOuNm/Hfm2YOoQSjVpyH7kr6h6qhRKCUgIm8QJYSARUid3LkAITlj9CR9DiBzvkRIfESYjSNhyrI82XwFTOdCXHqV1VHyCOQnJZUvyZWWr1PHNlDPTEoAYFsmPtjqakAgAo5jAZpJiRKipTEyDArTzPt/opSi5NioVGztd8mCB5SuTs/PhQtI77ryaC3/rN3P38JnXML+s0IJgWkZqLhWrk0aRO8DSQI+LC1xsa5NxnHKef9P8m99X2Es7+RPPSu7Vu44jhACWqCLEMAiRe1Y3wcV7L2or56032efPRxd+jgKXZuNQ4m6hlAwVs2lUD4VNqZZ5FQ7wzPcTZ5lUzxptj62blBkPzjLNKYoO3GH/7gyVhTjUzRAfZrKMpcfvzw2E9Nc5jKXuczlkyGf2InpLG1jWl2Ze0MfSRf0DN6nEqGnvgFQuGgvSnsaEq64foV2ZyQKjmwAaI4Rk6o0uqbUlig4zoI4OSXRWYq8WKnLV3GcojoWBQjQaQwC00p+0jqeJifN1xRNZ5r+I6nrx82G+wmWR3piClmaKiTbAab9no2jzpWz4YqTLhufkAl8O34W/VTIm1l0ARN/SDrJ2TFUflV6SV0RKGI0DlPpS0okLm+9szQSijGO/sBHp+elBm7GI10+S/GWqThb+wOMvDDNNBGE2Nrawp27dxGGIdTgwjjHcW+Er3/vBjw/jOiCZLjnB6gYA4T+CBA8lc7hcRsHh8c5dwqcCxy2x6n8CiEQhgxb97bQ6/XlJWVVFsZw7/4uPrj5IcIwTNQLx9gL8MOrWxIpF6XDOUcQhugebqHfbYMndBEC+H6IsZeGiBNIO97FtWqOkooQYPtwgHGmLgEJCvD8CU2UKl/IOHYOhwjCJDOI/KYHnTEGoyDzveT3PWiPctRWinbKDxhYVMa4TTKeu+oQAwLkH3G+VJxO35PtiIucLqbRJQE2rKDf5fsKoJCnxf1b97tiYJi13xeFn/UYkm0PEyV5Xdl05qKXRxqV50WwuOQ9Gt1APi08+ywetIRIMSMUQDrlgBxyCOQpSJINVMFJZXxp3M3qYoyjM/DhB1winyLjtxx0edzxst5GU38QEv8oORLiftzzsHc8igeSsmuiWrIxGAV48/o+ugNpsK+ULFw+J/nRbm13sXs0isu+ULbgOiYO2iPcvN+N62Z9qYzL5yrodvv4Z3/wDWxt7wIAVpaX8XM/9zOoVKto3dzBnftHEJD3p776M8/is89t4I13b+L/+p1voNsfyvTry1hcuwQhBPrdY4SBzFe5XMKzT12B6zoRIEPEZVxecFEp29je3sMPfvg2RiNJPbS5sY4XX3gOYRjijTfewMHBAQCgsVDHz//sT2FpqYHWzT20PtwDF5JP7fPPX8ALT63h9p0t/N4ffQudbl+WZW0Dz7/0WViWhYWqHbv+poSgWjJhGDSG2ktjt8D24QC7R0O4toGVRilmbSg7JlYXS7m7RJSQ2KPq3tFQeiyOBu5zS2WcW65IpofxZEKqlExsLFdACMHNrQ4OOrLslklxab2GesVGd+DHtFMEwNpSCZur1Um7FZP0TZMCBBiNghTTg2rHimtSSdk1Ua/YEGICI4/bd4Q2G45C+OHEA65qk8nvqNIgRLLKWZaR4kZ8ECycc5Gi+Cnqq8k4RbqmxfkouoSQqEVVf1n6Mk0ac1TeJxUu7iXw2kUUIDp0zYOeFXnbVBOgLg7nXOus66S6hJCQa10anb5ffBwl8keLXAjsHQ21BwbX7hyn+PuUhNGqN5uMEAK3t7vQNYf33vg+9vZ3c+FOeQFL554AF5qy7FxDyPJ1U6ougZp5yppatYInn7iireNXf/DdaIeWFiJCFl95cwAAIABJREFUhGG+jKZdwuLqZXBN3z+69w6CIB/nJ37iJ/Dcc8/lvotjGbiyUdNeFm73xhCaNBpVG4s1J6crCCVEXedv7+JaJUdJBEjHjCNP42mWSCJWXTt6crMOV0NqGjJ+Yg+01ZKldU9epAuQk5NOknffkqLjnFMyrX/pLpADxf3+pOGnicM5RxbqXhDnxz4xnYV7io8i0yamR/oo71GSs0QdnaWuYvvR2cWZ5oKhaGGjm5ROK8WeU4vzVZRnpsPBR1L0XU4aPk0e4XXgQ5eiAfvTJI9DGT8O+cRMTCc1sJ7OIPvxSFG+ivLMxckN+9O6RtGzonxROjuRphLD0K+aixjfpa1CP2mQArfSRuZC52z5ms3Wl36mDy9qXtPaXnF+T67rpHIaXR9HP/ok5uvTNB49ivLIH+XJs3IGzuX2veSaMdtx0Rkwj2w2J7ELKT9LWV3T0pnoiqjxY136M3DGBUbjAIwLUKrO6Qm4EDjueuj0fVAKVNzJBcvj7hg37rURcoEr52pYj2wOQgj4gTS2+6F0KaAMwyGTPqaCcAJiAKR7hYWqZBQ46nmx7SkIGXYPB+gNg/iIROXbtQ04NsV4NMLrr72Kg4N9AEBjcRmf+ewX4Lgl7O63sXvYgRBysthYXUS1UkLn+BDXrr0L3/NACMHLLzyDn/7S5+AHIb796lVs7RypSoVpyQuqayuLWF1eBKUUXEg3BmOfYTTsYfvuTQSRXeqFZ67gK196BWEY4o+/9T3cui09aFaqNTSfexmlcgVH7R72j7oQQsCgFOfPLWGpUUX7+BBvv/lDDAfSxvTs00/iz/3sl2EYJoZeGDNhVEoWXnxiCdWyhcE4QH8QQETffeRNKHp0QgmwslBCpSTtiLE7CsvAztEQt7d7UTsgeHKjjkvnavADhoP2KPaFNByHMRu66xjxpd8kXRDjsq1H1YiVBRcrjVKu7SldnAvUyhbKiUu/RTYmgxLpBgMEljWxmSh7FSFpqiJAUmvp7MG2GdEYIe1GgnPJDiEAOBaFY5u5fGVtTMkjMUvDNqFkFhvTtDFEtYPkGKL6l2LBUFRcD9KlGY/mR3mfVBtTf+QLeTtdALHvVhI3YCBPG5LkqyISEgSQtK8h1cAA2RkVJUxWV1KScYrCdboAeRTl+Sw2EkuRZfFDhqNu3rYkOMf9gwH6keNBQDZq2zLQvLyYsnmo9HsDP+eKgHOB3tDHyGcpO50yjr994xC7RwNApGvZtY0cvRBjIQ4PDuAHHI2llXhXJIQcXI7afdRr5YSdSCK5Bt19fPaFJ1CplGK6oDBkuL97hG++ej1icpDpGJSAUIrNjXUABkCQGMQ4EHTxhZcuo1Ytx7qCMMTu/hGu3dxDvbEMGu/WZPq9wQirS/UEjZEMP9rfxtNXNrBQr8W6hJzdcW61inPL5ej2vkJjSe7B7iCIv+A0IUQOyM9ebKBWsaMwEtFXCRy0x9hcrUT2SCrTAHDUHqN19xhekAAcQO62NpbLMQ8jEt/SMSnOLUvHjpSSVH/Yb49TulQ9L9UdmOpbpdoxjxd/yXZsUDlZJ5lPhJB1OY54A1UcpcswJkwS2TgjL8zZOgmRCzOq0RWEE8RpimUBSNnBkswO2cmiqA+rfAkhYhtsdgxRfSOpWzI85BeihboicXQ+ZgrkcZyYHmlKogllCkn9VANilgKEcR439PhZYjLS0YwYFFpdOqTOgyhLdLoAOWH5YXZ1Ld857HjaI6Gdo2G8o1HChZ4OSf2tdkZJodGqNz8AEHgBk+CJxDP1ay1ydJgUwzCxuLwWrarT5TctA42Faq6MhmHgS597HiUnzfZtmgb6owBC5OuKQoCLiCgzkTdKKb7wE8+injH6W6YJ161icTk7Wcj011cWMnUmw19+4ZmUMz1VlsW6i43lSqr8JMpMZ5AHThSJENI/UyVDiUQpAQXB5XO1XNoEwM7xIOX4EVE1OLaBqoZeiRCCjcircDq/kkIpq0vlwZB8XLk4RsHRrULTZfNMKYVpZGo+eqfsWjl/ToSQyH18Lok4b9p+h3zfks/T783ye1H/TgKDsmMIF2kOP/Uzy5s5VddcZpJH2sZUtJsjGs6qRKQTp6Nv7KdrSFpd0yw+hUiEAv2YYqOanrX8+wI5br04nanFP1ndFLlBEHmgYfKpNrQINQlycqNz0QAcXfA5ka4ikfPZSe0nBbrk0ynPZtf14HR0EU7eL4rPak74/rQ0zrKvktPdMyqcMB/hE6lHWR7piWkuc5nLXOby+MkjfZR3lvJp2kqfKdz8hDu2U6VxmvQL1s7Ts3XCncnU98+wvZxp0zs7ZYXN6FPUV04jZ/u5Ht26/MYbWx9LOqexZT3SOybD0IMRggi1pKP5SDrqSoYzXhxHF66M3brwojhF4eq4TKer7Oph1Y26CyPjPZQQREZs/YC6GDnVSwrnIj7vzsYruyYWqrbWc+7Iy3ttBSZHf9koBNB67BVCYGuvD8bSXHJhGGK54UKICbWRKiPnHL7v5dKnBLh/MMgBRQik/6ZKycrlQQiBsRfk4lAikWpZIQQYjIIIOZYv/0Il74GWEml8l7aRdL56Ax9jj2nh/hP9k2ecC5xbKkdHlul8eQErnEzbfU9LrVUrW9rvW1Q+QO8BVwh5CZclqIomZRCFMHjVXrP5ksi0/PtcIEdVpOKoT5vKt5g4CNX1R/X7rH2VALnJJGuPytYbL8jvozslPfrySKPyvICJJJyUACi5Zgq6Gb/rs/iWuDL4K2PyLJDOZPhJveFmnyXD/YCljM9JiLmiHlJUNCHLN/jDzgiHnVFEN1PGMxcbsC0DQcgxGEuvswYlaNQc2JYBP2C4s9NDd+CDcckMcdzzAEiKm2pZIro8n6HT98AF0Bv6uL3ThR9Iv01lx4qdFzrWZAAJmcjlEVCwYmnjCSOPqAoSPIjKZZkUzUsNrDRK4JzjB6+9gdd++BYY53DKDZQb50AIhW1ZcEtlUMOQfpZcBwalMAzpjE/6VgLqFRslxwQlEjrdqDkgAD7c7uLN6wexC/fD9gAh47AtExurNTi2FTv2U27pQ8bBmBxIahUbi3U3bkNlxwQhEogziLgDg5BLPrlQ1te55XJM3bN/PMJRdxzDnxW4ola2sLFSiahqJPLMMCh4BIxRSL2jjvSEzLnAcc9DdygBMEt1F+dXpTddxnkMZSaQ1w4oncDIncjlufKELIRAfzhBbFZKpnQxb1AJzIng3ikYeoI+S0GkVZ+olEzUypMJWrV7xjmCBHTcTlAPJZ1rqjhCCHj+BG4uXdJPEHm6viqEdKCpHmWh3Ek5KVw8ma+k52pZxzKNJIwckGkrJG6RLp1nXvoIwMU/LinaMX1i4eKKkkjeQyFa2pKxF+S55SAnp7JrpmCqSrKoOiVygOLa7fdJKZE8P4SfcC2dfF+G58urJoqsmFROyMnBQOmikSfYbB6+/oM72D8e5Z3qEQLDQI5OhnOOD+51o10aycSBNl+EyHrJrpaFELiz29c6ouvs3cD+7n0MBsNUeKnawOr5Z2Fa+R3JC0+tS5hyJl9PbtSwulTOUdPc2engn3/nFoajvFO/n//JJ1Ar5xGHZcdAuWRr6XcMSnL1KISAYxlycszoOu6NMRiFuZ1HyTHw4pNLkVfT9LPb210Mo7toSaFE3iHKohrVjp6Q/NHuQsXSUjsh2r2rqxZJXSXH1Laj7YO+9r5WyTVQL+cdQ07Ll0mJltqJCwHOOEwNJVNR/zoB9c9HCudC5FCFKvwkY4smznxi+qTCxZUQop+UAETHbcXxTmqPUTuzs5AiWpwimGx8ZyIjtmWgUrK07+sGE0Cu8LODqcqT0LAFETJx8Z6Vol5BiJ7JgBCinZQAoNPt5yYlmYjQDkyAJEbVIftoAV+aaVCwUE+JpJtIAHkxWDcpAdDWIyGkUFeWwFOJEIBZgAQMNIsrQK7UXTvfTWXb1mZXXivQhMsy6r9XUTsqkul9bmY1AOTkSwp474rkNH37pEII0dajCj9J+qeJ8zjLI21jmstc5jKXuTx+Ynzta1/7ceehUBgXXwPkikp3iQ2YrJrDDDln8uY60cTT6UK0A8iuBuU2PK8rCFnspiC5o+NcUulkF5VCCBz3xjjueSAQEa3LJA9mROeStOMQApRsM6IzmawSuRDY2u/j/Q+PYVBEthf5bGu/j1ev7iEIGAwN20PIRO4m/lF3jG7fB5C+RDgYjnHjzi76wzEqZTeu12G/jT/8zf8ef/K7/xvWLzyFxvK5WNfBcR97h10AAoYxWYkP+23cv/0+OAsBksgX5/BGHRxu34BTqsN2K7GuzsE9vPnatxCGAVZW1+Mjqm6vj2985w28f3MLly+souTY0TfheO/WEfwQsSsRJY5toj+S9q9kfY29ENfvtrF9MMRS3YlZvhkXuL8/wN2dHmzLgGMbsd1g92iI7761jaEXYnWxFLfPwSjAWx8c4KA9isAYk7Uf5wL77TFsk6Yu9m4fDPDWjUP4AUPJTR9ZKpuGmaDe4Vxg53CI2zs9SdOV0GUaBK6dv4Au61Oxk6R3G1QaSQCR/vYT+yjJ7f6lD6YQlklTx3OUSJsuRB6mwQW0R2C6y67JcN0zXbiyhYWaMhbpUnRBTOT7RJGuovSnhWvK+F9oI2rkvZsHX5v13UdRrpyra8MrFaewDh5pG5MfMGFGNo+kcVFnaAQkAigIeXwkE9/QhuwsqknMoitJbZTVRSnB2AtzRzyORWNQAzA5bxZCcqvtR87vVCzTIGhUndh3E6J3BSQHGaEEpXiQkalTCgzHAW7c60QULTI/ri3dM7z+/j7u7vYQRsZ8AcmzJu0k6TIaFAgChu2DYXQTX6GS5PPtvSN0usN4MAEB1pfquPvu1/HN3/0NcM4QBj4s28WzL38Z/8q//new12UIAhYPgCAEjmVg714LR/tbsW1ACAFCDfDAg+/1QQmJXIsYqDXWsHjuaRxsteB7A3DGYJkmbMfBF7/yc2j3fNzd2oXgHCRiMPjZLz6Pp5+4iHduHkWOE0Vkzwtx3B2hWnZiAlkjMsQ/sbGAkRdIP0fRGS4hBFfOSdvV1n4fIrq9T4lkMVhuuGjdPka3L8ElhkFgUoovPL+GkR/i9k4vZWdZaZSwuVJJ2SkoISi7BjZXK3jv5hGOuh4YF7Fd5txSCQvVvNsMBW65G6EcVb4c28STm3UsL7iTBVLhWdukHbm2EftVSk1UhKA39GNQhOoDQci0x9CubcTgG7VwU+1YIWhTWSCSxid5WbqoT87SV4WQJMdMpG08OuBSChmq6eMy/xN0b7Lf62iPpuVL957KL3mMwA9KsramT6yNKTfBJD5s8u/4feVwLBMeD7gn0EUJiSlIsrpGozzMGEDOSKziej7D7tEot4IMmQQviEy+CCSUW5evwSjE+7ePU+MO55Lw83e+dStFkKleCUMOaH39cGzt9lP5EtF/N+9sIwgmXGZcCEAA3/uT38a17/xm7OQPAAJ/jFvX3sKHOwPQBHs3jwyAN957DYE3iNnDVZ2H/gjMHwKRYViWhaF7vINB7ziV1yAMEYQhXvvRe3Dc6sRLLxfgnOGtazvo+W7q20vbiYlGvZzSpVCXt7Y7MCmdlD8ajO4fDjDK0Pgo9OL1u+14wgciWx5jeOP6PhzbSH0XIeRuLMv8wYVAfxTiWz+6D8VRqN5Xu3OddAc+tg8Gqe/FhYT2L9bctB1W/VQZyo2DeruS3NWnQTipPlOwiHMyulQ7zupAJiwbJwm7nrWvsmhSyj4rLAMQEyBn8yAn1PzpTHLHOGu+VFnmdqWTyyNvYzrRFrrg+2cb0my69J1wWiMrWjXxB+RN22kL0mK8uKHL+xTaVArzW1QcrnEmCADBeIBQ42gP1ITg+glb8Ilb83T6J/ezZBimFlRyms5PCTnVPWJdHEryR8BAsZsLIJqINOGmBhkJKK42vS4dmjIW7aSg31SRgnLEGdaqnxIHMx6jZ8JPenQ2rc3o4oiCcHVqcRb5OmkZ5jKRR35imstc5jKXuTxe8thMTKdapcwXNmcipzsgP6u9zCdQPiXFmMtcTiuP9MSkztzTYSL+qaUZgX5br2hDZtUVWX60cXRzXJEuYHI5NxuNEsRO3jLKJj8zuhxT3jTPnhARAlRLVu7+DInLk59nlfFZV56ymze+U0KwtPEMLNvJeYJlwQhh4Od0EQKUqkug1MiEExiGDUJo7jKoaZowDDP2kRTn1zDge8NcvggBhsNh4SVgSkmuviglhUdjTNIlaMuiu1CsLuDqju08jcsJJbZF898RiNyB5AtjGcoemSkLIegMfP1xVvxyBlUXIWF0F8ANo+AYu4CKXtFN6fqK7iRTXTZVv2efnTRcgTeKjvOK8lU0hhSDLE42Hj2oLHMploeKyms2m38NwH8IIATwnwF4G8A/AmAA2Abwq61WyyuK7wVMZJE1QN7oCETeYSPKGNOQN8wVEMIg0N44V0ZwAuS4u1TjzCJ3lChqGhWuvMgSIhknzMSgr+DHe8cRPVCE2NpYqWBlwYUf8GhgQd5Ynf0+RDqa2z7oY689itFkjZqDhYqDveMR3v7gIKJNEahVbFxcrwGQsORhwtNtEHAwzjEYBegPJ95Zx76ECXuej26vGxtw15er+MmXLsEbHOMf/i//Jd750XfAuYDlVPC5X/q3ce7Jz4FzHiHvZNZty4JpWRj2jrB1822EoQcCoL6whCef+ywopbj+zvewv3MHhBCYpoXPfenPY33zMm7fuIqrb78eAy/WLz6DzSdegu972N++hzCUtq5SqYTzFy7BcV05cRACEtX/8oKLsmui0/ek7ylZXVhfKuPiuTr8gOH2dheeL+vLsQ1srFRgWwbGkZda2Y4kDZJrGzjqetja60NE0PrnLy/hK69sYOgF+O7b2+gOfHABlGwDT11ooFKyJCQ5MXOWHAO2SdEbBtg5HMZozZJjol6xYZoUFdeMFxqcCwwiqqexF2Ic5YsQgs3VClYbJdiWEVMoKeSbbUlwh6QWyrcv15aeZZWkPNIKEb+ndHGBFH0WIZJeyTIpbCt/GZhE7TVgsn4RQUEUxY8OsQfk+1vsNTYaD7LACnUVIhlL0QVlJUk5lkXkKfTuhPZI5tk0SKH7Fl2e5dghv6lB015956g8KT8WSqJms7kM4LsAPg+gConbtwD881ar9dvNZvO/BXCr1Wr9vSIdipIIKKYE8v0QAROae0wEjm1oGSPCiIgyW3LF55VD4nGOQMNkIIRAp+fBzww6AFAtmXAdM5e+FzAMRwFWGqXUhCuEwN7xaLrhOZOvsR9i+2CAWtlOTbyMc1z98AiOJR3LJWX7YID941GuvsKQ4fZuH37G06kQAst1ExsrVZxbSd9H+NNvfQOvvv4jXHrpF2CYVioOAFhWmhpHCI5hewflchmLK+dSuvrtfYwHR3ji6RdhJHZK3niEd995B4trF+GWa6k0hv02bMtCrV5P1bFrm1isO6hXsh545eJBTlbp/O4fDwFITrukLsY5BBcol+ycLtc28OT5hdiVudJ19cNj9IY+VhqlNOKLCxAi4NhpJgvOBe4f9GFbRryIUWJFA2XO0aQQcB0Tq41yjrFjqebI3VhmVPYDlrsyAExIaLXUXkQO1tmdeBBK+i51t0sJIUC94uTSEELyz1Gaz5d6ruvfSY6+pJgGyVEFAYiuCvDCfq9l8YBcuCrOu1l0TcuvDllJgey9xfnEdFq4eLPZvIUpJ96tVuvJKdF/AcDXW61WD0APwK9H+v5m9Px3APx7AAonplmE8fykBMhMG5oGpeLopKigUoceqaOblAA5j+gatGMZqJWsXDgh+cu1DxLHMtCoublwg0o324HmmNCxDO1RgmFQ7bETIQSXN5awtJBP56nnP48O2cylQwiBZenKSLG+eVlLPdRYXkf14sV8ft0SNq+8kKt9QggWl5a11D9qcMx74KU4v1bNrXwJIVisuQUDIIXjGrlFgWFQfOaZVTh2/ohyY6UCt5fvWpSSHKxahdfKth4FqTvqjdJfX6poB3mD6tGAVMP5B0hYteczLXpPTgD5cMukWvRg0cJKHt0WOGacIoV9tSAdubA8Wb+nVF/GabqKpAju/6mYWT6ifOONrZldYDzoHtMvRD9/HcAOgD+GPIb7i5C7oGlyBQBpNpv/N4BNAF8DUEkc3e0A2Jgpl3OZy1zmMpfHRqZOTK1W6wYANJvN51qt1n+UePTDZrP5zx6gmwC4AOCvALgM4E+QXjjotyEnFNOkACHwg/RqnxB53EI0qzQjMnxrzDfF6VCCMLMU4pHBW4i8Edl1zCidtJ4g5BiNQ1TLaboaL2DY2u+j5Fi54yTHoiCUYOylyzjyQrT7XnzGr0QIIY8+kT8CatQclGwT1++1UztNy6R47soi7u310R9O7ilZBkW9YuUYtoUQ2N7vYDgawzTT+bVMAwtVByMvzLgIILiyuYAg5Ng9ShO5EiJZKLI0TZ4foD8YwnZsWIkjPiEEev0hDIOiWnZT5/wjL8St+21cXK/DtiY7muHIxwe393F5o4G15WpK13AcgAvJYpBM37YMlF0TIz99xGmbNPYdlFxtMy5wb6+P4VgeGSZ3LkVXmiglWF8qoxfZ+pJSr8gjxE7fS6VvmhQhYzCJkdoBCiFw1PNQKVmouGaqLKZJYRjItSMAhY2fFGRa+Z/S7bKH4wCOZeTsutN2HkXPTErANH1V9rv0cZoCVWQpwh6ki5Dio7mT3kWikV05x0YPecxXREY9TSplW88W/wmU1dXag1/C7MwPV5rN5l8C8GeQ90W/DLkjmia7AL7TarVCADeazWYPQNhsNkutVmsE4DwkAGKqJA2HOmoP06AwDXlENfICMCY56NSxBRc8R01iUAIj4v+SvHHI2XuyBk1KCexIZxjZKjyfw6AUlIjY+OrYBlYWSimncWFkA5MO6KS+sc9QcgxUyhbu7fXx4XYvcurnwbEMbK5UUC1Z0nVHVH7HMjAaBxiOGXaOBuiNpD+mkRei7JiolixpdOUisldQOBErBKWS/siIJtKL52q4eusQ9/b7WKg6Mb/aueUy9o5GuHanjc2VMp6/shQf2XAhfQcdHA/wvbduoz/wwDiH7wewLQu2bWOpUUHZlTx0JceCH4To9H1srFTwwpPLsV3g/GoV1++20R/5sRsIxgWYz6SzPwLsH/Zw3B1ACMD3fdi2Bdd1ETKG4XAUH9IPhmMs1qswTQMjLwTjHBDAwfEIF9aqWF2q4MP7R7i30wbnAnd32lhbquCzz23CMAx0+hNEmx8wlF0Trm2iUXNiI71tGRIQEjCcWypjfakCSXkk25dlUewfj/DWB4eRoV7gqDfG5rL0+2RbRs6GAQCVkoVq2QIBsFB1MPZD3D8YgBKC1UY54rGTE9Rhe4yRH0Y+lwxwIfOr+ogy6nsBMPRCtE2KtUYJToJ6KNmO/DCP+ow6GAw6YV5J9jvFzZdqk9ECZEJdJP1FmYoTUNOvi0AO6lmy31FMykYIJhReib6a9JMkJyieGjuSujgXMQde0rGkrt8X5auoLKpe5LF8GjjFBOLxKGtLnCaDYd59yydV9vd78e/TJqlZJ6Z/C8B/B+Dl6O/3APytB8T5FwD+QbPZ/LsAliCP/v4QwF8F8I+jn38wTYGdoSQC0jDMrNHVdcyJA7WMERMGcuEUgG2SXLhKZ6J78sygwHE3SK2I1PPFuoNqKe/rB+Do9PONa+QxvHvrKKJHUenKSWvkh1hfKmecq0nbwgdbh7md2NALY+d2yXxJPj5bDkyREkJkJ3320mJuBWkQ6fju0npVppfheLu/28Y3X7uZWxEyHmJzbS21SiaEwLEtfPGlZSxU0gAN1zFxYa2KW/e7uXoJQo4Pt/bj+gDkitP3A3h+ECP+4hwwgeNuH65bSukRQuDeXg/v39qVPqWiPDMusHs4QOv2ITZWFzJx5POVRilT93JAfuZiQy5GEs+4AN69eYR7e/1UvTAmHT2uZHZOSiQAJskXJ1F5l9Zrkusw2SYjhKEfslxbTaLMkuXwA47BOEStYmv7ih+hGlO7JSFgm3kQkFwEkhg0ktrR24a234UhBzPzu4QstHqW/m1QpJBtqfJHZKtqYlHPk7vZVL+ngF2g66T5KgqX6RBwln+m82Y8l7TMNDG1Wq3vAPjpZrNJWq3WTLXaarW2ms3m/wNplyoD+NsAXgXwfzSbzX8TwG0A//BBenQggWn8U2rwzUQ6sa6iZ2plr3tfeRLNCufF55ZeBgWnpFzg68cPJQmqLpKhcW0OALTAB5BiTNdBdg2qp7jp9Mfa8lOid5UNQMKeNXB9WZZ8URhX92LS4QLQvi/zTLV1rMhcs5gSLgSq5Tx6DJi+mi161h8G2nqxrGJdOvAAIWnuxPTD6cdhOsmi5pTEdajpKzpkqmwTBcdQYvJOVnTtKLnDmLVPTuurokBXNr1ZdJ00/QeNR9A9O+E3fBxlpomp2Wx+BsDfh9z1PNdsNv9TAH/UarW+Py1eq9X6DQC/kQn+i6fJ6Fzm8kApmv1Pq2suc5nLj0Vmtaj9DwD+BiY2od8C8D8+lBzNZS5zmctcHmuZ1cbEW63WW81mEwDQarWuNZtNPZX0GYsOeaMLB6I75ZqtdVGcabqmxaFE7x6dMT3NPSH64wYF3tDdVfECFqP+kmIYeadtSjgXIFR/Bp+1FwEApQJCewdLROfgHIaRPooquXmEHqA2KrpthmSSkGwcaV0GVceImbP56E/dBogXsKsLwbXPSOJnVtdoHKBazlMvBSGLGTWywjjXOqGTR2b5Y0Yt5VSiLFTzvSCg/fankTACJeTadyLv+rtIepcvU4+tMqLu9JAp/UsXR5ev6f1++hHnafr9WeRLnT0Xxfk0y6z3lYpkZgxis9l8AlF7bjabX8XHcNjRG/ox2kdnZEyGK0SMlTC0qveTyJzk+5wLDEYBRl6Y0zXyQgxGQcyxp/4xLlCr2rCsdNUZlMC2qDY0VqxSAAAgAElEQVSN/jCAF0yogADZycc+Q7VkwbGSgAGJOqKEYjgOU+lzIcCYwPmVioSQk0mZGOM4OB5hEPGsqbDhOMC/fPUu/vi1uxKxFt1MDxnHrftd3NvvYeyH8WQXhCHu7xzgH/z2H+LVN1sIwjClr1Gv4sVnzsOxzMjVgsxzpezCC9Icb4yF6LQP8U9+87fw3e+/iiAIILikQfL8EFdvbOPO1j6CMIxHdM45jts9DIcDMBYmRnrpd2k0GsL3xpO2EJV/MBigfXwExhjiYVdIdJZpmim4LSUElmXguO/jsDNOGaMl3dMQr7+/h+E4kAi/hNzb66M/CuJBmnMRQabFxHMsJp2DC4Gtg37s/0d9r5Bx3N3rozec6GIRcvO19/dw9faRdAQpYV2JxcJsotpRObrMnW2T3YGPzsCPQQOTuplkPtsngpDn2qTqd9WynetnnAsctseS7iqjK2Q8ZknI9i8/5HGdKF2yTPp+bxg0gdRLjxV+VIez6lLPisKzcRgX6BeMIbOMR3PRy0yURM1m82UA/wRAE8AYwIcAfq3Var3xMDPX6XsCkB+yUsqjgYB8Q1NhysOnGXGnJSUIWQxpTYoaWDyfpVbXlkHgOGZkSJ+Eh4zD8xhsm6Lipu/yeH4IP+TS6VoKwQdAAL1RkEqfMenyvFoysbyQprKxLdm4e0M/1iWE7BA7R0OwUKR2Ueqe1vbBAFdvHcW7O4MSfO65NSzXXbx14wAjb7LpdW0DoT/EG+9cw517u3F4vVbGL/+rfw6GYaHd9+N64ZzjgzsHOOoMsNSow7Imm29KCPqdQ9z98Br29+7H4dVqBb/4l34J4wB4+4MdSZYayeKChJlv7x7C8yd3eSg1YNk2wjAACyf5JYTAsh1AcPh+GvFYrlRQKpXBedp7KucSQlwuOSiXJjslSiXijUDWcfIbX9mo4cnzC7l2Z1sUtbKN456Hw854kka0qAEkwi7Z9mplC0s1B0GmHdkmhWsb2I7cpSsxKMHLTy1joWqfiBGk5Biola1cO/J8hiBkOOx4qR2vZVLUyvIuXHbQ1PUvlYZl5oEVfsDQHwUR7dck3KAEjZod1VE6v5KUOH9PUE2u+h2yvt8HTFJIZQEGJ9U1LRyQY4gfsNR3IQDKEZHyDOPRzLPTJ5GSaJYd00f2YNtqtd4G8Eqz2VwFMI5ohj42URNC0dGGDiljmkbhscMoIjLNythn2jghE6AKDZcQ06Ao1fToubHPJGFrtixMoDPIQ8clxYyrRX0NI/LObBnLroUgyB8VMS7w2tXdHESdcYE3r+2jWrbyx1peiN//w2/ndHV7Q3xwZx9rqyupcEopzq8vwnXzVD5cCPzo1W/mjiz6/QG++b234VSXc+kcHvdwwMLcMSXnDN54lHtfCIHAG+uRjmMPtm0jd0RIKZYXa7nvxbnAcdfLkQUDwEF7jMsb9dR9F0BCsW9udTSDLEElwcOXlOE4RLlk5RZKfsjx3odHsStzJYxL/sRy5qLsg2RjuZIiZlXiBQwH7XEuPAx5tAOfrX8Bsk+YeaYmyblX0CbHPktdeFYiLyrn+9eD1szafk8pAo0DypPqUmFFC/fhOG/JEJB1aTp5Ittp49Fc8jLTUV6z2fxqs9n8lVartQ/gf202m9ebzeYvP+S8zWUuc5nLXB5DmdXG9J8D+IPItmQA+CyAf+eh5eoMRJ3/6lY8WRcXSkh0pJDThYnPmVnFoCQ+GsymUS0V3YbX65LMFPojiErJ0sa7vFHHYj1/T2ep7mBjpaJNZ3PzHExDk2dqpI7dkunr7icRAJcuPwHLsnPPNs8tY7FeyoXXKg4ubi7lwg1K8eTFFTh2fgdwfr2B1aU8ZWPJtbCymC8jJfLysG3m87y84KJRy9eXbRk59m5AfquN5Yr2Gy/WHCxp6t4yKWol/W5qsebA0ewm6hULJU0alECbNoDoiCn/vUyDoOJqyGXJye0efsBie2ZShBCxrTUrBs37JDtr+biABZIRJB9e1Ielmxz2WAAfzkJmReUNW63WQbPZ/MsA/lGr1eo3m81iD2hnKKYR0ZoQveEy+VNtvRUVCCCPECxjclNfCIFStNUe+2F87KC4v4CJr6Wk7pABIWPyHD6a2JRfGF2+KiULZdeCFzAcdkYImYBjybIIASzVBQ46YwzHISyTxnRB8ZlDpMsyCIxoUA6ZwDACMEiaI4HVRglcuDhsjzEYByg7Ji5v1PGKSSEE8PYH+/j2m/dBCMHPvLKBZy8tAgTo9D189+0dtPtenPdXXnoB7HmG965ew9b9bVQqFbzw/POgpovuMIBjSd89BPLoL2CyLh3bwHAkL5i6tuTJW/vJnwL7PMObP3odt25+gKWlRfzlX/wLWFldASEUd3eO8fo7d8G4wGeam3j68iogBD73wiV8+7XrODju49LmEr7y2adgRmX54Tu38f6tHdQrLn7+S89idVFOSrfvH+Hbr9+AF4RoPrmBpy6tAwTwLzC0bu2j0/ewuVrFF1/chB0dld6838HdvT5KjonPP7eGpYUSCICDzghvf3CIIGB46sICnrrQiNtFEEij/ELVxjMXFmAa0tfRjXsd3NjqwLYMvPzUMlYWXAgAR90x3r5xiLHPsLlcwcVzVRAQLAuB/fYYIy+M2BRMLFRsCAD39/u4tyddYHzxhXWcX62AEgIvYNhvy3ZUdk3UIncmdSHQ6fvwImqiSsnEYBxiMA7lexUblMgL042q9Nk19kNsHw7hBzyyRbnxgBoDLgr6F+fyKHrkMRAiJ+7NCIzDGAcTQNk1UXIQ0x6ZBsFC5GNK9cmsPyT1e2z3IxO6oJP2++z7ScqxWXRNy5f6Ox5DvDC+KF6K3Nxk85UcZ8Y+Q9mxtIuduUxkVvDDnwH4p5AuK14EcBHAb7ZarS88zMwFIRM6OpOkZBuSH0rvo9mli3L0ldWV9NGSRd1I52r5c+GSa+YMqdPyxYRAP7IrJeNwLmLmh1QaEaJHrTyTujiXg1rWtsG5gGtTlBwrQsrJOAr9FISSo8tIdNCxz/B7f3YL4wwRJ2MMo7EPEEXESaJ8pOfNZJHVSjlr+GUsRMU1sLpYhWEYqbKoVb1BSQI1J8P9gME2jZSLDMY4BOcouWaKhYALAc8Psd8eSz60BAKPcY6Fsi2dNyZ2d5xLT63Vsp1iOlB1zIXIUQ8JIfDkZh0LVTsFvWdRGzIybYxzafRuD3xQQtI0RlygN/Qj/rd0uOsYOLdUTsVR+Rr7PPV91TPZjjRt1TGwtliOvllalxdIeqNsGf3oqkI2jhcwHHf9nF2PUuDiWjW3exZC8tFZpqYdR98/2fZVH4o9Ps/YvxTnZbLfq7qwDHIiXbrw7LNseHK4ydbxYBxo7VsLVedTBX44DTx8Gvhh1mn71yFJV3+t1WqNAfwigP/4xDk5oeiYeNXf2cZGSHS/RzMpAdDSqcgVjV7XZADO69Khe6blCzwfDigwh4b6h0wogbK6ssjApK6SY+XoZJQXT7XTS+oa+3lQBSBdmJumHd07SnZCaH8HEK/Ks2UxDBMrizWYppkri2UaEY1TshkSmIaBsmvn/DYZBkWlZMM00mgwSgi4IBpdgEkl4iwLbKAR0jPrI4gQ6TdIRy9FCMFS3c3dB5Pv01wbo1TSC5lG3jkejZjndW2iUbFzcYicjQrpgpI/kyI92ubbkSqnroxFfSKLVlViFlAVSaN/fpJRaWQXZOo9XV+Z1r+EQK7fF73/IF1FdTktXC0UZu2rc3mwzDQxtVqtdwH8TwDWms3mXwHwu61W6+sPNWdnLI/z2e60pVkhSugUxoCPBXE0tTAn1fUx5HcuH4s8vr370ymzovL+JqQ/pX8DwF8D8I1ms/lrDzNjc5nLXOYyl8dTZgU//CqA56NjPDSbzQqAr2MGdvCHJdo7AadZNhFAFNDcnDj9gnDxgIzp40xJo0hPoS4CIfL3RCghYEUXNwsTEVr262n55QWsPMUXGEXumCcbJ7vbIWRKngtEcAEYAtmt1rSLldPuopzVPRVlwM+37+Kj6pPqelCb1KVTWG5Mz1JRvUz9vmeg60GirZeC9E+br7mcTma1MYVqUgKAVqs1APDQvVcFCcoSAKnf1d/J8JCLXJzJu9DqCkMec9wlnylKFJ0uBViYli/1N+eSCaA78FPUKJKWh+HeXg9j5dwuEbc/DDAchzldns/gRRRCyXA/YHj7+j66Az+Gdivj+63tDm7v9FKQdxYZnlcabuTATuadEIliWmm4kTfXSbk559jZO8Du7j4451AzgTSYh9g5GMQ0M0oXAdAdeAgTUFkFfLj+4S7evX4fIWOpfHX6Ht66vpurF8YljU93GOToeaquiYWqncovJZKhwY7KkR02huMAQcBT+WKMY2uvj6u3DtNlgQRp7ByOIlaDRFvhAvvHw9w3loOV9Jyqk8Wao4VpD8YB/AjMkPzGw3GIo66XS0MIUXiK2Rv6GI6DlC71vrqBELfd6GfJNXOACCEkH6CTgYITknHfkcnXcBzE/SsZTsmEEzHZdygh8SJn1n5fpEutVU6iK1vmye9AyPXj0TjjKFGFmwbJ1Zeqs7lMl1lRef8YwDGAP4qCfhFAvdVq/epDzBu8QC7nk3DP7KpEdVLpuXRSFtOkseE/CaJQ5Q1CFjE9INI78bUj7xtM0lCrIYOSlOvvaflSg9f24TC+JU4IUCtZcB0D9/b6uH8wiNNZqru4uF6T/HYJZgoFtSUE2D4cYjCa0PU4tgHbNCTEeL8fx9lYqeCFJ5bQ6fv4YWsPgyj9SsnCZ55eRtk10bp9HLMAcCHQH/qSmSCCIkujshwM7x/0MRyO8MGtOxiPJbzccWw889QVlEslHHZGGI6DuIwrjRJWGmU4tgHXnoAeTIPCMoD+cIw/fe0DtHujKF8OfvrzT2G5UcXbH+zh3m43ql+CZy4t4dnLy+gOfOwej+IJoVa28NRmHaaZBiqEjOOwM8bIZ1hfLKFRc+KyeH6odStuGNJDreczvHZ1N2bscCwDX3hhDRsrVdQi+L8qi6wnE/1hgJ3DYdz2So6BC2tVGFSS804cQMp7LFzICU61STV494YBTIOmPBYn78LdPxjE7YgS2V6qZTuFKk2K8pI6qfvIg7GhR6ZygVRfkflV3HgcQTjZY7HIg7OA9HhcTfDxBRHPXch4ajeuyibbSDr9IOQTkAjRo+SKdjZFugyCFLDlpLqS4cnrJ6puTYPCD1gKEGJQErWRPPp25Env1a5twLYMkBNsrx5HVN6sE1MZ8kLtl6Kg7wL4nyMX6Q9N1MQETCCkWZF3JfJnRQp1pbsw2x14KCq2bktOgGjVnddlaZBNAHDYGWPvOF89IeO4t9vTHqScX61qKVs8P0zx2ilhXKB1+1hbDi9k2iM0gxI4Jj3Rqdc3vvs2tnaPcuGOW8bSyhp0qIMvvbyprfvX3rqJrd18nk3TRLVW0+p6+tKqto6fvrCA9aVyLpwQOanolqad3lj77a/fbePObp5pa3nBxV/9+We036XT1+tqVJ14QsyJ0B/FeX6o/Sb9UYCehsKKEoK1pZI2DdukOXQioDj0dB6Wi4+iDttjBBrkpmsbqFfyuoSQBLE6KbtmoaPFkxyNTws/S108OoHRyVjTHwHZ7nR0UJp05hPTGXDlDQH8N81mk+BUeK25zGUuc5nLp1E+qosLncyKyvsPms1mG0AIIEj8fKSlaDd4lme8OhsUgEKfSQC01DPA5Jw8KyyyFenEKrhBrtutKNHlTNpw9GUJwwBCQ4ypjjd1UpT6DBv0nPhBqM0Xgf4bK7ueTnjB9yJET8tDMP1b6mRa+yp6NvaZNh2CYvLiorovakecC+29taI2rJ4VSVG9fBw2lGl5/jjSKCpjURxli5zLbDIrKu9vAHil1WrdeZiZKRJlPM5uuYUQcB0TrhNR5ERHepLOhCJkAiyiEUqeNVdLtnRPMJ7YpSid3FAPwyQbxMT2pEs/5AAStEdCCBx3xylXCEosk2Kl4eLiWgXtvocb97oxlcz51SqWF1wIAQwiNnEhBA47Y2k/4pIKp1Fz4knHIPI4S9qBBnH5S46BhmWDC6Az8GNmB4PKm/BZYYxjENWFaRCUHROGQREEAV770du4dfM6AAK7VIdhuSCEYGlxAU8+cQmmYaA/9HHUHUEIScvy/BNLKNkGBCQThxAyjTvbbQwDgoVGA8PhEEHkrsK2HdQXItcSgktHfVCdmeHGnT24jonNtUWUXGlvO7dURrVswYudEMpvfNgZ4+qtI/ghw/nVKp5/Ygm2Jbn+OgMfXsScYCe+19hnWKpLrryt/QEO2vIIdn2pjK+8vCFBGIzHF5iVLcO2DAiRtkku1R2sLZZBiGxH6pRZXXImRC40glBG8AOGa3eOsXc8gm1RPH2hEXP2GVRe6F2suWj3PXQi+qiyK2mnXNuAFzB0+4pBAqhVbJQj2qvBOIwdBXo+Q7vHADLCUs3BSqMUXfKd0G+RRF9RzBTSFUUauSgnROnLzDYjmqpEv6iVbTAu+5eavBzLiOl6imw5uv6VDU/axABRaEuaRVc2HJjYhoKQY+RJ1gZKM/Y6SmCX7XgBlKRX8kMOP/ThWBROZF8NQ45hpEtRrJ2FE8hPs8xqY/rdVqv1r30M+UmJoiQC1A1v3UpXfmAuBDjn8AOeo5ghhMCkE+qV5DPlSCxpsBRCGnpF5EVUZ0DNpg/IQWb3aBRTrSSlUbVRcow4DucyjYP2SPpyoiSecOQ5vYd3bh5FDuaitAAQSnB+pZLaKSnU0H57CMbyHc/zGYZeqB0QRl4IT+OmYG9vB9/7/utgjCFkLM53qVzBK5/5HMrlcsqOwblA2TWwvlROMSMIIbB3NMA7N/YkSjBeNQpwJp34GQlWCAKJWPR9H4xJPrYJQIXgyQtL+OKLmzlWkJBxXL/bRrs/8VlFKUBA8NJTy1qyWQhJswMx2UUqOqLVxRJWG6UcY4TOfiCEXJicWy6nGBse1I5u3u/i2p12tIuTuigB1pbKeP7yUqpN8mjFbZkE9YoTP1O6xh6Lvegm0xl5IfaPR0hulNQu7MJaBUZislA/g4BhMMrYvITsI9Jwn2FsAFApT+y5yXwFIZeAIehBDZgSntXFuUTe6ux0tob2KDtmPGgMEULkFqxR4QEQuI4Rcy2m6j5CyiZ1KdF5ewY+XZREpz3K+8g2JgBvN5vN/xPANyCP8QAArVbrfz9VjmaU7OCTbXRJoYRAqKMlTZwiKhdC8kclhEgWZJFxez0tfQA47npaN+m2RSPo9SSOSrNeybNQE0Jw/2CY47ATkCt9w9CXQ/bX/DM+xbirm5QA4NXX3oCXccAnhMDa2joqlUpOn21RbCznwwkhuHb7UFMvBKZlwTTTTVBEcRhTu6Z0+s9fWdYa0A/aY7R7Xgo9xXnkhK5gdeoHafQloCiBHKwvlmde1RJCsNxwcwCJB7Wj928f59LnAlhZcPMURoRIh5TlNKBH6XKdPDiHEILBKET29E4h4OLFQObnYKwBYhCS8FicSYfmeSjV75YGtJQc1GfpX+r3UKF5cn0//d4sv2tBToQgDJhmIpHv2RnHiOp3xvJ3BJXoJqW5PFhmnZg2AXgAvpwJf6gT08cin8R2kz5Z+WhqCHKD4zQhmHK+XpStKXklyH+Cabv4aShboisMmZavExZ+inxsBzMn/PaFpZumY0qVnADlPFWKdi+n1XVWchpd00oxDT04l2KZFZX31x92RuYyl7nMZS5zAWacmJrN5l3kFwYhgBaAfz8ieX005KSrE92S/WHIWS6aCnSdtCgExRuGIj3T9BcWcUok3aNpK8xpq+xCBFVx8sVywkinqpfT6DqrdvSgDJ/gnt+pkj9DRJ3U9ePblUxLeb5ZOp3MepT3dwFsAPh/ATAAvwx5tHcVwN8D8HMPI3Mh4zlmhSIUjRDS9wvJsICpjsS5gLLJp+IACLPn3ZFxtQg9xJiAcvSa1LVQs+EFTFKwRHEIJDqLcwGSSF8ZxhnjOVAG5wJriyUctEcRxZKMR4kEBpgGzUFPCQHOr1WxfTCIDPiT8HrVRn8Ywkv42aEEMCyK9aUy9tujlD4hBF55+SX88EdvgHMWQ9Vdx4JDfSzXHXSHExSkEbnvKLmmvAmfGXNeeHIVb17bARMiZgNQbjIsg0ZUL1EZo7o4v1bHzkEvBQwwKMG9vS4W6/mLpSsNB0ddR1IyJcpIoJxFklS7oIRgZcFFp++nfXJBUhV5fphirVDPKEHOFxYhQBAwENfST7SUpOskal8vP7WMd28epcpICLB3NMRyvZSj+glDST2lbFnZ4zBdn1ioSORiGDEiqHIEjIFxDkLy4CLXNjDSMGQAkSuPrF0sAowomMgs+Uo+KwrP6pLtP2+bSrJr6GxIOl1F44FhkELAQtF45NiGZMLQfHyD0h+7nelh3DN62DIrKu9ftlqtv5AJ+/1Wq/XVZrP5jVar9ecfRuYU84Ny8gekG2QRuid5Y5sAObg4IBeESfRcsiEnqVmULnUPIWnENxNAhKT+Tt/HcU+yS1RLJmplK5e+F3B0FMwXkp/MNmUjPmiPooYuIbtHXQ8CwOZKBRfXazAoQRAytHseQiZQKSn4sIkgZLh66wj39vrSlfhKJfZ2un88xK3tLjgXOLdcwaX1GgyDojfw8eb1fXQGvoQPB5JmJQxDtFrv4/btOyi5Fv7Wr/4Sfv7LLwIAWnfa+BffvwM/YHhis46XnpKghLEX4s5OD/1RAEIQ0wWFjKN16wAf3JOsD4u1EiplR31n9AYeuBC4sFpF88oybMtAf+jh9fe2sH88wELVxVc+cwkrjTzTQxIuftAe4f0Pj+CHHJsrFTz/5DIcy0DIOLp9D37A4TomXriyhEbNAecCN7fauH63DS6Akm1E6DbpqFHS+EjwSj1yEKh46wLGYZkUl8/VUCvbEQJygnJMUlgpPkPVvixJS4OxH+KNa/vY2hvAMAg2V6qolqX79bIjPdCSqB2r5bcRuUjPLmiyfSLZ5roD2Y4gpLv2xbqbQg/m+lCETvMDCa9fqNhwInokP2AxMCcLF9fpmhY+Sxwhor6aCFfvzUo9lNLF04u9JPJSxUnCxU1j4utsWh0nPdXOABefeS/1UVF5j+rEdBaURG8A+JVWq/VO9PczAH4HwFcB/H+tVutzZ5TXlMxCSVR0tKAuuumoWbygYDVIst5UpYSMYzgKtKth28o7lAMA32cIQpaDKcuJZ6xdRQ1Hfsz1lU6Dolqy4NjZDa5Ao+bkVvYAcGurA8bziDTlbTWLIOOc459+84a2jD/3yiqevbyCkmunwts9D1sHg9jNdJwrIfDuzSMtguva7SN0B0EuX5WSiQtrVVRK6TQAwPeDCCKdjmMYJIfcVOkLIVDW6Lq4Vo253ZLywd1j7BwNcxeTS46Bp84vwM7VPbC2WELJydd9EDKEjOfa0bQ2+e7NQwD5+qokuAuTQggi0trZ+4SE63MtqrEoDiF6x5hqoaaF4RfItGPAomd+oHdOmOXAnEVXUb9X3IU6PUVlLEpD7kJJrh1pdM0npjOAi/8nAH4v4swD5HHe3wHwGQD/1UfL3sOR05yDE83xnQo/acugtJgVoWhrz7jeGYFBqZarjRCinZQAOWHqoOCGQeNjyKyuojI26tXcpATInWjZNfNAOEIKodZyB5VnZaCE5CY4JbpJSaWjC6eUwLH0unQTCaAIRPV5Lhp8IzLOmfM1rU3alqG9anCWIq9MzD6RANB6JQbUNz6rnBVLUZssquOzlNOUMQub/yi6HmeZFZX3+wAuN5vNZUgaowMAX261Wt95mJmby1zmMpe5PH4yKyqvDuBXAKxEQQ6Avw55v+mhS9LXyqxb92kUJMqWk9y5EKLnHuNCYOwFhbr8gKVsBkoMg4BSM0VXwzjHzuEQnb4P1zbiM2ghJL3LYXcMk6ZdH/gBk4AGIemHFF2NENLO0bp9jKUFV1LMRLq29gd4/f09uLaJS+dqMTff2Jf2Hy9guLRew0JV6gpCjlff28HO4QAV10Q1cXS0ULGxdTBAd+Dj6YuNeFfz/7P3prGWJNl52BeR613fXluv7JnpO01qqDFp2lxkiZZpWYLtHwIN2LBBERZgiJJtmJDtH4Jh0xAhGCBkwgsI6YcEmQsEEBQgk4BswhItibQo0RLpaXI4w9vdM9PLdHV1vVf1trvlFuEfkZE3Mpa8S91XdWvqHqC77ovMOHEiMjIiI84X3zm7mOIXfvWr+Ph0jH/je17F517ZF/vpBcPvvnuKt989w+3DtvCJlSuO+w8v8du//z4opbh76xBRGFTtNZnl+PLXHuHl2z0cKKEq8oJhluSIAlpb7QhKp0sEPsVb33ZY+dGmifDZnF3M8F2fP8EbL+1Vuq5GCX7tn3+Iu0cdfP71w2oV+uDRGP/0y5+gKDjuHneqOlIqWBauJhlakYdIecZhQDGeZsL/EM8PveYFEyFAuOgT8jkyJtg8ZmmBbitARwkVcTVORd/zaI3NOvQpDnoRfK8eQgMQtDhJWtT8WJLJZDrL4Ul2fS2ukk08SuBRWgvvILeekkSAc9rxXFfBWEU31Ir8GmWXK4QGK/1EBCIkDSWL7Vr0rja993qa5Ag0D+8u1mV7723pqm870BhAJIjJK3dSdmebmmVZH9P/CeADiDhMfwfAnwDw3w2Hw1++SePSkpKIwH0gT03X73FdU3/n5altfVKSk466HebSJVFWcpDQy88LhtPzCR4+FnxyFTqqfHkvRkkZaGxefuhTTJIco8nct0UJ0O+EeO1uD3leR/55HkGvHeIr33hcIdNIefF4vwVwjrPLeZgGSoB2HKBgDP/k7fvIC4a84OVHAMHtwxbefO0AbcXpSwlw1I/x5W+c4R//zscoCoHGCnyKk/0WvvNzJ3j73bPSxyJoeCgRMXveff9TnJ2Pq8EJhOCg38Gtoz0QZY+DljGIXrvTByWo1REAPAp89HCMy9Gc5YESYS8H8M6HF5+BxJMAACAASURBVNVA6HsE3XaI73nrNtIsL0lqS7QeJXjjXh8fPrjGRw9HNW7EfjvEm68e4Hi/VfOTUSpiY/U7gbFlE/qkHHw5wOdRfgnEoDSa1NkUPCpQjBfXqQLCEfYxxrDXjdBtB7W+XzBJS2TGAKOUYJrkRqiTKKS1LVK173qUwlfAOzJd9HsTXRl4BCAoef549VQ8ShBFvkB2lu+C+k4wZYtaDuY20MHid1Ug6WTbO48HkPlEU00WpT1qHjl5LKOr6bd4x806AnMUpz6JRTbSSofsfExuiYfD4Y+VCLz/ejAY/A8A/lcIAMSNie50tcE/1X/1++Rv6XS26XIG+suZ4aNxlQ9phwUlRQjBLBEcenrf5xw4PZ9a99EvRolRPuPANBWTZe2LE+Kl/a3ffyAGRiUdZRm6MA6cXkzxpXce1uyS5JhvvnogOPzUL0IO/PrbH+Ptd05rX7BZzvDg0RjjWZ2PjzEOBuC33n4fWTYfmHlZea60nZpHIL441LisMu9737yqgtTN7eL44MF1LcAiyja5GiUYTdNaezEOoOD4ra98atAScS4Qkkf7Ji0QYxz7DsBBmitKCKksTzOG0cweS+v0XCf6FZQ/h/0Y7dg3+pFH3T6f8dTOpm5Ds4rfvA5HV+5JskKEndfKUbBIUH33jLM5LY/2TkjG+s28q/W/ne+joqtagWp5JNJ3FV0uu7KC1Wi/VF1MfKFYV1xPS/7Rlz7eiJ6nOcEt646LBoNBBwAdDAZHw+HwMYDP3KBdC2WVpfCie63XF6i35uH2dO66H27nriudyq9RW54V+ztj3OnwdyGe8oI7wBvuBuOwgzrkasBId1dRnPmxleG4X6xoHXZxbs1HG/I4n6PrmdjVNAppABysrMuRr0kXLwdTM90JRWjQ5UL72fOs864+jXZpLMPx3hNiBxTttvEWy7Irpp8D8J8A+BsAvjoYDK4BfLkpw2Aw+G6IFdV7ZdLvAfgpAD8PwAPwCYAfGQ6HyRp272QnO9nJTr5FZVlU3l+XvweDwa8BuDUcDv+/Bdm6AP7OcDj8cSXv3wLwM8Ph8JcGg8FPQcR5+murm726bPIrZS1NG12+P2dfXI1Vn/sqarLJKrp0Ndn1nDXxTnbyrSSNW3mDweA/Lv/9y/I/AH8OwJ8ufzdJz5L2gwB+pfz9ywB+aJGB+vaB6nDUKUx4uc1jy6Pfv0gXVfwEhjgmOWYph3OOOPRAKTWycS7i+NgkLEEfuqQlrZBtW2W/Fxpbc03jaxx5aMd+5QCX4nsEpxemX4pzQZXkeeYBQkLEuSYdREII0O22Lb4FYDJLSooi7bkwjtxxpkccKq3XixIgDCkCjxp14RCxinShBBVqTTWNALiepHC13GRmRtNt6keepl+9Zt1BJuJwtu3+JvSa64xMVtj7pAQk2OoiwRX6Nfv2tX07VM9jlK+0mZrOLenq36733pYHsD9FCSRZRVdTuooa1u+vwFE7WUkWrZjk6GA/Mt0sXQB/pET0dQD8BICOsnX3AIJ/zynL7AGr6DrJVxUFXkWfQogbmunSxTiQM44wFFQ2kt+NEFTwWJVmBKjTz9Tt4pgmBV6+1cXVOKmoiiS01/MpSEkxJHVFAcV+N8QR4zi7mmFSOs9D38PJflyiuOblEQLsdSLcOWzjapziq+8/FggtLmDNrcgXA/QsR5ILipko8HDvuI8/9MYR3vnwHP/syw8qf8B3f/4WPvPSHoqSeqcoudDG0wzTpMB3ff4OPnpwhYePx6CUoNsK8b1fuIvDfoyPT0f4ytcfo2ACNhyHPl67d4TbR318dP8M01laDUqzJMN779/HreM97PW7IjJo4OHVO310Wr6FAorg3kkXR3stfPjpNSazHASCI/Bffus2Ap/gn3/lIb707ilQ1v0thXooK+tOANw57uDWYRuzJMfvvXeG82vRLW8dtPDFN2+hFfl1Dj0CdOJAcCEyVgJDFvcvzxNIvlkqaHwk8CPNzWCShKCKLgsI6LuEOTet+AkhiAJPRMbN5swhEpHnAhxkuYCCK0BS5AWvKH7UPimph8REr0SL9ijaZURWHdYtodEcqHH1SaaFJiCErY6rpMtrgU8rqLqazngZxNCjkB9G65bv+x48zmu8liqbhN4uro9Rl3TaoZUt5GnLyYltrXEzshRcfB0ZDAZvAfjccDj8lcFg8CaAfwCgNxwOD8rrnwXws8Ph8Aca1FTGuZyoSSpeEt0hL/jETOqZJl15wWrQ1vr9ZqAwzkWEUDX6rGpXmrEaSk6mv//g2rCXcw6PEPg+qUWAFXnEYKgPMoQAtw7aiCPfOBfy9runyHJmsBZ4noBj6zQ3szTH1755iVdudWssE5xzfPjgGleTDKm2imGMIfQpXrndq+nKc4bfePu+9bzKe+9/gtHEdCveu7WH73zzJRzuxUYbMy0CrEwPfIrDflwN5FIePBrjD94/x/FByyj/1kEL+73IoOU5v5oh8D1DFy/Dd9tYHvY6oZPhwtbH0qzA+XVqBY/cOmih1w4Mho/pzGz3pjLE6omUPI7LU+nYPuw559W5I71PSmorPRCgXA3pcHr5HG3vSpNdq6a7rskPQZv4lDjZPVYtX6IT9X4hV2kKqnLpzeJtiWC7aVTe2nDxwWDA4N6Jz4bDYezKOxwOvwrBPo7hcPjOYDB4AOCVwWDQGg6HUwAvQQAgnkgYs6PEOHd6L5r1WTocIcTK1Se+iF0dGsakBIizI8zyMSC/7mwDnVj9WXiEYKfYIUTQ+zBuQogDn1q516JAcMLZ7EoLZn2pu+0Qtw9Mpm/fp4gCz+g4hBAEgQ9BTF8XcXbHxglHjIi9Mv3koIWDntkF+50Qd446RjsTQnDQj628aCcHbWs6JYLM1YW2XEVoeabHJl3LpCTzrCLzfrTaFzZj9n7ve+aHEiBomii15/EcOx2UNq9KblIaUYgbLMcWKVuW7z3D+j9vsmgrL4AY2/8SBArv/y7z/BCAN5syDgaDPwugOxwO/5fBYHAHwG0AfwvADwP4hfLfX30i63eyk53sZCcbk205jNv4WTUcDovhcJhD8OL93eFweDkcDh8Nh8NfBPD9C3T/XQB/cjAY/DoE0OHPA/hvAPzoYDD4DQCHAH72SSsQ+CIkgS6+1wBegN1RSomdZbjpI0cc1LPrDnwzYyv28J2fOUK/UydF9Upfjf7VTAhwctDCveOOsXLotgJEATXKZ5zj5KCFw359NUEIsN+J0Il9o05JWuB6khpEooxx9FoB9rsmiSslBONpZqxYs5zhlduCxVuVOPTwp37gs/ih7/2MduofePnWHqil7VuRj1dud9Fr13URIrbGBANE3ek8mWXwPXO13I59xKFvHpzlIrzI5SgxVjQuIl5AxG2aJSYYwvNIBSBQxacEt49aCIP6Nd8jSNMcs7Sui3OOLHfHRRLbi1o6IYIo1wG4sOoiMjSMeU0eLtX1ZHlRhYNZthzbtUW6mmTVsgVRr5lOLXVcpGuTdu3ElGUpif5fAH8TwP8DAYj4fgB/YTgcfvfNmgduRdrYXhYIpyxjXMY7WZinKV3SxAgn7RLlcxF8LctZhTSTtwinO0G/E4qXgxIUjOHRxQzvfHSBKPTQiecDLysH13bk4+5xp9yvF2U8PJ9iNElx76RTDbJy/z7JGPK8gChenDovGMP90zEIJbhX6pJ5ZmmB0TTD5SipOc1F/BkfWc6quDtyj/zsYoY0L9CJ6zxsUSC276ZpUU1ugsUhxydnY7x+r4+3Xj8U21kFQ5IV+N//4Vfx6GKC7/vDryOOgtq2qO8R3Dlqo9sKqy2wWZaLuoCgFQmfj9yt3+tGAJchRVgFMJGM7a/c6mKvG1fPknMgzXPM0qIWFI8QoNcO0Y39auBftP0iEX5hQA3flQQQ1GOCAeNZhsdXCbqxj1bsVwc+KQHikt5HbfuqLEoqXbIfFiWKUQX9AOKdkM/C/SFGaroY48hLX4idO7IEEvA57dKy9EKqEFKnC3pSXbY66ukyP+eCQohoZTXpWlS+axzVr8m/yQp7ek/Tx/Q0V0ybiMf0JgSq7gsQH6K/D+AnbzqkupyVdCeqFBeqbtk8m9QFuB3VcrDT8zDG8fX7V0izwtAl4vAEVloceatu19UkNbjSZB4QGE7nNCvwtY8vV0KzztLcGd3UJa/c6qLd8g1fxeOrGe6fja3Q8zdfPRCcdlodz69m1nAezOEHA0pdlr3/8+tZNfir0go93DkyIe5N0u8EaFvANk39SET7XSVUORfEv0JZTVcYeFY2gywvoxbrZXBei4S7yN5Kl62vrKFLRTw+qa4aNNtQZ15bR9emx5DdxLQBrrzhcPgOgP/Idm0wGPz0cDj8i2vatlBszlU3ssh+bdX0dfPYQA3APBy1PsnIyK42Xb5nj2kkVztWuxzhfFwOdFairlbp9evsSEShZ3Wgcw54xKRtoZRYB1lCCApHHV2RjChxO6RdcbGoJ57XKn5qz0Hh1NSP1H9VcfUvKmMpWXTZ2ku5wUyy8Do22dskrros0mW9toauphXLpnRtegzZSbNsAhz/xQ3o2MlOdrKTnewEwGYmpp1svWyv43V7LdvJTnbyrGTrJyYbiseWvk6eJl0SnbWKLhe6h5WOVv0aYyIQms3+NGfWMy8uu6TvqdCcTNKhbdNFsPrWnK0eshzXM1EZDFTxPDcayqaPc+7M49od4Si37Cx5AguwBQDyfPXpMs+bEWob6ZPcDmQQbeXWZZN1+jdx6OTKPcvqApq34FZpl0VjwiZ0yW16/T1aR9cyfv0XXZZlF38moqJo9HTAjsJpyqOnM86r4HgqOodxjqtxhjxn6HcCEZ22vCbpRdQ8nAtQwCePJiCAiNlT+kk4ByZJjstxiqO9GHEooNocwPU0BaXCn5SXSD7GhJP549MR2pGPz76yJ1BYEPY/eDzBeJpViDVCxMvyzdOS7WA/xmt3elV9x7Mcb797BkoJvvi5Y8ShQLMxzvH1j6/w4NEY/U6I2HJQVxWB+ivw7kcXyHKGl046ApZMha7rcYppkqPfCatDv4xxjKYZhh+e4+WTLr745rEIHMcFPP1L75ziepLhpeMOonCOsuvEAa7GKVqxX0XfZZzj/DLBH3xwjij0cPeoXfMdxZGPOBQQbpVCaq8bCci179UOOPoewcu3upjMcnzyaFzyHKIafM8uptjvRTX2iigQRxNmaT2AJCEo/87LOEqo+sVklqMomOAkVD5CZomgKPIpaulN/TvLOWZpinbs1+DoecGQpEVFG6RK4HsG+o1zAdS5GqXodcLacYs0E3YFfj3AIGMc0xKsEfhzmDohBOophmXeO85hQPzlvXRVXZAoQdToheT9q44hWaVLASsAGE8yTGY5um0f7Vg/umDXJZG9nkeqFcA2+5e25QwTsCQqr0kGg8E/HA6H//qG7NGlMs7lYFyEyLE6vcvAXvoigjERbVYPuhYHFN1OaHWWz5Ic15MM15Oslt5r+/AoMRBkceih0xIDr3pmiHOOR5czjKc5xrO6rpdvddCJfZxdzGo2x6GHwKf4+v2rWvmBR3H7qIXHVwk+Ph3XdL1+p4deO8D7n1zVmCkCn+JIowOS8uhyhvPrGT59XCd2PezH6LV9jCZZPey3R+H7FBfXCaZJXkt/6/UDjGcZvnH/qraIuXvcxr3jDnqdsAaUoJRgMs1w/2yMi+s5YwQhwBsv7ZUktHWOQgnX11keCATDQhTUB3bGOD56eI0kLYzged1WgMO9GK3Ir8Gni3LSlWHJVYkCsRKbpfVn73uCQWSW1tFtBILXzt1XTRYRAen3qqi8artIiL0qnAvofpIxg9Q28Cm6Ld9YpQu7vCq6sZ4n8KmV827V9w6oh2JfShcTtuq6mkKXr6qLlxyRo2leaxePEhFIcoU6Wuq3dai8pz0xbSKCbZP84w3oeCJZ9Sskd6CxkqywMlGnOXOi5x6eT63UQ5OkQOCZL4gk89SFEILLcYrEcu3h+RSd2IfelyczwbunS1YwfPX9c6tdHz0cIfKp4dvRD9aq8unjSUVyqsr1JLVuS+QFs7KT5wXDl7/2yOpXmqUFeu3QGOQZ4/iD9x+bgwYXK8vAj2rphBBEIUWvbYFuA7VQ8VIoJei1Aut2Z5YztCLPONPjUYLQt9NEJdk8lLcqecGR57mRLlcxtm7MLZOS1CXPx+n3M86hc9OLlQOx9u8sFwTItvaypUvxqBuJaBN5pkwX16TUJEVh18U4h7ciEZltUgKEvfoHp0x38Z25Jt7d7t1qspSPaTAYfHEwGPyLwWDwB+Xf/+1gMPhXAWA4HP73N2jfTnayk53s5AWTZcEPfxUiqJ8kXf1FAD99IxZZhHOxxeY6J2QTVuaxfdF71KQrkvfZuC/dp+B5eQjUzNOKvNoevZonszjKGRNhJWwggVbkW3VRQnDroGXEICKYs1Xrst+NcHLQMtJl2A6bHO3F2O9FRvp+N8Ttw5ZRf48Ku2y0PAf9yGpX4FNMLPQ+BMArt7tW2qm9blT5oFRxEY9yzgXLhUbzw3npN7Q8Y4+S6iCsnkccODX7F6X2s2OEwEpIK2y2AzFc9EZNawLXwoNSYm1HSkXYDFu+MDBXi1IYW55GiHP7CgdYYU9LET2O1rq6uGOFA4iVXDs237umhZ3uJ1vXrhddlt3KY8Ph8HcHgwGAii3cpK7esAh/AVModlht2a+jXmRaXu7LAwLd5muB7eREI4EMIlZPAQIRd4ZzsX0HDsPZKU+sz1LB0yZZlgvGkeUiDMDxflwNmF0mBsM0K+mKmNTDywEUOL9O8bWPLytnaVg6nqPQw73jjpiUCNBtcVyMEmQ5QxR6iEMfe70Id487uH86xunFFN1WgLvHnSoOzsX1DF/7+AqUErz12gH2uxEIIXj5dg/vfXSBq3GKvW6I/Z6g6/E9VDGoKCEIAopX7/Tw8u0uLq4SfPWDcwDAF944xMm+YBZ/pdR1MUrR74Q47EUgBHjpuIMHjyd48HiCduzj2+70Ksqe8SwT4T8KjrtHbXTbIUaTDJNpJiacUNDrtCMf/W6Ib3tpDx89GOEbn1yh1w7wxc+dCCofQpDlrOLM67fD2iQu2pyhKP0kSfnceu0QB/0YBWO4GCXIyxAOnM9jQPXbIVqxjyRjSLO0CqqY5sJPwwEUrIBHAL8EggT+vK/JfsRLZ7r8gAgqu8SErAImpJ2EoAa8KBjHZCpiY6m61L7vezL+kul75ZwjCijCIES34LgsfZyd2Ee3/FCIIbbusvKdaUVBZZegpxLxziQLfsGBImcISpot18HUCnwB0y6fzg+Sqz6gOljCrItHCTyQCsCkvtfL6mqyS2zV+ogh/Ixym70Veuh1Qmcbi/LlOCQmY9eH7U7csiwl0f8FEbn2bw6Hwz8+GAz+FIC/NBwO/+hNGpdkls11LgKZyQetdgoOVKsRfb9aQoN1apCkdAjrHZkSgm47NKh8OOd48GiCJDO/uluRmCiIZldeMHzz4di6z/y1jy9wPU6Nr7ajvRhvvrJv2MwYq5zq9XSOtKSfUb/WRb2A0PcNXVnOcHY5tbaXDVQiIcNhQI14O3nBcHpu6hJfpBwEJpNFXjAkOTOcyBTAGy/vGbF+GGOgVDjd1fJdiCuZZzQx25dArEZ8i5+IEpShQZb3X4aBCJinlt9kF+eCescWZ8qWRyLLpA9Sz9OJg1qgymXK56WfRO/f0n2i31+wOQhCbxd57EHPM/9IRC1dkM3a87jsXZRus8vVj6Vd+nsv3hWTEkn1P+rvl638RW1PVnCo7cAPbvmvIBjCB4PB4BLA+wB+9MlNaxYrioYQ64AhvoCE09n2zO1bK8T6ohFSxlnSXlp5TZ+UZLoesE+mZw3nYmyTEiC2yWw2c9gRR/JeG3mtJI61iVBlbxtbmm9BoVXX5wpreWzxeSq7beV49ginlFKEllhDTe+4gMab6RxuqibP8hGzSPRJVLXL1o8JIVaqJLnqt/ZvR98mhBiTUpOuuW0OuhxH+QKgYdGl1bdus3F7VXdXHlf9XemAG3G3yC79vZf90ex7m7NrVbDWTcg2QcNtsixX3u8C+M7BYHACYDYcDk0o2JZLU8fdyU52spOdbI8sNTENBoOfh3KmqPQ15QCGAH5mOByObsS6nexkJzvZyQsny6Ly3gPwGoAvAfhtiLDo5wDuAfi5mzFNyLI0I0KIFTLTRBviWkRxcCuSRu5D24QxOy0PFbsmVnGFwHaiENc4EGE7+Q4AhPCV1THuoDcizio6hdgfV+X7sMkmN9uddV+nEHkYySK2lXpTn3SmO+21UxI16Vp0r9P3vIKuxusrvdfN19fJQ5z51muXddp4J25ZdmL6PgB/fDgc/vRwOPyfAfxbAD43HA7/CwBHN2Wc4UisHmjdISz/E4g9ot1bRqgEarpkHkGrAyUPr/Ko981/Ayf7JhSaECDwiJGPc4GiOuhHBoyUEOALnzkU/iQyrxkhwMUoxflVUk128r+8BDmodhEIH8erZdRYfRwsmAqdV18wgm4rEJD3xicxdxh/6d1T/M7wITKNJcCjgjnCBsW3CaUEn31pD9/++oGgbJH1J4I5YTrLjYleOKYpLIFunRL4FHeOOgh9qvhCRD956aQr6KMUgwkR7BACvVjX5VGCTuwbCCtKBKQ/qCLT8qr/EWJSDok8BPNuPX8mjHFMpplA/SnPXdZFou5quqiJUNU/RvR3RdhGjP7NmAhSqR5pmOeT86+pRy9T/g4VZGHtukVPk106SEHPaytft029J/BpDcHnaqtldDXZpddlJ8vJsuCHO+W9qtf/1cFgEADob9wqRdSvTUpNp7jeaTxCQMkcdSPDKdcQNuULKCmGwkBEDM1zEbCvFdeD2nEukGVFIf71PIrj/RZmaY7rcYpW5OOgF9dgr2lWKGeWBH3Q7cMWrsYpJjNBfeN5BIR4+I43jnBxneCdjy7gexT9jgA+XI5TjKYZbpUT4STJK5sTJnTEoY+9boh+JwQhAkk4nmb46NPrmuNZQOOLCp2YFfPIqv1OiFmaGxQ6UsbTDOfXM3xpeFoBP75x/wp/5A/fqwXUCwMPJwctTGY5rsapVVcceui2AwxeO0Aciu730kkXv/e1Rzi7nOG4pP8BBG8bpURAxwOv4vkDJHefm61CnkGR8PR7J12My2i9B/1YRAYun9fRXlEGLATuHneqQHVx7ONqnCBJCjHxlACDwKfIchGFV3/2BWOYzHLlo6fsl5SUQfvmcGu1TxaMIcuYEoSxQJoV6LaDiuJJDvCBTzFLBaw7Crwy0q77nWhKl6AhzsURCAmVz4scaUbQjgPR95ldZ6ABa2wTVhjM+frEB5z5Dus+YH1Al9f0ycFWx2V1Bb4n4OY5A1awy1Z+k11q+YTYwUs7qcuyE9MvAXh3MBj8Vvn3dwH4FQB/pvz3xiW0oI6k2FAvge8ZnUqKjX6HUoJWHDh5tmx54tBHz8JLJvOn2sBJCEGvHYJxc9De70W4d9wxorAWjOPR9QxtC8kqYxyv3O4a6Z1WgCj0rJFmM8sBXkLEBDdL7ZPJl955iAePJrW0JCsw/PAcJ/st+H79JZRcgDb57Mt7uH3UqaWFgYfBawfoaJOprGO/E5qQcirOgNkCB3qUGJREctJ+6VbXeF5R6OH1uz0TiUUI+u0IaVBvR0IIwsDD0V5sbMV6VKxqdAorkcd39snRODPrzsV5t1ZEDV2tKEAcLo9Ek2nWbS1CrM9LnNfLayHvpahh2ReVC4jnFZLmYIqu9E3V0aZLwtZX0dVU/qp27cQuy6Ly/spgMPhlAAOIXZ/fAPDnAfyXw+HQ/dm6k53sZCc72cmKsiwq73+C8CvdgQBCfAbAX93mSUluv1HYVlR236vcR3dtgbjKseUpSoYI3R8hvtpWwzDIk+O2MyGztKhtcc3LabbXxj6dZoX167EV+QgDD6nl/NYkydH3Q0OXSziHtV3SrMBomhkhBZpEMDmbB3eln6TTMu1K0gJR5BkrMLltGGgHblnJ8iEYw+vbPElWIAqJ/SyWw2bXLg6lBMxynvxp7fpIJpRly3f1+3VEbK0z+J6dFPd5EtcW47bItp9fkrLsVt6/MhwO35IhLgaDwXcD+NM3aZgUAtToV2x76bqjUaUpIeC1/XnOOYJya0I9lc45B4MYHCgrqnAJcjvF1uEEGEHc5BFxMJMDuLhOqq2RMBBbO5QQFAVHmnOEvgfO536evBCUOh4liAOKrBB7+gSCAeJ4T/DRTZMcV5NUTCxEHKr85GyCwKc4OWghLkMUnF1MAQj+M0mhJMELMlaRGITFYDueZbh/OkaWM3gewX43qvwsAPDFwS185+c4vvL1R3jvmxfgXDAj+B7Fl7/+CIe9CG+8tFdNXpcjk4ncowS3D9soOPDw8RTd1pwK5w/ef4zf+spDFAXDXjfCZ17aQxR68D2K/V5oDPKMcVyV8Z8AVPRMADCapHh8NQMH0I0DvHqnjyj0UBQM41mOi1EKSglO9mO0Yx+MAw8fT3BR2nzYi3By0AYhwNU4xYNHExHQMfBwchAj9DVdBDjaa5W0QqL/iQ8Jr6K8AuYM2lW/UdixOefotgNwLuIkpeWB7E7so9sKFvb9Re+E+rctDyC2fxnjmJZ+TELEVrUE+ejvCgBkBUAqv6VZzjLvqmReEX2kQDsOar7aTdXxpnXJ90tSoemM6bttvNVkWUqifzQcDn9wMBj8JoAfGA6H/IbjMAEA8oJxG/WQKnp6lrMa4FN2HpUvT81jo1lx7Wu79q6lpFkhkHSW+wR5ptm5z69nuBzV9/c5FwPh7UPBeae+qIzxanKq+R0A+D4pJ9G6rrxgmEwzAwjLOcfD82lJnoqarl4nRKdVD7VRFAxX4xTvffOiRglEynZ4/W7PqDcA9Dsh7hx3DRDKNMnw2199iPEsq4V2oAT41/6lezjeE2Szep7LUWqsCDkXQREl32BVFwK8fNI1qIcIEXbPSoJWrqX7HkWmZVvWvQAAIABJREFU6wKw1w3NFTjEwH60F9fsnQ9gEhpv9lVmGRA5N2mfFg349bot96640gvGKvCPek0CBTjMd8VF+eUqpyhXtbbhp9MKrJRjq9ZF9+s8abu46yJ4D2vjRvnQXVRNZIUl1SYpibZpxbQJSqLhYDD4CwB+HcDfHwwGHwDY34RxTWIDIricmIQQFIwZg6+8z0ajQ4jYHnM5cJsQObZ+NZ5mdrZpQqrBSddlczoTQtDvhBZIOoFkMtOL54CV+ogQUg0muqQ5MyYlqUufSAGxIpylhdGWHIBHJdu62S7HB20rieUnZ5NqklUlCDwc9lt2kMDEtBcQQBNXTCmb855zIMlya5wnDhggFAC1AVlPlysmVeZ/O/qRRZ/8iNLbeNmBWL/mSrflUd8VWx5WMIDUjwOQ8m99UlpUfl7uFuhCyervfVNd9N9PosuVhzFLOcRNb7St23zbJMtOTD8G4ADABYD/AMBtAD9xU0Y9kegzQJXsQPe84Ctsgg02AYfVubLOaygG4Jt9gV/wR7+TnWytLIvK4wAel3/+7ZszZyc72clOdvKiywpn6LdLnL6xVZfJxK7rWTsrOb95Gwga0HuuPA3N67rmqkfT/bYtQWCza6j1V3LLX1v3Gd60rrVlU7pW7HeNqra0jd2hEXeySLZ6YpI0OioKRkfLqL8pmVPb6GgbldpH1UUcujgXQQr1PADmYRw0Xe3IjPZJiD1yqMzT70TWAfJynGCWFjXaH7EdKYL5rSJR6BtRbgGBduxaoskCwGicWiOU3j5s43gvrkG05U9XJNBPzsaCCUO74bU7Pbx80q21GaWiWWWcKKP8ozaigNbonQiAdssvD9XO0ykBfEpLqHfdJgKU6MP6NUIEJZKui6A8JOrbdck4SXo/knGybH3Pp2Y/sv1b05XZdRXM/q5keVH145quEoCwjC55zX74nFc0ga531aYrCKjV7wi431WXLvW3q+2Wzb8oj+23ZzloDMzn8KYyd2KXpVB5z0pkoEA1AqQL9aOmSyogAE7YJud1yK56LcsKJV6LpJChRvRcFYotqYfk70kJZT7oRWXQOSJg4dcJ0pwhzRmmJfCAc45ZklvjPLUiHyf7LVBKqvJkHdOsjhpbJFleYFICNCQkHRBou8tRgiRj8GidmiUKvSpSbCcOKkDG+dUMX/nGYyRZgeP9lmBBKNtF59GTctCPcfuwDVpyzskzQ6fnE/zm732C0TTDa3f6eP1er3TAi/pHgYfQp9jrRfA9EWX29HyKj09HJVJORLwlhGCa5Lh/OkaaF3jlVhdvvLQHz6OCQeNyhtEkQxQIeH0YCHaQi+sEnz6eghDgzlG7oneapULXLC1w0Itw61CAOFS4eugLeioVXs+56FdTBW1IiaS6MtFmKhQ7UI42qH1SRpaVuuJIwOlVSDqgnHlToN8AatFt9eB9ErGq61Ih7rX3S4n82gSLXuZdzXOGSSLQeWFAEYf+2rrWybMpXfJDVoJLZZvqdVH0PHVU3jYh8oBmVN5zMTEBbkoisYqwp3POrezdtgkAEC9JnhfGHhMlAsJq03U1TqyTQ+BTRKFnoKvynOFrH19aVxdXo5k1vRX5Vpgy59zJb+eSySyzIuE457i4mlnb8vZhC604MK5NZxkeXyfWbbdZOTHr8uar+zjaMxF3syTH2dXUip783Cv7BkIRAB5fTjFLC0OX7xHsaWexpOQFs375FwUDoeZhWV6uLHwLsk9OAkZd0rxaQalCCdBtm88REJF2CTF1JWmOmUUXgGoy1iVJcusmkkftAQUB93tkQwjK+13vl0vWeVeb8rjQbavm2aQu13O05NlNTBuAiz93smlI5qr6CLEzAgBN/huyuT38pjJWvOZ60QgRA/OqJrt0idWQeb8r0qwtAqyqyyYuLsQmXS42c1eedcTVxtsqm7T1ear3InnenuO2ylb7mJ5UNrkadOmy+UGa0heV0VTOs5KmOm5S16p1byp+W3cCttUul2yyf69axqZl1Xf4aZW/E1NudMU0GAxaAH4fwF8G8GsAfh6AB+ATAD8yHA5N7hqLqHFTlllWVz4foKIXUvd6Q5/WaIuqcjwCz/NrPhICcUAzU6iKCCFgnOPRxRRnlwkCn+CgG9Xi7mQ5Q54zxEq4BFayNd85bGE8y3E9ySof0+PLKR6eTxH4FHvdqNq68jzB35ZkHIHHKkcrL31MNolKGiRxun7uZ/Aowa2DFm4ftvDp4wkuFMYJAmCvFyHLiprvK2ccHzwYIQgoXjrpViEp8kL4ycLAQ57PfV8EYutxvytCaVyN0mp7shX5GE1zzNJrnOy3EZe6ZmmOj8/GSDLB+6dy/7UiD6fnU0SBaBev9DEJfwupypcHmyXQRD5DdetK9S+q/YUSVMwQuv+lKQ+xpEsqqUixQQpjHNeTDKFPEUemL8XWv8PAQxB4mCk+JkLmdEG6X4hzjjCch3OQY6FHhY+LEmIwWrjKF9uY4uC66vtSfUweK+CtSEnk9Adb3lWXXa72sl1T/XikmPNBcq7Sl3FrCI9Vy3fdL8cjj9u3kndSlxv1MQ0Gg78C4E8A+BkAfwzA/zEcDn9pMBj8FIBvDIfDv9aUP8sLrjpfbbbqnVh2wKpzcA6UWzvzYHSkdr8ea0Z2WM54xRqg6krSouJQUy3qtDz022FNl/hdUtwobALiKw345sMRvnH/qkRCzXV1WwFuH3WspKpN4R46Lb9yuso6phmrQBzSNoHwyvHhpyPkmmOLc47rcWpSFRHBkbfXDbVJvaRB4lwJZCfai0EwYsQl952sC4Fglyg4x9WkTk1DiQBK9NpBRXdUtXHsgwPVaXtpL+MiIGNU+pXUPEFAa6fwK0c0ULVvzYld0lSpDAEyj0cJbH3SBaYpGKtNEGr926153K9l+rcM+KjWsXrGSmA/NZ0VDL7v1foR5wLhl7O6Xa7yZRvIFuUwB9+gFoixWVfVXmweebemS0G5Lfveu2zO8wKFUoZaF9vIJ/uEzWbXb5dd8pkxSx2jwAKTdciL6GO6sa28wWDweQDfDuDvlUk/iHnspl8G8EOLdMiBTO2k9QG//ptxrqDpqlkIACqeNl0Xd+iihFRfgrqu+6djgcbT7A0sCCYA4IwbdDmECA68b9y/NPjdAAG2cMWJsU1KgJjMVDoZaXsYUGMApqJBHIzSpOSQq6dzXkbDNeh6RHu1qlXAvL0oEVFyA18LZgfgeprhcmzhSyME/XZQQzVJsSH+CBGEtFEZME/PI/Xo7eJrbVJdQ/3eWh5Hn8wZN+io5m1BjHI45tQ/y/ZvjxKjjot+h6Fv9CNCyuUe7O1i+w2ULODKwDyvDK8+IBbVRaYzLt4LQ5dyz7LtoueTvznnFUrOVhf7xGLXVZvUlrSLc5jj0U6WkpvcyvsfAfxnAH60/LujbN09AHB3XcWbfsg2fU1lNIEXrPmadDmUreVYd9zepMf15ddYxIp2rVoP+TXbYLUlhVjTm8txPa+GPAvacgVVK5exbr+32+VaM6xe/qptolx0X9tQ+avqaux1q5a/oWGq0w4b0Y9/8vte30xBWyQ3MjENBoM/A+CfDofDbwwGA5msvgXut2IJaYJ3yu225ZWtWc5qqjaqqzGTrYjGNtlSh2zzzLSRTLzp/g32o1VlHfjyJmUdWPWqutbR97R0rZpno+ORRcYTezRoKaen10+k/1nJyYk9GgFwcyumfxvAG4PB4N8B8DKABMB4MBi0hsPhFMBLEACIzcs6XzXbODY32rTqAOy+21XMJifZdeSZ73ysWv629qOdPFt55h35+ZQb8TENh8N/fzgcfs9wOPxeAH8DwE8C+AcAfri85YcB/OoyunQop+o81dNt54bkPTq9kLxGHLoYE85snRKIc45eyz6fJ0lh6JJi9xVxnOzHlnuB8TQ19KgoIt2fwTjHaJpWdC5VOuMoColKqtfF9yh8yxZBUTDQMq8uk1mOojDrWHAR0dXw/wCwHUMiEHRBAqFUvyZofOyONMm0Aa0uBZuDXtR0znllr94ukibJ1if0mWlhP+L2flS5czRdnItouqv0b9eWq+j79fxVPblZd/GbW+93lQ/1Y0S3C3NAxDK6qnYhxNAl1a+iS72m3+/csCvrYrz3Dl1N5Tvr6Ch7J4vlaR6w/QkAPzcYDP4cgA8A/OyiDGrnUR96U3ro0xo1iHSMU0ueCkJa+lnEf8BomuHxVQLGOLqtAEf7MWj5DmV5gV4nRBz5OL9OBHoLQK/to9MKDJ+NjBQLlDDb0nmf5gXef3CNWc7R64SYzDIRWpsAJwdtHPZj4+VJ0gKX4xSMc0Shh71OWFHJXI4E1VHgT3HvuINWGdH19GKKR1czEAIc78U46ovge7M0x9nlFL5HQAhFWtqV5Qxfff8xHl3OEPhU6Ir9KqjeLC3w+GomIuvutwACpGmB0/Mp8oKhE/u4d9JB4HugZE4XxBjH5ShFkhVVIMKDXgxCgEeXU5xezgAAoT+PFKuLhPPKAa2aLEq0mgyBLiHt8vkL5CVKCiTxjK/GCaZJAUoIDvqReHalLh1+LX2Hrn6k0gX5HqnFf6KUIgyJEj147vBPsgJZwdCK/Noh3kX9Xu0T8z6uQMRl2aROoSXzCETe3I7mMsR6mypoRBVSTwkxEH8uXeo1j1JQwjeiq3E8CLwavB2Y0wUB9cCiEnGpt9e65VNKEZI6VREBasdKdmKXraYkgrI5sur+rlz12EAEglTTLOxylOJqnBoIOt8juHXYMrZqeLlKCH3PYCegVLx8epC6JM3xzkcXuBpnhq5uHKDdCgzWgmmSYTzNay+XlCjwnBx7WV4YZ7WiQJwTSrU8jDH8s99/iPPrmdE2dw5boBZWhtAnaMeBlX7n+79wF3FkUuYwxhGU8GVVkizHZJbXzjBJqU1IimRloD/9UfpUkNPa+sVklluf/343RDsOrLtxfhlFWNc3nqZG+wLi7JkKjZdSMIbMcfas2wqsAQ2B1fq+/Oq3IRoFDF6c/1q2DI/aAwfKcmx0RS5pfFcdulZ9713XmsaDoqQRcu24rDruLDkeLb2gWgQX3zYY+LLywlISUWrfQnPNxXLFYLufFdyYfAiZw3ft5dvTR5PMmt6KfSuVDucoBxRTXLx/UwdXXV4wpGbxIITg8dXMmicrOELL+JMX3DopAW4etzDwrHWUJKM2aUIo2h7l/DvflDQrrHls8H+UOlzl26D2TfI0IMOEENCGsviKvngX0lSWswnZpK7GMhzjgW0Sf5rl78SU3ZpyJzvZyU52slXyXG3lAeYXx6rpgHAIFxr1DCC+prOc4dHlrLZFs98Lsd+NxH64kokQsV/MCu44qAoEgVfzS0xmGa7GGU4vprhWVk6UAK3yMKRKVyP1cMZxdjWrrehakY9O7GM0zWoM1B4laEc+csYwTYpaGUf9GGHg4Wqc1OoYhx44gN997wzvfnRZpXdbAb79jUPkOcOn59Oq/r5H8PnX9rHfjfHOh+e1uvQ7IV6700OnFaAdz+siw12IFaC2xRh68D1ibKXGoYdeJ0SaFkiUbTAR9sO+Wut3QsSRV2NckOUTAkxnOcaz+YrSo8LPZNt+8whqlDuqFAVDmhc1aihCgHb5/HRGDUrE1/ksLWorYI8StFsmywWwXv92XRNMJSUYRLPLo7RkKVD6N+psIYvK4HzuT7G1myuPPGDuayE/1qn/Ou3yjHRtbCtvkWzrVt9zG/YCAFcfqO23KrrT1JVH/Z3lzEC4cQ4RnygVsYZo6WOQ+8R5zsRLRHXqnzoqTewkl0t4EIxnc4ofyZt3/9EY0Pa+CYBWHKAV1X0xHMDVOMVommGvE1WcW/LlvhwlgltN4QLjEANxFHo46scVGkpMkjmmSV5y0Ik99jxnuBqn+I237+NoL8bto/acI41zfPpoim47wHd820FVPuMcDx9P8cGDK9w+aCMMhM+NAKAewUEvQr8TVlQ6UrKcgVJaTl7zOiZJjvEsQ78jJgu17cfTDLMkh8W1gzj00O9G1fYb5+KDoShYpYcQQcfEOK/aq9sygyW6qIdsvzkXW6eUCg47VfJCONcDTVdeMCRpjjDwa89LL0MXtY8v079duuQk5Jdxr1SHf15uW7sC+dmEc1h9oCpVUf1+8TwlXZC0VY0BtWxdXNeWHQ+adD1JG9vuk/aQFfb0XsSJaat9TPoDtXU0W576aqOOsNF1EQKAQ8sj0GTyhVV1UQqEoefUZfNr5jk3fEGUCgqf0KMoiDYxQoAnDCoZAL12IAZ4Lo0vUVkeRbcd1pwIhIjJ4bAfKXRB87q0Yx/t2K/VwfcpDvoRvuvzt5Bm9VhHHiF487V9HPXj2qDlEYKT/ZZiPal+FYVANtp8cXEoCEr1OsaRXxG8qm3seYKA1DUp7fWi2hc3IaR03tefF6UEFASH/biWrtqgr56a+hEhMNpRii3QHiFi0vNboaELaP7qVlGCi+xq0uVRwAOx5gl8Ys3jXokxZAU33j3OedUd9DwFM+mCZLoEZC6qo61ddFm1XWy61m3jJrt20ixb72NyPdRVHrbekVTh3J7uigHUpEvsj1jKaLBLX61V5ROXQ5agfNN1ZfV/tXJsumS6MTCXqwpbHp8S67kkEFlz86JrK4ys0ca2s1WuexfpcqU33etqy3V0bdKudXXZnv2qutCkyzIpSWna9VjFrkVjwbNu42XTdzKXrZ+YdrKTnexkJy+WvDAT0+4r5QWQrXaX7mQnO1lWtnpi4mimJtHTF12zpcv5apVyXOn6XnS9Jpb6cY4wMBkOgPJEOufGoSvSMPq6QrnnFhqdJmGMIwyo9f4kY9bn0kTuPZllli04Ds5QUULVrjS0sau98kIo28RzZJw5r7n6kXr9SctfpEuXJ9G1CbuqPmpJd753mPtumuq0jF2ua5vUtU76ojw7cctWgx+ynBkoHcB0OorfqAKfeZRAP8PpmjQCX6Es4SXvFxfUQ5ybFDMuXVnGMCkPtYY+hZyMhAOeIg7F4V1RjLg2TQrEoQjsN0vyasrxPVpGrWUIfVpNRhxAlts7tQiS5yMvBNpOTh6McSQJwzTJsV9GxiWEVHRBQUAxmmQiDxcIs08fT/Dg0Vgceo0D4VMq8zDGcHY+xV43FMCFsr2uR6kxLgHiQO1kVoCxBPvdsELGUUrRjnxQSipaGFn+dJYhzbmgF4rnXbQog+RRQjCe1eM4ZTnD6flUoP9CrzZHup69rR+VV5DmTFDXKKmSPmdRn1T1udKfRJfN5mXquIxd+rVldEnqnYpeiHPRXygxglbK/Abtkyig1hZPahdRyn5SXfKani4prEj5HOUTco1Hu52b5WSr4eJJNsdfhY6geZKcVK+GyhOmi1zd6GlJeb5EP5NECQz0mJRZkiPNJQ/aXAKPVGHQVckKhutxhiSr0+JwLuDjclKqlV/CzW1npTxqnv/gnOPx1Qx5bpK9Hu3FOOzHBmVPlhf4vfce4dHl1AjZvt+PBO2S5siOAg++TzCemiwTYUARhb5BM3PvuI12yXCh6krSApMkN5gkCAE6Lb8kW62319U4Nc6iAeJ8V78brkwxI8rTne5iVWcrJ7Ccu2nSJQdk23PUw3ov0rWoLk2Ag5vUxbmYoGzvnly569Uvv3useZ5WHYHV2lieadSfJCWoPm71dK1+S89Q68DFtxUirspzCxdfRrhlUhLpq+mRCCLboNGkK0kL66DFANg2neQBS1v5rcg8TwPIMOJ2I2xRbsWXHayIP8Y5Oi3fyON7FJ+cja1lUMB6piXJCiQWeiMAaEV2rjphs307LrW0C+dAnjNrHX2PWlnI84JhnXhOLtQmaxgEXXpcH3zr0Bht88ejLoQQ5/O1DeQij/sj8mnJqmW7nmPhQLM+R49wK2SrfUw72clOdrKTF0+em4lJpwOSQon9XM2qH1+cc4C7VwaCpqj+dV6UMX0KZn61s4LPAQxqOuNoRZ5hc1EwPHw8xsgSrVKwEJh2McYxSXLr11uvHVaHPlVJswIPziZGniQtcNiPDdZvuWU2mmZLf7mzMo9OiMs5x/n1DGcXU8PnMJ5lGM8yY5XX9BjjyHcSv06T3HnmySW2+smveZu4bHO1k+vMGmDv35xz5HlRbYE9iTTpYpxvpAypK8sLC5uKfbUErP6uqjpXuVePSbauLgDWOGIyfRPj0YsuW+9jMp2ZYj/ecKgCc84tajJ7u7ZE5GHSGvgBQJ4xZAXDxShBkooBlgDY64XY74aYzHKMJln1shGCMgYRma/by94Y+hSUAmlWD2Y3SwtMkxzn1zOcPp6IbET4SO4edxGFXulbm9sr/VmZNpDJOES+R6uBlHMR4uPsYlqbJAgRE/ord3rod0I8PJ/icpRU21bX4xSPL6fIC46skI5psW14st8yqIWqZ8CFXer83Yp89FoBQFDZQIkARbx2pwev3EKcpXOfWyv0EIWCWkmfkEnpVJcTKOeo4lFVVFFk7tuLQ1qxSNievbTblq7G7QGWByzo6ZzzGsBDv6b+TSDamXOV4kd0DN+j1YeTqxxbHWvxiEpggnDU85KaaO5LsdVt2TrK9lF1eZSU7yav3i+1rr7FD9tUF1f5q9jlGkOadLnskrGtpE4prvFI6iAr7B3ufExbJjanJGMcBeHwNAp5gnrH0BFMNl28+rqrMlWoZw7B/6b2CA7g8joVvGiGk1aseohlr1z3g8wHTQ/vfnheR5hxETPo4nqGV+/0KrSSFJ8STGYm2CDJGDpxPQ4QIQKg0O+EeHQ5D2nBuYg4++EnVwhDvxYVnBKCfifE5SjFtIyPwcv/pRnDxXWCWwctq5N6Zok1NE3yyg4pjItJ+d1vXloDAk7TogQvmM9Lj3VEiPiv3wkxnuaGs3qWMkShvG9xnyivVnap13QOt2V0iRhIJpWQKw/jtui94npeMFBCa3qadMlVUqEMyrIvydW/bhdjHIzC2vYuhKBOSSSvyUlPyVQdD5AT8LJtuUy67Vqas2oyVutoG0MW6bKVTykQKpNOlRfu8Wgni2Xrt/JsX1P6IKPfa8/j+jKzl5uX0WR1afKp28qYZ7R/gU2S3GpDBVDQJwBH2YBYsdnqmDvClMsveF0nIXaAhijDEcyuwS7bNiQg29G2PWsOjNIuSRyrp88XqbZ+Ydflup8SO6N2Uz9y6YI4XLV0niawg6trNerS7lHFijgrVzpN9tryrFIXuep15Vk1vbn9YTQcaajjOuW7yl6UZydu2fqJaVOyzVuWOzFl97R2spP15HnYxlskL8zEtJOd7GQnO3k+ZKsnpqZtjVUROa48hNjTqep4WaEcp13EVMg5r+1Dq5Lldl1NuwACDGGpiwNB1NSEwintKsOUps0JC2ixMadzu5SLM2urtovI6nCmW9Kb+lzTM7anc6txchutycnv0q/naerfTnGUL7d2V6pjg12uOrpMXaeOi+ptraOjHy2q9yrtsomx60WVrZ6YQsfJeiK9E8pAoTom1b91h6WaXjCGpIxaq+vyPYrDvagGHycE6MQ+7h53RHC7Mp1zwbAwmeWlz0iWL8ryKBD6pLIbEAP8eJah2wlLCiMhlIh6nxy00IpMYEA78nHvuF1D6xGICLBhSBV7eXXt3kkHr9zqGhDXduyj1w4MiDwhwOde3cfxXmteBhEIq8O9FtpxYEwcnTjAS8edMu7S3C5BlUStZex1Ahz0whq8lhCg3w7QiU27JBpPRabJ5xmHnqA80gyLQ0+wKlj6kYqWUp894yXqccl+pPpq9H5ECbF+fIj0evlytFZDi9T1CaQehzlQusr3PQpP0yXb0oaI0xlE1P9cZajfKuqgS4kow7PUURKCuN5hvY2b6iiv2ezVxxB5f854jUNykS6XXU3touuS96x6jOFFlK2Gi6McXVnZiQgxT4jrnWZROiAQSTKMuioSdaWeV+JcTCBpxnHroIWOEu00SQvcPxshL3gtVDiBCOgX+BRBMH8xOOdIMobxVIRWV8N75wUD4RxHey28fq9fvcyMc0xnORjnaCuDNecc15MUV5MMB72oCuc9by8O3yNoKaHNi4LhwwfXmMxy9LuhAisX57GmaSEivSpO4Fma46NPrxFHPu4ddyqKIc45klTY1e9ECnxbTNCPrxJ0WgHicA7IYOVkHQUimq46KI+nOfKC4fZRuxYFNssLzNICoU8RKrRQvJw8COp9gnOO0TRDmjH0O0GNhcDVjzgX6C11kJHSFFp9lb7HuRJCXKMfWseuRZRbzvIxh0rL9KKEU3setaLxbHUUFFECbm6AZ2DqYpyXDB7Lv8Py2pO2vbQ3K+xtKdpjtTFk9fIZAFLx50WBAxFkkVXh4s+Lj+m5hYtLoZQgIG7KEhcixjXpTjQCUCm5peMSQtBvh+i2Q6OcKPRQMNQmJUDMpgXj6ARmFFSPEnzw6bVRvu9RvPXaPtpxnZaIEoJOK7Db1YnQs9hFKUEn9AzyWc+juHPUweU4qZVPCEEYeGDcbMc49PG5Vw6MdEII2q3A4DAkpb2U2lcJ++Ukquva64VoR4Fx/izwPesATMqViC291w7tg7mjH0mUFrNsIDJup5ZS89rS9L5HiKDqWdUujxKjf0m7msTaXpbyCSHwHXY11ZGDl4zu5jUbAzwlxEqfJfWv84G8ii5KCVDY88gQ86vatUp7gRDjQ3gnbtnqrbyd7GQnO9nJiyffshNTwQRbuO2LR6WnV0Us5810znnJTGA6UV3UJHLrxCZ7ndCazph9/9mV7hK5zZdk5lmkNCusZ5SKguHR5dSgKuJcHEK20S5xLtrZ/oVqt40x7tAltpRsbcwcZTBusqcvyuMS160cWFmXy651ZRGw41nJttrlEhtV0ItU/vMkz4WPybYt4koX/opMsABAOOz3umG1vaDmmSZ5tbz2PQqv3PYtmNgP5+W+uFyBU0qwX+rK8gIX12k1ME+TopoIAn9+EDTwKNqxiDs0d4AKJ/YHD65xPckE2GG/hbDc+pP0QgCqGE6ifiKcBLXUX7b8QW07AAAgAElEQVRJkha4fzrCrLTl1kEbd4874OC4fzrC2cUM4EAQUOx1Bbjj4fkUww/OUTAGj1C88fIeDvtxCejIqpAeUeAhjkxmckIk7ZLpN8jyMl4NyjAR5UQe+qJd5DOTOimB8KV5tE6lg7m/R7aLrL1Ko1PFBCpFDU3h6i86XZDu/5B/q6EpnLpKPxKAqs6urT29rfRrarqkvhH1rXMnrqqrKc/KdvG5f1WnM3qWdjXlUZ+RTl+2qq5l8qjpHKKPhq5T5xZZ1sf0vPiWpDT5mLZ6YuKlcct2CsY4Hl0l1tXFQT8y/CGs/EqXqwRd1/XE7ouixNzjl4NSUQ6ktX18CMoc3cFaMBlTaB7RsyqDEgtdDwcgJi5dF+ccD8+neHw10/xHMkaMRAfNrzHG8dHDkUF4SinBncMW9nuxUXePEqu/DRB8fbqPSJZJCAx6JUoJ+u2g3l7lzVFoj3+l6lWfl55fTZecd3p7FQWr0/WgeTAkhFQDmaGLzYNA6naFDuodVZYd3EQP2NxA+a1sl/pBoOtSuskzaS/S1Lk1eREnpq0HP9icuDZHLSEEaV44t7xsxKOUEOTcXkbB5l9VutiKIIQADgey59lplCTCzgZltodJl1QqdpsvrhPDZs4B8UFrGp3mBaazzKgPY7yGPlTFd1ASiUHJkk4ICJHDVl0kjLpWlwXvq3z2ugNfvaan65OSvCbr7dKl3w/AAJQs0iXn6VX6sSu9NGxjulbNs0m7bOWva1eTLv33/O9nb9dO3PIt62PSZaMrwzV0be/CdPUX5WnkeO5ka5/v05HdgLuTTcoLMzHtZCc72clOng95bicm2wporW82ssZqyvV12PDV6MzSVI7Frka014oNQEDgCt/WVMzmFgcuKFzD2RHYn9e6K+JVdTmvOfrRuivlZ1nHpuub0rWK/ict/3nTtZMtn5jk/u0czVaH7eq/o9BDxxK1lRJUp74NXdyuixLA5k6hBOi29IOgErVmBrYDxAHcaVLUymdMON+TEoqtd2KPQiljnmeWFjg9n5axbkR6wRiyvECWFRWacJEQAO3Yw2df3q98YIAESxDMUjPmk6g/sUb5LaM7WMVGSQQIZJ3NXkKVMpTnJexzxyLS/5a/c8ez1wMBquXof8s8q/Qj3SY9j6t/J2lhRD9eZNcy74p6ram9DGDDE+hy2fu0dK06hixqlyfVpV/biV1uDPwwGAzaAP43ALcBxAB+EsDbAH4e4jD9JwB+ZDgcJk169M6g72Xr6b2OCCl+OU6RZgzdlo9OK6i9bJzzGvy2dg0iei3jHEHgweeCFoYxwZPXbQtdnZaP8TTDaJoL5FUJ445DIM+ZCEWu2JlkBdK8QCv0EAYeLscpLkZzsEIY0IofrtPyK+ofORkxxnB2Oa2CBJ6XAfv2uhE+/nSEr9+/qtCFrcjHXteOnCPl//a6UUUXdPe4g/c+usD9szH2uxFuHbaq8qX4nmBtkBQ/jEm6HHHNxrsWlJBwSuaw7PEsL2HUHiglyBlQZKyCm0ehV/Lt1aOPUkpqUUcZn1NH2fqE2i8YF8EaVTiznOBC2kxXo/cxrumy9aOq/p4Jodf7q9q/84JhqsTnSjMieAktYBfdLl1XU7ssaq91dTXlWUbXqnkW6VrGrmV1rdIuTbr0D6ud2OUmUXn/LoB/MRwOf2owGLwG4O8D+CcAfmY4HP7SYDD4KQB/FsBfW6TIhXxRr6vieRSH/diahxBiPXgKAEUhIn5Ce9laoWdApAkRsGlB9FnX4/sUceRhmtTL4RwYTXNcnk2MstOM4WTfN9CDlBIkaY4Hjya1ia5gHB+fjvE7w1ND1zTJ0Y59KzVMFHnY70a1ugQ+xedfP8B+L7K2y0E/qvHXSbvi0E3Ws9812ysMPHBug9qLBUevHRpnSlw0Oh4RrOU2GiFXf7Eh52Rd6Bq6kqyw9kmPNgU0tPfJq7GJqCwYR5IV1nZeFT2nXrtpXTZZRtcq5bvK2nZdO1lObmxiGg6Hv6j8+QqAbwL4QQA/Vqb9MoC/iCUmpp3sZCc72cmLIzfuYxoMBr8J4G8D+HEAHWXr7gGAuzdVrm1JfxPStCh3rdj1Q6hPost2PqupDMC9x+3Kw/nm9sWbdjFcZbANPstN6tqkPMvNnaf1ruxkJ8vKjR+wHQ6H3z8YDL4I4BdQh2ER7e9GWWXZLMMIcACUFQY7dehT4UtSaG0AcRDW83zk+ZwNglJS0QPZpNsOwRjHNMmrPIFP0Wu3AQDn1zNcT7JKV68d4LAfYTzL8ehyhoIJoMXJQQu9TgjORagHORlkuWBwPjlsYzRJMZ4KH1McevjMS3vodUI8eDTGl945xTQpQAnBK7e7uHvSBSs4Ti+nmCUij+9RRIGPJOPwPVb5haTP59XbPcySHGeX04pmJgrF9tssFX4gbwGTCiEizpNNwsBDvxOCceBqnCIpOft8T7RxzjgYnz8v2a55weBREcJD9X3NaYhMbjrbHn+WM8wSXqM9atJFyJxXUfUlAZLKhlYUM7J4JzjEYZcUVz9q2i5d5Z1wXWN8Ho7D9q6somuRrKNrE3Xcdl2LpNMOrWz9upyc9NbSv41yY5REg8HguwE8HA6HH5V/fwUCBPEdw+FwOhgM/hiA/3w4HP57Lh1cMW7Rnra8JnmwVBQNIaTGiaXqyh2URJwLZJx09i9TfpYzUM2/ICfJq3FSc7zLMiZpjoPS56PysGVZgYtRWiNVlaCNTivAyUG7infDyvSvf3yBViQAFFQFTyQZxklh9Xt0Wn6NgUHadTlKwDgMxzslqDj9dIlDrxpI1fbyPIJOXKdkkoCDLCvgq1RRXBTKCoa0FiaAAyCIAg+RUobaLvJjRO8T1YdGqVv+Gwa08p3pz56DV4g9tS4F49XEo6cLhgmzfFXW7UdqHrVfL/NO2NI55yWy03xXPIrqA2AZXXq9nsQuW551del5n6VdFtuWnqV2lESblT8K4DUAPz4YDG4D6AL4VQA/DLF6+uHy70axfb25HJIqjZC8Lv/V+c0qXY5yPGoGNFtUfmDhRBOOdVILWCfvIQQ46sdWXRPly1lNb8U+bh20a9tulBBQj2CvGxsOdFpyGPkWKh0V6abbRSgBtbwOru0+SlALCqi2gy3OEqUEHifgeoye8oVPjdg14h7fEtOHkPl5LL18OQBL3eq/vmfy8Ym/OQjs/cWj9j4pm3eZ/rJOP7JNBMvosqHERDqUlWFdl0cdbezQ1fR7VbtseZ5E17bZZft7J6bcpI/prwO4NRgMfgPA3wPwnwL4CQA/WqYdAvjZjZe66gqQb7aj3HSn26T2dXVt42tFyAr7wjKPI0fTM1z32qryra5rG23aZl0vmtwkKm8K4D+0XPo3b6rMnexkJzt5keR5275bVraa+WEtcXylOL9edh81q8uqbfaU2nj3KJ8f2aEAd9IkWz0xySB8aieWv23p0mtku7/QqGTkNUrsurKCIcnqYTQ4F4gtwcRg5imYGTlV7D/XbVHtH08zIw/j3Ho4FpARaHNDF+McgUesdQl8zzJoC7DALC1qEGoJJCgKZthFICZ4G0KIccvzkoCUrDDsEv4NXgFV9HaRRegDWJ6buqpnT5antQFQ0f7Y8rjSXf3IVoZe/jJ2LaNLlXV1Adz4hqvelRXfO9u1Zexatl0W6XK1se2eVeqyyK51dNn+3okpWx2PSQ70nkeqGVRd+agPfx65VDjvxYQguNACxWFuyyMdlZwLF/p4kmE0FRDvOPRwvN+CRwlmaYFHJZTaowRHezFakQ/OUcGaAQFHj0uIeZIVFSxadYhmOcPFKC11JTjai9FpCV2Xo8Qa/twjgO97uBpnmCYF9johPI8gzQRdUS0ab9lgWTnBRCFFXohoo3ISzcvJN/Ao9rohPI8iSXK8/+Aa0yQHJQSH/RjdtgAvHPYj9Muw8JNZVgVSDHyKduQb0V0pJWjFQQW8UNt+pkQPpnTu8Bd/U4S0jGBbQucJERBvmy7bs5f9J8/ntEUynRCgFQVVmXZdACW8Kk+N1ApW8uwt6JO2a670uW1PR5do4zk6Ut6vR/y1leNKV9+jZeuyqI5P0i6ucp7l8xLgot3afpFsdQTbJCsq4/Tos1KyvLAG7gPE+Rid8w0Qqw5bltEkxXhWj+YqJfBpNZCqolPvSJkPkPVrBeN4dDmbD3KKdGJxZki/InnZ9JWKfBFMBBuch8RmaYFZkhvXOOe4HKWYJiZ56xc+c4SjcnJWJcsLpFlhbeNO7MPzzGc2maXIc26pI0FggaFzzuFTYtXlevbqhKZLO/YNtGWTrtIK2DYK1UHcyMHdvHurpD8NXZyLFbctoOI6drnkWdZxC3Ut3XBNcPHn2cfUBBff6q28JxECVxRY+4At010RcG2TEhru5xzWgRGAdVKS6bYrTV9ZtkkJcNexaRyxTUrAnPtNF3GY1N6FbBMJAOvE2ySE2CelReJqexsUel1d3yoidxZ2X/I72Rb5lp2YdrKTnexkJ8+nPBcTk9yuykrHtyoepQg8UlsXc86RZjmuJ6nYttOckqFvxgciAPY6Ie4etWv+DkKAg16El2910W0FtTyUEqS5YIBWy5ChKpKUGSuqVujhsy/vYb8b1tIF/YxvPQhbMI7UAsTIcztLepMEnqBF0uNG7XdDfM9bt/DSSae2qjroRdjrRlYHrvSp6elpJmJGXY9TI18rCtCO/VoZhAjqozDwoD4WzjmmSYbT82nJvj3XJUNEJKm59er7BL12aLSl8DXanc+2fiTSBduEvvomBCsHLXQ5w5vyPY+6dF/Ltti1jbp2Ypet9zHVnIylF9wW4A1A5cwvCg7VLyC50VyURITUt6okACLJChz0Y7EtSElFe3N2OYU8mKtuf3jlIU8xTsp2JaBEUP+0ogAgYgtMOp0fnI1BKa146+bgCLvPgxLhuLZNCsuJaBfOBfUNB8fxXkuwR1DBnpHnHB88uMK9ky4OehE8j9ZexqLgNYofeY1xEb5Dt7ffDSuyWbWOSSomdAkUkdcY55glhUAsKm1ACNBvB3Mgguy7hIBSIAr8GmsC58LOJBWhIyT7h9qnbP1fotJsFFJFwcqtRXf+JnGVv6wunW1gVV3L5PlW0aW21Sr5n8SuRbqkPWSFfVPVx/Q8+5R0eVaURE8sBvLF+GrVHbUoJyVA9S0yxmuTkvqvOvhAydlpB+giqKVTShAQCo9QMJhOzrrrSJmwPFoGfKvriqiHOPLBGDfscgnjAFt7UprbRYhYCegBBT1K4YXAH/rMcTX4qnap3IJQrjHGkGbmy8k4apxz6r865131m/GK+FYVzoFpWsw/IjS7A9+kV/LonFRWL9+GrBK6RDsZdoHD1+iCFumypbvQa8vokgPuojxNutTyzTqup8uW/qztkteW0SVl08/Llr6TxbL1W3muh7rSw14w6NvSXcAJQkiNKLQmzi+4Bgc6t+t6Gl2ZUhcpT2mD1S5HZRqeh8ux7nyGDbqaLbapWv3ZN92rr5KfRNem7Fq2rG3Ste57vU75m7Rrk89+J27Z+olpJzvZyU528mLJCzMxPZWvlA0W8bQ8f2uZvGqm3QfiTnaykxVkqycm63Yan8eQ0dF2TUHs8pJKpq5q7tDXdbmQN5wLVJ9d7OXneYOuwNSlOrZreRTE0yZAK+4zWLwMIWKhcKIEtnoSuHfgZkm+UhsTcFjAiQAA6V7T20X6vZqesSvdZZcurrZftx9t0q51dW3Srm0rX8+7LXZt4t39VpetBj8EPq1TwUD4RXwFXaU+ZI9S9DshZkleHTwlQBn5tI7IAgT6qmCCZ02lPQLqjk01T15wdNoBgqzAZJb//+2de7AlR3nYfz0z53XvrnaFVtiy7EQm2O3CUpmUYxMZESTASAZRJhBMeCZgwiMJMYXlxDEQgSL8wIUMEcSUy9gCbMug2BhV8TIIExBgY8eFTcXQIDviIcAWCO1q773nNdP5o7vPmTPTc973nrl3+1e1tXN7pr/++jHTM93f+b7RdkuzEbHVTsg07O4NRjrHkWC7kzBIs5EHhzznn9em109tYD5j+bXbM6buAFutJOc6x/ygVmvj1SKJx3p2miaA3jDV7HQHI70iMQ526Cz9TH0jTp1s02rE9PpDetaaztU1TTVZltq8OfdOjYhWM2avO5jol1Yzod0ylnZ7vbEZexyZl4KdvQGdVkL+97i+Nnb1byQRIs3IW8S3m8bVk9bW/56TY10a9YeZ/TFwuYx83Wb1cVWeVWTNW8Y68qyi1yqy1lH+vHrNK8v7greCXqvWcdoeZWBMrc3FsStaWutR5FCf5Yuvo43Zc0azUQ4GNxhmpVDcwCjKra+MofXbV0zv9VMaSTQRpntURqa90V597pW01vzdPWfY7Q1KniGaSUQSRyXzcSHg/ONN+/ufyRtnpztEIEoB+pJY0G7GbHcmrQTTLOOsxxIOoNNKrEukSVn9QcpwmBIVPDNkWrO7N/D211Y7KQVNBBNltj9MSx42XP82G/FE+W5MCEHJ+4QQlAIgFuXNm35QeY6SrCo2rVfNZM3dcMFcvKYIIUqRQ2cRRxFRw/924puUgKn7Or5lLyEErWZ54gPztbfIjSuEoD9Mve6KTNhu7V0ra3kmXiFMxFpfNROP6TpUWyEaef7ItaPfN3lk+X4oDNOXMXxun6raeJkxEQgcdj76mXtGx0dpkipS6z2mQCAQCJx7HImJybe5uNcb2rAS5bdw4zmiLMeFgihuYu52B3z7TLf0Rp9mJp6S29wv5tnrDktfZ93+kHu/vUdvMOlOSGvNhed3Sq6KBPCg81pccLJd+mqJgJ29QWUdix8tWmu6vQH3nemSFvJ0+0PO7g5GYSLy9Pop3d6gXMe9ATt71d7YS258MF4rfF9NQpglw+IHUBQJuyxXrstgmI5iPZXOeYxdZuGTk2aZCR2ygKxlyh2k2SjW1ET6MPUa7iyjw7LL9ovIyjJNf5hONazZhF6blLXsODqXqf0ek/8h5ncBIoRgMMw4fbY3sSTWacUc326WFnXNA6FsOSOEIBZmye+bp7sMBtloma/Tijm+1aTXT0cGAwCR9TCgNRNGES5PHAtOn+2PJjcBbHUSzj/eQmtylobQH6Z87d4dkjjiolPbxtOBADR863SXs7sD8+DPLWU1YmGX6Ip1NEtkgzSbmFiFgBPHmmy3G9x3pku3NzYm8Mkym7aw1TIuge4/2594+DjDhCImBEVGI4noFM5XbbJ3+0MGg4xWK6aZ24/KtJE1TLOS2ynTHuXlPp/BSf581TgyRjfG0MQtyc6S5avLtHJgHP8pv+xr/BgK88Kh9egH3bEYe233bcBXlb2oXsvIAht4kXFdBEz4nTxovZYtY516ZdrEBMu3izVIWmqPKc9hX8o7tHtMeUuWfJovHcxm/H1neiU5e72UY1uTrlwckXCb6JPp3UHKN+/vemWlWb/0NZBlcHbXHzZipzukX/xCAnb2hnRajZGfPPfwbzViLrnoPJxfvRHCOFt1D6z8zDFIjY+5WBRd6bg376JRAdz/QJ/7H+iX9B1YX3hOr3ye0zs9BsPyfdLrZ7RbrsxxniiCY51GpVHJWM/xuXYzod30yML4qvO5nUrTstspsHuDcVnWtHGUZtnEi407b9pkMVlV57S2cbRsP+YfiMYSUbuCRrXMVWWu8pfVa1oeX3qWZQzSsrskZ2UqxPyyVtFrXp2XkbWMXm4cFdslzTST7qADRWq/lOfb9PalA2Mfbh58bnHMm06FrIqYSTDFnKbiTXLaV2kc+/USxUnJyXLle85Vuf5ZZvnAN5FAZRVH6vjrMt0l0bx9LISoXCKqKp8FyxhR8Qbsq8s0WbPqWOzHaV9XVQNv0XZcNk9l+jRZnklpHvnrqEtVWetsl3nGUWXfByqp/cQUCAQCgXOLWi/lBQKBQGCSw763NA+1/2LyWbj40gFv+G+H22Auyqr6qq6IGD6dRZY/LGk63cWNr4iqhbmqJbtpv1GqYtaSWRFXtK8u+XX44rmqPFXpvt9TTSufBcsY4V3GnO2SyJdnWvnFJcO8EURZWEXyEnVcJk9l+jRZnvtuHvnrqEtVWetsl3nGUWXfByqp9cSU3xD2bTLm07XWNBsxF5xol6KzdlrxaHm+KCuJo/H1uXONJObUyY4xVXb6YDbyLzy/Q6c96b0gjgQPOq/FyWPN0jNtu51w6mS7ZKHUbsajyTSvV2bjETlT7Py5wcB5s5gso9U0sZ2K8lysp2LZAji21eDCk21aBX99rUZkLAlHk8D4Ruq0E45tla3/tjoJzZyJeL78s3sD9nL+8ty/4n7NrD4GE/DRxXHK16XdiifiMbnri94i5hlHo9hOuXww+eLjk+X2h+YpB4xHjyia1FcIYd1NRa6gcV1ybT5vGcvoVdUuVbKEEKW+N/qK0TiZV9Yqei3aLvstqxgjzDeOAn5qby4+OtDVLkCgbCnT7ad0e0OOb5dDbPtkaa2tHzrtldXrp5x/vEWzMX4oDtOMB3YHNJPIhgsfD8AzO33STNNpJxNfLN3+kN3ugONbzZJrnv7AuOQpRoFtNc1N3+2n5LsrzTJr9dac0EtrzW53aCzYcqJGN0wsOL7dmrhBev2UnW6f7c442qzLMximCARJ4SbrWX2ObzUmXDKZ0PJD428vp7AAtjoNr6uiqn6pSjdRbocIYaz48nqlaUaG3y3RouMo085Csfy7rEVkzarLMM2IGJuDu2vdb9SSFeuyjF7LyMoyzTDLSKKy+f4m9dqkrIpxNPfsVDQXPypLeYfWXHxefFYvnVZCu8JdUJWMOBIll0BO1ontZklWEkf2C6lc/nanMQrbnqfdTLxuhMCYovuW0Hr9snk4GLdLJ4/7yzfhz8t1bDVitjpJKU+rGdNstL2yGonfJdBWO/E+MKNIeN0LaYxpcRKvPuwi2y8+vZIkrnxwTMMnKxaCSCwma6plnYdICO8k6tp+HXVZRq9lZEWRoBmVfSFuWq9Nylp2HJ3L1HopLxAIBALnHodiYtL2M3iRt5c00/Q97mqmIVjMUMDp5TM6MMto8+ustSYW1cYFPqqudUsHPqqNBxZvY+PVwd/GxoO6T+fwxhgIBKZT66U894B1y2vGy/Z4vd09EPPrutruPbh4TL1+Sie35OTL4/6ObNgLbcvUMOGGJr+k4vzqFfXSGna7g9GPfVNh4iE5ufm6ufLTLGMwyIhjQRybZTjnKmliUym3nNdqRHTaSUnWYJixu2fjMbm8wrkTSmg0JuuitXGZ4vQdYjZn3X5SVRsPhimZXa3r9lO22g1bf3Ndu5XQhlFfRJFgq5VMtEO+7auOfe2V/7sqvShrnjxV+wPLyJpVl1VkLVOXefValyxH3fTaxDhaZjnwXKfWE5PzvZUnyzRDoXFGZhOb3lnGzu5gIo/G+K7b7jRKYRKcMYAjf66RCG+61s5B6KRe5gutHEtJa2PU4CzJirL6/eEozpI7F8egyQVIdHm0RqA5fqxFJMqydnYHowl5lE8b10LHthql9sqysqGFq4tINXHB/Y4zLDD7Rxq3f6u1cSZ7fMtYJOb1arcSWs3xjZ2XVbxhfTfyPP01rR9XkSVE2WqwrnpVTarL6LWMrGL/bqJdinny8uqkV3GiC5Sp9cSU+TpQiNJD2SQLUs9E5vA533Rv/z5Z4B9AJk9ZvhDV7nIiz007ylMhy5QhJm13hCCKhQ1jXpblMzhACK+BQlU9Rjp7LOfGX1DjSWlcR0qTksuT/7+YXt3Gi6Xvh6wiVQ+TOui16fYqHh90+dMe9nXTK0xKszkUe0zrIHxOr5HQlIFAYB/Z1y8mKeXrgEfZcn4J+HPgHRgnyV8HnqOUKrsDDwQCgcA5y759MUkprwIuVUpdDlwDvAG4AXizUupRwN3A86fJGC8dlVnoC6iwKTmPrFnXes+LcVnzyJr3/OTF4y0nX/l+WVXWdovrpSsUWKaOy/bt2vprCVm+vbFN6zVvWXWSdRB9P4tNjqPAdPZzKe9jwNPs8beBbeBK4Hab9h7gcdMEFH90OBoc2XiQ5P9lmQ2sVnh4RNF4/yc/wLQ2lnVpwe2P1iYC7hkbDC+byENZn1E+RgHBJjeRmbjOHadpRn+Y2bg12l0EGHdFzUZ5AnCWe/lrs8zVwyNLa7q9dBRlN1++EGVXRb66TdSx0FYjhBh5zvC1cZaV0/MRg4vluZeSYp7i5nJRjypZvroU8/gmnXXJWpdeVXnmlbVoG88ry5deB73qMI584yownX1bylNKpcCO/fMFwPuAq3NLd98ALpomI4oETRGRZuYhFkfljXw3cez1bIhvMQ6sJoT1aFDwXOAeiqP4Tdr4dHOmzKfP9kcWcd3BHsc7DTrthGHOxU5+kKaZHoUkn9gMBhqNuOSvLcuMvs4iLk0hijStRkwUj/1rNYF2S4/Mv08cG7se0pF5qA/SjLO7A3a74yCFkZ1w8rp0+xn9QZ/trUnrxDg2JvIuKmwcl9vY6Tzw1BFMlFLnkqg/zIgjE9Y938aZ1gitRyb1+XDw/WFmwt0X22+O42msmj9/7Tpk1UWvRdv4XJA1jXX2/TL5treaRDmv0hdeeHypcg8T+26VJ6X8SeCngccDX8idEsxaS8J0YhIL4shvddPrDydNpC1RZNwC+X4w67teA2f3BnR7hUiz2qRHnoB+pvy0lAZ4H/BO3umz5aixWWYdyha+YOJIcOJYqxRNVghBHEXcc+9OURSZHkeznUyHXi9lq1MOcd5IYpLY38bmh8rlOkZReQKE8W+8fHXvD1JvGWmmiSqiTeffcOdJXybPOmVtuvxNy6pi03rVVdYsdnYnnxf33vvAwjLqyLQJdl+t8qSUVwOvAH5CKXUa2JFSduzpizEGEIFAIBCYwZUPv/jIOHCdxX4aP5wAfhW4Vil1n03+MPBUe/xU4APrKGvRl5BK2wExGVpgHpaJdVQMy+FYdC1aa10pq0otQXX9q+qyzIrFonm0DpvCgUDAsB5oYqkAABIsSURBVJ9LeU8HTgHvklK6tH8D/KaU8kXAl4C3zSMov9lY3PsYub7pj/dskjgynqcr8rgN/2GajX7gGgk4b6sJW3B2d8CO3bNJYsFWp+EtP4kEza0GWsNebzjaN2kmEe2Wadr8PosQ0GrEtJsxg2HG6bP90blGIsy1/ZSGjdMjhLCujkSpfBNeQHPqZMfK6jFMTeDDTsvERgIYDDKcA4lOM+b4sSbCo1cSGd92bv/HTRFxJDjWaQKmjm6fKRKM2jGvl8C5jLKysrGXDLP3VG57xyDViCydMHqZ1vf5/6vOLZq+LlnLll9XWfl2mUdW/vpVZR22vp8mKzAftY7HpHPK+QZyMV1rs7+Sj/fjq1/+XKZ1yTNDpo2FX69v/NcVZTkjjKKsNNV2Qinr68oppj+w2x9ZDOYHchwJttqNkiytzYTkvjCEGJvU73WHoy+VfB4h7H5bJErB3Ir1r0of1zEzE4injkkcjWI8TcjKxpFni20/tO6divo2cu0+T9/Pk75onlkPlqOilzu3iqx8/lVlrUuvYt5N9Vc+Pafb3GsKLh7TUVvGO9TxmIr95wabL10IEHoyz7T+F6JsCQZmSUuLiCTWE2tS7roqFz9x7NcXqLQ409qvYyMpB1ozdS+/kY3K8KxDCmFiMBWD883Sy9cuwsxGiEJcGXdcWUZU0Y92gvXlEaLaJVJVGxfPVaXPK8uX7qMOei0ra1G98tfNc7yMrEX1mpaneJwv/6D6q+pcoJrgkugcIdwMgXWwrnEUxmNgGufMxBQIBAKBw0GYmJjyNbXEW906v8zqKmud77rrknVQbbXsuXXqcBRk1VGnOss6avtLs6j9xOQ2/Kcdu78XyeOO05whQT6/QI9Mx4vWNnkXRvk8WYWsTOtSHnfctnGairjIsOU6mn8+WZEotwvAIE0nXRUt2Eb5PL6QIxSun1eWYLJd88fZgrKqjpep42TVls+/avlVsubRaz/b5bDIWkTufus1bYwFytTa+CG/geg6s2jdUuzkefNoPTZlTtETkWoBoigiiswDcmQiHYmSKbPWGg0j6zIwFmsNK2vCLU+mbRljvVrNhGYjnjDFbjQi4ihikDq9jE5jE2tj6OHKL7oLyreJkzVMNZHQE3Wsastp6UIImtFkBN+o4CpqHlmjuggx8dVUdDs1b98Xzy1bx+K5vLxVZc3bxvuhV/76VfWqkuXGXl30yp/f9Dhy53xGPYEytZ6YHNMsX3zps/L0BmU3Qplm5I8vnycSgmZiQobn/VVNk6U1I4emE4MTGKQZzYIbHyGMaXi3Pxz9PdZL0x/qynr6XCIJYd04Ff0KahimuuTeyOVZpI3jSBCJ6napktUfpJV+qBqxWEjWMn1/ELKAtZS/TlnLlr+MLB910KsOsgLzcSgmpk1zUG846yznIN7M1qtvsNQKBAKG2u8xBQKBQODc4lBMTPkNxmnn58mjtaaZRCSlH68y8lqQJ8s0O3t9zuz02esNSpuYzSQq+asTwvxAttWIS773XBmVevlkxX5ZSSw4b7tJqzFpQNGwLpka8eT+jcBfx7w+62rjqjyNJDL7dAW9kijy5jkovdYpa5b8oy6ruNcyK9+m++sgZQXmo/ZLeflNRt+AL67DFzcf85uOeVlRBE0bhygSYuSbzsnSWtMfpPQGubhBg4zBsM9WKxnFHxLCeI9oJn5ZSRxZF0d6wo1RpV5WljOYyLv4MbGMjDFFXlazGdNsxPQGQ5pJPFF+o0KW70aZ1sZVD5tpdanuL+OvsEqvRWStV6/Zm/rLyqqDXvlzq+pVlLWJ/pq3jpseR75zYdl6OrWemIodWOx037mq4ypZRZ937ngwzCYmpbFOlIwKZsmKoBTPaZZeznjOX07ZQAMB7WYycd0sWdPasXhuVtvnb955ZU3Ta1FZs+qyyDiqmgRWkXXY9Koq4yBkbaLv93McFSehMCnN5lAs5flYZ+f6ZC0r3i9rOWHLyKo6vy5Zi8ivg6xZLCpr0XMH2ffrlHUUxtEs6iorcIgnpkAgEAgcTc6ZiSm8vQQCgcDhoPYTU3ET0f1d3HisOs5fu4gsEzvJr9PQ/njWV+aschapiy/9oGT52qwqz7J61V1WkWXG0X70l0+vZWVtakweRN/7jjetl+/vQJlaGz8UNxd96b5zxfT819I8slx02GYjZjjMJiK9brUaJLnIrb5y8ulClK39qvSaJWue9OK5vEskE0G2XPdiuzh3QYJy6PZ5y1+0jvn/F+2vZfRaR13WqdcqdTmIcTRPnioDjU3VsXiuKn2/x1HV8yBQTa0nJocb8D7rlqp0YOE8wzQjzTJgfKM1GjGJNl9QDY8roVnlr0MvX55ZsvrDlOKLmXNY63NJBOVw5xoT7jyJGJnHr1qXaXUsHq8iax16rbP8dfZ93fXysck61klWYD5qv5R30PjGjvBMSnVnmXsgC/dNIBCoASLM4oFAIBCoE+GLKRAIBAK1IkxMgUAgEKgVYWIKBAKBQK0IE1MgEAgEakWYmAKBQCBQK8LEFAgEAoFaESamQCAQCNSKQ+H5YR6klK8DHoWp0y8ppf5wwyohpXwW8J+BIfAqpdT7NqTHpcB7gF9TSr1JSvkDwG9gnDt8AXiJUmp4gPr8sNXnLpv0WaXUS+25q4EPKKUO7NfMxfbJpY90sTq/PpftYcCTlVKf3CedOsD/BW4A7gDeAcTA14HnKKV6UsqnAz8LZMAdSqlX7IMexbHzPRW6vAh4AdAHblJK/YHNfx3wbGCAGWd/sQadJu514G/wjGcp5Y3AVZgX8HcrpV4npTwB/B5wAjgLPFMpdd+K+hwD3g48CGgCrwE+BLwWeIFS6sLctT8HPM3q+hql1PuklOdh2vSk1fWFSqnPraLTYedIfDFJKa8CLlVKXQ5cA7xhwyohpbwAuB64ArgWePKG9NgGbsY83By/gpm8Hw18GfipA1brGPC/lFJX2n9uUmoD/xXzwDsQKtqnpItS6v84fTF9+XngT/dRtVcC37LHNwBvVko9CrgbeL6UcgvTj48FLgceJ6V82DoVqGgbny4PBq7DTBaPBX5WStmRUv4g8K+Bfwa8CHjSGnTy3eul8Wwn1McopR4JPBJ4npTyO4GXAR9VSl0B3A78l1V1Av4toOzY+FfAG4GfB76C829mdP9eTHu4Z8IbpZQx5uXiE1b/X8ZMbOc0R2JiAj6GeQsB+DawbTt8kzwO+LBS6gGl1NeVUi/ckB494AnA13Jp3wd82h5/EHj8Aet0vCL9F4A3Y966Dwpf+8zS5TrMF0Q5xPEasF+0DwPea5OuxDxEwXy9PE4ptQtcZseXxkxiF6xZFV/blHQBLgE+r5TqKqW6wGeAR2Aevu9SSg2VUn+plLp+DTqV7nXg+ymP59NAW0rZAtqYr8pdzMT57oL+q/JNxm1/vv37ZqXU/yxcdxXwfqVUXyl1L2Zifxjmq8+9TN/L+vvx0HEkJialVKqU2rF/vgB4n1Iq3aROmJtVSCnfKaX8uJTysZtQwj4U9grJnwWeaI+vBr7jYLXiGHCFlPL9UsqPSSmvklJ+P/BDSqnbDlIRX/tM08UusV2NeajtF68HXp77e1sp1bPH3wAuAlBKPWB1uhQz3tb6BVcxdny63AVcJqU8ZZe1fgwzpi4BLpRSvltKeYeU8ofWoFPpXgf+msJ4Vkp9BbgN+JL99xal1BngOzEP/7z+q+r0+8A/klLehZk4r3N9UyBf9qh8O6G7F6CfwSw1ntMciYnJIaX8SeCngf+4aV0wn/DfDTwL86n/21LKuniBvQ6z3PERzBg4aL3+CrhBKfUTmIfL2zDLHy+fmuvg+DWqdXky8N59/Fp6LvAppdT/yyXnHVqK/N9Syu8DbsXslQz2Q6cCJV3sHs3PYb6k3obZGxP23zbwFMyy9m+uS4nCvV4az1LKhwD/EngI8FDgxXbJMT/WJ9pyBV2eDXxZKfVQ4DGY5U8fxfus2Je/AvSUUm9dVafDzlEyfrgaeAVwjVLq9Kb1Af4e+KQ1KvhbKeUDwIXAP2xWLbBvk9fCqN1WfmtcsPzPAZ+zx1+QUvYwyy+/K6UEuEhK+b/tmvuBIqW8GPiBKbpcC/z6PqrwROAhUsprMS82PWBHStmxXy8XY/e9pJTfDfwRxgDhM/uoUx6vLvbr8jar162YZaq/xyzxaeBOKeUl61DAc6+fpjyefwT4M7vkiZTyr4FLgXswXy6n8/qvyCMxS4gopf5KSnmxlDLxGBTdA8jc3/m+vAF4MGayPec5EhOTtbT5Vcza+0oWNmvkj4Fb7FvQgzDLV9/crEoGKeVrgE8rpd4LPA9jEXSQ5T8fOKaU+h92Q7oJdNxyhpTy7k1MSgBKqXuAf5LTtajLjwAv3sfyn54r+9WYB/yPAU8Ffsf+/wF7yVsxFmh/uV/6ePhwURcpZWLTr8FYlj0ccNZ3LwFutftmX1m1cN+9XjGevwG8TEoZYSwILwP+DnNfPg24kcm2XIW7MHtqfyCl/MfA2Qor148AL5dSXg+cwkxMfyOlvAL4UeAJ+/Ulftg4EmEvpJQvBF6NMRV1PFcp9eXNaGSwJrTPALaAG5VSt8/Ish86ODPnSzAmu/dgLJFuxmzs/4lS6lUHrNP5wO9iJusW1mw2d/5updQlB6SLr32eknvoTegipfwHpdSDD0i3V2Mmpg9izJHbmP2S5wHfizEy+HQuy03rHGMVbfMs4Ja8LkqpgZTyP2CWZXcxeyyfytXh0fb6l7v0FXTy3evXYyarifFsJ6wfxyyZvVMp9Qa7B/Y7GAOD+4Fnr7rCYmX+FmZfLQFehVlGvAzzNfUJ4Hal1E1Sypdi2lADr1RK3SGl/D3MZO5WU+5TSj1lFZ0OO0diYgoEAoHA0eFIGT8EAoFA4PATJqZAIBAI1IowMQUCgUCgVoSJKRAIBAK1IkxMgUAgEKgVYWIKHGqklN8lpXzMHNc92/7/cCll1S/z14qU8m4p5UOXzNuUUr5BSqnt74QCgXOGMDEFDjtXYdzAVGK9ObwYQCn1GefNvObchPEBFwicc4Q3scDakVJeiXH7/1XgBzE/zrzGuYfxXH8W80v8J2G8QPwi8O8w7lteopT6YynlRzE/Uv6wdW1zJybMwmsxvtHuw/xo9x2YcX0CeKNS6u0Yp5iXSSnfjvkh5I1KqSuss9a3YF7QEuDnlVJ3SilvwXjUvgzjufqtNpbPVZiwBLuYH4z+J6XUn8/RHjHGe/QPY35Y+RGl1Kus78Q3YcJWfA34IrCjlHol8AtKqTNSyrcWZN1t6/MIjPeAlyml/mSWDoHAYSJ8MQX2i8sxD9fLgRTj9bmKbeAvbOycHeBJSqknAP8d49LGi3V0egvwDqXUTcB3AW9SSj0G4zvtJnvp9ZhghM8tiLgZ+HUbR+clGO8KjocopZ6E8eHnAvC9DONd4SqMY955fQz+FMZTwyOBfwE8Xkr5aEwIhh/FuDl6OmMP2VhP2FV8Syn1WIyj2ddPuS4QOJSEiSmwX3xOKeVcrHwJ4y9wGnfa/78KfDJ3fHKBMr8GPENKeSfw+8yOa/MITKRRlFKfBc6TUp6y5z5q079k02PMl8prpZSvx4RWmNf9zyMwsbm0Dcfyccxk9HDgY7lQDh+cU5677hOYeD6BwJEiTEyB/aLoxHJWaI1hxbHLl/ed1ayQcSPwRWWikz6x4po8RX9c+TAEJf2VUu/ERGP9M+C/SSl/cY4yfLhyooIO88YQc/ftWsI2BAJ1I0xMgcPCGeB77HHe2CEDOvb4O4C/tcfPBDIbwTR/TZ4/xS4xSin/KWaJ7Fue67DXvAaIlVLvwgR0u3xO3T8F/LiUUlgLu0fbsj8P/HObvsX05c48rv5XEAwkAkeQYPwQOCy8CXiLlPKZTIYq+DjwTinlrr3mZmsa/lvAHZjltxcCF0gpP4QxlnC81Mp8MdAAnjNDhy8CH5JS3o95qZs3VPhtmNAVd2JCMPyRUuoTdpJ6BiZExJcxS5hDACnlHzJe/rxDSvlVpdSz7N8XSynfi4nX9O/n1CEQODQE7+KBwIawsYWeDLxdKaWllLcDtyqlbp2S525MLKK7DkbLQODgCV9MgX1HStkB3l9x+peVUusI1rYRpJTvwZimF7lFKXXLjOwPYCz1fkZKuYeJMXTbejUMBA4f4YspEAgEArUiGD8EAoFAoFaEiSkQCAQCtSJMTIFAIBCoFWFiCgQCgUCtCBNTIBAIBGrF/wc8BFfgZgkuoAAAAABJRU5ErkJggg==\n",
+ "image/png": "iVBORw0KGgoAAAANSUhEUgAAAaYAAAGoCAYAAAANe0FzAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADl0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uIDIuMS4xLCBodHRwOi8vbWF0cGxvdGxpYi5vcmcvAOZPmwAAIABJREFUeJzsvXmUZEd5J/qLuEvutXb1KqmllkSBkIQQfux+CORtvKCDwcZgY3HGMBbvCCRvINlaEDDDMja2BbIZ3sFihM1jDphhmRnAYLAxssQiLEAySrSr1a3uqq4lK9e7Rbw/4sbNu8TNyqyuqs5Sx+8cUPV3b8Ye8d2I74vfRzjn0NDQ0NDQGBfQU10ADQ0NDQ2NOLRi0tDQ0NAYK2jFpKGhoaExVtCKSUNDQ0NjrKAVk4aGhobGWME81QUYBN8P+MpK51QXY6wwPV2GbpMkdJskodsji3Frk7m5GjnVZRhnjPWOyTSNU12EsYNukyx0mySh2yML3SY7C2OtmDQ0NDQ0Tj+M9VGexumHf7r3iFJ+2SUHtrkkGhoapwpaMWnsCGiFpaFx+kAf5WloaGhojBW0YtLQ0NDQGCtoxaShoaGhMVbQNiaNHY1/uvcIatUimq3e0L/RdikNjfGGVkwaJ42NOCbk/WY7oB0pNDTGG/ooT0NDQ0NjrKAVk4aGhobGWEEf5WlsGU7lcZ2GhsbOhVZMGhohtO1JQ2M8oI/yNDQ0NDTGCloxaWhoaGiMFbRi0tDQ0NAYK2jFpKGhoaExVtDODxoa60A7RWhobC/0jklDQ0NDY6ygFZOGhoaGxlhBKyYNDQ0NjbGCVkwaGhoaGmMFrZg0NDQ0NMYK2itPQ2ODGMQFqD32NDQ2Dr1j0tDQ0NAYK2jFpKGhoaExVtCKSUNDQ0NjrKAVk4aGhobGWEErJg0NDQ2NsYL2yjuNMWqEWe1ppqGhsR3QiklDYwugiV81NDYOrZg0hsaoOywNDQ2NjUArJg2NbYTeSWlorA/t/KChoaGhMVbQiklDQ0NDY6ygj/I0NMYA+ohPQ6MPrZieJtAL29MTmihW43SEVkxPc2hPOg0NjZ0GbWPS0NDQ0BgraMWkoaGhoTFW0IpJQ0NDQ2OsoG1MGho7FHn2w1/72Wduc0k0NDYXWjFpaDzN8OW7HkOz1cvItRefxk6BPsrT0NDQ0BgraMWkoaGhoTFW0IpJQ0NDQ2OsoG1MGhqnCXRgSI2dAq2YxhR5i0itWlQatjU0NhuaDknjVEErpm2A5rHTeLpBj2mNrYRWTKcQmsdO4+kGfVyosRnQimkToRWNhoaGxslDK6YNQCsgDY3NgbZjaahw2igmfSauobGz8HSYs5o2amMYa8WUR60C7KzBqaGhsXnYyImF9mbdWSCc81NdBg0NDQ0NjQia+UFDQ0NDY6ygFZOGhoaGxlhBKyYNDQ0NjbGCVkwaGhoaGmMFrZg0NDQ0NMYKWjFpaGhoaIwVtuwe0/z8PAXwEQAXAnABXAWgDeATAAwATwF4Q71ed7aqDBoaGhoaOw9buWO6AsBkvV5/MYDfAfCnAN4F4LZ6vf7TAB4D8B+3MH8NDQ0NjR2IrVRM5wP4DgDU6/WHARwEcBmAL4TPPw/gZ7Ywfw0NDQ2NHYitpCT6EYDfm5+f/wsA5wE4BKAcO7o7BmDfOmloWopTAM8LELBs0xuUwDQpCCFDpcMYh+sFymcF2xg6HQB4+MgqVCQlPSdQDpKCRUHp8OnPThQxPVHMyE+sdnFsqZPJY6Ji48zd1aHz8AOGheWusqz7d5VHaos8OK6vbCPLpDCM7DdoXj9vFhjn6Lnq/p+uFZR17jn+SHnYFgWlw39fj1pnSgmsEcb8CBg6wf9z5yM8XcdfeNHZm12eU4HcNtgyxVSv1780Pz//EgDfBPBDAD8GcFGqUCc9KzjnykGzWfJTmfeocsYYCCGZZyOnv4FuUaWVR3fFOUfAOEwj+37AGAyaXQhMSuAFamXpKxYamtOXBiVgnGcWcA6xkKZ/RwhgGAS+Iu+AMVBqKOunate8suZh5LE6YrcN6ufR5wmHap2hRLT3sCAESuWal34eNjK2R10DtmONAYB2x83IFhebI6czbpibq+U+21IS13q9foP8e35+/mEAR+bn50v1er0L4ACEA8S6iC9w8Y6V8nSHn4w8nkd6YVXJNzPvYeSqfDkXOxNZLMuiMMIvrI3U2TLFYuv5DCxcSGm4Wxq2rAFj8HyWST8Id1FdN4BpEFRKtliwA4ZW1wNjHAYlqJYsGAYF4xyeF2D3dBl+wLDcdOD5DIQA5aIFu0YRMI6VpgPXE/LJio1y0QTnQLvnRe/PTBQxWS2Ac+DEagfNjgcAKNoGOOdYbToo2QaKBROEEHDOMTNRxHStiMXVLhZXu+AcKBUMVIommh0PBStAuWhlxka6jQxKsHumhJ4boNFyETAOy6CYqtmbNl5sO9tvhkFAKRm6n/PGNiWAZYn3/YAhCPrjwgrHRRBw+AEL8wGKlolSQaTf6XlgXLRDpWjl18ESfSHGjpBbJg3rAHh+f5ybBon66WTHtqyD77NoR0UJIvlWz2eNJLbSK+85AK6p1+v/cX5+/hcAfB/ACoBXA/jb8L9fXi+d+ODinCuVRZ48/vtR5CpFuN3yvLrJHZGUy0UiPuA9j4FRHimSjdbZMmm0CBAyXB1YpJCSdWCMwfUZ4hsGP+BotBwYFAjXMwBCeTXaLorhMY2sm2lQzE2V0O350cezkBPMThbh+QyWQaOyEgJUS0JpTFZsEELEjogAc1Nl1MoBOj0vUbeuG8D1GSYqdqy9gbmpEqZqBTRaDigl0c7K8Rhcz8FExQalZN02KtoGCjMleF4AyzJAcvo5r/+H6U/LpInd3zD9zBiH5wfK9+Wxq5SbBoVp9BdZKTcMwDAMMMYTbWGZFJPVAvyAwTT6Y3JQ3Wyrn068H2zLyK1bXhvF58Z6Y9s0KQwA4MOP+Y3MZ62cBmOrbUx0fn7+LgCrAK6EcBO/Y35+/ncBPA7gv6+XSLwD450+jFw+2yz5KHlvl1x+uabLaxjZ47CN1JmQ0cqkOiYT6QN5p1hxpZT+Xfq/BABR2HUoIbAVtgBC+ruvxPuUgHGmtBFZKYUu34fPo4U1DtOgiYU4/ltVGxGIBXYrxzZFdkys1/+cZ+ebEdZLVaa8vylVy83UmMxbnPPSOZm6qcqqyl72D8fWzluNwdhKGxMD8EbFo5/dqjw1diZO2RfkJtr9efiFrTE69A5CIw3N/KChoaGhMVZ42imm9LnuZsq3Mu1B8vWg/l32jHsj+Y9c1lxxXt029rWsyp+Ic8eh389z8hq1G8QX/5B5DpAPk89WycXR1fbmOQy2Mh+VHWgz89xonTV2gGKKD5644TBPLv+d/u1G5fH/5ZUpT84Yh+8HyvdVdciTx+uczittq5DvBCkvq43W2XED9Bx/6LbgnAOK90yDolwwM7qAEopSwUwsilHeXgDG+ukwJpw91touvKDvVSVh0LT9STx3XB9BwBLlZJxHXmTpuvVcX1ln8fts3RiXXpHJsvbcAEuNLgLWLytjHK7PcGK1Cz9IesOpxjZjYhx1ej4CxiPXa/mO5wehXS87HlX97Pssaovs/7L9HzDxm2HH/CC5amyzMP14P5+q+bze2BYOIqO1Rd581hiMLXUX3wykOzZuCM+TA8jIJTZTHp88EnKC+T6LFpHADWCaJHM/ZzPqRoi4rConjWEQWKZaWQ1bN7GQAp2eFyk4x2fCiYBm70ll6hwakKVikO6+hBAUbAOdngfXZyjaBoq2cM0uhnLHk+7GBIwDPS+AQYURfq3tYrnpgHOg2fFQKhiYmSjCoH3HB7mYChdxgkKouP2AI2ABDIPC9xlWQ5dtAPAJh23RyEMOEN55js9QKYrytXte6GjSN5oLJwbhms854LhBVM8TjS7aXeGO3mi7mJkoola2sdTooRneS1lru5iqFTATXuxN979Qbn50SdXxAlgmRaVogTEW3a1ijCVcntN9yjgHlwom6uMAlmmAQyqe/LkTMI7ADcJ+HH4u5I1hxkQfx122AxYk6rDeXIjnMaw8zxFiUDrxtpPz2XED4b03oC1GqYNGFmOvmIDB3juqCTHM74aVr5d3GuIrNutmFgQcCoeudb2JhikrISS6r7IZde45fqQgJBgTu6dyMTtk8upMCFF6n1VKNso8661ULlpwPEehKDkOH29lDgO7TgDLoJkF2TSIUoFyDiyv9eD56V2F6J94OrLOzY6n7Ie4MkyWyceJ1STDA+fAUqOHpUYvmS+A1aaDmYmisv9Xmsn3AbGY91w/cxGYhbspQ8GC4MXuuMXL5Lh+Jt96/QH85/e8GyDAM86fxw033hQ9CxjHysoyrrvuOjiOA8/zcP311+PCCy/ElVdeGaW1sLCAV73qVbjqqqtyx7ajYISQSmqYueA4Dm688UY89NBD+OxnP5tJS/7uJz/5CV71qlfhK1/5Cs444wxl+vE8AODuu+/GBz/4QVBKcfbZ5+Cmm98JSg387//9v/Dx2z8GwzBx9dVvxeWXvxxve9vbsLKyAgBYXV3FJZdcgne9610jz2eNJHaEYtLQ0NgefOAD78Pb33Ednv3sC/H2P/oDfOtf/gUv/emfjp5/4QtfwBVXXIFf+ZVfwXe+8x385V/+Jf7mb/4Gn/jEJ6JF901vehOuuOKKLS7nB3DBBRfgoYceyn2Hc473v//9OHjw4Ehp33TTTbjjjjuwd+9evPWtb8Odd34LF130HHzkI3+FT33q0+h0Ovjrv7oNl1/+ctx6663R766//nr82q/92obrpNGHVkxbgFFpWEaBPKpSHSOMCsaEwTt9l4cSseNQcYoxxmEY2XxVdWbhTmoUrjHLpMrdV61sCWaIVJE6PR/VkqnkglMhr1/EbjPr+EAIQEAGepZ//vP/E3feeSfarRaOHTuGV73mdbjsZ38J9/3w33DHx/4ahmlibm4PrvmjPwEAfPD978KJxQX0el381pVvxqFX/xLe8IY34PzzzwcAvOY1r8Ett9wCapiwLAvv/i8fACEE777lRrSaTTAW4Lp3/DGedcEF+OVf+gW8/OWX4957/w2TkxP46Ec/ittuuw2HDx/Gk08+iU984hOgRNwh++hH/xvuvvuuRNn/5IYbcOjQeQAAz3Nx9MgRXHjhReCc47KXvwJ3f/uuSDFxznHllW+M2vqpp57Cnj17Eun967/+K84++2zs27cPCwsLuPXWD+Hd707uIF7xilfgla+8At/+9rdh2zb+9M/+HBMTE9Hzd7/73fjJT36SSPfWW2/F9PR09O/f+73fw+rqKr7whS8gD3//93+PF73oRfjnf/7nSPYP//APuP3222GaJi688EJcd911md999rOfRbVaBQDMzEyj0Wjg7rvvwgtf8EJUKhVUKhW88523JH7zyCOPoNls4uKLL9Y2pE3AjlBM8Y5W2U7SZ7ebLU/nnTZ4xuWUkvDyZv/sPn52rjLqpuXpMvXP+hm88IjNh6CbkZcWR6kb50kKI0oR2aU45ygWTBQLwqbRdQQxqGUQUCKOkvyARUd0qjpLe5fghRO2g2rJgmnQgXUGBFMD530qIdOgqJRMTFULYJzjqRNtrLb63GELq10sNoDZiQKmqoXctggYR6vrIQgARGpGKKNK0YQtKWkCFnHyWWH7irYPDd8QVDiWkaR8evihh/Cp//FpNJtN/PqvvRqvefWv4qO3fRD/+b9+GFNTU/ibj34Yd/3L13HpT70Ql/7UC3D5z/0SGsvH8Z6br8NvvPqXwDnH+eefj9e97nV4z3veg9e97nW44oorcNddd2NtdRlf/vKXcfHFz8H/c9Xv4v7778P73/9+3P7xO/Dkk0/ila98Ja6//h34jd/4DTzwwAMAAM/z8MlPfjLsH1Hbq95yFd78n34XQMhwEH6QBIGwV62srKJWm4jqNDs7ixOLi4l6ej7DsePH8ba3Xo12u42Pf/zjifa+4447cP3118PzA0xMzuCGG2+G4wawLSPxAXT++efhmmuvwXvf+1588Qufxxve8NswLVHQG264Yd15Xq1WoyM01ZhfWVnB5z73Odx+++2RYmq1WvjIRz6CT33qU7BtG9deey3uueceXHrppYm8pFI6fvw47rrrLlxzzTX49Kc/Dc6BP/qjP8CJxQW89a1vxYte9KJoDN9xxx34zd/8TeW8TddBH+etj7FXTHkdDGSVlOrZqZJTiNv9w76/Xt08L8jsFoKAg4DDMIYvq+cHGQojFnB4nMGykobngmXAMmjEEB69H/LdyfrF62waFGuOm9h5MMaFob9aEDuQdepMiFBQknqmnz7BgbkqGG9hre3G0gCWGsIpYrpWyNS56/joOHGbBgHAYZkEtZKVeF/S7aTLZFDAsPP6E3je834KpmliZmYGExMTaDVXcfTIYbz3lusBAL1eF1NTU5icnMDDDz6Ar3/lCzAMA41GAySs40UXiZ3KK17xCtxyyy147LHH8Iu/+Is4//zzcduH/gJXXXUVKCW4+OKL8dhjj8EyKarVKi688AIAwN69e9FqtQAgSmuouhkUhGSN85wLR5Z+Hwn5zMwu/N0n/wfuvutbuP7663H77bcDAI4dO4ZOp4O9ew9EjCQSYrzQqK4vfvGLQQnBpc99Lu6++9uwLDr0XFB9MKblf/Znf4Zrr70WpmlG8oceeghHjx7Fm970JnDO0Wq1cOTIEVx66aWZubO0tIS3vOUtuOmmmzAzMwMAWFw8jg9/+MM4evQorrzySnzjG98AIOxd99xzD26++eah66CV02CMvWIa1oi4HXIgO6g2S75e3nl0PoaRNfIPTEdlYCYkl/4lz7upr0SScsb7PHmJcoZHZaOUVUU9QymJvN3i4AAqJUuZjqs4GgTyKYyA0fqTEIBx1n8HHJQa2L17D/78w/9vIv2vfOmLaDXX8MlPfhKNRgOvec1rome2Lfj5XvziF+Mzn/kMvvGNb+C6667D29/+9tz2Ngy1B6ZlZdviIx/5CO68886E/Oabb8Z5550Hzjmmp6fRaKxGzxYXFjC3ay6R7/e+91084xnPwNTUFF72spfhHe94R/T+N7/5TbzgBS/MPfaMj5v4op122pFHefG2/tCHPoSpqanEeEm3Rfz9u+66Cw8++CAAoZCuvvpqvOc978GFF16Ij33sY4lyffKTn8SXvvQlTE9P49Zbb0Wr1cKb3/xmXHvttXjpS18KANi1axcuvfRSmKaJgwcPolKpYHl5GbOzs/je976Hiy++eOS1RCMfY6+YNJ4+EM7WT0/88Ac/QBAEWFtbQ6fdxtTUFADgsUcfwdnnHMJnP/MpPOeSS9FYXcW+fftBKcVXv/pVuG42pMHf/u3f4mUvexle+cpXgnOOH//4x7jooovw7W9/G5dccgnuvffeyB41Ct7ylrfgqquuyl0YLcvC2eccwve/fw8uvfR5+Md//Bpe9/rfTLzzj1/7Gh748Y/x21deiXq9jn37+iHVfvSjH+Gyyy4bqiz33HMPfu7nfg733nsvzj333MSzG2+8EcDJ7Sy+/vWvR3//1m/9Ft73vvdhdnYWDz/8MJaWljA7O4tbb70Vr33ta/H6178er3/966P33/e+9+GNb3wjXvayl0Wyl770pbjuuuvwpje9CY1GA51OJ7J5/ehHP8L8/PyGyrlR/NO9R3DZJQe2Nc/thFZMGhqbgP379+MP//D3cfiJJ3D1W68BpRQ33nwLPvBf3gnLMjG7aw6//MpfRaVSxQ3XXYs3vvHf8epXvxp79+7FbbfdlkjrrLPOwjXXXINarQbbtvHe974XhUIBf/Inf4Lf/u3fBuccN910U05JTg5vf/s78O533QLOGS686GK88IXCjnLN267GX976Yfyn370KN97wx/jHr38Nvufhne98Z/TbxcVFzMzMRv8+cWIRf/VXt+Gmm96Zyee+++7D3/3d34EQgquvvnrkcr7tbW/DsWPH8Oijj+INb3gDfv3Xfx0veMEL8OEPfxjvete7lL8plUr44z/+Y7z5zW+Gbdu44IILsHv37sQ73W4Xn/vc5/DYY4/hM5/5DADgl3/5l/Ha174WP//zP48rr7wSvV4PN9xwQxSgcHFxMWGn0jh5kDH3IOGj2JhU8vizcZMPWwfOxR0iVVsUbFN5RJaXt+v5YIqTrbgjRRy+HyiD5OVF9vT8IIpzFAcBMJWy/6xX5zz5Tw6vwvWylTiwq4yibWa8DNfaLlyfZcpaKhgoKSLpMs4Tl23TZUrLP/e5/4mHH3oQf/CHb0/I/YCh0Va0BQH2zZZHqvMo8kFlzZP7fhBdSh4GBICtajvG4HosGqt//sE/xe/9/h9GTjUAcPnll+OLX/wiKpXKttVZVa9TOZ/JCFvBT3/1AeUivdN3THNztdw2GHtKImBj3nTx/+XJPZ8l6FbWez9enrQ8boAdVp6ugwyip6KYKdhJryYpd70gQzEjnRNUdDuWaUTeWCINkQ5VlJNz4XEXuYfHy69oC8Y5ek4A1+1TCcWfrbXdDK2Oqs6MCTqixdUeem4QvS/dzyfKduRFJ9PxfYYfPrSEoyfaCFi/HXyfodnxQu/CPmUSwNF1AnRS1EOMiRhRK00nurQqn3UcH82un6lbwDj8kDooLjcowWTFQvrOKwHQaDmCkijWFozxRNutP7aR28+eN/zYliHQ3Rh9lsyXEkRxvYDkbzyPJdpH1kHCdV28INxxybGqGtujzOf8tsift9s9n9eb5xrrY+x3TNEffHO+eoKQnyx9RyfuMXQy6Y8qZ0y4IEvXcom8HUncZTwOQoTXVcCSiwMh0hVc7ekHgqEojDgPA8lxEck0/swLd1WNGM0PAJhGNgYPANim4McTC2qyDgBBs+slmAFsi2KibKHd89GNedf5geCca3c9tHt+JC8XTVxwcBqOH2Cl2bfhUALUynbG2E4IULREcL1Gu+9RSAgwVSnAMAg6TpI9oVwwojtX8ZEkXcnTbdcN2TTibtqAuLdVLpgIAp64Y0UJyXiqSQSMheM42XamQTNjm0D2V3bsSQ/NruMn6lC0DZiUJPqZ8z4fYNpSaITXBdL9mTfm88a2/M127G62Wy6fxeR6xzRgx7RjbEyDdr55z1RyP7WQSDAGmGb2/UFpq5T6RuTuAHqWNAxK4SGrmOTXc3aihF5iJPnZTgjJKJj08/S/bctULhx+wLG85mTSCBgS7skSns9g0GxZGeNYbmbTcT2GE40e0nPZNChWwlDrcXR6Pp5YaCXc9QFxyTRgPHMZl3PBZ5f+WOEcWOt6GUUDCA4/pmgLxrgIhxkDIUQcY5FsP3s+g6tqiwEfjKoPk9z+B8Kdb/ZwxPWCDPWU/E16bBAijnqVdFshuW6eV1oaeWN7PYwyz0eVb+Z8HvOP/R2BHXGUp6GhoaFx+mDH7Jg2C9Qg4Rl+Up63IRu0Nd8sGAbJXEhc7/10HcRRG4vCfMfljuvDMs0MSelmgRKCStFMHKcB+W3qBwxrnQC1kp1xVCjaBhwF6agKAeOgROSTfl8VMh0Imc5JMsw75xxLjS4AgsmqnTi+6vQ8EAATlUJiDDQ7LnyfYfd0OZGX5zO4XoBq2U4QrebtgAIm2qJaTIZ/FwSyLspFKxHO3Q8YFlY6qJVtlApm4v3VloNSwUzIAXF8DYIEwSvnYpejgpHTdmKnkz3KGxUsPNpMO6pINvWCbSjJaE8Wss6UDCY83gowzhH44ih3s/L9p3uPZGQ7/XhPYuxtTJu1vQ4Ti2QyzkzcBjPo/e2QyzAABiUxg3OybvE6+oEwcMdpdADBUmAZFIwjcbnUMigqJQuUZtvpZOvAAXDGsdJ0w/AMJLHAyXInQlsAmKjYqIbsC3F0HB89lwGKg1fOgWbHwYnVHhgPnSgCHoXSmJ4oJBgjAGGnmq4VxIIEhLRJHM2ui0eebMBxhVIt2AbO2FOLjgl9XyzqpkGxe7oMgxIcWWyhFV7yNQ2KQwcmMFG2IxolUV9gulZE0aLwAoaAiYLHa9N1+iEtCAQfYLVkoecG6Lr9fquUTNTKFpZWuzh8vCUUBAGmqwXsnS2j5zEcX+mCh9q2UjIxN1VKUEAJ+6k4omOMo9XxEo4IJFysK0UzoQhlv0kKqzyjft64SKNPVSUgQp8Y6LlB1BYAULAoysXsuNhI3oSQyCGoLxPzfivmQhqeHyTsgYaw3520jUmFnaSYBtmYdoRiOhk30pORx5/lybe7TGl5s+PlfvmqULSNMDDf1tTZCxiabTdjiwoYw1rLVdr39s2UM1+wnHOsttxwpxEfvxxHFlvoudldVblgwraNTEiIWtlCtWwl5JxzHD3RxsOHVzOsGrZFUasUMuVknMNxgkwdChbFmXuqWSM/ASarhYycMZZwskimlXV3B4ATq50MLZV0bDANminT7EQB07VCpk37HzH9duVchPyolQXzRLz/48HxTmasMsbQU9izBqFWtjLOMxuZI77PIk/NeN2MWMiUrZjn0nVetcssFhQG7Rycjopp7G1MKoPqdsnTxt/tzHtYeZCjlPI+OFRecptZZ7naqp0wsiAkS0kjfy8W4fTYJXA8Ne2ROKbLjnXbysoJIWi2XSXVU94xEgu4sg6GQZXlISSPlZzkHlXmnfK4Cq5EPiCPouKOkWhT+Xayn+UuKd3/HAAUTh4bHcOjIB1Yc6P5yl5L103uqrd6np/s0efpiLFXTBoaGk9vbPmpzVgfCmmooBWTxs6DXmg0NJ7WGHvFlP6ayrtBvdXyU5n3IHme91ne0Yk8ax8m/Y2UKe/QIk/OOSIHhjhEyAt1vnnehYFIKCP3fZaRc85RLpjKo7PcYII5lQhCB4l0HkFo8c62K89vjxy5uEuleJ+r03JDu1D6XdVRJ9C/W6TsTzK8s9GgsZSHvLHKRhirg+S56fNs+hvNYxS5/rJaH2OvmADRsZyPRv8xrFxOrvXkcoCr0sqTb3ZZ0+0BCK+2op280WkaFBMVG6VCUm7QfqiH9erMOEcQMDQ7LtY6bqTQ5P+kW3SaksYwKCarNswUjRGlBFPVQkapCI8sP0GrwzhHu+uh43gZuh3XC1ApmZm6WSYVdpKEvUCkP1mxo8u20qDfcwM4PgvduhFy4wn6nbmpEibKSVd2SoCmKWWBAAAgAElEQVRd0yWctaeKgmRSCH9TKVtw3AABQ6qsHMeXuug6yXYihGCyVoBtJduiYFGUbIp0MF7bpDjvzCnsni5F1SMEmChbOLS/hl2ThYS8ZBsoF81Ef8o+rpRsVMtWQslRgpBzMTn2GE+ySIh0eNTettW/mjBoDMsxOVm1lXWeqtoopOS2RUGNzZnPlmUoP2biQTa3Yp4TQoTre2wuAPlXGTT6GHuvvHVfyPki2ogcUBntR5NvdpmGlTPG0XU82JYBK0a3wDhHt+fBMo0MDUxeHRzXhx8Ivro4irYIHJhmSMgjgO05PjpO8m4TIHYwjuejWLBSd2aE23e75yWIYwnEHsP1gkTejHF0XR+2mV14aiUT1bKNSjG54B5b7mCt7Sai4PJQCdsWxWS1mHjf8wNQAlTLyftNa23Bv1dTKDBBz5Nso6JtYGYi66HnBwyOK+70JO4xceEtUrSNhPu25zMsrnQwUS0k3OwDxrC8Ju4xpd3vKQEITfYR5xw9xwcIULSTXpp+wMAVtF2EiDtr6bs48sqCCvHoyOvVOWAMPcdHwU66rMvynuwc4Zwn3P+HmQublTdjHH4QwDQjr9GhtdMoXnkSO8E772lBSbQdUA2yvGMA1THGqQSlBOViNjgcJWq5hEruB0xJVeP7LId1W12m9OISyU0Kw8iWiXNBDZQGh7jzk4a4d6O+6zJVK6BoJ4c3IQTNjpdQSlJeqxQyF1MJISgVLdgGSe3ERKj4NOURII4lmeKytBdyIaab2zQojJx+KxWynnWWSbFvVyUjNyjFrsmisj8Ng2ZomAgRNEnKccGRSzGkuiBKKQGybEvCnd3M1iGvzgalA8fqySKv/PLZVs5nSgkskk8BppHEjjjK09DQ0NA4fbBjFNNmfs3kpaWSx8+RN5rGOGDY8spjCFNxMd2yjAwjBSBZFIJsHgSoFM2Mwd31ArS62YvBjhfA8YIMyadBCaZrWTuECBPhR2E/4vInjrdwfLmdkPdcH48dXcPyWi9TVrG7y7ZRwTRgpphoORc0T67nD93fhADtnpe5d+a4AZbXnAQrQfTMCyIHimGhKs+g3YCq/1tdF+2en3ECyXO+8H3FdgmiNT1FfwqG/Kw8D4wJJvx0P+fVYSPyzUhDY/Mw9jamUSbaZsrDzIeSb1eZpNKIP9+s9AFEt/zB+xdJXZ+Fx4RJBSNpVtJlUdEpAeIort3z0O4m7Ue2RVGwDKy13ZCCSMCg4lm5aKEgHRcAuG6AlaaDnusn+AWl7cP1AnRDahtKANsycGj/BI4stvBvPzkhPL0glN3e2TKmqgWUS1bmiNIyKSrFpJOA5wvanHbXSyyqpkEHHBH1+fnk80JY59WWmzgyLRYMTFULkfef9IiT9VAdAqn6U+Yjw0us976Udx0fq00nushLIIIplgtmFDojDs4RKdRBY5IQAkoRsZNz3v8AokR88OQhPs6E80GWQmyYuqXLOEi+XlqbJNc2pp1uY8rzSNsKuXw2qjzP2LrZZY0/28w6e3HHAkKiRbBkG8rwGAalYCxrh2CKcgJicVZREjlugEYrG+U1YMBkpZBghSAQXHYyjlA632YnyeTAONBzA3zj+0fQ6ngJY74fCBLccsnK7Ohsy0g4TfTLxNFU2MACxmDmHD4ULOnm3U+r5wZYVdS55wRAVfwdz5sx4QgBMnx/mgaBoXBIyXu/3c3a3jiAgKsj1QYBS1AVrTcmWcDhsuz7AeOQVsJ03dwwajNi74sPCw6CLIXVoPkZz3O9ttiO+awxGGN/lKcywG6lPC/fUd/djrJuZp3VZDvCmysfii9BqPNg4cI6CvKoilSh3tWlEfBCrrQ0CgpePSD/vhJj6irk93/0V07JsojvrOIJEYV8UH+qFuJB5VW1DyB2loPW0aHLFNvxD/M+ISEdkkKeVkoD8x2AvDbarvmskY+xV0waGhoaGqcXtuwob35+vgrgDgAzAGwAtwA4BuCvIT5uf1iv19+yVflrbD1U7s+nFNtwQqIPYTR2AlSxmuIYdxvUVu6Y3gigXq/XLwPwGgB/CeAvAFxTr9dfAmB2fn7+P6yXiMpraKPy+LONyFV5jCo/2TqcrJzn1I0SopSrqGr66STDZHPOETAGFvudhEGJ8tiMMa583w8Y2l0PXsrjKwgYChbNvC+OidTn94IFISPGatNRevQ5ob0tngcL0w8ClvUyC9R1DgKeSQdAJFPVQeWVyJiINZX20MvrZ5nHKGO77ySRTMsLL6Sm35dtvRljMo96KP9IdXC+o8znk53nG62zxmBspfPDCQAXh39PA1gGcE69Xv9uKPs8gJ8B8KX1Ekp35KheNirD7FbLOUfoQt1nRtho+tIzKc/Lati2cNwAXcePLqYaoTOU6wWCoYELJ4X4XUzOxe/MUM44R6fn49EjDXg+w97ZCqZrInaRFzAcX+7C9QPsni5h12QpXMCE8XvvTBlrHTdyRGCM48mFFtbaLiaqNuamyqFy4/jeAwt45EgDzzp7Gj/7/LOiej/4xCoeP95EqWBiz3QpYl1otV2sdTyYBhWxl2L2qZmJIipFC8eW2nA9oUQ8n+HhIw0cPdHGxefuwkTVBufAsaU2vnnvURAAP/+Cs3D2/glwDhxf7uDz//wwmh0PL7xwDw4dmAQlBH7AcGy5C88PsGemjNnJEgChWA8vtNDpedg3W8b+uQoAYad69OgaVpoOZiaK2LerHClszwvw5PEWqmULc1OlyM5yfKmDpbUepqo2ztk3EbIWCE/HrstgGgTVYj+OEyH9wHjx8RIEPLw4izDSsVBDwgEl7vggDIKECJtXI4yMK70jAyYoowLGYRoEVjhgOBdenIxzmLGxytG380laLAnpRanygrRtM3KykDAogWH0qYfyxrx8FgQMfiAUqWnS6Es88kBF6DVJB6ezmXKN9bGl7uLz8/NfBnAehGL6FQC31ev154bPLgfwO/V6/fUDkthxvRkETPmVTEjo8jvk2Rfn/QBnaRQUXlKD0Akjq6bTskyx80jLbck7l8Ja28Fqy8Vq00nIy0UTlZKFVjfJzlArW9g3W0Z6iLU6Hu57ZAkrzV7yGQFOrPbwxPFmYjGyTIrLf+pMnGh0w8Br0euYrtlwvWzdpiYKmbhKnHM8eHgVjZabeb9kG2h1PTy11EnI986UYZkUDx5eTcjPOzCJZxyczlAu2RZFuWBhtZVsI9ukmKjaWGok62xSgnPPmFSOl4JtCp7COD0TAebPmg53momfYKpqKWNJySit6X5wPcEX6KZYPigFTCoW6/g4M6iIchvvG1kmSkiWwijMWzWGjRx5OrghgOhjxRghHLoX8Tgm5ZSI+ExpeZ4X4xZi6Iz+z52PcLrJoeZ/4UVnb2p6G0RuG2yljem3ADxRr9d/YX5+/jkAPgOglSrUSSselafPZso3kvewFwfXSyfPU2rUdPK80lwvUJc/52PF9RgaKaUECPdnxhUu6CGHWnqxNChBo+VkFgfGOB4+0lCW/8mFVob8kgPo9Pyc/syWP+6inMZTS50oXHocTy60lJdcG20Xra6XKZPrMbheto1cn+HEai8jD5jg6csuxsCKoq05F+2t+nDI+8ZUpS/LlFZKgGintFKSZVVRFXEO+IqrAxxqaiMMkKtACIGhKI/IO2cOKpSSqIM630Ez7VSuMQDQ7mSvKJwsFhebm57mqJibq+U+20ob00sAfAUA6vX6DyBuaOyJPT8A4KktzF9DQ0NDYwdiKxXTQwBeAADz8/MHATQB3Dc/P//S8PmvAvjyMAmpjJTp51slz8s3Lw1CCGwrGzvHyLHk5qUtaV7Sz+NhBoZJjzEOy6CwFBRDeen4AUfPTVLSMCa+9manSkl7GSDsD3ayzoSIsAxphwfGOI6caAmW5VSbmAbF8y/Ygz0z5YT84N4annlwGrOTxYQ8CBhW2y46vSQ1kOczPHm8hePLndSlWobJio29M6VEf9gmxUXnzuJ5z5xLhBAxDIIz9lRxzv6JyL4CiKPFs/ZWUUzV2aAEFx6aweXPOwO7pvplJQTYv6uMi86dxVRoj5MoF004HovCe0iUCibO2lPDZMVOvF8rWygXDKTJNSgROyAnRZPEGEfPCzLyIHSoSINzwUbf7LgZ+qS8MVeyDUxWCxkaq/XGaGZsE2Hv8rwkvVUQMLgK+aB8RBiU9P0hhOz72WUvCIRNLu3M43p+Rj5M3YaVa6ixZTam0F38byB2SSaAGyHcxf8bhEL8dr1e//11kuGyfHFj58n8vZ0IAuFxJifCMOXjHAneNCmnIdUPJWToerpeEB1nSLnjBgiGaAsiEoRBAJ/xiC5IptPueui5PkpFU9D5QByHBIyjYBmYmyqBEhLZNwBxNPXA4yvwfBYFB+ShI4JlGqEBmoThDwI8udDCJc/YFS56NAwdwPDY0QYabRdy3ZTKoVww4Pn9BZcQceF311QBhkHhurJdORgDlho9FIsmdk2WRFBCiIX8kSMNLK31MDNRjJQnYxzLaz2YlGD+4HRk75BeZXMzZTz3GXMwqbBV+AHD4koXDx5ZxRlz1dDZQNhVOl0Pjx9voVayIkO+bPNK0cTMZCnqa2EDZFhq9DA3VUS5aCXa1PWZcAhI2V9MGjKd83BQhc8MIpxUHI9HbSH71Q8dBeIoWBSlHBbygmWgXLSA0MYk+jJAq+uPNCdp6BAhx7aEZdJQYSfzFc4KZGCacXg+AyWkHxdJylNhVGQahIjmilNuyePNeEiZk1yThj7TG5WSaNxdwSUGURLtCK68eB+qvF7Sz3aqnDFx5q+qczEMyTBsWo7rR7uctDxg/YVqvXT8gMHzVbuqAJ6XpUKwDYJd0+XMTqnT8/CdHy8oz/3VZ+8c+3dVw0Ui+ez79QWlbSQP1ZKZ2PFI5HHcraz1sLSWtQcVLYrpWjGz05uuFfD8C/ZkQku4foCFlW4mnSD05FPh0P5JZZ0LNs0JOaLutzyImFZZue8H8BQPbJOiUlKFqCCYqNiK8RJgrZ211Q2aC+WcsS2fp+W2DNR4kvNNRW0V/gIqu3yeA9NG5r9WTIMV09gzPwxL85H3/mbKtyvPzagzVzgjAFDSvKyXjhpE6VNDpA9yCowjN6y3ul5qGh5gdOeS3HzzDOp56dCkW7GEYdDcdlJXLX9NyquzSin1f6Ne0FXIq1uePC9PmktVtDljHhjsLLBZcjUGk8Fub1lOT4y9YtLQ0NDQOL2gFdPTFKN+k23HN9zYnRpvoDy5dchpwK2u86gf35vZzyPnrTcKGkNi7BVTeksd9+iJP9sOucqbaLPlKuc9aZgepaw0NPQmPLRy3gegXDUGlYcgSw0TeTH5yQB3nHMUbQOVUpYaiAAo2kYmH845Wh1XmYdgRcimo1r4OOdR/KRsWQOlPO6ZF4ekKkq3XaPloOcm68x4n+aJpdIn4MpAjAQimKCqf0SYjqycKFQN4yEVkuJ9SlW/EBdqVe3nByzzvnRykHnE8yXI92TNHKmG76jok4D+kVe6f0adC3l/K494B9iFcum5Njj/NfIx9s4PQL7Dw8nI48+GkfsBiwyl6WB466UzalklnYx83j+HTwZJWy+d5OILNNoO2j0fhADlghkZcou2gVJogO70PBG8jgs+POlJJC/pci488tba4oJswTZQLorfeh4LF1ZgqlrAgblKxBTQ7gmni2bHxZMLLTDGUSlZeObBaVRLVuSxJy7rcnjhfwuWgT2zZdiWEeXtBQyuF+DYcgc9JwAhwpvNNikYF5dundAjca3toNPzYVCC/bsqmKgK9+tmx0WrK9pidrKIibJw4260HCynGSlSqBRNTIaGf9uiqJRsUEqwa7KIg3troISg2XHx6FNrcDyGom1gqmaDEtEWK00n4/1mGgTTtULUJ3bMnd62aOTeLscDAVApWYK9Q7ZLSIHVCF3oKQEmq3bkVSdpgjhkGwlFWrRo1IdrbRfN8KJxpWBisloAIeFlaeFKGY0LQDhHSM+8bs/H4moXfsAiiiEaegxWSxYMg4Zee2KMEAhngnTdAMCyaBjzi0f1Stuc4t556XEfxyA550mGlbjnXUJOEMUl26R5rp0fdrJX3rov8K29lS1DQKcLIpXTVuUtPfRUyKMkykv/6GILXdfPLLa7p0uohotqHK2OA1fhibfadLDa7GUWVULUlDQFi2L3TCVDnQPOYRgkWtwlgoDhq985rGSe2D1TzqTPOcficlfJUvDY0TW0QiUZx8xEAZTSTB4ytHperKc0Jis29u+qZKKvGpSgYBvo9PzMbyyTZuh8AGDXZEHp7TVZsZUxqSolC7Zi7D1ypIGOk+3nfTPlcLeafF+yL6Tv2MkdiZUKKe/5ATxF+/gBg+MGcFLh4S2DYt+uCqxUWRlj6DqBMvaUVDbpRd1x1eHbbYtCRdezkTnIOc+kJXe8Kqqnk5znWjHt9Ai2pxqnQnVvpueO3Omo8kgrpX7e6lqrFm7Oobwbxbh4P50HpVmlJPPNo0NSUdgQQsIdQ/Y3eXX2fAbLytbZV/lQr4O0e7jMV6WUZN4q5HEoqpQSgJDENSvPqzOgHk953HOmQZXHTXnjgnNklNKgsqqUoURecMg8bNbcHORBN/b2jhTWC3kxDE61cttpba6hoaGh8TTHjjjK2wob0yiX4Tjvh7AQ7/RtPckjiv55uAx1oTrfHqWscdtWHPIsXJ559xxfhA8wxIXIOHWR/KJdWOnA81loyEVoCzBw5p5qwsZ0fLkDzjkqJTsZNoExcAYsrHSiXQEJz94pITk36YGJio1KSeyQHDfAvz+6hIWVLp59aBoXHpqFQcUN/yeON7Gw0kXP8aP0OefwAoaACfqeyWpBMFMHDP96zwP42p0/xNkHduPlL7kEtUoJnItQGv/+6DIs08BUrSDsKpyj1fWwuNpBwTJw6MAUKiULgDiubXc9gJDIbiPb4vDxFoKA44w9VUyE9EBrzTb+7b6H0G538YuXPQcXzZ8BQgg6PQ/3PbyElaaDZx6cxll7a1H/SAZ00yDR0ZbjBvjOvx/Dg0+s4PnP3oPLnncmCpYRsUystlzMTgi7lRnuDA8fa+KJY03sni7hkvndKBVMcM7x0OFV3FNfRNE2ccbuKgq2kegD26TYM12O5K7P0Op6IACqsTp7PouOQKtFYYeUY9vxgswOhRKCctGAaRg40ehire1G8ulaAaWCmTj2ZlwwXwjGCsCOjeFOz0fPYygXBMWRZLjwI/tm8ogsbg8aZT6n5XGbrrRtDXyf85Ae6aTm+ZYd5W0GtmPHtKNtTPGBkXe8sNXysCBi0Q0HY/w30lNIUpjEB6TgzSPr5rGe3A2dAeLliZRSjHpIolQwULTNRDqcA0uNLo6vdBPvEyJ47QyDopeyRUlFF3e4YIyj53g40XASRy9C4altY5QCra6PR46sRczPBhXOAxefO4u1jtdnhOYipMNqs4eOE0R0R3I6rzUa+F//+F10ug5cTzg2EErxvIufBWZU0HWEgpS9UCwY6PQ84QgS1o0SYNd0CbMTpczxpGEQNJoOGm03agtKRDqNlUUcPrIIxgVVjm0Z2DVdw/Of+ywcX3WidjaocCp57vzuDBM4AfD4sQa+fd8xwS4eKSwDr/y/D8G2zCgdAoBQgtkJG8eXuiGdE49CSpy1p4onT7TR7vrRRwEhwJ7pMuamS4mxSCC49oq2KRwZYjAN4eGXtiGZBhGBGcN+QWxMlgpm9EEjx4XnB2h2XJSLVuZSMOMcPYWtiADoOkmlRwgwGY5Jif5aANiWGX0YDjOn5L/jY1U69aR/LtLPUg9t5jwnI5zVn46KaextTImJlVqUR5HH/z2qXP4t50haHoSDNfMs/Pem1CGnLbo5RuH0l6QoB0Ies+S7PPRkMxXkloLLLZk3pQQcJGNjEe+ox1qnF+ChJxuJvAMmjNrLTSf5ZUsIKAE6ThDVPfovB/7+S3eh23MS6YAFWFwLUCj27Tvyd42Wk9nJiYWWKG1mq2sO1tpuYqFkHDi2sIzFhYUE84TrBWj1Ahw90RGsF7EycahZJ3pugG/94GiiLfyAww98UJKMzssBcMbxxLFWIg0e5vHjJ1aV/VkqZqc2j/JhGd96wRmcYz+U1FaxsWQaJMOhR6nYPVRLtiIdtVIC+v2czjfP1pSmJNrofFbx8IlnUL4v4qxlnwF85HmuMRinjY1pkHFzWPngd/N3W6cKqvyz/oUbTXuEswjkeyqBkJFLlLfLJ0Q9nPPKmdc9HGqjel4d1L2f78zBkXOHZkCZRkWaELWfwaBMhu8J8fWvlm8aBiQ16nweLductEcsi8bGcdooJg0NDQ2NnYGxVkyn0v6lyntweXbGV1Pe12AeBlV5lN4hyGk/vnktl7cbzCvnqMMrtw65BeK5m5M8t/iRkZPMwHIqn+W2Um4yT4+NgnpHq3FqMdaKKU09sll/y3/7PhP2oZR81L8JgZK6RxrzN6Pc6VgyUp4OACjleTQ8u6aKMEO7kQQhgGnS0LsoVn7G0eq6IWtDkm7HoDSjUAjEBclqzFlC5muaJOEpJt/nnKPZdjPlDAIGz08HaBOxiZ41fx4oNRKXISmlYF4HBiWJYzJKCGYmiijEGAaEHOi5PlQLU7VkZmiSDEowNzuFfbunYcYunlJK0el00ekl60AAtLoejoah2ePPbJPiGWdOhY4j4ftElPXhw6uizqn2yLn204/1lWrX5bVeJl9CxITP3r/iuX8Lu0p2HDlegJ7jJ2iPxH/VY5iFjjGqsd23oib7Qtr/0u8Lz9fh53ne33n3uORQV81z+Xr/mZzjG1uHxhX/dO8R5f+2C2PtlddzBP1AOjCYRNrrZlg5YxztnhcN/IIV0qoMSGeYPALGRIwiZJkhNlrWuFx6EbGU6yznPOSny9pBJN0Q50hQu6w0HSw3HRiU4MCccIXmnGOt7WBxVSxqiys9NDuCnma6VsA5+ydgUIK1tlBWibYBMF2zMT1RBCXCdfrxY024XoDVloOlNUFhxMLIqYxx0e4FEzRUJpWycFteavTwkydW4HoiCN7cdAmVkoVGy0X98WXhdRcEOLFwBCtLi5iYqOI5F12AyYkaGONYWethtenAtg0c2j+JWsUG4xxHFpp49GgDlBLsma5E7uJxxMdau+thcbULcGD+4BTO2iPcv584egJf/daP0Om5mJicRnViGoQIN/CZyVLozt4PWFgtWXjO+bswUbHheoGIuAvhjn7/wydwoiGCEh7cNxFR9MxNiTpzzhMBH1XgvO9SL6iNitFHQNEWwfxMg+CM3VXUynb04dJQxE0KU0z1rKTkER8jIqBgv72mayJ6bfpqgxzDjheg0wsiz0rLJFHQxGSsL/GGbck0aaSIVJ5w0lUbOLk5JbwJWSLNQfM27l4ev7YxYt5D7zdPhVdeHjbTW2/HuotLxQQgCpSXRp5BOk+u8tACBP9ZwR7NSVGVh/wi2iyaFJW856iZBTo58kLqboYEJQSmRTOG+AceX8FjT61lFsNqycJU1c6c4ZQLBvZMlzNefSdWu7jrvqey9Each/xvyfcZ56g/vqL0lDu+3FYGLDwwV0KxkGWRqBbNiNssWaYOHDfIyPMopmplC7smixmX78PH1vD9+nEEPJWOQTFRSYZPB0S01+c8YxY05aDBOcfiSlfpEbl/tjySYb1WsTP0PwDwrLOnsSuMKBzHylpP6REXlgzqtTMrNw2CWtnKpB8wjkbLHXDAmk1/70xJyaiRN+bT946i1Dcw10aZt5swz7Vi2smBAnca0m6j25r3iO/T1LFXHKrvlTxvNULyqY1UMf0Iyc83j6suT25Z2eiqgFAQSjlVy/P6TbpAZ+UUlKpZyPOQ9w2oUkobQR6FEc1p7+0Yp6OuqKpxtB0Ydd6eynl+OuC0U0w7ZSyd6rNo1foQP2NPQ1VWztXhHQDkylUh0AfBUigNmfco7Zf3PudcucMGoFRYhCDBlhFHXuTdvMU4T3nnIe9txrnS2SJtO5IY1Haj9v9W41TPkzTGrTw7FWN/lEeIWAA208bEOUe750fnygXbQDl2g12VTvzZqLanUeVxaiNC+pQ/8d9Ie5P8eb9ugOv3GQ4kAwQH4Ht9R4946I54vVZbDpYaPTDGsbjaxVpoh5idLOLsfTVQStBse2iFoRFESAdBExSnmOk4Po4tdeAHDMtrPRxb6iBgHKWCgTN311CwDbS7HhaWhZxSgmrZgmlQrLYc1B9bCWMccRGKwxU2CmlvsS2K55y/C2fsrsH1GA4vNCMaI9uk4lgOYjdiUBoqGBa1mQgTIYzxfsDgBcIIXyqYGfZ2QoCZWgHTNXFE5/kMza4PxoTd6rGnBJvFzEQRF58/h4Jt4MRKF48fayJgHAXbwL4wdIcMEyHjIgmWcMD1GFbCY2bLpDhjdxXVkoUgYGh1vEg5WqENinPZFsIoP1mxI5uZ67Oo/2tlCxMhS/nu0G4FiGNWyQBSLhjRMbYfBNHu1DQITEOG4aCoFAXbQtcN0A2PAKXtiZJk//sBQ7PjheXoH9sJxS12cCy0MfFwPE5V7cg2pp63SWqw+NFY/EhvmLmWHvcq+bBpKW1PBImjZG1jymLH2ph8n/E0/U8ag+TA4MHoByzyzBnm/a2Qx+sgyxQ39Mr/psMByHRkvCVVHgXbBEj/y1saekm4KMbfd7wgVB59ZSe/qCslGwW7P/FZmA5jHKaZtFExztFoOgmKGZlv1/EFVQ3p15kxjpVmL9MHjHN89/7jeHKxnWgrzjn276rgonN3hawU/UVhcbWNtbaXOWIhyB4pcS6YCJbXeuG/ZV+IRVLw4iWVk0kJpqoFhMxUUb4BE84cExU7so9wLjwLF1e7mQ8LQITfKKZsYMJmQTBVK0ZtJOXdMJxF+n3TIJgo25n3DYOiVrESF20JAQxC0HVlwMN+eSgV1ENpUEIwN1WEYfT7mXEOzji6bpDIV+Yt2CXSTg3iA9NUzGcZ04pguHke52SM563izpO/ic+luDye/kbl8YmgUqsAACAASURBVI/EzLyN2XDjdSAjnAOejopprCmJ4gsPkBwMw8jlszx5HiV/3vuj5L1ReZryRP43bT/op5O1FRBCYFtG5ohI2ILU7zdabib0A6UEBdtEqZBcQCkhoAYBp9l2cj2m4D0jMAwScu4l60AoMgZkQggMQnAkpZTks2cfms3YZSgl6LnZ0BhAvl2sq4hdxLk8oiMZOaEUaVMXpQSmaaJg0Wz/EKJ0qKEEGaUkfzM9UcwZe0kXfymvxQh74/JK0cw4BXAOdFwfqggflMhKJtMqFozMPKGEIEA2nInMI2sPFO+ZOfO5WrJzxnbOHFGMeUBtP0wpg6Hkg/JWyYVCSr4XzVuirvNOhXQZ32ouvbG2Me30Tnw6YEM9kPOjre7PUVPfzNLk1W3Lh3Be+puY7xgfqpwUCNEODOOKsVZMGhoaGhqnH552iinPZrYZ8q1M+2SgLCvyvYNU8pG9dBXHnVHOymzV5RmUbd7XbJ43WR420t7K3/DR2lSejmXeHbk0+cirmrR3jJTWCBmcyk2UaFdFCchodR7kiZn3/ihyjY1j7BVTfPDIv+POAul35L+HkfsxFoW89+P/yytTnpyFzgzZsgK+glYFiLsaJ8vkhR516bKmL1RKeafrR3kPU+dS0VS6OffcQHjEpdpA2IGiTAEAQcDQ6Xo4sdrN5OEHwoAfr4PnB2i0HHz3/qPoOT6C0PgRMIae46NaMjOTnnOOb/3gKJqdvk1M1mu16Yg8Irds4ZhwZGENjWY3QasUMIZWu4tWp5cMM8E5lhsdLDc6CTljHEuNHo4uthLpACJvYa/KjoW0apWG8seOrQlHF57M49hyJ9FvEpWikfl4EKanrO1J1i+V88AF1A94FIwPsX5rdjystp3Mx4BpEBQVzhKGQVArmYl6SyeXTs/PpEMI4OdRFeXM8/RFaPmc5VAYpd/b6HzOk0uHmfR74t/qNUxjMMbaKw/Y3Ai28hljYjGRb9HQeybv/Y3IJXWQhHBbJhG9SiQ3+nGN4gZWLwxqJyeohIqGhYcK0PcZ/EDQ00jYJkW5ZIHHaFdknU1T0MK0e/3F3PMZWp3sbX1DunNTmmBtYFxEhvUDhvsfWcbCSjeql3B5ttFxvCh4IAGi3//zvz2B797/FHjocPD8Z+/Ds8+dQ/3xFfzo4aWoTKZBQA0KzwvQ6XlROueeMYXnzu/G8eUOfvDgYpTHZNXGvl0VtLsuHnx8CU7owjs9UcR5Z87AcX3c/9CxKK1S0ca+3VMAgMXlVuTyWyqYOPvADAxKcWSxKaLcQrCQPPucWZRLllD00VgAKkXh8h6vs+wjzoFG243SoYTgjLkK9syW0Yu5YBMICqhd0yUYVNzVkot0zw3QdQMUbTNy0+dcKBXfD2Aaor/jvIDiIwnKoHhpECLGjBwLcghbBsW+WREBN+4hypigN/IDhlLodk6IGFerzR66TgDPZwlFKQMMSroslefbevNZzmPPZxnX7PhvNms+DyMXHx1ifg9BSbYjvfIkNsP5Yce6i2OIE4P0wr2e3HF8ZaKmQUe+ga/KQ5CPKtyeBpQpfW9GvuvkBFZTvQ8AK82ecuHJoyTqub6SmaHddeEootBWioKSKJ33kcUWvvfAQsYbyzapoMJJfeqvtR38f1/+94wXIABMVNU0PF1HzetWtE3l++1OV5l+4HtKuWkaMAyFBx2lsEwzM2ZmJoo478ypoY3nfsDCkPVJOQFw6MCkMp2LDs0oPd+KBXWdCxZVvu94yY+hjWKyYuPAXEVJGaQa264f4PDxZrbOBDi0X13nUefzZslPQd5aMWlKIg0NDQ2NnYLTTjFttXfooB1oHsWMypifl47cSaUpZqJjBMXv8pwFAqamqpGhDlTpeH52FxcETEkN5AcMqy0nk3fAOMqK0N9A3/YWhzi2ydpdOOfodNoIgmyZfN8HU2wTDMNQEm/alqHcMVOq5gH0gwCNVi8jl+HiVXX2vKwcyO+fZsdT9kM6nAXQt7Op3hehQDLi6JL0KPKuYhcvj9VUZVLRNnEumNVV70s2jmHSH4S89/PqpjEatjocxo44yjsZG1P8WVzu+yy6PS7tP4PeX08uF4YgNiH6l2P7N9JZ+J5MIr69l5di++EzhF1CPvd8hlZX0LxQAkzVCijaBlyP4fhKO7JpSBqi9GVhkwoGCc5FrCAvPHozKCJ5o+VEjNNSnj6WKIU0RIQQHD3RxtETbbBwQV5pOvADhkZIbUQgbFPzB6dRLppYWOniwSdW4PkMrhfgyYVGhjmaEoJSsQDTNOD7AbqO07c3maJenudidWkBnueCEIJdc7sxMTGFIAiw2lhDz3EBAIWCDcuyQSlFuWjDMEQ/dLs9tDpdEQJj1yRqlRJAgHbHwdJqB+Ac1UoRpaIdjpcA7Z5QFJ7rwnFdUEowM1HGMw/tRsE20ep6WGu7ABd2tKmaiH212nRwdFG0ETWIsEOZFEXbwPREIYptJemTonEFYVM8Y66KiUqWrNYyKQxD9JuwSfJ+/4fHfZbZj0PVdXz0QqUZZ08wDBKNT88PotAVBiUZ2420ox3YXYFl0MQ8IkSGgAAc10fHCSL7V7vbp1WSMA2C3dNllItWOLbdcLyLPOSYlDY/WVYzZnOLQ8riYULi1Ftx+248XMUo83wj8vSzp4ONKY2NHO3taBtT+rx2MwcRR390nFQ6nCcM3fH3hTFY/X68buudfbe6fhTfJyoDhEeT5wUZG4g0LMfLCojdTSYMBcTkb3e9TDqEIMNqINM5EXLqxdcbx/Xx/QcWw91bsqyWRREESVLUIGB49Ohyxp4WOpxlbGAEQLO5gm67legTSimsQgmGYYduw7L8BKVSAdOTWZuGQUWoiPQOyvcDOF6WRcL1fCycWAF4PwItJcJ55dyDuyMWgAjSMSTmRCBx7hmTKBeztiLbpJnyUAKcMVfB1ERhqAjEBECpaGKqVozaQBSHo9vzsNJ01k0jSosgcmiIwzQIDu6pJXaTsj8cL9n3csyvtV1lf05UbaUNVNpGR3EACgKeO5cSci6ouWxLTWHUr//WKCkyws3e01ExbRkl0fz8/O8AeENM9FMAXgLgryF2Qj+s1+tvWS+ddP+ldwEnI8eo7yOrQKRnkqrcgo5ERYWSrdsgBUUIySglABGpqQq2gvIGyA8f4fpZ5QYgsZOMw/HEl3X6N+2eH7pBq8qaUwfV8RAArigQB9BttzMTnzEGQoxwix17n3NUSiVlWxQLpjqeDtSMAK7rJZQSIP4uWaayrD7jSk84wyAoKZQSoL67xbhQoMMoJVF+hJyE2XHUy3GoyYMkm03DVrDAy7mQUT7hmFedoHHkH3HHOebiyKMeSnNGRnmEcyohJyQ3nfhvNluuKp9GFltmY6rX6x+r1+uX1ev1ywDcDOC/A/gLANfU6/WXAJidn5//D1uV//Zj7D9qNoz8/XaOeNR5N+L7eenny9UPhl3oh8ljZJyq4bKJa+LTd8RrnGpsl/PDTQDeD+Ccer3+3VD2eQA/s035a2hoaGjsEGw5u/j8/Pz/BeAwAB/ASuzRMQD7NpJm7hfwFssHP1Ocaed8Uw766s7/uld/oebJR7Ud5hWJc+QWWJWFZVDlkU0e8o5xZL0IyeZDCAWlWe8qxjhMK3u06gcBCsi2U5DTRnn9Yxh0QJhwxfuKskevDxoDihQZ44AihmJeUrlBCQnJHTP5BVIcL7Isq4UoT14Ljb6/ym+mpFOQhMqRQcrzypRnjxplbRjkQSv/ezLHd5Vy1g46bpibq21qetsR9uJNAD6O7Bgban7EPdw24+9EAXLko4IQ4SElLtb2J03fzprNw7aMjH2IELH4BTFWCvnbyaodMixETwAIw7TrB4mFaFC+PPb/4IjCpecpE9uiMCmBz/qTTP7WMkjk2SfzPbivhr0zJXzj+0fgekGuTSuO/XOTOLHSihwmBMuEjXMOTOPxp1axFgbQMyhBsWDiohdfjJ889ASOLiwLV3XTQMG28KLnHcJTJ9p47Mhy9D6hBLMTJRimiXbXTyg7zwuE51noeSgHZDGsc9cJolFLAMwfnAU/cwrfvf9JMCYM7YQSzEyWMF0rYK3jhYZ+4bAwPV3GoQOT+PGjK8Imx0T8pH2zFZy3fwLHlrvohfG0KCEoF02cMVfB4movpG/qj62O48MwSCyMQp/NQQRpJNGYo4TAtihownmkP44oEa7o8X6brhVACLC85sRsoEC1ZKFYMNHseAkl6/kBlta6mAnDdBCINm13fTTabpiPcLVnobOP57EwlE1/gTeo+JCQ666Uk2h8Zu1GUmGlx7eYg0E/nllYCUrFsW3GY5Zv4ANOsWYEYQw1Mwz6KN9hTDhkCI9HnlmThkW7445UxlOBxcXmyL8ZpMy23Ctvfn6+DuAiiPH0cL1ePyuUXwngonq9/ocDft6fVgM8bQC1wXO75fIuEefCFVXlsZR+X1LaxF2FORdB5lSLuusFaHZ9pL8nA8bCRZomaF7EMzlJ0jsJ1ud5i8lpqCArxX6sH845uo6I+trp+pEDAOccIMIgvX9XBcXQEzAIGL557xHc9/Bypg6ci/tTns8T6bS7Lno9F+ccmMbumUpUh8WVNh5+cgVn7K7hwO6JSH78xAp+cP8jOOesPbho/qzoq3JptY1/vfcxVEoFHNg7E7Wr5zMsNbrgQCLGEIHwYjMoCSPKCnl/YaE4/8ypyMvR8wN89/4jWGp08Iyzd6NaLsTqID4eDu6poVoW0WIZ5zh8vImFlS6e/6w9OLC7Gr1/otHFseUuDuyqhMpBLF5rHQ9PLXUwWbExGWPboESUPWBJ70ZCgFrJQqVkYmaiz7bBGA9ZPJLjxQ8Y1loODEqwa7oUebnJ4IaMccxNl/rXHMKAjq7HIkoiiWrJQsEysLjai+ifAKBSNFEumlhrJ5lEDEpQKgiv0fR1BILQfd1Ix7eSNFpqnry4TN63E0o9GUXWC8t3shRG8o5c2rmFUhF7LPCTdwTj7umxqg6FneCVF8ewHnqnzF18fn5+P4Av1uv154X//gcA76rX69+an5//PIAP1ev1rw1IYqgd1bquoSchP1V5c55PSbS0pnb3LdhUeTQm7q5k3292XCV9kuQyS6PVcdFoZfOulCzsmSlnLqIeW2rj8998JOONxzjP9Q47N4eeJw/pIIYSTx5vKvNodnLolgomSopLv7OTReybzdIkdR0fqy0ns9O0/3/23jRWsiQ7D/si7pb729+rfeuqyd5n6eEyFElTFGlqRNuwScOgTNECCZiSDMK2DC8wvMMLBAP2H/7wBhuwZRmmTNEiKFlDcbgMOQtnunume7qmu7Krqmt99faXe+ZdI/wjbty890bcrMzqV9PV03nQr+u9kzfjxr6c88V3TIr1JTXYn0EJttYqhaZLnegus06Tq2eXtGUQF7LV502DaIl7AX2f9OIrBXmJmHpdYpoQAKfX9dRT5QK6rSIarpMc5/N8Z3LXcPZ0cmVYLEwfYQTb0wD2U3//2wD+p2azSQF88zGL0kIWspCFLOQTKE91YWq1Wm8C+GLq73cB/MTTfOdJS9HuJ2IMnHEYOZNDGDKEjMEpuEc0q4QRQ3/ko1JSmaKlXV5x5kccoFBMiNr7QJzH5hHVv6Sj4AHEiWnkBoqpsDvwMHQDXDmzlPmuH0RYbZQU8lLLoKguWWj3PDXsw9EI68vlzE7edV3cuHEDzz33HOr1iV06YgzbB8LPUSlZmXTkZeE0JQ7nHHs726Cmg8byakbfG47hByYatexppzPwwBjD2Y1aRt8f+egMfNQr2ftCjAu29mrunlIQMuwfj7CxXM6QoAahoG1aqTuZvEZMtH/ZMZUyeH6UsD6khcdlz7d/GAmfZfoSK49NqZxz5U4SJQTQ9AtChM8xfzqyYhaL/jDImYTFiczT+FLDiMM0nv07PYLCiCnjHBCn4DybxUJORj4WzA95eRz65mne3hasDVnTmBzYQzdITGPScWyZxszpS2n3XbT7wglNADQqFqplC2HsJ5LfCyOGCXXdxIcgqYQYT19qle8iYIyJC7Wx81fY5IUjv1ayhIMaMjkCzw9x51EX/aEIh2FSipWGcJbf3e2j0/dACEHZMfGjL5/C2lIJ9/f6OOy4MdMDw53tHrpDD6uNEpZq4ruMcWwfDNHuu3D9EGM3EpxuRITM2Fwp491338Wf/dmfgbEIAMHnX3sNn3vtNfRHEe7udGPQB8GZjSounWlgMArwwaNuwrZQsg1UHBPdThtvvfUmxuMxOAeWV9dw6eqLINRCu9MTvgcCVEo2LpxehWFQ7LdHcL0QhAhapdeaWyiXTNx62MFhR/DkGQbF1molw/0XFwErdQe2ZaA/8jEch0DsJ7l4qo7VhoPDrou943HynVNrFaw1BIjiqDthiq9XLdTKgrZnOJ6AEEqOgUrJQrVkYXOlEgMLSNL+YST8dnLupJTANg1wDvhhmKRjGgTVsghpYqXouRjn8GMfCs9tIIauoBhaqtpiU8DF83vtMUZumIS1kD1vNA7ghywV6kKU2qQCNGAaNAm3kR4nlKrmxo9ynFOanXs4gDAXKy2ffpoWKfXZwpT3g0pJdFL69GfT9DL+SzpP8kTiahgYKAGWas7MeWKM4cH+IBMrChCTVr1qK4SYPEY7iVPHLP1cOIUVUAXnoJQq9CwAR3fg4f17bWX3HIQRDrpuguyT4lgU57caCfJNiuTPy5c5DBlef3cvWSilGJTgu9/6A4yHPQTBxK9hWSauvfIXsLJ2KpMnSgVNjWmQLBUSAR7evYWHDz4AS5G9UkJQrq9iefNSplwEgGGaKJfLShksk6JelUCHrP7iqXrhSTOfDiWAbZnKaZUS4YcQk1/2+5ZBFRYOAuDimQY2llX/nmjn2f0+JdvAWkOlMGKMw8v1eSFc8DEi154RQ3cYKM8X9XkAWKpaCaow/bxcCE5inMvF5knHuXgGmjEixm2eYkymlackk/rFwvQxD3uRb78ESXWC+mznK9bLnWNer2PoBgR/G+ez54kjRvnk0hFmGLUNxbsB/aKkyxPRx+UhabgxyTw/HOtjNsmTYf4jSmnM7Kx+hyrpi+/nFyVAONR7nePMogQAQRCiWl9R8sSYME0qVEgc6HWPM4sSIHb3TlmFq/K4DPK7aSGExBDjrN4y6dR9Qf55GQBSKQPXP885tOzgHECj6mgXRB2z+jSRpxKlz6d+TwuNiWeL5lddny96Pr8oyefzi1I63Xn1ut/TP2k9BwCNCb/oHbLxtWUm0/O0EL088wvTQp5dedaGV7Fd4CN890ImsqikT4ScRCiMxcK0kCeWZ82+UJifZy2jC1nIQqbKM78w5W3BaZqPp6Evem+s1R7Di47mLEa+zfPuAjeFnpk5Tl8vxf4ObfoF+SkKN29Qqp3w/SBKqF4y6TO9g5hzFudJTcx2SmoICErhjoea58WlZM7yvj4Oyylry+17Y3CNySuKInCu6sMoRMTkZdVs2XTCNeV9nBQ9XZSM54UK/RCPfY7zBMSLChg6pPlaabe4zIqvpvANPPev+o6sjuvf+4TjXJujgvYRuAwVYFU8buebS55xv/4zIc/8wgSonTQLPHgyvUTdSCdn+kfanfN60zRy0FqRfsk2UK9Yiq2fQsQnYrl0wpCJS48sqxeIrQZqZWsSJwpAvWJhpW7DsbJwX0DGrMnWl3DSCsRTRg+BFKw4hjKBiDhNUZIXxkT9HHfVKK0AUKvaOLtRg23RZPENwwhvvnMH//vvfAM7B92YHoYhCEJ87fV38fd+58t4sL2fRKkNwxDfvX4D17/9VbSPdmPknXi/63k41/wCGmvnQEjs/6AU1cYGekMPw5Eb1wEHYxEGvTbefuOruPvB+4iiEOAMLAox6LVxtHsf3niQLOSEiLoYdPZwvPcBWBTEbcnBWIj2wTb2tu8gDH2AM4BFCAMPN9/+M7z+ld/FsN8Bi0IQIjYSjRgQkRbGRfyh3aMRXD/MTGpjL8Te0QjjXBRX09DznRtU3VAQAI5loDv00Bt6SV+KGMPQDdC618b2/kAs1vE7KCWol61M/5ISMsE2EcUbCBYzS/SGHnpDP6HzkT9eIEAOEiWa9G3G4dg0lV+ONCI0rzMoMPZFqJT8uPUDFgfV5Nl+6avjFph//BeNc8OgubAxk/pLSpVLx7aNDEuKKJv++YU8Xp55VF7yi8YZ+ST6MGLa8Mp2HAxPcc7nOrfUCeQcVyhPxl6IMGQK1QqNw1vnEXGUEFiaQHyuH6I78LBcc+DYEyhyFDF0hyp3loyMa1AKw8jmNQiZoEpJOZM553HYcyUpuG6I/jjA7tEw8zkh4qSUpoXhnOPWgyPcfXiE925vJ5QvAHDl3CounF7C115/F/3hONGf2VrFlfObeP0776DbnXBsVaoNnL/6abiuhzAFVvDdATr791BfPYNybSVVpxQkGqFztIde5zDRm5aNM2cvoHO8h/1H91IlI3AqDRCaY0MlBEvr50CIAXfUy3xULpXAIg87d67HC6eQT3/+J3Dt+VewrtxLiuAFEXrDbFj0kmWgVrHg+lleQ8ukOLVWUSisgAn9UB74UnYMVEtWQv8knhUBC7sDD8e9yWaCUoIXL6+iWjaTqMaAaLdBDD03c3d0LIMA4IIfL/Xekm3AMg2lDzsWhWPRDG8iIMZaoAlKKfIlkIbpMhMi6kkBC0DQFDEGBWhk24aWTUM3bufVc86TBTNHJ5R8ntdJajDTVPOVe/4HFpUn5XHovI+S+eHE5KSQLJEG9QYgJmGczUxHiAg5ne+YhBA4ln6gMMYRaTpyEaKvZJtwVtTBkL9UKUVeZtQhgIr0pkG1lETtgYeD9ljRU0ph5S5jEkIAFqH1waPMogQAt+7t4733byu7xO2dA3xw+zbyZp3RsI/+YKjk1S7VsHnhJSU/jDHs3bspTjYpCQMft298B1GYp8/hIGBQaLo5x7B7CNMuK+84PniIcXdXMdcNOntYW3pNaQ/GgN5AjdTqBRGICyUGVBiywqCOtqbdAGC55qjv5Rw7+32lPeUiWHasjF72VR2ifOyFCDQfiLTVzVsQMi36TCw6+v6tK1vRHlmiVYs2oEX26VkRg1KnmCUJSe4hzjr/GJRq0acLmU8+Fqa8hSxkIQtZyCdHPjYL00mZHA2TagEGlOrfUWQXLswPgXIRVqSvJ8wsIvWUDMk6B3alZMI0ZtuRSVNemPI1SLEtA07uBMQ5R8k2BNN1Lq1G1UajYmU2qJxzgBpoXjmjnKauXdrCz/0zn0O9mj2J1OtLuHLtJZRKlYx+Y30Vn26eUXw2lFI4jgPDyKZvWwZeevllbG5uZfW2jVc/80M4f/FKRm9aFp5/8VVcvHgpqzcM/NjnX8HnX72mmNM2T13EhaufATWyxoUzZ8+D5k2CAFYaDl64vKrU69pSCc0LKwkbgpRaxcJK3YGV6zOOZWBrtao8b5kUtYql7UurjVLCaC6FEKA79HDYGSvt71iGkr74DtH2Ycuk2vdyjsTnk39+uWYrpkjTkCzu2XQmIUhy+YnT0o2VaSeTWcEI03RBGMURA3hGH0VM0S/k5OSZ9zFpUTOaY/e8ejlhE0BvnoIGcTSnXg5WMzeowpAhYlwJH5B8L4iSS5jioiGS8APpsvhBhKEbFg4OwduXyieQgBXSwhjHYOzDDwQFDSBMQyzi2DsWfqattQoMKoEOQLvvod13sd8eIQiF3y6KGK6//wC93hB/+SdfwsZqXfCJRQxfff1dvHn9Ds5fuIhqrQ5KqDDF7dzH/qP7+MKPfA6XLp6HYRhgjOPRQQ/v3t6FYVowTSspN4siuJ6LrfUGtlbrIERQLHU6x3j7rbewtXUKzedfgGFQsIih3+/im1//ClZW1/DZ174AwzQFuMId4zvffhMbq3V88Wd+HI5jAxxwPR+//6dv4qA9xplzl2CaJsA5wjDArevfAGFj/OzP/TzqjQZMc7IIOJaB81u12I8j6vTmww52Dod4+coaVhulJDbR9v4A2/tDPHduCWvLpaRvDN0A/VGArdUKVuulpK5HboCD9ghrSyVsrFSS9gtDhuE4BEltejgX/WLvWJhEK2UrNi2Jyf38Zg31ip2h/2EcGI6D2EfE5X+ij4URCASDfHqBCUIWmwGzwAaDirqolieLJwcwHAUYjANUSgZsczLewji8S9kx4aQWyYjFPlMju0iyWE80G71p41/UzezjWYJ/kJSAJPGwxCYvrmxCtJRDM+TpI/cxzcrQ8LRkQUk0hz792bz6D/vuqdQmjkr/wrlAfkURy9jZOZdURVDENIhAf+XK0Bv6meBxkzxJJFv2+eOei3duHyp+AYMSXDhVV+zsw5GPP337UVz2lF8ODC9cXoNBCEiOZPTPrz9CEKg+wfObdU0YBAlo4bmTDE8Qa/kT11rDxuZKBaaZ1T/Y6+P6B0eZfAJAxaG4fHZJQOVT7y7ZBq6eW054/iZ1N/GLZNt5AvPPt+dy3VHqjnMelzd7wpbtHDHVBzIY+cKvldOfWa/g7EZNOX24foihq9JqEYIEDZpOS6A4JbouC/LZWi0rfVWcMObr25M8fHh9oX9K81lRXtPfy+vlojprnhYL04KSaC590XtnefZp5jU/cKWeyTCnOX3RfoNqFhlADEbt8xpaGEDsynWmFdsyQDQOchmZNj/ZU2qAEppZlGQZfM2iBECLYgQIKKUa8xqJkYqqyarsWMqiJMrGlHwCgONY4l5V7t3Jbllx/uuRnrJOde2pc5wLvWr2le2sax9WMKmWisA5hf2laJyQ3L9CDEoATZ6kZWCevl30/JPodaJrAwCFlERCraMq0r/rSfK0ECHP/MK0kIUsZCEL+WTJM70wPeNmxo+lPJM1+gOxgXwma3YhC/lYyjO+MBXTeZyEnst/c4gbFOh1aRXpP0xedaJDBwq/iR7YIRznWT3jPI6PpJbNtnRoK+GfyVMJcS6c1bo7WLp7UYAwd3GurkFRxOD7UUz1UFb+1wAAIABJREFUk5V6RUV0EQKMNYAPzsXFRh09UFGtDsaBgnrknKNaNrWXavIB76SI+1t6c5qu3eQFb8XpDmhRmPI7+TwJM67+O0Uh0/vjQNueBiWavHIwXkA9VDBzRHFQwnzfKOrzQjd9fM6SzixjSjdudeOcAMAUIIX6DjX9WfO0EL080xds/SAqDBSmG/DzoG+8IMLYC0EJiRFH+ufldySzAucxdPUxz0/TSxRbHs1DCIFjGwlqT4ouVg0gLkKGEVcGi+tPymZZRoKyanfHuLfbQ9kx8fylVZQdI/FTUWpgqUowGIsAcIxxeH6YRJ/dXK2gHDMNeEGE/fYIS1UHI1cEgJN+grJjojvwUC6ZcCyBsPNDhm9e38FhZxSjr8ykHPuHbdy+t42rFzbwwnOnYuSfKOtnm5vYPRri9sNOPJmKIIXtvgcviLASI9cY59jZPcAHdx+i0ajhhWuXYVum4rfKS2fgY+x1cX5LUCsxxnF4PMAfffMGhuMAGxvrcJwSTIOiWjLxytV1VMsmugMfrh+BEIGWvHKmgYpjIIgEUo1zsZi3ex48P0K9aqNWETRAjHPsH4/RHwVYqTtYWyrFPicRELJSEpde0+wKpiFCQCDTn4Cjzhh7xyOUHBNbq9UkUCAQ+88MA8N4ISIEqDgmqmUbvWGAWtkUfZgL5F27L2iNBAMFkkCRnBO4PoNlkpgaSfiEyraJigMM3TAT0daM2SdkQECRX2DkhvBDBoOSBBFIiGQjyfZrQDzvBRFsk6JSyl5R0I3nKEb3yTbRPZ//TtH4NGJGCl2gQEIQX+OY6KXPc/bxH8G2nump9yOXZxqV53oTPpM0/Upa5kHOAAJ6G+QmfkDcJ7E1jvAwFNDt/K7UNIg23HLRuyWcOv9eAkGrokP6hRFT6GKAGNob5ytfNj9e9NJy1HHR6Yvw52l59eo6qmUrkw7nHDuHAxx1XYzcMPO8bRkAAbqDHNNCXJ92DpQwHAuuuFsPO5k8cc4QBT56g1FmwJYcC1/8iReV8gYhwxvv7oJQknHcEwDjYRuHxx2MxxMaHkIIfvS1V1AqqRx2RTIeDrB/3MX9R8cZ/QtXz6F5+RROr1dz+eJwLAPry+WMfuyFaA88EbE2JYQICp7u0M9MdpZB8OlPraNSshRutSjevOTrY+dwiO7AU0KcXzrdUK4+cC44GEuOmSwUkzyJDYjrZ0+CpklhUrXf2SZFyaZKn/SDCG4QKXmlhMA0iZJPAjHetH3bDZQFARBsF8VXK9T4X7ZFFQJgWR9F4IOicasLrT4t5LouHTmeJVluydHQzBTIJxGV94lbtnWLEgDwAhMK1yxKUj+vaN9b8CwhRDtwgWKTkh+oixUgQrXnFxlATKLlkkpVE0Vc+/zIDRQ+NCCeyHT5CRnubHeV+mOMozcYKnXo+eo7AXmx01DNQwB294+UYIKcC4JYQF2YCPR1vnPYx/busaI3KceptYrSDmXHxGqjpG2fsabuojjMuaJnXJCqapBbRZeo2z1PG5024hxWTkdii4BtqZsuz4/0fXJK3zY0C5ZhUJiadBjn8HyVSohD5edL50knRVlijGs/O6n9tjjNqnkt0k+TIgb3j0o+bMykWeVJFsBn2se0kIUsZCEL+eTJx2JholTviJRS9JnO6WwZNGZPzqYvnPNqOvmb5zLdsR+iH4cJmCUvANeyLujME5zzCSggRyUkb6Pn3xPF/gEdlczZjVq865/oyo6J1aWSsisfeyHu7fXRH2WBAV4Q4Tvv7+ON93YxSpkEg5DhnZv7+Npb99EbeJP8RAzv3byP7e378LwJISxnDIfb7+Phja9h1DvIlNkddvEP/9GXcefug4zj+Mb33sJX/uFv4l7rW0jHSdq58za+9bt/Bw+ufznD/B36I3zjq1/Gd996PT45CRmNPbxz4w5u3dlGGKbYy4MQIy+CUy4rO+BHhwP802+8j95wYioMI4a3bx7iH3/9bobJO2Icd3Z6uL/bh+tN3ss5x2F3jAd7/UzdAcJEfX9vIJi8U2UejAPc3+2jO/AU34tpUqWdLZOCMw4/CJX+cutBG3e2O5lTFotNhXkhBCjbhuirOX21bCYXfdPpHPdcHLTHKaYEIQYlKGnYvw0Cbd8GBO2VnfMpm4agEdONLctS2dcB0S/zdSFlVt1J621LZZBfiF6eaR+T54dcMmOnHfzz/g5MHJaZQRuHp8jb3oskCCK4foQwN6AdSzhodaLLUxT7m6STNv0M51AGOCHisubIDZLJJDv5TFgeJJrJ98N0zBDhJ+McOwcDrDTKOLtZzUwYrh/h1oMubm13wVPmkZJNsXs4xPfuHAmzZmw/v3iqjopj4vrt/SR2D6UEF0410CgRfP3bN+AHEcJQsA+UK1UYhONB61sIgjGiMAShBsq1VSxtXUUw7iGKAnAm6mV5eQkvNy/hK7//29h+cBe+78G0bJSry7j22Z/Gu1//B3h48w2EgQfTcmDaFVz7wl+FU67DHbbBOYdpmjAME5/5/I8hhIOd/ePY5yK8+5fPnwKogb3DPniMEGGcI/BdRFEEw7BAKBEXhinBy1e3cGpjBa177cTESylB88IyLp9p4L177QT1SIiIfVVyTOwcDRFGPGF8qDgmzqzXsLlaTkxahAgf3lrDwXFPgDs4n/im1pYcdIcBxl6YmKmE3zJCvWKjUjIzi6ppULT7LnqxT4sQ4fO5cKqO5bqjXZQcy0CllB0LYdxPl2sOQCbYwyAUoT322+OMOa3kGFhrlOLwFdk+L9NKX/LOgxUIIUk8qJEboGSbCTt+0diejIMst6RE1+k2l08qRe+eZ05inMOYY4X6uIa9kFJkyvvYUhLxOHOPQ9VM0wPCd8E1DAlFAIZ0R0qL64UYear/wDKp1k9QlE6Rfhol0Vhje+exDV/Xgq4faO3slZIJWxP7551bh7j1sKv4qB4dDHB7u6P62ThDEIbKO8LQR/twTz2thj72731HMf4TQtHYuKzxsQD3vvsHIFAh4Af33gbnEViUbYvLn/sXUF0+pbx7eesqyvVVJa+OU4JlO0r9RVGEKFLru1opYWV5CXloeMkWIIi8FLWbQQn+wqtnTmT33KhYWoqpw+4Yrqe++8x6BWvL6snQsQ1UHFPRWwZBtWIrp57B2Mfdnb5Sp5ZBcfFUrbDPA+q4lcCmWcdz0fjx/VBLz2QaNINYfFw6J63XlY3M4Zz6JC5Mz7QpT0cZMi8lCRDPhRp9ESVJYTqF+dQ7W+dJO62flcKEEDL3tU5KiHZC9EM9t14YMS0wJGJciS0EACxS+dkAIIpCcVKZUTgHOIv095I0ixIAWHZJu5s1TUvfPnS++uOcaMvMZYaV5/V3h+mc750mlBb01QIwTxGStGiG0CHbABF3Sl82Pb3RvON22ngu0vPC5/VIvKLx/6Tjtkg/63heyESe6YVpIQtZyEIW8smTT8TC9P3Ynzxzm6ATPPwXwznme8m8z09JSK8u0hd84Ums2IVpFT6vlxPrLnOW4UlaoCivT71sC/mBkD95a3tuaPozvzBNo/nQ0Y3o9DRGnumQbPOkU3SvJAxVQEL6+zo957M9L//W+W4Zm1LmAv+FcKqrz59dr8KgJBNEkRBgfamMkm1kyk4JYBgGDCOLiCIEME1bfJYyAREIM5tTqsPIBdzjnIOF6v0eSilWT12BYWZBJdSw0Ni8DGraGZOIZZcw7u0mjN6T5w24g06SPykGJWAsSkABid4Q4bTzCEdKCcIwACFqHXEmwqPn0WEijpYamNIPIrT7rpbRfR63EwHgaQL0ARBsCZq0B5rQJsCESiqfVhDHHsr3l5KtlhcQJuEgZJk7Z4/r21Gkp9vKf/dxetnnVTSu/vn0z+PyelJ63d8LUeWZBj8gMd/PB3jIl0kifYLUjXJJB6RD2aSpRKRIyhPOOfwwgpxTLIOiWra0kHZdOmlqozTdUsQ4hjEdECUkA9eV6URx8DLGBcqu0/fg+uLGfTqQWxDqL05O8iUmLgnLHXshXD9CEDLcftgVNEQANlfKOL9VB2McX/vuI7x5Yw+ccaw2SrhwugGDUmzv93B/pwvOOWzbRL1aBqUEx8fH2N3djfUOltc2YZoW2vv3cO/Gt8CiANQwYVdWYJg2CKEwTAuEGLBtG5euPo/G0goOd+7ijT/++xgNOqCGhXMv/TSWNq+gf3Qf3/uj/wWD9iMYpoUf/Sv/Bq599mfhukPcufEG+p0jcACrp5/D0vp5cA6EvoswDAAQnN5axdbmOjgHDo576PbHoAS4cm4VL187BQD4busR3r+7L+pitY4rFzZhmYYIkthzYVCCc5t1/MXXzqFWsXBnu4t3PjgCYyJ+0uZKBZZJ0Rn4eHQwSDZCri/64cZKGa8+twbHNkFjFJ9lUgQhEzx+cRPaMSSac0zQegAqJRGBuMhnEUUsoW8iIDi/VcOF0w0QTFhC5FgQyDiSiddlEEnDkw2GF4QsQYgOxgH6wwDSjWvHwS/LjomVmpNB20nRjVsdOk/3fPoznZ5znmGOeNJxnv4uICNKi/rK06RNy8+UMn9iwA9S8iCIjy0qDzNYHvIItsfpo4hpYwwVPV9EeUIA0Hh3Pcu7Zaj0fDqMc4QR197kLxdQFT04GMDXoPHKJWMuW40k7syvYZ2+B8ahwOhv3DvGB9tdBRp/3B1j93gEMxfzyPN8tHsD2HaWIcEdD3D7+tdBjSySkRCC51/5ITSWVjJOd84Y3vr2N1FdPp0Jcc45Bxk9wub5JuxSLfPu7Yf3QAwbppVlf1hfrqJer8Cxs2VolA2sLVdQz4V13z0Ud4mqlVJGv1J3cPFUHWc2su9t91zcfNhRFoyRG+DdD46VqwamQfALP/VcHGo8O5EN3VDpq5xzmPGEqYurpJN6xcJS3UHJzrbn2AvBmHqXrmQbKFkURu6YHjExaec3PZ4foTfylVhfJiXYXK1o81k03tQAkNOfP6lxHoYMYaQn49WJ4KGcnZJMo18sTAtKookUBb6bJrq1m9L570YU7QF0i1KREFIcQI/Fp61ZpehUVSmZ0GWpXrFRy3HrASI0vWOZSnqGYaJcKivPG4YJyy5nLsVKWVpeVVFMlKKxfkG7Iz195TPaIIDV+gr8QEXulUuOsigBQLXiKIuS1EdMRdE5toGt1YryvG0ZqJQsBV5PKYGulRkXp24dciu/MEi9Zc5HhVMtW8qiBEBrikvnNy+c6/sMpUSbFpf/+wicTk86znVfKVpoFvL05Jn3MS1kIQtZyEI+WfJUTXnNZvOXAfz7AEIA/wmAdwD8XQAGgB0Av9JqtbziFD68jylt/5V2YkLELp9qvqM7+nOOjBlOhHIQu/1q2UrMeWk/lhXb2mV68tZ/njLfiC/5jt0AXszCzDhHb+hj5IZYqtoiNEIqXxHj6I98HHXd5DSyUndweq2CkRfisDOe6mMCxC69UjbBmGB0ljv84TjAg70+AGBrtZq6/Cg2vhFjuH77GEcxFY9kp5b+DMlUTQhQK5kwDYqDzhj9kZ/UZxQGCMIQnYMH6B7tABBgh9Pnr2Lz9MXMxWfhHGfwgwhj10Wn20/aqlGvYmNtOfYrTJz3QSieFRQ9E2d/ybGxsbYkQi/k6GGM2G9wbrOWmCo9P8Lu0QBhyGFaNAPosAwRyv3l59awuSIurI7cAH9+fRd7xyOcXq9ipe7EYAmCtSUHFcfE27cO0brfAeei7V++sopr51eEeS727TDOsd8e46A9Rr1qY325rJxIDIIMI8LYC9Hp+7AtiuW6kwVuxL6izdVKQuYq/JUMRUeatM9LtrMXRMrJkXNxyZvF9S77HaUE60tl1CtWEuYlyXvMxKAL72KmQmKk3yElPZ4lWzeNx7PuO7NchmVM+qWyJyNCYrJZShDmyiDH96x5leM+5fNamPI+Ch9Ts9lcA/ANAK8BqAH4LwBYAP6/Vqv1/zSbzf8WwJ1Wq/U/TEmGpzvS435PS1qfBhzEiSoO3aJ00hKGDCMvEGau1LnfNAgcy0jQS1mHLk39TZKFLooimPGCJicjzjgOOuPMgkMgBvnptQpKKfu7oIHh6A59rDZKsEwjFewN2O+MtAgsGgMf8jQv/VGA2w87CYWNzH+tYuHsRk08HyujiOGwM8YbN/bh+pNVVjqeR26YyavU39/rwvdDgWTjADhDGPoY945w6twlmIYJkJhPMAaHSHTXZFPAMByNsNyowYwd9iRuY88LMRi7YIwlAAHGOQjnWF6qwrazPi3LIEqYCEKApaoN2xKxjNJdwqDCr5CeyA1KUK8I6iFBVSR8dhLA8umr6zizXhULOyEIIwbXC3HjfgfXzi/HsZYmi4jvR9iOgRKSrISA4NRaGbWKrXZKxtEbeQjDCZCdAGhULdQrdsY2RQAs1WzUqk6qXEV9niR1ZFtU9Me4z0vEmfA3Tb4h9SXbwNpSGSCiHpI+z1iyYKb7XhjF4SMw2zhPAxHkex83nuXfab1c3CRqL/1Zmo9Q6mXQTF0ZMjWny2vOTvgshL34fsuJ+ZiazeYdTHGnt1qtK1O+/jMAvtxqtfoA+gB+PU7vb8af/y6AfwfAtIVJcY4Dqs03j4rJ37gOYw6tvD6/4ylKR0rI2GQgZnZJSNLPfIert8tJPOvKSVUKJQQRAQ46E1LQOAlEjCvOdJF3glNr1WRAy/QJUfn2pKQXpXQZ946GSpwlzgV/Wt6nYRgUXsDUODtEgEHKOVeN/G4Q+3ySsUwoTKuEsxev5Xad4l+9P4NifXUp+3z8juE4C8GW+uWlqtavpHdQi1NjvmwyvfzpIoo3E4PcIsY4h2VSnF6vZE5mZozifOnKmpI+ANzd7Sv54eCF8cg6A0+pJw6ITU/+tBDnPz0WJuXhub9lOTCh+Un1mYhxxQ8pUH1UiVEl+2Q+TIT8PR8C43HjPAyzp5tkPBuzjecknXhRyn9GqT5PlAIU6njWzRdSnyygsx+QfmDlT97anjkExuPADz8T//vrAHYB/BGEGe5nIU5B0+QSANJsNn8LwBkA/zmAasp0twvg9Ey5nEOKJpuik/N8+vk617S0taczzgvjBRX16/SilEtqrnwVhfQuKgOHWEzVGEkyrLuaH125T3S4FiRWdKerqE6nnSF07cML9ISQ2HxTkOAcUlRPRXktBMHkN0+ZN8y+MScFz9MY1v4052G54dB9QE6Af1BHOwXMdkJayMnI1IWp1WrdBoBms/l8q9X6D1IffbvZbP7eY9ImAM4B+JcAXATwx8j25PlGQvqLcy8y0yfqWdM5SXna7yg23hbpnyA/c37laddqYdFO+iXz9KWTfO886c/7/JRPT6qvnszmcEoTFK7FJ9cD5s3rSUi1YhdyFn7cZGOjPtNzs8LFLzWbzX8WwNcAMABfgDgRTZM9AF9vtVohgNvNZrMPIGw2m+VWqzUGcBYCAFEo895dKIR1zrn8FcNDT25XVFiGk0r/5D4olCJ8RdEmIH+6Omkpyk/RaZBxDhVoLkUPChA749lPqCc2XxXVddHjBRkqbn5eeBKZGy5ddBKdM525x0hhf5w2L+jbc+48zVtHc8hwpDKjfFzl4GBiqp62SM26DP8tAP8ZxEKyB+C/AfAbj/nOPwXw081mkzabzXUI09+XAfxi/PkvAvjStATCOJBY2lk5z+/ybzO5pZ3Ve0GEiDHl+aJ0LMPQTjRM2yl5cjE3nw6Lbc/5fIMA9bK6VyAEGOfCjst0BiM/ccpKET4pGr8/O1rzgQ0BUc/1iq19vt0TYdnT34sihuWaDTNnNmGMIQxCdHs9JWyEZVLYllq2iEXodY6UO02MMQyHA4VdnHMO1wty+RRIP7+/jzBwAT5JKwp9PHpwC+6wBxZNwCBRFKBzfIjRsIcoxVTOogiDwRCDwSBTBvFeH4Ohp9ShqbnHQwgwGPnYPR4ljA8ynTBiOOqOM31POtdNQ8dQoA/XzrlgmNDJIA70mO97nYGrxC2SgI18XwU4IsaUfiEmYa6lTxJIOf241fV5ibrU6nOUYfL3hB4rV0+MZdOZlI1r68IwpHE2K1EcXyr/fGasFuhn+X0hj5e5UHnNZpO0Wq2Zv9BsNv8GgL8KoALgvwLwOoD/A0AJwD0Av9pqtfTkXQBcL+QEAiEzKzSzSC8GRiR4uRCHeYgHp4xFMy2ddKDBiPGEzqVkGyjHcWyiiKVoS5DQvKTT8oIIY1cE8TMoQbVkCri4H6E78OPgbwxDN0AYcVRLJs5t1mBbRjK45XvafQ9BfMN9famEesWG50f4YLuLwVhUa7lkouyYoJRgNb79L9PxQ4YwYvh26wDbB0NRFxZFNQ4WF6Ru+a8tlXDpVB2EALcednFnpwfOxSLl+mKiu3vvPlo37yBiDCvLS3jpxedRchz0Rz4O2uN4gmCIolDAzIddHO3dB4tC2E4Z5y9/CuVKHe54jN29RwiDAKZpYmvrNMqVKhhjGLle4rxv1MqwLQOj/jHe+Mr/i/bBQ1DTwqUXfwKbF15G4A1w/au/heNH74MaJl7+kb+Cl374i4iiEN9744+x9/AWCCG48vxn8NLnfhwAcPPG9/Bo+wEA4Ny583j5lU+DGga2d46xc9ABB7C2XMPzz52GaVARAC9u84iJOuVc9KmyY4ISglrZwguXVlApmXh0MMRbNw/hBRGqZQuvXl3Dcs1Bb+jjg+0evCACJZNrCBXHwPnNGkrOpN1CJjY8gp4qXuzCCGEkfJSWZSSXc8u2gbIjEKNDN0z67dpSCafXBFowDfOW9ERiLABy4qYUmciysl9HjCOIL3xXHANLNUfhrPODCKM4wCGN+7xpULC47uQokxDsPIpWxlPSjWe5R7BScP7suJ2Mcx2VkNwoRDkaovy4Tb97Fn2UY3ORJypCEpqnmY9XPyioPCCLzPvQcPFms/lpAP8rgFqr1Xq+2Wz+xwD+oNVqffME8loorhcmmStCJc17tO5qUEwAUC2ZcDS344NAzztHCWCY2bst8r2cc8UmHEYM/dEEip1+3g+5Ym7inGNzpZzcO0nLnZ1uMpDSMhz5yV2otFw+09AGMvzqdx/h/u5AKZ9l0swAluKHETwvQpCDYz3c3sNb11sYjsYZvVOq4OyF58B49r2+7+HRnXcRBuoVturyljZI3+ap81q72PU/+7/Qa++pu+fQhTvsgOdOYhvnXwQxSko8p9rKadiVJeXdtaUN1FfPKOwca8tVXL14SntSti1TAVxEjMH3I23gwK2VMgJNe37h5VNwNLQ37ZgyKi9FaNIiH+vGSklEps2JYVAtG4VYtFTwhEGBSslW+kzEWOb6QVp0dFuyDDp9EVURYwwKGhZxcFDNe40pNGK6cTstTzq9vBOlE9ui6fQXC9MJBAr87wD8GiY+ob8P4L9/0sz9IAghRIt80g0SKUV7AJ0PRECvi4K06RNK3+1ISxE9S6ThPZsmjOk5/QAgCPQHX90CSoCMWS0tYaiarIBiE4g3HmorNnAHyqIEAIE31gYZDMNAuyBGsWlKzY82OzGsWN/+rmZRApCcYvIyL/VQUd8ryutJWZUI0VMSneQ7pr37JHw7J5XO496xkNlkVvADa7Va3202mwCAVqv1frPZ1M8gn3CROy9dJyxCExXtaOd3Fs+XJ0KeALEIDSwagGWZWm66IrFtC66rnphM09AuBIwx5XQKAJbtwBv3Fb3tlBGFvrKgmZZAOOV9V5QaWr2csHR+n6KmoUQPxLAtqj3RmgbRchMWAS3kZiLfnpSSgk2Ovo1Pap6UfhyqyWtRn3+aYIFpMm18nkQ6Cx+SkFnvKxXJzCSuzWbzMuI+1mw2v4inj/5NxDKp1kyRdijOqm9UbTDGEx8OIPwq0oeTf940KUxIlnGhp6kb5unvBGGUXLRM+54AYQZZrjtw/RBjL0rSqZYsmAbFyA3RG/oxa4AwLfoBAyEsCT0QMY7uwINjmQkFDOcCfCH9VnkRfieGIPQTihnOBaXR5TMNnN2soXWvg6OuuNhrxGEP8kKJYERYqtroDX0MY2e8Y1F85sUL+NxLF/Gtt1p4/e33ETGGUrmCs+cvw7LsDIVT2THx0pVVVD57EffuPcAb334Hvu+jXC7jlZdfxuraGo7bXdy4dRe+L05Vpmmj2zmGZVmo1ERMJ0II1pYr+Of/1X8LveN9fP0Pfxvtwx0YpoXP/ehfwiuv/QQG3SP8/u/8z3h0rwVKDXzux/4yfvSnfxFB4OPPv/IlbD/4AABw7sqLeP4zPwkAuHPrXRzuC8PA6vopPPepl0ENA0fHXXT7wg+3uVrD51++CMc20R/5CcNG2TFxfrMG26LoDDwc9TxwLqh9Xr26jkbNxp1HXbx5Yx9+wFB2TLzy3BrWlkpo9z3cedRDEDJYJsWl0w34MWWPFTOJRxHDo6MRjnseLJNipe7EfQPYXKlgY6WMIIjwYH+AUdw+y3Uba40SGOfYOx4n+o3lMi6eqoGAZEJgWKa4AEwgTuBywaQEsMyJ3yU9TiIG9IY+HIuKOFDxZ5SIPp/2q8rvuwEDJSxzcbxo3JqG/r3TxrltGeAAwmASG0oATAg8P1Iow+aZS9LmOkpZ4ktOM1Kkn5d+cl36C9HLrD6mVwD8PQBNAC6AuwD+eqvVeutpZi4IIz4P/cesekA6jGNqfDoxy6k744k+vTim9YxzjMah4nshBGhU7SRtQuILqVwsYtJ/JPPKOTAc+wrlCSEEXhBhOM4ObkAgv/pDX2W/tgysLJUUkyMFhxujsuR3oojhqOvig0c9vX3fFHxh8hMJAGHxpCm/E0YRRmMfX3njDqhVTuzpBGLxPL1exfpyOeUcZwjDCHfv72B5ZS122Is9dhQxXG99gF5vDJK6tMk5sLmxjrOn11L2eo4oDHG4exenz1yAbTtJeIww8LG3fRtLq1soV2owTEHrE4YBjg8P4EYUpXIteZ6xCN54BM45SuUqaMxcLtqH4ex6FatLlQnzN+eIOEfZMpK4XOl+0ag62FqtJJOgMIdGuLPTw2pLUohNAAAgAElEQVS9lOjl852+h+W6A5ozLQ1GHnaPhA8vTVd1dqOKFy+vgdKJCZExjsHYT+is0vowYliqOXGMp8lkmQY/ZPs8wMEz+Zk2rgjiPp8CK8my9Yd+7rQnToS2OQk4mR63ggLKUPS6904bt+lYauk6lUCEWdOR4JPsI6IMsm/Kd8h0dNRG8e8/0D6mWU5MHzrsRavVegfAq81mcwOAG9MMPXWZl6pkVr38zNTY8HOdR0lL93sYMmVRAgCDUmWCoYQAZBKALZsmVxyz8pnBONTrR+qiBABLNUdr+hr7kXKfyDAoBm6gXZRMqvpMCIlPVTkfsmkY8EPALlczRLUcArySXpREOhSGSbC2vpl7K4FhGOj3XYCQZCKQ/57aWsk5qQkM08LFy03FeW1aNs5efF6xW5mmhXJjHTTIxuCh1EC5WoeccNJlXm1UsLZczdYHISiZFLWKGluqbBs4tZZ9nlICEwY2lrMhMwghMAjBaqOkbYfdY1cxD3IAV84upa5DTN5hW1Qx31FKsFxxFHor4SOa/J7Wywl31nElF0IlHY6Y+y/9/MSaoEs/T8z6uPFcpGea8Qwgs2HMp6PTM6bGZZNlyFOSyX+L5rCFTJeZwA/NZvOLzWbzr7VarQMA/2Oz2bzZbDZ/4Snn7SNtRK2PqCg/U/YzH5nJec6qK6JheRIxyBy31KfVXYF+GmXM/Pqichd9p+DxOdKY+o05+3xh2eb8zkmOtWduez8FqPK062IhTyazziD/KYAvxb4lA8BnAfybTy1XC1nIQhaykE+szLowjVqt1iGAnwfwd1ut1gCAHvv6jEqRL20efbE/rhiP+9Q3XwUvkPZu9fmCZE5on0sIQaSFGBZ9YXpaOiluM306J7WDnzsdzvXle4I+UfQVHVvH9DwV1V9BXy1w1k8bN9+P88Zc47nI0FFQd4VpT8nL4ox1sjLrwlRqNpv/HoAvAvjDZrN5DcDS08vWRNKd58P8Lv9+Er38PWJ6+hTLpHAstSrFrfgo8zyLnbGuHyrpAEhuuOcdKys1W0sBs7FcigPMTXQEgJ/cB8oOp5JlKHdOOOfYWqugXrEy6VBCsFSzsVJ3Mu8W6CaeUEal9bWKia2VMgjJrpmuH+LBXj+m80kgHOBMpYuR33vl+UuwLTMBGogQ3hSe6yJ21SXPEyJiR9kWVSZY26JKHQHActVCtWRm644AJZui7BiZyYZS4WzJ312TQfgaVUdpAxkjSpSNJ3rLoDi7Xol9K5P3UkqwXLNjH002r6fXq5kyEAjfTKcvIfc8869AikERP4yU+hbppUAymbYgk7bP9VX5e7pvewHDfnus0DCBALYmBBFBmv09Ow4Fs8WHH89Eo5f5lRu4/Gf5dDkXFEyUQnmOEJIBvaRFppF+Z9E9xI+r/NRnzio/H1ZmReW9BOBfB/DbrVbrq81m8zcA3Gi1Wl/+0DmYLhxQO0Hy4Qnp05/p9JxnI9gSMhn4GdhsxDAYBwLiG0fpTJygpphUh+4k1g8hQMUxtcggSbeSpjbinKM/CtAfBQlFjNR3+i6Oux5s28BKvTRBjaVQQ3YMkZXoosE4iKHcE6TRYOTj4cEAlBA8f3EVy3Un0b9/vw0/iASdUwoZZsWRVztDL4HC+0GEB7t9DMYBwpAhjNEQpkFx+UwDy40S+kMf/VQwQztGMBmpuosihjsPdnHvwT421pdx+fwpWJag5wkjQc9Tr9g4u1GFZQrIf2/o47AzhkEpqmWxsMkyD8cBKCGoVqwELTV0A+wdjQAAK/VSwj/nBRG6fS8BGazEdZG+aHzpdANrMfoxCCPsHY3g+iLycDXFtuHENEErdTsBOIQRw/29Pg47LpZqNlYb5eQu0nFvjI4SH4uj3fdw3POwsVzCS1fWUErYStLjeNKPJFRftP+EkUIsqDQOaDjZrEQymisEGlP2o6IItvIzAOjGUZdFOxOcWa+iUbUzkWo5F/mJGDLw8nSfz4MY5olsm/5Mj6ITko9gPG385/XpSNXpvioXU86LqY3GXgjXj7DaKM18yHrWUXlPuhCdSATbZrN5CcDnIEbAm61W6/4T5WY+eWzmdEick9QXURLlO56UNF9eRh8P7LwQAizXnLnydNxzFR2AZFHIi20RLULvqOtq2QjKjuDXy8v2wQC3H3YUdJgfRBi6gTIB9Ec+3r93nNwXk2JQgq21qrZsMhx5XlxPf3n30plGJoy4lN7QU947Tfwg0j5fK1vJ4pyWpaqN81v1QuqhvNgmxbULy1oKq+O+nj369sOOdgBcOq0vcx5J+Dh9xTG07SzzlW+HMGJalgrPj3DUdZW8WgbFha2algmjiGKoqJ2Lni8aI/NSEk1L6yT0clMhZbEwnQAlUbPZ/JsQ8ZR+CcAvA/iTZrP5158oNwtZyEIWspCFTJFZfUy/AuCFVqv1r7RarX8ZwCuYhEj/gRfdss4414aQAIohxTo+Mc6h+GqEXvW9SL0X+63y+sHI19L5pBmWZ9H3hj56Q3UXHxaYRcKIaYkrgzCEOx4pes554mObtWxjT//83sFRErI9Le3uAH4Bf59ODE3oCqnX7fj9MEr5dyYSRSwxZ6VFXJ5VKZKk70IntZiBIS+eH2rbzfMjbZ/U9SNAnKN0MbIY51q99Gsp6XC9nhB9JF1phtXlaV6wUFHZTgqMINn+8yLHZ5Felycdo8pC9DIrJVHYarUS+1Gr1Ro2m83vW/Sqx/mM8kfnWfTptKbppW1bUuNLu3UYd0rbilApWaCxjZlSApsamXAIlABOEkqCYTQOMzQp/VEgQmCUrSQcQHqil/bwsRfi4f4Arh+BUoKVuo2SbWLkBmjdbaM38kEpweXTS1hdKoFz4T8JQgYCoF61UCtbiBjHzuEQ3YG4nFt2DJRsE2HE8PbNQ9x80AEI8Omr6/iRl06BUor7uz3c3+tnzDWccxx2x9g7GoFzcYlWOu/v3n+E77xzA2EYoVSuYnXjLEzLjn0MIfYOfNi2gfWVGmzLRBSbicZeBNMgWGmU4FgGxm6Ah/t9eEEEgxJsrlRRLVsYDAa4fv06er0uLNPET/34D+HqlfMYjlx87Y0b2N49BqEErzx/GZcv6FjAJ1IpmXBiP99gFIhFmQCbK2VsLFdASBy6wRXtdtgZY+94BEIIzm7U8EMvbqFkGzjojHFvpw/GU+FKTArXj9Duebi/20e9YuPVq+uoV21EjMELWHIZVvr6DEpQK5tYqa0giBjuPOqhm9oo7ByNQCnB5nIZ1bKFMOI4aI8w9kKAAOtLZTSqguEiHdLCNAhMQ5jErDjuk+tHMChgx+atdN82KIMd+zcpJXBsC8AkjEUCgAFQr9oIQpbUUaMq/H5GLoxFxBj8gIH7kQgJkvL1ca5SCRGip/NJ+3MA1dcjGSPSmy/TIIm/UTf+0++QmyFp6rbMCNWSAAelw2SEEUt8xGlKIumHTm9q6hUbEeMYjmffMH1SZVbww/8JoA3gD2LVzwFotFqtX3mKeQMAXrS4SNF1rqeljyKG/ihQbOmUIEFlqYsdFD3nHN2hn9wWT0vJNrS7zIP2CN1R1o9DALT7Lo4644zfhxJgdamElUY5WxaInf5gHAA868Br91y8eWNfIA9TA7lSsvDc2SWxE0x9wQ9E3KeQTXaOBIJl/L333sVoPEYY8+PJi6xbZ68k1D+T+hXxjQwjx3gBwPODJI5P+vne4TYO9rYzaCfLNFGtLyHghkD6cVkGigvntvCZl55T6to0CGoVO1vfcYM1qrbCSDByA7x18wBhOEmfEsGcceXMkjiBpCqJEGCt4Sh1TSnB55/fRKVspV4bl8OYhByR744Yx51HXRz1sic0ieTLMxIQIrgWlzQhLUyDol6xMulPE0oIGlUrcxmVc9FHRIytdNUJBNxqowTbzlIeyQ1Y1l8rfF+SwzGdpwRRF/+d1kswxSwgCQlemqAfZxjnLA7AqZkaKzmf3OP8THYctiT/XjLHLd5Poo9p1hPTr0NcqP3V+O9vAPjNJ8rNnDIP9cjT1gcR1zqjBQhCpTARotIkyYlEe+tckz4AdIbqLosDOO6qVDWMA5WyrX3e9SJwTSEeHgwUx3YYcTiWoQV/DMcBwohlJyYAg+EQw9FYif5qWhaIBoABEH0MHCAhis3oOXCwv6OwgAdhiLHPQHImpTBiOHd6XVvXjqXZBBCCkm3EZpfsZ92hjzDMlplxoGRQhBFT3kHjts7rDUqU+GLyGV2oC4MSBaEHiLrQhRXhHCm0XlZsTXynzBdzn8n85PtwGEZKvyNEhGpx7OxJQYwpaPpRcZnzC1JaP41dXZ+OfjzrRKAl1bIBoh3yc0N6wdHpdXW3kMfLrFx5IwB/p9lsqqN1IQC0Y/ojle9LVgiBbpV72oOvKPWi1z5ZboonLu3KPqc8i1vg+TB9KAxpsZCFfFiZaWGKL9f+RwDqsUr2ST3uciELWchCFrKQJ5RZTXm/BuDV79PdpUR0l9uKgA3pz5+WvmjnXXRamvWOWCYhzbslcktnXiAFHwh01uz3NSxDXLbMo7Hytn4p8qJuXnTB9mQ6uq33k1AhEWqARGr8KcYYDMNQ9K4vHPJ5sx3T+ClkXnV6g+jLrDfwFrc/Y8IXMytoBxBmpLmiDRe8m/Piezb65wvodoj+tCQBC0o6j2nnecchm3M8F70T0JgLC5+fns48+oVJb7rMChe/+f1elAAkqJtZ0HR5xE6RPv0TBFGGYijtTNc9T4kIAxF/mjwn2Gqyz7IY1dPue4jYBBkk09dRGMm4Q+nnBEKPTaiK5LMQk9Urz60JyqDUjX7ToCg7FuxUOASJoNpvj9Ab+ArU9dr5ZVw+U0/ocOSPkcpTul4oEY5ggsmizDmHU6rgzLlLMAxz4vxmEUbdPdz8zh/AT4U8Nw2KjZUqPn1tXTA0yJg8cTnWl8tJIDypB+fYPHcNpWodhEyoigih4JxlZhURgoHig4dtHLZHmTIzxnFvr4+dw2FWzzn2O2PsHo0ysF/GOSxTUDTJukFc9pJtTpz3mOjl5VwjFcuKEnFZ9LjnZtKXTvpeDBCQ+jBiGLoBXC9M6K3SdbRcs1GyJxsQ2WbLNRsVRwWU2CaZ9OFUfx17YQLJF5sI8R6BoouUvh3GSE8xDlJjhokglBFjmbJRQlCvqLRaNLXgzjqe7ZwPK99BZx3PRXqSGecTMU2SCjGizknpdCWIoh9f4ciXYSHTZVZU3n8N4DKAPwGQeKRbrdb/9tRyBsD1Qg5MaHmA2ShDpulZvEikb/kToqcYks9zjgybA+eCxocAqJatFP0PYuc4R2fgT6CjABpVC5WSlXwu0wlSUUrTKDDGGIJI3BZP0/YAYuKplsxMDKDjnoub9ztYaTg4uzFhJAhDhv3OCJ2+hwd7g2QSsC2Kc5s1hUFAIs9YxHFmo5ZAYWVaEWNo9yesCiIAnAfPFxOodMYzxvDowS0cH+ygs3sL3qgT1zXFxed/GNde/mG89sIZXDjVSAb1vd0+3rt7HMOaJ9DfsRfiuDsGY1HmTsl42MPRzl1Q04ZhlzNtZ5oWSuUKGsuTgIJlx8Rz55YTRJmsC8cycO38EgwqIs+mUYnnNmowTYqDzjhpT5ZMOKKOKvFVAM55AnY4u1FFLUbdcS5QXq7PcHq9gnrVTvLqWIJ9IYwm0WIBSTfFcW+nj/u7E5i+ZVKsNEqolMyY21Ck4wURhqMAjaqN85u1pE/K+1aGQbFcc5LFn3GOkRsmC5+cBggBGhUblklh5+DOlBBwAnRTfVsIBwGBZdHMfaZ8FGdZF64fwvMZSjaFY6ufi3w8fjyzmIuSpGi7niQdkZYY5+J+1eTZIBRweHmVQ+rTUPV8OgCBH2XvCNoWRcWxBGCIcZQcDXFggSxQecVyBoAH4As5/VNdmKQwNt2hPg1hk5cgYIpRgXPRyfMB1wCBesqbUAghqDimlpIoiBjaPS973wfAcByCEqKglXQh3eVn9/f08Rg3V8rKpc/VRgmvXttQnjVNiruPegqqyw8YXC9ErZJF71VKFl66vKYshoAwiXWHfmZAUhJzAI69TD1RSlGr1XDrO+8g8CcwZ84Zenvv4+f/xi/BcSZwZkIILmzVcXenp9RDpWRh/6inTATlagPlxloGAShlffMUTCsLlx57Ie7t9GDmKGm8IMKDvQHq1WxdhBHHw4NBZnEWZSNYXy6jnqs7QgiqZRNn16tKOy/VSrhQt5V29oJIQW4B4k7T69/bUay0QciwtuQotDqOZeD8xZqSV9s0sLFcVtKnRHD75ZGPPEbP1SyVAmjsh0rASpmWDu0nwsdnnyWEoOxYKNnF5qxZ9ZQS2AVURfOkA4g5JggjBUFXckwFNUiIODkFge6CPYGruWzuBwwGCRcmvBllVlTerz7tjCxkIQtZyEIWAsyOynsA1dcZAmgB+Hdbrdb3TjpjeQkjplx4nFc4L3bBFkKNCbSggGnZsEyq3AkyqAhHrr0fYRDk8QKMi1vwQY7Rudgxy+H5UcJintY7tgHbogmruZRqfLExTzq7VBOmnOPchc6lmo2yY2LnKEszVLYNbK6WsXOY1ZccG596/mW8d/07GUDE2uoyTq3X0B0ESn2c26xh92iUsHcDEqSglpkQ4PyZDewftjEaZ/Nar5YQMaK0w/mtOvyA4ShHhLvaKKHkGMpJ0bEM2JahEPBWSyaWqnaGkQEopp2hVLAO5H17lIh3SJNRWs5u1rB3PMq0G4HY3evAHK4fJneJZhHToNp+oaMXku+2dX3bECf/fD962ocDzsWld0qpljZq3rR0Mi1Vebk58zwRTC15ii5C9ON8IXqZ1cf0GwBOA/gHEAECfwHCtPcegL/darV+8mlkzvVCnrcJ56lH0pJ3lqb1aZqfdJrCv6Qe1fPpsJhiiEOYx4ycqUbYoye0/RHjGLohooijXrFQrVgJxl7SraRvqgPCTCNjNY08liykIzeEH0QoO0bMRJ4tm+uHaPcngAYRT8iC60fYb48SWpb+0MdBZ4xyycQLl1bikAOC0bk78GEaFGc3q4JxmgPHfRff+0Cwg186XcdSzRYO+qGPN97bx3AcYmO5hFrZEr4gP8J3bx2iN/Rxeq2C1aUyGAsxHg3xpd/7bexs38O/9kv/In7tV34xDl1BcOdRD+2+B9MQE6o0Jb139xgP9voYjn0cdYYJOEDKSqOET11cSyhmbt3Zxns3H6Beq+CFT12GY9sAIegPPRx2xlhdKuNnf/g8lmslEAI83B/g9ff2YRoUn39hE8t1Ua/9YYAPHnURRRxbK2WUY/9RGDK0Bx4AgqvnlrCxUgYBgR8KM6Drh1hrOFiqOcqCUavYwq8U/y1jIonFzUlmv5EbwAs4bFPQU8kyv3+vjXu7fVRKFjbXKskGTfji1M2aTFeHnFQABRAce52BWNiXa04OTKGOhYhxDGJarXrFEuE94jEyjP1W0r80LZ38+NHpdd/Jj2dADQ8zazppf1F+rpEhWKalI/zP2VAXUi/pwGR4DylBEMHWBacqkA/rYzqJ+EhPQz502Itms/mHrVbrL+V0/6TVan2x2Wz+SavV+qkPn01V5MKUH3h5mg8g21ny+nQ8mLTe0NC/zNOppV5yZOmQRE58A18X+yWfV8YYDjquEn6Bcy5i51CSmfQ452j3PLi+Gidn5AbwcnrOOSoxVQ0l2TJYJkWtLBFnEoAhFtv+KMjoOecYjQPcetgVc2oqT34QYr/jKmUDD/HzP3YJZceC40x8M2EU4eaDruAVTD0fRQy/88ctHLbHmdMqIcCnLq5hbbmSORkyxjAY+fADpjBJXDhVQ/PCSg5cIgAsIWOgJEsZ4wcR+kNf7XcmxbmtOkiqHWT7u34YIxTTExmwtVpVGAk45wmnYLo9GecAR6auZV08Ohph5IbKycA0BO9d/nhSL1sJX94sfZgjjSh8/PPiZKDv2zKtWcfnvHq5AcwI5zDieF66MshFaJZxSwhJYnI9ri4el1f5SX7ckjlMP5/EhWlWuPhas9l8Wf4RR7C92Gw2LwJofMj8TRVd++mcxfJvnV53/4MQkkxUutOSTq97x7TfDSqoivKTSVFeAaKNCSTzmt+JE0IKg7fpTEMStJE3iRJCEgRWWk+pMD3m9YQIE5lB1QmRcaKlhlmqV1CtlDKLkixzFHElHcOgOGiPNPeqgJVGWYlrRCkF53p6o1OrlUzQRlk2ShG3UbZskYZGCBAktYRk20E+R4laZpm2zmmva09KJFRfrQs/iLTmKl0bAJP4RbP2bUr0fbuoz9MpfTu/KOXfrTw/53jWmsPiMhSVWfc7Sy1aaX1ybWGGunhs2aAyrM+xJn1iZVZU3n8I4B83m81K/HcE4G8D+DSA//JpZOzjJ+k95zMs34csEugvX350coKF/hg08cdNdFaRhXyyZVZU3j+BOCGtQZyyDgF8odVqff1pZm4hC3nm5GOy/1jIQj7OMisqrwHgrwFYj1UOBNP4maeUr0Tyu6n0DepZ9TrWHulYLtqt6fTT/XGaNDBfXsVFxWmnjeysyLmI/xSFTElf2NRVxuswZGAm14QEFzb3vJ5zrkWACVOImsMi6qQgvq+TT4sxDhDBGJAvQ8k24QWREkrC8yPFNCc/08nIDRIGhrQwJvw3Ru6SMYG+/dNIwUw6nGd8Geky6PLEWNwzZuwXjAl/KAsipZBFfUXGDjuJvq1LQ6As6YmMz3n1hChkD4k/Z57TV9FTRTVxsmVY7G6myaw+pt8C8CrEYlQH8M8B+FtPK1N54amBrzhaNZNCXm9ZRjIppZ+lVH1edhrpLJ1FTynJXGxM8kr0eR3HKDjpeJU/fiBuw+ddCbZJUMqVgTGOwThAux+DH+I0GBOw8XZvjJEbR32N9X4Q4Z3bx3j/QScOWSG+I5kQ9o9HiOKb6VHE4PkR3r55hHduHSXRUVlMUfPe3WPc3u6KhSMur6Rh0rch8NW3H6Hdc5PopUEY4c0b+/i9P/0AD/cHiZ4xjuOuixevbGK1Uc7MxYQQvHvnCHtHEyohxjhGboCdwxF6Ay/lOxA+mPt7A9zf6ydlC8IInb6L//tLb+Mf/ekNuF6QfBZGDHvtMY56XoYaCBDoyO2DAYJ4sWRcPH/zfgdv3jgQKEw2YfuoV+0YqJPtA2HEsHs8gutHSRswzjHyQuwej5Jge5N29jF2AwQpahsCgSZdquYoiYAE4Zjvd4xxeAFLogRP69ty5jeMLPxcfu4FDL2hLzY0+b499JO2TJfZ86OEhkn+RJHor3lqsGnj2S4az5rn88CGzLtTVEjpMufba5Y86fRFZV7I42VWVN4ft1qtvygReM1mcxXAb7ZarV9+mpmTlERAzAGXo0gB5j/xyNvd+R23bsc7r55zCSnnCkVKxBjCOEJr2qEvqF9ElNM0SENOiuUUDxsgJuG99gjHPU8E/EvqRzhtByM/pxf1NnTDTLh006B49blVWPG7pRAiBv5gHKB1r5OKfQOcWhWBB7976yhzZ2VjuYR6xUZvFPz/7L1prGRJdh72Rdw1t7dV1auq6aruHvZM58xwuA0pU6QlDUVTi2FKhkzBNgxQhAQYlgQLMCj/EQybFAX9EWhCMEDIP0xIIgkYhATKlC2bkCmLImVRNIcUh7P03Jnpvbqrq17VW3O7S0T4R9y4GTeWfJmv8lW96s7TaFS+kzcj4sR6I84X37EQdGFA0U3DFlhB8riF+BdfeBcPDqeNfn+3g899ah8fPJ60bJhMC2RvP67vq8zTSeMAL97awsm4wKnGbBFQghf2e0jjsAEBSJsJkhB478EJ/u2X3m0WtjgK8MOf/zS2Bx08PJq23sb3BkkL9tzkXeuyd45a94A+eWcbw5d2cH2n07AzyElKRoutWJvKJo4o+mmEs2nZqtMopEjqu2R6XRACbPcT9DoRUs02xgWKokISBRK+rfU9RYNTGVvZJKJO0AbQhl8rG/KCoaw4SmPnGIUS3TrLq9ZuOQ4p0jisefO0tAkBDUi9GM31qu9d5nhuXrwc23rT5kXp+PS8fgEwbaNEUjZpzy+9ZboqlETrRvetg5IoGQ6HPQB0OBxey7Ls8XA4fGU9xVtOYk/gs1WEEGJ1PPP7ZXRKby7qhBBEHoohIdyB78pK7kBsRBdBx+ARA+SO8d7DsYVW40Lg8dHUuvDHBXBwPLXQfhXjODydWVFOhQDeev+0gXzr+m/eO8GpQUkEAMejAg4wISiV0UlNGz54PMHvfPWBNTk8PJriG+8eW893OzHiKLSOCGcFwzsfnNmTDxdI4tAKxlcxgd/5g3dw/1Gb9qgoGb76xgG+5a5N6ZSXzLkwHRxN8fBoYpXpdFLg2nanRRkkd+dyEjWlKDkOy9zSlxXHA+MiMyDbYaefWPRZASX1caV9CGIGdFTCuIRYm6LfFdRtIJRYi5Iqq6sPlxVHQG09FwKstI+ZV91MXGQ8y12//azLZpWG6+Xdp4eQx+Wm+NjeN+KWZWf7nwfwXwL4XwC8NhwOzwB8edEPhsPhdwP4FQDfrFVfAvB3APwCZDyG+wB+NMsye1RuZCMb2chGPrKylI8py7L/Ocuyv5tl2c8D+C4Afz7Lsv/4nJ/1AfzjLMt+oP7/rwH4KQA/m2XZHwXwFmScp6WkNJzglyGuNyDXubA8Sy+bMAHLCAFqpuW2npKaecJ83rPJZVxgbztFYpB1CiEd5Pa9EmB3kKDXMUN5yx1NVTHLhq1+jJv1sZ0ue1sd3L3Zt3xgPhqeThw6bT4Z55gVpfUW2UlCdNPQsuHs7BTvfvOLmJwdtfSMMRweHmI6nbb0iv7JFALgky9exyfuXmvrCcFWvwOX21teMC6sOhp0I7x0a2ABKgbdWLKsO/pqJwlt/2FEcX07ddIIddLQSj+gxAofPy8rb7GvA+rCMHe2M+OiCWnR0rP6SFrTq3HgqtcopM52DgLiJEYmBDUBsqF3WrVeUffXTOEOmy8ivjlqg3VYTRb6mIbD4V/MsuzvD4fDn3J9n2XZ/9x/ZisAACAASURBVLDgtz8M4IeyLPtvNN2bAD6VZVk+HA7/fQA/nmXZj/jS0CmJAHUkAotZWf9+lW23fn6+rL5iHCPNl0II0EsjLz+ZK29JPcMRBbQ10MuKo+ICUX2sYMpkVmFWKicxMJqWODieoCgYSjZ35KpwAHEcoFvTxQghj6U+eDxBEgW4uddpLsISSH9AGNIGxCGEZEZ4/d4Jyorj1rVuU6aKcWRvH+H4LEevG1kXdsOAYn+3gzQJQYGGVul0nOO1Nx/jgXbkGAUyz5dub+Hadqeh0clLhtPRFF/64u/hta98CZxzEEKxc+MF3H75syiKAqOzMyikYrfTwd61a9jf6+H2jZ51pJXGAXb7kv6HM47TcY5f/53XQSjFtw9fQBwFzsu5AJqYUzuDBINOjL2t+ihNyMn9G+8e43RS4ts+cQ27/QRBQGvwQ9SEvtBlmlcoSo5r29I3p1BmJ+Mcj0/mR6iq3xQlw2RWYbufYG8rtcAgOiAChMiXnYCi4gLj6TygIgEaBhEhRPO81Ad17K2270TRdSnOxqZMlfShdDshIhUOArJvlxVHNwkdIVPkwtYKE8M4GBPNUVqr3i9xPAsxpxJy2ayorpZJX4lJbaR+Y9pc6zc+pifwManXL/tw/HzpA/gjw+Hw/wLQA/ATAHra0d0HkPx7C8U6n+ayUxGyuk9o2Tx8+qJkLUc0IMsyKypEoR3SwJdOJwkR0DYVClA7kT2/OTrLGz+BRFDJt/YHh2gWJfVdEBCZR6DfVpf5vnx7AAEDMVg/oDueCSFIY4pX7mxjPC1b5YlpgJfqdEyJQoq7+4PWrodAvun/xr+7V6PZ5s8zwfEdr96yfDJpHOJ//ZV/jMlk0oS1EILh5NF7QNhH2hloE4DAZDrBZ/Zu49aNvrXj2upF6KdzXxcNA+xtd/AffN+rOB0X3gVJrx8h5CTaCjlS7zo//fJezQqhTV4AxpMKvU5kQe07SYiPXU9bzytQw/Eob2Jaqe+SOMT1nY7cES/R57kAzqYlTHeQAOSLjzF2BKRtlDjCuFjErHWZItrQbTU2QL6kucoVhrSZbMyXGNX0T3M8EyL7ZMVsfzBjApQuH5ZDAUNc35vURheRXjc+t48+DblxY/DU8lq4MGVZ9g/rf//mBdL+IoCfyrLsnw6Hw1cB/BoA/fWRYNGVnQXiW5RWQehdRO8LbU3rKK+uvudOaz75t7SEePN2hlUnxGIx1svkG+iuIeJjbpd2OeqCCSfrumunB8yZr83nKaFOhz0AnJ2dOY6ZGMIodVIVbfXtOFWAjEnkagPOsdKAjz07dfkC4GhPtV00j2+p+3lKSLMoWXlQ96K0Sn+RefgWAPfzvjxUvS3bh1fV+/Jdq97SqDJ5vvCkdd7p35MsSgAwnhTnP/QU5ODAHR/uorJooVu4MA2HQw5/+5VZlqW+32ZZ9hok+ziyLPv6cDj8AMDd4XDYybJsCuAFSADERjayJtkc5G9kIx8GOe8oL4Ic7X8DEoX3/9S/+SEAry764XA4/EsA+lmW/U/D4fAWgJsA/j6AHwHwi/W/v/pEpd/IRlpyJY7iN7KiPOmOYiPrk6vCRL7wHCPLMpZlWQXJi/dPsiw7ybLscZZlvwTg+89J+58A+NPD4fA3IGHjfwXAfwfgx4bD4W8C2APwDxcl4OuuPqSc/u869CYqyRdAjTFFk7JcHs0EusCBa6bjOSGrL686jnIWIBhd8wDzRDDz2RxHQUO5pIvrDgcApHHYnOvrIiCcd2MoAa5fv4YkboMH4iiCqKbWsVoQUByejJ1554WNPAOAaPmQOAAwv4hspuU7+mWS4d1sC+kgd/cXF0ITQH1Jddn+5W+3ppn134h5rCuzzwNusME6x9vTGM+uz25QhGiOidcxns8r00bcsizzw/8H4OcA/GtIQMT3A/irWZZ992UWTgghzFhKZnA9XS6CsltVzxjHaDqHA1MC9DpxHeRu+XTUrXV9PQioBC4wJlp0OOq2fVVx6PN+rxNi0I1w/9EYr711VP9GLlbbvbgOVlg2/q9BJ8LHbvSRl6yhAAKAbhLihf0+CCTIgrE6pg6RaD3GBY7P8hqJJfMoSoa85Hh0PMGkpiEihGC3HyONQ0QRbcJ+CCHh/rOC4atvPsZb90/BhQABwa3rPextpeimIdI4lH4UAtzc62BvEOPX//Xv4Jf/918D4/JC5g99/g/jz/ypz+OrbzzE//HrX5HUNwA+8eI+PvfZl0BpgPGsbOaKNA6w3Y+tqL5czOt1PC0bzr4woBK9B+B4lDeLZkAJdvuSBWJ3kDSMEpQS7A5SxFGAyayU0V2FrD8Fxb62nWKrlzR+JRlDScYO0vtyVXFUjONsUuBsUjbLvhloztfHdFRZL41QVly2Z91Xw4A0KMFCC5dCCJDUrComQk0CYuaIMyWqfc2+rYJSPinKTqH1XCjcdY5nRVGlfyURmqsHHLTGswddW/9m6beip4nKe5o7pnUECnwVElX3bZAbma8A+FtPIaS6AGRHqBh33sx+Go5TwEAxCRlgjHFe7wQuXiZFXxIaUXQ5rxdA1t6XCCEQhhS9JLKi3/7u1x5KiiODty8MCAbdGD0NuiyEwOHpDHEYYNCLW/qjsxkYkxQt+mB8fDLD6aS0HPSjSYFpXqKXtlke1MRt3q05PJ3ha28dYne70xq4lALDF3dxbat9r+f0bITf/K3fw/d817fi5o35HaRZXuJX/9+v4/b+LvZ2ei0bqoojiQPrvlfFeM3v1q7Tikn4vk7zI4SkEeJcBljUbbu+08H+bgf9bhuNOZmVOKu54nTppiHu3hwgNqMlQ4IhTGAN4xzHZzniOLDAIb7+lUQUcdSmsBJC4GSUg1JJfWXaTAixgC+q3c3xxjgHZ8LRVwUY51a/oETyVK4y3sqKgTN7L65TSy2Tzip6IUTDffikc4xvPDue3yxMT0pJlGXZ1wE4efGGw+HPZFn24xcs21JCCPHeXbps8SHb4iiAEHbnW1UkQstNheILGjjoxhZCKwopdgaJE967t5W2Fitd78o3iQLksNMJAwruKFMncR8nCiGcKLNBN8b+tZ7rRAw3dztWmbYGffxHf/KPWemkSYTv+PRdq54IkTsDF0KPC2Eh1giR8PrI8YbvoiMC5ATUddAtBZQ4j0WrijvDoCuotp0ORcezS/JJEoXWaYKywaxr18Jz3ncSGeg7trTb+SInVj5U4mUKIfKkgnoWoFXEN543spqsAxz/nWtIYyMb2chGNrIRAOtZmJ6KLDpy9H23Dr3LMbvOtGe5PPrRdzpCCO/9JAA4GxeY5WUrzVlRIaC201sSlD7GW++ftJzwRcnwzoMzvP9o3DpGykuG7J1jvPHeSatMKmxGFLWd8/K4q2qFv1CSxvKYMDBobKKI4uO3t9BN27uR3X6C3PApAsCjkyn+7Zc/wPsH45bNp+NCMpEblEFhQLDVjy0SVwKgm0TWLigMCD52vYcbu932xWACbPdj7G4lln53K7F2rcrPIIlFW19hq2fvctVxWl4y67hzVkimjNxBGaR+a8p4VmIya/cLLuZxx0yJQmpRDAkhQ1eMlN9N04+n0vel7wjl8yVmRWWBPFa9E+oD4Khqu+xx7tIVZSXp0AyAxGRW4mzSPrJV7V88Bfq0D7s8OWX3JYsLGeT6rM5vXQiYVfWLyrFM+ZbRszqekurAZ5MCYUDRSQJMZlUrVoyeDiHSHzHJGWYlRycJcHSaN+wMUQiEgmBWMBwcTXE6ziGEnMTffzTGqy/uoGICj05mNSiixPFZjtvXujg6y/HNeyfNIHx8muPujR76vQinYwmiCAOKgMqLvdOcNeAKAMhLjpDKo71+N24u+UYhRV4yTGcVojCQfHGE4FvSCKNJgUcnM7x8e4BOKo+cioqDEnnE9dqbhzisYyOdjgu8ef8Un3ppFx8cTvDoeAou5GI6mpbY206xv9tpfF2xEOgkAUaTuuz1uX8EgaQGKwx6MW5d6zUcdlu9GAdHE1SMY6efNJNiJwlxOi4QBRQff2FbewGYA1TG0xJcoOEsZLVf9O5+v2HVmCO7gFxzuucVB2UclBKcjHIUpQR1VNMSM0rQ60Q2otHowwo0k5dMcg6CtEA06nlK2zGWggAoygp5ybVjUYHjUY4kkiCNyWxObXQyKpBEFFEYaO0vMCsZAiqPFBVo4rxxq2qw1MAV+jNhQFsvNhcd53q65mfzeQXwkS9m8jMvWL3QklafPx0XiCMZ3kMhUtWLJSFoHaGb9m/EL1d+YQJ02hYtkNkSeiVPQ+9zqrr0jPE6NpKA7gOViCzbt+PbtXEu8N7BuPV2RohkFbj/aFQHCqyfFTLEwlv3zxoqGVlGgAmBr751KJFgBijg8ekMTLTLSYiMXmvSMwEAoRRb/cQCQcQRBeft7kYpwaAX4+a1bvNcY5sA/s0f3G+BP9Ti9MVvPmrYNpQNFRO4vp22ABiyLgiSODDoeSTn4seu95oFdF5WYG87bSLuzn8B3NzrYm/LZpeoKoazSbsuCCFIkwAv3dqqufbmZeKcY1Zq3FrKZi4BJmZLMy6a2l+mTwoBlCVvQA36d77wDly4fZoysKC9k7H1avInFg3PeeO2qOH8pl5f3HR7LzI+zXpY9DzjQrv2QJomKit3XZQlR0BYk5ZKzxyXum1XUa7KHSZgPUd5l7r0u5zzq+h96VxEv660tScsjavTLrLN18krJuD6ykVrA6hQ3I4Sep7n3B02nBLivuYqFteRK5/Kgc5qknN84YvN40sjCIgTIOErT0CJs7dzuAcBpbRee9x91apAX90Bzol1UVnJivpFssopAiH169YTjlv1grWuce571vu882jPl4477/Ns3ohf1rEw/as1pLGRjWxkIxvZCIAlF6bhcPidw+HwC8Ph8Gv13//9cDj8XgDIsuwnL7F8G1mzXOQQ4YqePNji3V49u6wv+934Wb57+/Le7Ac28qSy7I7ppyGD+inS1V8C8DOXUiJDfOCERXqXk3Mdelfei/Rc/W+gmwiBFTBOT8u0jQtRXwo19FwyfJu/4Vxgq2vfgSFE+kNc+Zr3nJTodP66xFEAop2/Kykqhqq+/a+nz7kMv20irziXIQNc+p1BO+y7koq5A7odnNRxnvS6qD+7QltPc4meaqclvMedRckBYbczhdsPqJgl7HD3fhoeX4DDBv1l2qHKapSp5NzZhxUYwtS7gz2e46g39aqfWnW6eNwS4j4W9JVV/WuNQ4/e99k13oSYx6my2tlTDS4Anq+cZjk24pZlwQ88y7I/GA6HABq28OryijUX01loOkLNZ5Xe9Rtdr1MdRSFtQVtdzzM2RyyZVCPm80LIG+zHowIVE+h1Qmz14jpgn2SNSKJA0gwx0Sxi42mJiomGUgYEEFzgeFRgVjDEEcXuIGkWo/cfjXE8KhCFUq+K9OhkhtGMIYnDGu0kAALc2O1gf7cLLiTFUF4HHRxNyxqM0ZY4lFQ405whDmkrvlMUUty+3sXpuKbPqe06PJ3h3oMRbl3r4s5+X8Ylmpb4na8+wPGowJ39Pj798h4olW3wxnsnOJuUuL6TYvjSLgIqKZDuPTyrwRERxhOJdhNCBi9kuaS86XeihhUhCgmOTmeY5hXu7veR1gCPh4cTHBxPEdTBC2WkVWnDrJCBE3cGcQMhZ4xbl5QBCdQIQ4rjUY5OEiKNAwgB5GWFh4dTlIwjjQMtkqsEZ7zzYIStboTrOx0QSKDJ0ekMRcWbdlZ+mbLiiMIQlPLmugAhaKiQJIBlTiUU1ug6IWqEHxf1hV2BWcExJQy91GSCkC8bYUhb/ItRGGBnQCWtUu3gp6SO0QX5wqHWxoAS9LsyztQ0rxoOQULk5eyy4haVkGvcCqCOGttGnar+pVCdq4xnAom+dI1nPW9fOm3gQ/t5Sik6MWkCeqq6UIhJRaOk0lbURr58N+KXZSmJ/jmA/wrAz2VZ9oPD4fA/BPA3siyzr+OvV84tnAv1tkhfFPZ9GwAWb5kSdYfB/Ini7DPzmNV3QEz0ThwQDPqxZVFZMRye5dZkKNuFzIlDjd+Mp5VlByHALGete0BCCFzfTtDvxtau6PV7Jzge5RYaK4kCJHFg8XyFAXHurB4dT/HewQjTvF1WLgQEF7j/eNKui5Di7s0+TkbtxZASgru3+hhNbXTgB48nznhY+7udJsqqLv1OhLxkVr2+cKOHTmLvJgedEEm92LTKVE/+ZtwmxuTiMTXaJwoJ+h07aGRAZERbF6qrl0bWW7cQAt0kkFGAjYmVcWHRCAkhcDopnci6QTd0xpIKA4LQoc+LClXFrairgKwPsw9UFUdeVqAGmIAAiB1UQuolxnXXRy6YbgTdKuNZRaE1xZeO4il0ie83qm+Y7eBqH0c6S69OT4uS6Gmj8p6YkgjAfwvJED4cDocnAN4C8GNPXrSnLxfZRq/yEwE0b5y6cAFwJiwUGCHEy8jtWpQAWNBkJTo8XE+/m0bOBYUL4ZzIKPWTT7qEEuK0uaw4Hh9PLX3FJA+cDVmWcHAXisk1+QD+AIcuKDvgZ11XBLimEOJG7jEunO3j6ytcyPZ0lZVxdwA9fXen6wNqv3XLnYU7b6/erUZAKTh194vI8fJGKfEGe/SJrx187emTdR6L+RYgl1BiL0qAv32umlwlaLhLluXK+wMA3z4cDm8AmGVZtt5QhhvZyEY2spGN1LLsUd4vwH7BqgBkAH42y7LRJZQNKs9lfEzLXJ5T/gPzzYiQ+Q1t6y2eCwiI5iwckHvwKKLWPQghakc+4xjPKpT1boQSSW2TJqEFDKBUvpEfns5afp5+J0K/E+HoLMexduTVS0P0OhGOzmZ4eDRtytRJAmx1Y4xnJR4dz1pHQwEl6CQBbuzO2bzjiKKfRhhNSvze1w8wnkmX4VY3wrd94joIAd58/wzTOqRFGMjwDkFAMJm1j4zKSh4fvvn+aXM8F4UUn3pxF7vbCX7rSx/gzfdPm7re7sfopVHLz0cgfWDXd1KMpiVG07kL89p2iuvbHdx7eIZv3JtTK33izjb+8Gdv4dHxFF97+6gp0ws3evieT+/j8ckMX3jtYbOz2e7H+MzLexACrXAQSURx61oXhBBMtJAmYUCws5UioBTj2ZxVPQrk80lE8Y17Jzg6y5u2vLHTQTcNMZlVzTEiJQQ39zrYGSR4fDLDWR0qmwDYGSTYGSQYTdo2B1T2yYDOQ8MLISmMSiZaer2vloxhPJuzKMQRxV4NIqkq3gp1sajPq3ZV6fD6+E0IgV4navxHQggrJEZjg+aLbZdTktaax3n6jmyVcc6YaB3DUUIQRe7Q7655wWczgGZXVFW8tWtfdOToKqtD/0yP8q7CjmkdYS9+AsAPQh7nMQB/FsDvQ+647mZZ9p+sp6iWCL0jXfSzaAZVk2iTQRQFTQc7ry5U4Dd9sCnHqR5DSenLeiIYdOPmsmCD1uOilQ7ncnAdns0wSCMQSkBrPeOSgaGThA1DtaLpv/9ojCikzQCS6Uunvz7RyXyA/d0UL9/aanwXCkH1zfdOQCnBrb2u5rAFHh5NcDIqmpAZEkElnfBqMWvqhwuMJhKo8cm7O6D1MVhZyaO73/zie4jDoHU0JoRAHFK8cKPf2Cbq+pmVDDev9RDVFD+cS7DI2x+c4dteuYbtXowwpE0dvXX/BB+/vY297VQyodd19OVvPgYNCHYGSRNDSIEy0jhAvxO1AGYKHNDvxC37ioqhl0a4sdNp2lOFp7j/aILtftJqZ8YkSOPWtW5TF3Lx4Dgd5djdSlt6LgSOzvL6Emx7YgvrOF1mD1Wxncw+PysqpEmEJA4asAwgFydCiMVf6JOq4pjmlXT2S5RCk28aBQ0oRc87oASRtugtGp9CyHEVBLRVd4t+q4uuLyvJdkEd43mZ8a2E1YCkMGzXq+pnUWjXt69MCz5vFqY1+Ji+D8APZlnGAGA4HP4sgF/OsuzPDofDS71g297ZzBEuPr3+t/pXkSqaevOtx5eOksDx9icnJzF/89fSSqLAcv4SQkAB0MCMgUMQgmCn14ZIqx3VVi+29ZDoKNO2gMCJLBMCuLHTbfku5CJB8NKtgeXrIATodiKYPmHfkAqoDKUxMAhLo1ByALrCLwRU5m3WURAQ3N3rGnVEEVPgj3zH7Va7qTr63HC/Rbej6ujOzX7Lv0MIAQGwO0icoSjUjsDUb/cSiYrUFtaASmTd7lZq1BFBEhPs73VbdUEpQUyoROkZegrijTxbsfbCoCSk7T6p/t3qJc0EretDx44E8Pd5JkSDQNPz5nzuG2vnIawYTPoLnKmXixG19K4ynac3d1vnjWf/OAcAYpWJUrTqVLfNTGeRzRs5X5b1WN6CvYi9OBwOIwBb6y3Sk4mr4eV4tvXE87wvHe+zMpfln19Rf574bHaJz7lsvqE3en+uzu/UpO8qj3vS9dPweHMmPhvcegFfe67Wzr77TSDueiKEOBEGF2ln4ViUzktvHX3bK76qeAp9e135LOpHT7ssG2nLsjumfwTgG8Ph8Lfrvz8H4J8C+Av1vxvZyEY2spGNrEWWReX97eFw+CsAhpDvSr8J4K8A+OtZlrmxzldI5AHD08jl6ssa0bUr16kvRM3zUXO1eArrrYs1Gfdhfvv+MNu2kYvJUgvTcDj8uwD+FOSR3jcBvALgp5/GouRzfi6jV38HAWkYFvRBwDhv/AXmebQrnXk27Rgv8kioPekLIcCEQMDl2bSZvssGIQQolef3pkOZELR8Scrf0EtCjLVYOdIugSSWMZDMQf/OgzMMevKmurp7IoRASKlFCySEQBrX8aF0x7uQFDaUtBcbidCqMJ4CnTRspd9NQ+xtJTg8mSMG5QuDjB+UxnZXZIxbF0CFEDg8meLa9hyAAMi6OTydyrAUhGgADoFuEqIoCyudsuT1pdD25Cg4B3FcPJ2VDH3GQTQ/Fq/rTra/QHOwKwTKSmA6K9FJolZ59DIA7T6cxoFxP0qmada1Ei7mlEjtvi1Aqd2HzXxdZdL1c+BJO3PhuHvVgBm4aN3lWWbcKtH1nIuGwWFZG1axzcx32edX0Zs2+PxaT0uuAuhhGVn2KO/fy7Ls08Ph8F9mWfbHh8PhdwP4c5dZMCX6pK3+VrKsPgwDBIGMLqnm3lUpT3Roq0m3QilFHNWIq4q38i4rOfmFWuRXX1mlc5820WIVgq/QaFv0MsZRgG4SYtDlOBrlmOYViorjjfdO5UVVAN00bILUAcDxqMBvffkBXr41wN39fuO2CAKKDtXoVuoyRWGA/d0OxtMSJ2NJPaRuycehpA9S6MOTUd5A1bf7MV55YRtRSFGUDJO8wifu7OBsr8Dr904wK2Qwuxs7HevSZhxS7G6liELawJQVwGQ0KcCYwMHRDC/s97DVi1FWHO8+GGE8LREGx3jlzjZuXetBCBnVtaw40pg26QghGT0YF5jmTFIJpRIQ0omDJvJtVXFUDQ2PZHU4m5QNVRMhwGRa4rSJY6UF7eOyv91/XCGNA+zvdVvoOV9f7aYSSTeaSNg6JRT9btSgDEfTEhXjIEReKYjCoF4EL963F+mDgGK7F6OoOCbTEgISXt+t417pVzBUOlXFwYgKQ7K4z7v0DaK1LoZOn7Tq+Hd9d9G6OC8dXa9TGxGCVh/f7BDPl2UXJvW6mQyHQ5Jl2e8Oh8OfvqxCmbLIuWi+Kfr0ciIPmzsULgSNKx01genCuZy0dEoiQiSSTAgBkyeVC4GyZK0FYlHekvaF4mRcOI/ekoi26F+CgOL6dge/9oV3cToqmp2NADCeVQiCdghtzgXeeP8UvTTA9Z2uUUcBeFGBa+AGQgj6XbkAPD6ZtZ4PA4LRtMT7j8coy3lhT0YFXnvzEHdvDVplH3RjfPaVPRwcTZ00OSbFECUS3XjfCAFfMY63758hjmiLdaJiAtnbx7KetF2Yss0MYw9IRoZuJ8LOoB0uPYoChM1Odj6xFBXH9GSGigtrJ6HaWtfOCob3D8Z48ebAyfxhtn9AKbb7CSrGENA2ynCrF6Ni3EKTXqRv+/RA++2f1G0Q19B8nepHfbYpteTi76IkWpR3XtjsJVXFEayYzpPavEi/KC1ltzB0RcmROGzYiFuWXZiy4XD4VwH8BoD/ezgcvg1g5/KKdXniQ+KsM/11eLRkx3d/Z3KSKVE7l2XF6/PxmLCo3piD2khAHWXYg9q1KAFw0rwAfgobFxUSACev3iIhcKPuFtnsK9O63Hj6otTWr4ZKXJcQQuBiHlpnnr4+/zzJh8CEZy7LLkx/GcAugGMA/zmAmwB+4rIKdZly2We8rnPzZX7jKs+qel801kX5utKSlz3tidpn2/zIw35e+vHsRchnQ8V465hUyarLvc+282xw+02W159XJhca4iLtD9h9eJ36ddm8LnnWvpmNPF1ZivnhGYoAzj/PXUavfCOKGj9akpLe6WMic8oT/Te6b0jXqzNm/WgE0I59xNxvpc7tj+qwFJRIWhmzXFIfNIuHEBKccHyW4wtfe9gQve70Y1zfTqV/Zlq1aHj6nQhRQHHnZh+DbgwhJBP4l19/DEKAV1/cxfWdFIQQzIoKh6d57UdjzQ7p6GyGL37jEaY5w1YvRq8jfQ9lxXAykqzpd28O8NLtLQSUoCgZHhxOpG8nouikkoEiLxi+ce8YB8czvHx7gO/51H4TikLZlxesRSXUSUN0khCMCZxNiqZ9Bt0I2/2kCUkQhrT5/WTmj9ZCqbwQ26v9TZLdQvqPukmAJJb6vGQ4OpXl6CQB0jhs9TNALrCKJiegBHuDVLIwaO0sxJzOhxI0F1N1n5FPT2ofDqVSr8JPUCrDgYQBbfV5QNJoKeYL5Q8F2j4pPeyHohQihDR9W9mjH2M3NusUU0QypJjgIv15n14vm9LL3eDc5mXSWVa/zrT09tdPEVQda88vvcKuk/nhKoEfnpiS6BmK0Cd5V1mX0fs6ekDRoL7MQaano/RcCEC0b3+bzlqVtkpHp99XeumH1A3WWwAAIABJREFU4i30HYQACMGsrDCZMmt3EAWkFQ9JPR8ZfGRq0nn9vROMpqVkFNDKatK2yN9J/rdHJ1OMtcWLUoKtboTbN/otVJ6aUH/3aw/w8GjWLAiEyNEWRwHyYm4DpfJY6sVbA8yKOReZ6pVHZzPcOxjXdSMnY0oJfuC7XsDt6715JQgBDmA0KREEVAZua714SMog83Z+GBJwJrxHl+32lmE/Br3YOg4kRB5ZFmX7yJQSYKsXaztWDWUXUXQ70fwyd91u6qPeX8gC/RyVJ5r01fczB1ddHNKVGOJlqd27UlUmU6TPVD3TBn4E2iR80XGr+3f1ujA5+HzpADYKcJlxvox+WRsU3ZKpJyts/T6KC9OyR3nPTJZxRp6nr1gbjaD0lNooKaPztPQUAIitZ0wjeNV2RZSQmgPMTB8Ngqr5jpA6WKA71EVgUufUn13pBwFpcfrp37nCXwgBPDicWNx3Cp5e1vxqejoPDqc40BYllY6AHa5DvvkLTGZV++0S8s3ynQdtDmAVIuTmXrelR90GkcMGQmQcJNdxZlUtP67VaZtEvrXTKiuO0pEWbXxBRjvUOzZXu6m6tXbRHv2cLqqtnxX2S4yWjcO+Bcd3Pr2w9S6Yvfpshn246Ljlwpe+n8LILOei8byq/iI2uMbnRs6X1V6pnlNZtCn0dRSXfvGzz2bn6e3m6yqOb4KD8E5+nlryZ7GusfqMxvyibJ/ZecSKfX6VcSC/uEihrpboLwCm/sMoV2m3dJ58JBamjWxkIxvZyPMjH4mFadEL0CKU1mrP2pk8Df+dL4d1vfT5TCBYEDF1BS1ZkMfKtbeu6har1d+ibH3JrNo8KzcnWWffXl7/rGWVcs3RpMulcVVt/jDKlV+Y9M5z0c+mr2XupOWtv8/7rOKxmHoZdqH9GwWWqBhvlUmmwZHX6L1Gr4AVBJBTXduGyaxqYifp+rxk4Gb6TMYtKitmhSSX9EjtOiYE+NiNHnYHSYsBnJCatskxS3/seg8v7Pdbz6uAhPt7HVAyn0wJsRGLSh9HAT7z8T2EAWlu98vQ7gTvPjhr2QbINHf6sbzLo5WHC4GjUV6j1to2d+JAhrcwbO4kQX3pUaufukxpHLafh6QL6qWhlQ4hkhXCFCHm/WVuQ+2/MJBlDYjG6C/qX9N3pvSdJPAfqer+PJUOIQuvASz63Orb3O7bzRhx6C/ymRBbD8hAg77fuup0VTu5o90W1cWiz6462ixw58ulovKGw2EHwFcA/BSAfwHgFwAEAO4D+NEsy/JzkpA4pNZkZg+2ZfRC+OHi+m98TmE98iwhNYTXeH4RXDwIZOyn03HRBPCjREakjUKKacEwzVkrX0AuDDqisJOESGM78mhIJVLp0ckUv5fNI9Ju92Lc2ElrNomwgRezGs4chRR39wdNIMAHhxP8wTcfQQjg7s0+BnUcKMaF8zLr0dkMv/vaQ4ynJV65s43b13sgREa5fe2tQ5yNSwmp1mJAKZj77iDBtW1Ztrxg+OI3DvDOgxFevNnH8KXd5j5Tt47llMYBdgYpgoDWQfVmODyZoSgZDk/nMPLtXtwwSEhqo6Be3AucjAqEAcXNvS7SJGwW/YdHEwSE4OMvbGO7L2NiTWYlHh5NwLnAziBFp765Pysk5L1kHNe3kjpAoATBjKYyqF4npq24V8o57oKLq0m+1ODFYUDqCLVoGENafbjugyoI4CyvMC3YHCKv4OI1bFnv82oBcUVzPm8sKNH7dhhKJhIzIq0DIu1NR9ebEWlVGfW6WCadRTb49KU5zhfQKi3KW4fOAxKIpIIz1s8vvQleFyrvqvmYnhlcfDgc/m0AfxLAzwL4PID/M8uyfzQcDv8OgDezLPt75yRxbuFcA2uR3kXbsuh5FyURYN/lUFJVrBV2vEmHcZyOS58VMPupEAKzwn3nZneQOMv6r37vHia5jer7xJ3t1iSp5OZuWkfXbeuPzqYYTStLX1bMolsCgLyoMJ6W1lZsNC3w1vunFkw7CilevbvTorYBpM3jWeXcocldlb3B/60v3Ude2oX63Ks3MOjZtkWBjZQCUN+pimybS4ayYi1KIlVWuVteTi8XBup8XoVmN2WnH1vPA7IP+/Suvu3Tu+h/9HKtMq5cegI4KYkWpTPL3X0+dtTdusoJyIWkrGzSYxXufdm09PtephiURJuFacHCdGlHecPh8FMAPgPgn9WqH8A8dtOvAPihy8p7kfiQOOtM/1nJQl+HB320qt6X9irpLErLF4xv1Xq9iG2XqVffrSKrprN6WVcqzjOVDytSbiNuucx7TP8jgP8awI/Vf/e0o7sPANxeRyYXGbyr6FeVRTvQKCCt4xr1vBAAIa47GG5gACXuRcgXllsncNVFHvNwa+cC4a8LAjtvSuSFztwRzj0KKVhh3iOTRzL6cY1ug2uHyhgHJfabay8Na1+aUU7PK9fcf2G86Qp5bBo4djSLFlFXO8jjMnf+rvL42lmFTHDdzXHJyn17QRlXfqFYwebF6fvBMKul4+/DvjZd34vDajacJ72ue+es5E9/38vry+yKyKUsTMPh8C8A+K0sy94cDodKrTeVa37zyjp8TKZe/26RPgwpQrTPjGl9jKeeac7/6/N88xybUoJ+HKHfiTArGE5GRR3GgTdMxIQAcRi2/F5JFEIIoKjkkUsYEOwOUsQhrfVyQi5KhvcORtjpJxj0Yhyd5pgVDFFI8ck7O7i+2wEgfSa6n+jRSY7HpzmubSXYafwqFZgA0jhs0eoActEIYhnbSh1XdtMQ2z15EfZklOP+44msBy5AQPDCjb704RxPwJjA/m4HnxvuI01C5EWFh0fT+gIvkIQBOnHQok8KA4q9rUSyWBCg14nl0Qok4OAPfeYmyorjS68/xsHxFHFI8Ym7O+ilUTPpz09NBEpGUDKOkKJpw7LimOYMZAT0uyEGXelXU21ut+c87IkCmqh2VuEN9LAHKuyJ3l8AdezDkUaBEd5ELvTKtxgvQZ+1Sp8XQjSLuWlboPVtnVbHN0ZWtfm8ssZRACHksbEQsuXMsfZENjdhTOZH8ULImG1BELRs1m1bNm/10sXrulBjW/WXRS86PhlPioXfHxycrZTeVZEbNwbe7y7FxzQcDn8JwLcAYADuAMgh+9i3Zlk2HQ6Hnwfw17Is+/PnJCX0geMq6zKLyzr1auLQ9dKJbQfZA+QZu84GrlA/9x6OrFABgOzU853P3OaOihlklOn9R2O892jcekMTQqAThxKIYFASzYqqBbKQNsqJsN+JDbr+Oh6UcWYuhAAlQL+bIAjm6avYSV9549CwTe4K79zoY3uQNL4i5YQ/OJpYTAtCCBBK5ug47butnlzkodVFxThGk7LhZ5unZfaZ8yeFMKDY7kWWzdJnElrt33xvtLNPL4SfwooL0dSnXh9hQFrUNnoejWXnTJw66EH3a6oFPI7t/qX6tj6hLurbi+rCVR5TzLL6Anmel9Z5Nstn0DChLDPOV813UV2QFVan83xMV813tKw8dUqiLMv+M/V5OBz+JIC3AHw/gB8B8Iv1v7+6TFrttxF9INnHG5etl2JTj7jCHxBCGmiu+TyrePNmaYqclGybu6kNXiCE4IPDiXVsQAjBjb2udURHCHEuhkJImhdrCicE3HHcRogksQ0NmiRKCGZ5BWb9hiBNAuxupa0doRywOt1OOw+dHFWXrgOkEAYUaRw6tuFqc+4aA259FLjjeclwE+4+uepn1Wbq72YHYjyvxAXY8PVVV77qb8bVS4ZhWw2nt/qqxlWn6xUH42o2u2l7fGX3HWOuOm5dNgPusCKLxvkiGxbZtqzNG5nL07zH9BMAfmw4HP4mgD0A//Ap5v0UZMWd5yX3T1/yT2NY+AafWLWONnI15BJOVdrJX3K/2HS7504uncQ1y7Kf1P78E5ed30Y2spGNbOT5livP/OAT31vWZeq9zwJw7UVM1oV2Wt6vvHm48vcFBzQZKhrx7GZ47U9aNl/BhdMGQtx2c64Ha9fSOa8iPO3gtk2V2JmQM2mnbd6iPJ0+5yvTuvJZSZSz5QnzvIjNa9N7jgkE1kNJ9Eza5UMuV35h0ich9dnlYLyI3szjonpK5lBtM4/SoB5SjmZ5sbVtKyFqHhaYT4/y8+m4bC02KmBfPw3hWpseH08wy6tmkdCdwFV941/Xv33/FPcPRi0qFs4Fjs/yJkCgrn9wOMWb752AsflNeVanbxanrBjevPcYP/fLv43T0QxlfUuXMY5JXuHRyUzeuNfKxDjH45MZSjbXE9TIwNrHMW+POThhXmdmPdZ/a+2mUIfz9hFNeYuKWe08ySucjosWTZIsq6hRZA7anspNMaT3EV3v66ulQT21qG/rYtogwSHu/Jf535e2aYNVF0I0bbyMzTKIpv38RcZzWLOu+Or8ouP/PJsX6TeyWK58oECg3ZjLQDb1756mXgidksh0tMrJdJJXDQBBCNFAuMMwqJ3rc+frXOZpJRFFHFIcns5wcDRt3qS5kLBnSmXQP5VOHAXYGSQoSo7T0ay576OAB7OC4b2DcQML76YhPvXSLggheO9g1KANw4Dg+k6KgBLcezBqYi5FIcUn7+6g343w1v2zJnIuAExnBWZ5hX/52xnevPeofj7An/uhz+IHv/dVvPn+CR4eTZvnd/ox9rYSTHOGXEM5dtMQN3Y62O5FEkBRD3bGJVegDl/XWsiqO6DeGdYLSVO7RELzJW0TnaPiMI9pNZ5pARQJsDNIkERBA2tWEgYElNI6EOT8iyAgCBz6Vfu2DmF+kr6q10GkRUJW3wmoRbWV1Op0XgJ2XWiQdNNmIeQLi36X7WnY/LTmC+27pd29T8r8cFVRe891oEDA70xfFZV0Ef15eZu6MKBO5FtRcYs6hxCCbhqBUhdCz40my0uON98/aU0YhBAEBAhiO4BeUTI8PJxYeiEk1Fzx9imZzCq89tZRK6w5AFRM4N4DG+JeVhxfe/sISWx3paPTCX75n/875Bq1Ulkx/LPf+BqStNdED1ZyPCqgQ2v1Mr10s99CGcq6JjiblAsi09pt5yJ5FfVpVWrUnwAwzSvrUjQXMoqu6AiLqaJiAqKy6ZwYE6gc+lVRZtyBkjN/t4xeLsJuuiA1gbt+46LncY0FQNafi56HcYHQUSZCSKuv6OVZxTaffpHNPhvWrd+g8paTK3+Ut5GNbGQjG/loyUdqYVLHP657R6sKX5COC5BACJrjCFNcVELKB+J6+9quwz6YkiahlXdjs8M/oO7mmBKH1EljlMRBw0Ju5eEoaxIF+LZXb1u+tE4SoetIJ6AEg27kxGeMpmUTpkTP14P9kMzWxncuP4kSXzphII/3XOICmOghE0zxUUb59M9SfJyFK6ezom2rPn/VxDcWNrKaXHkfk+u4TPvS+Z1Lb7L+muEHlk1HiDa1CSHt8AN62dTtfv1MnXOB8ayURz7685DHYowJMMZax0dR7X+KowD9NKyfF7j/aILD0xniKMDuoL68SoCzcYHRpJA217QoABDU/ifOBUazqilDUTJMZhWCgGB/tyOZyCGPH8czefx0Yydt2BYmsxL3Ho4stgtCgDgKEVCC3a0Eu4MEFWM4Pp3iH/xvX8Cb7x3iD33bi/jj3/sqwkCGojg8y5EXDNe3U7x0e9DU48OjGUbTEmkcYHcrqS9DogkzIRkp5sAICWSQdd3vhM1kr8KJyLqw2bQpkRd29ZcG5X/rJCGSKGiOpI7PipomiTSXiwmRVEqEyPar1LET5iweLWobAFVdblr3HSV6yAVX36NE0ei09ebzFx0jpl6n1dGZJ1ZNp2WzRue0qKxqjClqI325WiXvp6UXQlihLqKIyovr7nQ2PqZnFfZiDSLMc9lVncV6h2mnJRBQajlhF3VGVwwbIURzdr1MOoCETp+MJLrL1J9NSieJ6bWtFKkRQoBzgbNpgaISliP38ckUxyObY6usGMrKTj8KCPoduVvR8wgoqcNHtG2b5hVef/fEglaHAcUnX9xpURUBwKwocf/RBISQ1sQkhMD1nRRRSFsEqpyrIIjtt3cCYHcrsXxgCn0VG+3JhcB4UuLEwTcWhdSiNlLpbNVxqHR9xWT7tPqRclCZUj+z1Y8thoRFfbUomNUvhBCyfgz2h2Vf2p71RO4rz5PqVymT6eNZp81CuGOVASp+lG0DWcHZ9FFcmK48+OFJncWEuGlVAGJwqi2Xvvmd7qw39QCcaQlRwxrMvknczNoArEUJkMcejNvHLoSQJlCgKdw9fhBrQd10iSJqDSzppGYgBNYOJE2Chq5Gl4AGkpTWSJ9SgsThkJZlIfZxHOb8ZroQQlpoxCYdQjAr3XXhc+S7EGBq123q4Wtn4qbtUb/39jEz/frvdVES+fJ12bAu/TJ5u8q+ajqL9GZe59XZKjYverc3x86ivDcyl4+Uj+mjJM+263tG6kdwPF7p84grIlf81GYjz0Cu/I5pIxvZyEY2sppc1eO7ZeXK75jMtyn19yp6385ZCP/bmlvvOTbxvPD5y+TJY8Gbo34DXk9fHnXZ+sATHFAeLTjK6svXc/QXUHeQPGaEr2jyhZvCCPWxpvnl3Fb7R1wGErKe99Eq+YKscQ96ztcMi05gpM2Ovof19GFXX/U9b36/jH4daSwq02XrzyuX79l11IVq91Vt2IhfrvzCBNgNbDoez9PrMY5aTlWDmsX0IZl6HV0F6Pm603GViQsZEykv5hQz8++AJG5TDBEA3SRskHl6WhUT2uVSqWOcY5pXODyZYTIrm3JQIlkjvv2Va/j47YH0r9VlDwOCF270cH07sSbfomQYTcoWJZEQAmkS4fb1fo1OQ1MPg16szc/z50smkDgg3FFIMcsZGG+3c1lx5HlpBF6UvrY0os3Cq+q0ZBzvHYxxfJZbZd0bJNjqRgaySwI1zPZq8i9tSqIoDNB3wNnTOMCgG1l+NR3pt6hfqH91/6LZ54uSNTDkZfq8rw8v0ut+1KbdKt6iBjLzWKbPL7K5qBhOxrnGmHKxcX6ebavYfJ5trnT0i7v680XBWi9Am0VpObnyqLzmg3DvVhbpAQMNJwSqUt5oD0M3wskGKth6IRSMVjSQ8/PSqSqOknGcjosWfQ6lQEhlyHW9KWSYb4LdQYJuOr/zw7nAaFJgVnKLheFkNMOj4xkeHc9pfigluHuzj71BglvXek258pLhG+8eIw4pPnaj3wAfGOd4zwEFB4BuJ6yZLdoT6PFohrLkuH291wImMM7BKskxp8OgGRcQIOimYUP5I+tMLqCznLUi51JCsFNH2e1pcak4FzgZ5xjPGKb5HOAQBgR39/sGxZPczR2ezUAIkZB43Yldt0VstGcUmoEHpQ3TXFIUddOo9cIwKypUlUA3Da14WK6+KkTNqcds+h/X84TYwe3059eh55zXZWoXSEHGl03HZ4Na8GZF1cojDEjNIflk4/xZ6eXL4jwCri4O1oylPa4XQeU9D0d5zzUqT8lFkCwuhFbkoSTx5eHTRVHgmTjclCRcCByd5tbBFOdAwTnMfhpQio9d79o2UILRtHIeo73x3om1oHAu8ML1HnYGaUufRAE+cWfbovMJKEU3DVGUNrw6LzhEhFZZCSG4tt1B7EC4CQ6Mp2Wb9Y8QRAFBkthBADmXi5gpXAjcvtazLqJSSnA8KqwJVHLncYRBu3sHAcWgGzspjIKAIA5ttB8XAhR2G3eb0O3tuugkEUS8GvWMi8LKJ6prrdKHV9VzjjrcvdE+ArBryN/nF8loWlo6m+9wOVmHzT4bVtETIvkQGbNpmNZxqf+jJM/FUd5GNrKRjWzkoyMfqYVJHcGZ1Dbn/WaVt0HG2mEllBACp39C+TpM4UJektVZsFX6rtJwLtBLw+aCqRLFPGDazLnAwdEUJ6Pc8q8A7rtCaRwgcegrJv1aps1FySTzhKE/mxT4+jtHyAv7zdJkNlBluncwwsS4m8W5kP7DwNzRLKb/Mb8TQrJfuGzwxZDytbMe6mJZcbU/4K4LwA1UuUjfVr8z//alsa7rN1wIeefM0F82G5GqIxWiRNeXFVu53XziAx6Z+W7EL1fex/Sk22slirVh/qybSkilU2e+tF7Gj2mHQIgcl1aFAE7GOSYzhihsT5IV4ygrOUjml4KB7V6M3UGK8azEaKKO8UST3nha4HRcQAg56Gd5heOzAtd3UsnCQGl92VMuOKejAm/cP238OGkc4M5+HwGlGE8LSNCb9H2MpiUIIdgdpHKihDzSGU9LFCVr4gSpsvY6ESgBTsYl8oI1k2gYEAgu8Pr7J3h4KMN1UELwybs7ePn21ryehJAUNvUEUjExp/khwI3tFHf2+6gYxyTnzfNFyTDJK/TTCDd2U+nYXtBuXEi6porJuD/qG0qBQUdSFJkXcAkhDfO22c6EoKGgUhIExLvouPqqYijRKaxUv2DMBN/A+l6JojryHTeZdaHbpmi7dB8KIXKRpEZduNLx2aZEUQ2p7xWNUxoHFpvHRY7XfLYxLkEcuqiXL5MBPa7Deixbd74yKYopXS+P+wiiyLN6OWRVH9Pz4F8CPgQ+JtPB6HM8+vQ6t50SzuVbL3HQvJyXvvkdY9yiKgLkRBPHbUc1ITJIoBCF9XxACUZl2ZrchABORgWmBTdQXwSAwKPjqVwQay2tHfsv3d5CvxO1HPCcC7x1/xSPT2YtP8s0Z3j/YIydQdKyL6DA7iBBHIUtGwIiEX5n47xVp0IAp+OiFUtJz+P3v34gF7w6byYEvnnvGHf2+4hpoDKWMX9CivGsHdJCCODgZIYoCueTWP18HAXY20oQh3asIFd70jpB2ycnQ4v0DKoiwN/Oenyt9vMCYWPW+WUKQ9oMyJY+oN50ypq2qWWDkHkHwfJjpNJ2gAqtBqCpW9dvlCyTB+dc1rUQss3q76KQoh+HIOTJx7l3/JfMYlRRu2T12Ry3UeSOF7WKzWFAUDjYQhgXsCmMN6LLlT/Kc4ELVtW7TiYI8dPF+NLxfSfFT7di6Y3vtR9YyCyZsg/CQ1BVzDraIYQgjW1UGAiRhKaOPELHmzgIae4AmWVlTDjL5NuAqyNJM29CiF3OOm9XOYWAdVyp0pHRWZdvz8o+SQQAZxA7oNmjOtvfh6Dz5b0uvc+nbk7056Yv3Dao+lyXDeZ5oNqRXWYdCcfhp7kTbn/n06+nTBs5X678wrSRC8pmLFyOXOmT7404ZdNmz51sFqYPq2wG4+XIZsF//mTTZs+dXPmFyYUaWlXvYqSRvg43zY/610Tu+PKQYjs/ueDO59VfNgJMOq7NceQrKwCEdSwg8/lZUYExbunTxH4egBeRNKf4aX9HPZREvlMLBQKwvxdWOVVZXSgtAjiRfgBaLBF6Ovq/ut5xbQmArAvXb5TXZVnnty+20kX6sE/vQ7Kd17ctPfHYsMay1h+ssgpxuXXkQ1a6PutFvEybN7JYrvzCBMwXBdPBuKw+CgMLzUTp/Ba7Kx0zLcYFTicS/aYmQPV/EFDE8dzpLoREtJ1NKnxwOMW0qCSPG5fpPD6Z4eh0hrxsw0c7SYiXbm1hqx83Q0kIgVnO8MGjMU7HeWvCCShwZ7+Ha9tpM+FzIVkJvvj1R/ja20cS+KH95va1Hl66OWiohAiRkWmvbXeQxKFF26OHklB2lRXH49MZZgWzorVSQpBGbeohIeQp//ClXez0Je0RJdI5/LlX93H3Zh+9Tth6fppXtj8KkvJIxbjRF8s4nN+s97Wnqe8kEba6UausAZXAjsJBSWS2s5IopIgj2mp/lUde2FRCZcWRF6yJUPxEfTvS+ramZ2weO2yZuggD2qLVUaIzpOi/cY0RISTQwGUzIQRJHIA2YDTVh+eUVk9aFz7boiiwrj8QImmE1mGzr0yLbN7IYrnycPFzHxDLO6OFkPcYaEBaQekWpZOXFcpKWJDSbho64whN8wqTWYWZcUdHRT1VAQKVRBHF9a0UnSRqTXhFWSF7+7jh1FNCKcELN/oWFJ0xji+//ljCuDVYfEAJvuczNy0oLhcCDw8nCChFrxO1BlbFGAiAIGjbN56VGE9LnI7brBChEZV0bgPDrGhH4wWAijHEYYBv/ZZr6KbzchUVwzsfjCybAWCnH2PQS6x7VElEkcQBoiXof3x6IUTTXmbcqzCQvHw2+ENCgU1qq6riLTolJYTU8bOMuiAEzsnxIja47oUBqBdN+x3UnFSVrmIcELBs8+UtX7hsKh4dtm4+XzFm0XmtavOqejX+QWS7tvv8ajavqnfYvPTqtIGLf8iFEJsj7zxhzF6UlN6H+XRNEEXJcDZxU5WYixIgJ/qpi56HC+f9qCCgmOZVa1ECJDS1LJm1MFEi7ya5UHJykbHrqKw4zsY2VZEfGUacNDPdNMK3f+Ka9XIQ1ja4ZG+r4wxk2EkCK51VRaIYPYuDBxMZBBSUelBsjvVBCLlo2ZPeExW9EUJIfYHAnfei35l/R6GbbmuRuPjhfPlSShARPzXYZYlv/F/U5lXkadj8vCxIy8hzcZS3kY1sZCMb+ejIc7MwXeTI0febVfRRSNFNQuudmcBNMRIGBDuDxDpH7nUi3LrWtXxdaRSgqphF8ngyal9eVdJNQiQxtdKvGMfHbvSwq12SBeSdn4oLTLUQGE1aaYhO3C5PWTF85Y3H+Oqbjy1y0b1BgpdvS/+UEiFEvRssrUuMlAK9TmjtdPqdGFUlLJsJgJduDdBLQ+P5CFu9yKo7QuQuzmwHgprVwxUqPrTrrtE7LuNLX42DwqZmvbD7jGiYIHShlGi+sbZ+FeH1DtjZ9xw7acANatBtWUa3SO+zmazZl7KO8ezTX2baG1ldrryPST8Hd33W5TL1QgCTmZx89QuehBCLQgaQRyqjSYFZwbE7iBFQOXCFAE7HOU7GBXb6SQ0uUBd+5bHYW/dPMZoUrSOyMCD42PUetnrzmElcCMxKVtMDyUVE0crcezjCoBfjxk6nlX6vEyGN25x6QgBn0xJvvHeCr7191CwYlBJ85uPcpw6WAAAgAElEQVS7+PjtbfQ7UXOiJYTAuw9GeP/RGEXZ5u7rxAE6iR0KZFbIi7139vtItZv+kiapXZ+KCunh4QQv3Og3C730BQiMZhUCMuckU8dYSRQgimiLBkgIudhSYreRXHiF5R8raiql1mJXtzOlxGJ6cLU/IF8W1NGrXh+sphBSC4mvb5v9UKfzUem5FrtFNi/q88om13fL6n02L7JtWfsvUp5Ftq3L5mX1xue1+5iet6O8597HpN+gdiFhAKysV98tqydEOsZd4QBUf2w9D6DfjTHomjZISqI0Dq0z7bLi+Opbh86z+U/e3a2RdPPnKYAzK76TRAK9cme74aNTwoWM/WSGqCAEeOv9E7z21lFr18OZwGTG7F0PIeh1IgnbNspZVBydxEZA9dIQN6/36+CE7TLpzykbBt0I+7vX5N9a+4cBkEYU3Kg7IUSzKJm2+eIXqR2YqQ8C6RuzAA+8HcxPfa8DNUzgBBxUQkFAERh6X99W+rxgbmQYJBx6WZsvMhZ8QAKX3mfzItuW1fvSWcYGvd7WbfMqZV20e93IXK78UZ7rrWsdel/6i/WeBd6jphcpk6fPmouS+r0rzosahGZEVUCGGXflO8ltPjFA7kJc6UhKIkf6vrqgFBDL17faBZl5EyLvT1np1Davq51XOapR9XBZfXWR3lyUXL9bRr+eens6Nl+kXL5n11kXq9qwEb9c+YVpIxvZyEY28tGSSzvKGw6HXQD/AMBNACmAvwXgiwB+AXKzfx/Aj2ZZ5vbyw39PYCNXRTZHEht5ctmM8Y2Ycpk7pj8D4AtZln0ewH8K4GcA/BSAn82y7I8CeAvAX1qUgH5Gq+v0f1fRm8iqVfWE2GfE+nPL6Otv5X+GnlKCNAmt4zBC6hDlxvMqUN6yZ9ZCCEzz0ooRw7nA7WtdO18Aj06mFr0N5wLdNHD6wirGnXQ4FWNgnFtHj0IIqzxKb7JKKL2LjFwI0WJr0PXq3ydtZ6CeRA095zaFkUpXCFiXhS/Sh320WjrDguv7ZW1epQ9fpM8v0l90nK/Szr6yXlZdLGPDRvxyaTumLMt+SfvzLoB7AH4AwF+udb8C4McB/D1fGkXJreBopnNRF90p7NPr362qD+qwCnp8JyqDflkOWyFEEzhOR21xLjCelaiYDAinAxHiKMBnX7mGR8dTvPPBWePgv7HbAaEEecWRhLSZFw9Opjgdl/KGvQYVVkHXWI1uUxN/xQQenxY4nVTY3+0grR3kR2czjKclhi/u4L2DMUbTEiAE17YSvHJnGw8OJ9juJegkErBxdJbjS68/xjSvapg1bWwuSobJrMKgG2HQi5tLn2XF8fYHZ9juxbi2LZGCAkBZMsyKCnFE0U2jxmtVVgKzopTxelKJ4lOSRCFYHd9Hb+lZwVBWMpaSvni52pMx3oBGZN3Nn2/aWYt11LQz7GB3IAR5wVrtzOp2ZkwgqW1btt+p73SJa5tVsLvGDi7AS1YjC+eL5zr6fBONF3bQw3WNqac5ns201m3DRcqzEbdcOlx8OBz+GwB3APwwgF/Lsmy/1r8C4BeyLPt+329nedUULk3ca6gQl0dhskjUZG/GEmJMRiE1dwZcyB2AeTeIEBkxNQhMahuG9w7GMiKssZU5HRUY55WVx96WpOwxA+U9Op6irIR18BYGpF4Y2lQFFeNIkhDbvbilH09LHJ/leHwys2xwATHiiGK7n1jMEFFIcWuva+0kAKCXRk4mib1B7ERDTT00PFu92Bk9VkXcNbMOA4LQQavka+eqjq5rPe9p54ASbPVsG5Qdy+qFuBj10Cr5VhWXOzFDr14SL3O8PSv9M8h76clmAxe/BMmy7PuHw+F3AvhFtJ0SxPj7QrJuNNGyIid/929cSDkhYE1WSsxFSekGxsKgZDQrrYkVcIdylyg2d7C0ydS+FAtIOHsntbvGNK9weDqz9EK4jycUaa1pG+cCFTcj8kpxPe8ThdxbpRMJwFl3vrb0tbMs4/LtvOj9bx3ouUVykT6/6sC87HH4NMb5s8x7kfS6sfOFw5QbNwYXSv8qymWCH74bwMMsy97Nsuz3h8NhCGA8HA47WZZNAbwACYB4InlWO6aL/mYtsvJy7v7Bh/mk27cQ+E4IXAu3/pvLbOd19UmfBevcPXjzvmI7oOdgx7S0jCc2P6VLDg7OVk77WcqihfQywQ9/DMBfB4DhcHgTQB/ArwH4kfr7HwHwq8skRGnbf6PE51w0v1fCOEdRMBRF5fyNT2enI3A6liEwdCZp6ceRbAKmxCHFdi+2aHWEEDgZ5ZjlZcueg+MpPng8wdmksPxWW/0Yadw+dkrjoGFH0CUvGKrKLg8hwKAbod+NWv4b5fvJC5smaasX45U72628CQH63Qjbg6R1dEYJsLedSnYL3UcIyRTeiSOLGmh+XNbON4nmPiy93irHcZOS0bSQ7BmGDVEUWGwIFeM4Os1xcDxttSfjHKfj3GpnabdNMSTbx33MlsTuobaq4xyQvkiTPokSeW9t2bGwSE8pQRzbjBK+cA0XzfNJx/M69U8rz8t2nXxY5NJ8TMPhsAPg5yCBDx0AfxPAFwD8PCR8/G0AfzHLstKXRl5UIqoD4ekoqVU/qwldmareXHxUMj4RQlLrmD6ZuI7Ho9PFqLyD2mmul6livAElKD0gJwQC4P7jSR2rB00aO4MEEPMpW9R+kllRod+VPHL6xMS4wPFZjry0j5WikDRxcFQe07xCxYTFnBBQtPwKKt+j0xkOz3J0EgVMIM3ETEBwfbcDSkjLZiGA6zuSJVyVVX0XBvN2VlYGlKLfCeuy6u0J5BVr7YrMetdt6CQB0tg+HFAcf2YdddMAcUgtfRzVvIl12rptqv708sjfBOjVwAdKL96HfZ/LijdUSUqvf/+kwhgHF22WDFfa67LnST4vknXWiSvNC3ze+JiehY+pPq77Lxxf/Yll0zDj1OiTo/73efqilG//pl6RTLoczC69a1ECaqoa1qY9Uf+a8WjUM0LY6VeM4/6jiTN9WX4AGssAIcDuINEm9Pm/h6czp69jviip56VeLkiiSV8rsPGnzLeThuiW9i6im0YYdGPL5iQKsN1PnO1px+WRn7d7Ues59e+0qFBXYCstX7upsBimfpoz58KdlxyCC8t2xVxh2iAELCCEqqe+FutKL6d5rHPRvm3SKpk2Ltu3vXUXUASG3lfXi2w7T7+KzcvqL2rzKvqL2rwued4Wo2XlSjM/LHqp8H3nPtv1OJJXTGdVcTn3Vb5OObe/OmwgPpvdiS2y2Zm+UzvPe5k0UOfpKpGawH3iLeuK7ebSu1CBAPyAinoRcv7AIXSBzYtk1T65Dv2zyFPXX3Y+vmevUl1sZC5XemHayEY2spGNfPTkI7Ewbd5PLklWPJFYsP99woLUqay2ubpQrqu+7G763vmy2UFsxJQrvzDpZ9C+z+pvn54G7TNoJYy5KUl86USh+9iJO+7eCCEkBY8jHXn8ZpdH+iRCKw/iKLtKKy/dlDRbBtquKatnMXEFelO2ub5I4qBmHm/rWR2PxywPF2KJSb39GwlYsdOKHAH9ADjZzgE460gIoQE32uJqT0BeqhXCRgcGlDgRa8o3aD5/Xn9epU+69K68zktH/+6y9eZn/f+L2nye3lemZ1kXG/HLlY/H5HOQAlhaH4UBwkC0KGYUxYqZvp6WqQ+DADt9illeNYwDOt1MVQeA0/MuDVqlsuKY1BdkVd6EyImt35F0PZNZhXcfnqEoOeKQ4uZeF2kcoGIc42mFska4lZVkMZjlQDeNGvRcHFJ0tlJs9xMcHE8xmlYgADppgCQK63LMw1zoqLXTcYHRtAIwpzaSts2ZDnppiO1eghf3gYdHU7zzcATOJYddFFAUJdMitspYTDd2OohCiqKSiERRr3dxfSlYBjis6W+oBA2EgQ0Tj6MAaSLpecbTso6bJBkj4iiQlE/TEiXjIAC6naihfdLbUwFDdvsxJrMKsxoE0YlpY3NZcVR1Hal2dvWXgFJs9WKUlSyTgAST9DXWDlf/WqUPr6r39eF168+z7Wna7NIvU6anZbNLvxG3XPkItuc+IFa7zMZqxgHXDmeVDsO5ABfCor3xUdUwLlAym8QUkPeJTJg25xxn4xJxRK0Ofv/x2Lnz2d/t1BFx23Y8qimEbLSanEBNtohpXoFzO+x3FBJ04sCK+Hp4OsW9hyOYB1edJMSdGz10NJ44WRcc05xZwA0hZHRgsy5k3vNor7pUFXMyZ1SM1VGD2/q8qODq8ozJAJAWcwYFQkotSiJVXudOmXEnvdGqffVZ6a9imT6ENi892SyCiz/PqLznPoLtOsW1KF0oHUpAHN1Fpu3uR+6gfnBOxITISLSu9H3vEj7bwoA6qYcotSdiwH+RkhLi5J8LqLxDZWZBMI+katrgypcQ4qwLVVaX3rUoqTKt0s6+9KmnrD4hhDgXsY1sZCPLy3OzMK26o1mUDvDk22m1zb/Mbfmq6ft2v4v07rd+f/qrPL9OuWhdPIuybmQjlyXP8w5pFbnyr3ZCCBRlhbxgKMo2lZDLuejTCyF9TEUpaYncRKvnO5AB6Xs4GeU4GRXI6xhASiiVOx39LZsQ6a/ZHUj2b13fq8lS9TTKiuONeyf40uuP8e6DsxYdThhQfMsL27i1123tbNI4QMkEZkXV3M8RQmAyK+udTLsuZkWJg6MZHhxOkZfzS8OMCet5JUUlcDwqWzZXNTPAzWv9VmiHOKL42I1ei+2gsRtAJw4QBu066qYh0iRs6YUQyMsKx6MCZ+M2xZCvvQ6OJ/jqW0f4/9s791hZkvKw/6q753HOuec+9t67y7JgYWRTkQ2KIyfBG5awCxhIANkRwggwdowJxkkcUBIljjHBS7DBWBAcQCFRcNZLHIyxYoME5mkTWL+tCNuKSYFJds3y2L2793WeM9PdlT+quqcf1fM4d+ZMn3PqJ13dOV/XVNVX1dPVXd/X3/eVr11jfxDn8ixc0KwLeDDh6Weec6+N8urxabI26nAcdPa4abWNKY4THSfju/Ts/ygSpbf5XToU5WklDUFWTxCQ20uKBs9qPZk81Zpd63xQJAwEm+vjN/zHBnJjK8oubpk81cbQn8WcK/b14cu7fPXhbXRqwooKe/xbbzvNTaf7tfqzaN+5vUZbrwI0g2Fa2F4zH5IkZXsvrm3trXVD1vudynJUHdfxghEI40AyKsThS619pRMKzm328z5Nmx8NucNBUb67N2LgiF6x3o/yBb44P8ZpZLsUzkkIOH+6x7nN/lirhv4Uj3Vt+pCm86La1zbJq8cnlYfJ5/yqdFi0vDg2sHqdxRyP/0Ub03F6YjqyNqbMiaB4wYe6/aB4UrnkcVIOI1Ssp/h39tm1DSSEYDisL0qmHnMBq7etazYQIQShEPS79fJJYpLpFdFWL3OhL5cXdnEo/QZsmf1hWpbbRWV3kDjtTUKIPDFh+Tu68HlMqiGtBIcNhKDbjdjc6JSiXkybn37XHXrKtSgBdGshjMx3vvbITi0Mk9amfLHt6kWoNj+F2HNFeVP5JvkknZctr/49TedFyVepc7VPbdbZM5nWb+UtgkkPhU0nilvecFIJdxvznoSafF2ZuenmXAdN8ubBmEvnhkaEcIoPhwbdhJhznpumea5zZfXM0995dTtqOjeVXcRYeBbPiViYPB6Px3N0OBEL06QbnXkMpI2PAnpyG/PQ+EDTJJ/3CWtCR5uMwq4+NconN7Fk3A1n26HOY01KzFr2CHIQ4/9xxJzDs4+F5/Bo9cIUVUIJZf9XQwlN+1x992bsFJGW/p72OQqDWggeMLawrK1i26lNh+GSD61nW1EeBoLHXlivXdiFgEeu7JbCG6W2nrQa9sb+3+9UQwwZ+Ubf5jeq6DC0USSqOsdJlkupLE9SnYcMKrYRJymDYVm3jGoUhEyHa9bbrjpv3U719DTH9wdxrX6tNY+9sE4U1sNGbe+aSBMug7dre6bo1Visv+nzrOfhMj6bfEmzhb9Z5OeD9vUwx6gNOk/rn8dNq73yAK11dhE3F+hijqZi34sXGJdca00cpySpRmDyJE0LF1M8NorHURuSNM3D52ThfKp9KpYXYhxhYW8Q5zmdAiFY70d0ooAkSXNnj1Gc8rVLW1zfGbGx1uHiuTXz4inGe63XDdndj7l0dTf/zlovymO/9aIwd9PeG8TsDVP7smuQy3f2RlzbGdmxCHLXc5M8MQQNO/uj3JmgEwZsrHVAwO7+iKEN4ROFgo21jn25F7KnFhNiKSIKgzwhY+ZgMbQL1/beiOu7Q7Q25S+eXWNjrUOS6NxFXmvNME5IUuMJ2O2EuWNFFlaqOG+p1ly6ssfDV/aIQsG5zV7+km8YiDw8kdE5yG8Ucj0rESbmOccOU57a8zkrVkx6OUs9xWNN8kX1NQvVlRFF4/PtMMeueGxVY1GQz7yv0BT54ah76E3yymv9wpR/0IsJC5KmqfNOuan8aOT2YguE+YEFQfmuPklSZ4K+JNWl94UyBHWvtKw/O/uxM+rAla19XNN2S7aAVeraHYxj8xW5vjNgFKc1+XBkFoJZ6URBLSFeJj9/uld7F2gUp3z1oevOsEq3XdhonLfqWMPYrbvKla19ZzDWdbuwV+VN5wUs7txblDx7N6tKttjeaP2L6mt2E+LCNQeLavcg8hW07Remo+ouXmRRHjFNF59V1TOJplA4TfcSB/EyWrYOjReBBdXTRCAE2uVwN2GMvNeVx9MOWm1jajPZFpBL3oQro63GnUlVa5cNx5BFKp+V4rZiuT9uRwUhcNrSgkCUojJMQ2tdilpRxBVzbxLzrhlN5Zv2+Be19+9tCGX8Um/QWtdsuJ5mjsQT07R92+qj843Ii21orYmigIjxxV1rEyU8s+0U016kqc4dIYr1BELQ7YWs98022e5gHOFaa5NTKRBpbj8ZjBK+eXmX4SilEwWc2+wZ24cQbKxFnNvsMYxTHr68y8CmmDh7qksYlN9uj5OUbzyyw9WtASIQ3HzO2HCEMAvMhTNraA1XtwfsDsapLs5t9tCYFBg7NgXGTad7POb8OgLBpat7XLq6h9YmbcX6WhaKSFO8FMWJ5tLVffrdkLObvdyuEIWCb7lls2Qn64RGz+r8CLItU/Mi8cjmRMLKhXDP5+Z6F12xk0WhGZ/BMCnZpzLbI1Cyh1WN39POpeI2biBSOg576I2cq5m91VU+CoV5Spzj3J4kd7U9z1iAmbtuNyzZ8IQY31gt8nfbFp1d8szZaay/e/vZM6b1NqbiSeTq6yS5rWBh8jjRbO8Na1tpgnFInULHAXdoG63Hnmj5Sa11aTGoanTbxfU8rE6ms9bGESGwXnbFNq5tD3jw4R1TLtcFzpzq8bibT5XKp6lmlCSM4iyJ4VguBJxa6+ZOAXn5OOXhK7uVLbBqr8sXqYvn+iUbWKo1OtXs7I9y547ifEZhUDLoZ/I01XlfZpm3UZzkxvdZtuuEGEdFn6X+8dPt+Hh2YcrSljTVU9WtSZ4tntULZ5b3qqqb62Zukb+Fg8ir83aYv+es3sPUOdsxSNPx+ZD93+9F3sZ0lG1MpTuwwqTPIs+OLUoeJ+O79SJBUP+OECJPmVCVmyevykVSCHSq8yR9VZpCErm2xIQQPHR5r7ZFqDWcO9WrbSkGgYCkbtMKAkG/G9ZyQgWBMHmtaob24gJVrisMRS08UyAEOjAhg6r9B/Inl6o8COoLzOT5dC9IrvKZfsX2ip9d85zq+jtd2fxUbVfznsP501haX1iFMEkwmxbbecboIH2aV16dt2n9XuTvudrevG0fVG7fSMn/nuXGyHMEFibPMaK+Xnk8jTcIHjdH/UlpFrzzg8fj8XhaxbFbmJpsZouRz2ePa6y76QuulLh5XfO143idBWCKZ5DDW6252Qk4ts1we8od1MY5z7wJc6AuFw31NHSpsa9zlj8MneeVL/d3s3qdm8quYiw802n9wlQ8ebLPY+N/XZ79Xf3uQeXFf71OSK8WJscmlHNEkUCU68iOC4GznigIefzNp0phdYwdSbA/rCdJzOpy6fAtt2yy0Y9Ki4EQxkstKYQYKvet8HdudE9shIGxHuXFTVO8MncjE/GhuAYJIEDkxvti26k2nnbVsDqpNpEhspA7ZZ3rYz1pPqMoQBTsZ0WbQ3He8u9R/n7TeZF9FgLn/BfP02L56rGqbi55MeJJPlmYKCRVnYvMem7PKneN9azyeXVe9u952TobG2DrL7GtpPVeeVD/secHG+TFY8uQJ2nKzp7JDLvR75TcX0ejhFTX38JPtQmFVHynSGttY9QZN+0stFEWVufR6/ucP9Pn4tm1ksOC1roW5qWpr9d3hjz48Ba9bsjFc+u5s0QgjNNBqq1HGWWEGIc2yv7OPl/ZGpaiWwhhFuezm1363ciOkfEMHIxSzp7qlqJbZPrv7o8YFuqJrKv2qOC+DSaU0oZ1yXfNf5NjQ/VYmpr5QdiQVIX+5PKKK+8854XWxgMwTZcT2qg471mSy1nGY9XyWXQ7iPwwdbgRnbUeh0MrvI4ws1Gt6pV3XGxMxyIkUWMB7TacLkq+qLaL7zJUmTc8S1NImqbye8Pxe1OzlI9CUfOUA9gfJuzs19vO3n1yvZvhaiNbtObR4dxmb6nzPGn+l91G2+Rt7NMx1NkvTBMWJv+c6fF4PJ5WcaIWJq0rKSJuABMNfI5IpzTHvnORahMZvNrXbDvHJR86Qg+Zfe+G/oh6igiAwShh4Ai+OYpTYkeAWiFwjmvTeGutc5tMlSa5x+M5ORyJ95im7T1X93tdchOtYPyCrCv0TFM9xbZTrdnbHzHI0z4kbKx18nBAxb6VX74zdgetx2F1MjtBsbzWmv1hwtWtAamGa9tDzm726HdD4mRs2wLo2LA6cWocBbKX+da6AWu9CK1hEI9D2GQ6CExfskUgC7GUpJqrW4N8UTq1FnHx7BoIwSPX9tjaGaHtdzf6HYJAsNYLWbN9S9LM7lEO8wNZupJxCoSuHYvMxpalpACzf5stslEYsLEWTZ2f6njPel7MIm+q/0bl1bbnlTfpcNDfyFHWeRHyVejscdP6halpgqG+SLmOaa3z1BXFupJUo+M0d1wolm+sJ05M0rlC/+IkZWt3yJmN7kz1gPGw0lAKCwQm9cKj1wYlZ4RUw+XrA3rdoBaxYZRodveHVB9i9oYpcTIy4Xy0BiHyRS8Q0KuEsOmEAcPhiIcu75V029qL2drbQghKT12jOGVnf8TjbzYpKopODS47mtZ1ubBPa71OmHUxr0cAvciEI6qm8WgeV/e5MWk+VyFv6ues8htp46jqPOvvfJI8P7daorNfnCbT+oWpOoHZBXYeuSucC5i79HnqiRPt9MbIIm4Xv1N+WqrLcZ6couSlVj7ipqH4eNuw0rYrX5MQgp39eny+DO040O+GCERpsZymc9O4glve1Nd5539e+Tw6HFTnZcqrfWi7zk19X+QYVduaNmar0NkzZqkLk5TybcDTbTtvAf4YeD8QAt8AXqGUcrtnHTGyu36PxzMf/gnCU2Vpzg9SyruAJyulbgeeB7wTeBPwHqXU04H7gVcuq32Px+PxHE2W6ZX3OeDF9vMVYAO4E/iIlX0YePa0Sqr761UD5jQ5ZE8ydbluKN9YT2Mf3U9L0+quH5/sLdism6NsQ/kmeRiKueKrplovROfsbnkR87wo+aLrvlHdDmMsjrvOTWUXORbz6uBpZmlbeUqpBNixf74K+Bjw3MLW3TeBW6fVM8+edBPdTljzEoO684GrruJJ1JiN1REpACBJNEma5p5qGbv7Mbv7MWc3u4RhkCd40xrObnTY3o/zRIRgojRo6hlww0Bw4Uyf7b2YvcJLt1mp2thh7kRcOp8/3ScMAh69vp/blISA86dNmoxHrhm5tvJTax06dlyLeu8NE0Zxyqm1qNTfODVu7r0opGhTCsOAMBQ27FGhr0IwGCY2gsJ4v15r49UYhgFZxo+qYbvKSZO3sU9e5+nyJjbWu6UUMxcvbs71/aPI0p0fpJTfB/wo8BzgS4VDxuo9I0370C7DZlUuhKDTCQlTTRwnxrAe1b29XPUYN+jsnaKxPBDmopq5TRfr0Rr7rpGRGY8081h1fWecUfXhK/us90NOr3fz8mEYcHq9w3CUsjuIieyFu0gYCPq9iK7V4aZOyHAU8ei1fQLhymMEoTBxu5p0FkJwbrPH5nqHR67uIYRZ9EJ79T+13uWyXbRuvbCeu7mHgWDfLkY7+3Huyn51e0S/G9DrhIwKY7E/SggD6HejUvifoGOcVKrvSY3i1MQiDM3x7D2tOE5JhLnpcJ0bs5wXbZBnx+aVt0kHr/N0eXbsILa0nd1h6e9Ll7bmrqONTFpgl+388Fzg9cDzlFLXpJQ7Uso1pdQecBvGAWImFnGnFASilO56lnpGccq+42XTThSy3o8cJyalOHJ5PYnm+s6wJt8fJPQ7Sc3Tp9sJSHQ9LBDA5ka39vTU7YT0e2Fp8cyPReW4fUWq/Y/CgFtuWq/Jw0DwmJvWG5P3bTkSHGbvernGqBqUVAhBGIAr2FKqNckoddajdfOLy4u4k3VtMy5SflCWeffudV68fBEcl1BEs7BM54czwC8AL1BKXbbiTwMvsp9fBHx8We17PB6P52iyzCemlwAXgF+TUmayHwb+i5Tyx4AHgF9eYvsLIYtIUH2/aFLonDAQNXtWIEw6iJ396pZgw10d5l2hwaiczn3STkC/EzJ02NKMbUzccLgfrY2dqPp+USAEG/2oFuC1EwVWh/LYNT3hTLrTjMLAhDeqyOMkJSKYK9yTx+NpN62PLr6ox2tb2YHlSaLZ2TdRHzb6UZ4+oqm8xthBTFgdkdtqtIar2wP2BgnrvZB+t7xdZ7a0jA0sY3c/ZjBKSukfJuk8GCXs2kVCa5NuAyFMqgub7uGgY5H93e0Y+1DueQToVNuUGAlnTnXp90xeJq3HKS7WemGeGqNI5pxSbF8IYbZfC8fKO7MAAA5KSURBVGORhTSqlxungbiReT4MeXZsWee2y464aB3apnMb5VN0mPlOKosufty28iZFF2995Aeo/9BcBsZlyIvHwhBO27BDru9U5QJKF9RcLuDMRpe1XgoVY6jWOo8pV5Sv9yPW+5H1iJuuQ896yw3jsl0mtU88nRnD/DTJwXjGdQuhjQRAKLjpTK/mFSgEbKx12HDUk6Ypw1Ext9O47W7H9LNY3jw5mafIojxJNIHQhOGNzfNBxuIg8mWew8W2T4rO0+Tjc7EdOnsm0/ro4tUfXPUEW6a8eKz49yLaEE1y0VxPddtvUv1x4jr5hY0ovjydgwOOUa2ntm1X+eqilMmDhhBT0/ozi86Lnv9lyqvHXeXbpHPTPC+y3Sbdlv07n9Ynj5vWL0wej+d4458gPFX8wuTxeDwt57jZl6bR+oWpejeVG9sPWb7YuprbWJQO1Zdy7QG0XpDO6WLHm2rbE/rq2gnJ9vPbNM+rPFfnLd82HRYtd+E6X1bdJ4/hSDg/VCfS2BnqJ9VB5E31T5PPYjgdjUwSvCysTrF8rxvmx63RpOTOXawn80SreuslNsFf1XMNTMig/WHM3mD8crAIRJ7qo1h/qk32W4F5sbd43W/SDSEYjhKiKKjd3cwzD/lYxIlJdGjHIgjH2XWr9RRDTBUN26M4LSVfdOkwr3weA/mizskblRftJCdF51l1m1e+LJ09k2n9wjTNsFu8MB1Enh3LTpzqd+aVJ0lqIhUUnA/MBbMeEqjbjUhTTZwkuatzhrZ1JOk4nE+SatJhQhAKm7LcyNNUMxgm9LrlOtZ6HXrdiO3doQnrE5QNu3FsEihmXdWY7Lldm912ms5aw2iUEob13EnzzkO3Mx6LKAxr7yVVy3c6IZHWebbd7FiawmCY0O2GTmeRRc3zPLqtSn7SdV7EWCy7rx43rV+YDhPXSTNpYWy6C0ocHnFNZYNA0BHuMEmuoLEa886Pq7x92CjXLwS9KHQGJYxTTeo4kGpNJOq7vE06L+pmcNJYuJhYzjUYU77XNP/H4W73JOrcxEnU+ajRehuTx+PxeE4WR2ZhWuTdTFNdTYbQSQbSGoKSHSijKWTOcJSwvTdyPh2Zrb9K9cJsY9W3qRofEIwdyDHTa72IfqceKLbXCZ3hi6o2rmLbLg7jDtTo5ujAhDvgeef/Rus4TLzOB5MfNZ2PO63fyiueAMV94BuRZ8cmyV1tN8mLbQRCgICwawz0qdYl21JWPtWa7b1Rvu03iod0OwHr/U7ufBAEgm4QkiRZjLpxaKMwMHamOE4JrI2nSecgEASBiTw+smk/cmeJDvR6ITt7MYHAtG87EDGOlB5FY6eIKDT1aE0p19Si5mceeWgdOlJtx0KUF89p8zzP/B+2bgeRV3U5KTov6/e8TLmnmdYvTFCexOITzDLk2bF55S7DZuQISQTGm+6aIwXGcJSy0a+XD0MIw7AmDwLoduvyZt10KYxQXr8QbK53nLplC1hdXq9nUtvLlgfg1O0w5nlVOi9at6Os87SxEKIeXWKVOnsm0/qtPJdnzTLlTe3OW3aWNmrlG+o7Djq3TT5Jj6Ou86z9PWjZRfb1sMaiSYeDjMWi+upppvULk8fj8XhOFn5h8ng8K8U/QXiqtH5hchkzDyp3GSHnkbvamFcOIIT5V9MV4xSxSJ2b5IetcxvkJ0VnV9+q5dukc7U/B61nks5NOtzoWNxIXz3NHAnnh/qFXRxYXjy2CrkG4ljT74SM4pTYvuEqMDmLgik6VI+tYiwyDzitKXkKNuqsyT0Uqy7nTe3Oo1t1L7/N878onSfJi7aTtug2TedFj4Wr7ep3VqmzZzKtX5gmPeZnJ7TLuLgo+aQ+Vb8zSW7C7ZiMtpmsa8PqBIGg16lHPHD1qalvhzEWJmbfOEQSQJxotE6NO/kUncGEVUoc4ZOaxm6WvlbHY9HzP888L0K+aB2Ogs6rHotV6eZx0/qtvONE6oj/Ewj3otRWXDpMuhd0lfd4PJ5JCP+I6fF4PJ424Z+YPB6Px9Mq/MLk8Xg8nlbhFyaPx+PxtAq/MHk8Ho+nVfiFyePxeDytwi9MHo/H42kVfmHyeDweT6tobeQHKeW/B74H8/7ma5VSf7ziLq0cKeXLgX8FxMAblFIfW3GXDhUp5XcDHwb+0or+XCn1E/bYc4GPK6WOxpvKC0BKuQb8b+BNwGeA9wMh8A3gFUqpgZTyJcC/AFLgM0qp16+qv8tASvk24OmYa9lbgL8A/jPmuvEl4MeVUrGU8s3AXZib8d9QSr1NSnkG+O/AGWAbeJlS6vIK1PBUaOUTk5TyGcC3K6VuB14FvHvFXVo5UsrzwBuBO4AXAN+/2h6thFPAryul7rT/skWpD/wbzAX5JPHTwKP285uA9yilng7cD7xSSrkO/DzwLOB24NlSyu9YRUeXgZTyLuDJ9jrxPOCdGH3fopR6BvBXwA9IKZ8MPFMp9TTgacCPSCkfA7wO+KxS6g7gI8C/XoUenjqtXJgwP6TfBFBK/QVwTkp5erVdWjnPBj6tlNpSSn1DKfXqVXdoBWw2yH8KeA9QTwt8TJFS/jXgO4CPWtGdmIsrmKfKZyuldoGn2HNGYxax84fd1yXyOeDF9vMVYAN4EvBHVvYJ4DnANaAvpewBfczT4y7mOvMbtuyHMb8xTwto68L0GOBS4e+HrOwk8wRASCk/KKX8vJTyWavu0Ao4BdwhpfwtKeXnpJR3SSmfBPx1pdSHVt25Q+btwD8v/L2hlBrYz98EbgVQSm0B2KeGJwB/cIh9XCpKqUQptWP/fBXwMeDPgOdb2XOBW5RSXwU+BDxg/71XKXWd8nUmHzPP6mnrwlS1Ewgmxwo9CQjgccDLgX8I/Fcp5Ymxp1j+FHiTUurvYS5Evwz8IuUL9LFHSvlDwO8rpf5fQVz8fZR+L1LKbwc+gLGhjA6nl4eHlPL7gB8F/inwLzHbd7+Nub4JKeUTgX8APBH4NuA1UsqbKV9n/DWmRbTV+eFrlJ+QHou5oznJPAT8nlIqBr4ipdwCLgIPr7Zbh4dS6ovAF+3nL0kpB5itml+RUgLcKqX8n9a+cJx5PvBEKeULMDcrA2BHSrmmlNoDbsPa26SUj8Nsi79CKfWFVXV4WVinl9cDz1NKXcNs272gcOxW4G8Bf2i3NpFS/hnwZMbXmWsUxsyzetq6MH0SuBv4T1LKvwF8PduSOMF8ErhHSvnzwE2Yba1HVtulw0VK+UrglFLqP1jjdRdYU0oN7fH7T8CihFLqJdlnKeXPYJwd/g7wIuC/2f8/bou8D+OZ9r8Ot5fLx3rV/QLGnnbZyu4G/kgp9VHgRzCeit8EXielDDBei08B/i/mN/Vi4M2Ux8yzYlqb9kJK+Vbg72IMlf9EKfWnK+7SypFS/hjwUmAdeLNS6iNTvnKskFKeA34Fsyj3gLuLLvN2YXrCirq3EgoL0yeAezHG/QcwF+VvBb7A2BkA4B3H5byRUr4a+BmMW3jGGzGL1RD4HaXUG2zZu4HvxWzZfVAp9U4p5SnMQn4euAr8oH3q8qyY1i5MHo/H4zmZtNX5wePxeDwnFL8weTwej6dV+IXJ4/F4PK3CL0wej8fjaRV+YfJ4PB5Pq/ALk+dII6V8rJTymTOU+0H7/3dJKd+1/J4Z93Up5bcd8LtdKeU7pZRaStnW9w09nqXgFybPUecuYOLCJKW8DXgNgFLqC1lU8pbzDkzcN4/nxOHvxDwLR0p5J/CTwIPAdwIjTMiY3Yby25i371+Iiebwc8A/AiQmasEnpZSfxbxU/Gkp5ROA+zB5eH4WEw/tMubl2/djzuszwC8qpe7F5Nx5ipTyXuCXbD132ACw78XcoEXATyql7pNS3gN8HRMh4EnA+2z+nruAt2IiU/eBfzZLnjApZYhJyfDdmHhsv62UeoONdfhuTEqKrwNfBnaUUj8N/JRS6rqU8n2Vuu63+jwVuAC8Tin1O9P64PEcJfwTk2dZ3I65uN4OJJhIz01sAH9i8+XsAC9USv194N8BP970JRvE9B7g/Uqpd2BiKr5bKfVMTLy0d9iib8QkFfyhShXvAv6jUupO2869hWNPVEq9EBOLL0uu9zpM5IS7MIF0Z41G/QOYKAxPw0QzeY7NOfYs4G9jYrm9hHFUbGz06yYeVUo9CxO89u0z9sHjOTL4hcmzLL6olMoCzD6Aie83ifvs/w8Cv1f4fHaONr8OvFRKeR/wq0zPPfRU4FMASqk/B05LKS/YY5+18gesPMQ8qfyslPLtmHQKs4b2eSoml5ZWSiXA5zGL0XcBnyukb/jEjPVl5X4Xk5PJ4zlW+IXJsyziyt/TUnTEDZ+z7xVjZ3Ub6ngz8GWbkfT5DWWKVONxFVMf1PqvlPog8DeBPwT+rZTy52Zow0XWTlDpQzLj97PfrU/V4DmW+IXJc1S4Djzefi46O6TAmv18C/AV+/llQGqzlhbLFPkD7BajjWL/qFLqUUc5bJm7gVAp9WvAazHblbPw+8D3SimF9bB7hm37/wDfY+XrTN7uLJLpfwfeQcJzDPHOD56jwruB90opX0Y5PcHngQ9KKXdtmXdZ1/BfAj6D2X57NXBeSvkpjLNExk/YOl8DdIBXTOnDl4FPSSmvYm7q3jhj3z+ESUtxHybtwm8qpX7XLlIvBf4E+CvMFmYMIKX8H4y3Pz8jpXxQKfVy+/dtUsqPYnIx/eMZ++DxHBl8dHGPZ0XYfELfD9yrlNJSyo8AH1BKfWDCd+7H5B/6y8Pppcdz+PgnJs/SkVKuAb/VcPitSqkjm6BNSvlhjGt6lXuUUvdM+foWxlPvtVLKPUxeoQ8ttocez9HDPzF5PB6Pp1V45wePx+PxtAq/MHk8Ho+nVfiFyePxeDytwi9MHo/H42kVfmHyeDweT6v4/4+d8yE3zW5FAAAAAElFTkSuQmCC\n",
"text/plain": [
- ""
+ ""
]
},
"metadata": {},
@@ -769,9 +769,9 @@
"outputs": [
{
"data": {
- "image/png": "iVBORw0KGgoAAAANSUhEUgAAAg4AAAD8CAYAAAAffiwCAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADl0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uIDIuMS4xLCBodHRwOi8vbWF0cGxvdGxpYi5vcmcvAOZPmwAAIABJREFUeJzsnXmcVlX9x98D4oobkprmnn3SNMUlFUXAPTW3XHHDsqx+uGRWWi6IqVm5Q6m5oFZikmFp7oK4ILnl7lclccfcQVwQ8ffH93udyzP3WRhm5s7Aefua1/N4n3PPcod57rnnfM/7NH322WckEolEIpFINEK3siuQSCQSiUSi65A6DolEIpFIJBomdRwSiUQikUg0TOo4JBKJRCKRaJjUcUgkEolEItEwqeOQSCQSiUSiYRYouwKJRCKRSCTaHknrANcBZ5vZcEkrAVcC3YHXgAPN7GNJ+wNHAbOAC83s0lr5phGHRCKRSCTmMSQtBpwP3J47PAwYYWb9gMnAdyLdicA2wADgZ5J61co7dRwSiUQikZj3+BjYEXg1d2wA8I94fx3eWdgEuN/M3jOzD4G7gM1rZZymKhKJGjz5x1Glq1WfeGhK2VUAYJfTB5VdBZ4ceXPZVQDgvbc+LLsKPDf53bKrAMB70z8quwp8+8A+ZVcBgFV3/1bT3Obx9VX6N/yd8+gLd1Ytz8xmAjMl5Q8vZmYfx/spwBeB5YE3cmmy41VJIw6JRCKRSMwf5DslTfH/lZ2Ppop0LUgdhwokDZb0u4LjkyX1bDCPByStWnFsZ0kj26aWjSFpz3gdIGl0g+esKumBeD9K0iL10rUHknaQ9MP2yj+RSCQ6I01NTQ3/tILpue/0FfEAyVfwUQcqjlclTVXMo0jqARwNNNRhKMLM9m27Gs1x2TeVVXYikUiURVNTuz7P3wZ8G/hTvN4ETAQulrQUMBOPbziqViap41DMapL+BqwJnJNfmiJpPWAE8Am+dGUvM3tb0nnAN4AngQUj7brAFXiP7tVcHj8C9o/zx5jZmZKGAqsDqwEDzOzTSDsUeDOW0qwDDDezAZKeBR4CbgH+HXWaBUwDDgZOAdaV9Hvgr0BPSX8C1gOuMbNhktYGhuPDUtOAwfmLIGkysA6wRmWbq104ST8D9ox0x5nZWElnxbVZGLjAzC6O0ZcZwDLAvsDlwCrAR8BBwLZR9vD4bFLU/WEzO1TSl4BL41rPAr4b7bgy0m4GXAB8HQ/+GWFmIyQNAo4APgWeMLPvV2tLIpFIdDTdWswctA5JGwJnAqsCn8QI9P7ASEmHAS8Al5vZJ5KOBW7Gv0NPNrP3auWdOg7FfAXYAFgCeETSZbnPlgUON7OHJQ0D9pd0O9AXvzmuCDwXaU8AhprZdZL+ACBpNfzGu0WkuUfSNfF+wVgm0wirA7uZ2ROS7gB+amYTJR0DHAn8FtjEzH4kaQCwNvBVfHrqeXxZzvnAYWb2bHRm/g/4c0FZLdoM/LMykaQ18U7DplG/YyVNACab2dExRDYJuDhOedvMvi/pUGCKmQ2StC+wC5CPPtsQ2Af4H/By9IyHAZeY2dXxBzEUOAlYH9gN6AU8gXfEFgb+hnd+egI7mNm7ksZLWtfMHmvwmicSiUS70sopiBaY2YP4KopKti1IO5o5GJ1OHYdi7jazT4C3JE3Fn4ozXgfOkLQosAJ+o10bmGhms4CXJP030q4N3BvvxwHfxDsXawJj4/jieI8QfOSgUaab2RPx/mtmNjHe3wX8ErisIv1DZvYBgKTsX+Y3gD9G1O1CwP1VyipqcxF9aL4OzwGHRnm9JN2LjzB8IZc+a+8GxFpjMxsV5wzOpXvOzKbE8VeBJYGNgONybT4x3k8ys7ckfQz8z8xeidiUJePzt4Hros1rMfvvNpFIJEqlW/tOVbQJqeNQTGVEaf7/zwXOMLOb4um+Jx6FOiuXJvvN549nx2YAN5jZYfkCJG0Vn9WqS4/c+xlV0nSrqEvGzIJjHwADzezz8yuDOoOiNhfxKRUBt5L6A1sB/WNIbFpBG1qcV6fuldHA+Tbn0+bfN0laEB91WM/Mpki6vkaZiUQi0eG01YhDe5I6DsVsJqk7Pty9GP6UmtEbmCRpIVyucR9gwI/jSX5lfHicOL4RPnc0MI49SPPT+4fAOcCxNeoyleY1tVtUSfO4pM3MbALQH3gAv5EuVKedjwA7ADfGFMEb+FRCJUVtLuJB4ARJC+BP8hfgQTgvRadhF2CBuIHnuR/vXFwjaWc8LuFVanM/fk2vornN9VgcmBmdhpXw301lXRKJRCJRg84/JlIOTwPX4MPnv8w/keNxAWPi8/PxQL4m4DFgAh6U+J9I+yu8k3AD8XRtZi/inYXx+A14Sti6qnEtsKukW4GlqqQ5AjgtYh02Bs7Dl9N0z8VPFHEk8AtJd+KBkQ9XSVfU5iUrE5nZZDw4cXykPw+P4l0zylgDuB74Q8Wpo4DFIs2P8WDIepwIHBRtHozHN9TEzN4CbpV0f6T/DXB2rEBJJBKJ0une1L3hn7Jo+uyz0sV4iUSn5aO3ppT+B/KPX44quwoA7PabA8uuArM++aTsKgAwa2bRrGLHMnPatPqJOoBZnxTNgnZwHWaU//sA6LXexnM9z9D3Kzs1/J1z7zM3lDKvkUYc2phqAqkGzlte0oUNph0ZQ/pdAklDYllpa88fLOl3c3KNEolEoivSramp4Z+ySDEOnYRYNXBY3YTzMekaJRKJRPmkjkP70EIgFcKmf+EugutpKVRaAhhtZhtJeg64EPgWHuC4jZm1GJeMufmLcGfCQvi8/ypALzM7Q9IvgE3NbBdJfYHv4Us1L470nwKHmtmLeaGUmV2SK+PnwH54oOcCeIzDAJplVdvgIqYv4YGkQ83seklb47Ec/wXei1cknQr0w/eDH25mV1W06UDgZ7ic5BU8biT7bNXcNRoAnBbX8GXgO1HP/ngw59eirfvhy2L3D89FCxlV0S8wkUgkyqCpC0wEdP4adk2+gtsQBwLDYrVFD+BGMzuVZqHSQOAeXKiUZwHgaTPbEpc1bV2lnP2Aj8ysP7AH3hkZhwuYwMVJ2e+4L+6OOAU4y8yyG/sJ8fnqwLCKTkMvYAhuYTyC2cUhmaxqSbyz0R/YGzg5Pj8dOMDMdsVv5EjqB6wS7doKOD6/F4akbnHeNrjwabsq7QZfsbFPlPsOkG3duCYukDod9zzsHu/3k7QwLqPaAu+8DKuRfyKRSHQ43bt1a/inLFLHoX2428w+iSj+vEAqEx69jq+CuBO/+RdJiO6K15cpWMEQbIR3FDCzV3FvwVvAyrnOytOSvoL7x8fhHYihksbhN9as7LxQKuPLwKNm9qGZvc7sgqisLe8AG0u6B18NkeW3qpk9Eu/vjNe+wKZR9s34v7/89q29gffM7HUzmw7cUdTo6NB8ZmYvxaG7cPkUwAOxCua1qPun+PVe0sw+AjIZ1Y3MLqNKJBKJ0mmag//KIk1VtA/VBFJZ6G8jQqXZ5EU1ysl/lomQnsEtlU/jN/i+wHIxJTED31+jcvezorDkyu1V82KpLP0g3HfRL14fKEibl19dYmanV2lPrfLyVGs31BZA1ZJRJRKJRKIB0ohD+7CZpO6SvkBLgRS0FCq1VkKUSZAIodEsM3sXH1k4Go8PuA+/uT8Z50zE93JA0lax6VM1JgPrSOoRbdmoIE1v4PnQTO+Ra8srcppo9qVPBL4lqZukhSWdX5HXW8AykpaOKYwBFGBm7wCfSVo5DjUqgOpNfRlVIpFIlEa3pm4N/5RWx9JKnrepJZCCBoVKDTAKlzyNjffZioM78SfrCWb2Mr651bj4bCiwm6TxuARpAlWI6Ym/4KMW58Zr5aLtv+GdgduB6fgmVCfggYmj8c2wXor87sXjLCbgkqgHK8qbicdg3BXlPlBQXsb3gL/EtMeC0f56NCKjSiQSidJoampq+Ke0OiYBVKIWsdnUX/Ab+GPAdmb2SjuWtydwR2xVfjO+SqNq56a9SQKoZpIAqpkkgGomCaCaaQsB1Hbr7NXwd84tj19TSu8hxTgk6rE8PsXwMfDn9uw0BIsBd0iaDvynzE4DwMdvvVFm8QB8Wb3KrkKnYeozz5ZdBQDef7ly9rHjWXzl3mVXAYBFli8/xnjGxx+XXYU2o8ygx0ZJHYdWEk/i65jZMe1YxhK4h+GWiuOjgEPq7HHR2jKPBe7Mbthm9mvg121dTjXM7HLgcknr40spE4lEYr4hbaudmFs2wF0Gs3UczGzf9iowOgqlY2b/oXmzsEQikZgvSNtqz/vUM0ReRrGl8SfAnnhw6r/M7GRJfYDf41MCH+MCpBHAEpKeMbOLskIlTQbWAYbj209viG/nvT8eaPmQmV0RaZ/BhVDHU2FMlLQdvoPnh7jrYH/gj3hQ4ynArlHfVfAgyE1oNlX2AE40s9lcC2F+PAJfHnmWmV1dpb1DabZPDgDOjPw/BX6Ar4AYYmZ7hklzDO6ieBfYCd8ieyS+Y2gP4Agze0jSJOAfuETqxihzW1y+daykbaJtM3AHxd5m1jkmSBOJxHxPmXtQNErnHxPp3NQzRFazNAJsgd/QB8eUxCHA781sAHAGHlvwW+DqfKehgIXMbHt81cNB+Dbc3wKQ9HXcPPkBxcbEIcBPwr44itlFVH/P8gF2xTsOg4DXwni5W7TpcyQtjq/U2BLYnmabY1F7odk+ORBY2cw2A36Bd5ryrA5cEZ8vDXwd3xL8vqjLUcDZkXY1XNe9Cd6BuSbK/U58vjQwKNo8NeqZSCQSnYKuIIBKHYe5o54hspql8QN8yeRY/Mm6F3AdcIKkU4D/mdnTDdah0jB5N7B++Al2xfd2qGZMvAa4IPa0eDg2kcr4vAOS5RPt2S3aMxpYpMKDsBbwVJgm3w3ddLX25q/TBrh6GzMbb2b5DhbAVDN7tKKdeWvmA4ByaZ82sw+A94EHIxYk+7f+BnBxLMkcSLG1M5FIJEqhKyzHTB2HuaOeITKzNA4ws35mtkcM+x8N7BCjCy8AmNntwMa4A+JySQMbrMNsdsQQMY3FpUg7AWMqjIkDgI+izCvxm+ebwD8lfTXLyMweB1YIsdSSZvZstOfUaM8AM1uzYpj/Uyr+TVVrb8V1anFejTZCs2Gy6C9ntrThhshzKT4F0h/vrCUSiUSnoStsq506DnNHPUNkkaWxNz6i8L6kDfDdLBeUNATf1fLP+LB7HzxOYKFW1OtafNpimpm9QRVjYoiaPompkFH4LpJ5/gWcSvMNNt+eZSWdVpH+af9IPcMMeWu19laclzdg9pE0ooE25s/ZFHi8gXPARytelLRUnJ/MkYlEotOQpirmfeoZIofS0tL4H+D92BRqH3w+/vfAc8A1YWAcBPwZ3+Z6z9jPYk64Hd+r4tr4/2rGxBeB2yTdBqwH3FSRTxbXMDr+/6/AtJjy+CfN0yQAxMZUJwK34tMIl9Rob/688cBTku4CzsN3vqzHucCGku7Al4se2cA54AGn9+BBnr8BjpP0xdqnJBKJRMfQFZTTyRyZSNTgub9cW/ofyLLfUP1EHcDCyy5fdhX44JWXy64CAI9d/e/6idqZFdQ5BFDT/vd+2VVg9R371E/UASyx5jpzPQzw7Q0GN/yd87eHRpYy7JBGHFqJpMGS5khQJGmcpHUKjm8r6d+S7pO0cdvVEiS92Zb51ShnB0k/nMNzRkraub3qlEgkEl2NrhAcmTwOrcTMRrZhdkfiO0suj8cm3N+GeXcIZlY5zZFIJBKJOaR7Mkd2LiT1AC7HA/Q+wm/SUyiQGsWSw8eB7vjW1zKzjyQNAA7HN3x608yGSzqH2eVFT0c5X8KDJoea2fU1qjYdD4I8FI8PqKx39xp1vBVfMdEbXz75Kr4p1XLkdp+UtC4+vz8LmAYcHBtJzVZ3M3tc0qm476E7MNzMrpI0El8FsUzUo1IONZxQcEv6GS58mgUcZ2ZjJZ1FhYCq6EJEfpdH2S8AB+OyqxHAJ5HnXsASkW4SHp/xsJkdWuX85SgWcT2Lx5HcYmaX1Pj9JBKJRIeQBFCdj4OBKWa2OW5I3IXaUqPHzeyHeLDh1nFsF5qDBQkTYaW8qBd+M+oP7A2cXK1CIY16G9dK3wFcJ6myQ1erjlNDMHUjPmqxHdAjyr6aZk/BucBPY0nkncCRRXWX1A9Yxcy2xDskx0taJPJ428y+TbEcKmvPmninYVPgAGB/SQtTLKAq4lRcmtUP7wRtBCwLHB7tvwc3XIIbM3+BL2PdMVZKFJ1fTcS1OjAsdRoSiUSicearEQdcNHQ7gJmNApD0B6CfpC0iTV5qlEVAZTKkG3DT4Ek0C4dmkxcB42NkY2NJ38efkGtJhn6Fd+DeBG7Gb/zr4vbIjL416pgXQC2DL6m8N+ozUVK2EdbXzGxi7pxf4iMdlXX/ObBpjGYQdctWHeSvx+/wUYBd8VGWzeOzPsDE8Ek8h4+iICkTUM2gWUBVxAbECgkz+1mc+3XgDEmLAivgK04AnsukVZJexZdaFp0/0l90PD4SkW15Od3MnqhRl0QikehQ0l4VnY8i0VAmNboqf1BS9hn4dMBvY7j/OTObFp9Xy3MQPurQL14fqFGn/YAv4yMJZ+JegVPnoI6zCaDiZ1buWFa3zyqOzapS9xnAJWZ2ekFZM8DlUJJmk0NJyjoORRKovIDqE0nTqE5Rnc4FzjCzm2Jpas84XiSGqtamvczstYLjiUQi0WlIUxWdj/vxGxiSdg7Vcj2pEWb2MfAI8FNy0xS5PCvlRb2B5+Opew9qS4Y+xcVP1+IxEcubmVWkqVvHfHXx4Xkk9aVZIPW4pM3ifX+8M1NU94nAtyR1C4nT+VXKqZRDZTwIbC5pAUnLSfo7VQRUVfLN/46GxXRKb2CSpIXweJNa17Po/CIRVyKRSHQ6kgCq8zEKWCxESD/Gg+hqSo1y/A2fu/9H/mAVedHf8Jvv7fh0wMthaSziaODGECS9FXUZH0/zGY3WETzWYZFo477AK3H8COC0ECZtDJxXVHczuxdXVk8AxpMLsCy4Hnk5VHY9JgNXxrljIt9qAqoiTgK+F2lXi7qcH3ldE+8PwqclGj1/KC1FXIlEItHp6ArK6SSASiRqkARQzSQBVDNJANVMEkA10xYCqMGb/bDh75yRE/5QSu9hfotxSCTmiEsvL1+pseRfH62fqAM46rI58nu1C9eefnPZVQBgky1WLrsK3HXzc2VXAYAdvrNR2VXg8AOHl10FAC6/rxFbfm1SjENirpE0WVLP+ilbnX9PSZPbK//W0hozZyKRSHR1ukKMQxpxSHRK2tjMmUgkEl2CthpxiAfOK/CVfQviPqEpeHzZZ8Cj4SmaY1LHoQSqGCz/R7MdciHcDnlL7pwvAZfi/wBmAd/Ff/kt7IkVZQ3CAyM/BZ4ws+9LWoJmadO/c2n7AafhhsaXgO/hDokhUeZawGgzO7lREyVVLJo5MyfA8bibYQngPTyo8xjcbfF4o+UDX8cdDjNxn8OpwA64W+KnZjZG0k/wINduwL/MrKqcK5FIJDqaNvQ4DAbMzI6TtAIuGHwNONLM7pf0V0nfNLMb5zTjNFVRDkUGy/2Aj8L4uAd+U8wzDPcrDMC3pR4ax4vsiXl6AjtEWV+NG+4BuBVzWyA/gX4erpLeCngdVzuDq6IHA5vhum1o0ERJbYvm42Y2BO8k3By2x9uBbSra0FD5cXz9aN8P8O22D4n3g3P5bYGbLQdHJyqRSCQ6BW24quJNmuWDS+OG4tXMLAvcuo6W37WN1bE1JyXmmrxtcpSZ/QF3L4yLY68CMyX1yp3z+ef4cswsjPg5M5sSzojMnpjnbVxjfSf+xD6bXTLLU9JywJrAtTEaMBBYMdI8ZGYfmFk+fLrSRNmnol3jzewE4B3conkPPvKQt2hmox358842szEVbWi0fIBHwrvxGvCMmU3HO0HZdfkA72iMxf0Q+WucSCQSpdJWu2OGHXllSc/hy+OPwb+PM6bQbAWeI9JURTkU2Q0/g9miXTK7Y9Hn+c+K7IkAhGRpBLCemU2RdH0uTXZ+Vo8ZwCvxBE8ujwEFZWT1qazrnFo0M3Nj0Xl5Gi2/Mu1sVs3YAOtooI+ZvS/pcRKJRKIT0VZBj5IOAF40sx0krYc7d/IPX03M/j3aMGnEoRyKDJZ5i+NKwCwze7finIHxPjM/1mNxYGZ0GlbCRy0WJGeXzPI0s3ei7LXj9fDYI6IajZooG7Fo5q/HYZIObqBtReXXozfwv+g0bIDHmNSyUCYSiURXZXN8/yPM7BF82nq53Ocr4iOzc0zqOJRDkcFyFNBd0th4f1jFOScCB4X5cTBuQKyJmb0F3Crp/kj/G+Bs4Cp8I6vb8c26sl7nd4HLwiS5Bd7BqEZDJkoas2ieC/SNKZKd8U206tGi/AbO+Q/wfkyb7ANciMeLJBKJRKegW1PjP3V4Dg9UJ0Zbp+EPXNlmiXsAN7WmjskcmUjU4PELrir9D2TQ6XMvlWkLHniskf5c+/LyTbVs6x1Hr3VXK7sKTJv0Sv1EHcByW25SdhV4c+JDZVcBgBW23Xau5xmOHHh0w9855449q2p5sRzzUnyUYQHgBDyu4UJ80GCimR3dmjqmGId5iNg+erSZXV8vbRuV96aZtYv3VtL6wO5mVndkJZFIJOYV2mo5ZgST713wUb+5zTt1HBKdEjP7Dz61kEgkEolOROo4lICk7jTLnnrgsqc7JB2Ey45m4MsK/6+G6OjnwMd4gN9oMzs1sh8oaQiwMrC/mT0s6SzchbAwvgPmxRH4eDnwLr5UZxUzGyzpR8D+Ud4YMzsz5FNXRv49cNnTpCptOxCPP5gFnGVmVxdJlyQNjfavBgwAzmR2cVRvYIiZ7RnLicbgwT7vAjvhgZ8jgaWiTkeY2UOSJuE7mG6D7xTaDdgWuNHMjg3XxClxjd8B9jazbHVHIpFIlEq3ElXSjZKCI8thEPCamQ0EdgPOiePHAN82sy2AByQtQnXR0Ua46GgzfBvpzI/wmZntEOcdLGlhYHLk2Q8XSYEHSw6LOqwFIGk1XPq0BbAl8G1JK+NrfbO0lwI/KmqUpMUj3y2B7aOdGUXSpQVD+jSQluKoPKsDV8TnS9NsiLwv6nQUHvQJ3hG5EO+EHIFvxb0p8J34fGlgUAippkY9E4lEolPQVh6H9iR1HMqhL7BbrCIYDSwSzoWrgL9LOgp/Mv+Q6qKjiWb2vpl9hGuZ14jjd8frK8CS8XkvSffiT+BfiM/XyqX9Z7x+A5dAjY2fxYFV8YCaIySNx1eB5CVOedYCnjKzD83sXTPbNY5Xky4VCaAycVSeqWaWGS5fxmVOeWHWA/jqkCzt02b2Ab5m+cG4jtm/9TeAi2NFy8AabUkkEokOpw3Nke1GmqoohxnAqWZ2VcXx0yX9GR/Wv0PSllQXHeU7fXmRR6X0qD/uSOhvZp9ImlZwTpbnDOAGM5ttKaiky3Al9AWS9sSXTBbRQuRUR7rUWgFUVveiv5zZ0ppZ5bmXAjuZ2VOSOsdevIlEIhF0gV2104hDSUzEpyiQtKyk0yR1k3QqPoVxFjABj1+oJjraQNKiMRWxNvBslbJ6Ay9Fp2EXYIEY3ZhEswTqm/H6IB4jsaikJknnxnRJb2CSpCZgV6pLk572JqmnpIUl3Upj0qUicVQ98udsSvOGWfVYEngx9vQYWKMtiUQi0eF0hRGH1HEoh78C02L64J/AXWFWnAZMCFnSZ/iqgmqioyfxp+d78YDHdynmNmDNGJpfA7ge31b1V8DvJN2M78w508xexOMtxgP34RtxfYjHDJyHT3WMAvpL2q6yoNgX4kTgVnwa4RIakC5VEUfV41xgw7guv6Y59qMeI/BpkYtwIdZxklrla08kEom2pmkO/iutjkkA1fWI/SOGmNmec5HHpsAHZvaopOMAzOz0NqriPEMSQDWTBFDNJAFUM0kA1UxbCKB+sf1xDX/nnHbz6aX0HlKMw/zLDOASSR/iwYuD6qSfL1llhw3KrgKXTv9O/UTzC51kAvjdJ18ouwr0Wm+N+ok6gKevbJW1uE1Zdfv1y65Cm1HmFESjpI5DSUiaDKyDexvuNLMJtdJVbCm9KjB5DstbGVjezP4NYGYP4VMfpZMZKMMt8ZGZPSNpFHAIHhPxD+B8Mzu/1IomEolEO9MF+g2p41A2ZvbrDipqK3x3tH/XS1gie+DBn8+Y2b4Akr6BL01NnYZEIjHPk0YcEkhaknA1xOuRZrZa7vORcfxmmm2SC+E2yVsi2bGSNsF/X7tX5F9khdwOD378EHgd+D9gKPCJpBeB5ym2UR6JL2fcADgV2AH3RvzUzMYUGSAr6jIOdzVsG3lfju/k+SmwNb7JyptmNlzSOsDwEFsRhswfAG9I+h8eQNoPF0ItJul54I4q9T4G7xT9JM6rZY5cGxiOB59OAwbXCCxNJBKJDqXMoMdGSasq2p+DgCfD3DiDYvcAwH74MH1//Mk7vyTxcTPbFl8ueWB2sIYVcgjwk8hrFNAd1zOfa2b/oLqNcn3cRvkDfKXCIfF+cK4uRQbIPK9FfboDvcIM2R1Yt0q7ATCzx/AtXo/LplNwJfSvgavN7Nwa9V4X2N7MHqS+OfJ84DAz2xq4Be9UJRKJRKcgLcdMQLGhsYi8CfFVYKakzLA4Nl7/TbMhkRpWyGuACyT9AnjYzKZUlFXNRvmImX0MvIZPF0zHRyyWjM+rGSDzZDf914CH430+j7mhXr2hvjnyG8AfY3TkQHzL2UQikegUNDU1/lMWaaqi/SkyNBZRaULMWyI/q0gHQDUrpJldGX6G3YB/hu2xsqyicvKWxUoDZS0DJFXOmy2PinJ7VDm/FtXqnd+kqp458gNgoJmVvswykUgkuiJpxKH9KTI0FpE3Ia4EzMrNvW8Rr5sCT+XOKbRCSjoB+MTMLsKnKtbGb7ILxXnVbJS1aMQAWY+p+IZZ+TblydexiNbUu5JH8NgNJO0raetW5JFIJBLtQvdu3Rr+KYs04tD+jASui6HxW2m570LGKGCApLH4DTm/X8Q6sd01eJDjHvH+NuDnYYUcQ7MVcjxwm6R38DiBs/BAwMslTcHn/kdI+iw+PwQPiKxF3gB5N80GyG3qnJfnWuCGWCkxvuDzu4CzJVULVmygUjMiAAAgAElEQVRNvSs5ErhI0rF48GjyVyQSiU5DF1hUkcyR7U0M8X/VzG6Op+WhZpa2cu4i2OXXlP4HcsaFY+sn6gAuuOmUsqvAh692Dlvi9JdeL7sKfDL94/qJOoAltVLZVeCt//y37CoAsMZ+u8/1bf+M3YY2/J3z8zFDS+lmtOtYh6QBkka3YX47x/LFyuM9Jd0i6R5JQ9uqvIoyJkvq2YpT3wOOjif1M4Fftm3NOh5Jb8bruFhW2V7lXNdeeScSiUSidcwrUxU7AOPN7FexwmBoyfX5nIhTSCMMrcDMdi27DolEItGRdAWPQ0d0HHpK+hOwHnCNmQ2rJuGpIjNaF7gCeAV4tUoZ0/HI/+0iXQskPYfHAWwOvAvsBCwGXAYsjV+Lw2PTp22B03Bx0SgzOyeXz0qRz85m9loc6wH8CQ/8Wwg4ycxuknQ+HtBo+LLMb+OdmtFmdr2knYE9zWxwlbaPxHeu3BBfankGPq/fGw8O/IACaVReUy3pd/iW03dEHT+Nth5gZp8L92NK5XLcufACLldaDrg48v4UODR20KyKpD547MMsYIKZHSNpG+AUfPXDO8DeQF9mFzetjccwzALOMrOrcyrqcXh8yFbR9m+Z2YuSfhO/zwVwmdSVDUiovghcGdXtARxsZpNqtSmRSCQ6iqYuEOTQEWGZawPfBzYDDo9jLSQ8NWRGJ+BxATvjX/5FvAMcC+yMi4kWLkizOnCFmW2GdxS+DhwF3BT1+CFwpqQm/Ma3I35T2kbSIpHHwvhN59Cs0xCsC/Q2sy3x0YVekr6GS4i+gdsPqwqQarQdfLvrrYHHgL5mtk28H0htaVQlewK3mtlAPECwcivpU/Ebdj+8g7YRfrM/K8o/B/9d1CP73W4OLBsdkqWBQVHPqTSPwKwb758BTgKy61cUsDg16nEjsIekLfHO0eZ4h2KopMUjbS0J1ReBYXEdLgV+VFlQIpFIlEX3bk0N/5RFR4w4PBQyHuKmDM0SHvCn2fvN7CNJmcxoBs0yo7WBe+P9OCqWNEpaD7/R/xW4D38KHwsMqKjHVDN7NN6/jAuJ+gJfkHRAHF80yv3IzN6IYztHOQAXAP8ws4eZnaeBxSVdCfwdXyGxB/Dv8AW8KKlq9E6NtsPsQqWn430mVNqQnDRKUl4aVcktwN8lLYWPeFRuqrUBYWI0s59Fm0f6i47Hb7xvUJ81s+tsZgdFPqsBF0taAO/A3YGPND1iZh/H7/CpEDV9CBRNUWT7Kb8MLIN3bO6McqZLegZYM9LUklD9FzhP0sl4h+bBBtqUSCQSiaAjOg5Fyw9bSHiqyYxwcVAm+ikaITkEf0K/I34+A+5poB5N+E368PxNVNIyVcoBv2kdKGlEzlSImX0gaVO8IzIY72zcSEthERRIkGq0vbLeRUKlImlUizLM7PG4QW8HnC7pUjO7Ipfu04J2zwD2qhhdqUdRRPClwE5m9pSk4RX5Vyu7kkbbXpm28rxhwM1mdkGIsXauU24ikUh0GGmqojpFEp5CmREeH5AJlAYW5PU+8CUzm4qvWrgCdww0wkTcroiktSUdbWZvAd0lrSipSdL18ZQOcDy+gdKJ+UxCiDTIzO7GpzzWxkcHNo48Vsa3woZiCVK1ttejmjRqKvBFSd3xGAsk7YsP7Y+JdmxUkNdWkXZYxCXkr89WkhpxHjwp35ALSZdIWgt/0n8xruNAWoqjnvbk6ilpYUm35kanarV9QJTTE1gDeLaB+vUGJkX+uxbUJZFIJEqjW1PjP6XVsaRyjwR+EeKiwfhw8m3AmnFsDZplRr8CzpB0A7OrhTPOA3aRNB7fsOhMfEj+uw3U43zgy5LuwoMAMynRj/AdK+8Fbq/YPfFXwDclbZg79jxwQORzK/Db2LTpEXzY/DTgyUh7JXCMpJuAT+JYtbbXYxTeyRkb7zNp1HB8X4xrgSfi2DPAcEl34PEElfmfBHwv6rAaPt0zFNgtru1JQOX0RhFH4rEidwPvmNlTeOzFPXgg52+A48jFWMSeGCfi124ccEk9JXR00h6Mut0KHBv51ONC/N/Mjfg16x9BtYlEIlE6TU1NDf+UVsckgOoYJD2Ar6CYXHZdEo3zzhMPlf4HsvAXvlA/UQewycYH1E/Uzoz9+2/KrgIACy7dFnu2zR2fvDe17CoAMGtmtZj1jmPRlVYsuwoALLrcynN9Nz9/n1Mb/s45/OpfltJ7mFc8DolEIpFIdHnK3C67UdImVw0iaXA4EfLHdpD0w4K0D0haNX/MzDZq69GG9jY31itX0lBJQ9qxnHNiRUYikUjMFzTNwX9lkUYc5gIzu6nsOszLmNlRZdchkUgkOpIuMOCQOg6tQdLpuK3yZXylwjGSzsP9FE8SkfrhQXgV9y2sDOxvZg/Jd7rcH18+OAaXKxmwftgetwCONrM9cmW2MDLmPlucYgPmINzG+CnwhJl9X9Jg3IWxArCvmb0SefTALYurAB8BBwFTaDZT9sDNlHfUuTZLAX8GlsD36dgXWIoCW6OkZ4GHcMfEQ5XtCwvkEFxetSQgPHj0KDO7UdLewNH4kssHzexI+V4lvYEvR72PB76Dr2rZEXgx2vkl3Bw61Myur9WmRCKR6CjSVMU8SKz9X9nMfpU7tjbucOiLrz5Q7pSFYjfMc4GDYuh9L3wp5pa4hnpFvAOxS5yzC/CXiqKLjIwZLQyYcbwnsEOc81W5vhu8E7Nl1mkIDgamRNo/Rh0G4RbGgfiyzHOozzG4J6EfcDu+7XY1W+PqcfySOu0DWMnMdsRXbRwWSzBPA7YJS+TqkrLlur3MbAfgGryTkr3fBegF3BIWy72BkxtoUyKRSCSCNOIwZ3wNN0KuXXF8bWCimc0CXqqwROaNh5mCek18uSPA4vjT8OX4Us+/4H6C2VwRFBsZs8+KDJgAbwPXRbq1cOMiuKmzMnJ3A/xGj5mNivz/APSLERCARRrwS2xAqKnN7OzIZyWKbY3TzSxbLlqrfQB3x2tm/fwK8KyZvZ/7vE+8z5sjs3a+Hu1/B/drfB8f3ciuSSKRSJROtzIFDQ2SOg5zxqq4F2FPfMOojLzdEmYfyak0F84AbjCzw6hA0vKSNsanFT6q+LjWEp0iA+aCuD9hPTObIun6ivSVVDNHnmpmV1XUs0ZVCvOpZmvM16PeEqS2MkcOwkcd+sXrA3XKTSQSiQ6jK5gjU8dhzrgB36HyLkm35o4b8OOwEa6MC5Sq8SAutFoU35fhHFxe9CG+38YIfFOsSp6UtImZTZR0CZBf4ZEZHifEtMkO+AjGzOg0rISbImuNFmTmyGvku3Z+PZfvVZKWxWMLiupWlM/9kg7D4yUqbY3d57B9RTyDS7MWN7Np+G6hv8KnRmrRG3jezGZJ2oNkjkwkEp2IthxwkLQ/8DP8AeoEfIPEK/Hv4NeAA/PbJzRcx7ar4vxBbH41lJx5MYbYH8PNiqcA/6lx/ot4Z2E8vinXlOg0AFyNB+2NLTi1yMiY0cKAGersWyXdj8dd/AY4m9i7ooBRwGJhjvwx3vH4KzBNvvnWP2medqnFuUDfCGzcGbdXNmJrrNW+FoQl8qfATdHuh8MmWY+/Ad+SdDsR4CqpkV0/E4lEossg33fpJDyebmf8IXAYMCJi0CbjgeNzTDJHdiIkHQKsamYnlV2XhNMZzJGLLLd82VVwmsp/zvhk2ntlVwGATz+snEnseGZ9PMcPiu1Cz9XXKLsKnYYFl1hmrscLLjv4tw1/5xxy+U+rlidpH3zjxB/ljj0PfDV2Jd4cX7337TmtY/nfBB3E3Aqc2htJfwQOoMoQvaT1I7gQSW/Ga4cLoLLrKGnV0Gi3VzmFv5tEIpGYl+neranhnzqsCjRJulrSXfLNJBfLTU1MIbdn0JwwX8c4dCaBk5l9r87n/6HGFMi8Rmf63SQSiURH0YbBkU341PfuuJ9nLLMHoTdRPyi9kPmy41CSwGkcHji4EbAI7hB4lQIZUZW0qwNDzGzPgvZ8idqCpfHAPma2ZaQ/HphqZufl8jgQl0XNAs4ys6sjePAneGDNA2b2kwau7c/wVSezgOPMbKyks+LaLgxcYGYXx7WdgS+H3JeW8qltgXXwnT4vByYB6+GxDIdGmy/Ff1ezgO/ifwRXRtrNgAvwIM9N8Hm9EUVSrHptSiQSiS7I68C9ZjYTD06fBsyUtEjE1a2IB0jOMfPNVEVGiQIngLdCgvRnPACxloyoMm0t6gmWRgALx80WYCc8EDNr/+LR7i2B7YFBIVg6Htgq6rdSzIlVRdKaeKdhU3zaZX9JCwOTQ9LUDw/OyXg75teK5FN5NsRXmmwM7Bh2ymH49tsDcOPk0Ei7Pt7Z2RlfAXM88C0gG9GpJsVKJBKJ0mlqavynDrcAW0nqJqk3/t13G37PIl5bNbI7v404lClwAv+lga+++Ca1ZUSVaWsxhfqCpT8Be0u6CnjPzF7Pnb8W8FT0Qj8EdpW0CT7KcnN4G5bERwRq0Yfm6/gccCiApF6xMmMGkN8jOhM1FcmnBufSPWdmU+L4q1GXjYDj4vO7aL7ek8zsLUkfA/8zs1eiE5Ttg1xNipVIJBKl01ZTFfHdNxq4A5cCHo6PZF8RS+VfwO9bc8z81nFYlfIETvl8s7mlWjKiyrS1aESwdBW+FHF6vM9TTf70YIy2fE7FDb2SFvlI6o97Hfqb2ScxXJYvo1r5eWZW/H+lAKoh+VMdKVYikUiUTlv6n8zsQnw5fJ5t5zbfhqcqJO2k2EJZ0hoh8+lq3ICvWz1e0nK54wZsKKlJvkdCPYHTQEmLRvpzJS0Sn2UCpz9XOTdTN2+Gx1J8LiPCR0IWrJG2FpWCpRZSo/BPvA0ciLsV8jwNSFJPSQuH3OoZYK0QPyHpZEkr1qnHg8DmkhaQtJykv0fdXopOwy7AAmqprc6kUUjaWVI9yVR2TrY3RX8aM0AuzpxJsRKJRKJD6dbU1PBPaXVsJJGkM/Dgs0Pi0CBc6NPlKFHgBLCKpJvw63cOtWVElWlr0YhgCWA08EqYFvNtmo4P9d8KjMNjB6bjm2f9S9I9+JD+q7UqYWaT8eDE8XjMx3n4lMuaIZZaA7ie3LUPiuRT9TgRjzm5AxiMx2jUpJoUS74zaCKRSJROG8Y4tF8dGxFASbrDzLaSNDYC8JB0r5n1bfcadiFqCZxipcQQM3u8gXwaTjuH9bscGGlm1To2iQom/+0fpQug3n9jetlVAOArg4r6oh3LtGefLbsKAHRfZOGyq8CsmZUzeOXQc9VaA7Qdw8wPO8ffyKLLrTzXt/O//uCchr9z9r7gqFK6D41OVWSV+wxAUneK9xvoEuQkRstLqpz/aW2eV+ErL+rtsdCavHcpGN6fk/MXlnQfMBXfXrquPCqTTJVF/I52L7MOiUQi0dF0hRGHRoMj75V0GbCCpKPx+fhx7VarDiIi9VsEObaS4/CtoacVfRjLBhutV2Xao/HI2KJdLRvJ7yN8iSSS9mtNHh2NmY0suw6JRCLR0cwzu2Oa2S8jWv8DfA7/LDOrDLDrcsi10qPxZZS7mNl34vhIPP7gXeA04BPgJdwF0Bc4Bl8T+xMzezCXZTdJf8CXbD5oZt+XtAK+8dRC+OqBQ83sRUmvRBkb4bED+wHLUSFyivI2BW4MZegPcWESwBgzOyMCOi/HR4FeiPOWKyq34BoMBd40s+ExAjE833GRtA0e9zEDXz66d61rIOkcfNnqp8AP8MDLapKrbCrmeDygdAngvWjfMcCbkWYIvmpiLWC0mZ0c/oURcXxatPnr+GZZM/ElnqfiO4X2AX5qZmMk/QRfVdMN+JeZ5d0ZiUQikahDo8GRPYD7zOz/8JvAYpIWa9eadSw34wGF3WIaph8uzzgP2NXMtsItXHtF+nWB7Ss6DQBfwSVOeVHRKXhHa2s8yDELflwB+EvEiTQBO1IgcjKzK3FPwzdx0dTgqF8/YB9Ja+A3yLNix7NX8c5ItXLnlKWBQSGBmooLogqvQXQyVjazzXBh0z7Ullw9bmZD8E7CzVH/22m5NfY3ot2b4WuRwaeFfhqdnDvxDgO4AOoAvNPyazyg9wdxfsYWeGdssKQl5uxyJBKJRPvRhntVtBuNxjhcAWway/FG4zeNy9qtVh1MrIp4GL9B9cVXSyyFi56ujafjgfiNG+ARK97D/DkzmxLLK6fg0qG+wNDI4ziahUPTzey+eD8Bt1VOAY6QNB5fXVApJ+qDd+BmhkZ0Iq5h3gC4J9ryMzObWKPcOeUN4OJY8TAwl0/RNcjXY7yZnUCz5OoevNOZr8e/C84728zGVOT7kJl9YGbv5459LdoJLoDqU1Gv14BnYnXI6zQLoD7AOxpj8aWivRq8DolEItHuzEsxDiuY2eiIb/iDmZ0l6ba6Z3UtrsXVxAvhnaMZ+NLFAflEkgZQPdagSFQ0A9jLzCqd4N0q0n1GdZFTRl56lOUxi+oCp6JyK8lH8BYtS7wU2MnMnpI0vCL/SorqUUty1VoBVGW9GxVArYLHi/Qx31OkTVetJBKJxNzSFWIcGh1xWCjkQrvj6/DBZTrzEtfjezX0B24ys3fg830skHS4pK+3It+JwG6Rx1byTZYAFpG0YbzPC6GKRE6z8A7Nw8BmIVhaAI8leJjZBUrDYsqgWrmVTKV5a9UtCj5fEngxpl0GUluY9LmUSVIfSSOoLbnKn5fV/zBJB9coI+NxSZvF+0YFUL1xDfX7kjbAFdpJAJVIJBJzQKMdh3F40NprZvaMpKPwoLd5BjObig+r/zcndPoucJmku/CbqrUi66HAbjH9cBI+LQHwFnBA5D0Tj7OoJnIahw+vvw9cFO/vAi42sxci3+/FdMJq+DB8tXIruRbfm+JWfHqmkhH4NMJFuDDpOKrs4W5m44Gnok3n4btT1pJcZZwL9I1plZ1pabYs4gjgtBBAbUxjQrL/AO/HtMk++PX+fQPnJRKJRIfQFaYqGhJAAUhayszejferASua2d3tWbl5GUlvmlnvsuuRqE0SQDWTBFDNJAFUM0kA1UxbCKCu//Hwhr9zdj57SCndh4ZiHCLyfJB8a07wYfND8JUBicQ8y93/6hw3qs7AV/YrvQ/FC+OfKbsKACy4SPmW8m7dO8dc+FKvv1N2FXhm/PNlVwGAAad8f67zmJdiHK7G18gfgsc27Iz7BBKtpHK0IbNZdnQ95BtbTe7ocuuRzJGJRCLROWm047Cwmf0AeMHMfooHwO3dftVKzO+Y2Ugz+3vZ9UgkEomOpCvEODS6HHOhED51k7SMmb0V4qFEG5PZLM1so/j/B3DT4VBc7rQhsDKwv5k9JOk83NnwIO7XGBS7VGb5DcIDCT8Fngib5RJ40CI0uxSQ1I9iU2ZD5kYzezuZIxOJRKL1zEtTFVfgN5GL8aj5SbisKNGxLGRm2+OrEA6Km+cWuLhqeLxW0hPYwcw2B74a5xyAWxu3BR7Npa1mymzI3JjMkYlEIjF3zDMjDmZ2QfY+ltUtiy9tS3Qsd8Xry/hT/VrAhHAkPCbphYJz3gauk0SkXwZYG7/ZQmxWJmk5mk2Z4KMDbwKvEObGSJflW2lu/CW+3PJzcyQwPnTlG0v6Pj46UM0ceUKcd3aUs34uXaPljyXMkZI+N0dKKjJHzqTZHDm14LolEolEh1OmSrpRGl1VsTT+xbycmR0Y8pyXcR1xom2pDF3Ph2/PZkKk2TiZMSv3HvlW3COA9cxsiqTrc+dmabNRp1qmzEbNjckcmUgkEvM4jU5VXAS8CKwe/78QPm+daHumAstJapK0PFArlmQSsGGkXQs3IeZZHJgZnYaV8M2vFsRFVhtFmoEArTBlFpkbkzkykUgk5oKmpqaGf8qi0Y7DUmZ2HvGEaGajgUXbrVbzMXEDvw2/mZ6KK6WrpX0AeAbXSx+Ja6tn5j5/C7hV0v24PfI3wNnAVfimZbfjm2tlT+9zYspsYW5M5shEIpGYO7pCjEND5sjQFm+NB7BtFfPh15vZxu1dwUR1JC0E7GNmV8Sql6eB1WLnzEQb8Pgf/lK69eiQ340suwoA3PPQX8quAm/+u2o/ukOZdM/ksqvAQp1AQgWw5s6t2cKnbXn2+kfrJ+oAvvHzwXN9O7/jlxc2/J2z1amHldJ9aHTE4Xz8Cfhrkv4BPAJ0uKyoLShLtNQexPbRG8eSzbHACR3RaZA0TtI6koZKGtKO5ZwTevNEIpGYL+gKIw6Nrqq4RtIEfDncx8BhDWzXnOgAzOzw+qm6JmZ2VNl1SCQSiY6kK3gcGl1VsSq+qdU1sazuV5J+Z2ZPtWvt2pF2EC39HA/+mwX808xOk3Qg8DNcpjQN3/USYB0zO0ZST9xlsGoVUdNgPPCvN/A1fGXLfvhyyv3NbKKkI3FhEsAYMztD0sho2/WSdo52fQ/4E76z5ULASWZ2U67+PfCA11WAj4CDcFfHRXhQbA/gRDO7o851XYqWMqelgCsjSQ9cFjVJ0rPAQ8At8fr7uH4T4vqMw+VPe+LLKYUHix5lZjdK2htfJTETeNDMjpQ0NK7Xl6PexwPfAVYFdsSDfFsIqWq1KZFIJDqKLtBvaHiq4jJghqQ+eADd32gsGK2r0hrR0jHA5njn4h1JTXhw40BgV/xmX4siURO4W2EX4HR8S+vd4/1+MYw/GF/q2A/Yp4bRc12gt5ltCWyPL43MczAwJcr/Y5Q5CN9KfSCwG3BOnTZAsczpi8CwyOdS4EeRdvU4fgk+HXZYlL9sLJ3Ms5KZ7YgHgR4Wna7TgG3MbAtgdUkDI20vM9sBuAbvpGTvd6G2kCqRSCRKZV5aVTHLzO7Hb1rDzexfuAtgXiUvWlqSnGjJzB4DikRLo/HVEN/Dn7iXAaaa2Ztm9gkhRqpBJmq6k2ZRE8ADZvYZ8BrwqJl9ilsdl8RVyveZ2cyIbZgIrFcl/6eBxSVdiS99HFXx+QY0y5tGmdkf8E7QbvHkPxpYJNwQtcjnc7aZjcFHLo6IINsf59o23cyeiPdrmtmjcd5BZlZ5jbMt3LPfyVeAZ83s/dznfeJ9JpZ6jeZVKdk1ewePC7kHH3nIC6kSiUSiVLpCjEOjHYfFJW2MDxnfFNH8S7dftTqENhMtAZjZD3G18fK4mbDynOxa54/1gNlETfvEk/DEXJqqQqPIK//PJxMhtSgjzIub4ksQd8T14XmKJEwzgFPNbED8rGlmM6hNUT7D8FGILZn9CT+fV71I4kbbXpm28ry8kCrtvplIJBJzSKMdhzPx4euLzOwNPA6g/LVZc0ebiZYkLSHpRDN72syGAW/hN7GlJPWStAAeWJqV+8V4v0W8VhM11eNhYDNJC0QZm8SxFmWE8GiQmd2Nb4leOXWSlzDtLOkXeAdmtzi2rKTTGqhTkcypNzAppm92rdK2JyVtEuddEte5Fs8Aa0paPP5/TiRQ9YRUiUQiUQpN3bo1/FMWDZVsZleb2fpmls1x/8LMzmzHerU7bSxamgp8QdK/Q0h0X8iXTsJHH/4Z54PP+yuG/7+KTwNVEzXVXKgdwZkXRRl3ARfHEP+VwDGSbsJ3ugR4Hjgg5Ey3Ar+tyG4UsFhMlfwYH8b/KzBN0r3RhruoT5HM6UI8JubGKKe/pO0qzjsSOFPS3cA79QJvzWw68FN8BOwu4OHoFNWjESFVIpFIlEJXmKqoKYCSdLWZ7SPpJQqGks1s5fasXGehLURL4Y543MxGtlM1E+1AEkA1kwRQzSQBVDNJANVMWwig7j310oa/c/r+8juldB/qLcd8SNJB+JK2+ZbYbXFjSUfgUxAdIlpKlM8Km3+l7Cqwyw2blF0FpxOsE5v5Yb0Qm45hnb02LLsKLLBo57D+vzKu/Jv26luV/3c6P1Gv47BO/CwDrA/cF+dsAtzLfLTR1dyKlszsmLmtg6QlgE3N7BZJxwJ3mtmENsj3AWDPvJeibOTbau9uZieVXZdEIpHoKDpB/7wuNTsOZnYggKQ/AV+OyHwiIK0yKj/R/mwAbId7CH5ddmXaEzP7D74pVSKRSMw3zDPmSHKdBgAzm1Yg6JnnCHPjDrgF8UvA2WZ2WQ3L4xbAF3DD4W/N7BJJ2+Kiok+BUWZ2ThgT/wX8D5drXYzbHD8FDjWzFyX9BF/+2g34l5mdjC/ZXELSM7hjYTRwMxXGRzN7JdeG9eK8T/Bplr3M7O0wYX4DD/RcMNKuUKUuzwFjcMHVu8BO+EqQkbgVsgdwRBg2D4xrMws4y8yuLmpLGB5XB1YDBuArdzaJcn+Ar34YYmZ7zmH5k4B/4OKpG6PMbYEbzexYSdsAp+BLQd8B9m5giWkikUh0CN26df6OQ6PrOZ6SdI+k30o6IyLvn23PinUivoYbB7fCVdvdqG55XBdf4rcbcHgsP/w97k3YHNhG0iL4je5GMzsVv4mdZWZb42bGfIT/Frh7YXBMU/wWuNrMLsqlKTI+5lkWODysjfcA+0taG+949MVXcSjSVqvL6sAVZrYZ7u/4Or4K4r7I9yjg7BiJOgnI7JSDarQFYMEwTA4EVo78f4FveZ2nofIj7Wr4Ko5N8A7MNVHud+LzpfFlqf3xZavbk0gkEvMokhaR9F/5Bo8ryTcpvEvSXyPwf45pdJOrQ+LJeV1covNr/El3fuDOCIR8U9I7+JNwZnmE2S2PE8zsU0mZ3fALwEfhvgBfnkicl9kN+/ohHQ90B7K0H+DLLGdGmZWK6IwN8CWemFmlDRLcmHiGpEWBFXCr5drAxHAZvCTpv3XqMjWzOtJsbtwIX8aKmT0gb9RawFNm9iHwIe5sqNWW7BrkbZPjgfGSBuTa0Gj5Wdqn8Ya8j+9hMTM6fESbLg7vxepAzb03EolEoiNph5mK43G3ELiMb4T5vlO/wR+o/jCnGTY6VYGZ3Yqv/5/fyI/KZBbJEcB6IWzKb5BUaSkssihmzMi97mW53UZjGuhooI+ZvS/p8Rr1q1UGuFfhDDO7SdIx+GhJE7PbL7PzW9QlqFxBUmRuLKxLnbbMqHZeK8tvkbZg9VbkDP4AACAASURBVMulwE5m9pSk4TXKTCQSiQ6nLWMcJH0Vf1C8IQ4NwKeCAa7Dv5vnuONQnnqq67CZpO6SehOGRxq0PIbYqbukFcM6eb1898g8eTvjVhE/0Rv4X9xoN8DjFxbEb/aVQ0tFxsc8mbVxIXzKZEHAaDZhroIP71erSzXux6cYkLQp8Djut5CknpIWlnRrjbZUy6uPpBE1yq1VfiMsCbwYv4eBBXVJJBKJ8ug2Bz/1ORPvHGQsZmYfx/spNBuG57iKidpMxufJ7wB+2QrL44/wIMZ7gdvN7N2Kz4fiG0mNj/wm4KsJ3pdvxLQPPmf/e3zr6T1j5CCjyPiY53w8sPCaeH8Q/qT+WJR1Cs2rF4rqUo1z8c7HHfjU1ZFhczwRH5kaB1xSoy2fE9MTT4UB8jzgghrlVi2/gXPAR4vuwY2bvwGOk9SqP55EIpFoa9pqd8xwME0ws+dzh/Nyqcr9lBqvYy1z5PxOrJRYpy0cDImuyfSXJ5X+B9Jj8SXLrgIAMz/6oH6idmaBRRYruwqdhpkfTi+7CkDn+J1MPPvvZVcBgH4nHTrX8wwPnX1Fw985G/z4oKrlSboaj+P6FF8V+DHeWfiamX0oqT8eOL/nnNax04w4RKTnOu2Q75ttnWdbIGkX1d+iui3KGSFpvKQxkjqHo7YVZL9HSedIWq1e+kQikeiKtNWIg5ntY2Ybm9mm+DL7U/D9mb4dSb4N3NSaOjYcHDk/0s77ShyNT3+0m0Mg4jJkZltGIOC6+HRHl8XMjiq7DolEItFetLP/6STgCkmHAS/QSvtzh3ccqkmV4uO9JZ2LL2/cJeRDpwL98OWBw83sKklfwqPjs4DB75rZ85J+houGZgHHmdnYKHMYblx8C/gWPg+flw+djnsWFogyrpTv7jgWlwfNwi/wYHzYZ2t8dcJI6giQoi1fNLMToi634btMbgrcKGlrfJvrfeMajDGzMySNxAVRG+LLOs8ADsGDDfvjc1N/ARYDFsWHnLLljRkfAbMkrY67D56p+Jxo5/14kOciwN7Aq9HeL0X+Q83s+kibBSH+Gt+Fk2j/wWY2SdLPgf3wAMwF8LiK56qkLRI7rYDHY8zAe8Pbm9mAivoOAV6qcv2TACqRSHRd2qHnYGZDc/+77dzmV9ZURZFUCTz6fmv8C38PSf2AVcxsy0h7fAiUhgGXxA3l98BQSWvinYZNgQOA/SPPXsDoGK7phd9AoVk+tDkex7B5lDE0REYAr5nZFninpVek744/uTcqQBpF80qFJSOfk/GI1m8CK+Idkn7xs4+kNaL8mXE9HgP6mtk28X4gsDy+jfZA4Djg5wXXeWHgK/jNezAtlzVmvBX5/BkPsOyFa6374x2Jk3NpHzezIXg07rA471LgR5J64Tf1zfDOU/YPtEXaOF4kdvox8Ncoe+kq9YUkgEokEolSKKvjcKeZzTSzN/Gnvt5x/O54fQVfNtcX2DSeMm/G6/tF/Ol4XKS9C+gTPxPNbJaZPWdmh8bneXlQli80y4c2wuVExKqAZ4A1K9K8BmT7+b5Os4BoXJz3AG5f/FyAZGbvmtmuZvY28GwsRdwRv5Hl6YPfAGeGc2AisF4D5b8OfFvS3fhoxDLkCOHTLcCfgFfM7L/A5ZKWpyW3xeuEaMc7wMaxEuLyiryzOk0BjogVGD+ONF8GHo32v46PZFRLC8Vip7Vo/nfwz4K6ZhRd/yzPp80V6ZkA6kOa/61nAqg78Q7YbNctkUgkyqRb96aGf0qrYycoN78kpFKgNIMYWYifteIGmJf/dMOnBapJhIrkQdAcW1ApEsryqzy3sm4NCZCCK4C98GmSqyo+a235R+Edgi3wqY5KtgPGm9nxwLKSdgWWNLMpBWmzOmftGoSPOvQDdq9Im123YcDNMRp0csX5GbNqpK1sU3Z+Po9ZVGduBFBDYsThuhr5JxKJRIfTVsGR7UlZHYdKqdJbVdJNBL4lqVsIhc6P45/Lf/D5/geAB4HNJS0gaTlJja7PuR+Pc0BST2ANGtuHoyEBkny/in/h0xdLWfPW1ZnM6WH8eiwQGuRNaB5dqEVvYFK8352WIqP38RgFgMOBq/GpiCK2iNfN8E2vegPPh5J6j4K8Py8/2rdrpJkMrCOph6Qv4KMC1dJWY1LuvG/WSJcEUIlEYp6jqanxn7Ioq+MwmdmlSoVPlmZ2Lx6gOAEYj3cOwIMbDwr5z2DgpLghXxnpxuAiobqY2d3AgzGMfitwbExZ1KMhAZKZfRbBd08x+9D7OHyK5H1cRnQnPu1ysZm90ED5VwBHS7oF72AtL+mQ3Oe3A29Luhf4G24QO6KKZnkVSTfhIw3nRPpvSbodmA68LOmEinMuxK/xjXgcR398iuUv+HTGufE6syitpO2qtOtc4LAIIm2ielxGEkD9f3tnHm9VWfbv6xxwSHDInEklk76IUw6Ziigq5pBDr2OoKZZzTq9T2eD0/rTMOcXUNEvNHLC0HAgyQbREUoswvVVSSwScRZwA4ffH/SzPOpu991lnXIfDfX0++8M+a6/1PPdah7PXs57huoMgCEqgywVQi6NUSdLSeKNgmJm9U3Y8ebJVCmZW9Im9pfJG4I2HefhEzq9YLs13gePXx3tmHpE0HBhqZkd1RGxtIQRQTYQAqnsRAqgmepIAasrVvyn8nbPB0cNL6XcIj0Mnk7rRrwEu7G6Nhk5iNbwH5CPg161pNCRmA9dIWoAP5xzWwv6dSkOv8v9EZr/w75Z36gL6rL122SEw5+23yg4BgN59+pYdAnPfqrTXl0N3aDhsevgOZYfQYTQ0ljgGUZBQTndDJO1rZqPqfL4Rnq57IS9DG+sbhfsrxnVEeR1BWv1xTpm9DQDvT3+p9D+QD2fOLDsEoHs0HOa++27ZIQDdo+Hw0Wuvlh0CAJ9ao1/ZITD33e7xTNan3zrtvuv/67rbCn/nDDr8gFJaGd1GOR0047stfL437mfosZjZjLIbDUEQBMHClN8P2wOoZcOU9By+ouJV3IfQzHaJuwtuxt0US+HyqA2BjSX9FpcvNTM44prQo4HXJL2ajjsfmIvbFI/ImxCTZbOatfF03Fb5LL70kiSwugGXJPXGbZSTk+HxGnw56VK4lfFDfILhOmnbmWY2RtJOKZ6PgVvN7DJ5eu4T0ranzOzIdM12xU2RX8eFXZ9YP4EXcHHX5q2sfyrw81TW8/iE2v2A58zsIEkb4xMk56a69kuujSAIgtIpc7VEUaLHoeOoZsNcAlcdn0cV2yXeSFgp+Q12xq2SFwLvmNneVDE4mtk/cRXzGUkx/VNgLzPbAZdC7VcRVzXD4wq4vXFr4AggSy52EjA62SqPwVdigDcinklxvoArt4fjwyXb4T0gI9Nyy6tw0dVgYFgyffYFdkl2zoGSNkzlroUvU12G6tbPjEL1p3174fk4vpRieNHMtgCGpPNeBW8QbY+vrqisKwiCoDQaGhsKv8oiehw6jvFJNvS6pLwNM2+oPCO9n4Av23wGWFbSTcDv8KWKeTKD45H403GlHXJV3HL5W0ngvRKV2UBnAD+VdA7ek/A4bnh8ysw+BD6UlC1z3RpYWdLB6edlcuVMSP9mhsfNaDI3viJpHp5T40Mzey3tu3uK803g7hTjernzmGRmCyR9Yv3EewkOl9S/4jxarD8prwEeS+XOpMmJ8SpNxs0LkllzDWq7LYIgCLqcMsVORYmGQ8dRy4ZZzVDZCMw3s/fTqoutcR/F7jTlVIDmBscVcdFVnjm4PXJonbgya+PVkvZNdTTQ3MqYxT4Hfxr/a5VyWjJnNlLFnClPHT4S2NjMZki6pyJ+qh3XxvqLGDcvBy4ws9GSTsV7Q4IgCLoH3b/dEEMVHUhLNsyFbJcpf8WBSUJ1DDAofb5E+reWwXE+sJSZvQUgaVD69/i04iJPNWvjVGC9ZHhcDn96B19GmSXkGiTp5Drnmzc3rok3hN4AeknqJ6khNRKWxZN1zUj7bc7Ctsa2WD+r1V9kfVp2PZbCh1TCHBkEQbchlNOLFy9S34a5kO0SH68/WNIE3DZ5Ydr3b5Ieo7bBcQKejXNHfJLlDamMbfB01nmqGR43xyddPgpcT1MyqiuAdVNZ1+EWzlrcijcSHkzvsxUQxwKjgL8AD6TGxFhJk9I5/wTPZJk1jmij9bNW/S1xRarjjvT+kDRhMgiCoHQWhYZDeBw6gMXRhrm4MOu5KaX/gTx956SWd+oCNjl2z7JDYN57s8sOAegeHof3X/5v2SEAsMxn1yw7BN5+6l9lhwDAKlsNaffd/Llf31n4O2fAQfuEOTIIgiAIFmdicuRigpn9suwYgiAIgqAriIZD0GVIWgsXXn2M/987GF9x0Qdf+nm8mT1WIc66GZ+P0QuXXx2KuykqZVoL8HkSU/H04FcDG+Fpykea2chqIqouOO0gCILCLAq5KmJyZNCV7AuMTfKlE4G18TTi2+OOi++k/fLirPOAS8xsCPAKPrGzmkwL4IvAKfiS0wuAH+C2ySPS57VEVEEQBN2CRUEAFQ2HoCsZg69iuBjXRP8D2EfSw/iNPi+4ysRZm+KGR8zsdDObiDcexqXPJwCbpPdT0yqO6cCrKTPnTFz8BJCJqMbTXEQVBEHQPWhoKP4qiWg4BF2GmU0BNsZv9j/CFdfTzGwb3GORp54caiGZVnpfU/yUE1EdkDTVE9txKkEQBIst0XAIugxJX8eXrd6FDyOshM9JAPgfqsuYJuH5P5B0rqRhVJFpFai+iIgqCIKgVBaBDodoOARdyrPAlUmCdRZwO3CypDF4D8Bqkg6rOOYs4Ig0vPA54EGqy7TqUktEJWmJ+kcGQRB0HSGACoJFnBBANRECqCZCANVECKCa6AgB1Et33VP4O2ftr+0eAqgg6G7stecPyw6Bu353TtkhdBv+dfO4skMA4J03Pyg7BNZcb6WWd+oC+neDhsOoyx8uOwQAjt1qSNkhdAkxVNGBSBoh6aKKbbtIqpz41xF17dPRZZaFpKGSRpUdRxAEQek0tOJVEtHj0MmY2eiOLlNSf2A4ngQrCIIg6CGEcroHU8OCmP/8R6SMlsAGwJW4AXEqviTxSTM7vOKYnYDzU5m3mtllkl7EVyLMTr0ZU4D9gC0knYkbFG9KRSwBHGpmUyU9j2eBHAy8DXwVNzTeAHw6xXy8mU2WNDTVOzfF+028YbKBmZ0qqS8wxcz6S/oOnuJ7PvAHMzs/F39/WrY3DsnV9V+a5ExZGafgoqhG4D4zO0fS2biLQcDngZPM7H5J+wMn40svHzezE9O+KwHrAuvgqze+CfTH02j/J/0ePpuux9lmdg9BEATdgDBH9mwqLYirZx9I2hdYy8z+X8UxmwHfA74E7CZphdwxDbgFcTf8Zj9M0qdq1H0hMN7Mzk31npvi+AWe1hr8pnmjmW2FNxQ2wr0Jo81sR9ybcHHa92qa/AZvAQfWOe9TU3xbp30racne+FNgLzPbAZcz7VeljG2ALYERkpZL29Y0s93wa31UasycDwxLHoh1JGVLNFc0s13w1NmH5t7vCawIjEnnuj8QEwiCIOg2NDQ2Fn6VRfQ4tJ0xwO/SzX+Umf1V0kBgffyJfFCVY543sxkAkl7Bn6LfTp+tDHxoZq+ln3dP+7UUxwzgp5LOwRsIj6fts8xscnr/cqpra2BlSVnvyDKSVgQWmFk2RXsC3jB4okZ9o4A/AbcAv67y+VQze0PSRyR7Y7rJLy9pVWAA8Nt0Xn2A14FpuePfB8bjvQgr4Td6gGz2U3YuXwCeM7PZuc8zg2RmnZyOy6LAGymfwRs7X5J0JN5rEvbIIAiCVhA9Dm2k0oIo6ZD0UX/gKbxHopJ5FT/n+6SqGRKh6cYHPhRRybnAH81sW5o/PVeraw4+PDE0vbaguYURmkyMVes1s2OAo4HVgPGSKhufNe2Nqf5pufq/ZGY/yXaQtDY+9LBLykPxUp2yasXdUgwH4o2RIbh0KgiCoPuwCEyOjIZDG6liQdw8fXQvPqb+g/SEXYgkKOolqZ+kBkn3pN6MWcDqknrh3ffgN8il0vuVgKlpqGMv6tsQJwJfS/EPknSymb0FLEhzNqDJxDiLpuGXbdIxy0k608yeScMkbwDLUZBUF5IGpX+Pl7RRbpeV8F6K2ZI2xZNg1TqfZ4EBkpatiLslVgJeMLP5eM9Q2CODIOg2RJKrnk2lBfFn2QdpuOHs/LaCHIsPBfwFeMDM3sYnVf4B+C3ekwHwNLCxpEuBa/B5A/cDtwLbSfpKjfKvANaVNAG4DngobT8CuEXSOPxGeivwAKC0bSAw38xm4UMdj6XzftTM3mzlOX4LuCHFsA1guc/+DsyW9AhwQDq3q6oVYmbvAacBo1NZT5pZkcXcdwJ7SHqANHlVUvmyhiAIAlgknNNhjgyCOoz74bWl/4HMfPW9skMAYK/zh5cdAmPOvaPsEADYaGj/skNg8rgXyw4BgH5rL9/yTp3MjJffLTsEAL56ybfbfTd/ZezYwt85a+y0U936JP0EH5btjScWnISvfOuFzwH7hpl91NoYo8ehE+gqOZOk/pKKdM/XK6NvWvLZrUgyrZiDEATB4kVjQ/FXHdIqsw3SyrpdgMvwOXEjzWwI8CI+rN76ENtyUFCbnJwpaAdm9ksz+13ZcQRBEHQlHZjk6iGalru/ha9iGwr8Pm27GxjWlhhjOWY7qCGBGkmTnOly4JfACvjKhBPM7AlJU/Ff3jB8bkIjsBNwv5l9N6WO/j98FcJbwP5mNkfSZbhM6WN8ZcNsoFHSz4AtcAnSkRUxHgickI55ysyOTG6EzDr5WG7fanKmrYHj8AmZ6+FLT8+RtGE61/nAu7gv4c0qMT5DFeFSmjsxJVX9A3xp53LAO8DXcV/E62mfQvXjrooT8ZUUmwLn4S3tTYDTzOyuaoKp6r/dIAiCEuigqQtm9jE+jwvgcOA+YOfc0MQMcv6h1hA9Du2jmgQqL2c6EZ9AuD0uX7o0Hfc5fOLfl/Gb+h34ioms2+jTwIFJUjQL2Dk1JtZK3U7fwycPgvsMzqGKVCrRF1/eOBgYmG64B+MmyJ2Aybl9a8mZtsDTV28FHJ+2XY7fjIfi3oUTa8RYT7g0xcyOwxsJf0zdZw+wcCu4UP1p+xfT+R0N/Bg4LL0fkSuvmmAqCIKgdDo6rbakvfBJ6cfRfJl9Q8XPhYmGQ/sYAxwi6WJgKTN7tOLzzYFxAGb2N1yZDC5nesbM3sd7DR43sw9o+n28BlwnaTywPS4p2hR4JJX1kJllKwGeN7MZaXnhDFyOlOdN4O5U1nqprEH4yg2y+CrkTONSvf3SPk+Y2fs52RLA+mY2Mb2fgD/VV4sxEy49gvc85IVLWW9H/rhL0xLXPEXrB/hHalFPB55Nqy9m5q5LJph6kOaCqSAIgh6FpJ2B7wO7mtk7wHs5I3E//Huy1UTDoR3UkUBlVEqKMprJmcysUtb0C+C49JR+d9pWSxBVUyolaUm8Oz/TSU/M7ZPJkrIy68mZKuvIzi0jky9Vi7GecGlOC+eWUbT+yn2byZ9aEEwFQRCUT8dNjlwe7wHfPbds/k9ANnl/H6BNSRij4dAOakig8nKmSfiTO5K2pGlMvyWWB/6Thh22x90K+bI2kTSyQDnLAvPMbIakNVN8S+LuhExYtT0UkjNVMkXSVul9Jl+qFmMR4dIkYId03FGSDi1wbtXqb4nWCKaCIAi6nA7MVXEA/p13u6RxqSf5PODQ5L5ZEe8FbjUxObJ9PAtcLWk2/tR8Aj6hL5MznYnLjv6MN9K+XbDckXjX/bPAT3CZ1NbA0+kXDk3JrGqSckaMlTQJ+Ecq61J8Zu3tSYL0ME1P75mcaQ7wCnAtPq+gGicAIyUtwIcjDjOzWZL2qojxXeD3qeH0C6oLly4Hbkz/sd/FeylOaeH0FqofH/KoR14w9TBNgqk2zSwOgiDoaDoqrbaZXYt/h1eyU3vLDgFUENRhzqw3Sv8DWTD/47JDAKChsVfZIQRBt2bJ5T7T7rv+q488VPg7Z5XB25aij4wehyAIgiDoLpSYg6IoMcehA2mLMVLStpJWSe/vbmn/imOHShrV2jq7G5LOlnRcrfORVC3TaBAEQY+jo5djdgbRcOgg2mGM/CawCoCZ7dWRMfUEJC2Br4QIgiDo8TT0aiz8KosYqug48sbIS4EbcJFTb+B4M5ss6Tv4yoL5eMbLSXia6/VTb8UTZraSpE3wSXvzgb+a2alp4uBxZjZF0nH4bNlxWeXVjIiSzgbWwYVTQ5NJDEmfxaVTc/DlODub2VBJe+OTEucBfzOzUySNAHYF1gC+i0uVpuKTJq/GbY1fxv3nzVZ6SDo9xTQfOMPMHpR0LHBQ2naXmV3cwnW9DNhQ0lW492GDdD364gKp/snE+fNU1/PA47i86jkzOyid7y/wFRTz8UmgC3Dr52zgSjO7p4U4giAIAqLHoSPJGyNPAkab2Y7AMUB2czwVGIyvkHjLzMbiM/0PM7P/5Mq6Ajgq2R5XSf6BIlQzIi5pZkOyRkPif4Hbk9vh0+DJrvAlpTuk7WtKGpz2XwvYFpiGmxlPAXYHLkjH7IHrqT9B0gD8Rr4lbnI8SNLn8Bv6Nqm8fZK2ux4XAmZm9VaR9AKewO2Zg4EXzWwLYEha0noucH1yN1yFr1IBl0YdFI2GIAi6DYtAWu1oOHQOWwNHp16Cq2iyFo7CBRxH4LkZajHAzCYDmNkhZlZEVFTLiPhYlX3Xw5cjgvd8AKyPNxD+mOIegHsOACaZWTbTd6qZvYEbx141s2k0NzNmbAJMNLP5Zva8mR2Oq6MHpBgfxD0T/QucWxEeSzHOBJ5M215NcX1i8KS5ZTI7lyAIgm7BojDHIYYqOoc5+PDEX/MbzewYSQPxnA3jJX2pxvHVluPkty2R/yBnRNwkyY3yoqk5LEzeUT4/t9/jZrZzRdkjKsqoaWasqKOaDXIOcK+ZHVVRxw5VYqxGzWvQQlx5g2feMlnt2gRBEJRHiQ2CokSPQ8eRN0ZOxOcuIGmQpJMlLSfpzJSj4lzgDTwbZP64jH9J+nI6/npJ6+HJrrJMZoMr9m+tEXEqTebIXdO/BqyXW+FxjqR+1Q4uyOPAYEm9Ja0q6Xdp2/aSlpHUIOnynDe9Fvnrk78G27Qilk+MlhS3TAZBEHQ5DY0NhV9lEQ2HjuNpmoyRVwDrJoPidcBDZjYLWFnSY8kk+Wjyh48HbpO0fq6sE4GLJT2Mz4V4GjeAjZR0L251zJM3Ih5AkxGxFpcDR0n6E/4kPi8l3DoJuC+V85kq9RTGzF4EbsJzwt8F/DTN47gsbXsUmJGSe9VjOtBL0h145kyloZSBNPUctMSZeDKyP+NZMs9q1ckEQRB0FYvAHIcwRy6GpEbKCmb2iKTh+IqLo1o6bnGkO5gj533wXtkhdBt6f6pP2SF0G96f9nLZIQCwTL/Plh1Ct6EjzJFvTv5b4e+cFTfaPMyRQZcxG7gm5XmYj+d56DTSUtNlSUspO7OuIAiCRZkyJz0WJRoOiyFplUZr5gi0mZwYK5Y8BkEQtMQioJyOhkPQ2YzEl2FOBtaQdCcwCPczzACGm9k3ACRdB/weF2i1Reh0E3XkVJIOxLNqfgw8ZWZHdv7pB0EQ9CxicmTQ2VyITwD9D26x3B9fcXIC8Efgy5KWltSA+y9G03ahU0tyqr7ALkmsNVDShp132kEQBK2noaGx8KssouEQdCWPJoPlNGD59P4eYDfcMDnBzDK3QnuETrXkVG8Cd0saj0uwPtMpZxkEQdBGGhobC7/KIhoOQVdSTRh1Iz4MsSdwS419iwqdah4jaUl82OSApNSe2JYTCIIg6FQaG4q/ygqxtJqDxYVqgqtPMLO/A/3weRAPFSyzLUKnZXFfxQxJa+K9FvUkWUEQBEEVouEQdDZPAxvjEx5rMQbPxll0/XKrhU5pCGOspElp/58Al6a03UEQBN2CRSFXRQigglJJkyLHAkeb2fNlx1PJh2/MKP0PpLF3N1n81A3Wl895+62yQwCgd5++ZYcAC4qKUzuXxiVrdih2GfPnfFR2CAAsvdIa7f4jmfX8U4W/c5Zbd/1S/iijx6GHkWRLSBoh6aIOKnM1SddU2X5RSoLV1nL748MMY6s1GiTdWiCXRRAEQY+hoVevwq+y6CaPMkFHkJMt3dmR5ZrZDKDDldQpn8VmdT7/ekfXGQRBELSPaDj0LEYCW0g6E/cmFBUuXQzchy93/BXV5UqjzGxzSQcDpwPP4Ssb8im8sxTfv8JdDC8BhwIbpNjmpjL3wzOD3ozrr68EPgLOx+VMt5rZZZJeTMdeiSfc2gxYCzjIzJ6QdCKQNS7uMrMLJP0yncdmwMq4z+EwPIPodulcbgH6AMvg6c8fa8vFDoIg6HC6wZBgS8RQRc/iQmB8StsNxYVLSwD3m9l51JYrZfMRzgeG4TfsdavEcB5wiZkNwW/2mwOr4Dfo7YFHgIPSvpuk9/emunbDhU/DqgxRLGVmO+OZPQ+R9Dl8YuSQ9DpA0ufTvvPMbEfgn8DWZjYsvd8eWA24LsVyBvCdFq5pEARBl7EoTI6MhkPPplXCpfRvLbkSuDDpXTN71czm4o2ASjbNtpvZ6WY2EZcwnZ/ES8NpEi9lwqaVgQ/N7DUz+9jMdq+SbntC+vdlXOi0STq/eWY2D/cybFxxLtNpkkdlIqiZwD4pZfkFhAQqCILuRENj8VdJRMOhZ9Ma4VLWgKglV8rKyP9c7f/Px1W2Xw5cnsRL+UmWc+ocU0k9CVRlrPXkUScB08xsG+CYFuoMgiDoUhoaGwq/yiIaDj2LurIlKCRcqidXegNYXtIKyX8wuMbxOwBIOlfSMHx+wVRJS+G9Hc3ES6nXoZekfpIaJN2TclLU40lgK0m9JfXGk1k92cIxZLGk9/9TGUsQBEGpNDQUf5VENBx6Fk8DG0uqJ1uC+sKlmnIlM5uPz3kYD4yiYmJk4izgiDQs8TngQeAK4C7gjvT+75r7owAADkRJREFUEJryR2Qcm8r8C/CAmb1d7wTSioxrUywT8HkLL9U7JnEjcLKkMfjwxmqSDitwXBAEQaezKMxxCAHUYkZ3Fy51N0IAlaMbzPYOAVSOEEB9Qk8SQL0//aXC3znLrL52KX+U3eQbKegKkufhTuD2aDQUY4tNDyg7BK4ccXDZIQCwxQl7lB0CWw/5VtkhBEFNJr80vv2FlDh3oShdOlQhaVtJqxTct6qtcHFAUt/kMOho3gTOMLMLKurbRVLNiYKSvitpqy6KsVBMQRAEQTl0dY/DN4GLcEFPXTrLVriYsynwFXyOwyeY2eh6B5nZjzszqBp11o0pCIKgJ1Lm3IWidErDIeUv2MDMTpXUF59EdwQuIlo/5VPYHDgFXy73NzM7JR23K7AG8F18Cd/mkp7Hl/Htga8aGAa8j0+OWwcXGJ1pZn+uiOMbuPhoPi4luk3S/sDJqd7HzexESWencj6HT/47FTcZro0bE8+TNA44zsymSDoOn51/KXB7imkp4Ntm9kSu/mWBG4BP49f6eDObXON8GmhSRT+WK2MoLl2aizsMvom7ELZLMawPfD9tG4RbFSdKOhaXK83HrYoX4/bG5SQ9i8uf5uAegz/kfl+1bIyj8FUYC8VYcc1PB/ZN9Z5hZg9KugRfxbE0cLWZXZfKzOr/Om6bXBv4EJ88uRNN1shf4SshNgaeNLPDJX2W6obLm9K+WwFXAxvhKy5GmtlISQfi/yc+Bp4ysyOrnUcQBEEZNDSWl4OiKF02VGFmY4G/4/rfN4EfADuktf1rSsqW9q0FbItLizJ6A8+Y2bbAC8COwIHA9GQA/BpwWb6+dNM+K5W1M3BgasScDwxL6/jXkZQtPVwy2Q4/xhs1B+M3nyMk1ZIE7Qi8nCyLBwGrVnx+EjA6WQyPwdXOtc7nYGCKme0ETM6VcTVwQLpOb6XzBhiAuxh+hBsQ/ye9H56sivsB26Tz30fSWrhZ8jYzuzaV8aaZ7ZO7ZvVsjNSJMTt+AN5o2DLte5CkpYEX0/UegpspM7L6DwVmmNlg4OfpvPJsBnwP+BKwW1qqWctw+UW8Qbo7Lnj6Ad5AOyJ93hfYJdU1UNKGlecRBEFQGiGAqsn6eAPhj+lJfgD+tAkwqcYywUpz4NbA19Lxo4BPScqvyV8PeNrMPjCzt81sL+ALwHNmNjvt8zBNZsT8E/REM5ttZh/ivSX5m2eev+IugauBdc3s/orPtwaOTjFeRfMliJXnMwhfigjJ3ChpRWCBmf03d0wWb7accjowOVkhMzviFvg1fTC9lgX6V4m/stegno2RajFWOX6imc03s+fN7PB0DVeU9BfgftwSWVl/3jZ5q5n9rKLc581sRloO+ko6x1qGy8xGOR141cym5a4LeKP17rRcdD3CHBkEQdAqOmuOQ/7Gv0SVz+fgwwQ75zemoYo5VfaHhQ2Ac4DzzOw3NfavZiOsZxucU7E9X9cCqpyTmU2XtDEuTDpG0pa5PBFZmceb2V8LnE/eypjV31Y74hzgXjNrNkdE0joVMVRe63r1ZWVXxphnoWsuaTtcCLWdmc2V9G6V+lsyR86r+LnSHFnouqSG5UhgYzObIemeOnUGQRB0OR1phExOny3x78sTzWxSR5TbWT0Os4DV0/ttctszs6EB62UrLCSdI6lfK+uYiA9RIGkVSedXfP6Mf6S+KanTWOBZYEAaxoCFzYgZm0paJnWzD8IzQebPaXCqdxg+7DEGOB5/Cq4V4yBJJ9c5H8sdvz2Amb0FLEjDDPXireRxYPt0Dg2SLk9Jo1oyS7ZkY1woxir1Dk7Hryrpd/g8jP+mRsOeQO+KniFobpvcXdL3CpxjPcNlLZbFE2DNkLRmOpcwRwZB0H3oIHNkemgbYGZbAYfj88U6hM5qODyA37THAQNpehocD9yGT0I8CbhP0iN4d/ErrazjduDd1AX+B5q6/gEws/dwC+JYvEv7+rTtNGC0pAn4RLuHq5T9L3zi3V/wyXxv4xMxR0q6Nxfr88D303neiM8hyHMFsG6q6zqqK54zbgS2lPQAIJp6OI4Abkl1LAncWqeM7Nz/g8/5eAh4FJ8/8AHwBLCvpFNrHPci9W2MtWLMH39Tqvcu4KfAn/DG2nh8yOceoHIo4lagT9rnf/HJkC1R03BZizSEMVbSpLT/T4BL5frsIAiC0mlo7FX41QI74t/DmNm/gE9LWq5DYgxzZHPSKobjzGzfsmMJgiAIgrYg6Vp8yPru9PME4Ftm9mx7y45cFUEQBEHQ86gcy8jmhrWbUE5XYGbjqL5iIAiCIAgWFaYBq+V+XgOY0REFR49DEARBEPQ8xuBeHSRtArxiZu/WP6QYMcchCIIgCHogkn6MSwDn42bjf3REudFwCIIgCIKgMDFUEQRBEARBYaLhEARBEARBYWJVRRC0k5Rx81fA6mb2esq2+rqZXVmx34t4FtLZKaHYvcBXzeyFNtZ7MZ4AbDWgD54V9E08qdcjabdPATeY2dUpK+0FeH4UgLEp8+ueeKK0OXjK+2+kHCOtieVR4NiK7LA/Ar4NfC9/LbLrgJs72+VMkdQfTxS3lZk9mtv+NzzPDPg1eiN32O/N7JIUx0VZbKmss81shKRG4DzgcDPL51eprPufuDF1AZ799TRgXeD/8N8H+O/mejO7Oh03ABe0rQz0wkVzp5rZR+nzfsB/gL2zNfhp+3bAHcA3zeyero4h2WSvpykj8amVAr1a5eLW2f/iY+29gGvN7MZ0zEa4Cn4+TYn8tk/nkbEpMNDMXknH7IwnECzkZ664TuAG3X/iyQenptg+zh1yLvBVqvx9mdneRersyUTDIQjaz4H4l8q+eDbTuiTl+R34TalNjQYAMzsllTeClBY9/fx6yhqKpKWAJyTdj2cGvdLMLqso6kQ8Y+g7km4A9gZuaWU4twAH4HbSjH0oYDrtAP6Np5V/FEDSusAKuc/PyG60FcwEjpL0qyqzzb+L30xaujFZ7lpvC/wQ+A2ehTb7fSwFPClpdCrzTjyHzXhJDbhh9Uzg+6nM4bjmfjiQ3bQ/D5yMJ+YrJQbgG8B7ZjZE0vrADXhCPVIdveqUC7BrajQvB9wsaW7KNXQFcIqZPSbpQmCEmV2FN6yz3+dFuUbD0nhDd3q9X0y965TK+SVN2YZ3zSU/zPhz2m8Eub+vIIYqgqBdpAymW+CpvL9e4JBG4GbgEjP7S0s7t5f0BPlP/Clx2Rr77JgaDb3xp6tp1fZrgdvwBgcAkjbDezZaq5JvC48CO6UbF/jvYUyB4z7A9eenVfnsinTzag2rUuXaVfwOdgKeMbPx6bMFwOk0Tzd/IHAcMExSn7RtOn59Z5UYw8144wXgNRbOLFukXMxsFp7bJ9PE72FmWabcauWeDZyT+/l7eA9FrYSIRZmIZxEOWkk0HIKgfeyP50oZDXyhQLK284Clzay1T/RtIjVsvojfNPoCe0saI2lsyuya7TcCf3Kfmn3xtwYzmwm8ICl7At2fpl6LEyWNy140l9J0BHPxm0CW9Gwv4L6Cx14L7CGpWUytWO+udF6PApcAF1XZYVW8cTkFz93z94q6PsgNEQhY3sz+hIvo9kz7vG9m+a70MmKYmxvCOomFe6Xqllux/SVgFUm9U0OC1EA5BBiVi3sNYFUzezL9/AU8u+0dNa5FIVJ+mr1o3kMWFCQaDkHQPg4EfpO+1EfhN8x6fAj0lbRbJ8a0fO4mPQo4zcxex7tezzKzr+BPgTdlB5jZL/Gn0U+nORttIRuuAL/Z3JneX25mQ7MXHWSvq+AOYHjqQp8G5Ludf5RvuEjaKvvAzOYB5+NPtW3B0nltiT9x34YPAR+Qu5lPBE4ws1fTMfWyEx2EDzOAX88ivVhdGoOkb+NzDs5lYVrMvFSx7/xUZh/g9/iQxNO5fQ4Ffp37+VKaej1ai3J/FzOBB83srvTZ/RX/Rz7VxjoWC2KOQxC0EXlq7i2AiyUtAJYB3qb+0+45wCp4ls6/Z+O2Hcw7+bHcjFx3MGY2QZ6Ovg8wxMxGm9k8SXcDQ2n9HAeA3wJnSPqNV2Fv+cNrlzAWTxs8ndwTa6LWHAcAzOwOSSfhGV/bjJk9I+kDfJLdbWZ2aroBPU5Tevqn8SGAT0jzDwaY2RT8Jj1f0u74jXUdSSuYZ+gtPQZJ38In337NzOZWVF+z3Mo4JQ0E/m1m89MQ2d3ALakBm+erKZ5swuZA4Nfp/9Xqksab2XZFrg3N54KMAvLJnqrNcQhqED0OQdB2hgMjzWxjM/sifuNZEU8fXhMz+zfegLg5zd7vEiT9UL6yAkkb4OPJHwHXpi5hgC/jM+BbTepy/ic+Bt0lQzG5uufi6dy/hQ8dtZbv48NIbSYNC62OrzjI4voAX91wado0Flhb0h7pmEZ8pcsBaZjnXTMbaGZfNLMNqZg7UmYMktYBjsZXWlRbdVOz3IoY++CTJs9Pm74DjDOz66uUuY6ZvZzOY5qZfd7Mtky9K9Nb0Wio5DTgx5KWaePxizXRcAiCtjMcn1kOfDIZ7Ff4E1J+XP+3lQeaL0WbSdMs9q7gJuB4SeOBa/AUu/OAo4C75Gl31wZ+3o46fo13lxe9eW9X0UW8VjvqvgN4wszeqdheOVSx0KRH8+R2M7OfJV2RurSzYZ9a3eP57u/78CfuZpP20sqB1SV9xczmAzsDR8iXjD4MvINPFGz2/ylxAz4E89VUxy7pfPKTP7skBuBwfOLifblruWSujnrlgg8HPAQ8ANyem6fwbWC3XJlnppP6TDq+wzFfzXQn8INcbPn/I0d2Rr09hVBOB0EQBEFQmOhxCIIgCIKgMNFwCIIgCIKgMNFwCIIgCIKgMNFwCIIgCIKgMNFwCIIgCIKgMNFwCIIgCIKgMNFwCIIgCIKgMP8fs1Gveh2v92wAAAAASUVORK5CYII=\n",
+ "image/png": "iVBORw0KGgoAAAANSUhEUgAAAg4AAAD8CAYAAAAffiwCAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADl0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uIDIuMS4xLCBodHRwOi8vbWF0cGxvdGxpYi5vcmcvAOZPmwAAIABJREFUeJzsnXmcV1X5x98DIi64Iam5L+EnTVNcUlEE3FNTM1fcsCyrn1tmpuWCmJaVO5SZC2olphWW5oIL4oIkrpn6qCTuWG6BuCDC74/nuc7lO/e7MMzMnYHz9jWv+Xq/597znDvM3PM95znv0zRnzhwSiUQikUgkGqFb2QEkEolEIpHoOqSOQyKRSCQSiYZJHYdEIpFIJBINkzoOiUQikUgkGiZ1HBKJRCKRSDRM6jgkEolEIpFomEXKDiCRSCQSiUTbI2kD4EbgfDMbIWk14BqgO/A6cIiZfSTpIOA4YDbwGzO7otZ104hDIpFIJBILGJKWBC4G7swdHg6MNLMBwBTg61HuNGAHYBBwoqTeta6dOg6JRCKRSCx4fATsCryWOzYI+Gu8vhHvLGwBPGRm/zOzD4B7ga1rXThNVSQSNRh36qWlq1VXWH3pskMA4IHxL5UdAsv0WrTsEAB46Y1pZYfA1w7pV3YIALzz4rtlh8D6Q3cuOwQAei67QtP8XuOLawxs+G/OEy/eU7U+M5sFzJKUP7ykmX0Ur6cCnwVWAv6bK5Mdr0oacUgkEolEYuEg3ylpiv+v7Hw0VZRrQeo4VCBpqKRfFhyfIqlXg9eYJGnNimO7SxrVNlE2hqR94vsgSTc0eM6akibF69GSFq9Xrj2QtIuk77TX9ROJRKIz0tTU1PBXK5iR+5u+Cp4g+So+6kDF8aqkqYoFFEk9gOOBhjoMRZjZAW0X0TzXfWtZdScSiURZNDW16+f5O4CvAb+L77cCE4HLJC0LzMLzG46rdZHUcShmLUl/AvoCF+SXpkjaCBgJfIwvXdnXzN6WdBHwJeApYNEouyFwNd6jey13je8CB8X5Y8zsXEnDgLWBtYBBZvZJlB0GvBlLaTYARpjZIEnPAY8AtwP/iJhmA9OBw4AzgQ0l/Qr4I9BL0u+AjYDrzWy4pPWBEfiw1HRgaP4mSJoCbACsU9nmajdO0onAPlHuZDO7W9J5cW8WAy4xs8ti9GUmsDxwAHAVsAbwIXAosGPUPSLemxyxP2pmR0haFbgi7vVs4BvRjmui7FbAJcAX8eSfkWY2UtIQ4BjgE+BfZvatam1JJBKJjqZbi5mD1iFpU+BcYE3g4xiBPggYJelI4EXgKjP7WNJJwG3439AzzOx/ta6dOg7FrAtsAiwNPC7pytx7KwBHm9mjkoYDB0m6E+iPPxxXAZ6PsqcCw8zsRkm/BpC0Fv7g3SbK3C/p+ni9aCyTaYS1gb3M7F+S7gJ+YGYTJZ0AHAv8AtjCzL4raRCwPvB5fHrqBXxZzsXAkWb2XHRm/g/4fUFdLdoM/K2ykKS+eKdhy4jvJEkTgClmdnwMkU0GLotT3jazb0k6AphqZkMkHQDsAXyQu/SmwP7Af4BXomc8HLjczK6LX4hhwOnAxsBeQG/gX3hHbDHgT3jnpxewi5m9K2m8pA3N7J8N3vNEIpFoV1o5BdECM3sYX0VRyY4FZW9gHkanU8ehmPvM7GPgLUnT8E/FGW8A50haAlgZf9CuD0w0s9nAy5L+HWXXBx6I1+OAL+Odi77A3XF8KbxHCD5y0CgzzOxf8foLZjYxXt8L/Bi4sqL8I2b2PoCk7F/ml4DfRtZtT+ChKnUVtbmIfjTfh+eBI6K+3pIewEcYPpMrn7V3E2KtsZmNjnOG5so9b2ZT4/hrwDLAZsDJuTafFq8nm9lbkj4C/mNmr0ZuyjLx/tvAjdHm9Zj7Z5tIJBKl0q19pyrahNRxKKYyozT//xcC55jZrfHpvheehTo7Vyb7yeePZ8dmAjeb2ZH5CiRtF+/ViqVH7vXMKmW6VcSSMavg2PvAYDP79PzKpM6gqM1FfEJFwq2kgcB2wMAYEpte0IYW59WJvTIbON/mfNn86yZJi+KjDhuZ2VRJN9WoM5FIJDqcthpxaE9Sx6GYrSR1x4e7l8Q/pWb0ASZL6onLNR4EDPhefJJfHR8eJ45vhs8dDY5jD9P86f0D4ALgpBqxTKN5Te02Vco8KWkrM5sADAQm4Q/SnnXa+TiwC3BLTBH8F59KqKSozUU8DJwqaRH8k/wleBLOy9Fp2ANYJB7geR7COxfXS9odz0t4jdo8hN/Ta2lucz2WAmZFp2E1/GfTOcQAiUQi0UXo/GMi5fAMcD0+fP7j/CdyPC9gTLx/MZ7I1wT8E5iAJyU+FmV/gncSbiY+XZvZS3hnYTz+AJ4atq5q/BnYU9JYYNkqZY4Bzo5ch82Bi/DlNN1z+RNFHAv8SNI9eGLko1XKFbV5mcpCZjYFT04cH+UvwrN4+0Yd6wA3Ab+uOHU0sGSU+R6eDFmP04BDo81D8fyGmpjZW8BYSQ9F+Z8D58cKlEQikSid7k3dG/4qi6Y5c0oX4yUSnZb333ip9F+Qbot0jkGRme+8VXYI3PrLsWWHAMBOxw6uX6idmT2zaGaz41li1dXKDoFuPTpH33/RpZef73mG/uvu1vDfnAeevbmUeY004tDGVBNINXDeSpJ+02DZUTGk3yWQdFQsK23t+UMl/XJe7lEikUh0Rbo1NTX8VRYpx6GTEKsGjqxbcCEm3aNEIpEon9RxaB9aCKRC2PR33EVwEy2FSksDN5jZZpKeB34DfAVPcNzBzKZXVhJz85fizoSe+Lz/GkBvMztH0o+ALc1sD0n9gW/iSzUvi/KfAEeY2Ut5oZSZXZ6r44fAgXii5yJ4jsMgmmVVO+AiplXxRNJhZnaTpO3xXI5/A/+L70g6CxiA7wc/wsyurWjTIcCJuJzkVTxvJHtvzdw9GgScHffwFeDrEedAPJnzC9HWA/FlsQeF56KFjKroB5hIJBJl0NQFJgI6f4Rdk3VxG+JgYHistugB3GJmZ9EsVBoM3I8LlfIsAjxjZtvisqbtq9RzIPChmQ0E9sY7I+NwARO4OCn7GffH3RFnAueZWfZgPzXeXxsYXtFp6A0chVsYj2FucUgmq1oG72wMBPYDzoj3fwocbGZ74g9yJA0A1oh2bQeckt8LQ1K3OG8HXPi0U5V2g6/Y2D/qfQcYEsf74gKpn+Keh6/G6wMlLYbLqLbBOy/Da1w/kUgkOpzu3bo1/FUWqePQPtxnZh9HFn9eIJUJj97AV0Hcgz/8iyRE98b3VyhYwRBshncUMLPXcG/BW8Dquc7KM5LWxf3j4/AOxDBJ4/AHa1Z3XiiV8TngCTP7wMzeYG5BVNaWd4DNJd2Pr4bIrremmT0er++J7/2BLaPu2/B/f/ntW/sA/zOzN8xsBnBXUaOjQzPHzF6OQ/fi8imASbEK5vWI/RP8fi9jZh8CmYzqFuaWUSUSiUTpNM3Df2WRpirah2oCqSwNuhGh0lzyohr15N/LREjP4pbKZ/AHfH9gxZiSmInvr1G5+1lRinbl9qp5sVRWfgjuuxgQ3ycVlM3Lry43s59WaU+t+vJUazfUFkDVklElEolEogHSiEP7sJWk7pI+Q0uBFLQUKrV2vV0mQSKERrPN7F18ZOF4PD/gQfzh/lScMxHfywFJ28WmT9WYAmwgqUe0ZbOCMn2AF0IzvXeuLa/KaaLZlz4R+IqkbpIWk3RxxbXeApaXtFxMYQyiADN7B5gjafU41KgAqg/1ZVSJRCJRGt2aujX8VVqMpdW8YFNLIAUNCpUaYDQuebo7XmcrDu7BP1lPMLNX8M2txsV7w4C9JI3HJUgTqEJMT/wBH7W4ML5X6p//hHcG7gRm4JtQnYonJt6Ab4b1clzvATzPYgIuiXq4or5ZeA7GvVHvpIL6Mr4J/CGmPRaN9tejERlVIpFIlEZTU1PDX6XFmARQiVrEZlN/wB/g/wR2MrNX27G+fYC7Yqvy2/BVGlU7N+1NEkA1kwRQzSQBVDNJANVMWwigdtpg34b/5tz+5PWl9B5SjkOiHivhUwwfAb9vz05DsCRwl6QZwGNldhoApo6vZuHuOJbfaO2yQwBg5jvTyg6Bz6l32SEAsMgSi9cv1M7M/OijskMAYNqzz5UdAst+Yf2yQ2gzykx6bJTUcWgl8Ul8AzM7oR3rWBr3MNxecXw0cHidPS5aW+dJwD3ZA9vMfgb8rK3rqYaZXQVcJWljfCllIpFILDSkbbUT88smuMtgro6DmR3QXhVGR6F0zOwxmjcLSyQSiYWCtK32gk89Q+SVFFsavw/sgyen/t3MzpDUD/gVPiXwES5AGgksLelZM7s0q1TSFGADYAS+/fSm+HbeB+GJlo+Y2dVR9llcCHUKFcZESTvhO3h+gLsODgJ+iyc1ngnsGfGugSdBbkGzqbIHcJqZzeVaCPPjMfjyyPPM7Loq7R1Gs31yEHBuXP8T4Nv4CoijzGyfMGmOwV0U7wK74Vtkj8J3DO0BHGNmj0iaDPwVl0jdEnXuiMu3TpK0Q7RtJu6g2M/MOsdkcSKRWOgpcw+KRun8YyKdm3qGyGqWRoBt8Af60JiSOBz4lZkNAs7Bcwt+AVyX7zQU0NPMdsZXPRyKb8P9FQBJX8TNk+9TbEw8Cvh+2BdHM7eI6i/ZdYA98Y7DEOD1MF7uFW36FElL4Ss1tgV2ptnmWNReaLZPDgZWN7OtgB/hnaY8awNXx/vLAV/EtwR/MGI5Djg/yq6F67q3wDsw10e9X4/3lwOGRJunRZyJRCLRKegKAqjUcZg/6hkiq1ka38eXTN6Nf7LuDdwInCrpTOA/ZvZMgzFUGibvAzYOP8Ge+N4O1YyJ1wOXxJ4Wj8YmUhmfdkCy60R79or23AAsXuFBWA94OkyT74Zuulp78/dpE1y9jZmNN7N8Bwtgmpk9UdHOvDVzEqBc2WfM7H3gPeDhyAXJ/q3/F7gslmQOptjamUgkEqXQFZZjpo7D/FHPEJlZGgeZ2QAz2zuG/Y8HdonRhRcBzOxOYHPcAXGVpEbXe81lRwwR0924FGk3YEyFMXEQ8GHUeQ3+8HwT+Jukz2cXMrMngZVDLLWMmT0X7Tkr2jPIzPpWDPN/QsW/qWrtrbhPLc6r0UZoNkwW/ebMVTbcEHmuwKdABuKdtUQikeg0dIVttVPHYf6oZ4gssjT2wUcU3pO0Cb6b5aKSjsJ3tfw9PuzeD88T6NmKuP6MT1tMN7P/UsWYGKKmj2MqZDS+i2SevwNn0fyAzbdnBUlnV5R/xt9SrzBDjq3W3orz8gbMfpJGNtDG/DlbAk82cA74aMVLkpaN8zuHJCGRSCRIUxULA/UMkcNoaWl8DHgvNoXaH5+P/xXwPHB9GBiHAL/Ht7neJ/azmBfuxPeq+HP8fzVj4kvAHZLuADYCbq24TpbXcEP8/x+B6THl8Teap0kAiI2pTgPG4tMIl9dob/688cDTku4FLsJ3vqzHhcCmku7Cl4se28A54Amn9+NJnj8HTpb02dqnJBKJRMfQFZTTyRyZSNTg3mG/Lf0X5LPrdo40jM6wTOwzm69bdggA/PvmR8oOgbV37Ve/UAcwe9YnZYfAEqusWnYIQNuYI7+2ydCG/+b86ZFRpfxSphGHViJpqKR5EhRJGidpg4LjO0r6h6QHJW3edlGCpDfb8no16tlF0nfm8ZxRknZvr5gSiUSiq9EVkiOTx6GVmNmoNrzcsfjOkivhuQkPteG1OwQzq5zmSCQSicQ80j2ZIzsXknoAV+EJeh/iD+mpFEiNYsnhk0B3fOtrmdmHkgYBR+MbPr1pZiMkXcDc8qJnop5V8aTJYWZ2U43QZuBJkEfg+QGVcXevEeNYfMVEH3z55Gv4plQrktt9UtKG+Pz+bGA6cFhsJDVX7Gb2pKSzcN9Dd2CEmV0raRS+CmL5iKNSDjWCUHBLOhEXPs0GTjazuyWdR4WAquhGxPWuirpfBA7DZVcjgY/jmvsCS0e5yXh+xqNmdkSV81ekWMT1HJ5HcruZXV7j55NIJBIdQhJAdT4OA6aa2da4IXEPakuNnjSz7+DJhtvHsT1oThYkTISV8qLe+MNoILAfcEa1gEIa9Taulb4LuFFSZYeuVozTQjB1Cz5qsRPQI+q+jmZPwYXAD2JJ5D3AsUWxSxoArGFm2+IdklMkZTv6vG1mX6NYDpW1py/eadgSOBg4SNJiFAuoijgLl2YNwDtBmwErAEdH++/HDZfgxswf4ctYd42VEkXnVxNxrQ0MT52GRCKRaJyFasQBFw3dCWBmowEk/RoYIGmbKJOXGmWCokyGdDNuGjydZuHQXPIiYHyMbGwu6Vv4J+Ra2W0/wTtwbwK34Q/+DXF7ZEb/GjHmBVDL40sqH4h4JkrKNsL6gplNzJ3zY3ykozL2HwJbxmgGEVu26iB/P36JjwLsiY+ybB3v9QMmhk/ieXwUBUmZgGomzQKqIjYhVkiY2Ylx7heBcyQtAayMrzgBeD6TVkl6DV9qWXT+KP+mU/CRiP/G+TPM7F81YkkkEokOpTMkIddjYes4FImGMqnRtfmDkrL3wKcDfhHD/c+b2fR4v9o1h+CjDgPi+6QaMR0IfA4fSTgX9wqcNQ8xziWAiq/ZuWNZbHMqjs2uEvtM4HIz+2lBXTPB5VCS5pJDSco6DkUSqLyA6mNJ06lOUUwXAueY2a2xNLVXHC8SQ1Vr075m9nrB8UQikeg0pKmKzsdD+AMMSbuHarme1Agz+wh4HPgBuWmK3DUr5UV9gBfiU/fe1JYMfYKLn/6M50SsZGZWUaZujPlw8eF5JPWnWSD1pKSt4vVAvDNTFPtE4CuSuoXE6eIq9VTKoTIeBraWtIikFSX9hSoCqirXzf+Mhsd0Sh9gsqSeeL5JrftZdH6RiCuRSCQ6HUkA1fkYDSwZIqTv4Ul0NaVGOf6Ez93/NX+wirzoT/jD9058OuCVsDQWcTxwSwiS3opYxsen+YxGYwTPdVg82ngA8GocPwY4O4RJmwMXFcVuZg/gyuoJwHhyCZYF9yMvh8ruxxTgmjh3TFy3moCqiNOBb0bZtSKWi+Na18frQ/FpiUbPH0ZLEVcikUh0OrqCcjoJoBKJGiQBVDOdYe41CaCaSQKoZhYkAdTQrb7T8N+cURN+Xcov5cKW45BIzBO9V16q7BC44qrOofVY97O96xdqZ9647vGyQwDgsOMHlh0CRx8youwQABi47tplh8BBFx5WdghtRspxSMw3kqZI6lW/ZKuv30vSlPa6fmtpjZkzkUgkujpdIcchjTgkOiVtbOZMJBKJLkFbjTjEB86r8ZV9i+I+oal4ftkc4InwFM0zqeNQAlUMlv+h2Q7ZE7dD3p47Z1XgCvwfwGzgG/gPv4U9saKuIXhi5CfAv8zsW5KWplna9I9c2QHA2bih8WXgm7hD4qiocz3gBjM7o1ETJVUsmjkzJ8ApuJthaeB/eFLnCbjb4slG6we+iDscZuE+h7OAXXC3xA/MbIyk7+NJrt2Av5tZVTlXIpFIdDRtmEs0FDAzO1nSyrhg8HXgWDN7SNIfJX3ZzG6Z1wunqYpyKDJYHgh8GMbHvfGHYp7huF9hEL4t9bA4XmRPzNML2CXq+nw8cA/GrZg7Ak/kyl6Eq6S3A97A1c7gquihwFa4bhsaNFFS26L5pJkdhXcSbgvb453ADhVtaKj+OL5xtO/b+Hbbh8frobnrbYObLYdGJyqRSCQ6BW24quJNmuWDy+GG4rXMLEuaupGWf2sbi7E1JyXmm7xtcrSZ/Rp3L4yLY68BsyTls9E+fR9fjpmlVD9vZlPDGZHZE/O8jWus78E/sc9ll8yuKWlFoC/w5xgNGAysEmUeMbP3zey93HUrTZT9Kto13sxOBd7BLZr34yMP+SUC2WhH/rzzzWxMRRsarR/g8fBuvA48a2Yz8E5Qdl/exzsad+N+iPIz/hKJRCJoq90xw468uqTn8eXxJ+B/jzOm0mwFnifSVEU5FNkN58Bc2S6Z3bHo/fx7RfZEAEKyNBLYyMymSropVyY7P4tjJvBqfIInd41BBXVk8VTGOq8WzczcWHRenkbrryw7l1UzNsA6HuhnZu9JepJEIpHoRLRV0qOkg4GXzGwXSRvhzp38h68m5v472jBpxKEcigyWeYvjasBsM3u34pzB8TozP9ZjKWBWdBpWw0ctFiVnl8yuaWbvRN3rx/ejY4+IajRqomzEopm/H0dKamRtVVH99egD/Cc6DZvgOSa1LJSJRCLRVdka3/8IM3scn7ZeMff+KvjI7DyTOg7lUGSwHA10l3R3vD6y4pzTgEPD/DgUNyDWxMzeAsZKeijK/xw4H7gW38jqTnyzrqzX+Q3gyjBJboN3MKrRkImSxiyaFwL9Y4pkd3wTrXq0qL+Bcx4D3otpk/2B3+D5IolEItEp6NbU+FcdnscT1YnR1un4B65ss8S9gVtbE2MyRyYSNXj36cdL/wV55Z6nyg4BgGVWrWb57jh2+79z6hfqACb9s5G+bfvy5sTy7ZUAH74zo+wQWHWXAWWHALSNOfLYwcc3/DfnwrvPq1pfLMe8Ah9lWAQ4Fc9r+A0+aDDRzI5vTYwpx2EBIraPvsHMbqpXto3qe9PM+rTTtTcGvmpmdUdWEolEYkGhrZZjRjL5fgVvzXcvK3UcEp0SM3sMn1pIJBKJRCcidRxKQFJ3mmVPPXDZ012SDsVlRzPxZYX/V0N09EPgIzzB7wYzOysuP1jSUcDqwEFm9qik83AXwmL4DpiXReLjVcC7+FKdNcxsqKTvAgdFfWPM7NyQT10T1++By54mV2nbIXj+wWzgPDO7rki6JGlYtH8tYBBwLnOLo/oAR5nZPrGcaAye7PMusBue+DkKWDZiOsbMHpE0Gd/BdAd8p9BuwI7ALWZ2Urgmzox7/A6wn5llqzsSiUSiVLqVqJJulJQcWQ5DgNfNbDCwF3BBHD8B+JqZbQNMkrQ41UVHm+Gio63wbaQzP8IcM9slzjtM0mLAlLjmAFwkBZ4sOTxiWA9A0lq49GkbYFvga5JWx9f6ZmWvAL5b1ChJS8V1twV2jnZmFEmXFg3p02BaiqPyrA1cHe8vR7Mh8sGI6Tg86RO8I/IbvBNyDL4V95bA1+P95YAhIaSaFnEmEolEp6CtPA7tSeo4lEN/YK9YRXADsHg4F64F/iLpOPyT+QdUFx1NNLP3zOxDXMu8Thy/L76/CiwT7/eW9AD+Cfwz8f56ubJ/i+9fwiVQd8fXUsCaeELNMZLG46tAqu3zvB7wtJl9YGbvmtmecbyadKlIAJWJo/JMM7PMcPkKLnPKC7Mm4atDsrLPmNn7+Jrlh+M+Zv/W/wtcFitaBtdoSyKRSHQ4bWiObDfSVEU5zATOMrNrK47/VNLv8WH9uyRtS3XRUb7Tlxd5VEqPBuKOhIFm9rGk6QXnZNecCdxsZnMtBZV0Ja6EvkTSPviSySJaiJzqSJdaK4DKYi/6zZmrrJlVnnsFsJuZPS2pc+xLnEgkEkEX2FU7jTiUxER8igJJK0g6W1I3SWfhUxjnARPw/IVqoqNNJC0RUxHrA89VqasP8HJ0GvYAFonRjck0S6C+HN8fxnMklpDUJOnCmC7pA0yW1ATsSXVp0jPeJPWStJiksTQmXSoSR9Ujf86WNG+YVY9lgJdiT4/BNdqSSCQSHU5XGHFIHYdy+CMwPaYP/gbcG2bF6cCEkCXNwVcVVBMdPYV/en4AT3h8l2LuAPrG0Pw6wE34tqo/AX4p6TZ8Z85ZZvYSnm8xHngQ34jrAzxn4CJ8qmM0MFDSTpUVxb4QpwFj8WmEy2lAulRFHFWPC4FN4778jObcj3qMxKdFLsWFWCdLapWvPZFIJNqapnn4r7QYkwCq6xH7RxxlZvvMxzW2BN43sycknQxgZj9toxAXGJIAqpkkgGomCaCaSQKoZtpCAPWjnU9u+G/O2bf9tJTeQ8pxWHiZCVwu6QM8eXFInfILJe8+9WLZIbDGLpuUHQIAc2YV7TXWsVxxzNfrF+oAnrmmVabeNmXNnTcuOwQAPnz3+bJDWKAocwqiUVLHoSQkTQE2wL0N95jZhFrlKraUXhOYMo/1rQ6sZGb/ADCzR/Cpj9LJDJThlvjQzJ6VNBo4HM+J+CtwsZldXGqgiUQi0c50gX5D6jiUjZn9rIOq2g7fHe0f9QqWyN548uezZnYAgKQv4UtTU6chkUgs8KQRhwSSliFcDfH9WDNbK/f+qDh+G802yZ64TfL2KHaSpC3wn9dXK65fZIXcCU9+/AB4A/g/YBjwsaSXgBcotlEeiy9n3AQ4C9gF90b8wMzGFBkgK2IZh7sadoxrX4Xv5PkJsD2+ycqbZjZC0gbAiBBbEYbMbwP/lfQfPIF0AC6EWlLSC8BdVeI+Ae8UfT/Oq2WOXB8YgSefTgeG1kgsTSQSiQ6lzKTHRkmrKtqfQ4Gnwtw4k2L3AMCB+DD9QPyTd35J4pNmtiO+XPKQ7GANK+RRwPfjWqOB7rie+UIz+yvVbZQb4zbKb+MrFQ6P10NzsRQZIPO8HvF0B3qHGbI7sGGVdgNgZv/Et3g9OZtOwZXQPwOuM7MLa8S9IbCzmT1MfXPkxcCRZrY9cDveqUokEolOQVqOmYBiQ2MReRPia8AsSZlh8e74/g+aDYnUsEJeD1wi6UfAo2Y2taKuajbKx83sI+B1fLpgBj5ikaXTVzNA5ske+q8Dj8br/DXmh3pxQ31z5JeA38boyCH4lrOJRCLRKWhqavyrLNJURftTZGgsotKEmLdEzqkoB0A1K6SZXRN+hr2Av4XtsbKuonryafOVBspaBkiqnDfXNSrq7VHl/FpUizu/SVU9c+T7wGAzK32ZZSKRSHRF0ohD+1NkaCwib0JcDZidm3vfJr5vCTydO6fQCinpVOBjM7sUn6pYH3/I9ozzqtkoa9GIAbIe0/ANs/JtypOPsYjWxF3J43juBpIOkLR9K66RSCQS7UL3bt0a/iqLNOLQ/owCboyh8bG03HchYzQwSNLd+AM5v1/EBrHdNXiS497x+g7gh2GFHEOzFXI8cIekd/A8gfPwRMCrJE3F5/5HSpoT7x+OJ0TWIm+AvI9mA+QOdc7L82fg5lgpMb7g/XuB8yVVS1ZsTdz7HYt0AAAgAElEQVSVHAtcKukkPHk0+SsSiUSnoQssqkjmyPYmhvg/b2a3xaflYWaWtnLuIrw2dmzpvyDTX+sciz4WW2bxskPgjJ//vewQADjv8iPrF2pn3nrs32WHAECffuvUL9TOLL7yKmWHALSNOfKcvYY1/Dfnh2OGldLNaNexDkmDJN3QhtfbPZYvVh7vJel2SfdLGtZW9VXUMUVSr1ac+j/g+Pikfi7w47aNrOOR9GZ8HxfLKturnhvb69qJRCKRaB0LylTFLsB4M/tJrDAYVnI8nxJ5CmmEoRWY2Z5lx5BIJBIdSVfwOHREx6GXpN8BGwHXm9nwahKeKjKjDYGrgVeB16rUMQPP/N8pyrVA0vN4HsDWwLvAbsCSwJXAcvi9ODo2fdoROBsXF402swty11ktrrO7mb0ex3oAv8MT/3oCp5vZrZIuxhMaDV+W+TW8U3ODmd0kaXdgHzMbWqXto/CdKzfFl1qeg8/r98GTA9+nQBqV11RL+iW+5fRdEeMn0daDzezTjRhiSuUq3LnwIi5XWhG4LK79CXBE7KBZFUn98NyH2cAEMztB0g7Amfjqh3eA/YD+zC1uWh/PYZgNnGdm1+VU1OPw/JDtou1fMbOXJP08fp6L4DKpaxqQUH0WuCbC7QEcZmaTa7UpkUgkOoqmLpDk0BFpmesD3wK2Ao6OYy0kPDVkRqfieQG743/8i3gHOAnYHRcTLVZQZm3gajPbCu8ofBE4Drg14vgOcK6kJvzBtyv+UNpBUja5uxj+0Dki6zQEGwJ9zGxbfHSht6Qv4BKiL+H2w6oCpBptB9/uenvgn0B/M9shXg+mtjSqkn2AsWY2GE8QrNxK+iz8gT0A76Bthj/sz4v6L8B/FvXIfrZbAytEh2Q5YEjEOY3mEZgN4/WzwOlAdv+KEhanRRy3AHtL2hbvHG2NdyiGSVoqytaSUH0WGB734Qrgu5UVJRKJRFl079bU8FdZdMSIwyMh4yEeytAs4QH/NPuQmX0oKZMZzaRZZrQ+8EC8HkfFkkZJG+EP+j8CD+Kfwu8GBlXEMc3MnojXr+BCov7AZyQdHMeXiHo/NLP/xrHdox6AS4C/mtmjzM0zwFKSrgH+gq+Q2Bv4R/gCXpJUNZOpRtthbqHSM/E6EyptSk4aJSkvjarkduAvkpbFRzwqN9XahDAxmtmJ0eZR/k2n4A/e/1Kfvtl9NrND4zprAZdJWgTvwN2FjzQ9bmYfxc/w6RA1fQAUTVHcG99fAZbHOzb3RD0zJD0L9I0ytSRU/wYuknQG3qF5uIE2JRKJRCLoiI5D0fLDFhKeajIjXByUiX6KRkgOxz+h3xVfc4D7G4ijCX9IH51/iEpavko94A+tQySNzJkKMbP3JW2Jd0SG4p2NW2gpLIICCVKNtlfGXSRUKpJGtajDzJ6MB/ROwE8lXWFmV+fKfVLQ7pnAvhWjK/Uoygi+AtjNzJ6WNKLi+tXqrqTRtleWrTxvOHCbmV0SYqzd69SbSCQSHUaaqqhOkYSnUGaE5wdkAqXBBdd6D1jVzKbhqxauxh0DjTARtysiaX1Jx5vZW0B3SatIapJ0U3xKBzgF30DptPxFQog0xMzuw6c81sdHBzaPa6yOb4UNxRKkam2vRzVp1DTgs5K64zkWSDoAH9ofE+3YrOBa20XZ4ZGXkL8/20lqxHnwlHxDLiRdLmk9/JP+S3EfB9NSHPWMF1cvSYtJGpsbnarV9kFRTy9gHeC5BuLrA0yO6+9ZEEsikUiURremxr9Ki7Gkeo8FfhTioqH4cPIdQN84tg7NMqOfAOdIupm51cIZFwF7SBqPb1h0Lj4k/40G4rgY+Jyke/EkwExK9F18x8oHgDsrdk/8CfBlSZvmjr0AHBzXGQv8IjZtehwfNj8beCrKXgOcIOlW4OM4Vq3t9RiNd3LujtfZ4vIR+L4Yfwb+FceeBUZIugvPJ6i8/unANyOGtfDpnmHAXnFvTwcqpzeKOBbPFbkPeMfMnsZzL+7HEzl/DpxMLsci9sQ4Db9344DL6ymho5P2cMQ2FjgprlOP3+D/Zm7B79nASKpNJBKJ0mlqamr4q7QYkwCqY5A0CV9BMaXsWBKNM/2FZ0r/BZn1/vtlhwDAnI+rSU87jsVXrszpLYcZL71SdggssVrnkB598Oq8zGS2D4O/emLZIQDwxIv3zPfT/OL9z2r4b87R1/24lN7DguJxSCQSiUSiy1PmdtmNkja5ahBJQ8OJkD+2i6TvFJSdJGnN/DEz26ytRxva29xYr15JwyQd1Y71XBArMhKJRGKhoGke/iuLNOIwH5jZrWXHsCBjZseVHUMikUh0JF1gwCF1HFqDpJ/itspX8JUKJ0i6CPdTPEVk6ocH4TXct7A6cJCZPSLf6fIgfPngGFyuZMDGYXvcBjjezPbO1dnCyJh7bymKDZhDcBvjJ8C/zOxbkobiLoyVgQPM7NW4Rg/csrgG8CFwKDCVZjNlD9xMeVede7Ms8HtgaXyfjgOAZSmwNUp6DngEd0w8Utm+sEAehcurlgGEJ48eZ2a3SNoPOB5fcvmwmR0r36ukD/C5iPsU4Ov4qpZdgZeinavi5tBhZnZTrTYlEolER5GmKhZAYu3/6mb2k9yx9XGHQ3989YFyp/SM3TAvBA6Nofd98aWY2+Ia6lXwDsQecc4ewB8qqi4yMma0MGDG8V7ALnHO5+X6bvBOzLZZpyE4DJgaZX8bMQzBLYyD8WWZF1CfE3BPwgDgTnzb7Wq2xrXj+OV12gewmpntiq/aODKWYJ4N7BCWyLUlZct1e5vZLsD1eCcle70H0Bu4PSyW+wFnNNCmRCKRSARpxGHe+AJuhFy/4vj6wEQzmw28XGGJzBsPMwV1X3y5I8BS+Kfhq/Clnn/A/QRzuSIoNjJm7xUZMAHeBm6McuvhxkVwU2dl5u4m+IMeMxsd1/81MCBGQAAWb8AvsQmhpjaz8+M6q1Fsa5xhZtly0VrtA7gvvmfWz3WB58zsvdz7/eJ13hyZtfONaP87uF/jW/joRnZPEolEonS6lSloaJDUcZg31sS9CPvgG0Zl5O2WMPdITqW5cCZws5kdSQWSVpK0OT6t8GHF27WW6BQZMBfF/QkbmdlUSTdVlK+kmjnyLDO7tiLOGqEUXqearTEfR70lSG1ljhyCjzoMiO+T6tSbSCQSHUZXMEemjsO8cTO+Q+W9ksbmjhvwvbARro4LlKrxMC60WgLfl+ECXF70Ab7fxkh8U6xKnpK0hZlNlHQ5kF/hkRkeJ8S0yS74CMas6DSshpsia40WZObI6+W7dn4xd91rJa2A5xYUxVZ0nYckHYnnS1TaGrvPY/uKeBaXZi1lZtPx3UJ/gk+N1KIP8IKZzZa0N8kcmUgkOhFtOeAg6SDgRPwD1Kn4BonX4H+DXwcOyW+f0HCMbRfiwkFsfjWMnHkxhtj/iZsVzwQeq3H+S3hnYTy+KdfU6DQAXIcn7d1dcGqRkTGjhQEz1NljJT2E5138HDif2LuigNHAkmGO/B7e8fgjMF2++dbfaJ52qcWFQP9IbNwdt1c2Ymus1b4WhCXyB8Ct0e5HwyZZjz8BX5F0J5HgKqmRXT8TiUSiyyDfd+l0PJ9ud/xD4HBgZOSgTcETx+eZZI7sREg6HFjTzE4vO5aE8+7Tj5f+CzJndrXd5DuWzmCOXGLVVcsOAYBui/YsO4ROw0dvv1l2CPRYapmyQwBgseVXmu/xgisP+0XDf3MOv+oHVeuTtD++ceJ3c8deAD4fuxJvja/e+9q8xrjQjDjMr8CpvZH0W+BgqgzRS9o4kguR9GZ873ABVHYfJa0ZGu32qqfwZ5NIJBILMt27NTX8VYc1gSZJ10m6V76Z5JK5qYmp5PYMmhcW6hyHziRwMrNv1nn/MWpMgSxodKafTSKRSHQUbZgc2YRPfX8V9/PczdxJ6E3UT0ovZKHsOJQkcBqHJw5uBiyOOwReo0BGVKXs2sBRZrZPQXtWpbZgaTywv5ltG+VPAaaZ2UW5axyCy6JmA+eZ2XWRPPh9PLFmkpl9v4F7eyK+6mQ2cLKZ3S3pvLi3iwGXmNllcW9n4sshD6ClfGpHYAN8p8+rgMnARnguwxHR5ivwn9Vs4Bv4L8E1UXYr4BI8yXMLfF5vZJEUq16bEolEogvyBvCAmc3Ck9OnA7MkLR55davgCZLzzEIzVZFRosAJ4K2QIP0eT0CsJSOqLFuLeoKlkcBi8bAF2A1PxMzav1S0e1tgZ2BICJZOAbaL+FaLObGqSOqLdxq2xKddDpK0GDAlJE0D8OScjLdjfq1IPpVnU3ylyebArmGnHI5vvz0IN04Oi7Ib452d3fEVMKcAXwGyEZ1qUqxEIpEonaamxr/qcDuwnaRukvrgf/vuwJ9ZxPdWjewubCMOZQqcwH9o4KsvvkxtGVFl2VpMpb5g6XfAfpKuBf5nZm/kzl8PeDp6oR8Ae0raAh9luS28DcvgIwK16EfzfXweOAJAUu9YmTET+EyufCZqKpJPDc2Ve97Mpsbx1yKWzYCT4/17ab7fk83sLUkfAf8xs1ejE5RlT1WTYiUSiUTptNVURfztuwG4C5cCHo2PZF8dS+VfxJ9b88zC1nFYk/IETvnrZnNLtWRElWVr0Yhg6Vp8KeKMeJ2nmvzp4Rht+ZSKB3olLa4jaSDudRhoZh/HcFm+jmr156lM568UQDUkf6ojxUokEonSaUv/k5n9Bl8On2fH+b1uw1MVknZTbKEsaZ2Q+XQ1bsbXrZ4iacXccQM2ldQk3yOhnsBpsKQlovyFkhaP9zKB0++rnJupm7fCcyk+lRHhIyGL1ihbi0rBUgupUfgn3gYOwd0KeZ4BJKmXpMVCbvUssF6In5B0hqRV6sTxMLC1pEUkrSjpLxHby9Fp2ANYRC211Zk0Ckm7S6onmcrOyfamGEhjBsilmDcpViKRSHQo3ZqaGv4qLcZGCkk6B08+OzwODcGFPl2OEgVOAGtIuhW/fxdQW0ZUWbYWjQiWAG4AXg3TYr5NM/Ch/rHAODx3YAa+edbfJd2PD+m/VisIM5uCJyeOx3M+LsKnXPqGWGod4CZy9z4okk/V4zQ85+QuYCieo1GTalIs+c6giUQiUTptmOPQfjE2IoCSdJeZbSfp7kjAQ9IDZta/3SPsQtQSOMVKiaPM7MkGrtNw2XmM7ypglJlV69gkKnj3qcdKF0C9+/RLZYcAwNJ9Vy47BF574LmyQwBg3SFF/fKOZdYHM8oOAYAPXqn5eaJDWKpv37JDAGDRpZef78f5H799QcN/c/a75LhSug+NTlVkwc0BkNSd4v0GugQ5idFKkirnf1p7zWvxlRf19lhozbX3KBjen5fzF5P0IDAN3166rjwqk0yVRfyMvlpmDIlEItHRdIURh0aTIx+QdCWwsqTj8fn4ce0WVQcRmfotkhxbycn41tDTi96MZYONxlVZ9ng8M7ZoV8tGrvchvkQSSQe25hodjZmNKjuGRCKR6GgWmN0xzezHka3/Pj6Hf56ZVSbYdTnkWukb8GWUe5jZ1+P4KDz/4F3gbOBj4GXcBdAfOAFfE/t9M3s4d8lukn6NL9l82My+JWllfOOpnvjqgSPM7CVJr0Ydm+G5AwcCK1Ihcor6tgRuCWXod3BhEsAYMzsnEjqvwkeBXozzViyqt+AeDAPeNLMRMQIxIt9xkbQDnvcxE18+ul+teyDpAnzZ6ifAt/HEy2qSq2wq5hQ8oXRp4H/RvhOAN6PMUfiqifWAG8zsjPAvjIzj06PNX8Q3y5qFL/E8C98ptB/wAzMbI+n7+KqabsDfzSzvzkgkEolEHRpNjuwBPGhm/4c/BJaUtGS7Rtax3IYnFHaLaZgBuDzjImBPM9sOt3DtG+U3BHau6DQArItLnPKiojPxjtb2eJJjlvy4MvCHyBNpAnalQORkZtfgnoYv46KpoRHfAGB/SevgD8jzYsez1/DOSLV655XlgCEhgZqGC6IK70F0MlY3s61wYdP+1JZcPWlmR+GdhNsi/jtpuTX2l6LdW+FrkcGnhX4QnZx78A4DuADqYLzT8jM8offbcX7GNnhnbKikpeftdiQSiUT70YZ7VbQbjeY4XA1sGcvxbsAfGle2W1QdTKyKeBR/QPXHV0ssi4ue/hyfjgfjD26Ax614D/PnzWxqLK+cikuH+gPD4hon0ywcmmFmD8brCbitcipwjKTx+OqCSjlRP7wDNys0ohNxDfMmwP3RlhPNbGKNeueV/wKXxYqHwbnrFN2DfBzjzexUmiVX9+Odznwc/yg473wzG1Nx3UfM7H0zey937AvRTnABVL+KuF4Hno3VIW/QLIB6H+9o3I0vFe3d4H1IJBKJdmdBynFY2cxuiPyGX5vZeZLuqHtW1+LPuJq4J945mokvXRyULyRpENVzDYpERTOBfc2s0gneraLcHKqLnDLy0qPsGrOpLnAqqreSfAZv0bLEK4DdzOxpSSMqrl9JURy1JFetFUBVxt2oAGoNPF+kn/meIm26aiWRSCTml66Q49DoiEPPkAt9FV+HDy7TWZC4Cd+rYSBwq5m9A5/uY4GkoyV9sRXXnQjsFdfYTr7JEsDikjaN13khVJHIaTbeoXkU2CoES4vguQSPMrdAaXhMGVSrt5JpNG+tuk3B+8sAL8W0y2BqC5M+lTJJ6idpJLUlV/nzsviPlHRYjToynpS0VbxuVADVB9dQvydpE1yhnQRQiUQiMQ802nEYhyetvW5mz0o6Dk96W2Aws2n4sPq/c0KnbwBXSroXf6haKy49DNgrph9Ox6clAN4CDo5rz8LzLKqJnMbhw+vvAZfG63uBy8zsxbjuN2M6YS18GL5avZX8Gd+bYiw+PVPJSHwa4VJcmHQyVfZwN7PxwNPRpovw3SlrSa4yLgT6x7TK7rQ0WxZxDHB2CKA2pzEh2WPAezFtsj9+v3/VwHmJRCLRIXSFqYqGBFAAkpY1s3fj9VrAKmZ2X3sGtyAj6U0z61N2HInaJAFUM0kA1UwSQDWTBFDNtIUA6qbvjWj4b87u5x9VSvehoRyHyDwfIt+aE3zY/HB8ZUAiscDyyvinyw6BxyfVS1PpGPq9/X7ZIfDYQ+U/pAB6r/NI2SHw7PgXyg4BgKV7L1Z2CGzwuc+VHUKbsSDlOFyHr5E/HM9t2B33CSRaSeVoQ2az7Og45BtbTenoeuuRzJGJRCLROWm047CYmX0beNHMfoAnwO3XfmElFnbMbJSZ/aXsOBKJRKIj6Qo5Do0ux+wZwqdukpY3s7dCPJRoYzKbpZltFv8/CTcdDsPlTpsCqwMHmdkjki7CnQ0P436NIbFLZXa9IXgi4SfAv8JmuTSetAjNLgUkDaDYlNmQudHM3k7myEQikWg9C9JUxdX4Q+QyPGt+Mi4rSnQsPc1sZ3wVwqHx8NwGF1eNiO+V9AJ2MbOtgc/HOQfj1sYdgSdyZauZMhsyNyZzZCKRSMwfC8yIg5ldkr2OZXUr4EvbEh3LvfH9FfxT/XrAhHAk/FPSiwXnvA3cKIkovzywPv6whdisTNKKNJsywUcH3gReJcyNUS67bqW58cf4cstPzZHA+NCVby7pW/joQDVz5Klx3vlRz8a5co3WfzdhjpT0qTlSUpE5chbN5shpBfctkUgkOpwyVdKN0uiqiuXwP8wrmtkhIc95BdcRJ9qWyqU4eZvjXCZEmo2TGbNzr5FvxT0S2MjMpkq6KXduVjYbdaplymzU3JjMkYlEIrGA0+hUxaXAS8Da8f898XnrRNszDVhRUpOklYBauSSTgU2j7Hq4CTHPUsCs6DSshm9+tSgustosygwGaIUps8jcmMyRiUQiMR80NTU1/FUWjXYcljWzi4hPiGZ2A7BEu0W1EBMP8Dvwh+lZuFK6WtlJwLO4XvpYXFs9K/f+W8BYSQ/h9sifA+cD1+Kblt2Jb66VfXqfF1NmC3NjMkcmEonE/NEVchwaMkeGtnh7PIFtu5gPv8nMNm/vABPVkdQT2N/Mro5VL88Aa8XOmYk24N5hvy3dHLncip1jB/v3p1Xb263j+L9L/1B2CADc/teflR0Cz930RP1CHcCqm6xSv1A70+dL/eoX6gAWXabPfD/O7/rxbxr+m7PdWUeW0n1odMThYvwT8Bck/RV4HOhwWVFbUJZoqT2I7aM3jyWbdwOndkSnQdI4SRtIGibpqHas54LQmycSicRCQVcYcWh0VcX1kibgy+E+Ao5sYLvmRAdgZkfXL9U1MbPjyo4hkUgkOpKu4HFodFXFmvimVtfHsrqfSPqlmZUv8m8l7SBa+iGe/Dcb+JuZnS3pEOBEXKY0Hd/1EmADMztBUi/cZbBmFVHTUDzxrw/wBXxly4H4csqDzGyipGNxYRLAGDM7R9KoaNtNknaPdn0T+B2+s2VP4HQzuzUXfw884XUN4EPgUNzVcSmeFNsDOM3M7qpzX5elpcxpWeCaKNIDl0VNlvQc8Ahwe3z/Vdy/CXF/xuHyp33w5ZTCk0WPM7NbJO2Hr5KYBTxsZsdKGhb363MR9ynA14E1gV3xJN8WQqpabUokEomOogv0GxqeqrgSmCmpH55A9ycaS0brqrRGtHQCsDXeuXhHUhOe3DgY2BN/2NeiSNQE7lbYA/gpvqX1V+P1gTGMPxRf6jgA2L+G0XNDoI+ZbQvsjC+NzHMYMDXq/23UOQTfSn0wsBdwQZ02QLHM6bPA8LjOFcB3o+zacfxyfDrsyKh/hVg6mWc1M9sVTwI9MjpdZwM7mNk2wNqSBkfZ3ma2C3A93knJXu9BbSFVIpFIlMqCtKpitpk9hD+0RpjZ33EXwIJKXrS0DDnRkpn9EygSLd2Ar4b4Jv6Je3lgmpm9aWYfE2KkGmSipntoFjUBTDKzOcDrwBNm9gludVwGVyk/aGazIrdhIrBRles/Aywl6Rp86ePoivc3oVneNNrMfo13gvaKT/43AIuHG6IW+eucb2Zj8JGLYyLJ9nu5ts0ws3/F675m9kScd6iZVd7jbAv37GeyLvCcmb2Xez/LkMrEUq/TvColu2fv4Hkh9+MjD3khVSKRSJRKV8hxaLTjsJSkzfEh41sjm3+59gurQ2gz0RKAmX0HVxuvhJsJK8/J7nX+WA+YS9S0f3wSnpgrU1VoFNfK//PJREgt6gjz4pb4EsRdcX14niIJ00zgLDMbFF99zaxean3RdYbjoxDbMvcn/Py16mUSN9r2yrKV5+WFVGn3zUQikZhHGu04nIsPX19qZv/F8wA6x7qo1tNmoiVJS0s6zcyeMbPhwFv4Q2xZSb0lLYInlmb1fjZebxPfq4ma6vEosJWkRaKOLeJYizpCeDTEzO7Dt0SvnDrJS5h2l/QjvAOzVxxbQdLZDcRUJHPqA0yO6Zs9q7TtKUlbxHmXx32uxbNAX0lLxf/PiwSqnpAqkUgkSqGpW7eGv8qioZrN7Doz29jMsjnuH5nZue0YV7vTxqKlacBnJP0jhEQPhnzpdHz04W9xPvi8v2L4//P4NFA1UVN+FKQoril48uI9+PTKZTHEfw1wgqRb8Z0uAV4ADg4501jgFxWXGw0sGVMl38OH8f8ITJf0QLThXupTJHP6DZ4Tc0vUM1DSThXnHQucK+k+4J16ibdmNgP4AT4Cdi/waHSK6tGIkCqRSCRKoStMVdQUQEm6zsz2l/QyBUPJZrZ6ewbXWWgL0VK4I540s1HtFGaiHUgCqGaSAKqZJIBqJgmgmmkLAdQDZ13R8N+c/j/+eindh3rLMR+RdCi+pG2hJXZb3FzSMfgURIeIlhLls8G+m5YdAnM+aZFSUwo9lupVdgjsed+/yw4BgP88NLnsEFh7u3XLDgGAD954t+wQusYaxgWIeh2HDeJreWBj4ME4ZwvgARaija7mV7RkZifMbwySlga2NLPbJZ0E3GNmE9rgupOAffJeirKRb6v9VTM7vexYEolEoqPoCn2gmh0HMzsEQNLvgM9FZj6RkFaZlZ9ofzYBdsI9BOWPlbYjZvYYvilVIpFILDQsMOZIcp0GADObXiDoWeAIc+MuuAVxVeB8M7uyhuVxG+AzuOHwF2Z2uaQdcVHRJ8BoM7sgjIl/B/6Dy7Uuw22OnwBHmNlLkr6PL3/tBvzdzM7Al2wuLelZ3LFwA3AbFcZHM3s114aN4ryP8WmWfc3s7TBhfglP9Fw0yq5cJZbngTG44OpdYDd8Jcgo3ArZAzgmDJuHxL2ZDZxnZtcVtSUMj2sDawGD8JU7W0S938ZXPxxlZvvMY/2Tgb/i4qlbos4dgVvM7CRJOwBn4ktB3wH2a2CJaSKRSHQI3bp1/o5Do+s5npZ0v6RfSDonMu+fa8/AOhFfwI2D2+Gq7W5UtzxuiC/x2ws4OpYf/gr3JmwN7CBpcfxBd4uZnYU/xM4zs+1xM2M+w38b3L0wNKYpfgFcZ2aX5soUGR/zrAAcHdbG+4GDJK2Pdzz646s4FGWrxbI2cLWZbYX7O76Ir4J4MK57HHB+jESdDmR2yiE12gKwaBgmBwOrx/V/hG95naeh+qPsWvgqji3wDsz1Ue/X4/3l8GWpA/FlqzuTSCQSCyiSFpf0b/kGj6vJNym8V9IfI/F/nml0k6vD45PzhrhE52f4J92FgXsiEfJNSe/gn4QzyyPMbXmcYGafSMrshp8BPgz3BfjyROK8zG7Y3w/pFKA7kJV9H19mOSvqrFREZ2yCL/HEzCptkODGxHMkLQGsjFst1wcmhsvgZUlZxlm1WKZlVkeazY2b4ctYMbNJ8katBzxtZh8AH+DOhlptye5B3jY5HhgvaVCuDY3Wn5V9Bm/Ie/geFrOiw0e06bLwXqwN1Nx7I5FIJDqSdpipOAV3C4HL+Eaa7zv1c/wD1a/n9YKNTlVgZmPx9f8LG/lRmcwiORLYKIRN+Q2SKi2FRRbFjJm57/tabrfRmAY6HuhnZu9JerJGfLXqAPcqnGNmt0o6AR8taWJu+2V2fotYgsoVJEXmxsJY6rRlZrXzWll/izSrSGIAACAASURBVLIFq1+uAHYzs6cljahRZyKRSHQ4bZnjIOnz+AfFm+PQIHwqGOBG/G/zPHccylNPdR22ktRdUh/C8EiDlscQO3WXtEpYJ2+S7x6ZJ29n3C7yJ/oA/4kH7SZ4/sKi+MO+cmipyPiYJ7M29sSnTBYFjGYT5hr48H61WKrxED7FgKQtgSdxv4Uk9ZK0mKSxNdpS7Vr9JI2sUW+t+hthGeCl+DkMLoglkUgkyqPbPHzV51y8c5CxpJl9FK+n0mwYnucQE7WZgs+T3wX8uBWWx+/iSYwPAHeaWeWi52H4RlLj43oT8NUE78k3Ytofn7P/Fb719D4xcpBRZHzMczGeWHh9vD4U/6T+z6jrTJpXLxTFUo0L8c7HXfjU1bFhczwNH5kaB1xeoy2fEtMTT4cB8iLgkhr1Vq2/gXPAR4vux42bPwdOltSqX55EIpFoa9pqd8xwME0wsxdyh/Nyqcr9lBqPsZY5cmEnVkps0BYOhkTXZOa0t0r/Bfl4WicQ7ABNPWoa0DuERRZbouwQnE6wZO4fF4wpOwQAvnTcXmWHwKwPZpQdAgBLrLj6fP/DeOT8qxv+m7PJ9w6tWp+k6/A8rk/wVYEf4Z2FL5jZB5IG4onz+8xrjJ1mxCEyPTdoh+u+2dbXbAsk7aH6W1S3RT0jJY2XNEZS+X/5W0n2c5R0gaS16pVPJBKJrkhbjTiY2f5mtrmZbYkvsz8T35/pa1Hka8CtrYmx4eTIhZF23lfieHz6o90cApGXITPbNhIBN8SnO7osZnZc2TEkEolEe9HOg1mnA1dLOhJ4kVbanzu841BNqhRv7yfpQnx54x4hHzoLGIAvDxxhZtdKWhXPjs8SBr9hZi9IOhEXDc0GTjazu6PO4bhx8S3gK/g8fF4+9FPcs7BI1HGNfHfHu3F50Gz8Bg/Fh322x1cnjKKOACna8lkzOzViuQPfZXJL4BZJ2+PbXB8Q92CMmZ0jaRQuiNoUX9Z5DnA4nmw4EJ+b+gOwJLAEPuSULW/M+BCYLWlt3H3wbMX7RDsfwpM8Fwf2A16L9q4a1x9mZjdF2SwJ8Wf4LpxE+w8zs8mSfggciCdgLoLnVTxfpWyR2GllPB9jJt4b3tnMBlXEexTwcpX7nwRQiUSi69IOPQczG5b73x3n93plTVUUSZXAs++3x//g7y1pALCGmW0bZU8JgdJw4PJ4oPwKGCapL95p2BI4GDgortkbuCGGa3rjD1Bolg9tjecxbB11DAuREcDrZrYN3mnpHeW745/cGxUgjaZ5pcIycZ0z8IzWLwOr4B2SAfG1v6R1ov5ZcT/+CfQ3sx3i9WBgJXwb7cHAycAPC+7zYsC6+MN7KC2XNWa8Fdf5PZ5g2RvXWg/EOxJn5Mo+aWZH4dm4w+O8K4DvSuqNP9S3wjtP2T/QFmXjeJHY6XvAH6Pu5arEC0kAlUgkEqVQVsfhHjObZWZv4p/6+sTx++L7q/iyuf7AlvEp8zY83s/in47HRdl7gX7xNdHMZpvZ82Z2RLyflwdl14Vm+dBmuJyIWBXwLNC3oszrwKPx+g2aBUTj4rxJuH3xUwGSmb1rZnua2dvAc7EUcVf8QZanH/4AnBXOgYnARg3U/wbwNUn34aMRy5MjhE+3A78DXjWzfwNXSVqJltwR3ydEO94BNo+VEFdVXDuLaSpwTKzA+F6U+RzwRLT/DXwko1pZKBY7rUfzv4O/FcSaUXT/s2s+Y65IzwRQH9D8bz0TQN2Dd8Dmum+JRCJRJt26NzX8VVqMnaDe/JKQSoHSTGJkIb7WiwdgXv7TDZ8WqCYRKpIHQXNuQaVIKLte5bmVsTUkQAquBvbFp0murXivtfUfh3cItsGnOirZCRhvZqcAK0jaE1jGzKYWlM1izto1BB91GAB8taJsdt+GA7fFaNAZFednzK5RtrJN2fn5a9TaT3p+BFBHxYjDjTWun0gkEh1OWyVHtidldRwqpUpvVSk3EfiKpG4hFLo4jn8q/8Hn+ycBDwNbS1pE0oqS/tJgLA/heQ5I6gWsQ2P7cDQkQJLvV/F3fPpiWWveujqTOT2K349FQoO8Bc2jC7XoA0yO11+lpcjoPTxHAeBo4Dp8KqKIbeL7VvimV32AF0JJvXfBtT+tP9q3Z5SZAmwgqYekz+CjAtXKVmNy7rwv1yiXBFCJRGKBo6mp8a+yKKvjMIW5pUqFnyzN7AE8QXECMB7vHIAnNx4a8p+hwOnxQL4myo3BRUJ1MbP7gIdjGH0scFJMWdSjIQGSmc2J5LunmXvofRw+RfIeLiO6B592uczMXmyg/quB4yXdjnewVpJ0eO79O4G3JT0A/Ak3iB1TRbO8hqRb8ZGGC6L8VyTdCcwAXpF0asU5v8Hv8S14HsdAfIrlD//f3pnH2Tnfe/w9ia3EvnMtVeknYquliliCWEv1Wmsp0dpru7aW9irupVVVUqKolqJqiZbWkkpVIrQiRauUL3LRloRaQ4ksk/vH93syT07OOfPMZGbOJPm+X6/zmjPP8lueOXOe3/Nb3l98OGNY/Jxe61hJu9Sp1zDgmJhE2kL9eRkpgEqSJGkCPS6AWhClSpIWwxsFQ8zsvWaXp0hllYKZlX1iby+9oXjjYTo+kXMXK4T5LnH++njPzCOSDgIGm9kxXVG2zpACqDZSAFUgBVCzSAFUG10hgHr6ql+U/s7Z4NiDmvJBTI9DNxPd6FcDF/e2RkM3sQreA/Ix8POONBqCD4CrJc3Eh3OOaOf4bqV12rRmZg9AS9/e8W867Z3mN2CmTKk1Rafn6bfOp9o/qJvZ5Ks7tH9QDzD13XeaXQQWXnLJ9g+aR2jp0/xGaXukcroXImk/MxvRYP9GeLjuObwMncxvBO6vGN0V6XUFsfrjvGb2NgBMeWtS0/9BWqd+3P5BPcC095rf7p0xZUqziwD0jobDtPeb//cAmDmj0RzmnqG3NBwWXXblub7r/+3aW0t/5ww88sCmtDJ6jXI6mY1vtLN/H9zPMN9iZpOa3WhIkiRJ5qR39IHO49SzYUp6AV9R8QbuQ5jNdom7C27C3RSL4vKoDYGNJf0Sly/NZnDENaHHAv+S9EacdyEwDbcpHlU0IYZls5a18UzcVvk8vvSSEFhdh0uSFsJtlE+F4fFqfDnporiVcQo+wXCd2HaOmd0vaecozwzgFjO7TB6e+6TY9oyZHR3XbHfcFPklXNg1y/oJvISLuzbvYP4TgB9HWi/iE2r3B14ws0MkbYxPkJwWee0fro0kSZKm0wumz7RL9jh0HbVsmAvjquMLqGG7xBsJK4TfYFfcKnkx8J6Z7UMNg6OZ/RVXMZ8ViukfAnub2Y64FGr/qnLVMjwug9sbtwaOAirBxU4BRoat8jh8JQZ4I+K5KOdLuHL7IHy4ZHu8B2R4LLe8EhddDQKGhOmzH7Bb2DkHSNow0l0TX6a6OLWtnxVK5R/H9sXjcXw2yvCymW0BbBv1XglvEO2Ar66ozitJkqRptPRpKf1qFtnj0HWMCdnQm5KKNsyiofKseD8WX7b5HLCkpBuBX+FLFYtUDI5H40/H1XbIlXHL5S8lgfdKVEcDnQT8UNJ5eE/C47jh8RkzmwJMkVRZ5ro1sKKkQ+P34hT2sfGzYnjcjDZz42uSpuMxNaaY2b/i2D2jnG8Dd0UZ1yvUY7yZzZQ0y/qJ9xIcKWntqnq0m38orwEei3Rfp82J8QZtxs2Lwqy5GvXdFkmSJD1OM8VOZcmGQ9dRz4ZZy1DZB2g1sw9j1cXWuI9iT9piKsDsBsflcNFVkam4PXJwg3JVrI1XSdov8mhhditjpexT8afxP9ZIpz1zZh9qmDPlocOHAxub2SRJd1eVn1rndTL/MsbNYcBFZjZS0ul4b0iSJEnvoPe3G3Koogtpz4Y5h+0y4lccHBKq44CBsb+yYL6ewbEVWNTM3gGQNDB+nhgrLorUsjZOANYLw+NS+NM7+DLKSkCugZJObVDforlxDbwh9BbQV9LqklqikbAkHqxrUhy3OXPaGjtj/ayVf5n1gpXrsSg+pJLmyCRJeg2pnF6weJnGNsw5bJf4eP2hksbitsmL49g/SXqM+gbHsXg0zp3wSZbXRRrb4OGsi9QyPG6OT7p8FPgJbcGoLgfWjbSuxS2c9bgFbyQ8GO8rKyCOB0YAfwAeiMbEKEnjo87fwyNZzrIJddL6WS//9rg88rg93h8WEyaTJEmazrzQcEiPQxewINowFxR6gzlyyusTm10EAFqn1bN/9xz26zJhXLqfTY7/QrOLwLvP/K3ZRQCg39prNrsILLRE7xhxXGSp5ef6bv7Cz+8o/Z3T/5B90xyZJEmSJAsyOTlyAcHMrm92GZIkSZKkJ8iGQ9JjSFoTF17NwD97h+IrLpbAl36eaGaPVYmzbsLnY/TF5VeH426KapnWTHyexAQ8PPhVwEZ4mPLhZja8loiqB6qdJElSmnkhVkVOjkx6kv2AUSFfOhlYCw8jvgPuuPh6HFcUZ10A/MDMtgVewyd21pJpAXwGOA1fcnoR8C3cNnlU7K8nokqSJOkVzAsCqGw4JD3J/fgqhktwTfRfgH0lPYzf6IuCq4o4a1Pc8IiZnWlm4/DGw+jYPxbYJN5PiFUcE4E3IjLn67j4CaAiohrD7CKqJEmS3kFLS/lXk8iGQ9JjmNnTwMb4zf47uOL6VTPbBvdYFGkkh5pDphXv64qfCiKqA0NTPW4uqpIkSbLAkg2HpMeQ9CV82eqd+DDCCvicBID/pLaMaTwe/wNJ50saQg2ZVonsy4iokiRJmso80OGQDYekR3keuCIkWN8GbgNOlXQ/3gOwiqQjqs75NnBUDC98EniQ2jKthtQTUUlauPGZSZIkPUcKoJJkHicFUG2kAKqNFEC1kQKoNrpCAPXKnXeX/s5Z64t7pgAqSXobY79ze7OLwP/e+dtmFwGAq89qfgTyAV/crP2DFhBGDHu42UUAYIvNVmt2EdjomD2bXYQFihyq6EIkDZX0/aptu0mqnvjXFXnt29VpNgtJgyWNaHY5kiRJmk5LB15NInscuhkzG9nVaUpaGzgID4KVJEmSzCekcno+po4Fsbj/O0RES2AD4ArcgDgBX5L4pJkdWXXOzsCFkeYtZnaZpJfxlQgfRG/G08D+wBaSzsENijdGEgsDh5vZBEkv4lEgBwHvAp/HDY3XActGmU80s6ckDY58p0V5v4I3TDYws9Ml9QOeNrO1JX0dD/HdCvzGzC4slH9t2rc3blvI6x+0yZkqaZyGi6L6APea2XmSzsVdDAI+BZxiZvdJOgA4FV96+biZnRzHrgCsC6yDr974CrA2Hkb77/F3+I+4Huea2d0kSZL0AtIcOX9TbUFctbJD0n7Ammb2v1XnbAacDXwW2EPSMoVzWnAL4h74zX6IpE/UyftiYIyZnR/5nh/l+Cke1hr8pnmDmW2FNxQ2wr0JI81sJ9ybcEkcexVtfoN3gIMb1Pv0KN/WcWw17dkbfwjsbWY74nKm/WuksQ2wJTBU0lKxbQ0z2wO/1sdEY+ZCYEh4INaRVFmiuZyZ7YaHzj688P4LwHLA/VHXA4DzGtQ1SZKkR2np06f0q1lkj0PnuR/4Vdz8R5jZHyUNANbHn8gH1jjnRTObBCDpNfwp+t3YtyIwxcz+Fb/vGce1V45JwA8lnYc3EB6P7ZPN7Kl4/8/Ia2tgRUmV3pHFJS0HzDSzf8S2sXjD4Ik6+Y0AfgfcDPy8xv4JZvaWpI8Je2Pc5JeWtDLQH/hl1GsJ4E3g1cL5HwJj8F6EFfAbPUBlJlilLp8GXjCzDwr7KwbJinVyIi6LAm+kLI83dj4r6Wi81yTtkUmSJB0gexw6SbUFUdJhsWtt4Bm8R6Ka6vVsxT6pWoZEaLvxgQ9FVHM+8Fsz247Zn55r5TUVH54YHK8tmN3CCG0mxpr5mtlxwLHAKsAYSdWNz7r2xsj/1UL+nzWz71UOkLQWPvSwW8SheKVBWvXK3V4ZDsYbI9vi0qkkSZLewzwwOTIbDp2khgVx89h1Dz6m/q14wi5FCIr6SlpdUouku6M3YzKwqqS+ePc9+A1y0Xi/AjAhhjr2prENcRzwxSj/QEmnmtk7wMyYswFtJsbJtA2/bBPnLCXpHDN7LoZJ3gKWoiSRF5IGxs8TJW1UOGQFvJfiA0mb4kGw6tXneaC/pCWryt0eKwAvmVkr3jOU9sgkSXoNGeRq/qbagvijyo4Ybji3uK0kx+NDAX8AHjCzd/FJlb8Bfon3ZAA8C2ws6VLganzewH3ALcD2knapk/7lwLqSxgLXAg/F9qOAmyWNxm+ktwAPAIptA4BWM5uMD3U8FvV+1Mze7mAdvwpcF2XYBrDCvj8DH0h6BDgw6nZlrUTM7N/AGcDISOtJMyuzsP0OYC9JDxCTVyX9dwfrkCRJ0j3MA87pNEcmSQNe/tVvmv4P8sqTvcMc+d57Hze7CHw0pfn2SoB11fypMZP++X6ziwDAjBmt7R/UzexyTq051j3PYsuvMtd389dGjSr9nbPazjs3zE/S9/Bh2YXwwILj8ZVvffE5YF82sw7/Y2ePQzfQU3ImSWtLKtM93yiNfrHks1cRMq2cg5AkyYJFn5byrwbEKrMNYmXdbsBl+Jy44Wa2LfAyPqze8SJ25qSkPgU5UzIXmNn1ZvarZpcjSZKkJ+nCIFcP0bbc/R18Fdtg4Nex7S5gSGfKmMsx54I6EqjhtMmZhgHXA8vgKxNOMrMnJE3A/3hD8LkJfYCdgfvM7BsROvp/8FUI7wAHmNlUSZfhMqUZ+MqGD4A+kn4EbIFLkI6uKuPBwElxzjNmdnS4ESrWyccKx9aSM20NnIBPyFwPX3p6nqQNo66twPu4L+HtGmV8jhrCpZg78XRk/S18aedSwHvAl3BfxJtxTKn8cVfFyfhKik2BC/CW9ibAGWZ2Zy3BVO2/bpIkSRPooqkLZjYDn8cFcCRwL7BrYWhiEgX/UEfIHoe5o5YEqihnOhmfQLgDLl+6NM77JD7x73P4Tf12fMVEpdtoWeDgkBRNBnaNxsSa0e10Nj55ENxncB41pFJBP3x54yBgQNxwD8VNkDsDTxWOrSdn2gIPX70VcGJsG4bfjAfj3oWT65SxkXDpaTM7AW8k/Da6zx5gzlZwqfxj+2eifscC3wWOiPdDC+nVEkwlSZI0na4Oqy1pb3xS+gnMvsy+per30mTDYe64HzhM0iXAomb2aNX+zYHRAGb2J1yZDC5nes7MPsR7DR43s49o+3v8C7hW0hhgB1xStCnwSKT1kJlVVgK8aGaTYnnhJFyOVORt4K5Ia71IayC+coNK+arkTKMj39XjmCfM7MOCbAlgfTMbF+/H4k/1tcpYES49gvc8FGeVVXo7iuddGktci5TNH+Av0aKeCDwfqy9eL1yXimDqQWYXTCVJksxXSNoV+Cawu5m9B/y7YCReHf+e7DDZcJgLGkigKlRLiirMNjXczKqniv8UOCGe0u+KbfUEUXWlUpIWwbvzKzrpcYVjKlOhK2k2kjPVmspebKlW5Eu1ythIuDS1nbpVKJt/9bGzyZ/aEUwlSZI0n66bHLk03gO+Z2HZ/O+AyuT9fYFOBWHMhsNcUEcCVZQzjcef3JG0JW1j+u2xNPD3GHbYAXcrFNPaRNLwEuksCUw3s0mS1ojyLYK7EyrCqh2glJypmqclbRXvK/KlWmUsI1waD+wY5x0j6fASdauVf3t0RDCVJEnS43RhrIoD8e+82ySNjp7kC4DDw32zHN4L3GFycuTc8TxwlaQP8Kfmk/AJfRU50zm47Oj3eCPtayXTHY533T8PfA+XSW0NPBt/cGgLZlWXiBkxStJ44C+R1qX4zNrbQoL0MG1P7xU501TgNeAafF5BLU4ChkuaiQ9HHGFmkyXtXVXG94FfR8Ppp9QWLg0DbogP9vt4L8Vp7VRvjvzxIY9GFAVTD9MmmOrUzOIkSZKupqvCapvZNfh3eDU7z23aKYBKkgZMnfxW/oP0Ima2zmh2EQBo6dO32UVIeiGLLLX8XN/133jkodLfOSsN2q4p+sjscUiSJEmS3kITY1CUJec4dCGdMUZK2k7SSvH+rvaOrzp3sKQRHc2ztyHpXEkn1KuPpFqRRpMkSeY7uno5ZneQDYcuYi6MkV8BVgIws727skzzA5IWxldCJEmSzPe09O1T+tUscqii6ygaIy8FrsNFTgsBJ5rZU5K+jq8saMUjXo7Hw1yvH70VT5jZCpI2wSfttQJ/NLPTY+LgCWb2tKQT8NmyoyuZ1zIiSjoXWAcXTg0OkxiS/gOXTk3Fl+PsamaDJe2DT0qcDvzJzE6TNBTYHVgN+AYuVZqAT5q8Crc1fg73n8+20kPSmVGmVuAsM3tQ0vHAIbHtTjO7pJ3rehmwoaQrce/DBnE9+uECqbXDxPnjyOtF4HFcXvWCmR0S9f0pvoKiFZ8EOhO3fn4AXGFmd7dTjiRJkoTscehKisbIU4CRZrYTcBxQuTmeDgzCV0i8Y2aj8Jn+R5jZ3wtpXQ4cE7bHlcI/UIZaRsRFzGzbSqMh+C/gtnA7LAse7ApfUrpjbF9D0qA4fk1gO+BV3Mx4GrAncFGcsxeup56FpP74jXxL3OR4iKRP4jf0bSK9fUPb3YiLATOzRqtI+gJP4PbMQcDLZrYFsG0saT0f+Em4G67EV6mAS6MOyUZDkiS9hnkgrHY2HLqHrYFjo5fgStqshSNwAcdReGyGevQ3s6cAzOwwMysjKqpnRHysxrHr4csRwXs+ANbHGwi/jXL3xz0HAOPNrDLTd4KZvYUbx94ws1eZ3cxYYRNgnJm1mtmLZnYkro7uH2V8EPdMrF2ibmV4LMr4OvBkbHsjyjXL4MnslslKXZIkSXoF88Ichxyq6B6m4sMTfyxuNLPjJA3AYzaMkfTZOufXWo5T3LZwcUfBiLhJyI2KoqmpzEnRUd5aOO5xM9u1Ku2hVWnUNTNW5VHLBjkVuMfMjqnKY8caZaxF3WvQTrmKBs+iZbLWtUmSJGkeTWwQlCV7HLqOojFyHD53AUkDJZ0qaSlJ50SMivOBt/BokMXzKvxN0ufi/J9IWg8PdlWJZDao6viOGhEn0GaO3D1+GrBeYYXHeZJWr3VySR4HBklaSNLKkn4V23aQtLikFknDCt70ehSvT/EabNOBsswyWlLeMpkkSdLjtPRpKf1qFtlw6Dqepc0YeTmwbhgUrwUeMrPJwIqSHguT5KPhDx8D3Cpp/UJaJwOXSHoYnwvxLG4AGy7pHtzqWKRoRDyQNiNiPYYBx0j6Hf4kPj0Cbp0C3BvpLF8jn9KY2cvAjXhM+DuBH8Y8jsti26PApAju1YiJQF9Jt+ORMxVDKQNo6zloj3PwYGS/x6NkfrtDlUmSJOkp5oE5DmmOXACJRsoyZvaIpIPwFRfHtHfegkiaI9v48NV/NrsILLLcss0uAgALfWKJZhchKTD9o383uwgALL7ymnN9N3/7qT+V/s5ZbqPN0xyZ9BgfAFdHnIdWPM5DtxFLTZckllJ2Z15JkiTzMs2c9FiWbDgsgMQqjY7MEeg0BTFWLnlMkiRpj3lAOZ0Nh6S7GY4vw3wKWE3SHcBA3M8wCTjIzL4MIOla4Ne4QKszQqcbaSCnknQwHlVzBvCMmR3d/dVPkiSZv8jJkUl3czE+AfTvuMXyAHzFyUnAb4HPSVpMUgvuvxhJ54VO7cmp+gG7hVhrgKQNu6/aSZIkHaelpU/pV7PIhkPSkzwaBstXgaXj/d3AHrhhcqyZVdwKcyN0qienehu4S9IYXIK1fLfUMkmSpJO09OlT+tUssuGQ9CS1hFE34MMQXwBurnNsWaFT3XMkLYIPmxwYSu1xnalAkiRJt9KnpfyrWUVsWs7JgkItwdUszOzPwOr4PIiHSqbZGaHTkrivYpKkNfBei0aSrCRJkqQG2XBIuptngY3xCY/1uB+Pxll2/XKHhU4xhDFK0vg4/nvApRG2O0mSpFcwL8SqSAFU0lRiUuQo4Fgze7HZ5almyluT8h+kwsyyos7uo8/CvaSTqBestW+d+nGziwDA9A8/bHYRWGSZ3iEGW2Sp5ef6gzH5xWdKf+cste76TfkgZo/DfEbIlpA0VNL3uyjNVSRdXWP79yMIVmfTXRsfZhhVq9Eg6ZYSsSySJEnmG1r69i39ahbpcZiPKMiW7ujKdM1sEtDlSuqIZ7FZg/1f6uo8kyRJkrkjGw7zF8OBLSSdg3sTygqXLgHuxZc7/ozacqURZra5pEOBM4EX8JUNxRDelRDfP8NdDK8AhwMbRNmmRZr745FBb8L111cAHwMX4nKmW8zsMkkvx7lX4AG3NgPWBA4xsycknQxUGhd3mtlFkq6PemwGrIj7HI7AI4huH3W5GVgCWBwPf/5YZy52kiRJl9MLhsHaI4cq5i8uBsZE2G4oL1xaGLjPzC6gvlypMh/hQmAIfsNet0YZLgB+YGbb4jf7zYGV8Bv0DsAjwCFx7Cbx/p7Iaw9c+DSkxhDFoma2Kx7Z8zBJn8QnRm4brwMlfSqOnW5mOwF/BbY2syHxfgdgFeDaKMtZwNfbuaZJkiQ9xrwwOTIbDvM3HRIuxc96ciVwYdL7ZvaGmU3DGwHVbFrZbmZnmtk4XMJ0YYiXDqJNvFQRNq0ITDGzf5nZDDPbs0a47bHx85+40GmTqN90M5uOexk2rqrLRNrkURUR1OvAvhGy/CJSApUkSW+ipU/5V5PIhsP8TUeES5UGRD25UiWN4u+1Pj8zamwfBgwL8VJxkuXUBudU00gCVV3WRvKoU4BXzWwb4Lh28kySJOlRWvq0lH41i2w4zF80lC1BKeFSI7nSW8DSkpYJ/8GgOufvCCDpfElD8PkFEyQtivd2zLamLnod+kpaXVKLpLsjJkUjngS2krSQpIXwYFZPtnMOlbLE+/+sLkuSJElTaWkp/2oS2XCYv3gW2FhSI9kSNBYu1ZUrmVkrPudhDDCCqomRwbeBo2JY4pPAg8DlYOHGGQAADlRJREFUwJ3A7fH+MNriR1Q4PtL8A/CAmb3bqAKxIuOaKMtYfN7CK43OCW4ATpV0Pz68sYqkI0qclyRJ0u3MC3McUgC1gNHbhUu9jRRAFUgBVBu9YOZ7CqDamJ8EUB9OfKX0d87iq67VlA9iLsdcgAjPwx3AbdloKMcWmx7Y7CIkBa4YemiziwDACdff1OwiJAUee+LWZheh62ji3IWy9OhQhaTtJK1U8tiatsIFAUn9wmHQ1bwNnGVmF1Xlt5ukuhMFJX1D0lY9VMZSZUqSJEmaQ0/3OHwF+D4u6GlId9kKF3A2BXbB5zjMwsxGNjrJzL7bnYWqk2fDMiVJksyPNHPuQlm6peEQ8Qs2MLPTJfXDJ9EdhYuI1o94CpsDp+HL5f5kZqfFebsDqwHfwJfwbS7pRXwZ3174qoEhwIf45Lh1cIHROWb2+6pyfBkXH7XiUqJbJR0AnBr5Pm5mJ0s6N9L5JD7573TcZLgWbky8QNJo4AQze1rSCfjs/EuB26JMiwJfM7MnCvkvCVwHLItf6xPN7Kk69WmhTRX9WCGNwbh0aRruMPgK7kLYPsqwPvDN2DYQtyqOk3Q8Lldqxa2Kl+D2xqUkPY/Ln6biHoPfFP5e9WyMI/BVGHOUseqanwnsF/meZWYPSvoBvopjMeAqM7s20qzk/yXcNrkWMAWfPLkzbdbIn+ErITYGnjSzIyX9B7UNlzfGsVsBVwEb4SsuhpvZcEkH45+JGcAzZnZ0rXokSZI0g5Y+zYtBUZYeG6ows1HAn3H979vAt4AdY23/GpIqS/vWBLbDpUUVFgKeM7PtgJeAnYCDgYlhAPwicFkxv7hpfzvS2hU4OBoxFwJDYh3/OpIqSw8XCdvhDLxRcyh+8zlKUj1J0E7AP8OyeAiwctX+U4CRYTE8Dlc716vPocDTZrYz8FQhjauAA+M6vRP1BuiPuxi+gxsQ/zPeHxRWxf2BbaL++0paEzdL3mpm10Qab5vZvoVr1sjGSIMyVs7vjzcatoxjD5G0GPByXO9tcTNlhUr+hwOTzGwQ8OOoV5HNgLOBzwJ7xFLNeobLz+AN0j1xwdO38AbaUbG/H7Bb5DVA0obV9UiSJGkaKYCqy/p4A+G38STfH3/aBBhfZ5lgtTlwa+CLcf4I4BOSilOu1wOeNbOPzOxdM9sb+DTwgpl9EMc8TJsZsfgEPc7MPjCzKXhvSfHmWeSPuEvgKmBdM7uvav/WwLFRxiuZfQlidX0G4ksRIcyNkpYDZprZPwrnVMpbWU45EXgqrJAVO+IW+DV9MF5LAmvXKH91r0EjGyO1yljj/HFm1mpmL5rZkXENl5P0B+A+3BJZnX/RNnmLmf2oKt0XzWxSLAd9LepYz3BZsVFOBN4ws1cL1wW80XpXLBddjzRHJkmSdIjumuNQvPEvXGP/VHyYYNfixhiqmFrjeJjTADgVuMDMflHn+Fo2wka2walV24t5zaRGncxsoqSNcWHScZK2LMSJqKR5opn9sUR9ilbGSv6dtSNOBe4xs9nmiEhap6oM1de6UX6VtKvLWGSOay5pe1wItb2ZTZP0fo382zNHTq/6vdocWeq6RMNyOLCxmU2SdHeDPJMkSXqcrjRChtNnS/z78mQzG98V6XZXj8NkYNV4v01he8VsaMB6lRUWks6TtHoH8xiHD1EgaSVJF1btf853qV8EdRoFPA/0j2EMmNOMWGFTSYtHN/tAPBJksU6DIt8h+LDH/cCJ+FNwvTIOlHRqg/pY4fwdAMzsHWBmDDM0Km81jwM7RB1aJA2LoFHtmSXbszHOUcYa+Q6K81eW9Ct8HsY/otHwBWChqp4hmN02uaeks0vUsZHhsh5L4gGwJklaI+rSS8QASZIkdJk5Mh7a+pvZVsCR+HyxLqG7Gg4P4Dft0cAA2p4GxwC34pMQTwHulfQI3l38WgfzuA14P7rAf0Nb1z8AZvZv3II4Cu/S/klsOwMYKWksPtHu4Rpp/w2fePcHfDLfu/hEzOGS7imU9UXgm1HPG/A5BEUuB9aNvK6ltuK5wg3AlpIeAERbD8dRwM2RxyLALQ3SqNT97/icj4eAR/H5Ax8BTwD7STq9znkv09jGWK+MxfNvjHzvBH4I/A5vrI3Bh3zuBqqHIm4Blohj/gufDNkedQ2X9YghjFGSxsfx3wMuleuzkyRJmk5Ln76lX+2wE/49jJn9DVhW0lJdUsY0R85OrGI4wcz2a3ZZkiRJkqQzSLoGH7K+K34fC3zVzJ6f27QzVkWSJEmSzH9Uj2VU5obNNamcrsLMRlN7xUCSJEmSzCu8CqxS+H01YFJXJJw9DkmSJEky/3E/7tVB0ibAa2b2fuNTypFzHJIkSZJkPkTSd3EJYCtuNv5LV6SbDYckSZIkSUqTQxVJkiRJkpQmGw5JkiRJkpQmV1UkSTtIWhv4K27GnIlH+TwDWBf4HzwaJ8ASuGjsqjivPy7iWhHoiwvFTjezj2P/6sDfgX0qa61j+/bA7cBXzKy0Fjsif/4MWNXM3oyor2+a2RVVx72MR0P9IAKb3QN83sxe6k3XIuylP6EtAu7pdYRtSLoED4a2SuQ9AY9LshcRBwX4BHCdmV0VEXovwmPFAIyKKLhfwIPGTQXeAL4c8VYaXZOadcNNq//Ax5f7AteY2Q1xzka4/ryVtuB1O8S1rLApMMDMXotzdsWD5pVyElf9rcCtsX/FA+5NiLLNKJxyPvB5alxHM9unTJ6FfF8CtjKzRwvb/4TH/iHyeKtw2q/N7Afx2fx+5TMbaZ1rZkMl9QEuAI40s2LMmzJlehQ4vip68XeArwFnF/9HKv8fuFk2nT41yIZDkpTDIhInkrYD/hv4BR5t9PTYvijwpKSR+JfyHXiskjGSWnCT5jl4GHTwUOgvxM/KzfJTeNj3mjfIdjgY/6LfD4+q2pBQr9+OfxG322go0CPXAvgy8G8z21bS+niI+i3qFOi0yHcoESI+fn+zUNZFgSck3YdHSb3CzC6rSupkPHrqe5KuA/YBbq53IST1bVA3gN2jgbYUcJOkaRFf53LgNDN7TNLFwFAzuxJvxCFpXfwGWmk0LIY3aCbWK0sdZv2tIp3raYuwu3sh4F+F38dxQylcx07wf/jf8tFIb11gmcL+s+o0il8HjpH0sxorAL6Bf5Y6E8zhZuBA3J5bYV9KmHiTOcmhiiTpOCsze9h3AOLp+a/4E/LOeOj0MbFvJnAms4cVPxg4ARgiaYnYNhG/WU3uSIEikuoWeEjxL5U4pQ9wE/ADM/tDewc3oDuvxU14IwrgX8xlJNOqMi1Z55idotGwEP7UPUfdqihTN8xsMh7PpqJG38vMKtFha9XtXOC8wu9n4z0U9YIAlmUcHjm3u3kU2DkaVuCfyftLnPcRrqQ/o8a+y6Nx1Rluxf+vAJC0Gd7b1NFQBwnZcEiSskjS6Ojy/AHw/RoHrIzfvJ/GY7T8ubg/QrxXuuYFLG1mv8OFY1+IYz6MEOkd5QA8ZstI4NMlgsZdACxmZnWfphvQU9diWmGY4BQaPPmXLPRywGfwxkM/YB9J90saJY9yWzluKP7EPKHSIGhAw7pVbX8FWEnSQtGQIBpJhwEjCvmvBqxsZk/G75/GI7re3tE6F4mYLHsz+1N3dzENb6RUAtHtDdxb8txrgL0kFeVFzI2DwMxeB16SVOmxOoC2z9PJ8XkeHTGBVqmVRtJGNhySpBxmZoPNbEv8KfNWfKjvwMJNdBxwkpm9Eec0ikJzCN69D/4FVqaXoBEHA7+IRscI/IuxEVOAfpL26ERePXotJH0NH+8/n46zdOGGMAI4w8zexLvkv21mu0S6NxYqdz3eK7FszBtpj3ajDVUd2wqzGg2/xockni0cczjw88Lvl9LW89JRVKj/68CDZnZn7LuveMOUR9DtSm4HDophpleB4rDId6ry3qqyw8ymAxfivS5dSWW4Arxxeke8Hxaf58ExrNMldsX5mZzjkCQdxMyek/QRPrHsVjM7Pb50H6ctDPmzeNf7LGKMvb+ZPY3fHFsl7YnfTNaRtExEYu0Q8hDhWwCXSJoJLA68S+MnvPOAlfBooX+ujKV3lO6+FpK+ik9w/KKZTetEEd8rjvEXyv1Y4f1YSSvFjXxbMxtpZtMl3QUMpnFPR926VR8oaQDwf2bWGkMhdwE3R0OlyOeJxlP0HA0Afu4dM6wqaYyZbd+42sWqzprjMQIoBjiqNcehKxmFh3KeSKFHJag3xwEAM7td0il4FN6u4pfAWZJ+4VnYO3FNkw6SPQ5J0kGiy3tVfKY/4N3T+KqCS2PTKGAtSXvFOX3wWfwHRnfp+2Y2wMw+Y2YbUjUG20EOAoab2cZm9hn8y3Y5PIx5Xczs//AGxE1Rvg7TnddC0jrAsfhKi4YrGzpR7v+Wr6xA0gb4PIOPgWtiqADgc/jKiEbUrVtVfkvgkyYvjE1fB0ab2U9qpLmOmf0TwMxeNbNPmdmW0cMzsQONhmrOAL4rafFOnt8hoqH3EPBVfBito3wTH1LrqvJMxoepzmYuh70WdLLhkCTlKHb53os/Zc42US1my68qaRczawV2BY6SL0N7GHgPnxx3EL5CoMh1eLfu5yOP3fDu3DITymZLLybo/Qx/ai2O3/6y+kTz5YGv07a6oQw9ci2AI/FJg/cW6rBIB8rZiBuBEyWNAa7Gww1PB44B7pSHIF4L+HGjRNqpG/hwwEPAA8BthXkKXwP2KNTrHABJy8f5XY75ypk7gG8VylYcLji6G7K9HXjCzKrrVD1UMcekR/OAg69Xfpd0eXzmKsNPnRm++Tk+vFa2IbN9VTnX7ESe8x2pnE6SJEmSpDTZ45AkSZIkSWmy4ZAkSZIkSWmy4ZAkSZIkSWmy4ZAkSZIkSWmy4ZAkSZIkSWmy4ZAkSZIkSWmy4ZAkSZIkSWn+H45slvrV6BteAAAAAElFTkSuQmCC\n",
"text/plain": [
- ""
+ ""
]
},
"metadata": {},
diff --git a/4.covariates.ipynb b/4.covariates.ipynb
index add1a2f..cd6dc55 100644
--- a/4.covariates.ipynb
+++ b/4.covariates.ipynb
@@ -513,7 +513,7 @@
"name": "stdout",
"output_type": "stream",
"text": [
- "Total number of samples: 8,388\n",
+ "Total number of samples: 8,397\n",
"Number of nulls in each column:\n"
]
},
@@ -525,34 +525,34 @@
"disease 0\n",
"age_diagnosed 42\n",
"gender 0\n",
- "race 645\n",
- "ajcc_stage 2681\n",
- "clinical_stage 6511\n",
+ "race 646\n",
+ "ajcc_stage 2684\n",
+ "clinical_stage 6519\n",
"histological_type 110\n",
- "histological_grade 4738\n",
+ "histological_grade 4744\n",
"initial_pathologic_dx_year 122\n",
- "menopause_status 6951\n",
+ "menopause_status 6960\n",
"birth_days_to 97\n",
"vital_status 1\n",
- "tumor_status 546\n",
- "last_contact_days_to 2127\n",
- "death_days_to 6112\n",
- "cause_of_death 8182\n",
- "new_tumor_event_type 6776\n",
- "new_tumor_event_site 7262\n",
- "new_tumor_event_site_other 7972\n",
- "days_recurrence_free 6179\n",
- "treatment_outcome_first_course 3528\n",
- "margin_status 7447\n",
- "residual_tumor 7245\n",
+ "tumor_status 547\n",
+ "last_contact_days_to 2129\n",
+ "death_days_to 6119\n",
+ "cause_of_death 8190\n",
+ "new_tumor_event_type 6782\n",
+ "new_tumor_event_site 7269\n",
+ "new_tumor_event_site_other 7980\n",
+ "days_recurrence_free 6185\n",
+ "treatment_outcome_first_course 3530\n",
+ "margin_status 7456\n",
+ "residual_tumor 7253\n",
"event_status 0\n",
"event_days 30\n",
"dead 0\n",
"days_survived 30\n",
"disease_specific_survival_status 278\n",
"disease_specific_survival_days 30\n",
- "disease_free_interval_status 3815\n",
- "disease_free_interval_days 3824\n",
+ "disease_free_interval_status 3816\n",
+ "disease_free_interval_days 3825\n",
"progression_free_interval_status 0\n",
"progression_free_interval_days 32\n",
"sample_type 0\n",
diff --git a/data/complete/mutation-matrix.tsv.bz2 b/data/complete/mutation-matrix.tsv.bz2
index f6a2836..b2f3039 100644
--- a/data/complete/mutation-matrix.tsv.bz2
+++ b/data/complete/mutation-matrix.tsv.bz2
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:5b61eb6f64851e40394bf35ddd5886e07a58a5ea8c1f5cd0830b23f5573a2e80
-size 2368051
+oid sha256:1a09bebb07a010e8d9e133517bcd67ab400d929c171908250d0d945acd083781
+size 2367677
diff --git a/data/covariates.tsv b/data/covariates.tsv
index 260925b..b0ad89b 100644
--- a/data/covariates.tsv
+++ b/data/covariates.tsv
@@ -1281,6 +1281,7 @@ TCGA-86-8674-01 50 806 334 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0
TCGA-86-A456-01 78 896 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 5.7961
TCGA-86-A4JF-01 56 737 436 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 7.0579
TCGA-86-A4P7-01 63 415 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 4.2485
+TCGA-86-A4P8-01 59 805 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 0
TCGA-90-7766-01 66 289 289 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 1 4.6821
TCGA-90-7767-01 56 89 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 4.5951
TCGA-90-7769-01 55 358 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 6.1759
@@ -4602,6 +4603,7 @@ TCGA-E8-A3X7-01 57 951 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
TCGA-E8-A413-01 38 912 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 1 0 1.6094
TCGA-E8-A414-01 45 958 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 1 0 1.9459
TCGA-E8-A415-01 39 944 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 1 0 2.3026
+TCGA-E8-A416-01 51 952 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 1 0 0
TCGA-E8-A417-01 38 938 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 1 0 3.3322
TCGA-E8-A418-01 75 92 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 1 0 3.4657
TCGA-E8-A419-01 30 774 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 1 0 1.9459
@@ -5299,6 +5301,7 @@ TCGA-FA-A7Q1-01 61 248 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
TCGA-FA-A82F-01 48 427 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 5.0173
TCGA-FA-A86F-01 64 553 150 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 1 4.6444
TCGA-FB-A4P5-01 69 179 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 2.1972
+TCGA-FB-A4P6-01 54 767 620 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0
TCGA-FB-A545-01 72 732 378 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 1 3.6376
TCGA-FB-A5VM-01 74 498 177 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 3.8501
TCGA-FB-A78T-01 71 375 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 3.7377
@@ -5318,6 +5321,7 @@ TCGA-FC-7708-01 52 864 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0
TCGA-FC-7961-01 62 469 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 3.8067
TCGA-FC-A4JI-01 70 877 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 3.2581
TCGA-FC-A5OB-01 53 680 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 3.2189
+TCGA-FC-A66V-01 74 524 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 0
TCGA-FC-A6HD-01 77 789 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 3.3673
TCGA-FC-A8O0-01 68 616 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 2.8332
TCGA-FD-A3B3-01 74 974 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 5.0938
@@ -5466,6 +5470,7 @@ TCGA-FP-7829-01 69 594 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
TCGA-FP-7916-01 77 428 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 1 0 4.5326
TCGA-FP-7998-01 77 678 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 1 0 4.1589
TCGA-FP-8099-01 79 519 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 1 0 4.7875
+TCGA-FP-8209-01 49 1811 1676 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 1 0
TCGA-FP-8210-01 48 153 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 1 0 1.9459
TCGA-FP-8211-01 62 413 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 1 0 4.585
TCGA-FP-8631-01 68 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 1 0 4.4886
@@ -5653,6 +5658,7 @@ TCGA-G9-6365-01 71 1363 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0
TCGA-G9-6366-01 61 1947 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 3.3673
TCGA-G9-6367-01 60 1222 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 1.0986
TCGA-G9-6369-01 55 1215 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 3.3673
+TCGA-G9-6370-01 52 1156 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 0
TCGA-G9-6371-01 58 1226 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 3.4012
TCGA-G9-6373-01 68 811 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 3.091
TCGA-G9-6377-01 61 958 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 3.2189
@@ -6133,6 +6139,7 @@ TCGA-IB-AAUR-01 67 338 318 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0
TCGA-IB-AAUS-01 84 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 1.7918
TCGA-IB-AAUU-01 35 245 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 3.8067
TCGA-IB-AAUV-01 49 404 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 1.0986
+TCGA-IB-AAUW-01 63 230 185 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 1 0
TCGA-IC-A6RE-01 59 234 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 6.0474
TCGA-IC-A6RF-01 69 477 293 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 1 4.5326
TCGA-IE-A3OV-01 42 2448 490 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1 0 1 3.4965
@@ -7899,6 +7906,7 @@ TCGA-W9-A837-01 47 1553 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0
TCGA-WA-A7GZ-01 58 625 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 0 5.2523
TCGA-WA-A7H4-01 69 443 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 4.1431
TCGA-WB-A80K-01 49 1255 772 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 2.7081
+TCGA-WB-A80L-01 30 1042 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 0
TCGA-WB-A80M-01 63 136 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 2.1972
TCGA-WB-A80N-01 54 144 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 2.4849
TCGA-WB-A80O-01 83 776 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 2.4849
@@ -8226,6 +8234,7 @@ TCGA-YT-A95G-01 61 1514 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
TCGA-YT-A95H-01 69 711 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 1 0 2.5649
TCGA-YU-A90P-01 25 2069 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 1 0 2.4849
TCGA-YU-A90Q-01 21 1964 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 1 0 1.9459
+TCGA-YU-A90S-01 26 971 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 1 0 0
TCGA-YU-A90W-01 45 1113 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 1 0 3.0445
TCGA-YU-A90Y-01 23 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 1 0 2.7081
TCGA-YU-A912-01 34 866 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 1 0 2.5649
diff --git a/data/diseases.tsv b/data/diseases.tsv
new file mode 100644
index 0000000..5faf7da
--- /dev/null
+++ b/data/diseases.tsv
@@ -0,0 +1,34 @@
+acronym disease n_samples n_clinical_samples n_expression_samples n_mutation_samples median_mutations mean_mutations
+ACC adrenocortical cancer 79 92 79 92 27.0 68.0
+BLCA bladder urothelial carcinoma 403 409 405 407 164.0 228.2
+BRCA breast invasive carcinoma 787 1092 1090 789 37.0 76.5
+CESC cervical & endocervical cancer 286 307 304 289 87.0 181.9
+CHOL cholangiocarcinoma 36 36 36 36 36.0 52.2
+COAD colon adenocarcinoma 287 457 449 288 122.0 444.0
+DLBC diffuse large B-cell lymphoma 37 48 48 37 108.0 122.6
+ESCA esophageal carcinoma 183 185 184 184 106.0 139.2
+GBM glioblastoma multiforme 149 588 153 311 48.0 111.7
+HNSC head & neck squamous cell carcinoma 499 528 520 507 102.0 142.2
+KICH kidney chromophobe 66 66 66 66 21.0 33.2
+KIRC kidney clear cell carcinoma 366 536 533 368 54.0 56.3
+KIRP kidney papillary cell carcinoma 280 291 290 281 58.5 59.0
+LAML acute myeloid leukemia 0 200 173 0
+LGG brain lower grade glioma 510 515 515 510 29.0 45.8
+LIHC liver hepatocellular carcinoma 357 376 370 362 84.0 102.2
+LUAD lung adenocarcinoma 509 519 515 513 189.0 263.1
+LUSC lung squamous cell carcinoma 477 504 501 480 217.0 257.3
+MESO mesothelioma 81 87 87 81 28.0 31.5
+OV ovarian serous cystadenocarcinoma 14 537 295 62 67.0 70.4
+PAAD pancreatic adenocarcinoma 170 185 178 177 35.5 88.0
+PCPG pheochromocytoma & paraganglioma 179 179 179 179 9.0 10.4
+PRAD prostate adenocarcinoma 494 498 497 495 27.0 41.0
+READ rectum adenocarcinoma 89 166 159 89 95.0 230.8
+SARC sarcoma 234 261 259 236 38.5 60.0
+SKCM skin cutaneous melanoma 103 108 103 104 235.0 342.1
+STAD stomach adenocarcinoma 412 443 415 439 114.0 324.0
+TGCT testicular germ cell tumor 129 134 134 129 14.0 16.2
+THCA thyroid carcinoma 490 507 505 492 10.0 11.4
+THYM thymoma 118 124 120 122 13.0 21.0
+UCEC uterine corpus endometrioid carcinoma 436 547 532 447 80.0 804.6
+UCS uterine carcinosarcoma 57 57 57 57 49.0 120.2
+UVM uveal melanoma 80 80 80 80 12.0 17.2
diff --git a/data/expression-genes.tsv b/data/expression-genes.tsv
index 961db6e..cc957ee 100644
--- a/data/expression-genes.tsv
+++ b/data/expression-genes.tsv
@@ -1,16262 +1,16262 @@
entrez_gene_id symbol description gene_type mean_expression stdev_expression
-1 A1BG alpha-1-B glycoprotein protein-coding 6.541 2.309
-100 ADA adenosine deaminase protein-coding 7.445 1.539
+1 A1BG alpha-1-B glycoprotein protein-coding 6.541 2.308
+100 ADA adenosine deaminase protein-coding 7.444 1.539
1000 CDH2 cadherin 2 protein-coding 7.336 3.113
-10000 AKT3 AKT serine/threonine kinase 3 protein-coding 8.764 1.648
-100009676 ZBTB11-AS1 ZBTB11 antisense RNA 1 ncRNA 6.58 0.6512
-10001 MED6 mediator complex subunit 6 protein-coding 8.503 0.5279
-10002 NR2E3 nuclear receptor subfamily 2 group E member 3 protein-coding 1.843 1.164
-10003 NAALAD2 N-acetylated alpha-linked acidic dipeptidase 2 protein-coding 3.892 1.639
-100033416 SNORD116-4 small nucleolar RNA, C/D box 116-4 snoRNA 4.325 2.67
-100033431 SNORD116-20 small nucleolar RNA, C/D box 116-20 snoRNA 2.595 1.747
-100033820 SNORD116-28 small nucleolar RNA, C/D box 116-28 snoRNA 4.062 2.028
-100037417 DDTL D-dopachrome tautomerase like protein-coding 8.487 1.038
-10004 NAALADL1 N-acetylated alpha-linked acidic dipeptidase like 1 protein-coding 5.262 1.359
-100048912 CDKN2B-AS1 CDKN2B antisense RNA 1 ncRNA 3.061 1.77
-100049587 SIGLEC14 sialic acid binding Ig like lectin 14 protein-coding 4.616 1.981
-10005 ACOT8 acyl-CoA thioesterase 8 protein-coding 8.869 0.6678
-10006 ABI1 abl interactor 1 protein-coding 10.49 0.6087
-10007 GNPDA1 glucosamine-6-phosphate deaminase 1 protein-coding 10.14 0.601
-10008 KCNE3 potassium voltage-gated channel subfamily E regulatory subunit 3 protein-coding 7.894 1.929
-10009 ZBTB33 zinc finger and BTB domain containing 33 protein-coding 9.592 0.6509
+10000 AKT3 AKT serine/threonine kinase 3 protein-coding 8.765 1.648
+100009676 ZBTB11-AS1 ZBTB11 antisense RNA 1 ncRNA 6.58 0.6509
+10001 MED6 mediator complex subunit 6 protein-coding 8.503 0.5278
+10002 NR2E3 nuclear receptor subfamily 2 group E member 3 protein-coding 1.844 1.164
+10003 NAALAD2 N-acetylated alpha-linked acidic dipeptidase 2 protein-coding 3.895 1.64
+100033416 SNORD116-4 small nucleolar RNA, C/D box 116-4 snoRNA 4.328 2.67
+100033431 SNORD116-20 small nucleolar RNA, C/D box 116-20 snoRNA 2.596 1.747
+100033820 SNORD116-28 small nucleolar RNA, C/D box 116-28 snoRNA 4.065 2.029
+100037417 DDTL D-dopachrome tautomerase like protein-coding 8.487 1.037
+10004 NAALADL1 N-acetylated alpha-linked acidic dipeptidase like 1 protein-coding 5.263 1.359
+100048912 CDKN2B-AS1 CDKN2B antisense RNA 1 ncRNA 3.06 1.77
+100049587 SIGLEC14 sialic acid binding Ig like lectin 14 protein-coding 4.617 1.981
+10005 ACOT8 acyl-CoA thioesterase 8 protein-coding 8.868 0.6676
+10006 ABI1 abl interactor 1 protein-coding 10.49 0.6085
+10007 GNPDA1 glucosamine-6-phosphate deaminase 1 protein-coding 10.14 0.6009
+10008 KCNE3 potassium voltage-gated channel subfamily E regulatory subunit 3 protein-coding 7.895 1.928
+10009 ZBTB33 zinc finger and BTB domain containing 33 protein-coding 9.592 0.6507
100093630 SNHG8 small nucleolar RNA host gene 8 ncRNA 9.287 1.053
-1001 CDH3 cadherin 3 protein-coding 9.174 3.419
-10010 TANK TRAF family member associated NFKB activator protein-coding 9.441 0.6627
-100101266 HAVCR1P1 hepatitis A virus cellular receptor 1 pseudogene 1 pseudo 2.632 1.271
-100101267 POM121C POM121 transmembrane nucleoporin C protein-coding 9.876 0.5248
-100101467 ZSCAN30 zinc finger and SCAN domain containing 30 protein-coding 8.108 0.8012
-100101490 MCTS2P malignant T cell amplified sequence 2, pseudogene pseudo 3.86 1.17
-10011 SRA1 steroid receptor RNA activator 1 protein-coding 9.529 0.6406
+1001 CDH3 cadherin 3 protein-coding 9.173 3.418
+10010 TANK TRAF family member associated NFKB activator protein-coding 9.441 0.6626
+100101266 HAVCR1P1 hepatitis A virus cellular receptor 1 pseudogene 1 pseudo 2.633 1.271
+100101267 POM121C POM121 transmembrane nucleoporin C protein-coding 9.876 0.5246
+100101467 ZSCAN30 zinc finger and SCAN domain containing 30 protein-coding 8.109 0.8012
+100101490 MCTS2P malignant T cell amplified sequence 2, pseudogene pseudo 3.859 1.17
+10011 SRA1 steroid receptor RNA activator 1 protein-coding 9.529 0.6404
100113386 UCKL1-AS1 UCKL1 antisense RNA 1 ncRNA 4 1.246
-100113407 TMEM170B transmembrane protein 170B protein-coding 7.353 1.448
+100113407 TMEM170B transmembrane protein 170B protein-coding 7.353 1.447
100125288 ZGLP1 zinc finger, GATA-like protein 1 protein-coding 4.843 1.394
-100125556 FAM86JP family with sequence similarity 86, member A pseudogene pseudo 6.076 0.9393
+100125556 FAM86JP family with sequence similarity 86, member A pseudogene pseudo 6.075 0.9394
100126784 LOC100126784 uncharacterized LOC100126784 ncRNA 4.576 2.178
-100126791 EGOT eosinophil granule ontogeny transcript (non-protein coding) ncRNA 2.142 1.972
-100126793 GHRLOS ghrelin opposite strand/antisense RNA ncRNA 3.384 1.082
+100126791 EGOT eosinophil granule ontogeny transcript (non-protein coding) ncRNA 2.143 1.972
+100126793 GHRLOS ghrelin opposite strand/antisense RNA ncRNA 3.385 1.082
100127888 SLCO4A1-AS1 SLCO4A1 antisense RNA 1 ncRNA 2.243 2.348
100128164 LOC100128164 four and a half LIM domains 1 pseudogene pseudo 1.634 1.269
100128191 TMPO-AS1 TMPO antisense RNA 1 ncRNA 6.22 1.066
-100128239 LOC100128239 uncharacterized LOC100128239 ncRNA 2.641 1.929
-100128285 DNM1P35 dynamin 1 pseudogene 35 pseudo 4.459 1.201
-100128288 LOC100128288 uncharacterized LOC100128288 ncRNA 5.107 1.267
-100128292 DLG5-AS1 DLG5 antisense RNA 1 ncRNA 3.874 1.053
-100128385 FAM225B family with sequence similarity 225 member B (non-protein coding) ncRNA 5.495 1.757
-100128542 BET1P1 Bet1 golgi vesicular membrane trafficking protein pseudogene 1 pseudo 0.7336 0.8488
-100128553 CTAGE4 CTAGE family member 4 protein-coding 5.244 1.977
-100128569 C19orf71 chromosome 19 open reading frame 71 protein-coding 3.285 1.112
-100128573 LOC100128573 uncharacterized LOC100128573 ncRNA 0.9468 0.7226
-100128640 ACVR2B-AS1 ACVR2B antisense RNA 1 ncRNA 4.697 1.193
+100128239 LOC100128239 uncharacterized LOC100128239 ncRNA 2.642 1.929
+100128285 DNM1P35 dynamin 1 pseudogene 35 pseudo 4.46 1.201
+100128288 LOC100128288 uncharacterized LOC100128288 ncRNA 5.108 1.267
+100128292 DLG5-AS1 DLG5 antisense RNA 1 ncRNA 3.873 1.053
+100128385 FAM225B family with sequence similarity 225 member B (non-protein coding) ncRNA 5.496 1.757
+100128542 BET1P1 Bet1 golgi vesicular membrane trafficking protein pseudogene 1 pseudo 0.7341 0.8489
+100128553 CTAGE4 CTAGE family member 4 protein-coding 5.244 1.976
+100128569 C19orf71 chromosome 19 open reading frame 71 protein-coding 3.286 1.113
+100128573 LOC100128573 uncharacterized LOC100128573 ncRNA 0.9473 0.7227
+100128640 ACVR2B-AS1 ACVR2B antisense RNA 1 ncRNA 4.698 1.192
100128731 OST4 oligosaccharyltransferase complex subunit 4, non-catalytic protein-coding 11.24 0.6461
-100128782 LINC00476 long intergenic non-protein coding RNA 476 ncRNA 7.004 1.048
-100128788 SRRM2-AS1 SRRM2 antisense RNA 1 ncRNA 3.564 1.139
-100128822 LINC01003 long intergenic non-protein coding RNA 1003 ncRNA 6.735 0.9841
+100128782 LINC00476 long intergenic non-protein coding RNA 476 ncRNA 7.005 1.048
+100128788 SRRM2-AS1 SRRM2 antisense RNA 1 ncRNA 3.564 1.138
+100128822 LINC01003 long intergenic non-protein coding RNA 1003 ncRNA 6.735 0.984
100128927 ZBTB42 zinc finger and BTB domain containing 42 protein-coding 8.269 1.194
100129034 LOC100129034 uncharacterized LOC100129034 ncRNA 10.26 1.238
-100129075 KTN1-AS1 KTN1 antisense RNA 1 ncRNA 5.506 0.8876
+100129075 KTN1-AS1 KTN1 antisense RNA 1 ncRNA 5.505 0.8875
100129354 NRADDP neurotrophin receptor associated death domain, pseudogene pseudo 1.478 1.078
-100129387 GABPB1-AS1 GABPB1 antisense RNA 1 ncRNA 6.532 0.8833
-100129396 FAM106CP family with sequence similarity 106 member C, pseudogene protein-coding 1.97 1.426
-100129405 MSTO2P misato family member 2, pseudogene pseudo 6.589 0.9685
-100129424 RPL19P12 ribosomal protein L19 pseudogene 12 pseudo 6.257 1.343
-100129482 ZNF37BP zinc finger protein 37B, pseudogene pseudo 7.965 0.9823
-100129534 LOC100129534 small nuclear ribonucleoprotein polypeptide N pseudogene pseudo 5.133 1.3
-100129550 LINC02035 long intergenic non-protein coding RNA 2035 ncRNA 7.519 0.8845
-100129583 FAM47E family with sequence similarity 47 member E protein-coding 5.593 2.022
-100129716 ARRDC3-AS1 ARRDC3 antisense RNA 1 ncRNA 3.015 0.8978
-100129726 LINC01126 long intergenic non-protein coding RNA 1126 ncRNA 2.67 1.121
-100129792 CCDC152 coiled-coil domain containing 152 protein-coding 5.92 1.624
-100129842 ZNF737 zinc finger protein 737 protein-coding 7.442 1.901
-10013 HDAC6 histone deacetylase 6 protein-coding 10.22 0.6417
-100130015 URAHP urate (hydroxyiso-) hydrolase, pseudogene pseudo 4.661 1.27
-100130086 HSFX2 heat shock transcription factor family, X-linked 2 protein-coding 4.686 0.9735
-100130311 C17orf107 chromosome 17 open reading frame 107 protein-coding 5.955 1.519
+100129387 GABPB1-AS1 GABPB1 antisense RNA 1 ncRNA 6.533 0.8832
+100129396 FAM106CP family with sequence similarity 106 member C, pseudogene protein-coding 1.97 1.427
+100129405 MSTO2P misato family member 2, pseudogene pseudo 6.589 0.9683
+100129424 RPL19P12 ribosomal protein L19 pseudogene 12 pseudo 6.256 1.342
+100129482 ZNF37BP zinc finger protein 37B, pseudogene pseudo 7.966 0.9824
+100129534 LOC100129534 small nuclear ribonucleoprotein polypeptide N pseudogene pseudo 5.134 1.3
+100129550 LINC02035 long intergenic non-protein coding RNA 2035 ncRNA 7.52 0.8846
+100129583 FAM47E family with sequence similarity 47 member E protein-coding 5.594 2.022
+100129716 ARRDC3-AS1 ARRDC3 antisense RNA 1 ncRNA 3.016 0.8976
+100129726 LINC01126 long intergenic non-protein coding RNA 1126 ncRNA 2.671 1.121
+100129792 CCDC152 coiled-coil domain containing 152 protein-coding 5.921 1.624
+100129842 ZNF737 zinc finger protein 737 protein-coding 7.443 1.901
+10013 HDAC6 histone deacetylase 6 protein-coding 10.22 0.6415
+100130015 URAHP urate (hydroxyiso-) hydrolase, pseudogene pseudo 4.661 1.269
+100130086 HSFX2 heat shock transcription factor family, X-linked 2 protein-coding 4.686 0.9732
+100130311 C17orf107 chromosome 17 open reading frame 107 protein-coding 5.956 1.518
100130331 LOC100130331 POTE ankyrin domain family, member F pseudogene pseudo 2.527 1.426
100130418 CECR7 cat eye syndrome chromosome region, candidate 7 (non-protein coding) ncRNA 3.727 2.293
100130449 LOC100130449 uncharacterized LOC100130449 protein-coding 2.91 2.316
-100130522 PARD6G-AS1 PARD6G antisense RNA 1 ncRNA 3.231 1.391
+100130522 PARD6G-AS1 PARD6G antisense RNA 1 ncRNA 3.232 1.391
100130557 NFYC-AS1 NFYC antisense RNA 1 ncRNA 5.304 1.046
100130581 LINC00910 long intergenic non-protein coding RNA 910 ncRNA 5.414 0.8977
100130691 LOC100130691 uncharacterized LOC100130691 ncRNA 3.7 1.186
-100130717 HDHD5-AS1 HDHD5 antisense RNA 1 ncRNA 1.851 1.079
-100130733 LRRC70 leucine rich repeat containing 70 protein-coding 4.786 1.166
-100130742 LRRC69 leucine rich repeat containing 69 protein-coding 1.893 1.411
-100130771 EFCAB10 EF-hand calcium binding domain 10 protein-coding 2.735 1.311
-100130776 AGAP2-AS1 AGAP2 antisense RNA 1 ncRNA 7.264 1.604
-100130872 LOC100130872 uncharacterized LOC100130872 ncRNA 5.251 2.184
-100130889 PSORS1C3 psoriasis susceptibility 1 candidate 3 (non-protein coding) ncRNA 1.482 1.754
-100130932 SNRPGP15 small nuclear ribonucleoprotein polypeptide G pseudogene 15 pseudo 5.961 0.7829
+100130717 HDHD5-AS1 HDHD5 antisense RNA 1 ncRNA 1.852 1.079
+100130733 LRRC70 leucine rich repeat containing 70 protein-coding 4.787 1.167
+100130742 LRRC69 leucine rich repeat containing 69 protein-coding 1.893 1.41
+100130771 EFCAB10 EF-hand calcium binding domain 10 protein-coding 2.735 1.31
+100130776 AGAP2-AS1 AGAP2 antisense RNA 1 ncRNA 7.264 1.603
+100130872 LOC100130872 uncharacterized LOC100130872 ncRNA 5.252 2.184
+100130889 PSORS1C3 psoriasis susceptibility 1 candidate 3 (non-protein coding) ncRNA 1.483 1.754
+100130932 SNRPGP15 small nuclear ribonucleoprotein polypeptide G pseudogene 15 pseudo 5.96 0.7828
100130933 SMIM6 small integral membrane protein 6 protein-coding 3.234 2.724
-100130958 SYCE1L synaptonemal complex central element protein 1 like protein-coding 3.592 2.016
-100130987 LOC100130987 uncharacterized LOC100130987 ncRNA 3.559 1.026
-100131187 TSTD1 thiosulfate sulfurtransferase like domain containing 1 protein-coding 8.908 2.043
-100131193 CCDC183-AS1 CCDC183 antisense RNA 1 ncRNA 5.032 1.199
-100131211 NEMP2 nuclear envelope integral membrane protein 2 protein-coding 6.813 0.8577
+100130958 SYCE1L synaptonemal complex central element protein 1 like protein-coding 3.592 2.015
+100130987 LOC100130987 uncharacterized LOC100130987 ncRNA 3.559 1.027
+100131187 TSTD1 thiosulfate sulfurtransferase like domain containing 1 protein-coding 8.909 2.042
+100131193 CCDC183-AS1 CCDC183 antisense RNA 1 ncRNA 5.033 1.199
+100131211 NEMP2 nuclear envelope integral membrane protein 2 protein-coding 6.813 0.8575
100131213 ZNF503-AS2 ZNF503 antisense RNA 2 ncRNA 5.907 1.37
-100131434 LINC00893 long intergenic non-protein coding RNA 893 ncRNA 4.824 1.394
-100131454 DBIL5P diazepam binding inhibitor-like 5, pseudogene pseudo 3.607 0.9572
-100131496 LOC100131496 uncharacterized LOC100131496 ncRNA 1.546 0.9852
-100131551 LINC00887 long intergenic non-protein coding RNA 887 ncRNA 2.496 2.205
-100131691 MZF1-AS1 MZF1 antisense RNA 1 ncRNA 4.889 0.9488
-100131726 FAM83A-AS1 FAM83A antisense RNA 1 ncRNA 1.813 2.341
-100131814 LINC00271 long intergenic non-protein coding RNA 271 ncRNA 2.286 1.674
-100131827 ZNF717 zinc finger protein 717 protein-coding 4.866 1.353
-100131897 FAM196B family with sequence similarity 196 member B protein-coding 2.226 2.09
-100131998 RRN3P3 RRN3 homolog, RNA polymerase I transcription factor pseudogene 3 pseudo 5.552 0.7593
+100131434 LINC00893 long intergenic non-protein coding RNA 893 ncRNA 4.825 1.394
+100131454 DBIL5P diazepam binding inhibitor-like 5, pseudogene pseudo 3.607 0.957
+100131496 LOC100131496 uncharacterized LOC100131496 ncRNA 1.547 0.9853
+100131551 LINC00887 long intergenic non-protein coding RNA 887 ncRNA 2.495 2.204
+100131691 MZF1-AS1 MZF1 antisense RNA 1 ncRNA 4.889 0.9485
+100131726 FAM83A-AS1 FAM83A antisense RNA 1 ncRNA 1.811 2.341
+100131814 LINC00271 long intergenic non-protein coding RNA 271 ncRNA 2.287 1.675
+100131827 ZNF717 zinc finger protein 717 protein-coding 4.867 1.353
+100131897 FAM196B family with sequence similarity 196 member B protein-coding 2.226 2.089
+100131998 RRN3P3 RRN3 homolog, RNA polymerase I transcription factor pseudogene 3 pseudo 5.552 0.7595
100132111 LOC100132111 uncharacterized LOC100132111 ncRNA 2.568 1.617
100132215 LOC100132215 uncharacterized LOC100132215 ncRNA 3.882 1.279
100132247 NPIPB5 nuclear pore complex interacting protein family member B5 protein-coding 7.133 1.201
100132287 LOC100132287 uncharacterized LOC100132287 ncRNA 8.17 1.093
-100132288 TEKT4P2 tektin 4 pseudogene 2 pseudo 7.621 1.396
-100132341 CLUHP3 clustered mitochondria homolog pseudogene 3 pseudo 5.386 1.257
-100132354 LINC01512 long intergenic non-protein coding RNA 1512 ncRNA 1.517 1.697
+100132288 TEKT4P2 tektin 4 pseudogene 2 pseudo 7.622 1.396
+100132341 CLUHP3 clustered mitochondria homolog pseudogene 3 pseudo 5.387 1.257
+100132354 LINC01512 long intergenic non-protein coding RNA 1512 ncRNA 1.518 1.697
100132403 FAM157B family with sequence similarity 157 member B (non-protein coding) ncRNA 1.132 1.157
-100132406 NBPF10 NBPF member 10 protein-coding 8.368 1.49
+100132406 NBPF10 NBPF member 10 protein-coding 8.369 1.49
100132417 FCGR1CP Fc fragment of IgG receptor Ic, pseudogene pseudo 4.545 1.698
-100132707 PAXIP1-AS2 PAXIP1 antisense RNA 2 ncRNA 5.954 0.9072
-100132724 DCAF13P3 DDB1 and CUL4 associated factor 13 pseudogene 3 pseudo 1.845 0.8343
-100132832 PMS2P9 PMS1 homolog 2, mismatch repair system component pseudogene 9 pseudo 2.345 0.9455
-100132911 DPH3P1 diphthamide biosynthesis 3 pseudogene 1 protein-coding 4.244 1.008
-100132923 FAM66D family with sequence similarity 66 member D ncRNA 3.276 1.934
+100132707 PAXIP1-AS2 PAXIP1 antisense RNA 2 ncRNA 5.955 0.9073
+100132724 DCAF13P3 DDB1 and CUL4 associated factor 13 pseudogene 3 pseudo 1.845 0.8342
+100132832 PMS2P9 PMS1 homolog 2, mismatch repair system component pseudogene 9 pseudo 2.345 0.9454
+100132911 DPH3P1 diphthamide biosynthesis 3 pseudogene 1 protein-coding 4.244 1.007
+100132923 FAM66D family with sequence similarity 66 member D ncRNA 3.275 1.933
100132948 FAM27C family with sequence similarity 27 member C ncRNA 3.878 1.485
-100133036 FAM95B1 family with sequence similarity 95 member B1 ncRNA 4.555 1.909
-100133161 LINC01001 long intergenic non-protein coding RNA 1001 ncRNA 5.301 1.458
+100133036 FAM95B1 family with sequence similarity 95 member B1 ncRNA 4.557 1.91
+100133161 LINC01001 long intergenic non-protein coding RNA 1001 ncRNA 5.302 1.458
100133172 FAM66A family with sequence similarity 66 member A ncRNA 1.185 1.117
-100133205 LINC00240 long intergenic non-protein coding RNA 240 ncRNA 3.118 1.4
-100133234 SBF1P1 SET binding factor 1 pseudogene 1 pseudo 1.114 0.8876
+100133205 LINC00240 long intergenic non-protein coding RNA 240 ncRNA 3.118 1.399
+100133234 SBF1P1 SET binding factor 1 pseudogene 1 pseudo 1.114 0.8877
100133331 LOC100133331 uncharacterized LOC100133331 ncRNA 6.877 1.062
-100133545 MRPL23-AS1 MRPL23 antisense RNA 1 ncRNA 2.425 1.797
+100133545 MRPL23-AS1 MRPL23 antisense RNA 1 ncRNA 2.426 1.796
100133612 LINC01134 long intergenic non-protein coding RNA 1134 ncRNA 2.715 1.318
-100133669 LY6E-DT LY6E divergent transcript ncRNA 2.388 1.606
-100133941 CD24 CD24 molecule protein-coding 12.62 2.973
-100133957 UXT-AS1 UXT antisense RNA 1 ncRNA 2.874 0.8264
+100133669 LY6E-DT LY6E divergent transcript ncRNA 2.387 1.606
+100133941 CD24 CD24 molecule protein-coding 12.62 2.972
+100133957 UXT-AS1 UXT antisense RNA 1 ncRNA 2.874 0.8263
100133985 LINC01816 long intergenic non-protein coding RNA 1816 ncRNA 3.495 1.385
-100133991 MAP3K14-AS1 MAP3K14 antisense RNA 1 ncRNA 4.065 1.281
-100134229 KDM7A-DT KDM7A divergent transcript ncRNA 7.181 1.144
-100134259 LINC01119 long intergenic non-protein coding RNA 1119 ncRNA 2.971 1.061
-100134368 LOC100134368 uncharacterized LOC100134368 ncRNA 2.081 0.955
-100134713 NDUFB2-AS1 NDUFB2 antisense RNA 1 ncRNA 4.283 0.7232
-100134868 LOC100134868 uncharacterized LOC100134868 ncRNA 2.131 1.296
-100134869 UBE2Q2P2 ubiquitin conjugating enzyme E2 Q2 pseudogene 2 pseudo 3.242 1.163
-100134934 TEN1 TEN1, CST complex subunit protein-coding 8.452 0.7791
-100134938 UPK3BL1 uroplakin 3B like 1 protein-coding 7.62 2.181
-10014 HDAC5 histone deacetylase 5 protein-coding 10.4 0.7667
-100141515 C17orf99 chromosome 17 open reading frame 99 protein-coding 1.338 1.44
-100144603 CHKB-DT CHKB divergent transcript ncRNA 3.203 1.052
-100144748 KLLN killin, p53 regulated DNA replication inhibitor protein-coding 4.821 0.9532
-10015 PDCD6IP programmed cell death 6 interacting protein protein-coding 11.53 0.53
-100158262 SCARNA9L small Cajal body-specific RNA 9-like ncRNA 0.227 0.5241
-10016 PDCD6 programmed cell death 6 protein-coding 10.92 0.5565
+100133991 MAP3K14-AS1 MAP3K14 antisense RNA 1 ncRNA 4.066 1.28
+100134229 KDM7A-DT KDM7A divergent transcript ncRNA 7.18 1.143
+100134259 LINC01119 long intergenic non-protein coding RNA 1119 ncRNA 2.972 1.06
+100134368 LOC100134368 uncharacterized LOC100134368 ncRNA 2.081 0.9548
+100134713 NDUFB2-AS1 NDUFB2 antisense RNA 1 ncRNA 4.283 0.723
+100134868 LOC100134868 uncharacterized LOC100134868 ncRNA 2.131 1.295
+100134869 UBE2Q2P2 ubiquitin conjugating enzyme E2 Q2 pseudogene 2 pseudo 3.242 1.162
+100134934 TEN1 TEN1, CST complex subunit protein-coding 8.452 0.7788
+100134938 UPK3BL1 uroplakin 3B like 1 protein-coding 7.62 2.182
+10014 HDAC5 histone deacetylase 5 protein-coding 10.4 0.7665
+100141515 C17orf99 chromosome 17 open reading frame 99 protein-coding 1.338 1.439
+100144603 CHKB-DT CHKB divergent transcript ncRNA 3.203 1.051
+100144748 KLLN killin, p53 regulated DNA replication inhibitor protein-coding 4.822 0.953
+10015 PDCD6IP programmed cell death 6 interacting protein protein-coding 11.53 0.5298
+100158262 SCARNA9L small Cajal body-specific RNA 9-like ncRNA 0.2267 0.5239
+10016 PDCD6 programmed cell death 6 protein-coding 10.92 0.5566
100169750 PRINS psoriasis associated non-protein coding RNA induced by stress ncRNA 1.534 1.244
-10017 BCL2L10 BCL2 like 10 protein-coding 2.802 1.937
-100170229 SRRM5 serine/arginine repetitive matrix 5 protein-coding 4.82 0.8723
-100170765 ERICH4 glutamate rich 4 protein-coding 0.8291 1.178
-100170841 EPOP elongin BC and polycomb repressive complex 2 associated protein protein-coding 7.31 1.404
-10018 BCL2L11 BCL2 like 11 protein-coding 9.444 0.7972
-100188893 TOMM6 translocase of outer mitochondrial membrane 6 protein-coding 11.07 0.6521
-100188949 LINC00426 long intergenic non-protein coding RNA 426 ncRNA 2.837 1.54
-100188953 LINC00092 long intergenic non-protein coding RNA 92 ncRNA 3.077 1.929
-100188954 DNMBP-AS1 DNMBP antisense RNA 1 ncRNA 2.418 1.938
-10019 SH2B3 SH2B adaptor protein 3 protein-coding 9.36 0.9924
-100190938 RAMP2-AS1 RAMP2 antisense RNA 1 ncRNA 4.603 1.776
-100190939 TPT1-AS1 TPT1 antisense RNA 1 ncRNA 6.999 0.8131
-100190986 LOC100190986 uncharacterized LOC100190986 ncRNA 6.43 1.419
+10017 BCL2L10 BCL2 like 10 protein-coding 2.801 1.937
+100170229 SRRM5 serine/arginine repetitive matrix 5 protein-coding 4.821 0.872
+100170765 ERICH4 glutamate rich 4 protein-coding 0.8292 1.178
+100170841 EPOP elongin BC and polycomb repressive complex 2 associated protein protein-coding 7.309 1.405
+10018 BCL2L11 BCL2 like 11 protein-coding 9.444 0.7971
+100188893 TOMM6 translocase of outer mitochondrial membrane 6 protein-coding 11.07 0.652
+100188949 LINC00426 long intergenic non-protein coding RNA 426 ncRNA 2.838 1.54
+100188953 LINC00092 long intergenic non-protein coding RNA 92 ncRNA 3.08 1.931
+100188954 DNMBP-AS1 DNMBP antisense RNA 1 ncRNA 2.418 1.939
+10019 SH2B3 SH2B adaptor protein 3 protein-coding 9.36 0.9926
+100190938 RAMP2-AS1 RAMP2 antisense RNA 1 ncRNA 4.604 1.776
+100190939 TPT1-AS1 TPT1 antisense RNA 1 ncRNA 6.999 0.8128
+100190986 LOC100190986 uncharacterized LOC100190986 ncRNA 6.431 1.419
100191040 C2CD4D C2 calcium dependent domain containing 4D protein-coding 3.247 1.501
-1002 CDH4 cadherin 4 protein-coding 2.816 2.796
+1002 CDH4 cadherin 4 protein-coding 2.816 2.795
10020 GNE glucosamine (UDP-N-acetyl)-2-epimerase/N-acetylmannosamine kinase protein-coding 9.337 1.149
-100216545 KMT2E-AS1 KMT2E antisense RNA 1 ncRNA 6.669 0.9785
-10023 FRAT1 FRAT1, WNT signaling pathway regulator protein-coding 6.941 0.9689
+100216545 KMT2E-AS1 KMT2E antisense RNA 1 ncRNA 6.669 0.9781
+10023 FRAT1 FRAT1, WNT signaling pathway regulator protein-coding 6.942 0.969
100233209 PCED1B-AS1 PCED1B antisense RNA 1 ncRNA 3.798 1.675
-10024 TROAP trophinin associated protein protein-coding 7.382 2.207
-100240735 LOC100240735 uncharacterized LOC100240735 ncRNA 2.269 1.657
-10025 MED16 mediator complex subunit 16 protein-coding 10.28 0.614
-10026 PIGK phosphatidylinositol glycan anchor biosynthesis class K protein-coding 9.409 0.6251
-100268168 LOC100268168 uncharacterized LOC100268168 ncRNA 2.955 1.061
+10024 TROAP trophinin associated protein protein-coding 7.379 2.208
+100240735 LOC100240735 uncharacterized LOC100240735 ncRNA 2.27 1.657
+10025 MED16 mediator complex subunit 16 protein-coding 10.28 0.6138
+10026 PIGK phosphatidylinositol glycan anchor biosynthesis class K protein-coding 9.41 0.6251
+100268168 LOC100268168 uncharacterized LOC100268168 ncRNA 2.956 1.061
100270746 LOC100270746 uncharacterized LOC100270746 ncRNA 4.931 1.233
-100270804 LOC100270804 uncharacterized LOC100270804 ncRNA 4.514 1.209
-100271715 ARHGEF33 Rho guanine nucleotide exchange factor 33 protein-coding 3.318 1.47
-100271722 LINC00899 long intergenic non-protein coding RNA 899 ncRNA 4.798 1.185
+100270804 LOC100270804 uncharacterized LOC100270804 ncRNA 4.515 1.208
+100271715 ARHGEF33 Rho guanine nucleotide exchange factor 33 protein-coding 3.319 1.47
+100271722 LINC00899 long intergenic non-protein coding RNA 899 ncRNA 4.798 1.184
100271835 LIMS3-LOC440895 LIMS3-LOC440895 readthrough ncRNA 4.558 1.876
100271836 SMG1P3 SMG1 pseudogene 3 pseudo 7.781 1.045
100271849 MEF2B myocyte enhancer factor 2B protein-coding 5.11 1.407
100272146 NFE2L3P2 nuclear factor, erythroid 2 like 3 pseudogene 2 pseudo 5.146 1.001
-100272147 CMC4 C-X9-C motif containing 4 protein-coding 8.253 0.7203
+100272147 CMC4 C-X9-C motif containing 4 protein-coding 8.252 0.72
100272217 LOC100272217 uncharacterized LOC100272217 ncRNA 4.629 1.028
-100272228 LINC00894 long intergenic non-protein coding RNA 894 ncRNA 4.705 1.329
-100286844 BCDIN3D-AS1 BCDIN3D antisense RNA 1 ncRNA 4.458 1.042
-100287227 TIPARP-AS1 TIPARP antisense RNA 1 ncRNA 2.834 0.9204
+100272228 LINC00894 long intergenic non-protein coding RNA 894 ncRNA 4.706 1.33
+100286844 BCDIN3D-AS1 BCDIN3D antisense RNA 1 ncRNA 4.459 1.041
+100287227 TIPARP-AS1 TIPARP antisense RNA 1 ncRNA 2.834 0.9201
100287569 LINC00173 long intergenic non-protein coding RNA 173 ncRNA 3.026 1.795
-100288380 ULK4P2 ULK4 pseudogene 2 pseudo 1.17 1.079
-100288778 LOC100288778 WASH complex subunit 1 pseudogene pseudo 8.931 0.9777
+100288380 ULK4P2 ULK4 pseudogene 2 pseudo 1.171 1.079
+100288778 LOC100288778 WASH complex subunit 1 pseudogene pseudo 8.931 0.9775
100289341 MAN1B1-DT MAN1B1 divergent transcript ncRNA 5.506 1.019
-100289635 ZNF605 zinc finger protein 605 protein-coding 8.491 0.8028
-1003 CDH5 cadherin 5 protein-coding 9.254 1.301
-100302401 RASAL2-AS1 RASAL2 antisense RNA 1 ncRNA 3.952 0.8703
-100302650 BRE-AS1 BRE antisense RNA 1 ncRNA 4.586 1.687
-100302692 FTX FTX transcript, XIST regulator (non-protein coding) ncRNA 4.908 0.908
-100302736 TMED7-TICAM2 TMED7-TICAM2 readthrough protein-coding 5.577 2.175
-100303728 SLC25A5-AS1 SLC25A5 antisense RNA 1 ncRNA 4.593 1.051
+100289635 ZNF605 zinc finger protein 605 protein-coding 8.492 0.8025
+1003 CDH5 cadherin 5 protein-coding 9.255 1.301
+100302401 RASAL2-AS1 RASAL2 antisense RNA 1 ncRNA 3.952 0.8699
+100302650 BRE-AS1 BRE antisense RNA 1 ncRNA 4.587 1.687
+100302692 FTX FTX transcript, XIST regulator (non-protein coding) ncRNA 4.909 0.9083
+100302736 TMED7-TICAM2 TMED7-TICAM2 readthrough protein-coding 5.577 2.174
+100303728 SLC25A5-AS1 SLC25A5 antisense RNA 1 ncRNA 4.593 1.05
10036 CHAF1A chromatin assembly factor 1 subunit A protein-coding 8.955 0.9929
10038 PARP2 poly(ADP-ribose) polymerase 2 protein-coding 8.786 0.638
-10039 PARP3 poly(ADP-ribose) polymerase family member 3 protein-coding 8.696 0.8847
-1004 CDH6 cadherin 6 protein-coding 6.592 2.358
-10040 TOM1L1 target of myb1 like 1 membrane trafficking protein protein-coding 9.149 1.829
-10042 HMGXB4 HMG-box containing 4 protein-coding 9.055 0.6753
-10043 TOM1 target of myb1 membrane trafficking protein protein-coding 10.42 0.7208
-10044 SH2D3C SH2 domain containing 3C protein-coding 8.058 1.154
+10039 PARP3 poly(ADP-ribose) polymerase family member 3 protein-coding 8.696 0.8844
+1004 CDH6 cadherin 6 protein-coding 6.592 2.357
+10040 TOM1L1 target of myb1 like 1 membrane trafficking protein protein-coding 9.149 1.828
+10042 HMGXB4 HMG-box containing 4 protein-coding 9.055 0.675
+10043 TOM1 target of myb1 membrane trafficking protein protein-coding 10.42 0.7206
+10044 SH2D3C SH2 domain containing 3C protein-coding 8.059 1.154
10045 SH2D3A SH2 domain containing 3A protein-coding 7.46 2.622
-10046 MAMLD1 mastermind like domain containing 1 protein-coding 6.994 1.608
-10048 RANBP9 RAN binding protein 9 protein-coding 10.02 0.5669
-10049 DNAJB6 DnaJ heat shock protein family (Hsp40) member B6 protein-coding 10.56 0.5913
-10051 SMC4 structural maintenance of chromosomes 4 protein-coding 10.37 1.289
-10052 GJC1 gap junction protein gamma 1 protein-coding 7.642 1.478
+10046 MAMLD1 mastermind like domain containing 1 protein-coding 6.995 1.607
+10048 RANBP9 RAN binding protein 9 protein-coding 10.02 0.5667
+10049 DNAJB6 DnaJ heat shock protein family (Hsp40) member B6 protein-coding 10.56 0.5911
+10051 SMC4 structural maintenance of chromosomes 4 protein-coding 10.37 1.288
+10052 GJC1 gap junction protein gamma 1 protein-coding 7.643 1.478
10053 AP1M2 adaptor related protein complex 1 mu 2 subunit protein-coding 8.667 3.873
-10054 UBA2 ubiquitin like modifier activating enzyme 2 protein-coding 11.12 0.6242
-10055 SAE1 SUMO1 activating enzyme subunit 1 protein-coding 11.06 0.633
-10056 FARSB phenylalanyl-tRNA synthetase beta subunit protein-coding 9.987 0.5732
-10057 ABCC5 ATP binding cassette subfamily C member 5 protein-coding 9.942 1.343
-10058 ABCB6 ATP binding cassette subfamily B member 6 (Langereis blood group) protein-coding 9.397 1.024
-10059 DNM1L dynamin 1 like protein-coding 10.6 0.5748
-10060 ABCC9 ATP binding cassette subfamily C member 9 protein-coding 7.018 1.887
-10061 ABCF2 ATP binding cassette subfamily F member 2 protein-coding 10.44 0.4974
-10062 NR1H3 nuclear receptor subfamily 1 group H member 3 protein-coding 8.697 1.053
-10063 COX17 COX17, cytochrome c oxidase copper chaperone protein-coding 9.237 0.8351
+10054 UBA2 ubiquitin like modifier activating enzyme 2 protein-coding 11.12 0.6241
+10055 SAE1 SUMO1 activating enzyme subunit 1 protein-coding 11.06 0.6329
+10056 FARSB phenylalanyl-tRNA synthetase beta subunit protein-coding 9.987 0.5733
+10057 ABCC5 ATP binding cassette subfamily C member 5 protein-coding 9.942 1.342
+10058 ABCB6 ATP binding cassette subfamily B member 6 (Langereis blood group) protein-coding 9.396 1.023
+10059 DNM1L dynamin 1 like protein-coding 10.6 0.5747
+10060 ABCC9 ATP binding cassette subfamily C member 9 protein-coding 7.02 1.887
+10061 ABCF2 ATP binding cassette subfamily F member 2 protein-coding 10.44 0.4975
+10062 NR1H3 nuclear receptor subfamily 1 group H member 3 protein-coding 8.697 1.054
+10063 COX17 COX17, cytochrome c oxidase copper chaperone protein-coding 9.237 0.835
10066 SCAMP2 secretory carrier membrane protein 2 protein-coding 11.26 0.4842
10067 SCAMP3 secretory carrier membrane protein 3 protein-coding 10.71 0.5665
-10068 IL18BP interleukin 18 binding protein protein-coding 8.347 0.9984
-10069 RWDD2B RWD domain containing 2B protein-coding 8.454 0.6385
-10071 MUC12 mucin 12, cell surface associated protein-coding 3.45 2.747
+10068 IL18BP interleukin 18 binding protein protein-coding 8.347 0.9991
+10069 RWDD2B RWD domain containing 2B protein-coding 8.454 0.6384
+10071 MUC12 mucin 12, cell surface associated protein-coding 3.451 2.748
10072 DPP3 dipeptidyl peptidase 3 protein-coding 10.22 0.722
-10073 SNUPN snurportin 1 protein-coding 8.855 0.5018
-10075 HUWE1 HECT, UBA and WWE domain containing 1, E3 ubiquitin protein ligase protein-coding 12.47 0.5895
-10076 PTPRU protein tyrosine phosphatase, receptor type U protein-coding 9.32 1.649
-10077 TSPAN32 tetraspanin 32 protein-coding 3.537 1.521
-10078 TSSC4 tumor suppressing subtransferable candidate 4 protein-coding 9.459 0.6893
+10073 SNUPN snurportin 1 protein-coding 8.855 0.5017
+10075 HUWE1 HECT, UBA and WWE domain containing 1, E3 ubiquitin protein ligase protein-coding 12.47 0.5893
+10076 PTPRU protein tyrosine phosphatase, receptor type U protein-coding 9.321 1.648
+10077 TSPAN32 tetraspanin 32 protein-coding 3.539 1.522
+10078 TSSC4 tumor suppressing subtransferable candidate 4 protein-coding 9.459 0.689
10079 ATP9A ATPase phospholipid transporting 9A (putative) protein-coding 10.95 1.236
-10081 PDCD7 programmed cell death 7 protein-coding 8.921 0.453
-10082 GPC6 glypican 6 protein-coding 7.639 2.108
-10084 PQBP1 polyglutamine binding protein 1 protein-coding 10.28 0.6856
+10081 PDCD7 programmed cell death 7 protein-coding 8.921 0.4529
+10082 GPC6 glypican 6 protein-coding 7.64 2.107
+10084 PQBP1 polyglutamine binding protein 1 protein-coding 10.28 0.6854
10085 EDIL3 EGF like repeats and discoidin domains 3 protein-coding 6.669 2.563
-10087 COL4A3BP collagen type IV alpha 3 binding protein protein-coding 9.903 0.7379
-10089 KCNK7 potassium two pore domain channel subfamily K member 7 protein-coding 3.488 1.696
-1009 CDH11 cadherin 11 protein-coding 9.233 2.129
-10090 UST uronyl 2-sulfotransferase protein-coding 7.397 2.132
+10087 COL4A3BP collagen type IV alpha 3 binding protein protein-coding 9.904 0.7379
+10089 KCNK7 potassium two pore domain channel subfamily K member 7 protein-coding 3.488 1.695
+1009 CDH11 cadherin 11 protein-coding 9.234 2.128
+10090 UST uronyl 2-sulfotransferase protein-coding 7.398 2.132
10092 ARPC5 actin related protein 2/3 complex subunit 5 protein-coding 11.84 0.655
-10093 ARPC4 actin related protein 2/3 complex subunit 4 protein-coding 11.77 0.5161
-10094 ARPC3 actin related protein 2/3 complex subunit 3 protein-coding 11.97 0.6071
+10093 ARPC4 actin related protein 2/3 complex subunit 4 protein-coding 11.77 0.516
+10094 ARPC3 actin related protein 2/3 complex subunit 3 protein-coding 11.97 0.607
10095 ARPC1B actin related protein 2/3 complex subunit 1B protein-coding 11.67 1.11
10096 ACTR3 ARP3 actin related protein 3 homolog protein-coding 11.95 0.7061
-10097 ACTR2 ARP2 actin related protein 2 homolog protein-coding 12.41 0.6289
-10098 TSPAN5 tetraspanin 5 protein-coding 5.998 1.967
-10099 TSPAN3 tetraspanin 3 protein-coding 12.21 0.9983
+10097 ACTR2 ARP2 actin related protein 2 homolog protein-coding 12.41 0.6288
+10098 TSPAN5 tetraspanin 5 protein-coding 5.998 1.966
+10099 TSPAN3 tetraspanin 3 protein-coding 12.21 0.998
101 ADAM8 ADAM metallopeptidase domain 8 protein-coding 8.042 1.833
-1010 CDH12 cadherin 12 protein-coding 2.361 1.865
-10100 TSPAN2 tetraspanin 2 protein-coding 5.953 2.064
-10101 NUBP2 nucleotide binding protein 2 protein-coding 10.05 0.6922
-10102 TSFM Ts translation elongation factor, mitochondrial protein-coding 9.448 0.6439
-10103 TSPAN1 tetraspanin 1 protein-coding 9.161 3.687
-10105 PPIF peptidylprolyl isomerase F protein-coding 10.78 0.9999
-10106 CTDSP2 CTD small phosphatase 2 protein-coding 12.03 0.6502
+1010 CDH12 cadherin 12 protein-coding 2.361 1.864
+10100 TSPAN2 tetraspanin 2 protein-coding 5.956 2.064
+10101 NUBP2 nucleotide binding protein 2 protein-coding 10.05 0.692
+10102 TSFM Ts translation elongation factor, mitochondrial protein-coding 9.447 0.6441
+10103 TSPAN1 tetraspanin 1 protein-coding 9.161 3.688
+10105 PPIF peptidylprolyl isomerase F protein-coding 10.78 1
+10106 CTDSP2 CTD small phosphatase 2 protein-coding 12.03 0.65
10107 TRIM10 tripartite motif containing 10 protein-coding 2.084 2.516
-10109 ARPC2 actin related protein 2/3 complex subunit 2 protein-coding 12.17 0.6708
-10110 SGK2 SGK2, serine/threonine kinase 2 protein-coding 4.909 2.788
-10111 RAD50 RAD50 double strand break repair protein protein-coding 10.06 0.6968
-10112 KIF20A kinesin family member 20A protein-coding 7.99 2.126
+10109 ARPC2 actin related protein 2/3 complex subunit 2 protein-coding 12.17 0.6707
+10110 SGK2 SGK2, serine/threonine kinase 2 protein-coding 4.91 2.787
+10111 RAD50 RAD50 double strand break repair protein protein-coding 10.06 0.6965
+10112 KIF20A kinesin family member 20A protein-coding 7.988 2.127
10113 PREB prolactin regulatory element binding protein-coding 10.45 0.5513
-10114 HIPK3 homeodomain interacting protein kinase 3 protein-coding 9.117 1.554
+10114 HIPK3 homeodomain interacting protein kinase 3 protein-coding 9.118 1.553
10116 FEM1B fem-1 homolog B protein-coding 10.58 0.6354
-1012 CDH13 cadherin 13 protein-coding 7.962 1.707
-10120 ACTR1B ARP1 actin related protein 1 homolog B protein-coding 10.51 0.5064
-10121 ACTR1A ARP1 actin related protein 1 homolog A protein-coding 11.42 0.4944
+1012 CDH13 cadherin 13 protein-coding 7.962 1.706
+10120 ACTR1B ARP1 actin related protein 1 homolog B protein-coding 10.51 0.5062
+10121 ACTR1A ARP1 actin related protein 1 homolog A protein-coding 11.42 0.4943
10123 ARL4C ADP ribosylation factor like GTPase 4C protein-coding 9.857 1.549
-10124 ARL4A ADP ribosylation factor like GTPase 4A protein-coding 8.62 1.028
-10125 RASGRP1 RAS guanyl releasing protein 1 protein-coding 6.769 1.959
+10124 ARL4A ADP ribosylation factor like GTPase 4A protein-coding 8.619 1.027
+10125 RASGRP1 RAS guanyl releasing protein 1 protein-coding 6.769 1.96
10126 DNAL4 dynein axonemal light chain 4 protein-coding 8.863 0.7231
-10127 ZNF263 zinc finger protein 263 protein-coding 9.488 0.4558
-10128 LRPPRC leucine rich pentatricopeptide repeat containing protein-coding 11.67 0.6164
-10129 FRY FRY microtubule binding protein protein-coding 8.501 1.574
-1013 CDH15 cadherin 15 protein-coding 2.721 2.083
+10127 ZNF263 zinc finger protein 263 protein-coding 9.488 0.4556
+10128 LRPPRC leucine rich pentatricopeptide repeat containing protein-coding 11.67 0.6162
+10129 FRY FRY microtubule binding protein protein-coding 8.502 1.574
+1013 CDH15 cadherin 15 protein-coding 2.721 2.082
10130 PDIA6 protein disulfide isomerase family A member 6 protein-coding 12.74 0.7397
-10131 TRAP1 TNF receptor associated protein 1 protein-coding 11.08 0.6845
-10133 OPTN optineurin protein-coding 10.8 0.8855
+10131 TRAP1 TNF receptor associated protein 1 protein-coding 11.08 0.6849
+10133 OPTN optineurin protein-coding 10.8 0.8853
10134 BCAP31 B cell receptor associated protein 31 protein-coding 12.57 0.644
10135 NAMPT nicotinamide phosphoribosyltransferase protein-coding 11.09 1.198
-10137 RBM12 RNA binding motif protein 12 protein-coding 10.73 0.4974
-10138 YAF2 YY1 associated factor 2 protein-coding 8.244 0.6998
-10139 ARFRP1 ADP ribosylation factor related protein 1 protein-coding 9.703 0.6972
+10137 RBM12 RNA binding motif protein 12 protein-coding 10.73 0.4972
+10138 YAF2 YY1 associated factor 2 protein-coding 8.244 0.6995
+10139 ARFRP1 ADP ribosylation factor related protein 1 protein-coding 9.703 0.6969
10140 TOB1 transducer of ERBB2, 1 protein-coding 10.44 1.117
-10142 AKAP9 A-kinase anchoring protein 9 protein-coding 10.4 0.9183
+10142 AKAP9 A-kinase anchoring protein 9 protein-coding 10.4 0.9182
10144 FAM13A family with sequence similarity 13 member A protein-coding 9.249 1.312
10146 G3BP1 G3BP stress granule assembly factor 1 protein-coding 11.08 0.5986
-10147 SUGP2 SURP and G-patch domain containing 2 protein-coding 10.32 0.7205
-10148 EBI3 Epstein-Barr virus induced 3 protein-coding 5.33 1.592
-10149 ADGRG2 adhesion G protein-coupled receptor G2 protein-coding 4.401 2.444
-10150 MBNL2 muscleblind like splicing regulator 2 protein-coding 10.13 0.9423
-10151 HNRNPA3P1 heterogeneous nuclear ribonucleoprotein A3 pseudogene 1 pseudo 6.683 0.7987
-10152 ABI2 abl interactor 2 protein-coding 10.19 0.9371
-10153 CEBPZ CCAAT enhancer binding protein zeta protein-coding 10.21 0.5531
-10154 PLXNC1 plexin C1 protein-coding 6.893 2.186
-10155 TRIM28 tripartite motif containing 28 protein-coding 12.56 0.7096
-10156 RASA4 RAS p21 protein activator 4 protein-coding 7.802 1.217
-10157 AASS aminoadipate-semialdehyde synthase protein-coding 8.194 1.493
-10158 PDZK1IP1 PDZK1 interacting protein 1 protein-coding 8.041 3.872
-10159 ATP6AP2 ATPase H+ transporting accessory protein 2 protein-coding 11.82 0.5807
+10147 SUGP2 SURP and G-patch domain containing 2 protein-coding 10.33 0.7203
+10148 EBI3 Epstein-Barr virus induced 3 protein-coding 5.331 1.592
+10149 ADGRG2 adhesion G protein-coupled receptor G2 protein-coding 4.403 2.444
+10150 MBNL2 muscleblind like splicing regulator 2 protein-coding 10.13 0.9425
+10151 HNRNPA3P1 heterogeneous nuclear ribonucleoprotein A3 pseudogene 1 pseudo 6.683 0.7986
+10152 ABI2 abl interactor 2 protein-coding 10.19 0.9367
+10153 CEBPZ CCAAT enhancer binding protein zeta protein-coding 10.21 0.5529
+10154 PLXNC1 plexin C1 protein-coding 6.894 2.186
+10155 TRIM28 tripartite motif containing 28 protein-coding 12.56 0.7095
+10156 RASA4 RAS p21 protein activator 4 protein-coding 7.803 1.217
+10157 AASS aminoadipate-semialdehyde synthase protein-coding 8.195 1.493
+10158 PDZK1IP1 PDZK1 interacting protein 1 protein-coding 8.04 3.873
+10159 ATP6AP2 ATPase H+ transporting accessory protein 2 protein-coding 11.82 0.5806
10160 FARP1 FERM, ARH/RhoGEF and pleckstrin domain protein 1 protein-coding 10.87 1.181
-10161 LPAR6 lysophosphatidic acid receptor 6 protein-coding 8.883 1.175
-10162 LPCAT3 lysophosphatidylcholine acyltransferase 3 protein-coding 10.5 0.873
-10163 WASF2 WAS protein family member 2 protein-coding 11.7 0.7092
-10164 CHST4 carbohydrate sulfotransferase 4 protein-coding 2.362 2.436
-10165 SLC25A13 solute carrier family 25 member 13 protein-coding 9.486 0.8326
-10166 SLC25A15 solute carrier family 25 member 15 protein-coding 8.416 1.079
-10168 ZNF197 zinc finger protein 197 protein-coding 8.439 0.5883
-10169 SERF2 small EDRK-rich factor 2 protein-coding 13.1 0.7812
-1017 CDK2 cyclin dependent kinase 2 protein-coding 9.449 1.07
-10170 DHRS9 dehydrogenase/reductase 9 protein-coding 5.254 2.454
-10171 RCL1 RNA terminal phosphate cyclase like 1 protein-coding 8.475 0.7195
-10172 ZNF256 zinc finger protein 256 protein-coding 6.345 1.23
-10174 SORBS3 sorbin and SH3 domain containing 3 protein-coding 10.79 0.9152
-10175 CNIH1 cornichon family AMPA receptor auxiliary protein 1 protein-coding 10.26 0.6189
-10178 TENM1 teneurin transmembrane protein 1 protein-coding 5.136 3.218
-10179 RBM7 RNA binding motif protein 7 protein-coding 8.781 0.7295
+10161 LPAR6 lysophosphatidic acid receptor 6 protein-coding 8.884 1.175
+10162 LPCAT3 lysophosphatidylcholine acyltransferase 3 protein-coding 10.5 0.8728
+10163 WASF2 WAS protein family member 2 protein-coding 11.7 0.709
+10164 CHST4 carbohydrate sulfotransferase 4 protein-coding 2.364 2.439
+10165 SLC25A13 solute carrier family 25 member 13 protein-coding 9.485 0.8324
+10166 SLC25A15 solute carrier family 25 member 15 protein-coding 8.415 1.079
+10168 ZNF197 zinc finger protein 197 protein-coding 8.439 0.5881
+10169 SERF2 small EDRK-rich factor 2 protein-coding 13.1 0.7811
+1017 CDK2 cyclin dependent kinase 2 protein-coding 9.448 1.07
+10170 DHRS9 dehydrogenase/reductase 9 protein-coding 5.255 2.455
+10171 RCL1 RNA terminal phosphate cyclase like 1 protein-coding 8.475 0.7194
+10172 ZNF256 zinc finger protein 256 protein-coding 6.346 1.23
+10174 SORBS3 sorbin and SH3 domain containing 3 protein-coding 10.79 0.9151
+10175 CNIH1 cornichon family AMPA receptor auxiliary protein 1 protein-coding 10.26 0.6187
+10178 TENM1 teneurin transmembrane protein 1 protein-coding 5.138 3.217
+10179 RBM7 RNA binding motif protein 7 protein-coding 8.781 0.7293
1018 CDK3 cyclin dependent kinase 3 protein-coding 7.285 1.131
10180 RBM6 RNA binding motif protein 6 protein-coding 10.26 0.7091
-10181 RBM5 RNA binding motif protein 5 protein-coding 10.74 0.639
+10181 RBM5 RNA binding motif protein 5 protein-coding 10.74 0.6391
10184 LHFPL2 LHFPL tetraspan subfamily member 2 protein-coding 9.639 1.08
-10186 LHFPL6 LHFPL tetraspan subfamily member 6 protein-coding 8.931 1.312
+10186 LHFPL6 LHFPL tetraspan subfamily member 6 protein-coding 8.932 1.312
10188 TNK2 tyrosine kinase non receptor 2 protein-coding 10.35 1.102
10189 ALYREF Aly/REF export factor protein-coding 10.16 0.8369
-1019 CDK4 cyclin dependent kinase 4 protein-coding 11.41 0.7974
+1019 CDK4 cyclin dependent kinase 4 protein-coding 11.41 0.7975
10190 TXNDC9 thioredoxin domain containing 9 protein-coding 9.135 0.5945
10193 RNF41 ring finger protein 41 protein-coding 9.821 0.6046
-10194 TSHZ1 teashirt zinc finger homeobox 1 protein-coding 9.283 0.9268
+10194 TSHZ1 teashirt zinc finger homeobox 1 protein-coding 9.284 0.9268
10195 ALG3 ALG3, alpha-1,3- mannosyltransferase protein-coding 10.07 0.8939
-10196 PRMT3 protein arginine methyltransferase 3 protein-coding 8.443 0.7291
-10197 PSME3 proteasome activator subunit 3 protein-coding 11.2 0.5238
-10198 MPHOSPH9 M-phase phosphoprotein 9 protein-coding 7.499 0.9463
-10199 MPHOSPH10 M-phase phosphoprotein 10 protein-coding 9.727 0.5714
+10196 PRMT3 protein arginine methyltransferase 3 protein-coding 8.443 0.729
+10197 PSME3 proteasome activator subunit 3 protein-coding 11.2 0.5239
+10198 MPHOSPH9 M-phase phosphoprotein 9 protein-coding 7.499 0.946
+10199 MPHOSPH10 M-phase phosphoprotein 10 protein-coding 9.727 0.5713
102 ADAM10 ADAM metallopeptidase domain 10 protein-coding 10.42 1.037
-1020 CDK5 cyclin dependent kinase 5 protein-coding 8.545 0.7255
-10200 MPHOSPH6 M-phase phosphoprotein 6 protein-coding 8.268 0.795
-10201 NME6 NME/NM23 nucleoside diphosphate kinase 6 protein-coding 7.547 0.531
-10203 CALCRL calcitonin receptor like receptor protein-coding 8.624 1.617
+1020 CDK5 cyclin dependent kinase 5 protein-coding 8.544 0.7257
+10200 MPHOSPH6 M-phase phosphoprotein 6 protein-coding 8.267 0.7949
+10201 NME6 NME/NM23 nucleoside diphosphate kinase 6 protein-coding 7.547 0.5308
+10203 CALCRL calcitonin receptor like receptor protein-coding 8.625 1.617
10204 NUTF2 nuclear transport factor 2 protein-coding 10.91 0.6434
-10205 MPZL2 myelin protein zero like 2 protein-coding 9.742 2.42
-10206 TRIM13 tripartite motif containing 13 protein-coding 9.308 0.6609
-10207 PATJ PATJ, crumbs cell polarity complex component protein-coding 9.939 1.361
-10208 USPL1 ubiquitin specific peptidase like 1 protein-coding 8.584 0.6286
-10209 EIF1 eukaryotic translation initiation factor 1 protein-coding 13.49 0.5217
+10205 MPZL2 myelin protein zero like 2 protein-coding 9.743 2.42
+10206 TRIM13 tripartite motif containing 13 protein-coding 9.309 0.6608
+10207 PATJ PATJ, crumbs cell polarity complex component protein-coding 9.939 1.36
+10208 USPL1 ubiquitin specific peptidase like 1 protein-coding 8.584 0.6284
+10209 EIF1 eukaryotic translation initiation factor 1 protein-coding 13.49 0.5216
1021 CDK6 cyclin dependent kinase 6 protein-coding 9.587 1.52
-10210 TOPORS TOP1 binding arginine/serine rich protein protein-coding 8.979 0.5895
-10211 FLOT1 flotillin 1 protein-coding 11.91 0.6048
-10212 DDX39A DExD-box helicase 39A protein-coding 10.27 0.907
-10213 PSMD14 proteasome 26S subunit, non-ATPase 14 protein-coding 10.43 0.5814
-10216 PRG4 proteoglycan 4 protein-coding 4.128 2.948
-10217 CTDSPL CTD small phosphatase like protein-coding 9.987 0.8286
-10218 ANGPTL7 angiopoietin like 7 protein-coding 1.708 2.167
-10219 KLRG1 killer cell lectin like receptor G1 protein-coding 4.232 1.268
+10210 TOPORS TOP1 binding arginine/serine rich protein protein-coding 8.98 0.5893
+10211 FLOT1 flotillin 1 protein-coding 11.91 0.6047
+10212 DDX39A DExD-box helicase 39A protein-coding 10.27 0.9075
+10213 PSMD14 proteasome 26S subunit, non-ATPase 14 protein-coding 10.43 0.5819
+10216 PRG4 proteoglycan 4 protein-coding 4.129 2.949
+10217 CTDSPL CTD small phosphatase like protein-coding 9.987 0.8287
+10218 ANGPTL7 angiopoietin like 7 protein-coding 1.711 2.169
+10219 KLRG1 killer cell lectin like receptor G1 protein-coding 4.233 1.269
1022 CDK7 cyclin dependent kinase 7 protein-coding 8.808 0.627
-10220 GDF11 growth differentiation factor 11 protein-coding 7.894 1.331
+10220 GDF11 growth differentiation factor 11 protein-coding 7.894 1.33
10221 TRIB1 tribbles pseudokinase 1 protein-coding 10.61 1.299
-10223 GPA33 glycoprotein A33 protein-coding 2.999 2.882
-10224 ZNF443 zinc finger protein 443 protein-coding 6.437 0.9915
-10225 CD96 CD96 molecule protein-coding 6.076 2.086
-10226 PLIN3 perilipin 3 protein-coding 10.77 0.8346
-10227 MFSD10 major facilitator superfamily domain containing 10 protein-coding 10.47 0.921
-10228 STX6 syntaxin 6 protein-coding 10.32 0.6545
-10229 COQ7 coenzyme Q7, hydroxylase protein-coding 8.735 0.5859
-10230 NBR2 neighbor of BRCA1 gene 2 (non-protein coding) ncRNA 7.162 0.8769
-10231 RCAN2 regulator of calcineurin 2 protein-coding 7.884 1.708
-10232 MSLN mesothelin protein-coding 5.71 4.282
+10223 GPA33 glycoprotein A33 protein-coding 3 2.881
+10224 ZNF443 zinc finger protein 443 protein-coding 6.438 0.991
+10225 CD96 CD96 molecule protein-coding 6.078 2.086
+10226 PLIN3 perilipin 3 protein-coding 10.77 0.8345
+10227 MFSD10 major facilitator superfamily domain containing 10 protein-coding 10.47 0.9206
+10228 STX6 syntaxin 6 protein-coding 10.32 0.6544
+10229 COQ7 coenzyme Q7, hydroxylase protein-coding 8.735 0.5857
+10230 NBR2 neighbor of BRCA1 gene 2 (non-protein coding) ncRNA 7.162 0.8766
+10231 RCAN2 regulator of calcineurin 2 protein-coding 7.885 1.707
+10232 MSLN mesothelin protein-coding 5.711 4.283
10233 LRRC23 leucine rich repeat containing 23 protein-coding 7.703 1.073
-10234 LRRC17 leucine rich repeat containing 17 protein-coding 6.15 2.002
-10235 RASGRP2 RAS guanyl releasing protein 2 protein-coding 6.164 1.715
-10236 HNRNPR heterogeneous nuclear ribonucleoprotein R protein-coding 11.42 0.5008
-10237 SLC35B1 solute carrier family 35 member B1 protein-coding 9.999 0.5518
-10238 DCAF7 DDB1 and CUL4 associated factor 7 protein-coding 11.45 0.5715
-10239 AP3S2 adaptor related protein complex 3 sigma 2 subunit protein-coding 10.48 0.525
+10234 LRRC17 leucine rich repeat containing 17 protein-coding 6.15 2.001
+10235 RASGRP2 RAS guanyl releasing protein 2 protein-coding 6.166 1.717
+10236 HNRNPR heterogeneous nuclear ribonucleoprotein R protein-coding 11.42 0.5007
+10237 SLC35B1 solute carrier family 35 member B1 protein-coding 9.998 0.5521
+10238 DCAF7 DDB1 and CUL4 associated factor 7 protein-coding 11.45 0.5713
+10239 AP3S2 adaptor related protein complex 3 sigma 2 subunit protein-coding 10.48 0.5248
1024 CDK8 cyclin dependent kinase 8 protein-coding 7.318 1.053
-10240 MRPS31 mitochondrial ribosomal protein S31 protein-coding 8.332 0.5678
-10241 CALCOCO2 calcium binding and coiled-coil domain 2 protein-coding 10.92 0.5708
-10242 KCNMB2 potassium calcium-activated channel subfamily M regulatory beta subunit 2 protein-coding 2.946 2.131
-10243 GPHN gephyrin protein-coding 8.549 0.9265
+10240 MRPS31 mitochondrial ribosomal protein S31 protein-coding 8.332 0.5677
+10241 CALCOCO2 calcium binding and coiled-coil domain 2 protein-coding 10.92 0.5706
+10242 KCNMB2 potassium calcium-activated channel subfamily M regulatory beta subunit 2 protein-coding 2.948 2.132
+10243 GPHN gephyrin protein-coding 8.549 0.9262
10244 RABEPK Rab9 effector protein with kelch motifs protein-coding 8.842 0.653
-10245 TIMM17B translocase of inner mitochondrial membrane 17B protein-coding 9.678 0.743
-10247 RIDA reactive intermediate imine deaminase A homolog protein-coding 8.81 1.311
-10248 POP7 POP7 homolog, ribonuclease P/MRP subunit protein-coding 9.292 0.6591
-1025 CDK9 cyclin dependent kinase 9 protein-coding 10.32 0.5316
-10250 SRRM1 serine and arginine repetitive matrix 1 protein-coding 10.78 0.5605
-10251 SPRY3 sprouty RTK signaling antagonist 3 protein-coding 5.772 1.125
-10252 SPRY1 sprouty RTK signaling antagonist 1 protein-coding 9.122 1.36
+10245 TIMM17B translocase of inner mitochondrial membrane 17B protein-coding 9.677 0.7429
+10247 RIDA reactive intermediate imine deaminase A homolog protein-coding 8.809 1.31
+10248 POP7 POP7 homolog, ribonuclease P/MRP subunit protein-coding 9.291 0.6593
+1025 CDK9 cyclin dependent kinase 9 protein-coding 10.32 0.5314
+10250 SRRM1 serine and arginine repetitive matrix 1 protein-coding 10.78 0.5604
+10251 SPRY3 sprouty RTK signaling antagonist 3 protein-coding 5.773 1.124
+10252 SPRY1 sprouty RTK signaling antagonist 1 protein-coding 9.123 1.36
10253 SPRY2 sprouty RTK signaling antagonist 2 protein-coding 8.771 1.35
-10254 STAM2 signal transducing adaptor molecule 2 protein-coding 9.511 0.5572
-10256 CNKSR1 connector enhancer of kinase suppressor of Ras 1 protein-coding 7.548 2.799
-10257 ABCC4 ATP binding cassette subfamily C member 4 protein-coding 8.709 1.957
+10254 STAM2 signal transducing adaptor molecule 2 protein-coding 9.512 0.5571
+10256 CNKSR1 connector enhancer of kinase suppressor of Ras 1 protein-coding 7.548 2.798
+10257 ABCC4 ATP binding cassette subfamily C member 4 protein-coding 8.71 1.956
1026 CDKN1A cyclin dependent kinase inhibitor 1A protein-coding 11.45 1.314
-10260 DENND4A DENN domain containing 4A protein-coding 8.679 0.8158
-10261 IGSF6 immunoglobulin superfamily member 6 protein-coding 6.188 1.56
-10262 SF3B4 splicing factor 3b subunit 4 protein-coding 10.96 0.6007
-10263 CDK2AP2 cyclin dependent kinase 2 associated protein 2 protein-coding 10.43 0.8584
-10265 IRX5 iroquois homeobox 5 protein-coding 5.629 2.751
-10266 RAMP2 receptor activity modifying protein 2 protein-coding 8.087 1.192
-10267 RAMP1 receptor activity modifying protein 1 protein-coding 8.015 2.746
-10268 RAMP3 receptor activity modifying protein 3 protein-coding 8.013 1.48
-10269 ZMPSTE24 zinc metallopeptidase STE24 protein-coding 10.58 0.6171
-1027 CDKN1B cyclin dependent kinase inhibitor 1B protein-coding 10.43 0.751
-10270 AKAP8 A-kinase anchoring protein 8 protein-coding 9.461 0.4253
-10272 FSTL3 follistatin like 3 protein-coding 9.166 1.591
-10273 STUB1 STIP1 homology and U-box containing protein 1 protein-coding 10.8 0.6912
-10274 STAG1 stromal antigen 1 protein-coding 9.282 0.9026
+10260 DENND4A DENN domain containing 4A protein-coding 8.68 0.8158
+10261 IGSF6 immunoglobulin superfamily member 6 protein-coding 6.188 1.561
+10262 SF3B4 splicing factor 3b subunit 4 protein-coding 10.96 0.6006
+10263 CDK2AP2 cyclin dependent kinase 2 associated protein 2 protein-coding 10.43 0.8583
+10265 IRX5 iroquois homeobox 5 protein-coding 5.628 2.751
+10266 RAMP2 receptor activity modifying protein 2 protein-coding 8.088 1.192
+10267 RAMP1 receptor activity modifying protein 1 protein-coding 8.016 2.746
+10268 RAMP3 receptor activity modifying protein 3 protein-coding 8.015 1.48
+10269 ZMPSTE24 zinc metallopeptidase STE24 protein-coding 10.58 0.617
+1027 CDKN1B cyclin dependent kinase inhibitor 1B protein-coding 10.44 0.7507
+10270 AKAP8 A-kinase anchoring protein 8 protein-coding 9.461 0.4251
+10272 FSTL3 follistatin like 3 protein-coding 9.167 1.591
+10273 STUB1 STIP1 homology and U-box containing protein 1 protein-coding 10.8 0.691
+10274 STAG1 stromal antigen 1 protein-coding 9.282 0.9023
10276 NET1 neuroepithelial cell transforming 1 protein-coding 11.05 1.26
-10277 UBE4B ubiquitination factor E4B protein-coding 10.25 0.5936
-10278 EFS embryonal Fyn-associated substrate protein-coding 8.136 2.43
-10279 PRSS16 serine protease 16 protein-coding 6.874 2.925
-1028 CDKN1C cyclin dependent kinase inhibitor 1C protein-coding 7.951 1.488
+10277 UBE4B ubiquitination factor E4B protein-coding 10.25 0.5935
+10278 EFS embryonal Fyn-associated substrate protein-coding 8.137 2.43
+10279 PRSS16 serine protease 16 protein-coding 6.875 2.924
+1028 CDKN1C cyclin dependent kinase inhibitor 1C protein-coding 7.952 1.488
10280 SIGMAR1 sigma non-opioid intracellular receptor 1 protein-coding 10.55 0.8073
-10282 BET1 Bet1 golgi vesicular membrane trafficking protein protein-coding 9.021 0.62
-10283 CWC27 CWC27 spliceosome associated protein homolog protein-coding 8.642 0.4847
-10284 SAP18 Sin3A associated protein 18 protein-coding 11.32 0.555
-10285 SMNDC1 survival motor neuron domain containing 1 protein-coding 9.331 0.5173
+10282 BET1 Bet1 golgi vesicular membrane trafficking protein protein-coding 9.021 0.6201
+10283 CWC27 CWC27 spliceosome associated protein homolog protein-coding 8.641 0.4845
+10284 SAP18 Sin3A associated protein 18 protein-coding 11.32 0.5548
+10285 SMNDC1 survival motor neuron domain containing 1 protein-coding 9.331 0.5172
10286 BCAS2 BCAS2, pre-mRNA processing factor protein-coding 9.461 0.5142
10287 RGS19 regulator of G protein signaling 19 protein-coding 8.195 0.9111
10288 LILRB2 leukocyte immunoglobulin like receptor B2 protein-coding 6.488 1.628
-10289 EIF1B eukaryotic translation initiation factor 1B protein-coding 9.488 0.5927
-1029 CDKN2A cyclin dependent kinase inhibitor 2A protein-coding 7.132 2.584
-10290 SPEG SPEG complex locus protein-coding 7.203 2.454
-10291 SF3A1 splicing factor 3a subunit 1 protein-coding 11.44 0.4729
-10293 TRAIP TRAF interacting protein protein-coding 6.643 1.183
-10294 DNAJA2 DnaJ heat shock protein family (Hsp40) member A2 protein-coding 10.68 0.4634
-10295 BCKDK branched chain ketoacid dehydrogenase kinase protein-coding 10.27 0.6103
-10296 MAEA macrophage erythroblast attacher protein-coding 10.38 0.5005
-10297 APC2 APC2, WNT signaling pathway regulator protein-coding 4.373 3.014
-10298 PAK4 p21 (RAC1) activated kinase 4 protein-coding 10.52 0.8078
-10299 MARCH6 membrane associated ring-CH-type finger 6 protein-coding 10.84 0.7276
-103 ADAR adenosine deaminase, RNA specific protein-coding 12.81 0.59
+10289 EIF1B eukaryotic translation initiation factor 1B protein-coding 9.488 0.5925
+1029 CDKN2A cyclin dependent kinase inhibitor 2A protein-coding 7.13 2.583
+10290 SPEG SPEG complex locus protein-coding 7.205 2.454
+10291 SF3A1 splicing factor 3a subunit 1 protein-coding 11.44 0.4728
+10293 TRAIP TRAF interacting protein protein-coding 6.642 1.183
+10294 DNAJA2 DnaJ heat shock protein family (Hsp40) member A2 protein-coding 10.68 0.4632
+10295 BCKDK branched chain ketoacid dehydrogenase kinase protein-coding 10.27 0.6102
+10296 MAEA macrophage erythroblast attacher protein-coding 10.38 0.5003
+10297 APC2 APC2, WNT signaling pathway regulator protein-coding 4.372 3.013
+10298 PAK4 p21 (RAC1) activated kinase 4 protein-coding 10.52 0.808
+10299 MARCH6 membrane associated ring-CH-type finger 6 protein-coding 10.84 0.7273
+103 ADAR adenosine deaminase, RNA specific protein-coding 12.81 0.5897
1030 CDKN2B cyclin dependent kinase inhibitor 2B protein-coding 8.153 1.805
-10300 KATNB1 katanin regulatory subunit B1 protein-coding 9.062 0.6729
-10301 DLEU1 deleted in lymphocytic leukemia 1 (non-protein coding) ncRNA 6.63 0.87
+10300 KATNB1 katanin regulatory subunit B1 protein-coding 9.061 0.6727
+10301 DLEU1 deleted in lymphocytic leukemia 1 (non-protein coding) ncRNA 6.63 0.8698
10302 SNAPC5 small nuclear RNA activating complex polypeptide 5 protein-coding 6.694 0.5792
10307 APBB3 amyloid beta precursor protein binding family B member 3 protein-coding 8.112 1.015
-10308 ZNF267 zinc finger protein 267 protein-coding 8.261 0.8078
-1031 CDKN2C cyclin dependent kinase inhibitor 2C protein-coding 8.402 1.314
-10311 VPS26C VPS26 endosomal protein sorting factor C protein-coding 9.739 0.5096
+10308 ZNF267 zinc finger protein 267 protein-coding 8.261 0.8077
+1031 CDKN2C cyclin dependent kinase inhibitor 2C protein-coding 8.401 1.313
+10311 VPS26C VPS26 endosomal protein sorting factor C protein-coding 9.739 0.5095
10312 TCIRG1 T cell immune regulator 1, ATPase H+ transporting V0 subunit a3 protein-coding 10.32 1.192
-10313 RTN3 reticulon 3 protein-coding 11.98 0.7834
-10314 LANCL1 LanC like 1 protein-coding 10.31 0.7688
-10316 NMUR1 neuromedin U receptor 1 protein-coding 3.555 1.658
-10318 TNIP1 TNFAIP3 interacting protein 1 protein-coding 11.55 0.7471
-10319 LAMC3 laminin subunit gamma 3 protein-coding 6.865 2.157
+10313 RTN3 reticulon 3 protein-coding 11.98 0.7832
+10314 LANCL1 LanC like 1 protein-coding 10.31 0.7685
+10316 NMUR1 neuromedin U receptor 1 protein-coding 3.558 1.659
+10318 TNIP1 TNFAIP3 interacting protein 1 protein-coding 11.55 0.747
+10319 LAMC3 laminin subunit gamma 3 protein-coding 6.866 2.157
1032 CDKN2D cyclin dependent kinase inhibitor 2D protein-coding 7.665 1.063
-10320 IKZF1 IKAROS family zinc finger 1 protein-coding 7.535 1.656
-10321 CRISP3 cysteine rich secretory protein 3 protein-coding 2.375 3.334
-10322 SMYD5 SMYD family member 5 protein-coding 9.548 0.4969
-10324 KLHL41 kelch like family member 41 protein-coding 4.006 1.847
-10325 RRAGB Ras related GTP binding B protein-coding 8.076 0.8453
-10326 SIRPB1 signal regulatory protein beta 1 protein-coding 6.224 1.61
+10320 IKZF1 IKAROS family zinc finger 1 protein-coding 7.536 1.657
+10321 CRISP3 cysteine rich secretory protein 3 protein-coding 2.377 3.338
+10322 SMYD5 SMYD family member 5 protein-coding 9.548 0.4971
+10324 KLHL41 kelch like family member 41 protein-coding 4.008 1.847
+10325 RRAGB Ras related GTP binding B protein-coding 8.077 0.8453
+10326 SIRPB1 signal regulatory protein beta 1 protein-coding 6.225 1.61
10327 AKR1A1 aldo-keto reductase family 1 member A1 protein-coding 11.3 0.6878
10328 EMC8 ER membrane protein complex subunit 8 protein-coding 9.039 0.5295
-10329 RXYLT1 ribitol xylosyltransferase 1 protein-coding 8.314 0.5249
-1033 CDKN3 cyclin dependent kinase inhibitor 3 protein-coding 6.852 1.863
-10330 CNPY2 canopy FGF signaling regulator 2 protein-coding 10.64 0.6438
+10329 RXYLT1 ribitol xylosyltransferase 1 protein-coding 8.314 0.5248
+1033 CDKN3 cyclin dependent kinase inhibitor 3 protein-coding 6.85 1.864
+10330 CNPY2 canopy FGF signaling regulator 2 protein-coding 10.64 0.644
10331 B3GNT3 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 3 protein-coding 6.615 3.78
-10333 TLR6 toll like receptor 6 protein-coding 4.36 1.535
-10335 MRVI1 murine retrovirus integration site 1 homolog protein-coding 8.271 1.726
-10336 PCGF3 polycomb group ring finger 3 protein-coding 10.21 0.623
+10333 TLR6 toll like receptor 6 protein-coding 4.361 1.535
+10335 MRVI1 murine retrovirus integration site 1 homolog protein-coding 8.273 1.727
+10336 PCGF3 polycomb group ring finger 3 protein-coding 10.21 0.6228
10342 TFG TRK-fused gene protein-coding 11.25 0.5507
-10343 PKDREJ polycystin family receptor for egg jelly protein-coding 3.193 1.172
-10346 TRIM22 tripartite motif containing 22 protein-coding 9.694 1.403
-10347 ABCA7 ATP binding cassette subfamily A member 7 protein-coding 8.49 1.218
-10349 ABCA10 ATP binding cassette subfamily A member 10 protein-coding 3.766 1.696
-10350 ABCA9 ATP binding cassette subfamily A member 9 protein-coding 4.723 1.919
-10351 ABCA8 ATP binding cassette subfamily A member 8 protein-coding 5.805 2.782
-10352 WARS2 tryptophanyl tRNA synthetase 2, mitochondrial protein-coding 8.328 0.6512
-10357 HMGB1P1 high mobility group box 1 pseudogene 1 pseudo 6.986 0.8745
-1036 CDO1 cysteine dioxygenase type 1 protein-coding 5.277 3.142
-10360 NPM3 nucleophosmin/nucleoplasmin 3 protein-coding 8.731 1.049
-10361 NPM2 nucleophosmin/nucleoplasmin 2 protein-coding 4.98 2.255
-10362 HMG20B high mobility group 20B protein-coding 10.59 0.858
+10343 PKDREJ polycystin family receptor for egg jelly protein-coding 3.194 1.172
+10346 TRIM22 tripartite motif containing 22 protein-coding 9.695 1.403
+10347 ABCA7 ATP binding cassette subfamily A member 7 protein-coding 8.491 1.218
+10349 ABCA10 ATP binding cassette subfamily A member 10 protein-coding 3.767 1.697
+10350 ABCA9 ATP binding cassette subfamily A member 9 protein-coding 4.726 1.92
+10351 ABCA8 ATP binding cassette subfamily A member 8 protein-coding 5.808 2.783
+10352 WARS2 tryptophanyl tRNA synthetase 2, mitochondrial protein-coding 8.328 0.651
+10357 HMGB1P1 high mobility group box 1 pseudogene 1 pseudo 6.986 0.8744
+1036 CDO1 cysteine dioxygenase type 1 protein-coding 5.28 3.141
+10360 NPM3 nucleophosmin/nucleoplasmin 3 protein-coding 8.73 1.049
+10361 NPM2 nucleophosmin/nucleoplasmin 2 protein-coding 4.981 2.255
+10362 HMG20B high mobility group 20B protein-coding 10.59 0.8578
10363 HMG20A high mobility group 20A protein-coding 9.632 0.5504
-10365 KLF2 Kruppel like factor 2 protein-coding 8.18 1.338
-10367 MICU1 mitochondrial calcium uptake 1 protein-coding 10.22 0.5666
-10370 CITED2 Cbp/p300 interacting transactivator with Glu/Asp rich carboxy-terminal domain 2 protein-coding 9.922 1.299
-10371 SEMA3A semaphorin 3A protein-coding 5.76 2.289
-10376 TUBA1B tubulin alpha 1b protein-coding 14.14 0.8062
-10379 IRF9 interferon regulatory factor 9 protein-coding 10.39 0.8179
+10365 KLF2 Kruppel like factor 2 protein-coding 8.182 1.339
+10367 MICU1 mitochondrial calcium uptake 1 protein-coding 10.22 0.5664
+10370 CITED2 Cbp/p300 interacting transactivator with Glu/Asp rich carboxy-terminal domain 2 protein-coding 9.923 1.3
+10371 SEMA3A semaphorin 3A protein-coding 5.762 2.289
+10376 TUBA1B tubulin alpha 1b protein-coding 14.14 0.8065
+10379 IRF9 interferon regulatory factor 9 protein-coding 10.39 0.8176
1038 CDR1 cerebellar degeneration related protein 1 protein-coding 1.916 2.123
-10380 BPNT1 3'(2'), 5'-bisphosphate nucleotidase 1 protein-coding 9.466 0.6369
-10381 TUBB3 tubulin beta 3 class III protein-coding 9.747 1.879
-10382 TUBB4A tubulin beta 4A class IVa protein-coding 7.19 2.683
-10383 TUBB4B tubulin beta 4B class IVb protein-coding 12.76 0.8784
-10384 BTN3A3 butyrophilin subfamily 3 member A3 protein-coding 8.907 1.004
+10380 BPNT1 3'(2'), 5'-bisphosphate nucleotidase 1 protein-coding 9.466 0.6368
+10381 TUBB3 tubulin beta 3 class III protein-coding 9.746 1.88
+10382 TUBB4A tubulin beta 4A class IVa protein-coding 7.19 2.682
+10383 TUBB4B tubulin beta 4B class IVb protein-coding 12.76 0.8782
+10384 BTN3A3 butyrophilin subfamily 3 member A3 protein-coding 8.908 1.004
10385 BTN2A2 butyrophilin subfamily 2 member A2 protein-coding 8.154 0.8975
-10388 SYCP2 synaptonemal complex protein 2 protein-coding 5.401 2.358
+10388 SYCP2 synaptonemal complex protein 2 protein-coding 5.401 2.356
10389 SCML2 Scm polycomb group protein like 2 protein-coding 5.29 1.654
-1039 CDR2 cerebellar degeneration related protein 2 protein-coding 9.282 0.903
-10390 CEPT1 choline/ethanolamine phosphotransferase 1 protein-coding 9.191 0.4893
-10391 CORO2B coronin 2B protein-coding 5.968 2.416
-103910 MYL12B myosin light chain 12B protein-coding 12.79 0.8044
-10392 NOD1 nucleotide binding oligomerization domain containing 1 protein-coding 8.331 1.055
-10393 ANAPC10 anaphase promoting complex subunit 10 protein-coding 6.887 0.5074
-10395 DLC1 DLC1 Rho GTPase activating protein protein-coding 9.138 1.423
-10396 ATP8A1 ATPase phospholipid transporting 8A1 protein-coding 8.628 2.051
-10397 NDRG1 N-myc downstream regulated 1 protein-coding 12.93 1.735
-10398 MYL9 myosin light chain 9 protein-coding 11.49 1.774
-10399 RACK1 receptor for activated C kinase 1 protein-coding 14.45 0.7396
-104 ADARB1 adenosine deaminase, RNA specific B1 protein-coding 8.631 1.016
-1040 CDS1 CDP-diacylglycerol synthase 1 protein-coding 8.955 1.905
-10400 PEMT phosphatidylethanolamine N-methyltransferase protein-coding 8.578 0.944
-10401 PIAS3 protein inhibitor of activated STAT 3 protein-coding 9.824 0.8685
+1039 CDR2 cerebellar degeneration related protein 2 protein-coding 9.282 0.9028
+10390 CEPT1 choline/ethanolamine phosphotransferase 1 protein-coding 9.191 0.4891
+10391 CORO2B coronin 2B protein-coding 5.969 2.415
+103910 MYL12B myosin light chain 12B protein-coding 12.79 0.8041
+10392 NOD1 nucleotide binding oligomerization domain containing 1 protein-coding 8.332 1.055
+10393 ANAPC10 anaphase promoting complex subunit 10 protein-coding 6.887 0.5073
+10395 DLC1 DLC1 Rho GTPase activating protein protein-coding 9.139 1.423
+10396 ATP8A1 ATPase phospholipid transporting 8A1 protein-coding 8.63 2.051
+10397 NDRG1 N-myc downstream regulated 1 protein-coding 12.93 1.734
+10398 MYL9 myosin light chain 9 protein-coding 11.49 1.775
+10399 RACK1 receptor for activated C kinase 1 protein-coding 14.45 0.7393
+104 ADARB1 adenosine deaminase, RNA specific B1 protein-coding 8.632 1.016
+1040 CDS1 CDP-diacylglycerol synthase 1 protein-coding 8.955 1.904
+10400 PEMT phosphatidylethanolamine N-methyltransferase protein-coding 8.577 0.944
+10401 PIAS3 protein inhibitor of activated STAT 3 protein-coding 9.824 0.8681
10402 ST3GAL6 ST3 beta-galactoside alpha-2,3-sialyltransferase 6 protein-coding 6.671 1.659
-10403 NDC80 NDC80, kinetochore complex component protein-coding 7.449 1.88
-10404 CPQ carboxypeptidase Q protein-coding 9.079 1.491
-10406 WFDC2 WAP four-disulfide core domain 2 protein-coding 8.512 3.941
-10408 MYCNOS MYCN opposite strand protein-coding 0.9438 1.406
-10409 BASP1 brain abundant membrane attached signal protein 1 protein-coding 9.496 1.901
-1041 CDSN corneodesmosin protein-coding 4.768 2.754
+10403 NDC80 NDC80, kinetochore complex component protein-coding 7.447 1.88
+10404 CPQ carboxypeptidase Q protein-coding 9.08 1.491
+10406 WFDC2 WAP four-disulfide core domain 2 protein-coding 8.512 3.94
+10408 MYCNOS MYCN opposite strand protein-coding 0.9441 1.406
+10409 BASP1 brain abundant membrane attached signal protein 1 protein-coding 9.497 1.901
+1041 CDSN corneodesmosin protein-coding 4.766 2.754
10410 IFITM3 interferon induced transmembrane protein 3 protein-coding 12.85 1.354
-10411 RAPGEF3 Rap guanine nucleotide exchange factor 3 protein-coding 8.283 1.559
-10412 NSA2 NSA2, ribosome biogenesis homolog protein-coding 10.51 0.6257
+10411 RAPGEF3 Rap guanine nucleotide exchange factor 3 protein-coding 8.284 1.558
+10412 NSA2 NSA2, ribosome biogenesis homolog protein-coding 10.51 0.6254
10413 YAP1 Yes associated protein 1 protein-coding 11.03 1.138
-10417 SPON2 spondin 2 protein-coding 9.616 2.423
-10418 SPON1 spondin 1 protein-coding 8.455 2.696
-10419 PRMT5 protein arginine methyltransferase 5 protein-coding 10.41 0.604
-10420 TESK2 testis associated actin remodelling kinase 2 protein-coding 7.247 1.184
-10421 CD2BP2 CD2 cytoplasmic tail binding protein 2 protein-coding 10.81 0.5282
-10422 UBAC1 UBA domain containing 1 protein-coding 9.799 0.6158
-10423 CDIPT CDP-diacylglycerol--inositol 3-phosphatidyltransferase protein-coding 11.05 0.5555
-10424 PGRMC2 progesterone receptor membrane component 2 protein-coding 10.55 0.6135
-10425 ARIH2 ariadne RBR E3 ubiquitin protein ligase 2 protein-coding 10.38 0.465
-10426 TUBGCP3 tubulin gamma complex associated protein 3 protein-coding 8.986 0.6044
-10427 SEC24B SEC24 homolog B, COPII coat complex component protein-coding 9.84 0.5508
-10428 CFDP1 craniofacial development protein 1 protein-coding 9.9 0.64
-1043 CD52 CD52 molecule protein-coding 7.55 2.015
+10417 SPON2 spondin 2 protein-coding 9.617 2.424
+10418 SPON1 spondin 1 protein-coding 8.456 2.695
+10419 PRMT5 protein arginine methyltransferase 5 protein-coding 10.41 0.6041
+10420 TESK2 testis associated actin remodelling kinase 2 protein-coding 7.248 1.184
+10421 CD2BP2 CD2 cytoplasmic tail binding protein 2 protein-coding 10.81 0.528
+10422 UBAC1 UBA domain containing 1 protein-coding 9.798 0.6156
+10423 CDIPT CDP-diacylglycerol--inositol 3-phosphatidyltransferase protein-coding 11.05 0.5554
+10424 PGRMC2 progesterone receptor membrane component 2 protein-coding 10.55 0.6134
+10425 ARIH2 ariadne RBR E3 ubiquitin protein ligase 2 protein-coding 10.38 0.4648
+10426 TUBGCP3 tubulin gamma complex associated protein 3 protein-coding 8.986 0.6041
+10427 SEC24B SEC24 homolog B, COPII coat complex component protein-coding 9.841 0.5506
+10428 CFDP1 craniofacial development protein 1 protein-coding 9.9 0.6398
+1043 CD52 CD52 molecule protein-coding 7.551 2.016
10430 TMEM147 transmembrane protein 147 protein-coding 10.61 0.7221
-10432 RBM14 RNA binding motif protein 14 protein-coding 10.2 0.4207
-10434 LYPLA1 lysophospholipase I protein-coding 10.41 0.9821
+10432 RBM14 RNA binding motif protein 14 protein-coding 10.2 0.4205
+10434 LYPLA1 lysophospholipase I protein-coding 10.41 0.9819
10435 CDC42EP2 CDC42 effector protein 2 protein-coding 8.01 1.073
-10436 EMG1 EMG1, N1-specific pseudouridine methyltransferase protein-coding 9.32 0.7351
+10436 EMG1 EMG1, N1-specific pseudouridine methyltransferase protein-coding 9.319 0.7351
10437 IFI30 IFI30, lysosomal thiol reductase protein-coding 11.33 1.523
-10438 C1D C1D nuclear receptor corepressor protein-coding 7.919 0.6169
-10439 OLFM1 olfactomedin 1 protein-coding 7.492 2.602
-10440 TIMM17A translocase of inner mitochondrial membrane 17A protein-coding 10.15 0.5998
-10443 N4BP2L2 NEDD4 binding protein 2 like 2 protein-coding 9.949 0.6134
-10444 ZER1 zyg-11 related cell cycle regulator protein-coding 10.57 0.612
-10445 MCRS1 microspherule protein 1 protein-coding 10.2 0.4857
-10446 LRRN2 leucine rich repeat neuronal 2 protein-coding 6.641 2.51
-10447 FAM3C family with sequence similarity 3 member C protein-coding 10.4 0.8679
+10438 C1D C1D nuclear receptor corepressor protein-coding 7.919 0.617
+10439 OLFM1 olfactomedin 1 protein-coding 7.494 2.601
+10440 TIMM17A translocase of inner mitochondrial membrane 17A protein-coding 10.15 0.5999
+10443 N4BP2L2 NEDD4 binding protein 2 like 2 protein-coding 9.95 0.6134
+10444 ZER1 zyg-11 related cell cycle regulator protein-coding 10.57 0.6121
+10445 MCRS1 microspherule protein 1 protein-coding 10.2 0.4856
+10446 LRRN2 leucine rich repeat neuronal 2 protein-coding 6.642 2.51
+10447 FAM3C family with sequence similarity 3 member C protein-coding 10.4 0.8677
10449 ACAA2 acetyl-CoA acyltransferase 2 protein-coding 10.02 1.526
-1045 CDX2 caudal type homeobox 2 protein-coding 2.297 3.471
-10450 PPIE peptidylprolyl isomerase E protein-coding 9.734 0.5634
-10451 VAV3 vav guanine nucleotide exchange factor 3 protein-coding 8.509 2.389
-10452 TOMM40 translocase of outer mitochondrial membrane 40 protein-coding 10.34 0.7701
-10454 TAB1 TGF-beta activated kinase 1 (MAP3K7) binding protein 1 protein-coding 9.569 0.5456
-10455 ECI2 enoyl-CoA delta isomerase 2 protein-coding 9.798 1.159
-10456 HAX1 HCLS1 associated protein X-1 protein-coding 10.69 0.5469
+1045 CDX2 caudal type homeobox 2 protein-coding 2.298 3.471
+10450 PPIE peptidylprolyl isomerase E protein-coding 9.734 0.5632
+10451 VAV3 vav guanine nucleotide exchange factor 3 protein-coding 8.508 2.388
+10452 TOMM40 translocase of outer mitochondrial membrane 40 protein-coding 10.34 0.7704
+10454 TAB1 TGF-beta activated kinase 1 (MAP3K7) binding protein 1 protein-coding 9.569 0.5454
+10455 ECI2 enoyl-CoA delta isomerase 2 protein-coding 9.798 1.158
+10456 HAX1 HCLS1 associated protein X-1 protein-coding 10.69 0.5471
10457 GPNMB glycoprotein nmb protein-coding 11.44 2.216
10458 BAIAP2 BAI1 associated protein 2 protein-coding 10.36 1.19
10459 MAD2L2 mitotic arrest deficient 2 like 2 protein-coding 9.257 0.9169
-10460 TACC3 transforming acidic coiled-coil containing protein 3 protein-coding 9.506 1.474
+10460 TACC3 transforming acidic coiled-coil containing protein 3 protein-coding 9.505 1.474
10461 MERTK MER proto-oncogene, tyrosine kinase protein-coding 8.236 1.324
-10462 CLEC10A C-type lectin domain containing 10A protein-coding 5.274 2.167
-10463 SLC30A9 solute carrier family 30 member 9 protein-coding 10.39 0.626
-10464 PIBF1 progesterone immunomodulatory binding factor 1 protein-coding 8.342 0.77
-10465 PPIH peptidylprolyl isomerase H protein-coding 8.634 0.762
-10466 COG5 component of oligomeric golgi complex 5 protein-coding 9.748 0.6088
-10467 ZNHIT1 zinc finger HIT-type containing 1 protein-coding 10.53 0.8142
-10468 FST follistatin protein-coding 5.642 2.981
-10469 TIMM44 translocase of inner mitochondrial membrane 44 protein-coding 9.522 0.6319
-1047 CLGN calmegin protein-coding 5.473 2.974
-10471 PFDN6 prefoldin subunit 6 protein-coding 9.361 0.7823
-10472 ZBTB18 zinc finger and BTB domain containing 18 protein-coding 9.274 1.29
-10473 HMGN4 high mobility group nucleosomal binding domain 4 protein-coding 10.52 0.5528
-10474 TADA3 transcriptional adaptor 3 protein-coding 10.92 0.6164
+10462 CLEC10A C-type lectin domain containing 10A protein-coding 5.276 2.168
+10463 SLC30A9 solute carrier family 30 member 9 protein-coding 10.39 0.6259
+10464 PIBF1 progesterone immunomodulatory binding factor 1 protein-coding 8.342 0.7697
+10465 PPIH peptidylprolyl isomerase H protein-coding 8.633 0.7619
+10466 COG5 component of oligomeric golgi complex 5 protein-coding 9.748 0.6086
+10467 ZNHIT1 zinc finger HIT-type containing 1 protein-coding 10.53 0.814
+10468 FST follistatin protein-coding 5.641 2.98
+10469 TIMM44 translocase of inner mitochondrial membrane 44 protein-coding 9.521 0.6318
+1047 CLGN calmegin protein-coding 5.474 2.974
+10471 PFDN6 prefoldin subunit 6 protein-coding 9.361 0.7825
+10472 ZBTB18 zinc finger and BTB domain containing 18 protein-coding 9.274 1.289
+10473 HMGN4 high mobility group nucleosomal binding domain 4 protein-coding 10.52 0.5525
+10474 TADA3 transcriptional adaptor 3 protein-coding 10.92 0.6163
10475 TRIM38 tripartite motif containing 38 protein-coding 8.906 1.047
-10476 ATP5PD ATP synthase peripheral stalk subunit d protein-coding 11.32 0.6565
-10477 UBE2E3 ubiquitin conjugating enzyme E2 E3 protein-coding 10.12 0.7086
-10478 SLC25A17 solute carrier family 25 member 17 protein-coding 9.111 0.5136
-10479 SLC9A6 solute carrier family 9 member A6 protein-coding 8.927 0.8977
-10480 EIF3M eukaryotic translation initiation factor 3 subunit M protein-coding 11.38 0.5988
-10482 NXF1 nuclear RNA export factor 1 protein-coding 10.73 0.4997
-10483 SEC23B Sec23 homolog B, coat complex II component protein-coding 10.7 0.6843
-10484 SEC23A Sec23 homolog A, coat complex II component protein-coding 10.14 0.8218
-10485 C1orf61 chromosome 1 open reading frame 61 protein-coding 2.784 3.675
-10487 CAP1 cyclase associated actin cytoskeleton regulatory protein 1 protein-coding 12.61 0.6118
-10488 CREB3 cAMP responsive element binding protein 3 protein-coding 10.1 0.625
-10489 LRRC41 leucine rich repeat containing 41 protein-coding 10.91 0.5723
-10490 VTI1B vesicle transport through interaction with t-SNAREs 1B protein-coding 10.24 0.4892
-10491 CRTAP cartilage associated protein protein-coding 11.79 0.7241
-10492 SYNCRIP synaptotagmin binding cytoplasmic RNA interacting protein protein-coding 11.81 0.565
-10493 VAT1 vesicle amine transport 1 protein-coding 11.97 1.002
-10494 STK25 serine/threonine kinase 25 protein-coding 10.91 0.498
-10495 ENOX2 ecto-NOX disulfide-thiol exchanger 2 protein-coding 8.301 0.638
+10476 ATP5PD ATP synthase peripheral stalk subunit d protein-coding 11.32 0.6566
+10477 UBE2E3 ubiquitin conjugating enzyme E2 E3 protein-coding 10.12 0.7084
+10478 SLC25A17 solute carrier family 25 member 17 protein-coding 9.111 0.5137
+10479 SLC9A6 solute carrier family 9 member A6 protein-coding 8.927 0.8975
+10480 EIF3M eukaryotic translation initiation factor 3 subunit M protein-coding 11.38 0.5987
+10482 NXF1 nuclear RNA export factor 1 protein-coding 10.73 0.4998
+10483 SEC23B Sec23 homolog B, coat complex II component protein-coding 10.7 0.6842
+10484 SEC23A Sec23 homolog A, coat complex II component protein-coding 10.14 0.8217
+10485 C1orf61 chromosome 1 open reading frame 61 protein-coding 2.782 3.674
+10487 CAP1 cyclase associated actin cytoskeleton regulatory protein 1 protein-coding 12.61 0.6117
+10488 CREB3 cAMP responsive element binding protein 3 protein-coding 10.1 0.6251
+10489 LRRC41 leucine rich repeat containing 41 protein-coding 10.91 0.5722
+10490 VTI1B vesicle transport through interaction with t-SNAREs 1B protein-coding 10.24 0.489
+10491 CRTAP cartilage associated protein protein-coding 11.79 0.7239
+10492 SYNCRIP synaptotagmin binding cytoplasmic RNA interacting protein protein-coding 11.81 0.5649
+10493 VAT1 vesicle amine transport 1 protein-coding 11.97 1.001
+10494 STK25 serine/threonine kinase 25 protein-coding 10.91 0.4979
+10495 ENOX2 ecto-NOX disulfide-thiol exchanger 2 protein-coding 8.301 0.6378
10497 UNC13B unc-13 homolog B protein-coding 10.09 0.9847
-10498 CARM1 coactivator associated arginine methyltransferase 1 protein-coding 10.38 0.6258
-10499 NCOA2 nuclear receptor coactivator 2 protein-coding 8.571 1.63
-105 ADARB2 adenosine deaminase, RNA specific B2 (inactive) protein-coding 2.354 2.302
+10498 CARM1 coactivator associated arginine methyltransferase 1 protein-coding 10.38 0.6257
+10499 NCOA2 nuclear receptor coactivator 2 protein-coding 8.572 1.629
+105 ADARB2 adenosine deaminase, RNA specific B2 (inactive) protein-coding 2.355 2.302
1050 CEBPA CCAAT enhancer binding protein alpha protein-coding 9.213 1.669
10500 SEMA6C semaphorin 6C protein-coding 7.407 1.36
10501 SEMA6B semaphorin 6B protein-coding 7.99 1.445
-10505 SEMA4F ssemaphorin 4F protein-coding 7.933 0.9682
-10507 SEMA4D semaphorin 4D protein-coding 9.638 1.062
-10509 SEMA4B semaphorin 4B protein-coding 11.2 1.228
-1051 CEBPB CCAAT enhancer binding protein beta protein-coding 10.05 1.182
-10512 SEMA3C semaphorin 3C protein-coding 9.26 2.549
-10513 APPBP2 amyloid beta precursor protein binding protein 2 protein-coding 9.828 0.6451
-10514 MYBBP1A MYB binding protein 1a protein-coding 10.22 0.7391
-10516 FBLN5 fibulin 5 protein-coding 9.035 1.545
+10505 SEMA4F ssemaphorin 4F protein-coding 7.933 0.9678
+10507 SEMA4D semaphorin 4D protein-coding 9.639 1.062
+10509 SEMA4B semaphorin 4B protein-coding 11.2 1.227
+1051 CEBPB CCAAT enhancer binding protein beta protein-coding 10.05 1.181
+10512 SEMA3C semaphorin 3C protein-coding 9.261 2.549
+10513 APPBP2 amyloid beta precursor protein binding protein 2 protein-coding 9.828 0.6449
+10514 MYBBP1A MYB binding protein 1a protein-coding 10.22 0.7388
+10516 FBLN5 fibulin 5 protein-coding 9.037 1.545
10517 FBXW10 F-box and WD repeat domain containing 10 protein-coding 1.964 1.509
10518 CIB2 calcium and integrin binding family member 2 protein-coding 7.023 1.429
-10519 CIB1 calcium and integrin binding 1 protein-coding 11.16 0.8412
+10519 CIB1 calcium and integrin binding 1 protein-coding 11.16 0.8409
1052 CEBPD CCAAT enhancer binding protein delta protein-coding 9.954 1.32
-10520 ZNF211 zinc finger protein 211 protein-coding 7.681 0.8782
-10521 DDX17 DEAD-box helicase 17 protein-coding 12.97 0.4821
-10522 DEAF1 DEAF1, transcription factor protein-coding 9.53 0.8773
-10523 CHERP calcium homeostasis endoplasmic reticulum protein protein-coding 10.54 0.5031
-10524 KAT5 lysine acetyltransferase 5 protein-coding 9.986 0.4757
-10525 HYOU1 hypoxia up-regulated 1 protein-coding 12.05 0.7529
-10526 IPO8 importin 8 protein-coding 10.29 0.4968
-10527 IPO7 importin 7 protein-coding 11.69 0.6667
-10528 NOP56 NOP56 ribonucleoprotein protein-coding 11.17 0.7237
-10529 NEBL nebulette protein-coding 9.348 2.386
+10520 ZNF211 zinc finger protein 211 protein-coding 7.682 0.8782
+10521 DDX17 DEAD-box helicase 17 protein-coding 12.97 0.4824
+10522 DEAF1 DEAF1, transcription factor protein-coding 9.53 0.8771
+10523 CHERP calcium homeostasis endoplasmic reticulum protein protein-coding 10.54 0.5029
+10524 KAT5 lysine acetyltransferase 5 protein-coding 9.987 0.4755
+10525 HYOU1 hypoxia up-regulated 1 protein-coding 12.05 0.7528
+10526 IPO8 importin 8 protein-coding 10.29 0.4966
+10527 IPO7 importin 7 protein-coding 11.69 0.6664
+10528 NOP56 NOP56 ribonucleoprotein protein-coding 11.17 0.7238
+10529 NEBL nebulette protein-coding 9.349 2.386
1053 CEBPE CCAAT enhancer binding protein epsilon protein-coding 1.378 1.116
-10531 PITRM1 pitrilysin metallopeptidase 1 protein-coding 10.72 0.5975
-10533 ATG7 autophagy related 7 protein-coding 9.523 0.5079
-10534 SSSCA1 Sjogren syndrome/scleroderma autoantigen 1 protein-coding 8.562 0.7132
-10535 RNASEH2A ribonuclease H2 subunit A protein-coding 9.062 1.022
+10531 PITRM1 pitrilysin metallopeptidase 1 protein-coding 10.72 0.5972
+10533 ATG7 autophagy related 7 protein-coding 9.523 0.5081
+10534 SSSCA1 Sjogren syndrome/scleroderma autoantigen 1 protein-coding 8.562 0.7131
+10535 RNASEH2A ribonuclease H2 subunit A protein-coding 9.06 1.022
10536 P3H3 prolyl 3-hydroxylase 3 protein-coding 8.596 1.733
10537 UBD ubiquitin D protein-coding 8.475 3.126
-10538 BATF basic leucine zipper ATF-like transcription factor protein-coding 6.114 2.098
-10539 GLRX3 glutaredoxin 3 protein-coding 9.864 0.6955
-1054 CEBPG CCAAT enhancer binding protein gamma protein-coding 10.25 0.7824
-10540 DCTN2 dynactin subunit 2 protein-coding 11.31 0.4794
-10541 ANP32B acidic nuclear phosphoprotein 32 family member B protein-coding 11.6 0.6617
+10538 BATF basic leucine zipper ATF-like transcription factor protein-coding 6.115 2.098
+10539 GLRX3 glutaredoxin 3 protein-coding 9.863 0.6956
+1054 CEBPG CCAAT enhancer binding protein gamma protein-coding 10.25 0.7822
+10540 DCTN2 dynactin subunit 2 protein-coding 11.31 0.4792
+10541 ANP32B acidic nuclear phosphoprotein 32 family member B protein-coding 11.6 0.6614
10542 LAMTOR5 late endosomal/lysosomal adaptor, MAPK and MTOR activator 5 protein-coding 10.39 0.5912
10544 PROCR protein C receptor protein-coding 8.187 1.479
-10548 TM9SF1 transmembrane 9 superfamily member 1 protein-coding 10.73 0.55
-10549 PRDX4 peroxiredoxin 4 protein-coding 10.75 0.8566
-10550 ARL6IP5 ADP ribosylation factor like GTPase 6 interacting protein 5 protein-coding 11.47 0.8007
-10551 AGR2 anterior gradient 2, protein disulphide isomerase family member protein-coding 7.84 5.325
+10548 TM9SF1 transmembrane 9 superfamily member 1 protein-coding 10.73 0.5501
+10549 PRDX4 peroxiredoxin 4 protein-coding 10.75 0.8567
+10550 ARL6IP5 ADP ribosylation factor like GTPase 6 interacting protein 5 protein-coding 11.47 0.8006
+10551 AGR2 anterior gradient 2, protein disulphide isomerase family member protein-coding 7.841 5.325
10552 ARPC1A actin related protein 2/3 complex subunit 1A protein-coding 11.49 0.564
10553 HTATIP2 HIV-1 Tat interactive protein 2 protein-coding 9.591 1.322
-10554 AGPAT1 1-acylglycerol-3-phosphate O-acyltransferase 1 protein-coding 10.93 0.5982
+10554 AGPAT1 1-acylglycerol-3-phosphate O-acyltransferase 1 protein-coding 10.93 0.598
10555 AGPAT2 1-acylglycerol-3-phosphate O-acyltransferase 2 protein-coding 10.26 1.401
10556 RPP30 ribonuclease P/MRP subunit p30 protein-coding 8.764 0.5349
-10557 RPP38 ribonuclease P/MRP subunit p38 protein-coding 8.267 0.559
-10558 SPTLC1 serine palmitoyltransferase long chain base subunit 1 protein-coding 10.58 0.5421
-10559 SLC35A1 solute carrier family 35 member A1 protein-coding 8.872 0.7408
-1056 CEL carboxyl ester lipase protein-coding 5.262 2.661
+10557 RPP38 ribonuclease P/MRP subunit p38 protein-coding 8.267 0.5589
+10558 SPTLC1 serine palmitoyltransferase long chain base subunit 1 protein-coding 10.58 0.5419
+10559 SLC35A1 solute carrier family 35 member A1 protein-coding 8.873 0.7409
+1056 CEL carboxyl ester lipase protein-coding 5.265 2.665
10560 SLC19A2 solute carrier family 19 member 2 protein-coding 8.701 1.065
-10561 IFI44 interferon induced protein 44 protein-coding 8.615 1.566
-10562 OLFM4 olfactomedin 4 protein-coding 4.718 4.534
-10563 CXCL13 C-X-C motif chemokine ligand 13 protein-coding 5.752 3.326
-10564 ARFGEF2 ADP ribosylation factor guanine nucleotide exchange factor 2 protein-coding 10.56 0.85
-10565 ARFGEF1 ADP ribosylation factor guanine nucleotide exchange factor 1 protein-coding 10.62 0.7641
-10566 AKAP3 A-kinase anchoring protein 3 protein-coding 4.386 1.515
-10567 RABAC1 Rab acceptor 1 protein-coding 10.66 0.8295
-10568 SLC34A2 solute carrier family 34 member 2 protein-coding 6.513 5.044
-10569 SLU7 SLU7 homolog, splicing factor protein-coding 9.976 0.4783
-10570 DPYSL4 dihydropyrimidinase like 4 protein-coding 5.243 2.802
-10572 SIVA1 SIVA1 apoptosis inducing factor protein-coding 10.14 0.8085
-10573 MRPL28 mitochondrial ribosomal protein L28 protein-coding 10.26 0.7273
-10574 CCT7 chaperonin containing TCP1 subunit 7 protein-coding 12.35 0.5069
+10561 IFI44 interferon induced protein 44 protein-coding 8.615 1.565
+10562 OLFM4 olfactomedin 4 protein-coding 4.721 4.538
+10563 CXCL13 C-X-C motif chemokine ligand 13 protein-coding 5.753 3.326
+10564 ARFGEF2 ADP ribosylation factor guanine nucleotide exchange factor 2 protein-coding 10.56 0.8497
+10565 ARFGEF1 ADP ribosylation factor guanine nucleotide exchange factor 1 protein-coding 10.62 0.7638
+10566 AKAP3 A-kinase anchoring protein 3 protein-coding 4.387 1.515
+10567 RABAC1 Rab acceptor 1 protein-coding 10.66 0.8297
+10568 SLC34A2 solute carrier family 34 member 2 protein-coding 6.514 5.044
+10569 SLU7 SLU7 homolog, splicing factor protein-coding 9.976 0.4781
+10570 DPYSL4 dihydropyrimidinase like 4 protein-coding 5.244 2.801
+10572 SIVA1 SIVA1 apoptosis inducing factor protein-coding 10.14 0.8082
+10573 MRPL28 mitochondrial ribosomal protein L28 protein-coding 10.26 0.7271
+10574 CCT7 chaperonin containing TCP1 subunit 7 protein-coding 12.35 0.5071
10575 CCT4 chaperonin containing TCP1 subunit 4 protein-coding 11.9 0.6038
-10576 CCT2 chaperonin containing TCP1 subunit 2 protein-coding 11.63 0.7254
+10576 CCT2 chaperonin containing TCP1 subunit 2 protein-coding 11.63 0.7257
10577 NPC2 NPC intracellular cholesterol transporter 2 protein-coding 12.08 1.258
-10578 GNLY granulysin protein-coding 5.894 2.198
+10578 GNLY granulysin protein-coding 5.894 2.197
10579 TACC2 transforming acidic coiled-coil containing protein 2 protein-coding 10.15 1.143
-1058 CENPA centromere protein A protein-coding 6.264 2.185
-10580 SORBS1 sorbin and SH3 domain containing 1 protein-coding 9.208 2.059
-10581 IFITM2 interferon induced transmembrane protein 2 protein-coding 10.84 1.327
-10585 POMT1 protein O-mannosyltransferase 1 protein-coding 9.37 0.7014
-10586 MAB21L2 mab-21 like 2 protein-coding 2.075 2.682
-10587 TXNRD2 thioredoxin reductase 2 protein-coding 9.033 0.9462
-10588 MTHFS methenyltetrahydrofolate synthetase protein-coding 8.618 0.9703
-10589 DRAP1 DR1 associated protein 1 protein-coding 10.63 0.7848
-1059 CENPB centromere protein B protein-coding 11.21 0.5959
-10591 DNPH1 2'-deoxynucleoside 5'-phosphate N-hydrolase 1 protein-coding 9.341 0.9824
-10592 SMC2 structural maintenance of chromosomes 2 protein-coding 9.31 0.9876
-10594 PRPF8 pre-mRNA processing factor 8 protein-coding 12.59 0.5389
-10595 ERN2 endoplasmic reticulum to nucleus signaling 2 protein-coding 3.368 3.731
-10597 TRAPPC2B trafficking protein particle complex 2B protein-coding 7.202 0.7743
+1058 CENPA centromere protein A protein-coding 6.261 2.186
+10580 SORBS1 sorbin and SH3 domain containing 1 protein-coding 9.21 2.06
+10581 IFITM2 interferon induced transmembrane protein 2 protein-coding 10.84 1.326
+10585 POMT1 protein O-mannosyltransferase 1 protein-coding 9.37 0.7012
+10586 MAB21L2 mab-21 like 2 protein-coding 2.077 2.684
+10587 TXNRD2 thioredoxin reductase 2 protein-coding 9.033 0.9461
+10588 MTHFS methenyltetrahydrofolate synthetase protein-coding 8.618 0.97
+10589 DRAP1 DR1 associated protein 1 protein-coding 10.63 0.7847
+1059 CENPB centromere protein B protein-coding 11.21 0.5957
+10591 DNPH1 2'-deoxynucleoside 5'-phosphate N-hydrolase 1 protein-coding 9.341 0.9822
+10592 SMC2 structural maintenance of chromosomes 2 protein-coding 9.309 0.9875
+10594 PRPF8 pre-mRNA processing factor 8 protein-coding 12.59 0.5388
+10595 ERN2 endoplasmic reticulum to nucleus signaling 2 protein-coding 3.37 3.732
+10597 TRAPPC2B trafficking protein particle complex 2B protein-coding 7.202 0.774
10598 AHSA1 activator of HSP90 ATPase activity 1 protein-coding 11.02 0.5912
-1060 CENPC centromere protein C protein-coding 8.074 0.6734
-10600 USP16 ubiquitin specific peptidase 16 protein-coding 9.768 0.5422
-10602 CDC42EP3 CDC42 effector protein 3 protein-coding 8.969 1.321
-10603 SH2B2 SH2B adaptor protein 2 protein-coding 5.657 1.285
-10605 PAIP1 poly(A) binding protein interacting protein 1 protein-coding 10.05 0.5787
-10606 PAICS phosphoribosylaminoimidazole carboxylase and phosphoribosylaminoimidazolesuccinocarboxamide synthase protein-coding 11.4 0.7636
+1060 CENPC centromere protein C protein-coding 8.074 0.6735
+10600 USP16 ubiquitin specific peptidase 16 protein-coding 9.769 0.542
+10602 CDC42EP3 CDC42 effector protein 3 protein-coding 8.97 1.321
+10603 SH2B2 SH2B adaptor protein 2 protein-coding 5.657 1.286
+10605 PAIP1 poly(A) binding protein interacting protein 1 protein-coding 10.05 0.5786
+10606 PAICS phosphoribosylaminoimidazole carboxylase and phosphoribosylaminoimidazolesuccinocarboxamide synthase protein-coding 11.4 0.7642
10607 TBL3 transducin beta like 3 protein-coding 10.03 0.6003
-10608 MXD4 MAX dimerization protein 4 protein-coding 10.66 0.8733
-10609 P3H4 prolyl 3-hydroxylase family member 4 (non-enzymatic) protein-coding 9.323 1.025
+10608 MXD4 MAX dimerization protein 4 protein-coding 10.66 0.8732
+10609 P3H4 prolyl 3-hydroxylase family member 4 (non-enzymatic) protein-coding 9.322 1.025
10610 ST6GALNAC2 ST6 N-acetylgalactosaminide alpha-2,6-sialyltransferase 2 protein-coding 7.589 2.434
10611 PDLIM5 PDZ and LIM domain 5 protein-coding 11.24 1.244
-10612 TRIM3 tripartite motif containing 3 protein-coding 7.819 0.8585
-10613 ERLIN1 ER lipid raft associated 1 protein-coding 9.989 0.6755
-10614 HEXIM1 hexamethylene bisacetamide inducible 1 protein-coding 10.29 0.6457
-10615 SPAG5 sperm associated antigen 5 protein-coding 8.968 1.518
-10616 RBCK1 RANBP2-type and C3HC4-type zinc finger containing 1 protein-coding 11.01 0.6367
+10612 TRIM3 tripartite motif containing 3 protein-coding 7.819 0.8582
+10613 ERLIN1 ER lipid raft associated 1 protein-coding 9.989 0.6753
+10614 HEXIM1 hexamethylene bisacetamide inducible 1 protein-coding 10.29 0.6455
+10615 SPAG5 sperm associated antigen 5 protein-coding 8.967 1.519
+10616 RBCK1 RANBP2-type and C3HC4-type zinc finger containing 1 protein-coding 11.01 0.6364
10617 STAMBP STAM binding protein protein-coding 9.592 0.4774
-10618 TGOLN2 trans-golgi network protein 2 protein-coding 12.42 0.7053
-1062 CENPE centromere protein E protein-coding 7.415 1.95
-10620 ARID3B AT-rich interaction domain 3B protein-coding 7.173 0.9562
-10621 POLR3F RNA polymerase III subunit F protein-coding 8.102 0.5088
+10618 TGOLN2 trans-golgi network protein 2 protein-coding 12.42 0.7052
+1062 CENPE centromere protein E protein-coding 7.413 1.95
+10620 ARID3B AT-rich interaction domain 3B protein-coding 7.174 0.956
+10621 POLR3F RNA polymerase III subunit F protein-coding 8.101 0.5088
10622 POLR3G RNA polymerase III subunit G protein-coding 5.964 1.221
-10623 POLR3C RNA polymerase III subunit C protein-coding 8.968 0.5553
-10625 IVNS1ABP influenza virus NS1A binding protein protein-coding 11.58 0.8261
+10623 POLR3C RNA polymerase III subunit C protein-coding 8.968 0.5551
+10625 IVNS1ABP influenza virus NS1A binding protein protein-coding 11.58 0.8259
10626 TRIM16 tripartite motif containing 16 protein-coding 9.437 1.404
-10627 MYL12A myosin light chain 12A protein-coding 12.31 0.9852
-10628 TXNIP thioredoxin interacting protein protein-coding 12.94 1.198
-10629 TAF6L TATA-box binding protein associated factor 6 like protein-coding 8.34 0.6153
-1063 CENPF centromere protein F protein-coding 9.593 1.981
-10631 POSTN periostin protein-coding 10.07 3.433
-10632 ATP5MG ATP synthase membrane subunit g protein-coding 11.47 0.6308
+10627 MYL12A myosin light chain 12A protein-coding 12.31 0.9849
+10628 TXNIP thioredoxin interacting protein protein-coding 12.94 1.199
+10629 TAF6L TATA-box binding protein associated factor 6 like protein-coding 8.34 0.6151
+1063 CENPF centromere protein F protein-coding 9.59 1.982
+10631 POSTN periostin protein-coding 10.07 3.432
+10632 ATP5MG ATP synthase membrane subunit g protein-coding 11.47 0.6306
10633 RASL10A RAS like family 10 member A protein-coding 3.282 1.985
-10634 GAS2L1 growth arrest specific 2 like 1 protein-coding 9.379 0.9278
-10635 RAD51AP1 RAD51 associated protein 1 protein-coding 7.197 1.556
+10634 GAS2L1 growth arrest specific 2 like 1 protein-coding 9.379 0.9274
+10635 RAD51AP1 RAD51 associated protein 1 protein-coding 7.195 1.556
10636 RGS14 regulator of G protein signaling 14 protein-coding 8.461 1.378
-10637 LEFTY1 left-right determination factor 1 protein-coding 3.931 2.757
-10638 SPHAR S-phase response (cyclin related) protein-coding 6.971 0.8362
-10640 EXOC5 exocyst complex component 5 protein-coding 10.16 0.6138
-10641 NPRL2 NPR2 like, GATOR1 complex subunit protein-coding 8.568 0.6477
-10643 IGF2BP3 insulin like growth factor 2 mRNA binding protein 3 protein-coding 6.007 2.833
-10644 IGF2BP2 insulin like growth factor 2 mRNA binding protein 2 protein-coding 7.787 2.89
+10637 LEFTY1 left-right determination factor 1 protein-coding 3.933 2.758
+10638 SPHAR S-phase response (cyclin related) protein-coding 6.972 0.8363
+10640 EXOC5 exocyst complex component 5 protein-coding 10.16 0.6135
+10641 NPRL2 NPR2 like, GATOR1 complex subunit protein-coding 8.568 0.6474
+10643 IGF2BP3 insulin like growth factor 2 mRNA binding protein 3 protein-coding 6.006 2.833
+10644 IGF2BP2 insulin like growth factor 2 mRNA binding protein 2 protein-coding 7.787 2.889
10645 CAMKK2 calcium/calmodulin dependent protein kinase kinase 2 protein-coding 10.43 0.7974
-10650 PRELID3A PRELI domain containing 3A protein-coding 5.516 1.364
-10651 MTX2 metaxin 2 protein-coding 9.39 0.5457
-10652 YKT6 YKT6 v-SNARE homolog protein-coding 11.22 0.5998
-10653 SPINT2 serine peptidase inhibitor, Kunitz type 2 protein-coding 12.33 2.299
-10654 PMVK phosphomevalonate kinase protein-coding 10.11 0.7694
-10656 KHDRBS3 KH RNA binding domain containing, signal transduction associated 3 protein-coding 7.604 1.802
-10657 KHDRBS1 KH RNA binding domain containing, signal transduction associated 1 protein-coding 11.79 0.4147
-10658 CELF1 CUGBP Elav-like family member 1 protein-coding 10.73 0.5356
-10659 CELF2 CUGBP Elav-like family member 2 protein-coding 8.912 1.689
-1066 CES1 carboxylesterase 1 protein-coding 7.041 3.74
+10650 PRELID3A PRELI domain containing 3A protein-coding 5.516 1.363
+10651 MTX2 metaxin 2 protein-coding 9.39 0.5459
+10652 YKT6 YKT6 v-SNARE homolog protein-coding 11.21 0.5998
+10653 SPINT2 serine peptidase inhibitor, Kunitz type 2 protein-coding 12.33 2.298
+10654 PMVK phosphomevalonate kinase protein-coding 10.11 0.7693
+10656 KHDRBS3 KH RNA binding domain containing, signal transduction associated 3 protein-coding 7.604 1.801
+10657 KHDRBS1 KH RNA binding domain containing, signal transduction associated 1 protein-coding 11.79 0.4146
+10658 CELF1 CUGBP Elav-like family member 1 protein-coding 10.73 0.5355
+10659 CELF2 CUGBP Elav-like family member 2 protein-coding 8.914 1.689
+1066 CES1 carboxylesterase 1 protein-coding 7.044 3.74
10661 KLF1 Kruppel like factor 1 protein-coding 1.407 1.05
-10663 CXCR6 C-X-C motif chemokine receptor 6 protein-coding 5.565 2.025
-10664 CTCF CCCTC-binding factor protein-coding 10.38 0.404
-10666 CD226 CD226 molecule protein-coding 3.785 1.491
-10667 FARS2 phenylalanyl-tRNA synthetase 2, mitochondrial protein-coding 7.858 0.5238
-10668 CGRRF1 cell growth regulator with ring finger domain 1 protein-coding 7.535 0.7126
-10669 CGREF1 cell growth regulator with EF-hand domain 1 protein-coding 6.975 2.444
-10670 RRAGA Ras related GTP binding A protein-coding 10.71 0.5705
-10671 DCTN6 dynactin subunit 6 protein-coding 9.01 0.6626
-10672 GNA13 G protein subunit alpha 13 protein-coding 10.84 0.6615
-10673 TNFSF13B TNF superfamily member 13b protein-coding 5.286 1.761
-10675 CSPG5 chondroitin sulfate proteoglycan 5 protein-coding 5.418 2.627
-10677 AVIL advillin protein-coding 5.168 1.467
-10678 B3GNT2 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 2 protein-coding 9.341 0.9055
-10681 GNB5 G protein subunit beta 5 protein-coding 9.133 0.883
-10682 EBP emopamil binding protein (sterol isomerase) protein-coding 9.989 1.128
-10683 DLL3 delta like canonical Notch ligand 3 protein-coding 3.266 3.303
-10687 PNMA2 PNMA family member 2 protein-coding 6.684 3.054
+10663 CXCR6 C-X-C motif chemokine receptor 6 protein-coding 5.566 2.026
+10664 CTCF CCCTC-binding factor protein-coding 10.38 0.4038
+10666 CD226 CD226 molecule protein-coding 3.787 1.492
+10667 FARS2 phenylalanyl-tRNA synthetase 2, mitochondrial protein-coding 7.858 0.5237
+10668 CGRRF1 cell growth regulator with ring finger domain 1 protein-coding 7.535 0.7124
+10669 CGREF1 cell growth regulator with EF-hand domain 1 protein-coding 6.974 2.444
+10670 RRAGA Ras related GTP binding A protein-coding 10.71 0.5703
+10671 DCTN6 dynactin subunit 6 protein-coding 9.01 0.6623
+10672 GNA13 G protein subunit alpha 13 protein-coding 10.84 0.6613
+10673 TNFSF13B TNF superfamily member 13b protein-coding 5.287 1.761
+10675 CSPG5 chondroitin sulfate proteoglycan 5 protein-coding 5.417 2.625
+10677 AVIL advillin protein-coding 5.169 1.467
+10678 B3GNT2 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 2 protein-coding 9.341 0.9052
+10681 GNB5 G protein subunit beta 5 protein-coding 9.133 0.8829
+10682 EBP emopamil binding protein (sterol isomerase) protein-coding 9.988 1.128
+10683 DLL3 delta like canonical Notch ligand 3 protein-coding 3.265 3.302
+10687 PNMA2 PNMA family member 2 protein-coding 6.685 3.054
1069 CETN2 centrin 2 protein-coding 10.28 0.6682
-10691 GMEB1 glucocorticoid modulatory element binding protein 1 protein-coding 7.209 0.6439
-10692 RRH retinal pigment epithelium-derived rhodopsin homolog protein-coding 1.395 0.9547
+10691 GMEB1 glucocorticoid modulatory element binding protein 1 protein-coding 7.209 0.6436
+10692 RRH retinal pigment epithelium-derived rhodopsin homolog protein-coding 1.395 0.9545
10693 CCT6B chaperonin containing TCP1 subunit 6B protein-coding 5.28 1.173
-10694 CCT8 chaperonin containing TCP1 subunit 8 protein-coding 11.81 0.5671
-10695 CNPY3 canopy FGF signaling regulator 3 protein-coding 10.71 0.7246
-10699 CORIN corin, serine peptidase protein-coding 4.397 1.859
-107 ADCY1 adenylate cyclase 1 protein-coding 7.002 2.288
-1070 CETN3 centrin 3 protein-coding 8.087 0.64
+10694 CCT8 chaperonin containing TCP1 subunit 8 protein-coding 11.8 0.5674
+10695 CNPY3 canopy FGF signaling regulator 3 protein-coding 10.71 0.7244
+10699 CORIN corin, serine peptidase protein-coding 4.398 1.859
+107 ADCY1 adenylate cyclase 1 protein-coding 7.002 2.287
+1070 CETN3 centrin 3 protein-coding 8.087 0.6399
1071 CETP cholesteryl ester transfer protein protein-coding 4.48 1.919
-10712 FAM189B family with sequence similarity 189 member B protein-coding 9.59 0.7666
-10713 USP39 ubiquitin specific peptidase 39 protein-coding 10.18 0.4897
-10714 POLD3 DNA polymerase delta 3, accessory subunit protein-coding 8.775 0.7522
-10715 CERS1 ceramide synthase 1 protein-coding 4.581 3.042
-10717 AP4B1 adaptor related protein complex 4 beta 1 subunit protein-coding 8.454 0.6203
-1072 CFL1 cofilin 1 protein-coding 14.1 0.5925
-10721 POLQ DNA polymerase theta protein-coding 6.385 2.109
-10723 SLC12A7 solute carrier family 12 member 7 protein-coding 10.71 1.191
-10724 MGEA5 meningioma expressed antigen 5 (hyaluronidase) protein-coding 11.56 0.554
-10725 NFAT5 nuclear factor of activated T cells 5 protein-coding 10.42 0.8155
-10726 NUDC nuclear distribution C, dynein complex regulator protein-coding 11.26 0.6068
+10712 FAM189B family with sequence similarity 189 member B protein-coding 9.589 0.7663
+10713 USP39 ubiquitin specific peptidase 39 protein-coding 10.18 0.4896
+10714 POLD3 DNA polymerase delta 3, accessory subunit protein-coding 8.775 0.7519
+10715 CERS1 ceramide synthase 1 protein-coding 4.581 3.041
+10717 AP4B1 adaptor related protein complex 4 beta 1 subunit protein-coding 8.455 0.6203
+1072 CFL1 cofilin 1 protein-coding 14.1 0.5927
+10721 POLQ DNA polymerase theta protein-coding 6.383 2.109
+10723 SLC12A7 solute carrier family 12 member 7 protein-coding 10.71 1.19
+10724 MGEA5 meningioma expressed antigen 5 (hyaluronidase) protein-coding 11.56 0.5539
+10725 NFAT5 nuclear factor of activated T cells 5 protein-coding 10.42 0.8154
+10726 NUDC nuclear distribution C, dynein complex regulator protein-coding 11.26 0.6067
10728 PTGES3 prostaglandin E synthase 3 protein-coding 12.62 0.5022
-1073 CFL2 cofilin 2 protein-coding 9.088 1.242
-10730 YME1L1 YME1 like 1 ATPase protein-coding 11.51 0.5365
-10732 TCFL5 transcription factor like 5 protein-coding 8.44 0.7588
-10733 PLK4 polo like kinase 4 protein-coding 7.134 1.454
+1073 CFL2 cofilin 2 protein-coding 9.089 1.243
+10730 YME1L1 YME1 like 1 ATPase protein-coding 11.51 0.5363
+10732 TCFL5 transcription factor like 5 protein-coding 8.44 0.7586
+10733 PLK4 polo like kinase 4 protein-coding 7.133 1.454
10734 STAG3 stromal antigen 3 protein-coding 5.015 1.89
-10735 STAG2 stromal antigen 2 protein-coding 11.1 0.6563
+10735 STAG2 stromal antigen 2 protein-coding 11.1 0.656
10736 SIX2 SIX homeobox 2 protein-coding 4.919 2.748
-10737 RFPL3S RFPL3 antisense ncRNA 2.666 1.318
-10739 RFPL2 ret finger protein like 2 protein-coding 1.865 1.914
-10740 RFPL1S RFPL1 antisense RNA 1 ncRNA 3.381 2.258
-10741 RBBP9 RB binding protein 9, serine hydrolase protein-coding 9.361 0.7737
-10742 RAI2 retinoic acid induced 2 protein-coding 7.637 1.863
-10743 RAI1 retinoic acid induced 1 protein-coding 10.12 0.8574
-10744 PTTG2 pituitary tumor-transforming 2 protein-coding 1.208 1.085
+10737 RFPL3S RFPL3 antisense ncRNA 2.667 1.318
+10739 RFPL2 ret finger protein like 2 protein-coding 1.866 1.916
+10740 RFPL1S RFPL1 antisense RNA 1 ncRNA 3.383 2.259
+10741 RBBP9 RB binding protein 9, serine hydrolase protein-coding 9.361 0.7735
+10742 RAI2 retinoic acid induced 2 protein-coding 7.639 1.863
+10743 RAI1 retinoic acid induced 1 protein-coding 10.12 0.8572
+10744 PTTG2 pituitary tumor-transforming 2 protein-coding 1.208 1.086
10745 PHTF1 putative homeodomain transcription factor 1 protein-coding 7.991 0.7467
-10746 MAP3K2 mitogen-activated protein kinase kinase kinase 2 protein-coding 8.787 0.9366
-10747 MASP2 mannan binding lectin serine peptidase 2 protein-coding 3.983 2.086
-10748 KLRA1P killer cell lectin like receptor A1, pseudogene pseudo 4.518 1.307
-10749 KIF1C kinesin family member 1C protein-coding 11.57 0.8099
-1075 CTSC cathepsin C protein-coding 11.43 1.588
+10746 MAP3K2 mitogen-activated protein kinase kinase kinase 2 protein-coding 8.788 0.9363
+10747 MASP2 mannan binding lectin serine peptidase 2 protein-coding 3.985 2.086
+10748 KLRA1P killer cell lectin like receptor A1, pseudogene pseudo 4.519 1.306
+10749 KIF1C kinesin family member 1C protein-coding 11.57 0.8098
+1075 CTSC cathepsin C protein-coding 11.43 1.589
10750 GRAP GRB2 related adaptor protein protein-coding 6.915 1.252
-10752 CHL1 cell adhesion molecule L1 like protein-coding 6.492 3.189
+10752 CHL1 cell adhesion molecule L1 like protein-coding 6.491 3.189
10755 GIPC1 GIPC PDZ domain containing family member 1 protein-coding 11.31 0.8452
-10758 TRAF3IP2 TRAF3 interacting protein 2 protein-coding 9.359 0.9466
-10761 PLAC1 placenta specific 1 protein-coding 2.307 2.147
-10762 NUP50 nucleoporin 50 protein-coding 10.27 0.6148
-10763 NES nestin protein-coding 10.31 1.659
-10765 KDM5B lysine demethylase 5B protein-coding 10.8 0.9282
-10766 TOB2 transducer of ERBB2, 2 protein-coding 10.71 0.6662
-10767 HBS1L HBS1 like translational GTPase protein-coding 9.767 0.5699
-10768 AHCYL1 adenosylhomocysteinase like 1 protein-coding 11.66 0.8002
-10769 PLK2 polo like kinase 2 protein-coding 9.673 1.386
+10758 TRAF3IP2 TRAF3 interacting protein 2 protein-coding 9.359 0.9463
+10761 PLAC1 placenta specific 1 protein-coding 2.305 2.147
+10762 NUP50 nucleoporin 50 protein-coding 10.27 0.6146
+10763 NES nestin protein-coding 10.31 1.658
+10765 KDM5B lysine demethylase 5B protein-coding 10.8 0.9278
+10766 TOB2 transducer of ERBB2, 2 protein-coding 10.71 0.6665
+10767 HBS1L HBS1 like translational GTPase protein-coding 9.767 0.5697
+10768 AHCYL1 adenosylhomocysteinase like 1 protein-coding 11.66 0.7999
+10769 PLK2 polo like kinase 2 protein-coding 9.672 1.386
10771 ZMYND11 zinc finger MYND-type containing 11 protein-coding 10.75 0.7464
-10772 SRSF10 serine and arginine rich splicing factor 10 protein-coding 10.55 0.5007
-10773 ZBTB6 zinc finger and BTB domain containing 6 protein-coding 8.146 0.6461
-10775 POP4 POP4 homolog, ribonuclease P/MRP subunit protein-coding 9.305 0.5934
-10776 ARPP19 cAMP regulated phosphoprotein 19 protein-coding 11.68 0.6025
+10772 SRSF10 serine and arginine rich splicing factor 10 protein-coding 10.55 0.5005
+10773 ZBTB6 zinc finger and BTB domain containing 6 protein-coding 8.146 0.6458
+10775 POP4 POP4 homolog, ribonuclease P/MRP subunit protein-coding 9.305 0.5933
+10776 ARPP19 cAMP regulated phosphoprotein 19 protein-coding 11.68 0.6024
10778 ZNF271P zinc finger protein 271, pseudogene pseudo 9.117 0.5615
-10780 ZNF234 zinc finger protein 234 protein-coding 7.18 0.7157
-10781 ZNF266 zinc finger protein 266 protein-coding 9.189 0.7695
-10782 ZNF274 zinc finger protein 274 protein-coding 8.725 0.7171
+10780 ZNF234 zinc finger protein 234 protein-coding 7.18 0.7155
+10781 ZNF266 zinc finger protein 266 protein-coding 9.19 0.7693
+10782 ZNF274 zinc finger protein 274 protein-coding 8.726 0.7169
10783 NEK6 NIMA related kinase 6 protein-coding 9.576 1.336
-10785 WDR4 WD repeat domain 4 protein-coding 7.681 0.8273
-10787 NCKAP1 NCK associated protein 1 protein-coding 11.87 0.7338
-10788 IQGAP2 IQ motif containing GTPase activating protein 2 protein-coding 8.812 2.039
-10791 VAMP5 vesicle associated membrane protein 5 protein-coding 8.778 1.278
-10793 ZNF273 zinc finger protein 273 protein-coding 6.991 1.043
+10785 WDR4 WD repeat domain 4 protein-coding 7.68 0.8277
+10787 NCKAP1 NCK associated protein 1 protein-coding 11.87 0.7337
+10788 IQGAP2 IQ motif containing GTPase activating protein 2 protein-coding 8.813 2.039
+10791 VAMP5 vesicle associated membrane protein 5 protein-coding 8.778 1.277
+10793 ZNF273 zinc finger protein 273 protein-coding 6.991 1.042
10794 ZNF460 zinc finger protein 460 protein-coding 5.418 0.9812
-10795 ZNF268 zinc finger protein 268 protein-coding 8.153 0.8948
-10797 MTHFD2 methylenetetrahydrofolate dehydrogenase (NADP+ dependent) 2, methenyltetrahydrofolate cyclohydrolase protein-coding 9.982 1.475
-10799 RPP40 ribonuclease P/MRP subunit p40 protein-coding 6.959 0.9287
-108 ADCY2 adenylate cyclase 2 protein-coding 4.955 3.289
-10800 CYSLTR1 cysteinyl leukotriene receptor 1 protein-coding 4.272 1.591
-10801 SEPT9 septin 9 protein-coding 12.73 0.653
-10802 SEC24A SEC24 homolog A, COPII coat complex component protein-coding 9.588 0.7874
-10803 CCR9 C-C motif chemokine receptor 9 protein-coding 1.351 1.587
-10804 GJB6 gap junction protein beta 6 protein-coding 4.461 4.085
-10806 SDCCAG8 serologically defined colon cancer antigen 8 protein-coding 8.865 0.6001
+10795 ZNF268 zinc finger protein 268 protein-coding 8.154 0.8945
+10797 MTHFD2 methylenetetrahydrofolate dehydrogenase (NADP+ dependent) 2, methenyltetrahydrofolate cyclohydrolase protein-coding 9.981 1.475
+10799 RPP40 ribonuclease P/MRP subunit p40 protein-coding 6.958 0.929
+108 ADCY2 adenylate cyclase 2 protein-coding 4.957 3.288
+10800 CYSLTR1 cysteinyl leukotriene receptor 1 protein-coding 4.274 1.591
+10801 SEPT9 septin 9 protein-coding 12.73 0.6531
+10802 SEC24A SEC24 homolog A, COPII coat complex component protein-coding 9.588 0.7871
+10803 CCR9 C-C motif chemokine receptor 9 protein-coding 1.353 1.587
+10804 GJB6 gap junction protein beta 6 protein-coding 4.459 4.084
+10806 SDCCAG8 serologically defined colon cancer antigen 8 protein-coding 8.865 0.6
10807 SDCCAG3 serologically defined colon cancer antigen 3 protein-coding 9.437 0.5995
-10808 HSPH1 heat shock protein family H (Hsp110) member 1 protein-coding 11.25 0.9268
+10808 HSPH1 heat shock protein family H (Hsp110) member 1 protein-coding 11.25 0.9266
10809 STARD10 StAR related lipid transfer domain containing 10 protein-coding 10.48 1.416
10810 WASF3 WAS protein family member 3 protein-coding 7.524 2.052
10811 NOXA1 NADPH oxidase activator 1 protein-coding 6.865 1.624
-10813 UTP14A UTP14A, small subunit processome component protein-coding 9.017 0.6007
-10814 CPLX2 complexin 2 protein-coding 3.276 4.019
+10813 UTP14A UTP14A, small subunit processome component protein-coding 9.017 0.6006
+10814 CPLX2 complexin 2 protein-coding 3.279 4.02
10815 CPLX1 complexin 1 protein-coding 6.292 1.852
-10817 FRS3 fibroblast growth factor receptor substrate 3 protein-coding 7.069 0.8226
-10818 FRS2 fibroblast growth factor receptor substrate 2 protein-coding 9.318 0.8526
+10817 FRS3 fibroblast growth factor receptor substrate 3 protein-coding 7.07 0.8225
+10818 FRS2 fibroblast growth factor receptor substrate 2 protein-coding 9.318 0.8522
10825 NEU3 neuraminidase 3 protein-coding 6.016 1.193
-10826 FAXDC2 fatty acid hydroxylase domain containing 2 protein-coding 8.482 1.877
-10827 FAM114A2 family with sequence similarity 114 member A2 protein-coding 8.45 0.5698
-10838 ZNF275 zinc finger protein 275 protein-coding 9.269 0.9831
-1084 CEACAM3 carcinoembryonic antigen related cell adhesion molecule 3 protein-coding 1.456 1.446
-10840 ALDH1L1 aldehyde dehydrogenase 1 family member L1 protein-coding 6.701 3.564
-10841 FTCD formimidoyltransferase cyclodeaminase protein-coding 2.881 3.104
-10844 TUBGCP2 tubulin gamma complex associated protein 2 protein-coding 10.61 0.4839
-10845 CLPX caseinolytic mitochondrial matrix peptidase chaperone subunit protein-coding 9.406 0.5997
-10846 PDE10A phosphodiesterase 10A protein-coding 6.424 1.933
-10847 SRCAP Snf2 related CREBBP activator protein protein-coding 11.74 0.521
+10826 FAXDC2 fatty acid hydroxylase domain containing 2 protein-coding 8.484 1.877
+10827 FAM114A2 family with sequence similarity 114 member A2 protein-coding 8.45 0.5695
+10838 ZNF275 zinc finger protein 275 protein-coding 9.269 0.9827
+1084 CEACAM3 carcinoembryonic antigen related cell adhesion molecule 3 protein-coding 1.457 1.446
+10840 ALDH1L1 aldehyde dehydrogenase 1 family member L1 protein-coding 6.701 3.563
+10841 FTCD formimidoyltransferase cyclodeaminase protein-coding 2.881 3.102
+10844 TUBGCP2 tubulin gamma complex associated protein 2 protein-coding 10.61 0.4838
+10845 CLPX caseinolytic mitochondrial matrix peptidase chaperone subunit protein-coding 9.406 0.5995
+10846 PDE10A phosphodiesterase 10A protein-coding 6.425 1.933
+10847 SRCAP Snf2 related CREBBP activator protein protein-coding 11.74 0.5208
10848 PPP1R13L protein phosphatase 1 regulatory subunit 13 like protein-coding 9.432 1.507
-10849 CD3EAP CD3e molecule associated protein protein-coding 8.792 0.6602
-10855 HPSE heparanase protein-coding 5.853 1.817
-10856 RUVBL2 RuvB like AAA ATPase 2 protein-coding 10.91 0.6643
-10857 PGRMC1 progesterone receptor membrane component 1 protein-coding 11.59 0.8541
-10858 CYP46A1 cytochrome P450 family 46 subfamily A member 1 protein-coding 4.057 2.143
-10859 LILRB1 leukocyte immunoglobulin like receptor B1 protein-coding 6.397 1.603
-10861 SLC26A1 solute carrier family 26 member 1 protein-coding 5.427 1.553
-10863 ADAM28 ADAM metallopeptidase domain 28 protein-coding 6.664 2.094
-10865 ARID5A AT-rich interaction domain 5A protein-coding 8.999 0.9909
+10849 CD3EAP CD3e molecule associated protein protein-coding 8.792 0.6599
+10855 HPSE heparanase protein-coding 5.853 1.816
+10856 RUVBL2 RuvB like AAA ATPase 2 protein-coding 10.91 0.6644
+10857 PGRMC1 progesterone receptor membrane component 1 protein-coding 11.59 0.8542
+10858 CYP46A1 cytochrome P450 family 46 subfamily A member 1 protein-coding 4.058 2.142
+10859 LILRB1 leukocyte immunoglobulin like receptor B1 protein-coding 6.398 1.603
+10861 SLC26A1 solute carrier family 26 member 1 protein-coding 5.427 1.552
+10863 ADAM28 ADAM metallopeptidase domain 28 protein-coding 6.665 2.094
+10865 ARID5A AT-rich interaction domain 5A protein-coding 8.999 0.9911
10866 HCP5 HLA complex P5 (non-protein coding) ncRNA 9.323 1.538
10867 TSPAN9 tetraspanin 9 protein-coding 10.37 1.068
-10868 USP20 ubiquitin specific peptidase 20 protein-coding 9.587 0.6837
-10869 USP19 ubiquitin specific peptidase 19 protein-coding 10.38 0.4912
-10870 HCST hematopoietic cell signal transducer protein-coding 6.698 1.507
-10871 CD300C CD300c molecule protein-coding 4.556 1.482
-10873 ME3 malic enzyme 3 protein-coding 7.585 1.514
-10874 NMU neuromedin U protein-coding 4.083 3.128
-10875 FGL2 fibrinogen like 2 protein-coding 8.597 1.615
-1088 CEACAM8 carcinoembryonic antigen related cell adhesion molecule 8 protein-coding 0.371 1.082
+10868 USP20 ubiquitin specific peptidase 20 protein-coding 9.588 0.6839
+10869 USP19 ubiquitin specific peptidase 19 protein-coding 10.38 0.4911
+10870 HCST hematopoietic cell signal transducer protein-coding 6.699 1.507
+10871 CD300C CD300c molecule protein-coding 4.557 1.483
+10873 ME3 malic enzyme 3 protein-coding 7.586 1.513
+10874 NMU neuromedin U protein-coding 4.081 3.127
+10875 FGL2 fibrinogen like 2 protein-coding 8.599 1.615
+1088 CEACAM8 carcinoembryonic antigen related cell adhesion molecule 8 protein-coding 0.3709 1.081
10882 C1QL1 complement C1q like 1 protein-coding 5.088 3.12
10884 MRPS30 mitochondrial ribosomal protein S30 protein-coding 8.958 0.8067
-10885 WDR3 WD repeat domain 3 protein-coding 9.542 0.7148
-10888 GPR83 G protein-coupled receptor 83 protein-coding 2.754 1.975
-1089 CEACAM4 carcinoembryonic antigen related cell adhesion molecule 4 protein-coding 2.26 1.514
-10890 RAB10 RAB10, member RAS oncogene family protein-coding 11.78 0.5803
-10891 PPARGC1A PPARG coactivator 1 alpha protein-coding 6.447 2.803
-10892 MALT1 MALT1 paracaspase protein-coding 9.105 0.8856
-10893 MMP24 matrix metallopeptidase 24 protein-coding 8.614 1.378
-10894 LYVE1 lymphatic vessel endothelial hyaluronan receptor 1 protein-coding 5.759 1.979
+10885 WDR3 WD repeat domain 3 protein-coding 9.541 0.7146
+10888 GPR83 G protein-coupled receptor 83 protein-coding 2.755 1.975
+1089 CEACAM4 carcinoembryonic antigen related cell adhesion molecule 4 protein-coding 2.261 1.515
+10890 RAB10 RAB10, member RAS oncogene family protein-coding 11.78 0.5801
+10891 PPARGC1A PPARG coactivator 1 alpha protein-coding 6.448 2.802
+10892 MALT1 MALT1 paracaspase protein-coding 9.105 0.8857
+10893 MMP24 matrix metallopeptidase 24 protein-coding 8.615 1.378
+10894 LYVE1 lymphatic vessel endothelial hyaluronan receptor 1 protein-coding 5.761 1.98
10896 OCLM oculomedin protein-coding 1.753 1.023
-10897 YIF1A Yip1 interacting factor homolog A, membrane trafficking protein protein-coding 10.43 0.6686
-10898 CPSF4 cleavage and polyadenylation specific factor 4 protein-coding 9.123 0.6591
-10899 JTB jumping translocation breakpoint protein-coding 11.39 0.6334
+10897 YIF1A Yip1 interacting factor homolog A, membrane trafficking protein protein-coding 10.43 0.6685
+10898 CPSF4 cleavage and polyadenylation specific factor 4 protein-coding 9.122 0.6589
+10899 JTB jumping translocation breakpoint protein-coding 11.39 0.6333
109 ADCY3 adenylate cyclase 3 protein-coding 9.688 1.072
-10900 RUNDC3A RUN domain containing 3A protein-coding 4.993 2.923
-10901 DHRS4 dehydrogenase/reductase 4 protein-coding 9.427 0.8721
-10902 BRD8 bromodomain containing 8 protein-coding 9.965 0.5774
+10900 RUNDC3A RUN domain containing 3A protein-coding 4.995 2.923
+10901 DHRS4 dehydrogenase/reductase 4 protein-coding 9.427 0.8718
+10902 BRD8 bromodomain containing 8 protein-coding 9.965 0.5771
10903 MTMR11 myotubularin related protein 11 protein-coding 8.041 1.581
-10904 BLCAP bladder cancer associated protein protein-coding 10.97 0.7128
-10905 MAN1A2 mannosidase alpha class 1A member 2 protein-coding 9.128 0.9003
+10904 BLCAP bladder cancer associated protein protein-coding 10.97 0.7127
+10905 MAN1A2 mannosidase alpha class 1A member 2 protein-coding 9.128 0.9001
10906 TRAFD1 TRAF-type zinc finger domain containing 1 protein-coding 9.983 0.5999
10907 TXNL4A thioredoxin like 4A protein-coding 9.786 0.6477
-10908 PNPLA6 patatin like phospholipase domain containing 6 protein-coding 10.42 0.6243
-10910 SUGT1 SGT1 homolog, MIS12 kinetochore complex assembly cochaperone protein-coding 9.258 0.6034
-10911 UTS2 urotensin 2 protein-coding 1.352 1.64
-10912 GADD45G growth arrest and DNA damage inducible gamma protein-coding 7.507 1.994
-10913 EDAR ectodysplasin A receptor protein-coding 3.593 2.678
-10914 PAPOLA poly(A) polymerase alpha protein-coding 11.76 0.5101
-10915 TCERG1 transcription elongation regulator 1 protein-coding 9.845 0.6066
+10908 PNPLA6 patatin like phospholipase domain containing 6 protein-coding 10.42 0.6245
+10910 SUGT1 SGT1 homolog, MIS12 kinetochore complex assembly cochaperone protein-coding 9.258 0.6032
+10911 UTS2 urotensin 2 protein-coding 1.353 1.641
+10912 GADD45G growth arrest and DNA damage inducible gamma protein-coding 7.508 1.994
+10913 EDAR ectodysplasin A receptor protein-coding 3.594 2.679
+10914 PAPOLA poly(A) polymerase alpha protein-coding 11.76 0.5098
+10915 TCERG1 transcription elongation regulator 1 protein-coding 9.845 0.6064
10916 MAGED2 MAGE family member D2 protein-coding 12.12 1.03
-10917 BTNL3 butyrophilin like 3 protein-coding 1.229 2.118
-10919 EHMT2 euchromatic histone lysine methyltransferase 2 protein-coding 10.68 0.6588
-10920 COPS8 COP9 signalosome subunit 8 protein-coding 10.04 0.5594
+10917 BTNL3 butyrophilin like 3 protein-coding 1.228 2.117
+10919 EHMT2 euchromatic histone lysine methyltransferase 2 protein-coding 10.68 0.6586
+10920 COPS8 COP9 signalosome subunit 8 protein-coding 10.04 0.5593
10921 RNPS1 RNA binding protein with serine rich domain 1 protein-coding 11.55 0.5049
-10922 FASTK Fas activated serine/threonine kinase protein-coding 10.59 0.7203
-10923 SUB1 SUB1 homolog, transcriptional regulator protein-coding 11.6 0.644
+10922 FASTK Fas activated serine/threonine kinase protein-coding 10.59 0.7201
+10923 SUB1 SUB1 homolog, transcriptional regulator protein-coding 11.6 0.6439
10924 SMPDL3A sphingomyelin phosphodiesterase acid like 3A protein-coding 8.148 1.428
-10926 DBF4 DBF4 zinc finger protein-coding 7.883 1.099
-10927 SPIN1 spindlin 1 protein-coding 10.99 0.6736
-10928 RALBP1 ralA binding protein 1 protein-coding 10.83 0.6929
-10929 SRSF8 serine and arginine rich splicing factor 8 protein-coding 10.09 0.6522
-10930 APOBEC2 apolipoprotein B mRNA editing enzyme catalytic subunit 2 protein-coding 2.039 1.861
-10933 MORF4L1 mortality factor 4 like 1 protein-coding 11.89 0.492
-10934 MORF4 mortality factor 4 (pseudogene) pseudo 2.23 0.8671
-10935 PRDX3 peroxiredoxin 3 protein-coding 11.49 0.7005
-10936 GPR75 G protein-coupled receptor 75 protein-coding 4.279 1.631
-10938 EHD1 EH domain containing 1 protein-coding 10.6 0.7441
-10939 AFG3L2 AFG3 like matrix AAA peptidase subunit 2 protein-coding 10.53 0.6286
+10926 DBF4 DBF4 zinc finger protein-coding 7.882 1.099
+10927 SPIN1 spindlin 1 protein-coding 10.99 0.6734
+10928 RALBP1 ralA binding protein 1 protein-coding 10.83 0.6927
+10929 SRSF8 serine and arginine rich splicing factor 8 protein-coding 10.09 0.6521
+10930 APOBEC2 apolipoprotein B mRNA editing enzyme catalytic subunit 2 protein-coding 2.041 1.863
+10933 MORF4L1 mortality factor 4 like 1 protein-coding 11.89 0.4919
+10934 MORF4 mortality factor 4 (pseudogene) pseudo 2.23 0.8667
+10935 PRDX3 peroxiredoxin 3 protein-coding 11.49 0.7003
+10936 GPR75 G protein-coupled receptor 75 protein-coding 4.28 1.63
+10938 EHD1 EH domain containing 1 protein-coding 10.6 0.7442
+10939 AFG3L2 AFG3 like matrix AAA peptidase subunit 2 protein-coding 10.53 0.6284
10940 POP1 POP1 homolog, ribonuclease P/MRP subunit protein-coding 7.556 0.8072
-10942 PRSS21 serine protease 21 protein-coding 3.278 3.087
+10942 PRSS21 serine protease 21 protein-coding 3.279 3.087
10943 MSL3 MSL complex subunit 3 protein-coding 9.119 0.5426
-10944 C11orf58 chromosome 11 open reading frame 58 protein-coding 11.52 0.4407
+10944 C11orf58 chromosome 11 open reading frame 58 protein-coding 11.52 0.4406
10945 KDELR1 KDEL endoplasmic reticulum protein retention receptor 1 protein-coding 12.11 0.6502
-10946 SF3A3 splicing factor 3a subunit 3 protein-coding 10.69 0.4678
-10947 AP3M2 adaptor related protein complex 3 mu 2 subunit protein-coding 9.011 0.8102
-10948 STARD3 StAR related lipid transfer domain containing 3 protein-coding 10.06 0.7185
-10949 HNRNPA0 heterogeneous nuclear ribonucleoprotein A0 protein-coding 11.84 0.4838
+10946 SF3A3 splicing factor 3a subunit 3 protein-coding 10.69 0.4677
+10947 AP3M2 adaptor related protein complex 3 mu 2 subunit protein-coding 9.011 0.8099
+10948 STARD3 StAR related lipid transfer domain containing 3 protein-coding 10.06 0.7183
+10949 HNRNPA0 heterogeneous nuclear ribonucleoprotein A0 protein-coding 11.84 0.4836
10950 BTG3 BTG anti-proliferation factor 3 protein-coding 9.215 1.058
-10951 CBX1 chromobox 1 protein-coding 10.74 0.6919
-10952 SEC61B Sec61 translocon beta subunit protein-coding 10.6 0.685
-10953 TOMM34 translocase of outer mitochondrial membrane 34 protein-coding 10.07 0.7285
-10954 PDIA5 protein disulfide isomerase family A member 5 protein-coding 9.199 1.311
-10955 SERINC3 serine incorporator 3 protein-coding 11.02 0.6477
+10951 CBX1 chromobox 1 protein-coding 10.73 0.6919
+10952 SEC61B Sec61 translocon beta subunit protein-coding 10.6 0.6849
+10953 TOMM34 translocase of outer mitochondrial membrane 34 protein-coding 10.07 0.7284
+10954 PDIA5 protein disulfide isomerase family A member 5 protein-coding 9.199 1.31
+10955 SERINC3 serine incorporator 3 protein-coding 11.02 0.6475
10956 OS9 OS9, endoplasmic reticulum lectin protein-coding 12.9 0.6168
-10957 PNRC1 proline rich nuclear receptor coactivator 1 protein-coding 10.78 0.7152
-10959 TMED2 transmembrane p24 trafficking protein 2 protein-coding 12.51 0.6644
-10960 LMAN2 lectin, mannose binding 2 protein-coding 11.84 0.7228
-10961 ERP29 endoplasmic reticulum protein 29 protein-coding 11.87 0.7117
+10957 PNRC1 proline rich nuclear receptor coactivator 1 protein-coding 10.78 0.7153
+10959 TMED2 transmembrane p24 trafficking protein 2 protein-coding 12.51 0.6642
+10960 LMAN2 lectin, mannose binding 2 protein-coding 11.84 0.7226
+10961 ERP29 endoplasmic reticulum protein 29 protein-coding 11.87 0.7115
10962 MLLT11 MLLT11, transcription factor 7 cofactor protein-coding 7.663 2.004
-10963 STIP1 stress induced phosphoprotein 1 protein-coding 11.74 0.6135
-10964 IFI44L interferon induced protein 44 like protein-coding 8.521 1.986
-10965 ACOT2 acyl-CoA thioesterase 2 protein-coding 7.993 0.9357
-10966 RAB40B RAB40B, member RAS oncogene family protein-coding 8.491 0.9442
-10969 EBNA1BP2 EBNA1 binding protein 2 protein-coding 10.3 0.6123
+10963 STIP1 stress induced phosphoprotein 1 protein-coding 11.74 0.6136
+10964 IFI44L interferon induced protein 44 like protein-coding 8.522 1.985
+10965 ACOT2 acyl-CoA thioesterase 2 protein-coding 7.993 0.9354
+10966 RAB40B RAB40B, member RAS oncogene family protein-coding 8.49 0.9439
+10969 EBNA1BP2 EBNA1 binding protein 2 protein-coding 10.3 0.6125
10970 CKAP4 cytoskeleton associated protein 4 protein-coding 11.39 0.9306
-10971 YWHAQ tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein theta protein-coding 12.69 0.6094
-10972 TMED10 transmembrane p24 trafficking protein 10 protein-coding 12.75 0.5196
-10973 ASCC3 activating signal cointegrator 1 complex subunit 3 protein-coding 9.938 0.7599
-10974 ADIRF adipogenesis regulatory factor protein-coding 9.16 2.304
-10975 UQCR11 ubiquinol-cytochrome c reductase, complex III subunit XI protein-coding 10.55 0.7269
-10978 CLP1 cleavage and polyadenylation factor I subunit 1 protein-coding 8.025 0.5307
-10979 FERMT2 fermitin family member 2 protein-coding 9.632 1.298
+10971 YWHAQ tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein theta protein-coding 12.69 0.6093
+10972 TMED10 transmembrane p24 trafficking protein 10 protein-coding 12.75 0.5194
+10973 ASCC3 activating signal cointegrator 1 complex subunit 3 protein-coding 9.938 0.7597
+10974 ADIRF adipogenesis regulatory factor protein-coding 9.161 2.304
+10975 UQCR11 ubiquinol-cytochrome c reductase, complex III subunit XI protein-coding 10.55 0.7267
+10978 CLP1 cleavage and polyadenylation factor I subunit 1 protein-coding 8.025 0.5306
+10979 FERMT2 fermitin family member 2 protein-coding 9.633 1.299
10980 COPS6 COP9 signalosome subunit 6 protein-coding 11.1 0.532
-10981 RAB32 RAB32, member RAS oncogene family protein-coding 8.631 1.195
-10982 MAPRE2 microtubule associated protein RP/EB family member 2 protein-coding 9.577 1.212
-10983 CCNI cyclin I protein-coding 11.8 0.9624
-10984 KCNQ1OT1 KCNQ1 opposite strand/antisense transcript 1 (non-protein coding) ncRNA 6.367 1.338
-10985 GCN1 GCN1, eIF2 alpha kinase activator homolog protein-coding 11.47 0.5507
+10981 RAB32 RAB32, member RAS oncogene family protein-coding 8.631 1.194
+10982 MAPRE2 microtubule associated protein RP/EB family member 2 protein-coding 9.578 1.212
+10983 CCNI cyclin I protein-coding 11.8 0.9621
+10984 KCNQ1OT1 KCNQ1 opposite strand/antisense transcript 1 (non-protein coding) ncRNA 6.368 1.338
+10985 GCN1 GCN1, eIF2 alpha kinase activator homolog protein-coding 11.47 0.5505
10987 COPS5 COP9 signalosome subunit 5 protein-coding 10.26 0.5159
-10988 METAP2 methionyl aminopeptidase 2 protein-coding 10.82 0.4845
+10988 METAP2 methionyl aminopeptidase 2 protein-coding 10.82 0.4844
10989 IMMT inner membrane mitochondrial protein protein-coding 10.98 0.4701
-10990 LILRB5 leukocyte immunoglobulin like receptor B5 protein-coding 5.203 1.93
-10991 SLC38A3 solute carrier family 38 member 3 protein-coding 4.175 3.489
-10992 SF3B2 splicing factor 3b subunit 2 protein-coding 12.31 0.416
-10993 SDS serine dehydratase protein-coding 6.752 2.11
-10994 ILVBL ilvB acetolactate synthase like protein-coding 10.48 0.8242
-10998 SLC27A5 solute carrier family 27 member 5 protein-coding 7.088 1.623
-10999 SLC27A4 solute carrier family 27 member 4 protein-coding 9.877 0.8029
+10990 LILRB5 leukocyte immunoglobulin like receptor B5 protein-coding 5.204 1.931
+10991 SLC38A3 solute carrier family 38 member 3 protein-coding 4.176 3.488
+10992 SF3B2 splicing factor 3b subunit 2 protein-coding 12.31 0.4159
+10993 SDS serine dehydratase protein-coding 6.75 2.11
+10994 ILVBL ilvB acetolactate synthase like protein-coding 10.48 0.8239
+10998 SLC27A5 solute carrier family 27 member 5 protein-coding 7.088 1.622
+10999 SLC27A4 solute carrier family 27 member 4 protein-coding 9.876 0.8028
11000 SLC27A3 solute carrier family 27 member 3 protein-coding 8.848 1.062
-11001 SLC27A2 solute carrier family 27 member 2 protein-coding 6.813 2.779
-11004 KIF2C kinesin family member 2C protein-coding 8.208 2.049
-11006 LILRB4 leukocyte immunoglobulin like receptor B4 protein-coding 7.612 1.836
+11001 SLC27A2 solute carrier family 27 member 2 protein-coding 6.813 2.778
+11004 KIF2C kinesin family member 2C protein-coding 8.206 2.05
+11006 LILRB4 leukocyte immunoglobulin like receptor B4 protein-coding 7.612 1.837
11007 CCDC85B coiled-coil domain containing 85B protein-coding 8.447 1.184
-11009 IL24 interleukin 24 protein-coding 2.655 2.331
-1101 CHAD chondroadherin protein-coding 3.917 2.425
-11010 GLIPR1 GLI pathogenesis related 1 protein-coding 8.577 1.358
-11011 TLK2 tousled like kinase 2 protein-coding 9.263 0.4446
-11013 TMSB15A thymosin beta 15a protein-coding 4.107 2.434
-11014 KDELR2 KDEL endoplasmic reticulum protein retention receptor 2 protein-coding 12.47 0.7186
-11015 KDELR3 KDEL endoplasmic reticulum protein retention receptor 3 protein-coding 8.653 1.798
+11009 IL24 interleukin 24 protein-coding 2.655 2.33
+1101 CHAD chondroadherin protein-coding 3.918 2.424
+11010 GLIPR1 GLI pathogenesis related 1 protein-coding 8.578 1.358
+11011 TLK2 tousled like kinase 2 protein-coding 9.262 0.4445
+11013 TMSB15A thymosin beta 15a protein-coding 4.108 2.433
+11014 KDELR2 KDEL endoplasmic reticulum protein retention receptor 2 protein-coding 12.47 0.7185
+11015 KDELR3 KDEL endoplasmic reticulum protein retention receptor 3 protein-coding 8.652 1.797
11016 ATF7 activating transcription factor 7 protein-coding 10.09 0.5972
-11017 SNRNP27 small nuclear ribonucleoprotein U4/U6.U5 subunit 27 protein-coding 9.061 0.5053
+11017 SNRNP27 small nuclear ribonucleoprotein U4/U6.U5 subunit 27 protein-coding 9.06 0.5051
11018 TMED1 transmembrane p24 trafficking protein 1 protein-coding 9.48 0.6758
-11019 LIAS lipoic acid synthetase protein-coding 7.557 0.6364
+11019 LIAS lipoic acid synthetase protein-coding 7.557 0.6362
1102 RCBTB2 RCC1 and BTB domain containing protein 2 protein-coding 8.423 1.107
-11020 IFT27 intraflagellar transport 27 protein-coding 8.878 0.8608
-11021 RAB35 RAB35, member RAS oncogene family protein-coding 10.16 0.4628
-11022 TDRKH tudor and KH domain containing protein-coding 8.079 1.137
+11020 IFT27 intraflagellar transport 27 protein-coding 8.878 0.8604
+11021 RAB35 RAB35, member RAS oncogene family protein-coding 10.16 0.4627
+11022 TDRKH tudor and KH domain containing protein-coding 8.08 1.137
11024 LILRA1 leukocyte immunoglobulin like receptor A1 protein-coding 2.623 1.505
-11025 LILRB3 leukocyte immunoglobulin like receptor B3 protein-coding 5.663 1.612
-11026 LILRA3 leukocyte immunoglobulin like receptor A3 protein-coding 2.442 1.899
-11027 LILRA2 leukocyte immunoglobulin like receptor A2 protein-coding 4.599 1.697
-11030 RBPMS RNA binding protein, mRNA processing factor protein-coding 9.748 1.601
-11031 RAB31 RAB31, member RAS oncogene family protein-coding 10.66 1.566
+11025 LILRB3 leukocyte immunoglobulin like receptor B3 protein-coding 5.664 1.613
+11026 LILRA3 leukocyte immunoglobulin like receptor A3 protein-coding 2.442 1.898
+11027 LILRA2 leukocyte immunoglobulin like receptor A2 protein-coding 4.6 1.697
+11030 RBPMS RNA binding protein, mRNA processing factor protein-coding 9.749 1.601
+11031 RAB31 RAB31, member RAS oncogene family protein-coding 10.66 1.565
11033 ADAP1 ArfGAP with dual PH domains 1 protein-coding 8.295 1.739
-11034 DSTN destrin, actin depolymerizing factor protein-coding 12.65 0.7317
-11035 RIPK3 receptor interacting serine/threonine kinase 3 protein-coding 6.805 1.771
-11037 STON1 stonin 1 protein-coding 7.835 1.634
-1104 RCC1 regulator of chromosome condensation 1 protein-coding 9.346 1.614
+11034 DSTN destrin, actin depolymerizing factor protein-coding 12.65 0.732
+11035 RIPK3 receptor interacting serine/threonine kinase 3 protein-coding 6.806 1.771
+11037 STON1 stonin 1 protein-coding 7.836 1.634
+1104 RCC1 regulator of chromosome condensation 1 protein-coding 9.345 1.614
11040 PIM2 Pim-2 proto-oncogene, serine/threonine kinase protein-coding 8.837 1.348
11041 B4GAT1 beta-1,4-glucuronyltransferase 1 protein-coding 9.378 1.23
-11043 MID2 midline 2 protein-coding 8.252 1.264
-11044 PAPD7 poly(A) RNA polymerase D7, non-canonical protein-coding 9.375 0.6262
-11045 UPK1A uroplakin 1A protein-coding 2.104 2.646
+11043 MID2 midline 2 protein-coding 8.253 1.264
+11044 PAPD7 poly(A) RNA polymerase D7, non-canonical protein-coding 9.375 0.626
+11045 UPK1A uroplakin 1A protein-coding 2.105 2.647
11046 SLC35D2 solute carrier family 35 member D2 protein-coding 9.042 0.8132
11047 ADRM1 adhesion regulating molecule 1 protein-coding 11.21 0.7132
-1105 CHD1 chromodomain helicase DNA binding protein 1 protein-coding 9.501 0.726
-11051 NUDT21 nudix hydrolase 21 protein-coding 10.93 0.5852
-11052 CPSF6 cleavage and polyadenylation specific factor 6 protein-coding 10.66 0.48
-11054 OGFR opioid growth factor receptor protein-coding 10.43 0.7076
-11056 DDX52 DExD-box helicase 52 protein-coding 9.16 0.6238
+1105 CHD1 chromodomain helicase DNA binding protein 1 protein-coding 9.502 0.7257
+11051 NUDT21 nudix hydrolase 21 protein-coding 10.93 0.585
+11052 CPSF6 cleavage and polyadenylation specific factor 6 protein-coding 10.66 0.4798
+11054 OGFR opioid growth factor receptor protein-coding 10.43 0.7074
+11056 DDX52 DExD-box helicase 52 protein-coding 9.159 0.6237
11057 ABHD2 abhydrolase domain containing 2 protein-coding 11.82 1.243
-11059 WWP1 WW domain containing E3 ubiquitin protein ligase 1 protein-coding 10.24 0.9633
+11059 WWP1 WW domain containing E3 ubiquitin protein ligase 1 protein-coding 10.24 0.9631
1106 CHD2 chromodomain helicase DNA binding protein 2 protein-coding 10.96 0.5775
-11060 WWP2 WW domain containing E3 ubiquitin protein ligase 2 protein-coding 10.37 0.5696
-11062 DUS4L dihydrouridine synthase 4 like protein-coding 7.325 0.5829
-11063 SOX30 SRY-box 30 protein-coding 2.324 1.626
-11064 CNTRL centriolin protein-coding 8.565 0.8893
-11065 UBE2C ubiquitin conjugating enzyme E2 C protein-coding 8.576 2.329
-11066 SNRNP35 small nuclear ribonucleoprotein U11/U12 subunit 35 protein-coding 8.762 0.6412
+11060 WWP2 WW domain containing E3 ubiquitin protein ligase 2 protein-coding 10.37 0.5695
+11062 DUS4L dihydrouridine synthase 4 like protein-coding 7.324 0.5829
+11063 SOX30 SRY-box 30 protein-coding 2.324 1.625
+11064 CNTRL centriolin protein-coding 8.566 0.8892
+11065 UBE2C ubiquitin conjugating enzyme E2 C protein-coding 8.573 2.331
+11066 SNRNP35 small nuclear ribonucleoprotein U11/U12 subunit 35 protein-coding 8.762 0.641
11067 DEPP1 DEPP1, autophagy regulator protein-coding 10.13 1.592
-11068 CYB561D2 cytochrome b561 family member D2 protein-coding 8.721 0.7944
-11069 RAPGEF4 Rap guanine nucleotide exchange factor 4 protein-coding 6.991 1.838
+11068 CYB561D2 cytochrome b561 family member D2 protein-coding 8.722 0.7942
+11069 RAPGEF4 Rap guanine nucleotide exchange factor 4 protein-coding 6.992 1.837
1107 CHD3 chromodomain helicase DNA binding protein 3 protein-coding 11.64 1.003
-11070 TMEM115 transmembrane protein 115 protein-coding 10.18 0.6275
+11070 TMEM115 transmembrane protein 115 protein-coding 10.18 0.6274
11072 DUSP14 dual specificity phosphatase 14 protein-coding 8.787 0.9174
-11073 TOPBP1 DNA topoisomerase II binding protein 1 protein-coding 9.744 0.8529
+11073 TOPBP1 DNA topoisomerase II binding protein 1 protein-coding 9.744 0.8527
11076 TPPP tubulin polymerization promoting protein protein-coding 7.806 2.072
-11077 HSF2BP heat shock transcription factor 2 binding protein protein-coding 4.431 1.271
-11078 TRIOBP TRIO and F-actin binding protein protein-coding 10.65 0.7103
-11079 RER1 retention in endoplasmic reticulum sorting receptor 1 protein-coding 11.39 0.4881
-1108 CHD4 chromodomain helicase DNA binding protein 4 protein-coding 12.5 0.4997
-11080 DNAJB4 DnaJ heat shock protein family (Hsp40) member B4 protein-coding 8.28 1.045
-11082 ESM1 endothelial cell specific molecule 1 protein-coding 7.097 2.371
-11083 DIDO1 death inducer-obliterator 1 protein-coding 10.69 0.5101
-11091 WDR5 WD repeat domain 5 protein-coding 10.06 0.5868
+11077 HSF2BP heat shock transcription factor 2 binding protein protein-coding 4.43 1.271
+11078 TRIOBP TRIO and F-actin binding protein protein-coding 10.65 0.7101
+11079 RER1 retention in endoplasmic reticulum sorting receptor 1 protein-coding 11.39 0.488
+1108 CHD4 chromodomain helicase DNA binding protein 4 protein-coding 12.5 0.4996
+11080 DNAJB4 DnaJ heat shock protein family (Hsp40) member B4 protein-coding 8.281 1.045
+11082 ESM1 endothelial cell specific molecule 1 protein-coding 7.096 2.371
+11083 DIDO1 death inducer-obliterator 1 protein-coding 10.69 0.51
+11091 WDR5 WD repeat domain 5 protein-coding 10.06 0.5866
11092 SPACA9 sperm acrosome associated 9 protein-coding 7.216 1.111
-11093 ADAMTS13 ADAM metallopeptidase with thrombospondin type 1 motif 13 protein-coding 6.215 1.442
-11094 CACFD1 calcium channel flower domain containing 1 protein-coding 9.603 0.9431
-11095 ADAMTS8 ADAM metallopeptidase with thrombospondin type 1 motif 8 protein-coding 4.431 2.248
-11096 ADAMTS5 ADAM metallopeptidase with thrombospondin type 1 motif 5 protein-coding 6.928 1.77
-11097 NUPL2 nucleoporin like 2 protein-coding 8.901 0.5673
+11093 ADAMTS13 ADAM metallopeptidase with thrombospondin type 1 motif 13 protein-coding 6.216 1.442
+11094 CACFD1 calcium channel flower domain containing 1 protein-coding 9.602 0.9428
+11095 ADAMTS8 ADAM metallopeptidase with thrombospondin type 1 motif 8 protein-coding 4.433 2.249
+11096 ADAMTS5 ADAM metallopeptidase with thrombospondin type 1 motif 5 protein-coding 6.929 1.77
+11097 NUPL2 nucleoporin like 2 protein-coding 8.901 0.5672
11098 PRSS23 serine protease 23 protein-coding 10.85 1.567
-11099 PTPN21 protein tyrosine phosphatase, non-receptor type 21 protein-coding 8.512 1.016
-11100 HNRNPUL1 heterogeneous nuclear ribonucleoprotein U like 1 protein-coding 12.48 0.4753
-11101 ATE1 arginyltransferase 1 protein-coding 7.352 1.083
-11102 RPP14 ribonuclease P/MRP subunit p14 protein-coding 8.828 0.4484
-11103 KRR1 KRR1, small subunit processome component homolog protein-coding 9.364 0.635
-11104 KATNA1 katanin catalytic subunit A1 protein-coding 8.153 0.584
-11107 PRDM5 PR/SET domain 5 protein-coding 4.909 1.653
-11108 PRDM4 PR/SET domain 4 protein-coding 9.592 0.5461
-1111 CHEK1 checkpoint kinase 1 protein-coding 7.745 1.045
-11112 HIBADH 3-hydroxyisobutyrate dehydrogenase protein-coding 10.11 0.8215
-11113 CIT citron rho-interacting serine/threonine kinase protein-coding 8.99 1.554
-11116 FGFR1OP FGFR1 oncogene partner protein-coding 7.757 0.7655
-11117 EMILIN1 elastin microfibril interfacer 1 protein-coding 9.809 1.809
+11099 PTPN21 protein tyrosine phosphatase, non-receptor type 21 protein-coding 8.513 1.017
+11100 HNRNPUL1 heterogeneous nuclear ribonucleoprotein U like 1 protein-coding 12.48 0.4751
+11101 ATE1 arginyltransferase 1 protein-coding 7.353 1.083
+11102 RPP14 ribonuclease P/MRP subunit p14 protein-coding 8.828 0.4483
+11103 KRR1 KRR1, small subunit processome component homolog protein-coding 9.364 0.6347
+11104 KATNA1 katanin catalytic subunit A1 protein-coding 8.153 0.5838
+11107 PRDM5 PR/SET domain 5 protein-coding 4.91 1.653
+11108 PRDM4 PR/SET domain 4 protein-coding 9.592 0.5459
+1111 CHEK1 checkpoint kinase 1 protein-coding 7.744 1.045
+11112 HIBADH 3-hydroxyisobutyrate dehydrogenase protein-coding 10.11 0.8213
+11113 CIT citron rho-interacting serine/threonine kinase protein-coding 8.989 1.554
+11116 FGFR1OP FGFR1 oncogene partner protein-coding 7.756 0.7654
+11117 EMILIN1 elastin microfibril interfacer 1 protein-coding 9.811 1.809
11118 BTN3A2 butyrophilin subfamily 3 member A2 protein-coding 9.999 1.054
-11119 BTN3A1 butyrophilin subfamily 3 member A1 protein-coding 9.443 0.9256
-1112 FOXN3 forkhead box N3 protein-coding 10.38 0.7914
+11119 BTN3A1 butyrophilin subfamily 3 member A1 protein-coding 9.443 0.9255
+1112 FOXN3 forkhead box N3 protein-coding 10.38 0.7915
11120 BTN2A1 butyrophilin subfamily 2 member A1 protein-coding 9.139 0.6285
-11123 RCAN3 RCAN family member 3 protein-coding 6.515 1.599
+11123 RCAN3 RCAN family member 3 protein-coding 6.517 1.599
11124 FAF1 Fas associated factor 1 protein-coding 9.817 0.4991
-11126 CD160 CD160 molecule protein-coding 3.595 1.102
+11126 CD160 CD160 molecule protein-coding 3.596 1.102
11127 KIF3A kinesin family member 3A protein-coding 8.486 1.032
-11128 POLR3A RNA polymerase III subunit A protein-coding 8.842 0.6436
-11129 CLASRP CLK4 associating serine/arginine rich protein protein-coding 9.164 0.7043
-1113 CHGA chromogranin A protein-coding 3.842 4.383
-11130 ZWINT ZW10 interacting kinetochore protein protein-coding 8.948 1.42
-11131 CAPN11 calpain 11 protein-coding 2.323 1.435
-11132 CAPN10 calpain 10 protein-coding 8.442 0.7673
-11133 KPTN kaptin, actin binding protein protein-coding 7.536 0.8733
+11128 POLR3A RNA polymerase III subunit A protein-coding 8.843 0.6433
+11129 CLASRP CLK4 associating serine/arginine rich protein protein-coding 9.164 0.7041
+1113 CHGA chromogranin A protein-coding 3.848 4.387
+11130 ZWINT ZW10 interacting kinetochore protein protein-coding 8.946 1.42
+11131 CAPN11 calpain 11 protein-coding 2.324 1.435
+11132 CAPN10 calpain 10 protein-coding 8.443 0.767
+11133 KPTN kaptin, actin binding protein protein-coding 7.536 0.873
11135 CDC42EP1 CDC42 effector protein 1 protein-coding 10.69 1.158
-11136 SLC7A9 solute carrier family 7 member 9 protein-coding 3.002 2.441
-11137 PWP1 PWP1 homolog, endonuclein protein-coding 9.875 0.4356
-11138 TBC1D8 TBC1 domain family member 8 protein-coding 9.202 1.161
-1114 CHGB chromogranin B protein-coding 5.156 4.052
-11140 CDC37 cell division cycle 37 protein-coding 11.74 0.5494
+11136 SLC7A9 solute carrier family 7 member 9 protein-coding 3.002 2.44
+11137 PWP1 PWP1 homolog, endonuclein protein-coding 9.875 0.4357
+11138 TBC1D8 TBC1 domain family member 8 protein-coding 9.203 1.162
+1114 CHGB chromogranin B protein-coding 5.16 4.055
+11140 CDC37 cell division cycle 37 protein-coding 11.74 0.5492
11142 PKIG cAMP-dependent protein kinase inhibitor gamma protein-coding 9.599 1.031
-11143 KAT7 lysine acetyltransferase 7 protein-coding 10.03 0.6807
+11143 KAT7 lysine acetyltransferase 7 protein-coding 10.03 0.6806
11144 DMC1 DNA meiotic recombinase 1 protein-coding 3.145 1.643
11145 PLA2G16 phospholipase A2 group XVI protein-coding 9.414 1.775
-11146 GLMN glomulin, FKBP associated protein protein-coding 7.023 0.7783
-11147 HHLA3 HERV-H LTR-associating 3 protein-coding 7.177 0.9699
-11148 HHLA2 HERV-H LTR-associating 2 protein-coding 3.169 3.491
-11149 BVES blood vessel epicardial substance protein-coding 5.901 1.826
-11151 CORO1A coronin 1A protein-coding 9.701 1.431
-11152 WDR45 WD repeat domain 45 protein-coding 10.1 0.591
-11153 FICD FIC domain containing protein-coding 6.053 1.046
-11154 AP4S1 adaptor related protein complex 4 sigma 1 subunit protein-coding 6.206 0.7863
-11155 LDB3 LIM domain binding 3 protein-coding 4.816 2.106
-11156 PTP4A3 protein tyrosine phosphatase type IVA, member 3 protein-coding 9.366 1.222
+11146 GLMN glomulin, FKBP associated protein protein-coding 7.023 0.7781
+11147 HHLA3 HERV-H LTR-associating 3 protein-coding 7.177 0.9696
+11148 HHLA2 HERV-H LTR-associating 2 protein-coding 3.17 3.49
+11149 BVES blood vessel epicardial substance protein-coding 5.903 1.827
+11151 CORO1A coronin 1A protein-coding 9.701 1.432
+11152 WDR45 WD repeat domain 45 protein-coding 10.1 0.5908
+11153 FICD FIC domain containing protein-coding 6.054 1.045
+11154 AP4S1 adaptor related protein complex 4 sigma 1 subunit protein-coding 6.206 0.7861
+11155 LDB3 LIM domain binding 3 protein-coding 4.819 2.107
+11156 PTP4A3 protein tyrosine phosphatase type IVA, member 3 protein-coding 9.365 1.222
11157 LSM6 LSM6 homolog, U6 small nuclear RNA and mRNA degradation associated protein-coding 7.969 0.608
-11158 RABL2B RAB, member of RAS oncogene family like 2B protein-coding 8.365 0.6636
-11159 RABL2A RAB, member of RAS oncogene family like 2A protein-coding 8.117 0.6905
-1116 CHI3L1 chitinase 3 like 1 protein-coding 8.831 3.152
+11158 RABL2B RAB, member of RAS oncogene family like 2B protein-coding 8.365 0.6634
+11159 RABL2A RAB, member of RAS oncogene family like 2A protein-coding 8.117 0.6904
+1116 CHI3L1 chitinase 3 like 1 protein-coding 8.83 3.153
11160 ERLIN2 ER lipid raft associated 2 protein-coding 10.63 0.7826
-11161 ERG28 ergosterol biosynthesis 28 homolog protein-coding 10.06 0.6964
-11162 NUDT6 nudix hydrolase 6 protein-coding 6.195 0.9806
-11163 NUDT4 nudix hydrolase 4 protein-coding 9.873 0.9688
-11164 NUDT5 nudix hydrolase 5 protein-coding 9.604 0.751
-11165 NUDT3 nudix hydrolase 3 protein-coding 9.056 0.575
+11161 ERG28 ergosterol biosynthesis 28 homolog protein-coding 10.06 0.6963
+11162 NUDT6 nudix hydrolase 6 protein-coding 6.195 0.9803
+11163 NUDT4 nudix hydrolase 4 protein-coding 9.873 0.9687
+11164 NUDT5 nudix hydrolase 5 protein-coding 9.603 0.7511
+11165 NUDT3 nudix hydrolase 3 protein-coding 9.055 0.5749
11167 FSTL1 follistatin like 1 protein-coding 12.09 1.466
11168 PSIP1 PC4 and SFRS1 interacting protein 1 protein-coding 10.31 1.011
-11169 WDHD1 WD repeat and HMG-box DNA binding protein 1 protein-coding 7.628 1.396
-1117 CHI3L2 chitinase 3 like 2 protein-coding 5.936 2.991
-11170 FAM107A family with sequence similarity 107 member A protein-coding 7.682 2.885
-11171 STRAP serine/threonine kinase receptor associated protein protein-coding 11.22 0.58
-11173 ADAMTS7 ADAM metallopeptidase with thrombospondin type 1 motif 7 protein-coding 7.189 1.544
-11174 ADAMTS6 ADAM metallopeptidase with thrombospondin type 1 motif 6 protein-coding 4.919 1.806
-11176 BAZ2A bromodomain adjacent to zinc finger domain 2A protein-coding 11.2 0.5962
+11169 WDHD1 WD repeat and HMG-box DNA binding protein 1 protein-coding 7.627 1.397
+1117 CHI3L2 chitinase 3 like 2 protein-coding 5.936 2.99
+11170 FAM107A family with sequence similarity 107 member A protein-coding 7.684 2.885
+11171 STRAP serine/threonine kinase receptor associated protein protein-coding 11.22 0.5801
+11173 ADAMTS7 ADAM metallopeptidase with thrombospondin type 1 motif 7 protein-coding 7.188 1.544
+11174 ADAMTS6 ADAM metallopeptidase with thrombospondin type 1 motif 6 protein-coding 4.919 1.805
+11176 BAZ2A bromodomain adjacent to zinc finger domain 2A protein-coding 11.2 0.596
11177 BAZ1A bromodomain adjacent to zinc finger domain 1A protein-coding 9.868 1.018
11178 LZTS1 leucine zipper tumor suppressor 1 protein-coding 7.81 1.693
-11179 ZNF277 zinc finger protein 277 protein-coding 8.698 0.5768
-1118 CHIT1 chitinase 1 protein-coding 5.564 3.224
-11180 WDR6 WD repeat domain 6 protein-coding 11.62 0.7612
-11182 SLC2A6 solute carrier family 2 member 6 protein-coding 7.056 1.457
-11183 MAP4K5 mitogen-activated protein kinase kinase kinase kinase 5 protein-coding 9.661 0.6752
-11184 MAP4K1 mitogen-activated protein kinase kinase kinase kinase 1 protein-coding 6.508 1.729
-11185 INMT indolethylamine N-methyltransferase protein-coding 6.573 2.169
-11186 RASSF1 Ras association domain family member 1 protein-coding 9.018 0.6466
-11187 PKP3 plakophilin 3 protein-coding 8.564 3.964
-11188 NISCH nischarin protein-coding 10.87 0.7831
-11189 CELF3 CUGBP Elav-like family member 3 protein-coding 2.175 3.186
+11179 ZNF277 zinc finger protein 277 protein-coding 8.698 0.5765
+1118 CHIT1 chitinase 1 protein-coding 5.565 3.225
+11180 WDR6 WD repeat domain 6 protein-coding 11.62 0.761
+11182 SLC2A6 solute carrier family 2 member 6 protein-coding 7.056 1.458
+11183 MAP4K5 mitogen-activated protein kinase kinase kinase kinase 5 protein-coding 9.661 0.675
+11184 MAP4K1 mitogen-activated protein kinase kinase kinase kinase 1 protein-coding 6.509 1.729
+11185 INMT indolethylamine N-methyltransferase protein-coding 6.576 2.17
+11186 RASSF1 Ras association domain family member 1 protein-coding 9.018 0.6465
+11187 PKP3 plakophilin 3 protein-coding 8.563 3.964
+11188 NISCH nischarin protein-coding 10.87 0.7834
+11189 CELF3 CUGBP Elav-like family member 3 protein-coding 2.177 3.188
1119 CHKA choline kinase alpha protein-coding 9.247 1.018
-11190 CEP250 centrosomal protein 250 protein-coding 9.846 0.6977
-11191 PTENP1 phosphatase and tensin homolog pseudogene 1 pseudo 7.843 0.7401
-11193 WBP4 WW domain binding protein 4 protein-coding 8.281 0.5739
-11194 ABCB8 ATP binding cassette subfamily B member 8 protein-coding 9.632 0.659
-11196 SEC23IP SEC23 interacting protein protein-coding 9.829 0.7088
-11198 SUPT16H SPT16 homolog, facilitates chromatin remodeling subunit protein-coding 11.44 0.5689
-112 ADCY6 adenylate cyclase 6 protein-coding 10.06 1.001
-1120 CHKB choline kinase beta protein-coding 8.002 0.8301
-11200 CHEK2 checkpoint kinase 2 protein-coding 7.718 1.276
-11201 POLI DNA polymerase iota protein-coding 8.462 0.924
-11209 MST1P2 macrophage stimulating 1 pseudogene 2 pseudo 6.219 1.895
-1121 CHM CHM, Rab escort protein 1 protein-coding 8.808 0.7386
-11212 PLPBP pyridoxal phosphate binding protein protein-coding 10.01 0.643
-11213 IRAK3 interleukin 1 receptor associated kinase 3 protein-coding 7.316 1.547
-11214 AKAP13 A-kinase anchoring protein 13 protein-coding 11.31 0.7898
-11215 AKAP11 A-kinase anchoring protein 11 protein-coding 10.11 0.8635
-11216 AKAP10 A-kinase anchoring protein 10 protein-coding 8.381 0.9327
-11217 AKAP2 A-kinase anchoring protein 2 protein-coding 8.402 2.022
-11218 DDX20 DEAD-box helicase 20 protein-coding 8.535 0.5399
+11190 CEP250 centrosomal protein 250 protein-coding 9.845 0.6975
+11191 PTENP1 phosphatase and tensin homolog pseudogene 1 pseudo 7.843 0.7399
+11193 WBP4 WW domain binding protein 4 protein-coding 8.281 0.5737
+11194 ABCB8 ATP binding cassette subfamily B member 8 protein-coding 9.632 0.6589
+11196 SEC23IP SEC23 interacting protein protein-coding 9.829 0.7085
+11198 SUPT16H SPT16 homolog, facilitates chromatin remodeling subunit protein-coding 11.44 0.5687
+112 ADCY6 adenylate cyclase 6 protein-coding 10.06 1
+1120 CHKB choline kinase beta protein-coding 8.002 0.8299
+11200 CHEK2 checkpoint kinase 2 protein-coding 7.717 1.276
+11201 POLI DNA polymerase iota protein-coding 8.463 0.9239
+11209 MST1P2 macrophage stimulating 1 pseudogene 2 pseudo 6.22 1.896
+1121 CHM CHM, Rab escort protein 1 protein-coding 8.808 0.7383
+11212 PLPBP pyridoxal phosphate binding protein protein-coding 10.01 0.6427
+11213 IRAK3 interleukin 1 receptor associated kinase 3 protein-coding 7.317 1.547
+11214 AKAP13 A-kinase anchoring protein 13 protein-coding 11.31 0.79
+11215 AKAP11 A-kinase anchoring protein 11 protein-coding 10.11 0.8633
+11216 AKAP10 A-kinase anchoring protein 10 protein-coding 8.381 0.9324
+11217 AKAP2 A-kinase anchoring protein 2 protein-coding 8.403 2.022
+11218 DDX20 DEAD-box helicase 20 protein-coding 8.535 0.5397
11219 TREX2 three prime repair exonuclease 2 protein-coding 2.762 1.536
-1122 CHML CHM like, Rab escort protein 2 protein-coding 8.604 1.121
-11221 DUSP10 dual specificity phosphatase 10 protein-coding 7.998 1.273
-11222 MRPL3 mitochondrial ribosomal protein L3 protein-coding 10.79 0.5967
-11223 MST1L macrophage stimulating 1 like protein-coding 5.05 2.258
-11224 RPL35 ribosomal protein L35 protein-coding 13.08 0.8919
-11226 GALNT6 polypeptide N-acetylgalactosaminyltransferase 6 protein-coding 8.385 2.338
+1122 CHML CHM like, Rab escort protein 2 protein-coding 8.603 1.121
+11221 DUSP10 dual specificity phosphatase 10 protein-coding 7.999 1.273
+11222 MRPL3 mitochondrial ribosomal protein L3 protein-coding 10.79 0.5968
+11223 MST1L macrophage stimulating 1 like protein-coding 5.052 2.259
+11224 RPL35 ribosomal protein L35 protein-coding 13.08 0.8916
+11226 GALNT6 polypeptide N-acetylgalactosaminyltransferase 6 protein-coding 8.385 2.337
11227 GALNT5 polypeptide N-acetylgalactosaminyltransferase 5 protein-coding 5.165 3.108
-11228 RASSF8 Ras association domain family member 8 protein-coding 8.29 1.472
-1123 CHN1 chimerin 1 protein-coding 7.751 1.624
+11228 RASSF8 Ras association domain family member 8 protein-coding 8.291 1.472
+1123 CHN1 chimerin 1 protein-coding 7.751 1.623
11230 PRAF2 PRA1 domain family member 2 protein-coding 9.35 1.145
-11231 SEC63 SEC63 homolog, protein translocation regulator protein-coding 11.12 0.6203
-11232 POLG2 DNA polymerase gamma 2, accessory subunit protein-coding 6.903 0.6086
-11234 HPS5 HPS5, biogenesis of lysosomal organelles complex 2 subunit 2 protein-coding 9.035 0.7371
-11235 PDCD10 programmed cell death 10 protein-coding 9.419 0.7947
-11236 RNF139 ring finger protein 139 protein-coding 9.809 0.553
-11237 RNF24 ring finger protein 24 protein-coding 7.945 1.068
-11238 CA5B carbonic anhydrase 5B protein-coding 7.52 0.9495
-112398 EGLN2 egl-9 family hypoxia inducible factor 2 protein-coding 10.59 0.6637
-112399 EGLN3 egl-9 family hypoxia inducible factor 3 protein-coding 9.044 2.235
-1124 CHN2 chimerin 2 protein-coding 7.055 1.771
+11231 SEC63 SEC63 homolog, protein translocation regulator protein-coding 11.13 0.6201
+11232 POLG2 DNA polymerase gamma 2, accessory subunit protein-coding 6.903 0.6085
+11234 HPS5 HPS5, biogenesis of lysosomal organelles complex 2 subunit 2 protein-coding 9.036 0.737
+11235 PDCD10 programmed cell death 10 protein-coding 9.419 0.7943
+11236 RNF139 ring finger protein 139 protein-coding 9.808 0.5528
+11237 RNF24 ring finger protein 24 protein-coding 7.944 1.068
+11238 CA5B carbonic anhydrase 5B protein-coding 7.52 0.9493
+112398 EGLN2 egl-9 family hypoxia inducible factor 2 protein-coding 10.59 0.6635
+112399 EGLN3 egl-9 family hypoxia inducible factor 3 protein-coding 9.043 2.235
+1124 CHN2 chimerin 2 protein-coding 7.055 1.77
11240 PADI2 peptidyl arginine deiminase 2 protein-coding 7.572 2.444
11243 PMF1 polyamine modulated factor 1 protein-coding 9.918 0.6111
-11244 ZHX1 zinc fingers and homeoboxes 1 protein-coding 9.683 0.812
-11245 GPR176 G protein-coupled receptor 176 protein-coding 6.266 1.73
-112464 CAVIN3 caveolae associated protein 3 protein-coding 7.887 1.651
-11247 NXPH4 neurexophilin 4 protein-coding 6.176 2.566
-112476 PRRT2 proline rich transmembrane protein 2 protein-coding 5.962 1.91
+11244 ZHX1 zinc fingers and homeoboxes 1 protein-coding 9.684 0.8118
+11245 GPR176 G protein-coupled receptor 176 protein-coding 6.267 1.73
+112464 CAVIN3 caveolae associated protein 3 protein-coding 7.887 1.65
+11247 NXPH4 neurexophilin 4 protein-coding 6.175 2.566
+112476 PRRT2 proline rich transmembrane protein 2 protein-coding 5.963 1.91
112479 ERI2 ERI1 exoribonuclease family member 2 protein-coding 8.293 0.7147
-11248 NXPH3 neurexophilin 3 protein-coding 5.725 2.059
+11248 NXPH3 neurexophilin 3 protein-coding 5.727 2.059
112483 SAT2 spermidine/spermine N1-acetyltransferase family member 2 protein-coding 9.579 1.013
-112487 DTD2 D-tyrosyl-tRNA deacylase 2 (putative) protein-coding 8.178 0.6651
-112495 GTF3C6 general transcription factor IIIC subunit 6 protein-coding 9.838 0.7005
+112487 DTD2 D-tyrosyl-tRNA deacylase 2 (putative) protein-coding 8.178 0.6649
+112495 GTF3C6 general transcription factor IIIC subunit 6 protein-coding 9.838 0.7004
11250 GPR45 G protein-coupled receptor 45 protein-coding 1.154 1.281
11251 PTGDR2 prostaglandin D2 receptor 2 protein-coding 3.101 1.733
-11252 PACSIN2 protein kinase C and casein kinase substrate in neurons 2 protein-coding 9.89 0.8701
-11253 MAN1B1 mannosidase alpha class 1B member 1 protein-coding 10.94 0.5547
+11252 PACSIN2 protein kinase C and casein kinase substrate in neurons 2 protein-coding 9.891 0.8701
+11253 MAN1B1 mannosidase alpha class 1B member 1 protein-coding 10.94 0.5546
11257 TP53TG1 TP53 target 1 (non-protein coding) ncRNA 8.337 1.018
-112574 SNX18 sorting nexin 18 protein-coding 9.434 0.7747
-11258 DCTN3 dynactin subunit 3 protein-coding 9.819 0.6642
-11259 FILIP1L filamin A interacting protein 1 like protein-coding 9.03 1.56
-112597 CYTOR cytoskeleton regulator RNA ncRNA 7.33 1.57
-11260 XPOT exportin for tRNA protein-coding 10.8 0.75
-112609 MRAP2 melanocortin 2 receptor accessory protein 2 protein-coding 5.125 2.588
-11261 CHP1 calcineurin like EF-hand protein 1 protein-coding 11.46 0.6768
-112611 RWDD2A RWD domain containing 2A protein-coding 6.868 0.9243
+112574 SNX18 sorting nexin 18 protein-coding 9.435 0.7745
+11258 DCTN3 dynactin subunit 3 protein-coding 9.819 0.6641
+11259 FILIP1L filamin A interacting protein 1 like protein-coding 9.031 1.56
+112597 CYTOR cytoskeleton regulator RNA ncRNA 7.329 1.57
+11260 XPOT exportin for tRNA protein-coding 10.8 0.7498
+112609 MRAP2 melanocortin 2 receptor accessory protein 2 protein-coding 5.126 2.588
+11261 CHP1 calcineurin like EF-hand protein 1 protein-coding 11.46 0.6766
+112611 RWDD2A RWD domain containing 2A protein-coding 6.868 0.9244
112616 CMTM7 CKLF like MARVEL transmembrane domain containing 7 protein-coding 8.458 1.467
-11262 SP140 SP140 nuclear body protein protein-coding 5.685 1.662
+11262 SP140 SP140 nuclear body protein protein-coding 5.685 1.663
11264 PXMP4 peroxisomal membrane protein 4 protein-coding 8.927 1.031
-11266 DUSP12 dual specificity phosphatase 12 protein-coding 8.156 0.5673
-11267 SNF8 SNF8, ESCRT-II complex subunit protein-coding 10.05 0.6099
-11269 DDX19B DEAD-box helicase 19B protein-coding 9.5 0.5026
-11270 NRM nurim protein-coding 8.588 1.029
+11266 DUSP12 dual specificity phosphatase 12 protein-coding 8.156 0.5672
+11267 SNF8 SNF8, ESCRT-II complex subunit protein-coding 10.05 0.6098
+11269 DDX19B DEAD-box helicase 19B protein-coding 9.5 0.5024
+11270 NRM nurim protein-coding 8.587 1.029
112703 FAM71E1 family with sequence similarity 71 member E1 protein-coding 5.588 1.418
-112714 TUBA3E tubulin alpha 3e protein-coding 1.659 2.028
-11272 PRR4 proline rich 4 protein-coding 5.194 1.326
+112714 TUBA3E tubulin alpha 3e protein-coding 1.66 2.029
+11272 PRR4 proline rich 4 protein-coding 5.195 1.326
112724 RDH13 retinol dehydrogenase 13 protein-coding 7.999 1.035
11273 ATXN2L ataxin 2 like protein-coding 11.46 0.5005
11274 USP18 ubiquitin specific peptidase 18 protein-coding 8.248 1.145
-11275 KLHL2 kelch like family member 2 protein-coding 8.655 0.8713
-112752 IFT43 intraflagellar transport 43 protein-coding 8.27 0.6851
-112755 STX1B syntaxin 1B protein-coding 5.052 2.124
+11275 KLHL2 kelch like family member 2 protein-coding 8.655 0.871
+112752 IFT43 intraflagellar transport 43 protein-coding 8.269 0.6852
+112755 STX1B syntaxin 1B protein-coding 5.052 2.123
11276 SYNRG synergin gamma protein-coding 10.01 0.5567
-11277 TREX1 three prime repair exonuclease 1 protein-coding 8.595 0.906
+11277 TREX1 three prime repair exonuclease 1 protein-coding 8.595 0.9059
112770 GLMP glycosylated lysosomal membrane protein protein-coding 10.32 1.037
11278 KLF12 Kruppel like factor 12 protein-coding 8.237 1.321
-11279 KLF8 Kruppel like factor 8 protein-coding 6.584 1.865
-11280 SCN11A sodium voltage-gated channel alpha subunit 11 protein-coding 2.362 1.488
-112812 FDX1L ferredoxin 1 like protein-coding 8.155 0.8207
+11279 KLF8 Kruppel like factor 8 protein-coding 6.585 1.864
+11280 SCN11A sodium voltage-gated channel alpha subunit 11 protein-coding 2.363 1.488
+112812 FDX1L ferredoxin 1 like protein-coding 8.154 0.8205
112817 HOGA1 4-hydroxy-2-oxoglutarate aldolase 1 protein-coding 4.746 2.716
-11282 MGAT4B mannosyl (alpha-1,3-)-glycoprotein beta-1,4-N-acetylglucosaminyltransferase, isozyme B protein-coding 11.27 0.8784
-11284 PNKP polynucleotide kinase 3'-phosphatase protein-coding 9.268 0.7679
-112840 WDR89 WD repeat domain 89 protein-coding 8.262 0.4998
-112849 L3HYPDH trans-L-3-hydroxyproline dehydratase protein-coding 6.572 0.9405
-11285 B4GALT7 beta-1,4-galactosyltransferase 7 protein-coding 9.292 0.6464
-112858 TP53RK TP53 regulating kinase protein-coding 8.916 0.5606
-112869 SGF29 SAGA complex associated factor 29 protein-coding 8.312 0.7351
-112936 VPS26B VPS26, retromer complex component B protein-coding 10.4 0.6262
+11282 MGAT4B mannosyl (alpha-1,3-)-glycoprotein beta-1,4-N-acetylglucosaminyltransferase, isozyme B protein-coding 11.27 0.8781
+11284 PNKP polynucleotide kinase 3'-phosphatase protein-coding 9.268 0.7677
+112840 WDR89 WD repeat domain 89 protein-coding 8.262 0.4997
+112849 L3HYPDH trans-L-3-hydroxyproline dehydratase protein-coding 6.571 0.9406
+11285 B4GALT7 beta-1,4-galactosyltransferase 7 protein-coding 9.292 0.6461
+112858 TP53RK TP53 regulating kinase protein-coding 8.915 0.5604
+112869 SGF29 SAGA complex associated factor 29 protein-coding 8.312 0.7349
+112936 VPS26B VPS26, retromer complex component B protein-coding 10.4 0.6261
112939 NACC1 nucleus accumbens associated 1 protein-coding 10.87 0.6387
-112942 CFAP36 cilia and flagella associated protein 36 protein-coding 9.534 0.8419
-112950 MED8 mediator complex subunit 8 protein-coding 9.47 0.5792
-112970 KTI12 KTI12 chromatin associated homolog protein-coding 7.728 0.5551
+112942 CFAP36 cilia and flagella associated protein 36 protein-coding 9.534 0.8416
+112950 MED8 mediator complex subunit 8 protein-coding 9.469 0.579
+112970 KTI12 KTI12 chromatin associated homolog protein-coding 7.728 0.5552
113 ADCY7 adenylate cyclase 7 protein-coding 8.992 1.225
1130 LYST lysosomal trafficking regulator protein-coding 9.115 1.047
-113000 RPUSD1 RNA pseudouridylate synthase domain containing 1 protein-coding 9.054 0.7271
+113000 RPUSD1 RNA pseudouridylate synthase domain containing 1 protein-coding 9.053 0.7271
113026 PLCD3 phospholipase C delta 3 protein-coding 9.525 1.662
-11309 SLCO2B1 solute carrier organic anion transporter family member 2B1 protein-coding 9.624 1.68
-1131 CHRM3 cholinergic receptor muscarinic 3 protein-coding 4.239 2.331
-11311 VPS45 vacuolar protein sorting 45 homolog protein-coding 9.742 0.5395
-113115 MTFR2 mitochondrial fission regulator 2 protein-coding 5.647 1.846
-11313 LYPLA2 lysophospholipase II protein-coding 10.64 0.8186
-113130 CDCA5 cell division cycle associated 5 protein-coding 8.452 1.775
+11309 SLCO2B1 solute carrier organic anion transporter family member 2B1 protein-coding 9.625 1.68
+1131 CHRM3 cholinergic receptor muscarinic 3 protein-coding 4.239 2.33
+11311 VPS45 vacuolar protein sorting 45 homolog protein-coding 9.742 0.5393
+113115 MTFR2 mitochondrial fission regulator 2 protein-coding 5.645 1.847
+11313 LYPLA2 lysophospholipase II protein-coding 10.64 0.8185
+113130 CDCA5 cell division cycle associated 5 protein-coding 8.449 1.776
11314 CD300A CD300a molecule protein-coding 7.17 1.412
-113146 AHNAK2 AHNAK nucleoprotein 2 protein-coding 9.839 2.601
+113146 AHNAK2 AHNAK nucleoprotein 2 protein-coding 9.84 2.601
11315 PARK7 Parkinsonism associated deglycase protein-coding 11.93 0.5612
-113157 RPLP0P2 ribosomal protein lateral stalk subunit P0 pseudogene 2 pseudo 5.196 1.764
+113157 RPLP0P2 ribosomal protein lateral stalk subunit P0 pseudogene 2 pseudo 5.196 1.763
11316 COPE coatomer protein complex subunit epsilon protein-coding 11.55 0.6581
-113174 SAAL1 serum amyloid A like 1 protein-coding 7.761 0.6607
-113177 IZUMO4 IZUMO family member 4 protein-coding 4.903 1.563
-113178 SCAMP4 secretory carrier membrane protein 4 protein-coding 10.73 0.6315
+113174 SAAL1 serum amyloid A like 1 protein-coding 7.76 0.6607
+113177 IZUMO4 IZUMO family member 4 protein-coding 4.905 1.563
+113178 SCAMP4 secretory carrier membrane protein 4 protein-coding 10.73 0.6314
113179 ADAT3 adenosine deaminase, tRNA specific 3 protein-coding 5.848 1.112
-11318 GPR182 G protein-coupled receptor 182 protein-coding 1.218 1.102
-113189 CHST14 carbohydrate sulfotransferase 14 protein-coding 9.119 0.7793
-11319 ECD ecdysoneless cell cycle regulator protein-coding 9.108 0.4623
+11318 GPR182 G protein-coupled receptor 182 protein-coding 1.219 1.103
+113189 CHST14 carbohydrate sulfotransferase 14 protein-coding 9.119 0.779
+11319 ECD ecdysoneless cell cycle regulator protein-coding 9.107 0.4621
1132 CHRM4 cholinergic receptor muscarinic 4 protein-coding 2.132 1.669
-11320 MGAT4A mannosyl (alpha-1,3-)-glycoprotein beta-1,4-N-acetylglucosaminyltransferase, isozyme A protein-coding 9.592 1.224
+11320 MGAT4A mannosyl (alpha-1,3-)-glycoprotein beta-1,4-N-acetylglucosaminyltransferase, isozyme A protein-coding 9.593 1.223
113201 CASC4 cancer susceptibility 4 protein-coding 11.2 0.9061
-11321 GPN1 GPN-loop GTPase 1 protein-coding 9.761 0.5235
+11321 GPN1 GPN-loop GTPase 1 protein-coding 9.76 0.5235
11322 TMC6 transmembrane channel like 6 protein-coding 9.896 1.268
113230 MISP3 MISP family member 3 protein-coding 6.984 1.492
-113235 SLC46A1 solute carrier family 46 member 1 protein-coding 9.232 1.14
-113246 C12orf57 chromosome 12 open reading frame 57 protein-coding 10.54 0.9192
-11325 DDX42 DEAD-box helicase 42 protein-coding 11.41 0.4162
-113251 LARP4 La ribonucleoprotein domain family member 4 protein-coding 10.14 0.626
-11326 VSIG4 V-set and immunoglobulin domain containing 4 protein-coding 7.814 1.965
-113263 GLCCI1 glucocorticoid induced 1 protein-coding 8.378 1.402
-113277 TMEM106A transmembrane protein 106A protein-coding 6.551 1.32
+113235 SLC46A1 solute carrier family 46 member 1 protein-coding 9.233 1.139
+113246 C12orf57 chromosome 12 open reading frame 57 protein-coding 10.54 0.9188
+11325 DDX42 DEAD-box helicase 42 protein-coding 11.41 0.416
+113251 LARP4 La ribonucleoprotein domain family member 4 protein-coding 10.13 0.6258
+11326 VSIG4 V-set and immunoglobulin domain containing 4 protein-coding 7.815 1.965
+113263 GLCCI1 glucocorticoid induced 1 protein-coding 8.379 1.402
+113277 TMEM106A transmembrane protein 106A protein-coding 6.551 1.319
113278 SLC52A3 solute carrier family 52 member 3 protein-coding 7.101 2.219
-11328 FKBP9 FK506 binding protein 9 protein-coding 11.35 0.9437
-11329 STK38 serine/threonine kinase 38 protein-coding 10.2 0.824
-1133 CHRM5 cholinergic receptor muscarinic 5 protein-coding 1.672 1.179
+11328 FKBP9 FK506 binding protein 9 protein-coding 11.35 0.9435
+11329 STK38 serine/threonine kinase 38 protein-coding 10.2 0.8238
+1133 CHRM5 cholinergic receptor muscarinic 5 protein-coding 1.673 1.179
11331 PHB2 prohibitin 2 protein-coding 11.84 0.6351
-11332 ACOT7 acyl-CoA thioesterase 7 protein-coding 9.673 1.104
+11332 ACOT7 acyl-CoA thioesterase 7 protein-coding 9.672 1.105
11333 PDAP1 PDGFA associated protein 1 protein-coding 11.33 0.5139
-11334 TUSC2 tumor suppressor 2, mitochondrial calcium regulator protein-coding 9.235 0.6497
-11335 CBX3 chromobox 3 protein-coding 11.82 0.646
-11336 EXOC3 exocyst complex component 3 protein-coding 10.35 0.6245
-11337 GABARAP GABA type A receptor-associated protein protein-coding 12.52 0.6783
-11338 U2AF2 U2 small nuclear RNA auxiliary factor 2 protein-coding 11.73 0.4519
-11339 OIP5 Opa interacting protein 5 protein-coding 5.818 1.846
-11340 EXOSC8 exosome component 8 protein-coding 8.377 0.7286
-113402 SFT2D1 SFT2 domain containing 1 protein-coding 8.823 0.6719
-11341 SCRG1 stimulator of chondrogenesis 1 protein-coding 3.046 3.475
-113419 TEX261 testis expressed 261 protein-coding 11.07 0.4266
-11342 RNF13 ring finger protein 13 protein-coding 10.43 0.6625
+11334 TUSC2 tumor suppressor 2, mitochondrial calcium regulator protein-coding 9.235 0.6494
+11335 CBX3 chromobox 3 protein-coding 11.82 0.6465
+11336 EXOC3 exocyst complex component 3 protein-coding 10.35 0.6242
+11337 GABARAP GABA type A receptor-associated protein protein-coding 12.52 0.6782
+11338 U2AF2 U2 small nuclear RNA auxiliary factor 2 protein-coding 11.72 0.4518
+11339 OIP5 Opa interacting protein 5 protein-coding 5.816 1.846
+11340 EXOSC8 exosome component 8 protein-coding 8.376 0.7285
+113402 SFT2D1 SFT2 domain containing 1 protein-coding 8.823 0.6718
+11341 SCRG1 stimulator of chondrogenesis 1 protein-coding 3.048 3.475
+113419 TEX261 testis expressed 261 protein-coding 11.07 0.4265
+11342 RNF13 ring finger protein 13 protein-coding 10.43 0.6624
11343 MGLL monoglyceride lipase protein-coding 10.59 1.448
-11344 TWF2 twinfilin actin binding protein 2 protein-coding 10.12 0.7328
-113444 SMIM12 small integral membrane protein 12 protein-coding 9.381 0.5489
-11345 GABARAPL2 GABA type A receptor associated protein like 2 protein-coding 10.73 0.7131
-113451 AZIN2 antizyme inhibitor 2 protein-coding 6.847 1.344
-113452 TMEM54 transmembrane protein 54 protein-coding 9.986 1.441
-113457 TUBA3D tubulin alpha 3d protein-coding 2.275 2.208
-11346 SYNPO synaptopodin protein-coding 10.8 1.311
+11344 TWF2 twinfilin actin binding protein 2 protein-coding 10.12 0.7327
+113444 SMIM12 small integral membrane protein 12 protein-coding 9.381 0.5488
+11345 GABARAPL2 GABA type A receptor associated protein like 2 protein-coding 10.73 0.713
+113451 AZIN2 antizyme inhibitor 2 protein-coding 6.848 1.343
+113452 TMEM54 transmembrane protein 54 protein-coding 9.985 1.441
+113457 TUBA3D tubulin alpha 3d protein-coding 2.276 2.21
+11346 SYNPO synaptopodin protein-coding 10.81 1.311
113510 HELQ helicase, POLQ like protein-coding 7.697 0.4877
113540 CMTM1 CKLF like MARVEL transmembrane domain containing 1 protein-coding 6.408 1.074
-1136 CHRNA3 cholinergic receptor nicotinic alpha 3 subunit protein-coding 3.329 2.565
-113612 CYP2U1 cytochrome P450 family 2 subfamily U member 1 protein-coding 7.774 1.381
-113622 ADPRHL1 ADP-ribosylhydrolase like 1 protein-coding 5.587 1.604
-113655 MFSD3 major facilitator superfamily domain containing 3 protein-coding 8.454 1.114
+1136 CHRNA3 cholinergic receptor nicotinic alpha 3 subunit protein-coding 3.331 2.568
+113612 CYP2U1 cytochrome P450 family 2 subfamily U member 1 protein-coding 7.775 1.38
+113622 ADPRHL1 ADP-ribosylhydrolase like 1 protein-coding 5.586 1.604
+113655 MFSD3 major facilitator superfamily domain containing 3 protein-coding 8.453 1.114
113675 SDSL serine dehydratase like protein-coding 8.19 1.307
-113691 TUBA3FP tubulin alpha 3f pseudogene pseudo 2.679 1.751
-113730 KLHDC7B kelch domain containing 7B protein-coding 5.952 2.533
+113691 TUBA3FP tubulin alpha 3f pseudogene pseudo 2.68 1.751
+113730 KLHDC7B kelch domain containing 7B protein-coding 5.951 2.533
113763 ZBED6CL ZBED6 C-terminal like protein-coding 7.455 1.561
-113791 PIK3IP1 phosphoinositide-3-kinase interacting protein 1 protein-coding 9.771 1.102
+113791 PIK3IP1 phosphoinositide-3-kinase interacting protein 1 protein-coding 9.772 1.102
1138 CHRNA5 cholinergic receptor nicotinic alpha 5 subunit protein-coding 5.712 1.912
-113802 HENMT1 HEN methyltransferase 1 protein-coding 7.193 1.67
-113828 FAM83F family with sequence similarity 83 member F protein-coding 5.809 3.314
-113829 SLC35A4 solute carrier family 35 member A4 protein-coding 11.02 0.4812
-113835 ZNF257 zinc finger protein 257 protein-coding 3.893 2.003
+113802 HENMT1 HEN methyltransferase 1 protein-coding 7.194 1.67
+113828 FAM83F family with sequence similarity 83 member F protein-coding 5.809 3.313
+113829 SLC35A4 solute carrier family 35 member A4 protein-coding 11.01 0.481
+113835 ZNF257 zinc finger protein 257 protein-coding 3.894 2.002
113878 DTX2 deltex E3 ubiquitin ligase 2 protein-coding 9.238 1.115
-1139 CHRNA7 cholinergic receptor nicotinic alpha 7 subunit protein-coding 2.498 1.955
+1139 CHRNA7 cholinergic receptor nicotinic alpha 7 subunit protein-coding 2.5 1.956
1140 CHRNB1 cholinergic receptor nicotinic beta 1 subunit protein-coding 7.629 1.121
-114034 TOE1 target of EGR1, exonuclease protein-coding 8.036 0.6036
+114034 TOE1 target of EGR1, exonuclease protein-coding 8.037 0.6035
114036 LINC00310 long intergenic non-protein coding RNA 310 ncRNA 2.535 1.379
114044 MCM3AP-AS1 MCM3AP antisense RNA 1 ncRNA 4.499 1.062
-114049 BUD23 BUD23, rRNA methyltransferase and ribosome maturation factor protein-coding 10.64 0.6068
-114088 TRIM9 tripartite motif containing 9 protein-coding 5.501 2.885
-1141 CHRNB2 cholinergic receptor nicotinic beta 2 subunit protein-coding 3.459 2.599
-114132 SIGLEC11 sialic acid binding Ig like lectin 11 protein-coding 3.16 1.728
-114134 SLC2A13 solute carrier family 2 member 13 protein-coding 7.706 1.391
-114294 LACTB lactamase beta protein-coding 8.38 0.7568
-114299 PALM2 paralemmin 2 protein-coding 5.018 1.563
-1143 CHRNB4 cholinergic receptor nicotinic beta 4 subunit protein-coding 2.505 2.216
-114327 EFHC1 EF-hand domain containing 1 protein-coding 8.089 1.042
+114049 BUD23 BUD23, rRNA methyltransferase and ribosome maturation factor protein-coding 10.64 0.6069
+114088 TRIM9 tripartite motif containing 9 protein-coding 5.501 2.884
+1141 CHRNB2 cholinergic receptor nicotinic beta 2 subunit protein-coding 3.46 2.599
+114132 SIGLEC11 sialic acid binding Ig like lectin 11 protein-coding 3.162 1.728
+114134 SLC2A13 solute carrier family 2 member 13 protein-coding 7.707 1.391
+114294 LACTB lactamase beta protein-coding 8.381 0.757
+114299 PALM2 paralemmin 2 protein-coding 5.017 1.562
+1143 CHRNB4 cholinergic receptor nicotinic beta 4 subunit protein-coding 2.507 2.218
+114327 EFHC1 EF-hand domain containing 1 protein-coding 8.09 1.042
1145 CHRNE cholinergic receptor nicotinic epsilon subunit protein-coding 4.142 1.315
-114548 NLRP3 NLR family pyrin domain containing 3 protein-coding 5.715 1.454
-114599 SNORD15B small nucleolar RNA, C/D box 15B snoRNA 0.514 0.898
-1146 CHRNG cholinergic receptor nicotinic gamma subunit protein-coding 0.7524 1.234
-114609 TIRAP TIR domain containing adaptor protein protein-coding 7.085 0.7149
-114614 MIR155HG MIR155 host gene ncRNA 4.068 1.633
+114548 NLRP3 NLR family pyrin domain containing 3 protein-coding 5.716 1.455
+114599 SNORD15B small nucleolar RNA, C/D box 15B snoRNA 0.5138 0.8977
+1146 CHRNG cholinergic receptor nicotinic gamma subunit protein-coding 0.7521 1.233
+114609 TIRAP TIR domain containing adaptor protein protein-coding 7.086 0.715
+114614 MIR155HG MIR155 host gene ncRNA 4.069 1.633
114625 ERMAP erythroblast membrane associated protein (Scianna blood group) protein-coding 8.236 0.7375
-114659 LRRC37B leucine rich repeat containing 37B protein-coding 6.948 0.8411
-1147 CHUK conserved helix-loop-helix ubiquitous kinase protein-coding 9.018 0.5323
-114757 CYGB cytoglobin protein-coding 8.25 1.637
-114769 CARD16 caspase recruitment domain family member 16 protein-coding 6.782 1.508
-114770 PGLYRP2 peptidoglycan recognition protein 2 protein-coding 1.629 2.674
-114781 BTBD9 BTB domain containing 9 protein-coding 8.984 0.7763
+114659 LRRC37B leucine rich repeat containing 37B protein-coding 6.949 0.8409
+1147 CHUK conserved helix-loop-helix ubiquitous kinase protein-coding 9.018 0.5321
+114757 CYGB cytoglobin protein-coding 8.251 1.636
+114769 CARD16 caspase recruitment domain family member 16 protein-coding 6.783 1.508
+114770 PGLYRP2 peptidoglycan recognition protein 2 protein-coding 1.629 2.672
+114781 BTBD9 BTB domain containing 9 protein-coding 8.984 0.7762
114783 LMTK3 lemur tyrosine kinase 3 protein-coding 6.929 2.039
-114784 CSMD2 CUB and Sushi multiple domains 2 protein-coding 4.542 2.179
-114785 MBD6 methyl-CpG binding domain protein 6 protein-coding 10.55 0.6489
-114787 GPRIN1 G protein regulated inducer of neurite outgrowth 1 protein-coding 7.413 1.585
-114789 SLC25A25 solute carrier family 25 member 25 protein-coding 9.431 0.9615
-114790 STK11IP serine/threonine kinase 11 interacting protein protein-coding 8.837 0.6174
-114791 TUBGCP5 tubulin gamma complex associated protein 5 protein-coding 8.487 0.6178
-114792 KLHL32 kelch like family member 32 protein-coding 3.785 2.257
+114784 CSMD2 CUB and Sushi multiple domains 2 protein-coding 4.543 2.179
+114785 MBD6 methyl-CpG binding domain protein 6 protein-coding 10.55 0.649
+114787 GPRIN1 G protein regulated inducer of neurite outgrowth 1 protein-coding 7.411 1.586
+114789 SLC25A25 solute carrier family 25 member 25 protein-coding 9.431 0.9611
+114790 STK11IP serine/threonine kinase 11 interacting protein protein-coding 8.838 0.6172
+114791 TUBGCP5 tubulin gamma complex associated protein 5 protein-coding 8.488 0.6176
+114792 KLHL32 kelch like family member 32 protein-coding 3.786 2.256
114793 FMNL2 formin like 2 protein-coding 10 1.326
-114794 ELFN2 extracellular leucine rich repeat and fibronectin type III domain containing 2 protein-coding 5.19 3.145
-114796 PSMG3-AS1 PSMG3 antisense RNA 1 (head to head) ncRNA 6.94 1.343
-114799 ESCO1 establishment of sister chromatid cohesion N-acetyltransferase 1 protein-coding 8.886 0.6046
-114800 CCDC85A coiled-coil domain containing 85A protein-coding 5.044 2.014
-114801 TMEM200A transmembrane protein 200A protein-coding 6.774 2.066
-114803 MYSM1 Myb like, SWIRM and MPN domains 1 protein-coding 6.401 1.217
-114804 RNF157 ring finger protein 157 protein-coding 7.435 2.174
-114814 GNRHR2 gonadotropin releasing hormone receptor 2 (pseudogene) pseudo 8.596 0.8467
-114815 SORCS1 sortilin related VPS10 domain containing receptor 1 protein-coding 3.551 2.965
-114818 KLHL29 kelch like family member 29 protein-coding 7.158 1.525
-114819 CROCCP3 ciliary rootlet coiled-coil, rootletin pseudogene 3 pseudo 5.743 1.049
-114821 ZBED9 zinc finger BED-type containing 9 protein-coding 4.947 2.384
-114822 RHPN1 rhophilin Rho GTPase binding protein 1 protein-coding 8.464 1.676
-114823 LENG8 leukocyte receptor cluster member 8 protein-coding 11.26 0.9293
-114824 PNMA5 PNMA family member 5 protein-coding 1.719 2.191
-114825 PWWP2A PWWP domain containing 2A protein-coding 8.556 0.5802
-114826 SMYD4 SET and MYND domain containing 4 protein-coding 8.123 0.5847
-114827 FHAD1 forkhead associated phosphopeptide binding domain 1 protein-coding 4.439 1.816
-114836 SLAMF6 SLAM family member 6 protein-coding 5.522 2.087
-114876 OSBPL1A oxysterol binding protein like 1A protein-coding 9.448 1.094
+114794 ELFN2 extracellular leucine rich repeat and fibronectin type III domain containing 2 protein-coding 5.19 3.144
+114796 PSMG3-AS1 PSMG3 antisense RNA 1 (head to head) ncRNA 6.941 1.343
+114799 ESCO1 establishment of sister chromatid cohesion N-acetyltransferase 1 protein-coding 8.886 0.6044
+114800 CCDC85A coiled-coil domain containing 85A protein-coding 5.045 2.014
+114801 TMEM200A transmembrane protein 200A protein-coding 6.774 2.065
+114803 MYSM1 Myb like, SWIRM and MPN domains 1 protein-coding 6.402 1.216
+114804 RNF157 ring finger protein 157 protein-coding 7.435 2.173
+114814 GNRHR2 gonadotropin releasing hormone receptor 2 (pseudogene) pseudo 8.596 0.8464
+114815 SORCS1 sortilin related VPS10 domain containing receptor 1 protein-coding 3.554 2.967
+114818 KLHL29 kelch like family member 29 protein-coding 7.159 1.525
+114819 CROCCP3 ciliary rootlet coiled-coil, rootletin pseudogene 3 pseudo 5.744 1.049
+114821 ZBED9 zinc finger BED-type containing 9 protein-coding 4.948 2.384
+114822 RHPN1 rhophilin Rho GTPase binding protein 1 protein-coding 8.463 1.676
+114823 LENG8 leukocyte receptor cluster member 8 protein-coding 11.26 0.9297
+114824 PNMA5 PNMA family member 5 protein-coding 1.72 2.191
+114825 PWWP2A PWWP domain containing 2A protein-coding 8.556 0.58
+114826 SMYD4 SET and MYND domain containing 4 protein-coding 8.123 0.5846
+114827 FHAD1 forkhead associated phosphopeptide binding domain 1 protein-coding 4.439 1.815
+114836 SLAMF6 SLAM family member 6 protein-coding 5.524 2.087
+114876 OSBPL1A oxysterol binding protein like 1A protein-coding 9.448 1.093
114879 OSBPL5 oxysterol binding protein like 5 protein-coding 8.95 1.097
-114880 OSBPL6 oxysterol binding protein like 6 protein-coding 5.716 2.184
-114881 OSBPL7 oxysterol binding protein like 7 protein-coding 8.125 1.19
-114882 OSBPL8 oxysterol binding protein like 8 protein-coding 10.24 0.7931
-114883 OSBPL9 oxysterol binding protein like 9 protein-coding 10.58 0.659
-114884 OSBPL10 oxysterol binding protein like 10 protein-coding 8.505 1.465
+114880 OSBPL6 oxysterol binding protein like 6 protein-coding 5.717 2.183
+114881 OSBPL7 oxysterol binding protein like 7 protein-coding 8.126 1.19
+114882 OSBPL8 oxysterol binding protein like 8 protein-coding 10.24 0.7929
+114883 OSBPL9 oxysterol binding protein like 9 protein-coding 10.58 0.6587
+114884 OSBPL10 oxysterol binding protein like 10 protein-coding 8.504 1.465
114885 OSBPL11 oxysterol binding protein like 11 protein-coding 8.96 0.8504
114897 C1QTNF1 C1q and TNF related 1 protein-coding 9.049 1.486
-114898 C1QTNF2 C1q and TNF related 2 protein-coding 4.41 1.533
-114899 C1QTNF3 C1q and TNF related 3 protein-coding 7.2 1.868
-114900 C1QTNF4 C1q and TNF related 4 protein-coding 2.533 1.922
-114904 C1QTNF6 C1q and TNF related 6 protein-coding 8.693 1.375
-114905 C1QTNF7 C1q and TNF related 7 protein-coding 4.283 1.979
+114898 C1QTNF2 C1q and TNF related 2 protein-coding 4.411 1.533
+114899 C1QTNF3 C1q and TNF related 3 protein-coding 7.2 1.867
+114900 C1QTNF4 C1q and TNF related 4 protein-coding 2.534 1.922
+114904 C1QTNF6 C1q and TNF related 6 protein-coding 8.692 1.375
+114905 C1QTNF7 C1q and TNF related 7 protein-coding 4.286 1.98
114907 FBXO32 F-box protein 32 protein-coding 8.548 1.516
-114908 TMEM123 transmembrane protein 123 protein-coding 12.31 0.9392
+114908 TMEM123 transmembrane protein 123 protein-coding 12.31 0.939
114915 EPB41L4A-AS1 EPB41L4A antisense RNA 1 ncRNA 8.387 1.058
-114926 SMIM19 small integral membrane protein 19 protein-coding 9.078 0.7256
-114928 GPRASP2 G protein-coupled receptor associated sorting protein 2 protein-coding 7.914 1.3
-114932 MRFAP1L1 Morf4 family associated protein 1 like 1 protein-coding 10.41 0.5229
-114971 PTPMT1 protein tyrosine phosphatase, mitochondrial 1 protein-coding 9.664 0.537
-114984 FLYWCH2 FLYWCH family member 2 protein-coding 8.885 0.8062
+114926 SMIM19 small integral membrane protein 19 protein-coding 9.078 0.7254
+114928 GPRASP2 G protein-coupled receptor associated sorting protein 2 protein-coding 7.916 1.3
+114932 MRFAP1L1 Morf4 family associated protein 1 like 1 protein-coding 10.42 0.5228
+114971 PTPMT1 protein tyrosine phosphatase, mitochondrial 1 protein-coding 9.664 0.5369
+114984 FLYWCH2 FLYWCH family member 2 protein-coding 8.885 0.8059
114987 WDR31 WD repeat domain 31 protein-coding 5.1 1.393
-114990 VASN vasorin protein-coding 9.033 1.729
-114991 ZNF618 zinc finger protein 618 protein-coding 8.916 1.128
-115 ADCY9 adenylate cyclase 9 protein-coding 9.329 1.165
-115004 CGAS cyclic GMP-AMP synthase protein-coding 5.952 1.713
-115019 SLC26A9 solute carrier family 26 member 9 protein-coding 4.154 3.005
-115024 NT5C3B 5'-nucleotidase, cytosolic IIIB protein-coding 9.559 0.7964
-115098 CCDC124 coiled-coil domain containing 124 protein-coding 10.23 0.7463
-115106 HAUS1 HAUS augmin like complex subunit 1 protein-coding 8.304 0.7779
-115110 TNFRSF14-AS1 TNFRSF14 antisense RNA 1 ncRNA 6.376 1.698
-115111 SLC26A7 solute carrier family 26 member 7 protein-coding 3.433 2.817
-115123 MARCH3 membrane associated ring-CH-type finger 3 protein-coding 6.503 1.452
-115196 ZNF554 zinc finger protein 554 protein-coding 6.876 0.6949
+114990 VASN vasorin protein-coding 9.034 1.728
+114991 ZNF618 zinc finger protein 618 protein-coding 8.917 1.127
+115 ADCY9 adenylate cyclase 9 protein-coding 9.33 1.165
+115004 CGAS cyclic GMP-AMP synthase protein-coding 5.952 1.712
+115019 SLC26A9 solute carrier family 26 member 9 protein-coding 4.155 3.005
+115024 NT5C3B 5'-nucleotidase, cytosolic IIIB protein-coding 9.559 0.7962
+115098 CCDC124 coiled-coil domain containing 124 protein-coding 10.23 0.7461
+115106 HAUS1 HAUS augmin like complex subunit 1 protein-coding 8.303 0.7777
+115110 TNFRSF14-AS1 TNFRSF14 antisense RNA 1 ncRNA 6.377 1.699
+115111 SLC26A7 solute carrier family 26 member 7 protein-coding 3.434 2.819
+115123 MARCH3 membrane associated ring-CH-type finger 3 protein-coding 6.503 1.451
+115196 ZNF554 zinc finger protein 554 protein-coding 6.876 0.6948
1152 CKB creatine kinase B protein-coding 10.91 2.201
-115201 ATG4A autophagy related 4A cysteine peptidase protein-coding 8.282 0.6477
+115201 ATG4A autophagy related 4A cysteine peptidase protein-coding 8.282 0.6476
115207 KCTD12 potassium channel tetramerization domain containing 12 protein-coding 10.52 1.321
-115209 OMA1 OMA1 zinc metallopeptidase protein-coding 8.264 0.7339
-115265 DDIT4L DNA damage inducible transcript 4 like protein-coding 4.994 2.513
+115209 OMA1 OMA1 zinc metallopeptidase protein-coding 8.264 0.7338
+115265 DDIT4L DNA damage inducible transcript 4 like protein-coding 4.995 2.512
115273 RAB42 RAB42, member RAS oncogene family protein-coding 4.528 1.706
-115286 SLC25A26 solute carrier family 25 member 26 protein-coding 8.516 0.549
-115290 FBXO17 F-box protein 17 protein-coding 7.242 2.148
-115294 PCMTD1 protein-L-isoaspartate (D-aspartate) O-methyltransferase domain containing 1 protein-coding 10.17 0.792
-1153 CIRBP cold inducible RNA binding protein protein-coding 12.23 0.9928
-115330 GPR146 G protein-coupled receptor 146 protein-coding 6.52 1.144
-115350 FCRL1 Fc receptor like 1 protein-coding 1.773 1.918
-115352 FCRL3 Fc receptor like 3 protein-coding 3.025 2.209
-115353 LRRC42 leucine rich repeat containing 42 protein-coding 9.269 0.6746
-115361 GBP4 guanylate binding protein 4 protein-coding 9.226 1.606
+115286 SLC25A26 solute carrier family 25 member 26 protein-coding 8.517 0.5487
+115290 FBXO17 F-box protein 17 protein-coding 7.242 2.147
+115294 PCMTD1 protein-L-isoaspartate (D-aspartate) O-methyltransferase domain containing 1 protein-coding 10.17 0.7919
+1153 CIRBP cold inducible RNA binding protein protein-coding 12.23 0.9929
+115330 GPR146 G protein-coupled receptor 146 protein-coding 6.521 1.144
+115350 FCRL1 Fc receptor like 1 protein-coding 1.775 1.92
+115352 FCRL3 Fc receptor like 3 protein-coding 3.027 2.21
+115353 LRRC42 leucine rich repeat containing 42 protein-coding 9.268 0.6745
+115361 GBP4 guanylate binding protein 4 protein-coding 9.227 1.605
115362 GBP5 guanylate binding protein 5 protein-coding 7.407 2.444
-115399 LRRC56 leucine rich repeat containing 56 protein-coding 6.156 1.447
+115399 LRRC56 leucine rich repeat containing 56 protein-coding 6.156 1.446
1154 CISH cytokine inducible SH2 containing protein protein-coding 8.412 1.663
-115416 MALSU1 mitochondrial assembly of ribosomal large subunit 1 protein-coding 8.77 0.5969
-115426 UHRF2 ubiquitin like with PHD and ring finger domains 2 protein-coding 9.326 0.687
-1155 TBCB tubulin folding cofactor B protein-coding 10.43 0.7119
-115509 ZNF689 zinc finger protein 689 protein-coding 7.056 1.034
-115548 FCHO2 FCH domain only 2 protein-coding 9.394 0.8725
-115557 ARHGEF25 Rho guanine nucleotide exchange factor 25 protein-coding 7.923 1.614
-115560 ZNF501 zinc finger protein 501 protein-coding 5.885 1.236
-115572 FAM46B family with sequence similarity 46 member B protein-coding 6.373 2.365
-115584 SLC5A11 solute carrier family 5 member 11 protein-coding 1.919 2.027
-115650 TNFRSF13C TNF receptor superfamily member 13C protein-coding 2.689 1.626
-115677 NOSTRIN nitric oxide synthase trafficking protein-coding 6.862 1.843
-115701 ALPK2 alpha kinase 2 protein-coding 4.9 2.739
+115416 MALSU1 mitochondrial assembly of ribosomal large subunit 1 protein-coding 8.769 0.597
+115426 UHRF2 ubiquitin like with PHD and ring finger domains 2 protein-coding 9.327 0.687
+1155 TBCB tubulin folding cofactor B protein-coding 10.43 0.712
+115509 ZNF689 zinc finger protein 689 protein-coding 7.057 1.034
+115548 FCHO2 FCH domain only 2 protein-coding 9.395 0.8725
+115557 ARHGEF25 Rho guanine nucleotide exchange factor 25 protein-coding 7.924 1.613
+115560 ZNF501 zinc finger protein 501 protein-coding 5.886 1.235
+115572 FAM46B family with sequence similarity 46 member B protein-coding 6.375 2.366
+115584 SLC5A11 solute carrier family 5 member 11 protein-coding 1.919 2.026
+115650 TNFRSF13C TNF receptor superfamily member 13C protein-coding 2.69 1.627
+115677 NOSTRIN nitric oxide synthase trafficking protein-coding 6.863 1.843
+115701 ALPK2 alpha kinase 2 protein-coding 4.899 2.738
115703 ARHGAP33 Rho GTPase activating protein 33 protein-coding 7.692 1.439
-115704 EVI5L ecotropic viral integration site 5 like protein-coding 8.894 0.9209
-115708 TRMT61A tRNA methyltransferase 61A protein-coding 9.085 0.7271
-115727 RASGRP4 RAS guanyl releasing protein 4 protein-coding 4.657 1.463
-115752 DIS3L DIS3 like exosome 3'-5' exoribonuclease protein-coding 9.235 0.6143
+115704 EVI5L ecotropic viral integration site 5 like protein-coding 8.894 0.9207
+115708 TRMT61A tRNA methyltransferase 61A protein-coding 9.085 0.7268
+115727 RASGRP4 RAS guanyl releasing protein 4 protein-coding 4.657 1.464
+115752 DIS3L DIS3 like exosome 3'-5' exoribonuclease protein-coding 9.235 0.6142
115761 ARL11 ADP ribosylation factor like GTPase 11 protein-coding 5.386 1.474
1158 CKM creatine kinase, M-type protein-coding 2.409 2.337
115811 IQCD IQ motif containing D protein-coding 5.19 1.31
-115817 DHRS1 dehydrogenase/reductase 1 protein-coding 8.924 0.9209
-115825 WDFY2 WD repeat and FYVE domain containing 2 protein-coding 7.747 0.8337
-115827 RAB3C RAB3C, member RAS oncogene family protein-coding 1.858 2.095
-115908 CTHRC1 collagen triple helix repeat containing 1 protein-coding 8.361 2.47
-115939 TSR3 TSR3, acp transferase ribosome maturation factor protein-coding 9.949 0.6604
+115817 DHRS1 dehydrogenase/reductase 1 protein-coding 8.924 0.9206
+115825 WDFY2 WD repeat and FYVE domain containing 2 protein-coding 7.748 0.8334
+115827 RAB3C RAB3C, member RAS oncogene family protein-coding 1.859 2.096
+115908 CTHRC1 collagen triple helix repeat containing 1 protein-coding 8.36 2.47
+115939 TSR3 TSR3, acp transferase ribosome maturation factor protein-coding 9.949 0.6603
115948 CCDC151 coiled-coil domain containing 151 protein-coding 3.981 2.122
-115950 ZNF653 zinc finger protein 653 protein-coding 7.044 0.6726
-115992 RNF166 ring finger protein 166 protein-coding 8.137 0.7167
-116 ADCYAP1 adenylate cyclase activating polypeptide 1 protein-coding 3.166 2.36
-1160 CKMT2 creatine kinase, mitochondrial 2 protein-coding 3.978 2.587
-116028 RMI2 RecQ mediated genome instability 2 protein-coding 7.872 1.487
-116039 OSR2 odd-skipped related transciption factor 2 protein-coding 5.961 2.632
-116064 LRRC58 leucine rich repeat containing 58 protein-coding 10.12 0.7541
-116068 LYSMD3 LysM domain containing 3 protein-coding 8.817 0.7323
+115950 ZNF653 zinc finger protein 653 protein-coding 7.044 0.6724
+115992 RNF166 ring finger protein 166 protein-coding 8.137 0.7168
+116 ADCYAP1 adenylate cyclase activating polypeptide 1 protein-coding 3.168 2.361
+1160 CKMT2 creatine kinase, mitochondrial 2 protein-coding 3.98 2.586
+116028 RMI2 RecQ mediated genome instability 2 protein-coding 7.871 1.488
+116039 OSR2 odd-skipped related transciption factor 2 protein-coding 5.962 2.631
+116064 LRRC58 leucine rich repeat containing 58 protein-coding 10.12 0.7539
+116068 LYSMD3 LysM domain containing 3 protein-coding 8.817 0.7321
116071 BATF2 basic leucine zipper ATF-like transcription factor 2 protein-coding 7.044 1.67
-116092 DNTTIP1 deoxynucleotidyltransferase terminal interacting protein 1 protein-coding 9.406 0.6823
-1161 ERCC8 ERCC excision repair 8, CSA ubiquitin ligase complex subunit protein-coding 7.18 0.5332
-116113 FOXP4 forkhead box P4 protein-coding 10.63 1.057
+116092 DNTTIP1 deoxynucleotidyltransferase terminal interacting protein 1 protein-coding 9.406 0.6821
+1161 ERCC8 ERCC excision repair 8, CSA ubiquitin ligase complex subunit protein-coding 7.18 0.533
+116113 FOXP4 forkhead box P4 protein-coding 10.63 1.056
116115 ZNF526 zinc finger protein 526 protein-coding 8.202 0.5429
-116138 KLHDC3 kelch domain containing 3 protein-coding 11.11 0.6882
-116143 WDR92 WD repeat domain 92 protein-coding 7.763 0.4897
-116150 NUS1 NUS1 dehydrodolichyl diphosphate synthase subunit protein-coding 10.31 0.5668
-116151 FAM210B family with sequence similarity 210 member B protein-coding 10.93 0.887
-116154 PHACTR3 phosphatase and actin regulator 3 protein-coding 3.75 3.007
-116159 CYYR1 cysteine and tyrosine rich 1 protein-coding 7.73 1.346
-116211 TM4SF19 transmembrane 4 L six family member 19 protein-coding 3.601 2.394
-116224 FAM122A family with sequence similarity 122A protein-coding 8.645 0.5582
+116138 KLHDC3 kelch domain containing 3 protein-coding 11.11 0.6879
+116143 WDR92 WD repeat domain 92 protein-coding 7.763 0.4895
+116150 NUS1 NUS1 dehydrodolichyl diphosphate synthase subunit protein-coding 10.31 0.5665
+116151 FAM210B family with sequence similarity 210 member B protein-coding 10.93 0.8869
+116154 PHACTR3 phosphatase and actin regulator 3 protein-coding 3.751 3.006
+116159 CYYR1 cysteine and tyrosine rich 1 protein-coding 7.731 1.346
+116211 TM4SF19 transmembrane 4 L six family member 19 protein-coding 3.601 2.393
+116224 FAM122A family with sequence similarity 122A protein-coding 8.645 0.5583
116225 ZMYND19 zinc finger MYND-type containing 19 protein-coding 8.691 0.7691
-116228 COX20 COX20, cytochrome c oxidase assembly factor protein-coding 9.821 0.7479
-116236 ABHD15 abhydrolase domain containing 15 protein-coding 8.331 0.815
-116238 TLCD1 TLC domain containing 1 protein-coding 7.511 1.295
-116254 GINM1 glycoprotein integral membrane 1 protein-coding 9.115 0.6926
-116285 ACSM1 acyl-CoA synthetase medium chain family member 1 protein-coding 3.48 2.825
-1163 CKS1B CDC28 protein kinase regulatory subunit 1B protein-coding 9.342 1.255
-116349 EXOC3-AS1 EXOC3 antisense RNA 1 ncRNA 6.524 1.004
-116362 RBP7 retinol binding protein 7 protein-coding 6.287 1.897
+116228 COX20 COX20, cytochrome c oxidase assembly factor protein-coding 9.821 0.7478
+116236 ABHD15 abhydrolase domain containing 15 protein-coding 8.331 0.8147
+116238 TLCD1 TLC domain containing 1 protein-coding 7.51 1.295
+116254 GINM1 glycoprotein integral membrane 1 protein-coding 9.116 0.6924
+116285 ACSM1 acyl-CoA synthetase medium chain family member 1 protein-coding 3.482 2.826
+1163 CKS1B CDC28 protein kinase regulatory subunit 1B protein-coding 9.34 1.255
+116349 EXOC3-AS1 EXOC3 antisense RNA 1 ncRNA 6.523 1.003
+116362 RBP7 retinol binding protein 7 protein-coding 6.288 1.896
116369 SLC26A8 solute carrier family 26 member 8 protein-coding 1.653 1.321
-116372 LYPD1 LY6/PLAUR domain containing 1 protein-coding 6.672 2.397
-116379 IL22RA2 interleukin 22 receptor subunit alpha 2 protein-coding 1.814 1.928
-1164 CKS2 CDC28 protein kinase regulatory subunit 2 protein-coding 9.007 1.345
+116372 LYPD1 LY6/PLAUR domain containing 1 protein-coding 6.672 2.396
+116379 IL22RA2 interleukin 22 receptor subunit alpha 2 protein-coding 1.814 1.929
+1164 CKS2 CDC28 protein kinase regulatory subunit 2 protein-coding 9.005 1.346
116412 ZNF837 zinc finger protein 837 protein-coding 5.505 1.089
-116441 TM4SF18 transmembrane 4 L six family member 18 protein-coding 5.905 1.702
-116442 RAB39B RAB39B, member RAS oncogene family protein-coding 5.105 2.246
-116443 GRIN3A glutamate ionotropic receptor NMDA type subunit 3A protein-coding 4.421 1.599
-116444 GRIN3B glutamate ionotropic receptor NMDA type subunit 3B protein-coding 1.816 1.823
+116441 TM4SF18 transmembrane 4 L six family member 18 protein-coding 5.906 1.701
+116442 RAB39B RAB39B, member RAS oncogene family protein-coding 5.106 2.245
+116443 GRIN3A glutamate ionotropic receptor NMDA type subunit 3A protein-coding 4.423 1.599
+116444 GRIN3B glutamate ionotropic receptor NMDA type subunit 3B protein-coding 1.815 1.822
116447 TOP1MT DNA topoisomerase I mitochondrial protein-coding 9.346 1.034
-116448 OLIG1 oligodendrocyte transcription factor 1 protein-coding 2.444 3.619
-116449 CLNK cytokine dependent hematopoietic cell linker protein-coding 0.9672 1.335
-116461 TSEN15 tRNA splicing endonuclease subunit 15 protein-coding 9.257 0.6651
-116496 FAM129A family with sequence similarity 129 member A protein-coding 9.578 1.771
-116535 MRGPRF MAS related GPR family member F protein-coding 6.578 1.965
-116540 MRPL53 mitochondrial ribosomal protein L53 protein-coding 9.345 0.7082
-116541 MRPL54 mitochondrial ribosomal protein L54 protein-coding 9.248 0.8256
-116729 PPP1R27 protein phosphatase 1 regulatory subunit 27 protein-coding 0.9866 1.426
-116828 N4BP2L2-IT2 N4BPL2 intronic transcript 2 ncRNA 4.929 1.056
-116832 RPL39L ribosomal protein L39 like protein-coding 6.864 2.063
-116835 HSPA12B heat shock protein family A (Hsp70) member 12B protein-coding 6.754 1.308
-116840 CNTROB centrobin, centriole duplication and spindle assembly protein protein-coding 9.487 0.583
-116841 SNAP47 synaptosome associated protein 47 protein-coding 9.491 0.4947
-116842 LEAP2 liver enriched antimicrobial peptide 2 protein-coding 3.106 2.072
-116843 SLC18B1 solute carrier family 18 member B1 protein-coding 8.529 1.078
-116844 LRG1 leucine rich alpha-2-glycoprotein 1 protein-coding 7.521 2.984
+116448 OLIG1 oligodendrocyte transcription factor 1 protein-coding 2.443 3.618
+116449 CLNK cytokine dependent hematopoietic cell linker protein-coding 0.9674 1.335
+116461 TSEN15 tRNA splicing endonuclease subunit 15 protein-coding 9.257 0.665
+116496 FAM129A family with sequence similarity 129 member A protein-coding 9.58 1.771
+116535 MRGPRF MAS related GPR family member F protein-coding 6.58 1.965
+116540 MRPL53 mitochondrial ribosomal protein L53 protein-coding 9.345 0.708
+116541 MRPL54 mitochondrial ribosomal protein L54 protein-coding 9.248 0.8253
+116729 PPP1R27 protein phosphatase 1 regulatory subunit 27 protein-coding 0.9861 1.425
+116828 N4BP2L2-IT2 N4BPL2 intronic transcript 2 ncRNA 4.93 1.056
+116832 RPL39L ribosomal protein L39 like protein-coding 6.864 2.062
+116835 HSPA12B heat shock protein family A (Hsp70) member 12B protein-coding 6.755 1.308
+116840 CNTROB centrobin, centriole duplication and spindle assembly protein protein-coding 9.487 0.5828
+116841 SNAP47 synaptosome associated protein 47 protein-coding 9.49 0.4945
+116842 LEAP2 liver enriched antimicrobial peptide 2 protein-coding 3.106 2.071
+116843 SLC18B1 solute carrier family 18 member B1 protein-coding 8.529 1.077
+116844 LRG1 leucine rich alpha-2-glycoprotein 1 protein-coding 7.52 2.983
116931 MED12L mediator complex subunit 12 like protein-coding 3.579 2.105
-116966 WDR17 WD repeat domain 17 protein-coding 4.103 2.635
+116966 WDR17 WD repeat domain 17 protein-coding 4.105 2.635
116983 ACAP3 ArfGAP with coiled-coil, ankyrin repeat and PH domains 3 protein-coding 9.675 1.027
-116984 ARAP2 ArfGAP with RhoGAP domain, ankyrin repeat and PH domain 2 protein-coding 8.613 1.456
-116985 ARAP1 ArfGAP with RhoGAP domain, ankyrin repeat and PH domain 1 protein-coding 11.27 0.6579
+116984 ARAP2 ArfGAP with RhoGAP domain, ankyrin repeat and PH domain 2 protein-coding 8.613 1.457
+116985 ARAP1 ArfGAP with RhoGAP domain, ankyrin repeat and PH domain 1 protein-coding 11.27 0.658
116986 AGAP2 ArfGAP with GTPase domain, ankyrin repeat and PH domain 2 protein-coding 6.913 1.784
-116987 AGAP1 ArfGAP with GTPase domain, ankyrin repeat and PH domain 1 protein-coding 8.543 0.8295
-116988 AGAP3 ArfGAP with GTPase domain, ankyrin repeat and PH domain 3 protein-coding 10.7 0.7398
-117143 TADA1 transcriptional adaptor 1 protein-coding 8.351 0.6357
-117144 CATSPER1 cation channel sperm associated 1 protein-coding 2.369 1.796
-117145 THEM4 thioesterase superfamily member 4 protein-coding 8.288 0.8106
+116987 AGAP1 ArfGAP with GTPase domain, ankyrin repeat and PH domain 1 protein-coding 8.543 0.8296
+116988 AGAP3 ArfGAP with GTPase domain, ankyrin repeat and PH domain 3 protein-coding 10.7 0.7397
+117143 TADA1 transcriptional adaptor 1 protein-coding 8.35 0.6354
+117144 CATSPER1 cation channel sperm associated 1 protein-coding 2.368 1.795
+117145 THEM4 thioesterase superfamily member 4 protein-coding 8.289 0.8104
117155 CATSPER2 cation channel sperm associated 2 protein-coding 4.775 1.069
117157 SH2D1B SH2 domain containing 1B protein-coding 2.656 1.483
117166 WFIKKN1 WAP, follistatin/kazal, immunoglobulin, kunitz and netrin domain containing 1 protein-coding 4.301 1.56
117177 RAB3IP RAB3A interacting protein protein-coding 9.286 1.309
-117178 SSX2IP SSX family member 2 interacting protein protein-coding 8.97 0.8921
-117245 HRASLS5 HRAS like suppressor family member 5 protein-coding 3.697 2.492
-117246 FTSJ3 FtsJ RNA methyltransferase homolog 3 protein-coding 10.36 0.567
+117178 SSX2IP SSX family member 2 interacting protein protein-coding 8.97 0.8919
+117245 HRASLS5 HRAS like suppressor family member 5 protein-coding 3.698 2.492
+117246 FTSJ3 FtsJ RNA methyltransferase homolog 3 protein-coding 10.36 0.5669
117247 SLC16A10 solute carrier family 16 member 10 protein-coding 5.205 1.719
-117248 GALNT15 polypeptide N-acetylgalactosaminyltransferase 15 protein-coding 6.286 2.451
-117289 TAGAP T cell activation RhoGTPase activating protein protein-coding 6.604 1.623
-1173 AP2M1 adaptor related protein complex 2 mu 1 subunit protein-coding 12.92 0.6303
-1174 AP1S1 adaptor related protein complex 1 sigma 1 subunit protein-coding 10.15 0.6822
+117248 GALNT15 polypeptide N-acetylgalactosaminyltransferase 15 protein-coding 6.285 2.451
+117289 TAGAP T cell activation RhoGTPase activating protein protein-coding 6.606 1.624
+1173 AP2M1 adaptor related protein complex 2 mu 1 subunit protein-coding 12.92 0.6301
+1174 AP1S1 adaptor related protein complex 1 sigma 1 subunit protein-coding 10.15 0.6825
1175 AP2S1 adaptor related protein complex 2 sigma 1 subunit protein-coding 10.65 0.761
-117532 TMC2 transmembrane channel like 2 protein-coding 1.195 1.123
-117581 TWIST2 twist family bHLH transcription factor 2 protein-coding 3.602 2.106
-117583 PARD3B par-3 family cell polarity regulator beta protein-coding 5.379 1.81
-117584 RFFL ring finger and FYVE like domain containing E3 ubiquitin protein ligase protein-coding 9.666 0.7855
-1176 AP3S1 adaptor related protein complex 3 sigma 1 subunit protein-coding 9.915 0.6253
-117608 ZNF354B zinc finger protein 354B protein-coding 6.505 0.8124
-117854 TRIM6 tripartite motif containing 6 protein-coding 6.244 1.733
+117532 TMC2 transmembrane channel like 2 protein-coding 1.196 1.125
+117581 TWIST2 twist family bHLH transcription factor 2 protein-coding 3.603 2.106
+117583 PARD3B par-3 family cell polarity regulator beta protein-coding 5.38 1.81
+117584 RFFL ring finger and FYVE like domain containing E3 ubiquitin protein ligase protein-coding 9.667 0.7853
+1176 AP3S1 adaptor related protein complex 3 sigma 1 subunit protein-coding 9.915 0.6252
+117608 ZNF354B zinc finger protein 354B protein-coding 6.506 0.8123
+117854 TRIM6 tripartite motif containing 6 protein-coding 6.245 1.733
118 ADD1 adducin 1 protein-coding 12.23 0.5699
1180 CLCN1 chloride voltage-gated channel 1 protein-coding 1.664 1.587
-1181 CLCN2 chloride voltage-gated channel 2 protein-coding 7.248 1.035
-1182 CLCN3 chloride voltage-gated channel 3 protein-coding 10.1 0.9902
-1183 CLCN4 chloride voltage-gated channel 4 protein-coding 7.357 1.842
+1181 CLCN2 chloride voltage-gated channel 2 protein-coding 7.248 1.036
+1182 CLCN3 chloride voltage-gated channel 3 protein-coding 10.1 0.9899
+1183 CLCN4 chloride voltage-gated channel 4 protein-coding 7.358 1.841
1184 CLCN5 chloride voltage-gated channel 5 protein-coding 8.453 1.26
-118424 UBE2J2 ubiquitin conjugating enzyme E2 J2 protein-coding 9.852 0.5648
-118426 BORCS5 BLOC-1 related complex subunit 5 protein-coding 6.891 0.619
-118429 ANTXR2 anthrax toxin receptor 2 protein-coding 9.374 1.524
-118432 RPL29P2 ribosomal protein L29 pseudogene 2 pseudo 0.3733 0.5525
-118433 RPL23AP7 ribosomal protein L23a pseudogene 7 pseudo 6.453 0.6934
-118442 GPR62 G protein-coupled receptor 62 protein-coding 2.143 1.713
-118460 EXOSC6 exosome component 6 protein-coding 8.221 0.5792
-118471 PRAP1 proline rich acidic protein 1 protein-coding 3.389 3.996
-118472 ZNF511 zinc finger protein 511 protein-coding 8.936 0.7665
-118487 CHCHD1 coiled-coil-helix-coiled-coil-helix domain containing 1 protein-coding 9.357 0.6563
-118490 MSS51 MSS51 mitochondrial translational activator protein-coding 6.834 0.8801
-118491 CFAP70 cilia and flagella associated protein 70 protein-coding 5.569 1.803
-1185 CLCN6 chloride voltage-gated channel 6 protein-coding 8.719 0.8816
-1186 CLCN7 chloride voltage-gated channel 7 protein-coding 11.02 0.7689
-118672 PSTK phosphoseryl-tRNA kinase protein-coding 5.673 0.8148
-1187 CLCNKA chloride voltage-gated channel Ka protein-coding 2.724 2.233
-118738 ZNF488 zinc finger protein 488 protein-coding 4.298 2.783
+118424 UBE2J2 ubiquitin conjugating enzyme E2 J2 protein-coding 9.851 0.5646
+118426 BORCS5 BLOC-1 related complex subunit 5 protein-coding 6.891 0.6188
+118429 ANTXR2 anthrax toxin receptor 2 protein-coding 9.375 1.524
+118432 RPL29P2 ribosomal protein L29 pseudogene 2 pseudo 0.3731 0.5523
+118433 RPL23AP7 ribosomal protein L23a pseudogene 7 pseudo 6.452 0.6932
+118442 GPR62 G protein-coupled receptor 62 protein-coding 2.143 1.712
+118460 EXOSC6 exosome component 6 protein-coding 8.221 0.5793
+118471 PRAP1 proline rich acidic protein 1 protein-coding 3.387 3.995
+118472 ZNF511 zinc finger protein 511 protein-coding 8.936 0.7662
+118487 CHCHD1 coiled-coil-helix-coiled-coil-helix domain containing 1 protein-coding 9.356 0.6562
+118490 MSS51 MSS51 mitochondrial translational activator protein-coding 6.834 0.8799
+118491 CFAP70 cilia and flagella associated protein 70 protein-coding 5.571 1.803
+1185 CLCN6 chloride voltage-gated channel 6 protein-coding 8.719 0.8814
+1186 CLCN7 chloride voltage-gated channel 7 protein-coding 11.02 0.7687
+118672 PSTK phosphoseryl-tRNA kinase protein-coding 5.673 0.8146
+1187 CLCNKA chloride voltage-gated channel Ka protein-coding 2.726 2.234
+118738 ZNF488 zinc finger protein 488 protein-coding 4.298 2.782
118788 PIK3AP1 phosphoinositide-3-kinase adaptor protein 1 protein-coding 8.631 1.614
118812 MORN4 MORN repeat containing 4 protein-coding 7.245 1.319
-118813 ZFYVE27 zinc finger FYVE-type containing 27 protein-coding 9.465 0.6303
+118813 ZFYVE27 zinc finger FYVE-type containing 27 protein-coding 9.465 0.6302
118881 COMTD1 catechol-O-methyltransferase domain containing 1 protein-coding 7.673 1.344
-118924 FRA10AC1 FRA10A associated CGG repeat 1 protein-coding 8.391 0.6677
+118924 FRA10AC1 FRA10A associated CGG repeat 1 protein-coding 8.391 0.6674
118932 ANKRD22 ankyrin repeat domain 22 protein-coding 7.111 2.529
118980 SFXN2 sideroflexin 2 protein-coding 7.837 1.172
118987 PDZD8 PDZ domain containing 8 protein-coding 8.779 1.171
-119 ADD2 adducin 2 protein-coding 4.903 2.781
-119016 AGAP4 ArfGAP with GTPase domain, ankyrin repeat and PH domain 4 protein-coding 7.657 0.966
-119032 BORCS7 BLOC-1 related complex subunit 7 protein-coding 9.095 0.9184
-1191 CLU clusterin protein-coding 13.25 2.744
-1192 CLIC1 chloride intracellular channel 1 protein-coding 12.65 1.109
-1193 CLIC2 chloride intracellular channel 2 protein-coding 7.584 1.48
-119369 NUDT9P1 nudix hydrolase 9 pseudogene 1 pseudo 1.923 1.09
-119385 AGAP11 ArfGAP with GTPase domain, ankyrin repeat and PH domain 11 protein-coding 4.449 1.785
-119391 GSTO2 glutathione S-transferase omega 2 protein-coding 7.105 2.034
-119392 SFR1 SWI5 dependent homologous recombination repair protein 1 protein-coding 7.133 0.714
+119 ADD2 adducin 2 protein-coding 4.905 2.78
+119016 AGAP4 ArfGAP with GTPase domain, ankyrin repeat and PH domain 4 protein-coding 7.658 0.9659
+119032 BORCS7 BLOC-1 related complex subunit 7 protein-coding 9.096 0.9184
+1191 CLU clusterin protein-coding 13.26 2.744
+1192 CLIC1 chloride intracellular channel 1 protein-coding 12.65 1.108
+1193 CLIC2 chloride intracellular channel 2 protein-coding 7.585 1.48
+119369 NUDT9P1 nudix hydrolase 9 pseudogene 1 pseudo 1.923 1.089
+119385 AGAP11 ArfGAP with GTPase domain, ankyrin repeat and PH domain 11 protein-coding 4.45 1.785
+119391 GSTO2 glutathione S-transferase omega 2 protein-coding 7.106 2.034
+119392 SFR1 SWI5 dependent homologous recombination repair protein 1 protein-coding 7.133 0.7139
119395 CALHM3 calcium homeostasis modulator 3 protein-coding 1.157 1.601
-1195 CLK1 CDC like kinase 1 protein-coding 10.4 0.8059
-119504 ANAPC16 anaphase promoting complex subunit 16 protein-coding 10.95 0.577
-119559 SFXN4 sideroflexin 4 protein-coding 8.905 0.7187
-119587 CPXM2 carboxypeptidase X, M14 family member 2 protein-coding 7.639 2.219
-1196 CLK2 CDC like kinase 2 protein-coding 9.557 0.6317
-1197 CLK2P1 CDC like kinase 2, pseudogene 1 pseudo 4.162 0.9477
-119710 C11orf74 chromosome 11 open reading frame 74 protein-coding 7.368 0.8377
-1198 CLK3 CDC like kinase 3 protein-coding 9.764 0.479
-120 ADD3 adducin 3 protein-coding 10.69 1.202
-1200 TPP1 tripeptidyl peptidase 1 protein-coding 12.05 0.8022
-120071 LARGE2 LARGE xylosyl- and glucuronyltransferase 2 protein-coding 7.476 3.102
-1201 CLN3 CLN3, battenin protein-coding 10.13 0.7399
-120103 SLC36A4 solute carrier family 36 member 4 protein-coding 7.164 0.9934
-120114 FAT3 FAT atypical cadherin 3 protein-coding 4.265 2.749
-120224 TMEM45B transmembrane protein 45B protein-coding 7.232 3.135
-120227 CYP2R1 cytochrome P450 family 2 subfamily R member 1 protein-coding 7.585 0.8359
-1203 CLN5 CLN5, intracellular trafficking protein protein-coding 9.4 0.7225
-120376 COLCA2 colorectal cancer associated 2 protein-coding 5.304 2.096
+1195 CLK1 CDC like kinase 1 protein-coding 10.4 0.8061
+119504 ANAPC16 anaphase promoting complex subunit 16 protein-coding 10.95 0.5769
+119559 SFXN4 sideroflexin 4 protein-coding 8.904 0.7185
+119587 CPXM2 carboxypeptidase X, M14 family member 2 protein-coding 7.64 2.219
+1196 CLK2 CDC like kinase 2 protein-coding 9.557 0.6315
+1197 CLK2P1 CDC like kinase 2, pseudogene 1 pseudo 4.162 0.9473
+119710 C11orf74 chromosome 11 open reading frame 74 protein-coding 7.368 0.8376
+1198 CLK3 CDC like kinase 3 protein-coding 9.764 0.4788
+120 ADD3 adducin 3 protein-coding 10.69 1.201
+1200 TPP1 tripeptidyl peptidase 1 protein-coding 12.05 0.802
+120071 LARGE2 LARGE xylosyl- and glucuronyltransferase 2 protein-coding 7.476 3.101
+1201 CLN3 CLN3, battenin protein-coding 10.13 0.7398
+120103 SLC36A4 solute carrier family 36 member 4 protein-coding 7.164 0.993
+120114 FAT3 FAT atypical cadherin 3 protein-coding 4.266 2.75
+120224 TMEM45B transmembrane protein 45B protein-coding 7.233 3.134
+120227 CYP2R1 cytochrome P450 family 2 subfamily R member 1 protein-coding 7.585 0.8356
+1203 CLN5 CLN5, intracellular trafficking protein protein-coding 9.401 0.7226
+120376 COLCA2 colorectal cancer associated 2 protein-coding 5.305 2.096
120379 PIH1D2 PIH1 domain containing 2 protein-coding 4.62 1.209
-120425 JAML junction adhesion molecule like protein-coding 6.926 1.828
-120526 DNAJC24 DnaJ heat shock protein family (Hsp40) member C24 protein-coding 8.059 0.543
-120534 ARL14EP ADP ribosylation factor like GTPase 14 effector protein protein-coding 8.924 0.5626
+120425 JAML junction adhesion molecule like protein-coding 6.928 1.829
+120526 DNAJC24 DnaJ heat shock protein family (Hsp40) member C24 protein-coding 8.059 0.5429
+120534 ARL14EP ADP ribosylation factor like GTPase 14 effector protein protein-coding 8.925 0.5624
1207 CLNS1A chloride nucleotide-sensitive channel 1A protein-coding 10.68 0.5917
-120863 DEPDC4 DEP domain containing 4 protein-coding 3.147 0.904
-120892 LRRK2 leucine rich repeat kinase 2 protein-coding 7.622 2.635
-1209 CLPTM1 CLPTM1, transmembrane protein protein-coding 11.65 0.5319
-120939 TMEM52B transmembrane protein 52B protein-coding 3.604 1.96
+120863 DEPDC4 DEP domain containing 4 protein-coding 3.147 0.9046
+120892 LRRK2 leucine rich repeat kinase 2 protein-coding 7.624 2.635
+1209 CLPTM1 CLPTM1, transmembrane protein protein-coding 11.65 0.5318
+120939 TMEM52B transmembrane protein 52B protein-coding 3.603 1.959
121006 FAM186A family with sequence similarity 186 member A protein-coding 2.563 1.135
-121053 C12orf45 chromosome 12 open reading frame 45 protein-coding 7.556 0.8097
+121053 C12orf45 chromosome 12 open reading frame 45 protein-coding 7.556 0.8095
1211 CLTA clathrin light chain A protein-coding 11.52 0.6109
-1212 CLTB clathrin light chain B protein-coding 10.75 0.9857
-121227 LRIG3 leucine rich repeats and immunoglobulin like domains 3 protein-coding 8.87 1.667
-121260 SLC15A4 solute carrier family 15 member 4 protein-coding 9.2 0.6768
-121268 RHEBL1 RHEB like 1 protein-coding 4.459 1.449
-121274 ZNF641 zinc finger protein 641 protein-coding 6.86 1.042
-1213 CLTC clathrin heavy chain protein-coding 13.25 0.5791
+1212 CLTB clathrin light chain B protein-coding 10.75 0.9852
+121227 LRIG3 leucine rich repeats and immunoglobulin like domains 3 protein-coding 8.87 1.668
+121260 SLC15A4 solute carrier family 15 member 4 protein-coding 9.2 0.6765
+121268 RHEBL1 RHEB like 1 protein-coding 4.458 1.45
+121274 ZNF641 zinc finger protein 641 protein-coding 6.861 1.042
+1213 CLTC clathrin heavy chain protein-coding 13.25 0.5789
121355 GTSF1 gametocyte specific factor 1 protein-coding 2.344 2.59
-121441 NEDD1 neural precursor cell expressed, developmentally down-regulated 1 protein-coding 8.79 0.7573
-121457 IKBIP IKBKB interacting protein protein-coding 8.592 0.9954
-121504 HIST4H4 histone cluster 4 H4 protein-coding 3.757 1.325
-121506 ERP27 endoplasmic reticulum protein 27 protein-coding 5.749 2.525
-121512 FGD4 FYVE, RhoGEF and PH domain containing 4 protein-coding 8.69 1.13
-121536 AEBP2 AE binding protein 2 protein-coding 9.459 0.7174
+121441 NEDD1 neural precursor cell expressed, developmentally down-regulated 1 protein-coding 8.79 0.757
+121457 IKBIP IKBKB interacting protein protein-coding 8.592 0.9951
+121504 HIST4H4 histone cluster 4 H4 protein-coding 3.758 1.325
+121506 ERP27 endoplasmic reticulum protein 27 protein-coding 5.75 2.526
+121512 FGD4 FYVE, RhoGEF and PH domain containing 4 protein-coding 8.691 1.13
+121536 AEBP2 AE binding protein 2 protein-coding 9.459 0.7171
121551 BTBD11 BTB domain containing 11 protein-coding 6.712 2.288
-121642 ALKBH2 alkB homolog 2, alpha-ketoglutarate dependent dioxygenase protein-coding 8.313 0.7737
-121665 SPPL3 signal peptide peptidase like 3 protein-coding 10.49 0.4705
-121793 TEX29 testis expressed 29 protein-coding 1.544 1.256
-121952 METTL21EP methyltransferase like 21E, pseudogene pseudo 1.103 0.9061
-122011 CSNK1A1L casein kinase 1 alpha 1 like protein-coding 1.859 1.172
-122060 SLAIN1 SLAIN motif family member 1 protein-coding 6.656 2.452
-122402 TDRD9 tudor domain containing 9 protein-coding 3.323 2.389
+121642 ALKBH2 alkB homolog 2, alpha-ketoglutarate dependent dioxygenase protein-coding 8.312 0.7738
+121665 SPPL3 signal peptide peptidase like 3 protein-coding 10.49 0.4703
+121793 TEX29 testis expressed 29 protein-coding 1.543 1.256
+121952 METTL21EP methyltransferase like 21E, pseudogene pseudo 1.104 0.9066
+122011 CSNK1A1L casein kinase 1 alpha 1 like protein-coding 1.859 1.171
+122060 SLAIN1 SLAIN motif family member 1 protein-coding 6.657 2.451
+122402 TDRD9 tudor domain containing 9 protein-coding 3.325 2.389
122416 ANKRD9 ankyrin repeat domain 9 protein-coding 6.761 1.26
-122481 AK7 adenylate kinase 7 protein-coding 4.511 1.875
-122509 IFI27L1 interferon alpha inducible protein 27 like 1 protein-coding 6.968 0.9835
-122525 C14orf28 chromosome 14 open reading frame 28 protein-coding 6.364 0.6518
-122553 TRAPPC6B trafficking protein particle complex 6B protein-coding 9.239 0.5288
-122616 CLBA1 clathrin binding box of aftiphilin containing 1 protein-coding 7.891 0.9041
-122618 PLD4 phospholipase D family member 4 protein-coding 5.645 2.179
-122622 ADSSL1 adenylosuccinate synthase like 1 protein-coding 7.069 1.671
-122704 MRPL52 mitochondrial ribosomal protein L52 protein-coding 9.494 0.7645
-122769 LRR1 leucine rich repeat protein 1 protein-coding 7.503 0.9396
-122773 KLHDC1 kelch domain containing 1 protein-coding 5.331 1.342
+122481 AK7 adenylate kinase 7 protein-coding 4.512 1.875
+122509 IFI27L1 interferon alpha inducible protein 27 like 1 protein-coding 6.967 0.9836
+122525 C14orf28 chromosome 14 open reading frame 28 protein-coding 6.365 0.6518
+122553 TRAPPC6B trafficking protein particle complex 6B protein-coding 9.239 0.5286
+122616 CLBA1 clathrin binding box of aftiphilin containing 1 protein-coding 7.891 0.904
+122618 PLD4 phospholipase D family member 4 protein-coding 5.646 2.178
+122622 ADSSL1 adenylosuccinate synthase like 1 protein-coding 7.068 1.67
+122704 MRPL52 mitochondrial ribosomal protein L52 protein-coding 9.493 0.7646
+122769 LRR1 leucine rich repeat protein 1 protein-coding 7.502 0.9395
+122773 KLHDC1 kelch domain containing 1 protein-coding 5.332 1.342
122786 FRMD6 FERM domain containing 6 protein-coding 9.177 1.714
122809 SOCS4 suppressor of cytokine signaling 4 protein-coding 9.065 0.6714
-122830 NAA30 N(alpha)-acetyltransferase 30, NatC catalytic subunit protein-coding 9.028 0.5481
-122945 NOXRED1 NADP dependent oxidoreductase domain containing 1 protein-coding 2.712 0.9987
-122953 JDP2 Jun dimerization protein 2 protein-coding 8.542 0.9598
-122961 ISCA2 iron-sulfur cluster assembly 2 protein-coding 8.515 0.6556
+122830 NAA30 N(alpha)-acetyltransferase 30, NatC catalytic subunit protein-coding 9.028 0.5478
+122945 NOXRED1 NADP dependent oxidoreductase domain containing 1 protein-coding 2.712 0.9984
+122953 JDP2 Jun dimerization protein 2 protein-coding 8.543 0.9597
+122961 ISCA2 iron-sulfur cluster assembly 2 protein-coding 8.514 0.6556
122970 ACOT4 acyl-CoA thioesterase 4 protein-coding 6.123 1.539
-123 PLIN2 perilipin 2 protein-coding 9.88 1.765
-1230 CCR1 C-C motif chemokine receptor 1 protein-coding 7.111 1.53
-123016 TTC8 tetratricopeptide repeat domain 8 protein-coding 8.557 0.8791
+123 PLIN2 perilipin 2 protein-coding 9.88 1.764
+1230 CCR1 C-C motif chemokine receptor 1 protein-coding 7.112 1.531
+123016 TTC8 tetratricopeptide repeat domain 8 protein-coding 8.558 0.8793
123036 TC2N tandem C2 domains, nuclear protein-coding 9.09 2.322
123041 SLC24A4 solute carrier family 24 member 4 protein-coding 2.764 1.864
123096 SLC25A29 solute carrier family 25 member 29 protein-coding 9.598 1.285
-123099 DEGS2 delta 4-desaturase, sphingolipid 2 protein-coding 6.454 2.574
-123169 LEO1 LEO1 homolog, Paf1/RNA polymerase II complex component protein-coding 9.122 0.5911
-1232 CCR3 C-C motif chemokine receptor 3 protein-coding 1.638 1.355
-123207 C15orf40 chromosome 15 open reading frame 40 protein-coding 7.872 0.5214
-123228 SENP8 SUMO peptidase family member, NEDD8 specific protein-coding 5.658 0.7507
-123263 MTFMT mitochondrial methionyl-tRNA formyltransferase protein-coding 7.828 0.474
-123283 TARSL2 threonyl-tRNA synthetase like 2 protein-coding 7.988 0.832
-1233 CCR4 C-C motif chemokine receptor 4 protein-coding 3.316 2.047
-123355 LRRC28 leucine rich repeat containing 28 protein-coding 7.733 0.6846
-1234 CCR5 C-C motif chemokine receptor 5 (gene/pseudogene) protein-coding 6.608 1.787
-1235 CCR6 C-C motif chemokine receptor 6 protein-coding 5.375 1.565
-123591 TMEM266 transmembrane protein 266 protein-coding 4.145 1.454
-1236 CCR7 C-C motif chemokine receptor 7 protein-coding 5.52 2.143
-123606 NIPA1 NIPA magnesium transporter 1 protein-coding 9.135 0.9575
-123688 HYKK hydroxylysine kinase protein-coding 5.139 0.9812
-1237 CCR8 C-C motif chemokine receptor 8 protein-coding 2.309 1.75
+123099 DEGS2 delta 4-desaturase, sphingolipid 2 protein-coding 6.454 2.573
+123169 LEO1 LEO1 homolog, Paf1/RNA polymerase II complex component protein-coding 9.121 0.5911
+1232 CCR3 C-C motif chemokine receptor 3 protein-coding 1.638 1.354
+123207 C15orf40 chromosome 15 open reading frame 40 protein-coding 7.873 0.5213
+123228 SENP8 SUMO peptidase family member, NEDD8 specific protein-coding 5.658 0.7508
+123263 MTFMT mitochondrial methionyl-tRNA formyltransferase protein-coding 7.828 0.4738
+123283 TARSL2 threonyl-tRNA synthetase like 2 protein-coding 7.989 0.8318
+1233 CCR4 C-C motif chemokine receptor 4 protein-coding 3.318 2.048
+123355 LRRC28 leucine rich repeat containing 28 protein-coding 7.733 0.6843
+1234 CCR5 C-C motif chemokine receptor 5 (gene/pseudogene) protein-coding 6.609 1.788
+1235 CCR6 C-C motif chemokine receptor 6 protein-coding 5.376 1.566
+123591 TMEM266 transmembrane protein 266 protein-coding 4.146 1.454
+1236 CCR7 C-C motif chemokine receptor 7 protein-coding 5.521 2.144
+123606 NIPA1 NIPA magnesium transporter 1 protein-coding 9.135 0.9576
+123688 HYKK hydroxylysine kinase protein-coding 5.139 0.9807
+1237 CCR8 C-C motif chemokine receptor 8 protein-coding 2.31 1.75
123720 WHAMM WAS protein homolog associated with actin, golgi membranes and microtubules protein-coding 8.386 0.5139
-123775 C16orf46 chromosome 16 open reading frame 46 protein-coding 5.497 0.9209
+123775 C16orf46 chromosome 16 open reading frame 46 protein-coding 5.498 0.9212
1238 ACKR2 atypical chemokine receptor 2 protein-coding 5.068 1.819
-123803 NTAN1 N-terminal asparagine amidase protein-coding 8.841 0.8093
-123811 FOPNL FGFR1OP N-terminal like protein-coding 9.555 0.556
-123872 DNAAF1 dynein axonemal assembly factor 1 protein-coding 3.127 2.157
-123879 DCUN1D3 defective in cullin neddylation 1 domain containing 3 protein-coding 7.483 0.7125
-123904 NRN1L neuritin 1 like protein-coding 2.236 1.5
+123803 NTAN1 N-terminal asparagine amidase protein-coding 8.841 0.8092
+123811 FOPNL FGFR1OP N-terminal like protein-coding 9.555 0.5559
+123872 DNAAF1 dynein axonemal assembly factor 1 protein-coding 3.128 2.157
+123879 DCUN1D3 defective in cullin neddylation 1 domain containing 3 protein-coding 7.483 0.7122
+123904 NRN1L neuritin 1 like protein-coding 2.237 1.5
123920 CMTM3 CKLF like MARVEL transmembrane domain containing 3 protein-coding 9.566 1.178
-124 ADH1A alcohol dehydrogenase 1A (class I), alpha polypeptide protein-coding 1.685 2.884
-1240 CMKLR1 chemerin chemokine-like receptor 1 protein-coding 7.705 1.488
-124044 SPATA2L spermatogenesis associated 2 like protein-coding 8.049 0.8296
-124045 SPATA33 spermatogenesis associated 33 protein-coding 7.213 0.7698
+124 ADH1A alcohol dehydrogenase 1A (class I), alpha polypeptide protein-coding 1.686 2.884
+1240 CMKLR1 chemerin chemokine-like receptor 1 protein-coding 7.706 1.488
+124044 SPATA2L spermatogenesis associated 2 like protein-coding 8.049 0.8294
+124045 SPATA33 spermatogenesis associated 33 protein-coding 7.212 0.7698
124056 NOXO1 NADPH oxidase organizer 1 protein-coding 3.686 2.006
-124093 CCDC78 coiled-coil domain containing 78 protein-coding 5.267 1.988
-1241 LTB4R leukotriene B4 receptor protein-coding 7.626 1.56
+124093 CCDC78 coiled-coil domain containing 78 protein-coding 5.266 1.988
+1241 LTB4R leukotriene B4 receptor protein-coding 7.626 1.559
124152 IQCK IQ motif containing K protein-coding 8.223 1.2
-124220 ZG16B zymogen granule protein 16B protein-coding 5.147 3.632
-124221 PRSS30P serine protease 30, pseudogene pseudo 1.65 1.314
-124222 PAQR4 progestin and adipoQ receptor family member 4 protein-coding 9.457 1.179
-124245 ZC3H18 zinc finger CCCH-type containing 18 protein-coding 9.923 0.5118
+124220 ZG16B zymogen granule protein 16B protein-coding 5.149 3.632
+124221 PRSS30P serine protease 30, pseudogene pseudo 1.651 1.314
+124222 PAQR4 progestin and adipoQ receptor family member 4 protein-coding 9.456 1.18
+124245 ZC3H18 zinc finger CCCH-type containing 18 protein-coding 9.923 0.5116
124359 CDYL2 chromodomain Y like 2 protein-coding 5.164 1.628
-1244 ABCC2 ATP binding cassette subfamily C member 2 protein-coding 4.272 2.834
-124401 ANKS3 ankyrin repeat and sterile alpha motif domain containing 3 protein-coding 8.366 0.8915
-124402 UBALD1 UBA like domain containing 1 protein-coding 8.931 0.6698
-124411 ZNF720 zinc finger protein 720 protein-coding 8.081 0.6323
-124446 TMEM219 transmembrane protein 219 protein-coding 11 0.7048
+1244 ABCC2 ATP binding cassette subfamily C member 2 protein-coding 4.271 2.833
+124401 ANKS3 ankyrin repeat and sterile alpha motif domain containing 3 protein-coding 8.367 0.8911
+124402 UBALD1 UBA like domain containing 1 protein-coding 8.931 0.6696
+124411 ZNF720 zinc finger protein 720 protein-coding 8.081 0.6321
+124446 TMEM219 transmembrane protein 219 protein-coding 11 0.7046
124454 EARS2 glutamyl-tRNA synthetase 2, mitochondrial protein-coding 9.362 0.5811
-124460 SNX20 sorting nexin 20 protein-coding 5.07 1.639
+124460 SNX20 sorting nexin 20 protein-coding 5.071 1.639
124491 TMEM170A transmembrane protein 170A protein-coding 8.992 0.7083
-124512 METTL23 methyltransferase like 23 protein-coding 8.716 0.5265
-124540 MSI2 musashi RNA binding protein 2 protein-coding 8.186 1.072
-124565 SLC38A10 solute carrier family 38 member 10 protein-coding 11.59 0.7231
-124583 CANT1 calcium activated nucleotidase 1 protein-coding 10.87 0.976
-124599 CD300LB CD300 molecule like family member b protein-coding 3.533 1.456
-124602 KIF19 kinesin family member 19 protein-coding 3.469 2.05
-124637 CYB5D1 cytochrome b5 domain containing 1 protein-coding 8.738 0.7862
-124641 OVCA2 OVCA2, serine hydrolase domain containing protein-coding 9.158 0.6258
-124739 USP43 ubiquitin specific peptidase 43 protein-coding 6.936 1.989
-124751 KRBA2 KRAB-A domain containing 2 protein-coding 5.542 1.129
-124783 SPATA32 spermatogenesis associated 32 protein-coding 1.567 0.9868
-124790 HEXIM2 hexamethylene bisacetamide inducible 2 protein-coding 7.171 0.9673
-124801 LSM12 LSM12 homolog protein-coding 9.974 0.517
-124808 CCDC43 coiled-coil domain containing 43 protein-coding 8.978 0.4984
-124817 CNTD1 cyclin N-terminal domain containing 1 protein-coding 5.107 1.066
-124842 TMEM132E transmembrane protein 132E protein-coding 3.695 2.461
-124857 WFIKKN2 WAP, follistatin/kazal, immunoglobulin, kunitz and netrin domain containing 2 protein-coding 1.903 1.773
-124923 SGK494 uncharacterized serine/threonine-protein kinase SgK494 protein-coding 5.675 1.134
-124925 SEZ6 seizure related 6 homolog protein-coding 2.09 3.159
-124930 ANKRD13B ankyrin repeat domain 13B protein-coding 7.437 1.451
-124935 SLC43A2 solute carrier family 43 member 2 protein-coding 9.426 0.994
-124936 CYB5D2 cytochrome b5 domain containing 2 protein-coding 8.683 0.9523
-124944 C17orf49 chromosome 17 open reading frame 49 protein-coding 10.1 0.6899
-124961 ZFP3 ZFP3 zinc finger protein protein-coding 7.32 1.396
+124512 METTL23 methyltransferase like 23 protein-coding 8.715 0.5265
+124540 MSI2 musashi RNA binding protein 2 protein-coding 8.185 1.072
+124565 SLC38A10 solute carrier family 38 member 10 protein-coding 11.59 0.7229
+124583 CANT1 calcium activated nucleotidase 1 protein-coding 10.87 0.9759
+124599 CD300LB CD300 molecule like family member b protein-coding 3.534 1.456
+124602 KIF19 kinesin family member 19 protein-coding 3.47 2.051
+124637 CYB5D1 cytochrome b5 domain containing 1 protein-coding 8.738 0.7861
+124641 OVCA2 OVCA2, serine hydrolase domain containing protein-coding 9.157 0.6257
+124739 USP43 ubiquitin specific peptidase 43 protein-coding 6.936 1.99
+124751 KRBA2 KRAB-A domain containing 2 protein-coding 5.543 1.129
+124783 SPATA32 spermatogenesis associated 32 protein-coding 1.567 0.9866
+124790 HEXIM2 hexamethylene bisacetamide inducible 2 protein-coding 7.171 0.967
+124801 LSM12 LSM12 homolog protein-coding 9.974 0.5172
+124808 CCDC43 coiled-coil domain containing 43 protein-coding 8.977 0.4985
+124817 CNTD1 cyclin N-terminal domain containing 1 protein-coding 5.107 1.065
+124842 TMEM132E transmembrane protein 132E protein-coding 3.695 2.46
+124857 WFIKKN2 WAP, follistatin/kazal, immunoglobulin, kunitz and netrin domain containing 2 protein-coding 1.904 1.773
+124923 SGK494 uncharacterized serine/threonine-protein kinase SgK494 protein-coding 5.676 1.134
+124925 SEZ6 seizure related 6 homolog protein-coding 2.091 3.158
+124930 ANKRD13B ankyrin repeat domain 13B protein-coding 7.436 1.451
+124935 SLC43A2 solute carrier family 43 member 2 protein-coding 9.426 0.9938
+124936 CYB5D2 cytochrome b5 domain containing 2 protein-coding 8.683 0.9522
+124944 C17orf49 chromosome 17 open reading frame 49 protein-coding 10.1 0.6898
+124961 ZFP3 ZFP3 zinc finger protein protein-coding 7.321 1.396
124975 GGT6 gamma-glutamyltransferase 6 protein-coding 5.799 3.755
-124976 SPNS2 sphingolipid transporter 2 protein-coding 8.653 1.624
-124989 EFCAB13 EF-hand calcium binding domain 13 protein-coding 4.736 1.494
-124995 MRPL10 mitochondrial ribosomal protein L10 protein-coding 9.941 0.4874
-124997 WDR81 WD repeat domain 81 protein-coding 9.815 0.7442
-125 ADH1B alcohol dehydrogenase 1B (class I), beta polypeptide protein-coding 5.551 3.846
-125058 TBC1D16 TBC1 domain family member 16 protein-coding 8.543 1.208
+124976 SPNS2 sphingolipid transporter 2 protein-coding 8.653 1.625
+124989 EFCAB13 EF-hand calcium binding domain 13 protein-coding 4.737 1.494
+124995 MRPL10 mitochondrial ribosomal protein L10 protein-coding 9.94 0.4874
+124997 WDR81 WD repeat domain 81 protein-coding 9.815 0.7443
+125 ADH1B alcohol dehydrogenase 1B (class I), beta polypeptide protein-coding 5.555 3.847
+125058 TBC1D16 TBC1 domain family member 16 protein-coding 8.543 1.207
125061 AFMID arylformamidase protein-coding 8.897 1.01
-125111 GJD3 gap junction protein delta 3 protein-coding 5.889 1.478
-125113 KRT222 keratin 222 protein-coding 5.531 1.163
-125144 LRRC75A-AS1 LRRC75A antisense RNA 1 ncRNA 12.71 0.9323
-125150 ZSWIM7 zinc finger SWIM-type containing 7 protein-coding 8.099 0.7453
-125170 MIEF2 mitochondrial elongation factor 2 protein-coding 8.277 0.8022
-125206 SLC5A10 solute carrier family 5 member 10 protein-coding 2.615 2.382
-125228 FAM210A family with sequence similarity 210 member A protein-coding 8.485 0.6153
-125336 LOXHD1 lipoxygenase homology domains 1 protein-coding 1.715 1.51
-125476 INO80C INO80 complex subunit C protein-coding 8.163 0.7188
+125111 GJD3 gap junction protein delta 3 protein-coding 5.89 1.478
+125113 KRT222 keratin 222 protein-coding 5.532 1.163
+125144 LRRC75A-AS1 LRRC75A antisense RNA 1 ncRNA 12.71 0.932
+125150 ZSWIM7 zinc finger SWIM-type containing 7 protein-coding 8.099 0.745
+125170 MIEF2 mitochondrial elongation factor 2 protein-coding 8.277 0.8019
+125206 SLC5A10 solute carrier family 5 member 10 protein-coding 2.615 2.381
+125228 FAM210A family with sequence similarity 210 member A protein-coding 8.485 0.6152
+125336 LOXHD1 lipoxygenase homology domains 1 protein-coding 1.716 1.511
+125476 INO80C INO80 complex subunit C protein-coding 8.162 0.7187
125488 TTC39C tetratricopeptide repeat domain 39C protein-coding 8.443 1.324
-125875 CLDND2 claudin domain containing 2 protein-coding 2.013 1.241
+125875 CLDND2 claudin domain containing 2 protein-coding 2.014 1.242
125893 ZNF816 zinc finger protein 816 protein-coding 7.103 1.173
-1259 CNGA1 cyclic nucleotide gated channel alpha 1 protein-coding 4.113 2.158
-125919 ZNF543 zinc finger protein 543 protein-coding 6.729 0.8329
-125950 RAVER1 ribonucleoprotein, PTB binding 1 protein-coding 10.67 0.6643
-125965 COX6B2 cytochrome c oxidase subunit 6B2 protein-coding 3.084 2.37
-125988 C19orf70 chromosome 19 open reading frame 70 protein-coding 9.717 0.7964
-126003 TRAPPC5 trafficking protein particle complex 5 protein-coding 9.265 0.8956
+1259 CNGA1 cyclic nucleotide gated channel alpha 1 protein-coding 4.114 2.158
+125919 ZNF543 zinc finger protein 543 protein-coding 6.73 0.8327
+125950 RAVER1 ribonucleoprotein, PTB binding 1 protein-coding 10.67 0.6641
+125965 COX6B2 cytochrome c oxidase subunit 6B2 protein-coding 3.084 2.369
+125988 C19orf70 chromosome 19 open reading frame 70 protein-coding 9.717 0.7962
+126003 TRAPPC5 trafficking protein particle complex 5 protein-coding 9.264 0.8953
126006 PCP2 Purkinje cell protein 2 protein-coding 2.682 1.876
-126014 OSCAR osteoclast associated, immunoglobulin-like receptor protein-coding 6 1.473
-126017 ZNF813 zinc finger protein 813 protein-coding 5.694 1.595
-126068 ZNF441 zinc finger protein 441 protein-coding 7.057 1.075
-126069 ZNF491 zinc finger protein 491 protein-coding 4.715 1.321
-126070 ZNF440 zinc finger protein 440 protein-coding 7.972 1.08
-126074 SWSAP1 SWIM-type zinc finger 7 associated protein 1 protein-coding 6.304 0.7911
-126075 CCDC159 coiled-coil domain containing 159 protein-coding 7.587 1.015
-126119 JOSD2 Josephin domain containing 2 protein-coding 8.442 0.9235
-126129 CPT1C carnitine palmitoyltransferase 1C protein-coding 6.152 2.057
-126133 ALDH16A1 aldehyde dehydrogenase 16 family member A1 protein-coding 9.557 0.8781
-126147 NTN5 netrin 5 protein-coding 2.851 1.461
-1262 CNGA4 cyclic nucleotide gated channel alpha 4 protein-coding 2.078 1.409
-126208 ZNF787 zinc finger protein 787 protein-coding 9.3 0.7887
-126231 ZNF573 zinc finger protein 573 protein-coding 4.093 1.072
-126248 WDR88 WD repeat domain 88 protein-coding 2.147 0.8963
-126259 TMIGD2 transmembrane and immunoglobulin domain containing 2 protein-coding 2.776 1.752
+126014 OSCAR osteoclast associated, immunoglobulin-like receptor protein-coding 6 1.474
+126017 ZNF813 zinc finger protein 813 protein-coding 5.695 1.595
+126068 ZNF441 zinc finger protein 441 protein-coding 7.058 1.075
+126069 ZNF491 zinc finger protein 491 protein-coding 4.716 1.321
+126070 ZNF440 zinc finger protein 440 protein-coding 7.972 1.079
+126074 SWSAP1 SWIM-type zinc finger 7 associated protein 1 protein-coding 6.304 0.7909
+126075 CCDC159 coiled-coil domain containing 159 protein-coding 7.588 1.015
+126119 JOSD2 Josephin domain containing 2 protein-coding 8.442 0.9233
+126129 CPT1C carnitine palmitoyltransferase 1C protein-coding 6.153 2.057
+126133 ALDH16A1 aldehyde dehydrogenase 16 family member A1 protein-coding 9.557 0.8779
+126147 NTN5 netrin 5 protein-coding 2.852 1.461
+1262 CNGA4 cyclic nucleotide gated channel alpha 4 protein-coding 2.079 1.409
+126208 ZNF787 zinc finger protein 787 protein-coding 9.3 0.7883
+126231 ZNF573 zinc finger protein 573 protein-coding 4.094 1.072
+126248 WDR88 WD repeat domain 88 protein-coding 2.147 0.8962
+126259 TMIGD2 transmembrane and immunoglobulin domain containing 2 protein-coding 2.777 1.752
126272 EID2B EP300 interacting inhibitor of differentiation 2B protein-coding 5.541 1.233
126282 TNFAIP8L1 TNF alpha induced protein 8 like 1 protein-coding 7.272 1.142
-126295 ZNF57 zinc finger protein 57 protein-coding 6.696 0.7718
-126298 IRGQ immunity related GTPase Q protein-coding 9.577 0.5744
-126299 ZNF428 zinc finger protein 428 protein-coding 9.401 0.9825
+126295 ZNF57 zinc finger protein 57 protein-coding 6.696 0.7715
+126298 IRGQ immunity related GTPase Q protein-coding 9.577 0.5746
+126299 ZNF428 zinc finger protein 428 protein-coding 9.401 0.9823
1263 PLK3 polo like kinase 3 protein-coding 8.252 1.054
-126306 JSRP1 junctional sarcoplasmic reticulum protein 1 protein-coding 3.503 2.546
+126306 JSRP1 junctional sarcoplasmic reticulum protein 1 protein-coding 3.502 2.545
126308 MOB3A MOB kinase activator 3A protein-coding 10.12 0.6618
126321 MFSD12 major facilitator superfamily domain containing 12 protein-coding 10.27 0.9047
-126326 GIPC3 GIPC PDZ domain containing family member 3 protein-coding 6.467 1.345
-126328 NDUFA11 NADH:ubiquinone oxidoreductase subunit A11 protein-coding 10.92 0.8026
+126326 GIPC3 GIPC PDZ domain containing family member 3 protein-coding 6.467 1.344
+126328 NDUFA11 NADH:ubiquinone oxidoreductase subunit A11 protein-coding 10.92 0.8024
126353 MISP mitotic spindle positioning protein-coding 7.453 3.783
-126364 LRRC25 leucine rich repeat containing 25 protein-coding 6.71 1.395
+126364 LRRC25 leucine rich repeat containing 25 protein-coding 6.711 1.395
126374 WTIP WT1 interacting protein protein-coding 7.26 1.439
-126375 ZNF792 zinc finger protein 792 protein-coding 6.667 0.9056
-126382 NR2C2AP nuclear receptor 2C2 associated protein protein-coding 8.81 0.7232
-126393 HSPB6 heat shock protein family B (small) member 6 protein-coding 7.839 2.44
-126410 CYP4F22 cytochrome P450 family 4 subfamily F member 22 protein-coding 3.039 2.897
-126432 RINL Ras and Rab interactor like protein-coding 7.443 1.214
-126433 FBXO27 F-box protein 27 protein-coding 6.741 2.038
+126375 ZNF792 zinc finger protein 792 protein-coding 6.668 0.9053
+126382 NR2C2AP nuclear receptor 2C2 associated protein protein-coding 8.809 0.7233
+126393 HSPB6 heat shock protein family B (small) member 6 protein-coding 7.842 2.442
+126410 CYP4F22 cytochrome P450 family 4 subfamily F member 22 protein-coding 3.04 2.896
+126432 RINL Ras and Rab interactor like protein-coding 7.444 1.214
+126433 FBXO27 F-box protein 27 protein-coding 6.741 2.037
1265 CNN2 calponin 2 protein-coding 11.31 1.49
-126526 C19orf47 chromosome 19 open reading frame 47 protein-coding 8.355 0.659
-126549 ANKLE1 ankyrin repeat and LEM domain containing 1 protein-coding 3.89 1.579
+126526 C19orf47 chromosome 19 open reading frame 47 protein-coding 8.355 0.6587
+126549 ANKLE1 ankyrin repeat and LEM domain containing 1 protein-coding 3.889 1.578
1266 CNN3 calponin 3 protein-coding 11.63 1.056
-126626 GABPB2 GA binding protein transcription factor beta subunit 2 protein-coding 6.542 0.7986
+126626 GABPB2 GA binding protein transcription factor beta subunit 2 protein-coding 6.543 0.7984
126661 CCDC163 coiled-coil domain containing 163 protein-coding 4.036 1.327
-126668 TDRD10 tudor domain containing 10 protein-coding 3.637 1.966
-126669 SHE Src homology 2 domain containing E protein-coding 7.064 1.756
-126695 KDF1 keratinocyte differentiation factor 1 protein-coding 7.221 3.002
-1267 CNP 2',3'-cyclic nucleotide 3' phosphodiesterase protein-coding 11.44 0.8599
-126731 CCSAP centriole, cilia and spindle associated protein protein-coding 8.314 1.016
-126789 PUSL1 pseudouridylate synthase-like 1 protein-coding 7.897 0.8924
-126792 B3GALT6 beta-1,3-galactosyltransferase 6 protein-coding 9.206 0.6904
-1268 CNR1 cannabinoid receptor 1 protein-coding 4.662 2.652
-126820 WDR63 WD repeat domain 63 protein-coding 2.754 1.929
-126823 KLHDC9 kelch domain containing 9 protein-coding 6.352 1.842
-126859 AXDND1 axonemal dynein light chain domain containing 1 protein-coding 1.678 1.671
-126868 MAB21L3 mab-21 like 3 protein-coding 2.777 2.282
-1269 CNR2 cannabinoid receptor 2 protein-coding 1.524 1.689
-126917 IFFO2 intermediate filament family orphan 2 protein-coding 9.33 1.259
-126961 HIST2H3C histone cluster 2 H3 family member c protein-coding 2.208 1.386
-126969 SLC44A3 solute carrier family 44 member 3 protein-coding 8.074 1.701
-127 ADH4 alcohol dehydrogenase 4 (class II), pi polypeptide protein-coding 1.525 2.9
+126668 TDRD10 tudor domain containing 10 protein-coding 3.638 1.966
+126669 SHE Src homology 2 domain containing E protein-coding 7.065 1.756
+126695 KDF1 keratinocyte differentiation factor 1 protein-coding 7.222 3.001
+1267 CNP 2',3'-cyclic nucleotide 3' phosphodiesterase protein-coding 11.44 0.8597
+126731 CCSAP centriole, cilia and spindle associated protein protein-coding 8.314 1.015
+126789 PUSL1 pseudouridylate synthase-like 1 protein-coding 7.896 0.8922
+126792 B3GALT6 beta-1,3-galactosyltransferase 6 protein-coding 9.206 0.6901
+1268 CNR1 cannabinoid receptor 1 protein-coding 4.664 2.652
+126820 WDR63 WD repeat domain 63 protein-coding 2.754 1.928
+126823 KLHDC9 kelch domain containing 9 protein-coding 6.352 1.841
+126859 AXDND1 axonemal dynein light chain domain containing 1 protein-coding 1.677 1.67
+126868 MAB21L3 mab-21 like 3 protein-coding 2.776 2.282
+1269 CNR2 cannabinoid receptor 2 protein-coding 1.526 1.691
+126917 IFFO2 intermediate filament family orphan 2 protein-coding 9.33 1.258
+126961 HIST2H3C histone cluster 2 H3 family member c protein-coding 2.207 1.385
+126969 SLC44A3 solute carrier family 44 member 3 protein-coding 8.075 1.701
+127 ADH4 alcohol dehydrogenase 4 (class II), pi polypeptide protein-coding 1.525 2.899
1270 CNTF ciliary neurotrophic factor protein-coding 3.242 1.209
-127002 ATXN7L2 ataxin 7 like 2 protein-coding 6.849 0.955
-127018 LYPLAL1 lysophospholipase like 1 protein-coding 8.54 1.131
-1272 CNTN1 contactin 1 protein-coding 5.246 3.623
-127253 TYW3 tRNA-yW synthesizing protein 3 homolog protein-coding 8.775 0.5942
-127254 ERICH3 glutamate rich 3 protein-coding 2.931 2.72
-127255 LRRIQ3 leucine rich repeats and IQ motif containing 3 protein-coding 2.945 1.225
-127262 TPRG1L tumor protein p63 regulated 1 like protein-coding 10.52 0.6547
+127002 ATXN7L2 ataxin 7 like 2 protein-coding 6.849 0.9551
+127018 LYPLAL1 lysophospholipase like 1 protein-coding 8.54 1.13
+1272 CNTN1 contactin 1 protein-coding 5.249 3.622
+127253 TYW3 tRNA-yW synthesizing protein 3 homolog protein-coding 8.776 0.5941
+127254 ERICH3 glutamate rich 3 protein-coding 2.932 2.72
+127255 LRRIQ3 leucine rich repeats and IQ motif containing 3 protein-coding 2.945 1.224
+127262 TPRG1L tumor protein p63 regulated 1 like protein-coding 10.53 0.6545
127281 FAM213B family with sequence similarity 213 member B protein-coding 9.839 0.9199
-127396 ZNF684 zinc finger protein 684 protein-coding 5.832 0.8177
-127428 TCEANC2 transcription elongation factor A N-terminal and central domain containing 2 protein-coding 7.331 0.5883
-127435 PODN podocan protein-coding 8.104 2.158
-127495 LRRC39 leucine rich repeat containing 39 protein-coding 3.198 1.655
-127534 GJB4 gap junction protein beta 4 protein-coding 3.68 3.139
-127544 RNF19B ring finger protein 19B protein-coding 9.527 0.9791
+127396 ZNF684 zinc finger protein 684 protein-coding 5.832 0.8175
+127428 TCEANC2 transcription elongation factor A N-terminal and central domain containing 2 protein-coding 7.331 0.5882
+127435 PODN podocan protein-coding 8.107 2.159
+127495 LRRC39 leucine rich repeat containing 39 protein-coding 3.198 1.654
+127534 GJB4 gap junction protein beta 4 protein-coding 3.679 3.139
+127544 RNF19B ring finger protein 19B protein-coding 9.526 0.979
127579 DCST2 DC-STAMP domain containing 2 protein-coding 3.628 1.581
-127602 DNAH14 dynein axonemal heavy chain 14 protein-coding 5.783 1.877
+127602 DNAH14 dynein axonemal heavy chain 14 protein-coding 5.782 1.876
127665 ZNF648 zinc finger protein 648 protein-coding 1.297 1.583
-127687 C1orf122 chromosome 1 open reading frame 122 protein-coding 9.479 0.8063
-1277 COL1A1 collagen type I alpha 1 chain protein-coding 14.01 2.899
-127700 OSCP1 organic solute carrier partner 1 protein-coding 7.12 1.132
-127703 C1orf216 chromosome 1 open reading frame 216 protein-coding 8.618 0.8431
-127733 UBXN10 UBX domain protein 10 protein-coding 6.358 2.403
-1278 COL1A2 collagen type I alpha 2 chain protein-coding 13.76 2.416
-127829 ARL8A ADP ribosylation factor like GTPase 8A protein-coding 10.32 0.6055
-127833 SYT2 synaptotagmin 2 protein-coding 4.16 2.195
+127687 C1orf122 chromosome 1 open reading frame 122 protein-coding 9.479 0.8061
+1277 COL1A1 collagen type I alpha 1 chain protein-coding 14.01 2.898
+127700 OSCP1 organic solute carrier partner 1 protein-coding 7.121 1.132
+127703 C1orf216 chromosome 1 open reading frame 216 protein-coding 8.617 0.8428
+127733 UBXN10 UBX domain protein 10 protein-coding 6.36 2.402
+1278 COL1A2 collagen type I alpha 2 chain protein-coding 13.76 2.415
+127829 ARL8A ADP ribosylation factor like GTPase 8A protein-coding 10.32 0.6053
+127833 SYT2 synaptotagmin 2 protein-coding 4.162 2.197
127841 LINC00628 long intergenic non-protein coding RNA 628 ncRNA 1.132 1.125
-127845 GOLT1A golgi transport 1A protein-coding 5.684 2.971
+127845 GOLT1A golgi transport 1A protein-coding 5.684 2.97
127933 UHMK1 U2AF homology motif kinase 1 protein-coding 7.884 1.701
-127943 FCRLB Fc receptor like B protein-coding 4.554 1.687
-128 ADH5 alcohol dehydrogenase 5 (class III), chi polypeptide protein-coding 11.36 0.6132
-1280 COL2A1 collagen type II alpha 1 chain protein-coding 3.182 3.342
-128061 C1orf131 chromosome 1 open reading frame 131 protein-coding 8.042 0.7167
-128077 LIX1L limb and CNS expressed 1 like protein-coding 8.987 1.064
-1281 COL3A1 collagen type III alpha 1 chain protein-coding 13.57 2.806
-128153 SPATA17 spermatogenesis associated 17 protein-coding 4.234 1.792
+127943 FCRLB Fc receptor like B protein-coding 4.553 1.686
+128 ADH5 alcohol dehydrogenase 5 (class III), chi polypeptide protein-coding 11.36 0.6131
+1280 COL2A1 collagen type II alpha 1 chain protein-coding 3.181 3.342
+128061 C1orf131 chromosome 1 open reading frame 131 protein-coding 8.042 0.7165
+128077 LIX1L limb and CNS expressed 1 like protein-coding 8.988 1.063
+1281 COL3A1 collagen type III alpha 1 chain protein-coding 13.57 2.805
+128153 SPATA17 spermatogenesis associated 17 protein-coding 4.234 1.791
128178 EDARADD EDAR associated death domain protein-coding 7.003 1.823
1282 COL4A1 collagen type IV alpha 1 chain protein-coding 12.52 1.534
128209 KLF17 Kruppel like factor 17 protein-coding 1.439 1.627
-128218 TMEM125 transmembrane protein 125 protein-coding 7.313 3.035
-128229 TSACC TSSK6 activating cochaperone protein-coding 2.239 1.323
-128239 IQGAP3 IQ motif containing GTPase activating protein 3 protein-coding 8.309 2.079
-128240 NAXE NAD(P)HX epimerase protein-coding 10.95 0.6958
-128272 ARHGEF19 Rho guanine nucleotide exchange factor 19 protein-coding 8.188 1.882
-128308 MRPL55 mitochondrial ribosomal protein L55 protein-coding 9.343 0.7987
+128218 TMEM125 transmembrane protein 125 protein-coding 7.313 3.036
+128229 TSACC TSSK6 activating cochaperone protein-coding 2.238 1.323
+128239 IQGAP3 IQ motif containing GTPase activating protein 3 protein-coding 8.306 2.08
+128240 NAXE NAD(P)HX epimerase protein-coding 10.95 0.6959
+128272 ARHGEF19 Rho guanine nucleotide exchange factor 19 protein-coding 8.188 1.881
+128308 MRPL55 mitochondrial ribosomal protein L55 protein-coding 9.342 0.7985
128312 HIST3H2BB histone cluster 3 H2B family member b protein-coding 1.876 1.353
-128338 DRAM2 DNA damage regulated autophagy modulator 2 protein-coding 9.65 0.5654
-128344 PIFO primary cilia formation protein-coding 6.13 2.629
-128346 C1orf162 chromosome 1 open reading frame 162 protein-coding 7.111 1.456
-128387 TATDN3 TatD DNase domain containing 3 protein-coding 8.128 0.6202
+128338 DRAM2 DNA damage regulated autophagy modulator 2 protein-coding 9.65 0.5653
+128344 PIFO primary cilia formation protein-coding 6.132 2.628
+128346 C1orf162 chromosome 1 open reading frame 162 protein-coding 7.111 1.457
+128387 TATDN3 TatD DNase domain containing 3 protein-coding 8.128 0.6199
1284 COL4A2 collagen type IV alpha 2 chain protein-coding 12.77 1.413
-128434 VSTM2L V-set and transmembrane domain containing 2 like protein-coding 6.147 3.061
-128439 SNHG11 small nucleolar RNA host gene 11 ncRNA 7.657 0.833
-128486 FITM2 fat storage inducing transmembrane protein 2 protein-coding 5.728 0.9961
+128434 VSTM2L V-set and transmembrane domain containing 2 like protein-coding 6.149 3.061
+128439 SNHG11 small nucleolar RNA host gene 11 ncRNA 7.657 0.8328
+128486 FITM2 fat storage inducing transmembrane protein 2 protein-coding 5.728 0.9957
128497 SPATA25 spermatogenesis associated 25 protein-coding 2.892 1.139
-1285 COL4A3 collagen type IV alpha 3 chain protein-coding 4.601 2.901
-128553 TSHZ2 teashirt zinc finger homeobox 2 protein-coding 5.531 1.94
-1286 COL4A4 collagen type IV alpha 4 chain protein-coding 6.184 2.335
-128611 ZNF831 zinc finger protein 831 protein-coding 4.065 1.88
-128637 TBC1D20 TBC1 domain family member 20 protein-coding 10.22 0.4832
-1287 COL4A5 collagen type IV alpha 5 chain protein-coding 8.453 2.359
-128710 SLX4IP SLX4 interacting protein protein-coding 4.104 1.24
-1288 COL4A6 collagen type IV alpha 6 chain protein-coding 5.282 2.986
-128853 DUSP15 dual specificity phosphatase 15 protein-coding 4.508 2.312
-128854 TSPY26P testis specific protein, Y-linked 26, pseudogene pseudo 4.168 1.626
-128866 CHMP4B charged multivesicular body protein 4B protein-coding 11.91 0.5457
-128869 PIGU phosphatidylinositol glycan anchor biosynthesis class U protein-coding 9.467 0.6005
-1289 COL5A1 collagen type V alpha 1 chain protein-coding 11.02 2.472
-128977 C22orf39 chromosome 22 open reading frame 39 protein-coding 8.936 0.6816
-128989 TANGO2 transport and golgi organization 2 homolog protein-coding 8.991 0.7117
-1290 COL5A2 collagen type V alpha 2 chain protein-coding 10.81 2.125
-129049 SGSM1 small G protein signaling modulator 1 protein-coding 5.611 2.299
-129080 EMID1 EMI domain containing 1 protein-coding 7.252 1.969
-1291 COL6A1 collagen type VI alpha 1 chain protein-coding 12.39 1.528
-129138 ANKRD54 ankyrin repeat domain 54 protein-coding 8.886 0.6109
-1292 COL6A2 collagen type VI alpha 2 chain protein-coding 12.48 1.938
+1285 COL4A3 collagen type IV alpha 3 chain protein-coding 4.604 2.902
+128553 TSHZ2 teashirt zinc finger homeobox 2 protein-coding 5.532 1.94
+1286 COL4A4 collagen type IV alpha 4 chain protein-coding 6.186 2.336
+128611 ZNF831 zinc finger protein 831 protein-coding 4.067 1.881
+128637 TBC1D20 TBC1 domain family member 20 protein-coding 10.22 0.4831
+1287 COL4A5 collagen type IV alpha 5 chain protein-coding 8.453 2.358
+128710 SLX4IP SLX4 interacting protein protein-coding 4.104 1.239
+1288 COL4A6 collagen type IV alpha 6 chain protein-coding 5.284 2.986
+128853 DUSP15 dual specificity phosphatase 15 protein-coding 4.509 2.311
+128854 TSPY26P testis specific protein, Y-linked 26, pseudogene pseudo 4.169 1.626
+128866 CHMP4B charged multivesicular body protein 4B protein-coding 11.91 0.5455
+128869 PIGU phosphatidylinositol glycan anchor biosynthesis class U protein-coding 9.466 0.6007
+1289 COL5A1 collagen type V alpha 1 chain protein-coding 11.02 2.471
+128977 C22orf39 chromosome 22 open reading frame 39 protein-coding 8.937 0.6816
+128989 TANGO2 transport and golgi organization 2 homolog protein-coding 8.991 0.7115
+1290 COL5A2 collagen type V alpha 2 chain protein-coding 10.81 2.124
+129049 SGSM1 small G protein signaling modulator 1 protein-coding 5.613 2.299
+129080 EMID1 EMI domain containing 1 protein-coding 7.252 1.968
+1291 COL6A1 collagen type VI alpha 1 chain protein-coding 12.39 1.527
+129138 ANKRD54 ankyrin repeat domain 54 protein-coding 8.886 0.6108
+1292 COL6A2 collagen type VI alpha 2 chain protein-coding 12.48 1.937
129285 PPP1R21 protein phosphatase 1 regulatory subunit 21 protein-coding 9.186 0.5923
129293 TRABD2A TraB domain containing 2A protein-coding 5.226 2.421
-1293 COL6A3 collagen type VI alpha 3 chain protein-coding 11.8 2.732
-129303 TMEM150A transmembrane protein 150A protein-coding 8.543 0.8359
-1294 COL7A1 collagen type VII alpha 1 chain protein-coding 8.378 3.028
-129401 NUP35 nucleoporin 35 protein-coding 8.025 0.5394
-129450 TYW5 tRNA-yW synthesizing protein 5 protein-coding 7.68 0.5091
-1295 COL8A1 collagen type VIII alpha 1 chain protein-coding 7.44 2.632
-129530 LYG1 lysozyme g1 protein-coding 3.732 1.97
-129531 MITD1 microtubule interacting and trafficking domain containing 1 protein-coding 7.862 0.5945
-129563 DIS3L2 DIS3 like 3'-5' exoribonuclease 2 protein-coding 8.871 0.5006
-1296 COL8A2 collagen type VIII alpha 2 chain protein-coding 8.151 2.127
+1293 COL6A3 collagen type VI alpha 3 chain protein-coding 11.8 2.731
+129303 TMEM150A transmembrane protein 150A protein-coding 8.543 0.8355
+1294 COL7A1 collagen type VII alpha 1 chain protein-coding 8.378 3.027
+129401 NUP35 nucleoporin 35 protein-coding 8.024 0.5394
+129450 TYW5 tRNA-yW synthesizing protein 5 protein-coding 7.68 0.5089
+1295 COL8A1 collagen type VIII alpha 1 chain protein-coding 7.441 2.631
+129530 LYG1 lysozyme g1 protein-coding 3.731 1.969
+129531 MITD1 microtubule interacting and trafficking domain containing 1 protein-coding 7.862 0.5944
+129563 DIS3L2 DIS3 like 3'-5' exoribonuclease 2 protein-coding 8.871 0.5004
+1296 COL8A2 collagen type VIII alpha 2 chain protein-coding 8.152 2.126
129607 CMPK2 cytidine/uridine monophosphate kinase 2 protein-coding 7.573 1.402
-129642 MBOAT2 membrane bound O-acyltransferase domain containing 2 protein-coding 8.766 1.777
-129685 TAF8 TATA-box binding protein associated factor 8 protein-coding 8.931 0.5246
-129787 TMEM18 transmembrane protein 18 protein-coding 9.1 0.551
-129790 C7orf13 chromosome 7 open reading frame 13 ncRNA 6.861 1.479
+129642 MBOAT2 membrane bound O-acyltransferase domain containing 2 protein-coding 8.766 1.776
+129685 TAF8 TATA-box binding protein associated factor 8 protein-coding 8.932 0.5246
+129787 TMEM18 transmembrane protein 18 protein-coding 9.1 0.5509
+129790 C7orf13 chromosome 7 open reading frame 13 ncRNA 6.861 1.478
1298 COL9A2 collagen type IX alpha 2 chain protein-coding 7.872 2.3
-129804 FBLN7 fibulin 7 protein-coding 6.461 1.782
-129807 NEU4 neuraminidase 4 protein-coding 3.255 2.961
-129831 RBM45 RNA binding motif protein 45 protein-coding 7.355 0.3574
-129880 BBS5 Bardet-Biedl syndrome 5 protein-coding 7.411 1.008
-129881 CCDC173 coiled-coil domain containing 173 protein-coding 6.213 1.462
-1299 COL9A3 collagen type IX alpha 3 chain protein-coding 5.711 2.648
-130 ADH6 alcohol dehydrogenase 6 (class V) protein-coding 2.87 3.306
-1300 COL10A1 collagen type X alpha 1 chain protein-coding 6.103 3.614
-130026 ICA1L islet cell autoantigen 1 like protein-coding 6.636 1.566
-130074 FAM168B family with sequence similarity 168 member B protein-coding 11.35 0.6037
-1301 COL11A1 collagen type XI alpha 1 chain protein-coding 6.439 3.89
-130132 RFTN2 raftlin family member 2 protein-coding 5.749 1.907
-130162 CLHC1 clathrin heavy chain linker domain containing 1 protein-coding 6.003 1.195
-1302 COL11A2 collagen type XI alpha 2 chain protein-coding 4.616 2.302
-130271 PLEKHH2 pleckstrin homology, MyTH4 and FERM domain containing H2 protein-coding 6.887 1.92
-1303 COL12A1 collagen type XII alpha 1 chain protein-coding 10.53 2.493
-130340 AP1S3 adaptor related protein complex 1 sigma 3 subunit protein-coding 7.606 1.613
-130355 C2orf76 chromosome 2 open reading frame 76 protein-coding 5.972 0.7145
-130367 SGPP2 sphingosine-1-phosphate phosphatase 2 protein-coding 6.512 2.455
-130399 ACVR1C activin A receptor type 1C protein-coding 4.843 1.964
-130502 TTC32 tetratricopeptide repeat domain 32 protein-coding 6.086 0.9088
-130507 UBR3 ubiquitin protein ligase E3 component n-recognin 3 (putative) protein-coding 9.89 0.6658
-130535 KCTD18 potassium channel tetramerization domain containing 18 protein-coding 8.399 0.6019
+129804 FBLN7 fibulin 7 protein-coding 6.462 1.782
+129807 NEU4 neuraminidase 4 protein-coding 3.254 2.96
+129831 RBM45 RNA binding motif protein 45 protein-coding 7.354 0.3574
+129880 BBS5 Bardet-Biedl syndrome 5 protein-coding 7.412 1.008
+129881 CCDC173 coiled-coil domain containing 173 protein-coding 6.214 1.462
+1299 COL9A3 collagen type IX alpha 3 chain protein-coding 5.71 2.648
+130 ADH6 alcohol dehydrogenase 6 (class V) protein-coding 2.871 3.305
+1300 COL10A1 collagen type X alpha 1 chain protein-coding 6.102 3.613
+130026 ICA1L islet cell autoantigen 1 like protein-coding 6.638 1.565
+130074 FAM168B family with sequence similarity 168 member B protein-coding 11.35 0.6035
+1301 COL11A1 collagen type XI alpha 1 chain protein-coding 6.437 3.889
+130132 RFTN2 raftlin family member 2 protein-coding 5.749 1.906
+130162 CLHC1 clathrin heavy chain linker domain containing 1 protein-coding 6.004 1.195
+1302 COL11A2 collagen type XI alpha 2 chain protein-coding 4.616 2.301
+130271 PLEKHH2 pleckstrin homology, MyTH4 and FERM domain containing H2 protein-coding 6.889 1.921
+1303 COL12A1 collagen type XII alpha 1 chain protein-coding 10.53 2.492
+130340 AP1S3 adaptor related protein complex 1 sigma 3 subunit protein-coding 7.607 1.613
+130355 C2orf76 chromosome 2 open reading frame 76 protein-coding 5.971 0.7149
+130367 SGPP2 sphingosine-1-phosphate phosphatase 2 protein-coding 6.513 2.454
+130399 ACVR1C activin A receptor type 1C protein-coding 4.843 1.963
+130502 TTC32 tetratricopeptide repeat domain 32 protein-coding 6.086 0.9086
+130507 UBR3 ubiquitin protein ligase E3 component n-recognin 3 (putative) protein-coding 9.89 0.6657
+130535 KCTD18 potassium channel tetramerization domain containing 18 protein-coding 8.4 0.6019
130540 ALS2CR12 amyotrophic lateral sclerosis 2 chromosome region 12 protein-coding 1.782 1.233
-130557 ZNF513 zinc finger protein 513 protein-coding 8.844 0.671
+130557 ZNF513 zinc finger protein 513 protein-coding 8.843 0.6708
130574 LYPD6 LY6/PLAUR domain containing 6 protein-coding 5.54 2.56
-130576 LYPD6B LY6/PLAUR domain containing 6B protein-coding 5.11 3.166
-130589 GALM galactose mutarotase protein-coding 8.953 1.429
-1306 COL15A1 collagen type XV alpha 1 chain protein-coding 9.675 2.109
-130612 TMEM198 transmembrane protein 198 protein-coding 6.572 1.436
-130617 ZFAND2B zinc finger AN1-type containing 2B protein-coding 9.169 0.7417
+130576 LYPD6B LY6/PLAUR domain containing 6B protein-coding 5.11 3.167
+130589 GALM galactose mutarotase protein-coding 8.954 1.428
+1306 COL15A1 collagen type XV alpha 1 chain protein-coding 9.676 2.109
+130612 TMEM198 transmembrane protein 198 protein-coding 6.573 1.436
+130617 ZFAND2B zinc finger AN1-type containing 2B protein-coding 9.169 0.7415
1307 COL16A1 collagen type XVI alpha 1 chain protein-coding 9.603 1.889
-130733 TMEM178A transmembrane protein 178A protein-coding 5.307 2.355
+130733 TMEM178A transmembrane protein 178A protein-coding 5.308 2.354
130752 MDH1B malate dehydrogenase 1B protein-coding 4.281 1.893
-1308 COL17A1 collagen type XVII alpha 1 chain protein-coding 7.337 4.202
+1308 COL17A1 collagen type XVII alpha 1 chain protein-coding 7.338 4.201
130813 C2orf50 chromosome 2 open reading frame 50 protein-coding 2.315 1.626
-130814 PQLC3 PQ loop repeat containing 3 protein-coding 8.655 1.006
-130827 TMEM182 transmembrane protein 182 protein-coding 6.59 0.8693
-130872 AHSA2P activator of HSP90 ATPase homolog 2, pseudogene pseudo 8.627 1.15
-130888 FBXO36 F-box protein 36 protein-coding 6.526 1.232
-130916 MTERF4 mitochondrial transcription termination factor 4 protein-coding 8.322 0.6251
+130814 PQLC3 PQ loop repeat containing 3 protein-coding 8.656 1.006
+130827 TMEM182 transmembrane protein 182 protein-coding 6.59 0.8691
+130872 AHSA2P activator of HSP90 ATPase homolog 2, pseudogene pseudo 8.628 1.15
+130888 FBXO36 F-box protein 36 protein-coding 6.526 1.231
+130916 MTERF4 mitochondrial transcription termination factor 4 protein-coding 8.322 0.6255
130940 CCDC148 coiled-coil domain containing 148 protein-coding 3.502 1.678
-130951 M1AP meiosis 1 associated protein protein-coding 3.711 2.169
-1310 COL19A1 collagen type XIX alpha 1 chain protein-coding 1.918 1.952
-131034 CPNE4 copine 4 protein-coding 3.132 3.237
-131076 CCDC58 coiled-coil domain containing 58 protein-coding 7.804 0.8423
-131096 KCNH8 potassium voltage-gated channel subfamily H member 8 protein-coding 3.67 2.615
-1311 COMP cartilage oligomeric matrix protein protein-coding 6.327 3.862
-131118 DNAJC19 DnaJ heat shock protein family (Hsp40) member C19 protein-coding 8.949 0.6607
-131177 FAM3D family with sequence similarity 3 member D protein-coding 4.358 3.556
-1312 COMT catechol-O-methyltransferase protein-coding 11.11 0.8049
-1314 COPA coatomer protein complex subunit alpha protein-coding 12.49 0.556
-131408 FAM131A family with sequence similarity 131 member A protein-coding 8.598 0.8976
+130951 M1AP meiosis 1 associated protein protein-coding 3.713 2.168
+1310 COL19A1 collagen type XIX alpha 1 chain protein-coding 1.919 1.953
+131034 CPNE4 copine 4 protein-coding 3.134 3.238
+131076 CCDC58 coiled-coil domain containing 58 protein-coding 7.803 0.8426
+131096 KCNH8 potassium voltage-gated channel subfamily H member 8 protein-coding 3.671 2.615
+1311 COMP cartilage oligomeric matrix protein protein-coding 6.328 3.861
+131118 DNAJC19 DnaJ heat shock protein family (Hsp40) member C19 protein-coding 8.948 0.6605
+131177 FAM3D family with sequence similarity 3 member D protein-coding 4.359 3.556
+1312 COMT catechol-O-methyltransferase protein-coding 11.11 0.8046
+1314 COPA coatomer protein complex subunit alpha protein-coding 12.49 0.5558
+131408 FAM131A family with sequence similarity 131 member A protein-coding 8.599 0.8976
131450 CD200R1 CD200 receptor 1 protein-coding 3.694 1.595
-131474 CHCHD4 coiled-coil-helix-coiled-coil-helix domain containing 4 protein-coding 8.138 0.5515
-1315 COPB1 coatomer protein complex subunit beta 1 protein-coding 11.5 0.6111
-131540 ZDHHC19 zinc finger DHHC-type containing 19 protein-coding 1.473 1.601
-131544 CRYBG3 crystallin beta-gamma domain containing 3 protein-coding 8.014 1.41
+131474 CHCHD4 coiled-coil-helix-coiled-coil-helix domain containing 4 protein-coding 8.137 0.5513
+1315 COPB1 coatomer protein complex subunit beta 1 protein-coding 11.5 0.6109
+131540 ZDHHC19 zinc finger DHHC-type containing 19 protein-coding 1.473 1.6
+131544 CRYBG3 crystallin beta-gamma domain containing 3 protein-coding 8.015 1.41
131566 DCBLD2 discoidin, CUB and LCCL domain containing 2 protein-coding 9.831 1.323
-131583 FAM43A family with sequence similarity 43 member A protein-coding 8.043 1.385
+131583 FAM43A family with sequence similarity 43 member A protein-coding 8.044 1.384
1316 KLF6 Kruppel like factor 6 protein-coding 11.38 1.131
-131601 TPRA1 transmembrane protein adipocyte associated 1 protein-coding 9.703 0.575
-131616 TMEM42 transmembrane protein 42 protein-coding 7.827 0.8263
-131669 UROC1 urocanate hydratase 1 protein-coding 1.171 1.904
-1317 SLC31A1 solute carrier family 31 member 1 protein-coding 10.28 0.842
-1318 SLC31A2 solute carrier family 31 member 2 protein-coding 8.347 1.15
-131831 ERICH6 glutamate rich 6 protein-coding 1.023 0.856
-131870 NUDT16 nudix hydrolase 16 protein-coding 9.509 0.7287
-131873 COL6A6 collagen type VI alpha 6 chain protein-coding 2.853 2.341
-131890 GRK7 G protein-coupled receptor kinase 7 protein-coding 0.8969 0.9913
-131965 METTL6 methyltransferase like 6 protein-coding 7.945 0.5124
-132 ADK adenosine kinase protein-coding 8.691 0.8431
-132001 TAMM41 TAM41 mitochondrial translocator assembly and maintenance homolog protein-coding 7.188 0.5816
-132014 IL17RE interleukin 17 receptor E protein-coding 7.408 1.727
-132158 GLYCTK glycerate kinase protein-coding 7.276 1.584
-132160 PPM1M protein phosphatase, Mg2+/Mn2+ dependent 1M protein-coding 8.62 0.8707
-132200 C3orf49 chromosome 3 open reading frame 49 protein-coding 0.3977 0.5319
-132228 LSMEM2 leucine rich single-pass membrane protein 2 protein-coding 1.594 1.357
-132241 RPL32P3 ribosomal protein L32 pseudogene 3 pseudo 6.93 0.8616
-132299 OCIAD2 OCIA domain containing 2 protein-coding 9.952 1.635
-132320 SCLT1 sodium channel and clathrin linker 1 protein-coding 7.416 0.7285
-132321 C4orf33 chromosome 4 open reading frame 33 protein-coding 7.524 0.8908
+131601 TPRA1 transmembrane protein adipocyte associated 1 protein-coding 9.703 0.5748
+131616 TMEM42 transmembrane protein 42 protein-coding 7.827 0.8262
+131669 UROC1 urocanate hydratase 1 protein-coding 1.17 1.904
+1317 SLC31A1 solute carrier family 31 member 1 protein-coding 10.28 0.8426
+1318 SLC31A2 solute carrier family 31 member 2 protein-coding 8.348 1.15
+131831 ERICH6 glutamate rich 6 protein-coding 1.023 0.8564
+131870 NUDT16 nudix hydrolase 16 protein-coding 9.51 0.7285
+131873 COL6A6 collagen type VI alpha 6 chain protein-coding 2.854 2.342
+131890 GRK7 G protein-coupled receptor kinase 7 protein-coding 0.8968 0.991
+131965 METTL6 methyltransferase like 6 protein-coding 7.945 0.5123
+132 ADK adenosine kinase protein-coding 8.69 0.843
+132001 TAMM41 TAM41 mitochondrial translocator assembly and maintenance homolog protein-coding 7.188 0.5813
+132014 IL17RE interleukin 17 receptor E protein-coding 7.409 1.727
+132158 GLYCTK glycerate kinase protein-coding 7.276 1.583
+132160 PPM1M protein phosphatase, Mg2+/Mn2+ dependent 1M protein-coding 8.621 0.871
+132200 C3orf49 chromosome 3 open reading frame 49 protein-coding 0.3977 0.5321
+132228 LSMEM2 leucine rich single-pass membrane protein 2 protein-coding 1.594 1.356
+132241 RPL32P3 ribosomal protein L32 pseudogene 3 pseudo 6.931 0.8616
+132299 OCIAD2 OCIA domain containing 2 protein-coding 9.951 1.635
+132320 SCLT1 sodium channel and clathrin linker 1 protein-coding 7.416 0.7284
+132321 C4orf33 chromosome 4 open reading frame 33 protein-coding 7.524 0.8907
132332 TMEM155 transmembrane protein 155 protein-coding 2.343 1.816
-132430 PABPC4L poly(A) binding protein cytoplasmic 4 like protein-coding 4.934 1.769
+132430 PABPC4L poly(A) binding protein cytoplasmic 4 like protein-coding 4.935 1.769
1325 CORT cortistatin protein-coding 3.056 1.273
-1326 MAP3K8 mitogen-activated protein kinase kinase kinase 8 protein-coding 7.297 1.299
-132660 LIN54 lin-54 DREAM MuvB core complex component protein-coding 8.436 0.6026
-132671 SPATA18 spermatogenesis associated 18 protein-coding 6.829 2.05
-1327 COX4I1 cytochrome c oxidase subunit 4I1 protein-coding 12.59 0.7919
-132720 FAM241A family with sequence similarity 241 member A protein-coding 7.638 1.424
-132789 GNPDA2 glucosamine-6-phosphate deaminase 2 protein-coding 8.217 0.8189
+1326 MAP3K8 mitogen-activated protein kinase kinase kinase 8 protein-coding 7.298 1.3
+132660 LIN54 lin-54 DREAM MuvB core complex component protein-coding 8.436 0.6024
+132671 SPATA18 spermatogenesis associated 18 protein-coding 6.83 2.05
+1327 COX4I1 cytochrome c oxidase subunit 4I1 protein-coding 12.59 0.7916
+132720 FAM241A family with sequence similarity 241 member A protein-coding 7.638 1.423
+132789 GNPDA2 glucosamine-6-phosphate deaminase 2 protein-coding 8.217 0.8186
132864 CPEB2 cytoplasmic polyadenylation element binding protein 2 protein-coding 8.892 1.177
-132884 EVC2 EvC ciliary complex subunit 2 protein-coding 6.074 1.902
+132884 EVC2 EvC ciliary complex subunit 2 protein-coding 6.075 1.902
1329 COX5B cytochrome c oxidase subunit 5B protein-coding 11.05 0.8119
132946 ARL9 ADP ribosylation factor like GTPase 9 protein-coding 2.801 1.726
-132949 AASDH aminoadipate-semialdehyde dehydrogenase protein-coding 7.846 0.5944
+132949 AASDH aminoadipate-semialdehyde dehydrogenase protein-coding 7.846 0.5943
132989 C4orf36 chromosome 4 open reading frame 36 protein-coding 2.749 1.144
-133 ADM adrenomedullin protein-coding 8.818 2.033
-133015 PACRGL parkin coregulated like protein-coding 7.513 0.5951
-133121 ENPP6 ectonucleotide pyrophosphatase/phosphodiesterase 6 protein-coding 3.2 2.186
+133 ADM adrenomedullin protein-coding 8.817 2.032
+133015 PACRGL parkin coregulated like protein-coding 7.513 0.5949
+133121 ENPP6 ectonucleotide pyrophosphatase/phosphodiesterase 6 protein-coding 3.202 2.186
133308 SLC9B2 solute carrier family 9 member B2 protein-coding 7.017 1.46
-133383 SETD9 SET domain containing 9 protein-coding 6.506 0.934
-133396 IL31RA interleukin 31 receptor A protein-coding 1.984 2.041
-133418 EMB embigin protein-coding 8.82 2.013
-133522 PPARGC1B PPARG coactivator 1 beta protein-coding 4.554 1.494
-133584 EGFLAM EGF like, fibronectin type III and laminin G domains protein-coding 6.799 1.65
-133619 PRRC1 proline rich coiled-coil 1 protein-coding 10.56 0.5985
-133686 NADK2 NAD kinase 2, mitochondrial protein-coding 9.486 0.9781
-1337 COX6A1 cytochrome c oxidase subunit 6A1 protein-coding 11.39 0.7553
-133746 JMY junction mediating and regulatory protein, p53 cofactor protein-coding 9.18 0.8004
-133874 C5orf58 chromosome 5 open reading frame 58 protein-coding 1.894 1.416
-133923 ZNF474 zinc finger protein 474 protein-coding 2.648 1.493
-133957 CCDC127 coiled-coil domain containing 127 protein-coding 8.575 0.589
+133383 SETD9 SET domain containing 9 protein-coding 6.506 0.9337
+133396 IL31RA interleukin 31 receptor A protein-coding 1.985 2.041
+133418 EMB embigin protein-coding 8.821 2.013
+133522 PPARGC1B PPARG coactivator 1 beta protein-coding 4.555 1.494
+133584 EGFLAM EGF like, fibronectin type III and laminin G domains protein-coding 6.8 1.65
+133619 PRRC1 proline rich coiled-coil 1 protein-coding 10.56 0.5982
+133686 NADK2 NAD kinase 2, mitochondrial protein-coding 9.485 0.9778
+1337 COX6A1 cytochrome c oxidase subunit 6A1 protein-coding 11.39 0.7554
+133746 JMY junction mediating and regulatory protein, p53 cofactor protein-coding 9.181 0.8004
+133874 C5orf58 chromosome 5 open reading frame 58 protein-coding 1.895 1.417
+133923 ZNF474 zinc finger protein 474 protein-coding 2.647 1.493
+133957 CCDC127 coiled-coil domain containing 127 protein-coding 8.575 0.5888
134 ADORA1 adenosine A1 receptor protein-coding 6.284 2.44
-1340 COX6B1 cytochrome c oxidase subunit 6B1 protein-coding 11.76 0.7871
+1340 COX6B1 cytochrome c oxidase subunit 6B1 protein-coding 11.76 0.7872
134111 UBE2QL1 ubiquitin conjugating enzyme E2 Q family like 1 protein-coding 5.572 2.438
-134145 FAM173B family with sequence similarity 173 member B protein-coding 7.897 0.6225
-134147 CMBL carboxymethylenebutenolidase homolog protein-coding 9.437 1.835
-134218 DNAJC21 DnaJ heat shock protein family (Hsp40) member C21 protein-coding 10.1 0.6551
+134145 FAM173B family with sequence similarity 173 member B protein-coding 7.896 0.6223
+134147 CMBL carboxymethylenebutenolidase homolog protein-coding 9.437 1.834
+134218 DNAJC21 DnaJ heat shock protein family (Hsp40) member C21 protein-coding 10.1 0.6548
134265 AFAP1L1 actin filament associated protein 1 like 1 protein-coding 7.751 1.265
-134266 GRPEL2 GrpE like 2, mitochondrial protein-coding 8.712 0.6551
-134285 TMEM171 transmembrane protein 171 protein-coding 4.73 2.732
-134353 LSM11 LSM11, U7 small nuclear RNA associated protein-coding 7.539 0.661
-134359 POC5 POC5 centriolar protein protein-coding 7.554 0.579
-134429 STARD4 StAR related lipid transfer domain containing 4 protein-coding 6.755 1.437
-134430 WDR36 WD repeat domain 36 protein-coding 9.498 0.5424
-134466 ZNF300P1 zinc finger protein 300 pseudogene 1 pseudo 3.992 2.064
-134492 NUDCD2 NudC domain containing 2 protein-coding 8.736 0.5483
-1345 COX6C cytochrome c oxidase subunit 6C protein-coding 11.35 0.9946
-134510 UBLCP1 ubiquitin like domain containing CTD phosphatase 1 protein-coding 9.169 0.5641
-134548 SOWAHA sosondowah ankyrin repeat domain family member A protein-coding 5.083 2.527
-134549 SHROOM1 shroom family member 1 protein-coding 8.251 1.458
-134553 C5orf24 chromosome 5 open reading frame 24 protein-coding 10.16 0.6763
-1346 COX7A1 cytochrome c oxidase subunit 7A1 protein-coding 6.567 1.858
+134266 GRPEL2 GrpE like 2, mitochondrial protein-coding 8.712 0.6549
+134285 TMEM171 transmembrane protein 171 protein-coding 4.73 2.733
+134353 LSM11 LSM11, U7 small nuclear RNA associated protein-coding 7.54 0.661
+134359 POC5 POC5 centriolar protein protein-coding 7.555 0.579
+134429 STARD4 StAR related lipid transfer domain containing 4 protein-coding 6.755 1.436
+134430 WDR36 WD repeat domain 36 protein-coding 9.498 0.5422
+134466 ZNF300P1 zinc finger protein 300 pseudogene 1 pseudo 3.994 2.064
+134492 NUDCD2 NudC domain containing 2 protein-coding 8.735 0.5481
+1345 COX6C cytochrome c oxidase subunit 6C protein-coding 11.35 0.9947
+134510 UBLCP1 ubiquitin like domain containing CTD phosphatase 1 protein-coding 9.169 0.5639
+134548 SOWAHA sosondowah ankyrin repeat domain family member A protein-coding 5.084 2.527
+134549 SHROOM1 shroom family member 1 protein-coding 8.251 1.459
+134553 C5orf24 chromosome 5 open reading frame 24 protein-coding 10.16 0.6762
+1346 COX7A1 cytochrome c oxidase subunit 7A1 protein-coding 6.569 1.858
134637 ADAT2 adenosine deaminase, tRNA specific 2 protein-coding 7.14 0.9654
1347 COX7A2 cytochrome c oxidase subunit 7A2 protein-coding 10.9 0.701
-134728 IRAK1BP1 interleukin 1 receptor associated kinase 1 binding protein 1 protein-coding 5.17 0.9926
+134728 IRAK1BP1 interleukin 1 receptor associated kinase 1 binding protein 1 protein-coding 5.171 0.9925
1349 COX7B cytochrome c oxidase subunit 7B protein-coding 10.84 0.8031
-134957 STXBP5 syntaxin binding protein 5 protein-coding 8.38 1.059
+134957 STXBP5 syntaxin binding protein 5 protein-coding 8.382 1.059
135 ADORA2A adenosine A2a receptor protein-coding 6.878 1.328
-1350 COX7C cytochrome c oxidase subunit 7C protein-coding 11.8 0.7454
-1351 COX8A cytochrome c oxidase subunit 8A protein-coding 11.5 0.6816
+1350 COX7C cytochrome c oxidase subunit 7C protein-coding 11.8 0.7451
+1351 COX8A cytochrome c oxidase subunit 8A protein-coding 11.5 0.6815
135112 NCOA7 nuclear receptor coactivator 7 protein-coding 10.04 1.329
-135114 HINT3 histidine triad nucleotide binding protein 3 protein-coding 9.656 0.6595
-135152 B3GAT2 beta-1,3-glucuronyltransferase 2 protein-coding 3.406 1.934
-135154 SDHAF4 succinate dehydrogenase complex assembly factor 4 protein-coding 6.446 0.7083
-1352 COX10 COX10, heme A:farnesyltransferase cytochrome c oxidase assembly factor protein-coding 8.199 0.5659
-135228 CD109 CD109 molecule protein-coding 8.872 2.043
-135250 RAET1E retinoic acid early transcript 1E protein-coding 3.309 2.187
-135293 PM20D2 peptidase M20 domain containing 2 protein-coding 8.816 1.313
-135295 SRSF12 serine and arginine rich splicing factor 12 protein-coding 4.873 1.953
-1353 COX11 COX11, cytochrome c oxidase copper chaperone protein-coding 9.666 0.568
+135114 HINT3 histidine triad nucleotide binding protein 3 protein-coding 9.656 0.6593
+135152 B3GAT2 beta-1,3-glucuronyltransferase 2 protein-coding 3.407 1.933
+135154 SDHAF4 succinate dehydrogenase complex assembly factor 4 protein-coding 6.446 0.7081
+1352 COX10 COX10, heme A:farnesyltransferase cytochrome c oxidase assembly factor protein-coding 8.199 0.5657
+135228 CD109 CD109 molecule protein-coding 8.871 2.043
+135250 RAET1E retinoic acid early transcript 1E protein-coding 3.308 2.187
+135293 PM20D2 peptidase M20 domain containing 2 protein-coding 8.817 1.313
+135295 SRSF12 serine and arginine rich splicing factor 12 protein-coding 4.873 1.952
+1353 COX11 COX11, cytochrome c oxidase copper chaperone protein-coding 9.666 0.5678
135458 HUS1B HUS1 checkpoint clamp component B protein-coding 1.629 1.09
-1355 COX15 COX15, cytochrome c oxidase assembly homolog protein-coding 9.977 0.4652
-1356 CP ceruloplasmin protein-coding 7.834 4.003
-135892 TRIM50 tripartite motif containing 50 protein-coding 1.726 1.936
-1359 CPA3 carboxypeptidase A3 protein-coding 5.69 2.998
-135932 TMEM139 transmembrane protein 139 protein-coding 6.053 2.783
-136 ADORA2B adenosine A2b receptor protein-coding 6.022 2.067
-136051 ZNF786 zinc finger protein 786 protein-coding 7.555 0.6069
+1355 COX15 COX15, cytochrome c oxidase assembly homolog protein-coding 9.977 0.465
+1356 CP ceruloplasmin protein-coding 7.834 4.002
+135892 TRIM50 tripartite motif containing 50 protein-coding 1.727 1.936
+1359 CPA3 carboxypeptidase A3 protein-coding 5.692 2.999
+135932 TMEM139 transmembrane protein 139 protein-coding 6.054 2.782
+136 ADORA2B adenosine A2b receptor protein-coding 6.021 2.067
+136051 ZNF786 zinc finger protein 786 protein-coding 7.555 0.6067
1361 CPB2 carboxypeptidase B2 protein-coding 1.642 2.988
1362 CPD carboxypeptidase D protein-coding 11.32 1.042
-136227 COL26A1 collagen type XXVI alpha 1 chain protein-coding 4.089 2.758
+136227 COL26A1 collagen type XXVI alpha 1 chain protein-coding 4.09 2.757
136288 C7orf57 chromosome 7 open reading frame 57 protein-coding 2.282 2.019
1363 CPE carboxypeptidase E protein-coding 10.58 2.398
-136306 SVOPL SVOP like protein-coding 2.373 2.148
+136306 SVOPL SVOP like protein-coding 2.373 2.147
136332 LRGUK leucine rich repeats and guanylate kinase domain containing protein-coding 2.814 1.602
-1364 CLDN4 claudin 4 protein-coding 10.76 3.624
-1365 CLDN3 claudin 3 protein-coding 7.915 4.176
-1366 CLDN7 claudin 7 protein-coding 9.732 3.103
-136647 MPLKIP M-phase specific PLK1 interacting protein protein-coding 9.004 0.6373
-1368 CPM carboxypeptidase M protein-coding 9.198 1.645
+1364 CLDN4 claudin 4 protein-coding 10.76 3.623
+1365 CLDN3 claudin 3 protein-coding 7.916 4.176
+1366 CLDN7 claudin 7 protein-coding 9.731 3.103
+136647 MPLKIP M-phase specific PLK1 interacting protein protein-coding 9.004 0.6372
+1368 CPM carboxypeptidase M protein-coding 9.199 1.646
136853 SSC4D scavenger receptor cysteine rich family member with 4 domains protein-coding 5.124 1.442
-136895 C7orf31 chromosome 7 open reading frame 31 protein-coding 6.461 1.193
-137075 CLDN23 claudin 23 protein-coding 6.716 1.761
-1371 CPOX coproporphyrinogen oxidase protein-coding 8.746 0.7255
-137209 ZNF572 zinc finger protein 572 protein-coding 5.612 1.188
-1373 CPS1 carbamoyl-phosphate synthase 1 protein-coding 5.924 3.231
-137392 FAM92A family with sequence similarity 92 member A protein-coding 7.083 1.14
+136895 C7orf31 chromosome 7 open reading frame 31 protein-coding 6.462 1.192
+137075 CLDN23 claudin 23 protein-coding 6.717 1.761
+1371 CPOX coproporphyrinogen oxidase protein-coding 8.745 0.7253
+137209 ZNF572 zinc finger protein 572 protein-coding 5.612 1.187
+1373 CPS1 carbamoyl-phosphate synthase 1 protein-coding 5.924 3.229
+137392 FAM92A family with sequence similarity 92 member A protein-coding 7.083 1.139
1374 CPT1A carnitine palmitoyltransferase 1A protein-coding 10.62 1.019
-137492 VPS37A VPS37A, ESCRT-I subunit protein-coding 9.287 0.606
+137492 VPS37A VPS37A, ESCRT-I subunit protein-coding 9.287 0.6058
1375 CPT1B carnitine palmitoyltransferase 1B protein-coding 8.061 1.343
-1376 CPT2 carnitine palmitoyltransferase 2 protein-coding 9.48 0.6712
-137682 NDUFAF6 NADH:ubiquinone oxidoreductase complex assembly factor 6 protein-coding 7.756 0.7738
+1376 CPT2 carnitine palmitoyltransferase 2 protein-coding 9.48 0.6709
+137682 NDUFAF6 NADH:ubiquinone oxidoreductase complex assembly factor 6 protein-coding 7.755 0.7742
137695 TMEM68 transmembrane protein 68 protein-coding 8.684 0.6122
-1378 CR1 complement C3b/C4b receptor 1 (Knops blood group) protein-coding 4.665 2.161
+1378 CR1 complement C3b/C4b receptor 1 (Knops blood group) protein-coding 4.667 2.162
137835 TMEM71 transmembrane protein 71 protein-coding 4.718 1.67
-137872 ADHFE1 alcohol dehydrogenase, iron containing 1 protein-coding 6.073 2.131
-137886 UBXN2B UBX domain protein 2B protein-coding 9.391 0.72
+137872 ADHFE1 alcohol dehydrogenase, iron containing 1 protein-coding 6.075 2.13
+137886 UBXN2B UBX domain protein 2B protein-coding 9.391 0.7197
1379 CR1L complement C3b/C4b receptor 1 like protein-coding 1.276 1.535
-137902 PXDNL peroxidasin like protein-coding 3.375 1.964
+137902 PXDNL peroxidasin like protein-coding 3.375 1.963
137964 GPAT4 glycerol-3-phosphate acyltransferase 4 protein-coding 10.89 0.6862
137994 LETM2 leucine zipper and EF-hand containing transmembrane protein 2 protein-coding 5.443 1.361
-1380 CR2 complement C3d receptor 2 protein-coding 3.253 2.974
-138050 HGSNAT heparan-alpha-glucosaminide N-acetyltransferase protein-coding 10.9 0.7446
-138065 RNF183 ring finger protein 183 protein-coding 3.502 2.573
-1381 CRABP1 cellular retinoic acid binding protein 1 protein-coding 3.469 3.246
+1380 CR2 complement C3d receptor 2 protein-coding 3.255 2.976
+138050 HGSNAT heparan-alpha-glucosaminide N-acetyltransferase protein-coding 10.9 0.7443
+138065 RNF183 ring finger protein 183 protein-coding 3.502 2.572
+1381 CRABP1 cellular retinoic acid binding protein 1 protein-coding 3.471 3.246
138151 NACC2 NACC family member 2 protein-coding 5.981 1.178
-138162 C9orf116 chromosome 9 open reading frame 116 protein-coding 6.072 1.496
+138162 C9orf116 chromosome 9 open reading frame 116 protein-coding 6.071 1.496
138199 CARNMT1 carnosine N-methyltransferase 1 protein-coding 6.696 1.242
-1382 CRABP2 cellular retinoic acid binding protein 2 protein-coding 8.83 3.309
-138241 C9orf85 chromosome 9 open reading frame 85 protein-coding 7.25 0.5648
-138307 LCN8 lipocalin 8 protein-coding 0.4921 1.161
+1382 CRABP2 cellular retinoic acid binding protein 2 protein-coding 8.828 3.308
+138241 C9orf85 chromosome 9 open reading frame 85 protein-coding 7.25 0.5647
+138307 LCN8 lipocalin 8 protein-coding 0.4927 1.162
138311 FAM69B family with sequence similarity 69 member B protein-coding 7.773 1.711
1384 CRAT carnitine O-acetyltransferase protein-coding 10.15 1.296
-138428 PTRH1 peptidyl-tRNA hydrolase 1 homolog protein-coding 7.48 0.8845
+138428 PTRH1 peptidyl-tRNA hydrolase 1 homolog protein-coding 7.48 0.8843
138429 PIP5KL1 phosphatidylinositol-4-phosphate 5-kinase like 1 protein-coding 3.882 1.73
138474 TAF1L TATA-box binding protein associated factor 1 like protein-coding 4.431 1.133
-1385 CREB1 cAMP responsive element binding protein 1 protein-coding 9.814 0.5261
-1386 ATF2 activating transcription factor 2 protein-coding 8.467 0.9423
-138639 PTPDC1 protein tyrosine phosphatase domain containing 1 protein-coding 7.396 0.7367
-138649 ANKRD19P ankyrin repeat domain 19, pseudogene pseudo 5.985 1.133
-1387 CREBBP CREB binding protein protein-coding 11.09 0.5869
-138716 RPP25L ribonuclease P/MRP subunit p25 like protein-coding 8.772 0.7639
-138724 C9orf131 chromosome 9 open reading frame 131 protein-coding 1.327 0.9769
-1388 ATF6B activating transcription factor 6 beta protein-coding 11.09 0.5502
-1389 CREBL2 cAMP responsive element binding protein like 2 protein-coding 10.41 0.8221
-1390 CREM cAMP responsive element modulator protein-coding 8.647 0.7163
-139065 SLITRK4 SLIT and NTRK like family member 4 protein-coding 3.931 2.55
-139231 FAM199X family with sequence similarity 199, X-linked protein-coding 8.922 0.7868
-139285 AMER1 APC membrane recruitment protein 1 protein-coding 7.605 0.8748
-1393 CRHBP corticotropin releasing hormone binding protein protein-coding 2.86 2.031
-139322 APOOL apolipoprotein O like protein-coding 6.945 1.076
-139324 HDX highly divergent homeobox protein-coding 4.727 1.495
-139341 FUNDC1 FUN14 domain containing 1 protein-coding 8.45 0.624
-139596 UPRT uracil phosphoribosyltransferase homolog protein-coding 7.846 0.7319
+1385 CREB1 cAMP responsive element binding protein 1 protein-coding 9.814 0.526
+1386 ATF2 activating transcription factor 2 protein-coding 8.467 0.942
+138639 PTPDC1 protein tyrosine phosphatase domain containing 1 protein-coding 7.396 0.7366
+138649 ANKRD19P ankyrin repeat domain 19, pseudogene pseudo 5.985 1.132
+1387 CREBBP CREB binding protein protein-coding 11.09 0.5868
+138716 RPP25L ribonuclease P/MRP subunit p25 like protein-coding 8.772 0.7638
+138724 C9orf131 chromosome 9 open reading frame 131 protein-coding 1.327 0.9772
+1388 ATF6B activating transcription factor 6 beta protein-coding 11.09 0.55
+1389 CREBL2 cAMP responsive element binding protein like 2 protein-coding 10.41 0.822
+1390 CREM cAMP responsive element modulator protein-coding 8.648 0.7165
+139065 SLITRK4 SLIT and NTRK like family member 4 protein-coding 3.932 2.549
+139231 FAM199X family with sequence similarity 199, X-linked protein-coding 8.921 0.7865
+139285 AMER1 APC membrane recruitment protein 1 protein-coding 7.605 0.8744
+1393 CRHBP corticotropin releasing hormone binding protein protein-coding 2.861 2.031
+139322 APOOL apolipoprotein O like protein-coding 6.945 1.075
+139324 HDX highly divergent homeobox protein-coding 4.728 1.495
+139341 FUNDC1 FUN14 domain containing 1 protein-coding 8.45 0.6239
+139596 UPRT uracil phosphoribosyltransferase homolog protein-coding 7.846 0.7317
1396 CRIP1 cysteine rich protein 1 protein-coding 9.758 2.294
-1397 CRIP2 cysteine rich protein 2 protein-coding 10.94 1.403
-139716 GAB3 GRB2 associated binding protein 3 protein-coding 6.189 1.296
-139728 PNCK pregnancy up-regulated nonubiquitous CaM kinase protein-coding 4.935 3.065
-139735 ZFP92 ZFP92 zinc finger protein protein-coding 1.562 1.27
-1398 CRK CRK proto-oncogene, adaptor protein protein-coding 9.605 0.6374
-139818 DOCK11 dedicator of cytokinesis 11 protein-coding 8.154 1.597
+1397 CRIP2 cysteine rich protein 2 protein-coding 10.94 1.402
+139716 GAB3 GRB2 associated binding protein 3 protein-coding 6.19 1.297
+139728 PNCK pregnancy up-regulated nonubiquitous CaM kinase protein-coding 4.934 3.065
+139735 ZFP92 ZFP92 zinc finger protein protein-coding 1.563 1.27
+1398 CRK CRK proto-oncogene, adaptor protein protein-coding 9.605 0.6371
+139818 DOCK11 dedicator of cytokinesis 11 protein-coding 8.155 1.597
139886 SPIN4 spindlin family member 4 protein-coding 7.39 1.239
-1399 CRKL CRK like proto-oncogene, adaptor protein protein-coding 11 0.6576
+1399 CRKL CRK like proto-oncogene, adaptor protein protein-coding 11 0.6573
14 AAMP angio associated migratory cell protein protein-coding 11.33 0.4431
-140 ADORA3 adenosine A3 receptor protein-coding 6.519 1.757
+140 ADORA3 adenosine A3 receptor protein-coding 6.52 1.757
1400 CRMP1 collapsin response mediator protein 1 protein-coding 7.644 2.158
-140290 TCP10L t-complex 10 like protein-coding 3.618 1.524
-140459 ASB6 ankyrin repeat and SOCS box containing 6 protein-coding 9.629 0.4882
-140460 ASB7 ankyrin repeat and SOCS box containing 7 protein-coding 8.597 0.4665
-140461 ASB8 ankyrin repeat and SOCS box containing 8 protein-coding 9.293 0.5109
-140462 ASB9 ankyrin repeat and SOCS box containing 9 protein-coding 5.393 1.684
+140290 TCP10L t-complex 10 like protein-coding 3.617 1.523
+140459 ASB6 ankyrin repeat and SOCS box containing 6 protein-coding 9.629 0.4881
+140460 ASB7 ankyrin repeat and SOCS box containing 7 protein-coding 8.597 0.4663
+140461 ASB8 ankyrin repeat and SOCS box containing 8 protein-coding 9.293 0.5107
+140462 ASB9 ankyrin repeat and SOCS box containing 9 protein-coding 5.393 1.683
140465 MYL6B myosin light chain 6B protein-coding 9.529 1.041
-140467 ZNF358 zinc finger protein 358 protein-coding 10.28 1.002
-140469 MYO3B myosin IIIB protein-coding 3.31 2.373
-140545 RNF32 ring finger protein 32 protein-coding 5.292 1.068
-140564 APOBEC3D apolipoprotein B mRNA editing enzyme catalytic subunit 3D protein-coding 6.097 1.565
-140576 S100A16 S100 calcium binding protein A16 protein-coding 11.4 1.702
-140578 CHODL chondrolectin protein-coding 3.818 2.305
-140597 TCEAL2 transcription elongation factor A like 2 protein-coding 4.41 3.261
-140606 SELENOM selenoprotein M protein-coding 9.424 1.501
-140609 NEK7 NIMA related kinase 7 protein-coding 10.1 0.796
-140612 ZFP28 ZFP28 zinc finger protein protein-coding 6.526 1.622
-140628 GATA5 GATA binding protein 5 protein-coding 2.383 2.472
+140467 ZNF358 zinc finger protein 358 protein-coding 10.28 1.001
+140469 MYO3B myosin IIIB protein-coding 3.31 2.372
+140545 RNF32 ring finger protein 32 protein-coding 5.292 1.067
+140564 APOBEC3D apolipoprotein B mRNA editing enzyme catalytic subunit 3D protein-coding 6.098 1.565
+140576 S100A16 S100 calcium binding protein A16 protein-coding 11.39 1.701
+140578 CHODL chondrolectin protein-coding 3.82 2.305
+140597 TCEAL2 transcription elongation factor A like 2 protein-coding 4.414 3.262
+140606 SELENOM selenoprotein M protein-coding 9.425 1.501
+140609 NEK7 NIMA related kinase 7 protein-coding 10.1 0.7959
+140612 ZFP28 ZFP28 zinc finger protein protein-coding 6.527 1.621
+140628 GATA5 GATA binding protein 5 protein-coding 2.385 2.472
140680 C20orf96 chromosome 20 open reading frame 96 protein-coding 7.788 1.09
-140685 ZBTB46 zinc finger and BTB domain containing 46 protein-coding 7.216 1.183
-140686 WFDC3 WAP four-disulfide core domain 3 protein-coding 3.335 1.794
-140687 GCNT7 glucosaminyl (N-acetyl) transferase family member 7 protein-coding 0.6209 0.6932
-140688 NOL4L nucleolar protein 4 like protein-coding 9.454 1.06
-140690 CTCFL CCCTC-binding factor like protein-coding 3.807 1.595
+140685 ZBTB46 zinc finger and BTB domain containing 46 protein-coding 7.217 1.183
+140686 WFDC3 WAP four-disulfide core domain 3 protein-coding 3.334 1.794
+140687 GCNT7 glucosaminyl (N-acetyl) transferase family member 7 protein-coding 0.6211 0.6933
+140688 NOL4L nucleolar protein 4 like protein-coding 9.455 1.06
+140690 CTCFL CCCTC-binding factor like protein-coding 3.806 1.594
140691 TRIM69 tripartite motif containing 69 protein-coding 4.245 1.34
-140699 MROH8 maestro heat like repeat family member 8 protein-coding 4.564 1.359
+140699 MROH8 maestro heat like repeat family member 8 protein-coding 4.565 1.359
1407 CRY1 cryptochrome circadian regulator 1 protein-coding 8.743 0.69
-140700 SAMD10 sterile alpha motif domain containing 10 protein-coding 7.525 1.041
-140701 ABHD16B abhydrolase domain containing 16B protein-coding 6.855 0.9522
-140706 CCM2L CCM2 like scaffold protein protein-coding 5.821 1.283
-140707 BRI3BP BRI3 binding protein protein-coding 6.828 1.1
-140710 SOGA1 suppressor of glucose, autophagy associated 1 protein-coding 8.366 1.125
-140711 TLDC2 TBC/LysM-associated domain containing 2 protein-coding 4.903 1.716
-140733 MACROD2 MACRO domain containing 2 protein-coding 6.274 1.979
-140735 DYNLL2 dynein light chain LC8-type 2 protein-coding 10.57 0.7744
+140700 SAMD10 sterile alpha motif domain containing 10 protein-coding 7.524 1.04
+140701 ABHD16B abhydrolase domain containing 16B protein-coding 6.855 0.9518
+140706 CCM2L CCM2 like scaffold protein protein-coding 5.822 1.283
+140707 BRI3BP BRI3 binding protein protein-coding 6.827 1.101
+140710 SOGA1 suppressor of glucose, autophagy associated 1 protein-coding 8.367 1.124
+140711 TLDC2 TBC/LysM-associated domain containing 2 protein-coding 4.904 1.716
+140733 MACROD2 MACRO domain containing 2 protein-coding 6.275 1.978
+140735 DYNLL2 dynein light chain LC8-type 2 protein-coding 10.57 0.7743
140738 TMEM37 transmembrane protein 37 protein-coding 7.84 2.02
140739 UBE2F ubiquitin conjugating enzyme E2 F (putative) protein-coding 9.324 0.5424
-140766 ADAMTS14 ADAM metallopeptidase with thrombospondin type 1 motif 14 protein-coding 6.037 2.03
-140771 SMCR5 Smith-Magenis syndrome chromosome region, candidate 5 (non-protein coding) ncRNA 0.8858 0.9784
-140775 SMCR8 Smith-Magenis syndrome chromosome region, candidate 8 protein-coding 9.592 0.7204
-1408 CRY2 cryptochrome circadian regulator 2 protein-coding 9.785 0.9356
-140803 TRPM6 transient receptor potential cation channel subfamily M member 6 protein-coding 3.724 1.923
+140766 ADAMTS14 ADAM metallopeptidase with thrombospondin type 1 motif 14 protein-coding 6.036 2.031
+140771 SMCR5 Smith-Magenis syndrome chromosome region, candidate 5 (non-protein coding) ncRNA 0.8861 0.9785
+140775 SMCR8 Smith-Magenis syndrome chromosome region, candidate 8 protein-coding 9.593 0.7203
+1408 CRY2 cryptochrome circadian regulator 2 protein-coding 9.786 0.9357
+140803 TRPM6 transient receptor potential cation channel subfamily M member 6 protein-coding 3.725 1.923
140809 SRXN1 sulfiredoxin 1 protein-coding 10.23 1.14
140823 ROMO1 reactive oxygen species modulator 1 protein-coding 10.06 0.9239
-140825 NEURL2 neuralized E3 ubiquitin protein ligase 2 protein-coding 5.146 1.12
-140831 ZSWIM3 zinc finger SWIM-type containing 3 protein-coding 6.827 0.6745
-140838 NANP N-acetylneuraminic acid phosphatase protein-coding 7.499 0.6622
-140862 ISM1 isthmin 1 protein-coding 5.982 2.194
+140825 NEURL2 neuralized E3 ubiquitin protein ligase 2 protein-coding 5.146 1.119
+140831 ZSWIM3 zinc finger SWIM-type containing 3 protein-coding 6.827 0.6743
+140838 NANP N-acetylneuraminic acid phosphatase protein-coding 7.498 0.662
+140862 ISM1 isthmin 1 protein-coding 5.982 2.195
140876 RIPOR3 RIPOR family member 3 protein-coding 5.568 1.832
-140883 ZNF280B zinc finger protein 280B protein-coding 5.163 2.116
+140883 ZNF280B zinc finger protein 280B protein-coding 5.164 2.115
140885 SIRPA signal regulatory protein alpha protein-coding 10.29 1.509
-140886 PABPC5 poly(A) binding protein cytoplasmic 5 protein-coding 3.916 1.911
-140890 SREK1 splicing regulatory glutamic acid and lysine rich protein 1 protein-coding 10.17 0.5932
-140894 CNBD2 cyclic nucleotide binding domain containing 2 protein-coding 1.451 0.9732
+140886 PABPC5 poly(A) binding protein cytoplasmic 5 protein-coding 3.918 1.911
+140890 SREK1 splicing regulatory glutamic acid and lysine rich protein 1 protein-coding 10.17 0.593
+140894 CNBD2 cyclic nucleotide binding domain containing 2 protein-coding 1.45 0.9729
140901 STK35 serine/threonine kinase 35 protein-coding 10.05 0.6939
-140947 DCANP1 dendritic cell associated nuclear protein protein-coding 3.177 1.846
-141 ADPRH ADP-ribosylarginine hydrolase protein-coding 7.737 1.007
+140947 DCANP1 dendritic cell associated nuclear protein protein-coding 3.179 1.848
+141 ADPRH ADP-ribosylarginine hydrolase protein-coding 7.738 1.007
1410 CRYAB crystallin alpha B protein-coding 9.545 3.103
-1414 CRYBB1 crystallin beta B1 protein-coding 2.657 1.605
+1414 CRYBB1 crystallin beta B1 protein-coding 2.657 1.604
1415 CRYBB2 crystallin beta B2 protein-coding 1.753 1.22
142 PARP1 poly(ADP-ribose) polymerase 1 protein-coding 11.87 0.7329
-142678 MIB2 mindbomb E3 ubiquitin protein ligase 2 protein-coding 9.141 0.8893
-142679 DUSP19 dual specificity phosphatase 19 protein-coding 6.195 0.9488
-142680 SLC34A3 solute carrier family 34 member 3 protein-coding 2.744 1.549
-142684 RAB40A RAB40A, member RAS oncogene family protein-coding 2.77 1.294
-142686 ASB14 ankyrin repeat and SOCS box containing 14 protein-coding 3.135 0.8648
-142689 ASB12 ankyrin repeat and SOCS box containing 12 protein-coding 1.842 1.341
+142678 MIB2 mindbomb E3 ubiquitin protein ligase 2 protein-coding 9.141 0.889
+142679 DUSP19 dual specificity phosphatase 19 protein-coding 6.196 0.9487
+142680 SLC34A3 solute carrier family 34 member 3 protein-coding 2.745 1.549
+142684 RAB40A RAB40A, member RAS oncogene family protein-coding 2.771 1.294
+142686 ASB14 ankyrin repeat and SOCS box containing 14 protein-coding 3.136 0.8649
+142689 ASB12 ankyrin repeat and SOCS box containing 12 protein-coding 1.843 1.341
1427 CRYGS crystallin gamma S protein-coding 4.151 1.321
-1428 CRYM crystallin mu protein-coding 5.158 3.151
-142891 SAMD8 sterile alpha motif domain containing 8 protein-coding 6.418 1.026
-1429 CRYZ crystallin zeta protein-coding 9.644 1.296
-142913 CFL1P1 cofilin 1 pseudogene 1 pseudo 1.244 0.8793
-142940 TRUB1 TruB pseudouridine synthase family member 1 protein-coding 8.883 0.7044
-143 PARP4 poly(ADP-ribose) polymerase family member 4 protein-coding 10.72 0.8957
-143098 MPP7 membrane palmitoylated protein 7 protein-coding 7.947 2.143
-1431 CS citrate synthase protein-coding 11.81 0.5359
-143187 VTI1A vesicle transport through interaction with t-SNAREs 1A protein-coding 8.494 0.4437
-1432 MAPK14 mitogen-activated protein kinase 14 protein-coding 10.37 0.5343
-143244 EIF5AL1 eukaryotic translation initiation factor 5A-like 1 protein-coding 10.63 0.728
-143279 HECTD2 HECT domain E3 ubiquitin protein ligase 2 protein-coding 7.521 1.117
-143282 FGFBP3 fibroblast growth factor binding protein 3 protein-coding 5.37 1.524
-143384 CACUL1 CDK2 associated cullin domain 1 protein-coding 10.27 0.5449
-1434 CSE1L chromosome segregation 1 like protein-coding 11.21 0.7336
-143458 LDLRAD3 low density lipoprotein receptor class A domain containing 3 protein-coding 7.843 1.799
-1435 CSF1 colony stimulating factor 1 protein-coding 8.724 1.309
-143570 XRRA1 X-ray radiation resistance associated 1 protein-coding 8.678 0.6734
+1428 CRYM crystallin mu protein-coding 5.159 3.151
+142891 SAMD8 sterile alpha motif domain containing 8 protein-coding 6.419 1.026
+1429 CRYZ crystallin zeta protein-coding 9.644 1.295
+142913 CFL1P1 cofilin 1 pseudogene 1 pseudo 1.244 0.8791
+142940 TRUB1 TruB pseudouridine synthase family member 1 protein-coding 8.883 0.704
+143 PARP4 poly(ADP-ribose) polymerase family member 4 protein-coding 10.72 0.8955
+143098 MPP7 membrane palmitoylated protein 7 protein-coding 7.948 2.142
+1431 CS citrate synthase protein-coding 11.81 0.5358
+143187 VTI1A vesicle transport through interaction with t-SNAREs 1A protein-coding 8.494 0.4438
+1432 MAPK14 mitogen-activated protein kinase 14 protein-coding 10.37 0.5342
+143244 EIF5AL1 eukaryotic translation initiation factor 5A-like 1 protein-coding 10.63 0.7281
+143279 HECTD2 HECT domain E3 ubiquitin protein ligase 2 protein-coding 7.522 1.117
+143282 FGFBP3 fibroblast growth factor binding protein 3 protein-coding 5.371 1.524
+143384 CACUL1 CDK2 associated cullin domain 1 protein-coding 10.27 0.5447
+1434 CSE1L chromosome segregation 1 like protein-coding 11.21 0.7337
+143458 LDLRAD3 low density lipoprotein receptor class A domain containing 3 protein-coding 7.843 1.798
+1435 CSF1 colony stimulating factor 1 protein-coding 8.725 1.309
+143570 XRRA1 X-ray radiation resistance associated 1 protein-coding 8.678 0.6733
1436 CSF1R colony stimulating factor 1 receptor protein-coding 9.639 1.574
143630 UBQLNL ubiquilin like protein-coding 2.925 1.291
-143666 LOC143666 uncharacterized LOC143666 ncRNA 4.719 1.237
-143684 FAM76B family with sequence similarity 76 member B protein-coding 8.132 0.6675
-143686 SESN3 sestrin 3 protein-coding 6.665 1.851
-143689 PIWIL4 piwi like RNA-mediated gene silencing 4 protein-coding 5.147 1.591
-1438 CSF2RA colony stimulating factor 2 receptor alpha subunit protein-coding 6.62 1.649
-143872 ARHGAP42 Rho GTPase activating protein 42 protein-coding 7.201 1.379
-143879 KBTBD3 kelch repeat and BTB domain containing 3 protein-coding 6.501 0.8457
-143884 CWF19L2 CWF19 like 2, cell cycle control (S. pombe) protein-coding 8.2 0.6398
+143666 LOC143666 uncharacterized LOC143666 ncRNA 4.719 1.236
+143684 FAM76B family with sequence similarity 76 member B protein-coding 8.132 0.6674
+143686 SESN3 sestrin 3 protein-coding 6.666 1.85
+143689 PIWIL4 piwi like RNA-mediated gene silencing 4 protein-coding 5.148 1.591
+1438 CSF2RA colony stimulating factor 2 receptor alpha subunit protein-coding 6.621 1.649
+143872 ARHGAP42 Rho GTPase activating protein 42 protein-coding 7.202 1.378
+143879 KBTBD3 kelch repeat and BTB domain containing 3 protein-coding 6.501 0.8456
+143884 CWF19L2 CWF19 like 2, cell cycle control (S. pombe) protein-coding 8.201 0.6397
143888 KDELC2 KDEL motif containing 2 protein-coding 9.656 1.014
-1439 CSF2RB colony stimulating factor 2 receptor beta common subunit protein-coding 7.355 1.67
-143903 LAYN layilin protein-coding 6.996 1.473
-143941 TTC36 tetratricopeptide repeat domain 36 protein-coding 1.526 1.995
+1439 CSF2RB colony stimulating factor 2 receptor beta common subunit protein-coding 7.356 1.671
+143903 LAYN layilin protein-coding 6.997 1.472
+143941 TTC36 tetratricopeptide repeat domain 36 protein-coding 1.526 1.994
1440 CSF3 colony stimulating factor 3 protein-coding 2.717 2.732
-144097 SPINDOC spindlin interactor and repressor of chromatin binding protein-coding 8.891 0.8262
-1441 CSF3R colony stimulating factor 3 receptor protein-coding 7.189 1.764
-144100 PLEKHA7 pleckstrin homology domain containing A7 protein-coding 8.423 1.405
-144108 SPTY2D1 SPT2 chromatin protein domain containing 1 protein-coding 9.47 0.703
+144097 SPINDOC spindlin interactor and repressor of chromatin binding protein-coding 8.891 0.8258
+1441 CSF3R colony stimulating factor 3 receptor protein-coding 7.19 1.765
+144100 PLEKHA7 pleckstrin homology domain containing A7 protein-coding 8.424 1.405
+144108 SPTY2D1 SPT2 chromatin protein domain containing 1 protein-coding 9.47 0.7028
144110 TMEM86A transmembrane protein 86A protein-coding 7.595 1.095
-144132 DNHD1 dynein heavy chain domain 1 protein-coding 7.071 1.098
-144165 PRICKLE1 prickle planar cell polarity protein 1 protein-coding 7.574 1.875
-144193 AMDHD1 amidohydrolase domain containing 1 protein-coding 3.694 2.369
-144195 SLC2A14 solute carrier family 2 member 14 protein-coding 4.069 1.648
-144233 BCDIN3D BCDIN3 domain containing RNA methyltransferase protein-coding 7.463 0.5826
-144245 ALG10B ALG10B, alpha-1,2-glucosyltransferase protein-coding 7.891 0.8701
-144321 GLIPR1L2 GLIPR1 like 2 protein-coding 3.622 1.513
+144132 DNHD1 dynein heavy chain domain 1 protein-coding 7.072 1.098
+144165 PRICKLE1 prickle planar cell polarity protein 1 protein-coding 7.575 1.875
+144193 AMDHD1 amidohydrolase domain containing 1 protein-coding 3.694 2.368
+144195 SLC2A14 solute carrier family 2 member 14 protein-coding 4.07 1.648
+144233 BCDIN3D BCDIN3 domain containing RNA methyltransferase protein-coding 7.463 0.5825
+144245 ALG10B ALG10B, alpha-1,2-glucosyltransferase protein-coding 7.892 0.8698
+144321 GLIPR1L2 GLIPR1 like 2 protein-coding 3.623 1.513
144347 RFLNA refilin A protein-coding 5.485 2.655
-144348 ZNF664 zinc finger protein 664 protein-coding 11.64 0.7177
-144363 ETFRF1 electron transfer flavoprotein regulatory factor 1 protein-coding 8.264 0.8924
-144402 CPNE8 copine 8 protein-coding 7.432 1.583
+144348 ZNF664 zinc finger protein 664 protein-coding 11.64 0.7174
+144363 ETFRF1 electron transfer flavoprotein regulatory factor 1 protein-coding 8.264 0.892
+144402 CPNE8 copine 8 protein-coding 7.433 1.583
144404 TMEM120B transmembrane protein 120B protein-coding 8.773 0.6623
-144406 WDR66 WD repeat domain 66 protein-coding 6.195 2.413
-144423 GLT1D1 glycosyltransferase 1 domain containing 1 protein-coding 3.946 2.322
-144453 BEST3 bestrophin 3 protein-coding 2.395 2.69
-144455 E2F7 E2F transcription factor 7 protein-coding 6.154 2.165
+144406 WDR66 WD repeat domain 66 protein-coding 6.194 2.412
+144423 GLT1D1 glycosyltransferase 1 domain containing 1 protein-coding 3.947 2.321
+144453 BEST3 bestrophin 3 protein-coding 2.394 2.689
+144455 E2F7 E2F transcription factor 7 protein-coding 6.152 2.165
144486 CEP83-DT CEP83 divergent transcript ncRNA 3.463 1.035
-1445 CSK C-terminal Src kinase protein-coding 10.68 0.6574
-144501 KRT80 keratin 80 protein-coding 7.636 3.236
-144568 A2ML1 alpha-2-macroglobulin like 1 protein-coding 3.979 4.148
-144571 A2M-AS1 A2M antisense RNA 1 ncRNA 4.797 1.229
-144577 C12orf66 chromosome 12 open reading frame 66 protein-coding 6.785 0.7383
+1445 CSK C-terminal Src kinase protein-coding 10.68 0.6575
+144501 KRT80 keratin 80 protein-coding 7.635 3.236
+144568 A2ML1 alpha-2-macroglobulin like 1 protein-coding 3.978 4.146
+144571 A2M-AS1 A2M antisense RNA 1 ncRNA 4.798 1.229
+144577 C12orf66 chromosome 12 open reading frame 66 protein-coding 6.785 0.7381
144608 C12orf60 chromosome 12 open reading frame 60 protein-coding 4.548 1.037
-144699 FBXL14 F-box and leucine rich repeat protein 14 protein-coding 9.41 0.6488
-144715 RAD9B RAD9 checkpoint clamp component B protein-coding 4.79 0.7642
-144717 PHETA1 PH domain containing endocytic trafficking adaptor 1 protein-coding 8.709 0.8764
-144811 LACC1 laccase domain containing 1 protein-coding 7.633 1.003
-144983 HNRNPA1L2 heterogeneous nuclear ribonucleoprotein A1-like 2 protein-coding 11.21 0.5548
-145165 ST13P4 ST13, Hsp70 interacting protein pseudogene 4 pseudo 8.314 0.5478
-145173 B3GLCT beta 3-glucosyltransferase protein-coding 8.091 0.8469
-1452 CSNK1A1 casein kinase 1 alpha 1 protein-coding 12.28 0.5603
+144699 FBXL14 F-box and leucine rich repeat protein 14 protein-coding 9.41 0.6486
+144715 RAD9B RAD9 checkpoint clamp component B protein-coding 4.791 0.7641
+144717 PHETA1 PH domain containing endocytic trafficking adaptor 1 protein-coding 8.709 0.8762
+144811 LACC1 laccase domain containing 1 protein-coding 7.633 1.002
+144983 HNRNPA1L2 heterogeneous nuclear ribonucleoprotein A1-like 2 protein-coding 11.21 0.5547
+145165 ST13P4 ST13, Hsp70 interacting protein pseudogene 4 pseudo 8.314 0.5476
+145173 B3GLCT beta 3-glucosyltransferase protein-coding 8.091 0.8467
+1452 CSNK1A1 casein kinase 1 alpha 1 protein-coding 12.28 0.5601
145200 LINC00239 long intergenic non-protein coding RNA 239 ncRNA 2.266 1.553
-145226 RDH12 retinol dehydrogenase 12 protein-coding 3.481 2.17
+145226 RDH12 retinol dehydrogenase 12 protein-coding 3.482 2.169
145282 MIPOL1 mirror-image polydactyly 1 protein-coding 6.083 1.414
-1453 CSNK1D casein kinase 1 delta protein-coding 11.82 0.424
-145376 PPP1R36 protein phosphatase 1 regulatory subunit 36 protein-coding 3.291 1.84
-145389 SLC38A6 solute carrier family 38 member 6 protein-coding 7.255 0.7363
-1454 CSNK1E casein kinase 1 epsilon protein-coding 11.13 0.6859
+1453 CSNK1D casein kinase 1 delta protein-coding 11.82 0.4238
+145376 PPP1R36 protein phosphatase 1 regulatory subunit 36 protein-coding 3.292 1.841
+145389 SLC38A6 solute carrier family 38 member 6 protein-coding 7.255 0.7366
+1454 CSNK1E casein kinase 1 epsilon protein-coding 11.13 0.6855
145407 ARMH4 armadillo-like helical domain containing 4 protein-coding 5.949 1.626
145447 ABHD12B abhydrolase domain containing 12B protein-coding 2.045 2.062
-145482 PTGR2 prostaglandin reductase 2 protein-coding 8.181 0.9375
-145483 FAM161B family with sequence similarity 161 member B protein-coding 6.12 1.314
-1455 CSNK1G2 casein kinase 1 gamma 2 protein-coding 10.37 0.6009
+145482 PTGR2 prostaglandin reductase 2 protein-coding 8.181 0.9373
+145483 FAM161B family with sequence similarity 161 member B protein-coding 6.12 1.313
+1455 CSNK1G2 casein kinase 1 gamma 2 protein-coding 10.37 0.6007
145501 ISM2 isthmin 2 protein-coding 2.495 2.1
-145508 CEP128 centrosomal protein 128 protein-coding 6.42 1.014
-145553 MDP1 magnesium dependent phosphatase 1 protein-coding 7.547 0.7305
-145567 TTC7B tetratricopeptide repeat domain 7B protein-coding 8.518 1.106
-1456 CSNK1G3 casein kinase 1 gamma 3 protein-coding 9.247 0.5341
-1457 CSNK2A1 casein kinase 2 alpha 1 protein-coding 10.34 0.558
-145748 LYSMD4 LysM domain containing 4 protein-coding 7.639 0.8476
-145773 FAM81A family with sequence similarity 81 member A protein-coding 5.834 1.756
-145781 GCOM1 GRINL1A complex locus 1 protein-coding 6.152 2.13
-145783 LOC145783 uncharacterized LOC145783 ncRNA 5.099 0.9697
-145837 DRAIC downregulated RNA in cancer, inhibitor of cell invasion and migration ncRNA 3.608 2.721
-145853 C15orf61 chromosome 15 open reading frame 61 protein-coding 6.987 0.721
+145508 CEP128 centrosomal protein 128 protein-coding 6.42 1.013
+145553 MDP1 magnesium dependent phosphatase 1 protein-coding 7.547 0.7303
+145567 TTC7B tetratricopeptide repeat domain 7B protein-coding 8.519 1.106
+1456 CSNK1G3 casein kinase 1 gamma 3 protein-coding 9.247 0.5339
+1457 CSNK2A1 casein kinase 2 alpha 1 protein-coding 10.34 0.5578
+145748 LYSMD4 LysM domain containing 4 protein-coding 7.639 0.8472
+145773 FAM81A family with sequence similarity 81 member A protein-coding 5.834 1.755
+145781 GCOM1 GRINL1A complex locus 1 protein-coding 6.154 2.131
+145783 LOC145783 uncharacterized LOC145783 ncRNA 5.099 0.9693
+145837 DRAIC downregulated RNA in cancer, inhibitor of cell invasion and migration ncRNA 3.607 2.72
+145853 C15orf61 chromosome 15 open reading frame 61 protein-coding 6.987 0.7208
145864 HAPLN3 hyaluronan and proteoglycan link protein 3 protein-coding 7.841 1.826
-145873 MESP2 mesoderm posterior bHLH transcription factor 2 protein-coding 3.356 1.816
-1459 CSNK2A2 casein kinase 2 alpha 2 protein-coding 9.061 0.5678
-145957 NRG4 neuregulin 4 protein-coding 2.533 1.92
-146 ADRA1D adrenoceptor alpha 1D protein-coding 2.678 1.813
+145873 MESP2 mesoderm posterior bHLH transcription factor 2 protein-coding 3.355 1.816
+1459 CSNK2A2 casein kinase 2 alpha 2 protein-coding 9.061 0.5676
+145957 NRG4 neuregulin 4 protein-coding 2.534 1.92
+146 ADRA1D adrenoceptor alpha 1D protein-coding 2.68 1.814
1460 CSNK2B casein kinase 2 beta protein-coding 11.53 0.5501
-146050 ZSCAN29 zinc finger and SCAN domain containing 29 protein-coding 8.744 0.5688
-146057 TTBK2 tau tubulin kinase 2 protein-coding 6.293 1.264
+146050 ZSCAN29 zinc finger and SCAN domain containing 29 protein-coding 8.744 0.5686
+146057 TTBK2 tau tubulin kinase 2 protein-coding 6.294 1.264
146059 CDAN1 codanin 1 protein-coding 8.518 0.5884
-146177 VWA3A von Willebrand factor A domain containing 3A protein-coding 2.06 2.171
-146183 OTOA otoancorin protein-coding 3.526 1.438
-146198 ZFP90 ZFP90 zinc finger protein protein-coding 9.01 0.6719
+146177 VWA3A von Willebrand factor A domain containing 3A protein-coding 2.061 2.171
+146183 OTOA otoancorin protein-coding 3.526 1.439
+146198 ZFP90 ZFP90 zinc finger protein protein-coding 9.01 0.6717
1462 VCAN versican protein-coding 10.93 2.337
-146206 CARMIL2 capping protein regulator and myosin 1 linker 2 protein-coding 5.404 2.062
-146212 KCTD19 potassium channel tetramerization domain containing 19 protein-coding 1.541 1.336
-146223 CMTM4 CKLF like MARVEL transmembrane domain containing 4 protein-coding 10.12 1.3
-146225 CMTM2 CKLF like MARVEL transmembrane domain containing 2 protein-coding 2.129 1.2
+146206 CARMIL2 capping protein regulator and myosin 1 linker 2 protein-coding 5.405 2.062
+146212 KCTD19 potassium channel tetramerization domain containing 19 protein-coding 1.542 1.337
+146223 CMTM4 CKLF like MARVEL transmembrane domain containing 4 protein-coding 10.12 1.299
+146225 CMTM2 CKLF like MARVEL transmembrane domain containing 2 protein-coding 2.128 1.2
146227 BEAN1 brain expressed associated with NEDD4 1 protein-coding 4.486 1.973
146279 TEKT5 tektin 5 protein-coding 1.698 1.393
-146330 FBXL16 F-box and leucine rich repeat protein 16 protein-coding 7.298 2.572
-146395 GSG1L GSG1 like protein-coding 1.795 2.495
+146330 FBXL16 F-box and leucine rich repeat protein 16 protein-coding 7.299 2.572
+146395 GSG1L GSG1 like protein-coding 1.795 2.494
1464 CSPG4 chondroitin sulfate proteoglycan 4 protein-coding 9.403 1.818
-146433 IL34 interleukin 34 protein-coding 6.366 1.568
+146433 IL34 interleukin 34 protein-coding 6.367 1.568
146434 ZNF597 zinc finger protein 597 protein-coding 5.301 1.09
-146439 BICDL2 BICD family like cargo adaptor 2 protein-coding 6.86 3.425
-146456 TMED6 transmembrane p24 trafficking protein 6 protein-coding 3.175 1.997
-1465 CSRP1 cysteine and glycine rich protein 1 protein-coding 12.21 1.103
-146540 ZNF785 zinc finger protein 785 protein-coding 7.683 0.7823
-146542 ZNF688 zinc finger protein 688 protein-coding 7.847 0.8126
+146439 BICDL2 BICD family like cargo adaptor 2 protein-coding 6.861 3.425
+146456 TMED6 transmembrane p24 trafficking protein 6 protein-coding 3.176 1.997
+1465 CSRP1 cysteine and glycine rich protein 1 protein-coding 12.21 1.104
+146540 ZNF785 zinc finger protein 785 protein-coding 7.684 0.7821
+146542 ZNF688 zinc finger protein 688 protein-coding 7.847 0.8123
146547 PRSS36 serine protease 36 protein-coding 5.021 1.074
-146556 C16orf89 chromosome 16 open reading frame 89 protein-coding 5.232 3.596
-146562 C16orf71 chromosome 16 open reading frame 71 protein-coding 3.908 1.421
+146556 C16orf89 chromosome 16 open reading frame 89 protein-coding 5.234 3.597
+146562 C16orf71 chromosome 16 open reading frame 71 protein-coding 3.909 1.421
1466 CSRP2 cysteine and glycine rich protein 2 protein-coding 8.555 1.6
-146664 MGAT5B mannosyl (alpha-1,6-)-glycoprotein beta-1,6-N-acetyl-glucosaminyltransferase, isozyme B protein-coding 4.059 2.629
+146664 MGAT5B mannosyl (alpha-1,6-)-glycoprotein beta-1,6-N-acetyl-glucosaminyltransferase, isozyme B protein-coding 4.06 2.628
146691 TOM1L2 target of myb1 like 2 membrane trafficking protein protein-coding 10.41 1.007
-146705 TEPSIN TEPSIN, adaptor related protein complex 4 accessory protein protein-coding 8.626 0.7073
+146705 TEPSIN TEPSIN, adaptor related protein complex 4 accessory protein protein-coding 8.627 0.7072
146712 B3GNTL1 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase like 1 protein-coding 6.523 0.8733
-146713 RBFOX3 RNA binding fox-1 homolog 3 protein-coding 2.398 2.527
-146722 CD300LF CD300 molecule like family member f protein-coding 5.307 1.619
-146723 C17orf77 chromosome 17 open reading frame 77 protein-coding 0.5711 1.422
+146713 RBFOX3 RNA binding fox-1 homolog 3 protein-coding 2.4 2.528
+146722 CD300LF CD300 molecule like family member f protein-coding 5.308 1.621
+146723 C17orf77 chromosome 17 open reading frame 77 protein-coding 0.5707 1.421
146754 DNAH2 dynein axonemal heavy chain 2 protein-coding 4.573 2.455
-146760 RTN4RL1 reticulon 4 receptor like 1 protein-coding 5.758 2.442
-146771 TCAM1P testicular cell adhesion molecule 1, pseudogene pseudo 2.163 2.302
-146779 EFCAB3 EF-hand calcium binding domain 3 protein-coding 0.7111 0.8255
-1468 SLC25A10 solute carrier family 25 member 10 protein-coding 9.569 1.323
-146802 SLC47A2 solute carrier family 47 member 2 protein-coding 2.85 2.504
+146760 RTN4RL1 reticulon 4 receptor like 1 protein-coding 5.76 2.442
+146771 TCAM1P testicular cell adhesion molecule 1, pseudogene pseudo 2.162 2.301
+146779 EFCAB3 EF-hand calcium binding domain 3 protein-coding 0.7106 0.8253
+1468 SLC25A10 solute carrier family 25 member 10 protein-coding 9.568 1.323
+146802 SLC47A2 solute carrier family 47 member 2 protein-coding 2.849 2.503
146845 CFAP52 cilia and flagella associated protein 52 protein-coding 2.064 1.766
-146850 PIK3R6 phosphoinositide-3-kinase regulatory subunit 6 protein-coding 4.893 1.392
-146853 C17orf50 chromosome 17 open reading frame 50 protein-coding 1.14 1.121
+146850 PIK3R6 phosphoinositide-3-kinase regulatory subunit 6 protein-coding 4.894 1.393
+146853 C17orf50 chromosome 17 open reading frame 50 protein-coding 1.141 1.121
146857 SLFN13 schlafen family member 13 protein-coding 7.759 2.12
-146862 UNC45B unc-45 myosin chaperone B protein-coding 1.55 1.639
-146880 ARHGAP27P1 Rho GTPase activating protein 27 pseudogene 1 pseudo 8.428 0.9409
-146894 CD300LG CD300 molecule like family member g protein-coding 2.474 2.189
-146909 KIF18B kinesin family member 18B protein-coding 7.348 2.102
-146923 RUNDC1 RUN domain containing 1 protein-coding 9.239 0.6362
-146956 EME1 essential meiotic structure-specific endonuclease 1 protein-coding 5.966 1.539
-147007 TMEM199 transmembrane protein 199 protein-coding 8.925 0.4353
-147011 PROCA1 protein interacting with cyclin A1 protein-coding 4.638 1.28
-147015 DHRS13 dehydrogenase/reductase 13 protein-coding 8.221 1.127
-147040 KCTD11 potassium channel tetramerization domain containing 11 protein-coding 9.042 0.9827
-147081 LINC02210 long intergenic non-protein coding RNA 2210 ncRNA 5.84 1.145
-1471 CST3 cystatin C protein-coding 12.7 1.09
-147111 NOTUM notum, palmitoleoyl-protein carboxylesterase protein-coding 3.957 2.953
-147138 TMC8 transmembrane channel like 8 protein-coding 7.95 1.489
-147166 TRIM16L tripartite motif containing 16 like protein-coding 7.415 1.434
-147172 LRRC37BP1 leucine rich repeat containing 37B pseudogene 1 pseudo 8.734 0.6201
-147179 WIPF2 WAS/WASL interacting protein family member 2 protein-coding 10.06 0.7384
-147184 TMEM99 transmembrane protein 99 protein-coding 8.093 0.9169
-147339 C18orf25 chromosome 18 open reading frame 25 protein-coding 9.158 0.5831
-147372 CCBE1 collagen and calcium binding EGF domains 1 protein-coding 2.921 2.235
-147381 CBLN2 cerebellin 2 precursor protein-coding 2.336 2.491
-1474 CST6 cystatin E/M protein-coding 4.453 3.286
+146862 UNC45B unc-45 myosin chaperone B protein-coding 1.551 1.64
+146880 ARHGAP27P1 Rho GTPase activating protein 27 pseudogene 1 pseudo 8.429 0.9411
+146894 CD300LG CD300 molecule like family member g protein-coding 2.477 2.191
+146909 KIF18B kinesin family member 18B protein-coding 7.346 2.103
+146923 RUNDC1 RUN domain containing 1 protein-coding 9.239 0.6361
+146956 EME1 essential meiotic structure-specific endonuclease 1 protein-coding 5.964 1.54
+147007 TMEM199 transmembrane protein 199 protein-coding 8.924 0.4353
+147011 PROCA1 protein interacting with cyclin A1 protein-coding 4.639 1.28
+147015 DHRS13 dehydrogenase/reductase 13 protein-coding 8.22 1.127
+147040 KCTD11 potassium channel tetramerization domain containing 11 protein-coding 9.042 0.9823
+147081 LINC02210 long intergenic non-protein coding RNA 2210 ncRNA 5.841 1.144
+1471 CST3 cystatin C protein-coding 12.71 1.089
+147111 NOTUM notum, palmitoleoyl-protein carboxylesterase protein-coding 3.955 2.952
+147138 TMC8 transmembrane channel like 8 protein-coding 7.951 1.489
+147166 TRIM16L tripartite motif containing 16 like protein-coding 7.414 1.434
+147172 LRRC37BP1 leucine rich repeat containing 37B pseudogene 1 pseudo 8.734 0.6198
+147179 WIPF2 WAS/WASL interacting protein family member 2 protein-coding 10.06 0.7381
+147184 TMEM99 transmembrane protein 99 protein-coding 8.093 0.9168
+147339 C18orf25 chromosome 18 open reading frame 25 protein-coding 9.159 0.5828
+147372 CCBE1 collagen and calcium binding EGF domains 1 protein-coding 2.923 2.235
+147381 CBLN2 cerebellin 2 precursor protein-coding 2.336 2.49
+1474 CST6 cystatin E/M protein-coding 4.454 3.285
147407 SLC25A52 solute carrier family 25 member 52 protein-coding 2.637 0.7509
-147463 ANKRD29 ankyrin repeat domain 29 protein-coding 5.784 2.056
-147495 APCDD1 APC down-regulated 1 protein-coding 8.78 2.069
-1475 CSTA cystatin A protein-coding 6.824 3.158
+147463 ANKRD29 ankyrin repeat domain 29 protein-coding 5.786 2.056
+147495 APCDD1 APC down-regulated 1 protein-coding 8.781 2.069
+1475 CSTA cystatin A protein-coding 6.824 3.157
147525 LINC00526 long intergenic non-protein coding RNA 526 ncRNA 5.7 1.241
1476 CSTB cystatin B protein-coding 12.01 1.268
147645 VSIG10L V-set and immunoglobulin domain containing 10 like protein-coding 6.346 1.635
-147650 SPACA6 sperm acrosome associated 6 protein-coding 5.608 1.458
-147657 ZNF480 zinc finger protein 480 protein-coding 8.463 0.7633
-147658 ZNF534 zinc finger protein 534 protein-coding 2.899 1.07
-147660 ZNF578 zinc finger protein 578 protein-coding 4.908 2
-147685 C19orf18 chromosome 19 open reading frame 18 protein-coding 3.002 1.477
-147686 ZNF418 zinc finger protein 418 protein-coding 5.42 1.922
-147687 ZNF417 zinc finger protein 417 protein-coding 7.055 0.8466
-147694 ZNF548 zinc finger protein 548 protein-coding 7.86 0.7184
+147650 SPACA6 sperm acrosome associated 6 protein-coding 5.609 1.458
+147657 ZNF480 zinc finger protein 480 protein-coding 8.463 0.763
+147658 ZNF534 zinc finger protein 534 protein-coding 2.9 1.07
+147660 ZNF578 zinc finger protein 578 protein-coding 4.91 2
+147685 C19orf18 chromosome 19 open reading frame 18 protein-coding 3.003 1.477
+147686 ZNF418 zinc finger protein 418 protein-coding 5.422 1.922
+147687 ZNF417 zinc finger protein 417 protein-coding 7.056 0.8467
+147694 ZNF548 zinc finger protein 548 protein-coding 7.861 0.7184
147699 PPM1N protein phosphatase, Mg2+/Mn2+ dependent 1N (putative) protein-coding 4.057 1.674
-1477 CSTF1 cleavage stimulation factor subunit 1 protein-coding 9.357 0.4533
-147700 KLC3 kinesin light chain 3 protein-coding 5.812 2.431
-147727 ILF3-DT ILF3 divergent tranacript ncRNA 8.881 0.9457
-147746 HIPK4 homeodomain interacting protein kinase 4 protein-coding 2.006 1.165
-147798 TMC4 transmembrane channel like 4 protein-coding 8.841 2.949
-1478 CSTF2 cleavage stimulation factor subunit 2 protein-coding 8.569 0.7369
-147804 TPM3P9 tropomyosin 3 pseudogene 9 pseudo 7.085 1.111
-147807 ZNF524 zinc finger protein 524 protein-coding 8.243 0.8851
-147808 ZNF784 zinc finger protein 784 protein-coding 7.377 0.7246
-147837 ZNF563 zinc finger protein 563 protein-coding 5.895 1.065
-147841 SPC24 SPC24, NDC80 kinetochore complex component protein-coding 4.3 1.799
+1477 CSTF1 cleavage stimulation factor subunit 1 protein-coding 9.357 0.4532
+147700 KLC3 kinesin light chain 3 protein-coding 5.811 2.431
+147727 ILF3-DT ILF3 divergent tranacript ncRNA 8.882 0.9457
+147746 HIPK4 homeodomain interacting protein kinase 4 protein-coding 2.007 1.164
+147798 TMC4 transmembrane channel like 4 protein-coding 8.842 2.949
+1478 CSTF2 cleavage stimulation factor subunit 2 protein-coding 8.568 0.7369
+147804 TPM3P9 tropomyosin 3 pseudogene 9 pseudo 7.086 1.111
+147807 ZNF524 zinc finger protein 524 protein-coding 8.244 0.8848
+147808 ZNF784 zinc finger protein 784 protein-coding 7.378 0.7244
+147837 ZNF563 zinc finger protein 563 protein-coding 5.896 1.065
+147841 SPC24 SPC24, NDC80 kinetochore complex component protein-coding 4.298 1.8
147872 CCDC155 coiled-coil domain containing 155 protein-coding 0.9684 1.471
1479 CSTF3 cleavage stimulation factor subunit 3 protein-coding 9.331 0.4691
-147906 DACT3 dishevelled binding antagonist of beta catenin 3 protein-coding 6.664 1.893
+147906 DACT3 dishevelled binding antagonist of beta catenin 3 protein-coding 6.665 1.893
147912 SIX5 SIX homeobox 5 protein-coding 8.948 1.086
-147923 ZNF420 zinc finger protein 420 protein-coding 6.689 1.109
-147929 ZNF565 zinc finger protein 565 protein-coding 5.973 0.6
-147947 ZNF542P zinc finger protein 542, pseudogene pseudo 7.659 1.67
-147948 ZNF582 zinc finger protein 582 protein-coding 4.824 1.618
+147923 ZNF420 zinc finger protein 420 protein-coding 6.69 1.109
+147929 ZNF565 zinc finger protein 565 protein-coding 5.974 0.5998
+147947 ZNF542P zinc finger protein 542, pseudogene pseudo 7.66 1.67
+147948 ZNF582 zinc finger protein 582 protein-coding 4.825 1.618
147949 ZNF583 zinc finger protein 583 protein-coding 5.686 1.275
-147965 FAM98C family with sequence similarity 98 member C protein-coding 8.018 0.6991
-147968 CAPN12 calpain 12 protein-coding 7.185 1.855
-147991 DPY19L3 dpy-19 like C-mannosyltransferase 3 protein-coding 8.061 1.279
-148022 TICAM1 toll like receptor adaptor molecule 1 protein-coding 9.186 0.8028
-148046 CIRBP-AS1 CIRBP antisense RNA 1 ncRNA 4.332 0.9111
-148103 ZNF599 zinc finger protein 599 protein-coding 6.464 0.871
-148113 CILP2 cartilage intermediate layer protein 2 protein-coding 5.542 2.444
-148137 PROSER3 proline and serine rich 3 protein-coding 6.361 0.919
-148156 ZNF558 zinc finger protein 558 protein-coding 8.381 0.8013
-148189 LINC00662 long intergenic non-protein coding RNA 662 ncRNA 5.68 1.007
+147965 FAM98C family with sequence similarity 98 member C protein-coding 8.018 0.699
+147968 CAPN12 calpain 12 protein-coding 7.185 1.854
+147991 DPY19L3 dpy-19 like C-mannosyltransferase 3 protein-coding 8.062 1.279
+148022 TICAM1 toll like receptor adaptor molecule 1 protein-coding 9.186 0.8025
+148046 CIRBP-AS1 CIRBP antisense RNA 1 ncRNA 4.331 0.9111
+148103 ZNF599 zinc finger protein 599 protein-coding 6.465 0.8709
+148113 CILP2 cartilage intermediate layer protein 2 protein-coding 5.543 2.443
+148137 PROSER3 proline and serine rich 3 protein-coding 6.361 0.9188
+148156 ZNF558 zinc finger protein 558 protein-coding 8.381 0.801
+148189 LINC00662 long intergenic non-protein coding RNA 662 ncRNA 5.681 1.007
148198 ZNF98 zinc finger protein 98 protein-coding 2.1 1.946
148203 ZNF738 zinc finger protein 738 protein-coding 7.303 1.229
148206 ZNF714 zinc finger protein 714 protein-coding 7.068 1.453
-148213 ZNF681 zinc finger protein 681 protein-coding 6.275 1.697
-148223 C19orf25 chromosome 19 open reading frame 25 protein-coding 9.014 0.7672
+148213 ZNF681 zinc finger protein 681 protein-coding 6.276 1.696
+148223 C19orf25 chromosome 19 open reading frame 25 protein-coding 9.014 0.7671
148229 ATP8B3 ATPase phospholipid transporting 8B3 protein-coding 5.196 1.64
-148252 DIRAS1 DIRAS family GTPase 1 protein-coding 5.877 2.86
-148254 ZNF555 zinc finger protein 555 protein-coding 6.13 0.6303
-148266 ZNF569 zinc finger protein 569 protein-coding 6.597 1.311
-148268 ZNF570 zinc finger protein 570 protein-coding 5.399 1.188
-148281 SYT6 synaptotagmin 6 protein-coding 2.819 2.401
-148304 C1orf74 chromosome 1 open reading frame 74 protein-coding 6.554 1.004
-148327 CREB3L4 cAMP responsive element binding protein 3 like 4 protein-coding 8.792 1.6
-148345 C1orf127 chromosome 1 open reading frame 127 protein-coding 2.602 1.502
+148252 DIRAS1 DIRAS family GTPase 1 protein-coding 5.878 2.86
+148254 ZNF555 zinc finger protein 555 protein-coding 6.13 0.6301
+148266 ZNF569 zinc finger protein 569 protein-coding 6.598 1.31
+148268 ZNF570 zinc finger protein 570 protein-coding 5.4 1.188
+148281 SYT6 synaptotagmin 6 protein-coding 2.821 2.401
+148304 C1orf74 chromosome 1 open reading frame 74 protein-coding 6.553 1.004
+148327 CREB3L4 cAMP responsive element binding protein 3 like 4 protein-coding 8.793 1.601
+148345 C1orf127 chromosome 1 open reading frame 127 protein-coding 2.604 1.504
148362 BROX BRO1 domain and CAAX motif containing protein-coding 7.971 1.12
-148398 SAMD11 sterile alpha motif domain containing 11 protein-coding 5.917 2.392
-148413 LOC148413 uncharacterized LOC148413 ncRNA 8.635 0.6073
-148418 SAMD13 sterile alpha motif domain containing 13 protein-coding 4.908 1.767
-148423 C1orf52 chromosome 1 open reading frame 52 protein-coding 8.249 0.5818
-148479 PHF13 PHD finger protein 13 protein-coding 9.272 0.6263
+148398 SAMD11 sterile alpha motif domain containing 11 protein-coding 5.919 2.393
+148413 LOC148413 uncharacterized LOC148413 ncRNA 8.635 0.6072
+148418 SAMD13 sterile alpha motif domain containing 13 protein-coding 4.909 1.766
+148423 C1orf52 chromosome 1 open reading frame 52 protein-coding 8.249 0.5816
+148479 PHF13 PHD finger protein 13 protein-coding 9.272 0.626
148523 CIART circadian associated repressor of transcription protein-coding 6.795 1.607
148534 TMEM56 transmembrane protein 56 protein-coding 7.788 1.896
-1486 CTBS chitobiase protein-coding 8.797 0.8393
-148641 SLC35F3 solute carrier family 35 member F3 protein-coding 4.049 2.483
-148696 LOC148696 uncharacterized LOC148696 ncRNA 1.298 1.289
-1487 CTBP1 C-terminal binding protein 1 protein-coding 11.49 0.5161
-148709 LOC148709 actin gamma 1 pseudogene pseudo 3.357 1.668
-148713 PTPRVP protein tyrosine phosphatase, receptor type V, pseudogene pseudo 1.401 1.075
-148741 ANKRD35 ankyrin repeat domain 35 protein-coding 5.559 2.184
-148789 B3GALNT2 beta-1,3-N-acetylgalactosaminyltransferase 2 protein-coding 9.348 0.7962
+1486 CTBS chitobiase protein-coding 8.798 0.8391
+148641 SLC35F3 solute carrier family 35 member F3 protein-coding 4.05 2.483
+148696 LOC148696 uncharacterized LOC148696 ncRNA 1.299 1.288
+1487 CTBP1 C-terminal binding protein 1 protein-coding 11.49 0.5159
+148709 LOC148709 actin gamma 1 pseudogene pseudo 3.356 1.668
+148713 PTPRVP protein tyrosine phosphatase, receptor type V, pseudogene pseudo 1.401 1.074
+148741 ANKRD35 ankyrin repeat domain 35 protein-coding 5.561 2.183
+148789 B3GALNT2 beta-1,3-N-acetylgalactosaminyltransferase 2 protein-coding 9.348 0.7961
1488 CTBP2 C-terminal binding protein 2 protein-coding 10.53 1.018
-148808 MFSD4A major facilitator superfamily domain containing 4A protein-coding 6.693 2.004
-148811 PM20D1 peptidase M20 domain containing 1 protein-coding 1.79 1.975
-148867 SLC30A7 solute carrier family 30 member 7 protein-coding 9.636 0.7085
-148898 ZNF436-AS1 ZNF436 antisense RNA 1 ncRNA 5.577 1.142
+148808 MFSD4A major facilitator superfamily domain containing 4A protein-coding 6.694 2.004
+148811 PM20D1 peptidase M20 domain containing 1 protein-coding 1.791 1.976
+148867 SLC30A7 solute carrier family 30 member 7 protein-coding 9.636 0.7082
+148898 ZNF436-AS1 ZNF436 antisense RNA 1 ncRNA 5.578 1.142
1489 CTF1 cardiotrophin 1 protein-coding 6.431 1.742
-148932 MOB3C MOB kinase activator 3C protein-coding 8.741 0.7268
-148979 GLIS1 GLIS family zinc finger 1 protein-coding 3.69 2.242
-1490 CTGF connective tissue growth factor protein-coding 11.23 1.644
-149041 RC3H1 ring finger and CCCH-type domains 1 protein-coding 9.41 0.5401
-149069 DCDC2B doublecortin domain containing 2B protein-coding 0.7348 1.186
-149076 ZNF362 zinc finger protein 362 protein-coding 9.513 0.7681
+148932 MOB3C MOB kinase activator 3C protein-coding 8.741 0.7266
+148979 GLIS1 GLIS family zinc finger 1 protein-coding 3.689 2.242
+1490 CTGF connective tissue growth factor protein-coding 11.23 1.645
+149041 RC3H1 ring finger and CCCH-type domains 1 protein-coding 9.41 0.5402
+149069 DCDC2B doublecortin domain containing 2B protein-coding 0.7354 1.186
+149076 ZNF362 zinc finger protein 362 protein-coding 9.513 0.7678
1491 CTH cystathionine gamma-lyase protein-coding 6.244 1.546
-149111 CNIH3 cornichon family AMPA receptor auxiliary protein 3 protein-coding 5.327 1.761
-149134 LINC01341 long intergenic non-protein coding RNA 1341 ncRNA 3.644 1.773
-149175 MANEAL mannosidase endo-alpha like protein-coding 8.186 1.58
-149233 IL23R interleukin 23 receptor protein-coding 0.9143 1.11
-149297 FAM78B family with sequence similarity 78 member B protein-coding 4.318 1.394
-1493 CTLA4 cytotoxic T-lymphocyte associated protein 4 protein-coding 4.516 2.044
-149345 SHISA4 shisa family member 4 protein-coding 7.872 1.573
-149371 EXOC8 exocyst complex component 8 protein-coding 8.698 0.5612
-149420 PDIK1L PDLIM1 interacting kinase 1 like protein-coding 8.327 0.7464
+149111 CNIH3 cornichon family AMPA receptor auxiliary protein 3 protein-coding 5.327 1.76
+149134 LINC01341 long intergenic non-protein coding RNA 1341 ncRNA 3.645 1.773
+149175 MANEAL mannosidase endo-alpha like protein-coding 8.185 1.58
+149233 IL23R interleukin 23 receptor protein-coding 0.9152 1.111
+149297 FAM78B family with sequence similarity 78 member B protein-coding 4.319 1.394
+1493 CTLA4 cytotoxic T-lymphocyte associated protein 4 protein-coding 4.517 2.045
+149345 SHISA4 shisa family member 4 protein-coding 7.872 1.572
+149371 EXOC8 exocyst complex component 8 protein-coding 8.698 0.561
+149420 PDIK1L PDLIM1 interacting kinase 1 like protein-coding 8.327 0.7463
149428 BNIPL BCL2 interacting protein like protein-coding 5.152 2.94
-149465 CFAP57 cilia and flagella associated protein 57 protein-coding 2.064 1.605
-149466 C1orf210 chromosome 1 open reading frame 210 protein-coding 6.562 3.033
+149465 CFAP57 cilia and flagella associated protein 57 protein-coding 2.065 1.605
+149466 C1orf210 chromosome 1 open reading frame 210 protein-coding 6.562 3.034
149473 CCDC24 coiled-coil domain containing 24 protein-coding 7.676 1.076
-149478 BTBD19 BTB domain containing 19 protein-coding 4.047 1.466
-149483 CCDC17 coiled-coil domain containing 17 protein-coding 3.581 1.508
-1495 CTNNA1 catenin alpha 1 protein-coding 12.96 0.5958
-149603 RNF187 ring finger protein 187 protein-coding 11.73 0.6197
-149628 PYHIN1 pyrin and HIN domain family member 1 protein-coding 3.858 2.003
-1497 CTNS cystinosin, lysosomal cystine transporter protein-coding 8.625 0.6385
-149837 LINC00654 long intergenic non-protein coding RNA 654 ncRNA 4.866 1.597
-149840 C20orf196 chromosome 20 open reading frame 196 protein-coding 6.284 0.8297
-1499 CTNNB1 catenin beta 1 protein-coding 12.9 0.7232
-149951 COMMD7 COMM domain containing 7 protein-coding 10.16 0.6272
-149986 LSM14B LSM family member 14B protein-coding 10.23 0.5442
-15 AANAT aralkylamine N-acetyltransferase protein-coding 0.8158 0.8407
-150 ADRA2A adrenoceptor alpha 2A protein-coding 6.507 2.223
-1500 CTNND1 catenin delta 1 protein-coding 12.67 0.7775
+149478 BTBD19 BTB domain containing 19 protein-coding 4.048 1.467
+149483 CCDC17 coiled-coil domain containing 17 protein-coding 3.582 1.508
+1495 CTNNA1 catenin alpha 1 protein-coding 12.96 0.5959
+149603 RNF187 ring finger protein 187 protein-coding 11.73 0.6198
+149628 PYHIN1 pyrin and HIN domain family member 1 protein-coding 3.86 2.004
+1497 CTNS cystinosin, lysosomal cystine transporter protein-coding 8.626 0.6386
+149837 LINC00654 long intergenic non-protein coding RNA 654 ncRNA 4.867 1.597
+149840 C20orf196 chromosome 20 open reading frame 196 protein-coding 6.284 0.8294
+1499 CTNNB1 catenin beta 1 protein-coding 12.9 0.7231
+149951 COMMD7 COMM domain containing 7 protein-coding 10.16 0.627
+149986 LSM14B LSM family member 14B protein-coding 10.23 0.5441
+15 AANAT aralkylamine N-acetyltransferase protein-coding 0.8161 0.8407
+150 ADRA2A adrenoceptor alpha 2A protein-coding 6.509 2.224
+1500 CTNND1 catenin delta 1 protein-coding 12.67 0.7774
150000 ABCC13 ATP binding cassette subfamily C member 13 (pseudogene) pseudo 1.022 1.673
-150082 LCA5L LCA5L, lebercilin like protein-coding 5.291 1.088
+150082 LCA5L LCA5L, lebercilin like protein-coding 5.292 1.088
150094 SIK1 salt inducible kinase 1 protein-coding 10.36 1.485
150142 ZNF295-AS1 ZNF295 antisense RNA 1 ncRNA 0.9858 1.382
-150147 UMODL1-AS1 UMODL1 antisense RNA 1 ncRNA 1.045 1.514
-150159 SLC9B1 solute carrier family 9 member B1 protein-coding 2.297 1.155
+150147 UMODL1-AS1 UMODL1 antisense RNA 1 ncRNA 1.045 1.513
+150159 SLC9B1 solute carrier family 9 member B1 protein-coding 2.298 1.155
150197 LINC00896 long intergenic non-protein coding RNA 896 ncRNA 2.388 1.667
-150209 AIFM3 apoptosis inducing factor, mitochondria associated 3 protein-coding 4.987 1.896
-150221 RIMBP3C RIMS binding protein 3C protein-coding 2.106 1.151
-150223 YDJC YdjC chitooligosaccharide deacetylase homolog protein-coding 8.55 1.119
-150244 ZDHHC8P1 zinc finger DHHC-type containing 8 pseudogene 1 pseudo 4.537 2.364
+150209 AIFM3 apoptosis inducing factor, mitochondria associated 3 protein-coding 4.987 1.895
+150221 RIMBP3C RIMS binding protein 3C protein-coding 2.107 1.151
+150223 YDJC YdjC chitooligosaccharide deacetylase homolog protein-coding 8.549 1.118
+150244 ZDHHC8P1 zinc finger DHHC-type containing 8 pseudogene 1 pseudo 4.539 2.363
150248 C22orf15 chromosome 22 open reading frame 15 protein-coding 1.702 1.459
-150274 HSCB HscB mitochondrial iron-sulfur cluster cochaperone protein-coding 7.866 0.6744
-150275 CCDC117 coiled-coil domain containing 117 protein-coding 9.474 0.7646
-150290 DUSP18 dual specificity phosphatase 18 protein-coding 6.861 0.9059
-150291 MORC2-AS1 MORC2 antisense RNA 1 ncRNA 7.02 0.7601
-1503 CTPS1 CTP synthase 1 protein-coding 9.501 0.9547
-150353 DNAJB7 DnaJ heat shock protein family (Hsp40) member B7 protein-coding 1.753 0.9082
-150356 CHADL chondroadherin like protein-coding 6.047 1.818
+150274 HSCB HscB mitochondrial iron-sulfur cluster cochaperone protein-coding 7.865 0.6741
+150275 CCDC117 coiled-coil domain containing 117 protein-coding 9.474 0.7644
+150290 DUSP18 dual specificity phosphatase 18 protein-coding 6.861 0.9058
+150291 MORC2-AS1 MORC2 antisense RNA 1 ncRNA 7.02 0.7599
+1503 CTPS1 CTP synthase 1 protein-coding 9.5 0.9548
+150353 DNAJB7 DnaJ heat shock protein family (Hsp40) member B7 protein-coding 1.754 0.908
+150356 CHADL chondroadherin like protein-coding 6.047 1.817
150365 MEI1 meiotic double-stranded break formation protein 1 protein-coding 4.957 1.91
-150368 PHETA2 PH domain containing endocytic trafficking adaptor 2 protein-coding 8.023 1.34
-150372 NFAM1 NFAT activating protein with ITAM motif 1 protein-coding 7.328 1.366
+150368 PHETA2 PH domain containing endocytic trafficking adaptor 2 protein-coding 8.024 1.34
+150372 NFAM1 NFAT activating protein with ITAM motif 1 protein-coding 7.328 1.367
150381 PRR34-AS1 PRR34 antisense RNA 1 ncRNA 5.906 1.258
-150383 CDPF1 cysteine rich DPF motif domain containing 1 protein-coding 7.41 0.6931
-150384 GTSE1-DT GTSE1 divergent transcript ncRNA 3.505 1.088
-150465 TTL tubulin tyrosine ligase protein-coding 9.649 0.6943
-150468 CKAP2L cytoskeleton associated protein 2 like protein-coding 6.493 2.081
-150472 CBWD2 COBW domain containing 2 protein-coding 9.063 0.5641
+150383 CDPF1 cysteine rich DPF motif domain containing 1 protein-coding 7.41 0.6928
+150384 GTSE1-DT GTSE1 divergent transcript ncRNA 3.506 1.087
+150465 TTL tubulin tyrosine ligase protein-coding 9.648 0.6947
+150468 CKAP2L cytoskeleton associated protein 2 like protein-coding 6.491 2.081
+150472 CBWD2 COBW domain containing 2 protein-coding 9.063 0.5639
150483 TEKT4 tektin 4 protein-coding 2.57 1.575
-150590 C2orf15 chromosome 2 open reading frame 15 protein-coding 5.496 1.601
-1506 CTRL chymotrypsin like protein-coding 3.588 1.398
-150678 COPS9 COP9 signalosome subunit 9 protein-coding 9.453 0.7594
+150590 C2orf15 chromosome 2 open reading frame 15 protein-coding 5.496 1.6
+1506 CTRL chymotrypsin like protein-coding 3.59 1.402
+150678 COPS9 COP9 signalosome subunit 9 protein-coding 9.452 0.7591
150684 COMMD1 copper metabolism domain containing 1 protein-coding 8.122 0.6696
150696 PROM2 prominin 2 protein-coding 8.576 3.506
-150709 ANKAR ankyrin and armadillo repeat containing protein-coding 4.675 0.896
+150709 ANKAR ankyrin and armadillo repeat containing protein-coding 4.676 0.8966
150726 FBXO41 F-box protein 41 protein-coding 7.908 1.513
-150737 TTC30B tetratricopeptide repeat domain 30B protein-coding 7.124 0.9741
-150763 GPAT2 glycerol-3-phosphate acyltransferase 2, mitochondrial protein-coding 4.775 2.094
-150771 ITPRIPL1 ITPRIP like 1 protein-coding 4.536 1.529
-150776 LOC150776 sphingomyelin phosphodiesterase 4, neutral membrane (neutral sphingomyelinase-3) pseudogene pseudo 8.482 0.8513
-150786 RAB6D RAB6D, member RAS oncogene family protein-coding 5.583 1.038
+150737 TTC30B tetratricopeptide repeat domain 30B protein-coding 7.124 0.9738
+150763 GPAT2 glycerol-3-phosphate acyltransferase 2, mitochondrial protein-coding 4.776 2.094
+150771 ITPRIPL1 ITPRIP like 1 protein-coding 4.536 1.53
+150776 LOC150776 sphingomyelin phosphodiesterase 4, neutral membrane (neutral sphingomyelinase-3) pseudogene pseudo 8.482 0.851
+150786 RAB6D RAB6D, member RAS oncogene family protein-coding 5.584 1.038
1508 CTSB cathepsin B protein-coding 14.52 1.26
150864 FAM117B family with sequence similarity 117 member B protein-coding 8.8 0.9835
-1509 CTSD cathepsin D protein-coding 14.35 1.057
-150962 PUS10 pseudouridylate synthase 10 protein-coding 7.249 0.7441
+1509 CTSD cathepsin D protein-coding 14.35 1.058
+150962 PUS10 pseudouridylate synthase 10 protein-coding 7.249 0.7438
151 ADRA2B adrenoceptor alpha 2B protein-coding 4.248 1.694
-1510 CTSE cathepsin E protein-coding 4.425 4.408
+1510 CTSE cathepsin E protein-coding 4.428 4.41
151009 LINC01106 long intergenic non-protein coding RNA 1106 ncRNA 5.595 1.688
-151011 SEPT10 septin 10 protein-coding 10.11 0.8587
-151050 KANSL1L KAT8 regulatory NSL complex subunit 1 like protein-coding 8.685 0.9248
-151056 PLB1 phospholipase B1 protein-coding 5.786 1.398
-1511 CTSG cathepsin G protein-coding 2.79 2.335
-151126 ZNF385B zinc finger protein 385B protein-coding 4.661 2.906
-151174 LOC151174 uncharacterized LOC151174 ncRNA 2.655 1.602
-151188 ARL6IP6 ADP ribosylation factor like GTPase 6 interacting protein 6 protein-coding 8.473 0.8704
-151194 METTL21A methyltransferase like 21A protein-coding 7.897 0.6331
+151011 SEPT10 septin 10 protein-coding 10.11 0.8586
+151050 KANSL1L KAT8 regulatory NSL complex subunit 1 like protein-coding 8.685 0.9249
+151056 PLB1 phospholipase B1 protein-coding 5.787 1.398
+1511 CTSG cathepsin G protein-coding 2.791 2.336
+151126 ZNF385B zinc finger protein 385B protein-coding 4.663 2.906
+151174 LOC151174 uncharacterized LOC151174 ncRNA 2.656 1.602
+151188 ARL6IP6 ADP ribosylation factor like GTPase 6 interacting protein 6 protein-coding 8.473 0.8701
+151194 METTL21A methyltransferase like 21A protein-coding 7.897 0.633
151195 CCNYL1 cyclin Y like 1 protein-coding 8.839 0.8032
-1512 CTSH cathepsin H protein-coding 11.36 1.415
+1512 CTSH cathepsin H protein-coding 11.36 1.416
151230 KLHL23 kelch like family member 23 protein-coding 6.613 1.783
151242 PPP1R1C protein phosphatase 1 regulatory inhibitor subunit 1C protein-coding 3.134 2.111
-151246 SGO2 shugoshin 2 protein-coding 7.342 1.349
-151254 C2CD6 C2 calcium dependent domain containing 6 protein-coding 2.397 1.73
-151258 SLC38A11 solute carrier family 38 member 11 protein-coding 3.198 2.354
-151295 SLC23A3 solute carrier family 23 member 3 protein-coding 3.779 1.958
-1513 CTSK cathepsin K protein-coding 9.525 2.031
-151306 GPBAR1 G protein-coupled bile acid receptor 1 protein-coding 3.944 1.519
-151313 FAHD2B fumarylacetoacetate hydrolase domain containing 2B protein-coding 6.686 1.592
-151354 FAM84A family with sequence similarity 84 member A protein-coding 8.213 2.201
-151393 RMDN2 regulator of microtubule dynamics 2 protein-coding 6.304 1.035
+151246 SGO2 shugoshin 2 protein-coding 7.341 1.349
+151254 C2CD6 C2 calcium dependent domain containing 6 protein-coding 2.398 1.73
+151258 SLC38A11 solute carrier family 38 member 11 protein-coding 3.2 2.355
+151295 SLC23A3 solute carrier family 23 member 3 protein-coding 3.779 1.957
+1513 CTSK cathepsin K protein-coding 9.525 2.03
+151306 GPBAR1 G protein-coupled bile acid receptor 1 protein-coding 3.946 1.521
+151313 FAHD2B fumarylacetoacetate hydrolase domain containing 2B protein-coding 6.686 1.591
+151354 FAM84A family with sequence similarity 84 member A protein-coding 8.212 2.2
+151393 RMDN2 regulator of microtubule dynamics 2 protein-coding 6.305 1.035
1514 CTSL cathepsin L protein-coding 11.13 1.086
-151449 GDF7 growth differentiation factor 7 protein-coding 1.01 1.36
-151473 SLC16A14 solute carrier family 16 member 14 protein-coding 6.963 1.576
+151449 GDF7 growth differentiation factor 7 protein-coding 1.011 1.361
+151473 SLC16A14 solute carrier family 16 member 14 protein-coding 6.963 1.575
151477 LINC00471 long intergenic non-protein coding RNA 471 ncRNA 2.514 1.04
-1515 CTSV cathepsin V protein-coding 6.749 2.745
-151507 MSL3P1 MSL complex subunit 3 pseudogene 1 pseudo 6.583 1.78
-151516 ASPRV1 aspartic peptidase retroviral like 1 protein-coding 5.696 1.442
-151525 WDSUB1 WD repeat, sterile alpha motif and U-box domain containing 1 protein-coding 7.606 0.7033
+1515 CTSV cathepsin V protein-coding 6.748 2.744
+151507 MSL3P1 MSL complex subunit 3 pseudogene 1 pseudo 6.583 1.779
+151516 ASPRV1 aspartic peptidase retroviral like 1 protein-coding 5.697 1.441
+151525 WDSUB1 WD repeat, sterile alpha motif and U-box domain containing 1 protein-coding 7.607 0.703
151531 UPP2 uridine phosphorylase 2 protein-coding 1.526 1.83
-151534 LBX2-AS1 LBX2 antisense RNA 1 ncRNA 7.078 1.653
-151556 GPR155 G protein-coupled receptor 155 protein-coding 7.738 1.41
-151613 TTC14 tetratricopeptide repeat domain 14 protein-coding 9.082 0.9217
-151636 DTX3L deltex E3 ubiquitin ligase 3L protein-coding 10.79 0.9507
-151648 SGO1 shugoshin 1 protein-coding 5.503 2.051
+151534 LBX2-AS1 LBX2 antisense RNA 1 ncRNA 7.078 1.654
+151556 GPR155 G protein-coupled receptor 155 protein-coding 7.739 1.41
+151613 TTC14 tetratricopeptide repeat domain 14 protein-coding 9.083 0.9217
+151636 DTX3L deltex E3 ubiquitin ligase 3L protein-coding 10.79 0.9504
+151648 SGO1 shugoshin 1 protein-coding 5.501 2.051
151651 EFHB EF-hand domain family member B protein-coding 2.847 1.853
-151742 PPM1L protein phosphatase, Mg2+/Mn2+ dependent 1L protein-coding 5.915 1.5
-151790 WDR49 WD repeat domain 49 protein-coding 1.736 2.204
+151742 PPM1L protein phosphatase, Mg2+/Mn2+ dependent 1L protein-coding 5.916 1.501
+151790 WDR49 WD repeat domain 49 protein-coding 1.736 2.203
151827 LRRC34 leucine rich repeat containing 34 protein-coding 5.657 1.253
-151835 CPNE9 copine family member 9 protein-coding 1.704 1.575
+151835 CPNE9 copine family member 9 protein-coding 1.705 1.576
151887 CCDC80 coiled-coil domain containing 80 protein-coding 10.12 2.07
-151888 BTLA B and T lymphocyte associated protein-coding 3.254 1.775
-1519 CTSO cathepsin O protein-coding 9.631 1.112
-151903 CCDC12 coiled-coil domain containing 12 protein-coding 9.338 0.7558
-151963 MB21D2 Mab-21 domain containing 2 protein-coding 7.185 1.258
-151987 PPP4R2 protein phosphatase 4 regulatory subunit 2 protein-coding 8.332 1.03
+151888 BTLA B and T lymphocyte associated protein-coding 3.256 1.776
+1519 CTSO cathepsin O protein-coding 9.632 1.111
+151903 CCDC12 coiled-coil domain containing 12 protein-coding 9.338 0.7555
+151963 MB21D2 Mab-21 domain containing 2 protein-coding 7.184 1.257
+151987 PPP4R2 protein phosphatase 4 regulatory subunit 2 protein-coding 8.333 1.029
152 ADRA2C adrenoceptor alpha 2C protein-coding 5.602 2.107
-1520 CTSS cathepsin S protein-coding 10.68 1.533
-152002 XXYLT1 xyloside xylosyltransferase 1 protein-coding 8.582 0.9237
-152006 RNF38 ring finger protein 38 protein-coding 9.732 0.7128
-152007 GLIPR2 GLI pathogenesis related 2 protein-coding 8.944 1.377
-152015 ROPN1B rhophilin associated tail protein 1B protein-coding 2.242 2.087
-152098 ZCWPW2 zinc finger CW-type and PWWP domain containing 2 protein-coding 3.426 1.179
-1521 CTSW cathepsin W protein-coding 5.864 2.091
-152100 CMC1 C-X9-C motif containing 1 protein-coding 7.369 0.736
-152110 NEK10 NIMA related kinase 10 protein-coding 2.901 1.967
-152137 CCDC50 coiled-coil domain containing 50 protein-coding 10.55 0.7333
-152185 SPICE1 spindle and centriole associated protein 1 protein-coding 8.347 0.815
+1520 CTSS cathepsin S protein-coding 10.68 1.534
+152002 XXYLT1 xyloside xylosyltransferase 1 protein-coding 8.581 0.9234
+152006 RNF38 ring finger protein 38 protein-coding 9.733 0.713
+152007 GLIPR2 GLI pathogenesis related 2 protein-coding 8.945 1.378
+152015 ROPN1B rhophilin associated tail protein 1B protein-coding 2.241 2.086
+152098 ZCWPW2 zinc finger CW-type and PWWP domain containing 2 protein-coding 3.427 1.179
+1521 CTSW cathepsin W protein-coding 5.866 2.091
+152100 CMC1 C-X9-C motif containing 1 protein-coding 7.369 0.7359
+152110 NEK10 NIMA related kinase 10 protein-coding 2.902 1.967
+152137 CCDC50 coiled-coil domain containing 50 protein-coding 10.56 0.7333
+152185 SPICE1 spindle and centriole associated protein 1 protein-coding 8.347 0.8147
152189 CMTM8 CKLF like MARVEL transmembrane domain containing 8 protein-coding 6.893 1.493
-152195 NUDT16P1 nudix hydrolase 16 pseudogene 1 pseudo 6.321 1.843
+152195 NUDT16P1 nudix hydrolase 16 pseudogene 1 pseudo 6.322 1.843
1522 CTSZ cathepsin Z protein-coding 12.08 1.105
-152206 CCDC13 coiled-coil domain containing 13 protein-coding 3.66 1.52
-152217 NCBP2-AS2 NCBP2 antisense RNA 2 (head to head) protein-coding 8.488 0.7398
-152273 FGD5 FYVE, RhoGEF and PH domain containing 5 protein-coding 8.282 1.364
-1523 CUX1 cut like homeobox 1 protein-coding 10.89 0.7121
-152302 CIDECP cell death-inducing DFFA-like effector c pseudogene pseudo 6.844 0.7239
-152330 CNTN4 contactin 4 protein-coding 5.669 2.184
-1524 CX3CR1 C-X3-C motif chemokine receptor 1 protein-coding 5.862 2.313
-152404 IGSF11 immunoglobulin superfamily member 11 protein-coding 4.001 2.91
-152485 ZNF827 zinc finger protein 827 protein-coding 7.121 1.673
+152206 CCDC13 coiled-coil domain containing 13 protein-coding 3.661 1.52
+152217 NCBP2-AS2 NCBP2 antisense RNA 2 (head to head) protein-coding 8.488 0.7396
+152273 FGD5 FYVE, RhoGEF and PH domain containing 5 protein-coding 8.283 1.365
+1523 CUX1 cut like homeobox 1 protein-coding 10.89 0.7119
+152302 CIDECP cell death-inducing DFFA-like effector c pseudogene pseudo 6.844 0.7236
+152330 CNTN4 contactin 4 protein-coding 5.671 2.184
+1524 CX3CR1 C-X3-C motif chemokine receptor 1 protein-coding 5.863 2.312
+152404 IGSF11 immunoglobulin superfamily member 11 protein-coding 4.002 2.909
+152485 ZNF827 zinc finger protein 827 protein-coding 7.122 1.673
1525 CXADR CXADR, Ig-like cell adhesion molecule protein-coding 7.84 2.107
-152503 SH3D19 SH3 domain containing 19 protein-coding 9.991 1.05
-152518 NFXL1 nuclear transcription factor, X-box binding like 1 protein-coding 7.816 0.7719
+152503 SH3D19 SH3 domain containing 19 protein-coding 9.992 1.05
+152518 NFXL1 nuclear transcription factor, X-box binding like 1 protein-coding 7.816 0.7716
152519 NIPAL1 NIPA like domain containing 1 protein-coding 4.256 2.345
-152559 PAQR3 progestin and adipoQ receptor family member 3 protein-coding 8.097 0.9375
-152573 SHISA3 shisa family member 3 protein-coding 3.503 2.515
-152579 SCFD2 sec1 family domain containing 2 protein-coding 8.316 0.5793
-152641 WWC2-AS2 WWC2 antisense RNA 2 ncRNA 3.141 1.283
-152687 ZNF595 zinc finger protein 595 protein-coding 7.069 1.159
-152756 FAM218A family with sequence similarity 218 member A protein-coding 3.579 2.016
-152789 JAKMIP1 janus kinase and microtubule interacting protein 1 protein-coding 4.132 2.257
+152559 PAQR3 progestin and adipoQ receptor family member 3 protein-coding 8.097 0.9371
+152573 SHISA3 shisa family member 3 protein-coding 3.506 2.516
+152579 SCFD2 sec1 family domain containing 2 protein-coding 8.315 0.5792
+152641 WWC2-AS2 WWC2 antisense RNA 2 ncRNA 3.142 1.284
+152687 ZNF595 zinc finger protein 595 protein-coding 7.07 1.159
+152756 FAM218A family with sequence similarity 218 member A protein-coding 3.58 2.016
+152789 JAKMIP1 janus kinase and microtubule interacting protein 1 protein-coding 4.135 2.258
1528 CYB5A cytochrome b5 type A protein-coding 9.961 1.51
-152815 THAP6 THAP domain containing 6 protein-coding 8.03 0.5465
-152831 KLB klotho beta protein-coding 3.511 2.223
-152877 FAM53A family with sequence similarity 53 member A protein-coding 4.604 1.21
-152926 PPM1K protein phosphatase, Mg2+/Mn2+ dependent 1K protein-coding 7.624 1.352
+152815 THAP6 THAP domain containing 6 protein-coding 8.031 0.5464
+152831 KLB klotho beta protein-coding 3.511 2.222
+152877 FAM53A family with sequence similarity 53 member A protein-coding 4.603 1.211
+152926 PPM1K protein phosphatase, Mg2+/Mn2+ dependent 1K protein-coding 7.625 1.352
152992 TRMT44 tRNA methyltransferase 44 homolog protein-coding 7.671 0.5542
-153 ADRB1 adrenoceptor beta 1 protein-coding 3.974 2.369
+153 ADRB1 adrenoceptor beta 1 protein-coding 3.975 2.369
153020 RASGEF1B RasGEF domain family member 1B protein-coding 7.286 1.297
-153090 DAB2IP DAB2 interacting protein protein-coding 10.58 0.8993
-153129 SLC38A9 solute carrier family 38 member 9 protein-coding 7.669 0.6418
-153222 CREBRF CREB3 regulatory factor protein-coding 8.024 1.152
-153241 CEP120 centrosomal protein 120 protein-coding 8.689 0.6739
-153339 TMEM167A transmembrane protein 167A protein-coding 10.94 0.5397
-153364 MBLAC2 metallo-beta-lactamase domain containing 2 protein-coding 7.254 0.7908
-153396 TMEM161B transmembrane protein 161B protein-coding 7.837 0.6636
+153090 DAB2IP DAB2 interacting protein protein-coding 10.58 0.8992
+153129 SLC38A9 solute carrier family 38 member 9 protein-coding 7.669 0.6416
+153222 CREBRF CREB3 regulatory factor protein-coding 8.025 1.152
+153241 CEP120 centrosomal protein 120 protein-coding 8.689 0.674
+153339 TMEM167A transmembrane protein 167A protein-coding 10.94 0.5396
+153364 MBLAC2 metallo-beta-lactamase domain containing 2 protein-coding 7.255 0.7906
+153396 TMEM161B transmembrane protein 161B protein-coding 7.837 0.6633
1534 CYB561 cytochrome b561 protein-coding 10.92 1.494
-153443 SRFBP1 serum response factor binding protein 1 protein-coding 7.619 0.702
-153478 PLEKHG4B pleckstrin homology and RhoGEF domain containing G4B protein-coding 5.477 2.835
+153443 SRFBP1 serum response factor binding protein 1 protein-coding 7.619 0.7016
+153478 PLEKHG4B pleckstrin homology and RhoGEF domain containing G4B protein-coding 5.478 2.834
1535 CYBA cytochrome b-245 alpha chain protein-coding 10.72 1.478
153527 ZMAT2 zinc finger matrin-type 2 protein-coding 10.7 0.4549
-153562 MARVELD2 MARVEL domain containing 2 protein-coding 7.778 1.991
-153579 BTNL9 butyrophilin like 9 protein-coding 6.394 2.052
-1536 CYBB cytochrome b-245 beta chain protein-coding 9.174 1.714
-153642 ARSK arylsulfatase family member K protein-coding 7.186 0.7618
-153643 FAM81B family with sequence similarity 81 member B protein-coding 2.169 2.344
-153657 TTC23L tetratricopeptide repeat domain 23 like protein-coding 2.807 1.484
-153684 LOC153684 uncharacterized LOC153684 ncRNA 4.683 1.175
-1537 CYC1 cytochrome c1 protein-coding 11.36 0.7872
-153733 CCDC112 coiled-coil domain containing 112 protein-coding 7.336 0.9881
-153743 PPP1R2B PPP1R2 family member B protein-coding 5.778 0.8374
-153768 PRELID2 PRELI domain containing 2 protein-coding 5.586 1.514
+153562 MARVELD2 MARVEL domain containing 2 protein-coding 7.778 1.99
+153579 BTNL9 butyrophilin like 9 protein-coding 6.395 2.052
+1536 CYBB cytochrome b-245 beta chain protein-coding 9.175 1.714
+153642 ARSK arylsulfatase family member K protein-coding 7.186 0.762
+153643 FAM81B family with sequence similarity 81 member B protein-coding 2.17 2.344
+153657 TTC23L tetratricopeptide repeat domain 23 like protein-coding 2.808 1.484
+153684 LOC153684 uncharacterized LOC153684 ncRNA 4.684 1.175
+1537 CYC1 cytochrome c1 protein-coding 11.36 0.7873
+153733 CCDC112 coiled-coil domain containing 112 protein-coding 7.336 0.9876
+153743 PPP1R2B PPP1R2 family member B protein-coding 5.778 0.8371
+153768 PRELID2 PRELI domain containing 2 protein-coding 5.585 1.513
153769 SH3RF2 SH3 domain containing ring finger 2 protein-coding 6.976 2.81
153770 PLAC8L1 PLAC8 like 1 protein-coding 1.543 1.101
-153830 RNF145 ring finger protein 145 protein-coding 10.75 0.9887
-154 ADRB2 adrenoceptor beta 2 protein-coding 5.797 2.025
-1540 CYLD CYLD lysine 63 deubiquitinase protein-coding 9.989 0.7542
-154007 SNRNP48 small nuclear ribonucleoprotein U11/U12 subunit 48 protein-coding 8.347 0.6071
+153830 RNF145 ring finger protein 145 protein-coding 10.75 0.9883
+154 ADRB2 adrenoceptor beta 2 protein-coding 5.798 2.025
+1540 CYLD CYLD lysine 63 deubiquitinase protein-coding 9.99 0.7543
+154007 SNRNP48 small nuclear ribonucleoprotein U11/U12 subunit 48 protein-coding 8.347 0.6069
154043 CNKSR3 CNKSR family member 3 protein-coding 8.335 1.324
-154075 SAMD3 sterile alpha motif domain containing 3 protein-coding 3.913 1.774
-154091 SLC2A12 solute carrier family 2 member 12 protein-coding 7.215 1.807
+154075 SAMD3 sterile alpha motif domain containing 3 protein-coding 3.915 1.776
+154091 SLC2A12 solute carrier family 2 member 12 protein-coding 7.216 1.807
154141 MBOAT1 membrane bound O-acyltransferase domain containing 1 protein-coding 8.21 1.683
-154197 PNLDC1 PARN like, ribonuclease domain containing 1 protein-coding 1.565 2.077
-154214 RNF217 ring finger protein 217 protein-coding 5.908 1.465
-154215 NKAIN2 sodium/potassium transporting ATPase interacting 2 protein-coding 2.969 2.562
-154313 CFAP206 cilia and flagella associated protein 206 protein-coding 3.665 1.887
+154197 PNLDC1 PARN like, ribonuclease domain containing 1 protein-coding 1.566 2.077
+154214 RNF217 ring finger protein 217 protein-coding 5.909 1.465
+154215 NKAIN2 sodium/potassium transporting ATPase interacting 2 protein-coding 2.969 2.561
+154313 CFAP206 cilia and flagella associated protein 206 protein-coding 3.665 1.886
154467 CCDC167 coiled-coil domain containing 167 protein-coding 8.238 0.9796
-1545 CYP1B1 cytochrome P450 family 1 subfamily B member 1 protein-coding 8.588 2.381
+1545 CYP1B1 cytochrome P450 family 1 subfamily B member 1 protein-coding 8.59 2.381
154661 RUNDC3B RUN domain containing 3B protein-coding 4.816 1.857
-154664 ABCA13 ATP binding cassette subfamily A member 13 protein-coding 4.252 3.175
-154743 BMT2 base methyltransferase of 25S rRNA 2 homolog protein-coding 8.122 0.7307
+154664 ABCA13 ATP binding cassette subfamily A member 13 protein-coding 4.252 3.174
+154743 BMT2 base methyltransferase of 25S rRNA 2 homolog protein-coding 8.123 0.7305
154761 LOC154761 family with sequence similarity 115, member C pseudogene pseudo 4.855 1.395
154790 CLEC2L C-type lectin domain family 2 member L protein-coding 2.089 2.424
154791 FMC1 formation of mitochondrial complex V assembly factor 1 homolog protein-coding 8.266 1.074
154796 AMOT angiomotin protein-coding 8.686 1.943
-1548 CYP2A6 cytochrome P450 family 2 subfamily A member 6 protein-coding 1.696 2.912
-154807 VKORC1L1 vitamin K epoxide reductase complex subunit 1 like 1 protein-coding 10.07 0.6124
+1548 CYP2A6 cytochrome P450 family 2 subfamily A member 6 protein-coding 1.696 2.911
+154807 VKORC1L1 vitamin K epoxide reductase complex subunit 1 like 1 protein-coding 10.07 0.6123
154810 AMOTL1 angiomotin like 1 protein-coding 10.09 1.381
-154822 LINC00689 long intergenic non-protein coding RNA 689 ncRNA 2.93 2.594
-154865 IQUB IQ motif and ubiquitin domain containing protein-coding 3.464 1.888
+154822 LINC00689 long intergenic non-protein coding RNA 689 ncRNA 2.931 2.594
+154865 IQUB IQ motif and ubiquitin domain containing protein-coding 3.464 1.887
154881 KCTD7 potassium channel tetramerization domain containing 7 protein-coding 8.278 1.005
-155006 TMEM213 transmembrane protein 213 protein-coding 1.775 2.408
-155038 GIMAP8 GTPase, IMAP family member 8 protein-coding 7.656 1.301
+155006 TMEM213 transmembrane protein 213 protein-coding 1.777 2.408
+155038 GIMAP8 GTPase, IMAP family member 8 protein-coding 7.657 1.301
155054 ZNF425 zinc finger protein 425 protein-coding 6.062 1.126
-155060 LOC155060 AI894139 pseudogene pseudo 7.497 1.126
-155061 ZNF746 zinc finger protein 746 protein-coding 8.946 0.5069
-155066 ATP6V0E2 ATPase H+ transporting V0 subunit e2 protein-coding 9.927 1.796
-1551 CYP3A7 cytochrome P450 family 3 subfamily A member 7 protein-coding 1.886 2.568
+155060 LOC155060 AI894139 pseudogene pseudo 7.498 1.126
+155061 ZNF746 zinc finger protein 746 protein-coding 8.946 0.5067
+155066 ATP6V0E2 ATPase H+ transporting V0 subunit e2 protein-coding 9.928 1.795
+1551 CYP3A7 cytochrome P450 family 3 subfamily A member 7 protein-coding 1.887 2.568
155185 AMZ1 archaelysin family metallopeptidase 1 protein-coding 3.404 2.02
155368 METTL27 methyltransferase like 27 protein-coding 5.56 1.857
-155370 SBDSP1 SBDS, ribosome maturation factor pseudogene 1 pseudo 8.774 0.6685
-155382 VPS37D VPS37D, ESCRT-I subunit protein-coding 6.155 1.699
-155400 NSUN5P1 NOP2/Sun RNA methyltransferase family member 5 pseudogene 1 pseudo 7.092 1.232
-155435 RBM33 RNA binding motif protein 33 protein-coding 9.979 0.5201
-1556 CYP2B7P cytochrome P450 family 2 subfamily B member 7, pseudogene pseudo 4.122 3.312
-1558 CYP2C8 cytochrome P450 family 2 subfamily C member 8 protein-coding 3.074 2.657
-156 GRK2 G protein-coupled receptor kinase 2 protein-coding 11.26 0.6781
-1564 CYP2D7 cytochrome P450 family 2 subfamily D member 7 (gene/pseudogene) protein-coding 4.214 1.749
-1565 CYP2D6 cytochrome P450 family 2 subfamily D member 6 protein-coding 4.255 2.413
-157 GRK3 G protein-coupled receptor kinase 3 protein-coding 8.751 1.102
-1571 CYP2E1 cytochrome P450 family 2 subfamily E member 1 protein-coding 4.974 2.688
-1572 CYP2F1 cytochrome P450 family 2 subfamily F member 1 protein-coding 0.7716 1.47
-157285 PRAG1 PEAK1 related, kinase-activating pseudokinase 1 protein-coding 8.904 1.175
-1573 CYP2J2 cytochrome P450 family 2 subfamily J member 2 protein-coding 6.775 2.594
-157313 CDCA2 cell division cycle associated 2 protein-coding 6.572 2.134
+155370 SBDSP1 SBDS, ribosome maturation factor pseudogene 1 pseudo 8.775 0.6686
+155382 VPS37D VPS37D, ESCRT-I subunit protein-coding 6.155 1.698
+155400 NSUN5P1 NOP2/Sun RNA methyltransferase family member 5 pseudogene 1 pseudo 7.093 1.231
+155435 RBM33 RNA binding motif protein 33 protein-coding 9.98 0.5202
+1556 CYP2B7P cytochrome P450 family 2 subfamily B member 7, pseudogene pseudo 4.123 3.312
+1558 CYP2C8 cytochrome P450 family 2 subfamily C member 8 protein-coding 3.076 2.657
+156 GRK2 G protein-coupled receptor kinase 2 protein-coding 11.26 0.678
+1564 CYP2D7 cytochrome P450 family 2 subfamily D member 7 (gene/pseudogene) protein-coding 4.215 1.749
+1565 CYP2D6 cytochrome P450 family 2 subfamily D member 6 protein-coding 4.255 2.412
+157 GRK3 G protein-coupled receptor kinase 3 protein-coding 8.752 1.102
+1571 CYP2E1 cytochrome P450 family 2 subfamily E member 1 protein-coding 4.975 2.687
+1572 CYP2F1 cytochrome P450 family 2 subfamily F member 1 protein-coding 0.7721 1.47
+157285 PRAG1 PEAK1 related, kinase-activating pseudokinase 1 protein-coding 8.905 1.175
+1573 CYP2J2 cytochrome P450 family 2 subfamily J member 2 protein-coding 6.774 2.594
+157313 CDCA2 cell division cycle associated 2 protein-coding 6.57 2.135
157378 TMEM65 transmembrane protein 65 protein-coding 8.777 0.8839
157506 RDH10 retinol dehydrogenase 10 protein-coding 9.593 1.511
-157567 ANKRD46 ankyrin repeat domain 46 protein-coding 8.766 0.8827
-157570 ESCO2 establishment of sister chromatid cohesion N-acetyltransferase 2 protein-coding 6.16 1.978
-157574 FBXO16 F-box protein 16 protein-coding 4.911 1.712
-1576 CYP3A4 cytochrome P450 family 3 subfamily A member 4 protein-coding 1.654 2.769
+157567 ANKRD46 ankyrin repeat domain 46 protein-coding 8.766 0.8824
+157570 ESCO2 establishment of sister chromatid cohesion N-acetyltransferase 2 protein-coding 6.158 1.979
+157574 FBXO16 F-box protein 16 protein-coding 4.912 1.711
+1576 CYP3A4 cytochrome P450 family 3 subfamily A member 4 protein-coding 1.655 2.769
157638 FAM84B family with sequence similarity 84 member B protein-coding 10.13 1.428
157657 C8orf37 chromosome 8 open reading frame 37 protein-coding 5.823 1.017
-157680 VPS13B vacuolar protein sorting 13 homolog B protein-coding 9.545 0.8011
-157695 TDRP testis development related protein protein-coding 7.894 1.784
-157697 ERICH1 glutamate rich 1 protein-coding 7.976 0.6834
-1577 CYP3A5 cytochrome P450 family 3 subfamily A member 5 protein-coding 5.409 3.256
-157753 TMEM74 transmembrane protein 74 protein-coding 2.223 1.785
-157769 FAM91A1 family with sequence similarity 91 member A1 protein-coding 10.35 0.6858
-157773 C8orf48 chromosome 8 open reading frame 48 protein-coding 3.519 1.697
+157680 VPS13B vacuolar protein sorting 13 homolog B protein-coding 9.545 0.8008
+157695 TDRP testis development related protein protein-coding 7.895 1.784
+157697 ERICH1 glutamate rich 1 protein-coding 7.976 0.6833
+1577 CYP3A5 cytochrome P450 family 3 subfamily A member 5 protein-coding 5.411 3.256
+157753 TMEM74 transmembrane protein 74 protein-coding 2.223 1.784
+157769 FAM91A1 family with sequence similarity 91 member A1 protein-coding 10.35 0.6856
+157773 C8orf48 chromosome 8 open reading frame 48 protein-coding 3.52 1.697
157777 MCMDC2 minichromosome maintenance domain containing 2 protein-coding 5.034 1.107
-157807 CLVS1 clavesin 1 protein-coding 3.058 2.057
-157869 SBSPON somatomedin B and thrombospondin type 1 domain containing protein-coding 6.246 2.168
-157922 CAMSAP1 calmodulin regulated spectrin associated protein 1 protein-coding 9.812 0.6932
-157983 C9orf66 chromosome 9 open reading frame 66 protein-coding 3.562 1.851
-158 ADSL adenylosuccinate lyase protein-coding 9.938 0.6287
-158038 LINGO2 leucine rich repeat and Ig domain containing 2 protein-coding 1.724 1.89
-158046 NXNL2 nucleoredoxin like 2 protein-coding 2.137 2.015
+157807 CLVS1 clavesin 1 protein-coding 3.057 2.056
+157869 SBSPON somatomedin B and thrombospondin type 1 domain containing protein-coding 6.247 2.168
+157922 CAMSAP1 calmodulin regulated spectrin associated protein 1 protein-coding 9.812 0.6929
+157983 C9orf66 chromosome 9 open reading frame 66 protein-coding 3.563 1.852
+158 ADSL adenylosuccinate lyase protein-coding 9.937 0.6287
+158038 LINGO2 leucine rich repeat and Ig domain containing 2 protein-coding 1.725 1.89
+158046 NXNL2 nucleoredoxin like 2 protein-coding 2.138 2.015
158055 C9orf163 chromosome 9 open reading frame 163 protein-coding 3.485 1.099
-158056 MAMDC4 MAM domain containing 4 protein-coding 6.532 1.578
-158067 AK8 adenylate kinase 8 protein-coding 5.089 1.768
-158135 TTLL11 tubulin tyrosine ligase like 11 protein-coding 5.902 0.7588
-158158 RASEF RAS and EF-hand domain containing protein-coding 6.01 2.865
-158160 HSD17B7P2 hydroxysteroid 17-beta dehydrogenase 7 pseudogene 2 pseudo 5.352 1.033
-1582 CYP8B1 cytochrome P450 family 8 subfamily B member 1 protein-coding 2.317 2.701
+158056 MAMDC4 MAM domain containing 4 protein-coding 6.533 1.578
+158067 AK8 adenylate kinase 8 protein-coding 5.089 1.767
+158135 TTLL11 tubulin tyrosine ligase like 11 protein-coding 5.903 0.7589
+158158 RASEF RAS and EF-hand domain containing protein-coding 6.012 2.865
+158160 HSD17B7P2 hydroxysteroid 17-beta dehydrogenase 7 pseudogene 2 pseudo 5.353 1.033
+1582 CYP8B1 cytochrome P450 family 8 subfamily B member 1 protein-coding 2.317 2.699
158219 TTC39B tetratricopeptide repeat domain 39B protein-coding 6.487 1.524
-158228 FAM201A family with sequence similarity 201 member A ncRNA 4.427 2.095
+158228 FAM201A family with sequence similarity 201 member A ncRNA 4.428 2.095
158234 TRMT10B tRNA methyltransferase 10B protein-coding 7.21 0.6072
-158248 TTC16 tetratricopeptide repeat domain 16 protein-coding 2.525 1.488
-158293 FAM120AOS family with sequence similarity 120A opposite strand protein-coding 9.894 0.6031
-158326 FREM1 FRAS1 related extracellular matrix 1 protein-coding 4.705 2.474
-158358 KIAA2026 KIAA2026 protein-coding 9.147 0.7673
+158248 TTC16 tetratricopeptide repeat domain 16 protein-coding 2.526 1.488
+158293 FAM120AOS family with sequence similarity 120A opposite strand protein-coding 9.894 0.603
+158326 FREM1 FRAS1 related extracellular matrix 1 protein-coding 4.707 2.473
+158358 KIAA2026 KIAA2026 protein-coding 9.147 0.7672
158376 SPAAR small regulatory polypeptide of amino acid response protein-coding 3.816 1.397
-158381 ATP8B5P ATPase phospholipid transporting 8B5, pseudogene pseudo 5.15 0.8946
-158399 ZNF483 zinc finger protein 483 protein-coding 3.926 1.792
-158401 C9orf84 chromosome 9 open reading frame 84 protein-coding 2.182 2.075
-158405 KIAA1958 KIAA1958 protein-coding 5.547 1.25
-158427 TSTD2 thiosulfate sulfurtransferase like domain containing 2 protein-coding 8.598 0.864
-158431 ZNF782 zinc finger protein 782 protein-coding 5.763 0.8212
-158471 PRUNE2 prune homolog 2 protein-coding 8.109 2.982
+158381 ATP8B5P ATPase phospholipid transporting 8B5, pseudogene pseudo 5.15 0.8942
+158399 ZNF483 zinc finger protein 483 protein-coding 3.928 1.793
+158401 C9orf84 chromosome 9 open reading frame 84 protein-coding 2.182 2.074
+158405 KIAA1958 KIAA1958 protein-coding 5.547 1.249
+158427 TSTD2 thiosulfate sulfurtransferase like domain containing 2 protein-coding 8.598 0.8639
+158431 ZNF782 zinc finger protein 782 protein-coding 5.764 0.8211
+158471 PRUNE2 prune homolog 2 protein-coding 8.111 2.982
158572 USP27X-AS1 USP27X antisense RNA 1 (head to head) ncRNA 4.703 1.01
-158584 FAAH2 fatty acid amide hydrolase 2 protein-coding 6.791 1.973
-158586 ZXDB zinc finger, X-linked, duplicated B protein-coding 8.467 0.7199
-1586 CYP17A1 cytochrome P450 family 17 subfamily A member 1 protein-coding 2.046 2.855
-158747 MOSPD2 motile sperm domain containing 2 protein-coding 7.807 0.8948
-158787 RIBC1 RIB43A domain with coiled-coils 1 protein-coding 5.056 1.386
-1588 CYP19A1 cytochrome P450 family 19 subfamily A member 1 protein-coding 2.565 1.788
-158800 RHOXF1 Rhox homeobox family member 1 protein-coding 1.3 1.328
-158801 NKAPP1 NFKB activating protein pseudogene 1 pseudo 4.352 0.8108
-158830 CXorf65 chromosome X open reading frame 65 protein-coding 1.03 1.252
-158866 ZDHHC15 zinc finger DHHC-type containing 15 protein-coding 4.75 2.309
-158880 USP51 ubiquitin specific peptidase 51 protein-coding 4.658 1.644
-1589 CYP21A2 cytochrome P450 family 21 subfamily A member 2 protein-coding 5.132 2.501
-158931 TCEAL6 transcription elongation factor A like 6 protein-coding 4.946 1.616
-159 ADSS adenylosuccinate synthase protein-coding 10.3 0.6962
-159013 CXorf38 chromosome X open reading frame 38 protein-coding 7.511 0.6949
-159090 FAM122B family with sequence similarity 122B protein-coding 9.53 0.6643
-159091 FAM122C family with sequence similarity 122C protein-coding 5.145 0.8335
+158584 FAAH2 fatty acid amide hydrolase 2 protein-coding 6.792 1.972
+158586 ZXDB zinc finger, X-linked, duplicated B protein-coding 8.467 0.7197
+1586 CYP17A1 cytochrome P450 family 17 subfamily A member 1 protein-coding 2.047 2.856
+158747 MOSPD2 motile sperm domain containing 2 protein-coding 7.807 0.8947
+158787 RIBC1 RIB43A domain with coiled-coils 1 protein-coding 5.057 1.386
+1588 CYP19A1 cytochrome P450 family 19 subfamily A member 1 protein-coding 2.565 1.787
+158800 RHOXF1 Rhox homeobox family member 1 protein-coding 1.3 1.327
+158801 NKAPP1 NFKB activating protein pseudogene 1 pseudo 4.352 0.8105
+158830 CXorf65 chromosome X open reading frame 65 protein-coding 1.031 1.252
+158866 ZDHHC15 zinc finger DHHC-type containing 15 protein-coding 4.752 2.309
+158880 USP51 ubiquitin specific peptidase 51 protein-coding 4.659 1.644
+1589 CYP21A2 cytochrome P450 family 21 subfamily A member 2 protein-coding 5.133 2.5
+158931 TCEAL6 transcription elongation factor A like 6 protein-coding 4.947 1.616
+159 ADSS adenylosuccinate synthase protein-coding 10.3 0.6959
+159013 CXorf38 chromosome X open reading frame 38 protein-coding 7.512 0.6947
+159090 FAM122B family with sequence similarity 122B protein-coding 9.53 0.664
+159091 FAM122C family with sequence similarity 122C protein-coding 5.146 0.8336
159195 USP54 ubiquitin specific peptidase 54 protein-coding 9.655 1.356
-1592 CYP26A1 cytochrome P450 family 26 subfamily A member 1 protein-coding 2.678 2.46
-159296 NKX2-3 NK2 homeobox 3 protein-coding 1.832 2.202
-1593 CYP27A1 cytochrome P450 family 27 subfamily A member 1 protein-coding 9.43 1.882
+1592 CYP26A1 cytochrome P450 family 26 subfamily A member 1 protein-coding 2.676 2.46
+159296 NKX2-3 NK2 homeobox 3 protein-coding 1.834 2.204
+1593 CYP27A1 cytochrome P450 family 27 subfamily A member 1 protein-coding 9.431 1.882
159371 SLC35G1 solute carrier family 35 member G1 protein-coding 6.576 1.17
-1594 CYP27B1 cytochrome P450 family 27 subfamily B member 1 protein-coding 5.56 1.732
-1595 CYP51A1 cytochrome P450 family 51 subfamily A member 1 protein-coding 10.73 0.9512
+1594 CYP27B1 cytochrome P450 family 27 subfamily B member 1 protein-coding 5.56 1.733
+1595 CYP51A1 cytochrome P450 family 51 subfamily A member 1 protein-coding 10.73 0.9511
159686 CFAP58 cilia and flagella associated protein 58 protein-coding 2.875 1.451
-159989 DEUP1 deuterosome assembly protein 1 protein-coding 1.685 1.764
-16 AARS alanyl-tRNA synthetase protein-coding 11.75 0.6143
-160 AP2A1 adaptor related protein complex 2 alpha 1 subunit protein-coding 11.18 0.5316
-1600 DAB1 DAB1, reelin adaptor protein protein-coding 1.768 1.989
+159989 DEUP1 deuterosome assembly protein 1 protein-coding 1.686 1.765
+16 AARS alanyl-tRNA synthetase protein-coding 11.75 0.6142
+160 AP2A1 adaptor related protein complex 2 alpha 1 subunit protein-coding 11.18 0.5315
+1600 DAB1 DAB1, reelin adaptor protein protein-coding 1.769 1.989
1601 DAB2 DAB2, clathrin adaptor protein protein-coding 10.06 1.479
160140 C11orf65 chromosome 11 open reading frame 65 protein-coding 2.687 0.949
-1602 DACH1 dachshund family transcription factor 1 protein-coding 5.901 2.586
-160287 LDHAL6A lactate dehydrogenase A like 6A protein-coding 0.9011 1.107
-160298 C11orf42 chromosome 11 open reading frame 42 protein-coding 0.74 0.7626
-1603 DAD1 defender against cell death 1 protein-coding 11.3 0.5173
+1602 DACH1 dachshund family transcription factor 1 protein-coding 5.903 2.587
+160287 LDHAL6A lactate dehydrogenase A like 6A protein-coding 0.9016 1.107
+160298 C11orf42 chromosome 11 open reading frame 42 protein-coding 0.7402 0.7625
+1603 DAD1 defender against cell death 1 protein-coding 11.3 0.5174
160335 TMTC2 transmembrane and tetratricopeptide repeat containing 2 protein-coding 8.03 1.541
-160364 CLEC12A C-type lectin domain family 12 member A protein-coding 3.876 1.938
-160365 CLECL1 C-type lectin like 1 protein-coding 2.693 1.533
+160364 CLEC12A C-type lectin domain family 12 member A protein-coding 3.877 1.939
+160365 CLECL1 C-type lectin like 1 protein-coding 2.694 1.534
1604 CD55 CD55 molecule (Cromer blood group) protein-coding 10.28 1.82
-160418 TMTC3 transmembrane and tetratricopeptide repeat containing 3 protein-coding 9.309 0.9378
-160419 C12orf50 chromosome 12 open reading frame 50 protein-coding 0.3527 0.5919
-160428 ALDH1L2 aldehyde dehydrogenase 1 family member L2 protein-coding 6.947 1.954
-1605 DAG1 dystroglycan 1 protein-coding 11.73 0.6886
+160418 TMTC3 transmembrane and tetratricopeptide repeat containing 3 protein-coding 9.309 0.9375
+160419 C12orf50 chromosome 12 open reading frame 50 protein-coding 0.3525 0.5917
+160428 ALDH1L2 aldehyde dehydrogenase 1 family member L2 protein-coding 6.948 1.954
+1605 DAG1 dystroglycan 1 protein-coding 11.73 0.6885
160518 DENND5B DENN domain containing 5B protein-coding 8.04 1.43
-1606 DGKA diacylglycerol kinase alpha protein-coding 9.023 1.46
-160622 GRASP general receptor for phosphoinositides 1 associated scaffold protein protein-coding 7.014 1.281
-160760 PPTC7 PTC7 protein phosphatase homolog protein-coding 8.505 1.311
-1608 DGKG diacylglycerol kinase gamma protein-coding 5.569 2.183
+1606 DGKA diacylglycerol kinase alpha protein-coding 9.024 1.46
+160622 GRASP general receptor for phosphoinositides 1 associated scaffold protein protein-coding 7.015 1.282
+160760 PPTC7 PTC7 protein phosphatase homolog protein-coding 8.505 1.31
+1608 DGKG diacylglycerol kinase gamma protein-coding 5.57 2.182
160851 DGKH diacylglycerol kinase eta protein-coding 5.206 1.351
-160857 CCDC122 coiled-coil domain containing 122 protein-coding 5.541 1.185
-160897 GPR180 G protein-coupled receptor 180 protein-coding 8.142 0.7857
-1609 DGKQ diacylglycerol kinase theta protein-coding 8.82 0.7635
+160857 CCDC122 coiled-coil domain containing 122 protein-coding 5.542 1.184
+160897 GPR180 G protein-coupled receptor 180 protein-coding 8.142 0.7854
+1609 DGKQ diacylglycerol kinase theta protein-coding 8.82 0.7634
161 AP2A2 adaptor related protein complex 2 alpha 2 subunit protein-coding 10.77 0.547
-1611 DAP death associated protein protein-coding 11.78 0.7635
-161142 FAM71D family with sequence similarity 71 member D protein-coding 4.549 0.8596
+1611 DAP death associated protein protein-coding 11.78 0.7633
+161142 FAM71D family with sequence similarity 71 member D protein-coding 4.548 0.86
161145 TMEM229B transmembrane protein 229B protein-coding 7.795 1.452
-161176 SYNE3 spectrin repeat containing nuclear envelope family member 3 protein-coding 4.696 1.478
+161176 SYNE3 spectrin repeat containing nuclear envelope family member 3 protein-coding 4.697 1.478
161198 CLEC14A C-type lectin domain containing 14A protein-coding 8.316 1.266
-1612 DAPK1 death associated protein kinase 1 protein-coding 9.562 1.526
-161247 FITM1 fat storage inducing transmembrane protein 1 protein-coding 3.084 1.403
-161253 REM2 RRAD and GEM like GTPase 2 protein-coding 3.626 1.348
-161291 TMEM30B transmembrane protein 30B protein-coding 8.91 2.804
-1613 DAPK3 death associated protein kinase 3 protein-coding 9.959 0.6944
-161394 SAMD15 sterile alpha motif domain containing 15 protein-coding 4.337 1.45
-161424 NOP9 NOP9 nucleolar protein protein-coding 7.936 0.7212
-161436 EML5 echinoderm microtubule associated protein like 5 protein-coding 5.534 1.304
-161497 STRC stereocilin protein-coding 3.556 1.593
-1615 DARS aspartyl-tRNA synthetase protein-coding 10.9 0.5893
+1612 DAPK1 death associated protein kinase 1 protein-coding 9.563 1.526
+161247 FITM1 fat storage inducing transmembrane protein 1 protein-coding 3.085 1.402
+161253 REM2 RRAD and GEM like GTPase 2 protein-coding 3.626 1.347
+161291 TMEM30B transmembrane protein 30B protein-coding 8.91 2.803
+1613 DAPK3 death associated protein kinase 3 protein-coding 9.959 0.6942
+161394 SAMD15 sterile alpha motif domain containing 15 protein-coding 4.337 1.449
+161424 NOP9 NOP9 nucleolar protein protein-coding 7.936 0.7209
+161436 EML5 echinoderm microtubule associated protein like 5 protein-coding 5.536 1.306
+161497 STRC stereocilin protein-coding 3.557 1.593
+1615 DARS aspartyl-tRNA synthetase protein-coding 10.9 0.5892
161502 CFAP161 cilia and flagella associated protein 161 protein-coding 1.543 1.439
161582 DNAAF4 dynein axonemal assembly factor 4 protein-coding 5.719 1.458
-1616 DAXX death domain associated protein protein-coding 10.52 0.4847
-161635 CSNK1A1P1 casein kinase 1 alpha 1 pseudogene 1 pseudo 0.749 1.074
-161725 OTUD7A OTU deubiquitinase 7A protein-coding 3.582 1.604
-161742 SPRED1 sprouty related EVH1 domain containing 1 protein-coding 9.795 1.073
-161753 ODF3L1 outer dense fiber of sperm tails 3 like 1 protein-coding 2.902 1.534
+1616 DAXX death domain associated protein protein-coding 10.52 0.4846
+161635 CSNK1A1P1 casein kinase 1 alpha 1 pseudogene 1 pseudo 0.7502 1.076
+161725 OTUD7A OTU deubiquitinase 7A protein-coding 3.583 1.604
+161742 SPRED1 sprouty related EVH1 domain containing 1 protein-coding 9.795 1.072
+161753 ODF3L1 outer dense fiber of sperm tails 3 like 1 protein-coding 2.903 1.534
161779 PGBD4 piggyBac transposable element derived 4 protein-coding 4.978 0.7652
-161823 ADAL adenosine deaminase like protein-coding 7.222 0.8108
-161835 FSIP1 fibrous sheath interacting protein 1 protein-coding 3.559 1.797
-161882 ZFPM1 zinc finger protein, FOG family member 1 protein-coding 6.965 1.168
+161823 ADAL adenosine deaminase like protein-coding 7.222 0.8106
+161835 FSIP1 fibrous sheath interacting protein 1 protein-coding 3.559 1.796
+161882 ZFPM1 zinc finger protein, FOG family member 1 protein-coding 6.966 1.168
162 AP1B1 adaptor related protein complex 1 beta 1 subunit protein-coding 11.66 0.5779
-162073 ITPRIPL2 ITPRIP like 2 protein-coding 10.44 0.974
-1621 DBH dopamine beta-hydroxylase protein-coding 2.845 2.619
-1622 DBI diazepam binding inhibitor, acyl-CoA binding protein protein-coding 11.42 0.9534
-162239 ZFP1 ZFP1 zinc finger protein protein-coding 7.735 0.6789
-162387 MFSD6L major facilitator superfamily domain containing 6 like protein-coding 3.928 2.661
+162073 ITPRIPL2 ITPRIP like 2 protein-coding 10.44 0.9738
+1621 DBH dopamine beta-hydroxylase protein-coding 2.847 2.624
+1622 DBI diazepam binding inhibitor, acyl-CoA binding protein protein-coding 11.42 0.9536
+162239 ZFP1 ZFP1 zinc finger protein protein-coding 7.735 0.6787
+162387 MFSD6L major facilitator superfamily domain containing 6 like protein-coding 3.93 2.662
162394 SLFN5 schlafen family member 5 protein-coding 8.619 1.421
162417 NAGS N-acetylglutamate synthase protein-coding 6.07 1.579
-162427 RETREG3 reticulophagy regulator family member 3 protein-coding 10.86 0.5074
-162461 TMEM92 transmembrane protein 92 protein-coding 5.118 2.811
+162427 RETREG3 reticulophagy regulator family member 3 protein-coding 10.86 0.5073
+162461 TMEM92 transmembrane protein 92 protein-coding 5.118 2.81
162466 PHOSPHO1 phosphoethanolamine/phosphocholine phosphatase protein-coding 3.036 1.393
-162494 RHBDL3 rhomboid like 3 protein-coding 4.525 2.564
+162494 RHBDL3 rhomboid like 3 protein-coding 4.525 2.563
162514 TRPV3 transient receptor potential cation channel subfamily V member 3 protein-coding 2.741 2.101
-162515 SLC16A11 solute carrier family 16 member 11 protein-coding 4.12 2.203
+162515 SLC16A11 solute carrier family 16 member 11 protein-coding 4.122 2.203
162517 FBXO39 F-box protein 39 protein-coding 2.04 1.454
-162632 USP32P1 ubiquitin specific peptidase 32 pseudogene 1 pseudo 6.634 2.01
+162632 USP32P1 ubiquitin specific peptidase 32 pseudogene 1 pseudo 6.635 2.011
162655 ZNF519 zinc finger protein 519 protein-coding 5.33 1.092
162681 C18orf54 chromosome 18 open reading frame 54 protein-coding 6.472 1.193
1627 DBN1 drebrin 1 protein-coding 10.85 1.209
1628 DBP D-box binding PAR bZIP transcription factor protein-coding 8.454 1.214
1629 DBT dihydrolipoamide branched chain transacylase E2 protein-coding 9.32 0.6799
-162962 ZNF836 zinc finger protein 836 protein-coding 6.68 0.7881
-162963 ZNF610 zinc finger protein 610 protein-coding 5.633 1.924
+162962 ZNF836 zinc finger protein 836 protein-coding 6.681 0.7883
+162963 ZNF610 zinc finger protein 610 protein-coding 5.634 1.923
162966 ZNF600 zinc finger protein 600 protein-coding 7.277 1.241
-162967 ZNF320 zinc finger protein 320 protein-coding 8.629 1.324
-162968 ZNF497 zinc finger protein 497 protein-coding 6.039 0.9777
-162972 ZNF550 zinc finger protein 550 protein-coding 7.375 0.9181
+162967 ZNF320 zinc finger protein 320 protein-coding 8.63 1.324
+162968 ZNF497 zinc finger protein 497 protein-coding 6.04 0.9774
+162972 ZNF550 zinc finger protein 550 protein-coding 7.376 0.9179
162979 ZNF296 zinc finger protein 296 protein-coding 5.732 1.498
-162989 DEDD2 death effector domain containing 2 protein-coding 9.336 0.7359
-162993 ZNF846 zinc finger protein 846 protein-coding 6.183 0.8056
+162989 DEDD2 death effector domain containing 2 protein-coding 9.337 0.7359
+162993 ZNF846 zinc finger protein 846 protein-coding 6.183 0.8055
162998 OR7D2 olfactory receptor family 7 subfamily D member 2 protein-coding 1.417 1.473
-163 AP2B1 adaptor related protein complex 2 beta 1 subunit protein-coding 12.4 0.7546
-163033 ZNF579 zinc finger protein 579 protein-coding 7.802 0.9902
-163049 ZNF791 zinc finger protein 791 protein-coding 7.473 0.9017
-163050 ZNF564 zinc finger protein 564 protein-coding 7.851 0.5541
-163051 ZNF709 zinc finger protein 709 protein-coding 6.279 1.112
-163059 ZNF433 zinc finger protein 433 protein-coding 6.216 1.274
-163071 ZNF114 zinc finger protein 114 protein-coding 3.978 2.322
-163081 ZNF567 zinc finger protein 567 protein-coding 6.861 0.8214
-163087 ZNF383 zinc finger protein 383 protein-coding 6.328 0.6225
-163115 ZNF781 zinc finger protein 781 protein-coding 4.105 1.64
+163 AP2B1 adaptor related protein complex 2 beta 1 subunit protein-coding 12.4 0.7543
+163033 ZNF579 zinc finger protein 579 protein-coding 7.802 0.99
+163049 ZNF791 zinc finger protein 791 protein-coding 7.473 0.9016
+163050 ZNF564 zinc finger protein 564 protein-coding 7.851 0.5539
+163051 ZNF709 zinc finger protein 709 protein-coding 6.28 1.112
+163059 ZNF433 zinc finger protein 433 protein-coding 6.217 1.274
+163071 ZNF114 zinc finger protein 114 protein-coding 3.978 2.321
+163081 ZNF567 zinc finger protein 567 protein-coding 6.862 0.8212
+163087 ZNF383 zinc finger protein 383 protein-coding 6.329 0.6225
+163115 ZNF781 zinc finger protein 781 protein-coding 4.107 1.64
163126 EID2 EP300 interacting inhibitor of differentiation 2 protein-coding 8.187 0.582
-163131 ZNF780B zinc finger protein 780B protein-coding 8.019 0.851
+163131 ZNF780B zinc finger protein 780B protein-coding 8.02 0.8512
163154 PRR22 proline rich 22 protein-coding 5.478 1.282
-163175 LGI4 leucine rich repeat LGI family member 4 protein-coding 5.911 1.95
+163175 LGI4 leucine rich repeat LGI family member 4 protein-coding 5.912 1.95
163183 SYNE4 spectrin repeat containing nuclear envelope family member 4 protein-coding 5.722 2.969
-1632 ECI1 enoyl-CoA delta isomerase 1 protein-coding 10.13 0.9647
-163223 ZNF676 zinc finger protein 676 protein-coding 2.298 2.316
+1632 ECI1 enoyl-CoA delta isomerase 1 protein-coding 10.13 0.9645
+163223 ZNF676 zinc finger protein 676 protein-coding 2.3 2.316
163227 ZNF100 zinc finger protein 100 protein-coding 7.33 1.108
-163255 ZNF540 zinc finger protein 540 protein-coding 5.72 1.725
-163259 DENND2C DENN domain containing 2C protein-coding 5.38 1.719
-1633 DCK deoxycytidine kinase protein-coding 9.032 0.8291
-163351 GBP6 guanylate binding protein family member 6 protein-coding 3.714 3.524
-1634 DCN decorin protein-coding 11.11 2.495
-163486 DENND1B DENN domain containing 1B protein-coding 5.967 1.312
-1635 DCTD dCMP deaminase protein-coding 10.54 0.6647
-163590 TOR1AIP2 torsin 1A interacting protein 2 protein-coding 8.394 0.9799
-1636 ACE angiotensin I converting enzyme protein-coding 8.812 1.499
+163255 ZNF540 zinc finger protein 540 protein-coding 5.722 1.725
+163259 DENND2C DENN domain containing 2C protein-coding 5.38 1.718
+1633 DCK deoxycytidine kinase protein-coding 9.032 0.8287
+163351 GBP6 guanylate binding protein family member 6 protein-coding 3.713 3.522
+1634 DCN decorin protein-coding 11.11 2.494
+163486 DENND1B DENN domain containing 1B protein-coding 5.967 1.311
+1635 DCTD dCMP deaminase protein-coding 10.54 0.6646
+163590 TOR1AIP2 torsin 1A interacting protein 2 protein-coding 8.394 0.9796
+1636 ACE angiotensin I converting enzyme protein-coding 8.813 1.5
163688 CALML6 calmodulin like 6 protein-coding 1.355 1.233
-163702 IFNLR1 interferon lambda receptor 1 protein-coding 7.094 1.492
-163732 CITED4 Cbp/p300 interacting transactivator with Glu/Asp rich carboxy-terminal domain 4 protein-coding 7.889 1.948
+163702 IFNLR1 interferon lambda receptor 1 protein-coding 7.095 1.491
+163732 CITED4 Cbp/p300 interacting transactivator with Glu/Asp rich carboxy-terminal domain 4 protein-coding 7.888 1.947
163747 LEXM lymphocyte expansion molecule protein-coding 1.316 1.391
-163782 KANK4 KN motif and ankyrin repeat domains 4 protein-coding 4.892 2.569
-163786 SASS6 SAS-6 centriolar assembly protein protein-coding 7.092 1.022
-163859 SDE2 SDE2 telomere maintenance homolog protein-coding 9.241 0.6763
-163882 CNST consortin, connexin sorting protein protein-coding 9.248 0.6426
-1639 DCTN1 dynactin subunit 1 protein-coding 11.99 0.514
-164 AP1G1 adaptor related protein complex 1 gamma 1 subunit protein-coding 11.01 0.5302
-164045 HFM1 HFM1, ATP dependent DNA helicase homolog protein-coding 2.184 1.943
-164091 PAQR7 progestin and adipoQ receptor family member 7 protein-coding 8.856 0.9529
+163782 KANK4 KN motif and ankyrin repeat domains 4 protein-coding 4.893 2.568
+163786 SASS6 SAS-6 centriolar assembly protein protein-coding 7.091 1.022
+163859 SDE2 SDE2 telomere maintenance homolog protein-coding 9.241 0.676
+163882 CNST consortin, connexin sorting protein protein-coding 9.248 0.6424
+1639 DCTN1 dynactin subunit 1 protein-coding 11.99 0.5138
+164 AP1G1 adaptor related protein complex 1 gamma 1 subunit protein-coding 11.01 0.53
+164045 HFM1 HFM1, ATP dependent DNA helicase homolog protein-coding 2.186 1.943
+164091 PAQR7 progestin and adipoQ receptor family member 7 protein-coding 8.856 0.9527
164118 TTC24 tetratricopeptide repeat domain 24 protein-coding 1.389 1.478
1642 DDB1 damage specific DNA binding protein 1 protein-coding 12.54 0.4433
-164284 APCDD1L APC down-regulated 1 like protein-coding 3.463 2.56
-1643 DDB2 damage specific DNA binding protein 2 protein-coding 8.96 0.9966
+164284 APCDD1L APC down-regulated 1 like protein-coding 3.463 2.561
+1643 DDB2 damage specific DNA binding protein 2 protein-coding 8.96 0.9962
164312 LRRN4 leucine rich repeat neuronal 4 protein-coding 3.031 2.753
164395 TTLL9 tubulin tyrosine ligase like 9 protein-coding 3.542 1.643
-1644 DDC dopa decarboxylase protein-coding 3.876 4.057
-1645 AKR1C1 aldo-keto reductase family 1 member C1 protein-coding 8.309 3.261
-164592 CCDC116 coiled-coil domain containing 116 protein-coding 2.137 1.033
-1646 AKR1C2 aldo-keto reductase family 1 member C2 protein-coding 7.351 3.526
-164633 CABP7 calcium binding protein 7 protein-coding 3.365 1.717
-164656 TMPRSS6 transmembrane serine protease 6 protein-coding 3.773 3.118
+1644 DDC dopa decarboxylase protein-coding 3.877 4.057
+1645 AKR1C1 aldo-keto reductase family 1 member C1 protein-coding 8.309 3.26
+164592 CCDC116 coiled-coil domain containing 116 protein-coding 2.138 1.033
+1646 AKR1C2 aldo-keto reductase family 1 member C2 protein-coding 7.351 3.525
+164633 CABP7 calcium binding protein 7 protein-coding 3.366 1.718
+164656 TMPRSS6 transmembrane serine protease 6 protein-coding 3.773 3.117
164668 APOBEC3H apolipoprotein B mRNA editing enzyme catalytic subunit 3H protein-coding 3.135 1.545
-164684 WBP2NL WBP2 N-terminal like protein-coding 2.319 1.336
-1647 GADD45A growth arrest and DNA damage inducible alpha protein-coding 9.48 1.121
-164832 LONRF2 LON peptidase N-terminal domain and ring finger 2 protein-coding 6.914 3.293
+164684 WBP2NL WBP2 N-terminal like protein-coding 2.32 1.335
+1647 GADD45A growth arrest and DNA damage inducible alpha protein-coding 9.479 1.121
+164832 LONRF2 LON peptidase N-terminal domain and ring finger 2 protein-coding 6.916 3.292
1649 DDIT3 DNA damage inducible transcript 3 protein-coding 9.011 1.065
-165 AEBP1 AE binding protein 1 protein-coding 11.93 1.924
-1650 DDOST dolichyl-diphosphooligosaccharide--protein glycosyltransferase non-catalytic subunit protein-coding 12.45 0.6141
-165055 CCDC138 coiled-coil domain containing 138 protein-coding 5.694 1.343
+165 AEBP1 AE binding protein 1 protein-coding 11.94 1.923
+1650 DDOST dolichyl-diphosphooligosaccharide--protein glycosyltransferase non-catalytic subunit protein-coding 12.45 0.6139
+165055 CCDC138 coiled-coil domain containing 138 protein-coding 5.693 1.343
165082 ADGRF3 adhesion G protein-coupled receptor F3 protein-coding 2.986 1.014
-165140 OXER1 oxoeicosanoid receptor 1 protein-coding 5.002 1.822
+165140 OXER1 oxoeicosanoid receptor 1 protein-coding 5.003 1.822
165186 TOGARAM2 TOG array regulator of axonemal microtubules 2 protein-coding 3.535 1.887
-1652 DDT D-dopachrome tautomerase protein-coding 9.756 0.9636
-165215 FAM171B family with sequence similarity 171 member B protein-coding 7.255 2.054
+1652 DDT D-dopachrome tautomerase protein-coding 9.755 0.9635
+165215 FAM171B family with sequence similarity 171 member B protein-coding 7.256 2.054
1653 DDX1 DEAD-box helicase 1 protein-coding 11.18 0.428
165324 UBXN2A UBX domain protein 2A protein-coding 8.098 0.5763
-1654 DDX3X DEAD-box helicase 3, X-linked protein-coding 12.48 0.551
+1654 DDX3X DEAD-box helicase 3, X-linked protein-coding 12.48 0.5508
1655 DDX5 DEAD-box helicase 5 protein-coding 13.38 0.4514
-165530 CLEC4F C-type lectin domain family 4 member F protein-coding 2.658 1.705
-165545 DQX1 DEAQ-box RNA dependent ATPase 1 protein-coding 3.694 2.858
+165530 CLEC4F C-type lectin domain family 4 member F protein-coding 2.66 1.705
+165545 DQX1 DEAQ-box RNA dependent ATPase 1 protein-coding 3.693 2.857
1656 DDX6 DEAD-box helicase 6 protein-coding 11.46 0.5141
-165631 PARP15 poly(ADP-ribose) polymerase family member 15 protein-coding 3.642 1.801
-165679 SPTSSB serine palmitoyltransferase small subunit B protein-coding 4.855 3.093
-1657 DMXL1 Dmx like 1 protein-coding 9.521 0.9739
-165829 GPR156 G protein-coupled receptor 156 protein-coding 2.12 1.695
-1659 DHX8 DEAH-box helicase 8 protein-coding 9.996 0.5182
-165904 XIRP1 xin actin binding repeat containing 1 protein-coding 3.277 2.185
+165631 PARP15 poly(ADP-ribose) polymerase family member 15 protein-coding 3.644 1.803
+165679 SPTSSB serine palmitoyltransferase small subunit B protein-coding 4.856 3.094
+1657 DMXL1 Dmx like 1 protein-coding 9.522 0.9746
+165829 GPR156 G protein-coupled receptor 156 protein-coding 2.12 1.694
+1659 DHX8 DEAH-box helicase 8 protein-coding 9.996 0.518
+165904 XIRP1 xin actin binding repeat containing 1 protein-coding 3.276 2.186
165918 RNF168 ring finger protein 168 protein-coding 7.139 1.325
-166 AES amino-terminal enhancer of split protein-coding 12.92 0.7687
-1660 DHX9 DExH-box helicase 9 protein-coding 11.93 0.4917
-166012 CHST13 carbohydrate sulfotransferase 13 protein-coding 3.641 2.365
-1662 DDX10 DEAD-box helicase 10 protein-coding 9.04 0.5823
+166 AES amino-terminal enhancer of split protein-coding 12.92 0.7686
+1660 DHX9 DExH-box helicase 9 protein-coding 11.93 0.4915
+166012 CHST13 carbohydrate sulfotransferase 13 protein-coding 3.64 2.364
+1662 DDX10 DEAD-box helicase 10 protein-coding 9.039 0.5822
1663 DDX11 DEAD/H-box helicase 11 protein-coding 8.904 1.15
-166336 PRICKLE2 prickle planar cell polarity protein 2 protein-coding 8.369 1.444
-166348 KBTBD12 kelch repeat and BTB domain containing 12 protein-coding 2.82 2.559
-166378 SPATA5 spermatogenesis associated 5 protein-coding 7.528 0.6576
+166336 PRICKLE2 prickle planar cell polarity protein 2 protein-coding 8.371 1.444
+166348 KBTBD12 kelch repeat and BTB domain containing 12 protein-coding 2.821 2.559
+166378 SPATA5 spermatogenesis associated 5 protein-coding 7.528 0.6574
166379 BBS12 Bardet-Biedl syndrome 12 protein-coding 6.801 1.041
-1665 DHX15 DEAH-box helicase 15 protein-coding 11.21 0.5401
-1666 DECR1 2,4-dienoyl-CoA reductase 1 protein-coding 10.38 0.8102
-166614 DCLK2 doublecortin like kinase 2 protein-coding 6.78 2.26
+1665 DHX15 DEAH-box helicase 15 protein-coding 11.21 0.5399
+1666 DECR1 2,4-dienoyl-CoA reductase 1 protein-coding 10.38 0.81
+166614 DCLK2 doublecortin like kinase 2 protein-coding 6.781 2.259
166647 ADGRA3 adhesion G protein-coupled receptor A3 protein-coding 9.622 1.01
166785 MMAA methylmalonic aciduria (cobalamin deficiency) cblA type protein-coding 7.736 0.7049
166793 ZBTB49 zinc finger and BTB domain containing 49 protein-coding 6.532 0.5592
-166815 TIGD2 tigger transposable element derived 2 protein-coding 7.255 0.7681
-166824 RASSF6 Ras association domain family member 6 protein-coding 6.012 3.04
+166815 TIGD2 tigger transposable element derived 2 protein-coding 7.255 0.768
+166824 RASSF6 Ras association domain family member 6 protein-coding 6.013 3.039
166929 SGMS2 sphingomyelin synthase 2 protein-coding 8.639 1.871
-166968 MIER3 MIER family member 3 protein-coding 8.926 0.6653
+166968 MIER3 MIER family member 3 protein-coding 8.926 0.665
167127 UGT3A2 UDP glycosyltransferase family 3 member A2 protein-coding 2.194 2.24
-167153 PAPD4 poly(A) RNA polymerase D4, non-canonical protein-coding 9.639 0.5045
+167153 PAPD4 poly(A) RNA polymerase D4, non-canonical protein-coding 9.64 0.5045
1672 DEFB1 defensin beta 1 protein-coding 5.482 3.768
-167227 DCP2 decapping mRNA 2 protein-coding 9.496 0.6467
-167359 NIM1K NIM1 serine/threonine protein kinase protein-coding 3.693 2.196
-1674 DES desmin protein-coding 6.64 4.135
-167410 LIX1 limb and CNS expressed 1 protein-coding 2.791 3.296
-167465 ZNF366 zinc finger protein 366 protein-coding 4.116 1.677
-1675 CFD complement factor D protein-coding 7.379 1.792
-167555 FAM151B family with sequence similarity 151 member B protein-coding 3.895 0.8703
-1676 DFFA DNA fragmentation factor subunit alpha protein-coding 8.927 0.565
-167681 PRSS35 serine protease 35 protein-coding 3.478 2.199
-167691 LCA5 LCA5, lebercilin protein-coding 6.857 1.407
-1677 DFFB DNA fragmentation factor subunit beta protein-coding 6.934 0.7502
-1678 TIMM8A translocase of inner mitochondrial membrane 8A protein-coding 7.282 0.7553
+167227 DCP2 decapping mRNA 2 protein-coding 9.496 0.6466
+167359 NIM1K NIM1 serine/threonine protein kinase protein-coding 3.694 2.195
+1674 DES desmin protein-coding 6.645 4.138
+167410 LIX1 limb and CNS expressed 1 protein-coding 2.792 3.296
+167465 ZNF366 zinc finger protein 366 protein-coding 4.118 1.678
+1675 CFD complement factor D protein-coding 7.381 1.794
+167555 FAM151B family with sequence similarity 151 member B protein-coding 3.895 0.8699
+1676 DFFA DNA fragmentation factor subunit alpha protein-coding 8.927 0.5648
+167681 PRSS35 serine protease 35 protein-coding 3.479 2.198
+167691 LCA5 LCA5, lebercilin protein-coding 6.858 1.407
+1677 DFFB DNA fragmentation factor subunit beta protein-coding 6.934 0.75
+1678 TIMM8A translocase of inner mitochondrial membrane 8A protein-coding 7.281 0.7557
167838 TXLNB taxilin beta protein-coding 4.751 1.945
-168374 ZNF92 zinc finger protein 92 protein-coding 7.857 1.001
-168448 CDC14C cell division cycle 14C protein-coding 2.813 1.157
-168451 THAP5 THAP domain containing 5 protein-coding 8.979 0.6111
-168455 CCDC71L coiled-coil domain containing 71 like protein-coding 8.355 0.9487
+168374 ZNF92 zinc finger protein 92 protein-coding 7.857 1
+168448 CDC14C cell division cycle 14C protein-coding 2.814 1.157
+168451 THAP5 THAP domain containing 5 protein-coding 8.979 0.6108
+168455 CCDC71L coiled-coil domain containing 71 like protein-coding 8.356 0.9485
168474 SEPHS1P1 selenophosphate synthetase 1 pseudogene 1 pseudo 2.234 1.306
-168507 PKD1L1 polycystin 1 like 1, transient receptor potential channel interacting protein-coding 3.33 1.52
-168537 GIMAP7 GTPase, IMAP family member 7 protein-coding 7.302 1.431
+168507 PKD1L1 polycystin 1 like 1, transient receptor potential channel interacting protein-coding 3.331 1.52
+168537 GIMAP7 GTPase, IMAP family member 7 protein-coding 7.303 1.432
168544 ZNF467 zinc finger protein 467 protein-coding 7.095 1.492
-168620 BHLHA15 basic helix-loop-helix family member a15 protein-coding 2.643 1.978
-168667 BMPER BMP binding endothelial regulator protein-coding 4 2.225
-1687 GSDME gasdermin E protein-coding 8.049 1.716
-168850 ZNF800 zinc finger protein 800 protein-coding 8.472 0.6878
-1690 COCH cochlin protein-coding 5.737 2.572
+168620 BHLHA15 basic helix-loop-helix family member a15 protein-coding 2.644 1.978
+168667 BMPER BMP binding endothelial regulator protein-coding 4.002 2.224
+1687 GSDME gasdermin E protein-coding 8.049 1.715
+168850 ZNF800 zinc finger protein 800 protein-coding 8.473 0.6876
+1690 COCH cochlin protein-coding 5.738 2.572
169200 TMEM64 transmembrane protein 64 protein-coding 9.051 1.091
169270 ZNF596 zinc finger protein 596 protein-coding 5.839 1.101
169436 STKLD1 serine/threonine kinase like domain containing 1 protein-coding 3.052 1.185
-169522 KCNV2 potassium voltage-gated channel modifier subfamily V member 2 protein-coding 0.9483 1.072
-169611 OLFML2A olfactomedin like 2A protein-coding 9.159 1.622
+169522 KCNV2 potassium voltage-gated channel modifier subfamily V member 2 protein-coding 0.9492 1.074
+169611 OLFML2A olfactomedin like 2A protein-coding 9.16 1.622
169714 QSOX2 quiescin sulfhydryl oxidase 2 protein-coding 9.105 0.6907
-169792 GLIS3 GLIS family zinc finger 3 protein-coding 7.627 1.972
-169834 ZNF883 zinc finger protein 883 protein-coding 4.949 2.137
-169841 ZNF169 zinc finger protein 169 protein-coding 5.915 0.8484
-169981 SPIN3 spindlin family member 3 protein-coding 7.685 1.132
-170082 TCEANC transcription elongation factor A N-terminal and central domain containing protein-coding 5.283 0.6815
-170261 ZCCHC12 zinc finger CCHC-type containing 12 protein-coding 3.506 3.065
-170302 ARX aristaless related homeobox protein-coding 2.637 2.607
-170371 TMEM273 transmembrane protein 273 protein-coding 3.282 1.514
-170384 FUT11 fucosyltransferase 11 protein-coding 7.336 0.9462
-170392 OIT3 oncoprotein induced transcript 3 protein-coding 2.549 2.127
+169792 GLIS3 GLIS family zinc finger 3 protein-coding 7.629 1.972
+169834 ZNF883 zinc finger protein 883 protein-coding 4.95 2.136
+169841 ZNF169 zinc finger protein 169 protein-coding 5.915 0.8487
+169981 SPIN3 spindlin family member 3 protein-coding 7.686 1.132
+170082 TCEANC transcription elongation factor A N-terminal and central domain containing protein-coding 5.284 0.6814
+170261 ZCCHC12 zinc finger CCHC-type containing 12 protein-coding 3.507 3.064
+170302 ARX aristaless related homeobox protein-coding 2.638 2.608
+170371 TMEM273 transmembrane protein 273 protein-coding 3.283 1.515
+170384 FUT11 fucosyltransferase 11 protein-coding 7.337 0.9459
+170392 OIT3 oncoprotein induced transcript 3 protein-coding 2.548 2.126
170393 C10orf91 chromosome 10 open reading frame 91 (putative) ncRNA 1.673 1.573
-170394 PWWP2B PWWP domain containing 2B protein-coding 8.787 1.121
-170463 SSBP4 single stranded DNA binding protein 4 protein-coding 9.434 0.8316
+170394 PWWP2B PWWP domain containing 2B protein-coding 8.788 1.12
+170463 SSBP4 single stranded DNA binding protein 4 protein-coding 9.434 0.8313
170487 ACTL10 actin like 10 protein-coding 5.152 1.609
-170506 DHX36 DEAH-box helicase 36 protein-coding 9.764 0.649
-170575 GIMAP1 GTPase, IMAP family member 1 protein-coding 6.368 1.312
-170591 S100Z S100 calcium binding protein Z protein-coding 1.288 1.12
-170622 COMMD6 COMM domain containing 6 protein-coding 10.26 0.682
-170685 NUDT10 nudix hydrolase 10 protein-coding 4.293 2.484
-170689 ADAMTS15 ADAM metallopeptidase with thrombospondin type 1 motif 15 protein-coding 4.698 2.381
-170690 ADAMTS16 ADAM metallopeptidase with thrombospondin type 1 motif 16 protein-coding 4.163 2.535
-170691 ADAMTS17 ADAM metallopeptidase with thrombospondin type 1 motif 17 protein-coding 5.509 1.705
+170506 DHX36 DEAH-box helicase 36 protein-coding 9.764 0.6487
+170575 GIMAP1 GTPase, IMAP family member 1 protein-coding 6.37 1.313
+170591 S100Z S100 calcium binding protein Z protein-coding 1.288 1.121
+170622 COMMD6 COMM domain containing 6 protein-coding 10.26 0.6818
+170685 NUDT10 nudix hydrolase 10 protein-coding 4.295 2.484
+170689 ADAMTS15 ADAM metallopeptidase with thrombospondin type 1 motif 15 protein-coding 4.699 2.38
+170690 ADAMTS16 ADAM metallopeptidase with thrombospondin type 1 motif 16 protein-coding 4.162 2.535
+170691 ADAMTS17 ADAM metallopeptidase with thrombospondin type 1 motif 17 protein-coding 5.509 1.704
170692 ADAMTS18 ADAM metallopeptidase with thrombospondin type 1 motif 18 protein-coding 3.082 2.129
170954 PPP1R18 protein phosphatase 1 regulatory subunit 18 protein-coding 10.47 1.003
-170958 ZNF525 zinc finger protein 525 protein-coding 7.46 1.23
-170959 ZNF431 zinc finger protein 431 protein-coding 7.074 1.025
-170960 ZNF721 zinc finger protein 721 protein-coding 8.719 0.7078
-170961 ANKRD24 ankyrin repeat domain 24 protein-coding 4.982 1.803
-171017 ZNF384 zinc finger protein 384 protein-coding 10.21 0.4916
+170958 ZNF525 zinc finger protein 525 protein-coding 7.461 1.23
+170959 ZNF431 zinc finger protein 431 protein-coding 7.075 1.025
+170960 ZNF721 zinc finger protein 721 protein-coding 8.719 0.7076
+170961 ANKRD24 ankyrin repeat domain 24 protein-coding 4.983 1.803
+171017 ZNF384 zinc finger protein 384 protein-coding 10.21 0.4914
171022 ABHD11-AS1 ABHD11 antisense RNA 1 (tail to tail) ncRNA 3.318 2.197
-171023 ASXL1 additional sex combs like 1, transcriptional regulator protein-coding 10.58 0.5215
-171024 SYNPO2 synaptopodin 2 protein-coding 8.859 2.153
-171169 SPACA4 sperm acrosome associated 4 protein-coding 1.758 1.714
-171177 RHOV ras homolog family member V protein-coding 6.764 3.22
+171023 ASXL1 additional sex combs like 1, transcriptional regulator protein-coding 10.58 0.5214
+171024 SYNPO2 synaptopodin 2 protein-coding 8.862 2.155
+171169 SPACA4 sperm acrosome associated 4 protein-coding 1.759 1.714
+171177 RHOV ras homolog family member V protein-coding 6.764 3.219
171389 NLRP6 NLR family pyrin domain containing 6 protein-coding 2.369 1.889
171392 ZNF675 zinc finger protein 675 protein-coding 6.92 1.21
-171423 PDIA3P1 protein disulfide isomerase family A member 3 pseudogene 1 pseudo 11.56 0.7777
+171423 PDIA3P1 protein disulfide isomerase family A member 3 pseudogene 1 pseudo 11.56 0.7776
171425 CLYBL citrate lyase beta like protein-coding 6.532 1.326
-171546 SPTSSA serine palmitoyltransferase small subunit A protein-coding 10.31 0.874
+171546 SPTSSA serine palmitoyltransferase small subunit A protein-coding 10.31 0.8737
171558 PTCRA pre T cell antigen receptor alpha protein-coding 1.936 1.669
-171568 POLR3H RNA polymerase III subunit H protein-coding 10.1 0.6477
-171586 ABHD3 abhydrolase domain containing 3 protein-coding 8.828 1.02
-1716 DGUOK deoxyguanosine kinase protein-coding 9.761 0.602
+171568 POLR3H RNA polymerase III subunit H protein-coding 10.1 0.6474
+171586 ABHD3 abhydrolase domain containing 3 protein-coding 8.829 1.02
+1716 DGUOK deoxyguanosine kinase protein-coding 9.76 0.6022
1717 DHCR7 7-dehydrocholesterol reductase protein-coding 10.36 1.241
1718 DHCR24 24-dehydrocholesterol reductase protein-coding 12.37 1.839
-1719 DHFR dihydrofolate reductase protein-coding 8.281 0.9291
+1719 DHFR dihydrofolate reductase protein-coding 8.28 0.9293
172 AFG3L1P AFG3 like matrix AAA peptidase subunit 1, pseudogene pseudo 7.902 0.7945
-1723 DHODH dihydroorotate dehydrogenase (quinone) protein-coding 7.479 0.8435
-1725 DHPS deoxyhypusine synthase protein-coding 9.98 0.6005
-1727 CYB5R3 cytochrome b5 reductase 3 protein-coding 12.21 0.6836
-1728 NQO1 NAD(P)H quinone dehydrogenase 1 protein-coding 10.54 1.968
-1729 DIAPH1 diaphanous related formin 1 protein-coding 11.65 0.7802
-1730 DIAPH2 diaphanous related formin 2 protein-coding 7.671 1.228
-1731 SEPT1 septin 1 protein-coding 6.768 1.51
-1733 DIO1 iodothyronine deiodinase 1 protein-coding 2.925 3.126
-1734 DIO2 iodothyronine deiodinase 2 protein-coding 7.871 2.609
-1736 DKC1 dyskerin pseudouridine synthase 1 protein-coding 10.62 0.7538
-1737 DLAT dihydrolipoamide S-acetyltransferase protein-coding 9.803 0.6148
-1738 DLD dihydrolipoamide dehydrogenase protein-coding 10.77 0.6207
-1739 DLG1 discs large MAGUK scaffold protein 1 protein-coding 10.39 0.6921
-1740 DLG2 discs large MAGUK scaffold protein 2 protein-coding 5.134 2.529
+1723 DHODH dihydroorotate dehydrogenase (quinone) protein-coding 7.479 0.8434
+1725 DHPS deoxyhypusine synthase protein-coding 9.98 0.6004
+1727 CYB5R3 cytochrome b5 reductase 3 protein-coding 12.21 0.6834
+1728 NQO1 NAD(P)H quinone dehydrogenase 1 protein-coding 10.54 1.967
+1729 DIAPH1 diaphanous related formin 1 protein-coding 11.65 0.78
+1730 DIAPH2 diaphanous related formin 2 protein-coding 7.672 1.228
+1731 SEPT1 septin 1 protein-coding 6.769 1.511
+1733 DIO1 iodothyronine deiodinase 1 protein-coding 2.925 3.125
+1734 DIO2 iodothyronine deiodinase 2 protein-coding 7.871 2.61
+1736 DKC1 dyskerin pseudouridine synthase 1 protein-coding 10.62 0.7539
+1737 DLAT dihydrolipoamide S-acetyltransferase protein-coding 9.802 0.6146
+1738 DLD dihydrolipoamide dehydrogenase protein-coding 10.77 0.6205
+1739 DLG1 discs large MAGUK scaffold protein 1 protein-coding 10.39 0.6919
+1740 DLG2 discs large MAGUK scaffold protein 2 protein-coding 5.137 2.53
1741 DLG3 discs large MAGUK scaffold protein 3 protein-coding 9.899 1.263
-1742 DLG4 discs large MAGUK scaffold protein 4 protein-coding 7.932 1.555
-1743 DLST dihydrolipoamide S-succinyltransferase protein-coding 11.04 0.5148
+1742 DLG4 discs large MAGUK scaffold protein 4 protein-coding 7.933 1.554
+1743 DLST dihydrolipoamide S-succinyltransferase protein-coding 11.04 0.5146
1745 DLX1 distal-less homeobox 1 protein-coding 3.345 2.761
-1746 DLX2 distal-less homeobox 2 protein-coding 2.399 2.321
-1748 DLX4 distal-less homeobox 4 protein-coding 3.777 2.042
-1749 DLX5 distal-less homeobox 5 protein-coding 4.84 2.807
-175 AGA aspartylglucosaminidase protein-coding 8.813 0.7652
-1756 DMD dystrophin protein-coding 8.125 1.772
-1757 SARDH sarcosine dehydrogenase protein-coding 6.057 2.081
-1759 DNM1 dynamin 1 protein-coding 7.988 1.938
-176 ACAN aggrecan protein-coding 5.827 2.268
-1760 DMPK DM1 protein kinase protein-coding 9.339 1.079
-1762 DMWD DM1 locus, WD repeat containing protein-coding 9.145 0.6054
-1763 DNA2 DNA replication helicase/nuclease 2 protein-coding 6.71 1.363
-1768 DNAH6 dynein axonemal heavy chain 6 protein-coding 4.29 1.983
-1769 DNAH8 dynein axonemal heavy chain 8 protein-coding 1.681 2.038
-177 AGER advanced glycosylation end-product specific receptor protein-coding 6.208 1.812
-1770 DNAH9 dynein axonemal heavy chain 9 protein-coding 3.738 2.514
+1746 DLX2 distal-less homeobox 2 protein-coding 2.398 2.321
+1748 DLX4 distal-less homeobox 4 protein-coding 3.776 2.042
+1749 DLX5 distal-less homeobox 5 protein-coding 4.839 2.806
+175 AGA aspartylglucosaminidase protein-coding 8.813 0.765
+1756 DMD dystrophin protein-coding 8.127 1.772
+1757 SARDH sarcosine dehydrogenase protein-coding 6.059 2.08
+1759 DNM1 dynamin 1 protein-coding 7.989 1.938
+176 ACAN aggrecan protein-coding 5.827 2.267
+1760 DMPK DM1 protein kinase protein-coding 9.34 1.079
+1762 DMWD DM1 locus, WD repeat containing protein-coding 9.145 0.6053
+1763 DNA2 DNA replication helicase/nuclease 2 protein-coding 6.709 1.362
+1768 DNAH6 dynein axonemal heavy chain 6 protein-coding 4.291 1.982
+1769 DNAH8 dynein axonemal heavy chain 8 protein-coding 1.683 2.039
+177 AGER advanced glycosylation end-product specific receptor protein-coding 6.209 1.814
+1770 DNAH9 dynein axonemal heavy chain 9 protein-coding 3.739 2.514
1773 DNASE1 deoxyribonuclease 1 protein-coding 6.151 1.239
-1774 DNASE1L1 deoxyribonuclease 1 like 1 protein-coding 9.012 0.8042
+1774 DNASE1L1 deoxyribonuclease 1 like 1 protein-coding 9.013 0.804
1775 DNASE1L2 deoxyribonuclease 1 like 2 protein-coding 3.885 1.631
-1776 DNASE1L3 deoxyribonuclease 1 like 3 protein-coding 4.62 2.504
-1777 DNASE2 deoxyribonuclease 2, lysosomal protein-coding 10.58 0.6463
+1776 DNASE1L3 deoxyribonuclease 1 like 3 protein-coding 4.622 2.504
+1777 DNASE2 deoxyribonuclease 2, lysosomal protein-coding 10.58 0.6464
1778 DYNC1H1 dynein cytoplasmic 1 heavy chain 1 protein-coding 13.08 0.5949
-178 AGL amylo-alpha-1, 6-glucosidase, 4-alpha-glucanotransferase protein-coding 9.449 0.8951
-1780 DYNC1I1 dynein cytoplasmic 1 intermediate chain 1 protein-coding 5.574 2.344
-1781 DYNC1I2 dynein cytoplasmic 1 intermediate chain 2 protein-coding 10.54 0.6035
-1783 DYNC1LI2 dynein cytoplasmic 1 light intermediate chain 2 protein-coding 11.34 0.6487
-1785 DNM2 dynamin 2 protein-coding 11.68 0.5634
+178 AGL amylo-alpha-1, 6-glucosidase, 4-alpha-glucanotransferase protein-coding 9.449 0.8948
+1780 DYNC1I1 dynein cytoplasmic 1 intermediate chain 1 protein-coding 5.575 2.344
+1781 DYNC1I2 dynein cytoplasmic 1 intermediate chain 2 protein-coding 10.54 0.6032
+1783 DYNC1LI2 dynein cytoplasmic 1 light intermediate chain 2 protein-coding 11.34 0.6486
+1785 DNM2 dynamin 2 protein-coding 11.68 0.5632
1786 DNMT1 DNA methyltransferase 1 protein-coding 10.62 0.9006
-1787 TRDMT1 tRNA aspartic acid methyltransferase 1 protein-coding 6.581 0.9653
-1788 DNMT3A DNA methyltransferase 3 alpha protein-coding 9.049 0.8906
+1787 TRDMT1 tRNA aspartic acid methyltransferase 1 protein-coding 6.582 0.965
+1788 DNMT3A DNA methyltransferase 3 alpha protein-coding 9.049 0.8903
1789 DNMT3B DNA methyltransferase 3 beta protein-coding 6.629 1.58
1793 DOCK1 dedicator of cytokinesis 1 protein-coding 10.29 0.8935
-1794 DOCK2 dedicator of cytokinesis 2 protein-coding 7.849 1.721
-1795 DOCK3 dedicator of cytokinesis 3 protein-coding 5.51 2.587
-1796 DOK1 docking protein 1 protein-coding 8.084 1.052
+1794 DOCK2 dedicator of cytokinesis 2 protein-coding 7.85 1.722
+1795 DOCK3 dedicator of cytokinesis 3 protein-coding 5.512 2.587
+1796 DOK1 docking protein 1 protein-coding 8.085 1.052
1797 DXO decapping exoribonuclease protein-coding 8.488 0.688
-1798 DPAGT1 dolichyl-phosphate N-acetylglucosaminephosphotransferase 1 protein-coding 9.791 0.6079
-18 ABAT 4-aminobutyrate aminotransferase protein-coding 9.161 2.323
-1800 DPEP1 dipeptidase 1 protein-coding 4.21 3.074
-1801 DPH1 diphthamide biosynthesis 1 protein-coding 9.287 0.664
-1802 DPH2 DPH2 homolog protein-coding 9.066 0.6676
-1803 DPP4 dipeptidyl peptidase 4 protein-coding 8.211 3.042
-1806 DPYD dihydropyrimidine dehydrogenase protein-coding 8.389 1.646
+1798 DPAGT1 dolichyl-phosphate N-acetylglucosaminephosphotransferase 1 protein-coding 9.791 0.6077
+18 ABAT 4-aminobutyrate aminotransferase protein-coding 9.162 2.323
+1800 DPEP1 dipeptidase 1 protein-coding 4.211 3.074
+1801 DPH1 diphthamide biosynthesis 1 protein-coding 9.287 0.6638
+1802 DPH2 DPH2 homolog protein-coding 9.065 0.6677
+1803 DPP4 dipeptidyl peptidase 4 protein-coding 8.213 3.042
+1806 DPYD dihydropyrimidine dehydrogenase protein-coding 8.39 1.646
1808 DPYSL2 dihydropyrimidinase like 2 protein-coding 10.71 1.486
1809 DPYSL3 dihydropyrimidinase like 3 protein-coding 11.01 2.075
-181 AGRP agouti related neuropeptide protein-coding 0.8153 1.368
-1810 DR1 down-regulator of transcription 1 protein-coding 9.979 0.6421
-1815 DRD4 dopamine receptor D4 protein-coding 3.03 1.406
-1816 DRD5 dopamine receptor D5 protein-coding 1.008 1.404
-1819 DRG2 developmentally regulated GTP binding protein 2 protein-coding 9.478 0.61
+181 AGRP agouti related neuropeptide protein-coding 0.8158 1.368
+1810 DR1 down-regulator of transcription 1 protein-coding 9.979 0.6418
+1815 DRD4 dopamine receptor D4 protein-coding 3.03 1.405
+1816 DRD5 dopamine receptor D5 protein-coding 1.009 1.403
+1819 DRG2 developmentally regulated GTP binding protein 2 protein-coding 9.478 0.6097
182 JAG1 jagged 1 protein-coding 10.86 1.413
-1820 ARID3A AT-rich interaction domain 3A protein-coding 6.544 1.238
-1821 DRP2 dystrophin related protein 2 protein-coding 3.831 2.299
-1822 ATN1 atrophin 1 protein-coding 12.06 0.7577
-1824 DSC2 desmocollin 2 protein-coding 9.37 2.466
-1827 RCAN1 regulator of calcineurin 1 protein-coding 9.826 1.165
+1820 ARID3A AT-rich interaction domain 3A protein-coding 6.543 1.238
+1821 DRP2 dystrophin related protein 2 protein-coding 3.832 2.299
+1822 ATN1 atrophin 1 protein-coding 12.06 0.7574
+1824 DSC2 desmocollin 2 protein-coding 9.369 2.465
+1827 RCAN1 regulator of calcineurin 1 protein-coding 9.825 1.165
1829 DSG2 desmoglein 2 protein-coding 10.47 3.255
-183 AGT angiotensinogen protein-coding 7.922 3.573
-1831 TSC22D3 TSC22 domain family member 3 protein-coding 11.17 1.313
-1832 DSP desmoplakin protein-coding 12.07 2.952
-1836 SLC26A2 solute carrier family 26 member 2 protein-coding 9.28 1.332
-1837 DTNA dystrobrevin alpha protein-coding 7.406 2.695
+183 AGT angiotensinogen protein-coding 7.922 3.572
+1831 TSC22D3 TSC22 domain family member 3 protein-coding 11.17 1.314
+1832 DSP desmoplakin protein-coding 12.07 2.951
+1836 SLC26A2 solute carrier family 26 member 2 protein-coding 9.281 1.332
+1837 DTNA dystrobrevin alpha protein-coding 7.407 2.694
1838 DTNB dystrobrevin beta protein-coding 8.461 1.002
1839 HBEGF heparin binding EGF like growth factor protein-coding 8.455 1.457
1840 DTX1 deltex E3 ubiquitin ligase 1 protein-coding 6.58 1.833
-1841 DTYMK deoxythymidylate kinase protein-coding 9.123 0.841
-1842 ECM2 extracellular matrix protein 2 protein-coding 7.144 1.773
-1843 DUSP1 dual specificity phosphatase 1 protein-coding 11.61 1.678
-1844 DUSP2 dual specificity phosphatase 2 protein-coding 7.227 1.686
-1845 DUSP3 dual specificity phosphatase 3 protein-coding 10.81 0.7581
-1846 DUSP4 dual specificity phosphatase 4 protein-coding 7.654 2.09
+1841 DTYMK deoxythymidylate kinase protein-coding 9.122 0.8414
+1842 ECM2 extracellular matrix protein 2 protein-coding 7.145 1.773
+1843 DUSP1 dual specificity phosphatase 1 protein-coding 11.61 1.679
+1844 DUSP2 dual specificity phosphatase 2 protein-coding 7.228 1.686
+1845 DUSP3 dual specificity phosphatase 3 protein-coding 10.81 0.758
+1846 DUSP4 dual specificity phosphatase 4 protein-coding 7.655 2.089
1847 DUSP5 dual specificity phosphatase 5 protein-coding 9.084 1.72
1848 DUSP6 dual specificity phosphatase 6 protein-coding 10.6 1.44
1849 DUSP7 dual specificity phosphatase 7 protein-coding 9.329 1.144
-185 AGTR1 angiotensin II receptor type 1 protein-coding 4.342 2.91
-1850 DUSP8 dual specificity phosphatase 8 protein-coding 7.91 1.371
-1852 DUSP9 dual specificity phosphatase 9 protein-coding 4.051 2.892
-1854 DUT deoxyuridine triphosphatase protein-coding 10.01 0.6288
-1855 DVL1 dishevelled segment polarity protein 1 protein-coding 10.54 0.7722
-1856 DVL2 dishevelled segment polarity protein 2 protein-coding 9.511 0.6222
-1857 DVL3 dishevelled segment polarity protein 3 protein-coding 11.25 0.6623
-1859 DYRK1A dual specificity tyrosine phosphorylation regulated kinase 1A protein-coding 10.46 0.5049
-1861 TOR1A torsin family 1 member A protein-coding 9.792 0.417
-1869 E2F1 E2F transcription factor 1 protein-coding 8.399 1.398
+185 AGTR1 angiotensin II receptor type 1 protein-coding 4.345 2.91
+1850 DUSP8 dual specificity phosphatase 8 protein-coding 7.91 1.37
+1852 DUSP9 dual specificity phosphatase 9 protein-coding 4.048 2.891
+1854 DUT deoxyuridine triphosphatase protein-coding 10.01 0.6287
+1855 DVL1 dishevelled segment polarity protein 1 protein-coding 10.54 0.7719
+1856 DVL2 dishevelled segment polarity protein 2 protein-coding 9.511 0.622
+1857 DVL3 dishevelled segment polarity protein 3 protein-coding 11.25 0.662
+1859 DYRK1A dual specificity tyrosine phosphorylation regulated kinase 1A protein-coding 10.46 0.5048
+1861 TOR1A torsin family 1 member A protein-coding 9.792 0.4168
+1869 E2F1 E2F transcription factor 1 protein-coding 8.397 1.399
187 APLNR apelin receptor protein-coding 8.36 1.985
-1870 E2F2 E2F transcription factor 2 protein-coding 6.783 1.895
-1871 E2F3 E2F transcription factor 3 protein-coding 8.97 0.8078
-1874 E2F4 E2F transcription factor 4 protein-coding 10.28 0.597
-1875 E2F5 E2F transcription factor 5 protein-coding 7.169 1.329
-1876 E2F6 E2F transcription factor 6 protein-coding 8.459 0.5259
-1877 E4F1 E4F transcription factor 1 protein-coding 9.163 0.6442
-1879 EBF1 early B cell factor 1 protein-coding 6.733 1.583
-1880 GPR183 G protein-coupled receptor 183 protein-coding 7.114 1.6
+1870 E2F2 E2F transcription factor 2 protein-coding 6.782 1.896
+1871 E2F3 E2F transcription factor 3 protein-coding 8.969 0.8081
+1874 E2F4 E2F transcription factor 4 protein-coding 10.28 0.5968
+1875 E2F5 E2F transcription factor 5 protein-coding 7.168 1.329
+1876 E2F6 E2F transcription factor 6 protein-coding 8.459 0.5258
+1877 E4F1 E4F transcription factor 1 protein-coding 9.163 0.6439
+1879 EBF1 early B cell factor 1 protein-coding 6.734 1.583
+1880 GPR183 G protein-coupled receptor 183 protein-coding 7.115 1.6
1889 ECE1 endothelin converting enzyme 1 protein-coding 11.94 1.023
-189 AGXT alanine--glyoxylate and serine--pyruvate aminotransferase protein-coding 1.66 3.166
-1890 TYMP thymidine phosphorylase protein-coding 10.24 1.932
-1891 ECH1 enoyl-CoA hydratase 1 protein-coding 11.67 0.8483
-1892 ECHS1 enoyl-CoA hydratase, short chain 1 protein-coding 11.5 0.8463
-1893 ECM1 extracellular matrix protein 1 protein-coding 9.228 1.956
-1894 ECT2 epithelial cell transforming 2 protein-coding 9.339 1.645
-1896 EDA ectodysplasin A protein-coding 6.522 1.814
+189 AGXT alanine--glyoxylate and serine--pyruvate aminotransferase protein-coding 1.66 3.165
+1890 TYMP thymidine phosphorylase protein-coding 10.23 1.932
+1891 ECH1 enoyl-CoA hydratase 1 protein-coding 11.67 0.8479
+1892 ECHS1 enoyl-CoA hydratase, short chain 1 protein-coding 11.5 0.8461
+1893 ECM1 extracellular matrix protein 1 protein-coding 9.227 1.955
+1894 ECT2 epithelial cell transforming 2 protein-coding 9.337 1.645
+1896 EDA ectodysplasin A protein-coding 6.523 1.814
19 ABCA1 ATP binding cassette subfamily A member 1 protein-coding 9.838 1.189
-1901 S1PR1 sphingosine-1-phosphate receptor 1 protein-coding 8.566 1.513
-1902 LPAR1 lysophosphatidic acid receptor 1 protein-coding 7.621 1.841
-1903 S1PR3 sphingosine-1-phosphate receptor 3 protein-coding 8.526 1.542
-1906 EDN1 endothelin 1 protein-coding 7.236 1.829
-1909 EDNRA endothelin receptor type A protein-coding 8.102 1.647
-191 AHCY adenosylhomocysteinase protein-coding 12.08 0.7934
-1910 EDNRB endothelin receptor type B protein-coding 8.319 2.348
-1911 PHC1 polyhomeotic homolog 1 protein-coding 8.859 1.203
-1912 PHC2 polyhomeotic homolog 2 protein-coding 11.4 0.6634
-1915 EEF1A1 eukaryotic translation elongation factor 1 alpha 1 protein-coding 16.2 0.6889
-191585 PLAC4 placenta specific 4 ncRNA 2.409 1.951
-1917 EEF1A2 eukaryotic translation elongation factor 1 alpha 2 protein-coding 7.097 3.801
-192111 PGAM5 PGAM family member 5, mitochondrial serine/threonine protein phosphatase protein-coding 8.94 0.8015
-192286 HIGD2A HIG1 hypoxia inducible domain family member 2A protein-coding 10.26 0.7823
-192669 AGO3 argonaute 3, RISC catalytic component protein-coding 6.86 0.7592
-192670 AGO4 argonaute 4, RISC catalytic component protein-coding 7.936 0.8059
+1901 S1PR1 sphingosine-1-phosphate receptor 1 protein-coding 8.567 1.513
+1902 LPAR1 lysophosphatidic acid receptor 1 protein-coding 7.622 1.84
+1903 S1PR3 sphingosine-1-phosphate receptor 3 protein-coding 8.527 1.542
+1906 EDN1 endothelin 1 protein-coding 7.237 1.829
+1909 EDNRA endothelin receptor type A protein-coding 8.103 1.647
+191 AHCY adenosylhomocysteinase protein-coding 12.07 0.7934
+1910 EDNRB endothelin receptor type B protein-coding 8.321 2.348
+1911 PHC1 polyhomeotic homolog 1 protein-coding 8.86 1.202
+1912 PHC2 polyhomeotic homolog 2 protein-coding 11.4 0.6632
+1915 EEF1A1 eukaryotic translation elongation factor 1 alpha 1 protein-coding 16.2 0.6886
+191585 PLAC4 placenta specific 4 ncRNA 2.41 1.951
+1917 EEF1A2 eukaryotic translation elongation factor 1 alpha 2 protein-coding 7.098 3.801
+192111 PGAM5 PGAM family member 5, mitochondrial serine/threonine protein phosphatase protein-coding 8.939 0.8014
+192286 HIGD2A HIG1 hypoxia inducible domain family member 2A protein-coding 10.26 0.782
+192669 AGO3 argonaute 3, RISC catalytic component protein-coding 6.86 0.7591
+192670 AGO4 argonaute 4, RISC catalytic component protein-coding 7.937 0.8062
192683 SCAMP5 secretory carrier membrane protein 5 protein-coding 8.834 1.663
-1933 EEF1B2 eukaryotic translation elongation factor 1 beta 2 protein-coding 11.89 0.7524
-1936 EEF1D eukaryotic translation elongation factor 1 delta protein-coding 13.04 0.796
-1937 EEF1G eukaryotic translation elongation factor 1 gamma protein-coding 14.06 0.7158
-1938 EEF2 eukaryotic translation elongation factor 2 protein-coding 15.58 0.7107
-1939 EIF2D eukaryotic translation initiation factor 2D protein-coding 10.03 0.6146
-1942 EFNA1 ephrin A1 protein-coding 10.71 1.408
-1944 EFNA3 ephrin A3 protein-coding 7.5 1.53
-1945 EFNA4 ephrin A4 protein-coding 7.959 1.411
-1946 EFNA5 ephrin A5 protein-coding 7.282 2.2
-1947 EFNB1 ephrin B1 protein-coding 9.987 1.398
-1948 EFNB2 ephrin B2 protein-coding 9.796 1.393
-1949 EFNB3 ephrin B3 protein-coding 6.064 2.276
-1950 EGF epidermal growth factor protein-coding 4.487 2.677
+1933 EEF1B2 eukaryotic translation elongation factor 1 beta 2 protein-coding 11.89 0.7522
+1936 EEF1D eukaryotic translation elongation factor 1 delta protein-coding 13.04 0.7957
+1937 EEF1G eukaryotic translation elongation factor 1 gamma protein-coding 14.06 0.7156
+1938 EEF2 eukaryotic translation elongation factor 2 protein-coding 15.58 0.7104
+1939 EIF2D eukaryotic translation initiation factor 2D protein-coding 10.03 0.6144
+1942 EFNA1 ephrin A1 protein-coding 10.7 1.409
+1944 EFNA3 ephrin A3 protein-coding 7.498 1.53
+1945 EFNA4 ephrin A4 protein-coding 7.958 1.411
+1946 EFNA5 ephrin A5 protein-coding 7.283 2.199
+1947 EFNB1 ephrin B1 protein-coding 9.987 1.397
+1948 EFNB2 ephrin B2 protein-coding 9.797 1.392
+1949 EFNB3 ephrin B3 protein-coding 6.065 2.275
+1950 EGF epidermal growth factor protein-coding 4.486 2.677
1951 CELSR3 cadherin EGF LAG seven-pass G-type receptor 3 protein-coding 7.433 1.886
-1952 CELSR2 cadherin EGF LAG seven-pass G-type receptor 2 protein-coding 10.1 1.77
-1953 MEGF6 multiple EGF like domains 6 protein-coding 8.615 1.713
-1954 MEGF8 multiple EGF like domains 8 protein-coding 10.39 0.9402
+1952 CELSR2 cadherin EGF LAG seven-pass G-type receptor 2 protein-coding 10.1 1.769
+1953 MEGF6 multiple EGF like domains 6 protein-coding 8.616 1.713
+1954 MEGF8 multiple EGF like domains 8 protein-coding 10.39 0.94
1955 MEGF9 multiple EGF like domains 9 protein-coding 9.799 1.203
1956 EGFR epidermal growth factor receptor protein-coding 9.342 2.18
-1958 EGR1 early growth response 1 protein-coding 11.64 1.689
+1958 EGR1 early growth response 1 protein-coding 11.64 1.69
195827 AAED1 AhpC/TSA antioxidant enzyme domain containing 1 protein-coding 7.131 0.8146
-195828 ZNF367 zinc finger protein 367 protein-coding 7.387 1.212
-1959 EGR2 early growth response 2 protein-coding 7.474 1.837
+195828 ZNF367 zinc finger protein 367 protein-coding 7.386 1.212
+1959 EGR2 early growth response 2 protein-coding 7.475 1.838
196 AHR aryl hydrocarbon receptor protein-coding 10.58 1.565
-1960 EGR3 early growth response 3 protein-coding 7.229 1.911
-196047 EMX2OS EMX2 opposite strand/antisense RNA ncRNA 4.357 3.664
-196051 PLPP4 phospholipid phosphatase 4 protein-coding 4.655 2.565
-196074 METTL15 methyltransferase like 15 protein-coding 8.206 0.5612
-1961 EGR4 early growth response 4 protein-coding 2.186 2.014
-1962 EHHADH enoyl-CoA hydratase and 3-hydroxyacyl CoA dehydrogenase protein-coding 8.469 1.569
+1960 EGR3 early growth response 3 protein-coding 7.23 1.911
+196047 EMX2OS EMX2 opposite strand/antisense RNA ncRNA 4.356 3.663
+196051 PLPP4 phospholipid phosphatase 4 protein-coding 4.655 2.564
+196074 METTL15 methyltransferase like 15 protein-coding 8.205 0.5611
+1961 EGR4 early growth response 4 protein-coding 2.187 2.014
+1962 EHHADH enoyl-CoA hydratase and 3-hydroxyacyl CoA dehydrogenase protein-coding 8.469 1.568
196264 MPZL3 myelin protein zero like 3 protein-coding 4.571 1.948
196294 IMMP1L inner mitochondrial membrane peptidase subunit 1 protein-coding 6.233 0.6836
-196383 RILPL2 Rab interacting lysosomal protein like 2 protein-coding 8.639 0.8782
+196383 RILPL2 Rab interacting lysosomal protein like 2 protein-coding 8.639 0.8786
196385 DNAH10 dynein axonemal heavy chain 10 protein-coding 4.094 1.674
-196394 AMN1 antagonist of mitotic exit network 1 homolog protein-coding 7.476 0.8569
-1964 EIF1AX eukaryotic translation initiation factor 1A, X-linked protein-coding 10.76 0.6078
-196403 DTX3 deltex E3 ubiquitin ligase 3 protein-coding 9.119 1.486
-196410 METTL7B methyltransferase like 7B protein-coding 6.669 3.078
+196394 AMN1 antagonist of mitotic exit network 1 homolog protein-coding 7.476 0.8565
+1964 EIF1AX eukaryotic translation initiation factor 1A, X-linked protein-coding 10.76 0.6076
+196403 DTX3 deltex E3 ubiquitin ligase 3 protein-coding 9.12 1.486
+196410 METTL7B methyltransferase like 7B protein-coding 6.668 3.077
196441 ZFC3H1 zinc finger C3H1-type containing protein-coding 9.376 0.7004
-196463 PLBD2 phospholipase B domain containing 2 protein-coding 9.544 0.8086
-196483 EEF2KMT eukaryotic elongation factor 2 lysine methyltransferase protein-coding 8.614 0.5955
+196463 PLBD2 phospholipase B domain containing 2 protein-coding 9.544 0.8085
+196483 EEF2KMT eukaryotic elongation factor 2 lysine methyltransferase protein-coding 8.614 0.5957
1965 EIF2S1 eukaryotic translation initiation factor 2 subunit alpha protein-coding 10.52 0.5526
-196500 PIANP PILR alpha associated neural protein protein-coding 4.516 2.737
-196513 DCP1B decapping mRNA 1B protein-coding 8.228 0.8264
+196500 PIANP PILR alpha associated neural protein protein-coding 4.518 2.736
+196513 DCP1B decapping mRNA 1B protein-coding 8.228 0.8261
196527 ANO6 anoctamin 6 protein-coding 10.71 0.9222
-196528 ARID2 AT-rich interaction domain 2 protein-coding 9.399 0.6473
-196549 EEF1DP3 eukaryotic translation elongation factor 1 delta pseudogene 3 pseudo 1.463 0.958
-1967 EIF2B1 eukaryotic translation initiation factor 2B subunit alpha protein-coding 10.1 0.3836
-196740 VSTM4 V-set and transmembrane domain containing 4 protein-coding 8.204 1.775
-196743 PAOX polyamine oxidase protein-coding 7.088 0.9891
-196792 FAM24B family with sequence similarity 24 member B protein-coding 4.542 1.525
-1968 EIF2S3 eukaryotic translation initiation factor 2 subunit gamma protein-coding 12.1 0.634
-196872 LINC00638 long intergenic non-protein coding RNA 638 ncRNA 4.702 1.099
-196883 ADCY4 adenylate cyclase 4 protein-coding 6.694 1.26
+196528 ARID2 AT-rich interaction domain 2 protein-coding 9.399 0.6471
+196549 EEF1DP3 eukaryotic translation elongation factor 1 delta pseudogene 3 pseudo 1.463 0.9583
+1967 EIF2B1 eukaryotic translation initiation factor 2B subunit alpha protein-coding 10.1 0.3835
+196740 VSTM4 V-set and transmembrane domain containing 4 protein-coding 8.206 1.775
+196743 PAOX polyamine oxidase protein-coding 7.089 0.9888
+196792 FAM24B family with sequence similarity 24 member B protein-coding 4.542 1.524
+1968 EIF2S3 eukaryotic translation initiation factor 2 subunit gamma protein-coding 12.1 0.6338
+196872 LINC00638 long intergenic non-protein coding RNA 638 ncRNA 4.703 1.099
+196883 ADCY4 adenylate cyclase 4 protein-coding 6.695 1.26
1969 EPHA2 EPH receptor A2 protein-coding 9.688 1.915
-196951 FAM227B family with sequence similarity 227 member B protein-coding 4.231 1.251
-196968 DNM1P46 dynamin 1 pseudogene 46 pseudo 2.138 1.501
-196996 GRAMD2A GRAM domain containing 2A protein-coding 5.446 2.176
-197021 LCTL lactase like protein-coding 1.614 1.348
-197131 UBR1 ubiquitin protein ligase E3 component n-recognin 1 protein-coding 9.282 0.7252
-197135 PATL2 PAT1 homolog 2 protein-coding 3.501 1.463
-197187 SNAI3-AS1 SNAI3 antisense RNA 1 ncRNA 5.201 1.028
-197257 LDHD lactate dehydrogenase D protein-coding 7.141 1.981
-197258 FUK fucokinase protein-coding 8.842 0.7572
+196951 FAM227B family with sequence similarity 227 member B protein-coding 4.232 1.251
+196968 DNM1P46 dynamin 1 pseudogene 46 pseudo 2.14 1.501
+196996 GRAMD2A GRAM domain containing 2A protein-coding 5.446 2.177
+197021 LCTL lactase like protein-coding 1.614 1.347
+197131 UBR1 ubiquitin protein ligase E3 component n-recognin 1 protein-coding 9.283 0.7251
+197135 PATL2 PAT1 homolog 2 protein-coding 3.502 1.463
+197187 SNAI3-AS1 SNAI3 antisense RNA 1 ncRNA 5.202 1.027
+197257 LDHD lactate dehydrogenase D protein-coding 7.142 1.981
+197258 FUK fucokinase protein-coding 8.842 0.7569
197259 MLKL mixed lineage kinase domain like pseudokinase protein-coding 7.654 1.255
-1973 EIF4A1 eukaryotic translation initiation factor 4A1 protein-coding 13.3 0.6507
-197320 ZNF778 zinc finger protein 778 protein-coding 6.075 0.7776
-197322 ACSF3 acyl-CoA synthetase family member 3 protein-coding 8.746 0.7259
-197335 WDR90 WD repeat domain 90 protein-coding 9.07 0.9895
-197342 EME2 essential meiotic structure-specific endonuclease subunit 2 protein-coding 4.084 1.279
-197358 NLRC3 NLR family CARD domain containing 3 protein-coding 6.584 1.167
+1973 EIF4A1 eukaryotic translation initiation factor 4A1 protein-coding 13.3 0.651
+197320 ZNF778 zinc finger protein 778 protein-coding 6.075 0.7773
+197322 ACSF3 acyl-CoA synthetase family member 3 protein-coding 8.746 0.7256
+197335 WDR90 WD repeat domain 90 protein-coding 9.07 0.9893
+197342 EME2 essential meiotic structure-specific endonuclease subunit 2 protein-coding 4.085 1.279
+197358 NLRC3 NLR family CARD domain containing 3 protein-coding 6.585 1.168
197370 NSMCE1 NSE1 homolog, SMC5-SMC6 complex component protein-coding 10.14 0.7294
1974 EIF4A2 eukaryotic translation initiation factor 4A2 protein-coding 12.85 0.6857
-197407 ZNF48 zinc finger protein 48 protein-coding 7.858 0.6986
-1975 EIF4B eukaryotic translation initiation factor 4B protein-coding 12.83 0.6294
-1977 EIF4E eukaryotic translation initiation factor 4E protein-coding 9.027 0.5863
-1978 EIF4EBP1 eukaryotic translation initiation factor 4E binding protein 1 protein-coding 9.578 1.334
-1979 EIF4EBP2 eukaryotic translation initiation factor 4E binding protein 2 protein-coding 11.73 0.6012
-1981 EIF4G1 eukaryotic translation initiation factor 4 gamma 1 protein-coding 13.15 0.6663
-1982 EIF4G2 eukaryotic translation initiation factor 4 gamma 2 protein-coding 14.03 0.5265
-1983 EIF5 eukaryotic translation initiation factor 5 protein-coding 11.94 0.5444
-1984 EIF5A eukaryotic translation initiation factor 5A protein-coding 12.76 0.72
+197407 ZNF48 zinc finger protein 48 protein-coding 7.858 0.6983
+1975 EIF4B eukaryotic translation initiation factor 4B protein-coding 12.83 0.6291
+1977 EIF4E eukaryotic translation initiation factor 4E protein-coding 9.026 0.5861
+1978 EIF4EBP1 eukaryotic translation initiation factor 4E binding protein 1 protein-coding 9.577 1.335
+1979 EIF4EBP2 eukaryotic translation initiation factor 4E binding protein 2 protein-coding 11.73 0.601
+1981 EIF4G1 eukaryotic translation initiation factor 4 gamma 1 protein-coding 13.15 0.6661
+1982 EIF4G2 eukaryotic translation initiation factor 4 gamma 2 protein-coding 14.03 0.5262
+1983 EIF5 eukaryotic translation initiation factor 5 protein-coding 11.94 0.5442
+1984 EIF5A eukaryotic translation initiation factor 5A protein-coding 12.76 0.7201
198437 LKAAEAR1 LKAAEAR motif containing 1 protein-coding 1.139 1.476
199 AIF1 allograft inflammatory factor 1 protein-coding 8.307 1.463
-1991 ELANE elastase, neutrophil expressed protein-coding 0.9886 1.301
+1991 ELANE elastase, neutrophil expressed protein-coding 0.9898 1.302
1992 SERPINB1 serpin family B member 1 protein-coding 10.25 1.569
-199221 DZIP1L DAZ interacting zinc finger protein 1 like protein-coding 5.872 1.514
-199223 TTC21A tetratricopeptide repeat domain 21A protein-coding 5.988 1.259
-1994 ELAVL1 ELAV like RNA binding protein 1 protein-coding 10.9 0.3574
-1995 ELAVL3 ELAV like RNA binding protein 3 protein-coding 2.105 3.164
-1996 ELAVL4 ELAV like RNA binding protein 4 protein-coding 1.88 2.305
+199221 DZIP1L DAZ interacting zinc finger protein 1 like protein-coding 5.873 1.513
+199223 TTC21A tetratricopeptide repeat domain 21A protein-coding 5.989 1.259
+1994 ELAVL1 ELAV like RNA binding protein 1 protein-coding 10.9 0.3575
+1995 ELAVL3 ELAV like RNA binding protein 3 protein-coding 2.106 3.163
+1996 ELAVL4 ELAV like RNA binding protein 4 protein-coding 1.882 2.306
199675 MCEMP1 mast cell expressed membrane protein 1 protein-coding 2.685 2.225
-199692 ZNF627 zinc finger protein 627 protein-coding 8.4 0.7512
-199699 DAND5 DAN domain BMP antagonist family member 5 protein-coding 1.935 1.496
-1997 ELF1 E74 like ETS transcription factor 1 protein-coding 10.19 0.9356
-199704 ZNF585A zinc finger protein 585A protein-coding 6.874 0.8471
-199713 NLRP7 NLR family pyrin domain containing 7 protein-coding 2.722 2.584
-199720 GGN gametogenetin protein-coding 3.402 1.297
+199692 ZNF627 zinc finger protein 627 protein-coding 8.401 0.7509
+199699 DAND5 DAN domain BMP antagonist family member 5 protein-coding 1.935 1.497
+1997 ELF1 E74 like ETS transcription factor 1 protein-coding 10.19 0.9355
+199704 ZNF585A zinc finger protein 585A protein-coding 6.875 0.847
+199713 NLRP7 NLR family pyrin domain containing 7 protein-coding 2.723 2.584
+199720 GGN gametogenetin protein-coding 3.403 1.296
199731 CADM4 cell adhesion molecule 4 protein-coding 9.071 1.79
-199745 THAP8 THAP domain containing 8 protein-coding 7.171 0.7855
-199746 U2AF1L4 U2 small nuclear RNA auxiliary factor 1 like 4 protein-coding 7.212 0.8085
-199777 ZNF626 zinc finger protein 626 protein-coding 6.795 2.114
-199786 FAM129C family with sequence similarity 129 member C protein-coding 2.338 1.748
-1998 ELF2 E74 like ETS transcription factor 2 protein-coding 9.273 0.5358
-199800 ADM5 adrenomedullin 5 (putative) protein-coding 4.544 1.315
-199857 ALG14 ALG14, UDP-N-acetylglucosaminyltransferase subunit protein-coding 7.653 0.6399
+199745 THAP8 THAP domain containing 8 protein-coding 7.171 0.7853
+199746 U2AF1L4 U2 small nuclear RNA auxiliary factor 1 like 4 protein-coding 7.213 0.8087
+199777 ZNF626 zinc finger protein 626 protein-coding 6.796 2.114
+199786 FAM129C family with sequence similarity 129 member C protein-coding 2.34 1.751
+1998 ELF2 E74 like ETS transcription factor 2 protein-coding 9.274 0.5357
+199800 ADM5 adrenomedullin 5 (putative) protein-coding 4.545 1.315
+199857 ALG14 ALG14, UDP-N-acetylglucosaminyltransferase subunit protein-coding 7.653 0.6398
199870 FAM76A family with sequence similarity 76 member A protein-coding 7.764 0.5497
1999 ELF3 E74 like ETS transcription factor 3 protein-coding 10.34 3.703
-199953 TMEM201 transmembrane protein 201 protein-coding 8.869 0.7981
-199974 CYP4Z1 cytochrome P450 family 4 subfamily Z member 1 protein-coding 1.726 2.473
-199990 FAAP20 Fanconi anemia core complex associated protein 20 protein-coding 9.119 0.891
+199953 TMEM201 transmembrane protein 201 protein-coding 8.869 0.798
+199974 CYP4Z1 cytochrome P450 family 4 subfamily Z member 1 protein-coding 1.726 2.472
+199990 FAAP20 Fanconi anemia core complex associated protein 20 protein-coding 9.119 0.8906
2 A2M alpha-2-macroglobulin protein-coding 13.26 1.47
20 ABCA2 ATP binding cassette subfamily A member 2 protein-coding 10.42 1.297
2000 ELF4 E74 like ETS transcription factor 4 protein-coding 9.16 1.564
-200008 CDCP2 CUB domain containing protein 2 protein-coding 0.6252 0.6738
-200010 SLC5A9 solute carrier family 5 member 9 protein-coding 3.614 2.365
-200014 CC2D1B coiled-coil and C2 domain containing 1B protein-coding 9.776 0.5211
-200030 NBPF11 NBPF member 11 protein-coding 8.669 0.8421
+200008 CDCP2 CUB domain containing protein 2 protein-coding 0.6251 0.6737
+200010 SLC5A9 solute carrier family 5 member 9 protein-coding 3.615 2.365
+200014 CC2D1B coiled-coil and C2 domain containing 1B protein-coding 9.777 0.521
+200030 NBPF11 NBPF member 11 protein-coding 8.669 0.8419
200035 NUDT17 nudix hydrolase 17 protein-coding 5.245 1.04
-200058 FLJ23867 uncharacterized protein FLJ23867 ncRNA 9.012 1.909
-200081 TXLNA taxilin alpha protein-coding 10.96 0.5093
+200058 FLJ23867 uncharacterized protein FLJ23867 ncRNA 9.012 1.908
+200081 TXLNA taxilin alpha protein-coding 10.96 0.5091
2001 ELF5 E74 like ETS transcription factor 5 protein-coding 3.537 3.24
-200132 TCTEX1D1 Tctex1 domain containing 1 protein-coding 3.011 1.498
+200132 TCTEX1D1 Tctex1 domain containing 1 protein-coding 3.012 1.498
200162 SPAG17 sperm associated antigen 17 protein-coding 3.891 2.772
-200172 SLFNL1 schlafen like 1 protein-coding 3.023 1.185
-200185 KRTCAP2 keratinocyte associated protein 2 protein-coding 10.89 0.8128
-200186 CRTC2 CREB regulated transcription coactivator 2 protein-coding 10.08 0.4986
-200197 TMEM51-AS1 TMEM51 antisense RNA 1 ncRNA 5.734 1.768
-2002 ELK1 ELK1, ETS transcription factor protein-coding 9.734 0.5428
-200205 IBA57 IBA57, iron-sulfur cluster assembly protein-coding 7.852 0.6572
-200232 FAM209A family with sequence similarity 209 member A protein-coding 0.8823 0.8129
-200312 RNF215 ring finger protein 215 protein-coding 8.069 0.8133
-200315 APOBEC3A apolipoprotein B mRNA editing enzyme catalytic subunit 3A protein-coding 4.403 2.386
-200316 APOBEC3F apolipoprotein B mRNA editing enzyme catalytic subunit 3F protein-coding 7.35 1.25
+200172 SLFNL1 schlafen like 1 protein-coding 3.024 1.186
+200185 KRTCAP2 keratinocyte associated protein 2 protein-coding 10.89 0.8127
+200186 CRTC2 CREB regulated transcription coactivator 2 protein-coding 10.08 0.4985
+200197 TMEM51-AS1 TMEM51 antisense RNA 1 ncRNA 5.735 1.768
+2002 ELK1 ELK1, ETS transcription factor protein-coding 9.734 0.5427
+200205 IBA57 IBA57, iron-sulfur cluster assembly protein-coding 7.852 0.657
+200232 FAM209A family with sequence similarity 209 member A protein-coding 0.883 0.8134
+200312 RNF215 ring finger protein 215 protein-coding 8.069 0.813
+200315 APOBEC3A apolipoprotein B mRNA editing enzyme catalytic subunit 3A protein-coding 4.402 2.385
+200316 APOBEC3F apolipoprotein B mRNA editing enzyme catalytic subunit 3F protein-coding 7.351 1.25
200350 FOXD4L1 forkhead box D4 like 1 protein-coding 2.757 1.163
-2004 ELK3 ELK3, ETS transcription factor protein-coding 8.342 1.322
+2004 ELK3 ELK3, ETS transcription factor protein-coding 8.343 1.322
200403 VWA3B von Willebrand factor A domain containing 3B protein-coding 2.433 2.113
-200407 CREG2 cellular repressor of E1A stimulated genes 2 protein-coding 2.39 2.168
+200407 CREG2 cellular repressor of E1A stimulated genes 2 protein-coding 2.389 2.168
200420 ALMS1P1 ALMS1, centrosome and basal body associated protein pseudogene 1 pseudo 1.689 1.159
-200424 TET3 tet methylcytosine dioxygenase 3 protein-coding 9.392 0.9938
-2005 ELK4 ELK4, ETS transcription factor protein-coding 7.079 0.9941
-200539 ANKRD23 ankyrin repeat domain 23 protein-coding 5.438 1.105
+200424 TET3 tet methylcytosine dioxygenase 3 protein-coding 9.392 0.9937
+2005 ELK4 ELK4, ETS transcription factor protein-coding 7.079 0.9942
+200539 ANKRD23 ankyrin repeat domain 23 protein-coding 5.438 1.104
200558 APLF aprataxin and PNKP like factor protein-coding 5.722 0.9609
-200576 PIKFYVE phosphoinositide kinase, FYVE-type zinc finger containing protein-coding 9.416 0.7856
-2006 ELN elastin protein-coding 9.233 2.213
-200634 KRTCAP3 keratinocyte associated protein 3 protein-coding 7.378 2.805
-200728 TMEM17 transmembrane protein 17 protein-coding 6.222 0.9526
-200734 SPRED2 sprouty related EVH1 domain containing 2 protein-coding 9.832 0.8539
-200765 TIGD1 tigger transposable element derived 1 protein-coding 7.099 0.9028
-200810 ALG1L ALG1, chitobiosyldiphosphodolichol beta-mannosyltransferase like protein-coding 5.205 2.421
-200844 C3orf67 chromosome 3 open reading frame 67 protein-coding 5.028 1.964
-200845 KCTD6 potassium channel tetramerization domain containing 6 protein-coding 7.396 0.9462
-200879 LIPH lipase H protein-coding 6.072 3.358
-200894 ARL13B ADP ribosylation factor like GTPase 13B protein-coding 7.818 0.923
-200895 DHFR2 dihydrofolate reductase 2 protein-coding 7.688 0.7558
+200576 PIKFYVE phosphoinositide kinase, FYVE-type zinc finger containing protein-coding 9.417 0.7854
+2006 ELN elastin protein-coding 9.235 2.213
+200634 KRTCAP3 keratinocyte associated protein 3 protein-coding 7.378 2.804
+200728 TMEM17 transmembrane protein 17 protein-coding 6.222 0.9524
+200734 SPRED2 sprouty related EVH1 domain containing 2 protein-coding 9.832 0.8535
+200765 TIGD1 tigger transposable element derived 1 protein-coding 7.099 0.9026
+200810 ALG1L ALG1, chitobiosyldiphosphodolichol beta-mannosyltransferase like protein-coding 5.203 2.421
+200844 C3orf67 chromosome 3 open reading frame 67 protein-coding 5.026 1.964
+200845 KCTD6 potassium channel tetramerization domain containing 6 protein-coding 7.396 0.9458
+200879 LIPH lipase H protein-coding 6.073 3.358
+200894 ARL13B ADP ribosylation factor like GTPase 13B protein-coding 7.818 0.9227
+200895 DHFR2 dihydrofolate reductase 2 protein-coding 7.689 0.7556
2009 EML1 echinoderm microtubule associated protein like 1 protein-coding 8.106 1.364
-200916 RPL22L1 ribosomal protein L22 like 1 protein-coding 9.273 1.186
-200931 SLC51A solute carrier family 51 alpha subunit protein-coding 4.797 2.002
-200933 FBXO45 F-box protein 45 protein-coding 9.144 0.9289
-200942 KLHDC8B kelch domain containing 8B protein-coding 8.973 1.076
-200958 MUC20 mucin 20, cell surface associated protein-coding 8.367 2.455
-2010 EMD emerin protein-coding 10.3 0.5429
-2011 MARK2 microtubule affinity regulating kinase 2 protein-coding 10.46 0.6428
-201134 CEP112 centrosomal protein 112 protein-coding 6.713 1.31
-201158 TVP23C trans-golgi network vesicle protein 23 homolog C protein-coding 7.946 0.722
-201161 CENPV centromere protein V protein-coding 6.988 1.833
-201163 FLCN folliculin protein-coding 9.422 0.6081
-201164 PLD6 phospholipase D family member 6 protein-coding 7.032 1.038
+200916 RPL22L1 ribosomal protein L22 like 1 protein-coding 9.272 1.186
+200931 SLC51A solute carrier family 51 alpha subunit protein-coding 4.796 2.001
+200933 FBXO45 F-box protein 45 protein-coding 9.144 0.9288
+200942 KLHDC8B kelch domain containing 8B protein-coding 8.974 1.076
+200958 MUC20 mucin 20, cell surface associated protein-coding 8.367 2.454
+2010 EMD emerin protein-coding 10.3 0.5428
+2011 MARK2 microtubule affinity regulating kinase 2 protein-coding 10.46 0.6425
+201134 CEP112 centrosomal protein 112 protein-coding 6.714 1.309
+201158 TVP23C trans-golgi network vesicle protein 23 homolog C protein-coding 7.947 0.7218
+201161 CENPV centromere protein V protein-coding 6.988 1.832
+201163 FLCN folliculin protein-coding 9.422 0.608
+201164 PLD6 phospholipase D family member 6 protein-coding 7.033 1.038
201176 ARHGAP27 Rho GTPase activating protein 27 protein-coding 9.445 1.148
201191 SAMD14 sterile alpha motif domain containing 14 protein-coding 4.939 1.752
2012 EMP1 epithelial membrane protein 1 protein-coding 10.98 1.611
-201229 LYRM9 LYR motif containing 9 protein-coding 7.53 1.291
-201232 SLC16A13 solute carrier family 16 member 13 protein-coding 6.361 1.293
-201254 CENPX centromere protein X protein-coding 9.289 0.9357
-201255 LRRC45 leucine rich repeat containing 45 protein-coding 8.789 0.9045
-201266 SLC39A11 solute carrier family 39 member 11 protein-coding 9.457 1.009
-201283 AMZ2P1 archaelysin family metallopeptidase 2 pseudogene 1 pseudo 7.346 0.93
-201292 TRIM65 tripartite motif containing 65 protein-coding 9.178 0.6014
-201294 UNC13D unc-13 homolog D protein-coding 8.563 1.685
-201299 RDM1 RAD52 motif containing 1 protein-coding 3.262 1.728
+201229 LYRM9 LYR motif containing 9 protein-coding 7.531 1.291
+201232 SLC16A13 solute carrier family 16 member 13 protein-coding 6.361 1.292
+201254 CENPX centromere protein X protein-coding 9.288 0.9359
+201255 LRRC45 leucine rich repeat containing 45 protein-coding 8.789 0.9044
+201266 SLC39A11 solute carrier family 39 member 11 protein-coding 9.457 1.008
+201283 AMZ2P1 archaelysin family metallopeptidase 2 pseudogene 1 pseudo 7.346 0.9296
+201292 TRIM65 tripartite motif containing 65 protein-coding 9.177 0.6013
+201294 UNC13D unc-13 homolog D protein-coding 8.564 1.685
+201299 RDM1 RAD52 motif containing 1 protein-coding 3.26 1.728
2013 EMP2 epithelial membrane protein 2 protein-coding 10.87 1.644
-201305 SPNS3 sphingolipid transporter 3 (putative) protein-coding 3.727 1.84
-2014 EMP3 epithelial membrane protein 3 protein-coding 8.965 1.66
+201305 SPNS3 sphingolipid transporter 3 (putative) protein-coding 3.728 1.84
+2014 EMP3 epithelial membrane protein 3 protein-coding 8.965 1.659
201456 FBXO15 F-box protein 15 protein-coding 3.644 1.853
-201475 RAB12 RAB12, member RAS oncogene family protein-coding 9.545 0.7075
+201475 RAB12 RAB12, member RAS oncogene family protein-coding 9.545 0.7074
2015 ADGRE1 adhesion G protein-coupled receptor E1 protein-coding 3.6 1.903
-201501 ZBTB7C zinc finger and BTB domain containing 7C protein-coding 7.517 2.354
+201501 ZBTB7C zinc finger and BTB domain containing 7C protein-coding 7.518 2.354
201514 ZNF584 zinc finger protein 584 protein-coding 7.562 0.5503
-201562 HACD2 3-hydroxyacyl-CoA dehydratase 2 protein-coding 7.022 1.694
+201562 HACD2 3-hydroxyacyl-CoA dehydratase 2 protein-coding 7.023 1.693
201595 STT3B STT3B, catalytic subunit of the oligosaccharyltransferase complex protein-coding 10.29 1.001
-2016 EMX1 empty spiracles homeobox 1 protein-coding 2.695 2.735
+2016 EMX1 empty spiracles homeobox 1 protein-coding 2.694 2.735
201625 DNAH12 dynein axonemal heavy chain 12 protein-coding 1.984 1.763
-201626 PDE12 phosphodiesterase 12 protein-coding 9.026 0.5625
-201627 DENND6A DENN domain containing 6A protein-coding 9.078 0.5076
-201633 TIGIT T cell immunoreceptor with Ig and ITIM domains protein-coding 5.068 2.1
+201626 PDE12 phosphodiesterase 12 protein-coding 9.026 0.5623
+201627 DENND6A DENN domain containing 6A protein-coding 9.079 0.5077
+201633 TIGIT T cell immunoreceptor with Ig and ITIM domains protein-coding 5.069 2.101
201651 AADACP1 arylacetamide deacetylase pseudogene 1 pseudo 2.273 2.181
2017 CTTN cortactin protein-coding 12.25 0.7956
-201725 C4orf46 chromosome 4 open reading frame 46 protein-coding 7.726 0.7946
-201780 SLC10A4 solute carrier family 10 member 4 protein-coding 2.877 2.235
-201798 TIGD4 tigger transposable element derived 4 protein-coding 3.372 1.372
-201799 TMEM154 transmembrane protein 154 protein-coding 6.543 2.062
-2018 EMX2 empty spiracles homeobox 2 protein-coding 3.928 3.524
+201725 C4orf46 chromosome 4 open reading frame 46 protein-coding 7.725 0.7945
+201780 SLC10A4 solute carrier family 10 member 4 protein-coding 2.878 2.235
+201798 TIGD4 tigger transposable element derived 4 protein-coding 3.373 1.372
+201799 TMEM154 transmembrane protein 154 protein-coding 6.543 2.061
+2018 EMX2 empty spiracles homeobox 2 protein-coding 3.926 3.523
201895 SMIM14 small integral membrane protein 14 protein-coding 9.152 1.072
-201931 TMEM192 transmembrane protein 192 protein-coding 8.917 0.8845
-201965 RWDD4 RWD domain containing 4 protein-coding 8.837 0.5533
-201973 PRIMPOL primase and DNA directed polymerase protein-coding 7.294 0.6743
-202 CRYBG1 crystallin beta-gamma domain containing 1 protein-coding 9.607 2.201
-202018 TAPT1 transmembrane anterior posterior transformation 1 protein-coding 9.118 0.7958
-202020 TAPT1-AS1 TAPT1 antisense RNA 1 (head to head) ncRNA 6.108 0.8233
-202051 SPATA24 spermatogenesis associated 24 protein-coding 5.445 0.8147
-202052 DNAJC18 DnaJ heat shock protein family (Hsp40) member C18 protein-coding 7.093 1.235
-2021 ENDOG endonuclease G protein-coding 7.983 0.9827
-202181 LOC202181 SUMO interacting motifs containing 1 pseudogene pseudo 4.786 1.203
+201931 TMEM192 transmembrane protein 192 protein-coding 8.917 0.8844
+201965 RWDD4 RWD domain containing 4 protein-coding 8.837 0.5531
+201973 PRIMPOL primase and DNA directed polymerase protein-coding 7.295 0.6741
+202 CRYBG1 crystallin beta-gamma domain containing 1 protein-coding 9.608 2.2
+202018 TAPT1 transmembrane anterior posterior transformation 1 protein-coding 9.118 0.7956
+202020 TAPT1-AS1 TAPT1 antisense RNA 1 (head to head) ncRNA 6.109 0.8231
+202051 SPATA24 spermatogenesis associated 24 protein-coding 5.445 0.8146
+202052 DNAJC18 DnaJ heat shock protein family (Hsp40) member C18 protein-coding 7.094 1.235
+2021 ENDOG endonuclease G protein-coding 7.982 0.9828
+202181 LOC202181 SUMO interacting motifs containing 1 pseudogene pseudo 4.787 1.203
2022 ENG endoglin protein-coding 11.15 1.084
202243 CCDC125 coiled-coil domain containing 125 protein-coding 8.051 1.052
-202299 LINC01554 long intergenic non-protein coding RNA 1554 ncRNA 2.35 1.958
-2023 ENO1 enolase 1 protein-coding 14.68 0.9867
-202309 GAPT GRB2 binding adaptor protein, transmembrane protein-coding 4.461 1.803
-202333 CMYA5 cardiomyopathy associated 5 protein-coding 6.658 2.173
-202459 OSTCP1 oligosaccharyltransferase complex subunit pseudogene 1 pseudo 2.53 0.9127
-202500 TCTE1 t-complex-associated-testis-expressed 1 protein-coding 1.384 1.506
-202559 KHDRBS2 KH RNA binding domain containing, signal transduction associated 2 protein-coding 1.484 1.893
-2026 ENO2 enolase 2 protein-coding 9.94 1.881
-2027 ENO3 enolase 3 protein-coding 6.015 1.691
-202781 PAXIP1-AS1 PAXIP1 antisense RNA 1 (head to head) ncRNA 7.7 0.9134
-2028 ENPEP glutamyl aminopeptidase protein-coding 7.369 2.084
-2029 ENSA endosulfine alpha protein-coding 11.95 0.559
-202915 TMEM184A transmembrane protein 184A protein-coding 7.884 3.031
+202299 LINC01554 long intergenic non-protein coding RNA 1554 ncRNA 2.351 1.957
+2023 ENO1 enolase 1 protein-coding 14.68 0.9871
+202309 GAPT GRB2 binding adaptor protein, transmembrane protein-coding 4.463 1.804
+202333 CMYA5 cardiomyopathy associated 5 protein-coding 6.659 2.173
+202459 OSTCP1 oligosaccharyltransferase complex subunit pseudogene 1 pseudo 2.529 0.9127
+202500 TCTE1 t-complex-associated-testis-expressed 1 protein-coding 1.385 1.505
+202559 KHDRBS2 KH RNA binding domain containing, signal transduction associated 2 protein-coding 1.485 1.895
+2026 ENO2 enolase 2 protein-coding 9.939 1.88
+2027 ENO3 enolase 3 protein-coding 6.014 1.69
+202781 PAXIP1-AS1 PAXIP1 antisense RNA 1 (head to head) ncRNA 7.7 0.913
+2028 ENPEP glutamyl aminopeptidase protein-coding 7.368 2.084
+2029 ENSA endosulfine alpha protein-coding 11.95 0.5589
+202915 TMEM184A transmembrane protein 184A protein-coding 7.883 3.031
203 AK1 adenylate kinase 1 protein-coding 9.666 1.2
2030 SLC29A1 solute carrier family 29 member 1 (Augustine blood group) protein-coding 10.36 1.087
-203054 ADCK5 aarF domain containing kinase 5 protein-coding 7.731 1.009
-203062 TSNARE1 t-SNARE domain containing 1 protein-coding 8.028 0.7893
-203068 TUBB tubulin beta class I protein-coding 14.08 0.8029
-203069 R3HCC1 R3H domain and coiled-coil containing 1 protein-coding 9.346 0.6744
-203100 HTRA4 HtrA serine peptidase 4 protein-coding 2.686 1.822
-203102 ADAM32 ADAM metallopeptidase domain 32 protein-coding 2.801 1.792
-203111 ERICH5 glutamate rich 5 protein-coding 4.55 2.871
-203197 TMEM268 transmembrane protein 268 protein-coding 8.961 0.9381
-203228 C9orf72 chromosome 9 open reading frame 72 protein-coding 8.084 0.9323
-203238 CCDC171 coiled-coil domain containing 171 protein-coding 5.193 1.082
-203245 NAIF1 nuclear apoptosis inducing factor 1 protein-coding 7.791 0.4181
-203259 FAM219A family with sequence similarity 219 member A protein-coding 9.016 0.9363
-203260 CCDC107 coiled-coil domain containing 107 protein-coding 8.794 0.9234
+203054 ADCK5 aarF domain containing kinase 5 protein-coding 7.731 1.008
+203062 TSNARE1 t-SNARE domain containing 1 protein-coding 8.029 0.789
+203068 TUBB tubulin beta class I protein-coding 14.08 0.8031
+203069 R3HCC1 R3H domain and coiled-coil containing 1 protein-coding 9.346 0.6742
+203100 HTRA4 HtrA serine peptidase 4 protein-coding 2.686 1.824
+203102 ADAM32 ADAM metallopeptidase domain 32 protein-coding 2.802 1.792
+203111 ERICH5 glutamate rich 5 protein-coding 4.551 2.871
+203197 TMEM268 transmembrane protein 268 protein-coding 8.961 0.9378
+203228 C9orf72 chromosome 9 open reading frame 72 protein-coding 8.085 0.9325
+203238 CCDC171 coiled-coil domain containing 171 protein-coding 5.194 1.081
+203245 NAIF1 nuclear apoptosis inducing factor 1 protein-coding 7.791 0.4179
+203259 FAM219A family with sequence similarity 219 member A protein-coding 9.016 0.9359
+203260 CCDC107 coiled-coil domain containing 107 protein-coding 8.794 0.923
203286 ANKS6 ankyrin repeat and sterile alpha motif domain containing 6 protein-coding 8.927 1.212
-2033 EP300 E1A binding protein p300 protein-coding 10.94 0.7509
+2033 EP300 E1A binding protein p300 protein-coding 10.94 0.7506
203328 SUSD3 sushi domain containing 3 protein-coding 6.379 1.957
2034 EPAS1 endothelial PAS domain protein 1 protein-coding 11.89 1.157
-203427 SLC25A43 solute carrier family 25 member 43 protein-coding 8.52 1.216
-2035 EPB41 erythrocyte membrane protein band 4.1 protein-coding 10.03 0.8573
-203522 INTS6L integrator complex subunit 6 like protein-coding 7.152 1.221
-203523 ZNF449 zinc finger protein 449 protein-coding 7.056 0.6907
+203427 SLC25A43 solute carrier family 25 member 43 protein-coding 8.519 1.216
+2035 EPB41 erythrocyte membrane protein band 4.1 protein-coding 10.03 0.857
+203522 INTS6L integrator complex subunit 6 like protein-coding 7.153 1.221
+203523 ZNF449 zinc finger protein 449 protein-coding 7.057 0.6906
203547 VMA21 VMA21, vacuolar ATPase assembly factor protein-coding 10.2 0.5903
2036 EPB41L1 erythrocyte membrane protein band 4.1 like 1 protein-coding 10.54 1.243
2037 EPB41L2 erythrocyte membrane protein band 4.1 like 2 protein-coding 10.16 1.334
-203859 ANO5 anoctamin 5 protein-coding 5.249 2.493
-2039 DMTN dematin actin binding protein protein-coding 9.257 1.533
-204 AK2 adenylate kinase 2 protein-coding 11.14 0.6296
+203859 ANO5 anoctamin 5 protein-coding 5.251 2.493
+2039 DMTN dematin actin binding protein protein-coding 9.258 1.533
+204 AK2 adenylate kinase 2 protein-coding 11.14 0.6297
2040 STOM stomatin protein-coding 11.85 1.129
2041 EPHA1 EPH receptor A1 protein-coding 7.535 2.895
-2042 EPHA3 EPH receptor A3 protein-coding 6.206 2.242
-204219 CERS3 ceramide synthase 3 protein-coding 2.712 3.318
-2043 EPHA4 EPH receptor A4 protein-coding 7.984 1.944
+2042 EPHA3 EPH receptor A3 protein-coding 6.209 2.244
+204219 CERS3 ceramide synthase 3 protein-coding 2.711 3.317
+2043 EPHA4 EPH receptor A4 protein-coding 7.984 1.943
2047 EPHB1 EPH receptor B1 protein-coding 5.528 2.38
-2048 EPHB2 EPH receptor B2 protein-coding 8.471 1.962
-204801 NLRP11 NLR family pyrin domain containing 11 protein-coding 1.579 1.836
-204851 HIPK1 homeodomain interacting protein kinase 1 protein-coding 10.56 0.7174
-2049 EPHB3 EPH receptor B3 protein-coding 8.874 2.344
-204962 SLC44A5 solute carrier family 44 member 5 protein-coding 5.389 2.827
-205 AK4 adenylate kinase 4 protein-coding 7.987 1.729
+2048 EPHB2 EPH receptor B2 protein-coding 8.47 1.962
+204801 NLRP11 NLR family pyrin domain containing 11 protein-coding 1.58 1.836
+204851 HIPK1 homeodomain interacting protein kinase 1 protein-coding 10.56 0.7173
+2049 EPHB3 EPH receptor B3 protein-coding 8.874 2.343
+204962 SLC44A5 solute carrier family 44 member 5 protein-coding 5.388 2.826
+205 AK4 adenylate kinase 4 protein-coding 7.986 1.729
2050 EPHB4 EPH receptor B4 protein-coding 10.73 1.225
-2051 EPHB6 EPH receptor B6 protein-coding 7.637 2.294
+2051 EPHB6 EPH receptor B6 protein-coding 7.638 2.294
2052 EPHX1 epoxide hydrolase 1 protein-coding 11.35 1.6
-205251 SMIM37 small integral membrane protein 37 protein-coding 8.035 1.104
-2053 EPHX2 epoxide hydrolase 2 protein-coding 8.639 1.807
-205327 C2orf69 chromosome 2 open reading frame 69 protein-coding 8.592 0.6425
+205251 SMIM37 small integral membrane protein 37 protein-coding 8.035 1.103
+2053 EPHX2 epoxide hydrolase 2 protein-coding 8.64 1.807
+205327 C2orf69 chromosome 2 open reading frame 69 protein-coding 8.592 0.6423
2054 STX2 syntaxin 2 protein-coding 8.101 1.02
-205428 C3orf58 chromosome 3 open reading frame 58 protein-coding 8.94 1.112
-2055 CLN8 CLN8, transmembrane ER and ERGIC protein protein-coding 8.707 0.8349
-205564 SENP5 SUMO specific peptidase 5 protein-coding 9.6 0.5946
+205428 C3orf58 chromosome 3 open reading frame 58 protein-coding 8.941 1.111
+2055 CLN8 CLN8, transmembrane ER and ERGIC protein protein-coding 8.707 0.8348
+205564 SENP5 SUMO specific peptidase 5 protein-coding 9.6 0.5944
2056 EPO erythropoietin protein-coding 1.58 1.8
-2057 EPOR erythropoietin receptor protein-coding 7.059 1.48
-205717 USF3 upstream transcription factor family member 3 protein-coding 8.987 0.7584
-2058 EPRS glutamyl-prolyl-tRNA synthetase protein-coding 11.53 0.6135
+2057 EPOR erythropoietin receptor protein-coding 7.06 1.48
+205717 USF3 upstream transcription factor family member 3 protein-coding 8.987 0.7582
+2058 EPRS glutamyl-prolyl-tRNA synthetase protein-coding 11.53 0.6134
2059 EPS8 epidermal growth factor receptor pathway substrate 8 protein-coding 10.06 1.506
-2060 EPS15 epidermal growth factor receptor pathway substrate 15 protein-coding 10.52 0.532
-2063 NR2F6 nuclear receptor subfamily 2 group F member 6 protein-coding 10.03 0.9856
+2060 EPS15 epidermal growth factor receptor pathway substrate 15 protein-coding 10.52 0.5319
+2063 NR2F6 nuclear receptor subfamily 2 group F member 6 protein-coding 10.03 0.9854
206338 LVRN laeverin protein-coding 1.977 1.495
-206358 SLC36A1 solute carrier family 36 member 1 protein-coding 8.58 0.9794
-2064 ERBB2 erb-b2 receptor tyrosine kinase 2 protein-coding 11.71 1.631
-206412 C6orf163 chromosome 6 open reading frame 163 protein-coding 2.716 1.117
-206426 PIP5K1P1 phosphatidylinositol-4-phosphate 5-kinase type 1 pseudogene 1 pseudo 1.226 0.8667
-2065 ERBB3 erb-b2 receptor tyrosine kinase 3 protein-coding 10.82 2.57
-2067 ERCC1 ERCC excision repair 1, endonuclease non-catalytic subunit protein-coding 9.84 0.6355
-2068 ERCC2 ERCC excision repair 2, TFIIH core complex helicase subunit protein-coding 8.898 0.6145
-2069 EREG epiregulin protein-coding 3.783 3.315
-207 AKT1 AKT serine/threonine kinase 1 protein-coding 11.9 0.5475
-2070 EYA4 EYA transcriptional coactivator and phosphatase 4 protein-coding 3.876 2.552
-207063 DHRSX dehydrogenase/reductase X-linked protein-coding 8.811 0.7485
-2071 ERCC3 ERCC excision repair 3, TFIIH core complex helicase subunit protein-coding 10.04 0.3972
-2072 ERCC4 ERCC excision repair 4, endonuclease catalytic subunit protein-coding 7.813 0.7059
-2073 ERCC5 ERCC excision repair 5, endonuclease protein-coding 10.11 0.5845
-2074 ERCC6 ERCC excision repair 6, chromatin remodeling factor protein-coding 7.867 0.7724
-2077 ERF ETS2 repressor factor protein-coding 10.18 0.716
-2078 ERG ERG, ETS transcription factor protein-coding 7.831 1.406
-2079 ERH ERH, mRNA splicing and mitosis factor protein-coding 10.9 0.5474
-208 AKT2 AKT serine/threonine kinase 2 protein-coding 11.31 0.628
-2081 ERN1 endoplasmic reticulum to nucleus signaling 1 protein-coding 6.679 1.549
-2091 FBL fibrillarin protein-coding 11.43 0.8763
-2098 ESD esterase D protein-coding 10.65 0.6326
-2099 ESR1 estrogen receptor 1 protein-coding 6.58 3.068
-21 ABCA3 ATP binding cassette subfamily A member 3 protein-coding 9.376 2.341
-210 ALAD aminolevulinate dehydratase protein-coding 10.17 0.8003
+206358 SLC36A1 solute carrier family 36 member 1 protein-coding 8.581 0.9801
+2064 ERBB2 erb-b2 receptor tyrosine kinase 2 protein-coding 11.71 1.632
+206412 C6orf163 chromosome 6 open reading frame 163 protein-coding 2.717 1.117
+206426 PIP5K1P1 phosphatidylinositol-4-phosphate 5-kinase type 1 pseudogene 1 pseudo 1.226 0.8665
+2065 ERBB3 erb-b2 receptor tyrosine kinase 3 protein-coding 10.82 2.571
+2067 ERCC1 ERCC excision repair 1, endonuclease non-catalytic subunit protein-coding 9.84 0.6353
+2068 ERCC2 ERCC excision repair 2, TFIIH core complex helicase subunit protein-coding 8.898 0.6143
+2069 EREG epiregulin protein-coding 3.782 3.314
+207 AKT1 AKT serine/threonine kinase 1 protein-coding 11.9 0.5473
+2070 EYA4 EYA transcriptional coactivator and phosphatase 4 protein-coding 3.878 2.552
+207063 DHRSX dehydrogenase/reductase X-linked protein-coding 8.811 0.7482
+2071 ERCC3 ERCC excision repair 3, TFIIH core complex helicase subunit protein-coding 10.04 0.397
+2072 ERCC4 ERCC excision repair 4, endonuclease catalytic subunit protein-coding 7.813 0.7056
+2073 ERCC5 ERCC excision repair 5, endonuclease protein-coding 10.11 0.5843
+2074 ERCC6 ERCC excision repair 6, chromatin remodeling factor protein-coding 7.867 0.7721
+2077 ERF ETS2 repressor factor protein-coding 10.18 0.7157
+2078 ERG ERG, ETS transcription factor protein-coding 7.832 1.406
+2079 ERH ERH, mRNA splicing and mitosis factor protein-coding 10.9 0.5475
+208 AKT2 AKT serine/threonine kinase 2 protein-coding 11.31 0.6278
+2081 ERN1 endoplasmic reticulum to nucleus signaling 1 protein-coding 6.681 1.549
+2091 FBL fibrillarin protein-coding 11.43 0.8761
+2098 ESD esterase D protein-coding 10.65 0.6324
+2099 ESR1 estrogen receptor 1 protein-coding 6.58 3.067
+21 ABCA3 ATP binding cassette subfamily A member 3 protein-coding 9.377 2.34
+210 ALAD aminolevulinate dehydratase protein-coding 10.17 0.8005
2100 ESR2 estrogen receptor 2 protein-coding 3.741 1.256
-2101 ESRRA estrogen related receptor alpha protein-coding 10.07 0.8825
-2103 ESRRB estrogen related receptor beta protein-coding 1.73 1.505
-2107 ETF1 eukaryotic translation termination factor 1 protein-coding 11.28 0.4802
-2108 ETFA electron transfer flavoprotein alpha subunit protein-coding 10.46 0.7332
-2109 ETFB electron transfer flavoprotein beta subunit protein-coding 10.67 1.135
+2101 ESRRA estrogen related receptor alpha protein-coding 10.07 0.8823
+2103 ESRRB estrogen related receptor beta protein-coding 1.73 1.504
+2107 ETF1 eukaryotic translation termination factor 1 protein-coding 11.28 0.4801
+2108 ETFA electron transfer flavoprotein alpha subunit protein-coding 10.46 0.7329
+2109 ETFB electron transfer flavoprotein beta subunit protein-coding 10.66 1.134
211 ALAS1 5'-aminolevulinate synthase 1 protein-coding 10.28 0.8697
-2110 ETFDH electron transfer flavoprotein dehydrogenase protein-coding 8.561 0.789
-2113 ETS1 ETS proto-oncogene 1, transcription factor protein-coding 10.67 1.193
-2114 ETS2 ETS proto-oncogene 2, transcription factor protein-coding 11.25 1.302
-2115 ETV1 ETS variant 1 protein-coding 8.13 2.113
-2116 ETV2 ETS variant 2 protein-coding 3.79 1.269
+2110 ETFDH electron transfer flavoprotein dehydrogenase protein-coding 8.561 0.7887
+2113 ETS1 ETS proto-oncogene 1, transcription factor protein-coding 10.68 1.194
+2114 ETS2 ETS proto-oncogene 2, transcription factor protein-coding 11.25 1.301
+2115 ETV1 ETS variant 1 protein-coding 8.131 2.112
+2116 ETV2 ETS variant 2 protein-coding 3.79 1.268
2117 ETV3 ETS variant 3 protein-coding 6.972 1.458
2118 ETV4 ETS variant 4 protein-coding 7.795 2.775
-2119 ETV5 ETS variant 5 protein-coding 9.109 1.554
-212 ALAS2 5'-aminolevulinate synthase 2 protein-coding 1.112 1.404
-2120 ETV6 ETS variant 6 protein-coding 9.951 0.8154
-2121 EVC EvC ciliary complex subunit 1 protein-coding 8.573 1.767
+2119 ETV5 ETS variant 5 protein-coding 9.11 1.553
+212 ALAS2 5'-aminolevulinate synthase 2 protein-coding 1.113 1.403
+2120 ETV6 ETS variant 6 protein-coding 9.951 0.8153
+2121 EVC EvC ciliary complex subunit 1 protein-coding 8.574 1.766
2122 MECOM MDS1 and EVI1 complex locus protein-coding 8.622 2.074
2123 EVI2A ecotropic viral integration site 2A protein-coding 7.25 1.722
-2124 EVI2B ecotropic viral integration site 2B protein-coding 7.766 1.61
+2124 EVI2B ecotropic viral integration site 2B protein-coding 7.767 1.611
2125 EVPL envoplakin protein-coding 8.899 3.666
-213 ALB albumin protein-coding 3.561 4.361
-2130 EWSR1 EWS RNA binding protein 1 protein-coding 12.14 0.4323
-2131 EXT1 exostosin glycosyltransferase 1 protein-coding 10.13 0.9702
-2132 EXT2 exostosin glycosyltransferase 2 protein-coding 10.77 0.582
-2134 EXTL1 exostosin like glycosyltransferase 1 protein-coding 3.457 2.444
-2135 EXTL2 exostosin like glycosyltransferase 2 protein-coding 8.332 0.8126
-2137 EXTL3 exostosin like glycosyltransferase 3 protein-coding 10.21 0.8214
-2138 EYA1 EYA transcriptional coactivator and phosphatase 1 protein-coding 3.836 2.936
+213 ALB albumin protein-coding 3.562 4.36
+2130 EWSR1 EWS RNA binding protein 1 protein-coding 12.14 0.4322
+2131 EXT1 exostosin glycosyltransferase 1 protein-coding 10.13 0.97
+2132 EXT2 exostosin glycosyltransferase 2 protein-coding 10.77 0.5818
+2134 EXTL1 exostosin like glycosyltransferase 1 protein-coding 3.457 2.443
+2135 EXTL2 exostosin like glycosyltransferase 2 protein-coding 8.332 0.8122
+2137 EXTL3 exostosin like glycosyltransferase 3 protein-coding 10.21 0.8212
+2138 EYA1 EYA transcriptional coactivator and phosphatase 1 protein-coding 3.836 2.935
2139 EYA2 EYA transcriptional coactivator and phosphatase 2 protein-coding 7.165 2.854
-214 ALCAM activated leukocyte cell adhesion molecule protein-coding 10.91 1.594
-2140 EYA3 EYA transcriptional coactivator and phosphatase 3 protein-coding 6.69 1.094
-2145 EZH1 enhancer of zeste 1 polycomb repressive complex 2 subunit protein-coding 9.504 0.7515
-2146 EZH2 enhancer of zeste 2 polycomb repressive complex 2 subunit protein-coding 8.278 1.411
-2147 F2 coagulation factor II, thrombin protein-coding 1.588 3.302
+214 ALCAM activated leukocyte cell adhesion molecule protein-coding 10.91 1.593
+2140 EYA3 EYA transcriptional coactivator and phosphatase 3 protein-coding 6.69 1.093
+2145 EZH1 enhancer of zeste 1 polycomb repressive complex 2 subunit protein-coding 9.505 0.7515
+2146 EZH2 enhancer of zeste 2 polycomb repressive complex 2 subunit protein-coding 8.277 1.413
+2147 F2 coagulation factor II, thrombin protein-coding 1.586 3.3
2149 F2R coagulation factor II thrombin receptor protein-coding 9.692 1.351
-215 ABCD1 ATP binding cassette subfamily D member 1 protein-coding 8.857 0.9598
+215 ABCD1 ATP binding cassette subfamily D member 1 protein-coding 8.857 0.9593
2150 F2RL1 F2R like trypsin receptor 1 protein-coding 8.483 2.272
2151 F2RL2 coagulation factor II thrombin receptor like 2 protein-coding 5.5 2.521
-2152 F3 coagulation factor III, tissue factor protein-coding 9.167 2.37
-2153 F5 coagulation factor V protein-coding 6.477 3.154
-2155 F7 coagulation factor VII protein-coding 3.233 2.866
-2157 F8 coagulation factor VIII protein-coding 7.864 1.304
-2159 F10 coagulation factor X protein-coding 5.322 2.569
-216 ALDH1A1 aldehyde dehydrogenase 1 family member A1 protein-coding 10.11 2.642
-2161 F12 coagulation factor XII protein-coding 6.554 2.442
-2162 F13A1 coagulation factor XIII A chain protein-coding 8.217 2.132
+2152 F3 coagulation factor III, tissue factor protein-coding 9.169 2.37
+2153 F5 coagulation factor V protein-coding 6.479 3.153
+2155 F7 coagulation factor VII protein-coding 3.232 2.864
+2157 F8 coagulation factor VIII protein-coding 7.865 1.304
+2159 F10 coagulation factor X protein-coding 5.324 2.569
+216 ALDH1A1 aldehyde dehydrogenase 1 family member A1 protein-coding 10.11 2.641
+2161 F12 coagulation factor XII protein-coding 6.551 2.442
+2162 F13A1 coagulation factor XIII A chain protein-coding 8.218 2.132
2166 FAAH fatty acid amide hydrolase protein-coding 8.555 1.612
-2167 FABP4 fatty acid binding protein 4 protein-coding 5.159 3.163
+2167 FABP4 fatty acid binding protein 4 protein-coding 5.16 3.163
2169 FABP2 fatty acid binding protein 2 protein-coding 0.8831 1.915
217 ALDH2 aldehyde dehydrogenase 2 family member protein-coding 11.57 1.493
-2170 FABP3 fatty acid binding protein 3 protein-coding 7.149 2.063
-2171 FABP5 fatty acid binding protein 5 protein-coding 7.295 2.587
-2175 FANCA Fanconi anemia complementation group A protein-coding 7.951 1.575
-2176 FANCC Fanconi anemia complementation group C protein-coding 8.141 0.8188
-2177 FANCD2 Fanconi anemia complementation group D2 protein-coding 8.072 1.328
+2170 FABP3 fatty acid binding protein 3 protein-coding 7.15 2.062
+2171 FABP5 fatty acid binding protein 5 protein-coding 7.294 2.586
+2175 FANCA Fanconi anemia complementation group A protein-coding 7.949 1.576
+2176 FANCC Fanconi anemia complementation group C protein-coding 8.141 0.8184
+2177 FANCD2 Fanconi anemia complementation group D2 protein-coding 8.071 1.328
2178 FANCE Fanconi anemia complementation group E protein-coding 7.49 1.172
-218 ALDH3A1 aldehyde dehydrogenase 3 family member A1 protein-coding 5.678 3.561
-2180 ACSL1 acyl-CoA synthetase long chain family member 1 protein-coding 10.73 1.396
-2181 ACSL3 acyl-CoA synthetase long chain family member 3 protein-coding 11.03 0.8633
+218 ALDH3A1 aldehyde dehydrogenase 3 family member A1 protein-coding 5.678 3.56
+2180 ACSL1 acyl-CoA synthetase long chain family member 1 protein-coding 10.73 1.395
+2181 ACSL3 acyl-CoA synthetase long chain family member 3 protein-coding 11.03 0.8632
2182 ACSL4 acyl-CoA synthetase long chain family member 4 protein-coding 10.21 1.23
-2184 FAH fumarylacetoacetate hydrolase protein-coding 9.11 1.247
-2185 PTK2B protein tyrosine kinase 2 beta protein-coding 9.722 1.058
-2186 BPTF bromodomain PHD finger transcription factor protein-coding 10.57 0.7137
-2187 FANCB Fanconi anemia complementation group B protein-coding 4.295 1.49
-2188 FANCF Fanconi anemia complementation group F protein-coding 8.617 0.7307
+2184 FAH fumarylacetoacetate hydrolase protein-coding 9.109 1.246
+2185 PTK2B protein tyrosine kinase 2 beta protein-coding 9.723 1.057
+2186 BPTF bromodomain PHD finger transcription factor protein-coding 10.58 0.7134
+2187 FANCB Fanconi anemia complementation group B protein-coding 4.294 1.49
+2188 FANCF Fanconi anemia complementation group F protein-coding 8.617 0.7304
2189 FANCG Fanconi anemia complementation group G protein-coding 8.498 0.8347
219 ALDH1B1 aldehyde dehydrogenase 1 family member B1 protein-coding 9.737 1.254
2192 FBLN1 fibulin 1 protein-coding 10.94 2.3
-219285 SAMD9L sterile alpha motif domain containing 9 like protein-coding 8.898 1.484
-219293 ATAD3C ATPase family, AAA domain containing 3C protein-coding 6.005 1.825
-2193 FARSA phenylalanyl-tRNA synthetase alpha subunit protein-coding 10.56 0.5471
+219285 SAMD9L sterile alpha motif domain containing 9 like protein-coding 8.899 1.484
+219293 ATAD3C ATPase family, AAA domain containing 3C protein-coding 6.006 1.825
+2193 FARSA phenylalanyl-tRNA synthetase alpha subunit protein-coding 10.56 0.5472
219333 USP12 ubiquitin specific peptidase 12 protein-coding 7.617 1.279
-219347 TMEM254-AS1 TMEM254 antisense RNA 1 ncRNA 5.342 1.403
-219348 PLAC9 placenta specific 9 protein-coding 5.01 2.01
+219347 TMEM254-AS1 TMEM254 antisense RNA 1 ncRNA 5.343 1.402
+219348 PLAC9 placenta specific 9 protein-coding 5.012 2.01
2194 FASN fatty acid synthase protein-coding 12.29 1.515
-219402 MTIF3 mitochondrial translational initiation factor 3 protein-coding 9.402 0.6286
+219402 MTIF3 mitochondrial translational initiation factor 3 protein-coding 9.402 0.6284
2195 FAT1 FAT atypical cadherin 1 protein-coding 11.54 1.551
-219537 SMTNL1 smoothelin like 1 protein-coding 2.466 1.429
-219539 YPEL4 yippee like 4 protein-coding 4.387 1.876
-219541 MED19 mediator complex subunit 19 protein-coding 8.097 0.5221
-2196 FAT2 FAT atypical cadherin 2 protein-coding 6.01 3.505
-219623 TMEM26 transmembrane protein 26 protein-coding 5.258 1.89
-219654 ZCCHC24 zinc finger CCHC-type containing 24 protein-coding 9.272 1.524
-219670 ENKUR enkurin, TRPC channel interacting protein protein-coding 3.467 2.31
-219699 UNC5B unc-5 netrin receptor B protein-coding 9.841 1.392
-2197 FAU FAU, ubiquitin like and ribosomal protein S30 fusion protein-coding 12.8 0.7227
-219736 STOX1 storkhead box 1 protein-coding 5.939 1.96
-219738 FAM241B family with sequence similarity 241 member B protein-coding 7.313 1.257
+219537 SMTNL1 smoothelin like 1 protein-coding 2.466 1.428
+219539 YPEL4 yippee like 4 protein-coding 4.388 1.876
+219541 MED19 mediator complex subunit 19 protein-coding 8.096 0.5222
+2196 FAT2 FAT atypical cadherin 2 protein-coding 6.01 3.504
+219623 TMEM26 transmembrane protein 26 protein-coding 5.258 1.889
+219654 ZCCHC24 zinc finger CCHC-type containing 24 protein-coding 9.273 1.524
+219670 ENKUR enkurin, TRPC channel interacting protein protein-coding 3.467 2.309
+219699 UNC5B unc-5 netrin receptor B protein-coding 9.842 1.392
+2197 FAU FAU, ubiquitin like and ribosomal protein S30 fusion protein-coding 12.8 0.7226
+219736 STOX1 storkhead box 1 protein-coding 5.939 1.959
+219738 FAM241B family with sequence similarity 241 member B protein-coding 7.313 1.256
219743 TYSND1 trypsin domain containing 1 protein-coding 9.132 0.7579
-219749 ZNF25 zinc finger protein 25 protein-coding 7.832 1.065
-219771 CCNY cyclin Y protein-coding 10.76 0.4584
-219790 RTKN2 rhotekin 2 protein-coding 6.694 1.733
-219833 C11orf45 chromosome 11 open reading frame 45 protein-coding 5.343 1.308
-219844 HYLS1 HYLS1, centriolar and ciliogenesis associated protein-coding 6.908 0.878
+219749 ZNF25 zinc finger protein 25 protein-coding 7.833 1.065
+219771 CCNY cyclin Y protein-coding 10.76 0.4583
+219790 RTKN2 rhotekin 2 protein-coding 6.695 1.734
+219833 C11orf45 chromosome 11 open reading frame 45 protein-coding 5.344 1.308
+219844 HYLS1 HYLS1, centriolar and ciliogenesis associated protein-coding 6.908 0.8778
219854 TMEM218 transmembrane protein 218 protein-coding 7.947 0.6035
-219855 SLC37A2 solute carrier family 37 member 2 protein-coding 7.764 1.604
-219899 TBCEL tubulin folding cofactor E like protein-coding 8.025 0.8522
-2199 FBLN2 fibulin 2 protein-coding 9.427 2.016
+219855 SLC37A2 solute carrier family 37 member 2 protein-coding 7.765 1.604
+219899 TBCEL tubulin folding cofactor E like protein-coding 8.026 0.8521
+2199 FBLN2 fibulin 2 protein-coding 9.429 2.016
219902 TMEM136 transmembrane protein 136 protein-coding 7.095 1.411
-219927 MRPL21 mitochondrial ribosomal protein L21 protein-coding 9.367 0.733
-219931 TPCN2 two pore segment channel 2 protein-coding 8.442 0.883
-219970 GLYATL2 glycine-N-acyltransferase like 2 protein-coding 2.935 2.727
-219972 MPEG1 macrophage expressed 1 protein-coding 8.707 1.528
-219988 PATL1 PAT1 homolog 1, processing body mRNA decay factor protein-coding 10.2 0.6838
-22 ABCB7 ATP binding cassette subfamily B member 7 protein-coding 8.671 0.5203
-220 ALDH1A3 aldehyde dehydrogenase 1 family member A3 protein-coding 8.503 2.725
+219927 MRPL21 mitochondrial ribosomal protein L21 protein-coding 9.366 0.7331
+219931 TPCN2 two pore segment channel 2 protein-coding 8.442 0.8829
+219970 GLYATL2 glycine-N-acyltransferase like 2 protein-coding 2.935 2.726
+219972 MPEG1 macrophage expressed 1 protein-coding 8.708 1.529
+219988 PATL1 PAT1 homolog 1, processing body mRNA decay factor protein-coding 10.2 0.6837
+22 ABCB7 ATP binding cassette subfamily B member 7 protein-coding 8.671 0.5201
+220 ALDH1A3 aldehyde dehydrogenase 1 family member A3 protein-coding 8.504 2.725
2200 FBN1 fibrillin 1 protein-coding 10.29 1.882
-220001 VWCE von Willebrand factor C and EGF domains protein-coding 4.684 2.212
-220002 CYB561A3 cytochrome b561 family member A3 protein-coding 10.15 0.7153
+220001 VWCE von Willebrand factor C and EGF domains protein-coding 4.684 2.211
+220002 CYB561A3 cytochrome b561 family member A3 protein-coding 10.15 0.7155
220004 PPP1R32 protein phosphatase 1 regulatory subunit 32 protein-coding 4.126 1.423
-220042 DDIAS DNA damage induced apoptosis suppressor protein-coding 6.523 1.743
-220064 ORAOV1 oral cancer overexpressed 1 protein-coding 8.161 0.8072
-220074 LRTOMT leucine rich transmembrane and O-methyltransferase domain containing protein-coding 7.756 0.9244
-2201 FBN2 fibrillin 2 protein-coding 6.332 2.757
-220107 DLEU7 deleted in lymphocytic leukemia, 7 protein-coding 2.184 1.34
-220108 FAM124A family with sequence similarity 124 member A protein-coding 4.864 1.621
-220134 SKA1 spindle and kinetochore associated complex subunit 1 protein-coding 6.48 1.974
-220136 CFAP53 cilia and flagella associated protein 53 protein-coding 4.451 1.568
-220164 DOK6 docking protein 6 protein-coding 4.895 2.049
-2202 EFEMP1 EGF containing fibulin extracellular matrix protein 1 protein-coding 9.703 2.197
-220202 ATOH7 atonal bHLH transcription factor 7 protein-coding 1.773 1.272
-220213 OTUD1 OTU deubiquitinase 1 protein-coding 8.666 0.8642
-2203 FBP1 fructose-bisphosphatase 1 protein-coding 8.849 2.314
-220323 OAF out at first homolog protein-coding 9.468 1.377
-220359 TIGD3 tigger transposable element derived 3 protein-coding 4.161 1.261
-220388 CCDC89 coiled-coil domain containing 89 protein-coding 3.694 1.689
-2204 FCAR Fc fragment of IgA receptor protein-coding 1.717 1.516
-220429 CTAGE10P CTAGE family member 10, pseudogene pseudo 1.868 0.9607
-220441 RNF152 ring finger protein 152 protein-coding 5.124 1.654
-2205 FCER1A Fc fragment of IgE receptor Ia protein-coding 4.221 2.206
+220042 DDIAS DNA damage induced apoptosis suppressor protein-coding 6.521 1.744
+220064 ORAOV1 oral cancer overexpressed 1 protein-coding 8.161 0.8069
+220074 LRTOMT leucine rich transmembrane and O-methyltransferase domain containing protein-coding 7.756 0.9242
+2201 FBN2 fibrillin 2 protein-coding 6.331 2.756
+220107 DLEU7 deleted in lymphocytic leukemia, 7 protein-coding 2.184 1.339
+220108 FAM124A family with sequence similarity 124 member A protein-coding 4.866 1.621
+220134 SKA1 spindle and kinetochore associated complex subunit 1 protein-coding 6.478 1.975
+220136 CFAP53 cilia and flagella associated protein 53 protein-coding 4.452 1.568
+220164 DOK6 docking protein 6 protein-coding 4.896 2.049
+2202 EFEMP1 EGF containing fibulin extracellular matrix protein 1 protein-coding 9.704 2.197
+220202 ATOH7 atonal bHLH transcription factor 7 protein-coding 1.772 1.272
+220213 OTUD1 OTU deubiquitinase 1 protein-coding 8.666 0.8641
+2203 FBP1 fructose-bisphosphatase 1 protein-coding 8.851 2.315
+220323 OAF out at first homolog protein-coding 9.467 1.377
+220359 TIGD3 tigger transposable element derived 3 protein-coding 4.16 1.261
+220388 CCDC89 coiled-coil domain containing 89 protein-coding 3.694 1.688
+2204 FCAR Fc fragment of IgA receptor protein-coding 1.718 1.516
+220429 CTAGE10P CTAGE family member 10, pseudogene pseudo 1.868 0.9604
+220441 RNF152 ring finger protein 152 protein-coding 5.125 1.653
+2205 FCER1A Fc fragment of IgE receptor Ia protein-coding 4.223 2.206
220594 USP32P2 ubiquitin specific peptidase 32 pseudogene 2 pseudo 5.317 2.023
-2206 MS4A2 membrane spanning 4-domains A2 protein-coding 3.586 2.323
-2207 FCER1G Fc fragment of IgE receptor Ig protein-coding 8.587 1.442
-220729 LOC220729 succinate dehydrogenase complex flavoprotein subunit A pseudogene pseudo 6.993 0.8071
-2208 FCER2 Fc fragment of IgE receptor II protein-coding 2.03 2.037
-220832 FABP5P3 fatty acid binding protein 5 pseudogene 3 pseudo 1.029 0.9709
+2206 MS4A2 membrane spanning 4-domains A2 protein-coding 3.587 2.324
+2207 FCER1G Fc fragment of IgE receptor Ig protein-coding 8.587 1.443
+220729 LOC220729 succinate dehydrogenase complex flavoprotein subunit A pseudogene pseudo 6.993 0.8069
+2208 FCER2 Fc fragment of IgE receptor II protein-coding 2.032 2.039
+220832 FABP5P3 fatty acid binding protein 5 pseudogene 3 pseudo 1.029 0.9706
2209 FCGR1A Fc fragment of IgG receptor Ia protein-coding 6.032 1.891
-220929 ZNF438 zinc finger protein 438 protein-coding 7.701 0.6778
-220930 ZEB1-AS1 ZEB1 antisense RNA 1 ncRNA 6.394 1.051
-220963 SLC16A9 solute carrier family 16 member 9 protein-coding 7.253 2.673
-220965 FAM13C family with sequence similarity 13 member C protein-coding 6.001 2.122
-220972 MARCH8 membrane associated ring-CH-type finger 8 protein-coding 7.462 1.217
-220979 C10orf25 chromosome 10 open reading frame 25 protein-coding 5.666 1.051
-220988 HNRNPA3 heterogeneous nuclear ribonucleoprotein A3 protein-coding 12.3 0.4921
-220992 ZNF485 zinc finger protein 485 protein-coding 5.761 0.8702
-221 ALDH3B1 aldehyde dehydrogenase 3 family member B1 protein-coding 8.501 1.731
-2210 FCGR1B Fc fragment of IgG receptor Ib protein-coding 6.09 1.688
+220929 ZNF438 zinc finger protein 438 protein-coding 7.702 0.6781
+220930 ZEB1-AS1 ZEB1 antisense RNA 1 ncRNA 6.395 1.051
+220963 SLC16A9 solute carrier family 16 member 9 protein-coding 7.253 2.672
+220965 FAM13C family with sequence similarity 13 member C protein-coding 6.003 2.122
+220972 MARCH8 membrane associated ring-CH-type finger 8 protein-coding 7.463 1.217
+220979 C10orf25 chromosome 10 open reading frame 25 protein-coding 5.667 1.05
+220988 HNRNPA3 heterogeneous nuclear ribonucleoprotein A3 protein-coding 12.3 0.492
+220992 ZNF485 zinc finger protein 485 protein-coding 5.761 0.8704
+221 ALDH3B1 aldehyde dehydrogenase 3 family member B1 protein-coding 8.501 1.732
+2210 FCGR1B Fc fragment of IgG receptor Ib protein-coding 6.09 1.687
221002 RASGEF1A RasGEF domain family member 1A protein-coding 6.054 2.115
-221035 REEP3 receptor accessory protein 3 protein-coding 8.872 0.8852
+221035 REEP3 receptor accessory protein 3 protein-coding 8.872 0.8851
221037 JMJD1C jumonji domain containing 1C protein-coding 10.12 0.8115
-221060 C10orf111 chromosome 10 open reading frame 111 protein-coding 2.606 0.966
-221061 FAM171A1 family with sequence similarity 171 member A1 protein-coding 9.037 1.744
-221078 NSUN6 NOP2/Sun RNA methyltransferase family member 6 protein-coding 7.702 0.7778
-221079 ARL5B ADP ribosylation factor like GTPase 5B protein-coding 7.724 1.1
-221091 LRRN4CL LRRN4 C-terminal like protein-coding 4.851 2.279
-221092 HNRNPUL2 heterogeneous nuclear ribonucleoprotein U like 2 protein-coding 11.61 0.4879
-221120 ALKBH3 alkB homolog 3, alpha-ketoglutaratedependent dioxygenase protein-coding 8.216 0.8405
-221143 EEF1AKMT1 EEF1A lysine methyltransferase 1 protein-coding 6.866 0.8521
-221150 SKA3 spindle and kinetochore associated complex subunit 3 protein-coding 6.842 1.941
-221154 MICU2 mitochondrial calcium uptake 2 protein-coding 9.631 0.607
-221178 SPATA13 spermatogenesis associated 13 protein-coding 7.774 1.779
+221060 C10orf111 chromosome 10 open reading frame 111 protein-coding 2.607 0.966
+221061 FAM171A1 family with sequence similarity 171 member A1 protein-coding 9.038 1.743
+221078 NSUN6 NOP2/Sun RNA methyltransferase family member 6 protein-coding 7.702 0.7776
+221079 ARL5B ADP ribosylation factor like GTPase 5B protein-coding 7.724 1.099
+221091 LRRN4CL LRRN4 C-terminal like protein-coding 4.853 2.279
+221092 HNRNPUL2 heterogeneous nuclear ribonucleoprotein U like 2 protein-coding 11.61 0.4878
+221120 ALKBH3 alkB homolog 3, alpha-ketoglutaratedependent dioxygenase protein-coding 8.216 0.8401
+221143 EEF1AKMT1 EEF1A lysine methyltransferase 1 protein-coding 6.866 0.852
+221150 SKA3 spindle and kinetochore associated complex subunit 3 protein-coding 6.839 1.943
+221154 MICU2 mitochondrial calcium uptake 2 protein-coding 9.631 0.6069
+221178 SPATA13 spermatogenesis associated 13 protein-coding 7.775 1.779
221184 CPNE2 copine 2 protein-coding 9.618 1.036
-221188 ADGRG5 adhesion G protein-coupled receptor G5 protein-coding 4.944 1.917
+221188 ADGRG5 adhesion G protein-coupled receptor G5 protein-coding 4.945 1.918
2212 FCGR2A Fc fragment of IgG receptor IIa protein-coding 9.194 1.43
221264 AK9 adenylate kinase 9 protein-coding 6.574 1.053
-221294 NT5DC1 5'-nucleotidase domain containing 1 protein-coding 9.27 0.8757
+221294 NT5DC1 5'-nucleotidase domain containing 1 protein-coding 9.271 0.8755
2213 FCGR2B Fc fragment of IgG receptor IIb protein-coding 6.465 2.047
-221302 ZUP1 zinc finger containing ubiquitin peptidase 1 protein-coding 7.349 0.5994
-221322 TBC1D32 TBC1 domain family member 32 protein-coding 6.232 1.184
-221336 BEND6 BEN domain containing 6 protein-coding 5.253 2.095
+221302 ZUP1 zinc finger containing ubiquitin peptidase 1 protein-coding 7.349 0.6001
+221322 TBC1D32 TBC1 domain family member 32 protein-coding 6.233 1.183
+221336 BEND6 BEN domain containing 6 protein-coding 5.254 2.094
221395 ADGRF5 adhesion G protein-coupled receptor F5 protein-coding 9.23 1.684
2214 FCGR3A Fc fragment of IgG receptor IIIa protein-coding 9.591 1.791
-221400 TDRD6 tudor domain containing 6 protein-coding 3.732 1.521
-221416 C6orf223 chromosome 6 open reading frame 223 protein-coding 4.325 3.16
+221400 TDRD6 tudor domain containing 6 protein-coding 3.734 1.522
+221416 C6orf223 chromosome 6 open reading frame 223 protein-coding 4.324 3.159
221421 RSPH9 radial spoke head 9 homolog protein-coding 2.739 1.758
221424 LRRC73 leucine rich repeat containing 73 protein-coding 4.711 1.679
-221442 ADCY10P1 adenylate cyclase 10, soluble pseudogene 1 pseudo 4.952 1.573
-221443 OARD1 O-acyl-ADP-ribose deacylase 1 protein-coding 8.745 0.6093
-221458 KIF6 kinesin family member 6 protein-coding 3.56 1.982
-221468 TMEM217 transmembrane protein 217 protein-coding 4.324 1.171
-221472 FGD2 FYVE, RhoGEF and PH domain containing 2 protein-coding 6.761 1.424
-221476 PI16 peptidase inhibitor 16 protein-coding 3.995 2.949
-221477 C6orf89 chromosome 6 open reading frame 89 protein-coding 11.28 0.5142
+221442 ADCY10P1 adenylate cyclase 10, soluble pseudogene 1 pseudo 4.953 1.573
+221443 OARD1 O-acyl-ADP-ribose deacylase 1 protein-coding 8.745 0.6094
+221458 KIF6 kinesin family member 6 protein-coding 3.561 1.981
+221468 TMEM217 transmembrane protein 217 protein-coding 4.324 1.17
+221472 FGD2 FYVE, RhoGEF and PH domain containing 2 protein-coding 6.762 1.425
+221476 PI16 peptidase inhibitor 16 protein-coding 4 2.951
+221477 C6orf89 chromosome 6 open reading frame 89 protein-coding 11.28 0.5143
221481 ARMC12 armadillo repeat containing 12 protein-coding 2.507 1.629
-221491 SMIM29 small integral membrane protein 29 protein-coding 8.845 0.9447
-221496 LEMD2 LEM domain containing 2 protein-coding 10.07 0.4807
+221491 SMIM29 small integral membrane protein 29 protein-coding 8.845 0.9445
+221496 LEMD2 LEM domain containing 2 protein-coding 10.07 0.4806
2215 FCGR3B Fc fragment of IgG receptor IIIb protein-coding 4.003 2.105
-221504 ZBTB9 zinc finger and BTB domain containing 9 protein-coding 8.18 0.5679
-221527 ZBTB12 zinc finger and BTB domain containing 12 protein-coding 6.971 1.097
+221504 ZBTB9 zinc finger and BTB domain containing 9 protein-coding 8.179 0.568
+221527 ZBTB12 zinc finger and BTB domain containing 12 protein-coding 6.97 1.096
221545 C6orf136 chromosome 6 open reading frame 136 protein-coding 8.457 0.7142
221584 ZSCAN12P1 zinc finger and SCAN domain containing 12 pseudogene 1 pseudo 4.779 1.38
-221656 KDM1B lysine demethylase 1B protein-coding 9.02 0.8301
-221687 RNF182 ring finger protein 182 protein-coding 4.158 2.548
-221692 PHACTR1 phosphatase and actin regulator 1 protein-coding 4.717 1.744
+221656 KDM1B lysine demethylase 1B protein-coding 9.02 0.83
+221687 RNF182 ring finger protein 182 protein-coding 4.159 2.547
+221692 PHACTR1 phosphatase and actin regulator 1 protein-coding 4.718 1.744
2217 FCGRT Fc fragment of IgG receptor and transporter protein-coding 11.27 1.067
221710 SMIM13 small integral membrane protein 13 protein-coding 8.577 0.7883
-221711 SYCP2L synaptonemal complex protein 2 like protein-coding 2.369 1.93
+221711 SYCP2L synaptonemal complex protein 2 like protein-coding 2.37 1.93
221749 PXDC1 PX domain containing 1 protein-coding 9.32 1.162
-221785 ZSCAN25 zinc finger and SCAN domain containing 25 protein-coding 8.535 0.5364
-221786 FAM200A family with sequence similarity 200 member A protein-coding 7.65 0.631
-2218 FKTN fukutin protein-coding 8.775 0.6598
-221806 VWDE von Willebrand factor D and EGF domains protein-coding 3.325 2.709
-221830 TWISTNB TWIST neighbor protein-coding 9.03 0.6214
-221883 HOXA11-AS HOXA11 antisense RNA ncRNA 3.627 2.997
-221895 JAZF1 JAZF zinc finger 1 protein-coding 8.414 1.189
-2219 FCN1 ficolin 1 protein-coding 4.815 2.154
-221908 PPP1R35 protein phosphatase 1 regulatory subunit 35 protein-coding 8.177 0.9024
-221914 GPC2 glypican 2 protein-coding 4.8 2.106
-221927 BRAT1 BRCA1 associated ATM activator 1 protein-coding 10.37 0.6577
-221935 SDK1 sidekick cell adhesion molecule 1 protein-coding 7.985 2.215
-221937 FOXK1 forkhead box K1 protein-coding 10.18 0.8759
+221785 ZSCAN25 zinc finger and SCAN domain containing 25 protein-coding 8.535 0.5363
+221786 FAM200A family with sequence similarity 200 member A protein-coding 7.651 0.631
+2218 FKTN fukutin protein-coding 8.775 0.6595
+221806 VWDE von Willebrand factor D and EGF domains protein-coding 3.327 2.709
+221830 TWISTNB TWIST neighbor protein-coding 9.03 0.6212
+221883 HOXA11-AS HOXA11 antisense RNA ncRNA 3.627 2.998
+221895 JAZF1 JAZF zinc finger 1 protein-coding 8.415 1.189
+2219 FCN1 ficolin 1 protein-coding 4.816 2.155
+221908 PPP1R35 protein phosphatase 1 regulatory subunit 35 protein-coding 8.177 0.9021
+221914 GPC2 glypican 2 protein-coding 4.8 2.105
+221927 BRAT1 BRCA1 associated ATM activator 1 protein-coding 10.37 0.6575
+221935 SDK1 sidekick cell adhesion molecule 1 protein-coding 7.985 2.214
+221937 FOXK1 forkhead box K1 protein-coding 10.18 0.876
221955 DAGLB diacylglycerol lipase beta protein-coding 9.129 0.5434
-221960 CCZ1B CCZ1 homolog B, vacuolar protein trafficking and biogenesis associated protein-coding 9.125 0.8046
-221981 THSD7A thrombospondin type 1 domain containing 7A protein-coding 5.299 2.124
-222 ALDH3B2 aldehyde dehydrogenase 3 family member B2 protein-coding 5.839 4.078
+221960 CCZ1B CCZ1 homolog B, vacuolar protein trafficking and biogenesis associated protein-coding 9.124 0.8047
+221981 THSD7A thrombospondin type 1 domain containing 7A protein-coding 5.3 2.123
+222 ALDH3B2 aldehyde dehydrogenase 3 family member B2 protein-coding 5.836 4.078
222068 TMED4 transmembrane p24 trafficking protein 4 protein-coding 10.22 0.702
-222161 DKFZP586I1420 uncharacterized protein DKFZp586I1420 pseudo 7.704 0.806
-222166 MTURN maturin, neural progenitor differentiation regulator homolog protein-coding 9.528 1.562
-222171 PRR15 proline rich 15 protein-coding 6.476 3.152
+222161 DKFZP586I1420 uncharacterized protein DKFZp586I1420 pseudo 7.704 0.8058
+222166 MTURN maturin, neural progenitor differentiation regulator homolog protein-coding 9.529 1.562
+222171 PRR15 proline rich 15 protein-coding 6.476 3.15
222183 SRRM3 serine/arginine repetitive matrix 3 protein-coding 6.483 2.108
-222194 RSBN1L round spermatid basic protein 1 like protein-coding 8.544 0.6737
-2222 FDFT1 farnesyl-diphosphate farnesyltransferase 1 protein-coding 11.3 0.8779
-222223 KIAA1324L KIAA1324 like protein-coding 7.106 2.016
+222194 RSBN1L round spermatid basic protein 1 like protein-coding 8.544 0.6736
+2222 FDFT1 farnesyl-diphosphate farnesyltransferase 1 protein-coding 11.3 0.8778
+222223 KIAA1324L KIAA1324 like protein-coding 7.108 2.015
222229 LRWD1 leucine rich repeats and WD repeat domain containing 1 protein-coding 8.822 0.715
-222234 FAM185A family with sequence similarity 185 member A protein-coding 6.521 0.5486
-222235 FBXL13 F-box and leucine rich repeat protein 13 protein-coding 3.179 1.378
-222236 NAPEPLD N-acyl phosphatidylethanolamine phospholipase D protein-coding 8.847 0.738
-222255 ATXN7L1 ataxin 7 like 1 protein-coding 7.493 0.719
+222234 FAM185A family with sequence similarity 185 member A protein-coding 6.521 0.5484
+222235 FBXL13 F-box and leucine rich repeat protein 13 protein-coding 3.179 1.377
+222236 NAPEPLD N-acyl phosphatidylethanolamine phospholipase D protein-coding 8.847 0.7379
+222255 ATXN7L1 ataxin 7 like 1 protein-coding 7.494 0.719
222256 CDHR3 cadherin related family member 3 protein-coding 4.868 1.939
-222389 BEND7 BEN domain containing 7 protein-coding 7.501 1.876
-2224 FDPS farnesyl diphosphate synthase protein-coding 11.18 0.7821
-222484 LNX2 ligand of numb-protein X 2 protein-coding 8.809 1.015
-222487 ADGRG3 adhesion G protein-coupled receptor G3 protein-coding 3.744 1.766
-222537 HS3ST5 heparan sulfate-glucosamine 3-sulfotransferase 5 protein-coding 1.885 2.101
-222553 SLC35F1 solute carrier family 35 member F1 protein-coding 3.992 2.546
-222584 FAM83B family with sequence similarity 83 member B protein-coding 4.779 3.48
-222642 TSPO2 translocator protein 2 protein-coding 0.8246 1.192
-222643 UNC5CL unc-5 family C-terminal like protein-coding 6.221 2.285
-222658 KCTD20 potassium channel tetramerization domain containing 20 protein-coding 10.18 0.8952
+222389 BEND7 BEN domain containing 7 protein-coding 7.502 1.876
+2224 FDPS farnesyl diphosphate synthase protein-coding 11.18 0.782
+222484 LNX2 ligand of numb-protein X 2 protein-coding 8.81 1.015
+222487 ADGRG3 adhesion G protein-coupled receptor G3 protein-coding 3.744 1.765
+222537 HS3ST5 heparan sulfate-glucosamine 3-sulfotransferase 5 protein-coding 1.886 2.101
+222553 SLC35F1 solute carrier family 35 member F1 protein-coding 3.993 2.545
+222584 FAM83B family with sequence similarity 83 member B protein-coding 4.778 3.48
+222642 TSPO2 translocator protein 2 protein-coding 0.8245 1.191
+222643 UNC5CL unc-5 family C-terminal like protein-coding 6.221 2.286
+222658 KCTD20 potassium channel tetramerization domain containing 20 protein-coding 10.18 0.8949
222662 LHFPL5 LHFPL tetraspan subfamily member 5 protein-coding 1.083 1.376
-222663 SCUBE3 signal peptide, CUB domain and EGF like domain containing 3 protein-coding 4.833 2.43
-222696 ZSCAN23 zinc finger and SCAN domain containing 23 protein-coding 3.684 2.058
-222698 NKAPL NFKB activating protein like protein-coding 2.758 1.572
-222699 TOB2P1 transducer of ERBB2, 2 pseudogene 1 pseudo 4.973 1.295
-222865 TMEM130 transmembrane protein 130 protein-coding 5.465 2.968
-222901 RPL23P8 ribosomal protein L23 pseudogene 8 pseudo 6.839 1.088
-222950 NYAP1 neuronal tyrosine phosphorylated phosphoinositide-3-kinase adaptor 1 protein-coding 4.152 2.316
-222962 SLC29A4 solute carrier family 29 member 4 protein-coding 7.33 2.176
+222663 SCUBE3 signal peptide, CUB domain and EGF like domain containing 3 protein-coding 4.833 2.429
+222696 ZSCAN23 zinc finger and SCAN domain containing 23 protein-coding 3.686 2.058
+222698 NKAPL NFKB activating protein like protein-coding 2.76 1.573
+222699 TOB2P1 transducer of ERBB2, 2 pseudogene 1 pseudo 4.972 1.295
+222865 TMEM130 transmembrane protein 130 protein-coding 5.467 2.968
+222901 RPL23P8 ribosomal protein L23 pseudogene 8 pseudo 6.838 1.087
+222950 NYAP1 neuronal tyrosine phosphorylated phosphoinositide-3-kinase adaptor 1 protein-coding 4.154 2.316
+222962 SLC29A4 solute carrier family 29 member 4 protein-coding 7.331 2.176
223 ALDH9A1 aldehyde dehydrogenase 9 family member A1 protein-coding 11.1 0.7053
-2230 FDX1 ferredoxin 1 protein-coding 8.996 0.8545
-223082 ZNRF2 zinc and ring finger 2 protein-coding 8.923 0.899
-223117 SEMA3D semaphorin 3D protein-coding 5.404 2.487
-2232 FDXR ferredoxin reductase protein-coding 8.855 1.181
-2235 FECH ferrochelatase protein-coding 9.151 0.7746
-2237 FEN1 flap structure-specific endonuclease 1 protein-coding 9.579 1.017
+2230 FDX1 ferredoxin 1 protein-coding 8.996 0.8543
+223082 ZNRF2 zinc and ring finger 2 protein-coding 8.923 0.8986
+223117 SEMA3D semaphorin 3D protein-coding 5.406 2.488
+2232 FDXR ferredoxin reductase protein-coding 8.854 1.181
+2235 FECH ferrochelatase protein-coding 9.152 0.7744
+2237 FEN1 flap structure-specific endonuclease 1 protein-coding 9.577 1.018
2239 GPC4 glypican 4 protein-coding 9.204 2.066
224 ALDH3A2 aldehyde dehydrogenase 3 family member A2 protein-coding 11.12 1.064
-2241 FER FER tyrosine kinase protein-coding 5.532 1.037
-2242 FES FES proto-oncogene, tyrosine kinase protein-coding 8.076 1.179
+2241 FER FER tyrosine kinase protein-coding 5.533 1.037
+2242 FES FES proto-oncogene, tyrosine kinase protein-coding 8.077 1.179
2245 FGD1 FYVE, RhoGEF and PH domain containing 1 protein-coding 8.276 1.26
-2247 FGF2 fibroblast growth factor 2 protein-coding 7.082 1.96
-225 ABCD2 ATP binding cassette subfamily D member 2 protein-coding 3.67 1.939
+2247 FGF2 fibroblast growth factor 2 protein-coding 7.083 1.96
+225 ABCD2 ATP binding cassette subfamily D member 2 protein-coding 3.671 1.94
2250 FGF5 fibroblast growth factor 5 protein-coding 1.465 1.784
-2252 FGF7 fibroblast growth factor 7 protein-coding 6.259 1.954
-2254 FGF9 fibroblast growth factor 9 protein-coding 3.421 2.545
-2256 FGF11 fibroblast growth factor 11 protein-coding 7.023 2.222
+2252 FGF7 fibroblast growth factor 7 protein-coding 6.261 1.954
+2254 FGF9 fibroblast growth factor 9 protein-coding 3.422 2.544
+2256 FGF11 fibroblast growth factor 11 protein-coding 7.022 2.221
225689 MAPK15 mitogen-activated protein kinase 15 protein-coding 4.705 2.746
-2258 FGF13 fibroblast growth factor 13 protein-coding 6.291 2.168
-2259 FGF14 fibroblast growth factor 14 protein-coding 5.428 2.303
-226 ALDOA aldolase, fructose-bisphosphate A protein-coding 14.63 0.8441
+2258 FGF13 fibroblast growth factor 13 protein-coding 6.292 2.168
+2259 FGF14 fibroblast growth factor 14 protein-coding 5.429 2.303
+226 ALDOA aldolase, fructose-bisphosphate A protein-coding 14.62 0.8442
2260 FGFR1 fibroblast growth factor receptor 1 protein-coding 10.22 1.637
-2261 FGFR3 fibroblast growth factor receptor 3 protein-coding 8.883 2.554
-2262 GPC5 glypican 5 protein-coding 2.006 2.256
-2263 FGFR2 fibroblast growth factor receptor 2 protein-coding 9.067 2.083
+2261 FGFR3 fibroblast growth factor receptor 3 protein-coding 8.884 2.553
+2262 GPC5 glypican 5 protein-coding 2.007 2.256
+2263 FGFR2 fibroblast growth factor receptor 2 protein-coding 9.068 2.083
2264 FGFR4 fibroblast growth factor receptor 4 protein-coding 7.224 2.876
-2268 FGR FGR proto-oncogene, Src family tyrosine kinase protein-coding 7.24 1.348
-2271 FH fumarate hydratase protein-coding 10.55 0.7318
-2272 FHIT fragile histidine triad protein-coding 5.464 1.582
-2273 FHL1 four and a half LIM domains 1 protein-coding 9.832 2.316
+2268 FGR FGR proto-oncogene, Src family tyrosine kinase protein-coding 7.241 1.349
+2271 FH fumarate hydratase protein-coding 10.55 0.7319
+2272 FHIT fragile histidine triad protein-coding 5.465 1.582
+2273 FHL1 four and a half LIM domains 1 protein-coding 9.834 2.316
2274 FHL2 four and a half LIM domains 2 protein-coding 9.619 1.887
-2275 FHL3 four and a half LIM domains 3 protein-coding 8.589 1.064
-22794 CASC3 cancer susceptibility 3 protein-coding 11.08 0.5918
+2275 FHL3 four and a half LIM domains 3 protein-coding 8.588 1.064
+22794 CASC3 cancer susceptibility 3 protein-coding 11.08 0.5916
22795 NID2 nidogen 2 protein-coding 8.61 1.756
-22796 COG2 component of oligomeric golgi complex 2 protein-coding 9.484 0.5542
-22797 TFEC transcription factor EC protein-coding 6.261 1.916
-2280 FKBP1A FK506 binding protein 1A protein-coding 12.19 0.5904
+22796 COG2 component of oligomeric golgi complex 2 protein-coding 9.484 0.554
+22797 TFEC transcription factor EC protein-coding 6.262 1.917
+2280 FKBP1A FK506 binding protein 1A protein-coding 12.19 0.5903
22800 RRAS2 RAS related 2 protein-coding 8.684 1.025
-22801 ITGA11 integrin subunit alpha 11 protein-coding 7.741 2.208
+22801 ITGA11 integrin subunit alpha 11 protein-coding 7.742 2.208
22802 CLCA4 chloride channel accessory 4 protein-coding 2.669 3.318
-22803 XRN2 5'-3' exoribonuclease 2 protein-coding 10.89 0.6146
-22806 IKZF3 IKAROS family zinc finger 3 protein-coding 3.694 2.158
-22807 IKZF2 IKAROS family zinc finger 2 protein-coding 7.695 1.637
-22808 MRAS muscle RAS oncogene homolog protein-coding 8.912 1.458
+22803 XRN2 5'-3' exoribonuclease 2 protein-coding 10.89 0.6143
+22806 IKZF3 IKAROS family zinc finger 3 protein-coding 3.695 2.159
+22807 IKZF2 IKAROS family zinc finger 2 protein-coding 7.696 1.637
+22808 MRAS muscle RAS oncogene homolog protein-coding 8.913 1.457
22809 ATF5 activating transcription factor 5 protein-coding 10.1 1.193
-2281 FKBP1B FK506 binding protein 1B protein-coding 6.248 1.481
-22818 COPZ1 coatomer protein complex subunit zeta 1 protein-coding 11.84 0.4464
-2282 FKBP1AP1 FK506 binding protein 1A pseudogene 1 pseudo 3.57 1.354
+2281 FKBP1B FK506 binding protein 1B protein-coding 6.249 1.481
+22818 COPZ1 coatomer protein complex subunit zeta 1 protein-coding 11.84 0.4465
+2282 FKBP1AP1 FK506 binding protein 1A pseudogene 1 pseudo 3.571 1.354
22820 COPG1 coatomer protein complex subunit gamma 1 protein-coding 12.22 0.5768
22821 RASA3 RAS p21 protein activator 3 protein-coding 8.917 1.312
22822 PHLDA1 pleckstrin homology like domain family A member 1 protein-coding 10.85 1.558
-22823 MTF2 metal response element binding transcription factor 2 protein-coding 8.77 0.7122
+22823 MTF2 metal response element binding transcription factor 2 protein-coding 8.77 0.712
22824 HSPA4L heat shock protein family A (Hsp70) member 4 like protein-coding 7.144 1.838
-22826 DNAJC8 DnaJ heat shock protein family (Hsp40) member C8 protein-coding 10.89 0.4406
+22826 DNAJC8 DnaJ heat shock protein family (Hsp40) member C8 protein-coding 10.89 0.4405
22827 PUF60 poly(U) binding splicing factor 60 protein-coding 11.73 0.6781
-22828 SCAF8 SR-related CTD associated factor 8 protein-coding 9.955 0.554
-22829 NLGN4Y neuroligin 4, Y-linked protein-coding 3.716 3.238
-22832 CEP162 centrosomal protein 162 protein-coding 7.402 0.8068
-22834 ZNF652 zinc finger protein 652 protein-coding 9.964 0.7628
-22835 ZFP30 ZFP30 zinc finger protein protein-coding 7.372 1.137
+22828 SCAF8 SR-related CTD associated factor 8 protein-coding 9.955 0.5538
+22829 NLGN4Y neuroligin 4, Y-linked protein-coding 3.717 3.239
+22832 CEP162 centrosomal protein 162 protein-coding 7.403 0.8067
+22834 ZNF652 zinc finger protein 652 protein-coding 9.965 0.7626
+22835 ZFP30 ZFP30 zinc finger protein protein-coding 7.373 1.137
22836 RHOBTB3 Rho related BTB domain containing 3 protein-coding 9.967 1.629
-22837 COBLL1 cordon-bleu WH2 repeat protein like 1 protein-coding 9.444 1.417
-22838 RNF44 ring finger protein 44 protein-coding 10.28 0.6476
-22839 DLGAP4 DLG associated protein 4 protein-coding 11.1 0.5612
-22841 RAB11FIP2 RAB11 family interacting protein 2 protein-coding 8.607 0.8362
-22843 PPM1E protein phosphatase, Mg2+/Mn2+ dependent 1E protein-coding 4.698 2.48
-22844 FRMPD1 FERM and PDZ domain containing 1 protein-coding 3.096 2.209
-22845 DOLK dolichol kinase protein-coding 8.92 0.5286
+22837 COBLL1 cordon-bleu WH2 repeat protein like 1 protein-coding 9.445 1.417
+22838 RNF44 ring finger protein 44 protein-coding 10.28 0.6475
+22839 DLGAP4 DLG associated protein 4 protein-coding 11.1 0.5611
+22841 RAB11FIP2 RAB11 family interacting protein 2 protein-coding 8.608 0.8362
+22843 PPM1E protein phosphatase, Mg2+/Mn2+ dependent 1E protein-coding 4.699 2.479
+22844 FRMPD1 FERM and PDZ domain containing 1 protein-coding 3.097 2.208
+22845 DOLK dolichol kinase protein-coding 8.92 0.5285
22846 VASH1 vasohibin 1 protein-coding 9.154 1.224
-22847 ZNF507 zinc finger protein 507 protein-coding 9.063 0.587
-22848 AAK1 AP2 associated kinase 1 protein-coding 9.915 0.7396
-22849 CPEB3 cytoplasmic polyadenylation element binding protein 3 protein-coding 7.066 1.073
-22850 ADNP2 ADNP homeobox 2 protein-coding 9.217 0.606
-22852 ANKRD26 ankyrin repeat domain 26 protein-coding 7.351 0.8976
+22847 ZNF507 zinc finger protein 507 protein-coding 9.064 0.5869
+22848 AAK1 AP2 associated kinase 1 protein-coding 9.916 0.7397
+22849 CPEB3 cytoplasmic polyadenylation element binding protein 3 protein-coding 7.068 1.073
+22850 ADNP2 ADNP homeobox 2 protein-coding 9.217 0.6057
+22852 ANKRD26 ankyrin repeat domain 26 protein-coding 7.351 0.8973
22853 LMTK2 lemur tyrosine kinase 2 protein-coding 8.305 1.353
-22854 NTNG1 netrin G1 protein-coding 3.392 2.813
-22856 CHSY1 chondroitin sulfate synthase 1 protein-coding 9.92 0.8801
-22858 ICK intestinal cell kinase protein-coding 9.292 0.9047
-22859 ADGRL1 adhesion G protein-coupled receptor L1 protein-coding 9.738 1.491
+22854 NTNG1 netrin G1 protein-coding 3.395 2.814
+22856 CHSY1 chondroitin sulfate synthase 1 protein-coding 9.92 0.8797
+22858 ICK intestinal cell kinase protein-coding 9.292 0.9044
+22859 ADGRL1 adhesion G protein-coupled receptor L1 protein-coding 9.739 1.491
2286 FKBP2 FK506 binding protein 2 protein-coding 10.27 0.9436
-22861 NLRP1 NLR family pyrin domain containing 1 protein-coding 8.02 1.494
-22862 FNDC3A fibronectin type III domain containing 3A protein-coding 10.51 0.9013
-22863 ATG14 autophagy related 14 protein-coding 8.997 0.5419
+22861 NLRP1 NLR family pyrin domain containing 1 protein-coding 8.022 1.494
+22862 FNDC3A fibronectin type III domain containing 3A protein-coding 10.51 0.9012
+22863 ATG14 autophagy related 14 protein-coding 8.998 0.5419
22864 R3HDM2 R3H domain containing 2 protein-coding 10.41 0.534
-22866 CNKSR2 connector enhancer of kinase suppressor of Ras 2 protein-coding 2.828 2.558
-22868 FASTKD2 FAST kinase domains 2 protein-coding 9.712 0.4457
-22869 ZNF510 zinc finger protein 510 protein-coding 7.887 0.7325
+22866 CNKSR2 connector enhancer of kinase suppressor of Ras 2 protein-coding 2.83 2.558
+22868 FASTKD2 FAST kinase domains 2 protein-coding 9.712 0.4456
+22869 ZNF510 zinc finger protein 510 protein-coding 7.887 0.7324
2287 FKBP3 FK506 binding protein 3 protein-coding 10.33 0.6013
-22870 PPP6R1 protein phosphatase 6 regulatory subunit 1 protein-coding 11.19 0.5706
-22871 NLGN1 neuroligin 1 protein-coding 3.97 3.084
-22872 SEC31A SEC31 homolog A, COPII coat complex component protein-coding 11.92 0.5895
-22873 DZIP1 DAZ interacting zinc finger protein 1 protein-coding 7.721 1.802
-22874 PLEKHA6 pleckstrin homology domain containing A6 protein-coding 9.23 2.163
-22875 ENPP4 ectonucleotide pyrophosphatase/phosphodiesterase 4 protein-coding 8.612 1.735
+22870 PPP6R1 protein phosphatase 6 regulatory subunit 1 protein-coding 11.19 0.5708
+22871 NLGN1 neuroligin 1 protein-coding 3.971 3.083
+22872 SEC31A SEC31 homolog A, COPII coat complex component protein-coding 11.92 0.5894
+22873 DZIP1 DAZ interacting zinc finger protein 1 protein-coding 7.722 1.802
+22874 PLEKHA6 pleckstrin homology domain containing A6 protein-coding 9.231 2.163
+22875 ENPP4 ectonucleotide pyrophosphatase/phosphodiesterase 4 protein-coding 8.613 1.735
22876 INPP5F inositol polyphosphate-5-phosphatase F protein-coding 8.945 1.07
-22877 MLXIP MLX interacting protein protein-coding 9.841 0.8842
-22878 TRAPPC8 trafficking protein particle complex 8 protein-coding 9.738 0.6686
-22879 MON1B MON1 homolog B, secretory trafficking associated protein-coding 9.444 0.7159
-2288 FKBP4 FK506 binding protein 4 protein-coding 11.83 0.9241
-22880 MORC2 MORC family CW-type zinc finger 2 protein-coding 9.938 0.531
-22881 ANKRD6 ankyrin repeat domain 6 protein-coding 7.629 1.422
-22882 ZHX2 zinc fingers and homeoboxes 2 protein-coding 9.734 0.9375
-22883 CLSTN1 calsyntenin 1 protein-coding 12.57 0.8987
-22884 WDR37 WD repeat domain 37 protein-coding 8.806 0.659
-22885 ABLIM3 actin binding LIM protein family member 3 protein-coding 8.277 1.941
-22887 FOXJ3 forkhead box J3 protein-coding 10.27 0.6303
+22877 MLXIP MLX interacting protein protein-coding 9.842 0.8842
+22878 TRAPPC8 trafficking protein particle complex 8 protein-coding 9.738 0.6683
+22879 MON1B MON1 homolog B, secretory trafficking associated protein-coding 9.445 0.7158
+2288 FKBP4 FK506 binding protein 4 protein-coding 11.83 0.9242
+22880 MORC2 MORC family CW-type zinc finger 2 protein-coding 9.938 0.5308
+22881 ANKRD6 ankyrin repeat domain 6 protein-coding 7.629 1.421
+22882 ZHX2 zinc fingers and homeoboxes 2 protein-coding 9.734 0.9371
+22883 CLSTN1 calsyntenin 1 protein-coding 12.57 0.8986
+22884 WDR37 WD repeat domain 37 protein-coding 8.807 0.6593
+22885 ABLIM3 actin binding LIM protein family member 3 protein-coding 8.277 1.94
+22887 FOXJ3 forkhead box J3 protein-coding 10.27 0.63
22888 UBOX5 U-box domain containing 5 protein-coding 8.35 0.5493
-22889 KHDC4 KH domain containing 4, pre-mRNA splicing factor protein-coding 9.789 0.7573
-2289 FKBP5 FK506 binding protein 5 protein-coding 10.45 1.552
+22889 KHDC4 KH domain containing 4, pre-mRNA splicing factor protein-coding 9.789 0.757
+2289 FKBP5 FK506 binding protein 5 protein-coding 10.45 1.553
22890 ZBTB1 zinc finger and BTB domain containing 1 protein-coding 9.529 0.5899
-22891 ZNF365 zinc finger protein 365 protein-coding 5.163 2.337
-22893 BAHD1 bromo adjacent homology domain containing 1 protein-coding 9.717 0.6329
-22894 DIS3 DIS3 homolog, exosome endoribonuclease and 3'-5' exoribonuclease protein-coding 9.841 0.5907
-22895 RPH3A rabphilin 3A protein-coding 2.235 2.711
-22897 CEP164 centrosomal protein 164 protein-coding 9.042 0.6039
-22898 DENND3 DENN domain containing 3 protein-coding 8.79 1.058
-22899 ARHGEF15 Rho guanine nucleotide exchange factor 15 protein-coding 7.312 1.297
-229 ALDOB aldolase, fructose-bisphosphate B protein-coding 3.748 3.967
-22900 CARD8 caspase recruitment domain family member 8 protein-coding 8.875 0.7321
+22891 ZNF365 zinc finger protein 365 protein-coding 5.164 2.337
+22893 BAHD1 bromo adjacent homology domain containing 1 protein-coding 9.718 0.633
+22894 DIS3 DIS3 homolog, exosome endoribonuclease and 3'-5' exoribonuclease protein-coding 9.841 0.5904
+22895 RPH3A rabphilin 3A protein-coding 2.236 2.711
+22897 CEP164 centrosomal protein 164 protein-coding 9.042 0.6037
+22898 DENND3 DENN domain containing 3 protein-coding 8.791 1.058
+22899 ARHGEF15 Rho guanine nucleotide exchange factor 15 protein-coding 7.313 1.297
+229 ALDOB aldolase, fructose-bisphosphate B protein-coding 3.75 3.968
+22900 CARD8 caspase recruitment domain family member 8 protein-coding 8.876 0.7326
22901 ARSG arylsulfatase G protein-coding 6.375 1.396
22902 RUFY3 RUN and FYVE domain containing 3 protein-coding 9.602 1.076
-22903 BTBD3 BTB domain containing 3 protein-coding 9.688 0.929
-22904 SBNO2 strawberry notch homolog 2 protein-coding 10.64 0.9054
-22905 EPN2 epsin 2 protein-coding 10.04 0.9055
+22903 BTBD3 BTB domain containing 3 protein-coding 9.689 0.9292
+22904 SBNO2 strawberry notch homolog 2 protein-coding 10.64 0.9051
+22905 EPN2 epsin 2 protein-coding 10.04 0.9052
22906 TRAK1 trafficking kinesin protein 1 protein-coding 10.58 0.7791
-22907 DHX30 DExH-box helicase 30 protein-coding 10.85 0.5087
-22908 SACM1L SAC1 like phosphatidylinositide phosphatase protein-coding 9.796 0.5887
-22909 FAN1 FANCD2 and FANCI associated nuclease 1 protein-coding 8.987 0.6349
-22911 WDR47 WD repeat domain 47 protein-coding 8.439 0.9705
-22913 RALY RALY heterogeneous nuclear ribonucleoprotein protein-coding 11.81 0.637
-22914 KLRK1 killer cell lectin like receptor K1 protein-coding 5.383 1.814
-22915 MMRN1 multimerin 1 protein-coding 5.778 2.067
+22907 DHX30 DExH-box helicase 30 protein-coding 10.85 0.5084
+22908 SACM1L SAC1 like phosphatidylinositide phosphatase protein-coding 9.796 0.5888
+22909 FAN1 FANCD2 and FANCI associated nuclease 1 protein-coding 8.988 0.6348
+22911 WDR47 WD repeat domain 47 protein-coding 8.439 0.9701
+22913 RALY RALY heterogeneous nuclear ribonucleoprotein protein-coding 11.8 0.6369
+22914 KLRK1 killer cell lectin like receptor K1 protein-coding 5.384 1.815
+22915 MMRN1 multimerin 1 protein-coding 5.781 2.069
22916 NCBP2 nuclear cap binding protein subunit 2 protein-coding 10.91 0.5781
-22917 ZP1 zona pellucida glycoprotein 1 protein-coding 1.377 1.576
-22918 CD93 CD93 molecule protein-coding 10.05 1.377
-22919 MAPRE1 microtubule associated protein RP/EB family member 1 protein-coding 11.58 0.5625
-22920 KIFAP3 kinesin associated protein 3 protein-coding 9.735 0.7926
-22921 MSRB2 methionine sulfoxide reductase B2 protein-coding 9.068 0.89
-22924 MAPRE3 microtubule associated protein RP/EB family member 3 protein-coding 8.615 1.204
-22925 PLA2R1 phospholipase A2 receptor 1 protein-coding 6.763 1.972
-22926 ATF6 activating transcription factor 6 protein-coding 10.24 0.6378
-22927 HABP4 hyaluronan binding protein 4 protein-coding 8.556 1.224
-22928 SEPHS2 selenophosphate synthetase 2 protein-coding 11.01 0.9929
-22929 SEPHS1 selenophosphate synthetase 1 protein-coding 10.09 0.5603
-22930 RAB3GAP1 RAB3 GTPase activating protein catalytic subunit 1 protein-coding 10.41 0.541
-22931 RAB18 RAB18, member RAS oncogene family protein-coding 10.77 0.6529
+22917 ZP1 zona pellucida glycoprotein 1 protein-coding 1.376 1.576
+22918 CD93 CD93 molecule protein-coding 10.05 1.378
+22919 MAPRE1 microtubule associated protein RP/EB family member 1 protein-coding 11.58 0.5623
+22920 KIFAP3 kinesin associated protein 3 protein-coding 9.735 0.7925
+22921 MSRB2 methionine sulfoxide reductase B2 protein-coding 9.068 0.8898
+22924 MAPRE3 microtubule associated protein RP/EB family member 3 protein-coding 8.616 1.204
+22925 PLA2R1 phospholipase A2 receptor 1 protein-coding 6.764 1.972
+22926 ATF6 activating transcription factor 6 protein-coding 10.24 0.6376
+22927 HABP4 hyaluronan binding protein 4 protein-coding 8.557 1.224
+22928 SEPHS2 selenophosphate synthetase 2 protein-coding 11.01 0.9925
+22929 SEPHS1 selenophosphate synthetase 1 protein-coding 10.09 0.5602
+22930 RAB3GAP1 RAB3 GTPase activating protein catalytic subunit 1 protein-coding 10.41 0.5409
+22931 RAB18 RAB18, member RAS oncogene family protein-coding 10.78 0.6528
22932 POMZP3 POM121 and ZP3 fusion protein-coding 7.408 1.029
-22933 SIRT2 sirtuin 2 protein-coding 10.26 0.8528
-22934 RPIA ribose 5-phosphate isomerase A protein-coding 8.84 0.8248
+22933 SIRT2 sirtuin 2 protein-coding 10.26 0.8524
+22934 RPIA ribose 5-phosphate isomerase A protein-coding 8.839 0.8245
22936 ELL2 elongation factor for RNA polymerase II 2 protein-coding 10.04 1.288
-22937 SCAP SREBF chaperone protein-coding 10.94 0.6222
-22938 SNW1 SNW domain containing 1 protein-coding 10.41 0.42
-22941 SHANK2 SH3 and multiple ankyrin repeat domains 2 protein-coding 7.94 2.357
+22937 SCAP SREBF chaperone protein-coding 10.94 0.6219
+22938 SNW1 SNW domain containing 1 protein-coding 10.41 0.4199
+22941 SHANK2 SH3 and multiple ankyrin repeat domains 2 protein-coding 7.941 2.357
22944 KIN Kin17 DNA and RNA binding protein protein-coding 7.735 0.5194
-22948 CCT5 chaperonin containing TCP1 subunit 5 protein-coding 12.24 0.7533
+22948 CCT5 chaperonin containing TCP1 subunit 5 protein-coding 12.24 0.7537
22949 PTGR1 prostaglandin reductase 1 protein-coding 9.666 1.398
-22950 SLC4A1AP solute carrier family 4 member 1 adaptor protein protein-coding 9.359 0.4175
-22953 P2RX2 purinergic receptor P2X 2 protein-coding 1.487 1.906
-22954 TRIM32 tripartite motif containing 32 protein-coding 8.569 0.6414
-22955 SCMH1 Scm polycomb group protein homolog 1 protein-coding 9.615 0.7986
-2296 FOXC1 forkhead box C1 protein-coding 7.831 1.667
-2297 FOXD1 forkhead box D1 protein-coding 4.694 2.758
-22973 LAMB2P1 laminin subunit beta 2 pseudogene 1 pseudo 4.208 1.238
-22974 TPX2 TPX2, microtubule nucleation factor protein-coding 9.66 2.01
-22976 PAXIP1 PAX interacting protein 1 protein-coding 8.566 0.7055
-22977 AKR7A3 aldo-keto reductase family 7 member A3 protein-coding 5.755 2.849
+22950 SLC4A1AP solute carrier family 4 member 1 adaptor protein protein-coding 9.359 0.4174
+22953 P2RX2 purinergic receptor P2X 2 protein-coding 1.49 1.908
+22954 TRIM32 tripartite motif containing 32 protein-coding 8.569 0.6412
+22955 SCMH1 Scm polycomb group protein homolog 1 protein-coding 9.616 0.7987
+2296 FOXC1 forkhead box C1 protein-coding 7.831 1.666
+2297 FOXD1 forkhead box D1 protein-coding 4.691 2.758
+22973 LAMB2P1 laminin subunit beta 2 pseudogene 1 pseudo 4.209 1.238
+22974 TPX2 TPX2, microtubule nucleation factor protein-coding 9.658 2.012
+22976 PAXIP1 PAX interacting protein 1 protein-coding 8.566 0.7052
+22977 AKR7A3 aldo-keto reductase family 7 member A3 protein-coding 5.755 2.848
22978 NT5C2 5'-nucleotidase, cytosolic II protein-coding 10.64 0.7023
-22979 EFR3B EFR3 homolog B protein-coding 6.561 2.253
+22979 EFR3B EFR3 homolog B protein-coding 6.561 2.252
2298 FOXD4 forkhead box D4 protein-coding 3.487 1.309
-22980 TCF25 transcription factor 25 protein-coding 11.11 0.563
-22981 NINL ninein like protein-coding 8.149 1.368
-22982 DIP2C disco interacting protein 2 homolog C protein-coding 9.18 1.087
-22983 MAST1 microtubule associated serine/threonine kinase 1 protein-coding 4.755 2.401
-22984 PDCD11 programmed cell death 11 protein-coding 10.15 0.6559
-22985 ACIN1 apoptotic chromatin condensation inducer 1 protein-coding 11.55 0.4822
-22987 SV2C synaptic vesicle glycoprotein 2C protein-coding 1.163 1.451
-22989 MYH15 myosin heavy chain 15 protein-coding 3.07 2.051
-2299 FOXI1 forkhead box I1 protein-coding 1.7 2.672
-22990 PCNX1 pecanex homolog 1 protein-coding 10.07 0.6383
-22992 KDM2A lysine demethylase 2A protein-coding 11.44 0.5892
-22993 HMGXB3 HMG-box containing 3 protein-coding 10.32 0.5462
-22994 CEP131 centrosomal protein 131 protein-coding 8.656 0.8884
+22980 TCF25 transcription factor 25 protein-coding 11.11 0.5628
+22981 NINL ninein like protein-coding 8.15 1.368
+22982 DIP2C disco interacting protein 2 homolog C protein-coding 9.181 1.087
+22983 MAST1 microtubule associated serine/threonine kinase 1 protein-coding 4.756 2.401
+22984 PDCD11 programmed cell death 11 protein-coding 10.15 0.6558
+22985 ACIN1 apoptotic chromatin condensation inducer 1 protein-coding 11.55 0.482
+22987 SV2C synaptic vesicle glycoprotein 2C protein-coding 1.164 1.452
+22989 MYH15 myosin heavy chain 15 protein-coding 3.072 2.051
+2299 FOXI1 forkhead box I1 protein-coding 1.702 2.673
+22990 PCNX1 pecanex homolog 1 protein-coding 10.07 0.6385
+22992 KDM2A lysine demethylase 2A protein-coding 11.44 0.589
+22993 HMGXB3 HMG-box containing 3 protein-coding 10.32 0.546
+22994 CEP131 centrosomal protein 131 protein-coding 8.655 0.8882
22995 CEP152 centrosomal protein 152 protein-coding 6.501 1.162
-22996 TTC39A tetratricopeptide repeat domain 39A protein-coding 8.234 2.455
-22997 IGSF9B immunoglobulin superfamily member 9B protein-coding 3.924 2.273
-22998 LIMCH1 LIM and calponin homology domains 1 protein-coding 9.626 1.874
-23 ABCF1 ATP binding cassette subfamily F member 1 protein-coding 10.88 0.5529
-230 ALDOC aldolase, fructose-bisphosphate C protein-coding 9.061 2.302
-23001 WDFY3 WD repeat and FYVE domain containing 3 protein-coding 10.04 0.9466
+22996 TTC39A tetratricopeptide repeat domain 39A protein-coding 8.235 2.454
+22997 IGSF9B immunoglobulin superfamily member 9B protein-coding 3.926 2.273
+22998 LIMCH1 LIM and calponin homology domains 1 protein-coding 9.627 1.874
+23 ABCF1 ATP binding cassette subfamily F member 1 protein-coding 10.88 0.5527
+230 ALDOC aldolase, fructose-bisphosphate C protein-coding 9.06 2.301
+23001 WDFY3 WD repeat and FYVE domain containing 3 protein-coding 10.04 0.9463
23002 DAAM1 dishevelled associated activator of morphogenesis 1 protein-coding 8.402 1.211
-23005 MAPKBP1 mitogen-activated protein kinase binding protein 1 protein-coding 8.996 0.8907
+23005 MAPKBP1 mitogen-activated protein kinase binding protein 1 protein-coding 8.996 0.8905
23007 PLCH1 phospholipase C eta 1 protein-coding 6.139 2.552
-23008 KLHDC10 kelch domain containing 10 protein-coding 8.98 0.9784
-2301 FOXE3 forkhead box E3 protein-coding 1.19 1.403
-23011 RAB21 RAB21, member RAS oncogene family protein-coding 10.02 0.527
-23012 STK38L serine/threonine kinase 38 like protein-coding 9.748 0.9552
-23013 SPEN spen family transcriptional repressor protein-coding 10.85 0.6928
-23014 FBXO21 F-box protein 21 protein-coding 10.18 0.715
-23015 GOLGA8A golgin A8 family member A protein-coding 9.735 1.627
-23016 EXOSC7 exosome component 7 protein-coding 9.25 0.6235
-23019 CNOT1 CCR4-NOT transcription complex subunit 1 protein-coding 11.83 0.6057
-2302 FOXJ1 forkhead box J1 protein-coding 5.231 3.45
-23020 SNRNP200 small nuclear ribonucleoprotein U5 subunit 200 protein-coding 12.49 0.5336
+23008 KLHDC10 kelch domain containing 10 protein-coding 8.98 0.9782
+2301 FOXE3 forkhead box E3 protein-coding 1.189 1.402
+23011 RAB21 RAB21, member RAS oncogene family protein-coding 10.02 0.5269
+23012 STK38L serine/threonine kinase 38 like protein-coding 9.748 0.955
+23013 SPEN spen family transcriptional repressor protein-coding 10.85 0.6926
+23014 FBXO21 F-box protein 21 protein-coding 10.18 0.7151
+23015 GOLGA8A golgin A8 family member A protein-coding 9.736 1.627
+23016 EXOSC7 exosome component 7 protein-coding 9.25 0.6234
+23019 CNOT1 CCR4-NOT transcription complex subunit 1 protein-coding 11.83 0.6055
+2302 FOXJ1 forkhead box J1 protein-coding 5.23 3.449
+23020 SNRNP200 small nuclear ribonucleoprotein U5 subunit 200 protein-coding 12.49 0.5334
23022 PALLD palladin, cytoskeletal associated protein protein-coding 11.36 1.297
-23023 TMCC1 transmembrane and coiled-coil domain family 1 protein-coding 9.628 0.7123
-23024 PDZRN3 PDZ domain containing ring finger 3 protein-coding 7.79 2.106
-23025 UNC13A unc-13 homolog A protein-coding 4.482 2.738
-23026 MYO16 myosin XVI protein-coding 3.261 2.347
-23028 KDM1A lysine demethylase 1A protein-coding 10.85 0.6869
-23029 RBM34 RNA binding motif protein 34 protein-coding 9.596 0.572
-23030 KDM4B lysine demethylase 4B protein-coding 10.19 0.8395
-23031 MAST3 microtubule associated serine/threonine kinase 3 protein-coding 8.793 0.8723
-23032 USP33 ubiquitin specific peptidase 33 protein-coding 10.23 0.5352
-23033 DOPEY1 dopey family member 1 protein-coding 9.095 0.7535
-23034 SAMD4A sterile alpha motif domain containing 4A protein-coding 8.597 1.364
-23035 PHLPP2 PH domain and leucine rich repeat protein phosphatase 2 protein-coding 7.92 0.9153
-23036 ZNF292 zinc finger protein 292 protein-coding 9.6 0.8892
-23037 PDZD2 PDZ domain containing 2 protein-coding 7.825 1.829
-23038 WDTC1 WD and tetratricopeptide repeats 1 protein-coding 10.72 0.6048
-23039 XPO7 exportin 7 protein-coding 10.68 0.5803
-23041 MON2 MON2 homolog, regulator of endosome-to-Golgi trafficking protein-coding 9.78 0.6012
-23042 PDXDC1 pyridoxal dependent decarboxylase domain containing 1 protein-coding 11.48 0.8032
+23023 TMCC1 transmembrane and coiled-coil domain family 1 protein-coding 9.628 0.7119
+23024 PDZRN3 PDZ domain containing ring finger 3 protein-coding 7.791 2.106
+23025 UNC13A unc-13 homolog A protein-coding 4.483 2.739
+23026 MYO16 myosin XVI protein-coding 3.262 2.346
+23028 KDM1A lysine demethylase 1A protein-coding 10.85 0.6868
+23029 RBM34 RNA binding motif protein 34 protein-coding 9.595 0.5721
+23030 KDM4B lysine demethylase 4B protein-coding 10.19 0.8391
+23031 MAST3 microtubule associated serine/threonine kinase 3 protein-coding 8.794 0.8724
+23032 USP33 ubiquitin specific peptidase 33 protein-coding 10.23 0.5349
+23033 DOPEY1 dopey family member 1 protein-coding 9.096 0.7535
+23034 SAMD4A sterile alpha motif domain containing 4A protein-coding 8.598 1.364
+23035 PHLPP2 PH domain and leucine rich repeat protein phosphatase 2 protein-coding 7.92 0.915
+23036 ZNF292 zinc finger protein 292 protein-coding 9.6 0.8889
+23037 PDZD2 PDZ domain containing 2 protein-coding 7.826 1.829
+23038 WDTC1 WD and tetratricopeptide repeats 1 protein-coding 10.72 0.6047
+23039 XPO7 exportin 7 protein-coding 10.68 0.5801
+23041 MON2 MON2 homolog, regulator of endosome-to-Golgi trafficking protein-coding 9.78 0.6011
+23042 PDXDC1 pyridoxal dependent decarboxylase domain containing 1 protein-coding 11.48 0.803
23043 TNIK TRAF2 and NCK interacting kinase protein-coding 7.596 2.014
-23046 KIF21B kinesin family member 21B protein-coding 7.449 1.852
-23047 PDS5B PDS5 cohesin associated factor B protein-coding 9.532 0.68
-23048 FNBP1 formin binding protein 1 protein-coding 10.22 0.931
-23049 SMG1 SMG1, nonsense mediated mRNA decay associated PI3K related kinase protein-coding 11.1 0.7203
-2305 FOXM1 forkhead box M1 protein-coding 9.266 1.958
+23046 KIF21B kinesin family member 21B protein-coding 7.449 1.853
+23047 PDS5B PDS5 cohesin associated factor B protein-coding 9.532 0.6798
+23048 FNBP1 formin binding protein 1 protein-coding 10.22 0.9317
+23049 SMG1 SMG1, nonsense mediated mRNA decay associated PI3K related kinase protein-coding 11.1 0.7202
+2305 FOXM1 forkhead box M1 protein-coding 9.263 1.959
23051 ZHX3 zinc fingers and homeoboxes 3 protein-coding 9.654 1.003
23052 ENDOD1 endonuclease domain containing 1 protein-coding 10.32 1.242
-23053 ZSWIM8 zinc finger SWIM-type containing 8 protein-coding 10.63 0.5951
-23054 NCOA6 nuclear receptor coactivator 6 protein-coding 10.6 0.6102
-23057 NMNAT2 nicotinamide nucleotide adenylyltransferase 2 protein-coding 5.827 2.528
-23059 CLUAP1 clusterin associated protein 1 protein-coding 8.709 0.7414
-2306 FOXD2 forkhead box D2 protein-coding 5.018 1.549
-23060 ZNF609 zinc finger protein 609 protein-coding 10.14 0.647
-23061 TBC1D9B TBC1 domain family member 9B protein-coding 11.65 0.5088
+23053 ZSWIM8 zinc finger SWIM-type containing 8 protein-coding 10.63 0.5952
+23054 NCOA6 nuclear receptor coactivator 6 protein-coding 10.6 0.61
+23057 NMNAT2 nicotinamide nucleotide adenylyltransferase 2 protein-coding 5.828 2.528
+23059 CLUAP1 clusterin associated protein 1 protein-coding 8.709 0.7411
+2306 FOXD2 forkhead box D2 protein-coding 5.017 1.548
+23060 ZNF609 zinc finger protein 609 protein-coding 10.14 0.6468
+23061 TBC1D9B TBC1 domain family member 9B protein-coding 11.65 0.5085
23062 GGA2 golgi associated, gamma adaptin ear containing, ARF binding protein 2 protein-coding 10.87 0.7115
-23063 WAPL WAPL cohesin release factor protein-coding 10.26 0.5376
-23064 SETX senataxin protein-coding 10.75 0.5948
-23065 EMC1 ER membrane protein complex subunit 1 protein-coding 10.28 0.6462
-23066 CAND2 cullin associated and neddylation dissociated 2 (putative) protein-coding 6.439 1.779
-23067 SETD1B SET domain containing 1B protein-coding 9.839 0.5423
-23070 CMTR1 cap methyltransferase 1 protein-coding 10.22 0.4861
-23071 ERP44 endoplasmic reticulum protein 44 protein-coding 10.7 0.5694
-23072 HECW1 HECT, C2 and WW domain containing E3 ubiquitin protein ligase 1 protein-coding 3.54 2.183
-23074 UHRF1BP1L UHRF1 binding protein 1 like protein-coding 8.739 0.8194
-23075 SWAP70 switching B cell complex subunit SWAP70 protein-coding 10.2 0.869
-23076 RRP1B ribosomal RNA processing 1B protein-coding 9.933 0.6266
+23063 WAPL WAPL cohesin release factor protein-coding 10.26 0.5375
+23064 SETX senataxin protein-coding 10.76 0.5949
+23065 EMC1 ER membrane protein complex subunit 1 protein-coding 10.28 0.646
+23066 CAND2 cullin associated and neddylation dissociated 2 (putative) protein-coding 6.44 1.778
+23067 SETD1B SET domain containing 1B protein-coding 9.84 0.5422
+23070 CMTR1 cap methyltransferase 1 protein-coding 10.22 0.486
+23071 ERP44 endoplasmic reticulum protein 44 protein-coding 10.7 0.5692
+23072 HECW1 HECT, C2 and WW domain containing E3 ubiquitin protein ligase 1 protein-coding 3.54 2.184
+23074 UHRF1BP1L UHRF1 binding protein 1 like protein-coding 8.739 0.8191
+23075 SWAP70 switching B cell complex subunit SWAP70 protein-coding 10.2 0.8687
+23076 RRP1B ribosomal RNA processing 1B protein-coding 9.932 0.6265
23077 MYCBP2 MYC binding protein 2, E3 ubiquitin protein ligase protein-coding 10.28 0.9143
-23078 VWA8 von Willebrand factor A domain containing 8 protein-coding 9.041 0.8033
-2308 FOXO1 forkhead box O1 protein-coding 9.257 0.9505
-23080 AVL9 AVL9 cell migration associated protein-coding 8.335 0.8797
-23081 KDM4C lysine demethylase 4C protein-coding 8.948 0.6268
-23082 PPRC1 peroxisome proliferator-activated receptor gamma, coactivator-related 1 protein-coding 10.03 0.6636
-23085 ERC1 ELKS/RAB6-interacting/CAST family member 1 protein-coding 10.25 0.7435
+23078 VWA8 von Willebrand factor A domain containing 8 protein-coding 9.042 0.8029
+2308 FOXO1 forkhead box O1 protein-coding 9.258 0.9508
+23080 AVL9 AVL9 cell migration associated protein-coding 8.335 0.8793
+23081 KDM4C lysine demethylase 4C protein-coding 8.949 0.6266
+23082 PPRC1 peroxisome proliferator-activated receptor gamma, coactivator-related 1 protein-coding 10.03 0.6634
+23085 ERC1 ELKS/RAB6-interacting/CAST family member 1 protein-coding 10.25 0.7433
23086 EXPH5 exophilin 5 protein-coding 7.437 1.808
-23087 TRIM35 tripartite motif containing 35 protein-coding 8.728 0.6384
-23089 PEG10 paternally expressed 10 protein-coding 8.642 3.048
-2309 FOXO3 forkhead box O3 protein-coding 10.43 0.7666
-23090 ZNF423 zinc finger protein 423 protein-coding 6.764 1.861
-23091 ZC3H13 zinc finger CCCH-type containing 13 protein-coding 10.36 0.7995
-23092 ARHGAP26 Rho GTPase activating protein 26 protein-coding 9.01 1.23
-23093 TTLL5 tubulin tyrosine ligase like 5 protein-coding 8.982 0.6091
-23094 SIPA1L3 signal induced proliferation associated 1 like 3 protein-coding 10.18 0.9417
-23095 KIF1B kinesin family member 1B protein-coding 10.65 0.9464
-23096 IQSEC2 IQ motif and Sec7 domain 2 protein-coding 8.687 1.048
-23097 CDK19 cyclin dependent kinase 19 protein-coding 9.354 0.9592
-23098 SARM1 sterile alpha and TIR motif containing 1 protein-coding 8.462 1.346
-23099 ZBTB43 zinc finger and BTB domain containing 43 protein-coding 8.576 0.6921
+23087 TRIM35 tripartite motif containing 35 protein-coding 8.729 0.6383
+23089 PEG10 paternally expressed 10 protein-coding 8.643 3.047
+2309 FOXO3 forkhead box O3 protein-coding 10.43 0.7669
+23090 ZNF423 zinc finger protein 423 protein-coding 6.766 1.861
+23091 ZC3H13 zinc finger CCCH-type containing 13 protein-coding 10.36 0.7993
+23092 ARHGAP26 Rho GTPase activating protein 26 protein-coding 9.011 1.23
+23093 TTLL5 tubulin tyrosine ligase like 5 protein-coding 8.982 0.6089
+23094 SIPA1L3 signal induced proliferation associated 1 like 3 protein-coding 10.18 0.9414
+23095 KIF1B kinesin family member 1B protein-coding 10.65 0.946
+23096 IQSEC2 IQ motif and Sec7 domain 2 protein-coding 8.688 1.048
+23097 CDK19 cyclin dependent kinase 19 protein-coding 9.354 0.9597
+23098 SARM1 sterile alpha and TIR motif containing 1 protein-coding 8.463 1.345
+23099 ZBTB43 zinc finger and BTB domain containing 43 protein-coding 8.576 0.6919
231 AKR1B1 aldo-keto reductase family 1 member B protein-coding 10.39 1.564
-2310 FOXO3B forkhead box O3B pseudogene pseudo 9.319 0.699
-23101 MCF2L2 MCF.2 cell line derived transforming sequence-like 2 protein-coding 4.011 1.956
-23102 TBC1D2B TBC1 domain family member 2B protein-coding 10.16 0.7562
-23105 FSTL4 follistatin like 4 protein-coding 4.93 2.622
-23107 MRPS27 mitochondrial ribosomal protein S27 protein-coding 10.37 0.4868
-23108 RAP1GAP2 RAP1 GTPase activating protein 2 protein-coding 8.809 1.592
-23109 DDN dendrin protein-coding 3.595 2.378
-23111 SPART spartin protein-coding 9.596 1.339
-23112 TNRC6B trinucleotide repeat containing 6B protein-coding 9.614 0.6516
-23113 CUL9 cullin 9 protein-coding 9.507 0.6424
-23114 NFASC neurofascin protein-coding 7.614 2.13
-23116 TOGARAM1 TOG array regulator of axonemal microtubules 1 protein-coding 8.457 0.8193
+2310 FOXO3B forkhead box O3B pseudogene pseudo 9.32 0.6993
+23101 MCF2L2 MCF.2 cell line derived transforming sequence-like 2 protein-coding 4.012 1.955
+23102 TBC1D2B TBC1 domain family member 2B protein-coding 10.16 0.7564
+23105 FSTL4 follistatin like 4 protein-coding 4.93 2.621
+23107 MRPS27 mitochondrial ribosomal protein S27 protein-coding 10.37 0.4866
+23108 RAP1GAP2 RAP1 GTPase activating protein 2 protein-coding 8.81 1.592
+23109 DDN dendrin protein-coding 3.593 2.379
+23111 SPART spartin protein-coding 9.597 1.339
+23112 TNRC6B trinucleotide repeat containing 6B protein-coding 9.614 0.6517
+23113 CUL9 cullin 9 protein-coding 9.508 0.6423
+23114 NFASC neurofascin protein-coding 7.616 2.13
+23116 TOGARAM1 TOG array regulator of axonemal microtubules 1 protein-coding 8.457 0.8192
23117 NPIPB3 nuclear pore complex interacting protein family member B3 protein-coding 9.33 1.279
-23118 TAB2 TGF-beta activated kinase 1 (MAP3K7) binding protein 2 protein-coding 10.74 0.6157
+23118 TAB2 TGF-beta activated kinase 1 (MAP3K7) binding protein 2 protein-coding 10.74 0.6156
23119 HIC2 HIC ZBTB transcriptional repressor 2 protein-coding 7.426 1.02
-2312 FLG filaggrin protein-coding 4.134 2.476
+2312 FLG filaggrin protein-coding 4.135 2.475
23120 ATP10B ATPase phospholipid transporting 10B (putative) protein-coding 5.034 3.641
-23122 CLASP2 cytoplasmic linker associated protein 2 protein-coding 9.796 0.9702
-23125 CAMTA2 calmodulin binding transcription activator 2 protein-coding 9.999 0.6141
-23126 POGZ pogo transposable element derived with ZNF domain protein-coding 10.81 0.6574
-23127 COLGALT2 collagen beta(1-O)galactosyltransferase 2 protein-coding 5.801 2.705
+23122 CLASP2 cytoplasmic linker associated protein 2 protein-coding 9.796 0.97
+23125 CAMTA2 calmodulin binding transcription activator 2 protein-coding 9.999 0.6142
+23126 POGZ pogo transposable element derived with ZNF domain protein-coding 10.81 0.6573
+23127 COLGALT2 collagen beta(1-O)galactosyltransferase 2 protein-coding 5.802 2.704
23129 PLXND1 plexin D1 protein-coding 10.97 1.106
-2313 FLI1 Fli-1 proto-oncogene, ETS transcription factor protein-coding 8.033 1.205
-23130 ATG2A autophagy related 2A protein-coding 9.815 0.5868
-23131 GPATCH8 G-patch domain containing 8 protein-coding 10.2 0.5776
+2313 FLI1 Fli-1 proto-oncogene, ETS transcription factor protein-coding 8.034 1.205
+23130 ATG2A autophagy related 2A protein-coding 9.815 0.5866
+23131 GPATCH8 G-patch domain containing 8 protein-coding 10.2 0.5774
23132 RAD54L2 RAD54 like 2 protein-coding 6.895 1.251
-23133 PHF8 PHD finger protein 8 protein-coding 9.874 0.74
-23135 KDM6B lysine demethylase 6B protein-coding 9.986 0.7206
-23136 EPB41L3 erythrocyte membrane protein band 4.1 like 3 protein-coding 8.616 1.714
-23137 SMC5 structural maintenance of chromosomes 5 protein-coding 9.535 0.6955
-23138 N4BP3 NEDD4 binding protein 3 protein-coding 7.368 1.493
-23139 MAST2 microtubule associated serine/threonine kinase 2 protein-coding 10.23 0.7634
-2314 FLII FLII, actin remodeling protein protein-coding 11.6 0.6287
-23140 ZZEF1 zinc finger ZZ-type and EF-hand domain containing 1 protein-coding 10.14 0.6399
-23141 ANKLE2 ankyrin repeat and LEM domain containing 2 protein-coding 10.67 0.5359
-23142 DCUN1D4 defective in cullin neddylation 1 domain containing 4 protein-coding 9.38 0.6231
-23143 LRCH1 leucine rich repeats and calponin homology domain containing 1 protein-coding 8.891 0.8513
-23144 ZC3H3 zinc finger CCCH-type containing 3 protein-coding 9.403 0.6592
-23145 SSPO SCO-spondin protein-coding 3.907 2.146
-23148 NACAD NAC alpha domain containing protein-coding 6.346 2.318
+23133 PHF8 PHD finger protein 8 protein-coding 9.874 0.7397
+23135 KDM6B lysine demethylase 6B protein-coding 9.986 0.7204
+23136 EPB41L3 erythrocyte membrane protein band 4.1 like 3 protein-coding 8.618 1.714
+23137 SMC5 structural maintenance of chromosomes 5 protein-coding 9.536 0.6954
+23138 N4BP3 NEDD4 binding protein 3 protein-coding 7.369 1.492
+23139 MAST2 microtubule associated serine/threonine kinase 2 protein-coding 10.23 0.7632
+2314 FLII FLII, actin remodeling protein protein-coding 11.6 0.6285
+23140 ZZEF1 zinc finger ZZ-type and EF-hand domain containing 1 protein-coding 10.14 0.64
+23141 ANKLE2 ankyrin repeat and LEM domain containing 2 protein-coding 10.67 0.5357
+23142 DCUN1D4 defective in cullin neddylation 1 domain containing 4 protein-coding 9.381 0.6229
+23143 LRCH1 leucine rich repeats and calponin homology domain containing 1 protein-coding 8.892 0.8514
+23144 ZC3H3 zinc finger CCCH-type containing 3 protein-coding 9.402 0.6591
+23145 SSPO SCO-spondin protein-coding 3.908 2.145
+23148 NACAD NAC alpha domain containing protein-coding 6.347 2.318
23149 FCHO1 FCH domain only 1 protein-coding 6.603 1.906
-2315 MLANA melan-A protein-coding 1.533 2.237
-23150 FRMD4B FERM domain containing 4B protein-coding 8.962 1.179
-23151 GRAMD4 GRAM domain containing 4 protein-coding 9.772 0.9365
-23152 CIC capicua transcriptional repressor protein-coding 10.77 0.6306
-23154 NCDN neurochondrin protein-coding 9.788 0.9112
-23155 CLCC1 chloride channel CLIC like 1 protein-coding 9.577 0.5197
-23157 SEPT6 septin 6 protein-coding 9.476 1.189
-23158 TBC1D9 TBC1 domain family member 9 protein-coding 9.648 1.483
-2316 FLNA filamin A protein-coding 13.85 1.373
-23160 WDR43 WD repeat domain 43 protein-coding 9.851 0.7022
-23161 SNX13 sorting nexin 13 protein-coding 9.797 0.6766
+2315 MLANA melan-A protein-coding 1.534 2.236
+23150 FRMD4B FERM domain containing 4B protein-coding 8.963 1.179
+23151 GRAMD4 GRAM domain containing 4 protein-coding 9.772 0.9363
+23152 CIC capicua transcriptional repressor protein-coding 10.77 0.6304
+23154 NCDN neurochondrin protein-coding 9.788 0.9109
+23155 CLCC1 chloride channel CLIC like 1 protein-coding 9.578 0.5196
+23157 SEPT6 septin 6 protein-coding 9.477 1.189
+23158 TBC1D9 TBC1 domain family member 9 protein-coding 9.649 1.483
+2316 FLNA filamin A protein-coding 13.85 1.374
+23160 WDR43 WD repeat domain 43 protein-coding 9.851 0.7021
+23161 SNX13 sorting nexin 13 protein-coding 9.797 0.6764
23162 MAPK8IP3 mitogen-activated protein kinase 8 interacting protein 3 protein-coding 10.08 1.108
-23163 GGA3 golgi associated, gamma adaptin ear containing, ARF binding protein 3 protein-coding 9.707 0.5073
-23164 MPRIP myosin phosphatase Rho interacting protein protein-coding 11 0.7055
-23165 NUP205 nucleoporin 205 protein-coding 10.32 0.7297
+23163 GGA3 golgi associated, gamma adaptin ear containing, ARF binding protein 3 protein-coding 9.707 0.5071
+23164 MPRIP myosin phosphatase Rho interacting protein protein-coding 11 0.7053
+23165 NUP205 nucleoporin 205 protein-coding 10.32 0.7295
23166 STAB1 stabilin 1 protein-coding 9.912 1.257
-23167 EFR3A EFR3 homolog A protein-coding 10.76 0.7481
-23168 RTF1 RTF1 homolog, Paf1/RNA polymerase II complex component protein-coding 10.52 0.4592
-23169 SLC35D1 solute carrier family 35 member D1 protein-coding 9.093 0.9251
-2317 FLNB filamin B protein-coding 12.58 1.156
+23167 EFR3A EFR3 homolog A protein-coding 10.76 0.7478
+23168 RTF1 RTF1 homolog, Paf1/RNA polymerase II complex component protein-coding 10.52 0.459
+23169 SLC35D1 solute carrier family 35 member D1 protein-coding 9.093 0.9247
+2317 FLNB filamin B protein-coding 12.58 1.157
23170 TTLL12 tubulin tyrosine ligase like 12 protein-coding 10.55 1.016
-23171 GPD1L glycerol-3-phosphate dehydrogenase 1 like protein-coding 9.614 1.264
-23172 ABRAXAS2 abraxas 2, BRISC complex subunit protein-coding 8.737 0.4234
-23173 METAP1 methionyl aminopeptidase 1 protein-coding 10.03 0.7317
-23174 ZCCHC14 zinc finger CCHC-type containing 14 protein-coding 9.909 0.7283
+23171 GPD1L glycerol-3-phosphate dehydrogenase 1 like protein-coding 9.615 1.265
+23172 ABRAXAS2 abraxas 2, BRISC complex subunit protein-coding 8.737 0.4232
+23173 METAP1 methionyl aminopeptidase 1 protein-coding 10.03 0.7316
+23174 ZCCHC14 zinc finger CCHC-type containing 14 protein-coding 9.909 0.7281
23175 LPIN1 lipin 1 protein-coding 9.395 1.005
-23176 SEPT8 septin 8 protein-coding 10.62 0.8642
-23177 CEP68 centrosomal protein 68 protein-coding 9.224 0.7067
-23178 PASK PAS domain containing serine/threonine kinase protein-coding 8.108 1.19
-23179 RGL1 ral guanine nucleotide dissociation stimulator like 1 protein-coding 8.975 1.254
-2318 FLNC filamin C protein-coding 8.363 2.62
-23180 RFTN1 raftlin, lipid raft linker 1 protein-coding 9.325 1.347
-23181 DIP2A disco interacting protein 2 homolog A protein-coding 9.552 0.6792
+23176 SEPT8 septin 8 protein-coding 10.62 0.8638
+23177 CEP68 centrosomal protein 68 protein-coding 9.224 0.7066
+23178 PASK PAS domain containing serine/threonine kinase protein-coding 8.108 1.191
+23179 RGL1 ral guanine nucleotide dissociation stimulator like 1 protein-coding 8.976 1.254
+2318 FLNC filamin C protein-coding 8.366 2.622
+23180 RFTN1 raftlin, lipid raft linker 1 protein-coding 9.326 1.347
+23181 DIP2A disco interacting protein 2 homolog A protein-coding 9.552 0.6791
23184 MESD mesoderm development LRP chaperone protein-coding 10.6 0.4724
-23185 LARP4B La ribonucleoprotein domain family member 4B protein-coding 10.56 0.5474
-23186 RCOR1 REST corepressor 1 protein-coding 9.761 0.8094
+23185 LARP4B La ribonucleoprotein domain family member 4B protein-coding 10.56 0.5472
+23186 RCOR1 REST corepressor 1 protein-coding 9.76 0.8092
23187 PHLDB1 pleckstrin homology like domain family B member 1 protein-coding 10.43 1.118
23189 KANK1 KN motif and ankyrin repeat domains 1 protein-coding 9.942 1.227
2319 FLOT2 flotillin 2 protein-coding 11.54 0.6962
-23190 UBXN4 UBX domain protein 4 protein-coding 11.51 0.5882
-23191 CYFIP1 cytoplasmic FMR1 interacting protein 1 protein-coding 11.5 0.579
-23192 ATG4B autophagy related 4B cysteine peptidase protein-coding 10.09 0.5763
-23193 GANAB glucosidase II alpha subunit protein-coding 13.2 0.4974
-23194 FBXL7 F-box and leucine rich repeat protein 7 protein-coding 7.813 1.639
-23195 MDN1 midasin AAA ATPase 1 protein-coding 9.504 1.081
-23196 FAM120A family with sequence similarity 120A protein-coding 12.05 0.5704
-23197 FAF2 Fas associated factor family member 2 protein-coding 10.58 0.4355
-23198 PSME4 proteasome activator subunit 4 protein-coding 10.76 0.7339
-23199 GSE1 Gse1 coiled-coil protein protein-coding 10.58 0.9019
+23190 UBXN4 UBX domain protein 4 protein-coding 11.51 0.5879
+23191 CYFIP1 cytoplasmic FMR1 interacting protein 1 protein-coding 11.5 0.5788
+23192 ATG4B autophagy related 4B cysteine peptidase protein-coding 10.09 0.5761
+23193 GANAB glucosidase II alpha subunit protein-coding 13.2 0.4973
+23194 FBXL7 F-box and leucine rich repeat protein 7 protein-coding 7.814 1.638
+23195 MDN1 midasin AAA ATPase 1 protein-coding 9.505 1.081
+23196 FAM120A family with sequence similarity 120A protein-coding 12.05 0.5701
+23197 FAF2 Fas associated factor family member 2 protein-coding 10.58 0.4353
+23198 PSME4 proteasome activator subunit 4 protein-coding 10.76 0.7337
+23199 GSE1 Gse1 coiled-coil protein protein-coding 10.58 0.9015
23200 ATP11B ATPase phospholipid transporting 11B (putative) protein-coding 10.22 1.16
-23201 FAM168A family with sequence similarity 168 member A protein-coding 7.361 1.313
-23203 PMPCA peptidase, mitochondrial processing alpha subunit protein-coding 10.31 0.5813
-23204 ARL6IP1 ADP ribosylation factor like GTPase 6 interacting protein 1 protein-coding 12.5 0.6548
-23205 ACSBG1 acyl-CoA synthetase bubblegum family member 1 protein-coding 3.633 2.344
-23207 PLEKHM2 pleckstrin homology and RUN domain containing M2 protein-coding 10.76 0.6166
-23208 SYT11 synaptotagmin 11 protein-coding 8.708 2.103
-23209 MLC1 megalencephalic leukoencephalopathy with subcortical cysts 1 protein-coding 3.855 3.236
+23201 FAM168A family with sequence similarity 168 member A protein-coding 7.362 1.313
+23203 PMPCA peptidase, mitochondrial processing alpha subunit protein-coding 10.31 0.5812
+23204 ARL6IP1 ADP ribosylation factor like GTPase 6 interacting protein 1 protein-coding 12.5 0.6549
+23205 ACSBG1 acyl-CoA synthetase bubblegum family member 1 protein-coding 3.633 2.343
+23207 PLEKHM2 pleckstrin homology and RUN domain containing M2 protein-coding 10.76 0.6164
+23208 SYT11 synaptotagmin 11 protein-coding 8.709 2.102
+23209 MLC1 megalencephalic leukoencephalopathy with subcortical cysts 1 protein-coding 3.855 3.235
2321 FLT1 fms related tyrosine kinase 1 protein-coding 9.785 1.401
-23210 JMJD6 arginine demethylase and lysine hydroxylase protein-coding 9.142 0.5723
-23211 ZC3H4 zinc finger CCCH-type containing 4 protein-coding 10.01 0.4568
-23212 RRS1 ribosome biogenesis regulator homolog protein-coding 9.184 0.818
-23213 SULF1 sulfatase 1 protein-coding 10.36 2.263
-23214 XPO6 exportin 6 protein-coding 11.08 0.4826
-23215 PRRC2C proline rich coiled-coil 2C protein-coding 11.92 0.711
-23216 TBC1D1 TBC1 domain family member 1 protein-coding 10.24 0.9764
-23217 ZFR2 zinc finger RNA binding protein 2 protein-coding 2.501 2.624
+23210 JMJD6 arginine demethylase and lysine hydroxylase protein-coding 9.142 0.5721
+23211 ZC3H4 zinc finger CCCH-type containing 4 protein-coding 10.01 0.4566
+23212 RRS1 ribosome biogenesis regulator homolog protein-coding 9.184 0.8182
+23213 SULF1 sulfatase 1 protein-coding 10.36 2.262
+23214 XPO6 exportin 6 protein-coding 11.08 0.4825
+23215 PRRC2C proline rich coiled-coil 2C protein-coding 11.92 0.7107
+23216 TBC1D1 TBC1 domain family member 1 protein-coding 10.24 0.9766
+23217 ZFR2 zinc finger RNA binding protein 2 protein-coding 2.502 2.624
23218 NBEAL2 neurobeachin like 2 protein-coding 10.05 1.284
-23219 FBXO28 F-box protein 28 protein-coding 9.931 0.5837
-2322 FLT3 fms related tyrosine kinase 3 protein-coding 3.207 2.017
-23220 DTX4 deltex E3 ubiquitin ligase 4 protein-coding 9.458 1.743
+23219 FBXO28 F-box protein 28 protein-coding 9.93 0.5835
+2322 FLT3 fms related tyrosine kinase 3 protein-coding 3.209 2.018
+23220 DTX4 deltex E3 ubiquitin ligase 4 protein-coding 9.459 1.743
23221 RHOBTB2 Rho related BTB domain containing 2 protein-coding 9.387 1.201
-23223 RRP12 ribosomal RNA processing 12 homolog protein-coding 9.895 0.7321
+23223 RRP12 ribosomal RNA processing 12 homolog protein-coding 9.894 0.7323
23224 SYNE2 spectrin repeat containing nuclear envelope protein 2 protein-coding 11.27 1.05
-23225 NUP210 nucleoporin 210 protein-coding 10.25 1.394
-23228 PLCL2 phospholipase C like 2 protein-coding 7.321 1.443
+23225 NUP210 nucleoporin 210 protein-coding 10.25 1.393
+23228 PLCL2 phospholipase C like 2 protein-coding 7.322 1.443
23229 ARHGEF9 Cdc42 guanine nucleotide exchange factor 9 protein-coding 8.89 1.11
-2323 FLT3LG fms related tyrosine kinase 3 ligand protein-coding 6.71 1.091
-23230 VPS13A vacuolar protein sorting 13 homolog A protein-coding 9.122 0.9506
-23231 SEL1L3 SEL1L family member 3 protein-coding 10.2 1.908
-23232 TBC1D12 TBC1 domain family member 12 protein-coding 8.03 0.8185
+2323 FLT3LG fms related tyrosine kinase 3 ligand protein-coding 6.711 1.091
+23230 VPS13A vacuolar protein sorting 13 homolog A protein-coding 9.123 0.9507
+23231 SEL1L3 SEL1L family member 3 protein-coding 10.2 1.907
+23232 TBC1D12 TBC1 domain family member 12 protein-coding 8.03 0.8183
23233 EXOC6B exocyst complex component 6B protein-coding 6.894 1.421
23234 DNAJC9 DnaJ heat shock protein family (Hsp40) member C9 protein-coding 9.588 0.7112
-23235 SIK2 salt inducible kinase 2 protein-coding 9.387 0.7846
+23235 SIK2 salt inducible kinase 2 protein-coding 9.387 0.7845
23236 PLCB1 phospholipase C beta 1 protein-coding 8.051 1.777
-23237 ARC activity regulated cytoskeleton associated protein protein-coding 4.594 2.678
-23239 PHLPP1 PH domain and leucine rich repeat protein phosphatase 1 protein-coding 9.119 1.202
-2324 FLT4 fms related tyrosine kinase 4 protein-coding 7.775 1.4
+23237 ARC activity regulated cytoskeleton associated protein protein-coding 4.596 2.679
+23239 PHLPP1 PH domain and leucine rich repeat protein phosphatase 1 protein-coding 9.118 1.202
+2324 FLT4 fms related tyrosine kinase 4 protein-coding 7.776 1.4
23240 TMEM131L transmembrane 131 like protein-coding 8.546 1.078
-23241 PACS2 phosphofurin acidic cluster sorting protein 2 protein-coding 10.42 0.6773
-23242 COBL cordon-bleu WH2 repeat protein protein-coding 8.477 2.557
-23243 ANKRD28 ankyrin repeat domain 28 protein-coding 9.909 0.657
-23244 PDS5A PDS5 cohesin associated factor A protein-coding 11.22 0.5284
+23241 PACS2 phosphofurin acidic cluster sorting protein 2 protein-coding 10.42 0.6771
+23242 COBL cordon-bleu WH2 repeat protein protein-coding 8.478 2.556
+23243 ANKRD28 ankyrin repeat domain 28 protein-coding 9.909 0.6569
+23244 PDS5A PDS5 cohesin associated factor A protein-coding 11.22 0.5282
23245 ASTN2 astrotactin 2 protein-coding 7.388 2.146
-23246 BOP1 block of proliferation 1 protein-coding 8.465 1.258
-23247 KIAA0556 KIAA0556 protein-coding 9.229 0.7197
-23248 RPRD2 regulation of nuclear pre-mRNA domain containing 2 protein-coding 10.47 0.6091
+23246 BOP1 block of proliferation 1 protein-coding 8.465 1.257
+23247 KIAA0556 KIAA0556 protein-coding 9.229 0.7195
+23248 RPRD2 regulation of nuclear pre-mRNA domain containing 2 protein-coding 10.47 0.609
23250 ATP11A ATPase phospholipid transporting 11A protein-coding 10.31 1.478
-23251 KIAA1024 KIAA1024 protein-coding 4.877 1.377
-23252 OTUD3 OTU deubiquitinase 3 protein-coding 7.989 0.867
-23253 ANKRD12 ankyrin repeat domain 12 protein-coding 9.663 0.7751
-23254 KAZN kazrin, periplakin interacting protein protein-coding 8.693 1.568
-23255 MTCL1 microtubule crosslinking factor 1 protein-coding 7.724 1.875
-23256 SCFD1 sec1 family domain containing 1 protein-coding 9.854 0.4858
+23251 KIAA1024 KIAA1024 protein-coding 4.878 1.377
+23252 OTUD3 OTU deubiquitinase 3 protein-coding 7.99 0.8667
+23253 ANKRD12 ankyrin repeat domain 12 protein-coding 9.664 0.7751
+23254 KAZN kazrin, periplakin interacting protein protein-coding 8.693 1.567
+23255 MTCL1 microtubule crosslinking factor 1 protein-coding 7.724 1.876
+23256 SCFD1 sec1 family domain containing 1 protein-coding 9.854 0.4857
23258 DENND5A DENN domain containing 5A protein-coding 10.27 1.047
-23259 DDHD2 DDHD domain containing 2 protein-coding 9.668 0.8423
-2326 FMO1 flavin containing monooxygenase 1 protein-coding 4.669 2.901
-23261 CAMTA1 calmodulin binding transcription activator 1 protein-coding 9.019 0.6783
-23262 PPIP5K2 diphosphoinositol pentakisphosphate kinase 2 protein-coding 9.366 0.6609
+23259 DDHD2 DDHD domain containing 2 protein-coding 9.668 0.842
+2326 FMO1 flavin containing monooxygenase 1 protein-coding 4.67 2.9
+23261 CAMTA1 calmodulin binding transcription activator 1 protein-coding 9.019 0.6782
+23262 PPIP5K2 diphosphoinositol pentakisphosphate kinase 2 protein-coding 9.366 0.6606
23263 MCF2L MCF.2 cell line derived transforming sequence like protein-coding 9.197 1.453
-23264 ZC3H7B zinc finger CCCH-type containing 7B protein-coding 11.34 0.641
-23265 EXOC7 exocyst complex component 7 protein-coding 11.7 0.5037
-23266 ADGRL2 adhesion G protein-coupled receptor L2 protein-coding 9.354 1.555
-23268 DNMBP dynamin binding protein protein-coding 9.476 0.9283
-23269 MGA MGA, MAX dimerization protein protein-coding 9.628 0.7085
-2327 FMO2 flavin containing monooxygenase 2 protein-coding 5.942 2.753
-23270 TSPYL4 TSPY like 4 protein-coding 9.372 1.106
-23271 CAMSAP2 calmodulin regulated spectrin associated protein family member 2 protein-coding 10.14 0.8514
-23272 FAM208A family with sequence similarity 208 member A protein-coding 10.43 0.565
-23274 CLEC16A C-type lectin domain containing 16A protein-coding 9.666 0.5929
-23275 POFUT2 protein O-fucosyltransferase 2 protein-coding 9.336 0.6468
-23276 KLHL18 kelch like family member 18 protein-coding 8.678 0.5613
-23277 CLUH clustered mitochondria homolog protein-coding 11.13 0.8284
-23279 NUP160 nucleoporin 160 protein-coding 10.08 0.6656
-2328 FMO3 flavin containing monooxygenase 3 protein-coding 5.52 2.613
-23281 MTUS2 microtubule associated scaffold protein 2 protein-coding 3.316 2.083
-23283 CSTF2T cleavage stimulation factor subunit 2 tau variant protein-coding 9.648 0.5779
-23284 ADGRL3 adhesion G protein-coupled receptor L3 protein-coding 5.209 2.8
-23285 KIAA1107 KIAA1107 protein-coding 6.409 1.253
-23286 WWC1 WW and C2 domain containing 1 protein-coding 9.815 1.801
-23287 AGTPBP1 ATP/GTP binding protein 1 protein-coding 8.367 0.7722
-23288 IQCE IQ motif containing E protein-coding 9.573 0.8277
+23264 ZC3H7B zinc finger CCCH-type containing 7B protein-coding 11.34 0.6408
+23265 EXOC7 exocyst complex component 7 protein-coding 11.7 0.5035
+23266 ADGRL2 adhesion G protein-coupled receptor L2 protein-coding 9.355 1.555
+23268 DNMBP dynamin binding protein protein-coding 9.476 0.9281
+23269 MGA MGA, MAX dimerization protein protein-coding 9.629 0.7083
+2327 FMO2 flavin containing monooxygenase 2 protein-coding 5.945 2.753
+23270 TSPYL4 TSPY like 4 protein-coding 9.373 1.106
+23271 CAMSAP2 calmodulin regulated spectrin associated protein family member 2 protein-coding 10.14 0.8512
+23272 FAM208A family with sequence similarity 208 member A protein-coding 10.43 0.5649
+23274 CLEC16A C-type lectin domain containing 16A protein-coding 9.666 0.5927
+23275 POFUT2 protein O-fucosyltransferase 2 protein-coding 9.336 0.6466
+23276 KLHL18 kelch like family member 18 protein-coding 8.678 0.5612
+23277 CLUH clustered mitochondria homolog protein-coding 11.13 0.8281
+23279 NUP160 nucleoporin 160 protein-coding 10.08 0.6654
+2328 FMO3 flavin containing monooxygenase 3 protein-coding 5.521 2.612
+23281 MTUS2 microtubule associated scaffold protein 2 protein-coding 3.318 2.084
+23283 CSTF2T cleavage stimulation factor subunit 2 tau variant protein-coding 9.649 0.5777
+23284 ADGRL3 adhesion G protein-coupled receptor L3 protein-coding 5.209 2.799
+23285 KIAA1107 KIAA1107 protein-coding 6.411 1.253
+23286 WWC1 WW and C2 domain containing 1 protein-coding 9.815 1.8
+23287 AGTPBP1 ATP/GTP binding protein 1 protein-coding 8.367 0.7723
+23288 IQCE IQ motif containing E protein-coding 9.573 0.8275
2329 FMO4 flavin containing monooxygenase 4 protein-coding 6.371 1.379
-23291 FBXW11 F-box and WD repeat domain containing 11 protein-coding 10.09 0.6387
-23293 SMG6 SMG6, nonsense mediated mRNA decay factor protein-coding 10.11 0.6285
+23291 FBXW11 F-box and WD repeat domain containing 11 protein-coding 10.09 0.6385
+23293 SMG6 SMG6, nonsense mediated mRNA decay factor protein-coding 10.11 0.6284
23294 ANKS1A ankyrin repeat and sterile alpha motif domain containing 1A protein-coding 9.972 0.7227
-23295 MGRN1 mahogunin ring finger 1 protein-coding 10.85 0.6622
-23299 BICD2 BICD cargo adaptor 2 protein-coding 10.03 0.9775
-2330 FMO5 flavin containing monooxygenase 5 protein-coding 6.611 2.374
+23295 MGRN1 mahogunin ring finger 1 protein-coding 10.85 0.6619
+23299 BICD2 BICD cargo adaptor 2 protein-coding 10.03 0.977
+2330 FMO5 flavin containing monooxygenase 5 protein-coding 6.612 2.374
23300 ATMIN ATM interactor protein-coding 10.44 0.4909
-23301 EHBP1 EH domain binding protein 1 protein-coding 9.831 0.7852
-23302 WSCD1 WSC domain containing 1 protein-coding 6.281 2.564
+23301 EHBP1 EH domain binding protein 1 protein-coding 9.831 0.7849
+23302 WSCD1 WSC domain containing 1 protein-coding 6.282 2.563
23303 KIF13B kinesin family member 13B protein-coding 10.21 1.153
-23304 UBR2 ubiquitin protein ligase E3 component n-recognin 2 protein-coding 9.422 0.6652
+23304 UBR2 ubiquitin protein ligase E3 component n-recognin 2 protein-coding 9.422 0.6649
23305 ACSL6 acyl-CoA synthetase long chain family member 6 protein-coding 3.758 2.611
-23306 NEMP1 nuclear envelope integral membrane protein 1 protein-coding 9.112 0.8284
-23307 FKBP15 FK506 binding protein 15 protein-coding 10.01 0.4842
+23306 NEMP1 nuclear envelope integral membrane protein 1 protein-coding 9.112 0.8282
+23307 FKBP15 FK506 binding protein 15 protein-coding 10.01 0.4847
23308 ICOSLG inducible T cell costimulator ligand protein-coding 8.038 1.092
-23309 SIN3B SIN3 transcription regulator family member B protein-coding 10.1 0.587
-2331 FMOD fibromodulin protein-coding 9.597 2.197
+23309 SIN3B SIN3 transcription regulator family member B protein-coding 10.11 0.5869
+2331 FMOD fibromodulin protein-coding 9.599 2.197
23310 NCAPD3 non-SMC condensin II complex subunit D3 protein-coding 9.403 1.185
-23312 DMXL2 Dmx like 2 protein-coding 9.061 0.9475
-23313 KIAA0930 KIAA0930 protein-coding 10.94 0.8362
-23314 SATB2 SATB homeobox 2 protein-coding 7.296 1.775
-23315 SLC9A8 solute carrier family 9 member A8 protein-coding 9.235 0.601
-23316 CUX2 cut like homeobox 2 protein-coding 3.385 3.284
-23317 DNAJC13 DnaJ heat shock protein family (Hsp40) member C13 protein-coding 10.25 0.6251
-23318 ZCCHC11 zinc finger CCHC-type containing 11 protein-coding 9.14 0.8778
-2332 FMR1 fragile X mental retardation 1 protein-coding 10.17 0.6088
+23312 DMXL2 Dmx like 2 protein-coding 9.062 0.9478
+23313 KIAA0930 KIAA0930 protein-coding 10.94 0.8361
+23314 SATB2 SATB homeobox 2 protein-coding 7.295 1.774
+23315 SLC9A8 solute carrier family 9 member A8 protein-coding 9.236 0.6008
+23316 CUX2 cut like homeobox 2 protein-coding 3.388 3.285
+23317 DNAJC13 DnaJ heat shock protein family (Hsp40) member C13 protein-coding 10.25 0.6249
+23318 ZCCHC11 zinc finger CCHC-type containing 11 protein-coding 9.14 0.8775
+2332 FMR1 fragile X mental retardation 1 protein-coding 10.17 0.6086
23321 TRIM2 tripartite motif containing 2 protein-coding 10.21 1.567
-23322 RPGRIP1L RPGRIP1 like protein-coding 7.154 0.9632
-23324 MAN2B2 mannosidase alpha class 2B member 2 protein-coding 10.48 0.6842
-23325 WASHC4 WASH complex subunit 4 protein-coding 9.958 0.6397
-23326 USP22 ubiquitin specific peptidase 22 protein-coding 12.2 0.647
-23327 NEDD4L neural precursor cell expressed, developmentally down-regulated 4-like, E3 ubiquitin protein ligase protein-coding 10.29 1.316
-23328 SASH1 SAM and SH3 domain containing 1 protein-coding 9.676 1.237
-23331 TTC28 tetratricopeptide repeat domain 28 protein-coding 8.887 1.222
-23332 CLASP1 cytoplasmic linker associated protein 1 protein-coding 10.37 0.6371
+23322 RPGRIP1L RPGRIP1 like protein-coding 7.153 0.9629
+23324 MAN2B2 mannosidase alpha class 2B member 2 protein-coding 10.48 0.6844
+23325 WASHC4 WASH complex subunit 4 protein-coding 9.958 0.6396
+23326 USP22 ubiquitin specific peptidase 22 protein-coding 12.2 0.6467
+23327 NEDD4L neural precursor cell expressed, developmentally down-regulated 4-like, E3 ubiquitin protein ligase protein-coding 10.29 1.317
+23328 SASH1 SAM and SH3 domain containing 1 protein-coding 9.677 1.237
+23331 TTC28 tetratricopeptide repeat domain 28 protein-coding 8.888 1.222
+23332 CLASP1 cytoplasmic linker associated protein 1 protein-coding 10.37 0.6369
23333 DPY19L1 dpy-19 like C-mannosyltransferase 1 protein-coding 9.572 1.056
-23334 SZT2 SZT2, KICSTOR complex subunit protein-coding 9.784 0.6185
-23335 WDR7 WD repeat domain 7 protein-coding 8.804 0.7675
-23336 SYNM synemin protein-coding 9.09 2.032
+23334 SZT2 SZT2, KICSTOR complex subunit protein-coding 9.785 0.6186
+23335 WDR7 WD repeat domain 7 protein-coding 8.805 0.7676
+23336 SYNM synemin protein-coding 9.093 2.033
23338 JADE2 jade family PHD finger 2 protein-coding 9.996 1.006
23339 VPS39 VPS39, HOPS complex subunit protein-coding 10.74 0.4927
-2334 AFF2 AF4/FMR2 family member 2 protein-coding 4.952 2.468
-23341 DNAJC16 DnaJ heat shock protein family (Hsp40) member C16 protein-coding 9.173 0.5284
-23344 ESYT1 extended synaptotagmin 1 protein-coding 11.38 0.7021
-23345 SYNE1 spectrin repeat containing nuclear envelope protein 1 protein-coding 9.627 1.585
-23347 SMCHD1 structural maintenance of chromosomes flexible hinge domain containing 1 protein-coding 10.03 0.7936
+2334 AFF2 AF4/FMR2 family member 2 protein-coding 4.953 2.467
+23341 DNAJC16 DnaJ heat shock protein family (Hsp40) member C16 protein-coding 9.173 0.5282
+23344 ESYT1 extended synaptotagmin 1 protein-coding 11.38 0.702
+23345 SYNE1 spectrin repeat containing nuclear envelope protein 1 protein-coding 9.628 1.586
+23347 SMCHD1 structural maintenance of chromosomes flexible hinge domain containing 1 protein-coding 10.03 0.7935
23348 DOCK9 dedicator of cytokinesis 9 protein-coding 10.16 1.148
-23349 PHF24 PHD finger protein 24 protein-coding 3.582 2.379
-2335 FN1 fibronectin 1 protein-coding 14.39 2.29
-23350 U2SURP U2 snRNP associated SURP domain containing protein-coding 10.94 0.6514
-23351 KHNYN KH and NYN domain containing protein-coding 10.5 0.8043
-23352 UBR4 ubiquitin protein ligase E3 component n-recognin 4 protein-coding 11.79 0.5153
-23353 SUN1 Sad1 and UNC84 domain containing 1 protein-coding 11.25 0.601
-23354 HAUS5 HAUS augmin like complex subunit 5 protein-coding 8.653 0.7408
-23355 VPS8 VPS8, CORVET complex subunit protein-coding 9.443 0.5461
-23357 ANGEL1 angel homolog 1 protein-coding 9.019 0.6632
-23358 USP24 ubiquitin specific peptidase 24 protein-coding 10.36 0.5372
-23359 FAM189A1 family with sequence similarity 189 member A1 protein-coding 4.361 2.752
+23349 PHF24 PHD finger protein 24 protein-coding 3.583 2.378
+2335 FN1 fibronectin 1 protein-coding 14.39 2.289
+23350 U2SURP U2 snRNP associated SURP domain containing protein-coding 10.94 0.6511
+23351 KHNYN KH and NYN domain containing protein-coding 10.5 0.804
+23352 UBR4 ubiquitin protein ligase E3 component n-recognin 4 protein-coding 11.79 0.5152
+23353 SUN1 Sad1 and UNC84 domain containing 1 protein-coding 11.25 0.6008
+23354 HAUS5 HAUS augmin like complex subunit 5 protein-coding 8.652 0.7406
+23355 VPS8 VPS8, CORVET complex subunit protein-coding 9.444 0.5458
+23357 ANGEL1 angel homolog 1 protein-coding 9.02 0.6632
+23358 USP24 ubiquitin specific peptidase 24 protein-coding 10.36 0.5371
+23359 FAM189A1 family with sequence similarity 189 member A1 protein-coding 4.363 2.752
23360 FNBP4 formin binding protein 4 protein-coding 10.06 0.6307
-23361 ZNF629 zinc finger protein 629 protein-coding 9.758 0.707
-23362 PSD3 pleckstrin and Sec7 domain containing 3 protein-coding 9.169 1.539
-23363 OBSL1 obscurin like 1 protein-coding 10.35 1.556
+23361 ZNF629 zinc finger protein 629 protein-coding 9.758 0.7069
+23362 PSD3 pleckstrin and Sec7 domain containing 3 protein-coding 9.169 1.538
+23363 OBSL1 obscurin like 1 protein-coding 10.35 1.555
23365 ARHGEF12 Rho guanine nucleotide exchange factor 12 protein-coding 11.75 0.7922
-23366 KIAA0895 KIAA0895 protein-coding 7.474 1.234
-23367 LARP1 La ribonucleoprotein domain family member 1 protein-coding 12.22 0.4982
-23368 PPP1R13B protein phosphatase 1 regulatory subunit 13B protein-coding 9.49 0.8867
-23369 PUM2 pumilio RNA binding family member 2 protein-coding 11.57 0.4479
-23370 ARHGEF18 Rho/Rac guanine nucleotide exchange factor 18 protein-coding 10.27 0.5765
+23366 KIAA0895 KIAA0895 protein-coding 7.474 1.233
+23367 LARP1 La ribonucleoprotein domain family member 1 protein-coding 12.22 0.498
+23368 PPP1R13B protein phosphatase 1 regulatory subunit 13B protein-coding 9.49 0.8868
+23369 PUM2 pumilio RNA binding family member 2 protein-coding 11.57 0.4478
+23370 ARHGEF18 Rho/Rac guanine nucleotide exchange factor 18 protein-coding 10.27 0.5766
23371 TNS2 tensin 2 protein-coding 10.25 1.207
23373 CRTC1 CREB regulated transcription coactivator 1 protein-coding 8.805 1.052
-23376 UFL1 UFM1 specific ligase 1 protein-coding 9.672 0.7
-23378 RRP8 ribosomal RNA processing 8 protein-coding 8.28 0.5089
-23379 ICE1 interactor of little elongation complex ELL subunit 1 protein-coding 9.958 0.6562
-23380 SRGAP2 SLIT-ROBO Rho GTPase activating protein 2 protein-coding 9.678 0.8621
-23381 SMG5 SMG5, nonsense mediated mRNA decay factor protein-coding 11.39 0.5048
-23382 AHCYL2 adenosylhomocysteinase like 2 protein-coding 9.62 1.35
-23383 MAU2 MAU2 sister chromatid cohesion factor protein-coding 10.26 0.4823
+23376 UFL1 UFM1 specific ligase 1 protein-coding 9.673 0.6998
+23378 RRP8 ribosomal RNA processing 8 protein-coding 8.28 0.5088
+23379 ICE1 interactor of little elongation complex ELL subunit 1 protein-coding 9.958 0.656
+23380 SRGAP2 SLIT-ROBO Rho GTPase activating protein 2 protein-coding 9.678 0.8619
+23381 SMG5 SMG5, nonsense mediated mRNA decay factor protein-coding 11.39 0.5047
+23382 AHCYL2 adenosylhomocysteinase like 2 protein-coding 9.621 1.35
+23383 MAU2 MAU2 sister chromatid cohesion factor protein-coding 10.26 0.4822
23384 SPECC1L sperm antigen with calponin homology and coiled-coil domains 1 like protein-coding 10.36 0.6468
-23385 NCSTN nicastrin protein-coding 11.62 0.5413
-23386 NUDCD3 NudC domain containing 3 protein-coding 11.15 0.4755
-23387 SIK3 SIK family kinase 3 protein-coding 9.757 0.7162
-23389 MED13L mediator complex subunit 13 like protein-coding 10.64 0.8767
-2339 FNTA farnesyltransferase, CAAX box, alpha protein-coding 10.47 0.577
-23390 ZDHHC17 zinc finger DHHC-type containing 17 protein-coding 9.068 0.7877
-23392 ECPAS Ecm29 proteasome adaptor and scaffold protein-coding 11.25 0.5518
-23394 ADNP activity dependent neuroprotector homeobox protein-coding 11.12 0.6665
-23395 LARS2 leucyl-tRNA synthetase 2, mitochondrial protein-coding 9.049 0.6769
-23396 PIP5K1C phosphatidylinositol-4-phosphate 5-kinase type 1 gamma protein-coding 10.39 0.6333
-23397 NCAPH non-SMC condensin I complex subunit H protein-coding 7.475 1.986
-23398 PPWD1 peptidylprolyl isomerase domain and WD repeat containing 1 protein-coding 8.577 0.5109
-23399 CTDNEP1 CTD nuclear envelope phosphatase 1 protein-coding 10.95 0.5073
-23400 ATP13A2 ATPase cation transporting 13A2 protein-coding 10.32 0.7728
+23385 NCSTN nicastrin protein-coding 11.62 0.5412
+23386 NUDCD3 NudC domain containing 3 protein-coding 11.15 0.4754
+23387 SIK3 SIK family kinase 3 protein-coding 9.757 0.7161
+23389 MED13L mediator complex subunit 13 like protein-coding 10.64 0.8765
+2339 FNTA farnesyltransferase, CAAX box, alpha protein-coding 10.47 0.5768
+23390 ZDHHC17 zinc finger DHHC-type containing 17 protein-coding 9.068 0.7875
+23392 ECPAS Ecm29 proteasome adaptor and scaffold protein-coding 11.25 0.5516
+23394 ADNP activity dependent neuroprotector homeobox protein-coding 11.12 0.6662
+23395 LARS2 leucyl-tRNA synthetase 2, mitochondrial protein-coding 9.049 0.6766
+23396 PIP5K1C phosphatidylinositol-4-phosphate 5-kinase type 1 gamma protein-coding 10.39 0.6334
+23397 NCAPH non-SMC condensin I complex subunit H protein-coding 7.473 1.987
+23398 PPWD1 peptidylprolyl isomerase domain and WD repeat containing 1 protein-coding 8.578 0.5108
+23399 CTDNEP1 CTD nuclear envelope phosphatase 1 protein-coding 10.95 0.5071
+23400 ATP13A2 ATPase cation transporting 13A2 protein-coding 10.32 0.7726
23401 FRAT2 FRAT2, WNT signaling pathway regulator protein-coding 8.41 1.016
-23403 FBXO46 F-box protein 46 protein-coding 8.923 0.7364
-23404 EXOSC2 exosome component 2 protein-coding 8.914 0.5616
-23405 DICER1 dicer 1, ribonuclease III protein-coding 10.32 0.7029
+23403 FBXO46 F-box protein 46 protein-coding 8.923 0.7362
+23404 EXOSC2 exosome component 2 protein-coding 8.913 0.5614
+23405 DICER1 dicer 1, ribonuclease III protein-coding 10.32 0.7027
23406 COTL1 coactosin like F-actin binding protein 1 protein-coding 11.28 1.107
-23408 SIRT5 sirtuin 5 protein-coding 8.632 0.6297
+23408 SIRT5 sirtuin 5 protein-coding 8.632 0.6295
23409 SIRT4 sirtuin 4 protein-coding 4.443 1.061
-23410 SIRT3 sirtuin 3 protein-coding 9.396 0.6094
-23411 SIRT1 sirtuin 1 protein-coding 8.943 0.7155
-23412 COMMD3 COMM domain containing 3 protein-coding 9.347 0.6219
+23410 SIRT3 sirtuin 3 protein-coding 9.395 0.6093
+23411 SIRT1 sirtuin 1 protein-coding 8.944 0.7153
+23412 COMMD3 COMM domain containing 3 protein-coding 9.347 0.6216
23413 NCS1 neuronal calcium sensor 1 protein-coding 9.598 1.434
-23414 ZFPM2 zinc finger protein, FOG family member 2 protein-coding 5.646 1.996
-23415 KCNH4 potassium voltage-gated channel subfamily H member 4 protein-coding 2.219 1.432
-23416 KCNH3 potassium voltage-gated channel subfamily H member 3 protein-coding 4.453 2.482
-23417 MLYCD malonyl-CoA decarboxylase protein-coding 8.087 0.7848
-23418 CRB1 crumbs 1, cell polarity complex component protein-coding 2.244 2.617
-2342 FNTB farnesyltransferase, CAAX box, beta protein-coding 9.295 0.5385
-23420 NOMO1 NODAL modulator 1 protein-coding 11.87 0.5623
-23421 ITGB3BP integrin subunit beta 3 binding protein protein-coding 7.634 0.8052
+23414 ZFPM2 zinc finger protein, FOG family member 2 protein-coding 5.648 1.996
+23415 KCNH4 potassium voltage-gated channel subfamily H member 4 protein-coding 2.22 1.432
+23416 KCNH3 potassium voltage-gated channel subfamily H member 3 protein-coding 4.454 2.481
+23417 MLYCD malonyl-CoA decarboxylase protein-coding 8.087 0.7845
+23418 CRB1 crumbs 1, cell polarity complex component protein-coding 2.244 2.615
+2342 FNTB farnesyltransferase, CAAX box, beta protein-coding 9.295 0.5383
+23420 NOMO1 NODAL modulator 1 protein-coding 11.87 0.5625
+23421 ITGB3BP integrin subunit beta 3 binding protein protein-coding 7.634 0.8051
23423 TMED3 transmembrane p24 trafficking protein 3 protein-coding 11.1 1.072
-23424 TDRD7 tudor domain containing 7 protein-coding 8.84 0.7302
+23424 TDRD7 tudor domain containing 7 protein-coding 8.84 0.7299
23426 GRIP1 glutamate receptor interacting protein 1 protein-coding 5.832 2.005
23428 SLC7A8 solute carrier family 7 member 8 protein-coding 10.01 1.903
-23429 RYBP RING1 and YY1 binding protein protein-coding 10.04 0.6194
-23430 TPSD1 tryptase delta 1 protein-coding 2.359 2.256
-23431 AP4E1 adaptor related protein complex 4 epsilon 1 subunit protein-coding 8.164 0.6404
+23429 RYBP RING1 and YY1 binding protein protein-coding 10.04 0.6191
+23430 TPSD1 tryptase delta 1 protein-coding 2.36 2.257
+23431 AP4E1 adaptor related protein complex 4 epsilon 1 subunit protein-coding 8.165 0.6403
23432 GPR161 G protein-coupled receptor 161 protein-coding 6.816 1.519
-23433 RHOQ ras homolog family member Q protein-coding 10.39 0.7891
-23435 TARDBP TAR DNA binding protein protein-coding 11.7 0.3155
-23438 HARS2 histidyl-tRNA synthetase 2, mitochondrial protein-coding 9.523 0.4475
+23433 RHOQ ras homolog family member Q protein-coding 10.4 0.7889
+23435 TARDBP TAR DNA binding protein protein-coding 11.7 0.3154
+23438 HARS2 histidyl-tRNA synthetase 2, mitochondrial protein-coding 9.522 0.4474
23443 SLC35A3 solute carrier family 35 member A3 protein-coding 8.127 1.152
-23446 SLC44A1 solute carrier family 44 member 1 protein-coding 11.23 0.9478
-23450 SF3B3 splicing factor 3b subunit 3 protein-coding 11.81 0.5517
-23451 SF3B1 splicing factor 3b subunit 1 protein-coding 12.45 0.4897
+23446 SLC44A1 solute carrier family 44 member 1 protein-coding 11.23 0.9477
+23450 SF3B3 splicing factor 3b subunit 3 protein-coding 11.81 0.5515
+23451 SF3B1 splicing factor 3b subunit 1 protein-coding 12.45 0.4896
23452 ANGPTL2 angiopoietin like 2 protein-coding 9.738 1.572
-23456 ABCB10 ATP binding cassette subfamily B member 10 protein-coding 8.708 0.7295
-23457 ABCB9 ATP binding cassette subfamily B member 9 protein-coding 7.214 0.9548
-2346 FOLH1 folate hydrolase 1 protein-coding 6.493 2.692
-23460 ABCA6 ATP binding cassette subfamily A member 6 protein-coding 5.102 2.324
-23461 ABCA5 ATP binding cassette subfamily A member 5 protein-coding 8.269 1.338
-23462 HEY1 hes related family bHLH transcription factor with YRPW motif 1 protein-coding 7.858 1.897
-23463 ICMT isoprenylcysteine carboxyl methyltransferase protein-coding 11.12 0.5708
+23456 ABCB10 ATP binding cassette subfamily B member 10 protein-coding 8.708 0.7292
+23457 ABCB9 ATP binding cassette subfamily B member 9 protein-coding 7.214 0.9545
+2346 FOLH1 folate hydrolase 1 protein-coding 6.493 2.694
+23460 ABCA6 ATP binding cassette subfamily A member 6 protein-coding 5.104 2.325
+23461 ABCA5 ATP binding cassette subfamily A member 5 protein-coding 8.27 1.338
+23462 HEY1 hes related family bHLH transcription factor with YRPW motif 1 protein-coding 7.857 1.897
+23463 ICMT isoprenylcysteine carboxyl methyltransferase protein-coding 11.12 0.5706
23464 GCAT glycine C-acetyltransferase protein-coding 8.377 1.229
-23466 CBX6 chromobox 6 protein-coding 8.683 1.39
-23467 NPTXR neuronal pentraxin receptor protein-coding 8.265 2.258
-23468 CBX5 chromobox 5 protein-coding 11.43 0.8246
-23469 PHF3 PHD finger protein 3 protein-coding 10.57 0.6735
-23471 TRAM1 translocation associated membrane protein 1 protein-coding 12.17 0.8008
+23466 CBX6 chromobox 6 protein-coding 8.684 1.39
+23467 NPTXR neuronal pentraxin receptor protein-coding 8.266 2.257
+23468 CBX5 chromobox 5 protein-coding 11.43 0.8242
+23469 PHF3 PHD finger protein 3 protein-coding 10.57 0.6734
+23471 TRAM1 translocation associated membrane protein 1 protein-coding 12.17 0.8005
23473 CAPN7 calpain 7 protein-coding 9.279 0.5775
-23474 ETHE1 ETHE1, persulfide dioxygenase protein-coding 9.265 1.022
-23475 QPRT quinolinate phosphoribosyltransferase protein-coding 8.117 2.281
-23476 BRD4 bromodomain containing 4 protein-coding 10.79 0.5743
+23474 ETHE1 ETHE1, persulfide dioxygenase protein-coding 9.265 1.021
+23475 QPRT quinolinate phosphoribosyltransferase protein-coding 8.117 2.28
+23476 BRD4 bromodomain containing 4 protein-coding 10.79 0.5741
23478 SEC11A SEC11 homolog A, signal peptidase complex subunit protein-coding 11.17 0.4952
-23479 ISCU iron-sulfur cluster assembly enzyme protein-coding 10.67 0.795
-2348 FOLR1 folate receptor 1 protein-coding 5.491 3.61
+23479 ISCU iron-sulfur cluster assembly enzyme protein-coding 10.67 0.7949
+2348 FOLR1 folate receptor 1 protein-coding 5.493 3.611
23480 SEC61G Sec61 translocon gamma subunit protein-coding 10.32 0.9296
-23481 PES1 pescadillo ribosomal biogenesis factor 1 protein-coding 10.83 0.6431
-23483 TGDS TDP-glucose 4,6-dehydratase protein-coding 7.847 0.7284
-23484 LEPROTL1 leptin receptor overlapping transcript like 1 protein-coding 9.865 0.6479
-23491 CES3 carboxylesterase 3 protein-coding 5.702 2.484
-23492 CBX7 chromobox 7 protein-coding 9.552 1.289
-23493 HEY2 hes related family bHLH transcription factor with YRPW motif 2 protein-coding 6.507 1.769
-23495 TNFRSF13B TNF receptor superfamily member 13B protein-coding 2.068 1.981
-23498 HAAO 3-hydroxyanthranilate 3,4-dioxygenase protein-coding 6.613 1.977
-23499 MACF1 microtubule-actin crosslinking factor 1 protein-coding 12.11 0.8556
-2350 FOLR2 folate receptor beta protein-coding 7.35 1.807
-23500 DAAM2 dishevelled associated activator of morphogenesis 2 protein-coding 8.223 2.126
-23503 ZFYVE26 zinc finger FYVE-type containing 26 protein-coding 9.545 0.6143
-23504 RIMBP2 RIMS binding protein 2 protein-coding 4.016 2.839
-23505 TMEM131 transmembrane protein 131 protein-coding 10.57 0.5445
-23506 BICRAL BRD4 interacting chromatin remodeling complex associated protein like protein-coding 9.074 0.7348
-23507 LRRC8B leucine rich repeat containing 8 VRAC subunit B protein-coding 8.978 1.019
-23508 TTC9 tetratricopeptide repeat domain 9 protein-coding 8.395 1.596
-23509 POFUT1 protein O-fucosyltransferase 1 protein-coding 10.87 0.6302
-23510 KCTD2 potassium channel tetramerization domain containing 2 protein-coding 9.983 0.6558
-23511 NUP188 nucleoporin 188 protein-coding 10.55 0.6736
-23512 SUZ12 SUZ12 polycomb repressive complex 2 subunit protein-coding 9.836 0.6565
-23513 SCRIB scribbled planar cell polarity protein protein-coding 11.02 0.8473
-23514 SPIDR scaffold protein involved in DNA repair protein-coding 9.702 0.6736
+23481 PES1 pescadillo ribosomal biogenesis factor 1 protein-coding 10.83 0.6432
+23483 TGDS TDP-glucose 4,6-dehydratase protein-coding 7.847 0.7281
+23484 LEPROTL1 leptin receptor overlapping transcript like 1 protein-coding 9.866 0.6477
+23491 CES3 carboxylesterase 3 protein-coding 5.701 2.483
+23492 CBX7 chromobox 7 protein-coding 9.553 1.289
+23493 HEY2 hes related family bHLH transcription factor with YRPW motif 2 protein-coding 6.506 1.769
+23495 TNFRSF13B TNF receptor superfamily member 13B protein-coding 2.069 1.982
+23498 HAAO 3-hydroxyanthranilate 3,4-dioxygenase protein-coding 6.614 1.977
+23499 MACF1 microtubule-actin crosslinking factor 1 protein-coding 12.11 0.8559
+2350 FOLR2 folate receptor beta protein-coding 7.35 1.806
+23500 DAAM2 dishevelled associated activator of morphogenesis 2 protein-coding 8.224 2.126
+23503 ZFYVE26 zinc finger FYVE-type containing 26 protein-coding 9.546 0.6143
+23504 RIMBP2 RIMS binding protein 2 protein-coding 4.018 2.84
+23505 TMEM131 transmembrane protein 131 protein-coding 10.57 0.5444
+23506 BICRAL BRD4 interacting chromatin remodeling complex associated protein like protein-coding 9.075 0.7349
+23507 LRRC8B leucine rich repeat containing 8 VRAC subunit B protein-coding 8.978 1.018
+23508 TTC9 tetratricopeptide repeat domain 9 protein-coding 8.395 1.595
+23509 POFUT1 protein O-fucosyltransferase 1 protein-coding 10.87 0.6301
+23510 KCTD2 potassium channel tetramerization domain containing 2 protein-coding 9.984 0.6556
+23511 NUP188 nucleoporin 188 protein-coding 10.55 0.6734
+23512 SUZ12 SUZ12 polycomb repressive complex 2 subunit protein-coding 9.835 0.6562
+23513 SCRIB scribbled planar cell polarity protein protein-coding 11.02 0.8472
+23514 SPIDR scaffold protein involved in DNA repair protein-coding 9.702 0.6734
23515 MORC3 MORC family CW-type zinc finger 3 protein-coding 9.354 0.6756
23516 SLC39A14 solute carrier family 39 member 14 protein-coding 10.69 1.32
-23517 MTREX Mtr4 exosome RNA helicase protein-coding 10.23 0.4978
-23518 R3HDM1 R3H domain containing 1 protein-coding 9.395 0.6124
+23517 MTREX Mtr4 exosome RNA helicase protein-coding 10.23 0.4976
+23518 R3HDM1 R3H domain containing 1 protein-coding 9.395 0.6123
2352 FOLR3 folate receptor 3 protein-coding 1.391 1.746
23520 ANP32C acidic nuclear phosphoprotein 32 family member C protein-coding 1.779 0.8596
-23521 RPL13A ribosomal protein L13a protein-coding 13.96 0.9017
-23522 KAT6B lysine acetyltransferase 6B protein-coding 9.457 0.9375
-23523 CABIN1 calcineurin binding protein 1 protein-coding 10.71 0.6135
-23524 SRRM2 serine/arginine repetitive matrix 2 protein-coding 13.31 0.6206
-23526 ARHGAP45 Rho GTPase activating protein 45 protein-coding 9.415 1.053
-23527 ACAP2 ArfGAP with coiled-coil, ankyrin repeat and PH domains 2 protein-coding 10.1 0.7992
+23521 RPL13A ribosomal protein L13a protein-coding 13.96 0.9014
+23522 KAT6B lysine acetyltransferase 6B protein-coding 9.458 0.9373
+23523 CABIN1 calcineurin binding protein 1 protein-coding 10.71 0.6133
+23524 SRRM2 serine/arginine repetitive matrix 2 protein-coding 13.31 0.6207
+23526 ARHGAP45 Rho GTPase activating protein 45 protein-coding 9.415 1.054
+23527 ACAP2 ArfGAP with coiled-coil, ankyrin repeat and PH domains 2 protein-coding 10.1 0.7989
23528 ZNF281 zinc finger protein 281 protein-coding 7.946 1.35
-23529 CLCF1 cardiotrophin like cytokine factor 1 protein-coding 6.941 1.768
-2353 FOS Fos proto-oncogene, AP-1 transcription factor subunit protein-coding 11.73 1.875
-23530 NNT nicotinamide nucleotide transhydrogenase protein-coding 10.34 0.9736
+23529 CLCF1 cardiotrophin like cytokine factor 1 protein-coding 6.94 1.767
+2353 FOS Fos proto-oncogene, AP-1 transcription factor subunit protein-coding 11.73 1.876
+23530 NNT nicotinamide nucleotide transhydrogenase protein-coding 10.34 0.9731
23531 MMD monocyte to macrophage differentiation associated protein-coding 8.451 1.083
-23532 PRAME preferentially expressed antigen in melanoma protein-coding 4.892 4.341
-23533 PIK3R5 phosphoinositide-3-kinase regulatory subunit 5 protein-coding 6.944 1.44
-23534 TNPO3 transportin 3 protein-coding 9.913 0.7256
-23536 ADAT1 adenosine deaminase, tRNA specific 1 protein-coding 7.569 0.9303
+23532 PRAME preferentially expressed antigen in melanoma protein-coding 4.889 4.342
+23533 PIK3R5 phosphoinositide-3-kinase regulatory subunit 5 protein-coding 6.945 1.441
+23534 TNPO3 transportin 3 protein-coding 9.913 0.7253
+23536 ADAT1 adenosine deaminase, tRNA specific 1 protein-coding 7.57 0.9298
23539 SLC16A8 solute carrier family 16 member 8 protein-coding 3.084 1.538
-2354 FOSB FosB proto-oncogene, AP-1 transcription factor subunit protein-coding 8.867 2.516
-23541 SEC14L2 SEC14 like lipid binding 2 protein-coding 8.814 1.849
-23542 MAPK8IP2 mitogen-activated protein kinase 8 interacting protein 2 protein-coding 6.887 2.444
+2354 FOSB FosB proto-oncogene, AP-1 transcription factor subunit protein-coding 8.869 2.518
+23541 SEC14L2 SEC14 like lipid binding 2 protein-coding 8.813 1.85
+23542 MAPK8IP2 mitogen-activated protein kinase 8 interacting protein 2 protein-coding 6.888 2.444
23543 RBFOX2 RNA binding fox-1 homolog 2 protein-coding 10.74 0.6878
-23544 SEZ6L seizure related 6 homolog like protein-coding 2.561 3.325
+23544 SEZ6L seizure related 6 homolog like protein-coding 2.563 3.325
23545 ATP6V0A2 ATPase H+ transporting V0 subunit a2 protein-coding 8.891 0.5044
-23546 SYNGR4 synaptogyrin 4 protein-coding 1.482 1.303
-23547 LILRA4 leukocyte immunoglobulin like receptor A4 protein-coding 3.044 2.046
-23548 TTC33 tetratricopeptide repeat domain 33 protein-coding 8.469 0.7258
-23549 DNPEP aspartyl aminopeptidase protein-coding 10.4 0.596
+23546 SYNGR4 synaptogyrin 4 protein-coding 1.482 1.304
+23547 LILRA4 leukocyte immunoglobulin like receptor A4 protein-coding 3.045 2.046
+23548 TTC33 tetratricopeptide repeat domain 33 protein-coding 8.469 0.7256
+23549 DNPEP aspartyl aminopeptidase protein-coding 10.4 0.5961
2355 FOSL2 FOS like 2, AP-1 transcription factor subunit protein-coding 10.6 1.329
23550 PSD4 pleckstrin and Sec7 domain containing 4 protein-coding 9.819 1.369
-23551 RASD2 RASD family member 2 protein-coding 6.783 1.875
-23552 CDK20 cyclin dependent kinase 20 protein-coding 7.266 1.207
-23554 TSPAN12 tetraspanin 12 protein-coding 8.283 2.012
+23551 RASD2 RASD family member 2 protein-coding 6.784 1.875
+23552 CDK20 cyclin dependent kinase 20 protein-coding 7.267 1.207
+23554 TSPAN12 tetraspanin 12 protein-coding 8.284 2.012
23555 TSPAN15 tetraspanin 15 protein-coding 9.678 1.383
-23556 PIGN phosphatidylinositol glycan anchor biosynthesis class N protein-coding 8.91 0.7296
-23557 SNAPIN SNAP associated protein protein-coding 9.329 0.5375
-23558 WBP2 WW domain binding protein 2 protein-coding 11.67 0.7116
-23559 WBP1 WW domain binding protein 1 protein-coding 10.49 0.7661
-2356 FPGS folylpolyglutamate synthase protein-coding 10.06 0.661
-23560 GTPBP4 GTP binding protein 4 protein-coding 10.08 0.6953
-23562 CLDN14 claudin 14 protein-coding 2.906 2.198
-23563 CHST5 carbohydrate sulfotransferase 5 protein-coding 3.194 2.013
-23564 DDAH2 dimethylarginine dimethylaminohydrolase 2 protein-coding 10.41 1.07
-23566 LPAR3 lysophosphatidic acid receptor 3 protein-coding 3.541 3.147
-23567 ZNF346 zinc finger protein 346 protein-coding 8.11 0.5643
-23568 ARL2BP ADP ribosylation factor like GTPase 2 binding protein protein-coding 10.4 0.6185
+23556 PIGN phosphatidylinositol glycan anchor biosynthesis class N protein-coding 8.91 0.7295
+23557 SNAPIN SNAP associated protein protein-coding 9.328 0.5374
+23558 WBP2 WW domain binding protein 2 protein-coding 11.67 0.7114
+23559 WBP1 WW domain binding protein 1 protein-coding 10.49 0.766
+2356 FPGS folylpolyglutamate synthase protein-coding 10.06 0.6607
+23560 GTPBP4 GTP binding protein 4 protein-coding 10.08 0.6952
+23562 CLDN14 claudin 14 protein-coding 2.905 2.198
+23563 CHST5 carbohydrate sulfotransferase 5 protein-coding 3.194 2.012
+23564 DDAH2 dimethylarginine dimethylaminohydrolase 2 protein-coding 10.41 1.069
+23566 LPAR3 lysophosphatidic acid receptor 3 protein-coding 3.541 3.146
+23567 ZNF346 zinc finger protein 346 protein-coding 8.111 0.5642
+23568 ARL2BP ADP ribosylation factor like GTPase 2 binding protein protein-coding 10.4 0.6183
23569 PADI4 peptidyl arginine deiminase 4 protein-coding 1.37 1.333
2357 FPR1 formyl peptide receptor 1 protein-coding 6.384 1.89
23576 DDAH1 dimethylarginine dimethylaminohydrolase 1 protein-coding 10.23 1.823
2358 FPR2 formyl peptide receptor 2 protein-coding 3.13 1.973
-23580 CDC42EP4 CDC42 effector protein 4 protein-coding 10.83 0.9546
-23582 CCNDBP1 cyclin D1 binding protein 1 protein-coding 9.675 0.6955
-23583 SMUG1 single-strand-selective monofunctional uracil-DNA glycosylase 1 protein-coding 9.254 0.5631
-23584 VSIG2 V-set and immunoglobulin domain containing 2 protein-coding 5.156 3.518
-23585 TMEM50A transmembrane protein 50A protein-coding 11.26 0.4843
+23580 CDC42EP4 CDC42 effector protein 4 protein-coding 10.83 0.9543
+23582 CCNDBP1 cyclin D1 binding protein 1 protein-coding 9.675 0.6954
+23583 SMUG1 single-strand-selective monofunctional uracil-DNA glycosylase 1 protein-coding 9.254 0.5632
+23584 VSIG2 V-set and immunoglobulin domain containing 2 protein-coding 5.159 3.519
+23585 TMEM50A transmembrane protein 50A protein-coding 11.26 0.4842
23586 DDX58 DExD/H-box helicase 58 protein-coding 9.073 1.123
-23587 ELP5 elongator acetyltransferase complex subunit 5 protein-coding 9.335 0.602
-23588 KLHDC2 kelch domain containing 2 protein-coding 9.849 0.644
-23589 CARHSP1 calcium regulated heat stable protein 1 protein-coding 10.58 0.9584
-2359 FPR3 formyl peptide receptor 3 protein-coding 7.658 1.783
-23590 PDSS1 decaprenyl diphosphate synthase subunit 1 protein-coding 6.777 1.011
-23592 LEMD3 LEM domain containing 3 protein-coding 9.321 0.582
+23587 ELP5 elongator acetyltransferase complex subunit 5 protein-coding 9.335 0.6019
+23588 KLHDC2 kelch domain containing 2 protein-coding 9.85 0.6438
+23589 CARHSP1 calcium regulated heat stable protein 1 protein-coding 10.58 0.9583
+2359 FPR3 formyl peptide receptor 3 protein-coding 7.658 1.784
+23590 PDSS1 decaprenyl diphosphate synthase subunit 1 protein-coding 6.776 1.011
+23592 LEMD3 LEM domain containing 3 protein-coding 9.321 0.5818
23593 HEBP2 heme binding protein 2 protein-coding 10.12 1.113
-23594 ORC6 origin recognition complex subunit 6 protein-coding 7.001 1.641
-23595 ORC3 origin recognition complex subunit 3 protein-coding 9.014 0.6005
-23596 OPN3 opsin 3 protein-coding 8.478 1.286
-23597 ACOT9 acyl-CoA thioesterase 9 protein-coding 9.037 0.7609
-23598 PATZ1 POZ/BTB and AT hook containing zinc finger 1 protein-coding 10.16 0.8408
+23594 ORC6 origin recognition complex subunit 6 protein-coding 6.999 1.642
+23595 ORC3 origin recognition complex subunit 3 protein-coding 9.014 0.6003
+23596 OPN3 opsin 3 protein-coding 8.477 1.286
+23597 ACOT9 acyl-CoA thioesterase 9 protein-coding 9.037 0.7607
+23598 PATZ1 POZ/BTB and AT hook containing zinc finger 1 protein-coding 10.16 0.8404
23600 AMACR alpha-methylacyl-CoA racemase protein-coding 9.271 1.745
-23601 CLEC5A C-type lectin domain containing 5A protein-coding 5.363 2.088
-23603 CORO1C coronin 1C protein-coding 11.33 0.9065
-23604 DAPK2 death associated protein kinase 2 protein-coding 7.429 1.827
+23601 CLEC5A C-type lectin domain containing 5A protein-coding 5.363 2.087
+23603 CORO1C coronin 1C protein-coding 11.33 0.9067
+23604 DAPK2 death associated protein kinase 2 protein-coding 7.43 1.827
23607 CD2AP CD2 associated protein protein-coding 10.39 1.11
-23608 MKRN1 makorin ring finger protein 1 protein-coding 11.41 0.5361
-23609 MKRN2 makorin ring finger protein 2 protein-coding 9.299 0.4867
-23612 PHLDA3 pleckstrin homology like domain family A member 3 protein-coding 9.97 1.415
-23613 ZMYND8 zinc finger MYND-type containing 8 protein-coding 10.01 0.8071
-23615 PYY2 peptide YY 2 (pseudogene) pseudo 2.639 1.897
-23616 SH3BP1 SH3 domain binding protein 1 protein-coding 8.864 1.504
-23621 BACE1 beta-secretase 1 protein-coding 9.931 0.969
-23623 RUSC1 RUN and SH3 domain containing 1 protein-coding 9.99 0.8031
-23625 FAM89B family with sequence similarity 89 member B protein-coding 10.01 0.6978
-23627 PRND prion like protein doppel protein-coding 3.162 2.256
-23629 BRD7P3 bromodomain containing 7 pseudogene 3 pseudo 0.5826 0.6794
-23630 KCNE5 potassium voltage-gated channel subfamily E regulatory subunit 5 protein-coding 2.371 1.717
+23608 MKRN1 makorin ring finger protein 1 protein-coding 11.41 0.5364
+23609 MKRN2 makorin ring finger protein 2 protein-coding 9.299 0.4865
+23612 PHLDA3 pleckstrin homology like domain family A member 3 protein-coding 9.97 1.414
+23613 ZMYND8 zinc finger MYND-type containing 8 protein-coding 10.01 0.8067
+23615 PYY2 peptide YY 2 (pseudogene) pseudo 2.639 1.898
+23616 SH3BP1 SH3 domain binding protein 1 protein-coding 8.863 1.504
+23621 BACE1 beta-secretase 1 protein-coding 9.932 0.9687
+23623 RUSC1 RUN and SH3 domain containing 1 protein-coding 9.989 0.803
+23625 FAM89B family with sequence similarity 89 member B protein-coding 10.01 0.6975
+23627 PRND prion like protein doppel protein-coding 3.163 2.255
+23629 BRD7P3 bromodomain containing 7 pseudogene 3 pseudo 0.5827 0.6794
+23630 KCNE5 potassium voltage-gated channel subfamily E regulatory subunit 5 protein-coding 2.371 1.716
23632 CA14 carbonic anhydrase 14 protein-coding 3.947 2.156
-23633 KPNA6 karyopherin subunit alpha 6 protein-coding 10.81 0.4789
-23635 SSBP2 single stranded DNA binding protein 2 protein-coding 7.925 1.437
-23636 NUP62 nucleoporin 62 protein-coding 10.72 0.5505
+23633 KPNA6 karyopherin subunit alpha 6 protein-coding 10.81 0.4788
+23635 SSBP2 single stranded DNA binding protein 2 protein-coding 7.926 1.437
+23636 NUP62 nucleoporin 62 protein-coding 10.72 0.5504
23637 RABGAP1 RAB GTPase activating protein 1 protein-coding 10.38 0.6671
-23639 LRRC6 leucine rich repeat containing 6 protein-coding 5.337 1.787
-23640 HSPBP1 HSPA (Hsp70) binding protein 1 protein-coding 9.93 0.7447
-23641 LDOC1 LDOC1, regulator of NFKB signaling protein-coding 8.692 2.14
-23642 SNHG1 small nucleolar RNA host gene 1 ncRNA 9.556 0.9674
+23639 LRRC6 leucine rich repeat containing 6 protein-coding 5.337 1.786
+23640 HSPBP1 HSPA (Hsp70) binding protein 1 protein-coding 9.93 0.7446
+23641 LDOC1 LDOC1, regulator of NFKB signaling protein-coding 8.693 2.139
+23642 SNHG1 small nucleolar RNA host gene 1 ncRNA 9.555 0.9671
23643 LY96 lymphocyte antigen 96 protein-coding 6.221 1.575
-23644 EDC4 enhancer of mRNA decapping 4 protein-coding 10.51 0.4904
+23644 EDC4 enhancer of mRNA decapping 4 protein-coding 10.51 0.4902
23645 PPP1R15A protein phosphatase 1 regulatory subunit 15A protein-coding 10.58 0.9799
-23646 PLD3 phospholipase D family member 3 protein-coding 12.38 0.9578
-23647 ARFIP2 ADP ribosylation factor interacting protein 2 protein-coding 10.2 0.6744
+23646 PLD3 phospholipase D family member 3 protein-coding 12.38 0.9586
+23647 ARFIP2 ADP ribosylation factor interacting protein 2 protein-coding 10.2 0.6745
23648 SSBP3 single stranded DNA binding protein 3 protein-coding 9.416 0.8758
-23649 POLA2 DNA polymerase alpha 2, accessory subunit protein-coding 8.625 0.8273
-23650 TRIM29 tripartite motif containing 29 protein-coding 8.055 4.267
-23654 PLXNB2 plexin B2 protein-coding 12.92 0.8333
-23657 SLC7A11 solute carrier family 7 member 11 protein-coding 7.596 2.347
-23658 LSM5 LSM5 homolog, U6 small nuclear RNA and mRNA degradation associated protein-coding 9.389 0.6302
-23659 PLA2G15 phospholipase A2 group XV protein-coding 9.254 0.7414
-23660 ZKSCAN5 zinc finger with KRAB and SCAN domains 5 protein-coding 8.543 0.5101
+23649 POLA2 DNA polymerase alpha 2, accessory subunit protein-coding 8.624 0.8272
+23650 TRIM29 tripartite motif containing 29 protein-coding 8.054 4.267
+23654 PLXNB2 plexin B2 protein-coding 12.92 0.8329
+23657 SLC7A11 solute carrier family 7 member 11 protein-coding 7.596 2.346
+23658 LSM5 LSM5 homolog, U6 small nuclear RNA and mRNA degradation associated protein-coding 9.389 0.6304
+23659 PLA2G15 phospholipase A2 group XV protein-coding 9.254 0.7413
+23660 ZKSCAN5 zinc finger with KRAB and SCAN domains 5 protein-coding 8.543 0.5099
23670 CEMIP2 cell migration inducing hyaluronidase 2 protein-coding 10.28 1.254
-23673 STX12 syntaxin 12 protein-coding 10.24 0.7044
+23673 STX12 syntaxin 12 protein-coding 10.24 0.7042
23677 SH3BP4 SH3 domain binding protein 4 protein-coding 10.56 1.136
-23678 SGK3 serum/glucocorticoid regulated kinase family member 3 protein-coding 8.583 1
-23682 RAB38 RAB38, member RAS oncogene family protein-coding 6.697 2.51
-23683 PRKD3 protein kinase D3 protein-coding 9.587 0.8435
-23704 KCNE4 potassium voltage-gated channel subfamily E regulatory subunit 4 protein-coding 7.088 1.989
-23705 CADM1 cell adhesion molecule 1 protein-coding 9.346 2.039
-23708 GSPT2 G1 to S phase transition 2 protein-coding 7.289 1.695
-23710 GABARAPL1 GABA type A receptor associated protein like 1 protein-coding 10.33 1.176
-23729 SHPK sedoheptulokinase protein-coding 8.591 0.6834
-23731 TMEM245 transmembrane protein 245 protein-coding 10.84 0.8296
+23678 SGK3 serum/glucocorticoid regulated kinase family member 3 protein-coding 8.584 0.9997
+23682 RAB38 RAB38, member RAS oncogene family protein-coding 6.696 2.509
+23683 PRKD3 protein kinase D3 protein-coding 9.587 0.8432
+23704 KCNE4 potassium voltage-gated channel subfamily E regulatory subunit 4 protein-coding 7.089 1.988
+23705 CADM1 cell adhesion molecule 1 protein-coding 9.347 2.039
+23708 GSPT2 G1 to S phase transition 2 protein-coding 7.291 1.694
+23710 GABARAPL1 GABA type A receptor associated protein like 1 protein-coding 10.34 1.176
+23729 SHPK sedoheptulokinase protein-coding 8.591 0.6832
+23731 TMEM245 transmembrane protein 245 protein-coding 10.84 0.8299
23741 EID1 EP300 interacting inhibitor of differentiation 1 protein-coding 11.6 0.7905
-23743 BHMT2 betaine--homocysteine S-methyltransferase 2 protein-coding 5.566 3.098
-23753 SDF2L1 stromal cell derived factor 2 like 1 protein-coding 8.969 1.025
-23759 PPIL2 peptidylprolyl isomerase like 2 protein-coding 10.24 0.4941
-23760 PITPNB phosphatidylinositol transfer protein beta protein-coding 10.47 0.557
-23761 PISD phosphatidylserine decarboxylase protein-coding 9.49 0.5946
+23743 BHMT2 betaine--homocysteine S-methyltransferase 2 protein-coding 5.567 3.097
+23753 SDF2L1 stromal cell derived factor 2 like 1 protein-coding 8.968 1.025
+23759 PPIL2 peptidylprolyl isomerase like 2 protein-coding 10.24 0.4939
+23760 PITPNB phosphatidylinositol transfer protein beta protein-coding 10.47 0.5569
+23761 PISD phosphatidylserine decarboxylase protein-coding 9.49 0.5945
23762 OSBP2 oxysterol binding protein 2 protein-coding 7.431 1.334
23764 MAFF MAF bZIP transcription factor F protein-coding 9.11 1.211
-23765 IL17RA interleukin 17 receptor A protein-coding 8.18 0.7501
-23766 GABARAPL3 GABA type A receptor associated protein like 3 pseudogene pseudo 1.42 0.9106
-23767 FLRT3 fibronectin leucine rich transmembrane protein 3 protein-coding 7.437 2.532
-23768 FLRT2 fibronectin leucine rich transmembrane protein 2 protein-coding 7.248 2.165
-23769 FLRT1 fibronectin leucine rich transmembrane protein 1 protein-coding 4.194 2.286
-23770 FKBP8 FK506 binding protein 8 protein-coding 12.41 0.7335
-23774 BRD1 bromodomain containing 1 protein-coding 9.767 0.595
+23765 IL17RA interleukin 17 receptor A protein-coding 8.181 0.7502
+23766 GABARAPL3 GABA type A receptor associated protein like 3 pseudogene pseudo 1.421 0.9107
+23767 FLRT3 fibronectin leucine rich transmembrane protein 3 protein-coding 7.438 2.532
+23768 FLRT2 fibronectin leucine rich transmembrane protein 2 protein-coding 7.25 2.165
+23769 FLRT1 fibronectin leucine rich transmembrane protein 1 protein-coding 4.196 2.286
+23770 FKBP8 FK506 binding protein 8 protein-coding 12.41 0.7334
+23774 BRD1 bromodomain containing 1 protein-coding 9.768 0.5949
23779 ARHGAP8 Rho GTPase activating protein 8 protein-coding 7.171 2.508
-23780 APOL2 apolipoprotein L2 protein-coding 10.12 0.9374
-23786 BCL2L13 BCL2 like 13 protein-coding 10.29 0.5655
-23787 MTCH1 mitochondrial carrier 1 protein-coding 12.1 0.6002
-23788 MTCH2 mitochondrial carrier 2 protein-coding 10.79 0.5533
-238 ALK ALK receptor tyrosine kinase protein-coding 2.65 2.296
-239 ALOX12 arachidonate 12-lipoxygenase, 12S type protein-coding 3.181 1.964
-2395 FXN frataxin protein-coding 7.814 0.6499
-240 ALOX5 arachidonate 5-lipoxygenase protein-coding 8.303 1.866
-241 ALOX5AP arachidonate 5-lipoxygenase activating protein protein-coding 7.68 1.741
-24137 KIF4A kinesin family member 4A protein-coding 7.951 2.02
-24138 IFIT5 interferon induced protein with tetratricopeptide repeats 5 protein-coding 8.979 0.8561
-24139 EML2 echinoderm microtubule associated protein like 2 protein-coding 9.63 0.9171
-24140 FTSJ1 FtsJ RNA methyltransferase homolog 1 protein-coding 9.627 0.5841
-24141 LAMP5 lysosomal associated membrane protein family member 5 protein-coding 5.852 2.631
-24142 NAT6 N-acetyltransferase 6 protein-coding 7.451 0.7019
-24144 TFIP11 tuftelin interacting protein 11 protein-coding 9.796 0.5107
-24145 PANX1 pannexin 1 protein-coding 8.708 0.7682
+23780 APOL2 apolipoprotein L2 protein-coding 10.12 0.9372
+23786 BCL2L13 BCL2 like 13 protein-coding 10.29 0.5653
+23787 MTCH1 mitochondrial carrier 1 protein-coding 12.1 0.6003
+23788 MTCH2 mitochondrial carrier 2 protein-coding 10.79 0.5535
+238 ALK ALK receptor tyrosine kinase protein-coding 2.651 2.297
+239 ALOX12 arachidonate 12-lipoxygenase, 12S type protein-coding 3.181 1.963
+2395 FXN frataxin protein-coding 7.814 0.6498
+240 ALOX5 arachidonate 5-lipoxygenase protein-coding 8.305 1.867
+241 ALOX5AP arachidonate 5-lipoxygenase activating protein protein-coding 7.681 1.741
+24137 KIF4A kinesin family member 4A protein-coding 7.948 2.022
+24138 IFIT5 interferon induced protein with tetratricopeptide repeats 5 protein-coding 8.979 0.8558
+24139 EML2 echinoderm microtubule associated protein like 2 protein-coding 9.63 0.9169
+24140 FTSJ1 FtsJ RNA methyltransferase homolog 1 protein-coding 9.627 0.584
+24141 LAMP5 lysosomal associated membrane protein family member 5 protein-coding 5.854 2.63
+24142 NAT6 N-acetyltransferase 6 protein-coding 7.451 0.7017
+24144 TFIP11 tuftelin interacting protein 11 protein-coding 9.796 0.5105
+24145 PANX1 pannexin 1 protein-coding 8.708 0.7679
24146 CLDN15 claudin 15 protein-coding 7.382 1.333
-24147 FJX1 four jointed box 1 protein-coding 7.464 1.521
-24148 PRPF6 pre-mRNA processing factor 6 protein-coding 11.66 0.5446
-24149 ZNF318 zinc finger protein 318 protein-coding 9.463 0.698
-242 ALOX12B arachidonate 12-lipoxygenase, 12R type protein-coding 2.523 2.433
-2444 FRK fyn related Src family tyrosine kinase protein-coding 5.809 1.895
+24147 FJX1 four jointed box 1 protein-coding 7.463 1.521
+24148 PRPF6 pre-mRNA processing factor 6 protein-coding 11.66 0.5444
+24149 ZNF318 zinc finger protein 318 protein-coding 9.464 0.6978
+242 ALOX12B arachidonate 12-lipoxygenase, 12R type protein-coding 2.522 2.433
+2444 FRK fyn related Src family tyrosine kinase protein-coding 5.808 1.894
245 ALOX12P2 arachidonate 12-lipoxygenase pseudogene 2 pseudo 3.616 2.423
-245711 SPDYA speedy/RINGO cell cycle regulator family member A protein-coding 3.674 0.9759
-245812 CNPY4 canopy FGF signaling regulator 4 protein-coding 8.109 0.8773
-245972 ATP6V0D2 ATPase H+ transporting V0 subunit d2 protein-coding 3.518 2.375
-245973 ATP6V1C2 ATPase H+ transporting V1 subunit C2 protein-coding 6.704 1.431
-246 ALOX15 arachidonate 15-lipoxygenase protein-coding 2.913 2.678
-246175 CNOT6L CCR4-NOT transcription complex subunit 6 like protein-coding 9.795 0.63
-246176 GAS2L2 growth arrest specific 2 like 2 protein-coding 2.181 1.985
+245711 SPDYA speedy/RINGO cell cycle regulator family member A protein-coding 3.674 0.9755
+245812 CNPY4 canopy FGF signaling regulator 4 protein-coding 8.11 0.8773
+245972 ATP6V0D2 ATPase H+ transporting V0 subunit d2 protein-coding 3.52 2.377
+245973 ATP6V1C2 ATPase H+ transporting V1 subunit C2 protein-coding 6.703 1.431
+246 ALOX15 arachidonate 15-lipoxygenase protein-coding 2.912 2.677
+246175 CNOT6L CCR4-NOT transcription complex subunit 6 like protein-coding 9.795 0.6301
+246176 GAS2L2 growth arrest specific 2 like 2 protein-coding 2.182 1.984
246181 AKR7L aldo-keto reductase family 7 like (gene/pseudogene) protein-coding 4.337 1.828
-246182 AKR7A2P1 aldo-keto reductase family 7 member A2 pseudogene 1 pseudo 1.952 1.028
-246184 CDC26 cell division cycle 26 protein-coding 6.711 1.068
-246243 RNASEH1 ribonuclease H1 protein-coding 8.12 0.6974
-246269 AFG1L AFG1 like ATPase protein-coding 5.731 0.6602
+246182 AKR7A2P1 aldo-keto reductase family 7 member A2 pseudogene 1 pseudo 1.951 1.028
+246184 CDC26 cell division cycle 26 protein-coding 6.712 1.068
+246243 RNASEH1 ribonuclease H1 protein-coding 8.119 0.6975
+246269 AFG1L AFG1 like ATPase protein-coding 5.731 0.6599
246329 STAC3 SH3 and cysteine rich domain 3 protein-coding 6.015 1.299
-246330 PELI3 pellino E3 ubiquitin protein ligase family member 3 protein-coding 7.958 0.8811
-246721 POLR2J2 RNA polymerase II subunit J2 protein-coding 7.745 1.589
-246777 SPESP1 sperm equatorial segment protein 1 protein-coding 3.911 2.325
+246330 PELI3 pellino E3 ubiquitin protein ligase family member 3 protein-coding 7.958 0.881
+246721 POLR2J2 RNA polymerase II subunit J2 protein-coding 7.744 1.589
+246777 SPESP1 sperm equatorial segment protein 1 protein-coding 3.911 2.324
246778 IL27 interleukin 27 protein-coding 1.473 1.494
-247 ALOX15B arachidonate 15-lipoxygenase, type B protein-coding 5.989 3.096
-2475 MTOR mechanistic target of rapamycin kinase protein-coding 10.52 0.6164
-2483 FRG1 FSHD region gene 1 protein-coding 9.174 0.5343
-2487 FRZB frizzled related protein protein-coding 7.633 1.838
+247 ALOX15B arachidonate 15-lipoxygenase, type B protein-coding 5.992 3.097
+2475 MTOR mechanistic target of rapamycin kinase protein-coding 10.52 0.6162
+2483 FRG1 FSHD region gene 1 protein-coding 9.174 0.5342
+2487 FRZB frizzled related protein protein-coding 7.634 1.837
249 ALPL alkaline phosphatase, liver/bone/kidney protein-coding 8.295 2.071
-2491 CENPI centromere protein I protein-coding 4.933 2.003
-2494 NR5A2 nuclear receptor subfamily 5 group A member 2 protein-coding 5.894 1.946
-2495 FTH1 ferritin heavy chain 1 protein-coding 14.93 0.8359
+2491 CENPI centromere protein I protein-coding 4.931 2.003
+2494 NR5A2 nuclear receptor subfamily 5 group A member 2 protein-coding 5.895 1.947
+2495 FTH1 ferritin heavy chain 1 protein-coding 14.93 0.8362
2498 FTH1P3 ferritin heavy chain 1 pseudogene 3 pseudo 8.422 1.272
-25 ABL1 ABL proto-oncogene 1, non-receptor tyrosine kinase protein-coding 11.08 0.6812
-250 ALPP alkaline phosphatase, placental protein-coding 1.824 2.761
+25 ABL1 ABL proto-oncogene 1, non-receptor tyrosine kinase protein-coding 11.08 0.6811
+250 ALPP alkaline phosphatase, placental protein-coding 1.825 2.762
2512 FTL ferritin light chain protein-coding 15.46 1.133
2517 FUCA1 alpha-L-fucosidase 1 protein-coding 10.3 1.161
-2519 FUCA2 alpha-L-fucosidase 2 protein-coding 10.42 0.9011
-2521 FUS FUS RNA binding protein protein-coding 12.27 0.5524
-2523 FUT1 fucosyltransferase 1 (H blood group) protein-coding 6.762 1.519
-2524 FUT2 fucosyltransferase 2 protein-coding 6.538 2.633
-2525 FUT3 fucosyltransferase 3 (Lewis blood group) protein-coding 5.845 3.532
+2519 FUCA2 alpha-L-fucosidase 2 protein-coding 10.42 0.9007
+2521 FUS FUS RNA binding protein protein-coding 12.27 0.5523
+2523 FUT1 fucosyltransferase 1 (H blood group) protein-coding 6.762 1.518
+2524 FUT2 fucosyltransferase 2 protein-coding 6.539 2.632
+2525 FUT3 fucosyltransferase 3 (Lewis blood group) protein-coding 5.844 3.532
2526 FUT4 fucosyltransferase 4 protein-coding 7.726 1.397
-2527 FUT5 fucosyltransferase 5 protein-coding 0.8831 1.227
-2528 FUT6 fucosyltransferase 6 protein-coding 4.698 3.525
+2527 FUT5 fucosyltransferase 5 protein-coding 0.8827 1.227
+2528 FUT6 fucosyltransferase 6 protein-coding 4.697 3.525
252839 TMEM9 transmembrane protein 9 protein-coding 11.15 0.7378
-252884 ZNF396 zinc finger protein 396 protein-coding 5.119 1.173
-2529 FUT7 fucosyltransferase 7 protein-coding 3.447 1.588
-252969 NEIL2 nei like DNA glycosylase 2 protein-coding 8.684 0.8688
-252983 STXBP4 syntaxin binding protein 4 protein-coding 6.933 0.8864
-252995 FNDC5 fibronectin type III domain containing 5 protein-coding 5.107 2.243
+252884 ZNF396 zinc finger protein 396 protein-coding 5.12 1.173
+2529 FUT7 fucosyltransferase 7 protein-coding 3.448 1.589
+252969 NEIL2 nei like DNA glycosylase 2 protein-coding 8.685 0.8686
+252983 STXBP4 syntaxin binding protein 4 protein-coding 6.933 0.8862
+252995 FNDC5 fibronectin type III domain containing 5 protein-coding 5.108 2.243
2530 FUT8 fucosyltransferase 8 protein-coding 9.078 1.249
-253012 HEPACAM2 HEPACAM family member 2 protein-coding 2.277 2.754
-253018 HCG27 HLA complex group 27 (non-protein coding) ncRNA 3.878 1.283
-253039 CUTALP cutA divalent cation tolerance homolog-like, pseudogene pseudo 8.439 0.9677
-2531 KDSR 3-ketodihydrosphingosine reductase protein-coding 10.43 0.571
-253143 PRR14L proline rich 14 like protein-coding 9.84 0.649
-253152 EPHX4 epoxide hydrolase 4 protein-coding 4.346 2.056
-253190 SERHL2 serine hydrolase like 2 protein-coding 4.89 1.803
-2532 ACKR1 atypical chemokine receptor 1 (Duffy blood group) protein-coding 6.762 2.421
-253260 RICTOR RPTOR independent companion of MTOR complex 2 protein-coding 9.483 0.7644
-2533 FYB1 FYN binding protein 1 protein-coding 8.129 1.727
-2534 FYN FYN proto-oncogene, Src family tyrosine kinase protein-coding 9.575 1.574
-253430 IPMK inositol polyphosphate multikinase protein-coding 5.074 1.565
-253461 ZBTB38 zinc finger and BTB domain containing 38 protein-coding 10.45 0.9311
-2535 FZD2 frizzled class receptor 2 protein-coding 6.716 1.587
+253012 HEPACAM2 HEPACAM family member 2 protein-coding 2.279 2.755
+253018 HCG27 HLA complex group 27 (non-protein coding) ncRNA 3.879 1.283
+253039 CUTALP cutA divalent cation tolerance homolog-like, pseudogene pseudo 8.439 0.9675
+2531 KDSR 3-ketodihydrosphingosine reductase protein-coding 10.43 0.5708
+253143 PRR14L proline rich 14 like protein-coding 9.84 0.6487
+253152 EPHX4 epoxide hydrolase 4 protein-coding 4.346 2.055
+253190 SERHL2 serine hydrolase like 2 protein-coding 4.891 1.802
+2532 ACKR1 atypical chemokine receptor 1 (Duffy blood group) protein-coding 6.764 2.421
+253260 RICTOR RPTOR independent companion of MTOR complex 2 protein-coding 9.484 0.7642
+2533 FYB1 FYN binding protein 1 protein-coding 8.13 1.727
+2534 FYN FYN proto-oncogene, Src family tyrosine kinase protein-coding 9.575 1.573
+253430 IPMK inositol polyphosphate multikinase protein-coding 5.074 1.564
+253461 ZBTB38 zinc finger and BTB domain containing 38 protein-coding 10.45 0.9309
+2535 FZD2 frizzled class receptor 2 protein-coding 6.715 1.587
253512 SLC25A30 solute carrier family 25 member 30 protein-coding 8.403 1.025
-253558 LCLAT1 lysocardiolipin acyltransferase 1 protein-coding 8.9 0.6974
-253635 GPATCH11 G-patch domain containing 11 protein-coding 5.686 1.133
+253558 LCLAT1 lysocardiolipin acyltransferase 1 protein-coding 8.9 0.6972
+253635 GPATCH11 G-patch domain containing 11 protein-coding 5.686 1.132
253639 ZNF620 zinc finger protein 620 protein-coding 5.532 1.023
2537 IFI6 interferon alpha inducible protein 6 protein-coding 11.28 1.723
253714 MMS22L MMS22 like, DNA repair protein protein-coding 7.622 1.046
-253724 TTC41P tetratricopeptide repeat domain 41, pseudogene pseudo 3.446 0.917
-253725 WASHC2C WASH complex subunit 2C protein-coding 10.32 0.5026
-253738 EBF3 early B cell factor 3 protein-coding 4.626 2.17
+253724 TTC41P tetratricopeptide repeat domain 41, pseudogene pseudo 3.446 0.9169
+253725 WASHC2C WASH complex subunit 2C protein-coding 10.32 0.5025
+253738 EBF3 early B cell factor 3 protein-coding 4.627 2.17
253769 WDR27 WD repeat domain 27 protein-coding 6.888 0.9956
253782 CERS6 ceramide synthase 6 protein-coding 9.708 1.194
-253827 MSRB3 methionine sulfoxide reductase B3 protein-coding 8.53 1.577
-253832 ZDHHC20 zinc finger DHHC-type containing 20 protein-coding 7.117 1.734
-253868 MIR1-1HG-AS1 MIR1-1HG antisense RNA 1 ncRNA 1.5 1.791
-2539 G6PD glucose-6-phosphate dehydrogenase protein-coding 10.44 1.106
-253943 YTHDF3 YTH N6-methyladenosine RNA binding protein 3 protein-coding 10.64 0.5492
+253827 MSRB3 methionine sulfoxide reductase B3 protein-coding 8.531 1.578
+253832 ZDHHC20 zinc finger DHHC-type containing 20 protein-coding 7.118 1.733
+253868 MIR1-1HG-AS1 MIR1-1HG antisense RNA 1 ncRNA 1.502 1.793
+2539 G6PD glucose-6-phosphate dehydrogenase protein-coding 10.44 1.105
+253943 YTHDF3 YTH N6-methyladenosine RNA binding protein 3 protein-coding 10.64 0.549
253959 RALGAPA1 Ral GTPase activating protein catalytic alpha subunit 1 protein-coding 8.704 0.8044
-253980 KCTD13 potassium channel tetramerization domain containing 13 protein-coding 8.351 0.787
+253980 KCTD13 potassium channel tetramerization domain containing 13 protein-coding 8.351 0.7867
253982 ASPHD1 aspartate beta-hydroxylase domain containing 1 protein-coding 6.363 2.226
-254013 ETFBKMT electron transfer flavoprotein beta subunit lysine methyltransferase protein-coding 5.595 0.8507
-254042 METAP1D methionyl aminopeptidase type 1D, mitochondrial protein-coding 5.865 0.8376
-254048 UBN2 ubinuclein 2 protein-coding 9.256 0.7144
+254013 ETFBKMT electron transfer flavoprotein beta subunit lysine methyltransferase protein-coding 5.595 0.8505
+254042 METAP1D methionyl aminopeptidase type 1D, mitochondrial protein-coding 5.865 0.8373
+254048 UBN2 ubinuclein 2 protein-coding 9.256 0.7143
254050 LRRC43 leucine rich repeat containing 43 protein-coding 3.24 1.784
-254065 BRWD3 bromodomain and WD repeat domain containing 3 protein-coding 7.379 1.16
+254065 BRWD3 bromodomain and WD repeat domain containing 3 protein-coding 7.38 1.159
254102 EHBP1L1 EH domain binding protein 1 like 1 protein-coding 10.19 1.141
254122 SNX32 sorting nexin 32 protein-coding 2.388 2.135
-254158 CXorf58 chromosome X open reading frame 58 protein-coding 0.7816 0.7835
-254170 FBXO33 F-box protein 33 protein-coding 8.341 0.6057
-254173 TTLL10 tubulin tyrosine ligase like 10 protein-coding 1.905 1.582
-254187 TSGA10IP testis specific 10 interacting protein protein-coding 1.106 1.349
-2542 SLC37A4 solute carrier family 37 member 4 protein-coding 9.49 1.137
-254225 RNF169 ring finger protein 169 protein-coding 8.649 0.9418
+254158 CXorf58 chromosome X open reading frame 58 protein-coding 0.7816 0.7833
+254170 FBXO33 F-box protein 33 protein-coding 8.341 0.6056
+254173 TTLL10 tubulin tyrosine ligase like 10 protein-coding 1.906 1.582
+254187 TSGA10IP testis specific 10 interacting protein protein-coding 1.107 1.349
+2542 SLC37A4 solute carrier family 37 member 4 protein-coding 9.491 1.137
+254225 RNF169 ring finger protein 169 protein-coding 8.65 0.9416
254228 CALHM5 calcium homeostasis modulator family member 5 protein-coding 5.793 1.597
-254251 LCORL ligand dependent nuclear receptor corepressor like protein-coding 6.139 0.7624
+254251 LCORL ligand dependent nuclear receptor corepressor like protein-coding 6.139 0.7622
254263 CNIH2 cornichon family AMPA receptor auxiliary protein 2 protein-coding 4.827 2.318
-254268 AKNAD1 AKNA domain containing 1 protein-coding 1.473 1.505
-254295 PHYHD1 phytanoyl-CoA dioxygenase domain containing 1 protein-coding 7.098 2.332
-254359 ZDHHC24 zinc finger DHHC-type containing 24 protein-coding 8.329 0.7056
-254394 MCM9 minichromosome maintenance 9 homologous recombination repair factor protein-coding 5.608 0.8641
-254427 PROSER2 proline and serine rich 2 protein-coding 7.508 1.849
-254428 SLC41A1 solute carrier family 41 member 1 protein-coding 9.766 0.9734
-254531 LPCAT4 lysophosphatidylcholine acyltransferase 4 protein-coding 9.068 1.167
+254268 AKNAD1 AKNA domain containing 1 protein-coding 1.473 1.504
+254295 PHYHD1 phytanoyl-CoA dioxygenase domain containing 1 protein-coding 7.099 2.331
+254359 ZDHHC24 zinc finger DHHC-type containing 24 protein-coding 8.329 0.7053
+254394 MCM9 minichromosome maintenance 9 homologous recombination repair factor protein-coding 5.609 0.8638
+254427 PROSER2 proline and serine rich 2 protein-coding 7.509 1.848
+254428 SLC41A1 solute carrier family 41 member 1 protein-coding 9.767 0.9731
+254531 LPCAT4 lysophosphatidylcholine acyltransferase 4 protein-coding 9.068 1.166
254552 NUDT8 nudix hydrolase 8 protein-coding 7.242 1.384
-254559 MIR9-3HG MIR9-3 host gene ncRNA 5.3 2.764
+254559 MIR9-3HG MIR9-3 host gene ncRNA 5.301 2.763
2547 XRCC6 X-ray repair cross complementing 6 protein-coding 12.66 0.496
-254773 LYG2 lysozyme g2 protein-coding 0.6436 0.9649
-254778 C8orf46 chromosome 8 open reading frame 46 protein-coding 4.118 2.931
-2548 GAA glucosidase alpha, acid protein-coding 11.43 0.9655
-254827 NAALADL2 N-acetylated alpha-linked acidic dipeptidase like 2 protein-coding 6.232 1.939
-254863 TMEM256 transmembrane protein 256 protein-coding 8.954 0.8867
+254773 LYG2 lysozyme g2 protein-coding 0.6432 0.9646
+254778 C8orf46 chromosome 8 open reading frame 46 protein-coding 4.119 2.93
+2548 GAA glucosidase alpha, acid protein-coding 11.43 0.9653
+254827 NAALADL2 N-acetylated alpha-linked acidic dipeptidase like 2 protein-coding 6.233 1.938
+254863 TMEM256 transmembrane protein 256 protein-coding 8.954 0.8866
254887 ZDHHC23 zinc finger DHHC-type containing 23 protein-coding 7.516 1.395
-2549 GAB1 GRB2 associated binding protein 1 protein-coding 8.961 0.9794
-2550 GABBR1 gamma-aminobutyric acid type B receptor subunit 1 protein-coding 8.554 1.931
-255027 MPV17L MPV17 mitochondrial inner membrane protein like protein-coding 5.568 2.217
-255031 LINC00957 long intergenic non-protein coding RNA 957 ncRNA 5.813 1.317
+2549 GAB1 GRB2 associated binding protein 1 protein-coding 8.961 0.9795
+2550 GABBR1 gamma-aminobutyric acid type B receptor subunit 1 protein-coding 8.555 1.93
+255027 MPV17L MPV17 mitochondrial inner membrane protein like protein-coding 5.568 2.216
+255031 LINC00957 long intergenic non-protein coding RNA 957 ncRNA 5.814 1.317
255043 TMEM86B transmembrane protein 86B protein-coding 6.53 1.173
-255057 CBARP CACN beta subunit associated regulatory protein protein-coding 4.237 1.959
-255061 TAC4 tachykinin 4 protein-coding 0.719 1.057
+255057 CBARP CACN beta subunit associated regulatory protein protein-coding 4.236 1.958
+255061 TAC4 tachykinin 4 protein-coding 0.7192 1.056
255082 CASC2 cancer susceptibility 2 (non-protein coding) ncRNA 5.309 1.313
-2551 GABPA GA binding protein transcription factor alpha subunit protein-coding 9.392 0.5799
-255104 TMCO4 transmembrane and coiled-coil domains 4 protein-coding 8.957 1.077
-255167 LINC01018 long intergenic non-protein coding RNA 1018 ncRNA 3.421 2.622
-255231 MCOLN2 mucolipin 2 protein-coding 5.141 1.844
-255239 ANKK1 ankyrin repeat and kinase domain containing 1 protein-coding 3.069 1.709
-255252 LRRC57 leucine rich repeat containing 57 protein-coding 8.284 0.5344
-255275 MYADML2 myeloid associated differentiation marker like 2 protein-coding 1.877 1.697
-2553 GABPB1 GA binding protein transcription factor beta subunit 1 protein-coding 8.636 0.554
-255374 MBLAC1 metallo-beta-lactamase domain containing 1 protein-coding 5.416 0.979
-255394 TCP11L2 t-complex 11 like 2 protein-coding 6.591 1.184
-255403 ZNF718 zinc finger protein 718 protein-coding 5.915 1.134
-255426 RASGEF1C RasGEF domain family member 1C protein-coding 2.502 2.575
-255488 RNF144B ring finger protein 144B protein-coding 9.1 1.498
-2555 GABRA2 gamma-aminobutyric acid type A receptor alpha2 subunit protein-coding 1.62 2.267
-255520 ELMOD2 ELMO domain containing 2 protein-coding 7.364 0.6795
+2551 GABPA GA binding protein transcription factor alpha subunit protein-coding 9.392 0.5797
+255104 TMCO4 transmembrane and coiled-coil domains 4 protein-coding 8.958 1.077
+255167 LINC01018 long intergenic non-protein coding RNA 1018 ncRNA 3.423 2.622
+255231 MCOLN2 mucolipin 2 protein-coding 5.142 1.844
+255239 ANKK1 ankyrin repeat and kinase domain containing 1 protein-coding 3.07 1.709
+255252 LRRC57 leucine rich repeat containing 57 protein-coding 8.284 0.5342
+255275 MYADML2 myeloid associated differentiation marker like 2 protein-coding 1.876 1.697
+2553 GABPB1 GA binding protein transcription factor beta subunit 1 protein-coding 8.635 0.5538
+255374 MBLAC1 metallo-beta-lactamase domain containing 1 protein-coding 5.416 0.9788
+255394 TCP11L2 t-complex 11 like 2 protein-coding 6.592 1.185
+255403 ZNF718 zinc finger protein 718 protein-coding 5.916 1.133
+255426 RASGEF1C RasGEF domain family member 1C protein-coding 2.503 2.574
+255488 RNF144B ring finger protein 144B protein-coding 9.101 1.498
+2555 GABRA2 gamma-aminobutyric acid type A receptor alpha2 subunit protein-coding 1.619 2.266
+255520 ELMOD2 ELMO domain containing 2 protein-coding 7.364 0.6792
255631 COL24A1 collagen type XXIV alpha 1 chain protein-coding 3.951 1.904
-255738 PCSK9 proprotein convertase subtilisin/kexin type 9 protein-coding 5.053 3.765
-255743 NPNT nephronectin protein-coding 9.621 2.459
-255758 TCTEX1D2 Tctex1 domain containing 2 protein-coding 6.921 1.163
-255783 INAFM1 InaF motif containing 1 protein-coding 7.606 0.9631
+255738 PCSK9 proprotein convertase subtilisin/kexin type 9 protein-coding 5.051 3.764
+255743 NPNT nephronectin protein-coding 9.622 2.458
+255758 TCTEX1D2 Tctex1 domain containing 2 protein-coding 6.92 1.163
+255783 INAFM1 InaF motif containing 1 protein-coding 7.607 0.9626
255809 C19orf38 chromosome 19 open reading frame 38 protein-coding 4.52 1.314
-255812 SDHAP1 succinate dehydrogenase complex flavoprotein subunit A pseudogene 1 pseudo 7.295 0.8272
-255877 BCL6B B cell CLL/lymphoma 6B protein-coding 7.508 1.312
-255919 CNEP1R1 CTD nuclear envelope phosphatase 1 regulatory subunit 1 protein-coding 7.989 0.585
-255967 PAN3 PAN3 poly(A) specific ribonuclease subunit protein-coding 9.602 0.6967
-256051 ZNF549 zinc finger protein 549 protein-coding 6.978 1.351
-2561 GABRB2 gamma-aminobutyric acid type A receptor beta2 subunit protein-coding 3.513 2.888
-256126 SYCE2 synaptonemal complex central element protein 2 protein-coding 3.361 1.529
+255812 SDHAP1 succinate dehydrogenase complex flavoprotein subunit A pseudogene 1 pseudo 7.296 0.8272
+255877 BCL6B B cell CLL/lymphoma 6B protein-coding 7.508 1.313
+255919 CNEP1R1 CTD nuclear envelope phosphatase 1 regulatory subunit 1 protein-coding 7.989 0.5849
+255967 PAN3 PAN3 poly(A) specific ribonuclease subunit protein-coding 9.603 0.6966
+256051 ZNF549 zinc finger protein 549 protein-coding 6.979 1.351
+2561 GABRB2 gamma-aminobutyric acid type A receptor beta2 subunit protein-coding 3.513 2.886
+256126 SYCE2 synaptonemal complex central element protein 2 protein-coding 3.36 1.529
256227 STEAP1B STEAP family member 1B protein-coding 4.335 1.939
-256236 NAPSB napsin B aspartic peptidase, pseudogene pseudo 6.708 2.127
+256236 NAPSB napsin B aspartic peptidase, pseudogene pseudo 6.709 2.127
256281 NUDT14 nudix hydrolase 14 protein-coding 8.775 1.026
-2563 GABRD gamma-aminobutyric acid type A receptor delta subunit protein-coding 5.191 2.034
-256302 NATD1 N-acetyltransferase domain containing 1 protein-coding 8.389 0.984
-256309 CCDC110 coiled-coil domain containing 110 protein-coding 4.258 1.714
-256329 LMNTD2 lamin tail domain containing 2 protein-coding 5.272 1.527
-256355 RPS2P32 ribosomal protein S2 pseudogene 32 pseudo 3.732 1.565
-256356 GK5 glycerol kinase 5 (putative) protein-coding 8.981 0.9624
-256364 EML3 echinoderm microtubule associated protein like 3 protein-coding 9.791 0.5877
-256380 SCML4 Scm polycomb group protein like 4 protein-coding 4.174 1.96
-2564 GABRE gamma-aminobutyric acid type A receptor epsilon subunit protein-coding 6.751 2.428
-256435 ST6GALNAC3 ST6 N-acetylgalactosaminide alpha-2,6-sialyltransferase 3 protein-coding 5.43 1.763
-256471 MFSD8 major facilitator superfamily domain containing 8 protein-coding 8.181 0.5739
-256472 TMEM151A transmembrane protein 151A protein-coding 3.217 2.765
-256586 LYSMD2 LysM domain containing 2 protein-coding 7.819 0.9293
-256643 BCLAF3 BCLAF1 and THRAP3 family member 3 protein-coding 7.402 0.7082
-256646 NUTM1 NUT midline carcinoma family member 1 protein-coding 0.7818 1.187
-256691 MAMDC2 MAM domain containing 2 protein-coding 5.185 2.242
-256714 MAP7D2 MAP7 domain containing 2 protein-coding 4.772 2.75
-256880 LOC256880 uncharacterized LOC256880 ncRNA 2.31 1.039
-2569 GABRR1 gamma-aminobutyric acid type A receptor rho1 subunit protein-coding 1.593 1.962
+2563 GABRD gamma-aminobutyric acid type A receptor delta subunit protein-coding 5.19 2.034
+256302 NATD1 N-acetyltransferase domain containing 1 protein-coding 8.39 0.984
+256309 CCDC110 coiled-coil domain containing 110 protein-coding 4.259 1.713
+256329 LMNTD2 lamin tail domain containing 2 protein-coding 5.273 1.527
+256355 RPS2P32 ribosomal protein S2 pseudogene 32 pseudo 3.732 1.564
+256356 GK5 glycerol kinase 5 (putative) protein-coding 8.981 0.9623
+256364 EML3 echinoderm microtubule associated protein like 3 protein-coding 9.791 0.5875
+256380 SCML4 Scm polycomb group protein like 4 protein-coding 4.177 1.961
+2564 GABRE gamma-aminobutyric acid type A receptor epsilon subunit protein-coding 6.752 2.427
+256435 ST6GALNAC3 ST6 N-acetylgalactosaminide alpha-2,6-sialyltransferase 3 protein-coding 5.431 1.762
+256471 MFSD8 major facilitator superfamily domain containing 8 protein-coding 8.181 0.5737
+256472 TMEM151A transmembrane protein 151A protein-coding 3.218 2.765
+256586 LYSMD2 LysM domain containing 2 protein-coding 7.82 0.9291
+256643 BCLAF3 BCLAF1 and THRAP3 family member 3 protein-coding 7.403 0.708
+256646 NUTM1 NUT midline carcinoma family member 1 protein-coding 0.7824 1.187
+256691 MAMDC2 MAM domain containing 2 protein-coding 5.188 2.243
+256714 MAP7D2 MAP7 domain containing 2 protein-coding 4.771 2.749
+256880 LOC256880 uncharacterized LOC256880 ncRNA 2.31 1.038
+2569 GABRR1 gamma-aminobutyric acid type A receptor rho1 subunit protein-coding 1.592 1.962
256933 NPB neuropeptide B protein-coding 2.251 1.612
-256949 KANK3 KN motif and ankyrin repeat domains 3 protein-coding 6.758 1.264
-256957 HEATR9 HEAT repeat containing 9 protein-coding 0.5829 0.7973
-256987 SERINC5 serine incorporator 5 protein-coding 7.153 1.934
-257 ALX3 ALX homeobox 3 protein-coding 4.57 1.166
+256949 KANK3 KN motif and ankyrin repeat domains 3 protein-coding 6.76 1.265
+256957 HEATR9 HEAT repeat containing 9 protein-coding 0.5832 0.7978
+256987 SERINC5 serine incorporator 5 protein-coding 7.153 1.933
+257 ALX3 ALX homeobox 3 protein-coding 4.57 1.165
2570 GABRR2 gamma-aminobutyric acid type A receptor rho2 subunit protein-coding 1.316 1.04
257000 TINCR TINCR ubiquitin domain containing ncRNA 5.477 2.804
-257019 FRMD3 FERM domain containing 3 protein-coding 4.575 2.327
+257019 FRMD3 FERM domain containing 3 protein-coding 4.576 2.326
257044 CATSPERE catsper channel auxiliary subunit epsilon protein-coding 3.055 1.209
-257068 PLCXD2 phosphatidylinositol specific phospholipase C X domain containing 2 protein-coding 5.592 1.523
-2571 GAD1 glutamate decarboxylase 1 protein-coding 4.696 2.952
-257101 ZNF683 zinc finger protein 683 protein-coding 4.067 2.135
-257106 ARHGAP30 Rho GTPase activating protein 30 protein-coding 8.559 1.354
-257144 GCSAM germinal center associated signaling and motility protein-coding 4.506 1.853
+257068 PLCXD2 phosphatidylinositol specific phospholipase C X domain containing 2 protein-coding 5.592 1.522
+2571 GAD1 glutamate decarboxylase 1 protein-coding 4.695 2.951
+257101 ZNF683 zinc finger protein 683 protein-coding 4.068 2.135
+257106 ARHGAP30 Rho GTPase activating protein 30 protein-coding 8.56 1.354
+257144 GCSAM germinal center associated signaling and motility protein-coding 4.507 1.853
257160 RNF214 ring finger protein 214 protein-coding 8.312 0.476
257169 C9orf43 chromosome 9 open reading frame 43 protein-coding 3.315 1.107
-257177 CFAP126 cilia and flagella associated protein 126 protein-coding 4.501 1.777
-257194 NEGR1 neuronal growth regulator 1 protein-coding 5.771 2.441
-257203 DSCR9 Down syndrome critical region 9 (non-protein coding) ncRNA 1.714 0.9864
-257218 SHPRH SNF2 histone linker PHD RING helicase protein-coding 7.596 1.308
-257236 CCDC96 coiled-coil domain containing 96 protein-coding 5.871 1.08
-257240 KLHL34 kelch like family member 34 protein-coding 1.208 1.467
-257313 UTS2B urotensin 2B protein-coding 1.7 1.221
+257177 CFAP126 cilia and flagella associated protein 126 protein-coding 4.501 1.776
+257194 NEGR1 neuronal growth regulator 1 protein-coding 5.774 2.442
+257203 DSCR9 Down syndrome critical region 9 (non-protein coding) ncRNA 1.713 0.9864
+257218 SHPRH SNF2 histone linker PHD RING helicase protein-coding 7.597 1.307
+257236 CCDC96 coiled-coil domain containing 96 protein-coding 5.871 1.079
+257240 KLHL34 kelch like family member 34 protein-coding 1.209 1.467
+257313 UTS2B urotensin 2B protein-coding 1.701 1.221
257358 LINC01366 long intergenic non-protein coding RNA 1366 ncRNA 1.623 1.293
-257364 SNX33 sorting nexin 33 protein-coding 9.707 0.7441
-257397 TAB3 TGF-beta activated kinase 1 (MAP3K7) binding protein 3 protein-coding 9.438 0.7249
-257407 C2orf72 chromosome 2 open reading frame 72 protein-coding 6.175 3.42
-257415 FAM133B family with sequence similarity 133 member B protein-coding 6.657 0.6441
-25758 KIAA1549L KIAA1549 like protein-coding 5.864 2.766
-25759 SHC2 SHC adaptor protein 2 protein-coding 8.5 1.966
-25764 HYPK huntingtin interacting protein K protein-coding 9.889 0.7656
-25766 PRPF40B pre-mRNA processing factor 40 homolog B protein-coding 8.669 0.8681
-25771 TBC1D22A TBC1 domain family member 22A protein-coding 8.791 0.5961
-25775 C22orf24 chromosome 22 open reading frame 24 protein-coding 1.162 0.8854
-25776 CBY1 chibby family member 1, beta catenin antagonist protein-coding 9.163 0.6626
-25777 SUN2 Sad1 and UNC84 domain containing 2 protein-coding 11.58 0.763
-25778 DSTYK dual serine/threonine and tyrosine protein kinase protein-coding 9.267 0.765
+257364 SNX33 sorting nexin 33 protein-coding 9.707 0.7439
+257397 TAB3 TGF-beta activated kinase 1 (MAP3K7) binding protein 3 protein-coding 9.439 0.7247
+257407 C2orf72 chromosome 2 open reading frame 72 protein-coding 6.175 3.419
+257415 FAM133B family with sequence similarity 133 member B protein-coding 6.657 0.6439
+25758 KIAA1549L KIAA1549 like protein-coding 5.862 2.766
+25759 SHC2 SHC adaptor protein 2 protein-coding 8.502 1.966
+25764 HYPK huntingtin interacting protein K protein-coding 9.888 0.7655
+25766 PRPF40B pre-mRNA processing factor 40 homolog B protein-coding 8.669 0.8678
+25771 TBC1D22A TBC1 domain family member 22A protein-coding 8.791 0.596
+25775 C22orf24 chromosome 22 open reading frame 24 protein-coding 1.162 0.8853
+25776 CBY1 chibby family member 1, beta catenin antagonist protein-coding 9.163 0.6624
+25777 SUN2 Sad1 and UNC84 domain containing 2 protein-coding 11.58 0.7631
+25778 DSTYK dual serine/threonine and tyrosine protein kinase protein-coding 9.267 0.7647
25780 RASGRP3 RAS guanyl releasing protein 3 protein-coding 7.611 1.357
-25782 RAB3GAP2 RAB3 GTPase activating non-catalytic protein subunit 2 protein-coding 9.872 0.5957
-25786 DGCR11 DiGeorge syndrome critical region gene 11 (non-protein coding) ncRNA 5.22 0.8476
+25782 RAB3GAP2 RAB3 GTPase activating non-catalytic protein subunit 2 protein-coding 9.872 0.5955
+25786 DGCR11 DiGeorge syndrome critical region gene 11 (non-protein coding) ncRNA 5.22 0.8474
25787 DGCR9 DiGeorge syndrome critical region gene 9 (non-protein coding) ncRNA 3.696 2.132
-25788 RAD54B RAD54 homolog B protein-coding 6.705 1.257
-25790 CFAP45 cilia and flagella associated protein 45 protein-coding 4.202 2.125
-25791 NGEF neuronal guanine nucleotide exchange factor protein-coding 7.141 2.367
-25792 CIZ1 CDKN1A interacting zinc finger protein 1 protein-coding 10.9 0.5409
-25793 FBXO7 F-box protein 7 protein-coding 11.1 0.5612
+25788 RAD54B RAD54 homolog B protein-coding 6.704 1.257
+25790 CFAP45 cilia and flagella associated protein 45 protein-coding 4.201 2.125
+25791 NGEF neuronal guanine nucleotide exchange factor protein-coding 7.14 2.367
+25792 CIZ1 CDKN1A interacting zinc finger protein 1 protein-coding 10.9 0.5407
+25793 FBXO7 F-box protein 7 protein-coding 11.1 0.5611
25794 FSCN2 fascin actin-bundling protein 2, retinal protein-coding 3.242 1.796
-25796 PGLS 6-phosphogluconolactonase protein-coding 10.09 0.7689
-25797 QPCT glutaminyl-peptide cyclotransferase protein-coding 7.841 2.065
-25798 BRI3 brain protein I3 protein-coding 10.71 0.7816
-25799 ZNF324 zinc finger protein 324 protein-coding 7.532 0.5545
-2580 GAK cyclin G associated kinase protein-coding 10.96 0.5745
+25796 PGLS 6-phosphogluconolactonase protein-coding 10.09 0.7686
+25797 QPCT glutaminyl-peptide cyclotransferase protein-coding 7.842 2.065
+25798 BRI3 brain protein I3 protein-coding 10.71 0.7815
+25799 ZNF324 zinc finger protein 324 protein-coding 7.533 0.5545
+2580 GAK cyclin G associated kinase protein-coding 10.96 0.5743
25800 SLC39A6 solute carrier family 39 member 6 protein-coding 11.11 1.443
-25801 GCA grancalcin protein-coding 8.625 0.8808
+25801 GCA grancalcin protein-coding 8.625 0.8806
258010 SVIP small VCP interacting protein protein-coding 8.201 1.278
-25802 LMOD1 leiomodin 1 protein-coding 8.106 2.067
-25803 SPDEF SAM pointed domain containing ETS transcription factor protein-coding 5.553 4.333
-25804 LSM4 LSM4 homolog, U6 small nuclear RNA and mRNA degradation associated protein-coding 10.93 0.7239
-25805 BAMBI BMP and activin membrane bound inhibitor protein-coding 8.128 2.186
-25807 RHBDD3 rhomboid domain containing 3 protein-coding 8.71 0.827
-25809 TTLL1 tubulin tyrosine ligase like 1 protein-coding 7.421 0.9423
-2581 GALC galactosylceramidase protein-coding 9.218 1.124
-25812 POM121L1P POM121 transmembrane nucleoporin like 1, pseudogene pseudo 1.196 0.9339
-25813 SAMM50 SAMM50 sorting and assembly machinery component protein-coding 10.02 0.5993
-25814 ATXN10 ataxin 10 protein-coding 10.98 0.5383
-25816 TNFAIP8 TNF alpha induced protein 8 protein-coding 8.323 1.565
-25817 FAM19A5 family with sequence similarity 19 member A5, C-C motif chemokine like protein-coding 6.167 2.342
-25819 NOCT nocturnin protein-coding 6.632 1.154
-2582 GALE UDP-galactose-4-epimerase protein-coding 9.719 1.216
-25820 ARIH1 ariadne RBR E3 ubiquitin protein ligase 1 protein-coding 10.42 0.4689
-25821 MTO1 mitochondrial tRNA translation optimization 1 protein-coding 8.55 0.4961
-25822 DNAJB5 DnaJ heat shock protein family (Hsp40) member B5 protein-coding 8.18 1.376
-25823 TPSG1 tryptase gamma 1 protein-coding 1.654 1.904
-25824 PRDX5 peroxiredoxin 5 protein-coding 12.09 0.8657
+25802 LMOD1 leiomodin 1 protein-coding 8.109 2.069
+25803 SPDEF SAM pointed domain containing ETS transcription factor protein-coding 5.554 4.334
+25804 LSM4 LSM4 homolog, U6 small nuclear RNA and mRNA degradation associated protein-coding 10.93 0.7241
+25805 BAMBI BMP and activin membrane bound inhibitor protein-coding 8.127 2.186
+25807 RHBDD3 rhomboid domain containing 3 protein-coding 8.71 0.8268
+25809 TTLL1 tubulin tyrosine ligase like 1 protein-coding 7.421 0.9419
+2581 GALC galactosylceramidase protein-coding 9.218 1.123
+25812 POM121L1P POM121 transmembrane nucleoporin like 1, pseudogene pseudo 1.197 0.9346
+25813 SAMM50 SAMM50 sorting and assembly machinery component protein-coding 10.02 0.5991
+25814 ATXN10 ataxin 10 protein-coding 10.98 0.5382
+25816 TNFAIP8 TNF alpha induced protein 8 protein-coding 8.323 1.564
+25817 FAM19A5 family with sequence similarity 19 member A5, C-C motif chemokine like protein-coding 6.167 2.341
+25819 NOCT nocturnin protein-coding 6.631 1.153
+2582 GALE UDP-galactose-4-epimerase protein-coding 9.718 1.216
+25820 ARIH1 ariadne RBR E3 ubiquitin protein ligase 1 protein-coding 10.42 0.4688
+25821 MTO1 mitochondrial tRNA translation optimization 1 protein-coding 8.55 0.496
+25822 DNAJB5 DnaJ heat shock protein family (Hsp40) member B5 protein-coding 8.181 1.376
+25823 TPSG1 tryptase gamma 1 protein-coding 1.655 1.903
+25824 PRDX5 peroxiredoxin 5 protein-coding 12.09 0.8658
25825 BACE2 beta-site APP-cleaving enzyme 2 protein-coding 10.06 1.699
-25827 FBXL2 F-box and leucine rich repeat protein 2 protein-coding 6.684 1.673
+25827 FBXL2 F-box and leucine rich repeat protein 2 protein-coding 6.685 1.672
25828 TXN2 thioredoxin 2 protein-coding 10.7 0.6004
-25829 TMEM184B transmembrane protein 184B protein-coding 10.78 0.6527
-2583 B4GALNT1 beta-1,4-N-acetyl-galactosaminyltransferase 1 protein-coding 5.679 2.343
+25829 TMEM184B transmembrane protein 184B protein-coding 10.78 0.6525
+2583 B4GALNT1 beta-1,4-N-acetyl-galactosaminyltransferase 1 protein-coding 5.679 2.342
25830 SULT4A1 sulfotransferase family 4A member 1 protein-coding 3.67 2.946
-25831 HECTD1 HECT domain E3 ubiquitin protein ligase 1 protein-coding 11.33 0.6529
+25831 HECTD1 HECT domain E3 ubiquitin protein ligase 1 protein-coding 11.33 0.6527
25832 NBPF14 NBPF member 14 protein-coding 7.739 1.256
-25833 POU2F3 POU class 2 homeobox 3 protein-coding 4.624 2.529
-25836 NIPBL NIPBL, cohesin loading factor protein-coding 10.62 0.6288
+25833 POU2F3 POU class 2 homeobox 3 protein-coding 4.625 2.528
+25836 NIPBL NIPBL, cohesin loading factor protein-coding 10.62 0.6286
25837 RAB26 RAB26, member RAS oncogene family protein-coding 5.39 1.999
-25839 COG4 component of oligomeric golgi complex 4 protein-coding 10.47 0.5132
-2584 GALK1 galactokinase 1 protein-coding 8.671 1.043
-25840 METTL7A methyltransferase like 7A protein-coding 10.64 1.772
+25839 COG4 component of oligomeric golgi complex 4 protein-coding 10.47 0.513
+2584 GALK1 galactokinase 1 protein-coding 8.67 1.042
+25840 METTL7A methyltransferase like 7A protein-coding 10.65 1.772
25841 ABTB2 ankyrin repeat and BTB domain containing 2 protein-coding 7.794 1.38
-25842 ASF1A anti-silencing function 1A histone chaperone protein-coding 8.843 0.7079
-25843 MOB4 MOB family member 4, phocein protein-coding 9.755 0.5515
-25844 YIPF3 Yip1 domain family member 3 protein-coding 11.46 0.5489
-25845 PP7080 uncharacterized LOC25845 ncRNA 8.669 0.9234
-25847 ANAPC13 anaphase promoting complex subunit 13 protein-coding 10.21 0.5036
-25849 PARM1 prostate androgen-regulated mucin-like protein 1 protein-coding 9.387 2.198
-2585 GALK2 galactokinase 2 protein-coding 8.564 0.638
-25850 ZNF345 zinc finger protein 345 protein-coding 5.987 1.06
-25851 TECPR1 tectonin beta-propeller repeat containing 1 protein-coding 8.404 0.9024
-25852 ARMC8 armadillo repeat containing 8 protein-coding 9.377 0.5234
-25853 DCAF12 DDB1 and CUL4 associated factor 12 protein-coding 10.36 0.6168
-25854 FAM149A family with sequence similarity 149 member A protein-coding 6.706 2.061
+25842 ASF1A anti-silencing function 1A histone chaperone protein-coding 8.843 0.7077
+25843 MOB4 MOB family member 4, phocein protein-coding 9.754 0.5513
+25844 YIPF3 Yip1 domain family member 3 protein-coding 11.46 0.5491
+25845 PP7080 uncharacterized LOC25845 ncRNA 8.668 0.9231
+25847 ANAPC13 anaphase promoting complex subunit 13 protein-coding 10.21 0.5037
+25849 PARM1 prostate androgen-regulated mucin-like protein 1 protein-coding 9.389 2.199
+2585 GALK2 galactokinase 2 protein-coding 8.564 0.6377
+25850 ZNF345 zinc finger protein 345 protein-coding 5.988 1.06
+25851 TECPR1 tectonin beta-propeller repeat containing 1 protein-coding 8.405 0.9023
+25852 ARMC8 armadillo repeat containing 8 protein-coding 9.377 0.5232
+25853 DCAF12 DDB1 and CUL4 associated factor 12 protein-coding 10.36 0.6166
+25854 FAM149A family with sequence similarity 149 member A protein-coding 6.707 2.061
25855 BRMS1 breast cancer metastasis suppressor 1 protein-coding 10.07 0.7064
25859 PART1 prostate androgen-regulated transcript 1 (non-protein coding) ncRNA 3.807 3.161
-25861 WHRN whirlin protein-coding 7.88 1.253
+25861 WHRN whirlin protein-coding 7.881 1.253
25862 USP49 ubiquitin specific peptidase 49 protein-coding 4.058 1.186
-25864 ABHD14A abhydrolase domain containing 14A protein-coding 8.358 1.159
-25865 PRKD2 protein kinase D2 protein-coding 10.27 0.7005
-25870 SUMF2 sulfatase modifying factor 2 protein-coding 11.68 0.6866
-25871 NEPRO nucleolus and neural progenitor protein protein-coding 9.775 0.4691
-25873 RPL36 ribosomal protein L36 protein-coding 13.03 0.9254
+25864 ABHD14A abhydrolase domain containing 14A protein-coding 8.359 1.159
+25865 PRKD2 protein kinase D2 protein-coding 10.27 0.7002
+25870 SUMF2 sulfatase modifying factor 2 protein-coding 11.68 0.6864
+25871 NEPRO nucleolus and neural progenitor protein protein-coding 9.775 0.4689
+25873 RPL36 ribosomal protein L36 protein-coding 13.03 0.9251
25874 MPC2 mitochondrial pyruvate carrier 2 protein-coding 10.15 1.033
-25875 LETMD1 LETM1 domain containing 1 protein-coding 9.936 0.6759
-25876 SPEF1 sperm flagellar 1 protein-coding 3.575 2.185
-25878 MXRA5 matrix remodeling associated 5 protein-coding 10.3 2.376
-25879 DCAF13 DDB1 and CUL4 associated factor 13 protein-coding 9.925 0.75
-2588 GALNS galactosamine (N-acetyl)-6-sulfatase protein-coding 8.943 0.7865
-25880 TMEM186 transmembrane protein 186 protein-coding 8.01 0.5319
-25885 POLR1A RNA polymerase I subunit A protein-coding 9.456 0.7625
-25886 POC1A POC1 centriolar protein A protein-coding 7.416 1.307
+25875 LETMD1 LETM1 domain containing 1 protein-coding 9.936 0.6757
+25876 SPEF1 sperm flagellar 1 protein-coding 3.575 2.184
+25878 MXRA5 matrix remodeling associated 5 protein-coding 10.3 2.375
+25879 DCAF13 DDB1 and CUL4 associated factor 13 protein-coding 9.924 0.7504
+2588 GALNS galactosamine (N-acetyl)-6-sulfatase protein-coding 8.943 0.7862
+25880 TMEM186 transmembrane protein 186 protein-coding 8.009 0.532
+25885 POLR1A RNA polymerase I subunit A protein-coding 9.456 0.7624
+25886 POC1A POC1 centriolar protein A protein-coding 7.415 1.307
25888 ZNF473 zinc finger protein 473 protein-coding 7.986 0.5944
-2589 GALNT1 polypeptide N-acetylgalactosaminyltransferase 1 protein-coding 10.98 0.806
-25890 ABI3BP ABI family member 3 binding protein protein-coding 7.527 2.381
-25893 TRIM58 tripartite motif containing 58 protein-coding 4.335 2.577
+2589 GALNT1 polypeptide N-acetylgalactosaminyltransferase 1 protein-coding 10.98 0.8057
+25890 ABI3BP ABI family member 3 binding protein protein-coding 7.53 2.383
+25893 TRIM58 tripartite motif containing 58 protein-coding 4.337 2.577
25894 PLEKHG4 pleckstrin homology and RhoGEF domain containing G4 protein-coding 7.845 1.939
-25895 EEF1AKMT3 EEF1A lysine methyltransferase 3 protein-coding 7.856 0.8205
-25896 INTS7 integrator complex subunit 7 protein-coding 8.965 0.7789
-25897 RNF19A ring finger protein 19A, RBR E3 ubiquitin protein ligase protein-coding 10.36 0.8869
-25898 RCHY1 ring finger and CHY zinc finger domain containing 1 protein-coding 8.644 0.6433
-259 AMBP alpha-1-microglobulin/bikunin precursor protein-coding 3.192 3.901
-2590 GALNT2 polypeptide N-acetylgalactosaminyltransferase 2 protein-coding 11.39 0.7745
-25900 IFFO1 intermediate filament family orphan 1 protein-coding 7.704 1.494
-25901 CCDC28A coiled-coil domain containing 28A protein-coding 8.79 0.7519
-25902 MTHFD1L methylenetetrahydrofolate dehydrogenase (NADP+ dependent) 1 like protein-coding 9.057 1.049
-25903 OLFML2B olfactomedin like 2B protein-coding 8.814 1.697
-25904 CNOT10 CCR4-NOT transcription complex subunit 10 protein-coding 9.1 0.4866
-25906 ANAPC15 anaphase promoting complex subunit 15 protein-coding 9.056 0.7295
-25907 TMEM158 transmembrane protein 158 (gene/pseudogene) protein-coding 6.583 2.151
-25909 AHCTF1 AT-hook containing transcription factor 1 protein-coding 10.25 0.6548
-2591 GALNT3 polypeptide N-acetylgalactosaminyltransferase 3 protein-coding 8.498 2.846
-25911 DPCD deleted in primary ciliary dyskinesia homolog (mouse) protein-coding 8.25 0.8815
+25895 EEF1AKMT3 EEF1A lysine methyltransferase 3 protein-coding 7.856 0.8202
+25896 INTS7 integrator complex subunit 7 protein-coding 8.965 0.7787
+25897 RNF19A ring finger protein 19A, RBR E3 ubiquitin protein ligase protein-coding 10.36 0.8866
+25898 RCHY1 ring finger and CHY zinc finger domain containing 1 protein-coding 8.644 0.6431
+259 AMBP alpha-1-microglobulin/bikunin precursor protein-coding 3.193 3.902
+2590 GALNT2 polypeptide N-acetylgalactosaminyltransferase 2 protein-coding 11.39 0.7743
+25900 IFFO1 intermediate filament family orphan 1 protein-coding 7.705 1.494
+25901 CCDC28A coiled-coil domain containing 28A protein-coding 8.79 0.7521
+25902 MTHFD1L methylenetetrahydrofolate dehydrogenase (NADP+ dependent) 1 like protein-coding 9.056 1.049
+25903 OLFML2B olfactomedin like 2B protein-coding 8.814 1.696
+25904 CNOT10 CCR4-NOT transcription complex subunit 10 protein-coding 9.099 0.4865
+25906 ANAPC15 anaphase promoting complex subunit 15 protein-coding 9.056 0.7293
+25907 TMEM158 transmembrane protein 158 (gene/pseudogene) protein-coding 6.583 2.15
+25909 AHCTF1 AT-hook containing transcription factor 1 protein-coding 10.25 0.6545
+2591 GALNT3 polypeptide N-acetylgalactosaminyltransferase 3 protein-coding 8.498 2.845
+25911 DPCD deleted in primary ciliary dyskinesia homolog (mouse) protein-coding 8.25 0.8814
25912 C1orf43 chromosome 1 open reading frame 43 protein-coding 12.19 0.5373
-25913 POT1 protection of telomeres 1 protein-coding 8.952 0.6185
-25914 RTTN rotatin protein-coding 7.673 0.949
-25915 NDUFAF3 NADH:ubiquinone oxidoreductase complex assembly factor 3 protein-coding 10.07 0.7934
-25917 THUMPD3 THUMP domain containing 3 protein-coding 9.705 0.4876
-259173 ALS2CL ALS2 C-terminal like protein-coding 8.191 1.947
-259197 NCR3 natural cytotoxicity triggering receptor 3 protein-coding 2.636 1.641
-2592 GALT galactose-1-phosphate uridylyltransferase protein-coding 8.654 0.9105
-25920 NELFB negative elongation factor complex member B protein-coding 10.76 0.5038
-25921 ZDHHC5 zinc finger DHHC-type containing 5 protein-coding 11.36 0.6162
-259215 LY6G6F lymphocyte antigen 6 family member G6F protein-coding 0.3441 0.7369
+25913 POT1 protection of telomeres 1 protein-coding 8.952 0.6184
+25914 RTTN rotatin protein-coding 7.673 0.9486
+25915 NDUFAF3 NADH:ubiquinone oxidoreductase complex assembly factor 3 protein-coding 10.07 0.7931
+25917 THUMPD3 THUMP domain containing 3 protein-coding 9.705 0.4875
+259173 ALS2CL ALS2 C-terminal like protein-coding 8.192 1.947
+259197 NCR3 natural cytotoxicity triggering receptor 3 protein-coding 2.636 1.642
+2592 GALT galactose-1-phosphate uridylyltransferase protein-coding 8.654 0.9102
+25920 NELFB negative elongation factor complex member B protein-coding 10.76 0.5035
+25921 ZDHHC5 zinc finger DHHC-type containing 5 protein-coding 11.36 0.6159
+259215 LY6G6F lymphocyte antigen 6 family member G6F protein-coding 0.3439 0.7368
259217 HSPA12A heat shock protein family A (Hsp70) member 12A protein-coding 7.604 1.759
-25923 ATL3 atlastin GTPase 3 protein-coding 8.561 0.9978
-259230 SGMS1 sphingomyelin synthase 1 protein-coding 9.253 0.9382
-259236 TMIE transmembrane inner ear protein-coding 3.856 2.067
-25924 MYRIP myosin VIIA and Rab interacting protein protein-coding 5.481 2.586
-25925 ZNF521 zinc finger protein 521 protein-coding 7.03 1.922
+25923 ATL3 atlastin GTPase 3 protein-coding 8.56 0.9977
+259230 SGMS1 sphingomyelin synthase 1 protein-coding 9.253 0.9381
+259236 TMIE transmembrane inner ear protein-coding 3.857 2.067
+25924 MYRIP myosin VIIA and Rab interacting protein protein-coding 5.482 2.586
+25925 ZNF521 zinc finger protein 521 protein-coding 7.031 1.921
25926 NOL11 nucleolar protein 11 protein-coding 9.936 0.5828
-259266 ASPM abnormal spindle microtubule assembly protein-coding 7.989 2.245
-25927 CNRIP1 cannabinoid receptor interacting protein 1 protein-coding 7.18 1.661
-25928 SOSTDC1 sclerostin domain containing 1 protein-coding 4.28 3.005
-259282 BOD1L1 biorientation of chromosomes in cell division 1 like 1 protein-coding 9.922 0.7719
-259283 MDS2 myelodysplastic syndrome 2 translocation associated protein-coding 1.037 1.09
-25929 GEMIN5 gem nuclear organelle associated protein 5 protein-coding 9.16 0.5253
-259290 TAS2R31 taste 2 receptor member 31 protein-coding 1.433 1
-259294 TAS2R19 taste 2 receptor member 19 protein-coding 1.227 0.9791
-259295 TAS2R20 taste 2 receptor member 20 protein-coding 4.261 0.8785
+259266 ASPM abnormal spindle microtubule assembly protein-coding 7.986 2.246
+25927 CNRIP1 cannabinoid receptor interacting protein 1 protein-coding 7.181 1.661
+25928 SOSTDC1 sclerostin domain containing 1 protein-coding 4.283 3.005
+259282 BOD1L1 biorientation of chromosomes in cell division 1 like 1 protein-coding 9.923 0.7717
+259283 MDS2 myelodysplastic syndrome 2 translocation associated protein-coding 1.038 1.091
+25929 GEMIN5 gem nuclear organelle associated protein 5 protein-coding 9.16 0.5252
+259290 TAS2R31 taste 2 receptor member 31 protein-coding 1.433 0.9999
+259294 TAS2R19 taste 2 receptor member 19 protein-coding 1.227 0.979
+259295 TAS2R20 taste 2 receptor member 20 protein-coding 4.261 0.8784
2593 GAMT guanidinoacetate N-methyltransferase protein-coding 8.381 2.117
-25930 PTPN23 protein tyrosine phosphatase, non-receptor type 23 protein-coding 10.56 0.5341
+25930 PTPN23 protein tyrosine phosphatase, non-receptor type 23 protein-coding 10.56 0.5338
259307 IL4I1 interleukin 4 induced 1 protein-coding 7.184 1.727
25932 CLIC4 chloride intracellular channel 4 protein-coding 11.81 1.157
-25934 NIPSNAP3A nipsnap homolog 3A protein-coding 8.907 0.699
-25936 NSL1 NSL1, MIS12 kinetochore complex component protein-coding 9.143 0.5971
+25934 NIPSNAP3A nipsnap homolog 3A protein-coding 8.908 0.6989
+25936 NSL1 NSL1, MIS12 kinetochore complex component protein-coding 9.143 0.5968
25937 WWTR1 WW domain containing transcription regulator 1 protein-coding 8.471 1.423
-25938 HEATR5A HEAT repeat containing 5A protein-coding 9.126 0.9014
-25939 SAMHD1 SAM and HD domain containing deoxynucleoside triphosphate triphosphohydrolase 1 protein-coding 9.318 1.27
+25938 HEATR5A HEAT repeat containing 5A protein-coding 9.126 0.9011
+25939 SAMHD1 SAM and HD domain containing deoxynucleoside triphosphate triphosphohydrolase 1 protein-coding 9.319 1.27
25940 FAM98A family with sequence similarity 98 member A protein-coding 9.894 0.4457
-25941 TPGS2 tubulin polyglutamylase complex subunit 2 protein-coding 10.17 0.6762
-25942 SIN3A SIN3 transcription regulator family member A protein-coding 10.59 0.5117
-25943 C20orf194 chromosome 20 open reading frame 194 protein-coding 8.797 1.23
-25945 NECTIN3 nectin cell adhesion molecule 3 protein-coding 6.787 1.934
+25941 TPGS2 tubulin polyglutamylase complex subunit 2 protein-coding 10.17 0.6761
+25942 SIN3A SIN3 transcription regulator family member A protein-coding 10.59 0.5115
+25943 C20orf194 chromosome 20 open reading frame 194 protein-coding 8.798 1.23
+25945 NECTIN3 nectin cell adhesion molecule 3 protein-coding 6.789 1.934
25946 ZNF385A zinc finger protein 385A protein-coding 9.905 1.419
-25948 KBTBD2 kelch repeat and BTB domain containing 2 protein-coding 10.13 0.473
-25949 SYF2 SYF2 pre-mRNA splicing factor protein-coding 10.17 0.5105
-2595 GANC glucosidase alpha, neutral C protein-coding 8.271 0.6672
-25950 RWDD3 RWD domain containing 3 protein-coding 7.782 0.5734
+25948 KBTBD2 kelch repeat and BTB domain containing 2 protein-coding 10.13 0.4729
+25949 SYF2 SYF2 pre-mRNA splicing factor protein-coding 10.17 0.5103
+2595 GANC glucosidase alpha, neutral C protein-coding 8.272 0.6672
+25950 RWDD3 RWD domain containing 3 protein-coding 7.782 0.5732
25953 PNKD paroxysmal nonkinesigenic dyskinesia protein-coding 10.69 0.9757
-25956 SEC31B SEC31 homolog B, COPII coat complex component protein-coding 6.644 1.504
-25957 PNISR PNN interacting serine and arginine rich protein protein-coding 10.42 0.8195
+25956 SEC31B SEC31 homolog B, COPII coat complex component protein-coding 6.645 1.504
+25957 PNISR PNN interacting serine and arginine rich protein protein-coding 10.42 0.8197
25959 KANK2 KN motif and ankyrin repeat domains 2 protein-coding 10.56 1.143
-25960 ADGRA2 adhesion G protein-coupled receptor A2 protein-coding 9.416 1.391
-25961 NUDT13 nudix hydrolase 13 protein-coding 5.237 1.031
-25962 VIRMA vir like m6A methyltransferase associated protein-coding 10.34 0.611
-25963 TMEM87A transmembrane protein 87A protein-coding 10.84 0.7389
-25966 C2CD2 C2 calcium dependent domain containing 2 protein-coding 9.244 0.9047
-2597 GAPDH glyceraldehyde-3-phosphate dehydrogenase protein-coding 15.95 0.8915
-25970 SH2B1 SH2B adaptor protein 1 protein-coding 10.17 0.7481
-25972 UNC50 unc-50 inner nuclear membrane RNA binding protein protein-coding 9.313 0.4529
+25960 ADGRA2 adhesion G protein-coupled receptor A2 protein-coding 9.417 1.391
+25961 NUDT13 nudix hydrolase 13 protein-coding 5.238 1.03
+25962 VIRMA vir like m6A methyltransferase associated protein-coding 10.34 0.6107
+25963 TMEM87A transmembrane protein 87A protein-coding 10.84 0.7388
+25966 C2CD2 C2 calcium dependent domain containing 2 protein-coding 9.244 0.9044
+2597 GAPDH glyceraldehyde-3-phosphate dehydrogenase protein-coding 15.95 0.8922
+25970 SH2B1 SH2B adaptor protein 1 protein-coding 10.17 0.7479
+25972 UNC50 unc-50 inner nuclear membrane RNA binding protein protein-coding 9.313 0.4528
25973 PARS2 prolyl-tRNA synthetase 2, mitochondrial protein-coding 7.196 0.6013
-25974 MMACHC methylmalonic aciduria (cobalamin deficiency) cblC type, with homocystinuria protein-coding 7.284 0.8275
-25976 TIPARP TCDD inducible poly(ADP-ribose) polymerase protein-coding 9.639 1.166
-25977 NECAP1 NECAP endocytosis associated 1 protein-coding 9.554 0.6898
-25978 CHMP2B charged multivesicular body protein 2B protein-coding 9.956 0.6796
-25979 DHRS7B dehydrogenase/reductase 7B protein-coding 9.059 0.7271
-25980 AAR2 AAR2 splicing factor homolog protein-coding 10.08 0.4272
-25981 DNAH1 dynein axonemal heavy chain 1 protein-coding 7.176 1.27
+25974 MMACHC methylmalonic aciduria (cobalamin deficiency) cblC type, with homocystinuria protein-coding 7.284 0.8274
+25976 TIPARP TCDD inducible poly(ADP-ribose) polymerase protein-coding 9.64 1.165
+25977 NECAP1 NECAP endocytosis associated 1 protein-coding 9.554 0.6897
+25978 CHMP2B charged multivesicular body protein 2B protein-coding 9.956 0.6794
+25979 DHRS7B dehydrogenase/reductase 7B protein-coding 9.059 0.727
+25980 AAR2 AAR2 splicing factor homolog protein-coding 10.08 0.4271
+25981 DNAH1 dynein axonemal heavy chain 1 protein-coding 7.178 1.271
25983 NGDN neuroguidin protein-coding 9.064 0.5201
-25984 KRT23 keratin 23 protein-coding 5.435 4.039
+25984 KRT23 keratin 23 protein-coding 5.434 4.039
25987 TSKU tsukushi, small leucine rich proteoglycan protein-coding 10.22 1.447
-25988 HINFP histone H4 transcription factor protein-coding 8.418 0.4929
-25989 ULK3 unc-51 like kinase 3 protein-coding 9.737 0.6655
-25992 SNED1 sushi, nidogen and EGF like domains 1 protein-coding 8.131 1.486
-25994 HIGD1A HIG1 hypoxia inducible domain family member 1A protein-coding 10.8 0.7653
-25996 REXO2 RNA exonuclease 2 protein-coding 9.608 0.8125
-25998 IBTK inhibitor of Bruton tyrosine kinase protein-coding 10.21 0.659
-25999 CLIP3 CAP-Gly domain containing linker protein 3 protein-coding 8.552 2.006
-26 AOC1 amine oxidase, copper containing 1 protein-coding 5.893 3.848
-26000 TBC1D10B TBC1 domain family member 10B protein-coding 10.54 0.517
-26001 RNF167 ring finger protein 167 protein-coding 11.04 0.4866
-26002 MOXD1 monooxygenase DBH like 1 protein-coding 7.618 2.352
+25988 HINFP histone H4 transcription factor protein-coding 8.418 0.4927
+25989 ULK3 unc-51 like kinase 3 protein-coding 9.737 0.6653
+25992 SNED1 sushi, nidogen and EGF like domains 1 protein-coding 8.132 1.486
+25994 HIGD1A HIG1 hypoxia inducible domain family member 1A protein-coding 10.8 0.765
+25996 REXO2 RNA exonuclease 2 protein-coding 9.608 0.8124
+25998 IBTK inhibitor of Bruton tyrosine kinase protein-coding 10.21 0.6588
+25999 CLIP3 CAP-Gly domain containing linker protein 3 protein-coding 8.553 2.005
+26 AOC1 amine oxidase, copper containing 1 protein-coding 5.895 3.849
+26000 TBC1D10B TBC1 domain family member 10B protein-coding 10.54 0.5169
+26001 RNF167 ring finger protein 167 protein-coding 11.04 0.4865
+26002 MOXD1 monooxygenase DBH like 1 protein-coding 7.62 2.352
26003 GORASP2 golgi reassembly stacking protein 2 protein-coding 11.24 0.4388
-26005 C2CD3 C2 calcium dependent domain containing 3 protein-coding 9.18 0.633
-26007 TKFC triokinase and FMN cyclase protein-coding 9.82 0.8039
-26009 ZZZ3 zinc finger ZZ-type containing 3 protein-coding 9.427 0.5576
-26010 SPATS2L spermatogenesis associated serine rich 2 like protein-coding 11.07 0.9593
-26011 TENM4 teneurin transmembrane protein 4 protein-coding 7.515 2.299
+26005 C2CD3 C2 calcium dependent domain containing 3 protein-coding 9.18 0.6327
+26007 TKFC triokinase and FMN cyclase protein-coding 9.819 0.8037
+26009 ZZZ3 zinc finger ZZ-type containing 3 protein-coding 9.427 0.5574
+26010 SPATS2L spermatogenesis associated serine rich 2 like protein-coding 11.07 0.959
+26011 TENM4 teneurin transmembrane protein 4 protein-coding 7.516 2.298
26012 NSMF NMDA receptor synaptonuclear signaling and neuronal migration factor protein-coding 10.23 1.116
-26013 L3MBTL1 L3MBTL1, histone methyl-lysine binding protein protein-coding 6.737 1.328
-26015 RPAP1 RNA polymerase II associated protein 1 protein-coding 9.309 0.5434
+26013 L3MBTL1 L3MBTL1, histone methyl-lysine binding protein protein-coding 6.738 1.328
+26015 RPAP1 RNA polymerase II associated protein 1 protein-coding 9.309 0.5432
26017 FAM32A family with sequence similarity 32 member A protein-coding 10.73 0.4167
-26018 LRIG1 leucine rich repeats and immunoglobulin like domains 1 protein-coding 10.6 1.825
-26019 UPF2 UPF2, regulator of nonsense mediated mRNA decay protein-coding 9.721 0.6266
+26018 LRIG1 leucine rich repeats and immunoglobulin like domains 1 protein-coding 10.6 1.824
+26019 UPF2 UPF2, regulator of nonsense mediated mRNA decay protein-coding 9.721 0.6264
26020 LRP10 LDL receptor related protein 10 protein-coding 11.92 0.7524
26022 TMEM98 transmembrane protein 98 protein-coding 9.788 1.636
26024 PTCD1 pentatricopeptide repeat domain 1 protein-coding 8.933 0.6095
-26025 PCDHGA12 protocadherin gamma subfamily A, 12 protein-coding 4.902 2.099
+26025 PCDHGA12 protocadherin gamma subfamily A, 12 protein-coding 4.904 2.099
26027 ACOT11 acyl-CoA thioesterase 11 protein-coding 7.167 1.891
-260293 CYP4X1 cytochrome P450 family 4 subfamily X member 1 protein-coding 6.173 2.416
+260293 CYP4X1 cytochrome P450 family 4 subfamily X member 1 protein-coding 6.174 2.416
260294 NSUN5P2 NOP2/Sun RNA methyltransferase family member 5 pseudogene 2 pseudo 8.479 1.193
-26030 PLEKHG3 pleckstrin homology and RhoGEF domain containing G3 protein-coding 9.783 1.095
+26030 PLEKHG3 pleckstrin homology and RhoGEF domain containing G3 protein-coding 9.783 1.094
26031 OSBPL3 oxysterol binding protein like 3 protein-coding 9.089 1.408
-26032 SUSD5 sushi domain containing 5 protein-coding 5.377 2.178
-26033 ATRNL1 attractin like 1 protein-coding 4.542 2.841
-26034 IPCEF1 interaction protein for cytohesin exchange factors 1 protein-coding 6.025 1.695
-26035 GLCE glucuronic acid epimerase protein-coding 9.223 0.9414
-26036 ZNF451 zinc finger protein 451 protein-coding 9.214 0.5457
-26037 SIPA1L1 signal induced proliferation associated 1 like 1 protein-coding 10.08 0.7441
-26038 CHD5 chromodomain helicase DNA binding protein 5 protein-coding 3.094 2.642
-26039 SS18L1 SS18L1, nBAF chromatin remodeling complex subunit protein-coding 8.866 0.7102
-26040 SETBP1 SET binding protein 1 protein-coding 8.077 1.479
+26032 SUSD5 sushi domain containing 5 protein-coding 5.378 2.178
+26033 ATRNL1 attractin like 1 protein-coding 4.543 2.84
+26034 IPCEF1 interaction protein for cytohesin exchange factors 1 protein-coding 6.027 1.696
+26035 GLCE glucuronic acid epimerase protein-coding 9.222 0.9411
+26036 ZNF451 zinc finger protein 451 protein-coding 9.214 0.5456
+26037 SIPA1L1 signal induced proliferation associated 1 like 1 protein-coding 10.08 0.7439
+26038 CHD5 chromodomain helicase DNA binding protein 5 protein-coding 3.096 2.643
+26039 SS18L1 SS18L1, nBAF chromatin remodeling complex subunit protein-coding 8.865 0.7099
+26040 SETBP1 SET binding protein 1 protein-coding 8.078 1.479
260425 MAGI3 membrane associated guanylate kinase, WW and PDZ domain containing 3 protein-coding 8.562 1.153
-26043 UBXN7 UBX domain protein 7 protein-coding 8.014 1.084
-26045 LRRTM2 leucine rich repeat transmembrane neuronal 2 protein-coding 3.208 2.433
-26046 LTN1 listerin E3 ubiquitin protein ligase 1 protein-coding 9.211 0.7623
-26047 CNTNAP2 contactin associated protein like 2 protein-coding 6.212 3.429
-26048 ZNF500 zinc finger protein 500 protein-coding 7.874 0.5674
+26043 UBXN7 UBX domain protein 7 protein-coding 8.015 1.084
+26045 LRRTM2 leucine rich repeat transmembrane neuronal 2 protein-coding 3.209 2.433
+26046 LTN1 listerin E3 ubiquitin protein ligase 1 protein-coding 9.211 0.7621
+26047 CNTNAP2 contactin associated protein like 2 protein-coding 6.212 3.428
+26048 ZNF500 zinc finger protein 500 protein-coding 7.874 0.5673
26049 FAM169A family with sequence similarity 169 member A protein-coding 7.27 1.712
-26050 SLITRK5 SLIT and NTRK like family member 5 protein-coding 3.742 2.829
-26051 PPP1R16B protein phosphatase 1 regulatory subunit 16B protein-coding 7.521 1.687
+26050 SLITRK5 SLIT and NTRK like family member 5 protein-coding 3.744 2.829
+26051 PPP1R16B protein phosphatase 1 regulatory subunit 16B protein-coding 7.522 1.688
26052 DNM3 dynamin 3 protein-coding 6.139 1.885
-26053 AUTS2 AUTS2, activator of transcription and developmental regulator protein-coding 9.452 1.314
+26053 AUTS2 AUTS2, activator of transcription and developmental regulator protein-coding 9.453 1.314
26054 SENP6 SUMO specific peptidase 6 protein-coding 10.4 0.602
-26056 RAB11FIP5 RAB11 family interacting protein 5 protein-coding 9.728 0.9262
-26057 ANKRD17 ankyrin repeat domain 17 protein-coding 10.95 0.6489
-26058 GIGYF2 GRB10 interacting GYF protein 2 protein-coding 10.57 0.5498
-26060 APPL1 adaptor protein, phosphotyrosine interacting with PH domain and leucine zipper 1 protein-coding 10.1 0.6313
-26061 HACL1 2-hydroxyacyl-CoA lyase 1 protein-coding 8.417 0.7188
-26063 DECR2 2,4-dienoyl-CoA reductase 2 protein-coding 8.753 1.156
+26056 RAB11FIP5 RAB11 family interacting protein 5 protein-coding 9.728 0.9259
+26057 ANKRD17 ankyrin repeat domain 17 protein-coding 10.95 0.6486
+26058 GIGYF2 GRB10 interacting GYF protein 2 protein-coding 10.57 0.5497
+26060 APPL1 adaptor protein, phosphotyrosine interacting with PH domain and leucine zipper 1 protein-coding 10.1 0.6311
+26061 HACL1 2-hydroxyacyl-CoA lyase 1 protein-coding 8.418 0.7185
+26063 DECR2 2,4-dienoyl-CoA reductase 2 protein-coding 8.752 1.156
26064 RAI14 retinoic acid induced 14 protein-coding 10.12 1.204
-26065 LSM14A LSM14A, mRNA processing body assembly factor protein-coding 11.44 0.4826
-26071 RTL8A retrotransposon Gag like 8A protein-coding 9.859 0.9099
-26073 POLDIP2 DNA polymerase delta interacting protein 2 protein-coding 11.4 0.548
-26074 CFAP61 cilia and flagella associated protein 61 protein-coding 2.726 2.055
-26084 ARHGEF26 Rho guanine nucleotide exchange factor 26 protein-coding 7.61 2.144
-26086 GPSM1 G protein signaling modulator 1 protein-coding 8.378 1.514
-26088 GGA1 golgi associated, gamma adaptin ear containing, ARF binding protein 1 protein-coding 10.31 0.5728
+26065 LSM14A LSM14A, mRNA processing body assembly factor protein-coding 11.44 0.4824
+26071 RTL8A retrotransposon Gag like 8A protein-coding 9.859 0.9096
+26073 POLDIP2 DNA polymerase delta interacting protein 2 protein-coding 11.4 0.5481
+26074 CFAP61 cilia and flagella associated protein 61 protein-coding 2.726 2.056
+26084 ARHGEF26 Rho guanine nucleotide exchange factor 26 protein-coding 7.611 2.144
+26086 GPSM1 G protein signaling modulator 1 protein-coding 8.378 1.513
+26088 GGA1 golgi associated, gamma adaptin ear containing, ARF binding protein 1 protein-coding 10.31 0.5726
26090 ABHD12 abhydrolase domain containing 12 protein-coding 10.82 0.7239
-26091 HERC4 HECT and RLD domain containing E3 ubiquitin protein ligase 4 protein-coding 9.574 0.5415
-26092 TOR1AIP1 torsin 1A interacting protein 1 protein-coding 10.46 0.6561
-26093 CCDC9 coiled-coil domain containing 9 protein-coding 8.788 0.68
+26091 HERC4 HECT and RLD domain containing E3 ubiquitin protein ligase 4 protein-coding 9.574 0.5413
+26092 TOR1AIP1 torsin 1A interacting protein 1 protein-coding 10.46 0.6563
+26093 CCDC9 coiled-coil domain containing 9 protein-coding 8.788 0.6798
26094 DCAF4 DDB1 and CUL4 associated factor 4 protein-coding 8.145 0.7373
-26095 PTPN20 protein tyrosine phosphatase, non-receptor type 20 protein-coding 3.587 2.53
-26097 CHTOP chromatin target of PRMT1 protein-coding 10.91 0.437
-26098 EDRF1 erythroid differentiation regulatory factor 1 protein-coding 8.35 0.7119
-26099 SZRD1 SUZ RNA binding domain containing 1 protein-coding 11.63 0.4895
-26100 WIPI2 WD repeat domain, phosphoinositide interacting 2 protein-coding 10.89 0.4727
-26108 PYGO1 pygopus family PHD finger 1 protein-coding 3.466 1.905
-26112 CCDC69 coiled-coil domain containing 69 protein-coding 8.674 1.376
-26115 TANC2 tetratricopeptide repeat, ankyrin repeat and coiled-coil containing 2 protein-coding 9.536 1.568
-26118 WSB1 WD repeat and SOCS box containing 1 protein-coding 10.81 0.9728
-26119 LDLRAP1 low density lipoprotein receptor adaptor protein 1 protein-coding 9.473 1.006
-26121 PRPF31 pre-mRNA processing factor 31 protein-coding 10.45 0.5813
-26122 EPC2 enhancer of polycomb homolog 2 protein-coding 9.012 0.6505
-26123 TCTN3 tectonic family member 3 protein-coding 10.07 0.664
-26127 FGFR1OP2 FGFR1 oncogene partner 2 protein-coding 8.92 0.5848
-26128 KIF1BP KIF1 binding protein protein-coding 9.296 0.6266
-26130 GAPVD1 GTPase activating protein and VPS9 domains 1 protein-coding 9.985 0.5341
+26095 PTPN20 protein tyrosine phosphatase, non-receptor type 20 protein-coding 3.589 2.53
+26097 CHTOP chromatin target of PRMT1 protein-coding 10.91 0.4369
+26098 EDRF1 erythroid differentiation regulatory factor 1 protein-coding 8.351 0.7116
+26099 SZRD1 SUZ RNA binding domain containing 1 protein-coding 11.62 0.4893
+26100 WIPI2 WD repeat domain, phosphoinositide interacting 2 protein-coding 10.89 0.4726
+26108 PYGO1 pygopus family PHD finger 1 protein-coding 3.468 1.905
+26112 CCDC69 coiled-coil domain containing 69 protein-coding 8.676 1.377
+26115 TANC2 tetratricopeptide repeat, ankyrin repeat and coiled-coil containing 2 protein-coding 9.536 1.567
+26118 WSB1 WD repeat and SOCS box containing 1 protein-coding 10.81 0.973
+26119 LDLRAP1 low density lipoprotein receptor adaptor protein 1 protein-coding 9.474 1.007
+26121 PRPF31 pre-mRNA processing factor 31 protein-coding 10.45 0.5811
+26122 EPC2 enhancer of polycomb homolog 2 protein-coding 9.012 0.6504
+26123 TCTN3 tectonic family member 3 protein-coding 10.07 0.6638
+26127 FGFR1OP2 FGFR1 oncogene partner 2 protein-coding 8.921 0.5847
+26128 KIF1BP KIF1 binding protein protein-coding 9.296 0.6264
+26130 GAPVD1 GTPase activating protein and VPS9 domains 1 protein-coding 9.985 0.534
26133 TRPC4AP transient receptor potential cation channel subfamily C member 4 associated protein protein-coding 11.23 0.3902
26135 SERBP1 SERPINE1 mRNA binding protein 1 protein-coding 12.55 0.5808
26136 TES testin LIM domain protein protein-coding 10.22 1.66
-26137 ZBTB20 zinc finger and BTB domain containing 20 protein-coding 3.574 1.368
-26140 TTLL3 tubulin tyrosine ligase like 3 protein-coding 8.882 1.204
-26145 IRF2BP1 interferon regulatory factor 2 binding protein 1 protein-coding 9.433 0.7007
-26146 TRAF3IP1 TRAF3 interacting protein 1 protein-coding 8.809 0.6307
-26147 PHF19 PHD finger protein 19 protein-coding 9.187 0.9754
-26149 ZNF658 zinc finger protein 658 protein-coding 5.394 0.9017
+26137 ZBTB20 zinc finger and BTB domain containing 20 protein-coding 3.575 1.369
+26140 TTLL3 tubulin tyrosine ligase like 3 protein-coding 8.883 1.204
+26145 IRF2BP1 interferon regulatory factor 2 binding protein 1 protein-coding 9.434 0.7006
+26146 TRAF3IP1 TRAF3 interacting protein 1 protein-coding 8.809 0.6306
+26147 PHF19 PHD finger protein 19 protein-coding 9.187 0.9751
+26149 ZNF658 zinc finger protein 658 protein-coding 5.395 0.9016
2615 LRRC32 leucine rich repeat containing 32 protein-coding 9.146 1.473
-26150 RIBC2 RIB43A domain with coiled-coils 2 protein-coding 4.406 1.903
-26151 NAT9 N-acetyltransferase 9 (putative) protein-coding 9.277 0.6596
-26152 ZNF337 zinc finger protein 337 protein-coding 8.883 0.7497
-26153 KIF26A kinesin family member 26A protein-coding 6.311 1.963
-26154 ABCA12 ATP binding cassette subfamily A member 12 protein-coding 4.699 3.336
-26155 NOC2L NOC2 like nucleolar associated transcriptional repressor protein-coding 11.09 0.6689
+26150 RIBC2 RIB43A domain with coiled-coils 2 protein-coding 4.405 1.902
+26151 NAT9 N-acetyltransferase 9 (putative) protein-coding 9.277 0.6595
+26152 ZNF337 zinc finger protein 337 protein-coding 8.884 0.7495
+26153 KIF26A kinesin family member 26A protein-coding 6.312 1.965
+26154 ABCA12 ATP binding cassette subfamily A member 12 protein-coding 4.697 3.335
+26155 NOC2L NOC2 like nucleolar associated transcriptional repressor protein-coding 11.09 0.6687
26156 RSL1D1 ribosomal L1 domain containing 1 protein-coding 11.78 0.5349
-26157 GIMAP2 GTPase, IMAP family member 2 protein-coding 7.053 1.255
-26160 IFT172 intraflagellar transport 172 protein-coding 8.936 0.8515
-26164 MTG2 mitochondrial ribosome associated GTPase 2 protein-coding 9.057 0.5891
-26167 PCDHB5 protocadherin beta 5 protein-coding 5.702 2.304
-26168 SENP3 SUMO specific peptidase 3 protein-coding 9.951 0.5464
-2617 GARS glycyl-tRNA synthetase protein-coding 11.28 0.6629
-261726 TIPRL TOR signaling pathway regulator protein-coding 9.905 0.5204
-261729 STEAP2 STEAP2 metalloreductase protein-coding 8.446 2.3
-26173 INTS1 integrator complex subunit 1 protein-coding 11.51 0.6284
-261734 NPHP4 nephrocystin 4 protein-coding 8.081 0.9682
-26175 TMEM251 transmembrane protein 251 protein-coding 8.332 0.6382
-2618 GART phosphoribosylglycinamide formyltransferase, phosphoribosylglycinamide synthetase, phosphoribosylaminoimidazole synthetase protein-coding 10.37 0.6798
-2619 GAS1 growth arrest specific 1 protein-coding 7.263 2.177
-26190 FBXW2 F-box and WD repeat domain containing 2 protein-coding 10.49 0.4889
-26191 PTPN22 protein tyrosine phosphatase, non-receptor type 22 protein-coding 5.405 1.96
-262 AMD1 adenosylmethionine decarboxylase 1 protein-coding 10.9 0.9152
-2620 GAS2 growth arrest specific 2 protein-coding 4.004 2.073
-26205 GMEB2 glucocorticoid modulatory element binding protein 2 protein-coding 9.186 0.5169
-26206 SPAG8 sperm associated antigen 8 protein-coding 4.101 1.613
-26207 PITPNC1 phosphatidylinositol transfer protein cytoplasmic 1 protein-coding 8.404 1.013
+26157 GIMAP2 GTPase, IMAP family member 2 protein-coding 7.054 1.256
+26160 IFT172 intraflagellar transport 172 protein-coding 8.936 0.8513
+26164 MTG2 mitochondrial ribosome associated GTPase 2 protein-coding 9.057 0.5888
+26167 PCDHB5 protocadherin beta 5 protein-coding 5.703 2.304
+26168 SENP3 SUMO specific peptidase 3 protein-coding 9.951 0.5462
+2617 GARS glycyl-tRNA synthetase protein-coding 11.28 0.6633
+261726 TIPRL TOR signaling pathway regulator protein-coding 9.904 0.5204
+261729 STEAP2 STEAP2 metalloreductase protein-coding 8.448 2.3
+26173 INTS1 integrator complex subunit 1 protein-coding 11.51 0.6281
+261734 NPHP4 nephrocystin 4 protein-coding 8.082 0.9679
+26175 TMEM251 transmembrane protein 251 protein-coding 8.332 0.6383
+2618 GART phosphoribosylglycinamide formyltransferase, phosphoribosylglycinamide synthetase, phosphoribosylaminoimidazole synthetase protein-coding 10.36 0.6801
+2619 GAS1 growth arrest specific 1 protein-coding 7.264 2.177
+26190 FBXW2 F-box and WD repeat domain containing 2 protein-coding 10.49 0.4888
+26191 PTPN22 protein tyrosine phosphatase, non-receptor type 22 protein-coding 5.406 1.96
+262 AMD1 adenosylmethionine decarboxylase 1 protein-coding 10.9 0.9162
+2620 GAS2 growth arrest specific 2 protein-coding 4.005 2.072
+26205 GMEB2 glucocorticoid modulatory element binding protein 2 protein-coding 9.186 0.5167
+26206 SPAG8 sperm associated antigen 8 protein-coding 4.102 1.613
+26207 PITPNC1 phosphatidylinositol transfer protein cytoplasmic 1 protein-coding 8.405 1.013
2621 GAS6 growth arrest specific 6 protein-coding 10.86 1.377
-26212 OR2B6 olfactory receptor family 2 subfamily B member 6 protein-coding 1.248 1.333
+26212 OR2B6 olfactory receptor family 2 subfamily B member 6 protein-coding 1.247 1.333
2622 GAS8 growth arrest specific 8 protein-coding 8.886 0.8672
26220 DGCR5 DiGeorge syndrome critical region gene 5 (non-protein coding) ncRNA 5.039 2.648
-26224 FBXL3 F-box and leucine rich repeat protein 3 protein-coding 9.816 0.7402
-26225 ARL5A ADP ribosylation factor like GTPase 5A protein-coding 9.755 0.605
+26224 FBXL3 F-box and leucine rich repeat protein 3 protein-coding 9.817 0.7402
+26225 ARL5A ADP ribosylation factor like GTPase 5A protein-coding 9.755 0.6048
26227 PHGDH phosphoglycerate dehydrogenase protein-coding 10.13 1.891
-26228 STAP1 signal transducing adaptor family member 1 protein-coding 2.743 2.114
-26229 B3GAT3 beta-1,3-glucuronyltransferase 3 protein-coding 9.812 0.8079
-2623 GATA1 GATA binding protein 1 protein-coding 0.9179 1.002
-26230 TIAM2 T cell lymphoma invasion and metastasis 2 protein-coding 6.231 1.382
-26231 LRRC29 leucine rich repeat containing 29 protein-coding 5.825 1.189
-26232 FBXO2 F-box protein 2 protein-coding 7.706 2.241
-26233 FBXL6 F-box and leucine rich repeat protein 6 protein-coding 8.844 0.9652
-26234 FBXL5 F-box and leucine rich repeat protein 5 protein-coding 10.99 0.7552
-26235 FBXL4 F-box and leucine rich repeat protein 4 protein-coding 8.011 0.6361
-2624 GATA2 GATA binding protein 2 protein-coding 7.46 2.085
-26240 FAM50B family with sequence similarity 50 member B protein-coding 7.286 1.479
-26249 KLHL3 kelch like family member 3 protein-coding 6.712 1.435
-2625 GATA3 GATA binding protein 3 protein-coding 6.807 3.217
+26228 STAP1 signal transducing adaptor family member 1 protein-coding 2.745 2.115
+26229 B3GAT3 beta-1,3-glucuronyltransferase 3 protein-coding 9.811 0.8077
+2623 GATA1 GATA binding protein 1 protein-coding 0.9186 1.003
+26230 TIAM2 T cell lymphoma invasion and metastasis 2 protein-coding 6.232 1.382
+26231 LRRC29 leucine rich repeat containing 29 protein-coding 5.826 1.189
+26232 FBXO2 F-box protein 2 protein-coding 7.706 2.24
+26233 FBXL6 F-box and leucine rich repeat protein 6 protein-coding 8.843 0.965
+26234 FBXL5 F-box and leucine rich repeat protein 5 protein-coding 10.99 0.755
+26235 FBXL4 F-box and leucine rich repeat protein 4 protein-coding 8.011 0.6359
+2624 GATA2 GATA binding protein 2 protein-coding 7.462 2.086
+26240 FAM50B family with sequence similarity 50 member B protein-coding 7.287 1.478
+26249 KLHL3 kelch like family member 3 protein-coding 6.714 1.435
+2625 GATA3 GATA binding protein 3 protein-coding 6.809 3.216
26251 KCNG2 potassium voltage-gated channel modifier subfamily G member 2 protein-coding 1.441 1.379
-26253 CLEC4E C-type lectin domain family 4 member E protein-coding 4.428 1.958
-26255 PTTG3P pituitary tumor-transforming 3, pseudogene pseudo 2.251 1.627
-26256 CABYR calcium binding tyrosine phosphorylation regulated protein-coding 5.693 1.913
-26258 BLOC1S6 biogenesis of lysosomal organelles complex 1 subunit 6 protein-coding 10.22 0.5626
-26259 FBXW8 F-box and WD repeat domain containing 8 protein-coding 8.621 0.6018
+26253 CLEC4E C-type lectin domain family 4 member E protein-coding 4.429 1.959
+26255 PTTG3P pituitary tumor-transforming 3, pseudogene pseudo 2.249 1.627
+26256 CABYR calcium binding tyrosine phosphorylation regulated protein-coding 5.692 1.913
+26258 BLOC1S6 biogenesis of lysosomal organelles complex 1 subunit 6 protein-coding 10.22 0.5627
+26259 FBXW8 F-box and WD repeat domain containing 8 protein-coding 8.621 0.6016
26260 FBXO25 F-box protein 25 protein-coding 8.885 0.8517
26261 FBXO24 F-box protein 24 protein-coding 3.381 1.063
-26262 TSPAN17 tetraspanin 17 protein-coding 9.923 0.6398
-26263 FBXO22 F-box protein 22 protein-coding 8.79 0.5431
-26266 SLC13A4 solute carrier family 13 member 4 protein-coding 2.633 1.602
-26267 FBXO10 F-box protein 10 protein-coding 7.839 0.9532
-26268 FBXO9 F-box protein 9 protein-coding 9.728 0.5554
+26262 TSPAN17 tetraspanin 17 protein-coding 9.922 0.6397
+26263 FBXO22 F-box protein 22 protein-coding 8.79 0.543
+26266 SLC13A4 solute carrier family 13 member 4 protein-coding 2.633 1.601
+26267 FBXO10 F-box protein 10 protein-coding 7.84 0.9533
+26268 FBXO9 F-box protein 9 protein-coding 9.728 0.5552
26269 FBXO8 F-box protein 8 protein-coding 8.672 0.5975
-2627 GATA6 GATA binding protein 6 protein-coding 6.774 2.472
-26270 FBXO6 F-box protein 6 protein-coding 8.339 1.011
-26271 FBXO5 F-box protein 5 protein-coding 7.453 1.073
-26272 FBXO4 F-box protein 4 protein-coding 7.672 0.7587
-26273 FBXO3 F-box protein 3 protein-coding 9.241 0.6874
-26275 HIBCH 3-hydroxyisobutyryl-CoA hydrolase protein-coding 9.146 0.7327
-26276 VPS33B VPS33B, late endosome and lysosome associated protein-coding 8.449 0.4449
-26277 TINF2 TERF1 interacting nuclear factor 2 protein-coding 10.06 0.5018
+2627 GATA6 GATA binding protein 6 protein-coding 6.776 2.472
+26270 FBXO6 F-box protein 6 protein-coding 8.338 1.011
+26271 FBXO5 F-box protein 5 protein-coding 7.452 1.073
+26272 FBXO4 F-box protein 4 protein-coding 7.672 0.7585
+26273 FBXO3 F-box protein 3 protein-coding 9.241 0.6873
+26275 HIBCH 3-hydroxyisobutyryl-CoA hydrolase protein-coding 9.146 0.7326
+26276 VPS33B VPS33B, late endosome and lysosome associated protein-coding 8.449 0.445
+26277 TINF2 TERF1 interacting nuclear factor 2 protein-coding 10.06 0.5016
26278 SACS sacsin molecular chaperone protein-coding 8.549 1.346
-26279 PLA2G2D phospholipase A2 group IID protein-coding 4.169 2.831
+26279 PLA2G2D phospholipase A2 group IID protein-coding 4.171 2.833
2628 GATM glycine amidinotransferase protein-coding 9.14 2.471
-26284 ERAL1 Era like 12S mitochondrial rRNA chaperone 1 protein-coding 10.22 0.4993
-26286 ARFGAP3 ADP ribosylation factor GTPase activating protein 3 protein-coding 10.33 0.7646
-26289 AK5 adenylate kinase 5 protein-coding 3.985 2.874
-2629 GBA glucosylceramidase beta protein-coding 10.51 0.7278
-26290 GALNT8 polypeptide N-acetylgalactosaminyltransferase 8 protein-coding 1.329 1.853
-26292 MYCBP MYC binding protein protein-coding 9.218 0.8758
-26297 SERGEF secretion regulating guanine nucleotide exchange factor protein-coding 8.349 0.9297
-2630 GBAP1 glucosylceramidase beta pseudogene 1 pseudo 9.07 0.8705
-26301 GBGT1 globoside alpha-1,3-N-acetylgalactosaminyltransferase 1 (FORS blood group) protein-coding 6.692 1.252
-2631 NIPSNAP2 nipsnap homolog 2 protein-coding 10.45 0.8531
-2632 GBE1 1,4-alpha-glucan branching enzyme 1 protein-coding 9.237 0.8804
+26284 ERAL1 Era like 12S mitochondrial rRNA chaperone 1 protein-coding 10.22 0.4995
+26286 ARFGAP3 ADP ribosylation factor GTPase activating protein 3 protein-coding 10.33 0.7645
+26289 AK5 adenylate kinase 5 protein-coding 3.986 2.874
+2629 GBA glucosylceramidase beta protein-coding 10.51 0.7276
+26290 GALNT8 polypeptide N-acetylgalactosaminyltransferase 8 protein-coding 1.329 1.852
+26292 MYCBP MYC binding protein protein-coding 9.218 0.8755
+26297 SERGEF secretion regulating guanine nucleotide exchange factor protein-coding 8.349 0.9295
+2630 GBAP1 glucosylceramidase beta pseudogene 1 pseudo 9.07 0.8703
+26301 GBGT1 globoside alpha-1,3-N-acetylgalactosaminyltransferase 1 (FORS blood group) protein-coding 6.693 1.251
+2631 NIPSNAP2 nipsnap homolog 2 protein-coding 10.45 0.8528
+2632 GBE1 1,4-alpha-glucan branching enzyme 1 protein-coding 9.237 0.8801
2633 GBP1 guanylate binding protein 1 protein-coding 9.804 1.717
-26330 GAPDHS glyceraldehyde-3-phosphate dehydrogenase, spermatogenic protein-coding 1.592 1.672
+26330 GAPDHS glyceraldehyde-3-phosphate dehydrogenase, spermatogenic protein-coding 1.592 1.671
2634 GBP2 guanylate binding protein 2 protein-coding 10.43 1.463
-2635 GBP3 guanylate binding protein 3 protein-coding 9.083 1.708
-26354 GNL3 G protein nucleolar 3 protein-coding 10.57 0.7759
-26355 FAM162A family with sequence similarity 162 member A protein-coding 10.28 0.897
-2639 GCDH glutaryl-CoA dehydrogenase protein-coding 8.982 0.7642
-2642 GCGR glucagon receptor protein-coding 1.742 2.562
+2635 GBP3 guanylate binding protein 3 protein-coding 9.083 1.707
+26354 GNL3 G protein nucleolar 3 protein-coding 10.56 0.7759
+26355 FAM162A family with sequence similarity 162 member A protein-coding 10.28 0.8971
+2639 GCDH glutaryl-CoA dehydrogenase protein-coding 8.982 0.7639
+2642 GCGR glucagon receptor protein-coding 1.743 2.563
2643 GCH1 GTP cyclohydrolase 1 protein-coding 8.064 1.477
2644 GCHFR GTP cyclohydrolase I feedback regulator protein-coding 7.788 1.478
-26468 LHX6 LIM homeobox 6 protein-coding 5.728 1.434
-26469 PTPN18 protein tyrosine phosphatase, non-receptor type 18 protein-coding 10.37 0.7807
-2647 BLOC1S1 biogenesis of lysosomal organelles complex 1 subunit 1 protein-coding 10.27 0.8274
-26470 SEZ6L2 seizure related 6 homolog like 2 protein-coding 9.823 2.175
-26471 NUPR1 nuclear protein 1, transcriptional regulator protein-coding 10.5 1.774
-26472 PPP1R14B protein phosphatase 1 regulatory inhibitor subunit 14B protein-coding 10.46 0.9547
-2648 KAT2A lysine acetyltransferase 2A protein-coding 10.34 0.8275
+26468 LHX6 LIM homeobox 6 protein-coding 5.729 1.434
+26469 PTPN18 protein tyrosine phosphatase, non-receptor type 18 protein-coding 10.37 0.7808
+2647 BLOC1S1 biogenesis of lysosomal organelles complex 1 subunit 1 protein-coding 10.27 0.827
+26470 SEZ6L2 seizure related 6 homolog like 2 protein-coding 9.824 2.176
+26471 NUPR1 nuclear protein 1, transcriptional regulator protein-coding 10.51 1.774
+26472 PPP1R14B protein phosphatase 1 regulatory inhibitor subunit 14B protein-coding 10.45 0.9555
+2648 KAT2A lysine acetyltransferase 2A protein-coding 10.34 0.8273
2649 NR6A1 nuclear receptor subfamily 6 group A member 1 protein-coding 3.267 1.492
26499 PLEK2 pleckstrin 2 protein-coding 7.631 2.525
-2650 GCNT1 glucosaminyl (N-acetyl) transferase 1, core 2 protein-coding 8.096 2.11
-26502 NARF nuclear prelamin A recognition factor protein-coding 9.967 0.7274
-26503 SLC17A5 solute carrier family 17 member 5 protein-coding 9.321 1.149
-26504 CNNM4 cyclin and CBS domain divalent metal cation transport mediator 4 protein-coding 9.204 0.9316
-26505 CNNM3 cyclin and CBS domain divalent metal cation transport mediator 3 protein-coding 9.874 0.7037
-26507 CNNM1 cyclin and CBS domain divalent metal cation transport mediator 1 protein-coding 4.837 2.812
-26508 HEYL hes related family bHLH transcription factor with YRPW motif-like protein-coding 8.359 1.414
-26509 MYOF myoferlin protein-coding 11.08 1.702
-2651 GCNT2 glucosaminyl (N-acetyl) transferase 2 (I blood group) protein-coding 7.769 1.943
-26511 CHIC2 cysteine rich hydrophobic domain 2 protein-coding 7.773 0.6357
-26512 INTS6 integrator complex subunit 6 protein-coding 9.327 0.6033
-26515 TIMM10B translocase of inner mitochondrial membrane 10B protein-coding 9.529 0.5405
-26517 TIMM13 translocase of inner mitochondrial membrane 13 protein-coding 10.3 0.8014
-26519 TIMM10 translocase of inner mitochondrial membrane 10 protein-coding 8.963 0.6798
-26520 TIMM9 translocase of inner mitochondrial membrane 9 protein-coding 8.927 0.5408
-26521 TIMM8B translocase of inner mitochondrial membrane 8 homolog B protein-coding 9.197 0.7172
-26523 AGO1 argonaute 1, RISC catalytic component protein-coding 9.727 0.5545
+2650 GCNT1 glucosaminyl (N-acetyl) transferase 1, core 2 protein-coding 8.096 2.109
+26502 NARF nuclear prelamin A recognition factor protein-coding 9.967 0.7272
+26503 SLC17A5 solute carrier family 17 member 5 protein-coding 9.322 1.149
+26504 CNNM4 cyclin and CBS domain divalent metal cation transport mediator 4 protein-coding 9.204 0.9312
+26505 CNNM3 cyclin and CBS domain divalent metal cation transport mediator 3 protein-coding 9.874 0.7038
+26507 CNNM1 cyclin and CBS domain divalent metal cation transport mediator 1 protein-coding 4.838 2.812
+26508 HEYL hes related family bHLH transcription factor with YRPW motif-like protein-coding 8.36 1.414
+26509 MYOF myoferlin protein-coding 11.08 1.701
+2651 GCNT2 glucosaminyl (N-acetyl) transferase 2 (I blood group) protein-coding 7.77 1.943
+26511 CHIC2 cysteine rich hydrophobic domain 2 protein-coding 7.773 0.6354
+26512 INTS6 integrator complex subunit 6 protein-coding 9.327 0.603
+26515 TIMM10B translocase of inner mitochondrial membrane 10B protein-coding 9.53 0.5405
+26517 TIMM13 translocase of inner mitochondrial membrane 13 protein-coding 10.3 0.8012
+26519 TIMM10 translocase of inner mitochondrial membrane 10 protein-coding 8.963 0.68
+26520 TIMM9 translocase of inner mitochondrial membrane 9 protein-coding 8.927 0.5407
+26521 TIMM8B translocase of inner mitochondrial membrane 8 homolog B protein-coding 9.197 0.7173
+26523 AGO1 argonaute 1, RISC catalytic component protein-coding 9.727 0.5544
26524 LATS2 large tumor suppressor kinase 2 protein-coding 8.731 1.088
-26528 DAZAP1 DAZ associated protein 1 protein-coding 10.82 0.6553
-2653 GCSH glycine cleavage system protein H protein-coding 4.582 1.492
-26548 ITGB1BP2 integrin subunit beta 1 binding protein 2 protein-coding 2.88 1.475
-2657 GDF1 growth differentiation factor 1 protein-coding 2.983 3.116
-26574 AATF apoptosis antagonizing transcription factor protein-coding 10.39 0.5724
-26575 RGS17 regulator of G protein signaling 17 protein-coding 3.292 1.798
-26576 SRPK3 SRSF protein kinase 3 protein-coding 4.601 2.248
-26577 PCOLCE2 procollagen C-endopeptidase enhancer 2 protein-coding 5.483 2.594
-26578 OSTF1 osteoclast stimulating factor 1 protein-coding 9.651 0.746
-26579 MYEOV myeloma overexpressed protein-coding 4.618 3.312
-26580 BSCL2 BSCL2, seipin lipid droplet biogenesis associated protein-coding 10.83 0.9507
-26585 GREM1 gremlin 1, DAN family BMP antagonist protein-coding 7.466 3.5
-26586 CKAP2 cytoskeleton associated protein 2 protein-coding 9.238 1.096
-26589 MRPL46 mitochondrial ribosomal protein L46 protein-coding 8.68 0.5817
-2660 MSTN myostatin protein-coding 2.556 2.135
-26608 TBL2 transducin beta like 2 protein-coding 10.04 0.5622
+26528 DAZAP1 DAZ associated protein 1 protein-coding 10.82 0.6551
+2653 GCSH glycine cleavage system protein H protein-coding 4.581 1.493
+26548 ITGB1BP2 integrin subunit beta 1 binding protein 2 protein-coding 2.881 1.476
+2657 GDF1 growth differentiation factor 1 protein-coding 2.983 3.115
+26574 AATF apoptosis antagonizing transcription factor protein-coding 10.39 0.5725
+26575 RGS17 regulator of G protein signaling 17 protein-coding 3.293 1.798
+26576 SRPK3 SRSF protein kinase 3 protein-coding 4.602 2.248
+26577 PCOLCE2 procollagen C-endopeptidase enhancer 2 protein-coding 5.483 2.593
+26578 OSTF1 osteoclast stimulating factor 1 protein-coding 9.652 0.7457
+26579 MYEOV myeloma overexpressed protein-coding 4.618 3.311
+26580 BSCL2 BSCL2, seipin lipid droplet biogenesis associated protein-coding 10.83 0.951
+26585 GREM1 gremlin 1, DAN family BMP antagonist protein-coding 7.467 3.499
+26586 CKAP2 cytoskeleton associated protein 2 protein-coding 9.236 1.096
+26589 MRPL46 mitochondrial ribosomal protein L46 protein-coding 8.68 0.5815
+2660 MSTN myostatin protein-coding 2.557 2.134
+26608 TBL2 transducin beta like 2 protein-coding 10.04 0.5621
2661 GDF9 growth differentiation factor 9 protein-coding 3.834 1.202
-26610 ELP4 elongator acetyltransferase complex subunit 4 protein-coding 7.723 0.5749
-2662 GDF10 growth differentiation factor 10 protein-coding 3.08 2.459
-2664 GDI1 GDP dissociation inhibitor 1 protein-coding 11.77 0.8031
-2665 GDI2 GDP dissociation inhibitor 2 protein-coding 12.33 0.5286
-266655 BRD3OS BRD3 opposite strand protein-coding 9.305 0.842
-266675 BEST4 bestrophin 4 protein-coding 3.412 1.563
-266727 MDGA1 MAM domain containing glycosylphosphatidylinositol anchor 1 protein-coding 6.828 1.874
-266747 RGL4 ral guanine nucleotide dissociation stimulator like 4 protein-coding 3.148 1.377
-266812 NAP1L5 nucleosome assembly protein 1 like 5 protein-coding 6.937 1.612
-2669 GEM GTP binding protein overexpressed in skeletal muscle protein-coding 8.342 1.638
+26610 ELP4 elongator acetyltransferase complex subunit 4 protein-coding 7.723 0.5747
+2662 GDF10 growth differentiation factor 10 protein-coding 3.084 2.461
+2664 GDI1 GDP dissociation inhibitor 1 protein-coding 11.77 0.8029
+2665 GDI2 GDP dissociation inhibitor 2 protein-coding 12.33 0.5285
+266655 BRD3OS BRD3 opposite strand protein-coding 9.305 0.8419
+266675 BEST4 bestrophin 4 protein-coding 3.413 1.562
+266727 MDGA1 MAM domain containing glycosylphosphatidylinositol anchor 1 protein-coding 6.829 1.873
+266747 RGL4 ral guanine nucleotide dissociation stimulator like 4 protein-coding 3.149 1.378
+266812 NAP1L5 nucleosome assembly protein 1 like 5 protein-coding 6.939 1.612
+2669 GEM GTP binding protein overexpressed in skeletal muscle protein-coding 8.343 1.638
266971 PIPSL PIP5K1A and PSMD4-like, pseudogene pseudo 7.57 0.7344
-267 AMFR autocrine motility factor receptor protein-coding 11.26 0.6707
-2670 GFAP glial fibrillary acidic protein protein-coding 3.945 4.633
+267 AMFR autocrine motility factor receptor protein-coding 11.26 0.6705
+2670 GFAP glial fibrillary acidic protein protein-coding 3.944 4.631
267002 PGBD2 piggyBac transposable element derived 2 protein-coding 7.072 0.7139
-267004 PGBD3 piggyBac transposable element derived 3 protein-coding 6.44 0.6506
-267020 ATP5MGL ATP synthase membrane subunit g like protein-coding 0.7842 0.7339
-2671 GFER growth factor, augmenter of liver regeneration protein-coding 8.938 0.62
-2672 GFI1 growth factor independent 1 transcriptional repressor protein-coding 4.784 1.736
-2673 GFPT1 glutamine--fructose-6-phosphate transaminase 1 protein-coding 11.24 0.9727
-2674 GFRA1 GDNF family receptor alpha 1 protein-coding 6.653 3.15
-26747 NUFIP1 NUFIP1, FMR1 interacting protein 1 protein-coding 7.691 0.5937
-2675 GFRA2 GDNF family receptor alpha 2 protein-coding 4.663 2.365
-26750 RPS6KC1 ribosomal protein S6 kinase C1 protein-coding 8.965 0.7577
+267004 PGBD3 piggyBac transposable element derived 3 protein-coding 6.441 0.6505
+267020 ATP5MGL ATP synthase membrane subunit g like protein-coding 0.7841 0.7337
+2671 GFER growth factor, augmenter of liver regeneration protein-coding 8.937 0.6199
+2672 GFI1 growth factor independent 1 transcriptional repressor protein-coding 4.785 1.737
+2673 GFPT1 glutamine--fructose-6-phosphate transaminase 1 protein-coding 11.25 0.9724
+2674 GFRA1 GDNF family receptor alpha 1 protein-coding 6.655 3.149
+26747 NUFIP1 NUFIP1, FMR1 interacting protein 1 protein-coding 7.691 0.5936
+2675 GFRA2 GDNF family receptor alpha 2 protein-coding 4.665 2.366
+26750 RPS6KC1 ribosomal protein S6 kinase C1 protein-coding 8.965 0.7575
26751 SH3YL1 SH3 and SYLF domain containing 1 protein-coding 9.674 1.236
-2676 GFRA3 GDNF family receptor alpha 3 protein-coding 3.317 2.734
-26762 HAVCR1 hepatitis A virus cellular receptor 1 protein-coding 1.792 2.86
-2677 GGCX gamma-glutamyl carboxylase protein-coding 9.51 0.8202
-2678 GGT1 gamma-glutamyltransferase 1 protein-coding 8.275 2.243
-2679 GGT3P gamma-glutamyltransferase 3 pseudogene pseudo 4.674 2.266
+2676 GFRA3 GDNF family receptor alpha 3 protein-coding 3.32 2.735
+26762 HAVCR1 hepatitis A virus cellular receptor 1 protein-coding 1.792 2.859
+2677 GGCX gamma-glutamyl carboxylase protein-coding 9.51 0.8198
+2678 GGT1 gamma-glutamyltransferase 1 protein-coding 8.276 2.244
+2679 GGT3P gamma-glutamyltransferase 3 pseudogene pseudo 4.675 2.267
268 AMH anti-Mullerian hormone protein-coding 3.509 2.232
-2681 GGTA1P glycoprotein, alpha-galactosyltransferase 1 pseudogene pseudo 6.806 1.732
-26821 SNORA74A small nucleolar RNA, H/ACA box 74A snoRNA 0.3672 0.6229
-2683 B4GALT1 beta-1,4-galactosyltransferase 1 protein-coding 11.82 1.307
-2686 GGT7 gamma-glutamyltransferase 7 protein-coding 8.683 1.132
-2687 GGT5 gamma-glutamyltransferase 5 protein-coding 8.995 1.456
+2681 GGTA1P glycoprotein, alpha-galactosyltransferase 1 pseudogene pseudo 6.807 1.731
+26821 SNORA74A small nucleolar RNA, H/ACA box 74A snoRNA 0.3671 0.6228
+2683 B4GALT1 beta-1,4-galactosyltransferase 1 protein-coding 11.82 1.306
+2686 GGT7 gamma-glutamyltransferase 7 protein-coding 8.684 1.132
+2687 GGT5 gamma-glutamyltransferase 5 protein-coding 8.996 1.456
26872 STEAP1 STEAP family member 1 protein-coding 7.133 2.584
-26873 OPLAH 5-oxoprolinase, ATP-hydrolysing protein-coding 8.491 1.606
-269 AMHR2 anti-Mullerian hormone receptor type 2 protein-coding 1.075 1.625
-2690 GHR growth hormone receptor protein-coding 6.452 2.251
-26953 RANBP6 RAN binding protein 6 protein-coding 9.117 0.6744
-26958 COPG2 coatomer protein complex subunit gamma 2 protein-coding 8.768 0.6799
-26959 HBP1 HMG-box transcription factor 1 protein-coding 10.6 0.5702
-2696 GIPR gastric inhibitory polypeptide receptor protein-coding 3.018 1.704
-26960 NBEA neurobeachin protein-coding 7.06 2.284
+26873 OPLAH 5-oxoprolinase, ATP-hydrolysing protein-coding 8.49 1.606
+269 AMHR2 anti-Mullerian hormone receptor type 2 protein-coding 1.076 1.625
+2690 GHR growth hormone receptor protein-coding 6.454 2.25
+26953 RANBP6 RAN binding protein 6 protein-coding 9.117 0.6742
+26958 COPG2 coatomer protein complex subunit gamma 2 protein-coding 8.767 0.6798
+26959 HBP1 HMG-box transcription factor 1 protein-coding 10.6 0.5701
+2696 GIPR gastric inhibitory polypeptide receptor protein-coding 3.019 1.705
+26960 NBEA neurobeachin protein-coding 7.062 2.284
2697 GJA1 gap junction protein alpha 1 protein-coding 11.05 1.926
-26973 CHORDC1 cysteine and histidine rich domain containing 1 protein-coding 8.924 0.7924
-26974 ZNF285 zinc finger protein 285 protein-coding 5.22 1.803
-26984 SEC22A SEC22 homolog A, vesicle trafficking protein protein-coding 8.407 0.4788
-26985 AP3M1 adaptor related protein complex 3 mu 1 subunit protein-coding 10.19 0.5085
-26986 PABPC1 poly(A) binding protein cytoplasmic 1 protein-coding 14.59 0.9827
-26993 AKAP8L A-kinase anchoring protein 8 like protein-coding 9.915 0.6412
+26973 CHORDC1 cysteine and histidine rich domain containing 1 protein-coding 8.924 0.792
+26974 ZNF285 zinc finger protein 285 protein-coding 5.221 1.803
+26984 SEC22A SEC22 homolog A, vesicle trafficking protein protein-coding 8.407 0.4786
+26985 AP3M1 adaptor related protein complex 3 mu 1 subunit protein-coding 10.19 0.5084
+26986 PABPC1 poly(A) binding protein cytoplasmic 1 protein-coding 14.59 0.9824
+26993 AKAP8L A-kinase anchoring protein 8 like protein-coding 9.915 0.641
26994 RNF11 ring finger protein 11 protein-coding 10.94 0.6528
-26995 TRUB2 TruB pseudouridine synthase family member 2 protein-coding 9.538 0.5412
+26995 TRUB2 TruB pseudouridine synthase family member 2 protein-coding 9.537 0.5416
26996 GPR160 G protein-coupled receptor 160 protein-coding 8.194 2.172
-26999 CYFIP2 cytoplasmic FMR1 interacting protein 2 protein-coding 9.654 1.668
-27 ABL2 ABL proto-oncogene 2, non-receptor tyrosine kinase protein-coding 9.664 0.7407
+26999 CYFIP2 cytoplasmic FMR1 interacting protein 2 protein-coding 9.654 1.667
+27 ABL2 ABL proto-oncogene 2, non-receptor tyrosine kinase protein-coding 9.664 0.7405
270 AMPD1 adenosine monophosphate deaminase 1 protein-coding 1.596 1.845
-2700 GJA3 gap junction protein alpha 3 protein-coding 3.299 2.316
-27000 DNAJC2 DnaJ heat shock protein family (Hsp40) member C2 protein-coding 9.477 0.7
-27004 TCL6 T cell leukemia/lymphoma 6 (non-protein coding) ncRNA 1.771 2.018
-27005 USP21 ubiquitin specific peptidase 21 protein-coding 8.993 0.5938
-2701 GJA4 gap junction protein alpha 4 protein-coding 7.482 1.521
-27010 TPK1 thiamin pyrophosphokinase 1 protein-coding 6.287 1.287
-27013 CNPPD1 cyclin Pas1/PHO80 domain containing 1 protein-coding 10.8 0.6387
+2700 GJA3 gap junction protein alpha 3 protein-coding 3.299 2.315
+27000 DNAJC2 DnaJ heat shock protein family (Hsp40) member C2 protein-coding 9.476 0.6999
+27004 TCL6 T cell leukemia/lymphoma 6 (non-protein coding) ncRNA 1.772 2.018
+27005 USP21 ubiquitin specific peptidase 21 protein-coding 8.993 0.5935
+2701 GJA4 gap junction protein alpha 4 protein-coding 7.483 1.521
+27010 TPK1 thiamin pyrophosphokinase 1 protein-coding 6.288 1.287
+27013 CNPPD1 cyclin Pas1/PHO80 domain containing 1 protein-coding 10.8 0.6385
27018 BEX3 brain expressed X-linked 3 protein-coding 10.81 1.358
2702 GJA5 gap junction protein alpha 5 protein-coding 7.301 1.749
27020 NPTN neuroplastin protein-coding 11.1 0.6479
27030 MLH3 mutL homolog 3 protein-coding 8.648 0.5899
-27031 NPHP3 nephrocystin 3 protein-coding 8.283 0.8565
+27031 NPHP3 nephrocystin 3 protein-coding 8.283 0.8568
27032 ATP2C1 ATPase secretory pathway Ca2+ transporting 1 protein-coding 11.44 0.739
-27033 ZBTB32 zinc finger and BTB domain containing 32 protein-coding 2.949 1.414
-27034 ACAD8 acyl-CoA dehydrogenase family member 8 protein-coding 9.08 0.9195
-27035 NOX1 NADPH oxidase 1 protein-coding 2.305 2.647
-27036 SIGLEC7 sialic acid binding Ig like lectin 7 protein-coding 4.911 1.55
-27037 TRMT2A tRNA methyltransferase 2 homolog A protein-coding 9.532 0.6811
+27033 ZBTB32 zinc finger and BTB domain containing 32 protein-coding 2.949 1.413
+27034 ACAD8 acyl-CoA dehydrogenase family member 8 protein-coding 9.08 0.9192
+27035 NOX1 NADPH oxidase 1 protein-coding 2.305 2.646
+27036 SIGLEC7 sialic acid binding Ig like lectin 7 protein-coding 4.911 1.551
+27037 TRMT2A tRNA methyltransferase 2 homolog A protein-coding 9.532 0.6809
27040 LAT linker for activation of T cells protein-coding 6.837 1.424
-27042 DIEXF digestive organ expansion factor homolog (zebrafish) protein-coding 9.205 0.6364
-27043 PELP1 proline, glutamate and leucine rich protein 1 protein-coding 10.67 0.6353
+27042 DIEXF digestive organ expansion factor homolog (zebrafish) protein-coding 9.204 0.6362
+27043 PELP1 proline, glutamate and leucine rich protein 1 protein-coding 10.67 0.6351
27044 SND1 staphylococcal nuclease and tudor domain containing 1 protein-coding 12.22 0.5816
-2706 GJB2 gap junction protein beta 2 protein-coding 8.506 3.264
+2706 GJB2 gap junction protein beta 2 protein-coding 8.503 3.264
27063 ANKRD1 ankyrin repeat domain 1 protein-coding 2.79 2.454
-27065 NSG1 neuronal vesicle trafficking associated 1 protein-coding 6.177 2.975
-27067 STAU2 staufen double-stranded RNA binding protein 2 protein-coding 9.571 0.6309
-27068 PPA2 pyrophosphatase (inorganic) 2 protein-coding 9.914 0.6291
-27069 GHITM growth hormone inducible transmembrane protein protein-coding 11.94 0.5901
-2707 GJB3 gap junction protein beta 3 protein-coding 6.039 3.637
+27065 NSG1 neuronal vesicle trafficking associated 1 protein-coding 6.178 2.975
+27067 STAU2 staufen double-stranded RNA binding protein 2 protein-coding 9.571 0.6307
+27068 PPA2 pyrophosphatase (inorganic) 2 protein-coding 9.913 0.6289
+27069 GHITM growth hormone inducible transmembrane protein protein-coding 11.94 0.5899
+2707 GJB3 gap junction protein beta 3 protein-coding 6.039 3.636
27071 DAPP1 dual adaptor of phosphotyrosine and 3-phosphoinositides 1 protein-coding 6.551 2.19
-27072 VPS41 VPS41, HOPS complex subunit protein-coding 10.14 0.5865
-27074 LAMP3 lysosomal associated membrane protein 3 protein-coding 7.386 2.481
-27075 TSPAN13 tetraspanin 13 protein-coding 10.4 1.77
-27076 LYPD3 LY6/PLAUR domain containing 3 protein-coding 7.337 3.353
+27072 VPS41 VPS41, HOPS complex subunit protein-coding 10.14 0.5863
+27074 LAMP3 lysosomal associated membrane protein 3 protein-coding 7.388 2.482
+27075 TSPAN13 tetraspanin 13 protein-coding 10.4 1.769
+27076 LYPD3 LY6/PLAUR domain containing 3 protein-coding 7.336 3.352
27077 B9D1 B9 domain containing 1 protein-coding 7.551 1.032
27079 RPUSD2 RNA pseudouridylate synthase domain containing 2 protein-coding 7.784 0.5799
-27085 MTBP MDM2 binding protein protein-coding 6.452 1.291
-27086 FOXP1 forkhead box P1 protein-coding 9.913 1.035
-27087 B3GAT1 beta-1,3-glucuronyltransferase 1 protein-coding 5.236 3.367
-27089 UQCRQ ubiquinol-cytochrome c reductase complex III subunit VII protein-coding 10.99 0.9188
-2709 GJB5 gap junction protein beta 5 protein-coding 4.588 3.283
+27085 MTBP MDM2 binding protein protein-coding 6.451 1.291
+27086 FOXP1 forkhead box P1 protein-coding 9.914 1.035
+27087 B3GAT1 beta-1,3-glucuronyltransferase 1 protein-coding 5.237 3.365
+27089 UQCRQ ubiquinol-cytochrome c reductase complex III subunit VII protein-coding 10.99 0.9187
+2709 GJB5 gap junction protein beta 5 protein-coding 4.587 3.282
27090 ST6GALNAC4 ST6 N-acetylgalactosaminide alpha-2,6-sialyltransferase 4 protein-coding 8.445 1.045
-27092 CACNG4 calcium voltage-gated channel auxiliary subunit gamma 4 protein-coding 6.061 3.717
-27094 KCNMB3 potassium calcium-activated channel subfamily M regulatory beta subunit 3 protein-coding 5.763 0.9912
-27095 TRAPPC3 trafficking protein particle complex 3 protein-coding 10.18 0.4944
-27097 TAF5L TATA-box binding protein associated factor 5 like protein-coding 9.233 0.538
-27098 CLUL1 clusterin like 1 protein-coding 3.551 2.393
+27092 CACNG4 calcium voltage-gated channel auxiliary subunit gamma 4 protein-coding 6.063 3.717
+27094 KCNMB3 potassium calcium-activated channel subfamily M regulatory beta subunit 3 protein-coding 5.763 0.9907
+27095 TRAPPC3 trafficking protein particle complex 3 protein-coding 10.18 0.4943
+27097 TAF5L TATA-box binding protein associated factor 5 like protein-coding 9.232 0.5379
+27098 CLUL1 clusterin like 1 protein-coding 3.554 2.394
27099 SND1-IT1 SND1 intronic transcript 1 ncRNA 1.417 1.004
-271 AMPD2 adenosine monophosphate deaminase 2 protein-coding 9.992 0.777
+271 AMPD2 adenosine monophosphate deaminase 2 protein-coding 9.992 0.7771
2710 GK glycerol kinase protein-coding 7.523 1.212
-27101 CACYBP calcyclin binding protein protein-coding 10.55 0.6709
-27102 EIF2AK1 eukaryotic translation initiation factor 2 alpha kinase 1 protein-coding 12.05 0.4773
-27106 ARRDC2 arrestin domain containing 2 protein-coding 9.517 1.04
-27107 ZBTB11 zinc finger and BTB domain containing 11 protein-coding 9.186 0.6037
-27109 ATP5S ATP synthase, H+ transporting, mitochondrial Fo complex subunit s (factor B) protein-coding 6.918 0.613
+27101 CACYBP calcyclin binding protein protein-coding 10.55 0.6711
+27102 EIF2AK1 eukaryotic translation initiation factor 2 alpha kinase 1 protein-coding 12.05 0.4775
+27106 ARRDC2 arrestin domain containing 2 protein-coding 9.518 1.041
+27107 ZBTB11 zinc finger and BTB domain containing 11 protein-coding 9.186 0.6034
+27109 ATP5S ATP synthase, H+ transporting, mitochondrial Fo complex subunit s (factor B) protein-coding 6.917 0.6128
27111 SDCBP2 syndecan binding protein 2 protein-coding 7.639 2.074
-27112 FAM155B family with sequence similarity 155 member B protein-coding 5.682 2.556
+27112 FAM155B family with sequence similarity 155 member B protein-coding 5.683 2.556
27113 BBC3 BCL2 binding component 3 protein-coding 7.735 1.083
-27115 PDE7B phosphodiesterase 7B protein-coding 6.29 1.623
+27115 PDE7B phosphodiesterase 7B protein-coding 6.292 1.622
27122 DKK3 dickkopf WNT signaling pathway inhibitor 3 protein-coding 10.17 1.691
-27123 DKK2 dickkopf WNT signaling pathway inhibitor 2 protein-coding 4.608 2.029
-27124 INPP5J inositol polyphosphate-5-phosphatase J protein-coding 6.985 2.34
-27125 AFF4 AF4/FMR2 family member 4 protein-coding 11.11 0.7366
-27127 SMC1B structural maintenance of chromosomes 1B protein-coding 2.643 2.281
-27128 CYTH4 cytohesin 4 protein-coding 7.806 1.408
-27129 HSPB7 heat shock protein family B (small) member 7 protein-coding 5.753 2.454
+27123 DKK2 dickkopf WNT signaling pathway inhibitor 2 protein-coding 4.61 2.029
+27124 INPP5J inositol polyphosphate-5-phosphatase J protein-coding 6.986 2.34
+27125 AFF4 AF4/FMR2 family member 4 protein-coding 11.11 0.7365
+27127 SMC1B structural maintenance of chromosomes 1B protein-coding 2.642 2.281
+27128 CYTH4 cytohesin 4 protein-coding 7.807 1.408
+27129 HSPB7 heat shock protein family B (small) member 7 protein-coding 5.756 2.455
2713 GK3P glycerol kinase 3 pseudogene pseudo 4.466 1.244
-27130 INVS inversin protein-coding 7.785 0.5725
-27131 SNX5 sorting nexin 5 protein-coding 11.01 0.6654
-27132 CPNE7 copine 7 protein-coding 5.43 2.316
-27134 TJP3 tight junction protein 3 protein-coding 7.1 3.564
-27141 CIDEB cell death-inducing DFFA-like effector b protein-coding 8.43 1.151
-27143 PALD1 phosphatase domain containing, paladin 1 protein-coding 8.275 1.329
-27145 FILIP1 filamin A interacting protein 1 protein-coding 5.892 1.809
-27146 FAM184B family with sequence similarity 184 member B protein-coding 1.883 2.296
-27147 DENND2A DENN domain containing 2A protein-coding 7.067 1.857
-27148 STK36 serine/threonine kinase 36 protein-coding 8.859 0.9179
-27151 CPAMD8 C3 and PZP like, alpha-2-macroglobulin domain containing 8 protein-coding 6.66 2.281
-27152 INTU inturned planar cell polarity protein protein-coding 6.38 1.165
-27153 ZNF777 zinc finger protein 777 protein-coding 8.956 0.5313
-27154 BRPF3 bromodomain and PHD finger containing 3 protein-coding 9.975 0.778
-27156 RSPH14 radial spoke head 14 homolog protein-coding 2.754 1.93
-27158 NDOR1 NADPH dependent diflavin oxidoreductase 1 protein-coding 9.516 0.7417
-27160 INGX inhibitor of growth family, X-linked (pseudogene) pseudo 0.6736 0.78
-27161 AGO2 argonaute 2, RISC catalytic component protein-coding 7.819 1.053
-27163 NAAA N-acylethanolamine acid amidase protein-coding 8.536 1.21
-27165 GLS2 glutaminase 2 protein-coding 6.116 2.007
-27166 PRELID1 PRELI domain containing 1 protein-coding 10.94 0.6871
-2717 GLA galactosidase alpha protein-coding 9.019 0.8588
-27173 SLC39A1 solute carrier family 39 member 1 protein-coding 11.58 0.6178
-27175 TUBG2 tubulin gamma 2 protein-coding 8.268 1.03
+27130 INVS inversin protein-coding 7.785 0.5724
+27131 SNX5 sorting nexin 5 protein-coding 11.01 0.6655
+27132 CPNE7 copine 7 protein-coding 5.43 2.315
+27134 TJP3 tight junction protein 3 protein-coding 7.102 3.564
+27141 CIDEB cell death-inducing DFFA-like effector b protein-coding 8.431 1.151
+27143 PALD1 phosphatase domain containing, paladin 1 protein-coding 8.276 1.329
+27145 FILIP1 filamin A interacting protein 1 protein-coding 5.894 1.809
+27146 FAM184B family with sequence similarity 184 member B protein-coding 1.882 2.295
+27147 DENND2A DENN domain containing 2A protein-coding 7.068 1.857
+27148 STK36 serine/threonine kinase 36 protein-coding 8.859 0.9176
+27151 CPAMD8 C3 and PZP like, alpha-2-macroglobulin domain containing 8 protein-coding 6.662 2.282
+27152 INTU inturned planar cell polarity protein protein-coding 6.381 1.165
+27153 ZNF777 zinc finger protein 777 protein-coding 8.957 0.5311
+27154 BRPF3 bromodomain and PHD finger containing 3 protein-coding 9.975 0.7778
+27156 RSPH14 radial spoke head 14 homolog protein-coding 2.754 1.929
+27158 NDOR1 NADPH dependent diflavin oxidoreductase 1 protein-coding 9.516 0.7414
+27160 INGX inhibitor of growth family, X-linked (pseudogene) pseudo 0.6735 0.7798
+27161 AGO2 argonaute 2, RISC catalytic component protein-coding 7.818 1.053
+27163 NAAA N-acylethanolamine acid amidase protein-coding 8.537 1.21
+27165 GLS2 glutaminase 2 protein-coding 6.117 2.006
+27166 PRELID1 PRELI domain containing 1 protein-coding 10.94 0.6872
+2717 GLA galactosidase alpha protein-coding 9.018 0.8591
+27173 SLC39A1 solute carrier family 39 member 1 protein-coding 11.58 0.6176
+27175 TUBG2 tubulin gamma 2 protein-coding 8.269 1.03
27180 SIGLEC9 sialic acid binding Ig like lectin 9 protein-coding 5.068 1.537
-27181 SIGLEC8 sialic acid binding Ig like lectin 8 protein-coding 4.632 2.312
-27183 VPS4A vacuolar protein sorting 4 homolog A protein-coding 10.98 0.5399
+27181 SIGLEC8 sialic acid binding Ig like lectin 8 protein-coding 4.633 2.313
+27183 VPS4A vacuolar protein sorting 4 homolog A protein-coding 10.98 0.5397
27185 DISC1 DISC1 scaffold protein protein-coding 7.131 1.248
-27189 IL17C interleukin 17C protein-coding 1.21 1.444
-2719 GPC3 glypican 3 protein-coding 6.71 2.88
-27190 IL17B interleukin 17B protein-coding 1.547 1.532
-27197 GPR82 G protein-coupled receptor 82 protein-coding 2.853 1.459
+27189 IL17C interleukin 17C protein-coding 1.21 1.443
+2719 GPC3 glypican 3 protein-coding 6.711 2.88
+27190 IL17B interleukin 17B protein-coding 1.548 1.532
+27197 GPR82 G protein-coupled receptor 82 protein-coding 2.854 1.459
27198 HCAR1 hydroxycarboxylic acid receptor 1 protein-coding 4.141 2.733
-272 AMPD3 adenosine monophosphate deaminase 3 protein-coding 8.201 1.21
-2720 GLB1 galactosidase beta 1 protein-coding 10.52 0.7793
+272 AMPD3 adenosine monophosphate deaminase 3 protein-coding 8.202 1.21
+2720 GLB1 galactosidase beta 1 protein-coding 10.52 0.7789
27202 C5AR2 complement component 5a receptor 2 protein-coding 3.667 1.858
-27229 TUBGCP4 tubulin gamma complex associated protein 4 protein-coding 7.916 0.6949
-27230 SERP1 stress associated endoplasmic reticulum protein 1 protein-coding 11.98 0.6885
-27232 GNMT glycine N-methyltransferase protein-coding 3.547 2.507
-27233 SULT1C4 sulfotransferase family 1C member 4 protein-coding 4.705 2.569
-27235 COQ2 coenzyme Q2, polyprenyltransferase protein-coding 7.819 0.692
-27236 ARFIP1 ADP ribosylation factor interacting protein 1 protein-coding 9.694 0.614
+27229 TUBGCP4 tubulin gamma complex associated protein 4 protein-coding 7.916 0.6947
+27230 SERP1 stress associated endoplasmic reticulum protein 1 protein-coding 11.98 0.6884
+27232 GNMT glycine N-methyltransferase protein-coding 3.55 2.508
+27233 SULT1C4 sulfotransferase family 1C member 4 protein-coding 4.706 2.568
+27235 COQ2 coenzyme Q2, polyprenyltransferase protein-coding 7.818 0.6918
+27236 ARFIP1 ADP ribosylation factor interacting protein 1 protein-coding 9.694 0.6139
27237 ARHGEF16 Rho guanine nucleotide exchange factor 16 protein-coding 8.277 2.394
-27238 GPKOW G-patch domain and KOW motifs protein-coding 9.135 0.5165
-27239 GPR162 G protein-coupled receptor 162 protein-coding 6.021 2.108
-27240 SIT1 signaling threshold regulating transmembrane adaptor 1 protein-coding 4.571 2.127
-27241 BBS9 Bardet-Biedl syndrome 9 protein-coding 7.935 0.7719
+27238 GPKOW G-patch domain and KOW motifs protein-coding 9.135 0.5163
+27239 GPR162 G protein-coupled receptor 162 protein-coding 6.022 2.108
+27240 SIT1 signaling threshold regulating transmembrane adaptor 1 protein-coding 4.572 2.128
+27241 BBS9 Bardet-Biedl syndrome 9 protein-coding 7.935 0.7717
27242 TNFRSF21 TNF receptor superfamily member 21 protein-coding 10.87 1.512
-27243 CHMP2A charged multivesicular body protein 2A protein-coding 11.2 0.6782
-27244 SESN1 sestrin 1 protein-coding 9.209 1.015
-27245 AHDC1 AT-hook DNA binding motif containing 1 protein-coding 9.73 0.9275
-27246 RNF115 ring finger protein 115 protein-coding 8.713 0.5724
-27247 NFU1 NFU1 iron-sulfur cluster scaffold protein-coding 9.057 0.53
+27243 CHMP2A charged multivesicular body protein 2A protein-coding 11.2 0.6781
+27244 SESN1 sestrin 1 protein-coding 9.21 1.015
+27245 AHDC1 AT-hook DNA binding motif containing 1 protein-coding 9.73 0.9273
+27246 RNF115 ring finger protein 115 protein-coding 8.714 0.5723
+27247 NFU1 NFU1 iron-sulfur cluster scaffold protein-coding 9.057 0.5298
27248 ERLEC1 endoplasmic reticulum lectin 1 protein-coding 10.6 0.6212
-27249 MMADHC methylmalonic aciduria and homocystinuria, cblD type protein-coding 10.63 0.5459
-27250 PDCD4 programmed cell death 4 protein-coding 11.06 1.062
-27252 KLHL20 kelch like family member 20 protein-coding 8.502 0.6833
+27249 MMADHC methylmalonic aciduria and homocystinuria, cblD type protein-coding 10.63 0.5458
+27250 PDCD4 programmed cell death 4 protein-coding 11.07 1.062
+27252 KLHL20 kelch like family member 20 protein-coding 8.503 0.6831
27253 PCDH17 protocadherin 17 protein-coding 7.516 1.888
-27254 CSDC2 cold shock domain containing C2 protein-coding 5.192 2.825
-27257 LSM1 LSM1 homolog, mRNA degradation associated protein-coding 9.218 0.6447
-27258 LSM3 LSM3 homolog, U6 small nuclear RNA and mRNA degradation associated protein-coding 9.617 0.6038
-27284 SULT1B1 sulfotransferase family 1B member 1 protein-coding 2.071 2.253
-27285 TEKT2 tektin 2 protein-coding 3.457 2.355
-27286 SRPX2 sushi repeat containing protein, X-linked 2 protein-coding 6.919 2.318
-27287 VENTX VENT homeobox protein-coding 3.817 1.699
-27289 RND1 Rho family GTPase 1 protein-coding 6.853 1.962
+27254 CSDC2 cold shock domain containing C2 protein-coding 5.194 2.824
+27257 LSM1 LSM1 homolog, mRNA degradation associated protein-coding 9.217 0.6446
+27258 LSM3 LSM3 homolog, U6 small nuclear RNA and mRNA degradation associated protein-coding 9.617 0.6039
+27284 SULT1B1 sulfotransferase family 1B member 1 protein-coding 2.072 2.254
+27285 TEKT2 tektin 2 protein-coding 3.458 2.354
+27286 SRPX2 sushi repeat containing protein, X-linked 2 protein-coding 6.919 2.317
+27287 VENTX VENT homeobox protein-coding 3.819 1.7
+27289 RND1 Rho family GTPase 1 protein-coding 6.852 1.961
2729 GCLC glutamate-cysteine ligase catalytic subunit protein-coding 10.02 1.185
-27291 R3HCC1L R3H domain and coiled-coil containing 1 like protein-coding 8.358 0.5719
-27292 DIMT1 DIM1 dimethyladenosine transferase 1 homolog protein-coding 8.608 0.5469
-27293 SMPDL3B sphingomyelin phosphodiesterase acid like 3B protein-coding 6.954 2.924
+27291 R3HCC1L R3H domain and coiled-coil containing 1 like protein-coding 8.359 0.5718
+27292 DIMT1 DIM1 dimethyladenosine transferase 1 homolog protein-coding 8.607 0.5467
+27293 SMPDL3B sphingomyelin phosphodiesterase acid like 3B protein-coding 6.954 2.923
27294 DHDH dihydrodiol dehydrogenase protein-coding 3.909 1.907
27297 CRCP CGRP receptor component protein-coding 9.915 0.4728
27299 ADAMDEC1 ADAM like decysin 1 protein-coding 5.349 2.728
-273 AMPH amphiphysin protein-coding 4.651 2.437
-2730 GCLM glutamate-cysteine ligase modifier subunit protein-coding 8.449 1.234
-27300 ZNF544 zinc finger protein 544 protein-coding 8.838 0.8598
-27301 APEX2 apurinic/apyrimidinic endodeoxyribonuclease 2 protein-coding 9.45 0.6752
-27303 RBMS3 RNA binding motif single stranded interacting protein 3 protein-coding 4.574 1.74
-27304 MOCS3 molybdenum cofactor synthesis 3 protein-coding 7.939 0.5522
-27306 HPGDS hematopoietic prostaglandin D synthase protein-coding 4.538 1.793
-27309 ZNF330 zinc finger protein 330 protein-coding 9.129 0.532
-2731 GLDC glycine decarboxylase protein-coding 5.589 3.372
-27314 RAB30 RAB30, member RAS oncogene family protein-coding 5.92 1.334
-27315 PGAP2 post-GPI attachment to proteins 2 protein-coding 9.045 0.6314
-27316 RBMX RNA binding motif protein, X-linked protein-coding 11.72 0.4509
-27319 BHLHE22 basic helix-loop-helix family member e22 protein-coding 3.825 1.879
-27327 TNRC6A trinucleotide repeat containing 6A protein-coding 10.1 0.6012
-2733 GLE1 GLE1, RNA export mediator protein-coding 9.8 0.5475
-27332 ZNF638 zinc finger protein 638 protein-coding 11.01 0.5315
-27333 GOLIM4 golgi integral membrane protein 4 protein-coding 9.621 1.514
-27334 P2RY10 P2Y receptor family member 10 protein-coding 3.691 2.05
-27335 EIF3K eukaryotic translation initiation factor 3 subunit K protein-coding 11.71 0.7052
-27336 HTATSF1 HIV-1 Tat specific factor 1 protein-coding 10.9 0.6626
-27338 UBE2S ubiquitin conjugating enzyme E2 S protein-coding 8.783 1.312
-27339 PRPF19 pre-mRNA processing factor 19 protein-coding 11.58 0.5143
-2734 GLG1 golgi glycoprotein 1 protein-coding 12.18 0.5569
-27340 UTP20 UTP20, small subunit processome component protein-coding 9.287 0.7575
-27341 RRP7A ribosomal RNA processing 7 homolog A protein-coding 9.797 0.8133
-27342 RABGEF1 RAB guanine nucleotide exchange factor 1 protein-coding 9.917 0.4161
-27343 POLL DNA polymerase lambda protein-coding 9.079 0.6059
-27344 PCSK1N proprotein convertase subtilisin/kexin type 1 inhibitor protein-coding 5.761 3.485
-27345 KCNMB4 potassium calcium-activated channel subfamily M regulatory beta subunit 4 protein-coding 6.444 1.89
+273 AMPH amphiphysin protein-coding 4.653 2.436
+2730 GCLM glutamate-cysteine ligase modifier subunit protein-coding 8.448 1.233
+27300 ZNF544 zinc finger protein 544 protein-coding 8.838 0.8594
+27301 APEX2 apurinic/apyrimidinic endodeoxyribonuclease 2 protein-coding 9.449 0.6752
+27303 RBMS3 RNA binding motif single stranded interacting protein 3 protein-coding 4.576 1.741
+27304 MOCS3 molybdenum cofactor synthesis 3 protein-coding 7.939 0.5521
+27306 HPGDS hematopoietic prostaglandin D synthase protein-coding 4.539 1.794
+27309 ZNF330 zinc finger protein 330 protein-coding 9.129 0.5319
+2731 GLDC glycine decarboxylase protein-coding 5.586 3.373
+27314 RAB30 RAB30, member RAS oncogene family protein-coding 5.92 1.333
+27315 PGAP2 post-GPI attachment to proteins 2 protein-coding 9.044 0.6313
+27316 RBMX RNA binding motif protein, X-linked protein-coding 11.72 0.4507
+27319 BHLHE22 basic helix-loop-helix family member e22 protein-coding 3.826 1.879
+27327 TNRC6A trinucleotide repeat containing 6A protein-coding 10.1 0.6011
+2733 GLE1 GLE1, RNA export mediator protein-coding 9.8 0.5473
+27332 ZNF638 zinc finger protein 638 protein-coding 11.01 0.5313
+27333 GOLIM4 golgi integral membrane protein 4 protein-coding 9.621 1.513
+27334 P2RY10 P2Y receptor family member 10 protein-coding 3.692 2.051
+27335 EIF3K eukaryotic translation initiation factor 3 subunit K protein-coding 11.71 0.705
+27336 HTATSF1 HIV-1 Tat specific factor 1 protein-coding 10.9 0.6635
+27338 UBE2S ubiquitin conjugating enzyme E2 S protein-coding 8.782 1.312
+27339 PRPF19 pre-mRNA processing factor 19 protein-coding 11.58 0.5144
+2734 GLG1 golgi glycoprotein 1 protein-coding 12.19 0.5567
+27340 UTP20 UTP20, small subunit processome component protein-coding 9.286 0.7573
+27341 RRP7A ribosomal RNA processing 7 homolog A protein-coding 9.797 0.8131
+27342 RABGEF1 RAB guanine nucleotide exchange factor 1 protein-coding 9.917 0.416
+27343 POLL DNA polymerase lambda protein-coding 9.079 0.6058
+27344 PCSK1N proprotein convertase subtilisin/kexin type 1 inhibitor protein-coding 5.764 3.485
+27345 KCNMB4 potassium calcium-activated channel subfamily M regulatory beta subunit 4 protein-coding 6.445 1.889
27346 TMEM97 transmembrane protein 97 protein-coding 9.448 1.39
27347 STK39 serine/threonine kinase 39 protein-coding 9.556 1.16
-27348 TOR1B torsin family 1 member B protein-coding 9.236 0.5649
-27349 MCAT malonyl-CoA-acyl carrier protein transacylase protein-coding 8.478 0.6432
-2735 GLI1 GLI family zinc finger 1 protein-coding 4.663 2.035
-27350 APOBEC3C apolipoprotein B mRNA editing enzyme catalytic subunit 3C protein-coding 7.87 1.498
-27351 DESI1 desumoylating isopeptidase 1 protein-coding 8.281 0.7797
-27352 SGSM3 small G protein signaling modulator 3 protein-coding 10.34 0.7311
-2736 GLI2 GLI family zinc finger 2 protein-coding 6.083 2.108
+27348 TOR1B torsin family 1 member B protein-coding 9.237 0.5648
+27349 MCAT malonyl-CoA-acyl carrier protein transacylase protein-coding 8.478 0.6431
+2735 GLI1 GLI family zinc finger 1 protein-coding 4.665 2.035
+27350 APOBEC3C apolipoprotein B mRNA editing enzyme catalytic subunit 3C protein-coding 7.872 1.498
+27351 DESI1 desumoylating isopeptidase 1 protein-coding 8.28 0.7797
+27352 SGSM3 small G protein signaling modulator 3 protein-coding 10.34 0.7312
+2736 GLI2 GLI family zinc finger 2 protein-coding 6.085 2.108
2737 GLI3 GLI family zinc finger 3 protein-coding 7.834 1.942
-2738 GLI4 GLI family zinc finger 4 protein-coding 7.4 1.044
-2739 GLO1 glyoxalase I protein-coding 11.51 0.7494
-274 BIN1 bridging integrator 1 protein-coding 9.916 1.452
-27429 HTRA2 HtrA serine peptidase 2 protein-coding 9.404 0.5079
+2738 GLI4 GLI family zinc finger 4 protein-coding 7.4 1.043
+2739 GLO1 glyoxalase I protein-coding 11.51 0.7497
+274 BIN1 bridging integrator 1 protein-coding 9.916 1.451
+27429 HTRA2 HtrA serine peptidase 2 protein-coding 9.403 0.5078
2743 GLRB glycine receptor beta protein-coding 5.945 2.436
-27430 MAT2B methionine adenosyltransferase 2B protein-coding 10.56 0.6194
-27433 TOR2A torsin family 2 member A protein-coding 8.328 0.6661
-27434 POLM DNA polymerase mu protein-coding 8.785 0.6193
-27436 EML4 echinoderm microtubule associated protein like 4 protein-coding 10.64 0.8498
-27439 TMEM121B transmembrane protein 121B protein-coding 4.88 2.011
-2744 GLS glutaminase protein-coding 10.56 1.19
-27440 HDHD5 haloacid dehalogenase like hydrolase domain containing 5 protein-coding 9.505 0.7276
-27443 CECR2 CECR2, histone acetyl-lysine reader protein-coding 4.453 2.681
-27445 PCLO piccolo presynaptic cytomatrix protein protein-coding 6.955 2.425
-2745 GLRX glutaredoxin protein-coding 8.864 1.306
-2746 GLUD1 glutamate dehydrogenase 1 protein-coding 11.85 0.8957
-2747 GLUD2 glutamate dehydrogenase 2 protein-coding 8.588 1.234
-275 AMT aminomethyltransferase protein-coding 7.192 1.671
+27430 MAT2B methionine adenosyltransferase 2B protein-coding 10.56 0.6193
+27433 TOR2A torsin family 2 member A protein-coding 8.327 0.6659
+27434 POLM DNA polymerase mu protein-coding 8.785 0.6192
+27436 EML4 echinoderm microtubule associated protein like 4 protein-coding 10.64 0.8497
+27439 TMEM121B transmembrane protein 121B protein-coding 4.882 2.012
+2744 GLS glutaminase protein-coding 10.56 1.189
+27440 HDHD5 haloacid dehalogenase like hydrolase domain containing 5 protein-coding 9.505 0.7274
+27443 CECR2 CECR2, histone acetyl-lysine reader protein-coding 4.454 2.68
+27445 PCLO piccolo presynaptic cytomatrix protein protein-coding 6.957 2.425
+2745 GLRX glutaredoxin protein-coding 8.864 1.305
+2746 GLUD1 glutamate dehydrogenase 1 protein-coding 11.85 0.8954
+2747 GLUD2 glutamate dehydrogenase 2 protein-coding 8.588 1.233
+275 AMT aminomethyltransferase protein-coding 7.193 1.671
2752 GLUL glutamate-ammonia ligase protein-coding 13.43 1.232
-276 AMY1A amylase, alpha 1A (salivary) protein-coding 2.955 2.955
-2760 GM2A GM2 ganglioside activator protein-coding 11.16 0.9239
+276 AMY1A amylase, alpha 1A (salivary) protein-coding 2.956 2.955
+2760 GM2A GM2 ganglioside activator protein-coding 11.16 0.9246
2762 GMDS GDP-mannose 4,6-dehydratase protein-coding 8.692 1.292
-2764 GMFB glia maturation factor beta protein-coding 10.34 0.6964
-2766 GMPR guanosine monophosphate reductase protein-coding 7.563 1.977
+2764 GMFB glia maturation factor beta protein-coding 10.34 0.6962
+2766 GMPR guanosine monophosphate reductase protein-coding 7.565 1.977
2767 GNA11 G protein subunit alpha 11 protein-coding 8.852 1.045
-2768 GNA12 G protein subunit alpha 12 protein-coding 10.6 0.7959
-2769 GNA15 G protein subunit alpha 15 protein-coding 7.977 2.043
+2768 GNA12 G protein subunit alpha 12 protein-coding 10.6 0.7957
+2769 GNA15 G protein subunit alpha 15 protein-coding 7.976 2.043
2770 GNAI1 G protein subunit alpha i1 protein-coding 9.009 1.359
-2771 GNAI2 G protein subunit alpha i2 protein-coding 12.53 0.6511
-2773 GNAI3 G protein subunit alpha i3 protein-coding 10.96 0.5784
-2774 GNAL G protein subunit alpha L protein-coding 5.775 1.765
-2775 GNAO1 G protein subunit alpha o1 protein-coding 6.673 2.615
-2776 GNAQ G protein subunit alpha q protein-coding 10.53 0.7165
-2778 GNAS GNAS complex locus protein-coding 14.66 0.9307
-2780 GNAT2 G protein subunit alpha transducin 2 protein-coding 1.151 0.8255
-2781 GNAZ G protein subunit alpha z protein-coding 6.884 1.948
-2782 GNB1 G protein subunit beta 1 protein-coding 12.94 0.4401
+2771 GNAI2 G protein subunit alpha i2 protein-coding 12.53 0.651
+2773 GNAI3 G protein subunit alpha i3 protein-coding 10.96 0.5782
+2774 GNAL G protein subunit alpha L protein-coding 5.776 1.765
+2775 GNAO1 G protein subunit alpha o1 protein-coding 6.675 2.615
+2776 GNAQ G protein subunit alpha q protein-coding 10.53 0.7164
+2778 GNAS GNAS complex locus protein-coding 14.66 0.9314
+2780 GNAT2 G protein subunit alpha transducin 2 protein-coding 1.151 0.8254
+2781 GNAZ G protein subunit alpha z protein-coding 6.885 1.948
+2782 GNB1 G protein subunit beta 1 protein-coding 12.94 0.44
2783 GNB2 G protein subunit beta 2 protein-coding 12.29 0.5859
-2784 GNB3 G protein subunit beta 3 protein-coding 4.125 1.825
-2785 GNG3 G protein subunit gamma 3 protein-coding 2.824 2.139
-2786 GNG4 G protein subunit gamma 4 protein-coding 6.345 3.163
-2787 GNG5 G protein subunit gamma 5 protein-coding 10.77 0.7276
-2788 GNG7 G protein subunit gamma 7 protein-coding 7.295 2.13
-279 AMY2A amylase, alpha 2A (pancreatic) protein-coding 1.592 1.83
-2790 GNG10 G protein subunit gamma 10 protein-coding 9.041 0.6582
-2791 GNG11 G protein subunit gamma 11 protein-coding 8.823 1.416
+2784 GNB3 G protein subunit beta 3 protein-coding 4.126 1.824
+2785 GNG3 G protein subunit gamma 3 protein-coding 2.824 2.138
+2786 GNG4 G protein subunit gamma 4 protein-coding 6.346 3.164
+2787 GNG5 G protein subunit gamma 5 protein-coding 10.77 0.7274
+2788 GNG7 G protein subunit gamma 7 protein-coding 7.297 2.129
+279 AMY2A amylase, alpha 2A (pancreatic) protein-coding 1.595 1.839
+2790 GNG10 G protein subunit gamma 10 protein-coding 9.041 0.6581
+2791 GNG11 G protein subunit gamma 11 protein-coding 8.824 1.417
2793 GNGT2 G protein subunit gamma transducin 2 protein-coding 4.424 1.241
-2794 GNL1 G protein nucleolar 1 (putative) protein-coding 10.49 0.6435
-2796 GNRH1 gonadotropin releasing hormone 1 protein-coding 4.385 1.219
-2798 GNRHR gonadotropin releasing hormone receptor protein-coding 1.943 1.31
-2799 GNS glucosamine (N-acetyl)-6-sulfatase protein-coding 12.04 0.8252
-28 ABO ABO, alpha 1-3-N-acetylgalactosaminyltransferase and alpha 1-3-galactosyltransferase protein-coding 4.372 2.77
-280 AMY2B amylase, alpha 2B (pancreatic) protein-coding 6.763 1.824
-2800 GOLGA1 golgin A1 protein-coding 9.153 0.5115
+2794 GNL1 G protein nucleolar 1 (putative) protein-coding 10.49 0.6433
+2796 GNRH1 gonadotropin releasing hormone 1 protein-coding 4.386 1.219
+2798 GNRHR gonadotropin releasing hormone receptor protein-coding 1.944 1.309
+2799 GNS glucosamine (N-acetyl)-6-sulfatase protein-coding 12.04 0.825
+28 ABO ABO, alpha 1-3-N-acetylgalactosaminyltransferase and alpha 1-3-galactosyltransferase protein-coding 4.374 2.77
+280 AMY2B amylase, alpha 2B (pancreatic) protein-coding 6.765 1.826
+2800 GOLGA1 golgin A1 protein-coding 9.153 0.5113
2801 GOLGA2 golgin A2 protein-coding 10.88 0.5971
-2802 GOLGA3 golgin A3 protein-coding 11.03 0.5432
-2803 GOLGA4 golgin A4 protein-coding 11 0.8361
-2804 GOLGB1 golgin B1 protein-coding 11.66 0.6998
-2805 GOT1 glutamic-oxaloacetic transaminase 1 protein-coding 10.24 0.9906
+2802 GOLGA3 golgin A3 protein-coding 11.03 0.5431
+2803 GOLGA4 golgin A4 protein-coding 11 0.8358
+2804 GOLGB1 golgin B1 protein-coding 11.66 0.6997
+2805 GOT1 glutamic-oxaloacetic transaminase 1 protein-coding 10.24 0.9904
2806 GOT2 glutamic-oxaloacetic transaminase 2 protein-coding 11.37 0.749
280636 SELENOH selenoprotein H protein-coding 10.16 0.6677
-280655 IGBP1P1 immunoglobulin (CD79A) binding protein 1 pseudogene 1 pseudo 2.346 1.084
-2810 SFN stratifin protein-coding 9.483 4.266
-2811 GP1BA glycoprotein Ib platelet alpha subunit protein-coding 3.494 1.574
-2814 GP5 glycoprotein V platelet protein-coding 1.55 1.212
+280655 IGBP1P1 immunoglobulin (CD79A) binding protein 1 pseudogene 1 pseudo 2.345 1.083
+2810 SFN stratifin protein-coding 9.481 4.266
+2811 GP1BA glycoprotein Ib platelet alpha subunit protein-coding 3.495 1.577
+2814 GP5 glycoprotein V platelet protein-coding 1.551 1.213
2817 GPC1 glypican 1 protein-coding 10.92 1.504
2819 GPD1 glycerol-3-phosphate dehydrogenase 1 protein-coding 5.718 2.891
-2820 GPD2 glycerol-3-phosphate dehydrogenase 2 protein-coding 10.1 0.9039
-2821 GPI glucose-6-phosphate isomerase protein-coding 12.88 0.8109
-2822 GPLD1 glycosylphosphatidylinositol specific phospholipase D1 protein-coding 4.064 1.968
-28227 PPP2R3B protein phosphatase 2 regulatory subunit B''beta protein-coding 7.845 1.038
-2823 GPM6A glycoprotein M6A protein-coding 4.471 3.698
-28231 SLCO4A1 solute carrier organic anion transporter family member 4A1 protein-coding 6.752 2.291
-28232 SLCO3A1 solute carrier organic anion transporter family member 3A1 protein-coding 8.92 1.354
-2824 GPM6B glycoprotein M6B protein-coding 7.081 2.894
-2825 GPR1 G protein-coupled receptor 1 protein-coding 3.468 2.32
-282566 LINC00515 long intergenic non-protein coding RNA 515 ncRNA 1.424 1.111
-2826 CCR10 C-C motif chemokine receptor 10 protein-coding 3.924 1.58
-282679 AQP11 aquaporin 11 protein-coding 5.196 1.528
-2827 GPR3 G protein-coupled receptor 3 protein-coding 4.784 1.462
-2828 GPR4 G protein-coupled receptor 4 protein-coding 7.182 1.28
-282808 RAB40AL RAB40A like protein-coding 2.293 1.033
-282809 POC1B POC1 centriolar protein B protein-coding 8.601 0.8427
-282890 ZNF311 zinc finger protein 311 protein-coding 5.078 1.678
-2829 XCR1 X-C motif chemokine receptor 1 protein-coding 1.411 1.448
-282969 FUOM fucose mutarotase protein-coding 6.929 1.591
-282973 JAKMIP3 Janus kinase and microtubule interacting protein 3 protein-coding 3.885 2.237
-282974 STK32C serine/threonine kinase 32C protein-coding 7.317 1.214
-282991 BLOC1S2 biogenesis of lysosomal organelles complex 1 subunit 2 protein-coding 9.582 0.5878
-282996 RBM20 RNA binding motif protein 20 protein-coding 4.327 1.865
+2820 GPD2 glycerol-3-phosphate dehydrogenase 2 protein-coding 10.1 0.9035
+2821 GPI glucose-6-phosphate isomerase protein-coding 12.88 0.811
+2822 GPLD1 glycosylphosphatidylinositol specific phospholipase D1 protein-coding 4.065 1.967
+28227 PPP2R3B protein phosphatase 2 regulatory subunit B''beta protein-coding 7.845 1.037
+2823 GPM6A glycoprotein M6A protein-coding 4.474 3.698
+28231 SLCO4A1 solute carrier organic anion transporter family member 4A1 protein-coding 6.751 2.291
+28232 SLCO3A1 solute carrier organic anion transporter family member 3A1 protein-coding 8.921 1.354
+2824 GPM6B glycoprotein M6B protein-coding 7.081 2.893
+2825 GPR1 G protein-coupled receptor 1 protein-coding 3.468 2.319
+282566 LINC00515 long intergenic non-protein coding RNA 515 ncRNA 1.424 1.11
+2826 CCR10 C-C motif chemokine receptor 10 protein-coding 3.925 1.579
+282679 AQP11 aquaporin 11 protein-coding 5.197 1.528
+2827 GPR3 G protein-coupled receptor 3 protein-coding 4.783 1.462
+2828 GPR4 G protein-coupled receptor 4 protein-coding 7.182 1.281
+282808 RAB40AL RAB40A like protein-coding 2.294 1.033
+282809 POC1B POC1 centriolar protein B protein-coding 8.601 0.8426
+282890 ZNF311 zinc finger protein 311 protein-coding 5.078 1.677
+2829 XCR1 X-C motif chemokine receptor 1 protein-coding 1.413 1.449
+282969 FUOM fucose mutarotase protein-coding 6.928 1.591
+282973 JAKMIP3 Janus kinase and microtubule interacting protein 3 protein-coding 3.886 2.236
+282974 STK32C serine/threonine kinase 32C protein-coding 7.316 1.213
+282991 BLOC1S2 biogenesis of lysosomal organelles complex 1 subunit 2 protein-coding 9.581 0.5877
+282996 RBM20 RNA binding motif protein 20 protein-coding 4.328 1.865
282997 PDCD4-AS1 PDCD4 antisense RNA 1 ncRNA 5.74 1.083
-283 ANG angiogenin protein-coding 7.531 2.078
-283011 FLJ37201 tigger transposable element derived 2 pseudogene pseudo 3.386 1.084
-283050 ZMIZ1-AS1 ZMIZ1 antisense RNA 1 ncRNA 4.406 1.248
-283078 MKX mohawk homeobox protein-coding 4.373 2.448
-283102 KRT8P41 keratin 8 pseudogene 41 pseudo 1.791 1.253
-283106 CSNK2A3 casein kinase 2 alpha 3 protein-coding 8.616 0.9901
-283120 H19 H19, imprinted maternally expressed transcript (non-protein coding) ncRNA 10.25 3.341
+283 ANG angiogenin protein-coding 7.532 2.078
+283011 FLJ37201 tigger transposable element derived 2 pseudogene pseudo 3.387 1.084
+283050 ZMIZ1-AS1 ZMIZ1 antisense RNA 1 ncRNA 4.407 1.248
+283078 MKX mohawk homeobox protein-coding 4.374 2.449
+283102 KRT8P41 keratin 8 pseudogene 41 pseudo 1.791 1.252
+283106 CSNK2A3 casein kinase 2 alpha 3 protein-coding 8.616 0.9896
+283120 H19 H19, imprinted maternally expressed transcript (non-protein coding) ncRNA 10.25 3.339
283130 SLC25A45 solute carrier family 25 member 45 protein-coding 6.991 1.139
-283131 NEAT1 nuclear paraspeckle assembly transcript 1 (non-protein coding) ncRNA 12.86 1.491
-283149 BCL9L B cell CLL/lymphoma 9 like protein-coding 10.71 0.8103
+283131 NEAT1 nuclear paraspeckle assembly transcript 1 (non-protein coding) ncRNA 12.86 1.492
+283149 BCL9L B cell CLL/lymphoma 9 like protein-coding 10.71 0.8102
283152 CCDC153 coiled-coil domain containing 153 protein-coding 3.667 1.514
-283174 MIR4697HG MIR4697 host gene ncRNA 5.755 2.589
+283174 MIR4697HG MIR4697 host gene ncRNA 5.758 2.589
283208 P4HA3 prolyl 4-hydroxylase subunit alpha 3 protein-coding 5.536 2.042
283209 PGM2L1 phosphoglucomutase 2 like 1 protein-coding 8.694 1.343
-283212 KLHL35 kelch like family member 35 protein-coding 4.875 2.033
-283219 KCTD21 potassium channel tetramerization domain containing 21 protein-coding 8.312 0.7877
-283229 CRACR2B calcium release activated channel regulator 2B protein-coding 7.781 2.22
-283232 TMEM80 transmembrane protein 80 protein-coding 8.192 0.8481
-283234 CCDC88B coiled-coil domain containing 88B protein-coding 8.25 1.337
+283212 KLHL35 kelch like family member 35 protein-coding 4.875 2.032
+283219 KCTD21 potassium channel tetramerization domain containing 21 protein-coding 8.312 0.7874
+283229 CRACR2B calcium release activated channel regulator 2B protein-coding 7.781 2.219
+283232 TMEM80 transmembrane protein 80 protein-coding 8.192 0.8482
+283234 CCDC88B coiled-coil domain containing 88B protein-coding 8.251 1.337
283237 TTC9C tetratricopeptide repeat domain 9C protein-coding 8.188 0.4653
-283248 RCOR2 REST corepressor 2 protein-coding 5.851 2.461
-283254 HARBI1 harbinger transposase derived 1 protein-coding 6.181 0.5669
+283248 RCOR2 REST corepressor 2 protein-coding 5.85 2.461
+283254 HARBI1 harbinger transposase derived 1 protein-coding 6.181 0.5668
283267 LINC00294 long intergenic non-protein coding RNA 294 ncRNA 7.887 0.8601
-283284 IGSF22 immunoglobulin superfamily member 22 protein-coding 3.342 1.55
-283298 OLFML1 olfactomedin like 1 protein-coding 6.755 1.641
-2833 CXCR3 C-X-C motif chemokine receptor 3 protein-coding 5.181 2.099
+283284 IGSF22 immunoglobulin superfamily member 22 protein-coding 3.344 1.55
+283298 OLFML1 olfactomedin like 1 protein-coding 6.756 1.641
+2833 CXCR3 C-X-C motif chemokine receptor 3 protein-coding 5.182 2.099
283314 C1RL-AS1 C1RL antisense RNA 1 ncRNA 5.953 1.664
283316 CD163L1 CD163 molecule like 1 protein-coding 5.582 1.867
-283337 ZNF740 zinc finger protein 740 protein-coding 9.526 0.5273
+283337 ZNF740 zinc finger protein 740 protein-coding 9.526 0.5272
283345 RPL13P5 ribosomal protein L13 pseudogene 5 pseudo 4.145 1.081
-283349 RASSF3 Ras association domain family member 3 protein-coding 7.107 1.63
-283358 B4GALNT3 beta-1,4-N-acetyl-galactosaminyltransferase 3 protein-coding 7.32 2.621
-283373 ANKRD52 ankyrin repeat domain 52 protein-coding 10.38 0.6527
+283349 RASSF3 Ras association domain family member 3 protein-coding 7.109 1.631
+283358 B4GALNT3 beta-1,4-N-acetyl-galactosaminyltransferase 3 protein-coding 7.321 2.62
+283373 ANKRD52 ankyrin repeat domain 52 protein-coding 10.38 0.6524
283375 SLC39A5 solute carrier family 39 member 5 protein-coding 3.164 3.733
-283377 SPRYD4 SPRY domain containing 4 protein-coding 8.513 0.7795
-283383 ADGRD1 adhesion G protein-coupled receptor D1 protein-coding 5.767 2.457
+283377 SPRYD4 SPRY domain containing 4 protein-coding 8.513 0.7793
+283383 ADGRD1 adhesion G protein-coupled receptor D1 protein-coding 5.77 2.457
283385 MORN3 MORN repeat containing 3 protein-coding 3.421 1.702
-283416 LINC01465 long intergenic non-protein coding RNA 1465 ncRNA 3.531 0.9271
-283417 DPY19L2 dpy-19 like 2 protein-coding 5.041 2.284
-283420 CLEC9A C-type lectin domain containing 9A protein-coding 2.486 1.848
+283416 LINC01465 long intergenic non-protein coding RNA 1465 ncRNA 3.531 0.9272
+283417 DPY19L2 dpy-19 like 2 protein-coding 5.043 2.284
+283420 CLEC9A C-type lectin domain containing 9A protein-coding 2.488 1.849
283431 GAS2L3 growth arrest specific 2 like 3 protein-coding 4.923 1.957
283446 MYO1H myosin IH protein-coding 1.832 1.381
283450 HECTD4 HECT domain E3 ubiquitin protein ligase 4 protein-coding 10.13 0.8238
-283455 KSR2 kinase suppressor of ras 2 protein-coding 4.808 2.435
-283458 NME2P1 NME/NM23 nucleoside diphosphate kinase 2 pseudogene 1 pseudo 6.76 1.365
-283459 GATC glutamyl-tRNA amidotransferase subunit C protein-coding 5.202 0.8687
-283464 GXYLT1 glucoside xylosyltransferase 1 protein-coding 8.849 0.7024
-283487 LINC00346 long intergenic non-protein coding RNA 346 ncRNA 5.926 1.527
-283489 CHAMP1 chromosome alignment maintaining phosphoprotein 1 protein-coding 8.947 0.7683
-283507 SUGT1P3 SUGT1 pseudogene 3 pseudo 5.111 1.204
-283514 SIAH3 siah E3 ubiquitin protein ligase family member 3 protein-coding 1.408 1.586
-283518 KCNRG potassium channel regulator protein-coding 3.321 1.147
+283455 KSR2 kinase suppressor of ras 2 protein-coding 4.81 2.435
+283458 NME2P1 NME/NM23 nucleoside diphosphate kinase 2 pseudogene 1 pseudo 6.759 1.365
+283459 GATC glutamyl-tRNA amidotransferase subunit C protein-coding 5.202 0.8683
+283464 GXYLT1 glucoside xylosyltransferase 1 protein-coding 8.849 0.7021
+283487 LINC00346 long intergenic non-protein coding RNA 346 ncRNA 5.925 1.526
+283489 CHAMP1 chromosome alignment maintaining phosphoprotein 1 protein-coding 8.947 0.768
+283507 SUGT1P3 SUGT1 pseudogene 3 pseudo 5.112 1.205
+283514 SIAH3 siah E3 ubiquitin protein ligase family member 3 protein-coding 1.409 1.585
+283518 KCNRG potassium channel regulator protein-coding 3.322 1.146
283521 TMEM272 transmembrane protein 272 protein-coding 2.173 1.3
-283537 SLC46A3 solute carrier family 46 member 3 protein-coding 8.243 1.393
+283537 SLC46A3 solute carrier family 46 member 3 protein-coding 8.244 1.393
283551 LINC01588 long intergenic non-protein coding RNA 1588 ncRNA 2.285 1.259
-283554 GPR137C G protein-coupled receptor 137C protein-coding 5.386 1.57
-283571 PROX2 prospero homeobox 2 protein-coding 1.016 0.83
-283578 TMED8 transmembrane p24 trafficking protein family member 8 protein-coding 8.605 0.6689
-283579 C14orf178 chromosome 14 open reading frame 178 protein-coding 0.7271 0.7577
+283554 GPR137C G protein-coupled receptor 137C protein-coding 5.385 1.57
+283571 PROX2 prospero homeobox 2 protein-coding 1.016 0.8298
+283578 TMED8 transmembrane p24 trafficking protein family member 8 protein-coding 8.605 0.6687
+283579 C14orf178 chromosome 14 open reading frame 178 protein-coding 0.7272 0.7576
283596 SNHG10 small nucleolar RNA host gene 10 ncRNA 6.457 1.001
-283600 SLC25A47 solute carrier family 25 member 47 protein-coding 1.319 2.077
+283600 SLC25A47 solute carrier family 25 member 47 protein-coding 1.318 2.076
283629 TSSK4 testis specific serine kinase 4 protein-coding 3.315 1.131
-283635 FAM177A1 family with sequence similarity 177 member A1 protein-coding 9.827 0.6927
+283635 FAM177A1 family with sequence similarity 177 member A1 protein-coding 9.828 0.6926
283638 CEP170B centrosomal protein 170B protein-coding 10.5 1.053
-283643 TEDC1 tubulin epsilon and delta complex 1 protein-coding 7.803 1.143
-283651 HMGN2P46 high mobility group nucleosomal binding domain 2 pseudogene 46 pseudo 5.704 1.723
+283643 TEDC1 tubulin epsilon and delta complex 1 protein-coding 7.802 1.142
+283651 HMGN2P46 high mobility group nucleosomal binding domain 2 pseudogene 46 pseudo 5.706 1.724
283652 SLC24A5 solute carrier family 24 member 5 protein-coding 3.159 2.179
-283659 PRTG protogenin protein-coding 5.007 2.23
-283663 LINC00926 long intergenic non-protein coding RNA 926 ncRNA 4.738 1.434
-283687 ST20-AS1 ST20 antisense RNA 1 ncRNA 5.817 0.8931
-283726 SAXO2 stabilizer of axonemal microtubules 2 protein-coding 3.993 1.775
-283742 FAM98B family with sequence similarity 98 member B protein-coding 8.157 0.7183
-283796 GOLGA8IP golgin A8 family member I, pseudogene pseudo 1.058 1.111
-2838 GPR15 G protein-coupled receptor 15 protein-coding 1.52 1.717
-283807 FBXL22 F-box and leucine rich repeat protein 22 protein-coding 4.414 1.305
-283820 NOMO2 NODAL modulator 2 protein-coding 10.55 0.9168
-283848 CES4A carboxylesterase 4A protein-coding 5.75 1.78
+283659 PRTG protogenin protein-coding 5.01 2.231
+283663 LINC00926 long intergenic non-protein coding RNA 926 ncRNA 4.739 1.435
+283687 ST20-AS1 ST20 antisense RNA 1 ncRNA 5.818 0.8933
+283726 SAXO2 stabilizer of axonemal microtubules 2 protein-coding 3.994 1.775
+283742 FAM98B family with sequence similarity 98 member B protein-coding 8.157 0.718
+283796 GOLGA8IP golgin A8 family member I, pseudogene pseudo 1.059 1.112
+2838 GPR15 G protein-coupled receptor 15 protein-coding 1.52 1.718
+283807 FBXL22 F-box and leucine rich repeat protein 22 protein-coding 4.416 1.306
+283820 NOMO2 NODAL modulator 2 protein-coding 10.54 0.917
+283848 CES4A carboxylesterase 4A protein-coding 5.751 1.78
283849 EXOC3L1 exocyst complex component 3 like 1 protein-coding 6.178 1.137
-283869 NPW neuropeptide W protein-coding 3.115 2.332
+283869 NPW neuropeptide W protein-coding 3.113 2.332
283870 BRICD5 BRICHOS domain containing 5 protein-coding 4.815 1.482
-283871 PGP phosphoglycolate phosphatase protein-coding 8.836 0.7528
-283897 C16orf54 chromosome 16 open reading frame 54 protein-coding 5.276 1.756
-283899 INO80E INO80 complex subunit E protein-coding 9.573 0.5788
-283922 LOC283922 pyruvate dehydrogenase phosphatase regulatory subunit pseudogene pseudo 5.275 1.043
-283927 NUDT7 nudix hydrolase 7 protein-coding 6.265 1.288
+283871 PGP phosphoglycolate phosphatase protein-coding 8.836 0.7527
+283897 C16orf54 chromosome 16 open reading frame 54 protein-coding 5.278 1.757
+283899 INO80E INO80 complex subunit E protein-coding 9.572 0.5786
+283922 LOC283922 pyruvate dehydrogenase phosphatase regulatory subunit pseudogene pseudo 5.276 1.043
+283927 NUDT7 nudix hydrolase 7 protein-coding 6.266 1.287
283932 FBXL19-AS1 FBXL19 antisense RNA 1 ncRNA 5.503 1.129
-283933 ZNF843 zinc finger protein 843 protein-coding 3.022 1.308
-283948 NHLRC4 NHL repeat containing 4 protein-coding 4.338 1.709
-283951 C16orf91 chromosome 16 open reading frame 91 protein-coding 7.895 0.614
-283970 PDXDC2P-NPIPB14P nuclear pore complex-interacting protein pseudo 7.791 1.134
-283971 CLEC18C C-type lectin domain family 18 member C protein-coding 1.809 2.198
-283981 LINC00685 long intergenic non-protein coding RNA 685 ncRNA 3.515 1.219
-283987 HID1 HID1 domain containing protein-coding 9.381 2.102
-283989 TSEN54 tRNA splicing endonuclease subunit 54 protein-coding 9.125 0.7444
-283991 UBALD2 UBA like domain containing 2 protein-coding 10 0.8958
-284 ANGPT1 angiopoietin 1 protein-coding 6.092 1.915
-2840 GPR17 G protein-coupled receptor 17 protein-coding 2.97 2.506
-284001 CCDC57 coiled-coil domain containing 57 protein-coding 8.66 0.9188
-284004 HEXDC hexosaminidase D protein-coding 8.553 0.9764
-284009 LOC284009 uncharacterized LOC284009 ncRNA 0.7824 0.7312
+283933 ZNF843 zinc finger protein 843 protein-coding 3.022 1.307
+283948 NHLRC4 NHL repeat containing 4 protein-coding 4.339 1.709
+283951 C16orf91 chromosome 16 open reading frame 91 protein-coding 7.894 0.6142
+283970 PDXDC2P-NPIPB14P nuclear pore complex-interacting protein pseudo 7.792 1.133
+283971 CLEC18C C-type lectin domain family 18 member C protein-coding 1.809 2.197
+283981 LINC00685 long intergenic non-protein coding RNA 685 ncRNA 3.516 1.218
+283987 HID1 HID1 domain containing protein-coding 9.382 2.102
+283989 TSEN54 tRNA splicing endonuclease subunit 54 protein-coding 9.125 0.7445
+283991 UBALD2 UBA like domain containing 2 protein-coding 10 0.8956
+284 ANGPT1 angiopoietin 1 protein-coding 6.094 1.915
+2840 GPR17 G protein-coupled receptor 17 protein-coding 2.971 2.506
+284001 CCDC57 coiled-coil domain containing 57 protein-coding 8.661 0.9186
+284004 HEXDC hexosaminidase D protein-coding 8.554 0.9763
+284009 LOC284009 uncharacterized LOC284009 ncRNA 0.7827 0.7317
284013 VMO1 vitelline membrane outer layer 1 homolog protein-coding 5.177 1.504
-284018 C17orf58 chromosome 17 open reading frame 58 protein-coding 7.885 0.8644
+284018 C17orf58 chromosome 17 open reading frame 58 protein-coding 7.884 0.8643
284021 MILR1 mast cell immunoglobulin like receptor 1 protein-coding 3.934 1.504
-284023 RNF227 ring finger protein 227 protein-coding 6.747 0.8798
-284029 LINC00324 long intergenic non-protein coding RNA 324 ncRNA 5.575 0.9951
-284040 CDRT4 CMT1A duplicated region transcript 4 protein-coding 7.639 1.032
-284047 CCDC144B coiled-coil domain containing 144B (pseudogene) pseudo 3.664 1.872
-284058 KANSL1 KAT8 regulatory NSL complex subunit 1 protein-coding 10.05 0.5707
-284069 FAM171A2 family with sequence similarity 171 member A2 protein-coding 5.943 2.093
-284071 MEIOC meiosis specific with coiled-coil domain protein-coding 3.656 1.258
-284076 TTLL6 tubulin tyrosine ligase like 6 protein-coding 2.661 2.311
-284083 C17orf47 chromosome 17 open reading frame 47 protein-coding 1.643 0.9802
+284023 RNF227 ring finger protein 227 protein-coding 6.747 0.8795
+284029 LINC00324 long intergenic non-protein coding RNA 324 ncRNA 5.575 0.9949
+284040 CDRT4 CMT1A duplicated region transcript 4 protein-coding 7.64 1.032
+284047 CCDC144B coiled-coil domain containing 144B (pseudogene) pseudo 3.665 1.872
+284058 KANSL1 KAT8 regulatory NSL complex subunit 1 protein-coding 10.06 0.5707
+284069 FAM171A2 family with sequence similarity 171 member A2 protein-coding 5.943 2.092
+284071 MEIOC meiosis specific with coiled-coil domain protein-coding 3.655 1.258
+284076 TTLL6 tubulin tyrosine ligase like 6 protein-coding 2.663 2.311
+284083 C17orf47 chromosome 17 open reading frame 47 protein-coding 1.643 0.9801
284086 NEK8 NIMA related kinase 8 protein-coding 6.737 0.9985
-284098 PIGW phosphatidylinositol glycan anchor biosynthesis class W protein-coding 7.744 0.6854
+284098 PIGW phosphatidylinositol glycan anchor biosynthesis class W protein-coding 7.744 0.6855
284099 C17orf78 chromosome 17 open reading frame 78 protein-coding 0.4978 1.021
-2841 GPR18 G protein-coupled receptor 18 protein-coding 3.106 1.582
+2841 GPR18 G protein-coupled receptor 18 protein-coding 3.107 1.582
284100 YWHAEP7 tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein epsilon pseudogene 7 pseudo 1.448 1.413
-284106 CISD3 CDGSH iron sulfur domain 3 protein-coding 9.853 0.8504
+284106 CISD3 CDGSH iron sulfur domain 3 protein-coding 9.852 0.8501
284110 GSDMA gasdermin A protein-coding 3.591 2.123
-284111 SLC13A5 solute carrier family 13 member 5 protein-coding 2.718 3.117
+284111 SLC13A5 solute carrier family 13 member 5 protein-coding 2.718 3.116
284114 TMEM102 transmembrane protein 102 protein-coding 7.486 1.125
284119 CAVIN1 caveolae associated protein 1 protein-coding 12 1.346
-284129 SLC26A11 solute carrier family 26 member 11 protein-coding 8.601 0.9778
-284131 ENDOV endonuclease V protein-coding 7.719 0.9633
-284161 GDPD1 glycerophosphodiester phosphodiesterase domain containing 1 protein-coding 5.305 1.527
-284184 NDUFAF8 NADH:ubiquinone oxidoreductase complex assembly factor 8 protein-coding 8.421 0.8623
-284185 LINC00482 long intergenic non-protein coding RNA 482 ncRNA 3.539 2.1
-284186 TMEM105 transmembrane protein 105 protein-coding 2.733 2.108
-284194 LGALS9B galectin 9B protein-coding 1.58 2.14
-2842 GPR19 G protein-coupled receptor 19 protein-coding 4.343 1.902
+284129 SLC26A11 solute carrier family 26 member 11 protein-coding 8.602 0.9781
+284131 ENDOV endonuclease V protein-coding 7.719 0.963
+284161 GDPD1 glycerophosphodiester phosphodiesterase domain containing 1 protein-coding 5.306 1.526
+284184 NDUFAF8 NADH:ubiquinone oxidoreductase complex assembly factor 8 protein-coding 8.42 0.8624
+284185 LINC00482 long intergenic non-protein coding RNA 482 ncRNA 3.54 2.1
+284186 TMEM105 transmembrane protein 105 protein-coding 2.733 2.107
+284194 LGALS9B galectin 9B protein-coding 1.58 2.139
+2842 GPR19 G protein-coupled receptor 19 protein-coding 4.342 1.902
284207 METRNL meteorin like, glial cell differentiation regulator protein-coding 9.053 1.349
284232 ANKRD20A9P ankyrin repeat domain 20 family member A9, pseudogene pseudo 3.346 1.019
-284233 CYP4F35P cytochrome P450 family 4 subfamily F member 35, pseudogene pseudo 2.893 2.052
-284252 KCTD1 potassium channel tetramerization domain containing 1 protein-coding 8.839 1.327
-284266 SIGLEC15 sialic acid binding Ig like lectin 15 protein-coding 2.57 1.972
-284273 ZADH2 zinc binding alcohol dehydrogenase domain containing 2 protein-coding 9.432 0.6747
-284276 LINC00908 long intergenic non-protein coding RNA 908 ncRNA 2.49 2.011
-284297 SSC5D scavenger receptor cysteine rich family member with 5 domains protein-coding 7.518 1.952
-2843 GPR20 G protein-coupled receptor 20 protein-coding 1.932 1.403
-284306 ZNF547 zinc finger protein 547 protein-coding 5.515 0.9987
-284307 ZIK1 zinc finger protein interacting with K protein 1 protein-coding 5.436 1.822
-284309 ZNF776 zinc finger protein 776 protein-coding 8.349 0.8572
+284233 CYP4F35P cytochrome P450 family 4 subfamily F member 35, pseudogene pseudo 2.895 2.052
+284252 KCTD1 potassium channel tetramerization domain containing 1 protein-coding 8.838 1.327
+284266 SIGLEC15 sialic acid binding Ig like lectin 15 protein-coding 2.57 1.973
+284273 ZADH2 zinc binding alcohol dehydrogenase domain containing 2 protein-coding 9.433 0.6745
+284276 LINC00908 long intergenic non-protein coding RNA 908 ncRNA 2.492 2.011
+284297 SSC5D scavenger receptor cysteine rich family member with 5 domains protein-coding 7.52 1.952
+2843 GPR20 G protein-coupled receptor 20 protein-coding 1.933 1.404
+284306 ZNF547 zinc finger protein 547 protein-coding 5.515 0.9986
+284307 ZIK1 zinc finger protein interacting with K protein 1 protein-coding 5.438 1.822
+284309 ZNF776 zinc finger protein 776 protein-coding 8.35 0.8571
284323 ZNF780A zinc finger protein 780A protein-coding 8.064 0.5938
-284325 C19orf54 chromosome 19 open reading frame 54 protein-coding 8.369 0.676
-284338 PRR19 proline rich 19 protein-coding 5.212 1.205
-284340 CXCL17 C-X-C motif chemokine ligand 17 protein-coding 5.283 4.347
-284346 ZNF575 zinc finger protein 575 protein-coding 5.322 0.772
-284348 LYPD5 LY6/PLAUR domain containing 5 protein-coding 5.959 1.807
-284349 ZNF283 zinc finger protein 283 protein-coding 5.599 0.7362
+284325 C19orf54 chromosome 19 open reading frame 54 protein-coding 8.369 0.6758
+284338 PRR19 proline rich 19 protein-coding 5.211 1.205
+284340 CXCL17 C-X-C motif chemokine ligand 17 protein-coding 5.284 4.346
+284346 ZNF575 zinc finger protein 575 protein-coding 5.323 0.772
+284348 LYPD5 LY6/PLAUR domain containing 5 protein-coding 5.958 1.806
+284349 ZNF283 zinc finger protein 283 protein-coding 5.6 0.7359
284353 NKPD1 NTPase KAP family P-loop domain containing 1 protein-coding 3.671 1.718
-284358 MAMSTR MEF2 activating motif and SAP domain containing transcriptional regulator protein-coding 4.905 1.446
-284361 EMC10 ER membrane protein complex subunit 10 protein-coding 11.89 0.7823
-284367 SIGLEC17P sialic acid binding Ig like lectin 17, pseudogene pseudo 2.639 1.545
-284370 ZNF615 zinc finger protein 615 protein-coding 7.475 1.178
-284371 ZNF841 zinc finger protein 841 protein-coding 7.69 0.8984
-284390 ZNF763 zinc finger protein 763 protein-coding 5.647 1.134
-284391 ZNF844 zinc finger protein 844 protein-coding 6.745 1.548
+284358 MAMSTR MEF2 activating motif and SAP domain containing transcriptional regulator protein-coding 4.905 1.445
+284361 EMC10 ER membrane protein complex subunit 10 protein-coding 11.89 0.7824
+284367 SIGLEC17P sialic acid binding Ig like lectin 17, pseudogene pseudo 2.64 1.546
+284370 ZNF615 zinc finger protein 615 protein-coding 7.476 1.178
+284371 ZNF841 zinc finger protein 841 protein-coding 7.69 0.8983
+284390 ZNF763 zinc finger protein 763 protein-coding 5.648 1.134
+284391 ZNF844 zinc finger protein 844 protein-coding 6.747 1.548
2844 GPR21 G protein-coupled receptor 21 protein-coding 1.53 1.223
-284403 WDR62 WD repeat domain 62 protein-coding 7.204 1.77
-284406 ZFP82 ZFP82 zinc finger protein protein-coding 5.942 1.488
-284415 VSTM1 V-set and transmembrane domain containing 1 protein-coding 0.6946 1.029
-284417 TMEM150B transmembrane protein 150B protein-coding 3.546 2.179
-284422 SMIM24 small integral membrane protein 24 protein-coding 4.502 3.534
-284427 SLC25A41 solute carrier family 25 member 41 protein-coding 2.115 1.496
-284434 NWD1 NACHT and WD repeat domain containing 1 protein-coding 4.297 2.983
+284403 WDR62 WD repeat domain 62 protein-coding 7.203 1.771
+284406 ZFP82 ZFP82 zinc finger protein protein-coding 5.942 1.487
+284415 VSTM1 V-set and transmembrane domain containing 1 protein-coding 0.6942 1.028
+284417 TMEM150B transmembrane protein 150B protein-coding 3.546 2.18
+284422 SMIM24 small integral membrane protein 24 protein-coding 4.501 3.534
+284427 SLC25A41 solute carrier family 25 member 41 protein-coding 2.115 1.495
+284434 NWD1 NACHT and WD repeat domain containing 1 protein-coding 4.299 2.984
284439 SLC25A42 solute carrier family 25 member 42 protein-coding 8.206 1.276
-284440 LINC00663 long intergenic non-protein coding RNA 663 ncRNA 6.217 1.3
-284441 LOC284441 actin-related protein 2 pseudogene pseudo 6.239 1.22
-284443 ZNF493 zinc finger protein 493 protein-coding 7.094 1.438
+284440 LINC00663 long intergenic non-protein coding RNA 663 ncRNA 6.218 1.3
+284441 LOC284441 actin-related protein 2 pseudogene pseudo 6.239 1.219
+284443 ZNF493 zinc finger protein 493 protein-coding 7.095 1.437
284459 HKR1 HKR1, GLI-Kruppel zinc finger family member protein-coding 9.254 0.878
-284467 FAM19A3 family with sequence similarity 19 member A3, C-C motif chemokine like protein-coding 1.899 1.784
-284486 THEM5 thioesterase superfamily member 5 protein-coding 2.299 1.853
-2845 GPR22 G protein-coupled receptor 22 protein-coding 1.049 1.681
+284467 FAM19A3 family with sequence similarity 19 member A3, C-C motif chemokine like protein-coding 1.9 1.785
+284486 THEM5 thioesterase superfamily member 5 protein-coding 2.298 1.852
+2845 GPR22 G protein-coupled receptor 22 protein-coding 1.051 1.683
284565 NBPF15 NBPF member 15 protein-coding 7.552 1.133
-284578 LOC284578 uncharacterized LOC284578 ncRNA 2.482 1.98
-284593 FAM41C family with sequence similarity 41 member C ncRNA 3.726 0.8921
-2846 LPAR4 lysophosphatidic acid receptor 4 protein-coding 2.04 1.612
-284611 FAM102B family with sequence similarity 102 member B protein-coding 8.773 1.143
-284612 SYPL2 synaptophysin like 2 protein-coding 4.81 2.111
+284578 LOC284578 uncharacterized LOC284578 ncRNA 2.483 1.98
+284593 FAM41C family with sequence similarity 41 member C ncRNA 3.726 0.8917
+2846 LPAR4 lysophosphatidic acid receptor 4 protein-coding 2.04 1.611
+284611 FAM102B family with sequence similarity 102 member B protein-coding 8.774 1.143
+284612 SYPL2 synaptophysin like 2 protein-coding 4.811 2.111
284613 CYB561D1 cytochrome b561 family member D1 protein-coding 8.199 0.7648
-284615 ANKRD34A ankyrin repeat domain 34A protein-coding 4.709 1.294
+284615 ANKRD34A ankyrin repeat domain 34A protein-coding 4.71 1.294
284618 RUSC1-AS1 RUSC1 antisense RNA 1 ncRNA 5.798 1.055
-284654 RSPO1 R-spondin 1 protein-coding 2.417 2.204
-284656 EPHA10 EPH receptor A10 protein-coding 5.34 2.644
-284677 SNHG28 small nucleolar RNA host gene 28 ncRNA 5.009 1.294
-284695 ZNF326 zinc finger protein 326 protein-coding 8.715 0.6007
-284697 BTBD8 BTB domain containing 8 protein-coding 2.394 1.344
-2847 MCHR1 melanin concentrating hormone receptor 1 protein-coding 3.266 2.441
-284716 RIMKLA ribosomal modification protein rimK like family member A protein-coding 6.306 2.284
-284723 SLC25A34 solute carrier family 25 member 34 protein-coding 4.785 1.366
+284654 RSPO1 R-spondin 1 protein-coding 2.419 2.205
+284656 EPHA10 EPH receptor A10 protein-coding 5.34 2.643
+284677 SNHG28 small nucleolar RNA host gene 28 ncRNA 5.01 1.294
+284695 ZNF326 zinc finger protein 326 protein-coding 8.715 0.6005
+284697 BTBD8 BTB domain containing 8 protein-coding 2.395 1.344
+2847 MCHR1 melanin concentrating hormone receptor 1 protein-coding 3.266 2.44
+284716 RIMKLA ribosomal modification protein rimK like family member A protein-coding 6.308 2.283
+284723 SLC25A34 solute carrier family 25 member 34 protein-coding 4.786 1.366
284729 ESPNP espin pseudogene pseudo 1.417 1.396
-284739 C20orf204 chromosome 20 open reading frame 204 protein-coding 4.375 1.617
+284739 C20orf204 chromosome 20 open reading frame 204 protein-coding 4.375 1.616
284749 LINC00494 long intergenic non-protein coding RNA 494 ncRNA 2.319 2.133
-284756 C20orf197 chromosome 20 open reading frame 197 protein-coding 2.304 1.596
-284759 SIRPB2 signal regulatory protein beta 2 protein-coding 5.101 1.57
-2848 GPR25 G protein-coupled receptor 25 protein-coding 1.124 1.354
-284802 FRG1BP FSHD region gene 1 family member B, pseudogene pseudo 7.694 0.8411
-284805 C20orf203 chromosome 20 open reading frame 203 protein-coding 1.572 1.439
+284756 C20orf197 chromosome 20 open reading frame 197 protein-coding 2.305 1.596
+284759 SIRPB2 signal regulatory protein beta 2 protein-coding 5.102 1.571
+2848 GPR25 G protein-coupled receptor 25 protein-coding 1.126 1.354
+284802 FRG1BP FSHD region gene 1 family member B, pseudogene pseudo 7.694 0.841
+284805 C20orf203 chromosome 20 open reading frame 203 protein-coding 1.573 1.439
284836 LINC00319 long intergenic non-protein coding RNA 319 ncRNA 3.226 2.057
-284837 AATBC apoptosis associated transcript in bladder cancer ncRNA 4.715 2.015
-284900 TTC28-AS1 TTC28 antisense RNA 1 ncRNA 7.372 0.8492
-284904 SEC14L4 SEC14 like lipid binding 4 protein-coding 2.556 2.478
-284942 RPL23AP82 ribosomal protein L23a pseudogene 82 pseudo 6.803 0.693
-284992 CCDC150 coiled-coil domain containing 150 protein-coding 4.759 1.833
-284996 RNF149 ring finger protein 149 protein-coding 10.05 0.8566
-285 ANGPT2 angiopoietin 2 protein-coding 7.737 1.571
-2850 GPR27 G protein-coupled receptor 27 protein-coding 2.658 2.026
-285016 ALKAL2 ALK and LTK ligand 2 protein-coding 3.215 2.462
-285025 CCDC141 coiled-coil domain containing 141 protein-coding 3.093 1.811
-285033 STARD7-AS1 STARD7 antisense RNA 1 ncRNA 5.119 0.6073
-285051 STPG4 sperm-tail PG-rich repeat containing 4 protein-coding 0.6273 0.7781
+284837 AATBC apoptosis associated transcript in bladder cancer ncRNA 4.715 2.014
+284900 TTC28-AS1 TTC28 antisense RNA 1 ncRNA 7.372 0.8488
+284904 SEC14L4 SEC14 like lipid binding 4 protein-coding 2.557 2.478
+284942 RPL23AP82 ribosomal protein L23a pseudogene 82 pseudo 6.802 0.6928
+284992 CCDC150 coiled-coil domain containing 150 protein-coding 4.757 1.834
+284996 RNF149 ring finger protein 149 protein-coding 10.05 0.8564
+285 ANGPT2 angiopoietin 2 protein-coding 7.736 1.571
+2850 GPR27 G protein-coupled receptor 27 protein-coding 2.66 2.026
+285016 ALKAL2 ALK and LTK ligand 2 protein-coding 3.216 2.462
+285025 CCDC141 coiled-coil domain containing 141 protein-coding 3.095 1.812
+285033 STARD7-AS1 STARD7 antisense RNA 1 ncRNA 5.119 0.6072
+285051 STPG4 sperm-tail PG-rich repeat containing 4 protein-coding 0.6273 0.778
285074 LOC285074 anaphase promoting complex subunit 1 pseudogene pseudo 7.727 0.6532
-28511 NKIRAS2 NFKB inhibitor interacting Ras like 2 protein-coding 10.06 0.5555
-28512 NKIRAS1 NFKB inhibitor interacting Ras like 1 protein-coding 7.523 0.8601
-28514 DLL1 delta like canonical Notch ligand 1 protein-coding 7.567 1.693
-285148 IAH1 isoamyl acetate hydrolyzing esterase 1 (putative) protein-coding 9.256 0.5685
-285154 CYP1B1-AS1 CYP1B1 antisense RNA 1 ncRNA 2.337 1.459
-285172 FAM126B family with sequence similarity 126 member B protein-coding 8.715 0.7056
-285175 UNC80 unc-80 homolog, NALCN channel complex subunit protein-coding 3.265 3.178
+28511 NKIRAS2 NFKB inhibitor interacting Ras like 2 protein-coding 10.06 0.5554
+28512 NKIRAS1 NFKB inhibitor interacting Ras like 1 protein-coding 7.524 0.8599
+28514 DLL1 delta like canonical Notch ligand 1 protein-coding 7.568 1.692
+285148 IAH1 isoamyl acetate hydrolyzing esterase 1 (putative) protein-coding 9.256 0.5683
+285154 CYP1B1-AS1 CYP1B1 antisense RNA 1 ncRNA 2.338 1.459
+285172 FAM126B family with sequence similarity 126 member B protein-coding 8.715 0.7055
+285175 UNC80 unc-80 homolog, NALCN channel complex subunit protein-coding 3.269 3.179
285180 RUFY4 RUN and FYVE domain containing 4 protein-coding 3.156 1.865
-285190 RGPD4 RANBP2-like and GRIP domain containing 4 protein-coding 7.052 0.7579
-285193 DUSP28 dual specificity phosphatase 28 protein-coding 6.514 0.6373
-285195 SLC9A9 solute carrier family 9 member A9 protein-coding 7.041 1.655
-2852 GPER1 G protein-coupled estrogen receptor 1 protein-coding 6.406 1.905
-285203 EOGT EGF domain specific O-linked N-acetylglucosamine transferase protein-coding 8.56 0.8938
-285237 C3orf38 chromosome 3 open reading frame 38 protein-coding 8.541 0.5345
-285242 HTR3E 5-hydroxytryptamine receptor 3E protein-coding 0.5205 1.031
-285267 ZNF619 zinc finger protein 619 protein-coding 5.601 0.9208
-285268 ZNF621 zinc finger protein 621 protein-coding 9.033 0.7342
+285190 RGPD4 RANBP2-like and GRIP domain containing 4 protein-coding 7.053 0.7578
+285193 DUSP28 dual specificity phosphatase 28 protein-coding 6.514 0.6371
+285195 SLC9A9 solute carrier family 9 member A9 protein-coding 7.042 1.655
+2852 GPER1 G protein-coupled estrogen receptor 1 protein-coding 6.408 1.905
+285203 EOGT EGF domain specific O-linked N-acetylglucosamine transferase protein-coding 8.561 0.8939
+285237 C3orf38 chromosome 3 open reading frame 38 protein-coding 8.541 0.5343
+285242 HTR3E 5-hydroxytryptamine receptor 3E protein-coding 0.5218 1.033
+285267 ZNF619 zinc finger protein 619 protein-coding 5.601 0.9207
+285268 ZNF621 zinc finger protein 621 protein-coding 9.033 0.734
285282 RABL3 RAB, member of RAS oncogene family like 3 protein-coding 9.028 0.5776
-285313 IGSF10 immunoglobulin superfamily member 10 protein-coding 4.49 2.342
-285315 C3orf33 chromosome 3 open reading frame 33 protein-coding 6.72 0.8832
-285331 CCDC66 coiled-coil domain containing 66 protein-coding 7.611 0.7432
-285335 SLC9C1 solute carrier family 9 member C1 protein-coding 0.9234 0.9651
-285343 TCAIM T cell activation inhibitor, mitochondrial protein-coding 9.017 0.6708
-285349 ZNF660 zinc finger protein 660 protein-coding 3.2 1.536
-285359 PDCL3P4 phosducin-like 3 pseudogene 4 pseudo 6.131 0.6846
-285362 SUMF1 sulfatase modifying factor 1 protein-coding 9.74 0.8195
-285367 RPUSD3 RNA pseudouridylate synthase domain containing 3 protein-coding 8.944 0.6625
-285368 PRRT3 proline rich transmembrane protein 3 protein-coding 6.738 1.412
-285381 DPH3 diphthamide biosynthesis 3 protein-coding 9.145 0.5418
-285382 C3orf70 chromosome 3 open reading frame 70 protein-coding 6.506 2.029
-285386 TPRG1 tumor protein p63 regulated 1 protein-coding 4.956 2.299
-285419 LINC01091 long intergenic non-protein coding RNA 1091 ncRNA 1.912 1.454
-285429 DCAF4L1 DDB1 and CUL4 associated factor 4 like 1 protein-coding 2.961 1.287
-285440 CYP4V2 cytochrome P450 family 4 subfamily V member 2 protein-coding 9.133 1.216
+285313 IGSF10 immunoglobulin superfamily member 10 protein-coding 4.492 2.343
+285315 C3orf33 chromosome 3 open reading frame 33 protein-coding 6.72 0.8831
+285331 CCDC66 coiled-coil domain containing 66 protein-coding 7.612 0.7432
+285335 SLC9C1 solute carrier family 9 member C1 protein-coding 0.924 0.9652
+285343 TCAIM T cell activation inhibitor, mitochondrial protein-coding 9.018 0.6707
+285349 ZNF660 zinc finger protein 660 protein-coding 3.201 1.536
+285359 PDCL3P4 phosducin-like 3 pseudogene 4 pseudo 6.131 0.6843
+285362 SUMF1 sulfatase modifying factor 1 protein-coding 9.74 0.8192
+285367 RPUSD3 RNA pseudouridylate synthase domain containing 3 protein-coding 8.944 0.6624
+285368 PRRT3 proline rich transmembrane protein 3 protein-coding 6.739 1.412
+285381 DPH3 diphthamide biosynthesis 3 protein-coding 9.146 0.5417
+285382 C3orf70 chromosome 3 open reading frame 70 protein-coding 6.507 2.029
+285386 TPRG1 tumor protein p63 regulated 1 protein-coding 4.956 2.298
+285419 LINC01091 long intergenic non-protein coding RNA 1091 ncRNA 1.913 1.454
+285429 DCAF4L1 DDB1 and CUL4 associated factor 4 like 1 protein-coding 2.962 1.289
+285440 CYP4V2 cytochrome P450 family 4 subfamily V member 2 protein-coding 9.134 1.216
285456 RPL34-AS1 RPL34 antisense RNA 1 (head to head) ncRNA 1.079 1.002
-285464 CRIPAK cysteine rich PAK1 inhibitor protein-coding 7.661 0.853
-285489 DOK7 docking protein 7 protein-coding 4.966 2.269
-285498 RNF212 ring finger protein 212 protein-coding 4.133 2.596
-285512 FAM13A-AS1 FAM13A antisense RNA 1 ncRNA 5.162 1.232
+285464 CRIPAK cysteine rich PAK1 inhibitor protein-coding 7.662 0.8529
+285489 DOK7 docking protein 7 protein-coding 4.966 2.268
+285498 RNF212 ring finger protein 212 protein-coding 4.134 2.595
+285512 FAM13A-AS1 FAM13A antisense RNA 1 ncRNA 5.163 1.233
285513 GPRIN3 GPRIN family member 3 protein-coding 6.229 1.732
-285521 COX18 COX18, cytochrome c oxidase assembly factor protein-coding 8.562 0.5827
-285527 FRYL FRY like transcription coactivator protein-coding 10.02 0.7436
+285521 COX18 COX18, cytochrome c oxidase assembly factor protein-coding 8.562 0.5825
+285527 FRYL FRY like transcription coactivator protein-coding 10.02 0.7434
285533 RNF175 ring finger protein 175 protein-coding 3.524 1.818
-285550 FAM200B family with sequence similarity 200 member B protein-coding 8.575 0.6731
-285555 STPG2 sperm tail PG-rich repeat containing 2 protein-coding 0.6145 0.6419
+285550 FAM200B family with sequence similarity 200 member B protein-coding 8.575 0.6729
+285555 STPG2 sperm tail PG-rich repeat containing 2 protein-coding 0.6148 0.6423
285590 SH3PXD2B SH3 and PX domains 2B protein-coding 10.04 1.154
-285593 LOC285593 uncharacterized LOC285593 ncRNA 1.832 1.201
-285596 FAM153A family with sequence similarity 153 member A protein-coding 2.434 2.115
-285598 ARL10 ADP ribosylation factor like GTPase 10 protein-coding 4.601 1.501
-285600 KIAA0825 KIAA0825 protein-coding 5.137 1.136
-285605 DTWD2 DTW domain containing 2 protein-coding 7.292 0.8671
-285613 RELL2 RELT like 2 protein-coding 6.174 1.254
-285636 C5orf51 chromosome 5 open reading frame 51 protein-coding 9.743 0.5718
-285643 KIF4B kinesin family member 4B protein-coding 2.9 1.428
-285671 RNF180 ring finger protein 180 protein-coding 6.315 2.089
-285672 SREK1IP1 SREK1 interacting protein 1 protein-coding 9.133 0.6031
-285676 ZNF454 zinc finger protein 454 protein-coding 3.392 1.741
-2857 GPR34 G protein-coupled receptor 34 protein-coding 6.405 1.728
-285704 RGMB repulsive guidance molecule BMP co-receptor b protein-coding 9.215 1.165
-285753 CEP57L1 centrosomal protein 57 like 1 protein-coding 6.872 0.7205
+285593 LOC285593 uncharacterized LOC285593 ncRNA 1.832 1.2
+285596 FAM153A family with sequence similarity 153 member A protein-coding 2.437 2.117
+285598 ARL10 ADP ribosylation factor like GTPase 10 protein-coding 4.602 1.501
+285600 KIAA0825 KIAA0825 protein-coding 5.138 1.135
+285605 DTWD2 DTW domain containing 2 protein-coding 7.292 0.8669
+285613 RELL2 RELT like 2 protein-coding 6.174 1.253
+285636 C5orf51 chromosome 5 open reading frame 51 protein-coding 9.743 0.5716
+285643 KIF4B kinesin family member 4B protein-coding 2.898 1.428
+285671 RNF180 ring finger protein 180 protein-coding 6.317 2.089
+285672 SREK1IP1 SREK1 interacting protein 1 protein-coding 9.133 0.6029
+285676 ZNF454 zinc finger protein 454 protein-coding 3.393 1.741
+2857 GPR34 G protein-coupled receptor 34 protein-coding 6.406 1.728
+285704 RGMB repulsive guidance molecule BMP co-receptor b protein-coding 9.216 1.166
+285753 CEP57L1 centrosomal protein 57 like 1 protein-coding 6.872 0.7203
285755 PPIL6 peptidylprolyl isomerase like 6 protein-coding 5.744 1.514
285761 DCBLD1 discoidin, CUB and LCCL domain containing 1 protein-coding 8.329 1.131
-285782 CAGE1 cancer antigen 1 protein-coding 1.055 1.091
-285830 HLA-F-AS1 HLA-F antisense RNA 1 ncRNA 4.918 1.278
-285848 PNPLA1 patatin like phospholipase domain containing 1 protein-coding 1.797 1.74
-285855 RPL7L1 ribosomal protein L7 like 1 protein-coding 9.832 0.5677
-2859 GPR35 G protein-coupled receptor 35 protein-coding 5.946 2.186
+285782 CAGE1 cancer antigen 1 protein-coding 1.054 1.091
+285830 HLA-F-AS1 HLA-F antisense RNA 1 ncRNA 4.919 1.278
+285848 PNPLA1 patatin like phospholipase domain containing 1 protein-coding 1.796 1.739
+285855 RPL7L1 ribosomal protein L7 like 1 protein-coding 9.832 0.5675
+2859 GPR35 G protein-coupled receptor 35 protein-coding 5.947 2.186
285905 INTS4P1 integrator complex subunit 4 pseudogene 1 pseudo 4.296 1.08
-285908 LINC00174 long intergenic non-protein coding RNA 174 ncRNA 7.268 1.065
-285954 INHBA-AS1 INHBA antisense RNA 1 ncRNA 1.542 1.393
+285908 LINC00174 long intergenic non-protein coding RNA 174 ncRNA 7.269 1.065
+285954 INHBA-AS1 INHBA antisense RNA 1 ncRNA 1.542 1.392
285955 SPDYE1 speedy/RINGO cell cycle regulator family member E1 protein-coding 3.124 0.9323
-285958 SNHG15 small nucleolar RNA host gene 15 ncRNA 8.473 1.018
-285961 SEPT7P9 septin 7 pseudogene 9 pseudo 0.6815 0.6372
-285962 WEE2-AS1 WEE2 antisense RNA 1 ncRNA 4.457 1.312
-285966 TCAF2 TRPM8 channel associated factor 2 protein-coding 7.466 1.404
-285971 ZNF775 zinc finger protein 775 protein-coding 6.685 1.144
-285973 ATG9B autophagy related 9B protein-coding 5.257 1.938
-285989 ZNF789 zinc finger protein 789 protein-coding 6.535 0.9138
-286 ANK1 ankyrin 1 protein-coding 5.315 2.254
-286002 SLC26A4-AS1 SLC26A4 antisense RNA 1 ncRNA 2.6 3.051
+285958 SNHG15 small nucleolar RNA host gene 15 ncRNA 8.472 1.018
+285961 SEPT7P9 septin 7 pseudogene 9 pseudo 0.6813 0.6373
+285962 WEE2-AS1 WEE2 antisense RNA 1 ncRNA 4.458 1.312
+285966 TCAF2 TRPM8 channel associated factor 2 protein-coding 7.467 1.404
+285971 ZNF775 zinc finger protein 775 protein-coding 6.685 1.143
+285973 ATG9B autophagy related 9B protein-coding 5.257 1.937
+285989 ZNF789 zinc finger protein 789 protein-coding 6.536 0.9137
+286 ANK1 ankyrin 1 protein-coding 5.316 2.254
+286002 SLC26A4-AS1 SLC26A4 antisense RNA 1 ncRNA 2.602 3.053
286006 LSMEM1 leucine rich single-pass membrane protein 1 protein-coding 4.126 1.096
-286016 TPI1P2 triosephosphate isomerase 1 pseudogene 2 pseudo 4.121 0.9768
-286042 FAM86B3P family with sequence similarity 86, member A pseudogene pseudo 3.651 1.178
-286046 XKR6 XK related 6 protein-coding 3.082 1.467
-286053 NSMCE2 NSE2 (MMS21) homolog, SMC5-SMC6 complex SUMO ligase protein-coding 8.312 0.6487
-286075 ZNF707 zinc finger protein 707 protein-coding 7.921 0.6789
+286016 TPI1P2 triosephosphate isomerase 1 pseudogene 2 pseudo 4.12 0.9765
+286042 FAM86B3P family with sequence similarity 86, member A pseudogene pseudo 3.652 1.178
+286046 XKR6 XK related 6 protein-coding 3.083 1.467
+286053 NSMCE2 NSE2 (MMS21) homolog, SMC5-SMC6 complex SUMO ligase protein-coding 8.311 0.6487
+286075 ZNF707 zinc finger protein 707 protein-coding 7.92 0.6787
286076 BREA2 breast cancer estrogen-induced apoptosis 2 ncRNA 2.284 1.023
286077 FAM83H family with sequence similarity 83 member H protein-coding 10.58 2.178
-286097 MICU3 mitochondrial calcium uptake family member 3 protein-coding 5.455 1.955
-286101 ZNF252P zinc finger protein 252, pseudogene pseudo 9.108 0.6676
-286102 TMED10P1 transmembrane p24 trafficking protein 10 pseudogene 1 pseudo 5.505 0.65
+286097 MICU3 mitochondrial calcium uptake family member 3 protein-coding 5.457 1.955
+286101 ZNF252P zinc finger protein 252, pseudogene pseudo 9.108 0.6674
+286102 TMED10P1 transmembrane p24 trafficking protein 10 pseudogene 1 pseudo 5.505 0.6498
286103 ZNF252P-AS1 ZNF252P antisense RNA 1 ncRNA 3.331 1.209
-286122 C8orf31 chromosome 8 open reading frame 31 (putative) ncRNA 3.621 1.941
-286128 ZFP41 ZFP41 zinc finger protein protein-coding 8.307 0.7395
-286133 SCARA5 scavenger receptor class A member 5 protein-coding 3.72 2.639
-286140 RNF5P1 ring finger protein 5 pseudogene 1 pseudo 7.506 0.7968
-286144 TRIQK triple QxxK/R motif containing protein-coding 9.259 0.9439
+286122 C8orf31 chromosome 8 open reading frame 31 (putative) ncRNA 3.621 1.94
+286128 ZFP41 ZFP41 zinc finger protein protein-coding 8.307 0.7391
+286133 SCARA5 scavenger receptor class A member 5 protein-coding 3.724 2.641
+286140 RNF5P1 ring finger protein 5 pseudogene 1 pseudo 7.506 0.7967
+286144 TRIQK triple QxxK/R motif containing protein-coding 9.259 0.9437
286148 DPY19L4 dpy-19 like 4 protein-coding 9.722 0.6802
-286151 FBXO43 F-box protein 43 protein-coding 3.766 1.444
-286204 CRB2 crumbs 2, cell polarity complex component protein-coding 3.443 2.585
-286205 SCAI suppressor of cancer cell invasion protein-coding 7.898 0.7942
+286151 FBXO43 F-box protein 43 protein-coding 3.765 1.444
+286204 CRB2 crumbs 2, cell polarity complex component protein-coding 3.442 2.585
+286205 SCAI suppressor of cancer cell invasion protein-coding 7.899 0.7943
286207 CFAP157 cilia and flagella associated protein 157 protein-coding 3.18 1.413
-286223 C9orf47 chromosome 9 open reading frame 47 protein-coding 2.686 1.463
-286256 LCN12 lipocalin 12 protein-coding 4.335 2.595
-286257 PAXX PAXX, non-homologous end joining factor protein-coding 8.911 0.9025
-286262 TPRN taperin protein-coding 9.068 0.9945
+286223 C9orf47 chromosome 9 open reading frame 47 protein-coding 2.687 1.463
+286256 LCN12 lipocalin 12 protein-coding 4.336 2.595
+286257 PAXX PAXX, non-homologous end joining factor protein-coding 8.911 0.9021
+286262 TPRN taperin protein-coding 9.067 0.9943
286319 TUSC1 tumor suppressor candidate 1 protein-coding 8.106 1.174
-286333 FAM225A family with sequence similarity 225 member A (non-protein coding) ncRNA 3.413 1.546
-286336 FAM78A family with sequence similarity 78 member A protein-coding 7.232 1.304
+286333 FAM225A family with sequence similarity 225 member A (non-protein coding) ncRNA 3.413 1.545
+286336 FAM78A family with sequence similarity 78 member A protein-coding 7.233 1.305
286343 LURAP1L leucine rich adaptor protein 1 like protein-coding 7.922 1.598
-286410 ATP11C ATPase phospholipid transporting 11C protein-coding 8.753 0.9228
-286451 YIPF6 Yip1 domain family member 6 protein-coding 8.11 0.8209
-286467 FIRRE firre intergenic repeating RNA element ncRNA 2.876 1.924
-2865 FFAR3 free fatty acid receptor 3 protein-coding 1.871 1.401
-286527 TMSB15B thymosin beta 15B protein-coding 4.98 1.691
-286530 P2RY8 P2Y receptor family member 8 protein-coding 6.594 1.761
-286676 ILDR1 immunoglobulin like domain containing receptor 1 protein-coding 6.527 2.866
-2867 FFAR2 free fatty acid receptor 2 protein-coding 3.828 2.132
+286410 ATP11C ATPase phospholipid transporting 11C protein-coding 8.753 0.9227
+286451 YIPF6 Yip1 domain family member 6 protein-coding 8.11 0.8206
+286467 FIRRE firre intergenic repeating RNA element ncRNA 2.875 1.924
+2865 FFAR3 free fatty acid receptor 3 protein-coding 1.872 1.402
+286527 TMSB15B thymosin beta 15B protein-coding 4.98 1.69
+286530 P2RY8 P2Y receptor family member 8 protein-coding 6.595 1.761
+286676 ILDR1 immunoglobulin like domain containing receptor 1 protein-coding 6.528 2.866
+2867 FFAR2 free fatty acid receptor 2 protein-coding 3.828 2.131
2868 GRK4 G protein-coupled receptor kinase 4 protein-coding 6.046 0.8029
-286826 LIN9 lin-9 DREAM MuvB core complex component protein-coding 7.092 1.048
-286827 TRIM59 tripartite motif containing 59 protein-coding 7.49 1.364
-2869 GRK5 G protein-coupled receptor kinase 5 protein-coding 8.128 1.155
-286967 FAM223B family with sequence similarity 223 member B (non-protein coding) ncRNA 2.476 1.016
-287 ANK2 ankyrin 2 protein-coding 7.501 2.53
-2870 GRK6 G protein-coupled receptor kinase 6 protein-coding 9.644 0.6481
-2872 MKNK2 MAP kinase interacting serine/threonine kinase 2 protein-coding 11.6 0.8402
-2873 GPS1 G protein pathway suppressor 1 protein-coding 11.15 0.6227
-2874 GPS2 G protein pathway suppressor 2 protein-coding 9.93 0.5797
-2875 GPT glutamic--pyruvic transaminase protein-coding 5.359 2.327
+286826 LIN9 lin-9 DREAM MuvB core complex component protein-coding 7.091 1.047
+286827 TRIM59 tripartite motif containing 59 protein-coding 7.489 1.363
+2869 GRK5 G protein-coupled receptor kinase 5 protein-coding 8.129 1.155
+286967 FAM223B family with sequence similarity 223 member B (non-protein coding) ncRNA 2.476 1.015
+287 ANK2 ankyrin 2 protein-coding 7.503 2.53
+2870 GRK6 G protein-coupled receptor kinase 6 protein-coding 9.644 0.6483
+2872 MKNK2 MAP kinase interacting serine/threonine kinase 2 protein-coding 11.6 0.8398
+2873 GPS1 G protein pathway suppressor 1 protein-coding 11.15 0.6226
+2874 GPS2 G protein pathway suppressor 2 protein-coding 9.93 0.5795
+2875 GPT glutamic--pyruvic transaminase protein-coding 5.358 2.326
2876 GPX1 glutathione peroxidase 1 protein-coding 12.04 0.9064
-2877 GPX2 glutathione peroxidase 2 protein-coding 6.32 4.953
+2877 GPX2 glutathione peroxidase 2 protein-coding 6.321 4.953
2878 GPX3 glutathione peroxidase 3 protein-coding 11.14 2.477
-2879 GPX4 glutathione peroxidase 4 protein-coding 11.76 0.876
-288 ANK3 ankyrin 3 protein-coding 9.071 1.822
-2882 GPX7 glutathione peroxidase 7 protein-coding 7.641 1.357
+2879 GPX4 glutathione peroxidase 4 protein-coding 11.76 0.8758
+288 ANK3 ankyrin 3 protein-coding 9.072 1.821
+2882 GPX7 glutathione peroxidase 7 protein-coding 7.642 1.357
2885 GRB2 growth factor receptor bound protein 2 protein-coding 11.66 0.4407
2887 GRB10 growth factor receptor bound protein 10 protein-coding 9.898 1.123
-2889 RAPGEF1 Rap guanine nucleotide exchange factor 1 protein-coding 10.89 0.6813
-2893 GRIA4 glutamate ionotropic receptor AMPA type subunit 4 protein-coding 2.744 3.371
-2894 GRID1 glutamate ionotropic receptor delta type subunit 1 protein-coding 5.248 2.527
-28951 TRIB2 tribbles pseudokinase 2 protein-coding 9.873 1.278
-28952 CCDC22 coiled-coil domain containing 22 protein-coding 9.18 0.545
-28955 DEXI Dexi homolog protein-coding 9.38 0.6824
+2889 RAPGEF1 Rap guanine nucleotide exchange factor 1 protein-coding 10.89 0.6814
+2893 GRIA4 glutamate ionotropic receptor AMPA type subunit 4 protein-coding 2.745 3.37
+2894 GRID1 glutamate ionotropic receptor delta type subunit 1 protein-coding 5.25 2.526
+28951 TRIB2 tribbles pseudokinase 2 protein-coding 9.874 1.278
+28952 CCDC22 coiled-coil domain containing 22 protein-coding 9.18 0.5449
+28955 DEXI Dexi homolog protein-coding 9.38 0.6821
28956 LAMTOR2 late endosomal/lysosomal adaptor, MAPK and MTOR activator 2 protein-coding 9.851 0.789
-28957 MRPS28 mitochondrial ribosomal protein S28 protein-coding 8.457 0.7124
-28958 COA3 cytochrome c oxidase assembly factor 3 protein-coding 10.23 0.7412
-28959 TMEM176B transmembrane protein 176B protein-coding 10.4 2.157
-2896 GRN granulin precursor protein-coding 13.13 0.8627
-28960 DCPS decapping enzyme, scavenger protein-coding 8.525 0.7418
-28962 OSTM1 osteopetrosis associated transmembrane protein 1 protein-coding 9.425 0.8007
-28964 GIT1 GIT ArfGAP 1 protein-coding 10.81 0.6671
-28965 SLC27A6 solute carrier family 27 member 6 protein-coding 2.994 2.963
-28966 SNX24 sorting nexin 24 protein-coding 7.754 0.8833
-28968 SLC6A16 solute carrier family 6 member 16 protein-coding 3.848 1.714
-28969 BZW2 basic leucine zipper and W2 domains 2 protein-coding 10.48 0.9609
-2897 GRIK1 glutamate ionotropic receptor kainate type subunit 1 protein-coding 1.851 2.311
+28957 MRPS28 mitochondrial ribosomal protein S28 protein-coding 8.457 0.7125
+28958 COA3 cytochrome c oxidase assembly factor 3 protein-coding 10.23 0.7413
+28959 TMEM176B transmembrane protein 176B protein-coding 10.4 2.156
+2896 GRN granulin precursor protein-coding 13.13 0.8629
+28960 DCPS decapping enzyme, scavenger protein-coding 8.525 0.7416
+28962 OSTM1 osteopetrosis associated transmembrane protein 1 protein-coding 9.426 0.8006
+28964 GIT1 GIT ArfGAP 1 protein-coding 10.81 0.6669
+28965 SLC27A6 solute carrier family 27 member 6 protein-coding 2.996 2.963
+28966 SNX24 sorting nexin 24 protein-coding 7.753 0.8833
+28968 SLC6A16 solute carrier family 6 member 16 protein-coding 3.849 1.714
+28969 BZW2 basic leucine zipper and W2 domains 2 protein-coding 10.48 0.9611
+2897 GRIK1 glutamate ionotropic receptor kainate type subunit 1 protein-coding 1.851 2.31
28970 C11orf54 chromosome 11 open reading frame 54 protein-coding 9.103 1.157
-28971 AAMDC adipogenesis associated Mth938 domain containing protein-coding 7.907 0.9343
-28972 SPCS1 signal peptidase complex subunit 1 protein-coding 10.92 0.5893
-28973 MRPS18B mitochondrial ribosomal protein S18B protein-coding 10.46 0.5662
+28971 AAMDC adipogenesis associated Mth938 domain containing protein-coding 7.907 0.934
+28972 SPCS1 signal peptidase complex subunit 1 protein-coding 10.92 0.5892
+28973 MRPS18B mitochondrial ribosomal protein S18B protein-coding 10.46 0.566
28974 C19orf53 chromosome 19 open reading frame 53 protein-coding 10.71 0.733
-28976 ACAD9 acyl-CoA dehydrogenase family member 9 protein-coding 9.929 0.4859
+28976 ACAD9 acyl-CoA dehydrogenase family member 9 protein-coding 9.929 0.4858
28977 MRPL42 mitochondrial ribosomal protein L42 protein-coding 9.556 0.5994
28978 TMEM14A transmembrane protein 14A protein-coding 9.045 0.8168
-28981 IFT81 intraflagellar transport 81 protein-coding 8.128 0.8821
-28982 FLVCR1 feline leukemia virus subgroup C cellular receptor 1 protein-coding 7.098 1.075
+28981 IFT81 intraflagellar transport 81 protein-coding 8.128 0.8818
+28982 FLVCR1 feline leukemia virus subgroup C cellular receptor 1 protein-coding 7.097 1.074
28984 RGCC regulator of cell cycle protein-coding 8.747 1.408
28985 MCTS1 MCTS1, re-initiation and release factor protein-coding 9.806 0.4945
-28986 MAGEH1 MAGE family member H1 protein-coding 8.582 1.414
-28987 NOB1 NIN1 (RPN12) binding protein 1 homolog protein-coding 10.18 0.659
-28988 DBNL drebrin like protein-coding 11.22 0.5596
-28989 NTMT1 N-terminal Xaa-Pro-Lys N-methyltransferase 1 protein-coding 8.982 0.6866
-2899 GRIK3 glutamate ionotropic receptor kainate type subunit 3 protein-coding 4.531 3.449
-28990 ASTE1 asteroid homolog 1 protein-coding 7.481 0.5545
-28991 COMMD5 COMM domain containing 5 protein-coding 9.335 0.5801
-28992 MACROD1 MACRO domain containing 1 protein-coding 7.837 1.289
-28996 HIPK2 homeodomain interacting protein kinase 2 protein-coding 10.91 1.432
-28998 MRPL13 mitochondrial ribosomal protein L13 protein-coding 9.455 0.7581
-28999 KLF15 Kruppel like factor 15 protein-coding 6.515 2.638
+28986 MAGEH1 MAGE family member H1 protein-coding 8.583 1.415
+28987 NOB1 NIN1 (RPN12) binding protein 1 homolog protein-coding 10.18 0.6588
+28988 DBNL drebrin like protein-coding 11.22 0.5593
+28989 NTMT1 N-terminal Xaa-Pro-Lys N-methyltransferase 1 protein-coding 8.982 0.6865
+2899 GRIK3 glutamate ionotropic receptor kainate type subunit 3 protein-coding 4.532 3.448
+28990 ASTE1 asteroid homolog 1 protein-coding 7.481 0.5544
+28991 COMMD5 COMM domain containing 5 protein-coding 9.335 0.58
+28992 MACROD1 MACRO domain containing 1 protein-coding 7.836 1.29
+28996 HIPK2 homeodomain interacting protein kinase 2 protein-coding 10.91 1.431
+28998 MRPL13 mitochondrial ribosomal protein L13 protein-coding 9.454 0.7583
+28999 KLF15 Kruppel like factor 15 protein-coding 6.517 2.638
29 ABR ABR, RhoGEF and GTPase activating protein protein-coding 11.06 1.117
-290 ANPEP alanyl aminopeptidase, membrane protein-coding 9.203 2.798
-2900 GRIK4 glutamate ionotropic receptor kainate type subunit 4 protein-coding 2.907 2.535
-2901 GRIK5 glutamate ionotropic receptor kainate type subunit 5 protein-coding 5.14 2.966
-29015 SLC43A3 solute carrier family 43 member 3 protein-coding 9.565 1.599
+290 ANPEP alanyl aminopeptidase, membrane protein-coding 9.204 2.799
+2900 GRIK4 glutamate ionotropic receptor kainate type subunit 4 protein-coding 2.908 2.534
+2901 GRIK5 glutamate ionotropic receptor kainate type subunit 5 protein-coding 5.142 2.967
+29015 SLC43A3 solute carrier family 43 member 3 protein-coding 9.565 1.598
2902 GRIN1 glutamate ionotropic receptor NMDA type subunit 1 protein-coding 3.603 2.644
-29028 ATAD2 ATPase family, AAA domain containing 2 protein-coding 9.656 1.261
-2903 GRIN2A glutamate ionotropic receptor NMDA type subunit 2A protein-coding 3.911 2.722
-29035 C16orf72 chromosome 16 open reading frame 72 protein-coding 10.06 0.4786
+29028 ATAD2 ATPase family, AAA domain containing 2 protein-coding 9.656 1.26
+2903 GRIN2A glutamate ionotropic receptor NMDA type subunit 2A protein-coding 3.912 2.722
+29035 C16orf72 chromosome 16 open reading frame 72 protein-coding 10.06 0.4784
2905 GRIN2C glutamate ionotropic receptor NMDA type subunit 2C protein-coding 4.205 2.14
-29057 FAM156A family with sequence similarity 156 member A protein-coding 9.257 0.8471
-29058 TMEM230 transmembrane protein 230 protein-coding 11.23 0.594
-2906 GRIN2D glutamate ionotropic receptor NMDA type subunit 2D protein-coding 6.384 2.208
-29062 WDR91 WD repeat domain 91 protein-coding 9.089 1.117
-29063 ZCCHC4 zinc finger CCHC-type containing 4 protein-coding 7.281 0.5185
+29057 FAM156A family with sequence similarity 156 member A protein-coding 9.258 0.847
+29058 TMEM230 transmembrane protein 230 protein-coding 11.23 0.5939
+2906 GRIN2D glutamate ionotropic receptor NMDA type subunit 2D protein-coding 6.383 2.207
+29062 WDR91 WD repeat domain 91 protein-coding 9.089 1.116
+29063 ZCCHC4 zinc finger CCHC-type containing 4 protein-coding 7.281 0.5183
29066 ZC3H7A zinc finger CCCH-type containing 7A protein-coding 9.817 0.5121
-29068 ZBTB44 zinc finger and BTB domain containing 44 protein-coding 10.1 0.6775
-2907 GRINA glutamate ionotropic receptor NMDA type subunit associated protein 1 protein-coding 12.3 0.7708
-29070 CCDC113 coiled-coil domain containing 113 protein-coding 7.391 1.429
-29071 C1GALT1C1 C1GALT1 specific chaperone 1 protein-coding 9.13 0.6594
-29072 SETD2 SET domain containing 2 protein-coding 10.61 0.5696
+29068 ZBTB44 zinc finger and BTB domain containing 44 protein-coding 10.1 0.6773
+2907 GRINA glutamate ionotropic receptor NMDA type subunit associated protein 1 protein-coding 12.3 0.7709
+29070 CCDC113 coiled-coil domain containing 113 protein-coding 7.39 1.428
+29071 C1GALT1C1 C1GALT1 specific chaperone 1 protein-coding 9.13 0.6591
+29072 SETD2 SET domain containing 2 protein-coding 10.61 0.5695
29074 MRPL18 mitochondrial ribosomal protein L18 protein-coding 9.895 0.566
-29078 NDUFAF4 NADH:ubiquinone oxidoreductase complex assembly factor 4 protein-coding 8.058 0.7262
-29079 MED4 mediator complex subunit 4 protein-coding 9.75 0.4832
-2908 NR3C1 nuclear receptor subfamily 3 group C member 1 protein-coding 9.989 1.219
-29080 CCDC59 coiled-coil domain containing 59 protein-coding 8.779 0.5995
-29081 METTL5 methyltransferase like 5 protein-coding 9.079 0.5306
-29082 CHMP4A charged multivesicular body protein 4A protein-coding 9.983 0.6349
-29083 GTPBP8 GTP binding protein 8 (putative) protein-coding 7.312 0.6487
-29085 PHPT1 phosphohistidine phosphatase 1 protein-coding 10.41 0.8853
-29086 BABAM1 BRISC and BRCA1 A complex member 1 protein-coding 10.42 0.533
-29087 THYN1 thymocyte nuclear protein 1 protein-coding 9.395 0.7822
-29088 MRPL15 mitochondrial ribosomal protein L15 protein-coding 9.98 0.724
-29089 UBE2T ubiquitin conjugating enzyme E2 T protein-coding 7.862 1.524
-2909 ARHGAP35 Rho GTPase activating protein 35 protein-coding 11.1 0.7063
+29078 NDUFAF4 NADH:ubiquinone oxidoreductase complex assembly factor 4 protein-coding 8.058 0.726
+29079 MED4 mediator complex subunit 4 protein-coding 9.75 0.483
+2908 NR3C1 nuclear receptor subfamily 3 group C member 1 protein-coding 9.99 1.219
+29080 CCDC59 coiled-coil domain containing 59 protein-coding 8.779 0.5994
+29081 METTL5 methyltransferase like 5 protein-coding 9.078 0.5308
+29082 CHMP4A charged multivesicular body protein 4A protein-coding 9.983 0.6347
+29083 GTPBP8 GTP binding protein 8 (putative) protein-coding 7.312 0.6485
+29085 PHPT1 phosphohistidine phosphatase 1 protein-coding 10.41 0.885
+29086 BABAM1 BRISC and BRCA1 A complex member 1 protein-coding 10.42 0.5329
+29087 THYN1 thymocyte nuclear protein 1 protein-coding 9.395 0.7819
+29088 MRPL15 mitochondrial ribosomal protein L15 protein-coding 9.979 0.7242
+29089 UBE2T ubiquitin conjugating enzyme E2 T protein-coding 7.859 1.525
+2909 ARHGAP35 Rho GTPase activating protein 35 protein-coding 11.1 0.7061
29090 TIMM21 translocase of inner mitochondrial membrane 21 protein-coding 8.471 0.5764
-29091 STXBP6 syntaxin binding protein 6 protein-coding 5.906 2.661
-29092 LINC00339 long intergenic non-protein coding RNA 339 ncRNA 7.627 0.7159
-29093 MRPL22 mitochondrial ribosomal protein L22 protein-coding 8.791 0.6325
+29091 STXBP6 syntaxin binding protein 6 protein-coding 5.907 2.661
+29092 LINC00339 long intergenic non-protein coding RNA 339 ncRNA 7.627 0.7157
+29093 MRPL22 mitochondrial ribosomal protein L22 protein-coding 8.79 0.6325
29094 LGALSL galectin like protein-coding 8.767 1.035
-29095 ORMDL2 ORMDL sphingolipid biosynthesis regulator 2 protein-coding 9.352 0.7641
-29097 CNIH4 cornichon family AMPA receptor auxiliary protein 4 protein-coding 9.738 0.6519
-29098 RANGRF RAN guanine nucleotide release factor protein-coding 8.737 0.8614
+29095 ORMDL2 ORMDL sphingolipid biosynthesis regulator 2 protein-coding 9.351 0.7641
+29097 CNIH4 cornichon family AMPA receptor auxiliary protein 4 protein-coding 9.737 0.6518
+29098 RANGRF RAN guanine nucleotide release factor protein-coding 8.737 0.861
29099 COMMD9 COMM domain containing 9 protein-coding 9.575 0.5827
291 SLC25A4 solute carrier family 25 member 4 protein-coding 9.581 1.104
29100 TMEM208 transmembrane protein 208 protein-coding 9.705 0.7242
-29101 SSU72 SSU72 homolog, RNA polymerase II CTD phosphatase protein-coding 11.33 0.5747
-29102 DROSHA drosha ribonuclease III protein-coding 10.27 0.5447
+29101 SSU72 SSU72 homolog, RNA polymerase II CTD phosphatase protein-coding 11.33 0.5745
+29102 DROSHA drosha ribonuclease III protein-coding 10.27 0.5446
29103 DNAJC15 DnaJ heat shock protein family (Hsp40) member C15 protein-coding 9.193 1.326
-29104 N6AMT1 N-6 adenine-specific DNA methyltransferase 1 protein-coding 7.701 0.7271
-29105 CFAP20 cilia and flagella associated protein 20 protein-coding 9.278 0.5731
-29106 SCG3 secretogranin III protein-coding 3.455 3.841
-29107 NXT1 nuclear transport factor 2 like export factor 1 protein-coding 8.568 0.7537
+29104 N6AMT1 N-6 adenine-specific DNA methyltransferase 1 protein-coding 7.701 0.7269
+29105 CFAP20 cilia and flagella associated protein 20 protein-coding 9.277 0.5733
+29106 SCG3 secretogranin III protein-coding 3.458 3.842
+29107 NXT1 nuclear transport factor 2 like export factor 1 protein-coding 8.568 0.7536
29108 PYCARD PYD and CARD domain containing protein-coding 8.725 1.503
-29109 FHOD1 formin homology 2 domain containing 1 protein-coding 9.131 0.9595
-2911 GRM1 glutamate metabotropic receptor 1 protein-coding 2.058 1.905
-29110 TBK1 TANK binding kinase 1 protein-coding 9.243 0.5433
-29115 SAP30BP SAP30 binding protein protein-coding 10.26 0.5103
-29116 MYLIP myosin regulatory light chain interacting protein protein-coding 9.26 1.104
-29117 BRD7 bromodomain containing 7 protein-coding 10.17 0.4974
+29109 FHOD1 formin homology 2 domain containing 1 protein-coding 9.131 0.9596
+2911 GRM1 glutamate metabotropic receptor 1 protein-coding 2.059 1.905
+29110 TBK1 TANK binding kinase 1 protein-coding 9.243 0.543
+29115 SAP30BP SAP30 binding protein protein-coding 10.26 0.5101
+29116 MYLIP myosin regulatory light chain interacting protein protein-coding 9.261 1.104
+29117 BRD7 bromodomain containing 7 protein-coding 10.17 0.4972
29119 CTNNA3 catenin alpha 3 protein-coding 1.384 1.716
-2912 GRM2 glutamate metabotropic receptor 2 protein-coding 3.008 1.506
-29121 CLEC2D C-type lectin domain family 2 member D protein-coding 8.91 0.763
-29122 PRSS50 serine protease 50 protein-coding 2.957 2.336
-29123 ANKRD11 ankyrin repeat domain 11 protein-coding 11.22 0.5724
-29125 C11orf21 chromosome 11 open reading frame 21 protein-coding 3.054 1.541
-29126 CD274 CD274 molecule protein-coding 4.787 1.859
-29127 RACGAP1 Rac GTPase activating protein 1 protein-coding 9.289 1.311
-29128 UHRF1 ubiquitin like with PHD and ring finger domains 1 protein-coding 7.918 1.876
+2912 GRM2 glutamate metabotropic receptor 2 protein-coding 3.009 1.506
+29121 CLEC2D C-type lectin domain family 2 member D protein-coding 8.91 0.7633
+29122 PRSS50 serine protease 50 protein-coding 2.958 2.336
+29123 ANKRD11 ankyrin repeat domain 11 protein-coding 11.22 0.5722
+29125 C11orf21 chromosome 11 open reading frame 21 protein-coding 3.055 1.542
+29126 CD274 CD274 molecule protein-coding 4.788 1.859
+29127 RACGAP1 Rac GTPase activating protein 1 protein-coding 9.287 1.312
+29128 UHRF1 ubiquitin like with PHD and ring finger domains 1 protein-coding 7.916 1.877
2914 GRM4 glutamate metabotropic receptor 4 protein-coding 3.062 2.57
-2916 GRM6 glutamate metabotropic receptor 6 protein-coding 2.097 1.511
-2919 CXCL1 C-X-C motif chemokine ligand 1 protein-coding 6.36 3.32
+2916 GRM6 glutamate metabotropic receptor 6 protein-coding 2.098 1.511
+2919 CXCL1 C-X-C motif chemokine ligand 1 protein-coding 6.359 3.319
292 SLC25A5 solute carrier family 25 member 5 protein-coding 12.56 0.8869
-2920 CXCL2 C-X-C motif chemokine ligand 2 protein-coding 6.231 2.481
-2921 CXCL3 C-X-C motif chemokine ligand 3 protein-coding 4.317 2.667
-2923 PDIA3 protein disulfide isomerase family A member 3 protein-coding 13.43 0.7834
-2925 GRPR gastrin releasing peptide receptor protein-coding 2.659 2.159
-2926 GRSF1 G-rich RNA sequence binding factor 1 protein-coding 11.07 0.4514
-293 SLC25A6 solute carrier family 25 member 6 protein-coding 13.41 0.8526
+2920 CXCL2 C-X-C motif chemokine ligand 2 protein-coding 6.232 2.481
+2921 CXCL3 C-X-C motif chemokine ligand 3 protein-coding 4.318 2.667
+2923 PDIA3 protein disulfide isomerase family A member 3 protein-coding 13.43 0.7833
+2925 GRPR gastrin releasing peptide receptor protein-coding 2.661 2.16
+2926 GRSF1 G-rich RNA sequence binding factor 1 protein-coding 11.07 0.4513
+293 SLC25A6 solute carrier family 25 member 6 protein-coding 13.41 0.8522
2931 GSK3A glycogen synthase kinase 3 alpha protein-coding 10.72 0.4361
-2932 GSK3B glycogen synthase kinase 3 beta protein-coding 10.38 0.5802
-2934 GSN gelsolin protein-coding 12.97 1.1
-2935 GSPT1 G1 to S phase transition 1 protein-coding 11.55 0.5481
+2932 GSK3B glycogen synthase kinase 3 beta protein-coding 10.38 0.58
+2934 GSN gelsolin protein-coding 12.98 1.1
+2935 GSPT1 G1 to S phase transition 1 protein-coding 11.55 0.5482
2936 GSR glutathione-disulfide reductase protein-coding 9.781 1.082
-2937 GSS glutathione synthetase protein-coding 10.42 0.6733
-2941 GSTA4 glutathione S-transferase alpha 4 protein-coding 8.693 1.361
-2944 GSTM1 glutathione S-transferase mu 1 protein-coding 5.372 4.021
+2937 GSS glutathione synthetase protein-coding 10.42 0.6734
+2941 GSTA4 glutathione S-transferase alpha 4 protein-coding 8.693 1.36
+2944 GSTM1 glutathione S-transferase mu 1 protein-coding 5.371 4.02
2946 GSTM2 glutathione S-transferase mu 2 protein-coding 8.909 1.978
-2947 GSTM3 glutathione S-transferase mu 3 protein-coding 9.36 1.792
-2948 GSTM4 glutathione S-transferase mu 4 protein-coding 9.114 1.187
-2949 GSTM5 glutathione S-transferase mu 5 protein-coding 4.67 2.148
-2950 GSTP1 glutathione S-transferase pi 1 protein-coding 12.63 1.749
-2952 GSTT1 glutathione S-transferase theta 1 protein-coding 7.702 3.841
-2953 GSTT2 glutathione S-transferase theta 2 (gene/pseudogene) protein-coding 6.534 2.019
-2954 GSTZ1 glutathione S-transferase zeta 1 protein-coding 8.665 0.9901
-2956 MSH6 mutS homolog 6 protein-coding 10.32 0.795
+2947 GSTM3 glutathione S-transferase mu 3 protein-coding 9.361 1.791
+2948 GSTM4 glutathione S-transferase mu 4 protein-coding 9.115 1.187
+2949 GSTM5 glutathione S-transferase mu 5 protein-coding 4.673 2.149
+2950 GSTP1 glutathione S-transferase pi 1 protein-coding 12.63 1.748
+2952 GSTT1 glutathione S-transferase theta 1 protein-coding 7.703 3.84
+2953 GSTT2 glutathione S-transferase theta 2 (gene/pseudogene) protein-coding 6.535 2.018
+2954 GSTZ1 glutathione S-transferase zeta 1 protein-coding 8.665 0.9902
+2956 MSH6 mutS homolog 6 protein-coding 10.32 0.7948
2957 GTF2A1 general transcription factor IIA subunit 1 protein-coding 6.871 1.416
-2958 GTF2A2 general transcription factor IIA subunit 2 protein-coding 9.616 0.5501
-2959 GTF2B general transcription factor IIB protein-coding 9.087 0.4712
-2960 GTF2E1 general transcription factor IIE subunit 1 protein-coding 8.214 0.6185
-2961 GTF2E2 general transcription factor IIE subunit 2 protein-coding 9.23 0.6977
-2962 GTF2F1 general transcription factor IIF subunit 1 protein-coding 10.96 0.4969
-2963 GTF2F2 general transcription factor IIF subunit 2 protein-coding 8.975 0.6481
-2965 GTF2H1 general transcription factor IIH subunit 1 protein-coding 9.5 0.4637
+2958 GTF2A2 general transcription factor IIA subunit 2 protein-coding 9.616 0.55
+2959 GTF2B general transcription factor IIB protein-coding 9.087 0.4711
+2960 GTF2E1 general transcription factor IIE subunit 1 protein-coding 8.214 0.6183
+2961 GTF2E2 general transcription factor IIE subunit 2 protein-coding 9.23 0.6975
+2962 GTF2F1 general transcription factor IIF subunit 1 protein-coding 10.96 0.4967
+2963 GTF2F2 general transcription factor IIF subunit 2 protein-coding 8.975 0.648
+2965 GTF2H1 general transcription factor IIH subunit 1 protein-coding 9.5 0.4635
2966 GTF2H2 general transcription factor IIH subunit 2 protein-coding 6.659 1.303
-2967 GTF2H3 general transcription factor IIH subunit 3 protein-coding 7.668 0.9027
-2968 GTF2H4 general transcription factor IIH subunit 4 protein-coding 8.899 0.5693
-2969 GTF2I general transcription factor IIi protein-coding 11.09 0.9842
-2970 GTF2IP1 general transcription factor IIi pseudogene 1 pseudo 12.5 0.6337
+2967 GTF2H3 general transcription factor IIH subunit 3 protein-coding 7.667 0.9023
+2968 GTF2H4 general transcription factor IIH subunit 4 protein-coding 8.899 0.5692
+2969 GTF2I general transcription factor IIi protein-coding 11.09 0.9838
+2970 GTF2IP1 general transcription factor IIi pseudogene 1 pseudo 12.5 0.6335
2971 GTF3A general transcription factor IIIA protein-coding 10.92 0.7504
-2972 BRF1 BRF1, RNA polymerase III transcription initiation factor subunit protein-coding 9.539 0.6296
-2974 GUCY1B2 guanylate cyclase 1 soluble subunit beta 2 (pseudogene) pseudo 2.414 2.082
+2972 BRF1 BRF1, RNA polymerase III transcription initiation factor subunit protein-coding 9.539 0.6295
+2974 GUCY1B2 guanylate cyclase 1 soluble subunit beta 2 (pseudogene) pseudo 2.414 2.081
2975 GTF3C1 general transcription factor IIIC subunit 1 protein-coding 11.38 0.6686
-2976 GTF3C2 general transcription factor IIIC subunit 2 protein-coding 10.45 0.5123
+2976 GTF3C2 general transcription factor IIIC subunit 2 protein-coding 10.45 0.5122
29760 BLNK B cell linker protein-coding 7.561 1.645
-29761 USP25 ubiquitin specific peptidase 25 protein-coding 9.501 0.6645
+29761 USP25 ubiquitin specific peptidase 25 protein-coding 9.501 0.6646
29763 PACSIN3 protein kinase C and casein kinase substrate in neurons 3 protein-coding 9.169 1.468
29765 TMOD4 tropomodulin 4 protein-coding 1.447 1.385
-29766 TMOD3 tropomodulin 3 protein-coding 10.39 0.8441
-29767 TMOD2 tropomodulin 2 protein-coding 8.154 1.691
-29774 POM121L9P POM121 transmembrane nucleoporin like 9, pseudogene pseudo 3.221 1.527
-29775 CARD10 caspase recruitment domain family member 10 protein-coding 8.799 1.543
-29777 ABT1 activator of basal transcription 1 protein-coding 9.414 0.5673
-2978 GUCA1A guanylate cyclase activator 1A protein-coding 1.492 1.659
+29766 TMOD3 tropomodulin 3 protein-coding 10.39 0.8439
+29767 TMOD2 tropomodulin 2 protein-coding 8.156 1.691
+29774 POM121L9P POM121 transmembrane nucleoporin like 9, pseudogene pseudo 3.222 1.527
+29775 CARD10 caspase recruitment domain family member 10 protein-coding 8.799 1.542
+29777 ABT1 activator of basal transcription 1 protein-coding 9.414 0.5671
+2978 GUCA1A guanylate cyclase activator 1A protein-coding 1.492 1.66
29780 PARVB parvin beta protein-coding 8.627 1.271
-29781 NCAPH2 non-SMC condensin II complex subunit H2 protein-coding 9.86 0.707
-29785 CYP2S1 cytochrome P450 family 2 subfamily S member 1 protein-coding 7.388 2.859
-29789 OLA1 Obg like ATPase 1 protein-coding 10.69 0.5785
+29781 NCAPH2 non-SMC condensin II complex subunit H2 protein-coding 9.86 0.7068
+29785 CYP2S1 cytochrome P450 family 2 subfamily S member 1 protein-coding 7.388 2.858
+29789 OLA1 Obg like ATPase 1 protein-coding 10.69 0.5786
2979 GUCA1B guanylate cyclase activator 1B protein-coding 4.411 1.231
-29796 UQCR10 ubiquinol-cytochrome c reductase, complex III subunit X protein-coding 10.59 0.7079
-29797 POM121L8P POM121 transmembrane nucleoporin like 8, pseudogene pseudo 1.027 1.003
-29798 C2orf27A chromosome 2 open reading frame 27A protein-coding 4.561 1.435
-29799 YPEL1 yippee like 1 protein-coding 7.576 1.181
-29800 ZDHHC1 zinc finger DHHC-type containing 1 protein-coding 7.434 1.151
-29801 ZDHHC8 zinc finger DHHC-type containing 8 protein-coding 9.53 0.818
-29802 VPREB3 V-set pre-B cell surrogate light chain 3 protein-coding 3.17 1.861
-29803 REPIN1 replication initiator 1 protein-coding 11.08 0.8389
-2982 GUCY1A1 guanylate cyclase 1 soluble subunit alpha 1 protein-coding 9.117 1.771
-2983 GUCY1B1 guanylate cyclase 1 soluble subunit beta 1 protein-coding 8.147 1.458
-2984 GUCY2C guanylate cyclase 2C protein-coding 2.598 2.853
-29841 GRHL1 grainyhead like transcription factor 1 protein-coding 7.753 2.23
-29842 TFCP2L1 transcription factor CP2 like 1 protein-coding 7.944 2.654
-29843 SENP1 SUMO specific peptidase 1 protein-coding 8.707 0.6328
-29844 TFPT TCF3 fusion partner protein-coding 8.472 0.9
-29850 TRPM5 transient receptor potential cation channel subfamily M member 5 protein-coding 1.65 1.877
-29851 ICOS inducible T cell costimulator protein-coding 4.002 2.101
-29855 UBN1 ubinuclein 1 protein-coding 10.34 0.5837
-2987 GUK1 guanylate kinase 1 protein-coding 11.74 0.7026
-29880 ALG5 ALG5, dolichyl-phosphate beta-glucosyltransferase protein-coding 9.334 0.6614
-29881 NPC1L1 NPC1 like intracellular cholesterol transporter 1 protein-coding 3.256 2.75
-29882 ANAPC2 anaphase promoting complex subunit 2 protein-coding 9.619 0.5643
-29883 CNOT7 CCR4-NOT transcription complex subunit 7 protein-coding 10.41 0.5644
-29886 SNX8 sorting nexin 8 protein-coding 8.736 0.8369
-29887 SNX10 sorting nexin 10 protein-coding 8.533 1.574
-29888 STRN4 striatin 4 protein-coding 10.96 0.5278
-29889 GNL2 G protein nucleolar 2 protein-coding 10.32 0.6259
-29890 RBM15B RNA binding motif protein 15B protein-coding 10.79 0.4716
-29893 PSMC3IP PSMC3 interacting protein protein-coding 6.832 1.12
-29894 CPSF1 cleavage and polyadenylation specific factor 1 protein-coding 10.94 0.6968
-29895 MYLPF myosin light chain, phosphorylatable, fast skeletal muscle protein-coding 1.518 1.875
-29896 TRA2A transformer 2 alpha homolog protein-coding 10.2 0.5772
-29899 GPSM2 G protein signaling modulator 2 protein-coding 8.801 1.505
-2990 GUSB glucuronidase beta protein-coding 10.78 0.8149
-29901 SAC3D1 SAC3 domain containing 1 protein-coding 7.88 0.9815
+29796 UQCR10 ubiquinol-cytochrome c reductase, complex III subunit X protein-coding 10.58 0.7078
+29797 POM121L8P POM121 transmembrane nucleoporin like 8, pseudogene pseudo 1.027 1.002
+29798 C2orf27A chromosome 2 open reading frame 27A protein-coding 4.561 1.434
+29799 YPEL1 yippee like 1 protein-coding 7.577 1.181
+29800 ZDHHC1 zinc finger DHHC-type containing 1 protein-coding 7.435 1.151
+29801 ZDHHC8 zinc finger DHHC-type containing 8 protein-coding 9.53 0.8178
+29802 VPREB3 V-set pre-B cell surrogate light chain 3 protein-coding 3.172 1.862
+29803 REPIN1 replication initiator 1 protein-coding 11.08 0.8385
+2982 GUCY1A1 guanylate cyclase 1 soluble subunit alpha 1 protein-coding 9.119 1.771
+2983 GUCY1B1 guanylate cyclase 1 soluble subunit beta 1 protein-coding 8.148 1.457
+2984 GUCY2C guanylate cyclase 2C protein-coding 2.597 2.852
+29841 GRHL1 grainyhead like transcription factor 1 protein-coding 7.752 2.229
+29842 TFCP2L1 transcription factor CP2 like 1 protein-coding 7.947 2.655
+29843 SENP1 SUMO specific peptidase 1 protein-coding 8.707 0.6326
+29844 TFPT TCF3 fusion partner protein-coding 8.472 0.8998
+29850 TRPM5 transient receptor potential cation channel subfamily M member 5 protein-coding 1.653 1.879
+29851 ICOS inducible T cell costimulator protein-coding 4.003 2.102
+29855 UBN1 ubinuclein 1 protein-coding 10.34 0.5835
+2987 GUK1 guanylate kinase 1 protein-coding 11.74 0.7024
+29880 ALG5 ALG5, dolichyl-phosphate beta-glucosyltransferase protein-coding 9.334 0.6611
+29881 NPC1L1 NPC1 like intracellular cholesterol transporter 1 protein-coding 3.257 2.751
+29882 ANAPC2 anaphase promoting complex subunit 2 protein-coding 9.619 0.5642
+29883 CNOT7 CCR4-NOT transcription complex subunit 7 protein-coding 10.41 0.5642
+29886 SNX8 sorting nexin 8 protein-coding 8.736 0.837
+29887 SNX10 sorting nexin 10 protein-coding 8.533 1.575
+29888 STRN4 striatin 4 protein-coding 10.96 0.5277
+29889 GNL2 G protein nucleolar 2 protein-coding 10.32 0.626
+29890 RBM15B RNA binding motif protein 15B protein-coding 10.79 0.4714
+29893 PSMC3IP PSMC3 interacting protein protein-coding 6.831 1.12
+29894 CPSF1 cleavage and polyadenylation specific factor 1 protein-coding 10.94 0.6966
+29895 MYLPF myosin light chain, phosphorylatable, fast skeletal muscle protein-coding 1.517 1.874
+29896 TRA2A transformer 2 alpha homolog protein-coding 10.2 0.577
+29899 GPSM2 G protein signaling modulator 2 protein-coding 8.8 1.504
+2990 GUSB glucuronidase beta protein-coding 10.78 0.8146
+29901 SAC3D1 SAC3 domain containing 1 protein-coding 7.879 0.9816
29902 FAM216A family with sequence similarity 216 member A protein-coding 6.561 1.166
-29903 CCDC106 coiled-coil domain containing 106 protein-coding 8.261 1.263
-29904 EEF2K eukaryotic elongation factor 2 kinase protein-coding 9.904 0.6713
-29906 ST8SIA5 ST8 alpha-N-acetyl-neuraminide alpha-2,8-sialyltransferase 5 protein-coding 2.571 2.133
-29907 SNX15 sorting nexin 15 protein-coding 8.945 0.5241
-29909 GPR171 G protein-coupled receptor 171 protein-coding 3.952 1.866
-29911 HOOK2 hook microtubule tethering protein 2 protein-coding 9.273 0.938
-29914 UBIAD1 UbiA prenyltransferase domain containing 1 protein-coding 9.028 0.498
+29903 CCDC106 coiled-coil domain containing 106 protein-coding 8.262 1.262
+29904 EEF2K eukaryotic elongation factor 2 kinase protein-coding 9.904 0.6717
+29906 ST8SIA5 ST8 alpha-N-acetyl-neuraminide alpha-2,8-sialyltransferase 5 protein-coding 2.572 2.133
+29907 SNX15 sorting nexin 15 protein-coding 8.945 0.5239
+29909 GPR171 G protein-coupled receptor 171 protein-coding 3.954 1.867
+29911 HOOK2 hook microtubule tethering protein 2 protein-coding 9.273 0.9382
+29914 UBIAD1 UbiA prenyltransferase domain containing 1 protein-coding 9.028 0.4979
29915 HCFC2 host cell factor C2 protein-coding 8.148 0.8361
29916 SNX11 sorting nexin 11 protein-coding 9.137 0.4722
-29919 RMC1 regulator of MON1-CCZ1 protein-coding 8.784 0.5364
-2992 GYG1 glycogenin 1 protein-coding 9.905 0.6805
-29920 PYCR2 pyrroline-5-carboxylate reductase 2 protein-coding 10.69 0.5948
+29919 RMC1 regulator of MON1-CCZ1 protein-coding 8.784 0.5363
+2992 GYG1 glycogenin 1 protein-coding 9.905 0.6807
+29920 PYCR2 pyrroline-5-carboxylate reductase 2 protein-coding 10.69 0.5947
29922 NME7 NME/NM23 family member 7 protein-coding 7.867 0.7332
-29923 HILPDA hypoxia inducible lipid droplet associated protein-coding 8.497 1.517
-29924 EPN1 epsin 1 protein-coding 11.61 0.6505
+29923 HILPDA hypoxia inducible lipid droplet associated protein-coding 8.495 1.517
+29924 EPN1 epsin 1 protein-coding 11.61 0.6503
29925 GMPPB GDP-mannose pyrophosphorylase B protein-coding 8.547 0.769
-29926 GMPPA GDP-mannose pyrophosphorylase A protein-coding 9.69 0.6884
+29926 GMPPA GDP-mannose pyrophosphorylase A protein-coding 9.69 0.6883
29927 SEC61A1 Sec61 translocon alpha 1 subunit protein-coding 13.13 0.5256
-29928 TIMM22 translocase of inner mitochondrial membrane 22 protein-coding 8.855 0.5664
-29929 ALG6 ALG6, alpha-1,3-glucosyltransferase protein-coding 8.21 0.7006
-29931 LINC00312 long intergenic non-protein coding RNA 312 ncRNA 4.417 1.321
-29933 GPR132 G protein-coupled receptor 132 protein-coding 6.177 1.482
-29934 SNX12 sorting nexin 12 protein-coding 7.703 0.781
-29935 RPA4 replication protein A4 protein-coding 1.082 0.9321
-29937 NENF neudesin neurotrophic factor protein-coding 10.23 0.8442
+29928 TIMM22 translocase of inner mitochondrial membrane 22 protein-coding 8.855 0.5663
+29929 ALG6 ALG6, alpha-1,3-glucosyltransferase protein-coding 8.21 0.7007
+29931 LINC00312 long intergenic non-protein coding RNA 312 ncRNA 4.418 1.321
+29933 GPR132 G protein-coupled receptor 132 protein-coding 6.178 1.482
+29934 SNX12 sorting nexin 12 protein-coding 7.703 0.7807
+29935 RPA4 replication protein A4 protein-coding 1.082 0.9323
+29937 NENF neudesin neurotrophic factor protein-coding 10.23 0.8439
29940 DSE dermatan sulfate epimerase protein-coding 9.174 1.119
-29941 PKN3 protein kinase N3 protein-coding 7.755 1.026
-29942 PURG purine rich element binding protein G protein-coding 2.414 2.057
-29944 PNMA3 PNMA family member 3 protein-coding 4.563 2.571
-29945 ANAPC4 anaphase promoting complex subunit 4 protein-coding 8.851 0.6181
-29946 SERTAD3 SERTA domain containing 3 protein-coding 9.184 0.859
-29948 OSGIN1 oxidative stress induced growth inhibitor 1 protein-coding 7.444 1.837
-2995 GYPC glycophorin C (Gerbich blood group) protein-coding 8.369 1.648
-29950 SERTAD1 SERTA domain containing 1 protein-coding 8.782 0.9221
-29951 PDZRN4 PDZ domain containing ring finger 4 protein-coding 3.45 2.653
+29941 PKN3 protein kinase N3 protein-coding 7.754 1.026
+29942 PURG purine rich element binding protein G protein-coding 2.415 2.056
+29944 PNMA3 PNMA family member 3 protein-coding 4.564 2.57
+29945 ANAPC4 anaphase promoting complex subunit 4 protein-coding 8.852 0.618
+29946 SERTAD3 SERTA domain containing 3 protein-coding 9.184 0.8587
+29948 OSGIN1 oxidative stress induced growth inhibitor 1 protein-coding 7.443 1.836
+2995 GYPC glycophorin C (Gerbich blood group) protein-coding 8.37 1.647
+29950 SERTAD1 SERTA domain containing 1 protein-coding 8.782 0.9218
+29951 PDZRN4 PDZ domain containing ring finger 4 protein-coding 3.453 2.654
29952 DPP7 dipeptidyl peptidase 7 protein-coding 11.01 1.033
-29954 POMT2 protein O-mannosyltransferase 2 protein-coding 8.9 0.6924
-29956 CERS2 ceramide synthase 2 protein-coding 12.17 0.9263
-29957 SLC25A24 solute carrier family 25 member 24 protein-coding 9.295 1.445
-29958 DMGDH dimethylglycine dehydrogenase protein-coding 4.482 2.841
-29959 NRBP1 nuclear receptor binding protein 1 protein-coding 11.25 0.5207
-2996 GYPE glycophorin E (MNS blood group) protein-coding 2.137 1.335
-29960 MRM2 mitochondrial rRNA methyltransferase 2 protein-coding 9.488 0.4639
-29964 PRICKLE4 prickle planar cell polarity protein 4 protein-coding 6.033 1.47
-29965 CDIP1 cell death inducing p53 target 1 protein-coding 9.494 1.408
-29966 STRN3 striatin 3 protein-coding 9.266 0.6407
-29967 LRP12 LDL receptor related protein 12 protein-coding 8.186 1.239
-29968 PSAT1 phosphoserine aminotransferase 1 protein-coding 9.288 2.186
-29969 MDFIC MyoD family inhibitor domain containing protein-coding 9.159 1.352
-2997 GYS1 glycogen synthase 1 protein-coding 10.38 0.7514
-29970 SCHIP1 schwannomin interacting protein 1 protein-coding 8.016 1.741
-29978 UBQLN2 ubiquilin 2 protein-coding 10.35 0.5881
-29979 UBQLN1 ubiquilin 1 protein-coding 11.48 0.4863
-29980 DONSON downstream neighbor of SON protein-coding 7.999 0.9469
-29982 NRBF2 nuclear receptor binding factor 2 protein-coding 8.693 0.5868
-29984 RHOD ras homolog family member D protein-coding 8.198 2.297
-29985 SLC39A3 solute carrier family 39 member 3 protein-coding 9.077 0.6642
-29986 SLC39A2 solute carrier family 39 member 2 protein-coding 2.585 2.62
-29988 SLC2A8 solute carrier family 2 member 8 protein-coding 8.647 0.7919
-2999 GZMH granzyme H protein-coding 4.679 2.036
-29990 PILRB paired immunoglobin-like type 2 receptor beta protein-coding 9.921 1.101
-29992 PILRA paired immunoglobin like type 2 receptor alpha protein-coding 6.622 1.364
-29993 PACSIN1 protein kinase C and casein kinase substrate in neurons 1 protein-coding 5.197 2.282
-29994 BAZ2B bromodomain adjacent to zinc finger domain 2B protein-coding 9.33 0.831
-29995 LMCD1 LIM and cysteine rich domains 1 protein-coding 8.579 1.246
-29997 NOP53 NOP53 ribosome biogenesis factor protein-coding 12.37 0.9016
+29954 POMT2 protein O-mannosyltransferase 2 protein-coding 8.9 0.6922
+29956 CERS2 ceramide synthase 2 protein-coding 12.17 0.926
+29957 SLC25A24 solute carrier family 25 member 24 protein-coding 9.296 1.444
+29958 DMGDH dimethylglycine dehydrogenase protein-coding 4.483 2.839
+29959 NRBP1 nuclear receptor binding protein 1 protein-coding 11.25 0.5206
+2996 GYPE glycophorin E (MNS blood group) protein-coding 2.139 1.336
+29960 MRM2 mitochondrial rRNA methyltransferase 2 protein-coding 9.488 0.464
+29964 PRICKLE4 prickle planar cell polarity protein 4 protein-coding 6.035 1.47
+29965 CDIP1 cell death inducing p53 target 1 protein-coding 9.494 1.407
+29966 STRN3 striatin 3 protein-coding 9.267 0.6406
+29967 LRP12 LDL receptor related protein 12 protein-coding 8.187 1.238
+29968 PSAT1 phosphoserine aminotransferase 1 protein-coding 9.287 2.185
+29969 MDFIC MyoD family inhibitor domain containing protein-coding 9.16 1.352
+2997 GYS1 glycogen synthase 1 protein-coding 10.38 0.7512
+29970 SCHIP1 schwannomin interacting protein 1 protein-coding 8.015 1.74
+29978 UBQLN2 ubiquilin 2 protein-coding 10.35 0.5879
+29979 UBQLN1 ubiquilin 1 protein-coding 11.48 0.4861
+29980 DONSON downstream neighbor of SON protein-coding 7.998 0.9472
+29982 NRBF2 nuclear receptor binding factor 2 protein-coding 8.693 0.5866
+29984 RHOD ras homolog family member D protein-coding 8.197 2.296
+29985 SLC39A3 solute carrier family 39 member 3 protein-coding 9.077 0.6643
+29986 SLC39A2 solute carrier family 39 member 2 protein-coding 2.585 2.621
+29988 SLC2A8 solute carrier family 2 member 8 protein-coding 8.647 0.7916
+2999 GZMH granzyme H protein-coding 4.679 2.035
+29990 PILRB paired immunoglobin-like type 2 receptor beta protein-coding 9.922 1.101
+29992 PILRA paired immunoglobin like type 2 receptor alpha protein-coding 6.622 1.365
+29993 PACSIN1 protein kinase C and casein kinase substrate in neurons 1 protein-coding 5.197 2.281
+29994 BAZ2B bromodomain adjacent to zinc finger domain 2B protein-coding 9.331 0.8309
+29995 LMCD1 LIM and cysteine rich domains 1 protein-coding 8.579 1.245
+29997 NOP53 NOP53 ribosome biogenesis factor protein-coding 12.37 0.9015
29998 BICRA BRD4 interacting chromatin remodeling complex associated protein protein-coding 8.385 0.6407
-29999 FSCN3 fascin actin-bundling protein 3 protein-coding 1.229 0.797
-30 ACAA1 acetyl-CoA acyltransferase 1 protein-coding 10.36 0.9071
-3000 GUCY2D guanylate cyclase 2D, retinal protein-coding 1.923 1.555
+29999 FSCN3 fascin actin-bundling protein 3 protein-coding 1.229 0.7968
+30 ACAA1 acetyl-CoA acyltransferase 1 protein-coding 10.36 0.907
+3000 GUCY2D guanylate cyclase 2D, retinal protein-coding 1.923 1.554
30000 TNPO2 transportin 2 protein-coding 10.95 0.6338
-30001 ERO1A endoplasmic reticulum oxidoreductase 1 alpha protein-coding 9.924 1.363
-30008 EFEMP2 EGF containing fibulin extracellular matrix protein 2 protein-coding 9.552 1.493
-30009 TBX21 T-box 21 protein-coding 3.787 1.671
+30001 ERO1A endoplasmic reticulum oxidoreductase 1 alpha protein-coding 9.923 1.363
+30008 EFEMP2 EGF containing fibulin extracellular matrix protein 2 protein-coding 9.553 1.493
+30009 TBX21 T-box 21 protein-coding 3.788 1.672
3001 GZMA granzyme A protein-coding 6.146 2.198
-30011 SH3KBP1 SH3 domain containing kinase binding protein 1 protein-coding 9.689 1.042
+30011 SH3KBP1 SH3 domain containing kinase binding protein 1 protein-coding 9.689 1.041
3002 GZMB granzyme B protein-coding 5.523 2.378
-3003 GZMK granzyme K protein-coding 5.336 2.415
-3004 GZMM granzyme M protein-coding 4.201 1.755
+3003 GZMK granzyme K protein-coding 5.337 2.416
+3004 GZMM granzyme M protein-coding 4.203 1.756
3005 H1F0 H1 histone family member 0 protein-coding 12.28 1.005
-3006 HIST1H1C histone cluster 1 H1 family member c protein-coding 9.461 1.745
+3006 HIST1H1C histone cluster 1 H1 family member c protein-coding 9.461 1.744
30061 SLC40A1 solute carrier family 40 member 1 protein-coding 10.99 1.677
-3007 HIST1H1D histone cluster 1 H1 family member d protein-coding 1.865 1.499
-3008 HIST1H1E histone cluster 1 H1 family member e protein-coding 2.688 1.435
-3009 HIST1H1B histone cluster 1 H1 family member b protein-coding 1.346 1.374
-301 ANXA1 annexin A1 protein-coding 11.77 2.128
+3007 HIST1H1D histone cluster 1 H1 family member d protein-coding 1.865 1.498
+3008 HIST1H1E histone cluster 1 H1 family member e protein-coding 2.687 1.435
+3009 HIST1H1B histone cluster 1 H1 family member b protein-coding 1.345 1.374
+301 ANXA1 annexin A1 protein-coding 11.77 2.127
3012 HIST1H2AE histone cluster 1 H2A family member e protein-coding 5.031 1.914
-3013 HIST1H2AD histone cluster 1 H2A family member d protein-coding 1.313 1.298
-3014 H2AFX H2A histone family member X protein-coding 9.916 1.066
+3013 HIST1H2AD histone cluster 1 H2A family member d protein-coding 1.312 1.298
+3014 H2AFX H2A histone family member X protein-coding 9.915 1.066
3015 H2AFZ H2A histone family member Z protein-coding 11.77 0.8745
3017 HIST1H2BD histone cluster 1 H2B family member d protein-coding 8.165 1.51
302 ANXA2 annexin A2 protein-coding 13.32 1.552
-3020 H3F3A H3 histone family member 3A protein-coding 12.08 0.7931
-3021 H3F3B H3 histone family member 3B protein-coding 13.58 0.5656
-3028 HSD17B10 hydroxysteroid 17-beta dehydrogenase 10 protein-coding 10.63 0.686
-3029 HAGH hydroxyacylglutathione hydrolase protein-coding 9.613 0.9336
-303 ANXA2P1 annexin A2 pseudogene 1 pseudo 6.032 1.754
-3030 HADHA hydroxyacyl-CoA dehydrogenase trifunctional multienzyme complex subunit alpha protein-coding 12.22 0.4759
-3032 HADHB hydroxyacyl-CoA dehydrogenase trifunctional multienzyme complex subunit beta protein-coding 11.41 0.5927
-3033 HADH hydroxyacyl-CoA dehydrogenase protein-coding 10.31 0.7284
-3034 HAL histidine ammonia-lyase protein-coding 2.669 2.526
-3035 HARS histidyl-tRNA synthetase protein-coding 10.39 0.4609
+3020 H3F3A H3 histone family member 3A protein-coding 12.07 0.793
+3021 H3F3B H3 histone family member 3B protein-coding 13.58 0.5654
+3028 HSD17B10 hydroxysteroid 17-beta dehydrogenase 10 protein-coding 10.63 0.6861
+3029 HAGH hydroxyacylglutathione hydrolase protein-coding 9.613 0.9334
+303 ANXA2P1 annexin A2 pseudogene 1 pseudo 6.032 1.753
+3030 HADHA hydroxyacyl-CoA dehydrogenase trifunctional multienzyme complex subunit alpha protein-coding 12.22 0.4757
+3032 HADHB hydroxyacyl-CoA dehydrogenase trifunctional multienzyme complex subunit beta protein-coding 11.41 0.5925
+3033 HADH hydroxyacyl-CoA dehydrogenase protein-coding 10.31 0.7283
+3034 HAL histidine ammonia-lyase protein-coding 2.668 2.525
+3035 HARS histidyl-tRNA synthetase protein-coding 10.39 0.4608
3036 HAS1 hyaluronan synthase 1 protein-coding 2.488 2.231
-3037 HAS2 hyaluronan synthase 2 protein-coding 5.427 2.361
-3038 HAS3 hyaluronan synthase 3 protein-coding 7.454 2.63
-3039 HBA1 hemoglobin subunit alpha 1 protein-coding 5.337 3.011
+3037 HAS2 hyaluronan synthase 2 protein-coding 5.427 2.36
+3038 HAS3 hyaluronan synthase 3 protein-coding 7.454 2.629
+3039 HBA1 hemoglobin subunit alpha 1 protein-coding 5.339 3.013
304 ANXA2P2 annexin A2 pseudogene 2 pseudo 11.79 1.679
-3040 HBA2 hemoglobin subunit alpha 2 protein-coding 8.077 2.168
-3043 HBB hemoglobin subunit beta protein-coding 7.726 2.374
-3045 HBD hemoglobin subunit delta protein-coding 0.6836 1.115
-3048 HBG2 hemoglobin subunit gamma 2 protein-coding 0.8572 1.323
-3049 HBQ1 hemoglobin subunit theta 1 protein-coding 0.8612 1.382
-305 ANXA2P3 annexin A2 pseudogene 3 pseudo 2.912 1.823
-3052 HCCS holocytochrome c synthase protein-coding 8.91 0.6223
+3040 HBA2 hemoglobin subunit alpha 2 protein-coding 8.078 2.168
+3043 HBB hemoglobin subunit beta protein-coding 7.727 2.375
+3045 HBD hemoglobin subunit delta protein-coding 0.6831 1.115
+3048 HBG2 hemoglobin subunit gamma 2 protein-coding 0.8581 1.323
+3049 HBQ1 hemoglobin subunit theta 1 protein-coding 0.8605 1.382
+305 ANXA2P3 annexin A2 pseudogene 3 pseudo 2.911 1.822
+3052 HCCS holocytochrome c synthase protein-coding 8.91 0.622
3053 SERPIND1 serpin family D member 1 protein-coding 2.637 3.248
-3054 HCFC1 host cell factor C1 protein-coding 11.14 0.5612
-3055 HCK HCK proto-oncogene, Src family tyrosine kinase protein-coding 8.027 1.502
+3054 HCFC1 host cell factor C1 protein-coding 11.14 0.5611
+3055 HCK HCK proto-oncogene, Src family tyrosine kinase protein-coding 8.028 1.503
3059 HCLS1 hematopoietic cell-specific Lyn substrate 1 protein-coding 9.375 1.415
-306 ANXA3 annexin A3 protein-coding 8.315 2.802
-3064 HTT huntingtin protein-coding 10.95 0.578
-3065 HDAC1 histone deacetylase 1 protein-coding 11.4 0.889
-3066 HDAC2 histone deacetylase 2 protein-coding 10.96 0.7183
-3067 HDC histidine decarboxylase protein-coding 3.509 2.098
-3068 HDGF heparin binding growth factor protein-coding 12.76 0.7306
+306 ANXA3 annexin A3 protein-coding 8.317 2.802
+3064 HTT huntingtin protein-coding 10.95 0.5779
+3065 HDAC1 histone deacetylase 1 protein-coding 11.4 0.8886
+3066 HDAC2 histone deacetylase 2 protein-coding 10.96 0.7181
+3067 HDC histidine decarboxylase protein-coding 3.51 2.099
+3068 HDGF heparin binding growth factor protein-coding 12.76 0.7308
3069 HDLBP high density lipoprotein binding protein protein-coding 13.55 0.6216
-307 ANXA4 annexin A4 protein-coding 11.16 1.472
-3070 HELLS helicase, lymphoid specific protein-coding 6.858 1.615
-3071 NCKAP1L NCK associated protein 1 like protein-coding 8.121 1.664
-3073 HEXA hexosaminidase subunit alpha protein-coding 11.07 0.7863
-3074 HEXB hexosaminidase subunit beta protein-coding 11.16 0.7958
-3075 CFH complement factor H protein-coding 10.02 2.094
-3077 HFE homeostatic iron regulator protein-coding 6.79 1.465
-308 ANXA5 annexin A5 protein-coding 12.54 0.8848
-3081 HGD homogentisate 1,2-dioxygenase protein-coding 5.433 4.094
-30811 HUNK hormonally up-regulated Neu-associated kinase protein-coding 6.543 2.122
-30812 SOX8 SRY-box 8 protein-coding 5.017 3.217
-30815 ST6GALNAC6 ST6 N-acetylgalactosaminide alpha-2,6-sialyltransferase 6 protein-coding 9.972 0.8527
+307 ANXA4 annexin A4 protein-coding 11.16 1.473
+3070 HELLS helicase, lymphoid specific protein-coding 6.857 1.615
+3071 NCKAP1L NCK associated protein 1 like protein-coding 8.122 1.665
+3073 HEXA hexosaminidase subunit alpha protein-coding 11.07 0.786
+3074 HEXB hexosaminidase subunit beta protein-coding 11.16 0.7957
+3075 CFH complement factor H protein-coding 10.02 2.093
+3077 HFE homeostatic iron regulator protein-coding 6.791 1.465
+308 ANXA5 annexin A5 protein-coding 12.54 0.8845
+3081 HGD homogentisate 1,2-dioxygenase protein-coding 5.435 4.094
+30811 HUNK hormonally up-regulated Neu-associated kinase protein-coding 6.543 2.121
+30812 SOX8 SRY-box 8 protein-coding 5.018 3.216
+30815 ST6GALNAC6 ST6 N-acetylgalactosaminide alpha-2,6-sialyltransferase 6 protein-coding 9.973 0.8525
30817 ADGRE2 adhesion G protein-coupled receptor E2 protein-coding 6.906 1.447
30818 KCNIP3 potassium voltage-gated channel interacting protein 3 protein-coding 6.72 2.279
-30819 KCNIP2 potassium voltage-gated channel interacting protein 2 protein-coding 4.686 1.895
-3082 HGF hepatocyte growth factor protein-coding 4.856 1.982
-30827 CXXC1 CXXC finger protein 1 protein-coding 9.854 0.6421
-30832 ZNF354C zinc finger protein 354C protein-coding 4.441 1.775
-30833 NT5C 5', 3'-nucleotidase, cytosolic protein-coding 8.956 0.846
-30834 ZNRD1 zinc ribbon domain containing 1 protein-coding 8.694 0.7091
-30835 CD209 CD209 molecule protein-coding 5.941 1.928
-30836 DNTTIP2 deoxynucleotidyltransferase terminal interacting protein 2 protein-coding 10.29 0.5487
+30819 KCNIP2 potassium voltage-gated channel interacting protein 2 protein-coding 4.687 1.894
+3082 HGF hepatocyte growth factor protein-coding 4.857 1.982
+30827 CXXC1 CXXC finger protein 1 protein-coding 9.855 0.6418
+30832 ZNF354C zinc finger protein 354C protein-coding 4.442 1.775
+30833 NT5C 5', 3'-nucleotidase, cytosolic protein-coding 8.956 0.8458
+30834 ZNRD1 zinc ribbon domain containing 1 protein-coding 8.693 0.709
+30835 CD209 CD209 molecule protein-coding 5.942 1.928
+30836 DNTTIP2 deoxynucleotidyltransferase terminal interacting protein 2 protein-coding 10.29 0.5485
30837 SOCS7 suppressor of cytokine signaling 7 protein-coding 5.674 1.235
-3084 NRG1 neuregulin 1 protein-coding 4.858 2.536
-30844 EHD4 EH domain containing 4 protein-coding 10.12 0.8472
-30845 EHD3 EH domain containing 3 protein-coding 8.135 1.344
+3084 NRG1 neuregulin 1 protein-coding 4.859 2.535
+30844 EHD4 EH domain containing 4 protein-coding 10.12 0.847
+30845 EHD3 EH domain containing 3 protein-coding 8.135 1.343
30846 EHD2 EH domain containing 2 protein-coding 10.8 1.388
-30849 PIK3R4 phosphoinositide-3-kinase regulatory subunit 4 protein-coding 9.569 0.5836
+30849 PIK3R4 phosphoinositide-3-kinase regulatory subunit 4 protein-coding 9.569 0.5834
30850 CDR2L cerebellar degeneration related protein 2 like protein-coding 9.013 1.338
-30851 TAX1BP3 Tax1 binding protein 3 protein-coding 11.17 0.9368
-3087 HHEX hematopoietically expressed homeobox protein-coding 7.146 1.806
+30851 TAX1BP3 Tax1 binding protein 3 protein-coding 11.17 0.9365
+3087 HHEX hematopoietically expressed homeobox protein-coding 7.148 1.807
309 ANXA6 annexin A6 protein-coding 11.33 1.257
-3090 HIC1 HIC ZBTB transcriptional repressor 1 protein-coding 6.853 1.377
+3090 HIC1 HIC ZBTB transcriptional repressor 1 protein-coding 6.855 1.377
3091 HIF1A hypoxia inducible factor 1 alpha subunit protein-coding 11.71 1.047
3092 HIP1 huntingtin interacting protein 1 protein-coding 9.594 1.302
-3093 UBE2K ubiquitin conjugating enzyme E2 K protein-coding 10.83 0.4501
-3094 HINT1 histidine triad nucleotide binding protein 1 protein-coding 11.92 0.6774
-3096 HIVEP1 human immunodeficiency virus type I enhancer binding protein 1 protein-coding 9.088 0.8632
-30968 STOML2 stomatin like 2 protein-coding 10.84 0.6316
-3097 HIVEP2 human immunodeficiency virus type I enhancer binding protein 2 protein-coding 9.649 0.8737
-3098 HK1 hexokinase 1 protein-coding 11.47 0.9839
+3093 UBE2K ubiquitin conjugating enzyme E2 K protein-coding 10.83 0.45
+3094 HINT1 histidine triad nucleotide binding protein 1 protein-coding 11.92 0.6772
+3096 HIVEP1 human immunodeficiency virus type I enhancer binding protein 1 protein-coding 9.089 0.863
+30968 STOML2 stomatin like 2 protein-coding 10.84 0.6317
+3097 HIVEP2 human immunodeficiency virus type I enhancer binding protein 2 protein-coding 9.65 0.8736
+3098 HK1 hexokinase 1 protein-coding 11.47 0.9836
3099 HK2 hexokinase 2 protein-coding 10.33 1.796
-31 ACACA acetyl-CoA carboxylase alpha protein-coding 10.63 0.9479
-310 ANXA7 annexin A7 protein-coding 11.4 0.546
-3101 HK3 hexokinase 3 protein-coding 5.821 1.876
-3104 ZBTB48 zinc finger and BTB domain containing 48 protein-coding 8.609 0.6764
+31 ACACA acetyl-CoA carboxylase alpha protein-coding 10.63 0.9478
+310 ANXA7 annexin A7 protein-coding 11.4 0.5457
+3101 HK3 hexokinase 3 protein-coding 5.821 1.878
+3104 ZBTB48 zinc finger and BTB domain containing 48 protein-coding 8.609 0.6763
3105 HLA-A major histocompatibility complex, class I, A protein-coding 14.51 1.204
3106 HLA-B major histocompatibility complex, class I, B protein-coding 14.72 1.301
3107 HLA-C major histocompatibility complex, class I, C protein-coding 14.2 1.114
3108 HLA-DMA major histocompatibility complex, class II, DM alpha protein-coding 10.07 1.412
-3109 HLA-DMB major histocompatibility complex, class II, DM beta protein-coding 9.776 1.601
+3109 HLA-DMB major histocompatibility complex, class II, DM beta protein-coding 9.777 1.601
311 ANXA11 annexin A11 protein-coding 11.83 1.046
-3111 HLA-DOA major histocompatibility complex, class II, DO alpha protein-coding 8.533 1.813
+3111 HLA-DOA major histocompatibility complex, class II, DO alpha protein-coding 8.534 1.813
3112 HLA-DOB major histocompatibility complex, class II, DO beta protein-coding 5.321 1.998
3113 HLA-DPA1 major histocompatibility complex, class II, DP alpha 1 protein-coding 11.76 1.642
3115 HLA-DPB1 major histocompatibility complex, class II, DP beta 1 protein-coding 11.22 1.597
-3116 HLA-DPB2 major histocompatibility complex, class II, DP beta 2 (pseudogene) pseudo 2.507 1.64
-3117 HLA-DQA1 major histocompatibility complex, class II, DQ alpha 1 protein-coding 9.734 2.071
-3118 HLA-DQA2 major histocompatibility complex, class II, DQ alpha 2 protein-coding 7.406 2.268
+3116 HLA-DPB2 major histocompatibility complex, class II, DP beta 2 (pseudogene) pseudo 2.508 1.64
+3117 HLA-DQA1 major histocompatibility complex, class II, DQ alpha 1 protein-coding 9.735 2.071
+3118 HLA-DQA2 major histocompatibility complex, class II, DQ alpha 2 protein-coding 7.407 2.268
3119 HLA-DQB1 major histocompatibility complex, class II, DQ beta 1 protein-coding 10.31 1.955
-3120 HLA-DQB2 major histocompatibility complex, class II, DQ beta 2 protein-coding 6.166 2.387
-3122 HLA-DRA major histocompatibility complex, class II, DR alpha protein-coding 13.06 1.674
-3123 HLA-DRB1 major histocompatibility complex, class II, DR beta 1 protein-coding 11.62 1.741
-3127 HLA-DRB5 major histocompatibility complex, class II, DR beta 5 protein-coding 9.798 1.984
-3128 HLA-DRB6 major histocompatibility complex, class II, DR beta 6 (pseudogene) pseudo 7.603 2.115
-313 AOAH acyloxyacyl hydrolase protein-coding 6.453 1.865
-3131 HLF HLF, PAR bZIP transcription factor protein-coding 7.181 2.401
+3120 HLA-DQB2 major histocompatibility complex, class II, DQ beta 2 protein-coding 6.168 2.388
+3122 HLA-DRA major histocompatibility complex, class II, DR alpha protein-coding 13.07 1.675
+3123 HLA-DRB1 major histocompatibility complex, class II, DR beta 1 protein-coding 11.63 1.741
+3127 HLA-DRB5 major histocompatibility complex, class II, DR beta 5 protein-coding 9.799 1.984
+3128 HLA-DRB6 major histocompatibility complex, class II, DR beta 6 (pseudogene) pseudo 7.604 2.114
+313 AOAH acyloxyacyl hydrolase protein-coding 6.455 1.866
+3131 HLF HLF, PAR bZIP transcription factor protein-coding 7.183 2.401
3133 HLA-E major histocompatibility complex, class I, E protein-coding 12.96 0.9644
3134 HLA-F major histocompatibility complex, class I, F protein-coding 10.45 1.451
-3135 HLA-G major histocompatibility complex, class I, G protein-coding 6.548 1.937
+3135 HLA-G major histocompatibility complex, class I, G protein-coding 6.549 1.937
3136 HLA-H major histocompatibility complex, class I, H (pseudogene) pseudo 11.07 1.236
-3137 HLA-J major histocompatibility complex, class I, J (pseudogene) pseudo 3.636 1.619
-3139 HLA-L major histocompatibility complex, class I, L (pseudogene) pseudo 5.171 1.186
-314 AOC2 amine oxidase, copper containing 2 protein-coding 4.141 1.278
-3140 MR1 major histocompatibility complex, class I-related protein-coding 7.459 1.148
-3141 HLCS holocarboxylase synthetase protein-coding 9.159 0.6837
-3142 HLX H2.0 like homeobox protein-coding 7.126 1.247
-3145 HMBS hydroxymethylbilane synthase protein-coding 8.919 0.7392
-3146 HMGB1 high mobility group box 1 protein-coding 12.41 0.6037
+3137 HLA-J major histocompatibility complex, class I, J (pseudogene) pseudo 3.637 1.619
+3139 HLA-L major histocompatibility complex, class I, L (pseudogene) pseudo 5.172 1.186
+314 AOC2 amine oxidase, copper containing 2 protein-coding 4.141 1.279
+3140 MR1 major histocompatibility complex, class I-related protein-coding 7.459 1.147
+3141 HLCS holocarboxylase synthetase protein-coding 9.159 0.6835
+3142 HLX H2.0 like homeobox protein-coding 7.127 1.247
+3145 HMBS hydroxymethylbilane synthase protein-coding 8.918 0.7395
+3146 HMGB1 high mobility group box 1 protein-coding 12.41 0.6036
3148 HMGB2 high mobility group box 2 protein-coding 10.93 1.117
-3149 HMGB3 high mobility group box 3 protein-coding 10.13 1.417
-3150 HMGN1 high mobility group nucleosome binding domain 1 protein-coding 11.46 0.7082
-3151 HMGN2 high mobility group nucleosomal binding domain 2 protein-coding 12.48 0.7504
-3155 HMGCL 3-hydroxymethyl-3-methylglutaryl-CoA lyase protein-coding 9.896 0.8282
-3156 HMGCR 3-hydroxy-3-methylglutaryl-CoA reductase protein-coding 10.29 0.9129
+3149 HMGB3 high mobility group box 3 protein-coding 10.13 1.418
+3150 HMGN1 high mobility group nucleosome binding domain 1 protein-coding 11.46 0.7083
+3151 HMGN2 high mobility group nucleosomal binding domain 2 protein-coding 12.48 0.7502
+3155 HMGCL 3-hydroxymethyl-3-methylglutaryl-CoA lyase protein-coding 9.896 0.8279
+3156 HMGCR 3-hydroxy-3-methylglutaryl-CoA reductase protein-coding 10.29 0.9126
3157 HMGCS1 3-hydroxy-3-methylglutaryl-CoA synthase 1 protein-coding 10.66 1.143
3159 HMGA1 high mobility group AT-hook 1 protein-coding 11.34 1.678
-316 AOX1 aldehyde oxidase 1 protein-coding 6.283 3.053
-3161 HMMR hyaluronan mediated motility receptor protein-coding 7.355 1.916
-3162 HMOX1 heme oxygenase 1 protein-coding 9.661 1.55
+316 AOX1 aldehyde oxidase 1 protein-coding 6.286 3.054
+3161 HMMR hyaluronan mediated motility receptor protein-coding 7.353 1.917
+3162 HMOX1 heme oxygenase 1 protein-coding 9.66 1.551
3163 HMOX2 heme oxygenase 2 protein-coding 10.17 0.606
-3164 NR4A1 nuclear receptor subfamily 4 group A member 1 protein-coding 10.5 1.779
-317 APAF1 apoptotic peptidase activating factor 1 protein-coding 8.837 0.7073
-3171 FOXA3 forkhead box A3 protein-coding 4.079 3.314
-3176 HNMT histamine N-methyltransferase protein-coding 9.113 1.585
-317648 NOP14-AS1 NOP14 antisense RNA 1 ncRNA 8.23 0.7153
-317649 EIF4E3 eukaryotic translation initiation factor 4E family member 3 protein-coding 8.92 1.103
-317662 FAM149B1 family with sequence similarity 149 member B1 protein-coding 8.658 0.5823
-317671 RFESD Rieske Fe-S domain containing protein-coding 4.565 0.8667
-3177 SLC29A2 solute carrier family 29 member 2 protein-coding 7.667 1.739
-317719 KLHL10 kelch like family member 10 protein-coding 1.153 0.9322
-317749 DHRS4L2 dehydrogenase/reductase 4 like 2 protein-coding 8.419 0.9103
-317751 MESTIT1 MEST intronic transcript 1, antisense RNA ncRNA 1.468 1.735
-317762 CCDC85C coiled-coil domain containing 85C protein-coding 9.722 0.9318
-317772 HIST2H2AB histone cluster 2 H2A family member b protein-coding 0.5514 0.8581
-317781 DDX51 DEAD-box helicase 51 protein-coding 9.091 0.6167
-3178 HNRNPA1 heterogeneous nuclear ribonucleoprotein A1 protein-coding 12.67 0.595
-318 NUDT2 nudix hydrolase 2 protein-coding 8.258 0.8846
-3181 HNRNPA2B1 heterogeneous nuclear ribonucleoprotein A2/B1 protein-coding 13.83 0.4429
-3182 HNRNPAB heterogeneous nuclear ribonucleoprotein A/B protein-coding 11.66 0.6581
-3183 HNRNPC heterogeneous nuclear ribonucleoprotein C (C1/C2) protein-coding 13.18 0.4033
-3184 HNRNPD heterogeneous nuclear ribonucleoprotein D protein-coding 11.97 0.5054
+3164 NR4A1 nuclear receptor subfamily 4 group A member 1 protein-coding 10.51 1.78
+317 APAF1 apoptotic peptidase activating factor 1 protein-coding 8.837 0.7071
+3171 FOXA3 forkhead box A3 protein-coding 4.081 3.314
+3176 HNMT histamine N-methyltransferase protein-coding 9.114 1.585
+317648 NOP14-AS1 NOP14 antisense RNA 1 ncRNA 8.23 0.7152
+317649 EIF4E3 eukaryotic translation initiation factor 4E family member 3 protein-coding 8.921 1.103
+317662 FAM149B1 family with sequence similarity 149 member B1 protein-coding 8.658 0.5821
+317671 RFESD Rieske Fe-S domain containing protein-coding 4.566 0.8667
+3177 SLC29A2 solute carrier family 29 member 2 protein-coding 7.667 1.738
+317719 KLHL10 kelch like family member 10 protein-coding 1.154 0.9331
+317749 DHRS4L2 dehydrogenase/reductase 4 like 2 protein-coding 8.419 0.91
+317751 MESTIT1 MEST intronic transcript 1, antisense RNA ncRNA 1.469 1.735
+317762 CCDC85C coiled-coil domain containing 85C protein-coding 9.722 0.9315
+317772 HIST2H2AB histone cluster 2 H2A family member b protein-coding 0.5512 0.8581
+317781 DDX51 DEAD-box helicase 51 protein-coding 9.091 0.6164
+3178 HNRNPA1 heterogeneous nuclear ribonucleoprotein A1 protein-coding 12.67 0.5949
+318 NUDT2 nudix hydrolase 2 protein-coding 8.258 0.8845
+3181 HNRNPA2B1 heterogeneous nuclear ribonucleoprotein A2/B1 protein-coding 13.83 0.4428
+3182 HNRNPAB heterogeneous nuclear ribonucleoprotein A/B protein-coding 11.66 0.6583
+3183 HNRNPC heterogeneous nuclear ribonucleoprotein C (C1/C2) protein-coding 13.18 0.4034
+3184 HNRNPD heterogeneous nuclear ribonucleoprotein D protein-coding 11.97 0.5052
3185 HNRNPF heterogeneous nuclear ribonucleoprotein F protein-coding 12.1 0.6519
-3187 HNRNPH1 heterogeneous nuclear ribonucleoprotein H1 protein-coding 12 0.5326
-3188 HNRNPH2 heterogeneous nuclear ribonucleoprotein H2 protein-coding 11.14 0.4534
-3189 HNRNPH3 heterogeneous nuclear ribonucleoprotein H3 protein-coding 11.22 0.4836
-3190 HNRNPK heterogeneous nuclear ribonucleoprotein K protein-coding 13.51 0.3167
-319085 ITPK1-AS1 ITPK1 antisense RNA 1 ncRNA 0.4598 0.6561
-3191 HNRNPL heterogeneous nuclear ribonucleoprotein L protein-coding 12.39 0.3868
+3187 HNRNPH1 heterogeneous nuclear ribonucleoprotein H1 protein-coding 12 0.5324
+3188 HNRNPH2 heterogeneous nuclear ribonucleoprotein H2 protein-coding 11.14 0.4533
+3189 HNRNPH3 heterogeneous nuclear ribonucleoprotein H3 protein-coding 11.22 0.4835
+3190 HNRNPK heterogeneous nuclear ribonucleoprotein K protein-coding 13.51 0.3166
+319085 ITPK1-AS1 ITPK1 antisense RNA 1 ncRNA 0.4602 0.6564
+3191 HNRNPL heterogeneous nuclear ribonucleoprotein L protein-coding 12.39 0.3867
3192 HNRNPU heterogeneous nuclear ribonucleoprotein U protein-coding 13.26 0.3933
-3196 TLX2 T cell leukemia homeobox 2 protein-coding 1.364 1.874
-3198 HOXA1 homeobox A1 protein-coding 4.553 2.044
-3199 HOXA2 homeobox A2 protein-coding 3.528 1.886
-32 ACACB acetyl-CoA carboxylase beta protein-coding 8.409 1.484
-320 APBA1 amyloid beta precursor protein binding family A member 1 protein-coding 7.101 1.545
+3196 TLX2 T cell leukemia homeobox 2 protein-coding 1.365 1.875
+3198 HOXA1 homeobox A1 protein-coding 4.553 2.043
+3199 HOXA2 homeobox A2 protein-coding 3.529 1.886
+32 ACACB acetyl-CoA carboxylase beta protein-coding 8.411 1.484
+320 APBA1 amyloid beta precursor protein binding family A member 1 protein-coding 7.102 1.545
3200 HOXA3 homeobox A3 protein-coding 6.053 2.378
-3201 HOXA4 homeobox A4 protein-coding 5.22 2.157
+3201 HOXA4 homeobox A4 protein-coding 5.221 2.157
3202 HOXA5 homeobox A5 protein-coding 4.97 2.29
-3203 HOXA6 homeobox A6 protein-coding 2.664 1.906
-3204 HOXA7 homeobox A7 protein-coding 5.674 2.783
+3203 HOXA6 homeobox A6 protein-coding 2.664 1.907
+3204 HOXA7 homeobox A7 protein-coding 5.674 2.782
3205 HOXA9 homeobox A9 protein-coding 5.078 3.182
-3206 HOXA10 homeobox A10 protein-coding 6.873 3.106
-3207 HOXA11 homeobox A11 protein-coding 4.542 3.042
-3208 HPCA hippocalcin protein-coding 3.276 2.117
-3209 HOXA13 homeobox A13 protein-coding 3.607 3.075
-321 APBA2 amyloid beta precursor protein binding family A member 2 protein-coding 7.221 2.332
-3212 HOXB2 homeobox B2 protein-coding 6.976 2.304
-3213 HOXB3 homeobox B3 protein-coding 7.316 2.408
-3214 HOXB4 homeobox B4 protein-coding 5.681 2.173
-3215 HOXB5 homeobox B5 protein-coding 5.145 2.756
-3216 HOXB6 homeobox B6 protein-coding 6.008 2.788
-3217 HOXB7 homeobox B7 protein-coding 6.984 2.516
-3218 HOXB8 homeobox B8 protein-coding 4.074 3.282
-3219 HOXB9 homeobox B9 protein-coding 4.81 3.459
-322 APBB1 amyloid beta precursor protein binding family B member 1 protein-coding 8.824 1.723
+3206 HOXA10 homeobox A10 protein-coding 6.872 3.107
+3207 HOXA11 homeobox A11 protein-coding 4.541 3.042
+3208 HPCA hippocalcin protein-coding 3.276 2.116
+3209 HOXA13 homeobox A13 protein-coding 3.607 3.076
+321 APBA2 amyloid beta precursor protein binding family A member 2 protein-coding 7.22 2.331
+3212 HOXB2 homeobox B2 protein-coding 6.977 2.303
+3213 HOXB3 homeobox B3 protein-coding 7.317 2.407
+3214 HOXB4 homeobox B4 protein-coding 5.682 2.172
+3215 HOXB5 homeobox B5 protein-coding 5.145 2.755
+3216 HOXB6 homeobox B6 protein-coding 6.007 2.788
+3217 HOXB7 homeobox B7 protein-coding 6.983 2.515
+3218 HOXB8 homeobox B8 protein-coding 4.072 3.282
+3219 HOXB9 homeobox B9 protein-coding 4.808 3.458
+322 APBB1 amyloid beta precursor protein binding family B member 1 protein-coding 8.826 1.723
3221 HOXC4 homeobox C4 protein-coding 5.359 2.195
3223 HOXC6 homeobox C6 protein-coding 5.401 2.835
323 APBB2 amyloid beta precursor protein binding family B member 2 protein-coding 9.833 1.058
-3234 HOXD8 homeobox D8 protein-coding 6.077 2.054
-324 APC APC, WNT signaling pathway regulator protein-coding 9.432 0.9997
-3240 HP haptoglobin protein-coding 4.842 4.256
-3241 HPCAL1 hippocalcin like 1 protein-coding 9.921 0.9304
-3242 HPD 4-hydroxyphenylpyruvate dioxygenase protein-coding 2.583 3.155
-3248 HPGD 15-hydroxyprostaglandin dehydrogenase protein-coding 7.286 2.917
-3249 HPN hepsin protein-coding 7.006 4.138
-3250 HPR haptoglobin-related protein protein-coding 2.116 3.181
-3251 HPRT1 hypoxanthine phosphoribosyltransferase 1 protein-coding 9.454 0.8711
-3257 HPS1 HPS1, biogenesis of lysosomal organelles complex 3 subunit 1 protein-coding 10.24 0.7948
-326 AIRE autoimmune regulator protein-coding 0.8279 1.414
-3263 HPX hemopexin protein-coding 3.993 3.142
-326342 ADGRE4P adhesion G protein-coupled receptor E4, pseudogene pseudo 2.36 1.489
-3265 HRAS HRas proto-oncogene, GTPase protein-coding 9.486 0.9153
-3266 ERAS ES cell expressed Ras protein-coding 1.314 1.209
-326624 RAB37 RAB37, member RAS oncogene family protein-coding 6.067 1.664
-326625 MMAB methylmalonic aciduria (cobalamin deficiency) cblB type protein-coding 9.373 0.8273
-3267 AGFG1 ArfGAP with FG repeats 1 protein-coding 10.57 0.575
+3234 HOXD8 homeobox D8 protein-coding 6.077 2.053
+324 APC APC, WNT signaling pathway regulator protein-coding 9.432 0.9993
+3240 HP haptoglobin protein-coding 4.842 4.255
+3241 HPCAL1 hippocalcin like 1 protein-coding 9.921 0.9305
+3242 HPD 4-hydroxyphenylpyruvate dioxygenase protein-coding 2.584 3.154
+3248 HPGD 15-hydroxyprostaglandin dehydrogenase protein-coding 7.288 2.917
+3249 HPN hepsin protein-coding 7.007 4.137
+3250 HPR haptoglobin-related protein protein-coding 2.115 3.179
+3251 HPRT1 hypoxanthine phosphoribosyltransferase 1 protein-coding 9.453 0.8711
+3257 HPS1 HPS1, biogenesis of lysosomal organelles complex 3 subunit 1 protein-coding 10.24 0.7947
+326 AIRE autoimmune regulator protein-coding 0.8279 1.413
+3263 HPX hemopexin protein-coding 3.993 3.14
+326342 ADGRE4P adhesion G protein-coupled receptor E4, pseudogene pseudo 2.361 1.491
+3265 HRAS HRas proto-oncogene, GTPase protein-coding 9.485 0.9153
+3266 ERAS ES cell expressed Ras protein-coding 1.314 1.208
+326624 RAB37 RAB37, member RAS oncogene family protein-coding 6.068 1.665
+326625 MMAB methylmalonic aciduria (cobalamin deficiency) cblB type protein-coding 9.373 0.8271
+3267 AGFG1 ArfGAP with FG repeats 1 protein-coding 10.57 0.5748
3268 AGFG2 ArfGAP with FG repeats 2 protein-coding 9.191 1.02
-3269 HRH1 histamine receptor H1 protein-coding 7.721 1.58
-327 APEH acylaminoacyl-peptide hydrolase protein-coding 11.03 0.653
-3270 HRC histidine rich calcium binding protein protein-coding 4.186 1.831
-3274 HRH2 histamine receptor H2 protein-coding 3.866 1.861
-3275 PRMT2 protein arginine methyltransferase 2 protein-coding 10.76 0.6416
-3276 PRMT1 protein arginine methyltransferase 1 protein-coding 11.3 0.6724
-328 APEX1 apurinic/apyrimidinic endodeoxyribonuclease 1 protein-coding 11.57 0.5119
-3280 HES1 hes family bHLH transcription factor 1 protein-coding 10.01 1.257
+3269 HRH1 histamine receptor H1 protein-coding 7.72 1.58
+327 APEH acylaminoacyl-peptide hydrolase protein-coding 11.03 0.6529
+3270 HRC histidine rich calcium binding protein protein-coding 4.187 1.831
+3274 HRH2 histamine receptor H2 protein-coding 3.867 1.861
+3275 PRMT2 protein arginine methyltransferase 2 protein-coding 10.76 0.6414
+3276 PRMT1 protein arginine methyltransferase 1 protein-coding 11.3 0.6723
+328 APEX1 apurinic/apyrimidinic endodeoxyribonuclease 1 protein-coding 11.57 0.512
+3280 HES1 hes family bHLH transcription factor 1 protein-coding 10.01 1.258
3281 HSBP1 heat shock factor binding protein 1 protein-coding 11.28 0.5848
-329 BIRC2 baculoviral IAP repeat containing 2 protein-coding 10.13 0.631
-3290 HSD11B1 hydroxysteroid 11-beta dehydrogenase 1 protein-coding 5.111 2.498
-3291 HSD11B2 hydroxysteroid 11-beta dehydrogenase 2 protein-coding 7.373 2.156
-3292 HSD17B1 hydroxysteroid 17-beta dehydrogenase 1 protein-coding 6.166 1.345
-3293 HSD17B3 hydroxysteroid 17-beta dehydrogenase 3 protein-coding 2.531 1.914
-3295 HSD17B4 hydroxysteroid 17-beta dehydrogenase 4 protein-coding 11.18 0.8356
-3297 HSF1 heat shock transcription factor 1 protein-coding 10.95 0.6285
-3298 HSF2 heat shock transcription factor 2 protein-coding 8.188 0.6855
-3299 HSF4 heat shock transcription factor 4 protein-coding 7.077 1.59
-330 BIRC3 baculoviral IAP repeat containing 3 protein-coding 8.46 2.097
-3300 DNAJB2 DnaJ heat shock protein family (Hsp40) member B2 protein-coding 11.13 0.7413
-3301 DNAJA1 DnaJ heat shock protein family (Hsp40) member A1 protein-coding 11.59 0.6229
-3303 HSPA1A heat shock protein family A (Hsp70) member 1A protein-coding 13.39 1.167
-3304 HSPA1B heat shock protein family A (Hsp70) member 1B protein-coding 11 1.175
-3305 HSPA1L heat shock protein family A (Hsp70) member 1 like protein-coding 5.79 0.8984
-3306 HSPA2 heat shock protein family A (Hsp70) member 2 protein-coding 8.652 1.768
-3308 HSPA4 heat shock protein family A (Hsp70) member 4 protein-coding 11.23 0.573
-3309 HSPA5 heat shock protein family A (Hsp70) member 5 protein-coding 13.96 0.7136
-331 XIAP X-linked inhibitor of apoptosis protein-coding 10.46 0.568
+329 BIRC2 baculoviral IAP repeat containing 2 protein-coding 10.13 0.6307
+3290 HSD11B1 hydroxysteroid 11-beta dehydrogenase 1 protein-coding 5.113 2.499
+3291 HSD11B2 hydroxysteroid 11-beta dehydrogenase 2 protein-coding 7.374 2.157
+3292 HSD17B1 hydroxysteroid 17-beta dehydrogenase 1 protein-coding 6.165 1.345
+3293 HSD17B3 hydroxysteroid 17-beta dehydrogenase 3 protein-coding 2.532 1.914
+3295 HSD17B4 hydroxysteroid 17-beta dehydrogenase 4 protein-coding 11.18 0.8354
+3297 HSF1 heat shock transcription factor 1 protein-coding 10.95 0.6283
+3298 HSF2 heat shock transcription factor 2 protein-coding 8.188 0.6853
+3299 HSF4 heat shock transcription factor 4 protein-coding 7.078 1.589
+330 BIRC3 baculoviral IAP repeat containing 3 protein-coding 8.461 2.098
+3300 DNAJB2 DnaJ heat shock protein family (Hsp40) member B2 protein-coding 11.13 0.7412
+3301 DNAJA1 DnaJ heat shock protein family (Hsp40) member A1 protein-coding 11.59 0.6227
+3303 HSPA1A heat shock protein family A (Hsp70) member 1A protein-coding 13.39 1.168
+3304 HSPA1B heat shock protein family A (Hsp70) member 1B protein-coding 11 1.176
+3305 HSPA1L heat shock protein family A (Hsp70) member 1 like protein-coding 5.791 0.8984
+3306 HSPA2 heat shock protein family A (Hsp70) member 2 protein-coding 8.651 1.767
+3308 HSPA4 heat shock protein family A (Hsp70) member 4 protein-coding 11.23 0.5731
+3309 HSPA5 heat shock protein family A (Hsp70) member 5 protein-coding 13.96 0.7137
+331 XIAP X-linked inhibitor of apoptosis protein-coding 10.46 0.5677
3310 HSPA6 heat shock protein family A (Hsp70) member 6 protein-coding 7.435 1.676
3311 HSPA7 heat shock protein family A (Hsp70) member 7 pseudo 6.008 1.781
-3312 HSPA8 heat shock protein family A (Hsp70) member 8 protein-coding 14.34 0.7632
+3312 HSPA8 heat shock protein family A (Hsp70) member 8 protein-coding 14.34 0.7628
3313 HSPA9 heat shock protein family A (Hsp70) member 9 protein-coding 12.55 0.6128
3315 HSPB1 heat shock protein family B (small) member 1 protein-coding 13.26 1.523
-3316 HSPB2 heat shock protein family B (small) member 2 protein-coding 5.866 1.907
-332 BIRC5 baculoviral IAP repeat containing 5 protein-coding 7.775 2.214
-3320 HSP90AA1 heat shock protein 90 alpha family class A member 1 protein-coding 14.42 0.7075
-3321 IGSF3 immunoglobulin superfamily member 3 protein-coding 10.07 1.547
+3316 HSPB2 heat shock protein family B (small) member 2 protein-coding 5.867 1.906
+332 BIRC5 baculoviral IAP repeat containing 5 protein-coding 7.773 2.215
+3320 HSP90AA1 heat shock protein 90 alpha family class A member 1 protein-coding 14.42 0.7073
+3321 IGSF3 immunoglobulin superfamily member 3 protein-coding 10.07 1.546
3326 HSP90AB1 heat shock protein 90 alpha family class B member 1 protein-coding 14.78 0.643
-3329 HSPD1 heat shock protein family D (Hsp60) member 1 protein-coding 12.91 0.8059
-333 APLP1 amyloid beta precursor like protein 1 protein-coding 6.698 2.93
-3336 HSPE1 heat shock protein family E (Hsp10) member 1 protein-coding 11.06 0.8492
-3337 DNAJB1 DnaJ heat shock protein family (Hsp40) member B1 protein-coding 11.73 0.8293
-3338 DNAJC4 DnaJ heat shock protein family (Hsp40) member C4 protein-coding 9.4 0.8618
+3329 HSPD1 heat shock protein family D (Hsp60) member 1 protein-coding 12.91 0.8062
+333 APLP1 amyloid beta precursor like protein 1 protein-coding 6.7 2.93
+3336 HSPE1 heat shock protein family E (Hsp10) member 1 protein-coding 11.06 0.8496
+3337 DNAJB1 DnaJ heat shock protein family (Hsp40) member B1 protein-coding 11.73 0.8295
+3338 DNAJC4 DnaJ heat shock protein family (Hsp40) member C4 protein-coding 9.4 0.8615
3339 HSPG2 heparan sulfate proteoglycan 2 protein-coding 12.47 1.471
333926 PPM1J protein phosphatase, Mg2+/Mn2+ dependent 1J protein-coding 5.604 1.633
-333929 SNAI3 snail family transcriptional repressor 3 protein-coding 4.558 1.135
-334 APLP2 amyloid beta precursor like protein 2 protein-coding 13.78 0.9578
-3340 NDST1 N-deacetylase and N-sulfotransferase 1 protein-coding 11.21 0.8395
-3344 FOXN2 forkhead box N2 protein-coding 8.716 0.8601
-335 APOA1 apolipoprotein A1 protein-coding 3.066 3.686
-3355 HTR1F 5-hydroxytryptamine receptor 1F protein-coding 2.186 1.447
-3356 HTR2A 5-hydroxytryptamine receptor 2A protein-coding 1.98 1.91
-3357 HTR2B 5-hydroxytryptamine receptor 2B protein-coding 4.314 1.9
+333929 SNAI3 snail family transcriptional repressor 3 protein-coding 4.559 1.136
+334 APLP2 amyloid beta precursor like protein 2 protein-coding 13.78 0.9577
+3340 NDST1 N-deacetylase and N-sulfotransferase 1 protein-coding 11.21 0.8393
+3344 FOXN2 forkhead box N2 protein-coding 8.716 0.86
+335 APOA1 apolipoprotein A1 protein-coding 3.067 3.685
+3355 HTR1F 5-hydroxytryptamine receptor 1F protein-coding 2.187 1.446
+3356 HTR2A 5-hydroxytryptamine receptor 2A protein-coding 1.981 1.91
+3357 HTR2B 5-hydroxytryptamine receptor 2B protein-coding 4.314 1.899
3359 HTR3A 5-hydroxytryptamine receptor 3A protein-coding 2.252 2.355
3362 HTR6 5-hydroxytryptamine receptor 6 protein-coding 0.8968 1.349
-3363 HTR7 5-hydroxytryptamine receptor 7 protein-coding 3.632 1.996
+3363 HTR7 5-hydroxytryptamine receptor 7 protein-coding 3.632 1.995
3364 HUS1 HUS1 checkpoint clamp component protein-coding 8.344 0.5596
3371 TNC tenascin C protein-coding 11.12 2.338
-3373 HYAL1 hyaluronoglucosaminidase 1 protein-coding 6.782 2.176
-3376 IARS isoleucyl-tRNA synthetase protein-coding 11.25 0.6576
-337867 UBAC2 UBA domain containing 2 protein-coding 10.63 0.5579
-337875 HIST2H2BA histone cluster 2 H2B family member a (pseudogene) pseudo 3.203 1.336
+3373 HYAL1 hyaluronoglucosaminidase 1 protein-coding 6.783 2.176
+3376 IARS isoleucyl-tRNA synthetase protein-coding 11.25 0.6575
+337867 UBAC2 UBA domain containing 2 protein-coding 10.63 0.5578
+337875 HIST2H2BA histone cluster 2 H2B family member a (pseudogene) pseudo 3.205 1.337
337876 CHSY3 chondroitin sulfate synthase 3 protein-coding 5.472 1.571
-338 APOB apolipoprotein B protein-coding 3.083 3.813
-338069 ST7-OT4 ST7 overlapping transcript 4 ncRNA 0.9724 0.806
+338 APOB apolipoprotein B protein-coding 3.083 3.812
+338069 ST7-OT4 ST7 overlapping transcript 4 ncRNA 0.9721 0.8059
338094 FAM151A family with sequence similarity 151 member A protein-coding 1.781 2.159
-3382 ICA1 islet cell autoantigen 1 protein-coding 8.535 1.797
+3382 ICA1 islet cell autoantigen 1 protein-coding 8.536 1.796
3383 ICAM1 intercellular adhesion molecule 1 protein-coding 10.44 1.709
-338321 NLRP9 NLR family pyrin domain containing 9 protein-coding 2.178 1.54
-338328 GPIHBP1 glycosylphosphatidylinositol anchored high density lipoprotein binding protein 1 protein-coding 4.794 2.217
-338339 CLEC4D C-type lectin domain family 4 member D protein-coding 1.557 1.546
+338321 NLRP9 NLR family pyrin domain containing 9 protein-coding 2.181 1.544
+338328 GPIHBP1 glycosylphosphatidylinositol anchored high density lipoprotein binding protein 1 protein-coding 4.795 2.217
+338339 CLEC4D C-type lectin domain family 4 member D protein-coding 1.558 1.547
3384 ICAM2 intercellular adhesion molecule 2 protein-coding 8.075 1.208
-338440 ANO9 anoctamin 9 protein-coding 7.109 2.837
+338440 ANO9 anoctamin 9 protein-coding 7.109 2.836
338442 HCAR2 hydroxycarboxylic acid receptor 2 protein-coding 5.349 2.903
-3385 ICAM3 intercellular adhesion molecule 3 protein-coding 8.393 1.079
-338557 FFAR4 free fatty acid receptor 4 protein-coding 2.502 1.783
-338596 ST8SIA6 ST8 alpha-N-acetyl-neuraminide alpha-2,8-sialyltransferase 6 protein-coding 2.071 2.083
-3386 ICAM4 intercellular adhesion molecule 4 (Landsteiner-Wiener blood group) protein-coding 3.827 2.129
+3385 ICAM3 intercellular adhesion molecule 3 protein-coding 8.394 1.079
+338557 FFAR4 free fatty acid receptor 4 protein-coding 2.503 1.783
+338596 ST8SIA6 ST8 alpha-N-acetyl-neuraminide alpha-2,8-sialyltransferase 6 protein-coding 2.072 2.082
+3386 ICAM4 intercellular adhesion molecule 4 (Landsteiner-Wiener blood group) protein-coding 3.827 2.128
338651 KRTAP5-AS1 KRTAP5-1/KRTAP5-2 antisense RNA 1 ncRNA 3.415 2.054
-338657 CCDC84 coiled-coil domain containing 84 protein-coding 7.014 0.8965
-338692 ANKRD13D ankyrin repeat domain 13D protein-coding 9.347 0.8114
-338699 ANKRD42 ankyrin repeat domain 42 protein-coding 7.832 0.7879
-338707 B4GALNT4 beta-1,4-N-acetyl-galactosaminyltransferase 4 protein-coding 6.398 3.351
-338758 ATP2B1-AS1 ATP2B1 antisense RNA 1 ncRNA 5.061 1.164
-338773 TMEM119 transmembrane protein 119 protein-coding 7.884 1.988
-338799 LINC01089 long intergenic non-protein coding RNA 1089 ncRNA 7.832 1.265
-338811 FAM19A2 family with sequence similarity 19 member A2, C-C motif chemokine like protein-coding 3.756 1.879
+338657 CCDC84 coiled-coil domain containing 84 protein-coding 7.014 0.8963
+338692 ANKRD13D ankyrin repeat domain 13D protein-coding 9.348 0.8112
+338699 ANKRD42 ankyrin repeat domain 42 protein-coding 7.833 0.7877
+338707 B4GALNT4 beta-1,4-N-acetyl-galactosaminyltransferase 4 protein-coding 6.397 3.35
+338758 ATP2B1-AS1 ATP2B1 antisense RNA 1 ncRNA 5.062 1.164
+338773 TMEM119 transmembrane protein 119 protein-coding 7.886 1.989
+338799 LINC01089 long intergenic non-protein coding RNA 1089 ncRNA 7.833 1.265
+338811 FAM19A2 family with sequence similarity 19 member A2, C-C motif chemokine like protein-coding 3.757 1.878
338872 C1QTNF9 C1q and TNF related 9 protein-coding 1.921 1.432
-338879 RNASE10 ribonuclease A family member 10 (inactive) protein-coding 1.243 1.49
-339005 WHAMMP3 WAS protein homolog associated with actin, golgi membranes and microtubules pseudogene 3 pseudo 5.564 1.333
-339105 PRSS53 serine protease 53 protein-coding 5.363 1.112
-339122 RAB43 RAB43, member RAS oncogene family protein-coding 8.088 0.8633
-339123 JMJD8 jumonji domain containing 8 protein-coding 10.63 0.664
+338879 RNASE10 ribonuclease A family member 10 (inactive) protein-coding 1.243 1.491
+339005 WHAMMP3 WAS protein homolog associated with actin, golgi membranes and microtubules pseudogene 3 pseudo 5.565 1.333
+339105 PRSS53 serine protease 53 protein-coding 5.363 1.111
+339122 RAB43 RAB43, member RAS oncogene family protein-coding 8.088 0.8632
+339123 JMJD8 jumonji domain containing 8 protein-coding 10.63 0.6638
339145 FAM92B family with sequence similarity 92 member B protein-coding 1.617 1.959
-339175 METTL2A methyltransferase like 2A protein-coding 8.636 0.5457
-339201 ASB16-AS1 ASB16 antisense RNA 1 ncRNA 7.391 0.6823
+339175 METTL2A methyltransferase like 2A protein-coding 8.636 0.5459
+339201 ASB16-AS1 ASB16 antisense RNA 1 ncRNA 7.391 0.6821
339210 C17orf67 chromosome 17 open reading frame 67 protein-coding 4.465 1.055
-339229 OXLD1 oxidoreductase like domain containing 1 protein-coding 8.747 0.7867
-339230 CCDC137 coiled-coil domain containing 137 protein-coding 9.27 0.7536
-339231 ARL16 ADP ribosylation factor like GTPase 16 protein-coding 9.04 0.7048
-339263 C17orf51 chromosome 17 open reading frame 51 protein-coding 7.603 1.293
-339287 MSL1 male specific lethal 1 homolog protein-coding 10.78 0.5827
-339290 LINC00667 long intergenic non-protein coding RNA 667 ncRNA 8.95 1.028
-339318 ZNF181 zinc finger protein 181 protein-coding 7.614 0.783
-339324 ZNF260 zinc finger protein 260 protein-coding 8.952 0.7279
-339327 ZNF546 zinc finger protein 546 protein-coding 5.738 0.9859
-339344 MYPOP Myb related transcription factor, partner of profilin protein-coding 7.448 0.6206
-339366 ADAMTSL5 ADAMTS like 5 protein-coding 5.422 2.022
+339229 OXLD1 oxidoreductase like domain containing 1 protein-coding 8.746 0.7864
+339230 CCDC137 coiled-coil domain containing 137 protein-coding 9.269 0.7535
+339231 ARL16 ADP ribosylation factor like GTPase 16 protein-coding 9.04 0.7045
+339263 C17orf51 chromosome 17 open reading frame 51 protein-coding 7.603 1.292
+339287 MSL1 male specific lethal 1 homolog protein-coding 10.78 0.5825
+339290 LINC00667 long intergenic non-protein coding RNA 667 ncRNA 8.951 1.027
+339318 ZNF181 zinc finger protein 181 protein-coding 7.615 0.7829
+339324 ZNF260 zinc finger protein 260 protein-coding 8.952 0.7277
+339327 ZNF546 zinc finger protein 546 protein-coding 5.739 0.9858
+339344 MYPOP Myb related transcription factor, partner of profilin protein-coding 7.448 0.6205
+339366 ADAMTSL5 ADAMTS like 5 protein-coding 5.422 2.021
339390 CLEC4G C-type lectin domain family 4 member G protein-coding 1.755 1.744
-339398 LINGO4 leucine rich repeat and Ig domain containing 4 protein-coding 2.67 1.988
-3394 IRF8 interferon regulatory factor 8 protein-coding 7.87 1.734
+339398 LINGO4 leucine rich repeat and Ig domain containing 4 protein-coding 2.672 1.988
+3394 IRF8 interferon regulatory factor 8 protein-coding 7.872 1.735
339403 RXFP4 relaxin family peptide/INSL5 receptor 4 protein-coding 1.024 1.387
-339416 ANKRD45 ankyrin repeat domain 45 protein-coding 3.557 2.01
-339448 C1orf174 chromosome 1 open reading frame 174 protein-coding 8.749 0.5581
-339451 KLHL17 kelch like family member 17 protein-coding 7.036 0.9852
-339453 TMEM240 transmembrane protein 240 protein-coding 3.316 1.783
-339456 TMEM52 transmembrane protein 52 protein-coding 4.425 1.962
-339483 MTMR9LP myotubularin related protein 9-like, pseudogene pseudo 6.334 1.338
-339487 ZBTB8OS zinc finger and BTB domain containing 8 opposite strand protein-coding 7.591 0.6814
-339488 TFAP2E transcription factor AP-2 epsilon protein-coding 4.318 1.491
-339500 ZNF678 zinc finger protein 678 protein-coding 5.269 1.199
-339524 LINC01140 long intergenic non-protein coding RNA 1140 ncRNA 4.773 1.486
+339416 ANKRD45 ankyrin repeat domain 45 protein-coding 3.557 2.009
+339448 C1orf174 chromosome 1 open reading frame 174 protein-coding 8.748 0.5578
+339451 KLHL17 kelch like family member 17 protein-coding 7.036 0.985
+339453 TMEM240 transmembrane protein 240 protein-coding 3.317 1.783
+339456 TMEM52 transmembrane protein 52 protein-coding 4.425 1.961
+339483 MTMR9LP myotubularin related protein 9-like, pseudogene pseudo 6.336 1.338
+339487 ZBTB8OS zinc finger and BTB domain containing 8 opposite strand protein-coding 7.591 0.6813
+339488 TFAP2E transcription factor AP-2 epsilon protein-coding 4.317 1.49
+339500 ZNF678 zinc finger protein 678 protein-coding 5.27 1.198
+339524 LINC01140 long intergenic non-protein coding RNA 1140 ncRNA 4.775 1.486
339541 ARMH1 armadillo-like helical domain containing 1 protein-coding 3.652 1.579
-339559 ZFP69 ZFP69 zinc finger protein protein-coding 6.442 0.815
-3396 MRPL58 mitochondrial ribosomal protein L58 protein-coding 8.78 0.6299
-339665 SLC35E4 solute carrier family 35 member E4 protein-coding 6.706 1.089
-339674 LINC00634 long intergenic non-protein coding RNA 634 ncRNA 2.614 2.324
+339559 ZFP69 ZFP69 zinc finger protein protein-coding 6.441 0.8152
+3396 MRPL58 mitochondrial ribosomal protein L58 protein-coding 8.779 0.6302
+339665 SLC35E4 solute carrier family 35 member E4 protein-coding 6.705 1.088
+339674 LINC00634 long intergenic non-protein coding RNA 634 ncRNA 2.613 2.324
3397 ID1 inhibitor of DNA binding 1, HLH protein protein-coding 9.827 1.849
-339745 SPOPL speckle type BTB/POZ protein like protein-coding 9.264 0.8275
-339761 CYP27C1 cytochrome P450 family 27 subfamily C member 1 protein-coding 3.981 2.472
-339768 ESPNL espin like protein-coding 3.862 2.106
-3398 ID2 inhibitor of DNA binding 2 protein-coding 10.33 1.341
-339804 C2orf74 chromosome 2 open reading frame 74 protein-coding 7.238 1.648
-339829 CCDC39 coiled-coil domain containing 39 protein-coding 3.86 1.414
-339834 CCDC36 coiled-coil domain containing 36 protein-coding 2.496 1.331
-339855 KY kyphoscoliosis peptidase protein-coding 3.472 2.278
+339745 SPOPL speckle type BTB/POZ protein like protein-coding 9.264 0.8273
+339761 CYP27C1 cytochrome P450 family 27 subfamily C member 1 protein-coding 3.981 2.471
+339768 ESPNL espin like protein-coding 3.862 2.105
+3398 ID2 inhibitor of DNA binding 2 protein-coding 10.33 1.34
+339804 C2orf74 chromosome 2 open reading frame 74 protein-coding 7.239 1.648
+339829 CCDC39 coiled-coil domain containing 39 protein-coding 3.861 1.414
+339834 CCDC36 coiled-coil domain containing 36 protein-coding 2.497 1.331
+339855 KY kyphoscoliosis peptidase protein-coding 3.475 2.279
339883 C3orf35 chromosome 3 open reading frame 35 protein-coding 2.784 1.075
3399 ID3 inhibitor of DNA binding 3, HLH protein protein-coding 10.09 1.37
-339942 H1FX-AS1 H1FX antisense RNA 1 ncRNA 5.084 1.249
+339942 H1FX-AS1 H1FX antisense RNA 1 ncRNA 5.085 1.249
339965 CCDC158 coiled-coil domain containing 158 protein-coding 1.907 1.61
-339977 LRRC66 leucine rich repeat containing 66 protein-coding 3.385 2.011
-339983 NAT8L N-acetyltransferase 8 like protein-coding 4.7 2.837
-34 ACADM acyl-CoA dehydrogenase medium chain protein-coding 9.786 0.845
-3400 ID4 inhibitor of DNA binding 4, HLH protein protein-coding 8.35 2.412
-340061 TMEM173 transmembrane protein 173 protein-coding 9.266 1.314
-340120 ANKRD34B ankyrin repeat domain 34B protein-coding 1.836 2.209
-340146 SLC35D3 solute carrier family 35 member D3 protein-coding 1.611 2.205
-340152 ZC3H12D zinc finger CCCH-type containing 12D protein-coding 3.567 1.558
-340156 MYLK4 myosin light chain kinase family member 4 protein-coding 4.741 1.286
+339977 LRRC66 leucine rich repeat containing 66 protein-coding 3.386 2.011
+339983 NAT8L N-acetyltransferase 8 like protein-coding 4.7 2.836
+34 ACADM acyl-CoA dehydrogenase medium chain protein-coding 9.786 0.8447
+3400 ID4 inhibitor of DNA binding 4, HLH protein protein-coding 8.351 2.411
+340061 TMEM173 transmembrane protein 173 protein-coding 9.267 1.314
+340120 ANKRD34B ankyrin repeat domain 34B protein-coding 1.835 2.209
+340146 SLC35D3 solute carrier family 35 member D3 protein-coding 1.612 2.206
+340152 ZC3H12D zinc finger CCCH-type containing 12D protein-coding 3.568 1.558
+340156 MYLK4 myosin light chain kinase family member 4 protein-coding 4.742 1.285
340205 TREML1 triggering receptor expressed on myeloid cells like 1 protein-coding 1.679 1.235
340252 ZNF680 zinc finger protein 680 protein-coding 8.017 1.113
-340267 COL28A1 collagen type XXVIII alpha 1 chain protein-coding 3.9 2.422
-340273 ABCB5 ATP binding cassette subfamily B member 5 protein-coding 1.576 2.216
-340277 FAM221A family with sequence similarity 221 member A protein-coding 6.659 1.472
-340307 CTAGE6 CTAGE family member 6 protein-coding 2.51 1.353
-340348 TSPAN33 tetraspanin 33 protein-coding 8.777 1.446
-340351 AGBL3 ATP/GTP binding protein like 3 protein-coding 2.758 1.217
-340371 NRBP2 nuclear receptor binding protein 2 protein-coding 9.52 1.133
-340385 ZNF517 zinc finger protein 517 protein-coding 7.927 0.7939
+340267 COL28A1 collagen type XXVIII alpha 1 chain protein-coding 3.901 2.422
+340273 ABCB5 ATP binding cassette subfamily B member 5 protein-coding 1.577 2.216
+340277 FAM221A family with sequence similarity 221 member A protein-coding 6.66 1.471
+340307 CTAGE6 CTAGE family member 6 protein-coding 2.51 1.352
+340348 TSPAN33 tetraspanin 33 protein-coding 8.777 1.445
+340351 AGBL3 ATP/GTP binding protein like 3 protein-coding 2.759 1.217
+340371 NRBP2 nuclear receptor binding protein 2 protein-coding 9.52 1.132
+340385 ZNF517 zinc finger protein 517 protein-coding 7.927 0.7935
340390 WDR97 WD repeat domain 97 protein-coding 4.323 1.587
-340393 TMEM249 transmembrane protein 249 protein-coding 2.632 1.436
-340419 RSPO2 R-spondin 2 protein-coding 2.242 2.401
-340481 ZDHHC21 zinc finger DHHC-type containing 21 protein-coding 7.061 1.144
+340393 TMEM249 transmembrane protein 249 protein-coding 2.631 1.435
+340419 RSPO2 R-spondin 2 protein-coding 2.243 2.401
+340481 ZDHHC21 zinc finger DHHC-type containing 21 protein-coding 7.062 1.144
340485 ACER2 alkaline ceramidase 2 protein-coding 5.762 1.727
-340526 RTL5 retrotransposon Gag like 5 protein-coding 7.368 1.872
-340527 NHSL2 NHS like 2 protein-coding 4.483 1.734
-340533 NEXMIF neurite extension and migration factor protein-coding 4.256 2.686
-340542 BEX5 brain expressed X-linked 5 protein-coding 5.395 2.27
-340543 TCEAL5 transcription elongation factor A like 5 protein-coding 4.05 2.253
-340547 VSIG1 V-set and immunoglobulin domain containing 1 protein-coding 4.019 2.557
-340554 ZC3H12B zinc finger CCCH-type containing 12B protein-coding 5.015 1.626
-340562 SATL1 spermidine/spermine N1-acetyl transferase like 1 protein-coding 4.561 0.837
-340591 CA5BP1 carbonic anhydrase 5B pseudogene 1 pseudo 7.923 0.6625
-340706 VWA2 von Willebrand factor A domain containing 2 protein-coding 5.39 2.878
-340719 NANOS1 nanos C2HC-type zinc finger 1 protein-coding 7.374 0.9595
-341 APOC1 apolipoprotein C1 protein-coding 9.836 2.411
-341056 LOC341056 SUMO1 activating enzyme subunit 1 pseudogene pseudo 3.937 0.8846
-341208 HEPHL1 hephaestin like 1 protein-coding 2.565 2.899
-341346 SMCO2 single-pass membrane protein with coiled-coil domains 2 protein-coding 1.641 1.407
-3416 IDE insulin degrading enzyme protein-coding 8.749 1.001
-341676 NEK5 NIMA related kinase 5 protein-coding 2.22 1.783
+340526 RTL5 retrotransposon Gag like 5 protein-coding 7.37 1.872
+340527 NHSL2 NHS like 2 protein-coding 4.485 1.734
+340533 NEXMIF neurite extension and migration factor protein-coding 4.258 2.686
+340542 BEX5 brain expressed X-linked 5 protein-coding 5.396 2.27
+340543 TCEAL5 transcription elongation factor A like 5 protein-coding 4.052 2.253
+340547 VSIG1 V-set and immunoglobulin domain containing 1 protein-coding 4.02 2.558
+340554 ZC3H12B zinc finger CCCH-type containing 12B protein-coding 5.016 1.626
+340562 SATL1 spermidine/spermine N1-acetyl transferase like 1 protein-coding 4.561 0.8367
+340591 CA5BP1 carbonic anhydrase 5B pseudogene 1 pseudo 7.923 0.6623
+340706 VWA2 von Willebrand factor A domain containing 2 protein-coding 5.391 2.879
+340719 NANOS1 nanos C2HC-type zinc finger 1 protein-coding 7.375 0.9592
+341 APOC1 apolipoprotein C1 protein-coding 9.835 2.411
+341056 LOC341056 SUMO1 activating enzyme subunit 1 pseudogene pseudo 3.937 0.8845
+341208 HEPHL1 hephaestin like 1 protein-coding 2.564 2.898
+341346 SMCO2 single-pass membrane protein with coiled-coil domains 2 protein-coding 1.64 1.406
+3416 IDE insulin degrading enzyme protein-coding 8.748 1.001
+341676 NEK5 NIMA related kinase 5 protein-coding 2.219 1.783
3417 IDH1 isocitrate dehydrogenase (NADP(+)) 1, cytosolic protein-coding 11.33 1.164
3418 IDH2 isocitrate dehydrogenase (NADP(+)) 2, mitochondrial protein-coding 11.41 1.056
-3419 IDH3A isocitrate dehydrogenase 3 (NAD(+)) alpha protein-coding 10.15 0.6531
-3420 IDH3B isocitrate dehydrogenase 3 (NAD(+)) beta protein-coding 10.58 0.5728
-342035 GLDN gliomedin protein-coding 5.465 2.153
-3421 IDH3G isocitrate dehydrogenase 3 (NAD(+)) gamma protein-coding 10.27 0.5994
-342125 TMC3 transmembrane channel like 3 protein-coding 1.132 1.309
-342132 ZNF774 zinc finger protein 774 protein-coding 4.493 1.081
-342184 FMN1 formin 1 protein-coding 4.582 2.118
-3422 IDI1 isopentenyl-diphosphate delta isomerase 1 protein-coding 10.1 0.9479
+3419 IDH3A isocitrate dehydrogenase 3 (NAD(+)) alpha protein-coding 10.15 0.6529
+3420 IDH3B isocitrate dehydrogenase 3 (NAD(+)) beta protein-coding 10.58 0.5726
+342035 GLDN gliomedin protein-coding 5.466 2.154
+3421 IDH3G isocitrate dehydrogenase 3 (NAD(+)) gamma protein-coding 10.27 0.5992
+342125 TMC3 transmembrane channel like 3 protein-coding 1.133 1.309
+342132 ZNF774 zinc finger protein 774 protein-coding 4.493 1.08
+342184 FMN1 formin 1 protein-coding 4.583 2.118
+3422 IDI1 isopentenyl-diphosphate delta isomerase 1 protein-coding 10.1 0.9478
3423 IDS iduronate 2-sulfatase protein-coding 11.59 1.057
342346 C16orf96 chromosome 16 open reading frame 96 protein-coding 1.992 1.595
-342357 ZKSCAN2 zinc finger with KRAB and SCAN domains 2 protein-coding 7.505 0.7812
-342371 ATXN1L ataxin 1 like protein-coding 9.936 0.6868
-342372 PKD1L3 polycystin 1 like 3, transient receptor potential channel interacting protein-coding 0.9681 0.9151
-3425 IDUA iduronidase, alpha-L- protein-coding 7.801 1.15
-342510 CD300E CD300e molecule protein-coding 1.264 1.349
-342527 SMTNL2 smoothelin like 2 protein-coding 3.655 2.532
-342538 NACA2 nascent polypeptide associated complex alpha subunit 2 protein-coding 6.924 1.305
-3426 CFI complement factor I protein-coding 9.029 2.194
+342357 ZKSCAN2 zinc finger with KRAB and SCAN domains 2 protein-coding 7.505 0.7808
+342371 ATXN1L ataxin 1 like protein-coding 9.936 0.6866
+342372 PKD1L3 polycystin 1 like 3, transient receptor potential channel interacting protein-coding 0.9682 0.9151
+3425 IDUA iduronidase, alpha-L- protein-coding 7.801 1.149
+342510 CD300E CD300e molecule protein-coding 1.264 1.348
+342527 SMTNL2 smoothelin like 2 protein-coding 3.654 2.531
+342538 NACA2 nascent polypeptide associated complex alpha subunit 2 protein-coding 6.924 1.304
+3426 CFI complement factor I protein-coding 9.029 2.193
3428 IFI16 interferon gamma inducible protein 16 protein-coding 10.85 1.518
-342897 NCCRP1 non-specific cytotoxic cell receptor protein 1 homolog (zebrafish) protein-coding 4.519 3.335
-3429 IFI27 interferon alpha inducible protein 27 protein-coding 11 2.172
-342908 ZNF404 zinc finger protein 404 protein-coding 5.461 1.44
-342909 ZNF284 zinc finger protein 284 protein-coding 4.949 1.071
-342926 ZNF677 zinc finger protein 677 protein-coding 4.449 1.887
-342933 ZSCAN5B zinc finger and SCAN domain containing 5B protein-coding 1.426 0.8699
+342897 NCCRP1 non-specific cytotoxic cell receptor protein 1 homolog (zebrafish) protein-coding 4.519 3.334
+3429 IFI27 interferon alpha inducible protein 27 protein-coding 11 2.171
+342908 ZNF404 zinc finger protein 404 protein-coding 5.462 1.439
+342909 ZNF284 zinc finger protein 284 protein-coding 4.95 1.071
+342926 ZNF677 zinc finger protein 677 protein-coding 4.451 1.887
+342933 ZSCAN5B zinc finger and SCAN domain containing 5B protein-coding 1.427 0.8698
342945 ZSCAN22 zinc finger and SCAN domain containing 22 protein-coding 6.776 0.5266
-342977 NANOS3 nanos C2HC-type zinc finger 3 protein-coding 2.793 1.83
-342979 PALM3 paralemmin 3 protein-coding 5.697 2.705
-343 AQP8 aquaporin 8 protein-coding 1.28 1.734
+342977 NANOS3 nanos C2HC-type zinc finger 3 protein-coding 2.794 1.832
+342979 PALM3 paralemmin 3 protein-coding 5.699 2.704
+343 AQP8 aquaporin 8 protein-coding 1.282 1.737
3430 IFI35 interferon induced protein 35 protein-coding 9.359 1.031
-343035 RD3 retinal degeneration 3 protein-coding 1.163 1.563
-343099 CCDC18 coiled-coil domain containing 18 protein-coding 5.824 1.356
-3431 SP110 SP110 nuclear body protein protein-coding 8.767 0.9073
-343171 OR2W3 olfactory receptor family 2 subfamily W member 3 protein-coding 1.88 1.837
-3433 IFIT2 interferon induced protein with tetratricopeptide repeats 2 protein-coding 8.526 1.411
-3434 IFIT1 interferon induced protein with tetratricopeptide repeats 1 protein-coding 9.075 1.763
-343413 FCRL6 Fc receptor like 6 protein-coding 3.251 1.678
-343450 KCNT2 potassium sodium-activated channel subfamily T member 2 protein-coding 4.1 2.292
-343477 HSP90B3P heat shock protein 90 beta family member 3, pseudogene pseudo 3.413 1.33
-343505 NBPF7 NBPF member 7 protein-coding 1.042 0.9074
-343521 TCTEX1D4 Tctex1 domain containing 4 protein-coding 2.12 1.28
-343637 RSPO4 R-spondin 4 protein-coding 3.483 2.567
+343035 RD3 retinal degeneration 3 protein-coding 1.165 1.566
+343099 CCDC18 coiled-coil domain containing 18 protein-coding 5.823 1.357
+3431 SP110 SP110 nuclear body protein protein-coding 8.767 0.9075
+343171 OR2W3 olfactory receptor family 2 subfamily W member 3 protein-coding 1.881 1.838
+3433 IFIT2 interferon induced protein with tetratricopeptide repeats 2 protein-coding 8.526 1.41
+3434 IFIT1 interferon induced protein with tetratricopeptide repeats 1 protein-coding 9.075 1.762
+343413 FCRL6 Fc receptor like 6 protein-coding 3.252 1.679
+343450 KCNT2 potassium sodium-activated channel subfamily T member 2 protein-coding 4.102 2.292
+343477 HSP90B3P heat shock protein 90 beta family member 3, pseudogene pseudo 3.412 1.329
+343505 NBPF7 NBPF member 7 protein-coding 1.042 0.9072
+343521 TCTEX1D4 Tctex1 domain containing 4 protein-coding 2.12 1.281
+343637 RSPO4 R-spondin 4 protein-coding 3.484 2.566
3437 IFIT3 interferon induced protein with tetratricopeptide repeats 3 protein-coding 9.493 1.464
-343990 KIAA1211L KIAA1211 like protein-coding 7.666 1.434
-344 APOC2 apolipoprotein C2 protein-coding 6.614 2.935
-344148 NCKAP5 NCK associated protein 5 protein-coding 5.972 1.85
-344387 CDKL4 cyclin dependent kinase like 4 protein-coding 0.6125 0.8614
-344405 PRORSD1P prolyl-tRNA synthetase associated domain containing 1, pseudogene pseudo 4.869 0.9974
-344558 SH3RF3 SH3 domain containing ring finger 3 protein-coding 7.594 1.401
-344595 DUBR DPPA2 upstream binding RNA ncRNA 6.351 1.312
+343990 KIAA1211L KIAA1211 like protein-coding 7.666 1.433
+344 APOC2 apolipoprotein C2 protein-coding 6.613 2.935
+344148 NCKAP5 NCK associated protein 5 protein-coding 5.972 1.849
+344387 CDKL4 cyclin dependent kinase like 4 protein-coding 0.6121 0.8611
+344405 PRORSD1P prolyl-tRNA synthetase associated domain containing 1, pseudogene pseudo 4.869 0.9972
+344558 SH3RF3 SH3 domain containing ring finger 3 protein-coding 7.595 1.401
+344595 DUBR DPPA2 upstream binding RNA ncRNA 6.353 1.312
344657 LRRIQ4 leucine rich repeats and IQ motif containing 4 protein-coding 1.421 1.397
344787 ZNF860 zinc finger protein 860 protein-coding 4.945 1.876
-344967 LOC344967 acyl-CoA thioesterase 7 pseudogene pseudo 2.508 1.064
-345193 LRIT3 leucine rich repeat, Ig-like and transmembrane domains 3 protein-coding 2.501 1.21
-345222 MSANTD1 Myb/SANT DNA binding domain containing 1 protein-coding 2.273 1.195
-345274 SLC10A6 solute carrier family 10 member 6 protein-coding 2.6 2.051
-345275 HSD17B13 hydroxysteroid 17-beta dehydrogenase 13 protein-coding 2.958 2.207
+344967 LOC344967 acyl-CoA thioesterase 7 pseudogene pseudo 2.507 1.064
+345193 LRIT3 leucine rich repeat, Ig-like and transmembrane domains 3 protein-coding 2.502 1.209
+345222 MSANTD1 Myb/SANT DNA binding domain containing 1 protein-coding 2.274 1.196
+345274 SLC10A6 solute carrier family 10 member 6 protein-coding 2.601 2.05
+345275 HSD17B13 hydroxysteroid 17-beta dehydrogenase 13 protein-coding 2.96 2.209
3454 IFNAR1 interferon alpha and beta receptor subunit 1 protein-coding 10.74 0.5154
-345462 ZNF879 zinc finger protein 879 protein-coding 5.65 1.295
-3455 IFNAR2 interferon alpha and beta receptor subunit 2 protein-coding 8.7 0.7647
-345557 PLCXD3 phosphatidylinositol specific phospholipase C X domain containing 3 protein-coding 3.958 2.794
-345630 FBLL1 fibrillarin like 1 protein-coding 3.597 2.56
-345757 FAM174A family with sequence similarity 174 member A protein-coding 8.381 0.7922
-345778 MTX3 metaxin 3 protein-coding 8.905 0.7532
+345462 ZNF879 zinc finger protein 879 protein-coding 5.651 1.294
+3455 IFNAR2 interferon alpha and beta receptor subunit 2 protein-coding 8.7 0.7649
+345557 PLCXD3 phosphatidylinositol specific phospholipase C X domain containing 3 protein-coding 3.961 2.796
+345630 FBLL1 fibrillarin like 1 protein-coding 3.598 2.56
+345757 FAM174A family with sequence similarity 174 member A protein-coding 8.381 0.7921
+345778 MTX3 metaxin 3 protein-coding 8.906 0.753
3458 IFNG interferon gamma protein-coding 2.003 1.917
345895 RSPH4A radial spoke head 4 homolog A protein-coding 3.576 1.826
3459 IFNGR1 interferon gamma receptor 1 protein-coding 10.86 0.8203
345930 ECT2L epithelial cell transforming 2 like protein-coding 3.137 1.231
-3460 IFNGR2 interferon gamma receptor 2 protein-coding 10.94 0.722
-346007 EYS eyes shut homolog (Drosophila) protein-coding 3.303 1.219
-346157 ZNF391 zinc finger protein 391 protein-coding 4.596 1.381
+3460 IFNGR2 interferon gamma receptor 2 protein-coding 10.94 0.7222
+346007 EYS eyes shut homolog (Drosophila) protein-coding 3.304 1.219
+346157 ZNF391 zinc finger protein 391 protein-coding 4.597 1.38
346171 ZFP57 ZFP57 zinc finger protein protein-coding 2.413 2.3
-346389 MACC1 MACC1, MET transcriptional regulator protein-coding 7.485 3.048
-346528 OR2A1 olfactory receptor family 2 subfamily A member 1 protein-coding 2.017 1.088
-346653 FAM71F2 family with sequence similarity 71 member F2 protein-coding 2.691 1.334
-346689 KLRG2 killer cell lectin like receptor G2 protein-coding 3.067 2.789
-347 APOD apolipoprotein D protein-coding 8.411 2.991
+346389 MACC1 MACC1, MET transcriptional regulator protein-coding 7.485 3.047
+346528 OR2A1 olfactory receptor family 2 subfamily A member 1 protein-coding 2.018 1.088
+346653 FAM71F2 family with sequence similarity 71 member F2 protein-coding 2.692 1.334
+346689 KLRG2 killer cell lectin like receptor G2 protein-coding 3.067 2.79
+347 APOD apolipoprotein D protein-coding 8.413 2.99
347051 SLC10A5 solute carrier family 10 member 5 protein-coding 3.074 1.322
-347148 QRFP pyroglutamylated RFamide peptide protein-coding 1.126 0.8804
-347240 KIF24 kinesin family member 24 protein-coding 6.875 1.099
-347273 CAVIN4 caveolae associated protein 4 protein-coding 3.464 1.404
-347344 ZNF81 zinc finger protein 81 protein-coding 6.552 0.9575
-347376 H3F3AP5 H3 histone, family 3A, pseudogene 5 pseudo 0.3311 0.4919
-347404 LANCL3 LanC like 3 protein-coding 3.005 1.744
-347454 SOWAHD sosondowah ankyrin repeat domain family member D protein-coding 4.126 1.346
-3475 IFRD1 interferon related developmental regulator 1 protein-coding 9.522 0.7797
+347148 QRFP pyroglutamylated RFamide peptide protein-coding 1.127 0.8811
+347240 KIF24 kinesin family member 24 protein-coding 6.874 1.099
+347273 CAVIN4 caveolae associated protein 4 protein-coding 3.463 1.403
+347344 ZNF81 zinc finger protein 81 protein-coding 6.553 0.9572
+347376 H3F3AP5 H3 histone, family 3A, pseudogene 5 pseudo 0.3309 0.4917
+347404 LANCL3 LanC like 3 protein-coding 3.006 1.744
+347454 SOWAHD sosondowah ankyrin repeat domain family member D protein-coding 4.126 1.347
+3475 IFRD1 interferon related developmental regulator 1 protein-coding 9.522 0.7795
347517 RAB41 RAB41, member RAS oncogene family protein-coding 1.753 1.168
-3476 IGBP1 immunoglobulin binding protein 1 protein-coding 10.53 0.63
+3476 IGBP1 immunoglobulin binding protein 1 protein-coding 10.53 0.6297
347688 TUBB8 tubulin beta 8 class VIII protein-coding 2.988 1.331
-347732 CATSPER3 cation channel sperm associated 3 protein-coding 3.179 1.097
-347734 SLC35B2 solute carrier family 35 member B2 protein-coding 10.54 0.6431
+347732 CATSPER3 cation channel sperm associated 3 protein-coding 3.18 1.097
+347734 SLC35B2 solute carrier family 35 member B2 protein-coding 10.54 0.6429
347735 SERINC2 serine incorporator 2 protein-coding 11.06 2.236
-347736 NME9 NME/NM23 family member 9 protein-coding 2.956 1.557
+347736 NME9 NME/NM23 family member 9 protein-coding 2.957 1.556
347744 C6orf52 chromosome 6 open reading frame 52 protein-coding 3.22 1.56
-347746 PWARSN Prader Willi/Angelman region RNA, SNRPN neighbor ncRNA 5.903 1.988
+347746 PWARSN Prader Willi/Angelman region RNA, SNRPN neighbor ncRNA 5.905 1.988
347853 TBX10 T-box 10 protein-coding 1.095 1.786
-347862 GATD1 glutamine amidotransferase like class 1 domain containing 1 protein-coding 10.23 0.7307
-3479 IGF1 insulin like growth factor 1 protein-coding 6.97 2.204
-347902 AMIGO2 adhesion molecule with Ig like domain 2 protein-coding 8.308 2.013
+347862 GATD1 glutamine amidotransferase like class 1 domain containing 1 protein-coding 10.23 0.7304
+3479 IGF1 insulin like growth factor 1 protein-coding 6.972 2.204
+347902 AMIGO2 adhesion molecule with Ig like domain 2 protein-coding 8.309 2.012
347918 EP400P1 EP400 pseudogene 1 pseudo 6.722 0.731
348 APOE apolipoprotein E protein-coding 12.3 2.387
-3480 IGF1R insulin like growth factor 1 receptor protein-coding 10.66 1.555
-348013 TMEM255B transmembrane protein 255B protein-coding 5.346 1.26
-348093 RBPMS2 RNA binding protein, mRNA processing factor 2 protein-coding 6.452 1.855
-348094 ANKDD1A ankyrin repeat and death domain containing 1A protein-coding 6.543 1.17
-3481 IGF2 insulin like growth factor 2 protein-coding 9.804 3.032
-348110 ARPIN actin related protein 2/3 complex inhibitor protein-coding 8.19 0.8481
-348174 CLEC18A C-type lectin domain family 18 member A protein-coding 4.272 2.156
-348180 CTU2 cytosolic thiouridylase subunit 2 protein-coding 8.228 0.7107
-3482 IGF2R insulin like growth factor 2 receptor protein-coding 11.73 0.8499
-348235 SKA2 spindle and kinetochore associated complex subunit 2 protein-coding 9.572 0.7431
+3480 IGF1R insulin like growth factor 1 receptor protein-coding 10.66 1.554
+348013 TMEM255B transmembrane protein 255B protein-coding 5.347 1.26
+348093 RBPMS2 RNA binding protein, mRNA processing factor 2 protein-coding 6.454 1.855
+348094 ANKDD1A ankyrin repeat and death domain containing 1A protein-coding 6.544 1.17
+3481 IGF2 insulin like growth factor 2 protein-coding 9.805 3.033
+348110 ARPIN actin related protein 2/3 complex inhibitor protein-coding 8.191 0.8481
+348174 CLEC18A C-type lectin domain family 18 member A protein-coding 4.271 2.155
+348180 CTU2 cytosolic thiouridylase subunit 2 protein-coding 8.227 0.7104
+3482 IGF2R insulin like growth factor 2 receptor protein-coding 11.74 0.8495
+348235 SKA2 spindle and kinetochore associated complex subunit 2 protein-coding 9.572 0.743
348254 CCDC144CP coiled-coil domain containing 144C, pseudogene pseudo 1.345 1.466
348262 MCRIP1 MAPK regulated corepressor interacting protein 1 protein-coding 10.47 1.036
-3483 IGFALS insulin like growth factor binding protein acid labile subunit protein-coding 3.71 2.359
-348327 ZNF530 zinc finger protein 530 protein-coding 5.83 0.9992
-348378 SHISAL2A shisa like 2A protein-coding 3.07 1.51
-3485 IGFBP2 insulin like growth factor binding protein 2 protein-coding 10.75 2.298
+3483 IGFALS insulin like growth factor binding protein acid labile subunit protein-coding 3.712 2.359
+348327 ZNF530 zinc finger protein 530 protein-coding 5.83 0.9989
+348378 SHISAL2A shisa like 2A protein-coding 3.071 1.51
+3485 IGFBP2 insulin like growth factor binding protein 2 protein-coding 10.75 2.297
3486 IGFBP3 insulin like growth factor binding protein 3 protein-coding 11.78 1.953
-348645 C22orf34 chromosome 22 open reading frame 34 protein-coding 1.794 1.425
-348654 GEN1 GEN1, Holliday junction 5' flap endonuclease protein-coding 8.145 1.033
+348645 C22orf34 chromosome 22 open reading frame 34 protein-coding 1.795 1.425
+348654 GEN1 GEN1, Holliday junction 5' flap endonuclease protein-coding 8.145 1.032
3487 IGFBP4 insulin like growth factor binding protein 4 protein-coding 12.75 1.587
-348738 C2orf48 chromosome 2 open reading frame 48 protein-coding 2.365 1.668
-348793 WDR53 WD repeat domain 53 protein-coding 7.357 0.7419
+348738 C2orf48 chromosome 2 open reading frame 48 protein-coding 2.364 1.668
+348793 WDR53 WD repeat domain 53 protein-coding 7.357 0.7417
3488 IGFBP5 insulin like growth factor binding protein 5 protein-coding 12.55 2.064
348801 LNP1 leukemia NUP98 fusion partner 1 protein-coding 6.183 1.223
-348807 CFAP100 cilia and flagella associated protein 100 protein-coding 0.8611 1.642
-3489 IGFBP6 insulin like growth factor binding protein 6 protein-coding 8.032 2.259
-348926 FAM86EP family with sequence similarity 86, member A pseudogene pseudo 6.051 0.7253
-348938 NIPAL4 NIPA like domain containing 4 protein-coding 4.317 3.065
-348995 NUP43 nucleoporin 43 protein-coding 9.411 0.538
+348807 CFAP100 cilia and flagella associated protein 100 protein-coding 0.8613 1.642
+3489 IGFBP6 insulin like growth factor binding protein 6 protein-coding 8.033 2.258
+348926 FAM86EP family with sequence similarity 86, member A pseudogene pseudo 6.05 0.7251
+348938 NIPAL4 NIPA like domain containing 4 protein-coding 4.316 3.064
+348995 NUP43 nucleoporin 43 protein-coding 9.411 0.5378
3490 IGFBP7 insulin like growth factor binding protein 7 protein-coding 12.38 1.243
-349075 ZNF713 zinc finger protein 713 protein-coding 5.513 1.141
-3491 CYR61 cysteine rich angiogenic inducer 61 protein-coding 10.8 1.686
+349075 ZNF713 zinc finger protein 713 protein-coding 5.513 1.14
+3491 CYR61 cysteine rich angiogenic inducer 61 protein-coding 10.8 1.687
349114 LINC00265 long intergenic non-protein coding RNA 265 ncRNA 7.182 1.117
349136 WDR86 WD repeat domain 86 protein-coding 4.584 2.317
-349149 GJC3 gap junction protein gamma 3 protein-coding 1.815 1.597
-349152 DPY19L2P2 DPY19L2 pseudogene 2 pseudo 4.577 1.927
-349196 LINC00965 long intergenic non-protein coding RNA 965 ncRNA 2.434 1.502
-349565 NMNAT3 nicotinamide nucleotide adenylyltransferase 3 protein-coding 6.589 1.598
-349667 RTN4RL2 reticulon 4 receptor like 2 protein-coding 5.189 1.952
+349149 GJC3 gap junction protein gamma 3 protein-coding 1.816 1.597
+349152 DPY19L2P2 DPY19L2 pseudogene 2 pseudo 4.578 1.926
+349196 LINC00965 long intergenic non-protein coding RNA 965 ncRNA 2.435 1.501
+349565 NMNAT3 nicotinamide nucleotide adenylyltransferase 3 protein-coding 6.589 1.597
+349667 RTN4RL2 reticulon 4 receptor like 2 protein-coding 5.188 1.953
35 ACADS acyl-CoA dehydrogenase short chain protein-coding 8.96 1.198
-3508 IGHMBP2 immunoglobulin mu binding protein 2 protein-coding 8.679 0.6475
-351 APP amyloid beta precursor protein protein-coding 14.18 0.9195
+3508 IGHMBP2 immunoglobulin mu binding protein 2 protein-coding 8.679 0.6472
+351 APP amyloid beta precursor protein protein-coding 14.18 0.9192
3512 JCHAIN joining chain of multimeric IgA and IgM protein-coding 8.651 3.649
-3516 RBPJ recombination signal binding protein for immunoglobulin kappa J region protein-coding 9.238 0.6947
+3516 RBPJ recombination signal binding protein for immunoglobulin kappa J region protein-coding 9.238 0.6945
352909 DNAAF3 dynein axonemal assembly factor 3 protein-coding 4.952 2.113
-352954 CASTOR3 CASTOR family member 3 protein-coding 7.584 1.472
-352961 HCG26 HLA complex group 26 (non-protein coding) ncRNA 5.718 1.447
+352954 CASTOR3 CASTOR family member 3 protein-coding 7.585 1.472
+352961 HCG26 HLA complex group 26 (non-protein coding) ncRNA 5.718 1.446
353 APRT adenine phosphoribosyltransferase protein-coding 10.83 0.8637
-353088 ZNF429 zinc finger protein 429 protein-coding 6.469 1.413
-353091 RAET1G retinoic acid early transcript 1G protein-coding 3.684 2.134
-353116 RILPL1 Rab interacting lysosomal protein like 1 protein-coding 8.29 0.8823
-353174 ZACN zinc activated ion channel protein-coding 0.8472 0.9653
-353189 SLCO4C1 solute carrier organic anion transporter family member 4C1 protein-coding 4.202 3.314
-353274 ZNF445 zinc finger protein 445 protein-coding 8.942 0.664
+353088 ZNF429 zinc finger protein 429 protein-coding 6.47 1.413
+353091 RAET1G retinoic acid early transcript 1G protein-coding 3.683 2.134
+353116 RILPL1 Rab interacting lysosomal protein like 1 protein-coding 8.29 0.8821
+353174 ZACN zinc activated ion channel protein-coding 0.8476 0.9656
+353189 SLCO4C1 solute carrier organic anion transporter family member 4C1 protein-coding 4.203 3.313
+353274 ZNF445 zinc finger protein 445 protein-coding 8.943 0.664
353322 ANKRD37 ankyrin repeat domain 37 protein-coding 7.085 1.296
353324 SPATA12 spermatogenesis associated 12 protein-coding 2.523 1.416
-353345 GPR141 G protein-coupled receptor 141 protein-coding 2.334 1.486
-353355 ZNF233 zinc finger protein 233 protein-coding 4.79 1.426
+353345 GPR141 G protein-coupled receptor 141 protein-coding 2.335 1.487
+353355 ZNF233 zinc finger protein 233 protein-coding 4.791 1.426
353376 TICAM2 toll like receptor adaptor molecule 2 protein-coding 6.398 1.327
-353497 POLN DNA polymerase nu protein-coding 3.874 1.509
-353500 BMP8A bone morphogenetic protein 8a protein-coding 7.252 1.542
+353497 POLN DNA polymerase nu protein-coding 3.875 1.509
+353500 BMP8A bone morphogenetic protein 8a protein-coding 7.254 1.542
353514 LILRA5 leukocyte immunoglobulin like receptor A5 protein-coding 4.285 1.772
-3543 IGLL1 immunoglobulin lambda like polypeptide 1 protein-coding 0.4198 1.115
-3549 IHH indian hedgehog protein-coding 3.42 3.471
+3543 IGLL1 immunoglobulin lambda like polypeptide 1 protein-coding 0.4196 1.114
+3549 IHH indian hedgehog protein-coding 3.423 3.471
355 FAS Fas cell surface death receptor protein-coding 8.235 1.294
-3550 IK IK cytokine protein-coding 10.9 0.4212
-3551 IKBKB inhibitor of nuclear factor kappa B kinase subunit beta protein-coding 9.93 0.6774
-3552 IL1A interleukin 1 alpha protein-coding 3.405 2.904
-3553 IL1B interleukin 1 beta protein-coding 6.308 2.197
+3550 IK IK cytokine protein-coding 10.9 0.421
+3551 IKBKB inhibitor of nuclear factor kappa B kinase subunit beta protein-coding 9.931 0.6773
+3552 IL1A interleukin 1 alpha protein-coding 3.403 2.903
+3553 IL1B interleukin 1 beta protein-coding 6.308 2.196
3554 IL1R1 interleukin 1 receptor type 1 protein-coding 10.15 1.634
-3556 IL1RAP interleukin 1 receptor accessory protein protein-coding 8.354 1.594
-3557 IL1RN interleukin 1 receptor antagonist protein-coding 7.649 2.92
+3556 IL1RAP interleukin 1 receptor accessory protein protein-coding 8.353 1.593
+3557 IL1RN interleukin 1 receptor antagonist protein-coding 7.648 2.919
3559 IL2RA interleukin 2 receptor subunit alpha protein-coding 4.864 2.222
356 FASLG Fas ligand protein-coding 3.429 1.894
-3560 IL2RB interleukin 2 receptor subunit beta protein-coding 7.512 1.963
-3561 IL2RG interleukin 2 receptor subunit gamma protein-coding 8.38 2.17
-3563 IL3RA interleukin 3 receptor subunit alpha protein-coding 6.826 1.148
+3560 IL2RB interleukin 2 receptor subunit beta protein-coding 7.513 1.963
+3561 IL2RG interleukin 2 receptor subunit gamma protein-coding 8.381 2.171
+3563 IL3RA interleukin 3 receptor subunit alpha protein-coding 6.827 1.149
3566 IL4R interleukin 4 receptor protein-coding 10.22 1.222
-3568 IL5RA interleukin 5 receptor subunit alpha protein-coding 1.298 1.671
-3569 IL6 interleukin 6 protein-coding 4.887 2.492
-357 SHROOM2 shroom family member 2 protein-coding 8.355 1.432
-3570 IL6R interleukin 6 receptor protein-coding 7.502 1.689
-3572 IL6ST interleukin 6 signal transducer protein-coding 8.827 2.117
-3574 IL7 interleukin 7 protein-coding 5.034 1.636
-3575 IL7R interleukin 7 receptor protein-coding 5.281 2.467
-3576 CXCL8 C-X-C motif chemokine ligand 8 protein-coding 7.335 2.907
+3568 IL5RA interleukin 5 receptor subunit alpha protein-coding 1.3 1.673
+3569 IL6 interleukin 6 protein-coding 4.888 2.492
+357 SHROOM2 shroom family member 2 protein-coding 8.355 1.431
+3570 IL6R interleukin 6 receptor protein-coding 7.503 1.69
+3572 IL6ST interleukin 6 signal transducer protein-coding 8.829 2.116
+3574 IL7 interleukin 7 protein-coding 5.035 1.636
+3575 IL7R interleukin 7 receptor protein-coding 5.283 2.468
+3576 CXCL8 C-X-C motif chemokine ligand 8 protein-coding 7.334 2.906
3577 CXCR1 C-X-C motif chemokine receptor 1 protein-coding 2.755 1.889
-3579 CXCR2 C-X-C motif chemokine receptor 2 protein-coding 3.727 1.86
+3579 CXCR2 C-X-C motif chemokine receptor 2 protein-coding 3.728 1.86
358 AQP1 aquaporin 1 (Colton blood group) protein-coding 11.33 1.915
-3580 CXCR2P1 C-X-C motif chemokine receptor 2 pseudogene 1 pseudo 3.502 2.282
-3581 IL9R interleukin 9 receptor protein-coding 2.312 1.562
-3586 IL10 interleukin 10 protein-coding 3.198 1.54
-3587 IL10RA interleukin 10 receptor subunit alpha protein-coding 8.418 1.463
-3588 IL10RB interleukin 10 receptor subunit beta protein-coding 9.72 0.6932
-3589 IL11 interleukin 11 protein-coding 3.98 2.26
-3590 IL11RA interleukin 11 receptor subunit alpha protein-coding 7.548 1.313
-3592 IL12A interleukin 12A protein-coding 2.854 1.64
-3593 IL12B interleukin 12B protein-coding 1.441 1.414
-3594 IL12RB1 interleukin 12 receptor subunit beta 1 protein-coding 5.232 1.672
-3595 IL12RB2 interleukin 12 receptor subunit beta 2 protein-coding 4.204 2.488
-3597 IL13RA1 interleukin 13 receptor subunit alpha 1 protein-coding 11.21 0.89
+3580 CXCR2P1 C-X-C motif chemokine receptor 2 pseudogene 1 pseudo 3.502 2.283
+3581 IL9R interleukin 9 receptor protein-coding 2.313 1.562
+3586 IL10 interleukin 10 protein-coding 3.199 1.54
+3587 IL10RA interleukin 10 receptor subunit alpha protein-coding 8.419 1.464
+3588 IL10RB interleukin 10 receptor subunit beta protein-coding 9.72 0.6933
+3589 IL11 interleukin 11 protein-coding 3.978 2.259
+3590 IL11RA interleukin 11 receptor subunit alpha protein-coding 7.549 1.313
+3592 IL12A interleukin 12A protein-coding 2.855 1.64
+3593 IL12B interleukin 12B protein-coding 1.442 1.416
+3594 IL12RB1 interleukin 12 receptor subunit beta 1 protein-coding 5.233 1.673
+3595 IL12RB2 interleukin 12 receptor subunit beta 2 protein-coding 4.203 2.487
+3597 IL13RA1 interleukin 13 receptor subunit alpha 1 protein-coding 11.21 0.8897
359821 MRPL42P5 mitochondrial ribosomal protein L42 pseudogene 5 pseudo 2.796 1.211
-359845 RFLNB refilin B protein-coding 8.538 1.23
-359948 IRF2BP2 interferon regulatory factor 2 binding protein 2 protein-coding 12.03 0.602
-36 ACADSB acyl-CoA dehydrogenase short/branched chain protein-coding 9.347 1.41
-360 AQP3 aquaporin 3 (Gill blood group) protein-coding 9.352 3.211
+359845 RFLNB refilin B protein-coding 8.538 1.229
+359948 IRF2BP2 interferon regulatory factor 2 binding protein 2 protein-coding 12.03 0.6019
+36 ACADSB acyl-CoA dehydrogenase short/branched chain protein-coding 9.348 1.41
+360 AQP3 aquaporin 3 (Gill blood group) protein-coding 9.353 3.211
3600 IL15 interleukin 15 protein-coding 5.905 1.648
-360023 ZBTB41 zinc finger and BTB domain containing 41 protein-coding 9.171 0.8307
+360023 ZBTB41 zinc finger and BTB domain containing 41 protein-coding 9.171 0.8305
3601 IL15RA interleukin 15 receptor subunit alpha protein-coding 7.538 1.527
360132 FKBP9P1 FK506 binding protein 9 pseudogene 1 pseudo 5.611 1.351
-360200 TMPRSS9 transmembrane serine protease 9 protein-coding 1.887 1.67
-3603 IL16 interleukin 16 protein-coding 8.116 1.339
-3604 TNFRSF9 TNF receptor superfamily member 9 protein-coding 3.379 2.067
-3606 IL18 interleukin 18 protein-coding 7.806 1.818
-3607 FOXK2 forkhead box K2 protein-coding 10.55 0.5552
-3608 ILF2 interleukin enhancer binding factor 2 protein-coding 11.93 0.6226
-3609 ILF3 interleukin enhancer binding factor 3 protein-coding 12.54 0.4977
-361 AQP4 aquaporin 4 protein-coding 4.293 4.258
+360200 TMPRSS9 transmembrane serine protease 9 protein-coding 1.886 1.669
+3603 IL16 interleukin 16 protein-coding 8.117 1.34
+3604 TNFRSF9 TNF receptor superfamily member 9 protein-coding 3.378 2.068
+3606 IL18 interleukin 18 protein-coding 7.806 1.819
+3607 FOXK2 forkhead box K2 protein-coding 10.55 0.555
+3608 ILF2 interleukin enhancer binding factor 2 protein-coding 11.93 0.6229
+3609 ILF3 interleukin enhancer binding factor 3 protein-coding 12.54 0.4975
+361 AQP4 aquaporin 4 protein-coding 4.295 4.257
3611 ILK integrin linked kinase protein-coding 11.15 0.6254
-3612 IMPA1 inositol monophosphatase 1 protein-coding 8.878 0.7261
-3613 IMPA2 inositol monophosphatase 2 protein-coding 9.282 1.816
+3612 IMPA1 inositol monophosphatase 1 protein-coding 8.878 0.7257
+3613 IMPA2 inositol monophosphatase 2 protein-coding 9.282 1.815
3614 IMPDH1 inosine monophosphate dehydrogenase 1 protein-coding 9.985 1.17
-3615 IMPDH2 inosine monophosphate dehydrogenase 2 protein-coding 11.59 0.7724
-3619 INCENP inner centromere protein protein-coding 8.697 1.065
-3620 IDO1 indoleamine 2,3-dioxygenase 1 protein-coding 6.794 2.976
-3621 ING1 inhibitor of growth family member 1 protein-coding 8.556 0.6175
-3622 ING2 inhibitor of growth family member 2 protein-coding 7.739 0.6757
-3623 INHA inhibin alpha subunit protein-coding 3.556 2.218
+3615 IMPDH2 inosine monophosphate dehydrogenase 2 protein-coding 11.59 0.7722
+3619 INCENP inner centromere protein protein-coding 8.696 1.065
+3620 IDO1 indoleamine 2,3-dioxygenase 1 protein-coding 6.795 2.975
+3621 ING1 inhibitor of growth family member 1 protein-coding 8.555 0.6176
+3622 ING2 inhibitor of growth family member 2 protein-coding 7.739 0.6756
+3623 INHA inhibin alpha subunit protein-coding 3.557 2.218
3624 INHBA inhibin beta A subunit protein-coding 6.178 2.525
-3625 INHBB inhibin beta B subunit protein-coding 8.213 1.977
-3626 INHBC inhibin beta C subunit protein-coding 1.727 2.033
+3625 INHBB inhibin beta B subunit protein-coding 8.212 1.976
+3626 INHBC inhibin beta C subunit protein-coding 1.727 2.032
3627 CXCL10 C-X-C motif chemokine ligand 10 protein-coding 7.681 2.663
3628 INPP1 inositol polyphosphate-1-phosphatase protein-coding 8.776 1.09
363 AQP6 aquaporin 6 protein-coding 2.86 2.3
-3631 INPP4A inositol polyphosphate-4-phosphatase type I A protein-coding 9.238 0.7593
-3632 INPP5A inositol polyphosphate-5-phosphatase A protein-coding 9.132 0.6747
-3633 INPP5B inositol polyphosphate-5-phosphatase B protein-coding 8.671 0.6236
-3635 INPP5D inositol polyphosphate-5-phosphatase D protein-coding 8.881 1.372
-3636 INPPL1 inositol polyphosphate phosphatase like 1 protein-coding 11.12 0.6587
+3631 INPP4A inositol polyphosphate-4-phosphatase type I A protein-coding 9.239 0.7594
+3632 INPP5A inositol polyphosphate-5-phosphatase A protein-coding 9.132 0.675
+3633 INPP5B inositol polyphosphate-5-phosphatase B protein-coding 8.671 0.624
+3635 INPP5D inositol polyphosphate-5-phosphatase D protein-coding 8.882 1.372
+3636 INPPL1 inositol polyphosphate phosphatase like 1 protein-coding 11.12 0.6585
3638 INSIG1 insulin induced gene 1 protein-coding 10.09 1.226
364 AQP7 aquaporin 7 protein-coding 3.376 2.389
-3640 INSL3 insulin like 3 protein-coding 2.067 1.38
+3640 INSL3 insulin like 3 protein-coding 2.067 1.382
3643 INSR insulin receptor protein-coding 10.61 1.122
-3645 INSRR insulin receptor related receptor protein-coding 1.555 1.834
-3646 EIF3E eukaryotic translation initiation factor 3 subunit E protein-coding 12.41 0.699
-3652 IPP intracisternal A particle-promoted polypeptide protein-coding 7.486 0.8034
-3653 IPW imprinted in Prader-Willi syndrome (non-protein coding) ncRNA 8.159 2.051
+3645 INSRR insulin receptor related receptor protein-coding 1.557 1.837
+3646 EIF3E eukaryotic translation initiation factor 3 subunit E protein-coding 12.41 0.6987
+3652 IPP intracisternal A particle-promoted polypeptide protein-coding 7.486 0.8031
+3653 IPW imprinted in Prader-Willi syndrome (non-protein coding) ncRNA 8.161 2.052
3654 IRAK1 interleukin 1 receptor associated kinase 1 protein-coding 11.46 0.8852
-3655 ITGA6 integrin subunit alpha 6 protein-coding 11.44 1.576
-3656 IRAK2 interleukin 1 receptor associated kinase 2 protein-coding 7.359 1.485
-3658 IREB2 iron responsive element binding protein 2 protein-coding 10.07 0.6045
+3655 ITGA6 integrin subunit alpha 6 protein-coding 11.44 1.575
+3656 IRAK2 interleukin 1 receptor associated kinase 2 protein-coding 7.359 1.484
+3658 IREB2 iron responsive element binding protein 2 protein-coding 10.07 0.6043
3659 IRF1 interferon regulatory factor 1 protein-coding 10.08 1.3
-366 AQP9 aquaporin 9 protein-coding 5.462 2.766
+366 AQP9 aquaporin 9 protein-coding 5.463 2.766
3660 IRF2 interferon regulatory factor 2 protein-coding 9.595 0.5666
-3661 IRF3 interferon regulatory factor 3 protein-coding 10.14 0.7818
-3662 IRF4 interferon regulatory factor 4 protein-coding 5.592 2.382
+3661 IRF3 interferon regulatory factor 3 protein-coding 10.14 0.7815
+3662 IRF4 interferon regulatory factor 4 protein-coding 5.593 2.382
3663 IRF5 interferon regulatory factor 5 protein-coding 8.126 1.22
-3664 IRF6 interferon regulatory factor 6 protein-coding 8.734 2.78
+3664 IRF6 interferon regulatory factor 6 protein-coding 8.733 2.779
3665 IRF7 interferon regulatory factor 7 protein-coding 9.028 1.32
-3667 IRS1 insulin receptor substrate 1 protein-coding 9.383 1.414
+3667 IRS1 insulin receptor substrate 1 protein-coding 9.383 1.415
3669 ISG20 interferon stimulated exonuclease gene 20 protein-coding 8.186 1.605
-367 AR androgen receptor protein-coding 4.591 2.927
-3671 ISLR immunoglobulin superfamily containing leucine rich repeat protein-coding 9.566 2.333
-3672 ITGA1 integrin subunit alpha 1 protein-coding 9.098 1.559
-3673 ITGA2 integrin subunit alpha 2 protein-coding 9.278 2.065
+367 AR androgen receptor protein-coding 4.593 2.927
+3671 ISLR immunoglobulin superfamily containing leucine rich repeat protein-coding 9.567 2.332
+3672 ITGA1 integrin subunit alpha 1 protein-coding 9.099 1.559
+3673 ITGA2 integrin subunit alpha 2 protein-coding 9.278 2.064
3674 ITGA2B integrin subunit alpha 2b protein-coding 3.384 1.855
-3675 ITGA3 integrin subunit alpha 3 protein-coding 11.52 1.983
-3676 ITGA4 integrin subunit alpha 4 protein-coding 7.662 1.695
+3675 ITGA3 integrin subunit alpha 3 protein-coding 11.52 1.982
+3676 ITGA4 integrin subunit alpha 4 protein-coding 7.663 1.696
3678 ITGA5 integrin subunit alpha 5 protein-coding 10.8 1.421
-3679 ITGA7 integrin subunit alpha 7 protein-coding 8.294 1.736
-368 ABCC6 ATP binding cassette subfamily C member 6 protein-coding 5.877 2.747
-3680 ITGA9 integrin subunit alpha 9 protein-coding 6.59 1.976
+3679 ITGA7 integrin subunit alpha 7 protein-coding 8.295 1.736
+368 ABCC6 ATP binding cassette subfamily C member 6 protein-coding 5.878 2.747
+3680 ITGA9 integrin subunit alpha 9 protein-coding 6.592 1.976
3681 ITGAD integrin subunit alpha D protein-coding 2.099 1.833
-3682 ITGAE integrin subunit alpha E protein-coding 8.022 0.7987
-3683 ITGAL integrin subunit alpha L protein-coding 8.049 1.809
-3684 ITGAM integrin subunit alpha M protein-coding 7.577 1.645
+3682 ITGAE integrin subunit alpha E protein-coding 8.022 0.7985
+3683 ITGAL integrin subunit alpha L protein-coding 8.05 1.81
+3684 ITGAM integrin subunit alpha M protein-coding 7.577 1.646
3685 ITGAV integrin subunit alpha V protein-coding 11.57 1.101
-3687 ITGAX integrin subunit alpha X protein-coding 8.203 1.505
-3688 ITGB1 integrin subunit beta 1 protein-coding 13.14 0.9242
-3689 ITGB2 integrin subunit beta 2 protein-coding 10.22 1.594
+3687 ITGAX integrin subunit alpha X protein-coding 8.204 1.507
+3688 ITGB1 integrin subunit beta 1 protein-coding 13.14 0.924
+3689 ITGB2 integrin subunit beta 2 protein-coding 10.22 1.595
369 ARAF A-Raf proto-oncogene, serine/threonine kinase protein-coding 10.34 0.5598
-3690 ITGB3 integrin subunit beta 3 protein-coding 6.809 2.291
+3690 ITGB3 integrin subunit beta 3 protein-coding 6.811 2.291
3691 ITGB4 integrin subunit beta 4 protein-coding 11.17 2.298
-3692 EIF6 eukaryotic translation initiation factor 6 protein-coding 11.57 0.772
+3692 EIF6 eukaryotic translation initiation factor 6 protein-coding 11.57 0.7722
3693 ITGB5 integrin subunit beta 5 protein-coding 11.47 1.013
3694 ITGB6 integrin subunit beta 6 protein-coding 7.598 4.125
3695 ITGB7 integrin subunit beta 7 protein-coding 7.267 1.714
-3696 ITGB8 integrin subunit beta 8 protein-coding 9.264 2.568
-3697 ITIH1 inter-alpha-trypsin inhibitor heavy chain 1 protein-coding 1.514 3.149
-3698 ITIH2 inter-alpha-trypsin inhibitor heavy chain 2 protein-coding 2.592 3.552
-3699 ITIH3 inter-alpha-trypsin inhibitor heavy chain 3 protein-coding 3.579 3.054
-37 ACADVL acyl-CoA dehydrogenase very long chain protein-coding 12.31 0.8107
-3700 ITIH4 inter-alpha-trypsin inhibitor heavy chain family member 4 protein-coding 5.896 2.647
-3702 ITK IL2 inducible T cell kinase protein-coding 5.516 2.071
-3703 STT3A STT3A, catalytic subunit of the oligosaccharyltransferase complex protein-coding 11.57 0.647
-3704 ITPA inosine triphosphatase protein-coding 9.816 0.7092
-3705 ITPK1 inositol-tetrakisphosphate 1-kinase protein-coding 10.9 0.881
-3706 ITPKA inositol-trisphosphate 3-kinase A protein-coding 5.108 2.238
-3707 ITPKB inositol-trisphosphate 3-kinase B protein-coding 9.981 1.272
-3708 ITPR1 inositol 1,4,5-trisphosphate receptor type 1 protein-coding 8.886 1.538
-3709 ITPR2 inositol 1,4,5-trisphosphate receptor type 2 protein-coding 9.807 1.268
+3696 ITGB8 integrin subunit beta 8 protein-coding 9.264 2.567
+3697 ITIH1 inter-alpha-trypsin inhibitor heavy chain 1 protein-coding 1.514 3.148
+3698 ITIH2 inter-alpha-trypsin inhibitor heavy chain 2 protein-coding 2.592 3.551
+3699 ITIH3 inter-alpha-trypsin inhibitor heavy chain 3 protein-coding 3.58 3.053
+37 ACADVL acyl-CoA dehydrogenase very long chain protein-coding 12.31 0.8104
+3700 ITIH4 inter-alpha-trypsin inhibitor heavy chain family member 4 protein-coding 5.897 2.646
+3702 ITK IL2 inducible T cell kinase protein-coding 5.517 2.072
+3703 STT3A STT3A, catalytic subunit of the oligosaccharyltransferase complex protein-coding 11.57 0.6469
+3704 ITPA inosine triphosphatase protein-coding 9.815 0.7093
+3705 ITPK1 inositol-tetrakisphosphate 1-kinase protein-coding 10.9 0.8808
+3706 ITPKA inositol-trisphosphate 3-kinase A protein-coding 5.107 2.238
+3707 ITPKB inositol-trisphosphate 3-kinase B protein-coding 9.982 1.272
+3708 ITPR1 inositol 1,4,5-trisphosphate receptor type 1 protein-coding 8.888 1.538
+3709 ITPR2 inositol 1,4,5-trisphosphate receptor type 2 protein-coding 9.808 1.267
3710 ITPR3 inositol 1,4,5-trisphosphate receptor type 3 protein-coding 10.78 2.083
3712 IVD isovaleryl-CoA dehydrogenase protein-coding 10.69 1.044
-3714 JAG2 jagged 2 protein-coding 9.303 1.295
+3714 JAG2 jagged 2 protein-coding 9.304 1.295
3716 JAK1 Janus kinase 1 protein-coding 11.7 0.6938
-3717 JAK2 Janus kinase 2 protein-coding 8.201 1.026
+3717 JAK2 Janus kinase 2 protein-coding 8.202 1.026
3718 JAK3 Janus kinase 3 protein-coding 8.002 1.559
-372 ARCN1 archain 1 protein-coding 11.85 0.5287
-3720 JARID2 jumonji and AT-rich interaction domain containing 2 protein-coding 9.175 0.9527
-3725 JUN Jun proto-oncogene, AP-1 transcription factor subunit protein-coding 12.02 1.162
+372 ARCN1 archain 1 protein-coding 11.85 0.5286
+3720 JARID2 jumonji and AT-rich interaction domain containing 2 protein-coding 9.175 0.9525
+3725 JUN Jun proto-oncogene, AP-1 transcription factor subunit protein-coding 12.03 1.162
3726 JUNB JunB proto-oncogene, AP-1 transcription factor subunit protein-coding 11.68 1.31
-3727 JUND JunD proto-oncogene, AP-1 transcription factor subunit protein-coding 11.39 0.916
+3727 JUND JunD proto-oncogene, AP-1 transcription factor subunit protein-coding 11.39 0.9162
3728 JUP junction plakoglobin protein-coding 12.73 1.843
-373 TRIM23 tripartite motif containing 23 protein-coding 8.124 0.8634
-3730 ANOS1 anosmin 1 protein-coding 7.718 2.189
-373156 GSTK1 glutathione S-transferase kappa 1 protein-coding 11.16 0.9201
-3732 CD82 CD82 molecule protein-coding 9.98 1.392
-3735 KARS lysyl-tRNA synthetase protein-coding 11.55 0.5194
-3737 KCNA2 potassium voltage-gated channel subfamily A member 2 protein-coding 1.7 1.966
-3738 KCNA3 potassium voltage-gated channel subfamily A member 3 protein-coding 3.832 1.915
-373863 DND1 DND microRNA-mediated repression inhibitor 1 protein-coding 6.308 0.7352
-374 AREG amphiregulin protein-coding 5.853 3.204
-3741 KCNA5 potassium voltage-gated channel subfamily A member 5 protein-coding 3.327 1.842
-3742 KCNA6 potassium voltage-gated channel subfamily A member 6 protein-coding 3.641 2.714
+373 TRIM23 tripartite motif containing 23 protein-coding 8.125 0.8633
+3730 ANOS1 anosmin 1 protein-coding 7.719 2.188
+373156 GSTK1 glutathione S-transferase kappa 1 protein-coding 11.16 0.9197
+3732 CD82 CD82 molecule protein-coding 9.981 1.392
+3735 KARS lysyl-tRNA synthetase protein-coding 11.55 0.5195
+3737 KCNA2 potassium voltage-gated channel subfamily A member 2 protein-coding 1.701 1.967
+3738 KCNA3 potassium voltage-gated channel subfamily A member 3 protein-coding 3.834 1.916
+373863 DND1 DND microRNA-mediated repression inhibitor 1 protein-coding 6.308 0.7353
+374 AREG amphiregulin protein-coding 5.853 3.203
+3741 KCNA5 potassium voltage-gated channel subfamily A member 5 protein-coding 3.328 1.843
+3742 KCNA6 potassium voltage-gated channel subfamily A member 6 protein-coding 3.643 2.714
374286 CDRT1 CMT1A duplicated region transcript 1 protein-coding 2.089 1.6
-374291 NDUFS7 NADH:ubiquinone oxidoreductase core subunit S7 protein-coding 10.07 0.9141
-374354 NHLRC2 NHL repeat containing 2 protein-coding 6.721 1.096
+374291 NDUFS7 NADH:ubiquinone oxidoreductase core subunit S7 protein-coding 10.07 0.9137
+374354 NHLRC2 NHL repeat containing 2 protein-coding 6.722 1.096
374378 GALNT18 polypeptide N-acetylgalactosaminyltransferase 18 protein-coding 8.541 1.333
-374383 NCR3LG1 natural killer cell cytotoxicity receptor 3 ligand 1 protein-coding 5.355 2.021
-374393 FAM111B family with sequence similarity 111 member B protein-coding 7.408 1.77
-374395 TMEM179B transmembrane protein 179B protein-coding 9.991 0.6182
-374403 TBC1D10C TBC1 domain family member 10C protein-coding 6.289 1.889
-374407 DNAJB13 DnaJ heat shock protein family (Hsp40) member B13 protein-coding 2.461 2.468
+374383 NCR3LG1 natural killer cell cytotoxicity receptor 3 ligand 1 protein-coding 5.356 2.021
+374393 FAM111B family with sequence similarity 111 member B protein-coding 7.407 1.77
+374395 TMEM179B transmembrane protein 179B protein-coding 9.991 0.6181
+374403 TBC1D10C TBC1 domain family member 10C protein-coding 6.29 1.89
+374407 DNAJB13 DnaJ heat shock protein family (Hsp40) member B13 protein-coding 2.462 2.468
374443 LOC374443 C-type lectin domain family 2 member D pseudogene pseudo 6.549 1.064
-374470 C12orf42 chromosome 12 open reading frame 42 protein-coding 1.045 1.121
-374491 TPTE2P6 transmembrane phosphoinositide 3-phosphatase and tensin homolog 2 pseudogene 6 pseudo 1.637 1.393
-374500 THSD1P1 thrombospondin type 1 domain containing 1 pseudogene 1 pseudo 6.976 0.8731
-3746 KCNC1 potassium voltage-gated channel subfamily C member 1 protein-coding 2.564 2.527
-374618 TEX9 testis expressed 9 protein-coding 5.581 1.41
-374650 GOLGA6L5P golgin A6 family-like 5, pseudogene pseudo 4.608 1.343
-374654 KIF7 kinesin family member 7 protein-coding 7.148 1.441
+374470 C12orf42 chromosome 12 open reading frame 42 protein-coding 1.046 1.121
+374491 TPTE2P6 transmembrane phosphoinositide 3-phosphatase and tensin homolog 2 pseudogene 6 pseudo 1.638 1.393
+374500 THSD1P1 thrombospondin type 1 domain containing 1 pseudogene 1 pseudo 6.976 0.8727
+3746 KCNC1 potassium voltage-gated channel subfamily C member 1 protein-coding 2.565 2.526
+374618 TEX9 testis expressed 9 protein-coding 5.581 1.409
+374650 GOLGA6L5P golgin A6 family-like 5, pseudogene pseudo 4.609 1.344
+374654 KIF7 kinesin family member 7 protein-coding 7.149 1.441
374655 ZNF710 zinc finger protein 710 protein-coding 8.111 1.008
374659 HDDC3 HD domain containing 3 protein-coding 8.22 0.7093
-374666 WASH3P WAS protein family homolog 3 pseudogene pseudo 8.785 0.8
-374739 TEPP testis, prostate and placenta expressed protein-coding 1.598 1.979
-374786 EFCAB5 EF-hand calcium binding domain 5 protein-coding 2.041 1.252
-3748 KCNC3 potassium voltage-gated channel subfamily C member 3 protein-coding 7.033 1.713
-374819 LRRC37A3 leucine rich repeat containing 37 member A3 protein-coding 6.593 1.284
-374868 ATP9B ATPase phospholipid transporting 9B (putative) protein-coding 8.616 0.6388
-374872 PEAK3 PEAK family member 3 protein-coding 3.064 1.236
+374666 WASH3P WAS protein family homolog 3 pseudogene pseudo 8.785 0.7998
+374739 TEPP testis, prostate and placenta expressed protein-coding 1.599 1.979
+374786 EFCAB5 EF-hand calcium binding domain 5 protein-coding 2.041 1.251
+3748 KCNC3 potassium voltage-gated channel subfamily C member 3 protein-coding 7.034 1.712
+374819 LRRC37A3 leucine rich repeat containing 37 member A3 protein-coding 6.594 1.284
+374868 ATP9B ATPase phospholipid transporting 9B (putative) protein-coding 8.616 0.6389
+374872 PEAK3 PEAK family member 3 protein-coding 3.065 1.236
374875 HSD11B1L hydroxysteroid 11-beta dehydrogenase 1 like protein-coding 6.935 1.268
374877 TEX45 testis expressed 45 protein-coding 2.25 1.841
-374879 ZNF699 zinc finger protein 699 protein-coding 4.229 1.376
-374882 TMEM205 transmembrane protein 205 protein-coding 10.57 0.9244
-374887 YJEFN3 YjeF N-terminal domain containing 3 protein-coding 5.872 1.707
-374899 ZNF829 zinc finger protein 829 protein-coding 3.359 1.455
-3749 KCNC4 potassium voltage-gated channel subfamily C member 4 protein-coding 7.231 1.181
-374900 ZNF568 zinc finger protein 568 protein-coding 6.108 1.454
-374907 B3GNT8 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 8 protein-coding 6.129 1.962
-374928 ZNF773 zinc finger protein 773 protein-coding 6.635 1.094
-374946 DRAXIN dorsal inhibitory axon guidance protein protein-coding 2.19 1.791
-374969 SVBP small vasohibin binding protein protein-coding 8.102 0.6537
-374973 TEX38 testis expressed 38 protein-coding 0.9176 0.8613
-374977 MROH7 maestro heat like repeat family member 7 protein-coding 4.949 1.951
-374986 MIGA1 mitoguardin 1 protein-coding 8.379 0.9905
-375 ARF1 ADP ribosylation factor 1 protein-coding 13.44 0.4768
-3750 KCND1 potassium voltage-gated channel subfamily D member 1 protein-coding 6.177 1.354
-375033 PEAR1 platelet endothelial aggregation receptor 1 protein-coding 6.825 1.336
-375035 SFT2D2 SFT2 domain containing 2 protein-coding 6.184 0.9247
-375056 MIA3 MIA family member 3, ER export factor protein-coding 10.81 0.7792
-375057 STUM stum, mechanosensory transduction mediator homolog protein-coding 3.798 2.582
-375061 FAM89A family with sequence similarity 89 member A protein-coding 7.294 1.363
-375133 PI4KAP2 phosphatidylinositol 4-kinase alpha pseudogene 2 pseudo 7.025 1.18
-375189 PFN4 profilin family member 4 protein-coding 2.634 1.151
-375190 FAM228B family with sequence similarity 228 member B protein-coding 5.908 1.286
-3752 KCND3 potassium voltage-gated channel subfamily D member 3 protein-coding 4.03 2.43
+374879 ZNF699 zinc finger protein 699 protein-coding 4.23 1.376
+374882 TMEM205 transmembrane protein 205 protein-coding 10.57 0.9241
+374887 YJEFN3 YjeF N-terminal domain containing 3 protein-coding 5.873 1.707
+374899 ZNF829 zinc finger protein 829 protein-coding 3.36 1.455
+3749 KCNC4 potassium voltage-gated channel subfamily C member 4 protein-coding 7.232 1.181
+374900 ZNF568 zinc finger protein 568 protein-coding 6.109 1.453
+374907 B3GNT8 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 8 protein-coding 6.13 1.962
+374928 ZNF773 zinc finger protein 773 protein-coding 6.636 1.094
+374946 DRAXIN dorsal inhibitory axon guidance protein protein-coding 2.189 1.791
+374969 SVBP small vasohibin binding protein protein-coding 8.102 0.6535
+374973 TEX38 testis expressed 38 protein-coding 0.9178 0.8612
+374977 MROH7 maestro heat like repeat family member 7 protein-coding 4.952 1.952
+374986 MIGA1 mitoguardin 1 protein-coding 8.379 0.9904
+375 ARF1 ADP ribosylation factor 1 protein-coding 13.44 0.4767
+3750 KCND1 potassium voltage-gated channel subfamily D member 1 protein-coding 6.178 1.354
+375033 PEAR1 platelet endothelial aggregation receptor 1 protein-coding 6.827 1.336
+375035 SFT2D2 SFT2 domain containing 2 protein-coding 6.184 0.9244
+375056 MIA3 MIA family member 3, ER export factor protein-coding 10.81 0.7791
+375057 STUM stum, mechanosensory transduction mediator homolog protein-coding 3.8 2.581
+375061 FAM89A family with sequence similarity 89 member A protein-coding 7.293 1.362
+375133 PI4KAP2 phosphatidylinositol 4-kinase alpha pseudogene 2 pseudo 7.026 1.18
+375189 PFN4 profilin family member 4 protein-coding 2.633 1.151
+375190 FAM228B family with sequence similarity 228 member B protein-coding 5.908 1.285
+3752 KCND3 potassium voltage-gated channel subfamily D member 3 protein-coding 4.032 2.431
375248 ANKRD36 ankyrin repeat domain 36 protein-coding 6.951 1.098
-375260 WASH2P WAS protein family homolog 2 pseudogene pseudo 8.509 0.8413
-375287 RBM43 RNA binding motif protein 43 protein-coding 7.489 1.05
+375260 WASH2P WAS protein family homolog 2 pseudogene pseudo 8.509 0.8411
+375287 RBM43 RNA binding motif protein 43 protein-coding 7.49 1.05
375298 CERKL ceramide kinase like protein-coding 5.826 1.543
3753 KCNE1 potassium voltage-gated channel subfamily E regulatory subunit 1 protein-coding 2.653 1.847
-375307 CATIP ciliogenesis associated TTC17 interacting protein protein-coding 2.462 2.175
+375307 CATIP ciliogenesis associated TTC17 interacting protein protein-coding 2.464 2.175
375316 RBM44 RNA binding motif protein 44 protein-coding 2.519 1.11
-375323 LHFPL4 LHFPL tetraspan subfamily member 4 protein-coding 2.711 3.333
-375341 C3orf62 chromosome 3 open reading frame 62 protein-coding 7.186 0.7416
-375346 STIMATE STIM activating enhancer protein-coding 7.405 0.6718
-375387 NRROS negative regulator of reactive oxygen species protein-coding 6.764 1.304
-375444 C5orf34 chromosome 5 open reading frame 34 protein-coding 5.641 1.213
-375449 MAST4 microtubule associated serine/threonine kinase family member 4 protein-coding 8.358 1.474
-375484 SIMC1 SUMO interacting motifs containing 1 protein-coding 7.7 1.148
-3755 KCNG1 potassium voltage-gated channel modifier subfamily G member 1 protein-coding 4.897 2.792
-375513 GUSBP4 glucuronidase, beta pseudogene 4 pseudo 6.853 0.8471
-375519 GJB7 gap junction protein beta 7 protein-coding 1.83 2.349
-3756 KCNH1 potassium voltage-gated channel subfamily H member 1 protein-coding 3.873 2.266
-375611 SLC26A5 solute carrier family 26 member 5 protein-coding 1.293 1.493
-375612 LHFPL3 LHFPL tetraspan subfamily member 3 protein-coding 2.586 3.195
-375616 KCP kielin/chordin-like protein protein-coding 4.953 2.279
+375323 LHFPL4 LHFPL tetraspan subfamily member 4 protein-coding 2.714 3.333
+375341 C3orf62 chromosome 3 open reading frame 62 protein-coding 7.186 0.7415
+375346 STIMATE STIM activating enhancer protein-coding 7.405 0.6716
+375387 NRROS negative regulator of reactive oxygen species protein-coding 6.765 1.305
+375444 C5orf34 chromosome 5 open reading frame 34 protein-coding 5.64 1.213
+375449 MAST4 microtubule associated serine/threonine kinase family member 4 protein-coding 8.359 1.473
+375484 SIMC1 SUMO interacting motifs containing 1 protein-coding 7.7 1.147
+3755 KCNG1 potassium voltage-gated channel modifier subfamily G member 1 protein-coding 4.898 2.792
+375513 GUSBP4 glucuronidase, beta pseudogene 4 pseudo 6.853 0.8467
+375519 GJB7 gap junction protein beta 7 protein-coding 1.829 2.348
+3756 KCNH1 potassium voltage-gated channel subfamily H member 1 protein-coding 3.873 2.265
+375611 SLC26A5 solute carrier family 26 member 5 protein-coding 1.294 1.493
+375612 LHFPL3 LHFPL tetraspan subfamily member 3 protein-coding 2.586 3.194
+375616 KCP kielin/chordin-like protein protein-coding 4.952 2.278
375686 SPATC1 spermatogenesis and centriole associated 1 protein-coding 1.836 1.1
-375690 WASH5P WAS protein family homolog 5 pseudogene pseudo 7.72 0.8647
-3757 KCNH2 potassium voltage-gated channel subfamily H member 2 protein-coding 6.129 3.005
-375704 ENHO energy homeostasis associated protein-coding 4.578 2.844
+375690 WASH5P WAS protein family homolog 5 pseudogene pseudo 7.72 0.8644
+3757 KCNH2 potassium voltage-gated channel subfamily H member 2 protein-coding 6.132 3.006
+375704 ENHO energy homeostasis associated protein-coding 4.579 2.843
375719 AQP7P1 aquaporin 7 pseudogene 1 pseudo 2.194 1.896
-375743 PTAR1 protein prenyltransferase alpha subunit repeat containing 1 protein-coding 9.622 0.7485
-375748 ERCC6L2 ERCC excision repair 6 like 2 protein-coding 6.35 1.156
-375757 SWI5 SWI5 homologous recombination repair protein protein-coding 8.602 0.7172
-375759 C9orf50 chromosome 9 open reading frame 50 protein-coding 1.72 1.633
-375775 PNPLA7 patatin like phospholipase domain containing 7 protein-coding 7.081 1.85
+375743 PTAR1 protein prenyltransferase alpha subunit repeat containing 1 protein-coding 9.622 0.7484
+375748 ERCC6L2 ERCC excision repair 6 like 2 protein-coding 6.351 1.156
+375757 SWI5 SWI5 homologous recombination repair protein protein-coding 8.602 0.7173
+375759 C9orf50 chromosome 9 open reading frame 50 protein-coding 1.72 1.632
+375775 PNPLA7 patatin like phospholipase domain containing 7 protein-coding 7.083 1.852
375790 AGRN agrin protein-coding 12.56 1.189
-375791 CYSRT1 cysteine rich tail 1 protein-coding 4.329 2.147
-3758 KCNJ1 potassium voltage-gated channel subfamily J member 1 protein-coding 1.699 1.642
-3759 KCNJ2 potassium voltage-gated channel subfamily J member 2 protein-coding 6.87 1.488
-3762 KCNJ5 potassium voltage-gated channel subfamily J member 5 protein-coding 5 1.853
-376267 RAB15 RAB15, member RAS oncogene family protein-coding 9.169 1.357
-3764 KCNJ8 potassium voltage-gated channel subfamily J member 8 protein-coding 7.324 1.562
-376412 RNF126P1 ring finger protein 126 pseudogene 1 pseudo 1.634 1.338
+375791 CYSRT1 cysteine rich tail 1 protein-coding 4.327 2.146
+3758 KCNJ1 potassium voltage-gated channel subfamily J member 1 protein-coding 1.7 1.642
+3759 KCNJ2 potassium voltage-gated channel subfamily J member 2 protein-coding 6.87 1.487
+3762 KCNJ5 potassium voltage-gated channel subfamily J member 5 protein-coding 5.002 1.854
+376267 RAB15 RAB15, member RAS oncogene family protein-coding 9.169 1.356
+3764 KCNJ8 potassium voltage-gated channel subfamily J member 8 protein-coding 7.325 1.562
+376412 RNF126P1 ring finger protein 126 pseudogene 1 pseudo 1.635 1.339
376497 SLC27A1 solute carrier family 27 member 1 protein-coding 9.297 1.059
-3765 KCNJ9 potassium voltage-gated channel subfamily J member 9 protein-coding 1.275 2.346
-3766 KCNJ10 potassium voltage-gated channel subfamily J member 10 protein-coding 4.358 2.936
-376693 RPS10P7 ribosomal protein S10 pseudogene 7 pseudo 5.578 0.9063
-3767 KCNJ11 potassium voltage-gated channel subfamily J member 11 protein-coding 6.218 2.209
-3768 KCNJ12 potassium voltage-gated channel subfamily J member 12 protein-coding 5.236 2.084
-3769 KCNJ13 potassium voltage-gated channel subfamily J member 13 protein-coding 1.864 2.036
-376940 ZC3H6 zinc finger CCCH-type containing 6 protein-coding 8.026 0.8801
-377 ARF3 ADP ribosylation factor 3 protein-coding 12.38 0.5259
-3770 KCNJ14 potassium voltage-gated channel subfamily J member 14 protein-coding 5.043 0.9524
+3765 KCNJ9 potassium voltage-gated channel subfamily J member 9 protein-coding 1.274 2.345
+3766 KCNJ10 potassium voltage-gated channel subfamily J member 10 protein-coding 4.357 2.936
+376693 RPS10P7 ribosomal protein S10 pseudogene 7 pseudo 5.578 0.906
+3767 KCNJ11 potassium voltage-gated channel subfamily J member 11 protein-coding 6.218 2.208
+3768 KCNJ12 potassium voltage-gated channel subfamily J member 12 protein-coding 5.237 2.084
+3769 KCNJ13 potassium voltage-gated channel subfamily J member 13 protein-coding 1.865 2.037
+376940 ZC3H6 zinc finger CCCH-type containing 6 protein-coding 8.027 0.8803
+377 ARF3 ADP ribosylation factor 3 protein-coding 12.38 0.5257
+3770 KCNJ14 potassium voltage-gated channel subfamily J member 14 protein-coding 5.043 0.9522
377007 KLHL30 kelch like family member 30 protein-coding 3.465 1.917
-3772 KCNJ15 potassium voltage-gated channel subfamily J member 15 protein-coding 6.444 3.383
-3773 KCNJ16 potassium voltage-gated channel subfamily J member 16 protein-coding 4.276 4.391
-3775 KCNK1 potassium two pore domain channel subfamily K member 1 protein-coding 8.335 1.997
-377677 CA13 carbonic anhydrase 13 protein-coding 6.514 1.569
-3778 KCNMA1 potassium calcium-activated channel subfamily M alpha 1 protein-coding 8.01 2.098
-377841 ENTPD8 ectonucleoside triphosphate diphosphohydrolase 8 protein-coding 4.138 2.709
-3779 KCNMB1 potassium calcium-activated channel subfamily M regulatory beta subunit 1 protein-coding 6.177 1.802
-378 ARF4 ADP ribosylation factor 4 protein-coding 11.99 0.6467
-3780 KCNN1 potassium calcium-activated channel subfamily N member 1 protein-coding 3.155 2.337
-378108 TRIM74 tripartite motif containing 74 protein-coding 1.89 1.436
-3782 KCNN3 potassium calcium-activated channel subfamily N member 3 protein-coding 5.136 1.899
-3783 KCNN4 potassium calcium-activated channel subfamily N member 4 protein-coding 7.686 2.702
-3784 KCNQ1 potassium voltage-gated channel subfamily Q member 1 protein-coding 8.162 1.875
-3785 KCNQ2 potassium voltage-gated channel subfamily Q member 2 protein-coding 2.098 3.407
-3786 KCNQ3 potassium voltage-gated channel subfamily Q member 3 protein-coding 3.484 2.124
-3787 KCNS1 potassium voltage-gated channel modifier subfamily S member 1 protein-coding 3.613 2.604
-378708 CENPS centromere protein S protein-coding 7.98 0.723
-378805 LINC-PINT long intergenic non-protein coding RNA, p53 induced transcript ncRNA 6.454 1.209
-378832 COL18A1-AS1 COL18A1 antisense RNA 1 ncRNA 0.5951 0.9995
+3772 KCNJ15 potassium voltage-gated channel subfamily J member 15 protein-coding 6.446 3.384
+3773 KCNJ16 potassium voltage-gated channel subfamily J member 16 protein-coding 4.277 4.392
+3775 KCNK1 potassium two pore domain channel subfamily K member 1 protein-coding 8.334 1.997
+377677 CA13 carbonic anhydrase 13 protein-coding 6.515 1.569
+3778 KCNMA1 potassium calcium-activated channel subfamily M alpha 1 protein-coding 8.012 2.099
+377841 ENTPD8 ectonucleoside triphosphate diphosphohydrolase 8 protein-coding 4.139 2.708
+3779 KCNMB1 potassium calcium-activated channel subfamily M regulatory beta subunit 1 protein-coding 6.179 1.804
+378 ARF4 ADP ribosylation factor 4 protein-coding 11.99 0.6465
+3780 KCNN1 potassium calcium-activated channel subfamily N member 1 protein-coding 3.154 2.336
+378108 TRIM74 tripartite motif containing 74 protein-coding 1.891 1.436
+3782 KCNN3 potassium calcium-activated channel subfamily N member 3 protein-coding 5.136 1.898
+3783 KCNN4 potassium calcium-activated channel subfamily N member 4 protein-coding 7.687 2.701
+3784 KCNQ1 potassium voltage-gated channel subfamily Q member 1 protein-coding 8.164 1.875
+3785 KCNQ2 potassium voltage-gated channel subfamily Q member 2 protein-coding 2.1 3.407
+3786 KCNQ3 potassium voltage-gated channel subfamily Q member 3 protein-coding 3.484 2.123
+3787 KCNS1 potassium voltage-gated channel modifier subfamily S member 1 protein-coding 3.614 2.604
+378708 CENPS centromere protein S protein-coding 7.98 0.7229
+378805 LINC-PINT long intergenic non-protein coding RNA, p53 induced transcript ncRNA 6.455 1.209
+378832 COL18A1-AS1 COL18A1 antisense RNA 1 ncRNA 0.5954 0.9994
378884 NHLRC1 NHL repeat containing E3 ubiquitin protein ligase 1 protein-coding 6.148 1.252
378938 MALAT1 metastasis associated lung adenocarcinoma transcript 1 (non-protein coding) ncRNA 11.3 1.28
-379 ARL4D ADP ribosylation factor like GTPase 4D protein-coding 7.901 1.9
-3790 KCNS3 potassium voltage-gated channel modifier subfamily S member 3 protein-coding 7.861 1.783
-379013 RNF138P1 ring finger protein 138 pseudogene 1 pseudo 3.756 1.096
+379 ARL4D ADP ribosylation factor like GTPase 4D protein-coding 7.902 1.899
+3790 KCNS3 potassium voltage-gated channel modifier subfamily S member 3 protein-coding 7.861 1.782
+379013 RNF138P1 ring finger protein 138 pseudogene 1 pseudo 3.757 1.096
3791 KDR kinase insert domain receptor protein-coding 9.068 1.56
-3792 KEL Kell blood group, metallo-endopeptidase protein-coding 2.456 1.805
-3795 KHK ketohexokinase protein-coding 7.553 1.875
-3796 KIF2A kinesin family member 2A protein-coding 8.901 0.959
-3797 KIF3C kinesin family member 3C protein-coding 8.588 1.532
-3798 KIF5A kinesin family member 5A protein-coding 3.229 3.209
-3799 KIF5B kinesin family member 5B protein-coding 11.88 0.6883
+3792 KEL Kell blood group, metallo-endopeptidase protein-coding 2.457 1.806
+3795 KHK ketohexokinase protein-coding 7.553 1.874
+3796 KIF2A kinesin family member 2A protein-coding 8.9 0.9587
+3797 KIF3C kinesin family member 3C protein-coding 8.589 1.531
+3798 KIF5A kinesin family member 5A protein-coding 3.231 3.209
+3799 KIF5B kinesin family member 5B protein-coding 11.88 0.6882
38 ACAT1 acetyl-CoA acetyltransferase 1 protein-coding 10.07 1.205
-3800 KIF5C kinesin family member 5C protein-coding 6.665 3.051
+3800 KIF5C kinesin family member 5C protein-coding 6.667 3.052
3801 KIFC3 kinesin family member C3 protein-coding 9.487 1.315
-3804 KIR2DL3 killer cell immunoglobulin like receptor, two Ig domains and long cytoplasmic tail 3 protein-coding 0.9806 1.191
-3805 KIR2DL4 killer cell immunoglobulin like receptor, two Ig domains and long cytoplasmic tail 4 protein-coding 2.05 1.685
+3804 KIR2DL3 killer cell immunoglobulin like receptor, two Ig domains and long cytoplasmic tail 3 protein-coding 0.9805 1.191
+3805 KIR2DL4 killer cell immunoglobulin like receptor, two Ig domains and long cytoplasmic tail 4 protein-coding 2.049 1.684
3809 KIR2DS4 killer cell immunoglobulin like receptor, two Ig domains and short cytoplasmic tail 4 protein-coding 0.99 1.257
-381 ARF5 ADP ribosylation factor 5 protein-coding 11.57 0.6226
-3811 KIR3DL1 killer cell immunoglobulin like receptor, three Ig domains and long cytoplasmic tail 1 protein-coding 0.9264 1.15
-3812 KIR3DL2 killer cell immunoglobulin like receptor, three Ig domains and long cytoplasmic tail 2 protein-coding 1.183 1.333
-3815 KIT KIT proto-oncogene receptor tyrosine kinase protein-coding 7.496 2.225
-3816 KLK1 kallikrein 1 protein-coding 3.386 2.959
-3818 KLKB1 kallikrein B1 protein-coding 3.142 2.416
-382 ARF6 ADP ribosylation factor 6 protein-coding 11.55 0.7106
-3820 KLRB1 killer cell lectin like receptor B1 protein-coding 4.701 2.056
-3821 KLRC1 killer cell lectin like receptor C1 protein-coding 2.509 1.685
-3822 KLRC2 killer cell lectin like receptor C2 protein-coding 2.823 2.256
+381 ARF5 ADP ribosylation factor 5 protein-coding 11.57 0.6225
+3811 KIR3DL1 killer cell immunoglobulin like receptor, three Ig domains and long cytoplasmic tail 1 protein-coding 0.9269 1.151
+3812 KIR3DL2 killer cell immunoglobulin like receptor, three Ig domains and long cytoplasmic tail 2 protein-coding 1.183 1.332
+3815 KIT KIT proto-oncogene receptor tyrosine kinase protein-coding 7.498 2.226
+3816 KLK1 kallikrein 1 protein-coding 3.388 2.961
+3818 KLKB1 kallikrein B1 protein-coding 3.143 2.415
+382 ARF6 ADP ribosylation factor 6 protein-coding 11.55 0.7104
+3820 KLRB1 killer cell lectin like receptor B1 protein-coding 4.703 2.057
+3821 KLRC1 killer cell lectin like receptor C1 protein-coding 2.51 1.685
+3822 KLRC2 killer cell lectin like receptor C2 protein-coding 2.823 2.255
3823 KLRC3 killer cell lectin like receptor C3 protein-coding 2.252 2.072
-3824 KLRD1 killer cell lectin like receptor D1 protein-coding 4.14 1.785
-3827 KNG1 kininogen 1 protein-coding 1.55 3.416
-3831 KLC1 kinesin light chain 1 protein-coding 10.52 0.7133
-3832 KIF11 kinesin family member 11 protein-coding 8.712 1.651
-3833 KIFC1 kinesin family member C1 protein-coding 8.489 1.877
-3835 KIF22 kinesin family member 22 protein-coding 10.39 0.8331
-3836 KPNA1 karyopherin subunit alpha 1 protein-coding 10.61 0.4835
+3824 KLRD1 killer cell lectin like receptor D1 protein-coding 4.142 1.786
+3827 KNG1 kininogen 1 protein-coding 1.549 3.414
+3831 KLC1 kinesin light chain 1 protein-coding 10.52 0.7131
+3832 KIF11 kinesin family member 11 protein-coding 8.71 1.651
+3833 KIFC1 kinesin family member C1 protein-coding 8.487 1.877
+3835 KIF22 kinesin family member 22 protein-coding 10.39 0.8334
+3836 KPNA1 karyopherin subunit alpha 1 protein-coding 10.61 0.4834
3837 KPNB1 karyopherin subunit beta 1 protein-coding 12.21 0.5371
-3838 KPNA2 karyopherin subunit alpha 2 protein-coding 10.86 1.296
-3839 KPNA3 karyopherin subunit alpha 3 protein-coding 9.913 0.6886
-384 ARG2 arginase 2 protein-coding 8.32 1.491
-3840 KPNA4 karyopherin subunit alpha 4 protein-coding 10.79 0.5853
-3841 KPNA5 karyopherin subunit alpha 5 protein-coding 5.695 1.133
+3838 KPNA2 karyopherin subunit alpha 2 protein-coding 10.86 1.297
+3839 KPNA3 karyopherin subunit alpha 3 protein-coding 9.913 0.6884
+384 ARG2 arginase 2 protein-coding 8.32 1.493
+3840 KPNA4 karyopherin subunit alpha 4 protein-coding 10.79 0.5852
+3841 KPNA5 karyopherin subunit alpha 5 protein-coding 5.696 1.133
3842 TNPO1 transportin 1 protein-coding 11.2 0.5672
-3843 IPO5 importin 5 protein-coding 11.62 0.593
-3845 KRAS KRAS proto-oncogene, GTPase protein-coding 10.03 0.8031
-3846 KRTAP5-9 keratin associated protein 5-9 protein-coding 1.989 1.425
-3848 KRT1 keratin 1 protein-coding 2.565 3.349
-3856 KRT8 keratin 8 protein-coding 12.38 4.086
-3858 KRT10 keratin 10 protein-coding 9.235 1.434
-3860 KRT13 keratin 13 protein-coding 4.502 5.003
-386593 CHKB-CPT1B CHKB-CPT1B readthrough (NMD candidate) ncRNA 8.361 1.174
-386724 AMIGO3 adhesion molecule with Ig like domain 3 protein-coding 6.787 0.9311
-386757 SLC6A10P solute carrier family 6 member 10, pseudogene pseudo 3.572 2.139
-387 RHOA ras homolog family member A protein-coding 13.28 0.433
-387032 ZKSCAN4 zinc finger with KRAB and SCAN domains 4 protein-coding 6.783 0.5975
-387036 GUSBP2 glucuronidase, beta pseudogene 2 pseudo 4.545 1.013
-387066 SNHG5 small nucleolar RNA host gene 5 ncRNA 10.53 1.228
-387082 SUMO4 small ubiquitin-like modifier 4 protein-coding 0.913 0.7622
-387103 CENPW centromere protein W protein-coding 7.259 1.812
-387104 SOGA3 SOGA family member 3 protein-coding 5.895 2.579
-387119 CEP85L centrosomal protein 85 like protein-coding 4.608 1.373
-3872 KRT17 keratin 17 protein-coding 8.955 4.958
+3843 IPO5 importin 5 protein-coding 11.62 0.5929
+3845 KRAS KRAS proto-oncogene, GTPase protein-coding 10.03 0.8027
+3846 KRTAP5-9 keratin associated protein 5-9 protein-coding 1.989 1.424
+3848 KRT1 keratin 1 protein-coding 2.564 3.348
+3856 KRT8 keratin 8 protein-coding 12.38 4.085
+3858 KRT10 keratin 10 protein-coding 9.235 1.433
+3860 KRT13 keratin 13 protein-coding 4.503 5.003
+386593 CHKB-CPT1B CHKB-CPT1B readthrough (NMD candidate) ncRNA 8.362 1.174
+386724 AMIGO3 adhesion molecule with Ig like domain 3 protein-coding 6.787 0.931
+386757 SLC6A10P solute carrier family 6 member 10, pseudogene pseudo 3.571 2.138
+387 RHOA ras homolog family member A protein-coding 13.28 0.4328
+387032 ZKSCAN4 zinc finger with KRAB and SCAN domains 4 protein-coding 6.783 0.5973
+387036 GUSBP2 glucuronidase, beta pseudogene 2 pseudo 4.546 1.012
+387066 SNHG5 small nucleolar RNA host gene 5 ncRNA 10.53 1.227
+387082 SUMO4 small ubiquitin-like modifier 4 protein-coding 0.913 0.7621
+387103 CENPW centromere protein W protein-coding 7.257 1.812
+387104 SOGA3 SOGA family member 3 protein-coding 5.896 2.579
+387119 CEP85L centrosomal protein 85 like protein-coding 4.609 1.373
+3872 KRT17 keratin 17 protein-coding 8.953 4.957
387254 SLC7A5P2 solute carrier family 7 member 5 pseudogene 2 pseudo 2.141 1.077
-387263 C6orf120 chromosome 6 open reading frame 120 protein-coding 9.445 0.6024
+387263 C6orf120 chromosome 6 open reading frame 120 protein-coding 9.445 0.6022
387264 KRTAP5-1 keratin associated protein 5-1 protein-coding 2.371 1.55
-387273 KRTAP5-10 keratin associated protein 5-10 protein-coding 0.9769 1.112
-387328 ZNF322P1 zinc finger protein 322 pseudogene 1 pseudo 4.672 0.8614
-387338 NSUN4 NOP2/Sun RNA methyltransferase family member 4 protein-coding 9.043 0.4653
-387357 THEMIS thymocyte selection associated protein-coding 4.105 1.995
-387496 RASL11A RAS like family 11 member A protein-coding 6.745 1.512
-3875 KRT18 keratin 18 protein-coding 12.14 3.426
+387273 KRTAP5-10 keratin associated protein 5-10 protein-coding 0.9768 1.111
+387328 ZNF322P1 zinc finger protein 322 pseudogene 1 pseudo 4.672 0.8611
+387338 NSUN4 NOP2/Sun RNA methyltransferase family member 4 protein-coding 9.043 0.4651
+387357 THEMIS thymocyte selection associated protein-coding 4.107 1.996
+387496 RASL11A RAS like family 11 member A protein-coding 6.745 1.511
+3875 KRT18 keratin 18 protein-coding 12.14 3.425
387509 GPR153 G protein-coupled receptor 153 protein-coding 8.295 1.629
-387521 TMEM189 transmembrane protein 189 protein-coding 10.19 0.8807
-387590 TPTEP1 TPTE pseudogene 1 pseudo 5.143 2.541
-387597 ILDR2 immunoglobulin like domain containing receptor 2 protein-coding 2.339 2.056
-387640 SKIDA1 SKI/DACH domain containing 1 protein-coding 4.241 1.807
-387644 FAM238C family with sequence similarity 238 member C (non-protein coding) ncRNA 2.613 1.584
-387646 LRRC37A6P leucine rich repeat containing 37 member A6, pseudogene pseudo 4.44 1.557
-387647 PTCHD3P1 patched domain containing 3 pseudogene 1 pseudo 8.438 0.6579
-387680 WASHC2A WASH complex subunit 2A protein-coding 8.266 1.394
+387521 TMEM189 transmembrane protein 189 protein-coding 10.19 0.8806
+387590 TPTEP1 TPTE pseudogene 1 pseudo 5.144 2.54
+387597 ILDR2 immunoglobulin like domain containing receptor 2 protein-coding 2.339 2.055
+387640 SKIDA1 SKI/DACH domain containing 1 protein-coding 4.242 1.807
+387644 FAM238C family with sequence similarity 238 member C (non-protein coding) ncRNA 2.614 1.583
+387646 LRRC37A6P leucine rich repeat containing 37 member A6, pseudogene pseudo 4.441 1.557
+387647 PTCHD3P1 patched domain containing 3 pseudogene 1 pseudo 8.438 0.6578
+387680 WASHC2A WASH complex subunit 2A protein-coding 8.267 1.394
387694 SH2D4B SH2 domain containing 4B protein-coding 1.456 1.155
-387700 SLC16A12 solute carrier family 16 member 12 protein-coding 3.883 2.886
-387707 CC2D2B coiled-coil and C2 domain containing 2B protein-coding 2.278 1.323
-387751 GVINP1 GTPase, very large interferon inducible pseudogene 1 pseudo 5.555 1.661
-387755 INSC INSC, spindle orientation adaptor protein protein-coding 1.979 1.806
-387763 C11orf96 chromosome 11 open reading frame 96 protein-coding 8.296 1.658
-387778 SPDYC speedy/RINGO cell cycle regulator family member C protein-coding 1.145 1.95
-387787 LIPT2 lipoyl(octanoyl) transferase 2 protein-coding 4.732 0.8601
-387841 RPL13AP20 ribosomal protein L13a pseudogene 20 pseudo 5.346 0.9848
+387700 SLC16A12 solute carrier family 16 member 12 protein-coding 3.885 2.886
+387707 CC2D2B coiled-coil and C2 domain containing 2B protein-coding 2.279 1.323
+387751 GVINP1 GTPase, very large interferon inducible pseudogene 1 pseudo 5.557 1.662
+387755 INSC INSC, spindle orientation adaptor protein protein-coding 1.98 1.806
+387763 C11orf96 chromosome 11 open reading frame 96 protein-coding 8.297 1.658
+387778 SPDYC speedy/RINGO cell cycle regulator family member C protein-coding 1.144 1.95
+387787 LIPT2 lipoyl(octanoyl) transferase 2 protein-coding 4.732 0.8599
+387841 RPL13AP20 ribosomal protein L13a pseudogene 20 pseudo 5.346 0.9844
387849 REP15 RAB15 effector protein protein-coding 4.039 1.348
387856 CCDC184 coiled-coil domain containing 184 protein-coding 4.828 1.927
387882 C12orf75 chromosome 12 open reading frame 75 protein-coding 8.543 1.925
387885 CFAP73 cilia and flagella associated protein 73 protein-coding 3.027 1.712
387890 TMEM233 transmembrane protein 233 protein-coding 3.019 1.987
-387893 KMT5A lysine methyltransferase 5A protein-coding 9.719 0.6696
-387911 C1QTNF9B C1q and TNF related 9B protein-coding 1.916 1.51
-387914 SHISA2 shisa family member 2 protein-coding 6.053 2.785
-387921 NHLRC3 NHL repeat containing 3 protein-coding 9.064 0.6916
-387923 SERP2 stress associated endoplasmic reticulum protein family member 2 protein-coding 5.064 1.951
-387990 TOMM20L translocase of outer mitochondrial membrane 20 like protein-coding 1.211 0.7443
-388 RHOB ras homolog family member B protein-coding 12.33 1.281
-388011 LINC01550 long intergenic non-protein coding RNA 1550 ncRNA 3.571 2.067
-388115 CCDC9B coiled-coil domain containing 9B protein-coding 8.22 1.485
-388121 TNFAIP8L3 TNF alpha induced protein 8 like 3 protein-coding 5.991 1.755
-388125 C2CD4B C2 calcium dependent domain containing 4B protein-coding 4.407 2.192
+387893 KMT5A lysine methyltransferase 5A protein-coding 9.719 0.6697
+387911 C1QTNF9B C1q and TNF related 9B protein-coding 1.916 1.509
+387914 SHISA2 shisa family member 2 protein-coding 6.054 2.785
+387921 NHLRC3 NHL repeat containing 3 protein-coding 9.064 0.6915
+387923 SERP2 stress associated endoplasmic reticulum protein family member 2 protein-coding 5.065 1.95
+387990 TOMM20L translocase of outer mitochondrial membrane 20 like protein-coding 1.212 0.7444
+388 RHOB ras homolog family member B protein-coding 12.33 1.282
+388011 LINC01550 long intergenic non-protein coding RNA 1550 ncRNA 3.573 2.067
+388115 CCDC9B coiled-coil domain containing 9B protein-coding 8.221 1.485
+388121 TNFAIP8L3 TNF alpha induced protein 8 like 3 protein-coding 5.991 1.754
+388125 C2CD4B C2 calcium dependent domain containing 4B protein-coding 4.408 2.191
388152 GOLGA2P7 golgin A2 pseudogene 7 pseudo 8.461 1.109
-388165 UBE2Q2P1 ubiquitin conjugating enzyme E2 Q2 pseudogene 1 pseudo 3.69 1.272
-388182 SPATA41 spermatogenesis associated 41 (non-protein coding) ncRNA 3.739 1.377
-388228 SBK1 SH3 domain binding kinase 1 protein-coding 7.735 2.199
-388242 LOC388242 SAGA complex associated factor 29 pseudogene pseudo 4.491 1.574
-388272 C16orf87 chromosome 16 open reading frame 87 protein-coding 7.05 0.7162
-388284 C16orf86 chromosome 16 open reading frame 86 protein-coding 5.274 1.268
-388324 INCA1 inhibitor of CDK, cyclin A1 interacting protein 1 protein-coding 4.341 1.024
-388325 SCIMP SLP adaptor and CSK interacting membrane protein protein-coding 3.89 1.576
-388327 C17orf100 chromosome 17 open reading frame 100 protein-coding 6.045 0.9402
-388335 TMEM220 transmembrane protein 220 protein-coding 6.474 1.674
-388341 LRRC75A leucine rich repeat containing 75A protein-coding 5.997 1.702
+388165 UBE2Q2P1 ubiquitin conjugating enzyme E2 Q2 pseudogene 1 pseudo 3.691 1.272
+388182 SPATA41 spermatogenesis associated 41 (non-protein coding) ncRNA 3.74 1.377
+388228 SBK1 SH3 domain binding kinase 1 protein-coding 7.734 2.198
+388242 LOC388242 SAGA complex associated factor 29 pseudogene pseudo 4.492 1.574
+388272 C16orf87 chromosome 16 open reading frame 87 protein-coding 7.05 0.7159
+388284 C16orf86 chromosome 16 open reading frame 86 protein-coding 5.275 1.268
+388324 INCA1 inhibitor of CDK, cyclin A1 interacting protein 1 protein-coding 4.342 1.024
+388325 SCIMP SLP adaptor and CSK interacting membrane protein protein-coding 3.891 1.577
+388327 C17orf100 chromosome 17 open reading frame 100 protein-coding 6.044 0.9399
+388335 TMEM220 transmembrane protein 220 protein-coding 6.476 1.674
+388341 LRRC75A leucine rich repeat containing 75A protein-coding 5.998 1.701
388372 CCL4L1 C-C motif chemokine ligand 4 like 1 protein-coding 5.803 1.822
388389 CCDC103 coiled-coil domain containing 103 protein-coding 6.676 1.559
-388403 YPEL2 yippee like 2 protein-coding 9.065 0.9641
-388507 ZNF788P zinc finger family member 788, pseudogene protein-coding 5.891 1.416
-388512 CLEC17A C-type lectin domain containing 17A protein-coding 1.919 1.774
-388524 RPSAP58 ribosomal protein SA pseudogene 58 protein-coding 13.01 0.7787
-388531 RGS9BP regulator of G protein signaling 9 binding protein protein-coding 2.553 1.343
+388403 YPEL2 yippee like 2 protein-coding 9.066 0.9642
+388507 ZNF788P zinc finger family member 788, pseudogene protein-coding 5.892 1.416
+388512 CLEC17A C-type lectin domain containing 17A protein-coding 1.92 1.774
+388524 RPSAP58 ribosomal protein SA pseudogene 58 protein-coding 13.01 0.7785
+388531 RGS9BP regulator of G protein signaling 9 binding protein protein-coding 2.554 1.344
388536 ZNF790 zinc finger protein 790 protein-coding 6.375 1.009
-388552 BLOC1S3 biogenesis of lysosomal organelles complex 1 subunit 3 protein-coding 8.485 0.5552
-388558 ZNF808 zinc finger protein 808 protein-coding 7.338 0.9272
-388561 ZNF761 zinc finger protein 761 protein-coding 8.396 1.212
-388566 ZNF470 zinc finger protein 470 protein-coding 6.886 1.448
-388567 ZNF749 zinc finger protein 749 protein-coding 5.953 0.8469
+388552 BLOC1S3 biogenesis of lysosomal organelles complex 1 subunit 3 protein-coding 8.485 0.5551
+388558 ZNF808 zinc finger protein 808 protein-coding 7.339 0.9271
+388561 ZNF761 zinc finger protein 761 protein-coding 8.397 1.212
+388566 ZNF470 zinc finger protein 470 protein-coding 6.887 1.447
+388567 ZNF749 zinc finger protein 749 protein-coding 5.953 0.8466
388569 ZNF324B zinc finger protein 324B protein-coding 6.92 0.5508
-388581 C1QTNF12 C1q and TNF related 12 protein-coding 3.35 2.146
-388585 HES5 hes family bHLH transcription factor 5 protein-coding 2.319 2.019
-388588 SMIM1 small integral membrane protein 1 (Vel blood group) protein-coding 4.478 1.982
-388591 RNF207 ring finger protein 207 protein-coding 7.156 1.459
-388610 TRNP1 TMF1-regulated nuclear protein 1 protein-coding 7.502 1.889
-388646 GBP7 guanylate binding protein 7 protein-coding 1.254 1.936
+388581 C1QTNF12 C1q and TNF related 12 protein-coding 3.349 2.145
+388585 HES5 hes family bHLH transcription factor 5 protein-coding 2.317 2.019
+388588 SMIM1 small integral membrane protein 1 (Vel blood group) protein-coding 4.479 1.981
+388591 RNF207 ring finger protein 207 protein-coding 7.157 1.458
+388610 TRNP1 TMF1-regulated nuclear protein 1 protein-coding 7.503 1.889
+388646 GBP7 guanylate binding protein 7 protein-coding 1.253 1.935
388650 FAM69A family with sequence similarity 69 member A protein-coding 7.978 1.115
-388662 SLC6A17 solute carrier family 6 member 17 protein-coding 4.221 2.893
-388677 NOTCH2NL notch 2 N-terminal like protein-coding 8.851 1.083
+388662 SLC6A17 solute carrier family 6 member 17 protein-coding 4.222 2.893
+388677 NOTCH2NL notch 2 N-terminal like protein-coding 8.851 1.084
388685 LINC01138 long intergenic non-protein coding RNA 1138 ncRNA 1.938 1.027
388692 LOC388692 uncharacterized LOC388692 protein-coding 7.844 1.279
388695 LYSMD1 LysM domain containing 1 protein-coding 7.845 0.6613
-388697 HRNR hornerin protein-coding 3.242 1.917
-388722 C1orf53 chromosome 1 open reading frame 53 protein-coding 5.34 1.26
-388730 TMEM81 transmembrane protein 81 protein-coding 5.77 0.7361
-388753 COA6 cytochrome c oxidase assembly factor 6 protein-coding 8.614 0.7992
-388789 SMIM26 small integral membrane protein 26 protein-coding 9.269 0.6432
-388795 EFCAB8 EF-hand calcium binding domain 8 protein-coding 1.069 1.035
-388796 SNHG17 small nucleolar RNA host gene 17 ncRNA 8.665 0.9676
-388799 FAM209B family with sequence similarity 209 member B protein-coding 1.558 0.9263
-388815 MIR99AHG mir-99a-let-7c cluster host gene ncRNA 4.306 2.191
+388697 HRNR hornerin protein-coding 3.243 1.916
+388722 C1orf53 chromosome 1 open reading frame 53 protein-coding 5.339 1.26
+388730 TMEM81 transmembrane protein 81 protein-coding 5.769 0.736
+388753 COA6 cytochrome c oxidase assembly factor 6 protein-coding 8.613 0.7993
+388789 SMIM26 small integral membrane protein 26 protein-coding 9.269 0.6431
+388795 EFCAB8 EF-hand calcium binding domain 8 protein-coding 1.07 1.036
+388796 SNHG17 small nucleolar RNA host gene 17 ncRNA 8.664 0.9674
+388799 FAM209B family with sequence similarity 209 member B protein-coding 1.558 0.9262
+388815 MIR99AHG mir-99a-let-7c cluster host gene ncRNA 4.308 2.191
388886 LRRC75B leucine rich repeat containing 75B protein-coding 7.749 1.491
-388931 MFSD2B major facilitator superfamily domain containing 2B protein-coding 5.063 1.71
-388955 LOC388955 PRELI domain-containing protein 1, mitochondrial pseudogene pseudo 8.744 0.7542
-388962 BOLA3 bolA family member 3 protein-coding 8.217 0.7459
-388963 C2orf81 chromosome 2 open reading frame 81 protein-coding 6.618 1.329
-388965 FUNDC2P2 FUN14 domain containing 2 pseudogene 2 pseudo 1.868 1.024
+388931 MFSD2B major facilitator superfamily domain containing 2B protein-coding 5.062 1.709
+388955 LOC388955 PRELI domain-containing protein 1, mitochondrial pseudogene pseudo 8.744 0.7543
+388962 BOLA3 bolA family member 3 protein-coding 8.216 0.746
+388963 C2orf81 chromosome 2 open reading frame 81 protein-coding 6.619 1.329
+388965 FUNDC2P2 FUN14 domain containing 2 pseudogene 2 pseudo 1.867 1.024
388969 C2orf68 chromosome 2 open reading frame 68 protein-coding 9.638 0.5531
-389 RHOC ras homolog family member C protein-coding 12.22 0.7488
-389072 PLEKHM3 pleckstrin homology domain containing M3 protein-coding 8.282 0.9613
-389084 SNORC secondary ossification center associated regulator of chondrocyte maturation protein-coding 2.093 1.83
-389114 ZNF662 zinc finger protein 662 protein-coding 6.137 1.808
+389 RHOC ras homolog family member C protein-coding 12.22 0.7486
+389072 PLEKHM3 pleckstrin homology domain containing M3 protein-coding 8.283 0.9616
+389084 SNORC secondary ossification center associated regulator of chondrocyte maturation protein-coding 2.092 1.829
+389114 ZNF662 zinc finger protein 662 protein-coding 6.139 1.808
389118 CDHR4 cadherin related family member 4 protein-coding 1.248 1.98
-389119 FAM212A family with sequence similarity 212 member A protein-coding 5.652 1.508
-389125 MUSTN1 musculoskeletal, embryonic nuclear protein 1 protein-coding 5.119 1.675
-389136 VGLL3 vestigial like family member 3 protein-coding 6.637 2.467
+389119 FAM212A family with sequence similarity 212 member A protein-coding 5.652 1.507
+389125 MUSTN1 musculoskeletal, embryonic nuclear protein 1 protein-coding 5.121 1.675
+389136 VGLL3 vestigial like family member 3 protein-coding 6.638 2.467
389170 LEKR1 leucine, glutamate and lysine rich 1 protein-coding 3.922 1.109
-389203 SMIM20 small integral membrane protein 20 protein-coding 8.746 0.6902
-389206 BEND4 BEN domain containing 4 protein-coding 2.637 2.71
+389203 SMIM20 small integral membrane protein 20 protein-coding 8.746 0.69
+389206 BEND4 BEN domain containing 4 protein-coding 2.64 2.711
389289 ANXA2R annexin A2 receptor protein-coding 5.692 1.272
389293 ISCA1P1 iron-sulfur cluster assembly 1 pseudogene 1 pseudo 5.886 0.5957
-389332 SMIM32 small integral membrane protein 32 protein-coding 2.501 2.769
+389332 SMIM32 small integral membrane protein 32 protein-coding 2.502 2.769
389333 PROB1 proline rich basic protein 1 protein-coding 5.357 1.243
-389337 ARHGEF37 Rho guanine nucleotide exchange factor 37 protein-coding 8.161 1.74
-389362 PSMG4 proteasome assembly chaperone 4 protein-coding 7.736 0.8371
-389432 SAMD5 sterile alpha motif domain containing 5 protein-coding 6.534 2.15
+389337 ARHGEF37 Rho guanine nucleotide exchange factor 37 protein-coding 8.162 1.74
+389362 PSMG4 proteasome assembly chaperone 4 protein-coding 7.736 0.8368
+389432 SAMD5 sterile alpha motif domain containing 5 protein-coding 6.534 2.149
389458 RBAKDN RBAK downstream neighbor (non-protein coding) ncRNA 2.349 1.378
-3895 KTN1 kinectin 1 protein-coding 12.02 0.7254
-389524 GTF2IRD2B GTF2I repeat domain containing 2B protein-coding 6.693 1.182
-389538 CCZ1P-OR7E38P CCZ1P-OR7E38P readthrough pseudo 6.617 1.017
-389541 LAMTOR4 late endosomal/lysosomal adaptor, MAPK and MTOR activator 4 protein-coding 10.44 0.7919
-389610 XKR5 XK related 5 protein-coding 2.188 1.542
-389634 LINC00937 long intergenic non-protein coding RNA 937 ncRNA 2.487 1.473
-389643 NUGGC nuclear GTPase, germinal center associated protein-coding 3.182 2.253
-389668 XKR9 XK related 9 protein-coding 4.189 1.965
-389677 RBM12B RNA binding motif protein 12B protein-coding 8.527 0.683
-3897 L1CAM L1 cell adhesion molecule protein-coding 6.18 3.173
+3895 KTN1 kinectin 1 protein-coding 12.02 0.7251
+389524 GTF2IRD2B GTF2I repeat domain containing 2B protein-coding 6.694 1.182
+389538 CCZ1P-OR7E38P CCZ1P-OR7E38P readthrough pseudo 6.616 1.017
+389541 LAMTOR4 late endosomal/lysosomal adaptor, MAPK and MTOR activator 4 protein-coding 10.44 0.7917
+389610 XKR5 XK related 5 protein-coding 2.189 1.542
+389634 LINC00937 long intergenic non-protein coding RNA 937 ncRNA 2.488 1.474
+389643 NUGGC nuclear GTPase, germinal center associated protein-coding 3.184 2.254
+389668 XKR9 XK related 9 protein-coding 4.189 1.964
+389677 RBM12B RNA binding motif protein 12B protein-coding 8.527 0.6828
+3897 L1CAM L1 cell adhesion molecule protein-coding 6.181 3.173
389705 LOC389705 histone PARylation factor 1 pseudogene pseudo 2.364 1.245
-389741 GLIDR glioblastoma down-regulated RNA ncRNA 6.962 1.061
-389791 PTGES2-AS1 PTGES2 antisense RNA 1 (head to head) ncRNA 2.411 1.289
-389792 IER5L immediate early response 5 like protein-coding 8.453 1.376
-389799 CFAP77 cilia and flagella associated protein 77 protein-coding 1.543 2.107
-389813 AJM1 apical junction component 1 homolog protein-coding 4.015 1.544
-389816 LRRC26 leucine rich repeat containing 26 protein-coding 2.566 2.98
-389840 MAP3K15 mitogen-activated protein kinase kinase kinase 15 protein-coding 1.589 1.886
-389856 USP27X ubiquitin specific peptidase 27, X-linked protein-coding 6.897 0.8829
-389898 UBE2NL ubiquitin conjugating enzyme E2 N like (gene/pseudogene) protein-coding 2.102 1.122
-3899 AFF3 AF4/FMR2 family member 3 protein-coding 6.622 2.806
-389941 C1QL3 complement C1q like 3 protein-coding 3.471 1.772
+389741 GLIDR glioblastoma down-regulated RNA ncRNA 6.963 1.061
+389791 PTGES2-AS1 PTGES2 antisense RNA 1 (head to head) ncRNA 2.412 1.289
+389792 IER5L immediate early response 5 like protein-coding 8.452 1.376
+389799 CFAP77 cilia and flagella associated protein 77 protein-coding 1.544 2.107
+389813 AJM1 apical junction component 1 homolog protein-coding 4.016 1.544
+389816 LRRC26 leucine rich repeat containing 26 protein-coding 2.566 2.981
+389840 MAP3K15 mitogen-activated protein kinase kinase kinase 15 protein-coding 1.591 1.887
+389856 USP27X ubiquitin specific peptidase 27, X-linked protein-coding 6.897 0.8826
+389898 UBE2NL ubiquitin conjugating enzyme E2 N like (gene/pseudogene) protein-coding 2.101 1.122
+3899 AFF3 AF4/FMR2 family member 3 protein-coding 6.624 2.805
+389941 C1QL3 complement C1q like 3 protein-coding 3.471 1.771
39 ACAT2 acetyl-CoA acetyltransferase 2 protein-coding 9.156 1.11
-390 RND3 Rho family GTPase 3 protein-coding 9.554 1.445
+390 RND3 Rho family GTPase 3 protein-coding 9.553 1.445
3902 LAG3 lymphocyte activating 3 protein-coding 5.954 1.952
-390205 LRRC10B leucine rich repeat containing 10B protein-coding 4.465 2.044
-390212 GPR152 G protein-coupled receptor 152 protein-coding 0.7056 0.8423
-390284 SRP14P1 signal recognition particle 14 pseudogene 1 pseudo 2.61 0.834
-3903 LAIR1 leukocyte associated immunoglobulin like receptor 1 protein-coding 8.152 1.538
+390205 LRRC10B leucine rich repeat containing 10B protein-coding 4.466 2.044
+390212 GPR152 G protein-coupled receptor 152 protein-coding 0.7062 0.8423
+390284 SRP14P1 signal recognition particle 14 pseudogene 1 pseudo 2.61 0.8339
+3903 LAIR1 leukocyte associated immunoglobulin like receptor 1 protein-coding 8.153 1.538
3904 LAIR2 leukocyte associated immunoglobulin like receptor 2 protein-coding 1.715 1.541
-390595 UBAP1L ubiquitin associated protein 1 like protein-coding 3.127 1.263
+390595 UBAP1L ubiquitin associated protein 1 like protein-coding 3.128 1.263
390598 SKOR1 SKI family transcriptional corepressor 1 protein-coding 2.387 1.334
-390637 GDPGP1 GDP-D-glucose phosphorylase 1 protein-coding 5.613 0.6993
-390667 PTX4 pentraxin 4 protein-coding 0.5904 0.9986
-3908 LAMA2 laminin subunit alpha 2 protein-coding 7.701 2.027
-3909 LAMA3 laminin subunit alpha 3 protein-coding 9.105 2.748
+390637 GDPGP1 GDP-D-glucose phosphorylase 1 protein-coding 5.613 0.6991
+390667 PTX4 pentraxin 4 protein-coding 0.5907 0.9984
+3908 LAMA2 laminin subunit alpha 2 protein-coding 7.704 2.028
+3909 LAMA3 laminin subunit alpha 3 protein-coding 9.106 2.747
390916 NUDT19 nudix hydrolase 19 protein-coding 8.76 0.8506
-390927 ZNF793 zinc finger protein 793 protein-coding 6.288 1.738
-390980 ZNF805 zinc finger protein 805 protein-coding 8.187 0.5345
-391 RHOG ras homolog family member G protein-coding 10.16 0.6489
-3910 LAMA4 laminin subunit alpha 4 protein-coding 10.12 1.371
-391059 FRRS1 ferric chelate reductase 1 protein-coding 5.87 2.073
+390927 ZNF793 zinc finger protein 793 protein-coding 6.289 1.737
+390980 ZNF805 zinc finger protein 805 protein-coding 8.187 0.5347
+391 RHOG ras homolog family member G protein-coding 10.16 0.6491
+3910 LAMA4 laminin subunit alpha 4 protein-coding 10.12 1.37
+391059 FRRS1 ferric chelate reductase 1 protein-coding 5.87 2.072
3911 LAMA5 laminin subunit alpha 5 protein-coding 11.56 1.249
391123 VSIG8 V-set and immunoglobulin domain containing 8 protein-coding 1.704 1.919
-3912 LAMB1 laminin subunit beta 1 protein-coding 11.59 1.537
+3912 LAMB1 laminin subunit beta 1 protein-coding 11.59 1.536
391267 ANKRD20A11P ankyrin repeat domain 20 family member A11, pseudogene pseudo 1.172 1.094
3913 LAMB2 laminin subunit beta 2 protein-coding 11.84 1.098
-391322 LOC391322 D-dopachrome tautomerase-like protein-coding 2.494 1.669
-391356 PTRHD1 peptidyl-tRNA hydrolase domain containing 1 protein-coding 8.635 0.7743
+391322 LOC391322 D-dopachrome tautomerase-like protein-coding 2.495 1.67
+391356 PTRHD1 peptidyl-tRNA hydrolase domain containing 1 protein-coding 8.635 0.7742
3914 LAMB3 laminin subunit beta 3 protein-coding 10.25 2.874
-3915 LAMC1 laminin subunit gamma 1 protein-coding 12.04 1.112
-3916 LAMP1 lysosomal associated membrane protein 1 protein-coding 12.81 0.5969
-391634 HSP90AB2P heat shock protein 90 alpha family class B member 2, pseudogene pseudo 5.374 1.265
-391712 TRIM61 tripartite motif containing 61 protein-coding 1.922 1.64
-392 ARHGAP1 Rho GTPase activating protein 1 protein-coding 11.59 0.5872
-3920 LAMP2 lysosomal associated membrane protein 2 protein-coding 12.26 0.7158
-3921 RPSA ribosomal protein SA protein-coding 12.58 0.8336
-392307 FAM221B family with sequence similarity 221 member B protein-coding 1.312 1.26
+3915 LAMC1 laminin subunit gamma 1 protein-coding 12.04 1.111
+3916 LAMP1 lysosomal associated membrane protein 1 protein-coding 12.81 0.5968
+391634 HSP90AB2P heat shock protein 90 alpha family class B member 2, pseudogene pseudo 5.374 1.264
+391712 TRIM61 tripartite motif containing 61 protein-coding 1.924 1.641
+392 ARHGAP1 Rho GTPase activating protein 1 protein-coding 11.59 0.587
+3920 LAMP2 lysosomal associated membrane protein 2 protein-coding 12.26 0.7155
+3921 RPSA ribosomal protein SA protein-coding 12.58 0.8334
+392307 FAM221B family with sequence similarity 221 member B protein-coding 1.313 1.26
392465 GLOD5 glyoxalase domain containing 5 protein-coding 2.596 2.017
392490 FLJ44635 TPT1-like protein protein-coding 4.568 1.177
3925 STMN1 stathmin 1 protein-coding 11.66 1.292
392617 ELFN1 extracellular leucine rich repeat and fibronectin type III domain containing 1 protein-coding 5.915 1.759
3927 LASP1 LIM and SH3 protein 1 protein-coding 12.43 0.7604
-392862 GRID2IP Grid2 interacting protein protein-coding 3.401 1.58
-3929 LBP lipopolysaccharide binding protein protein-coding 2.671 3.513
+392862 GRID2IP Grid2 interacting protein protein-coding 3.402 1.58
+3929 LBP lipopolysaccharide binding protein protein-coding 2.67 3.512
393 ARHGAP4 Rho GTPase activating protein 4 protein-coding 9.114 1.366
3930 LBR lamin B receptor protein-coding 10.2 1.074
3931 LCAT lecithin-cholesterol acyltransferase protein-coding 6.755 1.52
-3932 LCK LCK proto-oncogene, Src family tyrosine kinase protein-coding 6.793 2.144
-3934 LCN2 lipocalin 2 protein-coding 7.743 4.611
-3936 LCP1 lymphocyte cytosolic protein 1 protein-coding 10.88 1.66
-3937 LCP2 lymphocyte cytosolic protein 2 protein-coding 8.131 1.379
-3938 LCT lactase protein-coding 1.076 1.515
-3939 LDHA lactate dehydrogenase A protein-coding 13.58 1.152
+3932 LCK LCK proto-oncogene, Src family tyrosine kinase protein-coding 6.794 2.144
+3934 LCN2 lipocalin 2 protein-coding 7.743 4.612
+3936 LCP1 lymphocyte cytosolic protein 1 protein-coding 10.88 1.661
+3937 LCP2 lymphocyte cytosolic protein 2 protein-coding 8.132 1.379
+3938 LCT lactase protein-coding 1.076 1.517
+3939 LDHA lactate dehydrogenase A protein-coding 13.57 1.152
394 ARHGAP5 Rho GTPase activating protein 5 protein-coding 10.77 0.7913
-3945 LDHB lactate dehydrogenase B protein-coding 12.54 1.536
+3945 LDHB lactate dehydrogenase B protein-coding 12.54 1.535
3949 LDLR low density lipoprotein receptor protein-coding 10.03 1.885
-395 ARHGAP6 Rho GTPase activating protein 6 protein-coding 6.422 2.232
-3952 LEP leptin protein-coding 1.634 2.062
-3953 LEPR leptin receptor protein-coding 7.686 1.529
-3954 LETM1 leucine zipper and EF-hand containing transmembrane protein 1 protein-coding 10.3 0.6081
+395 ARHGAP6 Rho GTPase activating protein 6 protein-coding 6.424 2.233
+3952 LEP leptin protein-coding 1.635 2.063
+3953 LEPR leptin receptor protein-coding 7.687 1.529
+3954 LETM1 leucine zipper and EF-hand containing transmembrane protein 1 protein-coding 10.29 0.6081
3955 LFNG LFNG O-fucosylpeptide 3-beta-N-acetylglucosaminyltransferase protein-coding 9.124 1.705
-3956 LGALS1 galectin 1 protein-coding 11.87 1.375
-3957 LGALS2 galectin 2 protein-coding 4.321 2.824
+3956 LGALS1 galectin 1 protein-coding 11.87 1.374
+3957 LGALS2 galectin 2 protein-coding 4.323 2.825
3958 LGALS3 galectin 3 protein-coding 11.61 1.692
-3959 LGALS3BP galectin 3 binding protein protein-coding 13.54 1.243
-396 ARHGDIA Rho GDP dissociation inhibitor alpha protein-coding 12.76 0.6035
-3960 LGALS4 galectin 4 protein-coding 4.579 4.33
-3964 LGALS8 galectin 8 protein-coding 9.574 0.8763
+3959 LGALS3BP galectin 3 binding protein protein-coding 13.54 1.242
+396 ARHGDIA Rho GDP dissociation inhibitor alpha protein-coding 12.76 0.6034
+3960 LGALS4 galectin 4 protein-coding 4.581 4.33
+3964 LGALS8 galectin 8 protein-coding 9.574 0.876
3965 LGALS9 galectin 9 protein-coding 9.97 1.44
397 ARHGDIB Rho GDP dissociation inhibitor beta protein-coding 11.17 1.256
-3972 LHB luteinizing hormone beta polypeptide protein-coding 1.283 1.291
-3976 LIF LIF, interleukin 6 family cytokine protein-coding 7.451 2.146
-3977 LIFR LIF receptor alpha protein-coding 8.939 2.147
-3978 LIG1 DNA ligase 1 protein-coding 9.618 0.8787
-398 ARHGDIG Rho GDP dissociation inhibitor gamma protein-coding 2.398 2.737
-3980 LIG3 DNA ligase 3 protein-coding 9.211 0.708
-3981 LIG4 DNA ligase 4 protein-coding 8.103 0.7815
+3972 LHB luteinizing hormone beta polypeptide protein-coding 1.283 1.29
+3976 LIF LIF, interleukin 6 family cytokine protein-coding 7.45 2.146
+3977 LIFR LIF receptor alpha protein-coding 8.941 2.147
+3978 LIG1 DNA ligase 1 protein-coding 9.618 0.8785
+398 ARHGDIG Rho GDP dissociation inhibitor gamma protein-coding 2.399 2.736
+3980 LIG3 DNA ligase 3 protein-coding 9.211 0.7079
+3981 LIG4 DNA ligase 4 protein-coding 8.103 0.7813
3983 ABLIM1 actin binding LIM protein 1 protein-coding 11.32 1.233
3984 LIMK1 LIM domain kinase 1 protein-coding 10.21 0.8835
-3985 LIMK2 LIM domain kinase 2 protein-coding 10.41 0.904
+3985 LIMK2 LIM domain kinase 2 protein-coding 10.41 0.9037
3987 LIMS1 LIM zinc finger domain containing 1 protein-coding 8.087 1.278
-3988 LIPA lipase A, lysosomal acid type protein-coding 10.8 0.9324
-399 RHOH ras homolog family member H protein-coding 6.096 1.972
-3990 LIPC lipase C, hepatic type protein-coding 3.722 2.917
+3988 LIPA lipase A, lysosomal acid type protein-coding 10.8 0.9329
+399 RHOH ras homolog family member H protein-coding 6.097 1.972
+3990 LIPC lipase C, hepatic type protein-coding 3.722 2.916
3991 LIPE lipase E, hormone sensitive type protein-coding 6.935 1.499
3992 FADS1 fatty acid desaturase 1 protein-coding 9.626 1.505
3993 LLGL2 LLGL2, scribble cell polarity complex component protein-coding 9.99 1.954
399473 SPRED3 sprouty related EVH1 domain containing 3 protein-coding 1.331 1.238
-399474 TMEM200B transmembrane protein 200B protein-coding 6.164 2.006
-3995 FADS3 fatty acid desaturase 3 protein-coding 8.569 1.103
+399474 TMEM200B transmembrane protein 200B protein-coding 6.164 2.005
+3995 FADS3 fatty acid desaturase 3 protein-coding 8.569 1.102
399512 SLC25A35 solute carrier family 25 member 35 protein-coding 7.075 1.082
-3996 LLGL1 LLGL1, scribble cell polarity complex component protein-coding 9.657 0.9809
-399664 MEX3D mex-3 RNA binding family member D protein-coding 8.792 0.8201
-399665 FAM102A family with sequence similarity 102 member A protein-coding 10.98 0.8923
-399668 SMIM10L2A small integral membrane protein 10 like 2A protein-coding 5.798 2.487
-399669 ZNF321P zinc finger protein 321, pseudogene pseudo 5.875 1.556
-399671 HEATR4 HEAT repeat containing 4 protein-coding 2.216 1.183
-399687 MYO18A myosin XVIIIA protein-coding 10.47 0.9629
-399694 SHC4 SHC adaptor protein 4 protein-coding 4.097 2.094
-399726 CASC10 cancer susceptibility 10 protein-coding 5.064 1.909
-399744 LINC00999 long intergenic non-protein coding RNA 999 ncRNA 6.912 0.9963
-399761 BMS1P1 BMS1, ribosome biogenesis factor pseudogene 1 pseudo 5.763 0.9732
-3998 LMAN1 lectin, mannose binding 1 protein-coding 11.62 0.8107
-399815 LOC399815 chromosome 10 open reading frame 88 pseudogene pseudo 2.778 1.568
-399818 EEF1AKMT2 EEF1A lysine methyltransferase 2 protein-coding 7.945 0.5842
-399844 LINC01002 long intergenic non-protein coding RNA 1002 ncRNA 5.893 1.999
-399909 PCNX3 pecanex homolog 3 protein-coding 10.6 0.5492
+3996 LLGL1 LLGL1, scribble cell polarity complex component protein-coding 9.657 0.9804
+399664 MEX3D mex-3 RNA binding family member D protein-coding 8.792 0.8198
+399665 FAM102A family with sequence similarity 102 member A protein-coding 10.98 0.8922
+399668 SMIM10L2A small integral membrane protein 10 like 2A protein-coding 5.799 2.486
+399669 ZNF321P zinc finger protein 321, pseudogene pseudo 5.876 1.556
+399671 HEATR4 HEAT repeat containing 4 protein-coding 2.217 1.183
+399687 MYO18A myosin XVIIIA protein-coding 10.47 0.9628
+399694 SHC4 SHC adaptor protein 4 protein-coding 4.097 2.093
+399726 CASC10 cancer susceptibility 10 protein-coding 5.064 1.908
+399744 LINC00999 long intergenic non-protein coding RNA 999 ncRNA 6.913 0.996
+399761 BMS1P1 BMS1, ribosome biogenesis factor pseudogene 1 pseudo 5.764 0.9731
+3998 LMAN1 lectin, mannose binding 1 protein-coding 11.62 0.8104
+399815 LOC399815 chromosome 10 open reading frame 88 pseudogene pseudo 2.777 1.567
+399818 EEF1AKMT2 EEF1A lysine methyltransferase 2 protein-coding 7.945 0.584
+399844 LINC01002 long intergenic non-protein coding RNA 1002 ncRNA 5.894 1.998
+399909 PCNX3 pecanex homolog 3 protein-coding 10.6 0.549
399947 C11orf87 chromosome 11 open reading frame 87 protein-coding 1.703 2.346
-399948 COLCA1 colorectal cancer associated 1 protein-coding 6.121 2.705
-399959 MIR100HG mir-100-let-7a-2-mir-125b-1 cluster host gene ncRNA 7.461 2.132
-399979 SNX19 sorting nexin 19 protein-coding 10.56 0.7187
+399948 COLCA1 colorectal cancer associated 1 protein-coding 6.124 2.706
+399959 MIR100HG mir-100-let-7a-2-mir-125b-1 cluster host gene ncRNA 7.462 2.132
+399979 SNX19 sorting nexin 19 protein-coding 10.56 0.7185
400 ARL1 ADP ribosylation factor like GTPase 1 protein-coding 10.95 0.6243
4000 LMNA lamin A/C protein-coding 12.93 1.108
-400027 LINC00938 long intergenic non-protein coding RNA 938 ncRNA 7.785 0.8802
-400043 LINC02381 long intergenic non-protein coding RNA 2381 ncRNA 6.347 2.01
-400073 C12orf76 chromosome 12 open reading frame 76 protein-coding 7.454 0.9893
-4001 LMNB1 lamin B1 protein-coding 9.545 1.519
-400120 SERTM1 serine rich and transmembrane domain containing 1 protein-coding 1.867 2.379
-400224 PLEKHD1 pleckstrin homology and coiled-coil domain containing D1 protein-coding 1.626 1.705
+400027 LINC00938 long intergenic non-protein coding RNA 938 ncRNA 7.786 0.8802
+400043 LINC02381 long intergenic non-protein coding RNA 2381 ncRNA 6.348 2.009
+400073 C12orf76 chromosome 12 open reading frame 76 protein-coding 7.454 0.9889
+4001 LMNB1 lamin B1 protein-coding 9.543 1.52
+400120 SERTM1 serine rich and transmembrane domain containing 1 protein-coding 1.87 2.38
+400224 PLEKHD1 pleckstrin homology and coiled-coil domain containing D1 protein-coding 1.627 1.706
400242 DICER1-AS1 DICER1 antisense RNA 1 ncRNA 5.594 1.24
-400322 HERC2P2 hect domain and RLD 2 pseudogene 2 pseudo 9.396 1.232
+400322 HERC2P2 hect domain and RLD 2 pseudogene 2 pseudo 9.397 1.232
400410 ST20 suppressor of tumorigenicity 20 protein-coding 6.058 1.003
-400451 FAM174B family with sequence similarity 174 member B protein-coding 8.768 1.911
-4005 LMO2 LIM domain only 2 protein-coding 8.08 1.306
-400506 KNOP1 lysine rich nucleolar protein 1 protein-coding 8.636 0.6671
-400508 CRYM-AS1 CRYM antisense RNA 1 ncRNA 1.824 0.9974
-400566 C17orf97 chromosome 17 open reading frame 97 protein-coding 6.736 1.387
-400569 MED11 mediator complex subunit 11 protein-coding 8.053 0.6697
-400581 GRAPL GRB2 related adaptor protein like protein-coding 1.74 1.172
-400657 LINC00909 long intergenic non-protein coding RNA 909 ncRNA 7.436 0.7508
-400673 VMAC vimentin type intermediate filament associated coiled-coil protein protein-coding 6.493 0.7916
-400696 LGALS17A galectin 14 pseudogene pseudo 2.122 1.925
+400451 FAM174B family with sequence similarity 174 member B protein-coding 8.769 1.911
+4005 LMO2 LIM domain only 2 protein-coding 8.081 1.306
+400506 KNOP1 lysine rich nucleolar protein 1 protein-coding 8.635 0.6675
+400508 CRYM-AS1 CRYM antisense RNA 1 ncRNA 1.824 0.9972
+400566 C17orf97 chromosome 17 open reading frame 97 protein-coding 6.736 1.386
+400569 MED11 mediator complex subunit 11 protein-coding 8.053 0.6695
+400581 GRAPL GRB2 related adaptor protein like protein-coding 1.74 1.173
+400657 LINC00909 long intergenic non-protein coding RNA 909 ncRNA 7.437 0.7507
+400673 VMAC vimentin type intermediate filament associated coiled-coil protein protein-coding 6.494 0.7915
+400696 LGALS17A galectin 14 pseudogene pseudo 2.121 1.925
4007 PRICKLE3 prickle planar cell polarity protein 3 protein-coding 7.352 1.266
-400709 SIGLEC16 sialic acid binding Ig like lectin 16 (gene/pseudogene) protein-coding 2.858 1.206
-400710 LOC400710 uncharacterized LOC400710 ncRNA 1.702 1.585
-400713 ZNF880 zinc finger protein 880 protein-coding 6.361 1.7
-400720 ZNF772 zinc finger protein 772 protein-coding 7.08 1.501
-400745 SH2D5 SH2 domain containing 5 protein-coding 3.907 2.379
-400746 NCMAP non-compact myelin associated protein protein-coding 4.949 2.722
+400709 SIGLEC16 sialic acid binding Ig like lectin 16 (gene/pseudogene) protein-coding 2.859 1.206
+400710 LOC400710 uncharacterized LOC400710 ncRNA 1.703 1.585
+400713 ZNF880 zinc finger protein 880 protein-coding 6.363 1.7
+400720 ZNF772 zinc finger protein 772 protein-coding 7.081 1.5
+400745 SH2D5 SH2 domain containing 5 protein-coding 3.906 2.378
+400746 NCMAP non-compact myelin associated protein protein-coding 4.951 2.722
400752 LINC01144 long intergenic non-protein coding RNA 1144 ncRNA 4.688 1.129
-400759 GBP1P1 guanylate binding protein 1 pseudogene 1 pseudo 3.875 1.882
-400793 C1orf226 chromosome 1 open reading frame 226 protein-coding 8.16 1.652
-400798 C1orf220 chromosome 1 open reading frame 220 (putative) ncRNA 3.323 1.287
-4008 LMO7 LIM domain 7 protein-coding 10.22 1.685
+400759 GBP1P1 guanylate binding protein 1 pseudogene 1 pseudo 3.876 1.881
+400793 C1orf226 chromosome 1 open reading frame 226 protein-coding 8.159 1.651
+400798 C1orf220 chromosome 1 open reading frame 220 (putative) ncRNA 3.324 1.287
+4008 LMO7 LIM domain 7 protein-coding 10.22 1.686
400818 NBPF9 NBPF member 9 protein-coding 7.627 1.248
-400823 FAM177B family with sequence similarity 177 member B protein-coding 1.954 1.954
+400823 FAM177B family with sequence similarity 177 member B protein-coding 1.955 1.955
400831 C20orf202 chromosome 20 open reading frame 202 protein-coding 2.648 1.147
-400916 CHCHD10 coiled-coil-helix-coiled-coil-helix domain containing 10 protein-coding 9.216 1.346
-400927 TPTEP2 TPTE pseudogene 2 pseudo 4.235 1.091
-400931 MIRLET7BHG MIRLET7B host gene ncRNA 4.811 1.428
-400935 IL17REL interleukin 17 receptor E like protein-coding 1.558 1.761
-400954 EML6 echinoderm microtubule associated protein like 6 protein-coding 5.518 1.873
-400961 PAIP2B poly(A) binding protein interacting protein 2B protein-coding 7.594 1.52
+400916 CHCHD10 coiled-coil-helix-coiled-coil-helix domain containing 10 protein-coding 9.216 1.345
+400927 TPTEP2 TPTE pseudogene 2 pseudo 4.236 1.091
+400931 MIRLET7BHG MIRLET7B host gene ncRNA 4.811 1.427
+400935 IL17REL interleukin 17 receptor E like protein-coding 1.56 1.762
+400954 EML6 echinoderm microtubule associated protein like 6 protein-coding 5.519 1.873
+400961 PAIP2B poly(A) binding protein interacting protein 2B protein-coding 7.594 1.519
400966 RGPD1 RANBP2-like and GRIP domain containing 1 protein-coding 7.879 1.158
-4010 LMX1B LIM homeobox transcription factor 1 beta protein-coding 3.561 3.184
-401010 NOC2LP2 NOC2 like nucleolar associated transcriptional repressor pseudogene 2 pseudo 5.381 0.8636
-401027 C2orf66 chromosome 2 open reading frame 66 protein-coding 1.151 1.228
-401093 MBNL1-AS1 MBNL1 antisense RNA 1 ncRNA 5.888 1.389
-401105 FLJ42393 uncharacterized LOC401105 ncRNA 0.7668 0.9676
-401115 C4orf48 chromosome 4 open reading frame 48 protein-coding 5.69 1.924
-401124 DTHD1 death domain containing 1 protein-coding 2.013 1.717
-401127 LOC401127 WD repeat domain 5 pseudogene pseudo 2.642 0.8686
-401145 CCSER1 coiled-coil serine rich protein 1 protein-coding 4.492 2.099
-401152 C4orf3 chromosome 4 open reading frame 3 protein-coding 11.34 0.5727
-401172 LINC02145 long intergenic non-protein coding RNA 2145 ncRNA 1.644 1.27
-4012 LNPEP leucyl and cystinyl aminopeptidase protein-coding 7.331 1.184
+4010 LMX1B LIM homeobox transcription factor 1 beta protein-coding 3.56 3.183
+401010 NOC2LP2 NOC2 like nucleolar associated transcriptional repressor pseudogene 2 pseudo 5.38 0.8634
+401027 C2orf66 chromosome 2 open reading frame 66 protein-coding 1.151 1.229
+401093 MBNL1-AS1 MBNL1 antisense RNA 1 ncRNA 5.89 1.39
+401105 FLJ42393 uncharacterized LOC401105 ncRNA 0.7668 0.9675
+401115 C4orf48 chromosome 4 open reading frame 48 protein-coding 5.689 1.924
+401124 DTHD1 death domain containing 1 protein-coding 2.014 1.718
+401127 LOC401127 WD repeat domain 5 pseudogene pseudo 2.642 0.8683
+401145 CCSER1 coiled-coil serine rich protein 1 protein-coding 4.493 2.099
+401152 C4orf3 chromosome 4 open reading frame 3 protein-coding 11.34 0.5725
+401172 LINC02145 long intergenic non-protein coding RNA 2145 ncRNA 1.645 1.27
+4012 LNPEP leucyl and cystinyl aminopeptidase protein-coding 7.332 1.184
401207 C5orf63 chromosome 5 open reading frame 63 protein-coding 4.942 1.227
-401232 LINC01011 long intergenic non-protein coding RNA 1011 ncRNA 5.536 0.9708
-401237 CASC15 cancer susceptibility 15 (non-protein coding) ncRNA 3.996 1.736
-401251 SAPCD1 suppressor APC domain containing 1 protein-coding 5.423 1.285
+401232 LINC01011 long intergenic non-protein coding RNA 1011 ncRNA 5.537 0.9706
+401237 CASC15 cancer susceptibility 15 (non-protein coding) ncRNA 3.995 1.735
+401251 SAPCD1 suppressor APC domain containing 1 protein-coding 5.424 1.285
401253 LINC00336 long intergenic non-protein coding RNA 336 ncRNA 1.216 1.276
-401262 CRIP3 cysteine rich protein 3 protein-coding 2.626 2.022
+401262 CRIP3 cysteine rich protein 3 protein-coding 2.627 2.022
401265 KLHL31 kelch like family member 31 protein-coding 4.48 1.591
401288 LINC00242 long intergenic non-protein coding RNA 242 ncRNA 3.458 1.28
-4013 VWA5A von Willebrand factor A domain containing 5A protein-coding 8.811 1.358
-401303 ZNF815P zinc finger protein 815, pseudogene pseudo 5.034 0.8664
-401331 RASA4CP RAS p21 protein activator 4C, pseudogene pseudo 6.894 1.036
-401375 GTF2IRD2P1 GTF2I repeat domain containing 2 pseudogene 1 pseudo 7.536 1.057
+4013 VWA5A von Willebrand factor A domain containing 5A protein-coding 8.813 1.358
+401303 ZNF815P zinc finger protein 815, pseudogene pseudo 5.034 0.8663
+401331 RASA4CP RAS p21 protein activator 4C, pseudogene pseudo 6.895 1.036
+401375 GTF2IRD2P1 GTF2I repeat domain containing 2 pseudogene 1 pseudo 7.537 1.057
401387 LRRD1 leucine rich repeats and death domain containing 1 protein-coding 1.065 1.006
-401397 SMIM30 small integral membrane protein 30 protein-coding 9.344 0.7176
+401397 SMIM30 small integral membrane protein 30 protein-coding 9.344 0.7173
401399 PRRT4 proline rich transmembrane protein 4 protein-coding 3.212 2.386
-401409 RAB19 RAB19, member RAS oncogene family protein-coding 2.865 1.976
-401427 OR2A7 olfactory receptor family 2 subfamily A member 7 protein-coding 6.694 1.989
-401431 ATP6V0E2-AS1 ATP6V0E2 antisense RNA 1 ncRNA 5.142 1.717
-401466 C8orf59 chromosome 8 open reading frame 59 protein-coding 9.215 0.7499
-401474 SAMD12 sterile alpha motif domain containing 12 protein-coding 7.86 2.113
+401409 RAB19 RAB19, member RAS oncogene family protein-coding 2.866 1.975
+401427 OR2A7 olfactory receptor family 2 subfamily A member 7 protein-coding 6.694 1.988
+401431 ATP6V0E2-AS1 ATP6V0E2 antisense RNA 1 ncRNA 5.143 1.717
+401466 C8orf59 chromosome 8 open reading frame 59 protein-coding 9.214 0.7499
+401474 SAMD12 sterile alpha motif domain containing 12 protein-coding 7.861 2.113
401491 VLDLR-AS1 VLDLR antisense RNA 1 ncRNA 2.871 1.634
-401494 HACD4 3-hydroxyacyl-CoA dehydratase 4 protein-coding 7.335 1.399
-4015 LOX lysyl oxidase protein-coding 8.427 2.109
-401505 TOMM5 translocase of outer mitochondrial membrane 5 protein-coding 9.979 0.6622
-401541 CENPP centromere protein P protein-coding 6.417 1.2
-401546 C9orf152 chromosome 9 open reading frame 152 protein-coding 4.903 3.853
-401548 SNX30 sorting nexin family member 30 protein-coding 9.121 0.9386
+401494 HACD4 3-hydroxyacyl-CoA dehydratase 4 protein-coding 7.336 1.399
+4015 LOX lysyl oxidase protein-coding 8.426 2.109
+401505 TOMM5 translocase of outer mitochondrial membrane 5 protein-coding 9.979 0.6623
+401541 CENPP centromere protein P protein-coding 6.416 1.2
+401546 C9orf152 chromosome 9 open reading frame 152 protein-coding 4.905 3.853
+401548 SNX30 sorting nexin family member 30 protein-coding 9.121 0.9385
401551 WDR38 WD repeat domain 38 protein-coding 1.602 1.993
-401562 LCNL1 lipocalin like 1 protein-coding 1.452 1.785
-401563 C9orf139 chromosome 9 open reading frame 139 protein-coding 2.239 1.254
-401565 FAM166A family with sequence similarity 166 member A protein-coding 0.8606 0.9236
-401588 ZNF674-AS1 ZNF674 antisense RNA 1 (head to head) ncRNA 6.034 0.8312
-4016 LOXL1 lysyl oxidase like 1 protein-coding 8.415 1.909
-401612 SLC25A53 solute carrier family 25 member 53 protein-coding 3.873 1.665
-401647 GOLGA7B golgin A7 family member B protein-coding 6.503 2.328
-4017 LOXL2 lysyl oxidase like 2 protein-coding 9.494 1.627
-401720 FIGNL2 fidgetin like 2 protein-coding 4.58 1.779
-401827 MSLNL mesothelin-like pseudo 0.6612 1.272
-401898 ZNF833P zinc finger protein 833, pseudogene pseudo 4.179 1.097
-401944 LDLRAD2 low density lipoprotein receptor class A domain containing 2 protein-coding 7.155 1.506
-402 ARL2 ADP ribosylation factor like GTPase 2 protein-coding 10.24 0.8182
-402055 SRRD SRR1 domain containing protein-coding 8.019 0.5471
-402176 RPL21P44 ribosomal protein L21 pseudogene 44 pseudo 1.351 0.8863
+401562 LCNL1 lipocalin like 1 protein-coding 1.453 1.785
+401563 C9orf139 chromosome 9 open reading frame 139 protein-coding 2.241 1.255
+401565 FAM166A family with sequence similarity 166 member A protein-coding 0.8609 0.9236
+401588 ZNF674-AS1 ZNF674 antisense RNA 1 (head to head) ncRNA 6.035 0.831
+4016 LOXL1 lysyl oxidase like 1 protein-coding 8.415 1.908
+401612 SLC25A53 solute carrier family 25 member 53 protein-coding 3.874 1.665
+401647 GOLGA7B golgin A7 family member B protein-coding 6.503 2.327
+4017 LOXL2 lysyl oxidase like 2 protein-coding 9.493 1.627
+401720 FIGNL2 fidgetin like 2 protein-coding 4.58 1.778
+401827 MSLNL mesothelin-like pseudo 0.6612 1.271
+401898 ZNF833P zinc finger protein 833, pseudogene pseudo 4.179 1.096
+401944 LDLRAD2 low density lipoprotein receptor class A domain containing 2 protein-coding 7.155 1.505
+402 ARL2 ADP ribosylation factor like GTPase 2 protein-coding 10.24 0.8178
+402055 SRRD SRR1 domain containing protein-coding 8.018 0.547
+402176 RPL21P44 ribosomal protein L21 pseudogene 44 pseudo 1.351 0.8862
4023 LPL lipoprotein lipase protein-coding 7.699 2.269
-402415 XKRX XK related, X-linked protein-coding 4.081 2.218
-402483 LINC01000 long intergenic non-protein coding RNA 1000 ncRNA 9.513 0.8659
+402415 XKRX XK related, X-linked protein-coding 4.081 2.217
+402483 LINC01000 long intergenic non-protein coding RNA 1000 ncRNA 9.514 0.8664
4025 LPO lactoperoxidase protein-coding 1.337 1.521
-402573 C7orf61 chromosome 7 open reading frame 61 protein-coding 3.091 1.565
-4026 LPP LIM domain containing preferred translocation partner in lipoma protein-coding 7.932 1.384
-402665 IGLON5 IgLON family member 5 protein-coding 3.528 2.57
-402682 UFSP1 UFM1 specific peptidase 1 (inactive) protein-coding 5.034 0.964
-403 ARL3 ADP ribosylation factor like GTPase 3 protein-coding 9.25 0.8366
-4033 LRMP lymphoid restricted membrane protein protein-coding 6.332 1.891
-403313 PLPP6 phospholipid phosphatase 6 protein-coding 8.305 0.8463
-403314 APOBEC4 apolipoprotein B mRNA editing enzyme catalytic polypeptide like 4 protein-coding 0.8668 1.55
-403341 ZBTB34 zinc finger and BTB domain containing 34 protein-coding 8.165 0.5952
-4034 LRCH4 leucine rich repeats and calponin homology domain containing 4 protein-coding 9.984 0.7365
+402573 C7orf61 chromosome 7 open reading frame 61 protein-coding 3.09 1.564
+4026 LPP LIM domain containing preferred translocation partner in lipoma protein-coding 7.933 1.384
+402665 IGLON5 IgLON family member 5 protein-coding 3.527 2.57
+402682 UFSP1 UFM1 specific peptidase 1 (inactive) protein-coding 5.033 0.9638
+403 ARL3 ADP ribosylation factor like GTPase 3 protein-coding 9.25 0.8363
+4033 LRMP lymphoid restricted membrane protein protein-coding 6.334 1.891
+403313 PLPP6 phospholipid phosphatase 6 protein-coding 8.305 0.8464
+403314 APOBEC4 apolipoprotein B mRNA editing enzyme catalytic polypeptide like 4 protein-coding 0.8669 1.55
+403341 ZBTB34 zinc finger and BTB domain containing 34 protein-coding 8.166 0.595
+4034 LRCH4 leucine rich repeats and calponin homology domain containing 4 protein-coding 9.985 0.7366
4035 LRP1 LDL receptor related protein 1 protein-coding 12.66 1.228
-4036 LRP2 LDL receptor related protein 2 protein-coding 5.062 4.253
+4036 LRP2 LDL receptor related protein 2 protein-coding 5.061 4.253
4037 LRP3 LDL receptor related protein 3 protein-coding 9.558 1.426
-4038 LRP4 LDL receptor related protein 4 protein-coding 8.224 2.444
-4040 LRP6 LDL receptor related protein 6 protein-coding 9.679 0.8832
-404037 HAPLN4 hyaluronan and proteoglycan link protein 4 protein-coding 3.37 2.327
-404093 CUEDC1 CUE domain containing 1 protein-coding 8.58 0.9788
+4038 LRP4 LDL receptor related protein 4 protein-coding 8.224 2.443
+4040 LRP6 LDL receptor related protein 6 protein-coding 9.679 0.8829
+404037 HAPLN4 hyaluronan and proteoglycan link protein 4 protein-coding 3.371 2.329
+404093 CUEDC1 CUE domain containing 1 protein-coding 8.581 0.9787
4041 LRP5 LDL receptor related protein 5 protein-coding 10.76 1.066
-404201 WDFY3-AS2 WDFY3 antisense RNA 2 ncRNA 4.059 1.724
-404217 CTXN1 cortexin 1 protein-coding 7.111 2.257
-404220 C6orf201 chromosome 6 open reading frame 201 protein-coding 2.628 1.112
+404201 WDFY3-AS2 WDFY3 antisense RNA 2 ncRNA 4.06 1.723
+404217 CTXN1 cortexin 1 protein-coding 7.11 2.256
+404220 C6orf201 chromosome 6 open reading frame 201 protein-coding 2.629 1.112
404281 YY2 YY2 transcription factor protein-coding 4.245 1.117
-4043 LRPAP1 LDL receptor related protein associated protein 1 protein-coding 11.46 0.7543
-4045 LSAMP limbic system associated membrane protein protein-coding 5.32 3.015
+4043 LRPAP1 LDL receptor related protein associated protein 1 protein-coding 11.46 0.754
+4045 LSAMP limbic system associated membrane protein protein-coding 5.323 3.016
404550 C16orf74 chromosome 16 open reading frame 74 protein-coding 5.749 2.127
-4046 LSP1 lymphocyte-specific protein 1 protein-coding 9.404 1.717
-404636 FAM45A family with sequence similarity 45 member A protein-coding 8.565 0.5279
-404672 GTF2H5 general transcription factor IIH subunit 5 protein-coding 9.273 0.6229
+4046 LSP1 lymphocyte-specific protein 1 protein-coding 9.405 1.717
+404636 FAM45A family with sequence similarity 45 member A protein-coding 8.565 0.5278
+404672 GTF2H5 general transcription factor IIH subunit 5 protein-coding 9.273 0.6228
4047 LSS lanosterol synthase protein-coding 10.27 0.8537
-404734 ANKHD1-EIF4EBP3 ANKHD1-EIF4EBP3 readthrough protein-coding 9.412 0.9041
-4048 LTA4H leukotriene A4 hydrolase protein-coding 10.89 0.6513
-4049 LTA lymphotoxin alpha protein-coding 3.227 1.614
-405 ARNT aryl hydrocarbon receptor nuclear translocator protein-coding 10.14 0.5498
-4050 LTB lymphotoxin beta protein-coding 6.593 2.213
+404734 ANKHD1-EIF4EBP3 ANKHD1-EIF4EBP3 readthrough protein-coding 9.412 0.904
+4048 LTA4H leukotriene A4 hydrolase protein-coding 10.89 0.6518
+4049 LTA lymphotoxin alpha protein-coding 3.227 1.615
+405 ARNT aryl hydrocarbon receptor nuclear translocator protein-coding 10.14 0.5497
+4050 LTB lymphotoxin beta protein-coding 6.594 2.214
4051 CYP4F3 cytochrome P450 family 4 subfamily F member 3 protein-coding 4.094 3.416
-4052 LTBP1 latent transforming growth factor beta binding protein 1 protein-coding 10.11 1.674
+4052 LTBP1 latent transforming growth factor beta binding protein 1 protein-coding 10.12 1.674
4053 LTBP2 latent transforming growth factor beta binding protein 2 protein-coding 10.41 1.857
4054 LTBP3 latent transforming growth factor beta binding protein 3 protein-coding 11.24 1.249
4055 LTBR lymphotoxin beta receptor protein-coding 11.04 1.241
-4056 LTC4S leukotriene C4 synthase protein-coding 4.192 1.669
-4057 LTF lactotransferrin protein-coding 7.377 3.926
-405754 ERVFRD-1 endogenous retrovirus group FRD member 1, envelope protein-coding 1.5 1.43
-4058 LTK leukocyte receptor tyrosine kinase protein-coding 3.975 2.173
-4059 BCAM basal cell adhesion molecule (Lutheran blood group) protein-coding 11.47 1.826
-406 ARNTL aryl hydrocarbon receptor nuclear translocator like protein-coding 7.797 1.119
-4060 LUM lumican protein-coding 10.88 3.11
+4056 LTC4S leukotriene C4 synthase protein-coding 4.194 1.669
+4057 LTF lactotransferrin protein-coding 7.38 3.925
+405754 ERVFRD-1 endogenous retrovirus group FRD member 1, envelope protein-coding 1.501 1.43
+4058 LTK leukocyte receptor tyrosine kinase protein-coding 3.975 2.174
+4059 BCAM basal cell adhesion molecule (Lutheran blood group) protein-coding 11.47 1.825
+406 ARNTL aryl hydrocarbon receptor nuclear translocator like protein-coding 7.798 1.119
+4060 LUM lumican protein-coding 10.88 3.109
4061 LY6E lymphocyte antigen 6 family member E protein-coding 11.91 1.637
-4063 LY9 lymphocyte antigen 9 protein-coding 4.398 2.078
+4063 LY9 lymphocyte antigen 9 protein-coding 4.399 2.079
4064 CD180 CD180 molecule protein-coding 5.933 1.624
-4065 LY75 lymphocyte antigen 75 protein-coding 8.38 2.063
-4066 LYL1 LYL1, basic helix-loop-helix family member protein-coding 6.212 1.169
+4065 LY75 lymphocyte antigen 75 protein-coding 8.381 2.063
+4066 LYL1 LYL1, basic helix-loop-helix family member protein-coding 6.213 1.169
4067 LYN LYN proto-oncogene, Src family tyrosine kinase protein-coding 9.704 1.159
-4068 SH2D1A SH2 domain containing 1A protein-coding 4.675 2.161
-4069 LYZ lysozyme protein-coding 11 2.632
-4070 TACSTD2 tumor associated calcium signal transducer 2 protein-coding 10.09 4.146
-4071 TM4SF1 transmembrane 4 L six family member 1 protein-coding 11.22 1.881
-4072 EPCAM epithelial cell adhesion molecule protein-coding 10.45 3.805
-4074 M6PR mannose-6-phosphate receptor, cation dependent protein-coding 11.49 0.5568
-4076 CAPRIN1 cell cycle associated protein 1 protein-coding 12.34 0.5462
-4077 NBR1 NBR1, autophagy cargo receptor protein-coding 11.71 0.5899
-407738 FAM19A1 family with sequence similarity 19 member A1, C-C motif chemokine like protein-coding 1.608 1.66
-407835 LOC407835 mitogen-activated protein kinase kinase 2 pseudogene pseudo 6.334 0.8702
+4068 SH2D1A SH2 domain containing 1A protein-coding 4.676 2.162
+4069 LYZ lysozyme protein-coding 11 2.634
+4070 TACSTD2 tumor associated calcium signal transducer 2 protein-coding 10.09 4.145
+4071 TM4SF1 transmembrane 4 L six family member 1 protein-coding 11.22 1.88
+4072 EPCAM epithelial cell adhesion molecule protein-coding 10.45 3.803
+4074 M6PR mannose-6-phosphate receptor, cation dependent protein-coding 11.49 0.5567
+4076 CAPRIN1 cell cycle associated protein 1 protein-coding 12.34 0.5461
+4077 NBR1 NBR1, autophagy cargo receptor protein-coding 11.71 0.5898
+407738 FAM19A1 family with sequence similarity 19 member A1, C-C motif chemokine like protein-coding 1.609 1.66
+407835 LOC407835 mitogen-activated protein kinase kinase 2 pseudogene pseudo 6.334 0.8698
407975 MIR17HG miR-17-92a-1 cluster host gene ncRNA 4.792 1.505
-407977 TNFSF12-TNFSF13 TNFSF12-TNFSF13 readthrough protein-coding 6.103 2.511
-408 ARRB1 arrestin beta 1 protein-coding 8.234 1.27
+407977 TNFSF12-TNFSF13 TNFSF12-TNFSF13 readthrough protein-coding 6.102 2.512
+408 ARRB1 arrestin beta 1 protein-coding 8.235 1.27
408050 NOMO3 NODAL modulator 3 protein-coding 10.44 0.6827
-4082 MARCKS myristoylated alanine rich protein kinase C substrate protein-coding 11.86 1.117
-4084 MXD1 MAX dimerization protein 1 protein-coding 9.118 1.242
-4085 MAD2L1 mitotic arrest deficient 2 like 1 protein-coding 8.209 1.473
-4086 SMAD1 SMAD family member 1 protein-coding 9.225 0.8502
-4087 SMAD2 SMAD family member 2 protein-coding 10.64 0.5176
-4088 SMAD3 SMAD family member 3 protein-coding 10.5 0.9487
-4089 SMAD4 SMAD family member 4 protein-coding 10.43 0.6242
-409 ARRB2 arrestin beta 2 protein-coding 9.595 0.8397
-4090 SMAD5 SMAD family member 5 protein-coding 10.28 0.6199
-4091 SMAD6 SMAD family member 6 protein-coding 6.774 1.285
-4092 SMAD7 SMAD family member 7 protein-coding 8.899 0.9217
-4093 SMAD9 SMAD family member 9 protein-coding 4.937 2.307
-4094 MAF MAF bZIP transcription factor protein-coding 9.803 1.345
-4097 MAFG MAF bZIP transcription factor G protein-coding 9.574 0.7757
-4099 MAG myelin associated glycoprotein protein-coding 2.442 3.157
+4082 MARCKS myristoylated alanine rich protein kinase C substrate protein-coding 11.86 1.116
+4084 MXD1 MAX dimerization protein 1 protein-coding 9.118 1.241
+4085 MAD2L1 mitotic arrest deficient 2 like 1 protein-coding 8.207 1.474
+4086 SMAD1 SMAD family member 1 protein-coding 9.225 0.8499
+4087 SMAD2 SMAD family member 2 protein-coding 10.64 0.5177
+4088 SMAD3 SMAD family member 3 protein-coding 10.5 0.949
+4089 SMAD4 SMAD family member 4 protein-coding 10.43 0.6243
+409 ARRB2 arrestin beta 2 protein-coding 9.595 0.8402
+4090 SMAD5 SMAD family member 5 protein-coding 10.28 0.6197
+4091 SMAD6 SMAD family member 6 protein-coding 6.776 1.285
+4092 SMAD7 SMAD family member 7 protein-coding 8.9 0.9216
+4093 SMAD9 SMAD family member 9 protein-coding 4.94 2.308
+4094 MAF MAF bZIP transcription factor protein-coding 9.804 1.345
+4097 MAFG MAF bZIP transcription factor G protein-coding 9.574 0.7754
+4099 MAG myelin associated glycoprotein protein-coding 2.442 3.156
41 ASIC1 acid sensing ion channel subunit 1 protein-coding 6.661 2.214
-410 ARSA arylsulfatase A protein-coding 9.743 0.9109
-411 ARSB arylsulfatase B protein-coding 8.494 0.9386
-4116 MAGOH mago homolog, exon junction complex core component protein-coding 9.102 0.7023
-4117 MAK male germ cell associated kinase protein-coding 3.173 1.59
-4118 MAL mal, T cell differentiation protein protein-coding 6.001 3.377
-412 STS steroid sulfatase protein-coding 8.745 1.111
-4121 MAN1A1 mannosidase alpha class 1A member 1 protein-coding 9.061 1.657
-4122 MAN2A2 mannosidase alpha class 2A member 2 protein-coding 10.24 0.8156
-4123 MAN2C1 mannosidase alpha class 2C member 1 protein-coding 10.1 0.7306
-4124 MAN2A1 mannosidase alpha class 2A member 1 protein-coding 8.736 1.37
-4125 MAN2B1 mannosidase alpha class 2B member 1 protein-coding 11.21 0.7853
-4126 MANBA mannosidase beta protein-coding 9.551 0.7419
-4128 MAOA monoamine oxidase A protein-coding 9.93 2.285
-4129 MAOB monoamine oxidase B protein-coding 8.401 2.802
-4130 MAP1A microtubule associated protein 1A protein-coding 8.699 2.101
-4131 MAP1B microtubule associated protein 1B protein-coding 9.951 2.081
-4133 MAP2 microtubule associated protein 2 protein-coding 8.342 2.663
+410 ARSA arylsulfatase A protein-coding 9.743 0.9105
+411 ARSB arylsulfatase B protein-coding 8.494 0.9384
+4116 MAGOH mago homolog, exon junction complex core component protein-coding 9.102 0.7022
+4117 MAK male germ cell associated kinase protein-coding 3.173 1.589
+4118 MAL mal, T cell differentiation protein protein-coding 6.002 3.376
+412 STS steroid sulfatase protein-coding 8.746 1.111
+4121 MAN1A1 mannosidase alpha class 1A member 1 protein-coding 9.062 1.657
+4122 MAN2A2 mannosidase alpha class 2A member 2 protein-coding 10.24 0.8158
+4123 MAN2C1 mannosidase alpha class 2C member 1 protein-coding 10.1 0.7305
+4124 MAN2A1 mannosidase alpha class 2A member 1 protein-coding 8.736 1.369
+4125 MAN2B1 mannosidase alpha class 2B member 1 protein-coding 11.21 0.7857
+4126 MANBA mannosidase beta protein-coding 9.551 0.7417
+4128 MAOA monoamine oxidase A protein-coding 9.931 2.285
+4129 MAOB monoamine oxidase B protein-coding 8.402 2.802
+4130 MAP1A microtubule associated protein 1A protein-coding 8.7 2.101
+4131 MAP1B microtubule associated protein 1B protein-coding 9.952 2.08
+4133 MAP2 microtubule associated protein 2 protein-coding 8.343 2.662
4134 MAP4 microtubule associated protein 4 protein-coding 12.56 0.6756
-4135 MAP6 microtubule associated protein 6 protein-coding 6.283 2.293
-4137 MAPT microtubule associated protein tau protein-coding 7.102 3.231
-4139 MARK1 microtubule affinity regulating kinase 1 protein-coding 7.368 1.898
+4135 MAP6 microtubule associated protein 6 protein-coding 6.285 2.293
+4137 MAPT microtubule associated protein tau protein-coding 7.102 3.23
+4139 MARK1 microtubule affinity regulating kinase 1 protein-coding 7.368 1.897
414 ARSD arylsulfatase D protein-coding 10.42 1.328
-4140 MARK3 microtubule affinity regulating kinase 3 protein-coding 10.32 0.5037
+4140 MARK3 microtubule affinity regulating kinase 3 protein-coding 10.32 0.5035
414059 TBC1D3B TBC1 domain family member 3B protein-coding 7.188 1.175
-414060 TBC1D3C TBC1 domain family member 3C protein-coding 4.354 1.926
-4141 MARS methionyl-tRNA synthetase protein-coding 11.06 0.5635
-414149 ACBD7 acyl-CoA binding domain containing 7 protein-coding 5.727 2.109
-414152 C10orf105 chromosome 10 open reading frame 105 protein-coding 3.336 1.751
+414060 TBC1D3C TBC1 domain family member 3C protein-coding 4.354 1.925
+4141 MARS methionyl-tRNA synthetase protein-coding 11.06 0.5634
+414149 ACBD7 acyl-CoA binding domain containing 7 protein-coding 5.727 2.108
+414152 C10orf105 chromosome 10 open reading frame 105 protein-coding 3.338 1.751
414189 AGAP6 ArfGAP with GTPase domain, ankyrin repeat and PH domain 6 protein-coding 6.768 1.028
-414235 PRR26 proline rich 26 protein-coding 3.279 2.518
-414236 C10orf55 chromosome 10 open reading frame 55 protein-coding 3.394 1.774
-414241 FAM35BP family with sequence similarity 35, member A pseudogene pseudo 7.54 0.6792
-414328 IDNK IDNK, gluconokinase protein-coding 6.565 1.105
-414332 LCN10 lipocalin 10 protein-coding 3.273 2.363
+414235 PRR26 proline rich 26 protein-coding 3.28 2.518
+414236 C10orf55 chromosome 10 open reading frame 55 protein-coding 3.393 1.773
+414241 FAM35BP family with sequence similarity 35, member A pseudogene pseudo 7.54 0.6789
+414328 IDNK IDNK, gluconokinase protein-coding 6.566 1.105
+414332 LCN10 lipocalin 10 protein-coding 3.276 2.363
4144 MAT2A methionine adenosyltransferase 2A protein-coding 12.03 0.6247
4145 MATK megakaryocyte-associated tyrosine kinase protein-coding 5.668 1.755
-4146 MATN1 matrilin 1 protein-coding 1.788 1.206
-4147 MATN2 matrilin 2 protein-coding 9.501 1.76
-414777 HCG18 HLA complex group 18 (non-protein coding) ncRNA 8.675 0.5777
-4148 MATN3 matrilin 3 protein-coding 5.7 2.158
-4149 MAX MYC associated factor X protein-coding 10.34 0.4712
-414918 DENND6B DENN domain containing 6B protein-coding 7.564 1.103
+4146 MATN1 matrilin 1 protein-coding 1.787 1.205
+4147 MATN2 matrilin 2 protein-coding 9.502 1.76
+414777 HCG18 HLA complex group 18 (non-protein coding) ncRNA 8.675 0.5776
+4148 MATN3 matrilin 3 protein-coding 5.701 2.158
+4149 MAX MYC associated factor X protein-coding 10.34 0.4711
+414918 DENND6B DENN domain containing 6B protein-coding 7.565 1.102
414919 C8orf82 chromosome 8 open reading frame 82 protein-coding 8.869 0.8967
-415 ARSE arylsulfatase E (chondrodysplasia punctata 1) protein-coding 5.886 3.239
-4150 MAZ MYC associated zinc finger protein protein-coding 12.18 0.6565
-415116 PIM3 Pim-3 proto-oncogene, serine/threonine kinase protein-coding 10.62 0.9619
+415 ARSE arylsulfatase E (chondrodysplasia punctata 1) protein-coding 5.885 3.239
+4150 MAZ MYC associated zinc finger protein protein-coding 12.17 0.6565
+415116 PIM3 Pim-3 proto-oncogene, serine/threonine kinase protein-coding 10.62 0.9617
415117 STX19 syntaxin 19 protein-coding 3.518 2.513
-4152 MBD1 methyl-CpG binding domain protein 1 protein-coding 10.03 0.4516
-4154 MBNL1 muscleblind like splicing regulator 1 protein-coding 11.3 0.7137
+4152 MBD1 methyl-CpG binding domain protein 1 protein-coding 10.03 0.4514
+4154 MBNL1 muscleblind like splicing regulator 1 protein-coding 11.3 0.714
4155 MBP myelin basic protein protein-coding 10.09 1.757
4157 MC1R melanocortin 1 receptor protein-coding 7.15 1.257
4162 MCAM melanoma cell adhesion molecule protein-coding 10.81 1.231
-4163 MCC mutated in colorectal cancers protein-coding 8.807 1.484
-4166 CHST6 carbohydrate sulfotransferase 6 protein-coding 5.454 2.54
-4168 MCF2 MCF.2 cell line derived transforming sequence protein-coding 2 2
-4170 MCL1 MCL1, BCL2 family apoptosis regulator protein-coding 12.91 0.6877
-4171 MCM2 minichromosome maintenance complex component 2 protein-coding 10.13 1.302
-4172 MCM3 minichromosome maintenance complex component 3 protein-coding 11.11 0.8726
+4163 MCC mutated in colorectal cancers protein-coding 8.807 1.483
+4166 CHST6 carbohydrate sulfotransferase 6 protein-coding 5.454 2.539
+4168 MCF2 MCF.2 cell line derived transforming sequence protein-coding 2.002 2
+4170 MCL1 MCL1, BCL2 family apoptosis regulator protein-coding 12.91 0.6875
+4171 MCM2 minichromosome maintenance complex component 2 protein-coding 10.13 1.303
+4172 MCM3 minichromosome maintenance complex component 3 protein-coding 11.1 0.8725
4173 MCM4 minichromosome maintenance complex component 4 protein-coding 10.29 1.316
-4174 MCM5 minichromosome maintenance complex component 5 protein-coding 10.31 1.032
-4175 MCM6 minichromosome maintenance complex component 6 protein-coding 9.969 1.026
+4174 MCM5 minichromosome maintenance complex component 5 protein-coding 10.31 1.033
+4175 MCM6 minichromosome maintenance complex component 6 protein-coding 9.968 1.026
4176 MCM7 minichromosome maintenance complex component 7 protein-coding 11.37 0.9867
4179 CD46 CD46 molecule protein-coding 12.11 1.093
-4185 ADAM11 ADAM metallopeptidase domain 11 protein-coding 3.99 1.93
-4188 MDFI MyoD family inhibitor protein-coding 8.01 2.399
-4189 DNAJB9 DnaJ heat shock protein family (Hsp40) member B9 protein-coding 9.759 0.9529
+4185 ADAM11 ADAM metallopeptidase domain 11 protein-coding 3.99 1.929
+4188 MDFI MyoD family inhibitor protein-coding 8.01 2.398
+4189 DNAJB9 DnaJ heat shock protein family (Hsp40) member B9 protein-coding 9.76 0.9527
419 ART3 ADP-ribosyltransferase 3 protein-coding 2.039 2.026
4190 MDH1 malate dehydrogenase 1 protein-coding 11.49 0.5631
-4191 MDH2 malate dehydrogenase 2 protein-coding 12.04 0.6549
-4192 MDK midkine protein-coding 11.39 1.785
-4193 MDM2 MDM2 proto-oncogene protein-coding 10.88 0.8575
-4194 MDM4 MDM4, p53 regulator protein-coding 9.561 0.7896
-4199 ME1 malic enzyme 1 protein-coding 8.033 1.841
-4200 ME2 malic enzyme 2 protein-coding 9.488 0.729
-4201 MEA1 male-enhanced antigen 1 protein-coding 10.36 0.5917
-4204 MECP2 methyl-CpG binding protein 2 protein-coding 10.35 0.5982
+4191 MDH2 malate dehydrogenase 2 protein-coding 12.04 0.655
+4192 MDK midkine protein-coding 11.39 1.784
+4193 MDM2 MDM2 proto-oncogene protein-coding 10.88 0.8572
+4194 MDM4 MDM4, p53 regulator protein-coding 9.561 0.7895
+4199 ME1 malic enzyme 1 protein-coding 8.033 1.84
+4200 ME2 malic enzyme 2 protein-coding 9.488 0.7287
+4201 MEA1 male-enhanced antigen 1 protein-coding 10.36 0.5918
+4204 MECP2 methyl-CpG binding protein 2 protein-coding 10.35 0.5983
4205 MEF2A myocyte enhancer factor 2A protein-coding 10.12 0.7592
4207 BORCS8-MEF2B BORCS8-MEF2B readthrough protein-coding 5.715 1.07
-4208 MEF2C myocyte enhancer factor 2C protein-coding 8.76 1.421
-4209 MEF2D myocyte enhancer factor 2D protein-coding 10.58 0.6155
-421 ARVCF ARVCF, delta catenin family member protein-coding 8.683 1.23
+4208 MEF2C myocyte enhancer factor 2C protein-coding 8.761 1.421
+4209 MEF2D myocyte enhancer factor 2D protein-coding 10.58 0.6156
+421 ARVCF ARVCF, delta catenin family member protein-coding 8.684 1.23
4210 MEFV MEFV, pyrin innate immunity regulator protein-coding 3.423 1.51
-4211 MEIS1 Meis homeobox 1 protein-coding 7.827 1.747
-4212 MEIS2 Meis homeobox 2 protein-coding 7.702 1.682
+4211 MEIS1 Meis homeobox 1 protein-coding 7.828 1.748
+4212 MEIS2 Meis homeobox 2 protein-coding 7.704 1.683
4213 MEIS3P1 Meis homeobox 3 pseudogene 1 pseudo 7.812 1.404
4214 MAP3K1 mitogen-activated protein kinase kinase kinase 1 protein-coding 9.507 1.115
-4215 MAP3K3 mitogen-activated protein kinase kinase kinase 3 protein-coding 9.453 0.7159
-4216 MAP3K4 mitogen-activated protein kinase kinase kinase 4 protein-coding 9.251 0.6503
-4217 MAP3K5 mitogen-activated protein kinase kinase kinase 5 protein-coding 9.332 1.26
-4218 RAB8A RAB8A, member RAS oncogene family protein-coding 10.66 0.5086
-4221 MEN1 menin 1 protein-coding 9.951 0.5256
-4222 MEOX1 mesenchyme homeobox 1 protein-coding 4.405 2.35
-4225 MEP1B meprin A subunit beta protein-coding 0.6124 1.171
-4232 MEST mesoderm specific transcript protein-coding 9.704 1.765
+4215 MAP3K3 mitogen-activated protein kinase kinase kinase 3 protein-coding 9.454 0.7161
+4216 MAP3K4 mitogen-activated protein kinase kinase kinase 4 protein-coding 9.251 0.6501
+4217 MAP3K5 mitogen-activated protein kinase kinase kinase 5 protein-coding 9.333 1.26
+4218 RAB8A RAB8A, member RAS oncogene family protein-coding 10.66 0.5085
+4221 MEN1 menin 1 protein-coding 9.951 0.5257
+4222 MEOX1 mesenchyme homeobox 1 protein-coding 4.407 2.35
+4225 MEP1B meprin A subunit beta protein-coding 0.6128 1.172
+4232 MEST mesoderm specific transcript protein-coding 9.704 1.764
4233 MET MET proto-oncogene, receptor tyrosine kinase protein-coding 10.23 2.517
-4234 METTL1 methyltransferase like 1 protein-coding 8.607 0.785
-4236 MFAP1 microfibril associated protein 1 protein-coding 9.643 0.4488
-4237 MFAP2 microfibril associated protein 2 protein-coding 8.264 2.795
-4238 MFAP3 microfibril associated protein 3 protein-coding 9.552 0.6039
-4239 MFAP4 microfibril associated protein 4 protein-coding 8.864 2.443
-4240 MFGE8 milk fat globule-EGF factor 8 protein protein-coding 10.81 1.353
-4241 MELTF melanotransferrin protein-coding 7.228 2.257
-4242 MFNG MFNG O-fucosylpeptide 3-beta-N-acetylglucosaminyltransferase protein-coding 7.512 1.219
+4234 METTL1 methyltransferase like 1 protein-coding 8.606 0.7854
+4236 MFAP1 microfibril associated protein 1 protein-coding 9.643 0.4489
+4237 MFAP2 microfibril associated protein 2 protein-coding 8.264 2.794
+4238 MFAP3 microfibril associated protein 3 protein-coding 9.552 0.6037
+4239 MFAP4 microfibril associated protein 4 protein-coding 8.866 2.444
+4240 MFGE8 milk fat globule-EGF factor 8 protein protein-coding 10.81 1.352
+4241 MELTF melanotransferrin protein-coding 7.229 2.257
+4242 MFNG MFNG O-fucosylpeptide 3-beta-N-acetylglucosaminyltransferase protein-coding 7.513 1.219
4245 MGAT1 mannosyl (alpha-1,3-)-glycoprotein beta-1,2-N-acetylglucosaminyltransferase protein-coding 11.74 0.6847
-4247 MGAT2 mannosyl (alpha-1,6-)-glycoprotein beta-1,2-N-acetylglucosaminyltransferase protein-coding 9.729 0.567
-4248 MGAT3 mannosyl (beta-1,4-)-glycoprotein beta-1,4-N-acetylglucosaminyltransferase protein-coding 7.074 2.266
-4249 MGAT5 mannosyl (alpha-1,6-)-glycoprotein beta-1,6-N-acetyl-glucosaminyltransferase protein-coding 7.119 1.762
-4253 MIA2 melanoma inhibitory activity 2 protein-coding 9.787 0.9567
-4254 KITLG KIT ligand protein-coding 9.006 1.716
-4255 MGMT O-6-methylguanine-DNA methyltransferase protein-coding 8.411 1.362
-4256 MGP matrix Gla protein protein-coding 10.89 2.356
-4257 MGST1 microsomal glutathione S-transferase 1 protein-coding 10.29 2.818
+4247 MGAT2 mannosyl (alpha-1,6-)-glycoprotein beta-1,2-N-acetylglucosaminyltransferase protein-coding 9.729 0.5668
+4248 MGAT3 mannosyl (beta-1,4-)-glycoprotein beta-1,4-N-acetylglucosaminyltransferase protein-coding 7.075 2.266
+4249 MGAT5 mannosyl (alpha-1,6-)-glycoprotein beta-1,6-N-acetyl-glucosaminyltransferase protein-coding 7.119 1.761
+4253 MIA2 melanoma inhibitory activity 2 protein-coding 9.787 0.9564
+4254 KITLG KIT ligand protein-coding 9.007 1.716
+4255 MGMT O-6-methylguanine-DNA methyltransferase protein-coding 8.411 1.361
+4256 MGP matrix Gla protein protein-coding 10.9 2.356
+4257 MGST1 microsomal glutathione S-transferase 1 protein-coding 10.29 2.817
4258 MGST2 microsomal glutathione S-transferase 2 protein-coding 9.653 1.1
-4259 MGST3 microsomal glutathione S-transferase 3 protein-coding 10.67 0.7596
-4261 CIITA class II major histocompatibility complex transactivator protein-coding 7.694 1.744
+4259 MGST3 microsomal glutathione S-transferase 3 protein-coding 10.67 0.7594
+4261 CIITA class II major histocompatibility complex transactivator protein-coding 7.695 1.744
4267 CD99 CD99 molecule (Xg blood group) protein-coding 11.33 1.158
427 ASAH1 N-acylsphingosine amidohydrolase 1 protein-coding 11.8 1.066
-4277 MICB MHC class I polypeptide-related sequence B protein-coding 6.622 1.528
+4277 MICB MHC class I polypeptide-related sequence B protein-coding 6.621 1.528
4281 MID1 midline 1 protein-coding 8.848 1.358
4282 MIF macrophage migration inhibitory factor protein-coding 12.55 1.102
-4283 CXCL9 C-X-C motif chemokine ligand 9 protein-coding 8.24 2.899
-4284 MIP major intrinsic protein of lens fiber protein-coding 1.183 0.9077
-4285 MIPEP mitochondrial intermediate peptidase protein-coding 8.631 0.9396
-4286 MITF melanogenesis associated transcription factor protein-coding 7.857 1.676
+4283 CXCL9 C-X-C motif chemokine ligand 9 protein-coding 8.241 2.899
+4284 MIP major intrinsic protein of lens fiber protein-coding 1.182 0.9076
+4285 MIPEP mitochondrial intermediate peptidase protein-coding 8.63 0.9393
+4286 MITF melanogenesis associated transcription factor protein-coding 7.858 1.676
4287 ATXN3 ataxin 3 protein-coding 8.5 0.5579
4288 MKI67 marker of proliferation Ki-67 protein-coding 10.09 2.068
-4289 MKLN1 muskelin 1 protein-coding 10.47 0.6092
-4291 MLF1 myeloid leukemia factor 1 protein-coding 7.994 1.817
-4292 MLH1 mutL homolog 1 protein-coding 9.315 0.7202
+4289 MKLN1 muskelin 1 protein-coding 10.47 0.609
+4291 MLF1 myeloid leukemia factor 1 protein-coding 7.994 1.816
+4292 MLH1 mutL homolog 1 protein-coding 9.316 0.7199
4293 MAP3K9 mitogen-activated protein kinase kinase kinase 9 protein-coding 6.296 1.394
-4294 MAP3K10 mitogen-activated protein kinase kinase kinase 10 protein-coding 8.146 0.8628
-4296 MAP3K11 mitogen-activated protein kinase kinase kinase 11 protein-coding 10.89 0.6899
-4297 KMT2A lysine methyltransferase 2A protein-coding 10.51 0.7695
-4298 MLLT1 MLLT1, super elongation complex subunit protein-coding 10.78 0.5502
-4299 AFF1 AF4/FMR2 family member 1 protein-coding 10.7 0.9667
-43 ACHE acetylcholinesterase (Cartwright blood group) protein-coding 6.034 2.234
-430 ASCL2 achaete-scute family bHLH transcription factor 2 protein-coding 5.277 2.395
+4294 MAP3K10 mitogen-activated protein kinase kinase kinase 10 protein-coding 8.146 0.8627
+4296 MAP3K11 mitogen-activated protein kinase kinase kinase 11 protein-coding 10.89 0.6897
+4297 KMT2A lysine methyltransferase 2A protein-coding 10.51 0.7696
+4298 MLLT1 MLLT1, super elongation complex subunit protein-coding 10.78 0.5501
+4299 AFF1 AF4/FMR2 family member 1 protein-coding 10.7 0.967
+43 ACHE acetylcholinesterase (Cartwright blood group) protein-coding 6.036 2.234
+430 ASCL2 achaete-scute family bHLH transcription factor 2 protein-coding 5.277 2.394
4300 MLLT3 MLLT3, super elongation complex subunit protein-coding 8.202 1.275
-4301 AFDN afadin, adherens junction formation factor protein-coding 10.95 0.9532
-4302 MLLT6 MLLT6, PHD finger containing protein-coding 11.68 0.7182
-4303 FOXO4 forkhead box O4 protein-coding 8.774 0.8407
-4306 NR3C2 nuclear receptor subfamily 3 group C member 2 protein-coding 7.117 1.979
-4311 MME membrane metalloendopeptidase protein-coding 7.466 2.902
-4313 MMP2 matrix metallopeptidase 2 protein-coding 11.51 1.97
+4301 AFDN afadin, adherens junction formation factor protein-coding 10.95 0.953
+4302 MLLT6 MLLT6, PHD finger containing protein-coding 11.68 0.7181
+4303 FOXO4 forkhead box O4 protein-coding 8.775 0.8407
+4306 NR3C2 nuclear receptor subfamily 3 group C member 2 protein-coding 7.119 1.979
+4311 MME membrane metalloendopeptidase protein-coding 7.467 2.903
+4313 MMP2 matrix metallopeptidase 2 protein-coding 11.51 1.969
4316 MMP7 matrix metallopeptidase 7 protein-coding 7.689 4.048
-4317 MMP8 matrix metallopeptidase 8 protein-coding 1.334 1.726
+4317 MMP8 matrix metallopeptidase 8 protein-coding 1.333 1.725
431705 ASTL astacin like metalloendopeptidase protein-coding 1.087 1.188
4318 MMP9 matrix metallopeptidase 9 protein-coding 8.67 2.863
-432 ASGR1 asialoglycoprotein receptor 1 protein-coding 4.856 2.412
-4320 MMP11 matrix metallopeptidase 11 protein-coding 9.589 2.774
+432 ASGR1 asialoglycoprotein receptor 1 protein-coding 4.856 2.411
+4320 MMP11 matrix metallopeptidase 11 protein-coding 9.588 2.774
4323 MMP14 matrix metallopeptidase 14 protein-coding 12.28 1.573
-432369 ATP5F1EP2 ATP synthase F1 subunit epsilon pseudogene 2 pseudo 5.665 1.264
+432369 ATP5F1EP2 ATP synthase F1 subunit epsilon pseudogene 2 pseudo 5.664 1.263
4324 MMP15 matrix metallopeptidase 15 protein-coding 10.1 1.405
4325 MMP16 matrix metallopeptidase 16 protein-coding 4.8 2.398
-4326 MMP17 matrix metallopeptidase 17 protein-coding 5.594 2.28
-4327 MMP19 matrix metallopeptidase 19 protein-coding 8.53 0.9718
+4326 MMP17 matrix metallopeptidase 17 protein-coding 5.594 2.279
+4327 MMP19 matrix metallopeptidase 19 protein-coding 8.531 0.9722
4329 ALDH6A1 aldehyde dehydrogenase 6 family member A1 protein-coding 8.273 1.443
-433 ASGR2 asialoglycoprotein receptor 2 protein-coding 3.316 2.672
+433 ASGR2 asialoglycoprotein receptor 2 protein-coding 3.316 2.671
4330 MN1 MN1 proto-oncogene, transcriptional regulator protein-coding 7.224 1.999
-4331 MNAT1 MNAT1, CDK activating kinase assembly factor protein-coding 7.853 0.6261
-4332 MNDA myeloid cell nuclear differentiation antigen protein-coding 6.777 1.677
-4335 MNT MAX network transcriptional repressor protein-coding 9.318 0.5571
-4336 MOBP myelin-associated oligodendrocyte basic protein protein-coding 1.91 2.67
-4337 MOCS1 molybdenum cofactor synthesis 1 protein-coding 8.522 1.312
-4338 MOCS2 molybdenum cofactor synthesis 2 protein-coding 9.418 0.7862
+4331 MNAT1 MNAT1, CDK activating kinase assembly factor protein-coding 7.852 0.6262
+4332 MNDA myeloid cell nuclear differentiation antigen protein-coding 6.778 1.677
+4335 MNT MAX network transcriptional repressor protein-coding 9.318 0.557
+4336 MOBP myelin-associated oligodendrocyte basic protein protein-coding 1.909 2.669
+4337 MOCS1 molybdenum cofactor synthesis 1 protein-coding 8.522 1.311
+4338 MOCS2 molybdenum cofactor synthesis 2 protein-coding 9.418 0.7859
434 ASIP agouti signaling protein protein-coding 1.193 1.309
-4343 MOV10 Mov10 RISC complex RNA helicase protein-coding 10.21 0.7656
-4345 CD200 CD200 molecule protein-coding 7.835 1.641
-435 ASL argininosuccinate lyase protein-coding 9.588 1.122
-4350 MPG N-methylpurine DNA glycosylase protein-coding 9.943 0.7411
-4351 MPI mannose phosphate isomerase protein-coding 9.575 0.6641
-4352 MPL MPL proto-oncogene, thrombopoietin receptor protein-coding 3.716 1.026
-4353 MPO myeloperoxidase protein-coding 2.238 1.44
-4354 MPP1 membrane palmitoylated protein 1 protein-coding 8.807 1.24
-4355 MPP2 membrane palmitoylated protein 2 protein-coding 6.353 2.217
-4356 MPP3 membrane palmitoylated protein 3 protein-coding 5.838 1.43
+4343 MOV10 Mov10 RISC complex RNA helicase protein-coding 10.21 0.7653
+4345 CD200 CD200 molecule protein-coding 7.836 1.641
+435 ASL argininosuccinate lyase protein-coding 9.587 1.122
+4350 MPG N-methylpurine DNA glycosylase protein-coding 9.943 0.7409
+4351 MPI mannose phosphate isomerase protein-coding 9.575 0.6639
+4352 MPL MPL proto-oncogene, thrombopoietin receptor protein-coding 3.717 1.027
+4353 MPO myeloperoxidase protein-coding 2.24 1.441
+4354 MPP1 membrane palmitoylated protein 1 protein-coding 8.808 1.24
+4355 MPP2 membrane palmitoylated protein 2 protein-coding 6.354 2.216
+4356 MPP3 membrane palmitoylated protein 3 protein-coding 5.839 1.43
4357 MPST mercaptopyruvate sulfurtransferase protein-coding 10.18 1.183
-4358 MPV17 MPV17, mitochondrial inner membrane protein protein-coding 9.746 0.6493
-4359 MPZ myelin protein zero protein-coding 4.714 1.642
-4360 MRC1 mannose receptor C-type 1 protein-coding 7.435 2.041
-4361 MRE11 MRE11 homolog, double strand break repair nuclease protein-coding 8.495 0.7625
+4358 MPV17 MPV17, mitochondrial inner membrane protein protein-coding 9.746 0.6492
+4359 MPZ myelin protein zero protein-coding 4.715 1.641
+4360 MRC1 mannose receptor C-type 1 protein-coding 7.437 2.042
+4361 MRE11 MRE11 homolog, double strand break repair nuclease protein-coding 8.496 0.7622
4363 ABCC1 ATP binding cassette subfamily C member 1 protein-coding 10.53 1.24
-438 ASMT acetylserotonin O-methyltransferase protein-coding 0.8782 0.9782
-43847 KLK14 kallikrein related peptidase 14 protein-coding 2.395 2.307
+438 ASMT acetylserotonin O-methyltransferase protein-coding 0.8788 0.978
+43847 KLK14 kallikrein related peptidase 14 protein-coding 2.394 2.306
439 ASNA1 arsA arsenite transporter, ATP-binding, homolog 1 (bacterial) protein-coding 10.54 0.5356
439921 MXRA7 matrix remodeling associated 7 protein-coding 11.07 1.275
-439927 LINC01555 long intergenic non-protein coding RNA 1555 ncRNA 0.6281 1.085
-439931 THAP7-AS1 THAP7 antisense RNA 1 ncRNA 5.707 1.079
-439965 FAM35DP family with sequence similarity 35, member A pseudogene pseudo 5.672 0.7068
-440 ASNS asparagine synthetase (glutamine-hydrolyzing) protein-coding 9.293 1.202
-440026 TMEM41B transmembrane protein 41B protein-coding 9.699 0.6108
-440044 SLC22A20P solute carrier family 22 member 20, pseudogene pseudo 2.954 1.615
-440072 LINC00167 long intergenic non-protein coding RNA 167 ncRNA 1.396 0.9266
-440073 IQSEC3 IQ motif and Sec7 domain 3 protein-coding 4.299 2.255
-440078 FAM66C family with sequence similarity 66 member C ncRNA 4.117 1.621
-440081 DDX12P DEAD/H-box helicase 12, pseudogene pseudo 6.556 1.268
-440087 SMCO3 single-pass membrane protein with coiled-coil domains 3 protein-coding 2.721 1.721
-440093 H3F3C H3 histone family member 3C protein-coding 8.581 0.9053
-440101 FLJ12825 uncharacterized LOC440101 ncRNA 2.862 1.607
-440107 PLEKHG7 pleckstrin homology and RhoGEF domain containing G7 protein-coding 2.511 2.051
-440138 ALG11 ALG11, alpha-1,2-mannosyltransferase protein-coding 4.066 0.8812
-440145 MZT1 mitotic spindle organizing protein 1 protein-coding 8.795 0.7987
+439927 LINC01555 long intergenic non-protein coding RNA 1555 ncRNA 0.6276 1.085
+439931 THAP7-AS1 THAP7 antisense RNA 1 ncRNA 5.708 1.078
+439965 FAM35DP family with sequence similarity 35, member A pseudogene pseudo 5.672 0.7065
+440 ASNS asparagine synthetase (glutamine-hydrolyzing) protein-coding 9.292 1.201
+440026 TMEM41B transmembrane protein 41B protein-coding 9.698 0.6108
+440044 SLC22A20P solute carrier family 22 member 20, pseudogene pseudo 2.954 1.614
+440072 LINC00167 long intergenic non-protein coding RNA 167 ncRNA 1.397 0.9265
+440073 IQSEC3 IQ motif and Sec7 domain 3 protein-coding 4.3 2.256
+440078 FAM66C family with sequence similarity 66 member C ncRNA 4.118 1.62
+440081 DDX12P DEAD/H-box helicase 12, pseudogene pseudo 6.555 1.268
+440087 SMCO3 single-pass membrane protein with coiled-coil domains 3 protein-coding 2.723 1.722
+440093 H3F3C H3 histone family member 3C protein-coding 8.58 0.905
+440101 FLJ12825 uncharacterized LOC440101 ncRNA 2.861 1.607
+440107 PLEKHG7 pleckstrin homology and RhoGEF domain containing G7 protein-coding 2.512 2.051
+440138 ALG11 ALG11, alpha-1,2-mannosyltransferase protein-coding 4.066 0.8811
+440145 MZT1 mitotic spindle organizing protein 1 protein-coding 8.794 0.7986
440193 CCDC88C coiled-coil domain containing 88C protein-coding 9.232 1.525
-440253 WHAMMP2 WAS protein homolog associated with actin, golgi membranes and microtubules pseudogene 2 pseudo 4.416 1.437
-440270 GOLGA8B golgin A8 family member B protein-coding 8.564 1.772
-440275 EIF2AK4 eukaryotic translation initiation factor 2 alpha kinase 4 protein-coding 10.12 0.6022
-440278 CATSPER2P1 cation channel sperm associated 2 pseudogene 1 pseudo 4.534 0.7098
-440295 GOLGA6L9 golgin A6 family-like 9 protein-coding 7.046 1.187
+440253 WHAMMP2 WAS protein homolog associated with actin, golgi membranes and microtubules pseudogene 2 pseudo 4.417 1.437
+440270 GOLGA8B golgin A8 family member B protein-coding 8.565 1.772
+440275 EIF2AK4 eukaryotic translation initiation factor 2 alpha kinase 4 protein-coding 10.12 0.602
+440278 CATSPER2P1 cation channel sperm associated 2 pseudogene 1 pseudo 4.534 0.7099
+440295 GOLGA6L9 golgin A6 family-like 9 protein-coding 7.047 1.187
440307 TTLL13P tubulin tyrosine ligase like 13, pseudogene pseudo 3.217 1.008
-440352 SNX29P2 sorting nexin 29 pseudogene 2 pseudo 4.202 1.328
-440354 SMG1P2 SMG1 pseudogene 2 pseudo 6.662 0.9249
-440359 YBX3P1 Y-box binding protein 3 pseudogene 1 pseudo 5.286 1.592
+440352 SNX29P2 sorting nexin 29 pseudogene 2 pseudo 4.203 1.329
+440354 SMG1P2 SMG1 pseudogene 2 pseudo 6.662 0.9248
+440359 YBX3P1 Y-box binding protein 3 pseudogene 1 pseudo 5.285 1.592
440400 RNASEK ribonuclease K protein-coding 11.11 0.7623
-440423 SUZ12P1 SUZ12 polycomb repressive complex 2 subunit pseudogene 1 pseudo 7.311 0.8798
-440435 GPR179 G protein-coupled receptor 179 protein-coding 2.14 1.575
-440456 PLEKHM1P1 pleckstrin homology and RUN domain containing M1 pseudogene 1 pseudo 7.524 0.8658
-440461 ARHGAP27P2 Rho GTPase activating protein 27 pseudogene 2 pseudo 2.091 1.377
+440423 SUZ12P1 SUZ12 polycomb repressive complex 2 subunit pseudogene 1 pseudo 7.311 0.8795
+440435 GPR179 G protein-coupled receptor 179 protein-coding 2.14 1.574
+440456 PLEKHM1P1 pleckstrin homology and RUN domain containing M1 pseudogene 1 pseudo 7.525 0.866
+440461 ARHGAP27P2 Rho GTPase activating protein 27 pseudogene 2 pseudo 2.092 1.378
440465 BAIAP2-DT BAIAP2 divergent transcript ncRNA 9.181 1.061
-440498 HSBP1L1 heat shock factor binding protein 1 like 1 protein-coding 7.023 1.273
-440503 PLIN5 perilipin 5 protein-coding 5.34 2.435
-440515 ZNF506 zinc finger protein 506 protein-coding 8.182 1.159
-440556 LINC00982 long intergenic non-protein coding RNA 982 ncRNA 2.79 2.24
-440563 HNRNPCL2 heterogeneous nuclear ribonucleoprotein C-like 2 protein-coding 0.7479 0.7042
-440567 UQCRHL ubiquinol-cytochrome c reductase hinge protein like protein-coding 8.996 0.9398
-440574 MINOS1 mitochondrial inner membrane organizing system 1 protein-coding 10.18 0.6603
-440590 ZYG11A zyg-11 family member A, cell cycle regulator protein-coding 3.734 2.654
-440603 BCL2L15 BCL2 like 15 protein-coding 4.361 2.736
-440689 HIST2H2BF histone cluster 2 H2B family member f protein-coding 5.584 1.396
+440498 HSBP1L1 heat shock factor binding protein 1 like 1 protein-coding 7.023 1.274
+440503 PLIN5 perilipin 5 protein-coding 5.342 2.435
+440515 ZNF506 zinc finger protein 506 protein-coding 8.182 1.158
+440556 LINC00982 long intergenic non-protein coding RNA 982 ncRNA 2.792 2.241
+440563 HNRNPCL2 heterogeneous nuclear ribonucleoprotein C-like 2 protein-coding 0.7479 0.7041
+440567 UQCRHL ubiquinol-cytochrome c reductase hinge protein like protein-coding 8.995 0.9398
+440574 MINOS1 mitochondrial inner membrane organizing system 1 protein-coding 10.18 0.6601
+440590 ZYG11A zyg-11 family member A, cell cycle regulator protein-coding 3.735 2.655
+440603 BCL2L15 BCL2 like 15 protein-coding 4.362 2.736
+440689 HIST2H2BF histone cluster 2 H2B family member f protein-coding 5.585 1.396
440695 ETV3L ETS variant 3 like protein-coding 1.968 1.098
-440712 RHEX regulator of hemoglobinization and erythroid cell expansion protein-coding 3.895 3.032
+440712 RHEX regulator of hemoglobinization and erythroid cell expansion protein-coding 3.896 3.031
440730 TRIM67 tripartite motif containing 67 protein-coding 2.624 2.2
-440823 MIAT myocardial infarction associated transcript (non-protein coding) ncRNA 7.24 2.084
+440823 MIAT myocardial infarction associated transcript (non-protein coding) ncRNA 7.241 2.085
440836 ODF3B outer dense fiber of sperm tails 3B protein-coding 7.024 1.596
-440854 CAPN14 calpain 14 protein-coding 2.748 2.1
-440896 LOC440896 uncharacterized LOC440896 ncRNA 1.006 1.188
-440944 THUMPD3-AS1 THUMPD3 antisense RNA 1 ncRNA 7.787 0.925
-440957 SMIM4 small integral membrane protein 4 protein-coding 7.329 1.073
-441024 MTHFD2L methylenetetrahydrofolate dehydrogenase (NADP+ dependent) 2 like protein-coding 7.699 0.9212
-441027 TMEM150C transmembrane protein 150C protein-coding 6.683 1.896
-441032 EEF1A1P9 eukaryotic translation elongation factor 1 alpha 1 pseudogene 9 pseudo 12.63 0.922
-441046 GUSBP5 glucuronidase, beta pseudogene 5 pseudo 3.26 1.381
-441089 CRSP8P mediator complex subunit 27 pseudogene pseudo 6.948 0.7111
-441094 NR2F1-AS1 NR2F1 antisense RNA 1 ncRNA 6.094 1.798
-441108 C5orf56 chromosome 5 open reading frame 56 protein-coding 6.221 0.9852
-441150 C6orf226 chromosome 6 open reading frame 226 protein-coding 6.588 0.9579
-441151 TMEM151B transmembrane protein 151B protein-coding 4.368 2.165
+440854 CAPN14 calpain 14 protein-coding 2.748 2.099
+440896 LOC440896 uncharacterized LOC440896 ncRNA 1.006 1.189
+440944 THUMPD3-AS1 THUMPD3 antisense RNA 1 ncRNA 7.787 0.9248
+440957 SMIM4 small integral membrane protein 4 protein-coding 7.329 1.072
+441024 MTHFD2L methylenetetrahydrofolate dehydrogenase (NADP+ dependent) 2 like protein-coding 7.699 0.921
+441027 TMEM150C transmembrane protein 150C protein-coding 6.684 1.895
+441032 EEF1A1P9 eukaryotic translation elongation factor 1 alpha 1 pseudogene 9 pseudo 12.63 0.9216
+441046 GUSBP5 glucuronidase, beta pseudogene 5 pseudo 3.261 1.381
+441089 CRSP8P mediator complex subunit 27 pseudogene pseudo 6.948 0.7108
+441094 NR2F1-AS1 NR2F1 antisense RNA 1 ncRNA 6.094 1.797
+441108 C5orf56 chromosome 5 open reading frame 56 protein-coding 6.222 0.9853
+441150 C6orf226 chromosome 6 open reading frame 226 protein-coding 6.588 0.9575
+441151 TMEM151B transmembrane protein 151B protein-coding 4.368 2.164
441168 CALHM6 calcium homeostasis modulator family member 6 protein-coding 6.19 1.767
-441191 RNF216P1 ring finger protein 216 pseudogene 1 pseudo 8.189 0.5837
-441194 PMS2CL PMS2 C-terminal like pseudogene pseudo 6.738 0.6646
-441204 LOC441204 uncharacterized LOC441204 ncRNA 4.304 1.967
+441191 RNF216P1 ring finger protein 216 pseudogene 1 pseudo 8.189 0.5835
+441194 PMS2CL PMS2 C-terminal like pseudogene pseudo 6.738 0.6643
+441204 LOC441204 uncharacterized LOC441204 ncRNA 4.305 1.967
441208 ZNRF2P1 zinc and ring finger 2 pseudogene 1 pseudo 5.5 1.022
-441212 RP9P RP9 pseudogene pseudo 7.533 0.7798
-441250 TYW1B tRNA-yW synthesizing protein 1 homolog B protein-coding 6.283 0.9486
-441251 SPDYE7P speedy/RINGO cell cycle regulator family member E7, pseudogene pseudo 2.758 0.9606
-441263 DTX2P1-UPK3BP1-PMS2P11 DTX2P1-UPK3BP1-PMS2P11 readthrough, transcribed pseudogene pseudo 5.169 1.245
-441272 SPDYE3 speedy/RINGO cell cycle regulator family member E3 protein-coding 5.963 0.6669
-441273 SPDYE2 speedy/RINGO cell cycle regulator family member E2 protein-coding 0.7613 0.8337
-441294 CTAGE15 CTAGE family member 15 protein-coding 5.365 1.854
-441295 OR2A9P olfactory receptor family 2 subfamily A member 9 pseudogene pseudo 6.797 1.31
-441381 LRRC24 leucine rich repeat containing 24 protein-coding 4.123 1.928
-441394 SUGT1P1 SUGT1 pseudogene 1 pseudo 2.215 1.326
-441425 ANKRD20A3 ankyrin repeat domain 20 family member A3 protein-coding 3.081 1.584
-441452 SPATA31C1 SPATA31 subfamily C member 1 protein-coding 0.6085 1.08
-441454 LOC441454 prothymosin alpha pseudogene pseudo 1.722 0.9317
-441455 LOC441455 makorin ring finger protein 1 pseudogene pseudo 2.425 1.363
-441457 NUTM2G NUT family member 2G protein-coding 1.796 0.9202
-441476 STPG3 sperm-tail PG-rich repeat containing 3 protein-coding 1.568 1.314
+441212 RP9P RP9 pseudogene pseudo 7.533 0.7795
+441250 TYW1B tRNA-yW synthesizing protein 1 homolog B protein-coding 6.283 0.9483
+441251 SPDYE7P speedy/RINGO cell cycle regulator family member E7, pseudogene pseudo 2.759 0.961
+441263 DTX2P1-UPK3BP1-PMS2P11 DTX2P1-UPK3BP1-PMS2P11 readthrough, transcribed pseudogene pseudo 5.17 1.245
+441272 SPDYE3 speedy/RINGO cell cycle regulator family member E3 protein-coding 5.962 0.6667
+441273 SPDYE2 speedy/RINGO cell cycle regulator family member E2 protein-coding 0.7613 0.8336
+441294 CTAGE15 CTAGE family member 15 protein-coding 5.365 1.853
+441295 OR2A9P olfactory receptor family 2 subfamily A member 9 pseudogene pseudo 6.798 1.31
+441381 LRRC24 leucine rich repeat containing 24 protein-coding 4.124 1.929
+441394 SUGT1P1 SUGT1 pseudogene 1 pseudo 2.216 1.326
+441425 ANKRD20A3 ankyrin repeat domain 20 family member A3 protein-coding 3.082 1.584
+441452 SPATA31C1 SPATA31 subfamily C member 1 protein-coding 0.6093 1.081
+441454 LOC441454 prothymosin alpha pseudogene pseudo 1.723 0.9319
+441455 LOC441455 makorin ring finger protein 1 pseudogene pseudo 2.426 1.363
+441457 NUTM2G NUT family member 2G protein-coding 1.796 0.9203
+441476 STPG3 sperm-tail PG-rich repeat containing 3 protein-coding 1.569 1.314
441478 NRARP NOTCH regulated ankyrin repeat protein protein-coding 8.482 1.502
-441502 RPS26P11 ribosomal protein S26 pseudogene 11 pseudo 1.1 0.8246
-441518 RTL8B retrotransposon Gag like 8B protein-coding 8.403 1.196
-441531 PGAM4 phosphoglycerate mutase family member 4 protein-coding 5.907 0.9205
+441502 RPS26P11 ribosomal protein S26 pseudogene 11 pseudo 1.1 0.8245
+441518 RTL8B retrotransposon Gag like 8B protein-coding 8.404 1.196
+441531 PGAM4 phosphoglycerate mutase family member 4 protein-coding 5.907 0.9202
441549 CDNF cerebral dopamine neurotrophic factor protein-coding 4.315 1.174
-441631 TSPAN11 tetraspanin 11 protein-coding 6.87 2.174
-441666 LOC441666 zinc finger protein 91 pseudogene pseudo 4.281 2.137
-441818 WBP11P1 WW domain binding protein 11 pseudogene 1 pseudo 3.35 1.006
-441869 ANKRD65 ankyrin repeat domain 65 protein-coding 6.966 2.114
-441951 ZFAS1 ZNFX1 antisense RNA 1 ncRNA 10.72 0.9006
+441631 TSPAN11 tetraspanin 11 protein-coding 6.871 2.173
+441666 LOC441666 zinc finger protein 91 pseudogene pseudo 4.283 2.137
+441818 WBP11P1 WW domain binding protein 11 pseudogene 1 pseudo 3.349 1.007
+441869 ANKRD65 ankyrin repeat domain 65 protein-coding 6.967 2.114
+441951 ZFAS1 ZNFX1 antisense RNA 1 ncRNA 10.72 0.9004
442117 GALNTL6 polypeptide N-acetylgalactosaminyltransferase like 6 protein-coding 1.45 1.641
-442229 SLC25A51P1 solute carrier family 25 member 51 pseudogene 1 pseudo 0.5203 0.5922
+442229 SLC25A51P1 solute carrier family 25 member 51 pseudogene 1 pseudo 0.5205 0.5923
442245 GSTM2P1 glutathione S-transferase mu 2 pseudogene 1 pseudo 1.27 1.103
-442308 TUBBP6 tubulin beta class I pseudogene 6 pseudo 0.7947 0.9406
-442319 ZNF727 zinc finger protein 727 protein-coding 2.197 1.902
+442308 TUBBP6 tubulin beta class I pseudogene 6 pseudo 0.7944 0.9409
+442319 ZNF727 zinc finger protein 727 protein-coding 2.198 1.902
442421 PTGER4P2-CDK2AP2P2 PTGER4P2-CDK2AP2P2 readthrough, transcribed pseudogene pseudo 2.822 1.608
442454 UQCRBP1 ubiquinol-cytochrome c reductase binding protein pseudogene 1 pseudo 7.183 1.03
-442459 XRCC6P5 X-ray repair cross complementing 6 pseudogene 5 pseudo 1.271 0.928
-442523 DPY19L2P4 DPY19L2 pseudogene 4 pseudo 2.322 2
-442578 STAG3L3 stromal antigen 3-like 3 (pseudogene) pseudo 7.433 0.8134
-442582 STAG3L2 stromal antigen 3-like 2 (pseudogene) pseudo 5.944 1.015
-442590 SPDYE5 speedy/RINGO cell cycle regulator family member E5 protein-coding 2.79 1.002
-443 ASPA aspartoacylase protein-coding 3.278 2.449
-4430 MYO1B myosin IB protein-coding 10.73 1.331
-4435 CITED1 Cbp/p300 interacting transactivator with Glu/Asp rich carboxy-terminal domain 1 protein-coding 4.214 3.086
-4436 MSH2 mutS homolog 2 protein-coding 9.501 0.8291
-4437 MSH3 mutS homolog 3 protein-coding 8.586 0.5536
+442459 XRCC6P5 X-ray repair cross complementing 6 pseudogene 5 pseudo 1.27 0.9278
+442523 DPY19L2P4 DPY19L2 pseudogene 4 pseudo 2.323 1.999
+442578 STAG3L3 stromal antigen 3-like 3 (pseudogene) pseudo 7.433 0.8136
+442582 STAG3L2 stromal antigen 3-like 2 (pseudogene) pseudo 5.944 1.014
+442590 SPDYE5 speedy/RINGO cell cycle regulator family member E5 protein-coding 2.791 1.002
+443 ASPA aspartoacylase protein-coding 3.28 2.448
+4430 MYO1B myosin IB protein-coding 10.73 1.33
+4435 CITED1 Cbp/p300 interacting transactivator with Glu/Asp rich carboxy-terminal domain 1 protein-coding 4.215 3.085
+4436 MSH2 mutS homolog 2 protein-coding 9.5 0.8292
+4437 MSH3 mutS homolog 3 protein-coding 8.586 0.5535
4438 MSH4 mutS homolog 4 protein-coding 1.132 1.104
4439 MSH5 mutS homolog 5 protein-coding 7.717 1.111
444 ASPH aspartate beta-hydroxylase protein-coding 11.64 1.15
445 ASS1 argininosuccinate synthase 1 protein-coding 10.76 2.092
-445328 ARHGEF35 Rho guanine nucleotide exchange factor 35 protein-coding 8.256 2.155
-445347 TARP TCR gamma alternate reading frame protein protein-coding 3.688 2.97
-445571 CBWD3 COBW domain containing 3 protein-coding 8.041 1.022
+445328 ARHGEF35 Rho guanine nucleotide exchange factor 35 protein-coding 8.256 2.154
+445347 TARP TCR gamma alternate reading frame protein protein-coding 3.69 2.972
+445571 CBWD3 COBW domain containing 3 protein-coding 8.04 1.022
445577 C9orf129 chromosome 9 open reading frame 129 protein-coding 6.01 1.283
-445582 POTEE POTE ankyrin domain family member E protein-coding 2.453 1.289
+445582 POTEE POTE ankyrin domain family member E protein-coding 2.452 1.289
445815 PALM2-AKAP2 PALM2-AKAP2 readthrough protein-coding 9.543 1.18
-4478 MSN moesin protein-coding 12.81 1.281
+4478 MSN moesin protein-coding 12.81 1.28
4481 MSR1 macrophage scavenger receptor 1 protein-coding 8.286 1.742
-4482 MSRA methionine sulfoxide reductase A protein-coding 7.485 1.141
-4485 MST1 macrophage stimulating 1 protein-coding 7.024 2.029
-4486 MST1R macrophage stimulating 1 receptor protein-coding 7.156 2.862
-4487 MSX1 msh homeobox 1 protein-coding 6.316 2.122
-4493 MT1E metallothionein 1E protein-coding 8.984 2.057
-4494 MT1F metallothionein 1F protein-coding 7.305 1.886
-4495 MT1G metallothionein 1G protein-coding 6.763 2.742
-4500 MT1L metallothionein 1L, pseudogene pseudo 4.865 1.879
-4501 MT1X metallothionein 1X protein-coding 9.523 1.844
-4502 MT2A metallothionein 2A protein-coding 11.29 1.699
+4482 MSRA methionine sulfoxide reductase A protein-coding 7.485 1.14
+4485 MST1 macrophage stimulating 1 protein-coding 7.024 2.028
+4486 MST1R macrophage stimulating 1 receptor protein-coding 7.157 2.861
+4487 MSX1 msh homeobox 1 protein-coding 6.315 2.121
+4493 MT1E metallothionein 1E protein-coding 8.985 2.056
+4494 MT1F metallothionein 1F protein-coding 7.306 1.886
+4495 MT1G metallothionein 1G protein-coding 6.765 2.743
+4500 MT1L metallothionein 1L, pseudogene pseudo 4.866 1.879
+4501 MT1X metallothionein 1X protein-coding 9.523 1.843
+4502 MT2A metallothionein 2A protein-coding 11.29 1.698
4507 MTAP methylthioadenosine phosphorylase protein-coding 9.048 1.118
-4515 MTCP1 mature T cell proliferation 1 protein-coding 4.897 0.9602
-4520 MTF1 metal regulatory transcription factor 1 protein-coding 8.769 0.6662
-4521 NUDT1 nudix hydrolase 1 protein-coding 8.208 1.133
-4522 MTHFD1 methylenetetrahydrofolate dehydrogenase, cyclohydrolase and formyltetrahydrofolate synthetase 1 protein-coding 10.72 0.7492
-4524 MTHFR methylenetetrahydrofolate reductase protein-coding 9.472 0.8509
-4528 MTIF2 mitochondrial translational initiation factor 2 protein-coding 9.574 0.5291
-4534 MTM1 myotubularin 1 protein-coding 8.28 0.8408
-4542 MYO1F myosin IF protein-coding 8.25 1.315
-4547 MTTP microsomal triglyceride transfer protein protein-coding 2.99 2.86
+4515 MTCP1 mature T cell proliferation 1 protein-coding 4.897 0.96
+4520 MTF1 metal regulatory transcription factor 1 protein-coding 8.77 0.6659
+4521 NUDT1 nudix hydrolase 1 protein-coding 8.206 1.133
+4522 MTHFD1 methylenetetrahydrofolate dehydrogenase, cyclohydrolase and formyltetrahydrofolate synthetase 1 protein-coding 10.71 0.7495
+4524 MTHFR methylenetetrahydrofolate reductase protein-coding 9.472 0.8508
+4528 MTIF2 mitochondrial translational initiation factor 2 protein-coding 9.574 0.529
+4534 MTM1 myotubularin 1 protein-coding 8.28 0.8407
+4542 MYO1F myosin IF protein-coding 8.251 1.316
+4547 MTTP microsomal triglyceride transfer protein protein-coding 2.991 2.86
4548 MTR 5-methyltetrahydrofolate-homocysteine methyltransferase protein-coding 9.955 0.7126
-4552 MTRR 5-methyltetrahydrofolate-homocysteine methyltransferase reductase protein-coding 9.182 0.689
-4580 MTX1 metaxin 1 protein-coding 9.727 0.6771
+4552 MTRR 5-methyltetrahydrofolate-homocysteine methyltransferase reductase protein-coding 9.182 0.6888
+4580 MTX1 metaxin 1 protein-coding 9.726 0.677
4582 MUC1 mucin 1, cell surface associated protein-coding 10.08 3.293
-4585 MUC4 mucin 4, cell surface associated protein-coding 5.911 3.878
-4588 MUC6 mucin 6, oligomeric mucus/gel-forming protein-coding 3.605 3.585
-4591 TRIM37 tripartite motif containing 37 protein-coding 9.408 0.736
-4594 MUT methylmalonyl-CoA mutase protein-coding 9.619 0.7441
-4595 MUTYH mutY DNA glycosylase protein-coding 7.788 0.7824
-4597 MVD mevalonate diphosphate decarboxylase protein-coding 9.423 0.968
-4598 MVK mevalonate kinase protein-coding 8.949 0.8864
-4599 MX1 MX dynamin like GTPase 1 protein-coding 10.58 1.605
+4585 MUC4 mucin 4, cell surface associated protein-coding 5.912 3.878
+4588 MUC6 mucin 6, oligomeric mucus/gel-forming protein-coding 3.608 3.588
+4591 TRIM37 tripartite motif containing 37 protein-coding 9.408 0.7357
+4594 MUT methylmalonyl-CoA mutase protein-coding 9.619 0.7438
+4595 MUTYH mutY DNA glycosylase protein-coding 7.787 0.7823
+4597 MVD mevalonate diphosphate decarboxylase protein-coding 9.423 0.9677
+4598 MVK mevalonate kinase protein-coding 8.948 0.8864
+4599 MX1 MX dynamin like GTPase 1 protein-coding 10.58 1.604
4600 MX2 MX dynamin like GTPase 2 protein-coding 8.327 1.877
-4601 MXI1 MAX interactor 1, dimerization protein protein-coding 9.804 0.9067
-4602 MYB MYB proto-oncogene, transcription factor protein-coding 6.173 3.019
+4601 MXI1 MAX interactor 1, dimerization protein protein-coding 9.804 0.9064
+4602 MYB MYB proto-oncogene, transcription factor protein-coding 6.172 3.018
4603 MYBL1 MYB proto-oncogene like 1 protein-coding 6.588 1.282
-4605 MYBL2 MYB proto-oncogene like 2 protein-coding 8.899 2.621
-4606 MYBPC2 myosin binding protein C, fast type protein-coding 2.41 2.407
+4605 MYBL2 MYB proto-oncogene like 2 protein-coding 8.896 2.623
+4606 MYBPC2 myosin binding protein C, fast type protein-coding 2.411 2.407
4607 MYBPC3 myosin binding protein C, cardiac protein-coding 1.309 1.236
-4608 MYBPH myosin binding protein H protein-coding 1.754 2.353
+4608 MYBPH myosin binding protein H protein-coding 1.754 2.352
4609 MYC MYC proto-oncogene, bHLH transcription factor protein-coding 10.52 1.546
-4610 MYCL MYCL proto-oncogene, bHLH transcription factor protein-coding 7.736 1.899
-4613 MYCN MYCN proto-oncogene, bHLH transcription factor protein-coding 4.96 2.572
+4610 MYCL MYCL proto-oncogene, bHLH transcription factor protein-coding 7.737 1.899
+4613 MYCN MYCN proto-oncogene, bHLH transcription factor protein-coding 4.96 2.573
4615 MYD88 myeloid differentiation primary response 88 protein-coding 10.14 0.8618
4616 GADD45B growth arrest and DNA damage inducible beta protein-coding 9.742 1.305
-462 SERPINC1 serpin family C member 1 protein-coding 1.958 3.124
-4621 MYH3 myosin heavy chain 3 protein-coding 5.171 1.841
-4627 MYH9 myosin heavy chain 9 protein-coding 14.33 0.9655
+462 SERPINC1 serpin family C member 1 protein-coding 1.957 3.123
+4621 MYH3 myosin heavy chain 3 protein-coding 5.172 1.84
+4627 MYH9 myosin heavy chain 9 protein-coding 14.33 0.9654
4628 MYH10 myosin heavy chain 10 protein-coding 10.69 1.304
-4629 MYH11 myosin heavy chain 11 protein-coding 9.659 3.001
-463 ZFHX3 zinc finger homeobox 3 protein-coding 9.679 0.9924
-4635 MYL4 myosin light chain 4 protein-coding 2.126 2.059
-4636 MYL5 myosin light chain 5 protein-coding 7.103 1.009
-4637 MYL6 myosin light chain 6 protein-coding 13.76 0.7038
-4638 MYLK myosin light chain kinase protein-coding 10.48 1.767
-4640 MYO1A myosin IA protein-coding 2.819 2.909
+4629 MYH11 myosin heavy chain 11 protein-coding 9.663 3.004
+463 ZFHX3 zinc finger homeobox 3 protein-coding 9.68 0.9928
+4635 MYL4 myosin light chain 4 protein-coding 2.126 2.06
+4636 MYL5 myosin light chain 5 protein-coding 7.103 1.008
+4637 MYL6 myosin light chain 6 protein-coding 13.76 0.7035
+4638 MYLK myosin light chain kinase protein-coding 10.48 1.768
+4640 MYO1A myosin IA protein-coding 2.82 2.909
4641 MYO1C myosin IC protein-coding 11.91 1.033
-4642 MYO1D myosin ID protein-coding 10.95 1.451
+4642 MYO1D myosin ID protein-coding 10.95 1.45
4643 MYO1E myosin IE protein-coding 10.21 1.038
-4644 MYO5A myosin VA protein-coding 9.522 1.416
+4644 MYO5A myosin VA protein-coding 9.523 1.415
4645 MYO5B myosin VB protein-coding 9.708 2.058
-4646 MYO6 myosin VI protein-coding 10.87 1.194
+4646 MYO6 myosin VI protein-coding 10.87 1.193
4647 MYO7A myosin VIIA protein-coding 7.294 1.488
4648 MYO7B myosin VIIB protein-coding 4.899 3.026
-4649 MYO9A myosin IXA protein-coding 7.874 1.418
-4650 MYO9B myosin IXB protein-coding 11.01 0.6746
+4649 MYO9A myosin IXA protein-coding 7.875 1.417
+4650 MYO9B myosin IXB protein-coding 11.01 0.675
4651 MYO10 myosin X protein-coding 10.74 1.503
-4659 PPP1R12A protein phosphatase 1 regulatory subunit 12A protein-coding 10.25 0.7066
-466 ATF1 activating transcription factor 1 protein-coding 8.673 0.6601
-4660 PPP1R12B protein phosphatase 1 regulatory subunit 12B protein-coding 9.814 1.381
-4661 MYT1 myelin transcription factor 1 protein-coding 3.313 2.955
-4664 NAB1 NGFI-A binding protein 1 protein-coding 10.01 0.8235
-4665 NAB2 NGFI-A binding protein 2 protein-coding 9.54 1.02
-4666 NACA nascent polypeptide-associated complex alpha subunit protein-coding 13.76 0.5757
-4668 NAGA alpha-N-acetylgalactosaminidase protein-coding 10.1 0.6071
-4669 NAGLU N-acetyl-alpha-glucosaminidase protein-coding 9.928 0.8066
-467 ATF3 activating transcription factor 3 protein-coding 9.44 1.638
-4670 HNRNPM heterogeneous nuclear ribonucleoprotein M protein-coding 12.1 0.5108
-4671 NAIP NLR family apoptosis inhibitory protein protein-coding 5.394 1.204
-4673 NAP1L1 nucleosome assembly protein 1 like 1 protein-coding 12.73 0.6516
-4674 NAP1L2 nucleosome assembly protein 1 like 2 protein-coding 5.573 2.515
-4675 NAP1L3 nucleosome assembly protein 1 like 3 protein-coding 5.766 2.407
-4676 NAP1L4 nucleosome assembly protein 1 like 4 protein-coding 11.45 0.4571
-4677 NARS asparaginyl-tRNA synthetase protein-coding 11.61 0.5203
+4659 PPP1R12A protein phosphatase 1 regulatory subunit 12A protein-coding 10.26 0.7069
+466 ATF1 activating transcription factor 1 protein-coding 8.673 0.6599
+4660 PPP1R12B protein phosphatase 1 regulatory subunit 12B protein-coding 9.816 1.382
+4661 MYT1 myelin transcription factor 1 protein-coding 3.314 2.955
+4664 NAB1 NGFI-A binding protein 1 protein-coding 10.01 0.8232
+4665 NAB2 NGFI-A binding protein 2 protein-coding 9.54 1.019
+4666 NACA nascent polypeptide-associated complex alpha subunit protein-coding 13.76 0.5756
+4668 NAGA alpha-N-acetylgalactosaminidase protein-coding 10.11 0.607
+4669 NAGLU N-acetyl-alpha-glucosaminidase protein-coding 9.929 0.8064
+467 ATF3 activating transcription factor 3 protein-coding 9.441 1.638
+4670 HNRNPM heterogeneous nuclear ribonucleoprotein M protein-coding 12.1 0.5106
+4671 NAIP NLR family apoptosis inhibitory protein protein-coding 5.395 1.204
+4673 NAP1L1 nucleosome assembly protein 1 like 1 protein-coding 12.73 0.6514
+4674 NAP1L2 nucleosome assembly protein 1 like 2 protein-coding 5.576 2.516
+4675 NAP1L3 nucleosome assembly protein 1 like 3 protein-coding 5.768 2.406
+4676 NAP1L4 nucleosome assembly protein 1 like 4 protein-coding 11.45 0.457
+4677 NARS asparaginyl-tRNA synthetase protein-coding 11.61 0.5202
4678 NASP nuclear autoantigenic sperm protein protein-coding 11.05 0.835
-468 ATF4 activating transcription factor 4 protein-coding 12.51 0.5957
-4680 CEACAM6 carcinoembryonic antigen related cell adhesion molecule 6 protein-coding 6.903 5.344
-4681 NBL1 neuroblastoma 1, DAN family BMP antagonist protein-coding 11.28 1.627
-4682 NUBP1 nucleotide binding protein 1 protein-coding 8.895 0.5309
-4683 NBN nibrin protein-coding 10.29 0.6788
-4684 NCAM1 neural cell adhesion molecule 1 protein-coding 6.84 3.286
-4685 NCAM2 neural cell adhesion molecule 2 protein-coding 4.63 3.011
-4686 NCBP1 nuclear cap binding protein subunit 1 protein-coding 9.8 0.5702
-4688 NCF2 neutrophil cytosolic factor 2 protein-coding 7.791 1.571
-4689 NCF4 neutrophil cytosolic factor 4 protein-coding 7.168 1.379
-4690 NCK1 NCK adaptor protein 1 protein-coding 9.148 0.7677
+468 ATF4 activating transcription factor 4 protein-coding 12.51 0.5955
+4680 CEACAM6 carcinoembryonic antigen related cell adhesion molecule 6 protein-coding 6.904 5.344
+4681 NBL1 neuroblastoma 1, DAN family BMP antagonist protein-coding 11.29 1.627
+4682 NUBP1 nucleotide binding protein 1 protein-coding 8.894 0.5307
+4683 NBN nibrin protein-coding 10.29 0.6785
+4684 NCAM1 neural cell adhesion molecule 1 protein-coding 6.843 3.285
+4685 NCAM2 neural cell adhesion molecule 2 protein-coding 4.631 3.01
+4686 NCBP1 nuclear cap binding protein subunit 1 protein-coding 9.799 0.57
+4688 NCF2 neutrophil cytosolic factor 2 protein-coding 7.791 1.572
+4689 NCF4 neutrophil cytosolic factor 4 protein-coding 7.168 1.38
+4690 NCK1 NCK adaptor protein 1 protein-coding 9.148 0.7675
4691 NCL nucleolin protein-coding 13.59 0.5352
-4692 NDN necdin, MAGE family member protein-coding 8.283 1.798
-4694 NDUFA1 NADH:ubiquinone oxidoreductase subunit A1 protein-coding 10.72 0.7591
-4695 NDUFA2 NADH:ubiquinone oxidoreductase subunit A2 protein-coding 10.1 0.8256
-4696 NDUFA3 NADH:ubiquinone oxidoreductase subunit A3 protein-coding 9.647 0.9444
+4692 NDN necdin, MAGE family member protein-coding 8.285 1.798
+4694 NDUFA1 NADH:ubiquinone oxidoreductase subunit A1 protein-coding 10.72 0.7593
+4695 NDUFA2 NADH:ubiquinone oxidoreductase subunit A2 protein-coding 10.1 0.8255
+4696 NDUFA3 NADH:ubiquinone oxidoreductase subunit A3 protein-coding 9.647 0.9442
4697 NDUFA4 NDUFA4, mitochondrial complex associated protein-coding 11.66 0.7264
4698 NDUFA5 NADH:ubiquinone oxidoreductase subunit A5 protein-coding 10.49 0.7326
-47 ACLY ATP citrate lyase protein-coding 11.86 0.7682
+47 ACLY ATP citrate lyase protein-coding 11.86 0.768
4700 NDUFA6 NADH:ubiquinone oxidoreductase subunit A6 protein-coding 10.24 0.6615
-4701 NDUFA7 NADH:ubiquinone oxidoreductase subunit A7 protein-coding 9.522 0.7957
+4701 NDUFA7 NADH:ubiquinone oxidoreductase subunit A7 protein-coding 9.522 0.7958
4702 NDUFA8 NADH:ubiquinone oxidoreductase subunit A8 protein-coding 9.917 0.6144
-4703 NEB nebulin protein-coding 5.614 2.38
-4704 NDUFA9 NADH:ubiquinone oxidoreductase subunit A9 protein-coding 10.52 0.6522
+4703 NEB nebulin protein-coding 5.616 2.38
+4704 NDUFA9 NADH:ubiquinone oxidoreductase subunit A9 protein-coding 10.52 0.6523
4705 NDUFA10 NADH:ubiquinone oxidoreductase subunit A10 protein-coding 10.81 0.4974
-4706 NDUFAB1 NADH:ubiquinone oxidoreductase subunit AB1 protein-coding 10.09 0.6257
-4707 NDUFB1 NADH:ubiquinone oxidoreductase subunit B1 protein-coding 9.537 0.7882
+4706 NDUFAB1 NADH:ubiquinone oxidoreductase subunit AB1 protein-coding 10.08 0.626
+4707 NDUFB1 NADH:ubiquinone oxidoreductase subunit B1 protein-coding 9.536 0.7881
4708 NDUFB2 NADH:ubiquinone oxidoreductase subunit B2 protein-coding 10.69 0.7345
-4709 NDUFB3 NADH:ubiquinone oxidoreductase subunit B3 protein-coding 9.475 0.5606
-471 ATIC 5-aminoimidazole-4-carboxamide ribonucleotide formyltransferase/IMP cyclohydrolase protein-coding 10.82 0.6783
-4710 NDUFB4 NADH:ubiquinone oxidoreductase subunit B4 protein-coding 10.92 0.62
-4711 NDUFB5 NADH:ubiquinone oxidoreductase subunit B5 protein-coding 10.5 0.6113
-4712 NDUFB6 NADH:ubiquinone oxidoreductase subunit B6 protein-coding 9.578 0.6208
-4713 NDUFB7 NADH:ubiquinone oxidoreductase subunit B7 protein-coding 10.55 0.8597
-4714 NDUFB8 NADH:ubiquinone oxidoreductase subunit B8 protein-coding 10.7 0.7099
-4715 NDUFB9 NADH:ubiquinone oxidoreductase subunit B9 protein-coding 11.5 0.7681
-4716 NDUFB10 NADH:ubiquinone oxidoreductase subunit B10 protein-coding 10.63 0.6848
+4709 NDUFB3 NADH:ubiquinone oxidoreductase subunit B3 protein-coding 9.474 0.5608
+471 ATIC 5-aminoimidazole-4-carboxamide ribonucleotide formyltransferase/IMP cyclohydrolase protein-coding 10.82 0.6784
+4710 NDUFB4 NADH:ubiquinone oxidoreductase subunit B4 protein-coding 10.92 0.6201
+4711 NDUFB5 NADH:ubiquinone oxidoreductase subunit B5 protein-coding 10.5 0.6112
+4712 NDUFB6 NADH:ubiquinone oxidoreductase subunit B6 protein-coding 9.578 0.6207
+4713 NDUFB7 NADH:ubiquinone oxidoreductase subunit B7 protein-coding 10.55 0.8595
+4714 NDUFB8 NADH:ubiquinone oxidoreductase subunit B8 protein-coding 10.69 0.7097
+4715 NDUFB9 NADH:ubiquinone oxidoreductase subunit B9 protein-coding 11.5 0.7683
+4716 NDUFB10 NADH:ubiquinone oxidoreductase subunit B10 protein-coding 10.63 0.6847
4717 NDUFC1 NADH:ubiquinone oxidoreductase subunit C1 protein-coding 9.653 0.6989
-4718 NDUFC2 NADH:ubiquinone oxidoreductase subunit C2 protein-coding 11.06 0.7175
-4719 NDUFS1 NADH:ubiquinone oxidoreductase core subunit S1 protein-coding 10.34 0.6615
-472 ATM ATM serine/threonine kinase protein-coding 9.764 0.8357
+4718 NDUFC2 NADH:ubiquinone oxidoreductase subunit C2 protein-coding 11.06 0.7174
+4719 NDUFS1 NADH:ubiquinone oxidoreductase core subunit S1 protein-coding 10.34 0.6613
+472 ATM ATM serine/threonine kinase protein-coding 9.764 0.8359
4720 NDUFS2 NADH:ubiquinone oxidoreductase core subunit S2 protein-coding 11.13 0.5792
-4722 NDUFS3 NADH:ubiquinone oxidoreductase core subunit S3 protein-coding 10.57 0.5816
-4723 NDUFV1 NADH:ubiquinone oxidoreductase core subunit V1 protein-coding 11.39 0.7007
-4724 NDUFS4 NADH:ubiquinone oxidoreductase subunit S4 protein-coding 9.273 0.6475
-4725 NDUFS5 NADH:ubiquinone oxidoreductase subunit S5 protein-coding 11.31 0.7368
-4726 NDUFS6 NADH:ubiquinone oxidoreductase subunit S6 protein-coding 10.29 0.8384
-4728 NDUFS8 NADH:ubiquinone oxidoreductase core subunit S8 protein-coding 10.63 0.856
-4729 NDUFV2 NADH:ubiquinone oxidoreductase core subunit V2 protein-coding 10.62 0.7099
-473 RERE arginine-glutamic acid dipeptide repeats protein-coding 11.38 0.8045
-4731 NDUFV3 NADH:ubiquinone oxidoreductase subunit V3 protein-coding 9.497 0.6123
-4733 DRG1 developmentally regulated GTP binding protein 1 protein-coding 10.14 0.5149
-4734 NEDD4 neural precursor cell expressed, developmentally down-regulated 4, E3 ubiquitin protein ligase protein-coding 8.39 1.143
-4735 SEPT2 septin 2 protein-coding 12.95 0.6129
-4736 RPL10A ribosomal protein L10a protein-coding 13.3 0.7469
+4722 NDUFS3 NADH:ubiquinone oxidoreductase core subunit S3 protein-coding 10.57 0.5817
+4723 NDUFV1 NADH:ubiquinone oxidoreductase core subunit V1 protein-coding 11.39 0.7005
+4724 NDUFS4 NADH:ubiquinone oxidoreductase subunit S4 protein-coding 9.273 0.6473
+4725 NDUFS5 NADH:ubiquinone oxidoreductase subunit S5 protein-coding 11.31 0.7369
+4726 NDUFS6 NADH:ubiquinone oxidoreductase subunit S6 protein-coding 10.29 0.8383
+4728 NDUFS8 NADH:ubiquinone oxidoreductase core subunit S8 protein-coding 10.63 0.8558
+4729 NDUFV2 NADH:ubiquinone oxidoreductase core subunit V2 protein-coding 10.62 0.7097
+473 RERE arginine-glutamic acid dipeptide repeats protein-coding 11.38 0.8046
+4731 NDUFV3 NADH:ubiquinone oxidoreductase subunit V3 protein-coding 9.497 0.6122
+4733 DRG1 developmentally regulated GTP binding protein 1 protein-coding 10.14 0.515
+4734 NEDD4 neural precursor cell expressed, developmentally down-regulated 4, E3 ubiquitin protein ligase protein-coding 8.39 1.142
+4735 SEPT2 septin 2 protein-coding 12.95 0.6127
+4736 RPL10A ribosomal protein L10a protein-coding 13.3 0.7467
4738 NEDD8 neural precursor cell expressed, developmentally down-regulated 8 protein-coding 10.96 0.5561
-4739 NEDD9 neural precursor cell expressed, developmentally down-regulated 9 protein-coding 10.08 1.291
-4741 NEFM neurofilament medium protein-coding 3.568 3.251
-474170 LRRC37A2 leucine rich repeat containing 37 member A2 protein-coding 6.712 1.009
-474338 SUMO1P3 SUMO1 pseudogene 3 pseudo 7.595 0.6124
-474343 SPIN2B spindlin family member 2B protein-coding 6.709 0.7776
-474344 GIMAP6 GTPase, IMAP family member 6 protein-coding 8.091 1.33
-474354 LRRC18 leucine rich repeat containing 18 protein-coding 1.004 1.33
-474382 H2AFB1 H2A histone family member B1 protein-coding 1.482 1.195
-4744 NEFH neurofilament heavy protein-coding 5.535 3.043
-4747 NEFL neurofilament light protein-coding 4.709 3.893
-475 ATOX1 antioxidant 1 copper chaperone protein-coding 9.775 0.8731
+4739 NEDD9 neural precursor cell expressed, developmentally down-regulated 9 protein-coding 10.09 1.291
+4741 NEFM neurofilament medium protein-coding 3.569 3.251
+474170 LRRC37A2 leucine rich repeat containing 37 member A2 protein-coding 6.713 1.009
+474338 SUMO1P3 SUMO1 pseudogene 3 pseudo 7.595 0.6123
+474343 SPIN2B spindlin family member 2B protein-coding 6.709 0.7773
+474344 GIMAP6 GTPase, IMAP family member 6 protein-coding 8.093 1.33
+474354 LRRC18 leucine rich repeat containing 18 protein-coding 1.005 1.331
+474382 H2AFB1 H2A histone family member B1 protein-coding 1.482 1.194
+4744 NEFH neurofilament heavy protein-coding 5.538 3.047
+4747 NEFL neurofilament light protein-coding 4.71 3.892
+475 ATOX1 antioxidant 1 copper chaperone protein-coding 9.775 0.8733
4750 NEK1 NIMA related kinase 1 protein-coding 8.264 0.9004
-4751 NEK2 NIMA related kinase 2 protein-coding 7.317 2.249
+4751 NEK2 NIMA related kinase 2 protein-coding 7.314 2.25
4752 NEK3 NIMA related kinase 3 protein-coding 7.428 1.021
-4753 NELL2 neural EGFL like 2 protein-coding 6.842 2.903
+4753 NELL2 neural EGFL like 2 protein-coding 6.843 2.902
4756 NEO1 neogenin 1 protein-coding 10.48 1.143
-4758 NEU1 neuraminidase 1 protein-coding 10.84 0.9736
+4758 NEU1 neuraminidase 1 protein-coding 10.85 0.9733
476 ATP1A1 ATPase Na+/K+ transporting subunit alpha 1 protein-coding 13.99 0.9168
-4763 NF1 neurofibromin 1 protein-coding 10.69 0.7583
-477 ATP1A2 ATPase Na+/K+ transporting subunit alpha 2 protein-coding 5.424 3.557
-4771 NF2 neurofibromin 2 protein-coding 9.951 0.6719
-4772 NFATC1 nuclear factor of activated T cells 1 protein-coding 8.092 1.278
-4773 NFATC2 nuclear factor of activated T cells 2 protein-coding 5.045 1.963
+4763 NF1 neurofibromin 1 protein-coding 10.69 0.758
+477 ATP1A2 ATPase Na+/K+ transporting subunit alpha 2 protein-coding 5.426 3.557
+4771 NF2 neurofibromin 2 protein-coding 9.951 0.6716
+4772 NFATC1 nuclear factor of activated T cells 1 protein-coding 8.093 1.278
+4773 NFATC2 nuclear factor of activated T cells 2 protein-coding 5.047 1.964
4774 NFIA nuclear factor I A protein-coding 9.968 1.239
4775 NFATC3 nuclear factor of activated T cells 3 protein-coding 9.186 0.6446
-4776 NFATC4 nuclear factor of activated T cells 4 protein-coding 8.691 1.471
+4776 NFATC4 nuclear factor of activated T cells 4 protein-coding 8.692 1.471
4778 NFE2 nuclear factor, erythroid 2 protein-coding 3.785 1.968
-4779 NFE2L1 nuclear factor, erythroid 2 like 1 protein-coding 12.85 0.6552
-478 ATP1A3 ATPase Na+/K+ transporting subunit alpha 3 protein-coding 4.983 3.287
-4780 NFE2L2 nuclear factor, erythroid 2 like 2 protein-coding 11.4 0.7831
+4779 NFE2L1 nuclear factor, erythroid 2 like 1 protein-coding 12.85 0.655
+478 ATP1A3 ATPase Na+/K+ transporting subunit alpha 3 protein-coding 4.984 3.287
+4780 NFE2L2 nuclear factor, erythroid 2 like 2 protein-coding 11.4 0.7828
4781 NFIB nuclear factor I B protein-coding 10.26 1.368
-4782 NFIC nuclear factor I C protein-coding 9.198 1.201
+4782 NFIC nuclear factor I C protein-coding 9.199 1.201
4783 NFIL3 nuclear factor, interleukin 3 regulated protein-coding 9.231 1.044
4784 NFIX nuclear factor I X protein-coding 10.9 1.517
-4790 NFKB1 nuclear factor kappa B subunit 1 protein-coding 10.16 0.8006
+4790 NFKB1 nuclear factor kappa B subunit 1 protein-coding 10.16 0.8005
4791 NFKB2 nuclear factor kappa B subunit 2 protein-coding 10.1 1.01
-4792 NFKBIA NFKB inhibitor alpha protein-coding 11.27 0.8685
-4793 NFKBIB NFKB inhibitor beta protein-coding 9.157 0.7262
-4794 NFKBIE NFKB inhibitor epsilon protein-coding 8.819 0.8897
-4795 NFKBIL1 NFKB inhibitor like 1 protein-coding 9.019 0.7499
-4796 TONSL tonsoku like, DNA repair protein protein-coding 8.368 1.313
+4792 NFKBIA NFKB inhibitor alpha protein-coding 11.27 0.8686
+4793 NFKBIB NFKB inhibitor beta protein-coding 9.157 0.7261
+4794 NFKBIE NFKB inhibitor epsilon protein-coding 8.819 0.8898
+4795 NFKBIL1 NFKB inhibitor like 1 protein-coding 9.019 0.7496
+4796 TONSL tonsoku like, DNA repair protein protein-coding 8.367 1.313
4798 NFRKB nuclear factor related to kappaB binding protein protein-coding 9.415 0.5314
-4799 NFX1 nuclear transcription factor, X-box binding 1 protein-coding 9.932 0.4822
-48 ACO1 aconitase 1 protein-coding 10.15 0.8853
-480 ATP1A4 ATPase Na+/K+ transporting subunit alpha 4 protein-coding 1.343 1.703
-4800 NFYA nuclear transcription factor Y subunit alpha protein-coding 9.694 0.6335
-4801 NFYB nuclear transcription factor Y subunit beta protein-coding 9.392 0.5564
-4802 NFYC nuclear transcription factor Y subunit gamma protein-coding 10.06 0.454
-4804 NGFR nerve growth factor receptor protein-coding 7.155 2.473
-4807 NHLH1 nescient helix-loop-helix 1 protein-coding 2.429 1.309
-4809 SNU13 small nuclear ribonucleoprotein 13 protein-coding 11.36 0.539
+4799 NFX1 nuclear transcription factor, X-box binding 1 protein-coding 9.932 0.482
+48 ACO1 aconitase 1 protein-coding 10.15 0.8851
+480 ATP1A4 ATPase Na+/K+ transporting subunit alpha 4 protein-coding 1.344 1.704
+4800 NFYA nuclear transcription factor Y subunit alpha protein-coding 9.694 0.6332
+4801 NFYB nuclear transcription factor Y subunit beta protein-coding 9.392 0.5562
+4802 NFYC nuclear transcription factor Y subunit gamma protein-coding 10.06 0.4539
+4804 NGFR nerve growth factor receptor protein-coding 7.157 2.473
+4807 NHLH1 nescient helix-loop-helix 1 protein-coding 2.428 1.309
+4809 SNU13 small nuclear ribonucleoprotein 13 protein-coding 11.36 0.5391
481 ATP1B1 ATPase Na+/K+ transporting subunit beta 1 protein-coding 12.2 1.733
4810 NHS NHS actin remodeling regulator protein-coding 7.397 1.72
4811 NID1 nidogen 1 protein-coding 10.57 1.432
-4814 NINJ1 ninjurin 1 protein-coding 10.37 0.9759
+4814 NINJ1 ninjurin 1 protein-coding 10.37 0.9756
4815 NINJ2 ninjurin 2 protein-coding 5.884 1.592
-4817 NIT1 nitrilase 1 protein-coding 9.388 0.5681
+4817 NIT1 nitrilase 1 protein-coding 9.388 0.5679
4818 NKG7 natural killer cell granule protein 7 protein-coding 6.363 2.036
-482 ATP1B2 ATPase Na+/K+ transporting subunit beta 2 protein-coding 6.174 2.939
-4820 NKTR natural killer cell triggering receptor protein-coding 10.23 0.905
-4824 NKX3-1 NK3 homeobox 1 protein-coding 6.287 2.626
-4826 NNAT neuronatin protein-coding 4.057 2.387
-4828 NMB neuromedin B protein-coding 7.521 1.738
-483 ATP1B3 ATPase Na+/K+ transporting subunit beta 3 protein-coding 11.23 1.167
-4830 NME1 NME/NM23 nucleoside diphosphate kinase 1 protein-coding 10.86 0.8764
-4831 NME2 NME/NM23 nucleoside diphosphate kinase 2 protein-coding 12.84 0.8295
-4832 NME3 NME/NM23 nucleoside diphosphate kinase 3 protein-coding 9.461 1.067
+482 ATP1B2 ATPase Na+/K+ transporting subunit beta 2 protein-coding 6.175 2.938
+4820 NKTR natural killer cell triggering receptor protein-coding 10.23 0.9051
+4824 NKX3-1 NK3 homeobox 1 protein-coding 6.289 2.628
+4826 NNAT neuronatin protein-coding 4.06 2.388
+4828 NMB neuromedin B protein-coding 7.519 1.738
+483 ATP1B3 ATPase Na+/K+ transporting subunit beta 3 protein-coding 11.23 1.166
+4830 NME1 NME/NM23 nucleoside diphosphate kinase 1 protein-coding 10.85 0.8778
+4831 NME2 NME/NM23 nucleoside diphosphate kinase 2 protein-coding 12.84 0.8296
+4832 NME3 NME/NM23 nucleoside diphosphate kinase 3 protein-coding 9.462 1.067
4833 NME4 NME/NM23 nucleoside diphosphate kinase 4 protein-coding 10.64 1.081
-4835 NQO2 N-ribosyldihydronicotinamide:quinone reductase 2 protein-coding 8.916 0.971
-4836 NMT1 N-myristoyltransferase 1 protein-coding 11.31 0.4072
-4837 NNMT nicotinamide N-methyltransferase protein-coding 9.714 2.529
+4835 NQO2 N-ribosyldihydronicotinamide:quinone reductase 2 protein-coding 8.916 0.9709
+4836 NMT1 N-myristoyltransferase 1 protein-coding 11.31 0.4071
+4837 NNMT nicotinamide N-methyltransferase protein-coding 9.714 2.528
4838 NODAL nodal growth differentiation factor protein-coding 2.504 1.625
-4839 NOP2 NOP2 nucleolar protein protein-coding 9.882 0.8082
-4841 NONO non-POU domain containing octamer binding protein-coding 12.86 0.4761
-4843 NOS2 nitric oxide synthase 2 protein-coding 4.627 2.46
+4839 NOP2 NOP2 nucleolar protein protein-coding 9.881 0.8083
+4841 NONO non-POU domain containing octamer binding protein-coding 12.86 0.476
+4843 NOS2 nitric oxide synthase 2 protein-coding 4.626 2.459
4846 NOS3 nitric oxide synthase 3 protein-coding 7.742 1.261
-4848 CNOT2 CCR4-NOT transcription complex subunit 2 protein-coding 10.3 0.4621
+4848 CNOT2 CCR4-NOT transcription complex subunit 2 protein-coding 10.3 0.462
4849 CNOT3 CCR4-NOT transcription complex subunit 3 protein-coding 10.19 0.5333
4850 CNOT4 CCR4-NOT transcription complex subunit 4 protein-coding 8.888 0.4345
-4851 NOTCH1 notch 1 protein-coding 10.42 1.177
+4851 NOTCH1 notch 1 protein-coding 10.42 1.176
4853 NOTCH2 notch 2 protein-coding 11.41 1.124
4854 NOTCH3 notch 3 protein-coding 11.45 1.436
4855 NOTCH4 notch 4 protein-coding 8.69 1.2
-4856 NOV nephroblastoma overexpressed protein-coding 7.138 1.953
-486 FXYD2 FXYD domain containing ion transport regulator 2 protein-coding 3.797 3.794
-4860 PNP purine nucleoside phosphorylase protein-coding 10.14 1.098
-4861 NPAS1 neuronal PAS domain protein 1 protein-coding 3.806 1.587
-4862 NPAS2 neuronal PAS domain protein 2 protein-coding 8.77 1.501
-4863 NPAT nuclear protein, coactivator of histone transcription protein-coding 8.56 0.7159
-4864 NPC1 NPC intracellular cholesterol transporter 1 protein-coding 10.09 0.8644
-4867 NPHP1 nephrocystin 1 protein-coding 6.382 1.34
-4869 NPM1 nucleophosmin 1 protein-coding 13.09 0.7189
+4856 NOV nephroblastoma overexpressed protein-coding 7.14 1.954
+486 FXYD2 FXYD domain containing ion transport regulator 2 protein-coding 3.799 3.794
+4860 PNP purine nucleoside phosphorylase protein-coding 10.13 1.098
+4861 NPAS1 neuronal PAS domain protein 1 protein-coding 3.805 1.586
+4862 NPAS2 neuronal PAS domain protein 2 protein-coding 8.769 1.501
+4863 NPAT nuclear protein, coactivator of histone transcription protein-coding 8.561 0.7157
+4864 NPC1 NPC intracellular cholesterol transporter 1 protein-coding 10.09 0.8642
+4867 NPHP1 nephrocystin 1 protein-coding 6.383 1.339
+4869 NPM1 nucleophosmin 1 protein-coding 13.09 0.7188
487 ATP2A1 ATPase sarcoplasmic/endoplasmic reticulum Ca2+ transporting 1 protein-coding 3.823 1.626
-4878 NPPA natriuretic peptide A protein-coding 1.717 1.859
-488 ATP2A2 ATPase sarcoplasmic/endoplasmic reticulum Ca2+ transporting 2 protein-coding 12.74 0.6976
-4881 NPR1 natriuretic peptide receptor 1 protein-coding 7.103 1.91
-4882 NPR2 natriuretic peptide receptor 2 protein-coding 7.509 1.417
-4883 NPR3 natriuretic peptide receptor 3 protein-coding 4.541 2.654
-4884 NPTX1 neuronal pentraxin 1 protein-coding 4.455 3.041
-4885 NPTX2 neuronal pentraxin 2 protein-coding 6.111 2.718
-489 ATP2A3 ATPase sarcoplasmic/endoplasmic reticulum Ca2+ transporting 3 protein-coding 9.3 1.917
-4891 SLC11A2 solute carrier family 11 member 2 protein-coding 10.42 0.7365
-4893 NRAS NRAS proto-oncogene, GTPase protein-coding 10.37 0.7652
-4897 NRCAM neuronal cell adhesion molecule protein-coding 7.96 2.891
-4898 NRDC nardilysin convertase protein-coding 11.43 0.4646
-4899 NRF1 nuclear respiratory factor 1 protein-coding 8.607 0.3841
+4878 NPPA natriuretic peptide A protein-coding 1.717 1.858
+488 ATP2A2 ATPase sarcoplasmic/endoplasmic reticulum Ca2+ transporting 2 protein-coding 12.74 0.6974
+4881 NPR1 natriuretic peptide receptor 1 protein-coding 7.104 1.91
+4882 NPR2 natriuretic peptide receptor 2 protein-coding 7.51 1.417
+4883 NPR3 natriuretic peptide receptor 3 protein-coding 4.542 2.654
+4884 NPTX1 neuronal pentraxin 1 protein-coding 4.457 3.04
+4885 NPTX2 neuronal pentraxin 2 protein-coding 6.112 2.717
+489 ATP2A3 ATPase sarcoplasmic/endoplasmic reticulum Ca2+ transporting 3 protein-coding 9.301 1.917
+4891 SLC11A2 solute carrier family 11 member 2 protein-coding 10.42 0.7362
+4893 NRAS NRAS proto-oncogene, GTPase protein-coding 10.37 0.7651
+4897 NRCAM neuronal cell adhesion molecule protein-coding 7.96 2.89
+4898 NRDC nardilysin convertase protein-coding 11.43 0.4645
+4899 NRF1 nuclear respiratory factor 1 protein-coding 8.608 0.3839
49 ACR acrosin protein-coding 1.835 1.171
-490 ATP2B1 ATPase plasma membrane Ca2+ transporting 1 protein-coding 10.13 0.8998
+490 ATP2B1 ATPase plasma membrane Ca2+ transporting 1 protein-coding 10.13 0.8995
4900 NRGN neurogranin protein-coding 6.9 1.786
-4901 NRL neural retina leucine zipper protein-coding 5.026 0.9056
-4902 NRTN neurturin protein-coding 4.047 2.01
-4904 YBX1 Y-box binding protein 1 protein-coding 12.85 0.727
-4905 NSF N-ethylmaleimide sensitive factor, vesicle fusing ATPase protein-coding 10.3 0.6778
-4907 NT5E 5'-nucleotidase ecto protein-coding 9.02 1.833
-491 ATP2B2 ATPase plasma membrane Ca2+ transporting 2 protein-coding 3.781 3.531
-4913 NTHL1 nth like DNA glycosylase 1 protein-coding 8.371 0.9461
-4914 NTRK1 neurotrophic receptor tyrosine kinase 1 protein-coding 2.726 1.994
-4915 NTRK2 neurotrophic receptor tyrosine kinase 2 protein-coding 8.101 3.672
-4916 NTRK3 neurotrophic receptor tyrosine kinase 3 protein-coding 4.192 2.888
-4917 NTN3 netrin 3 protein-coding 1.243 1.365
-4919 ROR1 receptor tyrosine kinase like orphan receptor 1 protein-coding 4.734 2.037
-492 ATP2B3 ATPase plasma membrane Ca2+ transporting 3 protein-coding 1.643 2.624
-4920 ROR2 receptor tyrosine kinase like orphan receptor 2 protein-coding 7.088 2.394
-4921 DDR2 discoidin domain receptor tyrosine kinase 2 protein-coding 6.205 2.108
-4923 NTSR1 neurotensin receptor 1 protein-coding 2.36 2.175
-492303 GEMIN8P4 gem nuclear organelle associated protein 8 pseudogene 4 pseudo 4.789 0.99
-492311 IGIP IgA inducing protein protein-coding 8.14 1.116
-4924 NUCB1 nucleobindin 1 protein-coding 12.71 0.6735
+4901 NRL neural retina leucine zipper protein-coding 5.026 0.9055
+4902 NRTN neurturin protein-coding 4.048 2.009
+4904 YBX1 Y-box binding protein 1 protein-coding 12.85 0.7269
+4905 NSF N-ethylmaleimide sensitive factor, vesicle fusing ATPase protein-coding 10.3 0.6777
+4907 NT5E 5'-nucleotidase ecto protein-coding 9.02 1.832
+491 ATP2B2 ATPase plasma membrane Ca2+ transporting 2 protein-coding 3.781 3.529
+4913 NTHL1 nth like DNA glycosylase 1 protein-coding 8.371 0.9457
+4914 NTRK1 neurotrophic receptor tyrosine kinase 1 protein-coding 2.728 1.995
+4915 NTRK2 neurotrophic receptor tyrosine kinase 2 protein-coding 8.103 3.671
+4916 NTRK3 neurotrophic receptor tyrosine kinase 3 protein-coding 4.194 2.887
+4917 NTN3 netrin 3 protein-coding 1.242 1.365
+4919 ROR1 receptor tyrosine kinase like orphan receptor 1 protein-coding 4.736 2.038
+492 ATP2B3 ATPase plasma membrane Ca2+ transporting 3 protein-coding 1.644 2.624
+4920 ROR2 receptor tyrosine kinase like orphan receptor 2 protein-coding 7.09 2.394
+4921 DDR2 discoidin domain receptor tyrosine kinase 2 protein-coding 6.206 2.108
+4923 NTSR1 neurotensin receptor 1 protein-coding 2.361 2.177
+492303 GEMIN8P4 gem nuclear organelle associated protein 8 pseudogene 4 pseudo 4.788 0.9898
+492311 IGIP IgA inducing protein protein-coding 8.141 1.116
+4924 NUCB1 nucleobindin 1 protein-coding 12.71 0.6736
4925 NUCB2 nucleobindin 2 protein-coding 10.24 1.061
-4926 NUMA1 nuclear mitotic apparatus protein 1 protein-coding 12.9 0.7604
-4927 NUP88 nucleoporin 88 protein-coding 9.519 0.5614
-4928 NUP98 nucleoporin 98 protein-coding 11.03 0.5214
-4929 NR4A2 nuclear receptor subfamily 4 group A member 2 protein-coding 7.714 1.672
+4926 NUMA1 nuclear mitotic apparatus protein 1 protein-coding 12.9 0.7603
+4927 NUP88 nucleoporin 88 protein-coding 9.519 0.5613
+4928 NUP98 nucleoporin 98 protein-coding 11.03 0.5212
+4929 NR4A2 nuclear receptor subfamily 4 group A member 2 protein-coding 7.716 1.672
493 ATP2B4 ATPase plasma membrane Ca2+ transporting 4 protein-coding 11.46 1.055
-4931 NVL nuclear VCP-like protein-coding 8.912 0.6314
-4935 GPR143 G protein-coupled receptor 143 protein-coding 5.571 2.411
-493753 COA5 cytochrome c oxidase assembly factor 5 protein-coding 9.114 0.6277
-493754 GS1-124K5.11 RAB guanine nucleotide exchange factor 1 pseudogene pseudo 8.895 0.4608
+4931 NVL nuclear VCP-like protein-coding 8.912 0.6312
+4935 GPR143 G protein-coupled receptor 143 protein-coding 5.57 2.411
+493753 COA5 cytochrome c oxidase assembly factor 5 protein-coding 9.114 0.6275
+493754 GS1-124K5.11 RAB guanine nucleotide exchange factor 1 pseudogene pseudo 8.895 0.4607
4938 OAS1 2'-5'-oligoadenylate synthetase 1 protein-coding 9.507 1.627
-493812 HCG11 HLA complex group 11 (non-protein coding) ncRNA 7.652 1.42
-493829 TRIM72 tripartite motif containing 72 protein-coding 0.9439 1.72
-493856 CISD2 CDGSH iron sulfur domain 2 protein-coding 9.339 0.5456
-493860 CCDC73 coiled-coil domain containing 73 protein-coding 5.276 0.8314
-493861 EID3 EP300 interacting inhibitor of differentiation 3 protein-coding 4.688 1.323
-493869 GPX8 glutathione peroxidase 8 (putative) protein-coding 8.642 1.802
-4939 OAS2 2'-5'-oligoadenylate synthetase 2 protein-coding 9.81 1.725
+493812 HCG11 HLA complex group 11 (non-protein coding) ncRNA 7.653 1.42
+493829 TRIM72 tripartite motif containing 72 protein-coding 0.9438 1.719
+493856 CISD2 CDGSH iron sulfur domain 2 protein-coding 9.339 0.5457
+493860 CCDC73 coiled-coil domain containing 73 protein-coding 5.276 0.8311
+493861 EID3 EP300 interacting inhibitor of differentiation 3 protein-coding 4.689 1.323
+493869 GPX8 glutathione peroxidase 8 (putative) protein-coding 8.642 1.801
+4939 OAS2 2'-5'-oligoadenylate synthetase 2 protein-coding 9.81 1.724
493911 PHOSPHO2 phosphatase, orphan 2 protein-coding 5.575 1.011
-4940 OAS3 2'-5'-oligoadenylate synthetase 3 protein-coding 10.45 1.474
-494115 RBMXL1 RNA binding motif protein, X-linked like 1 protein-coding 9.124 0.6003
-494141 LOC494141 solute carrier family 25 member 51 pseudogene pseudo 0.2927 0.5269
-494143 CHAC2 ChaC cation transport regulator homolog 2 protein-coding 5.738 1.169
-4942 OAT ornithine aminotransferase protein-coding 10.63 1.206
-4943 TBC1D25 TBC1 domain family member 25 protein-coding 8.793 0.4765
-494470 RNF165 ring finger protein 165 protein-coding 4.69 2.34
+4940 OAS3 2'-5'-oligoadenylate synthetase 3 protein-coding 10.45 1.473
+494115 RBMXL1 RNA binding motif protein, X-linked like 1 protein-coding 9.124 0.6002
+494141 LOC494141 solute carrier family 25 member 51 pseudogene pseudo 0.2927 0.5268
+494143 CHAC2 ChaC cation transport regulator homolog 2 protein-coding 5.737 1.169
+4942 OAT ornithine aminotransferase protein-coding 10.63 1.205
+4943 TBC1D25 TBC1 domain family member 25 protein-coding 8.793 0.4763
+494470 RNF165 ring finger protein 165 protein-coding 4.691 2.34
494513 PJVK pejvakin protein-coding 4.214 1.169
-494514 TYMSOS TYMS opposite strand protein-coding 4.35 1.395
-494551 WEE2 WEE1 homolog 2 protein-coding 0.9463 0.9181
-4946 OAZ1 ornithine decarboxylase antizyme 1 protein-coding 13.29 0.6005
+494514 TYMSOS TYMS opposite strand protein-coding 4.348 1.396
+494551 WEE2 WEE1 homolog 2 protein-coding 0.9467 0.9178
+4946 OAZ1 ornithine decarboxylase antizyme 1 protein-coding 13.29 0.6003
4947 OAZ2 ornithine decarboxylase antizyme 2 protein-coding 10.8 0.6375
-4952 OCRL OCRL, inositol polyphosphate-5-phosphatase protein-coding 9.994 0.6777
-4953 ODC1 ornithine decarboxylase 1 protein-coding 11.34 1.321
-4957 ODF2 outer dense fiber of sperm tails 2 protein-coding 9.853 0.6439
-4958 OMD osteomodulin protein-coding 4.285 2.615
-4967 OGDH oxoglutarate dehydrogenase protein-coding 11.69 0.6326
-4968 OGG1 8-oxoguanine DNA glycosylase protein-coding 8.432 0.6983
-4969 OGN osteoglycin protein-coding 5.065 3.114
-497189 TIFAB TIFA inhibitor protein-coding 2.544 1.749
-497190 CLEC18B C-type lectin domain family 18 member B protein-coding 3.321 2.397
-497258 BDNF-AS BDNF antisense RNA ncRNA 5.464 1.451
+4952 OCRL OCRL, inositol polyphosphate-5-phosphatase protein-coding 9.995 0.6777
+4953 ODC1 ornithine decarboxylase 1 protein-coding 11.34 1.32
+4957 ODF2 outer dense fiber of sperm tails 2 protein-coding 9.853 0.6438
+4958 OMD osteomodulin protein-coding 4.287 2.615
+4967 OGDH oxoglutarate dehydrogenase protein-coding 11.69 0.6324
+4968 OGG1 8-oxoguanine DNA glycosylase protein-coding 8.432 0.698
+4969 OGN osteoglycin protein-coding 5.07 3.115
+497189 TIFAB TIFA inhibitor protein-coding 2.545 1.751
+497190 CLEC18B C-type lectin domain family 18 member B protein-coding 3.321 2.396
+497258 BDNF-AS BDNF antisense RNA ncRNA 5.465 1.451
4973 OLR1 oxidized low density lipoprotein receptor 1 protein-coding 6.753 2.397
-4974 OMG oligodendrocyte myelin glycoprotein protein-coding 2.201 2.631
-4975 OMP olfactory marker protein protein-coding 0.6734 0.8728
-4976 OPA1 OPA1, mitochondrial dynamin like GTPase protein-coding 10.63 0.62
-497661 C18orf32 chromosome 18 open reading frame 32 protein-coding 10.15 0.7723
-498 ATP5F1A ATP synthase F1 subunit alpha protein-coding 13.17 0.5859
+4974 OMG oligodendrocyte myelin glycoprotein protein-coding 2.201 2.63
+4975 OMP olfactory marker protein protein-coding 0.6739 0.8728
+4976 OPA1 OPA1, mitochondrial dynamin like GTPase protein-coding 10.63 0.6198
+497661 C18orf32 chromosome 18 open reading frame 32 protein-coding 10.15 0.7721
+498 ATP5F1A ATP synthase F1 subunit alpha protein-coding 13.17 0.5857
4982 TNFRSF11B TNF receptor superfamily member 11b protein-coding 6.116 2.538
-4983 OPHN1 oligophrenin 1 protein-coding 7.661 1.513
-49854 ZBTB21 zinc finger and BTB domain containing 21 protein-coding 8.666 0.6946
-49855 SCAPER S-phase cyclin A associated protein in the ER protein-coding 8.241 0.9117
-49856 WRAP73 WD repeat containing, antisense to TP73 protein-coding 8.867 0.6126
-49861 CLDN20 claudin 20 protein-coding 1.415 1.191
-4987 OPRL1 opioid related nociceptin receptor 1 protein-coding 5.668 1.408
-4998 ORC1 origin recognition complex subunit 1 protein-coding 6.544 1.891
-4999 ORC2 origin recognition complex subunit 2 protein-coding 8.649 0.6383
-50 ACO2 aconitase 2 protein-coding 11.66 0.7064
-5000 ORC4 origin recognition complex subunit 4 protein-coding 9.125 0.5191
-5001 ORC5 origin recognition complex subunit 5 protein-coding 8.656 0.6063
-5002 SLC22A18 solute carrier family 22 member 18 protein-coding 8.534 1.612
-5003 SLC22A18AS solute carrier family 22 member 18 antisense protein-coding 4.195 1.877
-5004 ORM1 orosomucoid 1 protein-coding 3.329 4.071
-5007 OSBP oxysterol binding protein protein-coding 10.85 0.4913
-5008 OSM oncostatin M protein-coding 5.146 1.802
+4983 OPHN1 oligophrenin 1 protein-coding 7.662 1.513
+49854 ZBTB21 zinc finger and BTB domain containing 21 protein-coding 8.666 0.6944
+49855 SCAPER S-phase cyclin A associated protein in the ER protein-coding 8.242 0.9116
+49856 WRAP73 WD repeat containing, antisense to TP73 protein-coding 8.867 0.6124
+49861 CLDN20 claudin 20 protein-coding 1.416 1.191
+4987 OPRL1 opioid related nociceptin receptor 1 protein-coding 5.669 1.408
+4998 ORC1 origin recognition complex subunit 1 protein-coding 6.542 1.892
+4999 ORC2 origin recognition complex subunit 2 protein-coding 8.649 0.6381
+50 ACO2 aconitase 2 protein-coding 11.66 0.7061
+5000 ORC4 origin recognition complex subunit 4 protein-coding 9.125 0.519
+5001 ORC5 origin recognition complex subunit 5 protein-coding 8.656 0.6062
+5002 SLC22A18 solute carrier family 22 member 18 protein-coding 8.534 1.611
+5003 SLC22A18AS solute carrier family 22 member 18 antisense protein-coding 4.194 1.876
+5004 ORM1 orosomucoid 1 protein-coding 3.331 4.07
+5007 OSBP oxysterol binding protein protein-coding 10.85 0.4912
+5008 OSM oncostatin M protein-coding 5.145 1.802
501 ALDH7A1 aldehyde dehydrogenase 7 family member A1 protein-coding 10.2 1.323
-5010 CLDN11 claudin 11 protein-coding 5.886 2.308
-5013 OTX1 orthodenticle homeobox 1 protein-coding 4.168 2.52
-5016 OVGP1 oviductal glycoprotein 1 protein-coding 5.637 1.713
-5017 OVOL1 ovo like transcriptional repressor 1 protein-coding 6.537 3.118
-5018 OXA1L OXA1L, mitochondrial inner membrane protein protein-coding 11.08 0.5278
-5019 OXCT1 3-oxoacid CoA-transferase 1 protein-coding 9.287 1.536
+5010 CLDN11 claudin 11 protein-coding 5.887 2.308
+5013 OTX1 orthodenticle homeobox 1 protein-coding 4.166 2.52
+5016 OVGP1 oviductal glycoprotein 1 protein-coding 5.637 1.712
+5017 OVOL1 ovo like transcriptional repressor 1 protein-coding 6.535 3.118
+5018 OXA1L OXA1L, mitochondrial inner membrane protein protein-coding 11.08 0.5276
+5019 OXCT1 3-oxoacid CoA-transferase 1 protein-coding 9.287 1.535
5021 OXTR oxytocin receptor protein-coding 5.538 1.791
-5023 P2RX1 purinergic receptor P2X 1 protein-coding 4.385 1.896
-5025 P2RX4 purinergic receptor P2X 4 protein-coding 9.135 0.9097
-5026 P2RX5 purinergic receptor P2X 5 protein-coding 5.745 1.424
-5027 P2RX7 purinergic receptor P2X 7 protein-coding 5.586 2.099
-5028 P2RY1 purinergic receptor P2Y1 protein-coding 5.154 2.223
-5029 P2RY2 purinergic receptor P2Y2 protein-coding 5.883 2.328
-5031 P2RY6 pyrimidinergic receptor P2Y6 protein-coding 6.15 1.718
-5032 P2RY11 purinergic receptor P2Y11 protein-coding 7.047 1.417
+5023 P2RX1 purinergic receptor P2X 1 protein-coding 4.387 1.897
+5025 P2RX4 purinergic receptor P2X 4 protein-coding 9.135 0.9095
+5026 P2RX5 purinergic receptor P2X 5 protein-coding 5.746 1.425
+5027 P2RX7 purinergic receptor P2X 7 protein-coding 5.587 2.099
+5028 P2RY1 purinergic receptor P2Y1 protein-coding 5.155 2.223
+5029 P2RY2 purinergic receptor P2Y2 protein-coding 5.883 2.327
+5031 P2RY6 pyrimidinergic receptor P2Y6 protein-coding 6.149 1.718
+5032 P2RY11 purinergic receptor P2Y11 protein-coding 7.047 1.416
5033 P4HA1 prolyl 4-hydroxylase subunit alpha 1 protein-coding 10.33 0.9918
-5034 P4HB prolyl 4-hydroxylase subunit beta protein-coding 14.42 0.9122
-503538 A1BG-AS1 A1BG antisense RNA 1 ncRNA 5.971 1.434
+5034 P4HB prolyl 4-hydroxylase subunit beta protein-coding 14.42 0.912
+503538 A1BG-AS1 A1BG antisense RNA 1 ncRNA 5.972 1.434
503542 SPRN shadow of prion protein protein-coding 6.901 1.013
-5036 PA2G4 proliferation-associated 2G4 protein-coding 11.78 0.5651
-503640 ARGFXP2 arginine-fifty homeobox pseudogene 2 pseudo 0.7887 0.7628
+5036 PA2G4 proliferation-associated 2G4 protein-coding 11.78 0.5654
+503640 ARGFXP2 arginine-fifty homeobox pseudogene 2 pseudo 0.789 0.7631
503645 DPRXP4 divergent-paired related homeobox pseudogene 4 pseudo 1.431 0.8938
-503693 LOH12CR2 loss of heterozygosity, 12, chromosomal region 2 (non-protein coding) ncRNA 4.621 1.293
-5037 PEBP1 phosphatidylethanolamine binding protein 1 protein-coding 12.92 1.04
-5042 PABPC3 poly(A) binding protein cytoplasmic 3 protein-coding 8.266 1.299
-5045 FURIN furin, paired basic amino acid cleaving enzyme protein-coding 11.63 1.016
-5046 PCSK6 proprotein convertase subtilisin/kexin type 6 protein-coding 8.348 2.367
-5048 PAFAH1B1 platelet activating factor acetylhydrolase 1b regulatory subunit 1 protein-coding 11.47 0.5797
-50484 RRM2B ribonucleotide reductase regulatory TP53 inducible subunit M2B protein-coding 9.873 0.8267
-50485 SMARCAL1 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily a like 1 protein-coding 9.105 0.428
-50486 G0S2 G0/G1 switch 2 protein-coding 7.149 2.234
-50488 MINK1 misshapen like kinase 1 protein-coding 11.04 0.7195
-5049 PAFAH1B2 platelet activating factor acetylhydrolase 1b catalytic subunit 2 protein-coding 8.485 1.055
-5050 PAFAH1B3 platelet activating factor acetylhydrolase 1b catalytic subunit 3 protein-coding 9.453 1.099
-50506 DUOX2 dual oxidase 2 protein-coding 6.1 3.915
-50509 COL5A3 collagen type V alpha 3 chain protein-coding 8.556 1.892
-5051 PAFAH2 platelet activating factor acetylhydrolase 2 protein-coding 8.817 0.7585
-50512 PODXL2 podocalyxin like 2 protein-coding 9.042 2.268
-50515 CHST11 carbohydrate sulfotransferase 11 protein-coding 7.466 1.455
-5052 PRDX1 peroxiredoxin 1 protein-coding 12.93 0.8391
+503693 LOH12CR2 loss of heterozygosity, 12, chromosomal region 2 (non-protein coding) ncRNA 4.622 1.293
+5037 PEBP1 phosphatidylethanolamine binding protein 1 protein-coding 12.92 1.039
+5042 PABPC3 poly(A) binding protein cytoplasmic 3 protein-coding 8.265 1.299
+5045 FURIN furin, paired basic amino acid cleaving enzyme protein-coding 11.63 1.015
+5046 PCSK6 proprotein convertase subtilisin/kexin type 6 protein-coding 8.347 2.366
+5048 PAFAH1B1 platelet activating factor acetylhydrolase 1b regulatory subunit 1 protein-coding 11.47 0.5795
+50484 RRM2B ribonucleotide reductase regulatory TP53 inducible subunit M2B protein-coding 9.873 0.8264
+50485 SMARCAL1 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily a like 1 protein-coding 9.105 0.4278
+50486 G0S2 G0/G1 switch 2 protein-coding 7.149 2.233
+50488 MINK1 misshapen like kinase 1 protein-coding 11.04 0.7193
+5049 PAFAH1B2 platelet activating factor acetylhydrolase 1b catalytic subunit 2 protein-coding 8.486 1.055
+5050 PAFAH1B3 platelet activating factor acetylhydrolase 1b catalytic subunit 3 protein-coding 9.452 1.099
+50506 DUOX2 dual oxidase 2 protein-coding 6.103 3.916
+50509 COL5A3 collagen type V alpha 3 chain protein-coding 8.555 1.891
+5051 PAFAH2 platelet activating factor acetylhydrolase 2 protein-coding 8.817 0.7583
+50512 PODXL2 podocalyxin like 2 protein-coding 9.041 2.268
+50515 CHST11 carbohydrate sulfotransferase 11 protein-coding 7.466 1.454
+5052 PRDX1 peroxiredoxin 1 protein-coding 12.93 0.8392
5054 SERPINE1 serpin family E member 1 protein-coding 10.08 2.206
-5055 SERPINB2 serpin family B member 2 protein-coding 3.18 3.539
-5058 PAK1 p21 (RAC1) activated kinase 1 protein-coding 10.42 0.9251
+5055 SERPINB2 serpin family B member 2 protein-coding 3.18 3.538
+5058 PAK1 p21 (RAC1) activated kinase 1 protein-coding 10.42 0.9247
506 ATP5F1B ATP synthase F1 subunit beta protein-coding 13.63 0.6269
-50614 GALNT9 polypeptide N-acetylgalactosaminyltransferase 9 protein-coding 2.782 2.944
-50615 IL21R interleukin 21 receptor protein-coding 5.515 2.019
+50614 GALNT9 polypeptide N-acetylgalactosaminyltransferase 9 protein-coding 2.783 2.943
+50615 IL21R interleukin 21 receptor protein-coding 5.515 2.02
50618 ITSN2 intersectin 2 protein-coding 10.01 0.7849
-50619 DEF6 DEF6, guanine nucleotide exchange factor protein-coding 8.475 1.307
-5062 PAK2 p21 (RAC1) activated kinase 2 protein-coding 11.32 0.5746
-50624 CUZD1 CUB and zona pellucida like domains 1 protein-coding 3.839 1.568
-50626 CYHR1 cysteine and histidine rich 1 protein-coding 9.765 0.7356
-50628 GEMIN4 gem nuclear organelle associated protein 4 protein-coding 9.314 0.728
-50636 ANO7 anoctamin 7 protein-coding 5.115 2.001
-5064 PALM paralemmin protein-coding 8.597 1.977
-50640 PNPLA8 patatin like phospholipase domain containing 8 protein-coding 9.685 0.7394
-50649 ARHGEF4 Rho guanine nucleotide exchange factor 4 protein-coding 7.257 2.878
-50650 ARHGEF3 Rho guanine nucleotide exchange factor 3 protein-coding 9.399 0.9493
-50651 SLC45A1 solute carrier family 45 member 1 protein-coding 5.13 1.744
+50619 DEF6 DEF6, guanine nucleotide exchange factor protein-coding 8.476 1.308
+5062 PAK2 p21 (RAC1) activated kinase 2 protein-coding 11.32 0.5745
+50624 CUZD1 CUB and zona pellucida like domains 1 protein-coding 3.841 1.571
+50626 CYHR1 cysteine and histidine rich 1 protein-coding 9.765 0.7354
+50628 GEMIN4 gem nuclear organelle associated protein 4 protein-coding 9.314 0.7279
+50636 ANO7 anoctamin 7 protein-coding 5.116 2.003
+5064 PALM paralemmin protein-coding 8.598 1.976
+50640 PNPLA8 patatin like phospholipase domain containing 8 protein-coding 9.685 0.7392
+50649 ARHGEF4 Rho guanine nucleotide exchange factor 4 protein-coding 7.257 2.877
+50650 ARHGEF3 Rho guanine nucleotide exchange factor 3 protein-coding 9.399 0.9494
+50651 SLC45A1 solute carrier family 45 member 1 protein-coding 5.131 1.743
5066 PAM peptidylglycine alpha-amidating monooxygenase protein-coding 11.39 1.39
-5069 PAPPA pappalysin 1 protein-coding 6.062 2.115
-5071 PRKN parkin RBR E3 ubiquitin protein ligase protein-coding 5.263 1.802
-50717 DCAF8 DDB1 and CUL4 associated factor 8 protein-coding 11.08 0.5355
-5073 PARN poly(A)-specific ribonuclease protein-coding 10.18 0.4773
+5069 PAPPA pappalysin 1 protein-coding 6.063 2.115
+5071 PRKN parkin RBR E3 ubiquitin protein ligase protein-coding 5.265 1.802
+50717 DCAF8 DDB1 and CUL4 associated factor 8 protein-coding 11.08 0.5353
+5073 PARN poly(A)-specific ribonuclease protein-coding 10.18 0.4772
5074 PAWR pro-apoptotic WT1 regulator protein-coding 7.78 1.518
-5079 PAX5 paired box 5 protein-coding 2.327 2.185
+5079 PAX5 paired box 5 protein-coding 2.329 2.186
5080 PAX6 paired box 6 protein-coding 5.944 1.691
-50801 KCNK4 potassium two pore domain channel subfamily K member 4 protein-coding 1.403 1.714
-50804 MYEF2 myelin expression factor 2 protein-coding 7.775 2.407
-50807 ASAP1 ArfGAP with SH3 domain, ankyrin repeat and PH domain 1 protein-coding 9.962 0.9351
-50808 AK3 adenylate kinase 3 protein-coding 10.55 0.6865
-50809 HP1BP3 heterochromatin protein 1 binding protein 3 protein-coding 11.78 0.517
-50810 HDGFL3 HDGF like 3 protein-coding 8.993 1.415
-50813 COPS7A COP9 signalosome subunit 7A protein-coding 10.74 0.5271
-50814 NSDHL NAD(P) dependent steroid dehydrogenase-like protein-coding 9.314 0.6718
-5082 PDCL phosducin like protein-coding 8.828 0.5185
+50801 KCNK4 potassium two pore domain channel subfamily K member 4 protein-coding 1.403 1.713
+50804 MYEF2 myelin expression factor 2 protein-coding 7.776 2.406
+50807 ASAP1 ArfGAP with SH3 domain, ankyrin repeat and PH domain 1 protein-coding 9.962 0.935
+50808 AK3 adenylate kinase 3 protein-coding 10.55 0.6863
+50809 HP1BP3 heterochromatin protein 1 binding protein 3 protein-coding 11.78 0.5168
+50810 HDGFL3 HDGF like 3 protein-coding 8.994 1.415
+50813 COPS7A COP9 signalosome subunit 7A protein-coding 10.74 0.527
+50814 NSDHL NAD(P) dependent steroid dehydrogenase-like protein-coding 9.313 0.6719
+5082 PDCL phosducin like protein-coding 8.828 0.5183
50832 TAS2R4 taste 2 receptor member 4 protein-coding 1.582 1.068
50840 TAS2R14 taste 2 receptor member 14 protein-coding 2.767 1.033
-50846 DHH desert hedgehog protein-coding 2.397 1.328
+50846 DHH desert hedgehog protein-coding 2.398 1.328
50848 F11R F11 receptor protein-coding 11.91 1.662
-50852 TRAT1 T cell receptor associated transmembrane adaptor 1 protein-coding 3.254 2.067
-50853 VILL villin like protein-coding 7.513 1.749
-50854 C6orf48 chromosome 6 open reading frame 48 protein-coding 10.77 0.9136
-50855 PARD6A par-6 family cell polarity regulator alpha protein-coding 6.602 1.305
-50856 CLEC4A C-type lectin domain family 4 member A protein-coding 5.299 1.278
-50859 SPOCK3 SPARC (osteonectin), cwcv and kazal like domains proteoglycan 3 protein-coding 3.229 3.481
-50861 STMN3 stathmin 3 protein-coding 9.575 1.873
-50862 RNF141 ring finger protein 141 protein-coding 10.04 0.8125
-50865 HEBP1 heme binding protein 1 protein-coding 9.755 0.9435
+50852 TRAT1 T cell receptor associated transmembrane adaptor 1 protein-coding 3.256 2.068
+50853 VILL villin like protein-coding 7.515 1.749
+50854 C6orf48 chromosome 6 open reading frame 48 protein-coding 10.77 0.9135
+50855 PARD6A par-6 family cell polarity regulator alpha protein-coding 6.602 1.304
+50856 CLEC4A C-type lectin domain family 4 member A protein-coding 5.3 1.279
+50859 SPOCK3 SPARC (osteonectin), cwcv and kazal like domains proteoglycan 3 protein-coding 3.231 3.483
+50861 STMN3 stathmin 3 protein-coding 9.575 1.872
+50862 RNF141 ring finger protein 141 protein-coding 10.04 0.8123
+50865 HEBP1 heme binding protein 1 protein-coding 9.755 0.9433
5087 PBX1 PBX homeobox 1 protein-coding 10.36 1.726
-5089 PBX2 PBX homeobox 2 protein-coding 10.31 0.5999
+5089 PBX2 PBX homeobox 2 protein-coding 10.31 0.5998
509 ATP5F1C ATP synthase F1 subunit gamma protein-coding 11.68 0.6102
-5090 PBX3 PBX homeobox 3 protein-coding 8.76 1.398
+5090 PBX3 PBX homeobox 3 protein-coding 8.762 1.398
5091 PC pyruvate carboxylase protein-coding 9.35 1.402
5092 PCBD1 pterin-4 alpha-carbinolamine dehydratase 1 protein-coding 10.23 1.069
-5093 PCBP1 poly(rC) binding protein 1 protein-coding 12.89 0.408
-50937 CDON cell adhesion associated, oncogene regulated protein-coding 7.652 1.632
-50939 IMPG2 interphotoreceptor matrix proteoglycan 2 protein-coding 1.594 1.057
-5094 PCBP2 poly(rC) binding protein 2 protein-coding 13.25 0.4446
-50940 PDE11A phosphodiesterase 11A protein-coding 4.303 2.361
-50943 FOXP3 forkhead box P3 protein-coding 5.218 1.734
-50944 SHANK1 SH3 and multiple ankyrin repeat domains 1 protein-coding 2.977 2.325
+5093 PCBP1 poly(rC) binding protein 1 protein-coding 12.89 0.4079
+50937 CDON cell adhesion associated, oncogene regulated protein-coding 7.653 1.632
+50939 IMPG2 interphotoreceptor matrix proteoglycan 2 protein-coding 1.595 1.057
+5094 PCBP2 poly(rC) binding protein 2 protein-coding 13.25 0.4445
+50940 PDE11A phosphodiesterase 11A protein-coding 4.305 2.363
+50943 FOXP3 forkhead box P3 protein-coding 5.219 1.734
+50944 SHANK1 SH3 and multiple ankyrin repeat domains 1 protein-coding 2.977 2.324
5095 PCCA propionyl-CoA carboxylase alpha subunit protein-coding 8.6 1.116
5096 PCCB propionyl-CoA carboxylase beta subunit protein-coding 10.4 0.6335
5097 PCDH1 protocadherin 1 protein-coding 10.04 1.447
5098 PCDHGC3 protocadherin gamma subfamily C, 3 protein-coding 11.16 1.605
-50999 TMED5 transmembrane p24 trafficking protein 5 protein-coding 10.41 0.7944
-51 ACOX1 acyl-CoA oxidase 1 protein-coding 10.75 0.7582
-51000 SLC35B3 solute carrier family 35 member B3 protein-coding 8.912 0.595
-51001 MTERF3 mitochondrial transcription termination factor 3 protein-coding 8.513 0.6793
-51002 TPRKB TP53RK binding protein protein-coding 8.394 0.6419
-51003 MED31 mediator complex subunit 31 protein-coding 7.102 0.6057
-51004 COQ6 coenzyme Q6, monooxygenase protein-coding 8.425 0.5709
-51005 AMDHD2 amidohydrolase domain containing 2 protein-coding 8.067 0.9065
-51006 SLC35C2 solute carrier family 35 member C2 protein-coding 10.38 0.5311
-51008 ASCC1 activating signal cointegrator 1 complex subunit 1 protein-coding 8.913 0.5743
-51009 DERL2 derlin 2 protein-coding 9.247 0.5913
-5101 PCDH9 protocadherin 9 protein-coding 4.382 2.706
-51010 EXOSC3 exosome component 3 protein-coding 8.377 0.7026
-51011 FAHD2A fumarylacetoacetate hydrolase domain containing 2A protein-coding 8.515 0.7739
-51012 PRELID3B PRELI domain containing 3B protein-coding 10.57 0.8001
-51013 EXOSC1 exosome component 1 protein-coding 8.658 0.6303
-51014 TMED7 transmembrane p24 trafficking protein 7 protein-coding 11.11 0.6996
-51015 ISOC1 isochorismatase domain containing 1 protein-coding 9.072 0.8689
+50999 TMED5 transmembrane p24 trafficking protein 5 protein-coding 10.41 0.7941
+51 ACOX1 acyl-CoA oxidase 1 protein-coding 10.75 0.7579
+51000 SLC35B3 solute carrier family 35 member B3 protein-coding 8.912 0.5949
+51001 MTERF3 mitochondrial transcription termination factor 3 protein-coding 8.513 0.6794
+51002 TPRKB TP53RK binding protein protein-coding 8.393 0.642
+51003 MED31 mediator complex subunit 31 protein-coding 7.102 0.6056
+51004 COQ6 coenzyme Q6, monooxygenase protein-coding 8.425 0.5707
+51005 AMDHD2 amidohydrolase domain containing 2 protein-coding 8.067 0.9063
+51006 SLC35C2 solute carrier family 35 member C2 protein-coding 10.38 0.531
+51008 ASCC1 activating signal cointegrator 1 complex subunit 1 protein-coding 8.913 0.5741
+51009 DERL2 derlin 2 protein-coding 9.247 0.5912
+5101 PCDH9 protocadherin 9 protein-coding 4.385 2.706
+51010 EXOSC3 exosome component 3 protein-coding 8.377 0.7024
+51011 FAHD2A fumarylacetoacetate hydrolase domain containing 2A protein-coding 8.514 0.7737
+51012 PRELID3B PRELI domain containing 3B protein-coding 10.56 0.8
+51013 EXOSC1 exosome component 1 protein-coding 8.658 0.6302
+51014 TMED7 transmembrane p24 trafficking protein 7 protein-coding 11.11 0.6995
+51015 ISOC1 isochorismatase domain containing 1 protein-coding 9.072 0.8687
51016 EMC9 ER membrane protein complex subunit 9 protein-coding 7.638 0.857
-51018 RRP15 ribosomal RNA processing 15 homolog protein-coding 8.974 0.5504
-51019 WASHC3 WASH complex subunit 3 protein-coding 8.72 0.609
-51020 HDDC2 HD domain containing 2 protein-coding 9.742 0.7139
-51021 MRPS16 mitochondrial ribosomal protein S16 protein-coding 10.81 0.5057
-51022 GLRX2 glutaredoxin 2 protein-coding 7.055 0.8697
-51023 MRPS18C mitochondrial ribosomal protein S18C protein-coding 8.27 0.4963
-51024 FIS1 fission, mitochondrial 1 protein-coding 10.81 0.7551
-51025 PAM16 presequence translocase associated motor 16 protein-coding 7.904 0.9047
-51026 GOLT1B golgi transport 1B protein-coding 9.897 0.6836
-51027 BOLA1 bolA family member 1 protein-coding 8.066 0.8159
-51028 VPS36 vacuolar protein sorting 36 homolog protein-coding 9.891 0.636
-51029 DESI2 desumoylating isopeptidase 2 protein-coding 10.17 0.7048
-51030 TVP23B trans-golgi network vesicle protein 23 homolog B protein-coding 9.225 0.7105
-51031 GLOD4 glyoxalase domain containing 4 protein-coding 10.32 0.4676
-51035 UBXN1 UBX domain protein 1 protein-coding 11 0.6761
-51042 ZNF593 zinc finger protein 593 protein-coding 8.765 0.9792
-51043 ZBTB7B zinc finger and BTB domain containing 7B protein-coding 10.38 0.9541
-51050 PI15 peptidase inhibitor 15 protein-coding 5.719 2.771
-51053 GMNN geminin, DNA replication inhibitor protein-coding 8.649 1.03
-51054 PLEKHA8P1 pleckstrin homology domain containing A8 pseudogene 1 pseudo 6.02 0.7437
-51056 LAP3 leucine aminopeptidase 3 protein-coding 10.93 0.8612
-51057 WDPCP WD repeat containing planar cell polarity effector protein-coding 5.906 0.8731
-51058 ZNF691 zinc finger protein 691 protein-coding 7.762 0.6257
-5106 PCK2 phosphoenolpyruvate carboxykinase 2, mitochondrial protein-coding 9.734 1.25
+51018 RRP15 ribosomal RNA processing 15 homolog protein-coding 8.974 0.5505
+51019 WASHC3 WASH complex subunit 3 protein-coding 8.72 0.6088
+51020 HDDC2 HD domain containing 2 protein-coding 9.742 0.7137
+51021 MRPS16 mitochondrial ribosomal protein S16 protein-coding 10.81 0.5058
+51022 GLRX2 glutaredoxin 2 protein-coding 7.054 0.8697
+51023 MRPS18C mitochondrial ribosomal protein S18C protein-coding 8.27 0.4962
+51024 FIS1 fission, mitochondrial 1 protein-coding 10.81 0.7549
+51025 PAM16 presequence translocase associated motor 16 protein-coding 7.904 0.9048
+51026 GOLT1B golgi transport 1B protein-coding 9.897 0.6834
+51027 BOLA1 bolA family member 1 protein-coding 8.066 0.8156
+51028 VPS36 vacuolar protein sorting 36 homolog protein-coding 9.891 0.6359
+51029 DESI2 desumoylating isopeptidase 2 protein-coding 10.17 0.7046
+51030 TVP23B trans-golgi network vesicle protein 23 homolog B protein-coding 9.225 0.7104
+51031 GLOD4 glyoxalase domain containing 4 protein-coding 10.32 0.4674
+51035 UBXN1 UBX domain protein 1 protein-coding 11 0.6758
+51042 ZNF593 zinc finger protein 593 protein-coding 8.764 0.9789
+51043 ZBTB7B zinc finger and BTB domain containing 7B protein-coding 10.38 0.9537
+51050 PI15 peptidase inhibitor 15 protein-coding 5.721 2.771
+51053 GMNN geminin, DNA replication inhibitor protein-coding 8.649 1.031
+51054 PLEKHA8P1 pleckstrin homology domain containing A8 pseudogene 1 pseudo 6.02 0.7435
+51056 LAP3 leucine aminopeptidase 3 protein-coding 10.93 0.8611
+51057 WDPCP WD repeat containing planar cell polarity effector protein-coding 5.906 0.8728
+51058 ZNF691 zinc finger protein 691 protein-coding 7.762 0.6256
+5106 PCK2 phosphoenolpyruvate carboxykinase 2, mitochondrial protein-coding 9.733 1.25
51060 TXNDC12 thioredoxin domain containing 12 protein-coding 10.7 0.5404
-51061 TXNDC11 thioredoxin domain containing 11 protein-coding 10.38 0.7017
-51062 ATL1 atlastin GTPase 1 protein-coding 7.258 1.427
-51063 CALHM2 calcium homeostasis modulator family member 2 protein-coding 8.173 1.114
-51065 RPS27L ribosomal protein S27 like protein-coding 10.09 0.8656
-51066 SSUH2 ssu-2 homolog (C. elegans) protein-coding 2.862 1.826
-51067 YARS2 tyrosyl-tRNA synthetase 2 protein-coding 8.504 0.6687
-51068 NMD3 NMD3 ribosome export adaptor protein-coding 9.962 0.6489
+51061 TXNDC11 thioredoxin domain containing 11 protein-coding 10.39 0.7017
+51062 ATL1 atlastin GTPase 1 protein-coding 7.259 1.427
+51063 CALHM2 calcium homeostasis modulator family member 2 protein-coding 8.173 1.113
+51065 RPS27L ribosomal protein S27 like protein-coding 10.09 0.8653
+51066 SSUH2 ssu-2 homolog (C. elegans) protein-coding 2.863 1.827
+51067 YARS2 tyrosyl-tRNA synthetase 2 protein-coding 8.504 0.6686
+51068 NMD3 NMD3 ribosome export adaptor protein-coding 9.962 0.6487
51069 MRPL2 mitochondrial ribosomal protein L2 protein-coding 9.3 0.727
-51070 NOSIP nitric oxide synthase interacting protein protein-coding 9.834 0.7506
-51071 DERA deoxyribose-phosphate aldolase protein-coding 9.435 0.8027
-51072 MEMO1 mediator of cell motility 1 protein-coding 8.69 0.6709
-51073 MRPL4 mitochondrial ribosomal protein L4 protein-coding 10.15 0.7134
-51074 APIP APAF1 interacting protein protein-coding 8.486 0.6932
-51075 TMX2 thioredoxin related transmembrane protein 2 protein-coding 10.93 0.5211
-51076 CUTC cutC copper transporter protein-coding 8.05 0.5863
-51077 FCF1 FCF1, rRNA-processing protein protein-coding 9.524 0.5322
-51078 THAP4 THAP domain containing 4 protein-coding 10.17 0.5362
-51079 NDUFA13 NADH:ubiquinone oxidoreductase subunit A13 protein-coding 11.58 0.7991
-5108 PCM1 pericentriolar material 1 protein-coding 11.12 0.7451
-51081 MRPS7 mitochondrial ribosomal protein S7 protein-coding 10.34 0.5368
-51082 POLR1D RNA polymerase I and III subunit D protein-coding 10.69 0.7335
+51070 NOSIP nitric oxide synthase interacting protein protein-coding 9.834 0.7504
+51071 DERA deoxyribose-phosphate aldolase protein-coding 9.435 0.8025
+51072 MEMO1 mediator of cell motility 1 protein-coding 8.689 0.6711
+51073 MRPL4 mitochondrial ribosomal protein L4 protein-coding 10.15 0.7133
+51074 APIP APAF1 interacting protein protein-coding 8.486 0.693
+51075 TMX2 thioredoxin related transmembrane protein 2 protein-coding 10.93 0.5212
+51076 CUTC cutC copper transporter protein-coding 8.05 0.5861
+51077 FCF1 FCF1, rRNA-processing protein protein-coding 9.524 0.532
+51078 THAP4 THAP domain containing 4 protein-coding 10.16 0.5361
+51079 NDUFA13 NADH:ubiquinone oxidoreductase subunit A13 protein-coding 11.58 0.799
+5108 PCM1 pericentriolar material 1 protein-coding 11.12 0.7449
+51081 MRPS7 mitochondrial ribosomal protein S7 protein-coding 10.34 0.5369
+51082 POLR1D RNA polymerase I and III subunit D protein-coding 10.69 0.7331
51083 GAL galanin and GMAP prepropeptide protein-coding 3.354 2.859
51084 CRYL1 crystallin lambda 1 protein-coding 9.503 1.441
-51085 MLXIPL MLX interacting protein like protein-coding 6.109 3.013
-51086 TNNI3K TNNI3 interacting kinase protein-coding 3.154 1.77
-51087 YBX2 Y-box binding protein 2 protein-coding 4.662 2.582
+51085 MLXIPL MLX interacting protein like protein-coding 6.109 3.012
+51086 TNNI3K TNNI3 interacting kinase protein-coding 3.155 1.769
+51087 YBX2 Y-box binding protein 2 protein-coding 4.66 2.581
51088 KLHL5 kelch like family member 5 protein-coding 9.308 1.142
-51090 PLLP plasmolipin protein-coding 7.937 1.887
-51091 SEPSECS Sep (O-phosphoserine) tRNA:Sec (selenocysteine) tRNA synthase protein-coding 8.203 0.81
-51092 SIDT2 SID1 transmembrane family member 2 protein-coding 9.93 0.7578
-51093 RRNAD1 ribosomal RNA adenine dimethylase domain containing 1 protein-coding 9.172 0.6009
-51094 ADIPOR1 adiponectin receptor 1 protein-coding 11.46 0.5786
-51095 TRNT1 tRNA nucleotidyl transferase 1 protein-coding 8.202 0.6404
-51096 UTP18 UTP18, small subunit processome component protein-coding 9.579 0.5551
-51097 SCCPDH saccharopine dehydrogenase (putative) protein-coding 10.27 1.176
-51098 IFT52 intraflagellar transport 52 protein-coding 9.226 0.6153
-51099 ABHD5 abhydrolase domain containing 5 protein-coding 9.106 0.6958
+51090 PLLP plasmolipin protein-coding 7.939 1.886
+51091 SEPSECS Sep (O-phosphoserine) tRNA:Sec (selenocysteine) tRNA synthase protein-coding 8.204 0.8098
+51092 SIDT2 SID1 transmembrane family member 2 protein-coding 9.931 0.7586
+51093 RRNAD1 ribosomal RNA adenine dimethylase domain containing 1 protein-coding 9.172 0.6008
+51094 ADIPOR1 adiponectin receptor 1 protein-coding 11.46 0.5785
+51095 TRNT1 tRNA nucleotidyl transferase 1 protein-coding 8.203 0.6403
+51096 UTP18 UTP18, small subunit processome component protein-coding 9.578 0.5551
+51097 SCCPDH saccharopine dehydrogenase (putative) protein-coding 10.27 1.175
+51098 IFT52 intraflagellar transport 52 protein-coding 9.226 0.6151
+51099 ABHD5 abhydrolase domain containing 5 protein-coding 9.106 0.6956
5110 PCMT1 protein-L-isoaspartate (D-aspartate) O-methyltransferase protein-coding 10.4 0.5784
-51100 SH3GLB1 SH3 domain containing GRB2 like, endophilin B1 protein-coding 11.11 0.5523
-51101 ZC2HC1A zinc finger C2HC-type containing 1A protein-coding 7.733 1.237
-51102 MECR mitochondrial trans-2-enoyl-CoA reductase protein-coding 8.595 0.532
-51103 NDUFAF1 NADH:ubiquinone oxidoreductase complex assembly factor 1 protein-coding 8.321 0.5962
-51104 ABHD17B abhydrolase domain containing 17B protein-coding 8.551 0.6794
-51105 PHF20L1 PHD finger protein 20 like 1 protein-coding 9.835 0.6117
+51100 SH3GLB1 SH3 domain containing GRB2 like, endophilin B1 protein-coding 11.11 0.5522
+51101 ZC2HC1A zinc finger C2HC-type containing 1A protein-coding 7.734 1.236
+51102 MECR mitochondrial trans-2-enoyl-CoA reductase protein-coding 8.594 0.532
+51103 NDUFAF1 NADH:ubiquinone oxidoreductase complex assembly factor 1 protein-coding 8.321 0.596
+51104 ABHD17B abhydrolase domain containing 17B protein-coding 8.551 0.6792
+51105 PHF20L1 PHD finger protein 20 like 1 protein-coding 9.835 0.6115
51106 TFB1M transcription factor B1, mitochondrial protein-coding 7.51 0.6554
-51107 APH1A aph-1 homolog A, gamma-secretase subunit protein-coding 12.19 0.5193
-51108 METTL9 methyltransferase like 9 protein-coding 11.07 0.7388
-51109 RDH11 retinol dehydrogenase 11 protein-coding 11.09 1.18
-5111 PCNA proliferating cell nuclear antigen protein-coding 11.04 0.9742
-51110 LACTB2 lactamase beta 2 protein-coding 8.479 1.131
-51111 KMT5B lysine methyltransferase 5B protein-coding 9.858 0.5859
-51112 TRAPPC12 trafficking protein particle complex 12 protein-coding 9.646 0.5351
-51114 ZDHHC9 zinc finger DHHC-type containing 9 protein-coding 10.48 0.9656
-51115 RMDN1 regulator of microtubule dynamics 1 protein-coding 9.521 0.539
-51116 MRPS2 mitochondrial ribosomal protein S2 protein-coding 9.98 0.6458
-51117 COQ4 coenzyme Q4 protein-coding 9.789 0.723
+51107 APH1A aph-1 homolog A, gamma-secretase subunit protein-coding 12.19 0.5191
+51108 METTL9 methyltransferase like 9 protein-coding 11.07 0.7386
+51109 RDH11 retinol dehydrogenase 11 protein-coding 11.09 1.182
+5111 PCNA proliferating cell nuclear antigen protein-coding 11.04 0.9744
+51110 LACTB2 lactamase beta 2 protein-coding 8.478 1.131
+51111 KMT5B lysine methyltransferase 5B protein-coding 9.858 0.5858
+51112 TRAPPC12 trafficking protein particle complex 12 protein-coding 9.646 0.5349
+51114 ZDHHC9 zinc finger DHHC-type containing 9 protein-coding 10.48 0.9655
+51115 RMDN1 regulator of microtubule dynamics 1 protein-coding 9.521 0.5389
+51116 MRPS2 mitochondrial ribosomal protein S2 protein-coding 9.98 0.6457
+51117 COQ4 coenzyme Q4 protein-coding 9.789 0.7228
51118 UTP11 UTP11, small subunit processome component protein-coding 9.31 0.5448
-51119 SBDS SBDS, ribosome maturation factor protein-coding 10.93 0.6553
-51121 RPL26L1 ribosomal protein L26 like 1 protein-coding 8.154 0.6169
-51122 COMMD2 COMM domain containing 2 protein-coding 9.466 0.6492
-51123 ZNF706 zinc finger protein 706 protein-coding 10.42 0.6128
-51124 IER3IP1 immediate early response 3 interacting protein 1 protein-coding 10.1 0.6319
-51125 GOLGA7 golgin A7 protein-coding 10.13 0.6034
+51119 SBDS SBDS, ribosome maturation factor protein-coding 10.93 0.6552
+51121 RPL26L1 ribosomal protein L26 like 1 protein-coding 8.154 0.6172
+51122 COMMD2 COMM domain containing 2 protein-coding 9.465 0.649
+51123 ZNF706 zinc finger protein 706 protein-coding 10.42 0.6127
+51124 IER3IP1 immediate early response 3 interacting protein 1 protein-coding 10.1 0.632
+51125 GOLGA7 golgin A7 protein-coding 10.13 0.6031
51126 NAA20 N(alpha)-acetyltransferase 20, NatB catalytic subunit protein-coding 10.28 0.6579
-51127 TRIM17 tripartite motif containing 17 protein-coding 4.227 2.15
-51128 SAR1B secretion associated Ras related GTPase 1B protein-coding 9.131 0.7827
-51129 ANGPTL4 angiopoietin like 4 protein-coding 8.562 2.374
-51130 ASB3 ankyrin repeat and SOCS box containing 3 protein-coding 8.29 0.6629
-51131 PHF11 PHD finger protein 11 protein-coding 8.792 0.8115
-51132 RLIM ring finger protein, LIM domain interacting protein-coding 10.42 0.5478
-51133 KCTD3 potassium channel tetramerization domain containing 3 protein-coding 10.56 0.9675
+51127 TRIM17 tripartite motif containing 17 protein-coding 4.227 2.149
+51128 SAR1B secretion associated Ras related GTPase 1B protein-coding 9.131 0.7826
+51129 ANGPTL4 angiopoietin like 4 protein-coding 8.562 2.373
+51130 ASB3 ankyrin repeat and SOCS box containing 3 protein-coding 8.29 0.6627
+51131 PHF11 PHD finger protein 11 protein-coding 8.792 0.8114
+51132 RLIM ring finger protein, LIM domain interacting protein-coding 10.42 0.5475
+51133 KCTD3 potassium channel tetramerization domain containing 3 protein-coding 10.56 0.9673
51134 CEP83 centrosomal protein 83 protein-coding 7.68 0.7402
-51135 IRAK4 interleukin 1 receptor associated kinase 4 protein-coding 8.78 0.606
-51136 RNFT1 ring finger protein, transmembrane 1 protein-coding 7.978 0.8139
-51138 COPS4 COP9 signalosome subunit 4 protein-coding 9.533 0.5288
-51141 INSIG2 insulin induced gene 2 protein-coding 9.122 0.7484
+51135 IRAK4 interleukin 1 receptor associated kinase 4 protein-coding 8.781 0.6058
+51136 RNFT1 ring finger protein, transmembrane 1 protein-coding 7.978 0.8136
+51138 COPS4 COP9 signalosome subunit 4 protein-coding 9.533 0.5287
+51141 INSIG2 insulin induced gene 2 protein-coding 9.122 0.7481
51142 CHCHD2 coiled-coil-helix-coiled-coil-helix domain containing 2 protein-coding 12.16 0.6403
-51143 DYNC1LI1 dynein cytoplasmic 1 light intermediate chain 1 protein-coding 9.552 0.4935
-51144 HSD17B12 hydroxysteroid 17-beta dehydrogenase 12 protein-coding 10.68 0.7535
-51147 ING4 inhibitor of growth family member 4 protein-coding 9.233 0.7469
-51148 CERCAM cerebral endothelial cell adhesion molecule protein-coding 9.817 1.542
-51149 MRNIP MRN complex interacting protein protein-coding 7.36 1.144
-51150 SDF4 stromal cell derived factor 4 protein-coding 11.66 0.559
-51151 SLC45A2 solute carrier family 45 member 2 protein-coding 1.993 2.178
-51154 MRTO4 MRT4 homolog, ribosome maturation factor protein-coding 9.908 0.6908
+51143 DYNC1LI1 dynein cytoplasmic 1 light intermediate chain 1 protein-coding 9.552 0.4934
+51144 HSD17B12 hydroxysteroid 17-beta dehydrogenase 12 protein-coding 10.68 0.7532
+51147 ING4 inhibitor of growth family member 4 protein-coding 9.233 0.7466
+51148 CERCAM cerebral endothelial cell adhesion molecule protein-coding 9.818 1.542
+51149 MRNIP MRN complex interacting protein protein-coding 7.361 1.143
+51150 SDF4 stromal cell derived factor 4 protein-coding 11.66 0.5588
+51151 SLC45A2 solute carrier family 45 member 2 protein-coding 1.992 2.177
+51154 MRTO4 MRT4 homolog, ribosome maturation factor protein-coding 9.907 0.6911
51155 JPT1 Jupiter microtubule associated homolog 1 protein-coding 10.84 1.184
-51157 ZNF580 zinc finger protein 580 protein-coding 8.47 0.8631
-5116 PCNT pericentrin protein-coding 9.607 0.6981
-51160 VPS28 VPS28, ESCRT-I subunit protein-coding 11.08 0.7166
-51161 C3orf18 chromosome 3 open reading frame 18 protein-coding 6.979 1.451
-51162 EGFL7 EGF like domain multiple 7 protein-coding 8.954 1.346
-51163 DBR1 debranching RNA lariats 1 protein-coding 8.537 0.5635
-51164 DCTN4 dynactin subunit 4 protein-coding 10.65 0.5934
-51166 AADAT aminoadipate aminotransferase protein-coding 6.51 1.651
-51167 CYB5R4 cytochrome b5 reductase 4 protein-coding 8.158 0.8378
-51168 MYO15A myosin XVA protein-coding 3.809 1.392
-51170 HSD17B11 hydroxysteroid 17-beta dehydrogenase 11 protein-coding 9.729 1.307
+51157 ZNF580 zinc finger protein 580 protein-coding 8.471 0.863
+5116 PCNT pericentrin protein-coding 9.607 0.6978
+51160 VPS28 VPS28, ESCRT-I subunit protein-coding 11.08 0.7164
+51161 C3orf18 chromosome 3 open reading frame 18 protein-coding 6.98 1.451
+51162 EGFL7 EGF like domain multiple 7 protein-coding 8.954 1.345
+51163 DBR1 debranching RNA lariats 1 protein-coding 8.537 0.5633
+51164 DCTN4 dynactin subunit 4 protein-coding 10.65 0.5932
+51166 AADAT aminoadipate aminotransferase protein-coding 6.511 1.651
+51167 CYB5R4 cytochrome b5 reductase 4 protein-coding 8.158 0.8375
+51168 MYO15A myosin XVA protein-coding 3.811 1.392
+51170 HSD17B11 hydroxysteroid 17-beta dehydrogenase 11 protein-coding 9.73 1.307
51171 HSD17B14 hydroxysteroid 17-beta dehydrogenase 14 protein-coding 7.44 1.833
-51172 NAGPA N-acetylglucosamine-1-phosphodiester alpha-N-acetylglucosaminidase protein-coding 8.294 0.6694
-51174 TUBD1 tubulin delta 1 protein-coding 7.495 0.7079
+51172 NAGPA N-acetylglucosamine-1-phosphodiester alpha-N-acetylglucosaminidase protein-coding 8.294 0.6693
+51174 TUBD1 tubulin delta 1 protein-coding 7.495 0.7077
51175 TUBE1 tubulin epsilon 1 protein-coding 7.502 0.7059
51176 LEF1 lymphoid enhancer binding factor 1 protein-coding 7.751 1.822
51177 PLEKHO1 pleckstrin homology domain containing O1 protein-coding 9.652 1.166
-5118 PCOLCE procollagen C-endopeptidase enhancer protein-coding 9.722 1.791
-51181 DCXR dicarbonyl and L-xylulose reductase protein-coding 10.1 1.327
-51182 HSPA14 heat shock protein family A (Hsp70) member 14 protein-coding 8.919 0.6283
-51184 GPN3 GPN-loop GTPase 3 protein-coding 8.703 0.5159
-51185 CRBN cereblon protein-coding 9.121 0.6586
-51186 TCEAL9 transcription elongation factor A like 9 protein-coding 9.993 0.9972
-51187 RSL24D1 ribosomal L24 domain containing 1 protein-coding 10.82 0.5512
-51188 SS18L2 SS18 like 2 protein-coding 8.358 0.7038
-5119 CHMP1A charged multivesicular body protein 1A protein-coding 11.2 0.5498
-51191 HERC5 HECT and RLD domain containing E3 ubiquitin protein ligase 5 protein-coding 7.709 1.507
-51192 CKLF chemokine like factor protein-coding 8.475 0.8454
-51193 ZNF639 zinc finger protein 639 protein-coding 9.241 0.6501
-51194 IPO11 importin 11 protein-coding 8.919 0.5825
-51195 RAPGEFL1 Rap guanine nucleotide exchange factor like 1 protein-coding 8.443 2.033
-51196 PLCE1 phospholipase C epsilon 1 protein-coding 7.656 1.732
-51199 NIN ninein protein-coding 9.85 0.8178
-51201 ZDHHC2 zinc finger DHHC-type containing 2 protein-coding 8.678 1.603
-51202 DDX47 DEAD-box helicase 47 protein-coding 10.12 0.5334
-51203 NUSAP1 nucleolar and spindle associated protein 1 protein-coding 9.065 1.689
-51204 TACO1 translational activator of cytochrome c oxidase I protein-coding 8.944 0.6711
-51205 ACP6 acid phosphatase 6, lysophosphatidic protein-coding 8.198 1.1
+5118 PCOLCE procollagen C-endopeptidase enhancer protein-coding 9.723 1.79
+51181 DCXR dicarbonyl and L-xylulose reductase protein-coding 10.09 1.327
+51182 HSPA14 heat shock protein family A (Hsp70) member 14 protein-coding 8.919 0.6281
+51184 GPN3 GPN-loop GTPase 3 protein-coding 8.702 0.5158
+51185 CRBN cereblon protein-coding 9.121 0.6584
+51186 TCEAL9 transcription elongation factor A like 9 protein-coding 9.993 0.997
+51187 RSL24D1 ribosomal L24 domain containing 1 protein-coding 10.82 0.551
+51188 SS18L2 SS18 like 2 protein-coding 8.358 0.7037
+5119 CHMP1A charged multivesicular body protein 1A protein-coding 11.2 0.5496
+51191 HERC5 HECT and RLD domain containing E3 ubiquitin protein ligase 5 protein-coding 7.71 1.507
+51192 CKLF chemokine like factor protein-coding 8.474 0.8454
+51193 ZNF639 zinc finger protein 639 protein-coding 9.241 0.6499
+51194 IPO11 importin 11 protein-coding 8.918 0.5823
+51195 RAPGEFL1 Rap guanine nucleotide exchange factor like 1 protein-coding 8.443 2.032
+51196 PLCE1 phospholipase C epsilon 1 protein-coding 7.657 1.732
+51199 NIN ninein protein-coding 9.85 0.8179
+51201 ZDHHC2 zinc finger DHHC-type containing 2 protein-coding 8.68 1.602
+51202 DDX47 DEAD-box helicase 47 protein-coding 10.12 0.5333
+51203 NUSAP1 nucleolar and spindle associated protein 1 protein-coding 9.063 1.69
+51204 TACO1 translational activator of cytochrome c oxidase I protein-coding 8.944 0.6712
+51205 ACP6 acid phosphatase 6, lysophosphatidic protein-coding 8.197 1.1
51206 GP6 glycoprotein VI platelet protein-coding 2.08 1.302
-51208 CLDN18 claudin 18 protein-coding 2.887 3.564
-51209 RAB9B RAB9B, member RAS oncogene family protein-coding 2.863 1.679
-51218 GLRX5 glutaredoxin 5 protein-coding 9.852 0.5944
-5122 PCSK1 proprotein convertase subtilisin/kexin type 1 protein-coding 4.218 2.918
-51222 ZNF219 zinc finger protein 219 protein-coding 9.295 1.029
+51208 CLDN18 claudin 18 protein-coding 2.89 3.569
+51209 RAB9B RAB9B, member RAS oncogene family protein-coding 2.864 1.679
+51218 GLRX5 glutaredoxin 5 protein-coding 9.851 0.5944
+5122 PCSK1 proprotein convertase subtilisin/kexin type 1 protein-coding 4.22 2.919
+51222 ZNF219 zinc finger protein 219 protein-coding 9.296 1.029
51225 ABI3 ABI family member 3 protein-coding 7.65 1.156
-51226 COPZ2 coatomer protein complex subunit zeta 2 protein-coding 7.411 1.548
-51227 PIGP phosphatidylinositol glycan anchor biosynthesis class P protein-coding 8.063 0.7547
+51226 COPZ2 coatomer protein complex subunit zeta 2 protein-coding 7.411 1.547
+51227 PIGP phosphatidylinositol glycan anchor biosynthesis class P protein-coding 8.063 0.7544
51228 GLTP glycolipid transfer protein protein-coding 10.47 1.014
-51230 PHF20 PHD finger protein 20 protein-coding 9.937 0.5606
-51231 VRK3 vaccinia related kinase 3 protein-coding 9.378 0.5207
+51230 PHF20 PHD finger protein 20 protein-coding 9.937 0.5604
+51231 VRK3 vaccinia related kinase 3 protein-coding 9.378 0.5205
51232 CRIM1 cysteine rich transmembrane BMP regulator 1 protein-coding 10.55 1.258
51233 DRICH1 aspartate rich 1 protein-coding 1.295 1.109
-51234 EMC4 ER membrane protein complex subunit 4 protein-coding 10.51 0.4458
-51236 HGH1 HGH1 homolog protein-coding 9.484 0.7791
-51237 MZB1 marginal zone B and B1 cell specific protein protein-coding 6.141 3.236
-51239 ANKRD39 ankyrin repeat domain 39 protein-coding 7.645 0.7117
-51241 COX16 COX16, cytochrome c oxidase assembly homolog protein-coding 9.807 0.5537
-51244 CCDC174 coiled-coil domain containing 174 protein-coding 8.655 0.4736
-51246 SHISA5 shisa family member 5 protein-coding 12.03 0.6589
-51247 PAIP2 poly(A) binding protein interacting protein 2 protein-coding 10.74 0.5679
-51248 PDZD11 PDZ domain containing 11 protein-coding 9.717 0.5116
-51249 TMEM69 transmembrane protein 69 protein-coding 9.183 0.5654
-5125 PCSK5 proprotein convertase subtilisin/kexin type 5 protein-coding 6.296 1.829
+51234 EMC4 ER membrane protein complex subunit 4 protein-coding 10.51 0.4459
+51236 HGH1 HGH1 homolog protein-coding 9.483 0.7792
+51237 MZB1 marginal zone B and B1 cell specific protein protein-coding 6.141 3.235
+51239 ANKRD39 ankyrin repeat domain 39 protein-coding 7.644 0.7115
+51241 COX16 COX16, cytochrome c oxidase assembly homolog protein-coding 9.807 0.5538
+51244 CCDC174 coiled-coil domain containing 174 protein-coding 8.656 0.4735
+51246 SHISA5 shisa family member 5 protein-coding 12.03 0.6587
+51247 PAIP2 poly(A) binding protein interacting protein 2 protein-coding 10.74 0.5677
+51248 PDZD11 PDZ domain containing 11 protein-coding 9.717 0.5119
+51249 TMEM69 transmembrane protein 69 protein-coding 9.183 0.5653
+5125 PCSK5 proprotein convertase subtilisin/kexin type 5 protein-coding 6.297 1.828
51250 C6orf203 chromosome 6 open reading frame 203 protein-coding 7.895 0.6913
-51251 NT5C3A 5'-nucleotidase, cytosolic IIIA protein-coding 9.083 0.7151
+51251 NT5C3A 5'-nucleotidase, cytosolic IIIA protein-coding 9.083 0.715
51252 FAM178B family with sequence similarity 178 member B protein-coding 3.283 2.295
-51253 MRPL37 mitochondrial ribosomal protein L37 protein-coding 10.61 0.659
+51253 MRPL37 mitochondrial ribosomal protein L37 protein-coding 10.61 0.6591
51255 RNF181 ring finger protein 181 protein-coding 10.26 0.685
-51256 TBC1D7 TBC1 domain family member 7 protein-coding 8.365 0.8603
-51257 MARCH2 membrane associated ring-CH-type finger 2 protein-coding 9.198 0.766
-51258 MRPL51 mitochondrial ribosomal protein L51 protein-coding 10.82 0.6196
-51259 TMEM216 transmembrane protein 216 protein-coding 7.943 0.7798
-51260 PBDC1 polysaccharide biosynthesis domain containing 1 protein-coding 9.013 0.6222
-51263 MRPL30 mitochondrial ribosomal protein L30 protein-coding 9.735 0.4558
-51264 MRPL27 mitochondrial ribosomal protein L27 protein-coding 9.84 0.6799
-51265 CDKL3 cyclin dependent kinase like 3 protein-coding 4.82 1.011
-51267 CLEC1A C-type lectin domain family 1 member A protein-coding 5.383 1.361
-51268 PIPOX pipecolic acid and sarcosine oxidase protein-coding 5.47 2.571
-5127 CDK16 cyclin dependent kinase 16 protein-coding 11.13 0.621
-51271 UBAP1 ubiquitin associated protein 1 protein-coding 10.53 0.5217
-51272 BET1L Bet1 golgi vesicular membrane trafficking protein like protein-coding 10.72 0.531
-51274 KLF3 Kruppel like factor 3 protein-coding 10.65 0.7417
-51275 MAPKAPK5-AS1 MAPKAPK5 antisense RNA 1 ncRNA 8.393 0.5872
-51276 ZNF571 zinc finger protein 571 protein-coding 6.245 0.9287
-51277 DNAJC27 DnaJ heat shock protein family (Hsp40) member C27 protein-coding 6.968 0.7285
-51278 IER5 immediate early response 5 protein-coding 9.569 1.086
+51256 TBC1D7 TBC1 domain family member 7 protein-coding 8.364 0.8603
+51257 MARCH2 membrane associated ring-CH-type finger 2 protein-coding 9.198 0.7658
+51258 MRPL51 mitochondrial ribosomal protein L51 protein-coding 10.82 0.6199
+51259 TMEM216 transmembrane protein 216 protein-coding 7.943 0.7794
+51260 PBDC1 polysaccharide biosynthesis domain containing 1 protein-coding 9.013 0.6221
+51263 MRPL30 mitochondrial ribosomal protein L30 protein-coding 9.734 0.4558
+51264 MRPL27 mitochondrial ribosomal protein L27 protein-coding 9.839 0.68
+51265 CDKL3 cyclin dependent kinase like 3 protein-coding 4.82 1.01
+51267 CLEC1A C-type lectin domain family 1 member A protein-coding 5.384 1.361
+51268 PIPOX pipecolic acid and sarcosine oxidase protein-coding 5.469 2.57
+5127 CDK16 cyclin dependent kinase 16 protein-coding 11.13 0.6211
+51271 UBAP1 ubiquitin associated protein 1 protein-coding 10.53 0.5214
+51272 BET1L Bet1 golgi vesicular membrane trafficking protein like protein-coding 10.72 0.5309
+51274 KLF3 Kruppel like factor 3 protein-coding 10.65 0.7418
+51275 MAPKAPK5-AS1 MAPKAPK5 antisense RNA 1 ncRNA 8.393 0.587
+51276 ZNF571 zinc finger protein 571 protein-coding 6.246 0.9286
+51277 DNAJC27 DnaJ heat shock protein family (Hsp40) member C27 protein-coding 6.968 0.7284
+51278 IER5 immediate early response 5 protein-coding 9.568 1.086
51279 C1RL complement C1r subcomponent like protein-coding 9.687 1.232
-5128 CDK17 cyclin dependent kinase 17 protein-coding 9.214 0.6889
+5128 CDK17 cyclin dependent kinase 17 protein-coding 9.214 0.6888
51280 GOLM1 golgi membrane protein 1 protein-coding 11.75 1.484
-51281 ANKMY1 ankyrin repeat and MYND domain containing 1 protein-coding 7.64 0.6951
-51282 SCAND1 SCAN domain containing 1 protein-coding 10.01 0.9438
-51283 BFAR bifunctional apoptosis regulator protein-coding 10.41 0.5391
-51284 TLR7 toll like receptor 7 protein-coding 5.88 1.808
-51286 CEND1 cell cycle exit and neuronal differentiation 1 protein-coding 3.59 2.743
-51287 COA4 cytochrome c oxidase assembly factor 4 homolog protein-coding 9.885 0.6043
-5129 CDK18 cyclin dependent kinase 18 protein-coding 9.26 1.449
-51290 ERGIC2 ERGIC and golgi 2 protein-coding 9.484 0.6035
-51291 GMIP GEM interacting protein protein-coding 8.807 0.844
-51292 GMPR2 guanosine monophosphate reductase 2 protein-coding 10.21 0.5125
-51293 CD320 CD320 molecule protein-coding 9.718 1.106
+51281 ANKMY1 ankyrin repeat and MYND domain containing 1 protein-coding 7.64 0.6949
+51282 SCAND1 SCAN domain containing 1 protein-coding 10.01 0.9435
+51283 BFAR bifunctional apoptosis regulator protein-coding 10.41 0.539
+51284 TLR7 toll like receptor 7 protein-coding 5.881 1.808
+51286 CEND1 cell cycle exit and neuronal differentiation 1 protein-coding 3.592 2.742
+51287 COA4 cytochrome c oxidase assembly factor 4 homolog protein-coding 9.885 0.6045
+5129 CDK18 cyclin dependent kinase 18 protein-coding 9.259 1.448
+51290 ERGIC2 ERGIC and golgi 2 protein-coding 9.484 0.6034
+51291 GMIP GEM interacting protein protein-coding 8.808 0.8443
+51292 GMPR2 guanosine monophosphate reductase 2 protein-coding 10.21 0.5124
+51293 CD320 CD320 molecule protein-coding 9.717 1.106
51294 PCDH12 protocadherin 12 protein-coding 7.838 1.403
-51295 ECSIT ECSIT signalling integrator protein-coding 9.696 0.7387
+51295 ECSIT ECSIT signalling integrator protein-coding 9.696 0.7385
51296 SLC15A3 solute carrier family 15 member 3 protein-coding 8.97 1.306
-51299 NRN1 neuritin 1 protein-coding 7.06 2.003
+51299 NRN1 neuritin 1 protein-coding 7.06 2.002
513 ATP5F1D ATP synthase F1 subunit delta protein-coding 10.41 1.03
-5130 PCYT1A phosphate cytidylyltransferase 1, choline, alpha protein-coding 8.56 0.8005
-51300 TIMMDC1 translocase of inner mitochondrial membrane domain containing 1 protein-coding 10.35 0.5082
-51301 GCNT4 glucosaminyl (N-acetyl) transferase 4, core 2 protein-coding 4.363 1.752
-51303 FKBP11 FK506 binding protein 11 protein-coding 9.026 1.305
-51304 ZDHHC3 zinc finger DHHC-type containing 3 protein-coding 10.59 0.6074
+5130 PCYT1A phosphate cytidylyltransferase 1, choline, alpha protein-coding 8.56 0.8002
+51300 TIMMDC1 translocase of inner mitochondrial membrane domain containing 1 protein-coding 10.35 0.5081
+51301 GCNT4 glucosaminyl (N-acetyl) transferase 4, core 2 protein-coding 4.364 1.752
+51303 FKBP11 FK506 binding protein 11 protein-coding 9.027 1.304
+51304 ZDHHC3 zinc finger DHHC-type containing 3 protein-coding 10.59 0.6072
51305 KCNK9 potassium two pore domain channel subfamily K member 9 protein-coding 2.526 2.265
-51306 FAM13B family with sequence similarity 13 member B protein-coding 9.194 0.8149
-51307 FAM53C family with sequence similarity 53 member C protein-coding 9.934 0.565
-51308 REEP2 receptor accessory protein 2 protein-coding 6.058 2.526
-51309 ARMCX1 armadillo repeat containing, X-linked 1 protein-coding 8.005 1.639
-51310 SLC22A17 solute carrier family 22 member 17 protein-coding 8.654 2.272
-51311 TLR8 toll like receptor 8 protein-coding 4.987 1.902
+51306 FAM13B family with sequence similarity 13 member B protein-coding 9.195 0.8151
+51307 FAM53C family with sequence similarity 53 member C protein-coding 9.934 0.5648
+51308 REEP2 receptor accessory protein 2 protein-coding 6.059 2.526
+51309 ARMCX1 armadillo repeat containing, X-linked 1 protein-coding 8.007 1.639
+51310 SLC22A17 solute carrier family 22 member 17 protein-coding 8.656 2.272
+51311 TLR8 toll like receptor 8 protein-coding 4.988 1.903
51312 SLC25A37 solute carrier family 25 member 37 protein-coding 9.001 1.017
-51313 FAM198B family with sequence similarity 198 member B protein-coding 9.767 1.703
-51314 NME8 NME/NM23 family member 8 protein-coding 1.611 1.258
-51315 KRCC1 lysine rich coiled-coil 1 protein-coding 9.343 0.7802
-51316 PLAC8 placenta specific 8 protein-coding 5.647 2.639
-51317 PHF21A PHD finger protein 21A protein-coding 9.605 0.6404
-51318 MRPL35 mitochondrial ribosomal protein L35 protein-coding 9.654 0.4579
-51319 RSRC1 arginine and serine rich coiled-coil 1 protein-coding 7.668 0.9159
-51320 MEX3C mex-3 RNA binding family member C protein-coding 9.659 0.7115
-51321 AMZ2 archaelysin family metallopeptidase 2 protein-coding 10.33 0.5561
-51322 WAC WW domain containing adaptor with coiled-coil protein-coding 11.33 0.4547
+51313 FAM198B family with sequence similarity 198 member B protein-coding 9.767 1.702
+51314 NME8 NME/NM23 family member 8 protein-coding 1.612 1.258
+51315 KRCC1 lysine rich coiled-coil 1 protein-coding 9.343 0.7799
+51316 PLAC8 placenta specific 8 protein-coding 5.648 2.639
+51317 PHF21A PHD finger protein 21A protein-coding 9.605 0.6403
+51318 MRPL35 mitochondrial ribosomal protein L35 protein-coding 9.654 0.458
+51319 RSRC1 arginine and serine rich coiled-coil 1 protein-coding 7.668 0.9156
+51320 MEX3C mex-3 RNA binding family member C protein-coding 9.659 0.7112
+51321 AMZ2 archaelysin family metallopeptidase 2 protein-coding 10.33 0.556
+51322 WAC WW domain containing adaptor with coiled-coil protein-coding 11.33 0.4545
51324 SPG21 SPG21, maspardin protein-coding 10.95 0.4334
51326 ARL17A ADP ribosylation factor like GTPase 17A protein-coding 6.176 0.7377
-51329 ARL6IP4 ADP ribosylation factor like GTPase 6 interacting protein 4 protein-coding 11.26 0.7639
-5133 PDCD1 programmed cell death 1 protein-coding 4.654 2.034
-51330 TNFRSF12A TNF receptor superfamily member 12A protein-coding 9.829 1.779
-51332 SPTBN5 spectrin beta, non-erythrocytic 5 protein-coding 5.88 1.637
-51333 ZNF771 zinc finger protein 771 protein-coding 6.164 0.9571
-51334 PRR16 proline rich 16 protein-coding 5.08 1.867
+51329 ARL6IP4 ADP ribosylation factor like GTPase 6 interacting protein 4 protein-coding 11.26 0.7635
+5133 PDCD1 programmed cell death 1 protein-coding 4.655 2.034
+51330 TNFRSF12A TNF receptor superfamily member 12A protein-coding 9.827 1.78
+51332 SPTBN5 spectrin beta, non-erythrocytic 5 protein-coding 5.881 1.637
+51333 ZNF771 zinc finger protein 771 protein-coding 6.164 0.9569
+51334 PRR16 proline rich 16 protein-coding 5.081 1.867
51335 NGRN neugrin, neurite outgrowth associated protein-coding 11.55 0.6448
-51337 THEM6 thioesterase superfamily member 6 protein-coding 9.78 0.97
-51338 MS4A4A membrane spanning 4-domains A4A protein-coding 7.166 1.632
-51339 DACT1 dishevelled binding antagonist of beta catenin 1 protein-coding 7.186 1.693
-5134 PDCD2 programmed cell death 2 protein-coding 9.459 0.5453
-51340 CRNKL1 crooked neck pre-mRNA splicing factor 1 protein-coding 9.711 0.5222
-51341 ZBTB7A zinc finger and BTB domain containing 7A protein-coding 9.789 0.6259
-51343 FZR1 fizzy and cell division cycle 20 related 1 protein-coding 10.12 0.5462
-51347 TAOK3 TAO kinase 3 protein-coding 9.885 0.8425
-51348 KLRF1 killer cell lectin like receptor F1 protein-coding 2.518 1.53
+51337 THEM6 thioesterase superfamily member 6 protein-coding 9.779 0.9699
+51338 MS4A4A membrane spanning 4-domains A4A protein-coding 7.167 1.632
+51339 DACT1 dishevelled binding antagonist of beta catenin 1 protein-coding 7.187 1.693
+5134 PDCD2 programmed cell death 2 protein-coding 9.458 0.5452
+51340 CRNKL1 crooked neck pre-mRNA splicing factor 1 protein-coding 9.711 0.5221
+51341 ZBTB7A zinc finger and BTB domain containing 7A protein-coding 9.789 0.6257
+51343 FZR1 fizzy and cell division cycle 20 related 1 protein-coding 10.12 0.5461
+51347 TAOK3 TAO kinase 3 protein-coding 9.886 0.8422
+51348 KLRF1 killer cell lectin like receptor F1 protein-coding 2.519 1.53
51351 ZNF117 zinc finger protein 117 protein-coding 9.296 1.296
51352 WT1-AS WT1 antisense RNA ncRNA 1.615 1.965
-5136 PDE1A phosphodiesterase 1A protein-coding 5.844 2.217
-51360 MBTPS2 membrane bound transcription factor peptidase, site 2 protein-coding 9.039 0.6935
-51361 HOOK1 hook microtubule tethering protein 1 protein-coding 8.781 2.207
-51362 CDC40 cell division cycle 40 protein-coding 9.142 0.565
-51363 CHST15 carbohydrate sulfotransferase 15 protein-coding 9.437 1.466
-51364 ZMYND10 zinc finger MYND-type containing 10 protein-coding 4.901 2.501
-51365 PLA1A phospholipase A1 member A protein-coding 6.207 2.457
-51366 UBR5 ubiquitin protein ligase E3 component n-recognin 5 protein-coding 11.06 0.7236
-51367 POP5 POP5 homolog, ribonuclease P/MRP subunit protein-coding 8.652 0.6589
-51368 TEX264 testis expressed 264 protein-coding 10.3 0.7785
-5137 PDE1C phosphodiesterase 1C protein-coding 3.41 2.277
-51371 POMP proteasome maturation protein protein-coding 10.82 0.6085
-51372 TMA7 translation machinery associated 7 homolog protein-coding 10.31 0.8744
-51373 MRPS17 mitochondrial ribosomal protein S17 protein-coding 8.236 0.8302
-51374 ATRAID all-trans retinoic acid induced differentiation factor protein-coding 11.1 0.5765
+5136 PDE1A phosphodiesterase 1A protein-coding 5.846 2.217
+51360 MBTPS2 membrane bound transcription factor peptidase, site 2 protein-coding 9.039 0.6934
+51361 HOOK1 hook microtubule tethering protein 1 protein-coding 8.781 2.206
+51362 CDC40 cell division cycle 40 protein-coding 9.143 0.5648
+51363 CHST15 carbohydrate sulfotransferase 15 protein-coding 9.437 1.465
+51364 ZMYND10 zinc finger MYND-type containing 10 protein-coding 4.901 2.5
+51365 PLA1A phospholipase A1 member A protein-coding 6.208 2.456
+51366 UBR5 ubiquitin protein ligase E3 component n-recognin 5 protein-coding 11.06 0.7233
+51367 POP5 POP5 homolog, ribonuclease P/MRP subunit protein-coding 8.651 0.659
+51368 TEX264 testis expressed 264 protein-coding 10.3 0.7784
+5137 PDE1C phosphodiesterase 1C protein-coding 3.412 2.277
+51371 POMP proteasome maturation protein protein-coding 10.82 0.6087
+51372 TMA7 translation machinery associated 7 homolog protein-coding 10.31 0.8742
+51373 MRPS17 mitochondrial ribosomal protein S17 protein-coding 8.235 0.8305
+51374 ATRAID all-trans retinoic acid induced differentiation factor protein-coding 11.1 0.5763
51375 SNX7 sorting nexin 7 protein-coding 8.632 1.058
-51377 UCHL5 ubiquitin C-terminal hydrolase L5 protein-coding 8.746 0.7964
+51377 UCHL5 ubiquitin C-terminal hydrolase L5 protein-coding 8.746 0.7962
51379 CRLF3 cytokine receptor like factor 3 protein-coding 8.237 0.799
-5138 PDE2A phosphodiesterase 2A protein-coding 7.074 1.859
+5138 PDE2A phosphodiesterase 2A protein-coding 7.075 1.859
51380 CSAD cysteine sulfinic acid decarboxylase protein-coding 8.117 1.15
-51382 ATP6V1D ATPase H+ transporting V1 subunit D protein-coding 10.37 0.6124
-51384 WNT16 Wnt family member 16 protein-coding 2.064 1.734
-51385 ZNF589 zinc finger protein 589 protein-coding 8.219 0.963
-51386 EIF3L eukaryotic translation initiation factor 3 subunit L protein-coding 12.64 0.6399
-51388 NIP7 NIP7, nucleolar pre-rRNA processing protein protein-coding 9.18 0.7038
-51389 RWDD1 RWD domain containing 1 protein-coding 9.717 0.552
-5139 PDE3A phosphodiesterase 3A protein-coding 5.47 2.164
-51390 AIG1 androgen induced 1 protein-coding 9.435 0.9856
-51393 TRPV2 transient receptor potential cation channel subfamily V member 2 protein-coding 7.871 1.397
-51397 COMMD10 COMM domain containing 10 protein-coding 8.45 0.6929
-51398 WDR83OS WD repeat domain 83 opposite strand protein-coding 10.96 0.581
-51399 TRAPPC4 trafficking protein particle complex 4 protein-coding 9.698 0.5527
+51382 ATP6V1D ATPase H+ transporting V1 subunit D protein-coding 10.37 0.6123
+51384 WNT16 Wnt family member 16 protein-coding 2.065 1.735
+51385 ZNF589 zinc finger protein 589 protein-coding 8.22 0.9633
+51386 EIF3L eukaryotic translation initiation factor 3 subunit L protein-coding 12.64 0.6397
+51388 NIP7 NIP7, nucleolar pre-rRNA processing protein protein-coding 9.179 0.7038
+51389 RWDD1 RWD domain containing 1 protein-coding 9.717 0.5518
+5139 PDE3A phosphodiesterase 3A protein-coding 5.472 2.165
+51390 AIG1 androgen induced 1 protein-coding 9.434 0.9855
+51393 TRPV2 transient receptor potential cation channel subfamily V member 2 protein-coding 7.872 1.397
+51397 COMMD10 COMM domain containing 10 protein-coding 8.45 0.6926
+51398 WDR83OS WD repeat domain 83 opposite strand protein-coding 10.96 0.5809
+51399 TRAPPC4 trafficking protein particle complex 4 protein-coding 9.698 0.5526
514 ATP5F1E ATP synthase F1 subunit epsilon protein-coding 12.13 0.7367
-5140 PDE3B phosphodiesterase 3B protein-coding 7.148 1.945
-51400 PPME1 protein phosphatase methylesterase 1 protein-coding 10.32 0.565
+5140 PDE3B phosphodiesterase 3B protein-coding 7.15 1.945
+51400 PPME1 protein phosphatase methylesterase 1 protein-coding 10.32 0.5652
51406 NOL7 nucleolar protein 7 protein-coding 9.628 0.4984
-51409 HEMK1 HemK methyltransferase family member 1 protein-coding 8.597 0.7275
-5141 PDE4A phosphodiesterase 4A protein-coding 8.619 1.195
-51411 BIN2 bridging integrator 2 protein-coding 7.017 1.497
-5142 PDE4B phosphodiesterase 4B protein-coding 8.424 1.753
+51409 HEMK1 HemK methyltransferase family member 1 protein-coding 8.597 0.7274
+5141 PDE4A phosphodiesterase 4A protein-coding 8.62 1.195
+51411 BIN2 bridging integrator 2 protein-coding 7.018 1.498
+5142 PDE4B phosphodiesterase 4B protein-coding 8.425 1.753
51421 AMOTL2 angiomotin like 2 protein-coding 10.23 1.174
-51422 PRKAG2 protein kinase AMP-activated non-catalytic subunit gamma 2 protein-coding 8.948 0.892
-51426 POLK DNA polymerase kappa protein-coding 8.513 0.7891
-51427 ZNF107 zinc finger protein 107 protein-coding 7.834 1.135
-51428 DDX41 DEAD-box helicase 41 protein-coding 10.58 0.5153
-51429 SNX9 sorting nexin 9 protein-coding 10.49 0.7785
-5143 PDE4C phosphodiesterase 4C protein-coding 4.701 2.103
-51430 SUCO SUN domain containing ossification factor protein-coding 10.21 0.7337
+51422 PRKAG2 protein kinase AMP-activated non-catalytic subunit gamma 2 protein-coding 8.949 0.8918
+51426 POLK DNA polymerase kappa protein-coding 8.514 0.7889
+51427 ZNF107 zinc finger protein 107 protein-coding 7.834 1.134
+51428 DDX41 DEAD-box helicase 41 protein-coding 10.58 0.5154
+51429 SNX9 sorting nexin 9 protein-coding 10.49 0.7783
+5143 PDE4C phosphodiesterase 4C protein-coding 4.703 2.103
+51430 SUCO SUN domain containing ossification factor protein-coding 10.21 0.7334
51433 ANAPC5 anaphase promoting complex subunit 5 protein-coding 11.28 0.4077
-51434 ANAPC7 anaphase promoting complex subunit 7 protein-coding 10.17 0.4874
-51435 SCARA3 scavenger receptor class A member 3 protein-coding 9.254 2.042
-51439 FAM8A1 family with sequence similarity 8 member A1 protein-coding 9.924 0.7952
-5144 PDE4D phosphodiesterase 4D protein-coding 8.468 1.465
-51440 HPCAL4 hippocalcin like 4 protein-coding 3.376 2.917
-51441 YTHDF2 YTH N6-methyladenosine RNA binding protein 2 protein-coding 10.81 0.4658
-51444 RNF138 ring finger protein 138 protein-coding 8.941 0.7101
-51447 IP6K2 inositol hexakisphosphate kinase 2 protein-coding 10.48 0.636
-51449 PCYOX1 prenylcysteine oxidase 1 protein-coding 11.14 0.7599
-5145 PDE6A phosphodiesterase 6A protein-coding 2.091 1.493
-51451 LCMT1 leucine carboxyl methyltransferase 1 protein-coding 9.425 0.5848
-51454 GULP1 GULP, engulfment adaptor PTB domain containing 1 protein-coding 7.374 2.107
+51434 ANAPC7 anaphase promoting complex subunit 7 protein-coding 10.17 0.4875
+51435 SCARA3 scavenger receptor class A member 3 protein-coding 9.254 2.041
+51439 FAM8A1 family with sequence similarity 8 member A1 protein-coding 9.925 0.795
+5144 PDE4D phosphodiesterase 4D protein-coding 8.469 1.465
+51440 HPCAL4 hippocalcin like 4 protein-coding 3.376 2.916
+51441 YTHDF2 YTH N6-methyladenosine RNA binding protein 2 protein-coding 10.81 0.4657
+51444 RNF138 ring finger protein 138 protein-coding 8.941 0.7098
+51447 IP6K2 inositol hexakisphosphate kinase 2 protein-coding 10.48 0.6359
+51449 PCYOX1 prenylcysteine oxidase 1 protein-coding 11.14 0.7597
+5145 PDE6A phosphodiesterase 6A protein-coding 2.092 1.493
+51451 LCMT1 leucine carboxyl methyltransferase 1 protein-coding 9.424 0.5848
+51454 GULP1 GULP, engulfment adaptor PTB domain containing 1 protein-coding 7.375 2.107
51455 REV1 REV1, DNA directed polymerase protein-coding 9.421 0.5197
-51460 SFMBT1 Scm like with four mbt domains 1 protein-coding 7.924 0.8218
-51463 GPR89B G protein-coupled receptor 89B protein-coding 4.043 1.286
-51465 UBE2J1 ubiquitin conjugating enzyme E2 J1 protein-coding 10.72 0.6432
+51460 SFMBT1 Scm like with four mbt domains 1 protein-coding 7.925 0.8215
+51463 GPR89B G protein-coupled receptor 89B protein-coding 4.043 1.285
+51465 UBE2J1 ubiquitin conjugating enzyme E2 J1 protein-coding 10.72 0.6431
51466 EVL Enah/Vasp-like protein-coding 10.36 1.194
-5147 PDE6D phosphodiesterase 6D protein-coding 8.548 0.5882
-51471 NAT8B N-acetyltransferase 8B (putative, gene/pseudogene) protein-coding 2.018 1.923
+5147 PDE6D phosphodiesterase 6D protein-coding 8.548 0.5881
+51471 NAT8B N-acetyltransferase 8B (putative, gene/pseudogene) protein-coding 2.018 1.922
51474 LIMA1 LIM domain and actin binding 1 protein-coding 11.11 1.098
51477 ISYNA1 inositol-3-phosphate synthase 1 protein-coding 9.618 1.574
-51478 HSD17B7 hydroxysteroid 17-beta dehydrogenase 7 protein-coding 8.025 0.813
-51479 ANKFY1 ankyrin repeat and FYVE domain containing 1 protein-coding 10.61 0.6818
-5148 PDE6G phosphodiesterase 6G protein-coding 3.642 1.698
-51490 SPOUT1 SPOUT domain containing methyltransferase 1 protein-coding 9.152 0.5828
-51491 NOP16 NOP16 nucleolar protein protein-coding 8.228 0.8396
-51493 RTCB RNA 2',3'-cyclic phosphate and 5'-OH ligase protein-coding 10.84 0.4987
-51495 HACD3 3-hydroxyacyl-CoA dehydratase 3 protein-coding 11.41 0.8145
-51496 CTDSPL2 CTD small phosphatase like 2 protein-coding 9.103 0.711
-51497 NELFCD negative elongation factor complex member C/D protein-coding 10.86 0.5689
-51499 TRIAP1 TP53 regulated inhibitor of apoptosis 1 protein-coding 9.083 0.5994
-515 ATP5PB ATP synthase peripheral stalk-membrane subunit b protein-coding 11.47 0.5032
-5150 PDE7A phosphodiesterase 7A protein-coding 9.169 1.023
-51501 HIKESHI Hikeshi, heat shock protein nuclear import factor protein-coding 8.877 0.5903
+51478 HSD17B7 hydroxysteroid 17-beta dehydrogenase 7 protein-coding 8.025 0.8128
+51479 ANKFY1 ankyrin repeat and FYVE domain containing 1 protein-coding 10.61 0.6816
+5148 PDE6G phosphodiesterase 6G protein-coding 3.642 1.699
+51490 SPOUT1 SPOUT domain containing methyltransferase 1 protein-coding 9.152 0.5826
+51491 NOP16 NOP16 nucleolar protein protein-coding 8.226 0.84
+51493 RTCB RNA 2',3'-cyclic phosphate and 5'-OH ligase protein-coding 10.84 0.4986
+51495 HACD3 3-hydroxyacyl-CoA dehydratase 3 protein-coding 11.41 0.8144
+51496 CTDSPL2 CTD small phosphatase like 2 protein-coding 9.103 0.7107
+51497 NELFCD negative elongation factor complex member C/D protein-coding 10.86 0.5691
+51499 TRIAP1 TP53 regulated inhibitor of apoptosis 1 protein-coding 9.083 0.5995
+515 ATP5PB ATP synthase peripheral stalk-membrane subunit b protein-coding 11.47 0.5031
+5150 PDE7A phosphodiesterase 7A protein-coding 9.17 1.023
+51501 HIKESHI Hikeshi, heat shock protein nuclear import factor protein-coding 8.876 0.5903
51503 CWC15 CWC15 spliceosome associated protein homolog protein-coding 9.738 0.515
51504 TRMT112 tRNA methyltransferase subunit 11-2 protein-coding 11.24 0.6841
-51506 UFC1 ubiquitin-fold modifier conjugating enzyme 1 protein-coding 11.08 0.6128
-51507 RTF2 replication termination factor 2 protein-coding 11.15 0.4272
-5151 PDE8A phosphodiesterase 8A protein-coding 9.166 0.797
-51510 CHMP5 charged multivesicular body protein 5 protein-coding 10.66 0.5803
-51512 GTSE1 G2 and S-phase expressed 1 protein-coding 7.285 1.899
-51513 ETV7 ETS variant 7 protein-coding 6.492 1.956
-51514 DTL denticleless E3 ubiquitin protein ligase homolog protein-coding 7.926 1.75
-51517 NCKIPSD NCK interacting protein with SH3 domain protein-coding 9.298 0.6053
-5152 PDE9A phosphodiesterase 9A protein-coding 7.786 2.076
-51520 LARS leucyl-tRNA synthetase protein-coding 11.18 0.4756
-51522 TMEM14C transmembrane protein 14C protein-coding 10.88 0.5543
-51523 CXXC5 CXXC finger protein 5 protein-coding 9.181 1.303
-51524 TMEM138 transmembrane protein 138 protein-coding 9.02 0.5704
-51526 OSER1 oxidative stress responsive serine rich 1 protein-coding 9.585 0.5255
-51527 GSKIP GSK3B interacting protein protein-coding 9.053 0.8429
-51528 JKAMP JNK1/MAPK8 associated membrane protein protein-coding 9.649 0.5247
+51506 UFC1 ubiquitin-fold modifier conjugating enzyme 1 protein-coding 11.08 0.6127
+51507 RTF2 replication termination factor 2 protein-coding 11.15 0.4271
+5151 PDE8A phosphodiesterase 8A protein-coding 9.166 0.7971
+51510 CHMP5 charged multivesicular body protein 5 protein-coding 10.66 0.5802
+51512 GTSE1 G2 and S-phase expressed 1 protein-coding 7.282 1.9
+51513 ETV7 ETS variant 7 protein-coding 6.492 1.955
+51514 DTL denticleless E3 ubiquitin protein ligase homolog protein-coding 7.925 1.75
+51517 NCKIPSD NCK interacting protein with SH3 domain protein-coding 9.298 0.6051
+5152 PDE9A phosphodiesterase 9A protein-coding 7.787 2.076
+51520 LARS leucyl-tRNA synthetase protein-coding 11.18 0.4755
+51522 TMEM14C transmembrane protein 14C protein-coding 10.88 0.5542
+51523 CXXC5 CXXC finger protein 5 protein-coding 9.181 1.302
+51524 TMEM138 transmembrane protein 138 protein-coding 9.02 0.5707
+51526 OSER1 oxidative stress responsive serine rich 1 protein-coding 9.585 0.5254
+51527 GSKIP GSK3B interacting protein protein-coding 9.053 0.8426
+51528 JKAMP JNK1/MAPK8 associated membrane protein protein-coding 9.649 0.5246
51529 ANAPC11 anaphase promoting complex subunit 11 protein-coding 10.52 0.774
-5153 PDE1B phosphodiesterase 1B protein-coding 6.116 1.719
-51530 ZC3HC1 zinc finger C3HC-type containing 1 protein-coding 8.655 0.6085
-51531 TRMO tRNA methyltransferase O protein-coding 7.867 0.5235
-51533 PHF7 PHD finger protein 7 protein-coding 5.684 0.9049
-51534 VTA1 vesicle trafficking 1 protein-coding 9.903 0.5858
-51535 PPHLN1 periphilin 1 protein-coding 9.83 0.4163
-51537 MTFP1 mitochondrial fission process 1 protein-coding 8.666 1.098
+5153 PDE1B phosphodiesterase 1B protein-coding 6.117 1.719
+51530 ZC3HC1 zinc finger C3HC-type containing 1 protein-coding 8.654 0.6085
+51531 TRMO tRNA methyltransferase O protein-coding 7.868 0.5237
+51533 PHF7 PHD finger protein 7 protein-coding 5.684 0.9048
+51534 VTA1 vesicle trafficking 1 protein-coding 9.903 0.5857
+51535 PPHLN1 periphilin 1 protein-coding 9.829 0.4162
+51537 MTFP1 mitochondrial fission process 1 protein-coding 8.665 1.098
51538 ZCCHC17 zinc finger CCHC-type containing 17 protein-coding 9.512 0.5315
5154 PDGFA platelet derived growth factor subunit A protein-coding 8.928 1.26
-51540 SCLY selenocysteine lyase protein-coding 8.156 0.7911
-51542 VPS54 VPS54, GARP complex subunit protein-coding 9.371 0.6041
-51545 ZNF581 zinc finger protein 581 protein-coding 8.691 0.7959
-51547 SIRT7 sirtuin 7 protein-coding 8.685 0.7661
-51548 SIRT6 sirtuin 6 protein-coding 8.588 0.6953
+51540 SCLY selenocysteine lyase protein-coding 8.156 0.7909
+51542 VPS54 VPS54, GARP complex subunit protein-coding 9.371 0.6039
+51545 ZNF581 zinc finger protein 581 protein-coding 8.691 0.7956
+51547 SIRT7 sirtuin 7 protein-coding 8.684 0.7659
+51548 SIRT6 sirtuin 6 protein-coding 8.588 0.6951
5155 PDGFB platelet derived growth factor subunit B protein-coding 8.791 1.091
-51550 CINP cyclin dependent kinase 2 interacting protein protein-coding 8.839 0.5711
-51552 RAB14 RAB14, member RAS oncogene family protein-coding 11.36 0.4653
+51550 CINP cyclin dependent kinase 2 interacting protein protein-coding 8.839 0.5709
+51552 RAB14 RAB14, member RAS oncogene family protein-coding 11.36 0.4651
51554 ACKR4 atypical chemokine receptor 4 protein-coding 4.733 1.869
-51557 LGSN lengsin, lens protein with glutamine synthetase domain protein-coding 1.837 2.441
-51559 NT5DC3 5'-nucleotidase domain containing 3 protein-coding 8.437 1.185
-5156 PDGFRA platelet derived growth factor receptor alpha protein-coding 8.81 2.461
-51560 RAB6B RAB6B, member RAS oncogene family protein-coding 8.083 1.965
+51557 LGSN lengsin, lens protein with glutamine synthetase domain protein-coding 1.837 2.44
+51559 NT5DC3 5'-nucleotidase domain containing 3 protein-coding 8.438 1.185
+5156 PDGFRA platelet derived growth factor receptor alpha protein-coding 8.812 2.46
+51560 RAB6B RAB6B, member RAS oncogene family protein-coding 8.084 1.964
51561 IL23A interleukin 23 subunit alpha protein-coding 4.178 1.651
-51562 MBIP MAP3K12 binding inhibitory protein 1 protein-coding 8.638 1.078
-51564 HDAC7 histone deacetylase 7 protein-coding 10.71 0.8217
+51562 MBIP MAP3K12 binding inhibitory protein 1 protein-coding 8.639 1.078
+51564 HDAC7 histone deacetylase 7 protein-coding 10.71 0.8215
51566 ARMCX3 armadillo repeat containing, X-linked 3 protein-coding 10.37 1.253
-51567 TDP2 tyrosyl-DNA phosphodiesterase 2 protein-coding 9.893 0.6317
-51569 UFM1 ubiquitin fold modifier 1 protein-coding 10.57 0.5576
-5157 PDGFRL platelet derived growth factor receptor like protein-coding 6.5 2.33
-51571 FAM49B family with sequence similarity 49 member B protein-coding 10.14 0.8295
-51573 GDE1 glycerophosphodiester phosphodiesterase 1 protein-coding 10.88 0.6009
-51574 LARP7 La ribonucleoprotein domain family member 7 protein-coding 9.755 0.5081
-51575 ESF1 ESF1 nucleolar pre-rRNA processing protein homolog protein-coding 8.747 0.7484
-5158 PDE6B phosphodiesterase 6B protein-coding 5.63 2.138
-51582 AZIN1 antizyme inhibitor 1 protein-coding 11.79 0.7215
-51585 PCF11 PCF11 cleavage and polyadenylation factor subunit protein-coding 9.957 0.5918
-51586 MED15 mediator complex subunit 15 protein-coding 11.05 0.6699
-51588 PIAS4 protein inhibitor of activated STAT 4 protein-coding 8.238 0.5551
+51567 TDP2 tyrosyl-DNA phosphodiesterase 2 protein-coding 9.893 0.6318
+51569 UFM1 ubiquitin fold modifier 1 protein-coding 10.57 0.5573
+5157 PDGFRL platelet derived growth factor receptor like protein-coding 6.501 2.33
+51571 FAM49B family with sequence similarity 49 member B protein-coding 10.14 0.8296
+51573 GDE1 glycerophosphodiester phosphodiesterase 1 protein-coding 10.88 0.6007
+51574 LARP7 La ribonucleoprotein domain family member 7 protein-coding 9.755 0.508
+51575 ESF1 ESF1 nucleolar pre-rRNA processing protein homolog protein-coding 8.747 0.7481
+5158 PDE6B phosphodiesterase 6B protein-coding 5.631 2.137
+51582 AZIN1 antizyme inhibitor 1 protein-coding 11.79 0.7212
+51585 PCF11 PCF11 cleavage and polyadenylation factor subunit protein-coding 9.958 0.5918
+51586 MED15 mediator complex subunit 15 protein-coding 11.05 0.6697
+51588 PIAS4 protein inhibitor of activated STAT 4 protein-coding 8.238 0.5549
5159 PDGFRB platelet derived growth factor receptor beta protein-coding 10.81 1.409
-51592 TRIM33 tripartite motif containing 33 protein-coding 9.934 0.6318
-51593 SRRT serrate, RNA effector molecule protein-coding 11.02 0.5207
-51594 NBAS neuroblastoma amplified sequence protein-coding 10.09 0.4908
-51596 CUTA cutA divalent cation tolerance homolog protein-coding 11.3 0.7585
-51599 LSR lipolysis stimulated lipoprotein receptor protein-coding 11.09 1.881
-516 ATP5MC1 ATP synthase membrane subunit c locus 1 protein-coding 10.17 0.8081
-5160 PDHA1 pyruvate dehydrogenase E1 alpha 1 subunit protein-coding 10.7 0.6741
-51601 LIPT1 lipoyltransferase 1 protein-coding 6.778 0.6125
-51602 NOP58 NOP58 ribonucleoprotein protein-coding 10.41 0.7263
-51603 METTL13 methyltransferase like 13 protein-coding 9.83 0.5589
-51604 PIGT phosphatidylinositol glycan anchor biosynthesis class T protein-coding 11.73 0.7102
-51605 TRMT6 tRNA methyltransferase 6 protein-coding 8.783 0.7132
-51606 ATP6V1H ATPase H+ transporting V1 subunit H protein-coding 10.25 0.5848
-51608 GET4 golgi to ER traffic protein 4 protein-coding 9.995 0.6893
-51611 DPH5 diphthamide biosynthesis 5 protein-coding 8.642 0.5673
+51592 TRIM33 tripartite motif containing 33 protein-coding 9.934 0.6316
+51593 SRRT serrate, RNA effector molecule protein-coding 11.02 0.5205
+51594 NBAS neuroblastoma amplified sequence protein-coding 10.09 0.4907
+51596 CUTA cutA divalent cation tolerance homolog protein-coding 11.3 0.7586
+51599 LSR lipolysis stimulated lipoprotein receptor protein-coding 11.09 1.88
+516 ATP5MC1 ATP synthase membrane subunit c locus 1 protein-coding 10.17 0.8083
+5160 PDHA1 pyruvate dehydrogenase E1 alpha 1 subunit protein-coding 10.7 0.674
+51601 LIPT1 lipoyltransferase 1 protein-coding 6.779 0.6127
+51602 NOP58 NOP58 ribonucleoprotein protein-coding 10.41 0.7262
+51603 METTL13 methyltransferase like 13 protein-coding 9.83 0.5588
+51604 PIGT phosphatidylinositol glycan anchor biosynthesis class T protein-coding 11.73 0.7104
+51605 TRMT6 tRNA methyltransferase 6 protein-coding 8.782 0.7134
+51606 ATP6V1H ATPase H+ transporting V1 subunit H protein-coding 10.25 0.5847
+51608 GET4 golgi to ER traffic protein 4 protein-coding 9.995 0.689
+51611 DPH5 diphthamide biosynthesis 5 protein-coding 8.642 0.5671
51614 ERGIC3 ERGIC and golgi 3 protein-coding 12.24 0.5865
-51616 TAF9B TATA-box binding protein associated factor 9b protein-coding 9.225 0.7495
-51617 NSG2 neuronal vesicle trafficking associated 2 protein-coding 2.407 3.382
-51619 UBE2D4 ubiquitin conjugating enzyme E2 D4 (putative) protein-coding 8.051 0.6994
-5162 PDHB pyruvate dehydrogenase E1 beta subunit protein-coding 10.23 0.5436
-51621 KLF13 Kruppel like factor 13 protein-coding 10.89 0.9674
-51622 CCZ1 CCZ1 homolog, vacuolar protein trafficking and biogenesis associated protein-coding 9.982 0.603
-51626 DYNC2LI1 dynein cytoplasmic 2 light intermediate chain 1 protein-coding 8.421 0.7902
+51616 TAF9B TATA-box binding protein associated factor 9b protein-coding 9.226 0.7493
+51617 NSG2 neuronal vesicle trafficking associated 2 protein-coding 2.409 3.383
+51619 UBE2D4 ubiquitin conjugating enzyme E2 D4 (putative) protein-coding 8.051 0.6992
+5162 PDHB pyruvate dehydrogenase E1 beta subunit protein-coding 10.23 0.5434
+51621 KLF13 Kruppel like factor 13 protein-coding 10.9 0.9674
+51622 CCZ1 CCZ1 homolog, vacuolar protein trafficking and biogenesis associated protein-coding 9.982 0.6031
+51626 DYNC2LI1 dynein cytoplasmic 2 light intermediate chain 1 protein-coding 8.421 0.7901
51629 SLC25A39 solute carrier family 25 member 39 protein-coding 11.67 0.7687
-5163 PDK1 pyruvate dehydrogenase kinase 1 protein-coding 8.609 1.13
-51631 LUC7L2 LUC7 like 2, pre-mRNA splicing factor protein-coding 10.91 0.4479
-51633 OTUD6B OTU domain containing 6B protein-coding 8.127 0.7752
-51634 RBMX2 RNA binding motif protein, X-linked 2 protein-coding 8.797 0.5274
-51635 DHRS7 dehydrogenase/reductase 7 protein-coding 10.6 1.154
-51637 RTRAF RNA transcription, translation and transport factor protein-coding 11.13 0.5519
-51639 SF3B6 splicing factor 3b subunit 6 protein-coding 10.36 0.5383
-5164 PDK2 pyruvate dehydrogenase kinase 2 protein-coding 9.813 0.9109
+5163 PDK1 pyruvate dehydrogenase kinase 1 protein-coding 8.608 1.13
+51631 LUC7L2 LUC7 like 2, pre-mRNA splicing factor protein-coding 10.91 0.4478
+51633 OTUD6B OTU domain containing 6B protein-coding 8.127 0.7749
+51634 RBMX2 RNA binding motif protein, X-linked 2 protein-coding 8.796 0.5272
+51635 DHRS7 dehydrogenase/reductase 7 protein-coding 10.6 1.155
+51637 RTRAF RNA transcription, translation and transport factor protein-coding 11.12 0.5518
+51639 SF3B6 splicing factor 3b subunit 6 protein-coding 10.36 0.5384
+5164 PDK2 pyruvate dehydrogenase kinase 2 protein-coding 9.813 0.9106
51642 MRPL48 mitochondrial ribosomal protein L48 protein-coding 8.818 0.6181
-51643 TMBIM4 transmembrane BAX inhibitor motif containing 4 protein-coding 10.31 0.7377
-51645 PPIL1 peptidylprolyl isomerase like 1 protein-coding 9.485 0.6889
-51646 YPEL5 yippee like 5 protein-coding 10.96 0.547
-51647 FAM96B family with sequence similarity 96 member B protein-coding 9.934 0.7209
-51649 MRPS23 mitochondrial ribosomal protein S23 protein-coding 9.758 0.603
+51643 TMBIM4 transmembrane BAX inhibitor motif containing 4 protein-coding 10.31 0.7374
+51645 PPIL1 peptidylprolyl isomerase like 1 protein-coding 9.484 0.689
+51646 YPEL5 yippee like 5 protein-coding 10.96 0.5469
+51647 FAM96B family with sequence similarity 96 member B protein-coding 9.934 0.7208
+51649 MRPS23 mitochondrial ribosomal protein S23 protein-coding 9.758 0.6032
5165 PDK3 pyruvate dehydrogenase kinase 3 protein-coding 7.298 1.084
-51650 MRPS33 mitochondrial ribosomal protein S33 protein-coding 9.436 0.6501
-51651 PTRH2 peptidyl-tRNA hydrolase 2 protein-coding 8.73 0.7068
+51650 MRPS33 mitochondrial ribosomal protein S33 protein-coding 9.435 0.6502
+51651 PTRH2 peptidyl-tRNA hydrolase 2 protein-coding 8.729 0.7071
51652 CHMP3 charged multivesicular body protein 3 protein-coding 11.28 0.5641
-51654 CDK5RAP1 CDK5 regulatory subunit associated protein 1 protein-coding 9.093 0.5006
-51655 RASD1 ras related dexamethasone induced 1 protein-coding 8.404 2.357
-51657 STYXL1 serine/threonine/tyrosine interacting like 1 protein-coding 9.298 0.6899
-51659 GINS2 GINS complex subunit 2 protein-coding 7.867 1.367
-5166 PDK4 pyruvate dehydrogenase kinase 4 protein-coding 9.119 2.48
-51660 MPC1 mitochondrial pyruvate carrier 1 protein-coding 9.122 0.9515
-51661 FKBP7 FK506 binding protein 7 protein-coding 7.523 0.9983
-51663 ZFR zinc finger RNA binding protein protein-coding 10.95 0.5672
-51665 ASB1 ankyrin repeat and SOCS box containing 1 protein-coding 8.754 0.7167
-51667 NUB1 negative regulator of ubiquitin like proteins 1 protein-coding 10.7 0.4881
-51668 HSPB11 heat shock protein family B (small) member 11 protein-coding 8.534 0.733
-51669 SARAF store-operated calcium entry associated regulatory factor protein-coding 12.4 0.83
-5167 ENPP1 ectonucleotide pyrophosphatase/phosphodiesterase 1 protein-coding 7.559 2.286
-51673 TPPP3 tubulin polymerization promoting protein family member 3 protein-coding 8.313 1.87
-51676 ASB2 ankyrin repeat and SOCS box containing 2 protein-coding 5.599 2.045
-51678 MPP6 membrane palmitoylated protein 6 protein-coding 6.401 1.505
-5168 ENPP2 ectonucleotide pyrophosphatase/phosphodiesterase 2 protein-coding 9.206 1.856
+51654 CDK5RAP1 CDK5 regulatory subunit associated protein 1 protein-coding 9.092 0.5006
+51655 RASD1 ras related dexamethasone induced 1 protein-coding 8.405 2.356
+51657 STYXL1 serine/threonine/tyrosine interacting like 1 protein-coding 9.298 0.69
+51659 GINS2 GINS complex subunit 2 protein-coding 7.865 1.368
+5166 PDK4 pyruvate dehydrogenase kinase 4 protein-coding 9.122 2.482
+51660 MPC1 mitochondrial pyruvate carrier 1 protein-coding 9.122 0.9512
+51661 FKBP7 FK506 binding protein 7 protein-coding 7.524 0.9982
+51663 ZFR zinc finger RNA binding protein protein-coding 10.95 0.5671
+51665 ASB1 ankyrin repeat and SOCS box containing 1 protein-coding 8.754 0.7165
+51667 NUB1 negative regulator of ubiquitin like proteins 1 protein-coding 10.7 0.4879
+51668 HSPB11 heat shock protein family B (small) member 11 protein-coding 8.534 0.7328
+51669 SARAF store-operated calcium entry associated regulatory factor protein-coding 12.4 0.8301
+5167 ENPP1 ectonucleotide pyrophosphatase/phosphodiesterase 1 protein-coding 7.559 2.285
+51673 TPPP3 tubulin polymerization promoting protein family member 3 protein-coding 8.313 1.871
+51676 ASB2 ankyrin repeat and SOCS box containing 2 protein-coding 5.601 2.046
+51678 MPP6 membrane palmitoylated protein 6 protein-coding 6.401 1.504
+5168 ENPP2 ectonucleotide pyrophosphatase/phosphodiesterase 2 protein-coding 9.207 1.856
51684 SUFU SUFU negative regulator of hedgehog signaling protein-coding 9.095 0.7071
51686 OAZ3 ornithine decarboxylase antizyme 3 protein-coding 4.635 1.486
-5169 ENPP3 ectonucleotide pyrophosphatase/phosphodiesterase 3 protein-coding 4.17 3.206
-51690 LSM7 LSM7 homolog, U6 small nuclear RNA and mRNA degradation associated protein-coding 9.435 0.8921
-51691 LSM8 LSM8 homolog, U6 small nuclear RNA associated protein-coding 8.804 0.6214
-51692 CPSF3 cleavage and polyadenylation specific factor 3 protein-coding 9.795 0.5429
-51693 TRAPPC2L trafficking protein particle complex 2 like protein-coding 9.338 0.7138
-51696 HECA hdc homolog, cell cycle regulator protein-coding 9.789 0.7402
-51699 VPS29 VPS29, retromer complex component protein-coding 10.19 0.4977
-517 ATP5MC2 ATP synthase membrane subunit c locus 2 protein-coding 12.35 0.6425
-5170 PDPK1 3-phosphoinositide dependent protein kinase 1 protein-coding 10.18 0.74
-51700 CYB5R2 cytochrome b5 reductase 2 protein-coding 7.097 1.852
-51701 NLK nemo like kinase protein-coding 8.865 0.632
-51702 PADI3 peptidyl arginine deiminase 3 protein-coding 2.926 3.479
-51703 ACSL5 acyl-CoA synthetase long chain family member 5 protein-coding 9.396 2.056
-51704 GPRC5B G protein-coupled receptor class C group 5 member B protein-coding 9.161 2.079
-51705 EMCN endomucin protein-coding 7.378 1.613
-51706 CYB5R1 cytochrome b5 reductase 1 protein-coding 10.33 0.9322
-51710 ZNF44 zinc finger protein 44 protein-coding 7.666 0.7957
-51714 SELENOT selenoprotein T protein-coding 10.99 0.62
-51715 RAB23 RAB23, member RAS oncogene family protein-coding 8.639 1.109
-51716 CES1P1 carboxylesterase 1 pseudogene 1 pseudo 2.305 2.639
-51719 CAB39 calcium binding protein 39 protein-coding 10.97 0.5887
-5172 SLC26A4 solute carrier family 26 member 4 protein-coding 4.111 2.634
-51720 UIMC1 ubiquitin interaction motif containing 1 protein-coding 8.753 0.4666
+5169 ENPP3 ectonucleotide pyrophosphatase/phosphodiesterase 3 protein-coding 4.17 3.204
+51690 LSM7 LSM7 homolog, U6 small nuclear RNA and mRNA degradation associated protein-coding 9.434 0.892
+51691 LSM8 LSM8 homolog, U6 small nuclear RNA associated protein-coding 8.804 0.6213
+51692 CPSF3 cleavage and polyadenylation specific factor 3 protein-coding 9.794 0.5431
+51693 TRAPPC2L trafficking protein particle complex 2 like protein-coding 9.338 0.7136
+51696 HECA hdc homolog, cell cycle regulator protein-coding 9.79 0.7402
+51699 VPS29 VPS29, retromer complex component protein-coding 10.19 0.4975
+517 ATP5MC2 ATP synthase membrane subunit c locus 2 protein-coding 12.35 0.6424
+5170 PDPK1 3-phosphoinositide dependent protein kinase 1 protein-coding 10.18 0.7397
+51700 CYB5R2 cytochrome b5 reductase 2 protein-coding 7.096 1.852
+51701 NLK nemo like kinase protein-coding 8.865 0.6319
+51702 PADI3 peptidyl arginine deiminase 3 protein-coding 2.926 3.478
+51703 ACSL5 acyl-CoA synthetase long chain family member 5 protein-coding 9.397 2.056
+51704 GPRC5B G protein-coupled receptor class C group 5 member B protein-coding 9.162 2.079
+51705 EMCN endomucin protein-coding 7.379 1.613
+51706 CYB5R1 cytochrome b5 reductase 1 protein-coding 10.33 0.9319
+51710 ZNF44 zinc finger protein 44 protein-coding 7.667 0.7956
+51714 SELENOT selenoprotein T protein-coding 10.99 0.6198
+51715 RAB23 RAB23, member RAS oncogene family protein-coding 8.639 1.11
+51716 CES1P1 carboxylesterase 1 pseudogene 1 pseudo 2.306 2.64
+51719 CAB39 calcium binding protein 39 protein-coding 10.97 0.5886
+5172 SLC26A4 solute carrier family 26 member 4 protein-coding 4.112 2.635
+51720 UIMC1 ubiquitin interaction motif containing 1 protein-coding 8.753 0.4664
51726 DNAJB11 DnaJ heat shock protein family (Hsp40) member B11 protein-coding 10.64 0.7456
-51727 CMPK1 cytidine/uridine monophosphate kinase 1 protein-coding 11.64 0.7412
-51728 POLR3K RNA polymerase III subunit K protein-coding 8.495 0.6838
-51729 WBP11 WW domain binding protein 11 protein-coding 10.93 0.5423
-51733 UPB1 beta-ureidopropionase 1 protein-coding 2.876 2.719
-51734 MSRB1 methionine sulfoxide reductase B1 protein-coding 9.536 1.035
-51735 RAPGEF6 Rap guanine nucleotide exchange factor 6 protein-coding 7.407 1.41
-51738 GHRL ghrelin and obestatin prepropeptide protein-coding 2.479 1.472
-5174 PDZK1 PDZ domain containing 1 protein-coding 4.932 3.327
-51741 WWOX WW domain containing oxidoreductase protein-coding 7.843 0.931
-51742 ARID4B AT-rich interaction domain 4B protein-coding 9.93 0.6984
+51727 CMPK1 cytidine/uridine monophosphate kinase 1 protein-coding 11.64 0.741
+51728 POLR3K RNA polymerase III subunit K protein-coding 8.494 0.6839
+51729 WBP11 WW domain binding protein 11 protein-coding 10.93 0.5422
+51733 UPB1 beta-ureidopropionase 1 protein-coding 2.875 2.718
+51734 MSRB1 methionine sulfoxide reductase B1 protein-coding 9.536 1.034
+51735 RAPGEF6 Rap guanine nucleotide exchange factor 6 protein-coding 7.408 1.41
+51738 GHRL ghrelin and obestatin prepropeptide protein-coding 2.482 1.476
+5174 PDZK1 PDZ domain containing 1 protein-coding 4.931 3.327
+51741 WWOX WW domain containing oxidoreductase protein-coding 7.844 0.9309
+51742 ARID4B AT-rich interaction domain 4B protein-coding 9.931 0.6982
51744 CD244 CD244 molecule protein-coding 3.951 1.626
-51747 LUC7L3 LUC7 like 3 pre-mRNA splicing factor protein-coding 11.06 0.7382
-5175 PECAM1 platelet and endothelial cell adhesion molecule 1 protein-coding 9.673 1.208
-51750 RTEL1 regulator of telomere elongation helicase 1 protein-coding 9.031 0.8058
+51747 LUC7L3 LUC7 like 3 pre-mRNA splicing factor protein-coding 11.06 0.7381
+5175 PECAM1 platelet and endothelial cell adhesion molecule 1 protein-coding 9.674 1.208
+51750 RTEL1 regulator of telomere elongation helicase 1 protein-coding 9.031 0.8056
51751 HIGD1B HIG1 hypoxia inducible domain family member 1B protein-coding 4.031 1.674
-51752 ERAP1 endoplasmic reticulum aminopeptidase 1 protein-coding 10.33 0.9131
-51754 TMEM8B transmembrane protein 8B protein-coding 8.749 1.128
-51755 CDK12 cyclin dependent kinase 12 protein-coding 10.15 0.7272
-51759 C9orf78 chromosome 9 open reading frame 78 protein-coding 10.5 0.4488
-5176 SERPINF1 serpin family F member 1 protein-coding 10.4 2.123
+51752 ERAP1 endoplasmic reticulum aminopeptidase 1 protein-coding 10.33 0.9128
+51754 TMEM8B transmembrane protein 8B protein-coding 8.75 1.129
+51755 CDK12 cyclin dependent kinase 12 protein-coding 10.15 0.727
+51759 C9orf78 chromosome 9 open reading frame 78 protein-coding 10.5 0.4487
+5176 SERPINF1 serpin family F member 1 protein-coding 10.4 2.122
51760 SYT17 synaptotagmin 17 protein-coding 6.94 1.881
51761 ATP8A2 ATPase phospholipid transporting 8A2 protein-coding 3.321 2.181
-51762 RAB8B RAB8B, member RAS oncogene family protein-coding 9.221 0.8206
-51763 INPP5K inositol polyphosphate-5-phosphatase K protein-coding 9.743 0.6579
-51764 GNG13 G protein subunit gamma 13 protein-coding 1.071 1.647
-51765 STK26 serine/threonine kinase 26 protein-coding 8.049 1.949
-51768 TM7SF3 transmembrane 7 superfamily member 3 protein-coding 10.79 0.8068
-51773 RSF1 remodeling and spacing factor 1 protein-coding 9.269 0.7908
+51762 RAB8B RAB8B, member RAS oncogene family protein-coding 9.222 0.8207
+51763 INPP5K inositol polyphosphate-5-phosphatase K protein-coding 9.743 0.6578
+51764 GNG13 G protein subunit gamma 13 protein-coding 1.072 1.648
+51765 STK26 serine/threonine kinase 26 protein-coding 8.05 1.949
+51768 TM7SF3 transmembrane 7 superfamily member 3 protein-coding 10.79 0.8065
+51773 RSF1 remodeling and spacing factor 1 protein-coding 9.269 0.7905
51776 MAP3K20 mitogen-activated protein kinase kinase kinase 20 protein-coding 10.04 1.116
-5178 PEG3 paternally expressed 3 protein-coding 6.265 2.795
-51780 KDM3B lysine demethylase 3B protein-coding 10.99 0.6022
+5178 PEG3 paternally expressed 3 protein-coding 6.268 2.795
+51780 KDM3B lysine demethylase 3B protein-coding 10.99 0.6021
518 ATP5MC3 ATP synthase membrane subunit c locus 3 protein-coding 11.79 0.7259
-51804 SIX4 SIX homeobox 4 protein-coding 6.872 2.196
-51805 COQ3 coenzyme Q3, methyltransferase protein-coding 7.298 0.746
+51804 SIX4 SIX homeobox 4 protein-coding 6.872 2.195
+51805 COQ3 coenzyme Q3, methyltransferase protein-coding 7.297 0.7459
51807 TUBA8 tubulin alpha 8 protein-coding 5.697 1.254
-51808 PHAX phosphorylated adaptor for RNA export protein-coding 8.68 0.5287
-51809 GALNT7 polypeptide N-acetylgalactosaminyltransferase 7 protein-coding 9.821 1.715
-51816 ADA2 adenosine deaminase 2 protein-coding 9.675 1.506
+51808 PHAX phosphorylated adaptor for RNA export protein-coding 8.68 0.5285
+51809 GALNT7 polypeptide N-acetylgalactosaminyltransferase 7 protein-coding 9.821 1.714
+51816 ADA2 adenosine deaminase 2 protein-coding 9.676 1.506
5184 PEPD peptidase D protein-coding 10.47 0.7676
5187 PER1 period circadian regulator 1 protein-coding 10.26 1.332
-5188 GATB glutamyl-tRNA amidotransferase subunit B protein-coding 8.709 0.6873
-5189 PEX1 peroxisomal biogenesis factor 1 protein-coding 8.832 0.7503
-5190 PEX6 peroxisomal biogenesis factor 6 protein-coding 9.602 0.958
-5191 PEX7 peroxisomal biogenesis factor 7 protein-coding 7.464 0.7464
-5192 PEX10 peroxisomal biogenesis factor 10 protein-coding 9.058 0.8143
-5193 PEX12 peroxisomal biogenesis factor 12 protein-coding 7.746 0.7617
-5194 PEX13 peroxisomal biogenesis factor 13 protein-coding 9.65 0.6679
+5188 GATB glutamyl-tRNA amidotransferase subunit B protein-coding 8.708 0.6871
+5189 PEX1 peroxisomal biogenesis factor 1 protein-coding 8.832 0.75
+5190 PEX6 peroxisomal biogenesis factor 6 protein-coding 9.602 0.9577
+5191 PEX7 peroxisomal biogenesis factor 7 protein-coding 7.464 0.7465
+5192 PEX10 peroxisomal biogenesis factor 10 protein-coding 9.058 0.8142
+5193 PEX12 peroxisomal biogenesis factor 12 protein-coding 7.746 0.7615
+5194 PEX13 peroxisomal biogenesis factor 13 protein-coding 9.65 0.6678
5195 PEX14 peroxisomal biogenesis factor 14 protein-coding 8.955 0.5858
5196 PF4 platelet factor 4 protein-coding 1.103 1.53
-5197 PF4V1 platelet factor 4 variant 1 protein-coding 1.147 1.675
-5198 PFAS phosphoribosylformylglycinamidine synthase protein-coding 9.121 0.7517
-5199 CFP complement factor properdin protein-coding 5.041 1.512
+5197 PF4V1 platelet factor 4 variant 1 protein-coding 1.146 1.674
+5198 PFAS phosphoribosylformylglycinamidine synthase protein-coding 9.12 0.7515
+5199 CFP complement factor properdin protein-coding 5.043 1.513
52 ACP1 acid phosphatase 1 protein-coding 10.74 0.4977
-5201 PFDN1 prefoldin subunit 1 protein-coding 10.25 0.4744
-5202 PFDN2 prefoldin subunit 2 protein-coding 10.03 0.7709
-5203 PFDN4 prefoldin subunit 4 protein-coding 8.515 0.7575
-5204 PFDN5 prefoldin subunit 5 protein-coding 12.16 0.7037
+5201 PFDN1 prefoldin subunit 1 protein-coding 10.25 0.4742
+5202 PFDN2 prefoldin subunit 2 protein-coding 10.03 0.7712
+5203 PFDN4 prefoldin subunit 4 protein-coding 8.514 0.7574
+5204 PFDN5 prefoldin subunit 5 protein-coding 12.16 0.7035
5205 ATP8B1 ATPase phospholipid transporting 8B1 protein-coding 9.622 2.072
5207 PFKFB1 6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 1 protein-coding 2.163 1.68
5208 PFKFB2 6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 2 protein-coding 9.318 1.205
5209 PFKFB3 6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 3 protein-coding 10.54 1.383
521 ATP5ME ATP synthase membrane subunit e protein-coding 10.66 0.8538
-5210 PFKFB4 6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 4 protein-coding 7.854 1.223
+5210 PFKFB4 6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 4 protein-coding 7.854 1.222
5211 PFKL phosphofructokinase, liver type protein-coding 11.99 0.6597
-5212 VIT vitrin protein-coding 2.38 2.329
-5213 PFKM phosphofructokinase, muscle protein-coding 10.15 1.172
-5214 PFKP phosphofructokinase, platelet protein-coding 11.01 1.465
-5216 PFN1 profilin 1 protein-coding 13.5 0.7579
-5217 PFN2 profilin 2 protein-coding 10.84 1.646
-5218 CDK14 cyclin dependent kinase 14 protein-coding 8.658 1.514
-522 ATP5PF ATP synthase peripheral stalk subunit F6 protein-coding 10.69 0.6548
-5223 PGAM1 phosphoglycerate mutase 1 protein-coding 12.03 0.7543
+5212 VIT vitrin protein-coding 2.382 2.33
+5213 PFKM phosphofructokinase, muscle protein-coding 10.15 1.171
+5214 PFKP phosphofructokinase, platelet protein-coding 11.01 1.464
+5216 PFN1 profilin 1 protein-coding 13.5 0.758
+5217 PFN2 profilin 2 protein-coding 10.84 1.645
+5218 CDK14 cyclin dependent kinase 14 protein-coding 8.659 1.513
+522 ATP5PF ATP synthase peripheral stalk subunit F6 protein-coding 10.69 0.6547
+5223 PGAM1 phosphoglycerate mutase 1 protein-coding 12.03 0.7544
5224 PGAM2 phosphoglycerate mutase 2 protein-coding 5.392 1.823
-5225 PGC progastricsin protein-coding 2.968 4.215
+5225 PGC progastricsin protein-coding 2.972 4.218
5226 PGD phosphogluconate dehydrogenase protein-coding 11.46 0.9962
5228 PGF placental growth factor protein-coding 8.066 1.797
-5229 PGGT1B protein geranylgeranyltransferase type I subunit beta protein-coding 8.471 0.5382
-523 ATP6V1A ATPase H+ transporting V1 subunit A protein-coding 11.01 0.6963
-5230 PGK1 phosphoglycerate kinase 1 protein-coding 13.16 0.9016
-5236 PGM1 phosphoglucomutase 1 protein-coding 10.52 0.9198
-5238 PGM3 phosphoglucomutase 3 protein-coding 8.768 0.8833
-5239 PGM5 phosphoglucomutase 5 protein-coding 6.913 2.307
-5241 PGR progesterone receptor protein-coding 5.32 2.891
-5243 ABCB1 ATP binding cassette subfamily B member 1 protein-coding 6.854 2.431
-5244 ABCB4 ATP binding cassette subfamily B member 4 protein-coding 4.679 2.176
-5245 PHB prohibitin protein-coding 11.69 0.6346
+5229 PGGT1B protein geranylgeranyltransferase type I subunit beta protein-coding 8.471 0.5379
+523 ATP6V1A ATPase H+ transporting V1 subunit A protein-coding 11.01 0.6961
+5230 PGK1 phosphoglycerate kinase 1 protein-coding 13.16 0.9015
+5236 PGM1 phosphoglucomutase 1 protein-coding 10.52 0.9195
+5238 PGM3 phosphoglucomutase 3 protein-coding 8.768 0.8834
+5239 PGM5 phosphoglucomutase 5 protein-coding 6.916 2.309
+5241 PGR progesterone receptor protein-coding 5.322 2.891
+5243 ABCB1 ATP binding cassette subfamily B member 1 protein-coding 6.856 2.431
+5244 ABCB4 ATP binding cassette subfamily B member 4 protein-coding 4.679 2.175
+5245 PHB prohibitin protein-coding 11.69 0.6347
525 ATP6V1B1 ATPase H+ transporting V1 subunit B1 protein-coding 4.866 2.698
-5250 SLC25A3 solute carrier family 25 member 3 protein-coding 12.83 0.5322
+5250 SLC25A3 solute carrier family 25 member 3 protein-coding 12.83 0.532
5251 PHEX phosphate regulating endopeptidase homolog X-linked protein-coding 2.91 2.099
-5252 PHF1 PHD finger protein 1 protein-coding 10.15 0.7747
+5252 PHF1 PHD finger protein 1 protein-coding 10.15 0.7748
5253 PHF2 PHD finger protein 2 protein-coding 10.11 0.6949
-5255 PHKA1 phosphorylase kinase regulatory subunit alpha 1 protein-coding 8.393 1.432
-5256 PHKA2 phosphorylase kinase regulatory subunit alpha 2 protein-coding 9.335 0.84
-5257 PHKB phosphorylase kinase regulatory subunit beta protein-coding 10.54 0.6752
-526 ATP6V1B2 ATPase H+ transporting V1 subunit B2 protein-coding 11.16 0.8047
-5260 PHKG1 phosphorylase kinase catalytic subunit gamma 1 protein-coding 3.196 2.11
-5261 PHKG2 phosphorylase kinase catalytic subunit gamma 2 protein-coding 9.284 0.6065
-5264 PHYH phytanoyl-CoA 2-hydroxylase protein-coding 9.315 1.303
+5255 PHKA1 phosphorylase kinase regulatory subunit alpha 1 protein-coding 8.394 1.432
+5256 PHKA2 phosphorylase kinase regulatory subunit alpha 2 protein-coding 9.335 0.8397
+5257 PHKB phosphorylase kinase regulatory subunit beta protein-coding 10.54 0.675
+526 ATP6V1B2 ATPase H+ transporting V1 subunit B2 protein-coding 11.16 0.805
+5260 PHKG1 phosphorylase kinase catalytic subunit gamma 1 protein-coding 3.196 2.109
+5261 PHKG2 phosphorylase kinase catalytic subunit gamma 2 protein-coding 9.283 0.6064
+5264 PHYH phytanoyl-CoA 2-hydroxylase protein-coding 9.315 1.302
5265 SERPINA1 serpin family A member 1 protein-coding 11.12 3.285
-5266 PI3 peptidase inhibitor 3 protein-coding 5.502 4.531
-5269 SERPINB6 serpin family B member 6 protein-coding 11.14 0.9125
+5266 PI3 peptidase inhibitor 3 protein-coding 5.5 4.53
+5269 SERPINB6 serpin family B member 6 protein-coding 11.14 0.9123
527 ATP6V0C ATPase H+ transporting V0 subunit c protein-coding 11.81 0.7207
-5270 SERPINE2 serpin family E member 2 protein-coding 9.921 2.171
+5270 SERPINE2 serpin family E member 2 protein-coding 9.92 2.17
5271 SERPINB8 serpin family B member 8 protein-coding 7.869 1.186
5272 SERPINB9 serpin family B member 9 protein-coding 8.471 1.286
-5274 SERPINI1 serpin family I member 1 protein-coding 7.105 1.696
-5277 PIGA phosphatidylinositol glycan anchor biosynthesis class A protein-coding 8.04 0.814
-5279 PIGC phosphatidylinositol glycan anchor biosynthesis class C protein-coding 9.433 0.5584
-528 ATP6V1C1 ATPase H+ transporting V1 subunit C1 protein-coding 10.64 0.596
-5281 PIGF phosphatidylinositol glycan anchor biosynthesis class F protein-coding 8.238 0.5491
-5283 PIGH phosphatidylinositol glycan anchor biosynthesis class H protein-coding 8.494 0.6982
-5284 PIGR polymeric immunoglobulin receptor protein-coding 7.858 4.86
-5286 PIK3C2A phosphatidylinositol-4-phosphate 3-kinase catalytic subunit type 2 alpha protein-coding 10.12 0.8016
+5274 SERPINI1 serpin family I member 1 protein-coding 7.106 1.695
+5277 PIGA phosphatidylinositol glycan anchor biosynthesis class A protein-coding 8.04 0.8139
+5279 PIGC phosphatidylinositol glycan anchor biosynthesis class C protein-coding 9.432 0.5582
+528 ATP6V1C1 ATPase H+ transporting V1 subunit C1 protein-coding 10.64 0.5958
+5281 PIGF phosphatidylinositol glycan anchor biosynthesis class F protein-coding 8.237 0.5493
+5283 PIGH phosphatidylinositol glycan anchor biosynthesis class H protein-coding 8.494 0.6983
+5284 PIGR polymeric immunoglobulin receptor protein-coding 7.859 4.861
+5286 PIK3C2A phosphatidylinositol-4-phosphate 3-kinase catalytic subunit type 2 alpha protein-coding 10.12 0.8015
5287 PIK3C2B phosphatidylinositol-4-phosphate 3-kinase catalytic subunit type 2 beta protein-coding 9.436 1.04
-5289 PIK3C3 phosphatidylinositol 3-kinase catalytic subunit type 3 protein-coding 8.917 0.5346
-529 ATP6V1E1 ATPase H+ transporting V1 subunit E1 protein-coding 11.27 0.5417
-5290 PIK3CA phosphatidylinositol-4,5-bisphosphate 3-kinase catalytic subunit alpha protein-coding 8.564 0.9233
-5291 PIK3CB phosphatidylinositol-4,5-bisphosphate 3-kinase catalytic subunit beta protein-coding 9.823 0.755
-5292 PIM1 Pim-1 proto-oncogene, serine/threonine kinase protein-coding 9.84 1.308
-5293 PIK3CD phosphatidylinositol-4,5-bisphosphate 3-kinase catalytic subunit delta protein-coding 8.401 1.419
-5294 PIK3CG phosphatidylinositol-4,5-bisphosphate 3-kinase catalytic subunit gamma protein-coding 5.524 1.768
-5295 PIK3R1 phosphoinositide-3-kinase regulatory subunit 1 protein-coding 10.51 1.241
-5296 PIK3R2 phosphoinositide-3-kinase regulatory subunit 2 protein-coding 10.98 0.6589
-5297 PI4KA phosphatidylinositol 4-kinase alpha protein-coding 10.77 0.6798
+5289 PIK3C3 phosphatidylinositol 3-kinase catalytic subunit type 3 protein-coding 8.917 0.5344
+529 ATP6V1E1 ATPase H+ transporting V1 subunit E1 protein-coding 11.27 0.5415
+5290 PIK3CA phosphatidylinositol-4,5-bisphosphate 3-kinase catalytic subunit alpha protein-coding 8.564 0.923
+5291 PIK3CB phosphatidylinositol-4,5-bisphosphate 3-kinase catalytic subunit beta protein-coding 9.823 0.7549
+5292 PIM1 Pim-1 proto-oncogene, serine/threonine kinase protein-coding 9.841 1.308
+5293 PIK3CD phosphatidylinositol-4,5-bisphosphate 3-kinase catalytic subunit delta protein-coding 8.402 1.42
+5294 PIK3CG phosphatidylinositol-4,5-bisphosphate 3-kinase catalytic subunit gamma protein-coding 5.526 1.768
+5295 PIK3R1 phosphoinositide-3-kinase regulatory subunit 1 protein-coding 10.51 1.24
+5296 PIK3R2 phosphoinositide-3-kinase regulatory subunit 2 protein-coding 10.98 0.6591
+5297 PI4KA phosphatidylinositol 4-kinase alpha protein-coding 10.77 0.6796
5298 PI4KB phosphatidylinositol 4-kinase beta protein-coding 10.9 0.4904
-53 ACP2 acid phosphatase 2, lysosomal protein-coding 10.2 0.6314
-5300 PIN1 peptidylprolyl cis/trans isomerase, NIMA-interacting 1 protein-coding 9.728 0.7391
-5301 PIN1P1 peptidylprolyl cis/trans isomerase, NIMA-interacting 1 pseudogene 1 pseudo 0.9095 0.8685
-5303 PIN4 peptidylprolyl cis/trans isomerase, NIMA-interacting 4 protein-coding 8.503 0.6894
+53 ACP2 acid phosphatase 2, lysosomal protein-coding 10.2 0.6319
+5300 PIN1 peptidylprolyl cis/trans isomerase, NIMA-interacting 1 protein-coding 9.728 0.7389
+5301 PIN1P1 peptidylprolyl cis/trans isomerase, NIMA-interacting 1 pseudogene 1 pseudo 0.9098 0.8684
+5303 PIN4 peptidylprolyl cis/trans isomerase, NIMA-interacting 4 protein-coding 8.502 0.6892
5305 PIP4K2A phosphatidylinositol-5-phosphate 4-kinase type 2 alpha protein-coding 9.58 0.9643
-5306 PITPNA phosphatidylinositol transfer protein alpha protein-coding 10.99 0.568
-5307 PITX1 paired like homeodomain 1 protein-coding 6.816 3.747
-5310 PKD1 polycystin 1, transient receptor potential channel interacting protein-coding 10.63 0.9108
-5311 PKD2 polycystin 2, transient receptor potential cation channel protein-coding 9.25 1.121
-5313 PKLR pyruvate kinase L/R protein-coding 2.356 3.138
-5315 PKM pyruvate kinase M1/2 protein-coding 14.56 1.101
-5316 PKNOX1 PBX/knotted 1 homeobox 1 protein-coding 8.869 0.4543
-5318 PKP2 plakophilin 2 protein-coding 7.991 2.488
-5319 PLA2G1B phospholipase A2 group IB protein-coding 1.393 2.064
+5306 PITPNA phosphatidylinositol transfer protein alpha protein-coding 10.99 0.5679
+5307 PITX1 paired like homeodomain 1 protein-coding 6.814 3.747
+5310 PKD1 polycystin 1, transient receptor potential channel interacting protein-coding 10.63 0.9111
+5311 PKD2 polycystin 2, transient receptor potential cation channel protein-coding 9.251 1.121
+5313 PKLR pyruvate kinase L/R protein-coding 2.354 3.137
+5315 PKM pyruvate kinase M1/2 protein-coding 14.55 1.101
+5316 PKNOX1 PBX/knotted 1 homeobox 1 protein-coding 8.869 0.4545
+5318 PKP2 plakophilin 2 protein-coding 7.992 2.488
+5319 PLA2G1B phospholipase A2 group IB protein-coding 1.396 2.072
5321 PLA2G4A phospholipase A2 group IVA protein-coding 6.943 2.091
-5324 PLAG1 PLAG1 zinc finger protein-coding 5.954 2.011
-5325 PLAGL1 PLAG1 like zinc finger 1 protein-coding 7.522 1.705
-5326 PLAGL2 PLAG1 like zinc finger 2 protein-coding 9.413 0.9882
+5324 PLAG1 PLAG1 zinc finger protein-coding 5.955 2.011
+5325 PLAGL1 PLAG1 like zinc finger 1 protein-coding 7.523 1.705
+5326 PLAGL2 PLAG1 like zinc finger 2 protein-coding 9.412 0.9877
5327 PLAT plasminogen activator, tissue type protein-coding 9.939 1.888
5328 PLAU plasminogen activator, urokinase protein-coding 9.9 2.185
-5329 PLAUR plasminogen activator, urokinase receptor protein-coding 9.03 1.864
+5329 PLAUR plasminogen activator, urokinase receptor protein-coding 9.029 1.864
533 ATP6V0B ATPase H+ transporting V0 subunit b protein-coding 11.39 0.6875
-5330 PLCB2 phospholipase C beta 2 protein-coding 7.874 1.372
-5331 PLCB3 phospholipase C beta 3 protein-coding 9.997 0.8983
-5332 PLCB4 phospholipase C beta 4 protein-coding 7.555 2.48
+5330 PLCB2 phospholipase C beta 2 protein-coding 7.875 1.373
+5331 PLCB3 phospholipase C beta 3 protein-coding 9.997 0.898
+5332 PLCB4 phospholipase C beta 4 protein-coding 7.557 2.479
5333 PLCD1 phospholipase C delta 1 protein-coding 8.564 1.071
-53335 BCL11A B cell CLL/lymphoma 11A protein-coding 6.55 2.382
-53339 BTBD1 BTB domain containing 1 protein-coding 10.46 0.5264
-5334 PLCL1 phospholipase C like 1 (inactive) protein-coding 6.499 1.775
+53335 BCL11A B cell CLL/lymphoma 11A protein-coding 6.551 2.381
+53339 BTBD1 BTB domain containing 1 protein-coding 10.46 0.5262
+5334 PLCL1 phospholipase C like 1 (inactive) protein-coding 6.5 1.774
53340 SPA17 sperm autoantigenic protein 17 protein-coding 6.916 1.095
-53342 IL17D interleukin 17D protein-coding 4.485 2.357
-53343 NUDT9 nudix hydrolase 9 protein-coding 9.353 0.6703
-53344 CHIC1 cysteine rich hydrophobic domain 1 protein-coding 7.872 1.144
-53346 TM6SF1 transmembrane 6 superfamily member 1 protein-coding 6.433 1.276
-53347 UBASH3A ubiquitin associated and SH3 domain containing A protein-coding 3.861 2.035
-53349 ZFYVE1 zinc finger FYVE-type containing 1 protein-coding 9.166 0.6176
-5335 PLCG1 phospholipase C gamma 1 protein-coding 10.72 0.7355
-53353 LRP1B LDL receptor related protein 1B protein-coding 3.106 3.02
-53354 PANK1 pantothenate kinase 1 protein-coding 7.382 1.33
-5336 PLCG2 phospholipase C gamma 2 protein-coding 8.24 1.367
-5337 PLD1 phospholipase D1 protein-coding 8.447 1.486
-53371 NUP54 nucleoporin 54 protein-coding 9.35 0.6014
-53373 TPCN1 two pore segment channel 1 protein-coding 10.28 0.8674
-5338 PLD2 phospholipase D2 protein-coding 9.399 0.7815
-5339 PLEC plectin protein-coding 13.18 0.9766
-534 ATP6V1G2 ATPase H+ transporting V1 subunit G2 protein-coding 4.447 2.419
-53405 CLIC5 chloride intracellular channel 5 protein-coding 6.794 2.138
-53407 STX18 syntaxin 18 protein-coding 9.179 0.7486
-5341 PLEK pleckstrin protein-coding 8.132 1.651
-5342 PLGLB2 plasminogen-like B2 protein-coding 5.09 1.719
-5345 SERPINF2 serpin family F member 2 protein-coding 6.92 2.674
-5346 PLIN1 perilipin 1 protein-coding 3.792 2.367
-5347 PLK1 polo like kinase 1 protein-coding 8.412 2.03
+53342 IL17D interleukin 17D protein-coding 4.486 2.356
+53343 NUDT9 nudix hydrolase 9 protein-coding 9.354 0.6702
+53344 CHIC1 cysteine rich hydrophobic domain 1 protein-coding 7.873 1.144
+53346 TM6SF1 transmembrane 6 superfamily member 1 protein-coding 6.435 1.276
+53347 UBASH3A ubiquitin associated and SH3 domain containing A protein-coding 3.863 2.036
+53349 ZFYVE1 zinc finger FYVE-type containing 1 protein-coding 9.166 0.6174
+5335 PLCG1 phospholipase C gamma 1 protein-coding 10.72 0.7352
+53353 LRP1B LDL receptor related protein 1B protein-coding 3.107 3.02
+53354 PANK1 pantothenate kinase 1 protein-coding 7.381 1.33
+5336 PLCG2 phospholipase C gamma 2 protein-coding 8.241 1.367
+5337 PLD1 phospholipase D1 protein-coding 8.448 1.487
+53371 NUP54 nucleoporin 54 protein-coding 9.35 0.6012
+53373 TPCN1 two pore segment channel 1 protein-coding 10.28 0.8673
+5338 PLD2 phospholipase D2 protein-coding 9.399 0.7813
+5339 PLEC plectin protein-coding 13.18 0.9763
+534 ATP6V1G2 ATPase H+ transporting V1 subunit G2 protein-coding 4.448 2.419
+53405 CLIC5 chloride intracellular channel 5 protein-coding 6.796 2.139
+53407 STX18 syntaxin 18 protein-coding 9.179 0.7484
+5341 PLEK pleckstrin protein-coding 8.133 1.652
+5342 PLGLB2 plasminogen-like B2 protein-coding 5.091 1.718
+5345 SERPINF2 serpin family F member 2 protein-coding 6.92 2.673
+5346 PLIN1 perilipin 1 protein-coding 3.793 2.367
+5347 PLK1 polo like kinase 1 protein-coding 8.409 2.03
5349 FXYD3 FXYD domain containing ion transport regulator 3 protein-coding 8.464 4.685
-535 ATP6V0A1 ATPase H+ transporting V0 subunit a1 protein-coding 10.66 0.8665
-5350 PLN phospholamban protein-coding 5.521 2.386
-5351 PLOD1 procollagen-lysine,2-oxoglutarate 5-dioxygenase 1 protein-coding 11.79 0.9405
+535 ATP6V0A1 ATPase H+ transporting V0 subunit a1 protein-coding 10.66 0.8663
+5350 PLN phospholamban protein-coding 5.523 2.387
+5351 PLOD1 procollagen-lysine,2-oxoglutarate 5-dioxygenase 1 protein-coding 11.79 0.9401
5352 PLOD2 procollagen-lysine,2-oxoglutarate 5-dioxygenase 2 protein-coding 10.51 1.504
-5354 PLP1 proteolipid protein 1 protein-coding 3.944 4.281
-5355 PLP2 proteolipid protein 2 protein-coding 10.89 1.627
-5356 PLRG1 pleiotropic regulator 1 protein-coding 9.686 0.4401
-5357 PLS1 plastin 1 protein-coding 8.29 2.388
-5358 PLS3 plastin 3 protein-coding 11.62 1.377
-5359 PLSCR1 phospholipid scramblase 1 protein-coding 9.941 1.211
-5360 PLTP phospholipid transfer protein protein-coding 10.88 1.773
+5354 PLP1 proteolipid protein 1 protein-coding 3.947 4.28
+5355 PLP2 proteolipid protein 2 protein-coding 10.89 1.626
+5356 PLRG1 pleiotropic regulator 1 protein-coding 9.686 0.44
+5357 PLS1 plastin 1 protein-coding 8.29 2.387
+5358 PLS3 plastin 3 protein-coding 11.62 1.376
+5359 PLSCR1 phospholipid scramblase 1 protein-coding 9.941 1.21
+5360 PLTP phospholipid transfer protein protein-coding 10.88 1.772
5361 PLXNA1 plexin A1 protein-coding 10.78 1.108
-53615 MBD3 methyl-CpG binding domain protein 3 protein-coding 10.93 0.7963
-53616 ADAM22 ADAM metallopeptidase domain 22 protein-coding 4.722 2.357
-5362 PLXNA2 plexin A2 protein-coding 9.775 1.193
-53630 BCO1 beta-carotene oxygenase 1 protein-coding 3.614 2.494
+53615 MBD3 methyl-CpG binding domain protein 3 protein-coding 10.93 0.796
+53616 ADAM22 ADAM metallopeptidase domain 22 protein-coding 4.723 2.357
+5362 PLXNA2 plexin A2 protein-coding 9.775 1.192
+53630 BCO1 beta-carotene oxygenase 1 protein-coding 3.614 2.493
53635 PTOV1 prostate tumor overexpressed 1 protein-coding 11.28 0.7778
-53637 S1PR5 sphingosine-1-phosphate receptor 5 protein-coding 5.309 2.217
+53637 S1PR5 sphingosine-1-phosphate receptor 5 protein-coding 5.309 2.216
5364 PLXNB1 plexin B1 protein-coding 11.13 1.162
5365 PLXNB3 plexin B3 protein-coding 7.505 2.729
-5366 PMAIP1 phorbol-12-myristate-13-acetate-induced protein 1 protein-coding 7.332 1.951
+5366 PMAIP1 phorbol-12-myristate-13-acetate-induced protein 1 protein-coding 7.332 1.95
5367 PMCH pro-melanin concentrating hormone protein-coding 1.522 1.337
5368 PNOC prepronociceptin protein-coding 2.938 2.233
-537 ATP6AP1 ATPase H+ transporting accessory protein 1 protein-coding 12.12 0.6366
-5371 PML promyelocytic leukemia protein-coding 10.9 0.8138
-5372 PMM1 phosphomannomutase 1 protein-coding 9.355 0.8501
-5373 PMM2 phosphomannomutase 2 protein-coding 9.928 0.878
-5376 PMP22 peripheral myelin protein 22 protein-coding 10.05 1.484
-5378 PMS1 PMS1 homolog 1, mismatch repair system component protein-coding 8.169 0.6067
-5379 PMS2P1 PMS1 homolog 2, mismatch repair system component pseudogene 1 pseudo 8.022 0.5878
-538 ATP7A ATPase copper transporting alpha protein-coding 8.519 0.9084
-5380 PMS2P2 PMS1 homolog 2, mismatch repair system component pseudogene 2 pseudo 5.641 0.7799
-5382 PMS2P4 PMS1 homolog 2, mismatch repair system component pseudogene 4 pseudo 5.086 0.9372
-53820 RIPPLY3 ripply transcriptional repressor 3 protein-coding 3.632 2.315
+537 ATP6AP1 ATPase H+ transporting accessory protein 1 protein-coding 12.12 0.6368
+5371 PML promyelocytic leukemia protein-coding 10.9 0.8135
+5372 PMM1 phosphomannomutase 1 protein-coding 9.354 0.8499
+5373 PMM2 phosphomannomutase 2 protein-coding 9.927 0.878
+5376 PMP22 peripheral myelin protein 22 protein-coding 10.05 1.483
+5378 PMS1 PMS1 homolog 1, mismatch repair system component protein-coding 8.169 0.6065
+5379 PMS2P1 PMS1 homolog 2, mismatch repair system component pseudogene 1 pseudo 8.022 0.5879
+538 ATP7A ATPase copper transporting alpha protein-coding 8.52 0.9082
+5380 PMS2P2 PMS1 homolog 2, mismatch repair system component pseudogene 2 pseudo 5.641 0.7796
+5382 PMS2P4 PMS1 homolog 2, mismatch repair system component pseudogene 4 pseudo 5.086 0.9374
+53820 RIPPLY3 ripply transcriptional repressor 3 protein-coding 3.631 2.315
53822 FXYD7 FXYD domain containing ion transport regulator 7 protein-coding 2.082 2.053
-53826 FXYD6 FXYD domain containing ion transport regulator 6 protein-coding 9.235 2.181
+53826 FXYD6 FXYD domain containing ion transport regulator 6 protein-coding 9.236 2.18
53827 FXYD5 FXYD domain containing ion transport regulator 5 protein-coding 10.33 1.462
-53829 P2RY13 purinergic receptor P2Y13 protein-coding 5.71 1.76
-5383 PMS2P5 PMS1 homolog 2, mismatch repair system component pseudogene 5 pseudo 5.959 0.6712
+53829 P2RY13 purinergic receptor P2Y13 protein-coding 5.711 1.761
+5383 PMS2P5 PMS1 homolog 2, mismatch repair system component pseudogene 5 pseudo 5.959 0.6711
53831 GPR84 G protein-coupled receptor 84 protein-coding 4.266 1.685
-53833 IL20RB interleukin 20 receptor subunit beta protein-coding 5.352 2.809
-53834 FGFRL1 fibroblast growth factor receptor like 1 protein-coding 9.382 1.553
+53833 IL20RB interleukin 20 receptor subunit beta protein-coding 5.351 2.808
+53834 FGFRL1 fibroblast growth factor receptor like 1 protein-coding 9.381 1.552
53836 GPR87 G protein-coupled receptor 87 protein-coding 3.999 3.909
-53838 C11orf24 chromosome 11 open reading frame 24 protein-coding 9.738 0.7749
-53840 TRIM34 tripartite motif containing 34 protein-coding 7.092 0.9983
-53841 CDHR5 cadherin related family member 5 protein-coding 3.722 4.142
-5387 PMS2P3 PMS1 homolog 2, mismatch repair system component pseudogene 3 pseudo 5.627 0.8301
-539 ATP5PO ATP synthase peripheral stalk subunit OSCP protein-coding 11.49 0.6166
-53905 DUOX1 dual oxidase 1 protein-coding 7.491 2.847
-53916 RAB4B RAB4B, member RAS oncogene family protein-coding 9.049 0.748
-53917 RAB24 RAB24, member RAS oncogene family protein-coding 9.111 0.7885
-53918 PELO pelota mRNA surveillance and ribosome rescue factor protein-coding 9.051 0.6301
-5393 EXOSC9 exosome component 9 protein-coding 8.871 0.5417
-53938 PPIL3 peptidylprolyl isomerase like 3 protein-coding 8.134 0.6573
-5394 EXOSC10 exosome component 10 protein-coding 10.33 0.4995
-53944 CSNK1G1 casein kinase 1 gamma 1 protein-coding 9.042 0.6631
-53947 A4GALT alpha 1,4-galactosyltransferase (P blood group) protein-coding 8.611 1.702
-5395 PMS2 PMS1 homolog 2, mismatch repair system component protein-coding 9.389 0.5283
-5396 PRRX1 paired related homeobox 1 protein-coding 8.817 2.311
-53981 CPSF2 cleavage and polyadenylation specific factor 2 protein-coding 10.25 0.5326
-54 ACP5 acid phosphatase 5, tartrate resistant protein-coding 9.472 2.094
-540 ATP7B ATPase copper transporting beta protein-coding 7.576 1.708
-54014 BRWD1 bromodomain and WD repeat domain containing 1 protein-coding 10.14 0.6414
-54020 SLC37A1 solute carrier family 37 member 1 protein-coding 8.982 1.314
-54033 RBM11 RNA binding motif protein 11 protein-coding 4.022 2.1
-54039 PCBP3 poly(rC) binding protein 3 protein-coding 4.706 2.399
-54058 C21orf58 chromosome 21 open reading frame 58 protein-coding 6.643 1.232
-54059 YBEY ybeY metallopeptidase (putative) protein-coding 7.465 0.9194
-54065 SMIM11A small integral membrane protein 11A protein-coding 8.211 0.7032
-54067 C21orf62-AS1 C21orf62 antisense RNA 1 ncRNA 2.774 1.134
-54069 MIS18A MIS18 kinetochore protein A protein-coding 7.991 0.9078
-54084 TSPEAR thrombospondin type laminin G domain and EAR repeats protein-coding 2.025 1.908
-5409 PNMT phenylethanolamine N-methyltransferase protein-coding 2.92 2.568
-54093 SETD4 SET domain containing 4 protein-coding 8.27 0.6082
-54097 FAM3B family with sequence similarity 3 member B protein-coding 5.634 3.533
-54102 CLIC6 chloride intracellular channel 6 protein-coding 6.793 3.152
-54103 GSAP gamma-secretase activating protein protein-coding 8.235 1.187
-54106 TLR9 toll like receptor 9 protein-coding 4.557 1.375
+53838 C11orf24 chromosome 11 open reading frame 24 protein-coding 9.738 0.7748
+53840 TRIM34 tripartite motif containing 34 protein-coding 7.093 0.9983
+53841 CDHR5 cadherin related family member 5 protein-coding 3.722 4.141
+5387 PMS2P3 PMS1 homolog 2, mismatch repair system component pseudogene 3 pseudo 5.627 0.83
+539 ATP5PO ATP synthase peripheral stalk subunit OSCP protein-coding 11.49 0.6167
+53905 DUOX1 dual oxidase 1 protein-coding 7.493 2.847
+53916 RAB4B RAB4B, member RAS oncogene family protein-coding 9.049 0.7481
+53917 RAB24 RAB24, member RAS oncogene family protein-coding 9.111 0.7883
+53918 PELO pelota mRNA surveillance and ribosome rescue factor protein-coding 9.051 0.6299
+5393 EXOSC9 exosome component 9 protein-coding 8.87 0.5417
+53938 PPIL3 peptidylprolyl isomerase like 3 protein-coding 8.134 0.6572
+5394 EXOSC10 exosome component 10 protein-coding 10.33 0.4993
+53944 CSNK1G1 casein kinase 1 gamma 1 protein-coding 9.042 0.6628
+53947 A4GALT alpha 1,4-galactosyltransferase (P blood group) protein-coding 8.611 1.701
+5395 PMS2 PMS1 homolog 2, mismatch repair system component protein-coding 9.389 0.5281
+5396 PRRX1 paired related homeobox 1 protein-coding 8.817 2.31
+53981 CPSF2 cleavage and polyadenylation specific factor 2 protein-coding 10.25 0.5325
+54 ACP5 acid phosphatase 5, tartrate resistant protein-coding 9.473 2.095
+540 ATP7B ATPase copper transporting beta protein-coding 7.576 1.707
+54014 BRWD1 bromodomain and WD repeat domain containing 1 protein-coding 10.14 0.6412
+54020 SLC37A1 solute carrier family 37 member 1 protein-coding 8.983 1.313
+54033 RBM11 RNA binding motif protein 11 protein-coding 4.023 2.1
+54039 PCBP3 poly(rC) binding protein 3 protein-coding 4.707 2.399
+54058 C21orf58 chromosome 21 open reading frame 58 protein-coding 6.643 1.231
+54059 YBEY ybeY metallopeptidase (putative) protein-coding 7.465 0.919
+54065 SMIM11A small integral membrane protein 11A protein-coding 8.211 0.703
+54067 C21orf62-AS1 C21orf62 antisense RNA 1 ncRNA 2.775 1.134
+54069 MIS18A MIS18 kinetochore protein A protein-coding 7.99 0.9083
+54084 TSPEAR thrombospondin type laminin G domain and EAR repeats protein-coding 2.026 1.907
+5409 PNMT phenylethanolamine N-methyltransferase protein-coding 2.922 2.568
+54093 SETD4 SET domain containing 4 protein-coding 8.271 0.6082
+54097 FAM3B family with sequence similarity 3 member B protein-coding 5.636 3.534
+54102 CLIC6 chloride intracellular channel 6 protein-coding 6.794 3.152
+54103 GSAP gamma-secretase activating protein protein-coding 8.236 1.187
+54106 TLR9 toll like receptor 9 protein-coding 4.558 1.375
54107 POLE3 DNA polymerase epsilon 3, accessory subunit protein-coding 10.54 0.5994
-54108 CHRAC1 chromatin accessibility complex 1 protein-coding 9.554 0.6303
-5411 PNN pinin, desmosome associated protein protein-coding 10.92 0.6267
-54112 GPR88 G protein-coupled receptor 88 protein-coding 2.49 2.197
-5412 UBL3 ubiquitin like 3 protein-coding 10.29 0.9683
+54108 CHRAC1 chromatin accessibility complex 1 protein-coding 9.554 0.6301
+5411 PNN pinin, desmosome associated protein protein-coding 10.92 0.6265
+54112 GPR88 G protein-coupled receptor 88 protein-coding 2.491 2.197
+5412 UBL3 ubiquitin like 3 protein-coding 10.29 0.9681
5413 SEPT5 septin 5 protein-coding 8.854 1.7
-5414 SEPT4 septin 4 protein-coding 7.675 1.782
-541468 LURAP1 leucine rich adaptor protein 1 protein-coding 4.631 1.779
-541471 MIR4435-2HG MIR4435-2 host gene ncRNA 7.532 1.423
-541473 LOC541473 FK506 binding protein 6, 36kDa pseudogene pseudo 2.661 1.382
-54148 MRPL39 mitochondrial ribosomal protein L39 protein-coding 8.532 0.5955
-54149 C21orf91 chromosome 21 open reading frame 91 protein-coding 8.418 1.053
-541565 C8orf58 chromosome 8 open reading frame 58 protein-coding 7.515 0.827
-541578 CXorf40B chromosome X open reading frame 40B protein-coding 8.812 0.5409
-54165 DCUN1D1 defective in cullin neddylation 1 domain containing 1 protein-coding 8.933 0.8432
-54187 NANS N-acetylneuraminate synthase protein-coding 10.14 0.9451
+5414 SEPT4 septin 4 protein-coding 7.676 1.781
+541468 LURAP1 leucine rich adaptor protein 1 protein-coding 4.633 1.779
+541471 MIR4435-2HG MIR4435-2 host gene ncRNA 7.531 1.423
+541473 LOC541473 FK506 binding protein 6, 36kDa pseudogene pseudo 2.662 1.382
+54148 MRPL39 mitochondrial ribosomal protein L39 protein-coding 8.532 0.5958
+54149 C21orf91 chromosome 21 open reading frame 91 protein-coding 8.418 1.052
+541565 C8orf58 chromosome 8 open reading frame 58 protein-coding 7.515 0.8266
+541578 CXorf40B chromosome X open reading frame 40B protein-coding 8.812 0.5408
+54165 DCUN1D1 defective in cullin neddylation 1 domain containing 1 protein-coding 8.933 0.8429
+54187 NANS N-acetylneuraminate synthase protein-coding 10.14 0.9452
5420 PODXL podocalyxin like protein-coding 10.64 1.324
-54205 CYCS cytochrome c, somatic protein-coding 11.53 0.7945
-54206 ERRFI1 ERBB receptor feedback inhibitor 1 protein-coding 10.51 1.559
+54205 CYCS cytochrome c, somatic protein-coding 11.53 0.7947
+54206 ERRFI1 ERBB receptor feedback inhibitor 1 protein-coding 10.51 1.56
54207 KCNK10 potassium two pore domain channel subfamily K member 10 protein-coding 2.875 2.565
54209 TREM2 triggering receptor expressed on myeloid cells 2 protein-coding 7.505 1.84
54210 TREM1 triggering receptor expressed on myeloid cells 1 protein-coding 4.919 2.573
-5422 POLA1 DNA polymerase alpha 1, catalytic subunit protein-coding 8.704 0.7837
-5423 POLB DNA polymerase beta protein-coding 8.562 0.8518
-5424 POLD1 DNA polymerase delta 1, catalytic subunit protein-coding 9.281 0.9863
-5425 POLD2 DNA polymerase delta 2, accessory subunit protein-coding 11.12 0.7105
-5426 POLE DNA polymerase epsilon, catalytic subunit protein-coding 9.73 0.9678
-5427 POLE2 DNA polymerase epsilon 2, accessory subunit protein-coding 5.921 1.615
+5422 POLA1 DNA polymerase alpha 1, catalytic subunit protein-coding 8.704 0.7834
+5423 POLB DNA polymerase beta protein-coding 8.561 0.8518
+5424 POLD1 DNA polymerase delta 1, catalytic subunit protein-coding 9.281 0.9862
+5425 POLD2 DNA polymerase delta 2, accessory subunit protein-coding 11.12 0.7107
+5426 POLE DNA polymerase epsilon, catalytic subunit protein-coding 9.73 0.9677
+5427 POLE2 DNA polymerase epsilon 2, accessory subunit protein-coding 5.919 1.615
542767 PCOTH Pro-X-Gly collagen triple helix like repeat containing protein-coding 4.334 1.675
-5428 POLG DNA polymerase gamma, catalytic subunit protein-coding 10.05 0.5258
-5429 POLH DNA polymerase eta protein-coding 9.083 0.6505
-5430 POLR2A RNA polymerase II subunit A protein-coding 12.2 0.6897
-5431 POLR2B RNA polymerase II subunit B protein-coding 10.91 0.528
-5432 POLR2C RNA polymerase II subunit C protein-coding 10.52 0.4887
-54328 GPR173 G protein-coupled receptor 173 protein-coding 4.112 2.122
+5428 POLG DNA polymerase gamma, catalytic subunit protein-coding 10.05 0.5257
+5429 POLH DNA polymerase eta protein-coding 9.083 0.6502
+5430 POLR2A RNA polymerase II subunit A protein-coding 12.2 0.6894
+5431 POLR2B RNA polymerase II subunit B protein-coding 10.91 0.5278
+5432 POLR2C RNA polymerase II subunit C protein-coding 10.52 0.4885
+54328 GPR173 G protein-coupled receptor 173 protein-coding 4.113 2.122
54329 GPR85 G protein-coupled receptor 85 protein-coding 4.714 1.716
-5433 POLR2D RNA polymerase II subunit D protein-coding 9.146 0.636
-54331 GNG2 G protein subunit gamma 2 protein-coding 8.246 1.592
+5433 POLR2D RNA polymerase II subunit D protein-coding 9.145 0.636
+54331 GNG2 G protein subunit gamma 2 protein-coding 8.246 1.591
54332 GDAP1 ganglioside induced differentiation associated protein 1 protein-coding 7.951 1.368
-5434 POLR2E RNA polymerase II subunit E protein-coding 11.39 0.5809
+5434 POLR2E RNA polymerase II subunit E protein-coding 11.39 0.5807
54344 DPM3 dolichyl-phosphate mannosyltransferase subunit 3 protein-coding 8.746 1.018
54345 SOX18 SRY-box 18 protein-coding 7.152 1.27
-5435 POLR2F RNA polymerase II subunit F protein-coding 9.687 0.8097
+5435 POLR2F RNA polymerase II subunit F protein-coding 9.686 0.8097
5436 POLR2G RNA polymerase II subunit G protein-coding 10.03 0.5666
-54360 CYTL1 cytokine like 1 protein-coding 4.103 1.957
-54361 WNT4 Wnt family member 4 protein-coding 6.107 2.339
-5437 POLR2H RNA polymerase II subunit H protein-coding 9.894 0.7406
-5438 POLR2I RNA polymerase II subunit I protein-coding 9.226 0.7442
-54386 TERF2IP TERF2 interacting protein protein-coding 10.64 0.7921
+54360 CYTL1 cytokine like 1 protein-coding 4.104 1.957
+54361 WNT4 Wnt family member 4 protein-coding 6.108 2.339
+5437 POLR2H RNA polymerase II subunit H protein-coding 9.894 0.7408
+5438 POLR2I RNA polymerase II subunit I protein-coding 9.226 0.7443
+54386 TERF2IP TERF2 interacting protein protein-coding 10.64 0.7922
5439 POLR2J RNA polymerase II subunit J protein-coding 10.23 0.6785
5440 POLR2K RNA polymerase II subunit K protein-coding 9.912 0.602
-54407 SLC38A2 solute carrier family 38 member 2 protein-coding 11.94 0.9164
-5441 POLR2L RNA polymerase II subunit L protein-coding 10.67 0.8256
-54413 NLGN3 neuroligin 3 protein-coding 5.204 2.442
+54407 SLC38A2 solute carrier family 38 member 2 protein-coding 11.94 0.9163
+5441 POLR2L RNA polymerase II subunit L protein-coding 10.67 0.8255
+54413 NLGN3 neuroligin 3 protein-coding 5.205 2.442
54414 SIAE sialic acid acetylesterase protein-coding 9.646 1.239
-5442 POLRMT RNA polymerase mitochondrial protein-coding 9.792 0.6802
+5442 POLRMT RNA polymerase mitochondrial protein-coding 9.792 0.68
54429 TAS2R5 taste 2 receptor member 5 protein-coding 2.79 1.231
-5443 POMC proopiomelanocortin protein-coding 3.871 1.946
-54431 DNAJC10 DnaJ heat shock protein family (Hsp40) member C10 protein-coding 11.08 0.8228
-54432 YIPF1 Yip1 domain family member 1 protein-coding 9.49 0.7261
-54433 GAR1 GAR1 ribonucleoprotein protein-coding 8.626 0.6043
+5443 POMC proopiomelanocortin protein-coding 3.873 1.946
+54431 DNAJC10 DnaJ heat shock protein family (Hsp40) member C10 protein-coding 11.08 0.8225
+54432 YIPF1 Yip1 domain family member 1 protein-coding 9.49 0.726
+54433 GAR1 GAR1 ribonucleoprotein protein-coding 8.626 0.6044
54434 SSH1 slingshot protein phosphatase 1 protein-coding 10.06 0.6369
-54435 HCG4 HLA complex group 4 (non-protein coding) ncRNA 4.637 2.192
+54435 HCG4 HLA complex group 4 (non-protein coding) ncRNA 4.638 2.191
54436 SH3TC1 SH3 domain and tetratricopeptide repeats 1 protein-coding 8.77 1.237
-54437 SEMA5B semaphorin 5B protein-coding 5.969 2.319
+54437 SEMA5B semaphorin 5B protein-coding 5.967 2.318
54438 GFOD1 glucose-fructose oxidoreductase domain containing 1 protein-coding 5.565 1.315
-54439 RBM27 RNA binding motif protein 27 protein-coding 9.561 0.5692
-54440 SASH3 SAM and SH3 domain containing 3 protein-coding 7.841 1.614
-54441 STAG3L1 stromal antigen 3-like 1 (pseudogene) pseudo 5.901 1.216
-54442 KCTD5 potassium channel tetramerization domain containing 5 protein-coding 9.762 0.6415
-54443 ANLN anillin actin binding protein protein-coding 8.971 2.111
-5445 PON2 paraoxonase 2 protein-coding 10.52 1.196
+54439 RBM27 RNA binding motif protein 27 protein-coding 9.561 0.569
+54440 SASH3 SAM and SH3 domain containing 3 protein-coding 7.841 1.615
+54441 STAG3L1 stromal antigen 3-like 1 (pseudogene) pseudo 5.901 1.215
+54442 KCTD5 potassium channel tetramerization domain containing 5 protein-coding 9.761 0.6415
+54443 ANLN anillin actin binding protein protein-coding 8.969 2.111
+5445 PON2 paraoxonase 2 protein-coding 10.52 1.195
54453 RIN2 Ras and Rab interactor 2 protein-coding 10.12 1.121
-54454 ATAD2B ATPase family, AAA domain containing 2B protein-coding 8.25 0.7231
-54455 FBXO42 F-box protein 42 protein-coding 9.002 0.4656
+54454 ATAD2B ATPase family, AAA domain containing 2B protein-coding 8.25 0.7229
+54455 FBXO42 F-box protein 42 protein-coding 9.003 0.4656
54456 MOV10L1 Mov10 RISC complex RNA helicase like 1 protein-coding 2.9 1.707
-54457 TAF7L TATA-box binding protein associated factor 7 like protein-coding 2.037 1.698
-54458 PRR13 proline rich 13 protein-coding 11.11 0.7501
-54460 MRPS21 mitochondrial ribosomal protein S21 protein-coding 10.24 0.837
-54461 FBXW5 F-box and WD repeat domain containing 5 protein-coding 11.18 0.7116
+54457 TAF7L TATA-box binding protein associated factor 7 like protein-coding 2.037 1.697
+54458 PRR13 proline rich 13 protein-coding 11.11 0.75
+54460 MRPS21 mitochondrial ribosomal protein S21 protein-coding 10.24 0.8368
+54461 FBXW5 F-box and WD repeat domain containing 5 protein-coding 11.18 0.7112
54462 CCSER2 coiled-coil serine rich protein 2 protein-coding 9.946 0.6864
54463 RETREG1 reticulophagy regulator 1 protein-coding 8.226 2.092
-54464 XRN1 5'-3' exoribonuclease 1 protein-coding 9.697 0.7504
-54465 ETAA1 ETAA1, ATR kinase activator protein-coding 8.302 0.6064
-54466 SPIN2A spindlin family member 2A protein-coding 1.105 1.043
-54467 ANKIB1 ankyrin repeat and IBR domain containing 1 protein-coding 10.28 0.8057
-54468 MIOS meiosis regulator for oocyte development protein-coding 9.133 0.6631
-54469 ZFAND6 zinc finger AN1-type containing 6 protein-coding 10.36 0.5296
-5447 POR cytochrome p450 oxidoreductase protein-coding 11.32 0.9399
+54464 XRN1 5'-3' exoribonuclease 1 protein-coding 9.697 0.7501
+54465 ETAA1 ETAA1, ATR kinase activator protein-coding 8.303 0.6062
+54466 SPIN2A spindlin family member 2A protein-coding 1.106 1.042
+54467 ANKIB1 ankyrin repeat and IBR domain containing 1 protein-coding 10.28 0.8054
+54468 MIOS meiosis regulator for oocyte development protein-coding 9.133 0.663
+54469 ZFAND6 zinc finger AN1-type containing 6 protein-coding 10.36 0.5294
+5447 POR cytochrome p450 oxidoreductase protein-coding 11.32 0.9396
54470 ARMCX6 armadillo repeat containing, X-linked 6 protein-coding 7.586 1.085
-54471 MIEF1 mitochondrial elongation factor 1 protein-coding 10.05 0.5285
-54472 TOLLIP toll interacting protein protein-coding 10.72 0.7172
-54475 NLE1 notchless homolog 1 protein-coding 8.506 0.7018
+54471 MIEF1 mitochondrial elongation factor 1 protein-coding 10.05 0.5283
+54472 TOLLIP toll interacting protein protein-coding 10.72 0.7169
+54475 NLE1 notchless homolog 1 protein-coding 8.505 0.7018
54476 RNF216 ring finger protein 216 protein-coding 10.31 0.5324
-54477 PLEKHA5 pleckstrin homology domain containing A5 protein-coding 9.458 0.9789
-54478 PIMREG PICALM interacting mitotic regulator protein-coding 6.435 1.964
+54477 PLEKHA5 pleckstrin homology domain containing A5 protein-coding 9.458 0.9785
+54478 PIMREG PICALM interacting mitotic regulator protein-coding 6.432 1.965
54480 CHPF2 chondroitin polymerizing factor 2 protein-coding 10.59 0.6793
-54482 TRMT13 tRNA methyltransferase 13 homolog protein-coding 7.83 0.6583
-54487 DGCR8 DGCR8, microprocessor complex subunit protein-coding 9.596 0.4722
-54491 OTULINL OTU deubiquitinase with linear linkage specificity like protein-coding 8.056 1.521
+54482 TRMT13 tRNA methyltransferase 13 homolog protein-coding 7.83 0.6582
+54487 DGCR8 DGCR8, microprocessor complex subunit protein-coding 9.596 0.472
+54491 OTULINL OTU deubiquitinase with linear linkage specificity like protein-coding 8.057 1.521
54492 NEURL1B neuralized E3 ubiquitin protein ligase 1B protein-coding 9.472 1.189
-54494 C11orf71 chromosome 11 open reading frame 71 protein-coding 7.896 0.9156
-54495 TMX3 thioredoxin related transmembrane protein 3 protein-coding 9.799 0.6316
-54496 PRMT7 protein arginine methyltransferase 7 protein-coding 9.141 0.6419
-54497 HEATR5B HEAT repeat containing 5B protein-coding 9.47 0.6749
-54498 SMOX spermine oxidase protein-coding 8.581 1.427
-54499 TMCO1 transmembrane and coiled-coil domains 1 protein-coding 11.14 0.69
-545 ATR ATR serine/threonine kinase protein-coding 9.303 0.7118
-5450 POU2AF1 POU class 2 associating factor 1 protein-coding 5.842 2.754
-54502 RBM47 RNA binding motif protein 47 protein-coding 10.39 1.92
+54494 C11orf71 chromosome 11 open reading frame 71 protein-coding 7.896 0.9153
+54495 TMX3 thioredoxin related transmembrane protein 3 protein-coding 9.799 0.6315
+54496 PRMT7 protein arginine methyltransferase 7 protein-coding 9.141 0.6417
+54497 HEATR5B HEAT repeat containing 5B protein-coding 9.47 0.6747
+54498 SMOX spermine oxidase protein-coding 8.58 1.426
+54499 TMCO1 transmembrane and coiled-coil domains 1 protein-coding 11.14 0.6899
+545 ATR ATR serine/threonine kinase protein-coding 9.303 0.7115
+5450 POU2AF1 POU class 2 associating factor 1 protein-coding 5.843 2.754
+54502 RBM47 RNA binding motif protein 47 protein-coding 10.39 1.919
54503 ZDHHC13 zinc finger DHHC-type containing 13 protein-coding 8.614 1.121
-54504 CPVL carboxypeptidase, vitellogenic like protein-coding 8.855 1.793
-54505 DHX29 DExH-box helicase 29 protein-coding 9.644 0.545
-54507 ADAMTSL4 ADAMTS like 4 protein-coding 7.906 1.821
-54508 EPB41L4A-DT EPB41L4A divergent transcript ncRNA 4.122 1.446
-54509 RHOF ras homolog family member F, filopodia associated protein-coding 7.717 2.148
-5451 POU2F1 POU class 2 homeobox 1 protein-coding 6.339 0.9734
-54510 PCDH18 protocadherin 18 protein-coding 7.541 1.684
-54512 EXOSC4 exosome component 4 protein-coding 9.004 0.929
-54516 MTRF1L mitochondrial translational release factor 1 like protein-coding 7.992 0.4817
-54517 PUS7 pseudouridylate synthase 7 (putative) protein-coding 8.589 0.9293
-54518 APBB1IP amyloid beta precursor protein binding family B member 1 interacting protein protein-coding 7.618 1.916
-5452 POU2F2 POU class 2 homeobox 2 protein-coding 6.059 1.532
-54520 CCDC93 coiled-coil domain containing 93 protein-coding 9.501 0.6162
-54521 WDR44 WD repeat domain 44 protein-coding 8.501 0.752
-54522 ANKRD16 ankyrin repeat domain 16 protein-coding 7.292 0.6459
-54529 ASNSD1 asparagine synthetase domain containing 1 protein-coding 9.765 0.4367
-5453 POU3F1 POU class 3 homeobox 1 protein-coding 3.544 2.31
-54531 MIER2 MIER family member 2 protein-coding 8.869 0.6536
+54504 CPVL carboxypeptidase, vitellogenic like protein-coding 8.855 1.794
+54505 DHX29 DExH-box helicase 29 protein-coding 9.645 0.545
+54507 ADAMTSL4 ADAMTS like 4 protein-coding 7.907 1.822
+54508 EPB41L4A-DT EPB41L4A divergent transcript ncRNA 4.123 1.445
+54509 RHOF ras homolog family member F, filopodia associated protein-coding 7.718 2.148
+5451 POU2F1 POU class 2 homeobox 1 protein-coding 6.339 0.9732
+54510 PCDH18 protocadherin 18 protein-coding 7.542 1.684
+54512 EXOSC4 exosome component 4 protein-coding 9.003 0.9291
+54516 MTRF1L mitochondrial translational release factor 1 like protein-coding 7.992 0.4815
+54517 PUS7 pseudouridylate synthase 7 (putative) protein-coding 8.588 0.9292
+54518 APBB1IP amyloid beta precursor protein binding family B member 1 interacting protein protein-coding 7.619 1.916
+5452 POU2F2 POU class 2 homeobox 2 protein-coding 6.06 1.531
+54520 CCDC93 coiled-coil domain containing 93 protein-coding 9.501 0.6163
+54521 WDR44 WD repeat domain 44 protein-coding 8.502 0.7517
+54522 ANKRD16 ankyrin repeat domain 16 protein-coding 7.291 0.6456
+54529 ASNSD1 asparagine synthetase domain containing 1 protein-coding 9.765 0.4366
+5453 POU3F1 POU class 3 homeobox 1 protein-coding 3.544 2.309
+54531 MIER2 MIER family member 2 protein-coding 8.869 0.6535
54532 USP53 ubiquitin specific peptidase 53 protein-coding 8.96 1.116
-54534 MRPL50 mitochondrial ribosomal protein L50 protein-coding 8.782 0.5731
-54535 CCHCR1 coiled-coil alpha-helical rod protein 1 protein-coding 9.134 0.8494
-54536 EXOC6 exocyst complex component 6 protein-coding 8.617 0.9079
-54537 FAM35A family with sequence similarity 35 member A protein-coding 9.07 0.6461
+54534 MRPL50 mitochondrial ribosomal protein L50 protein-coding 8.782 0.5729
+54535 CCHCR1 coiled-coil alpha-helical rod protein 1 protein-coding 9.133 0.8492
+54536 EXOC6 exocyst complex component 6 protein-coding 8.618 0.9076
+54537 FAM35A family with sequence similarity 35 member A protein-coding 9.07 0.6458
54538 ROBO4 roundabout guidance receptor 4 protein-coding 8.459 1.25
-54539 NDUFB11 NADH:ubiquinone oxidoreductase subunit B11 protein-coding 10.86 0.7279
+54539 NDUFB11 NADH:ubiquinone oxidoreductase subunit B11 protein-coding 10.85 0.7278
54540 FAM193B family with sequence similarity 193 member B protein-coding 9.42 0.8568
54541 DDIT4 DNA damage inducible transcript 4 protein-coding 11.58 1.356
-54542 RC3H2 ring finger and CCCH-type domains 2 protein-coding 8.229 0.9488
-54543 TOMM7 translocase of outer mitochondrial membrane 7 protein-coding 10.95 0.7201
-54545 MTMR12 myotubularin related protein 12 protein-coding 9.777 0.7285
-54549 SDK2 sidekick cell adhesion molecule 2 protein-coding 6.477 2.446
-54552 GNL3L G protein nucleolar 3 like protein-coding 9.382 0.6647
-54554 WDR5B WD repeat domain 5B protein-coding 8.102 0.6454
+54542 RC3H2 ring finger and CCCH-type domains 2 protein-coding 8.229 0.9486
+54543 TOMM7 translocase of outer mitochondrial membrane 7 protein-coding 10.95 0.7199
+54545 MTMR12 myotubularin related protein 12 protein-coding 9.777 0.7286
+54549 SDK2 sidekick cell adhesion molecule 2 protein-coding 6.478 2.446
+54552 GNL3L G protein nucleolar 3 like protein-coding 9.382 0.6645
+54554 WDR5B WD repeat domain 5B protein-coding 8.102 0.6451
54555 DDX49 DEAD-box helicase 49 protein-coding 10.05 0.6307
-54556 ING3 inhibitor of growth family member 3 protein-coding 7.818 0.6767
-54557 SGTB small glutamine rich tetratricopeptide repeat containing beta protein-coding 7.659 1
-54558 SPATA6 spermatogenesis associated 6 protein-coding 5.668 1.57
-54566 EPB41L4B erythrocyte membrane protein band 4.1 like 4B protein-coding 8.386 2.286
+54556 ING3 inhibitor of growth family member 3 protein-coding 7.819 0.6765
+54557 SGTB small glutamine rich tetratricopeptide repeat containing beta protein-coding 7.66 1.001
+54558 SPATA6 spermatogenesis associated 6 protein-coding 5.669 1.569
+54566 EPB41L4B erythrocyte membrane protein band 4.1 like 4B protein-coding 8.387 2.286
54567 DLL4 delta like canonical Notch ligand 4 protein-coding 8.044 1.323
-5457 POU4F1 POU class 4 homeobox 1 protein-coding 1.954 2.144
+5457 POU4F1 POU class 4 homeobox 1 protein-coding 1.953 2.143
54581 SCAND2P SCAN domain containing 2 pseudogene pseudo 7.981 0.5857
-54583 EGLN1 egl-9 family hypoxia inducible factor 1 protein-coding 10.38 0.6939
-54584 GNB1L G protein subunit beta 1 like protein-coding 6.994 0.9841
-54585 LZTFL1 leucine zipper transcription factor like 1 protein-coding 8.754 0.8603
-54587 MXRA8 matrix remodeling associated 8 protein-coding 9.757 1.834
-54596 L1TD1 LINE1 type transposase domain containing 1 protein-coding 2.434 2.323
-546 ATRX ATRX, chromatin remodeler protein-coding 10.42 0.8007
-5460 POU5F1 POU class 5 homeobox 1 protein-coding 3.799 2.651
-54602 NDFIP2 Nedd4 family interacting protein 2 protein-coding 9.957 0.9426
+54583 EGLN1 egl-9 family hypoxia inducible factor 1 protein-coding 10.38 0.6937
+54584 GNB1L G protein subunit beta 1 like protein-coding 6.993 0.9839
+54585 LZTFL1 leucine zipper transcription factor like 1 protein-coding 8.754 0.8601
+54587 MXRA8 matrix remodeling associated 8 protein-coding 9.757 1.833
+54596 L1TD1 LINE1 type transposase domain containing 1 protein-coding 2.436 2.325
+546 ATRX ATRX, chromatin remodeler protein-coding 10.42 0.8006
+5460 POU5F1 POU class 5 homeobox 1 protein-coding 3.8 2.653
+54602 NDFIP2 Nedd4 family interacting protein 2 protein-coding 9.956 0.9424
54606 DDX56 DEAD-box helicase 56 protein-coding 10.7 0.5217
-54617 INO80 INO80 complex subunit protein-coding 9.591 0.4746
-54619 CCNJ cyclin J protein-coding 7.474 0.9347
-5462 POU5F1B POU class 5 homeobox 1B protein-coding 4.287 1.954
-54620 FBXL19 F-box and leucine rich repeat protein 19 protein-coding 9.187 0.801
+54617 INO80 INO80 complex subunit protein-coding 9.591 0.4745
+54619 CCNJ cyclin J protein-coding 7.474 0.9342
+5462 POU5F1B POU class 5 homeobox 1B protein-coding 4.287 1.955
+54620 FBXL19 F-box and leucine rich repeat protein 19 protein-coding 9.186 0.8007
54621 VSIG10 V-set and immunoglobulin domain containing 10 protein-coding 8.958 1.104
-54622 ARL15 ADP ribosylation factor like GTPase 15 protein-coding 7.814 0.9894
+54622 ARL15 ADP ribosylation factor like GTPase 15 protein-coding 7.814 0.9889
54623 PAF1 PAF1 homolog, Paf1/RNA polymerase II complex component protein-coding 10.62 0.5485
54625 PARP14 poly(ADP-ribose) polymerase family member 14 protein-coding 11.04 1.034
-54626 HES2 hes family bHLH transcription factor 2 protein-coding 5.632 3.072
-54627 MAP10 microtubule associated protein 10 protein-coding 5.728 1.709
-54629 MINDY2 MINDY lysine 48 deubiquitinase 2 protein-coding 7.311 1.305
-5463 POU6F1 POU class 6 homeobox 1 protein-coding 7.404 1.357
-5464 PPA1 pyrophosphatase (inorganic) 1 protein-coding 11.41 0.8101
-5465 PPARA peroxisome proliferator activated receptor alpha protein-coding 9.215 1.04
-54660 PCDHB18P protocadherin beta 18 pseudogene pseudo 3.002 1.241
-54662 TBC1D13 TBC1 domain family member 13 protein-coding 9.773 0.5945
-54663 WDR74 WD repeat domain 74 protein-coding 9.489 0.6898
-54664 TMEM106B transmembrane protein 106B protein-coding 10.49 0.814
-54665 RSBN1 round spermatid basic protein 1 protein-coding 8.874 0.6238
-5467 PPARD peroxisome proliferator activated receptor delta protein-coding 10.35 0.7349
-54674 LRRN3 leucine rich repeat neuronal 3 protein-coding 4.809 2.623
-54675 CRLS1 cardiolipin synthase 1 protein-coding 10.08 0.8025
-54676 GTPBP2 GTP binding protein 2 protein-coding 9.965 0.6481
-54677 CROT carnitine O-octanoyltransferase protein-coding 8.824 1.164
-5468 PPARG peroxisome proliferator activated receptor gamma protein-coding 7.369 2.16
-54680 ZNHIT6 zinc finger HIT-type containing 6 protein-coding 8.638 0.6176
+54626 HES2 hes family bHLH transcription factor 2 protein-coding 5.632 3.071
+54627 MAP10 microtubule associated protein 10 protein-coding 5.729 1.709
+54629 MINDY2 MINDY lysine 48 deubiquitinase 2 protein-coding 7.312 1.305
+5463 POU6F1 POU class 6 homeobox 1 protein-coding 7.405 1.357
+5464 PPA1 pyrophosphatase (inorganic) 1 protein-coding 11.41 0.8098
+5465 PPARA peroxisome proliferator activated receptor alpha protein-coding 9.215 1.039
+54660 PCDHB18P protocadherin beta 18 pseudogene pseudo 3.003 1.241
+54662 TBC1D13 TBC1 domain family member 13 protein-coding 9.773 0.5944
+54663 WDR74 WD repeat domain 74 protein-coding 9.488 0.6898
+54664 TMEM106B transmembrane protein 106B protein-coding 10.49 0.8138
+54665 RSBN1 round spermatid basic protein 1 protein-coding 8.875 0.6238
+5467 PPARD peroxisome proliferator activated receptor delta protein-coding 10.35 0.7346
+54674 LRRN3 leucine rich repeat neuronal 3 protein-coding 4.811 2.624
+54675 CRLS1 cardiolipin synthase 1 protein-coding 10.08 0.8023
+54676 GTPBP2 GTP binding protein 2 protein-coding 9.965 0.6479
+54677 CROT carnitine O-octanoyltransferase protein-coding 8.825 1.164
+5468 PPARG peroxisome proliferator activated receptor gamma protein-coding 7.369 2.159
+54680 ZNHIT6 zinc finger HIT-type containing 6 protein-coding 8.638 0.6174
54681 P4HTM prolyl 4-hydroxylase, transmembrane protein-coding 9.368 1.286
-54682 MANSC1 MANSC domain containing 1 protein-coding 9.287 1.263
-5469 MED1 mediator complex subunit 1 protein-coding 10.17 0.6865
-547 KIF1A kinesin family member 1A protein-coding 5.601 4.487
-54700 RRN3 RRN3 homolog, RNA polymerase I transcription factor protein-coding 10.16 0.5299
+54682 MANSC1 MANSC domain containing 1 protein-coding 9.287 1.262
+5469 MED1 mediator complex subunit 1 protein-coding 10.17 0.6863
+547 KIF1A kinesin family member 1A protein-coding 5.604 4.487
+54700 RRN3 RRN3 homolog, RNA polymerase I transcription factor protein-coding 10.16 0.5297
54704 PDP1 pyruvate dehyrogenase phosphatase catalytic subunit 1 protein-coding 9.527 1.103
-54707 GPN2 GPN-loop GTPase 2 protein-coding 8.204 0.4955
+54707 GPN2 GPN-loop GTPase 2 protein-coding 8.204 0.4953
54708 MARCH5 membrane associated ring-CH-type finger 5 protein-coding 9.834 0.5478
-5471 PPAT phosphoribosyl pyrophosphate amidotransferase protein-coding 8.434 0.8186
-54716 SLC6A20 solute carrier family 6 member 20 protein-coding 4.244 3.133
-54718 BTN2A3P butyrophilin subfamily 2 member A3, pseudogene pseudo 4.45 1.027
-54726 OTUD4 OTU deubiquitinase 4 protein-coding 9.885 0.6833
-5473 PPBP pro-platelet basic protein protein-coding 1.706 1.96
-54732 TMED9 transmembrane p24 trafficking protein 9 protein-coding 12.05 0.6271
+5471 PPAT phosphoribosyl pyrophosphate amidotransferase protein-coding 8.433 0.8188
+54716 SLC6A20 solute carrier family 6 member 20 protein-coding 4.245 3.134
+54718 BTN2A3P butyrophilin subfamily 2 member A3, pseudogene pseudo 4.451 1.027
+54726 OTUD4 OTU deubiquitinase 4 protein-coding 9.885 0.6831
+5473 PPBP pro-platelet basic protein protein-coding 1.706 1.959
+54732 TMED9 transmembrane p24 trafficking protein 9 protein-coding 12.05 0.627
54733 SLC35F2 solute carrier family 35 member F2 protein-coding 8.722 1.608
-54734 RAB39A RAB39A, member RAS oncogene family protein-coding 2.824 1.712
-54737 MPHOSPH8 M-phase phosphoprotein 8 protein-coding 9.487 0.6795
-54739 XAF1 XIAP associated factor 1 protein-coding 9.286 1.566
-54741 LEPROT leptin receptor overlapping transcript protein-coding 8.714 1.317
-54742 LY6K lymphocyte antigen 6 family member K protein-coding 5.317 3.049
-54749 EPDR1 ependymin related 1 protein-coding 8.544 1.917
-5475 PPEF1 protein phosphatase with EF-hand domain 1 protein-coding 3.257 1.789
+54734 RAB39A RAB39A, member RAS oncogene family protein-coding 2.825 1.712
+54737 MPHOSPH8 M-phase phosphoprotein 8 protein-coding 9.488 0.6795
+54739 XAF1 XIAP associated factor 1 protein-coding 9.287 1.567
+54741 LEPROT leptin receptor overlapping transcript protein-coding 8.715 1.317
+54742 LY6K lymphocyte antigen 6 family member K protein-coding 5.315 3.049
+54749 EPDR1 ependymin related 1 protein-coding 8.545 1.917
+5475 PPEF1 protein phosphatase with EF-hand domain 1 protein-coding 3.256 1.789
54751 FBLIM1 filamin binding LIM protein 1 protein-coding 9.998 1.515
-54752 FNDC8 fibronectin type III domain containing 8 protein-coding 3.204 0.9754
-54753 ZNF853 zinc finger protein 853 protein-coding 7.471 1.845
-54754 NUTM2F NUT family member 2F protein-coding 1.941 1.076
-54756 IL17RD interleukin 17 receptor D protein-coding 7.865 1.963
-54757 FAM20A FAM20A, golgi associated secretory pathway pseudokinase protein-coding 7.524 2.287
-54758 KLHDC4 kelch domain containing 4 protein-coding 8.466 0.7333
-5476 CTSA cathepsin A protein-coding 11.91 0.9369
+54752 FNDC8 fibronectin type III domain containing 8 protein-coding 3.204 0.975
+54753 ZNF853 zinc finger protein 853 protein-coding 7.472 1.844
+54754 NUTM2F NUT family member 2F protein-coding 1.942 1.077
+54756 IL17RD interleukin 17 receptor D protein-coding 7.865 1.962
+54757 FAM20A FAM20A, golgi associated secretory pathway pseudokinase protein-coding 7.523 2.287
+54758 KLHDC4 kelch domain containing 4 protein-coding 8.466 0.733
+5476 CTSA cathepsin A protein-coding 11.91 0.9368
54760 PCSK4 proprotein convertase subtilisin/kexin type 4 protein-coding 5.62 1.508
54762 GRAMD1C GRAM domain containing 1C protein-coding 7.152 1.513
-54764 ZRANB1 zinc finger RANBP2-type containing 1 protein-coding 9.773 0.5228
-54765 TRIM44 tripartite motif containing 44 protein-coding 9.741 0.9066
-54768 HYDIN HYDIN, axonemal central pair apparatus protein protein-coding 5.407 2.407
-54776 PPP1R12C protein phosphatase 1 regulatory subunit 12C protein-coding 10.33 0.7139
-54778 RNF111 ring finger protein 111 protein-coding 9.159 0.5965
-5478 PPIA peptidylprolyl isomerase A protein-coding 12.32 0.6103
-54780 NSMCE4A NSE4 homolog A, SMC5-SMC6 complex component protein-coding 8.927 0.6398
-54784 ALKBH4 alkB homolog 4, lysine demethylase protein-coding 8.337 0.6238
-54785 BORCS6 BLOC-1 related complex subunit 6 protein-coding 7.95 0.668
-54788 DNAJB12 DnaJ heat shock protein family (Hsp40) member B12 protein-coding 10.24 0.4625
+54764 ZRANB1 zinc finger RANBP2-type containing 1 protein-coding 9.774 0.5228
+54765 TRIM44 tripartite motif containing 44 protein-coding 9.741 0.9063
+54768 HYDIN HYDIN, axonemal central pair apparatus protein protein-coding 5.408 2.406
+54776 PPP1R12C protein phosphatase 1 regulatory subunit 12C protein-coding 10.33 0.7143
+54778 RNF111 ring finger protein 111 protein-coding 9.16 0.5962
+5478 PPIA peptidylprolyl isomerase A protein-coding 12.32 0.6107
+54780 NSMCE4A NSE4 homolog A, SMC5-SMC6 complex component protein-coding 8.927 0.6397
+54784 ALKBH4 alkB homolog 4, lysine demethylase protein-coding 8.337 0.6236
+54785 BORCS6 BLOC-1 related complex subunit 6 protein-coding 7.95 0.6678
+54788 DNAJB12 DnaJ heat shock protein family (Hsp40) member B12 protein-coding 10.24 0.4624
5479 PPIB peptidylprolyl isomerase B protein-coding 13.31 0.7979
-54790 TET2 tet methylcytosine dioxygenase 2 protein-coding 9.009 0.8527
-54793 KCTD9 potassium channel tetramerization domain containing 9 protein-coding 8.912 0.8656
-54795 TRPM4 transient receptor potential cation channel subfamily M member 4 protein-coding 9.674 1.567
-54796 BNC2 basonuclin 2 protein-coding 6.9 2.039
-54797 MED18 mediator complex subunit 18 protein-coding 8.262 0.5685
-54798 DCHS2 dachsous cadherin-related 2 protein-coding 3.939 2.253
-54799 MBTD1 mbt domain containing 1 protein-coding 8.893 0.7423
+54790 TET2 tet methylcytosine dioxygenase 2 protein-coding 9.009 0.8524
+54793 KCTD9 potassium channel tetramerization domain containing 9 protein-coding 8.912 0.8653
+54795 TRPM4 transient receptor potential cation channel subfamily M member 4 protein-coding 9.675 1.567
+54796 BNC2 basonuclin 2 protein-coding 6.901 2.038
+54797 MED18 mediator complex subunit 18 protein-coding 8.262 0.5683
+54798 DCHS2 dachsous cadherin-related 2 protein-coding 3.94 2.253
+54799 MBTD1 mbt domain containing 1 protein-coding 8.894 0.7421
5480 PPIC peptidylprolyl isomerase C protein-coding 9.451 1.323
-54800 KLHL24 kelch like family member 24 protein-coding 10.17 0.7992
-54801 HAUS6 HAUS augmin like complex subunit 6 protein-coding 8.723 0.7689
-54802 TRIT1 tRNA isopentenyltransferase 1 protein-coding 8.676 0.6974
-54805 CNNM2 cyclin and CBS domain divalent metal cation transport mediator 2 protein-coding 7.728 0.746
-54806 AHI1 Abelson helper integration site 1 protein-coding 8.174 0.8769
-54807 ZNF586 zinc finger protein 586 protein-coding 7.139 0.8372
-54808 DYM dymeclin protein-coding 9.072 0.5392
-54809 SAMD9 sterile alpha motif domain containing 9 protein-coding 8.915 1.73
-5481 PPID peptidylprolyl isomerase D protein-coding 9.418 0.5181
-54810 GIPC2 GIPC PDZ domain containing family member 2 protein-coding 5.416 2.476
-54811 ZNF562 zinc finger protein 562 protein-coding 8.771 0.6753
-54812 AFTPH aftiphilin protein-coding 10.32 0.6411
-54813 KLHL28 kelch like family member 28 protein-coding 8.305 0.7797
-54814 QPCTL glutaminyl-peptide cyclotransferase like protein-coding 8.181 0.8398
-54815 GATAD2A GATA zinc finger domain containing 2A protein-coding 10.87 0.5219
+54800 KLHL24 kelch like family member 24 protein-coding 10.17 0.799
+54801 HAUS6 HAUS augmin like complex subunit 6 protein-coding 8.722 0.7687
+54802 TRIT1 tRNA isopentenyltransferase 1 protein-coding 8.675 0.6973
+54805 CNNM2 cyclin and CBS domain divalent metal cation transport mediator 2 protein-coding 7.728 0.7459
+54806 AHI1 Abelson helper integration site 1 protein-coding 8.175 0.8771
+54807 ZNF586 zinc finger protein 586 protein-coding 7.139 0.8371
+54808 DYM dymeclin protein-coding 9.072 0.539
+54809 SAMD9 sterile alpha motif domain containing 9 protein-coding 8.915 1.729
+5481 PPID peptidylprolyl isomerase D protein-coding 9.418 0.518
+54810 GIPC2 GIPC PDZ domain containing family member 2 protein-coding 5.417 2.476
+54811 ZNF562 zinc finger protein 562 protein-coding 8.771 0.675
+54812 AFTPH aftiphilin protein-coding 10.32 0.641
+54813 KLHL28 kelch like family member 28 protein-coding 8.305 0.7795
+54814 QPCTL glutaminyl-peptide cyclotransferase like protein-coding 8.181 0.8395
+54815 GATAD2A GATA zinc finger domain containing 2A protein-coding 10.87 0.5221
54816 ZNF280D zinc finger protein 280D protein-coding 9.018 0.6552
-54819 ZCCHC10 zinc finger CCHC-type containing 10 protein-coding 8.178 0.5559
-54820 NDE1 nudE neurodevelopment protein 1 protein-coding 8.96 1.006
-54821 ERCC6L ERCC excision repair 6 like, spindle assembly checkpoint helicase protein-coding 6.061 1.869
-54822 TRPM7 transient receptor potential cation channel subfamily M member 7 protein-coding 9.623 0.7192
-54823 SWT1 SWT1, RNA endoribonuclease homolog protein-coding 7.04 0.6381
-54825 CDHR2 cadherin related family member 2 protein-coding 3.05 3.537
-54826 GIN1 gypsy retrotransposon integrase 1 protein-coding 6.79 0.5871
-54827 NXPE4 neurexophilin and PC-esterase domain family member 4 protein-coding 1.076 1.922
-54828 BCAS3 BCAS3, microtubule associated cell migration factor protein-coding 9.073 0.7042
-54829 ASPN asporin protein-coding 7.552 2.504
-54830 NUP62CL nucleoporin 62 C-terminal like protein-coding 4.849 1.947
-54831 BEST2 bestrophin 2 protein-coding 0.7396 1.417
-54832 VPS13C vacuolar protein sorting 13 homolog C protein-coding 10.19 0.8945
-54834 GDAP2 ganglioside induced differentiation associated protein 2 protein-coding 8.298 0.5849
-54836 BSPRY B-box and SPRY domain containing protein-coding 7.577 2.583
+54819 ZCCHC10 zinc finger CCHC-type containing 10 protein-coding 8.178 0.5557
+54820 NDE1 nudE neurodevelopment protein 1 protein-coding 8.959 1.006
+54821 ERCC6L ERCC excision repair 6 like, spindle assembly checkpoint helicase protein-coding 6.059 1.87
+54822 TRPM7 transient receptor potential cation channel subfamily M member 7 protein-coding 9.623 0.719
+54823 SWT1 SWT1, RNA endoribonuclease homolog protein-coding 7.04 0.6379
+54825 CDHR2 cadherin related family member 2 protein-coding 3.051 3.537
+54826 GIN1 gypsy retrotransposon integrase 1 protein-coding 6.79 0.5869
+54827 NXPE4 neurexophilin and PC-esterase domain family member 4 protein-coding 1.077 1.924
+54828 BCAS3 BCAS3, microtubule associated cell migration factor protein-coding 9.073 0.704
+54829 ASPN asporin protein-coding 7.553 2.504
+54830 NUP62CL nucleoporin 62 C-terminal like protein-coding 4.849 1.946
+54831 BEST2 bestrophin 2 protein-coding 0.7396 1.416
+54832 VPS13C vacuolar protein sorting 13 homolog C protein-coding 10.2 0.8946
+54834 GDAP2 ganglioside induced differentiation associated protein 2 protein-coding 8.298 0.5847
+54836 BSPRY B-box and SPRY domain containing protein-coding 7.578 2.582
54838 WBP1L WW domain binding protein 1 like protein-coding 10.62 0.6246
-54839 LRRC49 leucine rich repeat containing 49 protein-coding 6.678 1.469
+54839 LRRC49 leucine rich repeat containing 49 protein-coding 6.679 1.468
54840 APTX aprataxin protein-coding 9.129 0.5393
-54841 BIVM basic, immunoglobulin-like variable motif containing protein-coding 8.831 0.9428
+54841 BIVM basic, immunoglobulin-like variable motif containing protein-coding 8.831 0.9424
54842 MFSD6 major facilitator superfamily domain containing 6 protein-coding 10.09 1.207
54843 SYTL2 synaptotagmin like 2 protein-coding 8.723 1.815
-54845 ESRP1 epithelial splicing regulatory protein 1 protein-coding 8.82 4.24
-54847 SIDT1 SID1 transmembrane family member 1 protein-coding 6.674 2.07
-54849 DEF8 differentially expressed in FDCP 8 homolog protein-coding 9.845 0.6761
-54850 FBXL12 F-box and leucine rich repeat protein 12 protein-coding 8.49 0.5511
-54851 ANKRD49 ankyrin repeat domain 49 protein-coding 8.002 0.6539
-54852 PAQR5 progestin and adipoQ receptor family member 5 protein-coding 6.748 2.166
-54853 WDR55 WD repeat domain 55 protein-coding 8.993 0.5268
-54854 FAM83E family with sequence similarity 83 member E protein-coding 4.859 3.491
-54855 FAM46C family with sequence similarity 46 member C protein-coding 8.314 1.872
-54856 GON4L gon-4 like protein-coding 9.866 0.6153
-54857 GDPD2 glycerophosphodiester phosphodiesterase domain containing 2 protein-coding 2.763 2.875
-54858 PGPEP1 pyroglutamyl-peptidase I protein-coding 9.631 1.126
+54845 ESRP1 epithelial splicing regulatory protein 1 protein-coding 8.82 4.239
+54847 SIDT1 SID1 transmembrane family member 1 protein-coding 6.676 2.071
+54849 DEF8 differentially expressed in FDCP 8 homolog protein-coding 9.845 0.6759
+54850 FBXL12 F-box and leucine rich repeat protein 12 protein-coding 8.49 0.5509
+54851 ANKRD49 ankyrin repeat domain 49 protein-coding 8.002 0.6537
+54852 PAQR5 progestin and adipoQ receptor family member 5 protein-coding 6.747 2.166
+54853 WDR55 WD repeat domain 55 protein-coding 8.993 0.5269
+54854 FAM83E family with sequence similarity 83 member E protein-coding 4.86 3.49
+54855 FAM46C family with sequence similarity 46 member C protein-coding 8.316 1.872
+54856 GON4L gon-4 like protein-coding 9.866 0.615
+54857 GDPD2 glycerophosphodiester phosphodiesterase domain containing 2 protein-coding 2.762 2.875
+54858 PGPEP1 pyroglutamyl-peptidase I protein-coding 9.632 1.126
54859 ELP6 elongator acetyltransferase complex subunit 6 protein-coding 8.779 0.6041
-54861 SNRK SNF related kinase protein-coding 9.781 0.7363
-54862 CC2D1A coiled-coil and C2 domain containing 1A protein-coding 10.08 0.6556
-54863 TOR4A torsin family 4 member A protein-coding 8.377 1.717
-548644 POLR2J3 RNA polymerase II subunit J3 protein-coding 9.878 1.096
+54861 SNRK SNF related kinase protein-coding 9.781 0.7364
+54862 CC2D1A coiled-coil and C2 domain containing 1A protein-coding 10.08 0.6554
+54863 TOR4A torsin family 4 member A protein-coding 8.378 1.717
+548644 POLR2J3 RNA polymerase II subunit J3 protein-coding 9.879 1.095
548645 DNAJC25 DnaJ heat shock protein family (Hsp40) member C25 protein-coding 7.818 0.6599
-54865 GPATCH4 G-patch domain containing 4 protein-coding 9.436 0.7381
-54866 PPP1R14D protein phosphatase 1 regulatory inhibitor subunit 14D protein-coding 2.926 2.856
-54867 TMEM214 transmembrane protein 214 protein-coding 11.23 0.6001
-54868 TMEM104 transmembrane protein 104 protein-coding 9.196 0.6132
-54869 EPS8L1 EPS8 like 1 protein-coding 8.149 2.737
-54870 QRICH1 glutamine rich 1 protein-coding 10.32 0.3936
-54872 PIGG phosphatidylinositol glycan anchor biosynthesis class G protein-coding 9.403 0.4859
-54873 PALMD palmdelphin protein-coding 8.077 1.478
+54865 GPATCH4 G-patch domain containing 4 protein-coding 9.435 0.738
+54866 PPP1R14D protein phosphatase 1 regulatory inhibitor subunit 14D protein-coding 2.925 2.855
+54867 TMEM214 transmembrane protein 214 protein-coding 11.23 0.5999
+54868 TMEM104 transmembrane protein 104 protein-coding 9.195 0.6132
+54869 EPS8L1 EPS8 like 1 protein-coding 8.149 2.736
+54870 QRICH1 glutamine rich 1 protein-coding 10.32 0.3935
+54872 PIGG phosphatidylinositol glycan anchor biosynthesis class G protein-coding 9.403 0.4858
+54873 PALMD palmdelphin protein-coding 8.078 1.478
54874 FNBP1L formin binding protein 1 like protein-coding 10.29 1.093
-54875 CNTLN centlein protein-coding 7.365 1.157
-54876 DCAF16 DDB1 and CUL4 associated factor 16 protein-coding 9.41 0.7181
-54877 ZCCHC2 zinc finger CCHC-type containing 2 protein-coding 8.527 0.7325
-54878 DPP8 dipeptidyl peptidase 8 protein-coding 8.189 1.027
-54879 ST7L suppression of tumorigenicity 7 like protein-coding 7.916 0.7021
-54880 BCOR BCL6 corepressor protein-coding 9.755 0.8151
-54881 TEX10 testis expressed 10 protein-coding 8.905 0.6639
-54882 ANKHD1 ankyrin repeat and KH domain containing 1 protein-coding 10.75 0.5817
-54883 CWC25 CWC25 spliceosome associated protein homolog protein-coding 8.61 0.5092
+54875 CNTLN centlein protein-coding 7.366 1.156
+54876 DCAF16 DDB1 and CUL4 associated factor 16 protein-coding 9.411 0.7179
+54877 ZCCHC2 zinc finger CCHC-type containing 2 protein-coding 8.528 0.7326
+54878 DPP8 dipeptidyl peptidase 8 protein-coding 8.189 1.026
+54879 ST7L suppression of tumorigenicity 7 like protein-coding 7.916 0.702
+54880 BCOR BCL6 corepressor protein-coding 9.755 0.8148
+54881 TEX10 testis expressed 10 protein-coding 8.904 0.6637
+54882 ANKHD1 ankyrin repeat and KH domain containing 1 protein-coding 10.75 0.5815
+54883 CWC25 CWC25 spliceosome associated protein homolog protein-coding 8.61 0.509
54884 RETSAT retinol saturase protein-coding 10.62 0.8457
-54885 TBC1D8B TBC1 domain family member 8B protein-coding 7.569 1.523
-54887 UHRF1BP1 UHRF1 binding protein 1 protein-coding 9.245 0.6736
+54885 TBC1D8B TBC1 domain family member 8B protein-coding 7.57 1.523
+54887 UHRF1BP1 UHRF1 binding protein 1 protein-coding 9.245 0.6733
54888 NSUN2 NOP2/Sun RNA methyltransferase family member 2 protein-coding 10.58 0.6413
54890 ALKBH5 alkB homolog 5, RNA demethylase protein-coding 11.12 0.4986
-54891 INO80D INO80 complex subunit D protein-coding 8.904 0.6381
+54891 INO80D INO80 complex subunit D protein-coding 8.904 0.6382
54892 NCAPG2 non-SMC condensin II complex subunit G2 protein-coding 8.927 1.094
-54893 MTMR10 myotubularin related protein 10 protein-coding 9.634 0.8194
-54894 RNF43 ring finger protein 43 protein-coding 8.201 2.53
-54896 PQLC2 PQ loop repeat containing 2 protein-coding 8.489 0.6794
-54897 CASZ1 castor zinc finger 1 protein-coding 8.637 1.688
-54898 ELOVL2 ELOVL fatty acid elongase 2 protein-coding 5.777 2.89
-54899 PXK PX domain containing serine/threonine kinase like protein-coding 7.506 1.16
-549 AUH AU RNA binding methylglutaconyl-CoA hydratase protein-coding 7.951 0.9231
-54900 LAX1 lymphocyte transmembrane adaptor 1 protein-coding 4.249 2.085
-54901 CDKAL1 CDK5 regulatory subunit associated protein 1 like 1 protein-coding 8.281 0.6186
-54902 TTC19 tetratricopeptide repeat domain 19 protein-coding 9.898 0.6499
+54893 MTMR10 myotubularin related protein 10 protein-coding 9.634 0.8192
+54894 RNF43 ring finger protein 43 protein-coding 8.201 2.529
+54896 PQLC2 PQ loop repeat containing 2 protein-coding 8.489 0.6791
+54897 CASZ1 castor zinc finger 1 protein-coding 8.638 1.688
+54898 ELOVL2 ELOVL fatty acid elongase 2 protein-coding 5.777 2.889
+54899 PXK PX domain containing serine/threonine kinase like protein-coding 7.507 1.16
+549 AUH AU RNA binding methylglutaconyl-CoA hydratase protein-coding 7.951 0.9232
+54900 LAX1 lymphocyte transmembrane adaptor 1 protein-coding 4.25 2.085
+54901 CDKAL1 CDK5 regulatory subunit associated protein 1 like 1 protein-coding 8.281 0.6184
+54902 TTC19 tetratricopeptide repeat domain 19 protein-coding 9.899 0.6497
54903 MKS1 Meckel syndrome, type 1 protein-coding 8.174 0.5856
-54904 NSD3 nuclear receptor binding SET domain protein 3 protein-coding 9.951 0.7856
-54905 CYP2W1 cytochrome P450 family 2 subfamily W member 1 protein-coding 2.742 2.91
-54906 FAM208B family with sequence similarity 208 member B protein-coding 10.26 0.7054
-54908 SPDL1 spindle apparatus coiled-coil protein 1 protein-coding 7.901 0.9082
-54910 SEMA4C semaphorin 4C protein-coding 10 0.8572
+54904 NSD3 nuclear receptor binding SET domain protein 3 protein-coding 9.951 0.7853
+54905 CYP2W1 cytochrome P450 family 2 subfamily W member 1 protein-coding 2.744 2.91
+54906 FAM208B family with sequence similarity 208 member B protein-coding 10.26 0.7052
+54908 SPDL1 spindle apparatus coiled-coil protein 1 protein-coding 7.9 0.9082
+54910 SEMA4C semaphorin 4C protein-coding 10 0.8568
54913 RPP25 ribonuclease P and MRP subunit p25 protein-coding 8.234 1.465
-54914 FOCAD focadhesin protein-coding 9.514 0.8394
-54915 YTHDF1 YTH N6-methyladenosine RNA binding protein 1 protein-coding 10.62 0.4172
-54916 TMEM260 transmembrane protein 260 protein-coding 8.712 0.6329
-54918 CMTM6 CKLF like MARVEL transmembrane domain containing 6 protein-coding 11.13 0.8534
-54919 DNAAF5 dynein axonemal assembly factor 5 protein-coding 9.692 0.6126
-54920 DUS2 dihydrouridine synthase 2 protein-coding 7.937 0.6755
-54921 CHTF8 chromosome transmission fidelity factor 8 protein-coding 10.96 0.477
+54914 FOCAD focadhesin protein-coding 9.515 0.8391
+54915 YTHDF1 YTH N6-methyladenosine RNA binding protein 1 protein-coding 10.62 0.417
+54916 TMEM260 transmembrane protein 260 protein-coding 8.713 0.6326
+54918 CMTM6 CKLF like MARVEL transmembrane domain containing 6 protein-coding 11.13 0.8532
+54919 DNAAF5 dynein axonemal assembly factor 5 protein-coding 9.691 0.6125
+54920 DUS2 dihydrouridine synthase 2 protein-coding 7.937 0.6754
+54921 CHTF8 chromosome transmission fidelity factor 8 protein-coding 10.96 0.4769
54922 RASIP1 Ras interacting protein 1 protein-coding 7.777 1.318
54923 LIME1 Lck interacting transmembrane adaptor 1 protein-coding 7.29 1.826
-54925 ZSCAN32 zinc finger and SCAN domain containing 32 protein-coding 8.351 0.4773
-54926 UBE2R2 ubiquitin conjugating enzyme E2 R2 protein-coding 10.93 0.4323
+54925 ZSCAN32 zinc finger and SCAN domain containing 32 protein-coding 8.351 0.4772
+54926 UBE2R2 ubiquitin conjugating enzyme E2 R2 protein-coding 10.93 0.4321
54927 CHCHD3 coiled-coil-helix-coiled-coil-helix domain containing 3 protein-coding 9.785 0.5824
-54928 IMPAD1 inositol monophosphatase domain containing 1 protein-coding 11.32 0.5859
-54929 TMEM161A transmembrane protein 161A protein-coding 9.41 0.7411
-5493 PPL periplakin protein-coding 10.07 2.568
-54930 HAUS4 HAUS augmin like complex subunit 4 protein-coding 9.646 0.6388
+54928 IMPAD1 inositol monophosphatase domain containing 1 protein-coding 11.32 0.5857
+54929 TMEM161A transmembrane protein 161A protein-coding 9.409 0.741
+5493 PPL periplakin protein-coding 10.07 2.569
+54930 HAUS4 HAUS augmin like complex subunit 4 protein-coding 9.646 0.6387
54931 TRMT10C tRNA methyltransferase 10C, mitochondrial RNase P subunit protein-coding 9.054 0.6387
-54932 EXD3 exonuclease 3'-5' domain containing 3 protein-coding 7.835 0.8407
+54932 EXD3 exonuclease 3'-5' domain containing 3 protein-coding 7.835 0.8406
54933 RHBDL2 rhomboid like 2 protein-coding 5.826 2.155
-54934 KANSL2 KAT8 regulatory NSL complex subunit 2 protein-coding 9.082 0.5107
+54934 KANSL2 KAT8 regulatory NSL complex subunit 2 protein-coding 9.081 0.5106
54935 DUSP23 dual specificity phosphatase 23 protein-coding 9.256 1.28
54936 ADPRHL2 ADP-ribosylhydrolase like 2 protein-coding 9.7 0.5844
-54937 SOHLH2 spermatogenesis and oogenesis specific basic helix-loop-helix 2 protein-coding 3.041 2.226
-54938 SARS2 seryl-tRNA synthetase 2, mitochondrial protein-coding 8.808 0.7828
-54939 COMMD4 COMM domain containing 4 protein-coding 10.2 0.7246
+54937 SOHLH2 spermatogenesis and oogenesis specific basic helix-loop-helix 2 protein-coding 3.042 2.226
+54938 SARS2 seryl-tRNA synthetase 2, mitochondrial protein-coding 8.808 0.7826
+54939 COMMD4 COMM domain containing 4 protein-coding 10.2 0.7245
5494 PPM1A protein phosphatase, Mg2+/Mn2+ dependent 1A protein-coding 10.42 0.5846
-54940 OCIAD1 OCIA domain containing 1 protein-coding 11.27 0.5277
-54941 RNF125 ring finger protein 125 protein-coding 7.04 1.301
-54942 FAM206A family with sequence similarity 206 member A protein-coding 8.576 0.5889
-54943 DNAJC28 DnaJ heat shock protein family (Hsp40) member C28 protein-coding 4.778 0.966
-54946 SLC41A3 solute carrier family 41 member 3 protein-coding 10.02 0.6065
-54947 LPCAT2 lysophosphatidylcholine acyltransferase 2 protein-coding 8.951 1.438
-54948 MRPL16 mitochondrial ribosomal protein L16 protein-coding 9.568 0.6376
-54949 SDHAF2 succinate dehydrogenase complex assembly factor 2 protein-coding 9.452 0.4398
-5495 PPM1B protein phosphatase, Mg2+/Mn2+ dependent 1B protein-coding 10 0.5424
-54951 COMMD8 COMM domain containing 8 protein-coding 8.268 0.7379
-54952 TRNAU1AP tRNA selenocysteine 1 associated protein 1 protein-coding 8.258 0.661
-54953 ODR4 odr-4 GPCR localization factor homolog protein-coding 9.409 0.6746
-54954 FAM120C family with sequence similarity 120C protein-coding 8.166 1.041
-54955 C1orf109 chromosome 1 open reading frame 109 protein-coding 8.299 0.6279
-54956 PARP16 poly(ADP-ribose) polymerase family member 16 protein-coding 8.044 0.589
-54957 TXNL4B thioredoxin like 4B protein-coding 8.165 0.6097
-54958 TMEM160 transmembrane protein 160 protein-coding 6.595 1.074
-5496 PPM1G protein phosphatase, Mg2+/Mn2+ dependent 1G protein-coding 11.53 0.5359
-54960 GEMIN8 gem nuclear organelle associated protein 8 protein-coding 8.572 0.6195
-54961 SSH3 slingshot protein phosphatase 3 protein-coding 9.76 1.276
-54962 TIPIN TIMELESS interacting protein protein-coding 6.718 0.8031
-54963 UCKL1 uridine-cytidine kinase 1 like 1 protein-coding 9.435 0.6297
-54964 C1orf56 chromosome 1 open reading frame 56 protein-coding 7.585 0.9028
-54965 PIGX phosphatidylinositol glycan anchor biosynthesis class X protein-coding 9.26 0.7387
-54967 CT55 cancer/testis antigen 55 protein-coding 0.8685 1.279
-54968 TMEM70 transmembrane protein 70 protein-coding 8.99 0.702
-54969 HPF1 histone PARylation factor 1 protein-coding 8.517 0.5894
-54970 TTC12 tetratricopeptide repeat domain 12 protein-coding 7.449 1.279
-54971 BANP BTG3 associated nuclear protein protein-coding 7.957 0.5117
+54940 OCIAD1 OCIA domain containing 1 protein-coding 11.27 0.5276
+54941 RNF125 ring finger protein 125 protein-coding 7.041 1.302
+54942 FAM206A family with sequence similarity 206 member A protein-coding 8.576 0.5887
+54943 DNAJC28 DnaJ heat shock protein family (Hsp40) member C28 protein-coding 4.778 0.9659
+54946 SLC41A3 solute carrier family 41 member 3 protein-coding 10.02 0.6064
+54947 LPCAT2 lysophosphatidylcholine acyltransferase 2 protein-coding 8.952 1.437
+54948 MRPL16 mitochondrial ribosomal protein L16 protein-coding 9.568 0.6375
+54949 SDHAF2 succinate dehydrogenase complex assembly factor 2 protein-coding 9.452 0.4397
+5495 PPM1B protein phosphatase, Mg2+/Mn2+ dependent 1B protein-coding 10.01 0.5424
+54951 COMMD8 COMM domain containing 8 protein-coding 8.267 0.7376
+54952 TRNAU1AP tRNA selenocysteine 1 associated protein 1 protein-coding 8.258 0.6607
+54953 ODR4 odr-4 GPCR localization factor homolog protein-coding 9.408 0.6743
+54954 FAM120C family with sequence similarity 120C protein-coding 8.167 1.04
+54955 C1orf109 chromosome 1 open reading frame 109 protein-coding 8.299 0.6277
+54956 PARP16 poly(ADP-ribose) polymerase family member 16 protein-coding 8.044 0.5888
+54957 TXNL4B thioredoxin like 4B protein-coding 8.165 0.6095
+54958 TMEM160 transmembrane protein 160 protein-coding 6.595 1.073
+5496 PPM1G protein phosphatase, Mg2+/Mn2+ dependent 1G protein-coding 11.53 0.5361
+54960 GEMIN8 gem nuclear organelle associated protein 8 protein-coding 8.571 0.6194
+54961 SSH3 slingshot protein phosphatase 3 protein-coding 9.761 1.276
+54962 TIPIN TIMELESS interacting protein protein-coding 6.718 0.8033
+54963 UCKL1 uridine-cytidine kinase 1 like 1 protein-coding 9.435 0.6295
+54964 C1orf56 chromosome 1 open reading frame 56 protein-coding 7.585 0.9027
+54965 PIGX phosphatidylinositol glycan anchor biosynthesis class X protein-coding 9.259 0.7386
+54967 CT55 cancer/testis antigen 55 protein-coding 0.8681 1.279
+54968 TMEM70 transmembrane protein 70 protein-coding 8.99 0.7018
+54969 HPF1 histone PARylation factor 1 protein-coding 8.517 0.5892
+54970 TTC12 tetratricopeptide repeat domain 12 protein-coding 7.45 1.278
+54971 BANP BTG3 associated nuclear protein protein-coding 7.957 0.5115
54972 TMEM132A transmembrane protein 132A protein-coding 10.09 1.648
-54973 INTS11 integrator complex subunit 11 protein-coding 10.74 0.5537
-54974 THG1L tRNA-histidine guanylyltransferase 1 like protein-coding 7.598 0.6841
-54976 C20orf27 chromosome 20 open reading frame 27 protein-coding 9.573 0.8478
-54977 SLC25A38 solute carrier family 25 member 38 protein-coding 9.611 0.7402
-54978 SLC35F6 solute carrier family 35 member F6 protein-coding 10.58 0.6288
+54973 INTS11 integrator complex subunit 11 protein-coding 10.74 0.5535
+54974 THG1L tRNA-histidine guanylyltransferase 1 like protein-coding 7.598 0.6838
+54976 C20orf27 chromosome 20 open reading frame 27 protein-coding 9.573 0.8479
+54977 SLC25A38 solute carrier family 25 member 38 protein-coding 9.611 0.7401
+54978 SLC35F6 solute carrier family 35 member F6 protein-coding 10.58 0.6286
54979 HRASLS2 HRAS like suppressor 2 protein-coding 3.006 2.221
-5498 PPOX protoporphyrinogen oxidase protein-coding 8.211 0.7504
-54980 C2orf42 chromosome 2 open reading frame 42 protein-coding 7.707 0.4306
-54981 NMRK1 nicotinamide riboside kinase 1 protein-coding 8.405 0.876
-54982 CLN6 CLN6, transmembrane ER protein protein-coding 9.997 0.7839
-54984 PINX1 PIN2 (TERF1) interacting telomerase inhibitor 1 protein-coding 6.92 0.7778
-54985 HCFC1R1 host cell factor C1 regulator 1 protein-coding 9.899 0.9831
-54986 ULK4 unc-51 like kinase 4 protein-coding 5.819 1.091
-54987 C1orf123 chromosome 1 open reading frame 123 protein-coding 9.253 0.6007
-54988 ACSM5 acyl-CoA synthetase medium chain family member 5 protein-coding 3.874 2.926
-54989 ZNF770 zinc finger protein 770 protein-coding 9.888 0.7863
+5498 PPOX protoporphyrinogen oxidase protein-coding 8.211 0.7501
+54980 C2orf42 chromosome 2 open reading frame 42 protein-coding 7.707 0.4305
+54981 NMRK1 nicotinamide riboside kinase 1 protein-coding 8.405 0.8759
+54982 CLN6 CLN6, transmembrane ER protein protein-coding 9.996 0.7838
+54984 PINX1 PIN2 (TERF1) interacting telomerase inhibitor 1 protein-coding 6.92 0.7777
+54985 HCFC1R1 host cell factor C1 regulator 1 protein-coding 9.899 0.9827
+54986 ULK4 unc-51 like kinase 4 protein-coding 5.819 1.09
+54987 C1orf123 chromosome 1 open reading frame 123 protein-coding 9.253 0.6004
+54988 ACSM5 acyl-CoA synthetase medium chain family member 5 protein-coding 3.875 2.925
+54989 ZNF770 zinc finger protein 770 protein-coding 9.888 0.786
5499 PPP1CA protein phosphatase 1 catalytic subunit alpha protein-coding 11.89 0.661
-54991 C1orf159 chromosome 1 open reading frame 159 protein-coding 7.654 0.8697
-54993 ZSCAN2 zinc finger and SCAN domain containing 2 protein-coding 7.705 0.7999
-54994 GID8 GID complex subunit 8 homolog protein-coding 10.93 0.5032
+54991 C1orf159 chromosome 1 open reading frame 159 protein-coding 7.654 0.8694
+54993 ZSCAN2 zinc finger and SCAN domain containing 2 protein-coding 7.705 0.7997
+54994 GID8 GID complex subunit 8 homolog protein-coding 10.93 0.503
54995 OXSM 3-oxoacyl-ACP synthase, mitochondrial protein-coding 7.693 0.5954
-54996 MARC2 mitochondrial amidoxime reducing component 2 protein-coding 7.465 1.582
-54997 TESC tescalcin protein-coding 7.122 2.689
-54998 AURKAIP1 aurora kinase A interacting protein 1 protein-coding 10.63 0.8134
-55 ACPP acid phosphatase, prostate protein-coding 5.911 3.451
+54996 MARC2 mitochondrial amidoxime reducing component 2 protein-coding 7.466 1.582
+54997 TESC tescalcin protein-coding 7.124 2.689
+54998 AURKAIP1 aurora kinase A interacting protein 1 protein-coding 10.63 0.8132
+55 ACPP acid phosphatase, prostate protein-coding 5.913 3.455
550 AUP1 AUP1, lipid droplet regulating VLDL assembly factor protein-coding 11.52 0.5851
5500 PPP1CB protein phosphatase 1 catalytic subunit beta protein-coding 12.61 0.651
-55000 TUG1 taurine up-regulated 1 (non-protein coding) ncRNA 11.8 0.5537
-55001 TTC22 tetratricopeptide repeat domain 22 protein-coding 5.484 2.564
-55002 TMCO3 transmembrane and coiled-coil domains 3 protein-coding 9.896 0.9619
-55003 PAK1IP1 PAK1 interacting protein 1 protein-coding 8.693 0.8018
-55004 LAMTOR1 late endosomal/lysosomal adaptor, MAPK and MTOR activator 1 protein-coding 10.95 0.5394
-55005 RMND1 required for meiotic nuclear division 1 homolog protein-coding 8.675 0.7929
-55006 TRMT61B tRNA methyltransferase 61B protein-coding 8.12 0.4935
-55007 FAM118A family with sequence similarity 118 member A protein-coding 8.505 0.8922
-55008 HERC6 HECT and RLD domain containing E3 ubiquitin protein ligase family member 6 protein-coding 8.676 1.308
-55009 C19orf24 chromosome 19 open reading frame 24 protein-coding 9.479 0.8718
-5501 PPP1CC protein phosphatase 1 catalytic subunit gamma protein-coding 11.48 0.4862
-55010 PARPBP PARP1 binding protein protein-coding 6.792 1.51
-55011 PIH1D1 PIH1 domain containing 1 protein-coding 10.12 0.5844
-550112 UBA6-AS1 UBA6 antisense RNA 1 (head to head) ncRNA 7.816 0.6544
-55012 PPP2R3C protein phosphatase 2 regulatory subunit B''gamma protein-coding 8.558 0.6083
-55013 MCUB mitochondrial calcium uniporter dominant negative beta subunit protein-coding 7.657 1.491
-55014 STX17 syntaxin 17 protein-coding 9.525 0.5143
-55015 PRPF39 pre-mRNA processing factor 39 protein-coding 8.934 0.6546
-55016 MARCH1 membrane associated ring-CH-type finger 1 protein-coding 5.652 1.515
-55017 C14orf119 chromosome 14 open reading frame 119 protein-coding 9.998 0.5633
-55018 LINC00483 long intergenic non-protein coding RNA 483 protein-coding 0.8621 1.98
-5502 PPP1R1A protein phosphatase 1 regulatory inhibitor subunit 1A protein-coding 4.457 3.28
-55020 TTC38 tetratricopeptide repeat domain 38 protein-coding 9.328 1.148
-55022 PID1 phosphotyrosine interaction domain containing 1 protein-coding 6.879 2.223
-55023 PHIP pleckstrin homology domain interacting protein protein-coding 10.15 0.7502
-55024 BANK1 B cell scaffold protein with ankyrin repeats 1 protein-coding 5.67 2.436
-55026 TMEM255A transmembrane protein 255A protein-coding 5.446 2.45
+55000 TUG1 taurine up-regulated 1 (non-protein coding) ncRNA 11.8 0.5535
+55001 TTC22 tetratricopeptide repeat domain 22 protein-coding 5.486 2.563
+55002 TMCO3 transmembrane and coiled-coil domains 3 protein-coding 9.896 0.9617
+55003 PAK1IP1 PAK1 interacting protein 1 protein-coding 8.693 0.8024
+55004 LAMTOR1 late endosomal/lysosomal adaptor, MAPK and MTOR activator 1 protein-coding 10.95 0.5392
+55005 RMND1 required for meiotic nuclear division 1 homolog protein-coding 8.674 0.7929
+55006 TRMT61B tRNA methyltransferase 61B protein-coding 8.12 0.4933
+55007 FAM118A family with sequence similarity 118 member A protein-coding 8.506 0.8926
+55008 HERC6 HECT and RLD domain containing E3 ubiquitin protein ligase family member 6 protein-coding 8.677 1.308
+55009 C19orf24 chromosome 19 open reading frame 24 protein-coding 9.478 0.8715
+5501 PPP1CC protein phosphatase 1 catalytic subunit gamma protein-coding 11.48 0.4861
+55010 PARPBP PARP1 binding protein protein-coding 6.79 1.51
+55011 PIH1D1 PIH1 domain containing 1 protein-coding 10.12 0.5843
+550112 UBA6-AS1 UBA6 antisense RNA 1 (head to head) ncRNA 7.816 0.6542
+55012 PPP2R3C protein phosphatase 2 regulatory subunit B''gamma protein-coding 8.559 0.6081
+55013 MCUB mitochondrial calcium uniporter dominant negative beta subunit protein-coding 7.656 1.491
+55014 STX17 syntaxin 17 protein-coding 9.526 0.5143
+55015 PRPF39 pre-mRNA processing factor 39 protein-coding 8.935 0.6544
+55016 MARCH1 membrane associated ring-CH-type finger 1 protein-coding 5.653 1.516
+55017 C14orf119 chromosome 14 open reading frame 119 protein-coding 9.997 0.5632
+55018 LINC00483 long intergenic non-protein coding RNA 483 protein-coding 0.8618 1.98
+5502 PPP1R1A protein phosphatase 1 regulatory inhibitor subunit 1A protein-coding 4.458 3.28
+55020 TTC38 tetratricopeptide repeat domain 38 protein-coding 9.328 1.147
+55022 PID1 phosphotyrosine interaction domain containing 1 protein-coding 6.881 2.223
+55023 PHIP pleckstrin homology domain interacting protein protein-coding 10.15 0.7501
+55024 BANK1 B cell scaffold protein with ankyrin repeats 1 protein-coding 5.672 2.437
+55026 TMEM255A transmembrane protein 255A protein-coding 5.446 2.449
55027 HEATR3 HEAT repeat containing 3 protein-coding 8.09 0.7153
-55028 C17orf80 chromosome 17 open reading frame 80 protein-coding 9.014 0.5492
-55030 FBXO34 F-box protein 34 protein-coding 9.555 0.7421
-55031 USP47 ubiquitin specific peptidase 47 protein-coding 10.66 0.55
-55032 SLC35A5 solute carrier family 35 member A5 protein-coding 9.361 0.6613
-55033 FKBP14 FK506 binding protein 14 protein-coding 7.3 1.019
-55034 MOCOS molybdenum cofactor sulfurase protein-coding 6.605 2.294
-55035 NOL8 nucleolar protein 8 protein-coding 9.391 0.5593
-55036 CCDC40 coiled-coil domain containing 40 protein-coding 6.323 1.622
-55037 PTCD3 pentatricopeptide repeat domain 3 protein-coding 10.14 0.5363
-55038 CDCA4 cell division cycle associated 4 protein-coding 8.591 1.302
-55039 TRMT12 tRNA methyltransferase 12 homolog protein-coding 8.184 0.743
-5504 PPP1R2 protein phosphatase 1 regulatory inhibitor subunit 2 protein-coding 10.24 0.5983
+55028 C17orf80 chromosome 17 open reading frame 80 protein-coding 9.014 0.549
+55030 FBXO34 F-box protein 34 protein-coding 9.555 0.742
+55031 USP47 ubiquitin specific peptidase 47 protein-coding 10.66 0.5499
+55032 SLC35A5 solute carrier family 35 member A5 protein-coding 9.361 0.6612
+55033 FKBP14 FK506 binding protein 14 protein-coding 7.3 1.018
+55034 MOCOS molybdenum cofactor sulfurase protein-coding 6.604 2.293
+55035 NOL8 nucleolar protein 8 protein-coding 9.391 0.5591
+55036 CCDC40 coiled-coil domain containing 40 protein-coding 6.324 1.621
+55037 PTCD3 pentatricopeptide repeat domain 3 protein-coding 10.14 0.5362
+55038 CDCA4 cell division cycle associated 4 protein-coding 8.59 1.302
+55039 TRMT12 tRNA methyltransferase 12 homolog protein-coding 8.184 0.7427
+5504 PPP1R2 protein phosphatase 1 regulatory inhibitor subunit 2 protein-coding 10.24 0.5981
55040 EPN3 epsin 3 protein-coding 6.96 3.528
-55041 PLEKHB2 pleckstrin homology domain containing B2 protein-coding 11.42 0.74
-55048 VPS37C VPS37C, ESCRT-I subunit protein-coding 9.559 0.6336
-55049 REX1BD required for excision 1-B domain containing protein-coding 8.919 0.9937
-55051 NRDE2 NRDE-2, necessary for RNA interference, domain containing protein-coding 8.084 0.5153
-55052 MRPL20 mitochondrial ribosomal protein L20 protein-coding 10.44 0.5889
-55054 ATG16L1 autophagy related 16 like 1 protein-coding 9.411 0.5797
+55041 PLEKHB2 pleckstrin homology domain containing B2 protein-coding 11.42 0.7397
+55048 VPS37C VPS37C, ESCRT-I subunit protein-coding 9.559 0.6335
+55049 REX1BD required for excision 1-B domain containing protein-coding 8.919 0.9935
+55051 NRDE2 NRDE-2, necessary for RNA interference, domain containing protein-coding 8.084 0.5151
+55052 MRPL20 mitochondrial ribosomal protein L20 protein-coding 10.44 0.5888
+55054 ATG16L1 autophagy related 16 like 1 protein-coding 9.411 0.5795
55055 ZWILCH zwilch kinetochore protein protein-coding 8.444 1.01
-55056 GABPB1-IT1 GABPB1 intronic transcript ncRNA 7.903 0.8687
-55057 CRYBG2 crystallin beta-gamma domain containing 2 protein-coding 4.923 3.127
-55061 SUSD4 sushi domain containing 4 protein-coding 7.134 2.635
+55056 GABPB1-IT1 GABPB1 intronic transcript ncRNA 7.903 0.8685
+55057 CRYBG2 crystallin beta-gamma domain containing 2 protein-coding 4.923 3.126
+55061 SUSD4 sushi domain containing 4 protein-coding 7.135 2.634
55062 WIPI1 WD repeat domain, phosphoinositide interacting 1 protein-coding 9.137 1.008
55063 ZCWPW1 zinc finger CW-type and PWWP domain containing 1 protein-coding 6.556 1.114
-550631 CCDC157 coiled-coil domain containing 157 protein-coding 5.323 1.141
-55064 SPATA6L spermatogenesis associated 6 like protein-coding 5.282 1.612
-550643 NBDY negative regulator of P-body association protein-coding 8.652 0.8606
+550631 CCDC157 coiled-coil domain containing 157 protein-coding 5.323 1.14
+55064 SPATA6L spermatogenesis associated 6 like protein-coding 5.284 1.613
+550643 NBDY negative regulator of P-body association protein-coding 8.652 0.8603
55065 SLC52A1 solute carrier family 52 member 1 protein-coding 4.164 2.343
-55066 PDPR pyruvate dehydrogenase phosphatase regulatory subunit protein-coding 9.342 1.079
-55068 ENOX1 ecto-NOX disulfide-thiol exchanger 1 protein-coding 5.031 1.946
-55069 TMEM248 transmembrane protein 248 protein-coding 11.67 0.4349
-5507 PPP1R3C protein phosphatase 1 regulatory subunit 3C protein-coding 7.212 2.233
-55070 DET1 DET1, COP1 ubiquitin ligase partner protein-coding 6.903 0.7626
-55071 C9orf40 chromosome 9 open reading frame 40 protein-coding 6.95 0.9561
-55072 RNF31 ring finger protein 31 protein-coding 9.955 0.5079
-55073 LRRC37A4P leucine rich repeat containing 37 member A4, pseudogene pseudo 7.436 1.328
-55074 OXR1 oxidation resistance 1 protein-coding 9.707 0.8815
-55075 UACA uveal autoantigen with coiled-coil domains and ankyrin repeats protein-coding 10.17 1.059
-55076 TMEM45A transmembrane protein 45A protein-coding 8.135 2.076
+55066 PDPR pyruvate dehydrogenase phosphatase regulatory subunit protein-coding 9.343 1.079
+55068 ENOX1 ecto-NOX disulfide-thiol exchanger 1 protein-coding 5.032 1.946
+55069 TMEM248 transmembrane protein 248 protein-coding 11.67 0.4348
+5507 PPP1R3C protein phosphatase 1 regulatory subunit 3C protein-coding 7.213 2.233
+55070 DET1 DET1, COP1 ubiquitin ligase partner protein-coding 6.903 0.7625
+55071 C9orf40 chromosome 9 open reading frame 40 protein-coding 6.949 0.9559
+55072 RNF31 ring finger protein 31 protein-coding 9.955 0.5078
+55073 LRRC37A4P leucine rich repeat containing 37 member A4, pseudogene pseudo 7.437 1.328
+55074 OXR1 oxidation resistance 1 protein-coding 9.707 0.8813
+55075 UACA uveal autoantigen with coiled-coil domains and ankyrin repeats protein-coding 10.17 1.058
+55076 TMEM45A transmembrane protein 45A protein-coding 8.135 2.075
55080 TAPBPL TAP binding protein like protein-coding 9.198 0.9489
-55081 IFT57 intraflagellar transport 57 protein-coding 9.556 1.038
-55082 ARGLU1 arginine and glutamate rich 1 protein-coding 10.58 0.8891
+55081 IFT57 intraflagellar transport 57 protein-coding 9.557 1.038
+55082 ARGLU1 arginine and glutamate rich 1 protein-coding 10.58 0.8895
55083 KIF26B kinesin family member 26B protein-coding 7.073 1.912
-55084 SOBP sine oculis binding protein homolog protein-coding 6.907 1.926
-55086 CXorf57 chromosome X open reading frame 57 protein-coding 5.58 2.193
-55088 CCDC186 coiled-coil domain containing 186 protein-coding 8.471 1.279
+55084 SOBP sine oculis binding protein homolog protein-coding 6.909 1.926
+55086 CXorf57 chromosome X open reading frame 57 protein-coding 5.581 2.192
+55088 CCDC186 coiled-coil domain containing 186 protein-coding 8.472 1.279
55089 SLC38A4 solute carrier family 38 member 4 protein-coding 4.145 2.94
-5509 PPP1R3D protein phosphatase 1 regulatory subunit 3D protein-coding 7.902 0.9492
-55090 MED9 mediator complex subunit 9 protein-coding 8.742 0.634
-55092 TMEM51 transmembrane protein 51 protein-coding 8.792 1.217
-55093 WDYHV1 WDYHV motif containing 1 protein-coding 7.84 0.6422
-55094 GPATCH1 G-patch domain containing 1 protein-coding 8.06 0.5179
-55095 SAMD4B sterile alpha motif domain containing 4B protein-coding 10.71 0.6957
-55096 EBLN2 endogenous Bornavirus like nucleoprotein 2 protein-coding 3.209 1.182
-5510 PPP1R7 protein phosphatase 1 regulatory subunit 7 protein-coding 10.31 0.5457
-55100 WDR70 WD repeat domain 70 protein-coding 8.923 0.507
-55101 DMAC2 distal membrane arm assembly complex 2 protein-coding 9.709 0.4742
-55102 ATG2B autophagy related 2B protein-coding 9.505 0.664
-55103 RALGPS2 Ral GEF with PH domain and SH3 binding motif 2 protein-coding 8.659 1.289
-55105 GPATCH2 G-patch domain containing 2 protein-coding 8.131 0.6997
+5509 PPP1R3D protein phosphatase 1 regulatory subunit 3D protein-coding 7.902 0.9489
+55090 MED9 mediator complex subunit 9 protein-coding 8.742 0.6339
+55092 TMEM51 transmembrane protein 51 protein-coding 8.793 1.217
+55093 WDYHV1 WDYHV motif containing 1 protein-coding 7.84 0.6421
+55094 GPATCH1 G-patch domain containing 1 protein-coding 8.06 0.5178
+55095 SAMD4B sterile alpha motif domain containing 4B protein-coding 10.71 0.6954
+55096 EBLN2 endogenous Bornavirus like nucleoprotein 2 protein-coding 3.209 1.181
+5510 PPP1R7 protein phosphatase 1 regulatory subunit 7 protein-coding 10.31 0.5458
+55100 WDR70 WD repeat domain 70 protein-coding 8.922 0.5069
+55101 DMAC2 distal membrane arm assembly complex 2 protein-coding 9.708 0.4742
+55102 ATG2B autophagy related 2B protein-coding 9.506 0.6639
+55103 RALGPS2 Ral GEF with PH domain and SH3 binding motif 2 protein-coding 8.658 1.288
+55105 GPATCH2 G-patch domain containing 2 protein-coding 8.131 0.6994
55106 SLFN12 schlafen family member 12 protein-coding 6.085 1.383
-55108 BSDC1 BSD domain containing 1 protein-coding 10.93 0.4472
-55109 AGGF1 angiogenic factor with G-patch and FHA domains 1 protein-coding 9.579 0.4893
-5511 PPP1R8 protein phosphatase 1 regulatory subunit 8 protein-coding 9.919 0.4373
-55110 MAGOHB mago homolog B, exon junction complex core component protein-coding 8.098 0.7277
-55111 PLEKHJ1 pleckstrin homology domain containing J1 protein-coding 9.891 0.8231
-55112 WDR60 WD repeat domain 60 protein-coding 8.528 0.7966
-55113 XKR8 XK related 8 protein-coding 7.706 0.8308
-55114 ARHGAP17 Rho GTPase activating protein 17 protein-coding 10.05 0.5265
-55116 TMEM39B transmembrane protein 39B protein-coding 8.387 0.6248
-55119 PRPF38B pre-mRNA processing factor 38B protein-coding 10.05 0.5864
-55120 FANCL Fanconi anemia complementation group L protein-coding 8.424 0.7532
+55108 BSDC1 BSD domain containing 1 protein-coding 10.93 0.4471
+55109 AGGF1 angiogenic factor with G-patch and FHA domains 1 protein-coding 9.579 0.4891
+5511 PPP1R8 protein phosphatase 1 regulatory subunit 8 protein-coding 9.919 0.4372
+55110 MAGOHB mago homolog B, exon junction complex core component protein-coding 8.097 0.7278
+55111 PLEKHJ1 pleckstrin homology domain containing J1 protein-coding 9.891 0.8229
+55112 WDR60 WD repeat domain 60 protein-coding 8.528 0.7964
+55113 XKR8 XK related 8 protein-coding 7.707 0.8304
+55114 ARHGAP17 Rho GTPase activating protein 17 protein-coding 10.05 0.5266
+55116 TMEM39B transmembrane protein 39B protein-coding 8.387 0.6245
+55119 PRPF38B pre-mRNA processing factor 38B protein-coding 10.05 0.5863
+55120 FANCL Fanconi anemia complementation group L protein-coding 8.424 0.7533
55122 AKIRIN2 akirin 2 protein-coding 9.58 0.6087
-55124 PIWIL2 piwi like RNA-mediated gene silencing 2 protein-coding 2.646 1.946
-55125 CEP192 centrosomal protein 192 protein-coding 8.984 0.771
-55127 HEATR1 HEAT repeat containing 1 protein-coding 9.875 0.7884
-55128 TRIM68 tripartite motif containing 68 protein-coding 8.181 0.9996
-55129 ANO10 anoctamin 10 protein-coding 9.274 0.6634
-55130 ARMC4 armadillo repeat containing 4 protein-coding 2.921 2.23
-55131 RBM28 RNA binding motif protein 28 protein-coding 8.765 0.613
-55132 LARP1B La ribonucleoprotein domain family member 1B protein-coding 8.584 0.7581
+55124 PIWIL2 piwi like RNA-mediated gene silencing 2 protein-coding 2.648 1.946
+55125 CEP192 centrosomal protein 192 protein-coding 8.985 0.7709
+55127 HEATR1 HEAT repeat containing 1 protein-coding 9.874 0.7881
+55128 TRIM68 tripartite motif containing 68 protein-coding 8.182 0.9992
+55129 ANO10 anoctamin 10 protein-coding 9.274 0.6633
+55130 ARMC4 armadillo repeat containing 4 protein-coding 2.922 2.23
+55131 RBM28 RNA binding motif protein 28 protein-coding 8.765 0.6129
+55132 LARP1B La ribonucleoprotein domain family member 1B protein-coding 8.584 0.7578
55133 SRBD1 S1 RNA binding domain 1 protein-coding 8.401 0.5542
-55135 WRAP53 WD repeat containing antisense to TP53 protein-coding 7.932 0.7752
-55137 FIGN fidgetin, microtubule severing factor protein-coding 4.877 1.984
+55135 WRAP53 WD repeat containing antisense to TP53 protein-coding 7.932 0.775
+55137 FIGN fidgetin, microtubule severing factor protein-coding 4.877 1.983
55138 FAM90A1 family with sequence similarity 90 member A1 protein-coding 3.78 1.833
-55139 ANKZF1 ankyrin repeat and zinc finger domain containing 1 protein-coding 9.428 0.6435
-5514 PPP1R10 protein phosphatase 1 regulatory subunit 10 protein-coding 10.95 0.4917
-55140 ELP3 elongator acetyltransferase complex subunit 3 protein-coding 9.509 0.6905
-55142 HAUS2 HAUS augmin like complex subunit 2 protein-coding 8.955 0.5533
-55143 CDCA8 cell division cycle associated 8 protein-coding 8.038 1.87
-55144 LRRC8D leucine rich repeat containing 8 VRAC subunit D protein-coding 9.567 0.7779
-55145 THAP1 THAP domain containing 1 protein-coding 7.634 0.5074
-55146 ZDHHC4 zinc finger DHHC-type containing 4 protein-coding 9.874 0.6274
-55147 RBM23 RNA binding motif protein 23 protein-coding 10.36 0.4489
-55148 UBR7 ubiquitin protein ligase E3 component n-recognin 7 (putative) protein-coding 9.971 0.551
-55149 MTPAP mitochondrial poly(A) polymerase protein-coding 8.992 0.5139
-5515 PPP2CA protein phosphatase 2 catalytic subunit alpha protein-coding 11.49 0.4068
+55139 ANKZF1 ankyrin repeat and zinc finger domain containing 1 protein-coding 9.428 0.6433
+5514 PPP1R10 protein phosphatase 1 regulatory subunit 10 protein-coding 10.95 0.4915
+55140 ELP3 elongator acetyltransferase complex subunit 3 protein-coding 9.509 0.6902
+55142 HAUS2 HAUS augmin like complex subunit 2 protein-coding 8.955 0.5532
+55143 CDCA8 cell division cycle associated 8 protein-coding 8.036 1.87
+55144 LRRC8D leucine rich repeat containing 8 VRAC subunit D protein-coding 9.566 0.7779
+55145 THAP1 THAP domain containing 1 protein-coding 7.634 0.5072
+55146 ZDHHC4 zinc finger DHHC-type containing 4 protein-coding 9.874 0.6272
+55147 RBM23 RNA binding motif protein 23 protein-coding 10.36 0.4488
+55148 UBR7 ubiquitin protein ligase E3 component n-recognin 7 (putative) protein-coding 9.971 0.5507
+55149 MTPAP mitochondrial poly(A) polymerase protein-coding 8.992 0.5137
+5515 PPP2CA protein phosphatase 2 catalytic subunit alpha protein-coding 11.49 0.4067
55150 C19orf73 chromosome 19 open reading frame 73 protein-coding 4.303 1.041
55151 TMEM38B transmembrane protein 38B protein-coding 7.596 1.32
-55152 DALRD3 DALR anticodon binding domain containing 3 protein-coding 9.273 0.6896
-55153 SDAD1 SDA1 domain containing 1 protein-coding 9.783 0.4905
-55154 MSTO1 misato 1, mitochondrial distribution and morphology regulator protein-coding 9.326 0.6762
-55156 ARMC1 armadillo repeat containing 1 protein-coding 9.363 0.6804
-55157 DARS2 aspartyl-tRNA synthetase 2, mitochondrial protein-coding 9.177 0.8454
+55152 DALRD3 DALR anticodon binding domain containing 3 protein-coding 9.273 0.6894
+55153 SDAD1 SDA1 domain containing 1 protein-coding 9.783 0.4903
+55154 MSTO1 misato 1, mitochondrial distribution and morphology regulator protein-coding 9.325 0.6761
+55156 ARMC1 armadillo repeat containing 1 protein-coding 9.362 0.6802
+55157 DARS2 aspartyl-tRNA synthetase 2, mitochondrial protein-coding 9.176 0.8453
55159 RFWD3 ring finger and WD repeat domain 3 protein-coding 9.525 0.8438
-5516 PPP2CB protein phosphatase 2 catalytic subunit beta protein-coding 10.87 0.7092
-55160 ARHGEF10L Rho guanine nucleotide exchange factor 10 like protein-coding 9.887 1.028
-55161 TMEM33 transmembrane protein 33 protein-coding 10.68 0.5677
-55163 PNPO pyridoxamine 5'-phosphate oxidase protein-coding 10.14 0.7781
-55164 SHQ1 SHQ1, H/ACA ribonucleoprotein assembly factor protein-coding 8.461 0.609
-55165 CEP55 centrosomal protein 55 protein-coding 7.822 2.224
-55166 CENPQ centromere protein Q protein-coding 7.019 0.875
-55167 MSL2 MSL complex subunit 2 protein-coding 9.577 0.5698
+5516 PPP2CB protein phosphatase 2 catalytic subunit beta protein-coding 10.87 0.709
+55160 ARHGEF10L Rho guanine nucleotide exchange factor 10 like protein-coding 9.888 1.028
+55161 TMEM33 transmembrane protein 33 protein-coding 10.68 0.5676
+55163 PNPO pyridoxamine 5'-phosphate oxidase protein-coding 10.14 0.7779
+55164 SHQ1 SHQ1, H/ACA ribonucleoprotein assembly factor protein-coding 8.461 0.6087
+55165 CEP55 centrosomal protein 55 protein-coding 7.819 2.224
+55166 CENPQ centromere protein Q protein-coding 7.019 0.8749
+55167 MSL2 MSL complex subunit 2 protein-coding 9.577 0.5696
55168 MRPS18A mitochondrial ribosomal protein S18A protein-coding 9.646 0.6253
-55170 PRMT6 protein arginine methyltransferase 6 protein-coding 8.605 0.8949
-55171 TBCCD1 TBCC domain containing 1 protein-coding 8.234 0.6296
-55172 DNAAF2 dynein axonemal assembly factor 2 protein-coding 8.165 0.5818
-55173 MRPS10 mitochondrial ribosomal protein S10 protein-coding 9.842 0.559
-55174 INTS10 integrator complex subunit 10 protein-coding 10.04 0.6006
-55175 KLHL11 kelch like family member 11 protein-coding 5.136 1.448
-55176 SEC61A2 Sec61 translocon alpha 2 subunit protein-coding 7.122 0.9796
-55177 RMDN3 regulator of microtubule dynamics 3 protein-coding 9.921 0.5205
-55178 MRM3 mitochondrial rRNA methyltransferase 3 protein-coding 8.319 0.6317
-55179 FAIM Fas apoptotic inhibitory molecule protein-coding 7.941 0.747
-5518 PPP2R1A protein phosphatase 2 scaffold subunit Aalpha protein-coding 12.74 0.5181
-55180 LINS1 lines homolog 1 protein-coding 7.845 0.5746
-55181 SMG8 SMG8, nonsense mediated mRNA decay factor protein-coding 8.809 0.5717
-55182 RNF220 ring finger protein 220 protein-coding 10.42 0.4332
-55183 RIF1 replication timing regulatory factor 1 protein-coding 9.118 1.123
+55170 PRMT6 protein arginine methyltransferase 6 protein-coding 8.606 0.8947
+55171 TBCCD1 TBCC domain containing 1 protein-coding 8.234 0.6294
+55172 DNAAF2 dynein axonemal assembly factor 2 protein-coding 8.165 0.5817
+55173 MRPS10 mitochondrial ribosomal protein S10 protein-coding 9.841 0.5589
+55174 INTS10 integrator complex subunit 10 protein-coding 10.04 0.6004
+55175 KLHL11 kelch like family member 11 protein-coding 5.137 1.447
+55176 SEC61A2 Sec61 translocon alpha 2 subunit protein-coding 7.122 0.9794
+55177 RMDN3 regulator of microtubule dynamics 3 protein-coding 9.921 0.5204
+55178 MRM3 mitochondrial rRNA methyltransferase 3 protein-coding 8.319 0.6315
+55179 FAIM Fas apoptotic inhibitory molecule protein-coding 7.942 0.7471
+5518 PPP2R1A protein phosphatase 2 scaffold subunit Aalpha protein-coding 12.74 0.5182
+55180 LINS1 lines homolog 1 protein-coding 7.845 0.5745
+55181 SMG8 SMG8, nonsense mediated mRNA decay factor protein-coding 8.809 0.5715
+55182 RNF220 ring finger protein 220 protein-coding 10.42 0.4331
+55183 RIF1 replication timing regulatory factor 1 protein-coding 9.118 1.122
55184 DZANK1 double zinc ribbon and ankyrin repeat domains 1 protein-coding 6.15 1.135
-55186 SLC25A36 solute carrier family 25 member 36 protein-coding 10.21 1.038
+55186 SLC25A36 solute carrier family 25 member 36 protein-coding 10.21 1.037
55187 VPS13D vacuolar protein sorting 13 homolog D protein-coding 10.57 0.797
55188 RIC8B RIC8 guanine nucleotide exchange factor B protein-coding 8.414 0.6497
-5519 PPP2R1B protein phosphatase 2 scaffold subunit Abeta protein-coding 9.482 0.7912
-55190 NUDT11 nudix hydrolase 11 protein-coding 5.309 2.709
-55191 NADSYN1 NAD synthetase 1 protein-coding 10.04 0.7612
-55192 DNAJC17 DnaJ heat shock protein family (Hsp40) member C17 protein-coding 7.954 0.6549
-55193 PBRM1 polybromo 1 protein-coding 10.05 0.6697
-55194 EVA1B eva-1 homolog B protein-coding 7.619 1.286
-55195 CCDC198 coiled-coil domain containing 198 protein-coding 2.224 3.45
-55196 KIAA1551 KIAA1551 protein-coding 9.838 1.097
-55197 RPRD1A regulation of nuclear pre-mRNA domain containing 1A protein-coding 10.15 0.6996
-55198 APPL2 adaptor protein, phosphotyrosine interacting with PH domain and leucine zipper 2 protein-coding 9.804 0.7728
-55199 FAM86C1 family with sequence similarity 86 member C1 protein-coding 7.373 0.758
-552 AVPR1A arginine vasopressin receptor 1A protein-coding 3.662 2.003
-5520 PPP2R2A protein phosphatase 2 regulatory subunit Balpha protein-coding 9.832 0.6641
-55200 PLEKHG6 pleckstrin homology and RhoGEF domain containing G6 protein-coding 6.797 2.869
-55201 MAP1S microtubule associated protein 1S protein-coding 9.85 0.6772
-55203 LGI2 leucine rich repeat LGI family member 2 protein-coding 5.945 1.866
-55204 GOLPH3L golgi phosphoprotein 3 like protein-coding 9.731 0.7631
+5519 PPP2R1B protein phosphatase 2 scaffold subunit Abeta protein-coding 9.482 0.791
+55190 NUDT11 nudix hydrolase 11 protein-coding 5.31 2.709
+55191 NADSYN1 NAD synthetase 1 protein-coding 10.04 0.761
+55192 DNAJC17 DnaJ heat shock protein family (Hsp40) member C17 protein-coding 7.954 0.6546
+55193 PBRM1 polybromo 1 protein-coding 10.05 0.6696
+55194 EVA1B eva-1 homolog B protein-coding 7.62 1.286
+55195 CCDC198 coiled-coil domain containing 198 protein-coding 2.224 3.451
+55196 KIAA1551 KIAA1551 protein-coding 9.839 1.097
+55197 RPRD1A regulation of nuclear pre-mRNA domain containing 1A protein-coding 10.15 0.6994
+55198 APPL2 adaptor protein, phosphotyrosine interacting with PH domain and leucine zipper 2 protein-coding 9.804 0.7729
+55199 FAM86C1 family with sequence similarity 86 member C1 protein-coding 7.372 0.7578
+552 AVPR1A arginine vasopressin receptor 1A protein-coding 3.663 2.003
+5520 PPP2R2A protein phosphatase 2 regulatory subunit Balpha protein-coding 9.831 0.6639
+55200 PLEKHG6 pleckstrin homology and RhoGEF domain containing G6 protein-coding 6.797 2.868
+55201 MAP1S microtubule associated protein 1S protein-coding 9.851 0.677
+55203 LGI2 leucine rich repeat LGI family member 2 protein-coding 5.946 1.866
+55204 GOLPH3L golgi phosphoprotein 3 like protein-coding 9.731 0.763
55205 ZNF532 zinc finger protein 532 protein-coding 10.2 1.162
-55206 SBNO1 strawberry notch homolog 1 protein-coding 8.414 1.361
-55207 ARL8B ADP ribosylation factor like GTPase 8B protein-coding 11.05 0.5286
-55208 DCUN1D2 defective in cullin neddylation 1 domain containing 2 protein-coding 7.952 0.7599
-55209 SETD5 SET domain containing 5 protein-coding 10.95 0.6534
-5521 PPP2R2B protein phosphatase 2 regulatory subunit Bbeta protein-coding 5.06 2.701
-55210 ATAD3A ATPase family, AAA domain containing 3A protein-coding 9.661 0.8769
-55212 BBS7 Bardet-Biedl syndrome 7 protein-coding 7.875 0.6497
-55213 RCBTB1 RCC1 and BTB domain containing protein 1 protein-coding 9.234 0.9239
-55214 P3H2 prolyl 3-hydroxylase 2 protein-coding 8.22 2.207
-55215 FANCI Fanconi anemia complementation group I protein-coding 9.309 1.372
-55216 NKAPD1 NKAP domain containing 1 protein-coding 9.45 0.5002
-55217 TMLHE trimethyllysine hydroxylase, epsilon protein-coding 7.331 0.9985
-55218 EXD2 exonuclease 3'-5' domain containing 2 protein-coding 9.173 0.7061
-55219 MACO1 macoilin 1 protein-coding 9.738 0.5616
-5522 PPP2R2C protein phosphatase 2 regulatory subunit Bgamma protein-coding 6.283 3.515
+55206 SBNO1 strawberry notch homolog 1 protein-coding 8.415 1.36
+55207 ARL8B ADP ribosylation factor like GTPase 8B protein-coding 11.05 0.5284
+55208 DCUN1D2 defective in cullin neddylation 1 domain containing 2 protein-coding 7.952 0.7597
+55209 SETD5 SET domain containing 5 protein-coding 10.95 0.6531
+5521 PPP2R2B protein phosphatase 2 regulatory subunit Bbeta protein-coding 5.062 2.701
+55210 ATAD3A ATPase family, AAA domain containing 3A protein-coding 9.66 0.8769
+55212 BBS7 Bardet-Biedl syndrome 7 protein-coding 7.875 0.6495
+55213 RCBTB1 RCC1 and BTB domain containing protein 1 protein-coding 9.235 0.9237
+55214 P3H2 prolyl 3-hydroxylase 2 protein-coding 8.221 2.207
+55215 FANCI Fanconi anemia complementation group I protein-coding 9.307 1.372
+55216 NKAPD1 NKAP domain containing 1 protein-coding 9.45 0.5
+55217 TMLHE trimethyllysine hydroxylase, epsilon protein-coding 7.331 0.9981
+55218 EXD2 exonuclease 3'-5' domain containing 2 protein-coding 9.173 0.7058
+55219 MACO1 macoilin 1 protein-coding 9.738 0.5614
+5522 PPP2R2C protein phosphatase 2 regulatory subunit Bgamma protein-coding 6.283 3.514
55220 KLHDC8A kelch domain containing 8A protein-coding 4.437 2.701
55222 LRRC20 leucine rich repeat containing 20 protein-coding 8.452 1.026
-55223 TRIM62 tripartite motif containing 62 protein-coding 7.788 0.8598
-55224 ETNK2 ethanolamine kinase 2 protein-coding 8.377 1.886
-55225 RAVER2 ribonucleoprotein, PTB binding 2 protein-coding 8.586 1.104
+55223 TRIM62 tripartite motif containing 62 protein-coding 7.789 0.8598
+55224 ETNK2 ethanolamine kinase 2 protein-coding 8.377 1.885
+55225 RAVER2 ribonucleoprotein, PTB binding 2 protein-coding 8.587 1.104
55226 NAT10 N-acetyltransferase 10 protein-coding 10.39 0.5528
-55227 LRRC1 leucine rich repeat containing 1 protein-coding 9.02 1.311
-55228 PNMA8A PNMA family member 8A protein-coding 7.382 2.882
-55229 PANK4 pantothenate kinase 4 protein-coding 8.771 0.5051
+55227 LRRC1 leucine rich repeat containing 1 protein-coding 9.019 1.311
+55228 PNMA8A PNMA family member 8A protein-coding 7.384 2.881
+55229 PANK4 pantothenate kinase 4 protein-coding 8.771 0.505
5523 PPP2R3A protein phosphatase 2 regulatory subunit B''alpha protein-coding 8.496 1.426
-55230 USP40 ubiquitin specific peptidase 40 protein-coding 9.833 0.6446
+55230 USP40 ubiquitin specific peptidase 40 protein-coding 9.833 0.6445
55231 CCDC87 coiled-coil domain containing 87 protein-coding 4.021 1.208
55233 MOB1A MOB kinase activator 1A protein-coding 9.304 0.9476
-55234 SMU1 SMU1, DNA replication regulator and spliceosomal factor protein-coding 10.56 0.4193
-55236 UBA6 ubiquitin like modifier activating enzyme 6 protein-coding 9.879 0.761
-55238 SLC38A7 solute carrier family 38 member 7 protein-coding 7.991 0.8681
-55239 OGFOD1 2-oxoglutarate and iron dependent oxygenase domain containing 1 protein-coding 9.692 0.4625
-5524 PTPA protein phosphatase 2 phosphatase activator protein-coding 11.91 0.5623
-55240 STEAP3 STEAP3 metalloreductase protein-coding 9.589 1.502
-55243 KIRREL1 kirre like nephrin family adhesion molecule 1 protein-coding 7.084 2.004
-55244 SLC47A1 solute carrier family 47 member 1 protein-coding 6.737 2.822
-55245 UQCC1 ubiquinol-cytochrome c reductase complex assembly factor 1 protein-coding 9.697 0.5444
-55246 CCDC25 coiled-coil domain containing 25 protein-coding 9.764 0.5557
-55247 NEIL3 nei like DNA glycosylase 3 protein-coding 5.053 2.025
-55248 TMEM206 transmembrane protein 206 protein-coding 7.882 0.9578
-55249 YY1AP1 YY1 associated protein 1 protein-coding 10.8 0.4854
-5525 PPP2R5A protein phosphatase 2 regulatory subunit B'alpha protein-coding 10.49 0.7353
-55250 ELP2 elongator acetyltransferase complex subunit 2 protein-coding 10.02 0.7247
-55251 PCMTD2 protein-L-isoaspartate (D-aspartate) O-methyltransferase domain containing 2 protein-coding 10.31 0.756
-55252 ASXL2 additional sex combs like 2, transcriptional regulator protein-coding 8.56 1.357
-55253 TYW1 tRNA-yW synthesizing protein 1 homolog protein-coding 9.053 0.4571
-55254 TMEM39A transmembrane protein 39A protein-coding 9.067 0.7453
-55255 WDR41 WD repeat domain 41 protein-coding 9.07 0.5624
-55256 ADI1 acireductone dioxygenase 1 protein-coding 10.99 0.9119
-55257 MRGBP MRG domain binding protein protein-coding 8.845 0.7287
+55234 SMU1 SMU1, DNA replication regulator and spliceosomal factor protein-coding 10.56 0.4192
+55236 UBA6 ubiquitin like modifier activating enzyme 6 protein-coding 9.878 0.7607
+55238 SLC38A7 solute carrier family 38 member 7 protein-coding 7.991 0.8677
+55239 OGFOD1 2-oxoglutarate and iron dependent oxygenase domain containing 1 protein-coding 9.691 0.4624
+5524 PTPA protein phosphatase 2 phosphatase activator protein-coding 11.91 0.5622
+55240 STEAP3 STEAP3 metalloreductase protein-coding 9.589 1.501
+55243 KIRREL1 kirre like nephrin family adhesion molecule 1 protein-coding 7.085 2.003
+55244 SLC47A1 solute carrier family 47 member 1 protein-coding 6.738 2.821
+55245 UQCC1 ubiquinol-cytochrome c reductase complex assembly factor 1 protein-coding 9.696 0.5443
+55246 CCDC25 coiled-coil domain containing 25 protein-coding 9.764 0.5555
+55247 NEIL3 nei like DNA glycosylase 3 protein-coding 5.05 2.026
+55248 TMEM206 transmembrane protein 206 protein-coding 7.881 0.958
+55249 YY1AP1 YY1 associated protein 1 protein-coding 10.8 0.4852
+5525 PPP2R5A protein phosphatase 2 regulatory subunit B'alpha protein-coding 10.49 0.7352
+55250 ELP2 elongator acetyltransferase complex subunit 2 protein-coding 10.02 0.7244
+55251 PCMTD2 protein-L-isoaspartate (D-aspartate) O-methyltransferase domain containing 2 protein-coding 10.31 0.7558
+55252 ASXL2 additional sex combs like 2, transcriptional regulator protein-coding 8.561 1.356
+55253 TYW1 tRNA-yW synthesizing protein 1 homolog protein-coding 9.053 0.457
+55254 TMEM39A transmembrane protein 39A protein-coding 9.067 0.7449
+55255 WDR41 WD repeat domain 41 protein-coding 9.07 0.5622
+55256 ADI1 acireductone dioxygenase 1 protein-coding 10.99 0.912
+55257 MRGBP MRG domain binding protein protein-coding 8.844 0.7287
55258 THNSL2 threonine synthase like 2 protein-coding 8.336 2.183
-55259 CASC1 cancer susceptibility 1 protein-coding 3.787 2.11
-5526 PPP2R5B protein phosphatase 2 regulatory subunit B'beta protein-coding 8.859 0.7903
-55260 TMEM143 transmembrane protein 143 protein-coding 7.128 0.8056
-55262 C7orf43 chromosome 7 open reading frame 43 protein-coding 8.714 0.6336
-55266 TMEM19 transmembrane protein 19 protein-coding 9.427 0.6999
-55267 PRR34 proline rich 34 protein-coding 3.178 0.9548
-55268 ECHDC2 enoyl-CoA hydratase domain containing 2 protein-coding 9.265 1.425
-55269 PSPC1 paraspeckle component 1 protein-coding 9.645 0.5501
-5527 PPP2R5C protein phosphatase 2 regulatory subunit B'gamma protein-coding 10.94 0.4747
-55270 NUDT15 nudix hydrolase 15 protein-coding 8.868 0.7906
-55272 IMP3 IMP3, U3 small nucleolar ribonucleoprotein protein-coding 10.23 0.5342
-55273 TMEM100 transmembrane protein 100 protein-coding 5.238 2.697
-55274 PHF10 PHD finger protein 10 protein-coding 10.27 0.6712
-55275 VPS53 VPS53, GARP complex subunit protein-coding 9.905 0.5564
-55276 PGM2 phosphoglucomutase 2 protein-coding 9.392 0.9651
-55277 FGGY FGGY carbohydrate kinase domain containing protein-coding 7.094 1.25
-55278 QRSL1 glutaminyl-tRNA synthase (glutamine-hydrolyzing)-like 1 protein-coding 8.784 0.5929
-55279 ZNF654 zinc finger protein 654 protein-coding 8.156 0.6585
-5528 PPP2R5D protein phosphatase 2 regulatory subunit B'delta protein-coding 10.33 0.5004
-55280 CWF19L1 CWF19 like 1, cell cycle control (S. pombe) protein-coding 8.891 0.4876
-55281 TMEM140 transmembrane protein 140 protein-coding 9.002 1.138
-55282 LRRC36 leucine rich repeat containing 36 protein-coding 3.167 1.895
-55283 MCOLN3 mucolipin 3 protein-coding 5.04 2.481
-55284 UBE2W ubiquitin conjugating enzyme E2 W protein-coding 9.241 0.6402
+55259 CASC1 cancer susceptibility 1 protein-coding 3.788 2.109
+5526 PPP2R5B protein phosphatase 2 regulatory subunit B'beta protein-coding 8.86 0.7903
+55260 TMEM143 transmembrane protein 143 protein-coding 7.128 0.8053
+55262 C7orf43 chromosome 7 open reading frame 43 protein-coding 8.714 0.6337
+55266 TMEM19 transmembrane protein 19 protein-coding 9.427 0.6996
+55267 PRR34 proline rich 34 protein-coding 3.178 0.9546
+55268 ECHDC2 enoyl-CoA hydratase domain containing 2 protein-coding 9.267 1.425
+55269 PSPC1 paraspeckle component 1 protein-coding 9.645 0.5499
+5527 PPP2R5C protein phosphatase 2 regulatory subunit B'gamma protein-coding 10.94 0.4746
+55270 NUDT15 nudix hydrolase 15 protein-coding 8.868 0.7904
+55272 IMP3 IMP3, U3 small nucleolar ribonucleoprotein protein-coding 10.22 0.5341
+55273 TMEM100 transmembrane protein 100 protein-coding 5.24 2.697
+55274 PHF10 PHD finger protein 10 protein-coding 10.27 0.6711
+55275 VPS53 VPS53, GARP complex subunit protein-coding 9.906 0.5562
+55276 PGM2 phosphoglucomutase 2 protein-coding 9.392 0.9647
+55277 FGGY FGGY carbohydrate kinase domain containing protein-coding 7.094 1.249
+55278 QRSL1 glutaminyl-tRNA synthase (glutamine-hydrolyzing)-like 1 protein-coding 8.784 0.5927
+55279 ZNF654 zinc finger protein 654 protein-coding 8.156 0.6583
+5528 PPP2R5D protein phosphatase 2 regulatory subunit B'delta protein-coding 10.33 0.5003
+55280 CWF19L1 CWF19 like 1, cell cycle control (S. pombe) protein-coding 8.891 0.4875
+55281 TMEM140 transmembrane protein 140 protein-coding 9.003 1.138
+55282 LRRC36 leucine rich repeat containing 36 protein-coding 3.168 1.897
+55283 MCOLN3 mucolipin 3 protein-coding 5.041 2.48
+55284 UBE2W ubiquitin conjugating enzyme E2 W protein-coding 9.241 0.6399
55285 RBM41 RNA binding motif protein 41 protein-coding 7.1 0.7497
55286 C4orf19 chromosome 4 open reading frame 19 protein-coding 6.503 2.552
-55287 TMEM40 transmembrane protein 40 protein-coding 3.419 3.456
-55288 RHOT1 ras homolog family member T1 protein-coding 9.559 0.5582
-552889 ATXN7L3B ataxin 7 like 3B protein-coding 11.34 0.6132
-55289 ACOXL acyl-CoA oxidase like protein-coding 2.613 2.032
-5529 PPP2R5E protein phosphatase 2 regulatory subunit B'epsilon protein-coding 9.269 0.6766
-55290 BRF2 BRF2, RNA polymerase III transcription initiation factor subunit protein-coding 8.46 0.6851
-552900 BOLA2 bolA family member 2 protein-coding 10.21 0.8059
-55291 PPP6R3 protein phosphatase 6 regulatory subunit 3 protein-coding 10.96 0.4794
-55293 UEVLD UEV and lactate/malate dehyrogenase domains protein-coding 7.56 0.9006
-55294 FBXW7 F-box and WD repeat domain containing 7 protein-coding 8.628 0.6772
-55295 KLHL26 kelch like family member 26 protein-coding 7.824 0.8309
-55296 TBC1D19 TBC1 domain family member 19 protein-coding 6.544 0.8894
-55297 CCDC91 coiled-coil domain containing 91 protein-coding 8.699 0.7271
-55298 RNF121 ring finger protein 121 protein-coding 8.961 0.5059
-55299 BRIX1 BRX1, biogenesis of ribosomes protein-coding 9.506 0.7682
-553 AVPR1B arginine vasopressin receptor 1B protein-coding 0.8894 1.432
+55287 TMEM40 transmembrane protein 40 protein-coding 3.418 3.456
+55288 RHOT1 ras homolog family member T1 protein-coding 9.559 0.5581
+552889 ATXN7L3B ataxin 7 like 3B protein-coding 11.34 0.613
+55289 ACOXL acyl-CoA oxidase like protein-coding 2.615 2.034
+5529 PPP2R5E protein phosphatase 2 regulatory subunit B'epsilon protein-coding 9.269 0.6764
+55290 BRF2 BRF2, RNA polymerase III transcription initiation factor subunit protein-coding 8.46 0.685
+552900 BOLA2 bolA family member 2 protein-coding 10.2 0.8064
+55291 PPP6R3 protein phosphatase 6 regulatory subunit 3 protein-coding 10.96 0.4793
+55293 UEVLD UEV and lactate/malate dehyrogenase domains protein-coding 7.56 0.9002
+55294 FBXW7 F-box and WD repeat domain containing 7 protein-coding 8.628 0.6769
+55295 KLHL26 kelch like family member 26 protein-coding 7.825 0.8307
+55296 TBC1D19 TBC1 domain family member 19 protein-coding 6.545 0.8893
+55297 CCDC91 coiled-coil domain containing 91 protein-coding 8.699 0.7268
+55298 RNF121 ring finger protein 121 protein-coding 8.961 0.5057
+55299 BRIX1 BRX1, biogenesis of ribosomes protein-coding 9.506 0.7684
+553 AVPR1B arginine vasopressin receptor 1B protein-coding 0.8899 1.432
5530 PPP3CA protein phosphatase 3 catalytic subunit alpha protein-coding 10.2 1.114
-55300 PI4K2B phosphatidylinositol 4-kinase type 2 beta protein-coding 9.127 0.9701
-55301 OLAH oleoyl-ACP hydrolase protein-coding 1.319 1.575
-55303 GIMAP4 GTPase, IMAP family member 4 protein-coding 8.598 1.279
+55300 PI4K2B phosphatidylinositol 4-kinase type 2 beta protein-coding 9.127 0.9697
+55301 OLAH oleoyl-ACP hydrolase protein-coding 1.319 1.574
+55303 GIMAP4 GTPase, IMAP family member 4 protein-coding 8.599 1.279
55304 SPTLC3 serine palmitoyltransferase long chain base subunit 3 protein-coding 7.272 1.992
-55308 DDX19A DEAD-box helicase 19A protein-coding 9.805 0.4492
-5531 PPP4C protein phosphatase 4 catalytic subunit protein-coding 10.96 0.6549
-55311 ZNF444 zinc finger protein 444 protein-coding 9.246 0.8469
-553115 PEF1 penta-EF-hand domain containing 1 protein-coding 10.74 0.524
-55312 RFK riboflavin kinase protein-coding 9.299 0.8761
-55313 CPPED1 calcineurin like phosphoesterase domain containing 1 protein-coding 9.047 1.144
+55308 DDX19A DEAD-box helicase 19A protein-coding 9.805 0.449
+5531 PPP4C protein phosphatase 4 catalytic subunit protein-coding 10.96 0.6551
+55311 ZNF444 zinc finger protein 444 protein-coding 9.246 0.8466
+553115 PEF1 penta-EF-hand domain containing 1 protein-coding 10.74 0.5238
+55312 RFK riboflavin kinase protein-coding 9.299 0.876
+55313 CPPED1 calcineurin like phosphoesterase domain containing 1 protein-coding 9.048 1.143
55314 TMEM144 transmembrane protein 144 protein-coding 7.826 1.502
-55315 SLC29A3 solute carrier family 29 member 3 protein-coding 7.953 0.9514
+55315 SLC29A3 solute carrier family 29 member 3 protein-coding 7.953 0.952
553158 PRR5-ARHGAP8 PRR5-ARHGAP8 readthrough protein-coding 4.03 2.154
-55316 RSAD1 radical S-adenosyl methionine domain containing 1 protein-coding 9.551 0.6517
-55317 AP5S1 adaptor related protein complex 5 sigma 1 subunit protein-coding 8.121 0.5767
-55319 TMA16 translation machinery associated 16 homolog protein-coding 8.344 0.5509
+55316 RSAD1 radical S-adenosyl methionine domain containing 1 protein-coding 9.551 0.6514
+55317 AP5S1 adaptor related protein complex 5 sigma 1 subunit protein-coding 8.121 0.5766
+55319 TMA16 translation machinery associated 16 homolog protein-coding 8.344 0.5508
5532 PPP3CB protein phosphatase 3 catalytic subunit beta protein-coding 10.01 0.5714
55320 MIS18BP1 MIS18 binding protein 1 protein-coding 8.5 1.047
-55321 TMEM74B transmembrane protein 74B protein-coding 5.364 1.548
-55322 C5orf22 chromosome 5 open reading frame 22 protein-coding 9.08 0.6378
-55323 LARP6 La ribonucleoprotein domain family member 6 protein-coding 8.009 1.577
-55324 ABCF3 ATP binding cassette subfamily F member 3 protein-coding 10.36 0.5578
-55325 UFSP2 UFM1 specific peptidase 2 protein-coding 8.998 0.6005
-55326 AGPAT5 1-acylglycerol-3-phosphate O-acyltransferase 5 protein-coding 9.645 0.9319
+55321 TMEM74B transmembrane protein 74B protein-coding 5.363 1.548
+55322 C5orf22 chromosome 5 open reading frame 22 protein-coding 9.08 0.6376
+55323 LARP6 La ribonucleoprotein domain family member 6 protein-coding 8.01 1.576
+55324 ABCF3 ATP binding cassette subfamily F member 3 protein-coding 10.36 0.5581
+55325 UFSP2 UFM1 specific peptidase 2 protein-coding 8.998 0.6004
+55326 AGPAT5 1-acylglycerol-3-phosphate O-acyltransferase 5 protein-coding 9.645 0.9316
55327 LIN7C lin-7 homolog C, crumbs cell polarity complex component protein-coding 9.551 0.5794
-55328 RNLS renalase, FAD dependent amine oxidase protein-coding 6.45 1.661
+55328 RNLS renalase, FAD dependent amine oxidase protein-coding 6.451 1.661
55329 MNS1 meiosis specific nuclear structural 1 protein-coding 6.393 1.314
-5533 PPP3CC protein phosphatase 3 catalytic subunit gamma protein-coding 8.14 0.6921
-55330 BLOC1S4 biogenesis of lysosomal organelles complex 1 subunit 4 protein-coding 8.288 0.5616
+5533 PPP3CC protein phosphatase 3 catalytic subunit gamma protein-coding 8.14 0.692
+55330 BLOC1S4 biogenesis of lysosomal organelles complex 1 subunit 4 protein-coding 8.288 0.5617
55331 ACER3 alkaline ceramidase 3 protein-coding 8.42 0.8856
55332 DRAM1 DNA damage regulated autophagy modulator 1 protein-coding 9.263 1.316
-55333 SYNJ2BP synaptojanin 2 binding protein protein-coding 9.904 0.656
-55334 SLC39A9 solute carrier family 39 member 9 protein-coding 10.89 0.5317
-55335 NIPSNAP3B nipsnap homolog 3B protein-coding 4.79 1.211
+55333 SYNJ2BP synaptojanin 2 binding protein protein-coding 9.904 0.6559
+55334 SLC39A9 solute carrier family 39 member 9 protein-coding 10.89 0.5316
+55335 NIPSNAP3B nipsnap homolog 3B protein-coding 4.791 1.212
55336 FBXL8 F-box and leucine rich repeat protein 8 protein-coding 6.265 1.202
-55337 C19orf66 chromosome 19 open reading frame 66 protein-coding 9.336 0.8616
+55337 C19orf66 chromosome 19 open reading frame 66 protein-coding 9.337 0.8613
55339 WDR33 WD repeat domain 33 protein-coding 10.42 0.3466
-5534 PPP3R1 protein phosphatase 3 regulatory subunit B, alpha protein-coding 10.59 0.5161
-55340 GIMAP5 GTPase, IMAP family member 5 protein-coding 8.103 1.345
-55341 LSG1 large 60S subunit nuclear export GTPase 1 protein-coding 10.01 0.6124
-55342 STRBP spermatid perinuclear RNA binding protein protein-coding 9.413 0.8777
-55343 SLC35C1 solute carrier family 35 member C1 protein-coding 9.6 0.8687
-55344 PLCXD1 phosphatidylinositol specific phospholipase C X domain containing 1 protein-coding 8.521 1.205
-55345 ZGRF1 zinc finger GRF-type containing 1 protein-coding 6.458 1.152
-55346 TCP11L1 t-complex 11 like 1 protein-coding 7.466 0.8615
-55347 ABHD10 abhydrolase domain containing 10 protein-coding 9.476 0.6566
-55349 CHDH choline dehydrogenase protein-coding 7.651 2.404
-55350 VNN3 vanin 3 protein-coding 2.518 2.371
-55351 STK32B serine/threonine kinase 32B protein-coding 5.446 2.35
+5534 PPP3R1 protein phosphatase 3 regulatory subunit B, alpha protein-coding 10.59 0.5159
+55340 GIMAP5 GTPase, IMAP family member 5 protein-coding 8.104 1.346
+55341 LSG1 large 60S subunit nuclear export GTPase 1 protein-coding 10.01 0.6122
+55342 STRBP spermatid perinuclear RNA binding protein protein-coding 9.413 0.8774
+55343 SLC35C1 solute carrier family 35 member C1 protein-coding 9.6 0.8685
+55344 PLCXD1 phosphatidylinositol specific phospholipase C X domain containing 1 protein-coding 8.52 1.205
+55345 ZGRF1 zinc finger GRF-type containing 1 protein-coding 6.458 1.151
+55346 TCP11L1 t-complex 11 like 1 protein-coding 7.466 0.8616
+55347 ABHD10 abhydrolase domain containing 10 protein-coding 9.476 0.6565
+55349 CHDH choline dehydrogenase protein-coding 7.651 2.403
+55350 VNN3 vanin 3 protein-coding 2.518 2.37
+55351 STK32B serine/threonine kinase 32B protein-coding 5.446 2.349
55352 COPRS coordinator of PRMT5 and differentiation stimulator protein-coding 9.622 0.695
-55353 LAPTM4B lysosomal protein transmembrane 4 beta protein-coding 11.58 1.337
-55355 HJURP Holliday junction recognition protein protein-coding 7.495 2.055
-55356 SLC22A15 solute carrier family 22 member 15 protein-coding 6.31 1.368
+55353 LAPTM4B lysosomal protein transmembrane 4 beta protein-coding 11.58 1.336
+55355 HJURP Holliday junction recognition protein protein-coding 7.493 2.056
+55356 SLC22A15 solute carrier family 22 member 15 protein-coding 6.311 1.368
55357 TBC1D2 TBC1 domain family member 2 protein-coding 9.143 1.342
55359 STYK1 serine/threonine/tyrosine kinase 1 protein-coding 5.319 2.766
5536 PPP5C protein phosphatase 5 catalytic subunit protein-coding 10.34 0.4732
-55361 PI4K2A phosphatidylinositol 4-kinase type 2 alpha protein-coding 9.896 0.6228
-55362 TMEM63B transmembrane protein 63B protein-coding 10.4 0.6931
-55364 IMPACT impact RWD domain protein protein-coding 9.524 0.7629
-55365 TMEM176A transmembrane protein 176A protein-coding 9.469 2.346
-55366 LGR4 leucine rich repeat containing G protein-coupled receptor 4 protein-coding 9.699 1.366
-55367 PIDD1 p53-induced death domain protein 1 protein-coding 8.519 0.94
-5537 PPP6C protein phosphatase 6 catalytic subunit protein-coding 10.53 0.4214
-55370 PPP4R1L protein phosphatase 4 regulatory subunit 1 like (pseudogene) pseudo 5.687 1.285
+55361 PI4K2A phosphatidylinositol 4-kinase type 2 alpha protein-coding 9.897 0.6228
+55362 TMEM63B transmembrane protein 63B protein-coding 10.4 0.6933
+55364 IMPACT impact RWD domain protein protein-coding 9.524 0.7626
+55365 TMEM176A transmembrane protein 176A protein-coding 9.469 2.345
+55366 LGR4 leucine rich repeat containing G protein-coupled receptor 4 protein-coding 9.699 1.367
+55367 PIDD1 p53-induced death domain protein 1 protein-coding 8.519 0.9396
+5537 PPP6C protein phosphatase 6 catalytic subunit protein-coding 10.53 0.4212
+55370 PPP4R1L protein phosphatase 4 regulatory subunit 1 like (pseudogene) pseudo 5.688 1.285
55374 TMCO6 transmembrane and coiled-coil domains 6 protein-coding 7.72 0.7261
-55379 LRRC59 leucine rich repeat containing 59 protein-coding 11.72 0.7288
+55379 LRRC59 leucine rich repeat containing 59 protein-coding 11.72 0.7289
5538 PPT1 palmitoyl-protein thioesterase 1 protein-coding 11.72 0.7327
-55384 MEG3 maternally expressed 3 (non-protein coding) ncRNA 5.871 2.928
-55388 MCM10 minichromosome maintenance 10 replication initiation factor protein-coding 6.644 2.069
-554 AVPR2 arginine vasopressin receptor 2 protein-coding 3.092 1.652
+55384 MEG3 maternally expressed 3 (non-protein coding) ncRNA 5.873 2.927
+55388 MCM10 minichromosome maintenance 10 replication initiation factor protein-coding 6.641 2.071
+554 AVPR2 arginine vasopressin receptor 2 protein-coding 3.094 1.652
554203 JPX JPX transcript, XIST activator (non-protein coding) ncRNA 7.826 0.6008
-55421 NCBP3 nuclear cap binding subunit 3 protein-coding 9.034 0.5427
-55422 ZNF331 zinc finger protein 331 protein-coding 8.525 1.262
-55423 SIRPG signal regulatory protein gamma protein-coding 4.447 2.172
+55421 NCBP3 nuclear cap binding subunit 3 protein-coding 9.034 0.5426
+55422 ZNF331 zinc finger protein 331 protein-coding 8.526 1.262
+55423 SIRPG signal regulatory protein gamma protein-coding 4.448 2.172
554235 ASPDH aspartate dehydrogenase domain containing protein-coding 1.691 2.746
-554236 DPY19L2P1 DPY19L2 pseudogene 1 pseudo 2.538 2.015
-55425 GPALPP1 GPALPP motifs containing 1 protein-coding 8.085 0.6085
-554251 FBXO48 F-box protein 48 protein-coding 4.667 0.7499
-55432 YOD1 YOD1 deubiquitinase protein-coding 8.454 0.8496
-55435 AP1AR adaptor related protein complex 1 associated regulatory protein protein-coding 8.81 0.7117
+554236 DPY19L2P1 DPY19L2 pseudogene 1 pseudo 2.539 2.015
+55425 GPALPP1 GPALPP motifs containing 1 protein-coding 8.085 0.6083
+554251 FBXO48 F-box protein 48 protein-coding 4.667 0.7497
+55432 YOD1 YOD1 deubiquitinase protein-coding 8.454 0.8493
+55435 AP1AR adaptor related protein complex 1 associated regulatory protein protein-coding 8.809 0.7115
55437 STRADB STE20-related kinase adaptor beta protein-coding 8.28 1.11
-5544 PRB3 proline rich protein BstNI subfamily 3 protein-coding 1.146 1.584
-55449 DHRS4-AS1 DHRS4 antisense RNA 1 ncRNA 8.837 0.8222
+5544 PRB3 proline rich protein BstNI subfamily 3 protein-coding 1.145 1.583
+55449 DHRS4-AS1 DHRS4 antisense RNA 1 ncRNA 8.837 0.8219
55450 CAMK2N1 calcium/calmodulin dependent protein kinase II inhibitor 1 protein-coding 10.04 1.921
-55454 CSGALNACT2 chondroitin sulfate N-acetylgalactosaminyltransferase 2 protein-coding 8.965 0.7901
+55454 CSGALNACT2 chondroitin sulfate N-acetylgalactosaminyltransferase 2 protein-coding 8.966 0.79
5546 PRCC papillary renal cell carcinoma (translocation-associated) protein-coding 10.63 0.5213
-55466 DNAJA4 DnaJ heat shock protein family (Hsp40) member A4 protein-coding 9.493 1.498
-5547 PRCP prolylcarboxypeptidase protein-coding 11.03 0.7836
-55471 NDUFAF7 NADH:ubiquinone oxidoreductase complex assembly factor 7 protein-coding 7.881 0.4985
-55472 RBM12B-AS1 RBM12B antisense RNA 1 ncRNA 2.823 0.9071
-55486 PARL presenilin associated rhomboid like protein-coding 9.957 0.5783
-5549 PRELP proline and arginine rich end leucine rich repeat protein protein-coding 8.667 2.23
-5550 PREP prolyl endopeptidase protein-coding 9.772 0.7414
-55500 ETNK1 ethanolamine kinase 1 protein-coding 10.35 0.7899
-55501 CHST12 carbohydrate sulfotransferase 12 protein-coding 8.498 0.7364
-55502 HES6 hes family bHLH transcription factor 6 protein-coding 7.907 2.091
-55503 TRPV6 transient receptor potential cation channel subfamily V member 6 protein-coding 4.348 3.246
-55504 TNFRSF19 TNF receptor superfamily member 19 protein-coding 7.949 2.075
-55505 NOP10 NOP10 ribonucleoprotein protein-coding 10.21 0.6728
+55466 DNAJA4 DnaJ heat shock protein family (Hsp40) member A4 protein-coding 9.494 1.498
+5547 PRCP prolylcarboxypeptidase protein-coding 11.03 0.7833
+55471 NDUFAF7 NADH:ubiquinone oxidoreductase complex assembly factor 7 protein-coding 7.881 0.4983
+55472 RBM12B-AS1 RBM12B antisense RNA 1 ncRNA 2.823 0.9068
+55486 PARL presenilin associated rhomboid like protein-coding 9.956 0.5782
+5549 PRELP proline and arginine rich end leucine rich repeat protein protein-coding 8.669 2.231
+5550 PREP prolyl endopeptidase protein-coding 9.772 0.7412
+55500 ETNK1 ethanolamine kinase 1 protein-coding 10.35 0.7896
+55501 CHST12 carbohydrate sulfotransferase 12 protein-coding 8.499 0.7362
+55502 HES6 hes family bHLH transcription factor 6 protein-coding 7.905 2.09
+55503 TRPV6 transient receptor potential cation channel subfamily V member 6 protein-coding 4.351 3.249
+55504 TNFRSF19 TNF receptor superfamily member 19 protein-coding 7.949 2.074
+55505 NOP10 NOP10 ribonucleoprotein protein-coding 10.21 0.6727
55506 H2AFY2 H2A histone family member Y2 protein-coding 8.703 1.609
55507 GPRC5D G protein-coupled receptor class C group 5 member D protein-coding 2.913 1.745
-55508 SLC35E3 solute carrier family 35 member E3 protein-coding 7.781 0.7992
+55508 SLC35E3 solute carrier family 35 member E3 protein-coding 7.781 0.7989
55509 BATF3 basic leucine zipper ATF-like transcription factor 3 protein-coding 4.906 1.41
-5551 PRF1 perforin 1 protein-coding 6.776 1.85
-55510 DDX43 DEAD-box helicase 43 protein-coding 2.679 2.478
-55512 SMPD3 sphingomyelin phosphodiesterase 3 protein-coding 7.016 2.112
+5551 PRF1 perforin 1 protein-coding 6.777 1.85
+55510 DDX43 DEAD-box helicase 43 protein-coding 2.68 2.478
+55512 SMPD3 sphingomyelin phosphodiesterase 3 protein-coding 7.018 2.112
55515 ASIC4 acid sensing ion channel subunit family member 4 protein-coding 2.277 2.832
5552 SRGN serglycin protein-coding 10.01 1.361
55520 ELAC1 elaC ribonuclease Z 1 protein-coding 6.911 0.6949
-55521 TRIM36 tripartite motif containing 36 protein-coding 5.922 2.111
-55526 DHTKD1 dehydrogenase E1 and transketolase domain containing 1 protein-coding 9.909 0.9525
+55521 TRIM36 tripartite motif containing 36 protein-coding 5.923 2.111
+55526 DHTKD1 dehydrogenase E1 and transketolase domain containing 1 protein-coding 9.909 0.9522
55527 FEM1A fem-1 homolog A protein-coding 9.904 0.4952
-55529 PIP4P2 phosphatidylinositol-4,5-bisphosphate 4-phosphatase 2 protein-coding 7.484 1.272
-5553 PRG2 proteoglycan 2, pro eosinophil major basic protein protein-coding 2.843 1.76
-55532 SLC30A10 solute carrier family 30 member 10 protein-coding 2.072 2.621
-55534 MAML3 mastermind like transcriptional coactivator 3 protein-coding 8.143 1.2
-55536 CDCA7L cell division cycle associated 7 like protein-coding 8.971 1.487
-5554 PRH1 proline rich protein HaeIII subfamily 1 protein-coding 5.183 0.9366
+55529 PIP4P2 phosphatidylinositol-4,5-bisphosphate 4-phosphatase 2 protein-coding 7.485 1.271
+5553 PRG2 proteoglycan 2, pro eosinophil major basic protein protein-coding 2.843 1.759
+55532 SLC30A10 solute carrier family 30 member 10 protein-coding 2.073 2.62
+55534 MAML3 mastermind like transcriptional coactivator 3 protein-coding 8.144 1.2
+55536 CDCA7L cell division cycle associated 7 like protein-coding 8.97 1.488
+5554 PRH1 proline rich protein HaeIII subfamily 1 protein-coding 5.184 0.9363
55540 IL17RB interleukin 17 receptor B protein-coding 7.072 1.99
-55544 RBM38 RNA binding motif protein 38 protein-coding 9.504 1.118
-55545 MSX2P1 msh homeobox 2 pseudogene 1 pseudo 1.367 1.134
+55544 RBM38 RNA binding motif protein 38 protein-coding 9.504 1.119
+55545 MSX2P1 msh homeobox 2 pseudogene 1 pseudo 1.368 1.134
5555 PRH2 proline rich protein HaeIII subfamily 2 protein-coding 2.592 1.178
-55552 ZNF823 zinc finger protein 823 protein-coding 6.908 0.8481
-55553 SOX6 SRY-box 6 protein-coding 6.689 2.535
+55552 ZNF823 zinc finger protein 823 protein-coding 6.908 0.8477
+55553 SOX6 SRY-box 6 protein-coding 6.689 2.534
55556 ENOSF1 enolase superfamily member 1 protein-coding 8.859 1.078
55558 PLXNA3 plexin A3 protein-coding 9.853 1.022
-55559 HAUS7 HAUS augmin like complex subunit 7 protein-coding 8.461 0.8463
-55561 CDC42BPG CDC42 binding protein kinase gamma protein-coding 7.914 2.601
-55565 ZNF821 zinc finger protein 821 protein-coding 7.498 0.9212
-55567 DNAH3 dynein axonemal heavy chain 3 protein-coding 3.044 2.314
+55559 HAUS7 HAUS augmin like complex subunit 7 protein-coding 8.46 0.8461
+55561 CDC42BPG CDC42 binding protein kinase gamma protein-coding 7.914 2.6
+55565 ZNF821 zinc finger protein 821 protein-coding 7.498 0.9209
+55567 DNAH3 dynein axonemal heavy chain 3 protein-coding 3.044 2.313
55568 GALNT10 polypeptide N-acetylgalactosaminyltransferase 10 protein-coding 9.723 1.223
-5557 PRIM1 DNA primase subunit 1 protein-coding 7.226 1.078
-55571 CNOT11 CCR4-NOT transcription complex subunit 11 protein-coding 10.1 0.6181
-55572 FOXRED1 FAD dependent oxidoreductase domain containing 1 protein-coding 9.023 0.703
-55573 CDV3 CDV3 homolog protein-coding 11.72 0.5957
-55576 STAB2 stabilin 2 protein-coding 1.779 1.667
+5557 PRIM1 DNA primase subunit 1 protein-coding 7.225 1.078
+55571 CNOT11 CCR4-NOT transcription complex subunit 11 protein-coding 10.1 0.6179
+55572 FOXRED1 FAD dependent oxidoreductase domain containing 1 protein-coding 9.023 0.7029
+55573 CDV3 CDV3 homolog protein-coding 11.72 0.5956
+55576 STAB2 stabilin 2 protein-coding 1.782 1.67
55577 NAGK N-acetylglucosamine kinase protein-coding 10.23 0.6554
-55578 SUPT20H SPT20 homolog, SAGA complex component protein-coding 9.55 0.6196
-5558 PRIM2 DNA primase subunit 2 protein-coding 7.571 0.9881
-55582 KIF27 kinesin family member 27 protein-coding 5.884 1.126
-55585 UBE2Q1 ubiquitin conjugating enzyme E2 Q1 protein-coding 10.88 0.4382
-55588 MED29 mediator complex subunit 29 protein-coding 10.71 0.5768
+55578 SUPT20H SPT20 homolog, SAGA complex component protein-coding 9.55 0.6193
+5558 PRIM2 DNA primase subunit 2 protein-coding 7.571 0.9887
+55582 KIF27 kinesin family member 27 protein-coding 5.885 1.125
+55585 UBE2Q1 ubiquitin conjugating enzyme E2 Q1 protein-coding 10.88 0.4383
+55588 MED29 mediator complex subunit 29 protein-coding 10.71 0.5767
55589 BMP2K BMP2 inducible kinase protein-coding 7.915 1.023
-55591 VEZT vezatin, adherens junctions transmembrane protein protein-coding 10.24 0.6724
-55592 GOLGA2P5 golgin A2 pseudogene 5 pseudo 6.936 1.539
-55593 OTUD5 OTU deubiquitinase 5 protein-coding 10.63 0.4429
-55596 ZCCHC8 zinc finger CCHC-type containing 8 protein-coding 8.983 0.5398
-55599 RNPC3 RNA binding region (RNP1, RRM) containing 3 protein-coding 7.179 0.7999
-55600 ITLN1 intelectin 1 protein-coding 2.001 2.909
+55591 VEZT vezatin, adherens junctions transmembrane protein protein-coding 10.24 0.6723
+55592 GOLGA2P5 golgin A2 pseudogene 5 pseudo 6.937 1.539
+55593 OTUD5 OTU deubiquitinase 5 protein-coding 10.63 0.4428
+55596 ZCCHC8 zinc finger CCHC-type containing 8 protein-coding 8.983 0.5396
+55599 RNPC3 RNA binding region (RNP1, RRM) containing 3 protein-coding 7.179 0.8004
+55600 ITLN1 intelectin 1 protein-coding 2.002 2.909
55601 DDX60 DExD/H-box helicase 60 protein-coding 9.308 1.358
-55602 CDKN2AIP CDKN2A interacting protein protein-coding 8.68 0.6481
-55603 FAM46A family with sequence similarity 46 member A protein-coding 9.03 1.24
+55602 CDKN2AIP CDKN2A interacting protein protein-coding 8.68 0.648
+55603 FAM46A family with sequence similarity 46 member A protein-coding 9.031 1.24
55604 CARMIL1 capping protein regulator and myosin 1 linker 1 protein-coding 8.95 1.189
55605 KIF21A kinesin family member 21A protein-coding 9.309 1.324
-55607 PPP1R9A protein phosphatase 1 regulatory subunit 9A protein-coding 7.648 2.571
-55608 ANKRD10 ankyrin repeat domain 10 protein-coding 10.47 0.7888
-55609 ZNF280C zinc finger protein 280C protein-coding 6.697 0.8747
-55610 VPS50 VPS50, EARP/GARPII complex subunit protein-coding 8.753 0.6545
-55611 OTUB1 OTU deubiquitinase, ubiquitin aldehyde binding 1 protein-coding 11.07 0.5219
-55612 FERMT1 fermitin family member 1 protein-coding 7.832 3.227
-55613 MTMR8 myotubularin related protein 8 protein-coding 3.258 1.443
-55614 KIF16B kinesin family member 16B protein-coding 8.854 1.04
+55607 PPP1R9A protein phosphatase 1 regulatory subunit 9A protein-coding 7.649 2.57
+55608 ANKRD10 ankyrin repeat domain 10 protein-coding 10.47 0.7887
+55609 ZNF280C zinc finger protein 280C protein-coding 6.697 0.8744
+55610 VPS50 VPS50, EARP/GARPII complex subunit protein-coding 8.753 0.6542
+55611 OTUB1 OTU deubiquitinase, ubiquitin aldehyde binding 1 protein-coding 11.07 0.5218
+55612 FERMT1 fermitin family member 1 protein-coding 7.832 3.226
+55613 MTMR8 myotubularin related protein 8 protein-coding 3.259 1.442
+55614 KIF16B kinesin family member 16B protein-coding 8.854 1.039
55615 PRR5 proline rich 5 protein-coding 8.286 1.06
55616 ASAP3 ArfGAP with SH3 domain, ankyrin repeat and PH domain 3 protein-coding 9.066 1.296
-55617 TASP1 taspase 1 protein-coding 7.521 0.6537
-55619 DOCK10 dedicator of cytokinesis 10 protein-coding 8.023 1.724
-5562 PRKAA1 protein kinase AMP-activated catalytic subunit alpha 1 protein-coding 10.36 0.7775
-55620 STAP2 signal transducing adaptor family member 2 protein-coding 9.203 1.766
-55621 TRMT1 tRNA methyltransferase 1 protein-coding 9.518 0.7454
+55617 TASP1 taspase 1 protein-coding 7.521 0.6535
+55619 DOCK10 dedicator of cytokinesis 10 protein-coding 8.024 1.723
+5562 PRKAA1 protein kinase AMP-activated catalytic subunit alpha 1 protein-coding 10.36 0.7774
+55620 STAP2 signal transducing adaptor family member 2 protein-coding 9.203 1.765
+55621 TRMT1 tRNA methyltransferase 1 protein-coding 9.517 0.7453
55622 TTC27 tetratricopeptide repeat domain 27 protein-coding 8.669 0.5533
55623 THUMPD1 THUMP domain containing 1 protein-coding 10.13 0.6277
55624 POMGNT1 protein O-linked mannose N-acetylglucosaminyltransferase 1 (beta 1,2-) protein-coding 10.67 0.6065
55625 ZDHHC7 zinc finger DHHC-type containing 7 protein-coding 10.31 0.6109
-55626 AMBRA1 autophagy and beclin 1 regulator 1 protein-coding 9.751 0.4857
-55627 SMPD4 sphingomyelin phosphodiesterase 4 protein-coding 10.91 0.5255
-55628 ZNF407 zinc finger protein 407 protein-coding 8.072 0.5885
-55629 PNRC2 proline rich nuclear receptor coactivator 2 protein-coding 10.81 0.6237
-5563 PRKAA2 protein kinase AMP-activated catalytic subunit alpha 2 protein-coding 6.879 2.464
+55626 AMBRA1 autophagy and beclin 1 regulator 1 protein-coding 9.751 0.4855
+55627 SMPD4 sphingomyelin phosphodiesterase 4 protein-coding 10.91 0.5253
+55628 ZNF407 zinc finger protein 407 protein-coding 8.072 0.5886
+55629 PNRC2 proline rich nuclear receptor coactivator 2 protein-coding 10.81 0.6235
+5563 PRKAA2 protein kinase AMP-activated catalytic subunit alpha 2 protein-coding 6.881 2.463
55630 SLC39A4 solute carrier family 39 member 4 protein-coding 8.578 1.86
-55631 LRRC40 leucine rich repeat containing 40 protein-coding 8.245 0.7191
-55632 G2E3 G2/M-phase specific E3 ubiquitin protein ligase protein-coding 8.408 0.8277
-55633 TBC1D22B TBC1 domain family member 22B protein-coding 8.824 0.5393
-55634 KRBOX4 KRAB box domain containing 4 protein-coding 7.748 0.6184
-55635 DEPDC1 DEP domain containing 1 protein-coding 6.915 2.176
-55636 CHD7 chromodomain helicase DNA binding protein 7 protein-coding 9.272 1.169
+55631 LRRC40 leucine rich repeat containing 40 protein-coding 8.245 0.7188
+55632 G2E3 G2/M-phase specific E3 ubiquitin protein ligase protein-coding 8.408 0.8273
+55633 TBC1D22B TBC1 domain family member 22B protein-coding 8.824 0.539
+55634 KRBOX4 KRAB box domain containing 4 protein-coding 7.749 0.6182
+55635 DEPDC1 DEP domain containing 1 protein-coding 6.914 2.177
+55636 CHD7 chromodomain helicase DNA binding protein 7 protein-coding 9.272 1.168
55638 SYBU syntabulin protein-coding 8.1 2.217
-5564 PRKAB1 protein kinase AMP-activated non-catalytic subunit beta 1 protein-coding 9.786 0.7675
+5564 PRKAB1 protein kinase AMP-activated non-catalytic subunit beta 1 protein-coding 9.786 0.7673
55640 FLVCR2 feline leukemia virus subgroup C cellular receptor family member 2 protein-coding 7.266 1.393
-55643 BTBD2 BTB domain containing 2 protein-coding 11.07 0.6468
-55644 OSGEP O-sialoglycoprotein endopeptidase protein-coding 8.757 0.5753
-55646 LYAR Ly1 antibody reactive protein-coding 8.406 0.8521
+55643 BTBD2 BTB domain containing 2 protein-coding 11.07 0.6466
+55644 OSGEP O-sialoglycoprotein endopeptidase protein-coding 8.756 0.5751
+55646 LYAR Ly1 antibody reactive protein-coding 8.405 0.8519
55647 RAB20 RAB20, member RAS oncogene family protein-coding 8.79 1.166
-5565 PRKAB2 protein kinase AMP-activated non-catalytic subunit beta 2 protein-coding 9.166 0.9099
-55650 PIGV phosphatidylinositol glycan anchor biosynthesis class V protein-coding 8.536 0.634
-55651 NHP2 NHP2 ribonucleoprotein protein-coding 10.56 0.641
-55652 SLC48A1 solute carrier family 48 member 1 protein-coding 9.623 0.8991
+5565 PRKAB2 protein kinase AMP-activated non-catalytic subunit beta 2 protein-coding 9.167 0.9096
+55650 PIGV phosphatidylinositol glycan anchor biosynthesis class V protein-coding 8.536 0.6339
+55651 NHP2 NHP2 ribonucleoprotein protein-coding 10.56 0.6413
+55652 SLC48A1 solute carrier family 48 member 1 protein-coding 9.624 0.8989
55653 BCAS4 breast carcinoma amplified sequence 4 protein-coding 9.466 1.027
-55654 TMEM127 transmembrane protein 127 protein-coding 11.14 0.4415
-55655 NLRP2 NLR family pyrin domain containing 2 protein-coding 5.845 3.54
-55656 INTS8 integrator complex subunit 8 protein-coding 9.548 0.7298
-55657 ZNF692 zinc finger protein 692 protein-coding 8.904 0.9907
-55658 RNF126 ring finger protein 126 protein-coding 9.371 0.7178
-55659 ZNF416 zinc finger protein 416 protein-coding 6.829 0.6724
-5566 PRKACA protein kinase cAMP-activated catalytic subunit alpha protein-coding 10.96 0.6437
-55660 PRPF40A pre-mRNA processing factor 40 homolog A protein-coding 10.99 0.572
-55661 DDX27 DEAD-box helicase 27 protein-coding 10.44 0.6029
-55662 HIF1AN hypoxia inducible factor 1 alpha subunit inhibitor protein-coding 10.07 0.4805
-55663 ZNF446 zinc finger protein 446 protein-coding 8 0.7585
-55664 CDC37L1 cell division cycle 37 like 1 protein-coding 8.401 0.6389
-55665 URGCP upregulator of cell proliferation protein-coding 10.02 0.5136
+55654 TMEM127 transmembrane protein 127 protein-coding 11.14 0.4414
+55655 NLRP2 NLR family pyrin domain containing 2 protein-coding 5.846 3.54
+55656 INTS8 integrator complex subunit 8 protein-coding 9.548 0.7296
+55657 ZNF692 zinc finger protein 692 protein-coding 8.904 0.9903
+55658 RNF126 ring finger protein 126 protein-coding 9.371 0.7176
+55659 ZNF416 zinc finger protein 416 protein-coding 6.829 0.6723
+5566 PRKACA protein kinase cAMP-activated catalytic subunit alpha protein-coding 10.96 0.6436
+55660 PRPF40A pre-mRNA processing factor 40 homolog A protein-coding 10.99 0.5718
+55661 DDX27 DEAD-box helicase 27 protein-coding 10.44 0.6027
+55662 HIF1AN hypoxia inducible factor 1 alpha subunit inhibitor protein-coding 10.07 0.4804
+55663 ZNF446 zinc finger protein 446 protein-coding 8 0.7584
+55664 CDC37L1 cell division cycle 37 like 1 protein-coding 8.401 0.6387
+55665 URGCP upregulator of cell proliferation protein-coding 10.02 0.5135
55666 NPLOC4 NPL4 homolog, ubiquitin recognition factor protein-coding 11.41 0.5361
-55667 DENND4C DENN domain containing 4C protein-coding 9.894 0.7729
-55668 GPATCH2L G-patch domain containing 2 like protein-coding 7.368 0.7479
-55669 MFN1 mitofusin 1 protein-coding 9.468 0.7738
-5567 PRKACB protein kinase cAMP-activated catalytic subunit beta protein-coding 9.846 1.243
-55670 PEX26 peroxisomal biogenesis factor 26 protein-coding 8.708 0.7155
-55671 PPP4R3A protein phosphatase 4 regulatory subunit 3A protein-coding 10.53 0.5129
-55672 NBPF1 NBPF member 1 protein-coding 8.797 0.9061
-55676 SLC30A6 solute carrier family 30 member 6 protein-coding 7.94 0.8891
+55667 DENND4C DENN domain containing 4C protein-coding 9.895 0.7729
+55668 GPATCH2L G-patch domain containing 2 like protein-coding 7.368 0.7477
+55669 MFN1 mitofusin 1 protein-coding 9.468 0.7735
+5567 PRKACB protein kinase cAMP-activated catalytic subunit beta protein-coding 9.847 1.243
+55670 PEX26 peroxisomal biogenesis factor 26 protein-coding 8.708 0.7153
+55671 PPP4R3A protein phosphatase 4 regulatory subunit 3A protein-coding 10.53 0.5127
+55672 NBPF1 NBPF member 1 protein-coding 8.798 0.906
+55676 SLC30A6 solute carrier family 30 member 6 protein-coding 7.94 0.8886
55677 IWS1 IWS1, SUPT6H interacting protein protein-coding 10.15 0.4075
-55679 LIMS2 LIM zinc finger domain containing 2 protein-coding 8.519 1.413
-55680 RUFY2 RUN and FYVE domain containing 2 protein-coding 8.112 0.7317
-55681 SCYL2 SCY1 like pseudokinase 2 protein-coding 9.659 0.8251
-55683 KANSL3 KAT8 regulatory NSL complex subunit 3 protein-coding 10.37 0.4539
-55684 RABL6 RAB, member RAS oncogene family like 6 protein-coding 11.21 0.7323
-55686 MREG melanoregulin protein-coding 8.355 1.411
-55687 TRMU tRNA 5-methylaminomethyl-2-thiouridylate methyltransferase protein-coding 8.362 0.7082
-55689 YEATS2 YEATS domain containing 2 protein-coding 10.15 0.8277
-5569 PKIA cAMP-dependent protein kinase inhibitor alpha protein-coding 6.483 2.519
-55690 PACS1 phosphofurin acidic cluster sorting protein 1 protein-coding 11.24 0.7001
-55691 FRMD4A FERM domain containing 4A protein-coding 8.896 1.086
-55692 LUC7L LUC7 like protein-coding 9.535 0.8847
-55693 KDM4D lysine demethylase 4D protein-coding 4.97 0.9407
-55695 NSUN5 NOP2/Sun RNA methyltransferase family member 5 protein-coding 9.386 0.8016
-55696 RBM22 RNA binding motif protein 22 protein-coding 9.976 0.4044
-55697 VAC14 Vac14, PIKFYVE complex component protein-coding 10.24 0.5415
-55698 RADIL Rap associating with DIL domain protein-coding 4.825 2.088
-55699 IARS2 isoleucyl-tRNA synthetase 2, mitochondrial protein-coding 11.32 0.6617
+55679 LIMS2 LIM zinc finger domain containing 2 protein-coding 8.521 1.413
+55680 RUFY2 RUN and FYVE domain containing 2 protein-coding 8.113 0.7315
+55681 SCYL2 SCY1 like pseudokinase 2 protein-coding 9.659 0.8248
+55683 KANSL3 KAT8 regulatory NSL complex subunit 3 protein-coding 10.37 0.4538
+55684 RABL6 RAB, member RAS oncogene family like 6 protein-coding 11.21 0.732
+55686 MREG melanoregulin protein-coding 8.354 1.411
+55687 TRMU tRNA 5-methylaminomethyl-2-thiouridylate methyltransferase protein-coding 8.362 0.708
+55689 YEATS2 YEATS domain containing 2 protein-coding 10.15 0.8274
+5569 PKIA cAMP-dependent protein kinase inhibitor alpha protein-coding 6.485 2.519
+55690 PACS1 phosphofurin acidic cluster sorting protein 1 protein-coding 11.24 0.6999
+55691 FRMD4A FERM domain containing 4A protein-coding 8.896 1.085
+55692 LUC7L LUC7 like protein-coding 9.536 0.8846
+55693 KDM4D lysine demethylase 4D protein-coding 4.97 0.9403
+55695 NSUN5 NOP2/Sun RNA methyltransferase family member 5 protein-coding 9.386 0.8013
+55696 RBM22 RNA binding motif protein 22 protein-coding 9.975 0.4043
+55697 VAC14 Vac14, PIKFYVE complex component protein-coding 10.24 0.5417
+55698 RADIL Rap associating with DIL domain protein-coding 4.827 2.088
+55699 IARS2 isoleucyl-tRNA synthetase 2, mitochondrial protein-coding 11.32 0.6616
5570 PKIB cAMP-dependent protein kinase inhibitor beta protein-coding 6.456 2.01
-55700 MAP7D1 MAP7 domain containing 1 protein-coding 11.11 0.853
+55700 MAP7D1 MAP7 domain containing 1 protein-coding 11.11 0.8528
55701 ARHGEF40 Rho guanine nucleotide exchange factor 40 protein-coding 9.836 1.185
-55702 YJU2 YJU2 splicing factor homolog protein-coding 8.787 0.6937
-55703 POLR3B RNA polymerase III subunit B protein-coding 8.118 0.5938
-55704 CCDC88A coiled-coil domain containing 88A protein-coding 9.228 1.401
-55705 IPO9 importin 9 protein-coding 10.97 0.5586
-55706 NDC1 NDC1 transmembrane nucleoporin protein-coding 8.062 1.151
-55707 NECAP2 NECAP endocytosis associated 2 protein-coding 10.47 0.5592
-55709 KBTBD4 kelch repeat and BTB domain containing 4 protein-coding 8.227 0.8381
-5571 PRKAG1 protein kinase AMP-activated non-catalytic subunit gamma 1 protein-coding 10.16 0.4167
+55702 YJU2 YJU2 splicing factor homolog protein-coding 8.787 0.6935
+55703 POLR3B RNA polymerase III subunit B protein-coding 8.118 0.5935
+55704 CCDC88A coiled-coil domain containing 88A protein-coding 9.228 1.4
+55705 IPO9 importin 9 protein-coding 10.97 0.5584
+55706 NDC1 NDC1 transmembrane nucleoporin protein-coding 8.062 1.15
+55707 NECAP2 NECAP endocytosis associated 2 protein-coding 10.47 0.5594
+55709 KBTBD4 kelch repeat and BTB domain containing 4 protein-coding 8.228 0.8378
+5571 PRKAG1 protein kinase AMP-activated non-catalytic subunit gamma 1 protein-coding 10.16 0.4166
55711 FAR2 fatty acyl-CoA reductase 2 protein-coding 6.377 1.754
-55713 ZNF334 zinc finger protein 334 protein-coding 5.632 2.312
-55714 TENM3 teneurin transmembrane protein 3 protein-coding 6.699 2.616
+55713 ZNF334 zinc finger protein 334 protein-coding 5.634 2.312
+55714 TENM3 teneurin transmembrane protein 3 protein-coding 6.701 2.615
55715 DOK4 docking protein 4 protein-coding 9.36 1.262
55716 LMBR1L limb development membrane protein 1 like protein-coding 8.875 0.6753
-55717 WDR11 WD repeat domain 11 protein-coding 9.978 0.5626
-55718 POLR3E RNA polymerase III subunit E protein-coding 9.479 0.5273
-55719 SLF2 SMC5-SMC6 complex localization factor 2 protein-coding 9.449 0.6297
+55717 WDR11 WD repeat domain 11 protein-coding 9.978 0.5624
+55718 POLR3E RNA polymerase III subunit E protein-coding 9.479 0.527
+55719 SLF2 SMC5-SMC6 complex localization factor 2 protein-coding 9.449 0.6296
55720 TSR1 TSR1, ribosome maturation factor protein-coding 10.11 0.6011
-55721 IQCC IQ motif containing C protein-coding 6.67 0.7471
+55721 IQCC IQ motif containing C protein-coding 6.67 0.7469
55722 CEP72 centrosomal protein 72 protein-coding 6.571 1.003
-55723 ASF1B anti-silencing function 1B histone chaperone protein-coding 8.398 1.727
-55726 INTS13 integrator complex subunit 13 protein-coding 9.134 0.7124
-55727 BTBD7 BTB domain containing 7 protein-coding 9.585 0.666
-55728 N4BP2 NEDD4 binding protein 2 protein-coding 6.829 1.416
-55729 ATF7IP activating transcription factor 7 interacting protein protein-coding 9.627 0.8118
-5573 PRKAR1A protein kinase cAMP-dependent type I regulatory subunit alpha protein-coding 12.35 0.6399
-55731 FAM222B family with sequence similarity 222 member B protein-coding 9.593 0.6657
-55732 C1orf112 chromosome 1 open reading frame 112 protein-coding 7.409 1.101
-55733 HHAT hedgehog acyltransferase protein-coding 7.439 1.257
-55734 ZFP64 ZFP64 zinc finger protein protein-coding 8.763 0.6167
-55735 DNAJC11 DnaJ heat shock protein family (Hsp40) member C11 protein-coding 10.14 0.4764
-55737 VPS35 VPS35, retromer complex component protein-coding 11.32 0.541
-55738 ARFGAP1 ADP ribosylation factor GTPase activating protein 1 protein-coding 10.85 0.6737
-55739 NAXD NAD(P)HX dehydratase protein-coding 10.13 0.6277
+55723 ASF1B anti-silencing function 1B histone chaperone protein-coding 8.396 1.728
+55726 INTS13 integrator complex subunit 13 protein-coding 9.133 0.7125
+55727 BTBD7 BTB domain containing 7 protein-coding 9.585 0.6659
+55728 N4BP2 NEDD4 binding protein 2 protein-coding 6.83 1.416
+55729 ATF7IP activating transcription factor 7 interacting protein protein-coding 9.627 0.8115
+5573 PRKAR1A protein kinase cAMP-dependent type I regulatory subunit alpha protein-coding 12.35 0.6398
+55731 FAM222B family with sequence similarity 222 member B protein-coding 9.593 0.6658
+55732 C1orf112 chromosome 1 open reading frame 112 protein-coding 7.408 1.101
+55733 HHAT hedgehog acyltransferase protein-coding 7.44 1.257
+55734 ZFP64 ZFP64 zinc finger protein protein-coding 8.763 0.6165
+55735 DNAJC11 DnaJ heat shock protein family (Hsp40) member C11 protein-coding 10.14 0.4763
+55737 VPS35 VPS35, retromer complex component protein-coding 11.32 0.5408
+55738 ARFGAP1 ADP ribosylation factor GTPase activating protein 1 protein-coding 10.85 0.6736
+55739 NAXD NAD(P)HX dehydratase protein-coding 10.13 0.6274
55740 ENAH ENAH, actin regulator protein-coding 11.21 1.119
-55741 EDEM2 ER degradation enhancing alpha-mannosidase like protein 2 protein-coding 9.625 0.6506
-55742 PARVA parvin alpha protein-coding 10.23 0.9039
-55743 CHFR checkpoint with forkhead and ring finger domains protein-coding 8.903 0.7993
-55744 COA1 cytochrome c oxidase assembly factor 1 homolog protein-coding 9.388 0.497
-55745 AP5M1 adaptor related protein complex 5 mu 1 subunit protein-coding 9.385 0.5608
-55746 NUP133 nucleoporin 133 protein-coding 10.14 0.5401
-55748 CNDP2 carnosine dipeptidase 2 protein-coding 12.07 0.9999
-55749 CCAR1 cell division cycle and apoptosis regulator 1 protein-coding 10.26 0.6334
+55741 EDEM2 ER degradation enhancing alpha-mannosidase like protein 2 protein-coding 9.625 0.6504
+55742 PARVA parvin alpha protein-coding 10.23 0.9045
+55743 CHFR checkpoint with forkhead and ring finger domains protein-coding 8.903 0.7992
+55744 COA1 cytochrome c oxidase assembly factor 1 homolog protein-coding 9.388 0.4969
+55745 AP5M1 adaptor related protein complex 5 mu 1 subunit protein-coding 9.385 0.5605
+55746 NUP133 nucleoporin 133 protein-coding 10.14 0.5399
+55748 CNDP2 carnosine dipeptidase 2 protein-coding 12.07 0.9998
+55749 CCAR1 cell division cycle and apoptosis regulator 1 protein-coding 10.26 0.6332
5575 PRKAR1B protein kinase cAMP-dependent type I regulatory subunit beta protein-coding 8.453 1.165
-55750 AGK acylglycerol kinase protein-coding 9.171 0.5403
+55750 AGK acylglycerol kinase protein-coding 9.171 0.5401
55751 TMEM184C transmembrane protein 184C protein-coding 9.044 0.6213
-55752 SEPT11 septin 11 protein-coding 10.94 0.8455
-55753 OGDHL oxoglutarate dehydrogenase like protein-coding 6.165 3.646
-55754 TMEM30A transmembrane protein 30A protein-coding 11.92 0.6776
-55755 CDK5RAP2 CDK5 regulatory subunit associated protein 2 protein-coding 10.27 0.6862
-55756 INTS9 integrator complex subunit 9 protein-coding 8.618 0.6112
-55757 UGGT2 UDP-glucose glycoprotein glucosyltransferase 2 protein-coding 8.524 0.745
-55758 RCOR3 REST corepressor 3 protein-coding 9.573 0.6799
-55759 WDR12 WD repeat domain 12 protein-coding 8.817 0.671
-5576 PRKAR2A protein kinase cAMP-dependent type II regulatory subunit alpha protein-coding 7.612 1.307
-55760 DHX32 DEAH-box helicase 32 (putative) protein-coding 9.62 0.7513
-55761 TTC17 tetratricopeptide repeat domain 17 protein-coding 10.01 0.6693
+55752 SEPT11 septin 11 protein-coding 10.94 0.8456
+55753 OGDHL oxoglutarate dehydrogenase like protein-coding 6.167 3.645
+55754 TMEM30A transmembrane protein 30A protein-coding 11.92 0.6773
+55755 CDK5RAP2 CDK5 regulatory subunit associated protein 2 protein-coding 10.27 0.686
+55756 INTS9 integrator complex subunit 9 protein-coding 8.618 0.611
+55757 UGGT2 UDP-glucose glycoprotein glucosyltransferase 2 protein-coding 8.524 0.7449
+55758 RCOR3 REST corepressor 3 protein-coding 9.574 0.6798
+55759 WDR12 WD repeat domain 12 protein-coding 8.816 0.6712
+5576 PRKAR2A protein kinase cAMP-dependent type II regulatory subunit alpha protein-coding 7.613 1.307
+55760 DHX32 DEAH-box helicase 32 (putative) protein-coding 9.619 0.7511
+55761 TTC17 tetratricopeptide repeat domain 17 protein-coding 10.01 0.6691
55762 ZNF701 zinc finger protein 701 protein-coding 6.45 1.165
-55763 EXOC1 exocyst complex component 1 protein-coding 9.726 0.5466
-55764 IFT122 intraflagellar transport 122 protein-coding 9.323 0.778
-55765 INAVA innate immunity activator protein-coding 8.571 3.017
+55763 EXOC1 exocyst complex component 1 protein-coding 9.726 0.5464
+55764 IFT122 intraflagellar transport 122 protein-coding 9.324 0.7777
+55765 INAVA innate immunity activator protein-coding 8.57 3.018
55766 H2AFJ H2A histone family member J protein-coding 10.17 1.524
-55768 NGLY1 N-glycanase 1 protein-coding 9.085 0.5326
-55769 ZNF83 zinc finger protein 83 protein-coding 9.245 1.276
-5577 PRKAR2B protein kinase cAMP-dependent type II regulatory subunit beta protein-coding 7.448 1.881
-55770 EXOC2 exocyst complex component 2 protein-coding 9.552 0.5877
-55771 PRR11 proline rich 11 protein-coding 5.543 2.254
-55773 TBC1D23 TBC1 domain family member 23 protein-coding 9.599 0.6261
-55775 TDP1 tyrosyl-DNA phosphodiesterase 1 protein-coding 8.46 0.7578
-55776 SAYSD1 SAYSVFN motif domain containing 1 protein-coding 9.103 0.5818
-55777 MBD5 methyl-CpG binding domain protein 5 protein-coding 7.808 0.8275
-55778 ZNF839 zinc finger protein 839 protein-coding 8.186 0.6542
-55779 CFAP44 cilia and flagella associated protein 44 protein-coding 7.096 1.318
-5578 PRKCA protein kinase C alpha protein-coding 9.137 1.662
-55780 ERMARD ER membrane associated RNA degradation protein-coding 8.359 0.6388
-55781 RIOK2 RIO kinase 2 protein-coding 8.785 0.4729
-55783 CMTR2 cap methyltransferase 2 protein-coding 8.91 0.6914
-55784 MCTP2 multiple C2 and transmembrane domain containing 2 protein-coding 7.535 2.436
+55768 NGLY1 N-glycanase 1 protein-coding 9.085 0.5324
+55769 ZNF83 zinc finger protein 83 protein-coding 9.246 1.276
+5577 PRKAR2B protein kinase cAMP-dependent type II regulatory subunit beta protein-coding 7.449 1.881
+55770 EXOC2 exocyst complex component 2 protein-coding 9.552 0.5875
+55771 PRR11 proline rich 11 protein-coding 5.541 2.253
+55773 TBC1D23 TBC1 domain family member 23 protein-coding 9.599 0.6258
+55775 TDP1 tyrosyl-DNA phosphodiesterase 1 protein-coding 8.46 0.7577
+55776 SAYSD1 SAYSVFN motif domain containing 1 protein-coding 9.103 0.5816
+55777 MBD5 methyl-CpG binding domain protein 5 protein-coding 7.809 0.8275
+55778 ZNF839 zinc finger protein 839 protein-coding 8.186 0.654
+55779 CFAP44 cilia and flagella associated protein 44 protein-coding 7.096 1.317
+5578 PRKCA protein kinase C alpha protein-coding 9.138 1.662
+55780 ERMARD ER membrane associated RNA degradation protein-coding 8.359 0.6387
+55781 RIOK2 RIO kinase 2 protein-coding 8.785 0.4727
+55783 CMTR2 cap methyltransferase 2 protein-coding 8.91 0.6912
+55784 MCTP2 multiple C2 and transmembrane domain containing 2 protein-coding 7.536 2.435
55785 FGD6 FYVE, RhoGEF and PH domain containing 6 protein-coding 8.833 1.326
-55786 ZNF415 zinc finger protein 415 protein-coding 6.512 1.85
+55786 ZNF415 zinc finger protein 415 protein-coding 6.513 1.85
55787 TXLNG taxilin gamma protein-coding 7.231 1.145
-55788 LMBRD1 LMBR1 domain containing 1 protein-coding 10.14 0.8401
-55789 DEPDC1B DEP domain containing 1B protein-coding 6.698 1.923
-5579 PRKCB protein kinase C beta protein-coding 7.055 1.961
-55790 CSGALNACT1 chondroitin sulfate N-acetylgalactosaminyltransferase 1 protein-coding 8.365 1.632
-55791 LRIF1 ligand dependent nuclear receptor interacting factor 1 protein-coding 8.495 0.8565
-55793 MINDY1 MINDY lysine 48 deubiquitinase 1 protein-coding 8.916 1.023
+55788 LMBRD1 LMBR1 domain containing 1 protein-coding 10.14 0.8402
+55789 DEPDC1B DEP domain containing 1B protein-coding 6.697 1.923
+5579 PRKCB protein kinase C beta protein-coding 7.056 1.961
+55790 CSGALNACT1 chondroitin sulfate N-acetylgalactosaminyltransferase 1 protein-coding 8.366 1.632
+55791 LRIF1 ligand dependent nuclear receptor interacting factor 1 protein-coding 8.495 0.8562
+55793 MINDY1 MINDY lysine 48 deubiquitinase 1 protein-coding 8.917 1.023
55794 DDX28 DEAD-box helicase 28 protein-coding 8.345 0.6265
-55795 PCID2 PCI domain containing 2 protein-coding 9.379 0.5662
-55796 MBNL3 muscleblind like splicing regulator 3 protein-coding 5.493 1.695
-55798 METTL2B methyltransferase like 2B protein-coding 8.099 0.5987
-55799 CACNA2D3 calcium voltage-gated channel auxiliary subunit alpha2delta 3 protein-coding 4.145 2.232
-558 AXL AXL receptor tyrosine kinase protein-coding 9.611 1.38
+55795 PCID2 PCI domain containing 2 protein-coding 9.379 0.5659
+55796 MBNL3 muscleblind like splicing regulator 3 protein-coding 5.494 1.695
+55798 METTL2B methyltransferase like 2B protein-coding 8.099 0.5985
+55799 CACNA2D3 calcium voltage-gated channel auxiliary subunit alpha2delta 3 protein-coding 4.146 2.232
+558 AXL AXL receptor tyrosine kinase protein-coding 9.611 1.379
5580 PRKCD protein kinase C delta protein-coding 10.13 1.153
-55800 SCN3B sodium voltage-gated channel beta subunit 3 protein-coding 4.784 2.643
-55802 DCP1A decapping mRNA 1A protein-coding 9.177 0.5527
-55803 ADAP2 ArfGAP with dual PH domains 2 protein-coding 7.58 1.147
-55805 LRP2BP LRP2 binding protein protein-coding 5.654 1.308
-55806 HR HR, lysine demethylase and nuclear receptor corepressor protein-coding 7.572 2.7
-55808 ST6GALNAC1 ST6 N-acetylgalactosaminide alpha-2,6-sialyltransferase 1 protein-coding 5.847 3.559
-55809 TRERF1 transcriptional regulating factor 1 protein-coding 8.087 1.335
-5581 PRKCE protein kinase C epsilon protein-coding 7.797 1.105
-55810 FOXJ2 forkhead box J2 protein-coding 9.425 0.6178
-55811 ADCY10 adenylate cyclase 10 protein-coding 1.656 1.564
+55800 SCN3B sodium voltage-gated channel beta subunit 3 protein-coding 4.786 2.643
+55802 DCP1A decapping mRNA 1A protein-coding 9.178 0.5527
+55803 ADAP2 ArfGAP with dual PH domains 2 protein-coding 7.579 1.147
+55805 LRP2BP LRP2 binding protein protein-coding 5.655 1.308
+55806 HR HR, lysine demethylase and nuclear receptor corepressor protein-coding 7.572 2.699
+55808 ST6GALNAC1 ST6 N-acetylgalactosaminide alpha-2,6-sialyltransferase 1 protein-coding 5.849 3.559
+55809 TRERF1 transcriptional regulating factor 1 protein-coding 8.088 1.334
+5581 PRKCE protein kinase C epsilon protein-coding 7.798 1.105
+55810 FOXJ2 forkhead box J2 protein-coding 9.425 0.6177
+55811 ADCY10 adenylate cyclase 10 protein-coding 1.656 1.563
55812 SPATA7 spermatogenesis associated 7 protein-coding 7.24 0.8575
-55813 UTP6 UTP6, small subunit processome component protein-coding 9.626 0.5441
-55814 BDP1 B double prime 1, subunit of RNA polymerase III transcription initiation factor IIIB protein-coding 9.348 0.7451
-55815 TSNAXIP1 translin associated factor X interacting protein 1 protein-coding 4.452 1.796
-55818 KDM3A lysine demethylase 3A protein-coding 10.35 0.6548
-55819 RNF130 ring finger protein 130 protein-coding 10.47 0.818
-5582 PRKCG protein kinase C gamma protein-coding 2.112 2.519
-55823 VPS11 VPS11, CORVET/HOPS core subunit protein-coding 10.05 0.5903
-55824 PAG1 phosphoprotein membrane anchor with glycosphingolipid microdomains 1 protein-coding 8.68 1.316
+55813 UTP6 UTP6, small subunit processome component protein-coding 9.626 0.544
+55814 BDP1 B double prime 1, subunit of RNA polymerase III transcription initiation factor IIIB protein-coding 9.348 0.7449
+55815 TSNAXIP1 translin associated factor X interacting protein 1 protein-coding 4.453 1.796
+55818 KDM3A lysine demethylase 3A protein-coding 10.35 0.6546
+55819 RNF130 ring finger protein 130 protein-coding 10.47 0.8179
+5582 PRKCG protein kinase C gamma protein-coding 2.113 2.519
+55823 VPS11 VPS11, CORVET/HOPS core subunit protein-coding 10.05 0.5902
+55824 PAG1 phosphoprotein membrane anchor with glycosphingolipid microdomains 1 protein-coding 8.681 1.316
55825 PECR peroxisomal trans-2-enoyl-CoA reductase protein-coding 7.664 1.45
-55827 DCAF6 DDB1 and CUL4 associated factor 6 protein-coding 10.57 0.7029
-55829 SELENOS selenoprotein S protein-coding 10.2 0.5895
-5583 PRKCH protein kinase C eta protein-coding 9.056 1.116
+55827 DCAF6 DDB1 and CUL4 associated factor 6 protein-coding 10.57 0.7026
+55829 SELENOS selenoprotein S protein-coding 10.2 0.5896
+5583 PRKCH protein kinase C eta protein-coding 9.057 1.116
55830 GLT8D1 glycosyltransferase 8 domain containing 1 protein-coding 9.962 0.593
-55831 EMC3 ER membrane protein complex subunit 3 protein-coding 10.04 0.5788
-55832 CAND1 cullin associated and neddylation dissociated 1 protein-coding 11.27 0.6521
-55833 UBAP2 ubiquitin associated protein 2 protein-coding 9.843 0.7152
-55835 CENPJ centromere protein J protein-coding 7.584 0.9721
-55837 EAPP E2F associated phosphoprotein protein-coding 9.538 0.4915
+55831 EMC3 ER membrane protein complex subunit 3 protein-coding 10.04 0.5786
+55832 CAND1 cullin associated and neddylation dissociated 1 protein-coding 11.27 0.6519
+55833 UBAP2 ubiquitin associated protein 2 protein-coding 9.843 0.7149
+55835 CENPJ centromere protein J protein-coding 7.584 0.9725
+55837 EAPP E2F associated phosphoprotein protein-coding 9.538 0.4913
55839 CENPN centromere protein N protein-coding 8.633 1.204
-5584 PRKCI protein kinase C iota protein-coding 10.03 0.9819
-55840 EAF2 ELL associated factor 2 protein-coding 6.022 1.198
-55841 WWC3 WWC family member 3 protein-coding 9.944 0.8918
-55843 ARHGAP15 Rho GTPase activating protein 15 protein-coding 5.721 1.589
-55844 PPP2R2D protein phosphatase 2 regulatory subunit Bdelta protein-coding 9.24 0.5167
-55845 BRK1 BRICK1, SCAR/WAVE actin nucleating complex subunit protein-coding 11.49 0.5201
-55846 ITFG2 integrin alpha FG-GAP repeat containing 2 protein-coding 8.706 0.706
-55847 CISD1 CDGSH iron sulfur domain 1 protein-coding 8.86 0.7409
-55848 PLGRKT plasminogen receptor with a C-terminal lysine protein-coding 8.322 0.8217
+5584 PRKCI protein kinase C iota protein-coding 10.03 0.9817
+55840 EAF2 ELL associated factor 2 protein-coding 6.023 1.199
+55841 WWC3 WWC family member 3 protein-coding 9.945 0.8917
+55843 ARHGAP15 Rho GTPase activating protein 15 protein-coding 5.722 1.59
+55844 PPP2R2D protein phosphatase 2 regulatory subunit Bdelta protein-coding 9.24 0.5165
+55845 BRK1 BRICK1, SCAR/WAVE actin nucleating complex subunit protein-coding 11.49 0.5199
+55846 ITFG2 integrin alpha FG-GAP repeat containing 2 protein-coding 8.707 0.7059
+55847 CISD1 CDGSH iron sulfur domain 1 protein-coding 8.859 0.7408
+55848 PLGRKT plasminogen receptor with a C-terminal lysine protein-coding 8.321 0.8216
5585 PKN1 protein kinase N1 protein-coding 11.35 1.006
-55850 USE1 unconventional SNARE in the ER 1 protein-coding 8.489 0.7632
+55850 USE1 unconventional SNARE in the ER 1 protein-coding 8.489 0.763
55851 PSENEN presenilin enhancer gamma-secretase subunit protein-coding 10.15 0.7957
-55852 TEX2 testis expressed 2 protein-coding 10.24 0.7444
-55853 IDI2-AS1 IDI2 antisense RNA 1 ncRNA 3.619 1.331
-55854 ZC3H15 zinc finger CCCH-type containing 15 protein-coding 10.41 0.5371
-55855 FAM45BP family with sequence similarity 45, member A pseudogene pseudo 7.146 0.8955
-55856 ACOT13 acyl-CoA thioesterase 13 protein-coding 9.419 0.6698
-55857 KIZ kizuna centrosomal protein protein-coding 8.276 0.9327
-55858 TMEM165 transmembrane protein 165 protein-coding 10.49 0.7817
-55859 BEX1 brain expressed X-linked 1 protein-coding 4.589 3.688
-5586 PKN2 protein kinase N2 protein-coding 9.989 0.6751
+55852 TEX2 testis expressed 2 protein-coding 10.24 0.7442
+55853 IDI2-AS1 IDI2 antisense RNA 1 ncRNA 3.619 1.33
+55854 ZC3H15 zinc finger CCCH-type containing 15 protein-coding 10.41 0.5369
+55855 FAM45BP family with sequence similarity 45, member A pseudogene pseudo 7.146 0.8952
+55856 ACOT13 acyl-CoA thioesterase 13 protein-coding 9.419 0.6696
+55857 KIZ kizuna centrosomal protein protein-coding 8.276 0.9326
+55858 TMEM165 transmembrane protein 165 protein-coding 10.49 0.7813
+55859 BEX1 brain expressed X-linked 1 protein-coding 4.592 3.688
+5586 PKN2 protein kinase N2 protein-coding 9.989 0.675
55860 ACTR10 actin related protein 10 homolog protein-coding 9.938 0.476
55861 DBNDD2 dysbindin domain containing 2 protein-coding 9.617 1.259
-55862 ECHDC1 ethylmalonyl-CoA decarboxylase 1 protein-coding 9.923 0.7406
-55863 TMEM126B transmembrane protein 126B protein-coding 9.045 0.5825
-55867 SLC22A11 solute carrier family 22 member 11 protein-coding 2.313 2.894
+55862 ECHDC1 ethylmalonyl-CoA decarboxylase 1 protein-coding 9.923 0.7404
+55863 TMEM126B transmembrane protein 126B protein-coding 9.045 0.5822
+55867 SLC22A11 solute carrier family 22 member 11 protein-coding 2.313 2.893
55869 HDAC8 histone deacetylase 8 protein-coding 8.289 0.5018
-5587 PRKD1 protein kinase D1 protein-coding 7.167 1.851
+5587 PRKD1 protein kinase D1 protein-coding 7.168 1.851
55870 ASH1L ASH1 like histone lysine methyltransferase protein-coding 10.57 0.82
-55871 CBWD1 COBW domain containing 1 protein-coding 9.149 0.7723
-55872 PBK PDZ binding kinase protein-coding 7.242 2.02
-55876 GSDMB gasdermin B protein-coding 7.207 2.061
-5588 PRKCQ protein kinase C theta protein-coding 5.835 2.06
-55884 WSB2 WD repeat and SOCS box containing 2 protein-coding 10.88 0.5633
-55885 LMO3 LIM domain only 3 protein-coding 5.806 3.719
-55888 ZKSCAN7 zinc finger with KRAB and SCAN domains 7 protein-coding 5.583 1.339
-55889 GOLGA6B golgin A6 family member B protein-coding 1.245 1.217
+55871 CBWD1 COBW domain containing 1 protein-coding 9.149 0.7724
+55872 PBK PDZ binding kinase protein-coding 7.239 2.021
+55876 GSDMB gasdermin B protein-coding 7.207 2.06
+5588 PRKCQ protein kinase C theta protein-coding 5.836 2.061
+55884 WSB2 WD repeat and SOCS box containing 2 protein-coding 10.88 0.5631
+55885 LMO3 LIM domain only 3 protein-coding 5.808 3.719
+55888 ZKSCAN7 zinc finger with KRAB and SCAN domains 7 protein-coding 5.584 1.339
+55889 GOLGA6B golgin A6 family member B protein-coding 1.245 1.218
5589 PRKCSH protein kinase C substrate 80K-H protein-coding 12.68 0.5961
-55890 GPRC5C G protein-coupled receptor class C group 5 member C protein-coding 9.7 1.857
-55892 MYNN myoneurin protein-coding 8.582 0.6684
-55893 ZNF395 zinc finger protein 395 protein-coding 10.46 0.9517
-55897 MESP1 mesoderm posterior bHLH transcription factor 1 protein-coding 5.222 2.135
-55898 UNC45A unc-45 myosin chaperone A protein-coding 10.91 0.57
+55890 GPRC5C G protein-coupled receptor class C group 5 member C protein-coding 9.7 1.856
+55892 MYNN myoneurin protein-coding 8.582 0.6681
+55893 ZNF395 zinc finger protein 395 protein-coding 10.46 0.9515
+55897 MESP1 mesoderm posterior bHLH transcription factor 1 protein-coding 5.222 2.136
+55898 UNC45A unc-45 myosin chaperone A protein-coding 10.91 0.5699
5590 PRKCZ protein kinase C zeta protein-coding 9.144 1.189
-55900 ZNF302 zinc finger protein 302 protein-coding 8.918 0.9131
+55900 ZNF302 zinc finger protein 302 protein-coding 8.918 0.913
55901 THSD1 thrombospondin type 1 domain containing 1 protein-coding 6.588 1.319
-55902 ACSS2 acyl-CoA synthetase short chain family member 2 protein-coding 9.972 0.9537
-55904 KMT2E lysine methyltransferase 2E protein-coding 10.51 0.8059
-55905 RNF114 ring finger protein 114 protein-coding 10.85 0.4778
-55906 ZC4H2 zinc finger C4H2-type containing protein-coding 6.928 1.639
-55907 CMAS cytidine monophosphate N-acetylneuraminic acid synthetase protein-coding 9.826 0.6854
-55909 BIN3 bridging integrator 3 protein-coding 8.789 0.7266
-5591 PRKDC protein kinase, DNA-activated, catalytic polypeptide protein-coding 11.97 0.9335
-55911 APOBR apolipoprotein B receptor protein-coding 7.688 1.364
+55902 ACSS2 acyl-CoA synthetase short chain family member 2 protein-coding 9.972 0.9533
+55904 KMT2E lysine methyltransferase 2E protein-coding 10.51 0.8058
+55905 RNF114 ring finger protein 114 protein-coding 10.85 0.4777
+55906 ZC4H2 zinc finger C4H2-type containing protein-coding 6.929 1.638
+55907 CMAS cytidine monophosphate N-acetylneuraminic acid synthetase protein-coding 9.826 0.6853
+55909 BIN3 bridging integrator 3 protein-coding 8.789 0.7263
+5591 PRKDC protein kinase, DNA-activated, catalytic polypeptide protein-coding 11.97 0.9332
+55911 APOBR apolipoprotein B receptor protein-coding 7.688 1.365
55914 ERBIN erbb2 interacting protein protein-coding 10.83 0.7012
-55915 LANCL2 LanC like 2 protein-coding 9.299 0.8651
-55916 NXT2 nuclear transport factor 2 like export factor 2 protein-coding 8.346 0.9061
-55917 CTTNBP2NL CTTNBP2 N-terminal like protein-coding 9.499 0.851
-5592 PRKG1 protein kinase, cGMP-dependent, type I protein-coding 4.811 1.949
-55920 RCC2 regulator of chromosome condensation 2 protein-coding 11.85 0.9834
-55922 NKRF NFKB repressing factor protein-coding 8.537 0.5593
-55924 FAM212B family with sequence similarity 212 member B protein-coding 5.773 1.338
-55929 DMAP1 DNA methyltransferase 1 associated protein 1 protein-coding 9.396 0.7029
-5593 PRKG2 protein kinase, cGMP-dependent, type II protein-coding 3.351 2.191
-55930 MYO5C myosin VC protein-coding 8.88 1.822
-55937 APOM apolipoprotein M protein-coding 5.747 2.025
-5594 MAPK1 mitogen-activated protein kinase 1 protein-coding 11.57 0.6349
-5595 MAPK3 mitogen-activated protein kinase 3 protein-coding 10.47 0.6441
-55954 ZMAT5 zinc finger matrin-type 5 protein-coding 8.41 0.7411
-55957 LIN37 lin-37 DREAM MuvB core complex component protein-coding 7.367 0.7406
-55958 KLHL9 kelch like family member 9 protein-coding 9.726 0.8367
+55915 LANCL2 LanC like 2 protein-coding 9.299 0.865
+55916 NXT2 nuclear transport factor 2 like export factor 2 protein-coding 8.345 0.9065
+55917 CTTNBP2NL CTTNBP2 N-terminal like protein-coding 9.5 0.8507
+5592 PRKG1 protein kinase, cGMP-dependent, type I protein-coding 4.813 1.95
+55920 RCC2 regulator of chromosome condensation 2 protein-coding 11.85 0.9836
+55922 NKRF NFKB repressing factor protein-coding 8.537 0.5591
+55924 FAM212B family with sequence similarity 212 member B protein-coding 5.774 1.338
+55929 DMAP1 DNA methyltransferase 1 associated protein 1 protein-coding 9.396 0.7026
+5593 PRKG2 protein kinase, cGMP-dependent, type II protein-coding 3.353 2.193
+55930 MYO5C myosin VC protein-coding 8.881 1.822
+55937 APOM apolipoprotein M protein-coding 5.746 2.024
+5594 MAPK1 mitogen-activated protein kinase 1 protein-coding 11.57 0.6347
+5595 MAPK3 mitogen-activated protein kinase 3 protein-coding 10.47 0.6439
+55954 ZMAT5 zinc finger matrin-type 5 protein-coding 8.41 0.741
+55957 LIN37 lin-37 DREAM MuvB core complex component protein-coding 7.366 0.7408
+55958 KLHL9 kelch like family member 9 protein-coding 9.726 0.8365
55959 SULF2 sulfatase 2 protein-coding 11.1 1.642
-55964 SEPT3 septin 3 protein-coding 6.859 2.621
-55966 AJAP1 adherens junctions associated protein 1 protein-coding 3.772 2.317
-55967 NDUFA12 NADH:ubiquinone oxidoreductase subunit A12 protein-coding 9.729 0.5801
-55968 NSFL1C NSFL1 cofactor protein-coding 10.88 0.4834
+55964 SEPT3 septin 3 protein-coding 6.859 2.62
+55966 AJAP1 adherens junctions associated protein 1 protein-coding 3.773 2.316
+55967 NDUFA12 NADH:ubiquinone oxidoreductase subunit A12 protein-coding 9.728 0.5801
+55968 NSFL1C NSFL1 cofactor protein-coding 10.88 0.4833
55969 RAB5IF RAB5 interacting factor protein-coding 10.73 0.8715
-5597 MAPK6 mitogen-activated protein kinase 6 protein-coding 10.25 0.9096
+5597 MAPK6 mitogen-activated protein kinase 6 protein-coding 10.25 0.9094
55970 GNG12 G protein subunit gamma 12 protein-coding 10.98 1.081
-55971 BAIAP2L1 BAI1 associated protein 2 like 1 protein-coding 9.542 2.362
-55972 SLC25A40 solute carrier family 25 member 40 protein-coding 7.027 1.059
+55971 BAIAP2L1 BAI1 associated protein 2 like 1 protein-coding 9.542 2.361
+55972 SLC25A40 solute carrier family 25 member 40 protein-coding 7.028 1.059
55973 BCAP29 B cell receptor associated protein 29 protein-coding 10.15 0.659
-55974 SLC50A1 solute carrier family 50 member 1 protein-coding 9.952 1.087
-55975 KLHL7 kelch like family member 7 protein-coding 9.272 0.6648
-5598 MAPK7 mitogen-activated protein kinase 7 protein-coding 8.732 0.696
-5599 MAPK8 mitogen-activated protein kinase 8 protein-coding 7.691 1.01
-56 ACRV1 acrosomal vesicle protein 1 protein-coding 1.545 1.202
-5600 MAPK11 mitogen-activated protein kinase 11 protein-coding 7.812 1.197
-56000 NXF3 nuclear RNA export factor 3 protein-coding 1.474 1.884
-56005 MYDGF myeloid derived growth factor protein-coding 10.85 0.7481
-56006 SMG9 SMG9, nonsense mediated mRNA decay factor protein-coding 9.498 0.6322
-5601 MAPK9 mitogen-activated protein kinase 9 protein-coding 9.925 0.5809
-5602 MAPK10 mitogen-activated protein kinase 10 protein-coding 6.731 2.357
-5603 MAPK13 mitogen-activated protein kinase 13 protein-coding 9.398 2.076
+55974 SLC50A1 solute carrier family 50 member 1 protein-coding 9.952 1.086
+55975 KLHL7 kelch like family member 7 protein-coding 9.272 0.6646
+5598 MAPK7 mitogen-activated protein kinase 7 protein-coding 8.732 0.6958
+5599 MAPK8 mitogen-activated protein kinase 8 protein-coding 7.691 1.009
+56 ACRV1 acrosomal vesicle protein 1 protein-coding 1.544 1.203
+5600 MAPK11 mitogen-activated protein kinase 11 protein-coding 7.813 1.197
+56000 NXF3 nuclear RNA export factor 3 protein-coding 1.475 1.886
+56005 MYDGF myeloid derived growth factor protein-coding 10.85 0.7479
+56006 SMG9 SMG9, nonsense mediated mRNA decay factor protein-coding 9.498 0.6321
+5601 MAPK9 mitogen-activated protein kinase 9 protein-coding 9.925 0.5806
+5602 MAPK10 mitogen-activated protein kinase 10 protein-coding 6.733 2.356
+5603 MAPK13 mitogen-activated protein kinase 13 protein-coding 9.398 2.075
56034 PDGFC platelet derived growth factor C protein-coding 8.745 1.526
-5604 MAP2K1 mitogen-activated protein kinase kinase 1 protein-coding 10.33 0.5879
-5605 MAP2K2 mitogen-activated protein kinase kinase 2 protein-coding 11.23 0.651
-56052 ALG1 ALG1, chitobiosyldiphosphodolichol beta-mannosyltransferase protein-coding 9.284 0.6015
+5604 MAP2K1 mitogen-activated protein kinase kinase 1 protein-coding 10.33 0.5878
+5605 MAP2K2 mitogen-activated protein kinase kinase 2 protein-coding 11.23 0.6508
+56052 ALG1 ALG1, chitobiosyldiphosphodolichol beta-mannosyltransferase protein-coding 9.284 0.6013
5606 MAP2K3 mitogen-activated protein kinase kinase 3 protein-coding 10.17 0.8723
-56061 UBFD1 ubiquitin family domain containing 1 protein-coding 10.55 0.5596
-56062 KLHL4 kelch like family member 4 protein-coding 3.882 2.434
-56063 TMEM234 transmembrane protein 234 protein-coding 7.702 0.7408
-5607 MAP2K5 mitogen-activated protein kinase kinase 5 protein-coding 8.307 0.6009
+56061 UBFD1 ubiquitin family domain containing 1 protein-coding 10.55 0.5595
+56062 KLHL4 kelch like family member 4 protein-coding 3.883 2.433
+56063 TMEM234 transmembrane protein 234 protein-coding 7.702 0.7406
+5607 MAP2K5 mitogen-activated protein kinase kinase 5 protein-coding 8.307 0.6007
5608 MAP2K6 mitogen-activated protein kinase kinase 6 protein-coding 6.516 1.526
-5609 MAP2K7 mitogen-activated protein kinase kinase 7 protein-coding 9.778 0.5038
-56097 PCDHGC5 protocadherin gamma subfamily C, 5 protein-coding 3.514 2.414
-56098 PCDHGC4 protocadherin gamma subfamily C, 4 protein-coding 2.901 2.51
-56099 PCDHGB7 protocadherin gamma subfamily B, 7 protein-coding 6.366 2.35
-5610 EIF2AK2 eukaryotic translation initiation factor 2 alpha kinase 2 protein-coding 8.602 0.9572
-56100 PCDHGB6 protocadherin gamma subfamily B, 6 protein-coding 5.166 1.991
-56101 PCDHGB5 protocadherin gamma subfamily B, 5 protein-coding 5.589 2.537
-56102 PCDHGB3 protocadherin gamma subfamily B, 3 protein-coding 3.325 1.72
-56103 PCDHGB2 protocadherin gamma subfamily B, 2 protein-coding 5.271 2.26
-56104 PCDHGB1 protocadherin gamma subfamily B, 1 protein-coding 4.583 2.303
-56105 PCDHGA11 protocadherin gamma subfamily A, 11 protein-coding 4.221 1.819
-56106 PCDHGA10 protocadherin gamma subfamily A, 10 protein-coding 5.621 2.245
-56107 PCDHGA9 protocadherin gamma subfamily A, 9 protein-coding 4.763 2.008
-56108 PCDHGA7 protocadherin gamma subfamily A, 7 protein-coding 4.217 1.945
-56109 PCDHGA6 protocadherin gamma subfamily A, 6 protein-coding 4.605 1.734
-5611 DNAJC3 DnaJ heat shock protein family (Hsp40) member C3 protein-coding 10.94 0.7702
-56110 PCDHGA5 protocadherin gamma subfamily A, 5 protein-coding 3.988 1.823
-56111 PCDHGA4 protocadherin gamma subfamily A, 4 protein-coding 4.412 1.967
-56112 PCDHGA3 protocadherin gamma subfamily A, 3 protein-coding 3.642 1.979
-56113 PCDHGA2 protocadherin gamma subfamily A, 2 protein-coding 4.508 2.065
-56114 PCDHGA1 protocadherin gamma subfamily A, 1 protein-coding 3.802 1.799
-5612 THAP12 THAP domain containing 12 protein-coding 9.99 0.6536
+5609 MAP2K7 mitogen-activated protein kinase kinase 7 protein-coding 9.778 0.5036
+56097 PCDHGC5 protocadherin gamma subfamily C, 5 protein-coding 3.514 2.412
+56098 PCDHGC4 protocadherin gamma subfamily C, 4 protein-coding 2.901 2.509
+56099 PCDHGB7 protocadherin gamma subfamily B, 7 protein-coding 6.368 2.349
+5610 EIF2AK2 eukaryotic translation initiation factor 2 alpha kinase 2 protein-coding 8.601 0.9569
+56100 PCDHGB6 protocadherin gamma subfamily B, 6 protein-coding 5.168 1.991
+56101 PCDHGB5 protocadherin gamma subfamily B, 5 protein-coding 5.591 2.537
+56102 PCDHGB3 protocadherin gamma subfamily B, 3 protein-coding 3.326 1.72
+56103 PCDHGB2 protocadherin gamma subfamily B, 2 protein-coding 5.271 2.259
+56104 PCDHGB1 protocadherin gamma subfamily B, 1 protein-coding 4.584 2.302
+56105 PCDHGA11 protocadherin gamma subfamily A, 11 protein-coding 4.222 1.819
+56106 PCDHGA10 protocadherin gamma subfamily A, 10 protein-coding 5.622 2.245
+56107 PCDHGA9 protocadherin gamma subfamily A, 9 protein-coding 4.765 2.008
+56108 PCDHGA7 protocadherin gamma subfamily A, 7 protein-coding 4.218 1.945
+56109 PCDHGA6 protocadherin gamma subfamily A, 6 protein-coding 4.606 1.734
+5611 DNAJC3 DnaJ heat shock protein family (Hsp40) member C3 protein-coding 10.94 0.77
+56110 PCDHGA5 protocadherin gamma subfamily A, 5 protein-coding 3.99 1.823
+56111 PCDHGA4 protocadherin gamma subfamily A, 4 protein-coding 4.413 1.967
+56112 PCDHGA3 protocadherin gamma subfamily A, 3 protein-coding 3.643 1.979
+56113 PCDHGA2 protocadherin gamma subfamily A, 2 protein-coding 4.51 2.065
+56114 PCDHGA1 protocadherin gamma subfamily A, 1 protein-coding 3.802 1.798
+5612 THAP12 THAP domain containing 12 protein-coding 9.99 0.6533
56120 PCDHGB8P protocadherin gamma subfamily B, 8 pseudogene pseudo 1.41 1.074
-56121 PCDHB15 protocadherin beta 15 protein-coding 5.163 1.48
-56122 PCDHB14 protocadherin beta 14 protein-coding 6.958 1.381
+56121 PCDHB15 protocadherin beta 15 protein-coding 5.164 1.48
+56122 PCDHB14 protocadherin beta 14 protein-coding 6.957 1.38
56123 PCDHB13 protocadherin beta 13 protein-coding 5.716 1.389
-56124 PCDHB12 protocadherin beta 12 protein-coding 4.928 1.389
-56125 PCDHB11 protocadherin beta 11 protein-coding 4.728 1.948
+56124 PCDHB12 protocadherin beta 12 protein-coding 4.929 1.388
+56125 PCDHB11 protocadherin beta 11 protein-coding 4.729 1.947
56126 PCDHB10 protocadherin beta 10 protein-coding 6.125 1.711
-56127 PCDHB9 protocadherin beta 9 protein-coding 5.901 1.835
-56128 PCDHB8 protocadherin beta 8 protein-coding 4.946 1.916
-56129 PCDHB7 protocadherin beta 7 protein-coding 5.307 1.689
-5613 PRKX protein kinase, X-linked protein-coding 9.281 1.34
-56130 PCDHB6 protocadherin beta 6 protein-coding 4.459 1.962
-56131 PCDHB4 protocadherin beta 4 protein-coding 5.482 1.742
-56132 PCDHB3 protocadherin beta 3 protein-coding 4.812 1.853
+56127 PCDHB9 protocadherin beta 9 protein-coding 5.9 1.835
+56128 PCDHB8 protocadherin beta 8 protein-coding 4.946 1.915
+56129 PCDHB7 protocadherin beta 7 protein-coding 5.308 1.688
+5613 PRKX protein kinase, X-linked protein-coding 9.281 1.339
+56130 PCDHB6 protocadherin beta 6 protein-coding 4.459 1.961
+56131 PCDHB4 protocadherin beta 4 protein-coding 5.483 1.742
+56132 PCDHB3 protocadherin beta 3 protein-coding 4.813 1.852
56133 PCDHB2 protocadherin beta 2 protein-coding 6.348 1.957
-56155 TEX14 testis expressed 14, intercellular bridge forming factor protein-coding 2.71 1.374
-5616 PRKY protein kinase, Y-linked, pseudogene pseudo 4.241 3.058
-56160 NSMCE3 NSE3 homolog, SMC5-SMC6 complex component protein-coding 8.686 0.6502
-56164 STK31 serine/threonine kinase 31 protein-coding 3.194 2.382
-56165 TDRD1 tudor domain containing 1 protein-coding 1.783 2.334
-56169 GSDMC gasdermin C protein-coding 3.875 3.078
-56171 DNAH7 dynein axonemal heavy chain 7 protein-coding 4.498 2.16
-56172 ANKH ANKH inorganic pyrophosphate transport regulator protein-coding 10.49 1.252
-5618 PRLR prolactin receptor protein-coding 6.475 3.177
-56180 MOSPD1 motile sperm domain containing 1 protein-coding 8.098 0.6979
-56181 MTFR1L mitochondrial fission regulator 1 like protein-coding 9.896 0.6726
-56203 LMOD3 leiomodin 3 protein-coding 2.344 1.491
-56204 FAM214A family with sequence similarity 214 member A protein-coding 9.288 0.9657
+56155 TEX14 testis expressed 14, intercellular bridge forming factor protein-coding 2.711 1.375
+5616 PRKY protein kinase, Y-linked, pseudogene pseudo 4.242 3.058
+56160 NSMCE3 NSE3 homolog, SMC5-SMC6 complex component protein-coding 8.687 0.6505
+56164 STK31 serine/threonine kinase 31 protein-coding 3.194 2.381
+56165 TDRD1 tudor domain containing 1 protein-coding 1.784 2.333
+56169 GSDMC gasdermin C protein-coding 3.873 3.077
+56171 DNAH7 dynein axonemal heavy chain 7 protein-coding 4.499 2.16
+56172 ANKH ANKH inorganic pyrophosphate transport regulator protein-coding 10.49 1.253
+5618 PRLR prolactin receptor protein-coding 6.475 3.176
+56180 MOSPD1 motile sperm domain containing 1 protein-coding 8.098 0.6977
+56181 MTFR1L mitochondrial fission regulator 1 like protein-coding 9.896 0.6725
+56203 LMOD3 leiomodin 3 protein-coding 2.345 1.492
+56204 FAM214A family with sequence similarity 214 member A protein-coding 9.289 0.9654
5621 PRNP prion protein protein-coding 11.31 1.309
-5623 PSPN persephin protein-coding 1.016 0.8867
-5624 PROC protein C, inactivator of coagulation factors Va and VIIIa protein-coding 4.459 2.779
-56241 SUSD2 sushi domain containing 2 protein-coding 7.868 2.066
-56242 ZNF253 zinc finger protein 253 protein-coding 7.405 1.234
+5623 PSPN persephin protein-coding 1.017 0.8871
+5624 PROC protein C, inactivator of coagulation factors Va and VIIIa protein-coding 4.458 2.778
+56241 SUSD2 sushi domain containing 2 protein-coding 7.87 2.067
+56242 ZNF253 zinc finger protein 253 protein-coding 7.406 1.233
56243 KIAA1217 KIAA1217 protein-coding 10.6 1.546
-56245 C21orf62 chromosome 21 open reading frame 62 protein-coding 2.39 2.743
+56245 C21orf62 chromosome 21 open reading frame 62 protein-coding 2.392 2.743
5625 PRODH proline dehydrogenase 1 protein-coding 7.187 2.767
-56252 YLPM1 YLP motif containing 1 protein-coding 10.45 0.6213
-56253 CRTAM cytotoxic and regulatory T cell molecule protein-coding 3.631 1.832
-56254 RNF20 ring finger protein 20 protein-coding 10.17 0.5394
-56255 TMX4 thioredoxin related transmembrane protein 4 protein-coding 9.716 0.9205
-56256 SERTAD4 SERTA domain containing 4 protein-coding 5.358 2.209
-56257 MEPCE methylphosphate capping enzyme protein-coding 10.48 0.5619
-56259 CTNNBL1 catenin beta like 1 protein-coding 10.06 0.563
-56260 C8orf44 chromosome 8 open reading frame 44 protein-coding 5.127 0.7509
+56252 YLPM1 YLP motif containing 1 protein-coding 10.45 0.6211
+56253 CRTAM cytotoxic and regulatory T cell molecule protein-coding 3.633 1.833
+56254 RNF20 ring finger protein 20 protein-coding 10.17 0.5393
+56255 TMX4 thioredoxin related transmembrane protein 4 protein-coding 9.716 0.9206
+56256 SERTAD4 SERTA domain containing 4 protein-coding 5.358 2.208
+56257 MEPCE methylphosphate capping enzyme protein-coding 10.48 0.5618
+56259 CTNNBL1 catenin beta like 1 protein-coding 10.06 0.5629
+56260 C8orf44 chromosome 8 open reading frame 44 protein-coding 5.127 0.7507
56261 GPCPD1 glycerophosphocholine phosphodiesterase 1 protein-coding 9.828 0.9668
-56262 LRRC8A leucine rich repeat containing 8 VRAC subunit A protein-coding 11.07 0.9727
+56262 LRRC8A leucine rich repeat containing 8 VRAC subunit A protein-coding 11.07 0.9723
56265 CPXM1 carboxypeptidase X, M14 family member 1 protein-coding 7.918 2.329
-56267 KYAT3 kynurenine aminotransferase 3 protein-coding 8.901 0.6418
-5627 PROS1 protein S protein-coding 9.383 1.78
-56270 WDR45B WD repeat domain 45B protein-coding 11.24 0.5757
-56271 BEX4 brain expressed X-linked 4 protein-coding 9.235 1.79
-56288 PARD3 par-3 family cell polarity regulator protein-coding 9.749 0.9002
-5630 PRPH peripherin protein-coding 3.179 2.52
-56301 SLC7A10 solute carrier family 7 member 10 protein-coding 1.838 2.197
-5631 PRPS1 phosphoribosyl pyrophosphate synthetase 1 protein-coding 9.81 0.6682
-56339 METTL3 methyltransferase like 3 protein-coding 9.306 0.5769
-5634 PRPS2 phosphoribosyl pyrophosphate synthetase 2 protein-coding 9.848 1.122
-56342 PPAN peter pan homolog (Drosophila) protein-coding 9.126 0.8591
+56267 KYAT3 kynurenine aminotransferase 3 protein-coding 8.901 0.6416
+5627 PROS1 protein S protein-coding 9.384 1.779
+56270 WDR45B WD repeat domain 45B protein-coding 11.24 0.5755
+56271 BEX4 brain expressed X-linked 4 protein-coding 9.236 1.79
+56288 PARD3 par-3 family cell polarity regulator protein-coding 9.748 0.9001
+5630 PRPH peripherin protein-coding 3.182 2.522
+56301 SLC7A10 solute carrier family 7 member 10 protein-coding 1.838 2.196
+5631 PRPS1 phosphoribosyl pyrophosphate synthetase 1 protein-coding 9.81 0.668
+56339 METTL3 methyltransferase like 3 protein-coding 9.306 0.5768
+5634 PRPS2 phosphoribosyl pyrophosphate synthetase 2 protein-coding 9.847 1.122
+56342 PPAN peter pan homolog (Drosophila) protein-coding 9.125 0.859
5635 PRPSAP1 phosphoribosyl pyrophosphate synthetase associated protein 1 protein-coding 9.674 0.5766
-5636 PRPSAP2 phosphoribosyl pyrophosphate synthetase associated protein 2 protein-coding 9.184 0.5997
-5638 PRRG1 proline rich and Gla domain 1 protein-coding 7.717 1.32
+5636 PRPSAP2 phosphoribosyl pyrophosphate synthetase associated protein 2 protein-coding 9.183 0.5995
+5638 PRRG1 proline rich and Gla domain 1 protein-coding 7.717 1.319
5639 PRRG2 proline rich and Gla domain 2 protein-coding 6.63 2.093
-5641 LGMN legumain protein-coding 11.31 0.9078
-56413 LTB4R2 leukotriene B4 receptor 2 protein-coding 5.891 1.416
-5644 PRSS1 serine protease 1 protein-coding 1.893 2.958
-5646 PRSS3 serine protease 3 protein-coding 4.533 3.827
+5641 LGMN legumain protein-coding 11.31 0.9081
+56413 LTB4R2 leukotriene B4 receptor 2 protein-coding 5.892 1.415
+5644 PRSS1 serine protease 1 protein-coding 1.896 2.965
+5646 PRSS3 serine protease 3 protein-coding 4.534 3.829
56474 CTPS2 CTP synthase 2 protein-coding 9.061 0.8045
-56477 CCL28 C-C motif chemokine ligand 28 protein-coding 5.585 2.224
-56478 EIF4ENIF1 eukaryotic translation initiation factor 4E nuclear import factor 1 protein-coding 9.232 0.4633
-56479 KCNQ5 potassium voltage-gated channel subfamily Q member 5 protein-coding 4.727 2.723
-5649 RELN reelin protein-coding 4.673 2.95
-5652 PRSS8 serine protease 8 protein-coding 9.574 3.987
+56477 CCL28 C-C motif chemokine ligand 28 protein-coding 5.586 2.224
+56478 EIF4ENIF1 eukaryotic translation initiation factor 4E nuclear import factor 1 protein-coding 9.232 0.4631
+56479 KCNQ5 potassium voltage-gated channel subfamily Q member 5 protein-coding 4.728 2.723
+5649 RELN reelin protein-coding 4.677 2.952
+5652 PRSS8 serine protease 8 protein-coding 9.574 3.986
56521 DNAJC12 DnaJ heat shock protein family (Hsp40) member C12 protein-coding 6.062 2.486
-5654 HTRA1 HtrA serine peptidase 1 protein-coding 11.17 1.476
-56548 CHST7 carbohydrate sulfotransferase 7 protein-coding 6.525 1.405
-566 AZU1 azurocidin 1 protein-coding 1.142 1.433
-5660 PSAP prosaposin protein-coding 15.01 0.6963
+5654 HTRA1 HtrA serine peptidase 1 protein-coding 11.17 1.475
+56548 CHST7 carbohydrate sulfotransferase 7 protein-coding 6.526 1.405
+566 AZU1 azurocidin 1 protein-coding 1.142 1.432
+5660 PSAP prosaposin protein-coding 15.01 0.6964
56603 CYP26B1 cytochrome P450 family 26 subfamily B member 1 protein-coding 6.353 1.954
-56605 ERO1B endoplasmic reticulum oxidoreductase 1 beta protein-coding 8.076 1.341
+56605 ERO1B endoplasmic reticulum oxidoreductase 1 beta protein-coding 8.077 1.341
56606 SLC2A9 solute carrier family 2 member 9 protein-coding 6.267 1.709
-56616 DIABLO diablo IAP-binding mitochondrial protein protein-coding 10.07 0.5441
-5662 PSD pleckstrin and Sec7 domain containing protein-coding 6.044 2.273
-56623 INPP5E inositol polyphosphate-5-phosphatase E protein-coding 8.354 0.6571
-5663 PSEN1 presenilin 1 protein-coding 10.82 0.449
-5664 PSEN2 presenilin 2 protein-coding 8.849 0.8586
-56647 BCCIP BRCA2 and CDKN1A interacting protein protein-coding 10.14 0.5276
-56648 EIF5A2 eukaryotic translation initiation factor 5A2 protein-coding 7.151 1.323
-56649 TMPRSS4 transmembrane serine protease 4 protein-coding 6.686 4.832
-56650 CLDND1 claudin domain containing 1 protein-coding 10.36 0.8924
-56652 TWNK twinkle mtDNA helicase protein-coding 8.483 0.7425
-56654 NPDC1 neural proliferation, differentiation and control 1 protein-coding 10.14 1.648
-56655 POLE4 DNA polymerase epsilon 4, accessory subunit protein-coding 9.059 0.833
-56658 TRIM39 tripartite motif containing 39 protein-coding 8.615 0.4629
-56659 KCNK13 potassium two pore domain channel subfamily K member 13 protein-coding 4.607 1.665
-56660 KCNK12 potassium two pore domain channel subfamily K member 12 protein-coding 2.067 1.922
-56666 PANX2 pannexin 2 protein-coding 6.227 2.325
-56670 SUCNR1 succinate receptor 1 protein-coding 2.844 2.039
-56672 AKIP1 A-kinase interacting protein 1 protein-coding 8.486 0.5884
+56616 DIABLO diablo IAP-binding mitochondrial protein protein-coding 10.07 0.5448
+5662 PSD pleckstrin and Sec7 domain containing protein-coding 6.046 2.274
+56623 INPP5E inositol polyphosphate-5-phosphatase E protein-coding 8.354 0.657
+5663 PSEN1 presenilin 1 protein-coding 10.82 0.4489
+5664 PSEN2 presenilin 2 protein-coding 8.849 0.8585
+56647 BCCIP BRCA2 and CDKN1A interacting protein protein-coding 10.14 0.5277
+56648 EIF5A2 eukaryotic translation initiation factor 5A2 protein-coding 7.151 1.322
+56649 TMPRSS4 transmembrane serine protease 4 protein-coding 6.686 4.831
+56650 CLDND1 claudin domain containing 1 protein-coding 10.36 0.892
+56652 TWNK twinkle mtDNA helicase protein-coding 8.482 0.7427
+56654 NPDC1 neural proliferation, differentiation and control 1 protein-coding 10.15 1.649
+56655 POLE4 DNA polymerase epsilon 4, accessory subunit protein-coding 9.058 0.8331
+56658 TRIM39 tripartite motif containing 39 protein-coding 8.616 0.4628
+56659 KCNK13 potassium two pore domain channel subfamily K member 13 protein-coding 4.608 1.666
+56660 KCNK12 potassium two pore domain channel subfamily K member 12 protein-coding 2.068 1.922
+56666 PANX2 pannexin 2 protein-coding 6.227 2.324
+56670 SUCNR1 succinate receptor 1 protein-coding 2.846 2.039
+56672 AKIP1 A-kinase interacting protein 1 protein-coding 8.486 0.5882
56673 C11orf16 chromosome 11 open reading frame 16 protein-coding 1.237 1.758
-56674 TMEM9B TMEM9 domain family member B protein-coding 10.29 0.6119
+56674 TMEM9B TMEM9 domain family member B protein-coding 10.29 0.6118
56675 NRIP3 nuclear receptor interacting protein 3 protein-coding 6.182 2.021
-56681 SAR1A secretion associated Ras related GTPase 1A protein-coding 11.15 0.4156
-56683 CFAP298 cilia and flagella associated protein 298 protein-coding 9.647 0.6167
-567 B2M beta-2-microglobulin protein-coding 15.4 1.037
-56704 JPH1 junctophilin 1 protein-coding 6.574 2.047
-56729 RETN resistin protein-coding 1.201 1.598
+56681 SAR1A secretion associated Ras related GTPase 1A protein-coding 11.15 0.4155
+56683 CFAP298 cilia and flagella associated protein 298 protein-coding 9.647 0.6166
+567 B2M beta-2-microglobulin protein-coding 15.41 1.036
+56704 JPH1 junctophilin 1 protein-coding 6.574 2.046
+56729 RETN resistin protein-coding 1.202 1.599
56731 SLC2A4RG SLC2A4 regulator protein-coding 10.41 1.021
-5681 PSKH1 protein serine kinase H1 protein-coding 9.687 0.6416
-5682 PSMA1 proteasome subunit alpha 1 protein-coding 11.15 0.499
-56829 ZC3HAV1 zinc finger CCCH-type containing, antiviral 1 protein-coding 10.14 0.5546
-5683 PSMA2 proteasome subunit alpha 2 protein-coding 11.18 0.5707
-56833 SLAMF8 SLAM family member 8 protein-coding 7.813 1.728
-56834 GPR137 G protein-coupled receptor 137 protein-coding 9.167 0.7469
-5684 PSMA3 proteasome subunit alpha 3 protein-coding 10.46 0.6461
-56848 SPHK2 sphingosine kinase 2 protein-coding 8.71 0.7892
+5681 PSKH1 protein serine kinase H1 protein-coding 9.687 0.6414
+5682 PSMA1 proteasome subunit alpha 1 protein-coding 11.14 0.499
+56829 ZC3HAV1 zinc finger CCCH-type containing, antiviral 1 protein-coding 10.14 0.5547
+5683 PSMA2 proteasome subunit alpha 2 protein-coding 11.18 0.5709
+56833 SLAMF8 SLAM family member 8 protein-coding 7.814 1.729
+56834 GPR137 G protein-coupled receptor 137 protein-coding 9.167 0.7467
+5684 PSMA3 proteasome subunit alpha 3 protein-coding 10.46 0.6462
+56848 SPHK2 sphingosine kinase 2 protein-coding 8.71 0.789
5685 PSMA4 proteasome subunit alpha 4 protein-coding 11.22 0.6518
-56850 GRIPAP1 GRIP1 associated protein 1 protein-coding 10.08 0.533
-56851 EMC7 ER membrane protein complex subunit 7 protein-coding 10.25 0.5366
-56852 RAD18 RAD18, E3 ubiquitin protein ligase protein-coding 7.663 0.8268
-56853 CELF4 CUGBP Elav-like family member 4 protein-coding 3.909 2.564
-5686 PSMA5 proteasome subunit alpha 5 protein-coding 10.75 0.6876
-5687 PSMA6 proteasome subunit alpha 6 protein-coding 11.14 0.6681
-5688 PSMA7 proteasome subunit alpha 7 protein-coding 11.72 0.692
-56882 CDC42SE1 CDC42 small effector 1 protein-coding 11.31 0.708
-56886 UGGT1 UDP-glucose glycoprotein glucosyltransferase 1 protein-coding 10.94 0.5949
-56888 KCMF1 potassium channel modulatory factor 1 protein-coding 10.35 0.4493
-56889 TM9SF3 transmembrane 9 superfamily member 3 protein-coding 12.25 0.6705
-5689 PSMB1 proteasome subunit beta 1 protein-coding 11.57 0.6178
+56850 GRIPAP1 GRIP1 associated protein 1 protein-coding 10.08 0.5328
+56851 EMC7 ER membrane protein complex subunit 7 protein-coding 10.25 0.5367
+56852 RAD18 RAD18, E3 ubiquitin protein ligase protein-coding 7.663 0.8265
+56853 CELF4 CUGBP Elav-like family member 4 protein-coding 3.911 2.564
+5686 PSMA5 proteasome subunit alpha 5 protein-coding 10.75 0.6877
+5687 PSMA6 proteasome subunit alpha 6 protein-coding 11.14 0.6683
+5688 PSMA7 proteasome subunit alpha 7 protein-coding 11.72 0.6921
+56882 CDC42SE1 CDC42 small effector 1 protein-coding 11.31 0.7077
+56886 UGGT1 UDP-glucose glycoprotein glucosyltransferase 1 protein-coding 10.94 0.5948
+56888 KCMF1 potassium channel modulatory factor 1 protein-coding 10.35 0.4492
+56889 TM9SF3 transmembrane 9 superfamily member 3 protein-coding 12.25 0.6706
+5689 PSMB1 proteasome subunit beta 1 protein-coding 11.57 0.6177
56890 MDM1 Mdm1 nuclear protein protein-coding 7.772 0.8248
-56892 TCIM transcriptional and immune response regulator protein-coding 9.292 2.149
-56893 UBQLN4 ubiquilin 4 protein-coding 10.58 0.6519
-56894 AGPAT3 1-acylglycerol-3-phosphate O-acyltransferase 3 protein-coding 11.06 0.6827
-56895 AGPAT4 1-acylglycerol-3-phosphate O-acyltransferase 4 protein-coding 7.625 1.553
-56897 WRNIP1 Werner helicase interacting protein 1 protein-coding 10.25 0.5027
-56898 BDH2 3-hydroxybutyrate dehydrogenase 2 protein-coding 9.234 1.22
-56899 ANKS1B ankyrin repeat and sterile alpha motif domain containing 1B protein-coding 4.208 2.648
-5690 PSMB2 proteasome subunit beta 2 protein-coding 11.09 0.5819
-56900 TMEM167B transmembrane protein 167B protein-coding 10.15 0.4884
-56901 NDUFA4L2 NDUFA4, mitochondrial complex associated like 2 protein-coding 8.978 2.328
-56902 PNO1 partner of NOB1 homolog protein-coding 9.046 0.6057
-56904 SH3GLB2 SH3 domain containing GRB2 like, endophilin B2 protein-coding 10.4 0.8161
-56905 C15orf39 chromosome 15 open reading frame 39 protein-coding 9.831 0.7969
-56906 THAP10 THAP domain containing 10 protein-coding 6.159 0.9454
-56907 SPIRE1 spire type actin nucleation factor 1 protein-coding 9.253 1.429
-5691 PSMB3 proteasome subunit beta 3 protein-coding 11.19 0.7584
-56910 STARD7 StAR related lipid transfer domain containing 7 protein-coding 11.77 0.4983
+56892 TCIM transcriptional and immune response regulator protein-coding 9.292 2.148
+56893 UBQLN4 ubiquilin 4 protein-coding 10.58 0.6518
+56894 AGPAT3 1-acylglycerol-3-phosphate O-acyltransferase 3 protein-coding 11.06 0.6826
+56895 AGPAT4 1-acylglycerol-3-phosphate O-acyltransferase 4 protein-coding 7.626 1.553
+56897 WRNIP1 Werner helicase interacting protein 1 protein-coding 10.25 0.5026
+56898 BDH2 3-hydroxybutyrate dehydrogenase 2 protein-coding 9.235 1.22
+56899 ANKS1B ankyrin repeat and sterile alpha motif domain containing 1B protein-coding 4.209 2.648
+5690 PSMB2 proteasome subunit beta 2 protein-coding 11.09 0.582
+56900 TMEM167B transmembrane protein 167B protein-coding 10.15 0.4885
+56901 NDUFA4L2 NDUFA4, mitochondrial complex associated like 2 protein-coding 8.978 2.327
+56902 PNO1 partner of NOB1 homolog protein-coding 9.045 0.6058
+56904 SH3GLB2 SH3 domain containing GRB2 like, endophilin B2 protein-coding 10.4 0.8159
+56905 C15orf39 chromosome 15 open reading frame 39 protein-coding 9.831 0.7966
+56906 THAP10 THAP domain containing 10 protein-coding 6.159 0.9452
+56907 SPIRE1 spire type actin nucleation factor 1 protein-coding 9.253 1.428
+5691 PSMB3 proteasome subunit beta 3 protein-coding 11.19 0.7585
+56910 STARD7 StAR related lipid transfer domain containing 7 protein-coding 11.77 0.4982
56911 MAP3K7CL MAP3K7 C-terminal like protein-coding 6.448 1.353
-56912 IFT46 intraflagellar transport 46 protein-coding 8.829 0.7968
-56913 C1GALT1 core 1 synthase, glycoprotein-N-acetylgalactosamine 3-beta-galactosyltransferase 1 protein-coding 8.422 1.035
-56915 EXOSC5 exosome component 5 protein-coding 8.852 0.7999
-56916 SMARCAD1 SWI/SNF-related, matrix-associated actin-dependent regulator of chromatin, subfamily a, containing DEAD/H box 1 protein-coding 9.44 0.6888
-56917 MEIS3 Meis homeobox 3 protein-coding 6.82 2.02
+56912 IFT46 intraflagellar transport 46 protein-coding 8.829 0.7966
+56913 C1GALT1 core 1 synthase, glycoprotein-N-acetylgalactosamine 3-beta-galactosyltransferase 1 protein-coding 8.422 1.034
+56915 EXOSC5 exosome component 5 protein-coding 8.851 0.8003
+56916 SMARCAD1 SWI/SNF-related, matrix-associated actin-dependent regulator of chromatin, subfamily a, containing DEAD/H box 1 protein-coding 9.44 0.6885
+56917 MEIS3 Meis homeobox 3 protein-coding 6.82 2.019
56919 DHX33 DEAH-box helicase 33 protein-coding 7.972 1.174
-5692 PSMB4 proteasome subunit beta 4 protein-coding 12.23 0.6171
-56920 SEMA3G semaphorin 3G protein-coding 7.389 1.473
-56922 MCCC1 methylcrotonoyl-CoA carboxylase 1 protein-coding 9.352 0.8226
-56924 PAK6 p21 (RAC1) activated kinase 6 protein-coding 7.481 2.161
+5692 PSMB4 proteasome subunit beta 4 protein-coding 12.23 0.6173
+56920 SEMA3G semaphorin 3G protein-coding 7.39 1.473
+56922 MCCC1 methylcrotonoyl-CoA carboxylase 1 protein-coding 9.352 0.8223
+56924 PAK6 p21 (RAC1) activated kinase 6 protein-coding 7.482 2.161
56925 LXN latexin protein-coding 7.711 1.451
-56926 NCLN nicalin protein-coding 10.85 0.721
+56926 NCLN nicalin protein-coding 10.85 0.7209
56927 GPR108 G protein-coupled receptor 108 protein-coding 10.27 0.5741
-56928 SPPL2B signal peptide peptidase like 2B protein-coding 9.947 0.7447
-56929 FEM1C fem-1 homolog C protein-coding 9.432 0.7106
-5693 PSMB5 proteasome subunit beta 5 protein-coding 11.18 0.5518
-56931 DUS3L dihydrouridine synthase 3 like protein-coding 8.795 0.7459
-56935 SMCO4 single-pass membrane protein with coiled-coil domains 4 protein-coding 8.272 1.275
+56928 SPPL2B signal peptide peptidase like 2B protein-coding 9.947 0.7445
+56929 FEM1C fem-1 homolog C protein-coding 9.432 0.7107
+5693 PSMB5 proteasome subunit beta 5 protein-coding 11.18 0.5521
+56931 DUS3L dihydrouridine synthase 3 like protein-coding 8.795 0.7456
+56935 SMCO4 single-pass membrane protein with coiled-coil domains 4 protein-coding 8.273 1.275
56937 PMEPA1 prostate transmembrane protein, androgen induced 1 protein-coding 10.77 1.793
-56938 ARNTL2 aryl hydrocarbon receptor nuclear translocator like 2 protein-coding 6.313 2.367
+56938 ARNTL2 aryl hydrocarbon receptor nuclear translocator like 2 protein-coding 6.312 2.367
5694 PSMB6 proteasome subunit beta 6 protein-coding 10.89 0.6157
56940 DUSP22 dual specificity phosphatase 22 protein-coding 9.517 0.6238
-56941 HMCES 5-hydroxymethylcytosine (hmC) binding, ES cell-specific protein-coding 10.02 0.6386
-56942 CMC2 C-X9-C motif containing 2 protein-coding 8.792 0.67
-56943 ENY2 ENY2, transcription and export complex 2 subunit protein-coding 9.354 0.6857
-56944 OLFML3 olfactomedin like 3 protein-coding 8.847 1.661
-56945 MRPS22 mitochondrial ribosomal protein S22 protein-coding 9.146 0.5846
-56946 EMSY EMSY, BRCA2 interacting transcriptional repressor protein-coding 8.326 0.7784
-56947 MFF mitochondrial fission factor protein-coding 10.31 0.5304
-56948 SDR39U1 short chain dehydrogenase/reductase family 39U member 1 protein-coding 9.354 0.7917
-56949 XAB2 XPA binding protein 2 protein-coding 10.42 0.6318
-5695 PSMB7 proteasome subunit beta 7 protein-coding 11.19 0.6329
-56950 SMYD2 SET and MYND domain containing 2 protein-coding 9.502 0.8218
-56951 C5orf15 chromosome 5 open reading frame 15 protein-coding 10.6 0.6624
+56941 HMCES 5-hydroxymethylcytosine (hmC) binding, ES cell-specific protein-coding 10.02 0.6384
+56942 CMC2 C-X9-C motif containing 2 protein-coding 8.792 0.6701
+56943 ENY2 ENY2, transcription and export complex 2 subunit protein-coding 9.353 0.6857
+56944 OLFML3 olfactomedin like 3 protein-coding 8.848 1.661
+56945 MRPS22 mitochondrial ribosomal protein S22 protein-coding 9.146 0.5847
+56946 EMSY EMSY, BRCA2 interacting transcriptional repressor protein-coding 8.326 0.7781
+56947 MFF mitochondrial fission factor protein-coding 10.31 0.5302
+56948 SDR39U1 short chain dehydrogenase/reductase family 39U member 1 protein-coding 9.354 0.7914
+56949 XAB2 XPA binding protein 2 protein-coding 10.42 0.6315
+5695 PSMB7 proteasome subunit beta 7 protein-coding 11.19 0.6331
+56950 SMYD2 SET and MYND domain containing 2 protein-coding 9.502 0.8216
+56951 C5orf15 chromosome 5 open reading frame 15 protein-coding 10.6 0.6622
56952 PRTFDC1 phosphoribosyl transferase domain containing 1 protein-coding 6.885 1.721
56953 NT5M 5',3'-nucleotidase, mitochondrial protein-coding 5.903 1.55
-56954 NIT2 nitrilase family member 2 protein-coding 9.681 0.8234
-56957 OTUD7B OTU deubiquitinase 7B protein-coding 9.515 0.7131
-5696 PSMB8 proteasome subunit beta 8 protein-coding 10.86 1.092
-56961 SHD Src homology 2 domain containing transforming protein D protein-coding 2.727 3.229
-56963 RGMA repulsive guidance molecule BMP co-receptor a protein-coding 7.541 2.639
-56964 WDR93 WD repeat domain 93 protein-coding 3.214 1.672
-56965 PARP6 poly(ADP-ribose) polymerase family member 6 protein-coding 9.458 0.9982
-56967 C14orf132 chromosome 14 open reading frame 132 protein-coding 7.975 2.243
-56970 ATXN7L3 ataxin 7 like 3 protein-coding 10.55 0.5158
-56971 CEACAM19 carcinoembryonic antigen related cell adhesion molecule 19 protein-coding 6.249 1.617
-56975 FAM20C FAM20C, golgi associated secretory pathway kinase protein-coding 9.83 1.311
-56977 STOX2 storkhead box 2 protein-coding 4.822 1.812
-56978 PRDM8 PR/SET domain 8 protein-coding 5.054 2.062
+56954 NIT2 nitrilase family member 2 protein-coding 9.68 0.8234
+56957 OTUD7B OTU deubiquitinase 7B protein-coding 9.515 0.7129
+5696 PSMB8 proteasome subunit beta 8 protein-coding 10.85 1.091
+56961 SHD Src homology 2 domain containing transforming protein D protein-coding 2.727 3.228
+56963 RGMA repulsive guidance molecule BMP co-receptor a protein-coding 7.542 2.638
+56964 WDR93 WD repeat domain 93 protein-coding 3.214 1.671
+56965 PARP6 poly(ADP-ribose) polymerase family member 6 protein-coding 9.459 0.9978
+56967 C14orf132 chromosome 14 open reading frame 132 protein-coding 7.977 2.243
+56970 ATXN7L3 ataxin 7 like 3 protein-coding 10.55 0.5157
+56971 CEACAM19 carcinoembryonic antigen related cell adhesion molecule 19 protein-coding 6.249 1.616
+56975 FAM20C FAM20C, golgi associated secretory pathway kinase protein-coding 9.831 1.311
+56977 STOX2 storkhead box 2 protein-coding 4.823 1.811
+56978 PRDM8 PR/SET domain 8 protein-coding 5.057 2.063
5698 PSMB9 proteasome subunit beta 9 protein-coding 9.389 1.44
-56980 PRDM10 PR/SET domain 10 protein-coding 7.821 0.5561
-56981 PRDM11 PR/SET domain 11 protein-coding 4.358 1.112
-56983 POGLUT1 protein O-glucosyltransferase 1 protein-coding 8.577 0.5977
-56984 PSMG2 proteasome assembly chaperone 2 protein-coding 9.937 0.5099
-56985 ADPRM ADP-ribose/CDP-alcohol diphosphatase, manganese dependent protein-coding 7.101 0.7584
-56986 DTWD1 DTW domain containing 1 protein-coding 8.15 0.5876
-56987 BBX BBX, HMG-box containing protein-coding 10.3 0.7841
-5699 PSMB10 proteasome subunit beta 10 protein-coding 10.18 1.077
+56980 PRDM10 PR/SET domain 10 protein-coding 7.822 0.5559
+56981 PRDM11 PR/SET domain 11 protein-coding 4.359 1.112
+56983 POGLUT1 protein O-glucosyltransferase 1 protein-coding 8.577 0.5976
+56984 PSMG2 proteasome assembly chaperone 2 protein-coding 9.937 0.5097
+56985 ADPRM ADP-ribose/CDP-alcohol diphosphatase, manganese dependent protein-coding 7.102 0.7586
+56986 DTWD1 DTW domain containing 1 protein-coding 8.151 0.5874
+56987 BBX BBX, HMG-box containing protein-coding 10.3 0.784
+5699 PSMB10 proteasome subunit beta 10 protein-coding 10.18 1.076
56990 CDC42SE2 CDC42 small effector 2 protein-coding 10.5 0.7478
-56992 KIF15 kinesin family member 15 protein-coding 6.867 2.016
-56993 TOMM22 translocase of outer mitochondrial membrane 22 protein-coding 10.46 0.598
+56992 KIF15 kinesin family member 15 protein-coding 6.865 2.016
+56993 TOMM22 translocase of outer mitochondrial membrane 22 protein-coding 10.45 0.5982
56994 CHPT1 choline phosphotransferase 1 protein-coding 9.711 1.308
-56995 TULP4 tubby like protein 4 protein-coding 9.586 0.7064
-56996 SLC12A9 solute carrier family 12 member 9 protein-coding 9.98 0.6465
-56997 COQ8A coenzyme Q8A protein-coding 9.982 0.9799
-56998 CTNNBIP1 catenin beta interacting protein 1 protein-coding 9.865 0.8455
+56995 TULP4 tubby like protein 4 protein-coding 9.586 0.7063
+56996 SLC12A9 solute carrier family 12 member 9 protein-coding 9.98 0.6463
+56997 COQ8A coenzyme Q8A protein-coding 9.982 0.9797
+56998 CTNNBIP1 catenin beta interacting protein 1 protein-coding 9.865 0.8456
56999 ADAMTS9 ADAM metallopeptidase with thrombospondin type 1 motif 9 protein-coding 8.21 1.717
-570 BAAT bile acid-CoA:amino acid N-acyltransferase protein-coding 2.703 3.194
-5700 PSMC1 proteasome 26S subunit, ATPase 1 protein-coding 9.219 0.6285
-57001 SDHAF3 succinate dehydrogenase complex assembly factor 3 protein-coding 7.771 0.9995
+570 BAAT bile acid-CoA:amino acid N-acyltransferase protein-coding 2.704 3.194
+5700 PSMC1 proteasome 26S subunit, ATPase 1 protein-coding 9.218 0.6285
+57001 SDHAF3 succinate dehydrogenase complex assembly factor 3 protein-coding 7.77 0.9992
57002 YAE1D1 Yae1 domain containing 1 protein-coding 7.717 0.6545
-57003 CCDC47 coiled-coil domain containing 47 protein-coding 11.42 0.5985
+57003 CCDC47 coiled-coil domain containing 47 protein-coding 11.42 0.5984
57007 ACKR3 atypical chemokine receptor 3 protein-coding 9.067 1.666
-5701 PSMC2 proteasome 26S subunit, ATPase 2 protein-coding 10.85 0.4996
+5701 PSMC2 proteasome 26S subunit, ATPase 2 protein-coding 10.85 0.4998
57010 CABP4 calcium binding protein 4 protein-coding 3.099 1.832
-57017 COQ9 coenzyme Q9 protein-coding 10.17 0.736
+57017 COQ9 coenzyme Q9 protein-coding 10.17 0.7358
57018 CCNL1 cyclin L1 protein-coding 10.16 0.7547
-57019 CIAPIN1 cytokine induced apoptosis inhibitor 1 protein-coding 9.883 0.5605
-5702 PSMC3 proteasome 26S subunit, ATPase 3 protein-coding 11.31 0.5449
-57020 VPS35L VPS35 endosomal protein sorting factor like protein-coding 9.881 0.928
-57026 PDXP pyridoxal phosphatase protein-coding 8.496 1.143
+57019 CIAPIN1 cytokine induced apoptosis inhibitor 1 protein-coding 9.883 0.5606
+5702 PSMC3 proteasome 26S subunit, ATPase 3 protein-coding 11.3 0.5449
+57020 VPS35L VPS35 endosomal protein sorting factor like protein-coding 9.881 0.9276
+57026 PDXP pyridoxal phosphatase protein-coding 8.495 1.144
57030 SLC17A7 solute carrier family 17 member 7 protein-coding 3.741 2.437
-57035 RSRP1 arginine and serine rich protein 1 protein-coding 9.027 1.051
-57037 ANKMY2 ankyrin repeat and MYND domain containing 2 protein-coding 8.755 0.682
-57038 RARS2 arginyl-tRNA synthetase 2, mitochondrial protein-coding 9.2 0.5552
-5704 PSMC4 proteasome 26S subunit, ATPase 4 protein-coding 11.01 0.576
-57045 TWSG1 twisted gastrulation BMP signaling modulator 1 protein-coding 9.94 1.027
-57048 PLSCR3 phospholipid scramblase 3 protein-coding 9.368 0.811
-5705 PSMC5 proteasome 26S subunit, ATPase 5 protein-coding 11.54 0.5401
+57035 RSRP1 arginine and serine rich protein 1 protein-coding 9.028 1.051
+57037 ANKMY2 ankyrin repeat and MYND domain containing 2 protein-coding 8.756 0.6817
+57038 RARS2 arginyl-tRNA synthetase 2, mitochondrial protein-coding 9.2 0.5549
+5704 PSMC4 proteasome 26S subunit, ATPase 4 protein-coding 11.01 0.5761
+57045 TWSG1 twisted gastrulation BMP signaling modulator 1 protein-coding 9.941 1.027
+57048 PLSCR3 phospholipid scramblase 3 protein-coding 9.368 0.8106
+5705 PSMC5 proteasome 26S subunit, ATPase 5 protein-coding 11.54 0.54
57050 UTP3 UTP3, small subunit processome component protein-coding 9.422 0.4623
-57053 CHRNA10 cholinergic receptor nicotinic alpha 10 subunit protein-coding 3.484 1.022
-5706 PSMC6 proteasome 26S subunit, ATPase 6 protein-coding 10.17 0.5209
-57060 PCBP4 poly(rC) binding protein 4 protein-coding 9.343 1.109
-57061 HYMAI hydatidiform mole associated and imprinted (non-protein coding) ncRNA 1.34 1.16
+57053 CHRNA10 cholinergic receptor nicotinic alpha 10 subunit protein-coding 3.484 1.021
+5706 PSMC6 proteasome 26S subunit, ATPase 6 protein-coding 10.17 0.5207
+57060 PCBP4 poly(rC) binding protein 4 protein-coding 9.343 1.108
+57061 HYMAI hydatidiform mole associated and imprinted (non-protein coding) ncRNA 1.341 1.16
57062 DDX24 DEAD-box helicase 24 protein-coding 11.6 0.5729
5707 PSMD1 proteasome 26S subunit, non-ATPase 1 protein-coding 11.1 0.5293
-5708 PSMD2 proteasome 26S subunit, non-ATPase 2 protein-coding 12.2 0.7006
-57082 KNL1 kinetochore scaffold 1 protein-coding 6.482 2.124
+5708 PSMD2 proteasome 26S subunit, non-ATPase 2 protein-coding 12.19 0.7006
+57082 KNL1 kinetochore scaffold 1 protein-coding 6.48 2.124
57085 AGTRAP angiotensin II receptor associated protein protein-coding 9.919 1.028
-57088 PLSCR4 phospholipid scramblase 4 protein-coding 8.256 1.451
-57089 ENTPD7 ectonucleoside triphosphate diphosphohydrolase 7 protein-coding 8.378 1.249
-5709 PSMD3 proteasome 26S subunit, non-ATPase 3 protein-coding 11.54 0.6396
-57091 CASS4 Cas scaffold protein family member 4 protein-coding 4.319 1.588
-57092 PCNP PEST proteolytic signal containing nuclear protein protein-coding 11.15 0.514
-57094 CPA6 carboxypeptidase A6 protein-coding 2.336 2.288
-57095 PITHD1 PITH domain containing 1 protein-coding 10.06 0.6057
+57088 PLSCR4 phospholipid scramblase 4 protein-coding 8.257 1.452
+57089 ENTPD7 ectonucleoside triphosphate diphosphohydrolase 7 protein-coding 8.378 1.248
+5709 PSMD3 proteasome 26S subunit, non-ATPase 3 protein-coding 11.54 0.6397
+57091 CASS4 Cas scaffold protein family member 4 protein-coding 4.32 1.589
+57092 PCNP PEST proteolytic signal containing nuclear protein protein-coding 11.15 0.5139
+57094 CPA6 carboxypeptidase A6 protein-coding 2.337 2.289
+57095 PITHD1 PITH domain containing 1 protein-coding 10.06 0.6056
57096 RPGRIP1 RPGR interacting protein 1 protein-coding 2.684 1.348
-57097 PARP11 poly(ADP-ribose) polymerase family member 11 protein-coding 7.751 0.9565
-57099 AVEN apoptosis and caspase activation inhibitor protein-coding 7.846 0.7389
-571 BACH1 BTB domain and CNC homolog 1 protein-coding 9.746 0.837
+57097 PARP11 poly(ADP-ribose) polymerase family member 11 protein-coding 7.752 0.9563
+57099 AVEN apoptosis and caspase activation inhibitor protein-coding 7.846 0.7387
+571 BACH1 BTB domain and CNC homolog 1 protein-coding 9.746 0.8371
5710 PSMD4 proteasome 26S subunit, non-ATPase 4 protein-coding 11.64 0.6244
-57101 ANO2 anoctamin 2 protein-coding 3.509 1.548
-57102 C12orf4 chromosome 12 open reading frame 4 protein-coding 8.532 0.5877
-57103 TIGAR TP53 induced glycolysis regulatory phosphatase protein-coding 8.43 0.8223
-57104 PNPLA2 patatin like phospholipase domain containing 2 protein-coding 10.56 0.8122
-57105 CYSLTR2 cysteinyl leukotriene receptor 2 protein-coding 3.836 2.16
+57101 ANO2 anoctamin 2 protein-coding 3.51 1.548
+57102 C12orf4 chromosome 12 open reading frame 4 protein-coding 8.532 0.5875
+57103 TIGAR TP53 induced glycolysis regulatory phosphatase protein-coding 8.429 0.8225
+57104 PNPLA2 patatin like phospholipase domain containing 2 protein-coding 10.56 0.812
+57105 CYSLTR2 cysteinyl leukotriene receptor 2 protein-coding 3.838 2.16
57106 NAT14 N-acetyltransferase 14 (putative) protein-coding 8.305 1.333
-57107 PDSS2 decaprenyl diphosphate synthase subunit 2 protein-coding 8.616 0.6695
-57109 REXO4 REX4 homolog, 3'-5' exonuclease protein-coding 9.446 0.5538
-5711 PSMD5 proteasome 26S subunit, non-ATPase 5 protein-coding 9.603 0.7061
-57111 RAB25 RAB25, member RAS oncogene family protein-coding 8.316 4.467
-57116 ZNF695 zinc finger protein 695 protein-coding 4.164 2.156
-57117 INTS12 integrator complex subunit 12 protein-coding 8.564 0.4753
-57118 CAMK1D calcium/calmodulin dependent protein kinase ID protein-coding 6.443 1.472
-57120 GOPC golgi associated PDZ and coiled-coil motif containing protein-coding 9.813 0.5981
+57107 PDSS2 decaprenyl diphosphate synthase subunit 2 protein-coding 8.616 0.6694
+57109 REXO4 REX4 homolog, 3'-5' exonuclease protein-coding 9.446 0.5537
+5711 PSMD5 proteasome 26S subunit, non-ATPase 5 protein-coding 9.603 0.7058
+57111 RAB25 RAB25, member RAS oncogene family protein-coding 8.316 4.466
+57116 ZNF695 zinc finger protein 695 protein-coding 4.162 2.156
+57117 INTS12 integrator complex subunit 12 protein-coding 8.564 0.4752
+57118 CAMK1D calcium/calmodulin dependent protein kinase ID protein-coding 6.444 1.472
+57120 GOPC golgi associated PDZ and coiled-coil motif containing protein-coding 9.814 0.5979
57121 LPAR5 lysophosphatidic acid receptor 5 protein-coding 7.185 1.817
-57122 NUP107 nucleoporin 107 protein-coding 9.621 0.7801
+57122 NUP107 nucleoporin 107 protein-coding 9.62 0.78
57124 CD248 CD248 molecule protein-coding 8.988 1.687
57125 PLXDC1 plexin domain containing 1 protein-coding 8.046 1.35
-57126 CD177 CD177 molecule protein-coding 3.934 3.009
-57128 LYRM4 LYR motif containing 4 protein-coding 8.658 0.6737
-57129 MRPL47 mitochondrial ribosomal protein L47 protein-coding 9.455 0.7247
+57126 CD177 CD177 molecule protein-coding 3.935 3.011
+57128 LYRM4 LYR motif containing 4 protein-coding 8.657 0.6736
+57129 MRPL47 mitochondrial ribosomal protein L47 protein-coding 9.454 0.7249
5713 PSMD7 proteasome 26S subunit, non-ATPase 7 protein-coding 10.91 0.5843
-57130 ATP13A1 ATPase 13A1 protein-coding 10.86 0.5411
-57132 CHMP1B charged multivesicular body protein 1B protein-coding 10.78 0.5956
-57134 MAN1C1 mannosidase alpha class 1C member 1 protein-coding 7.946 1.811
+57130 ATP13A1 ATPase 13A1 protein-coding 10.86 0.541
+57132 CHMP1B charged multivesicular body protein 1B protein-coding 10.78 0.5954
+57134 MAN1C1 mannosidase alpha class 1C member 1 protein-coding 7.947 1.811
57136 APMAP adipocyte plasma membrane associated protein protein-coding 11.7 0.7208
57139 RGL3 ral guanine nucleotide dissociation stimulator like 3 protein-coding 6.971 2.665
-5714 PSMD8 proteasome 26S subunit, non-ATPase 8 protein-coding 11.57 0.5594
+5714 PSMD8 proteasome 26S subunit, non-ATPase 8 protein-coding 11.57 0.5595
57140 RNPEPL1 arginyl aminopeptidase like 1 protein-coding 10.91 0.7222
-57142 RTN4 reticulon 4 protein-coding 12.41 0.6992
-57143 ADCK1 aarF domain containing kinase 1 protein-coding 7.713 0.6995
+57142 RTN4 reticulon 4 protein-coding 12.41 0.6989
+57143 ADCK1 aarF domain containing kinase 1 protein-coding 7.713 0.6993
57146 TMEM159 transmembrane protein 159 protein-coding 9.184 1.507
-57147 SCYL3 SCY1 like pseudokinase 3 protein-coding 8.277 0.6467
-57148 RALGAPB Ral GTPase activating protein non-catalytic beta subunit protein-coding 10.67 0.5814
-57149 LYRM1 LYR motif containing 1 protein-coding 9.027 0.7361
-5715 PSMD9 proteasome 26S subunit, non-ATPase 9 protein-coding 9.907 0.5234
-57150 SMIM8 small integral membrane protein 8 protein-coding 6.833 0.7145
-57153 SLC44A2 solute carrier family 44 member 2 protein-coding 11.9 0.8874
-57154 SMURF1 SMAD specific E3 ubiquitin protein ligase 1 protein-coding 9.981 0.7662
-57156 TMEM63C transmembrane protein 63C protein-coding 5.61 2.836
-57157 PHTF2 putative homeodomain transcription factor 2 protein-coding 8.993 0.852
+57147 SCYL3 SCY1 like pseudokinase 3 protein-coding 8.277 0.6465
+57148 RALGAPB Ral GTPase activating protein non-catalytic beta subunit protein-coding 10.67 0.5811
+57149 LYRM1 LYR motif containing 1 protein-coding 9.027 0.7358
+5715 PSMD9 proteasome 26S subunit, non-ATPase 9 protein-coding 9.907 0.5232
+57150 SMIM8 small integral membrane protein 8 protein-coding 6.833 0.7144
+57153 SLC44A2 solute carrier family 44 member 2 protein-coding 11.9 0.8872
+57154 SMURF1 SMAD specific E3 ubiquitin protein ligase 1 protein-coding 9.981 0.7661
+57156 TMEM63C transmembrane protein 63C protein-coding 5.611 2.836
+57157 PHTF2 putative homeodomain transcription factor 2 protein-coding 8.993 0.8521
57159 TRIM54 tripartite motif containing 54 protein-coding 2.8 2.558
-5716 PSMD10 proteasome 26S subunit, non-ATPase 10 protein-coding 9.975 0.5215
-57161 PELI2 pellino E3 ubiquitin protein ligase family member 2 protein-coding 7.495 1.545
+5716 PSMD10 proteasome 26S subunit, non-ATPase 10 protein-coding 9.974 0.5216
+57161 PELI2 pellino E3 ubiquitin protein ligase family member 2 protein-coding 7.496 1.544
57162 PELI1 pellino E3 ubiquitin protein ligase 1 protein-coding 9.522 1.087
-57165 GJC2 gap junction protein gamma 2 protein-coding 5.07 1.57
-57167 SALL4 spalt like transcription factor 4 protein-coding 4.515 2.227
+57165 GJC2 gap junction protein gamma 2 protein-coding 5.071 1.57
+57167 SALL4 spalt like transcription factor 4 protein-coding 4.516 2.227
57168 ASPHD2 aspartate beta-hydroxylase domain containing 2 protein-coding 6.825 1.328
-57169 ZNFX1 zinc finger NFX1-type containing 1 protein-coding 10.69 0.6959
+57169 ZNFX1 zinc finger NFX1-type containing 1 protein-coding 10.69 0.6957
5717 PSMD11 proteasome 26S subunit, non-ATPase 11 protein-coding 10.27 0.7086
57171 DOLPP1 dolichyldiphosphatase 1 protein-coding 8.869 0.6752
57175 CORO1B coronin 1B protein-coding 11.24 0.7562
-57176 VARS2 valyl-tRNA synthetase 2, mitochondrial protein-coding 9.725 0.6727
-57178 ZMIZ1 zinc finger MIZ-type containing 1 protein-coding 11.41 0.8739
-57179 KIAA1191 KIAA1191 protein-coding 11.14 0.5778
+57176 VARS2 valyl-tRNA synthetase 2, mitochondrial protein-coding 9.724 0.6726
+57178 ZMIZ1 zinc finger MIZ-type containing 1 protein-coding 11.41 0.8736
+57179 KIAA1191 KIAA1191 protein-coding 11.14 0.5777
5718 PSMD12 proteasome 26S subunit, non-ATPase 12 protein-coding 9.734 0.6558
-57180 ACTR3B ARP3 actin related protein 3 homolog B protein-coding 7.513 0.9001
+57180 ACTR3B ARP3 actin related protein 3 homolog B protein-coding 7.513 0.9003
57181 SLC39A10 solute carrier family 39 member 10 protein-coding 9.44 1.102
57182 ANKRD50 ankyrin repeat domain 50 protein-coding 9.415 1.06
-57184 FAM219B family with sequence similarity 219 member B protein-coding 9.963 0.738
-57185 NIPAL3 NIPA like domain containing 3 protein-coding 9.762 1.094
-57186 RALGAPA2 Ral GTPase activating protein catalytic alpha subunit 2 protein-coding 8.364 1.646
-57187 THOC2 THO complex 2 protein-coding 10.27 0.648
-57188 ADAMTSL3 ADAMTS like 3 protein-coding 6.013 2.256
-57189 KIAA1147 KIAA1147 protein-coding 9.976 0.9878
-5719 PSMD13 proteasome 26S subunit, non-ATPase 13 protein-coding 11.25 0.5559
-57190 SELENON selenoprotein N protein-coding 11.55 0.7646
-57191 VN1R1 vomeronasal 1 receptor 1 protein-coding 3.467 1.333
-57192 MCOLN1 mucolipin 1 protein-coding 8.976 0.7166
-57194 ATP10A ATPase phospholipid transporting 10A (putative) protein-coding 7.166 1.791
-57198 ATP8B2 ATPase phospholipid transporting 8B2 protein-coding 9.271 1.345
-572 BAD BCL2 associated agonist of cell death protein-coding 9.932 0.7702
-5720 PSME1 proteasome activator subunit 1 protein-coding 11.77 0.7383
-57205 ATP10D ATPase phospholipid transporting 10D (putative) protein-coding 8.708 1.169
-57209 ZNF248 zinc finger protein 248 protein-coding 8.185 0.8104
-5721 PSME2 proteasome activator subunit 2 protein-coding 11.12 0.935
+57184 FAM219B family with sequence similarity 219 member B protein-coding 9.964 0.7378
+57185 NIPAL3 NIPA like domain containing 3 protein-coding 9.763 1.095
+57186 RALGAPA2 Ral GTPase activating protein catalytic alpha subunit 2 protein-coding 8.365 1.646
+57187 THOC2 THO complex 2 protein-coding 10.27 0.6477
+57188 ADAMTSL3 ADAMTS like 3 protein-coding 6.016 2.257
+57189 KIAA1147 KIAA1147 protein-coding 9.976 0.9874
+5719 PSMD13 proteasome 26S subunit, non-ATPase 13 protein-coding 11.25 0.556
+57190 SELENON selenoprotein N protein-coding 11.55 0.7645
+57191 VN1R1 vomeronasal 1 receptor 1 protein-coding 3.468 1.333
+57192 MCOLN1 mucolipin 1 protein-coding 8.976 0.7168
+57194 ATP10A ATPase phospholipid transporting 10A (putative) protein-coding 7.167 1.791
+57198 ATP8B2 ATPase phospholipid transporting 8B2 protein-coding 9.273 1.345
+572 BAD BCL2 associated agonist of cell death protein-coding 9.932 0.7699
+5720 PSME1 proteasome activator subunit 1 protein-coding 11.77 0.7381
+57205 ATP10D ATPase phospholipid transporting 10D (putative) protein-coding 8.709 1.169
+57209 ZNF248 zinc finger protein 248 protein-coding 8.186 0.8103
+5721 PSME2 proteasome activator subunit 2 protein-coding 11.12 0.9349
57210 SLC45A4 solute carrier family 45 member 4 protein-coding 8.978 1.087
-57211 ADGRG6 adhesion G protein-coupled receptor G6 protein-coding 8.031 2.193
-57212 TP73-AS1 TP73 antisense RNA 1 ncRNA 8.434 1.307
+57211 ADGRG6 adhesion G protein-coupled receptor G6 protein-coding 8.032 2.193
+57212 TP73-AS1 TP73 antisense RNA 1 ncRNA 8.435 1.307
57213 SPRYD7 SPRY domain containing 7 protein-coding 8.24 0.6817
-57214 CEMIP cell migration inducing hyaluronidase 1 protein-coding 7.506 2.744
-57215 THAP11 THAP domain containing 11 protein-coding 9.397 0.4788
-57216 VANGL2 VANGL planar cell polarity protein 2 protein-coding 8.911 2.266
-57217 TTC7A tetratricopeptide repeat domain 7A protein-coding 9.842 0.8707
-57221 ARFGEF3 ARFGEF family member 3 protein-coding 7.455 2.616
+57214 CEMIP cell migration inducing hyaluronidase 1 protein-coding 7.505 2.744
+57215 THAP11 THAP domain containing 11 protein-coding 9.397 0.4786
+57216 VANGL2 VANGL planar cell polarity protein 2 protein-coding 8.911 2.265
+57217 TTC7A tetratricopeptide repeat domain 7A protein-coding 9.843 0.8705
+57221 ARFGEF3 ARFGEF family member 3 protein-coding 7.457 2.616
57222 ERGIC1 endoplasmic reticulum-golgi intermediate compartment 1 protein-coding 12.12 0.9328
-57223 PPP4R3B protein phosphatase 4 regulatory subunit 3B protein-coding 10.76 0.5977
-57224 NHSL1 NHS like 1 protein-coding 8.721 1.421
-57226 LYRM2 LYR motif containing 2 protein-coding 9.678 0.5493
-57228 SMAGP small cell adhesion glycoprotein protein-coding 7.87 1.765
-5723 PSPH phosphoserine phosphatase protein-coding 8.485 0.9114
-57231 SNX14 sorting nexin 14 protein-coding 10.04 0.5939
-57232 ZNF630 zinc finger protein 630 protein-coding 5.672 1.159
-5724 PTAFR platelet activating factor receptor protein-coding 6.094 1.812
-5725 PTBP1 polypyrimidine tract binding protein 1 protein-coding 12.44 0.5284
-5727 PTCH1 patched 1 protein-coding 8.305 1.513
-5728 PTEN phosphatase and tensin homolog protein-coding 10.57 0.687
-57282 SLC4A10 solute carrier family 4 member 10 protein-coding 2.162 2.412
-5729 PTGDR prostaglandin D2 receptor protein-coding 3.064 1.514
+57223 PPP4R3B protein phosphatase 4 regulatory subunit 3B protein-coding 10.76 0.5974
+57224 NHSL1 NHS like 1 protein-coding 8.72 1.421
+57226 LYRM2 LYR motif containing 2 protein-coding 9.678 0.5494
+57228 SMAGP small cell adhesion glycoprotein protein-coding 7.87 1.764
+5723 PSPH phosphoserine phosphatase protein-coding 8.485 0.9113
+57231 SNX14 sorting nexin 14 protein-coding 10.04 0.5938
+57232 ZNF630 zinc finger protein 630 protein-coding 5.672 1.158
+5724 PTAFR platelet activating factor receptor protein-coding 6.095 1.813
+5725 PTBP1 polypyrimidine tract binding protein 1 protein-coding 12.44 0.5282
+5727 PTCH1 patched 1 protein-coding 8.307 1.513
+5728 PTEN phosphatase and tensin homolog protein-coding 10.57 0.6869
+57282 SLC4A10 solute carrier family 4 member 10 protein-coding 2.164 2.413
+5729 PTGDR prostaglandin D2 receptor protein-coding 3.066 1.515
57291 DANCR differentiation antagonizing non-protein coding RNA ncRNA 9.427 1.109
-573 BAG1 BCL2 associated athanogene 1 protein-coding 10.58 0.7662
-5730 PTGDS prostaglandin D2 synthase protein-coding 8.541 2.843
-5731 PTGER1 prostaglandin E receptor 1 protein-coding 2.172 1.671
-5732 PTGER2 prostaglandin E receptor 2 protein-coding 5.321 2.011
-57325 KAT14 lysine acetyltransferase 14 protein-coding 9.39 0.5115
-57326 PBXIP1 PBX homeobox interacting protein 1 protein-coding 11.67 0.9704
-5733 PTGER3 prostaglandin E receptor 3 protein-coding 5.532 2.736
-57332 CBX8 chromobox 8 protein-coding 7.397 0.791
-57333 RCN3 reticulocalbin 3 protein-coding 8.625 1.567
-57335 ZNF286A zinc finger protein 286A protein-coding 7.919 0.8649
-57336 ZNF287 zinc finger protein 287 protein-coding 6.577 1.356
-57337 SENP7 SUMO specific peptidase 7 protein-coding 8.349 0.8439
-57338 JPH3 junctophilin 3 protein-coding 3.516 2.738
-5734 PTGER4 prostaglandin E receptor 4 protein-coding 7.347 1.592
-57343 ZNF304 zinc finger protein 304 protein-coding 7.924 1.088
-57348 TTYH1 tweety family member 1 protein-coding 4.407 3.284
-5737 PTGFR prostaglandin F receptor protein-coding 4.549 2.382
+573 BAG1 BCL2 associated athanogene 1 protein-coding 10.58 0.766
+5730 PTGDS prostaglandin D2 synthase protein-coding 8.544 2.844
+5731 PTGER1 prostaglandin E receptor 1 protein-coding 2.173 1.671
+5732 PTGER2 prostaglandin E receptor 2 protein-coding 5.323 2.012
+57325 KAT14 lysine acetyltransferase 14 protein-coding 9.391 0.5114
+57326 PBXIP1 PBX homeobox interacting protein 1 protein-coding 11.67 0.9703
+5733 PTGER3 prostaglandin E receptor 3 protein-coding 5.533 2.736
+57332 CBX8 chromobox 8 protein-coding 7.396 0.7913
+57333 RCN3 reticulocalbin 3 protein-coding 8.625 1.566
+57335 ZNF286A zinc finger protein 286A protein-coding 7.919 0.8646
+57336 ZNF287 zinc finger protein 287 protein-coding 6.578 1.356
+57337 SENP7 SUMO specific peptidase 7 protein-coding 8.35 0.844
+57338 JPH3 junctophilin 3 protein-coding 3.516 2.737
+5734 PTGER4 prostaglandin E receptor 4 protein-coding 7.349 1.593
+57343 ZNF304 zinc finger protein 304 protein-coding 7.925 1.087
+57348 TTYH1 tweety family member 1 protein-coding 4.407 3.283
+5737 PTGFR prostaglandin F receptor protein-coding 4.552 2.383
5738 PTGFRN prostaglandin F2 receptor inhibitor protein-coding 10.96 1.299
-57380 MRS2 MRS2, magnesium transporter protein-coding 9.408 0.6189
-57381 RHOJ ras homolog family member J protein-coding 6.699 1.387
-5739 PTGIR prostaglandin I2 receptor protein-coding 5.166 1.624
+57380 MRS2 MRS2, magnesium transporter protein-coding 9.408 0.6186
+57381 RHOJ ras homolog family member J protein-coding 6.7 1.387
+5739 PTGIR prostaglandin I2 receptor protein-coding 5.167 1.625
57393 CLTRN collectrin, amino acid transport regulator protein-coding 5.03 2.397
-57396 CLK4 CDC like kinase 4 protein-coding 8.445 0.8393
-5740 PTGIS prostaglandin I2 synthase protein-coding 7.159 2.581
-574028 CLLU1 chronic lymphocytic leukemia up-regulated 1 ncRNA 1.025 1.108
-574029 DUSP5P1 dual specificity phosphatase 5 pseudogene 1 pseudo 2.707 1.862
-57403 RAB22A RAB22A, member RAS oncogene family protein-coding 10.33 0.5378
+57396 CLK4 CDC like kinase 4 protein-coding 8.446 0.8394
+5740 PTGIS prostaglandin I2 synthase protein-coding 7.161 2.581
+574028 CLLU1 chronic lymphocytic leukemia up-regulated 1 ncRNA 1.026 1.108
+574029 DUSP5P1 dual specificity phosphatase 5 pseudogene 1 pseudo 2.706 1.861
+57403 RAB22A RAB22A, member RAS oncogene family protein-coding 10.33 0.5377
57404 CYP20A1 cytochrome P450 family 20 subfamily A member 1 protein-coding 9.036 0.5255
-574040 SNORA6 small nucleolar RNA, H/ACA box 6 snoRNA 0.1461 0.4463
-57405 SPC25 SPC25, NDC80 kinetochore complex component protein-coding 6.307 1.831
+574040 SNORA6 small nucleolar RNA, H/ACA box 6 snoRNA 0.146 0.4463
+57405 SPC25 SPC25, NDC80 kinetochore complex component protein-coding 6.305 1.832
57406 ABHD6 abhydrolase domain containing 6 protein-coding 7.904 1.22
-57407 NMRAL1 NmrA like redox sensor 1 protein-coding 9.699 0.8662
-57409 MIF4GD MIF4G domain containing protein-coding 8.77 0.6468
-57410 SCYL1 SCY1 like pseudokinase 1 protein-coding 11.02 0.4942
-57412 AS3MT arsenite methyltransferase protein-coding 7.221 1.947
-57414 RHBDD2 rhomboid domain containing 2 protein-coding 11.28 0.8611
-57415 C3orf14 chromosome 3 open reading frame 14 protein-coding 6.678 1.943
+57407 NMRAL1 NmrA like redox sensor 1 protein-coding 9.699 0.866
+57409 MIF4GD MIF4G domain containing protein-coding 8.769 0.6467
+57410 SCYL1 SCY1 like pseudokinase 1 protein-coding 11.02 0.4941
+57412 AS3MT arsenite methyltransferase protein-coding 7.221 1.946
+57414 RHBDD2 rhomboid domain containing 2 protein-coding 11.28 0.8613
+57415 C3orf14 chromosome 3 open reading frame 14 protein-coding 6.678 1.942
57418 WDR18 WD repeat domain 18 protein-coding 9.515 0.7401
-57419 SLC24A3 solute carrier family 24 member 3 protein-coding 7.034 2.271
-5742 PTGS1 prostaglandin-endoperoxide synthase 1 protein-coding 8.436 1.798
-5743 PTGS2 prostaglandin-endoperoxide synthase 2 protein-coding 7.009 2.715
-5744 PTHLH parathyroid hormone like hormone protein-coding 6.118 2.931
-57446 NDRG3 NDRG family member 3 protein-coding 10.16 0.7447
-57447 NDRG2 NDRG family member 2 protein-coding 10.55 1.754
-57448 BIRC6 baculoviral IAP repeat containing 6 protein-coding 10.75 0.6871
-57449 PLEKHG5 pleckstrin homology and RhoGEF domain containing G5 protein-coding 8.54 1.314
-5745 PTH1R parathyroid hormone 1 receptor protein-coding 4.81 2.398
-57451 TENM2 teneurin transmembrane protein 2 protein-coding 5.123 3.269
-57452 GALNT16 polypeptide N-acetylgalactosaminyltransferase 16 protein-coding 6.058 2.671
-57453 DSCAML1 DS cell adhesion molecule like 1 protein-coding 3.881 3.017
-57455 REXO1 RNA exonuclease 1 homolog protein-coding 9.593 0.6231
-57456 KIAA1143 KIAA1143 protein-coding 9.255 0.5778
-57458 TMCC3 transmembrane and coiled-coil domain family 3 protein-coding 8.696 1.377
-57459 GATAD2B GATA zinc finger domain containing 2B protein-coding 9.893 0.6003
-5746 PTH2R parathyroid hormone 2 receptor protein-coding 2.799 2.612
-57460 PPM1H protein phosphatase, Mg2+/Mn2+ dependent 1H protein-coding 8.806 1.856
-57461 ISY1 ISY1 splicing factor homolog protein-coding 9.382 0.5375
+57419 SLC24A3 solute carrier family 24 member 3 protein-coding 7.035 2.27
+5742 PTGS1 prostaglandin-endoperoxide synthase 1 protein-coding 8.437 1.797
+5743 PTGS2 prostaglandin-endoperoxide synthase 2 protein-coding 7.01 2.714
+5744 PTHLH parathyroid hormone like hormone protein-coding 6.117 2.93
+57446 NDRG3 NDRG family member 3 protein-coding 10.16 0.7453
+57447 NDRG2 NDRG family member 2 protein-coding 10.55 1.753
+57448 BIRC6 baculoviral IAP repeat containing 6 protein-coding 10.75 0.687
+57449 PLEKHG5 pleckstrin homology and RhoGEF domain containing G5 protein-coding 8.541 1.314
+5745 PTH1R parathyroid hormone 1 receptor protein-coding 4.811 2.397
+57451 TENM2 teneurin transmembrane protein 2 protein-coding 5.124 3.268
+57452 GALNT16 polypeptide N-acetylgalactosaminyltransferase 16 protein-coding 6.06 2.671
+57453 DSCAML1 DS cell adhesion molecule like 1 protein-coding 3.883 3.017
+57455 REXO1 RNA exonuclease 1 homolog protein-coding 9.593 0.6229
+57456 KIAA1143 KIAA1143 protein-coding 9.256 0.5777
+57458 TMCC3 transmembrane and coiled-coil domain family 3 protein-coding 8.697 1.376
+57459 GATAD2B GATA zinc finger domain containing 2B protein-coding 9.893 0.6002
+5746 PTH2R parathyroid hormone 2 receptor protein-coding 2.798 2.611
+57460 PPM1H protein phosphatase, Mg2+/Mn2+ dependent 1H protein-coding 8.807 1.856
+57461 ISY1 ISY1 splicing factor homolog protein-coding 9.381 0.5374
57462 MYORG myogenesis regulating glycosidase (putative) protein-coding 7.933 1.553
-57463 AMIGO1 adhesion molecule with Ig like domain 1 protein-coding 6.241 1.402
-57464 STRIP2 striatin interacting protein 2 protein-coding 6.247 1.815
-57465 TBC1D24 TBC1 domain family member 24 protein-coding 8.117 0.8409
+57463 AMIGO1 adhesion molecule with Ig like domain 1 protein-coding 6.242 1.402
+57464 STRIP2 striatin interacting protein 2 protein-coding 6.246 1.815
+57465 TBC1D24 TBC1 domain family member 24 protein-coding 8.117 0.8407
57466 SCAF4 SR-related CTD associated factor 4 protein-coding 9.729 0.5162
-57468 SLC12A5 solute carrier family 12 member 5 protein-coding 2.84 2.262
-57469 PNMA8B PNMA family member 8B protein-coding 5.788 2.002
-5747 PTK2 protein tyrosine kinase 2 protein-coding 11.15 0.5897
-57470 LRRC47 leucine rich repeat containing 47 protein-coding 10.34 0.4594
-57471 ERMN ermin protein-coding 3.832 2.577
-57472 CNOT6 CCR4-NOT transcription complex subunit 6 protein-coding 9.871 0.6272
+57468 SLC12A5 solute carrier family 12 member 5 protein-coding 2.841 2.262
+57469 PNMA8B PNMA family member 8B protein-coding 5.789 2.001
+5747 PTK2 protein tyrosine kinase 2 protein-coding 11.15 0.5895
+57470 LRRC47 leucine rich repeat containing 47 protein-coding 10.34 0.4593
+57471 ERMN ermin protein-coding 3.831 2.577
+57472 CNOT6 CCR4-NOT transcription complex subunit 6 protein-coding 9.871 0.627
57473 ZNF512B zinc finger protein 512B protein-coding 9.59 1.065
-57474 ZNF490 zinc finger protein 490 protein-coding 7.734 0.6633
+57474 ZNF490 zinc finger protein 490 protein-coding 7.734 0.6635
57475 PLEKHH1 pleckstrin homology, MyTH4 and FERM domain containing H1 protein-coding 8.487 1.993
-57476 GRAMD1B GRAM domain containing 1B protein-coding 5.146 2.169
-57477 SHROOM4 shroom family member 4 protein-coding 7.83 1.499
-57478 USP31 ubiquitin specific peptidase 31 protein-coding 9.053 0.8238
-57479 PRR12 proline rich 12 protein-coding 10.06 0.6658
+57476 GRAMD1B GRAM domain containing 1B protein-coding 5.147 2.169
+57477 SHROOM4 shroom family member 4 protein-coding 7.831 1.498
+57478 USP31 ubiquitin specific peptidase 31 protein-coding 9.053 0.8237
+57479 PRR12 proline rich 12 protein-coding 10.06 0.6656
57480 PLEKHG1 pleckstrin homology and RhoGEF domain containing G1 protein-coding 8.61 1.288
-57482 KIAA1211 KIAA1211 protein-coding 6.684 2.246
-57484 RNF150 ring finger protein 150 protein-coding 5.053 2.083
-57486 NLN neurolysin protein-coding 8.31 1.022
-57488 ESYT2 extended synaptotagmin 2 protein-coding 11.32 0.6959
-57489 ODF2L outer dense fiber of sperm tails 2 like protein-coding 8.348 1.189
-57491 AHRR aryl-hydrocarbon receptor repressor protein-coding 5.194 1.511
+57482 KIAA1211 KIAA1211 protein-coding 6.685 2.246
+57484 RNF150 ring finger protein 150 protein-coding 5.055 2.084
+57486 NLN neurolysin protein-coding 8.309 1.022
+57488 ESYT2 extended synaptotagmin 2 protein-coding 11.32 0.6957
+57489 ODF2L outer dense fiber of sperm tails 2 like protein-coding 8.349 1.188
+57491 AHRR aryl-hydrocarbon receptor repressor protein-coding 5.194 1.51
57492 ARID1B AT-rich interaction domain 1B protein-coding 10.49 0.6483
57493 HEG1 heart development protein with EGF like domains 1 protein-coding 10.31 1.325
57494 RIMKLB ribosomal modification protein rimK like family member B protein-coding 8.58 1.472
57495 NWD2 NACHT and WD repeat domain containing 2 protein-coding 1.612 1.876
-57496 MKL2 MKL1/myocardin like 2 protein-coding 9.85 0.8661
-57497 LRFN2 leucine rich repeat and fibronectin type III domain containing 2 protein-coding 2.089 2.113
-57498 KIDINS220 kinase D interacting substrate 220 protein-coding 10.79 0.7968
-575 ADGRB1 adhesion G protein-coupled receptor B1 protein-coding 4.65 2.882
+57496 MKL2 MKL1/myocardin like 2 protein-coding 9.85 0.8662
+57497 LRFN2 leucine rich repeat and fibronectin type III domain containing 2 protein-coding 2.09 2.113
+57498 KIDINS220 kinase D interacting substrate 220 protein-coding 10.79 0.7965
+575 ADGRB1 adhesion G protein-coupled receptor B1 protein-coding 4.651 2.88
57501 KIAA1257 KIAA1257 protein-coding 3.849 1.853
-57502 NLGN4X neuroligin 4, X-linked protein-coding 5.905 2.444
-57504 MTA3 metastasis associated 1 family member 3 protein-coding 9.707 0.6573
-57505 AARS2 alanyl-tRNA synthetase 2, mitochondrial protein-coding 9.041 0.6051
-57506 MAVS mitochondrial antiviral signaling protein protein-coding 11.19 0.5797
-57507 ZNF608 zinc finger protein 608 protein-coding 7.968 1.677
-57508 INTS2 integrator complex subunit 2 protein-coding 8.264 0.787
+57502 NLGN4X neuroligin 4, X-linked protein-coding 5.905 2.443
+57504 MTA3 metastasis associated 1 family member 3 protein-coding 9.706 0.6571
+57505 AARS2 alanyl-tRNA synthetase 2, mitochondrial protein-coding 9.041 0.6049
+57506 MAVS mitochondrial antiviral signaling protein protein-coding 11.19 0.5796
+57507 ZNF608 zinc finger protein 608 protein-coding 7.969 1.676
+57508 INTS2 integrator complex subunit 2 protein-coding 8.264 0.7866
57509 MTUS1 microtubule associated scaffold protein 1 protein-coding 10.58 1.128
-57510 XPO5 exportin 5 protein-coding 10.31 0.681
-57511 COG6 component of oligomeric golgi complex 6 protein-coding 8.917 0.7374
-57513 CASKIN2 CASK interacting protein 2 protein-coding 9.72 0.7565
-57514 ARHGAP31 Rho GTPase activating protein 31 protein-coding 8.88 1.407
+57510 XPO5 exportin 5 protein-coding 10.3 0.6811
+57511 COG6 component of oligomeric golgi complex 6 protein-coding 8.917 0.7372
+57513 CASKIN2 CASK interacting protein 2 protein-coding 9.72 0.7567
+57514 ARHGAP31 Rho GTPase activating protein 31 protein-coding 8.881 1.408
57515 SERINC1 serine incorporator 1 protein-coding 12.06 0.9049
-57520 HECW2 HECT, C2 and WW domain containing E3 ubiquitin protein ligase 2 protein-coding 6.884 1.582
-57521 RPTOR regulatory associated protein of MTOR complex 1 protein-coding 9.88 0.5857
-57522 SRGAP1 SLIT-ROBO Rho GTPase activating protein 1 protein-coding 8.528 1.152
-57523 NYNRIN NYN domain and retroviral integrase containing protein-coding 9.047 1.475
+57520 HECW2 HECT, C2 and WW domain containing E3 ubiquitin protein ligase 2 protein-coding 6.885 1.582
+57521 RPTOR regulatory associated protein of MTOR complex 1 protein-coding 9.88 0.5855
+57522 SRGAP1 SLIT-ROBO Rho GTPase activating protein 1 protein-coding 8.529 1.152
+57523 NYNRIN NYN domain and retroviral integrase containing protein-coding 9.048 1.475
57524 CASKIN1 CASK interacting protein 1 protein-coding 4.095 2.654
-57526 PCDH19 protocadherin 19 protein-coding 5.047 2.651
-57528 KCTD16 potassium channel tetramerization domain containing 16 protein-coding 2.68 2.073
+57526 PCDH19 protocadherin 19 protein-coding 5.046 2.65
+57528 KCTD16 potassium channel tetramerization domain containing 16 protein-coding 2.682 2.075
57529 RTL9 retrotransposon Gag like 9 protein-coding 2.258 1.643
-5753 PTK6 protein tyrosine kinase 6 protein-coding 6.941 2.73
-57530 CGN cingulin protein-coding 9.311 2.327
-57531 HACE1 HECT domain and ankyrin repeat containing E3 ubiquitin protein ligase 1 protein-coding 7.649 0.8948
-57532 NUFIP2 NUFIP2, FMR1 interacting protein 2 protein-coding 11.12 0.5478
-57533 TBC1D14 TBC1 domain family member 14 protein-coding 10.77 0.8127
-57534 MIB1 mindbomb E3 ubiquitin protein ligase 1 protein-coding 10.26 0.7775
-57535 KIAA1324 KIAA1324 protein-coding 8.023 3.584
-57536 KIAA1328 KIAA1328 protein-coding 6.46 0.7673
-57537 SORCS2 sortilin related VPS10 domain containing receptor 2 protein-coding 6.716 2.381
-57538 ALPK3 alpha kinase 3 protein-coding 7.929 1.779
-57539 WDR35 WD repeat domain 35 protein-coding 8.558 0.9914
-5754 PTK7 protein tyrosine kinase 7 (inactive) protein-coding 10.84 1.636
-57540 DISP3 dispatched RND transporter family member 3 protein-coding 3.526 2.677
-57541 ZNF398 zinc finger protein 398 protein-coding 8.728 0.5372
+5753 PTK6 protein tyrosine kinase 6 protein-coding 6.941 2.729
+57530 CGN cingulin protein-coding 9.312 2.326
+57531 HACE1 HECT domain and ankyrin repeat containing E3 ubiquitin protein ligase 1 protein-coding 7.65 0.8945
+57532 NUFIP2 NUFIP2, FMR1 interacting protein 2 protein-coding 11.12 0.5476
+57533 TBC1D14 TBC1 domain family member 14 protein-coding 10.78 0.8123
+57534 MIB1 mindbomb E3 ubiquitin protein ligase 1 protein-coding 10.26 0.7773
+57535 KIAA1324 KIAA1324 protein-coding 8.026 3.584
+57536 KIAA1328 KIAA1328 protein-coding 6.461 0.7677
+57537 SORCS2 sortilin related VPS10 domain containing receptor 2 protein-coding 6.717 2.38
+57538 ALPK3 alpha kinase 3 protein-coding 7.93 1.78
+57539 WDR35 WD repeat domain 35 protein-coding 8.558 0.9912
+5754 PTK7 protein tyrosine kinase 7 (inactive) protein-coding 10.84 1.635
+57540 DISP3 dispatched RND transporter family member 3 protein-coding 3.526 2.676
+57541 ZNF398 zinc finger protein 398 protein-coding 8.728 0.5369
57542 KLHL42 kelch like family member 42 protein-coding 9.48 0.7741
-57544 TXNDC16 thioredoxin domain containing 16 protein-coding 8.137 1.2
+57544 TXNDC16 thioredoxin domain containing 16 protein-coding 8.138 1.2
57545 CC2D2A coiled-coil and C2 domain containing 2A protein-coding 7.927 1.318
-57546 PDP2 pyruvate dehyrogenase phosphatase catalytic subunit 2 protein-coding 6.915 0.9887
+57546 PDP2 pyruvate dehyrogenase phosphatase catalytic subunit 2 protein-coding 6.915 0.9884
57547 ZNF624 zinc finger protein 624 protein-coding 6.41 0.7631
-57549 IGSF9 immunoglobulin superfamily member 9 protein-coding 7.572 3.07
-57551 TAOK1 TAO kinase 1 protein-coding 7.753 1.479
+57549 IGSF9 immunoglobulin superfamily member 9 protein-coding 7.57 3.07
+57551 TAOK1 TAO kinase 1 protein-coding 7.753 1.478
57552 NCEH1 neutral cholesterol ester hydrolase 1 protein-coding 9.106 1.38
-57553 MICAL3 microtubule associated monooxygenase, calponin and LIM domain containing 3 protein-coding 10.2 0.9511
-57554 LRRC7 leucine rich repeat containing 7 protein-coding 2.113 2.327
+57553 MICAL3 microtubule associated monooxygenase, calponin and LIM domain containing 3 protein-coding 10.2 0.951
+57554 LRRC7 leucine rich repeat containing 7 protein-coding 2.115 2.328
57555 NLGN2 neuroligin 2 protein-coding 9.203 1.411
-57556 SEMA6A semaphorin 6A protein-coding 8.725 2.021
+57556 SEMA6A semaphorin 6A protein-coding 8.726 2.02
57558 USP35 ubiquitin specific peptidase 35 protein-coding 7.587 0.8445
57559 STAMBPL1 STAM binding protein like 1 protein-coding 6.952 1.343
5756 TWF1 twinfilin actin binding protein 1 protein-coding 11.01 0.7072
-57560 IFT80 intraflagellar transport 80 protein-coding 9.036 0.8514
-57561 ARRDC3 arrestin domain containing 3 protein-coding 10.71 1.114
-57562 CEP126 centrosomal protein 126 protein-coding 6.515 1.7
-57563 KLHL8 kelch like family member 8 protein-coding 8.334 0.8429
-57565 KLHL14 kelch like family member 14 protein-coding 3.622 2.796
-57567 ZNF319 zinc finger protein 319 protein-coding 8.393 0.7515
+57560 IFT80 intraflagellar transport 80 protein-coding 9.037 0.8513
+57561 ARRDC3 arrestin domain containing 3 protein-coding 10.71 1.113
+57562 CEP126 centrosomal protein 126 protein-coding 6.517 1.7
+57563 KLHL8 kelch like family member 8 protein-coding 8.334 0.8428
+57565 KLHL14 kelch like family member 14 protein-coding 3.624 2.796
+57567 ZNF319 zinc finger protein 319 protein-coding 8.393 0.7513
57568 SIPA1L2 signal induced proliferation associated 1 like 2 protein-coding 9.548 1.245
-57569 ARHGAP20 Rho GTPase activating protein 20 protein-coding 5.155 1.964
-5757 PTMA prothymosin alpha protein-coding 14 0.8159
-57570 TRMT5 tRNA methyltransferase 5 protein-coding 8.761 0.5214
+57569 ARHGAP20 Rho GTPase activating protein 20 protein-coding 5.157 1.964
+5757 PTMA prothymosin alpha protein-coding 13.99 0.8157
+57570 TRMT5 tRNA methyltransferase 5 protein-coding 8.761 0.5213
57571 CARNS1 carnosine synthase 1 protein-coding 5.402 2.246
-57572 DOCK6 dedicator of cytokinesis 6 protein-coding 9.81 0.8997
-57573 ZNF471 zinc finger protein 471 protein-coding 5.874 2.002
-57574 MARCH4 membrane associated ring-CH-type finger 4 protein-coding 3.172 2.274
-57576 KIF17 kinesin family member 17 protein-coding 4.972 1.454
-57577 CCDC191 coiled-coil domain containing 191 protein-coding 7.243 1.08
-57578 UNC79 unc-79 homolog, NALCN channel complex subunit protein-coding 3.372 2.455
-57579 FAM135A family with sequence similarity 135 member A protein-coding 8.555 1.284
-57580 PREX1 phosphatidylinositol-3,4,5-trisphosphate dependent Rac exchange factor 1 protein-coding 9.934 1.459
-57582 KCNT1 potassium sodium-activated channel subfamily T member 1 protein-coding 1.973 2.171
-57583 TMEM181 transmembrane protein 181 protein-coding 10.22 0.7406
-57584 ARHGAP21 Rho GTPase activating protein 21 protein-coding 10.54 0.9063
-57585 CRAMP1 cramped chromatin regulator homolog 1 protein-coding 9.354 0.7152
-57587 CFAP97 cilia and flagella associated protein 97 protein-coding 9.703 0.7252
-57589 RIC1 RIC1 homolog, RAB6A GEF complex partner 1 protein-coding 8.954 0.7093
-57590 WDFY1 WD repeat and FYVE domain containing 1 protein-coding 10.18 0.6663
-57591 MKL1 megakaryoblastic leukemia (translocation) 1 protein-coding 10 0.5802
-57592 ZNF687 zinc finger protein 687 protein-coding 9.933 0.5742
-57593 EBF4 early B cell factor 4 protein-coding 7.794 1.713
-57594 HOMEZ homeobox and leucine zipper encoding protein-coding 8.492 0.7157
-57595 PDZD4 PDZ domain containing 4 protein-coding 6.262 2.611
-57596 BEGAIN brain enriched guanylate kinase associated protein-coding 4.403 2.11
-57597 BAHCC1 BAH domain and coiled-coil containing 1 protein-coding 8.7 1.312
-57599 WDR48 WD repeat domain 48 protein-coding 9.811 0.587
-576 ADGRB2 adhesion G protein-coupled receptor B2 protein-coding 7.254 2.497
-57600 FNIP2 folliculin interacting protein 2 protein-coding 8.656 1.462
-57602 USP36 ubiquitin specific peptidase 36 protein-coding 10.19 0.527
-57604 TRMT9B tRNA methyltransferase 9B (putative) protein-coding 5.725 2.262
+57572 DOCK6 dedicator of cytokinesis 6 protein-coding 9.81 0.8996
+57573 ZNF471 zinc finger protein 471 protein-coding 5.876 2.002
+57574 MARCH4 membrane associated ring-CH-type finger 4 protein-coding 3.172 2.275
+57576 KIF17 kinesin family member 17 protein-coding 4.973 1.454
+57577 CCDC191 coiled-coil domain containing 191 protein-coding 7.244 1.08
+57578 UNC79 unc-79 homolog, NALCN channel complex subunit protein-coding 3.374 2.455
+57579 FAM135A family with sequence similarity 135 member A protein-coding 8.556 1.284
+57580 PREX1 phosphatidylinositol-3,4,5-trisphosphate dependent Rac exchange factor 1 protein-coding 9.935 1.459
+57582 KCNT1 potassium sodium-activated channel subfamily T member 1 protein-coding 1.973 2.17
+57583 TMEM181 transmembrane protein 181 protein-coding 10.22 0.7405
+57584 ARHGAP21 Rho GTPase activating protein 21 protein-coding 10.54 0.9061
+57585 CRAMP1 cramped chromatin regulator homolog 1 protein-coding 9.354 0.7151
+57587 CFAP97 cilia and flagella associated protein 97 protein-coding 9.704 0.7249
+57589 RIC1 RIC1 homolog, RAB6A GEF complex partner 1 protein-coding 8.954 0.7092
+57590 WDFY1 WD repeat and FYVE domain containing 1 protein-coding 10.18 0.666
+57591 MKL1 megakaryoblastic leukemia (translocation) 1 protein-coding 10 0.5801
+57592 ZNF687 zinc finger protein 687 protein-coding 9.933 0.574
+57593 EBF4 early B cell factor 4 protein-coding 7.795 1.713
+57594 HOMEZ homeobox and leucine zipper encoding protein-coding 8.492 0.7154
+57595 PDZD4 PDZ domain containing 4 protein-coding 6.264 2.61
+57596 BEGAIN brain enriched guanylate kinase associated protein-coding 4.405 2.11
+57597 BAHCC1 BAH domain and coiled-coil containing 1 protein-coding 8.701 1.312
+57599 WDR48 WD repeat domain 48 protein-coding 9.811 0.5869
+576 ADGRB2 adhesion G protein-coupled receptor B2 protein-coding 7.254 2.496
+57600 FNIP2 folliculin interacting protein 2 protein-coding 8.657 1.462
+57602 USP36 ubiquitin specific peptidase 36 protein-coding 10.19 0.5268
+57604 TRMT9B tRNA methyltransferase 9B (putative) protein-coding 5.726 2.263
57605 PITPNM2 phosphatidylinositol transfer protein membrane associated 2 protein-coding 8.284 1.166
-57606 SLAIN2 SLAIN motif family member 2 protein-coding 10.12 0.6184
-57608 JCAD junctional cadherin 5 associated protein-coding 9.247 1.483
-57609 DIP2B disco interacting protein 2 homolog B protein-coding 10.34 0.843
-57610 RANBP10 RAN binding protein 10 protein-coding 9.308 0.6031
-57613 FAM234B family with sequence similarity 234 member B protein-coding 8.15 1.534
-57614 KIAA1468 KIAA1468 protein-coding 9.325 0.6645
+57606 SLAIN2 SLAIN motif family member 2 protein-coding 10.12 0.6183
+57608 JCAD junctional cadherin 5 associated protein-coding 9.248 1.483
+57609 DIP2B disco interacting protein 2 homolog B protein-coding 10.34 0.8427
+57610 RANBP10 RAN binding protein 10 protein-coding 9.308 0.6029
+57613 FAM234B family with sequence similarity 234 member B protein-coding 8.15 1.533
+57614 KIAA1468 KIAA1468 protein-coding 9.325 0.6643
57615 ZNF492 zinc finger protein 492 protein-coding 2.273 1.896
-57616 TSHZ3 teashirt zinc finger homeobox 3 protein-coding 7.524 1.512
-57617 VPS18 VPS18, CORVET/HOPS core subunit protein-coding 9.782 0.6302
-57619 SHROOM3 shroom family member 3 protein-coding 9.548 2.041
-57620 STIM2 stromal interaction molecule 2 protein-coding 9.062 0.6661
-57621 ZBTB2 zinc finger and BTB domain containing 2 protein-coding 8.712 0.6498
-57622 LRFN1 leucine rich repeat and fibronectin type III domain containing 1 protein-coding 6.033 1.738
-57623 ZFAT zinc finger and AT-hook domain containing protein-coding 7.963 0.6697
-57628 DPP10 dipeptidyl peptidase like 10 protein-coding 2.534 3.119
-5763 PTMS parathymosin protein-coding 12.45 0.9848
-57630 SH3RF1 SH3 domain containing ring finger 1 protein-coding 9.323 1.117
-57633 LRRN1 leucine rich repeat neuronal 1 protein-coding 6.301 3.145
-57634 EP400 E1A binding protein p400 protein-coding 10.44 0.5644
+57616 TSHZ3 teashirt zinc finger homeobox 3 protein-coding 7.526 1.512
+57617 VPS18 VPS18, CORVET/HOPS core subunit protein-coding 9.782 0.63
+57619 SHROOM3 shroom family member 3 protein-coding 9.549 2.04
+57620 STIM2 stromal interaction molecule 2 protein-coding 9.063 0.6659
+57621 ZBTB2 zinc finger and BTB domain containing 2 protein-coding 8.712 0.6499
+57622 LRFN1 leucine rich repeat and fibronectin type III domain containing 1 protein-coding 6.033 1.737
+57623 ZFAT zinc finger and AT-hook domain containing protein-coding 7.963 0.6694
+57628 DPP10 dipeptidyl peptidase like 10 protein-coding 2.534 3.118
+5763 PTMS parathymosin protein-coding 12.45 0.9846
+57630 SH3RF1 SH3 domain containing ring finger 1 protein-coding 9.324 1.117
+57633 LRRN1 leucine rich repeat neuronal 1 protein-coding 6.302 3.144
+57634 EP400 E1A binding protein p400 protein-coding 10.44 0.5643
57636 ARHGAP23 Rho GTPase activating protein 23 protein-coding 9.782 1.538
-57639 CCDC146 coiled-coil domain containing 146 protein-coding 7.123 1.547
-57643 ZSWIM5 zinc finger SWIM-type containing 5 protein-coding 7.036 1.798
-57644 MYH7B myosin heavy chain 7B protein-coding 4.036 1.841
-57645 POGK pogo transposable element derived with KRAB domain protein-coding 10.52 0.6445
-57646 USP28 ubiquitin specific peptidase 28 protein-coding 8.899 0.7627
+57639 CCDC146 coiled-coil domain containing 146 protein-coding 7.124 1.546
+57643 ZSWIM5 zinc finger SWIM-type containing 5 protein-coding 7.037 1.798
+57644 MYH7B myosin heavy chain 7B protein-coding 4.036 1.84
+57645 POGK pogo transposable element derived with KRAB domain protein-coding 10.52 0.6443
+57646 USP28 ubiquitin specific peptidase 28 protein-coding 8.899 0.7626
57647 DHX37 DEAH-box helicase 37 protein-coding 9.264 0.6311
57648 KIAA1522 KIAA1522 protein-coding 11.45 1.556
-57649 PHF12 PHD finger protein 12 protein-coding 10.13 0.6144
-57650 CIP2A cell proliferation regulating inhibitor of protein phosphatase 2A protein-coding 7.199 1.532
-57653 SUGT1P4-STRA6LP-CCDC180 SUGT1P4-STRA6LP-CCDC180 readthrough ncRNA 5.874 1.669
-57654 UVSSA UV stimulated scaffold protein A protein-coding 7.497 0.7921
-57655 GRAMD1A GRAM domain containing 1A protein-coding 10.45 0.8584
+57649 PHF12 PHD finger protein 12 protein-coding 10.13 0.6142
+57650 CIP2A cell proliferation regulating inhibitor of protein phosphatase 2A protein-coding 7.198 1.531
+57653 SUGT1P4-STRA6LP-CCDC180 SUGT1P4-STRA6LP-CCDC180 readthrough ncRNA 5.876 1.669
+57654 UVSSA UV stimulated scaffold protein A protein-coding 7.498 0.792
+57655 GRAMD1A GRAM domain containing 1A protein-coding 10.45 0.8583
57657 HCN3 hyperpolarization activated cyclic nucleotide gated potassium channel 3 protein-coding 6.822 1.086
-57658 CALCOCO1 calcium binding and coiled-coil domain 1 protein-coding 10.51 0.7858
-57659 ZBTB4 zinc finger and BTB domain containing 4 protein-coding 10.97 0.8469
-57661 PHRF1 PHD and ring finger domains 1 protein-coding 10.24 0.5484
-57662 CAMSAP3 calmodulin regulated spectrin associated protein family member 3 protein-coding 8.885 1.968
+57658 CALCOCO1 calcium binding and coiled-coil domain 1 protein-coding 10.51 0.7861
+57659 ZBTB4 zinc finger and BTB domain containing 4 protein-coding 10.97 0.8471
+57661 PHRF1 PHD and ring finger domains 1 protein-coding 10.24 0.5482
+57662 CAMSAP3 calmodulin regulated spectrin associated protein family member 3 protein-coding 8.886 1.967
57664 PLEKHA4 pleckstrin homology domain containing A4 protein-coding 9.093 1.443
-57665 RDH14 retinol dehydrogenase 14 protein-coding 8.604 0.4688
-57666 FBRSL1 fibrosin like 1 protein-coding 9.412 0.6881
-57669 EPB41L5 erythrocyte membrane protein band 4.1 like 5 protein-coding 8.785 1.048
+57665 RDH14 retinol dehydrogenase 14 protein-coding 8.604 0.4687
+57666 FBRSL1 fibrosin like 1 protein-coding 9.412 0.6878
+57669 EPB41L5 erythrocyte membrane protein band 4.1 like 5 protein-coding 8.786 1.048
57670 KIAA1549 KIAA1549 protein-coding 8.299 1.692
-57673 BEND3 BEN domain containing 3 protein-coding 7.297 1
+57673 BEND3 BEN domain containing 3 protein-coding 7.296 1
57674 RNF213 ring finger protein 213 protein-coding 11.91 0.9303
-57677 ZFP14 ZFP14 zinc finger protein protein-coding 7.392 0.9093
-57678 GPAM glycerol-3-phosphate acyltransferase, mitochondrial protein-coding 8.645 1.182
-57679 ALS2 ALS2, alsin Rho guanine nucleotide exchange factor protein-coding 9.105 0.5812
-5768 QSOX1 quiescin sulfhydryl oxidase 1 protein-coding 11.59 1.211
-57680 CHD8 chromodomain helicase DNA binding protein 8 protein-coding 10.65 0.5283
-57683 ZDBF2 zinc finger DBF-type containing 2 protein-coding 6.922 1.815
-57684 ZBTB26 zinc finger and BTB domain containing 26 protein-coding 6.012 0.9985
-57685 CACHD1 cache domain containing 1 protein-coding 7.867 1.612
-57687 VAT1L vesicle amine transport 1 like protein-coding 4.672 2.995
-57688 ZSWIM6 zinc finger SWIM-type containing 6 protein-coding 8.572 0.8368
-57689 LRRC4C leucine rich repeat containing 4C protein-coding 4.077 2.664
-57690 TNRC6C trinucleotide repeat containing 6C protein-coding 8.761 1.051
-57691 KIAA1586 KIAA1586 protein-coding 7.152 0.7617
-57692 MAGEE1 MAGE family member E1 protein-coding 6.5 1.597
-57693 ZNF317 zinc finger protein 317 protein-coding 9.467 0.4362
-57695 USP37 ubiquitin specific peptidase 37 protein-coding 8.802 0.7074
-57696 DDX55 DEAD-box helicase 55 protein-coding 8.866 0.5601
-57697 FANCM Fanconi anemia complementation group M protein-coding 6.792 0.8625
+57677 ZFP14 ZFP14 zinc finger protein protein-coding 7.393 0.9092
+57678 GPAM glycerol-3-phosphate acyltransferase, mitochondrial protein-coding 8.644 1.182
+57679 ALS2 ALS2, alsin Rho guanine nucleotide exchange factor protein-coding 9.105 0.5809
+5768 QSOX1 quiescin sulfhydryl oxidase 1 protein-coding 11.59 1.21
+57680 CHD8 chromodomain helicase DNA binding protein 8 protein-coding 10.65 0.528
+57683 ZDBF2 zinc finger DBF-type containing 2 protein-coding 6.924 1.815
+57684 ZBTB26 zinc finger and BTB domain containing 26 protein-coding 6.012 0.9983
+57685 CACHD1 cache domain containing 1 protein-coding 7.868 1.612
+57687 VAT1L vesicle amine transport 1 like protein-coding 4.673 2.996
+57688 ZSWIM6 zinc finger SWIM-type containing 6 protein-coding 8.573 0.8366
+57689 LRRC4C leucine rich repeat containing 4C protein-coding 4.078 2.663
+57690 TNRC6C trinucleotide repeat containing 6C protein-coding 8.762 1.051
+57691 KIAA1586 KIAA1586 protein-coding 7.152 0.7614
+57692 MAGEE1 MAGE family member E1 protein-coding 6.501 1.597
+57693 ZNF317 zinc finger protein 317 protein-coding 9.467 0.4361
+57695 USP37 ubiquitin specific peptidase 37 protein-coding 8.802 0.7071
+57696 DDX55 DEAD-box helicase 55 protein-coding 8.865 0.5601
+57697 FANCM Fanconi anemia complementation group M protein-coding 6.792 0.8621
57698 SHTN1 shootin 1 protein-coding 9.861 1.013
-57699 CPNE5 copine 5 protein-coding 6.452 1.86
-577 ADGRB3 adhesion G protein-coupled receptor B3 protein-coding 3.03 2.81
-5770 PTPN1 protein tyrosine phosphatase, non-receptor type 1 protein-coding 10.45 0.7319
-57700 FAM160B1 family with sequence similarity 160 member B1 protein-coding 9.173 0.6203
-57701 NCKAP5L NCK associated protein 5 like protein-coding 9.159 0.9298
-57703 CWC22 CWC22 spliceosome associated protein homolog protein-coding 9.174 0.5261
-57704 GBA2 glucosylceramidase beta 2 protein-coding 10.15 0.6746
-57705 WDFY4 WDFY family member 4 protein-coding 6.89 1.816
-57706 DENND1A DENN domain containing 1A protein-coding 9.545 0.6166
+57699 CPNE5 copine 5 protein-coding 6.452 1.859
+577 ADGRB3 adhesion G protein-coupled receptor B3 protein-coding 3.032 2.81
+5770 PTPN1 protein tyrosine phosphatase, non-receptor type 1 protein-coding 10.45 0.7318
+57700 FAM160B1 family with sequence similarity 160 member B1 protein-coding 9.174 0.6202
+57701 NCKAP5L NCK associated protein 5 like protein-coding 9.159 0.9296
+57703 CWC22 CWC22 spliceosome associated protein homolog protein-coding 9.175 0.526
+57704 GBA2 glucosylceramidase beta 2 protein-coding 10.15 0.6744
+57705 WDFY4 WDFY family member 4 protein-coding 6.892 1.817
+57706 DENND1A DENN domain containing 1A protein-coding 9.545 0.6163
57707 TLDC1 TBC/LysM-associated domain containing 1 protein-coding 8.601 1.078
-57708 MIER1 MIER1 transcriptional regulator protein-coding 9.702 0.6114
-5771 PTPN2 protein tyrosine phosphatase, non-receptor type 2 protein-coding 9.158 0.7762
-57710 KIAA1614 KIAA1614 protein-coding 5.63 1.505
-57711 ZNF529 zinc finger protein 529 protein-coding 8.109 0.8933
-57713 SFMBT2 Scm like with four mbt domains 2 protein-coding 5.357 1.766
-57715 SEMA4G semaphorin 4G protein-coding 7.732 1.967
-57716 PRX periaxin protein-coding 7.132 1.158
-57717 PCDHB16 protocadherin beta 16 protein-coding 6.529 1.875
-57718 PPP4R4 protein phosphatase 4 regulatory subunit 4 protein-coding 3.604 2.475
+57708 MIER1 MIER1 transcriptional regulator protein-coding 9.703 0.6112
+5771 PTPN2 protein tyrosine phosphatase, non-receptor type 2 protein-coding 9.158 0.7759
+57710 KIAA1614 KIAA1614 protein-coding 5.631 1.505
+57711 ZNF529 zinc finger protein 529 protein-coding 8.11 0.8932
+57713 SFMBT2 Scm like with four mbt domains 2 protein-coding 5.358 1.766
+57715 SEMA4G semaphorin 4G protein-coding 7.733 1.967
+57716 PRX periaxin protein-coding 7.133 1.159
+57717 PCDHB16 protocadherin beta 16 protein-coding 6.529 1.874
+57718 PPP4R4 protein phosphatase 4 regulatory subunit 4 protein-coding 3.604 2.474
57719 ANO8 anoctamin 8 protein-coding 8.093 1.067
-57720 GPR107 G protein-coupled receptor 107 protein-coding 11.32 0.5658
-57721 METTL14 methyltransferase like 14 protein-coding 7.97 0.6238
-57722 IGDCC4 immunoglobulin superfamily DCC subclass member 4 protein-coding 6.066 2.203
-57724 EPG5 ectopic P-granules autophagy protein 5 homolog protein-coding 9.466 0.6771
-57727 NCOA5 nuclear receptor coactivator 5 protein-coding 10.03 0.5057
-57728 WDR19 WD repeat domain 19 protein-coding 8.461 0.8944
-57730 ANKRD36B ankyrin repeat domain 36B protein-coding 4.34 1.342
-57731 SPTBN4 spectrin beta, non-erythrocytic 4 protein-coding 5.2 2.315
-57732 ZFYVE28 zinc finger FYVE-type containing 28 protein-coding 7.312 1.137
-57733 GBA3 glucosylceramidase beta 3 (gene/pseudogene) protein-coding 2.507 3.159
-5774 PTPN3 protein tyrosine phosphatase, non-receptor type 3 protein-coding 9.18 1.815
-5775 PTPN4 protein tyrosine phosphatase, non-receptor type 4 protein-coding 7.502 0.6846
-57758 SCUBE2 signal peptide, CUB domain and EGF like domain containing 2 protein-coding 7.05 2.803
-57761 TRIB3 tribbles pseudokinase 3 protein-coding 9.128 1.441
-57763 ANKRA2 ankyrin repeat family A member 2 protein-coding 8.07 0.656
+57720 GPR107 G protein-coupled receptor 107 protein-coding 11.32 0.5657
+57721 METTL14 methyltransferase like 14 protein-coding 7.97 0.6237
+57722 IGDCC4 immunoglobulin superfamily DCC subclass member 4 protein-coding 6.066 2.202
+57724 EPG5 ectopic P-granules autophagy protein 5 homolog protein-coding 9.467 0.6771
+57727 NCOA5 nuclear receptor coactivator 5 protein-coding 10.03 0.5055
+57728 WDR19 WD repeat domain 19 protein-coding 8.462 0.8943
+57730 ANKRD36B ankyrin repeat domain 36B protein-coding 4.341 1.341
+57731 SPTBN4 spectrin beta, non-erythrocytic 4 protein-coding 5.202 2.315
+57732 ZFYVE28 zinc finger FYVE-type containing 28 protein-coding 7.313 1.137
+57733 GBA3 glucosylceramidase beta 3 (gene/pseudogene) protein-coding 2.508 3.158
+5774 PTPN3 protein tyrosine phosphatase, non-receptor type 3 protein-coding 9.18 1.814
+5775 PTPN4 protein tyrosine phosphatase, non-receptor type 4 protein-coding 7.502 0.6845
+57758 SCUBE2 signal peptide, CUB domain and EGF like domain containing 2 protein-coding 7.051 2.803
+57761 TRIB3 tribbles pseudokinase 3 protein-coding 9.127 1.441
+57763 ANKRA2 ankyrin repeat family A member 2 protein-coding 8.071 0.6559
5777 PTPN6 protein tyrosine phosphatase, non-receptor type 6 protein-coding 9.845 1.016
-5778 PTPN7 protein tyrosine phosphatase, non-receptor type 7 protein-coding 6.861 1.863
-57786 RBAK RB associated KRAB zinc finger protein-coding 8.858 0.6195
-57787 MARK4 microtubule affinity regulating kinase 4 protein-coding 9.74 0.6218
+5778 PTPN7 protein tyrosine phosphatase, non-receptor type 7 protein-coding 6.862 1.863
+57786 RBAK RB associated KRAB zinc finger protein-coding 8.858 0.6192
+57787 MARK4 microtubule affinity regulating kinase 4 protein-coding 9.74 0.6219
57794 SUGP1 SURP and G-patch domain containing 1 protein-coding 9.294 0.5203
-57798 GATAD1 GATA zinc finger domain containing 1 protein-coding 9.913 0.6185
-57799 RAB40C RAB40C, member RAS oncogene family protein-coding 9.536 0.6876
-578 BAK1 BCL2 antagonist/killer 1 protein-coding 9.092 0.9823
-5780 PTPN9 protein tyrosine phosphatase, non-receptor type 9 protein-coding 9.912 0.5469
+57798 GATAD1 GATA zinc finger domain containing 1 protein-coding 9.913 0.6183
+57799 RAB40C RAB40C, member RAS oncogene family protein-coding 9.535 0.6875
+578 BAK1 BCL2 antagonist/killer 1 protein-coding 9.091 0.9822
+5780 PTPN9 protein tyrosine phosphatase, non-receptor type 9 protein-coding 9.912 0.5468
57801 HES4 hes family bHLH transcription factor 4 protein-coding 6.378 1.496
-57804 POLD4 DNA polymerase delta 4, accessory subunit protein-coding 10.43 0.8908
-57805 CCAR2 cell cycle and apoptosis regulator 2 protein-coding 11.12 0.5844
-5781 PTPN11 protein tyrosine phosphatase, non-receptor type 11 protein-coding 11.4 0.6982
-57819 LSM2 LSM2 homolog, U6 small nuclear RNA and mRNA degradation associated protein-coding 9.438 0.7304
-5782 PTPN12 protein tyrosine phosphatase, non-receptor type 12 protein-coding 10.73 0.7644
-57820 CCNB1IP1 cyclin B1 interacting protein 1 protein-coding 9.453 0.8085
-57821 CCDC181 coiled-coil domain containing 181 protein-coding 3.436 2.287
-57822 GRHL3 grainyhead like transcription factor 3 protein-coding 5.522 3.083
-57823 SLAMF7 SLAM family member 7 protein-coding 7.103 2.434
-57826 RAP2C RAP2C, member of RAS oncogene family protein-coding 9.519 0.7729
-57827 C6orf47 chromosome 6 open reading frame 47 protein-coding 9.558 0.4861
-57828 CATSPERG cation channel sperm associated auxiliary subunit gamma protein-coding 3.785 1.454
-5783 PTPN13 protein tyrosine phosphatase, non-receptor type 13 protein-coding 9.345 2.088
-57830 KRTAP5-8 keratin associated protein 5-8 protein-coding 0.9938 1.27
-57834 CYP4F11 cytochrome P450 family 4 subfamily F member 11 protein-coding 6.094 3.196
+57804 POLD4 DNA polymerase delta 4, accessory subunit protein-coding 10.43 0.8906
+57805 CCAR2 cell cycle and apoptosis regulator 2 protein-coding 11.12 0.5842
+5781 PTPN11 protein tyrosine phosphatase, non-receptor type 11 protein-coding 11.4 0.6979
+57819 LSM2 LSM2 homolog, U6 small nuclear RNA and mRNA degradation associated protein-coding 9.437 0.7305
+5782 PTPN12 protein tyrosine phosphatase, non-receptor type 12 protein-coding 10.73 0.7646
+57820 CCNB1IP1 cyclin B1 interacting protein 1 protein-coding 9.453 0.8083
+57821 CCDC181 coiled-coil domain containing 181 protein-coding 3.438 2.287
+57822 GRHL3 grainyhead like transcription factor 3 protein-coding 5.52 3.083
+57823 SLAMF7 SLAM family member 7 protein-coding 7.104 2.434
+57826 RAP2C RAP2C, member of RAS oncogene family protein-coding 9.518 0.7727
+57827 C6orf47 chromosome 6 open reading frame 47 protein-coding 9.558 0.4859
+57828 CATSPERG cation channel sperm associated auxiliary subunit gamma protein-coding 3.786 1.454
+5783 PTPN13 protein tyrosine phosphatase, non-receptor type 13 protein-coding 9.345 2.087
+57830 KRTAP5-8 keratin associated protein 5-8 protein-coding 0.994 1.269
+57834 CYP4F11 cytochrome P450 family 4 subfamily F member 11 protein-coding 6.093 3.196
57835 SLC4A5 solute carrier family 4 member 5 protein-coding 7.56 1.328
-5784 PTPN14 protein tyrosine phosphatase, non-receptor type 14 protein-coding 7.074 1.407
-5786 PTPRA protein tyrosine phosphatase, receptor type A protein-coding 10.97 0.6217
-57862 ZNF410 zinc finger protein 410 protein-coding 9.848 0.4598
-57863 CADM3 cell adhesion molecule 3 protein-coding 5.467 3.254
-57864 SLC46A2 solute carrier family 46 member 2 protein-coding 3.01 1.93
-5787 PTPRB protein tyrosine phosphatase, receptor type B protein-coding 8.839 1.397
-5788 PTPRC protein tyrosine phosphatase, receptor type C protein-coding 8.854 1.865
-5789 PTPRD protein tyrosine phosphatase, receptor type D protein-coding 6.93 2.752
-5790 PTPRCAP protein tyrosine phosphatase, receptor type C associated protein protein-coding 7.174 1.782
-5791 PTPRE protein tyrosine phosphatase, receptor type E protein-coding 8.781 1.416
+5784 PTPN14 protein tyrosine phosphatase, non-receptor type 14 protein-coding 7.074 1.408
+5786 PTPRA protein tyrosine phosphatase, receptor type A protein-coding 10.97 0.6215
+57862 ZNF410 zinc finger protein 410 protein-coding 9.848 0.4597
+57863 CADM3 cell adhesion molecule 3 protein-coding 5.47 3.254
+57864 SLC46A2 solute carrier family 46 member 2 protein-coding 3.011 1.931
+5787 PTPRB protein tyrosine phosphatase, receptor type B protein-coding 8.84 1.397
+5788 PTPRC protein tyrosine phosphatase, receptor type C protein-coding 8.855 1.866
+5789 PTPRD protein tyrosine phosphatase, receptor type D protein-coding 6.931 2.752
+5790 PTPRCAP protein tyrosine phosphatase, receptor type C associated protein protein-coding 7.175 1.782
+5791 PTPRE protein tyrosine phosphatase, receptor type E protein-coding 8.781 1.415
5792 PTPRF protein tyrosine phosphatase, receptor type F protein-coding 12.85 1.288
-5793 PTPRG protein tyrosine phosphatase, receptor type G protein-coding 8.841 1.391
-5794 PTPRH protein tyrosine phosphatase, receptor type H protein-coding 5.793 3.132
-5795 PTPRJ protein tyrosine phosphatase, receptor type J protein-coding 9.797 1.202
+5793 PTPRG protein tyrosine phosphatase, receptor type G protein-coding 8.842 1.391
+5794 PTPRH protein tyrosine phosphatase, receptor type H protein-coding 5.793 3.133
+5795 PTPRJ protein tyrosine phosphatase, receptor type J protein-coding 9.798 1.202
5796 PTPRK protein tyrosine phosphatase, receptor type K protein-coding 10.49 1.128
-5797 PTPRM protein tyrosine phosphatase, receptor type M protein-coding 9.697 1.558
-5798 PTPRN protein tyrosine phosphatase, receptor type N protein-coding 3.73 3.337
-5799 PTPRN2 protein tyrosine phosphatase, receptor type N2 protein-coding 7.857 2.491
-58 ACTA1 actin, alpha 1, skeletal muscle protein-coding 2.813 2.48
-580 BARD1 BRCA1 associated RING domain 1 protein-coding 5.807 1.71
-5800 PTPRO protein tyrosine phosphatase, receptor type O protein-coding 6.013 2.065
+5797 PTPRM protein tyrosine phosphatase, receptor type M protein-coding 9.698 1.558
+5798 PTPRN protein tyrosine phosphatase, receptor type N protein-coding 3.732 3.339
+5799 PTPRN2 protein tyrosine phosphatase, receptor type N2 protein-coding 7.859 2.492
+58 ACTA1 actin, alpha 1, skeletal muscle protein-coding 2.814 2.48
+580 BARD1 BRCA1 associated RING domain 1 protein-coding 5.807 1.709
+5800 PTPRO protein tyrosine phosphatase, receptor type O protein-coding 6.012 2.065
5801 PTPRR protein tyrosine phosphatase, receptor type R protein-coding 4.299 2.242
5802 PTPRS protein tyrosine phosphatase, receptor type S protein-coding 10.13 1.795
-5805 PTS 6-pyruvoyltetrahydropterin synthase protein-coding 8.246 0.7136
-5806 PTX3 pentraxin 3 protein-coding 4.432 2.205
-581 BAX BCL2 associated X, apoptosis regulator protein-coding 9.927 0.7579
-5810 RAD1 RAD1 checkpoint DNA exonuclease protein-coding 9.171 0.5953
-5813 PURA purine rich element binding protein A protein-coding 8.274 0.5945
+5805 PTS 6-pyruvoyltetrahydropterin synthase protein-coding 8.246 0.7138
+5806 PTX3 pentraxin 3 protein-coding 4.433 2.205
+581 BAX BCL2 associated X, apoptosis regulator protein-coding 9.926 0.7577
+5810 RAD1 RAD1 checkpoint DNA exonuclease protein-coding 9.171 0.5951
+5813 PURA purine rich element binding protein A protein-coding 8.275 0.5945
5814 PURB purine rich element binding protein B protein-coding 10.75 0.5589
-58155 PTBP2 polypyrimidine tract binding protein 2 protein-coding 8.186 0.904
-5817 PVR poliovirus receptor protein-coding 9.96 0.9641
+58155 PTBP2 polypyrimidine tract binding protein 2 protein-coding 8.187 0.9039
+5817 PVR poliovirus receptor protein-coding 9.96 0.9637
5818 NECTIN1 nectin cell adhesion molecule 1 protein-coding 10.35 1.813
-58189 WFDC1 WAP four-disulfide core domain 1 protein-coding 6.035 1.925
-5819 NECTIN2 nectin cell adhesion molecule 2 protein-coding 11.34 0.9858
-58190 CTDSP1 CTD small phosphatase 1 protein-coding 11.48 0.6235
+58189 WFDC1 WAP four-disulfide core domain 1 protein-coding 6.036 1.925
+5819 NECTIN2 nectin cell adhesion molecule 2 protein-coding 11.34 0.9854
+58190 CTDSP1 CTD small phosphatase 1 protein-coding 11.48 0.6234
58191 CXCL16 C-X-C motif chemokine ligand 16 protein-coding 10.38 1.106
-582 BBS1 Bardet-Biedl syndrome 1 protein-coding 9.395 0.9682
-5820 PVT1 Pvt1 oncogene (non-protein coding) ncRNA 6.419 1.534
-5822 PWP2 PWP2, small subunit processome component protein-coding 9.57 0.6303
-5824 PEX19 peroxisomal biogenesis factor 19 protein-coding 10.78 0.6222
-5825 ABCD3 ATP binding cassette subfamily D member 3 protein-coding 10.26 0.8071
-5826 ABCD4 ATP binding cassette subfamily D member 4 protein-coding 9.319 0.6582
+582 BBS1 Bardet-Biedl syndrome 1 protein-coding 9.396 0.9681
+5820 PVT1 Pvt1 oncogene (non-protein coding) ncRNA 6.418 1.533
+5822 PWP2 PWP2, small subunit processome component protein-coding 9.57 0.6304
+5824 PEX19 peroxisomal biogenesis factor 19 protein-coding 10.78 0.622
+5825 ABCD3 ATP binding cassette subfamily D member 3 protein-coding 10.26 0.807
+5826 ABCD4 ATP binding cassette subfamily D member 4 protein-coding 9.319 0.6581
5827 PXMP2 peroxisomal membrane protein 2 protein-coding 7.969 1.132
-5828 PEX2 peroxisomal biogenesis factor 2 protein-coding 9.849 0.5446
-5829 PXN paxillin protein-coding 11.52 0.7384
-583 BBS2 Bardet-Biedl syndrome 2 protein-coding 9.528 0.8964
-5830 PEX5 peroxisomal biogenesis factor 5 protein-coding 10.09 0.6509
-5831 PYCR1 pyrroline-5-carboxylate reductase 1 protein-coding 9.951 1.933
+5828 PEX2 peroxisomal biogenesis factor 2 protein-coding 9.849 0.5444
+5829 PXN paxillin protein-coding 11.52 0.7383
+583 BBS2 Bardet-Biedl syndrome 2 protein-coding 9.529 0.896
+5830 PEX5 peroxisomal biogenesis factor 5 protein-coding 10.09 0.6507
+5831 PYCR1 pyrroline-5-carboxylate reductase 1 protein-coding 9.95 1.933
5832 ALDH18A1 aldehyde dehydrogenase 18 family member A1 protein-coding 10.97 0.6762
-5833 PCYT2 phosphate cytidylyltransferase 2, ethanolamine protein-coding 9.526 0.9582
+5833 PCYT2 phosphate cytidylyltransferase 2, ethanolamine protein-coding 9.526 0.9581
5834 PYGB glycogen phosphorylase B protein-coding 12.11 1.026
-5836 PYGL glycogen phosphorylase L protein-coding 9.856 1.733
-5837 PYGM glycogen phosphorylase, muscle associated protein-coding 4.601 2.267
+5836 PYGL glycogen phosphorylase L protein-coding 9.855 1.733
+5837 PYGM glycogen phosphorylase, muscle associated protein-coding 4.603 2.268
58472 SQOR sulfide quinone oxidoreductase protein-coding 10.14 1.428
-58473 PLEKHB1 pleckstrin homology domain containing B1 protein-coding 8.236 2.774
+58473 PLEKHB1 pleckstrin homology domain containing B1 protein-coding 8.237 2.773
58475 MS4A7 membrane spanning 4-domains A7 protein-coding 8.165 1.598
58476 TP53INP2 tumor protein p53 inducible nuclear protein 2 protein-coding 10.17 1.079
-58477 SRPRB SRP receptor beta subunit protein-coding 10.53 0.6632
-58478 ENOPH1 enolase-phosphatase 1 protein-coding 9.979 0.6121
-58480 RHOU ras homolog family member U protein-coding 9.482 1.747
-58484 NLRC4 NLR family CARD domain containing 4 protein-coding 4.935 1.172
-58485 TRAPPC1 trafficking protein particle complex 1 protein-coding 10.54 0.6845
-58486 ZBED5 zinc finger BED-type containing 5 protein-coding 9.693 0.5768
-58487 CREBZF CREB/ATF bZIP transcription factor protein-coding 10.19 0.7043
-58488 PCTP phosphatidylcholine transfer protein protein-coding 8.732 0.9529
-58489 ABHD17C abhydrolase domain containing 17C protein-coding 9.323 1.378
-58490 RPRD1B regulation of nuclear pre-mRNA domain containing 1B protein-coding 9.782 0.5724
+58477 SRPRB SRP receptor beta subunit protein-coding 10.53 0.6633
+58478 ENOPH1 enolase-phosphatase 1 protein-coding 9.979 0.612
+58480 RHOU ras homolog family member U protein-coding 9.483 1.746
+58484 NLRC4 NLR family CARD domain containing 4 protein-coding 4.935 1.173
+58485 TRAPPC1 trafficking protein particle complex 1 protein-coding 10.54 0.6843
+58486 ZBED5 zinc finger BED-type containing 5 protein-coding 9.694 0.5767
+58487 CREBZF CREB/ATF bZIP transcription factor protein-coding 10.19 0.7042
+58488 PCTP phosphatidylcholine transfer protein protein-coding 8.732 0.9525
+58489 ABHD17C abhydrolase domain containing 17C protein-coding 9.323 1.377
+58490 RPRD1B regulation of nuclear pre-mRNA domain containing 1B protein-coding 9.782 0.5722
58491 ZNF71 zinc finger protein 71 protein-coding 7.308 1.031
-58492 ZNF77 zinc finger protein 77 protein-coding 6.339 0.6881
-58493 INIP INTS3 and NABP interacting protein protein-coding 7.567 0.5889
-58494 JAM2 junctional adhesion molecule 2 protein-coding 6.521 1.853
+58492 ZNF77 zinc finger protein 77 protein-coding 6.339 0.6879
+58493 INIP INTS3 and NABP interacting protein protein-coding 7.567 0.5886
+58494 JAM2 junctional adhesion molecule 2 protein-coding 6.522 1.852
58496 LY6G5B lymphocyte antigen 6 family member G5B protein-coding 5.409 1.095
-58497 PRUNE1 prune exopolyphosphatase 1 protein-coding 9.504 0.6253
-58499 ZNF462 zinc finger protein 462 protein-coding 8.001 1.661
-585 BBS4 Bardet-Biedl syndrome 4 protein-coding 8.507 0.8389
-58500 ZNF250 zinc finger protein 250 protein-coding 7.902 0.703
-58504 ARHGAP22 Rho GTPase activating protein 22 protein-coding 6.444 1.511
-58505 OSTC oligosaccharyltransferase complex non-catalytic subunit protein-coding 10.62 0.7207
-58506 SCAF1 SR-related CTD associated factor 1 protein-coding 10.88 0.5762
-58508 KMT2C lysine methyltransferase 2C protein-coding 10.69 0.7812
-58509 CACTIN cactin, spliceosome C complex subunit protein-coding 9.058 0.583
-58512 DLGAP3 DLG associated protein 3 protein-coding 3.877 2.064
-58513 EPS15L1 epidermal growth factor receptor pathway substrate 15 like 1 protein-coding 9.661 0.4906
-58515 SELENOK selenoprotein K protein-coding 9.299 0.6476
+58497 PRUNE1 prune exopolyphosphatase 1 protein-coding 9.504 0.6252
+58499 ZNF462 zinc finger protein 462 protein-coding 8.002 1.661
+585 BBS4 Bardet-Biedl syndrome 4 protein-coding 8.508 0.8389
+58500 ZNF250 zinc finger protein 250 protein-coding 7.902 0.7028
+58504 ARHGAP22 Rho GTPase activating protein 22 protein-coding 6.445 1.51
+58505 OSTC oligosaccharyltransferase complex non-catalytic subunit protein-coding 10.62 0.7205
+58506 SCAF1 SR-related CTD associated factor 1 protein-coding 10.88 0.5761
+58508 KMT2C lysine methyltransferase 2C protein-coding 10.69 0.7811
+58509 CACTIN cactin, spliceosome C complex subunit protein-coding 9.058 0.5827
+58512 DLGAP3 DLG associated protein 3 protein-coding 3.878 2.064
+58513 EPS15L1 epidermal growth factor receptor pathway substrate 15 like 1 protein-coding 9.661 0.4905
+58515 SELENOK selenoprotein K protein-coding 9.299 0.6479
58516 SINHCAF SIN3-HDAC complex associated factor protein-coding 10.2 1.247
-58517 RBM25 RNA binding motif protein 25 protein-coding 10.75 0.6201
-58525 WIZ widely interspaced zinc finger motifs protein-coding 10.33 0.5547
-58526 MID1IP1 MID1 interacting protein 1 protein-coding 9.971 0.915
-58527 ABRACL ABRA C-terminal like protein-coding 9.111 1.317
-58528 RRAGD Ras related GTP binding D protein-coding 8.808 1.633
-58529 MYOZ1 myozenin 1 protein-coding 3.627 2.058
-58533 SNX6 sorting nexin 6 protein-coding 10.29 0.5904
-58538 MPP4 membrane palmitoylated protein 4 protein-coding 1.505 1.215
+58517 RBM25 RNA binding motif protein 25 protein-coding 10.75 0.62
+58525 WIZ widely interspaced zinc finger motifs protein-coding 10.33 0.5545
+58526 MID1IP1 MID1 interacting protein 1 protein-coding 9.971 0.9147
+58527 ABRACL ABRA C-terminal like protein-coding 9.11 1.317
+58528 RRAGD Ras related GTP binding D protein-coding 8.809 1.632
+58529 MYOZ1 myozenin 1 protein-coding 3.628 2.057
+58533 SNX6 sorting nexin 6 protein-coding 10.29 0.5902
+58538 MPP4 membrane palmitoylated protein 4 protein-coding 1.505 1.214
5858 PZP PZP, alpha-2-macroglobulin like protein-coding 1.293 1.523
-5859 QARS glutaminyl-tRNA synthetase protein-coding 11.77 0.6191
-586 BCAT1 branched chain amino acid transaminase 1 protein-coding 8.589 2.067
+5859 QARS glutaminyl-tRNA synthetase protein-coding 11.77 0.6189
+586 BCAT1 branched chain amino acid transaminase 1 protein-coding 8.588 2.067
5860 QDPR quinoid dihydropteridine reductase protein-coding 9.692 1.235
-5861 RAB1A RAB1A, member RAS oncogene family protein-coding 11.78 0.4391
-5862 RAB2A RAB2A, member RAS oncogene family protein-coding 10.11 0.5528
-5863 RGL2 ral guanine nucleotide dissociation stimulator like 2 protein-coding 10.5 0.7607
+5861 RAB1A RAB1A, member RAS oncogene family protein-coding 11.78 0.439
+5862 RAB2A RAB2A, member RAS oncogene family protein-coding 10.11 0.5526
+5863 RGL2 ral guanine nucleotide dissociation stimulator like 2 protein-coding 10.5 0.7605
5864 RAB3A RAB3A, member RAS oncogene family protein-coding 6.497 1.551
-5865 RAB3B RAB3B, member RAS oncogene family protein-coding 3.209 2.51
+5865 RAB3B RAB3B, member RAS oncogene family protein-coding 3.211 2.511
5866 RAB3IL1 RAB3A interacting protein like 1 protein-coding 7.76 1.347
-5867 RAB4A RAB4A, member RAS oncogene family protein-coding 9.728 0.6359
-5868 RAB5A RAB5A, member RAS oncogene family protein-coding 10.27 0.5282
-5869 RAB5B RAB5B, member RAS oncogene family protein-coding 12 0.473
+5867 RAB4A RAB4A, member RAS oncogene family protein-coding 9.729 0.6361
+5868 RAB5A RAB5A, member RAS oncogene family protein-coding 10.27 0.5279
+5869 RAB5B RAB5B, member RAS oncogene family protein-coding 12 0.4728
587 BCAT2 branched chain amino acid transaminase 2 protein-coding 9.538 1.019
-5870 RAB6A RAB6A, member RAS oncogene family protein-coding 11.63 0.5499
-5871 MAP4K2 mitogen-activated protein kinase kinase kinase kinase 2 protein-coding 8.55 0.737
-5872 RAB13 RAB13, member RAS oncogene family protein-coding 10.93 0.6938
-5873 RAB27A RAB27A, member RAS oncogene family protein-coding 8.871 1.413
-5874 RAB27B RAB27B, member RAS oncogene family protein-coding 4.893 2.594
+5870 RAB6A RAB6A, member RAS oncogene family protein-coding 11.63 0.5497
+5871 MAP4K2 mitogen-activated protein kinase kinase kinase kinase 2 protein-coding 8.55 0.7368
+5872 RAB13 RAB13, member RAS oncogene family protein-coding 10.93 0.6936
+5873 RAB27A RAB27A, member RAS oncogene family protein-coding 8.873 1.413
+5874 RAB27B RAB27B, member RAS oncogene family protein-coding 4.894 2.594
5875 RABGGTA Rab geranylgeranyltransferase alpha subunit protein-coding 9.193 0.6341
-5876 RABGGTB Rab geranylgeranyltransferase beta subunit protein-coding 9.846 0.569
-5877 RABIF RAB interacting factor protein-coding 8.515 0.5655
-5878 RAB5C RAB5C, member RAS oncogene family protein-coding 11.56 0.5104
+5876 RABGGTB Rab geranylgeranyltransferase beta subunit protein-coding 9.846 0.5691
+5877 RABIF RAB interacting factor protein-coding 8.514 0.5656
+5878 RAB5C RAB5C, member RAS oncogene family protein-coding 11.56 0.5102
5879 RAC1 Rac family small GTPase 1 protein-coding 12.66 0.4744
5880 RAC2 Rac family small GTPase 2 protein-coding 9.107 1.732
-5881 RAC3 Rac family small GTPase 3 protein-coding 7.513 1.645
-5883 RAD9A RAD9 checkpoint clamp component A protein-coding 8.294 0.7696
-5884 RAD17 RAD17 checkpoint clamp loader component protein-coding 9.073 0.4707
-5885 RAD21 RAD21 cohesin complex component protein-coding 12.15 0.7446
+5881 RAC3 Rac family small GTPase 3 protein-coding 7.512 1.644
+5883 RAD9A RAD9 checkpoint clamp component A protein-coding 8.294 0.7693
+5884 RAD17 RAD17 checkpoint clamp loader component protein-coding 9.073 0.4706
+5885 RAD21 RAD21 cohesin complex component protein-coding 12.15 0.7444
5886 RAD23A RAD23 homolog A, nucleotide excision repair protein protein-coding 11.59 0.556
-5887 RAD23B RAD23 homolog B, nucleotide excision repair protein protein-coding 11.99 0.5542
-5888 RAD51 RAD51 recombinase protein-coding 6.878 1.762
-5889 RAD51C RAD51 paralog C protein-coding 8.098 0.6449
-5890 RAD51B RAD51 paralog B protein-coding 5.943 0.854
+5887 RAD23B RAD23 homolog B, nucleotide excision repair protein protein-coding 11.99 0.5541
+5888 RAD51 RAD51 recombinase protein-coding 6.876 1.762
+5889 RAD51C RAD51 paralog C protein-coding 8.098 0.6448
+5890 RAD51B RAD51 paralog B protein-coding 5.943 0.8542
5891 MOK MOK protein kinase protein-coding 7.183 1.115
-5892 RAD51D RAD51 paralog D protein-coding 7.426 0.618
-5893 RAD52 RAD52 homolog, DNA repair protein protein-coding 7.027 0.7568
+5892 RAD51D RAD51 paralog D protein-coding 7.426 0.6177
+5893 RAD52 RAD52 homolog, DNA repair protein protein-coding 7.027 0.7567
5894 RAF1 Raf-1 proto-oncogene, serine/threonine kinase protein-coding 11 0.4842
-5896 RAG1 recombination activating 1 protein-coding 4.919 1.851
-5898 RALA RAS like proto-oncogene A protein-coding 10.43 0.618
-58986 TMEM8A transmembrane protein 8A protein-coding 10.77 0.8373
-5899 RALB RAS like proto-oncogene B protein-coding 10.46 0.7046
-59 ACTA2 actin, alpha 2, smooth muscle, aorta protein-coding 11.69 1.773
+5896 RAG1 recombination activating 1 protein-coding 4.919 1.85
+5898 RALA RAS like proto-oncogene A protein-coding 10.43 0.6182
+58986 TMEM8A transmembrane protein 8A protein-coding 10.77 0.8371
+5899 RALB RAS like proto-oncogene B protein-coding 10.46 0.7044
+59 ACTA2 actin, alpha 2, smooth muscle, aorta protein-coding 11.69 1.774
5900 RALGDS ral guanine nucleotide dissociation stimulator protein-coding 10.75 0.8201
-5901 RAN RAN, member RAS oncogene family protein-coding 12.09 0.7067
-5902 RANBP1 RAN binding protein 1 protein-coding 10.11 0.811
-5903 RANBP2 RAN binding protein 2 protein-coding 11.28 0.6702
-5905 RANGAP1 Ran GTPase activating protein 1 protein-coding 11.42 0.7957
-5906 RAP1A RAP1A, member of RAS oncogene family protein-coding 10.2 0.6034
-5908 RAP1B RAP1B, member of RAS oncogene family protein-coding 10.96 0.6356
-59084 ENPP5 ectonucleotide pyrophosphatase/phosphodiesterase 5 (putative) protein-coding 7.441 2.676
+5901 RAN RAN, member RAS oncogene family protein-coding 12.09 0.707
+5902 RANBP1 RAN binding protein 1 protein-coding 10.11 0.8112
+5903 RANBP2 RAN binding protein 2 protein-coding 11.28 0.6701
+5905 RANGAP1 Ran GTPase activating protein 1 protein-coding 11.42 0.7956
+5906 RAP1A RAP1A, member of RAS oncogene family protein-coding 10.2 0.6035
+5908 RAP1B RAP1B, member of RAS oncogene family protein-coding 10.96 0.6354
+59084 ENPP5 ectonucleotide pyrophosphatase/phosphodiesterase 5 (putative) protein-coding 7.442 2.676
5909 RAP1GAP RAP1 GTPase activating protein protein-coding 9.22 2.108
-5910 RAP1GDS1 Rap1 GTPase-GDP dissociation stimulator 1 protein-coding 9.651 0.6459
-5911 RAP2A RAP2A, member of RAS oncogene family protein-coding 9.822 0.9808
+5910 RAP1GDS1 Rap1 GTPase-GDP dissociation stimulator 1 protein-coding 9.651 0.6456
+5911 RAP2A RAP2A, member of RAS oncogene family protein-coding 9.822 0.9805
5912 RAP2B RAP2B, member of RAS oncogene family protein-coding 9.863 1.062
-5913 RAPSN receptor associated protein of the synapse protein-coding 1.633 1.591
-5914 RARA retinoic acid receptor alpha protein-coding 10.04 0.898
-5915 RARB retinoic acid receptor beta protein-coding 6.858 1.467
+5913 RAPSN receptor associated protein of the synapse protein-coding 1.634 1.591
+5914 RARA retinoic acid receptor alpha protein-coding 10.04 0.8977
+5915 RARB retinoic acid receptor beta protein-coding 6.859 1.467
5916 RARG retinoic acid receptor gamma protein-coding 9.503 1.43
5917 RARS arginyl-tRNA synthetase protein-coding 10.3 0.5523
-5918 RARRES1 retinoic acid receptor responder 1 protein-coding 7.434 2.534
-5919 RARRES2 retinoic acid receptor responder 2 protein-coding 9.484 2.35
+5918 RARRES1 retinoic acid receptor responder 1 protein-coding 7.436 2.534
+5919 RARRES2 retinoic acid receptor responder 2 protein-coding 9.485 2.349
5920 RARRES3 retinoic acid receptor responder 3 protein-coding 9.44 1.761
-5921 RASA1 RAS p21 protein activator 1 protein-coding 9.569 0.844
-5922 RASA2 RAS p21 protein activator 2 protein-coding 6.31 1.417
-5923 RASGRF1 Ras protein specific guanine nucleotide releasing factor 1 protein-coding 4.803 2.489
-5924 RASGRF2 Ras protein specific guanine nucleotide releasing factor 2 protein-coding 5.919 1.566
-5925 RB1 RB transcriptional corepressor 1 protein-coding 10.06 0.933
+5921 RASA1 RAS p21 protein activator 1 protein-coding 9.569 0.8437
+5922 RASA2 RAS p21 protein activator 2 protein-coding 6.311 1.417
+5923 RASGRF1 Ras protein specific guanine nucleotide releasing factor 1 protein-coding 4.805 2.49
+5924 RASGRF2 Ras protein specific guanine nucleotide releasing factor 2 protein-coding 5.92 1.565
+5925 RB1 RB transcriptional corepressor 1 protein-coding 10.06 0.9326
5926 ARID4A AT-rich interaction domain 4A protein-coding 8.768 0.755
59269 HIVEP3 human immunodeficiency virus type I enhancer binding protein 3 protein-coding 7.485 1.218
-5927 KDM5A lysine demethylase 5A protein-coding 10.28 0.6411
-59271 EVA1C eva-1 homolog C protein-coding 7.854 1.481
-59272 ACE2 angiotensin I converting enzyme 2 protein-coding 5.008 3.14
-59274 TLNRD1 talin rod domain containing 1 protein-coding 9.018 0.8069
-59277 NTN4 netrin 4 protein-coding 8.952 1.758
-5928 RBBP4 RB binding protein 4, chromatin remodeling factor protein-coding 11.63 0.7107
+5927 KDM5A lysine demethylase 5A protein-coding 10.28 0.6409
+59271 EVA1C eva-1 homolog C protein-coding 7.855 1.481
+59272 ACE2 angiotensin I converting enzyme 2 protein-coding 5.009 3.141
+59274 TLNRD1 talin rod domain containing 1 protein-coding 9.018 0.8065
+59277 NTN4 netrin 4 protein-coding 8.953 1.758
+5928 RBBP4 RB binding protein 4, chromatin remodeling factor protein-coding 11.63 0.7104
59286 UBL5 ubiquitin like 5 protein-coding 11.09 0.6804
-5929 RBBP5 RB binding protein 5, histone lysine methyltransferase complex subunit protein-coding 8.693 0.7881
-593 BCKDHA branched chain keto acid dehydrogenase E1, alpha polypeptide protein-coding 10.12 0.7051
-5930 RBBP6 RB binding protein 6, ubiquitin ligase protein-coding 10.26 0.5139
+5929 RBBP5 RB binding protein 5, histone lysine methyltransferase complex subunit protein-coding 8.693 0.7877
+593 BCKDHA branched chain keto acid dehydrogenase E1, alpha polypeptide protein-coding 10.12 0.7049
+5930 RBBP6 RB binding protein 6, ubiquitin ligase protein-coding 10.26 0.5137
59307 SIGIRR single Ig and TIR domain containing protein-coding 9.097 1.296
-5931 RBBP7 RB binding protein 7, chromatin remodeling factor protein-coding 11.45 0.6667
-5932 RBBP8 RB binding protein 8, endonuclease protein-coding 9.493 1.073
+5931 RBBP7 RB binding protein 7, chromatin remodeling factor protein-coding 11.45 0.6666
+5932 RBBP8 RB binding protein 8, endonuclease protein-coding 9.492 1.072
5933 RBL1 RB transcriptional corepressor like 1 protein-coding 7.011 1.283
-59335 PRDM12 PR/SET domain 12 protein-coding 1.608 1.115
-59338 PLEKHA1 pleckstrin homology domain containing A1 protein-coding 9.899 0.9879
-59339 PLEKHA2 pleckstrin homology domain containing A2 protein-coding 9.897 0.9877
-5934 RBL2 RB transcriptional corepressor like 2 protein-coding 10.63 0.7525
-59340 HRH4 histamine receptor H4 protein-coding 1.036 0.8559
+59335 PRDM12 PR/SET domain 12 protein-coding 1.607 1.114
+59338 PLEKHA1 pleckstrin homology domain containing A1 protein-coding 9.9 0.9876
+59339 PLEKHA2 pleckstrin homology domain containing A2 protein-coding 9.898 0.9877
+5934 RBL2 RB transcriptional corepressor like 2 protein-coding 10.63 0.7526
+59340 HRH4 histamine receptor H4 protein-coding 1.037 0.8565
59341 TRPV4 transient receptor potential cation channel subfamily V member 4 protein-coding 6.749 2.132
59342 SCPEP1 serine carboxypeptidase 1 protein-coding 10.68 1.281
-59343 SENP2 SUMO specific peptidase 2 protein-coding 9.535 0.6703
-59344 ALOXE3 arachidonate lipoxygenase 3 protein-coding 2.805 2.213
-59345 GNB4 G protein subunit beta 4 protein-coding 9.449 1.364
-59348 ZNF350 zinc finger protein 350 protein-coding 7.561 1.237
-59349 KLHL12 kelch like family member 12 protein-coding 9.933 0.4938
-5935 RBM3 RNA binding motif protein 3 protein-coding 11.9 0.6964
-59350 RXFP1 relaxin family peptide receptor 1 protein-coding 2.184 1.865
-59352 LGR6 leucine rich repeat containing G protein-coupled receptor 6 protein-coding 5.388 2.589
-5936 RBM4 RNA binding motif protein 4 protein-coding 11.16 0.4712
-5937 RBMS1 RNA binding motif single stranded interacting protein 1 protein-coding 10 1.068
-5939 RBMS2 RNA binding motif single stranded interacting protein 2 protein-coding 9.719 0.9937
-594 BCKDHB branched chain keto acid dehydrogenase E1 subunit beta protein-coding 8.444 0.9294
-5947 RBP1 retinol binding protein 1 protein-coding 8.775 2.234
-5948 RBP2 retinol binding protein 2 protein-coding 0.9924 1.884
-594842 HAS2-AS1 HAS2 antisense RNA 1 ncRNA 2.159 1.676
-594855 CPLX3 complexin 3 protein-coding 1.919 2.416
+59343 SENP2 SUMO specific peptidase 2 protein-coding 9.535 0.67
+59344 ALOXE3 arachidonate lipoxygenase 3 protein-coding 2.804 2.212
+59345 GNB4 G protein subunit beta 4 protein-coding 9.449 1.363
+59348 ZNF350 zinc finger protein 350 protein-coding 7.562 1.237
+59349 KLHL12 kelch like family member 12 protein-coding 9.933 0.4937
+5935 RBM3 RNA binding motif protein 3 protein-coding 11.9 0.6963
+59350 RXFP1 relaxin family peptide receptor 1 protein-coding 2.185 1.864
+59352 LGR6 leucine rich repeat containing G protein-coupled receptor 6 protein-coding 5.389 2.589
+5936 RBM4 RNA binding motif protein 4 protein-coding 11.16 0.471
+5937 RBMS1 RNA binding motif single stranded interacting protein 1 protein-coding 10 1.067
+5939 RBMS2 RNA binding motif single stranded interacting protein 2 protein-coding 9.719 0.9938
+594 BCKDHB branched chain keto acid dehydrogenase E1 subunit beta protein-coding 8.445 0.9292
+5947 RBP1 retinol binding protein 1 protein-coding 8.776 2.233
+5948 RBP2 retinol binding protein 2 protein-coding 0.9936 1.886
+594842 HAS2-AS1 HAS2 antisense RNA 1 ncRNA 2.159 1.675
+594855 CPLX3 complexin 3 protein-coding 1.921 2.418
595 CCND1 cyclin D1 protein-coding 12 1.568
-5950 RBP4 retinol binding protein 4 protein-coding 5.309 3.876
+5950 RBP4 retinol binding protein 4 protein-coding 5.309 3.875
595101 SMG1P5 SMG1 pseudogene 5 pseudo 6.136 1.064
-595135 PGM5P2 phosphoglucomutase 5 pseudogene 2 pseudo 1.745 1.326
+595135 PGM5P2 phosphoglucomutase 5 pseudogene 2 pseudo 1.746 1.327
5954 RCN1 reticulocalbin 1 protein-coding 11.4 0.8551
-5955 RCN2 reticulocalbin 2 protein-coding 10.38 0.7733
-5957 RCVRN recoverin protein-coding 1.124 1.184
-5959 RDH5 retinol dehydrogenase 5 protein-coding 5.93 1.936
-596 BCL2 BCL2, apoptosis regulator protein-coding 8.617 1.739
-5961 PRPH2 peripherin 2 protein-coding 3.743 1.658
-5962 RDX radixin protein-coding 10.47 1.109
-5965 RECQL RecQ like helicase protein-coding 9.478 0.8587
-5966 REL REL proto-oncogene, NF-kB subunit protein-coding 5.802 1.528
+5955 RCN2 reticulocalbin 2 protein-coding 10.38 0.7732
+5957 RCVRN recoverin protein-coding 1.125 1.185
+5959 RDH5 retinol dehydrogenase 5 protein-coding 5.93 1.935
+596 BCL2 BCL2, apoptosis regulator protein-coding 8.618 1.739
+5961 PRPH2 peripherin 2 protein-coding 3.745 1.658
+5962 RDX radixin protein-coding 10.48 1.109
+5965 RECQL RecQ like helicase protein-coding 9.478 0.8583
+5966 REL REL proto-oncogene, NF-kB subunit protein-coding 5.802 1.527
597 BCL2A1 BCL2 related protein A1 protein-coding 5.824 1.928
5970 RELA RELA proto-oncogene, NF-kB subunit protein-coding 11.03 0.438
5971 RELB RELB proto-oncogene, NF-kB subunit protein-coding 8.838 1.072
-5973 RENBP renin binding protein protein-coding 7.473 1.654
-5976 UPF1 UPF1, RNA helicase and ATPase protein-coding 11.55 0.4925
-5977 DPF2 double PHD fingers 2 protein-coding 10.14 0.486
-5978 REST RE1 silencing transcription factor protein-coding 7.496 1.544
-5979 RET ret proto-oncogene protein-coding 5.608 2.834
-598 BCL2L1 BCL2 like 1 protein-coding 11.6 0.7106
-5980 REV3L REV3 like, DNA directed polymerase zeta catalytic subunit protein-coding 9.109 0.9743
-5981 RFC1 replication factor C subunit 1 protein-coding 10.23 0.5161
-5982 RFC2 replication factor C subunit 2 protein-coding 9.43 0.7209
+5973 RENBP renin binding protein protein-coding 7.474 1.653
+5976 UPF1 UPF1, RNA helicase and ATPase protein-coding 11.55 0.4924
+5977 DPF2 double PHD fingers 2 protein-coding 10.14 0.4858
+5978 REST RE1 silencing transcription factor protein-coding 7.497 1.543
+5979 RET ret proto-oncogene protein-coding 5.61 2.834
+598 BCL2L1 BCL2 like 1 protein-coding 11.6 0.7105
+5980 REV3L REV3 like, DNA directed polymerase zeta catalytic subunit protein-coding 9.11 0.9742
+5981 RFC1 replication factor C subunit 1 protein-coding 10.23 0.5159
+5982 RFC2 replication factor C subunit 2 protein-coding 9.429 0.7211
5983 RFC3 replication factor C subunit 3 protein-coding 8.308 1.005
-5984 RFC4 replication factor C subunit 4 protein-coding 8.552 1.128
+5984 RFC4 replication factor C subunit 4 protein-coding 8.551 1.128
5985 RFC5 replication factor C subunit 5 protein-coding 8.537 0.7296
-5986 RFNG RFNG O-fucosylpeptide 3-beta-N-acetylglucosaminyltransferase protein-coding 9.747 0.7306
-5987 TRIM27 tripartite motif containing 27 protein-coding 10.5 0.4925
-5988 RFPL1 ret finger protein like 1 protein-coding 1.274 1.463
-5989 RFX1 regulatory factor X1 protein-coding 8.746 0.5779
-599 BCL2L2 BCL2 like 2 protein-coding 9.981 0.8148
-5990 RFX2 regulatory factor X2 protein-coding 7.388 1.28
-5991 RFX3 regulatory factor X3 protein-coding 5.588 1.266
-5992 RFX4 regulatory factor X4 protein-coding 1.499 2.93
+5986 RFNG RFNG O-fucosylpeptide 3-beta-N-acetylglucosaminyltransferase protein-coding 9.747 0.7303
+5987 TRIM27 tripartite motif containing 27 protein-coding 10.5 0.4923
+5988 RFPL1 ret finger protein like 1 protein-coding 1.275 1.465
+5989 RFX1 regulatory factor X1 protein-coding 8.747 0.5782
+599 BCL2L2 BCL2 like 2 protein-coding 9.982 0.8149
+5990 RFX2 regulatory factor X2 protein-coding 7.389 1.28
+5991 RFX3 regulatory factor X3 protein-coding 5.589 1.266
+5992 RFX4 regulatory factor X4 protein-coding 1.499 2.929
5993 RFX5 regulatory factor X5 protein-coding 10.06 0.6115
-5994 RFXAP regulatory factor X associated protein protein-coding 6.669 0.884
-5996 RGS1 regulator of G protein signaling 1 protein-coding 9.395 1.834
-5997 RGS2 regulator of G protein signaling 2 protein-coding 9.053 1.583
-5998 RGS3 regulator of G protein signaling 3 protein-coding 9.861 0.904
-60 ACTB actin beta protein-coding 16.53 0.6307
-6001 RGS10 regulator of G protein signaling 10 protein-coding 8.985 1.292
-6002 RGS12 regulator of G protein signaling 12 protein-coding 9.751 0.9902
-6003 RGS13 regulator of G protein signaling 13 protein-coding 2.139 1.807
-6004 RGS16 regulator of G protein signaling 16 protein-coding 8.24 1.725
+5994 RFXAP regulatory factor X associated protein protein-coding 6.669 0.8837
+5996 RGS1 regulator of G protein signaling 1 protein-coding 9.396 1.834
+5997 RGS2 regulator of G protein signaling 2 protein-coding 9.054 1.583
+5998 RGS3 regulator of G protein signaling 3 protein-coding 9.861 0.9041
+60 ACTB actin beta protein-coding 16.53 0.6308
+6001 RGS10 regulator of G protein signaling 10 protein-coding 8.986 1.292
+6002 RGS12 regulator of G protein signaling 12 protein-coding 9.751 0.9898
+6003 RGS13 regulator of G protein signaling 13 protein-coding 2.141 1.809
+6004 RGS16 regulator of G protein signaling 16 protein-coding 8.241 1.726
6006 RHCE Rh blood group CcEe antigens protein-coding 3.401 1.642
-6007 RHD Rh blood group D antigen protein-coding 1.979 1.127
-6009 RHEB Ras homolog, mTORC1 binding protein-coding 10.33 0.6244
-6013 RLN1 relaxin 1 protein-coding 1.435 1.865
-6015 RING1 ring finger protein 1 protein-coding 10.02 0.6565
-6016 RIT1 Ras like without CAAX 1 protein-coding 9.426 0.8008
-6018 RLF rearranged L-myc fusion protein-coding 9.055 0.7181
-6019 RLN2 relaxin 2 protein-coding 2.695 1.85
-602 BCL3 B cell CLL/lymphoma 3 protein-coding 9.766 1.338
+6007 RHD Rh blood group D antigen protein-coding 1.98 1.128
+6009 RHEB Ras homolog, mTORC1 binding protein-coding 10.33 0.6243
+6013 RLN1 relaxin 1 protein-coding 1.436 1.866
+6015 RING1 ring finger protein 1 protein-coding 10.02 0.6563
+6016 RIT1 Ras like without CAAX 1 protein-coding 9.425 0.8005
+6018 RLF rearranged L-myc fusion protein-coding 9.055 0.7178
+6019 RLN2 relaxin 2 protein-coding 2.696 1.851
+602 BCL3 B cell CLL/lymphoma 3 protein-coding 9.766 1.337
6023 RMRP RNA component of mitochondrial RNA processing endoribonuclease ncRNA 3.95 1.695
-60312 AFAP1 actin filament associated protein 1 protein-coding 9.873 1.117
-60313 GPBP1L1 GC-rich promoter binding protein 1 like 1 protein-coding 11.14 0.573
-60314 C12orf10 chromosome 12 open reading frame 10 protein-coding 9.725 0.6385
+60312 AFAP1 actin filament associated protein 1 protein-coding 9.873 1.116
+60313 GPBP1L1 GC-rich promoter binding protein 1 like 1 protein-coding 11.14 0.5728
+60314 C12orf10 chromosome 12 open reading frame 10 protein-coding 9.725 0.6384
60343 FAM3A family with sequence similarity 3 member A protein-coding 9.946 0.7149
6035 RNASE1 ribonuclease A family member 1, pancreatic protein-coding 10.66 1.545
6036 RNASE2 ribonuclease A family member 2 protein-coding 3.364 1.678
-6037 RNASE3 ribonuclease A family member 3 protein-coding 0.9135 1.115
+6037 RNASE3 ribonuclease A family member 3 protein-coding 0.913 1.115
60370 AVPI1 arginine vasopressin induced 1 protein-coding 8.209 1.198
-6038 RNASE4 ribonuclease A family member 4 protein-coding 8.921 1.905
+6038 RNASE4 ribonuclease A family member 4 protein-coding 8.922 1.905
60385 TSKS testis specific serine kinase substrate protein-coding 1.6 1.708
-60386 SLC25A19 solute carrier family 25 member 19 protein-coding 7.966 0.8073
-6039 RNASE6 ribonuclease A family member k6 protein-coding 7.429 1.369
+60386 SLC25A19 solute carrier family 25 member 19 protein-coding 7.965 0.8078
+6039 RNASE6 ribonuclease A family member k6 protein-coding 7.43 1.369
604 BCL6 B cell CLL/lymphoma 6 protein-coding 9.977 1.068
-60401 EDA2R ectodysplasin A2 receptor protein-coding 5.628 2.073
-6041 RNASEL ribonuclease L protein-coding 8.225 0.8584
-60412 EXOC4 exocyst complex component 4 protein-coding 10.54 0.4729
-6043 SNORA63 small nucleolar RNA, H/ACA box 63 snoRNA 0.7246 0.8579
+60401 EDA2R ectodysplasin A2 receptor protein-coding 5.629 2.072
+6041 RNASEL ribonuclease L protein-coding 8.226 0.8584
+60412 EXOC4 exocyst complex component 4 protein-coding 10.54 0.4727
+6043 SNORA63 small nucleolar RNA, H/ACA box 63 snoRNA 0.7241 0.8578
60436 TGIF2 TGFB induced factor homeobox 2 protein-coding 9.215 1.038
-60437 CDH26 cadherin 26 protein-coding 4.009 2.38
-6044 SNORA62 small nucleolar RNA, H/ACA box 62 snoRNA 0.131 0.3546
-6045 RNF2 ring finger protein 2 protein-coding 8.906 0.6726
-6046 BRD2 bromodomain containing 2 protein-coding 12.31 0.4735
-60468 BACH2 BTB domain and CNC homolog 2 protein-coding 6.101 1.657
-6047 RNF4 ring finger protein 4 protein-coding 10.41 0.4247
-6048 RNF5 ring finger protein 5 protein-coding 10.03 0.7102
+60437 CDH26 cadherin 26 protein-coding 4.011 2.381
+6044 SNORA62 small nucleolar RNA, H/ACA box 62 snoRNA 0.131 0.3545
+6045 RNF2 ring finger protein 2 protein-coding 8.906 0.6723
+6046 BRD2 bromodomain containing 2 protein-coding 12.31 0.4734
+60468 BACH2 BTB domain and CNC homolog 2 protein-coding 6.102 1.657
+6047 RNF4 ring finger protein 4 protein-coding 10.41 0.4246
+6048 RNF5 ring finger protein 5 protein-coding 10.03 0.71
60481 ELOVL5 ELOVL fatty acid elongase 5 protein-coding 11.06 1.158
-60484 HAPLN2 hyaluronan and proteoglycan link protein 2 protein-coding 1.893 2.289
+60484 HAPLN2 hyaluronan and proteoglycan link protein 2 protein-coding 1.893 2.288
60485 SAV1 salvador family WW domain containing protein 1 protein-coding 9.388 0.7696
-60487 TRMT11 tRNA methyltransferase 11 homolog protein-coding 7.868 0.7247
+60487 TRMT11 tRNA methyltransferase 11 homolog protein-coding 7.869 0.7245
60488 MRPS35 mitochondrial ribosomal protein S35 protein-coding 10.44 0.6793
-60489 APOBEC3G apolipoprotein B mRNA editing enzyme catalytic subunit 3G protein-coding 7.835 1.504
-6049 RNF6 ring finger protein 6 protein-coding 9.594 0.6827
-60490 PPCDC phosphopantothenoylcysteine decarboxylase protein-coding 7.594 0.7462
-60491 NIF3L1 NGG1 interacting factor 3 like 1 protein-coding 8.903 0.4833
-60492 CCDC90B coiled-coil domain containing 90B protein-coding 9.317 0.5527
-60493 FASTKD5 FAST kinase domains 5 protein-coding 8.719 0.579
-60494 CCDC81 coiled-coil domain containing 81 protein-coding 3.254 1.269
-60496 AASDHPPT aminoadipate-semialdehyde dehydrogenase-phosphopantetheinyl transferase protein-coding 9.693 0.6278
-605 BCL7A BCL tumor suppressor 7A protein-coding 9.096 0.8646
-6050 RNH1 ribonuclease/angiogenin inhibitor 1 protein-coding 11.72 0.6166
-60509 AGBL5 ATP/GTP binding protein like 5 protein-coding 9.478 0.688
-6051 RNPEP arginyl aminopeptidase protein-coding 10.86 0.7127
-60526 LDAH lipid droplet associated hydrolase protein-coding 8.258 1.001
-60528 ELAC2 elaC ribonuclease Z 2 protein-coding 10.51 0.5088
-60558 GUF1 GUF1 homolog, GTPase protein-coding 9.287 0.5579
-60559 SPCS3 signal peptidase complex subunit 3 protein-coding 11.26 0.5801
-60560 NAA35 N(alpha)-acetyltransferase 35, NatC auxiliary subunit protein-coding 8.615 0.6028
-60561 RINT1 RAD50 interactor 1 protein-coding 8.829 0.5537
-6059 ABCE1 ATP binding cassette subfamily E member 1 protein-coding 10.46 0.6118
+60489 APOBEC3G apolipoprotein B mRNA editing enzyme catalytic subunit 3G protein-coding 7.836 1.503
+6049 RNF6 ring finger protein 6 protein-coding 9.594 0.6824
+60490 PPCDC phosphopantothenoylcysteine decarboxylase protein-coding 7.594 0.7461
+60491 NIF3L1 NGG1 interacting factor 3 like 1 protein-coding 8.902 0.4833
+60492 CCDC90B coiled-coil domain containing 90B protein-coding 9.317 0.5525
+60493 FASTKD5 FAST kinase domains 5 protein-coding 8.719 0.5788
+60494 CCDC81 coiled-coil domain containing 81 protein-coding 3.255 1.269
+60496 AASDHPPT aminoadipate-semialdehyde dehydrogenase-phosphopantetheinyl transferase protein-coding 9.693 0.6277
+605 BCL7A BCL tumor suppressor 7A protein-coding 9.096 0.8643
+6050 RNH1 ribonuclease/angiogenin inhibitor 1 protein-coding 11.72 0.6165
+60509 AGBL5 ATP/GTP binding protein like 5 protein-coding 9.478 0.6878
+6051 RNPEP arginyl aminopeptidase protein-coding 10.86 0.7129
+60526 LDAH lipid droplet associated hydrolase protein-coding 8.258 1
+60528 ELAC2 elaC ribonuclease Z 2 protein-coding 10.51 0.5087
+60558 GUF1 GUF1 homolog, GTPase protein-coding 9.287 0.5576
+60559 SPCS3 signal peptidase complex subunit 3 protein-coding 11.26 0.5798
+60560 NAA35 N(alpha)-acetyltransferase 35, NatC auxiliary subunit protein-coding 8.615 0.6027
+60561 RINT1 RAD50 interactor 1 protein-coding 8.828 0.5535
+6059 ABCE1 ATP binding cassette subfamily E member 1 protein-coding 10.46 0.6117
60592 SCOC short coiled-coil protein protein-coding 10.48 0.7321
-606 NBEAP1 neurobeachin pseudogene 1 pseudo 1.869 1.917
-60625 DHX35 DEAH-box helicase 35 protein-coding 8.243 0.6089
-60626 RIC8A RIC8 guanine nucleotide exchange factor A protein-coding 10.86 0.4475
-606495 CYB5RL cytochrome b5 reductase like protein-coding 5.899 0.8593
+606 NBEAP1 neurobeachin pseudogene 1 pseudo 1.871 1.919
+60625 DHX35 DEAH-box helicase 35 protein-coding 8.243 0.6086
+60626 RIC8A RIC8 guanine nucleotide exchange factor A protein-coding 10.86 0.4473
+606495 CYB5RL cytochrome b5 reductase like protein-coding 5.9 0.859
606551 UBE2MP1 ubiquitin conjugating enzyme E2 M pseudogene 1 pseudo 6.725 0.7601
60672 MIIP migration and invasion inhibitory protein protein-coding 8.941 0.9134
606724 LOC606724 coronin 1A pseudogene pseudo 4.968 1.499
-60673 ATG101 autophagy related 101 protein-coding 9.991 0.6217
+60673 ATG101 autophagy related 101 protein-coding 9.99 0.6217
60674 GAS5 growth arrest specific 5 (non-protein coding) ncRNA 10.8 1.072
60675 PROK2 prokineticin 2 protein-coding 1.55 1.586
-60676 PAPPA2 pappalysin 2 protein-coding 2.053 2.125
-60677 CELF6 CUGBP Elav-like family member 6 protein-coding 5.728 1.683
-60678 EEFSEC eukaryotic elongation factor, selenocysteine-tRNA specific protein-coding 8.98 0.6082
-60680 CELF5 CUGBP Elav-like family member 5 protein-coding 3.741 2.594
-60681 FKBP10 FK506 binding protein 10 protein-coding 10.73 1.598
-60682 SMAP1 small ArfGAP 1 protein-coding 9.723 0.6002
-60684 TRAPPC11 trafficking protein particle complex 11 protein-coding 9.514 0.5261
-60685 ZFAND3 zinc finger AN1-type containing 3 protein-coding 10.83 0.5319
-60686 C14orf93 chromosome 14 open reading frame 93 protein-coding 7.744 0.5595
-607 BCL9 B cell CLL/lymphoma 9 protein-coding 9.66 0.9158
-608 TNFRSF17 TNF receptor superfamily member 17 protein-coding 2.993 2.422
-6091 ROBO1 roundabout guidance receptor 1 protein-coding 9.413 1.493
-6093 ROCK1 Rho associated coiled-coil containing protein kinase 1 protein-coding 10.1 0.7798
+60676 PAPPA2 pappalysin 2 protein-coding 2.054 2.125
+60677 CELF6 CUGBP Elav-like family member 6 protein-coding 5.73 1.684
+60678 EEFSEC eukaryotic elongation factor, selenocysteine-tRNA specific protein-coding 8.98 0.6081
+60680 CELF5 CUGBP Elav-like family member 5 protein-coding 3.741 2.593
+60681 FKBP10 FK506 binding protein 10 protein-coding 10.73 1.597
+60682 SMAP1 small ArfGAP 1 protein-coding 9.723 0.5999
+60684 TRAPPC11 trafficking protein particle complex 11 protein-coding 9.514 0.5259
+60685 ZFAND3 zinc finger AN1-type containing 3 protein-coding 10.83 0.5318
+60686 C14orf93 chromosome 14 open reading frame 93 protein-coding 7.744 0.5594
+607 BCL9 B cell CLL/lymphoma 9 protein-coding 9.66 0.9155
+608 TNFRSF17 TNF receptor superfamily member 17 protein-coding 2.993 2.421
+6091 ROBO1 roundabout guidance receptor 1 protein-coding 9.413 1.492
+6093 ROCK1 Rho associated coiled-coil containing protein kinase 1 protein-coding 10.1 0.7797
6094 ROM1 retinal outer segment membrane protein 1 protein-coding 6.248 1.341
-6095 RORA RAR related orphan receptor A protein-coding 8.379 1.357
-6096 RORB RAR related orphan receptor B protein-coding 2.707 2.266
-6097 RORC RAR related orphan receptor C protein-coding 7.453 3.219
-610 HCN2 hyperpolarization activated cyclic nucleotide gated potassium and sodium channel 2 protein-coding 4.486 2.629
-6100 RP9 RP9, pre-mRNA splicing factor protein-coding 7.382 0.6607
-6102 RP2 RP2, ARL3 GTPase activating protein protein-coding 8.625 0.8319
-6103 RPGR retinitis pigmentosa GTPase regulator protein-coding 7.287 0.8093
-611 OPN1SW opsin 1, short wave sensitive protein-coding 1.353 0.9293
-6117 RPA1 replication protein A1 protein-coding 10.94 0.5699
-6118 RPA2 replication protein A2 protein-coding 10.02 0.6094
-6119 RPA3 replication protein A3 protein-coding 8.541 0.7939
-6120 RPE ribulose-5-phosphate-3-epimerase protein-coding 9.373 0.5501
-6122 RPL3 ribosomal protein L3 protein-coding 15.06 0.7322
-6124 RPL4 ribosomal protein L4 protein-coding 14.64 0.7053
-6125 RPL5 ribosomal protein L5 protein-coding 14.05 0.7133
-6128 RPL6 ribosomal protein L6 protein-coding 13.07 0.7014
-6129 RPL7 ribosomal protein L7 protein-coding 10.35 0.9508
-613 BCR BCR, RhoGEF and GTPase activating protein protein-coding 10.93 0.7883
-6130 RPL7A ribosomal protein L7a protein-coding 13.86 0.8035
-613037 NPIPB13 nuclear pore complex interacting protein family, member B13 protein-coding 3.473 1.964
-6132 RPL8 ribosomal protein L8 protein-coding 14.95 0.877
+6095 RORA RAR related orphan receptor A protein-coding 8.38 1.358
+6096 RORB RAR related orphan receptor B protein-coding 2.709 2.267
+6097 RORC RAR related orphan receptor C protein-coding 7.455 3.219
+610 HCN2 hyperpolarization activated cyclic nucleotide gated potassium and sodium channel 2 protein-coding 4.486 2.628
+6100 RP9 RP9, pre-mRNA splicing factor protein-coding 7.381 0.6607
+6102 RP2 RP2, ARL3 GTPase activating protein protein-coding 8.625 0.8316
+6103 RPGR retinitis pigmentosa GTPase regulator protein-coding 7.287 0.8091
+611 OPN1SW opsin 1, short wave sensitive protein-coding 1.353 0.9294
+6117 RPA1 replication protein A1 protein-coding 10.94 0.5698
+6118 RPA2 replication protein A2 protein-coding 10.02 0.6092
+6119 RPA3 replication protein A3 protein-coding 8.541 0.794
+6120 RPE ribulose-5-phosphate-3-epimerase protein-coding 9.373 0.5499
+6122 RPL3 ribosomal protein L3 protein-coding 15.06 0.7319
+6124 RPL4 ribosomal protein L4 protein-coding 14.64 0.7051
+6125 RPL5 ribosomal protein L5 protein-coding 14.05 0.713
+6128 RPL6 ribosomal protein L6 protein-coding 13.07 0.7012
+6129 RPL7 ribosomal protein L7 protein-coding 10.35 0.9505
+613 BCR BCR, RhoGEF and GTPase activating protein protein-coding 10.93 0.788
+6130 RPL7A ribosomal protein L7a protein-coding 13.86 0.8032
+613037 NPIPB13 nuclear pore complex interacting protein family, member B13 protein-coding 3.474 1.964
+6132 RPL8 ribosomal protein L8 protein-coding 14.95 0.8767
6133 RPL9 ribosomal protein L9 protein-coding 9.52 1.772
-6134 RPL10 ribosomal protein L10 protein-coding 13.77 0.7346
-6135 RPL11 ribosomal protein L11 protein-coding 13.82 0.7545
-6136 RPL12 ribosomal protein L12 protein-coding 13.16 0.9973
-6137 RPL13 ribosomal protein L13 protein-coding 14.17 0.9076
-6138 RPL15 ribosomal protein L15 protein-coding 14.01 0.6623
-6139 RPL17 ribosomal protein L17 protein-coding 12.21 0.9514
-6141 RPL18 ribosomal protein L18 protein-coding 13.83 0.8569
-6142 RPL18A ribosomal protein L18a protein-coding 11.03 0.9712
-6143 RPL19 ribosomal protein L19 protein-coding 14.35 0.7537
+6134 RPL10 ribosomal protein L10 protein-coding 13.77 0.7342
+6135 RPL11 ribosomal protein L11 protein-coding 13.82 0.7543
+6136 RPL12 ribosomal protein L12 protein-coding 13.16 0.9969
+6137 RPL13 ribosomal protein L13 protein-coding 14.17 0.9072
+6138 RPL15 ribosomal protein L15 protein-coding 14.01 0.6621
+6139 RPL17 ribosomal protein L17 protein-coding 12.21 0.951
+6141 RPL18 ribosomal protein L18 protein-coding 13.83 0.8566
+6142 RPL18A ribosomal protein L18a protein-coding 11.03 0.9707
+6143 RPL19 ribosomal protein L19 protein-coding 14.35 0.7534
6144 RPL21 ribosomal protein L21 protein-coding 2.744 1.282
-6146 RPL22 ribosomal protein L22 protein-coding 12.71 0.6365
-6147 RPL23A ribosomal protein L23a protein-coding 12 0.8007
-6150 MRPL23 mitochondrial ribosomal protein L23 protein-coding 9.599 0.8744
-6152 RPL24 ribosomal protein L24 protein-coding 13.16 0.8233
-6154 RPL26 ribosomal protein L26 protein-coding 13.21 0.8182
-6155 RPL27 ribosomal protein L27 protein-coding 13.15 0.8238
-6156 RPL30 ribosomal protein L30 protein-coding 13.83 0.7646
-6157 RPL27A ribosomal protein L27a protein-coding 13.57 0.8482
-6158 RPL28 ribosomal protein L28 protein-coding 13.85 0.9568
-6159 RPL29 ribosomal protein L29 protein-coding 13.22 0.8642
-6160 RPL31 ribosomal protein L31 protein-coding 13.6 0.781
-6161 RPL32 ribosomal protein L32 protein-coding 13.83 0.833
-6164 RPL34 ribosomal protein L34 protein-coding 12.79 0.8306
-6165 RPL35A ribosomal protein L35a protein-coding 13.2 0.8006
-6166 RPL36AL ribosomal protein L36a like protein-coding 11.58 0.6697
-6167 RPL37 ribosomal protein L37 protein-coding 13.66 0.8723
-6168 RPL37A ribosomal protein L37a protein-coding 13.8 0.8223
-6169 RPL38 ribosomal protein L38 protein-coding 12.59 0.8006
-617 BCS1L BCS1 homolog, ubiquinol-cytochrome c reductase complex chaperone protein-coding 8.668 0.5643
-6170 RPL39 ribosomal protein L39 protein-coding 8.949 1.084
-6171 RPL41 ribosomal protein L41 protein-coding 13.92 0.7123
-6173 RPL36A ribosomal protein L36a protein-coding 6.294 1.207
-6175 RPLP0 ribosomal protein lateral stalk subunit P0 protein-coding 14.59 0.7802
-6176 RPLP1 ribosomal protein lateral stalk subunit P1 protein-coding 14.53 0.8574
-6181 RPLP2 ribosomal protein lateral stalk subunit P2 protein-coding 13.49 0.8723
-6182 MRPL12 mitochondrial ribosomal protein L12 protein-coding 10.38 0.9012
-6183 MRPS12 mitochondrial ribosomal protein S12 protein-coding 9.439 0.8833
-6184 RPN1 ribophorin I protein-coding 12.85 0.5609
+6146 RPL22 ribosomal protein L22 protein-coding 12.71 0.6363
+6147 RPL23A ribosomal protein L23a protein-coding 12 0.8005
+6150 MRPL23 mitochondrial ribosomal protein L23 protein-coding 9.598 0.8742
+6152 RPL24 ribosomal protein L24 protein-coding 13.16 0.8229
+6154 RPL26 ribosomal protein L26 protein-coding 13.21 0.8181
+6155 RPL27 ribosomal protein L27 protein-coding 13.15 0.8237
+6156 RPL30 ribosomal protein L30 protein-coding 13.83 0.7644
+6157 RPL27A ribosomal protein L27a protein-coding 13.57 0.8478
+6158 RPL28 ribosomal protein L28 protein-coding 13.85 0.9565
+6159 RPL29 ribosomal protein L29 protein-coding 13.22 0.8639
+6160 RPL31 ribosomal protein L31 protein-coding 13.6 0.7808
+6161 RPL32 ribosomal protein L32 protein-coding 13.83 0.8327
+6164 RPL34 ribosomal protein L34 protein-coding 12.79 0.8303
+6165 RPL35A ribosomal protein L35a protein-coding 13.2 0.8004
+6166 RPL36AL ribosomal protein L36a like protein-coding 11.58 0.6695
+6167 RPL37 ribosomal protein L37 protein-coding 13.66 0.8721
+6168 RPL37A ribosomal protein L37a protein-coding 13.8 0.8221
+6169 RPL38 ribosomal protein L38 protein-coding 12.59 0.8005
+617 BCS1L BCS1 homolog, ubiquinol-cytochrome c reductase complex chaperone protein-coding 8.668 0.5641
+6170 RPL39 ribosomal protein L39 protein-coding 8.948 1.084
+6171 RPL41 ribosomal protein L41 protein-coding 13.92 0.7121
+6173 RPL36A ribosomal protein L36a protein-coding 6.293 1.208
+6175 RPLP0 ribosomal protein lateral stalk subunit P0 protein-coding 14.59 0.78
+6176 RPLP1 ribosomal protein lateral stalk subunit P1 protein-coding 14.53 0.8572
+6181 RPLP2 ribosomal protein lateral stalk subunit P2 protein-coding 13.49 0.872
+6182 MRPL12 mitochondrial ribosomal protein L12 protein-coding 10.38 0.9015
+6183 MRPS12 mitochondrial ribosomal protein S12 protein-coding 9.438 0.8834
+6184 RPN1 ribophorin I protein-coding 12.85 0.5607
6185 RPN2 ribophorin II protein-coding 13.02 0.6471
-6187 RPS2 ribosomal protein S2 protein-coding 13.53 0.9178
-6188 RPS3 ribosomal protein S3 protein-coding 14.35 0.8383
-6189 RPS3A ribosomal protein S3A protein-coding 12.22 0.7518
-6191 RPS4X ribosomal protein S4, X-linked protein-coding 14.69 0.8031
-619189 SERINC4 serine incorporator 4 protein-coding 2.74 1.163
+6187 RPS2 ribosomal protein S2 protein-coding 13.53 0.9176
+6188 RPS3 ribosomal protein S3 protein-coding 14.35 0.8379
+6189 RPS3A ribosomal protein S3A protein-coding 12.22 0.7515
+6191 RPS4X ribosomal protein S4, X-linked protein-coding 14.69 0.8029
+619189 SERINC4 serine incorporator 4 protein-coding 2.74 1.162
619190 FDPSP2 farnesyl diphosphate synthase pseudogene 2 pseudo 2.519 1.255
-619207 SCART1 scavenger receptor family member expressed on T cells 1 pseudo 4.007 1.432
+619207 SCART1 scavenger receptor family member expressed on T cells 1 pseudo 4.008 1.432
619208 FAM229B family with sequence similarity 229 member B protein-coding 7.251 1.476
-619279 ZNF704 zinc finger protein 704 protein-coding 7.072 1.682
-6193 RPS5 ribosomal protein S5 protein-coding 13.49 0.8022
-619373 MBOAT4 membrane bound O-acyltransferase domain containing 4 protein-coding 1.778 1.173
-619383 SCARNA9 small Cajal body-specific RNA 9 ncRNA 2.439 1.131
-6194 RPS6 ribosomal protein S6 protein-coding 14.68 0.8521
+619279 ZNF704 zinc finger protein 704 protein-coding 7.073 1.682
+6193 RPS5 ribosomal protein S5 protein-coding 13.49 0.8018
+619373 MBOAT4 membrane bound O-acyltransferase domain containing 4 protein-coding 1.78 1.176
+619383 SCARNA9 small Cajal body-specific RNA 9 ncRNA 2.439 1.13
+6194 RPS6 ribosomal protein S6 protein-coding 14.68 0.8518
6195 RPS6KA1 ribosomal protein S6 kinase A1 protein-coding 10.22 1.079
-6196 RPS6KA2 ribosomal protein S6 kinase A2 protein-coding 9.747 1.355
-6197 RPS6KA3 ribosomal protein S6 kinase A3 protein-coding 10.38 0.9739
-6198 RPS6KB1 ribosomal protein S6 kinase B1 protein-coding 9.491 0.5531
-6199 RPS6KB2 ribosomal protein S6 kinase B2 protein-coding 9.766 0.7473
-6201 RPS7 ribosomal protein S7 protein-coding 12.54 0.9207
-6202 RPS8 ribosomal protein S8 protein-coding 14.17 0.8067
-6203 RPS9 ribosomal protein S9 protein-coding 13.81 0.8172
-6204 RPS10 ribosomal protein S10 protein-coding 12.52 0.8622
-6205 RPS11 ribosomal protein S11 protein-coding 14.42 0.7567
-6206 RPS12 ribosomal protein S12 protein-coding 13.64 0.8837
-6207 RPS13 ribosomal protein S13 protein-coding 12.77 0.6895
-6208 RPS14 ribosomal protein S14 protein-coding 13.72 0.7589
-6209 RPS15 ribosomal protein S15 protein-coding 12.31 0.897
-6210 RPS15A ribosomal protein S15a protein-coding 13.23 0.7592
-6217 RPS16 ribosomal protein S16 protein-coding 13.75 0.827
-6218 RPS17 ribosomal protein S17 protein-coding 13.46 0.8426
-622 BDH1 3-hydroxybutyrate dehydrogenase 1 protein-coding 8.976 1.577
-6222 RPS18 ribosomal protein S18 protein-coding 14.45 0.9494
-6223 RPS19 ribosomal protein S19 protein-coding 13.98 0.9494
-6224 RPS20 ribosomal protein S20 protein-coding 13.98 0.8317
-6227 RPS21 ribosomal protein S21 protein-coding 12.82 0.9004
-6228 RPS23 ribosomal protein S23 protein-coding 13.56 0.71
-6229 RPS24 ribosomal protein S24 protein-coding 14.02 0.8119
-6230 RPS25 ribosomal protein S25 protein-coding 12.83 0.7635
-6231 RPS26 ribosomal protein S26 protein-coding 9.384 0.9501
-6232 RPS27 ribosomal protein S27 protein-coding 8.535 1.981
-6233 RPS27A ribosomal protein S27a protein-coding 13.01 0.8009
-6234 RPS28 ribosomal protein S28 protein-coding 7.198 2.957
-6235 RPS29 ribosomal protein S29 protein-coding 12.38 0.8071
-6236 RRAD RRAD, Ras related glycolysis inhibitor and calcium channel regulator protein-coding 6.721 2.468
-6237 RRAS RAS related protein-coding 9.609 1.081
-6238 RRBP1 ribosome binding protein 1 protein-coding 12.66 0.9825
-6239 RREB1 ras responsive element binding protein 1 protein-coding 9.802 1.069
-6240 RRM1 ribonucleotide reductase catalytic subunit M1 protein-coding 10.47 0.805
-6241 RRM2 ribonucleotide reductase regulatory subunit M2 protein-coding 9.23 2.158
-6242 RTKN rhotekin protein-coding 9.925 1.009
-6247 RS1 retinoschisin 1 protein-coding 1.615 1.22
-6248 RSC1A1 regulator of solute carriers 1 protein-coding 7.222 1.014
-6249 CLIP1 CAP-Gly domain containing linker protein 1 protein-coding 10.79 0.7924
-6251 RSU1 Ras suppressor protein 1 protein-coding 10.26 0.6235
-6252 RTN1 reticulon 1 protein-coding 6.942 2.54
-6253 RTN2 reticulon 2 protein-coding 7.533 1.196
-6256 RXRA retinoid X receptor alpha protein-coding 10.94 0.8584
+6196 RPS6KA2 ribosomal protein S6 kinase A2 protein-coding 9.748 1.355
+6197 RPS6KA3 ribosomal protein S6 kinase A3 protein-coding 10.38 0.9736
+6198 RPS6KB1 ribosomal protein S6 kinase B1 protein-coding 9.491 0.5529
+6199 RPS6KB2 ribosomal protein S6 kinase B2 protein-coding 9.766 0.7472
+6201 RPS7 ribosomal protein S7 protein-coding 12.54 0.9204
+6202 RPS8 ribosomal protein S8 protein-coding 14.17 0.8064
+6203 RPS9 ribosomal protein S9 protein-coding 13.81 0.8168
+6204 RPS10 ribosomal protein S10 protein-coding 12.52 0.8619
+6205 RPS11 ribosomal protein S11 protein-coding 14.42 0.7565
+6206 RPS12 ribosomal protein S12 protein-coding 13.64 0.8833
+6207 RPS13 ribosomal protein S13 protein-coding 12.77 0.6892
+6208 RPS14 ribosomal protein S14 protein-coding 13.72 0.7586
+6209 RPS15 ribosomal protein S15 protein-coding 12.31 0.8966
+6210 RPS15A ribosomal protein S15a protein-coding 13.23 0.7591
+6217 RPS16 ribosomal protein S16 protein-coding 13.74 0.8267
+6218 RPS17 ribosomal protein S17 protein-coding 13.46 0.8425
+622 BDH1 3-hydroxybutyrate dehydrogenase 1 protein-coding 8.976 1.576
+6222 RPS18 ribosomal protein S18 protein-coding 14.45 0.949
+6223 RPS19 ribosomal protein S19 protein-coding 13.98 0.9491
+6224 RPS20 ribosomal protein S20 protein-coding 13.98 0.8314
+6227 RPS21 ribosomal protein S21 protein-coding 12.82 0.9002
+6228 RPS23 ribosomal protein S23 protein-coding 13.56 0.7098
+6229 RPS24 ribosomal protein S24 protein-coding 14.02 0.8117
+6230 RPS25 ribosomal protein S25 protein-coding 12.83 0.7633
+6231 RPS26 ribosomal protein S26 protein-coding 9.384 0.95
+6232 RPS27 ribosomal protein S27 protein-coding 8.536 1.981
+6233 RPS27A ribosomal protein S27a protein-coding 13.01 0.8005
+6234 RPS28 ribosomal protein S28 protein-coding 7.198 2.956
+6235 RPS29 ribosomal protein S29 protein-coding 12.38 0.8069
+6236 RRAD RRAD, Ras related glycolysis inhibitor and calcium channel regulator protein-coding 6.722 2.467
+6237 RRAS RAS related protein-coding 9.61 1.081
+6238 RRBP1 ribosome binding protein 1 protein-coding 12.66 0.9821
+6239 RREB1 ras responsive element binding protein 1 protein-coding 9.803 1.068
+6240 RRM1 ribonucleotide reductase catalytic subunit M1 protein-coding 10.47 0.8049
+6241 RRM2 ribonucleotide reductase regulatory subunit M2 protein-coding 9.227 2.159
+6242 RTKN rhotekin protein-coding 9.923 1.01
+6247 RS1 retinoschisin 1 protein-coding 1.616 1.221
+6248 RSC1A1 regulator of solute carriers 1 protein-coding 7.223 1.013
+6249 CLIP1 CAP-Gly domain containing linker protein 1 protein-coding 10.79 0.7923
+6251 RSU1 Ras suppressor protein 1 protein-coding 10.27 0.6234
+6252 RTN1 reticulon 1 protein-coding 6.944 2.54
+6253 RTN2 reticulon 2 protein-coding 7.534 1.196
+6256 RXRA retinoid X receptor alpha protein-coding 10.94 0.8581
6257 RXRB retinoid X receptor beta protein-coding 10.06 0.4728
-6259 RYK receptor-like tyrosine kinase protein-coding 10.13 0.6888
-6261 RYR1 ryanodine receptor 1 protein-coding 6.666 2.675
-6262 RYR2 ryanodine receptor 2 protein-coding 4.773 2.375
-6263 RYR3 ryanodine receptor 3 protein-coding 4.104 1.928
-627 BDNF brain derived neurotrophic factor protein-coding 4.511 1.999
-6271 S100A1 S100 calcium binding protein A1 protein-coding 6.867 3.159
+6259 RYK receptor-like tyrosine kinase protein-coding 10.13 0.6887
+6261 RYR1 ryanodine receptor 1 protein-coding 6.666 2.674
+6262 RYR2 ryanodine receptor 2 protein-coding 4.777 2.376
+6263 RYR3 ryanodine receptor 3 protein-coding 4.105 1.929
+627 BDNF brain derived neurotrophic factor protein-coding 4.511 1.998
+6271 S100A1 S100 calcium binding protein A1 protein-coding 6.866 3.158
6272 SORT1 sortilin 1 protein-coding 11.19 1.063
-6273 S100A2 S100 calcium binding protein A2 protein-coding 7.569 3.991
+6273 S100A2 S100 calcium binding protein A2 protein-coding 7.567 3.99
6274 S100A3 S100 calcium binding protein A3 protein-coding 4.383 1.859
-6275 S100A4 S100 calcium binding protein A4 protein-coding 9.821 2.017
-6276 S100A5 S100 calcium binding protein A5 protein-coding 1.64 1.95
-6277 S100A6 S100 calcium binding protein A6 protein-coding 13.4 1.914
-6279 S100A8 S100 calcium binding protein A8 protein-coding 7.401 3.693
-6280 S100A9 S100 calcium binding protein A9 protein-coding 9.079 3.563
+6275 S100A4 S100 calcium binding protein A4 protein-coding 9.822 2.016
+6276 S100A5 S100 calcium binding protein A5 protein-coding 1.639 1.949
+6277 S100A6 S100 calcium binding protein A6 protein-coding 13.4 1.913
+6279 S100A8 S100 calcium binding protein A8 protein-coding 7.4 3.692
+6280 S100A9 S100 calcium binding protein A9 protein-coding 9.078 3.562
6281 S100A10 S100 calcium binding protein A10 protein-coding 12.06 1.582
-6282 S100A11 S100 calcium binding protein A11 protein-coding 12.76 1.719
-6283 S100A12 S100 calcium binding protein A12 protein-coding 2.461 2.486
+6282 S100A11 S100 calcium binding protein A11 protein-coding 12.76 1.718
+6283 S100A12 S100 calcium binding protein A12 protein-coding 2.46 2.486
6284 S100A13 S100 calcium binding protein A13 protein-coding 10.29 1.308
-6285 S100B S100 calcium binding protein B protein-coding 6.151 3.031
-6286 S100P S100 calcium binding protein P protein-coding 6.528 4.446
-629 CFB complement factor B protein-coding 10.75 2.819
-6293 VPS52 VPS52, GARP complex subunit protein-coding 10.44 0.4345
-6294 SAFB scaffold attachment factor B protein-coding 10.98 0.489
-6296 ACSM3 acyl-CoA synthetase medium chain family member 3 protein-coding 6.202 2.853
-6297 SALL2 spalt like transcription factor 2 protein-coding 7.765 2.14
-6300 MAPK12 mitogen-activated protein kinase 12 protein-coding 7.604 1.479
-6301 SARS seryl-tRNA synthetase protein-coding 11.46 0.4984
-6302 TSPAN31 tetraspanin 31 protein-coding 10.03 0.8334
+6285 S100B S100 calcium binding protein B protein-coding 6.151 3.03
+6286 S100P S100 calcium binding protein P protein-coding 6.527 4.444
+629 CFB complement factor B protein-coding 10.75 2.818
+6293 VPS52 VPS52, GARP complex subunit protein-coding 10.44 0.4344
+6294 SAFB scaffold attachment factor B protein-coding 10.98 0.4887
+6296 ACSM3 acyl-CoA synthetase medium chain family member 3 protein-coding 6.203 2.853
+6297 SALL2 spalt like transcription factor 2 protein-coding 7.767 2.139
+6300 MAPK12 mitogen-activated protein kinase 12 protein-coding 7.604 1.478
+6301 SARS seryl-tRNA synthetase protein-coding 11.46 0.4983
+6302 TSPAN31 tetraspanin 31 protein-coding 10.03 0.833
63027 SLC22A23 solute carrier family 22 member 23 protein-coding 9.619 1.43
6303 SAT1 spermidine/spermine N1-acetyltransferase 1 protein-coding 12.62 1.111
-63035 BCORL1 BCL6 corepressor like 1 protein-coding 8.584 0.7706
-6304 SATB1 SATB homeobox 1 protein-coding 8.782 1.524
-6305 SBF1 SET binding factor 1 protein-coding 10.96 0.8297
+63035 BCORL1 BCL6 corepressor like 1 protein-coding 8.585 0.7704
+6304 SATB1 SATB homeobox 1 protein-coding 8.783 1.524
+6305 SBF1 SET binding factor 1 protein-coding 10.96 0.8296
6307 MSMO1 methylsterol monooxygenase 1 protein-coding 10.3 1.082
6309 SC5D sterol-C5-desaturase protein-coding 10.2 1.11
-631 BFSP1 beaded filament structural protein 1 protein-coding 5.399 1.335
-6310 ATXN1 ataxin 1 protein-coding 9.594 0.8696
-6311 ATXN2 ataxin 2 protein-coding 9.704 0.5285
-6314 ATXN7 ataxin 7 protein-coding 8.983 0.6408
+631 BFSP1 beaded filament structural protein 1 protein-coding 5.398 1.335
+6310 ATXN1 ataxin 1 protein-coding 9.594 0.8695
+6311 ATXN2 ataxin 2 protein-coding 9.704 0.5283
+6314 ATXN7 ataxin 7 protein-coding 8.983 0.6409
6319 SCD stearoyl-CoA desaturase protein-coding 12.56 1.88
-632 BGLAP bone gamma-carboxyglutamate protein protein-coding 5.3 1.071
-6320 CLEC11A C-type lectin domain containing 11A protein-coding 7.575 1.303
+632 BGLAP bone gamma-carboxyglutamate protein protein-coding 5.299 1.071
+6320 CLEC11A C-type lectin domain containing 11A protein-coding 7.575 1.302
6322 SCML1 Scm polycomb group protein like 1 protein-coding 7.526 1.267
-6324 SCN1B sodium voltage-gated channel beta subunit 1 protein-coding 7.024 1.63
-6326 SCN2A sodium voltage-gated channel alpha subunit 2 protein-coding 4.009 2.796
-6327 SCN2B sodium voltage-gated channel beta subunit 2 protein-coding 3.672 2.719
-6328 SCN3A sodium voltage-gated channel alpha subunit 3 protein-coding 3.933 2.742
-6329 SCN4A sodium voltage-gated channel alpha subunit 4 protein-coding 3.401 2.466
-633 BGN biglycan protein-coding 12.55 1.641
-6330 SCN4B sodium voltage-gated channel beta subunit 4 protein-coding 6.635 2.148
-6331 SCN5A sodium voltage-gated channel alpha subunit 5 protein-coding 3.3 2.011
+6324 SCN1B sodium voltage-gated channel beta subunit 1 protein-coding 7.023 1.629
+6326 SCN2A sodium voltage-gated channel alpha subunit 2 protein-coding 4.01 2.796
+6327 SCN2B sodium voltage-gated channel beta subunit 2 protein-coding 3.674 2.719
+6328 SCN3A sodium voltage-gated channel alpha subunit 3 protein-coding 3.934 2.742
+6329 SCN4A sodium voltage-gated channel alpha subunit 4 protein-coding 3.402 2.466
+633 BGN biglycan protein-coding 12.55 1.64
+6330 SCN4B sodium voltage-gated channel beta subunit 4 protein-coding 6.636 2.147
+6331 SCN5A sodium voltage-gated channel alpha subunit 5 protein-coding 3.301 2.011
6334 SCN8A sodium voltage-gated channel alpha subunit 8 protein-coding 4.894 1.94
-6335 SCN9A sodium voltage-gated channel alpha subunit 9 protein-coding 4.981 2.5
-6337 SCNN1A sodium channel epithelial 1 alpha subunit protein-coding 9.183 3.634
-6338 SCNN1B sodium channel epithelial 1 beta subunit protein-coding 5.5 3.304
-6339 SCNN1D sodium channel epithelial 1 delta subunit protein-coding 5.913 1.712
-634 CEACAM1 carcinoembryonic antigen related cell adhesion molecule 1 protein-coding 8.166 2.712
-6341 SCO1 SCO1, cytochrome c oxidase assembly protein protein-coding 8.797 0.551
-6342 SCP2 sterol carrier protein 2 protein-coding 11.38 0.7709
+6335 SCN9A sodium voltage-gated channel alpha subunit 9 protein-coding 4.983 2.5
+6337 SCNN1A sodium channel epithelial 1 alpha subunit protein-coding 9.184 3.634
+6338 SCNN1B sodium channel epithelial 1 beta subunit protein-coding 5.501 3.304
+6339 SCNN1D sodium channel epithelial 1 delta subunit protein-coding 5.914 1.712
+634 CEACAM1 carcinoembryonic antigen related cell adhesion molecule 1 protein-coding 8.166 2.711
+6341 SCO1 SCO1, cytochrome c oxidase assembly protein protein-coding 8.796 0.5509
+6342 SCP2 sterol carrier protein 2 protein-coding 11.38 0.7706
6343 SCT secretin protein-coding 1.83 1.662
-6345 SRL sarcalumenin protein-coding 4.281 2.095
-6347 CCL2 C-C motif chemokine ligand 2 protein-coding 8.457 1.76
-6348 CCL3 C-C motif chemokine ligand 3 protein-coding 6.578 1.735
-6349 CCL3L1 C-C motif chemokine ligand 3 like 1 protein-coding 4.252 1.934
-635 BHMT betaine--homocysteine S-methyltransferase protein-coding 3.087 3.636
-6351 CCL4 C-C motif chemokine ligand 4 protein-coding 6.607 1.734
-6352 CCL5 C-C motif chemokine ligand 5 protein-coding 8.622 2.085
-6357 CCL13 C-C motif chemokine ligand 13 protein-coding 3.769 2.587
-6358 CCL14 C-C motif chemokine ligand 14 protein-coding 6.247 2.495
-636 BICD1 BICD cargo adaptor 1 protein-coding 7.192 1.333
-6362 CCL18 C-C motif chemokine ligand 18 protein-coding 6.538 3.27
-6367 CCL22 C-C motif chemokine ligand 22 protein-coding 5.477 2.26
-6368 CCL23 C-C motif chemokine ligand 23 protein-coding 1.776 1.711
+6345 SRL sarcalumenin protein-coding 4.283 2.094
+6347 CCL2 C-C motif chemokine ligand 2 protein-coding 8.457 1.759
+6348 CCL3 C-C motif chemokine ligand 3 protein-coding 6.578 1.736
+6349 CCL3L1 C-C motif chemokine ligand 3 like 1 protein-coding 4.251 1.935
+635 BHMT betaine--homocysteine S-methyltransferase protein-coding 3.086 3.634
+6351 CCL4 C-C motif chemokine ligand 4 protein-coding 6.608 1.734
+6352 CCL5 C-C motif chemokine ligand 5 protein-coding 8.623 2.085
+6357 CCL13 C-C motif chemokine ligand 13 protein-coding 3.77 2.587
+6358 CCL14 C-C motif chemokine ligand 14 protein-coding 6.25 2.495
+636 BICD1 BICD cargo adaptor 1 protein-coding 7.192 1.332
+6362 CCL18 C-C motif chemokine ligand 18 protein-coding 6.537 3.271
+6367 CCL22 C-C motif chemokine ligand 22 protein-coding 5.478 2.26
+6368 CCL23 C-C motif chemokine ligand 23 protein-coding 1.778 1.712
6369 CCL24 C-C motif chemokine ligand 24 protein-coding 1.454 1.981
-637 BID BH3 interacting domain death agonist protein-coding 9.307 0.9902
-6370 CCL25 C-C motif chemokine ligand 25 protein-coding 1.743 2.502
+637 BID BH3 interacting domain death agonist protein-coding 9.306 0.9906
+6370 CCL25 C-C motif chemokine ligand 25 protein-coding 1.743 2.501
6372 CXCL6 C-X-C motif chemokine ligand 6 protein-coding 4.089 3.142
-6373 CXCL11 C-X-C motif chemokine ligand 11 protein-coding 5.826 2.592
-6374 CXCL5 C-X-C motif chemokine ligand 5 protein-coding 4.757 3.322
-6375 XCL1 X-C motif chemokine ligand 1 protein-coding 3.188 1.918
+6373 CXCL11 C-X-C motif chemokine ligand 11 protein-coding 5.826 2.591
+6374 CXCL5 C-X-C motif chemokine ligand 5 protein-coding 4.756 3.321
+6375 XCL1 X-C motif chemokine ligand 1 protein-coding 3.188 1.917
6376 CX3CL1 C-X3-C motif chemokine ligand 1 protein-coding 10.05 1.7
638 BIK BCL2 interacting killer protein-coding 6.011 2.669
-6382 SDC1 syndecan 1 protein-coding 11.93 2.546
-63826 SRR serine racemase protein-coding 7.64 0.9345
-63827 BCAN brevican protein-coding 4.907 3.951
+6382 SDC1 syndecan 1 protein-coding 11.93 2.545
+63826 SRR serine racemase protein-coding 7.641 0.9342
+63827 BCAN brevican protein-coding 4.906 3.95
6383 SDC2 syndecan 2 protein-coding 10.39 1.763
-6385 SDC4 syndecan 4 protein-coding 12.2 1.606
+6385 SDC4 syndecan 4 protein-coding 12.2 1.605
6386 SDCBP syndecan binding protein protein-coding 11.83 0.7904
-6387 CXCL12 C-X-C motif chemokine ligand 12 protein-coding 9.211 1.825
-63874 ABHD4 abhydrolase domain containing 4 protein-coding 9.913 0.8107
-63875 MRPL17 mitochondrial ribosomal protein L17 protein-coding 10.12 0.6517
-63876 PKNOX2 PBX/knotted 1 homeobox 2 protein-coding 5.124 2.635
-63877 FAM204A family with sequence similarity 204 member A protein-coding 9.17 0.4841
-6388 SDF2 stromal cell derived factor 2 protein-coding 9.804 0.5203
-6389 SDHA succinate dehydrogenase complex flavoprotein subunit A protein-coding 11.45 0.7423
-63891 RNF123 ring finger protein 123 protein-coding 9.598 0.557
-63892 THADA THADA, armadillo repeat containing protein-coding 9.77 0.5105
-63893 UBE2O ubiquitin conjugating enzyme E2 O protein-coding 9.985 0.6021
-63894 VIPAS39 VPS33B interacting protein, apical-basolateral polarity regulator, spe-39 homolog protein-coding 8.92 0.4239
-63895 PIEZO2 piezo type mechanosensitive ion channel component 2 protein-coding 6.011 2.228
-63897 HEATR6 HEAT repeat containing 6 protein-coding 8.589 0.6314
-63898 SH2D4A SH2 domain containing 4A protein-coding 8.119 1.983
-63899 NSUN3 NOP2/Sun RNA methyltransferase family member 3 protein-coding 6.7 0.582
-639 PRDM1 PR/SET domain 1 protein-coding 8.51 1.671
-6390 SDHB succinate dehydrogenase complex iron sulfur subunit B protein-coding 10.44 0.5647
-63901 FAM111A family with sequence similarity 111 member A protein-coding 9.694 0.9466
+6387 CXCL12 C-X-C motif chemokine ligand 12 protein-coding 9.213 1.825
+63874 ABHD4 abhydrolase domain containing 4 protein-coding 9.913 0.8104
+63875 MRPL17 mitochondrial ribosomal protein L17 protein-coding 10.12 0.6519
+63876 PKNOX2 PBX/knotted 1 homeobox 2 protein-coding 5.127 2.635
+63877 FAM204A family with sequence similarity 204 member A protein-coding 9.17 0.4839
+6388 SDF2 stromal cell derived factor 2 protein-coding 9.803 0.5203
+6389 SDHA succinate dehydrogenase complex flavoprotein subunit A protein-coding 11.45 0.742
+63891 RNF123 ring finger protein 123 protein-coding 9.599 0.5568
+63892 THADA THADA, armadillo repeat containing protein-coding 9.771 0.5104
+63893 UBE2O ubiquitin conjugating enzyme E2 O protein-coding 9.985 0.6019
+63894 VIPAS39 VPS33B interacting protein, apical-basolateral polarity regulator, spe-39 homolog protein-coding 8.92 0.4238
+63895 PIEZO2 piezo type mechanosensitive ion channel component 2 protein-coding 6.012 2.227
+63897 HEATR6 HEAT repeat containing 6 protein-coding 8.589 0.6311
+63898 SH2D4A SH2 domain containing 4A protein-coding 8.118 1.983
+63899 NSUN3 NOP2/Sun RNA methyltransferase family member 3 protein-coding 6.7 0.5818
+639 PRDM1 PR/SET domain 1 protein-coding 8.511 1.671
+6390 SDHB succinate dehydrogenase complex iron sulfur subunit B protein-coding 10.44 0.5646
+63901 FAM111A family with sequence similarity 111 member A protein-coding 9.695 0.9465
63905 MANBAL mannosidase beta like protein-coding 10.34 0.5264
-63906 GPATCH3 G-patch domain containing 3 protein-coding 8.305 0.5505
-63908 NAPB NSF attachment protein beta protein-coding 8.269 1.049
+63906 GPATCH3 G-patch domain containing 3 protein-coding 8.305 0.5503
+63908 NAPB NSF attachment protein beta protein-coding 8.27 1.05
6391 SDHC succinate dehydrogenase complex subunit C protein-coding 11.02 0.5746
-63910 SLC17A9 solute carrier family 17 member 9 protein-coding 6.858 2.146
+63910 SLC17A9 solute carrier family 17 member 9 protein-coding 6.857 2.146
63914 LINC01590 long intergenic non-protein coding RNA 1590 ncRNA 3.005 1.133
-63915 BLOC1S5 biogenesis of lysosomal organelles complex 1 subunit 5 protein-coding 8.241 0.6181
-63916 ELMO2 engulfment and cell motility 2 protein-coding 10.03 0.6771
-63917 GALNT11 polypeptide N-acetylgalactosaminyltransferase 11 protein-coding 10.15 0.9875
-6392 SDHD succinate dehydrogenase complex subunit D protein-coding 10.65 0.6683
-63920 ZBED8 zinc finger BED-type containing 8 protein-coding 7.05 0.8702
-63922 CHTF18 chromosome transmission fidelity factor 18 protein-coding 8.473 1.2
+63915 BLOC1S5 biogenesis of lysosomal organelles complex 1 subunit 5 protein-coding 8.241 0.6179
+63916 ELMO2 engulfment and cell motility 2 protein-coding 10.03 0.6769
+63917 GALNT11 polypeptide N-acetylgalactosaminyltransferase 11 protein-coding 10.15 0.9871
+6392 SDHD succinate dehydrogenase complex subunit D protein-coding 10.65 0.6681
+63920 ZBED8 zinc finger BED-type containing 8 protein-coding 7.05 0.8701
+63922 CHTF18 chromosome transmission fidelity factor 18 protein-coding 8.472 1.2
63923 TNN tenascin N protein-coding 3.73 2.176
63924 CIDEC cell death inducing DFFA like effector c protein-coding 2.272 2.4
-63925 ZNF335 zinc finger protein 335 protein-coding 9.181 0.5371
-63926 ANKEF1 ankyrin repeat and EF-hand domain containing 1 protein-coding 7.202 1.546
-63929 XPNPEP3 X-prolyl aminopeptidase 3 protein-coding 7.585 0.6727
-63931 MRPS14 mitochondrial ribosomal protein S14 protein-coding 8.625 0.4976
-63932 CXorf56 chromosome X open reading frame 56 protein-coding 7.541 0.7917
-63933 MCUR1 mitochondrial calcium uniporter regulator 1 protein-coding 8.47 0.6083
-63934 ZNF667 zinc finger protein 667 protein-coding 5.297 2.274
-63935 PCIF1 PDX1 C-terminal inhibiting factor 1 protein-coding 10.12 0.4946
-63939 FAM217B family with sequence similarity 217 member B protein-coding 7.507 1.214
-63940 GPSM3 G protein signaling modulator 3 protein-coding 8.493 1.296
+63925 ZNF335 zinc finger protein 335 protein-coding 9.181 0.5372
+63926 ANKEF1 ankyrin repeat and EF-hand domain containing 1 protein-coding 7.202 1.545
+63929 XPNPEP3 X-prolyl aminopeptidase 3 protein-coding 7.584 0.6726
+63931 MRPS14 mitochondrial ribosomal protein S14 protein-coding 8.624 0.4976
+63932 CXorf56 chromosome X open reading frame 56 protein-coding 7.541 0.7913
+63933 MCUR1 mitochondrial calcium uniporter regulator 1 protein-coding 8.47 0.6086
+63934 ZNF667 zinc finger protein 667 protein-coding 5.299 2.274
+63935 PCIF1 PDX1 C-terminal inhibiting factor 1 protein-coding 10.12 0.4944
+63939 FAM217B family with sequence similarity 217 member B protein-coding 7.507 1.213
+63940 GPSM3 G protein signaling modulator 3 protein-coding 8.494 1.296
63941 NECAB3 N-terminal EF-hand calcium binding protein 3 protein-coding 9.084 1.098
-63943 FKBPL FK506 binding protein like protein-coding 7.389 0.7202
-6396 SEC13 SEC13 homolog, nuclear pore and COPII coat complex component protein-coding 11.11 0.5509
-63967 CLSPN claspin protein-coding 6.016 2.13
-6397 SEC14L1 SEC14 like lipid binding 1 protein-coding 10.84 0.8207
-63970 TP53AIP1 tumor protein p53 regulated apoptosis inducing protein 1 protein-coding 2.903 2.419
+63943 FKBPL FK506 binding protein like protein-coding 7.388 0.7203
+6396 SEC13 SEC13 homolog, nuclear pore and COPII coat complex component protein-coding 11.11 0.5508
+63967 CLSPN claspin protein-coding 6.014 2.131
+6397 SEC14L1 SEC14 like lipid binding 1 protein-coding 10.84 0.8203
+63970 TP53AIP1 tumor protein p53 regulated apoptosis inducing protein 1 protein-coding 2.902 2.419
63971 KIF13A kinesin family member 13A protein-coding 9.663 1.067
-63976 PRDM16 PR/SET domain 16 protein-coding 5.236 2.464
-63977 PRDM15 PR/SET domain 15 protein-coding 7.753 0.6852
-63979 FIGNL1 fidgetin like 1 protein-coding 8.139 0.8934
+63976 PRDM16 PR/SET domain 16 protein-coding 5.238 2.465
+63977 PRDM15 PR/SET domain 15 protein-coding 7.752 0.6851
+63979 FIGNL1 fidgetin like 1 protein-coding 8.138 0.8933
6398 SECTM1 secreted and transmembrane 1 protein-coding 8.224 1.895
-6399 TRAPPC2 trafficking protein particle complex 2 protein-coding 8.311 0.6082
-640 BLK BLK proto-oncogene, Src family tyrosine kinase protein-coding 2.874 2.298
-6400 SEL1L SEL1L ERAD E3 ligase adaptor subunit protein-coding 11.3 0.775
-64005 MYO1G myosin IG protein-coding 7.173 1.925
-6401 SELE selectin E protein-coding 5.235 2.569
-6402 SELL selectin L protein-coding 7.28 1.972
-6403 SELP selectin P protein-coding 5.565 2.457
-6404 SELPLG selectin P ligand protein-coding 8.503 1.44
+6399 TRAPPC2 trafficking protein particle complex 2 protein-coding 8.311 0.608
+640 BLK BLK proto-oncogene, Src family tyrosine kinase protein-coding 2.876 2.299
+6400 SEL1L SEL1L ERAD E3 ligase adaptor subunit protein-coding 11.3 0.7747
+64005 MYO1G myosin IG protein-coding 7.174 1.926
+6401 SELE selectin E protein-coding 5.237 2.569
+6402 SELL selectin L protein-coding 7.281 1.972
+6403 SELP selectin P protein-coding 5.567 2.458
+6404 SELPLG selectin P ligand protein-coding 8.504 1.44
6405 SEMA3F semaphorin 3F protein-coding 9.889 1.704
-64061 TSPYL2 TSPY like 2 protein-coding 9.341 1.213
-64062 RBM26 RNA binding motif protein 26 protein-coding 9.403 0.615
+64061 TSPYL2 TSPY like 2 protein-coding 9.342 1.213
+64062 RBM26 RNA binding motif protein 26 protein-coding 9.403 0.6148
64064 OXCT2 3-oxoacid CoA-transferase 2 protein-coding 3.029 1.371
64065 PERP PERP, TP53 apoptosis effector protein-coding 11.96 2.529
-64067 NPAS3 neuronal PAS domain protein 3 protein-coding 4.933 2.796
-64072 CDH23 cadherin related 23 protein-coding 5.668 1.968
-64073 C19orf33 chromosome 19 open reading frame 33 protein-coding 7.451 3.849
-64077 LHPP phospholysine phosphohistidine inorganic pyrophosphate phosphatase protein-coding 8.824 1.072
-64078 SLC28A3 solute carrier family 28 member 3 protein-coding 3.144 2.84
+64067 NPAS3 neuronal PAS domain protein 3 protein-coding 4.933 2.795
+64072 CDH23 cadherin related 23 protein-coding 5.67 1.968
+64073 C19orf33 chromosome 19 open reading frame 33 protein-coding 7.451 3.848
+64077 LHPP phospholysine phosphohistidine inorganic pyrophosphate phosphatase protein-coding 8.823 1.072
+64078 SLC28A3 solute carrier family 28 member 3 protein-coding 3.144 2.841
64080 RBKS ribokinase protein-coding 6.644 1.242
64081 PBLD phenazine biosynthesis like protein domain containing protein-coding 7.501 1.642
-64083 GOLPH3 golgi phosphoprotein 3 protein-coding 11.29 0.6956
-64084 CLSTN2 calsyntenin 2 protein-coding 5.51 2.612
+64083 GOLPH3 golgi phosphoprotein 3 protein-coding 11.29 0.6954
+64084 CLSTN2 calsyntenin 2 protein-coding 5.511 2.612
64087 MCCC2 methylcrotonoyl-CoA carboxylase 2 protein-coding 10.93 1.021
-64089 SNX16 sorting nexin 16 protein-coding 7.826 0.8047
-64090 GAL3ST2 galactose-3-O-sulfotransferase 2 protein-coding 1.953 1.944
-64091 POPDC2 popeye domain containing 2 protein-coding 5.413 1.436
-64092 SAMSN1 SAM domain, SH3 domain and nuclear localization signals 1 protein-coding 6.778 1.623
-64093 SMOC1 SPARC related modular calcium binding 1 protein-coding 6.428 3.448
-64094 SMOC2 SPARC related modular calcium binding 2 protein-coding 8.554 2.103
-64097 EPB41L4A erythrocyte membrane protein band 4.1 like 4A protein-coding 8.534 1.371
-64098 PARVG parvin gamma protein-coding 7.597 1.497
-641 BLM Bloom syndrome RecQ like helicase protein-coding 7.074 1.614
-64101 LRRC4 leucine rich repeat containing 4 protein-coding 6.091 2.294
-64105 CENPK centromere protein K protein-coding 6.276 1.708
-64108 RTP4 receptor transporter protein 4 protein-coding 7.075 1.494
-64110 MAGEF1 MAGE family member F1 protein-coding 10.08 0.7584
-64112 MOAP1 modulator of apoptosis 1 protein-coding 9.574 0.8929
+64089 SNX16 sorting nexin 16 protein-coding 7.827 0.8044
+64090 GAL3ST2 galactose-3-O-sulfotransferase 2 protein-coding 1.952 1.943
+64091 POPDC2 popeye domain containing 2 protein-coding 5.415 1.438
+64092 SAMSN1 SAM domain, SH3 domain and nuclear localization signals 1 protein-coding 6.779 1.624
+64093 SMOC1 SPARC related modular calcium binding 1 protein-coding 6.43 3.447
+64094 SMOC2 SPARC related modular calcium binding 2 protein-coding 8.556 2.103
+64097 EPB41L4A erythrocyte membrane protein band 4.1 like 4A protein-coding 8.535 1.371
+64098 PARVG parvin gamma protein-coding 7.598 1.498
+641 BLM Bloom syndrome RecQ like helicase protein-coding 7.072 1.614
+64101 LRRC4 leucine rich repeat containing 4 protein-coding 6.092 2.294
+64105 CENPK centromere protein K protein-coding 6.274 1.709
+64108 RTP4 receptor transporter protein 4 protein-coding 7.075 1.493
+64110 MAGEF1 MAGE family member F1 protein-coding 10.08 0.7581
+64112 MOAP1 modulator of apoptosis 1 protein-coding 9.575 0.8928
64114 TMBIM1 transmembrane BAX inhibitor motif containing 1 protein-coding 11.98 1.031
-64115 VSIR V-set immunoregulatory receptor protein-coding 9.75 1.167
-64116 SLC39A8 solute carrier family 39 member 8 protein-coding 9.228 1.387
-64118 DUS1L dihydrouridine synthase 1 like protein-coding 10.77 0.8719
-64121 RRAGC Ras related GTP binding C protein-coding 8.09 1.038
-64122 FN3K fructosamine 3 kinase protein-coding 8.803 1.421
+64115 VSIR V-set immunoregulatory receptor protein-coding 9.751 1.167
+64116 SLC39A8 solute carrier family 39 member 8 protein-coding 9.228 1.388
+64118 DUS1L dihydrouridine synthase 1 like protein-coding 10.77 0.8717
+64121 RRAGC Ras related GTP binding C protein-coding 8.09 1.037
+64122 FN3K fructosamine 3 kinase protein-coding 8.803 1.42
64123 ADGRL4 adhesion G protein-coupled receptor L4 protein-coding 8.252 1.353
64127 NOD2 nucleotide binding oligomerization domain containing 2 protein-coding 6.067 1.783
-64129 TINAGL1 tubulointerstitial nephritis antigen like 1 protein-coding 9.925 1.855
-641298 SMG1P1 SMG1 pseudogene 1 pseudo 5.336 1.644
-64130 LIN7B lin-7 homolog B, crumbs cell polarity complex component protein-coding 5.761 1.173
-64131 XYLT1 xylosyltransferase 1 protein-coding 8.268 1.732
-641311 RPL31P11 ribosomal protein L31 pseudogene 11 pseudo 2.185 0.9679
-64132 XYLT2 xylosyltransferase 2 protein-coding 9.764 0.6736
-641339 ZNF674 zinc finger protein 674 protein-coding 5.994 0.657
+64129 TINAGL1 tubulointerstitial nephritis antigen like 1 protein-coding 9.926 1.855
+641298 SMG1P1 SMG1 pseudogene 1 pseudo 5.337 1.644
+64130 LIN7B lin-7 homolog B, crumbs cell polarity complex component protein-coding 5.762 1.173
+64131 XYLT1 xylosyltransferase 1 protein-coding 8.269 1.733
+641311 RPL31P11 ribosomal protein L31 pseudogene 11 pseudo 2.185 0.9681
+64132 XYLT2 xylosyltransferase 2 protein-coding 9.764 0.6737
+641339 ZNF674 zinc finger protein 674 protein-coding 5.994 0.6569
64135 IFIH1 interferon induced with helicase C domain 1 protein-coding 9.073 1.178
-641367 LOC641367 cyclin Y like 1 pseudogene pseudo 2.318 0.8674
-641371 ACOT1 acyl-CoA thioesterase 1 protein-coding 8.513 1.1
+641367 LOC641367 cyclin Y like 1 pseudogene pseudo 2.319 0.8674
+641371 ACOT1 acyl-CoA thioesterase 1 protein-coding 8.513 1.099
641372 ACOT6 acyl-CoA thioesterase 6 protein-coding 1.488 1.274
-6414 SELENOP selenoprotein P protein-coding 11.81 1.765
-64145 RBSN rabenosyn, RAB effector protein-coding 9.461 0.7174
-641455 POTEM POTE ankyrin domain family member M protein-coding 4.589 1.592
+6414 SELENOP selenoprotein P protein-coding 11.81 1.764
+64145 RBSN rabenosyn, RAB effector protein-coding 9.461 0.7173
+641455 POTEM POTE ankyrin domain family member M protein-coding 4.59 1.593
64146 PDF peptide deformylase, mitochondrial protein-coding 7.54 0.8921
-64147 KIF9 kinesin family member 9 protein-coding 6.971 1.029
-64149 C17orf75 chromosome 17 open reading frame 75 protein-coding 8.003 0.6475
-6415 SELENOW selenoprotein W protein-coding 11.67 0.8686
-64151 NCAPG non-SMC condensin I complex subunit G protein-coding 8.004 1.938
-6416 MAP2K4 mitogen-activated protein kinase kinase 4 protein-coding 9.475 0.599
-641638 SNHG6 small nucleolar RNA host gene 6 ncRNA 9.973 0.9017
+64147 KIF9 kinesin family member 9 protein-coding 6.97 1.029
+64149 C17orf75 chromosome 17 open reading frame 75 protein-coding 8.003 0.6474
+6415 SELENOW selenoprotein W protein-coding 11.67 0.8682
+64151 NCAPG non-SMC condensin I complex subunit G protein-coding 8.002 1.939
+6416 MAP2K4 mitogen-activated protein kinase kinase 4 protein-coding 9.475 0.5987
+641638 SNHG6 small nucleolar RNA host gene 6 ncRNA 9.972 0.9014
641649 TMEM91 transmembrane protein 91 protein-coding 6.863 1.37
64167 ERAP2 endoplasmic reticulum aminopeptidase 2 protein-coding 9.007 1.996
-64168 NECAB1 N-terminal EF-hand calcium binding protein 1 protein-coding 5.633 2.104
+64168 NECAB1 N-terminal EF-hand calcium binding protein 1 protein-coding 5.635 2.104
64170 CARD9 caspase recruitment domain family member 9 protein-coding 5.49 1.479
-641700 ECSCR endothelial cell surface expressed chemotaxis and apoptosis regulator protein-coding 5.721 1.369
-64172 OSGEPL1 O-sialoglycoprotein endopeptidase like 1 protein-coding 7.337 0.623
-64174 DPEP2 dipeptidase 2 protein-coding 5.076 1.484
-64175 P3H1 prolyl 3-hydroxylase 1 protein-coding 9.635 0.9396
+641700 ECSCR endothelial cell surface expressed chemotaxis and apoptosis regulator protein-coding 5.722 1.369
+64172 OSGEPL1 O-sialoglycoprotein endopeptidase like 1 protein-coding 7.337 0.6228
+64174 DPEP2 dipeptidase 2 protein-coding 5.078 1.485
+64175 P3H1 prolyl 3-hydroxylase 1 protein-coding 9.634 0.9394
6418 SET SET nuclear proto-oncogene protein-coding 12.58 0.5263
64180 DPEP3 dipeptidase 3 protein-coding 1.121 1.5
-6419 SETMAR SET domain and mariner transposase fusion gene protein-coding 8.154 0.8633
-641977 SEPT7P2 septin 7 pseudogene 2 pseudo 7.003 0.7819
-642 BLMH bleomycin hydrolase protein-coding 9.637 0.8494
-64207 IRF2BPL interferon regulatory factor 2 binding protein like protein-coding 10.14 0.8376
+6419 SETMAR SET domain and mariner transposase fusion gene protein-coding 8.154 0.8631
+641977 SEPT7P2 septin 7 pseudogene 2 pseudo 7.004 0.7818
+642 BLMH bleomycin hydrolase protein-coding 9.637 0.8491
+64207 IRF2BPL interferon regulatory factor 2 binding protein like protein-coding 10.14 0.8373
6421 SFPQ splicing factor proline and glutamine rich protein-coding 12.15 0.5001
-64210 MMS19 MMS19 homolog, cytosolic iron-sulfur assembly component protein-coding 10.21 0.4921
-64215 DNAJC1 DnaJ heat shock protein family (Hsp40) member C1 protein-coding 9.445 0.859
-64216 TFB2M transcription factor B2, mitochondrial protein-coding 8.554 0.7706
+64210 MMS19 MMS19 homolog, cytosolic iron-sulfur assembly component protein-coding 10.21 0.492
+64215 DNAJC1 DnaJ heat shock protein family (Hsp40) member C1 protein-coding 9.445 0.8587
+64216 TFB2M transcription factor B2, mitochondrial protein-coding 8.554 0.7705
64218 SEMA4A semaphorin 4A protein-coding 8.886 1.687
-64219 PJA1 praja ring finger ubiquitin ligase 1 protein-coding 9.4 0.8632
-6422 SFRP1 secreted frizzled related protein 1 protein-coding 7.254 3.039
-64221 ROBO3 roundabout guidance receptor 3 protein-coding 6.297 1.614
-64222 TOR3A torsin family 3 member A protein-coding 10.15 0.68
-64223 MLST8 MTOR associated protein, LST8 homolog protein-coding 9.984 0.6086
-64224 HERPUD2 HERPUD family member 2 protein-coding 9.372 0.4131
-64225 ATL2 atlastin GTPase 2 protein-coding 10.05 0.8345
-642280 ZNF876P zinc finger protein 876, pseudogene pseudo 3.704 1.379
-6423 SFRP2 secreted frizzled related protein 2 protein-coding 8.855 3.809
-64231 MS4A6A membrane spanning 4-domains A6A protein-coding 8.71 1.534
-64236 PDLIM2 PDZ and LIM domain 2 protein-coding 8.836 0.9993
-6424 SFRP4 secreted frizzled related protein 4 protein-coding 8.201 2.965
-64240 ABCG5 ATP binding cassette subfamily G member 5 protein-coding 2.032 2.169
-64241 ABCG8 ATP binding cassette subfamily G member 8 protein-coding 1.232 2.367
-642475 MROH6 maestro heat like repeat family member 6 protein-coding 7.428 1.858
-6425 SFRP5 secreted frizzled related protein 5 protein-coding 2.47 2.714
-6426 SRSF1 serine and arginine rich splicing factor 1 protein-coding 12.03 0.4446
+64219 PJA1 praja ring finger ubiquitin ligase 1 protein-coding 9.4 0.8629
+6422 SFRP1 secreted frizzled related protein 1 protein-coding 7.256 3.039
+64221 ROBO3 roundabout guidance receptor 3 protein-coding 6.298 1.614
+64222 TOR3A torsin family 3 member A protein-coding 10.15 0.6802
+64223 MLST8 MTOR associated protein, LST8 homolog protein-coding 9.984 0.6085
+64224 HERPUD2 HERPUD family member 2 protein-coding 9.372 0.4129
+64225 ATL2 atlastin GTPase 2 protein-coding 10.05 0.8344
+642280 ZNF876P zinc finger protein 876, pseudogene pseudo 3.705 1.379
+6423 SFRP2 secreted frizzled related protein 2 protein-coding 8.857 3.809
+64231 MS4A6A membrane spanning 4-domains A6A protein-coding 8.711 1.533
+64236 PDLIM2 PDZ and LIM domain 2 protein-coding 8.837 0.9992
+6424 SFRP4 secreted frizzled related protein 4 protein-coding 8.202 2.965
+64240 ABCG5 ATP binding cassette subfamily G member 5 protein-coding 2.032 2.168
+64241 ABCG8 ATP binding cassette subfamily G member 8 protein-coding 1.232 2.366
+642475 MROH6 maestro heat like repeat family member 6 protein-coding 7.426 1.858
+6425 SFRP5 secreted frizzled related protein 5 protein-coding 2.474 2.718
+6426 SRSF1 serine and arginine rich splicing factor 1 protein-coding 12.03 0.4445
642658 SCX scleraxis bHLH transcription factor protein-coding 2.738 1.792
6427 SRSF2 serine and arginine rich splicing factor 2 protein-coding 11.74 0.5076
-6428 SRSF3 serine and arginine rich splicing factor 3 protein-coding 12.24 0.4969
-642819 ZNF487 zinc finger protein 487 protein-coding 4.766 0.8396
-64282 PAPD5 poly(A) RNA polymerase D5, non-canonical protein-coding 8.56 0.6413
-642826 BMS1P2 BMS1, ribosome biogenesis factor pseudogene 2 pseudo 6.043 0.9582
+6428 SRSF3 serine and arginine rich splicing factor 3 protein-coding 12.24 0.4967
+642819 ZNF487 zinc finger protein 487 protein-coding 4.766 0.8392
+64282 PAPD5 poly(A) RNA polymerase D5, non-canonical protein-coding 8.56 0.641
+642826 BMS1P2 BMS1, ribosome biogenesis factor pseudogene 2 pseudo 6.043 0.958
64283 ARHGEF28 Rho guanine nucleotide exchange factor 28 protein-coding 8.075 1.771
64284 RAB17 RAB17, member RAS oncogene family protein-coding 7.627 2.668
-642846 LOC642846 DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide 11-like ncRNA 7.262 1.164
+642846 LOC642846 DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide 11-like ncRNA 7.261 1.164
64285 RHBDF1 rhomboid 5 homolog 1 protein-coding 9.278 1.098
642852 LOC642852 uncharacterized LOC642852 ncRNA 8.032 1.049
64288 ZSCAN31 zinc finger and SCAN domain containing 31 protein-coding 7.421 1.147
-6429 SRSF4 serine and arginine rich splicing factor 4 protein-coding 10.95 0.4915
+6429 SRSF4 serine and arginine rich splicing factor 4 protein-coding 10.95 0.4913
642938 FAM196A family with sequence similarity 196 member A protein-coding 2.932 2.177
-642946 FLVCR1-DT FLVCR1 divergent transcript ncRNA 4.731 1.393
-642987 TMEM232 transmembrane protein 232 protein-coding 3.269 1.968
-643 CXCR5 C-X-C motif chemokine receptor 5 protein-coding 3.373 2.093
-6430 SRSF5 serine and arginine rich splicing factor 5 protein-coding 11.69 0.617
-643008 SMIM5 small integral membrane protein 5 protein-coding 5.029 2.128
-643036 SLED1 proteoglycan 3 pseudogene pseudo 1.147 1.135
-6431 SRSF6 serine and arginine rich splicing factor 6 protein-coding 11.7 0.532
-643155 SMIM15 small integral membrane protein 15 protein-coding 10.29 0.5477
-64318 NOC3L NOC3 like DNA replication regulator protein-coding 8.608 0.5915
-64319 FBRS fibrosin protein-coding 10.71 0.5457
-6432 SRSF7 serine and arginine rich splicing factor 7 protein-coding 10.97 0.5337
-64320 RNF25 ring finger protein 25 protein-coding 8.86 0.5805
-643224 TUBBP5 tubulin beta pseudogene 5 pseudo 4.598 2.52
-64324 NSD1 nuclear receptor binding SET domain protein 1 protein-coding 10.68 0.6373
-643246 MAP1LC3B2 microtubule associated protein 1 light chain 3 beta 2 protein-coding 8.019 0.6488
-643253 CCT6P1 chaperonin containing TCP1 subunit 6 pseudogene 1 pseudo 6.29 0.8218
-64326 COP1 COP1, E3 ubiquitin ligase protein-coding 9.895 0.5469
-64327 LMBR1 limb development membrane protein 1 protein-coding 9.884 0.6563
-64328 XPO4 exportin 4 protein-coding 9.187 0.646
-6433 SFSWAP splicing factor SWAP protein-coding 9.84 0.5018
-643314 KIAA0754 KIAA0754 protein-coding 6.266 1.774
-64332 NFKBIZ NFKB inhibitor zeta protein-coding 8.609 1.749
-64333 ARHGAP9 Rho GTPase activating protein 9 protein-coding 6.994 1.532
-643338 C15orf62 chromosome 15 open reading frame 62 protein-coding 5.371 1.185
-643376 BTBD18 BTB domain containing 18 protein-coding 1.138 0.898
-643382 TMEM253 transmembrane protein 253 protein-coding 4.159 1.429
-643387 LOC643387 TAR DNA binding protein pseudogene pseudo 5.435 0.8392
-6434 TRA2B transformer 2 beta homolog protein-coding 11.3 0.4836
-64342 HS1BP3 HCLS1 binding protein 3 protein-coding 9.678 0.677
-64343 AZI2 5-azacytidine induced 2 protein-coding 9.56 0.5118
-64344 HIF3A hypoxia inducible factor 3 alpha subunit protein-coding 5.152 2.621
-64359 NXN nucleoredoxin protein-coding 9.561 1.549
-643641 ZNF862 zinc finger protein 862 protein-coding 8.718 1.055
+642946 FLVCR1-DT FLVCR1 divergent transcript ncRNA 4.731 1.392
+642987 TMEM232 transmembrane protein 232 protein-coding 3.27 1.968
+643 CXCR5 C-X-C motif chemokine receptor 5 protein-coding 3.374 2.094
+6430 SRSF5 serine and arginine rich splicing factor 5 protein-coding 11.69 0.6172
+643008 SMIM5 small integral membrane protein 5 protein-coding 5.03 2.127
+643036 SLED1 proteoglycan 3 pseudogene pseudo 1.147 1.134
+6431 SRSF6 serine and arginine rich splicing factor 6 protein-coding 11.7 0.5318
+643155 SMIM15 small integral membrane protein 15 protein-coding 10.29 0.5476
+64318 NOC3L NOC3 like DNA replication regulator protein-coding 8.608 0.5913
+64319 FBRS fibrosin protein-coding 10.71 0.5455
+6432 SRSF7 serine and arginine rich splicing factor 7 protein-coding 10.97 0.5335
+64320 RNF25 ring finger protein 25 protein-coding 8.86 0.5804
+643224 TUBBP5 tubulin beta pseudogene 5 pseudo 4.599 2.521
+64324 NSD1 nuclear receptor binding SET domain protein 1 protein-coding 10.69 0.6371
+643246 MAP1LC3B2 microtubule associated protein 1 light chain 3 beta 2 protein-coding 8.019 0.6486
+643253 CCT6P1 chaperonin containing TCP1 subunit 6 pseudogene 1 pseudo 6.29 0.8215
+64326 COP1 COP1, E3 ubiquitin ligase protein-coding 9.895 0.5468
+64327 LMBR1 limb development membrane protein 1 protein-coding 9.884 0.656
+64328 XPO4 exportin 4 protein-coding 9.187 0.6459
+6433 SFSWAP splicing factor SWAP protein-coding 9.84 0.5017
+643314 KIAA0754 KIAA0754 protein-coding 6.267 1.774
+64332 NFKBIZ NFKB inhibitor zeta protein-coding 8.61 1.749
+64333 ARHGAP9 Rho GTPase activating protein 9 protein-coding 6.995 1.533
+643338 C15orf62 chromosome 15 open reading frame 62 protein-coding 5.372 1.185
+643376 BTBD18 BTB domain containing 18 protein-coding 1.138 0.8984
+643382 TMEM253 transmembrane protein 253 protein-coding 4.158 1.429
+643387 LOC643387 TAR DNA binding protein pseudogene pseudo 5.435 0.8389
+6434 TRA2B transformer 2 beta homolog protein-coding 11.3 0.4835
+64342 HS1BP3 HCLS1 binding protein 3 protein-coding 9.678 0.6768
+64343 AZI2 5-azacytidine induced 2 protein-coding 9.56 0.5117
+64344 HIF3A hypoxia inducible factor 3 alpha subunit protein-coding 5.155 2.621
+64359 NXN nucleoredoxin protein-coding 9.561 1.548
+643641 ZNF862 zinc finger protein 862 protein-coding 8.718 1.054
643677 CCDC168 coiled-coil domain containing 168 protein-coding 1.619 1.079
643719 SCGB1B2P secretoglobin family 1B member 2, pseudogene pseudo 2.723 1.352
-64374 SIL1 SIL1 nucleotide exchange factor protein-coding 10.02 0.9174
-64375 IKZF4 IKAROS family zinc finger 4 protein-coding 7.736 0.8915
-64376 IKZF5 IKAROS family zinc finger 5 protein-coding 8.731 0.6124
-643763 UG0898H09 uncharacterized LOC643763 ncRNA 2.521 3.142
-643834 PGA3 pepsinogen 3, group I (pepsinogen A) protein-coding 1.908 2.322
-643836 ZFP62 ZFP62 zinc finger protein protein-coding 8.939 0.6872
-643837 LINC01128 long intergenic non-protein coding RNA 1128 ncRNA 7.081 0.6558
-643853 TMPPE transmembrane protein with metallophosphoesterase domain protein-coding 5.202 0.9642
-643854 CTAGE9 CTAGE family member 9 protein-coding 6.776 2.13
-64386 MMP25 matrix metallopeptidase 25 protein-coding 5.596 1.386
-643866 CBLN3 cerebellin 3 precursor protein-coding 5.929 1.227
-64388 GREM2 gremlin 2, DAN family BMP antagonist protein-coding 4.212 2.672
-6439 SFTPB surfactant protein B protein-coding 3.519 5.181
-643904 RNF222 ring finger protein 222 protein-coding 1.431 1.779
+64374 SIL1 SIL1 nucleotide exchange factor protein-coding 10.02 0.9171
+64375 IKZF4 IKAROS family zinc finger 4 protein-coding 7.736 0.8913
+64376 IKZF5 IKAROS family zinc finger 5 protein-coding 8.731 0.6122
+643763 UG0898H09 uncharacterized LOC643763 ncRNA 2.522 3.141
+643834 PGA3 pepsinogen 3, group I (pepsinogen A) protein-coding 1.909 2.323
+643836 ZFP62 ZFP62 zinc finger protein protein-coding 8.939 0.687
+643837 LINC01128 long intergenic non-protein coding RNA 1128 ncRNA 7.081 0.6556
+643853 TMPPE transmembrane protein with metallophosphoesterase domain protein-coding 5.203 0.964
+643854 CTAGE9 CTAGE family member 9 protein-coding 6.776 2.129
+64386 MMP25 matrix metallopeptidase 25 protein-coding 5.597 1.388
+643866 CBLN3 cerebellin 3 precursor protein-coding 5.93 1.227
+64388 GREM2 gremlin 2, DAN family BMP antagonist protein-coding 4.213 2.672
+6439 SFTPB surfactant protein B protein-coding 3.521 5.182
+643904 RNF222 ring finger protein 222 protein-coding 1.43 1.779
64393 ZMAT3 zinc finger matrin-type 3 protein-coding 6.833 1.217
-64395 GMCL1 germ cell-less, spermatogenesis associated 1 protein-coding 8.071 0.9939
+64395 GMCL1 germ cell-less, spermatogenesis associated 1 protein-coding 8.072 0.9935
64396 GMCL2 germ cell-less, spermatogenesis associated 2 protein-coding 2.155 1.002
-64397 ZNF106 zinc finger protein 106 protein-coding 10.52 0.8297
-64398 MPP5 membrane palmitoylated protein 5 protein-coding 9.532 0.723
-64399 HHIP hedgehog interacting protein protein-coding 3.336 2.584
-644 BLVRA biliverdin reductase A protein-coding 9.641 0.9785
-64400 AKTIP AKT interacting protein protein-coding 9.062 0.7402
-644019 CBWD6 COBW domain containing 6 protein-coding 7.019 0.9173
+64397 ZNF106 zinc finger protein 106 protein-coding 10.52 0.8296
+64398 MPP5 membrane palmitoylated protein 5 protein-coding 9.532 0.7231
+64399 HHIP hedgehog interacting protein protein-coding 3.338 2.585
+644 BLVRA biliverdin reductase A protein-coding 9.641 0.9783
+64400 AKTIP AKT interacting protein protein-coding 9.062 0.7399
+644019 CBWD6 COBW domain containing 6 protein-coding 7.018 0.9172
64403 CDH24 cadherin 24 protein-coding 7.663 1.215
-64407 RGS18 regulator of G protein signaling 18 protein-coding 4.571 1.554
-64409 GALNT17 polypeptide N-acetylgalactosaminyltransferase 17 protein-coding 5.161 2.941
-644096 SDHAF1 succinate dehydrogenase complex assembly factor 1 protein-coding 8.04 0.663
-6441 SFTPD surfactant protein D protein-coding 4.471 2.847
+64407 RGS18 regulator of G protein signaling 18 protein-coding 4.572 1.554
+64409 GALNT17 polypeptide N-acetylgalactosaminyltransferase 17 protein-coding 5.164 2.94
+644096 SDHAF1 succinate dehydrogenase complex assembly factor 1 protein-coding 8.04 0.6628
+6441 SFTPD surfactant protein D protein-coding 4.473 2.848
64410 KLHL25 kelch like family member 25 protein-coding 8.073 1
64411 ARAP3 ArfGAP with RhoGAP domain, ankyrin repeat and PH domain 3 protein-coding 8.429 1.203
-64412 GZF1 GDNF inducible zinc finger protein 1 protein-coding 8.767 0.5642
+64412 GZF1 GDNF inducible zinc finger protein 1 protein-coding 8.767 0.564
644128 RPL23AP53 ribosomal protein L23a pseudogene 53 pseudo 7.054 0.8031
-644139 PIRT phosphoinositide interacting regulator of transient receptor potential channels protein-coding 1.333 2.342
-644150 WIPF3 WAS/WASL interacting protein family member 3 protein-coding 4.042 1.829
-644165 BCRP3 breakpoint cluster region pseudogene 3 pseudo 3.616 1.697
+644139 PIRT phosphoinositide interacting regulator of transient receptor potential channels protein-coding 1.336 2.345
+644150 WIPF3 WAS/WASL interacting protein family member 3 protein-coding 4.043 1.828
+644165 BCRP3 breakpoint cluster region pseudogene 3 pseudo 3.617 1.697
64417 TMEM267 transmembrane protein 267 protein-coding 8.099 0.721
-644172 MAPK8IP1P2 mitogen-activated protein kinase 8 interacting protein 1 pseudogene 2 pseudo 4.133 1.906
-64418 TMEM168 transmembrane protein 168 protein-coding 9.291 0.7204
-64419 MTMR14 myotubularin related protein 14 protein-coding 9.659 0.568
-6442 SGCA sarcoglycan alpha protein-coding 3.904 2.334
-64420 SUSD1 sushi domain containing 1 protein-coding 7.942 1.004
-64421 DCLRE1C DNA cross-link repair 1C protein-coding 7.915 0.8116
+644172 MAPK8IP1P2 mitogen-activated protein kinase 8 interacting protein 1 pseudogene 2 pseudo 4.134 1.905
+64418 TMEM168 transmembrane protein 168 protein-coding 9.291 0.7201
+64419 MTMR14 myotubularin related protein 14 protein-coding 9.659 0.5684
+6442 SGCA sarcoglycan alpha protein-coding 3.907 2.335
+64420 SUSD1 sushi domain containing 1 protein-coding 7.943 1.004
+64421 DCLRE1C DNA cross-link repair 1C protein-coding 7.915 0.8113
64422 ATG3 autophagy related 3 protein-coding 9.799 0.5198
-64423 INF2 inverted formin, FH2 and WH2 domain containing protein-coding 11.09 0.9424
-64425 POLR1E RNA polymerase I subunit E protein-coding 8.833 0.6509
-64426 SUDS3 SDS3 homolog, SIN3A corepressor complex component protein-coding 10.16 0.5763
-64427 TTC31 tetratricopeptide repeat domain 31 protein-coding 9.001 0.5176
-64428 NARFL nuclear prelamin A recognition factor like protein-coding 9.35 0.64
-64429 ZDHHC6 zinc finger DHHC-type containing 6 protein-coding 9.488 0.4874
-6443 SGCB sarcoglycan beta protein-coding 9.761 1.188
-64430 PCNX4 pecanex homolog 4 protein-coding 9.371 0.8033
-64431 ACTR6 ARP6 actin related protein 6 homolog protein-coding 8.945 0.5521
-64432 MRPS25 mitochondrial ribosomal protein S25 protein-coding 9.97 0.7404
-64434 NOM1 nucleolar protein with MIF4G domain 1 protein-coding 8.785 0.5844
-644353 ZCCHC18 zinc finger CCHC-type containing 18 protein-coding 3.681 1.8
-6444 SGCD sarcoglycan delta protein-coding 6.913 2.302
-64446 DNAI2 dynein axonemal intermediate chain 2 protein-coding 1.019 1.668
-6445 SGCG sarcoglycan gamma protein-coding 1.988 1.901
+64423 INF2 inverted formin, FH2 and WH2 domain containing protein-coding 11.09 0.9423
+64425 POLR1E RNA polymerase I subunit E protein-coding 8.833 0.6506
+64426 SUDS3 SDS3 homolog, SIN3A corepressor complex component protein-coding 10.16 0.5762
+64427 TTC31 tetratricopeptide repeat domain 31 protein-coding 9.001 0.5175
+64428 NARFL nuclear prelamin A recognition factor like protein-coding 9.35 0.6398
+64429 ZDHHC6 zinc finger DHHC-type containing 6 protein-coding 9.488 0.4873
+6443 SGCB sarcoglycan beta protein-coding 9.762 1.188
+64430 PCNX4 pecanex homolog 4 protein-coding 9.371 0.8032
+64431 ACTR6 ARP6 actin related protein 6 homolog protein-coding 8.945 0.5519
+64432 MRPS25 mitochondrial ribosomal protein S25 protein-coding 9.97 0.7401
+64434 NOM1 nucleolar protein with MIF4G domain 1 protein-coding 8.785 0.5843
+644353 ZCCHC18 zinc finger CCHC-type containing 18 protein-coding 3.682 1.8
+6444 SGCD sarcoglycan delta protein-coding 6.914 2.301
+64446 DNAI2 dynein axonemal intermediate chain 2 protein-coding 1.02 1.668
+6445 SGCG sarcoglycan gamma protein-coding 1.989 1.901
644511 RPL13AP6 ribosomal protein L13a pseudogene 6 pseudo 3.747 1.251
-644538 SMIM10 small integral membrane protein 10 protein-coding 6.012 1.452
-644591 PPIAL4G peptidylprolyl isomerase A like 4G protein-coding 4.351 0.8679
-644596 SMIM10L2B small integral membrane protein 10 like 2B protein-coding 5.048 1.708
+644538 SMIM10 small integral membrane protein 10 protein-coding 6.013 1.452
+644591 PPIAL4G peptidylprolyl isomerase A like 4G protein-coding 4.35 0.8683
+644596 SMIM10L2B small integral membrane protein 10 like 2B protein-coding 5.05 1.708
6446 SGK1 serum/glucocorticoid regulated kinase 1 protein-coding 10.62 1.471
-644619 INTS4P2 integrator complex subunit 4 pseudogene 2 pseudo 3.379 0.8717
-6447 SCG5 secretogranin V protein-coding 6.473 2.716
-64478 CSMD1 CUB and Sushi multiple domains 1 protein-coding 3.064 2.751
-6448 SGSH N-sulfoglucosamine sulfohydrolase protein-coding 9.756 0.756
-644809 C15orf56 chromosome 15 open reading frame 56 protein-coding 3.072 1.729
-644815 FAM83G family with sequence similarity 83 member G protein-coding 6.814 2.316
-644873 LINC01184 long intergenic non-protein coding RNA 1184 ncRNA 8.458 0.7248
-644890 MEIG1 meiosis/spermiogenesis associated 1 protein-coding 1.434 1.139
-6449 SGTA small glutamine rich tetratricopeptide repeat containing alpha protein-coding 10.97 0.5834
-64493 LINC00235 long intergenic non-protein coding RNA 235 ncRNA 1.142 0.8644
+644619 INTS4P2 integrator complex subunit 4 pseudogene 2 pseudo 3.379 0.8715
+6447 SCG5 secretogranin V protein-coding 6.475 2.717
+64478 CSMD1 CUB and Sushi multiple domains 1 protein-coding 3.065 2.75
+6448 SGSH N-sulfoglucosamine sulfohydrolase protein-coding 9.757 0.7558
+644809 C15orf56 chromosome 15 open reading frame 56 protein-coding 3.073 1.729
+644815 FAM83G family with sequence similarity 83 member G protein-coding 6.814 2.315
+644873 LINC01184 long intergenic non-protein coding RNA 1184 ncRNA 8.458 0.7245
+644890 MEIG1 meiosis/spermiogenesis associated 1 protein-coding 1.434 1.138
+6449 SGTA small glutamine rich tetratricopeptide repeat containing alpha protein-coding 10.97 0.5833
+64493 LINC00235 long intergenic non-protein coding RNA 235 ncRNA 1.142 0.8643
644936 LOC644936 actin beta pseudogene pseudo 5.071 1.151
644974 ALG1L2 ALG1, chitobiosyldiphosphodolichol beta-mannosyltransferase like 2 protein-coding 0.538 0.8341
-64499 TPSB2 tryptase beta 2 (gene/pseudogene) protein-coding 7.043 2.951
+64499 TPSB2 tryptase beta 2 (gene/pseudogene) protein-coding 7.044 2.951
645 BLVRB biliverdin reductase B protein-coding 10.17 1.072
6450 SH3BGR SH3 domain binding glutamate rich protein protein-coding 6.136 1.432
-64506 CPEB1 cytoplasmic polyadenylation element binding protein 1 protein-coding 3.517 2.555
+64506 CPEB1 cytoplasmic polyadenylation element binding protein 1 protein-coding 3.519 2.555
6451 SH3BGRL SH3 domain binding glutamate rich protein like protein-coding 11 1.134
-645121 CCNI2 cyclin I family member 2 protein-coding 4.192 2.152
-645142 PPIAL4D peptidylprolyl isomerase A like 4D protein-coding 1.233 0.7391
-645166 LOC645166 lymphocyte-specific protein 1 pseudogene pseudo 6.511 1.472
-64518 TEKT3 tektin 3 protein-coding 2.336 1.483
-6452 SH3BP2 SH3 domain binding protein 2 protein-coding 10.19 0.845
+645121 CCNI2 cyclin I family member 2 protein-coding 4.193 2.152
+645142 PPIAL4D peptidylprolyl isomerase A like 4D protein-coding 1.233 0.74
+645166 LOC645166 lymphocyte-specific protein 1 pseudogene pseudo 6.511 1.471
+64518 TEKT3 tektin 3 protein-coding 2.337 1.483
+6452 SH3BP2 SH3 domain binding protein 2 protein-coding 10.19 0.8449
6453 ITSN1 intersectin 1 protein-coding 9.345 0.7665
-645332 FAM86C2P family with sequence similarity 86, member A pseudogene pseudo 6.628 0.8218
-645367 GGT8P gamma-glutamyltransferase 8 pseudogene pseudo 1.749 1.827
+645332 FAM86C2P family with sequence similarity 86, member A pseudogene pseudo 6.628 0.8217
+645367 GGT8P gamma-glutamyltransferase 8 pseudogene pseudo 1.75 1.827
645431 FUT8-AS1 FUT8 antisense RNA 1 ncRNA 4.122 1.334
-645432 ARRDC5 arrestin domain containing 5 protein-coding 1.764 1.193
-645455 CEP170P1 centrosomal protein 170 pseudogene 1 pseudo 1.674 1.07
-6455 SH3GL1 SH3 domain containing GRB2 like 1, endophilin A2 protein-coding 11.07 0.6525
-6456 SH3GL2 SH3 domain containing GRB2 like 2, endophilin A1 protein-coding 3.361 3.085
-645644 FLJ42627 uncharacterized LOC645644 ncRNA 5.259 1.063
-645676 ASH1L-AS1 ASH1L antisense RNA 1 ncRNA 5.33 0.7524
-645683 RPL13AP3 ribosomal protein L13a pseudogene 3 pseudo 3.979 1.191
-645687 LINC00520 long intergenic non-protein coding RNA 520 ncRNA 1.528 1.963
-64577 ALDH8A1 aldehyde dehydrogenase 8 family member A1 protein-coding 3.882 2.671
+645432 ARRDC5 arrestin domain containing 5 protein-coding 1.765 1.194
+645455 CEP170P1 centrosomal protein 170 pseudogene 1 pseudo 1.674 1.069
+6455 SH3GL1 SH3 domain containing GRB2 like 1, endophilin A2 protein-coding 11.07 0.6526
+6456 SH3GL2 SH3 domain containing GRB2 like 2, endophilin A1 protein-coding 3.363 3.084
+645644 FLJ42627 uncharacterized LOC645644 ncRNA 5.259 1.062
+645676 ASH1L-AS1 ASH1L antisense RNA 1 ncRNA 5.33 0.7523
+645683 RPL13AP3 ribosomal protein L13a pseudogene 3 pseudo 3.98 1.191
+645687 LINC00520 long intergenic non-protein coding RNA 520 ncRNA 1.528 1.962
+64577 ALDH8A1 aldehyde dehydrogenase 8 family member A1 protein-coding 3.881 2.67
645784 ANKRD36BP2 ankyrin repeat domain 36B pseudogene 2 pseudo 3.958 2.199
-64581 CLEC7A C-type lectin domain containing 7A protein-coding 6.915 1.751
-645811 CCDC154 coiled-coil domain containing 154 protein-coding 3.229 1.808
-64582 GPR135 G protein-coupled receptor 135 protein-coding 3.663 1.208
-645840 TXNRD3NB thioredoxin reductase 3 neighbor protein-coding 7.428 0.8188
-64598 MOSPD3 motile sperm domain containing 3 protein-coding 8.597 0.7184
-64599 GIGYF1 GRB10 interacting GYF protein 1 protein-coding 10.46 0.7374
-64600 PLA2G2F phospholipase A2 group IIF protein-coding 1.737 2.697
-64601 VPS16 VPS16, CORVET/HOPS core subunit protein-coding 9.899 0.4988
-646023 ADORA2A-AS1 ADORA2A antisense RNA 1 ncRNA 2.55 2.131
-646024 RAET1K retinoic acid early transcript 1K pseudogene pseudo 2.255 1.434
+64581 CLEC7A C-type lectin domain containing 7A protein-coding 6.916 1.751
+645811 CCDC154 coiled-coil domain containing 154 protein-coding 3.23 1.808
+64582 GPR135 G protein-coupled receptor 135 protein-coding 3.665 1.209
+645840 TXNRD3NB thioredoxin reductase 3 neighbor protein-coding 7.428 0.8184
+64598 MOSPD3 motile sperm domain containing 3 protein-coding 8.597 0.7183
+64599 GIGYF1 GRB10 interacting GYF protein 1 protein-coding 10.46 0.7373
+64600 PLA2G2F phospholipase A2 group IIF protein-coding 1.737 2.696
+64601 VPS16 VPS16, CORVET/HOPS core subunit protein-coding 9.899 0.4986
+646023 ADORA2A-AS1 ADORA2A antisense RNA 1 ncRNA 2.55 2.13
+646024 RAET1K retinoic acid early transcript 1K pseudogene pseudo 2.254 1.434
646074 POM121L10P POM121 transmembrane nucleoporin like 10, pseudogene pseudo 2.715 1.471
-6461 SHB SH2 domain containing adaptor protein B protein-coding 9.381 0.9775
-6462 SHBG sex hormone binding globulin protein-coding 2.44 1.826
-646214 LOC646214 p21 protein (Cdc42/Rac)-activated kinase 2 pseudogene pseudo 6.787 0.8321
-646300 COL6A4P2 collagen type VI alpha 4 pseudogene 2 pseudo 2.057 1.49
-6464 SHC1 SHC adaptor protein 1 protein-coding 11.6 0.9161
-646405 TPTE2P1 transmembrane phosphoinositide 3-phosphatase and tensin homolog 2 pseudogene 1 pseudo 3.074 1.837
-64645 MFSD14A major facilitator superfamily domain containing 14A protein-coding 9.967 0.5743
-646450 ARIH2OS ariadne RBR E3 ubiquitin protein ligase 2 opposite strand protein-coding 4.988 0.9531
-646471 LOC646471 uncharacterized LOC646471 ncRNA 5.774 1.216
-64651 CSRNP1 cysteine and serine rich nuclear protein 1 protein-coding 9.591 0.9909
-646600 IGF2BP2-AS1 IGF2BP2 antisense RNA 1 ncRNA 0.4284 0.8228
-646658 SYNDIG1L synapse differentiation inducing 1 like protein-coding 2.374 1.809
-646762 LOC646762 uncharacterized LOC646762 ncRNA 8.001 1.1
-6468 FBXW4 F-box and WD repeat domain containing 4 protein-coding 10.22 0.718
-64682 ANAPC1 anaphase promoting complex subunit 1 protein-coding 9.127 0.7862
-646851 FAM227A family with sequence similarity 227 member A protein-coding 5.522 1.624
-64689 GORASP1 golgi reassembly stacking protein 1 protein-coding 9.944 0.5486
-646892 SH2D7 SH2 domain containing 7 protein-coding 1.044 1.064
-6469 SHH sonic hedgehog protein-coding 2.899 2.699
-64693 CTAGE1 cutaneous T cell lymphoma-associated antigen 1 protein-coding 2.83 1.15
-646982 LINC00598 long intergenic non-protein coding RNA 598 ncRNA 0.9905 0.8502
-64699 TMPRSS3 transmembrane serine protease 3 protein-coding 5.652 3.113
-646999 LOC646999 akirin 1 pseudogene pseudo 3.369 1.378
-6470 SHMT1 serine hydroxymethyltransferase 1 protein-coding 9.683 1.367
-647024 C6orf132 chromosome 6 open reading frame 132 protein-coding 6.48 2.708
-647033 PA2G4P4 proliferation-associated 2G4 pseudogene 4 pseudo 6.314 1.09
+6461 SHB SH2 domain containing adaptor protein B protein-coding 9.381 0.9771
+6462 SHBG sex hormone binding globulin protein-coding 2.439 1.825
+646214 LOC646214 p21 protein (Cdc42/Rac)-activated kinase 2 pseudogene pseudo 6.787 0.8319
+646300 COL6A4P2 collagen type VI alpha 4 pseudogene 2 pseudo 2.058 1.49
+6464 SHC1 SHC adaptor protein 1 protein-coding 11.6 0.9159
+646405 TPTE2P1 transmembrane phosphoinositide 3-phosphatase and tensin homolog 2 pseudogene 1 pseudo 3.075 1.837
+64645 MFSD14A major facilitator superfamily domain containing 14A protein-coding 9.967 0.5741
+646450 ARIH2OS ariadne RBR E3 ubiquitin protein ligase 2 opposite strand protein-coding 4.989 0.953
+646471 LOC646471 uncharacterized LOC646471 ncRNA 5.775 1.216
+64651 CSRNP1 cysteine and serine rich nuclear protein 1 protein-coding 9.592 0.9916
+646600 IGF2BP2-AS1 IGF2BP2 antisense RNA 1 ncRNA 0.4285 0.8226
+646658 SYNDIG1L synapse differentiation inducing 1 like protein-coding 2.375 1.808
+646762 LOC646762 uncharacterized LOC646762 ncRNA 8.002 1.1
+6468 FBXW4 F-box and WD repeat domain containing 4 protein-coding 10.22 0.7179
+64682 ANAPC1 anaphase promoting complex subunit 1 protein-coding 9.127 0.7859
+646851 FAM227A family with sequence similarity 227 member A protein-coding 5.522 1.623
+64689 GORASP1 golgi reassembly stacking protein 1 protein-coding 9.944 0.5485
+646892 SH2D7 SH2 domain containing 7 protein-coding 1.046 1.068
+6469 SHH sonic hedgehog protein-coding 2.901 2.699
+64693 CTAGE1 cutaneous T cell lymphoma-associated antigen 1 protein-coding 2.83 1.149
+646982 LINC00598 long intergenic non-protein coding RNA 598 ncRNA 0.9907 0.8501
+64699 TMPRSS3 transmembrane serine protease 3 protein-coding 5.654 3.113
+646999 LOC646999 akirin 1 pseudogene pseudo 3.368 1.377
+6470 SHMT1 serine hydroxymethyltransferase 1 protein-coding 9.682 1.368
+647024 C6orf132 chromosome 6 open reading frame 132 protein-coding 6.48 2.707
+647033 PA2G4P4 proliferation-associated 2G4 pseudogene 4 pseudo 6.313 1.09
647042 GOLGA6L10 golgin A6 family-like 10 protein-coding 6.466 1.11
-64708 COPS7B COP9 signalosome subunit 7B protein-coding 9.489 0.5002
-647087 STMP1 short transmembrane mitochondrial protein 1 protein-coding 10.47 0.5733
+64708 COPS7B COP9 signalosome subunit 7B protein-coding 9.489 0.4999
+647087 STMP1 short transmembrane mitochondrial protein 1 protein-coding 10.47 0.5731
64710 NUCKS1 nuclear casein kinase and cyclin dependent kinase substrate 1 protein-coding 12.85 0.5735
647121 EMBP1 embigin pseudogene 1 pseudo 5.295 1.717
-64714 PDIA2 protein disulfide isomerase family A member 2 protein-coding 3.204 2.735
-64718 UNKL unkempt family like zinc finger protein-coding 8.458 0.7467
-6472 SHMT2 serine hydroxymethyltransferase 2 protein-coding 11.14 0.8699
-647288 CTAGE11P CTAGE family member 11, pseudogene pseudo 3.256 1.142
-6474 SHOX2 short stature homeobox 2 protein-coding 4.13 2.508
-64743 WDR13 WD repeat domain 13 protein-coding 10.76 0.7656
-64744 SMAP2 small ArfGAP2 protein-coding 10.11 0.7819
-64745 METTL17 methyltransferase like 17 protein-coding 9.212 0.6183
-64746 ACBD3 acyl-CoA binding domain containing 3 protein-coding 10.42 0.6778
+64714 PDIA2 protein disulfide isomerase family A member 2 protein-coding 3.206 2.736
+64718 UNKL unkempt family like zinc finger protein-coding 8.459 0.7465
+6472 SHMT2 serine hydroxymethyltransferase 2 protein-coding 11.14 0.8704
+647288 CTAGE11P CTAGE family member 11, pseudogene pseudo 3.256 1.141
+6474 SHOX2 short stature homeobox 2 protein-coding 4.128 2.508
+64743 WDR13 WD repeat domain 13 protein-coding 10.76 0.7653
+64744 SMAP2 small ArfGAP2 protein-coding 10.11 0.7822
+64745 METTL17 methyltransferase like 17 protein-coding 9.211 0.6182
+64746 ACBD3 acyl-CoA binding domain containing 3 protein-coding 10.42 0.6775
64747 MFSD1 major facilitator superfamily domain containing 1 protein-coding 10.43 0.6663
-64748 PLPPR2 phospholipid phosphatase related 2 protein-coding 9.398 1.114
-64750 SMURF2 SMAD specific E3 ubiquitin protein ligase 2 protein-coding 8.737 0.8345
-64753 CCDC136 coiled-coil domain containing 136 protein-coding 5.083 2.173
-64754 SMYD3 SET and MYND domain containing 3 protein-coding 8.103 0.8863
-64755 C16orf58 chromosome 16 open reading frame 58 protein-coding 11.19 0.5701
-64756 ATPAF1 ATP synthase mitochondrial F1 complex assembly factor 1 protein-coding 10.14 0.5966
-64757 MARC1 mitochondrial amidoxime reducing component 1 protein-coding 8.114 1.778
-64759 TNS3 tensin 3 protein-coding 11.13 1.117
-64760 FAM160B2 family with sequence similarity 160 member B2 protein-coding 10.03 0.6641
-64761 PARP12 poly(ADP-ribose) polymerase family member 12 protein-coding 9.729 0.9911
-64762 GAREM1 GRB2 associated regulator of MAPK1 subtype 1 protein-coding 6.993 1.382
-64763 ZNF574 zinc finger protein 574 protein-coding 9.079 0.5449
-64764 CREB3L2 cAMP responsive element binding protein 3 like 2 protein-coding 10.82 0.9864
-64766 S100PBP S100P binding protein protein-coding 8.851 0.5968
-64768 IPPK inositol-pentakisphosphate 2-kinase protein-coding 8.506 0.8897
-64769 MEAF6 MYST/Esa1 associated factor 6 protein-coding 10.39 0.6084
-6477 SIAH1 siah E3 ubiquitin protein ligase 1 protein-coding 9.104 0.5408
-64770 CCDC14 coiled-coil domain containing 14 protein-coding 9.473 0.9318
-64771 C6orf106 chromosome 6 open reading frame 106 protein-coding 11.64 0.6161
-64772 ENGASE endo-beta-N-acetylglucosaminidase protein-coding 9.058 0.9475
-64773 PCED1A PC-esterase domain containing 1A protein-coding 9.365 0.8584
-64776 C11orf1 chromosome 11 open reading frame 1 protein-coding 8.089 0.8605
-64777 RMND5B required for meiotic nuclear division 5 homolog B protein-coding 9.361 0.5644
+64748 PLPPR2 phospholipid phosphatase related 2 protein-coding 9.398 1.113
+64750 SMURF2 SMAD specific E3 ubiquitin protein ligase 2 protein-coding 8.737 0.8342
+64753 CCDC136 coiled-coil domain containing 136 protein-coding 5.085 2.173
+64754 SMYD3 SET and MYND domain containing 3 protein-coding 8.102 0.8862
+64755 C16orf58 chromosome 16 open reading frame 58 protein-coding 11.19 0.57
+64756 ATPAF1 ATP synthase mitochondrial F1 complex assembly factor 1 protein-coding 10.14 0.5965
+64757 MARC1 mitochondrial amidoxime reducing component 1 protein-coding 8.114 1.777
+64759 TNS3 tensin 3 protein-coding 11.13 1.116
+64760 FAM160B2 family with sequence similarity 160 member B2 protein-coding 10.03 0.6639
+64761 PARP12 poly(ADP-ribose) polymerase family member 12 protein-coding 9.73 0.991
+64762 GAREM1 GRB2 associated regulator of MAPK1 subtype 1 protein-coding 6.993 1.381
+64763 ZNF574 zinc finger protein 574 protein-coding 9.079 0.5448
+64764 CREB3L2 cAMP responsive element binding protein 3 like 2 protein-coding 10.82 0.986
+64766 S100PBP S100P binding protein protein-coding 8.851 0.5967
+64768 IPPK inositol-pentakisphosphate 2-kinase protein-coding 8.505 0.8894
+64769 MEAF6 MYST/Esa1 associated factor 6 protein-coding 10.39 0.6086
+6477 SIAH1 siah E3 ubiquitin protein ligase 1 protein-coding 9.104 0.5406
+64770 CCDC14 coiled-coil domain containing 14 protein-coding 9.473 0.9316
+64771 C6orf106 chromosome 6 open reading frame 106 protein-coding 11.64 0.6158
+64772 ENGASE endo-beta-N-acetylglucosaminidase protein-coding 9.058 0.9474
+64773 PCED1A PC-esterase domain containing 1A protein-coding 9.365 0.8581
+64776 C11orf1 chromosome 11 open reading frame 1 protein-coding 8.089 0.8602
+64777 RMND5B required for meiotic nuclear division 5 homolog B protein-coding 9.361 0.5642
64778 FNDC3B fibronectin type III domain containing 3B protein-coding 10.74 1.069
-64779 MTHFSD methenyltetrahydrofolate synthetase domain containing protein-coding 8.232 0.5483
-6478 SIAH2 siah E3 ubiquitin protein ligase 2 protein-coding 9.768 1.005
+64779 MTHFSD methenyltetrahydrofolate synthetase domain containing protein-coding 8.232 0.5481
+6478 SIAH2 siah E3 ubiquitin protein ligase 2 protein-coding 9.767 1.005
64780 MICAL1 microtubule associated monooxygenase, calponin and LIM domain containing 1 protein-coding 9.423 1.128
64781 CERK ceramide kinase protein-coding 9.846 1.002
-64782 AEN apoptosis enhancing nuclease protein-coding 9.333 0.8132
-64783 RBM15 RNA binding motif protein 15 protein-coding 7.376 0.6418
+64782 AEN apoptosis enhancing nuclease protein-coding 9.333 0.8134
+64783 RBM15 RNA binding motif protein 15 protein-coding 7.376 0.6417
64784 CRTC3 CREB regulated transcription coactivator 3 protein-coding 9.96 0.6014
-64785 GINS3 GINS complex subunit 3 protein-coding 7.572 1.023
+64785 GINS3 GINS complex subunit 3 protein-coding 7.571 1.023
647859 LOC647859 occludin pseudogene pseudo 1.464 1.513
-64786 TBC1D15 TBC1 domain family member 15 protein-coding 9.85 0.543
-64787 EPS8L2 EPS8 like 2 protein-coding 10.38 1.882
-64788 LMF1 lipase maturation factor 1 protein-coding 8.194 1.139
-64789 EXO5 exonuclease 5 protein-coding 7.175 0.7646
-64792 IFT22 intraflagellar transport 22 protein-coding 9.071 0.8182
-64793 CEP85 centrosomal protein 85 protein-coding 8.359 0.9441
-64794 DDX31 DEAD-box helicase 31 protein-coding 8.262 0.5594
-647946 MIR924HG MIR924 host gene ncRNA 3.095 1.899
-64795 RMND5A required for meiotic nuclear division 5 homolog A protein-coding 10.56 0.6052
-647979 NORAD non-coding RNA activated by DNA damage ncRNA 13.01 0.6448
-64798 DEPTOR DEP domain containing MTOR interacting protein protein-coding 8.547 1.576
+64786 TBC1D15 TBC1 domain family member 15 protein-coding 9.85 0.5427
+64787 EPS8L2 EPS8 like 2 protein-coding 10.38 1.883
+64788 LMF1 lipase maturation factor 1 protein-coding 8.194 1.138
+64789 EXO5 exonuclease 5 protein-coding 7.175 0.7643
+64792 IFT22 intraflagellar transport 22 protein-coding 9.071 0.818
+64793 CEP85 centrosomal protein 85 protein-coding 8.358 0.9441
+64794 DDX31 DEAD-box helicase 31 protein-coding 8.262 0.5595
+647946 MIR924HG MIR924 host gene ncRNA 3.094 1.899
+64795 RMND5A required for meiotic nuclear division 5 homolog A protein-coding 10.56 0.605
+647979 NORAD non-coding RNA activated by DNA damage ncRNA 13.01 0.6449
+64798 DEPTOR DEP domain containing MTOR interacting protein protein-coding 8.548 1.576
64799 IQCH IQ motif containing H protein-coding 5.056 1.156
-648 BMI1 BMI1 proto-oncogene, polycomb ring finger protein-coding 10.29 0.7439
+648 BMI1 BMI1 proto-oncogene, polycomb ring finger protein-coding 10.29 0.7436
6480 ST6GAL1 ST6 beta-galactoside alpha-2,6-sialyltransferase 1 protein-coding 10.57 1.719
-64800 EFCAB6 EF-hand calcium binding domain 6 protein-coding 4.386 1.705
-64801 ARV1 ARV1 homolog, fatty acid homeostasis modulator protein-coding 8.606 0.6608
-64802 NMNAT1 nicotinamide nucleotide adenylyltransferase 1 protein-coding 7.881 0.6664
-64805 P2RY12 purinergic receptor P2Y12 protein-coding 3.446 2.459
+64800 EFCAB6 EF-hand calcium binding domain 6 protein-coding 4.387 1.705
+64801 ARV1 ARV1 homolog, fatty acid homeostasis modulator protein-coding 8.606 0.6606
+64802 NMNAT1 nicotinamide nucleotide adenylyltransferase 1 protein-coding 7.881 0.6662
+64805 P2RY12 purinergic receptor P2Y12 protein-coding 3.449 2.459
6482 ST3GAL1 ST3 beta-galactoside alpha-2,3-sialyltransferase 1 protein-coding 10.23 1.491
6483 ST3GAL2 ST3 beta-galactoside alpha-2,3-sialyltransferase 2 protein-coding 9.036 0.8546
-64834 ELOVL1 ELOVL fatty acid elongase 1 protein-coding 10.77 0.7414
-64837 KLC2 kinesin light chain 2 protein-coding 9.57 0.7639
-64838 FNDC4 fibronectin type III domain containing 4 protein-coding 7.179 1.97
-64839 FBXL17 F-box and leucine rich repeat protein 17 protein-coding 9.001 0.8343
-6484 ST3GAL4 ST3 beta-galactoside alpha-2,3-sialyltransferase 4 protein-coding 9.013 1.343
+64834 ELOVL1 ELOVL fatty acid elongase 1 protein-coding 10.77 0.7412
+64837 KLC2 kinesin light chain 2 protein-coding 9.57 0.7638
+64838 FNDC4 fibronectin type III domain containing 4 protein-coding 7.18 1.969
+64839 FBXL17 F-box and leucine rich repeat protein 17 protein-coding 9.002 0.8341
+6484 ST3GAL4 ST3 beta-galactoside alpha-2,3-sialyltransferase 4 protein-coding 9.013 1.342
64840 PORCN porcupine O-acyltransferase protein-coding 7.972 1.028
-64841 GNPNAT1 glucosamine-phosphate N-acetyltransferase 1 protein-coding 9.829 0.9912
-64843 ISL2 ISL LIM homeobox 2 protein-coding 2.622 2.094
-64844 MARCH7 membrane associated ring-CH-type finger 7 protein-coding 10.49 0.5611
-64847 SPATA20 spermatogenesis associated 20 protein-coding 10.27 0.9908
-64848 YTHDC2 YTH domain containing 2 protein-coding 9.315 0.6457
-64849 SLC13A3 solute carrier family 13 member 3 protein-coding 6.077 2.244
+64841 GNPNAT1 glucosamine-phosphate N-acetyltransferase 1 protein-coding 9.828 0.9911
+64843 ISL2 ISL LIM homeobox 2 protein-coding 2.623 2.094
+64844 MARCH7 membrane associated ring-CH-type finger 7 protein-coding 10.49 0.5609
+64847 SPATA20 spermatogenesis associated 20 protein-coding 10.27 0.9906
+64848 YTHDC2 YTH domain containing 2 protein-coding 9.315 0.6455
+64849 SLC13A3 solute carrier family 13 member 3 protein-coding 6.077 2.243
64852 TUT1 terminal uridylyl transferase 1, U6 snRNA-specific protein-coding 9.34 0.5715
-64853 AIDA axin interactor, dorsalization associated protein-coding 10.05 0.5716
-64854 USP46 ubiquitin specific peptidase 46 protein-coding 8.84 0.8997
+64853 AIDA axin interactor, dorsalization associated protein-coding 10.05 0.5714
+64854 USP46 ubiquitin specific peptidase 46 protein-coding 8.84 0.8993
64855 FAM129B family with sequence similarity 129 member B protein-coding 12.22 1.127
64856 VWA1 von Willebrand factor A domain containing 1 protein-coding 10.73 1.194
64857 PLEKHG2 pleckstrin homology and RhoGEF domain containing G2 protein-coding 9.199 1.099
-64858 DCLRE1B DNA cross-link repair 1B protein-coding 7.825 0.8056
-64859 NABP1 nucleic acid binding protein 1 protein-coding 7.906 1.322
-64860 ARMCX5 armadillo repeat containing, X-linked 5 protein-coding 8.151 0.6825
-64863 METTL4 methyltransferase like 4 protein-coding 7.825 0.6148
-64864 RFX7 regulatory factor X7 protein-coding 8.898 0.7222
-64866 CDCP1 CUB domain containing protein 1 protein-coding 9.349 2.507
-6487 ST3GAL3 ST3 beta-galactoside alpha-2,3-sialyltransferase 3 protein-coding 7.857 1.051
-648740 ACTG1P4 actin gamma 1 pseudogene 4 pseudo 2.956 1.526
-648791 PPP1R3G protein phosphatase 1 regulatory subunit 3G protein-coding 5.121 1.699
-6489 ST8SIA1 ST8 alpha-N-acetyl-neuraminide alpha-2,8-sialyltransferase 1 protein-coding 5.625 2.17
+64858 DCLRE1B DNA cross-link repair 1B protein-coding 7.824 0.8058
+64859 NABP1 nucleic acid binding protein 1 protein-coding 7.906 1.323
+64860 ARMCX5 armadillo repeat containing, X-linked 5 protein-coding 8.151 0.6823
+64863 METTL4 methyltransferase like 4 protein-coding 7.825 0.6147
+64864 RFX7 regulatory factor X7 protein-coding 8.899 0.7219
+64866 CDCP1 CUB domain containing protein 1 protein-coding 9.349 2.506
+6487 ST3GAL3 ST3 beta-galactoside alpha-2,3-sialyltransferase 3 protein-coding 7.858 1.051
+648740 ACTG1P4 actin gamma 1 pseudogene 4 pseudo 2.957 1.527
+648791 PPP1R3G protein phosphatase 1 regulatory subunit 3G protein-coding 5.12 1.699
+6489 ST8SIA1 ST8 alpha-N-acetyl-neuraminide alpha-2,8-sialyltransferase 1 protein-coding 5.627 2.17
64895 PAPOLG poly(A) polymerase gamma protein-coding 8.312 0.6972
-64897 C12orf43 chromosome 12 open reading frame 43 protein-coding 8.02 0.4182
-649 BMP1 bone morphogenetic protein 1 protein-coding 9.867 1.118
-6490 PMEL premelanosome protein protein-coding 5.484 2.355
+64897 C12orf43 chromosome 12 open reading frame 43 protein-coding 8.02 0.418
+649 BMP1 bone morphogenetic protein 1 protein-coding 9.867 1.117
+6490 PMEL premelanosome protein protein-coding 5.483 2.354
64900 LPIN3 lipin 3 protein-coding 8.438 1.555
-64901 RANBP17 RAN binding protein 17 protein-coding 5.618 1.972
-6491 STIL STIL, centriolar assembly protein protein-coding 7.629 1.507
-64919 BCL11B B cell CLL/lymphoma 11B protein-coding 6.662 2.045
-64921 CASD1 CAS1 domain containing 1 protein-coding 9.034 0.9663
-64922 LRRC19 leucine rich repeat containing 19 protein-coding 2.536 2.6
-64924 SLC30A5 solute carrier family 30 member 5 protein-coding 9.849 0.5806
-64925 CCDC71 coiled-coil domain containing 71 protein-coding 8.79 0.5844
-64926 RASAL3 RAS protein activator like 3 protein-coding 7.071 1.417
-64927 TTC23 tetratricopeptide repeat domain 23 protein-coding 8.393 0.7109
-64928 MRPL14 mitochondrial ribosomal protein L14 protein-coding 9.909 0.8314
-6493 SIM2 single-minded family bHLH transcription factor 2 protein-coding 6.518 2.12
-649330 HNRNPCL3 heterogeneous nuclear ribonucleoprotein C-like 3 protein-coding 3.853 0.9468
-6494 SIPA1 signal-induced proliferation-associated 1 protein-coding 9.741 0.8426
-64940 STAG3L4 stromal antigen 3-like 4 (pseudogene) pseudo 7.394 0.8464
-64943 NT5DC2 5'-nucleotidase domain containing 2 protein-coding 10.06 1.188
+64901 RANBP17 RAN binding protein 17 protein-coding 5.619 1.971
+6491 STIL STIL, centriolar assembly protein protein-coding 7.627 1.507
+64919 BCL11B B cell CLL/lymphoma 11B protein-coding 6.663 2.045
+64921 CASD1 CAS1 domain containing 1 protein-coding 9.035 0.9661
+64922 LRRC19 leucine rich repeat containing 19 protein-coding 2.537 2.6
+64924 SLC30A5 solute carrier family 30 member 5 protein-coding 9.849 0.5804
+64925 CCDC71 coiled-coil domain containing 71 protein-coding 8.79 0.5842
+64926 RASAL3 RAS protein activator like 3 protein-coding 7.072 1.418
+64927 TTC23 tetratricopeptide repeat domain 23 protein-coding 8.394 0.711
+64928 MRPL14 mitochondrial ribosomal protein L14 protein-coding 9.908 0.8314
+6493 SIM2 single-minded family bHLH transcription factor 2 protein-coding 6.517 2.12
+649330 HNRNPCL3 heterogeneous nuclear ribonucleoprotein C-like 3 protein-coding 3.852 0.947
+6494 SIPA1 signal-induced proliferation-associated 1 protein-coding 9.741 0.8427
+64940 STAG3L4 stromal antigen 3-like 4 (pseudogene) pseudo 7.394 0.8463
+64943 NT5DC2 5'-nucleotidase domain containing 2 protein-coding 10.06 1.189
649446 DLGAP1-AS1 DLGAP1 antisense RNA 1 ncRNA 6.873 1.039
-64946 CENPH centromere protein H protein-coding 7.414 1.177
+64946 CENPH centromere protein H protein-coding 7.413 1.177
64949 MRPS26 mitochondrial ribosomal protein S26 protein-coding 10.01 0.7642
-6495 SIX1 SIX homeobox 1 protein-coding 6.371 2.694
-64951 MRPS24 mitochondrial ribosomal protein S24 protein-coding 10.28 0.673
+6495 SIX1 SIX homeobox 1 protein-coding 6.369 2.694
+64951 MRPS24 mitochondrial ribosomal protein S24 protein-coding 10.28 0.6731
6496 SIX3 SIX homeobox 3 protein-coding 1.563 2.119
-64960 MRPS15 mitochondrial ribosomal protein S15 protein-coding 10.15 0.798
+64960 MRPS15 mitochondrial ribosomal protein S15 protein-coding 10.15 0.7979
64963 MRPS11 mitochondrial ribosomal protein S11 protein-coding 9.25 0.5654
-64965 MRPS9 mitochondrial ribosomal protein S9 protein-coding 9.177 0.5314
-64968 MRPS6 mitochondrial ribosomal protein S6 protein-coding 9.483 0.7983
+64965 MRPS9 mitochondrial ribosomal protein S9 protein-coding 9.177 0.5313
+64968 MRPS6 mitochondrial ribosomal protein S6 protein-coding 9.482 0.7987
64969 MRPS5 mitochondrial ribosomal protein S5 protein-coding 9.963 0.5448
6497 SKI SKI proto-oncogene protein-coding 10.8 0.6753
64975 MRPL41 mitochondrial ribosomal protein L41 protein-coding 9.466 1.046
-64976 MRPL40 mitochondrial ribosomal protein L40 protein-coding 9.466 0.7451
-64978 MRPL38 mitochondrial ribosomal protein L38 protein-coding 10.21 0.6586
-64979 MRPL36 mitochondrial ribosomal protein L36 protein-coding 8.659 0.7056
+64976 MRPL40 mitochondrial ribosomal protein L40 protein-coding 9.466 0.7452
+64978 MRPL38 mitochondrial ribosomal protein L38 protein-coding 10.21 0.6585
+64979 MRPL36 mitochondrial ribosomal protein L36 protein-coding 8.659 0.7059
6498 SKIL SKI like proto-oncogene protein-coding 8.78 1.291
-64981 MRPL34 mitochondrial ribosomal protein L34 protein-coding 9.556 0.7725
-64983 MRPL32 mitochondrial ribosomal protein L32 protein-coding 9.715 0.5697
-6499 SKIV2L Ski2 like RNA helicase protein-coding 10.15 0.4853
-649946 RPL23AP64 ribosomal protein L23a pseudogene 64 pseudo 2.029 1.067
-650 BMP2 bone morphogenetic protein 2 protein-coding 7.488 2.149
-6500 SKP1 S-phase kinase associated protein 1 protein-coding 12.24 0.5478
+64981 MRPL34 mitochondrial ribosomal protein L34 protein-coding 9.556 0.7722
+64983 MRPL32 mitochondrial ribosomal protein L32 protein-coding 9.715 0.5695
+6499 SKIV2L Ski2 like RNA helicase protein-coding 10.15 0.4851
+649946 RPL23AP64 ribosomal protein L23a pseudogene 64 pseudo 2.03 1.067
+650 BMP2 bone morphogenetic protein 2 protein-coding 7.489 2.149
+6500 SKP1 S-phase kinase associated protein 1 protein-coding 12.24 0.5476
65003 MRPL11 mitochondrial ribosomal protein L11 protein-coding 9.613 0.7226
65005 MRPL9 mitochondrial ribosomal protein L9 protein-coding 10.06 0.5365
65008 MRPL1 mitochondrial ribosomal protein L1 protein-coding 8.527 0.6005
-65009 NDRG4 NDRG family member 4 protein-coding 7.534 2.699
-65010 SLC26A6 solute carrier family 26 member 6 protein-coding 8.086 1.152
+65009 NDRG4 NDRG family member 4 protein-coding 7.535 2.699
+65010 SLC26A6 solute carrier family 26 member 6 protein-coding 8.086 1.151
65012 SLC26A10 solute carrier family 26 member 10 protein-coding 3.687 1.913
-65018 PINK1 PTEN induced putative kinase 1 protein-coding 10.85 0.8683
-6502 SKP2 S-phase kinase associated protein 2 protein-coding 7.359 1.315
-6503 SLA Src like adaptor protein-coding 8.133 1.525
-650368 TSSC2 tumor suppressing subtransferable candidate 2 pseudogene pseudo 4.577 1.089
-6504 SLAMF1 signaling lymphocytic activation molecule family member 1 protein-coding 4.164 2.063
-6505 SLC1A1 solute carrier family 1 member 1 protein-coding 7.725 2.215
-65055 REEP1 receptor accessory protein 1 protein-coding 6.273 2.319
-65056 GPBP1 GC-rich promoter binding protein 1 protein-coding 10.87 0.4436
-65057 ACD ACD, shelterin complex subunit and telomerase recruitment factor protein-coding 8.715 0.6523
-65059 RAPH1 Ras association (RalGDS/AF-6) and pleckstrin homology domains 1 protein-coding 9.882 1.002
-6506 SLC1A2 solute carrier family 1 member 2 protein-coding 5.257 3.449
-65062 TMEM237 transmembrane protein 237 protein-coding 8.92 0.8813
-650623 BEND3P3 BEN domain containing 3 pseudogene 3 pseudo 5.177 1.545
-65065 NBEAL1 neurobeachin like 1 protein-coding 6.482 1.445
+65018 PINK1 PTEN induced putative kinase 1 protein-coding 10.85 0.868
+6502 SKP2 S-phase kinase associated protein 2 protein-coding 7.358 1.314
+6503 SLA Src like adaptor protein-coding 8.134 1.526
+650368 TSSC2 tumor suppressing subtransferable candidate 2 pseudogene pseudo 4.578 1.089
+6504 SLAMF1 signaling lymphocytic activation molecule family member 1 protein-coding 4.165 2.063
+6505 SLC1A1 solute carrier family 1 member 1 protein-coding 7.726 2.215
+65055 REEP1 receptor accessory protein 1 protein-coding 6.275 2.319
+65056 GPBP1 GC-rich promoter binding protein 1 protein-coding 10.87 0.4434
+65057 ACD ACD, shelterin complex subunit and telomerase recruitment factor protein-coding 8.715 0.652
+65059 RAPH1 Ras association (RalGDS/AF-6) and pleckstrin homology domains 1 protein-coding 9.883 1.002
+6506 SLC1A2 solute carrier family 1 member 2 protein-coding 5.257 3.448
+65062 TMEM237 transmembrane protein 237 protein-coding 8.92 0.8812
+650623 BEND3P3 BEN domain containing 3 pseudogene 3 pseudo 5.178 1.545
+65065 NBEAL1 neurobeachin like 1 protein-coding 6.483 1.445
650655 ABCA17P ATP binding cassette subfamily A member 17, pseudogene pseudo 3.217 1.942
6507 SLC1A3 solute carrier family 1 member 3 protein-coding 8.143 2.45
-65078 RTN4R reticulon 4 receptor protein-coding 7.007 1.415
-6508 SLC4A3 solute carrier family 4 member 3 protein-coding 6.924 2.228
-65080 MRPL44 mitochondrial ribosomal protein L44 protein-coding 9.347 0.5245
-65082 VPS33A VPS33A, CORVET/HOPS core subunit protein-coding 9.207 0.4968
-65083 NOL6 nucleolar protein 6 protein-coding 10.29 0.6132
-65084 TMEM135 transmembrane protein 135 protein-coding 8.664 0.8393
+65078 RTN4R reticulon 4 receptor protein-coding 7.006 1.415
+6508 SLC4A3 solute carrier family 4 member 3 protein-coding 6.924 2.227
+65080 MRPL44 mitochondrial ribosomal protein L44 protein-coding 9.346 0.5245
+65082 VPS33A VPS33A, CORVET/HOPS core subunit protein-coding 9.207 0.4969
+65083 NOL6 nucleolar protein 6 protein-coding 10.29 0.6131
+65084 TMEM135 transmembrane protein 135 protein-coding 8.664 0.839
6509 SLC1A4 solute carrier family 1 member 4 protein-coding 10.06 1.299
-65094 JMJD4 jumonji domain containing 4 protein-coding 9.107 0.6628
-65095 KRI1 KRI1 homolog protein-coding 9.738 0.6509
-651 BMP3 bone morphogenetic protein 3 protein-coding 3.246 3.023
+65094 JMJD4 jumonji domain containing 4 protein-coding 9.106 0.6627
+65095 KRI1 KRI1 homolog protein-coding 9.738 0.6507
+651 BMP3 bone morphogenetic protein 3 protein-coding 3.248 3.025
6510 SLC1A5 solute carrier family 1 member 5 protein-coding 11.09 1.726
-65108 MARCKSL1 MARCKS like 1 protein-coding 12.02 1.369
-65109 UPF3B UPF3B, regulator of nonsense mediated mRNA decay protein-coding 8.422 0.7662
-65110 UPF3A UPF3A, regulator of nonsense mediated mRNA decay protein-coding 9.32 0.6886
-65117 RSRC2 arginine and serine rich coiled-coil 2 protein-coding 10.4 0.4277
-6512 SLC1A7 solute carrier family 1 member 7 protein-coding 3.661 2.262
+65108 MARCKSL1 MARCKS like 1 protein-coding 12.02 1.368
+65109 UPF3B UPF3B, regulator of nonsense mediated mRNA decay protein-coding 8.421 0.766
+65110 UPF3A UPF3A, regulator of nonsense mediated mRNA decay protein-coding 9.32 0.6885
+65117 RSRC2 arginine and serine rich coiled-coil 2 protein-coding 10.4 0.4276
+6512 SLC1A7 solute carrier family 1 member 7 protein-coding 3.663 2.261
65123 INTS3 integrator complex subunit 3 protein-coding 10.95 0.5826
65124 SOWAHC sosondowah ankyrin repeat domain family member C protein-coding 9.177 1.205
-65125 WNK1 WNK lysine deficient protein kinase 1 protein-coding 11.86 0.7716
-651250 LRRC37A16P leucine rich repeat containing 37 member A16, pseudogene pseudo 10.42 0.7421
+65125 WNK1 WNK lysine deficient protein kinase 1 protein-coding 11.86 0.7713
+651250 LRRC37A16P leucine rich repeat containing 37 member A16, pseudogene pseudo 10.42 0.7418
6513 SLC2A1 solute carrier family 2 member 1 protein-coding 11.33 2.034
651302 ZNF192P1 zinc finger protein 192 pseudogene 1 pseudo 3.208 1.373
-6515 SLC2A3 solute carrier family 2 member 3 protein-coding 9.39 1.555
-6517 SLC2A4 solute carrier family 2 member 4 protein-coding 5.02 1.989
-6518 SLC2A5 solute carrier family 2 member 5 protein-coding 6.647 2.293
-6519 SLC3A1 solute carrier family 3 member 1 protein-coding 4.523 3.553
+6515 SLC2A3 solute carrier family 2 member 3 protein-coding 9.391 1.555
+6517 SLC2A4 solute carrier family 2 member 4 protein-coding 5.021 1.99
+6518 SLC2A5 solute carrier family 2 member 5 protein-coding 6.648 2.294
+6519 SLC3A1 solute carrier family 3 member 1 protein-coding 4.525 3.554
652 BMP4 bone morphogenetic protein 4 protein-coding 7.317 1.883
-6520 SLC3A2 solute carrier family 3 member 2 protein-coding 11.97 0.8368
-6521 SLC4A1 solute carrier family 4 member 1 (Diego blood group) protein-coding 1.166 1.826
-6522 SLC4A2 solute carrier family 4 member 2 protein-coding 11.19 0.7287
-65220 NADK NAD kinase protein-coding 10.2 0.5896
-652276 LOC652276 potassium channel tetramerization domain containing 5 pseudogene pseudo 5.506 0.7339
-65243 ZFP69B ZFP69 zinc finger protein B protein-coding 5.173 0.9661
-65244 SPATS2 spermatogenesis associated serine rich 2 protein-coding 9.436 0.6317
-65249 ZSWIM4 zinc finger SWIM-type containing 4 protein-coding 8.63 0.863
-6525 SMTN smoothelin protein-coding 9.949 1.233
-65250 CPLANE1 ciliogenesis and planar polarity effector 1 protein-coding 8.462 1.131
-65251 ZNF649 zinc finger protein 649 protein-coding 7.438 1.291
-65258 MPPE1 metallophosphoesterase 1 protein-coding 9.21 0.6287
-6526 SLC5A3 solute carrier family 5 member 3 protein-coding 9.624 1.199
+6520 SLC3A2 solute carrier family 3 member 2 protein-coding 11.97 0.8366
+6521 SLC4A1 solute carrier family 4 member 1 (Diego blood group) protein-coding 1.166 1.825
+6522 SLC4A2 solute carrier family 4 member 2 protein-coding 11.19 0.7285
+65220 NADK NAD kinase protein-coding 10.2 0.5897
+652276 LOC652276 potassium channel tetramerization domain containing 5 pseudogene pseudo 5.506 0.7336
+65243 ZFP69B ZFP69 zinc finger protein B protein-coding 5.172 0.9662
+65244 SPATS2 spermatogenesis associated serine rich 2 protein-coding 9.436 0.6316
+65249 ZSWIM4 zinc finger SWIM-type containing 4 protein-coding 8.629 0.8628
+6525 SMTN smoothelin protein-coding 9.95 1.234
+65250 CPLANE1 ciliogenesis and planar polarity effector 1 protein-coding 8.463 1.131
+65251 ZNF649 zinc finger protein 649 protein-coding 7.439 1.291
+65258 MPPE1 metallophosphoesterase 1 protein-coding 9.211 0.6288
+6526 SLC5A3 solute carrier family 5 member 3 protein-coding 9.623 1.199
65260 COA7 cytochrome c oxidase assembly factor 7 (putative) protein-coding 7.762 0.7198
-65263 PYCR3 pyrroline-5-carboxylate reductase 3 protein-coding 8.821 0.8588
-65264 UBE2Z ubiquitin conjugating enzyme E2 Z protein-coding 11.42 0.5007
+65263 PYCR3 pyrroline-5-carboxylate reductase 3 protein-coding 8.82 0.8593
+65264 UBE2Z ubiquitin conjugating enzyme E2 Z protein-coding 11.42 0.5006
65265 C8orf33 chromosome 8 open reading frame 33 protein-coding 10.35 0.6758
65266 WNK4 WNK lysine deficient protein kinase 4 protein-coding 5.32 2.993
-65267 WNK3 WNK lysine deficient protein kinase 3 protein-coding 3.856 2.106
-65268 WNK2 WNK lysine deficient protein kinase 2 protein-coding 7.795 2.924
-6527 SLC5A4 solute carrier family 5 member 4 protein-coding 1.746 1.453
-6528 SLC5A5 solute carrier family 5 member 5 protein-coding 2.271 2.258
-6529 SLC6A1 solute carrier family 6 member 1 protein-coding 5.146 2.878
-652966 SNORD10 small nucleolar RNA, C/D box 10 snoRNA 0.8103 0.8817
+65267 WNK3 WNK lysine deficient protein kinase 3 protein-coding 3.858 2.106
+65268 WNK2 WNK lysine deficient protein kinase 2 protein-coding 7.797 2.924
+6527 SLC5A4 solute carrier family 5 member 4 protein-coding 1.747 1.453
+6528 SLC5A5 solute carrier family 5 member 5 protein-coding 2.272 2.258
+6529 SLC6A1 solute carrier family 6 member 1 protein-coding 5.145 2.877
+652966 SNORD10 small nucleolar RNA, C/D box 10 snoRNA 0.8106 0.8815
652968 CASTOR1 cytosolic arginine sensor for mTORC1 subunit 1 protein-coding 7.596 1.146
652995 UCA1 urothelial cancer associated 1 (non-protein coding) ncRNA 3.386 3.404
-653 BMP5 bone morphogenetic protein 5 protein-coding 2.143 2.443
+653 BMP5 bone morphogenetic protein 5 protein-coding 2.145 2.443
653113 FAM86FP family with sequence similarity 86, member A pseudogene pseudo 5.124 1.047
-653121 ZBTB8A zinc finger and BTB domain containing 8A protein-coding 7.849 0.7809
-653140 FAM228A family with sequence similarity 228 member A protein-coding 2.031 1.332
-653145 ANXA8 annexin A8 protein-coding 5.332 4.401
-653162 RPSAP9 ribosomal protein SA pseudogene 9 pseudo 5.032 0.812
-653188 GUSBP3 glucuronidase, beta pseudogene 3 pseudo 5.536 1.129
+653121 ZBTB8A zinc finger and BTB domain containing 8A protein-coding 7.85 0.7807
+653140 FAM228A family with sequence similarity 228 member A protein-coding 2.032 1.332
+653145 ANXA8 annexin A8 protein-coding 5.332 4.4
+653162 RPSAP9 ribosomal protein SA pseudogene 9 pseudo 5.032 0.8117
+653188 GUSBP3 glucuronidase, beta pseudogene 3 pseudo 5.537 1.129
653190 ABCC6P1 ATP binding cassette subfamily C member 6 pseudogene 1 pseudo 2.968 2.553
-6532 SLC6A4 solute carrier family 6 member 4 protein-coding 2.31 2.179
-653238 GTF2H2B general transcription factor IIH subunit 2B (pseudogene) pseudo 5.82 1.634
-653268 AGAP7P ArfGAP with GTPase domain, ankyrin repeat and PH domain 7, pseudogene pseudo 3.645 1.349
-6533 SLC6A6 solute carrier family 6 member 6 protein-coding 9.817 1.511
+6532 SLC6A4 solute carrier family 6 member 4 protein-coding 2.311 2.18
+653238 GTF2H2B general transcription factor IIH subunit 2B (pseudogene) pseudo 5.819 1.634
+653268 AGAP7P ArfGAP with GTPase domain, ankyrin repeat and PH domain 7, pseudogene pseudo 3.646 1.349
+6533 SLC6A6 solute carrier family 6 member 6 protein-coding 9.818 1.511
653319 KIAA0895L KIAA0895 like protein-coding 8.447 1.098
-653333 FAM86B2 family with sequence similarity 86 member B2 protein-coding 2.738 1.614
-653361 NCF1 neutrophil cytosolic factor 1 protein-coding 6.163 1.755
-653390 RRN3P2 RRN3 homolog, RNA polymerase I transcription factor pseudogene 2 pseudo 3.535 1.178
-653404 FOXD4L6 forkhead box D4 like 6 protein-coding 1.576 1.116
-653437 AQP12B aquaporin 12B protein-coding 0.9713 1.728
-653489 RGPD3 RANBP2-like and GRIP domain containing 3 protein-coding 7.674 0.8665
-6535 SLC6A8 solute carrier family 6 member 8 protein-coding 10.66 1.838
-653519 GPR89A G protein-coupled receptor 89A protein-coding 9.476 0.5589
-653553 HSPB1P1 heat shock protein family B (small) member 1 pseudogene 1 pseudo 8.599 1.793
+653333 FAM86B2 family with sequence similarity 86 member B2 protein-coding 2.739 1.613
+653361 NCF1 neutrophil cytosolic factor 1 protein-coding 6.163 1.756
+653390 RRN3P2 RRN3 homolog, RNA polymerase I transcription factor pseudogene 2 pseudo 3.536 1.178
+653404 FOXD4L6 forkhead box D4 like 6 protein-coding 1.577 1.116
+653437 AQP12B aquaporin 12B protein-coding 0.9727 1.73
+653489 RGPD3 RANBP2-like and GRIP domain containing 3 protein-coding 7.674 0.8663
+6535 SLC6A8 solute carrier family 6 member 8 protein-coding 10.66 1.837
+653519 GPR89A G protein-coupled receptor 89A protein-coding 9.475 0.5589
+653553 HSPB1P1 heat shock protein family B (small) member 1 pseudogene 1 pseudo 8.599 1.792
653566 SPCS2P4 signal peptidase complex subunit 2 pseudogene 4 pseudo 10.7 0.495
-653567 TMEM236 transmembrane protein 236 protein-coding 3.123 1.668
+653567 TMEM236 transmembrane protein 236 protein-coding 3.124 1.668
653583 PHLDB3 pleckstrin homology like domain family B member 3 protein-coding 7.78 1.158
-653598 PPIAL4C peptidylprolyl isomerase A like 4C protein-coding 5.074 0.9066
-6536 SLC6A9 solute carrier family 6 member 9 protein-coding 8.017 1.6
-653604 HIST2H3D histone cluster 2 H3 family member d protein-coding 1.169 0.9271
-653635 WASH7P WAS protein family homolog 7 pseudogene pseudo 10.31 0.8204
-653639 LYPLA2P1 lysophospholipase II pseudogene 1 pseudo 6.452 0.8305
+653598 PPIAL4C peptidylprolyl isomerase A like 4C protein-coding 5.073 0.9067
+6536 SLC6A9 solute carrier family 6 member 9 protein-coding 8.016 1.6
+653604 HIST2H3D histone cluster 2 H3 family member d protein-coding 1.169 0.9267
+653635 WASH7P WAS protein family homolog 7 pseudogene pseudo 10.31 0.8203
+653639 LYPLA2P1 lysophospholipase II pseudogene 1 pseudo 6.451 0.8302
653653 LOC653653 adaptor related protein complex 1 sigma 2 subunit pseudogene pseudo 5.851 1.447
-653677 SEC1P secretory blood group 1, pseudogene pseudo 2.709 1.088
-653687 FAM226B family with sequence similarity 226 member B (non-protein coding) ncRNA 2.198 1.472
-653784 MZT2A mitotic spindle organizing protein 2A protein-coding 9.286 0.9642
-653786 LOC653786 otoancorin pseudogene pseudo 2.264 1.391
-653820 FAM72B family with sequence similarity 72 member B protein-coding 6.553 1.732
+653677 SEC1P secretory blood group 1, pseudogene pseudo 2.71 1.088
+653687 FAM226B family with sequence similarity 226 member B (non-protein coding) ncRNA 2.199 1.472
+653784 MZT2A mitotic spindle organizing protein 2A protein-coding 9.286 0.9641
+653786 LOC653786 otoancorin pseudogene pseudo 2.264 1.392
+653820 FAM72B family with sequence similarity 72 member B protein-coding 6.551 1.733
653857 ACTR3C ARP3 actin related protein 3 homolog C protein-coding 5.181 1.461
-6539 SLC6A12 solute carrier family 6 member 12 protein-coding 5.462 2.582
-654 BMP6 bone morphogenetic protein 6 protein-coding 6.234 1.438
-6540 SLC6A13 solute carrier family 6 member 13 protein-coding 2.988 3.178
-6541 SLC7A1 solute carrier family 7 member 1 protein-coding 10.43 1.419
-6542 SLC7A2 solute carrier family 7 member 2 protein-coding 8.727 2.553
-654231 OCM oncomodulin protein-coding 0.8547 0.8634
+6539 SLC6A12 solute carrier family 6 member 12 protein-coding 5.461 2.582
+654 BMP6 bone morphogenetic protein 6 protein-coding 6.234 1.437
+6540 SLC6A13 solute carrier family 6 member 13 protein-coding 2.987 3.177
+6541 SLC7A1 solute carrier family 7 member 1 protein-coding 10.43 1.418
+6542 SLC7A2 solute carrier family 7 member 2 protein-coding 8.728 2.552
+654231 OCM oncomodulin protein-coding 0.8553 0.8634
654254 ZNF732 zinc finger protein 732 protein-coding 2.225 1.372
-6543 SLC8A2 solute carrier family 8 member A2 protein-coding 3.492 2.672
-654320 SNORA8 small nucleolar RNA, H/ACA box 8 snoRNA 8.129 0.8962
-654342 LOC654342 lymphocyte-specific protein 1 pseudogene pseudo 7.926 1.392
-654346 LGALS9C galectin 9C protein-coding 4.688 1.981
-654364 NME1-NME2 NME1-NME2 readthrough protein-coding 7.284 1.272
-654429 LRTM2 leucine rich repeats and transmembrane domains 2 protein-coding 1.313 2.114
-654433 PAX8-AS1 PAX8 antisense RNA 1 ncRNA 6.202 2.332
-654434 SNHG20 small nucleolar RNA host gene 20 ncRNA 7.041 0.8553
-654463 FER1L6 fer-1 like family member 6 protein-coding 2.183 2.619
+6543 SLC8A2 solute carrier family 8 member A2 protein-coding 3.494 2.672
+654320 SNORA8 small nucleolar RNA, H/ACA box 8 snoRNA 8.128 0.8962
+654342 LOC654342 lymphocyte-specific protein 1 pseudogene pseudo 7.925 1.392
+654346 LGALS9C galectin 9C protein-coding 4.688 1.98
+654364 NME1-NME2 NME1-NME2 readthrough protein-coding 7.283 1.273
+654429 LRTM2 leucine rich repeats and transmembrane domains 2 protein-coding 1.313 2.113
+654433 PAX8-AS1 PAX8 antisense RNA 1 ncRNA 6.203 2.332
+654434 SNHG20 small nucleolar RNA host gene 20 ncRNA 7.041 0.855
+654463 FER1L6 fer-1 like family member 6 protein-coding 2.183 2.62
654466 FGF7P3 fibroblast growth factor 7 pseudogene 3 pseudo 6.124 1.295
-6545 SLC7A4 solute carrier family 7 member 4 protein-coding 4.316 2.788
-6546 SLC8A1 solute carrier family 8 member A1 protein-coding 7.592 1.633
-6547 SLC8A3 solute carrier family 8 member A3 protein-coding 2.74 2.533
-654790 PCP4L1 Purkinje cell protein 4 like 1 protein-coding 4.222 2.855
+6545 SLC7A4 solute carrier family 7 member 4 protein-coding 4.318 2.789
+6546 SLC8A1 solute carrier family 8 member A1 protein-coding 7.594 1.634
+6547 SLC8A3 solute carrier family 8 member A3 protein-coding 2.741 2.533
+654790 PCP4L1 Purkinje cell protein 4 like 1 protein-coding 4.223 2.855
6548 SLC9A1 solute carrier family 9 member A1 protein-coding 10.28 1.035
-654816 NCF1B neutrophil cytosolic factor 1B pseudogene pseudo 4.251 1.627
-654817 NCF1C neutrophil cytosolic factor 1C pseudogene pseudo 4.56 1.831
-6549 SLC9A2 solute carrier family 9 member A2 protein-coding 5.101 3.038
-6550 SLC9A3 solute carrier family 9 member A3 protein-coding 3.625 2.632
+654816 NCF1B neutrophil cytosolic factor 1B pseudogene pseudo 4.253 1.628
+654817 NCF1C neutrophil cytosolic factor 1C pseudogene pseudo 4.561 1.832
+6549 SLC9A2 solute carrier family 9 member A2 protein-coding 5.102 3.037
+6550 SLC9A3 solute carrier family 9 member A3 protein-coding 3.626 2.631
6553 SLC9A5 solute carrier family 9 member A5 protein-coding 4.604 1.433
-6554 SLC10A1 solute carrier family 10 member 1 protein-coding 0.8867 2.215
-6556 SLC11A1 solute carrier family 11 member 1 protein-coding 7.059 1.596
-6557 SLC12A1 solute carrier family 12 member 1 protein-coding 1.494 1.981
+6554 SLC10A1 solute carrier family 10 member 1 protein-coding 0.8866 2.214
+6556 SLC11A1 solute carrier family 11 member 1 protein-coding 7.059 1.597
+6557 SLC12A1 solute carrier family 12 member 1 protein-coding 1.495 1.98
6558 SLC12A2 solute carrier family 12 member 2 protein-coding 9.964 1.651
6559 SLC12A3 solute carrier family 12 member 3 protein-coding 1.861 1.68
656 BMP8B bone morphogenetic protein 8b protein-coding 6.038 1.718
-6560 SLC12A4 solute carrier family 12 member 4 protein-coding 10.05 0.9225
-6563 SLC14A1 solute carrier family 14 member 1 (Kidd blood group) protein-coding 5.418 2.777
-6565 SLC15A2 solute carrier family 15 member 2 protein-coding 7.126 2.348
+6560 SLC12A4 solute carrier family 12 member 4 protein-coding 10.05 0.9223
+6563 SLC14A1 solute carrier family 14 member 1 (Kidd blood group) protein-coding 5.421 2.779
+6565 SLC15A2 solute carrier family 15 member 2 protein-coding 7.128 2.348
6566 SLC16A1 solute carrier family 16 member 1 protein-coding 10.06 1.698
-6567 SLC16A2 solute carrier family 16 member 2 protein-coding 8.361 1.606
-657 BMPR1A bone morphogenetic protein receptor type 1A protein-coding 8.912 0.7816
-6570 SLC18A1 solute carrier family 18 member A1 protein-coding 1.382 2.256
-6571 SLC18A2 solute carrier family 18 member A2 protein-coding 2.949 2.196
-6573 SLC19A1 solute carrier family 19 member 1 protein-coding 8.425 1.13
-6574 SLC20A1 solute carrier family 20 member 1 protein-coding 10.2 0.8798
+6567 SLC16A2 solute carrier family 16 member 2 protein-coding 8.362 1.606
+657 BMPR1A bone morphogenetic protein receptor type 1A protein-coding 8.913 0.7818
+6570 SLC18A1 solute carrier family 18 member A1 protein-coding 1.384 2.259
+6571 SLC18A2 solute carrier family 18 member A2 protein-coding 2.952 2.2
+6573 SLC19A1 solute carrier family 19 member 1 protein-coding 8.424 1.13
+6574 SLC20A1 solute carrier family 20 member 1 protein-coding 10.2 0.8799
6575 SLC20A2 solute carrier family 20 member 2 protein-coding 10.19 1.067
6576 SLC25A1 solute carrier family 25 member 1 protein-coding 10.64 0.7984
-6578 SLCO2A1 solute carrier organic anion transporter family member 2A1 protein-coding 9.051 1.739
-658 BMPR1B bone morphogenetic protein receptor type 1B protein-coding 6.234 3.455
-6580 SLC22A1 solute carrier family 22 member 1 protein-coding 2.431 2.185
-6581 SLC22A3 solute carrier family 22 member 3 protein-coding 6.674 2.876
+6578 SLCO2A1 solute carrier organic anion transporter family member 2A1 protein-coding 9.052 1.739
+658 BMPR1B bone morphogenetic protein receptor type 1B protein-coding 6.235 3.455
+6580 SLC22A1 solute carrier family 22 member 1 protein-coding 2.431 2.184
+6581 SLC22A3 solute carrier family 22 member 3 protein-coding 6.676 2.875
6583 SLC22A4 solute carrier family 22 member 4 protein-coding 5.549 1.488
6584 SLC22A5 solute carrier family 22 member 5 protein-coding 8.444 1.132
-6585 SLIT1 slit guidance ligand 1 protein-coding 4.605 3.2
-6586 SLIT3 slit guidance ligand 3 protein-coding 8.227 2.186
-659 BMPR2 bone morphogenetic protein receptor type 2 protein-coding 10.91 0.7563
-6590 SLPI secretory leukocyte peptidase inhibitor protein-coding 9.08 3.837
-6591 SNAI2 snail family transcriptional repressor 2 protein-coding 7.872 1.994
-6594 SMARCA1 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily a, member 1 protein-coding 9.898 1.401
-6595 SMARCA2 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily a, member 2 protein-coding 10.9 0.886
-6596 HLTF helicase like transcription factor protein-coding 9.814 0.9752
-6597 SMARCA4 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily a, member 4 protein-coding 11.77 0.6483
-65975 STK33 serine/threonine kinase 33 protein-coding 5.23 2.734
+6585 SLIT1 slit guidance ligand 1 protein-coding 4.605 3.199
+6586 SLIT3 slit guidance ligand 3 protein-coding 8.229 2.186
+659 BMPR2 bone morphogenetic protein receptor type 2 protein-coding 10.91 0.7564
+6590 SLPI secretory leukocyte peptidase inhibitor protein-coding 9.079 3.837
+6591 SNAI2 snail family transcriptional repressor 2 protein-coding 7.873 1.993
+6594 SMARCA1 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily a, member 1 protein-coding 9.898 1.4
+6595 SMARCA2 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily a, member 2 protein-coding 10.9 0.8862
+6596 HLTF helicase like transcription factor protein-coding 9.814 0.9748
+6597 SMARCA4 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily a, member 4 protein-coding 11.77 0.6481
+65975 STK33 serine/threonine kinase 33 protein-coding 5.232 2.734
65977 PLEKHA3 pleckstrin homology domain containing A3 protein-coding 8.416 0.5505
-65979 PHACTR4 phosphatase and actin regulator 4 protein-coding 10.06 0.5834
+65979 PHACTR4 phosphatase and actin regulator 4 protein-coding 10.06 0.5832
6598 SMARCB1 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily b, member 1 protein-coding 10.78 0.5477
-65980 BRD9 bromodomain containing 9 protein-coding 9.708 0.5612
-65981 CAPRIN2 caprin family member 2 protein-coding 8.341 0.8674
-65982 ZSCAN18 zinc finger and SCAN domain containing 18 protein-coding 9.443 1.834
-65983 GRAMD2B GRAM domain containing 2B protein-coding 9.011 1.278
-65985 AACS acetoacetyl-CoA synthetase protein-coding 9.6 0.8126
+65980 BRD9 bromodomain containing 9 protein-coding 9.708 0.561
+65981 CAPRIN2 caprin family member 2 protein-coding 8.341 0.8672
+65982 ZSCAN18 zinc finger and SCAN domain containing 18 protein-coding 9.444 1.834
+65983 GRAMD2B GRAM domain containing 2B protein-coding 9.01 1.278
+65985 AACS acetoacetyl-CoA synthetase protein-coding 9.6 0.8124
65986 ZBTB10 zinc finger and BTB domain containing 10 protein-coding 8.401 1.405
-65987 KCTD14 potassium channel tetramerization domain containing 14 protein-coding 7.025 2
-65988 ZNF747 zinc finger protein 747 protein-coding 7.938 0.6055
-65989 DLK2 delta like non-canonical Notch ligand 2 protein-coding 4.156 2.511
-6599 SMARCC1 SWI/SNF related, matrix associated, actin dependent regulator of chromatin subfamily c member 1 protein-coding 11.27 0.7535
+65987 KCTD14 potassium channel tetramerization domain containing 14 protein-coding 7.026 1.999
+65988 ZNF747 zinc finger protein 747 protein-coding 7.938 0.6053
+65989 DLK2 delta like non-canonical Notch ligand 2 protein-coding 4.157 2.511
+6599 SMARCC1 SWI/SNF related, matrix associated, actin dependent regulator of chromatin subfamily c member 1 protein-coding 11.27 0.7534
65990 FAM173A family with sequence similarity 173 member A protein-coding 7.341 1.018
-65991 FUNDC2 FUN14 domain containing 2 protein-coding 10.34 0.5893
-65992 DDRGK1 DDRGK domain containing 1 protein-coding 10.15 0.7065
+65991 FUNDC2 FUN14 domain containing 2 protein-coding 10.34 0.5891
+65992 DDRGK1 DDRGK domain containing 1 protein-coding 10.15 0.7063
65993 MRPS34 mitochondrial ribosomal protein S34 protein-coding 10.36 0.6769
-65996 CENPBD1P1 CENPB DNA-binding domains containing 1 pseudogene 1 pseudo 9.197 0.532
-65997 RASL11B RAS like family 11 member B protein-coding 5.454 2.123
-65998 C11orf95 chromosome 11 open reading frame 95 protein-coding 8.917 0.908
-65999 LRRC61 leucine rich repeat containing 61 protein-coding 8.238 1.55
-660 BMX BMX non-receptor tyrosine kinase protein-coding 3.208 1.81
-66000 TMEM108 transmembrane protein 108 protein-coding 5.366 2.605
-66002 CYP4F12 cytochrome P450 family 4 subfamily F member 12 protein-coding 4.241 2.959
-66004 LYNX1 Ly6/neurotoxin 1 protein-coding 8.352 2.127
-66005 CHID1 chitinase domain containing 1 protein-coding 10.69 0.6438
-66008 TRAK2 trafficking kinesin protein 2 protein-coding 10.16 0.8769
-6601 SMARCC2 SWI/SNF related, matrix associated, actin dependent regulator of chromatin subfamily c member 2 protein-coding 11.39 0.5268
+65996 CENPBD1P1 CENPB DNA-binding domains containing 1 pseudogene 1 pseudo 9.197 0.5319
+65997 RASL11B RAS like family 11 member B protein-coding 5.455 2.122
+65998 C11orf95 chromosome 11 open reading frame 95 protein-coding 8.917 0.9079
+65999 LRRC61 leucine rich repeat containing 61 protein-coding 8.238 1.549
+660 BMX BMX non-receptor tyrosine kinase protein-coding 3.21 1.812
+66000 TMEM108 transmembrane protein 108 protein-coding 5.367 2.605
+66002 CYP4F12 cytochrome P450 family 4 subfamily F member 12 protein-coding 4.242 2.959
+66004 LYNX1 Ly6/neurotoxin 1 protein-coding 8.353 2.126
+66005 CHID1 chitinase domain containing 1 protein-coding 10.69 0.6436
+66008 TRAK2 trafficking kinesin protein 2 protein-coding 10.16 0.8768
+6601 SMARCC2 SWI/SNF related, matrix associated, actin dependent regulator of chromatin subfamily c member 2 protein-coding 11.39 0.5265
6602 SMARCD1 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily d, member 1 protein-coding 10.51 0.5288
-6603 SMARCD2 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily d, member 2 protein-coding 11.04 0.8188
-66035 SLC2A11 solute carrier family 2 member 11 protein-coding 7.183 1.038
-66036 MTMR9 myotubularin related protein 9 protein-coding 8.405 0.8343
-6604 SMARCD3 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily d, member 3 protein-coding 8.431 1.664
-6605 SMARCE1 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily e, member 1 protein-coding 11.36 0.5341
+6603 SMARCD2 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily d, member 2 protein-coding 11.04 0.8186
+66035 SLC2A11 solute carrier family 2 member 11 protein-coding 7.183 1.037
+66036 MTMR9 myotubularin related protein 9 protein-coding 8.405 0.8342
+6604 SMARCD3 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily d, member 3 protein-coding 8.431 1.663
+6605 SMARCE1 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily e, member 1 protein-coding 11.36 0.5339
6606 SMN1 survival of motor neuron 1, telomeric protein-coding 2.061 1.316
-6607 SMN2 survival of motor neuron 2, centromeric protein-coding 9.953 0.6131
+6607 SMN2 survival of motor neuron 2, centromeric protein-coding 9.953 0.613
6608 SMO smoothened, frizzled class receptor protein-coding 9.017 1.707
-6609 SMPD1 sphingomyelin phosphodiesterase 1 protein-coding 9.751 0.9693
-661 POLR3D RNA polymerase III subunit D protein-coding 8.558 0.6773
-6610 SMPD2 sphingomyelin phosphodiesterase 2 protein-coding 8.001 0.8431
+6609 SMPD1 sphingomyelin phosphodiesterase 1 protein-coding 9.751 0.9692
+661 POLR3D RNA polymerase III subunit D protein-coding 8.558 0.677
+6610 SMPD2 sphingomyelin phosphodiesterase 2 protein-coding 8.001 0.8427
6611 SMS spermine synthase protein-coding 10.82 0.963
-6612 SUMO3 small ubiquitin-like modifier 3 protein-coding 11.1 0.536
+6612 SUMO3 small ubiquitin-like modifier 3 protein-coding 11.1 0.5359
6613 SUMO2 small ubiquitin-like modifier 2 protein-coding 11.66 0.4989
-6614 SIGLEC1 sialic acid binding Ig like lectin 1 protein-coding 7.564 1.786
-6615 SNAI1 snail family transcriptional repressor 1 protein-coding 6.203 1.556
-6616 SNAP25 synaptosome associated protein 25 protein-coding 5.191 3.095
-6617 SNAPC1 small nuclear RNA activating complex polypeptide 1 protein-coding 7.954 0.8449
-6618 SNAPC2 small nuclear RNA activating complex polypeptide 2 protein-coding 8.716 0.7776
-6619 SNAPC3 small nuclear RNA activating complex polypeptide 3 protein-coding 8.84 0.6574
-662 BNIP1 BCL2 interacting protein 1 protein-coding 7.71 0.5698
-6621 SNAPC4 small nuclear RNA activating complex polypeptide 4 protein-coding 8.655 0.6998
-6622 SNCA synuclein alpha protein-coding 6.128 2.144
+6614 SIGLEC1 sialic acid binding Ig like lectin 1 protein-coding 7.564 1.787
+6615 SNAI1 snail family transcriptional repressor 1 protein-coding 6.204 1.556
+6616 SNAP25 synaptosome associated protein 25 protein-coding 5.193 3.095
+6617 SNAPC1 small nuclear RNA activating complex polypeptide 1 protein-coding 7.954 0.8446
+6618 SNAPC2 small nuclear RNA activating complex polypeptide 2 protein-coding 8.716 0.7773
+6619 SNAPC3 small nuclear RNA activating complex polypeptide 3 protein-coding 8.84 0.6572
+662 BNIP1 BCL2 interacting protein 1 protein-coding 7.71 0.5697
+6621 SNAPC4 small nuclear RNA activating complex polypeptide 4 protein-coding 8.655 0.6995
+6622 SNCA synuclein alpha protein-coding 6.129 2.144
6623 SNCG synuclein gamma protein-coding 7.211 2.378
6624 FSCN1 fascin actin-bundling protein 1 protein-coding 10.96 1.853
-6625 SNRNP70 small nuclear ribonucleoprotein U1 subunit 70 protein-coding 11.69 0.6714
-6626 SNRPA small nuclear ribonucleoprotein polypeptide A protein-coding 10.43 0.6747
-6627 SNRPA1 small nuclear ribonucleoprotein polypeptide A' protein-coding 8.887 0.7868
-6628 SNRPB small nuclear ribonucleoprotein polypeptides B and B1 protein-coding 11.8 0.8636
-6629 SNRPB2 small nuclear ribonucleoprotein polypeptide B2 protein-coding 10.04 0.5858
-663 BNIP2 BCL2 interacting protein 2 protein-coding 9.439 0.6011
-6631 SNRPC small nuclear ribonucleoprotein polypeptide C protein-coding 10.41 0.671
-6632 SNRPD1 small nuclear ribonucleoprotein D1 polypeptide protein-coding 9.78 0.7426
+6625 SNRNP70 small nuclear ribonucleoprotein U1 subunit 70 protein-coding 11.69 0.6713
+6626 SNRPA small nuclear ribonucleoprotein polypeptide A protein-coding 10.43 0.6746
+6627 SNRPA1 small nuclear ribonucleoprotein polypeptide A' protein-coding 8.886 0.7868
+6628 SNRPB small nuclear ribonucleoprotein polypeptides B and B1 protein-coding 11.8 0.8637
+6629 SNRPB2 small nuclear ribonucleoprotein polypeptide B2 protein-coding 10.04 0.5859
+663 BNIP2 BCL2 interacting protein 2 protein-coding 9.439 0.601
+6631 SNRPC small nuclear ribonucleoprotein polypeptide C protein-coding 10.41 0.6711
+6632 SNRPD1 small nuclear ribonucleoprotein D1 polypeptide protein-coding 9.779 0.7429
6633 SNRPD2 small nuclear ribonucleoprotein D2 polypeptide protein-coding 11.46 0.7573
-6634 SNRPD3 small nuclear ribonucleoprotein D3 polypeptide protein-coding 10.79 0.6218
-6635 SNRPE small nuclear ribonucleoprotein polypeptide E protein-coding 9.781 0.75
-6636 SNRPF small nuclear ribonucleoprotein polypeptide F protein-coding 9.807 0.8246
-6637 SNRPG small nuclear ribonucleoprotein polypeptide G protein-coding 9.719 0.7413
-6638 SNRPN small nuclear ribonucleoprotein polypeptide N protein-coding 10.7 1.757
-664 BNIP3 BCL2 interacting protein 3 protein-coding 9.962 1.549
+6634 SNRPD3 small nuclear ribonucleoprotein D3 polypeptide protein-coding 10.79 0.6217
+6635 SNRPE small nuclear ribonucleoprotein polypeptide E protein-coding 9.78 0.7504
+6636 SNRPF small nuclear ribonucleoprotein polypeptide F protein-coding 9.806 0.825
+6637 SNRPG small nuclear ribonucleoprotein polypeptide G protein-coding 9.718 0.7415
+6638 SNRPN small nuclear ribonucleoprotein polypeptide N protein-coding 10.71 1.756
+664 BNIP3 BCL2 interacting protein 3 protein-coding 9.961 1.548
6640 SNTA1 syntrophin alpha 1 protein-coding 9.04 1.38
-6641 SNTB1 syntrophin beta 1 protein-coding 8.86 1.775
-6642 SNX1 sorting nexin 1 protein-coding 11.33 0.7014
-6643 SNX2 sorting nexin 2 protein-coding 10.38 0.5712
-6645 SNTB2 syntrophin beta 2 protein-coding 9.553 0.7602
-6646 SOAT1 sterol O-acyltransferase 1 protein-coding 9.521 1.073
-664618 HSP90AB4P heat shock protein 90 alpha family class B member 4, pseudogene pseudo 0.8601 0.8331
+6641 SNTB1 syntrophin beta 1 protein-coding 8.86 1.774
+6642 SNX1 sorting nexin 1 protein-coding 11.33 0.7012
+6643 SNX2 sorting nexin 2 protein-coding 10.38 0.5711
+6645 SNTB2 syntrophin beta 2 protein-coding 9.554 0.7604
+6646 SOAT1 sterol O-acyltransferase 1 protein-coding 9.522 1.073
+664618 HSP90AB4P heat shock protein 90 alpha family class B member 4, pseudogene pseudo 0.8598 0.8329
6647 SOD1 superoxide dismutase 1 protein-coding 12.04 0.7586
-664701 ZNF826P zinc finger protein 826, pseudogene pseudo 4.337 2.053
+664701 ZNF826P zinc finger protein 826, pseudogene pseudo 4.339 2.053
6648 SOD2 superoxide dismutase 2 protein-coding 12.42 1.282
-6649 SOD3 superoxide dismutase 3 protein-coding 8.494 1.952
-665 BNIP3L BCL2 interacting protein 3 like protein-coding 11.02 0.8498
+6649 SOD3 superoxide dismutase 3 protein-coding 8.496 1.952
+665 BNIP3L BCL2 interacting protein 3 like protein-coding 11.02 0.8494
6650 CAPN15 calpain 15 protein-coding 9.915 0.7905
-6651 SON SON DNA binding protein protein-coding 12.15 0.5963
-6652 SORD sorbitol dehydrogenase protein-coding 9.869 1.617
-6653 SORL1 sortilin related receptor 1 protein-coding 10.82 1.593
-6654 SOS1 SOS Ras/Rac guanine nucleotide exchange factor 1 protein-coding 10.15 0.5924
-6655 SOS2 SOS Ras/Rho guanine nucleotide exchange factor 2 protein-coding 9.717 0.6873
+6651 SON SON DNA binding protein protein-coding 12.15 0.5962
+6652 SORD sorbitol dehydrogenase protein-coding 9.869 1.619
+6653 SORL1 sortilin related receptor 1 protein-coding 10.83 1.593
+6654 SOS1 SOS Ras/Rac guanine nucleotide exchange factor 1 protein-coding 10.15 0.5923
+6655 SOS2 SOS Ras/Rho guanine nucleotide exchange factor 2 protein-coding 9.718 0.6872
6659 SOX4 SRY-box 4 protein-coding 11.36 1.291
666 BOK BOK, BCL2 family apoptosis regulator protein-coding 9.564 1.341
-6660 SOX5 SRY-box 5 protein-coding 4.105 2.062
-6662 SOX9 SRY-box 9 protein-coding 9.996 2.19
-6663 SOX10 SRY-box 10 protein-coding 3.016 3.551
-6665 SOX15 SRY-box 15 protein-coding 5.443 2.725
-6666 SOX12 SRY-box 12 protein-coding 9.458 1.002
-6667 SP1 Sp1 transcription factor protein-coding 11.23 0.5826
-6668 SP2 Sp2 transcription factor protein-coding 9.198 0.4938
+6660 SOX5 SRY-box 5 protein-coding 4.106 2.061
+6662 SOX9 SRY-box 9 protein-coding 9.995 2.19
+6663 SOX10 SRY-box 10 protein-coding 3.017 3.55
+6665 SOX15 SRY-box 15 protein-coding 5.444 2.725
+6666 SOX12 SRY-box 12 protein-coding 9.457 1.002
+6667 SP1 Sp1 transcription factor protein-coding 11.23 0.5824
+6668 SP2 Sp2 transcription factor protein-coding 9.199 0.4936
667 DST dystonin protein-coding 11.67 1.457
-6670 SP3 Sp3 transcription factor protein-coding 10.67 0.6441
-6671 SP4 Sp4 transcription factor protein-coding 7.612 1.013
-6672 SP100 SP100 nuclear antigen protein-coding 10.32 0.9844
-6674 SPAG1 sperm associated antigen 1 protein-coding 7.709 1.247
-6675 UAP1 UDP-N-acetylglucosamine pyrophosphorylase 1 protein-coding 10.12 0.9858
-6676 SPAG4 sperm associated antigen 4 protein-coding 6.116 1.919
-6678 SPARC secreted protein acidic and cysteine rich protein-coding 14.43 1.522
-6683 SPAST spastin protein-coding 9.156 0.6904
-6687 SPG7 SPG7, paraplegin matrix AAA peptidase subunit protein-coding 10.4 0.5828
-6688 SPI1 Spi-1 proto-oncogene protein-coding 8.429 1.37
-6689 SPIB Spi-B transcription factor protein-coding 3.809 2.456
-669 BPGM bisphosphoglycerate mutase protein-coding 9.085 0.8488
+6670 SP3 Sp3 transcription factor protein-coding 10.67 0.6439
+6671 SP4 Sp4 transcription factor protein-coding 7.613 1.013
+6672 SP100 SP100 nuclear antigen protein-coding 10.33 0.9846
+6674 SPAG1 sperm associated antigen 1 protein-coding 7.708 1.246
+6675 UAP1 UDP-N-acetylglucosamine pyrophosphorylase 1 protein-coding 10.12 0.9857
+6676 SPAG4 sperm associated antigen 4 protein-coding 6.115 1.918
+6678 SPARC secreted protein acidic and cysteine rich protein-coding 14.42 1.521
+6683 SPAST spastin protein-coding 9.155 0.6901
+6687 SPG7 SPG7, paraplegin matrix AAA peptidase subunit protein-coding 10.4 0.5826
+6688 SPI1 Spi-1 proto-oncogene protein-coding 8.429 1.371
+6689 SPIB Spi-B transcription factor protein-coding 3.811 2.457
+669 BPGM bisphosphoglycerate mutase protein-coding 9.084 0.8485
6691 SPINK2 serine peptidase inhibitor, Kazal type 2 protein-coding 1.702 1.758
6692 SPINT1 serine peptidase inhibitor, Kunitz type 1 protein-coding 10.75 2.857
-6693 SPN sialophorin protein-coding 6.973 1.686
-6695 SPOCK1 SPARC (osteonectin), cwcv and kazal like domains proteoglycan 1 protein-coding 8.753 2.719
-6696 SPP1 secreted phosphoprotein 1 protein-coding 11.33 2.951
-6697 SPR sepiapterin reductase protein-coding 9.553 1.055
-670 BPHL biphenyl hydrolase like protein-coding 8.567 0.9237
-6709 SPTAN1 spectrin alpha, non-erythrocytic 1 protein-coding 12.78 0.6931
-671 BPI bactericidal permeability increasing protein protein-coding 1.285 1.459
-6710 SPTB spectrin beta, erythrocytic protein-coding 6.755 1.696
-6711 SPTBN1 spectrin beta, non-erythrocytic 1 protein-coding 12.9 0.9256
-6712 SPTBN2 spectrin beta, non-erythrocytic 2 protein-coding 9.554 2.093
+6693 SPN sialophorin protein-coding 6.975 1.687
+6695 SPOCK1 SPARC (osteonectin), cwcv and kazal like domains proteoglycan 1 protein-coding 8.754 2.719
+6696 SPP1 secreted phosphoprotein 1 protein-coding 11.33 2.952
+6697 SPR sepiapterin reductase protein-coding 9.552 1.055
+670 BPHL biphenyl hydrolase like protein-coding 8.566 0.9236
+6709 SPTAN1 spectrin alpha, non-erythrocytic 1 protein-coding 12.78 0.6929
+671 BPI bactericidal permeability increasing protein protein-coding 1.286 1.46
+6710 SPTB spectrin beta, erythrocytic protein-coding 6.756 1.696
+6711 SPTBN1 spectrin beta, non-erythrocytic 1 protein-coding 12.9 0.9255
+6712 SPTBN2 spectrin beta, non-erythrocytic 2 protein-coding 9.553 2.093
6713 SQLE squalene epoxidase protein-coding 10.07 1.416
-6714 SRC SRC proto-oncogene, non-receptor tyrosine kinase protein-coding 10.64 0.9515
-6715 SRD5A1 steroid 5 alpha-reductase 1 protein-coding 8.429 1.074
-6716 SRD5A2 steroid 5 alpha-reductase 2 protein-coding 2.165 2.426
-6717 SRI sorcin protein-coding 10.85 0.9519
-672 BRCA1 BRCA1, DNA repair associated protein-coding 8.154 1.225
-6720 SREBF1 sterol regulatory element binding transcription factor 1 protein-coding 11.49 0.9981
-6721 SREBF2 sterol regulatory element binding transcription factor 2 protein-coding 11.75 0.8098
-6722 SRF serum response factor protein-coding 10.4 0.6228
-6723 SRM spermidine synthase protein-coding 10.42 0.8578
-6726 SRP9 signal recognition particle 9 protein-coding 11.96 0.6053
+6714 SRC SRC proto-oncogene, non-receptor tyrosine kinase protein-coding 10.64 0.9513
+6715 SRD5A1 steroid 5 alpha-reductase 1 protein-coding 8.428 1.074
+6716 SRD5A2 steroid 5 alpha-reductase 2 protein-coding 2.166 2.426
+6717 SRI sorcin protein-coding 10.85 0.9515
+672 BRCA1 BRCA1, DNA repair associated protein-coding 8.153 1.225
+6720 SREBF1 sterol regulatory element binding transcription factor 1 protein-coding 11.49 0.9979
+6721 SREBF2 sterol regulatory element binding transcription factor 2 protein-coding 11.75 0.8096
+6722 SRF serum response factor protein-coding 10.4 0.623
+6723 SRM spermidine synthase protein-coding 10.42 0.8581
+6726 SRP9 signal recognition particle 9 protein-coding 11.96 0.6054
6727 SRP14 signal recognition particle 14 protein-coding 12.04 0.5243
-6728 SRP19 signal recognition particle 19 protein-coding 9.323 0.5112
-6729 SRP54 signal recognition particle 54 protein-coding 10.2 0.5298
-673 BRAF B-Raf proto-oncogene, serine/threonine kinase protein-coding 7.14 0.8024
+6728 SRP19 signal recognition particle 19 protein-coding 9.322 0.5111
+6729 SRP54 signal recognition particle 54 protein-coding 10.2 0.5296
+673 BRAF B-Raf proto-oncogene, serine/threonine kinase protein-coding 7.14 0.8021
6730 SRP68 signal recognition particle 68 protein-coding 11.05 0.4238
-6731 SRP72 signal recognition particle 72 protein-coding 11.09 0.5207
-6732 SRPK1 SRSF protein kinase 1 protein-coding 10.23 0.9294
-6733 SRPK2 SRSF protein kinase 2 protein-coding 9.852 0.7705
-6734 SRPRA SRP receptor alpha subunit protein-coding 11.76 0.6666
-6737 TRIM21 tripartite motif containing 21 protein-coding 8.744 0.824
-6738 TROVE2 TROVE domain family member 2 protein-coding 9.97 0.5752
-6741 SSB Sjogren syndrome antigen B protein-coding 11.04 0.5639
-6742 SSBP1 single stranded DNA binding protein 1 protein-coding 10.27 0.568
-6744 SSFA2 sperm specific antigen 2 protein-coding 11.16 0.9894
-6745 SSR1 signal sequence receptor subunit 1 protein-coding 11.87 0.5325
-6746 SSR2 signal sequence receptor subunit 2 protein-coding 12.33 0.7147
-6747 SSR3 signal sequence receptor subunit 3 protein-coding 11.61 0.6591
-6748 SSR4 signal sequence receptor subunit 4 protein-coding 11.79 0.8773
+6731 SRP72 signal recognition particle 72 protein-coding 11.09 0.5205
+6732 SRPK1 SRSF protein kinase 1 protein-coding 10.23 0.9292
+6733 SRPK2 SRSF protein kinase 2 protein-coding 9.852 0.7702
+6734 SRPRA SRP receptor alpha subunit protein-coding 11.76 0.6664
+6737 TRIM21 tripartite motif containing 21 protein-coding 8.744 0.8238
+6738 TROVE2 TROVE domain family member 2 protein-coding 9.97 0.5751
+6741 SSB Sjogren syndrome antigen B protein-coding 11.04 0.5638
+6742 SSBP1 single stranded DNA binding protein 1 protein-coding 10.27 0.5685
+6744 SSFA2 sperm specific antigen 2 protein-coding 11.16 0.9893
+6745 SSR1 signal sequence receptor subunit 1 protein-coding 11.87 0.5324
+6746 SSR2 signal sequence receptor subunit 2 protein-coding 12.33 0.7145
+6747 SSR3 signal sequence receptor subunit 3 protein-coding 11.61 0.6589
+6748 SSR4 signal sequence receptor subunit 4 protein-coding 11.79 0.8774
6749 SSRP1 structure specific recognition protein 1 protein-coding 11.87 0.5477
-675 BRCA2 BRCA2, DNA repair associated protein-coding 6.405 1.729
-6752 SSTR2 somatostatin receptor 2 protein-coding 4.997 1.998
-6753 SSTR3 somatostatin receptor 3 protein-coding 1.236 1.533
-6760 SS18 SS18, nBAF chromatin remodeling complex subunit protein-coding 10.71 0.5143
-6764 ST5 suppression of tumorigenicity 5 protein-coding 10.48 0.8821
-6767 ST13 ST13, Hsp70 interacting protein protein-coding 12.16 0.5619
+675 BRCA2 BRCA2, DNA repair associated protein-coding 6.405 1.728
+6752 SSTR2 somatostatin receptor 2 protein-coding 4.998 1.998
+6753 SSTR3 somatostatin receptor 3 protein-coding 1.237 1.534
+6760 SS18 SS18, nBAF chromatin remodeling complex subunit protein-coding 10.71 0.5141
+6764 ST5 suppression of tumorigenicity 5 protein-coding 10.48 0.8819
+6767 ST13 ST13, Hsp70 interacting protein protein-coding 12.16 0.5618
6768 ST14 suppression of tumorigenicity 14 protein-coding 11.16 2.574
-6769 STAC SH3 and cysteine rich domain protein-coding 4.572 2.39
+6769 STAC SH3 and cysteine rich domain protein-coding 4.575 2.39
677 ZFP36L1 ZFP36 ring finger protein like 1 protein-coding 12.59 1.02
-6770 STAR steroidogenic acute regulatory protein protein-coding 3.556 2.228
+6770 STAR steroidogenic acute regulatory protein protein-coding 3.557 2.23
6772 STAT1 signal transducer and activator of transcription 1 protein-coding 12.22 1.171
-6773 STAT2 signal transducer and activator of transcription 2 protein-coding 11 0.7039
-6774 STAT3 signal transducer and activator of transcription 3 protein-coding 12.2 0.6286
-6775 STAT4 signal transducer and activator of transcription 4 protein-coding 5.514 1.759
+6773 STAT2 signal transducer and activator of transcription 2 protein-coding 11 0.7038
+6774 STAT3 signal transducer and activator of transcription 3 protein-coding 12.2 0.6285
+6775 STAT4 signal transducer and activator of transcription 4 protein-coding 5.515 1.759
6776 STAT5A signal transducer and activator of transcription 5A protein-coding 9.472 1.014
-6777 STAT5B signal transducer and activator of transcription 5B protein-coding 10.57 0.6235
-677766 SCARNA2 small Cajal body-specific RNA 2 ncRNA 2.532 1.278
+6777 STAT5B signal transducer and activator of transcription 5B protein-coding 10.57 0.6237
+677766 SCARNA2 small Cajal body-specific RNA 2 ncRNA 2.533 1.278
677767 SCARNA7 small Cajal body-specific RNA 7 ncRNA 1.526 1.2
677769 SCARNA17 small Cajal body-specific RNA 17 ncRNA 2.874 1.306
-677772 SCARNA6 small Cajal body-specific RNA 6 ncRNA 0.7613 0.7957
-677775 SCARNA5 small Cajal body-specific RNA 5 ncRNA 0.9015 1.02
+677772 SCARNA6 small Cajal body-specific RNA 6 ncRNA 0.7615 0.7955
+677775 SCARNA5 small Cajal body-specific RNA 5 ncRNA 0.902 1.02
677777 SCARNA12 small Cajal body-specific RNA 12 ncRNA 2.417 1.084
-677781 SCARNA16 small Cajal body-specific RNA 16 ncRNA 0.959 0.8218
+677781 SCARNA16 small Cajal body-specific RNA 16 ncRNA 0.9587 0.8216
677797 SNORA7B small nucleolar RNA, H/ACA box 7B snoRNA 2.369 1.04
-6778 STAT6 signal transducer and activator of transcription 6 protein-coding 11.64 1.07
+6778 STAT6 signal transducer and activator of transcription 6 protein-coding 11.64 1.069
677821 SNORA71E small nucleolar RNA, H/ACA box 71E snoRNA 2.57 1.078
677832 SNORA53 small nucleolar RNA, H/ACA box 53 snoRNA 1.012 0.7803
-677847 SNORA81 small nucleolar RNA, H/ACA box 81 snoRNA 0.6418 0.7255
-677850 SNORD1C small nucleolar RNA, C/D box 1C snoRNA 4.316 1.29
-678 ZFP36L2 ZFP36 ring finger protein like 2 protein-coding 11.88 0.9008
-6780 STAU1 staufen double-stranded RNA binding protein 1 protein-coding 11.7 0.4648
-6781 STC1 stanniocalcin 1 protein-coding 8.52 2.249
-6782 HSPA13 heat shock protein family A (Hsp70) member 13 protein-coding 9.616 0.8812
-6783 SULT1E1 sulfotransferase family 1E member 1 protein-coding 2.368 2.781
-6785 ELOVL4 ELOVL fatty acid elongase 4 protein-coding 5.576 2.229
-6786 STIM1 stromal interaction molecule 1 protein-coding 10.56 0.7268
-678655 CD27-AS1 CD27 antisense RNA 1 ncRNA 8.267 0.8991
-6787 NEK4 NIMA related kinase 4 protein-coding 8.704 0.7281
-6788 STK3 serine/threonine kinase 3 protein-coding 8.795 0.7765
-6789 STK4 serine/threonine kinase 4 protein-coding 9.89 0.6266
-6790 AURKA aurora kinase A protein-coding 8.239 1.689
+677847 SNORA81 small nucleolar RNA, H/ACA box 81 snoRNA 0.6417 0.7253
+677850 SNORD1C small nucleolar RNA, C/D box 1C snoRNA 4.316 1.289
+678 ZFP36L2 ZFP36 ring finger protein like 2 protein-coding 11.88 0.9017
+6780 STAU1 staufen double-stranded RNA binding protein 1 protein-coding 11.7 0.4647
+6781 STC1 stanniocalcin 1 protein-coding 8.519 2.249
+6782 HSPA13 heat shock protein family A (Hsp70) member 13 protein-coding 9.616 0.8809
+6783 SULT1E1 sulfotransferase family 1E member 1 protein-coding 2.369 2.781
+6785 ELOVL4 ELOVL fatty acid elongase 4 protein-coding 5.577 2.229
+6786 STIM1 stromal interaction molecule 1 protein-coding 10.57 0.7266
+678655 CD27-AS1 CD27 antisense RNA 1 ncRNA 8.267 0.8988
+6787 NEK4 NIMA related kinase 4 protein-coding 8.704 0.7278
+6788 STK3 serine/threonine kinase 3 protein-coding 8.795 0.7766
+6789 STK4 serine/threonine kinase 4 protein-coding 9.89 0.6269
+6790 AURKA aurora kinase A protein-coding 8.237 1.69
6791 AURKAPS1 aurora kinase A pseudogene 1 pseudo 3.668 1.158
-6792 CDKL5 cyclin dependent kinase like 5 protein-coding 4.366 1.81
-6793 STK10 serine/threonine kinase 10 protein-coding 9.49 0.9225
-6794 STK11 serine/threonine kinase 11 protein-coding 10.14 0.6447
+6792 CDKL5 cyclin dependent kinase like 5 protein-coding 4.367 1.81
+6793 STK10 serine/threonine kinase 10 protein-coding 9.49 0.9231
+6794 STK11 serine/threonine kinase 11 protein-coding 10.14 0.6444
6795 AURKC aurora kinase C protein-coding 3.558 1.206
6799 SULT1A2 sulfotransferase family 1A member 2 protein-coding 4.408 1.94
6801 STRN striatin protein-coding 7.709 1.355
-6804 STX1A syntaxin 1A protein-coding 7.009 1.452
+6804 STX1A syntaxin 1A protein-coding 7.01 1.452
6809 STX3 syntaxin 3 protein-coding 9.614 1.107
-6810 STX4 syntaxin 4 protein-coding 9.777 0.5744
-6811 STX5 syntaxin 5 protein-coding 9.992 0.4972
-6812 STXBP1 syntaxin binding protein 1 protein-coding 9.444 1.531
+6810 STX4 syntaxin 4 protein-coding 9.777 0.5742
+6811 STX5 syntaxin 5 protein-coding 9.992 0.4973
+6812 STXBP1 syntaxin binding protein 1 protein-coding 9.445 1.531
6813 STXBP2 syntaxin binding protein 2 protein-coding 10.4 1.344
-6814 STXBP3 syntaxin binding protein 3 protein-coding 9.656 0.5956
-6815 STYX serine/threonine/tyrosine interacting protein protein-coding 8.812 0.6326
+6814 STXBP3 syntaxin binding protein 3 protein-coding 9.656 0.5954
+6815 STYX serine/threonine/tyrosine interacting protein protein-coding 8.812 0.6325
6817 SULT1A1 sulfotransferase family 1A member 1 protein-coding 8.361 1.553
6818 SULT1A3 sulfotransferase family 1A member 3 protein-coding 9.339 1.011
-6819 SULT1C2 sulfotransferase family 1C member 2 protein-coding 5.012 3.277
-682 BSG basigin (Ok blood group) protein-coding 13.72 0.8135
-6820 SULT2B1 sulfotransferase family 2B member 1 protein-coding 5.921 3.145
-6821 SUOX sulfite oxidase protein-coding 9.32 0.8348
-6827 SUPT4H1 SPT4 homolog, DSIF elongation factor subunit protein-coding 10.36 0.491
-6829 SUPT5H SPT5 homolog, DSIF elongation factor subunit protein-coding 11.74 0.4758
-683 BST1 bone marrow stromal cell antigen 1 protein-coding 5.813 1.516
-6830 SUPT6H SPT6 homolog, histone chaperone protein-coding 11.53 0.4446
-6832 SUPV3L1 Suv3 like RNA helicase protein-coding 9.092 0.5108
-6834 SURF1 SURF1, cytochrome c oxidase assembly factor protein-coding 9.7 0.6522
-6835 SURF2 surfeit 2 protein-coding 8.346 0.8191
-6836 SURF4 surfeit 4 protein-coding 12.47 0.5729
-6837 MED22 mediator complex subunit 22 protein-coding 9.589 0.5572
-6838 SURF6 surfeit 6 protein-coding 9.727 0.6166
-6839 SUV39H1 suppressor of variegation 3-9 homolog 1 protein-coding 8.186 0.7991
-684 BST2 bone marrow stromal cell antigen 2 protein-coding 10.68 1.843
-6840 SVIL supervillin protein-coding 10.47 1.473
-6843 VAMP1 vesicle associated membrane protein 1 protein-coding 7.46 1.162
+6819 SULT1C2 sulfotransferase family 1C member 2 protein-coding 5.013 3.278
+682 BSG basigin (Ok blood group) protein-coding 13.72 0.8136
+6820 SULT2B1 sulfotransferase family 2B member 1 protein-coding 5.921 3.146
+6821 SUOX sulfite oxidase protein-coding 9.32 0.8346
+6827 SUPT4H1 SPT4 homolog, DSIF elongation factor subunit protein-coding 10.36 0.4909
+6829 SUPT5H SPT5 homolog, DSIF elongation factor subunit protein-coding 11.74 0.4757
+683 BST1 bone marrow stromal cell antigen 1 protein-coding 5.814 1.516
+6830 SUPT6H SPT6 homolog, histone chaperone protein-coding 11.53 0.4444
+6832 SUPV3L1 Suv3 like RNA helicase protein-coding 9.092 0.5107
+6834 SURF1 SURF1, cytochrome c oxidase assembly factor protein-coding 9.7 0.652
+6835 SURF2 surfeit 2 protein-coding 8.346 0.819
+6836 SURF4 surfeit 4 protein-coding 12.47 0.5728
+6837 MED22 mediator complex subunit 22 protein-coding 9.589 0.557
+6838 SURF6 surfeit 6 protein-coding 9.727 0.6164
+6839 SUV39H1 suppressor of variegation 3-9 homolog 1 protein-coding 8.186 0.7992
+684 BST2 bone marrow stromal cell antigen 2 protein-coding 10.68 1.842
+6840 SVIL supervillin protein-coding 10.48 1.474
+6843 VAMP1 vesicle associated membrane protein 1 protein-coding 7.46 1.163
6844 VAMP2 vesicle associated membrane protein 2 protein-coding 10.55 1.045
-6845 VAMP7 vesicle associated membrane protein 7 protein-coding 9.938 0.5523
-6846 XCL2 X-C motif chemokine ligand 2 protein-coding 2.963 1.724
-6850 SYK spleen associated tyrosine kinase protein-coding 9.598 1.533
+6845 VAMP7 vesicle associated membrane protein 7 protein-coding 9.938 0.5521
+6846 XCL2 X-C motif chemokine ligand 2 protein-coding 2.964 1.724
+6850 SYK spleen associated tyrosine kinase protein-coding 9.599 1.533
6853 SYN1 synapsin I protein-coding 5.347 2.318
-6854 SYN2 synapsin II protein-coding 3.741 2.849
-6855 SYP synaptophysin protein-coding 6.022 2.479
+6854 SYN2 synapsin II protein-coding 3.743 2.849
+6855 SYP synaptophysin protein-coding 6.023 2.479
6856 SYPL1 synaptophysin like 1 protein-coding 11.44 0.723
-6857 SYT1 synaptotagmin 1 protein-coding 6.066 2.984
-686 BTD biotinidase protein-coding 8.505 0.9553
-6861 SYT5 synaptotagmin 5 protein-coding 2.9 2.793
-6865 TACR2 tachykinin receptor 2 protein-coding 3.912 1.653
+6857 SYT1 synaptotagmin 1 protein-coding 6.068 2.984
+686 BTD biotinidase protein-coding 8.506 0.9551
+6861 SYT5 synaptotagmin 5 protein-coding 2.901 2.794
+6865 TACR2 tachykinin receptor 2 protein-coding 3.913 1.654
6866 TAC3 tachykinin 3 protein-coding 1.544 2.253
-6867 TACC1 transforming acidic coiled-coil containing protein 1 protein-coding 10.79 1.078
-6868 ADAM17 ADAM metallopeptidase domain 17 protein-coding 9.124 1.053
-6869 TACR1 tachykinin receptor 1 protein-coding 3.898 2.097
-687 KLF9 Kruppel like factor 9 protein-coding 9.94 1.324
-6871 TADA2A transcriptional adaptor 2A protein-coding 7.487 0.6856
-6872 TAF1 TATA-box binding protein associated factor 1 protein-coding 9.722 0.7158
-6873 TAF2 TATA-box binding protein associated factor 2 protein-coding 9.354 0.8212
-6874 TAF4 TATA-box binding protein associated factor 4 protein-coding 8.843 0.6266
+6867 TACC1 transforming acidic coiled-coil containing protein 1 protein-coding 10.8 1.079
+6868 ADAM17 ADAM metallopeptidase domain 17 protein-coding 9.123 1.053
+6869 TACR1 tachykinin receptor 1 protein-coding 3.898 2.096
+687 KLF9 Kruppel like factor 9 protein-coding 9.941 1.324
+6871 TADA2A transcriptional adaptor 2A protein-coding 7.487 0.6855
+6872 TAF1 TATA-box binding protein associated factor 1 protein-coding 9.722 0.7156
+6873 TAF2 TATA-box binding protein associated factor 2 protein-coding 9.354 0.8208
+6874 TAF4 TATA-box binding protein associated factor 4 protein-coding 8.843 0.6264
6875 TAF4B TATA-box binding protein associated factor 4b protein-coding 6.93 1.447
-6876 TAGLN transgelin protein-coding 11.75 1.88
-6877 TAF5 TATA-box binding protein associated factor 5 protein-coding 6.768 0.7274
-6878 TAF6 TATA-box binding protein associated factor 6 protein-coding 10.48 0.5574
-6879 TAF7 TATA-box binding protein associated factor 7 protein-coding 11.3 0.582
-688 KLF5 Kruppel like factor 5 protein-coding 9.766 2.892
-6880 TAF9 TATA-box binding protein associated factor 9 protein-coding 10.2 0.4933
-6881 TAF10 TATA-box binding protein associated factor 10 protein-coding 9.825 0.7259
+6876 TAGLN transgelin protein-coding 11.75 1.881
+6877 TAF5 TATA-box binding protein associated factor 5 protein-coding 6.768 0.7273
+6878 TAF6 TATA-box binding protein associated factor 6 protein-coding 10.48 0.5573
+6879 TAF7 TATA-box binding protein associated factor 7 protein-coding 11.3 0.5818
+688 KLF5 Kruppel like factor 5 protein-coding 9.767 2.891
+6880 TAF9 TATA-box binding protein associated factor 9 protein-coding 10.2 0.4932
+6881 TAF10 TATA-box binding protein associated factor 10 protein-coding 9.825 0.7258
6882 TAF11 TATA-box binding protein associated factor 11 protein-coding 9.257 0.5232
-6883 TAF12 TATA-box binding protein associated factor 12 protein-coding 8.714 0.5638
+6883 TAF12 TATA-box binding protein associated factor 12 protein-coding 8.713 0.5637
6884 TAF13 TATA-box binding protein associated factor 13 protein-coding 7.208 1.002
-6885 MAP3K7 mitogen-activated protein kinase kinase kinase 7 protein-coding 9.275 0.6089
-6886 TAL1 TAL bHLH transcription factor 1, erythroid differentiation factor protein-coding 5.341 1.463
-6887 TAL2 TAL bHLH transcription factor 2 protein-coding 1.232 1.206
+6885 MAP3K7 mitogen-activated protein kinase kinase kinase 7 protein-coding 9.275 0.6086
+6886 TAL1 TAL bHLH transcription factor 1, erythroid differentiation factor protein-coding 5.342 1.464
+6887 TAL2 TAL bHLH transcription factor 2 protein-coding 1.232 1.205
6888 TALDO1 transaldolase 1 protein-coding 11.86 0.7859
-689 BTF3 basic transcription factor 3 protein-coding 12.93 0.5874
+689 BTF3 basic transcription factor 3 protein-coding 12.93 0.5873
6890 TAP1 transporter 1, ATP binding cassette subfamily B member protein-coding 11.49 1.241
-6891 TAP2 transporter 2, ATP binding cassette subfamily B member protein-coding 10.67 1.041
-6892 TAPBP TAP binding protein protein-coding 12.48 0.8271
-6894 TARBP1 TAR (HIV-1) RNA binding protein 1 protein-coding 9.329 0.8572
-6895 TARBP2 TARBP2, RISC loading complex RNA binding subunit protein-coding 8.998 0.7038
+6891 TAP2 transporter 2, ATP binding cassette subfamily B member protein-coding 10.67 1.04
+6892 TAPBP TAP binding protein protein-coding 12.48 0.827
+6894 TARBP1 TAR (HIV-1) RNA binding protein 1 protein-coding 9.329 0.8568
+6895 TARBP2 TARBP2, RISC loading complex RNA binding subunit protein-coding 8.997 0.7037
6897 TARS threonyl-tRNA synthetase protein-coding 10.94 0.6804
-6899 TBX1 T-box 1 protein-coding 4.647 2.945
-6900 CNTN2 contactin 2 protein-coding 2.847 2.888
-6901 TAZ tafazzin protein-coding 8.787 0.6951
-6902 TBCA tubulin folding cofactor A protein-coding 10.43 0.6041
+6899 TBX1 T-box 1 protein-coding 4.648 2.944
+6900 CNTN2 contactin 2 protein-coding 2.849 2.888
+6901 TAZ tafazzin protein-coding 8.786 0.695
+6902 TBCA tubulin folding cofactor A protein-coding 10.43 0.6042
6903 TBCC tubulin folding cofactor C protein-coding 8.994 0.5621
-6904 TBCD tubulin folding cofactor D protein-coding 10.88 0.639
-6905 TBCE tubulin folding cofactor E protein-coding 8.705 0.6231
-6907 TBL1X transducin beta like 1 X-linked protein-coding 9.753 0.9651
-6908 TBP TATA-box binding protein protein-coding 8.062 0.4526
-6909 TBX2 T-box 2 protein-coding 8.282 1.6
+6904 TBCD tubulin folding cofactor D protein-coding 10.88 0.6389
+6905 TBCE tubulin folding cofactor E protein-coding 8.704 0.6232
+6907 TBL1X transducin beta like 1 X-linked protein-coding 9.754 0.965
+6908 TBP TATA-box binding protein protein-coding 8.063 0.4525
+6909 TBX2 T-box 2 protein-coding 8.283 1.6
6911 TBX6 T-box 6 protein-coding 5.494 1.34
-6913 TBX15 T-box 15 protein-coding 5.273 2.201
-6915 TBXA2R thromboxane A2 receptor protein-coding 5.61 1.278
-6916 TBXAS1 thromboxane A synthase 1 protein-coding 7.768 1.459
-6917 TCEA1 transcription elongation factor A1 protein-coding 10.55 0.5874
-6919 TCEA2 transcription elongation factor A2 protein-coding 8.544 1.401
-6920 TCEA3 transcription elongation factor A3 protein-coding 9.141 2.092
+6913 TBX15 T-box 15 protein-coding 5.271 2.201
+6915 TBXA2R thromboxane A2 receptor protein-coding 5.611 1.278
+6916 TBXAS1 thromboxane A synthase 1 protein-coding 7.769 1.46
+6917 TCEA1 transcription elongation factor A1 protein-coding 10.55 0.5873
+6919 TCEA2 transcription elongation factor A2 protein-coding 8.545 1.4
+6920 TCEA3 transcription elongation factor A3 protein-coding 9.142 2.091
692086 SNORD17 small nucleolar RNA, C/D box 17 snoRNA 2.003 1.324
692094 MSMP microseminoprotein, prostate associated protein-coding 4.909 1.012
-692099 FAM86DP family with sequence similarity 86 member D, pseudogene pseudo 7.156 1.012
-6921 ELOC elongin C protein-coding 9.607 0.6348
-692148 SCARNA10 small Cajal body-specific RNA 10 ncRNA 1.5 1.177
-692223 SNORD97 small nucleolar RNA, C/D box 97 snoRNA 0.4085 0.701
+692099 FAM86DP family with sequence similarity 86 member D, pseudogene pseudo 7.157 1.012
+6921 ELOC elongin C protein-coding 9.606 0.6351
+692148 SCARNA10 small Cajal body-specific RNA 10 ncRNA 1.5 1.176
+692223 SNORD97 small nucleolar RNA, C/D box 97 snoRNA 0.4081 0.7007
6923 ELOB elongin B protein-coding 11.31 0.7728
-692312 PPAN-P2RY11 PPAN-P2RY11 readthrough protein-coding 3.106 3.19
-6924 ELOA elongin A protein-coding 10.42 0.5023
+692312 PPAN-P2RY11 PPAN-P2RY11 readthrough protein-coding 3.108 3.19
+6924 ELOA elongin A protein-coding 10.42 0.5021
6925 TCF4 transcription factor 4 protein-coding 9.968 1.468
-6926 TBX3 T-box 3 protein-coding 8.834 2.333
-6927 HNF1A HNF1 homeobox A protein-coding 5.82 2.509
-6929 TCF3 transcription factor 3 protein-coding 10.7 0.8036
+6926 TBX3 T-box 3 protein-coding 8.835 2.334
+6927 HNF1A HNF1 homeobox A protein-coding 5.819 2.509
+6929 TCF3 transcription factor 3 protein-coding 10.7 0.8034
6932 TCF7 transcription factor 7 protein-coding 8.167 1.587
-6934 TCF7L2 transcription factor 7 like 2 protein-coding 9.157 0.8499
-6935 ZEB1 zinc finger E-box binding homeobox 1 protein-coding 8.987 1.575
-6936 GCFC2 GC-rich sequence DNA-binding factor 2 protein-coding 8.567 0.587
+6934 TCF7L2 transcription factor 7 like 2 protein-coding 9.158 0.8497
+6935 ZEB1 zinc finger E-box binding homeobox 1 protein-coding 8.988 1.575
+6936 GCFC2 GC-rich sequence DNA-binding factor 2 protein-coding 8.567 0.5867
6938 TCF12 transcription factor 12 protein-coding 10.53 1.007
-6939 TCF15 transcription factor 15 protein-coding 3.227 1.741
-694 BTG1 BTG anti-proliferation factor 1 protein-coding 11.6 0.8237
-6940 ZNF354A zinc finger protein 354A protein-coding 7.893 0.7187
-6941 TCF19 transcription factor 19 protein-coding 8.895 1.182
-6942 TCF20 transcription factor 20 protein-coding 10.18 0.7137
-6944 VPS72 vacuolar protein sorting 72 homolog protein-coding 10.02 0.5536
-6945 MLX MLX, MAX dimerization protein protein-coding 10.22 0.5177
-6947 TCN1 transcobalamin 1 protein-coding 3.676 3.623
-6948 TCN2 transcobalamin 2 protein-coding 9.291 1.387
+6939 TCF15 transcription factor 15 protein-coding 3.227 1.74
+694 BTG1 BTG anti-proliferation factor 1 protein-coding 11.6 0.8238
+6940 ZNF354A zinc finger protein 354A protein-coding 7.893 0.7186
+6941 TCF19 transcription factor 19 protein-coding 8.894 1.182
+6942 TCF20 transcription factor 20 protein-coding 10.18 0.7134
+6944 VPS72 vacuolar protein sorting 72 homolog protein-coding 10.02 0.5537
+6945 MLX MLX, MAX dimerization protein protein-coding 10.22 0.5176
+6947 TCN1 transcobalamin 1 protein-coding 3.678 3.625
+6948 TCN2 transcobalamin 2 protein-coding 9.291 1.386
6949 TCOF1 treacle ribosome biogenesis factor 1 protein-coding 10.43 0.7382
-695 BTK Bruton tyrosine kinase protein-coding 6.478 1.608
+695 BTK Bruton tyrosine kinase protein-coding 6.479 1.609
6950 TCP1 t-complex 1 protein-coding 11.9 0.6162
6954 TCP11 t-complex 11 protein-coding 1.692 1.776
696 BTN1A1 butyrophilin subfamily 1 member A1 protein-coding 1.22 1.315
-6988 TCTA T cell leukemia translocation altered protein-coding 9.767 0.8839
-699 BUB1 BUB1 mitotic checkpoint serine/threonine kinase protein-coding 8.021 2.015
-6990 DYNLT3 dynein light chain Tctex-type 3 protein-coding 9.439 0.995
-6991 TCTE3 t-complex-associated-testis-expressed 3 protein-coding 5.525 0.9648
-6992 PPP1R11 protein phosphatase 1 regulatory inhibitor subunit 11 protein-coding 10.69 0.4475
-6993 DYNLT1 dynein light chain Tctex-type 1 protein-coding 10.33 0.7082
-6996 TDG thymine DNA glycosylase protein-coding 8.767 0.745
-6999 TDO2 tryptophan 2,3-dioxygenase protein-coding 5.117 2.644
-7001 PRDX2 peroxiredoxin 2 protein-coding 11.95 0.8992
-7003 TEAD1 TEA domain transcription factor 1 protein-coding 10.46 0.9162
+6988 TCTA T cell leukemia translocation altered protein-coding 9.768 0.8839
+699 BUB1 BUB1 mitotic checkpoint serine/threonine kinase protein-coding 8.019 2.015
+6990 DYNLT3 dynein light chain Tctex-type 3 protein-coding 9.44 0.9946
+6991 TCTE3 t-complex-associated-testis-expressed 3 protein-coding 5.525 0.9644
+6992 PPP1R11 protein phosphatase 1 regulatory inhibitor subunit 11 protein-coding 10.69 0.4474
+6993 DYNLT1 dynein light chain Tctex-type 1 protein-coding 10.33 0.708
+6996 TDG thymine DNA glycosylase protein-coding 8.766 0.7449
+6999 TDO2 tryptophan 2,3-dioxygenase protein-coding 5.116 2.644
+7001 PRDX2 peroxiredoxin 2 protein-coding 11.95 0.8993
+7003 TEAD1 TEA domain transcription factor 1 protein-coding 10.46 0.9163
7004 TEAD4 TEA domain transcription factor 4 protein-coding 7.984 1.475
7005 TEAD3 TEA domain transcription factor 3 protein-coding 9.389 1.428
-7006 TEC tec protein tyrosine kinase protein-coding 5.547 1.461
-7007 TECTA tectorin alpha protein-coding 3.603 1.528
-7008 TEF TEF, PAR bZIP transcription factor protein-coding 9.387 1.095
+7006 TEC tec protein tyrosine kinase protein-coding 5.548 1.461
+7007 TECTA tectorin alpha protein-coding 3.604 1.528
+7008 TEF TEF, PAR bZIP transcription factor protein-coding 9.388 1.095
7009 TMBIM6 transmembrane BAX inhibitor motif containing 6 protein-coding 14.25 0.5829
-701 BUB1B BUB1 mitotic checkpoint serine/threonine kinase B protein-coding 7.825 1.921
-7010 TEK TEK receptor tyrosine kinase protein-coding 7.132 1.557
-7011 TEP1 telomerase associated protein 1 protein-coding 9.458 0.7785
-7012 TERC telomerase RNA component ncRNA 0.8149 0.9645
-7013 TERF1 telomeric repeat binding factor 1 protein-coding 9.094 0.5946
-7014 TERF2 telomeric repeat binding factor 2 protein-coding 9.259 0.4965
-7015 TERT telomerase reverse transcriptase protein-coding 2.599 2.203
-7016 TESK1 testis associated actin remodelling kinase 1 protein-coding 9.852 0.6143
-7018 TF transferrin protein-coding 5.601 4.124
-7019 TFAM transcription factor A, mitochondrial protein-coding 8.979 0.6553
-7020 TFAP2A transcription factor AP-2 alpha protein-coding 7.574 3.145
-7023 TFAP4 transcription factor AP-4 protein-coding 8.234 0.8258
-7024 TFCP2 transcription factor CP2 protein-coding 9.186 0.6242
-7025 NR2F1 nuclear receptor subfamily 2 group F member 1 protein-coding 7.471 1.973
-7026 NR2F2 nuclear receptor subfamily 2 group F member 2 protein-coding 9.847 1.278
-7027 TFDP1 transcription factor Dp-1 protein-coding 10.75 0.8144
-7029 TFDP2 transcription factor Dp-2 protein-coding 8.27 0.8307
-7030 TFE3 transcription factor binding to IGHM enhancer 3 protein-coding 10.52 0.5528
-7033 TFF3 trefoil factor 3 protein-coding 6.915 4.113
+701 BUB1B BUB1 mitotic checkpoint serine/threonine kinase B protein-coding 7.823 1.922
+7010 TEK TEK receptor tyrosine kinase protein-coding 7.134 1.557
+7011 TEP1 telomerase associated protein 1 protein-coding 9.459 0.7788
+7012 TERC telomerase RNA component ncRNA 0.815 0.9644
+7013 TERF1 telomeric repeat binding factor 1 protein-coding 9.094 0.5943
+7014 TERF2 telomeric repeat binding factor 2 protein-coding 9.259 0.4963
+7015 TERT telomerase reverse transcriptase protein-coding 2.597 2.203
+7016 TESK1 testis associated actin remodelling kinase 1 protein-coding 9.852 0.6141
+7018 TF transferrin protein-coding 5.601 4.122
+7019 TFAM transcription factor A, mitochondrial protein-coding 8.978 0.6551
+7020 TFAP2A transcription factor AP-2 alpha protein-coding 7.572 3.145
+7023 TFAP4 transcription factor AP-4 protein-coding 8.233 0.8256
+7024 TFCP2 transcription factor CP2 protein-coding 9.187 0.624
+7025 NR2F1 nuclear receptor subfamily 2 group F member 1 protein-coding 7.473 1.973
+7026 NR2F2 nuclear receptor subfamily 2 group F member 2 protein-coding 9.848 1.278
+7027 TFDP1 transcription factor Dp-1 protein-coding 10.75 0.8141
+7029 TFDP2 transcription factor Dp-2 protein-coding 8.27 0.8305
+7030 TFE3 transcription factor binding to IGHM enhancer 3 protein-coding 10.52 0.5526
+7033 TFF3 trefoil factor 3 protein-coding 6.917 4.113
7035 TFPI tissue factor pathway inhibitor protein-coding 8.809 2.134
-7036 TFR2 transferrin receptor 2 protein-coding 5.112 2.716
-7037 TFRC transferrin receptor protein-coding 11.22 1.575
-7038 TG thyroglobulin protein-coding 4.985 4.012
-7039 TGFA transforming growth factor alpha protein-coding 8.365 2.28
+7036 TFR2 transferrin receptor 2 protein-coding 5.111 2.715
+7037 TFRC transferrin receptor protein-coding 11.21 1.574
+7038 TG thyroglobulin protein-coding 4.987 4.014
+7039 TGFA transforming growth factor alpha protein-coding 8.364 2.28
7040 TGFB1 transforming growth factor beta 1 protein-coding 10.18 1.182
-7041 TGFB1I1 transforming growth factor beta 1 induced transcript 1 protein-coding 8.699 1.32
-7042 TGFB2 transforming growth factor beta 2 protein-coding 7.715 1.899
-7043 TGFB3 transforming growth factor beta 3 protein-coding 8.671 1.541
-7044 LEFTY2 left-right determination factor 2 protein-coding 2.656 2.436
-7045 TGFBI transforming growth factor beta induced protein-coding 11.6 1.977
-7046 TGFBR1 transforming growth factor beta receptor 1 protein-coding 10.36 0.8615
-7047 TGM4 transglutaminase 4 protein-coding 1.483 2.223
+7041 TGFB1I1 transforming growth factor beta 1 induced transcript 1 protein-coding 8.7 1.32
+7042 TGFB2 transforming growth factor beta 2 protein-coding 7.716 1.899
+7043 TGFB3 transforming growth factor beta 3 protein-coding 8.672 1.541
+7044 LEFTY2 left-right determination factor 2 protein-coding 2.657 2.436
+7045 TGFBI transforming growth factor beta induced protein-coding 11.59 1.977
+7046 TGFBR1 transforming growth factor beta receptor 1 protein-coding 10.36 0.8612
+7047 TGM4 transglutaminase 4 protein-coding 1.485 2.229
7048 TGFBR2 transforming growth factor beta receptor 2 protein-coding 10.81 1.204
-7049 TGFBR3 transforming growth factor beta receptor 3 protein-coding 8.673 1.498
-705 BYSL bystin like protein-coding 8.971 0.8034
+7049 TGFBR3 transforming growth factor beta receptor 3 protein-coding 8.675 1.498
+705 BYSL bystin like protein-coding 8.97 0.8037
7050 TGIF1 TGFB induced factor homeobox 1 protein-coding 10.33 1.113
-7051 TGM1 transglutaminase 1 protein-coding 5.249 2.896
-7052 TGM2 transglutaminase 2 protein-coding 11.41 1.754
-7053 TGM3 transglutaminase 3 protein-coding 3.469 3.164
-7056 THBD thrombomodulin protein-coding 8.937 1.835
-7057 THBS1 thrombospondin 1 protein-coding 11.33 2.238
+7051 TGM1 transglutaminase 1 protein-coding 5.25 2.895
+7052 TGM2 transglutaminase 2 protein-coding 11.41 1.753
+7053 TGM3 transglutaminase 3 protein-coding 3.468 3.162
+7056 THBD thrombomodulin protein-coding 8.938 1.835
+7057 THBS1 thrombospondin 1 protein-coding 11.33 2.237
7058 THBS2 thrombospondin 2 protein-coding 10.42 2.241
7059 THBS3 thrombospondin 3 protein-coding 8.983 0.9818
706 TSPO translocator protein protein-coding 10.91 1.241
-7060 THBS4 thrombospondin 4 protein-coding 7.014 3.029
+7060 THBS4 thrombospondin 4 protein-coding 7.016 3.03
7062 TCHH trichohyalin protein-coding 3.794 1.962
7064 THOP1 thimet oligopeptidase 1 protein-coding 9.797 0.7716
-7066 THPO thrombopoietin protein-coding 3.085 2.269
-7067 THRA thyroid hormone receptor alpha protein-coding 9.709 1.419
-7068 THRB thyroid hormone receptor beta protein-coding 7.615 1.964
-7069 THRSP thyroid hormone responsive protein-coding 2.339 2.951
-7070 THY1 Thy-1 cell surface antigen protein-coding 11 1.527
+7066 THPO thrombopoietin protein-coding 3.084 2.268
+7067 THRA thyroid hormone receptor alpha protein-coding 9.71 1.419
+7068 THRB thyroid hormone receptor beta protein-coding 7.616 1.965
+7069 THRSP thyroid hormone responsive protein-coding 2.339 2.95
+7070 THY1 Thy-1 cell surface antigen protein-coding 11 1.528
7071 KLF10 Kruppel like factor 10 protein-coding 10.3 1.035
-7072 TIA1 TIA1 cytotoxic granule associated RNA binding protein protein-coding 10.4 0.762
-7073 TIAL1 TIA1 cytotoxic granule associated RNA binding protein like 1 protein-coding 10.37 0.4202
-7074 TIAM1 T cell lymphoma invasion and metastasis 1 protein-coding 8.307 1.816
-7075 TIE1 tyrosine kinase with immunoglobulin like and EGF like domains 1 protein-coding 8.586 1.251
-7076 TIMP1 TIMP metallopeptidase inhibitor 1 protein-coding 12.27 1.774
-7077 TIMP2 TIMP metallopeptidase inhibitor 2 protein-coding 12.42 1.374
+7072 TIA1 TIA1 cytotoxic granule associated RNA binding protein protein-coding 10.4 0.7619
+7073 TIAL1 TIA1 cytotoxic granule associated RNA binding protein like 1 protein-coding 10.37 0.42
+7074 TIAM1 T cell lymphoma invasion and metastasis 1 protein-coding 8.307 1.815
+7075 TIE1 tyrosine kinase with immunoglobulin like and EGF like domains 1 protein-coding 8.587 1.251
+7076 TIMP1 TIMP metallopeptidase inhibitor 1 protein-coding 12.27 1.773
+7077 TIMP2 TIMP metallopeptidase inhibitor 2 protein-coding 12.42 1.373
7078 TIMP3 TIMP metallopeptidase inhibitor 3 protein-coding 12.33 1.639
-7079 TIMP4 TIMP metallopeptidase inhibitor 4 protein-coding 4.435 2.72
-708 C1QBP complement C1q binding protein protein-coding 10.72 0.7171
-7082 TJP1 tight junction protein 1 protein-coding 10.99 0.8182
-7083 TK1 thymidine kinase 1 protein-coding 9.492 1.866
-7084 TK2 thymidine kinase 2, mitochondrial protein-coding 9.552 0.8319
-7086 TKT transketolase protein-coding 12.49 0.9401
-7087 ICAM5 intercellular adhesion molecule 5 protein-coding 4.125 2.531
-7088 TLE1 transducin like enhancer of split 1 protein-coding 9.705 1.066
-7089 TLE2 transducin like enhancer of split 2 protein-coding 8.813 1.647
+7079 TIMP4 TIMP metallopeptidase inhibitor 4 protein-coding 4.437 2.719
+708 C1QBP complement C1q binding protein protein-coding 10.72 0.7173
+7082 TJP1 tight junction protein 1 protein-coding 10.99 0.8181
+7083 TK1 thymidine kinase 1 protein-coding 9.489 1.867
+7084 TK2 thymidine kinase 2, mitochondrial protein-coding 9.553 0.8317
+7086 TKT transketolase protein-coding 12.49 0.94
+7087 ICAM5 intercellular adhesion molecule 5 protein-coding 4.124 2.532
+7088 TLE1 transducin like enhancer of split 1 protein-coding 9.706 1.066
+7089 TLE2 transducin like enhancer of split 2 protein-coding 8.814 1.647
7090 TLE3 transducin like enhancer of split 3 protein-coding 10.47 0.8417
-7091 TLE4 transducin like enhancer of split 4 protein-coding 8.309 1.294
-7093 TLL2 tolloid like 2 protein-coding 4.053 1.863
-7094 TLN1 talin 1 protein-coding 12.8 0.7008
+7091 TLE4 transducin like enhancer of split 4 protein-coding 8.311 1.294
+7093 TLL2 tolloid like 2 protein-coding 4.053 1.862
+7094 TLN1 talin 1 protein-coding 12.8 0.7013
7095 SEC62 SEC62 homolog, preprotein translocation factor protein-coding 11.71 0.6534
-7096 TLR1 toll like receptor 1 protein-coding 6.624 1.407
-7097 TLR2 toll like receptor 2 protein-coding 8.058 1.468
-7098 TLR3 toll like receptor 3 protein-coding 6.832 1.665
+7096 TLR1 toll like receptor 1 protein-coding 6.625 1.407
+7097 TLR2 toll like receptor 2 protein-coding 8.058 1.469
+7098 TLR3 toll like receptor 3 protein-coding 6.833 1.665
7099 TLR4 toll like receptor 4 protein-coding 8.119 1.432
71 ACTG1 actin gamma 1 protein-coding 16.05 0.6523
710 SERPING1 serpin family G member 1 protein-coding 11.99 1.776
-7100 TLR5 toll like receptor 5 protein-coding 6.796 1.375
-7102 TSPAN7 tetraspanin 7 protein-coding 8.681 2.334
+7100 TLR5 toll like receptor 5 protein-coding 6.798 1.375
+7102 TSPAN7 tetraspanin 7 protein-coding 8.683 2.333
7105 TSPAN6 tetraspanin 6 protein-coding 10.05 1.151
-7106 TSPAN4 tetraspanin 4 protein-coding 9.37 1.367
-7107 GPR137B G protein-coupled receptor 137B protein-coding 8.881 1.193
+7106 TSPAN4 tetraspanin 4 protein-coding 9.371 1.367
+7107 GPR137B G protein-coupled receptor 137B protein-coding 8.88 1.193
7108 TM7SF2 transmembrane 7 superfamily member 2 protein-coding 9.213 1.713
-7109 TRAPPC10 trafficking protein particle complex 10 protein-coding 10.07 0.5031
-7110 TMF1 TATA element modulatory factor 1 protein-coding 9.835 0.7729
-7111 TMOD1 tropomodulin 1 protein-coding 8.149 1.873
-7112 TMPO thymopoietin protein-coding 10.5 0.9568
+7109 TRAPPC10 trafficking protein particle complex 10 protein-coding 10.07 0.5033
+7110 TMF1 TATA element modulatory factor 1 protein-coding 9.836 0.7727
+7111 TMOD1 tropomodulin 1 protein-coding 8.151 1.873
+7112 TMPO thymopoietin protein-coding 10.5 0.9567
7117 TMSB4XP8 thymosin beta 4, X-linked pseudogene 8 pseudo 14.68 1.072
712 C1QA complement C1q A chain protein-coding 10.73 1.614
-7122 CLDN5 claudin 5 protein-coding 7.916 1.742
-7123 CLEC3B C-type lectin domain family 3 member B protein-coding 7.234 1.889
-7124 TNF tumor necrosis factor protein-coding 4.201 1.931
-7125 TNNC2 troponin C2, fast skeletal type protein-coding 3.254 2.225
+7122 CLDN5 claudin 5 protein-coding 7.918 1.742
+7123 CLEC3B C-type lectin domain family 3 member B protein-coding 7.236 1.889
+7124 TNF tumor necrosis factor protein-coding 4.201 1.932
+7125 TNNC2 troponin C2, fast skeletal type protein-coding 3.254 2.224
7126 TNFAIP1 TNF alpha induced protein 1 protein-coding 10.55 0.6149
7127 TNFAIP2 TNF alpha induced protein 2 protein-coding 10.63 1.744
-7128 TNFAIP3 TNF alpha induced protein 3 protein-coding 9.588 1.413
+7128 TNFAIP3 TNF alpha induced protein 3 protein-coding 9.59 1.413
713 C1QB complement C1q B chain protein-coding 10.84 1.67
-7130 TNFAIP6 TNF alpha induced protein 6 protein-coding 5.647 2.56
-7132 TNFRSF1A TNF receptor superfamily member 1A protein-coding 11.35 0.8069
-7133 TNFRSF1B TNF receptor superfamily member 1B protein-coding 9.701 1.184
-7134 TNNC1 troponin C1, slow skeletal and cardiac type protein-coding 3.956 2.685
+7130 TNFAIP6 TNF alpha induced protein 6 protein-coding 5.646 2.56
+7132 TNFRSF1A TNF receptor superfamily member 1A protein-coding 11.35 0.8067
+7133 TNFRSF1B TNF receptor superfamily member 1B protein-coding 9.701 1.185
+7134 TNNC1 troponin C1, slow skeletal and cardiac type protein-coding 3.958 2.685
7136 TNNI2 troponin I2, fast skeletal type protein-coding 3.505 2.335
-7137 TNNI3 troponin I3, cardiac type protein-coding 2.786 2.583
-7138 TNNT1 troponin T1, slow skeletal type protein-coding 4.965 3.71
-714 C1QC complement C1q C chain protein-coding 10.66 1.59
-7140 TNNT3 troponin T3, fast skeletal type protein-coding 2.403 2.87
-7145 TNS1 tensin 1 protein-coding 11.47 1.468
-7148 TNXB tenascin XB protein-coding 8.423 1.962
+7137 TNNI3 troponin I3, cardiac type protein-coding 2.785 2.582
+7138 TNNT1 troponin T1, slow skeletal type protein-coding 4.963 3.71
+714 C1QC complement C1q C chain protein-coding 10.66 1.591
+7140 TNNT3 troponin T3, fast skeletal type protein-coding 2.404 2.869
+7145 TNS1 tensin 1 protein-coding 11.47 1.469
+7148 TNXB tenascin XB protein-coding 8.425 1.964
715 C1R complement C1r protein-coding 11.66 1.778
-7150 TOP1 DNA topoisomerase I protein-coding 11.22 0.6713
-7151 TOP1P1 DNA topoisomerase I pseudogene 1 pseudo 6.709 0.5851
-7152 TOP1P2 DNA topoisomerase I pseudogene 2 pseudo 2.757 0.9056
-7153 TOP2A DNA topoisomerase II alpha protein-coding 10.3 2.137
-7155 TOP2B DNA topoisomerase II beta protein-coding 11.57 0.7253
-7156 TOP3A DNA topoisomerase III alpha protein-coding 8.757 0.5811
+7150 TOP1 DNA topoisomerase I protein-coding 11.22 0.6711
+7151 TOP1P1 DNA topoisomerase I pseudogene 1 pseudo 6.709 0.585
+7152 TOP1P2 DNA topoisomerase I pseudogene 2 pseudo 2.757 0.9053
+7153 TOP2A DNA topoisomerase II alpha protein-coding 10.3 2.138
+7155 TOP2B DNA topoisomerase II beta protein-coding 11.57 0.725
+7156 TOP3A DNA topoisomerase III alpha protein-coding 8.757 0.5808
7157 TP53 tumor protein p53 protein-coding 10.3 1.044
-7158 TP53BP1 tumor protein p53 binding protein 1 protein-coding 9.983 0.7191
-7159 TP53BP2 tumor protein p53 binding protein 2 protein-coding 10.12 0.7358
+7158 TP53BP1 tumor protein p53 binding protein 1 protein-coding 9.983 0.719
+7159 TP53BP2 tumor protein p53 binding protein 2 protein-coding 10.12 0.7356
716 C1S complement C1s protein-coding 11.81 2.055
-7161 TP73 tumor protein p73 protein-coding 5.384 2.271
-7162 TPBG trophoblast glycoprotein protein-coding 8.737 1.979
+7161 TP73 tumor protein p73 protein-coding 5.383 2.272
+7162 TPBG trophoblast glycoprotein protein-coding 8.737 1.978
7163 TPD52 tumor protein D52 protein-coding 10.98 1.486
7164 TPD52L1 tumor protein D52 like 1 protein-coding 9.008 1.967
-7165 TPD52L2 tumor protein D52 like 2 protein-coding 11.46 0.5559
-7166 TPH1 tryptophan hydroxylase 1 protein-coding 1.632 1.516
-7167 TPI1 triosephosphate isomerase 1 protein-coding 13.25 0.825
-7168 TPM1 tropomyosin 1 protein-coding 11.77 1.319
-7169 TPM2 tropomyosin 2 protein-coding 10.84 1.72
+7165 TPD52L2 tumor protein D52 like 2 protein-coding 11.46 0.5558
+7166 TPH1 tryptophan hydroxylase 1 protein-coding 1.633 1.515
+7167 TPI1 triosephosphate isomerase 1 protein-coding 13.25 0.8253
+7168 TPM1 tropomyosin 1 protein-coding 11.78 1.32
+7169 TPM2 tropomyosin 2 protein-coding 10.84 1.721
717 C2 complement C2 protein-coding 9.554 2.167
-7170 TPM3 tropomyosin 3 protein-coding 12.81 0.7045
+7170 TPM3 tropomyosin 3 protein-coding 12.81 0.7046
7171 TPM4 tropomyosin 4 protein-coding 13.02 1.124
-7172 TPMT thiopurine S-methyltransferase protein-coding 9.807 0.8678
-7174 TPP2 tripeptidyl peptidase 2 protein-coding 9.821 0.5899
-7175 TPR translocated promoter region, nuclear basket protein protein-coding 11.46 0.6278
-7177 TPSAB1 tryptase alpha/beta 1 protein-coding 6.52 2.946
-7178 TPT1 tumor protein, translationally-controlled 1 protein-coding 15.63 0.7616
-7179 TPTE transmembrane phosphatase with tensin homology protein-coding 1.168 1.643
+7172 TPMT thiopurine S-methyltransferase protein-coding 9.807 0.8679
+7174 TPP2 tripeptidyl peptidase 2 protein-coding 9.821 0.5897
+7175 TPR translocated promoter region, nuclear basket protein protein-coding 11.46 0.6275
+7177 TPSAB1 tryptase alpha/beta 1 protein-coding 6.521 2.946
+7178 TPT1 tumor protein, translationally-controlled 1 protein-coding 15.63 0.7613
+7179 TPTE transmembrane phosphatase with tensin homology protein-coding 1.169 1.643
718 C3 complement C3 protein-coding 12.54 2.621
-7181 NR2C1 nuclear receptor subfamily 2 group C member 1 protein-coding 8.469 0.5942
-7182 NR2C2 nuclear receptor subfamily 2 group C member 2 protein-coding 9.597 0.9343
-7184 HSP90B1 heat shock protein 90 beta family member 1 protein-coding 14.26 0.7273
-7185 TRAF1 TNF receptor associated factor 1 protein-coding 8.042 1.087
-7186 TRAF2 TNF receptor associated factor 2 protein-coding 9.074 0.7506
-7187 TRAF3 TNF receptor associated factor 3 protein-coding 7.882 0.7518
+7181 NR2C1 nuclear receptor subfamily 2 group C member 1 protein-coding 8.469 0.5943
+7182 NR2C2 nuclear receptor subfamily 2 group C member 2 protein-coding 9.598 0.9342
+7184 HSP90B1 heat shock protein 90 beta family member 1 protein-coding 14.26 0.7275
+7185 TRAF1 TNF receptor associated factor 1 protein-coding 8.043 1.088
+7186 TRAF2 TNF receptor associated factor 2 protein-coding 9.074 0.7504
+7187 TRAF3 TNF receptor associated factor 3 protein-coding 7.882 0.7519
7188 TRAF5 TNF receptor associated factor 5 protein-coding 8.354 1.322
-7189 TRAF6 TNF receptor associated factor 6 protein-coding 7.337 0.6242
+7189 TRAF6 TNF receptor associated factor 6 protein-coding 7.337 0.6241
719 C3AR1 complement C3a receptor 1 protein-coding 7.643 1.536
-720 C4A complement C4A (Rodgers blood group) protein-coding 12.21 2.622
+720 C4A complement C4A (Rodgers blood group) protein-coding 12.21 2.621
7200 TRH thyrotropin releasing hormone protein-coding 1.427 2.13
-7203 CCT3 chaperonin containing TCP1 subunit 3 protein-coding 12.73 0.6344
+7203 CCT3 chaperonin containing TCP1 subunit 3 protein-coding 12.73 0.635
7204 TRIO trio Rho guanine nucleotide exchange factor protein-coding 10.41 1.106
7205 TRIP6 thyroid hormone receptor interactor 6 protein-coding 10.35 1.194
-7216 TRO trophinin protein-coding 7.248 1.999
-722 C4BPA complement component 4 binding protein alpha protein-coding 3.576 4.309
-7220 TRPC1 transient receptor potential cation channel subfamily C member 1 protein-coding 6.499 1.6
+7216 TRO trophinin protein-coding 7.249 1.999
+722 C4BPA complement component 4 binding protein alpha protein-coding 3.577 4.31
+7220 TRPC1 transient receptor potential cation channel subfamily C member 1 protein-coding 6.5 1.6
7221 TRPC2 transient receptor potential cation channel subfamily C member 2 (pseudogene) pseudo 1.255 1.306
-7222 TRPC3 transient receptor potential cation channel subfamily C member 3 protein-coding 2.481 1.727
-7225 TRPC6 transient receptor potential cation channel subfamily C member 6 protein-coding 5.64 1.777
-7226 TRPM2 transient receptor potential cation channel subfamily M member 2 protein-coding 7.783 1.527
+7222 TRPC3 transient receptor potential cation channel subfamily C member 3 protein-coding 2.481 1.726
+7225 TRPC6 transient receptor potential cation channel subfamily C member 6 protein-coding 5.641 1.777
+7226 TRPM2 transient receptor potential cation channel subfamily M member 2 protein-coding 7.783 1.528
7227 TRPS1 transcriptional repressor GATA binding 1 protein-coding 8.797 2.015
-723809 LHFPL3-AS2 LHFPL3 antisense RNA 2 ncRNA 2.079 2.487
-723972 ANP32AP1 acidic nuclear phosphoprotein 32 family member A pseudogene 1 pseudo 3.817 0.9841
-724102 SNHG4 small nucleolar RNA host gene 4 ncRNA 3.147 1.477
+723809 LHFPL3-AS2 LHFPL3 antisense RNA 2 ncRNA 2.08 2.487
+723972 ANP32AP1 acidic nuclear phosphoprotein 32 family member A pseudogene 1 pseudo 3.817 0.9837
+724102 SNHG4 small nucleolar RNA host gene 4 ncRNA 3.146 1.476
7247 TSN translin protein-coding 10.93 0.4699
7248 TSC1 TSC complex subunit 1 protein-coding 9.61 0.6059
-7249 TSC2 TSC complex subunit 2 protein-coding 10.8 0.6007
-725 C4BPB complement component 4 binding protein beta protein-coding 2.84 3.447
-7251 TSG101 tumor susceptibility 101 protein-coding 10.48 0.4076
-7253 TSHR thyroid stimulating hormone receptor protein-coding 3.027 3.256
-7257 TSNAX translin associated factor X protein-coding 9.907 0.5559
-7259 TSPYL1 TSPY like 1 protein-coding 10.99 0.7575
-726 CAPN5 calpain 5 protein-coding 9.338 1.772
-7260 EIPR1 EARP complex and GARP complex interacting protein 1 protein-coding 9.158 0.5588
-7262 PHLDA2 pleckstrin homology like domain family A member 2 protein-coding 7.31 2.325
-7263 TST thiosulfate sulfurtransferase protein-coding 9.715 1.436
-7264 TSTA3 tissue specific transplantation antigen P35B protein-coding 10.74 0.9823
-7265 TTC1 tetratricopeptide repeat domain 1 protein-coding 9.941 0.5113
-7266 DNAJC7 DnaJ heat shock protein family (Hsp40) member C7 protein-coding 10.8 0.4631
-7267 TTC3 tetratricopeptide repeat domain 3 protein-coding 11.95 0.8334
-7268 TTC4 tetratricopeptide repeat domain 4 protein-coding 9.13 0.4678
-727 C5 complement C5 protein-coding 6.971 2
-7270 TTF1 transcription termination factor 1 protein-coding 8.389 0.5314
-7272 TTK TTK protein kinase protein-coding 7.175 2.115
-7273 TTN titin protein-coding 6.835 1.536
-7275 TUB tubby bipartite transcription factor protein-coding 7.302 2.35
-7277 TUBA4A tubulin alpha 4a protein-coding 10.18 1.632
+7249 TSC2 TSC complex subunit 2 protein-coding 10.8 0.6005
+725 C4BPB complement component 4 binding protein beta protein-coding 2.839 3.446
+7251 TSG101 tumor susceptibility 101 protein-coding 10.48 0.4075
+7253 TSHR thyroid stimulating hormone receptor protein-coding 3.027 3.257
+7257 TSNAX translin associated factor X protein-coding 9.906 0.5556
+7259 TSPYL1 TSPY like 1 protein-coding 10.99 0.7577
+726 CAPN5 calpain 5 protein-coding 9.339 1.772
+7260 EIPR1 EARP complex and GARP complex interacting protein 1 protein-coding 9.158 0.559
+7262 PHLDA2 pleckstrin homology like domain family A member 2 protein-coding 7.309 2.324
+7263 TST thiosulfate sulfurtransferase protein-coding 9.715 1.435
+7264 TSTA3 tissue specific transplantation antigen P35B protein-coding 10.74 0.9821
+7265 TTC1 tetratricopeptide repeat domain 1 protein-coding 9.941 0.5112
+7266 DNAJC7 DnaJ heat shock protein family (Hsp40) member C7 protein-coding 10.8 0.4632
+7267 TTC3 tetratricopeptide repeat domain 3 protein-coding 11.95 0.8331
+7268 TTC4 tetratricopeptide repeat domain 4 protein-coding 9.13 0.4677
+727 C5 complement C5 protein-coding 6.972 2
+7270 TTF1 transcription termination factor 1 protein-coding 8.39 0.5313
+7272 TTK TTK protein kinase protein-coding 7.173 2.116
+7273 TTN titin protein-coding 6.836 1.536
+7275 TUB tubby bipartite transcription factor protein-coding 7.304 2.35
+7277 TUBA4A tubulin alpha 4a protein-coding 10.18 1.631
727800 RNF208 ring finger protein 208 protein-coding 7.238 1.338
-727896 LOC727896 cysteine and histidine rich domain containing 1 pseudogene pseudo 4.827 0.9754
-727897 MUC5B mucin 5B, oligomeric mucus/gel-forming protein-coding 5.407 4.628
+727896 LOC727896 cysteine and histidine rich domain containing 1 pseudogene pseudo 4.827 0.975
+727897 MUC5B mucin 5B, oligomeric mucus/gel-forming protein-coding 5.407 4.629
727936 GXYLT2 glucoside xylosyltransferase 2 protein-coding 5.4 1.995
-727956 SDHAP2 succinate dehydrogenase complex flavoprotein subunit A pseudogene 2 pseudo 7.411 0.926
-727957 MROH1 maestro heat like repeat family member 1 protein-coding 9.761 0.7784
-728 C5AR1 complement C5a receptor 1 protein-coding 7.51 1.435
-7280 TUBB2A tubulin beta 2A class IIa protein-coding 10.1 1.744
-728024 LOC728024 chromosome X open reading frame 56 pseudogene pseudo 4.372 0.9048
-728039 SSR4P1 signal sequence receptor subunit 4 pseudogene 1 pseudo 4.794 1.022
+727956 SDHAP2 succinate dehydrogenase complex flavoprotein subunit A pseudogene 2 pseudo 7.411 0.9258
+727957 MROH1 maestro heat like repeat family member 1 protein-coding 9.762 0.7782
+728 C5AR1 complement C5a receptor 1 protein-coding 7.511 1.435
+7280 TUBB2A tubulin beta 2A class IIa protein-coding 10.1 1.743
+728024 LOC728024 chromosome X open reading frame 56 pseudogene pseudo 4.372 0.9046
+728039 SSR4P1 signal sequence receptor subunit 4 pseudogene 1 pseudo 4.795 1.022
728118 NUTM2A NUT family member 2A protein-coding 5.243 1.109
-728130 NUTM2D NUT family member 2D protein-coding 6.058 0.9016
-728190 NUTM2A-AS1 NUTM2A antisense RNA 1 ncRNA 7.227 0.7
-728194 RSPH10B2 radial spoke head 10 homolog B2 protein-coding 2.213 1.552
-728233 PI4KAP1 phosphatidylinositol 4-kinase alpha pseudogene 1 pseudo 8.051 1.019
-728239 MAGED4 MAGE family member D4 protein-coding 6.684 2.404
-728262 FAM157A family with sequence similarity 157 member A (non-protein coding) ncRNA 3.403 1.653
-728264 CARMN cardiac mesoderm enhancer-associated non-coding RNA ncRNA 6.412 1.891
-728294 D2HGDH D-2-hydroxyglutarate dehydrogenase protein-coding 8.84 0.9704
-7283 TUBG1 tubulin gamma 1 protein-coding 10 0.6865
-728323 LINC01881 long intergenic non-protein coding RNA 1881 ncRNA 4.152 1.187
-728340 GTF2H2C GTF2H2 family member C protein-coding 8.121 0.7987
-728358 DEFA1B defensin alpha 1B protein-coding 0.8864 1.466
-728378 POTEF POTE ankyrin domain family member F protein-coding 3.888 1.543
-728392 LOC728392 uncharacterized LOC728392 protein-coding 7.246 2.272
-7284 TUFM Tu translation elongation factor, mitochondrial protein-coding 12.16 0.5571
-728411 GUSBP1 glucuronidase, beta pseudogene 1 pseudo 6.82 0.7638
-728448 PPIEL peptidylprolyl isomerase E like pseudogene pseudo 5.522 1.538
-728464 METTL24 methyltransferase like 24 protein-coding 2.148 1.744
-728489 DNLZ DNL-type zinc finger protein-coding 7.275 0.9837
-728554 LOC728554 THO complex 3 pseudogene pseudo 8.013 1.18
-728568 C12orf73 chromosome 12 open reading frame 73 protein-coding 7.186 0.6416
-728591 CCDC169 coiled-coil domain containing 169 protein-coding 2.585 1.811
-7286 TUFT1 tuftelin 1 protein-coding 9.217 1.461
-728606 PCAT18 prostate cancer associated transcript 18 (non-protein coding) ncRNA 2.1 2.544
+728130 NUTM2D NUT family member 2D protein-coding 6.058 0.9014
+728190 NUTM2A-AS1 NUTM2A antisense RNA 1 ncRNA 7.227 0.6998
+728194 RSPH10B2 radial spoke head 10 homolog B2 protein-coding 2.214 1.552
+728233 PI4KAP1 phosphatidylinositol 4-kinase alpha pseudogene 1 pseudo 8.052 1.019
+728239 MAGED4 MAGE family member D4 protein-coding 6.684 2.403
+728262 FAM157A family with sequence similarity 157 member A (non-protein coding) ncRNA 3.404 1.652
+728264 CARMN cardiac mesoderm enhancer-associated non-coding RNA ncRNA 6.414 1.892
+728294 D2HGDH D-2-hydroxyglutarate dehydrogenase protein-coding 8.841 0.9703
+7283 TUBG1 tubulin gamma 1 protein-coding 10 0.6869
+728323 LINC01881 long intergenic non-protein coding RNA 1881 ncRNA 4.153 1.187
+728340 GTF2H2C GTF2H2 family member C protein-coding 8.121 0.7986
+728358 DEFA1B defensin alpha 1B protein-coding 0.8859 1.465
+728378 POTEF POTE ankyrin domain family member F protein-coding 3.887 1.543
+728392 LOC728392 uncharacterized LOC728392 protein-coding 7.248 2.272
+7284 TUFM Tu translation elongation factor, mitochondrial protein-coding 12.16 0.5572
+728411 GUSBP1 glucuronidase, beta pseudogene 1 pseudo 6.821 0.7635
+728448 PPIEL peptidylprolyl isomerase E like pseudogene pseudo 5.523 1.538
+728464 METTL24 methyltransferase like 24 protein-coding 2.15 1.745
+728489 DNLZ DNL-type zinc finger protein-coding 7.275 0.9834
+728554 LOC728554 THO complex 3 pseudogene pseudo 8.012 1.18
+728568 C12orf73 chromosome 12 open reading frame 73 protein-coding 7.185 0.6416
+728591 CCDC169 coiled-coil domain containing 169 protein-coding 2.586 1.811
+7286 TUFT1 tuftelin 1 protein-coding 9.217 1.46
+728606 PCAT18 prostate cancer associated transcript 18 (non-protein coding) ncRNA 2.101 2.544
728609 SDHAP3 succinate dehydrogenase complex flavoprotein subunit A pseudogene 3 pseudo 6.98 1.009
-728613 LOC728613 programmed cell death 6 pseudogene pseudo 7.258 1.156
-728621 CCDC30 coiled-coil domain containing 30 protein-coding 5.568 1.392
+728613 LOC728613 programmed cell death 6 pseudogene pseudo 7.258 1.155
+728621 CCDC30 coiled-coil domain containing 30 protein-coding 5.569 1.392
728635 DHRS4L1 dehydrogenase/reductase 4 like 1 protein-coding 3.551 1.152
-728640 FAM133CP family with sequence similarity 133, member A pseudogene pseudo 5.228 0.6712
-728642 CDK11A cyclin dependent kinase 11A protein-coding 8.971 0.7442
-728643 HNRNPA1P33 heterogeneous nuclear ribonucleoprotein A1 pseudogene 33 pseudo 6.504 1.315
-728656 DMRTC1B DMRT like family C1B protein-coding 2.876 2.473
-728689 EIF3CL eukaryotic translation initiation factor 3 subunit C like protein-coding 13.41 0.63
-728723 ZBED3-AS1 ZBED3 antisense RNA 1 ncRNA 3.793 1.341
+728640 FAM133CP family with sequence similarity 133, member A pseudogene pseudo 5.227 0.6709
+728642 CDK11A cyclin dependent kinase 11A protein-coding 8.972 0.744
+728643 HNRNPA1P33 heterogeneous nuclear ribonucleoprotein A1 pseudogene 33 pseudo 6.504 1.314
+728656 DMRTC1B DMRT like family C1B protein-coding 2.878 2.473
+728689 EIF3CL eukaryotic translation initiation factor 3 subunit C like protein-coding 13.41 0.6298
+728723 ZBED3-AS1 ZBED3 antisense RNA 1 ncRNA 3.794 1.341
728743 LOC728743 zinc finger protein pseudogene pseudo 7.575 1.017
-728747 ANKRD20A4 ankyrin repeat domain 20 family member A4 protein-coding 1.093 1.122
+728747 ANKRD20A4 ankyrin repeat domain 20 family member A4 protein-coding 1.094 1.122
728758 PIN4P1 peptidylprolyl cis/trans isomerase, NIMA-interacting 4 pseudogene 1 pseudo 5.529 0.7761
-7288 TULP2 tubby like protein 2 protein-coding 0.6914 0.9292
+7288 TULP2 tubby like protein 2 protein-coding 0.6916 0.9293
728819 C1GALT1C1L C1GALT1 specific chaperone 1 like protein-coding 3.553 1.607
-728833 FAM72D family with sequence similarity 72 member D protein-coding 5.479 1.79
-728855 LINC00623 long intergenic non-protein coding RNA 623 ncRNA 7.883 1.172
+728833 FAM72D family with sequence similarity 72 member D protein-coding 5.477 1.791
+728855 LINC00623 long intergenic non-protein coding RNA 623 ncRNA 7.884 1.172
728882 FAM182B family with sequence similarity 182 member B ncRNA 4.447 1.845
-7289 TULP3 tubby like protein 3 protein-coding 9.229 0.7361
-728963 RPS15AP10 ribosomal protein S15a pseudogene 10 pseudo 1.732 0.9612
+7289 TULP3 tubby like protein 3 protein-coding 9.229 0.7359
+728963 RPS15AP10 ribosomal protein S15a pseudogene 10 pseudo 1.733 0.961
728989 LOC728989 phosphodiesterase 4D interacting protein pseudogene pseudo 1.962 1.182
-7290 HIRA histone cell cycle regulator protein-coding 9.901 0.7594
-729020 RPEL1 ribulose-5-phosphate-3-epimerase like 1 protein-coding 4.902 0.9208
-729082 OIP5-AS1 OIP5 antisense RNA 1 ncRNA 8.874 0.7095
-729085 FAM198A family with sequence similarity 198 member A protein-coding 5.345 2.121
-729092 AGAP5 ArfGAP with GTPase domain, ankyrin repeat and PH domain 5 protein-coding 5.026 0.9283
-729096 BMS1P4 BMS1, ribosome biogenesis factor pseudogene 4 pseudo 4.327 1.029
-7291 TWIST1 twist family bHLH transcription factor 1 protein-coding 5.711 2.351
+7290 HIRA histone cell cycle regulator protein-coding 9.902 0.7597
+729020 RPEL1 ribulose-5-phosphate-3-epimerase like 1 protein-coding 4.901 0.9204
+729082 OIP5-AS1 OIP5 antisense RNA 1 ncRNA 8.874 0.7094
+729085 FAM198A family with sequence similarity 198 member A protein-coding 5.347 2.12
+729092 AGAP5 ArfGAP with GTPase domain, ankyrin repeat and PH domain 5 protein-coding 5.027 0.9284
+729096 BMS1P4 BMS1, ribosome biogenesis factor pseudogene 4 pseudo 4.328 1.029
+7291 TWIST1 twist family bHLH transcription factor 1 protein-coding 5.71 2.35
729156 GTF2IRD1P1 GTF2I repeat domain containing 1 pseudogene 1 pseudo 2.091 1.525
-729171 ANKRD20A8P ankyrin repeat domain 20 family member A8, pseudogene pseudo 2.651 1.406
-729176 KATNBL1P6 katanin regulatory subunit B1 like 1 pseudogene 6 pseudo 4.99 0.882
-7292 TNFSF4 TNF superfamily member 4 protein-coding 6.087 1.409
-729230 CCR2 C-C motif chemokine receptor 2 protein-coding 4.98 2.02
-729234 FAHD2CP fumarylacetoacetate hydrolase domain containing 2C, pseudogene pseudo 5.472 1.41
-729238 SFTPA2 surfactant protein A2 protein-coding 3.895 4.438
-729288 ZNF286B zinc finger protein 286B protein-coding 4.64 1.151
-7293 TNFRSF4 TNF receptor superfamily member 4 protein-coding 5.703 1.602
-729338 CETN4P centrin 4, pseudogene pseudo 1.366 1.055
-729359 PLIN4 perilipin 4 protein-coding 6.178 2.45
-729375 FAM86HP family with sequence similarity 86, member A pseudogene pseudo 5.127 1.035
-7294 TXK TXK tyrosine kinase protein-coding 3.411 1.604
+729171 ANKRD20A8P ankyrin repeat domain 20 family member A8, pseudogene pseudo 2.652 1.406
+729176 KATNBL1P6 katanin regulatory subunit B1 like 1 pseudogene 6 pseudo 4.99 0.8816
+7292 TNFSF4 TNF superfamily member 4 protein-coding 6.087 1.408
+729230 CCR2 C-C motif chemokine receptor 2 protein-coding 4.982 2.02
+729234 FAHD2CP fumarylacetoacetate hydrolase domain containing 2C, pseudogene pseudo 5.472 1.409
+729238 SFTPA2 surfactant protein A2 protein-coding 3.898 4.439
+729288 ZNF286B zinc finger protein 286B protein-coding 4.641 1.15
+7293 TNFRSF4 TNF receptor superfamily member 4 protein-coding 5.704 1.602
+729338 CETN4P centrin 4, pseudogene pseudo 1.367 1.055
+729359 PLIN4 perilipin 4 protein-coding 6.181 2.451
+729375 FAM86HP family with sequence similarity 86, member A pseudogene pseudo 5.127 1.034
+7294 TXK TXK tyrosine kinase protein-coding 3.412 1.606
729438 CASTOR2 cytosolic arginine sensor for mTORC1 subunit 2 protein-coding 1.344 1.874
-729440 CCDC61 coiled-coil domain containing 61 protein-coding 7.4 0.8689
+729440 CCDC61 coiled-coil domain containing 61 protein-coding 7.4 0.8686
7295 TXN thioredoxin protein-coding 11.59 1.116
-729515 TMEM242 transmembrane protein 242 protein-coding 8.504 0.5846
-729533 FAM72A family with sequence similarity 72 member A protein-coding 4.137 1.811
-729540 RGPD6 RANBP2-like and GRIP domain containing 6 protein-coding 8.994 0.7908
+729515 TMEM242 transmembrane protein 242 protein-coding 8.505 0.5845
+729533 FAM72A family with sequence similarity 72 member A protein-coding 4.135 1.811
+729540 RGPD6 RANBP2-like and GRIP domain containing 6 protein-coding 8.995 0.7907
729582 DIRC3 disrupted in renal carcinoma 3 ncRNA 2.996 1.747
-729597 SPDYE6 speedy/RINGO cell cycle regulator family member E6 protein-coding 4.435 1.039
+729597 SPDYE6 speedy/RINGO cell cycle regulator family member E6 protein-coding 4.436 1.039
7296 TXNRD1 thioredoxin reductase 1 protein-coding 11.12 1.15
729603 LOC729603 calcineurin like EF-hand protein 1 pseudogene pseudo 4.829 1.042
-729614 FLJ37453 uncharacterized LOC729614 ncRNA 6.744 0.9064
-729633 MRS2P2 MRS2 pseudogene 2 pseudo 1.382 0.9439
-729678 LINC00847 long intergenic non-protein coding RNA 847 ncRNA 8.603 0.93
-7297 TYK2 tyrosine kinase 2 protein-coding 10.5 0.541
+729614 FLJ37453 uncharacterized LOC729614 ncRNA 6.744 0.9061
+729633 MRS2P2 MRS2 pseudogene 2 pseudo 1.382 0.9438
+729678 LINC00847 long intergenic non-protein coding RNA 847 ncRNA 8.603 0.9297
+7297 TYK2 tyrosine kinase 2 protein-coding 10.5 0.5409
729747 ZNF878 zinc finger protein 878 protein-coding 2.343 1.211
729786 GOLGA8CP golgin A8 family member C, pseudogene pseudo 1.092 1.286
-729799 SEC14L1P1 SEC14 like 1 pseudogene 1 pseudo 3.756 1.024
-7298 TYMS thymidylate synthetase protein-coding 9.228 1.42
-729830 FAM160A1 family with sequence similarity 160 member A1 protein-coding 5.955 2.239
-729873 TBC1D3 TBC1 domain family member 3 protein-coding 8.137 0.876
+729799 SEC14L1P1 SEC14 like 1 pseudogene 1 pseudo 3.757 1.024
+7298 TYMS thymidylate synthetase protein-coding 9.226 1.421
+729830 FAM160A1 family with sequence similarity 160 member A1 protein-coding 5.956 2.238
+729873 TBC1D3 TBC1 domain family member 3 protein-coding 8.137 0.8758
729877 TBC1D3H TBC1 domain family member 3H protein-coding 3.727 1.311
-729920 ISPD isoprenoid synthase domain containing protein-coding 5.675 1.165
-729956 SHISA7 shisa family member 7 protein-coding 1.872 2.524
-729967 MORN2 MORN repeat containing 2 protein-coding 8.057 0.8132
-729991 BORCS8 BLOC-1 related complex subunit 8 protein-coding 8.227 0.5904
-729993 SHISA9 shisa family member 9 protein-coding 3.841 3.195
-730 C7 complement C7 protein-coding 7.139 3.609
-730013 ABCC6P2 ATP binding cassette subfamily C member 6 pseudogene 2 pseudo 4.183 2.283
-730051 ZNF814 zinc finger protein 814 protein-coding 8.004 0.9794
-730092 RRN3P1 RRN3 homolog, RNA polymerase I transcription factor pseudogene 1 pseudo 5.406 1.511
-730094 MOSMO modulator of smoothened protein-coding 8.123 0.6154
+729920 ISPD isoprenoid synthase domain containing protein-coding 5.675 1.164
+729956 SHISA7 shisa family member 7 protein-coding 1.872 2.523
+729967 MORN2 MORN repeat containing 2 protein-coding 8.056 0.8133
+729991 BORCS8 BLOC-1 related complex subunit 8 protein-coding 8.228 0.5903
+729993 SHISA9 shisa family member 9 protein-coding 3.842 3.195
+730 C7 complement C7 protein-coding 7.145 3.612
+730013 ABCC6P2 ATP binding cassette subfamily C member 6 pseudogene 2 pseudo 4.183 2.282
+730051 ZNF814 zinc finger protein 814 protein-coding 8.005 0.9791
+730092 RRN3P1 RRN3 homolog, RNA polymerase I transcription factor pseudogene 1 pseudo 5.407 1.511
+730094 MOSMO modulator of smoothened protein-coding 8.123 0.6153
7301 TYRO3 TYRO3 protein tyrosine kinase protein-coding 8.29 1.588
-730101 LOC730101 uncharacterized LOC730101 ncRNA 7.007 1.47
+730101 LOC730101 uncharacterized LOC730101 ncRNA 7.007 1.469
730112 FAM166B family with sequence similarity 166 member B protein-coding 2.803 1.933
-7305 TYROBP TYRO protein tyrosine kinase binding protein protein-coding 9.308 1.428
+7305 TYROBP TYRO protein tyrosine kinase binding protein protein-coding 9.308 1.429
730668 LOC730668 dynein heavy chain -like pseudogene pseudo 1.542 1.126
-7307 U2AF1 U2 small nuclear RNA auxiliary factor 1 protein-coding 10.8 0.6184
-730971 LINC02447 long intergenic non-protein coding RNA 2447 ncRNA 2.602 1.383
-7311 UBA52 ubiquitin A-52 residue ribosomal protein fusion product 1 protein-coding 13.18 0.688
-731220 RFX8 RFX family member 8, lacking RFX DNA binding domain protein-coding 2.25 1.603
-7314 UBB ubiquitin B protein-coding 13.81 0.8301
-7316 UBC ubiquitin C protein-coding 15.03 0.5436
-7317 UBA1 ubiquitin like modifier activating enzyme 1 protein-coding 12.98 0.4713
-731789 FAM238B family with sequence similarity 238 member B (non-protein coding) ncRNA 0.9022 1.694
+7307 U2AF1 U2 small nuclear RNA auxiliary factor 1 protein-coding 10.8 0.6183
+730971 LINC02447 long intergenic non-protein coding RNA 2447 ncRNA 2.603 1.383
+7311 UBA52 ubiquitin A-52 residue ribosomal protein fusion product 1 protein-coding 13.18 0.6878
+731220 RFX8 RFX family member 8, lacking RFX DNA binding domain protein-coding 2.25 1.602
+7314 UBB ubiquitin B protein-coding 13.81 0.8298
+7316 UBC ubiquitin C protein-coding 15.03 0.5435
+7317 UBA1 ubiquitin like modifier activating enzyme 1 protein-coding 12.98 0.4712
+731789 FAM238B family with sequence similarity 238 member B (non-protein coding) ncRNA 0.9023 1.694
7318 UBA7 ubiquitin like modifier activating enzyme 7 protein-coding 9.631 1.052
7319 UBE2A ubiquitin conjugating enzyme E2 A protein-coding 10.51 0.5125
-7320 UBE2B ubiquitin conjugating enzyme E2 B protein-coding 10.16 0.5394
-7321 UBE2D1 ubiquitin conjugating enzyme E2 D1 protein-coding 8.709 0.625
+7320 UBE2B ubiquitin conjugating enzyme E2 B protein-coding 10.16 0.5393
+7321 UBE2D1 ubiquitin conjugating enzyme E2 D1 protein-coding 8.709 0.6252
7322 UBE2D2 ubiquitin conjugating enzyme E2 D2 protein-coding 10.84 0.4198
-7323 UBE2D3 ubiquitin conjugating enzyme E2 D3 protein-coding 12.21 0.3757
-7324 UBE2E1 ubiquitin conjugating enzyme E2 E1 protein-coding 10.34 0.5557
-7325 UBE2E2 ubiquitin conjugating enzyme E2 E2 protein-coding 8.327 1.174
+7323 UBE2D3 ubiquitin conjugating enzyme E2 D3 protein-coding 12.21 0.3755
+7324 UBE2E1 ubiquitin conjugating enzyme E2 E1 protein-coding 10.34 0.5555
+7325 UBE2E2 ubiquitin conjugating enzyme E2 E2 protein-coding 8.328 1.173
7326 UBE2G1 ubiquitin conjugating enzyme E2 G1 protein-coding 10.18 0.5678
-7327 UBE2G2 ubiquitin conjugating enzyme E2 G2 protein-coding 10.5 0.4894
-7328 UBE2H ubiquitin conjugating enzyme E2 H protein-coding 10.43 0.701
+7327 UBE2G2 ubiquitin conjugating enzyme E2 G2 protein-coding 10.5 0.4895
+7328 UBE2H ubiquitin conjugating enzyme E2 H protein-coding 10.43 0.7007
7329 UBE2I ubiquitin conjugating enzyme E2 I protein-coding 11.01 0.5067
-733 C8G complement C8 gamma chain protein-coding 2.804 2.527
-7332 UBE2L3 ubiquitin conjugating enzyme E2 L3 protein-coding 11.02 0.4702
+733 C8G complement C8 gamma chain protein-coding 2.803 2.526
+7332 UBE2L3 ubiquitin conjugating enzyme E2 L3 protein-coding 11.02 0.4701
7334 UBE2N ubiquitin conjugating enzyme E2 N protein-coding 10.91 0.514
-7335 UBE2V1 ubiquitin conjugating enzyme E2 V1 protein-coding 11.59 0.4466
+7335 UBE2V1 ubiquitin conjugating enzyme E2 V1 protein-coding 11.59 0.4467
7336 UBE2V2 ubiquitin conjugating enzyme E2 V2 protein-coding 9.765 0.6334
-7337 UBE3A ubiquitin protein ligase E3A protein-coding 10.6 0.5164
-734 OSGIN2 oxidative stress induced growth inhibitor family member 2 protein-coding 9.315 0.8103
+7337 UBE3A ubiquitin protein ligase E3A protein-coding 10.6 0.5163
+734 OSGIN2 oxidative stress induced growth inhibitor family member 2 protein-coding 9.315 0.8099
7341 SUMO1 small ubiquitin-like modifier 1 protein-coding 10.99 0.5034
-7342 UBP1 upstream binding protein 1 protein-coding 10.48 0.5487
-7343 UBTF upstream binding transcription factor protein-coding 11.54 0.4192
-7345 UCHL1 ubiquitin C-terminal hydrolase L1 protein-coding 8.011 2.936
-7347 UCHL3 ubiquitin C-terminal hydrolase L3 protein-coding 8.608 0.833
+7342 UBP1 upstream binding protein 1 protein-coding 10.48 0.5486
+7343 UBTF upstream binding transcription factor protein-coding 11.54 0.419
+7345 UCHL1 ubiquitin C-terminal hydrolase L1 protein-coding 8.012 2.935
+7347 UCHL3 ubiquitin C-terminal hydrolase L3 protein-coding 8.607 0.833
7348 UPK1B uroplakin 1B protein-coding 3.222 4.098
-7349 UCN urocortin protein-coding 2.826 1.463
-7351 UCP2 uncoupling protein 2 protein-coding 10.57 1.595
+7349 UCN urocortin protein-coding 2.825 1.463
+7351 UCP2 uncoupling protein 2 protein-coding 10.57 1.594
7352 UCP3 uncoupling protein 3 protein-coding 4.341 1.019
-7353 UFD1 ubiquitin recognition factor in ER associated degradation 1 protein-coding 10.24 0.5684
+7353 UFD1 ubiquitin recognition factor in ER associated degradation 1 protein-coding 10.24 0.5682
735301 SNHG9 small nucleolar RNA host gene 9 ncRNA 5.364 1.392
7355 SLC35A2 solute carrier family 35 member A2 protein-coding 9.768 0.7028
-7357 UGCG UDP-glucose ceramide glucosyltransferase protein-coding 7.837 1.524
-7358 UGDH UDP-glucose 6-dehydrogenase protein-coding 10.23 1.254
-7360 UGP2 UDP-glucose pyrophosphorylase 2 protein-coding 11.03 0.7108
-7368 UGT8 UDP glycosyltransferase 8 protein-coding 5.718 3.278
-7371 UCK2 uridine-cytidine kinase 2 protein-coding 8.439 1.144
+7357 UGCG UDP-glucose ceramide glucosyltransferase protein-coding 7.838 1.523
+7358 UGDH UDP-glucose 6-dehydrogenase protein-coding 10.23 1.253
+7360 UGP2 UDP-glucose pyrophosphorylase 2 protein-coding 11.03 0.7106
+7368 UGT8 UDP glycosyltransferase 8 protein-coding 5.717 3.278
+7371 UCK2 uridine-cytidine kinase 2 protein-coding 8.438 1.145
7372 UMPS uridine monophosphate synthetase protein-coding 9.369 0.6482
-7373 COL14A1 collagen type XIV alpha 1 chain protein-coding 9.058 2.266
-7374 UNG uracil DNA glycosylase protein-coding 10.05 0.7091
-7375 USP4 ubiquitin specific peptidase 4 protein-coding 10.15 0.4843
-7376 NR1H2 nuclear receptor subfamily 1 group H member 2 protein-coding 10.7 0.6072
-7378 UPP1 uridine phosphorylase 1 protein-coding 8.84 1.624
-7379 UPK2 uroplakin 2 protein-coding 2.639 2.576
-738 VPS51 VPS51, GARP complex subunit protein-coding 11.04 0.7014
-7380 UPK3A uroplakin 3A protein-coding 2.714 2.848
-7381 UQCRB ubiquinol-cytochrome c reductase binding protein protein-coding 11.81 0.7301
+7373 COL14A1 collagen type XIV alpha 1 chain protein-coding 9.06 2.266
+7374 UNG uracil DNA glycosylase protein-coding 10.05 0.7093
+7375 USP4 ubiquitin specific peptidase 4 protein-coding 10.15 0.4842
+7376 NR1H2 nuclear receptor subfamily 1 group H member 2 protein-coding 10.7 0.607
+7378 UPP1 uridine phosphorylase 1 protein-coding 8.84 1.623
+7379 UPK2 uroplakin 2 protein-coding 2.638 2.575
+738 VPS51 VPS51, GARP complex subunit protein-coding 11.04 0.7012
+7380 UPK3A uroplakin 3A protein-coding 2.716 2.849
+7381 UQCRB ubiquinol-cytochrome c reductase binding protein protein-coding 11.81 0.7299
7384 UQCRC1 ubiquinol-cytochrome c reductase core protein 1 protein-coding 11.87 0.6902
-7385 UQCRC2 ubiquinol-cytochrome c reductase core protein 2 protein-coding 11.65 0.5913
-7386 UQCRFS1 ubiquinol-cytochrome c reductase, Rieske iron-sulfur polypeptide 1 protein-coding 10.69 0.7008
-7388 UQCRH ubiquinol-cytochrome c reductase hinge protein protein-coding 10.91 0.8662
-7389 UROD uroporphyrinogen decarboxylase protein-coding 10.29 0.7133
-7390 UROS uroporphyrinogen III synthase protein-coding 9.321 0.6724
-7391 USF1 upstream transcription factor 1 protein-coding 9.998 0.6265
-7392 USF2 upstream transcription factor 2, c-fos interacting protein-coding 11.21 0.6043
-7398 USP1 ubiquitin specific peptidase 1 protein-coding 9.946 0.8059
-7399 USH2A usherin protein-coding 2.353 1.601
-740 MRPL49 mitochondrial ribosomal protein L49 protein-coding 10.48 0.4977
+7385 UQCRC2 ubiquinol-cytochrome c reductase core protein 2 protein-coding 11.65 0.5911
+7386 UQCRFS1 ubiquinol-cytochrome c reductase, Rieske iron-sulfur polypeptide 1 protein-coding 10.69 0.7007
+7388 UQCRH ubiquinol-cytochrome c reductase hinge protein protein-coding 10.91 0.8661
+7389 UROD uroporphyrinogen decarboxylase protein-coding 10.29 0.7131
+7390 UROS uroporphyrinogen III synthase protein-coding 9.32 0.6722
+7391 USF1 upstream transcription factor 1 protein-coding 9.998 0.6263
+7392 USF2 upstream transcription factor 2, c-fos interacting protein-coding 11.21 0.6044
+7398 USP1 ubiquitin specific peptidase 1 protein-coding 9.946 0.8056
+7399 USH2A usherin protein-coding 2.353 1.6
+740 MRPL49 mitochondrial ribosomal protein L49 protein-coding 10.48 0.4978
7402 UTRN utrophin protein-coding 10.58 1.194
-7403 KDM6A lysine demethylase 6A protein-coding 9.16 0.825
-7405 UVRAG UV radiation resistance associated protein-coding 9.062 0.5726
-7407 VARS valyl-tRNA synthetase protein-coding 11.08 0.6761
-7408 VASP vasodilator stimulated phosphoprotein protein-coding 10.95 0.8966
-7409 VAV1 vav guanine nucleotide exchange factor 1 protein-coding 7.163 1.646
-7410 VAV2 vav guanine nucleotide exchange factor 2 protein-coding 10.26 0.855
-7411 VBP1 VHL binding protein 1 protein-coding 9.918 0.5831
+7403 KDM6A lysine demethylase 6A protein-coding 9.16 0.8247
+7405 UVRAG UV radiation resistance associated protein-coding 9.063 0.5727
+7407 VARS valyl-tRNA synthetase protein-coding 11.08 0.6763
+7408 VASP vasodilator stimulated phosphoprotein protein-coding 10.95 0.8965
+7409 VAV1 vav guanine nucleotide exchange factor 1 protein-coding 7.164 1.646
+7410 VAV2 vav guanine nucleotide exchange factor 2 protein-coding 10.26 0.8551
+7411 VBP1 VHL binding protein 1 protein-coding 9.917 0.5832
7412 VCAM1 vascular cell adhesion molecule 1 protein-coding 8.908 2.167
-7414 VCL vinculin protein-coding 11.46 0.9932
+7414 VCL vinculin protein-coding 11.46 0.9935
7415 VCP valosin containing protein protein-coding 12.92 0.4999
-7416 VDAC1 voltage dependent anion channel 1 protein-coding 12.15 0.6541
-7417 VDAC2 voltage dependent anion channel 2 protein-coding 10.63 0.6158
-7419 VDAC3 voltage dependent anion channel 3 protein-coding 10.86 0.6351
-7421 VDR vitamin D receptor protein-coding 8.437 2.303
+7416 VDAC1 voltage dependent anion channel 1 protein-coding 12.15 0.6543
+7417 VDAC2 voltage dependent anion channel 2 protein-coding 10.63 0.6157
+7419 VDAC3 voltage dependent anion channel 3 protein-coding 10.86 0.635
+7421 VDR vitamin D receptor protein-coding 8.437 2.302
7422 VEGFA vascular endothelial growth factor A protein-coding 11.46 1.559
-7423 VEGFB vascular endothelial growth factor B protein-coding 10.47 0.9392
-7424 VEGFC vascular endothelial growth factor C protein-coding 7.023 1.691
-7425 VGF VGF nerve growth factor inducible protein-coding 4.049 3.09
-7428 VHL von Hippel-Lindau tumor suppressor protein-coding 9.399 0.7835
+7423 VEGFB vascular endothelial growth factor B protein-coding 10.47 0.9388
+7424 VEGFC vascular endothelial growth factor C protein-coding 7.024 1.691
+7425 VGF VGF nerve growth factor inducible protein-coding 4.05 3.091
+7428 VHL von Hippel-Lindau tumor suppressor protein-coding 9.4 0.7833
7429 VIL1 villin 1 protein-coding 3.385 4.289
7430 EZR ezrin protein-coding 12.89 1.082
7431 VIM vimentin protein-coding 14.02 1.563
-7433 VIPR1 vasoactive intestinal peptide receptor 1 protein-coding 6.522 2.305
-7434 VIPR2 vasoactive intestinal peptide receptor 2 protein-coding 3.993 2.932
+7433 VIPR1 vasoactive intestinal peptide receptor 1 protein-coding 6.524 2.305
+7434 VIPR2 vasoactive intestinal peptide receptor 2 protein-coding 3.995 2.933
7436 VLDLR very low density lipoprotein receptor protein-coding 8.264 1.819
7439 BEST1 bestrophin 1 protein-coding 5.363 1.563
-744 MPPED2 metallophosphoesterase domain containing 2 protein-coding 5.436 2.5
+744 MPPED2 metallophosphoesterase domain containing 2 protein-coding 5.438 2.501
7442 TRPV1 transient receptor potential cation channel subfamily V member 1 protein-coding 7.219 1.044
-7443 VRK1 vaccinia related kinase 1 protein-coding 8.095 0.9506
+7443 VRK1 vaccinia related kinase 1 protein-coding 8.094 0.9507
7444 VRK2 vaccinia related kinase 2 protein-coding 8.492 1.077
-7447 VSNL1 visinin like 1 protein-coding 5.812 3.287
-7448 VTN vitronectin protein-coding 4.166 3.76
+7447 VSNL1 visinin like 1 protein-coding 5.812 3.286
+7448 VTN vitronectin protein-coding 4.167 3.759
745 MYRF myelin regulatory factor protein-coding 7.606 2.872
7450 VWF von Willebrand factor protein-coding 11.46 1.373
7453 WARS tryptophanyl-tRNA synthetase protein-coding 11.78 1.235
-7454 WAS Wiskott-Aldrich syndrome protein-coding 7.353 1.406
-7456 WIPF1 WAS/WASL interacting protein family member 1 protein-coding 9.85 1.167
-7458 EIF4H eukaryotic translation initiation factor 4H protein-coding 12.24 0.4077
-746 TMEM258 transmembrane protein 258 protein-coding 10.43 0.6227
-7461 CLIP2 CAP-Gly domain containing linker protein 2 protein-coding 9.632 1.504
-7462 LAT2 linker for activation of T cells family member 2 protein-coding 7.468 1.312
+7454 WAS Wiskott-Aldrich syndrome protein-coding 7.354 1.407
+7456 WIPF1 WAS/WASL interacting protein family member 1 protein-coding 9.851 1.168
+7458 EIF4H eukaryotic translation initiation factor 4H protein-coding 12.24 0.4076
+746 TMEM258 transmembrane protein 258 protein-coding 10.43 0.6226
+7461 CLIP2 CAP-Gly domain containing linker protein 2 protein-coding 9.632 1.503
+7462 LAT2 linker for activation of T cells family member 2 protein-coding 7.469 1.313
7464 CORO2A coronin 2A protein-coding 8.827 2.178
-7465 WEE1 WEE1 G2 checkpoint kinase protein-coding 9.528 1.078
+7465 WEE1 WEE1 G2 checkpoint kinase protein-coding 9.528 1.077
7466 WFS1 wolframin ER transmembrane glycoprotein protein-coding 10.19 1.01
-7468 NSD2 nuclear receptor binding SET domain protein 2 protein-coding 10.68 0.7897
-7469 NELFA negative elongation factor complex member A protein-coding 9.635 0.5634
-747 DAGLA diacylglycerol lipase alpha protein-coding 7.458 1.463
+7468 NSD2 nuclear receptor binding SET domain protein 2 protein-coding 10.68 0.7896
+7469 NELFA negative elongation factor complex member A protein-coding 9.635 0.5632
+747 DAGLA diacylglycerol lipase alpha protein-coding 7.459 1.463
7471 WNT1 Wnt family member 1 protein-coding 1.292 1.159
-7473 WNT3 Wnt family member 3 protein-coding 4.456 1.636
-7474 WNT5A Wnt family member 5A protein-coding 8.596 2.038
+7473 WNT3 Wnt family member 3 protein-coding 4.455 1.636
+7474 WNT5A Wnt family member 5A protein-coding 8.595 2.037
7475 WNT6 Wnt family member 6 protein-coding 2.908 1.948
-7476 WNT7A Wnt family member 7A protein-coding 2.958 3.076
-7477 WNT7B Wnt family member 7B protein-coding 6.804 3.445
-7479 WNT8B Wnt family member 8B protein-coding 1.195 1.2
-7480 WNT10B Wnt family member 10B protein-coding 3.615 1.843
-7481 WNT11 Wnt family member 11 protein-coding 5.165 2.394
-7482 WNT2B Wnt family member 2B protein-coding 4.686 1.957
-7483 WNT9A Wnt family member 9A protein-coding 3.559 1.928
-7484 WNT9B Wnt family member 9B protein-coding 1.525 1.324
-7485 WRB tryptophan rich basic protein protein-coding 9.082 0.8121
-7486 WRN Werner syndrome RecQ like helicase protein-coding 8.002 0.8589
+7476 WNT7A Wnt family member 7A protein-coding 2.959 3.076
+7477 WNT7B Wnt family member 7B protein-coding 6.803 3.445
+7479 WNT8B Wnt family member 8B protein-coding 1.196 1.201
+7480 WNT10B Wnt family member 10B protein-coding 3.616 1.843
+7481 WNT11 Wnt family member 11 protein-coding 5.167 2.394
+7482 WNT2B Wnt family member 2B protein-coding 4.687 1.957
+7483 WNT9A Wnt family member 9A protein-coding 3.56 1.928
+7484 WNT9B Wnt family member 9B protein-coding 1.526 1.324
+7485 WRB tryptophan rich basic protein protein-coding 9.082 0.8118
+7486 WRN Werner syndrome RecQ like helicase protein-coding 8.002 0.8585
7490 WT1 Wilms tumor 1 protein-coding 3.054 2.704
-7494 XBP1 X-box binding protein 1 protein-coding 12.18 1.546
-7499 XG Xg blood group protein-coding 3.903 2.75
-750 GAS8-AS1 GAS8 antisense RNA 1 ncRNA 1.767 1.057
-7503 XIST X inactive specific transcript (non-protein coding) ncRNA 7.057 5.49
-7504 XK X-linked Kx blood group protein-coding 5.723 2.308
+7494 XBP1 X-box binding protein 1 protein-coding 12.18 1.545
+7499 XG Xg blood group protein-coding 3.902 2.748
+750 GAS8-AS1 GAS8 antisense RNA 1 ncRNA 1.768 1.058
+7503 XIST X inactive specific transcript (non-protein coding) ncRNA 7.058 5.491
+7504 XK X-linked Kx blood group protein-coding 5.724 2.308
7507 XPA XPA, DNA damage recognition and repair factor protein-coding 7.927 0.6069
-7508 XPC XPC complex subunit, DNA damage recognition and repair factor protein-coding 9.961 0.6638
-751071 CSKMT citrate synthase lysine methyltransferase protein-coding 5.963 0.8568
-7511 XPNPEP1 X-prolyl aminopeptidase 1 protein-coding 10.21 0.5417
-7512 XPNPEP2 X-prolyl aminopeptidase 2 protein-coding 3.587 2.599
-7514 XPO1 exportin 1 protein-coding 11.83 0.5856
-7515 XRCC1 X-ray repair cross complementing 1 protein-coding 9.739 0.5592
-7516 XRCC2 X-ray repair cross complementing 2 protein-coding 5.552 1.552
-7517 XRCC3 X-ray repair cross complementing 3 protein-coding 8.206 0.9928
-7518 XRCC4 X-ray repair cross complementing 4 protein-coding 6.92 0.729
-752 FMNL1 formin like 1 protein-coding 8.81 1.264
-7520 XRCC5 X-ray repair cross complementing 5 protein-coding 12.63 0.4579
-752014 CEMP1 cementum protein 1 protein-coding 7.608 0.9894
-7525 YES1 YES proto-oncogene 1, Src family tyrosine kinase protein-coding 10.34 0.786
-7528 YY1 YY1 transcription factor protein-coding 10.26 0.5207
-7529 YWHAB tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein beta protein-coding 12.81 0.5275
-753 LDLRAD4 low density lipoprotein receptor class A domain containing 4 protein-coding 8.666 1.577
-7531 YWHAE tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein epsilon protein-coding 13.45 0.5804
-7532 YWHAG tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein gamma protein-coding 12.2 0.662
-7533 YWHAH tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein eta protein-coding 11.63 0.6805
-7534 YWHAZ tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein zeta protein-coding 14.08 0.7955
-7535 ZAP70 zeta chain of T cell receptor associated protein kinase 70 protein-coding 5.972 1.979
-7536 SF1 splicing factor 1 protein-coding 12.13 0.3529
+7508 XPC XPC complex subunit, DNA damage recognition and repair factor protein-coding 9.961 0.6637
+751071 CSKMT citrate synthase lysine methyltransferase protein-coding 5.963 0.8565
+7511 XPNPEP1 X-prolyl aminopeptidase 1 protein-coding 10.21 0.5415
+7512 XPNPEP2 X-prolyl aminopeptidase 2 protein-coding 3.588 2.599
+7514 XPO1 exportin 1 protein-coding 11.83 0.5855
+7515 XRCC1 X-ray repair cross complementing 1 protein-coding 9.739 0.5591
+7516 XRCC2 X-ray repair cross complementing 2 protein-coding 5.551 1.553
+7517 XRCC3 X-ray repair cross complementing 3 protein-coding 8.206 0.9926
+7518 XRCC4 X-ray repair cross complementing 4 protein-coding 6.919 0.7289
+752 FMNL1 formin like 1 protein-coding 8.811 1.265
+7520 XRCC5 X-ray repair cross complementing 5 protein-coding 12.63 0.4578
+752014 CEMP1 cementum protein 1 protein-coding 7.608 0.989
+7525 YES1 YES proto-oncogene 1, Src family tyrosine kinase protein-coding 10.34 0.7859
+7528 YY1 YY1 transcription factor protein-coding 10.26 0.5206
+7529 YWHAB tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein beta protein-coding 12.81 0.5273
+753 LDLRAD4 low density lipoprotein receptor class A domain containing 4 protein-coding 8.667 1.577
+7531 YWHAE tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein epsilon protein-coding 13.45 0.5807
+7532 YWHAG tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein gamma protein-coding 12.2 0.6622
+7533 YWHAH tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein eta protein-coding 11.63 0.6806
+7534 YWHAZ tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein zeta protein-coding 14.08 0.7953
+7535 ZAP70 zeta chain of T cell receptor associated protein kinase 70 protein-coding 5.973 1.98
+7536 SF1 splicing factor 1 protein-coding 12.13 0.3528
7538 ZFP36 ZFP36 ring finger protein protein-coding 11.52 1.437
7539 ZFP37 ZFP37 zinc finger protein protein-coding 5.704 1.46
-754 PTTG1IP PTTG1 interacting protein protein-coding 12.73 0.6876
+754 PTTG1IP PTTG1 interacting protein protein-coding 12.73 0.6874
7541 ZBTB14 zinc finger and BTB domain containing 14 protein-coding 8.372 0.4664
-7542 ZFPL1 zinc finger protein like 1 protein-coding 9.428 0.5676
-7543 ZFX zinc finger protein, X-linked protein-coding 8.978 0.832
-7549 ZNF2 zinc finger protein 2 protein-coding 6.884 0.4855
-755 C21orf2 chromosome 21 open reading frame 2 protein-coding 8.856 0.9376
-7551 ZNF3 zinc finger protein 3 protein-coding 9.488 0.5652
-7552 ZNF711 zinc finger protein 711 protein-coding 7.036 2.064
-7553 ZNF7 zinc finger protein 7 protein-coding 8.803 0.5428
-7554 ZNF8 zinc finger protein 8 protein-coding 6.519 0.6983
-7555 CNBP CCHC-type zinc finger nucleic acid binding protein protein-coding 12.77 0.4686
-7556 ZNF10 zinc finger protein 10 protein-coding 7.518 1.07
-7559 ZNF12 zinc finger protein 12 protein-coding 9.396 0.5629
-7561 ZNF14 zinc finger protein 14 protein-coding 7.293 1.06
-7562 ZNF708 zinc finger protein 708 protein-coding 7.109 1.11
-7564 ZNF16 zinc finger protein 16 protein-coding 7.993 0.5605
-7565 ZNF17 zinc finger protein 17 protein-coding 6.855 0.5881
-7566 ZNF18 zinc finger protein 18 protein-coding 7.603 0.5954
-7567 ZNF19 zinc finger protein 19 protein-coding 5.917 0.8801
-7568 ZNF20 zinc finger protein 20 protein-coding 6.79 0.7353
-7569 ZNF182 zinc finger protein 182 protein-coding 7.481 0.6672
-757 TMEM50B transmembrane protein 50B protein-coding 9.861 0.6949
-7570 ZNF22 zinc finger protein 22 protein-coding 9.366 0.7718
-7571 ZNF23 zinc finger protein 23 protein-coding 7.787 0.6633
-7572 ZNF24 zinc finger protein 24 protein-coding 10.74 0.6641
-7574 ZNF26 zinc finger protein 26 protein-coding 7.767 0.6344
-7576 ZNF28 zinc finger protein 28 protein-coding 8.246 1.179
-7579 ZSCAN20 zinc finger and SCAN domain containing 20 protein-coding 5.684 0.8418
-7580 ZNF32 zinc finger protein 32 protein-coding 9.294 0.7315
+7542 ZFPL1 zinc finger protein like 1 protein-coding 9.427 0.5676
+7543 ZFX zinc finger protein, X-linked protein-coding 8.978 0.8321
+7549 ZNF2 zinc finger protein 2 protein-coding 6.884 0.4854
+755 C21orf2 chromosome 21 open reading frame 2 protein-coding 8.856 0.9374
+7551 ZNF3 zinc finger protein 3 protein-coding 9.487 0.5651
+7552 ZNF711 zinc finger protein 711 protein-coding 7.037 2.063
+7553 ZNF7 zinc finger protein 7 protein-coding 8.803 0.5427
+7554 ZNF8 zinc finger protein 8 protein-coding 6.519 0.6984
+7555 CNBP CCHC-type zinc finger nucleic acid binding protein protein-coding 12.77 0.4684
+7556 ZNF10 zinc finger protein 10 protein-coding 7.519 1.07
+7559 ZNF12 zinc finger protein 12 protein-coding 9.396 0.5627
+7561 ZNF14 zinc finger protein 14 protein-coding 7.293 1.059
+7562 ZNF708 zinc finger protein 708 protein-coding 7.11 1.109
+7564 ZNF16 zinc finger protein 16 protein-coding 7.993 0.5603
+7565 ZNF17 zinc finger protein 17 protein-coding 6.856 0.5883
+7566 ZNF18 zinc finger protein 18 protein-coding 7.603 0.5952
+7567 ZNF19 zinc finger protein 19 protein-coding 5.917 0.88
+7568 ZNF20 zinc finger protein 20 protein-coding 6.79 0.7351
+7569 ZNF182 zinc finger protein 182 protein-coding 7.481 0.6671
+757 TMEM50B transmembrane protein 50B protein-coding 9.862 0.6952
+7570 ZNF22 zinc finger protein 22 protein-coding 9.366 0.7714
+7571 ZNF23 zinc finger protein 23 protein-coding 7.787 0.6632
+7572 ZNF24 zinc finger protein 24 protein-coding 10.74 0.6637
+7574 ZNF26 zinc finger protein 26 protein-coding 7.767 0.6343
+7576 ZNF28 zinc finger protein 28 protein-coding 8.246 1.178
+7579 ZSCAN20 zinc finger and SCAN domain containing 20 protein-coding 5.684 0.8415
+7580 ZNF32 zinc finger protein 32 protein-coding 9.294 0.7313
7581 ZNF33A zinc finger protein 33A protein-coding 9.738 0.7574
7582 ZNF33B zinc finger protein 33B protein-coding 9.224 0.912
-7584 ZNF35 zinc finger protein 35 protein-coding 7.041 0.6461
-7586 ZKSCAN1 zinc finger with KRAB and SCAN domains 1 protein-coding 9.439 1.141
+7584 ZNF35 zinc finger protein 35 protein-coding 7.041 0.6458
+7586 ZKSCAN1 zinc finger with KRAB and SCAN domains 1 protein-coding 9.44 1.14
7587 ZNF37A zinc finger protein 37A protein-coding 8.615 0.748
-7589 ZSCAN21 zinc finger and SCAN domain containing 21 protein-coding 7.778 0.622
-7592 ZNF41 zinc finger protein 41 protein-coding 7.668 0.7304
-7593 MZF1 myeloid zinc finger 1 protein-coding 8.358 0.9107
-7594 ZNF43 zinc finger protein 43 protein-coding 7.719 1.736
-7596 ZNF45 zinc finger protein 45 protein-coding 7.817 0.6285
-7597 ZBTB25 zinc finger and BTB domain containing 25 protein-coding 6.463 0.6248
-760 CA2 carbonic anhydrase 2 protein-coding 8.639 2.417
-761 CA3 carbonic anhydrase 3 protein-coding 4.077 2.197
-762 CA4 carbonic anhydrase 4 protein-coding 3.386 2.902
-7620 ZNF69 zinc finger protein 69 protein-coding 5.778 1.517
-7621 ZNF70 zinc finger protein 70 protein-coding 6.946 0.8125
-7625 ZNF74 zinc finger protein 74 protein-coding 8.286 0.7627
-7626 ZNF75D zinc finger protein 75D protein-coding 8.328 0.7614
-7627 ZNF75A zinc finger protein 75a protein-coding 8.058 0.8569
-7629 ZNF76 zinc finger protein 76 protein-coding 9.352 0.6195
-7633 ZNF79 zinc finger protein 79 protein-coding 6.698 0.5285
-7634 ZNF80 zinc finger protein 80 protein-coding 1.899 1.405
-7637 ZNF84 zinc finger protein 84 protein-coding 9.292 0.8278
+7589 ZSCAN21 zinc finger and SCAN domain containing 21 protein-coding 7.778 0.6218
+7592 ZNF41 zinc finger protein 41 protein-coding 7.668 0.7302
+7593 MZF1 myeloid zinc finger 1 protein-coding 8.359 0.9109
+7594 ZNF43 zinc finger protein 43 protein-coding 7.72 1.735
+7596 ZNF45 zinc finger protein 45 protein-coding 7.817 0.6284
+7597 ZBTB25 zinc finger and BTB domain containing 25 protein-coding 6.463 0.6249
+760 CA2 carbonic anhydrase 2 protein-coding 8.638 2.417
+761 CA3 carbonic anhydrase 3 protein-coding 4.079 2.197
+762 CA4 carbonic anhydrase 4 protein-coding 3.389 2.902
+7620 ZNF69 zinc finger protein 69 protein-coding 5.779 1.516
+7621 ZNF70 zinc finger protein 70 protein-coding 6.946 0.8124
+7625 ZNF74 zinc finger protein 74 protein-coding 8.286 0.7624
+7626 ZNF75D zinc finger protein 75D protein-coding 8.329 0.7615
+7627 ZNF75A zinc finger protein 75a protein-coding 8.058 0.8566
+7629 ZNF76 zinc finger protein 76 protein-coding 9.352 0.6194
+7633 ZNF79 zinc finger protein 79 protein-coding 6.699 0.5284
+7634 ZNF80 zinc finger protein 80 protein-coding 1.901 1.406
+7637 ZNF84 zinc finger protein 84 protein-coding 9.292 0.8275
7638 ZNF221 zinc finger protein 221 protein-coding 3.76 1.159
-7639 ZNF85 zinc finger protein 85 protein-coding 6.273 1.409
-7643 ZNF90 zinc finger protein 90 protein-coding 7.452 1.303
-7644 ZNF91 zinc finger protein 91 protein-coding 8.275 1.258
-766 CA7 carbonic anhydrase 7 protein-coding 1.16 1.579
-767 CA8 carbonic anhydrase 8 protein-coding 4.874 2.852
-7673 ZNF222 zinc finger protein 222 protein-coding 5.883 0.8196
+7639 ZNF85 zinc finger protein 85 protein-coding 6.274 1.409
+7643 ZNF90 zinc finger protein 90 protein-coding 7.452 1.302
+7644 ZNF91 zinc finger protein 91 protein-coding 8.275 1.257
+766 CA7 carbonic anhydrase 7 protein-coding 1.159 1.578
+767 CA8 carbonic anhydrase 8 protein-coding 4.874 2.851
+7673 ZNF222 zinc finger protein 222 protein-coding 5.883 0.8195
7675 ZNF121 zinc finger protein 121 protein-coding 5.865 1.073
-767557 SYS1-DBNDD2 SYS1-DBNDD2 readthrough (NMD candidate) ncRNA 4.456 1.729
-767558 LUZP6 leucine zipper protein 6 protein-coding 11.88 0.6028
+767557 SYS1-DBNDD2 SYS1-DBNDD2 readthrough (NMD candidate) ncRNA 4.457 1.729
+767558 LUZP6 leucine zipper protein 6 protein-coding 11.88 0.6025
7678 ZNF124 zinc finger protein 124 protein-coding 5.957 1.089
-767811 H2BFXP H2B histone family member X, pseudogene pseudo 2.254 1.497
-767846 PFN1P2 profilin 1 pseudogene 2 pseudo 3.178 1.081
-768096 HAR1A highly accelerated region 1A (non-protein coding) ncRNA 3.088 1.789
+767811 H2BFXP H2B histone family member X, pseudogene pseudo 2.255 1.497
+767846 PFN1P2 profilin 1 pseudogene 2 pseudo 3.179 1.081
+768096 HAR1A highly accelerated region 1A (non-protein coding) ncRNA 3.089 1.788
768097 HAR1B highly accelerated region 1B (non-protein coding) ncRNA 1.561 1.54
-7681 MKRN3 makorin ring finger protein 3 protein-coding 3.003 2.825
-768206 PRCD photoreceptor disc component protein-coding 3.375 1.629
-768211 RELL1 RELT like 1 protein-coding 8.852 0.9616
-7690 ZNF131 zinc finger protein 131 protein-coding 9.042 0.6492
-7691 ZNF132 zinc finger protein 132 protein-coding 6.084 1.19
-7692 ZNF133 zinc finger protein 133 protein-coding 8.37 0.6511
-7693 ZNF134 zinc finger protein 134 protein-coding 7.465 1.138
-7694 ZNF135 zinc finger protein 135 protein-coding 5.961 1.973
-7695 ZNF136 zinc finger protein 136 protein-coding 7.55 0.8104
-7696 ZNF137P zinc finger protein 137, pseudogene pseudo 5.543 1.275
-7697 ZNF138 zinc finger protein 138 protein-coding 7.444 0.8469
-7699 ZNF140 zinc finger protein 140 protein-coding 8.672 0.6359
-770 CA11 carbonic anhydrase 11 protein-coding 7.535 1.859
-7700 ZNF141 zinc finger protein 141 protein-coding 6.004 1.004
-7701 ZNF142 zinc finger protein 142 protein-coding 9.045 0.5392
-7702 ZNF143 zinc finger protein 143 protein-coding 8.239 0.4629
+7681 MKRN3 makorin ring finger protein 3 protein-coding 3.003 2.824
+768206 PRCD photoreceptor disc component protein-coding 3.376 1.63
+768211 RELL1 RELT like 1 protein-coding 8.852 0.9615
+7690 ZNF131 zinc finger protein 131 protein-coding 9.041 0.649
+7691 ZNF132 zinc finger protein 132 protein-coding 6.085 1.19
+7692 ZNF133 zinc finger protein 133 protein-coding 8.371 0.6509
+7693 ZNF134 zinc finger protein 134 protein-coding 7.466 1.138
+7694 ZNF135 zinc finger protein 135 protein-coding 5.962 1.972
+7695 ZNF136 zinc finger protein 136 protein-coding 7.551 0.8103
+7696 ZNF137P zinc finger protein 137, pseudogene pseudo 5.544 1.275
+7697 ZNF138 zinc finger protein 138 protein-coding 7.443 0.8467
+7699 ZNF140 zinc finger protein 140 protein-coding 8.672 0.6358
+770 CA11 carbonic anhydrase 11 protein-coding 7.536 1.859
+7700 ZNF141 zinc finger protein 141 protein-coding 6.005 1.003
+7701 ZNF142 zinc finger protein 142 protein-coding 9.045 0.539
+7702 ZNF143 zinc finger protein 143 protein-coding 8.239 0.4627
7703 PCGF2 polycomb group ring finger 2 protein-coding 9.746 1.034
-7704 ZBTB16 zinc finger and BTB domain containing 16 protein-coding 4.841 2.851
-7705 ZNF146 zinc finger protein 146 protein-coding 10.87 0.6454
-7706 TRIM25 tripartite motif containing 25 protein-coding 10.1 0.6869
+7704 ZBTB16 zinc finger and BTB domain containing 16 protein-coding 4.844 2.852
+7705 ZNF146 zinc finger protein 146 protein-coding 10.87 0.6451
+7706 TRIM25 tripartite motif containing 25 protein-coding 10.1 0.687
7707 ZNF148 zinc finger protein 148 protein-coding 10 0.635
-7709 ZBTB17 zinc finger and BTB domain containing 17 protein-coding 9.08 0.6024
-771 CA12 carbonic anhydrase 12 protein-coding 9.623 3.044
-7710 ZNF154 zinc finger protein 154 protein-coding 5.072 1.751
-7711 ZNF155 zinc finger protein 155 protein-coding 7.16 0.7973
+7709 ZBTB17 zinc finger and BTB domain containing 17 protein-coding 9.08 0.6021
+771 CA12 carbonic anhydrase 12 protein-coding 9.621 3.044
+7710 ZNF154 zinc finger protein 154 protein-coding 5.075 1.751
+7711 ZNF155 zinc finger protein 155 protein-coding 7.161 0.7973
7712 ZNF157 zinc finger protein 157 protein-coding 1.488 1.314
-7716 VEZF1 vascular endothelial zinc finger 1 protein-coding 10.31 0.6404
-7718 ZNF165 zinc finger protein 165 protein-coding 6.246 1.26
-7726 TRIM26 tripartite motif containing 26 protein-coding 10.61 0.5256
-7727 ZNF174 zinc finger protein 174 protein-coding 7.891 0.485
-7728 ZNF175 zinc finger protein 175 protein-coding 6.943 1.008
+7716 VEZF1 vascular endothelial zinc finger 1 protein-coding 10.31 0.6405
+7718 ZNF165 zinc finger protein 165 protein-coding 6.245 1.259
+7726 TRIM26 tripartite motif containing 26 protein-coding 10.61 0.5253
+7727 ZNF174 zinc finger protein 174 protein-coding 7.891 0.4849
+7728 ZNF175 zinc finger protein 175 protein-coding 6.944 1.008
773 CACNA1A calcium voltage-gated channel subunit alpha1 A protein-coding 4.386 2.214
-7730 ZNF177 zinc finger protein 177 protein-coding 5.85 1.401
-7732 RNF112 ring finger protein 112 protein-coding 4.146 2.381
-7733 ZNF180 zinc finger protein 180 protein-coding 7.318 0.655
-7737 RNF113A ring finger protein 113A protein-coding 8.375 0.5647
-7738 ZNF184 zinc finger protein 184 protein-coding 7.759 0.6841
+7730 ZNF177 zinc finger protein 177 protein-coding 5.851 1.401
+7732 RNF112 ring finger protein 112 protein-coding 4.148 2.381
+7733 ZNF180 zinc finger protein 180 protein-coding 7.319 0.655
+7737 RNF113A ring finger protein 113A protein-coding 8.375 0.5646
+7738 ZNF184 zinc finger protein 184 protein-coding 7.759 0.6838
7739 ZNF185 zinc finger protein 185 with LIM domain protein-coding 9.282 1.734
-774 CACNA1B calcium voltage-gated channel subunit alpha1 B protein-coding 3.228 3.027
+774 CACNA1B calcium voltage-gated channel subunit alpha1 B protein-coding 3.23 3.027
7741 ZSCAN26 zinc finger and SCAN domain containing 26 protein-coding 7.998 0.7079
-7743 ZNF189 zinc finger protein 189 protein-coding 8.884 0.7478
-7745 ZKSCAN8 zinc finger with KRAB and SCAN domains 8 protein-coding 7.818 1.549
-7746 ZSCAN9 zinc finger and SCAN domain containing 9 protein-coding 7.402 0.7276
-7748 ZNF195 zinc finger protein 195 protein-coding 8.387 0.7319
-775 CACNA1C calcium voltage-gated channel subunit alpha1 C protein-coding 7.267 1.759
-7750 ZMYM2 zinc finger MYM-type containing 2 protein-coding 10.32 0.7416
-7752 ZNF200 zinc finger protein 200 protein-coding 7.776 0.5403
-7753 ZNF202 zinc finger protein 202 protein-coding 7.908 0.5449
-7754 ZNF204P zinc finger protein 204, pseudogene pseudo 6.758 1.862
-7755 ZNF205 zinc finger protein 205 protein-coding 8.39 0.7461
+7743 ZNF189 zinc finger protein 189 protein-coding 8.885 0.7481
+7745 ZKSCAN8 zinc finger with KRAB and SCAN domains 8 protein-coding 7.819 1.548
+7746 ZSCAN9 zinc finger and SCAN domain containing 9 protein-coding 7.402 0.7273
+7748 ZNF195 zinc finger protein 195 protein-coding 8.387 0.7315
+775 CACNA1C calcium voltage-gated channel subunit alpha1 C protein-coding 7.269 1.76
+7750 ZMYM2 zinc finger MYM-type containing 2 protein-coding 10.32 0.7413
+7752 ZNF200 zinc finger protein 200 protein-coding 7.776 0.5402
+7753 ZNF202 zinc finger protein 202 protein-coding 7.908 0.5447
+7754 ZNF204P zinc finger protein 204, pseudogene pseudo 6.759 1.862
+7755 ZNF205 zinc finger protein 205 protein-coding 8.39 0.7459
7756 ZNF207 zinc finger protein 207 protein-coding 11.46 0.4076
-7757 ZNF208 zinc finger protein 208 protein-coding 4.245 2.401
-776 CACNA1D calcium voltage-gated channel subunit alpha1 D protein-coding 6.437 2.495
-7760 ZNF213 zinc finger protein 213 protein-coding 8.986 0.7072
-7761 ZNF214 zinc finger protein 214 protein-coding 4.913 1.566
+7757 ZNF208 zinc finger protein 208 protein-coding 4.247 2.402
+776 CACNA1D calcium voltage-gated channel subunit alpha1 D protein-coding 6.438 2.495
+7760 ZNF213 zinc finger protein 213 protein-coding 8.985 0.7069
+7761 ZNF214 zinc finger protein 214 protein-coding 4.914 1.565
7762 ZNF215 zinc finger protein 215 protein-coding 4.49 1.799
7763 ZFAND5 zinc finger AN1-type containing 5 protein-coding 11.83 0.6127
7764 ZNF217 zinc finger protein 217 protein-coding 10.24 1.23
-7766 ZNF223 zinc finger protein 223 protein-coding 6.326 0.92
-7767 ZNF224 zinc finger protein 224 protein-coding 7.503 0.7789
-7768 ZNF225 zinc finger protein 225 protein-coding 6.025 0.7396
-7769 ZNF226 zinc finger protein 226 protein-coding 8.21 0.6756
-777 CACNA1E calcium voltage-gated channel subunit alpha1 E protein-coding 3.065 2.442
-7770 ZNF227 zinc finger protein 227 protein-coding 8.073 0.6407
-7771 ZNF112 zinc finger protein 112 protein-coding 6.634 0.9481
-7772 ZNF229 zinc finger protein 229 protein-coding 5.92 2.302
-7773 ZNF230 zinc finger protein 230 protein-coding 6.595 0.6453
-7775 ZNF232 zinc finger protein 232 protein-coding 7.394 0.7295
-7776 ZNF236 zinc finger protein 236 protein-coding 7.919 0.7249
-7779 SLC30A1 solute carrier family 30 member 1 protein-coding 8.122 0.9625
-778 CACNA1F calcium voltage-gated channel subunit alpha1 F protein-coding 2.566 1.64
-7781 SLC30A3 solute carrier family 30 member 3 protein-coding 2.788 2.212
-7782 SLC30A4 solute carrier family 30 member 4 protein-coding 5.968 1.797
-7784 ZP3 zona pellucida glycoprotein 3 protein-coding 7.278 1.248
-7786 MAP3K12 mitogen-activated protein kinase kinase kinase 12 protein-coding 7.438 1.348
-7789 ZXDA zinc finger, X-linked, duplicated A protein-coding 5.484 0.9059
-7791 ZYX zyxin protein-coding 11.9 0.872
-7798 LUZP1 leucine zipper protein 1 protein-coding 9.767 0.7944
-7799 PRDM2 PR/SET domain 2 protein-coding 9.852 0.6874
+7766 ZNF223 zinc finger protein 223 protein-coding 6.326 0.9198
+7767 ZNF224 zinc finger protein 224 protein-coding 7.504 0.7789
+7768 ZNF225 zinc finger protein 225 protein-coding 6.026 0.7395
+7769 ZNF226 zinc finger protein 226 protein-coding 8.211 0.6757
+777 CACNA1E calcium voltage-gated channel subunit alpha1 E protein-coding 3.064 2.442
+7770 ZNF227 zinc finger protein 227 protein-coding 8.074 0.6406
+7771 ZNF112 zinc finger protein 112 protein-coding 6.634 0.9479
+7772 ZNF229 zinc finger protein 229 protein-coding 5.922 2.301
+7773 ZNF230 zinc finger protein 230 protein-coding 6.596 0.6452
+7775 ZNF232 zinc finger protein 232 protein-coding 7.394 0.7293
+7776 ZNF236 zinc finger protein 236 protein-coding 7.919 0.7247
+7779 SLC30A1 solute carrier family 30 member 1 protein-coding 8.122 0.9623
+778 CACNA1F calcium voltage-gated channel subunit alpha1 F protein-coding 2.567 1.64
+7781 SLC30A3 solute carrier family 30 member 3 protein-coding 2.787 2.211
+7782 SLC30A4 solute carrier family 30 member 4 protein-coding 5.969 1.798
+7784 ZP3 zona pellucida glycoprotein 3 protein-coding 7.277 1.249
+7786 MAP3K12 mitogen-activated protein kinase kinase kinase 12 protein-coding 7.439 1.348
+7789 ZXDA zinc finger, X-linked, duplicated A protein-coding 5.485 0.906
+7791 ZYX zyxin protein-coding 11.9 0.8722
+7798 LUZP1 leucine zipper protein 1 protein-coding 9.767 0.7942
+7799 PRDM2 PR/SET domain 2 protein-coding 9.853 0.6874
780 DDR1 discoidin domain receptor tyrosine kinase 1 protein-coding 12.47 1.479
-7802 DNALI1 dynein axonemal light intermediate chain 1 protein-coding 7.516 2.494
-7803 PTP4A1 protein tyrosine phosphatase type IVA, member 1 protein-coding 11.66 0.9752
-7804 LRP8 LDL receptor related protein 8 protein-coding 7.354 1.779
-7805 LAPTM5 lysosomal protein transmembrane 5 protein-coding 11.4 1.417
-780776 TVP23A trans-golgi network vesicle protein 23 homolog A protein-coding 4.455 1.492
-7812 CSDE1 cold shock domain containing E1 protein-coding 13.31 0.5451
-7813 EVI5 ecotropic viral integration site 5 protein-coding 8.645 0.6633
+7802 DNALI1 dynein axonemal light intermediate chain 1 protein-coding 7.518 2.494
+7803 PTP4A1 protein tyrosine phosphatase type IVA, member 1 protein-coding 11.66 0.9749
+7804 LRP8 LDL receptor related protein 8 protein-coding 7.353 1.779
+7805 LAPTM5 lysosomal protein transmembrane 5 protein-coding 11.4 1.418
+780776 TVP23A trans-golgi network vesicle protein 23 homolog A protein-coding 4.456 1.492
+7812 CSDE1 cold shock domain containing E1 protein-coding 13.31 0.545
+7813 EVI5 ecotropic viral integration site 5 protein-coding 8.646 0.6633
7818 DAP3 death associated protein 3 protein-coding 10.97 0.573
-782 CACNB1 calcium voltage-gated channel auxiliary subunit beta 1 protein-coding 7.248 1.467
-783 CACNB2 calcium voltage-gated channel auxiliary subunit beta 2 protein-coding 5.3 1.903
-7832 BTG2 BTG anti-proliferation factor 2 protein-coding 11.32 1.326
-7837 PXDN peroxidasin protein-coding 10.53 1.629
+782 CACNB1 calcium voltage-gated channel auxiliary subunit beta 1 protein-coding 7.249 1.466
+783 CACNB2 calcium voltage-gated channel auxiliary subunit beta 2 protein-coding 5.302 1.903
+7832 BTG2 BTG anti-proliferation factor 2 protein-coding 11.32 1.327
+7837 PXDN peroxidasin protein-coding 10.53 1.628
784 CACNB3 calcium voltage-gated channel auxiliary subunit beta 3 protein-coding 8.792 1.222
-7840 ALMS1 ALMS1, centrosome and basal body associated protein protein-coding 9.069 0.7114
-7841 MOGS mannosyl-oligosaccharide glucosidase protein-coding 10.62 0.5804
-7844 RNF103 ring finger protein 103 protein-coding 9.998 0.7453
+7840 ALMS1 ALMS1, centrosome and basal body associated protein protein-coding 9.07 0.7112
+7841 MOGS mannosyl-oligosaccharide glucosidase protein-coding 10.62 0.5803
+7844 RNF103 ring finger protein 103 protein-coding 9.999 0.7454
7846 TUBA1A tubulin alpha 1a protein-coding 11.9 1.488
-7849 PAX8 paired box 8 protein-coding 7.08 3.351
-785 CACNB4 calcium voltage-gated channel auxiliary subunit beta 4 protein-coding 4.975 2.036
+7849 PAX8 paired box 8 protein-coding 7.079 3.351
+785 CACNB4 calcium voltage-gated channel auxiliary subunit beta 4 protein-coding 4.976 2.035
7850 IL1R2 interleukin 1 receptor type 2 protein-coding 5.251 2.596
7851 MALL mal, T cell differentiation protein like protein-coding 9.511 2.417
-7852 CXCR4 C-X-C motif chemokine receptor 4 protein-coding 9.929 1.526
-7855 FZD5 frizzled class receptor 5 protein-coding 8.798 1.567
-7857 SCG2 secretogranin II protein-coding 5.784 3.174
-7862 BRPF1 bromodomain and PHD finger containing 1 protein-coding 9.077 0.5287
-7866 IFRD2 interferon related developmental regulator 2 protein-coding 9.96 0.754
-7867 MAPKAPK3 mitogen-activated protein kinase-activated protein kinase 3 protein-coding 10.1 0.8457
-7869 SEMA3B semaphorin 3B protein-coding 8.533 1.958
-7871 SLMAP sarcolemma associated protein protein-coding 9.907 0.787
-7873 MANF mesencephalic astrocyte derived neurotrophic factor protein-coding 10.41 0.8354
-7874 USP7 ubiquitin specific peptidase 7 protein-coding 11.41 0.4874
-7879 RAB7A RAB7A, member RAS oncogene family protein-coding 12.58 0.4586
-788 SLC25A20 solute carrier family 25 member 20 protein-coding 8.282 0.9808
-7881 KCNAB1 potassium voltage-gated channel subfamily A member regulatory beta subunit 1 protein-coding 5.793 1.778
-7884 SLBP stem-loop binding protein protein-coding 10.04 0.604
-78986 DUSP26 dual specificity phosphatase 26 protein-coding 3.514 2.849
-78987 CRELD1 cysteine rich with EGF like domains 1 protein-coding 9.429 0.9099
-78988 MRPL57 mitochondrial ribosomal protein L57 protein-coding 9.846 0.6625
-78989 COLEC11 collectin subfamily member 11 protein-coding 4.918 2.295
-78990 OTUB2 OTU deubiquitinase, ubiquitin aldehyde binding 2 protein-coding 6.362 1.136
-78991 PCYOX1L prenylcysteine oxidase 1 like protein-coding 8.069 0.9498
+7852 CXCR4 C-X-C motif chemokine receptor 4 protein-coding 9.93 1.527
+7855 FZD5 frizzled class receptor 5 protein-coding 8.8 1.567
+7857 SCG2 secretogranin II protein-coding 5.786 3.177
+7862 BRPF1 bromodomain and PHD finger containing 1 protein-coding 9.077 0.5286
+7866 IFRD2 interferon related developmental regulator 2 protein-coding 9.96 0.7538
+7867 MAPKAPK3 mitogen-activated protein kinase-activated protein kinase 3 protein-coding 10.1 0.8455
+7869 SEMA3B semaphorin 3B protein-coding 8.534 1.959
+7871 SLMAP sarcolemma associated protein protein-coding 9.907 0.7878
+7873 MANF mesencephalic astrocyte derived neurotrophic factor protein-coding 10.41 0.8355
+7874 USP7 ubiquitin specific peptidase 7 protein-coding 11.41 0.4873
+7879 RAB7A RAB7A, member RAS oncogene family protein-coding 12.58 0.4585
+788 SLC25A20 solute carrier family 25 member 20 protein-coding 8.283 0.9805
+7881 KCNAB1 potassium voltage-gated channel subfamily A member regulatory beta subunit 1 protein-coding 5.795 1.778
+7884 SLBP stem-loop binding protein protein-coding 10.04 0.6041
+78986 DUSP26 dual specificity phosphatase 26 protein-coding 3.517 2.85
+78987 CRELD1 cysteine rich with EGF like domains 1 protein-coding 9.43 0.9101
+78988 MRPL57 mitochondrial ribosomal protein L57 protein-coding 9.846 0.6623
+78989 COLEC11 collectin subfamily member 11 protein-coding 4.92 2.296
+78990 OTUB2 OTU deubiquitinase, ubiquitin aldehyde binding 2 protein-coding 6.361 1.136
+78991 PCYOX1L prenylcysteine oxidase 1 like protein-coding 8.07 0.9497
78992 YIPF2 Yip1 domain family member 2 protein-coding 10.12 0.6692
-78994 PRR14 proline rich 14 protein-coding 9.624 0.5319
-78995 C17orf53 chromosome 17 open reading frame 53 protein-coding 6.36 1.525
-78996 CYREN cell cycle regulator of NHEJ protein-coding 9.306 0.5931
-78997 GDAP1L1 ganglioside induced differentiation associated protein 1 like 1 protein-coding 2.195 2.754
-78998 RHPN1-AS1 RHPN1 antisense RNA 1 (head to head) ncRNA 4.877 1.371
-78999 LRFN4 leucine rich repeat and fibronectin type III domain containing 4 protein-coding 8.397 1.534
-790 CAD carbamoyl-phosphate synthetase 2, aspartate transcarbamylase, and dihydroorotase protein-coding 10.34 0.8412
-79000 AUNIP aurora kinase A and ninein interacting protein protein-coding 5.537 1.697
-79001 VKORC1 vitamin K epoxide reductase complex subunit 1 protein-coding 10.52 0.8151
-79002 TRIR telomerase RNA component interacting RNase protein-coding 10.96 0.6781
-79003 MIS12 MIS12, kinetochore complex component protein-coding 8.576 0.5543
-79004 CUEDC2 CUE domain containing 2 protein-coding 9.914 0.7014
-79005 SCNM1 sodium channel modifier 1 protein-coding 9.089 0.6867
-79006 METRN meteorin, glial cell differentiation regulator protein-coding 8.071 1.794
-79007 DBNDD1 dysbindin domain containing 1 protein-coding 8.789 1.597
-79008 SLX1B SLX1 homolog B, structure-specific endonuclease subunit protein-coding 9.069 0.9632
-79009 DDX50 DExD-box helicase 50 protein-coding 9.637 0.4727
+78994 PRR14 proline rich 14 protein-coding 9.624 0.5317
+78995 C17orf53 chromosome 17 open reading frame 53 protein-coding 6.358 1.526
+78996 CYREN cell cycle regulator of NHEJ protein-coding 9.306 0.5929
+78997 GDAP1L1 ganglioside induced differentiation associated protein 1 like 1 protein-coding 2.196 2.753
+78998 RHPN1-AS1 RHPN1 antisense RNA 1 (head to head) ncRNA 4.876 1.371
+78999 LRFN4 leucine rich repeat and fibronectin type III domain containing 4 protein-coding 8.396 1.533
+790 CAD carbamoyl-phosphate synthetase 2, aspartate transcarbamylase, and dihydroorotase protein-coding 10.34 0.8411
+79000 AUNIP aurora kinase A and ninein interacting protein protein-coding 5.535 1.698
+79001 VKORC1 vitamin K epoxide reductase complex subunit 1 protein-coding 10.51 0.8147
+79002 TRIR telomerase RNA component interacting RNase protein-coding 10.96 0.6779
+79003 MIS12 MIS12, kinetochore complex component protein-coding 8.576 0.554
+79004 CUEDC2 CUE domain containing 2 protein-coding 9.914 0.7011
+79005 SCNM1 sodium channel modifier 1 protein-coding 9.088 0.6867
+79006 METRN meteorin, glial cell differentiation regulator protein-coding 8.07 1.793
+79007 DBNDD1 dysbindin domain containing 1 protein-coding 8.788 1.597
+79008 SLX1B SLX1 homolog B, structure-specific endonuclease subunit protein-coding 9.069 0.9631
+79009 DDX50 DExD-box helicase 50 protein-coding 9.637 0.4725
79012 CAMKV CaM kinase like vesicle associated protein-coding 2.064 2.699
-79016 DDA1 DET1 and DDB1 associated 1 protein-coding 9.833 0.5123
-79017 GGCT gamma-glutamylcyclotransferase protein-coding 10.25 0.9325
-79018 GID4 GID complex subunit 4 homolog protein-coding 8.3 0.6011
-79019 CENPM centromere protein M protein-coding 7.147 1.604
-79020 C7orf25 chromosome 7 open reading frame 25 protein-coding 8.321 0.5029
-79022 TMEM106C transmembrane protein 106C protein-coding 10.49 0.8723
-79023 NUP37 nucleoporin 37 protein-coding 8.524 0.7676
-79025 FNDC11 fibronectin type III domain containing 11 protein-coding 2.676 1.587
+79016 DDA1 DET1 and DDB1 associated 1 protein-coding 9.833 0.5122
+79017 GGCT gamma-glutamylcyclotransferase protein-coding 10.25 0.9327
+79018 GID4 GID complex subunit 4 homolog protein-coding 8.301 0.601
+79019 CENPM centromere protein M protein-coding 7.145 1.605
+79020 C7orf25 chromosome 7 open reading frame 25 protein-coding 8.321 0.5028
+79022 TMEM106C transmembrane protein 106C protein-coding 10.49 0.8726
+79023 NUP37 nucleoporin 37 protein-coding 8.524 0.7675
+79025 FNDC11 fibronectin type III domain containing 11 protein-coding 2.676 1.586
79026 AHNAK AHNAK nucleoprotein protein-coding 13.91 1.256
-79027 ZNF655 zinc finger protein 655 protein-coding 9.927 0.9303
-79029 SPATA5L1 spermatogenesis associated 5 like 1 protein-coding 7.705 0.5603
+79027 ZNF655 zinc finger protein 655 protein-coding 9.927 0.9301
+79029 SPATA5L1 spermatogenesis associated 5 like 1 protein-coding 7.705 0.5602
7903 ST8SIA4 ST8 alpha-N-acetyl-neuraminide alpha-2,8-sialyltransferase 4 protein-coding 7.69 1.489
-79031 PDCL3 phosducin like 3 protein-coding 8.809 0.5729
-79033 ERI3 ERI1 exoribonuclease family member 3 protein-coding 10.05 0.5775
-79034 C7orf26 chromosome 7 open reading frame 26 protein-coding 9.256 0.498
-79035 NABP2 nucleic acid binding protein 2 protein-coding 9.638 0.5265
-79036 KXD1 KxDL motif containing 1 protein-coding 10.5 0.4394
-79037 PVRIG PVR related immunoglobulin domain containing protein-coding 5.92 1.275
-79038 ZFYVE21 zinc finger FYVE-type containing 21 protein-coding 9.827 0.637
-79039 DDX54 DEAD-box helicase 54 protein-coding 10.88 0.5858
+79031 PDCL3 phosducin like 3 protein-coding 8.808 0.5729
+79033 ERI3 ERI1 exoribonuclease family member 3 protein-coding 10.05 0.5776
+79034 C7orf26 chromosome 7 open reading frame 26 protein-coding 9.256 0.4978
+79035 NABP2 nucleic acid binding protein 2 protein-coding 9.637 0.5269
+79036 KXD1 KxDL motif containing 1 protein-coding 10.5 0.4393
+79037 PVRIG PVR related immunoglobulin domain containing protein-coding 5.921 1.276
+79038 ZFYVE21 zinc finger FYVE-type containing 21 protein-coding 9.827 0.6368
+79039 DDX54 DEAD-box helicase 54 protein-coding 10.88 0.5857
79041 TMEM38A transmembrane protein 38A protein-coding 6.011 1.626
-79042 TSEN34 tRNA splicing endonuclease subunit 34 protein-coding 10.08 0.5758
-79047 KCTD15 potassium channel tetramerization domain containing 15 protein-coding 9.008 1.502
-79048 SECISBP2 SECIS binding protein 2 protein-coding 9.818 0.5542
-7905 REEP5 receptor accessory protein 5 protein-coding 11.83 0.7542
-79050 NOC4L nucleolar complex associated 4 homolog protein-coding 8.87 0.7175
-79053 ALG8 ALG8, alpha-1,3-glucosyltransferase protein-coding 9.533 0.6783
+79042 TSEN34 tRNA splicing endonuclease subunit 34 protein-coding 10.08 0.5757
+79047 KCTD15 potassium channel tetramerization domain containing 15 protein-coding 9.008 1.501
+79048 SECISBP2 SECIS binding protein 2 protein-coding 9.818 0.554
+7905 REEP5 receptor accessory protein 5 protein-coding 11.83 0.7541
+79050 NOC4L nucleolar complex associated 4 homolog protein-coding 8.869 0.7174
+79053 ALG8 ALG8, alpha-1,3-glucosyltransferase protein-coding 9.533 0.6784
79056 PRRG4 proline rich and Gla domain 4 protein-coding 7.238 1.931
-79058 ASPSCR1 ASPSCR1, UBX domain containing tether for SLC2A4 protein-coding 9.22 0.8941
-79064 TMEM223 transmembrane protein 223 protein-coding 8.481 0.6751
-79065 ATG9A autophagy related 9A protein-coding 10.7 0.5106
-79066 METTL16 methyltransferase like 16 protein-coding 9.521 0.595
-79068 FTO FTO, alpha-ketoglutarate dependent dioxygenase protein-coding 9.884 0.8116
-79070 KDELC1 KDEL motif containing 1 protein-coding 7.087 1.146
+79058 ASPSCR1 ASPSCR1, UBX domain containing tether for SLC2A4 protein-coding 9.22 0.8938
+79064 TMEM223 transmembrane protein 223 protein-coding 8.48 0.6751
+79065 ATG9A autophagy related 9A protein-coding 10.7 0.5105
+79066 METTL16 methyltransferase like 16 protein-coding 9.522 0.5949
+79068 FTO FTO, alpha-ketoglutarate dependent dioxygenase protein-coding 9.884 0.8113
+79070 KDELC1 KDEL motif containing 1 protein-coding 7.086 1.145
79071 ELOVL6 ELOVL fatty acid elongase 6 protein-coding 8.151 1.295
-79072 FASTKD3 FAST kinase domains 3 protein-coding 7.459 0.5958
-79073 TMEM109 transmembrane protein 109 protein-coding 11.19 0.6722
-79074 C2orf49 chromosome 2 open reading frame 49 protein-coding 6.936 0.5575
-79075 DSCC1 DNA replication and sister chromatid cohesion 1 protein-coding 6.982 1.394
-79077 DCTPP1 dCTP pyrophosphatase 1 protein-coding 9.695 0.8083
-79078 C1orf50 chromosome 1 open reading frame 50 protein-coding 7.289 0.531
-79080 CCDC86 coiled-coil domain containing 86 protein-coding 9.514 0.7146
-79081 LBHD1 LBH domain containing 1 protein-coding 9.464 0.7103
-79084 WDR77 WD repeat domain 77 protein-coding 9.691 0.7131
+79072 FASTKD3 FAST kinase domains 3 protein-coding 7.458 0.5956
+79073 TMEM109 transmembrane protein 109 protein-coding 11.19 0.672
+79074 C2orf49 chromosome 2 open reading frame 49 protein-coding 6.936 0.5574
+79075 DSCC1 DNA replication and sister chromatid cohesion 1 protein-coding 6.981 1.394
+79077 DCTPP1 dCTP pyrophosphatase 1 protein-coding 9.694 0.8086
+79078 C1orf50 chromosome 1 open reading frame 50 protein-coding 7.289 0.5308
+79080 CCDC86 coiled-coil domain containing 86 protein-coding 9.514 0.715
+79081 LBHD1 LBH domain containing 1 protein-coding 9.463 0.7103
+79084 WDR77 WD repeat domain 77 protein-coding 9.69 0.7132
79085 SLC25A23 solute carrier family 25 member 23 protein-coding 10.78 1.089
79086 SMIM7 small integral membrane protein 7 protein-coding 10.33 0.5363
-79087 ALG12 ALG12, alpha-1,6-mannosyltransferase protein-coding 9.258 0.6785
-79088 ZNF426 zinc finger protein 426 protein-coding 6.436 1.182
-79089 TMUB2 transmembrane and ubiquitin like domain containing 2 protein-coding 9.832 0.4587
-79090 TRAPPC6A trafficking protein particle complex 6A protein-coding 8.637 1.016
-79091 METTL22 methyltransferase like 22 protein-coding 7.59 0.5462
-79092 CARD14 caspase recruitment domain family member 14 protein-coding 5.859 1.945
+79087 ALG12 ALG12, alpha-1,6-mannosyltransferase protein-coding 9.258 0.6783
+79088 ZNF426 zinc finger protein 426 protein-coding 6.437 1.182
+79089 TMUB2 transmembrane and ubiquitin like domain containing 2 protein-coding 9.833 0.4587
+79090 TRAPPC6A trafficking protein particle complex 6A protein-coding 8.636 1.016
+79091 METTL22 methyltransferase like 22 protein-coding 7.59 0.546
+79092 CARD14 caspase recruitment domain family member 14 protein-coding 5.859 1.944
79094 CHAC1 ChaC glutathione specific gamma-glutamylcyclotransferase 1 protein-coding 6.18 1.656
-79095 C9orf16 chromosome 9 open reading frame 16 protein-coding 9.907 0.9559
-790955 UQCC3 ubiquinol-cytochrome c reductase complex assembly factor 3 protein-coding 8.724 0.9291
-79096 C11orf49 chromosome 11 open reading frame 49 protein-coding 9.128 0.9138
-79098 C1orf116 chromosome 1 open reading frame 116 protein-coding 8.146 3.634
-79101 TAF1D TATA-box binding protein associated factor, RNA polymerase I subunit D protein-coding 9.29 0.7204
-79102 RNF26 ring finger protein 26 protein-coding 10.05 0.5397
-79109 MAPKAP1 mitogen-activated protein kinase associated protein 1 protein-coding 10.71 0.424
-7913 DEK DEK proto-oncogene protein-coding 11.36 0.8653
-79132 DHX58 DExH-box helicase 58 protein-coding 8.437 0.9612
-79133 NDUFAF5 NADH:ubiquinone oxidoreductase complex assembly factor 5 protein-coding 7.44 0.6368
-79134 TMEM185B transmembrane protein 185B protein-coding 8.846 0.7564
-79135 APOO apolipoprotein O protein-coding 8.238 0.7555
-79137 RETREG2 reticulophagy regulator family member 2 protein-coding 11.47 0.5734
-79139 DERL1 derlin 1 protein-coding 11.01 0.5556
-79140 CCDC28B coiled-coil domain containing 28B protein-coding 6.879 1.307
-79142 PHF23 PHD finger protein 23 protein-coding 9.722 0.5507
-79143 MBOAT7 membrane bound O-acyltransferase domain containing 7 protein-coding 10.68 0.798
+79095 C9orf16 chromosome 9 open reading frame 16 protein-coding 9.907 0.9556
+790955 UQCC3 ubiquinol-cytochrome c reductase complex assembly factor 3 protein-coding 8.723 0.9291
+79096 C11orf49 chromosome 11 open reading frame 49 protein-coding 9.128 0.9135
+79098 C1orf116 chromosome 1 open reading frame 116 protein-coding 8.147 3.635
+79101 TAF1D TATA-box binding protein associated factor, RNA polymerase I subunit D protein-coding 9.29 0.7202
+79102 RNF26 ring finger protein 26 protein-coding 10.05 0.5395
+79109 MAPKAP1 mitogen-activated protein kinase associated protein 1 protein-coding 10.71 0.4239
+7913 DEK DEK proto-oncogene protein-coding 11.36 0.865
+79132 DHX58 DExH-box helicase 58 protein-coding 8.437 0.9613
+79133 NDUFAF5 NADH:ubiquinone oxidoreductase complex assembly factor 5 protein-coding 7.439 0.6367
+79134 TMEM185B transmembrane protein 185B protein-coding 8.846 0.7561
+79135 APOO apolipoprotein O protein-coding 8.237 0.7557
+79137 RETREG2 reticulophagy regulator family member 2 protein-coding 11.47 0.5732
+79139 DERL1 derlin 1 protein-coding 11.01 0.5555
+79140 CCDC28B coiled-coil domain containing 28B protein-coding 6.879 1.306
+79142 PHF23 PHD finger protein 23 protein-coding 9.722 0.5508
+79143 MBOAT7 membrane bound O-acyltransferase domain containing 7 protein-coding 10.68 0.7977
79144 PPDPF pancreatic progenitor cell differentiation and proliferation factor protein-coding 12.04 1.036
-79145 CHCHD7 coiled-coil-helix-coiled-coil-helix domain containing 7 protein-coding 9.13 0.7225
-79147 FKRP fukutin related protein protein-coding 8.278 0.6106
-79148 MMP28 matrix metallopeptidase 28 protein-coding 6.826 2.237
-79149 ZSCAN5A zinc finger and SCAN domain containing 5A protein-coding 6.229 0.7297
+79145 CHCHD7 coiled-coil-helix-coiled-coil-helix domain containing 7 protein-coding 9.129 0.7222
+79147 FKRP fukutin related protein protein-coding 8.278 0.6109
+79148 MMP28 matrix metallopeptidase 28 protein-coding 6.827 2.237
+79149 ZSCAN5A zinc finger and SCAN domain containing 5A protein-coding 6.229 0.7294
7915 ALDH5A1 aldehyde dehydrogenase 5 family member A1 protein-coding 9.337 1.383
-79152 FA2H fatty acid 2-hydroxylase protein-coding 6.396 2.81
-79153 GDPD3 glycerophosphodiester phosphodiesterase domain containing 3 protein-coding 5.624 1.854
-79154 DHRS11 dehydrogenase/reductase 11 protein-coding 7.776 0.9966
-79155 TNIP2 TNFAIP3 interacting protein 2 protein-coding 9.56 0.5959
+79152 FA2H fatty acid 2-hydroxylase protein-coding 6.396 2.809
+79153 GDPD3 glycerophosphodiester phosphodiesterase domain containing 3 protein-coding 5.624 1.853
+79154 DHRS11 dehydrogenase/reductase 11 protein-coding 7.775 0.9965
+79155 TNIP2 TNFAIP3 interacting protein 2 protein-coding 9.56 0.5957
79156 PLEKHF1 pleckstrin homology and FYVE domain containing 1 protein-coding 7.582 1.423
-79157 MFSD11 major facilitator superfamily domain containing 11 protein-coding 8.926 0.5022
-79158 GNPTAB N-acetylglucosamine-1-phosphate transferase alpha and beta subunits protein-coding 10.22 0.7461
-79159 NOL12 nucleolar protein 12 protein-coding 8.403 0.6826
-7916 PRRC2A proline rich coiled-coil 2A protein-coding 12.67 0.5875
+79157 MFSD11 major facilitator superfamily domain containing 11 protein-coding 8.926 0.5019
+79158 GNPTAB N-acetylglucosamine-1-phosphate transferase alpha and beta subunits protein-coding 10.22 0.7467
+79159 NOL12 nucleolar protein 12 protein-coding 8.403 0.6825
+7916 PRRC2A proline rich coiled-coil 2A protein-coding 12.67 0.5873
79161 TMEM243 transmembrane protein 243 protein-coding 8.35 1.085
-79165 LENG1 leukocyte receptor cluster member 1 protein-coding 7.58 0.7098
-79166 LILRP2 leukocyte immunoglobulin-like receptor pseudogene 2 pseudo 0.8359 1.091
-79168 LILRA6 leukocyte immunoglobulin like receptor A6 protein-coding 5.233 1.769
-79169 C1orf35 chromosome 1 open reading frame 35 protein-coding 8.535 0.7267
-7917 BAG6 BCL2 associated athanogene 6 protein-coding 12.27 0.4605
-79170 PRR15L proline rich 15 like protein-coding 6.942 3.727
-79171 RBM42 RNA binding motif protein 42 protein-coding 10.67 0.7074
-79172 CENPO centromere protein O protein-coding 7.002 1.004
-79173 C19orf57 chromosome 19 open reading frame 57 protein-coding 5.6 1.494
+79165 LENG1 leukocyte receptor cluster member 1 protein-coding 7.581 0.7097
+79166 LILRP2 leukocyte immunoglobulin-like receptor pseudogene 2 pseudo 0.8357 1.091
+79168 LILRA6 leukocyte immunoglobulin like receptor A6 protein-coding 5.234 1.771
+79169 C1orf35 chromosome 1 open reading frame 35 protein-coding 8.535 0.7265
+7917 BAG6 BCL2 associated athanogene 6 protein-coding 12.27 0.4604
+79170 PRR15L proline rich 15 like protein-coding 6.943 3.728
+79171 RBM42 RNA binding motif protein 42 protein-coding 10.67 0.7072
+79172 CENPO centromere protein O protein-coding 7.001 1.004
+79173 C19orf57 chromosome 19 open reading frame 57 protein-coding 5.599 1.493
79174 CRELD2 cysteine rich with EGF like domains 2 protein-coding 9.644 0.8039
-79175 ZNF343 zinc finger protein 343 protein-coding 7.988 0.538
-79176 FBXL15 F-box and leucine rich repeat protein 15 protein-coding 8.053 0.9276
-79177 ZNF576 zinc finger protein 576 protein-coding 7.963 0.5265
-79178 THTPA thiamine triphosphatase protein-coding 8.377 0.8386
+79175 ZNF343 zinc finger protein 343 protein-coding 7.988 0.5378
+79176 FBXL15 F-box and leucine rich repeat protein 15 protein-coding 8.054 0.9274
+79177 ZNF576 zinc finger protein 576 protein-coding 7.963 0.5266
+79178 THTPA thiamine triphosphatase protein-coding 8.377 0.8383
7918 GPANK1 G-patch domain and ankyrin repeats 1 protein-coding 8.766 0.646
79180 EFHD2 EF-hand domain family member D2 protein-coding 11.09 1.086
-79183 TTPAL alpha tocopherol transfer protein like protein-coding 9.147 0.6523
-79184 BRCC3 BRCA1/BRCA2-containing complex subunit 3 protein-coding 8.926 0.7582
-79187 FSD1 fibronectin type III and SPRY domain containing 1 protein-coding 3.64 2.755
-79188 TMEM43 transmembrane protein 43 protein-coding 11.08 0.7013
-7919 DDX39B DExD-box helicase 39B protein-coding 12.35 0.492
-79191 IRX3 iroquois homeobox 3 protein-coding 7.385 2.697
-7920 ABHD16A abhydrolase domain containing 16A protein-coding 10.22 0.5455
+79183 TTPAL alpha tocopherol transfer protein like protein-coding 9.147 0.6521
+79184 BRCC3 BRCA1/BRCA2-containing complex subunit 3 protein-coding 8.925 0.7578
+79187 FSD1 fibronectin type III and SPRY domain containing 1 protein-coding 3.64 2.754
+79188 TMEM43 transmembrane protein 43 protein-coding 11.08 0.7011
+7919 DDX39B DExD-box helicase 39B protein-coding 12.35 0.4918
+79191 IRX3 iroquois homeobox 3 protein-coding 7.384 2.698
+7920 ABHD16A abhydrolase domain containing 16A protein-coding 10.23 0.5458
7922 SLC39A7 solute carrier family 39 member 7 protein-coding 11.92 0.7014
-79228 THOC6 THO complex 6 protein-coding 9.143 0.7649
-7923 HSD17B8 hydroxysteroid 17-beta dehydrogenase 8 protein-coding 8.065 1.08
-79230 ZNF557 zinc finger protein 557 protein-coding 7.334 0.5697
-79258 MMEL1 membrane metalloendopeptidase like 1 protein-coding 2.97 2.217
-79269 DCAF10 DDB1 and CUL4 associated factor 10 protein-coding 9.708 0.7032
+79228 THOC6 THO complex 6 protein-coding 9.143 0.7648
+7923 HSD17B8 hydroxysteroid 17-beta dehydrogenase 8 protein-coding 8.065 1.079
+79230 ZNF557 zinc finger protein 557 protein-coding 7.335 0.5696
+79258 MMEL1 membrane metalloendopeptidase like 1 protein-coding 2.971 2.217
+79269 DCAF10 DDB1 and CUL4 associated factor 10 protein-coding 9.708 0.703
79290 OR13A1 olfactory receptor family 13 subfamily A member 1 protein-coding 1.574 1.53
-793 CALB1 calbindin 1 protein-coding 2.583 2.997
-79315 OR7E91P olfactory receptor family 7 subfamily E member 91 pseudogene pseudo 2.084 2.058
-7936 NELFE negative elongation factor complex member E protein-coding 10.54 0.5852
-79363 CPLANE2 ciliogenesis and planar polarity effector 2 protein-coding 6.026 0.812
-79364 ZXDC ZXD family zinc finger C protein-coding 10.06 0.4544
-79365 BHLHE41 basic helix-loop-helix family member e41 protein-coding 9.189 2.036
-79366 HMGN5 high mobility group nucleosome binding domain 5 protein-coding 6.927 1.531
-79368 FCRL2 Fc receptor like 2 protein-coding 2.303 2.205
-79369 B3GNT4 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 4 protein-coding 3.822 2.008
-79370 BCL2L14 BCL2 like 14 protein-coding 3.942 2.596
-7940 LST1 leukocyte specific transcript 1 protein-coding 6.745 1.464
-79400 NOX5 NADPH oxidase 5 protein-coding 2.418 1.936
-7941 PLA2G7 phospholipase A2 group VII protein-coding 6.961 1.84
-79411 GLB1L galactosidase beta 1 like protein-coding 7.545 1.252
-79412 KREMEN2 kringle containing transmembrane protein 2 protein-coding 4.581 2.469
-79413 ZBED2 zinc finger BED-type containing 2 protein-coding 4.466 3.299
-79414 LRFN3 leucine rich repeat and fibronectin type III domain containing 3 protein-coding 8.048 0.794
+793 CALB1 calbindin 1 protein-coding 2.583 2.996
+79315 OR7E91P olfactory receptor family 7 subfamily E member 91 pseudogene pseudo 2.085 2.059
+7936 NELFE negative elongation factor complex member E protein-coding 10.54 0.5853
+79363 CPLANE2 ciliogenesis and planar polarity effector 2 protein-coding 6.027 0.812
+79364 ZXDC ZXD family zinc finger C protein-coding 10.06 0.4543
+79365 BHLHE41 basic helix-loop-helix family member e41 protein-coding 9.19 2.035
+79366 HMGN5 high mobility group nucleosome binding domain 5 protein-coding 6.927 1.53
+79368 FCRL2 Fc receptor like 2 protein-coding 2.305 2.206
+79369 B3GNT4 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 4 protein-coding 3.821 2.009
+79370 BCL2L14 BCL2 like 14 protein-coding 3.943 2.595
+7940 LST1 leukocyte specific transcript 1 protein-coding 6.746 1.465
+79400 NOX5 NADPH oxidase 5 protein-coding 2.417 1.935
+7941 PLA2G7 phospholipase A2 group VII protein-coding 6.962 1.841
+79411 GLB1L galactosidase beta 1 like protein-coding 7.546 1.251
+79412 KREMEN2 kringle containing transmembrane protein 2 protein-coding 4.58 2.469
+79413 ZBED2 zinc finger BED-type containing 2 protein-coding 4.467 3.3
+79414 LRFN3 leucine rich repeat and fibronectin type III domain containing 3 protein-coding 8.048 0.7939
79415 CYBC1 cytochrome b-245 chaperone 1 protein-coding 10.52 0.6356
-7942 TFEB transcription factor EB protein-coding 8.839 0.9706
-79441 HAUS3 HAUS augmin like complex subunit 3 protein-coding 8.336 0.5272
-79442 LRRC2 leucine rich repeat containing 2 protein-coding 4.481 2.434
-79443 FYCO1 FYVE and coiled-coil domain containing 1 protein-coding 9.884 0.9422
-79446 WDR25 WD repeat domain 25 protein-coding 7.738 0.6833
-79447 PAGR1 PAXIP1 associated glutamate rich protein 1 protein-coding 10.06 0.6081
-79465 ULBP3 UL16 binding protein 3 protein-coding 4.712 1.909
-79469 DLEU2L deleted in lymphocytic leukemia 2-like ncRNA 2.313 0.9367
-79541 OR2A4 olfactory receptor family 2 subfamily A member 4 protein-coding 4.072 1.788
-7955 RNF217-AS1 RNF217 antisense RNA 1 (head to head) ncRNA 2.191 1.365
-79567 RIPOR1 RHO family interacting cell polarization regulator 1 protein-coding 10.35 0.7694
-79568 MAIP1 matrix AAA peptidase interacting protein 1 protein-coding 8.348 0.5741
-7957 EPM2A EPM2A, laforin glucan phosphatase protein-coding 6.907 0.9217
-79570 NKAIN1 sodium/potassium transporting ATPase interacting 1 protein-coding 4.398 3.039
-79571 GCC1 GRIP and coiled-coil domain containing 1 protein-coding 9.293 0.5221
-79572 ATP13A3 ATPase 13A3 protein-coding 11.11 0.9103
-79573 TTC13 tetratricopeptide repeat domain 13 protein-coding 8.315 0.7336
+7942 TFEB transcription factor EB protein-coding 8.841 0.9707
+79441 HAUS3 HAUS augmin like complex subunit 3 protein-coding 8.336 0.527
+79442 LRRC2 leucine rich repeat containing 2 protein-coding 4.483 2.434
+79443 FYCO1 FYVE and coiled-coil domain containing 1 protein-coding 9.885 0.9428
+79446 WDR25 WD repeat domain 25 protein-coding 7.738 0.6831
+79447 PAGR1 PAXIP1 associated glutamate rich protein 1 protein-coding 10.06 0.608
+79465 ULBP3 UL16 binding protein 3 protein-coding 4.712 1.908
+79469 DLEU2L deleted in lymphocytic leukemia 2-like ncRNA 2.313 0.9371
+79541 OR2A4 olfactory receptor family 2 subfamily A member 4 protein-coding 4.073 1.787
+7955 RNF217-AS1 RNF217 antisense RNA 1 (head to head) ncRNA 2.192 1.365
+79567 RIPOR1 RHO family interacting cell polarization regulator 1 protein-coding 10.35 0.7693
+79568 MAIP1 matrix AAA peptidase interacting protein 1 protein-coding 8.347 0.5741
+7957 EPM2A EPM2A, laforin glucan phosphatase protein-coding 6.908 0.9219
+79570 NKAIN1 sodium/potassium transporting ATPase interacting 1 protein-coding 4.397 3.038
+79571 GCC1 GRIP and coiled-coil domain containing 1 protein-coding 9.293 0.5219
+79572 ATP13A3 ATPase 13A3 protein-coding 11.11 0.9101
+79573 TTC13 tetratricopeptide repeat domain 13 protein-coding 8.315 0.7338
79575 ABHD8 abhydrolase domain containing 8 protein-coding 8.288 1.076
-79576 NKAP NFKB activating protein protein-coding 8.592 0.4752
-79577 CDC73 cell division cycle 73 protein-coding 9.855 0.5942
-79581 SLC52A2 solute carrier family 52 member 2 protein-coding 10.35 0.9003
-79582 SPAG16 sperm associated antigen 16 protein-coding 8.062 1.324
+79576 NKAP NFKB activating protein protein-coding 8.591 0.4751
+79577 CDC73 cell division cycle 73 protein-coding 9.855 0.594
+79581 SLC52A2 solute carrier family 52 member 2 protein-coding 10.35 0.9004
+79582 SPAG16 sperm associated antigen 16 protein-coding 8.062 1.323
79583 TMEM231 transmembrane protein 231 protein-coding 7.677 1.35
79585 CORO7 coronin 7 protein-coding 9.649 0.807
-79586 CHPF chondroitin polymerizing factor protein-coding 11.55 0.981
-79587 CARS2 cysteinyl-tRNA synthetase 2, mitochondrial protein-coding 9.55 0.6869
-79590 MRPL24 mitochondrial ribosomal protein L24 protein-coding 10.32 0.7439
-79591 ARMH3 armadillo-like helical domain containing 3 protein-coding 9.324 0.3898
-79594 MUL1 mitochondrial E3 ubiquitin protein ligase 1 protein-coding 9.641 0.5151
-79595 SAP130 Sin3A associated protein 130 protein-coding 9.488 0.4823
-79596 RNF219 ring finger protein 219 protein-coding 8.318 0.6866
-79598 CEP97 centrosomal protein 97 protein-coding 6.791 1.12
-79600 TCTN1 tectonic family member 1 protein-coding 8.907 1.056
-79602 ADIPOR2 adiponectin receptor 2 protein-coding 11.09 0.7149
-79603 CERS4 ceramide synthase 4 protein-coding 9.348 1.877
+79586 CHPF chondroitin polymerizing factor protein-coding 11.55 0.9813
+79587 CARS2 cysteinyl-tRNA synthetase 2, mitochondrial protein-coding 9.55 0.6866
+79590 MRPL24 mitochondrial ribosomal protein L24 protein-coding 10.32 0.744
+79591 ARMH3 armadillo-like helical domain containing 3 protein-coding 9.325 0.3899
+79594 MUL1 mitochondrial E3 ubiquitin protein ligase 1 protein-coding 9.641 0.5149
+79595 SAP130 Sin3A associated protein 130 protein-coding 9.488 0.4821
+79596 RNF219 ring finger protein 219 protein-coding 8.318 0.6862
+79598 CEP97 centrosomal protein 97 protein-coding 6.791 1.119
+79600 TCTN1 tectonic family member 1 protein-coding 8.908 1.056
+79602 ADIPOR2 adiponectin receptor 2 protein-coding 11.09 0.7146
+79603 CERS4 ceramide synthase 4 protein-coding 9.348 1.876
79605 PGBD5 piggyBac transposable element derived 5 protein-coding 7.126 2.057
-79607 FAM118B family with sequence similarity 118 member B protein-coding 8.168 0.6937
-79608 RIC3 RIC3 acetylcholine receptor chaperone protein-coding 5.139 2.801
-79609 VCPKMT valosin containing protein lysine methyltransferase protein-coding 7.051 0.6708
-79611 ACSS3 acyl-CoA synthetase short chain family member 3 protein-coding 6.397 2.593
-79612 NAA16 N(alpha)-acetyltransferase 16, NatA auxiliary subunit protein-coding 7.965 0.6884
-79613 TANGO6 transport and golgi organization 6 homolog protein-coding 8.218 0.6711
-79616 CCNJL cyclin J like protein-coding 6.523 1.948
-79618 HMBOX1 homeobox containing 1 protein-coding 6.19 0.8975
-79621 RNASEH2B ribonuclease H2 subunit B protein-coding 8.745 0.739
-79622 SNRNP25 small nuclear ribonucleoprotein U11/U12 subunit 25 protein-coding 9.306 0.7422
-79623 GALNT14 polypeptide N-acetylgalactosaminyltransferase 14 protein-coding 6.652 3
-79624 ARMT1 acidic residue methyltransferase 1 protein-coding 9.19 0.97
-79625 NDNF neuron derived neurotrophic factor protein-coding 4.929 2.804
-79626 TNFAIP8L2 TNF alpha induced protein 8 like 2 protein-coding 6.05 1.414
+79607 FAM118B family with sequence similarity 118 member B protein-coding 8.168 0.6935
+79608 RIC3 RIC3 acetylcholine receptor chaperone protein-coding 5.142 2.801
+79609 VCPKMT valosin containing protein lysine methyltransferase protein-coding 7.051 0.6706
+79611 ACSS3 acyl-CoA synthetase short chain family member 3 protein-coding 6.398 2.592
+79612 NAA16 N(alpha)-acetyltransferase 16, NatA auxiliary subunit protein-coding 7.965 0.6882
+79613 TANGO6 transport and golgi organization 6 homolog protein-coding 8.218 0.6708
+79616 CCNJL cyclin J like protein-coding 6.522 1.948
+79618 HMBOX1 homeobox containing 1 protein-coding 6.191 0.8972
+79621 RNASEH2B ribonuclease H2 subunit B protein-coding 8.745 0.7388
+79622 SNRNP25 small nuclear ribonucleoprotein U11/U12 subunit 25 protein-coding 9.305 0.7424
+79623 GALNT14 polypeptide N-acetylgalactosaminyltransferase 14 protein-coding 6.651 2.999
+79624 ARMT1 acidic residue methyltransferase 1 protein-coding 9.19 0.9697
+79625 NDNF neuron derived neurotrophic factor protein-coding 4.931 2.805
+79626 TNFAIP8L2 TNF alpha induced protein 8 like 2 protein-coding 6.05 1.415
79627 OGFRL1 opioid growth factor receptor like 1 protein-coding 7.746 1.315
-79628 SH3TC2 SH3 domain and tetratricopeptide repeats 2 protein-coding 5.08 2.012
-79629 OCEL1 occludin/ELL domain containing 1 protein-coding 8.095 0.9839
+79628 SH3TC2 SH3 domain and tetratricopeptide repeats 2 protein-coding 5.079 2.012
+79629 OCEL1 occludin/ELL domain containing 1 protein-coding 8.095 0.9835
79630 C1orf54 chromosome 1 open reading frame 54 protein-coding 6.748 1.163
-79631 EFL1 elongation factor like GTPase 1 protein-coding 9.069 0.5505
-79632 FAM184A family with sequence similarity 184 member A protein-coding 5.446 2.145
-79633 FAT4 FAT atypical cadherin 4 protein-coding 7.282 1.774
-79634 SCRN3 secernin 3 protein-coding 8.198 0.6871
-79635 CCDC121 coiled-coil domain containing 121 protein-coding 6.322 0.8514
-79637 ARMC7 armadillo repeat containing 7 protein-coding 8.572 0.6116
-79639 TMEM53 transmembrane protein 53 protein-coding 7.991 0.808
-79640 C22orf46 chromosome 22 open reading frame 46 protein-coding 8.691 0.7279
-79641 ROGDI rogdi homolog protein-coding 9.203 0.914
+79631 EFL1 elongation factor like GTPase 1 protein-coding 9.068 0.5502
+79632 FAM184A family with sequence similarity 184 member A protein-coding 5.448 2.145
+79633 FAT4 FAT atypical cadherin 4 protein-coding 7.283 1.774
+79634 SCRN3 secernin 3 protein-coding 8.198 0.6868
+79635 CCDC121 coiled-coil domain containing 121 protein-coding 6.322 0.8513
+79637 ARMC7 armadillo repeat containing 7 protein-coding 8.572 0.6115
+79639 TMEM53 transmembrane protein 53 protein-coding 7.991 0.8078
+79640 C22orf46 chromosome 22 open reading frame 46 protein-coding 8.691 0.7278
+79641 ROGDI rogdi homolog protein-coding 9.203 0.9136
79642 ARSJ arylsulfatase family member J protein-coding 6.783 1.948
-79643 CHMP6 charged multivesicular body protein 6 protein-coding 9.108 0.6922
-79644 SRD5A3 steroid 5 alpha-reductase 3 protein-coding 9.002 1.073
+79643 CHMP6 charged multivesicular body protein 6 protein-coding 9.108 0.6918
+79644 SRD5A3 steroid 5 alpha-reductase 3 protein-coding 9.001 1.072
79645 EFCAB1 EF-hand calcium binding domain 1 protein-coding 3.291 2.395
-79646 PANK3 pantothenate kinase 3 protein-coding 8.749 0.9398
-79647 AKIRIN1 akirin 1 protein-coding 10.21 0.6302
-79648 MCPH1 microcephalin 1 protein-coding 8.539 0.5908
+79646 PANK3 pantothenate kinase 3 protein-coding 8.749 0.9394
+79647 AKIRIN1 akirin 1 protein-coding 10.21 0.63
+79648 MCPH1 microcephalin 1 protein-coding 8.539 0.5906
79649 MAP7D3 MAP7 domain containing 3 protein-coding 7.352 1.304
-7965 AIMP2 aminoacyl tRNA synthetase complex interacting multifunctional protein 2 protein-coding 9.117 0.6738
-79650 USB1 U6 snRNA biogenesis phosphodiesterase 1 protein-coding 10.01 0.6828
+7965 AIMP2 aminoacyl tRNA synthetase complex interacting multifunctional protein 2 protein-coding 9.117 0.674
+79650 USB1 U6 snRNA biogenesis phosphodiesterase 1 protein-coding 10.01 0.6826
79651 RHBDF2 rhomboid 5 homolog 2 protein-coding 9.427 1.115
-79652 TMEM204 transmembrane protein 204 protein-coding 7.885 1.261
-79654 HECTD3 HECT domain E3 ubiquitin protein ligase 3 protein-coding 10.18 0.5362
-79656 BEND5 BEN domain containing 5 protein-coding 5.558 2.152
-79657 RPAP3 RNA polymerase II associated protein 3 protein-coding 9.113 0.5831
-79658 ARHGAP10 Rho GTPase activating protein 10 protein-coding 8.049 1.167
-79659 DYNC2H1 dynein cytoplasmic 2 heavy chain 1 protein-coding 7.676 1.656
+79652 TMEM204 transmembrane protein 204 protein-coding 7.887 1.261
+79654 HECTD3 HECT domain E3 ubiquitin protein ligase 3 protein-coding 10.18 0.5361
+79656 BEND5 BEN domain containing 5 protein-coding 5.56 2.151
+79657 RPAP3 RNA polymerase II associated protein 3 protein-coding 9.113 0.5829
+79658 ARHGAP10 Rho GTPase activating protein 10 protein-coding 8.051 1.167
+79659 DYNC2H1 dynein cytoplasmic 2 heavy chain 1 protein-coding 7.678 1.656
79660 PPP1R3B protein phosphatase 1 regulatory subunit 3B protein-coding 9.806 1.29
79661 NEIL1 nei like DNA glycosylase 1 protein-coding 6.594 1.339
-79663 HSPBAP1 HSPB1 associated protein 1 protein-coding 7.501 0.6836
-79664 ICE2 interactor of little elongation complex ELL subunit 2 protein-coding 9.526 0.5444
-79665 DHX40 DEAH-box helicase 40 protein-coding 10.26 0.7085
-79666 PLEKHF2 pleckstrin homology and FYVE domain containing 2 protein-coding 9.095 0.9702
-79667 KLF3-AS1 KLF3 antisense RNA 1 ncRNA 4.603 1.55
-79668 PARP8 poly(ADP-ribose) polymerase family member 8 protein-coding 8.294 1.167
-79669 C3orf52 chromosome 3 open reading frame 52 protein-coding 6.691 2.371
-79670 ZCCHC6 zinc finger CCHC-type containing 6 protein-coding 9.404 0.8933
-79671 NLRX1 NLR family member X1 protein-coding 8.982 0.7977
-79672 FN3KRP fructosamine 3 kinase related protein protein-coding 9.826 0.5461
-79673 ZNF329 zinc finger protein 329 protein-coding 7.898 0.9782
-79674 VEPH1 ventricular zone expressed PH domain containing 1 protein-coding 4.517 2.555
-79675 FASTKD1 FAST kinase domains 1 protein-coding 8.395 0.6568
-79676 OGFOD2 2-oxoglutarate and iron dependent oxygenase domain containing 2 protein-coding 8.512 0.638
-79677 SMC6 structural maintenance of chromosomes 6 protein-coding 9.39 0.789
-79680 RTL10 retrotransposon Gag like 10 protein-coding 9.201 0.7734
-79682 CENPU centromere protein U protein-coding 8.257 1.432
-79683 ZDHHC14 zinc finger DHHC-type containing 14 protein-coding 7.59 1.129
-79684 MSANTD2 Myb/SANT DNA binding domain containing 2 protein-coding 7.494 0.8231
-79685 SAP30L SAP30 like protein-coding 9.653 0.5954
-79689 STEAP4 STEAP4 metalloreductase protein-coding 8.107 2.865
-79690 GAL3ST4 galactose-3-O-sulfotransferase 4 protein-coding 7.71 1.48
-79691 QTRT2 queuine tRNA-ribosyltransferase accessory subunit 2 protein-coding 8.907 0.672
-79692 ZNF322 zinc finger protein 322 protein-coding 9.382 0.7038
+79663 HSPBAP1 HSPB1 associated protein 1 protein-coding 7.502 0.6838
+79664 ICE2 interactor of little elongation complex ELL subunit 2 protein-coding 9.526 0.5442
+79665 DHX40 DEAH-box helicase 40 protein-coding 10.26 0.7081
+79666 PLEKHF2 pleckstrin homology and FYVE domain containing 2 protein-coding 9.095 0.97
+79667 KLF3-AS1 KLF3 antisense RNA 1 ncRNA 4.605 1.551
+79668 PARP8 poly(ADP-ribose) polymerase family member 8 protein-coding 8.295 1.167
+79669 C3orf52 chromosome 3 open reading frame 52 protein-coding 6.691 2.37
+79670 ZCCHC6 zinc finger CCHC-type containing 6 protein-coding 9.405 0.8932
+79671 NLRX1 NLR family member X1 protein-coding 8.982 0.7974
+79672 FN3KRP fructosamine 3 kinase related protein protein-coding 9.826 0.546
+79673 ZNF329 zinc finger protein 329 protein-coding 7.899 0.9779
+79674 VEPH1 ventricular zone expressed PH domain containing 1 protein-coding 4.518 2.555
+79675 FASTKD1 FAST kinase domains 1 protein-coding 8.394 0.6569
+79676 OGFOD2 2-oxoglutarate and iron dependent oxygenase domain containing 2 protein-coding 8.512 0.6378
+79677 SMC6 structural maintenance of chromosomes 6 protein-coding 9.39 0.7888
+79680 RTL10 retrotransposon Gag like 10 protein-coding 9.201 0.7733
+79682 CENPU centromere protein U protein-coding 8.255 1.433
+79683 ZDHHC14 zinc finger DHHC-type containing 14 protein-coding 7.591 1.13
+79684 MSANTD2 Myb/SANT DNA binding domain containing 2 protein-coding 7.495 0.8232
+79685 SAP30L SAP30 like protein-coding 9.653 0.5953
+79689 STEAP4 STEAP4 metalloreductase protein-coding 8.11 2.865
+79690 GAL3ST4 galactose-3-O-sulfotransferase 4 protein-coding 7.71 1.479
+79691 QTRT2 queuine tRNA-ribosyltransferase accessory subunit 2 protein-coding 8.907 0.6717
+79692 ZNF322 zinc finger protein 322 protein-coding 9.382 0.7036
79693 YRDC yrdC N6-threonylcarbamoyltransferase domain containing protein-coding 8.62 0.6166
-79694 MANEA mannosidase endo-alpha protein-coding 8.466 0.9256
-79695 GALNT12 polypeptide N-acetylgalactosaminyltransferase 12 protein-coding 7.744 2.217
-79696 ZC2HC1C zinc finger C2HC-type containing 1C protein-coding 5.863 1.225
-79697 RIOX1 ribosomal oxygenase 1 protein-coding 8.039 0.8334
-79699 ZYG11B zyg-11 family member B, cell cycle regulator protein-coding 9.693 0.6319
-79701 OGFOD3 2-oxoglutarate and iron dependent oxygenase domain containing 3 protein-coding 8.668 0.6855
+79694 MANEA mannosidase endo-alpha protein-coding 8.467 0.9252
+79695 GALNT12 polypeptide N-acetylgalactosaminyltransferase 12 protein-coding 7.745 2.216
+79696 ZC2HC1C zinc finger C2HC-type containing 1C protein-coding 5.864 1.225
+79697 RIOX1 ribosomal oxygenase 1 protein-coding 8.039 0.8332
+79699 ZYG11B zyg-11 family member B, cell cycle regulator protein-coding 9.693 0.6318
+79701 OGFOD3 2-oxoglutarate and iron dependent oxygenase domain containing 3 protein-coding 8.668 0.6853
79703 C11orf80 chromosome 11 open reading frame 80 protein-coding 7.998 1.091
-79705 LRRK1 leucine rich repeat kinase 1 protein-coding 8.237 1.366
-79706 PRKRIP1 PRKR interacting protein 1 protein-coding 9.362 0.6411
-79707 NOL9 nucleolar protein 9 protein-coding 7.484 0.7423
-79709 COLGALT1 collagen beta(1-O)galactosyltransferase 1 protein-coding 11.21 0.914
-79710 MORC4 MORC family CW-type zinc finger 4 protein-coding 9.138 0.9085
-79711 IPO4 importin 4 protein-coding 10.08 0.7805
-79712 GTDC1 glycosyltransferase like domain containing 1 protein-coding 8.253 0.6685
-79713 IGFLR1 IGF like family receptor 1 protein-coding 7.416 1.075
-79714 CCDC51 coiled-coil domain containing 51 protein-coding 8.41 0.6967
-79716 NPEPL1 aminopeptidase like 1 protein-coding 9.626 0.8207
-79717 PPCS phosphopantothenoylcysteine synthetase protein-coding 9.901 0.7794
-79718 TBL1XR1 transducin beta like 1 X-linked receptor 1 protein-coding 11.58 0.7036
-79719 AAGAB alpha and gamma adaptin binding protein protein-coding 10.07 0.5811
-79720 VPS37B VPS37B, ESCRT-I subunit protein-coding 10.09 0.8669
-79722 ANKRD55 ankyrin repeat domain 55 protein-coding 1.857 1.486
+79705 LRRK1 leucine rich repeat kinase 1 protein-coding 8.238 1.365
+79706 PRKRIP1 PRKR interacting protein 1 protein-coding 9.362 0.641
+79707 NOL9 nucleolar protein 9 protein-coding 7.484 0.7422
+79709 COLGALT1 collagen beta(1-O)galactosyltransferase 1 protein-coding 11.21 0.9142
+79710 MORC4 MORC family CW-type zinc finger 4 protein-coding 9.138 0.9083
+79711 IPO4 importin 4 protein-coding 10.07 0.7804
+79712 GTDC1 glycosyltransferase like domain containing 1 protein-coding 8.253 0.6683
+79713 IGFLR1 IGF like family receptor 1 protein-coding 7.416 1.076
+79714 CCDC51 coiled-coil domain containing 51 protein-coding 8.409 0.6967
+79716 NPEPL1 aminopeptidase like 1 protein-coding 9.626 0.8205
+79717 PPCS phosphopantothenoylcysteine synthetase protein-coding 9.901 0.7791
+79718 TBL1XR1 transducin beta like 1 X-linked receptor 1 protein-coding 11.58 0.7034
+79719 AAGAB alpha and gamma adaptin binding protein protein-coding 10.07 0.581
+79720 VPS37B VPS37B, ESCRT-I subunit protein-coding 10.09 0.8668
+79722 ANKRD55 ankyrin repeat domain 55 protein-coding 1.858 1.487
79723 SUV39H2 suppressor of variegation 3-9 homolog 2 protein-coding 7.579 0.8512
-79724 ZNF768 zinc finger protein 768 protein-coding 10.16 0.6525
-79725 THAP9 THAP domain containing 9 protein-coding 6.851 0.6669
-79726 WDR59 WD repeat domain 59 protein-coding 9.605 0.5395
+79724 ZNF768 zinc finger protein 768 protein-coding 10.16 0.6524
+79725 THAP9 THAP domain containing 9 protein-coding 6.851 0.6667
+79726 WDR59 WD repeat domain 59 protein-coding 9.605 0.5393
79728 PALB2 partner and localizer of BRCA2 protein-coding 8.34 0.6625
79729 SH3D21 SH3 domain containing 21 protein-coding 6.957 1.463
-79730 NSUN7 NOP2/Sun RNA methyltransferase family member 7 protein-coding 6.054 2.245
-79731 NARS2 asparaginyl-tRNA synthetase 2, mitochondrial protein-coding 8.616 0.6652
-79733 E2F8 E2F transcription factor 8 protein-coding 6.067 2.206
-79734 KCTD17 potassium channel tetramerization domain containing 17 protein-coding 7.837 1.232
-79735 TBC1D17 TBC1 domain family member 17 protein-coding 9.856 0.6707
+79730 NSUN7 NOP2/Sun RNA methyltransferase family member 7 protein-coding 6.055 2.245
+79731 NARS2 asparaginyl-tRNA synthetase 2, mitochondrial protein-coding 8.616 0.6651
+79733 E2F8 E2F transcription factor 8 protein-coding 6.065 2.207
+79734 KCTD17 potassium channel tetramerization domain containing 17 protein-coding 7.838 1.232
+79735 TBC1D17 TBC1 domain family member 17 protein-coding 9.856 0.6708
79736 TEFM transcription elongation factor, mitochondrial protein-coding 7.438 0.5716
-79738 BBS10 Bardet-Biedl syndrome 10 protein-coding 8.299 0.8072
-79739 TTLL7 tubulin tyrosine ligase like 7 protein-coding 5.564 2.161
-79741 CCDC7 coiled-coil domain containing 7 protein-coding 2.483 1.217
-79742 CXorf36 chromosome X open reading frame 36 protein-coding 7.966 1.267
-79744 ZNF419 zinc finger protein 419 protein-coding 7.292 0.9003
-79745 CLIP4 CAP-Gly domain containing linker protein family member 4 protein-coding 8.582 1.656
-79746 ECHDC3 enoyl-CoA hydratase domain containing 3 protein-coding 6.986 2.391
-79747 ADGB androglobin protein-coding 0.7435 1.328
-7975 MAFK MAF bZIP transcription factor K protein-coding 9.85 0.9277
-79750 ZNF385D zinc finger protein 385D protein-coding 3.168 1.972
-79751 SLC25A22 solute carrier family 25 member 22 protein-coding 9.435 0.832
-79752 ZFAND1 zinc finger AN1-type containing 1 protein-coding 9.107 0.7067
-79753 SNIP1 Smad nuclear interacting protein 1 protein-coding 8.148 0.5114
-79754 ASB13 ankyrin repeat and SOCS box containing 13 protein-coding 9.211 0.9796
+79738 BBS10 Bardet-Biedl syndrome 10 protein-coding 8.3 0.8068
+79739 TTLL7 tubulin tyrosine ligase like 7 protein-coding 5.566 2.161
+79741 CCDC7 coiled-coil domain containing 7 protein-coding 2.484 1.217
+79742 CXorf36 chromosome X open reading frame 36 protein-coding 7.967 1.266
+79744 ZNF419 zinc finger protein 419 protein-coding 7.293 0.9001
+79745 CLIP4 CAP-Gly domain containing linker protein family member 4 protein-coding 8.583 1.656
+79746 ECHDC3 enoyl-CoA hydratase domain containing 3 protein-coding 6.987 2.39
+79747 ADGB androglobin protein-coding 0.7439 1.327
+7975 MAFK MAF bZIP transcription factor K protein-coding 9.851 0.9274
+79750 ZNF385D zinc finger protein 385D protein-coding 3.169 1.972
+79751 SLC25A22 solute carrier family 25 member 22 protein-coding 9.434 0.8321
+79752 ZFAND1 zinc finger AN1-type containing 1 protein-coding 9.107 0.7065
+79753 SNIP1 Smad nuclear interacting protein 1 protein-coding 8.149 0.5112
+79754 ASB13 ankyrin repeat and SOCS box containing 13 protein-coding 9.21 0.9792
79755 ZNF750 zinc finger protein 750 protein-coding 5.297 3.64
-79758 DHRS12 dehydrogenase/reductase 12 protein-coding 7.625 0.908
-79759 ZNF668 zinc finger protein 668 protein-coding 8.242 0.6615
-7976 FZD3 frizzled class receptor 3 protein-coding 6.835 1.367
-79760 GEMIN7 gem nuclear organelle associated protein 7 protein-coding 8.272 0.6884
-79762 C1orf115 chromosome 1 open reading frame 115 protein-coding 9.143 1.745
-79763 ISOC2 isochorismatase domain containing 2 protein-coding 9.971 0.9044
-79767 ELMO3 engulfment and cell motility 3 protein-coding 8.601 2.108
-79768 KATNBL1 katanin regulatory subunit B1 like 1 protein-coding 8.464 0.604
+79758 DHRS12 dehydrogenase/reductase 12 protein-coding 7.625 0.9079
+79759 ZNF668 zinc finger protein 668 protein-coding 8.242 0.6613
+7976 FZD3 frizzled class receptor 3 protein-coding 6.835 1.366
+79760 GEMIN7 gem nuclear organelle associated protein 7 protein-coding 8.271 0.6884
+79762 C1orf115 chromosome 1 open reading frame 115 protein-coding 9.144 1.744
+79763 ISOC2 isochorismatase domain containing 2 protein-coding 9.971 0.9043
+79767 ELMO3 engulfment and cell motility 3 protein-coding 8.602 2.108
+79768 KATNBL1 katanin regulatory subunit B1 like 1 protein-coding 8.463 0.6037
79770 TXNDC15 thioredoxin domain containing 15 protein-coding 10.09 0.7204
-79772 MCTP1 multiple C2 and transmembrane domain containing 1 protein-coding 5.896 1.697
-79774 GRTP1 growth hormone regulated TBC protein 1 protein-coding 7.481 1.725
-79776 ZFHX4 zinc finger homeobox 4 protein-coding 6.294 2.472
-79777 ACBD4 acyl-CoA binding domain containing 4 protein-coding 7.978 1.217
+79772 MCTP1 multiple C2 and transmembrane domain containing 1 protein-coding 5.897 1.697
+79774 GRTP1 growth hormone regulated TBC protein 1 protein-coding 7.48 1.725
+79776 ZFHX4 zinc finger homeobox 4 protein-coding 6.295 2.471
+79777 ACBD4 acyl-CoA binding domain containing 4 protein-coding 7.979 1.216
79778 MICALL2 MICAL like 2 protein-coding 9.098 1.043
-7978 MTERF1 mitochondrial transcription termination factor 1 protein-coding 7.529 0.7813
-79780 CCDC82 coiled-coil domain containing 82 protein-coding 8.594 0.8675
-79781 IQCA1 IQ motif containing with AAA domain 1 protein-coding 5.468 2.628
+7978 MTERF1 mitochondrial transcription termination factor 1 protein-coding 7.529 0.7811
+79780 CCDC82 coiled-coil domain containing 82 protein-coding 8.594 0.8673
+79781 IQCA1 IQ motif containing with AAA domain 1 protein-coding 5.469 2.628
79782 LRRC31 leucine rich repeat containing 31 protein-coding 2.738 2.958
-79783 SUGCT succinyl-CoA:glutarate-CoA transferase protein-coding 5.62 1.778
-79784 MYH14 myosin heavy chain 14 protein-coding 10.91 2.738
-79786 KLHL36 kelch like family member 36 protein-coding 8.103 0.6853
-79788 ZNF665 zinc finger protein 665 protein-coding 4.219 1.54
-79789 CLMN calmin protein-coding 9.029 1.427
-7979 SEM1 SEM1, 26S proteasome complex subunit protein-coding 11 0.8461
-79791 FBXO31 F-box protein 31 protein-coding 9.484 0.6874
+79783 SUGCT succinyl-CoA:glutarate-CoA transferase protein-coding 5.619 1.778
+79784 MYH14 myosin heavy chain 14 protein-coding 10.91 2.739
+79786 KLHL36 kelch like family member 36 protein-coding 8.104 0.6853
+79788 ZNF665 zinc finger protein 665 protein-coding 4.221 1.54
+79789 CLMN calmin protein-coding 9.03 1.427
+7979 SEM1 SEM1, 26S proteasome complex subunit protein-coding 11 0.8463
+79791 FBXO31 F-box protein 31 protein-coding 9.484 0.6872
79792 GSDMD gasdermin D protein-coding 10.32 1.216
-79794 C12orf49 chromosome 12 open reading frame 49 protein-coding 9.131 0.9578
-79796 ALG9 ALG9, alpha-1,2-mannosyltransferase protein-coding 9.003 0.4883
-79797 ZNF408 zinc finger protein 408 protein-coding 8.349 0.576
-79798 ARMC5 armadillo repeat containing 5 protein-coding 8.664 0.7361
-79800 CARF calcium responsive transcription factor protein-coding 6.853 1.012
-79801 SHCBP1 SHC binding and spindle associated 1 protein-coding 7.183 1.758
-79802 HHIPL2 HHIP like 2 protein-coding 2.511 2.229
-79803 HPS6 HPS6, biogenesis of lysosomal organelles complex 2 subunit 3 protein-coding 8.907 0.5128
-79805 VASH2 vasohibin 2 protein-coding 5.63 1.804
-79807 GSTCD glutathione S-transferase C-terminal domain containing protein-coding 7.746 0.836
-79809 TTC21B tetratricopeptide repeat domain 21B protein-coding 8.337 0.71
-79810 PTCD2 pentatricopeptide repeat domain 2 protein-coding 6.888 0.6035
-79811 SLTM SAFB like transcription modulator protein-coding 10.77 0.4832
-79812 MMRN2 multimerin 2 protein-coding 8.894 1.265
-79813 EHMT1 euchromatic histone lysine methyltransferase 1 protein-coding 10.23 0.5447
-79814 AGMAT agmatinase protein-coding 6.053 2.153
-79815 NIPAL2 NIPA like domain containing 2 protein-coding 6.857 1.66
-79816 TLE6 transducin like enhancer of split 6 protein-coding 4.579 1.953
-79817 MOB3B MOB kinase activator 3B protein-coding 8.327 1.484
-79818 ZNF552 zinc finger protein 552 protein-coding 7.415 1.409
+79794 C12orf49 chromosome 12 open reading frame 49 protein-coding 9.131 0.9577
+79796 ALG9 ALG9, alpha-1,2-mannosyltransferase protein-coding 9.003 0.4882
+79797 ZNF408 zinc finger protein 408 protein-coding 8.349 0.5759
+79798 ARMC5 armadillo repeat containing 5 protein-coding 8.664 0.7358
+79800 CARF calcium responsive transcription factor protein-coding 6.854 1.013
+79801 SHCBP1 SHC binding and spindle associated 1 protein-coding 7.181 1.759
+79802 HHIPL2 HHIP like 2 protein-coding 2.512 2.229
+79803 HPS6 HPS6, biogenesis of lysosomal organelles complex 2 subunit 3 protein-coding 8.907 0.5126
+79805 VASH2 vasohibin 2 protein-coding 5.63 1.803
+79807 GSTCD glutathione S-transferase C-terminal domain containing protein-coding 7.746 0.8357
+79809 TTC21B tetratricopeptide repeat domain 21B protein-coding 8.337 0.7099
+79810 PTCD2 pentatricopeptide repeat domain 2 protein-coding 6.888 0.6033
+79811 SLTM SAFB like transcription modulator protein-coding 10.77 0.483
+79812 MMRN2 multimerin 2 protein-coding 8.894 1.264
+79813 EHMT1 euchromatic histone lysine methyltransferase 1 protein-coding 10.23 0.5445
+79814 AGMAT agmatinase protein-coding 6.052 2.152
+79815 NIPAL2 NIPA like domain containing 2 protein-coding 6.858 1.659
+79816 TLE6 transducin like enhancer of split 6 protein-coding 4.58 1.952
+79817 MOB3B MOB kinase activator 3B protein-coding 8.327 1.483
+79818 ZNF552 zinc finger protein 552 protein-coding 7.416 1.409
79819 WDR78 WD repeat domain 78 protein-coding 5.744 1.678
-7982 ST7 suppression of tumorigenicity 7 protein-coding 9.286 0.5921
+7982 ST7 suppression of tumorigenicity 7 protein-coding 9.286 0.5919
79820 CATSPERB cation channel sperm associated auxiliary subunit beta protein-coding 2.804 2.229
-79822 ARHGAP28 Rho GTPase activating protein 28 protein-coding 6.367 1.928
-79823 CAMKMT calmodulin-lysine N-methyltransferase protein-coding 6.635 0.7987
-79825 EFCC1 EF-hand and coiled-coil domain containing 1 protein-coding 5.094 1.602
-79827 CLMP CXADR like membrane protein protein-coding 5.255 2.484
+79822 ARHGAP28 Rho GTPase activating protein 28 protein-coding 6.368 1.927
+79823 CAMKMT calmodulin-lysine N-methyltransferase protein-coding 6.634 0.7986
+79825 EFCC1 EF-hand and coiled-coil domain containing 1 protein-coding 5.096 1.603
+79827 CLMP CXADR like membrane protein protein-coding 5.257 2.484
79828 METTL8 methyltransferase like 8 protein-coding 8.407 0.7567
-79829 NAA40 N(alpha)-acetyltransferase 40, NatD catalytic subunit protein-coding 8.966 0.6656
-79830 ZMYM1 zinc finger MYM-type containing 1 protein-coding 7.848 0.7712
-79831 KDM8 lysine demethylase 8 protein-coding 6.7 0.7978
-79832 QSER1 glutamine and serine rich 1 protein-coding 9.72 0.8658
-79833 GEMIN6 gem nuclear organelle associated protein 6 protein-coding 7.64 0.683
-79834 PEAK1 pseudopodium enriched atypical kinase 1 protein-coding 9.673 0.9937
-79836 LONRF3 LON peptidase N-terminal domain and ring finger 3 protein-coding 4.983 1.828
-79837 PIP4K2C phosphatidylinositol-5-phosphate 4-kinase type 2 gamma protein-coding 10.2 0.7297
-79838 TMC5 transmembrane channel like 5 protein-coding 6.634 3.889
-79839 CCDC102B coiled-coil domain containing 102B protein-coding 5.959 1.281
-7984 ARHGEF5 Rho guanine nucleotide exchange factor 5 protein-coding 8.445 2.06
-79840 NHEJ1 non-homologous end joining factor 1 protein-coding 7.926 0.704
+79829 NAA40 N(alpha)-acetyltransferase 40, NatD catalytic subunit protein-coding 8.967 0.6656
+79830 ZMYM1 zinc finger MYM-type containing 1 protein-coding 7.848 0.7709
+79831 KDM8 lysine demethylase 8 protein-coding 6.7 0.7977
+79832 QSER1 glutamine and serine rich 1 protein-coding 9.72 0.8656
+79833 GEMIN6 gem nuclear organelle associated protein 6 protein-coding 7.639 0.6832
+79834 PEAK1 pseudopodium enriched atypical kinase 1 protein-coding 9.674 0.9938
+79836 LONRF3 LON peptidase N-terminal domain and ring finger 3 protein-coding 4.984 1.828
+79837 PIP4K2C phosphatidylinositol-5-phosphate 4-kinase type 2 gamma protein-coding 10.2 0.7294
+79838 TMC5 transmembrane channel like 5 protein-coding 6.636 3.889
+79839 CCDC102B coiled-coil domain containing 102B protein-coding 5.959 1.282
+7984 ARHGEF5 Rho guanine nucleotide exchange factor 5 protein-coding 8.446 2.059
+79840 NHEJ1 non-homologous end joining factor 1 protein-coding 7.926 0.7037
79841 AGBL2 ATP/GTP binding protein like 2 protein-coding 3.9 1.544
79842 ZBTB3 zinc finger and BTB domain containing 3 protein-coding 6.597 0.6168
-79843 FAM124B family with sequence similarity 124 member B protein-coding 4.334 1.458
-79844 ZDHHC11 zinc finger DHHC-type containing 11 protein-coding 5.423 1.762
+79843 FAM124B family with sequence similarity 124 member B protein-coding 4.335 1.459
+79844 ZDHHC11 zinc finger DHHC-type containing 11 protein-coding 5.423 1.761
79845 RNF122 ring finger protein 122 protein-coding 7.415 1.015
-79846 CFAP69 cilia and flagella associated protein 69 protein-coding 5.888 1.568
-79847 MFSD13A major facilitator superfamily domain containing 13A protein-coding 7.268 1.002
+79846 CFAP69 cilia and flagella associated protein 69 protein-coding 5.89 1.569
+79847 MFSD13A major facilitator superfamily domain containing 13A protein-coding 7.268 1.001
79848 CSPP1 centrosome and spindle pole associated protein 1 protein-coding 8.092 0.8135
-79849 PDZD3 PDZ domain containing 3 protein-coding 2.104 2.62
-79850 FAM57A family with sequence similarity 57 member A protein-coding 8.857 1.151
-79852 EPHX3 epoxide hydrolase 3 protein-coding 4.836 2.703
-79853 TM4SF20 transmembrane 4 L six family member 20 protein-coding 1.367 2.504
-79854 LINC00115 long intergenic non-protein coding RNA 115 ncRNA 4.722 0.9347
+79849 PDZD3 PDZ domain containing 3 protein-coding 2.105 2.621
+79850 FAM57A family with sequence similarity 57 member A protein-coding 8.856 1.15
+79852 EPHX3 epoxide hydrolase 3 protein-coding 4.836 2.702
+79853 TM4SF20 transmembrane 4 L six family member 20 protein-coding 1.368 2.504
+79854 LINC00115 long intergenic non-protein coding RNA 115 ncRNA 4.722 0.9344
79856 SNX22 sorting nexin 22 protein-coding 8.135 1.577
-79857 FLJ13224 uncharacterized LOC79857 ncRNA 1.403 0.9006
-79858 NEK11 NIMA related kinase 11 protein-coding 7.105 1.381
-79861 TUBAL3 tubulin alpha like 3 protein-coding 2.24 2.068
-79862 ZNF669 zinc finger protein 669 protein-coding 6.46 0.8003
-79863 RBFA ribosome binding factor A protein-coding 8.444 0.6261
-79864 JHY junctional cadherin complex regulator protein-coding 5.844 1.708
-79865 TREML2 triggering receptor expressed on myeloid cells like 2 protein-coding 2.677 1.867
-79866 BORA bora, aurora kinase A activator protein-coding 7.212 1.188
-79867 TCTN2 tectonic family member 2 protein-coding 8.548 1.018
-79868 ALG13 ALG13, UDP-N-acetylglucosaminyltransferase subunit protein-coding 8.834 0.5576
-79869 CPSF7 cleavage and polyadenylation specific factor 7 protein-coding 10.91 0.4259
-79870 BAALC BAALC, MAP3K1 and KLF4 binding protein-coding 5.863 3.102
-79871 RPAP2 RNA polymerase II associated protein 2 protein-coding 7.762 0.6112
+79857 FLJ13224 uncharacterized LOC79857 ncRNA 1.403 0.9004
+79858 NEK11 NIMA related kinase 11 protein-coding 7.105 1.38
+79861 TUBAL3 tubulin alpha like 3 protein-coding 2.239 2.068
+79862 ZNF669 zinc finger protein 669 protein-coding 6.46 0.8
+79863 RBFA ribosome binding factor A protein-coding 8.444 0.6259
+79864 JHY junctional cadherin complex regulator protein-coding 5.846 1.708
+79865 TREML2 triggering receptor expressed on myeloid cells like 2 protein-coding 2.678 1.868
+79866 BORA bora, aurora kinase A activator protein-coding 7.211 1.188
+79867 TCTN2 tectonic family member 2 protein-coding 8.549 1.017
+79868 ALG13 ALG13, UDP-N-acetylglucosaminyltransferase subunit protein-coding 8.835 0.5575
+79869 CPSF7 cleavage and polyadenylation specific factor 7 protein-coding 10.91 0.4257
+79870 BAALC BAALC, MAP3K1 and KLF4 binding protein-coding 5.862 3.101
+79871 RPAP2 RNA polymerase II associated protein 2 protein-coding 7.762 0.6109
79872 CBLL1 Cbl proto-oncogene like 1 protein-coding 9.3 0.5511
-79873 NUDT18 nudix hydrolase 18 protein-coding 7.376 0.8917
-79874 RABEP2 rabaptin, RAB GTPase binding effector protein 2 protein-coding 9.149 0.9443
-79875 THSD4 thrombospondin type 1 domain containing 4 protein-coding 8.923 1.906
-79876 UBA5 ubiquitin like modifier activating enzyme 5 protein-coding 9.684 0.5357
+79873 NUDT18 nudix hydrolase 18 protein-coding 7.376 0.8914
+79874 RABEP2 rabaptin, RAB GTPase binding effector protein 2 protein-coding 9.149 0.9439
+79875 THSD4 thrombospondin type 1 domain containing 4 protein-coding 8.925 1.906
+79876 UBA5 ubiquitin like modifier activating enzyme 5 protein-coding 9.684 0.5355
79877 DCAKD dephospho-CoA kinase domain containing protein-coding 9.682 0.8326
-79879 CCDC134 coiled-coil domain containing 134 protein-coding 5.994 0.803
-7988 ZNF212 zinc finger protein 212 protein-coding 8.557 0.5252
-79882 ZC3H14 zinc finger CCCH-type containing 14 protein-coding 10.09 0.5018
-79883 PODNL1 podocan like 1 protein-coding 5.633 2.147
-79884 MAP9 microtubule associated protein 9 protein-coding 7.54 2.077
+79879 CCDC134 coiled-coil domain containing 134 protein-coding 5.994 0.8027
+7988 ZNF212 zinc finger protein 212 protein-coding 8.558 0.5252
+79882 ZC3H14 zinc finger CCCH-type containing 14 protein-coding 10.09 0.5017
+79883 PODNL1 podocan like 1 protein-coding 5.632 2.146
+79884 MAP9 microtubule associated protein 9 protein-coding 7.541 2.076
79885 HDAC11 histone deacetylase 11 protein-coding 9.142 1.004
-79886 CAAP1 caspase activity and apoptosis inhibitor 1 protein-coding 8.617 0.7707
-79887 PLBD1 phospholipase B domain containing 1 protein-coding 8.854 2.093
+79886 CAAP1 caspase activity and apoptosis inhibitor 1 protein-coding 8.617 0.7705
+79887 PLBD1 phospholipase B domain containing 1 protein-coding 8.854 2.092
79888 LPCAT1 lysophosphatidylcholine acyltransferase 1 protein-coding 10.89 1.268
79890 RIN3 Ras and Rab interactor 3 protein-coding 8.947 1.03
-79891 ZNF671 zinc finger protein 671 protein-coding 6.532 1.591
-79892 MCMBP minichromosome maintenance complex binding protein protein-coding 10.42 0.5734
-79893 GGNBP2 gametogenetin binding protein 2 protein-coding 10.33 0.3727
-79894 ZNF672 zinc finger protein 672 protein-coding 9.783 0.5634
-79895 ATP8B4 ATPase phospholipid transporting 8B4 (putative) protein-coding 5.785 1.402
-79896 THNSL1 threonine synthase like 1 protein-coding 7.798 0.8791
-79897 RPP21 ribonuclease P/MRP subunit p21 protein-coding 8.684 0.7851
+79891 ZNF671 zinc finger protein 671 protein-coding 6.533 1.591
+79892 MCMBP minichromosome maintenance complex binding protein protein-coding 10.42 0.5733
+79893 GGNBP2 gametogenetin binding protein 2 protein-coding 10.33 0.3726
+79894 ZNF672 zinc finger protein 672 protein-coding 9.783 0.5632
+79895 ATP8B4 ATPase phospholipid transporting 8B4 (putative) protein-coding 5.786 1.402
+79896 THNSL1 threonine synthase like 1 protein-coding 7.798 0.879
+79897 RPP21 ribonuclease P/MRP subunit p21 protein-coding 8.684 0.7849
79898 ZNF613 zinc finger protein 613 protein-coding 6.816 1.076
79899 PRR5L proline rich 5 like protein-coding 7.486 1.488
-79901 CYBRD1 cytochrome b reductase 1 protein-coding 10.56 1.672
-79902 NUP85 nucleoporin 85 protein-coding 9.572 0.6474
-79903 NAA60 N(alpha)-acetyltransferase 60, NatF catalytic subunit protein-coding 10.57 0.5141
-79905 TMC7 transmembrane channel like 7 protein-coding 6.446 1.662
+79901 CYBRD1 cytochrome b reductase 1 protein-coding 10.56 1.673
+79902 NUP85 nucleoporin 85 protein-coding 9.571 0.6474
+79903 NAA60 N(alpha)-acetyltransferase 60, NatF catalytic subunit protein-coding 10.57 0.5139
+79905 TMC7 transmembrane channel like 7 protein-coding 6.447 1.662
79906 MORN1 MORN repeat containing 1 protein-coding 5.773 1.221
-79908 BTNL8 butyrophilin like 8 protein-coding 2.209 2.378
+79908 BTNL8 butyrophilin like 8 protein-coding 2.211 2.378
7991 TUSC3 tumor suppressor candidate 3 protein-coding 8.993 1.956
-79912 PYROXD1 pyridine nucleotide-disulphide oxidoreductase domain 1 protein-coding 8.521 0.7367
-79913 ACTR5 ARP5 actin related protein 5 homolog protein-coding 7.901 0.5979
-79915 ATAD5 ATPase family, AAA domain containing 5 protein-coding 6.418 1.451
-79917 MAGIX MAGI family member, X-linked protein-coding 6.409 1.48
-79918 SETD6 SET domain containing 6 protein-coding 8.174 0.6059
-79921 TCEAL4 transcription elongation factor A like 4 protein-coding 10.81 0.9039
-79922 MRM1 mitochondrial rRNA methyltransferase 1 protein-coding 7.271 0.813
-79923 NANOG Nanog homeobox protein-coding 1.057 1.626
-79924 ADM2 adrenomedullin 2 protein-coding 7.278 2.187
-79925 SPEF2 sperm flagellar 2 protein-coding 6.464 1.84
-79927 FAM110D family with sequence similarity 110 member D protein-coding 4.594 1.271
-79929 MAP6D1 MAP6 domain containing 1 protein-coding 6.06 1.469
-7993 UBXN8 UBX domain protein 8 protein-coding 7.54 0.8218
-79930 DOK3 docking protein 3 protein-coding 7.116 1.232
+79912 PYROXD1 pyridine nucleotide-disulphide oxidoreductase domain 1 protein-coding 8.521 0.7364
+79913 ACTR5 ARP5 actin related protein 5 homolog protein-coding 7.901 0.5977
+79915 ATAD5 ATPase family, AAA domain containing 5 protein-coding 6.417 1.45
+79917 MAGIX MAGI family member, X-linked protein-coding 6.41 1.48
+79918 SETD6 SET domain containing 6 protein-coding 8.174 0.6057
+79921 TCEAL4 transcription elongation factor A like 4 protein-coding 10.81 0.9038
+79922 MRM1 mitochondrial rRNA methyltransferase 1 protein-coding 7.271 0.8128
+79923 NANOG Nanog homeobox protein-coding 1.058 1.629
+79924 ADM2 adrenomedullin 2 protein-coding 7.278 2.186
+79925 SPEF2 sperm flagellar 2 protein-coding 6.465 1.839
+79927 FAM110D family with sequence similarity 110 member D protein-coding 4.595 1.272
+79929 MAP6D1 MAP6 domain containing 1 protein-coding 6.06 1.468
+7993 UBXN8 UBX domain protein 8 protein-coding 7.54 0.8216
+79930 DOK3 docking protein 3 protein-coding 7.116 1.234
79931 TNIP3 TNFAIP3 interacting protein 3 protein-coding 2.852 2.162
-79932 KIAA0319L KIAA0319 like protein-coding 10.91 0.673
-79933 SYNPO2L synaptopodin 2 like protein-coding 2.319 2.016
-79934 COQ8B coenzyme Q8B protein-coding 9.414 0.5987
-79935 CNTD2 cyclin N-terminal domain containing 2 protein-coding 4.017 2.197
-79937 CNTNAP3 contactin associated protein like 3 protein-coding 5.04 2.063
-79939 SLC35E1 solute carrier family 35 member E1 protein-coding 10.72 0.5723
-7994 KAT6A lysine acetyltransferase 6A protein-coding 10.25 0.7801
-79940 LINC00472 long intergenic non-protein coding RNA 472 ncRNA 3.443 1.99
-79943 ZNF696 zinc finger protein 696 protein-coding 7.878 0.6741
-79944 L2HGDH L-2-hydroxyglutarate dehydrogenase protein-coding 7.788 0.8039
-79946 C10orf95 chromosome 10 open reading frame 95 protein-coding 3.794 1.687
-79947 DHDDS dehydrodolichyl diphosphate synthase subunit protein-coding 9.494 0.4578
-79948 PLPPR3 phospholipid phosphatase related 3 protein-coding 2.351 2.733
-79949 PLEKHS1 pleckstrin homology domain containing S1 protein-coding 5.177 3.859
-79954 NOL10 nucleolar protein 10 protein-coding 9.478 0.5069
+79932 KIAA0319L KIAA0319 like protein-coding 10.91 0.6729
+79933 SYNPO2L synaptopodin 2 like protein-coding 2.319 2.015
+79934 COQ8B coenzyme Q8B protein-coding 9.414 0.5985
+79935 CNTD2 cyclin N-terminal domain containing 2 protein-coding 4.016 2.196
+79937 CNTNAP3 contactin associated protein like 3 protein-coding 5.042 2.063
+79939 SLC35E1 solute carrier family 35 member E1 protein-coding 10.72 0.5722
+7994 KAT6A lysine acetyltransferase 6A protein-coding 10.25 0.7798
+79940 LINC00472 long intergenic non-protein coding RNA 472 ncRNA 3.444 1.99
+79943 ZNF696 zinc finger protein 696 protein-coding 7.878 0.6739
+79944 L2HGDH L-2-hydroxyglutarate dehydrogenase protein-coding 7.788 0.8037
+79946 C10orf95 chromosome 10 open reading frame 95 protein-coding 3.795 1.686
+79947 DHDDS dehydrodolichyl diphosphate synthase subunit protein-coding 9.494 0.4576
+79948 PLPPR3 phospholipid phosphatase related 3 protein-coding 2.35 2.733
+79949 PLEKHS1 pleckstrin homology domain containing S1 protein-coding 5.178 3.86
+79954 NOL10 nucleolar protein 10 protein-coding 9.477 0.5069
79955 PDZD7 PDZ domain containing 7 protein-coding 3.549 1.559
79956 ERMP1 endoplasmic reticulum metallopeptidase 1 protein-coding 10.17 1.095
-79957 PAQR6 progestin and adipoQ receptor family member 6 protein-coding 6.229 2.157
-79958 DENND1C DENN domain containing 1C protein-coding 7.751 1.285
-79959 CEP76 centrosomal protein 76 protein-coding 7.096 0.7712
-79960 JADE1 jade family PHD finger 1 protein-coding 9.615 1.057
+79957 PAQR6 progestin and adipoQ receptor family member 6 protein-coding 6.229 2.156
+79958 DENND1C DENN domain containing 1C protein-coding 7.752 1.286
+79959 CEP76 centrosomal protein 76 protein-coding 7.096 0.7709
+79960 JADE1 jade family PHD finger 1 protein-coding 9.616 1.057
79961 DENND2D DENN domain containing 2D protein-coding 8.736 1.599
-79963 ABCA11P ATP binding cassette subfamily A member 11, pseudogene pseudo 6.425 0.8467
-79966 SCD5 stearoyl-CoA desaturase 5 protein-coding 8.987 2.437
-79968 WDR76 WD repeat domain 76 protein-coding 7.342 1.279
+79963 ABCA11P ATP binding cassette subfamily A member 11, pseudogene pseudo 6.425 0.8466
+79966 SCD5 stearoyl-CoA desaturase 5 protein-coding 8.988 2.436
+79968 WDR76 WD repeat domain 76 protein-coding 7.341 1.278
79969 ATAT1 alpha tubulin acetyltransferase 1 protein-coding 8.075 1.158
-79970 ZNF767P zinc finger family member 767, pseudogene pseudo 7.665 0.9438
+79970 ZNF767P zinc finger family member 767, pseudogene pseudo 7.666 0.9437
79971 WLS wntless Wnt ligand secretion mediator protein-coding 10.3 1.502
-79973 ZNF442 zinc finger protein 442 protein-coding 4.629 1.067
-79974 CPED1 cadherin like and PC-esterase domain containing 1 protein-coding 6.659 1.879
+79973 ZNF442 zinc finger protein 442 protein-coding 4.63 1.067
+79974 CPED1 cadherin like and PC-esterase domain containing 1 protein-coding 6.661 1.88
79977 GRHL2 grainyhead like transcription factor 2 protein-coding 7.623 4.287
-79979 TRMT2B tRNA methyltransferase 2 homolog B protein-coding 8.381 0.6793
+79979 TRMT2B tRNA methyltransferase 2 homolog B protein-coding 8.381 0.679
79980 DSN1 DSN1 homolog, MIS12 kinetochore complex component protein-coding 8.758 0.8749
-79982 DNAJB14 DnaJ heat shock protein family (Hsp40) member B14 protein-coding 8.008 0.7908
-79983 POF1B POF1B, actin binding protein protein-coding 5.813 3.826
-79986 ZNF702P zinc finger protein 702, pseudogene pseudo 5.987 1.988
-79987 SVEP1 sushi, von Willebrand factor type A, EGF and pentraxin domain containing 1 protein-coding 7.238 1.994
-79989 TTC26 tetratricopeptide repeat domain 26 protein-coding 6.522 1.038
-79990 PLEKHH3 pleckstrin homology, MyTH4 and FERM domain containing H3 protein-coding 9.229 0.8544
-79991 STN1 STN1, CST complex subunit protein-coding 8.999 0.6768
-79992 AGPAT4-IT1 AGPAT4 intronic transcript 1 ncRNA 1.986 1.33
-79993 ELOVL7 ELOVL fatty acid elongase 7 protein-coding 7.976 2.02
-79998 ANKRD53 ankyrin repeat domain 53 protein-coding 3.445 1.6
-800 CALD1 caldesmon 1 protein-coding 12.07 1.283
-8000 PSCA prostate stem cell antigen protein-coding 4.795 3.929
-80000 GREB1L GREB1 like retinoic acid receptor coactivator protein-coding 3.673 2.503
-80003 PCNX2 pecanex homolog 2 protein-coding 8.155 1.245
+79982 DNAJB14 DnaJ heat shock protein family (Hsp40) member B14 protein-coding 8.009 0.7906
+79983 POF1B POF1B, actin binding protein protein-coding 5.814 3.826
+79986 ZNF702P zinc finger protein 702, pseudogene pseudo 5.988 1.988
+79987 SVEP1 sushi, von Willebrand factor type A, EGF and pentraxin domain containing 1 protein-coding 7.24 1.994
+79989 TTC26 tetratricopeptide repeat domain 26 protein-coding 6.521 1.037
+79990 PLEKHH3 pleckstrin homology, MyTH4 and FERM domain containing H3 protein-coding 9.229 0.8543
+79991 STN1 STN1, CST complex subunit protein-coding 9 0.6768
+79992 AGPAT4-IT1 AGPAT4 intronic transcript 1 ncRNA 1.987 1.33
+79993 ELOVL7 ELOVL fatty acid elongase 7 protein-coding 7.977 2.02
+79998 ANKRD53 ankyrin repeat domain 53 protein-coding 3.446 1.6
+800 CALD1 caldesmon 1 protein-coding 12.07 1.284
+8000 PSCA prostate stem cell antigen protein-coding 4.796 3.93
+80000 GREB1L GREB1 like retinoic acid receptor coactivator protein-coding 3.674 2.502
+80003 PCNX2 pecanex homolog 2 protein-coding 8.156 1.244
80004 ESRP2 epithelial splicing regulatory protein 2 protein-coding 9.635 1.53
-80005 DOCK5 dedicator of cytokinesis 5 protein-coding 7.965 1.444
+80005 DOCK5 dedicator of cytokinesis 5 protein-coding 7.966 1.444
80006 TRAPPC13 trafficking protein particle complex 13 protein-coding 8.774 0.5516
-80007 C10orf88 chromosome 10 open reading frame 88 protein-coding 7.55 0.4739
-80008 TMEM156 transmembrane protein 156 protein-coding 4.208 1.883
-80010 RMI1 RecQ mediated genome instability 1 protein-coding 8.227 0.8645
-80011 FAM192A family with sequence similarity 192 member A protein-coding 10.41 0.5217
+80007 C10orf88 chromosome 10 open reading frame 88 protein-coding 7.55 0.4738
+80008 TMEM156 transmembrane protein 156 protein-coding 4.209 1.883
+80010 RMI1 RecQ mediated genome instability 1 protein-coding 8.227 0.8641
+80011 FAM192A family with sequence similarity 192 member A protein-coding 10.41 0.5215
80012 PHC3 polyhomeotic homolog 3 protein-coding 10.13 0.724
-80013 MINDY3 MINDY lysine 48 deubiquitinase 3 protein-coding 8.582 0.6777
-80014 WWC2 WW and C2 domain containing 2 protein-coding 8.63 1.28
-80017 DGLUCY D-glutamate cyclase protein-coding 9.564 0.9344
-80018 NAA25 N(alpha)-acetyltransferase 25, NatB auxiliary subunit protein-coding 9.101 0.6181
-80019 UBTD1 ubiquitin domain containing 1 protein-coding 8.384 0.98
-80020 FOXRED2 FAD dependent oxidoreductase domain containing 2 protein-coding 9.399 1.109
-80021 TMEM62 transmembrane protein 62 protein-coding 8.836 0.8714
-80022 MYO15B myosin XVB protein-coding 9.141 1.766
+80013 MINDY3 MINDY lysine 48 deubiquitinase 3 protein-coding 8.583 0.6776
+80014 WWC2 WW and C2 domain containing 2 protein-coding 8.63 1.281
+80017 DGLUCY D-glutamate cyclase protein-coding 9.565 0.9342
+80018 NAA25 N(alpha)-acetyltransferase 25, NatB auxiliary subunit protein-coding 9.101 0.6179
+80019 UBTD1 ubiquitin domain containing 1 protein-coding 8.384 0.9798
+80020 FOXRED2 FAD dependent oxidoreductase domain containing 2 protein-coding 9.398 1.109
+80021 TMEM62 transmembrane protein 62 protein-coding 8.836 0.871
+80022 MYO15B myosin XVB protein-coding 9.143 1.766
80023 NRSN2 neurensin 2 protein-coding 9.583 1.272
80024 SLC8B1 solute carrier family 8 member B1 protein-coding 9.469 0.7914
-80025 PANK2 pantothenate kinase 2 protein-coding 8.885 0.4909
-80028 FBXL18 F-box and leucine rich repeat protein 18 protein-coding 8.778 0.8559
-80031 SEMA6D semaphorin 6D protein-coding 6.744 2.053
-80035 ANP32A-IT1 ANP32A intronic transcript 1 ncRNA 1.881 1.105
+80025 PANK2 pantothenate kinase 2 protein-coding 8.885 0.4908
+80028 FBXL18 F-box and leucine rich repeat protein 18 protein-coding 8.778 0.8558
+80031 SEMA6D semaphorin 6D protein-coding 6.745 2.053
+80035 ANP32A-IT1 ANP32A intronic transcript 1 ncRNA 1.882 1.106
80039 FAM106A family with sequence similarity 106 member A protein-coding 1.509 1.345
-80045 GPR157 G protein-coupled receptor 157 protein-coding 4.535 1.786
+80045 GPR157 G protein-coupled receptor 157 protein-coding 4.536 1.785
80054 CEBPA-DT CEBPA divergent transcript ncRNA 5.631 1.679
-80055 PGAP1 post-GPI attachment to proteins 1 protein-coding 8.438 1.305
-80063 ATF7IP2 activating transcription factor 7 interacting protein 2 protein-coding 6.54 1.519
-80067 DCAF17 DDB1 and CUL4 associated factor 17 protein-coding 8.489 0.5926
-80069 LINC00574 long intergenic non-protein coding RNA 574 ncRNA 1.874 1.456
-80071 CCDC15 coiled-coil domain containing 15 protein-coding 5.613 0.9816
-80072 HEXA-AS1 HEXA antisense RNA 1 ncRNA 3.491 1.101
-80094 BIN3-IT1 BIN3 intronic transcript 1 ncRNA 0.8008 0.7354
-80095 ZNF606 zinc finger protein 606 protein-coding 7.765 1.222
-80097 MZT2B mitotic spindle organizing protein 2B protein-coding 10.72 0.8956
+80055 PGAP1 post-GPI attachment to proteins 1 protein-coding 8.439 1.305
+80063 ATF7IP2 activating transcription factor 7 interacting protein 2 protein-coding 6.541 1.519
+80067 DCAF17 DDB1 and CUL4 associated factor 17 protein-coding 8.489 0.5925
+80069 LINC00574 long intergenic non-protein coding RNA 574 ncRNA 1.874 1.455
+80071 CCDC15 coiled-coil domain containing 15 protein-coding 5.613 0.9815
+80072 HEXA-AS1 HEXA antisense RNA 1 ncRNA 3.492 1.101
+80094 BIN3-IT1 BIN3 intronic transcript 1 ncRNA 0.8009 0.7354
+80095 ZNF606 zinc finger protein 606 protein-coding 7.765 1.221
+80097 MZT2B mitotic spindle organizing protein 2B protein-coding 10.72 0.8954
801 CALM1 calmodulin 1 protein-coding 12.94 0.741
-80108 ZFP2 ZFP2 zinc finger protein protein-coding 4.816 1.53
+80108 ZFP2 ZFP2 zinc finger protein protein-coding 4.817 1.53
80110 ZNF614 zinc finger protein 614 protein-coding 7.737 1.18
-80114 BICC1 BicC family RNA binding protein 1 protein-coding 5.651 2.519
-80115 BAIAP2L2 BAI1 associated protein 2 like 2 protein-coding 6.067 2.624
-80119 PIF1 PIF1 5'-to-3' DNA helicase protein-coding 5.736 1.869
-80122 MAP3K19 mitogen-activated protein kinase kinase kinase 19 protein-coding 1.298 1.891
-80124 VCPIP1 valosin containing protein interacting protein 1 protein-coding 9.3 0.6179
+80114 BICC1 BicC family RNA binding protein 1 protein-coding 5.652 2.519
+80115 BAIAP2L2 BAI1 associated protein 2 like 2 protein-coding 6.066 2.624
+80119 PIF1 PIF1 5'-to-3' DNA helicase protein-coding 5.735 1.869
+80122 MAP3K19 mitogen-activated protein kinase kinase kinase 19 protein-coding 1.299 1.89
+80124 VCPIP1 valosin containing protein interacting protein 1 protein-coding 9.3 0.6177
80127 BBOF1 basal body orientation factor 1 protein-coding 6.836 1.162
80128 TRIM46 tripartite motif containing 46 protein-coding 5.355 1.797
-80129 CCDC170 coiled-coil domain containing 170 protein-coding 5.669 2.089
-8013 NR4A3 nuclear receptor subfamily 4 group A member 3 protein-coding 6.7 1.863
+80129 CCDC170 coiled-coil domain containing 170 protein-coding 5.67 2.089
+8013 NR4A3 nuclear receptor subfamily 4 group A member 3 protein-coding 6.702 1.863
80131 LRRC8E leucine rich repeat containing 8 VRAC subunit E protein-coding 7.359 2.27
-80135 RPF1 ribosome production factor 1 homolog protein-coding 9.289 0.5055
-80139 ZNF703 zinc finger protein 703 protein-coding 7.607 1.808
-80142 PTGES2 prostaglandin E synthase 2 protein-coding 10.03 0.7176
-80143 SIKE1 suppressor of IKBKE 1 protein-coding 9.422 0.5719
-80144 FRAS1 Fraser extracellular matrix complex subunit 1 protein-coding 7.565 2.418
-80145 THOC7 THO complex 7 protein-coding 9.669 0.5796
+80135 RPF1 ribosome production factor 1 homolog protein-coding 9.288 0.5053
+80139 ZNF703 zinc finger protein 703 protein-coding 7.607 1.807
+80142 PTGES2 prostaglandin E synthase 2 protein-coding 10.03 0.7175
+80143 SIKE1 suppressor of IKBKE 1 protein-coding 9.422 0.5717
+80144 FRAS1 Fraser extracellular matrix complex subunit 1 protein-coding 7.567 2.419
+80145 THOC7 THO complex 7 protein-coding 9.669 0.5795
80146 UXS1 UDP-glucuronate decarboxylase 1 protein-coding 9.874 0.6239
-80148 PQLC1 PQ loop repeat containing 1 protein-coding 10.02 0.7958
+80148 PQLC1 PQ loop repeat containing 1 protein-coding 10.02 0.7956
80149 ZC3H12A zinc finger CCCH-type containing 12A protein-coding 8.34 1.722
-80150 ASRGL1 asparaginase like 1 protein-coding 8.133 2.199
-80152 CENPT centromere protein T protein-coding 9.188 0.8073
-80153 EDC3 enhancer of mRNA decapping 3 protein-coding 9.617 0.4882
+80150 ASRGL1 asparaginase like 1 protein-coding 8.134 2.198
+80152 CENPT centromere protein T protein-coding 9.188 0.8071
+80153 EDC3 enhancer of mRNA decapping 3 protein-coding 9.617 0.488
80154 GOLGA2P10 golgin A2 pseudogene 10 pseudo 9.223 1.242
-80155 NAA15 N(alpha)-acetyltransferase 15, NatA auxiliary subunit protein-coding 9.92 0.6554
+80155 NAA15 N(alpha)-acetyltransferase 15, NatA auxiliary subunit protein-coding 9.92 0.6552
80161 ASMTL-AS1 ASMTL antisense RNA 1 ncRNA 5.896 1.559
80162 PGGHG protein-glucosylgalactosylhydroxylysine glucosidase protein-coding 9.331 1.843
-80167 ABHD18 abhydrolase domain containing 18 protein-coding 6.571 0.7838
-80169 CTC1 CST telomere replication complex component 1 protein-coding 8.916 0.7276
-80173 IFT74 intraflagellar transport 74 protein-coding 7.964 0.8944
-80174 DBF4B DBF4 zinc finger B protein-coding 7.34 0.8827
+80167 ABHD18 abhydrolase domain containing 18 protein-coding 6.571 0.7836
+80169 CTC1 CST telomere replication complex component 1 protein-coding 8.917 0.7277
+80173 IFT74 intraflagellar transport 74 protein-coding 7.964 0.8942
+80174 DBF4B DBF4 zinc finger B protein-coding 7.34 0.8826
80176 SPSB1 splA/ryanodine receptor domain and SOCS box containing 1 protein-coding 9.465 1.106
-80177 MYCT1 MYC target 1 protein-coding 6.759 1.335
-80178 TEDC2 tubulin epsilon and delta complex 2 protein-coding 6.688 1.435
-80179 MYO19 myosin XIX protein-coding 9.549 0.9489
-80183 RUBCNL RUN and cysteine rich domain containing beclin 1 interacting protein like protein-coding 6.171 1.901
-80184 CEP290 centrosomal protein 290 protein-coding 8.478 0.9479
-80185 TTI2 TELO2 interacting protein 2 protein-coding 8.04 0.5486
-8019 BRD3 bromodomain containing 3 protein-coding 9.943 0.7017
-80194 TMEM134 transmembrane protein 134 protein-coding 9.355 0.8134
-80195 TMEM254 transmembrane protein 254 protein-coding 9.469 0.9134
-80196 RNF34 ring finger protein 34 protein-coding 9.27 0.4732
-80198 MUS81 MUS81 structure-specific endonuclease subunit protein-coding 9.248 0.4849
-80199 FUZ fuzzy planar cell polarity protein protein-coding 8.088 1.314
+80177 MYCT1 MYC target 1 protein-coding 6.76 1.335
+80178 TEDC2 tubulin epsilon and delta complex 2 protein-coding 6.685 1.437
+80179 MYO19 myosin XIX protein-coding 9.548 0.9488
+80183 RUBCNL RUN and cysteine rich domain containing beclin 1 interacting protein like protein-coding 6.172 1.901
+80184 CEP290 centrosomal protein 290 protein-coding 8.478 0.9476
+80185 TTI2 TELO2 interacting protein 2 protein-coding 8.04 0.5484
+8019 BRD3 bromodomain containing 3 protein-coding 9.943 0.7015
+80194 TMEM134 transmembrane protein 134 protein-coding 9.355 0.8136
+80195 TMEM254 transmembrane protein 254 protein-coding 9.469 0.9136
+80196 RNF34 ring finger protein 34 protein-coding 9.27 0.4731
+80198 MUS81 MUS81 structure-specific endonuclease subunit protein-coding 9.248 0.4848
+80199 FUZ fuzzy planar cell polarity protein protein-coding 8.089 1.314
80201 HKDC1 hexokinase domain containing 1 protein-coding 5.76 3.489
-80204 FBXO11 F-box protein 11 protein-coding 10.31 0.4734
+80204 FBXO11 F-box protein 11 protein-coding 10.31 0.4732
80205 CHD9 chromodomain helicase DNA binding protein 9 protein-coding 9.73 0.866
-80206 FHOD3 formin homology 2 domain containing 3 protein-coding 7.695 2.008
-80207 OPA3 OPA3, outer mitochondrial membrane lipid metabolism regulator protein-coding 9.166 0.543
-80208 SPG11 SPG11, spatacsin vesicle trafficking associated protein-coding 10.44 0.6483
-80209 PROSER1 proline and serine rich 1 protein-coding 9.765 0.8214
-8021 NUP214 nucleoporin 214 protein-coding 10.49 0.4587
+80206 FHOD3 formin homology 2 domain containing 3 protein-coding 7.696 2.008
+80207 OPA3 OPA3, outer mitochondrial membrane lipid metabolism regulator protein-coding 9.167 0.5429
+80208 SPG11 SPG11, spatacsin vesicle trafficking associated protein-coding 10.44 0.6482
+80209 PROSER1 proline and serine rich 1 protein-coding 9.765 0.821
+8021 NUP214 nucleoporin 214 protein-coding 10.49 0.4585
80210 ARMC9 armadillo repeat containing 9 protein-coding 7.837 1.131
-80212 CCDC92 coiled-coil domain containing 92 protein-coding 9.771 0.7428
-80213 TM2D3 TM2 domain containing 3 protein-coding 9.608 0.5273
-80216 ALPK1 alpha kinase 1 protein-coding 8.329 1.048
-80217 CFAP43 cilia and flagella associated protein 43 protein-coding 4.359 1.984
-80218 NAA50 N(alpha)-acetyltransferase 50, NatE catalytic subunit protein-coding 11.36 0.7618
-80219 COQ10B coenzyme Q10B protein-coding 9.283 0.5456
-80221 ACSF2 acyl-CoA synthetase family member 2 protein-coding 8.827 1.471
-80222 TARS2 threonyl-tRNA synthetase 2, mitochondrial protein-coding 9.364 0.5627
-80223 RAB11FIP1 RAB11 family interacting protein 1 protein-coding 10.53 2.002
-80224 NUBPL nucleotide binding protein like protein-coding 7.848 0.6238
-80227 PAAF1 proteasomal ATPase associated factor 1 protein-coding 8.8 0.6724
+80212 CCDC92 coiled-coil domain containing 92 protein-coding 9.771 0.7426
+80213 TM2D3 TM2 domain containing 3 protein-coding 9.608 0.5274
+80216 ALPK1 alpha kinase 1 protein-coding 8.33 1.049
+80217 CFAP43 cilia and flagella associated protein 43 protein-coding 4.36 1.984
+80218 NAA50 N(alpha)-acetyltransferase 50, NatE catalytic subunit protein-coding 11.36 0.7616
+80219 COQ10B coenzyme Q10B protein-coding 9.283 0.5454
+80221 ACSF2 acyl-CoA synthetase family member 2 protein-coding 8.828 1.471
+80222 TARS2 threonyl-tRNA synthetase 2, mitochondrial protein-coding 9.364 0.5626
+80223 RAB11FIP1 RAB11 family interacting protein 1 protein-coding 10.53 2.001
+80224 NUBPL nucleotide binding protein like protein-coding 7.848 0.6236
+80227 PAAF1 proteasomal ATPase associated factor 1 protein-coding 8.8 0.6722
80228 ORAI2 ORAI calcium release-activated calcium modulator 2 protein-coding 9.783 1.122
-80230 RUFY1 RUN and FYVE domain containing 1 protein-coding 10.09 0.523
-80231 CXorf21 chromosome X open reading frame 21 protein-coding 4.583 1.556
-80232 WDR26 WD repeat domain 26 protein-coding 11.28 0.5258
-80233 FAAP100 Fanconi anemia core complex associated protein 100 protein-coding 9.873 0.6019
-80235 PIGZ phosphatidylinositol glycan anchor biosynthesis class Z protein-coding 6.7 1.334
-80237 ELL3 elongation factor for RNA polymerase II 3 protein-coding 7.291 1.151
-80243 PREX2 phosphatidylinositol-3,4,5-trisphosphate dependent Rac exchange factor 2 protein-coding 4.61 2.308
-80254 CEP63 centrosomal protein 63 protein-coding 8.961 0.4911
-80255 SLC35F5 solute carrier family 35 member F5 protein-coding 9.625 0.8707
-80256 FAM214B family with sequence similarity 214 member B protein-coding 9.059 0.7699
-80258 EFHC2 EF-hand domain containing 2 protein-coding 3.968 2.12
-80262 C16orf70 chromosome 16 open reading frame 70 protein-coding 9.017 0.5667
+80230 RUFY1 RUN and FYVE domain containing 1 protein-coding 10.09 0.5228
+80231 CXorf21 chromosome X open reading frame 21 protein-coding 4.584 1.556
+80232 WDR26 WD repeat domain 26 protein-coding 11.28 0.5256
+80233 FAAP100 Fanconi anemia core complex associated protein 100 protein-coding 9.873 0.6017
+80235 PIGZ phosphatidylinositol glycan anchor biosynthesis class Z protein-coding 6.7 1.333
+80237 ELL3 elongation factor for RNA polymerase II 3 protein-coding 7.29 1.15
+80243 PREX2 phosphatidylinositol-3,4,5-trisphosphate dependent Rac exchange factor 2 protein-coding 4.611 2.308
+80254 CEP63 centrosomal protein 63 protein-coding 8.961 0.4909
+80255 SLC35F5 solute carrier family 35 member F5 protein-coding 9.625 0.8704
+80256 FAM214B family with sequence similarity 214 member B protein-coding 9.059 0.77
+80258 EFHC2 EF-hand domain containing 2 protein-coding 3.969 2.119
+80262 C16orf70 chromosome 16 open reading frame 70 protein-coding 9.017 0.5666
80263 TRIM45 tripartite motif containing 45 protein-coding 7.048 1.17
-80264 ZNF430 zinc finger protein 430 protein-coding 6.563 1.316
-80267 EDEM3 ER degradation enhancing alpha-mannosidase like protein 3 protein-coding 10.14 0.8548
-8027 STAM signal transducing adaptor molecule protein-coding 9.097 0.6125
-80270 HSD3B7 hydroxy-delta-5-steroid dehydrogenase, 3 beta- and steroid delta-isomerase 7 protein-coding 9.18 1.39
-80271 ITPKC inositol-trisphosphate 3-kinase C protein-coding 9.971 0.9242
-80273 GRPEL1 GrpE like 1, mitochondrial protein-coding 9.515 0.61
-80274 SCUBE1 signal peptide, CUB domain and EGF like domain containing 1 protein-coding 4.182 2.283
+80264 ZNF430 zinc finger protein 430 protein-coding 6.564 1.316
+80267 EDEM3 ER degradation enhancing alpha-mannosidase like protein 3 protein-coding 10.14 0.8545
+8027 STAM signal transducing adaptor molecule protein-coding 9.097 0.6123
+80270 HSD3B7 hydroxy-delta-5-steroid dehydrogenase, 3 beta- and steroid delta-isomerase 7 protein-coding 9.179 1.39
+80271 ITPKC inositol-trisphosphate 3-kinase C protein-coding 9.971 0.924
+80273 GRPEL1 GrpE like 1, mitochondrial protein-coding 9.514 0.6101
+80274 SCUBE1 signal peptide, CUB domain and EGF like domain containing 1 protein-coding 4.183 2.283
80279 CDK5RAP3 CDK5 regulatory subunit associated protein 3 protein-coding 11.17 0.7427
-8028 MLLT10 MLLT10, histone lysine methyltransferase DOT1L cofactor protein-coding 9.086 0.652
-8029 CUBN cubilin protein-coding 5.431 2.485
-80298 MTERF2 mitochondrial transcription termination factor 2 protein-coding 8.142 0.8575
-8030 CCDC6 coiled-coil domain containing 6 protein-coding 10.75 0.769
-80301 PLEKHO2 pleckstrin homology domain containing O2 protein-coding 9.86 0.9396
-80303 EFHD1 EF-hand domain family member D1 protein-coding 8.094 2.542
-80304 WDCP WD repeat and coiled coil containing protein-coding 7.832 0.594
-80305 TRABD TraB domain containing protein-coding 9.838 0.8299
-80306 MED28 mediator complex subunit 28 protein-coding 9.053 0.5235
-80307 FER1L4 fer-1 like family member 4, pseudogene pseudo 6.056 2.655
-80308 FLAD1 flavin adenine dinucleotide synthetase 1 protein-coding 9.846 0.6769
-8031 NCOA4 nuclear receptor coactivator 4 protein-coding 11.96 0.6747
-80310 PDGFD platelet derived growth factor D protein-coding 7.548 1.927
-80311 KLHL15 kelch like family member 15 protein-coding 8.02 0.7906
-80312 TET1 tet methylcytosine dioxygenase 1 protein-coding 5.562 1.499
+8028 MLLT10 MLLT10, histone lysine methyltransferase DOT1L cofactor protein-coding 9.087 0.652
+8029 CUBN cubilin protein-coding 5.432 2.484
+80298 MTERF2 mitochondrial transcription termination factor 2 protein-coding 8.143 0.8574
+8030 CCDC6 coiled-coil domain containing 6 protein-coding 10.75 0.7689
+80301 PLEKHO2 pleckstrin homology domain containing O2 protein-coding 9.861 0.9398
+80303 EFHD1 EF-hand domain family member D1 protein-coding 8.094 2.541
+80304 WDCP WD repeat and coiled coil containing protein-coding 7.832 0.5939
+80305 TRABD TraB domain containing protein-coding 9.838 0.8296
+80306 MED28 mediator complex subunit 28 protein-coding 9.053 0.5233
+80307 FER1L4 fer-1 like family member 4, pseudogene pseudo 6.056 2.654
+80308 FLAD1 flavin adenine dinucleotide synthetase 1 protein-coding 9.846 0.677
+8031 NCOA4 nuclear receptor coactivator 4 protein-coding 11.96 0.6748
+80310 PDGFD platelet derived growth factor D protein-coding 7.55 1.928
+80311 KLHL15 kelch like family member 15 protein-coding 8.021 0.7907
+80312 TET1 tet methylcytosine dioxygenase 1 protein-coding 5.562 1.498
80313 LRRC27 leucine rich repeat containing 27 protein-coding 7.386 1.013
-80314 EPC1 enhancer of polycomb homolog 1 protein-coding 8.333 0.9519
-80315 CPEB4 cytoplasmic polyadenylation element binding protein 4 protein-coding 9.601 1.189
-80317 ZKSCAN3 zinc finger with KRAB and SCAN domains 3 protein-coding 6.05 0.7237
+80314 EPC1 enhancer of polycomb homolog 1 protein-coding 8.334 0.9518
+80315 CPEB4 cytoplasmic polyadenylation element binding protein 4 protein-coding 9.602 1.189
+80317 ZKSCAN3 zinc finger with KRAB and SCAN domains 3 protein-coding 6.051 0.7235
80318 GKAP1 G kinase anchoring protein 1 protein-coding 6.482 1.388
-80320 SP6 Sp6 transcription factor protein-coding 6.41 2.039
+80320 SP6 Sp6 transcription factor protein-coding 6.409 2.039
80321 CEP70 centrosomal protein 70 protein-coding 8.593 0.9356
-80323 CCDC68 coiled-coil domain containing 68 protein-coding 5.691 2.14
-80324 PUS1 pseudouridylate synthase 1 protein-coding 8.814 0.8502
+80323 CCDC68 coiled-coil domain containing 68 protein-coding 5.693 2.141
+80324 PUS1 pseudouridylate synthase 1 protein-coding 8.813 0.8501
80325 ABTB1 ankyrin repeat and BTB domain containing 1 protein-coding 9.012 0.8068
-80326 WNT10A Wnt family member 10A protein-coding 5.149 2.636
-80328 ULBP2 UL16 binding protein 2 protein-coding 5.099 2.226
-80329 ULBP1 UL16 binding protein 1 protein-coding 3.943 1.944
-80331 DNAJC5 DnaJ heat shock protein family (Hsp40) member C5 protein-coding 11.28 0.6107
-80332 ADAM33 ADAM metallopeptidase domain 33 protein-coding 5.197 2.299
-80333 KCNIP4 potassium voltage-gated channel interacting protein 4 protein-coding 4.514 1.613
-80335 WDR82 WD repeat domain 82 protein-coding 11.39 0.5124
-80336 PABPC1L poly(A) binding protein cytoplasmic 1 like protein-coding 8.017 1.519
-80339 PNPLA3 patatin like phospholipase domain containing 3 protein-coding 3.486 2.238
-8034 SLC25A16 solute carrier family 25 member 16 protein-coding 7.885 0.8337
-80342 TRAF3IP3 TRAF3 interacting protein 3 protein-coding 6.187 1.616
-80344 DCAF11 DDB1 and CUL4 associated factor 11 protein-coding 10.89 0.5755
-80345 ZSCAN16 zinc finger and SCAN domain containing 16 protein-coding 6.631 0.9755
-80346 REEP4 receptor accessory protein 4 protein-coding 9.182 1.131
+80326 WNT10A Wnt family member 10A protein-coding 5.15 2.635
+80328 ULBP2 UL16 binding protein 2 protein-coding 5.097 2.226
+80329 ULBP1 UL16 binding protein 1 protein-coding 3.942 1.944
+80331 DNAJC5 DnaJ heat shock protein family (Hsp40) member C5 protein-coding 11.28 0.6105
+80332 ADAM33 ADAM metallopeptidase domain 33 protein-coding 5.199 2.3
+80333 KCNIP4 potassium voltage-gated channel interacting protein 4 protein-coding 4.515 1.613
+80335 WDR82 WD repeat domain 82 protein-coding 11.39 0.5123
+80336 PABPC1L poly(A) binding protein cytoplasmic 1 like protein-coding 8.017 1.52
+80339 PNPLA3 patatin like phospholipase domain containing 3 protein-coding 3.485 2.238
+8034 SLC25A16 solute carrier family 25 member 16 protein-coding 7.885 0.8336
+80342 TRAF3IP3 TRAF3 interacting protein 3 protein-coding 6.188 1.617
+80344 DCAF11 DDB1 and CUL4 associated factor 11 protein-coding 10.89 0.5754
+80345 ZSCAN16 zinc finger and SCAN domain containing 16 protein-coding 6.631 0.9751
+80346 REEP4 receptor accessory protein 4 protein-coding 9.182 1.13
80347 COASY Coenzyme A synthase protein-coding 10.76 0.5606
80349 WDR61 WD repeat domain 61 protein-coding 9.697 0.4941
-80350 LPAL2 lipoprotein(a) like 2, pseudogene pseudo 2.258 1.322
-80351 TNKS2 tankyrase 2 protein-coding 10.4 0.6383
+80350 LPAL2 lipoprotein(a) like 2, pseudogene pseudo 2.258 1.321
+80351 TNKS2 tankyrase 2 protein-coding 10.4 0.6381
80352 RNF39 ring finger protein 39 protein-coding 5.54 2.05
-8036 SHOC2 SHOC2, leucine rich repeat scaffold protein protein-coding 9.906 0.5571
+8036 SHOC2 SHOC2, leucine rich repeat scaffold protein protein-coding 9.907 0.5568
8038 ADAM12 ADAM metallopeptidase domain 12 protein-coding 7.64 2.522
80380 PDCD1LG2 programmed cell death 1 ligand 2 protein-coding 5.385 1.791
-80381 CD276 CD276 molecule protein-coding 11.09 0.8871
+80381 CD276 CD276 molecule protein-coding 11.09 0.8869
8045 RASSF7 Ras association domain family member 7 protein-coding 9.298 1.562
-805 CALM2 calmodulin 2 protein-coding 13.22 0.621
-8050 PDHX pyruvate dehydrogenase complex component X protein-coding 9.271 0.5776
-8061 FOSL1 FOS like 1, AP-1 transcription factor subunit protein-coding 6.884 2.394
-8065 CUL5 cullin 5 protein-coding 9.609 0.5561
+805 CALM2 calmodulin 2 protein-coding 13.22 0.6208
+8050 PDHX pyruvate dehydrogenase complex component X protein-coding 9.271 0.5774
+8061 FOSL1 FOS like 1, AP-1 transcription factor subunit protein-coding 6.883 2.394
+8065 CUL5 cullin 5 protein-coding 9.609 0.5559
80700 UBXN6 UBX domain protein 6 protein-coding 10.97 0.6973
-80705 TSGA10 testis specific 10 protein-coding 5.651 1.248
-80709 AKNA AT-hook transcription factor protein-coding 9.491 0.9895
-80714 PBX4 PBX homeobox 4 protein-coding 4.516 1.555
+80705 TSGA10 testis specific 10 protein-coding 5.652 1.248
+80709 AKNA AT-hook transcription factor protein-coding 9.492 0.9901
+80714 PBX4 PBX homeobox 4 protein-coding 4.517 1.555
80723 SLC35G2 solute carrier family 35 member G2 protein-coding 6.383 1.563
-80724 ACAD10 acyl-CoA dehydrogenase family member 10 protein-coding 9.215 0.7151
+80724 ACAD10 acyl-CoA dehydrogenase family member 10 protein-coding 9.215 0.7148
80725 SRCIN1 SRC kinase signaling inhibitor 1 protein-coding 7.122 2.039
-80726 IQCN IQ motif containing N protein-coding 6.137 1.661
+80726 IQCN IQ motif containing N protein-coding 6.138 1.662
80727 TTYH3 tweety family member 3 protein-coding 11.37 1.046
-80728 ARHGAP39 Rho GTPase activating protein 39 protein-coding 8.246 1.094
-8073 PTP4A2 protein tyrosine phosphatase type IVA, member 2 protein-coding 11.02 0.6907
-80731 THSD7B thrombospondin type 1 domain containing 7B protein-coding 3.442 2.186
-80736 SLC44A4 solute carrier family 44 member 4 protein-coding 7.704 4.245
-80737 VWA7 von Willebrand factor A domain containing 7 protein-coding 5.445 1.907
-80740 LY6G6C lymphocyte antigen 6 family member G6C protein-coding 2.652 2.683
-80741 LY6G5C lymphocyte antigen 6 family member G5C protein-coding 4.987 1.066
-80742 PRR3 proline rich 3 protein-coding 8.125 0.8093
+80728 ARHGAP39 Rho GTPase activating protein 39 protein-coding 8.245 1.094
+8073 PTP4A2 protein tyrosine phosphatase type IVA, member 2 protein-coding 11.02 0.6904
+80731 THSD7B thrombospondin type 1 domain containing 7B protein-coding 3.443 2.186
+80736 SLC44A4 solute carrier family 44 member 4 protein-coding 7.706 4.245
+80737 VWA7 von Willebrand factor A domain containing 7 protein-coding 5.447 1.907
+80740 LY6G6C lymphocyte antigen 6 family member G6C protein-coding 2.651 2.682
+80741 LY6G5C lymphocyte antigen 6 family member G5C protein-coding 4.987 1.065
+80742 PRR3 proline rich 3 protein-coding 8.125 0.8089
80745 THUMPD2 THUMP domain containing 2 protein-coding 7.711 0.6382
-80746 TSEN2 tRNA splicing endonuclease subunit 2 protein-coding 7.463 0.6586
-80755 AARSD1 alanyl-tRNA synthetase domain containing 1 protein-coding 9.238 0.6256
-80757 TMEM121 transmembrane protein 121 protein-coding 5.124 1.682
-80758 PRR7 proline rich 7, synaptic protein-coding 5.966 1.37
-80759 KHDC1 KH domain containing 1 protein-coding 4.86 1.769
-8076 MFAP5 microfibril associated protein 5 protein-coding 5.749 3.205
-80760 ITIH5 inter-alpha-trypsin inhibitor heavy chain family member 5 protein-coding 8.214 2.004
+80746 TSEN2 tRNA splicing endonuclease subunit 2 protein-coding 7.463 0.6583
+80755 AARSD1 alanyl-tRNA synthetase domain containing 1 protein-coding 9.238 0.6254
+80757 TMEM121 transmembrane protein 121 protein-coding 5.125 1.681
+80758 PRR7 proline rich 7, synaptic protein-coding 5.965 1.37
+80759 KHDC1 KH domain containing 1 protein-coding 4.861 1.769
+8076 MFAP5 microfibril associated protein 5 protein-coding 5.751 3.204
+80760 ITIH5 inter-alpha-trypsin inhibitor heavy chain family member 5 protein-coding 8.216 2.004
80762 NDFIP1 Nedd4 family interacting protein 1 protein-coding 11.59 0.7797
-80764 THAP7 THAP domain containing 7 protein-coding 8.762 0.7736
-80765 STARD5 StAR related lipid transfer domain containing 5 protein-coding 6.672 1.441
-80772 CPTP ceramide-1-phosphate transfer protein protein-coding 9.486 0.7664
+80764 THAP7 THAP domain containing 7 protein-coding 8.762 0.7733
+80765 STARD5 StAR related lipid transfer domain containing 5 protein-coding 6.671 1.44
+80772 CPTP ceramide-1-phosphate transfer protein protein-coding 9.485 0.7662
80774 LIMD2 LIM domain containing 2 protein-coding 8.711 1.365
-80775 TMEM177 transmembrane protein 177 protein-coding 7.801 0.708
-80776 B9D2 B9 domain containing 2 protein-coding 6.782 0.8562
-80777 CYB5B cytochrome b5 type B protein-coding 10.76 0.6846
-80778 ZNF34 zinc finger protein 34 protein-coding 6.909 0.7245
+80775 TMEM177 transmembrane protein 177 protein-coding 7.8 0.7083
+80776 B9D2 B9 domain containing 2 protein-coding 6.782 0.8558
+80777 CYB5B cytochrome b5 type B protein-coding 10.76 0.6844
+80778 ZNF34 zinc finger protein 34 protein-coding 6.91 0.7243
8078 USP5 ubiquitin specific peptidase 5 protein-coding 11.19 0.565
-80781 COL18A1 collagen type XVIII alpha 1 chain protein-coding 12.1 1.398
+80781 COL18A1 collagen type XVIII alpha 1 chain protein-coding 12.1 1.397
80789 INTS5 integrator complex subunit 5 protein-coding 9.601 0.4714
-8079 MLF2 myeloid leukemia factor 2 protein-coding 12.17 0.5749
-80790 CMIP c-Maf inducing protein protein-coding 10.55 0.8959
-808 CALM3 calmodulin 3 protein-coding 12.54 0.6211
-80817 CEP44 centrosomal protein 44 protein-coding 8.14 0.6794
-80818 ZNF436 zinc finger protein 436 protein-coding 9.022 0.9023
-8082 SSPN sarcospan protein-coding 8.417 1.657
+8079 MLF2 myeloid leukemia factor 2 protein-coding 12.17 0.5751
+80790 CMIP c-Maf inducing protein protein-coding 10.55 0.8956
+808 CALM3 calmodulin 3 protein-coding 12.55 0.6209
+80817 CEP44 centrosomal protein 44 protein-coding 8.141 0.6794
+80818 ZNF436 zinc finger protein 436 protein-coding 9.022 0.9019
+8082 SSPN sarcospan protein-coding 8.418 1.656
80820 EEPD1 endonuclease/exonuclease/phosphatase family domain containing 1 protein-coding 8.098 1.426
-80821 DDHD1 DDHD domain containing 1 protein-coding 8.544 0.7869
-80823 BHLHB9 basic helix-loop-helix family member b9 protein-coding 6.998 1.008
-80824 DUSP16 dual specificity phosphatase 16 protein-coding 10.25 0.8615
-80829 ZFP91 ZFP91 zinc finger protein protein-coding 10.86 0.5679
+80821 DDHD1 DDHD domain containing 1 protein-coding 8.544 0.787
+80823 BHLHB9 basic helix-loop-helix family member b9 protein-coding 6.998 1.007
+80824 DUSP16 dual specificity phosphatase 16 protein-coding 10.25 0.8614
+80829 ZFP91 ZFP91 zinc finger protein protein-coding 10.86 0.5677
80830 APOL6 apolipoprotein L6 protein-coding 10.43 1.197
-80832 APOL4 apolipoprotein L4 protein-coding 7.564 1.97
-80833 APOL3 apolipoprotein L3 protein-coding 8.859 1.415
-80835 TAS1R1 taste 1 receptor member 1 protein-coding 1.99 1.596
-8085 KMT2D lysine methyltransferase 2D protein-coding 10.89 0.758
-80851 SH3BP5L SH3 binding domain protein 5 like protein-coding 9.806 0.5227
-80853 KDM7A lysine demethylase 7A protein-coding 9.246 0.977
+80832 APOL4 apolipoprotein L4 protein-coding 7.565 1.97
+80833 APOL3 apolipoprotein L3 protein-coding 8.86 1.415
+80835 TAS1R1 taste 1 receptor member 1 protein-coding 1.991 1.596
+8085 KMT2D lysine methyltransferase 2D protein-coding 10.89 0.7579
+80851 SH3BP5L SH3 binding domain protein 5 like protein-coding 9.806 0.5225
+80853 KDM7A lysine demethylase 7A protein-coding 9.246 0.9767
80854 SETD7 SET domain containing lysine methyltransferase 7 protein-coding 10.54 1.052
-80856 LNPK lunapark, ER junction formation factor protein-coding 9.142 0.8122
-8086 AAAS aladin WD repeat nucleoporin protein-coding 9.651 0.5141
-80862 ZNRD1ASP zinc ribbon domain containing 1 antisense, pseudogene pseudo 4.751 0.8521
-80863 PRRT1 proline rich transmembrane protein 1 protein-coding 5.504 1.693
-80864 EGFL8 EGF like domain multiple 8 protein-coding 6.686 1.512
-80868 HCG4B HLA complex group 4B (non-protein coding) ncRNA 2.699 1.224
-8087 FXR1 FMR1 autosomal homolog 1 protein-coding 11.11 0.6027
-8089 YEATS4 YEATS domain containing 4 protein-coding 8.426 0.7989
-80895 ILKAP ILK associated serine/threonine phosphatase protein-coding 8.968 0.5439
-80896 NPL N-acetylneuraminate pyruvate lyase protein-coding 7.802 1.437
-8091 HMGA2 high mobility group AT-hook 2 protein-coding 4.965 3.652
-80975 TMPRSS5 transmembrane serine protease 5 protein-coding 3.095 2.042
-8099 CDK2AP1 cyclin dependent kinase 2 associated protein 1 protein-coding 11.31 0.8657
-81 ACTN4 actinin alpha 4 protein-coding 13.39 0.773
-8100 IFT88 intraflagellar transport 88 protein-coding 8.009 0.8651
-81025 GJA9 gap junction protein alpha 9 protein-coding 2.873 1.019
-81027 TUBB1 tubulin beta 1 class VI protein-coding 4.179 1.184
-81029 WNT5B Wnt family member 5B protein-coding 6.875 1.929
-81030 ZBP1 Z-DNA binding protein 1 protein-coding 4.603 2.1
-81031 SLC2A10 solute carrier family 2 member 10 protein-coding 8.629 1.791
-81034 SLC25A32 solute carrier family 25 member 32 protein-coding 9.014 0.6506
-81035 COLEC12 collectin subfamily member 12 protein-coding 7.441 2.31
-81037 CLPTM1L CLPTM1 like protein-coding 11.39 0.6833
-8106 PABPN1 poly(A) binding protein nuclear 1 protein-coding 11.47 0.5902
-811 CALR calreticulin protein-coding 14.43 0.68
-8110 DPF3 double PHD fingers 3 protein-coding 3.9 1.943
-8111 GPR68 G protein-coupled receptor 68 protein-coding 6.648 1.986
-8115 TCL1A T cell leukemia/lymphoma 1A protein-coding 2.347 2.449
-8120 AP3B2 adaptor related protein complex 3 beta 2 subunit protein-coding 4.972 2.9
-8123 PWAR5 Prader Willi/Angelman region RNA 5 ncRNA 3.528 1.964
-8125 ANP32A acidic nuclear phosphoprotein 32 family member A protein-coding 11.4 0.5128
-813 CALU calumenin protein-coding 11.84 0.9101
-8131 NPRL3 NPR3 like, GATOR1 complex subunit protein-coding 9.858 0.578
+80856 LNPK lunapark, ER junction formation factor protein-coding 9.142 0.8119
+8086 AAAS aladin WD repeat nucleoporin protein-coding 9.65 0.5139
+80862 ZNRD1ASP zinc ribbon domain containing 1 antisense, pseudogene pseudo 4.751 0.8519
+80863 PRRT1 proline rich transmembrane protein 1 protein-coding 5.505 1.693
+80864 EGFL8 EGF like domain multiple 8 protein-coding 6.686 1.511
+80868 HCG4B HLA complex group 4B (non-protein coding) ncRNA 2.7 1.224
+8087 FXR1 FMR1 autosomal homolog 1 protein-coding 11.11 0.6025
+8089 YEATS4 YEATS domain containing 4 protein-coding 8.426 0.7987
+80895 ILKAP ILK associated serine/threonine phosphatase protein-coding 8.968 0.5437
+80896 NPL N-acetylneuraminate pyruvate lyase protein-coding 7.802 1.438
+8091 HMGA2 high mobility group AT-hook 2 protein-coding 4.963 3.651
+80975 TMPRSS5 transmembrane serine protease 5 protein-coding 3.094 2.041
+8099 CDK2AP1 cyclin dependent kinase 2 associated protein 1 protein-coding 11.31 0.8655
+81 ACTN4 actinin alpha 4 protein-coding 13.39 0.7727
+8100 IFT88 intraflagellar transport 88 protein-coding 8.01 0.8648
+81025 GJA9 gap junction protein alpha 9 protein-coding 2.874 1.019
+81027 TUBB1 tubulin beta 1 class VI protein-coding 4.18 1.184
+81029 WNT5B Wnt family member 5B protein-coding 6.876 1.929
+81030 ZBP1 Z-DNA binding protein 1 protein-coding 4.604 2.1
+81031 SLC2A10 solute carrier family 2 member 10 protein-coding 8.63 1.79
+81034 SLC25A32 solute carrier family 25 member 32 protein-coding 9.014 0.6504
+81035 COLEC12 collectin subfamily member 12 protein-coding 7.443 2.311
+81037 CLPTM1L CLPTM1 like protein-coding 11.39 0.683
+8106 PABPN1 poly(A) binding protein nuclear 1 protein-coding 11.47 0.59
+811 CALR calreticulin protein-coding 14.43 0.6801
+8110 DPF3 double PHD fingers 3 protein-coding 3.9 1.942
+8111 GPR68 G protein-coupled receptor 68 protein-coding 6.649 1.985
+8115 TCL1A T cell leukemia/lymphoma 1A protein-coding 2.349 2.452
+8120 AP3B2 adaptor related protein complex 3 beta 2 subunit protein-coding 4.974 2.899
+8123 PWAR5 Prader Willi/Angelman region RNA 5 ncRNA 3.53 1.964
+8125 ANP32A acidic nuclear phosphoprotein 32 family member A protein-coding 11.39 0.5127
+813 CALU calumenin protein-coding 11.84 0.9097
+8131 NPRL3 NPR3 like, GATOR1 complex subunit protein-coding 9.857 0.5779
8139 GAN gigaxonin protein-coding 5.638 1.221
-814 CAMK4 calcium/calmodulin dependent protein kinase IV protein-coding 3.896 1.931
+814 CAMK4 calcium/calmodulin dependent protein kinase IV protein-coding 3.898 1.931
8140 SLC7A5 solute carrier family 7 member 5 protein-coding 10.69 2.161
-8148 TAF15 TATA-box binding protein associated factor 15 protein-coding 11.55 0.5989
+8148 TAF15 TATA-box binding protein associated factor 15 protein-coding 11.55 0.5987
81488 POLR2M RNA polymerase II subunit M protein-coding 9.808 0.6249
-81490 PTDSS2 phosphatidylserine synthase 2 protein-coding 9.271 0.7722
-81491 GPR63 G protein-coupled receptor 63 protein-coding 3.025 1.548
-81493 SYNC syncoilin, intermediate filament protein protein-coding 7.343 1.995
-815 CAMK2A calcium/calmodulin dependent protein kinase II alpha protein-coding 3.359 2.652
-81501 DCSTAMP dendrocyte expressed seven transmembrane protein protein-coding 2.968 2.458
-81502 HM13 histocompatibility minor 13 protein-coding 11.88 0.6529
-8153 RND2 Rho family GTPase 2 protein-coding 6.322 2.79
-81532 MOB2 MOB kinase activator 2 protein-coding 9.228 0.6214
-81533 ITFG1 integrin alpha FG-GAP repeat containing 1 protein-coding 9.856 0.6979
+81490 PTDSS2 phosphatidylserine synthase 2 protein-coding 9.27 0.7719
+81491 GPR63 G protein-coupled receptor 63 protein-coding 3.026 1.548
+81493 SYNC syncoilin, intermediate filament protein protein-coding 7.344 1.994
+815 CAMK2A calcium/calmodulin dependent protein kinase II alpha protein-coding 3.36 2.651
+81501 DCSTAMP dendrocyte expressed seven transmembrane protein protein-coding 2.969 2.459
+81502 HM13 histocompatibility minor 13 protein-coding 11.88 0.6528
+8153 RND2 Rho family GTPase 2 protein-coding 6.322 2.789
+81532 MOB2 MOB kinase activator 2 protein-coding 9.228 0.6212
+81533 ITFG1 integrin alpha FG-GAP repeat containing 1 protein-coding 9.856 0.6977
81537 SGPP1 sphingosine-1-phosphate phosphatase 1 protein-coding 8.713 1.001
-81539 SLC38A1 solute carrier family 38 member 1 protein-coding 11.38 1.546
-81542 TMX1 thioredoxin related transmembrane protein 1 protein-coding 10.06 0.6317
-81543 LRRC3 leucine rich repeat containing 3 protein-coding 5.142 1.558
-81544 GDPD5 glycerophosphodiester phosphodiesterase domain containing 5 protein-coding 7.724 1.4
-81545 FBXO38 F-box protein 38 protein-coding 9.457 0.5152
-81550 TDRD3 tudor domain containing 3 protein-coding 8.408 0.6694
+81539 SLC38A1 solute carrier family 38 member 1 protein-coding 11.38 1.545
+81542 TMX1 thioredoxin related transmembrane protein 1 protein-coding 10.06 0.6314
+81543 LRRC3 leucine rich repeat containing 3 protein-coding 5.143 1.558
+81544 GDPD5 glycerophosphodiester phosphodiesterase domain containing 5 protein-coding 7.725 1.4
+81545 FBXO38 F-box protein 38 protein-coding 9.457 0.5151
+81550 TDRD3 tudor domain containing 3 protein-coding 8.408 0.6691
81552 VOPP1 VOPP1, WBP1/VOPP1 family member protein-coding 10.23 0.875
-81553 FAM49A family with sequence similarity 49 member A protein-coding 6.338 1.683
-81554 RCC1L RCC1 like protein-coding 10.16 0.5053
-81555 YIPF5 Yip1 domain family member 5 protein-coding 9.907 0.5637
-81556 INTS14 integrator complex subunit 14 protein-coding 9.858 0.408
-81557 MAGED4B MAGE family member D4B protein-coding 7.735 2.605
-81558 FAM117A family with sequence similarity 117 member A protein-coding 8.254 0.9773
-81559 TRIM11 tripartite motif containing 11 protein-coding 9.331 0.6832
-81562 LMAN2L lectin, mannose binding 2 like protein-coding 9.371 0.5688
-81563 C1orf21 chromosome 1 open reading frame 21 protein-coding 9.728 1.396
-81565 NDEL1 nudE neurodevelopment protein 1 like 1 protein-coding 9.658 0.6182
-81566 CSRNP2 cysteine and serine rich nuclear protein 2 protein-coding 9.551 0.6711
-81567 TXNDC5 thioredoxin domain containing 5 protein-coding 12.29 0.9083
-81569 ACTL8 actin like 8 protein-coding 1.763 2.33
-81570 CLPB ClpB homolog, mitochondrial AAA ATPase chaperonin protein-coding 8.443 0.7253
-81571 MIR600HG MIR600 host gene ncRNA 6.691 1.281
+81553 FAM49A family with sequence similarity 49 member A protein-coding 6.34 1.683
+81554 RCC1L RCC1 like protein-coding 10.16 0.5052
+81555 YIPF5 Yip1 domain family member 5 protein-coding 9.907 0.5634
+81556 INTS14 integrator complex subunit 14 protein-coding 9.858 0.4079
+81557 MAGED4B MAGE family member D4B protein-coding 7.735 2.604
+81558 FAM117A family with sequence similarity 117 member A protein-coding 8.255 0.9775
+81559 TRIM11 tripartite motif containing 11 protein-coding 9.33 0.683
+81562 LMAN2L lectin, mannose binding 2 like protein-coding 9.371 0.5687
+81563 C1orf21 chromosome 1 open reading frame 21 protein-coding 9.729 1.396
+81565 NDEL1 nudE neurodevelopment protein 1 like 1 protein-coding 9.658 0.618
+81566 CSRNP2 cysteine and serine rich nuclear protein 2 protein-coding 9.551 0.6708
+81567 TXNDC5 thioredoxin domain containing 5 protein-coding 12.29 0.908
+81569 ACTL8 actin like 8 protein-coding 1.761 2.33
+81570 CLPB ClpB homolog, mitochondrial AAA ATPase chaperonin protein-coding 8.442 0.7254
+81571 MIR600HG MIR600 host gene ncRNA 6.692 1.281
81572 PDRG1 p53 and DNA damage regulated 1 protein-coding 9.034 0.6609
-81573 ANKRD13C ankyrin repeat domain 13C protein-coding 9.003 0.4895
-81575 APOLD1 apolipoprotein L domain containing 1 protein-coding 9.049 1.622
-81576 CCDC130 coiled-coil domain containing 130 protein-coding 8.871 0.7172
-81577 GFOD2 glucose-fructose oxidoreductase domain containing 2 protein-coding 9.212 0.5967
-81578 COL21A1 collagen type XXI alpha 1 chain protein-coding 5.224 2.237
-81579 PLA2G12A phospholipase A2 group XIIA protein-coding 9.573 0.7575
-816 CAMK2B calcium/calmodulin dependent protein kinase II beta protein-coding 5.428 3.204
-81602 CDADC1 cytidine and dCMP deaminase domain containing 1 protein-coding 7.271 0.6515
-81603 TRIM8 tripartite motif containing 8 protein-coding 11.14 0.6794
-81605 URM1 ubiquitin related modifier 1 protein-coding 10.29 0.5694
-81606 LBH limb bud and heart development protein-coding 10.55 1.288
-81607 NECTIN4 nectin cell adhesion molecule 4 protein-coding 7.714 3.767
+81573 ANKRD13C ankyrin repeat domain 13C protein-coding 9.003 0.4893
+81575 APOLD1 apolipoprotein L domain containing 1 protein-coding 9.05 1.622
+81576 CCDC130 coiled-coil domain containing 130 protein-coding 8.871 0.7171
+81577 GFOD2 glucose-fructose oxidoreductase domain containing 2 protein-coding 9.212 0.5964
+81578 COL21A1 collagen type XXI alpha 1 chain protein-coding 5.226 2.237
+81579 PLA2G12A phospholipase A2 group XIIA protein-coding 9.573 0.7574
+816 CAMK2B calcium/calmodulin dependent protein kinase II beta protein-coding 5.429 3.204
+81602 CDADC1 cytidine and dCMP deaminase domain containing 1 protein-coding 7.271 0.6514
+81603 TRIM8 tripartite motif containing 8 protein-coding 11.15 0.6792
+81605 URM1 ubiquitin related modifier 1 protein-coding 10.29 0.5692
+81606 LBH limb bud and heart development protein-coding 10.55 1.287
+81607 NECTIN4 nectin cell adhesion molecule 4 protein-coding 7.713 3.765
81608 FIP1L1 factor interacting with PAPOLA and CPSF1 protein-coding 9.505 0.5045
-81609 SNX27 sorting nexin family member 27 protein-coding 10.11 0.6213
-8161 COIL coilin protein-coding 8.892 0.5038
-81610 FAM83D family with sequence similarity 83 member D protein-coding 7.881 2.188
-81611 ANP32E acidic nuclear phosphoprotein 32 family member E protein-coding 10.55 0.937
+81609 SNX27 sorting nexin family member 27 protein-coding 10.11 0.6211
+8161 COIL coilin protein-coding 8.892 0.5037
+81610 FAM83D family with sequence similarity 83 member D protein-coding 7.88 2.189
+81611 ANP32E acidic nuclear phosphoprotein 32 family member E protein-coding 10.55 0.9367
81614 NIPA2 NIPA magnesium transporter 2 protein-coding 10.05 0.4942
-81615 TMEM163 transmembrane protein 163 protein-coding 5.88 2.512
-81616 ACSBG2 acyl-CoA synthetase bubblegum family member 2 protein-coding 0.9978 0.896
-81617 CAB39L calcium binding protein 39 like protein-coding 8.303 1.568
+81615 TMEM163 transmembrane protein 163 protein-coding 5.881 2.512
+81616 ACSBG2 acyl-CoA synthetase bubblegum family member 2 protein-coding 0.998 0.8963
+81617 CAB39L calcium binding protein 39 like protein-coding 8.304 1.569
81618 ITM2C integral membrane protein 2C protein-coding 11.6 1.667
81619 TSPAN14 tetraspanin 14 protein-coding 11.24 0.7463
-81620 CDT1 chromatin licensing and DNA replication factor 1 protein-coding 8.252 1.619
+81620 CDT1 chromatin licensing and DNA replication factor 1 protein-coding 8.25 1.621
81621 KAZALD1 Kazal type serine peptidase inhibitor domain 1 protein-coding 5.946 1.835
81622 UNC93B1 unc-93 homolog B1, TLR signaling regulator protein-coding 9.675 1.07
-81624 DIAPH3 diaphanous related formin 3 protein-coding 6.667 1.839
-81627 TRMT1L tRNA methyltransferase 1 like protein-coding 9.007 0.5773
-81628 TSC22D4 TSC22 domain family member 4 protein-coding 10.5 0.8917
-81629 TSSK3 testis specific serine kinase 3 protein-coding 4.391 1.106
-81631 MAP1LC3B microtubule associated protein 1 light chain 3 beta protein-coding 10.85 0.6863
-8165 AKAP1 A-kinase anchoring protein 1 protein-coding 10.69 0.8654
+81624 DIAPH3 diaphanous related formin 3 protein-coding 6.664 1.84
+81627 TRMT1L tRNA methyltransferase 1 like protein-coding 9.007 0.577
+81628 TSC22D4 TSC22 domain family member 4 protein-coding 10.5 0.8913
+81629 TSSK3 testis specific serine kinase 3 protein-coding 4.392 1.106
+81631 MAP1LC3B microtubule associated protein 1 light chain 3 beta protein-coding 10.85 0.686
+8165 AKAP1 A-kinase anchoring protein 1 protein-coding 10.69 0.8652
81669 CCNL2 cyclin L2 protein-coding 10.91 0.9827
-81671 VMP1 vacuole membrane protein 1 protein-coding 11.14 0.7048
-81688 C6orf62 chromosome 6 open reading frame 62 protein-coding 11.69 0.5291
+81671 VMP1 vacuole membrane protein 1 protein-coding 11.14 0.7047
+81688 C6orf62 chromosome 6 open reading frame 62 protein-coding 11.69 0.5289
81689 ISCA1 iron-sulfur cluster assembly 1 protein-coding 9.4 0.5897
-81691 REXO5 RNA exonuclease 5 protein-coding 6.627 1.068
-81693 AMN amnion associated transmembrane protein protein-coding 4.611 3.335
-817 CAMK2D calcium/calmodulin dependent protein kinase II delta protein-coding 9.877 0.8881
-8170 SLC14A2 solute carrier family 14 member 2 protein-coding 1.9 1.957
-81704 DOCK8 dedicator of cytokinesis 8 protein-coding 8.836 1.471
+81691 REXO5 RNA exonuclease 5 protein-coding 6.626 1.068
+81693 AMN amnion associated transmembrane protein protein-coding 4.612 3.335
+817 CAMK2D calcium/calmodulin dependent protein kinase II delta protein-coding 9.877 0.8879
+8170 SLC14A2 solute carrier family 14 member 2 protein-coding 1.9 1.956
+81704 DOCK8 dedicator of cytokinesis 8 protein-coding 8.837 1.471
81706 PPP1R14C protein phosphatase 1 regulatory inhibitor subunit 14C protein-coding 6.733 3.188
-8174 MADCAM1 mucosal vascular addressin cell adhesion molecule 1 protein-coding 2.029 1.735
-8175 SF3A2 splicing factor 3a subunit 2 protein-coding 10.48 0.7438
-8178 ELL elongation factor for RNA polymerase II protein-coding 8.999 0.5061
+8174 MADCAM1 mucosal vascular addressin cell adhesion molecule 1 protein-coding 2.032 1.739
+8175 SF3A2 splicing factor 3a subunit 2 protein-coding 10.48 0.7435
+8178 ELL elongation factor for RNA polymerase II protein-coding 8.999 0.5062
81786 TRIM7 tripartite motif containing 7 protein-coding 5.744 2.097
-81788 NUAK2 NUAK family kinase 2 protein-coding 8.089 1.55
-81789 TIGD6 tigger transposable element derived 6 protein-coding 7.254 0.6301
-81790 RNF170 ring finger protein 170 protein-coding 9.002 0.7053
-81793 TLR10 toll like receptor 10 protein-coding 3.959 1.92
-81794 ADAMTS10 ADAM metallopeptidase with thrombospondin type 1 motif 10 protein-coding 6.554 1.646
-81796 SLCO5A1 solute carrier organic anion transporter family member 5A1 protein-coding 3.599 2.112
+81788 NUAK2 NUAK family kinase 2 protein-coding 8.089 1.549
+81789 TIGD6 tigger transposable element derived 6 protein-coding 7.254 0.63
+81790 RNF170 ring finger protein 170 protein-coding 9.002 0.7052
+81793 TLR10 toll like receptor 10 protein-coding 3.961 1.921
+81794 ADAMTS10 ADAM metallopeptidase with thrombospondin type 1 motif 10 protein-coding 6.555 1.646
+81796 SLCO5A1 solute carrier organic anion transporter family member 5A1 protein-coding 3.6 2.112
818 CAMK2G calcium/calmodulin dependent protein kinase II gamma protein-coding 9.688 0.84
-81831 NETO2 neuropilin and tolloid like 2 protein-coding 8.15 1.743
-81839 VANGL1 VANGL planar cell polarity protein 1 protein-coding 9.312 1.052
-81844 TRIM56 tripartite motif containing 56 protein-coding 8.014 1.135
-81846 SBF2 SET binding factor 2 protein-coding 9.542 0.8901
-81847 RNF146 ring finger protein 146 protein-coding 9.264 0.698
-81848 SPRY4 sprouty RTK signaling antagonist 4 protein-coding 9.393 1.407
-81849 ST6GALNAC5 ST6 N-acetylgalactosaminide alpha-2,6-sialyltransferase 5 protein-coding 5.258 2.473
-81853 TMEM14B transmembrane protein 14B protein-coding 9.908 0.6343
-81854 ZNF205-AS1 ZNF205 antisense RNA 1 ncRNA 3.395 1.031
+81831 NETO2 neuropilin and tolloid like 2 protein-coding 8.148 1.744
+81839 VANGL1 VANGL planar cell polarity protein 1 protein-coding 9.312 1.051
+81844 TRIM56 tripartite motif containing 56 protein-coding 8.015 1.134
+81846 SBF2 SET binding factor 2 protein-coding 9.542 0.8899
+81847 RNF146 ring finger protein 146 protein-coding 9.265 0.6979
+81848 SPRY4 sprouty RTK signaling antagonist 4 protein-coding 9.394 1.407
+81849 ST6GALNAC5 ST6 N-acetylgalactosaminide alpha-2,6-sialyltransferase 5 protein-coding 5.26 2.473
+81853 TMEM14B transmembrane protein 14B protein-coding 9.908 0.6342
+81854 ZNF205-AS1 ZNF205 antisense RNA 1 ncRNA 3.396 1.03
81855 SFXN3 sideroflexin 3 protein-coding 9.715 1.008
-81856 ZNF611 zinc finger protein 611 protein-coding 7.161 1.087
-81857 MED25 mediator complex subunit 25 protein-coding 10.08 0.6686
-81858 SHARPIN SHANK associated RH domain interactor protein-coding 10.26 0.6903
-8187 ZNF239 zinc finger protein 239 protein-coding 6.397 1.441
-81873 ARPC5L actin related protein 2/3 complex subunit 5 like protein-coding 9.892 0.6684
-81875 ISG20L2 interferon stimulated exonuclease gene 20 like 2 protein-coding 9.351 0.7117
+81856 ZNF611 zinc finger protein 611 protein-coding 7.162 1.087
+81857 MED25 mediator complex subunit 25 protein-coding 10.08 0.6685
+81858 SHARPIN SHANK associated RH domain interactor protein-coding 10.26 0.6901
+8187 ZNF239 zinc finger protein 239 protein-coding 6.397 1.44
+81873 ARPC5L actin related protein 2/3 complex subunit 5 like protein-coding 9.891 0.6683
+81875 ISG20L2 interferon stimulated exonuclease gene 20 like 2 protein-coding 9.351 0.7115
81876 RAB1B RAB1B, member RAS oncogene family protein-coding 12.29 0.5096
-81887 LAS1L LAS1 like, ribosome biogenesis factor protein-coding 9.943 0.5417
+81887 LAS1L LAS1 like, ribosome biogenesis factor protein-coding 9.943 0.5416
81888 HYI hydroxypyruvate isomerase (putative) protein-coding 8.379 1.045
-81889 FAHD1 fumarylacetoacetate hydrolase domain containing 1 protein-coding 9.429 0.7811
-8189 SYMPK symplekin protein-coding 11.11 0.5363
-81890 QTRT1 queuine tRNA-ribosyltransferase catalytic subunit 1 protein-coding 9.408 0.8179
-81892 SLIRP SRA stem-loop interacting RNA binding protein protein-coding 9.309 0.7803
-81893 SLC7A5P1 solute carrier family 7 member 5 pseudogene 1 pseudo 0.8911 1.049
-81894 SLC25A28 solute carrier family 25 member 28 protein-coding 9.35 0.6532
-819 CAMLG calcium modulating ligand protein-coding 9.71 0.6318
-8190 MIA melanoma inhibitory activity protein-coding 3.415 2.82
-8192 CLPP caseinolytic mitochondrial matrix peptidase proteolytic subunit protein-coding 9.836 0.6299
-81926 ABHD17A abhydrolase domain containing 17A protein-coding 9.192 0.7305
-81928 CABLES2 Cdk5 and Abl enzyme substrate 2 protein-coding 8.102 0.7973
+81889 FAHD1 fumarylacetoacetate hydrolase domain containing 1 protein-coding 9.428 0.7809
+8189 SYMPK symplekin protein-coding 11.11 0.5361
+81890 QTRT1 queuine tRNA-ribosyltransferase catalytic subunit 1 protein-coding 9.408 0.8176
+81892 SLIRP SRA stem-loop interacting RNA binding protein protein-coding 9.308 0.7805
+81893 SLC7A5P1 solute carrier family 7 member 5 pseudogene 1 pseudo 0.8908 1.049
+81894 SLC25A28 solute carrier family 25 member 28 protein-coding 9.35 0.6529
+819 CAMLG calcium modulating ligand protein-coding 9.71 0.6315
+8190 MIA melanoma inhibitory activity protein-coding 3.416 2.82
+8192 CLPP caseinolytic mitochondrial matrix peptidase proteolytic subunit protein-coding 9.835 0.6298
+81926 ABHD17A abhydrolase domain containing 17A protein-coding 9.192 0.7303
+81928 CABLES2 Cdk5 and Abl enzyme substrate 2 protein-coding 8.101 0.7971
81929 SEH1L SEH1 like nucleoporin protein-coding 9.757 0.5695
-8193 DPF1 double PHD fingers 1 protein-coding 3.258 2.698
-81930 KIF18A kinesin family member 18A protein-coding 6.551 1.837
-81931 ZNF93 zinc finger protein 93 protein-coding 5.824 1.518
+8193 DPF1 double PHD fingers 1 protein-coding 3.257 2.697
+81930 KIF18A kinesin family member 18A protein-coding 6.549 1.837
+81931 ZNF93 zinc finger protein 93 protein-coding 5.825 1.517
81932 HDHD3 haloacid dehalogenase like hydrolase domain containing 3 protein-coding 9.136 1.226
-8195 MKKS McKusick-Kaufman syndrome protein-coding 9.908 0.5805
-820 CAMP cathelicidin antimicrobial peptide protein-coding 1.68 1.858
-8202 NCOA3 nuclear receptor coactivator 3 protein-coding 10.27 0.7795
-8204 NRIP1 nuclear receptor interacting protein 1 protein-coding 10.26 1.015
-8208 CHAF1B chromatin assembly factor 1 subunit B protein-coding 7.561 1.314
-8209 GATD3A glutamine amidotransferase like class 1 domain containing 3A protein-coding 10.9 0.7008
-821 CANX calnexin protein-coding 13.94 0.6199
-8214 DGCR6 DiGeorge syndrome critical region gene 6 protein-coding 8.834 1.225
-8216 LZTR1 leucine zipper like transcription regulator 1 protein-coding 10.01 0.5998
-8218 CLTCL1 clathrin heavy chain like 1 protein-coding 6.762 1.385
+8195 MKKS McKusick-Kaufman syndrome protein-coding 9.908 0.5803
+820 CAMP cathelicidin antimicrobial peptide protein-coding 1.682 1.858
+8202 NCOA3 nuclear receptor coactivator 3 protein-coding 10.27 0.7793
+8204 NRIP1 nuclear receptor interacting protein 1 protein-coding 10.26 1.016
+8208 CHAF1B chromatin assembly factor 1 subunit B protein-coding 7.56 1.314
+8209 GATD3A glutamine amidotransferase like class 1 domain containing 3A protein-coding 10.9 0.7006
+821 CANX calnexin protein-coding 13.94 0.6198
+8214 DGCR6 DiGeorge syndrome critical region gene 6 protein-coding 8.833 1.224
+8216 LZTR1 leucine zipper like transcription regulator 1 protein-coding 10.01 0.5996
+8218 CLTCL1 clathrin heavy chain like 1 protein-coding 6.763 1.384
822 CAPG capping actin protein, gelsolin like protein-coding 11.15 1.668
-8220 ESS2 ess-2 splicing factor homolog protein-coding 8.883 0.6048
-8224 SYN3 synapsin III protein-coding 2.511 2.009
-8225 GTPBP6 GTP binding protein 6 (putative) protein-coding 9.394 0.7206
-8226 PUDP pseudouridine 5'-phosphatase protein-coding 8.715 0.7842
-8227 AKAP17A A-kinase anchoring protein 17A protein-coding 9.839 0.6907
+8220 ESS2 ess-2 splicing factor homolog protein-coding 8.883 0.6046
+8224 SYN3 synapsin III protein-coding 2.511 2.008
+8225 GTPBP6 GTP binding protein 6 (putative) protein-coding 9.394 0.7203
+8226 PUDP pseudouridine 5'-phosphatase protein-coding 8.715 0.784
+8227 AKAP17A A-kinase anchoring protein 17A protein-coding 9.84 0.6906
8228 PNPLA4 patatin like phospholipase domain containing 4 protein-coding 8.469 1.113
-823 CAPN1 calpain 1 protein-coding 12.24 0.8608
-8233 ZRSR2 zinc finger CCCH-type, RNA binding motif and serine/arginine rich 2 protein-coding 7.936 0.7248
-8237 USP11 ubiquitin specific peptidase 11 protein-coding 10.91 0.9653
-8239 USP9X ubiquitin specific peptidase 9, X-linked protein-coding 11.62 0.5714
-824 CAPN2 calpain 2 protein-coding 12.14 0.9033
-8241 RBM10 RNA binding motif protein 10 protein-coding 10.6 0.5204
-8242 KDM5C lysine demethylase 5C protein-coding 11.35 0.5443
-8243 SMC1A structural maintenance of chromosomes 1A protein-coding 11.16 0.7025
+823 CAPN1 calpain 1 protein-coding 12.24 0.8606
+8233 ZRSR2 zinc finger CCCH-type, RNA binding motif and serine/arginine rich 2 protein-coding 7.937 0.7247
+8237 USP11 ubiquitin specific peptidase 11 protein-coding 10.91 0.9649
+8239 USP9X ubiquitin specific peptidase 9, X-linked protein-coding 11.62 0.5712
+824 CAPN2 calpain 2 protein-coding 12.14 0.9035
+8241 RBM10 RNA binding motif protein 10 protein-coding 10.6 0.5202
+8242 KDM5C lysine demethylase 5C protein-coding 11.35 0.5441
+8243 SMC1A structural maintenance of chromosomes 1A protein-coding 11.16 0.7023
825 CAPN3 calpain 3 protein-coding 6.934 1.807
826 CAPNS1 calpain small subunit 1 protein-coding 12.88 0.6146
-8260 NAA10 N(alpha)-acetyltransferase 10, NatA catalytic subunit protein-coding 10.06 0.7223
-8263 F8A1 coagulation factor VIII associated 1 protein-coding 7.423 0.7354
+8260 NAA10 N(alpha)-acetyltransferase 10, NatA catalytic subunit protein-coding 10.06 0.7224
+8263 F8A1 coagulation factor VIII associated 1 protein-coding 7.423 0.7352
8266 UBL4A ubiquitin like 4A protein-coding 10.2 0.5456
-8269 TMEM187 transmembrane protein 187 protein-coding 7.843 0.7555
-8270 LAGE3 L antigen family member 3 protein-coding 8.842 0.8912
-8273 SLC10A3 solute carrier family 10 member 3 protein-coding 9.455 0.8802
-8277 TKTL1 transketolase like 1 protein-coding 1.879 2.315
-828 CAPS calcyphosine protein-coding 8.568 2.105
-8288 EPX eosinophil peroxidase protein-coding 1.016 0.851
-8289 ARID1A AT-rich interaction domain 1A protein-coding 11.16 0.6689
-829 CAPZA1 capping actin protein of muscle Z-line alpha subunit 1 protein-coding 11.48 0.7269
+8269 TMEM187 transmembrane protein 187 protein-coding 7.843 0.7552
+8270 LAGE3 L antigen family member 3 protein-coding 8.841 0.8911
+8273 SLC10A3 solute carrier family 10 member 3 protein-coding 9.455 0.8798
+8277 TKTL1 transketolase like 1 protein-coding 1.88 2.315
+828 CAPS calcyphosine protein-coding 8.569 2.105
+8288 EPX eosinophil peroxidase protein-coding 1.016 0.8507
+8289 ARID1A AT-rich interaction domain 1A protein-coding 11.16 0.6687
+829 CAPZA1 capping actin protein of muscle Z-line alpha subunit 1 protein-coding 11.48 0.7267
8291 DYSF dysferlin protein-coding 8.923 1.428
-8292 COLQ collagen like tail subunit of asymmetric acetylcholinesterase protein-coding 5.486 1.329
-8293 SERF1A small EDRK-rich factor 1A protein-coding 8.946 0.719
+8292 COLQ collagen like tail subunit of asymmetric acetylcholinesterase protein-coding 5.487 1.329
+8293 SERF1A small EDRK-rich factor 1A protein-coding 8.946 0.7188
8294 HIST1H4I histone cluster 1 H4 family member i protein-coding 1.25 0.9661
-8295 TRRAP transformation/transcription domain associated protein protein-coding 10.84 0.6644
-830 CAPZA2 capping actin protein of muscle Z-line alpha subunit 2 protein-coding 11.16 0.6703
-8301 PICALM phosphatidylinositol binding clathrin assembly protein protein-coding 11.74 0.5822
-8303 SNN stannin protein-coding 9.829 1.14
-8309 ACOX2 acyl-CoA oxidase 2 protein-coding 6.607 2.35
-831 CAST calpastatin protein-coding 11.93 0.8802
-8310 ACOX3 acyl-CoA oxidase 3, pristanoyl protein-coding 8.682 0.7262
-8312 AXIN1 axin 1 protein-coding 9.893 0.6151
-8313 AXIN2 axin 2 protein-coding 7.874 1.88
-8314 BAP1 BRCA1 associated protein 1 protein-coding 10.8 0.5607
-8315 BRAP BRCA1 associated protein protein-coding 9.222 0.375
-8317 CDC7 cell division cycle 7 protein-coding 7.381 1.298
-8318 CDC45 cell division cycle 45 protein-coding 7.059 2.107
+8295 TRRAP transformation/transcription domain associated protein protein-coding 10.84 0.6642
+830 CAPZA2 capping actin protein of muscle Z-line alpha subunit 2 protein-coding 11.16 0.6701
+8301 PICALM phosphatidylinositol binding clathrin assembly protein protein-coding 11.74 0.582
+8303 SNN stannin protein-coding 9.829 1.139
+8309 ACOX2 acyl-CoA oxidase 2 protein-coding 6.608 2.349
+831 CAST calpastatin protein-coding 11.93 0.8798
+8310 ACOX3 acyl-CoA oxidase 3, pristanoyl protein-coding 8.682 0.726
+8312 AXIN1 axin 1 protein-coding 9.893 0.6149
+8313 AXIN2 axin 2 protein-coding 7.876 1.88
+8314 BAP1 BRCA1 associated protein 1 protein-coding 10.79 0.5604
+8315 BRAP BRCA1 associated protein protein-coding 9.221 0.375
+8317 CDC7 cell division cycle 7 protein-coding 7.38 1.299
+8318 CDC45 cell division cycle 45 protein-coding 7.056 2.108
832 CAPZB capping actin protein of muscle Z-line beta subunit protein-coding 12.2 0.4988
-8320 EOMES eomesodermin protein-coding 3.789 2.018
-8321 FZD1 frizzled class receptor 1 protein-coding 9.593 1.555
-8322 FZD4 frizzled class receptor 4 protein-coding 9.332 1.408
+8320 EOMES eomesodermin protein-coding 3.79 2.018
+8321 FZD1 frizzled class receptor 1 protein-coding 9.594 1.555
+8322 FZD4 frizzled class receptor 4 protein-coding 9.333 1.407
8323 FZD6 frizzled class receptor 6 protein-coding 9.51 1.556
-8324 FZD7 frizzled class receptor 7 protein-coding 8.553 1.65
+8324 FZD7 frizzled class receptor 7 protein-coding 8.554 1.649
8325 FZD8 frizzled class receptor 8 protein-coding 7.5 1.551
-8326 FZD9 frizzled class receptor 9 protein-coding 3.639 2.058
-8328 GFI1B growth factor independent 1B transcriptional repressor protein-coding 1.098 1.355
+8326 FZD9 frizzled class receptor 9 protein-coding 3.638 2.058
+8328 GFI1B growth factor independent 1B transcriptional repressor protein-coding 1.099 1.355
833 CARS cysteinyl-tRNA synthetase protein-coding 10.05 0.4907
8330 HIST1H2AK histone cluster 1 H2A family member k protein-coding 1.937 1.112
-8331 HIST1H2AJ histone cluster 1 H2A family member j protein-coding 0.8849 1.094
-8332 HIST1H2AL histone cluster 1 H2A family member l protein-coding 0.9437 1.19
-8334 HIST1H2AC histone cluster 1 H2A family member c protein-coding 9.764 1.401
-8336 HIST1H2AM histone cluster 1 H2A family member m protein-coding 2.735 1.497
+8331 HIST1H2AJ histone cluster 1 H2A family member j protein-coding 0.884 1.094
+8332 HIST1H2AL histone cluster 1 H2A family member l protein-coding 0.9429 1.191
+8334 HIST1H2AC histone cluster 1 H2A family member c protein-coding 9.765 1.401
+8336 HIST1H2AM histone cluster 1 H2A family member m protein-coding 2.734 1.498
8337 HIST2H2AA3 histone cluster 2 H2A family member a3 protein-coding 8.964 1.634
-8338 HIST2H2AC histone cluster 2 H2A family member c protein-coding 3.24 1.361
+8338 HIST2H2AC histone cluster 2 H2A family member c protein-coding 3.24 1.36
8339 HIST1H2BG histone cluster 1 H2B family member g protein-coding 3.834 1.945
-83394 PITPNM3 PITPNM family member 3 protein-coding 7.212 1.9
+83394 PITPNM3 PITPNM family member 3 protein-coding 7.213 1.9
834 CASP1 caspase 1 protein-coding 8.169 1.528
-8340 HIST1H2BL histone cluster 1 H2B family member l protein-coding 1.32 1.082
+8340 HIST1H2BL histone cluster 1 H2B family member l protein-coding 1.319 1.082
83401 ELOVL3 ELOVL fatty acid elongase 3 protein-coding 2.569 1.885
-8341 HIST1H2BN histone cluster 1 H2B family member n protein-coding 3.082 1.164
-83416 FCRL5 Fc receptor like 5 protein-coding 4.039 2.913
-8342 HIST1H2BM histone cluster 1 H2B family member m protein-coding 0.466 0.9653
+8341 HIST1H2BN histone cluster 1 H2B family member n protein-coding 3.081 1.165
+83416 FCRL5 Fc receptor like 5 protein-coding 4.04 2.913
+8342 HIST1H2BM histone cluster 1 H2B family member m protein-coding 0.4655 0.9655
8343 HIST1H2BF histone cluster 1 H2B family member f protein-coding 1.549 1.367
-83439 TCF7L1 transcription factor 7 like 1 protein-coding 8.414 1.457
-8344 HIST1H2BE histone cluster 1 H2B family member e protein-coding 3.307 1.298
+83439 TCF7L1 transcription factor 7 like 1 protein-coding 8.414 1.456
+8344 HIST1H2BE histone cluster 1 H2B family member e protein-coding 3.307 1.297
83440 ADPGK ADP dependent glucokinase protein-coding 10.05 0.5869
83442 SH3BGRL3 SH3 domain binding glutamate rich protein like 3 protein-coding 11.95 0.9713
-83443 SF3B5 splicing factor 3b subunit 5 protein-coding 10.6 0.6735
-83444 INO80B INO80 complex subunit B protein-coding 8.469 0.8615
-83448 PUS7L pseudouridylate synthase 7 like protein-coding 7.265 0.8151
+83443 SF3B5 splicing factor 3b subunit 5 protein-coding 10.6 0.6734
+83444 INO80B INO80 complex subunit B protein-coding 8.469 0.8614
+83448 PUS7L pseudouridylate synthase 7 like protein-coding 7.265 0.8147
83449 PMFBP1 polyamine modulated factor 1 binding protein 1 protein-coding 3.098 1.502
-8345 HIST1H2BH histone cluster 1 H2B family member h protein-coding 2.843 1.972
-83450 DRC3 dynein regulatory complex subunit 3 protein-coding 5.137 1.857
-83451 ABHD11 abhydrolase domain containing 11 protein-coding 9.526 1.164
-83452 RAB33B RAB33B, member RAS oncogene family protein-coding 7.923 0.7103
-8346 HIST1H2BI histone cluster 1 H2B family member i protein-coding 0.3566 0.7671
-83460 EMC6 ER membrane protein complex subunit 6 protein-coding 8.496 0.6791
-83461 CDCA3 cell division cycle associated 3 protein-coding 7.413 1.653
-83463 MXD3 MAX dimerization protein 3 protein-coding 7.796 1.023
-83464 APH1B aph-1 homolog B, gamma-secretase subunit protein-coding 8.441 1.164
-83468 GLT8D2 glycosyltransferase 8 domain containing 2 protein-coding 6.699 1.79
+8345 HIST1H2BH histone cluster 1 H2B family member h protein-coding 2.841 1.972
+83450 DRC3 dynein regulatory complex subunit 3 protein-coding 5.137 1.856
+83451 ABHD11 abhydrolase domain containing 11 protein-coding 9.526 1.163
+83452 RAB33B RAB33B, member RAS oncogene family protein-coding 7.924 0.7102
+8346 HIST1H2BI histone cluster 1 H2B family member i protein-coding 0.3561 0.7671
+83460 EMC6 ER membrane protein complex subunit 6 protein-coding 8.495 0.6792
+83461 CDCA3 cell division cycle associated 3 protein-coding 7.411 1.653
+83463 MXD3 MAX dimerization protein 3 protein-coding 7.795 1.023
+83464 APH1B aph-1 homolog B, gamma-secretase subunit protein-coding 8.442 1.164
+83468 GLT8D2 glycosyltransferase 8 domain containing 2 protein-coding 6.7 1.79
8347 HIST1H2BC histone cluster 1 H2B family member c protein-coding 5.828 1.78
83473 KATNAL2 katanin catalytic subunit A1 like 2 protein-coding 5.569 1.515
-83475 DOHH deoxyhypusine hydroxylase protein-coding 8.317 0.8035
-83478 ARHGAP24 Rho GTPase activating protein 24 protein-coding 7.795 1.574
-83479 DDX59 DEAD-box helicase 59 protein-coding 8.408 0.6058
-8348 HIST1H2BO histone cluster 1 H2B family member o protein-coding 1.786 1.322
-83480 PUS3 pseudouridylate synthase 3 protein-coding 7.785 0.5658
+83475 DOHH deoxyhypusine hydroxylase protein-coding 8.317 0.8032
+83478 ARHGAP24 Rho GTPase activating protein 24 protein-coding 7.797 1.574
+83479 DDX59 DEAD-box helicase 59 protein-coding 8.408 0.6056
+8348 HIST1H2BO histone cluster 1 H2B family member o protein-coding 1.785 1.322
+83480 PUS3 pseudouridylate synthase 3 protein-coding 7.785 0.5656
83481 EPPK1 epiplakin 1 protein-coding 7.917 2.703
83483 PLVAP plasmalemma vesicle associated protein protein-coding 10.73 1.641
-8349 HIST2H2BE histone cluster 2 H2B family member e protein-coding 9.04 1.498
-835 CASP2 caspase 2 protein-coding 9.864 0.7527
-8350 HIST1H3A histone cluster 1 H3 family member a protein-coding 0.7606 0.9257
-8351 HIST1H3D histone cluster 1 H3 family member d protein-coding 4.06 1.765
-8352 HIST1H3C histone cluster 1 H3 family member c protein-coding 0.8983 1.23
-8353 HIST1H3E histone cluster 1 H3 family member e protein-coding 4.844 1.587
-83538 TTC25 tetratricopeptide repeat domain 25 protein-coding 4.629 1.778
-8354 HIST1H3I histone cluster 1 H3 family member i protein-coding 0.4083 0.7969
-83540 NUF2 NUF2, NDC80 kinetochore complex component protein-coding 7.116 2.108
-83541 FAM110A family with sequence similarity 110 member A protein-coding 8.536 1.099
-83543 AIF1L allograft inflammatory factor 1 like protein-coding 9.162 2.113
-83544 DNAL1 dynein axonemal light chain 1 protein-coding 8.439 0.8545
+8349 HIST2H2BE histone cluster 2 H2B family member e protein-coding 9.04 1.499
+835 CASP2 caspase 2 protein-coding 9.864 0.7525
+8350 HIST1H3A histone cluster 1 H3 family member a protein-coding 0.7606 0.9255
+8351 HIST1H3D histone cluster 1 H3 family member d protein-coding 4.06 1.764
+8352 HIST1H3C histone cluster 1 H3 family member c protein-coding 0.8978 1.23
+8353 HIST1H3E histone cluster 1 H3 family member e protein-coding 4.845 1.587
+83538 TTC25 tetratricopeptide repeat domain 25 protein-coding 4.63 1.777
+8354 HIST1H3I histone cluster 1 H3 family member i protein-coding 0.4079 0.7966
+83540 NUF2 NUF2, NDC80 kinetochore complex component protein-coding 7.113 2.109
+83541 FAM110A family with sequence similarity 110 member A protein-coding 8.536 1.098
+83543 AIF1L allograft inflammatory factor 1 like protein-coding 9.161 2.112
+83544 DNAL1 dynein axonemal light chain 1 protein-coding 8.44 0.8543
83547 RILP Rab interacting lysosomal protein protein-coding 7.326 1.196
-83548 COG3 component of oligomeric golgi complex 3 protein-coding 9.417 0.6854
-83549 UCK1 uridine-cytidine kinase 1 protein-coding 9.58 0.687
-8355 HIST1H3G histone cluster 1 H3 family member g protein-coding 1.789 1.752
-83552 MFRP membrane frizzled-related protein protein-coding 8.735 1.373
-8356 HIST1H3J histone cluster 1 H3 family member j protein-coding 0.8542 0.9689
-8357 HIST1H3H histone cluster 1 H3 family member h protein-coding 3.582 1.699
-8358 HIST1H3B histone cluster 1 H3 family member b protein-coding 1.032 1.209
-8359 HIST1H4A histone cluster 1 H4 family member a protein-coding 0.3761 0.7436
-83590 TMUB1 transmembrane and ubiquitin like domain containing 1 protein-coding 9.688 0.7939
-83591 THAP2 THAP domain containing 2 protein-coding 6.813 0.828
+83548 COG3 component of oligomeric golgi complex 3 protein-coding 9.417 0.6852
+83549 UCK1 uridine-cytidine kinase 1 protein-coding 9.58 0.6868
+8355 HIST1H3G histone cluster 1 H3 family member g protein-coding 1.788 1.751
+83552 MFRP membrane frizzled-related protein protein-coding 8.735 1.374
+8356 HIST1H3J histone cluster 1 H3 family member j protein-coding 0.8534 0.9687
+8357 HIST1H3H histone cluster 1 H3 family member h protein-coding 3.581 1.699
+8358 HIST1H3B histone cluster 1 H3 family member b protein-coding 1.031 1.209
+8359 HIST1H4A histone cluster 1 H4 family member a protein-coding 0.3757 0.7435
+83590 TMUB1 transmembrane and ubiquitin like domain containing 1 protein-coding 9.688 0.7937
+83591 THAP2 THAP domain containing 2 protein-coding 6.813 0.8277
83592 AKR1E2 aldo-keto reductase family 1 member E2 protein-coding 3.997 1.872
-83593 RASSF5 Ras association domain family member 5 protein-coding 8.833 1.381
+83593 RASSF5 Ras association domain family member 5 protein-coding 8.835 1.382
83594 NUDT12 nudix hydrolase 12 protein-coding 8.282 1.209
-83595 SOX7 SRY-box 7 protein-coding 7.04 1.595
+83595 SOX7 SRY-box 7 protein-coding 7.041 1.595
83596 BCL2L12 BCL2 like 12 protein-coding 8.138 1.286
-836 CASP3 caspase 3 protein-coding 9.521 0.7143
-8360 HIST1H4D histone cluster 1 H4 family member d protein-coding 0.9956 0.997
+836 CASP3 caspase 3 protein-coding 9.521 0.7144
+8360 HIST1H4D histone cluster 1 H4 family member d protein-coding 0.9957 0.9969
83604 TMEM47 transmembrane protein 47 protein-coding 8.776 1.755
-83605 CCM2 CCM2 scaffold protein protein-coding 10.18 0.757
-83606 GUCD1 guanylyl cyclase domain containing 1 protein-coding 11.03 0.6581
-83607 AMMECR1L AMMECR1 like protein-coding 9.444 0.4582
+83605 CCM2 CCM2 scaffold protein protein-coding 10.18 0.7569
+83606 GUCD1 guanylyl cyclase domain containing 1 protein-coding 11.03 0.6579
+83607 AMMECR1L AMMECR1 like protein-coding 9.444 0.4579
83608 C18orf21 chromosome 18 open reading frame 21 protein-coding 7.969 0.5819
-8362 HIST1H4K histone cluster 1 H4 family member k protein-coding 0.2362 0.6142
-8363 HIST1H4J histone cluster 1 H4 family member j protein-coding 4.766 1.376
-83636 C19orf12 chromosome 19 open reading frame 12 protein-coding 9.093 0.6866
-83637 ZMIZ2 zinc finger MIZ-type containing 2 protein-coding 11.34 0.6398
-83638 C11orf68 chromosome 11 open reading frame 68 protein-coding 9.734 0.6255
-8364 HIST1H4C histone cluster 1 H4 family member c protein-coding 0.9457 0.9743
+8362 HIST1H4K histone cluster 1 H4 family member k protein-coding 0.2362 0.614
+8363 HIST1H4J histone cluster 1 H4 family member j protein-coding 4.765 1.377
+83636 C19orf12 chromosome 19 open reading frame 12 protein-coding 9.093 0.6864
+83637 ZMIZ2 zinc finger MIZ-type containing 2 protein-coding 11.34 0.6396
+83638 C11orf68 chromosome 11 open reading frame 68 protein-coding 9.734 0.6253
+8364 HIST1H4C histone cluster 1 H4 family member c protein-coding 0.9455 0.9741
83640 RAMMET RNMT activating mRNA cap methyltransferase subunit protein-coding 8.51 0.5603
-83641 FAM107B family with sequence similarity 107 member B protein-coding 10.38 1.262
-83642 SELENOO selenoprotein O protein-coding 8.986 0.8369
-83643 CCDC3 coiled-coil domain containing 3 protein-coding 8.277 1.44
-83648 FAM167A family with sequence similarity 167 member A protein-coding 6.517 2.465
-8365 HIST1H4H histone cluster 1 H4 family member h protein-coding 6.126 1.727
-83650 SLC35G5 solute carrier family 35 member G5 protein-coding 1.084 0.8831
-83657 DYNLRB2 dynein light chain roadblock-type 2 protein-coding 2.695 1.875
-83658 DYNLRB1 dynein light chain roadblock-type 1 protein-coding 11.25 0.6361
-8366 HIST1H4B histone cluster 1 H4 family member b protein-coding 0.6134 0.8231
-83660 TLN2 talin 2 protein-coding 9.149 1.34
-83666 PARP9 poly(ADP-ribose) polymerase family member 9 protein-coding 10.52 0.9927
-83667 SESN2 sestrin 2 protein-coding 8.819 0.8165
+83641 FAM107B family with sequence similarity 107 member B protein-coding 10.38 1.261
+83642 SELENOO selenoprotein O protein-coding 8.986 0.8366
+83643 CCDC3 coiled-coil domain containing 3 protein-coding 8.277 1.439
+83648 FAM167A family with sequence similarity 167 member A protein-coding 6.518 2.465
+8365 HIST1H4H histone cluster 1 H4 family member h protein-coding 6.126 1.726
+83650 SLC35G5 solute carrier family 35 member G5 protein-coding 1.084 0.8832
+83657 DYNLRB2 dynein light chain roadblock-type 2 protein-coding 2.695 1.874
+83658 DYNLRB1 dynein light chain roadblock-type 1 protein-coding 11.25 0.636
+8366 HIST1H4B histone cluster 1 H4 family member b protein-coding 0.613 0.8229
+83660 TLN2 talin 2 protein-coding 9.149 1.341
+83666 PARP9 poly(ADP-ribose) polymerase family member 9 protein-coding 10.52 0.9924
+83667 SESN2 sestrin 2 protein-coding 8.819 0.8163
8367 HIST1H4E histone cluster 1 H4 family member e protein-coding 2.048 1.402
-83690 CRISPLD1 cysteine rich secretory protein LCCL domain containing 1 protein-coding 7.247 2.385
-83692 CD99L2 CD99 molecule like 2 protein-coding 10.19 1.068
-83693 HSDL1 hydroxysteroid dehydrogenase like 1 protein-coding 9.149 0.6917
+83690 CRISPLD1 cysteine rich secretory protein LCCL domain containing 1 protein-coding 7.248 2.385
+83692 CD99L2 CD99 molecule like 2 protein-coding 10.19 1.067
+83693 HSDL1 hydroxysteroid dehydrogenase like 1 protein-coding 9.149 0.6916
83694 RPS6KL1 ribosomal protein S6 kinase like 1 protein-coding 6.152 1.667
-83695 RHNO1 RAD9-HUS1-RAD1 interacting nuclear orphan 1 protein-coding 9.404 0.6773
-83696 TRAPPC9 trafficking protein particle complex 9 protein-coding 9.715 0.6515
-83697 SLC4A9 solute carrier family 4 member 9 protein-coding 0.9246 1.18
-83698 CALN1 calneuron 1 protein-coding 2.398 2.968
-83699 SH3BGRL2 SH3 domain binding glutamate rich protein like 2 protein-coding 9.299 1.788
-837 CASP4 caspase 4 protein-coding 9.344 1.368
+83695 RHNO1 RAD9-HUS1-RAD1 interacting nuclear orphan 1 protein-coding 9.403 0.6773
+83696 TRAPPC9 trafficking protein particle complex 9 protein-coding 9.715 0.6512
+83697 SLC4A9 solute carrier family 4 member 9 protein-coding 0.9246 1.179
+83698 CALN1 calneuron 1 protein-coding 2.401 2.968
+83699 SH3BGRL2 SH3 domain binding glutamate rich protein like 2 protein-coding 9.3 1.788
+837 CASP4 caspase 4 protein-coding 9.344 1.367
8370 HIST2H4A histone cluster 2 H4 family member a protein-coding 8.132 1.286
-83700 JAM3 junctional adhesion molecule 3 protein-coding 8.916 1.51
-83706 FERMT3 fermitin family member 3 protein-coding 8.502 1.415
-83707 TRPT1 tRNA phosphotransferase 1 protein-coding 8.743 0.7058
-83714 NRIP2 nuclear receptor interacting protein 2 protein-coding 6.05 1.363
-83715 ESPN espin protein-coding 6.972 2.871
-83716 CRISPLD2 cysteine rich secretory protein LCCL domain containing 2 protein-coding 9.403 1.719
-83719 YPEL3 yippee like 3 protein-coding 9.866 0.9262
-8372 HYAL3 hyaluronoglucosaminidase 3 protein-coding 6.316 0.9631
-83723 FAM57B family with sequence similarity 57 member B protein-coding 2.891 2.64
-83729 INHBE inhibin beta E subunit protein-coding 3.167 2.33
-83732 RIOK1 RIO kinase 1 protein-coding 8.877 0.6909
-83733 SLC25A18 solute carrier family 25 member 18 protein-coding 4.46 2.617
+83700 JAM3 junctional adhesion molecule 3 protein-coding 8.917 1.51
+83706 FERMT3 fermitin family member 3 protein-coding 8.502 1.416
+83707 TRPT1 tRNA phosphotransferase 1 protein-coding 8.742 0.7059
+83714 NRIP2 nuclear receptor interacting protein 2 protein-coding 6.051 1.363
+83715 ESPN espin protein-coding 6.97 2.871
+83716 CRISPLD2 cysteine rich secretory protein LCCL domain containing 2 protein-coding 9.405 1.72
+83719 YPEL3 yippee like 3 protein-coding 9.867 0.9259
+8372 HYAL3 hyaluronoglucosaminidase 3 protein-coding 6.315 0.9631
+83723 FAM57B family with sequence similarity 57 member B protein-coding 2.89 2.64
+83729 INHBE inhibin beta E subunit protein-coding 3.166 2.329
+83732 RIOK1 RIO kinase 1 protein-coding 8.876 0.6907
+83733 SLC25A18 solute carrier family 25 member 18 protein-coding 4.46 2.616
83734 ATG10 autophagy related 10 protein-coding 6.69 0.6284
-83737 ITCH itchy E3 ubiquitin protein ligase protein-coding 10.36 0.5553
-83742 MARVELD1 MARVEL domain containing 1 protein-coding 9.225 1.508
-83743 GRWD1 glutamate rich WD repeat containing 1 protein-coding 9.771 0.5832
-83744 ZNF484 zinc finger protein 484 protein-coding 6.172 0.8115
-83746 L3MBTL2 L3MBTL2, polycomb repressive complex 1 subunit protein-coding 9.737 0.4552
-83752 LONP2 lon peptidase 2, peroxisomal protein-coding 10.32 0.7399
-83756 TAS1R3 taste 1 receptor member 3 protein-coding 3.497 1.622
-83758 RBP5 retinol binding protein 5 protein-coding 5.735 2.648
-83759 RBM4B RNA binding motif protein 4B protein-coding 8.242 0.6033
-83786 FRMD8 FERM domain containing 8 protein-coding 10.03 0.7316
-83787 ARMC10 armadillo repeat containing 10 protein-coding 9.478 0.5281
-8379 MAD1L1 mitotic arrest deficient 1 like 1 protein-coding 9.146 0.7715
+83737 ITCH itchy E3 ubiquitin protein ligase protein-coding 10.36 0.555
+83742 MARVELD1 MARVEL domain containing 1 protein-coding 9.226 1.508
+83743 GRWD1 glutamate rich WD repeat containing 1 protein-coding 9.771 0.583
+83744 ZNF484 zinc finger protein 484 protein-coding 6.173 0.8114
+83746 L3MBTL2 L3MBTL2, polycomb repressive complex 1 subunit protein-coding 9.737 0.4551
+83752 LONP2 lon peptidase 2, peroxisomal protein-coding 10.32 0.7397
+83756 TAS1R3 taste 1 receptor member 3 protein-coding 3.497 1.621
+83758 RBP5 retinol binding protein 5 protein-coding 5.736 2.647
+83759 RBM4B RNA binding motif protein 4B protein-coding 8.242 0.6031
+83786 FRMD8 FERM domain containing 8 protein-coding 10.03 0.7315
+83787 ARMC10 armadillo repeat containing 10 protein-coding 9.478 0.528
+8379 MAD1L1 mitotic arrest deficient 1 like 1 protein-coding 9.145 0.7712
838 CASP5 caspase 5 protein-coding 1.891 1.779
-83849 SYT15 synaptotagmin 15 protein-coding 5.363 1.4
-83850 ESYT3 extended synaptotagmin 3 protein-coding 4.478 2.285
-83852 SETDB2 SET domain bifurcated 2 protein-coding 8.105 0.7168
-83853 ROPN1L rhophilin associated tail protein 1 like protein-coding 2.598 2.017
+83849 SYT15 synaptotagmin 15 protein-coding 5.365 1.402
+83850 ESYT3 extended synaptotagmin 3 protein-coding 4.479 2.285
+83852 SETDB2 SET domain bifurcated 2 protein-coding 8.105 0.7169
+83853 ROPN1L rhophilin associated tail protein 1 like protein-coding 2.597 2.017
83854 ANGPTL6 angiopoietin like 6 protein-coding 2.857 1.514
-83855 KLF16 Kruppel like factor 16 protein-coding 9.182 0.7998
-83856 FSD1L fibronectin type III and SPRY domain containing 1 like protein-coding 5.855 1.359
-83857 TMTC1 transmembrane and tetratricopeptide repeat containing 1 protein-coding 8.174 1.763
-83858 ATAD3B ATPase family, AAA domain containing 3B protein-coding 8.581 1.171
-83860 TAF3 TATA-box binding protein associated factor 3 protein-coding 7.445 0.6709
-83861 RSPH3 radial spoke head 3 homolog protein-coding 7.007 0.8342
-83862 TMEM120A transmembrane protein 120A protein-coding 9.56 0.8025
-83871 RAB34 RAB34, member RAS oncogene family protein-coding 9.98 1.609
-83872 HMCN1 hemicentin 1 protein-coding 7.536 2.11
+83855 KLF16 Kruppel like factor 16 protein-coding 9.182 0.8
+83856 FSD1L fibronectin type III and SPRY domain containing 1 like protein-coding 5.855 1.358
+83857 TMTC1 transmembrane and tetratricopeptide repeat containing 1 protein-coding 8.174 1.762
+83858 ATAD3B ATPase family, AAA domain containing 3B protein-coding 8.581 1.17
+83860 TAF3 TATA-box binding protein associated factor 3 protein-coding 7.445 0.6708
+83861 RSPH3 radial spoke head 3 homolog protein-coding 7.007 0.8339
+83862 TMEM120A transmembrane protein 120A protein-coding 9.56 0.8022
+83871 RAB34 RAB34, member RAS oncogene family protein-coding 9.979 1.609
+83872 HMCN1 hemicentin 1 protein-coding 7.537 2.11
83874 TBC1D10A TBC1 domain family member 10A protein-coding 9.089 0.7767
-83875 BCO2 beta-carotene oxygenase 2 protein-coding 4.518 1.766
-83876 MRO maestro protein-coding 4.444 2.464
-83877 TM2D2 TM2 domain containing 2 protein-coding 9.936 0.6211
-83878 USHBP1 USH1 protein network component harmonin binding protein 1 protein-coding 5.146 1.447
+83875 BCO2 beta-carotene oxygenase 2 protein-coding 4.519 1.767
+83876 MRO maestro protein-coding 4.445 2.464
+83877 TM2D2 TM2 domain containing 2 protein-coding 9.936 0.6209
+83878 USHBP1 USH1 protein network component harmonin binding protein 1 protein-coding 5.147 1.447
83879 CDCA7 cell division cycle associated 7 protein-coding 7.725 2.494
-83881 MIXL1 Mix paired-like homeobox protein-coding 0.7766 1.128
-83882 TSPAN10 tetraspanin 10 protein-coding 4.655 2.212
-83884 SLC25A2 solute carrier family 25 member 2 protein-coding 0.7963 0.7584
-83886 PRSS27 serine protease 27 protein-coding 5.226 1.934
-83887 TTLL2 tubulin tyrosine ligase like 2 protein-coding 1.821 1.7
-83888 FGFBP2 fibroblast growth factor binding protein 2 protein-coding 3.171 2.169
-83889 WDR87 WD repeat domain 87 protein-coding 1.138 1.557
-83890 SPATA9 spermatogenesis associated 9 protein-coding 2.511 1.09
-83891 SNX25 sorting nexin 25 protein-coding 8.405 1.046
+83881 MIXL1 Mix paired-like homeobox protein-coding 0.7764 1.128
+83882 TSPAN10 tetraspanin 10 protein-coding 4.655 2.211
+83884 SLC25A2 solute carrier family 25 member 2 protein-coding 0.7963 0.7583
+83886 PRSS27 serine protease 27 protein-coding 5.225 1.933
+83887 TTLL2 tubulin tyrosine ligase like 2 protein-coding 1.822 1.699
+83888 FGFBP2 fibroblast growth factor binding protein 2 protein-coding 3.172 2.168
+83889 WDR87 WD repeat domain 87 protein-coding 1.139 1.558
+83890 SPATA9 spermatogenesis associated 9 protein-coding 2.511 1.089
+83891 SNX25 sorting nexin 25 protein-coding 8.405 1.045
83892 KCTD10 potassium channel tetramerization domain containing 10 protein-coding 10.47 0.5906
839 CASP6 caspase 6 protein-coding 8.312 1.051
-83903 HASPIN histone H3 associated protein kinase protein-coding 5.352 1.826
-83930 STARD3NL STARD3 N-terminal like protein-coding 9.5 0.8436
-83931 STK40 serine/threonine kinase 40 protein-coding 10.26 0.6388
-83932 SPRTN SprT-like N-terminal domain protein-coding 7.658 0.66
-83933 HDAC10 histone deacetylase 10 protein-coding 8.939 0.7767
-83937 RASSF4 Ras association domain family member 4 protein-coding 9.636 1.677
+83903 HASPIN histone H3 associated protein kinase protein-coding 5.351 1.826
+83930 STARD3NL STARD3 N-terminal like protein-coding 9.501 0.8432
+83931 STK40 serine/threonine kinase 40 protein-coding 10.26 0.6387
+83932 SPRTN SprT-like N-terminal domain protein-coding 7.657 0.6598
+83933 HDAC10 histone deacetylase 10 protein-coding 8.939 0.7766
+83937 RASSF4 Ras association domain family member 4 protein-coding 9.637 1.677
83938 LRMDA leucine rich melanocyte differentiation associated protein-coding 5.686 1.707
-83939 EIF2A eukaryotic translation initiation factor 2A protein-coding 10.87 0.5511
-8394 PIP5K1A phosphatidylinositol-4-phosphate 5-kinase type 1 alpha protein-coding 10.25 0.6334
-83940 TATDN1 TatD DNase domain containing 1 protein-coding 8.394 0.685
+83939 EIF2A eukaryotic translation initiation factor 2A protein-coding 10.87 0.5509
+8394 PIP5K1A phosphatidylinositol-4-phosphate 5-kinase type 1 alpha protein-coding 10.25 0.6331
+83940 TATDN1 TatD DNase domain containing 1 protein-coding 8.394 0.6848
83941 TM2D1 TM2 domain containing 1 protein-coding 8.382 0.5857
-83943 IMMP2L inner mitochondrial membrane peptidase subunit 2 protein-coding 6.903 1.021
-8395 PIP5K1B phosphatidylinositol-4-phosphate 5-kinase type 1 beta protein-coding 5.835 2.356
+83943 IMMP2L inner mitochondrial membrane peptidase subunit 2 protein-coding 6.903 1.02
+8395 PIP5K1B phosphatidylinositol-4-phosphate 5-kinase type 1 beta protein-coding 5.837 2.356
83953 FCAMR Fc fragment of IgA and IgM receptor protein-coding 2.145 2.558
-83955 NACAP1 nascent polypeptide associated complex alpha subunit pseudogene 1 pseudo 7.176 0.9702
-83956 RACGAP1P Rac GTPase activating protein 1 pseudogene pseudo 1.742 1.082
+83955 NACAP1 nascent polypeptide associated complex alpha subunit pseudogene 1 pseudo 7.176 0.9699
+83956 RACGAP1P Rac GTPase activating protein 1 pseudogene pseudo 1.741 1.083
83959 SLC4A11 solute carrier family 4 member 11 protein-coding 6.989 2.229
-8396 PIP4K2B phosphatidylinositol-5-phosphate 4-kinase type 2 beta protein-coding 10.88 0.697
-8398 PLA2G6 phospholipase A2 group VI protein-coding 8.276 1.086
-83982 IFI27L2 interferon alpha inducible protein 27 like 2 protein-coding 8.391 1.495
-83983 TSSK6 testis specific serine kinase 6 protein-coding 4.672 0.8729
+8396 PIP4K2B phosphatidylinositol-5-phosphate 4-kinase type 2 beta protein-coding 10.88 0.6967
+8398 PLA2G6 phospholipase A2 group VI protein-coding 8.277 1.086
+83982 IFI27L2 interferon alpha inducible protein 27 like 2 protein-coding 8.391 1.494
+83983 TSSK6 testis specific serine kinase 6 protein-coding 4.672 0.8726
83985 SPNS1 sphingolipid transporter 1 (putative) protein-coding 10.11 0.6136
-83986 FAM234A family with sequence similarity 234 member A protein-coding 11.2 0.6798
-83987 CCDC8 coiled-coil domain containing 8 protein-coding 7.265 2.266
-83988 NCALD neurocalcin delta protein-coding 8.476 1.621
-83989 FAM172A family with sequence similarity 172 member A protein-coding 8.742 0.7815
-8399 PLA2G10 phospholipase A2 group X protein-coding 3.062 2.72
-83990 BRIP1 BRCA1 interacting protein C-terminal helicase 1 protein-coding 5.846 1.873
-83992 CTTNBP2 cortactin binding protein 2 protein-coding 6.203 2.557
-83998 REG4 regenerating family member 4 protein-coding 2.396 3.738
-83999 KREMEN1 kringle containing transmembrane protein 1 protein-coding 9.645 1.345
-840 CASP7 caspase 7 protein-coding 9.336 1.027
-84000 TMPRSS13 transmembrane serine protease 13 protein-coding 6.039 3.076
-84002 B3GNT5 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 5 protein-coding 8.835 1.907
-8402 SLC25A11 solute carrier family 25 member 11 protein-coding 10.27 0.611
-84033 OBSCN obscurin, cytoskeletal calmodulin and titin-interacting RhoGEF protein-coding 8.472 1.743
+83986 FAM234A family with sequence similarity 234 member A protein-coding 11.2 0.6795
+83987 CCDC8 coiled-coil domain containing 8 protein-coding 7.267 2.266
+83988 NCALD neurocalcin delta protein-coding 8.477 1.62
+83989 FAM172A family with sequence similarity 172 member A protein-coding 8.743 0.7813
+8399 PLA2G10 phospholipase A2 group X protein-coding 3.063 2.72
+83990 BRIP1 BRCA1 interacting protein C-terminal helicase 1 protein-coding 5.844 1.873
+83992 CTTNBP2 cortactin binding protein 2 protein-coding 6.204 2.557
+83998 REG4 regenerating family member 4 protein-coding 2.398 3.739
+83999 KREMEN1 kringle containing transmembrane protein 1 protein-coding 9.645 1.344
+840 CASP7 caspase 7 protein-coding 9.336 1.026
+84000 TMPRSS13 transmembrane serine protease 13 protein-coding 6.039 3.075
+84002 B3GNT5 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 5 protein-coding 8.835 1.906
+8402 SLC25A11 solute carrier family 25 member 11 protein-coding 10.27 0.6108
+84033 OBSCN obscurin, cytoskeletal calmodulin and titin-interacting RhoGEF protein-coding 8.473 1.743
84034 EMILIN2 elastin microfibril interfacer 2 protein-coding 8.35 1.488
8404 SPARCL1 SPARC like 1 protein-coding 11.7 2.034
-8405 SPOP speckle type BTB/POZ protein protein-coding 10.19 0.5302
+8405 SPOP speckle type BTB/POZ protein protein-coding 10.19 0.5304
84054 PCDHB19P protocadherin beta 19 pseudogene pseudo 2.558 1.288
84056 KATNAL1 katanin catalytic subunit A1 like 1 protein-coding 7.981 1.072
-84057 MND1 meiotic nuclear divisions 1 protein-coding 5.503 1.762
+84057 MND1 meiotic nuclear divisions 1 protein-coding 5.501 1.763
84058 WDR54 WD repeat domain 54 protein-coding 8.063 1.194
-84059 ADGRV1 adhesion G protein-coupled receptor V1 protein-coding 6.208 2.955
-8406 SRPX sushi repeat containing protein, X-linked protein-coding 7.104 2.209
-84060 RBM48 RNA binding motif protein 48 protein-coding 7.986 0.527
-84061 MAGT1 magnesium transporter 1 protein-coding 11.2 0.6189
-84062 DTNBP1 dystrobrevin binding protein 1 protein-coding 8.465 0.6404
-84063 KIRREL2 kirre like nephrin family adhesion molecule 2 protein-coding 2.335 2.344
-84064 HDHD2 haloacid dehalogenase like hydrolase domain containing 2 protein-coding 9.347 0.7843
+84059 ADGRV1 adhesion G protein-coupled receptor V1 protein-coding 6.208 2.954
+8406 SRPX sushi repeat containing protein, X-linked protein-coding 7.106 2.209
+84060 RBM48 RNA binding motif protein 48 protein-coding 7.986 0.5268
+84061 MAGT1 magnesium transporter 1 protein-coding 11.2 0.6188
+84062 DTNBP1 dystrobrevin binding protein 1 protein-coding 8.465 0.6403
+84063 KIRREL2 kirre like nephrin family adhesion molecule 2 protein-coding 2.336 2.344
+84064 HDHD2 haloacid dehalogenase like hydrolase domain containing 2 protein-coding 9.348 0.7842
84065 TMEM222 transmembrane protein 222 protein-coding 9.84 0.6262
-84067 FAM160A2 family with sequence similarity 160 member A2 protein-coding 9.462 0.5398
-84068 SLC10A7 solute carrier family 10 member 7 protein-coding 7.518 0.7726
+84067 FAM160A2 family with sequence similarity 160 member A2 protein-coding 9.463 0.5398
+84068 SLC10A7 solute carrier family 10 member 7 protein-coding 7.518 0.7723
84069 PLEKHN1 pleckstrin homology domain containing N1 protein-coding 5.422 2.472
-8407 TAGLN2 transgelin 2 protein-coding 13.39 1.359
-84070 FAM186B family with sequence similarity 186 member B protein-coding 3.454 1.036
-84071 ARMC2 armadillo repeat containing 2 protein-coding 5.276 0.9042
-84072 HORMAD1 HORMA domain containing 1 protein-coding 2.038 2.752
-84073 MYCBPAP MYCBP associated protein protein-coding 2.841 1.571
-84074 QRICH2 glutamine rich 2 protein-coding 5.869 1.293
-84078 KBTBD7 kelch repeat and BTB domain containing 7 protein-coding 6.755 1.23
+8407 TAGLN2 transgelin 2 protein-coding 13.39 1.358
+84070 FAM186B family with sequence similarity 186 member B protein-coding 3.455 1.036
+84071 ARMC2 armadillo repeat containing 2 protein-coding 5.277 0.9043
+84072 HORMAD1 HORMA domain containing 1 protein-coding 2.037 2.752
+84073 MYCBPAP MYCBP associated protein protein-coding 2.842 1.571
+84074 QRICH2 glutamine rich 2 protein-coding 5.87 1.293
+84078 KBTBD7 kelch repeat and BTB domain containing 7 protein-coding 6.756 1.229
84079 ANKRD27 ankyrin repeat domain 27 protein-coding 9.602 0.6641
-8408 ULK1 unc-51 like autophagy activating kinase 1 protein-coding 10.42 0.7209
-84080 ENKD1 enkurin domain containing 1 protein-coding 8.274 1.08
-84081 NSRP1 nuclear speckle splicing regulatory protein 1 protein-coding 9.41 0.5163
-84083 ZRANB3 zinc finger RANBP2-type containing 3 protein-coding 5.922 0.9276
-84084 RAB6C RAB6C, member RAS oncogene family protein-coding 5.965 0.9456
-84085 FBXO30 F-box protein 30 protein-coding 8.54 0.7928
-8409 UXT ubiquitously expressed prefoldin like chaperone protein-coding 9.975 0.6555
+8408 ULK1 unc-51 like autophagy activating kinase 1 protein-coding 10.42 0.7207
+84080 ENKD1 enkurin domain containing 1 protein-coding 8.274 1.079
+84081 NSRP1 nuclear speckle splicing regulatory protein 1 protein-coding 9.41 0.5161
+84083 ZRANB3 zinc finger RANBP2-type containing 3 protein-coding 5.922 0.9274
+84084 RAB6C RAB6C, member RAS oncogene family protein-coding 5.965 0.9453
+84085 FBXO30 F-box protein 30 protein-coding 8.54 0.7929
+8409 UXT ubiquitously expressed prefoldin like chaperone protein-coding 9.975 0.6553
84099 ID2B inhibitor of DNA binding 2B, HLH protein (pseudogene) pseudo 2.394 1.195
841 CASP8 caspase 8 protein-coding 8.889 1.139
-84100 ARL6 ADP ribosylation factor like GTPase 6 protein-coding 5.976 0.8719
-84101 USP44 ubiquitin specific peptidase 44 protein-coding 2.916 1.847
-84102 SLC41A2 solute carrier family 41 member 2 protein-coding 7.54 1.55
-84105 PCBD2 pterin-4 alpha-carbinolamine dehydratase 2 protein-coding 8.215 0.6614
-84106 PRAM1 PML-RARA regulated adaptor molecule 1 protein-coding 5.066 1.526
-84108 PCGF6 polycomb group ring finger 6 protein-coding 7.407 0.6613
-8411 EEA1 early endosome antigen 1 protein-coding 9.389 0.7759
-8412 BCAR3 BCAR3, NSP family adaptor protein protein-coding 8.737 1.036
-84124 ZNF394 zinc finger protein 394 protein-coding 8.787 0.505
-84126 ATRIP ATR interacting protein protein-coding 7.86 0.6451
-84128 WDR75 WD repeat domain 75 protein-coding 9.722 0.6124
-84129 ACAD11 acyl-CoA dehydrogenase family member 11 protein-coding 8.767 1.198
-84131 CEP78 centrosomal protein 78 protein-coding 7.958 0.8097
-84132 USP42 ubiquitin specific peptidase 42 protein-coding 8.557 0.5395
+84100 ARL6 ADP ribosylation factor like GTPase 6 protein-coding 5.976 0.8717
+84101 USP44 ubiquitin specific peptidase 44 protein-coding 2.918 1.847
+84102 SLC41A2 solute carrier family 41 member 2 protein-coding 7.541 1.55
+84105 PCBD2 pterin-4 alpha-carbinolamine dehydratase 2 protein-coding 8.215 0.6611
+84106 PRAM1 PML-RARA regulated adaptor molecule 1 protein-coding 5.067 1.527
+84108 PCGF6 polycomb group ring finger 6 protein-coding 7.407 0.6611
+8411 EEA1 early endosome antigen 1 protein-coding 9.389 0.7757
+8412 BCAR3 BCAR3, NSP family adaptor protein protein-coding 8.738 1.036
+84124 ZNF394 zinc finger protein 394 protein-coding 8.787 0.5049
+84126 ATRIP ATR interacting protein protein-coding 7.86 0.6449
+84128 WDR75 WD repeat domain 75 protein-coding 9.722 0.6123
+84129 ACAD11 acyl-CoA dehydrogenase family member 11 protein-coding 8.767 1.197
+84131 CEP78 centrosomal protein 78 protein-coding 7.957 0.8097
+84132 USP42 ubiquitin specific peptidase 42 protein-coding 8.557 0.5392
84133 ZNRF3 zinc and ring finger 3 protein-coding 8.819 1.075
-84134 TOMM40L translocase of outer mitochondrial membrane 40 like protein-coding 8.764 0.7544
-84135 UTP15 UTP15, small subunit processome component protein-coding 7.948 0.5613
-84138 SLC7A6OS solute carrier family 7 member 6 opposite strand protein-coding 7.474 0.7046
+84134 TOMM40L translocase of outer mitochondrial membrane 40 like protein-coding 8.763 0.7542
+84135 UTP15 UTP15, small subunit processome component protein-coding 7.948 0.5612
+84138 SLC7A6OS solute carrier family 7 member 6 opposite strand protein-coding 7.474 0.7044
84140 FAM161A family with sequence similarity 161 member A protein-coding 6.653 1.019
-84142 ABRAXAS1 abraxas 1, BRCA1 A complex subunit protein-coding 7.449 0.7697
-84144 SYDE2 synapse defective Rho GTPase homolog 2 protein-coding 5.597 1.637
-84146 ZNF644 zinc finger protein 644 protein-coding 9.617 0.6405
-84148 KAT8 lysine acetyltransferase 8 protein-coding 9.431 0.62
-84152 PPP1R1B protein phosphatase 1 regulatory inhibitor subunit 1B protein-coding 7.047 4.165
-84153 RNASEH2C ribonuclease H2 subunit C protein-coding 9.541 0.8038
-84154 RPF2 ribosome production factor 2 homolog protein-coding 8.647 0.7246
+84142 ABRAXAS1 abraxas 1, BRCA1 A complex subunit protein-coding 7.45 0.7696
+84144 SYDE2 synapse defective Rho GTPase homolog 2 protein-coding 5.598 1.638
+84146 ZNF644 zinc finger protein 644 protein-coding 9.617 0.6402
+84148 KAT8 lysine acetyltransferase 8 protein-coding 9.431 0.6197
+84152 PPP1R1B protein phosphatase 1 regulatory inhibitor subunit 1B protein-coding 7.05 4.165
+84153 RNASEH2C ribonuclease H2 subunit C protein-coding 9.541 0.8034
+84154 RPF2 ribosome production factor 2 homolog protein-coding 8.646 0.7246
84159 ARID5B AT-rich interaction domain 5B protein-coding 10.13 1.137
8416 ANXA9 annexin A9 protein-coding 6.425 2.123
84162 KIAA1109 KIAA1109 protein-coding 10.23 0.8912
-84163 GTF2IRD2 GTF2I repeat domain containing 2 protein-coding 8.28 0.9038
-84164 ASCC2 activating signal cointegrator 1 complex subunit 2 protein-coding 10.58 0.5979
-84166 NLRC5 NLR family CARD domain containing 5 protein-coding 9.325 1.296
-84167 C19orf44 chromosome 19 open reading frame 44 protein-coding 7.42 0.7422
-84168 ANTXR1 anthrax toxin receptor 1 protein-coding 10.96 1.501
-8417 STX7 syntaxin 7 protein-coding 10.2 0.6868
-84171 LOXL4 lysyl oxidase like 4 protein-coding 6.76 2.316
-84172 POLR1B RNA polymerase I subunit B protein-coding 9.253 0.615
-84173 ELMOD3 ELMO domain containing 3 protein-coding 8.25 0.5598
-84174 SLA2 Src like adaptor 2 protein-coding 5.023 1.772
-84179 SLC49A3 solute carrier family 49 member 3 protein-coding 6.605 1.586
-8418 CMAHP cytidine monophospho-N-acetylneuraminic acid hydroxylase, pseudogene pseudo 6.805 1.741
-84181 CHD6 chromodomain helicase DNA binding protein 6 protein-coding 10.19 0.8518
-84182 MINDY4 MINDY lysine 48 deubiquitinase 4 protein-coding 7.455 0.979
-84186 ZCCHC7 zinc finger CCHC-type containing 7 protein-coding 8.688 0.5772
-84187 TMEM164 transmembrane protein 164 protein-coding 9.281 0.8321
-84188 FAR1 fatty acyl-CoA reductase 1 protein-coding 10.15 0.9906
-84189 SLITRK6 SLIT and NTRK like family member 6 protein-coding 4.903 3.477
-8419 BFSP2 beaded filament structural protein 2 protein-coding 1.393 1.499
-84190 METTL25 methyltransferase like 25 protein-coding 6.424 0.7162
-84191 FAM96A family with sequence similarity 96 member A protein-coding 9.704 0.648
-84193 SETD3 SET domain containing 3 protein-coding 10.49 0.5208
-84196 USP48 ubiquitin specific peptidase 48 protein-coding 10.16 0.4993
-84197 POMK protein-O-mannose kinase protein-coding 4.495 1.496
-842 CASP9 caspase 9 protein-coding 8.502 0.6591
-8420 SNHG3 small nucleolar RNA host gene 3 ncRNA 6.029 1.267
-84206 MEX3B mex-3 RNA binding family member B protein-coding 6.176 1.429
-84215 ZNF541 zinc finger protein 541 protein-coding 3.416 2.003
-84216 TMEM117 transmembrane protein 117 protein-coding 7.142 1.091
-84217 ZMYND12 zinc finger MYND-type containing 12 protein-coding 4.981 1.66
-84219 WDR24 WD repeat domain 24 protein-coding 8.68 0.5978
-84220 RGPD5 RANBP2-like and GRIP domain containing 5 protein-coding 5.411 1.584
-84221 SPATC1L spermatogenesis and centriole associated 1 like protein-coding 7.145 1.715
+84163 GTF2IRD2 GTF2I repeat domain containing 2 protein-coding 8.281 0.9038
+84164 ASCC2 activating signal cointegrator 1 complex subunit 2 protein-coding 10.58 0.5977
+84166 NLRC5 NLR family CARD domain containing 5 protein-coding 9.325 1.297
+84167 C19orf44 chromosome 19 open reading frame 44 protein-coding 7.421 0.7421
+84168 ANTXR1 anthrax toxin receptor 1 protein-coding 10.97 1.501
+8417 STX7 syntaxin 7 protein-coding 10.2 0.6867
+84171 LOXL4 lysyl oxidase like 4 protein-coding 6.762 2.317
+84172 POLR1B RNA polymerase I subunit B protein-coding 9.253 0.6149
+84173 ELMOD3 ELMO domain containing 3 protein-coding 8.25 0.5597
+84174 SLA2 Src like adaptor 2 protein-coding 5.024 1.772
+84179 SLC49A3 solute carrier family 49 member 3 protein-coding 6.606 1.586
+8418 CMAHP cytidine monophospho-N-acetylneuraminic acid hydroxylase, pseudogene pseudo 6.807 1.742
+84181 CHD6 chromodomain helicase DNA binding protein 6 protein-coding 10.19 0.8516
+84182 MINDY4 MINDY lysine 48 deubiquitinase 4 protein-coding 7.455 0.9787
+84186 ZCCHC7 zinc finger CCHC-type containing 7 protein-coding 8.688 0.577
+84187 TMEM164 transmembrane protein 164 protein-coding 9.281 0.8319
+84188 FAR1 fatty acyl-CoA reductase 1 protein-coding 10.15 0.9901
+84189 SLITRK6 SLIT and NTRK like family member 6 protein-coding 4.904 3.477
+8419 BFSP2 beaded filament structural protein 2 protein-coding 1.394 1.498
+84190 METTL25 methyltransferase like 25 protein-coding 6.424 0.7161
+84191 FAM96A family with sequence similarity 96 member A protein-coding 9.704 0.6479
+84193 SETD3 SET domain containing 3 protein-coding 10.5 0.5206
+84196 USP48 ubiquitin specific peptidase 48 protein-coding 10.16 0.4991
+84197 POMK protein-O-mannose kinase protein-coding 4.495 1.495
+842 CASP9 caspase 9 protein-coding 8.502 0.659
+8420 SNHG3 small nucleolar RNA host gene 3 ncRNA 6.028 1.267
+84206 MEX3B mex-3 RNA binding family member B protein-coding 6.175 1.428
+84215 ZNF541 zinc finger protein 541 protein-coding 3.416 2.002
+84216 TMEM117 transmembrane protein 117 protein-coding 7.141 1.091
+84217 ZMYND12 zinc finger MYND-type containing 12 protein-coding 4.982 1.66
+84219 WDR24 WD repeat domain 24 protein-coding 8.68 0.5975
+84220 RGPD5 RANBP2-like and GRIP domain containing 5 protein-coding 5.412 1.584
+84221 SPATC1L spermatogenesis and centriole associated 1 like protein-coding 7.146 1.714
84222 TMEM191A transmembrane protein 191A (pseudogene) pseudo 4.467 1.37
84223 IQCG IQ motif containing G protein-coding 7.64 1.156
-84224 NBPF3 NBPF member 3 protein-coding 6.577 1.195
-84225 ZMYND15 zinc finger MYND-type containing 15 protein-coding 5.991 1.26
-84226 C2orf16 chromosome 2 open reading frame 16 protein-coding 5.092 0.9981
-84229 DRC7 dynein regulatory complex subunit 7 protein-coding 2.127 2.268
+84224 NBPF3 NBPF member 3 protein-coding 6.578 1.195
+84225 ZMYND15 zinc finger MYND-type containing 15 protein-coding 5.992 1.26
+84226 C2orf16 chromosome 2 open reading frame 16 protein-coding 5.092 0.9977
+84229 DRC7 dynein regulatory complex subunit 7 protein-coding 2.127 2.267
84230 LRRC8C leucine rich repeat containing 8 VRAC subunit C protein-coding 8.333 1.098
84231 TRAF7 TNF receptor associated factor 7 protein-coding 11.23 0.6144
-84232 MAF1 MAF1 homolog, negative regulator of RNA polymerase III protein-coding 11.2 0.571
-84233 TMEM126A transmembrane protein 126A protein-coding 8.117 0.5722
-84236 RHBDD1 rhomboid domain containing 1 protein-coding 8.047 0.6309
-84239 ATP13A4 ATPase 13A4 protein-coding 4.695 3.494
-84240 ZCCHC9 zinc finger CCHC-type containing 9 protein-coding 8.434 0.6119
+84232 MAF1 MAF1 homolog, negative regulator of RNA polymerase III protein-coding 11.2 0.5708
+84233 TMEM126A transmembrane protein 126A protein-coding 8.116 0.5722
+84236 RHBDD1 rhomboid domain containing 1 protein-coding 8.047 0.6308
+84239 ATP13A4 ATPase 13A4 protein-coding 4.696 3.495
+84240 ZCCHC9 zinc finger CCHC-type containing 9 protein-coding 8.434 0.6117
84243 ZDHHC18 zinc finger DHHC-type containing 18 protein-coding 9.6 0.7405
-84245 MRI1 methylthioribose-1-phosphate isomerase 1 protein-coding 8.822 0.7084
-84246 MED10 mediator complex subunit 10 protein-coding 9.042 0.6583
+84245 MRI1 methylthioribose-1-phosphate isomerase 1 protein-coding 8.823 0.7082
+84246 MED10 mediator complex subunit 10 protein-coding 9.042 0.6582
84247 RTL6 retrotransposon Gag like 6 protein-coding 9.705 1.056
-84248 FYTTD1 forty-two-three domain containing 1 protein-coding 10.55 0.663
-84249 PSD2 pleckstrin and Sec7 domain containing 2 protein-coding 3.341 2.867
+84248 FYTTD1 forty-two-three domain containing 1 protein-coding 10.55 0.6627
+84249 PSD2 pleckstrin and Sec7 domain containing 2 protein-coding 3.341 2.866
8425 LTBP4 latent transforming growth factor beta binding protein 4 protein-coding 10.67 1.428
-84250 SLF1 SMC5-SMC6 complex localization factor 1 protein-coding 7.106 0.8234
-84251 SGIP1 SH3 domain GRB2 like endophilin interacting protein 1 protein-coding 5.702 1.918
-84253 GARNL3 GTPase activating Rap/RanGAP domain like 3 protein-coding 6.366 1.568
-84254 CAMKK1 calcium/calmodulin dependent protein kinase kinase 1 protein-coding 7.894 1.237
-84255 SLC37A3 solute carrier family 37 member 3 protein-coding 9.632 0.6672
-84256 FLYWCH1 FLYWCH-type zinc finger 1 protein-coding 9.585 0.7843
-84258 SYT3 synaptotagmin 3 protein-coding 2.974 2.378
-84259 DCUN1D5 defective in cullin neddylation 1 domain containing 5 protein-coding 8.691 0.828
-84260 TCHP trichoplein keratin filament binding protein-coding 8.644 0.5403
-84261 FBXW9 F-box and WD repeat domain containing 9 protein-coding 7.972 0.8035
-84262 PSMG3 proteasome assembly chaperone 3 protein-coding 9.411 0.8349
-84263 HSDL2 hydroxysteroid dehydrogenase like 2 protein-coding 10.1 0.8192
+84250 SLF1 SMC5-SMC6 complex localization factor 1 protein-coding 7.106 0.8232
+84251 SGIP1 SH3 domain GRB2 like endophilin interacting protein 1 protein-coding 5.703 1.918
+84253 GARNL3 GTPase activating Rap/RanGAP domain like 3 protein-coding 6.367 1.568
+84254 CAMKK1 calcium/calmodulin dependent protein kinase kinase 1 protein-coding 7.895 1.237
+84255 SLC37A3 solute carrier family 37 member 3 protein-coding 9.632 0.6669
+84256 FLYWCH1 FLYWCH-type zinc finger 1 protein-coding 9.585 0.784
+84258 SYT3 synaptotagmin 3 protein-coding 2.976 2.378
+84259 DCUN1D5 defective in cullin neddylation 1 domain containing 5 protein-coding 8.691 0.8279
+84260 TCHP trichoplein keratin filament binding protein-coding 8.644 0.5402
+84261 FBXW9 F-box and WD repeat domain containing 9 protein-coding 7.971 0.8034
+84262 PSMG3 proteasome assembly chaperone 3 protein-coding 9.41 0.8352
+84263 HSDL2 hydroxysteroid dehydrogenase like 2 protein-coding 10.1 0.8189
84264 HAGHL hydroxyacylglutathione hydrolase like protein-coding 6.462 1.827
-84265 POLR3GL RNA polymerase III subunit G like protein-coding 8.95 0.705
-84266 ALKBH7 alkB homolog 7 protein-coding 9.523 0.9362
-84267 C9orf64 chromosome 9 open reading frame 64 protein-coding 8.423 0.909
-84268 RPAIN RPA interacting protein protein-coding 9.178 0.6313
-84269 CHCHD5 coiled-coil-helix-coiled-coil-helix domain containing 5 protein-coding 8.499 0.8209
-8427 ZNF282 zinc finger protein 282 protein-coding 9.727 0.5463
-84270 CARD19 caspase recruitment domain family member 19 protein-coding 8.276 0.8534
-84271 POLDIP3 DNA polymerase delta interacting protein 3 protein-coding 10.94 0.5162
-84272 YIPF4 Yip1 domain family member 4 protein-coding 9.34 0.5316
-84273 NOA1 nitric oxide associated 1 protein-coding 9.258 0.546
-84274 COQ5 coenzyme Q5, methyltransferase protein-coding 9.227 0.5211
-84275 SLC25A33 solute carrier family 25 member 33 protein-coding 7.622 1.069
-84276 NICN1 nicolin 1 protein-coding 8.237 0.8779
-84277 DNAJC30 DnaJ heat shock protein family (Hsp40) member C30 protein-coding 8.576 0.6677
-84278 MFSD14C major facilitator superfamily domain containing 14C protein-coding 4.551 0.8561
-84279 PRADC1 protease associated domain containing 1 protein-coding 8.47 0.8428
-8428 STK24 serine/threonine kinase 24 protein-coding 11.51 0.7569
-84280 BTBD10 BTB domain containing 10 protein-coding 9.239 0.601
-84281 C2orf88 chromosome 2 open reading frame 88 protein-coding 6.424 1.988
-84282 RNF135 ring finger protein 135 protein-coding 8.837 0.9539
-84283 TMEM79 transmembrane protein 79 protein-coding 8.287 1.498
-84284 NTPCR nucleoside-triphosphatase, cancer-related protein-coding 9.228 0.6424
-84285 EIF1AD eukaryotic translation initiation factor 1A domain containing protein-coding 9.132 0.4479
-84286 TMEM175 transmembrane protein 175 protein-coding 8.769 0.904
-84287 ZDHHC16 zinc finger DHHC-type containing 16 protein-coding 9.377 0.6008
+84265 POLR3GL RNA polymerase III subunit G like protein-coding 8.95 0.7049
+84266 ALKBH7 alkB homolog 7 protein-coding 9.523 0.9359
+84267 C9orf64 chromosome 9 open reading frame 64 protein-coding 8.423 0.9087
+84268 RPAIN RPA interacting protein protein-coding 9.178 0.6311
+84269 CHCHD5 coiled-coil-helix-coiled-coil-helix domain containing 5 protein-coding 8.499 0.8206
+8427 ZNF282 zinc finger protein 282 protein-coding 9.727 0.5461
+84270 CARD19 caspase recruitment domain family member 19 protein-coding 8.276 0.853
+84271 POLDIP3 DNA polymerase delta interacting protein 3 protein-coding 10.94 0.516
+84272 YIPF4 Yip1 domain family member 4 protein-coding 9.34 0.5313
+84273 NOA1 nitric oxide associated 1 protein-coding 9.258 0.5458
+84274 COQ5 coenzyme Q5, methyltransferase protein-coding 9.227 0.521
+84275 SLC25A33 solute carrier family 25 member 33 protein-coding 7.622 1.068
+84276 NICN1 nicolin 1 protein-coding 8.238 0.878
+84277 DNAJC30 DnaJ heat shock protein family (Hsp40) member C30 protein-coding 8.576 0.6676
+84278 MFSD14C major facilitator superfamily domain containing 14C protein-coding 4.552 0.8561
+84279 PRADC1 protease associated domain containing 1 protein-coding 8.47 0.8425
+8428 STK24 serine/threonine kinase 24 protein-coding 11.51 0.7567
+84280 BTBD10 BTB domain containing 10 protein-coding 9.239 0.6008
+84281 C2orf88 chromosome 2 open reading frame 88 protein-coding 6.425 1.987
+84282 RNF135 ring finger protein 135 protein-coding 8.837 0.9535
+84283 TMEM79 transmembrane protein 79 protein-coding 8.287 1.499
+84284 NTPCR nucleoside-triphosphatase, cancer-related protein-coding 9.228 0.6423
+84285 EIF1AD eukaryotic translation initiation factor 1A domain containing protein-coding 9.132 0.4478
+84286 TMEM175 transmembrane protein 175 protein-coding 8.769 0.9038
+84287 ZDHHC16 zinc finger DHHC-type containing 16 protein-coding 9.376 0.6007
84288 EFCAB2 EF-hand calcium binding domain 2 protein-coding 6.911 1.178
-84289 ING5 inhibitor of growth family member 5 protein-coding 8.742 0.7279
-84290 CAPNS2 calpain small subunit 2 protein-coding 2.436 3.115
-84292 WDR83 WD repeat domain 83 protein-coding 7.718 0.7167
+84289 ING5 inhibitor of growth family member 5 protein-coding 8.742 0.7278
+84290 CAPNS2 calpain small subunit 2 protein-coding 2.437 3.114
+84292 WDR83 WD repeat domain 83 protein-coding 7.718 0.7166
84293 FAM213A family with sequence similarity 213 member A protein-coding 10.78 1.039
-84294 UTP23 UTP23, small subunit processome component protein-coding 8.663 0.6182
-84295 PHF6 PHD finger protein 6 protein-coding 9.412 0.752
-84296 GINS4 GINS complex subunit 4 protein-coding 7.186 1.436
-84298 LLPH LLP homolog, long-term synaptic facilitation protein-coding 9.199 0.5837
-84299 MIEN1 migration and invasion enhancer 1 protein-coding 9.962 0.8901
-843 CASP10 caspase 10 protein-coding 8.241 1.344
+84294 UTP23 UTP23, small subunit processome component protein-coding 8.663 0.6179
+84295 PHF6 PHD finger protein 6 protein-coding 9.411 0.7518
+84296 GINS4 GINS complex subunit 4 protein-coding 7.185 1.436
+84298 LLPH LLP homolog, long-term synaptic facilitation protein-coding 9.199 0.5836
+84299 MIEN1 migration and invasion enhancer 1 protein-coding 9.962 0.89
+843 CASP10 caspase 10 protein-coding 8.242 1.344
84300 UQCC2 ubiquinol-cytochrome c reductase complex assembly factor 2 protein-coding 10.09 0.7789
-84301 DDI2 DNA damage inducible 1 homolog 2 protein-coding 5.8 1.606
-84302 TMEM246 transmembrane protein 246 protein-coding 7.096 2.24
-84303 CHCHD6 coiled-coil-helix-coiled-coil-helix domain containing 6 protein-coding 7.541 0.8775
-84304 NUDT22 nudix hydrolase 22 protein-coding 8.999 0.7573
-84305 PYM1 PYM homolog 1, exon junction complex associated factor protein-coding 9.277 0.6382
-84306 PDCD2L programmed cell death 2 like protein-coding 7.408 0.8059
-84307 ZNF397 zinc finger protein 397 protein-coding 7.827 0.7796
-84309 NUDT16L1 nudix hydrolase 16 like 1 protein-coding 9.32 0.7366
-8431 NR0B2 nuclear receptor subfamily 0 group B member 2 protein-coding 2.249 3.132
-84310 C7orf50 chromosome 7 open reading frame 50 protein-coding 10.33 0.8222
-84311 MRPL45 mitochondrial ribosomal protein L45 protein-coding 9.725 0.5734
-84312 BRMS1L breast cancer metastasis-suppressor 1 like protein-coding 7.696 0.7938
-84313 VPS25 vacuolar protein sorting 25 homolog protein-coding 10.09 0.5754
-84314 TMEM107 transmembrane protein 107 protein-coding 7.617 0.846
-84315 MON1A MON1 homolog A, secretory trafficking associated protein-coding 7.94 0.6772
-84316 NAA38 N(alpha)-acetyltransferase 38, NatC auxiliary subunit protein-coding 9.283 0.857
-84317 CCDC115 coiled-coil domain containing 115 protein-coding 9.84 0.5197
-84318 CCDC77 coiled-coil domain containing 77 protein-coding 7.483 0.773
-84319 CMSS1 cms1 ribosomal small subunit homolog (yeast) protein-coding 8.658 0.7425
-84320 ACBD6 acyl-CoA binding domain containing 6 protein-coding 8.977 0.5275
+84301 DDI2 DNA damage inducible 1 homolog 2 protein-coding 5.801 1.605
+84302 TMEM246 transmembrane protein 246 protein-coding 7.097 2.241
+84303 CHCHD6 coiled-coil-helix-coiled-coil-helix domain containing 6 protein-coding 7.541 0.8776
+84304 NUDT22 nudix hydrolase 22 protein-coding 8.999 0.7572
+84305 PYM1 PYM homolog 1, exon junction complex associated factor protein-coding 9.277 0.6381
+84306 PDCD2L programmed cell death 2 like protein-coding 7.407 0.806
+84307 ZNF397 zinc finger protein 397 protein-coding 7.827 0.7795
+84309 NUDT16L1 nudix hydrolase 16 like 1 protein-coding 9.319 0.7366
+8431 NR0B2 nuclear receptor subfamily 0 group B member 2 protein-coding 2.251 3.132
+84310 C7orf50 chromosome 7 open reading frame 50 protein-coding 10.33 0.822
+84311 MRPL45 mitochondrial ribosomal protein L45 protein-coding 9.724 0.5733
+84312 BRMS1L breast cancer metastasis-suppressor 1 like protein-coding 7.696 0.7935
+84313 VPS25 vacuolar protein sorting 25 homolog protein-coding 10.09 0.5756
+84314 TMEM107 transmembrane protein 107 protein-coding 7.617 0.8458
+84315 MON1A MON1 homolog A, secretory trafficking associated protein-coding 7.94 0.677
+84316 NAA38 N(alpha)-acetyltransferase 38, NatC auxiliary subunit protein-coding 9.282 0.8568
+84317 CCDC115 coiled-coil domain containing 115 protein-coding 9.84 0.5198
+84318 CCDC77 coiled-coil domain containing 77 protein-coding 7.482 0.7729
+84319 CMSS1 cms1 ribosomal small subunit homolog (yeast) protein-coding 8.657 0.7428
+84320 ACBD6 acyl-CoA binding domain containing 6 protein-coding 8.976 0.5276
84321 THOC3 THO complex 3 protein-coding 9.807 0.9065
-84324 SARNP SAP domain containing ribonucleoprotein protein-coding 9.872 0.5557
-84326 METTL26 methyltransferase like 26 protein-coding 9.546 0.8456
-84327 ZBED3 zinc finger BED-type containing 3 protein-coding 4.974 1.384
-84328 LZIC leucine zipper and CTNNBIP1 domain containing protein-coding 8.321 0.6002
-84329 HVCN1 hydrogen voltage gated channel 1 protein-coding 6.869 1.271
-84330 ZNF414 zinc finger protein 414 protein-coding 7.71 0.7856
-84331 MCRIP2 MAPK regulated corepressor interacting protein 2 protein-coding 8.887 1.194
-84332 DYDC2 DPY30 domain containing 2 protein-coding 2.283 2.075
-84333 PCGF5 polycomb group ring finger 5 protein-coding 10.1 0.7519
-84334 APOPT1 apoptogenic 1, mitochondrial protein-coding 8.931 0.6383
+84324 SARNP SAP domain containing ribonucleoprotein protein-coding 9.871 0.5556
+84326 METTL26 methyltransferase like 26 protein-coding 9.545 0.8455
+84327 ZBED3 zinc finger BED-type containing 3 protein-coding 4.975 1.384
+84328 LZIC leucine zipper and CTNNBIP1 domain containing protein-coding 8.321 0.6001
+84329 HVCN1 hydrogen voltage gated channel 1 protein-coding 6.87 1.271
+84330 ZNF414 zinc finger protein 414 protein-coding 7.711 0.7855
+84331 MCRIP2 MAPK regulated corepressor interacting protein 2 protein-coding 8.887 1.193
+84332 DYDC2 DPY30 domain containing 2 protein-coding 2.283 2.074
+84333 PCGF5 polycomb group ring finger 5 protein-coding 10.1 0.7518
+84334 APOPT1 apoptogenic 1, mitochondrial protein-coding 8.931 0.6382
84335 AKT1S1 AKT1 substrate 1 protein-coding 10.27 0.5877
-84336 TMEM101 transmembrane protein 101 protein-coding 9.518 0.9375
-84337 ELOF1 elongation factor 1 homolog protein-coding 9.976 0.6272
-8434 RECK reversion inducing cysteine rich protein with kazal motifs protein-coding 7.403 1.263
-84340 GFM2 G elongation factor mitochondrial 2 protein-coding 9.215 0.5966
-84342 COG8 component of oligomeric golgi complex 8 protein-coding 8.73 0.4936
-84343 HPS3 HPS3, biogenesis of lysosomal organelles complex 2 subunit 1 protein-coding 9.614 0.7296
-8435 SOAT2 sterol O-acyltransferase 2 protein-coding 1.452 1.777
-8436 CAVIN2 caveolae associated protein 2 protein-coding 8.094 2.029
-84364 ARFGAP2 ADP ribosylation factor GTPase activating protein 2 protein-coding 10.99 0.447
-84365 NIFK nucleolar protein interacting with the FHA domain of MKI67 protein-coding 9.751 0.5901
-8437 RASAL1 RAS protein activator like 1 protein-coding 6.189 2.928
-84376 HOOK3 hook microtubule tethering protein 3 protein-coding 10.01 0.7902
-8438 RAD54L RAD54 like protein-coding 6.861 1.891
-8439 NSMAF neutral sphingomyelinase activation associated factor protein-coding 9.447 0.7052
-844 CASQ1 calsequestrin 1 protein-coding 2.996 2.473
-8440 NCK2 NCK adaptor protein 2 protein-coding 10.11 0.7699
-84417 C2orf40 chromosome 2 open reading frame 40 protein-coding 4.251 3.098
-84418 CYSTM1 cysteine rich transmembrane module containing 1 protein-coding 10.16 1.321
-84419 C15orf48 chromosome 15 open reading frame 48 protein-coding 7.274 2.987
-8443 GNPAT glyceronephosphate O-acyltransferase protein-coding 10.25 0.4982
-84433 CARD11 caspase recruitment domain family member 11 protein-coding 7.481 2.069
-84436 ZNF528 zinc finger protein 528 protein-coding 7.434 1.573
-84437 MSANTD4 Myb/SANT DNA binding domain containing 4 with coiled-coils protein-coding 8.309 0.9247
-84439 HHIPL1 HHIP like 1 protein-coding 5.605 1.518
+84336 TMEM101 transmembrane protein 101 protein-coding 9.518 0.9371
+84337 ELOF1 elongation factor 1 homolog protein-coding 9.975 0.6271
+8434 RECK reversion inducing cysteine rich protein with kazal motifs protein-coding 7.405 1.263
+84340 GFM2 G elongation factor mitochondrial 2 protein-coding 9.215 0.5965
+84342 COG8 component of oligomeric golgi complex 8 protein-coding 8.73 0.4934
+84343 HPS3 HPS3, biogenesis of lysosomal organelles complex 2 subunit 1 protein-coding 9.614 0.7293
+8435 SOAT2 sterol O-acyltransferase 2 protein-coding 1.453 1.777
+8436 CAVIN2 caveolae associated protein 2 protein-coding 8.096 2.03
+84364 ARFGAP2 ADP ribosylation factor GTPase activating protein 2 protein-coding 10.99 0.4469
+84365 NIFK nucleolar protein interacting with the FHA domain of MKI67 protein-coding 9.75 0.5903
+8437 RASAL1 RAS protein activator like 1 protein-coding 6.19 2.927
+84376 HOOK3 hook microtubule tethering protein 3 protein-coding 10.01 0.7903
+8438 RAD54L RAD54 like protein-coding 6.859 1.892
+8439 NSMAF neutral sphingomyelinase activation associated factor protein-coding 9.448 0.7052
+844 CASQ1 calsequestrin 1 protein-coding 2.998 2.473
+8440 NCK2 NCK adaptor protein 2 protein-coding 10.11 0.7696
+84417 C2orf40 chromosome 2 open reading frame 40 protein-coding 4.254 3.099
+84418 CYSTM1 cysteine rich transmembrane module containing 1 protein-coding 10.16 1.32
+84419 C15orf48 chromosome 15 open reading frame 48 protein-coding 7.275 2.987
+8443 GNPAT glyceronephosphate O-acyltransferase protein-coding 10.25 0.498
+84433 CARD11 caspase recruitment domain family member 11 protein-coding 7.482 2.069
+84436 ZNF528 zinc finger protein 528 protein-coding 7.436 1.573
+84437 MSANTD4 Myb/SANT DNA binding domain containing 4 with coiled-coils protein-coding 8.31 0.9244
+84439 HHIPL1 HHIP like 1 protein-coding 5.605 1.517
8444 DYRK3 dual specificity tyrosine phosphorylation regulated kinase 3 protein-coding 6.896 1.036
-84440 RAB11FIP4 RAB11 family interacting protein 4 protein-coding 9.483 1.291
-84441 MAML2 mastermind like transcriptional coactivator 2 protein-coding 7.928 1.522
-84444 DOT1L DOT1 like histone lysine methyltransferase protein-coding 9.668 0.8139
-84445 LZTS2 leucine zipper tumor suppressor 2 protein-coding 10.67 0.7932
+84440 RAB11FIP4 RAB11 family interacting protein 4 protein-coding 9.482 1.291
+84441 MAML2 mastermind like transcriptional coactivator 2 protein-coding 7.929 1.521
+84444 DOT1L DOT1 like histone lysine methyltransferase protein-coding 9.668 0.814
+84445 LZTS2 leucine zipper tumor suppressor 2 protein-coding 10.67 0.7931
84446 BRSK1 BR serine/threonine kinase 1 protein-coding 6.083 2.197
-84447 SYVN1 synoviolin 1 protein-coding 10.83 0.591
-84448 ABLIM2 actin binding LIM protein family member 2 protein-coding 6.764 1.715
+84447 SYVN1 synoviolin 1 protein-coding 10.83 0.5908
+84448 ABLIM2 actin binding LIM protein family member 2 protein-coding 6.765 1.715
84449 ZNF333 zinc finger protein 333 protein-coding 7.439 0.8312
-8445 DYRK2 dual specificity tyrosine phosphorylation regulated kinase 2 protein-coding 9.306 0.8872
-84450 ZNF512 zinc finger protein 512 protein-coding 9.43 0.885
+8445 DYRK2 dual specificity tyrosine phosphorylation regulated kinase 2 protein-coding 9.306 0.8871
+84450 ZNF512 zinc finger protein 512 protein-coding 9.431 0.8847
84451 MAP3K21 mitogen-activated protein kinase kinase kinase 21 protein-coding 7.376 1.954
-84455 EFCAB7 EF-hand calcium binding domain 7 protein-coding 6.809 0.8251
-84456 L3MBTL3 L3MBTL3, histone methyl-lysine binding protein protein-coding 7.595 0.9654
+84455 EFCAB7 EF-hand calcium binding domain 7 protein-coding 6.809 0.8249
+84456 L3MBTL3 L3MBTL3, histone methyl-lysine binding protein protein-coding 7.595 0.9651
84458 LCOR ligand dependent nuclear receptor corepressor protein-coding 6.018 1.501
-8446 DUSP11 dual specificity phosphatase 11 protein-coding 8.971 0.5821
-84460 ZMAT1 zinc finger matrin-type 1 protein-coding 7.439 2.1
-84461 NEURL4 neuralized E3 ubiquitin protein ligase 4 protein-coding 9.12 0.66
-84464 SLX4 SLX4 structure-specific endonuclease subunit protein-coding 8.024 0.6628
-84465 MEGF11 multiple EGF like domains 11 protein-coding 3.048 2.743
+8446 DUSP11 dual specificity phosphatase 11 protein-coding 8.971 0.5819
+84460 ZMAT1 zinc finger matrin-type 1 protein-coding 7.441 2.1
+84461 NEURL4 neuralized E3 ubiquitin protein ligase 4 protein-coding 9.12 0.6598
+84464 SLX4 SLX4 structure-specific endonuclease subunit protein-coding 8.023 0.6625
+84465 MEGF11 multiple EGF like domains 11 protein-coding 3.048 2.742
84466 MEGF10 multiple EGF like domains 10 protein-coding 3.976 2.75
-8447 DOC2B double C2 domain beta protein-coding 3.429 2.016
-8448 DOC2A double C2 domain alpha protein-coding 4.227 2.452
-8449 DHX16 DEAH-box helicase 16 protein-coding 9.882 0.4635
+8447 DOC2B double C2 domain beta protein-coding 3.43 2.016
+8448 DOC2A double C2 domain alpha protein-coding 4.228 2.451
+8449 DHX16 DEAH-box helicase 16 protein-coding 9.883 0.4633
84498 FAM120B family with sequence similarity 120B protein-coding 9.191 0.5976
-8450 CUL4B cullin 4B protein-coding 10.65 0.4903
+8450 CUL4B cullin 4B protein-coding 10.65 0.4901
84501 SPIRE2 spire type actin nucleation factor 2 protein-coding 7.539 1.539
-84502 JPH4 junctophilin 4 protein-coding 4.645 2.752
-84503 ZNF527 zinc finger protein 527 protein-coding 6.671 0.7089
-8451 CUL4A cullin 4A protein-coding 10.78 0.566
+84502 JPH4 junctophilin 4 protein-coding 4.648 2.752
+84503 ZNF527 zinc finger protein 527 protein-coding 6.671 0.7088
+8451 CUL4A cullin 4A protein-coding 10.78 0.5658
84513 PLPP5 phospholipid phosphatase 5 protein-coding 9.356 1.064
-84514 GHDC GH3 domain containing protein-coding 9.661 0.9297
+84514 GHDC GH3 domain containing protein-coding 9.662 0.9294
84515 MCM8 minichromosome maintenance 8 homologous recombination repair factor protein-coding 7.838 1.138
-84516 DCTN5 dynactin subunit 5 protein-coding 10.4 0.5335
+84516 DCTN5 dynactin subunit 5 protein-coding 10.4 0.5333
84517 ACTRT3 actin related protein T3 protein-coding 5.165 1.186
-84518 CNFN cornifelin protein-coding 5.473 2.553
+84518 CNFN cornifelin protein-coding 5.471 2.553
84519 ACRBP acrosin binding protein protein-coding 4.916 1.377
-8452 CUL3 cullin 3 protein-coding 10.62 0.4416
-84520 GON7 GON7, KEOPS complex subunit protein-coding 7.775 0.6123
-84522 JAGN1 jagunal homolog 1 protein-coding 9.649 0.5764
-84524 ZC3H8 zinc finger CCCH-type containing 8 protein-coding 7.105 0.7254
-84525 HOPX HOP homeobox protein-coding 8.448 2.41
-84527 ZNF559 zinc finger protein 559 protein-coding 7.919 0.9351
-84529 C15orf41 chromosome 15 open reading frame 41 protein-coding 7.214 0.9076
-8453 CUL2 cullin 2 protein-coding 9.454 0.5299
-84532 ACSS1 acyl-CoA synthetase short chain family member 1 protein-coding 9.825 1.384
+8452 CUL3 cullin 3 protein-coding 10.62 0.4414
+84520 GON7 GON7, KEOPS complex subunit protein-coding 7.775 0.6122
+84522 JAGN1 jagunal homolog 1 protein-coding 9.649 0.5762
+84524 ZC3H8 zinc finger CCCH-type containing 8 protein-coding 7.105 0.7251
+84525 HOPX HOP homeobox protein-coding 8.449 2.409
+84527 ZNF559 zinc finger protein 559 protein-coding 7.92 0.9349
+84529 C15orf41 chromosome 15 open reading frame 41 protein-coding 7.214 0.9075
+8453 CUL2 cullin 2 protein-coding 9.454 0.5297
+84532 ACSS1 acyl-CoA synthetase short chain family member 1 protein-coding 9.826 1.384
84536 LINC01547 long intergenic non-protein coding RNA 1547 ncRNA 5.424 1.012
-8454 CUL1 cullin 1 protein-coding 10.58 0.4295
+8454 CUL1 cullin 1 protein-coding 10.58 0.4294
84541 KBTBD8 kelch repeat and BTB domain containing 8 protein-coding 5.407 1.286
-84542 KIAA1841 KIAA1841 protein-coding 7.69 0.9029
-84545 MRPL43 mitochondrial ribosomal protein L43 protein-coding 10.16 0.5345
+84542 KIAA1841 KIAA1841 protein-coding 7.69 0.9026
+84545 MRPL43 mitochondrial ribosomal protein L43 protein-coding 10.16 0.5343
84547 PGBD1 piggyBac transposable element derived 1 protein-coding 6.63 1.051
-84548 TMEM185A transmembrane protein 185A protein-coding 8.976 0.6002
-84549 MAK16 MAK16 homolog protein-coding 8.699 0.6553
-8455 ATRN attractin protein-coding 10.83 0.8011
-84552 PARD6G par-6 family cell polarity regulator gamma protein-coding 7.703 1.357
+84548 TMEM185A transmembrane protein 185A protein-coding 8.976 0.5999
+84549 MAK16 MAK16 homolog protein-coding 8.698 0.6551
+8455 ATRN attractin protein-coding 10.83 0.8008
+84552 PARD6G par-6 family cell polarity regulator gamma protein-coding 7.703 1.356
84557 MAP1LC3A microtubule associated protein 1 light chain 3 alpha protein-coding 8.378 1.253
-84561 SLC12A8 solute carrier family 12 member 8 protein-coding 8.097 1.859
-84570 COL25A1 collagen type XXV alpha 1 chain protein-coding 2.655 2.116
-84572 GNPTG N-acetylglucosamine-1-phosphate transferase gamma subunit protein-coding 10.31 0.8092
-8458 TTF2 transcription termination factor 2 protein-coding 8.259 1.109
+84561 SLC12A8 solute carrier family 12 member 8 protein-coding 8.096 1.859
+84570 COL25A1 collagen type XXV alpha 1 chain protein-coding 2.656 2.116
+84572 GNPTG N-acetylglucosamine-1-phosphate transferase gamma subunit protein-coding 10.31 0.8089
+8458 TTF2 transcription termination factor 2 protein-coding 8.258 1.108
8459 TPST2 tyrosylprotein sulfotransferase 2 protein-coding 9.225 1.005
-846 CASR calcium sensing receptor protein-coding 1.422 2.093
-8460 TPST1 tyrosylprotein sulfotransferase 1 protein-coding 8.348 1.201
+846 CASR calcium sensing receptor protein-coding 1.424 2.098
+8460 TPST1 tyrosylprotein sulfotransferase 1 protein-coding 8.349 1.201
84612 PARD6B par-6 family cell polarity regulator beta protein-coding 7.695 1.706
-84614 ZBTB37 zinc finger and BTB domain containing 37 protein-coding 4.318 0.9896
+84614 ZBTB37 zinc finger and BTB domain containing 37 protein-coding 4.319 0.9894
84617 TUBB6 tubulin beta 6 class V protein-coding 10.44 1.316
-84619 ZGPAT zinc finger CCCH-type and G-patch domain containing protein-coding 9.53 0.7634
-8462 KLF11 Kruppel like factor 11 protein-coding 8.928 0.963
-84620 ST6GAL2 ST6 beta-galactoside alpha-2,6-sialyltransferase 2 protein-coding 5.533 2.896
-84622 ZNF594 zinc finger protein 594 protein-coding 6.924 1.114
-84623 KIRREL3 kirre like nephrin family adhesion molecule 3 protein-coding 2.558 2.378
+84619 ZGPAT zinc finger CCCH-type and G-patch domain containing protein-coding 9.53 0.763
+8462 KLF11 Kruppel like factor 11 protein-coding 8.929 0.9628
+84620 ST6GAL2 ST6 beta-galactoside alpha-2,6-sialyltransferase 2 protein-coding 5.534 2.895
+84622 ZNF594 zinc finger protein 594 protein-coding 6.925 1.114
+84623 KIRREL3 kirre like nephrin family adhesion molecule 3 protein-coding 2.56 2.379
84624 FNDC1 fibronectin type III domain containing 1 protein-coding 7.348 3.112
84626 KRBA1 KRAB-A domain containing 1 protein-coding 7.69 1.348
84627 ZNF469 zinc finger protein 469 protein-coding 7.202 1.808
-84628 NTNG2 netrin G2 protein-coding 4.876 2.021
-84629 TNRC18 trinucleotide repeat containing 18 protein-coding 11.61 0.6874
+84628 NTNG2 netrin G2 protein-coding 4.878 2.021
+84629 TNRC18 trinucleotide repeat containing 18 protein-coding 11.61 0.6873
8463 TEAD2 TEA domain transcription factor 2 protein-coding 9.142 1.48
-84632 AFAP1L2 actin filament associated protein 1 like 2 protein-coding 8.711 1.821
-84634 KISS1R KISS1 receptor protein-coding 2.198 2.116
-84636 GPR174 G protein-coupled receptor 174 protein-coding 2.425 1.754
-8464 SUPT3H SPT3 homolog, SAGA and STAGA complex component protein-coding 6.873 0.7877
-84640 USP38 ubiquitin specific peptidase 38 protein-coding 9.4 0.6108
-84641 MFSD14B major facilitator superfamily domain containing 14B protein-coding 10.45 0.6235
-84645 C22orf23 chromosome 22 open reading frame 23 protein-coding 5.681 1.076
-84649 DGAT2 diacylglycerol O-acyltransferase 2 protein-coding 7.937 2.054
-84650 EBPL emopamil binding protein like protein-coding 9.03 0.9573
-84656 GLYR1 glyoxylate reductase 1 homolog protein-coding 11.1 0.504
-84657 LINC00852 long intergenic non-protein coding RNA 852 ncRNA 3.91 0.847
-84658 ADGRE3 adhesion G protein-coupled receptor E3 protein-coding 1.461 1.414
+84632 AFAP1L2 actin filament associated protein 1 like 2 protein-coding 8.712 1.821
+84634 KISS1R KISS1 receptor protein-coding 2.197 2.115
+84636 GPR174 G protein-coupled receptor 174 protein-coding 2.427 1.755
+8464 SUPT3H SPT3 homolog, SAGA and STAGA complex component protein-coding 6.873 0.7874
+84640 USP38 ubiquitin specific peptidase 38 protein-coding 9.4 0.6105
+84641 MFSD14B major facilitator superfamily domain containing 14B protein-coding 10.45 0.6232
+84645 C22orf23 chromosome 22 open reading frame 23 protein-coding 5.682 1.076
+84649 DGAT2 diacylglycerol O-acyltransferase 2 protein-coding 7.937 2.053
+84650 EBPL emopamil binding protein like protein-coding 9.029 0.9571
+84656 GLYR1 glyoxylate reductase 1 homolog protein-coding 11.1 0.5038
+84657 LINC00852 long intergenic non-protein coding RNA 852 ncRNA 3.911 0.847
+84658 ADGRE3 adhesion G protein-coupled receptor E3 protein-coding 1.462 1.415
84659 RNASE7 ribonuclease A family member 7 protein-coding 2.374 2.705
-84660 CCDC62 coiled-coil domain containing 62 protein-coding 2.126 1.07
-84661 DPY30 dpy-30, histone methyltransferase complex regulatory subunit protein-coding 9.532 0.5845
-84662 GLIS2 GLIS family zinc finger 2 protein-coding 9.363 1.399
+84660 CCDC62 coiled-coil domain containing 62 protein-coding 2.126 1.069
+84661 DPY30 dpy-30, histone methyltransferase complex regulatory subunit protein-coding 9.532 0.5847
+84662 GLIS2 GLIS family zinc finger 2 protein-coding 9.364 1.399
84668 FAM126A family with sequence similarity 126 member A protein-coding 8.54 1.328
-84669 USP32 ubiquitin specific peptidase 32 protein-coding 9.961 0.6868
-8467 SMARCA5 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily a, member 5 protein-coding 10.87 0.6629
-84671 ZNF347 zinc finger protein 347 protein-coding 6.248 1.416
+84669 USP32 ubiquitin specific peptidase 32 protein-coding 9.96 0.6865
+8467 SMARCA5 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily a, member 5 protein-coding 10.87 0.6626
+84671 ZNF347 zinc finger protein 347 protein-coding 6.249 1.416
84674 CARD6 caspase recruitment domain family member 6 protein-coding 7.646 1.364
-84675 TRIM55 tripartite motif containing 55 protein-coding 2.671 2.882
-84678 KDM2B lysine demethylase 2B protein-coding 9.491 0.6455
-84679 SLC9A7 solute carrier family 9 member A7 protein-coding 5.921 1.612
-8468 FKBP6 FK506 binding protein 6 protein-coding 1.046 1.299
-84680 ACCS 1-aminocyclopropane-1-carboxylate synthase homolog (inactive) protein-coding 7.519 1.241
-84681 HINT2 histidine triad nucleotide binding protein 2 protein-coding 8.919 0.863
-84687 PPP1R9B protein phosphatase 1 regulatory subunit 9B protein-coding 10.76 0.7008
-84688 C9orf24 chromosome 9 open reading frame 24 protein-coding 3.252 2.034
-84689 MS4A14 membrane spanning 4-domains A14 protein-coding 4.622 1.563
-84693 MCEE methylmalonyl-CoA epimerase protein-coding 7.038 0.7201
-84695 LOXL3 lysyl oxidase like 3 protein-coding 6.62 1.496
+84675 TRIM55 tripartite motif containing 55 protein-coding 2.67 2.881
+84678 KDM2B lysine demethylase 2B protein-coding 9.491 0.6456
+84679 SLC9A7 solute carrier family 9 member A7 protein-coding 5.922 1.612
+8468 FKBP6 FK506 binding protein 6 protein-coding 1.046 1.298
+84680 ACCS 1-aminocyclopropane-1-carboxylate synthase homolog (inactive) protein-coding 7.52 1.241
+84681 HINT2 histidine triad nucleotide binding protein 2 protein-coding 8.919 0.8628
+84687 PPP1R9B protein phosphatase 1 regulatory subunit 9B protein-coding 10.76 0.7007
+84688 C9orf24 chromosome 9 open reading frame 24 protein-coding 3.253 2.033
+84689 MS4A14 membrane spanning 4-domains A14 protein-coding 4.623 1.564
+84693 MCEE methylmalonyl-CoA epimerase protein-coding 7.038 0.7199
+84695 LOXL3 lysyl oxidase like 3 protein-coding 6.621 1.496
84696 ABHD1 abhydrolase domain containing 1 protein-coding 3.319 1.68
-84698 CAPS2 calcyphosine 2 protein-coding 4.577 1.414
-84699 CREB3L3 cAMP responsive element binding protein 3 like 3 protein-coding 2.286 3.231
+84698 CAPS2 calcyphosine 2 protein-coding 4.578 1.414
+84699 CREB3L3 cAMP responsive element binding protein 3 like 3 protein-coding 2.285 3.23
847 CAT catalase protein-coding 10.66 1.139
-8470 SORBS2 sorbin and SH3 domain containing 2 protein-coding 8.902 2.181
+8470 SORBS2 sorbin and SH3 domain containing 2 protein-coding 8.904 2.181
84700 MYO18B myosin XVIIIB protein-coding 2.291 2.282
84701 COX4I2 cytochrome c oxidase subunit 4I2 protein-coding 4.678 1.775
-84705 GTPBP3 GTP binding protein 3, mitochondrial protein-coding 8.509 0.6663
+84705 GTPBP3 GTP binding protein 3, mitochondrial protein-coding 8.509 0.6661
84706 GPT2 glutamic--pyruvic transaminase 2 protein-coding 9.848 1.499
-84707 BEX2 brain expressed X-linked 2 protein-coding 7.471 2.508
+84707 BEX2 brain expressed X-linked 2 protein-coding 7.472 2.508
84708 LNX1 ligand of numb-protein X 1 protein-coding 7.701 1.384
-84709 MGARP mitochondria localized glutamic acid rich protein protein-coding 3.185 2.169
-84717 HDGFL2 HDGF like 2 protein-coding 10.33 0.7005
-84720 PIGO phosphatidylinositol glycan anchor biosynthesis class O protein-coding 9.739 0.6362
-84722 PSRC1 proline and serine rich coiled-coil 1 protein-coding 7.438 1.449
-84725 PLEKHA8 pleckstrin homology domain containing A8 protein-coding 6.366 0.8253
-84726 PRRC2B proline rich coiled-coil 2B protein-coding 12.08 0.7258
+84709 MGARP mitochondria localized glutamic acid rich protein protein-coding 3.186 2.169
+84717 HDGFL2 HDGF like 2 protein-coding 10.33 0.7001
+84720 PIGO phosphatidylinositol glycan anchor biosynthesis class O protein-coding 9.739 0.636
+84722 PSRC1 proline and serine rich coiled-coil 1 protein-coding 7.436 1.449
+84725 PLEKHA8 pleckstrin homology domain containing A8 protein-coding 6.366 0.8252
+84726 PRRC2B proline rich coiled-coil 2B protein-coding 12.08 0.7256
84727 SPSB2 splA/ryanodine receptor domain and SOCS box containing 2 protein-coding 7.678 1.018
-8473 OGT O-linked N-acetylglucosamine (GlcNAc) transferase protein-coding 11.34 0.7631
-84733 CBX2 chromobox 2 protein-coding 7.548 1.907
-84734 FAM167B family with sequence similarity 167 member B protein-coding 6.366 1.473
-84735 CNDP1 carnosine dipeptidase 1 protein-coding 2.127 2.598
-84740 AFAP1-AS1 AFAP1 antisense RNA 1 ncRNA 4.255 3.253
-84747 UNC119B unc-119 lipid binding chaperone B protein-coding 9.904 0.9163
-84749 USP30 ubiquitin specific peptidase 30 protein-coding 8.563 0.6539
-84750 FUT10 fucosyltransferase 10 protein-coding 6.755 0.8273
-84752 B3GNT9 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 9 protein-coding 8.545 1.196
-84759 PCGF1 polycomb group ring finger 1 protein-coding 8.018 0.5479
+8473 OGT O-linked N-acetylglucosamine (GlcNAc) transferase protein-coding 11.34 0.7632
+84733 CBX2 chromobox 2 protein-coding 7.547 1.907
+84734 FAM167B family with sequence similarity 167 member B protein-coding 6.366 1.472
+84735 CNDP1 carnosine dipeptidase 1 protein-coding 2.126 2.597
+84740 AFAP1-AS1 AFAP1 antisense RNA 1 ncRNA 4.256 3.253
+84747 UNC119B unc-119 lipid binding chaperone B protein-coding 9.904 0.916
+84749 USP30 ubiquitin specific peptidase 30 protein-coding 8.563 0.6536
+84750 FUT10 fucosyltransferase 10 protein-coding 6.755 0.8271
+84752 B3GNT9 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 9 protein-coding 8.545 1.195
+84759 PCGF1 polycomb group ring finger 1 protein-coding 8.018 0.5482
8476 CDC42BPA CDC42 binding protein kinase alpha protein-coding 10.31 0.9748
-84765 ZNF577 zinc finger protein 577 protein-coding 6.916 1.359
-84766 CRACR2A calcium release activated channel regulator 2A protein-coding 5.548 1.938
+84765 ZNF577 zinc finger protein 577 protein-coding 6.917 1.359
+84766 CRACR2A calcium release activated channel regulator 2A protein-coding 5.549 1.938
84769 MPV17L2 MPV17 mitochondrial inner membrane protein like 2 protein-coding 8.31 0.6969
-8477 GPR65 G protein-coupled receptor 65 protein-coding 5.528 1.522
-84771 DDX11L2 DEAD/H-box helicase 11 like 2 pseudo 3.587 1.617
-84775 ZNF607 zinc finger protein 607 protein-coding 7.296 1.105
-84787 KMT5C lysine methyltransferase 5C protein-coding 7.559 0.8495
-8479 HIRIP3 HIRA interacting protein 3 protein-coding 8.993 0.7287
+8477 GPR65 G protein-coupled receptor 65 protein-coding 5.529 1.523
+84771 DDX11L2 DEAD/H-box helicase 11 like 2 pseudo 3.587 1.616
+84775 ZNF607 zinc finger protein 607 protein-coding 7.297 1.105
+84787 KMT5C lysine methyltransferase 5C protein-coding 7.558 0.8495
+8479 HIRIP3 HIRA interacting protein 3 protein-coding 8.993 0.7284
84790 TUBA1C tubulin alpha 1c protein-coding 12.06 1.511
-84791 LINC00467 long intergenic non-protein coding RNA 467 ncRNA 6.833 0.9875
-84792 FAM220A family with sequence similarity 220 member A protein-coding 8.888 0.5373
-84793 FOXD2-AS1 FOXD2 adjacent opposite strand RNA 1 ncRNA 5.896 1.431
-84795 PYROXD2 pyridine nucleotide-disulphide oxidoreductase domain 2 protein-coding 6.492 1.708
-84798 C19orf48 chromosome 19 open reading frame 48 protein-coding 10.3 1.186
-8480 RAE1 ribonucleic acid export 1 protein-coding 9.612 0.6472
-84803 GPAT3 glycerol-3-phosphate acyltransferase 3 protein-coding 6.233 2.079
-84804 MFSD9 major facilitator superfamily domain containing 9 protein-coding 7.308 0.867
-84807 NFKBID NFKB inhibitor delta protein-coding 5.198 1.222
-84808 PERM1 PPARGC1 and ESRR induced regulator, muscle 1 protein-coding 5.009 1.997
-84809 CROCCP2 ciliary rootlet coiled-coil, rootletin pseudogene 2 pseudo 8.465 0.8797
-8481 OFD1 OFD1, centriole and centriolar satellite protein protein-coding 9.454 0.7499
-84811 BUD13 BUD13 homolog protein-coding 8.693 0.4645
-84812 PLCD4 phospholipase C delta 4 protein-coding 6.271 1.292
-84814 PLPP7 phospholipid phosphatase 7 (inactive) protein-coding 5.165 1.87
+84791 LINC00467 long intergenic non-protein coding RNA 467 ncRNA 6.833 0.9876
+84792 FAM220A family with sequence similarity 220 member A protein-coding 8.888 0.5372
+84793 FOXD2-AS1 FOXD2 adjacent opposite strand RNA 1 ncRNA 5.895 1.431
+84795 PYROXD2 pyridine nucleotide-disulphide oxidoreductase domain 2 protein-coding 6.493 1.708
+84798 C19orf48 chromosome 19 open reading frame 48 protein-coding 10.29 1.186
+8480 RAE1 ribonucleic acid export 1 protein-coding 9.611 0.6471
+84803 GPAT3 glycerol-3-phosphate acyltransferase 3 protein-coding 6.233 2.078
+84804 MFSD9 major facilitator superfamily domain containing 9 protein-coding 7.308 0.8666
+84807 NFKBID NFKB inhibitor delta protein-coding 5.199 1.222
+84808 PERM1 PPARGC1 and ESRR induced regulator, muscle 1 protein-coding 5.008 1.996
+84809 CROCCP2 ciliary rootlet coiled-coil, rootletin pseudogene 2 pseudo 8.466 0.8795
+8481 OFD1 OFD1, centriole and centriolar satellite protein protein-coding 9.454 0.7496
+84811 BUD13 BUD13 homolog protein-coding 8.693 0.4643
+84812 PLCD4 phospholipase C delta 4 protein-coding 6.272 1.292
+84814 PLPP7 phospholipid phosphatase 7 (inactive) protein-coding 5.167 1.87
84815 MGC12916 uncharacterized protein MGC12916 ncRNA 2.962 1.584
-84816 RTN4IP1 reticulon 4 interacting protein 1 protein-coding 7.381 0.6836
-84817 TXNDC17 thioredoxin domain containing 17 protein-coding 9.8 0.8632
-84818 IL17RC interleukin 17 receptor C protein-coding 9.25 0.9823
-8482 SEMA7A semaphorin 7A (John Milton Hagen blood group) protein-coding 7.702 1.696
-84820 POLR2J4 RNA polymerase II subunit J4, pseudogene pseudo 8.118 0.6885
+84816 RTN4IP1 reticulon 4 interacting protein 1 protein-coding 7.381 0.6835
+84817 TXNDC17 thioredoxin domain containing 17 protein-coding 9.799 0.8633
+84818 IL17RC interleukin 17 receptor C protein-coding 9.251 0.9825
+8482 SEMA7A semaphorin 7A (John Milton Hagen blood group) protein-coding 7.701 1.696
+84820 POLR2J4 RNA polymerase II subunit J4, pseudogene pseudo 8.119 0.6883
84823 LMNB2 lamin B2 protein-coding 10.77 1.058
-84824 FCRLA Fc receptor like A protein-coding 3.799 2.422
-84826 SFT2D3 SFT2 domain containing 3 protein-coding 8.446 0.5446
-8483 CILP cartilage intermediate layer protein protein-coding 5.93 2.995
+84824 FCRLA Fc receptor like A protein-coding 3.8 2.422
+84826 SFT2D3 SFT2 domain containing 3 protein-coding 8.445 0.5444
+8483 CILP cartilage intermediate layer protein protein-coding 5.932 2.995
84830 ADTRP androgen dependent TFPI regulating protein protein-coding 4.794 2.418
84832 ANKRD36BP1 ankyrin repeat domain 36B pseudogene 1 pseudo 5.949 1.613
-84833 ATP5MD ATP synthase membrane subunit DAPIT protein-coding 9.798 0.7782
+84833 ATP5MD ATP synthase membrane subunit DAPIT protein-coding 9.797 0.7781
84836 ABHD14B abhydrolase domain containing 14B protein-coding 10.48 1.015
-84837 ARHGAP5-AS1 ARHGAP5 antisense RNA 1 (head to head) ncRNA 6.223 0.9879
-84838 ZNF496 zinc finger protein 496 protein-coding 8.143 0.8167
-8484 GALR3 galanin receptor 3 protein-coding 0.5164 0.8474
-84842 HPDL 4-hydroxyphenylpyruvate dioxygenase like protein-coding 4.914 2.219
+84837 ARHGAP5-AS1 ARHGAP5 antisense RNA 1 (head to head) ncRNA 6.223 0.9877
+84838 ZNF496 zinc finger protein 496 protein-coding 8.144 0.8164
+8484 GALR3 galanin receptor 3 protein-coding 0.5163 0.8476
+84842 HPDL 4-hydroxyphenylpyruvate dioxygenase like protein-coding 4.913 2.218
84844 PHF5A PHD finger protein 5A protein-coding 8.999 0.6399
84848 MIR503HG MIR503 host gene ncRNA 3.672 1.685
-84851 TRIM52 tripartite motif containing 52 protein-coding 7.22 0.8742
-84852 ATP1A1-AS1 ATP1A1 antisense RNA 1 ncRNA 5.82 0.9254
+84851 TRIM52 tripartite motif containing 52 protein-coding 7.221 0.8742
+84852 ATP1A1-AS1 ATP1A1 antisense RNA 1 ncRNA 5.821 0.9256
84858 ZNF503 zinc finger protein 503 protein-coding 8.613 1.3
-84859 LRCH3 leucine rich repeats and calponin homology domain containing 3 protein-coding 8.082 0.831
-84861 KLHL22 kelch like family member 22 protein-coding 8.973 0.7889
-84864 RIOX2 ribosomal oxygenase 2 protein-coding 9.496 0.8268
-84865 CCDC142 coiled-coil domain containing 142 protein-coding 7.315 0.631
-84866 TMEM25 transmembrane protein 25 protein-coding 8.372 1.552
+84859 LRCH3 leucine rich repeats and calponin homology domain containing 3 protein-coding 8.083 0.8308
+84861 KLHL22 kelch like family member 22 protein-coding 8.974 0.7886
+84864 RIOX2 ribosomal oxygenase 2 protein-coding 9.496 0.8266
+84865 CCDC142 coiled-coil domain containing 142 protein-coding 7.315 0.6308
+84866 TMEM25 transmembrane protein 25 protein-coding 8.372 1.551
84868 HAVCR2 hepatitis A virus cellular receptor 2 protein-coding 7.857 1.652
-84869 CBR4 carbonyl reductase 4 protein-coding 8.798 0.788
-8487 GEMIN2 gem nuclear organelle associated protein 2 protein-coding 7.229 0.7344
-84870 RSPO3 R-spondin 3 protein-coding 4.816 2.343
-84871 AGBL4 ATP/GTP binding protein like 4 protein-coding 2.326 1.783
-84872 ZC3H10 zinc finger CCCH-type containing 10 protein-coding 7.453 0.6033
-84874 ZNF514 zinc finger protein 514 protein-coding 7.636 0.8744
-84875 PARP10 poly(ADP-ribose) polymerase family member 10 protein-coding 10.51 0.9927
-84876 ORAI1 ORAI calcium release-activated calcium modulator 1 protein-coding 8.791 0.8649
-84878 ZBTB45 zinc finger and BTB domain containing 45 protein-coding 8.301 0.5761
-84879 MFSD2A major facilitator superfamily domain containing 2A protein-coding 7.6 2.261
-84881 RPUSD4 RNA pseudouridylate synthase domain containing 4 protein-coding 8.852 0.5234
-84883 AIFM2 apoptosis inducing factor, mitochondria associated 2 protein-coding 8.781 1.008
+84869 CBR4 carbonyl reductase 4 protein-coding 8.798 0.7877
+8487 GEMIN2 gem nuclear organelle associated protein 2 protein-coding 7.229 0.7343
+84870 RSPO3 R-spondin 3 protein-coding 4.819 2.344
+84871 AGBL4 ATP/GTP binding protein like 4 protein-coding 2.327 1.783
+84872 ZC3H10 zinc finger CCCH-type containing 10 protein-coding 7.453 0.6031
+84874 ZNF514 zinc finger protein 514 protein-coding 7.637 0.8745
+84875 PARP10 poly(ADP-ribose) polymerase family member 10 protein-coding 10.51 0.9925
+84876 ORAI1 ORAI calcium release-activated calcium modulator 1 protein-coding 8.791 0.8655
+84878 ZBTB45 zinc finger and BTB domain containing 45 protein-coding 8.301 0.5759
+84879 MFSD2A major facilitator superfamily domain containing 2A protein-coding 7.599 2.261
+84881 RPUSD4 RNA pseudouridylate synthase domain containing 4 protein-coding 8.852 0.5232
+84883 AIFM2 apoptosis inducing factor, mitochondria associated 2 protein-coding 8.781 1.007
84885 ZDHHC12 zinc finger DHHC-type containing 12 protein-coding 9.511 1.089
-84886 C1orf198 chromosome 1 open reading frame 198 protein-coding 10.53 0.8784
-84888 SPPL2A signal peptide peptidase like 2A protein-coding 9.342 0.7798
+84886 C1orf198 chromosome 1 open reading frame 198 protein-coding 10.53 0.8787
+84888 SPPL2A signal peptide peptidase like 2A protein-coding 9.342 0.7795
84890 ADO 2-aminoethanethiol dioxygenase protein-coding 9.293 0.5172
-84891 ZSCAN10 zinc finger and SCAN domain containing 10 protein-coding 0.6312 1.437
-84892 POMGNT2 protein O-linked mannose N-acetylglucosaminyltransferase 2 (beta 1,4-) protein-coding 8.937 0.9219
-84893 FBH1 F-box DNA helicase 1 protein-coding 10.56 0.4273
-84894 LINGO1 leucine rich repeat and Ig domain containing 1 protein-coding 7.127 2.169
-84895 MIGA2 mitoguardin 2 protein-coding 9.038 0.6999
-84896 ATAD1 ATPase family, AAA domain containing 1 protein-coding 9.855 0.653
-84897 TBRG1 transforming growth factor beta regulator 1 protein-coding 9.572 0.6093
-84898 PLXDC2 plexin domain containing 2 protein-coding 8.144 1.588
-84899 TMTC4 transmembrane and tetratricopeptide repeat containing 4 protein-coding 8.873 0.9478
+84891 ZSCAN10 zinc finger and SCAN domain containing 10 protein-coding 0.632 1.439
+84892 POMGNT2 protein O-linked mannose N-acetylglucosaminyltransferase 2 (beta 1,4-) protein-coding 8.938 0.9216
+84893 FBH1 F-box DNA helicase 1 protein-coding 10.56 0.4272
+84894 LINGO1 leucine rich repeat and Ig domain containing 1 protein-coding 7.126 2.169
+84895 MIGA2 mitoguardin 2 protein-coding 9.038 0.6996
+84896 ATAD1 ATPase family, AAA domain containing 1 protein-coding 9.855 0.6528
+84897 TBRG1 transforming growth factor beta regulator 1 protein-coding 9.572 0.6094
+84898 PLXDC2 plexin domain containing 2 protein-coding 8.145 1.588
+84899 TMTC4 transmembrane and tetratricopeptide repeat containing 4 protein-coding 8.873 0.9475
8490 RGS5 regulator of G protein signaling 5 protein-coding 11.02 2.029
-84900 RNFT2 ring finger protein, transmembrane 2 protein-coding 6.206 1.653
+84900 RNFT2 ring finger protein, transmembrane 2 protein-coding 6.205 1.654
84901 NFATC2IP nuclear factor of activated T cells 2 interacting protein protein-coding 9.595 0.6313
-84902 CEP89 centrosomal protein 89 protein-coding 8.816 0.6533
-84904 ARHGEF39 Rho guanine nucleotide exchange factor 39 protein-coding 6.904 1.442
-84905 ZNF341 zinc finger protein 341 protein-coding 7.284 0.6088
-84908 FAM136A family with sequence similarity 136 member A protein-coding 9.823 0.6827
-84909 C9orf3 chromosome 9 open reading frame 3 protein-coding 8.909 1.086
-8491 MAP4K3 mitogen-activated protein kinase kinase kinase kinase 3 protein-coding 9.436 0.7317
+84902 CEP89 centrosomal protein 89 protein-coding 8.816 0.6534
+84904 ARHGEF39 Rho guanine nucleotide exchange factor 39 protein-coding 6.903 1.442
+84905 ZNF341 zinc finger protein 341 protein-coding 7.284 0.6086
+84908 FAM136A family with sequence similarity 136 member A protein-coding 9.822 0.6828
+84909 C9orf3 chromosome 9 open reading frame 3 protein-coding 8.91 1.086
+8491 MAP4K3 mitogen-activated protein kinase kinase kinase kinase 3 protein-coding 9.437 0.7314
84910 TMEM87B transmembrane protein 87B protein-coding 9.87 1.022
-84911 ZNF382 zinc finger protein 382 protein-coding 4.895 1.469
-84912 SLC35B4 solute carrier family 35 member B4 protein-coding 8.903 0.823
-84913 ATOH8 atonal bHLH transcription factor 8 protein-coding 7.004 2.37
-84914 ZNF587 zinc finger protein 587 protein-coding 9.128 0.9358
-84915 FAM222A family with sequence similarity 222 member A protein-coding 7.007 1.845
+84911 ZNF382 zinc finger protein 382 protein-coding 4.896 1.469
+84912 SLC35B4 solute carrier family 35 member B4 protein-coding 8.903 0.8228
+84913 ATOH8 atonal bHLH transcription factor 8 protein-coding 7.006 2.37
+84914 ZNF587 zinc finger protein 587 protein-coding 9.129 0.9355
+84915 FAM222A family with sequence similarity 222 member A protein-coding 7.006 1.845
84916 UTP4 UTP4, small subunit processome component protein-coding 9.854 0.6376
84918 LRP11 LDL receptor related protein 11 protein-coding 10.1 1.041
-84919 PPP1R15B protein phosphatase 1 regulatory subunit 15B protein-coding 10.7 0.6252
-8492 PRSS12 serine protease 12 protein-coding 5.458 2.686
-84920 ALG10 ALG10, alpha-1,2-glucosyltransferase protein-coding 6.598 0.823
-84922 FIZ1 FLT3 interacting zinc finger 1 protein-coding 8.642 0.5818
-84923 FAM104A family with sequence similarity 104 member A protein-coding 9.561 0.426
-84924 ZNF566 zinc finger protein 566 protein-coding 7.335 0.796
-84925 DIRC2 disrupted in renal carcinoma 2 protein-coding 8.531 0.7134
+84919 PPP1R15B protein phosphatase 1 regulatory subunit 15B protein-coding 10.7 0.625
+8492 PRSS12 serine protease 12 protein-coding 5.46 2.685
+84920 ALG10 ALG10, alpha-1,2-glucosyltransferase protein-coding 6.598 0.8228
+84922 FIZ1 FLT3 interacting zinc finger 1 protein-coding 8.642 0.5819
+84923 FAM104A family with sequence similarity 104 member A protein-coding 9.561 0.4259
+84924 ZNF566 zinc finger protein 566 protein-coding 7.336 0.7958
+84925 DIRC2 disrupted in renal carcinoma 2 protein-coding 8.532 0.7131
84926 SPRYD3 SPRY domain containing 3 protein-coding 10.47 0.6884
-84928 TMEM209 transmembrane protein 209 protein-coding 9.108 0.6121
-84929 FIBCD1 fibrinogen C domain containing 1 protein-coding 3.971 2.57
-8493 PPM1D protein phosphatase, Mg2+/Mn2+ dependent 1D protein-coding 8.203 0.6514
-84930 MASTL microtubule associated serine/threonine kinase like protein-coding 8.219 0.8717
-84932 RAB2B RAB2B, member RAS oncogene family protein-coding 8.862 0.6087
-84933 C8orf76 chromosome 8 open reading frame 76 protein-coding 8.664 0.7318
-84934 RITA1 RBPJ interacting and tubulin associated 1 protein-coding 9.005 0.5384
-84936 ZFYVE19 zinc finger FYVE-type containing 19 protein-coding 9.105 0.621
-84937 ZNRF1 zinc and ring finger 1 protein-coding 9.175 0.8056
-84938 ATG4C autophagy related 4C cysteine peptidase protein-coding 7.478 0.614
-84939 MUM1 melanoma associated antigen (mutated) 1 protein-coding 9.697 0.7915
-84940 CORO6 coronin 6 protein-coding 5.162 2.259
-84941 HSH2D hematopoietic SH2 domain containing protein-coding 6.777 2.225
-84942 WDR73 WD repeat domain 73 protein-coding 8.417 0.5201
+84928 TMEM209 transmembrane protein 209 protein-coding 9.108 0.612
+84929 FIBCD1 fibrinogen C domain containing 1 protein-coding 3.971 2.569
+8493 PPM1D protein phosphatase, Mg2+/Mn2+ dependent 1D protein-coding 8.203 0.6511
+84930 MASTL microtubule associated serine/threonine kinase like protein-coding 8.219 0.8714
+84932 RAB2B RAB2B, member RAS oncogene family protein-coding 8.862 0.6086
+84933 C8orf76 chromosome 8 open reading frame 76 protein-coding 8.663 0.7318
+84934 RITA1 RBPJ interacting and tubulin associated 1 protein-coding 9.004 0.5385
+84936 ZFYVE19 zinc finger FYVE-type containing 19 protein-coding 9.105 0.6208
+84937 ZNRF1 zinc and ring finger 1 protein-coding 9.175 0.8054
+84938 ATG4C autophagy related 4C cysteine peptidase protein-coding 7.478 0.6139
+84939 MUM1 melanoma associated antigen (mutated) 1 protein-coding 9.697 0.7913
+84940 CORO6 coronin 6 protein-coding 5.163 2.259
+84941 HSH2D hematopoietic SH2 domain containing protein-coding 6.778 2.224
+84942 WDR73 WD repeat domain 73 protein-coding 8.418 0.52
84944 MAEL maelstrom spermatogenic transposon silencer protein-coding 2.181 2.178
-84945 ABHD13 abhydrolase domain containing 13 protein-coding 8.723 0.5778
-84946 LTV1 LTV1 ribosome biogenesis factor protein-coding 9.062 0.6384
-84947 SERAC1 serine active site containing 1 protein-coding 7.749 0.737
-84948 TIGD5 tigger transposable element derived 5 protein-coding 7.812 0.7796
-8495 PPFIBP2 PPFIA binding protein 2 protein-coding 9.341 1.122
-84950 PRPF38A pre-mRNA processing factor 38A protein-coding 9.722 0.5357
-84951 TNS4 tensin 4 protein-coding 6.929 4.304
-84952 CGNL1 cingulin like 1 protein-coding 8.746 2.128
-84953 MICALCL MICAL C-terminal like protein-coding 4.236 2.171
+84945 ABHD13 abhydrolase domain containing 13 protein-coding 8.723 0.5776
+84946 LTV1 LTV1 ribosome biogenesis factor protein-coding 9.062 0.6382
+84947 SERAC1 serine active site containing 1 protein-coding 7.749 0.7373
+84948 TIGD5 tigger transposable element derived 5 protein-coding 7.811 0.7795
+8495 PPFIBP2 PPFIA binding protein 2 protein-coding 9.342 1.122
+84950 PRPF38A pre-mRNA processing factor 38A protein-coding 9.722 0.5355
+84951 TNS4 tensin 4 protein-coding 6.929 4.303
+84952 CGNL1 cingulin like 1 protein-coding 8.748 2.128
+84953 MICALCL MICAL C-terminal like protein-coding 4.236 2.17
84954 MPND MPN domain containing protein-coding 8.889 0.7963
-84955 NUDCD1 NudC domain containing 1 protein-coding 8.829 0.7938
-84957 RELT RELT, TNF receptor protein-coding 7.692 1.136
-84958 SYTL1 synaptotagmin like 1 protein-coding 8.299 2.733
+84955 NUDCD1 NudC domain containing 1 protein-coding 8.828 0.7936
+84957 RELT RELT, TNF receptor protein-coding 7.691 1.137
+84958 SYTL1 synaptotagmin like 1 protein-coding 8.3 2.732
84959 UBASH3B ubiquitin associated and SH3 domain containing B protein-coding 7.28 1.473
8496 PPFIBP1 PPFIA binding protein 1 protein-coding 10.01 1.051
-84960 CCDC183 coiled-coil domain containing 183 protein-coding 3.612 1.756
-84961 FBXL20 F-box and leucine rich repeat protein 20 protein-coding 7.151 0.6661
-84962 AJUBA ajuba LIM protein protein-coding 8.981 1.51
-84964 ALKBH6 alkB homolog 6 protein-coding 7.266 0.7929
-84967 LSM10 LSM10, U7 small nuclear RNA associated protein-coding 8.978 0.6075
-84968 PNMA6A PNMA family member 6A protein-coding 5.714 2.526
+84960 CCDC183 coiled-coil domain containing 183 protein-coding 3.614 1.756
+84961 FBXL20 F-box and leucine rich repeat protein 20 protein-coding 7.151 0.6659
+84962 AJUBA ajuba LIM protein protein-coding 8.98 1.51
+84964 ALKBH6 alkB homolog 6 protein-coding 7.266 0.7928
+84967 LSM10 LSM10, U7 small nuclear RNA associated protein-coding 8.978 0.6072
+84968 PNMA6A PNMA family member 6A protein-coding 5.713 2.525
84969 TOX2 TOX high mobility group box family member 2 protein-coding 6.57 1.632
-8497 PPFIA4 PTPRF interacting protein alpha 4 protein-coding 5.681 2.193
-84971 ATG4D autophagy related 4D cysteine peptidase protein-coding 8.872 0.7657
-84973 SNHG7 small nucleolar RNA host gene 7 ncRNA 9.369 1.079
-84975 MFSD5 major facilitator superfamily domain containing 5 protein-coding 9.66 0.566
-84976 DISP1 dispatched RND transporter family member 1 protein-coding 7.664 1.141
-84978 FRMD5 FERM domain containing 5 protein-coding 4.148 2.588
-8498 RANBP3 RAN binding protein 3 protein-coding 10.42 0.472
+8497 PPFIA4 PTPRF interacting protein alpha 4 protein-coding 5.68 2.192
+84971 ATG4D autophagy related 4D cysteine peptidase protein-coding 8.872 0.7655
+84973 SNHG7 small nucleolar RNA host gene 7 ncRNA 9.37 1.079
+84975 MFSD5 major facilitator superfamily domain containing 5 protein-coding 9.659 0.5659
+84976 DISP1 dispatched RND transporter family member 1 protein-coding 7.665 1.141
+84978 FRMD5 FERM domain containing 5 protein-coding 4.148 2.587
+8498 RANBP3 RAN binding protein 3 protein-coding 10.42 0.4719
84981 MIR22HG MIR22 host gene ncRNA 7.248 1.105
-84983 FAM222A-AS1 FAM222A antisense RNA 1 ncRNA 1.781 1.589
-84984 CEP19 centrosomal protein 19 protein-coding 6.103 1.096
-84985 FAM83A family with sequence similarity 83 member A protein-coding 4.929 4.266
-84986 ARHGAP19 Rho GTPase activating protein 19 protein-coding 8.424 0.7918
-84987 COX14 COX14, cytochrome c oxidase assembly factor protein-coding 9.44 0.6844
-84988 PPP1R16A protein phosphatase 1 regulatory subunit 16A protein-coding 9.773 0.9167
-84989 JMJD1C-AS1 JMJD1C antisense RNA 1 ncRNA 3.638 1.258
-8499 PPFIA2 PTPRF interacting protein alpha 2 protein-coding 2.908 2.407
-84991 RBM17 RNA binding motif protein 17 protein-coding 10.55 0.5275
-84992 PIGY phosphatidylinositol glycan anchor biosynthesis class Y protein-coding 10.52 0.5032
-84993 UBL7 ubiquitin like 7 protein-coding 9.794 0.5505
+84983 FAM222A-AS1 FAM222A antisense RNA 1 ncRNA 1.78 1.589
+84984 CEP19 centrosomal protein 19 protein-coding 6.103 1.095
+84985 FAM83A family with sequence similarity 83 member A protein-coding 4.928 4.264
+84986 ARHGAP19 Rho GTPase activating protein 19 protein-coding 8.424 0.7916
+84987 COX14 COX14, cytochrome c oxidase assembly factor protein-coding 9.44 0.6842
+84988 PPP1R16A protein phosphatase 1 regulatory subunit 16A protein-coding 9.773 0.9166
+84989 JMJD1C-AS1 JMJD1C antisense RNA 1 ncRNA 3.639 1.258
+8499 PPFIA2 PTPRF interacting protein alpha 2 protein-coding 2.91 2.408
+84991 RBM17 RNA binding motif protein 17 protein-coding 10.55 0.5273
+84992 PIGY phosphatidylinositol glycan anchor biosynthesis class Y protein-coding 10.52 0.503
+84993 UBL7 ubiquitin like 7 protein-coding 9.794 0.5504
84996 URB1-AS1 URB1 antisense RNA 1 (head to head) ncRNA 6.656 0.8879
-8500 PPFIA1 PTPRF interacting protein alpha 1 protein-coding 10.3 0.7563
-85001 MGC16275 uncharacterized protein MGC16275 ncRNA 5.465 1.075
-85002 FAM86B1 family with sequence similarity 86 member B1 protein-coding 6.051 1.377
-85007 PHYKPL 5-phosphohydroxy-L-lysine phospho-lyase protein-coding 8.767 0.7912
-85009 MGC16025 uncharacterized LOC85009 ncRNA 1.182 1.489
-8501 SLC43A1 solute carrier family 43 member 1 protein-coding 7.767 2.033
-85012 TCEAL3 transcription elongation factor A like 3 protein-coding 8.796 1.391
-85013 TMEM128 transmembrane protein 128 protein-coding 8.99 0.6064
+8500 PPFIA1 PTPRF interacting protein alpha 1 protein-coding 10.3 0.756
+85001 MGC16275 uncharacterized protein MGC16275 ncRNA 5.466 1.074
+85002 FAM86B1 family with sequence similarity 86 member B1 protein-coding 6.052 1.376
+85007 PHYKPL 5-phosphohydroxy-L-lysine phospho-lyase protein-coding 8.768 0.7913
+85009 MGC16025 uncharacterized LOC85009 ncRNA 1.182 1.488
+8501 SLC43A1 solute carrier family 43 member 1 protein-coding 7.768 2.033
+85012 TCEAL3 transcription elongation factor A like 3 protein-coding 8.797 1.391
+85013 TMEM128 transmembrane protein 128 protein-coding 8.991 0.6063
85014 TMEM141 transmembrane protein 141 protein-coding 10.07 1.04
-85015 USP45 ubiquitin specific peptidase 45 protein-coding 7.43 0.7146
-85019 TMEM241 transmembrane protein 241 protein-coding 7.432 1.078
-8502 PKP4 plakophilin 4 protein-coding 10.9 0.7999
-85021 REPS1 RALBP1 associated Eps domain containing 1 protein-coding 9.562 0.6299
-85025 TMEM60 transmembrane protein 60 protein-coding 8.41 0.5909
-85026 ARRDC1-AS1 ARRDC1 antisense RNA 1 ncRNA 7.566 0.8031
-85027 SMIM3 small integral membrane protein 3 protein-coding 8.737 1.311
+85015 USP45 ubiquitin specific peptidase 45 protein-coding 7.43 0.7144
+85019 TMEM241 transmembrane protein 241 protein-coding 7.431 1.078
+8502 PKP4 plakophilin 4 protein-coding 10.9 0.7997
+85021 REPS1 RALBP1 associated Eps domain containing 1 protein-coding 9.562 0.6296
+85025 TMEM60 transmembrane protein 60 protein-coding 8.41 0.5912
+85026 ARRDC1-AS1 ARRDC1 antisense RNA 1 ncRNA 7.566 0.8029
+85027 SMIM3 small integral membrane protein 3 protein-coding 8.737 1.31
85028 SNHG12 small nucleolar RNA host gene 12 ncRNA 7.918 1.11
-8503 PIK3R3 phosphoinositide-3-kinase regulatory subunit 3 protein-coding 9.724 1.219
-8504 PEX3 peroxisomal biogenesis factor 3 protein-coding 8.261 0.6589
-8505 PARG poly(ADP-ribose) glycohydrolase protein-coding 8.715 0.5393
+8503 PIK3R3 phosphoinositide-3-kinase regulatory subunit 3 protein-coding 9.724 1.218
+8504 PEX3 peroxisomal biogenesis factor 3 protein-coding 8.261 0.6588
+8505 PARG poly(ADP-ribose) glycohydrolase protein-coding 8.715 0.5391
8506 CNTNAP1 contactin associated protein 1 protein-coding 7.672 1.528
8507 ENC1 ectodermal-neural cortex 1 protein-coding 10.09 1.516
8508 NIPSNAP1 nipsnap homolog 1 protein-coding 10.63 0.8456
-8509 NDST2 N-deacetylase and N-sulfotransferase 2 protein-coding 8.916 0.5037
-8510 MMP23B matrix metallopeptidase 23B protein-coding 5.599 1.702
-8512 MBL1P mannose binding lectin 1, pseudogene pseudo 2.497 1.56
-8514 KCNAB2 potassium voltage-gated channel subfamily A regulatory beta subunit 2 protein-coding 8.235 1.425
-8515 ITGA10 integrin subunit alpha 10 protein-coding 5.157 1.716
-8516 ITGA8 integrin subunit alpha 8 protein-coding 4.346 2.471
-8517 IKBKG inhibitor of nuclear factor kappa B kinase subunit gamma protein-coding 9.013 0.682
-8518 ELP1 elongator complex protein 1 protein-coding 9.917 0.5772
-8519 IFITM1 interferon induced transmembrane protein 1 protein-coding 11.11 1.727
-8520 HAT1 histone acetyltransferase 1 protein-coding 9.823 0.623
-8521 GCM1 glial cells missing homolog 1 protein-coding 1.406 1.494
-8522 GAS7 growth arrest specific 7 protein-coding 8.913 1.852
-85235 HIST1H2AH histone cluster 1 H2A family member h protein-coding 0.8175 0.9524
+8509 NDST2 N-deacetylase and N-sulfotransferase 2 protein-coding 8.917 0.5038
+8510 MMP23B matrix metallopeptidase 23B protein-coding 5.601 1.702
+8512 MBL1P mannose binding lectin 1, pseudogene pseudo 2.498 1.561
+8514 KCNAB2 potassium voltage-gated channel subfamily A regulatory beta subunit 2 protein-coding 8.235 1.426
+8515 ITGA10 integrin subunit alpha 10 protein-coding 5.158 1.716
+8516 ITGA8 integrin subunit alpha 8 protein-coding 4.349 2.472
+8517 IKBKG inhibitor of nuclear factor kappa B kinase subunit gamma protein-coding 9.013 0.6819
+8518 ELP1 elongator complex protein 1 protein-coding 9.917 0.5771
+8519 IFITM1 interferon induced transmembrane protein 1 protein-coding 11.11 1.726
+8520 HAT1 histone acetyltransferase 1 protein-coding 9.823 0.6229
+8521 GCM1 glial cells missing homolog 1 protein-coding 1.405 1.494
+8522 GAS7 growth arrest specific 7 protein-coding 8.914 1.852
+85235 HIST1H2AH histone cluster 1 H2A family member h protein-coding 0.817 0.9521
85236 HIST1H2BK histone cluster 1 H2B family member k protein-coding 9.899 1.53
-8525 DGKZ diacylglycerol kinase zeta protein-coding 9.811 0.7894
-8526 DGKE diacylglycerol kinase epsilon protein-coding 7.471 1.174
-8527 DGKD diacylglycerol kinase delta protein-coding 9.518 0.9488
-8528 DDO D-aspartate oxidase protein-coding 5.185 1.912
-8529 CYP4F2 cytochrome P450 family 4 subfamily F member 2 protein-coding 1.977 2.842
-8530 CST7 cystatin F protein-coding 6.064 1.926
-85300 ATCAY ATCAY, caytaxin protein-coding 2.337 3.613
-85301 COL27A1 collagen type XXVII alpha 1 chain protein-coding 7.726 2.004
-85302 FBF1 Fas binding factor 1 protein-coding 7.49 1.05
+8525 DGKZ diacylglycerol kinase zeta protein-coding 9.811 0.7892
+8526 DGKE diacylglycerol kinase epsilon protein-coding 7.472 1.174
+8527 DGKD diacylglycerol kinase delta protein-coding 9.519 0.9487
+8528 DDO D-aspartate oxidase protein-coding 5.186 1.912
+8529 CYP4F2 cytochrome P450 family 4 subfamily F member 2 protein-coding 1.978 2.842
+8530 CST7 cystatin F protein-coding 6.065 1.926
+85300 ATCAY ATCAY, caytaxin protein-coding 2.34 3.615
+85301 COL27A1 collagen type XXVII alpha 1 chain protein-coding 7.727 2.004
+85302 FBF1 Fas binding factor 1 protein-coding 7.491 1.05
8531 YBX3 Y-box binding protein 3 protein-coding 11.45 1.325
-85313 PPIL4 peptidylprolyl isomerase like 4 protein-coding 9.113 0.6158
-85315 PAQR8 progestin and adipoQ receptor family member 8 protein-coding 8.36 1.653
-85319 BAGE2 BAGE family member 2 protein-coding 1.637 1.343
-8532 CPZ carboxypeptidase Z protein-coding 6.9 2.476
+85313 PPIL4 peptidylprolyl isomerase like 4 protein-coding 9.114 0.6156
+85315 PAQR8 progestin and adipoQ receptor family member 8 protein-coding 8.361 1.653
+85319 BAGE2 BAGE family member 2 protein-coding 1.637 1.342
+8532 CPZ carboxypeptidase Z protein-coding 6.901 2.475
85320 ABCC11 ATP binding cassette subfamily C member 11 protein-coding 3.104 2.739
-85329 LGALS12 galectin 12 protein-coding 2.045 1.956
-8533 COPS3 COP9 signalosome subunit 3 protein-coding 10.03 0.567
+85329 LGALS12 galectin 12 protein-coding 2.045 1.955
+8533 COPS3 COP9 signalosome subunit 3 protein-coding 10.03 0.5669
8534 CHST1 carbohydrate sulfotransferase 1 protein-coding 6.983 2.08
-8535 CBX4 chromobox 4 protein-coding 9.466 0.7574
-85352 SHISAL1 shisa like 1 protein-coding 5.478 2.417
-85358 SHANK3 SH3 and multiple ankyrin repeat domains 3 protein-coding 8.978 1.049
-85359 DGCR6L DiGeorge syndrome critical region gene 6 like protein-coding 9.716 0.7985
+8535 CBX4 chromobox 4 protein-coding 9.465 0.7573
+85352 SHISAL1 shisa like 1 protein-coding 5.48 2.417
+85358 SHANK3 SH3 and multiple ankyrin repeat domains 3 protein-coding 8.979 1.049
+85359 DGCR6L DiGeorge syndrome critical region gene 6 like protein-coding 9.715 0.7983
8536 CAMK1 calcium/calmodulin dependent protein kinase I protein-coding 8.466 1.212
-85360 SYDE1 synapse defective Rho GTPase homolog 1 protein-coding 8.187 1.242
-85363 TRIM5 tripartite motif containing 5 protein-coding 8.72 0.8724
-85364 ZCCHC3 zinc finger CCHC-type containing 3 protein-coding 9.248 0.6101
-85365 ALG2 ALG2, alpha-1,3/1,6-mannosyltransferase protein-coding 9.643 0.5818
+85360 SYDE1 synapse defective Rho GTPase homolog 1 protein-coding 8.188 1.242
+85363 TRIM5 tripartite motif containing 5 protein-coding 8.72 0.8725
+85364 ZCCHC3 zinc finger CCHC-type containing 3 protein-coding 9.248 0.61
+85365 ALG2 ALG2, alpha-1,3/1,6-mannosyltransferase protein-coding 9.643 0.5816
85366 MYLK2 myosin light chain kinase 2 protein-coding 2.91 1.794
-85369 STRIP1 striatin interacting protein 1 protein-coding 9.354 0.5144
-8537 BCAS1 breast carcinoma amplified sequence 1 protein-coding 6.277 3.702
-85376 RIMBP3 RIMS binding protein 3 protein-coding 4.963 1.346
-85377 MICALL1 MICAL like 1 protein-coding 9.835 1.113
-85378 TUBGCP6 tubulin gamma complex associated protein 6 protein-coding 9.804 0.7477
+85369 STRIP1 striatin interacting protein 1 protein-coding 9.354 0.5141
+8537 BCAS1 breast carcinoma amplified sequence 1 protein-coding 6.278 3.702
+85376 RIMBP3 RIMS binding protein 3 protein-coding 4.964 1.345
+85377 MICALL1 MICAL like 1 protein-coding 9.835 1.112
+85378 TUBGCP6 tubulin gamma complex associated protein 6 protein-coding 9.805 0.7478
85379 KIAA1671 KIAA1671 protein-coding 10.39 1.053
-8539 API5 apoptosis inhibitor 5 protein-coding 11.04 0.4867
-85395 FAM207A family with sequence similarity 207 member A protein-coding 7.63 0.8793
-8540 AGPS alkylglycerone phosphate synthase protein-coding 9.968 0.8087
-85403 EAF1 ELL associated factor 1 protein-coding 9.567 0.6402
-85406 DNAJC14 DnaJ heat shock protein family (Hsp40) member C14 protein-coding 10.12 0.4176
-85407 NKD1 naked cuticle homolog 1 protein-coding 5.152 2.384
-85409 NKD2 naked cuticle homolog 2 protein-coding 6.106 2.172
+8539 API5 apoptosis inhibitor 5 protein-coding 11.04 0.4866
+85395 FAM207A family with sequence similarity 207 member A protein-coding 7.629 0.8794
+8540 AGPS alkylglycerone phosphate synthase protein-coding 9.967 0.8087
+85403 EAF1 ELL associated factor 1 protein-coding 9.568 0.6401
+85406 DNAJC14 DnaJ heat shock protein family (Hsp40) member C14 protein-coding 10.12 0.4175
+85407 NKD1 naked cuticle homolog 1 protein-coding 5.153 2.383
+85409 NKD2 naked cuticle homolog 2 protein-coding 6.106 2.171
8541 PPFIA3 PTPRF interacting protein alpha 3 protein-coding 7.957 1.345
-85413 SLC22A16 solute carrier family 22 member 16 protein-coding 1.48 1.5
-85414 SLC45A3 solute carrier family 45 member 3 protein-coding 7.615 2.431
+85413 SLC22A16 solute carrier family 22 member 16 protein-coding 1.48 1.499
+85414 SLC45A3 solute carrier family 45 member 3 protein-coding 7.617 2.433
85415 RHPN2 rhophilin Rho GTPase binding protein 2 protein-coding 9.1 1.843
-85417 CCNB3 cyclin B3 protein-coding 3.527 1.357
-8542 APOL1 apolipoprotein L1 protein-coding 11.06 1.922
+85417 CCNB3 cyclin B3 protein-coding 3.526 1.357
+8542 APOL1 apolipoprotein L1 protein-coding 11.06 1.921
8543 LMO4 LIM domain only 4 protein-coding 10.18 1.166
-85437 ZCRB1 zinc finger CCHC-type and RNA binding motif containing 1 protein-coding 9.786 0.4932
+85437 ZCRB1 zinc finger CCHC-type and RNA binding motif containing 1 protein-coding 9.785 0.4931
85439 STON2 stonin 2 protein-coding 7.885 1.841
-8544 PIR pirin protein-coding 8.041 1.448
-85440 DOCK7 dedicator of cytokinesis 7 protein-coding 9.484 0.8348
+8544 PIR pirin protein-coding 8.041 1.447
+85440 DOCK7 dedicator of cytokinesis 7 protein-coding 9.485 0.8344
85441 HELZ2 helicase with zinc finger 2 protein-coding 10.08 1.094
-85442 KNDC1 kinase non-catalytic C-lobe domain containing 1 protein-coding 5.12 3.156
-85444 LRRCC1 leucine rich repeat and coiled-coil centrosomal protein 1 protein-coding 8.382 1.117
-85449 KIAA1755 KIAA1755 protein-coding 6.099 2.138
-8545 CGGBP1 CGG triplet repeat binding protein 1 protein-coding 10.79 0.5148
-85450 ITPRIP inositol 1,4,5-trisphosphate receptor interacting protein protein-coding 9.552 1.087
-85451 UNK unkempt family zinc finger protein-coding 9.519 0.5313
-85453 TSPYL5 TSPY like 5 protein-coding 7.992 2.075
-85455 DISP2 dispatched RND transporter family member 2 protein-coding 5.663 1.945
-85456 TNKS1BP1 tankyrase 1 binding protein 1 protein-coding 11.88 0.8495
-85457 CIPC CLOCK interacting pacemaker protein-coding 9.471 0.852
-85458 DIXDC1 DIX domain containing 1 protein-coding 8.479 1.355
-85459 CEP295 centrosomal protein 295 protein-coding 8.327 0.7457
-8546 AP3B1 adaptor related protein complex 3 beta 1 subunit protein-coding 10.18 0.5181
-85460 ZNF518B zinc finger protein 518B protein-coding 8.158 1.398
-85461 TANC1 tetratricopeptide repeat, ankyrin repeat and coiled-coil containing 1 protein-coding 9.788 0.9475
+85442 KNDC1 kinase non-catalytic C-lobe domain containing 1 protein-coding 5.121 3.155
+85444 LRRCC1 leucine rich repeat and coiled-coil centrosomal protein 1 protein-coding 8.382 1.116
+85449 KIAA1755 KIAA1755 protein-coding 6.1 2.138
+8545 CGGBP1 CGG triplet repeat binding protein 1 protein-coding 10.79 0.5146
+85450 ITPRIP inositol 1,4,5-trisphosphate receptor interacting protein protein-coding 9.553 1.087
+85451 UNK unkempt family zinc finger protein-coding 9.52 0.5311
+85453 TSPYL5 TSPY like 5 protein-coding 7.994 2.074
+85455 DISP2 dispatched RND transporter family member 2 protein-coding 5.664 1.946
+85456 TNKS1BP1 tankyrase 1 binding protein 1 protein-coding 11.88 0.8494
+85457 CIPC CLOCK interacting pacemaker protein-coding 9.472 0.8518
+85458 DIXDC1 DIX domain containing 1 protein-coding 8.48 1.356
+85459 CEP295 centrosomal protein 295 protein-coding 8.327 0.7455
+8546 AP3B1 adaptor related protein complex 3 beta 1 subunit protein-coding 10.18 0.5179
+85460 ZNF518B zinc finger protein 518B protein-coding 8.159 1.397
+85461 TANC1 tetratricopeptide repeat, ankyrin repeat and coiled-coil containing 1 protein-coding 9.789 0.9476
85462 FHDC1 FH2 domain containing 1 protein-coding 8.006 1.749
-85463 ZC3H12C zinc finger CCCH-type containing 12C protein-coding 7.995 1.188
-85464 SSH2 slingshot protein phosphatase 2 protein-coding 9.119 0.8324
-85465 SELENOI selenoprotein I protein-coding 10.08 0.7825
-8547 FCN3 ficolin 3 protein-coding 4.699 2.069
-85474 LBX2 ladybird homeobox 2 protein-coding 3.479 1.647
-85476 GFM1 G elongation factor mitochondrial 1 protein-coding 10.16 0.6271
+85463 ZC3H12C zinc finger CCCH-type containing 12C protein-coding 7.996 1.188
+85464 SSH2 slingshot protein phosphatase 2 protein-coding 9.119 0.8325
+85465 SELENOI selenoprotein I protein-coding 10.08 0.7826
+8547 FCN3 ficolin 3 protein-coding 4.7 2.07
+85474 LBX2 ladybird homeobox 2 protein-coding 3.477 1.648
+85476 GFM1 G elongation factor mitochondrial 1 protein-coding 10.16 0.6269
85477 SCIN scinderin protein-coding 7.091 2.499
-85478 CCDC65 coiled-coil domain containing 65 protein-coding 3.395 1.926
-85479 DNAJC5B DnaJ heat shock protein family (Hsp40) member C5 beta protein-coding 2.893 1.83
-8548 BLZF1 basic leucine zipper nuclear factor 1 protein-coding 8.927 0.6831
-85480 TSLP thymic stromal lymphopoietin protein-coding 3.854 1.951
+85478 CCDC65 coiled-coil domain containing 65 protein-coding 3.396 1.926
+85479 DNAJC5B DnaJ heat shock protein family (Hsp40) member C5 beta protein-coding 2.894 1.831
+8548 BLZF1 basic leucine zipper nuclear factor 1 protein-coding 8.927 0.6828
+85480 TSLP thymic stromal lymphopoietin protein-coding 3.856 1.951
8549 LGR5 leucine rich repeat containing G protein-coupled receptor 5 protein-coding 4.828 3.427
-85495 RPPH1 ribonuclease P RNA component H1 ncRNA 4.642 1.823
-8550 MAPKAPK5 mitogen-activated protein kinase-activated protein kinase 5 protein-coding 9.1 0.4614
-8551 INE2 inactivation escape 2 (non-protein coding) ncRNA 3.25 1.88
-8552 INE1 inactivation escape 1 (non-protein coding) ncRNA 3.991 0.9594
+85495 RPPH1 ribonuclease P RNA component H1 ncRNA 4.642 1.824
+8550 MAPKAPK5 mitogen-activated protein kinase-activated protein kinase 5 protein-coding 9.1 0.4613
+8551 INE2 inactivation escape 2 (non-protein coding) ncRNA 3.25 1.879
+8552 INE1 inactivation escape 1 (non-protein coding) ncRNA 3.992 0.9595
8553 BHLHE40 basic helix-loop-helix family member e40 protein-coding 11.97 1.327
-8554 PIAS1 protein inhibitor of activated STAT 1 protein-coding 8.4 0.6236
-8555 CDC14B cell division cycle 14B protein-coding 8.741 1.06
-8556 CDC14A cell division cycle 14A protein-coding 7.107 1.201
+8554 PIAS1 protein inhibitor of activated STAT 1 protein-coding 8.401 0.6238
+8555 CDC14B cell division cycle 14B protein-coding 8.742 1.06
+8556 CDC14A cell division cycle 14A protein-coding 7.108 1.201
8557 TCAP titin-cap protein-coding 3.491 1.988
-8558 CDK10 cyclin dependent kinase 10 protein-coding 9.839 0.8843
-8559 PRPF18 pre-mRNA processing factor 18 protein-coding 8.589 0.4799
-8560 DEGS1 delta 4-desaturase, sphingolipid 1 protein-coding 10.73 0.9348
+8558 CDK10 cyclin dependent kinase 10 protein-coding 9.84 0.8842
+8559 PRPF18 pre-mRNA processing factor 18 protein-coding 8.589 0.4797
+8560 DEGS1 delta 4-desaturase, sphingolipid 1 protein-coding 10.73 0.9346
8562 DENR density regulated re-initiation and release factor protein-coding 10.54 0.506
-8563 THOC5 THO complex 5 protein-coding 9.131 0.6685
-8564 KMO kynurenine 3-monooxygenase protein-coding 5.157 2.23
-8565 YARS tyrosyl-tRNA synthetase protein-coding 11 0.5906
-8566 PDXK pyridoxal kinase protein-coding 11.54 0.7234
+8563 THOC5 THO complex 5 protein-coding 9.131 0.6684
+8564 KMO kynurenine 3-monooxygenase protein-coding 5.157 2.231
+8565 YARS tyrosyl-tRNA synthetase protein-coding 11 0.5908
+8566 PDXK pyridoxal kinase protein-coding 11.54 0.7233
8567 MADD MAP kinase activating death domain protein-coding 10.26 0.6417
-8568 RRP1 ribosomal RNA processing 1 protein-coding 9.534 0.7851
-8569 MKNK1 MAP kinase interacting serine/threonine kinase 1 protein-coding 9.014 0.5811
+8568 RRP1 ribosomal RNA processing 1 protein-coding 9.533 0.7854
+8569 MKNK1 MAP kinase interacting serine/threonine kinase 1 protein-coding 9.015 0.5813
857 CAV1 caveolin 1 protein-coding 10.58 1.697
-8570 KHSRP KH-type splicing regulatory protein protein-coding 11.28 0.5558
-8572 PDLIM4 PDZ and LIM domain 4 protein-coding 7.997 2.285
-8573 CASK calcium/calmodulin dependent serine protein kinase protein-coding 10.16 0.9166
-8574 AKR7A2 aldo-keto reductase family 7 member A2 protein-coding 9.962 0.6479
-8575 PRKRA protein activator of interferon induced protein kinase EIF2AK2 protein-coding 9.698 0.4661
-8576 STK16 serine/threonine kinase 16 protein-coding 9.315 0.5452
-8577 TMEFF1 transmembrane protein with EGF like and two follistatin like domains 1 protein-coding 6.216 1.439
-8578 SCARF1 scavenger receptor class F member 1 protein-coding 7.504 1.084
-858 CAV2 caveolin 2 protein-coding 9.693 1.747
-85865 GTPBP10 GTP binding protein 10 protein-coding 8.237 0.543
+8570 KHSRP KH-type splicing regulatory protein protein-coding 11.28 0.5557
+8572 PDLIM4 PDZ and LIM domain 4 protein-coding 7.999 2.285
+8573 CASK calcium/calmodulin dependent serine protein kinase protein-coding 10.16 0.9165
+8574 AKR7A2 aldo-keto reductase family 7 member A2 protein-coding 9.962 0.6478
+8575 PRKRA protein activator of interferon induced protein kinase EIF2AK2 protein-coding 9.698 0.466
+8576 STK16 serine/threonine kinase 16 protein-coding 9.315 0.545
+8577 TMEFF1 transmembrane protein with EGF like and two follistatin like domains 1 protein-coding 6.216 1.438
+8578 SCARF1 scavenger receptor class F member 1 protein-coding 7.505 1.085
+858 CAV2 caveolin 2 protein-coding 9.694 1.747
+85865 GTPBP10 GTP binding protein 10 protein-coding 8.237 0.5427
86 ACTL6A actin like 6A protein-coding 10.03 0.9015
-860 RUNX2 runt related transcription factor 2 protein-coding 7.376 1.693
-8600 TNFSF11 TNF superfamily member 11 protein-coding 3.284 2.283
-8601 RGS20 regulator of G protein signaling 20 protein-coding 3.61 2.625
-8602 NOP14 NOP14 nucleolar protein protein-coding 9.939 0.5888
-8603 FAM193A family with sequence similarity 193 member A protein-coding 9.51 0.5427
-8604 SLC25A12 solute carrier family 25 member 12 protein-coding 8.912 0.8652
-8605 PLA2G4C phospholipase A2 group IVC protein-coding 7.229 1.626
-8607 RUVBL1 RuvB like AAA ATPase 1 protein-coding 10.18 0.727
-8608 RDH16 retinol dehydrogenase 16 protein-coding 4.265 2.428
-8609 KLF7 Kruppel like factor 7 protein-coding 6.362 1.369
+860 RUNX2 runt related transcription factor 2 protein-coding 7.376 1.692
+8600 TNFSF11 TNF superfamily member 11 protein-coding 3.284 2.282
+8601 RGS20 regulator of G protein signaling 20 protein-coding 3.608 2.625
+8602 NOP14 NOP14 nucleolar protein protein-coding 9.939 0.5887
+8603 FAM193A family with sequence similarity 193 member A protein-coding 9.51 0.5425
+8604 SLC25A12 solute carrier family 25 member 12 protein-coding 8.913 0.8652
+8605 PLA2G4C phospholipase A2 group IVC protein-coding 7.23 1.626
+8607 RUVBL1 RuvB like AAA ATPase 1 protein-coding 10.18 0.7275
+8608 RDH16 retinol dehydrogenase 16 protein-coding 4.264 2.427
+8609 KLF7 Kruppel like factor 7 protein-coding 6.363 1.369
861 RUNX1 runt related transcription factor 1 protein-coding 10.19 1.587
-8611 PLPP1 phospholipid phosphatase 1 protein-coding 9.931 1.469
-8612 PLPP2 phospholipid phosphatase 2 protein-coding 9.182 2.419
+8611 PLPP1 phospholipid phosphatase 1 protein-coding 9.932 1.469
+8612 PLPP2 phospholipid phosphatase 2 protein-coding 9.181 2.419
8613 PLPP3 phospholipid phosphatase 3 protein-coding 10.52 1.596
-8614 STC2 stanniocalcin 2 protein-coding 8.523 2.206
-8615 USO1 USO1 vesicle transport factor protein-coding 10.83 0.6232
-862 RUNX1T1 RUNX1 translocation partner 1 protein-coding 4.074 1.969
+8614 STC2 stanniocalcin 2 protein-coding 8.522 2.206
+8615 USO1 USO1 vesicle transport factor protein-coding 10.83 0.6229
+862 RUNX1T1 RUNX1 translocation partner 1 protein-coding 4.077 1.97
8620 NPFF neuropeptide FF-amide peptide precursor protein-coding 3.29 1.322
-8621 CDK13 cyclin dependent kinase 13 protein-coding 9.937 0.4942
-8622 PDE8B phosphodiesterase 8B protein-coding 5.846 2.596
-8623 ASMTL acetylserotonin O-methyltransferase like protein-coding 9.394 0.8667
-8624 PSMG1 proteasome assembly chaperone 1 protein-coding 9.003 0.8172
-8625 RFXANK regulatory factor X associated ankyrin containing protein protein-coding 9.881 0.7712
-8626 TP63 tumor protein p63 protein-coding 6.287 4.06
-8629 JRK Jrk helix-turn-helix protein protein-coding 8.61 0.8293
-863 CBFA2T3 CBFA2/RUNX1 translocation partner 3 protein-coding 6.433 1.745
-8630 HSD17B6 hydroxysteroid 17-beta dehydrogenase 6 protein-coding 6.134 2.716
-8631 SKAP1 src kinase associated phosphoprotein 1 protein-coding 6.115 2.366
-8632 DNAH17 dynein axonemal heavy chain 17 protein-coding 5.447 1.723
-8633 UNC5C unc-5 netrin receptor C protein-coding 3.849 2.223
-8634 RTCA RNA 3'-terminal phosphate cyclase protein-coding 9.311 0.484
+8621 CDK13 cyclin dependent kinase 13 protein-coding 9.937 0.4941
+8622 PDE8B phosphodiesterase 8B protein-coding 5.848 2.596
+8623 ASMTL acetylserotonin O-methyltransferase like protein-coding 9.395 0.8664
+8624 PSMG1 proteasome assembly chaperone 1 protein-coding 9.002 0.8176
+8625 RFXANK regulatory factor X associated ankyrin containing protein protein-coding 9.881 0.7711
+8626 TP63 tumor protein p63 protein-coding 6.287 4.059
+8629 JRK Jrk helix-turn-helix protein protein-coding 8.611 0.8291
+863 CBFA2T3 CBFA2/RUNX1 translocation partner 3 protein-coding 6.434 1.745
+8630 HSD17B6 hydroxysteroid 17-beta dehydrogenase 6 protein-coding 6.135 2.716
+8631 SKAP1 src kinase associated phosphoprotein 1 protein-coding 6.115 2.365
+8632 DNAH17 dynein axonemal heavy chain 17 protein-coding 5.446 1.723
+8633 UNC5C unc-5 netrin receptor C protein-coding 3.851 2.223
+8634 RTCA RNA 3'-terminal phosphate cyclase protein-coding 9.311 0.4838
8635 RNASET2 ribonuclease T2 protein-coding 10.4 1.161
-8636 SSNA1 SS nuclear autoantigen 1 protein-coding 9.997 0.7124
+8636 SSNA1 SS nuclear autoantigen 1 protein-coding 9.997 0.7122
8637 EIF4EBP3 eukaryotic translation initiation factor 4E binding protein 3 protein-coding 8.224 1.222
-8638 OASL 2'-5'-oligoadenylate synthetase like protein-coding 7.232 2.067
-8639 AOC3 amine oxidase, copper containing 3 protein-coding 8.403 1.987
-864 RUNX3 runt related transcription factor 3 protein-coding 7.833 1.824
-8641 PCDHGB4 protocadherin gamma subfamily B, 4 protein-coding 4.605 2.15
-8642 DCHS1 dachsous cadherin-related 1 protein-coding 9.122 1.359
-8643 PTCH2 patched 2 protein-coding 4.43 1.786
-8644 AKR1C3 aldo-keto reductase family 1 member C3 protein-coding 9.154 2.659
+8638 OASL 2'-5'-oligoadenylate synthetase like protein-coding 7.231 2.067
+8639 AOC3 amine oxidase, copper containing 3 protein-coding 8.405 1.988
+864 RUNX3 runt related transcription factor 3 protein-coding 7.834 1.824
+8641 PCDHGB4 protocadherin gamma subfamily B, 4 protein-coding 4.607 2.149
+8642 DCHS1 dachsous cadherin-related 1 protein-coding 9.123 1.358
+8643 PTCH2 patched 2 protein-coding 4.432 1.786
+8644 AKR1C3 aldo-keto reductase family 1 member C3 protein-coding 9.153 2.658
8645 KCNK5 potassium two pore domain channel subfamily K member 5 protein-coding 7.618 2.572
-8646 CHRD chordin protein-coding 6.818 1.978
-8648 NCOA1 nuclear receptor coactivator 1 protein-coding 10.23 0.7554
-8649 LAMTOR3 late endosomal/lysosomal adaptor, MAPK and MTOR activator 3 protein-coding 9.789 0.5466
-865 CBFB core-binding factor beta subunit protein-coding 10.08 0.6527
-8650 NUMB NUMB, endocytic adaptor protein protein-coding 10.43 0.5541
+8646 CHRD chordin protein-coding 6.818 1.977
+8648 NCOA1 nuclear receptor coactivator 1 protein-coding 10.23 0.7553
+8649 LAMTOR3 late endosomal/lysosomal adaptor, MAPK and MTOR activator 3 protein-coding 9.789 0.5464
+865 CBFB core-binding factor beta subunit protein-coding 10.08 0.6526
+8650 NUMB NUMB, endocytic adaptor protein protein-coding 10.43 0.554
8651 SOCS1 suppressor of cytokine signaling 1 protein-coding 6.562 1.632
-8654 PDE5A phosphodiesterase 5A protein-coding 8.319 1.804
-8655 DYNLL1 dynein light chain LC8-type 1 protein-coding 11.94 0.5888
-8658 TNKS tankyrase protein-coding 10.03 0.7908
+8654 PDE5A phosphodiesterase 5A protein-coding 8.321 1.805
+8655 DYNLL1 dynein light chain LC8-type 1 protein-coding 11.94 0.5889
+8658 TNKS tankyrase protein-coding 10.03 0.7905
8659 ALDH4A1 aldehyde dehydrogenase 4 family member A1 protein-coding 9.706 1.522
-8660 IRS2 insulin receptor substrate 2 protein-coding 9.408 1.617
-8661 EIF3A eukaryotic translation initiation factor 3 subunit A protein-coding 12.36 0.64
-8662 EIF3B eukaryotic translation initiation factor 3 subunit B protein-coding 12.22 0.6387
-8663 EIF3C eukaryotic translation initiation factor 3 subunit C protein-coding 7.725 1.817
-8664 EIF3D eukaryotic translation initiation factor 3 subunit D protein-coding 12.1 0.5782
-8665 EIF3F eukaryotic translation initiation factor 3 subunit F protein-coding 11.32 0.5931
-8666 EIF3G eukaryotic translation initiation factor 3 subunit G protein-coding 11.43 0.642
-8667 EIF3H eukaryotic translation initiation factor 3 subunit H protein-coding 12.08 0.6119
-8668 EIF3I eukaryotic translation initiation factor 3 subunit I protein-coding 11.98 0.5675
-8669 EIF3J eukaryotic translation initiation factor 3 subunit J protein-coding 10.46 0.5149
+8660 IRS2 insulin receptor substrate 2 protein-coding 9.409 1.616
+8661 EIF3A eukaryotic translation initiation factor 3 subunit A protein-coding 12.36 0.6397
+8662 EIF3B eukaryotic translation initiation factor 3 subunit B protein-coding 12.22 0.6388
+8663 EIF3C eukaryotic translation initiation factor 3 subunit C protein-coding 7.724 1.817
+8664 EIF3D eukaryotic translation initiation factor 3 subunit D protein-coding 12.1 0.578
+8665 EIF3F eukaryotic translation initiation factor 3 subunit F protein-coding 11.32 0.5929
+8666 EIF3G eukaryotic translation initiation factor 3 subunit G protein-coding 11.43 0.6418
+8667 EIF3H eukaryotic translation initiation factor 3 subunit H protein-coding 12.08 0.6117
+8668 EIF3I eukaryotic translation initiation factor 3 subunit I protein-coding 11.98 0.5677
+8669 EIF3J eukaryotic translation initiation factor 3 subunit J protein-coding 10.46 0.5148
867 CBL Cbl proto-oncogene protein-coding 9.524 0.8474
-8671 SLC4A4 solute carrier family 4 member 4 protein-coding 7.435 3.588
-8672 EIF4G3 eukaryotic translation initiation factor 4 gamma 3 protein-coding 10.65 0.6057
-8673 VAMP8 vesicle associated membrane protein 8 protein-coding 10.79 1.428
-8674 VAMP4 vesicle associated membrane protein 4 protein-coding 8.652 0.7063
-8675 STX16 syntaxin 16 protein-coding 10.75 0.5956
-8676 STX11 syntaxin 11 protein-coding 6.517 1.454
-8677 STX10 syntaxin 10 protein-coding 8.554 0.6187
-8678 BECN1 beclin 1 protein-coding 10.6 0.4587
-868 CBLB Cbl proto-oncogene B protein-coding 8.762 0.8039
-8681 JMJD7-PLA2G4B JMJD7-PLA2G4B readthrough protein-coding 8.944 0.9783
-8682 PEA15 proliferation and apoptosis adaptor protein 15 protein-coding 12.26 1.131
+8671 SLC4A4 solute carrier family 4 member 4 protein-coding 7.438 3.589
+8672 EIF4G3 eukaryotic translation initiation factor 4 gamma 3 protein-coding 10.66 0.6057
+8673 VAMP8 vesicle associated membrane protein 8 protein-coding 10.78 1.428
+8674 VAMP4 vesicle associated membrane protein 4 protein-coding 8.653 0.7061
+8675 STX16 syntaxin 16 protein-coding 10.75 0.5955
+8676 STX11 syntaxin 11 protein-coding 6.518 1.455
+8677 STX10 syntaxin 10 protein-coding 8.553 0.6186
+8678 BECN1 beclin 1 protein-coding 10.6 0.4585
+868 CBLB Cbl proto-oncogene B protein-coding 8.762 0.8037
+8681 JMJD7-PLA2G4B JMJD7-PLA2G4B readthrough protein-coding 8.944 0.9781
+8682 PEA15 proliferation and apoptosis adaptor protein 15 protein-coding 12.26 1.13
8683 SRSF9 serine and arginine rich splicing factor 9 protein-coding 11.27 0.4955
-8685 MARCO macrophage receptor with collagenous structure protein-coding 4.903 3.055
-8690 JRKL JRK like protein-coding 8.239 0.7883
-8692 HYAL2 hyaluronoglucosaminidase 2 protein-coding 10.41 0.7115
-8693 GALNT4 polypeptide N-acetylgalactosaminyltransferase 4 protein-coding 8.715 1.501
-8694 DGAT1 diacylglycerol O-acyltransferase 1 protein-coding 9.934 0.8382
-8697 CDC23 cell division cycle 23 protein-coding 9.513 0.4445
-8698 S1PR4 sphingosine-1-phosphate receptor 4 protein-coding 5.251 1.595
+8685 MARCO macrophage receptor with collagenous structure protein-coding 4.904 3.056
+8690 JRKL JRK like protein-coding 8.239 0.788
+8692 HYAL2 hyaluronoglucosaminidase 2 protein-coding 10.41 0.7113
+8693 GALNT4 polypeptide N-acetylgalactosaminyltransferase 4 protein-coding 8.715 1.502
+8694 DGAT1 diacylglycerol O-acyltransferase 1 protein-coding 9.934 0.838
+8697 CDC23 cell division cycle 23 protein-coding 9.513 0.4444
+8698 S1PR4 sphingosine-1-phosphate receptor 4 protein-coding 5.252 1.596
87 ACTN1 actinin alpha 1 protein-coding 12.02 1.14
-8701 DNAH11 dynein axonemal heavy chain 11 protein-coding 3.863 2.789
-8702 B4GALT4 beta-1,4-galactosyltransferase 4 protein-coding 9.499 0.8857
+8701 DNAH11 dynein axonemal heavy chain 11 protein-coding 3.864 2.788
+8702 B4GALT4 beta-1,4-galactosyltransferase 4 protein-coding 9.499 0.8855
8703 B4GALT3 beta-1,4-galactosyltransferase 3 protein-coding 10.04 0.6352
-8704 B4GALT2 beta-1,4-galactosyltransferase 2 protein-coding 10.16 0.7473
+8704 B4GALT2 beta-1,4-galactosyltransferase 2 protein-coding 10.15 0.7475
8705 B3GALT4 beta-1,3-galactosyltransferase 4 protein-coding 7.67 1.087
-8706 B3GALNT1 beta-1,3-N-acetylgalactosaminyltransferase 1 (globoside blood group) protein-coding 8.314 1.442
-8707 B3GALT2 beta-1,3-galactosyltransferase 2 protein-coding 3.46 2.274
+8706 B3GALNT1 beta-1,3-N-acetylgalactosaminyltransferase 1 (globoside blood group) protein-coding 8.314 1.441
+8707 B3GALT2 beta-1,3-galactosyltransferase 2 protein-coding 3.463 2.276
8708 B3GALT1 beta-1,3-galactosyltransferase 1 protein-coding 1.512 1.715
871 SERPINH1 serpin family H member 1 protein-coding 11.99 1.297
-8711 TNK1 tyrosine kinase non receptor 1 protein-coding 7.598 1.864
-8714 ABCC3 ATP binding cassette subfamily C member 3 protein-coding 9.196 2.741
-8717 TRADD TNFRSF1A associated via death domain protein-coding 8.786 0.9572
-87178 PNPT1 polyribonucleotide nucleotidyltransferase 1 protein-coding 9.366 0.677
+8711 TNK1 tyrosine kinase non receptor 1 protein-coding 7.598 1.863
+8714 ABCC3 ATP binding cassette subfamily C member 3 protein-coding 9.197 2.74
+8717 TRADD TNFRSF1A associated via death domain protein-coding 8.786 0.957
+87178 PNPT1 polyribonucleotide nucleotidyltransferase 1 protein-coding 9.365 0.677
8718 TNFRSF25 TNF receptor superfamily member 25 protein-coding 6.58 1.635
-8720 MBTPS1 membrane bound transcription factor peptidase, site 1 protein-coding 11.37 0.5138
-8721 EDF1 endothelial differentiation related factor 1 protein-coding 12.12 0.7554
-8722 CTSF cathepsin F protein-coding 9.971 1.538
-8723 SNX4 sorting nexin 4 protein-coding 9.7 0.5737
-8724 SNX3 sorting nexin 3 protein-coding 11.47 0.5666
-8725 URI1 URI1, prefoldin like chaperone protein-coding 10.48 0.5852
-8726 EED embryonic ectoderm development protein-coding 8.538 0.5765
-8727 CTNNAL1 catenin alpha like 1 protein-coding 9.335 1.205
+8720 MBTPS1 membrane bound transcription factor peptidase, site 1 protein-coding 11.37 0.5137
+8721 EDF1 endothelial differentiation related factor 1 protein-coding 12.12 0.7552
+8722 CTSF cathepsin F protein-coding 9.972 1.537
+8723 SNX4 sorting nexin 4 protein-coding 9.7 0.5736
+8724 SNX3 sorting nexin 3 protein-coding 11.47 0.5663
+8725 URI1 URI1, prefoldin like chaperone protein-coding 10.48 0.5851
+8726 EED embryonic ectoderm development protein-coding 8.538 0.5762
+8727 CTNNAL1 catenin alpha like 1 protein-coding 9.336 1.205
8728 ADAM19 ADAM metallopeptidase domain 19 protein-coding 8.297 1.681
-8729 GBF1 golgi brefeldin A resistant guanine nucleotide exchange factor 1 protein-coding 11.01 0.5072
+8729 GBF1 golgi brefeldin A resistant guanine nucleotide exchange factor 1 protein-coding 11.01 0.5071
873 CBR1 carbonyl reductase 1 protein-coding 10.58 1.316
-8731 RNMT RNA guanine-7 methyltransferase protein-coding 9.849 0.5854
-8732 RNGTT RNA guanylyltransferase and 5'-phosphatase protein-coding 8.619 0.5678
-8733 GPAA1 glycosylphosphatidylinositol anchor attachment 1 protein-coding 11.34 0.7159
-8736 MYOM1 myomesin 1 protein-coding 5.561 2.064
-8737 RIPK1 receptor interacting serine/threonine kinase 1 protein-coding 9.78 0.4958
-8738 CRADD CASP2 and RIPK1 domain containing adaptor with death domain protein-coding 7.339 0.8069
+8731 RNMT RNA guanine-7 methyltransferase protein-coding 9.849 0.5853
+8732 RNGTT RNA guanylyltransferase and 5'-phosphatase protein-coding 8.619 0.5677
+8733 GPAA1 glycosylphosphatidylinositol anchor attachment 1 protein-coding 11.34 0.7157
+8736 MYOM1 myomesin 1 protein-coding 5.563 2.065
+8737 RIPK1 receptor interacting serine/threonine kinase 1 protein-coding 9.78 0.4956
+8738 CRADD CASP2 and RIPK1 domain containing adaptor with death domain protein-coding 7.34 0.8068
874 CBR3 carbonyl reductase 3 protein-coding 7.234 1.679
-8740 TNFSF14 TNF superfamily member 14 protein-coding 2.656 1.807
-8741 TNFSF13 TNF superfamily member 13 protein-coding 9.326 1.3
-8742 TNFSF12 TNF superfamily member 12 protein-coding 8.812 1.129
+8740 TNFSF14 TNF superfamily member 14 protein-coding 2.657 1.808
+8741 TNFSF13 TNF superfamily member 13 protein-coding 9.327 1.301
+8742 TNFSF12 TNF superfamily member 12 protein-coding 8.813 1.128
8743 TNFSF10 TNF superfamily member 10 protein-coding 10.55 2.07
-8744 TNFSF9 TNF superfamily member 9 protein-coding 5.299 2.15
+8744 TNFSF9 TNF superfamily member 9 protein-coding 5.298 2.149
8745 ADAM23 ADAM metallopeptidase domain 23 protein-coding 4.968 3.012
8747 ADAM21 ADAM metallopeptidase domain 21 protein-coding 2.158 1.264
8748 ADAM20 ADAM metallopeptidase domain 20 protein-coding 1.21 0.8326
-875 CBS cystathionine-beta-synthase protein-coding 8.655 2.304
-8751 ADAM15 ADAM metallopeptidase domain 15 protein-coding 11.35 0.9719
+875 CBS cystathionine-beta-synthase protein-coding 8.655 2.303
+8751 ADAM15 ADAM metallopeptidase domain 15 protein-coding 11.35 0.9716
8754 ADAM9 ADAM metallopeptidase domain 9 protein-coding 11.14 1.267
-8755 ADAM6 ADAM metallopeptidase domain 6 (pseudogene) pseudo 12.22 3.917
-8760 CDS2 CDP-diacylglycerol synthase 2 protein-coding 9.662 0.6198
-8761 PABPC4 poly(A) binding protein cytoplasmic 4 protein-coding 11.6 0.6663
-8763 CD164 CD164 molecule protein-coding 12.65 0.8297
+8755 ADAM6 ADAM metallopeptidase domain 6 (pseudogene) pseudo 12.22 3.916
+8760 CDS2 CDP-diacylglycerol synthase 2 protein-coding 9.663 0.6202
+8761 PABPC4 poly(A) binding protein cytoplasmic 4 protein-coding 11.6 0.6664
+8763 CD164 CD164 molecule protein-coding 12.65 0.8294
8764 TNFRSF14 TNF receptor superfamily member 14 protein-coding 10 1.316
-8766 RAB11A RAB11A, member RAS oncogene family protein-coding 11.66 0.5597
+8766 RAB11A RAB11A, member RAS oncogene family protein-coding 11.66 0.5595
8767 RIPK2 receptor interacting serine/threonine kinase 2 protein-coding 8.848 0.8736
-8771 TNFRSF6B TNF receptor superfamily member 6b protein-coding 6.941 1.867
-8772 FADD Fas associated via death domain protein-coding 9.333 0.7782
-8773 SNAP23 synaptosome associated protein 23 protein-coding 10.26 0.6111
-8774 NAPG NSF attachment protein gamma protein-coding 9.421 0.5398
-8775 NAPA NSF attachment protein alpha protein-coding 11.61 0.6834
-8776 MTMR1 myotubularin related protein 1 protein-coding 9.523 0.6917
-87769 GGACT gamma-glutamylamine cyclotransferase protein-coding 6.542 0.9946
-8777 MPDZ multiple PDZ domain crumbs cell polarity complex component protein-coding 8.689 1.608
-8778 SIGLEC5 sialic acid binding Ig like lectin 5 protein-coding 4.462 1.639
-8780 RIOK3 RIO kinase 3 protein-coding 10.56 0.7242
-8784 TNFRSF18 TNF receptor superfamily member 18 protein-coding 5.477 2.302
-8785 MATN4 matrilin 4 protein-coding 1.685 1.561
-8786 RGS11 regulator of G protein signaling 11 protein-coding 5.242 2.469
-8787 RGS9 regulator of G protein signaling 9 protein-coding 4.48 2.062
-8790 FPGT fucose-1-phosphate guanylyltransferase protein-coding 8.314 0.6672
-8792 TNFRSF11A TNF receptor superfamily member 11a protein-coding 5.522 1.766
+8771 TNFRSF6B TNF receptor superfamily member 6b protein-coding 6.941 1.866
+8772 FADD Fas associated via death domain protein-coding 9.332 0.7781
+8773 SNAP23 synaptosome associated protein 23 protein-coding 10.26 0.6112
+8774 NAPG NSF attachment protein gamma protein-coding 9.422 0.5397
+8775 NAPA NSF attachment protein alpha protein-coding 11.61 0.6835
+8776 MTMR1 myotubularin related protein 1 protein-coding 9.523 0.6914
+87769 GGACT gamma-glutamylamine cyclotransferase protein-coding 6.542 0.9943
+8777 MPDZ multiple PDZ domain crumbs cell polarity complex component protein-coding 8.69 1.607
+8778 SIGLEC5 sialic acid binding Ig like lectin 5 protein-coding 4.463 1.639
+8780 RIOK3 RIO kinase 3 protein-coding 10.56 0.7239
+8784 TNFRSF18 TNF receptor superfamily member 18 protein-coding 5.476 2.301
+8785 MATN4 matrilin 4 protein-coding 1.685 1.56
+8786 RGS11 regulator of G protein signaling 11 protein-coding 5.243 2.468
+8787 RGS9 regulator of G protein signaling 9 protein-coding 4.481 2.062
+8790 FPGT fucose-1-phosphate guanylyltransferase protein-coding 8.314 0.667
+8792 TNFRSF11A TNF receptor superfamily member 11a protein-coding 5.523 1.766
8793 TNFRSF10D TNF receptor superfamily member 10d protein-coding 6.999 1.605
-8794 TNFRSF10C TNF receptor superfamily member 10c protein-coding 5.533 1.788
+8794 TNFRSF10C TNF receptor superfamily member 10c protein-coding 5.534 1.787
8795 TNFRSF10B TNF receptor superfamily member 10b protein-coding 10.24 1.047
8797 TNFRSF10A TNF receptor superfamily member 10a protein-coding 6.267 1.733
-8798 DYRK4 dual specificity tyrosine phosphorylation regulated kinase 4 protein-coding 8.314 0.82
+8798 DYRK4 dual specificity tyrosine phosphorylation regulated kinase 4 protein-coding 8.314 0.8197
8799 PEX11B peroxisomal biogenesis factor 11 beta protein-coding 9.649 0.4892
88 ACTN2 actinin alpha 2 protein-coding 3.406 2.977
8800 PEX11A peroxisomal biogenesis factor 11 alpha protein-coding 6.927 1.034
-8801 SUCLG2 succinate-CoA ligase GDP-forming beta subunit protein-coding 10.07 0.8549
+8801 SUCLG2 succinate-CoA ligase GDP-forming beta subunit protein-coding 10.07 0.8547
8802 SUCLG1 succinate-CoA ligase alpha subunit protein-coding 10.71 0.6066
-8803 SUCLA2 succinate-CoA ligase ADP-forming beta subunit protein-coding 9.531 0.6838
-8804 CREG1 cellular repressor of E1A stimulated genes 1 protein-coding 11.26 0.8857
-8805 TRIM24 tripartite motif containing 24 protein-coding 9.58 0.8556
-8807 IL18RAP interleukin 18 receptor accessory protein protein-coding 3.452 1.621
-8809 IL18R1 interleukin 18 receptor 1 protein-coding 5.64 1.692
+8803 SUCLA2 succinate-CoA ligase ADP-forming beta subunit protein-coding 9.531 0.6835
+8804 CREG1 cellular repressor of E1A stimulated genes 1 protein-coding 11.26 0.8855
+8805 TRIM24 tripartite motif containing 24 protein-coding 9.58 0.8553
+8807 IL18RAP interleukin 18 receptor accessory protein protein-coding 3.454 1.622
+8809 IL18R1 interleukin 18 receptor 1 protein-coding 5.641 1.693
881 CCIN calicin protein-coding 2.042 1.342
-8811 GALR2 galanin receptor 2 protein-coding 1.642 1.35
-8812 CCNK cyclin K protein-coding 9.998 0.5306
-8813 DPM1 dolichyl-phosphate mannosyltransferase subunit 1, catalytic protein-coding 9.241 0.6397
-8814 CDKL1 cyclin dependent kinase like 1 protein-coding 4.376 1.47
-8815 BANF1 barrier to autointegration factor 1 protein-coding 11.39 0.6529
-8816 DCAF5 DDB1 and CUL4 associated factor 5 protein-coding 10.39 0.5058
-8817 FGF18 fibroblast growth factor 18 protein-coding 3.288 2.097
+8811 GALR2 galanin receptor 2 protein-coding 1.641 1.35
+8812 CCNK cyclin K protein-coding 9.998 0.5304
+8813 DPM1 dolichyl-phosphate mannosyltransferase subunit 1, catalytic protein-coding 9.24 0.6396
+8814 CDKL1 cyclin dependent kinase like 1 protein-coding 4.377 1.47
+8815 BANF1 barrier to autointegration factor 1 protein-coding 11.39 0.6531
+8816 DCAF5 DDB1 and CUL4 associated factor 5 protein-coding 10.39 0.5057
+8817 FGF18 fibroblast growth factor 18 protein-coding 3.289 2.097
8818 DPM2 dolichyl-phosphate mannosyltransferase subunit 2, regulatory protein-coding 9.92 0.6465
-8819 SAP30 Sin3A associated protein 30 protein-coding 7.525 0.9355
+8819 SAP30 Sin3A associated protein 30 protein-coding 7.525 0.9352
8820 HESX1 HESX homeobox 1 protein-coding 3.48 1.129
-8821 INPP4B inositol polyphosphate-4-phosphatase type II B protein-coding 7.031 1.83
-8822 FGF17 fibroblast growth factor 17 protein-coding 2.41 1.958
+8821 INPP4B inositol polyphosphate-4-phosphatase type II B protein-coding 7.032 1.829
+8822 FGF17 fibroblast growth factor 17 protein-coding 2.411 1.958
8824 CES2 carboxylesterase 2 protein-coding 10.68 1.273
-8825 LIN7A lin-7 homolog A, crumbs cell polarity complex component protein-coding 4.186 2.251
-8826 IQGAP1 IQ motif containing GTPase activating protein 1 protein-coding 12.22 1.11
-8828 NRP2 neuropilin 2 protein-coding 9.781 1.542
-8829 NRP1 neuropilin 1 protein-coding 10.65 1.362
-883 KYAT1 kynurenine aminotransferase 1 protein-coding 7.155 1.029
+8825 LIN7A lin-7 homolog A, crumbs cell polarity complex component protein-coding 4.186 2.25
+8826 IQGAP1 IQ motif containing GTPase activating protein 1 protein-coding 12.22 1.109
+8828 NRP2 neuropilin 2 protein-coding 9.782 1.542
+8829 NRP1 neuropilin 1 protein-coding 10.65 1.361
+883 KYAT1 kynurenine aminotransferase 1 protein-coding 7.155 1.028
8831 SYNGAP1 synaptic Ras GTPase activating protein 1 protein-coding 8.394 1.073
-8832 CD84 CD84 molecule protein-coding 5.645 1.877
-8833 GMPS guanine monophosphate synthase protein-coding 10.09 0.8749
+8832 CD84 CD84 molecule protein-coding 5.646 1.878
+8833 GMPS guanine monophosphate synthase protein-coding 10.08 0.8749
8834 TMEM11 transmembrane protein 11 protein-coding 9.024 0.6122
-8835 SOCS2 suppressor of cytokine signaling 2 protein-coding 8.101 1.547
-8836 GGH gamma-glutamyl hydrolase protein-coding 8.92 1.782
-8837 CFLAR CASP8 and FADD like apoptosis regulator protein-coding 9.722 0.9104
-8838 WISP3 WNT1 inducible signaling pathway protein 3 protein-coding 2.224 2.422
-8839 WISP2 WNT1 inducible signaling pathway protein 2 protein-coding 4.886 2.791
-8840 WISP1 WNT1 inducible signaling pathway protein 1 protein-coding 5.974 2.235
+8835 SOCS2 suppressor of cytokine signaling 2 protein-coding 8.102 1.547
+8836 GGH gamma-glutamyl hydrolase protein-coding 8.918 1.783
+8837 CFLAR CASP8 and FADD like apoptosis regulator protein-coding 9.722 0.9107
+8838 WISP3 WNT1 inducible signaling pathway protein 3 protein-coding 2.224 2.421
+8839 WISP2 WNT1 inducible signaling pathway protein 2 protein-coding 4.888 2.791
+8840 WISP1 WNT1 inducible signaling pathway protein 1 protein-coding 5.975 2.234
8841 HDAC3 histone deacetylase 3 protein-coding 10.05 0.4541
-8842 PROM1 prominin 1 protein-coding 6.486 3.824
+8842 PROM1 prominin 1 protein-coding 6.487 3.823
8843 HCAR3 hydroxycarboxylic acid receptor 3 protein-coding 4.314 2.644
-8844 KSR1 kinase suppressor of ras 1 protein-coding 9.011 1.261
+8844 KSR1 kinase suppressor of ras 1 protein-coding 9.012 1.261
88455 ANKRD13A ankyrin repeat domain 13A protein-coding 10.15 0.6722
-8846 ALKBH1 alkB homolog 1, histone H2A dioxygenase protein-coding 7.873 0.4599
-8847 DLEU2 deleted in lymphocytic leukemia 2 (non-protein coding) ncRNA 5.519 1.144
+8846 ALKBH1 alkB homolog 1, histone H2A dioxygenase protein-coding 7.873 0.4598
+8847 DLEU2 deleted in lymphocytic leukemia 2 (non-protein coding) ncRNA 5.518 1.144
8848 TSC22D1 TSC22 domain family member 1 protein-coding 12.29 1.102
8850 KAT2B lysine acetyltransferase 2B protein-coding 8.893 1.227
-8851 CDK5R1 cyclin dependent kinase 5 regulatory subunit 1 protein-coding 7.186 1.737
-8853 ASAP2 ArfGAP with SH3 domain, ankyrin repeat and PH domain 2 protein-coding 9.791 1.093
-8854 ALDH1A2 aldehyde dehydrogenase 1 family member A2 protein-coding 5.238 2.619
-8856 NR1I2 nuclear receptor subfamily 1 group I member 2 protein-coding 3.012 2.728
-8857 FCGBP Fc fragment of IgG binding protein protein-coding 9.486 2.637
-8858 PROZ protein Z, vitamin K dependent plasma glycoprotein protein-coding 1.716 1.816
-8859 STK19 serine/threonine kinase 19 protein-coding 8.558 0.6205
-8861 LDB1 LIM domain binding 1 protein-coding 10.2 0.7032
-8862 APLN apelin protein-coding 7.469 1.959
-8863 PER3 period circadian regulator 3 protein-coding 9.017 1.324
-8864 PER2 period circadian regulator 2 protein-coding 9.051 0.9279
-8867 SYNJ1 synaptojanin 1 protein-coding 8.232 0.9586
-8869 ST3GAL5 ST3 beta-galactoside alpha-2,3-sialyltransferase 5 protein-coding 8.499 1.828
-8870 IER3 immediate early response 3 protein-coding 10.19 1.763
+8851 CDK5R1 cyclin dependent kinase 5 regulatory subunit 1 protein-coding 7.185 1.737
+8853 ASAP2 ArfGAP with SH3 domain, ankyrin repeat and PH domain 2 protein-coding 9.791 1.092
+8854 ALDH1A2 aldehyde dehydrogenase 1 family member A2 protein-coding 5.239 2.619
+8856 NR1I2 nuclear receptor subfamily 1 group I member 2 protein-coding 3.012 2.727
+8857 FCGBP Fc fragment of IgG binding protein protein-coding 9.487 2.637
+8858 PROZ protein Z, vitamin K dependent plasma glycoprotein protein-coding 1.716 1.815
+8859 STK19 serine/threonine kinase 19 protein-coding 8.558 0.6203
+8861 LDB1 LIM domain binding 1 protein-coding 10.2 0.7031
+8862 APLN apelin protein-coding 7.467 1.96
+8863 PER3 period circadian regulator 3 protein-coding 9.018 1.324
+8864 PER2 period circadian regulator 2 protein-coding 9.052 0.9282
+8867 SYNJ1 synaptojanin 1 protein-coding 8.233 0.9584
+8869 ST3GAL5 ST3 beta-galactoside alpha-2,3-sialyltransferase 5 protein-coding 8.5 1.827
+8870 IER3 immediate early response 3 protein-coding 10.19 1.762
8871 SYNJ2 synaptojanin 2 protein-coding 8.684 1.229
8872 CDC123 cell division cycle 123 protein-coding 10.14 0.5423
-8874 ARHGEF7 Rho guanine nucleotide exchange factor 7 protein-coding 10.28 0.6619
-88745 RRP36 ribosomal RNA processing 36 protein-coding 9.49 0.5857
-8875 VNN2 vanin 2 protein-coding 5.079 2.057
-8876 VNN1 vanin 1 protein-coding 5.621 2.775
-8877 SPHK1 sphingosine kinase 1 protein-coding 7.933 1.838
-8878 SQSTM1 sequestosome 1 protein-coding 13.34 0.8716
-8879 SGPL1 sphingosine-1-phosphate lyase 1 protein-coding 11.05 0.6758
-8880 FUBP1 far upstream element binding protein 1 protein-coding 10.31 0.6876
-8881 CDC16 cell division cycle 16 protein-coding 10.35 0.5111
-8882 ZPR1 ZPR1 zinc finger protein-coding 9.469 0.5639
-8883 NAE1 NEDD8 activating enzyme E1 subunit 1 protein-coding 9.706 0.5517
+8874 ARHGEF7 Rho guanine nucleotide exchange factor 7 protein-coding 10.28 0.6616
+88745 RRP36 ribosomal RNA processing 36 protein-coding 9.489 0.5857
+8875 VNN2 vanin 2 protein-coding 5.081 2.058
+8876 VNN1 vanin 1 protein-coding 5.622 2.776
+8877 SPHK1 sphingosine kinase 1 protein-coding 7.932 1.839
+8878 SQSTM1 sequestosome 1 protein-coding 13.34 0.8712
+8879 SGPL1 sphingosine-1-phosphate lyase 1 protein-coding 11.05 0.6757
+8880 FUBP1 far upstream element binding protein 1 protein-coding 10.31 0.6873
+8881 CDC16 cell division cycle 16 protein-coding 10.35 0.5109
+8882 ZPR1 ZPR1 zinc finger protein-coding 9.468 0.5638
+8883 NAE1 NEDD8 activating enzyme E1 subunit 1 protein-coding 9.705 0.5516
8884 SLC5A6 solute carrier family 5 member 6 protein-coding 9.715 1.071
-8886 DDX18 DEAD-box helicase 18 protein-coding 10.68 0.5748
-8887 TAX1BP1 Tax1 binding protein 1 protein-coding 11.73 0.5581
+8886 DDX18 DEAD-box helicase 18 protein-coding 10.68 0.5746
+8887 TAX1BP1 Tax1 binding protein 1 protein-coding 11.72 0.5578
8888 MCM3AP minichromosome maintenance complex component 3 associated protein protein-coding 10.83 0.4691
-889 KRIT1 KRIT1, ankyrin repeat containing protein-coding 9.381 0.6335
-8890 EIF2B4 eukaryotic translation initiation factor 2B subunit delta protein-coding 9.735 0.4807
-8891 EIF2B3 eukaryotic translation initiation factor 2B subunit gamma protein-coding 8.853 0.5332
+889 KRIT1 KRIT1, ankyrin repeat containing protein-coding 9.381 0.6333
+8890 EIF2B4 eukaryotic translation initiation factor 2B subunit delta protein-coding 9.735 0.4806
+8891 EIF2B3 eukaryotic translation initiation factor 2B subunit gamma protein-coding 8.852 0.5333
8892 EIF2B2 eukaryotic translation initiation factor 2B subunit beta protein-coding 9.31 0.5411
-8893 EIF2B5 eukaryotic translation initiation factor 2B subunit epsilon protein-coding 10.27 0.5223
+8893 EIF2B5 eukaryotic translation initiation factor 2B subunit epsilon protein-coding 10.27 0.5221
8894 EIF2S2 eukaryotic translation initiation factor 2 subunit beta protein-coding 10.88 0.6285
-8895 CPNE3 copine 3 protein-coding 11.24 0.7088
-8896 BUD31 BUD31 homolog protein-coding 10.44 0.6178
-8897 MTMR3 myotubularin related protein 3 protein-coding 10.32 0.6467
-8898 MTMR2 myotubularin related protein 2 protein-coding 9.67 0.7115
-8899 PRPF4B pre-mRNA processing factor 4B protein-coding 10.53 0.521
+8895 CPNE3 copine 3 protein-coding 11.24 0.7086
+8896 BUD31 BUD31 homolog protein-coding 10.44 0.6179
+8897 MTMR3 myotubularin related protein 3 protein-coding 10.32 0.6466
+8898 MTMR2 myotubularin related protein 2 protein-coding 9.67 0.7113
+8899 PRPF4B pre-mRNA processing factor 4B protein-coding 10.53 0.5209
89 ACTN3 actinin alpha 3 (gene/pseudogene) protein-coding 1.188 1.11
-890 CCNA2 cyclin A2 protein-coding 8.271 1.845
-8900 CCNA1 cyclin A1 protein-coding 3.348 2.889
-8904 CPNE1 copine 1 protein-coding 11.27 0.8319
+890 CCNA2 cyclin A2 protein-coding 8.27 1.845
+8900 CCNA1 cyclin A1 protein-coding 3.348 2.888
+8904 CPNE1 copine 1 protein-coding 11.27 0.8317
8905 AP1S2 adaptor related protein complex 1 sigma 2 subunit protein-coding 8.346 1.274
8906 AP1G2 adaptor related protein complex 1 gamma 2 subunit protein-coding 10.05 1.108
8907 AP1M1 adaptor related protein complex 1 mu 1 subunit protein-coding 10.25 0.6859
-8908 GYG2 glycogenin 2 protein-coding 6.955 2.343
-8909 ENDOU endonuclease, poly(U) specific protein-coding 2.566 2.018
-891 CCNB1 cyclin B1 protein-coding 9.39 1.531
-8910 SGCE sarcoglycan epsilon protein-coding 8.343 1.697
-8911 CACNA1I calcium voltage-gated channel subunit alpha1 I protein-coding 3.814 2.543
-8912 CACNA1H calcium voltage-gated channel subunit alpha1 H protein-coding 7.694 2.068
+8908 GYG2 glycogenin 2 protein-coding 6.954 2.342
+8909 ENDOU endonuclease, poly(U) specific protein-coding 2.566 2.017
+891 CCNB1 cyclin B1 protein-coding 9.388 1.531
+8910 SGCE sarcoglycan epsilon protein-coding 8.344 1.697
+8911 CACNA1I calcium voltage-gated channel subunit alpha1 I protein-coding 3.816 2.543
+8912 CACNA1H calcium voltage-gated channel subunit alpha1 H protein-coding 7.697 2.069
89122 TRIM4 tripartite motif containing 4 protein-coding 9.563 0.7874
-8913 CACNA1G calcium voltage-gated channel subunit alpha1 G protein-coding 3.496 2.476
-8914 TIMELESS timeless circadian regulator protein-coding 9.671 1.033
-8915 BCL10 B cell CLL/lymphoma 10 protein-coding 8.805 0.808
+8913 CACNA1G calcium voltage-gated channel subunit alpha1 G protein-coding 3.497 2.476
+8914 TIMELESS timeless circadian regulator protein-coding 9.67 1.033
+8915 BCL10 B cell CLL/lymphoma 10 protein-coding 8.804 0.8077
8916 HERC3 HECT and RLD domain containing E3 ubiquitin protein ligase 3 protein-coding 8.944 1.019
-892 CCNC cyclin C protein-coding 10.01 0.7019
+892 CCNC cyclin C protein-coding 10.01 0.7017
8924 HERC2 HECT and RLD domain containing E3 ubiquitin protein ligase 2 protein-coding 10.56 0.6904
-8925 HERC1 HECT and RLD domain containing E3 ubiquitin protein ligase family member 1 protein-coding 10.16 0.7475
-8926 SNURF SNRPN upstream reading frame protein-coding 5.314 2.419
-8927 BSN bassoon presynaptic cytomatrix protein protein-coding 5.456 2.11
-8928 FOXH1 forkhead box H1 protein-coding 2.879 1.76
-8930 MBD4 methyl-CpG binding domain 4, DNA glycosylase protein-coding 9.52 0.5511
-8932 MBD2 methyl-CpG binding domain protein 2 protein-coding 10.36 0.7371
+8925 HERC1 HECT and RLD domain containing E3 ubiquitin protein ligase family member 1 protein-coding 10.17 0.7477
+8926 SNURF SNRPN upstream reading frame protein-coding 5.315 2.419
+8927 BSN bassoon presynaptic cytomatrix protein protein-coding 5.457 2.11
+8928 FOXH1 forkhead box H1 protein-coding 2.879 1.761
+8930 MBD4 methyl-CpG binding domain 4, DNA glycosylase protein-coding 9.52 0.5508
+8932 MBD2 methyl-CpG binding domain protein 2 protein-coding 10.36 0.7368
8933 RTL8C retrotransposon Gag like 8C protein-coding 10.73 1.036
8934 RAB29 RAB29, member RAS oncogene family protein-coding 9.222 0.9231
8935 SKAP2 src kinase associated phosphoprotein 2 protein-coding 9.432 1.253
8936 WASF1 WAS protein family member 1 protein-coding 8.013 1.474
-8938 BAIAP3 BAI1 associated protein 3 protein-coding 7.487 2.211
-8939 FUBP3 far upstream element binding protein 3 protein-coding 10.22 0.5383
-894 CCND2 cyclin D2 protein-coding 10.19 1.928
-8940 TOP3B DNA topoisomerase III beta protein-coding 8.44 0.6726
-8942 KYNU kynureninase protein-coding 6.695 2.418
-8943 AP3D1 adaptor related protein complex 3 delta 1 subunit protein-coding 11.83 0.462
-8945 BTRC beta-transducin repeat containing E3 ubiquitin protein ligase protein-coding 9.229 0.6751
-896 CCND3 cyclin D3 protein-coding 10.52 0.9063
-8968 HIST1H3F histone cluster 1 H3 family member f protein-coding 0.7428 1.058
-8969 HIST1H2AG histone cluster 1 H2A family member g protein-coding 2.63 1.368
+8938 BAIAP3 BAI1 associated protein 3 protein-coding 7.488 2.211
+8939 FUBP3 far upstream element binding protein 3 protein-coding 10.22 0.5381
+894 CCND2 cyclin D2 protein-coding 10.19 1.927
+8940 TOP3B DNA topoisomerase III beta protein-coding 8.44 0.6724
+8942 KYNU kynureninase protein-coding 6.694 2.418
+8943 AP3D1 adaptor related protein complex 3 delta 1 subunit protein-coding 11.83 0.4618
+8945 BTRC beta-transducin repeat containing E3 ubiquitin protein ligase protein-coding 9.229 0.675
+896 CCND3 cyclin D3 protein-coding 10.52 0.906
+8968 HIST1H3F histone cluster 1 H3 family member f protein-coding 0.742 1.058
+8969 HIST1H2AG histone cluster 1 H2A family member g protein-coding 2.629 1.368
8970 HIST1H2BJ histone cluster 1 H2B family member j protein-coding 4.954 1.699
-8971 H1FX H1 histone family member X protein-coding 11.16 0.8709
-8972 MGAM maltase-glucoamylase protein-coding 3.304 2.429
+8971 H1FX H1 histone family member X protein-coding 11.16 0.8706
+8972 MGAM maltase-glucoamylase protein-coding 3.304 2.428
8973 CHRNA6 cholinergic receptor nicotinic alpha 6 subunit protein-coding 1.653 1.494
8974 P4HA2 prolyl 4-hydroxylase subunit alpha 2 protein-coding 9.93 1.284
-8975 USP13 ubiquitin specific peptidase 13 protein-coding 8.748 0.9883
-8976 WASL Wiskott-Aldrich syndrome like protein-coding 10.76 0.5922
-89765 RSPH1 radial spoke head 1 homolog protein-coding 5.612 2.286
+8975 USP13 ubiquitin specific peptidase 13 protein-coding 8.748 0.988
+8976 WASL Wiskott-Aldrich syndrome like protein-coding 10.76 0.592
+89765 RSPH1 radial spoke head 1 homolog protein-coding 5.613 2.285
89766 UMODL1 uromodulin like 1 protein-coding 2.146 2.195
-89781 HPS4 HPS4, biogenesis of lysosomal organelles complex 3 subunit 2 protein-coding 9.738 0.6475
-89782 LMLN leishmanolysin like peptidase protein-coding 8.028 0.8736
-89790 SIGLEC10 sialic acid binding Ig like lectin 10 protein-coding 6.855 1.716
-89795 NAV3 neuron navigator 3 protein-coding 5.539 2.182
-89796 NAV1 neuron navigator 1 protein-coding 9.999 1.425
+89781 HPS4 HPS4, biogenesis of lysosomal organelles complex 3 subunit 2 protein-coding 9.738 0.6472
+89782 LMLN leishmanolysin like peptidase protein-coding 8.028 0.8733
+89790 SIGLEC10 sialic acid binding Ig like lectin 10 protein-coding 6.856 1.717
+89795 NAV3 neuron navigator 3 protein-coding 5.54 2.182
+89796 NAV1 neuron navigator 1 protein-coding 9.998 1.424
89797 NAV2 neuron navigator 2 protein-coding 9.758 1.507
-898 CCNE1 cyclin E1 protein-coding 6.933 1.723
+898 CCNE1 cyclin E1 protein-coding 6.931 1.724
89801 PPP1R3F protein phosphatase 1 regulatory subunit 3F protein-coding 6.549 1.314
-89822 KCNK17 potassium two pore domain channel subfamily K member 17 protein-coding 2.835 1.836
-89832 CHRFAM7A CHRNA7 (exons 5-10) and FAM7A (exons A-E) fusion protein-coding 4.54 1.838
-89837 ULK4P3 ULK4 pseudogene 3 pseudo 2.273 1.282
-89839 ARHGAP11B Rho GTPase activating protein 11B protein-coding 4.172 1.734
-89845 ABCC10 ATP binding cassette subfamily C member 10 protein-coding 9.073 0.698
-89846 FGD3 FYVE, RhoGEF and PH domain containing 3 protein-coding 7.595 1.521
-89848 FCHSD1 FCH and double SH3 domains 1 protein-coding 8.185 1.086
-89849 ATG16L2 autophagy related 16 like 2 protein-coding 8.209 1.027
-8985 PLOD3 procollagen-lysine,2-oxoglutarate 5-dioxygenase 3 protein-coding 10.87 0.9415
-89853 MVB12B multivesicular body subunit 12B protein-coding 8.536 1.177
-89857 KLHL6 kelch like family member 6 protein-coding 6.84 1.624
-89858 SIGLEC12 sialic acid binding Ig like lectin 12 (gene/pseudogene) protein-coding 3.067 2.063
-8986 RPS6KA4 ribosomal protein S6 kinase A4 protein-coding 9.882 0.8221
-89866 SEC16B SEC16 homolog B, endoplasmic reticulum export factor protein-coding 7.26 1.696
-8987 STBD1 starch binding domain 1 protein-coding 8.481 1.345
-89870 TRIM15 tripartite motif containing 15 protein-coding 2.934 3.441
-89874 SLC25A21 solute carrier family 25 member 21 protein-coding 2.915 1.649
-89876 MAATS1 MYCBP associated and testis expressed 1 protein-coding 5.294 2.494
-89884 LHX4 LIM homeobox 4 protein-coding 2.276 1.065
-89886 SLAMF9 SLAM family member 9 protein-coding 2.302 1.923
-89887 ZNF628 zinc finger protein 628 protein-coding 7.392 0.7044
-8989 TRPA1 transient receptor potential cation channel subfamily A member 1 protein-coding 3.174 2.697
-89890 KBTBD6 kelch repeat and BTB domain containing 6 protein-coding 8.504 0.8132
+89822 KCNK17 potassium two pore domain channel subfamily K member 17 protein-coding 2.837 1.837
+89832 CHRFAM7A CHRNA7 (exons 5-10) and FAM7A (exons A-E) fusion protein-coding 4.542 1.839
+89837 ULK4P3 ULK4 pseudogene 3 pseudo 2.274 1.282
+89839 ARHGAP11B Rho GTPase activating protein 11B protein-coding 4.171 1.734
+89845 ABCC10 ATP binding cassette subfamily C member 10 protein-coding 9.074 0.6978
+89846 FGD3 FYVE, RhoGEF and PH domain containing 3 protein-coding 7.596 1.522
+89848 FCHSD1 FCH and double SH3 domains 1 protein-coding 8.186 1.086
+89849 ATG16L2 autophagy related 16 like 2 protein-coding 8.209 1.028
+8985 PLOD3 procollagen-lysine,2-oxoglutarate 5-dioxygenase 3 protein-coding 10.86 0.9414
+89853 MVB12B multivesicular body subunit 12B protein-coding 8.537 1.177
+89857 KLHL6 kelch like family member 6 protein-coding 6.841 1.625
+89858 SIGLEC12 sialic acid binding Ig like lectin 12 (gene/pseudogene) protein-coding 3.068 2.064
+8986 RPS6KA4 ribosomal protein S6 kinase A4 protein-coding 9.881 0.8222
+89866 SEC16B SEC16 homolog B, endoplasmic reticulum export factor protein-coding 7.26 1.695
+8987 STBD1 starch binding domain 1 protein-coding 8.481 1.344
+89870 TRIM15 tripartite motif containing 15 protein-coding 2.933 3.441
+89874 SLC25A21 solute carrier family 25 member 21 protein-coding 2.916 1.649
+89876 MAATS1 MYCBP associated and testis expressed 1 protein-coding 5.296 2.493
+89884 LHX4 LIM homeobox 4 protein-coding 2.276 1.064
+89886 SLAMF9 SLAM family member 9 protein-coding 2.301 1.923
+89887 ZNF628 zinc finger protein 628 protein-coding 7.393 0.7042
+8989 TRPA1 transient receptor potential cation channel subfamily A member 1 protein-coding 3.173 2.696
+89890 KBTBD6 kelch repeat and BTB domain containing 6 protein-coding 8.504 0.8131
89891 WDR34 WD repeat domain 34 protein-coding 10.5 0.893
-89894 TMEM116 transmembrane protein 116 protein-coding 7.427 0.9569
-899 CCNF cyclin F protein-coding 8.294 1.433
-8991 SELENBP1 selenium binding protein 1 protein-coding 9.822 2.149
-89910 UBE3B ubiquitin protein ligase E3B protein-coding 10.16 0.4524
-8992 ATP6V0E1 ATPase H+ transporting V0 subunit e1 protein-coding 11.7 0.5955
-89927 C16orf45 chromosome 16 open reading frame 45 protein-coding 8.113 1.787
-8993 PGLYRP1 peptidoglycan recognition protein 1 protein-coding 0.5665 0.7718
-89932 PAPLN papilin, proteoglycan like sulfated glycoprotein protein-coding 8.398 1.805
-8994 LIMD1 LIM domains containing 1 protein-coding 9.741 0.824
-89941 RHOT2 ras homolog family member T2 protein-coding 10.57 0.6668
-89944 GLB1L2 galactosidase beta 1 like 2 protein-coding 7.983 2.604
-89953 KLC4 kinesin light chain 4 protein-coding 9.405 0.874
-89958 SAPCD2 suppressor APC domain containing 2 protein-coding 8.481 1.953
-8996 NOL3 nucleolar protein 3 protein-coding 8.883 1.136
+89894 TMEM116 transmembrane protein 116 protein-coding 7.426 0.9565
+899 CCNF cyclin F protein-coding 8.293 1.433
+8991 SELENBP1 selenium binding protein 1 protein-coding 9.823 2.149
+89910 UBE3B ubiquitin protein ligase E3B protein-coding 10.16 0.4523
+8992 ATP6V0E1 ATPase H+ transporting V0 subunit e1 protein-coding 11.7 0.5953
+89927 C16orf45 chromosome 16 open reading frame 45 protein-coding 8.115 1.787
+8993 PGLYRP1 peptidoglycan recognition protein 1 protein-coding 0.5664 0.7717
+89932 PAPLN papilin, proteoglycan like sulfated glycoprotein protein-coding 8.399 1.805
+8994 LIMD1 LIM domains containing 1 protein-coding 9.741 0.8244
+89941 RHOT2 ras homolog family member T2 protein-coding 10.57 0.6666
+89944 GLB1L2 galactosidase beta 1 like 2 protein-coding 7.984 2.603
+89953 KLC4 kinesin light chain 4 protein-coding 9.406 0.8738
+89958 SAPCD2 suppressor APC domain containing 2 protein-coding 8.48 1.953
+8996 NOL3 nucleolar protein 3 protein-coding 8.884 1.136
8997 KALRN kalirin RhoGEF kinase protein-coding 8.122 1.51
-89970 RSPRY1 ring finger and SPRY domain containing 1 protein-coding 8.404 0.9783
-89978 DPH6 diphthamine biosynthesis 6 protein-coding 6.929 0.7124
-8999 CDKL2 cyclin dependent kinase like 2 protein-coding 4.557 2.485
+89970 RSPRY1 ring finger and SPRY domain containing 1 protein-coding 8.405 0.9779
+89978 DPH6 diphthamine biosynthesis 6 protein-coding 6.929 0.7123
+8999 CDKL2 cyclin dependent kinase like 2 protein-coding 4.558 2.485
9 NAT1 N-acetyltransferase 1 protein-coding 6.649 1.761
-90 ACVR1 activin A receptor type 1 protein-coding 9.7 0.8274
-900 CCNG1 cyclin G1 protein-coding 10.77 0.9224
-90007 MIDN midnolin protein-coding 11.14 0.7096
-9001 HAP1 huntingtin associated protein 1 protein-coding 4.552 2.666
-9002 F2RL3 F2R like thrombin or trypsin receptor 3 protein-coding 5.94 1.928
-90025 UBE3D ubiquitin protein ligase E3D protein-coding 5.892 0.7694
-90060 CCDC120 coiled-coil domain containing 120 protein-coding 8.604 0.9307
-90075 ZNF30 zinc finger protein 30 protein-coding 6.414 0.9369
-901 CCNG2 cyclin G2 protein-coding 10.01 1.091
-90102 PHLDB2 pleckstrin homology like domain family B member 2 protein-coding 8.988 1.794
-90113 VWA5B2 von Willebrand factor A domain containing 5B2 protein-coding 3.647 2.694
-90120 TMEM250 transmembrane protein 250 protein-coding 9.948 0.6272
+90 ACVR1 activin A receptor type 1 protein-coding 9.701 0.8272
+900 CCNG1 cyclin G1 protein-coding 10.77 0.922
+90007 MIDN midnolin protein-coding 11.14 0.7094
+9001 HAP1 huntingtin associated protein 1 protein-coding 4.553 2.665
+9002 F2RL3 F2R like thrombin or trypsin receptor 3 protein-coding 5.941 1.928
+90025 UBE3D ubiquitin protein ligase E3D protein-coding 5.892 0.7696
+90060 CCDC120 coiled-coil domain containing 120 protein-coding 8.604 0.9304
+90075 ZNF30 zinc finger protein 30 protein-coding 6.414 0.9365
+901 CCNG2 cyclin G2 protein-coding 10.02 1.091
+90102 PHLDB2 pleckstrin homology like domain family B member 2 protein-coding 8.988 1.793
+90113 VWA5B2 von Willebrand factor A domain containing 5B2 protein-coding 3.65 2.696
+90120 TMEM250 transmembrane protein 250 protein-coding 9.948 0.6271
90121 TSR2 TSR2, ribosome maturation factor protein-coding 10.04 0.5819
-9013 TAF1C TATA-box binding protein associated factor, RNA polymerase I subunit C protein-coding 9.654 0.7361
-90134 KCNH7 potassium voltage-gated channel subfamily H member 7 protein-coding 0.9682 1.411
-90135 BTBD6 BTB domain containing 6 protein-coding 10.16 0.6963
-90139 TSPAN18 tetraspanin 18 protein-coding 8.541 1.764
-9014 TAF1B TATA-box binding protein associated factor, RNA polymerase I subunit B protein-coding 7.856 0.7036
+9013 TAF1C TATA-box binding protein associated factor, RNA polymerase I subunit C protein-coding 9.655 0.7359
+90134 KCNH7 potassium voltage-gated channel subfamily H member 7 protein-coding 0.9685 1.41
+90135 BTBD6 BTB domain containing 6 protein-coding 10.16 0.6961
+90139 TSPAN18 tetraspanin 18 protein-coding 8.542 1.764
+9014 TAF1B TATA-box binding protein associated factor, RNA polymerase I subunit B protein-coding 7.856 0.7033
90141 EFCAB11 EF-hand calcium binding domain 11 protein-coding 6.105 0.7463
-9015 TAF1A TATA-box binding protein associated factor, RNA polymerase I subunit A protein-coding 6.342 0.935
-9016 SLC25A14 solute carrier family 25 member 14 protein-coding 7.272 0.629
-90161 HS6ST2 heparan sulfate 6-O-sulfotransferase 2 protein-coding 6.019 3.02
-9019 MPZL1 myelin protein zero like 1 protein-coding 11.5 0.7956
-90196 SYS1 SYS1, golgi trafficking protein protein-coding 9.914 0.5321
-902 CCNH cyclin H protein-coding 8.998 0.5674
-9020 MAP3K14 mitogen-activated protein kinase kinase kinase 14 protein-coding 8.794 0.8901
-90203 SNX21 sorting nexin family member 21 protein-coding 8.738 0.8179
-90204 ZSWIM1 zinc finger SWIM-type containing 1 protein-coding 8.237 0.5284
+9015 TAF1A TATA-box binding protein associated factor, RNA polymerase I subunit A protein-coding 6.342 0.9345
+9016 SLC25A14 solute carrier family 25 member 14 protein-coding 7.272 0.6289
+90161 HS6ST2 heparan sulfate 6-O-sulfotransferase 2 protein-coding 6.019 3.019
+9019 MPZL1 myelin protein zero like 1 protein-coding 11.5 0.7954
+90196 SYS1 SYS1, golgi trafficking protein protein-coding 9.914 0.5319
+902 CCNH cyclin H protein-coding 8.998 0.5673
+9020 MAP3K14 mitogen-activated protein kinase kinase kinase 14 protein-coding 8.794 0.8902
+90203 SNX21 sorting nexin family member 21 protein-coding 8.739 0.8176
+90204 ZSWIM1 zinc finger SWIM-type containing 1 protein-coding 8.237 0.5283
9021 SOCS3 suppressor of cytokine signaling 3 protein-coding 10.25 1.698
-9022 CLIC3 chloride intracellular channel 3 protein-coding 5.903 2.972
-90226 UCN2 urocortin 2 protein-coding 3.047 2.35
-9023 CH25H cholesterol 25-hydroxylase protein-coding 5.673 1.942
-90231 KIAA2013 KIAA2013 protein-coding 10.64 0.599
-90233 ZNF551 zinc finger protein 551 protein-coding 6.623 1.127
-9024 BRSK2 BR serine/threonine kinase 2 protein-coding 3.926 2.787
-90246 LOC90246 uncharacterized LOC90246 ncRNA 4.385 2.065
-90249 UNC5A unc-5 netrin receptor A protein-coding 4.35 2.784
-9025 RNF8 ring finger protein 8 protein-coding 8.743 0.5519
+9022 CLIC3 chloride intracellular channel 3 protein-coding 5.904 2.972
+90226 UCN2 urocortin 2 protein-coding 3.045 2.349
+9023 CH25H cholesterol 25-hydroxylase protein-coding 5.673 1.941
+90231 KIAA2013 KIAA2013 protein-coding 10.64 0.5988
+90233 ZNF551 zinc finger protein 551 protein-coding 6.624 1.127
+9024 BRSK2 BR serine/threonine kinase 2 protein-coding 3.927 2.787
+90246 LOC90246 uncharacterized LOC90246 ncRNA 4.387 2.065
+90249 UNC5A unc-5 netrin receptor A protein-coding 4.351 2.783
+9025 RNF8 ring finger protein 8 protein-coding 8.743 0.5517
9026 HIP1R huntingtin interacting protein 1 related protein-coding 10.34 1.05
-90268 OTULIN OTU deubiquitinase with linear linkage specificity protein-coding 9.136 0.7126
-9027 NAT8 N-acetyltransferase 8 (putative) protein-coding 2.416 3.333
-90271 OLMALINC oligodendrocyte maturation-associated long intergenic non-coding RNA ncRNA 6.668 1.257
+90268 OTULIN OTU deubiquitinase with linear linkage specificity protein-coding 9.136 0.7124
+9027 NAT8 N-acetyltransferase 8 (putative) protein-coding 2.415 3.332
+90271 OLMALINC oligodendrocyte maturation-associated long intergenic non-coding RNA ncRNA 6.667 1.257
90273 CEACAM21 carcinoembryonic antigen related cell adhesion molecule 21 protein-coding 3.864 1.574
-9028 RHBDL1 rhomboid like 1 protein-coding 5.437 1.623
-90288 EFCAB12 EF-hand calcium binding domain 12 protein-coding 3.791 2.152
-90293 KLHL13 kelch like family member 13 protein-coding 6.856 2.088
-9031 BAZ1B bromodomain adjacent to zinc finger domain 1B protein-coding 11.14 0.5272
-90313 TP53I13 tumor protein p53 inducible protein 13 protein-coding 9.23 0.8692
-90317 ZNF616 zinc finger protein 616 protein-coding 7.286 0.6839
+9028 RHBDL1 rhomboid like 1 protein-coding 5.436 1.622
+90288 EFCAB12 EF-hand calcium binding domain 12 protein-coding 3.792 2.152
+90293 KLHL13 kelch like family member 13 protein-coding 6.856 2.087
+9031 BAZ1B bromodomain adjacent to zinc finger domain 1B protein-coding 11.14 0.5271
+90313 TP53I13 tumor protein p53 inducible protein 13 protein-coding 9.23 0.8689
+90317 ZNF616 zinc finger protein 616 protein-coding 7.287 0.6838
90321 ZNF766 zinc finger protein 766 protein-coding 8.595 0.5692
-90324 CCDC97 coiled-coil domain containing 97 protein-coding 9.86 0.493
-90326 THAP3 THAP domain containing 3 protein-coding 8.372 0.7904
+90324 CCDC97 coiled-coil domain containing 97 protein-coding 9.86 0.4929
+90326 THAP3 THAP domain containing 3 protein-coding 8.372 0.7901
9033 PKD2L1 polycystin 2 like 1, transient receptor potential cation channel protein-coding 2.116 1.49
90332 EXOC3L2 exocyst complex component 3 like 2 protein-coding 5.971 1.768
-90333 ZNF468 zinc finger protein 468 protein-coding 8.277 1.192
-90338 ZNF160 zinc finger protein 160 protein-coding 8.906 0.9593
-9034 CCRL2 C-C motif chemokine receptor like 2 protein-coding 5.913 1.457
-90342 FER1L5 fer-1 like family member 5 protein-coding 1.526 1.408
-90353 CTU1 cytosolic thiouridylase subunit 1 protein-coding 6.089 0.8704
-90355 C5orf30 chromosome 5 open reading frame 30 protein-coding 8.02 1.283
-90362 FAM110B family with sequence similarity 110 member B protein-coding 7.243 2.188
-9037 SEMA5A semaphorin 5A protein-coding 8.923 1.822
-90378 SAMD1 sterile alpha motif domain containing 1 protein-coding 8.474 0.7496
-90379 DCAF15 DDB1 and CUL4 associated factor 15 protein-coding 9.173 0.688
-90381 TICRR TOPBP1 interacting checkpoint and replication regulator protein-coding 6.727 1.908
-9039 UBA3 ubiquitin like modifier activating enzyme 3 protein-coding 9.812 0.5272
-90390 MED30 mediator complex subunit 30 protein-coding 7.574 0.7847
-904 CCNT1 cyclin T1 protein-coding 6.399 1.59
+90333 ZNF468 zinc finger protein 468 protein-coding 8.278 1.191
+90338 ZNF160 zinc finger protein 160 protein-coding 8.906 0.9589
+9034 CCRL2 C-C motif chemokine receptor like 2 protein-coding 5.913 1.458
+90342 FER1L5 fer-1 like family member 5 protein-coding 1.527 1.408
+90353 CTU1 cytosolic thiouridylase subunit 1 protein-coding 6.089 0.8701
+90355 C5orf30 chromosome 5 open reading frame 30 protein-coding 8.019 1.283
+90362 FAM110B family with sequence similarity 110 member B protein-coding 7.244 2.188
+9037 SEMA5A semaphorin 5A protein-coding 8.923 1.821
+90378 SAMD1 sterile alpha motif domain containing 1 protein-coding 8.474 0.7494
+90379 DCAF15 DDB1 and CUL4 associated factor 15 protein-coding 9.173 0.6879
+90381 TICRR TOPBP1 interacting checkpoint and replication regulator protein-coding 6.726 1.908
+9039 UBA3 ubiquitin like modifier activating enzyme 3 protein-coding 9.812 0.5269
+90390 MED30 mediator complex subunit 30 protein-coding 7.574 0.7845
+904 CCNT1 cyclin T1 protein-coding 6.4 1.59
9040 UBE2M ubiquitin conjugating enzyme E2 M protein-coding 10.32 0.623
-90407 TMEM41A transmembrane protein 41A protein-coding 9.586 0.7455
-90410 IFT20 intraflagellar transport 20 protein-coding 8.738 0.6353
-90411 MCFD2 multiple coagulation factor deficiency 2 protein-coding 11.28 0.6912
-90416 CCDC32 coiled-coil domain containing 32 protein-coding 8.487 0.5994
-90417 KNSTRN kinetochore localized astrin (SPAG5) binding protein protein-coding 8.378 0.9167
-90423 ATP6V1E2 ATPase H+ transporting V1 subunit E2 protein-coding 5.914 0.8676
-90427 BMF Bcl2 modifying factor protein-coding 8.934 1.301
-9043 SPAG9 sperm associated antigen 9 protein-coding 10.99 0.8414
-9044 BTAF1 B-TFIID TATA-box binding protein associated factor 1 protein-coding 9.465 0.7984
+90407 TMEM41A transmembrane protein 41A protein-coding 9.586 0.7454
+90410 IFT20 intraflagellar transport 20 protein-coding 8.738 0.6351
+90411 MCFD2 multiple coagulation factor deficiency 2 protein-coding 11.28 0.691
+90416 CCDC32 coiled-coil domain containing 32 protein-coding 8.488 0.5995
+90417 KNSTRN kinetochore localized astrin (SPAG5) binding protein protein-coding 8.377 0.917
+90423 ATP6V1E2 ATPase H+ transporting V1 subunit E2 protein-coding 5.913 0.8676
+90427 BMF Bcl2 modifying factor protein-coding 8.935 1.301
+9043 SPAG9 sperm associated antigen 9 protein-coding 10.99 0.8412
+9044 BTAF1 B-TFIID TATA-box binding protein associated factor 1 protein-coding 9.466 0.7984
90441 ZNF622 zinc finger protein 622 protein-coding 9.483 0.5513
-9045 RPL14 ribosomal protein L14 protein-coding 12.91 0.8601
-90459 ERI1 exoribonuclease 1 protein-coding 8.328 0.7694
-9046 DOK2 docking protein 2 protein-coding 6.645 1.731
+9045 RPL14 ribosomal protein L14 protein-coding 12.91 0.8597
+90459 ERI1 exoribonuclease 1 protein-coding 8.328 0.7692
+9046 DOK2 docking protein 2 protein-coding 6.646 1.732
9047 SH2D2A SH2 domain containing 2A protein-coding 5.989 1.982
9048 ARTN artemin protein-coding 4.783 2.093
-90480 GADD45GIP1 GADD45G interacting protein 1 protein-coding 10.05 0.8977
-90485 ZNF835 zinc finger protein 835 protein-coding 3.149 1.893
-90488 TMEM263 transmembrane protein 263 protein-coding 10.19 0.7538
-9049 AIP aryl hydrocarbon receptor interacting protein protein-coding 10.22 0.6952
-905 CCNT2 cyclin T2 protein-coding 9.369 0.6879
-9050 PSTPIP2 proline-serine-threonine phosphatase interacting protein 2 protein-coding 7.547 1.492
-90506 LRRC46 leucine rich repeat containing 46 protein-coding 4.91 1.666
-90507 SCRN2 secernin 2 protein-coding 9.278 0.9861
-9051 PSTPIP1 proline-serine-threonine phosphatase interacting protein 1 protein-coding 6.089 1.661
-9052 GPRC5A G protein-coupled receptor class C group 5 member A protein-coding 8.978 3.509
-90522 YIF1B Yip1 interacting factor homolog B, membrane trafficking protein protein-coding 9.622 0.7515
-90525 SHF Src homology 2 domain containing F protein-coding 7.045 1.59
-90527 DUOXA1 dual oxidase maturation factor 1 protein-coding 4.971 3.325
+90480 GADD45GIP1 GADD45G interacting protein 1 protein-coding 10.05 0.8975
+90485 ZNF835 zinc finger protein 835 protein-coding 3.151 1.893
+90488 TMEM263 transmembrane protein 263 protein-coding 10.19 0.7536
+9049 AIP aryl hydrocarbon receptor interacting protein protein-coding 10.22 0.6949
+905 CCNT2 cyclin T2 protein-coding 9.369 0.6877
+9050 PSTPIP2 proline-serine-threonine phosphatase interacting protein 2 protein-coding 7.547 1.493
+90506 LRRC46 leucine rich repeat containing 46 protein-coding 4.91 1.665
+90507 SCRN2 secernin 2 protein-coding 9.278 0.9859
+9051 PSTPIP1 proline-serine-threonine phosphatase interacting protein 1 protein-coding 6.089 1.662
+9052 GPRC5A G protein-coupled receptor class C group 5 member A protein-coding 8.979 3.508
+90522 YIF1B Yip1 interacting factor homolog B, membrane trafficking protein protein-coding 9.621 0.7516
+90525 SHF Src homology 2 domain containing F protein-coding 7.046 1.59
+90527 DUOXA1 dual oxidase maturation factor 1 protein-coding 4.973 3.325
90529 STPG1 sperm tail PG-rich repeat containing 1 protein-coding 7.63 1.025
-9053 MAP7 microtubule associated protein 7 protein-coding 9.717 1.483
-9054 NFS1 NFS1, cysteine desulfurase protein-coding 9.306 0.6052
-9055 PRC1 protein regulator of cytokinesis 1 protein-coding 9.385 1.519
-90550 MCU mitochondrial calcium uniporter protein-coding 9.282 0.9894
-90557 CCDC74A coiled-coil domain containing 74A protein-coding 6.871 1.807
-9056 SLC7A7 solute carrier family 7 member 7 protein-coding 8.17 1.556
-9057 SLC7A6 solute carrier family 7 member 6 protein-coding 9.645 0.7018
-90576 ZNF799 zinc finger protein 799 protein-coding 6.99 0.8854
-90580 TIMM29 translocase of inner mitochondrial membrane 29 protein-coding 8.097 0.4968
-90586 AOC4P amine oxidase, copper containing 4, pseudogene pseudo 1.323 1.499
-90589 ZNF625 zinc finger protein 625 protein-coding 4.179 1.482
-90592 ZNF700 zinc finger protein 700 protein-coding 8.103 0.7424
-90594 ZNF439 zinc finger protein 439 protein-coding 6.365 1.489
-9060 PAPSS2 3'-phosphoadenosine 5'-phosphosulfate synthase 2 protein-coding 8.812 1.698
-9061 PAPSS1 3'-phosphoadenosine 5'-phosphosulfate synthase 1 protein-coding 10.46 0.7805
-90624 LYRM7 LYR motif containing 7 protein-coding 8.501 0.7477
-90627 STARD13 StAR related lipid transfer domain containing 13 protein-coding 8.382 1.154
-9063 PIAS2 protein inhibitor of activated STAT 2 protein-coding 7.763 0.7611
-90634 N4BP2L1 NEDD4 binding protein 2 like 1 protein-coding 7.656 1.201
-90637 ZFAND2A zinc finger AN1-type containing 2A protein-coding 8.366 0.8506
-90639 COX19 COX19, cytochrome c oxidase assembly factor protein-coding 8.377 0.6771
-9064 MAP3K6 mitogen-activated protein kinase kinase kinase 6 protein-coding 9.291 1.128
-90649 ZNF486 zinc finger protein 486 protein-coding 5.092 2.285
-9066 SYT7 synaptotagmin 7 protein-coding 8.426 2.662
-90668 CARMIL3 capping protein regulator and myosin 1 linker 3 protein-coding 4.537 1.958
-90673 PPP1R3E protein phosphatase 1 regulatory subunit 3E protein-coding 6.339 1.039
-90678 LRSAM1 leucine rich repeat and sterile alpha motif containing 1 protein-coding 9.094 0.629
-9068 ANGPTL1 angiopoietin like 1 protein-coding 4.95 2.427
-9069 CLDN12 claudin 12 protein-coding 9.948 0.8689
-90693 CCDC126 coiled-coil domain containing 126 protein-coding 7.365 0.7366
-9070 ASH2L ASH2 like histone lysine methyltransferase complex subunit protein-coding 9.998 0.6932
+9053 MAP7 microtubule associated protein 7 protein-coding 9.716 1.483
+9054 NFS1 NFS1, cysteine desulfurase protein-coding 9.306 0.6051
+9055 PRC1 protein regulator of cytokinesis 1 protein-coding 9.383 1.519
+90550 MCU mitochondrial calcium uniporter protein-coding 9.282 0.9892
+90557 CCDC74A coiled-coil domain containing 74A protein-coding 6.871 1.806
+9056 SLC7A7 solute carrier family 7 member 7 protein-coding 8.17 1.557
+9057 SLC7A6 solute carrier family 7 member 6 protein-coding 9.645 0.7019
+90576 ZNF799 zinc finger protein 799 protein-coding 6.99 0.8851
+90580 TIMM29 translocase of inner mitochondrial membrane 29 protein-coding 8.097 0.4966
+90586 AOC4P amine oxidase, copper containing 4, pseudogene pseudo 1.324 1.5
+90589 ZNF625 zinc finger protein 625 protein-coding 4.18 1.482
+90592 ZNF700 zinc finger protein 700 protein-coding 8.104 0.7423
+90594 ZNF439 zinc finger protein 439 protein-coding 6.366 1.489
+9060 PAPSS2 3'-phosphoadenosine 5'-phosphosulfate synthase 2 protein-coding 8.813 1.699
+9061 PAPSS1 3'-phosphoadenosine 5'-phosphosulfate synthase 1 protein-coding 10.46 0.7804
+90624 LYRM7 LYR motif containing 7 protein-coding 8.502 0.7475
+90627 STARD13 StAR related lipid transfer domain containing 13 protein-coding 8.383 1.155
+9063 PIAS2 protein inhibitor of activated STAT 2 protein-coding 7.763 0.7608
+90634 N4BP2L1 NEDD4 binding protein 2 like 1 protein-coding 7.657 1.201
+90637 ZFAND2A zinc finger AN1-type containing 2A protein-coding 8.365 0.8504
+90639 COX19 COX19, cytochrome c oxidase assembly factor protein-coding 8.377 0.6769
+9064 MAP3K6 mitogen-activated protein kinase kinase kinase 6 protein-coding 9.292 1.127
+90649 ZNF486 zinc finger protein 486 protein-coding 5.094 2.285
+9066 SYT7 synaptotagmin 7 protein-coding 8.428 2.662
+90668 CARMIL3 capping protein regulator and myosin 1 linker 3 protein-coding 4.538 1.958
+90673 PPP1R3E protein phosphatase 1 regulatory subunit 3E protein-coding 6.34 1.039
+90678 LRSAM1 leucine rich repeat and sterile alpha motif containing 1 protein-coding 9.095 0.6289
+9068 ANGPTL1 angiopoietin like 1 protein-coding 4.953 2.429
+9069 CLDN12 claudin 12 protein-coding 9.948 0.869
+90693 CCDC126 coiled-coil domain containing 126 protein-coding 7.365 0.7363
+9070 ASH2L ASH2 like histone lysine methyltransferase complex subunit protein-coding 9.998 0.693
90701 SEC11C SEC11 homolog C, signal peptidase complex subunit protein-coding 9.974 1.123
-9071 CLDN10 claudin 10 protein-coding 4.473 3.6
-90736 FAM104B family with sequence similarity 104 member B protein-coding 7.751 0.6933
-9074 CLDN6 claudin 6 protein-coding 2.076 2.693
-9075 CLDN2 claudin 2 protein-coding 4.823 4.149
-9077 DIRAS3 DIRAS family GTPase 3 protein-coding 5.18 2.221
+9071 CLDN10 claudin 10 protein-coding 4.475 3.6
+90736 FAM104B family with sequence similarity 104 member B protein-coding 7.75 0.693
+9074 CLDN6 claudin 6 protein-coding 2.077 2.693
+9075 CLDN2 claudin 2 protein-coding 4.824 4.149
+9077 DIRAS3 DIRAS family GTPase 3 protein-coding 5.182 2.221
90780 PYGO2 pygopus family PHD finger 2 protein-coding 10.54 0.5534
-9079 LDB2 LIM domain binding 2 protein-coding 7.711 1.389
-90799 CEP95 centrosomal protein 95 protein-coding 8.879 0.6827
-908 CCT6A chaperonin containing TCP1 subunit 6A protein-coding 12.09 0.6765
+9079 LDB2 LIM domain binding 2 protein-coding 7.712 1.389
+90799 CEP95 centrosomal protein 95 protein-coding 8.879 0.6825
+908 CCT6A chaperonin containing TCP1 subunit 6A protein-coding 12.09 0.6768
9080 CLDN9 claudin 9 protein-coding 4.204 2.358
-90806 ANGEL2 angel homolog 2 protein-coding 9.101 0.5584
-90809 PIP4P1 phosphatidylinositol-4,5-bisphosphate 4-phosphatase 1 protein-coding 9.343 0.4877
-90826 PRMT9 protein arginine methyltransferase 9 protein-coding 7.581 0.6041
+90806 ANGEL2 angel homolog 2 protein-coding 9.101 0.5582
+90809 PIP4P1 phosphatidylinositol-4,5-bisphosphate 4-phosphatase 1 protein-coding 9.343 0.4876
+90826 PRMT9 protein arginine methyltransferase 9 protein-coding 7.581 0.6043
90835 CCDC189 coiled-coil domain containing 189 protein-coding 5.725 1.218
-90843 TCEAL8 transcription elongation factor A like 8 protein-coding 9.838 0.8285
-90850 ZNF598 zinc finger protein 598 protein-coding 9.844 0.6955
-90853 SPOCD1 SPOC domain containing 1 protein-coding 5.536 2.365
+90843 TCEAL8 transcription elongation factor A like 8 protein-coding 9.838 0.8282
+90850 ZNF598 zinc finger protein 598 protein-coding 9.843 0.6953
+90853 SPOCD1 SPOC domain containing 1 protein-coding 5.534 2.364
90861 JPT2 Jupiter microtubule associated homolog 2 protein-coding 11.45 0.9947
-90864 SPSB3 splA/ryanodine receptor domain and SOCS box containing 3 protein-coding 9.833 0.7407
-90865 IL33 interleukin 33 protein-coding 7.558 2.038
-90871 DMAC1 distal membrane arm assembly complex 1 protein-coding 9.487 0.7489
+90864 SPSB3 splA/ryanodine receptor domain and SOCS box containing 3 protein-coding 9.834 0.7404
+90865 IL33 interleukin 33 protein-coding 7.559 2.038
+90871 DMAC1 distal membrane arm assembly complex 1 protein-coding 9.487 0.7487
90874 ZNF697 zinc finger protein 697 protein-coding 7.628 1.106
-9088 PKMYT1 protein kinase, membrane associated tyrosine/threonine 1 protein-coding 7.75 1.944
-909 CD1A CD1a molecule protein-coding 3.297 2.792
-9091 PIGQ phosphatidylinositol glycan anchor biosynthesis class Q protein-coding 10 0.8394
-9092 SART1 SART1, U4/U6.U5 tri-snRNP-associated protein 1 protein-coding 10.7 0.6442
+9088 PKMYT1 protein kinase, membrane associated tyrosine/threonine 1 protein-coding 7.748 1.945
+909 CD1A CD1a molecule protein-coding 3.298 2.791
+9091 PIGQ phosphatidylinositol glycan anchor biosynthesis class Q protein-coding 10 0.8393
+9092 SART1 SART1, U4/U6.U5 tri-snRNP-associated protein 1 protein-coding 10.7 0.6439
9093 DNAJA3 DnaJ heat shock protein family (Hsp40) member A3 protein-coding 10.37 0.514
-90933 TRIM41 tripartite motif containing 41 protein-coding 9.625 0.5794
-9094 UNC119 unc-119 lipid binding chaperone protein-coding 9.083 0.714
-9095 TBX19 T-box 19 protein-coding 5.825 0.9703
-90952 ESAM endothelial cell adhesion molecule protein-coding 9.154 1.272
-90956 ADCK2 aarF domain containing kinase 2 protein-coding 9.616 0.5963
-90957 DHX57 DExH-box helicase 57 protein-coding 9.049 0.4952
-9096 TBX18 T-box 18 protein-coding 4.337 2.609
-9097 USP14 ubiquitin specific peptidase 14 protein-coding 10.36 0.6321
-9098 USP6 ubiquitin specific peptidase 6 protein-coding 5.547 0.9813
-90987 ZNF251 zinc finger protein 251 protein-coding 8.416 0.7887
+90933 TRIM41 tripartite motif containing 41 protein-coding 9.626 0.5792
+9094 UNC119 unc-119 lipid binding chaperone protein-coding 9.083 0.7141
+9095 TBX19 T-box 19 protein-coding 5.826 0.9701
+90952 ESAM endothelial cell adhesion molecule protein-coding 9.155 1.272
+90956 ADCK2 aarF domain containing kinase 2 protein-coding 9.616 0.5961
+90957 DHX57 DExH-box helicase 57 protein-coding 9.049 0.4951
+9096 TBX18 T-box 18 protein-coding 4.336 2.607
+9097 USP14 ubiquitin specific peptidase 14 protein-coding 10.36 0.6319
+9098 USP6 ubiquitin specific peptidase 6 protein-coding 5.548 0.9821
+90987 ZNF251 zinc finger protein 251 protein-coding 8.416 0.7885
9099 USP2 ubiquitin specific peptidase 2 protein-coding 6.517 2.014
90990 KIFC2 kinesin family member C2 protein-coding 9.057 1.208
-90993 CREB3L1 cAMP responsive element binding protein 3 like 1 protein-coding 8.563 2.779
-91 ACVR1B activin A receptor type 1B protein-coding 10.22 0.7915
+90993 CREB3L1 cAMP responsive element binding protein 3 like 1 protein-coding 8.564 2.779
+91 ACVR1B activin A receptor type 1B protein-coding 10.22 0.7916
9100 USP10 ubiquitin specific peptidase 10 protein-coding 10.61 0.4724
-9101 USP8 ubiquitin specific peptidase 8 protein-coding 10.05 0.5416
-91010 FMNL3 formin like 3 protein-coding 9.636 1.032
-91012 CERS5 ceramide synthase 5 protein-coding 9.749 0.5584
-9103 FCGR2C Fc fragment of IgG receptor IIc (gene/pseudogene) protein-coding 5.134 1.777
+9101 USP8 ubiquitin specific peptidase 8 protein-coding 10.05 0.5414
+91010 FMNL3 formin like 3 protein-coding 9.636 1.033
+91012 CERS5 ceramide synthase 5 protein-coding 9.749 0.5582
+9103 FCGR2C Fc fragment of IgG receptor IIc (gene/pseudogene) protein-coding 5.135 1.777
91039 DPP9 dipeptidyl peptidase 9 protein-coding 10.48 0.6066
-9104 RGN regucalcin protein-coding 5.527 2.938
-91050 CCDC149 coiled-coil domain containing 149 protein-coding 8.346 1.038
-91056 AP5B1 adaptor related protein complex 5 beta 1 subunit protein-coding 8.818 0.7812
-91057 CCDC34 coiled-coil domain containing 34 protein-coding 8.138 0.9365
-9107 MTMR6 myotubularin related protein 6 protein-coding 9.461 0.6952
-9108 MTMR7 myotubularin related protein 7 protein-coding 5.635 1.534
-911 CD1C CD1c molecule protein-coding 4.082 2.231
-9110 MTMR4 myotubularin related protein 4 protein-coding 9.97 0.6418
-91107 TRIM47 tripartite motif containing 47 protein-coding 9.673 1.157
-9111 NMI N-myc and STAT interactor protein-coding 8.777 1.137
-9112 MTA1 metastasis associated 1 protein-coding 10.15 0.6698
-91120 ZNF682 zinc finger protein 682 protein-coding 5.901 1.766
-9113 LATS1 large tumor suppressor kinase 1 protein-coding 7.904 1.177
-91133 L3MBTL4 L3MBTL4, histone methyl-lysine binding protein protein-coding 5.926 1.946
-91137 SLC25A46 solute carrier family 25 member 46 protein-coding 8.9 0.7166
-9114 ATP6V0D1 ATPase H+ transporting V0 subunit d1 protein-coding 11.07 0.6323
-91147 TMEM67 transmembrane protein 67 protein-coding 7.406 1.009
-91151 TIGD7 tigger transposable element derived 7 protein-coding 7.641 1.04
-9117 SEC22C SEC22 homolog C, vesicle trafficking protein protein-coding 8.93 0.7367
+9104 RGN regucalcin protein-coding 5.529 2.938
+91050 CCDC149 coiled-coil domain containing 149 protein-coding 8.347 1.038
+91056 AP5B1 adaptor related protein complex 5 beta 1 subunit protein-coding 8.818 0.7811
+91057 CCDC34 coiled-coil domain containing 34 protein-coding 8.137 0.9368
+9107 MTMR6 myotubularin related protein 6 protein-coding 9.462 0.695
+9108 MTMR7 myotubularin related protein 7 protein-coding 5.636 1.534
+911 CD1C CD1c molecule protein-coding 4.084 2.232
+9110 MTMR4 myotubularin related protein 4 protein-coding 9.97 0.6416
+91107 TRIM47 tripartite motif containing 47 protein-coding 9.672 1.157
+9111 NMI N-myc and STAT interactor protein-coding 8.776 1.137
+9112 MTA1 metastasis associated 1 protein-coding 10.15 0.6696
+91120 ZNF682 zinc finger protein 682 protein-coding 5.902 1.766
+9113 LATS1 large tumor suppressor kinase 1 protein-coding 7.904 1.176
+91133 L3MBTL4 L3MBTL4, histone methyl-lysine binding protein protein-coding 5.928 1.945
+91137 SLC25A46 solute carrier family 25 member 46 protein-coding 8.9 0.7163
+9114 ATP6V0D1 ATPase H+ transporting V0 subunit d1 protein-coding 11.07 0.6321
+91147 TMEM67 transmembrane protein 67 protein-coding 7.406 1.008
+91151 TIGD7 tigger transposable element derived 7 protein-coding 7.642 1.039
+9117 SEC22C SEC22 homolog C, vesicle trafficking protein protein-coding 8.931 0.7368
91179 SCARF2 scavenger receptor class F member 2 protein-coding 7.591 1.476
-9118 INA internexin neuronal intermediate filament protein alpha protein-coding 4.041 3.46
-91181 NUP210L nucleoporin 210 like protein-coding 0.9859 1.303
-912 CD1D CD1d molecule protein-coding 5.335 1.536
+9118 INA internexin neuronal intermediate filament protein alpha protein-coding 4.043 3.46
+91181 NUP210L nucleoporin 210 like protein-coding 0.9862 1.302
+912 CD1D CD1d molecule protein-coding 5.336 1.537
9120 SLC16A6 solute carrier family 16 member 6 protein-coding 4.845 1.819
-9121 SLC16A5 solute carrier family 16 member 5 protein-coding 7.131 1.859
-9122 SLC16A4 solute carrier family 16 member 4 protein-coding 6.941 2.291
-91227 GGTLC2 gamma-glutamyltransferase light chain 2 protein-coding 5.768 2.202
-9123 SLC16A3 solute carrier family 16 member 3 protein-coding 10.17 1.766
-9124 PDLIM1 PDZ and LIM domain 1 protein-coding 11.3 1.756
-9125 CNOT9 CCR4-NOT transcription complex subunit 9 protein-coding 7.602 0.773
-91252 SLC39A13 solute carrier family 39 member 13 protein-coding 9.909 0.791
-9126 SMC3 structural maintenance of chromosomes 3 protein-coding 10.3 0.7617
-9127 P2RX6 purinergic receptor P2X 6 protein-coding 3.261 2.367
+9121 SLC16A5 solute carrier family 16 member 5 protein-coding 7.132 1.859
+9122 SLC16A4 solute carrier family 16 member 4 protein-coding 6.942 2.29
+91227 GGTLC2 gamma-glutamyltransferase light chain 2 protein-coding 5.769 2.202
+9123 SLC16A3 solute carrier family 16 member 3 protein-coding 10.17 1.765
+9124 PDLIM1 PDZ and LIM domain 1 protein-coding 11.3 1.755
+9125 CNOT9 CCR4-NOT transcription complex subunit 9 protein-coding 7.602 0.7727
+91252 SLC39A13 solute carrier family 39 member 13 protein-coding 9.91 0.7909
+9126 SMC3 structural maintenance of chromosomes 3 protein-coding 10.3 0.7613
+9127 P2RX6 purinergic receptor P2X 6 protein-coding 3.263 2.368
91272 BOD1 biorientation of chromosomes in cell division 1 protein-coding 9.721 0.5406
-9128 PRPF4 pre-mRNA processing factor 4 protein-coding 9.644 0.5782
-91283 MSANTD3 Myb/SANT DNA binding domain containing 3 protein-coding 8.261 0.7008
-91289 LMF2 lipase maturation factor 2 protein-coding 10.75 0.7037
-9129 PRPF3 pre-mRNA processing factor 3 protein-coding 9.73 0.6111
-91298 C12orf29 chromosome 12 open reading frame 29 protein-coding 8.632 0.6384
-913 CD1E CD1e molecule protein-coding 3.586 2.343
-9130 FAM50A family with sequence similarity 50 member A protein-coding 10.56 0.7479
-91300 R3HDM4 R3H domain containing 4 protein-coding 10.65 0.6712
+9128 PRPF4 pre-mRNA processing factor 4 protein-coding 9.644 0.5783
+91283 MSANTD3 Myb/SANT DNA binding domain containing 3 protein-coding 8.261 0.7007
+91289 LMF2 lipase maturation factor 2 protein-coding 10.75 0.7034
+9129 PRPF3 pre-mRNA processing factor 3 protein-coding 9.73 0.611
+91298 C12orf29 chromosome 12 open reading frame 29 protein-coding 8.632 0.6382
+913 CD1E CD1e molecule protein-coding 3.589 2.344
+9130 FAM50A family with sequence similarity 50 member A protein-coding 10.56 0.7476
+91300 R3HDM4 R3H domain containing 4 protein-coding 10.65 0.671
91304 TMEM259 transmembrane protein 259 protein-coding 11.36 0.6588
-9131 AIFM1 apoptosis inducing factor mitochondria associated 1 protein-coding 10.17 0.8718
-91316 GUSBP11 glucuronidase, beta pseudogene 11 pseudo 8.051 1.153
-91319 DERL3 derlin 3 protein-coding 7.33 1.984
-9132 KCNQ4 potassium voltage-gated channel subfamily Q member 4 protein-coding 2.82 1.768
-9133 CCNB2 cyclin B2 protein-coding 8.148 2.038
-9134 CCNE2 cyclin E2 protein-coding 6.863 1.596
-9135 RABEP1 rabaptin, RAB GTPase binding effector protein 1 protein-coding 10.3 0.787
-91351 DDX60L DExD/H-box 60 like protein-coding 8.626 1.107
-91353 IGLL3P immunoglobulin lambda like polypeptide 3, pseudogene pseudo 0.6679 1.005
+9131 AIFM1 apoptosis inducing factor mitochondria associated 1 protein-coding 10.17 0.8717
+91316 GUSBP11 glucuronidase, beta pseudogene 11 pseudo 8.052 1.153
+91319 DERL3 derlin 3 protein-coding 7.33 1.983
+9132 KCNQ4 potassium voltage-gated channel subfamily Q member 4 protein-coding 2.822 1.769
+9133 CCNB2 cyclin B2 protein-coding 8.146 2.039
+9134 CCNE2 cyclin E2 protein-coding 6.861 1.596
+9135 RABEP1 rabaptin, RAB GTPase binding effector protein 1 protein-coding 10.3 0.7867
+91351 DDX60L DExD/H-box 60 like protein-coding 8.627 1.106
+91353 IGLL3P immunoglobulin lambda like polypeptide 3, pseudogene pseudo 0.6688 1.006
91355 LRP5L LDL receptor related protein 5 like protein-coding 6.44 1.253
-9136 RRP9 ribosomal RNA processing 9, U3 small nucleolar RNA binding protein protein-coding 8.913 0.7788
-91368 CDKN2AIPNL CDKN2A interacting protein N-terminal like protein-coding 8.668 0.6126
-91369 ANKRD40 ankyrin repeat domain 40 protein-coding 10.24 0.5871
-91373 UAP1L1 UDP-N-acetylglucosamine pyrophosphorylase 1 like 1 protein-coding 8.582 1.102
-9138 ARHGEF1 Rho guanine nucleotide exchange factor 1 protein-coding 10.82 0.7585
+9136 RRP9 ribosomal RNA processing 9, U3 small nucleolar RNA binding protein protein-coding 8.912 0.779
+91368 CDKN2AIPNL CDKN2A interacting protein N-terminal like protein-coding 8.667 0.6124
+91369 ANKRD40 ankyrin repeat domain 40 protein-coding 10.24 0.5869
+91373 UAP1L1 UDP-N-acetylglucosamine pyrophosphorylase 1 like 1 protein-coding 8.583 1.102
+9138 ARHGEF1 Rho guanine nucleotide exchange factor 1 protein-coding 10.82 0.7589
9139 CBFA2T2 CBFA2/RUNX1 translocation partner 2 protein-coding 9.709 0.7451
-91392 ZNF502 zinc finger protein 502 protein-coding 6.401 1.525
-914 CD2 CD2 molecule protein-coding 6.943 2.246
-9140 ATG12 autophagy related 12 protein-coding 8.996 0.4967
+91392 ZNF502 zinc finger protein 502 protein-coding 6.402 1.524
+914 CD2 CD2 molecule protein-coding 6.944 2.246
+9140 ATG12 autophagy related 12 protein-coding 8.996 0.4965
91404 SESTD1 SEC14 and spectrin domain containing 1 protein-coding 9.508 1.051
-91408 BTF3L4 basic transcription factor 3 like 4 protein-coding 9.797 0.5896
-91409 CCDC74B coiled-coil domain containing 74B protein-coding 5.627 2.048
-9141 PDCD5 programmed cell death 5 protein-coding 9.786 0.7473
-91419 ATP23 ATP23 metallopeptidase and ATP synthase assembly factor homolog protein-coding 6.785 0.845
-9143 SYNGR3 synaptogyrin 3 protein-coding 5.289 2.249
-91433 RCCD1 RCC1 domain containing 1 protein-coding 8.031 0.7434
+91408 BTF3L4 basic transcription factor 3 like 4 protein-coding 9.797 0.5894
+91409 CCDC74B coiled-coil domain containing 74B protein-coding 5.628 2.047
+9141 PDCD5 programmed cell death 5 protein-coding 9.785 0.7475
+91419 ATP23 ATP23 metallopeptidase and ATP synthase assembly factor homolog protein-coding 6.784 0.8447
+9143 SYNGR3 synaptogyrin 3 protein-coding 5.29 2.249
+91433 RCCD1 RCC1 domain containing 1 protein-coding 8.03 0.7433
9144 SYNGR2 synaptogyrin 2 protein-coding 11.96 1.152
-91442 FAAP24 Fanconi anemia core complex associated protein 24 protein-coding 5.489 1.011
+91442 FAAP24 Fanconi anemia core complex associated protein 24 protein-coding 5.489 1.01
91445 RNF185 ring finger protein 185 protein-coding 10.06 0.5778
-9145 SYNGR1 synaptogyrin 1 protein-coding 8.435 1.928
-91450 LOC91450 uncharacterized LOC91450 ncRNA 2.315 1.069
-91452 ACBD5 acyl-CoA binding domain containing 5 protein-coding 9.735 0.8554
-9146 HGS hepatocyte growth factor-regulated tyrosine kinase substrate protein-coding 11.18 0.5503
-91461 PKDCC protein kinase domain containing, cytoplasmic protein-coding 7.802 2.193
-9147 NEMF nuclear export mediator factor protein-coding 9.548 0.6293
-9148 NEURL1 neuralized E3 ubiquitin protein ligase 1 protein-coding 5.107 2.545
-9149 DYRK1B dual specificity tyrosine phosphorylation regulated kinase 1B protein-coding 8.992 0.9734
-915 CD3D CD3d molecule protein-coding 5.804 2.367
-9150 CTDP1 CTD phosphatase subunit 1 protein-coding 9.128 0.5497
-91522 COL23A1 collagen type XXIII alpha 1 chain protein-coding 5.404 2.636
+9145 SYNGR1 synaptogyrin 1 protein-coding 8.436 1.928
+91450 LOC91450 uncharacterized LOC91450 ncRNA 2.316 1.07
+91452 ACBD5 acyl-CoA binding domain containing 5 protein-coding 9.735 0.855
+9146 HGS hepatocyte growth factor-regulated tyrosine kinase substrate protein-coding 11.18 0.5502
+91461 PKDCC protein kinase domain containing, cytoplasmic protein-coding 7.804 2.192
+9147 NEMF nuclear export mediator factor protein-coding 9.549 0.6291
+9148 NEURL1 neuralized E3 ubiquitin protein ligase 1 protein-coding 5.108 2.546
+9149 DYRK1B dual specificity tyrosine phosphorylation regulated kinase 1B protein-coding 8.993 0.9734
+915 CD3D CD3d molecule protein-coding 5.805 2.367
+9150 CTDP1 CTD phosphatase subunit 1 protein-coding 9.129 0.5496
+91522 COL23A1 collagen type XXIII alpha 1 chain protein-coding 5.405 2.635
91523 PCED1B PC-esterase domain containing 1B protein-coding 7.235 1.423
-91526 ANKRD44 ankyrin repeat domain 44 protein-coding 5.64 1.539
-91543 RSAD2 radical S-adenosyl methionine domain containing 2 protein-coding 7.828 1.765
-91544 UBXN11 UBX domain protein 11 protein-coding 8.74 1.046
-9156 EXO1 exonuclease 1 protein-coding 6.669 2.112
-91574 C12orf65 chromosome 12 open reading frame 65 protein-coding 8.542 0.64
-9158 FIBP FGF1 intracellular binding protein protein-coding 10.24 0.5369
-91582 RPS19BP1 ribosomal protein S19 binding protein 1 protein-coding 10.23 0.7299
-91584 PLXNA4 plexin A4 protein-coding 6.039 2.555
-9159 PCSK7 proprotein convertase subtilisin/kexin type 7 protein-coding 9.629 0.6275
-916 CD3E CD3e molecule protein-coding 7.182 2.235
+91526 ANKRD44 ankyrin repeat domain 44 protein-coding 5.642 1.539
+91543 RSAD2 radical S-adenosyl methionine domain containing 2 protein-coding 7.828 1.764
+91544 UBXN11 UBX domain protein 11 protein-coding 8.741 1.046
+9156 EXO1 exonuclease 1 protein-coding 6.666 2.114
+91574 C12orf65 chromosome 12 open reading frame 65 protein-coding 8.542 0.6398
+9158 FIBP FGF1 intracellular binding protein protein-coding 10.24 0.5368
+91582 RPS19BP1 ribosomal protein S19 binding protein 1 protein-coding 10.23 0.7297
+91584 PLXNA4 plexin A4 protein-coding 6.039 2.554
+9159 PCSK7 proprotein convertase subtilisin/kexin type 7 protein-coding 9.629 0.6274
+916 CD3E CD3e molecule protein-coding 7.183 2.235
91603 ZNF830 zinc finger protein 830 protein-coding 8.442 0.4734
-91607 SLFN11 schlafen family member 11 protein-coding 8.813 1.437
-91608 RASL10B RAS like family 10 member B protein-coding 5.602 2.043
-91612 CHURC1 churchill domain containing 1 protein-coding 10.04 0.5661
+91607 SLFN11 schlafen family member 11 protein-coding 8.814 1.437
+91608 RASL10B RAS like family 10 member B protein-coding 5.602 2.042
+91612 CHURC1 churchill domain containing 1 protein-coding 10.04 0.5659
91614 DEPDC7 DEP domain containing 7 protein-coding 5.501 1.988
-91624 NEXN nexilin F-actin binding protein protein-coding 7.246 1.728
-91646 TDRD12 tudor domain containing 12 protein-coding 1.068 1.841
-91647 ATPAF2 ATP synthase mitochondrial F1 complex assembly factor 2 protein-coding 8.333 0.5931
-91653 BOC BOC cell adhesion associated, oncogene regulated protein-coding 8.184 1.786
-9166 EBAG9 estrogen receptor binding site associated, antigen, 9 protein-coding 9.13 0.5922
-91661 ZNF765 zinc finger protein 765 protein-coding 7.55 0.8075
-91662 NLRP12 NLR family pyrin domain containing 12 protein-coding 2.608 1.702
-91663 MYADM myeloid associated differentiation marker protein-coding 11.05 1.281
-91664 ZNF845 zinc finger protein 845 protein-coding 7.359 0.8742
-9167 COX7A2L cytochrome c oxidase subunit 7A2 like protein-coding 10.87 0.5465
+91624 NEXN nexilin F-actin binding protein protein-coding 7.248 1.729
+91646 TDRD12 tudor domain containing 12 protein-coding 1.069 1.843
+91647 ATPAF2 ATP synthase mitochondrial F1 complex assembly factor 2 protein-coding 8.333 0.5928
+91653 BOC BOC cell adhesion associated, oncogene regulated protein-coding 8.185 1.786
+9166 EBAG9 estrogen receptor binding site associated, antigen, 9 protein-coding 9.13 0.5921
+91661 ZNF765 zinc finger protein 765 protein-coding 7.55 0.8072
+91662 NLRP12 NLR family pyrin domain containing 12 protein-coding 2.608 1.703
+91663 MYADM myeloid associated differentiation marker protein-coding 11.06 1.281
+91664 ZNF845 zinc finger protein 845 protein-coding 7.359 0.8739
+9167 COX7A2L cytochrome c oxidase subunit 7A2 like protein-coding 10.87 0.5464
9168 TMSB10 thymosin beta 10 protein-coding 14 1.207
-91687 CENPL centromere protein L protein-coding 7.212 0.9488
-91689 SMDT1 single-pass membrane protein with aspartate rich tail 1 protein-coding 9.629 0.8116
-9169 SCAF11 SR-related CTD associated factor 11 protein-coding 10.99 0.6414
-91694 LONRF1 LON peptidase N-terminal domain and ring finger 1 protein-coding 8.578 0.916
+91687 CENPL centromere protein L protein-coding 7.211 0.9488
+91689 SMDT1 single-pass membrane protein with aspartate rich tail 1 protein-coding 9.629 0.8114
+9169 SCAF11 SR-related CTD associated factor 11 protein-coding 10.99 0.6413
+91694 LONRF1 LON peptidase N-terminal domain and ring finger 1 protein-coding 8.579 0.9157
91695 RRP7BP ribosomal RNA processing 7 homolog B, pseudogene pseudo 6.773 0.9158
-917 CD3G CD3g molecule protein-coding 3.887 2.155
-9170 LPAR2 lysophosphatidic acid receptor 2 protein-coding 8.323 1.301
+917 CD3G CD3g molecule protein-coding 3.889 2.156
+9170 LPAR2 lysophosphatidic acid receptor 2 protein-coding 8.324 1.301
91703 ACY3 aminoacylase 3 protein-coding 4.824 2.801
-9172 MYOM2 myomesin 2 protein-coding 5.155 1.883
-9173 IL1RL1 interleukin 1 receptor like 1 protein-coding 3.611 2.39
-91734 IDI2 isopentenyl-diphosphate delta isomerase 2 protein-coding 5.91 0.7248
-91746 YTHDC1 YTH domain containing 1 protein-coding 10.57 0.4004
-91748 ELMSAN1 ELM2 and Myb/SANT domain containing 1 protein-coding 9.839 0.7396
-91749 MFSD4B major facilitator superfamily domain containing 4B protein-coding 6.483 0.8945
+9172 MYOM2 myomesin 2 protein-coding 5.156 1.882
+9173 IL1RL1 interleukin 1 receptor like 1 protein-coding 3.612 2.39
+91734 IDI2 isopentenyl-diphosphate delta isomerase 2 protein-coding 5.91 0.7246
+91746 YTHDC1 YTH domain containing 1 protein-coding 10.57 0.4003
+91748 ELMSAN1 ELM2 and Myb/SANT domain containing 1 protein-coding 9.84 0.7395
+91749 MFSD4B major facilitator superfamily domain containing 4B protein-coding 6.483 0.8941
9175 MAP3K13 mitogen-activated protein kinase kinase kinase 13 protein-coding 5.48 1.504
-91750 LIN52 lin-52 DREAM MuvB core complex component protein-coding 6.824 0.838
-91752 ZNF804A zinc finger protein 804A protein-coding 3.185 1.952
-91754 NEK9 NIMA related kinase 9 protein-coding 10.7 0.5805
-91768 CABLES1 Cdk5 and Abl enzyme substrate 1 protein-coding 8.644 1.511
-91775 NXPE3 neurexophilin and PC-esterase domain family member 3 protein-coding 8.403 1.27
+91750 LIN52 lin-52 DREAM MuvB core complex component protein-coding 6.824 0.8376
+91752 ZNF804A zinc finger protein 804A protein-coding 3.187 1.952
+91754 NEK9 NIMA related kinase 9 protein-coding 10.7 0.5804
+91768 CABLES1 Cdk5 and Abl enzyme substrate 1 protein-coding 8.644 1.51
+91775 NXPE3 neurexophilin and PC-esterase domain family member 3 protein-coding 8.404 1.27
91782 CHMP7 charged multivesicular body protein 7 protein-coding 9.923 0.5211
-9179 AP4M1 adaptor related protein complex 4 mu 1 subunit protein-coding 8.669 0.6017
-9180 OSMR oncostatin M receptor protein-coding 9.134 1.884
-91801 ALKBH8 alkB homolog 8, tRNA methyltransferase protein-coding 7.445 0.6042
-91807 MYLK3 myosin light chain kinase 3 protein-coding 3.113 1.714
+9179 AP4M1 adaptor related protein complex 4 mu 1 subunit protein-coding 8.669 0.6016
+9180 OSMR oncostatin M receptor protein-coding 9.134 1.883
+91801 ALKBH8 alkB homolog 8, tRNA methyltransferase protein-coding 7.445 0.6041
+91807 MYLK3 myosin light chain kinase 3 protein-coding 3.114 1.715
9181 ARHGEF2 Rho/Rac guanine nucleotide exchange factor 2 protein-coding 10.53 1.025
-91828 EXOC3L4 exocyst complex component 3 like 4 protein-coding 4.039 2.669
-9183 ZW10 zw10 kinetochore protein protein-coding 8.622 0.5645
-91833 WDR20 WD repeat domain 20 protein-coding 8.691 0.4603
-9184 BUB3 BUB3, mitotic checkpoint protein protein-coding 10.89 0.6222
+91828 EXOC3L4 exocyst complex component 3 like 4 protein-coding 4.04 2.669
+9183 ZW10 zw10 kinetochore protein protein-coding 8.622 0.5643
+91833 WDR20 WD repeat domain 20 protein-coding 8.692 0.4601
+9184 BUB3 BUB3, mitotic checkpoint protein protein-coding 10.89 0.6221
9185 REPS2 RALBP1 associated Eps domain containing 2 protein-coding 8.548 1.74
-91851 CHRDL1 chordin like 1 protein-coding 5.925 3.296
-91860 CALML4 calmodulin like 4 protein-coding 8.589 1.055
-91862 MARVELD3 MARVEL domain containing 3 protein-coding 7.395 2.286
+91851 CHRDL1 chordin like 1 protein-coding 5.929 3.297
+91860 CALML4 calmodulin like 4 protein-coding 8.59 1.055
+91862 MARVELD3 MARVEL domain containing 3 protein-coding 7.394 2.287
91869 RFT1 RFT1 homolog protein-coding 9.015 0.4682
-9187 SLC24A1 solute carrier family 24 member 1 protein-coding 7.98 0.7734
-91875 TTC5 tetratricopeptide repeat domain 5 protein-coding 7.662 0.6333
+9187 SLC24A1 solute carrier family 24 member 1 protein-coding 7.981 0.7732
+91875 TTC5 tetratricopeptide repeat domain 5 protein-coding 7.662 0.633
9188 DDX21 DExD-box helicase 21 protein-coding 10.42 1.198
-9189 ZBED1 zinc finger BED-type containing 1 protein-coding 10.61 0.6414
-91893 FDXACB1 ferredoxin-fold anticodon binding domain containing 1 protein-coding 6.375 0.676
-919 CD247 CD247 molecule protein-coding 5.88 1.832
-9191 DEDD death effector domain containing protein-coding 9.755 0.4546
-91937 TIMD4 T cell immunoglobulin and mucin domain containing 4 protein-coding 2.541 2.22
-9194 SLC16A7 solute carrier family 16 member 7 protein-coding 4.442 1.886
-91942 NDUFAF2 NADH:ubiquinone oxidoreductase complex assembly factor 2 protein-coding 7.453 0.7652
-91947 ARRDC4 arrestin domain containing 4 protein-coding 9.083 1.158
-91948 LINC00923 long intergenic non-protein coding RNA 923 ncRNA 0.5619 0.8718
-91949 COG7 component of oligomeric golgi complex 7 protein-coding 9.227 0.4984
+9189 ZBED1 zinc finger BED-type containing 1 protein-coding 10.6 0.6414
+91893 FDXACB1 ferredoxin-fold anticodon binding domain containing 1 protein-coding 6.375 0.6758
+919 CD247 CD247 molecule protein-coding 5.881 1.833
+9191 DEDD death effector domain containing protein-coding 9.755 0.4545
+91937 TIMD4 T cell immunoglobulin and mucin domain containing 4 protein-coding 2.541 2.219
+9194 SLC16A7 solute carrier family 16 member 7 protein-coding 4.443 1.886
+91942 NDUFAF2 NADH:ubiquinone oxidoreductase complex assembly factor 2 protein-coding 7.452 0.765
+91947 ARRDC4 arrestin domain containing 4 protein-coding 9.083 1.157
+91948 LINC00923 long intergenic non-protein coding RNA 923 ncRNA 0.5624 0.8718
+91949 COG7 component of oligomeric golgi complex 7 protein-coding 9.227 0.4983
9196 KCNAB3 potassium voltage-gated channel subfamily A regulatory beta subunit 3 protein-coding 3.648 1.613
-91966 CXorf40A chromosome X open reading frame 40A protein-coding 8.62 0.6363
-9197 SLC33A1 solute carrier family 33 member 1 protein-coding 9.171 0.7233
-91975 ZNF300 zinc finger protein 300 protein-coding 6.518 1.719
-91977 MYOZ3 myozenin 3 protein-coding 3.586 1.732
-91978 TPGS1 tubulin polyglutamylase complex subunit 1 protein-coding 6.526 1.333
-92 ACVR2A activin A receptor type 2A protein-coding 8.275 0.6812
-920 CD4 CD4 molecule protein-coding 9.756 1.421
-9200 HACD1 3-hydroxyacyl-CoA dehydratase 1 protein-coding 5.338 1.814
-92002 CCNQ cyclin Q protein-coding 8.717 0.7053
-9201 DCLK1 doublecortin like kinase 1 protein-coding 6.919 2.7
-92014 SLC25A51 solute carrier family 25 member 51 protein-coding 7.401 0.5894
-92017 SNX29 sorting nexin 29 protein-coding 9.097 0.9659
-9202 ZMYM4 zinc finger MYM-type containing 4 protein-coding 10.26 0.5846
-9203 ZMYM3 zinc finger MYM-type containing 3 protein-coding 9.979 0.6415
-9204 ZMYM6 zinc finger MYM-type containing 6 protein-coding 8.65 0.4812
-9205 ZMYM5 zinc finger MYM-type containing 5 protein-coding 7.991 0.6385
-92070 CTBP1-DT CTBP1 divergent transcript ncRNA 8.514 0.587
-9208 LRRFIP1 LRR binding FLII interacting protein 1 protein-coding 11.21 0.786
-9209 LRRFIP2 LRR binding FLII interacting protein 2 protein-coding 9.867 0.5783
-92092 ZC3HAV1L zinc finger CCCH-type containing, antiviral 1 like protein-coding 4.973 1.599
-921 CD5 CD5 molecule protein-coding 5.92 2.052
+91966 CXorf40A chromosome X open reading frame 40A protein-coding 8.619 0.6361
+9197 SLC33A1 solute carrier family 33 member 1 protein-coding 9.171 0.7231
+91975 ZNF300 zinc finger protein 300 protein-coding 6.519 1.718
+91977 MYOZ3 myozenin 3 protein-coding 3.587 1.732
+91978 TPGS1 tubulin polyglutamylase complex subunit 1 protein-coding 6.527 1.333
+92 ACVR2A activin A receptor type 2A protein-coding 8.275 0.681
+920 CD4 CD4 molecule protein-coding 9.756 1.422
+9200 HACD1 3-hydroxyacyl-CoA dehydratase 1 protein-coding 5.339 1.814
+92002 CCNQ cyclin Q protein-coding 8.716 0.7052
+9201 DCLK1 doublecortin like kinase 1 protein-coding 6.921 2.699
+92014 SLC25A51 solute carrier family 25 member 51 protein-coding 7.401 0.5893
+92017 SNX29 sorting nexin 29 protein-coding 9.097 0.9656
+9202 ZMYM4 zinc finger MYM-type containing 4 protein-coding 10.26 0.5843
+9203 ZMYM3 zinc finger MYM-type containing 3 protein-coding 9.979 0.6412
+9204 ZMYM6 zinc finger MYM-type containing 6 protein-coding 8.651 0.4813
+9205 ZMYM5 zinc finger MYM-type containing 5 protein-coding 7.991 0.6383
+92070 CTBP1-DT CTBP1 divergent transcript ncRNA 8.514 0.5868
+9208 LRRFIP1 LRR binding FLII interacting protein 1 protein-coding 11.21 0.7857
+9209 LRRFIP2 LRR binding FLII interacting protein 2 protein-coding 9.868 0.5784
+92092 ZC3HAV1L zinc finger CCCH-type containing, antiviral 1 like protein-coding 4.973 1.598
+921 CD5 CD5 molecule protein-coding 5.922 2.052
92104 TTC30A tetratricopeptide repeat domain 30A protein-coding 7.647 1.073
-92105 INTS4 integrator complex subunit 4 protein-coding 8.99 0.4869
-92106 OXNAD1 oxidoreductase NAD binding domain containing 1 protein-coding 7.837 0.619
-9212 AURKB aurora kinase B protein-coding 7.329 2.294
-92126 DSEL dermatan sulfate epimerase like protein-coding 7.327 1.94
-9213 XPR1 xenotropic and polytropic retrovirus receptor 1 protein-coding 10.33 0.9684
-9214 FCMR Fc fragment of IgM receptor protein-coding 6.787 1.674
-92140 MTDH metadherin protein-coding 11.67 0.6373
+92105 INTS4 integrator complex subunit 4 protein-coding 8.99 0.4867
+92106 OXNAD1 oxidoreductase NAD binding domain containing 1 protein-coding 7.837 0.6189
+9212 AURKB aurora kinase B protein-coding 7.327 2.295
+92126 DSEL dermatan sulfate epimerase like protein-coding 7.328 1.94
+9213 XPR1 xenotropic and polytropic retrovirus receptor 1 protein-coding 10.33 0.9683
+9214 FCMR Fc fragment of IgM receptor protein-coding 6.788 1.675
+92140 MTDH metadherin protein-coding 11.67 0.6372
9215 LARGE1 LARGE xylosyl- and glucuronyltransferase 1 protein-coding 8.573 1.203
92154 MTSS1L MTSS1L, I-BAR domain containing protein-coding 10.37 1.464
-92162 TMEM88 transmembrane protein 88 protein-coding 5.507 1.408
-9217 VAPB VAMP associated protein B and C protein-coding 10.12 0.5016
-92170 MTG1 mitochondrial ribosome associated GTPase 1 protein-coding 9.132 0.7368
-9218 VAPA VAMP associated protein A protein-coding 11.61 0.5035
-92181 UBTD2 ubiquitin domain containing 2 protein-coding 9.351 0.5824
+92162 TMEM88 transmembrane protein 88 protein-coding 5.508 1.408
+9217 VAPB VAMP associated protein B and C protein-coding 10.12 0.5015
+92170 MTG1 mitochondrial ribosome associated GTPase 1 protein-coding 9.132 0.7366
+9218 VAPA VAMP associated protein A protein-coding 11.61 0.5033
+92181 UBTD2 ubiquitin domain containing 2 protein-coding 9.351 0.5821
9219 MTA2 metastasis associated 1 family member 2 protein-coding 11.08 0.5857
-92196 DAPL1 death associated protein like 1 protein-coding 3.832 3.35
-9220 TIAF1 TGFB1-induced anti-apoptotic factor 1 protein-coding 8.6 1.008
-9221 NOLC1 nucleolar and coiled-body phosphoprotein 1 protein-coding 11.21 0.6669
-92211 CDHR1 cadherin related family member 1 protein-coding 5.358 3.152
+92196 DAPL1 death associated protein like 1 protein-coding 3.833 3.349
+9220 TIAF1 TGFB1-induced anti-apoptotic factor 1 protein-coding 8.599 1.008
+9221 NOLC1 nucleolar and coiled-body phosphoprotein 1 protein-coding 11.2 0.6668
+92211 CDHR1 cadherin related family member 1 protein-coding 5.358 3.15
9223 MAGI1 membrane associated guanylate kinase, WW and PDZ domain containing 1 protein-coding 8.692 1.277
-92235 DUSP27 dual specificity phosphatase 27, atypical protein-coding 2.481 2.454
-92241 RCSD1 RCSD domain containing 1 protein-coding 7.701 1.416
-92249 LINC01278 long intergenic non-protein coding RNA 1278 ncRNA 8.75 0.9354
+92235 DUSP27 dual specificity phosphatase 27, atypical protein-coding 2.48 2.453
+92241 RCSD1 RCSD domain containing 1 protein-coding 7.702 1.417
+92249 LINC01278 long intergenic non-protein coding RNA 1278 ncRNA 8.75 0.9353
92255 LMBRD2 LMBR1 domain containing 2 protein-coding 7.023 1.205
-92259 MRPS36 mitochondrial ribosomal protein S36 protein-coding 8.627 0.6576
-92270 ATP6AP1L ATPase H+ transporting accessory protein 1 like protein-coding 5.151 1.153
-9228 DLGAP2 DLG associated protein 2 protein-coding 2.218 2.048
-92283 ZNF461 zinc finger protein 461 protein-coding 6.391 0.9671
-92285 ZNF585B zinc finger protein 585B protein-coding 5.83 1.096
-9229 DLGAP1 DLG associated protein 1 protein-coding 3.749 2.844
-92291 CAPN13 calpain 13 protein-coding 4.651 3.515
-92292 GLYATL1 glycine-N-acyltransferase like 1 protein-coding 3.643 3.596
-92293 TMEM132C transmembrane protein 132C protein-coding 2.988 2.81
-923 CD6 CD6 molecule protein-coding 6.532 1.868
-9230 RAB11B RAB11B, member RAS oncogene family protein-coding 11.23 0.6321
-92304 SCGB3A1 secretoglobin family 3A member 1 protein-coding 3.548 3.196
-92305 TMEM129 transmembrane protein 129 protein-coding 10.21 0.8237
+92259 MRPS36 mitochondrial ribosomal protein S36 protein-coding 8.627 0.6574
+92270 ATP6AP1L ATPase H+ transporting accessory protein 1 like protein-coding 5.151 1.152
+9228 DLGAP2 DLG associated protein 2 protein-coding 2.221 2.048
+92283 ZNF461 zinc finger protein 461 protein-coding 6.392 0.9669
+92285 ZNF585B zinc finger protein 585B protein-coding 5.831 1.096
+9229 DLGAP1 DLG associated protein 1 protein-coding 3.75 2.843
+92291 CAPN13 calpain 13 protein-coding 4.652 3.514
+92292 GLYATL1 glycine-N-acyltransferase like 1 protein-coding 3.644 3.595
+92293 TMEM132C transmembrane protein 132C protein-coding 2.992 2.813
+923 CD6 CD6 molecule protein-coding 6.533 1.869
+9230 RAB11B RAB11B, member RAS oncogene family protein-coding 11.23 0.632
+92304 SCGB3A1 secretoglobin family 3A member 1 protein-coding 3.551 3.198
+92305 TMEM129 transmembrane protein 129 protein-coding 10.21 0.8234
9231 DLG5 discs large MAGUK scaffold protein 5 protein-coding 10.8 1.008
-92312 MEX3A mex-3 RNA binding family member A protein-coding 8.06 1.92
-9232 PTTG1 pituitary tumor-transforming 1 protein-coding 8.63 1.782
-92335 STRADA STE20-related kinase adaptor alpha protein-coding 9.265 0.6162
+92312 MEX3A mex-3 RNA binding family member A protein-coding 8.058 1.92
+9232 PTTG1 pituitary tumor-transforming 1 protein-coding 8.628 1.783
+92335 STRADA STE20-related kinase adaptor alpha protein-coding 9.266 0.616
92340 PRR29 proline rich 29 protein-coding 5.359 1.783
-92342 METTL18 methyltransferase like 18 protein-coding 7.32 0.648
-92344 GORAB golgin, RAB6 interacting protein-coding 7.912 0.7729
-92345 NAF1 nuclear assembly factor 1 ribonucleoprotein protein-coding 7.327 0.6032
+92342 METTL18 methyltransferase like 18 protein-coding 7.32 0.6477
+92344 GORAB golgin, RAB6 interacting protein-coding 7.912 0.7726
+92345 NAF1 nuclear assembly factor 1 ribonucleoprotein protein-coding 7.327 0.603
9235 IL32 interleukin 32 protein-coding 10.49 2.126
92359 CRB3 crumbs 3, cell polarity complex component protein-coding 7.39 2.752
-9236 CCPG1 cell cycle progression 1 protein-coding 10.6 0.9526
-92369 SPSB4 splA/ryanodine receptor domain and SOCS box containing 4 protein-coding 3.187 2.605
+9236 CCPG1 cell cycle progression 1 protein-coding 10.61 0.9526
+92369 SPSB4 splA/ryanodine receptor domain and SOCS box containing 4 protein-coding 3.188 2.604
92370 PXYLP1 2-phosphoxylose phosphatase 1 protein-coding 8.584 1.106
-9238 TBRG4 transforming growth factor beta regulator 4 protein-coding 10.44 0.7105
-92399 MRRF mitochondrial ribosome recycling factor protein-coding 8.98 0.6465
-924 CD7 CD7 molecule protein-coding 6.442 2.013
+9238 TBRG4 transforming growth factor beta regulator 4 protein-coding 10.44 0.7107
+92399 MRRF mitochondrial ribosome recycling factor protein-coding 8.979 0.6464
+924 CD7 CD7 molecule protein-coding 6.443 2.013
9240 PNMA1 PNMA family member 1 protein-coding 9.978 1.145
-92400 RBM18 RNA binding motif protein 18 protein-coding 9.213 0.5752
-9241 NOG noggin protein-coding 3.093 2.327
-9242 MSC musculin protein-coding 7.016 2.081
-92421 CHMP4C charged multivesicular body protein 4C protein-coding 7.695 2.678
-9244 CRLF1 cytokine receptor like factor 1 protein-coding 5.493 2.978
-9245 GCNT3 glucosaminyl (N-acetyl) transferase 3, mucin type protein-coding 5.266 3.631
-9246 UBE2L6 ubiquitin conjugating enzyme E2 L6 protein-coding 10.77 1.026
-92482 BBIP1 BBSome interacting protein 1 protein-coding 7.878 0.7308
-92483 LDHAL6B lactate dehydrogenase A like 6B protein-coding 1.098 0.8916
+92400 RBM18 RNA binding motif protein 18 protein-coding 9.213 0.575
+9241 NOG noggin protein-coding 3.094 2.326
+9242 MSC musculin protein-coding 7.016 2.08
+92421 CHMP4C charged multivesicular body protein 4C protein-coding 7.694 2.678
+9244 CRLF1 cytokine receptor like factor 1 protein-coding 5.493 2.977
+9245 GCNT3 glucosaminyl (N-acetyl) transferase 3, mucin type protein-coding 5.267 3.632
+9246 UBE2L6 ubiquitin conjugating enzyme E2 L6 protein-coding 10.77 1.025
+92482 BBIP1 BBSome interacting protein 1 protein-coding 7.878 0.7306
+92483 LDHAL6B lactate dehydrogenase A like 6B protein-coding 1.098 0.8917
9249 DHRS3 dehydrogenase/reductase 3 protein-coding 10.75 1.49
-925 CD8A CD8a molecule protein-coding 6.919 2.107
-9252 RPS6KA5 ribosomal protein S6 kinase A5 protein-coding 6.805 1.339
+925 CD8A CD8a molecule protein-coding 6.92 2.107
+9252 RPS6KA5 ribosomal protein S6 kinase A5 protein-coding 6.806 1.339
92521 SPECC1 sperm antigen with calponin homology and coiled-coil domains 1 protein-coding 8.837 1.375
-9253 NUMBL NUMB like, endocytic adaptor protein protein-coding 8.717 1.089
-9254 CACNA2D2 calcium voltage-gated channel auxiliary subunit alpha2delta 2 protein-coding 6.135 2.383
-9255 AIMP1 aminoacyl tRNA synthetase complex interacting multifunctional protein 1 protein-coding 10.05 0.4077
-92558 BICDL1 BICD family like cargo adaptor 1 protein-coding 8.313 1.735
-9256 TSPOAP1 TSPO associated protein 1 protein-coding 7.952 1.838
-92565 FANK1 fibronectin type III and ankyrin repeat domains 1 protein-coding 5.821 1.779
-92579 G6PC3 glucose-6-phosphatase catalytic subunit 3 protein-coding 10.39 0.8678
-9258 MFHAS1 malignant fibrous histiocytoma amplified sequence 1 protein-coding 8.326 1.423
-92591 ASB16 ankyrin repeat and SOCS box containing 16 protein-coding 4.06 1.111
-92595 ZNF764 zinc finger protein 764 protein-coding 7.593 0.5155
-92597 MOB1B MOB kinase activator 1B protein-coding 9.416 0.8111
-926 CD8B CD8b molecule protein-coding 5.219 2.24
+9253 NUMBL NUMB like, endocytic adaptor protein protein-coding 8.718 1.089
+9254 CACNA2D2 calcium voltage-gated channel auxiliary subunit alpha2delta 2 protein-coding 6.137 2.383
+9255 AIMP1 aminoacyl tRNA synthetase complex interacting multifunctional protein 1 protein-coding 10.05 0.4076
+92558 BICDL1 BICD family like cargo adaptor 1 protein-coding 8.313 1.734
+9256 TSPOAP1 TSPO associated protein 1 protein-coding 7.954 1.838
+92565 FANK1 fibronectin type III and ankyrin repeat domains 1 protein-coding 5.822 1.779
+92579 G6PC3 glucose-6-phosphatase catalytic subunit 3 protein-coding 10.39 0.8675
+9258 MFHAS1 malignant fibrous histiocytoma amplified sequence 1 protein-coding 8.326 1.422
+92591 ASB16 ankyrin repeat and SOCS box containing 16 protein-coding 4.061 1.112
+92595 ZNF764 zinc finger protein 764 protein-coding 7.593 0.5152
+92597 MOB1B MOB kinase activator 1B protein-coding 9.416 0.8109
+926 CD8B CD8b molecule protein-coding 5.22 2.24
9260 PDLIM7 PDZ and LIM domain 7 protein-coding 9.962 1.195
-92609 TIMM50 translocase of inner mitochondrial membrane 50 protein-coding 10.02 0.6856
+92609 TIMM50 translocase of inner mitochondrial membrane 50 protein-coding 10.02 0.6857
9261 MAPKAPK2 mitogen-activated protein kinase-activated protein kinase 2 protein-coding 11.54 0.6506
92610 TIFA TRAF interacting protein with forkhead associated domain protein-coding 7.973 1.022
-9262 STK17B serine/threonine kinase 17b protein-coding 9.375 1.275
-9263 STK17A serine/threonine kinase 17a protein-coding 9.354 0.9928
-9265 CYTH3 cytohesin 3 protein-coding 9.563 0.9518
-92659 MAFG-DT MAFG divergent transcript ncRNA 6.373 1.206
-9266 CYTH2 cytohesin 2 protein-coding 10.62 0.5864
-92667 MGME1 mitochondrial genome maintenance exonuclease 1 protein-coding 8.942 0.6946
-9267 CYTH1 cytohesin 1 protein-coding 10.19 0.6305
-92675 DTD1 D-tyrosyl-tRNA deacylase 1 protein-coding 9.268 0.8201
-92689 FAM114A1 family with sequence similarity 114 member A1 protein-coding 8.607 1.335
-92691 TMEM169 transmembrane protein 169 protein-coding 4.618 1.963
-9270 ITGB1BP1 integrin subunit beta 1 binding protein 1 protein-coding 9.84 0.5544
-92703 TMEM183A transmembrane protein 183A protein-coding 10.19 0.5598
-92714 ARRDC1 arrestin domain containing 1 protein-coding 9.864 0.9183
-92715 DPH7 diphthamide biosynthesis 7 protein-coding 8.614 0.72
-9274 BCL7C BCL tumor suppressor 7C protein-coding 9.6 0.8428
+9262 STK17B serine/threonine kinase 17b protein-coding 9.376 1.276
+9263 STK17A serine/threonine kinase 17a protein-coding 9.354 0.9927
+9265 CYTH3 cytohesin 3 protein-coding 9.564 0.9517
+92659 MAFG-DT MAFG divergent transcript ncRNA 6.372 1.205
+9266 CYTH2 cytohesin 2 protein-coding 10.62 0.5863
+92667 MGME1 mitochondrial genome maintenance exonuclease 1 protein-coding 8.942 0.6947
+9267 CYTH1 cytohesin 1 protein-coding 10.19 0.6309
+92675 DTD1 D-tyrosyl-tRNA deacylase 1 protein-coding 9.268 0.82
+92689 FAM114A1 family with sequence similarity 114 member A1 protein-coding 8.608 1.334
+92691 TMEM169 transmembrane protein 169 protein-coding 4.619 1.962
+9270 ITGB1BP1 integrin subunit beta 1 binding protein 1 protein-coding 9.84 0.5542
+92703 TMEM183A transmembrane protein 183A protein-coding 10.19 0.5597
+92714 ARRDC1 arrestin domain containing 1 protein-coding 9.864 0.918
+92715 DPH7 diphthamide biosynthesis 7 protein-coding 8.614 0.7199
+9274 BCL7C BCL tumor suppressor 7C protein-coding 9.599 0.8424
92745 SLC38A5 solute carrier family 38 member 5 protein-coding 7.54 2.715
-9275 BCL7B BCL tumor suppressor 7B protein-coding 10.11 0.4642
-9276 COPB2 coatomer protein complex subunit beta 2 protein-coding 11.78 0.6019
-9277 WDR46 WD repeat domain 46 protein-coding 10.06 0.6068
-9278 ZBTB22 zinc finger and BTB domain containing 22 protein-coding 9.145 0.6082
-92797 HELB DNA helicase B protein-coding 4.632 1.286
-92799 SHKBP1 SH3KBP1 binding protein 1 protein-coding 10.32 0.809
+9275 BCL7B BCL tumor suppressor 7B protein-coding 10.11 0.464
+9276 COPB2 coatomer protein complex subunit beta 2 protein-coding 11.78 0.6018
+9277 WDR46 WD repeat domain 46 protein-coding 10.06 0.6067
+9278 ZBTB22 zinc finger and BTB domain containing 22 protein-coding 9.145 0.6081
+92797 HELB DNA helicase B protein-coding 4.633 1.286
+92799 SHKBP1 SH3KBP1 binding protein 1 protein-coding 10.32 0.8087
928 CD9 CD9 molecule protein-coding 12.55 1.448
-92806 CENPBD1 CENPB DNA-binding domain containing 1 protein-coding 8.094 0.6568
-92815 HIST3H2A histone cluster 3 H2A protein-coding 5.546 1.993
-9282 MED14 mediator complex subunit 14 protein-coding 10.24 0.6526
-92822 ZNF276 zinc finger protein 276 protein-coding 9.013 0.7535
-9283 GPR37L1 G protein-coupled receptor 37 like 1 protein-coding 3.498 2.765
+92806 CENPBD1 CENPB DNA-binding domain containing 1 protein-coding 8.094 0.6567
+92815 HIST3H2A histone cluster 3 H2A protein-coding 5.546 1.992
+9282 MED14 mediator complex subunit 14 protein-coding 10.24 0.6524
+92822 ZNF276 zinc finger protein 276 protein-coding 9.014 0.7535
+9283 GPR37L1 G protein-coupled receptor 37 like 1 protein-coding 3.497 2.764
9284 NPIPA1 nuclear pore complex interacting protein family member A1 protein-coding 9.366 0.9273
92840 REEP6 receptor accessory protein 6 protein-coding 8.264 2.183
-92856 IMP4 IMP4, U3 small nucleolar ribonucleoprotein protein-coding 9.611 0.5739
+92856 IMP4 IMP4, U3 small nucleolar ribonucleoprotein protein-coding 9.61 0.574
9289 ADGRG1 adhesion G protein-coupled receptor G1 protein-coding 11.81 1.697
929 CD14 CD14 molecule protein-coding 10.25 1.496
-9290 GPR55 G protein-coupled receptor 55 protein-coding 3.354 1.563
-92906 HNRNPLL heterogeneous nuclear ribonucleoprotein L like protein-coding 9.221 0.5091
-92912 UBE2Q2 ubiquitin conjugating enzyme E2 Q2 protein-coding 9.788 0.7279
+9290 GPR55 G protein-coupled receptor 55 protein-coding 3.355 1.563
+92906 HNRNPLL heterogeneous nuclear ribonucleoprotein L like protein-coding 9.221 0.5089
+92912 UBE2Q2 ubiquitin conjugating enzyme E2 Q2 protein-coding 9.788 0.7278
92922 CCDC102A coiled-coil domain containing 102A protein-coding 7.273 1.127
-92935 MARS2 methionyl-tRNA synthetase 2, mitochondrial protein-coding 7.559 0.8748
+92935 MARS2 methionyl-tRNA synthetase 2, mitochondrial protein-coding 7.559 0.8747
9294 S1PR2 sphingosine-1-phosphate receptor 2 protein-coding 7.928 1.077
-92949 ADAMTSL1 ADAMTS like 1 protein-coding 5.901 1.953
-9295 SRSF11 serine and arginine rich splicing factor 11 protein-coding 11.25 0.6396
-9296 ATP6V1F ATPase H+ transporting V1 subunit F protein-coding 11.06 0.6851
+92949 ADAMTSL1 ADAMTS like 1 protein-coding 5.902 1.954
+9295 SRSF11 serine and arginine rich splicing factor 11 protein-coding 11.25 0.6395
+9296 ATP6V1F ATPase H+ transporting V1 subunit F protein-coding 11.06 0.6852
92960 PEX11G peroxisomal biogenesis factor 11 gamma protein-coding 6.238 1.123
-92973 LINC00950 long intergenic non-protein coding RNA 950 ncRNA 4.739 1.799
-92979 MARCH9 membrane associated ring-CH-type finger 9 protein-coding 8.803 0.933
+92973 LINC00950 long intergenic non-protein coding RNA 950 ncRNA 4.74 1.799
+92979 MARCH9 membrane associated ring-CH-type finger 9 protein-coding 8.803 0.9326
92999 ZBTB47 zinc finger and BTB domain containing 47 protein-coding 8.926 1.253
-93 ACVR2B activin A receptor type 2B protein-coding 8.206 0.9524
-930 CD19 CD19 molecule protein-coding 3.016 2.499
-93010 B3GNT7 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 7 protein-coding 7.658 2.068
-93034 NT5C1B 5'-nucleotidase, cytosolic IB protein-coding 1.404 0.9219
-93035 PKHD1L1 PKHD1 like 1 protein-coding 2.738 2.671
-93058 COQ10A coenzyme Q10A protein-coding 7.325 0.995
-9306 SOCS6 suppressor of cytokine signaling 6 protein-coding 9.295 0.7964
+93 ACVR2B activin A receptor type 2B protein-coding 8.206 0.9523
+930 CD19 CD19 molecule protein-coding 3.018 2.499
+93010 B3GNT7 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 7 protein-coding 7.66 2.068
+93034 NT5C1B 5'-nucleotidase, cytosolic IB protein-coding 1.404 0.9216
+93035 PKHD1L1 PKHD1 like 1 protein-coding 2.741 2.673
+93058 COQ10A coenzyme Q10A protein-coding 7.325 0.9947
+9306 SOCS6 suppressor of cytokine signaling 6 protein-coding 9.295 0.7962
9308 CD83 CD83 molecule protein-coding 8.336 1.126
-93081 TEX30 testis expressed 30 protein-coding 7.443 0.928
-93082 NEURL3 neuralized E3 ubiquitin protein ligase 3 protein-coding 4.136 2.04
-931 MS4A1 membrane spanning 4-domains A1 protein-coding 4.17 2.925
-9310 ZNF235 zinc finger protein 235 protein-coding 6.208 0.7273
-93100 NAPRT nicotinate phosphoribosyltransferase protein-coding 9.96 1.391
-93109 TMEM44 transmembrane protein 44 protein-coding 7.988 1.023
-9311 ASIC3 acid sensing ion channel subunit 3 protein-coding 4.096 1.895
-93129 ORAI3 ORAI calcium release-activated calcium modulator 3 protein-coding 9.27 0.9579
-93134 ZNF561 zinc finger protein 561 protein-coding 9.29 0.5933
-9314 KLF4 Kruppel like factor 4 protein-coding 9.177 1.716
-93145 OLFM2 olfactomedin 2 protein-coding 8.269 2.15
-9315 NREP neuronal regeneration related protein protein-coding 10.12 1.268
+93081 TEX30 testis expressed 30 protein-coding 7.442 0.9283
+93082 NEURL3 neuralized E3 ubiquitin protein ligase 3 protein-coding 4.137 2.041
+931 MS4A1 membrane spanning 4-domains A1 protein-coding 4.173 2.927
+9310 ZNF235 zinc finger protein 235 protein-coding 6.209 0.7273
+93100 NAPRT nicotinate phosphoribosyltransferase protein-coding 9.959 1.391
+93109 TMEM44 transmembrane protein 44 protein-coding 7.987 1.022
+9311 ASIC3 acid sensing ion channel subunit 3 protein-coding 4.097 1.895
+93129 ORAI3 ORAI calcium release-activated calcium modulator 3 protein-coding 9.27 0.9576
+93134 ZNF561 zinc finger protein 561 protein-coding 9.29 0.5932
+9314 KLF4 Kruppel like factor 4 protein-coding 9.178 1.715
+93145 OLFM2 olfactomedin 2 protein-coding 8.268 2.149
+9315 NREP neuronal regeneration related protein protein-coding 10.12 1.267
93164 HTR7P1 5-hydroxytryptamine receptor 7 pseudogene 1 pseudo 6.169 1.06
-93166 PRDM6 PR/SET domain 6 protein-coding 4.1 1.705
-9317 PTER phosphotriesterase related protein-coding 8.236 1.312
-9318 COPS2 COP9 signalosome subunit 2 protein-coding 10.51 0.5068
-93183 PIGM phosphatidylinositol glycan anchor biosynthesis class M protein-coding 8.728 0.72
+93166 PRDM6 PR/SET domain 6 protein-coding 4.101 1.705
+9317 PTER phosphotriesterase related protein-coding 8.236 1.311
+9318 COPS2 COP9 signalosome subunit 2 protein-coding 10.51 0.5067
+93183 PIGM phosphatidylinositol glycan anchor biosynthesis class M protein-coding 8.727 0.7199
93185 IGSF8 immunoglobulin superfamily member 8 protein-coding 10.57 0.8716
-9319 TRIP13 thyroid hormone receptor interactor 13 protein-coding 7.77 1.837
-9320 TRIP12 thyroid hormone receptor interactor 12 protein-coding 11.39 0.5733
-9321 TRIP11 thyroid hormone receptor interactor 11 protein-coding 9.357 0.7945
-93210 PGAP3 post-GPI attachment to proteins 3 protein-coding 9.831 0.9716
+9319 TRIP13 thyroid hormone receptor interactor 13 protein-coding 7.768 1.838
+9320 TRIP12 thyroid hormone receptor interactor 12 protein-coding 11.39 0.5732
+9321 TRIP11 thyroid hormone receptor interactor 11 protein-coding 9.358 0.7943
+93210 PGAP3 post-GPI attachment to proteins 3 protein-coding 9.831 0.9714
9322 TRIP10 thyroid hormone receptor interactor 10 protein-coding 9.955 1.05
-93233 CCDC114 coiled-coil domain containing 114 protein-coding 4.075 1.829
-9324 HMGN3 high mobility group nucleosomal binding domain 3 protein-coding 10.24 0.8589
-9325 TRIP4 thyroid hormone receptor interactor 4 protein-coding 8.946 0.6101
+93233 CCDC114 coiled-coil domain containing 114 protein-coding 4.076 1.829
+9324 HMGN3 high mobility group nucleosomal binding domain 3 protein-coding 10.24 0.859
+9325 TRIP4 thyroid hormone receptor interactor 4 protein-coding 8.946 0.6099
9326 ZNHIT3 zinc finger HIT-type containing 3 protein-coding 9.242 0.4564
-9328 GTF3C5 general transcription factor IIIC subunit 5 protein-coding 10.35 0.6352
-9329 GTF3C4 general transcription factor IIIC subunit 4 protein-coding 8.428 0.9183
-933 CD22 CD22 molecule protein-coding 5.806 2.248
-9330 GTF3C3 general transcription factor IIIC subunit 3 protein-coding 9.163 0.6126
+9328 GTF3C5 general transcription factor IIIC subunit 5 protein-coding 10.35 0.635
+9329 GTF3C4 general transcription factor IIIC subunit 4 protein-coding 8.428 0.9179
+933 CD22 CD22 molecule protein-coding 5.808 2.249
+9330 GTF3C3 general transcription factor IIIC subunit 3 protein-coding 9.163 0.6124
9331 B4GALT6 beta-1,4-galactosyltransferase 6 protein-coding 6.819 1.42
9332 CD163 CD163 molecule protein-coding 8.851 1.96
-93323 HAUS8 HAUS augmin like complex subunit 8 protein-coding 7.268 0.9532
+93323 HAUS8 HAUS augmin like complex subunit 8 protein-coding 7.267 0.953
9333 TGM5 transglutaminase 5 protein-coding 2.034 2.312
-9334 B4GALT5 beta-1,4-galactosyltransferase 5 protein-coding 10.96 0.9199
-93343 MVB12A multivesicular body subunit 12A protein-coding 9.374 0.7393
+9334 B4GALT5 beta-1,4-galactosyltransferase 5 protein-coding 10.96 0.9198
+93343 MVB12A multivesicular body subunit 12A protein-coding 9.373 0.7393
93349 SP140L SP140 nuclear body protein like protein-coding 8.078 1.254
-9337 CNOT8 CCR4-NOT transcription complex subunit 8 protein-coding 10.24 0.5351
-9338 TCEAL1 transcription elongation factor A like 1 protein-coding 8.35 1.016
-93380 MMGT1 membrane magnesium transporter 1 protein-coding 9.61 0.65
-9341 VAMP3 vesicle associated membrane protein 3 protein-coding 11.01 0.547
-9342 SNAP29 synaptosome associated protein 29 protein-coding 9.892 0.4774
+9337 CNOT8 CCR4-NOT transcription complex subunit 8 protein-coding 10.24 0.5349
+9338 TCEAL1 transcription elongation factor A like 1 protein-coding 8.351 1.015
+93380 MMGT1 membrane magnesium transporter 1 protein-coding 9.61 0.6498
+9341 VAMP3 vesicle associated membrane protein 3 protein-coding 11.01 0.5468
+9342 SNAP29 synaptosome associated protein 29 protein-coding 9.892 0.4772
93426 SYCE1 synaptonemal complex central element protein 1 protein-coding 1.79 2.396
-9343 EFTUD2 elongation factor Tu GTP binding domain containing 2 protein-coding 11.13 0.5594
-93436 ARMC6 armadillo repeat containing 6 protein-coding 9.627 0.621
-9344 TAOK2 TAO kinase 2 protein-coding 10.6 0.5268
-93474 ZNF670 zinc finger protein 670 protein-coding 6.092 0.843
-9348 NDST3 N-deacetylase and N-sulfotransferase 3 protein-coding 2.004 1.865
-93487 MAPK1IP1L mitogen-activated protein kinase 1 interacting protein 1 like protein-coding 10.89 0.4513
-9349 RPL23 ribosomal protein L23 protein-coding 13.47 0.7916
-93492 TPTE2 transmembrane phosphoinositide 3-phosphatase and tensin homolog 2 protein-coding 0.8697 1.064
+9343 EFTUD2 elongation factor Tu GTP binding domain containing 2 protein-coding 11.13 0.5596
+93436 ARMC6 armadillo repeat containing 6 protein-coding 9.626 0.6209
+9344 TAOK2 TAO kinase 2 protein-coding 10.6 0.5267
+93474 ZNF670 zinc finger protein 670 protein-coding 6.092 0.8426
+9348 NDST3 N-deacetylase and N-sulfotransferase 3 protein-coding 2.004 1.864
+93487 MAPK1IP1L mitogen-activated protein kinase 1 interacting protein 1 like protein-coding 10.89 0.4512
+9349 RPL23 ribosomal protein L23 protein-coding 13.47 0.7913
+93492 TPTE2 transmembrane phosphoinositide 3-phosphatase and tensin homolog 2 protein-coding 0.8701 1.064
9351 SLC9A3R2 SLC9A3 regulator 2 protein-coding 10.33 1.205
-93517 SDR42E1 short chain dehydrogenase/reductase family 42E, member 1 protein-coding 6.062 2.635
-9352 TXNL1 thioredoxin like 1 protein-coding 10.39 0.5714
-9353 SLIT2 slit guidance ligand 2 protein-coding 6.251 2.446
-9354 UBE4A ubiquitination factor E4A protein-coding 10.52 0.4889
-9355 LHX2 LIM homeobox 2 protein-coding 3.056 2.726
-93550 ZFAND4 zinc finger AN1-type containing 4 protein-coding 6.816 0.8932
-93556 EGFEM1P EGF like and EMI domain containing 1, pseudogene pseudo 0.9455 1.402
-9358 ITGBL1 integrin subunit beta like 1 protein-coding 6.886 2.55
-93587 TRMT10A tRNA methyltransferase 10A protein-coding 6.976 0.7089
-93589 CACNA2D4 calcium voltage-gated channel auxiliary subunit alpha2delta 4 protein-coding 5.179 1.261
-93594 TBC1D31 TBC1 domain family member 31 protein-coding 7.306 0.9067
-9360 PPIG peptidylprolyl isomerase G protein-coding 10.07 0.6643
-9361 LONP1 lon peptidase 1, mitochondrial protein-coding 11.11 0.6823
+93517 SDR42E1 short chain dehydrogenase/reductase family 42E, member 1 protein-coding 6.063 2.634
+9352 TXNL1 thioredoxin like 1 protein-coding 10.39 0.5715
+9353 SLIT2 slit guidance ligand 2 protein-coding 6.254 2.446
+9354 UBE4A ubiquitination factor E4A protein-coding 10.52 0.4887
+9355 LHX2 LIM homeobox 2 protein-coding 3.054 2.726
+93550 ZFAND4 zinc finger AN1-type containing 4 protein-coding 6.816 0.893
+93556 EGFEM1P EGF like and EMI domain containing 1, pseudogene pseudo 0.9453 1.402
+9358 ITGBL1 integrin subunit beta like 1 protein-coding 6.887 2.55
+93587 TRMT10A tRNA methyltransferase 10A protein-coding 6.976 0.7087
+93589 CACNA2D4 calcium voltage-gated channel auxiliary subunit alpha2delta 4 protein-coding 5.18 1.261
+93594 TBC1D31 TBC1 domain family member 31 protein-coding 7.305 0.9067
+9360 PPIG peptidylprolyl isomerase G protein-coding 10.07 0.6641
+9361 LONP1 lon peptidase 1, mitochondrial protein-coding 11.11 0.6821
93611 FBXO44 F-box protein 44 protein-coding 8.873 1.078
-9362 CPNE6 copine 6 protein-coding 1.591 2.382
-93621 MRFAP1 Morf4 family associated protein 1 protein-coding 12.58 0.5208
-93622 LOC93622 Morf4 family associated protein 1 like 1 pseudogene pseudo 8.384 0.7266
-93624 TADA2B transcriptional adaptor 2B protein-coding 9.579 0.5423
-93627 TBCK TBC1 domain containing kinase protein-coding 8.582 0.6758
+9362 CPNE6 copine 6 protein-coding 1.593 2.383
+93621 MRFAP1 Morf4 family associated protein 1 protein-coding 12.58 0.5206
+93622 LOC93622 Morf4 family associated protein 1 like 1 pseudogene pseudo 8.384 0.7263
+93624 TADA2B transcriptional adaptor 2B protein-coding 9.58 0.5422
+93627 TBCK TBC1 domain containing kinase protein-coding 8.582 0.6756
9363 RAB33A RAB33A, member RAS oncogene family protein-coding 4.354 1.818
-9364 RAB28 RAB28, member RAS oncogene family protein-coding 8.188 0.5602
-93643 TJAP1 tight junction associated protein 1 protein-coding 9.43 0.5556
-9365 KL klotho protein-coding 5.338 2.469
-93653 ST7-AS1 ST7 antisense RNA 1 ncRNA 5.102 1.18
-93655 ST7-OT3 ST7 overlapping transcript 3 ncRNA 1.437 0.943
-93663 ARHGAP18 Rho GTPase activating protein 18 protein-coding 9.113 1.206
-93664 CADPS2 calcium dependent secretion activator 2 protein-coding 8.914 1.446
-9367 RAB9A RAB9A, member RAS oncogene family protein-coding 8.775 0.6037
+9364 RAB28 RAB28, member RAS oncogene family protein-coding 8.188 0.56
+93643 TJAP1 tight junction associated protein 1 protein-coding 9.43 0.5553
+9365 KL klotho protein-coding 5.34 2.47
+93653 ST7-AS1 ST7 antisense RNA 1 ncRNA 5.102 1.179
+93655 ST7-OT3 ST7 overlapping transcript 3 ncRNA 1.437 0.9429
+93663 ARHGAP18 Rho GTPase activating protein 18 protein-coding 9.114 1.206
+93664 CADPS2 calcium dependent secretion activator 2 protein-coding 8.915 1.446
+9367 RAB9A RAB9A, member RAS oncogene family protein-coding 8.775 0.6036
9368 SLC9A3R1 SLC9A3 regulator 1 protein-coding 11.08 1.394
-9369 NRXN3 neurexin 3 protein-coding 5.881 2.395
-9371 KIF3B kinesin family member 3B protein-coding 10.75 0.6341
-9372 ZFYVE9 zinc finger FYVE-type containing 9 protein-coding 9.046 0.8132
-9373 PLAA phospholipase A2 activating protein protein-coding 9.598 0.6142
-9374 PPT2 palmitoyl-protein thioesterase 2 protein-coding 8.675 0.8539
-9375 TM9SF2 transmembrane 9 superfamily member 2 protein-coding 11.69 0.8485
-9377 COX5A cytochrome c oxidase subunit 5A protein-coding 10.78 0.7247
-9378 NRXN1 neurexin 1 protein-coding 3.061 3.321
-9379 NRXN2 neurexin 2 protein-coding 6.689 2.664
-9380 GRHPR glyoxylate and hydroxypyruvate reductase protein-coding 10.72 0.7728
+9369 NRXN3 neurexin 3 protein-coding 5.883 2.395
+9371 KIF3B kinesin family member 3B protein-coding 10.75 0.634
+9372 ZFYVE9 zinc finger FYVE-type containing 9 protein-coding 9.046 0.813
+9373 PLAA phospholipase A2 activating protein protein-coding 9.598 0.614
+9374 PPT2 palmitoyl-protein thioesterase 2 protein-coding 8.675 0.8537
+9375 TM9SF2 transmembrane 9 superfamily member 2 protein-coding 11.69 0.8481
+9377 COX5A cytochrome c oxidase subunit 5A protein-coding 10.78 0.7249
+9378 NRXN1 neurexin 1 protein-coding 3.064 3.321
+9379 NRXN2 neurexin 2 protein-coding 6.69 2.664
+9380 GRHPR glyoxylate and hydroxypyruvate reductase protein-coding 10.72 0.7725
9381 OTOF otoferlin protein-coding 2.674 1.776
-9382 COG1 component of oligomeric golgi complex 1 protein-coding 9.712 0.5178
-9383 TSIX TSIX transcript, XIST antisense RNA ncRNA 4.248 3.827
-9388 LIPG lipase G, endothelial type protein-coding 7.158 2.495
-9389 SLC22A14 solute carrier family 22 member 14 protein-coding 0.9505 0.9172
-939 CD27 CD27 molecule protein-coding 6.248 2.082
-9390 SLC22A13 solute carrier family 22 member 13 protein-coding 0.8544 1.206
-9391 CIAO1 cytosolic iron-sulfur assembly component 1 protein-coding 10.9 0.3476
-9392 TGFBRAP1 transforming growth factor beta receptor associated protein 1 protein-coding 7.905 1.282
-9394 HS6ST1 heparan sulfate 6-O-sulfotransferase 1 protein-coding 10.27 0.9895
-93953 GCNA germ cell nuclear acidic peptidase protein-coding 4.341 1.19
-9397 NMT2 N-myristoyltransferase 2 protein-coding 8.195 0.8858
-93973 ACTR8 ARP8 actin related protein 8 homolog protein-coding 8.706 0.4897
-93974 ATP5IF1 ATP synthase inhibitory factor subunit 1 protein-coding 10.86 0.7527
-93978 CLEC6A C-type lectin domain containing 6A protein-coding 0.8764 1.206
+9382 COG1 component of oligomeric golgi complex 1 protein-coding 9.712 0.5177
+9383 TSIX TSIX transcript, XIST antisense RNA ncRNA 4.247 3.826
+9388 LIPG lipase G, endothelial type protein-coding 7.158 2.497
+9389 SLC22A14 solute carrier family 22 member 14 protein-coding 0.9502 0.9169
+939 CD27 CD27 molecule protein-coding 6.249 2.082
+9390 SLC22A13 solute carrier family 22 member 13 protein-coding 0.8539 1.205
+9391 CIAO1 cytosolic iron-sulfur assembly component 1 protein-coding 10.9 0.3475
+9392 TGFBRAP1 transforming growth factor beta receptor associated protein 1 protein-coding 7.906 1.281
+9394 HS6ST1 heparan sulfate 6-O-sulfotransferase 1 protein-coding 10.27 0.9896
+93953 GCNA germ cell nuclear acidic peptidase protein-coding 4.341 1.191
+9397 NMT2 N-myristoyltransferase 2 protein-coding 8.195 0.8856
+93973 ACTR8 ARP8 actin related protein 8 homolog protein-coding 8.706 0.4895
+93974 ATP5IF1 ATP synthase inhibitory factor subunit 1 protein-coding 10.86 0.7526
+93978 CLEC6A C-type lectin domain containing 6A protein-coding 0.8772 1.207
9398 CD101 CD101 molecule protein-coding 5.253 1.23
-93986 FOXP2 forkhead box P2 protein-coding 3.889 2.403
-9399 STOML1 stomatin like 1 protein-coding 8.484 0.832
-94 ACVRL1 activin A receptor like type 1 protein-coding 8.749 1.151
-940 CD28 CD28 molecule protein-coding 5.062 1.788
-9400 RECQL5 RecQ like helicase 5 protein-coding 9.317 0.6613
-94005 PIGS phosphatidylinositol glycan anchor biosynthesis class S protein-coding 10.33 0.6924
-94009 SERHL serine hydrolase-like (pseudogene) pseudo 6.757 1.095
-9401 RECQL4 RecQ like helicase 4 protein-coding 8.512 1.456
-94015 TTYH2 tweety family member 2 protein-coding 7.371 1.896
-9402 GRAP2 GRB2 related adaptor protein 2 protein-coding 4.491 1.833
-94025 MUC16 mucin 16, cell surface associated protein-coding 4.16 4.002
-9403 SELENOF selenoprotein F protein-coding 11.53 0.5896
-94030 LRRC4B leucine rich repeat containing 4B protein-coding 5.307 2.551
-94031 HTRA3 HtrA serine peptidase 3 protein-coding 8.454 2.498
-94032 CAMK2N2 calcium/calmodulin dependent protein kinase II inhibitor 2 protein-coding 5.062 2.144
-94039 ZNF101 zinc finger protein 101 protein-coding 6.625 0.7715
-9404 LPXN leupaxin protein-coding 8.191 1.074
-94056 SYAP1 synapse associated protein 1 protein-coding 10.14 0.6711
-94059 LENG9 leukocyte receptor cluster member 9 protein-coding 7.229 1.244
-9406 ZRANB2 zinc finger RANBP2-type containing 2 protein-coding 10.29 0.5765
-94081 SFXN1 sideroflexin 1 protein-coding 9.799 0.8008
-94086 HSPB9 heat shock protein family B (small) member 9 protein-coding 2.062 1.348
-9409 PEX16 peroxisomal biogenesis factor 16 protein-coding 9.084 0.6949
-94097 SFXN5 sideroflexin 5 protein-coding 8.796 1.232
-941 CD80 CD80 molecule protein-coding 3.72 1.785
-9410 SNRNP40 small nuclear ribonucleoprotein U5 subunit 40 protein-coding 9.463 0.6493
+93986 FOXP2 forkhead box P2 protein-coding 3.891 2.404
+9399 STOML1 stomatin like 1 protein-coding 8.485 0.8318
+94 ACVRL1 activin A receptor like type 1 protein-coding 8.75 1.152
+940 CD28 CD28 molecule protein-coding 5.063 1.79
+9400 RECQL5 RecQ like helicase 5 protein-coding 9.317 0.6612
+94005 PIGS phosphatidylinositol glycan anchor biosynthesis class S protein-coding 10.33 0.692
+94009 SERHL serine hydrolase-like (pseudogene) pseudo 6.758 1.095
+9401 RECQL4 RecQ like helicase 4 protein-coding 8.511 1.457
+94015 TTYH2 tweety family member 2 protein-coding 7.372 1.895
+9402 GRAP2 GRB2 related adaptor protein 2 protein-coding 4.493 1.834
+94025 MUC16 mucin 16, cell surface associated protein-coding 4.16 4.001
+9403 SELENOF selenoprotein F protein-coding 11.53 0.5895
+94030 LRRC4B leucine rich repeat containing 4B protein-coding 5.308 2.55
+94031 HTRA3 HtrA serine peptidase 3 protein-coding 8.455 2.497
+94032 CAMK2N2 calcium/calmodulin dependent protein kinase II inhibitor 2 protein-coding 5.061 2.145
+94039 ZNF101 zinc finger protein 101 protein-coding 6.626 0.772
+9404 LPXN leupaxin protein-coding 8.192 1.075
+94056 SYAP1 synapse associated protein 1 protein-coding 10.14 0.671
+94059 LENG9 leukocyte receptor cluster member 9 protein-coding 7.229 1.243
+9406 ZRANB2 zinc finger RANBP2-type containing 2 protein-coding 10.29 0.5764
+94081 SFXN1 sideroflexin 1 protein-coding 9.798 0.8007
+94086 HSPB9 heat shock protein family B (small) member 9 protein-coding 2.062 1.347
+9409 PEX16 peroxisomal biogenesis factor 16 protein-coding 9.084 0.6947
+94097 SFXN5 sideroflexin 5 protein-coding 8.796 1.231
+941 CD80 CD80 molecule protein-coding 3.721 1.786
+9410 SNRNP40 small nuclear ribonucleoprotein U5 subunit 40 protein-coding 9.463 0.649
94101 ORMDL1 ORMDL sphingolipid biosynthesis regulator 1 protein-coding 9.517 0.5203
-94103 ORMDL3 ORMDL sphingolipid biosynthesis regulator 3 protein-coding 10.96 0.8777
-94104 PAXBP1 PAX3 and PAX7 binding protein 1 protein-coding 9.189 0.7341
-94107 TMEM203 transmembrane protein 203 protein-coding 9.794 0.467
-9411 ARHGAP29 Rho GTPase activating protein 29 protein-coding 9.474 1.587
-9412 MED21 mediator complex subunit 21 protein-coding 8.996 0.6426
-94120 SYTL3 synaptotagmin like 3 protein-coding 6.917 1.47
-94121 SYTL4 synaptotagmin like 4 protein-coding 8.049 1.547
-9413 FAM189A2 family with sequence similarity 189 member A2 protein-coding 6.422 2.699
-94134 ARHGAP12 Rho GTPase activating protein 12 protein-coding 9.51 0.8543
-94137 RP1L1 RP1 like 1 protein-coding 2.578 1.568
+94103 ORMDL3 ORMDL sphingolipid biosynthesis regulator 3 protein-coding 10.96 0.8773
+94104 PAXBP1 PAX3 and PAX7 binding protein 1 protein-coding 9.19 0.7341
+94107 TMEM203 transmembrane protein 203 protein-coding 9.794 0.4668
+9411 ARHGAP29 Rho GTPase activating protein 29 protein-coding 9.474 1.586
+9412 MED21 mediator complex subunit 21 protein-coding 8.996 0.6424
+94120 SYTL3 synaptotagmin like 3 protein-coding 6.918 1.47
+94121 SYTL4 synaptotagmin like 4 protein-coding 8.05 1.546
+9413 FAM189A2 family with sequence similarity 189 member A2 protein-coding 6.424 2.699
+94134 ARHGAP12 Rho GTPase activating protein 12 protein-coding 9.511 0.854
+94137 RP1L1 RP1 like 1 protein-coding 2.579 1.568
9414 TJP2 tight junction protein 2 protein-coding 10.86 1.049
9415 FADS2 fatty acid desaturase 2 protein-coding 10.43 2.047
94158 CDRT15P1 CMT1A duplicated region transcript 15 pseudogene 1 pseudo 2.523 1.089
9416 DDX23 DEAD-box helicase 23 protein-coding 11.29 0.4033
-9419 CRIPT CXXC repeat containing interactor of PDZ3 domain protein-coding 8.59 0.5503
-942 CD86 CD86 molecule protein-coding 7.298 1.475
-9420 CYP7B1 cytochrome P450 family 7 subfamily B member 1 protein-coding 5.557 1.8
+9419 CRIPT CXXC repeat containing interactor of PDZ3 domain protein-coding 8.589 0.5502
+942 CD86 CD86 molecule protein-coding 7.298 1.476
+9420 CYP7B1 cytochrome P450 family 7 subfamily B member 1 protein-coding 5.558 1.8
9422 ZNF264 zinc finger protein 264 protein-coding 9.258 0.7728
-9423 NTN1 netrin 1 protein-coding 7.699 2.393
-94239 H2AFV H2A histone family member V protein-coding 11.78 0.5016
+9423 NTN1 netrin 1 protein-coding 7.699 2.392
+94239 H2AFV H2A histone family member V protein-coding 11.78 0.5015
9424 KCNK6 potassium two pore domain channel subfamily K member 6 protein-coding 7.53 1.7
-94240 EPSTI1 epithelial stromal interaction 1 protein-coding 7.657 1.883
-94241 TP53INP1 tumor protein p53 inducible nuclear protein 1 protein-coding 10 1.158
-9425 CDYL chromodomain Y like protein-coding 9.205 0.6635
-9427 ECEL1 endothelin converting enzyme like 1 protein-coding 3.617 2.759
-94274 PPP1R14A protein phosphatase 1 regulatory inhibitor subunit 14A protein-coding 5.972 1.775
-9429 ABCG2 ATP binding cassette subfamily G member 2 (Junior blood group) protein-coding 6.518 2.005
+94240 EPSTI1 epithelial stromal interaction 1 protein-coding 7.658 1.883
+94241 TP53INP1 tumor protein p53 inducible nuclear protein 1 protein-coding 10 1.157
+9425 CDYL chromodomain Y like protein-coding 9.205 0.6633
+9427 ECEL1 endothelin converting enzyme like 1 protein-coding 3.618 2.762
+94274 PPP1R14A protein phosphatase 1 regulatory inhibitor subunit 14A protein-coding 5.973 1.774
+9429 ABCG2 ATP binding cassette subfamily G member 2 (Junior blood group) protein-coding 6.519 2.005
943 TNFRSF8 TNF receptor superfamily member 8 protein-coding 4.188 1.677
-9435 CHST2 carbohydrate sulfotransferase 2 protein-coding 8.38 1.836
-9437 NCR1 natural cytotoxicity triggering receptor 1 protein-coding 0.9622 1.133
-9439 MED23 mediator complex subunit 23 protein-coding 9.283 0.6676
-944 TNFSF8 TNF superfamily member 8 protein-coding 4.225 1.712
-9440 MED17 mediator complex subunit 17 protein-coding 9.128 0.5113
-9441 MED26 mediator complex subunit 26 protein-coding 8.213 0.495
+9435 CHST2 carbohydrate sulfotransferase 2 protein-coding 8.381 1.835
+9437 NCR1 natural cytotoxicity triggering receptor 1 protein-coding 0.9624 1.133
+9439 MED23 mediator complex subunit 23 protein-coding 9.283 0.6674
+944 TNFSF8 TNF superfamily member 8 protein-coding 4.227 1.713
+9440 MED17 mediator complex subunit 17 protein-coding 9.128 0.5111
+9441 MED26 mediator complex subunit 26 protein-coding 8.213 0.4949
9442 MED27 mediator complex subunit 27 protein-coding 8.268 0.6233
-9443 MED7 mediator complex subunit 7 protein-coding 7.621 0.5481
+9443 MED7 mediator complex subunit 7 protein-coding 7.621 0.5479
9444 QKI QKI, KH domain containing RNA binding protein-coding 10.74 1.359
-9445 ITM2B integral membrane protein 2B protein-coding 13.63 0.9062
-9446 GSTO1 glutathione S-transferase omega 1 protein-coding 10.75 0.9261
-9447 AIM2 absent in melanoma 2 protein-coding 4.656 2.669
+9445 ITM2B integral membrane protein 2B protein-coding 13.63 0.9059
+9446 GSTO1 glutathione S-transferase omega 1 protein-coding 10.75 0.9259
+9447 AIM2 absent in melanoma 2 protein-coding 4.656 2.668
9448 MAP4K4 mitogen-activated protein kinase kinase kinase kinase 4 protein-coding 11.49 0.9105
-945 CD33 CD33 molecule protein-coding 5.454 1.503
+945 CD33 CD33 molecule protein-coding 5.454 1.504
9450 LY86 lymphocyte antigen 86 protein-coding 6.431 1.602
-9451 EIF2AK3 eukaryotic translation initiation factor 2 alpha kinase 3 protein-coding 9.391 0.7728
-9452 ITM2A integral membrane protein 2A protein-coding 7.887 1.887
-9453 GGPS1 geranylgeranyl diphosphate synthase 1 protein-coding 9.706 0.5565
-9454 HOMER3 homer scaffold protein 3 protein-coding 9.229 1.29
-9455 HOMER2 homer scaffold protein 2 protein-coding 7.652 2.412
-9456 HOMER1 homer scaffold protein 1 protein-coding 7.206 1.405
+9451 EIF2AK3 eukaryotic translation initiation factor 2 alpha kinase 3 protein-coding 9.391 0.7725
+9452 ITM2A integral membrane protein 2A protein-coding 7.888 1.887
+9453 GGPS1 geranylgeranyl diphosphate synthase 1 protein-coding 9.706 0.5563
+9454 HOMER3 homer scaffold protein 3 protein-coding 9.228 1.29
+9455 HOMER2 homer scaffold protein 2 protein-coding 7.654 2.412
+9456 HOMER1 homer scaffold protein 1 protein-coding 7.205 1.405
9459 ARHGEF6 Rac/Cdc42 guanine nucleotide exchange factor 6 protein-coding 8.628 1.618
-946 SIGLEC6 sialic acid binding Ig like lectin 6 protein-coding 2.063 1.907
-9462 RASAL2 RAS protein activator like 2 protein-coding 9.349 0.8935
-9463 PICK1 protein interacting with PRKCA 1 protein-coding 8.906 0.8334
-9465 AKAP7 A-kinase anchoring protein 7 protein-coding 7.356 1.263
+946 SIGLEC6 sialic acid binding Ig like lectin 6 protein-coding 2.065 1.907
+9462 RASAL2 RAS protein activator like 2 protein-coding 9.349 0.8934
+9463 PICK1 protein interacting with PRKCA 1 protein-coding 8.906 0.8333
+9465 AKAP7 A-kinase anchoring protein 7 protein-coding 7.357 1.263
9466 IL27RA interleukin 27 receptor subunit alpha protein-coding 8.059 1.342
-9467 SH3BP5 SH3 domain binding protein 5 protein-coding 9.435 1.235
-9468 PCYT1B phosphate cytidylyltransferase 1, choline, beta protein-coding 4.05 2.726
-9469 CHST3 carbohydrate sulfotransferase 3 protein-coding 9.112 1.438
-947 CD34 CD34 molecule protein-coding 9.674 1.253
-9470 EIF4E2 eukaryotic translation initiation factor 4E family member 2 protein-coding 10.47 0.4466
-9472 AKAP6 A-kinase anchoring protein 6 protein-coding 6.813 2.105
-9473 THEMIS2 thymocyte selection associated family member 2 protein-coding 8.587 1.349
-9474 ATG5 autophagy related 5 protein-coding 9.584 0.6111
-9475 ROCK2 Rho associated coiled-coil containing protein kinase 2 protein-coding 9.266 1.213
-9476 NAPSA napsin A aspartic peptidase protein-coding 4.506 3.719
-9477 MED20 mediator complex subunit 20 protein-coding 8.833 0.5654
-9479 MAPK8IP1 mitogen-activated protein kinase 8 interacting protein 1 protein-coding 8.31 1.959
-948 CD36 CD36 molecule protein-coding 7.682 2.427
-9480 ONECUT2 one cut homeobox 2 protein-coding 5.431 2.873
-9481 SLC25A27 solute carrier family 25 member 27 protein-coding 6.306 1.877
-9482 STX8 syntaxin 8 protein-coding 8.277 0.7163
-9486 CHST10 carbohydrate sulfotransferase 10 protein-coding 7.903 1.72
+9467 SH3BP5 SH3 domain binding protein 5 protein-coding 9.436 1.234
+9468 PCYT1B phosphate cytidylyltransferase 1, choline, beta protein-coding 4.051 2.725
+9469 CHST3 carbohydrate sulfotransferase 3 protein-coding 9.113 1.438
+947 CD34 CD34 molecule protein-coding 9.675 1.253
+9470 EIF4E2 eukaryotic translation initiation factor 4E family member 2 protein-coding 10.47 0.4464
+9472 AKAP6 A-kinase anchoring protein 6 protein-coding 6.814 2.105
+9473 THEMIS2 thymocyte selection associated family member 2 protein-coding 8.588 1.35
+9474 ATG5 autophagy related 5 protein-coding 9.584 0.6109
+9475 ROCK2 Rho associated coiled-coil containing protein kinase 2 protein-coding 9.267 1.213
+9476 NAPSA napsin A aspartic peptidase protein-coding 4.506 3.72
+9477 MED20 mediator complex subunit 20 protein-coding 8.833 0.5653
+9479 MAPK8IP1 mitogen-activated protein kinase 8 interacting protein 1 protein-coding 8.311 1.959
+948 CD36 CD36 molecule protein-coding 7.683 2.427
+9480 ONECUT2 one cut homeobox 2 protein-coding 5.431 2.874
+9481 SLC25A27 solute carrier family 25 member 27 protein-coding 6.308 1.877
+9482 STX8 syntaxin 8 protein-coding 8.277 0.7161
+9486 CHST10 carbohydrate sulfotransferase 10 protein-coding 7.904 1.719
9487 PIGL phosphatidylinositol glycan anchor biosynthesis class L protein-coding 6.046 0.8137
-9488 PIGB phosphatidylinositol glycan anchor biosynthesis class B protein-coding 7.855 0.6521
+9488 PIGB phosphatidylinositol glycan anchor biosynthesis class B protein-coding 7.856 0.652
9489 PGS1 phosphatidylglycerophosphate synthase 1 protein-coding 9.112 0.5528
949 SCARB1 scavenger receptor class B member 1 protein-coding 10.38 1.36
-9491 PSMF1 proteasome inhibitor subunit 1 protein-coding 11.48 0.4243
-9493 KIF23 kinesin family member 23 protein-coding 7.899 2.052
-9495 AKAP5 A-kinase anchoring protein 5 protein-coding 6.109 1.433
-9497 SLC4A7 solute carrier family 4 member 7 protein-coding 8.71 1.195
-9498 SLC4A8 solute carrier family 4 member 8 protein-coding 5.983 2.469
-9499 MYOT myotilin protein-coding 2.281 2.188
-95 ACY1 aminoacylase 1 protein-coding 9.674 1.159
-950 SCARB2 scavenger receptor class B member 2 protein-coding 12.45 0.6971
-9500 MAGED1 MAGE family member D1 protein-coding 12.13 1.002
+9491 PSMF1 proteasome inhibitor subunit 1 protein-coding 11.48 0.4242
+9493 KIF23 kinesin family member 23 protein-coding 7.897 2.053
+9495 AKAP5 A-kinase anchoring protein 5 protein-coding 6.109 1.432
+9497 SLC4A7 solute carrier family 4 member 7 protein-coding 8.71 1.194
+9498 SLC4A8 solute carrier family 4 member 8 protein-coding 5.984 2.469
+9499 MYOT myotilin protein-coding 2.282 2.188
+95 ACY1 aminoacylase 1 protein-coding 9.673 1.159
+950 SCARB2 scavenger receptor class B member 2 protein-coding 12.45 0.6968
+9500 MAGED1 MAGE family member D1 protein-coding 12.13 1.001
9501 RPH3AL rabphilin 3A like (without C2 domains) protein-coding 7.516 1.486
9507 ADAMTS4 ADAM metallopeptidase with thrombospondin type 1 motif 4 protein-coding 8.334 1.796
-9508 ADAMTS3 ADAM metallopeptidase with thrombospondin type 1 motif 3 protein-coding 4.901 1.848
-9509 ADAMTS2 ADAM metallopeptidase with thrombospondin type 1 motif 2 protein-coding 7.079 2.167
-951 CD37 CD37 molecule protein-coding 8.01 1.593
-9510 ADAMTS1 ADAM metallopeptidase with thrombospondin type 1 motif 1 protein-coding 9.646 1.576
-9512 PMPCB peptidase, mitochondrial processing beta subunit protein-coding 10.51 0.5048
-9513 FXR2 FMR1 autosomal homolog 2 protein-coding 9.802 0.5736
-9514 GAL3ST1 galactose-3-O-sulfotransferase 1 protein-coding 4.703 3.217
-9515 STXBP5L syntaxin binding protein 5 like protein-coding 2.756 2.826
-9516 LITAF lipopolysaccharide induced TNF factor protein-coding 11.72 0.8761
-9517 SPTLC2 serine palmitoyltransferase long chain base subunit 2 protein-coding 10.2 0.885
-9518 GDF15 growth differentiation factor 15 protein-coding 8.957 2.906
-9519 TBPL1 TATA-box binding protein like 1 protein-coding 8.133 0.7281
-952 CD38 CD38 molecule protein-coding 5.514 2.386
-9520 NPEPPS aminopeptidase puromycin sensitive protein-coding 11.03 0.6086
-9521 EEF1E1 eukaryotic translation elongation factor 1 epsilon 1 protein-coding 8.347 0.6363
-9522 SCAMP1 secretory carrier membrane protein 1 protein-coding 10.25 0.731
-9524 TECR trans-2,3-enoyl-CoA reductase protein-coding 10.87 0.6433
-9525 VPS4B vacuolar protein sorting 4 homolog B protein-coding 10.15 0.6313
-9526 MPDU1 mannose-P-dolichol utilization defect 1 protein-coding 10.27 0.6919
-9527 GOSR1 golgi SNAP receptor complex member 1 protein-coding 10.05 0.4101
-9528 TMEM59 transmembrane protein 59 protein-coding 12.41 0.6378
-9529 BAG5 BCL2 associated athanogene 5 protein-coding 10.2 0.5007
-953 ENTPD1 ectonucleoside triphosphate diphosphohydrolase 1 protein-coding 10.12 0.9392
-9530 BAG4 BCL2 associated athanogene 4 protein-coding 7.213 1.06
-9531 BAG3 BCL2 associated athanogene 3 protein-coding 10.51 0.9408
-9532 BAG2 BCL2 associated athanogene 2 protein-coding 7.771 1.35
-9533 POLR1C RNA polymerase I and III subunit C protein-coding 8.993 0.6599
-9534 ZNF254 zinc finger protein 254 protein-coding 8.081 1.213
-9535 GMFG glia maturation factor gamma protein-coding 7.891 1.352
-9536 PTGES prostaglandin E synthase protein-coding 7.842 2.401
-9537 TP53I11 tumor protein p53 inducible protein 11 protein-coding 10.5 1.312
-9538 EI24 EI24, autophagy associated transmembrane protein protein-coding 11.22 0.5806
-954 ENTPD2 ectonucleoside triphosphate diphosphohydrolase 2 protein-coding 6.704 2.292
+9508 ADAMTS3 ADAM metallopeptidase with thrombospondin type 1 motif 3 protein-coding 4.902 1.847
+9509 ADAMTS2 ADAM metallopeptidase with thrombospondin type 1 motif 2 protein-coding 7.079 2.166
+951 CD37 CD37 molecule protein-coding 8.011 1.594
+9510 ADAMTS1 ADAM metallopeptidase with thrombospondin type 1 motif 1 protein-coding 9.647 1.576
+9512 PMPCB peptidase, mitochondrial processing beta subunit protein-coding 10.51 0.5047
+9513 FXR2 FMR1 autosomal homolog 2 protein-coding 9.802 0.5734
+9514 GAL3ST1 galactose-3-O-sulfotransferase 1 protein-coding 4.703 3.216
+9515 STXBP5L syntaxin binding protein 5 like protein-coding 2.759 2.828
+9516 LITAF lipopolysaccharide induced TNF factor protein-coding 11.72 0.8764
+9517 SPTLC2 serine palmitoyltransferase long chain base subunit 2 protein-coding 10.2 0.8847
+9518 GDF15 growth differentiation factor 15 protein-coding 8.956 2.905
+9519 TBPL1 TATA-box binding protein like 1 protein-coding 8.133 0.7278
+952 CD38 CD38 molecule protein-coding 5.516 2.387
+9520 NPEPPS aminopeptidase puromycin sensitive protein-coding 11.03 0.6084
+9521 EEF1E1 eukaryotic translation elongation factor 1 epsilon 1 protein-coding 8.346 0.6365
+9522 SCAMP1 secretory carrier membrane protein 1 protein-coding 10.25 0.7309
+9524 TECR trans-2,3-enoyl-CoA reductase protein-coding 10.87 0.6435
+9525 VPS4B vacuolar protein sorting 4 homolog B protein-coding 10.15 0.6311
+9526 MPDU1 mannose-P-dolichol utilization defect 1 protein-coding 10.27 0.692
+9527 GOSR1 golgi SNAP receptor complex member 1 protein-coding 10.05 0.4099
+9528 TMEM59 transmembrane protein 59 protein-coding 12.41 0.638
+9529 BAG5 BCL2 associated athanogene 5 protein-coding 10.2 0.5005
+953 ENTPD1 ectonucleoside triphosphate diphosphohydrolase 1 protein-coding 10.12 0.9391
+9530 BAG4 BCL2 associated athanogene 4 protein-coding 7.213 1.059
+9531 BAG3 BCL2 associated athanogene 3 protein-coding 10.51 0.9405
+9532 BAG2 BCL2 associated athanogene 2 protein-coding 7.772 1.35
+9533 POLR1C RNA polymerase I and III subunit C protein-coding 8.993 0.66
+9534 ZNF254 zinc finger protein 254 protein-coding 8.081 1.212
+9535 GMFG glia maturation factor gamma protein-coding 7.892 1.353
+9536 PTGES prostaglandin E synthase protein-coding 7.841 2.4
+9537 TP53I11 tumor protein p53 inducible protein 11 protein-coding 10.51 1.311
+9538 EI24 EI24, autophagy associated transmembrane protein protein-coding 11.22 0.5807
+954 ENTPD2 ectonucleoside triphosphate diphosphohydrolase 2 protein-coding 6.703 2.292
9540 TP53I3 tumor protein p53 inducible protein 3 protein-coding 8.853 1.116
-9541 CIR1 corepressor interacting with RBPJ, 1 protein-coding 9.67 0.5046
-9542 NRG2 neuregulin 2 protein-coding 3.297 2.209
-9545 RAB3D RAB3D, member RAS oncogene family protein-coding 9.884 1.412
-9546 APBA3 amyloid beta precursor protein binding family A member 3 protein-coding 8.163 0.6102
-9547 CXCL14 C-X-C motif chemokine ligand 14 protein-coding 9.298 3.536
-955 ENTPD6 ectonucleoside triphosphate diphosphohydrolase 6 (putative) protein-coding 10.96 0.7962
-9550 ATP6V1G1 ATPase H+ transporting V1 subunit G1 protein-coding 11.28 0.6632
-9551 ATP5MF ATP synthase membrane subunit f protein-coding 10.96 0.8135
-9552 SPAG7 sperm associated antigen 7 protein-coding 9.798 0.6848
-9553 MRPL33 mitochondrial ribosomal protein L33 protein-coding 9.019 0.6293
-9554 SEC22B SEC22 homolog B, vesicle trafficking protein (gene/pseudogene) protein-coding 10.31 0.5963
+9541 CIR1 corepressor interacting with RBPJ, 1 protein-coding 9.67 0.505
+9542 NRG2 neuregulin 2 protein-coding 3.299 2.209
+9545 RAB3D RAB3D, member RAS oncogene family protein-coding 9.884 1.411
+9546 APBA3 amyloid beta precursor protein binding family A member 3 protein-coding 8.163 0.61
+9547 CXCL14 C-X-C motif chemokine ligand 14 protein-coding 9.297 3.535
+955 ENTPD6 ectonucleoside triphosphate diphosphohydrolase 6 (putative) protein-coding 10.96 0.796
+9550 ATP6V1G1 ATPase H+ transporting V1 subunit G1 protein-coding 11.28 0.6634
+9551 ATP5MF ATP synthase membrane subunit f protein-coding 10.96 0.8137
+9552 SPAG7 sperm associated antigen 7 protein-coding 9.798 0.6846
+9553 MRPL33 mitochondrial ribosomal protein L33 protein-coding 9.019 0.6292
+9554 SEC22B SEC22 homolog B, vesicle trafficking protein (gene/pseudogene) protein-coding 10.31 0.5962
9555 H2AFY H2A histone family member Y protein-coding 11.92 0.5809
-9556 ATP5MPL ATP synthase membrane subunit 6.8PL protein-coding 10.13 0.7113
-9557 CHD1L chromodomain helicase DNA binding protein 1 like protein-coding 9.755 0.7048
+9556 ATP5MPL ATP synthase membrane subunit 6.8PL protein-coding 10.13 0.7114
+9557 CHD1L chromodomain helicase DNA binding protein 1 like protein-coding 9.754 0.7048
9559 VPS26A VPS26, retromer complex component A protein-coding 10.36 0.51
-956 ENTPD3 ectonucleoside triphosphate diphosphohydrolase 3 protein-coding 5.481 2.89
-9562 MINPP1 multiple inositol-polyphosphate phosphatase 1 protein-coding 8.827 0.6959
+956 ENTPD3 ectonucleoside triphosphate diphosphohydrolase 3 protein-coding 5.482 2.89
+9562 MINPP1 multiple inositol-polyphosphate phosphatase 1 protein-coding 8.827 0.6956
9563 H6PD hexose-6-phosphate dehydrogenase/glucose 1-dehydrogenase protein-coding 11.02 0.831
-9564 BCAR1 BCAR1, Cas family scaffold protein protein-coding 10.72 0.8018
-9567 GTPBP1 GTP binding protein 1 protein-coding 10.44 0.512
-95681 CEP41 centrosomal protein 41 protein-coding 7.971 0.8641
-9569 GTF2IRD1 GTF2I repeat domain containing 1 protein-coding 9.501 0.8581
+9564 BCAR1 BCAR1, Cas family scaffold protein protein-coding 10.72 0.8017
+9567 GTPBP1 GTP binding protein 1 protein-coding 10.44 0.5119
+95681 CEP41 centrosomal protein 41 protein-coding 7.971 0.8639
+9569 GTF2IRD1 GTF2I repeat domain containing 1 protein-coding 9.5 0.858
957 ENTPD5 ectonucleoside triphosphate diphosphohydrolase 5 protein-coding 7.601 1.488
-9570 GOSR2 golgi SNAP receptor complex member 2 protein-coding 10.05 0.4247
-9572 NR1D1 nuclear receptor subfamily 1 group D member 1 protein-coding 9.215 1.15
-9575 CLOCK clock circadian regulator protein-coding 7.8 1.21
-9577 BABAM2 BRISC and BRCA1 A complex member 2 protein-coding 9.277 0.5432
+9570 GOSR2 golgi SNAP receptor complex member 2 protein-coding 10.05 0.4246
+9572 NR1D1 nuclear receptor subfamily 1 group D member 1 protein-coding 9.214 1.15
+9575 CLOCK clock circadian regulator protein-coding 7.8 1.209
+9577 BABAM2 BRISC and BRCA1 A complex member 2 protein-coding 9.277 0.543
9578 CDC42BPB CDC42 binding protein kinase beta protein-coding 11.58 0.6288
-958 CD40 CD40 molecule protein-coding 8.4 1.545
+958 CD40 CD40 molecule protein-coding 8.401 1.545
9580 SOX13 SRY-box 13 protein-coding 9.573 1.126
9581 PREPL prolyl endopeptidase like protein-coding 10.5 0.8396
-9582 APOBEC3B apolipoprotein B mRNA editing enzyme catalytic subunit 3B protein-coding 6.844 2.099
-9583 ENTPD4 ectonucleoside triphosphate diphosphohydrolase 4 protein-coding 8.564 0.7774
-9584 RBM39 RNA binding motif protein 39 protein-coding 11.91 0.4884
-9585 KIF20B kinesin family member 20B protein-coding 7.943 1.275
+9582 APOBEC3B apolipoprotein B mRNA editing enzyme catalytic subunit 3B protein-coding 6.843 2.099
+9583 ENTPD4 ectonucleoside triphosphate diphosphohydrolase 4 protein-coding 8.564 0.7773
+9584 RBM39 RNA binding motif protein 39 protein-coding 11.91 0.4883
+9585 KIF20B kinesin family member 20B protein-coding 7.942 1.275
9586 CREB5 cAMP responsive element binding protein 5 protein-coding 7.17 1.998
9587 MAD2L1BP MAD2L1 binding protein protein-coding 8.908 0.5493
-9588 PRDX6 peroxiredoxin 6 protein-coding 12.26 0.7445
-9589 WTAP WT1 associated protein protein-coding 10.65 0.5391
-959 CD40LG CD40 ligand protein-coding 3.339 1.861
-9590 AKAP12 A-kinase anchoring protein 12 protein-coding 9.516 1.897
-9592 IER2 immediate early response 2 protein-coding 11.3 1.038
-9595 CYTIP cytohesin 1 interacting protein protein-coding 6.997 1.752
+9588 PRDX6 peroxiredoxin 6 protein-coding 12.26 0.7447
+9589 WTAP WT1 associated protein protein-coding 10.65 0.5389
+959 CD40LG CD40 ligand protein-coding 3.341 1.863
+9590 AKAP12 A-kinase anchoring protein 12 protein-coding 9.518 1.898
+9592 IER2 immediate early response 2 protein-coding 11.3 1.039
+9595 CYTIP cytohesin 1 interacting protein protein-coding 6.998 1.753
9597 SMAD5-AS1 SMAD5 antisense RNA 1 ncRNA 2.44 1.157
-960 CD44 CD44 molecule (Indian blood group) protein-coding 12.44 1.669
-9600 PITPNM1 phosphatidylinositol transfer protein membrane associated 1 protein-coding 9.816 0.9909
-9601 PDIA4 protein disulfide isomerase family A member 4 protein-coding 12.49 0.9546
+960 CD44 CD44 molecule (Indian blood group) protein-coding 12.45 1.669
+9600 PITPNM1 phosphatidylinositol transfer protein membrane associated 1 protein-coding 9.816 0.9906
+9601 PDIA4 protein disulfide isomerase family A member 4 protein-coding 12.49 0.9544
9603 NFE2L3 nuclear factor, erythroid 2 like 3 protein-coding 8.865 1.768
-9604 RNF14 ring finger protein 14 protein-coding 10.04 0.6141
-9605 VPS9D1 VPS9 domain containing 1 protein-coding 8.657 0.8898
-9609 RAB36 RAB36, member RAS oncogene family protein-coding 7.56 1.861
-961 CD47 CD47 molecule protein-coding 11.19 0.8558
+9604 RNF14 ring finger protein 14 protein-coding 10.04 0.6139
+9605 VPS9D1 VPS9 domain containing 1 protein-coding 8.657 0.8894
+9609 RAB36 RAB36, member RAS oncogene family protein-coding 7.56 1.86
+961 CD47 CD47 molecule protein-coding 11.2 0.8557
9610 RIN1 Ras and Rab interactor 1 protein-coding 7.765 1.561
-9611 NCOR1 nuclear receptor corepressor 1 protein-coding 10.72 0.7849
-9612 NCOR2 nuclear receptor corepressor 2 protein-coding 11.94 0.7249
-9616 RNF7 ring finger protein 7 protein-coding 10.41 0.5679
-9617 MTRF1 mitochondrial translation release factor 1 protein-coding 6.916 0.7124
-9618 TRAF4 TNF receptor associated factor 4 protein-coding 10.58 0.9671
+9611 NCOR1 nuclear receptor corepressor 1 protein-coding 10.72 0.7848
+9612 NCOR2 nuclear receptor corepressor 2 protein-coding 11.94 0.7248
+9616 RNF7 ring finger protein 7 protein-coding 10.41 0.5677
+9617 MTRF1 mitochondrial translation release factor 1 protein-coding 6.917 0.7123
+9618 TRAF4 TNF receptor associated factor 4 protein-coding 10.58 0.9676
9619 ABCG1 ATP binding cassette subfamily G member 1 protein-coding 9.4 1.133
-962 CD48 CD48 molecule protein-coding 7.078 1.916
+962 CD48 CD48 molecule protein-coding 7.079 1.917
9620 CELSR1 cadherin EGF LAG seven-pass G-type receptor 1 protein-coding 9.809 2.369
-9625 AATK apoptosis associated tyrosine kinase protein-coding 6.539 1.969
-9627 SNCAIP synuclein alpha interacting protein protein-coding 6.071 2.131
-9628 RGS6 regulator of G protein signaling 6 protein-coding 3.615 2.495
-963 CD53 CD53 molecule protein-coding 8.994 1.559
-9630 GNA14 G protein subunit alpha 14 protein-coding 5.751 1.825
-9631 NUP155 nucleoporin 155 protein-coding 8.871 0.9935
-9632 SEC24C SEC24 homolog C, COPII coat complex component protein-coding 11.46 0.4326
-9633 TESMIN testis expressed metallothionein like protein protein-coding 6.216 2.082
-9635 CLCA2 chloride channel accessory 2 protein-coding 4.288 4.542
-9636 ISG15 ISG15 ubiquitin-like modifier protein-coding 10.07 1.78
-9637 FEZ2 fasciculation and elongation protein zeta 2 protein-coding 9.589 0.6504
-9638 FEZ1 fasciculation and elongation protein zeta 1 protein-coding 7.642 2.232
-9639 ARHGEF10 Rho guanine nucleotide exchange factor 10 protein-coding 8.818 1.199
-9640 ZNF592 zinc finger protein 592 protein-coding 10.2 0.4892
-9641 IKBKE inhibitor of nuclear factor kappa B kinase subunit epsilon protein-coding 8.133 1.35
+9625 AATK apoptosis associated tyrosine kinase protein-coding 6.541 1.969
+9627 SNCAIP synuclein alpha interacting protein protein-coding 6.071 2.13
+9628 RGS6 regulator of G protein signaling 6 protein-coding 3.615 2.494
+963 CD53 CD53 molecule protein-coding 8.995 1.56
+9630 GNA14 G protein subunit alpha 14 protein-coding 5.752 1.825
+9631 NUP155 nucleoporin 155 protein-coding 8.871 0.9932
+9632 SEC24C SEC24 homolog C, COPII coat complex component protein-coding 11.46 0.4324
+9633 TESMIN testis expressed metallothionein like protein protein-coding 6.215 2.081
+9635 CLCA2 chloride channel accessory 2 protein-coding 4.286 4.541
+9636 ISG15 ISG15 ubiquitin-like modifier protein-coding 10.07 1.779
+9637 FEZ2 fasciculation and elongation protein zeta 2 protein-coding 9.589 0.6501
+9638 FEZ1 fasciculation and elongation protein zeta 1 protein-coding 7.642 2.231
+9639 ARHGEF10 Rho guanine nucleotide exchange factor 10 protein-coding 8.819 1.199
+9640 ZNF592 zinc finger protein 592 protein-coding 10.2 0.489
+9641 IKBKE inhibitor of nuclear factor kappa B kinase subunit epsilon protein-coding 8.132 1.35
9643 MORF4L2 mortality factor 4 like 2 protein-coding 12.17 0.5426
9644 SH3PXD2A SH3 and PX domains 2A protein-coding 10.68 1.154
9645 MICAL2 microtubule associated monooxygenase, calponin and LIM domain containing 2 protein-coding 10.08 1.553
-96459 FNIP1 folliculin interacting protein 1 protein-coding 9.211 0.6627
-9646 CTR9 CTR9 homolog, Paf1/RNA polymerase II complex component protein-coding 10.24 0.5343
-9647 PPM1F protein phosphatase, Mg2+/Mn2+ dependent 1F protein-coding 9.663 0.7415
-9648 GCC2 GRIP and coiled-coil domain containing 2 protein-coding 9.748 0.907
-9649 RALGPS1 Ral GEF with PH domain and SH3 binding motif 1 protein-coding 7.898 1.284
+96459 FNIP1 folliculin interacting protein 1 protein-coding 9.211 0.6625
+9646 CTR9 CTR9 homolog, Paf1/RNA polymerase II complex component protein-coding 10.24 0.5341
+9647 PPM1F protein phosphatase, Mg2+/Mn2+ dependent 1F protein-coding 9.663 0.7413
+9648 GCC2 GRIP and coiled-coil domain containing 2 protein-coding 9.749 0.907
+9649 RALGPS1 Ral GEF with PH domain and SH3 binding motif 1 protein-coding 7.899 1.284
965 CD58 CD58 molecule protein-coding 7.841 1.028
-9650 MTFR1 mitochondrial fission regulator 1 protein-coding 9.057 0.9807
-9651 PLCH2 phospholipase C eta 2 protein-coding 6.94 2.425
-9652 TTC37 tetratricopeptide repeat domain 37 protein-coding 10.08 0.9291
-9653 HS2ST1 heparan sulfate 2-O-sulfotransferase 1 protein-coding 10.01 0.66
-9654 TTLL4 tubulin tyrosine ligase like 4 protein-coding 8.872 0.9372
-9655 SOCS5 suppressor of cytokine signaling 5 protein-coding 9.019 0.6231
-9656 MDC1 mediator of DNA damage checkpoint 1 protein-coding 9.856 0.6494
-9657 IQCB1 IQ motif containing B1 protein-coding 8.749 0.754
-9658 ZNF516 zinc finger protein 516 protein-coding 8.014 1.148
+9650 MTFR1 mitochondrial fission regulator 1 protein-coding 9.057 0.9805
+9651 PLCH2 phospholipase C eta 2 protein-coding 6.942 2.425
+9652 TTC37 tetratricopeptide repeat domain 37 protein-coding 10.08 0.9287
+9653 HS2ST1 heparan sulfate 2-O-sulfotransferase 1 protein-coding 10.01 0.6598
+9654 TTLL4 tubulin tyrosine ligase like 4 protein-coding 8.871 0.937
+9655 SOCS5 suppressor of cytokine signaling 5 protein-coding 9.02 0.6231
+9656 MDC1 mediator of DNA damage checkpoint 1 protein-coding 9.856 0.6491
+9657 IQCB1 IQ motif containing B1 protein-coding 8.749 0.7537
+9658 ZNF516 zinc finger protein 516 protein-coding 8.015 1.148
9659 PDE4DIP phosphodiesterase 4D interacting protein protein-coding 10.64 1.003
-966 CD59 CD59 molecule (CD59 blood group) protein-coding 13.08 0.9184
+966 CD59 CD59 molecule (CD59 blood group) protein-coding 13.08 0.9182
96610 BMS1P20 BMS1, ribosome biogenesis factor pseudogene 20 pseudo 12.04 2.692
-9662 CEP135 centrosomal protein 135 protein-coding 7.413 0.9584
+9662 CEP135 centrosomal protein 135 protein-coding 7.413 0.9582
9663 LPIN2 lipin 2 protein-coding 10.1 1.116
9665 MARF1 meiosis regulator and mRNA stability factor 1 protein-coding 10.65 0.5723
-9666 DZIP3 DAZ interacting zinc finger protein 3 protein-coding 8.625 1.055
-9667 SAFB2 scaffold attachment factor B2 protein-coding 10.6 0.5185
+9666 DZIP3 DAZ interacting zinc finger protein 3 protein-coding 8.626 1.055
+9667 SAFB2 scaffold attachment factor B2 protein-coding 10.6 0.5184
9668 ZNF432 zinc finger protein 432 protein-coding 6.679 1.09
-9669 EIF5B eukaryotic translation initiation factor 5B protein-coding 11.55 0.6265
-967 CD63 CD63 molecule protein-coding 13.68 0.8535
-9670 IPO13 importin 13 protein-coding 10 0.6221
-9671 WSCD2 WSC domain containing 2 protein-coding 3.689 2.658
+9669 EIF5B eukaryotic translation initiation factor 5B protein-coding 11.55 0.6266
+967 CD63 CD63 molecule protein-coding 13.68 0.8531
+9670 IPO13 importin 13 protein-coding 10 0.6218
+9671 WSCD2 WSC domain containing 2 protein-coding 3.692 2.659
9672 SDC3 syndecan 3 protein-coding 11.12 1.31
-9673 SLC25A44 solute carrier family 25 member 44 protein-coding 9.827 0.5812
-9674 KIAA0040 KIAA0040 protein-coding 9.518 1.289
-9675 TTI1 TELO2 interacting protein 1 protein-coding 9.386 0.5152
-96764 TGS1 trimethylguanosine synthase 1 protein-coding 9.05 0.7246
-9677 PPIP5K1 diphosphoinositol pentakisphosphate kinase 1 protein-coding 9.07 0.8035
-9678 PHF14 PHD finger protein 14 protein-coding 9.745 0.5987
-9679 FAM53B family with sequence similarity 53 member B protein-coding 10.05 0.9601
-968 CD68 CD68 molecule protein-coding 11.12 1.397
-9681 DEPDC5 DEP domain containing 5 protein-coding 8.32 0.5745
-9682 KDM4A lysine demethylase 4A protein-coding 10.24 0.5567
-9683 N4BP1 NEDD4 binding protein 1 protein-coding 10.21 0.5986
-9684 LRRC14 leucine rich repeat containing 14 protein-coding 9.557 0.633
-9685 CLINT1 clathrin interactor 1 protein-coding 10.9 0.6983
-9686 VGLL4 vestigial like family member 4 protein-coding 10.8 0.7314
-9687 GREB1 growth regulating estrogen receptor binding 1 protein-coding 6.975 2.719
-9688 NUP93 nucleoporin 93 protein-coding 9.967 0.6666
-9689 BZW1 basic leucine zipper and W2 domains 1 protein-coding 11.87 0.6378
-969 CD69 CD69 molecule protein-coding 6.006 1.847
-9690 UBE3C ubiquitin protein ligase E3C protein-coding 10.86 0.6324
+9673 SLC25A44 solute carrier family 25 member 44 protein-coding 9.827 0.5811
+9674 KIAA0040 KIAA0040 protein-coding 9.519 1.289
+9675 TTI1 TELO2 interacting protein 1 protein-coding 9.386 0.5151
+96764 TGS1 trimethylguanosine synthase 1 protein-coding 9.05 0.7243
+9677 PPIP5K1 diphosphoinositol pentakisphosphate kinase 1 protein-coding 9.07 0.8036
+9678 PHF14 PHD finger protein 14 protein-coding 9.744 0.5986
+9679 FAM53B family with sequence similarity 53 member B protein-coding 10.05 0.96
+968 CD68 CD68 molecule protein-coding 11.12 1.398
+9681 DEPDC5 DEP domain containing 5 protein-coding 8.32 0.5743
+9682 KDM4A lysine demethylase 4A protein-coding 10.24 0.5564
+9683 N4BP1 NEDD4 binding protein 1 protein-coding 10.21 0.5985
+9684 LRRC14 leucine rich repeat containing 14 protein-coding 9.557 0.6328
+9685 CLINT1 clathrin interactor 1 protein-coding 10.9 0.6982
+9686 VGLL4 vestigial like family member 4 protein-coding 10.8 0.7315
+9687 GREB1 growth regulating estrogen receptor binding 1 protein-coding 6.976 2.719
+9688 NUP93 nucleoporin 93 protein-coding 9.966 0.6665
+9689 BZW1 basic leucine zipper and W2 domains 1 protein-coding 11.87 0.6379
+969 CD69 CD69 molecule protein-coding 6.008 1.848
+9690 UBE3C ubiquitin protein ligase E3C protein-coding 10.86 0.6322
9692 KIAA0391 KIAA0391 protein-coding 9.166 0.4971
-9693 RAPGEF2 Rap guanine nucleotide exchange factor 2 protein-coding 9.504 0.908
-9694 EMC2 ER membrane protein complex subunit 2 protein-coding 9.582 0.5467
-9695 EDEM1 ER degradation enhancing alpha-mannosidase like protein 1 protein-coding 10.35 0.8754
-9696 CROCC ciliary rootlet coiled-coil, rootletin protein-coding 8.908 0.9831
+9693 RAPGEF2 Rap guanine nucleotide exchange factor 2 protein-coding 9.505 0.9078
+9694 EMC2 ER membrane protein complex subunit 2 protein-coding 9.582 0.5465
+9695 EDEM1 ER degradation enhancing alpha-mannosidase like protein 1 protein-coding 10.35 0.8752
+9696 CROCC ciliary rootlet coiled-coil, rootletin protein-coding 8.909 0.9827
9697 TRAM2 translocation associated membrane protein 2 protein-coding 9.708 1.023
-9698 PUM1 pumilio RNA binding family member 1 protein-coding 11.02 0.4607
-9699 RIMS2 regulating synaptic membrane exocytosis 2 protein-coding 4.098 2.896
-97 ACYP1 acylphosphatase 1 protein-coding 6.655 0.9599
-970 CD70 CD70 molecule protein-coding 3.664 2.581
-9700 ESPL1 extra spindle pole bodies like 1, separase protein-coding 7.568 2.072
-9701 PPP6R2 protein phosphatase 6 regulatory subunit 2 protein-coding 10.33 0.6457
-9702 CEP57 centrosomal protein 57 protein-coding 9.566 0.547
-9703 KIAA0100 KIAA0100 protein-coding 11.87 0.592
-9704 DHX34 DExH-box helicase 34 protein-coding 9.094 0.7128
-9705 ST18 ST18, C2H2C-type zinc finger protein-coding 2.629 2.321
-9706 ULK2 unc-51 like autophagy activating kinase 2 protein-coding 8.787 1.062
-9708 PCDHGA8 protocadherin gamma subfamily A, 8 protein-coding 3.133 1.562
-9709 HERPUD1 homocysteine inducible ER protein with ubiquitin like domain 1 protein-coding 11.33 0.9192
-971 CD72 CD72 molecule protein-coding 5.775 1.52
-9710 KIAA0355 KIAA0355 protein-coding 9.413 0.6606
-9711 RUBCN RUN and cysteine rich domain containing beclin 1 interacting protein protein-coding 9.511 0.6929
-9712 USP6NL USP6 N-terminal like protein-coding 8.981 0.7542
-9715 FAM131B family with sequence similarity 131 member B protein-coding 5.213 2.303
-9716 AQR aquarius intron-binding spliceosomal factor protein-coding 9.688 0.6312
+9698 PUM1 pumilio RNA binding family member 1 protein-coding 11.02 0.4606
+9699 RIMS2 regulating synaptic membrane exocytosis 2 protein-coding 4.098 2.895
+97 ACYP1 acylphosphatase 1 protein-coding 6.654 0.9599
+970 CD70 CD70 molecule protein-coding 3.663 2.58
+9700 ESPL1 extra spindle pole bodies like 1, separase protein-coding 7.566 2.073
+9701 PPP6R2 protein phosphatase 6 regulatory subunit 2 protein-coding 10.33 0.6454
+9702 CEP57 centrosomal protein 57 protein-coding 9.567 0.5469
+9703 KIAA0100 KIAA0100 protein-coding 11.87 0.5919
+9704 DHX34 DExH-box helicase 34 protein-coding 9.094 0.7126
+9705 ST18 ST18, C2H2C-type zinc finger protein-coding 2.631 2.322
+9706 ULK2 unc-51 like autophagy activating kinase 2 protein-coding 8.788 1.062
+9708 PCDHGA8 protocadherin gamma subfamily A, 8 protein-coding 3.134 1.561
+9709 HERPUD1 homocysteine inducible ER protein with ubiquitin like domain 1 protein-coding 11.33 0.9194
+971 CD72 CD72 molecule protein-coding 5.776 1.52
+9710 KIAA0355 KIAA0355 protein-coding 9.414 0.6609
+9711 RUBCN RUN and cysteine rich domain containing beclin 1 interacting protein protein-coding 9.511 0.6931
+9712 USP6NL USP6 N-terminal like protein-coding 8.981 0.7539
+9715 FAM131B family with sequence similarity 131 member B protein-coding 5.213 2.302
+9716 AQR aquarius intron-binding spliceosomal factor protein-coding 9.688 0.631
9717 SEC14L5 SEC14 like lipid binding 5 protein-coding 3.86 2.035
-9718 ECE2 endothelin converting enzyme 2 protein-coding 7.916 1.246
-9719 ADAMTSL2 ADAMTS like 2 protein-coding 7.51 1.595
-972 CD74 CD74 molecule protein-coding 14.77 1.533
+9718 ECE2 endothelin converting enzyme 2 protein-coding 7.915 1.247
+9719 ADAMTSL2 ADAMTS like 2 protein-coding 7.511 1.596
+972 CD74 CD74 molecule protein-coding 14.77 1.534
9720 CCDC144A coiled-coil domain containing 144A protein-coding 3.419 1.834
-9722 NOS1AP nitric oxide synthase 1 adaptor protein protein-coding 5.218 1.786
-9724 UTP14C UTP14C, small subunit processome component protein-coding 9.713 0.7092
+9722 NOS1AP nitric oxide synthase 1 adaptor protein protein-coding 5.217 1.785
+9724 UTP14C UTP14C, small subunit processome component protein-coding 9.713 0.709
9725 TMEM63A transmembrane protein 63A protein-coding 10.13 1.244
-9726 ZNF646 zinc finger protein 646 protein-coding 9.062 0.5616
-9727 RAB11FIP3 RAB11 family interacting protein 3 protein-coding 10.09 0.8665
-9728 SECISBP2L SECIS binding protein 2 like protein-coding 9.966 0.9998
-973 CD79A CD79a molecule protein-coding 5.753 2.865
-9730 DCAF1 DDB1 and CUL4 associated factor 1 protein-coding 9.537 0.5291
-9731 CEP104 centrosomal protein 104 protein-coding 9.411 0.4958
+9726 ZNF646 zinc finger protein 646 protein-coding 9.062 0.5613
+9727 RAB11FIP3 RAB11 family interacting protein 3 protein-coding 10.09 0.8661
+9728 SECISBP2L SECIS binding protein 2 like protein-coding 9.967 0.9997
+973 CD79A CD79a molecule protein-coding 5.754 2.865
+9730 DCAF1 DDB1 and CUL4 associated factor 1 protein-coding 9.537 0.5289
+9731 CEP104 centrosomal protein 104 protein-coding 9.411 0.4957
9732 DOCK4 dedicator of cytokinesis 4 protein-coding 8.374 1.382
-9733 SART3 squamous cell carcinoma antigen recognized by T cells 3 protein-coding 10.35 0.4125
-9734 HDAC9 histone deacetylase 9 protein-coding 7.115 1.801
-9735 KNTC1 kinetochore associated 1 protein-coding 8.649 1.208
-9736 USP34 ubiquitin specific peptidase 34 protein-coding 11.14 0.5887
-9737 GPRASP1 G protein-coupled receptor associated sorting protein 1 protein-coding 7.267 1.889
-9738 CCP110 centriolar coiled-coil protein 110 protein-coding 8.779 0.9073
-9739 SETD1A SET domain containing 1A protein-coding 9.943 0.4884
-974 CD79B CD79b molecule protein-coding 5.711 1.977
-9741 LAPTM4A lysosomal protein transmembrane 4 alpha protein-coding 12.73 0.5766
-9742 IFT140 intraflagellar transport 140 protein-coding 9.16 1.024
+9733 SART3 squamous cell carcinoma antigen recognized by T cells 3 protein-coding 10.35 0.4123
+9734 HDAC9 histone deacetylase 9 protein-coding 7.116 1.8
+9735 KNTC1 kinetochore associated 1 protein-coding 8.648 1.208
+9736 USP34 ubiquitin specific peptidase 34 protein-coding 11.14 0.5886
+9737 GPRASP1 G protein-coupled receptor associated sorting protein 1 protein-coding 7.27 1.89
+9738 CCP110 centriolar coiled-coil protein 110 protein-coding 8.779 0.907
+9739 SETD1A SET domain containing 1A protein-coding 9.943 0.4882
+974 CD79B CD79b molecule protein-coding 5.712 1.978
+9741 LAPTM4A lysosomal protein transmembrane 4 alpha protein-coding 12.73 0.5763
+9742 IFT140 intraflagellar transport 140 protein-coding 9.161 1.024
9743 ARHGAP32 Rho GTPase activating protein 32 protein-coding 9.824 1.221
-9744 ACAP1 ArfGAP with coiled-coil, ankyrin repeat and PH domains 1 protein-coding 6.529 1.889
-9746 CLSTN3 calsyntenin 3 protein-coding 10.45 1.122
-9747 TCAF1 TRPM8 channel associated factor 1 protein-coding 7.925 1.235
-9748 SLK STE20 like kinase protein-coding 10.42 0.9209
-9749 PHACTR2 phosphatase and actin regulator 2 protein-coding 9.056 1.101
-975 CD81 CD81 molecule protein-coding 13.4 0.7765
-9750 RIPOR2 RHO family interacting cell polarization regulator 2 protein-coding 6.872 1.734
-9751 SNPH syntaphilin protein-coding 7.071 1.731
-9753 ZSCAN12 zinc finger and SCAN domain containing 12 protein-coding 7.094 0.9943
-9754 STARD8 StAR related lipid transfer domain containing 8 protein-coding 7.329 1.37
-9755 TBKBP1 TBK1 binding protein 1 protein-coding 8.184 1.093
-9757 KMT2B lysine methyltransferase 2B protein-coding 10.32 0.6251
-9759 HDAC4 histone deacetylase 4 protein-coding 8.723 1.005
+9744 ACAP1 ArfGAP with coiled-coil, ankyrin repeat and PH domains 1 protein-coding 6.531 1.89
+9746 CLSTN3 calsyntenin 3 protein-coding 10.45 1.123
+9747 TCAF1 TRPM8 channel associated factor 1 protein-coding 7.926 1.235
+9748 SLK STE20 like kinase protein-coding 10.42 0.9207
+9749 PHACTR2 phosphatase and actin regulator 2 protein-coding 9.057 1.101
+975 CD81 CD81 molecule protein-coding 13.4 0.7764
+9750 RIPOR2 RHO family interacting cell polarization regulator 2 protein-coding 6.874 1.735
+9751 SNPH syntaphilin protein-coding 7.072 1.731
+9753 ZSCAN12 zinc finger and SCAN domain containing 12 protein-coding 7.094 0.9941
+9754 STARD8 StAR related lipid transfer domain containing 8 protein-coding 7.33 1.37
+9755 TBKBP1 TBK1 binding protein 1 protein-coding 8.185 1.092
+9757 KMT2B lysine methyltransferase 2B protein-coding 10.32 0.6248
+9759 HDAC4 histone deacetylase 4 protein-coding 8.724 1.005
976 ADGRE5 adhesion G protein-coupled receptor E5 protein-coding 10.2 1.367
-9760 TOX thymocyte selection associated high mobility group box protein-coding 6.351 2.147
-9761 MLEC malectin protein-coding 12.49 0.7909
+9760 TOX thymocyte selection associated high mobility group box protein-coding 6.353 2.146
+9761 MLEC malectin protein-coding 12.49 0.7906
9762 LZTS3 leucine zipper tumor suppressor family member 3 protein-coding 8.959 1.485
-9764 KIAA0513 KIAA0513 protein-coding 8.697 1.223
-9765 ZFYVE16 zinc finger FYVE-type containing 16 protein-coding 9.689 0.6803
+9764 KIAA0513 KIAA0513 protein-coding 8.698 1.223
+9765 ZFYVE16 zinc finger FYVE-type containing 16 protein-coding 9.689 0.6801
9766 SUSD6 sushi domain containing 6 protein-coding 10.72 0.8391
-9767 JADE3 jade family PHD finger 3 protein-coding 8.382 0.8521
-9768 PCLAF PCNA clamp associated factor protein-coding 7.834 1.833
+9767 JADE3 jade family PHD finger 3 protein-coding 8.381 0.8521
+9768 PCLAF PCNA clamp associated factor protein-coding 7.832 1.833
977 CD151 CD151 molecule (Raph blood group) protein-coding 12.38 1.009
9770 RASSF2 Ras association domain family member 2 protein-coding 8.924 1.763
9771 RAPGEF5 Rap guanine nucleotide exchange factor 5 protein-coding 9.03 1.234
-9772 TMEM94 transmembrane protein 94 protein-coding 10.8 0.658
-9774 BCLAF1 BCL2 associated transcription factor 1 protein-coding 11.44 0.5424
-9775 EIF4A3 eukaryotic translation initiation factor 4A3 protein-coding 10.89 0.6257
-9776 ATG13 autophagy related 13 protein-coding 10.83 0.4788
+9772 TMEM94 transmembrane protein 94 protein-coding 10.8 0.6578
+9774 BCLAF1 BCL2 associated transcription factor 1 protein-coding 11.44 0.5422
+9775 EIF4A3 eukaryotic translation initiation factor 4A3 protein-coding 10.89 0.6259
+9776 ATG13 autophagy related 13 protein-coding 10.83 0.4787
9777 TM9SF4 transmembrane 9 superfamily member 4 protein-coding 11.27 0.5014
-9778 KIAA0232 KIAA0232 protein-coding 10.13 0.7194
-9779 TBC1D5 TBC1 domain family member 5 protein-coding 10.25 0.688
-978 CDA cytidine deaminase protein-coding 6.148 2.042
+9778 KIAA0232 KIAA0232 protein-coding 10.13 0.7192
+9779 TBC1D5 TBC1 domain family member 5 protein-coding 10.25 0.6878
+978 CDA cytidine deaminase protein-coding 6.147 2.041
9780 PIEZO1 piezo type mechanosensitive ion channel component 1 protein-coding 11.16 1.055
9781 RNF144A ring finger protein 144A protein-coding 8.951 1.214
-9782 MATR3 matrin 3 protein-coding 12.54 0.4833
-9783 RIMS3 regulating synaptic membrane exocytosis 3 protein-coding 6.818 1.802
-9784 SNX17 sorting nexin 17 protein-coding 11.32 0.4415
-9785 DHX38 DEAH-box helicase 38 protein-coding 10.39 0.5059
-9786 KIAA0586 KIAA0586 protein-coding 8.061 0.6451
-9787 DLGAP5 DLG associated protein 5 protein-coding 7.351 2.391
-9788 MTSS1 MTSS1, I-BAR domain containing protein-coding 9.967 1.457
-9789 SPCS2 signal peptidase complex subunit 2 protein-coding 9.711 0.6482
-9790 BMS1 BMS1, ribosome biogenesis factor protein-coding 10.28 0.5114
-9791 PTDSS1 phosphatidylserine synthase 1 protein-coding 10.88 0.6946
-9792 SERTAD2 SERTA domain containing 2 protein-coding 9.811 0.8468
-9793 CKAP5 cytoskeleton associated protein 5 protein-coding 11.2 0.7394
-9794 MAML1 mastermind like transcriptional coactivator 1 protein-coding 10.09 0.5735
-9796 PHYHIP phytanoyl-CoA 2-hydroxylase interacting protein protein-coding 5.522 2.481
-9797 TATDN2 TatD DNase domain containing 2 protein-coding 10.34 0.46
-9798 IST1 IST1, ESCRT-III associated factor protein-coding 11.33 0.3945
+9782 MATR3 matrin 3 protein-coding 12.54 0.4831
+9783 RIMS3 regulating synaptic membrane exocytosis 3 protein-coding 6.82 1.803
+9784 SNX17 sorting nexin 17 protein-coding 11.32 0.4414
+9785 DHX38 DEAH-box helicase 38 protein-coding 10.39 0.5057
+9786 KIAA0586 KIAA0586 protein-coding 8.061 0.6449
+9787 DLGAP5 DLG associated protein 5 protein-coding 7.348 2.393
+9788 MTSS1 MTSS1, I-BAR domain containing protein-coding 9.966 1.457
+9789 SPCS2 signal peptidase complex subunit 2 protein-coding 9.711 0.6481
+9790 BMS1 BMS1, ribosome biogenesis factor protein-coding 10.28 0.5113
+9791 PTDSS1 phosphatidylserine synthase 1 protein-coding 10.88 0.6945
+9792 SERTAD2 SERTA domain containing 2 protein-coding 9.811 0.8466
+9793 CKAP5 cytoskeleton associated protein 5 protein-coding 11.2 0.7393
+9794 MAML1 mastermind like transcriptional coactivator 1 protein-coding 10.09 0.5733
+9796 PHYHIP phytanoyl-CoA 2-hydroxylase interacting protein protein-coding 5.524 2.482
+9797 TATDN2 TatD DNase domain containing 2 protein-coding 10.34 0.4598
+9798 IST1 IST1, ESCRT-III associated factor protein-coding 11.33 0.3944
98 ACYP2 acylphosphatase 2 protein-coding 7.048 1.064
-9801 MRPL19 mitochondrial ribosomal protein L19 protein-coding 10.1 0.4752
-9802 DAZAP2 DAZ associated protein 2 protein-coding 12.51 0.507
-9804 TOMM20 translocase of outer mitochondrial membrane 20 protein-coding 12.34 0.5893
-9805 SCRN1 secernin 1 protein-coding 10.65 1.541
-9806 SPOCK2 SPARC (osteonectin), cwcv and kazal like domains proteoglycan 2 protein-coding 9.839 2.108
-9807 IP6K1 inositol hexakisphosphate kinase 1 protein-coding 10.26 0.5196
-9808 KIAA0087 KIAA0087 lncRNA ncRNA 1.353 1.656
-9810 RNF40 ring finger protein 40 protein-coding 11.33 0.4467
-9811 CTIF cap binding complex dependent translation initiation factor protein-coding 9.475 0.9373
-9812 DELE1 DAP3 binding cell death enhancer 1 protein-coding 10.03 0.6233
-9813 EFCAB14 EF-hand calcium binding domain 14 protein-coding 11.45 0.5746
-9814 SFI1 SFI1 centrin binding protein protein-coding 8.648 0.7865
-9815 GIT2 GIT ArfGAP 2 protein-coding 10.05 0.596
+9801 MRPL19 mitochondrial ribosomal protein L19 protein-coding 10.1 0.4751
+9802 DAZAP2 DAZ associated protein 2 protein-coding 12.51 0.5069
+9804 TOMM20 translocase of outer mitochondrial membrane 20 protein-coding 12.34 0.5894
+9805 SCRN1 secernin 1 protein-coding 10.65 1.54
+9806 SPOCK2 SPARC (osteonectin), cwcv and kazal like domains proteoglycan 2 protein-coding 9.84 2.109
+9807 IP6K1 inositol hexakisphosphate kinase 1 protein-coding 10.26 0.5194
+9808 KIAA0087 KIAA0087 lncRNA ncRNA 1.354 1.656
+9810 RNF40 ring finger protein 40 protein-coding 11.33 0.4466
+9811 CTIF cap binding complex dependent translation initiation factor protein-coding 9.476 0.9375
+9812 DELE1 DAP3 binding cell death enhancer 1 protein-coding 10.03 0.6231
+9813 EFCAB14 EF-hand calcium binding domain 14 protein-coding 11.45 0.5745
+9814 SFI1 SFI1 centrin binding protein protein-coding 8.649 0.7863
+9815 GIT2 GIT ArfGAP 2 protein-coding 10.05 0.5961
9816 URB2 URB2 ribosome biogenesis 2 homolog (S. cerevisiae) protein-coding 8.332 0.8212
-9817 KEAP1 kelch like ECH associated protein 1 protein-coding 10.86 0.5778
-9818 NUP58 nucleoporin 58 protein-coding 9.972 0.647
-9819 TSC22D2 TSC22 domain family member 2 protein-coding 8.897 0.8587
-9820 CUL7 cullin 7 protein-coding 10.08 0.8745
-9821 RB1CC1 RB1 inducible coiled-coil 1 protein-coding 10.39 0.7081
-9823 ARMCX2 armadillo repeat containing, X-linked 2 protein-coding 8.98 1.769
-9824 ARHGAP11A Rho GTPase activating protein 11A protein-coding 8.188 1.606
-9825 SPATA2 spermatogenesis associated 2 protein-coding 8.988 0.5892
-9826 ARHGEF11 Rho guanine nucleotide exchange factor 11 protein-coding 10.4 0.6586
-9827 RGP1 RGP1 homolog, RAB6A GEF complex partner 1 protein-coding 6.848 1.053
-9828 ARHGEF17 Rho guanine nucleotide exchange factor 17 protein-coding 9.994 1.212
-9829 DNAJC6 DnaJ heat shock protein family (Hsp40) member C6 protein-coding 6.259 2.24
-983 CDK1 cyclin dependent kinase 1 protein-coding 8.876 1.833
-9830 TRIM14 tripartite motif containing 14 protein-coding 9.763 1.022
-9831 ZNF623 zinc finger protein 623 protein-coding 8.55 0.7798
-9832 JAKMIP2 janus kinase and microtubule interacting protein 2 protein-coding 4.337 2.763
-9833 MELK maternal embryonic leucine zipper kinase protein-coding 7.511 2.173
-9834 FAM30A family with sequence similarity 30 member A ncRNA 3.33 2.607
-9836 LCMT2 leucine carboxyl methyltransferase 2 protein-coding 8.095 0.6654
-9837 GINS1 GINS complex subunit 1 protein-coding 7.943 1.559
-9839 ZEB2 zinc finger E-box binding homeobox 2 protein-coding 9.061 1.566
-984 CDK11B cyclin dependent kinase 11B protein-coding 9.78 0.5341
-9840 TESPA1 thymocyte expressed, positive selection associated 1 protein-coding 4.243 1.917
-9841 ZBTB24 zinc finger and BTB domain containing 24 protein-coding 8.31 0.6048
-9842 PLEKHM1 pleckstrin homology and RUN domain containing M1 protein-coding 9.595 0.6423
-9843 HEPH hephaestin protein-coding 8.126 2.037
-9844 ELMO1 engulfment and cell motility 1 protein-coding 8.514 1.541
-9846 GAB2 GRB2 associated binding protein 2 protein-coding 9.299 1.275
-9847 C2CD5 C2 calcium dependent domain containing 5 protein-coding 9.755 0.7416
-9848 MFAP3L microfibril associated protein 3 like protein-coding 7.38 2.031
-9849 ZNF518A zinc finger protein 518A protein-coding 9.024 0.872
-9851 KIAA0753 KIAA0753 protein-coding 8.415 0.6824
-9852 EPM2AIP1 EPM2A interacting protein 1 protein-coding 9.526 0.9991
-9853 RUSC2 RUN and SH3 domain containing 2 protein-coding 9.281 1.09
-9854 C2CD2L C2CD2 like protein-coding 8.516 0.6903
-9855 FARP2 FERM, ARH/RhoGEF and pleckstrin domain protein 2 protein-coding 8.148 0.8956
-9856 KIAA0319 KIAA0319 protein-coding 4.11 2.317
-9857 CEP350 centrosomal protein 350 protein-coding 10.1 0.6661
-9858 PPP1R26 protein phosphatase 1 regulatory subunit 26 protein-coding 9.411 0.8408
-9859 CEP170 centrosomal protein 170 protein-coding 9.623 1.025
-9860 LRIG2 leucine rich repeats and immunoglobulin like domains 2 protein-coding 7.381 0.7908
+9817 KEAP1 kelch like ECH associated protein 1 protein-coding 10.86 0.5776
+9818 NUP58 nucleoporin 58 protein-coding 9.972 0.6467
+9819 TSC22D2 TSC22 domain family member 2 protein-coding 8.897 0.8585
+9820 CUL7 cullin 7 protein-coding 10.08 0.8741
+9821 RB1CC1 RB1 inducible coiled-coil 1 protein-coding 10.39 0.7077
+9823 ARMCX2 armadillo repeat containing, X-linked 2 protein-coding 8.981 1.768
+9824 ARHGAP11A Rho GTPase activating protein 11A protein-coding 8.186 1.606
+9825 SPATA2 spermatogenesis associated 2 protein-coding 8.988 0.5891
+9826 ARHGEF11 Rho guanine nucleotide exchange factor 11 protein-coding 10.4 0.6585
+9827 RGP1 RGP1 homolog, RAB6A GEF complex partner 1 protein-coding 6.849 1.053
+9828 ARHGEF17 Rho guanine nucleotide exchange factor 17 protein-coding 9.995 1.212
+9829 DNAJC6 DnaJ heat shock protein family (Hsp40) member C6 protein-coding 6.259 2.239
+983 CDK1 cyclin dependent kinase 1 protein-coding 8.874 1.834
+9830 TRIM14 tripartite motif containing 14 protein-coding 9.764 1.021
+9831 ZNF623 zinc finger protein 623 protein-coding 8.55 0.7795
+9832 JAKMIP2 janus kinase and microtubule interacting protein 2 protein-coding 4.338 2.762
+9833 MELK maternal embryonic leucine zipper kinase protein-coding 7.508 2.174
+9834 FAM30A family with sequence similarity 30 member A ncRNA 3.331 2.607
+9836 LCMT2 leucine carboxyl methyltransferase 2 protein-coding 8.095 0.6651
+9837 GINS1 GINS complex subunit 1 protein-coding 7.941 1.56
+9839 ZEB2 zinc finger E-box binding homeobox 2 protein-coding 9.062 1.566
+984 CDK11B cyclin dependent kinase 11B protein-coding 9.78 0.534
+9840 TESPA1 thymocyte expressed, positive selection associated 1 protein-coding 4.244 1.918
+9841 ZBTB24 zinc finger and BTB domain containing 24 protein-coding 8.31 0.6046
+9842 PLEKHM1 pleckstrin homology and RUN domain containing M1 protein-coding 9.595 0.6421
+9843 HEPH hephaestin protein-coding 8.127 2.037
+9844 ELMO1 engulfment and cell motility 1 protein-coding 8.516 1.541
+9846 GAB2 GRB2 associated binding protein 2 protein-coding 9.3 1.276
+9847 C2CD5 C2 calcium dependent domain containing 5 protein-coding 9.755 0.7414
+9848 MFAP3L microfibril associated protein 3 like protein-coding 7.38 2.03
+9849 ZNF518A zinc finger protein 518A protein-coding 9.025 0.8719
+9851 KIAA0753 KIAA0753 protein-coding 8.415 0.6822
+9852 EPM2AIP1 EPM2A interacting protein 1 protein-coding 9.526 0.9989
+9853 RUSC2 RUN and SH3 domain containing 2 protein-coding 9.282 1.09
+9854 C2CD2L C2CD2 like protein-coding 8.516 0.6902
+9855 FARP2 FERM, ARH/RhoGEF and pleckstrin domain protein 2 protein-coding 8.148 0.8955
+9856 KIAA0319 KIAA0319 protein-coding 4.112 2.317
+9857 CEP350 centrosomal protein 350 protein-coding 10.1 0.6659
+9858 PPP1R26 protein phosphatase 1 regulatory subunit 26 protein-coding 9.412 0.8405
+9859 CEP170 centrosomal protein 170 protein-coding 9.623 1.024
+9860 LRIG2 leucine rich repeats and immunoglobulin like domains 2 protein-coding 7.381 0.7907
9861 PSMD6 proteasome 26S subunit, non-ATPase 6 protein-coding 10.12 0.4421
-9862 MED24 mediator complex subunit 24 protein-coding 10.74 0.606
-9863 MAGI2 membrane associated guanylate kinase, WW and PDZ domain containing 2 protein-coding 7.194 1.714
-9865 TRIL TLR4 interactor with leucine rich repeats protein-coding 7.541 2.041
-9866 TRIM66 tripartite motif containing 66 protein-coding 7.713 0.8876
-9867 PJA2 praja ring finger ubiquitin ligase 2 protein-coding 11.27 0.888
-9868 TOMM70 translocase of outer mitochondrial membrane 70 protein-coding 10.95 0.5261
-9869 SETDB1 SET domain bifurcated 1 protein-coding 9.902 0.5406
-987 LRBA LPS responsive beige-like anchor protein protein-coding 10.48 0.9803
-9870 AREL1 apoptosis resistant E3 ubiquitin protein ligase 1 protein-coding 9.888 0.5628
-9871 SEC24D SEC24 homolog D, COPII coat complex component protein-coding 10.04 1.156
-9873 FCHSD2 FCH and double SH3 domains 2 protein-coding 9.543 0.852
-9874 TLK1 tousled like kinase 1 protein-coding 10.27 0.5708
+9862 MED24 mediator complex subunit 24 protein-coding 10.74 0.6057
+9863 MAGI2 membrane associated guanylate kinase, WW and PDZ domain containing 2 protein-coding 7.195 1.714
+9865 TRIL TLR4 interactor with leucine rich repeats protein-coding 7.541 2.04
+9866 TRIM66 tripartite motif containing 66 protein-coding 7.714 0.8878
+9867 PJA2 praja ring finger ubiquitin ligase 2 protein-coding 11.28 0.8879
+9868 TOMM70 translocase of outer mitochondrial membrane 70 protein-coding 10.94 0.5261
+9869 SETDB1 SET domain bifurcated 1 protein-coding 9.902 0.5404
+987 LRBA LPS responsive beige-like anchor protein protein-coding 10.48 0.9801
+9870 AREL1 apoptosis resistant E3 ubiquitin protein ligase 1 protein-coding 9.889 0.5625
+9871 SEC24D SEC24 homolog D, COPII coat complex component protein-coding 10.04 1.155
+9873 FCHSD2 FCH and double SH3 domains 2 protein-coding 9.543 0.8518
+9874 TLK1 tousled like kinase 1 protein-coding 10.27 0.5707
9875 URB1 URB1 ribosome biogenesis 1 homolog (S. cerevisiae) protein-coding 9.964 0.7381
-9877 ZC3H11A zinc finger CCCH-type containing 11A protein-coding 11.63 0.5338
-9878 TOX4 TOX high mobility group box family member 4 protein-coding 10.65 0.3972
-9879 DDX46 DEAD-box helicase 46 protein-coding 10.26 0.5293
+9877 ZC3H11A zinc finger CCCH-type containing 11A protein-coding 11.63 0.5336
+9878 TOX4 TOX high mobility group box family member 4 protein-coding 10.65 0.3971
+9879 DDX46 DEAD-box helicase 46 protein-coding 10.26 0.5291
988 CDC5L cell division cycle 5 like protein-coding 10.03 0.5396
-9880 ZBTB39 zinc finger and BTB domain containing 39 protein-coding 7.87 0.7716
-9881 TRANK1 tetratricopeptide repeat and ankyrin repeat containing 1 protein-coding 9.058 1.095
+9880 ZBTB39 zinc finger and BTB domain containing 39 protein-coding 7.871 0.7714
+9881 TRANK1 tetratricopeptide repeat and ankyrin repeat containing 1 protein-coding 9.059 1.095
9882 TBC1D4 TBC1 domain family member 4 protein-coding 9.457 1.104
-9883 POM121 POM121 transmembrane nucleoporin protein-coding 11.27 0.5437
-9884 LRRC37A leucine rich repeat containing 37A protein-coding 8.232 0.7815
-9885 OSBPL2 oxysterol binding protein like 2 protein-coding 10.26 0.5409
-9886 RHOBTB1 Rho related BTB domain containing 1 protein-coding 8.347 1.321
-9887 SMG7 SMG7, nonsense mediated mRNA decay factor protein-coding 11.17 0.4591
-9889 ZBED4 zinc finger BED-type containing 4 protein-coding 9.218 0.719
-989 SEPT7 septin 7 protein-coding 11.59 0.6833
-9890 PLPPR4 phospholipid phosphatase related 4 protein-coding 5.419 2.093
-9891 NUAK1 NUAK family kinase 1 protein-coding 8.561 1.253
-9894 TELO2 telomere maintenance 2 protein-coding 9.739 0.7067
-9895 TECPR2 tectonin beta-propeller repeat containing 2 protein-coding 9.392 0.7262
+9883 POM121 POM121 transmembrane nucleoporin protein-coding 11.27 0.5435
+9884 LRRC37A leucine rich repeat containing 37A protein-coding 8.233 0.7815
+9885 OSBPL2 oxysterol binding protein like 2 protein-coding 10.26 0.5407
+9886 RHOBTB1 Rho related BTB domain containing 1 protein-coding 8.346 1.321
+9887 SMG7 SMG7, nonsense mediated mRNA decay factor protein-coding 11.17 0.459
+9889 ZBED4 zinc finger BED-type containing 4 protein-coding 9.217 0.7188
+989 SEPT7 septin 7 protein-coding 11.59 0.6831
+9890 PLPPR4 phospholipid phosphatase related 4 protein-coding 5.42 2.093
+9891 NUAK1 NUAK family kinase 1 protein-coding 8.562 1.252
+9894 TELO2 telomere maintenance 2 protein-coding 9.738 0.7064
+9895 TECPR2 tectonin beta-propeller repeat containing 2 protein-coding 9.393 0.7261
9896 FIG4 FIG4 phosphoinositide 5-phosphatase protein-coding 8.7 0.6525
-9897 WASHC5 WASH complex subunit 5 protein-coding 10.18 0.6906
-9898 UBAP2L ubiquitin associated protein 2 like protein-coding 11.67 0.4914
-9899 SV2B synaptic vesicle glycoprotein 2B protein-coding 4.653 2.549
-990 CDC6 cell division cycle 6 protein-coding 8.133 1.832
-9900 SV2A synaptic vesicle glycoprotein 2A protein-coding 7.188 2.325
-9901 SRGAP3 SLIT-ROBO Rho GTPase activating protein 3 protein-coding 7.628 1.67
+9897 WASHC5 WASH complex subunit 5 protein-coding 10.18 0.6903
+9898 UBAP2L ubiquitin associated protein 2 like protein-coding 11.67 0.4913
+9899 SV2B synaptic vesicle glycoprotein 2B protein-coding 4.656 2.551
+990 CDC6 cell division cycle 6 protein-coding 8.131 1.833
+9900 SV2A synaptic vesicle glycoprotein 2A protein-coding 7.189 2.325
+9901 SRGAP3 SLIT-ROBO Rho GTPase activating protein 3 protein-coding 7.629 1.67
9902 MRC2 mannose receptor C type 2 protein-coding 10.54 1.7
-9903 KLHL21 kelch like family member 21 protein-coding 10.19 0.8551
-9904 RBM19 RNA binding motif protein 19 protein-coding 9.468 0.5583
-9905 SGSM2 small G protein signaling modulator 2 protein-coding 10.13 0.9637
+9903 KLHL21 kelch like family member 21 protein-coding 10.19 0.8547
+9904 RBM19 RNA binding motif protein 19 protein-coding 9.468 0.5582
+9905 SGSM2 small G protein signaling modulator 2 protein-coding 10.13 0.9636
9906 SLC35E2A solute carrier family 35 member E2A protein-coding 8.095 0.8335
-9907 AP5Z1 adaptor related protein complex 5 zeta 1 subunit protein-coding 9.57 0.6641
-9908 G3BP2 G3BP stress granule assembly factor 2 protein-coding 11.45 0.6483
-9909 DENND4B DENN domain containing 4B protein-coding 9.949 0.5793
-991 CDC20 cell division cycle 20 protein-coding 8.704 2.239
-9910 RABGAP1L RAB GTPase activating protein 1 like protein-coding 7.813 0.87
+9907 AP5Z1 adaptor related protein complex 5 zeta 1 subunit protein-coding 9.57 0.664
+9908 G3BP2 G3BP stress granule assembly factor 2 protein-coding 11.45 0.6482
+9909 DENND4B DENN domain containing 4B protein-coding 9.949 0.5795
+991 CDC20 cell division cycle 20 protein-coding 8.701 2.239
+9910 RABGAP1L RAB GTPase activating protein 1 like protein-coding 7.814 0.8698
9911 TMCC2 transmembrane and coiled-coil domain family 2 protein-coding 6.558 1.933
-9912 ARHGAP44 Rho GTPase activating protein 44 protein-coding 7.232 1.817
-9913 SUPT7L SPT7 like, STAGA complex gamma subunit protein-coding 10 0.4058
+9912 ARHGAP44 Rho GTPase activating protein 44 protein-coding 7.234 1.817
+9913 SUPT7L SPT7 like, STAGA complex gamma subunit protein-coding 10 0.4057
9914 ATP2C2 ATPase secretory pathway Ca2+ transporting 2 protein-coding 6.569 3.053
-9915 ARNT2 aryl hydrocarbon receptor nuclear translocator 2 protein-coding 8.641 2.36
-9917 FAM20B FAM20B, glycosaminoglycan xylosylkinase protein-coding 10.51 0.5848
-9918 NCAPD2 non-SMC condensin I complex subunit D2 protein-coding 10.71 1.018
-9919 SEC16A SEC16 homolog A, endoplasmic reticulum export factor protein-coding 11.58 0.6543
-9920 KBTBD11 kelch repeat and BTB domain containing 11 protein-coding 7.587 2.322
-9921 RNF10 ring finger protein 10 protein-coding 11.81 0.3857
+9915 ARNT2 aryl hydrocarbon receptor nuclear translocator 2 protein-coding 8.641 2.359
+9917 FAM20B FAM20B, glycosaminoglycan xylosylkinase protein-coding 10.51 0.5846
+9918 NCAPD2 non-SMC condensin I complex subunit D2 protein-coding 10.71 1.017
+9919 SEC16A SEC16 homolog A, endoplasmic reticulum export factor protein-coding 11.58 0.6541
+9920 KBTBD11 kelch repeat and BTB domain containing 11 protein-coding 7.588 2.322
+9921 RNF10 ring finger protein 10 protein-coding 11.81 0.3856
9922 IQSEC1 IQ motif and Sec7 domain 1 protein-coding 10.41 0.7935
-9923 ZBTB40 zinc finger and BTB domain containing 40 protein-coding 9.387 0.6044
+9923 ZBTB40 zinc finger and BTB domain containing 40 protein-coding 9.387 0.6045
9924 PAN2 PAN2 poly(A) specific ribonuclease subunit protein-coding 9.483 0.7468
-9925 ZBTB5 zinc finger and BTB domain containing 5 protein-coding 8.834 0.6283
-9926 LPGAT1 lysophosphatidylglycerol acyltransferase 1 protein-coding 10.62 0.8627
-9927 MFN2 mitofusin 2 protein-coding 11.4 0.5735
-9928 KIF14 kinesin family member 14 protein-coding 6.645 2.183
-9929 JOSD1 Josephin domain containing 1 protein-coding 10.53 0.5921
-993 CDC25A cell division cycle 25A protein-coding 7.031 1.536
-9931 HELZ helicase with zinc finger protein-coding 10.02 0.6094
-9933 PUM3 pumilio RNA binding family member 3 protein-coding 9.156 0.8414
-9934 P2RY14 purinergic receptor P2Y14 protein-coding 4.59 1.497
-9935 MAFB MAF bZIP transcription factor B protein-coding 9.584 1.376
-9936 CD302 CD302 molecule protein-coding 9.149 1.3
-9937 DCLRE1A DNA cross-link repair 1A protein-coding 8.328 0.6576
-9938 ARHGAP25 Rho GTPase activating protein 25 protein-coding 7.763 1.237
-9939 RBM8A RNA binding motif protein 8A protein-coding 10.93 0.525
+9925 ZBTB5 zinc finger and BTB domain containing 5 protein-coding 8.834 0.628
+9926 LPGAT1 lysophosphatidylglycerol acyltransferase 1 protein-coding 10.62 0.8626
+9927 MFN2 mitofusin 2 protein-coding 11.4 0.5734
+9928 KIF14 kinesin family member 14 protein-coding 6.643 2.184
+9929 JOSD1 Josephin domain containing 1 protein-coding 10.53 0.592
+993 CDC25A cell division cycle 25A protein-coding 7.03 1.536
+9931 HELZ helicase with zinc finger protein-coding 10.02 0.6093
+9933 PUM3 pumilio RNA binding family member 3 protein-coding 9.155 0.8411
+9934 P2RY14 purinergic receptor P2Y14 protein-coding 4.591 1.498
+9935 MAFB MAF bZIP transcription factor B protein-coding 9.585 1.376
+9936 CD302 CD302 molecule protein-coding 9.15 1.3
+9937 DCLRE1A DNA cross-link repair 1A protein-coding 8.328 0.6574
+9938 ARHGAP25 Rho GTPase activating protein 25 protein-coding 7.764 1.238
+9939 RBM8A RNA binding motif protein 8A protein-coding 10.93 0.5249
994 CDC25B cell division cycle 25B protein-coding 10.55 1.216
-9940 DLEC1 deleted in lung and esophageal cancer 1 protein-coding 3.76 2.08
-9941 EXOG exo/endonuclease G protein-coding 7.182 0.692
-9942 XYLB xylulokinase protein-coding 6.503 1.495
-9943 OXSR1 oxidative stress responsive 1 protein-coding 10.12 0.5413
+9940 DLEC1 deleted in lung and esophageal cancer 1 protein-coding 3.761 2.081
+9941 EXOG exo/endonuclease G protein-coding 7.183 0.6917
+9942 XYLB xylulokinase protein-coding 6.502 1.495
+9943 OXSR1 oxidative stress responsive 1 protein-coding 10.12 0.5412
9945 GFPT2 glutamine-fructose-6-phosphate transaminase 2 protein-coding 7.351 2.214
-9946 CRYZL1 crystallin zeta like 1 protein-coding 8.132 0.5854
-9948 WDR1 WD repeat domain 1 protein-coding 12.61 0.5847
+9946 CRYZL1 crystallin zeta like 1 protein-coding 8.132 0.5853
+9948 WDR1 WD repeat domain 1 protein-coding 12.61 0.5846
9949 AMMECR1 Alport syndrome, mental retardation, midface hypoplasia and elliptocytosis chromosomal region gene 1 protein-coding 8.514 1.096
-995 CDC25C cell division cycle 25C protein-coding 5.77 2.075
-9950 GOLGA5 golgin A5 protein-coding 10.25 0.5519
-9953 HS3ST3B1 heparan sulfate-glucosamine 3-sulfotransferase 3B1 protein-coding 3.201 1.713
-9955 HS3ST3A1 heparan sulfate-glucosamine 3-sulfotransferase 3A1 protein-coding 4.616 2.081
-9956 HS3ST2 heparan sulfate-glucosamine 3-sulfotransferase 2 protein-coding 4.853 2.223
+995 CDC25C cell division cycle 25C protein-coding 5.767 2.076
+9950 GOLGA5 golgin A5 protein-coding 10.25 0.5517
+9953 HS3ST3B1 heparan sulfate-glucosamine 3-sulfotransferase 3B1 protein-coding 3.202 1.713
+9955 HS3ST3A1 heparan sulfate-glucosamine 3-sulfotransferase 3A1 protein-coding 4.617 2.08
+9956 HS3ST2 heparan sulfate-glucosamine 3-sulfotransferase 2 protein-coding 4.854 2.223
9957 HS3ST1 heparan sulfate-glucosamine 3-sulfotransferase 1 protein-coding 7.357 1.815
-9958 USP15 ubiquitin specific peptidase 15 protein-coding 9.697 0.5922
-996 CDC27 cell division cycle 27 protein-coding 10.31 0.5262
-9960 USP3 ubiquitin specific peptidase 3 protein-coding 8.925 0.6517
-9961 MVP major vault protein protein-coding 12.03 1.15
-9962 SLC23A2 solute carrier family 23 member 2 protein-coding 9.892 1.155
-9963 SLC23A1 solute carrier family 23 member 1 protein-coding 3.674 2.594
-9966 TNFSF15 TNF superfamily member 15 protein-coding 3.696 2.113
+9958 USP15 ubiquitin specific peptidase 15 protein-coding 9.697 0.5921
+996 CDC27 cell division cycle 27 protein-coding 10.31 0.5261
+9960 USP3 ubiquitin specific peptidase 3 protein-coding 8.925 0.6515
+9961 MVP major vault protein protein-coding 12.03 1.149
+9962 SLC23A2 solute carrier family 23 member 2 protein-coding 9.893 1.154
+9963 SLC23A1 solute carrier family 23 member 1 protein-coding 3.674 2.593
+9966 TNFSF15 TNF superfamily member 15 protein-coding 3.698 2.113
9967 THRAP3 thyroid hormone receptor associated protein 3 protein-coding 11.58 0.4337
-9968 MED12 mediator complex subunit 12 protein-coding 10.1 0.6658
-9969 MED13 mediator complex subunit 13 protein-coding 10.7 0.7085
-997 CDC34 cell division cycle 34 protein-coding 10.03 0.7512
-9970 NR1I3 nuclear receptor subfamily 1 group I member 3 protein-coding 3.446 1.7
-9972 NUP153 nucleoporin 153 protein-coding 10.19 0.7259
-9973 CCS copper chaperone for superoxide dismutase protein-coding 9.273 0.791
-9975 NR1D2 nuclear receptor subfamily 1 group D member 2 protein-coding 9.859 0.8651
-9976 CLEC2B C-type lectin domain family 2 member B protein-coding 7.398 1.632
-9978 RBX1 ring-box 1 protein-coding 10.05 0.6048
-998 CDC42 cell division cycle 42 protein-coding 12.3 0.5206
+9968 MED12 mediator complex subunit 12 protein-coding 10.1 0.6656
+9969 MED13 mediator complex subunit 13 protein-coding 10.7 0.7083
+997 CDC34 cell division cycle 34 protein-coding 10.03 0.7511
+9970 NR1I3 nuclear receptor subfamily 1 group I member 3 protein-coding 3.445 1.7
+9972 NUP153 nucleoporin 153 protein-coding 10.19 0.7256
+9973 CCS copper chaperone for superoxide dismutase protein-coding 9.273 0.7907
+9975 NR1D2 nuclear receptor subfamily 1 group D member 2 protein-coding 9.859 0.8649
+9976 CLEC2B C-type lectin domain family 2 member B protein-coding 7.399 1.632
+9978 RBX1 ring-box 1 protein-coding 10.04 0.6048
+998 CDC42 cell division cycle 42 protein-coding 12.3 0.5204
9980 DOPEY2 dopey family member 2 protein-coding 9.505 1.075
-9984 THOC1 THO complex 1 protein-coding 8.712 0.6624
-9985 REC8 REC8 meiotic recombination protein protein-coding 7.158 2.144
-9986 RCE1 Ras converting CAAX endopeptidase 1 protein-coding 8.497 0.6864
-9987 HNRNPDL heterogeneous nuclear ribonucleoprotein D like protein-coding 11.81 0.459
-9988 DMTF1 cyclin D binding myb like transcription factor 1 protein-coding 9.608 0.7483
-9989 PPP4R1 protein phosphatase 4 regulatory subunit 1 protein-coding 10.75 0.7869
-999 CDH1 cadherin 1 protein-coding 11.59 3.277
-9990 SLC12A6 solute carrier family 12 member 6 protein-coding 9.206 0.9617
-9991 PTBP3 polypyrimidine tract binding protein 3 protein-coding 11.15 1.046
-9992 KCNE2 potassium voltage-gated channel subfamily E regulatory subunit 2 protein-coding 2.996 1.242
-9993 DGCR2 DiGeorge syndrome critical region gene 2 protein-coding 11.68 0.5993
-9994 CASP8AP2 caspase 8 associated protein 2 protein-coding 8.37 0.9155
+9984 THOC1 THO complex 1 protein-coding 8.712 0.6622
+9985 REC8 REC8 meiotic recombination protein protein-coding 7.16 2.144
+9986 RCE1 Ras converting CAAX endopeptidase 1 protein-coding 8.496 0.6862
+9987 HNRNPDL heterogeneous nuclear ribonucleoprotein D like protein-coding 11.81 0.4588
+9988 DMTF1 cyclin D binding myb like transcription factor 1 protein-coding 9.608 0.7484
+9989 PPP4R1 protein phosphatase 4 regulatory subunit 1 protein-coding 10.75 0.7867
+999 CDH1 cadherin 1 protein-coding 11.59 3.278
+9990 SLC12A6 solute carrier family 12 member 6 protein-coding 9.207 0.9616
+9991 PTBP3 polypyrimidine tract binding protein 3 protein-coding 11.15 1.045
+9992 KCNE2 potassium voltage-gated channel subfamily E regulatory subunit 2 protein-coding 2.995 1.242
+9993 DGCR2 DiGeorge syndrome critical region gene 2 protein-coding 11.68 0.599
+9994 CASP8AP2 caspase 8 associated protein 2 protein-coding 8.37 0.9152
9997 SCO2 SCO2, cytochrome c oxidase assembly protein protein-coding 9.193 0.8508
diff --git a/data/expression-matrix.tsv.bz2 b/data/expression-matrix.tsv.bz2
index 07fced1..a209116 100644
--- a/data/expression-matrix.tsv.bz2
+++ b/data/expression-matrix.tsv.bz2
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:5fea7d44737de16c88ad150fe290784dc55f080cf1871b952ac0ee0d43eec361
-size 172596118
+oid sha256:e5dfe469cd327026a81b0fa70691dd61d37a6c03f64f33f66ad7c9966a7be512
+size 172795211
diff --git a/data/mutation-genes.tsv b/data/mutation-genes.tsv
index c42daae..aa3c685 100644
--- a/data/mutation-genes.tsv
+++ b/data/mutation-genes.tsv
@@ -1,20225 +1,20225 @@
entrez_gene_id symbol description gene_type n_mutations mutation_freq
-1 A1BG alpha-1-B glycoprotein protein-coding 54 0.006438
-2 A2M alpha-2-macroglobulin protein-coding 198 0.02361
-9 NAT1 N-acetyltransferase 1 protein-coding 33 0.003934
-10 NAT2 N-acetyltransferase 2 protein-coding 40 0.004769
-12 SERPINA3 serpin family A member 3 protein-coding 78 0.009299
-13 AADAC arylacetamide deacetylase protein-coding 58 0.006915
-14 AAMP angio associated migratory cell protein protein-coding 30 0.003577
-15 AANAT aralkylamine N-acetyltransferase protein-coding 25 0.00298
-16 AARS alanyl-tRNA synthetase protein-coding 85 0.01013
-18 ABAT 4-aminobutyrate aminotransferase protein-coding 68 0.008107
-19 ABCA1 ATP binding cassette subfamily A member 1 protein-coding 214 0.02551
-20 ABCA2 ATP binding cassette subfamily A member 2 protein-coding 188 0.02241
-21 ABCA3 ATP binding cassette subfamily A member 3 protein-coding 167 0.01991
-22 ABCB7 ATP binding cassette subfamily B member 7 protein-coding 100 0.01192
-23 ABCF1 ATP binding cassette subfamily F member 1 protein-coding 88 0.01049
-24 ABCA4 ATP binding cassette subfamily A member 4 protein-coding 227 0.02706
-25 ABL1 ABL proto-oncogene 1, non-receptor tyrosine kinase protein-coding 108 0.01288
-26 AOC1 amine oxidase, copper containing 1 protein-coding 190 0.02265
-27 ABL2 ABL proto-oncogene 2, non-receptor tyrosine kinase protein-coding 141 0.01681
-28 ABO ABO, alpha 1-3-N-acetylgalactosaminyltransferase and alpha 1-3-galactosyltransferase protein-coding 6 0.0007153
-29 ABR ABR, RhoGEF and GTPase activating protein protein-coding 101 0.01204
-30 ACAA1 acetyl-CoA acyltransferase 1 protein-coding 38 0.00453
-31 ACACA acetyl-CoA carboxylase alpha protein-coding 247 0.02945
-32 ACACB acetyl-CoA carboxylase beta protein-coding 282 0.03362
-33 ACADL acyl-CoA dehydrogenase long chain protein-coding 64 0.00763
-34 ACADM acyl-CoA dehydrogenase medium chain protein-coding 65 0.007749
-35 ACADS acyl-CoA dehydrogenase short chain protein-coding 50 0.005961
-36 ACADSB acyl-CoA dehydrogenase short/branched chain protein-coding 50 0.005961
-37 ACADVL acyl-CoA dehydrogenase very long chain protein-coding 55 0.006557
-38 ACAT1 acetyl-CoA acetyltransferase 1 protein-coding 51 0.00608
-39 ACAT2 acetyl-CoA acetyltransferase 2 protein-coding 39 0.004649
-40 ASIC2 acid sensing ion channel subunit 2 protein-coding 215 0.02563
-41 ASIC1 acid sensing ion channel subunit 1 protein-coding 66 0.007868
-43 ACHE acetylcholinesterase (Cartwright blood group) protein-coding 70 0.008345
-47 ACLY ATP citrate lyase protein-coding 105 0.01252
-48 ACO1 aconitase 1 protein-coding 85 0.01013
-49 ACR acrosin protein-coding 36 0.004292
-50 ACO2 aconitase 2 protein-coding 72 0.008584
-51 ACOX1 acyl-CoA oxidase 1 protein-coding 71 0.008464
-52 ACP1 acid phosphatase 1 protein-coding 24 0.002861
-53 ACP2 acid phosphatase 2, lysosomal protein-coding 38 0.00453
-54 ACP5 acid phosphatase 5, tartrate resistant protein-coding 42 0.005007
-55 ACPP acid phosphatase, prostate protein-coding 67 0.007988
-56 ACRV1 acrosomal vesicle protein 1 protein-coding 32 0.003815
-58 ACTA1 actin, alpha 1, skeletal muscle protein-coding 70 0.008345
-59 ACTA2 actin, alpha 2, smooth muscle, aorta protein-coding 50 0.005961
-60 ACTB actin beta protein-coding 94 0.01121
-70 ACTC1 actin, alpha, cardiac muscle 1 protein-coding 89 0.01061
-71 ACTG1 actin gamma 1 protein-coding 61 0.007272
-72 ACTG2 actin, gamma 2, smooth muscle, enteric protein-coding 62 0.007392
-81 ACTN4 actinin alpha 4 protein-coding 124 0.01478
-86 ACTL6A actin like 6A protein-coding 61 0.007272
-87 ACTN1 actinin alpha 1 protein-coding 98 0.01168
-88 ACTN2 actinin alpha 2 protein-coding 179 0.02134
-90 ACVR1 activin A receptor type 1 protein-coding 67 0.007988
-91 ACVR1B activin A receptor type 1B protein-coding 110 0.01311
-92 ACVR2A activin A receptor type 2A protein-coding 181 0.02158
-93 ACVR2B activin A receptor type 2B protein-coding 56 0.006676
-94 ACVRL1 activin A receptor like type 1 protein-coding 81 0.009657
-95 ACY1 aminoacylase 1 protein-coding 41 0.004888
-97 ACYP1 acylphosphatase 1 protein-coding 13 0.00155
-98 ACYP2 acylphosphatase 2 protein-coding 7 0.0008345
-100 ADA adenosine deaminase protein-coding 37 0.004411
-101 ADAM8 ADAM metallopeptidase domain 8 protein-coding 75 0.008941
-102 ADAM10 ADAM metallopeptidase domain 10 protein-coding 89 0.01061
-103 ADAR adenosine deaminase, RNA specific protein-coding 113 0.01347
-104 ADARB1 adenosine deaminase, RNA specific B1 protein-coding 84 0.01001
-105 ADARB2 adenosine deaminase, RNA specific B2 (inactive) protein-coding 133 0.01586
-107 ADCY1 adenylate cyclase 1 protein-coding 179 0.02134
-108 ADCY2 adenylate cyclase 2 protein-coding 249 0.02969
-109 ADCY3 adenylate cyclase 3 protein-coding 119 0.01419
-111 ADCY5 adenylate cyclase 5 protein-coding 172 0.02051
-112 ADCY6 adenylate cyclase 6 protein-coding 121 0.01443
-113 ADCY7 adenylate cyclase 7 protein-coding 112 0.01335
-114 ADCY8 adenylate cyclase 8 protein-coding 384 0.04578
-115 ADCY9 adenylate cyclase 9 protein-coding 159 0.01896
-116 ADCYAP1 adenylate cyclase activating polypeptide 1 protein-coding 35 0.004173
-117 ADCYAP1R1 ADCYAP receptor type I protein-coding 96 0.01144
-118 ADD1 adducin 1 protein-coding 91 0.01085
-119 ADD2 adducin 2 protein-coding 111 0.01323
-120 ADD3 adducin 3 protein-coding 104 0.0124
-123 PLIN2 perilipin 2 protein-coding 39 0.004649
-124 ADH1A alcohol dehydrogenase 1A (class I), alpha polypeptide protein-coding 53 0.006319
-125 ADH1B alcohol dehydrogenase 1B (class I), beta polypeptide protein-coding 61 0.007272
-126 ADH1C alcohol dehydrogenase 1C (class I), gamma polypeptide protein-coding 78 0.009299
-127 ADH4 alcohol dehydrogenase 4 (class II), pi polypeptide protein-coding 46 0.005484
-128 ADH5 alcohol dehydrogenase 5 (class III), chi polypeptide protein-coding 31 0.003696
-130 ADH6 alcohol dehydrogenase 6 (class V) protein-coding 56 0.006676
-131 ADH7 alcohol dehydrogenase 7 (class IV), mu or sigma polypeptide protein-coding 55 0.006557
-132 ADK adenosine kinase protein-coding 31 0.003696
-133 ADM adrenomedullin protein-coding 23 0.002742
-134 ADORA1 adenosine A1 receptor protein-coding 59 0.007034
-135 ADORA2A adenosine A2a receptor protein-coding 53 0.006319
-136 ADORA2B adenosine A2b receptor protein-coding 19 0.002265
-140 ADORA3 adenosine A3 receptor protein-coding 54 0.006438
-141 ADPRH ADP-ribosylarginine hydrolase protein-coding 49 0.005842
-142 PARP1 poly(ADP-ribose) polymerase 1 protein-coding 100 0.01192
-143 PARP4 poly(ADP-ribose) polymerase family member 4 protein-coding 148 0.01764
-146 ADRA1D adrenoceptor alpha 1D protein-coding 135 0.01609
-147 ADRA1B adrenoceptor alpha 1B protein-coding 53 0.006319
-148 ADRA1A adrenoceptor alpha 1A protein-coding 88 0.01049
-150 ADRA2A adrenoceptor alpha 2A protein-coding 64 0.00763
-151 ADRA2B adrenoceptor alpha 2B protein-coding 61 0.007272
-152 ADRA2C adrenoceptor alpha 2C protein-coding 45 0.005365
-153 ADRB1 adrenoceptor beta 1 protein-coding 36 0.004292
-154 ADRB2 adrenoceptor beta 2 protein-coding 51 0.00608
-155 ADRB3 adrenoceptor beta 3 protein-coding 41 0.004888
-156 GRK2 G protein-coupled receptor kinase 2 protein-coding 74 0.008822
-157 GRK3 G protein-coupled receptor kinase 3 protein-coding 82 0.009776
-158 ADSL adenylosuccinate lyase protein-coding 108 0.01288
-159 ADSS adenylosuccinate synthase protein-coding 53 0.006319
-160 AP2A1 adaptor related protein complex 2 alpha 1 subunit protein-coding 89 0.01061
-161 AP2A2 adaptor related protein complex 2 alpha 2 subunit protein-coding 99 0.0118
-162 AP1B1 adaptor related protein complex 1 beta 1 subunit protein-coding 94 0.01121
-163 AP2B1 adaptor related protein complex 2 beta 1 subunit protein-coding 97 0.01156
-164 AP1G1 adaptor related protein complex 1 gamma 1 subunit protein-coding 96 0.01144
-165 AEBP1 AE binding protein 1 protein-coding 144 0.01717
-166 AES amino-terminal enhancer of split protein-coding 13 0.00155
-167 CRISP1 cysteine rich secretory protein 1 protein-coding 58 0.006915
-172 AFG3L1P AFG3 like matrix AAA peptidase subunit 1, pseudogene pseudo 19 0.002265
-173 AFM afamin protein-coding 93 0.01109
-174 AFP alpha fetoprotein protein-coding 79 0.009418
-175 AGA aspartylglucosaminidase protein-coding 56 0.006676
-176 ACAN aggrecan protein-coding 302 0.036
-177 AGER advanced glycosylation end-product specific receptor protein-coding 33 0.003934
-178 AGL amylo-alpha-1, 6-glucosidase, 4-alpha-glucanotransferase protein-coding 156 0.0186
-181 AGRP agouti related neuropeptide protein-coding 12 0.001431
-182 JAG1 jagged 1 protein-coding 157 0.01872
-183 AGT angiotensinogen protein-coding 65 0.007749
-185 AGTR1 angiotensin II receptor type 1 protein-coding 78 0.009299
-186 AGTR2 angiotensin II receptor type 2 protein-coding 66 0.007868
-187 APLNR apelin receptor protein-coding 84 0.01001
-189 AGXT alanine--glyoxylate and serine--pyruvate aminotransferase protein-coding 109 0.01299
-190 NR0B1 nuclear receptor subfamily 0 group B member 1 protein-coding 91 0.01085
-191 AHCY adenosylhomocysteinase protein-coding 47 0.005603
-196 AHR aryl hydrocarbon receptor protein-coding 107 0.01276
-197 AHSG alpha 2-HS glycoprotein protein-coding 62 0.007392
-199 AIF1 allograft inflammatory factor 1 protein-coding 16 0.001907
-202 CRYBG1 crystallin beta-gamma domain containing 1 protein-coding 154 0.01836
-203 AK1 adenylate kinase 1 protein-coding 15 0.001788
-204 AK2 adenylate kinase 2 protein-coding 15 0.001788
-205 AK4 adenylate kinase 4 protein-coding 46 0.005484
-207 AKT1 AKT serine/threonine kinase 1 protein-coding 90 0.01073
-208 AKT2 AKT serine/threonine kinase 2 protein-coding 69 0.008226
-210 ALAD aminolevulinate dehydratase protein-coding 34 0.004053
-211 ALAS1 5'-aminolevulinate synthase 1 protein-coding 67 0.007988
-212 ALAS2 5'-aminolevulinate synthase 2 protein-coding 91 0.01085
-213 ALB albumin protein-coding 147 0.01753
-214 ALCAM activated leukocyte cell adhesion molecule protein-coding 80 0.009537
-215 ABCD1 ATP binding cassette subfamily D member 1 protein-coding 102 0.01216
-216 ALDH1A1 aldehyde dehydrogenase 1 family member A1 protein-coding 63 0.007511
-217 ALDH2 aldehyde dehydrogenase 2 family member protein-coding 44 0.005246
-218 ALDH3A1 aldehyde dehydrogenase 3 family member A1 protein-coding 62 0.007392
-219 ALDH1B1 aldehyde dehydrogenase 1 family member B1 protein-coding 69 0.008226
-220 ALDH1A3 aldehyde dehydrogenase 1 family member A3 protein-coding 71 0.008464
-221 ALDH3B1 aldehyde dehydrogenase 3 family member B1 protein-coding 40 0.004769
-222 ALDH3B2 aldehyde dehydrogenase 3 family member B2 protein-coding 57 0.006795
-223 ALDH9A1 aldehyde dehydrogenase 9 family member A1 protein-coding 56 0.006676
-224 ALDH3A2 aldehyde dehydrogenase 3 family member A2 protein-coding 44 0.005246
-225 ABCD2 ATP binding cassette subfamily D member 2 protein-coding 122 0.01454
-226 ALDOA aldolase, fructose-bisphosphate A protein-coding 43 0.005126
-229 ALDOB aldolase, fructose-bisphosphate B protein-coding 76 0.009061
-230 ALDOC aldolase, fructose-bisphosphate C protein-coding 36 0.004292
-231 AKR1B1 aldo-keto reductase family 1 member B protein-coding 164 0.01955
-238 ALK ALK receptor tyrosine kinase protein-coding 211 0.02515
-239 ALOX12 arachidonate 12-lipoxygenase, 12S type protein-coding 63 0.007511
-240 ALOX5 arachidonate 5-lipoxygenase protein-coding 108 0.01288
-241 ALOX5AP arachidonate 5-lipoxygenase activating protein protein-coding 18 0.002146
-242 ALOX12B arachidonate 12-lipoxygenase, 12R type protein-coding 94 0.01121
-246 ALOX15 arachidonate 15-lipoxygenase protein-coding 58 0.006915
-247 ALOX15B arachidonate 15-lipoxygenase, type B protein-coding 87 0.01037
-248 ALPI alkaline phosphatase, intestinal protein-coding 72 0.008584
-249 ALPL alkaline phosphatase, liver/bone/kidney protein-coding 60 0.007153
-250 ALPP alkaline phosphatase, placental protein-coding 89 0.01061
-251 ALPPL2 alkaline phosphatase, placental like 2 protein-coding 61 0.007272
-257 ALX3 ALX homeobox 3 protein-coding 28 0.003338
-258 AMBN ameloblastin protein-coding 60 0.007153
-259 AMBP alpha-1-microglobulin/bikunin precursor protein-coding 44 0.005246
-262 AMD1 adenosylmethionine decarboxylase 1 protein-coding 48 0.005722
-265 AMELX amelogenin, X-linked protein-coding 41 0.004888
-266 AMELY amelogenin, Y-linked protein-coding 7 0.0008345
-267 AMFR autocrine motility factor receptor protein-coding 62 0.007392
-268 AMH anti-Mullerian hormone protein-coding 23 0.002742
-269 AMHR2 anti-Mullerian hormone receptor type 2 protein-coding 64 0.00763
-270 AMPD1 adenosine monophosphate deaminase 1 protein-coding 145 0.01729
-271 AMPD2 adenosine monophosphate deaminase 2 protein-coding 84 0.01001
-272 AMPD3 adenosine monophosphate deaminase 3 protein-coding 96 0.01144
-273 AMPH amphiphysin protein-coding 180 0.02146
-274 BIN1 bridging integrator 1 protein-coding 62 0.007392
-275 AMT aminomethyltransferase protein-coding 32 0.003815
-276 AMY1A amylase, alpha 1A (salivary) protein-coding 20 0.002384
-277 AMY1B amylase, alpha 1B (salivary) protein-coding 10 0.001192
-278 AMY1C amylase, alpha 1C (salivary) protein-coding 31 0.003696
-279 AMY2A amylase, alpha 2A (pancreatic) protein-coding 93 0.01109
-280 AMY2B amylase, alpha 2B (pancreatic) protein-coding 130 0.0155
-283 ANG angiogenin protein-coding 11 0.001311
-284 ANGPT1 angiopoietin 1 protein-coding 76 0.009061
-285 ANGPT2 angiopoietin 2 protein-coding 66 0.007868
-286 ANK1 ankyrin 1 protein-coding 274 0.03267
-287 ANK2 ankyrin 2 protein-coding 505 0.06021
-288 ANK3 ankyrin 3 protein-coding 439 0.05234
-290 ANPEP alanyl aminopeptidase, membrane protein-coding 117 0.01395
-291 SLC25A4 solute carrier family 25 member 4 protein-coding 29 0.003457
-292 SLC25A5 solute carrier family 25 member 5 protein-coding 41 0.004888
-293 SLC25A6 solute carrier family 25 member 6 protein-coding 44 0.005246
-301 ANXA1 annexin A1 protein-coding 49 0.005842
-302 ANXA2 annexin A2 protein-coding 35 0.004173
-306 ANXA3 annexin A3 protein-coding 41 0.004888
-307 ANXA4 annexin A4 protein-coding 48 0.005722
-308 ANXA5 annexin A5 protein-coding 48 0.005722
-309 ANXA6 annexin A6 protein-coding 74 0.008822
-310 ANXA7 annexin A7 protein-coding 53 0.006319
-311 ANXA11 annexin A11 protein-coding 59 0.007034
-312 ANXA13 annexin A13 protein-coding 73 0.008703
-313 AOAH acyloxyacyl hydrolase protein-coding 78 0.009299
-314 AOC2 amine oxidase, copper containing 2 protein-coding 77 0.00918
-316 AOX1 aldehyde oxidase 1 protein-coding 163 0.01943
-317 APAF1 apoptotic peptidase activating factor 1 protein-coding 130 0.0155
-318 NUDT2 nudix hydrolase 2 protein-coding 16 0.001907
-319 APOF apolipoprotein F protein-coding 28 0.003338
-320 APBA1 amyloid beta precursor protein binding family A member 1 protein-coding 122 0.01454
-321 APBA2 amyloid beta precursor protein binding family A member 2 protein-coding 161 0.01919
-322 APBB1 amyloid beta precursor protein binding family B member 1 protein-coding 97 0.01156
-323 APBB2 amyloid beta precursor protein binding family B member 2 protein-coding 76 0.009061
-324 APC APC, WNT signaling pathway regulator protein-coding 586 0.06986
-325 APCS amyloid P component, serum protein-coding 48 0.005722
-326 AIRE autoimmune regulator protein-coding 53 0.006319
-327 APEH acylaminoacyl-peptide hydrolase protein-coding 65 0.007749
-328 APEX1 apurinic/apyrimidinic endodeoxyribonuclease 1 protein-coding 95 0.01133
-329 BIRC2 baculoviral IAP repeat containing 2 protein-coding 67 0.007988
-330 BIRC3 baculoviral IAP repeat containing 3 protein-coding 66 0.007868
-331 XIAP X-linked inhibitor of apoptosis protein-coding 74 0.008822
-332 BIRC5 baculoviral IAP repeat containing 5 protein-coding 21 0.002504
-333 APLP1 amyloid beta precursor like protein 1 protein-coding 111 0.01323
-334 APLP2 amyloid beta precursor like protein 2 protein-coding 136 0.01621
-335 APOA1 apolipoprotein A1 protein-coding 36 0.004292
-336 APOA2 apolipoprotein A2 protein-coding 11 0.001311
-337 APOA4 apolipoprotein A4 protein-coding 79 0.009418
-338 APOB apolipoprotein B protein-coding 595 0.07093
-339 APOBEC1 apolipoprotein B mRNA editing enzyme catalytic subunit 1 protein-coding 65 0.007749
-341 APOC1 apolipoprotein C1 protein-coding 10 0.001192
-342 APOC1P1 apolipoprotein C1 pseudogene 1 pseudo 5 0.0005961
-343 AQP8 aquaporin 8 protein-coding 42 0.005007
-344 APOC2 apolipoprotein C2 protein-coding 11 0.001311
-345 APOC3 apolipoprotein C3 protein-coding 13 0.00155
-346 APOC4 apolipoprotein C4 protein-coding 14 0.001669
-347 APOD apolipoprotein D protein-coding 31 0.003696
-348 APOE apolipoprotein E protein-coding 20 0.002384
-350 APOH apolipoprotein H protein-coding 58 0.006915
-351 APP amyloid beta precursor protein protein-coding 105 0.01252
-353 APRT adenine phosphoribosyltransferase protein-coding 16 0.001907
-354 KLK3 kallikrein related peptidase 3 protein-coding 42 0.005007
-355 FAS Fas cell surface death receptor protein-coding 61 0.007272
-356 FASLG Fas ligand protein-coding 48 0.005722
-357 SHROOM2 shroom family member 2 protein-coding 178 0.02122
-358 AQP1 aquaporin 1 (Colton blood group) protein-coding 34 0.004053
-359 AQP2 aquaporin 2 protein-coding 33 0.003934
-360 AQP3 aquaporin 3 (Gill blood group) protein-coding 29 0.003457
-361 AQP4 aquaporin 4 protein-coding 39 0.004649
-362 AQP5 aquaporin 5 protein-coding 27 0.003219
-363 AQP6 aquaporin 6 protein-coding 38 0.00453
-364 AQP7 aquaporin 7 protein-coding 50 0.005961
-366 AQP9 aquaporin 9 protein-coding 56 0.006676
-367 AR androgen receptor protein-coding 129 0.01538
-368 ABCC6 ATP binding cassette subfamily C member 6 protein-coding 134 0.01598
-369 ARAF A-Raf proto-oncogene, serine/threonine kinase protein-coding 101 0.01204
-372 ARCN1 archain 1 protein-coding 42 0.005007
-373 TRIM23 tripartite motif containing 23 protein-coding 75 0.008941
-374 AREG amphiregulin protein-coding 148 0.01764
-375 ARF1 ADP ribosylation factor 1 protein-coding 35 0.004173
-377 ARF3 ADP ribosylation factor 3 protein-coding 12 0.001431
-378 ARF4 ADP ribosylation factor 4 protein-coding 19 0.002265
-379 ARL4D ADP ribosylation factor like GTPase 4D protein-coding 46 0.005484
-381 ARF5 ADP ribosylation factor 5 protein-coding 23 0.002742
-382 ARF6 ADP ribosylation factor 6 protein-coding 17 0.002027
-383 ARG1 arginase 1 protein-coding 32 0.003815
-384 ARG2 arginase 2 protein-coding 34 0.004053
-387 RHOA ras homolog family member A protein-coding 90 0.01073
-388 RHOB ras homolog family member B protein-coding 43 0.005126
-389 RHOC ras homolog family member C protein-coding 25 0.00298
-390 RND3 Rho family GTPase 3 protein-coding 38 0.00453
-391 RHOG ras homolog family member G protein-coding 27 0.003219
-392 ARHGAP1 Rho GTPase activating protein 1 protein-coding 38 0.00453
-393 ARHGAP4 Rho GTPase activating protein 4 protein-coding 109 0.01299
-394 ARHGAP5 Rho GTPase activating protein 5 protein-coding 182 0.0217
-395 ARHGAP6 Rho GTPase activating protein 6 protein-coding 133 0.01586
-396 ARHGDIA Rho GDP dissociation inhibitor alpha protein-coding 30 0.003577
-397 ARHGDIB Rho GDP dissociation inhibitor beta protein-coding 31 0.003696
-398 ARHGDIG Rho GDP dissociation inhibitor gamma protein-coding 9 0.001073
-399 RHOH ras homolog family member H protein-coding 31 0.003696
-400 ARL1 ADP ribosylation factor like GTPase 1 protein-coding 19 0.002265
-401 PHOX2A paired like homeobox 2a protein-coding 248 0.02957
-402 ARL2 ADP ribosylation factor like GTPase 2 protein-coding 18 0.002146
-403 ARL3 ADP ribosylation factor like GTPase 3 protein-coding 11 0.001311
-405 ARNT aryl hydrocarbon receptor nuclear translocator protein-coding 80 0.009537
-406 ARNTL aryl hydrocarbon receptor nuclear translocator like protein-coding 58 0.006915
-407 ARR3 arrestin 3 protein-coding 47 0.005603
-408 ARRB1 arrestin beta 1 protein-coding 49 0.005842
-409 ARRB2 arrestin beta 2 protein-coding 36 0.004292
-410 ARSA arylsulfatase A protein-coding 43 0.005126
-411 ARSB arylsulfatase B protein-coding 60 0.007153
-412 STS steroid sulfatase protein-coding 92 0.01097
-414 ARSD arylsulfatase D protein-coding 65 0.007749
-415 ARSE arylsulfatase E (chondrodysplasia punctata 1) protein-coding 65 0.007749
-416 ARSF arylsulfatase F protein-coding 90 0.01073
-417 ART1 ADP-ribosyltransferase 1 protein-coding 50 0.005961
-419 ART3 ADP-ribosyltransferase 3 protein-coding 42 0.005007
-420 ART4 ADP-ribosyltransferase 4 (Dombrock blood group) protein-coding 100 0.01192
-421 ARVCF ARVCF, delta catenin family member protein-coding 98 0.01168
-427 ASAH1 N-acylsphingosine amidohydrolase 1 protein-coding 40 0.004769
-429 ASCL1 achaete-scute family bHLH transcription factor 1 protein-coding 27 0.003219
-430 ASCL2 achaete-scute family bHLH transcription factor 2 protein-coding 2 0.0002384
-432 ASGR1 asialoglycoprotein receptor 1 protein-coding 27 0.003219
-433 ASGR2 asialoglycoprotein receptor 2 protein-coding 35 0.004173
-434 ASIP agouti signaling protein protein-coding 15 0.001788
-435 ASL argininosuccinate lyase protein-coding 56 0.006676
-438 ASMT acetylserotonin O-methyltransferase protein-coding 61 0.007272
-439 ASNA1 arsA arsenite transporter, ATP-binding, homolog 1 (bacterial) protein-coding 38 0.00453
-440 ASNS asparagine synthetase (glutamine-hydrolyzing) protein-coding 75 0.008941
-443 ASPA aspartoacylase protein-coding 47 0.005603
-444 ASPH aspartate beta-hydroxylase protein-coding 102 0.01216
-445 ASS1 argininosuccinate synthase 1 protein-coding 59 0.007034
-460 ASTN1 astrotactin 1 protein-coding 337 0.04018
-462 SERPINC1 serpin family C member 1 protein-coding 74 0.008822
-463 ZFHX3 zinc finger homeobox 3 protein-coding 384 0.04578
-466 ATF1 activating transcription factor 1 protein-coding 28 0.003338
-467 ATF3 activating transcription factor 3 protein-coding 23 0.002742
-468 ATF4 activating transcription factor 4 protein-coding 45 0.005365
-471 ATIC 5-aminoimidazole-4-carboxamide ribonucleotide formyltransferase/IMP cyclohydrolase protein-coding 74 0.008822
-472 ATM ATM serine/threonine kinase protein-coding 440 0.05246
-473 RERE arginine-glutamic acid dipeptide repeats protein-coding 166 0.01979
-474 ATOH1 atonal bHLH transcription factor 1 protein-coding 61 0.007272
-475 ATOX1 antioxidant 1 copper chaperone protein-coding 3 0.0003577
-476 ATP1A1 ATPase Na+/K+ transporting subunit alpha 1 protein-coding 104 0.0124
-477 ATP1A2 ATPase Na+/K+ transporting subunit alpha 2 protein-coding 171 0.02039
-478 ATP1A3 ATPase Na+/K+ transporting subunit alpha 3 protein-coding 224 0.0267
-479 ATP12A ATPase H+/K+ transporting non-gastric alpha2 subunit protein-coding 156 0.0186
-480 ATP1A4 ATPase Na+/K+ transporting subunit alpha 4 protein-coding 162 0.01931
-481 ATP1B1 ATPase Na+/K+ transporting subunit beta 1 protein-coding 48 0.005722
-482 ATP1B2 ATPase Na+/K+ transporting subunit beta 2 protein-coding 40 0.004769
-483 ATP1B3 ATPase Na+/K+ transporting subunit beta 3 protein-coding 32 0.003815
-486 FXYD2 FXYD domain containing ion transport regulator 2 protein-coding 2 0.0002384
-487 ATP2A1 ATPase sarcoplasmic/endoplasmic reticulum Ca2+ transporting 1 protein-coding 139 0.01657
-488 ATP2A2 ATPase sarcoplasmic/endoplasmic reticulum Ca2+ transporting 2 protein-coding 110 0.01311
-489 ATP2A3 ATPase sarcoplasmic/endoplasmic reticulum Ca2+ transporting 3 protein-coding 107 0.01276
-490 ATP2B1 ATPase plasma membrane Ca2+ transporting 1 protein-coding 130 0.0155
-491 ATP2B2 ATPase plasma membrane Ca2+ transporting 2 protein-coding 186 0.02217
-492 ATP2B3 ATPase plasma membrane Ca2+ transporting 3 protein-coding 194 0.02313
-493 ATP2B4 ATPase plasma membrane Ca2+ transporting 4 protein-coding 281 0.0335
-495 ATP4A ATPase H+/K+ transporting alpha subunit protein-coding 144 0.01717
-496 ATP4B ATPase H+/K+ transporting beta subunit protein-coding 35 0.004173
-498 ATP5F1A ATP synthase F1 subunit alpha protein-coding 53 0.006319
-501 ALDH7A1 aldehyde dehydrogenase 7 family member A1 protein-coding 32 0.003815
-506 ATP5F1B ATP synthase F1 subunit beta protein-coding 56 0.006676
-509 ATP5F1C ATP synthase F1 subunit gamma protein-coding 45 0.005365
-513 ATP5F1D ATP synthase F1 subunit delta protein-coding 6 0.0007153
-514 ATP5F1E ATP synthase F1 subunit epsilon protein-coding 5 0.0005961
-515 ATP5PB ATP synthase peripheral stalk-membrane subunit b protein-coding 29 0.003457
-516 ATP5MC1 ATP synthase membrane subunit c locus 1 protein-coding 12 0.001431
-517 ATP5MC2 ATP synthase membrane subunit c locus 2 protein-coding 24 0.002861
-518 ATP5MC3 ATP synthase membrane subunit c locus 3 protein-coding 16 0.001907
-521 ATP5ME ATP synthase membrane subunit e protein-coding 8 0.0009537
-522 ATP5PF ATP synthase peripheral stalk subunit F6 protein-coding 18 0.002146
-523 ATP6V1A ATPase H+ transporting V1 subunit A protein-coding 81 0.009657
-525 ATP6V1B1 ATPase H+ transporting V1 subunit B1 protein-coding 96 0.01144
-526 ATP6V1B2 ATPase H+ transporting V1 subunit B2 protein-coding 60 0.007153
-527 ATP6V0C ATPase H+ transporting V0 subunit c protein-coding 12 0.001431
-528 ATP6V1C1 ATPase H+ transporting V1 subunit C1 protein-coding 51 0.00608
-529 ATP6V1E1 ATPase H+ transporting V1 subunit E1 protein-coding 26 0.0031
-533 ATP6V0B ATPase H+ transporting V0 subunit b protein-coding 22 0.002623
-534 ATP6V1G2 ATPase H+ transporting V1 subunit G2 protein-coding 14 0.001669
-535 ATP6V0A1 ATPase H+ transporting V0 subunit a1 protein-coding 84 0.01001
-537 ATP6AP1 ATPase H+ transporting accessory protein 1 protein-coding 62 0.007392
-538 ATP7A ATPase copper transporting alpha protein-coding 179 0.02134
-539 ATP5PO ATP synthase peripheral stalk subunit OSCP protein-coding 10 0.001192
-540 ATP7B ATPase copper transporting beta protein-coding 148 0.01764
-545 ATR ATR serine/threonine kinase protein-coding 270 0.03219
-546 ATRX ATRX, chromatin remodeler protein-coding 585 0.06974
-547 KIF1A kinesin family member 1A protein-coding 234 0.0279
-549 AUH AU RNA binding methylglutaconyl-CoA hydratase protein-coding 39 0.004649
-550 AUP1 AUP1, lipid droplet regulating VLDL assembly factor protein-coding 48 0.005722
-551 AVP arginine vasopressin protein-coding 14 0.001669
-552 AVPR1A arginine vasopressin receptor 1A protein-coding 104 0.0124
-553 AVPR1B arginine vasopressin receptor 1B protein-coding 63 0.007511
-554 AVPR2 arginine vasopressin receptor 2 protein-coding 56 0.006676
-558 AXL AXL receptor tyrosine kinase protein-coding 114 0.01359
-560 AZF1 azoospermia factor 1 unknown 77 0.00918
-563 AZGP1 alpha-2-glycoprotein 1, zinc-binding protein-coding 47 0.005603
-566 AZU1 azurocidin 1 protein-coding 32 0.003815
-567 B2M beta-2-microglobulin protein-coding 111 0.01323
-570 BAAT bile acid-CoA:amino acid N-acyltransferase protein-coding 69 0.008226
-571 BACH1 BTB domain and CNC homolog 1 protein-coding 102 0.01216
-572 BAD BCL2 associated agonist of cell death protein-coding 17 0.002027
-573 BAG1 BCL2 associated athanogene 1 protein-coding 19 0.002265
-575 ADGRB1 adhesion G protein-coupled receptor B1 protein-coding 198 0.02361
-576 ADGRB2 adhesion G protein-coupled receptor B2 protein-coding 164 0.01955
-577 ADGRB3 adhesion G protein-coupled receptor B3 protein-coding 388 0.04626
-578 BAK1 BCL2 antagonist/killer 1 protein-coding 34 0.004053
-579 NKX3-2 NK3 homeobox 2 protein-coding 29 0.003457
-580 BARD1 BRCA1 associated RING domain 1 protein-coding 103 0.01228
-581 BAX BCL2 associated X, apoptosis regulator protein-coding 31 0.003696
-582 BBS1 Bardet-Biedl syndrome 1 protein-coding 62 0.007392
-583 BBS2 Bardet-Biedl syndrome 2 protein-coding 78 0.009299
-585 BBS4 Bardet-Biedl syndrome 4 protein-coding 54 0.006438
-586 BCAT1 branched chain amino acid transaminase 1 protein-coding 64 0.00763
-587 BCAT2 branched chain amino acid transaminase 2 protein-coding 42 0.005007
-590 BCHE butyrylcholinesterase protein-coding 183 0.02182
-593 BCKDHA branched chain keto acid dehydrogenase E1, alpha polypeptide protein-coding 52 0.006199
-594 BCKDHB branched chain keto acid dehydrogenase E1 subunit beta protein-coding 48 0.005722
-595 CCND1 cyclin D1 protein-coding 61 0.007272
-596 BCL2 BCL2, apoptosis regulator protein-coding 22 0.002623
-597 BCL2A1 BCL2 related protein A1 protein-coding 22 0.002623
-598 BCL2L1 BCL2 like 1 protein-coding 23 0.002742
-599 BCL2L2 BCL2 like 2 protein-coding 12 0.001431
-602 BCL3 B cell CLL/lymphoma 3 protein-coding 40 0.004769
-604 BCL6 B cell CLL/lymphoma 6 protein-coding 112 0.01335
-605 BCL7A BCL tumor suppressor 7A protein-coding 27 0.003219
-606 NBEAP1 neurobeachin pseudogene 1 pseudo 48 0.005722
-607 BCL9 B cell CLL/lymphoma 9 protein-coding 180 0.02146
-608 TNFRSF17 TNF receptor superfamily member 17 protein-coding 22 0.002623
-610 HCN2 hyperpolarization activated cyclic nucleotide gated potassium and sodium channel 2 protein-coding 63 0.007511
-611 OPN1SW opsin 1, short wave sensitive protein-coding 53 0.006319
-613 BCR BCR, RhoGEF and GTPase activating protein protein-coding 106 0.01264
-617 BCS1L BCS1 homolog, ubiquinol-cytochrome c reductase complex chaperone protein-coding 36 0.004292
-622 BDH1 3-hydroxybutyrate dehydrogenase 1 protein-coding 45 0.005365
-623 BDKRB1 bradykinin receptor B1 protein-coding 51 0.00608
-624 BDKRB2 bradykinin receptor B2 protein-coding 56 0.006676
-627 BDNF brain derived neurotrophic factor protein-coding 45 0.005365
-629 CFB complement factor B protein-coding 111 0.01323
-631 BFSP1 beaded filament structural protein 1 protein-coding 74 0.008822
-632 BGLAP bone gamma-carboxyglutamate protein protein-coding 13 0.00155
-633 BGN biglycan protein-coding 45 0.005365
-634 CEACAM1 carcinoembryonic antigen related cell adhesion molecule 1 protein-coding 45 0.005365
-635 BHMT betaine--homocysteine S-methyltransferase protein-coding 57 0.006795
-636 BICD1 BICD cargo adaptor 1 protein-coding 107 0.01276
-637 BID BH3 interacting domain death agonist protein-coding 31 0.003696
-638 BIK BCL2 interacting killer protein-coding 15 0.001788
-639 PRDM1 PR/SET domain 1 protein-coding 102 0.01216
-640 BLK BLK proto-oncogene, Src family tyrosine kinase protein-coding 83 0.009895
-641 BLM Bloom syndrome RecQ like helicase protein-coding 131 0.01562
-642 BLMH bleomycin hydrolase protein-coding 56 0.006676
-643 CXCR5 C-X-C motif chemokine receptor 5 protein-coding 39 0.004649
-644 BLVRA biliverdin reductase A protein-coding 46 0.005484
-645 BLVRB biliverdin reductase B protein-coding 13 0.00155
-646 BNC1 basonuclin 1 protein-coding 124 0.01478
-648 BMI1 BMI1 proto-oncogene, polycomb ring finger protein-coding 36 0.004292
-649 BMP1 bone morphogenetic protein 1 protein-coding 126 0.01502
-650 BMP2 bone morphogenetic protein 2 protein-coding 69 0.008226
-651 BMP3 bone morphogenetic protein 3 protein-coding 89 0.01061
-652 BMP4 bone morphogenetic protein 4 protein-coding 71 0.008464
-653 BMP5 bone morphogenetic protein 5 protein-coding 110 0.01311
-654 BMP6 bone morphogenetic protein 6 protein-coding 68 0.008107
-655 BMP7 bone morphogenetic protein 7 protein-coding 84 0.01001
-656 BMP8B bone morphogenetic protein 8b protein-coding 28 0.003338
-657 BMPR1A bone morphogenetic protein receptor type 1A protein-coding 69 0.008226
-658 BMPR1B bone morphogenetic protein receptor type 1B protein-coding 71 0.008464
-659 BMPR2 bone morphogenetic protein receptor type 2 protein-coding 148 0.01764
-660 BMX BMX non-receptor tyrosine kinase protein-coding 86 0.01025
-661 POLR3D RNA polymerase III subunit D protein-coding 42 0.005007
-662 BNIP1 BCL2 interacting protein 1 protein-coding 41 0.004888
-663 BNIP2 BCL2 interacting protein 2 protein-coding 23 0.002742
-664 BNIP3 BCL2 interacting protein 3 protein-coding 23 0.002742
-665 BNIP3L BCL2 interacting protein 3 like protein-coding 14 0.001669
-666 BOK BOK, BCL2 family apoptosis regulator protein-coding 8 0.0009537
-667 DST dystonin protein-coding 480 0.05722
-668 FOXL2 forkhead box L2 protein-coding 36 0.004292
-669 BPGM bisphosphoglycerate mutase protein-coding 40 0.004769
-670 BPHL biphenyl hydrolase like protein-coding 37 0.004411
-671 BPI bactericidal permeability increasing protein protein-coding 68 0.008107
-672 BRCA1 BRCA1, DNA repair associated protein-coding 201 0.02396
-673 BRAF B-Raf proto-oncogene, serine/threonine kinase protein-coding 545 0.06497
-675 BRCA2 BRCA2, DNA repair associated protein-coding 351 0.04185
-676 BRDT bromodomain testis associated protein-coding 121 0.01443
-677 ZFP36L1 ZFP36 ring finger protein like 1 protein-coding 100 0.01192
-678 ZFP36L2 ZFP36 ring finger protein like 2 protein-coding 151 0.018
-680 BRS3 bombesin receptor subtype 3 protein-coding 68 0.008107
-682 BSG basigin (Ok blood group) protein-coding 44 0.005246
-683 BST1 bone marrow stromal cell antigen 1 protein-coding 42 0.005007
-684 BST2 bone marrow stromal cell antigen 2 protein-coding 16 0.001907
-685 BTC betacellulin protein-coding 21 0.002504
-686 BTD biotinidase protein-coding 59 0.007034
-687 KLF9 Kruppel like factor 9 protein-coding 34 0.004053
-688 KLF5 Kruppel like factor 5 protein-coding 99 0.0118
-689 BTF3 basic transcription factor 3 protein-coding 27 0.003219
-690 BTF3P11 basic transcription factor 3 pseudogene 11 pseudo 64 0.00763
-694 BTG1 BTG anti-proliferation factor 1 protein-coding 22 0.002623
-695 BTK Bruton tyrosine kinase protein-coding 114 0.01359
-696 BTN1A1 butyrophilin subfamily 1 member A1 protein-coding 82 0.009776
-699 BUB1 BUB1 mitotic checkpoint serine/threonine kinase protein-coding 124 0.01478
-701 BUB1B BUB1 mitotic checkpoint serine/threonine kinase B protein-coding 85 0.01013
-705 BYSL bystin like protein-coding 37 0.004411
-706 TSPO translocator protein protein-coding 31 0.003696
-708 C1QBP complement C1q binding protein protein-coding 17 0.002027
-710 SERPING1 serpin family G member 1 protein-coding 67 0.007988
-712 C1QA complement C1q A chain protein-coding 35 0.004173
-713 C1QB complement C1q B chain protein-coding 34 0.004053
-714 C1QC complement C1q C chain protein-coding 38 0.00453
-715 C1R complement C1r protein-coding 81 0.009657
-716 C1S complement C1s protein-coding 102 0.01216
-717 C2 complement C2 protein-coding 23 0.002742
-718 C3 complement C3 protein-coding 239 0.02849
-719 C3AR1 complement C3a receptor 1 protein-coding 83 0.009895
-720 C4A complement C4A (Rodgers blood group) protein-coding 34 0.004053
-721 C4B complement C4B (Chido blood group) protein-coding 34 0.004053
-722 C4BPA complement component 4 binding protein alpha protein-coding 88 0.01049
-725 C4BPB complement component 4 binding protein beta protein-coding 37 0.004411
-726 CAPN5 calpain 5 protein-coding 126 0.01502
-727 C5 complement C5 protein-coding 134 0.01598
-728 C5AR1 complement C5a receptor 1 protein-coding 41 0.004888
-729 C6 complement C6 protein-coding 232 0.02766
-730 C7 complement C7 protein-coding 185 0.02206
-731 C8A complement C8 alpha chain protein-coding 119 0.01419
-732 C8B complement C8 beta chain protein-coding 119 0.01419
-733 C8G complement C8 gamma chain protein-coding 17 0.002027
-734 OSGIN2 oxidative stress induced growth inhibitor family member 2 protein-coding 66 0.007868
-735 C9 complement C9 protein-coding 127 0.01514
-738 VPS51 VPS51, GARP complex subunit protein-coding 69 0.008226
-740 MRPL49 mitochondrial ribosomal protein L49 protein-coding 14 0.001669
-741 ZNHIT2 zinc finger HIT-type containing 2 protein-coding 25 0.00298
-744 MPPED2 metallophosphoesterase domain containing 2 protein-coding 72 0.008584
-745 MYRF myelin regulatory factor protein-coding 119 0.01419
-746 TMEM258 transmembrane protein 258 protein-coding 11 0.001311
-747 DAGLA diacylglycerol lipase alpha protein-coding 123 0.01466
-750 GAS8-AS1 GAS8 antisense RNA 1 ncRNA 12 0.001431
-752 FMNL1 formin like 1 protein-coding 104 0.0124
-753 LDLRAD4 low density lipoprotein receptor class A domain containing 4 protein-coding 53 0.006319
-754 PTTG1IP PTTG1 interacting protein protein-coding 22 0.002623
-755 C21orf2 chromosome 21 open reading frame 2 protein-coding 20 0.002384
-757 TMEM50B transmembrane protein 50B protein-coding 20 0.002384
-758 MPPED1 metallophosphoesterase domain containing 1 protein-coding 67 0.007988
-759 CA1 carbonic anhydrase 1 protein-coding 49 0.005842
-760 CA2 carbonic anhydrase 2 protein-coding 40 0.004769
-761 CA3 carbonic anhydrase 3 protein-coding 55 0.006557
-762 CA4 carbonic anhydrase 4 protein-coding 44 0.005246
-763 CA5A carbonic anhydrase 5A protein-coding 33 0.003934
-765 CA6 carbonic anhydrase 6 protein-coding 40 0.004769
-766 CA7 carbonic anhydrase 7 protein-coding 26 0.0031
-767 CA8 carbonic anhydrase 8 protein-coding 55 0.006557
-768 CA9 carbonic anhydrase 9 protein-coding 56 0.006676
-770 CA11 carbonic anhydrase 11 protein-coding 53 0.006319
-771 CA12 carbonic anhydrase 12 protein-coding 34 0.004053
-773 CACNA1A calcium voltage-gated channel subunit alpha1 A protein-coding 316 0.03767
-774 CACNA1B calcium voltage-gated channel subunit alpha1 B protein-coding 296 0.03529
-775 CACNA1C calcium voltage-gated channel subunit alpha1 C protein-coding 318 0.03791
-776 CACNA1D calcium voltage-gated channel subunit alpha1 D protein-coding 247 0.02945
-777 CACNA1E calcium voltage-gated channel subunit alpha1 E protein-coding 472 0.05627
-778 CACNA1F calcium voltage-gated channel subunit alpha1 F protein-coding 221 0.02635
-779 CACNA1S calcium voltage-gated channel subunit alpha1 S protein-coding 245 0.02921
-780 DDR1 discoidin domain receptor tyrosine kinase 1 protein-coding 84 0.01001
-781 CACNA2D1 calcium voltage-gated channel auxiliary subunit alpha2delta 1 protein-coding 238 0.02837
-782 CACNB1 calcium voltage-gated channel auxiliary subunit beta 1 protein-coding 63 0.007511
-783 CACNB2 calcium voltage-gated channel auxiliary subunit beta 2 protein-coding 117 0.01395
-784 CACNB3 calcium voltage-gated channel auxiliary subunit beta 3 protein-coding 45 0.005365
-785 CACNB4 calcium voltage-gated channel auxiliary subunit beta 4 protein-coding 71 0.008464
-786 CACNG1 calcium voltage-gated channel auxiliary subunit gamma 1 protein-coding 33 0.003934
-788 SLC25A20 solute carrier family 25 member 20 protein-coding 32 0.003815
-790 CAD carbamoyl-phosphate synthetase 2, aspartate transcarbamylase, and dihydroorotase protein-coding 207 0.02468
-793 CALB1 calbindin 1 protein-coding 42 0.005007
-794 CALB2 calbindin 2 protein-coding 43 0.005126
-795 S100G S100 calcium binding protein G protein-coding 35 0.004173
-796 CALCA calcitonin related polypeptide alpha protein-coding 30 0.003577
-797 CALCB calcitonin related polypeptide beta protein-coding 23 0.002742
-799 CALCR calcitonin receptor protein-coding 135 0.01609
-800 CALD1 caldesmon 1 protein-coding 114 0.01359
-801 CALM1 calmodulin 1 protein-coding 19 0.002265
-805 CALM2 calmodulin 2 protein-coding 20 0.002384
-808 CALM3 calmodulin 3 protein-coding 14 0.001669
-810 CALML3 calmodulin like 3 protein-coding 22 0.002623
-811 CALR calreticulin protein-coding 39 0.004649
-813 CALU calumenin protein-coding 26 0.0031
-814 CAMK4 calcium/calmodulin dependent protein kinase IV protein-coding 74 0.008822
-815 CAMK2A calcium/calmodulin dependent protein kinase II alpha protein-coding 59 0.007034
-816 CAMK2B calcium/calmodulin dependent protein kinase II beta protein-coding 80 0.009537
-817 CAMK2D calcium/calmodulin dependent protein kinase II delta protein-coding 50 0.005961
-818 CAMK2G calcium/calmodulin dependent protein kinase II gamma protein-coding 59 0.007034
-819 CAMLG calcium modulating ligand protein-coding 34 0.004053
-820 CAMP cathelicidin antimicrobial peptide protein-coding 20 0.002384
-821 CANX calnexin protein-coding 71 0.008464
-822 CAPG capping actin protein, gelsolin like protein-coding 39 0.004649
-823 CAPN1 calpain 1 protein-coding 60 0.007153
-824 CAPN2 calpain 2 protein-coding 73 0.008703
-825 CAPN3 calpain 3 protein-coding 101 0.01204
-826 CAPNS1 calpain small subunit 1 protein-coding 28 0.003338
-827 CAPN6 calpain 6 protein-coding 133 0.01586
-828 CAPS calcyphosine protein-coding 14 0.001669
-829 CAPZA1 capping actin protein of muscle Z-line alpha subunit 1 protein-coding 35 0.004173
-830 CAPZA2 capping actin protein of muscle Z-line alpha subunit 2 protein-coding 32 0.003815
-831 CAST calpastatin protein-coding 71 0.008464
-832 CAPZB capping actin protein of muscle Z-line beta subunit protein-coding 23 0.002742
-833 CARS cysteinyl-tRNA synthetase protein-coding 83 0.009895
-834 CASP1 caspase 1 protein-coding 80 0.009537
-835 CASP2 caspase 2 protein-coding 56 0.006676
-836 CASP3 caspase 3 protein-coding 37 0.004411
-837 CASP4 caspase 4 protein-coding 62 0.007392
-838 CASP5 caspase 5 protein-coding 99 0.0118
-839 CASP6 caspase 6 protein-coding 29 0.003457
-840 CASP7 caspase 7 protein-coding 43 0.005126
-841 CASP8 caspase 8 protein-coding 206 0.02456
-842 CASP9 caspase 9 protein-coding 37 0.004411
-843 CASP10 caspase 10 protein-coding 62 0.007392
-844 CASQ1 calsequestrin 1 protein-coding 64 0.00763
-845 CASQ2 calsequestrin 2 protein-coding 61 0.007272
-846 CASR calcium sensing receptor protein-coding 177 0.0211
-847 CAT catalase protein-coding 66 0.007868
-857 CAV1 caveolin 1 protein-coding 22 0.002623
-858 CAV2 caveolin 2 protein-coding 23 0.002742
-859 CAV3 caveolin 3 protein-coding 23 0.002742
-860 RUNX2 runt related transcription factor 2 protein-coding 75 0.008941
-861 RUNX1 runt related transcription factor 1 protein-coding 99 0.0118
-862 RUNX1T1 RUNX1 translocation partner 1 protein-coding 214 0.02551
-863 CBFA2T3 CBFA2/RUNX1 translocation partner 3 protein-coding 79 0.009418
-864 RUNX3 runt related transcription factor 3 protein-coding 54 0.006438
-865 CBFB core-binding factor beta subunit protein-coding 39 0.004649
-866 SERPINA6 serpin family A member 6 protein-coding 62 0.007392
-867 CBL Cbl proto-oncogene protein-coding 89 0.01061
-868 CBLB Cbl proto-oncogene B protein-coding 124 0.01478
-869 CBLN1 cerebellin 1 precursor protein-coding 41 0.004888
-871 SERPINH1 serpin family H member 1 protein-coding 46 0.005484
-873 CBR1 carbonyl reductase 1 protein-coding 19 0.002265
-874 CBR3 carbonyl reductase 3 protein-coding 23 0.002742
-875 CBS cystathionine-beta-synthase protein-coding 55 0.006557
-881 CCIN calicin protein-coding 77 0.00918
-883 KYAT1 kynurenine aminotransferase 1 protein-coding 44 0.005246
-885 CCK cholecystokinin protein-coding 20 0.002384
-886 CCKAR cholecystokinin A receptor protein-coding 86 0.01025
-887 CCKBR cholecystokinin B receptor protein-coding 110 0.01311
-889 KRIT1 KRIT1, ankyrin repeat containing protein-coding 76 0.009061
-890 CCNA2 cyclin A2 protein-coding 45 0.005365
-891 CCNB1 cyclin B1 protein-coding 35 0.004173
-892 CCNC cyclin C protein-coding 28 0.003338
-894 CCND2 cyclin D2 protein-coding 37 0.004411
-896 CCND3 cyclin D3 protein-coding 26 0.0031
-898 CCNE1 cyclin E1 protein-coding 52 0.006199
-899 CCNF cyclin F protein-coding 87 0.01037
-900 CCNG1 cyclin G1 protein-coding 26 0.0031
-901 CCNG2 cyclin G2 protein-coding 24 0.002861
-902 CCNH cyclin H protein-coding 28 0.003338
-904 CCNT1 cyclin T1 protein-coding 83 0.009895
-905 CCNT2 cyclin T2 protein-coding 65 0.007749
-908 CCT6A chaperonin containing TCP1 subunit 6A protein-coding 71 0.008464
-909 CD1A CD1a molecule protein-coding 90 0.01073
-910 CD1B CD1b molecule protein-coding 80 0.009537
-911 CD1C CD1c molecule protein-coding 88 0.01049
-912 CD1D CD1d molecule protein-coding 92 0.01097
-913 CD1E CD1e molecule protein-coding 137 0.01633
-914 CD2 CD2 molecule protein-coding 47 0.005603
-915 CD3D CD3d molecule protein-coding 19 0.002265
-916 CD3E CD3e molecule protein-coding 21 0.002504
-917 CD3G CD3g molecule protein-coding 23 0.002742
-919 CD247 CD247 molecule protein-coding 38 0.00453
-920 CD4 CD4 molecule protein-coding 65 0.007749
-921 CD5 CD5 molecule protein-coding 58 0.006915
-922 CD5L CD5 molecule like protein-coding 118 0.01407
-923 CD6 CD6 molecule protein-coding 72 0.008584
-924 CD7 CD7 molecule protein-coding 28 0.003338
-925 CD8A CD8a molecule protein-coding 30 0.003577
-926 CD8B CD8b molecule protein-coding 33 0.003934
-928 CD9 CD9 molecule protein-coding 25 0.00298
-929 CD14 CD14 molecule protein-coding 35 0.004173
-930 CD19 CD19 molecule protein-coding 70 0.008345
-931 MS4A1 membrane spanning 4-domains A1 protein-coding 62 0.007392
-932 MS4A3 membrane spanning 4-domains A3 protein-coding 48 0.005722
-933 CD22 CD22 molecule protein-coding 118 0.01407
-939 CD27 CD27 molecule protein-coding 29 0.003457
-940 CD28 CD28 molecule protein-coding 29 0.003457
-941 CD80 CD80 molecule protein-coding 40 0.004769
-942 CD86 CD86 molecule protein-coding 66 0.007868
-943 TNFRSF8 TNF receptor superfamily member 8 protein-coding 82 0.009776
-944 TNFSF8 TNF superfamily member 8 protein-coding 34 0.004053
-945 CD33 CD33 molecule protein-coding 81 0.009657
-946 SIGLEC6 sialic acid binding Ig like lectin 6 protein-coding 105 0.01252
-947 CD34 CD34 molecule protein-coding 57 0.006795
-948 CD36 CD36 molecule protein-coding 60 0.007153
-949 SCARB1 scavenger receptor class B member 1 protein-coding 56 0.006676
-950 SCARB2 scavenger receptor class B member 2 protein-coding 56 0.006676
-951 CD37 CD37 molecule protein-coding 27 0.003219
-952 CD38 CD38 molecule protein-coding 50 0.005961
-953 ENTPD1 ectonucleoside triphosphate diphosphohydrolase 1 protein-coding 50 0.005961
-954 ENTPD2 ectonucleoside triphosphate diphosphohydrolase 2 protein-coding 35 0.004173
-955 ENTPD6 ectonucleoside triphosphate diphosphohydrolase 6 (putative) protein-coding 58 0.006915
-956 ENTPD3 ectonucleoside triphosphate diphosphohydrolase 3 protein-coding 48 0.005722
-957 ENTPD5 ectonucleoside triphosphate diphosphohydrolase 5 protein-coding 36 0.004292
-958 CD40 CD40 molecule protein-coding 45 0.005365
-959 CD40LG CD40 ligand protein-coding 53 0.006319
-960 CD44 CD44 molecule (Indian blood group) protein-coding 72 0.008584
-961 CD47 CD47 molecule protein-coding 31 0.003696
-962 CD48 CD48 molecule protein-coding 27 0.003219
-963 CD53 CD53 molecule protein-coding 39 0.004649
-965 CD58 CD58 molecule protein-coding 59 0.007034
-966 CD59 CD59 molecule (CD59 blood group) protein-coding 10 0.001192
-967 CD63 CD63 molecule protein-coding 21 0.002504
-968 CD68 CD68 molecule protein-coding 29 0.003457
-969 CD69 CD69 molecule protein-coding 24 0.002861
-970 CD70 CD70 molecule protein-coding 29 0.003457
-971 CD72 CD72 molecule protein-coding 30 0.003577
-972 CD74 CD74 molecule protein-coding 23 0.002742
-973 CD79A CD79a molecule protein-coding 36 0.004292
-974 CD79B CD79b molecule protein-coding 27 0.003219
-975 CD81 CD81 molecule protein-coding 28 0.003338
-976 ADGRE5 adhesion G protein-coupled receptor E5 protein-coding 96 0.01144
-977 CD151 CD151 molecule (Raph blood group) protein-coding 25 0.00298
-978 CDA cytidine deaminase protein-coding 16 0.001907
-983 CDK1 cyclin dependent kinase 1 protein-coding 32 0.003815
-984 CDK11B cyclin dependent kinase 11B protein-coding 74 0.008822
-987 LRBA LPS responsive beige-like anchor protein protein-coding 252 0.03004
-988 CDC5L cell division cycle 5 like protein-coding 106 0.01264
-989 SEPT7 septin 7 protein-coding 43 0.005126
-990 CDC6 cell division cycle 6 protein-coding 60 0.007153
-991 CDC20 cell division cycle 20 protein-coding 47 0.005603
-993 CDC25A cell division cycle 25A protein-coding 54 0.006438
-994 CDC25B cell division cycle 25B protein-coding 67 0.007988
-995 CDC25C cell division cycle 25C protein-coding 61 0.007272
-996 CDC27 cell division cycle 27 protein-coding 93 0.01109
-997 CDC34 cell division cycle 34 protein-coding 24 0.002861
-998 CDC42 cell division cycle 42 protein-coding 32 0.003815
-999 CDH1 cadherin 1 protein-coding 240 0.02861
-1000 CDH2 cadherin 2 protein-coding 170 0.02027
-1001 CDH3 cadherin 3 protein-coding 72 0.008584
-1002 CDH4 cadherin 4 protein-coding 191 0.02277
-1003 CDH5 cadherin 5 protein-coding 102 0.01216
-1004 CDH6 cadherin 6 protein-coding 166 0.01979
-1005 CDH7 cadherin 7 protein-coding 225 0.02682
-1006 CDH8 cadherin 8 protein-coding 273 0.03255
-1007 CDH9 cadherin 9 protein-coding 304 0.03624
-1008 CDH10 cadherin 10 protein-coding 400 0.04769
-1009 CDH11 cadherin 11 protein-coding 227 0.02706
-1010 CDH12 cadherin 12 protein-coding 286 0.0341
-1012 CDH13 cadherin 13 protein-coding 129 0.01538
-1013 CDH15 cadherin 15 protein-coding 91 0.01085
-1014 CDH16 cadherin 16 protein-coding 107 0.01276
-1015 CDH17 cadherin 17 protein-coding 226 0.02694
-1016 CDH18 cadherin 18 protein-coding 333 0.0397
-1017 CDK2 cyclin dependent kinase 2 protein-coding 24 0.002861
-1018 CDK3 cyclin dependent kinase 3 protein-coding 33 0.003934
-1019 CDK4 cyclin dependent kinase 4 protein-coding 32 0.003815
-1020 CDK5 cyclin dependent kinase 5 protein-coding 39 0.004649
-1021 CDK6 cyclin dependent kinase 6 protein-coding 39 0.004649
-1022 CDK7 cyclin dependent kinase 7 protein-coding 41 0.004888
-1024 CDK8 cyclin dependent kinase 8 protein-coding 68 0.008107
-1025 CDK9 cyclin dependent kinase 9 protein-coding 35 0.004173
-1026 CDKN1A cyclin dependent kinase inhibitor 1A protein-coding 86 0.01025
-1027 CDKN1B cyclin dependent kinase inhibitor 1B protein-coding 52 0.006199
-1028 CDKN1C cyclin dependent kinase inhibitor 1C protein-coding 5 0.0005961
-1029 CDKN2A cyclin dependent kinase inhibitor 2A protein-coding 332 0.03958
-1030 CDKN2B cyclin dependent kinase inhibitor 2B protein-coding 13 0.00155
-1031 CDKN2C cyclin dependent kinase inhibitor 2C protein-coding 24 0.002861
-1032 CDKN2D cyclin dependent kinase inhibitor 2D protein-coding 12 0.001431
-1033 CDKN3 cyclin dependent kinase inhibitor 3 protein-coding 19 0.002265
-1036 CDO1 cysteine dioxygenase type 1 protein-coding 27 0.003219
-1038 CDR1 cerebellar degeneration related protein 1 protein-coding 71 0.008464
-1039 CDR2 cerebellar degeneration related protein 2 protein-coding 55 0.006557
-1040 CDS1 CDP-diacylglycerol synthase 1 protein-coding 59 0.007034
-1041 CDSN corneodesmosin protein-coding 34 0.004053
-1043 CD52 CD52 molecule protein-coding 11 0.001311
-1044 CDX1 caudal type homeobox 1 protein-coding 23 0.002742
-1045 CDX2 caudal type homeobox 2 protein-coding 41 0.004888
-1046 CDX4 caudal type homeobox 4 protein-coding 75 0.008941
-1047 CLGN calmegin protein-coding 66 0.007868
-1048 CEACAM5 carcinoembryonic antigen related cell adhesion molecule 5 protein-coding 80 0.009537
-1050 CEBPA CCAAT enhancer binding protein alpha protein-coding 11 0.001311
-1051 CEBPB CCAAT enhancer binding protein beta protein-coding 5 0.0005961
-1052 CEBPD CCAAT enhancer binding protein delta protein-coding 6 0.0007153
-1053 CEBPE CCAAT enhancer binding protein epsilon protein-coding 45 0.005365
-1054 CEBPG CCAAT enhancer binding protein gamma protein-coding 15 0.001788
-1056 CEL carboxyl ester lipase protein-coding 232 0.02766
-1057 CELP carboxyl ester lipase pseudogene pseudo 38 0.00453
-1058 CENPA centromere protein A protein-coding 15 0.001788
-1059 CENPB centromere protein B protein-coding 61 0.007272
-1060 CENPC centromere protein C protein-coding 93 0.01109
-1061 CENPCP1 centromere protein C pseudogene 1 pseudo 93 0.01109
-1062 CENPE centromere protein E protein-coding 259 0.03088
-1063 CENPF centromere protein F protein-coding 274 0.03267
-1066 CES1 carboxylesterase 1 protein-coding 94 0.01121
-1068 CETN1 centrin 1 protein-coding 48 0.005722
-1069 CETN2 centrin 2 protein-coding 33 0.003934
-1070 CETN3 centrin 3 protein-coding 33 0.003934
-1071 CETP cholesteryl ester transfer protein protein-coding 50 0.005961
-1072 CFL1 cofilin 1 protein-coding 21 0.002504
-1073 CFL2 cofilin 2 protein-coding 24 0.002861
-1075 CTSC cathepsin C protein-coding 72 0.008584
-1080 CFTR cystic fibrosis transmembrane conductance regulator protein-coding 187 0.02229
-1081 CGA glycoprotein hormones, alpha polypeptide protein-coding 26 0.0031
-1084 CEACAM3 carcinoembryonic antigen related cell adhesion molecule 3 protein-coding 54 0.006438
-1087 CEACAM7 carcinoembryonic antigen related cell adhesion molecule 7 protein-coding 48 0.005722
-1088 CEACAM8 carcinoembryonic antigen related cell adhesion molecule 8 protein-coding 62 0.007392
-1089 CEACAM4 carcinoembryonic antigen related cell adhesion molecule 4 protein-coding 50 0.005961
-1101 CHAD chondroadherin protein-coding 53 0.006319
-1102 RCBTB2 RCC1 and BTB domain containing protein 2 protein-coding 78 0.009299
-1103 CHAT choline O-acetyltransferase protein-coding 125 0.0149
-1104 RCC1 regulator of chromosome condensation 1 protein-coding 45 0.005365
-1105 CHD1 chromodomain helicase DNA binding protein 1 protein-coding 166 0.01979
-1106 CHD2 chromodomain helicase DNA binding protein 2 protein-coding 179 0.02134
-1107 CHD3 chromodomain helicase DNA binding protein 3 protein-coding 225 0.02682
-1108 CHD4 chromodomain helicase DNA binding protein 4 protein-coding 314 0.03743
-1109 AKR1C4 aldo-keto reductase family 1 member C4 protein-coding 56 0.006676
-1111 CHEK1 checkpoint kinase 1 protein-coding 64 0.00763
-1112 FOXN3 forkhead box N3 protein-coding 76 0.009061
-1113 CHGA chromogranin A protein-coding 68 0.008107
-1114 CHGB chromogranin B protein-coding 119 0.01419
-1116 CHI3L1 chitinase 3 like 1 protein-coding 55 0.006557
-1117 CHI3L2 chitinase 3 like 2 protein-coding 50 0.005961
-1118 CHIT1 chitinase 1 protein-coding 77 0.00918
-1119 CHKA choline kinase alpha protein-coding 46 0.005484
-1120 CHKB choline kinase beta protein-coding 69 0.008226
-1121 CHM CHM, Rab escort protein 1 protein-coding 97 0.01156
-1122 CHML CHM like, Rab escort protein 2 protein-coding 87 0.01037
-1123 CHN1 chimerin 1 protein-coding 57 0.006795
-1124 CHN2 chimerin 2 protein-coding 68 0.008107
-1128 CHRM1 cholinergic receptor muscarinic 1 protein-coding 48 0.005722
-1129 CHRM2 cholinergic receptor muscarinic 2 protein-coding 166 0.01979
-1130 LYST lysosomal trafficking regulator protein-coding 343 0.04089
-1131 CHRM3 cholinergic receptor muscarinic 3 protein-coding 154 0.01836
-1132 CHRM4 cholinergic receptor muscarinic 4 protein-coding 67 0.007988
-1133 CHRM5 cholinergic receptor muscarinic 5 protein-coding 60 0.007153
-1134 CHRNA1 cholinergic receptor nicotinic alpha 1 subunit protein-coding 88 0.01049
-1135 CHRNA2 cholinergic receptor nicotinic alpha 2 subunit protein-coding 73 0.008703
-1136 CHRNA3 cholinergic receptor nicotinic alpha 3 subunit protein-coding 66 0.007868
-1137 CHRNA4 cholinergic receptor nicotinic alpha 4 subunit protein-coding 121 0.01443
-1138 CHRNA5 cholinergic receptor nicotinic alpha 5 subunit protein-coding 51 0.00608
-1139 CHRNA7 cholinergic receptor nicotinic alpha 7 subunit protein-coding 61 0.007272
-1140 CHRNB1 cholinergic receptor nicotinic beta 1 subunit protein-coding 54 0.006438
-1141 CHRNB2 cholinergic receptor nicotinic beta 2 subunit protein-coding 81 0.009657
-1142 CHRNB3 cholinergic receptor nicotinic beta 3 subunit protein-coding 98 0.01168
-1143 CHRNB4 cholinergic receptor nicotinic beta 4 subunit protein-coding 77 0.00918
-1144 CHRND cholinergic receptor nicotinic delta subunit protein-coding 85 0.01013
-1145 CHRNE cholinergic receptor nicotinic epsilon subunit protein-coding 44 0.005246
-1146 CHRNG cholinergic receptor nicotinic gamma subunit protein-coding 66 0.007868
-1147 CHUK conserved helix-loop-helix ubiquitous kinase protein-coding 79 0.009418
-1149 CIDEA cell death-inducing DFFA-like effector a protein-coding 35 0.004173
-1152 CKB creatine kinase B protein-coding 32 0.003815
-1153 CIRBP cold inducible RNA binding protein protein-coding 27 0.003219
-1154 CISH cytokine inducible SH2 containing protein protein-coding 31 0.003696
-1155 TBCB tubulin folding cofactor B protein-coding 17 0.002027
-1158 CKM creatine kinase, M-type protein-coding 55 0.006557
-1159 CKMT1B creatine kinase, mitochondrial 1B protein-coding 23 0.002742
-1160 CKMT2 creatine kinase, mitochondrial 2 protein-coding 67 0.007988
-1161 ERCC8 ERCC excision repair 8, CSA ubiquitin ligase complex subunit protein-coding 31 0.003696
-1163 CKS1B CDC28 protein kinase regulatory subunit 1B protein-coding 15 0.001788
-1164 CKS2 CDC28 protein kinase regulatory subunit 2 protein-coding 13 0.00155
-1173 AP2M1 adaptor related protein complex 2 mu 1 subunit protein-coding 49 0.005842
-1174 AP1S1 adaptor related protein complex 1 sigma 1 subunit protein-coding 35 0.004173
-1175 AP2S1 adaptor related protein complex 2 sigma 1 subunit protein-coding 6 0.0007153
-1176 AP3S1 adaptor related protein complex 3 sigma 1 subunit protein-coding 27 0.003219
-1178 CLC Charcot-Leyden crystal galectin protein-coding 26 0.0031
-1179 CLCA1 chloride channel accessory 1 protein-coding 117 0.01395
-1180 CLCN1 chloride voltage-gated channel 1 protein-coding 148 0.01764
-1181 CLCN2 chloride voltage-gated channel 2 protein-coding 117 0.01395
-1182 CLCN3 chloride voltage-gated channel 3 protein-coding 108 0.01288
-1183 CLCN4 chloride voltage-gated channel 4 protein-coding 106 0.01264
-1184 CLCN5 chloride voltage-gated channel 5 protein-coding 108 0.01288
-1185 CLCN6 chloride voltage-gated channel 6 protein-coding 98 0.01168
-1186 CLCN7 chloride voltage-gated channel 7 protein-coding 81 0.009657
-1187 CLCNKA chloride voltage-gated channel Ka protein-coding 80 0.009537
-1188 CLCNKB chloride voltage-gated channel Kb protein-coding 87 0.01037
-1191 CLU clusterin protein-coding 238 0.02837
-1192 CLIC1 chloride intracellular channel 1 protein-coding 30 0.003577
-1193 CLIC2 chloride intracellular channel 2 protein-coding 42 0.005007
-1195 CLK1 CDC like kinase 1 protein-coding 77 0.00918
-1196 CLK2 CDC like kinase 2 protein-coding 88 0.01049
-1198 CLK3 CDC like kinase 3 protein-coding 71 0.008464
-1200 TPP1 tripeptidyl peptidase 1 protein-coding 58 0.006915
-1201 CLN3 CLN3, battenin protein-coding 55 0.006557
-1203 CLN5 CLN5, intracellular trafficking protein protein-coding 103 0.01228
-1207 CLNS1A chloride nucleotide-sensitive channel 1A protein-coding 21 0.002504
-1208 CLPS colipase protein-coding 15 0.001788
-1209 CLPTM1 CLPTM1, transmembrane protein protein-coding 66 0.007868
-1211 CLTA clathrin light chain A protein-coding 21 0.002504
-1212 CLTB clathrin light chain B protein-coding 31 0.003696
-1213 CLTC clathrin heavy chain protein-coding 158 0.01884
-1215 CMA1 chymase 1 protein-coding 39 0.004649
-1230 CCR1 C-C motif chemokine receptor 1 protein-coding 57 0.006795
-1232 CCR3 C-C motif chemokine receptor 3 protein-coding 69 0.008226
-1233 CCR4 C-C motif chemokine receptor 4 protein-coding 43 0.005126
-1234 CCR5 C-C motif chemokine receptor 5 (gene/pseudogene) protein-coding 46 0.005484
-1235 CCR6 C-C motif chemokine receptor 6 protein-coding 54 0.006438
-1236 CCR7 C-C motif chemokine receptor 7 protein-coding 48 0.005722
-1237 CCR8 C-C motif chemokine receptor 8 protein-coding 41 0.004888
-1238 ACKR2 atypical chemokine receptor 2 protein-coding 46 0.005484
-1240 CMKLR1 chemerin chemokine-like receptor 1 protein-coding 85 0.01013
-1241 LTB4R leukotriene B4 receptor protein-coding 30 0.003577
-1244 ABCC2 ATP binding cassette subfamily C member 2 protein-coding 160 0.01907
-1258 CNGB1 cyclic nucleotide gated channel beta 1 protein-coding 170 0.02027
-1259 CNGA1 cyclic nucleotide gated channel alpha 1 protein-coding 91 0.01085
-1260 CNGA2 cyclic nucleotide gated channel alpha 2 protein-coding 127 0.01514
-1261 CNGA3 cyclic nucleotide gated channel alpha 3 protein-coding 131 0.01562
-1262 CNGA4 cyclic nucleotide gated channel alpha 4 protein-coding 106 0.01264
-1263 PLK3 polo like kinase 3 protein-coding 71 0.008464
-1264 CNN1 calponin 1 protein-coding 42 0.005007
-1265 CNN2 calponin 2 protein-coding 35 0.004173
-1266 CNN3 calponin 3 protein-coding 22 0.002623
-1267 CNP 2',3'-cyclic nucleotide 3' phosphodiesterase protein-coding 38 0.00453
-1268 CNR1 cannabinoid receptor 1 protein-coding 113 0.01347
-1269 CNR2 cannabinoid receptor 2 protein-coding 45 0.005365
-1270 CNTF ciliary neurotrophic factor protein-coding 36 0.004292
-1271 CNTFR ciliary neurotrophic factor receptor protein-coding 45 0.005365
-1272 CNTN1 contactin 1 protein-coding 224 0.0267
-1277 COL1A1 collagen type I alpha 1 chain protein-coding 176 0.02098
-1278 COL1A2 collagen type I alpha 2 chain protein-coding 244 0.02909
-1280 COL2A1 collagen type II alpha 1 chain protein-coding 179 0.02134
-1281 COL3A1 collagen type III alpha 1 chain protein-coding 253 0.03016
-1282 COL4A1 collagen type IV alpha 1 chain protein-coding 211 0.02515
-1284 COL4A2 collagen type IV alpha 2 chain protein-coding 216 0.02575
-1285 COL4A3 collagen type IV alpha 3 chain protein-coding 177 0.0211
-1286 COL4A4 collagen type IV alpha 4 chain protein-coding 233 0.02778
-1287 COL4A5 collagen type IV alpha 5 chain protein-coding 225 0.02682
-1288 COL4A6 collagen type IV alpha 6 chain protein-coding 185 0.02206
-1289 COL5A1 collagen type V alpha 1 chain protein-coding 298 0.03553
-1290 COL5A2 collagen type V alpha 2 chain protein-coding 250 0.0298
-1291 COL6A1 collagen type VI alpha 1 chain protein-coding 135 0.01609
-1292 COL6A2 collagen type VI alpha 2 chain protein-coding 186 0.02217
-1293 COL6A3 collagen type VI alpha 3 chain protein-coding 438 0.05222
-1294 COL7A1 collagen type VII alpha 1 chain protein-coding 306 0.03648
-1295 COL8A1 collagen type VIII alpha 1 chain protein-coding 124 0.01478
-1296 COL8A2 collagen type VIII alpha 2 chain protein-coding 53 0.006319
-1297 COL9A1 collagen type IX alpha 1 chain protein-coding 186 0.02217
-1298 COL9A2 collagen type IX alpha 2 chain protein-coding 95 0.01133
-1299 COL9A3 collagen type IX alpha 3 chain protein-coding 96 0.01144
-1300 COL10A1 collagen type X alpha 1 chain protein-coding 63 0.007511
-1301 COL11A1 collagen type XI alpha 1 chain protein-coding 523 0.06235
-1302 COL11A2 collagen type XI alpha 2 chain protein-coding 189 0.02253
-1303 COL12A1 collagen type XII alpha 1 chain protein-coding 385 0.0459
-1305 COL13A1 collagen type XIII alpha 1 chain protein-coding 91 0.01085
-1306 COL15A1 collagen type XV alpha 1 chain protein-coding 205 0.02444
-1307 COL16A1 collagen type XVI alpha 1 chain protein-coding 155 0.01848
-1308 COL17A1 collagen type XVII alpha 1 chain protein-coding 158 0.01884
-1310 COL19A1 collagen type XIX alpha 1 chain protein-coding 260 0.031
-1311 COMP cartilage oligomeric matrix protein protein-coding 78 0.009299
-1312 COMT catechol-O-methyltransferase protein-coding 22 0.002623
-1314 COPA coatomer protein complex subunit alpha protein-coding 147 0.01753
-1315 COPB1 coatomer protein complex subunit beta 1 protein-coding 102 0.01216
-1316 KLF6 Kruppel like factor 6 protein-coding 51 0.00608
-1317 SLC31A1 solute carrier family 31 member 1 protein-coding 12 0.001431
-1318 SLC31A2 solute carrier family 31 member 2 protein-coding 11 0.001311
-1325 CORT cortistatin protein-coding 12 0.001431
-1326 MAP3K8 mitogen-activated protein kinase kinase kinase 8 protein-coding 57 0.006795
-1327 COX4I1 cytochrome c oxidase subunit 4I1 protein-coding 20 0.002384
-1329 COX5B cytochrome c oxidase subunit 5B protein-coding 13 0.00155
-1337 COX6A1 cytochrome c oxidase subunit 6A1 protein-coding 12 0.001431
-1339 COX6A2 cytochrome c oxidase subunit 6A2 protein-coding 11 0.001311
-1340 COX6B1 cytochrome c oxidase subunit 6B1 protein-coding 13 0.00155
-1345 COX6C cytochrome c oxidase subunit 6C protein-coding 14 0.001669
-1346 COX7A1 cytochrome c oxidase subunit 7A1 protein-coding 16 0.001907
-1347 COX7A2 cytochrome c oxidase subunit 7A2 protein-coding 11 0.001311
-1349 COX7B cytochrome c oxidase subunit 7B protein-coding 20 0.002384
-1350 COX7C cytochrome c oxidase subunit 7C protein-coding 6 0.0007153
-1351 COX8A cytochrome c oxidase subunit 8A protein-coding 6 0.0007153
-1352 COX10 COX10, heme A:farnesyltransferase cytochrome c oxidase assembly factor protein-coding 57 0.006795
-1353 COX11 COX11, cytochrome c oxidase copper chaperone protein-coding 28 0.003338
-1355 COX15 COX15, cytochrome c oxidase assembly homolog protein-coding 30 0.003577
-1356 CP ceruloplasmin protein-coding 136 0.01621
-1357 CPA1 carboxypeptidase A1 protein-coding 66 0.007868
-1358 CPA2 carboxypeptidase A2 protein-coding 48 0.005722
-1359 CPA3 carboxypeptidase A3 protein-coding 82 0.009776
-1360 CPB1 carboxypeptidase B1 protein-coding 80 0.009537
-1361 CPB2 carboxypeptidase B2 protein-coding 67 0.007988
-1362 CPD carboxypeptidase D protein-coding 111 0.01323
-1363 CPE carboxypeptidase E protein-coding 73 0.008703
-1364 CLDN4 claudin 4 protein-coding 29 0.003457
-1365 CLDN3 claudin 3 protein-coding 6 0.0007153
-1366 CLDN7 claudin 7 protein-coding 12 0.001431
-1368 CPM carboxypeptidase M protein-coding 49 0.005842
-1369 CPN1 carboxypeptidase N subunit 1 protein-coding 82 0.009776
-1370 CPN2 carboxypeptidase N subunit 2 protein-coding 70 0.008345
-1371 CPOX coproporphyrinogen oxidase protein-coding 98 0.01168
-1373 CPS1 carbamoyl-phosphate synthase 1 protein-coding 284 0.03386
-1374 CPT1A carnitine palmitoyltransferase 1A protein-coding 106 0.01264
-1375 CPT1B carnitine palmitoyltransferase 1B protein-coding 77 0.00918
-1376 CPT2 carnitine palmitoyltransferase 2 protein-coding 48 0.005722
-1378 CR1 complement C3b/C4b receptor 1 (Knops blood group) protein-coding 244 0.02909
-1379 CR1L complement C3b/C4b receptor 1 like protein-coding 102 0.01216
-1380 CR2 complement C3d receptor 2 protein-coding 207 0.02468
-1381 CRABP1 cellular retinoic acid binding protein 1 protein-coding 34 0.004053
-1382 CRABP2 cellular retinoic acid binding protein 2 protein-coding 24 0.002861
-1384 CRAT carnitine O-acetyltransferase protein-coding 134 0.01598
-1385 CREB1 cAMP responsive element binding protein 1 protein-coding 28 0.003338
-1386 ATF2 activating transcription factor 2 protein-coding 59 0.007034
-1387 CREBBP CREB binding protein protein-coding 360 0.04292
-1388 ATF6B activating transcription factor 6 beta protein-coding 60 0.007153
-1389 CREBL2 cAMP responsive element binding protein like 2 protein-coding 12 0.001431
-1390 CREM cAMP responsive element modulator protein-coding 34 0.004053
-1392 CRH corticotropin releasing hormone protein-coding 7 0.0008345
-1393 CRHBP corticotropin releasing hormone binding protein protein-coding 54 0.006438
-1394 CRHR1 corticotropin releasing hormone receptor 1 protein-coding 70 0.008345
-1395 CRHR2 corticotropin releasing hormone receptor 2 protein-coding 66 0.007868
-1396 CRIP1 cysteine rich protein 1 protein-coding 7 0.0008345
-1397 CRIP2 cysteine rich protein 2 protein-coding 17 0.002027
-1398 CRK CRK proto-oncogene, adaptor protein protein-coding 22 0.002623
-1399 CRKL CRK like proto-oncogene, adaptor protein protein-coding 32 0.003815
-1400 CRMP1 collapsin response mediator protein 1 protein-coding 109 0.01299
-1401 CRP C-reactive protein protein-coding 43 0.005126
-1404 HAPLN1 hyaluronan and proteoglycan link protein 1 protein-coding 91 0.01085
-1406 CRX cone-rod homeobox protein-coding 78 0.009299
-1407 CRY1 cryptochrome circadian regulator 1 protein-coding 65 0.007749
-1408 CRY2 cryptochrome circadian regulator 2 protein-coding 67 0.007988
-1409 CRYAA crystallin alpha A protein-coding 30 0.003577
-1410 CRYAB crystallin alpha B protein-coding 24 0.002861
-1411 CRYBA1 crystallin beta A1 protein-coding 37 0.004411
-1412 CRYBA2 crystallin beta A2 protein-coding 20 0.002384
-1413 CRYBA4 crystallin beta A4 protein-coding 51 0.00608
-1414 CRYBB1 crystallin beta B1 protein-coding 59 0.007034
-1415 CRYBB2 crystallin beta B2 protein-coding 30 0.003577
-1417 CRYBB3 crystallin beta B3 protein-coding 28 0.003338
-1418 CRYGA crystallin gamma A protein-coding 43 0.005126
-1419 CRYGB crystallin gamma B protein-coding 37 0.004411
-1420 CRYGC crystallin gamma C protein-coding 39 0.004649
-1421 CRYGD crystallin gamma D protein-coding 32 0.003815
-1427 CRYGS crystallin gamma S protein-coding 32 0.003815
-1428 CRYM crystallin mu protein-coding 35 0.004173
-1429 CRYZ crystallin zeta protein-coding 48 0.005722
-1431 CS citrate synthase protein-coding 41 0.004888
-1432 MAPK14 mitogen-activated protein kinase 14 protein-coding 37 0.004411
-1434 CSE1L chromosome segregation 1 like protein-coding 103 0.01228
-1435 CSF1 colony stimulating factor 1 protein-coding 54 0.006438
-1436 CSF1R colony stimulating factor 1 receptor protein-coding 116 0.01383
-1437 CSF2 colony stimulating factor 2 protein-coding 10 0.001192
-1438 CSF2RA colony stimulating factor 2 receptor alpha subunit protein-coding 105 0.01252
-1439 CSF2RB colony stimulating factor 2 receptor beta common subunit protein-coding 145 0.01729
-1440 CSF3 colony stimulating factor 3 protein-coding 18 0.002146
-1441 CSF3R colony stimulating factor 3 receptor protein-coding 107 0.01276
-1442 CSH1 chorionic somatomammotropin hormone 1 protein-coding 29 0.003457
-1443 CSH2 chorionic somatomammotropin hormone 2 protein-coding 39 0.004649
-1444 CSHL1 chorionic somatomammotropin hormone like 1 protein-coding 52 0.006199
-1445 CSK C-terminal Src kinase protein-coding 45 0.005365
-1446 CSN1S1 casein alpha s1 protein-coding 39 0.004649
-1447 CSN2 casein beta protein-coding 30 0.003577
-1448 CSN3 casein kappa protein-coding 42 0.005007
-1452 CSNK1A1 casein kinase 1 alpha 1 protein-coding 43 0.005126
-1453 CSNK1D casein kinase 1 delta protein-coding 49 0.005842
-1454 CSNK1E casein kinase 1 epsilon protein-coding 60 0.007153
-1455 CSNK1G2 casein kinase 1 gamma 2 protein-coding 43 0.005126
-1456 CSNK1G3 casein kinase 1 gamma 3 protein-coding 61 0.007272
-1457 CSNK2A1 casein kinase 2 alpha 1 protein-coding 132 0.01574
-1459 CSNK2A2 casein kinase 2 alpha 2 protein-coding 110 0.01311
-1460 CSNK2B casein kinase 2 beta protein-coding 3 0.0003577
-1462 VCAN versican protein-coding 384 0.04578
-1463 NCAN neurocan protein-coding 192 0.02289
-1464 CSPG4 chondroitin sulfate proteoglycan 4 protein-coding 204 0.02432
-1465 CSRP1 cysteine and glycine rich protein 1 protein-coding 15 0.001788
-1466 CSRP2 cysteine and glycine rich protein 2 protein-coding 25 0.00298
-1468 SLC25A10 solute carrier family 25 member 10 protein-coding 58 0.006915
-1469 CST1 cystatin SN protein-coding 36 0.004292
-1470 CST2 cystatin SA protein-coding 33 0.003934
-1471 CST3 cystatin C protein-coding 11 0.001311
-1472 CST4 cystatin S protein-coding 34 0.004053
-1473 CST5 cystatin D protein-coding 33 0.003934
-1474 CST6 cystatin E/M protein-coding 16 0.001907
-1475 CSTA cystatin A protein-coding 13 0.00155
-1476 CSTB cystatin B protein-coding 25 0.00298
-1477 CSTF1 cleavage stimulation factor subunit 1 protein-coding 58 0.006915
-1478 CSTF2 cleavage stimulation factor subunit 2 protein-coding 64 0.00763
-1479 CSTF3 cleavage stimulation factor subunit 3 protein-coding 79 0.009418
-1482 NKX2-5 NK2 homeobox 5 protein-coding 46 0.005484
-1486 CTBS chitobiase protein-coding 29 0.003457
-1487 CTBP1 C-terminal binding protein 1 protein-coding 43 0.005126
-1488 CTBP2 C-terminal binding protein 2 protein-coding 90 0.01073
-1489 CTF1 cardiotrophin 1 protein-coding 4 0.0004769
-1490 CTGF connective tissue growth factor protein-coding 40 0.004769
-1491 CTH cystathionine gamma-lyase protein-coding 48 0.005722
-1493 CTLA4 cytotoxic T-lymphocyte associated protein 4 protein-coding 38 0.00453
-1495 CTNNA1 catenin alpha 1 protein-coding 122 0.01454
-1496 CTNNA2 catenin alpha 2 protein-coding 321 0.03827
-1497 CTNS cystinosin, lysosomal cystine transporter protein-coding 38 0.00453
-1499 CTNNB1 catenin beta 1 protein-coding 343 0.04089
-1500 CTNND1 catenin delta 1 protein-coding 160 0.01907
-1501 CTNND2 catenin delta 2 protein-coding 309 0.03684
-1503 CTPS1 CTP synthase 1 protein-coding 59 0.007034
-1504 CTRB1 chymotrypsinogen B1 protein-coding 16 0.001907
-1506 CTRL chymotrypsin like protein-coding 28 0.003338
-1508 CTSB cathepsin B protein-coding 41 0.004888
-1509 CTSD cathepsin D protein-coding 57 0.006795
-1510 CTSE cathepsin E protein-coding 51 0.00608
-1511 CTSG cathepsin G protein-coding 52 0.006199
-1512 CTSH cathepsin H protein-coding 48 0.005722
-1513 CTSK cathepsin K protein-coding 82 0.009776
-1514 CTSL cathepsin L protein-coding 47 0.005603
-1515 CTSV cathepsin V protein-coding 54 0.006438
-1519 CTSO cathepsin O protein-coding 47 0.005603
-1520 CTSS cathepsin S protein-coding 44 0.005246
-1521 CTSW cathepsin W protein-coding 51 0.00608
-1522 CTSZ cathepsin Z protein-coding 30 0.003577
-1523 CUX1 cut like homeobox 1 protein-coding 212 0.02527
-1524 CX3CR1 C-X3-C motif chemokine receptor 1 protein-coding 60 0.007153
-1525 CXADR CXADR, Ig-like cell adhesion molecule protein-coding 51 0.00608
-1528 CYB5A cytochrome b5 type A protein-coding 20 0.002384
-1534 CYB561 cytochrome b561 protein-coding 30 0.003577
-1535 CYBA cytochrome b-245 alpha chain protein-coding 17 0.002027
-1536 CYBB cytochrome b-245 beta chain protein-coding 85 0.01013
-1537 CYC1 cytochrome c1 protein-coding 57 0.006795
-1538 CYLC1 cylicin 1 protein-coding 179 0.02134
-1539 CYLC2 cylicin 2 protein-coding 122 0.01454
-1540 CYLD CYLD lysine 63 deubiquitinase protein-coding 119 0.01419
-1543 CYP1A1 cytochrome P450 family 1 subfamily A member 1 protein-coding 166 0.01979
-1544 CYP1A2 cytochrome P450 family 1 subfamily A member 2 protein-coding 64 0.00763
-1545 CYP1B1 cytochrome P450 family 1 subfamily B member 1 protein-coding 65 0.007749
-1548 CYP2A6 cytochrome P450 family 2 subfamily A member 6 protein-coding 146 0.01741
-1549 CYP2A7 cytochrome P450 family 2 subfamily A member 7 protein-coding 70 0.008345
-1551 CYP3A7 cytochrome P450 family 3 subfamily A member 7 protein-coding 73 0.008703
-1553 CYP2A13 cytochrome P450 family 2 subfamily A member 13 protein-coding 94 0.01121
-1555 CYP2B6 cytochrome P450 family 2 subfamily B member 6 protein-coding 94 0.01121
-1556 CYP2B7P cytochrome P450 family 2 subfamily B member 7, pseudogene pseudo 50 0.005961
-1557 CYP2C19 cytochrome P450 family 2 subfamily C member 19 protein-coding 95 0.01133
-1558 CYP2C8 cytochrome P450 family 2 subfamily C member 8 protein-coding 70 0.008345
-1559 CYP2C9 cytochrome P450 family 2 subfamily C member 9 protein-coding 75 0.008941
-1562 CYP2C18 cytochrome P450 family 2 subfamily C member 18 protein-coding 67 0.007988
-1565 CYP2D6 cytochrome P450 family 2 subfamily D member 6 protein-coding 67 0.007988
-1571 CYP2E1 cytochrome P450 family 2 subfamily E member 1 protein-coding 68 0.008107
-1572 CYP2F1 cytochrome P450 family 2 subfamily F member 1 protein-coding 60 0.007153
-1573 CYP2J2 cytochrome P450 family 2 subfamily J member 2 protein-coding 45 0.005365
-1576 CYP3A4 cytochrome P450 family 3 subfamily A member 4 protein-coding 61 0.007272
-1577 CYP3A5 cytochrome P450 family 3 subfamily A member 5 protein-coding 51 0.00608
-1579 CYP4A11 cytochrome P450 family 4 subfamily A member 11 protein-coding 83 0.009895
-1580 CYP4B1 cytochrome P450 family 4 subfamily B member 1 protein-coding 85 0.01013
-1581 CYP7A1 cytochrome P450 family 7 subfamily A member 1 protein-coding 93 0.01109
-1582 CYP8B1 cytochrome P450 family 8 subfamily B member 1 protein-coding 67 0.007988
-1583 CYP11A1 cytochrome P450 family 11 subfamily A member 1 protein-coding 68 0.008107
-1584 CYP11B1 cytochrome P450 family 11 subfamily B member 1 protein-coding 202 0.02408
-1585 CYP11B2 cytochrome P450 family 11 subfamily B member 2 protein-coding 191 0.02277
-1586 CYP17A1 cytochrome P450 family 17 subfamily A member 1 protein-coding 63 0.007511
-1587 ADAM3A ADAM metallopeptidase domain 3A (pseudogene) pseudo 13 0.00155
-1588 CYP19A1 cytochrome P450 family 19 subfamily A member 1 protein-coding 73 0.008703
-1589 CYP21A2 cytochrome P450 family 21 subfamily A member 2 protein-coding 327 0.03898
-1591 CYP24A1 cytochrome P450 family 24 subfamily A member 1 protein-coding 61 0.007272
-1592 CYP26A1 cytochrome P450 family 26 subfamily A member 1 protein-coding 57 0.006795
-1593 CYP27A1 cytochrome P450 family 27 subfamily A member 1 protein-coding 53 0.006319
-1594 CYP27B1 cytochrome P450 family 27 subfamily B member 1 protein-coding 66 0.007868
-1595 CYP51A1 cytochrome P450 family 51 subfamily A member 1 protein-coding 47 0.005603
-1600 DAB1 DAB1, reelin adaptor protein protein-coding 121 0.01443
-1601 DAB2 DAB2, clathrin adaptor protein protein-coding 119 0.01419
-1602 DACH1 dachshund family transcription factor 1 protein-coding 132 0.01574
-1603 DAD1 defender against cell death 1 protein-coding 8 0.0009537
-1604 CD55 CD55 molecule (Cromer blood group) protein-coding 43 0.005126
-1605 DAG1 dystroglycan 1 protein-coding 73 0.008703
-1606 DGKA diacylglycerol kinase alpha protein-coding 72 0.008584
-1607 DGKB diacylglycerol kinase beta protein-coding 175 0.02086
-1608 DGKG diacylglycerol kinase gamma protein-coding 130 0.0155
-1609 DGKQ diacylglycerol kinase theta protein-coding 55 0.006557
-1610 DAO D-amino acid oxidase protein-coding 68 0.008107
-1611 DAP death associated protein protein-coding 11 0.001311
-1612 DAPK1 death associated protein kinase 1 protein-coding 175 0.02086
-1613 DAPK3 death associated protein kinase 3 protein-coding 54 0.006438
-1615 DARS aspartyl-tRNA synthetase protein-coding 50 0.005961
-1616 DAXX death domain associated protein protein-coding 92 0.01097
-1618 DAZL deleted in azoospermia like protein-coding 32 0.003815
-1620 BRINP1 BMP/retinoic acid inducible neural specific 1 protein-coding 197 0.02349
-1621 DBH dopamine beta-hydroxylase protein-coding 88 0.01049
-1622 DBI diazepam binding inhibitor, acyl-CoA binding protein protein-coding 24 0.002861
-1627 DBN1 drebrin 1 protein-coding 88 0.01049
-1628 DBP D-box binding PAR bZIP transcription factor protein-coding 26 0.0031
-1629 DBT dihydrolipoamide branched chain transacylase E2 protein-coding 60 0.007153
-1630 DCC DCC netrin 1 receptor protein-coding 360 0.04292
-1632 ECI1 enoyl-CoA delta isomerase 1 protein-coding 35 0.004173
-1633 DCK deoxycytidine kinase protein-coding 31 0.003696
-1634 DCN decorin protein-coding 79 0.009418
-1635 DCTD dCMP deaminase protein-coding 25 0.00298
-1636 ACE angiotensin I converting enzyme protein-coding 153 0.01824
-1638 DCT dopachrome tautomerase protein-coding 118 0.01407
-1639 DCTN1 dynactin subunit 1 protein-coding 140 0.01669
-1641 DCX doublecortin protein-coding 115 0.01371
-1642 DDB1 damage specific DNA binding protein 1 protein-coding 123 0.01466
-1643 DDB2 damage specific DNA binding protein 2 protein-coding 46 0.005484
-1644 DDC dopa decarboxylase protein-coding 83 0.009895
-1645 AKR1C1 aldo-keto reductase family 1 member C1 protein-coding 161 0.01919
-1646 AKR1C2 aldo-keto reductase family 1 member C2 protein-coding 37 0.004411
-1647 GADD45A growth arrest and DNA damage inducible alpha protein-coding 10 0.001192
-1649 DDIT3 DNA damage inducible transcript 3 protein-coding 113 0.01347
-1650 DDOST dolichyl-diphosphooligosaccharide--protein glycosyltransferase non-catalytic subunit protein-coding 51 0.00608
-1652 DDT D-dopachrome tautomerase protein-coding 3 0.0003577
-1653 DDX1 DEAD-box helicase 1 protein-coding 75 0.008941
-1654 DDX3X DEAD-box helicase 3, X-linked protein-coding 136 0.01621
-1655 DDX5 DEAD-box helicase 5 protein-coding 74 0.008822
-1656 DDX6 DEAD-box helicase 6 protein-coding 42 0.005007
-1657 DMXL1 Dmx like 1 protein-coding 275 0.03278
-1659 DHX8 DEAH-box helicase 8 protein-coding 172 0.02051
-1660 DHX9 DExH-box helicase 9 protein-coding 164 0.01955
-1662 DDX10 DEAD-box helicase 10 protein-coding 98 0.01168
-1663 DDX11 DEAD/H-box helicase 11 protein-coding 338 0.0403
-1665 DHX15 DEAH-box helicase 15 protein-coding 175 0.02086
-1666 DECR1 2,4-dienoyl-CoA reductase 1 protein-coding 38 0.00453
-1668 DEFA3 defensin alpha 3 protein-coding 5 0.0005961
-1669 DEFA4 defensin alpha 4 protein-coding 22 0.002623
-1670 DEFA5 defensin alpha 5 protein-coding 10 0.001192
-1671 DEFA6 defensin alpha 6 protein-coding 76 0.009061
-1672 DEFB1 defensin beta 1 protein-coding 9 0.001073
-1673 DEFB4A defensin beta 4A protein-coding 7 0.0008345
-1674 DES desmin protein-coding 55 0.006557
-1675 CFD complement factor D protein-coding 9 0.001073
-1676 DFFA DNA fragmentation factor subunit alpha protein-coding 39 0.004649
-1677 DFFB DNA fragmentation factor subunit beta protein-coding 233 0.02778
-1678 TIMM8A translocase of inner mitochondrial membrane 8A protein-coding 12 0.001431
-1687 GSDME gasdermin E protein-coding 69 0.008226
-1690 COCH cochlin protein-coding 67 0.007988
-1716 DGUOK deoxyguanosine kinase protein-coding 25 0.00298
-1717 DHCR7 7-dehydrocholesterol reductase protein-coding 54 0.006438
-1718 DHCR24 24-dehydrocholesterol reductase protein-coding 46 0.005484
-1719 DHFR dihydrofolate reductase protein-coding 17 0.002027
-1723 DHODH dihydroorotate dehydrogenase (quinone) protein-coding 36 0.004292
-1725 DHPS deoxyhypusine synthase protein-coding 44 0.005246
-1727 CYB5R3 cytochrome b5 reductase 3 protein-coding 41 0.004888
-1728 NQO1 NAD(P)H quinone dehydrogenase 1 protein-coding 20 0.002384
-1729 DIAPH1 diaphanous related formin 1 protein-coding 110 0.01311
-1730 DIAPH2 diaphanous related formin 2 protein-coding 158 0.01884
-1731 SEPT1 septin 1 protein-coding 45 0.005365
-1733 DIO1 iodothyronine deiodinase 1 protein-coding 20 0.002384
-1734 DIO2 iodothyronine deiodinase 2 protein-coding 75 0.008941
-1735 DIO3 iodothyronine deiodinase 3 protein-coding 73 0.008703
-1736 DKC1 dyskerin pseudouridine synthase 1 protein-coding 57 0.006795
-1737 DLAT dihydrolipoamide S-acetyltransferase protein-coding 55 0.006557
-1738 DLD dihydrolipoamide dehydrogenase protein-coding 59 0.007034
-1739 DLG1 discs large MAGUK scaffold protein 1 protein-coding 109 0.01299
-1740 DLG2 discs large MAGUK scaffold protein 2 protein-coding 190 0.02265
-1741 DLG3 discs large MAGUK scaffold protein 3 protein-coding 81 0.009657
-1742 DLG4 discs large MAGUK scaffold protein 4 protein-coding 94 0.01121
-1743 DLST dihydrolipoamide S-succinyltransferase protein-coding 54 0.006438
-1745 DLX1 distal-less homeobox 1 protein-coding 18 0.002146
-1746 DLX2 distal-less homeobox 2 protein-coding 41 0.004888
-1747 DLX3 distal-less homeobox 3 protein-coding 40 0.004769
-1748 DLX4 distal-less homeobox 4 protein-coding 30 0.003577
-1749 DLX5 distal-less homeobox 5 protein-coding 71 0.008464
-1750 DLX6 distal-less homeobox 6 protein-coding 31 0.003696
-1755 DMBT1 deleted in malignant brain tumors 1 protein-coding 319 0.03803
-1756 DMD dystrophin protein-coding 590 0.07034
-1757 SARDH sarcosine dehydrogenase protein-coding 104 0.0124
-1758 DMP1 dentin matrix acidic phosphoprotein 1 protein-coding 71 0.008464
-1759 DNM1 dynamin 1 protein-coding 87 0.01037
-1760 DMPK DM1 protein kinase protein-coding 68 0.008107
-1761 DMRT1 doublesex and mab-3 related transcription factor 1 protein-coding 46 0.005484
-1762 DMWD DM1 locus, WD repeat containing protein-coding 57 0.006795
-1763 DNA2 DNA replication helicase/nuclease 2 protein-coding 108 0.01288
-1767 DNAH5 dynein axonemal heavy chain 5 protein-coding 692 0.0825
-1768 DNAH6 dynein axonemal heavy chain 6 protein-coding 243 0.02897
-1769 DNAH8 dynein axonemal heavy chain 8 protein-coding 535 0.06378
-1770 DNAH9 dynein axonemal heavy chain 9 protein-coding 582 0.06938
-1773 DNASE1 deoxyribonuclease 1 protein-coding 23 0.002742
-1774 DNASE1L1 deoxyribonuclease 1 like 1 protein-coding 37 0.004411
-1775 DNASE1L2 deoxyribonuclease 1 like 2 protein-coding 21 0.002504
-1776 DNASE1L3 deoxyribonuclease 1 like 3 protein-coding 43 0.005126
-1777 DNASE2 deoxyribonuclease 2, lysosomal protein-coding 32 0.003815
-1778 DYNC1H1 dynein cytoplasmic 1 heavy chain 1 protein-coding 349 0.04161
-1780 DYNC1I1 dynein cytoplasmic 1 intermediate chain 1 protein-coding 131 0.01562
-1781 DYNC1I2 dynein cytoplasmic 1 intermediate chain 2 protein-coding 60 0.007153
-1783 DYNC1LI2 dynein cytoplasmic 1 light intermediate chain 2 protein-coding 48 0.005722
-1785 DNM2 dynamin 2 protein-coding 107 0.01276
-1786 DNMT1 DNA methyltransferase 1 protein-coding 134 0.01598
-1787 TRDMT1 tRNA aspartic acid methyltransferase 1 protein-coding 64 0.00763
-1788 DNMT3A DNA methyltransferase 3 alpha protein-coding 154 0.01836
-1789 DNMT3B DNA methyltransferase 3 beta protein-coding 129 0.01538
-1791 DNTT DNA nucleotidylexotransferase protein-coding 71 0.008464
-1793 DOCK1 dedicator of cytokinesis 1 protein-coding 189 0.02253
-1794 DOCK2 dedicator of cytokinesis 2 protein-coding 368 0.04387
-1795 DOCK3 dedicator of cytokinesis 3 protein-coding 285 0.03398
-1796 DOK1 docking protein 1 protein-coding 59 0.007034
-1797 DXO decapping exoribonuclease protein-coding 207 0.02468
-1798 DPAGT1 dolichyl-phosphate N-acetylglucosaminephosphotransferase 1 protein-coding 103 0.01228
-1800 DPEP1 dipeptidase 1 protein-coding 154 0.01836
-1801 DPH1 diphthamide biosynthesis 1 protein-coding 47 0.005603
-1802 DPH2 DPH2 homolog protein-coding 63 0.007511
-1803 DPP4 dipeptidyl peptidase 4 protein-coding 123 0.01466
-1804 DPP6 dipeptidyl peptidase like 6 protein-coding 209 0.02492
-1805 DPT dermatopontin protein-coding 23 0.002742
-1806 DPYD dihydropyrimidine dehydrogenase protein-coding 190 0.02265
-1807 DPYS dihydropyrimidinase protein-coding 110 0.01311
-1808 DPYSL2 dihydropyrimidinase like 2 protein-coding 192 0.02289
-1809 DPYSL3 dihydropyrimidinase like 3 protein-coding 83 0.009895
-1810 DR1 down-regulator of transcription 1 protein-coding 21 0.002504
-1811 SLC26A3 solute carrier family 26 member 3 protein-coding 116 0.01383
-1812 DRD1 dopamine receptor D1 protein-coding 64 0.00763
-1813 DRD2 dopamine receptor D2 protein-coding 91 0.01085
-1814 DRD3 dopamine receptor D3 protein-coding 85 0.01013
-1815 DRD4 dopamine receptor D4 protein-coding 25 0.00298
-1816 DRD5 dopamine receptor D5 protein-coding 103 0.01228
-1819 DRG2 developmentally regulated GTP binding protein 2 protein-coding 38 0.00453
-1820 ARID3A AT-rich interaction domain 3A protein-coding 45 0.005365
-1821 DRP2 dystrophin related protein 2 protein-coding 135 0.01609
-1822 ATN1 atrophin 1 protein-coding 122 0.01454
-1823 DSC1 desmocollin 1 protein-coding 131 0.01562
-1824 DSC2 desmocollin 2 protein-coding 114 0.01359
-1825 DSC3 desmocollin 3 protein-coding 126 0.01502
-1826 DSCAM DS cell adhesion molecule protein-coding 501 0.05973
-1827 RCAN1 regulator of calcineurin 1 protein-coding 172 0.02051
-1828 DSG1 desmoglein 1 protein-coding 158 0.01884
-1829 DSG2 desmoglein 2 protein-coding 119 0.01419
-1830 DSG3 desmoglein 3 protein-coding 173 0.02062
-1831 TSC22D3 TSC22 domain family member 3 protein-coding 26 0.0031
-1832 DSP desmoplakin protein-coding 294 0.03505
-1833 EPYC epiphycan protein-coding 56 0.006676
-1834 DSPP dentin sialophosphoprotein protein-coding 373 0.04447
-1836 SLC26A2 solute carrier family 26 member 2 protein-coding 58 0.006915
-1837 DTNA dystrobrevin alpha protein-coding 124 0.01478
-1838 DTNB dystrobrevin beta protein-coding 68 0.008107
-1839 HBEGF heparin binding EGF like growth factor protein-coding 17 0.002027
-1840 DTX1 deltex E3 ubiquitin ligase 1 protein-coding 85 0.01013
-1841 DTYMK deoxythymidylate kinase protein-coding 8 0.0009537
-1842 ECM2 extracellular matrix protein 2 protein-coding 77 0.00918
-1843 DUSP1 dual specificity phosphatase 1 protein-coding 25 0.00298
-1844 DUSP2 dual specificity phosphatase 2 protein-coding 22 0.002623
-1845 DUSP3 dual specificity phosphatase 3 protein-coding 18 0.002146
-1846 DUSP4 dual specificity phosphatase 4 protein-coding 35 0.004173
-1847 DUSP5 dual specificity phosphatase 5 protein-coding 50 0.005961
-1848 DUSP6 dual specificity phosphatase 6 protein-coding 40 0.004769
-1849 DUSP7 dual specificity phosphatase 7 protein-coding 32 0.003815
-1850 DUSP8 dual specificity phosphatase 8 protein-coding 37 0.004411
-1852 DUSP9 dual specificity phosphatase 9 protein-coding 45 0.005365
-1854 DUT deoxyuridine triphosphatase protein-coding 18 0.002146
-1855 DVL1 dishevelled segment polarity protein 1 protein-coding 67 0.007988
-1856 DVL2 dishevelled segment polarity protein 2 protein-coding 82 0.009776
-1857 DVL3 dishevelled segment polarity protein 3 protein-coding 88 0.01049
-1859 DYRK1A dual specificity tyrosine phosphorylation regulated kinase 1A protein-coding 145 0.01729
-1861 TOR1A torsin family 1 member A protein-coding 35 0.004173
-1869 E2F1 E2F transcription factor 1 protein-coding 245 0.02921
-1870 E2F2 E2F transcription factor 2 protein-coding 38 0.00453
-1871 E2F3 E2F transcription factor 3 protein-coding 53 0.006319
-1874 E2F4 E2F transcription factor 4 protein-coding 34 0.004053
-1875 E2F5 E2F transcription factor 5 protein-coding 55 0.006557
-1876 E2F6 E2F transcription factor 6 protein-coding 19 0.002265
-1877 E4F1 E4F transcription factor 1 protein-coding 85 0.01013
-1879 EBF1 early B cell factor 1 protein-coding 121 0.01443
-1880 GPR183 G protein-coupled receptor 183 protein-coding 37 0.004411
-1889 ECE1 endothelin converting enzyme 1 protein-coding 86 0.01025
-1890 TYMP thymidine phosphorylase protein-coding 35 0.004173
-1891 ECH1 enoyl-CoA hydratase 1 protein-coding 26 0.0031
-1892 ECHS1 enoyl-CoA hydratase, short chain 1 protein-coding 37 0.004411
-1893 ECM1 extracellular matrix protein 1 protein-coding 76 0.009061
-1894 ECT2 epithelial cell transforming 2 protein-coding 92 0.01097
-1896 EDA ectodysplasin A protein-coding 53 0.006319
-1901 S1PR1 sphingosine-1-phosphate receptor 1 protein-coding 71 0.008464
-1902 LPAR1 lysophosphatidic acid receptor 1 protein-coding 115 0.01371
-1903 S1PR3 sphingosine-1-phosphate receptor 3 protein-coding 57 0.006795
-1906 EDN1 endothelin 1 protein-coding 26 0.0031
-1907 EDN2 endothelin 2 protein-coding 18 0.002146
-1908 EDN3 endothelin 3 protein-coding 52 0.006199
-1909 EDNRA endothelin receptor type A protein-coding 54 0.006438
-1910 EDNRB endothelin receptor type B protein-coding 128 0.01526
-1911 PHC1 polyhomeotic homolog 1 protein-coding 76 0.009061
-1912 PHC2 polyhomeotic homolog 2 protein-coding 83 0.009895
-1915 EEF1A1 eukaryotic translation elongation factor 1 alpha 1 protein-coding 92 0.01097
-1917 EEF1A2 eukaryotic translation elongation factor 1 alpha 2 protein-coding 76 0.009061
-1933 EEF1B2 eukaryotic translation elongation factor 1 beta 2 protein-coding 31 0.003696
-1936 EEF1D eukaryotic translation elongation factor 1 delta protein-coding 61 0.007272
-1937 EEF1G eukaryotic translation elongation factor 1 gamma protein-coding 45 0.005365
-1938 EEF2 eukaryotic translation elongation factor 2 protein-coding 118 0.01407
-1939 EIF2D eukaryotic translation initiation factor 2D protein-coding 47 0.005603
-1942 EFNA1 ephrin A1 protein-coding 23 0.002742
-1943 EFNA2 ephrin A2 protein-coding 10 0.001192
-1944 EFNA3 ephrin A3 protein-coding 22 0.002623
-1945 EFNA4 ephrin A4 protein-coding 11 0.001311
-1946 EFNA5 ephrin A5 protein-coding 28 0.003338
-1947 EFNB1 ephrin B1 protein-coding 44 0.005246
-1948 EFNB2 ephrin B2 protein-coding 46 0.005484
-1949 EFNB3 ephrin B3 protein-coding 63 0.007511
-1950 EGF epidermal growth factor protein-coding 148 0.01764
-1951 CELSR3 cadherin EGF LAG seven-pass G-type receptor 3 protein-coding 280 0.03338
-1952 CELSR2 cadherin EGF LAG seven-pass G-type receptor 2 protein-coding 259 0.03088
-1953 MEGF6 multiple EGF like domains 6 protein-coding 133 0.01586
-1954 MEGF8 multiple EGF like domains 8 protein-coding 282 0.03362
-1955 MEGF9 multiple EGF like domains 9 protein-coding 51 0.00608
-1956 EGFR epidermal growth factor receptor protein-coding 287 0.03422
-1958 EGR1 early growth response 1 protein-coding 139 0.01657
-1959 EGR2 early growth response 2 protein-coding 77 0.00918
-1960 EGR3 early growth response 3 protein-coding 57 0.006795
-1961 EGR4 early growth response 4 protein-coding 56 0.006676
-1962 EHHADH enoyl-CoA hydratase and 3-hydroxyacyl CoA dehydrogenase protein-coding 97 0.01156
-1964 EIF1AX eukaryotic translation initiation factor 1A, X-linked protein-coding 44 0.005246
-1965 EIF2S1 eukaryotic translation initiation factor 2 subunit alpha protein-coding 82 0.009776
-1967 EIF2B1 eukaryotic translation initiation factor 2B subunit alpha protein-coding 37 0.004411
-1968 EIF2S3 eukaryotic translation initiation factor 2 subunit gamma protein-coding 42 0.005007
-1969 EPHA2 EPH receptor A2 protein-coding 190 0.02265
-1973 EIF4A1 eukaryotic translation initiation factor 4A1 protein-coding 56 0.006676
-1974 EIF4A2 eukaryotic translation initiation factor 4A2 protein-coding 78 0.009299
-1975 EIF4B eukaryotic translation initiation factor 4B protein-coding 73 0.008703
-1977 EIF4E eukaryotic translation initiation factor 4E protein-coding 31 0.003696
-1978 EIF4EBP1 eukaryotic translation initiation factor 4E binding protein 1 protein-coding 6 0.0007153
-1979 EIF4EBP2 eukaryotic translation initiation factor 4E binding protein 2 protein-coding 14 0.001669
-1981 EIF4G1 eukaryotic translation initiation factor 4 gamma 1 protein-coding 183 0.02182
-1982 EIF4G2 eukaryotic translation initiation factor 4 gamma 2 protein-coding 118 0.01407
-1983 EIF5 eukaryotic translation initiation factor 5 protein-coding 67 0.007988
-1984 EIF5A eukaryotic translation initiation factor 5A protein-coding 42 0.005007
-1990 CELA1 chymotrypsin like elastase family member 1 protein-coding 31 0.003696
-1991 ELANE elastase, neutrophil expressed protein-coding 35 0.004173
-1992 SERPINB1 serpin family B member 1 protein-coding 36 0.004292
-1993 ELAVL2 ELAV like RNA binding protein 2 protein-coding 95 0.01133
-1994 ELAVL1 ELAV like RNA binding protein 1 protein-coding 65 0.007749
-1995 ELAVL3 ELAV like RNA binding protein 3 protein-coding 52 0.006199
-1996 ELAVL4 ELAV like RNA binding protein 4 protein-coding 86 0.01025
-1997 ELF1 E74 like ETS transcription factor 1 protein-coding 164 0.01955
-1998 ELF2 E74 like ETS transcription factor 2 protein-coding 52 0.006199
-1999 ELF3 E74 like ETS transcription factor 3 protein-coding 116 0.01383
-2000 ELF4 E74 like ETS transcription factor 4 protein-coding 87 0.01037
-2001 ELF5 E74 like ETS transcription factor 5 protein-coding 30 0.003577
-2002 ELK1 ELK1, ETS transcription factor protein-coding 50 0.005961
-2004 ELK3 ELK3, ETS transcription factor protein-coding 42 0.005007
-2005 ELK4 ELK4, ETS transcription factor protein-coding 42 0.005007
-2006 ELN elastin protein-coding 87 0.01037
-2009 EML1 echinoderm microtubule associated protein like 1 protein-coding 112 0.01335
-2010 EMD emerin protein-coding 37 0.004411
-2011 MARK2 microtubule affinity regulating kinase 2 protein-coding 113 0.01347
-2012 EMP1 epithelial membrane protein 1 protein-coding 21 0.002504
-2013 EMP2 epithelial membrane protein 2 protein-coding 23 0.002742
-2014 EMP3 epithelial membrane protein 3 protein-coding 18 0.002146
-2015 ADGRE1 adhesion G protein-coupled receptor E1 protein-coding 138 0.01645
-2016 EMX1 empty spiracles homeobox 1 protein-coding 18 0.002146
-2017 CTTN cortactin protein-coding 78 0.009299
-2018 EMX2 empty spiracles homeobox 2 protein-coding 34 0.004053
-2019 EN1 engrailed homeobox 1 protein-coding 42 0.005007
-2020 EN2 engrailed homeobox 2 protein-coding 22 0.002623
-2021 ENDOG endonuclease G protein-coding 13 0.00155
-2022 ENG endoglin protein-coding 56 0.006676
-2023 ENO1 enolase 1 protein-coding 48 0.005722
-2026 ENO2 enolase 2 protein-coding 34 0.004053
-2027 ENO3 enolase 3 protein-coding 49 0.005842
-2028 ENPEP glutamyl aminopeptidase protein-coding 166 0.01979
-2029 ENSA endosulfine alpha protein-coding 18 0.002146
-2030 SLC29A1 solute carrier family 29 member 1 (Augustine blood group) protein-coding 48 0.005722
-2033 EP300 E1A binding protein p300 protein-coding 340 0.04053
-2034 EPAS1 endothelial PAS domain protein 1 protein-coding 158 0.01884
-2035 EPB41 erythrocyte membrane protein band 4.1 protein-coding 86 0.01025
-2036 EPB41L1 erythrocyte membrane protein band 4.1 like 1 protein-coding 115 0.01371
-2037 EPB41L2 erythrocyte membrane protein band 4.1 like 2 protein-coding 135 0.01609
-2038 EPB42 erythrocyte membrane protein band 4.2 protein-coding 82 0.009776
-2039 DMTN dematin actin binding protein protein-coding 58 0.006915
-2040 STOM stomatin protein-coding 19 0.002265
-2041 EPHA1 EPH receptor A1 protein-coding 109 0.01299
-2042 EPHA3 EPH receptor A3 protein-coding 273 0.03255
-2043 EPHA4 EPH receptor A4 protein-coding 155 0.01848
-2044 EPHA5 EPH receptor A5 protein-coding 319 0.03803
-2045 EPHA7 EPH receptor A7 protein-coding 187 0.02229
-2046 EPHA8 EPH receptor A8 protein-coding 147 0.01753
-2047 EPHB1 EPH receptor B1 protein-coding 245 0.02921
-2048 EPHB2 EPH receptor B2 protein-coding 132 0.01574
-2049 EPHB3 EPH receptor B3 protein-coding 135 0.01609
-2050 EPHB4 EPH receptor B4 protein-coding 111 0.01323
-2051 EPHB6 EPH receptor B6 protein-coding 181 0.02158
-2052 EPHX1 epoxide hydrolase 1 protein-coding 63 0.007511
-2053 EPHX2 epoxide hydrolase 2 protein-coding 59 0.007034
-2054 STX2 syntaxin 2 protein-coding 51 0.00608
-2055 CLN8 CLN8, transmembrane ER and ERGIC protein protein-coding 33 0.003934
-2056 EPO erythropoietin protein-coding 25 0.00298
-2057 EPOR erythropoietin receptor protein-coding 39 0.004649
-2058 EPRS glutamyl-prolyl-tRNA synthetase protein-coding 227 0.02706
-2059 EPS8 epidermal growth factor receptor pathway substrate 8 protein-coding 103 0.01228
-2060 EPS15 epidermal growth factor receptor pathway substrate 15 protein-coding 96 0.01144
-2063 NR2F6 nuclear receptor subfamily 2 group F member 6 protein-coding 23 0.002742
-2064 ERBB2 erb-b2 receptor tyrosine kinase 2 protein-coding 197 0.02349
-2065 ERBB3 erb-b2 receptor tyrosine kinase 3 protein-coding 240 0.02861
-2066 ERBB4 erb-b2 receptor tyrosine kinase 4 protein-coding 342 0.04077
-2067 ERCC1 ERCC excision repair 1, endonuclease non-catalytic subunit protein-coding 45 0.005365
-2068 ERCC2 ERCC excision repair 2, TFIIH core complex helicase subunit protein-coding 102 0.01216
-2069 EREG epiregulin protein-coding 23 0.002742
-2070 EYA4 EYA transcriptional coactivator and phosphatase 4 protein-coding 133 0.01586
-2071 ERCC3 ERCC excision repair 3, TFIIH core complex helicase subunit protein-coding 85 0.01013
-2072 ERCC4 ERCC excision repair 4, endonuclease catalytic subunit protein-coding 108 0.01288
-2073 ERCC5 ERCC excision repair 5, endonuclease protein-coding 38 0.00453
-2074 ERCC6 ERCC excision repair 6, chromatin remodeling factor protein-coding 120 0.01431
-2077 ERF ETS2 repressor factor protein-coding 79 0.009418
-2078 ERG ERG, ETS transcription factor protein-coding 80 0.009537
-2079 ERH ERH, mRNA splicing and mitosis factor protein-coding 8 0.0009537
-2081 ERN1 endoplasmic reticulum to nucleus signaling 1 protein-coding 87 0.01037
-2086 ERV3-1 endogenous retrovirus group 3 member 1, envelope protein-coding 70 0.008345
-2091 FBL fibrillarin protein-coding 45 0.005365
-2098 ESD esterase D protein-coding 30 0.003577
-2099 ESR1 estrogen receptor 1 protein-coding 103 0.01228
-2100 ESR2 estrogen receptor 2 protein-coding 74 0.008822
-2101 ESRRA estrogen related receptor alpha protein-coding 33 0.003934
-2103 ESRRB estrogen related receptor beta protein-coding 81 0.009657
-2104 ESRRG estrogen related receptor gamma protein-coding 118 0.01407
-2107 ETF1 eukaryotic translation termination factor 1 protein-coding 119 0.01419
-2108 ETFA electron transfer flavoprotein alpha subunit protein-coding 187 0.02229
-2109 ETFB electron transfer flavoprotein beta subunit protein-coding 192 0.02289
-2110 ETFDH electron transfer flavoprotein dehydrogenase protein-coding 206 0.02456
-2113 ETS1 ETS proto-oncogene 1, transcription factor protein-coding 60 0.007153
-2114 ETS2 ETS proto-oncogene 2, transcription factor protein-coding 55 0.006557
-2115 ETV1 ETS variant 1 protein-coding 83 0.009895
-2116 ETV2 ETS variant 2 protein-coding 25 0.00298
-2117 ETV3 ETS variant 3 protein-coding 52 0.006199
-2118 ETV4 ETS variant 4 protein-coding 41 0.004888
-2119 ETV5 ETS variant 5 protein-coding 81 0.009657
-2120 ETV6 ETS variant 6 protein-coding 83 0.009895
-2121 EVC EvC ciliary complex subunit 1 protein-coding 124 0.01478
-2122 MECOM MDS1 and EVI1 complex locus protein-coding 182 0.0217
-2123 EVI2A ecotropic viral integration site 2A protein-coding 34 0.004053
-2124 EVI2B ecotropic viral integration site 2B protein-coding 51 0.00608
-2125 EVPL envoplakin protein-coding 186 0.02217
-2128 EVX1 even-skipped homeobox 1 protein-coding 34 0.004053
-2130 EWSR1 EWS RNA binding protein 1 protein-coding 80 0.009537
-2131 EXT1 exostosin glycosyltransferase 1 protein-coding 95 0.01133
-2132 EXT2 exostosin glycosyltransferase 2 protein-coding 72 0.008584
-2133 EXT3 exostoses (multiple) 3 unknown 72 0.008584
-2134 EXTL1 exostosin like glycosyltransferase 1 protein-coding 75 0.008941
-2135 EXTL2 exostosin like glycosyltransferase 2 protein-coding 42 0.005007
-2137 EXTL3 exostosin like glycosyltransferase 3 protein-coding 94 0.01121
-2138 EYA1 EYA transcriptional coactivator and phosphatase 1 protein-coding 131 0.01562
-2139 EYA2 EYA transcriptional coactivator and phosphatase 2 protein-coding 86 0.01025
-2140 EYA3 EYA transcriptional coactivator and phosphatase 3 protein-coding 57 0.006795
-2145 EZH1 enhancer of zeste 1 polycomb repressive complex 2 subunit protein-coding 81 0.009657
-2146 EZH2 enhancer of zeste 2 polycomb repressive complex 2 subunit protein-coding 98 0.01168
-2147 F2 coagulation factor II, thrombin protein-coding 88 0.01049
-2149 F2R coagulation factor II thrombin receptor protein-coding 68 0.008107
-2150 F2RL1 F2R like trypsin receptor 1 protein-coding 47 0.005603
-2151 F2RL2 coagulation factor II thrombin receptor like 2 protein-coding 38 0.00453
-2152 F3 coagulation factor III, tissue factor protein-coding 133 0.01586
-2153 F5 coagulation factor V protein-coding 288 0.03433
-2155 F7 coagulation factor VII protein-coding 67 0.007988
-2157 F8 coagulation factor VIII protein-coding 303 0.03612
-2158 F9 coagulation factor IX protein-coding 102 0.01216
-2159 F10 coagulation factor X protein-coding 82 0.009776
-2160 F11 coagulation factor XI protein-coding 98 0.01168
-2161 F12 coagulation factor XII protein-coding 53 0.006319
-2162 F13A1 coagulation factor XIII A chain protein-coding 157 0.01872
-2165 F13B coagulation factor XIII B chain protein-coding 163 0.01943
-2166 FAAH fatty acid amide hydrolase protein-coding 55 0.006557
-2167 FABP4 fatty acid binding protein 4 protein-coding 22 0.002623
-2168 FABP1 fatty acid binding protein 1 protein-coding 29 0.003457
-2169 FABP2 fatty acid binding protein 2 protein-coding 23 0.002742
-2170 FABP3 fatty acid binding protein 3 protein-coding 13 0.00155
-2171 FABP5 fatty acid binding protein 5 protein-coding 14 0.001669
-2172 FABP6 fatty acid binding protein 6 protein-coding 28 0.003338
-2173 FABP7 fatty acid binding protein 7 protein-coding 15 0.001788
-2175 FANCA Fanconi anemia complementation group A protein-coding 162 0.01931
-2176 FANCC Fanconi anemia complementation group C protein-coding 66 0.007868
-2177 FANCD2 Fanconi anemia complementation group D2 protein-coding 141 0.01681
-2178 FANCE Fanconi anemia complementation group E protein-coding 44 0.005246
-2180 ACSL1 acyl-CoA synthetase long chain family member 1 protein-coding 75 0.008941
-2181 ACSL3 acyl-CoA synthetase long chain family member 3 protein-coding 70 0.008345
-2182 ACSL4 acyl-CoA synthetase long chain family member 4 protein-coding 81 0.009657
-2184 FAH fumarylacetoacetate hydrolase protein-coding 42 0.005007
-2185 PTK2B protein tyrosine kinase 2 beta protein-coding 116 0.01383
-2186 BPTF bromodomain PHD finger transcription factor protein-coding 219 0.02611
-2187 FANCB Fanconi anemia complementation group B protein-coding 105 0.01252
-2188 FANCF Fanconi anemia complementation group F protein-coding 33 0.003934
-2189 FANCG Fanconi anemia complementation group G protein-coding 53 0.006319
-2191 FAP fibroblast activation protein alpha protein-coding 134 0.01598
-2192 FBLN1 fibulin 1 protein-coding 98 0.01168
-2193 FARSA phenylalanyl-tRNA synthetase alpha subunit protein-coding 65 0.007749
-2194 FASN fatty acid synthase protein-coding 273 0.03255
-2195 FAT1 FAT atypical cadherin 1 protein-coding 575 0.06855
-2196 FAT2 FAT atypical cadherin 2 protein-coding 422 0.05031
-2197 FAU FAU, ubiquitin like and ribosomal protein S30 fusion protein-coding 18 0.002146
-2199 FBLN2 fibulin 2 protein-coding 138 0.01645
-2200 FBN1 fibrillin 1 protein-coding 329 0.03922
-2201 FBN2 fibrillin 2 protein-coding 424 0.05055
-2202 EFEMP1 EGF containing fibulin extracellular matrix protein 1 protein-coding 91 0.01085
-2203 FBP1 fructose-bisphosphatase 1 protein-coding 35 0.004173
-2204 FCAR Fc fragment of IgA receptor protein-coding 62 0.007392
-2205 FCER1A Fc fragment of IgE receptor Ia protein-coding 62 0.007392
-2206 MS4A2 membrane spanning 4-domains A2 protein-coding 45 0.005365
-2207 FCER1G Fc fragment of IgE receptor Ig protein-coding 16 0.001907
-2208 FCER2 Fc fragment of IgE receptor II protein-coding 38 0.00453
-2209 FCGR1A Fc fragment of IgG receptor Ia protein-coding 45 0.005365
-2210 FCGR1B Fc fragment of IgG receptor Ib protein-coding 32 0.003815
-2212 FCGR2A Fc fragment of IgG receptor IIa protein-coding 54 0.006438
-2213 FCGR2B Fc fragment of IgG receptor IIb protein-coding 43 0.005126
-2214 FCGR3A Fc fragment of IgG receptor IIIa protein-coding 52 0.006199
-2215 FCGR3B Fc fragment of IgG receptor IIIb protein-coding 53 0.006319
-2217 FCGRT Fc fragment of IgG receptor and transporter protein-coding 53 0.006319
-2218 FKTN fukutin protein-coding 54 0.006438
-2219 FCN1 ficolin 1 protein-coding 94 0.01121
-2220 FCN2 ficolin 2 protein-coding 67 0.007988
-2222 FDFT1 farnesyl-diphosphate farnesyltransferase 1 protein-coding 31 0.003696
-2224 FDPS farnesyl diphosphate synthase protein-coding 63 0.007511
-2230 FDX1 ferredoxin 1 protein-coding 13 0.00155
-2232 FDXR ferredoxin reductase protein-coding 58 0.006915
-2235 FECH ferrochelatase protein-coding 42 0.005007
-2237 FEN1 flap structure-specific endonuclease 1 protein-coding 26 0.0031
-2239 GPC4 glypican 4 protein-coding 74 0.008822
-2241 FER FER tyrosine kinase protein-coding 123 0.01466
-2242 FES FES proto-oncogene, tyrosine kinase protein-coding 84 0.01001
-2243 FGA fibrinogen alpha chain protein-coding 169 0.02015
-2244 FGB fibrinogen beta chain protein-coding 79 0.009418
-2245 FGD1 FYVE, RhoGEF and PH domain containing 1 protein-coding 116 0.01383
-2246 FGF1 fibroblast growth factor 1 protein-coding 26 0.0031
-2247 FGF2 fibroblast growth factor 2 protein-coding 23 0.002742
-2248 FGF3 fibroblast growth factor 3 protein-coding 36 0.004292
-2249 FGF4 fibroblast growth factor 4 protein-coding 9 0.001073
-2250 FGF5 fibroblast growth factor 5 protein-coding 57 0.006795
-2251 FGF6 fibroblast growth factor 6 protein-coding 56 0.006676
-2252 FGF7 fibroblast growth factor 7 protein-coding 38 0.00453
-2253 FGF8 fibroblast growth factor 8 protein-coding 38 0.00453
-2254 FGF9 fibroblast growth factor 9 protein-coding 35 0.004173
-2255 FGF10 fibroblast growth factor 10 protein-coding 54 0.006438
-2256 FGF11 fibroblast growth factor 11 protein-coding 14 0.001669
-2257 FGF12 fibroblast growth factor 12 protein-coding 59 0.007034
-2258 FGF13 fibroblast growth factor 13 protein-coding 95 0.01133
-2259 FGF14 fibroblast growth factor 14 protein-coding 58 0.006915
-2260 FGFR1 fibroblast growth factor receptor 1 protein-coding 916 0.1092
-2261 FGFR3 fibroblast growth factor receptor 3 protein-coding 146 0.01741
-2262 GPC5 glypican 5 protein-coding 170 0.02027
-2263 FGFR2 fibroblast growth factor receptor 2 protein-coding 159 0.01896
-2264 FGFR4 fibroblast growth factor receptor 4 protein-coding 104 0.0124
-2266 FGG fibrinogen gamma chain protein-coding 75 0.008941
-2267 FGL1 fibrinogen like 1 protein-coding 35 0.004173
-2268 FGR FGR proto-oncogene, Src family tyrosine kinase protein-coding 57 0.006795
-2271 FH fumarate hydratase protein-coding 64 0.00763
-2272 FHIT fragile histidine triad protein-coding 29 0.003457
-2273 FHL1 four and a half LIM domains 1 protein-coding 46 0.005484
-2274 FHL2 four and a half LIM domains 2 protein-coding 34 0.004053
-2275 FHL3 four and a half LIM domains 3 protein-coding 27 0.003219
-2277 VEGFD vascular endothelial growth factor D protein-coding 51 0.00608
-2280 FKBP1A FK506 binding protein 1A protein-coding 11 0.001311
-2281 FKBP1B FK506 binding protein 1B protein-coding 5 0.0005961
-2286 FKBP2 FK506 binding protein 2 protein-coding 15 0.001788
-2287 FKBP3 FK506 binding protein 3 protein-coding 26 0.0031
-2288 FKBP4 FK506 binding protein 4 protein-coding 52 0.006199
-2289 FKBP5 FK506 binding protein 5 protein-coding 51 0.00608
-2290 FOXG1 forkhead box G1 protein-coding 129 0.01538
-2294 FOXF1 forkhead box F1 protein-coding 47 0.005603
-2295 FOXF2 forkhead box F2 protein-coding 42 0.005007
-2296 FOXC1 forkhead box C1 protein-coding 39 0.004649
-2297 FOXD1 forkhead box D1 protein-coding 11 0.001311
-2298 FOXD4 forkhead box D4 protein-coding 72 0.008584
-2299 FOXI1 forkhead box I1 protein-coding 76 0.009061
-2300 FOXL1 forkhead box L1 protein-coding 42 0.005007
-2301 FOXE3 forkhead box E3 protein-coding 13 0.00155
-2302 FOXJ1 forkhead box J1 protein-coding 27 0.003219
-2303 FOXC2 forkhead box C2 protein-coding 52 0.006199
-2304 FOXE1 forkhead box E1 protein-coding 143 0.01705
-2305 FOXM1 forkhead box M1 protein-coding 166 0.01979
-2306 FOXD2 forkhead box D2 protein-coding 28 0.003338
-2307 FOXS1 forkhead box S1 protein-coding 46 0.005484
-2308 FOXO1 forkhead box O1 protein-coding 64 0.00763
-2309 FOXO3 forkhead box O3 protein-coding 54 0.006438
-2312 FLG filaggrin protein-coding 864 0.103
-2313 FLI1 Fli-1 proto-oncogene, ETS transcription factor protein-coding 89 0.01061
-2314 FLII FLII, actin remodeling protein protein-coding 101 0.01204
-2315 MLANA melan-A protein-coding 14 0.001669
-2316 FLNA filamin A protein-coding 304 0.03624
-2317 FLNB filamin B protein-coding 240 0.02861
-2318 FLNC filamin C protein-coding 356 0.04244
-2319 FLOT2 flotillin 2 protein-coding 54 0.006438
-2321 FLT1 fms related tyrosine kinase 1 protein-coding 191 0.02277
-2322 FLT3 fms related tyrosine kinase 3 protein-coding 145 0.01729
-2323 FLT3LG fms related tyrosine kinase 3 ligand protein-coding 26 0.0031
-2324 FLT4 fms related tyrosine kinase 4 protein-coding 205 0.02444
-2326 FMO1 flavin containing monooxygenase 1 protein-coding 104 0.0124
-2327 FMO2 flavin containing monooxygenase 2 protein-coding 90 0.01073
-2328 FMO3 flavin containing monooxygenase 3 protein-coding 96 0.01144
-2329 FMO4 flavin containing monooxygenase 4 protein-coding 88 0.01049
-2330 FMO5 flavin containing monooxygenase 5 protein-coding 66 0.007868
-2331 FMOD fibromodulin protein-coding 77 0.00918
-2332 FMR1 fragile X mental retardation 1 protein-coding 120 0.01431
-2334 AFF2 AF4/FMR2 family member 2 protein-coding 301 0.03588
-2335 FN1 fibronectin 1 protein-coding 292 0.03481
-2339 FNTA farnesyltransferase, CAAX box, alpha protein-coding 38 0.00453
-2342 FNTB farnesyltransferase, CAAX box, beta protein-coding 37 0.004411
-2346 FOLH1 folate hydrolase 1 protein-coding 173 0.02062
-2348 FOLR1 folate receptor 1 protein-coding 30 0.003577
-2350 FOLR2 folate receptor beta protein-coding 30 0.003577
-2352 FOLR3 folate receptor 3 protein-coding 54 0.006438
-2353 FOS Fos proto-oncogene, AP-1 transcription factor subunit protein-coding 44 0.005246
-2354 FOSB FosB proto-oncogene, AP-1 transcription factor subunit protein-coding 43 0.005126
-2355 FOSL2 FOS like 2, AP-1 transcription factor subunit protein-coding 61 0.007272
-2356 FPGS folylpolyglutamate synthase protein-coding 52 0.006199
-2357 FPR1 formyl peptide receptor 1 protein-coding 64 0.00763
-2358 FPR2 formyl peptide receptor 2 protein-coding 76 0.009061
-2359 FPR3 formyl peptide receptor 3 protein-coding 68 0.008107
-2395 FXN frataxin protein-coding 17 0.002027
-2444 FRK fyn related Src family tyrosine kinase protein-coding 65 0.007749
-2475 MTOR mechanistic target of rapamycin kinase protein-coding 263 0.03135
-2483 FRG1 FSHD region gene 1 protein-coding 32 0.003815
-2487 FRZB frizzled related protein protein-coding 56 0.006676
-2488 FSHB follicle stimulating hormone beta subunit protein-coding 29 0.003457
-2491 CENPI centromere protein I protein-coding 86 0.01025
-2492 FSHR follicle stimulating hormone receptor protein-coding 187 0.02229
-2494 NR5A2 nuclear receptor subfamily 5 group A member 2 protein-coding 87 0.01037
-2495 FTH1 ferritin heavy chain 1 protein-coding 26 0.0031
-2512 FTL ferritin light chain protein-coding 22 0.002623
-2515 ADAM2 ADAM metallopeptidase domain 2 protein-coding 153 0.01824
-2516 NR5A1 nuclear receptor subfamily 5 group A member 1 protein-coding 137 0.01633
-2517 FUCA1 alpha-L-fucosidase 1 protein-coding 31 0.003696
-2519 FUCA2 alpha-L-fucosidase 2 protein-coding 49 0.005842
-2520 GAST gastrin protein-coding 19 0.002265
-2521 FUS FUS RNA binding protein protein-coding 61 0.007272
-2523 FUT1 fucosyltransferase 1 (H blood group) protein-coding 49 0.005842
-2524 FUT2 fucosyltransferase 2 protein-coding 39 0.004649
-2525 FUT3 fucosyltransferase 3 (Lewis blood group) protein-coding 56 0.006676
-2526 FUT4 fucosyltransferase 4 protein-coding 40 0.004769
-2527 FUT5 fucosyltransferase 5 protein-coding 53 0.006319
-2528 FUT6 fucosyltransferase 6 protein-coding 57 0.006795
-2529 FUT7 fucosyltransferase 7 protein-coding 22 0.002623
-2530 FUT8 fucosyltransferase 8 protein-coding 83 0.009895
-2531 KDSR 3-ketodihydrosphingosine reductase protein-coding 32 0.003815
-2532 ACKR1 atypical chemokine receptor 1 (Duffy blood group) protein-coding 85 0.01013
-2533 FYB1 FYN binding protein 1 protein-coding 135 0.01609
-2534 FYN FYN proto-oncogene, Src family tyrosine kinase protein-coding 183 0.02182
-2535 FZD2 frizzled class receptor 2 protein-coding 75 0.008941
-2537 IFI6 interferon alpha inducible protein 6 protein-coding 12 0.001431
-2538 G6PC glucose-6-phosphatase catalytic subunit protein-coding 50 0.005961
-2539 G6PD glucose-6-phosphate dehydrogenase protein-coding 67 0.007988
-2542 SLC37A4 solute carrier family 37 member 4 protein-coding 41 0.004888
-2543 GAGE1 G antigen 1 protein-coding 1 0.0001192
-2547 XRCC6 X-ray repair cross complementing 6 protein-coding 61 0.007272
-2548 GAA glucosidase alpha, acid protein-coding 93 0.01109
-2549 GAB1 GRB2 associated binding protein 1 protein-coding 78 0.009299
-2550 GABBR1 gamma-aminobutyric acid type B receptor subunit 1 protein-coding 126 0.01502
-2551 GABPA GA binding protein transcription factor alpha subunit protein-coding 57 0.006795
-2553 GABPB1 GA binding protein transcription factor beta subunit 1 protein-coding 86 0.01025
-2554 GABRA1 gamma-aminobutyric acid type A receptor alpha1 subunit protein-coding 147 0.01753
-2555 GABRA2 gamma-aminobutyric acid type A receptor alpha2 subunit protein-coding 160 0.01907
-2556 GABRA3 gamma-aminobutyric acid type A receptor alpha3 subunit protein-coding 96 0.01144
-2557 GABRA4 gamma-aminobutyric acid type A receptor alpha4 subunit protein-coding 154 0.01836
-2558 GABRA5 gamma-aminobutyric acid type A receptor alpha5 subunit protein-coding 134 0.01598
-2559 GABRA6 gamma-aminobutyric acid type A receptor alpha6 subunit protein-coding 142 0.01693
-2560 GABRB1 gamma-aminobutyric acid type A receptor beta1 subunit protein-coding 112 0.01335
-2561 GABRB2 gamma-aminobutyric acid type A receptor beta2 subunit protein-coding 114 0.01359
-2562 GABRB3 gamma-aminobutyric acid type A receptor beta3 subunit protein-coding 147 0.01753
-2563 GABRD gamma-aminobutyric acid type A receptor delta subunit protein-coding 76 0.009061
-2564 GABRE gamma-aminobutyric acid type A receptor epsilon subunit protein-coding 90 0.01073
-2565 GABRG1 gamma-aminobutyric acid type A receptor gamma1 subunit protein-coding 173 0.02062
-2566 GABRG2 gamma-aminobutyric acid type A receptor gamma2 subunit protein-coding 162 0.01931
-2567 GABRG3 gamma-aminobutyric acid type A receptor gamma3 subunit protein-coding 132 0.01574
-2568 GABRP gamma-aminobutyric acid type A receptor pi subunit protein-coding 62 0.007392
-2569 GABRR1 gamma-aminobutyric acid type A receptor rho1 subunit protein-coding 79 0.009418
-2570 GABRR2 gamma-aminobutyric acid type A receptor rho2 subunit protein-coding 60 0.007153
-2571 GAD1 glutamate decarboxylase 1 protein-coding 95 0.01133
-2572 GAD2 glutamate decarboxylase 2 protein-coding 135 0.01609
-2574 GAGE2C G antigen 2C protein-coding 9 0.001073
-2580 GAK cyclin G associated kinase protein-coding 132 0.01574
-2581 GALC galactosylceramidase protein-coding 85 0.01013
-2582 GALE UDP-galactose-4-epimerase protein-coding 29 0.003457
-2583 B4GALNT1 beta-1,4-N-acetyl-galactosaminyltransferase 1 protein-coding 67 0.007988
-2584 GALK1 galactokinase 1 protein-coding 32 0.003815
-2585 GALK2 galactokinase 2 protein-coding 165 0.01967
-2587 GALR1 galanin receptor 1 protein-coding 61 0.007272
-2588 GALNS galactosamine (N-acetyl)-6-sulfatase protein-coding 50 0.005961
-2589 GALNT1 polypeptide N-acetylgalactosaminyltransferase 1 protein-coding 63 0.007511
-2590 GALNT2 polypeptide N-acetylgalactosaminyltransferase 2 protein-coding 85 0.01013
-2591 GALNT3 polypeptide N-acetylgalactosaminyltransferase 3 protein-coding 89 0.01061
-2592 GALT galactose-1-phosphate uridylyltransferase protein-coding 41 0.004888
-2593 GAMT guanidinoacetate N-methyltransferase protein-coding 20 0.002384
-2595 GANC glucosidase alpha, neutral C protein-coding 80 0.009537
-2596 GAP43 growth associated protein 43 protein-coding 62 0.007392
-2597 GAPDH glyceraldehyde-3-phosphate dehydrogenase protein-coding 39 0.004649
-2615 LRRC32 leucine rich repeat containing 32 protein-coding 111 0.01323
-2617 GARS glycyl-tRNA synthetase protein-coding 101 0.01204
-2618 GART phosphoribosylglycinamide formyltransferase, phosphoribosylglycinamide synthetase, phosphoribosylaminoimidazole synthetase protein-coding 124 0.01478
-2619 GAS1 growth arrest specific 1 protein-coding 9 0.001073
-2620 GAS2 growth arrest specific 2 protein-coding 61 0.007272
-2621 GAS6 growth arrest specific 6 protein-coding 85 0.01013
-2622 GAS8 growth arrest specific 8 protein-coding 49 0.005842
-2623 GATA1 GATA binding protein 1 protein-coding 54 0.006438
-2624 GATA2 GATA binding protein 2 protein-coding 60 0.007153
-2625 GATA3 GATA binding protein 3 protein-coding 207 0.02468
-2626 GATA4 GATA binding protein 4 protein-coding 33 0.003934
-2627 GATA6 GATA binding protein 6 protein-coding 42 0.005007
-2628 GATM glycine amidinotransferase protein-coding 47 0.005603
-2629 GBA glucosylceramidase beta protein-coding 64 0.00763
-2630 GBAP1 glucosylceramidase beta pseudogene 1 pseudo 3 0.0003577
-2631 NIPSNAP2 nipsnap homolog 2 protein-coding 36 0.004292
-2632 GBE1 1,4-alpha-glucan branching enzyme 1 protein-coding 83 0.009895
-2633 GBP1 guanylate binding protein 1 protein-coding 84 0.01001
-2634 GBP2 guanylate binding protein 2 protein-coding 64 0.00763
-2635 GBP3 guanylate binding protein 3 protein-coding 66 0.007868
-2636 GBX1 gastrulation brain homeobox 1 protein-coding 45 0.005365
-2637 GBX2 gastrulation brain homeobox 2 protein-coding 31 0.003696
-2638 GC GC, vitamin D binding protein protein-coding 115 0.01371
-2639 GCDH glutaryl-CoA dehydrogenase protein-coding 52 0.006199
-2641 GCG glucagon protein-coding 49 0.005842
-2642 GCGR glucagon receptor protein-coding 24 0.002861
-2643 GCH1 GTP cyclohydrolase 1 protein-coding 24 0.002861
-2644 GCHFR GTP cyclohydrolase I feedback regulator protein-coding 12 0.001431
-2645 GCK glucokinase protein-coding 139 0.01657
-2646 GCKR glucokinase regulator protein-coding 70 0.008345
-2647 BLOC1S1 biogenesis of lysosomal organelles complex 1 subunit 1 protein-coding 17 0.002027
-2648 KAT2A lysine acetyltransferase 2A protein-coding 75 0.008941
-2649 NR6A1 nuclear receptor subfamily 6 group A member 1 protein-coding 40 0.004769
-2650 GCNT1 glucosaminyl (N-acetyl) transferase 1, core 2 protein-coding 57 0.006795
-2651 GCNT2 glucosaminyl (N-acetyl) transferase 2 (I blood group) protein-coding 40 0.004769
-2652 OPN1MW opsin 1, medium wave sensitive protein-coding 27 0.003219
-2653 GCSH glycine cleavage system protein H protein-coding 13 0.00155
-2657 GDF1 growth differentiation factor 1 protein-coding 10 0.001192
-2658 GDF2 growth differentiation factor 2 protein-coding 97 0.01156
-2660 MSTN myostatin protein-coding 62 0.007392
-2661 GDF9 growth differentiation factor 9 protein-coding 57 0.006795
-2662 GDF10 growth differentiation factor 10 protein-coding 81 0.009657
-2664 GDI1 GDP dissociation inhibitor 1 protein-coding 62 0.007392
-2665 GDI2 GDP dissociation inhibitor 2 protein-coding 45 0.005365
-2668 GDNF glial cell derived neurotrophic factor protein-coding 125 0.0149
-2669 GEM GTP binding protein overexpressed in skeletal muscle protein-coding 50 0.005961
-2670 GFAP glial fibrillary acidic protein protein-coding 52 0.006199
-2671 GFER growth factor, augmenter of liver regeneration protein-coding 10 0.001192
-2672 GFI1 growth factor independent 1 transcriptional repressor protein-coding 50 0.005961
-2673 GFPT1 glutamine--fructose-6-phosphate transaminase 1 protein-coding 88 0.01049
-2674 GFRA1 GDNF family receptor alpha 1 protein-coding 103 0.01228
-2675 GFRA2 GDNF family receptor alpha 2 protein-coding 58 0.006915
-2676 GFRA3 GDNF family receptor alpha 3 protein-coding 41 0.004888
-2677 GGCX gamma-glutamyl carboxylase protein-coding 78 0.009299
-2678 GGT1 gamma-glutamyltransferase 1 protein-coding 59 0.007034
-2679 GGT3P gamma-glutamyltransferase 3 pseudogene pseudo 50 0.005961
-2681 GGTA1P glycoprotein, alpha-galactosyltransferase 1 pseudogene pseudo 8 0.0009537
-2683 B4GALT1 beta-1,4-galactosyltransferase 1 protein-coding 34 0.004053
-2686 GGT7 gamma-glutamyltransferase 7 protein-coding 61 0.007272
-2687 GGT5 gamma-glutamyltransferase 5 protein-coding 84 0.01001
-2688 GH1 growth hormone 1 protein-coding 43 0.005126
-2689 GH2 growth hormone 2 protein-coding 41 0.004888
-2690 GHR growth hormone receptor protein-coding 119 0.01419
-2691 GHRH growth hormone releasing hormone protein-coding 16 0.001907
-2692 GHRHR growth hormone releasing hormone receptor protein-coding 40 0.004769
-2693 GHSR growth hormone secretagogue receptor protein-coding 64 0.00763
-2694 GIF gastric intrinsic factor protein-coding 64 0.00763
-2695 GIP gastric inhibitory polypeptide protein-coding 27 0.003219
-2696 GIPR gastric inhibitory polypeptide receptor protein-coding 41 0.004888
-2697 GJA1 gap junction protein alpha 1 protein-coding 81 0.009657
-2700 GJA3 gap junction protein alpha 3 protein-coding 44 0.005246
-2701 GJA4 gap junction protein alpha 4 protein-coding 43 0.005126
-2702 GJA5 gap junction protein alpha 5 protein-coding 74 0.008822
-2703 GJA8 gap junction protein alpha 8 protein-coding 121 0.01443
-2705 GJB1 gap junction protein beta 1 protein-coding 34 0.004053
-2706 GJB2 gap junction protein beta 2 protein-coding 20 0.002384
-2707 GJB3 gap junction protein beta 3 protein-coding 35 0.004173
-2709 GJB5 gap junction protein beta 5 protein-coding 34 0.004053
-2710 GK glycerol kinase protein-coding 75 0.008941
-2712 GK2 glycerol kinase 2 protein-coding 125 0.0149
-2717 GLA galactosidase alpha protein-coding 58 0.006915
-2719 GPC3 glypican 3 protein-coding 81 0.009657
-2720 GLB1 galactosidase beta 1 protein-coding 91 0.01085
-2729 GCLC glutamate-cysteine ligase catalytic subunit protein-coding 66 0.007868
-2730 GCLM glutamate-cysteine ligase modifier subunit protein-coding 25 0.00298
-2731 GLDC glycine decarboxylase protein-coding 127 0.01514
-2733 GLE1 GLE1, RNA export mediator protein-coding 63 0.007511
-2734 GLG1 golgi glycoprotein 1 protein-coding 141 0.01681
-2735 GLI1 GLI family zinc finger 1 protein-coding 161 0.01919
-2736 GLI2 GLI family zinc finger 2 protein-coding 200 0.02384
-2737 GLI3 GLI family zinc finger 3 protein-coding 307 0.0366
-2738 GLI4 GLI family zinc finger 4 protein-coding 34 0.004053
-2739 GLO1 glyoxalase I protein-coding 25 0.00298
-2740 GLP1R glucagon like peptide 1 receptor protein-coding 49 0.005842
-2741 GLRA1 glycine receptor alpha 1 protein-coding 78 0.009299
-2742 GLRA2 glycine receptor alpha 2 protein-coding 98 0.01168
-2743 GLRB glycine receptor beta protein-coding 72 0.008584
-2744 GLS glutaminase protein-coding 58 0.006915
-2745 GLRX glutaredoxin protein-coding 12 0.001431
-2746 GLUD1 glutamate dehydrogenase 1 protein-coding 40 0.004769
-2747 GLUD2 glutamate dehydrogenase 2 protein-coding 134 0.01598
-2752 GLUL glutamate-ammonia ligase protein-coding 62 0.007392
-2760 GM2A GM2 ganglioside activator protein-coding 16 0.001907
-2762 GMDS GDP-mannose 4,6-dehydratase protein-coding 44 0.005246
-2764 GMFB glia maturation factor beta protein-coding 23 0.002742
-2765 GML glycosylphosphatidylinositol anchored molecule like protein-coding 38 0.00453
-2766 GMPR guanosine monophosphate reductase protein-coding 44 0.005246
-2767 GNA11 G protein subunit alpha 11 protein-coding 73 0.008703
-2768 GNA12 G protein subunit alpha 12 protein-coding 38 0.00453
-2769 GNA15 G protein subunit alpha 15 protein-coding 46 0.005484
-2770 GNAI1 G protein subunit alpha i1 protein-coding 50 0.005961
-2771 GNAI2 G protein subunit alpha i2 protein-coding 73 0.008703
-2773 GNAI3 G protein subunit alpha i3 protein-coding 47 0.005603
-2774 GNAL G protein subunit alpha L protein-coding 55 0.006557
-2775 GNAO1 G protein subunit alpha o1 protein-coding 64 0.00763
-2776 GNAQ G protein subunit alpha q protein-coding 98 0.01168
-2778 GNAS GNAS complex locus protein-coding 182 0.0217
-2779 GNAT1 G protein subunit alpha transducin 1 protein-coding 40 0.004769
-2780 GNAT2 G protein subunit alpha transducin 2 protein-coding 34 0.004053
-2781 GNAZ G protein subunit alpha z protein-coding 78 0.009299
-2782 GNB1 G protein subunit beta 1 protein-coding 44 0.005246
-2783 GNB2 G protein subunit beta 2 protein-coding 33 0.003934
-2784 GNB3 G protein subunit beta 3 protein-coding 51 0.00608
-2785 GNG3 G protein subunit gamma 3 protein-coding 12 0.001431
-2786 GNG4 G protein subunit gamma 4 protein-coding 17 0.002027
-2787 GNG5 G protein subunit gamma 5 protein-coding 7 0.0008345
-2788 GNG7 G protein subunit gamma 7 protein-coding 11 0.001311
-2791 GNG11 G protein subunit gamma 11 protein-coding 17 0.002027
-2792 GNGT1 G protein subunit gamma transducin 1 protein-coding 14 0.001669
-2793 GNGT2 G protein subunit gamma transducin 2 protein-coding 18 0.002146
-2794 GNL1 G protein nucleolar 1 (putative) protein-coding 44 0.005246
-2796 GNRH1 gonadotropin releasing hormone 1 protein-coding 21 0.002504
-2797 GNRH2 gonadotropin releasing hormone 2 protein-coding 14 0.001669
-2798 GNRHR gonadotropin releasing hormone receptor protein-coding 44 0.005246
-2799 GNS glucosamine (N-acetyl)-6-sulfatase protein-coding 56 0.006676
-2800 GOLGA1 golgin A1 protein-coding 82 0.009776
-2801 GOLGA2 golgin A2 protein-coding 112 0.01335
-2802 GOLGA3 golgin A3 protein-coding 187 0.02229
-2803 GOLGA4 golgin A4 protein-coding 179 0.02134
-2804 GOLGB1 golgin B1 protein-coding 291 0.03469
-2805 GOT1 glutamic-oxaloacetic transaminase 1 protein-coding 54 0.006438
-2806 GOT2 glutamic-oxaloacetic transaminase 2 protein-coding 41 0.004888
-2810 SFN stratifin protein-coding 22 0.002623
-2811 GP1BA glycoprotein Ib platelet alpha subunit protein-coding 57 0.006795
-2812 GP1BB glycoprotein Ib platelet beta subunit protein-coding 1 0.0001192
-2813 GP2 glycoprotein 2 protein-coding 111 0.01323
-2814 GP5 glycoprotein V platelet protein-coding 65 0.007749
-2815 GP9 glycoprotein IX platelet protein-coding 21 0.002504
-2817 GPC1 glypican 1 protein-coding 56 0.006676
-2819 GPD1 glycerol-3-phosphate dehydrogenase 1 protein-coding 46 0.005484
-2820 GPD2 glycerol-3-phosphate dehydrogenase 2 protein-coding 75 0.008941
-2821 GPI glucose-6-phosphate isomerase protein-coding 119 0.01419
-2822 GPLD1 glycosylphosphatidylinositol specific phospholipase D1 protein-coding 100 0.01192
-2823 GPM6A glycoprotein M6A protein-coding 69 0.008226
-2824 GPM6B glycoprotein M6B protein-coding 38 0.00453
-2825 GPR1 G protein-coupled receptor 1 protein-coding 45 0.005365
-2826 CCR10 C-C motif chemokine receptor 10 protein-coding 29 0.003457
-2827 GPR3 G protein-coupled receptor 3 protein-coding 34 0.004053
-2828 GPR4 G protein-coupled receptor 4 protein-coding 56 0.006676
-2829 XCR1 X-C motif chemokine receptor 1 protein-coding 58 0.006915
-2830 GPR6 G protein-coupled receptor 6 protein-coding 68 0.008107
-2831 NPBWR1 neuropeptides B and W receptor 1 protein-coding 72 0.008584
-2832 NPBWR2 neuropeptides B and W receptor 2 protein-coding 63 0.007511
-2833 CXCR3 C-X-C motif chemokine receptor 3 protein-coding 53 0.006319
-2834 PRLHR prolactin releasing hormone receptor protein-coding 67 0.007988
-2835 GPR12 G protein-coupled receptor 12 protein-coding 56 0.006676
-2837 UTS2R urotensin 2 receptor protein-coding 35 0.004173
-2838 GPR15 G protein-coupled receptor 15 protein-coding 70 0.008345
-2840 GPR17 G protein-coupled receptor 17 protein-coding 56 0.006676
-2841 GPR18 G protein-coupled receptor 18 protein-coding 43 0.005126
-2842 GPR19 G protein-coupled receptor 19 protein-coding 37 0.004411
-2843 GPR20 G protein-coupled receptor 20 protein-coding 58 0.006915
-2844 GPR21 G protein-coupled receptor 21 protein-coding 36 0.004292
-2845 GPR22 G protein-coupled receptor 22 protein-coding 53 0.006319
-2846 LPAR4 lysophosphatidic acid receptor 4 protein-coding 92 0.01097
-2847 MCHR1 melanin concentrating hormone receptor 1 protein-coding 62 0.007392
-2848 GPR25 G protein-coupled receptor 25 protein-coding 25 0.00298
-2849 GPR26 G protein-coupled receptor 26 protein-coding 55 0.006557
-2850 GPR27 G protein-coupled receptor 27 protein-coding 21 0.002504
-2852 GPER1 G protein-coupled estrogen receptor 1 protein-coding 52 0.006199
-2853 GPR31 G protein-coupled receptor 31 protein-coding 43 0.005126
-2854 GPR32 G protein-coupled receptor 32 protein-coding 72 0.008584
-2857 GPR34 G protein-coupled receptor 34 protein-coding 42 0.005007
-2859 GPR35 G protein-coupled receptor 35 protein-coding 43 0.005126
-2861 GPR37 G protein-coupled receptor 37 protein-coding 109 0.01299
-2862 MLNR motilin receptor protein-coding 39 0.004649
-2863 GPR39 G protein-coupled receptor 39 protein-coding 63 0.007511
-2864 FFAR1 free fatty acid receptor 1 protein-coding 33 0.003934
-2865 FFAR3 free fatty acid receptor 3 protein-coding 72 0.008584
-2866 GPR42 G protein-coupled receptor 42 (gene/pseudogene) protein-coding 17 0.002027
-2867 FFAR2 free fatty acid receptor 2 protein-coding 38 0.00453
-2868 GRK4 G protein-coupled receptor kinase 4 protein-coding 59 0.007034
-2869 GRK5 G protein-coupled receptor kinase 5 protein-coding 60 0.007153
-2870 GRK6 G protein-coupled receptor kinase 6 protein-coding 60 0.007153
-2872 MKNK2 MAP kinase interacting serine/threonine kinase 2 protein-coding 39 0.004649
-2873 GPS1 G protein pathway suppressor 1 protein-coding 65 0.007749
-2874 GPS2 G protein pathway suppressor 2 protein-coding 54 0.006438
-2875 GPT glutamic--pyruvic transaminase protein-coding 54 0.006438
-2876 GPX1 glutathione peroxidase 1 protein-coding 21 0.002504
-2877 GPX2 glutathione peroxidase 2 protein-coding 26 0.0031
-2878 GPX3 glutathione peroxidase 3 protein-coding 21 0.002504
-2879 GPX4 glutathione peroxidase 4 protein-coding 19 0.002265
-2880 GPX5 glutathione peroxidase 5 protein-coding 52 0.006199
-2882 GPX7 glutathione peroxidase 7 protein-coding 74 0.008822
-2885 GRB2 growth factor receptor bound protein 2 protein-coding 26 0.0031
-2886 GRB7 growth factor receptor bound protein 7 protein-coding 67 0.007988
-2887 GRB10 growth factor receptor bound protein 10 protein-coding 83 0.009895
-2888 GRB14 growth factor receptor bound protein 14 protein-coding 65 0.007749
-2889 RAPGEF1 Rap guanine nucleotide exchange factor 1 protein-coding 116 0.01383
-2890 GRIA1 glutamate ionotropic receptor AMPA type subunit 1 protein-coding 216 0.02575
-2891 GRIA2 glutamate ionotropic receptor AMPA type subunit 2 protein-coding 199 0.02372
-2892 GRIA3 glutamate ionotropic receptor AMPA type subunit 3 protein-coding 160 0.01907
-2893 GRIA4 glutamate ionotropic receptor AMPA type subunit 4 protein-coding 174 0.02074
-2894 GRID1 glutamate ionotropic receptor delta type subunit 1 protein-coding 218 0.02599
-2895 GRID2 glutamate ionotropic receptor delta type subunit 2 protein-coding 253 0.03016
-2896 GRN granulin precursor protein-coding 62 0.007392
-2897 GRIK1 glutamate ionotropic receptor kainate type subunit 1 protein-coding 167 0.01991
-2898 GRIK2 glutamate ionotropic receptor kainate type subunit 2 protein-coding 218 0.02599
-2899 GRIK3 glutamate ionotropic receptor kainate type subunit 3 protein-coding 185 0.02206
-2900 GRIK4 glutamate ionotropic receptor kainate type subunit 4 protein-coding 145 0.01729
-2901 GRIK5 glutamate ionotropic receptor kainate type subunit 5 protein-coding 322 0.03839
-2902 GRIN1 glutamate ionotropic receptor NMDA type subunit 1 protein-coding 94 0.01121
-2903 GRIN2A glutamate ionotropic receptor NMDA type subunit 2A protein-coding 319 0.03803
-2904 GRIN2B glutamate ionotropic receptor NMDA type subunit 2B protein-coding 277 0.03302
-2905 GRIN2C glutamate ionotropic receptor NMDA type subunit 2C protein-coding 84 0.01001
-2906 GRIN2D glutamate ionotropic receptor NMDA type subunit 2D protein-coding 108 0.01288
-2907 GRINA glutamate ionotropic receptor NMDA type subunit associated protein 1 protein-coding 33 0.003934
-2908 NR3C1 nuclear receptor subfamily 3 group C member 1 protein-coding 90 0.01073
-2909 ARHGAP35 Rho GTPase activating protein 35 protein-coding 279 0.03326
-2911 GRM1 glutamate metabotropic receptor 1 protein-coding 277 0.03302
-2912 GRM2 glutamate metabotropic receptor 2 protein-coding 117 0.01395
-2913 GRM3 glutamate metabotropic receptor 3 protein-coding 213 0.02539
-2914 GRM4 glutamate metabotropic receptor 4 protein-coding 141 0.01681
-2915 GRM5 glutamate metabotropic receptor 5 protein-coding 251 0.02992
-2916 GRM6 glutamate metabotropic receptor 6 protein-coding 157 0.01872
-2917 GRM7 glutamate metabotropic receptor 7 protein-coding 234 0.0279
-2918 GRM8 glutamate metabotropic receptor 8 protein-coding 268 0.03195
-2919 CXCL1 C-X-C motif chemokine ligand 1 protein-coding 25 0.00298
-2920 CXCL2 C-X-C motif chemokine ligand 2 protein-coding 16 0.001907
-2921 CXCL3 C-X-C motif chemokine ligand 3 protein-coding 7 0.0008345
-2922 GRP gastrin releasing peptide protein-coding 22 0.002623
-2923 PDIA3 protein disulfide isomerase family A member 3 protein-coding 55 0.006557
-2925 GRPR gastrin releasing peptide receptor protein-coding 54 0.006438
-2926 GRSF1 G-rich RNA sequence binding factor 1 protein-coding 51 0.00608
-2928 GSC2 goosecoid homeobox 2 protein-coding 10 0.001192
-2931 GSK3A glycogen synthase kinase 3 alpha protein-coding 28 0.003338
-2932 GSK3B glycogen synthase kinase 3 beta protein-coding 54 0.006438
-2934 GSN gelsolin protein-coding 63 0.007511
-2935 GSPT1 G1 to S phase transition 1 protein-coding 29 0.003457
-2936 GSR glutathione-disulfide reductase protein-coding 59 0.007034
-2937 GSS glutathione synthetase protein-coding 40 0.004769
-2938 GSTA1 glutathione S-transferase alpha 1 protein-coding 42 0.005007
-2939 GSTA2 glutathione S-transferase alpha 2 protein-coding 43 0.005126
-2940 GSTA3 glutathione S-transferase alpha 3 protein-coding 24 0.002861
-2941 GSTA4 glutathione S-transferase alpha 4 protein-coding 27 0.003219
-2944 GSTM1 glutathione S-transferase mu 1 protein-coding 11 0.001311
-2946 GSTM2 glutathione S-transferase mu 2 protein-coding 31 0.003696
-2947 GSTM3 glutathione S-transferase mu 3 protein-coding 29 0.003457
-2948 GSTM4 glutathione S-transferase mu 4 protein-coding 24 0.002861
-2949 GSTM5 glutathione S-transferase mu 5 protein-coding 31 0.003696
-2950 GSTP1 glutathione S-transferase pi 1 protein-coding 22 0.002623
-2952 GSTT1 glutathione S-transferase theta 1 protein-coding 14 0.001669
-2953 GSTT2 glutathione S-transferase theta 2 (gene/pseudogene) protein-coding 8 0.0009537
-2954 GSTZ1 glutathione S-transferase zeta 1 protein-coding 35 0.004173
-2956 MSH6 mutS homolog 6 protein-coding 147 0.01753
-2957 GTF2A1 general transcription factor IIA subunit 1 protein-coding 41 0.004888
-2958 GTF2A2 general transcription factor IIA subunit 2 protein-coding 11 0.001311
-2959 GTF2B general transcription factor IIB protein-coding 38 0.00453
-2960 GTF2E1 general transcription factor IIE subunit 1 protein-coding 62 0.007392
-2961 GTF2E2 general transcription factor IIE subunit 2 protein-coding 35 0.004173
-2962 GTF2F1 general transcription factor IIF subunit 1 protein-coding 59 0.007034
-2963 GTF2F2 general transcription factor IIF subunit 2 protein-coding 17 0.002027
-2965 GTF2H1 general transcription factor IIH subunit 1 protein-coding 49 0.005842
-2966 GTF2H2 general transcription factor IIH subunit 2 protein-coding 4 0.0004769
-2967 GTF2H3 general transcription factor IIH subunit 3 protein-coding 37 0.004411
-2968 GTF2H4 general transcription factor IIH subunit 4 protein-coding 43 0.005126
-2969 GTF2I general transcription factor IIi protein-coding 134 0.01598
-2971 GTF3A general transcription factor IIIA protein-coding 24 0.002861
-2972 BRF1 BRF1, RNA polymerase III transcription initiation factor subunit protein-coding 79 0.009418
-2974 GUCY1B2 guanylate cyclase 1 soluble subunit beta 2 (pseudogene) pseudo 45 0.005365
-2975 GTF3C1 general transcription factor IIIC subunit 1 protein-coding 271 0.03231
-2976 GTF3C2 general transcription factor IIIC subunit 2 protein-coding 109 0.01299
-2977 GUCY1A2 guanylate cyclase 1 soluble subunit alpha 2 protein-coding 152 0.01812
-2978 GUCA1A guanylate cyclase activator 1A protein-coding 29 0.003457
-2979 GUCA1B guanylate cyclase activator 1B protein-coding 23 0.002742
-2980 GUCA2A guanylate cyclase activator 2A protein-coding 11 0.001311
-2981 GUCA2B guanylate cyclase activator 2B protein-coding 17 0.002027
-2982 GUCY1A1 guanylate cyclase 1 soluble subunit alpha 1 protein-coding 138 0.01645
-2983 GUCY1B1 guanylate cyclase 1 soluble subunit beta 1 protein-coding 85 0.01013
-2984 GUCY2C guanylate cyclase 2C protein-coding 180 0.02146
-2986 GUCY2F guanylate cyclase 2F, retinal protein-coding 156 0.0186
-2987 GUK1 guanylate kinase 1 protein-coding 28 0.003338
-2990 GUSB glucuronidase beta protein-coding 90 0.01073
-2992 GYG1 glycogenin 1 protein-coding 38 0.00453
-2993 GYPA glycophorin A (MNS blood group) protein-coding 38 0.00453
-2994 GYPB glycophorin B (MNS blood group) protein-coding 23 0.002742
-2995 GYPC glycophorin C (Gerbich blood group) protein-coding 32 0.003815
-2996 GYPE glycophorin E (MNS blood group) protein-coding 28 0.003338
-2997 GYS1 glycogen synthase 1 protein-coding 74 0.008822
-2998 GYS2 glycogen synthase 2 protein-coding 122 0.01454
-2999 GZMH granzyme H protein-coding 42 0.005007
-3000 GUCY2D guanylate cyclase 2D, retinal protein-coding 90 0.01073
-3001 GZMA granzyme A protein-coding 56 0.006676
-3002 GZMB granzyme B protein-coding 37 0.004411
-3003 GZMK granzyme K protein-coding 52 0.006199
-3004 GZMM granzyme M protein-coding 21 0.002504
-3005 H1F0 H1 histone family member 0 protein-coding 24 0.002861
-3006 HIST1H1C histone cluster 1 H1 family member c protein-coding 75 0.008941
-3007 HIST1H1D histone cluster 1 H1 family member d protein-coding 42 0.005007
-3008 HIST1H1E histone cluster 1 H1 family member e protein-coding 78 0.009299
-3009 HIST1H1B histone cluster 1 H1 family member b protein-coding 75 0.008941
-3010 HIST1H1T histone cluster 1 H1 family member t protein-coding 37 0.004411
-3012 HIST1H2AE histone cluster 1 H2A family member e protein-coding 39 0.004649
-3013 HIST1H2AD histone cluster 1 H2A family member d protein-coding 31 0.003696
-3014 H2AFX H2A histone family member X protein-coding 23 0.002742
-3015 H2AFZ H2A histone family member Z protein-coding 21 0.002504
-3017 HIST1H2BD histone cluster 1 H2B family member d protein-coding 39 0.004649
-3018 HIST1H2BB histone cluster 1 H2B family member b protein-coding 30 0.003577
-3020 H3F3A H3 histone family member 3A protein-coding 33 0.003934
-3021 H3F3B H3 histone family member 3B protein-coding 27 0.003219
-3024 HIST1H1A histone cluster 1 H1 family member a protein-coding 39 0.004649
-3026 HABP2 hyaluronan binding protein 2 protein-coding 63 0.007511
-3028 HSD17B10 hydroxysteroid 17-beta dehydrogenase 10 protein-coding 22 0.002623
-3029 HAGH hydroxyacylglutathione hydrolase protein-coding 24 0.002861
-3030 HADHA hydroxyacyl-CoA dehydrogenase trifunctional multienzyme complex subunit alpha protein-coding 97 0.01156
-3032 HADHB hydroxyacyl-CoA dehydrogenase trifunctional multienzyme complex subunit beta protein-coding 59 0.007034
-3033 HADH hydroxyacyl-CoA dehydrogenase protein-coding 37 0.004411
-3034 HAL histidine ammonia-lyase protein-coding 73 0.008703
-3035 HARS histidyl-tRNA synthetase protein-coding 56 0.006676
-3036 HAS1 hyaluronan synthase 1 protein-coding 81 0.009657
-3037 HAS2 hyaluronan synthase 2 protein-coding 95 0.01133
-3038 HAS3 hyaluronan synthase 3 protein-coding 54 0.006438
-3039 HBA1 hemoglobin subunit alpha 1 protein-coding 4 0.0004769
-3040 HBA2 hemoglobin subunit alpha 2 protein-coding 11 0.001311
-3042 HBM hemoglobin subunit mu protein-coding 9 0.001073
-3043 HBB hemoglobin subunit beta protein-coding 30 0.003577
-3045 HBD hemoglobin subunit delta protein-coding 37 0.004411
-3046 HBE1 hemoglobin subunit epsilon 1 protein-coding 31 0.003696
-3047 HBG1 hemoglobin subunit gamma 1 protein-coding 16 0.001907
-3048 HBG2 hemoglobin subunit gamma 2 protein-coding 53 0.006319
-3049 HBQ1 hemoglobin subunit theta 1 protein-coding 6 0.0007153
-3050 HBZ hemoglobin subunit zeta protein-coding 6 0.0007153
-3052 HCCS holocytochrome c synthase protein-coding 39 0.004649
-3053 SERPIND1 serpin family D member 1 protein-coding 62 0.007392
-3054 HCFC1 host cell factor C1 protein-coding 194 0.02313
-3055 HCK HCK proto-oncogene, Src family tyrosine kinase protein-coding 89 0.01061
-3059 HCLS1 hematopoietic cell-specific Lyn substrate 1 protein-coding 86 0.01025
-3060 HCRT hypocretin neuropeptide precursor protein-coding 51 0.00608
-3061 HCRTR1 hypocretin receptor 1 protein-coding 48 0.005722
-3062 HCRTR2 hypocretin receptor 2 protein-coding 121 0.01443
-3064 HTT huntingtin protein-coding 255 0.0304
-3065 HDAC1 histone deacetylase 1 protein-coding 41 0.004888
-3066 HDAC2 histone deacetylase 2 protein-coding 60 0.007153
-3067 HDC histidine decarboxylase protein-coding 102 0.01216
-3068 HDGF heparin binding growth factor protein-coding 39 0.004649
-3069 HDLBP high density lipoprotein binding protein protein-coding 184 0.02194
-3070 HELLS helicase, lymphoid specific protein-coding 79 0.009418
-3071 NCKAP1L NCK associated protein 1 like protein-coding 170 0.02027
-3073 HEXA hexosaminidase subunit alpha protein-coding 51 0.00608
-3074 HEXB hexosaminidase subunit beta protein-coding 45 0.005365
-3075 CFH complement factor H protein-coding 290 0.03457
-3077 HFE homeostatic iron regulator protein-coding 45 0.005365
-3078 CFHR1 complement factor H related 1 protein-coding 54 0.006438
-3080 CFHR2 complement factor H related 2 protein-coding 74 0.008822
-3081 HGD homogentisate 1,2-dioxygenase protein-coding 64 0.00763
-3082 HGF hepatocyte growth factor protein-coding 191 0.02277
-3083 HGFAC HGF activator protein-coding 83 0.009895
-3084 NRG1 neuregulin 1 protein-coding 209 0.02492
-3087 HHEX hematopoietically expressed homeobox protein-coding 24 0.002861
-3090 HIC1 HIC ZBTB transcriptional repressor 1 protein-coding 27 0.003219
-3091 HIF1A hypoxia inducible factor 1 alpha subunit protein-coding 83 0.009895
-3092 HIP1 huntingtin interacting protein 1 protein-coding 116 0.01383
-3093 UBE2K ubiquitin conjugating enzyme E2 K protein-coding 30 0.003577
-3094 HINT1 histidine triad nucleotide binding protein 1 protein-coding 10 0.001192
-3096 HIVEP1 human immunodeficiency virus type I enhancer binding protein 1 protein-coding 240 0.02861
-3097 HIVEP2 human immunodeficiency virus type I enhancer binding protein 2 protein-coding 238 0.02837
-3098 HK1 hexokinase 1 protein-coding 110 0.01311
-3099 HK2 hexokinase 2 protein-coding 115 0.01371
-3101 HK3 hexokinase 3 protein-coding 138 0.01645
-3104 ZBTB48 zinc finger and BTB domain containing 48 protein-coding 56 0.006676
-3105 HLA-A major histocompatibility complex, class I, A protein-coding 93 0.01109
-3106 HLA-B major histocompatibility complex, class I, B protein-coding 113 0.01347
-3107 HLA-C major histocompatibility complex, class I, C protein-coding 45 0.005365
-3108 HLA-DMA major histocompatibility complex, class II, DM alpha protein-coding 23 0.002742
-3109 HLA-DMB major histocompatibility complex, class II, DM beta protein-coding 32 0.003815
-3110 MNX1 motor neuron and pancreas homeobox 1 protein-coding 38 0.00453
-3111 HLA-DOA major histocompatibility complex, class II, DO alpha protein-coding 22 0.002623
-3112 HLA-DOB major histocompatibility complex, class II, DO beta protein-coding 23 0.002742
-3113 HLA-DPA1 major histocompatibility complex, class II, DP alpha 1 protein-coding 30 0.003577
-3115 HLA-DPB1 major histocompatibility complex, class II, DP beta 1 protein-coding 29 0.003457
-3116 HLA-DPB2 major histocompatibility complex, class II, DP beta 2 (pseudogene) pseudo 1 0.0001192
-3117 HLA-DQA1 major histocompatibility complex, class II, DQ alpha 1 protein-coding 17 0.002027
-3118 HLA-DQA2 major histocompatibility complex, class II, DQ alpha 2 protein-coding 42 0.005007
-3119 HLA-DQB1 major histocompatibility complex, class II, DQ beta 1 protein-coding 20 0.002384
-3120 HLA-DQB2 major histocompatibility complex, class II, DQ beta 2 protein-coding 24 0.002861
-3122 HLA-DRA major histocompatibility complex, class II, DR alpha protein-coding 46 0.005484
-3123 HLA-DRB1 major histocompatibility complex, class II, DR beta 1 protein-coding 11 0.001311
-3127 HLA-DRB5 major histocompatibility complex, class II, DR beta 5 protein-coding 7 0.0008345
-3128 HLA-DRB6 major histocompatibility complex, class II, DR beta 6 (pseudogene) pseudo 2 0.0002384
-3131 HLF HLF, PAR bZIP transcription factor protein-coding 43 0.005126
-3133 HLA-E major histocompatibility complex, class I, E protein-coding 44 0.005246
-3134 HLA-F major histocompatibility complex, class I, F protein-coding 50 0.005961
-3135 HLA-G major histocompatibility complex, class I, G protein-coding 54 0.006438
-3140 MR1 major histocompatibility complex, class I-related protein-coding 52 0.006199
-3141 HLCS holocarboxylase synthetase protein-coding 75 0.008941
-3142 HLX H2.0 like homeobox protein-coding 88 0.01049
-3145 HMBS hydroxymethylbilane synthase protein-coding 41 0.004888
-3146 HMGB1 high mobility group box 1 protein-coding 27 0.003219
-3148 HMGB2 high mobility group box 2 protein-coding 39 0.004649
-3149 HMGB3 high mobility group box 3 protein-coding 32 0.003815
-3150 HMGN1 high mobility group nucleosome binding domain 1 protein-coding 16 0.001907
-3151 HMGN2 high mobility group nucleosomal binding domain 2 protein-coding 9 0.001073
-3155 HMGCL 3-hydroxymethyl-3-methylglutaryl-CoA lyase protein-coding 18 0.002146
-3156 HMGCR 3-hydroxy-3-methylglutaryl-CoA reductase protein-coding 77 0.00918
-3157 HMGCS1 3-hydroxy-3-methylglutaryl-CoA synthase 1 protein-coding 58 0.006915
-3158 HMGCS2 3-hydroxy-3-methylglutaryl-CoA synthase 2 protein-coding 79 0.009418
-3159 HMGA1 high mobility group AT-hook 1 protein-coding 7 0.0008345
-3161 HMMR hyaluronan mediated motility receptor protein-coding 88 0.01049
-3162 HMOX1 heme oxygenase 1 protein-coding 47 0.005603
-3163 HMOX2 heme oxygenase 2 protein-coding 24 0.002861
-3164 NR4A1 nuclear receptor subfamily 4 group A member 1 protein-coding 54 0.006438
-3166 HMX1 H6 family homeobox 1 protein-coding 5 0.0005961
-3167 HMX2 H6 family homeobox 2 protein-coding 41 0.004888
-3169 FOXA1 forkhead box A1 protein-coding 113 0.01347
-3170 FOXA2 forkhead box A2 protein-coding 78 0.009299
-3171 FOXA3 forkhead box A3 protein-coding 45 0.005365
-3172 HNF4A hepatocyte nuclear factor 4 alpha protein-coding 101 0.01204
-3174 HNF4G hepatocyte nuclear factor 4 gamma protein-coding 86 0.01025
-3175 ONECUT1 one cut homeobox 1 protein-coding 61 0.007272
-3176 HNMT histamine N-methyltransferase protein-coding 35 0.004173
-3177 SLC29A2 solute carrier family 29 member 2 protein-coding 51 0.00608
-3178 HNRNPA1 heterogeneous nuclear ribonucleoprotein A1 protein-coding 59 0.007034
-3181 HNRNPA2B1 heterogeneous nuclear ribonucleoprotein A2/B1 protein-coding 72 0.008584
-3182 HNRNPAB heterogeneous nuclear ribonucleoprotein A/B protein-coding 45 0.005365
-3183 HNRNPC heterogeneous nuclear ribonucleoprotein C (C1/C2) protein-coding 96 0.01144
-3184 HNRNPD heterogeneous nuclear ribonucleoprotein D protein-coding 59 0.007034
-3185 HNRNPF heterogeneous nuclear ribonucleoprotein F protein-coding 56 0.006676
-3187 HNRNPH1 heterogeneous nuclear ribonucleoprotein H1 protein-coding 59 0.007034
-3188 HNRNPH2 heterogeneous nuclear ribonucleoprotein H2 protein-coding 67 0.007988
-3189 HNRNPH3 heterogeneous nuclear ribonucleoprotein H3 protein-coding 43 0.005126
-3190 HNRNPK heterogeneous nuclear ribonucleoprotein K protein-coding 73 0.008703
-3191 HNRNPL heterogeneous nuclear ribonucleoprotein L protein-coding 59 0.007034
-3192 HNRNPU heterogeneous nuclear ribonucleoprotein U protein-coding 81 0.009657
-3195 TLX1 T cell leukemia homeobox 1 protein-coding 27 0.003219
-3196 TLX2 T cell leukemia homeobox 2 protein-coding 24 0.002861
-3198 HOXA1 homeobox A1 protein-coding 82 0.009776
-3199 HOXA2 homeobox A2 protein-coding 69 0.008226
-3200 HOXA3 homeobox A3 protein-coding 93 0.01109
-3201 HOXA4 homeobox A4 protein-coding 36 0.004292
-3202 HOXA5 homeobox A5 protein-coding 39 0.004649
-3203 HOXA6 homeobox A6 protein-coding 46 0.005484
-3204 HOXA7 homeobox A7 protein-coding 52 0.006199
-3205 HOXA9 homeobox A9 protein-coding 43 0.005126
-3206 HOXA10 homeobox A10 protein-coding 35 0.004173
-3207 HOXA11 homeobox A11 protein-coding 37 0.004411
-3208 HPCA hippocalcin protein-coding 17 0.002027
-3209 HOXA13 homeobox A13 protein-coding 39 0.004649
-3211 HOXB1 homeobox B1 protein-coding 52 0.006199
-3212 HOXB2 homeobox B2 protein-coding 46 0.005484
-3213 HOXB3 homeobox B3 protein-coding 74 0.008822
-3214 HOXB4 homeobox B4 protein-coding 33 0.003934
-3215 HOXB5 homeobox B5 protein-coding 40 0.004769
-3216 HOXB6 homeobox B6 protein-coding 29 0.003457
-3217 HOXB7 homeobox B7 protein-coding 23 0.002742
-3218 HOXB8 homeobox B8 protein-coding 31 0.003696
-3219 HOXB9 homeobox B9 protein-coding 27 0.003219
-3221 HOXC4 homeobox C4 protein-coding 37 0.004411
-3222 HOXC5 homeobox C5 protein-coding 24 0.002861
-3223 HOXC6 homeobox C6 protein-coding 47 0.005603
-3224 HOXC8 homeobox C8 protein-coding 31 0.003696
-3225 HOXC9 homeobox C9 protein-coding 29 0.003457
-3226 HOXC10 homeobox C10 protein-coding 58 0.006915
-3227 HOXC11 homeobox C11 protein-coding 32 0.003815
-3228 HOXC12 homeobox C12 protein-coding 23 0.002742
-3229 HOXC13 homeobox C13 protein-coding 45 0.005365
-3231 HOXD1 homeobox D1 protein-coding 36 0.004292
-3232 HOXD3 homeobox D3 protein-coding 67 0.007988
-3233 HOXD4 homeobox D4 protein-coding 56 0.006676
-3234 HOXD8 homeobox D8 protein-coding 45 0.005365
-3235 HOXD9 homeobox D9 protein-coding 45 0.005365
-3236 HOXD10 homeobox D10 protein-coding 69 0.008226
-3237 HOXD11 homeobox D11 protein-coding 28 0.003338
-3238 HOXD12 homeobox D12 protein-coding 39 0.004649
-3239 HOXD13 homeobox D13 protein-coding 44 0.005246
-3240 HP haptoglobin protein-coding 47 0.005603
-3241 HPCAL1 hippocalcin like 1 protein-coding 24 0.002861
-3242 HPD 4-hydroxyphenylpyruvate dioxygenase protein-coding 58 0.006915
-3248 HPGD 15-hydroxyprostaglandin dehydrogenase protein-coding 39 0.004649
-3249 HPN hepsin protein-coding 50 0.005961
-3250 HPR haptoglobin-related protein protein-coding 53 0.006319
-3251 HPRT1 hypoxanthine phosphoribosyltransferase 1 protein-coding 22 0.002623
-3257 HPS1 HPS1, biogenesis of lysosomal organelles complex 3 subunit 1 protein-coding 79 0.009418
-3263 HPX hemopexin protein-coding 61 0.007272
-3265 HRAS HRas proto-oncogene, GTPase protein-coding 129 0.01538
-3266 ERAS ES cell expressed Ras protein-coding 32 0.003815
-3267 AGFG1 ArfGAP with FG repeats 1 protein-coding 56 0.006676
-3268 AGFG2 ArfGAP with FG repeats 2 protein-coding 46 0.005484
-3269 HRH1 histamine receptor H1 protein-coding 62 0.007392
-3270 HRC histidine rich calcium binding protein protein-coding 81 0.009657
-3273 HRG histidine rich glycoprotein protein-coding 88 0.01049
-3274 HRH2 histamine receptor H2 protein-coding 72 0.008584
-3275 PRMT2 protein arginine methyltransferase 2 protein-coding 53 0.006319
-3276 PRMT1 protein arginine methyltransferase 1 protein-coding 49 0.005842
-3280 HES1 hes family bHLH transcription factor 1 protein-coding 34 0.004053
-3281 HSBP1 heat shock factor binding protein 1 protein-coding 6 0.0007153
-3283 HSD3B1 hydroxy-delta-5-steroid dehydrogenase, 3 beta- and steroid delta-isomerase 1 protein-coding 54 0.006438
-3284 HSD3B2 hydroxy-delta-5-steroid dehydrogenase, 3 beta- and steroid delta-isomerase 2 protein-coding 53 0.006319
-3290 HSD11B1 hydroxysteroid 11-beta dehydrogenase 1 protein-coding 52 0.006199
-3291 HSD11B2 hydroxysteroid 11-beta dehydrogenase 2 protein-coding 24 0.002861
-3292 HSD17B1 hydroxysteroid 17-beta dehydrogenase 1 protein-coding 28 0.003338
-3293 HSD17B3 hydroxysteroid 17-beta dehydrogenase 3 protein-coding 32 0.003815
-3294 HSD17B2 hydroxysteroid 17-beta dehydrogenase 2 protein-coding 45 0.005365
-3295 HSD17B4 hydroxysteroid 17-beta dehydrogenase 4 protein-coding 109 0.01299
-3297 HSF1 heat shock transcription factor 1 protein-coding 53 0.006319
-3298 HSF2 heat shock transcription factor 2 protein-coding 55 0.006557
-3299 HSF4 heat shock transcription factor 4 protein-coding 48 0.005722
-3300 DNAJB2 DnaJ heat shock protein family (Hsp40) member B2 protein-coding 47 0.005603
-3301 DNAJA1 DnaJ heat shock protein family (Hsp40) member A1 protein-coding 47 0.005603
-3303 HSPA1A heat shock protein family A (Hsp70) member 1A protein-coding 24 0.002861
-3304 HSPA1B heat shock protein family A (Hsp70) member 1B protein-coding 18 0.002146
-3305 HSPA1L heat shock protein family A (Hsp70) member 1 like protein-coding 93 0.01109
-3306 HSPA2 heat shock protein family A (Hsp70) member 2 protein-coding 85 0.01013
-3308 HSPA4 heat shock protein family A (Hsp70) member 4 protein-coding 83 0.009895
-3309 HSPA5 heat shock protein family A (Hsp70) member 5 protein-coding 58 0.006915
-3310 HSPA6 heat shock protein family A (Hsp70) member 6 protein-coding 96 0.01144
-3312 HSPA8 heat shock protein family A (Hsp70) member 8 protein-coding 107 0.01276
-3313 HSPA9 heat shock protein family A (Hsp70) member 9 protein-coding 58 0.006915
-3315 HSPB1 heat shock protein family B (small) member 1 protein-coding 11 0.001311
-3316 HSPB2 heat shock protein family B (small) member 2 protein-coding 23 0.002742
-3320 HSP90AA1 heat shock protein 90 alpha family class A member 1 protein-coding 105 0.01252
-3321 IGSF3 immunoglobulin superfamily member 3 protein-coding 132 0.01574
-3326 HSP90AB1 heat shock protein 90 alpha family class B member 1 protein-coding 116 0.01383
-3329 HSPD1 heat shock protein family D (Hsp60) member 1 protein-coding 69 0.008226
-3336 HSPE1 heat shock protein family E (Hsp10) member 1 protein-coding 4 0.0004769
-3337 DNAJB1 DnaJ heat shock protein family (Hsp40) member B1 protein-coding 32 0.003815
-3338 DNAJC4 DnaJ heat shock protein family (Hsp40) member C4 protein-coding 23 0.002742
-3339 HSPG2 heparan sulfate proteoglycan 2 protein-coding 328 0.0391
-3340 NDST1 N-deacetylase and N-sulfotransferase 1 protein-coding 92 0.01097
-3344 FOXN2 forkhead box N2 protein-coding 63 0.007511
-3346 HTN1 histatin 1 protein-coding 15 0.001788
-3347 HTN3 histatin 3 protein-coding 7 0.0008345
-3350 HTR1A 5-hydroxytryptamine receptor 1A protein-coding 134 0.01598
-3351 HTR1B 5-hydroxytryptamine receptor 1B protein-coding 84 0.01001
-3352 HTR1D 5-hydroxytryptamine receptor 1D protein-coding 51 0.00608
-3354 HTR1E 5-hydroxytryptamine receptor 1E protein-coding 108 0.01288
-3355 HTR1F 5-hydroxytryptamine receptor 1F protein-coding 81 0.009657
-3356 HTR2A 5-hydroxytryptamine receptor 2A protein-coding 88 0.01049
-3357 HTR2B 5-hydroxytryptamine receptor 2B protein-coding 44 0.005246
-3358 HTR2C 5-hydroxytryptamine receptor 2C protein-coding 105 0.01252
-3359 HTR3A 5-hydroxytryptamine receptor 3A protein-coding 103 0.01228
-3360 HTR4 5-hydroxytryptamine receptor 4 protein-coding 70 0.008345
-3361 HTR5A 5-hydroxytryptamine receptor 5A protein-coding 106 0.01264
-3362 HTR6 5-hydroxytryptamine receptor 6 protein-coding 59 0.007034
-3363 HTR7 5-hydroxytryptamine receptor 7 protein-coding 80 0.009537
-3364 HUS1 HUS1 checkpoint clamp component protein-coding 33 0.003934
-3371 TNC tenascin C protein-coding 238 0.02837
-3373 HYAL1 hyaluronoglucosaminidase 1 protein-coding 39 0.004649
-3375 IAPP islet amyloid polypeptide protein-coding 34 0.004053
-3376 IARS isoleucyl-tRNA synthetase protein-coding 105 0.01252
-3381 IBSP integrin binding sialoprotein protein-coding 68 0.008107
-3382 ICA1 islet cell autoantigen 1 protein-coding 63 0.007511
-3383 ICAM1 intercellular adhesion molecule 1 protein-coding 49 0.005842
-3384 ICAM2 intercellular adhesion molecule 2 protein-coding 37 0.004411
-3385 ICAM3 intercellular adhesion molecule 3 protein-coding 49 0.005842
-3386 ICAM4 intercellular adhesion molecule 4 (Landsteiner-Wiener blood group) protein-coding 23 0.002742
-3394 IRF8 interferon regulatory factor 8 protein-coding 72 0.008584
-3396 MRPL58 mitochondrial ribosomal protein L58 protein-coding 32 0.003815
-3397 ID1 inhibitor of DNA binding 1, HLH protein protein-coding 17 0.002027
-3398 ID2 inhibitor of DNA binding 2 protein-coding 12 0.001431
-3399 ID3 inhibitor of DNA binding 3, HLH protein protein-coding 16 0.001907
-3400 ID4 inhibitor of DNA binding 4, HLH protein protein-coding 10 0.001192
-3416 IDE insulin degrading enzyme protein-coding 103 0.01228
-3417 IDH1 isocitrate dehydrogenase (NADP(+)) 1, cytosolic protein-coding 492 0.05866
-3418 IDH2 isocitrate dehydrogenase (NADP(+)) 2, mitochondrial protein-coding 68 0.008107
-3419 IDH3A isocitrate dehydrogenase 3 (NAD(+)) alpha protein-coding 35 0.004173
-3420 IDH3B isocitrate dehydrogenase 3 (NAD(+)) beta protein-coding 30 0.003577
-3421 IDH3G isocitrate dehydrogenase 3 (NAD(+)) gamma protein-coding 52 0.006199
-3422 IDI1 isopentenyl-diphosphate delta isomerase 1 protein-coding 35 0.004173
-3423 IDS iduronate 2-sulfatase protein-coding 88 0.01049
-3425 IDUA iduronidase, alpha-L- protein-coding 38 0.00453
-3426 CFI complement factor I protein-coding 82 0.009776
-3428 IFI16 interferon gamma inducible protein 16 protein-coding 131 0.01562
-3429 IFI27 interferon alpha inducible protein 27 protein-coding 13 0.00155
-3430 IFI35 interferon induced protein 35 protein-coding 37 0.004411
-3431 SP110 SP110 nuclear body protein protein-coding 73 0.008703
-3433 IFIT2 interferon induced protein with tetratricopeptide repeats 2 protein-coding 65 0.007749
-3434 IFIT1 interferon induced protein with tetratricopeptide repeats 1 protein-coding 48 0.005722
-3437 IFIT3 interferon induced protein with tetratricopeptide repeats 3 protein-coding 51 0.00608
-3439 IFNA1 interferon alpha 1 protein-coding 23 0.002742
-3440 IFNA2 interferon alpha 2 protein-coding 33 0.003934
-3441 IFNA4 interferon alpha 4 protein-coding 33 0.003934
-3442 IFNA5 interferon alpha 5 protein-coding 32 0.003815
-3443 IFNA6 interferon alpha 6 protein-coding 25 0.00298
-3444 IFNA7 interferon alpha 7 protein-coding 31 0.003696
-3445 IFNA8 interferon alpha 8 protein-coding 41 0.004888
-3446 IFNA10 interferon alpha 10 protein-coding 34 0.004053
-3447 IFNA13 interferon alpha 13 protein-coding 34 0.004053
-3448 IFNA14 interferon alpha 14 protein-coding 27 0.003219
-3449 IFNA16 interferon alpha 16 protein-coding 49 0.005842
-3451 IFNA17 interferon alpha 17 protein-coding 35 0.004173
-3452 IFNA21 interferon alpha 21 protein-coding 25 0.00298
-3454 IFNAR1 interferon alpha and beta receptor subunit 1 protein-coding 63 0.007511
-3455 IFNAR2 interferon alpha and beta receptor subunit 2 protein-coding 50 0.005961
-3456 IFNB1 interferon beta 1 protein-coding 32 0.003815
-3458 IFNG interferon gamma protein-coding 43 0.005126
-3459 IFNGR1 interferon gamma receptor 1 protein-coding 68 0.008107
-3460 IFNGR2 interferon gamma receptor 2 protein-coding 40 0.004769
-3467 IFNW1 interferon omega 1 protein-coding 29 0.003457
-3475 IFRD1 interferon related developmental regulator 1 protein-coding 77 0.00918
-3476 IGBP1 immunoglobulin binding protein 1 protein-coding 41 0.004888
-3479 IGF1 insulin like growth factor 1 protein-coding 41 0.004888
-3480 IGF1R insulin like growth factor 1 receptor protein-coding 149 0.01776
-3481 IGF2 insulin like growth factor 2 protein-coding 45 0.005365
-3482 IGF2R insulin like growth factor 2 receptor protein-coding 273 0.03255
-3483 IGFALS insulin like growth factor binding protein acid labile subunit protein-coding 51 0.00608
-3484 IGFBP1 insulin like growth factor binding protein 1 protein-coding 46 0.005484
-3485 IGFBP2 insulin like growth factor binding protein 2 protein-coding 30 0.003577
-3486 IGFBP3 insulin like growth factor binding protein 3 protein-coding 37 0.004411
-3487 IGFBP4 insulin like growth factor binding protein 4 protein-coding 24 0.002861
-3488 IGFBP5 insulin like growth factor binding protein 5 protein-coding 28 0.003338
-3489 IGFBP6 insulin like growth factor binding protein 6 protein-coding 17 0.002027
-3490 IGFBP7 insulin like growth factor binding protein 7 protein-coding 25 0.00298
-3491 CYR61 cysteine rich angiogenic inducer 61 protein-coding 35 0.004173
-3493 IGHA1 immunoglobulin heavy constant alpha 1 other 87 0.01037
-3494 IGHA2 immunoglobulin heavy constant alpha 2 (A2m marker) other 50 0.005961
-3495 IGHD immunoglobulin heavy constant delta other 56 0.006676
-3497 IGHE immunoglobulin heavy constant epsilon other 21 0.002504
-3500 IGHG1 immunoglobulin heavy constant gamma 1 (G1m marker) other 89 0.01061
-3501 IGHG2 immunoglobulin heavy constant gamma 2 (G2m marker) other 72 0.008584
-3502 IGHG3 immunoglobulin heavy constant gamma 3 (G3m marker) other 70 0.008345
-3503 IGHG4 immunoglobulin heavy constant gamma 4 (G4m marker) other 83 0.009895
-3507 IGHM immunoglobulin heavy constant mu other 95 0.01133
-3508 IGHMBP2 immunoglobulin mu binding protein 2 protein-coding 108 0.01288
-3512 JCHAIN joining chain of multimeric IgA and IgM protein-coding 32 0.003815
-3514 IGKC immunoglobulin kappa constant other 17 0.002027
-3516 RBPJ recombination signal binding protein for immunoglobulin kappa J region protein-coding 59 0.007034
-3538 IGLC2 immunoglobulin lambda constant 2 other 14 0.001669
-3539 IGLC3 immunoglobulin lambda constant 3 (Kern-Oz+ marker) other 27 0.003219
-3543 IGLL1 immunoglobulin lambda like polypeptide 1 protein-coding 28 0.003338
-3547 IGSF1 immunoglobulin superfamily member 1 protein-coding 234 0.0279
-3549 IHH indian hedgehog protein-coding 47 0.005603
-3550 IK IK cytokine protein-coding 52 0.006199
-3551 IKBKB inhibitor of nuclear factor kappa B kinase subunit beta protein-coding 104 0.0124
-3552 IL1A interleukin 1 alpha protein-coding 23 0.002742
-3553 IL1B interleukin 1 beta protein-coding 37 0.004411
-3554 IL1R1 interleukin 1 receptor type 1 protein-coding 55 0.006557
-3556 IL1RAP interleukin 1 receptor accessory protein protein-coding 72 0.008584
-3557 IL1RN interleukin 1 receptor antagonist protein-coding 16 0.001907
-3558 IL2 interleukin 2 protein-coding 16 0.001907
-3559 IL2RA interleukin 2 receptor subunit alpha protein-coding 33 0.003934
-3560 IL2RB interleukin 2 receptor subunit beta protein-coding 59 0.007034
-3561 IL2RG interleukin 2 receptor subunit gamma protein-coding 59 0.007034
-3562 IL3 interleukin 3 protein-coding 21 0.002504
-3563 IL3RA interleukin 3 receptor subunit alpha protein-coding 80 0.009537
-3565 IL4 interleukin 4 protein-coding 20 0.002384
-3566 IL4R interleukin 4 receptor protein-coding 100 0.01192
-3567 IL5 interleukin 5 protein-coding 15 0.001788
-3568 IL5RA interleukin 5 receptor subunit alpha protein-coding 86 0.01025
-3569 IL6 interleukin 6 protein-coding 37 0.004411
-3570 IL6R interleukin 6 receptor protein-coding 44 0.005246
-3572 IL6ST interleukin 6 signal transducer protein-coding 108 0.01288
-3574 IL7 interleukin 7 protein-coding 24 0.002861
-3575 IL7R interleukin 7 receptor protein-coding 129 0.01538
-3576 CXCL8 C-X-C motif chemokine ligand 8 protein-coding 21 0.002504
-3577 CXCR1 C-X-C motif chemokine receptor 1 protein-coding 54 0.006438
-3578 IL9 interleukin 9 protein-coding 15 0.001788
-3579 CXCR2 C-X-C motif chemokine receptor 2 protein-coding 55 0.006557
-3580 CXCR2P1 C-X-C motif chemokine receptor 2 pseudogene 1 pseudo 79 0.009418
-3581 IL9R interleukin 9 receptor protein-coding 87 0.01037
-3586 IL10 interleukin 10 protein-coding 24 0.002861
-3587 IL10RA interleukin 10 receptor subunit alpha protein-coding 66 0.007868
-3588 IL10RB interleukin 10 receptor subunit beta protein-coding 44 0.005246
-3589 IL11 interleukin 11 protein-coding 15 0.001788
-3590 IL11RA interleukin 11 receptor subunit alpha protein-coding 39 0.004649
-3592 IL12A interleukin 12A protein-coding 34 0.004053
-3593 IL12B interleukin 12B protein-coding 42 0.005007
-3594 IL12RB1 interleukin 12 receptor subunit beta 1 protein-coding 73 0.008703
-3595 IL12RB2 interleukin 12 receptor subunit beta 2 protein-coding 108 0.01288
-3596 IL13 interleukin 13 protein-coding 16 0.001907
-3597 IL13RA1 interleukin 13 receptor subunit alpha 1 protein-coding 58 0.006915
-3598 IL13RA2 interleukin 13 receptor subunit alpha 2 protein-coding 58 0.006915
-3600 IL15 interleukin 15 protein-coding 27 0.003219
-3601 IL15RA interleukin 15 receptor subunit alpha protein-coding 25 0.00298
-3603 IL16 interleukin 16 protein-coding 161 0.01919
-3604 TNFRSF9 TNF receptor superfamily member 9 protein-coding 45 0.005365
-3605 IL17A interleukin 17A protein-coding 30 0.003577
-3606 IL18 interleukin 18 protein-coding 17 0.002027
-3607 FOXK2 forkhead box K2 protein-coding 52 0.006199
-3608 ILF2 interleukin enhancer binding factor 2 protein-coding 45 0.005365
-3609 ILF3 interleukin enhancer binding factor 3 protein-coding 139 0.01657
-3611 ILK integrin linked kinase protein-coding 53 0.006319
-3612 IMPA1 inositol monophosphatase 1 protein-coding 48 0.005722
-3613 IMPA2 inositol monophosphatase 2 protein-coding 35 0.004173
-3614 IMPDH1 inosine monophosphate dehydrogenase 1 protein-coding 68 0.008107
-3615 IMPDH2 inosine monophosphate dehydrogenase 2 protein-coding 56 0.006676
-3617 IMPG1 interphotoreceptor matrix proteoglycan 1 protein-coding 168 0.02003
-3619 INCENP inner centromere protein protein-coding 92 0.01097
-3620 IDO1 indoleamine 2,3-dioxygenase 1 protein-coding 62 0.007392
-3621 ING1 inhibitor of growth family member 1 protein-coding 72 0.008584
-3622 ING2 inhibitor of growth family member 2 protein-coding 32 0.003815
-3623 INHA inhibin alpha subunit protein-coding 48 0.005722
-3624 INHBA inhibin beta A subunit protein-coding 121 0.01443
-3625 INHBB inhibin beta B subunit protein-coding 40 0.004769
-3626 INHBC inhibin beta C subunit protein-coding 38 0.00453
-3627 CXCL10 C-X-C motif chemokine ligand 10 protein-coding 194 0.02313
-3628 INPP1 inositol polyphosphate-1-phosphatase protein-coding 37 0.004411
-3630 INS insulin protein-coding 6 0.0007153
-3631 INPP4A inositol polyphosphate-4-phosphatase type I A protein-coding 103 0.01228
-3632 INPP5A inositol polyphosphate-5-phosphatase A protein-coding 59 0.007034
-3633 INPP5B inositol polyphosphate-5-phosphatase B protein-coding 89 0.01061
-3635 INPP5D inositol polyphosphate-5-phosphatase D protein-coding 131 0.01562
-3636 INPPL1 inositol polyphosphate phosphatase like 1 protein-coding 181 0.02158
-3638 INSIG1 insulin induced gene 1 protein-coding 29 0.003457
-3640 INSL3 insulin like 3 protein-coding 171 0.02039
-3641 INSL4 insulin like 4 protein-coding 24 0.002861
-3642 INSM1 INSM transcriptional repressor 1 protein-coding 25 0.00298
-3643 INSR insulin receptor protein-coding 154 0.01836
-3645 INSRR insulin receptor related receptor protein-coding 201 0.02396
-3646 EIF3E eukaryotic translation initiation factor 3 subunit E protein-coding 74 0.008822
-3651 PDX1 pancreatic and duodenal homeobox 1 protein-coding 25 0.00298
-3652 IPP intracisternal A particle-promoted polypeptide protein-coding 65 0.007749
-3654 IRAK1 interleukin 1 receptor associated kinase 1 protein-coding 68 0.008107
-3655 ITGA6 integrin subunit alpha 6 protein-coding 113 0.01347
-3656 IRAK2 interleukin 1 receptor associated kinase 2 protein-coding 64 0.00763
-3658 IREB2 iron responsive element binding protein 2 protein-coding 118 0.01407
-3659 IRF1 interferon regulatory factor 1 protein-coding 47 0.005603
-3660 IRF2 interferon regulatory factor 2 protein-coding 87 0.01037
-3661 IRF3 interferon regulatory factor 3 protein-coding 40 0.004769
-3662 IRF4 interferon regulatory factor 4 protein-coding 136 0.01621
-3663 IRF5 interferon regulatory factor 5 protein-coding 51 0.00608
-3664 IRF6 interferon regulatory factor 6 protein-coding 92 0.01097
-3665 IRF7 interferon regulatory factor 7 protein-coding 38 0.00453
-3667 IRS1 insulin receptor substrate 1 protein-coding 148 0.01764
-3669 ISG20 interferon stimulated exonuclease gene 20 protein-coding 24 0.002861
-3670 ISL1 ISL LIM homeobox 1 protein-coding 79 0.009418
-3671 ISLR immunoglobulin superfamily containing leucine rich repeat protein-coding 69 0.008226
-3672 ITGA1 integrin subunit alpha 1 protein-coding 125 0.0149
-3673 ITGA2 integrin subunit alpha 2 protein-coding 128 0.01526
-3674 ITGA2B integrin subunit alpha 2b protein-coding 102 0.01216
-3675 ITGA3 integrin subunit alpha 3 protein-coding 101 0.01204
-3676 ITGA4 integrin subunit alpha 4 protein-coding 179 0.02134
-3678 ITGA5 integrin subunit alpha 5 protein-coding 95 0.01133
-3679 ITGA7 integrin subunit alpha 7 protein-coding 142 0.01693
-3680 ITGA9 integrin subunit alpha 9 protein-coding 107 0.01276
-3681 ITGAD integrin subunit alpha D protein-coding 173 0.02062
-3682 ITGAE integrin subunit alpha E protein-coding 129 0.01538
-3683 ITGAL integrin subunit alpha L protein-coding 178 0.02122
-3684 ITGAM integrin subunit alpha M protein-coding 161 0.01919
-3685 ITGAV integrin subunit alpha V protein-coding 124 0.01478
-3687 ITGAX integrin subunit alpha X protein-coding 189 0.02253
-3688 ITGB1 integrin subunit beta 1 protein-coding 79 0.009418
-3689 ITGB2 integrin subunit beta 2 protein-coding 106 0.01264
-3690 ITGB3 integrin subunit beta 3 protein-coding 103 0.01228
-3691 ITGB4 integrin subunit beta 4 protein-coding 183 0.02182
-3692 EIF6 eukaryotic translation initiation factor 6 protein-coding 164 0.01955
-3693 ITGB5 integrin subunit beta 5 protein-coding 74 0.008822
-3694 ITGB6 integrin subunit beta 6 protein-coding 97 0.01156
-3695 ITGB7 integrin subunit beta 7 protein-coding 52 0.006199
-3696 ITGB8 integrin subunit beta 8 protein-coding 107 0.01276
-3697 ITIH1 inter-alpha-trypsin inhibitor heavy chain 1 protein-coding 125 0.0149
-3698 ITIH2 inter-alpha-trypsin inhibitor heavy chain 2 protein-coding 157 0.01872
-3699 ITIH3 inter-alpha-trypsin inhibitor heavy chain 3 protein-coding 85 0.01013
-3700 ITIH4 inter-alpha-trypsin inhibitor heavy chain family member 4 protein-coding 94 0.01121
-3702 ITK IL2 inducible T cell kinase protein-coding 111 0.01323
-3703 STT3A STT3A, catalytic subunit of the oligosaccharyltransferase complex protein-coding 77 0.00918
-3704 ITPA inosine triphosphatase protein-coding 16 0.001907
-3705 ITPK1 inositol-tetrakisphosphate 1-kinase protein-coding 56 0.006676
-3706 ITPKA inositol-trisphosphate 3-kinase A protein-coding 26 0.0031
-3707 ITPKB inositol-trisphosphate 3-kinase B protein-coding 106 0.01264
-3708 ITPR1 inositol 1,4,5-trisphosphate receptor type 1 protein-coding 253 0.03016
-3709 ITPR2 inositol 1,4,5-trisphosphate receptor type 2 protein-coding 303 0.03612
-3710 ITPR3 inositol 1,4,5-trisphosphate receptor type 3 protein-coding 245 0.02921
-3712 IVD isovaleryl-CoA dehydrogenase protein-coding 35 0.004173
-3713 IVL involucrin protein-coding 97 0.01156
-3714 JAG2 jagged 2 protein-coding 114 0.01359
-3716 JAK1 Janus kinase 1 protein-coding 163 0.01943
-3717 JAK2 Janus kinase 2 protein-coding 122 0.01454
-3718 JAK3 Janus kinase 3 protein-coding 140 0.01669
-3720 JARID2 jumonji and AT-rich interaction domain containing 2 protein-coding 175 0.02086
-3725 JUN Jun proto-oncogene, AP-1 transcription factor subunit protein-coding 36 0.004292
-3726 JUNB JunB proto-oncogene, AP-1 transcription factor subunit protein-coding 27 0.003219
-3727 JUND JunD proto-oncogene, AP-1 transcription factor subunit protein-coding 18 0.002146
-3728 JUP junction plakoglobin protein-coding 95 0.01133
-3730 ANOS1 anosmin 1 protein-coding 111 0.01323
-3732 CD82 CD82 molecule protein-coding 37 0.004411
-3735 KARS lysyl-tRNA synthetase protein-coding 73 0.008703
-3736 KCNA1 potassium voltage-gated channel subfamily A member 1 protein-coding 137 0.01633
-3737 KCNA2 potassium voltage-gated channel subfamily A member 2 protein-coding 79 0.009418
-3738 KCNA3 potassium voltage-gated channel subfamily A member 3 protein-coding 100 0.01192
-3739 KCNA4 potassium voltage-gated channel subfamily A member 4 protein-coding 280 0.03338
-3741 KCNA5 potassium voltage-gated channel subfamily A member 5 protein-coding 281 0.0335
-3742 KCNA6 potassium voltage-gated channel subfamily A member 6 protein-coding 137 0.01633
-3743 KCNA7 potassium voltage-gated channel subfamily A member 7 protein-coding 44 0.005246
-3744 KCNA10 potassium voltage-gated channel subfamily A member 10 protein-coding 82 0.009776
-3745 KCNB1 potassium voltage-gated channel subfamily B member 1 protein-coding 150 0.01788
-3746 KCNC1 potassium voltage-gated channel subfamily C member 1 protein-coding 89 0.01061
-3747 KCNC2 potassium voltage-gated channel subfamily C member 2 protein-coding 135 0.01609
-3748 KCNC3 potassium voltage-gated channel subfamily C member 3 protein-coding 61 0.007272
-3749 KCNC4 potassium voltage-gated channel subfamily C member 4 protein-coding 94 0.01121
-3750 KCND1 potassium voltage-gated channel subfamily D member 1 protein-coding 76 0.009061
-3751 KCND2 potassium voltage-gated channel subfamily D member 2 protein-coding 170 0.02027
-3752 KCND3 potassium voltage-gated channel subfamily D member 3 protein-coding 109 0.01299
-3753 KCNE1 potassium voltage-gated channel subfamily E regulatory subunit 1 protein-coding 29 0.003457
-3754 KCNF1 potassium voltage-gated channel modifier subfamily F member 1 protein-coding 95 0.01133
-3755 KCNG1 potassium voltage-gated channel modifier subfamily G member 1 protein-coding 98 0.01168
-3756 KCNH1 potassium voltage-gated channel subfamily H member 1 protein-coding 207 0.02468
-3757 KCNH2 potassium voltage-gated channel subfamily H member 2 protein-coding 132 0.01574
-3758 KCNJ1 potassium voltage-gated channel subfamily J member 1 protein-coding 69 0.008226
-3759 KCNJ2 potassium voltage-gated channel subfamily J member 2 protein-coding 92 0.01097
-3760 KCNJ3 potassium voltage-gated channel subfamily J member 3 protein-coding 166 0.01979
-3761 KCNJ4 potassium voltage-gated channel subfamily J member 4 protein-coding 89 0.01061
-3762 KCNJ5 potassium voltage-gated channel subfamily J member 5 protein-coding 66 0.007868
-3763 KCNJ6 potassium voltage-gated channel subfamily J member 6 protein-coding 73 0.008703
-3764 KCNJ8 potassium voltage-gated channel subfamily J member 8 protein-coding 87 0.01037
-3765 KCNJ9 potassium voltage-gated channel subfamily J member 9 protein-coding 40 0.004769
-3766 KCNJ10 potassium voltage-gated channel subfamily J member 10 protein-coding 63 0.007511
-3767 KCNJ11 potassium voltage-gated channel subfamily J member 11 protein-coding 41 0.004888
-3768 KCNJ12 potassium voltage-gated channel subfamily J member 12 protein-coding 162 0.01931
-3769 KCNJ13 potassium voltage-gated channel subfamily J member 13 protein-coding 47 0.005603
-3770 KCNJ14 potassium voltage-gated channel subfamily J member 14 protein-coding 51 0.00608
-3772 KCNJ15 potassium voltage-gated channel subfamily J member 15 protein-coding 63 0.007511
-3773 KCNJ16 potassium voltage-gated channel subfamily J member 16 protein-coding 92 0.01097
-3775 KCNK1 potassium two pore domain channel subfamily K member 1 protein-coding 50 0.005961
-3776 KCNK2 potassium two pore domain channel subfamily K member 2 protein-coding 94 0.01121
-3777 KCNK3 potassium two pore domain channel subfamily K member 3 protein-coding 42 0.005007
-3778 KCNMA1 potassium calcium-activated channel subfamily M alpha 1 protein-coding 168 0.02003
-3779 KCNMB1 potassium calcium-activated channel subfamily M regulatory beta subunit 1 protein-coding 30 0.003577
-3780 KCNN1 potassium calcium-activated channel subfamily N member 1 protein-coding 71 0.008464
-3781 KCNN2 potassium calcium-activated channel subfamily N member 2 protein-coding 115 0.01371
-3782 KCNN3 potassium calcium-activated channel subfamily N member 3 protein-coding 92 0.01097
-3783 KCNN4 potassium calcium-activated channel subfamily N member 4 protein-coding 102 0.01216
-3784 KCNQ1 potassium voltage-gated channel subfamily Q member 1 protein-coding 69 0.008226
-3785 KCNQ2 potassium voltage-gated channel subfamily Q member 2 protein-coding 169 0.02015
-3786 KCNQ3 potassium voltage-gated channel subfamily Q member 3 protein-coding 182 0.0217
-3787 KCNS1 potassium voltage-gated channel modifier subfamily S member 1 protein-coding 48 0.005722
-3788 KCNS2 potassium voltage-gated channel modifier subfamily S member 2 protein-coding 112 0.01335
-3790 KCNS3 potassium voltage-gated channel modifier subfamily S member 3 protein-coding 90 0.01073
-3791 KDR kinase insert domain receptor protein-coding 244 0.02909
-3792 KEL Kell blood group, metallo-endopeptidase protein-coding 156 0.0186
-3795 KHK ketohexokinase protein-coding 43 0.005126
-3796 KIF2A kinesin family member 2A protein-coding 173 0.02062
-3797 KIF3C kinesin family member 3C protein-coding 92 0.01097
-3798 KIF5A kinesin family member 5A protein-coding 147 0.01753
-3799 KIF5B kinesin family member 5B protein-coding 112 0.01335
-3800 KIF5C kinesin family member 5C protein-coding 141 0.01681
-3801 KIFC3 kinesin family member C3 protein-coding 71 0.008464
-3802 KIR2DL1 killer cell immunoglobulin like receptor, two Ig domains and long cytoplasmic tail 1 protein-coding 75 0.008941
-3804 KIR2DL3 killer cell immunoglobulin like receptor, two Ig domains and long cytoplasmic tail 3 protein-coding 51 0.00608
-3805 KIR2DL4 killer cell immunoglobulin like receptor, two Ig domains and long cytoplasmic tail 4 protein-coding 31 0.003696
-3809 KIR2DS4 killer cell immunoglobulin like receptor, two Ig domains and short cytoplasmic tail 4 protein-coding 50 0.005961
-3811 KIR3DL1 killer cell immunoglobulin like receptor, three Ig domains and long cytoplasmic tail 1 protein-coding 83 0.009895
-3812 KIR3DL2 killer cell immunoglobulin like receptor, three Ig domains and long cytoplasmic tail 2 protein-coding 59 0.007034
-3814 KISS1 KiSS-1 metastasis suppressor protein-coding 10 0.001192
-3815 KIT KIT proto-oncogene receptor tyrosine kinase protein-coding 191 0.02277
-3816 KLK1 kallikrein 1 protein-coding 47 0.005603
-3817 KLK2 kallikrein related peptidase 2 protein-coding 36 0.004292
-3818 KLKB1 kallikrein B1 protein-coding 134 0.01598
-3820 KLRB1 killer cell lectin like receptor B1 protein-coding 25 0.00298
-3821 KLRC1 killer cell lectin like receptor C1 protein-coding 37 0.004411
-3822 KLRC2 killer cell lectin like receptor C2 protein-coding 53 0.006319
-3823 KLRC3 killer cell lectin like receptor C3 protein-coding 35 0.004173
-3824 KLRD1 killer cell lectin like receptor D1 protein-coding 29 0.003457
-3827 KNG1 kininogen 1 protein-coding 99 0.0118
-3831 KLC1 kinesin light chain 1 protein-coding 62 0.007392
-3832 KIF11 kinesin family member 11 protein-coding 97 0.01156
-3833 KIFC1 kinesin family member C1 protein-coding 81 0.009657
-3834 KIF25 kinesin family member 25 protein-coding 54 0.006438
-3835 KIF22 kinesin family member 22 protein-coding 72 0.008584
-3836 KPNA1 karyopherin subunit alpha 1 protein-coding 71 0.008464
-3837 KPNB1 karyopherin subunit beta 1 protein-coding 80 0.009537
-3838 KPNA2 karyopherin subunit alpha 2 protein-coding 65 0.007749
-3839 KPNA3 karyopherin subunit alpha 3 protein-coding 58 0.006915
-3840 KPNA4 karyopherin subunit alpha 4 protein-coding 54 0.006438
-3841 KPNA5 karyopherin subunit alpha 5 protein-coding 59 0.007034
-3842 TNPO1 transportin 1 protein-coding 144 0.01717
-3843 IPO5 importin 5 protein-coding 100 0.01192
-3845 KRAS KRAS proto-oncogene, GTPase protein-coding 646 0.07701
-3846 KRTAP5-9 keratin associated protein 5-9 protein-coding 22 0.002623
-3848 KRT1 keratin 1 protein-coding 87 0.01037
-3849 KRT2 keratin 2 protein-coding 92 0.01097
-3850 KRT3 keratin 3 protein-coding 84 0.01001
-3851 KRT4 keratin 4 protein-coding 87 0.01037
-3852 KRT5 keratin 5 protein-coding 94 0.01121
-3853 KRT6A keratin 6A protein-coding 99 0.0118
-3854 KRT6B keratin 6B protein-coding 97 0.01156
-3855 KRT7 keratin 7 protein-coding 54 0.006438
-3856 KRT8 keratin 8 protein-coding 58 0.006915
-3857 KRT9 keratin 9 protein-coding 68 0.008107
-3858 KRT10 keratin 10 protein-coding 72 0.008584
-3859 KRT12 keratin 12 protein-coding 77 0.00918
-3860 KRT13 keratin 13 protein-coding 70 0.008345
-3861 KRT14 keratin 14 protein-coding 73 0.008703
-3866 KRT15 keratin 15 protein-coding 70 0.008345
-3868 KRT16 keratin 16 protein-coding 73 0.008703
-3872 KRT17 keratin 17 protein-coding 199 0.02372
-3875 KRT18 keratin 18 protein-coding 41 0.004888
-3880 KRT19 keratin 19 protein-coding 61 0.007272
-3881 KRT31 keratin 31 protein-coding 87 0.01037
-3882 KRT32 keratin 32 protein-coding 59 0.007034
-3883 KRT33A keratin 33A protein-coding 72 0.008584
-3884 KRT33B keratin 33B protein-coding 78 0.009299
-3885 KRT34 keratin 34 protein-coding 83 0.009895
-3886 KRT35 keratin 35 protein-coding 62 0.007392
-3887 KRT81 keratin 81 protein-coding 40 0.004769
-3888 KRT82 keratin 82 protein-coding 73 0.008703
-3889 KRT83 keratin 83 protein-coding 70 0.008345
-3890 KRT84 keratin 84 protein-coding 83 0.009895
-3891 KRT85 keratin 85 protein-coding 83 0.009895
-3892 KRT86 keratin 86 protein-coding 41 0.004888
-3895 KTN1 kinectin 1 protein-coding 117 0.01395
-3897 L1CAM L1 cell adhesion molecule protein-coding 196 0.02337
-3898 LAD1 ladinin 1 protein-coding 59 0.007034
-3899 AFF3 AF4/FMR2 family member 3 protein-coding 205 0.02444
-3902 LAG3 lymphocyte activating 3 protein-coding 47 0.005603
-3903 LAIR1 leukocyte associated immunoglobulin like receptor 1 protein-coding 48 0.005722
-3904 LAIR2 leukocyte associated immunoglobulin like receptor 2 protein-coding 37 0.004411
-3906 LALBA lactalbumin alpha protein-coding 12 0.001431
-3908 LAMA2 laminin subunit alpha 2 protein-coding 423 0.05043
-3909 LAMA3 laminin subunit alpha 3 protein-coding 313 0.03732
-3910 LAMA4 laminin subunit alpha 4 protein-coding 522 0.06223
-3911 LAMA5 laminin subunit alpha 5 protein-coding 307 0.0366
-3912 LAMB1 laminin subunit beta 1 protein-coding 208 0.0248
-3913 LAMB2 laminin subunit beta 2 protein-coding 172 0.02051
-3914 LAMB3 laminin subunit beta 3 protein-coding 156 0.0186
-3915 LAMC1 laminin subunit gamma 1 protein-coding 335 0.03994
-3916 LAMP1 lysosomal associated membrane protein 1 protein-coding 45 0.005365
-3918 LAMC2 laminin subunit gamma 2 protein-coding 122 0.01454
-3920 LAMP2 lysosomal associated membrane protein 2 protein-coding 42 0.005007
-3921 RPSA ribosomal protein SA protein-coding 26 0.0031
-3925 STMN1 stathmin 1 protein-coding 18 0.002146
-3927 LASP1 LIM and SH3 protein 1 protein-coding 27 0.003219
-3929 LBP lipopolysaccharide binding protein protein-coding 64 0.00763
-3930 LBR lamin B receptor protein-coding 84 0.01001
-3931 LCAT lecithin-cholesterol acyltransferase protein-coding 46 0.005484
-3932 LCK LCK proto-oncogene, Src family tyrosine kinase protein-coding 62 0.007392
-3933 LCN1 lipocalin 1 protein-coding 33 0.003934
-3934 LCN2 lipocalin 2 protein-coding 29 0.003457
-3936 LCP1 lymphocyte cytosolic protein 1 protein-coding 147 0.01753
-3937 LCP2 lymphocyte cytosolic protein 2 protein-coding 96 0.01144
-3938 LCT lactase protein-coding 282 0.03362
-3939 LDHA lactate dehydrogenase A protein-coding 40 0.004769
-3945 LDHB lactate dehydrogenase B protein-coding 48 0.005722
-3948 LDHC lactate dehydrogenase C protein-coding 57 0.006795
-3949 LDLR low density lipoprotein receptor protein-coding 151 0.018
-3950 LECT2 leukocyte cell derived chemotaxin 2 protein-coding 28 0.003338
-3952 LEP leptin protein-coding 24 0.002861
-3953 LEPR leptin receptor protein-coding 188 0.02241
-3954 LETM1 leucine zipper and EF-hand containing transmembrane protein 1 protein-coding 76 0.009061
-3955 LFNG LFNG O-fucosylpeptide 3-beta-N-acetylglucosaminyltransferase protein-coding 36 0.004292
-3956 LGALS1 galectin 1 protein-coding 16 0.001907
-3957 LGALS2 galectin 2 protein-coding 22 0.002623
-3958 LGALS3 galectin 3 protein-coding 39 0.004649
-3959 LGALS3BP galectin 3 binding protein protein-coding 56 0.006676
-3960 LGALS4 galectin 4 protein-coding 49 0.005842
-3963 LGALS7 galectin 7 protein-coding 7 0.0008345
-3964 LGALS8 galectin 8 protein-coding 45 0.005365
-3965 LGALS9 galectin 9 protein-coding 49 0.005842
-3972 LHB luteinizing hormone beta polypeptide protein-coding 16 0.001907
-3973 LHCGR luteinizing hormone/choriogonadotropin receptor protein-coding 146 0.01741
-3975 LHX1 LIM homeobox 1 protein-coding 67 0.007988
-3976 LIF LIF, interleukin 6 family cytokine protein-coding 25 0.00298
-3977 LIFR LIF receptor alpha protein-coding 155 0.01848
-3978 LIG1 DNA ligase 1 protein-coding 103 0.01228
-3980 LIG3 DNA ligase 3 protein-coding 92 0.01097
-3981 LIG4 DNA ligase 4 protein-coding 129 0.01538
-3982 LIM2 lens intrinsic membrane protein 2 protein-coding 54 0.006438
-3983 ABLIM1 actin binding LIM protein 1 protein-coding 91 0.01085
-3984 LIMK1 LIM domain kinase 1 protein-coding 74 0.008822
-3985 LIMK2 LIM domain kinase 2 protein-coding 73 0.008703
-3987 LIMS1 LIM zinc finger domain containing 1 protein-coding 36 0.004292
-3988 LIPA lipase A, lysosomal acid type protein-coding 37 0.004411
-3990 LIPC lipase C, hepatic type protein-coding 128 0.01526
-3991 LIPE lipase E, hormone sensitive type protein-coding 107 0.01276
-3992 FADS1 fatty acid desaturase 1 protein-coding 61 0.007272
-3993 LLGL2 LLGL2, scribble cell polarity complex component protein-coding 95 0.01133
-3995 FADS3 fatty acid desaturase 3 protein-coding 41 0.004888
-3996 LLGL1 LLGL1, scribble cell polarity complex component protein-coding 78 0.009299
-3998 LMAN1 lectin, mannose binding 1 protein-coding 78 0.009299
-4000 LMNA lamin A/C protein-coding 67 0.007988
-4001 LMNB1 lamin B1 protein-coding 54 0.006438
-4004 LMO1 LIM domain only 1 protein-coding 19 0.002265
-4005 LMO2 LIM domain only 2 protein-coding 28 0.003338
-4007 PRICKLE3 prickle planar cell polarity protein 3 protein-coding 62 0.007392
-4008 LMO7 LIM domain 7 protein-coding 149 0.01776
-4009 LMX1A LIM homeobox transcription factor 1 alpha protein-coding 86 0.01025
-4010 LMX1B LIM homeobox transcription factor 1 beta protein-coding 49 0.005842
-4012 LNPEP leucyl and cystinyl aminopeptidase protein-coding 99 0.0118
-4013 VWA5A von Willebrand factor A domain containing 5A protein-coding 109 0.01299
-4014 LOR loricrin protein-coding 10 0.001192
-4015 LOX lysyl oxidase protein-coding 53 0.006319
-4016 LOXL1 lysyl oxidase like 1 protein-coding 38 0.00453
-4017 LOXL2 lysyl oxidase like 2 protein-coding 109 0.01299
-4018 LPA lipoprotein(a) protein-coding 275 0.03278
-4023 LPL lipoprotein lipase protein-coding 73 0.008703
-4025 LPO lactoperoxidase protein-coding 84 0.01001
-4026 LPP LIM domain containing preferred translocation partner in lipoma protein-coding 101 0.01204
-4033 LRMP lymphoid restricted membrane protein protein-coding 68 0.008107
-4034 LRCH4 leucine rich repeats and calponin homology domain containing 4 protein-coding 201 0.02396
-4035 LRP1 LDL receptor related protein 1 protein-coding 395 0.04709
-4036 LRP2 LDL receptor related protein 2 protein-coding 579 0.06903
-4037 LRP3 LDL receptor related protein 3 protein-coding 74 0.008822
-4038 LRP4 LDL receptor related protein 4 protein-coding 260 0.031
-4040 LRP6 LDL receptor related protein 6 protein-coding 176 0.02098
-4041 LRP5 LDL receptor related protein 5 protein-coding 183 0.02182
-4043 LRPAP1 LDL receptor related protein associated protein 1 protein-coding 49 0.005842
-4045 LSAMP limbic system associated membrane protein protein-coding 76 0.009061
-4046 LSP1 lymphocyte-specific protein 1 protein-coding 62 0.007392
-4047 LSS lanosterol synthase protein-coding 88 0.01049
-4048 LTA4H leukotriene A4 hydrolase protein-coding 53 0.006319
-4049 LTA lymphotoxin alpha protein-coding 27 0.003219
-4050 LTB lymphotoxin beta protein-coding 21 0.002504
-4051 CYP4F3 cytochrome P450 family 4 subfamily F member 3 protein-coding 90 0.01073
-4052 LTBP1 latent transforming growth factor beta binding protein 1 protein-coding 241 0.02873
-4053 LTBP2 latent transforming growth factor beta binding protein 2 protein-coding 274 0.03267
-4054 LTBP3 latent transforming growth factor beta binding protein 3 protein-coding 274 0.03267
-4055 LTBR lymphotoxin beta receptor protein-coding 51 0.00608
-4056 LTC4S leukotriene C4 synthase protein-coding 4 0.0004769
-4057 LTF lactotransferrin protein-coding 103 0.01228
-4058 LTK leukocyte receptor tyrosine kinase protein-coding 81 0.009657
-4059 BCAM basal cell adhesion molecule (Lutheran blood group) protein-coding 74 0.008822
-4060 LUM lumican protein-coding 88 0.01049
-4061 LY6E lymphocyte antigen 6 family member E protein-coding 9 0.001073
-4062 LY6H lymphocyte antigen 6 family member H protein-coding 25 0.00298
-4063 LY9 lymphocyte antigen 9 protein-coding 103 0.01228
-4064 CD180 CD180 molecule protein-coding 81 0.009657
-4065 LY75 lymphocyte antigen 75 protein-coding 7 0.0008345
-4066 LYL1 LYL1, basic helix-loop-helix family member protein-coding 17 0.002027
-4067 LYN LYN proto-oncogene, Src family tyrosine kinase protein-coding 79 0.009418
-4068 SH2D1A SH2 domain containing 1A protein-coding 37 0.004411
-4069 LYZ lysozyme protein-coding 23 0.002742
-4070 TACSTD2 tumor associated calcium signal transducer 2 protein-coding 25 0.00298
-4071 TM4SF1 transmembrane 4 L six family member 1 protein-coding 30 0.003577
-4072 EPCAM epithelial cell adhesion molecule protein-coding 28 0.003338
-4074 M6PR mannose-6-phosphate receptor, cation dependent protein-coding 14 0.001669
-4076 CAPRIN1 cell cycle associated protein 1 protein-coding 82 0.009776
-4077 NBR1 NBR1, autophagy cargo receptor protein-coding 91 0.01085
-4081 MAB21L1 mab-21 like 1 protein-coding 83 0.009895
-4082 MARCKS myristoylated alanine rich protein kinase C substrate protein-coding 17 0.002027
-4084 MXD1 MAX dimerization protein 1 protein-coding 31 0.003696
-4085 MAD2L1 mitotic arrest deficient 2 like 1 protein-coding 32 0.003815
-4086 SMAD1 SMAD family member 1 protein-coding 50 0.005961
-4087 SMAD2 SMAD family member 2 protein-coding 83 0.009895
-4088 SMAD3 SMAD family member 3 protein-coding 90 0.01073
-4089 SMAD4 SMAD family member 4 protein-coding 227 0.02706
-4090 SMAD5 SMAD family member 5 protein-coding 39 0.004649
-4091 SMAD6 SMAD family member 6 protein-coding 28 0.003338
-4092 SMAD7 SMAD family member 7 protein-coding 32 0.003815
-4093 SMAD9 SMAD family member 9 protein-coding 68 0.008107
-4094 MAF MAF bZIP transcription factor protein-coding 45 0.005365
-4097 MAFG MAF bZIP transcription factor G protein-coding 6 0.0007153
-4099 MAG myelin associated glycoprotein protein-coding 117 0.01395
-4100 MAGEA1 MAGE family member A1 protein-coding 53 0.006319
-4102 MAGEA3 MAGE family member A3 protein-coding 63 0.007511
-4103 MAGEA4 MAGE family member A4 protein-coding 80 0.009537
-4105 MAGEA6 MAGE family member A6 protein-coding 70 0.008345
-4107 MAGEA8 MAGE family member A8 protein-coding 61 0.007272
-4109 MAGEA10 MAGE family member A10 protein-coding 82 0.009776
-4110 MAGEA11 MAGE family member A11 protein-coding 94 0.01121
-4111 MAGEA12 MAGE family member A12 protein-coding 75 0.008941
-4112 MAGEB1 MAGE family member B1 protein-coding 101 0.01204
-4113 MAGEB2 MAGE family member B2 protein-coding 91 0.01085
-4114 MAGEB3 MAGE family member B3 protein-coding 80 0.009537
-4115 MAGEB4 MAGE family member B4 protein-coding 88 0.01049
-4116 MAGOH mago homolog, exon junction complex core component protein-coding 16 0.001907
-4117 MAK male germ cell associated kinase protein-coding 68 0.008107
-4118 MAL mal, T cell differentiation protein protein-coding 24 0.002861
-4121 MAN1A1 mannosidase alpha class 1A member 1 protein-coding 84 0.01001
-4122 MAN2A2 mannosidase alpha class 2A member 2 protein-coding 103 0.01228
-4123 MAN2C1 mannosidase alpha class 2C member 1 protein-coding 105 0.01252
-4124 MAN2A1 mannosidase alpha class 2A member 1 protein-coding 145 0.01729
-4125 MAN2B1 mannosidase alpha class 2B member 1 protein-coding 109 0.01299
-4126 MANBA mannosidase beta protein-coding 89 0.01061
-4128 MAOA monoamine oxidase A protein-coding 52 0.006199
-4129 MAOB monoamine oxidase B protein-coding 70 0.008345
-4130 MAP1A microtubule associated protein 1A protein-coding 246 0.02933
-4131 MAP1B microtubule associated protein 1B protein-coding 255 0.0304
-4133 MAP2 microtubule associated protein 2 protein-coding 300 0.03577
-4134 MAP4 microtubule associated protein 4 protein-coding 87 0.01037
-4135 MAP6 microtubule associated protein 6 protein-coding 72 0.008584
-4137 MAPT microtubule associated protein tau protein-coding 108 0.01288
-4139 MARK1 microtubule affinity regulating kinase 1 protein-coding 134 0.01598
-4140 MARK3 microtubule affinity regulating kinase 3 protein-coding 78 0.009299
-4141 MARS methionyl-tRNA synthetase protein-coding 82 0.009776
-4142 MAS1 MAS1 proto-oncogene, G protein-coupled receptor protein-coding 42 0.005007
-4143 MAT1A methionine adenosyltransferase 1A protein-coding 69 0.008226
-4144 MAT2A methionine adenosyltransferase 2A protein-coding 30 0.003577
-4145 MATK megakaryocyte-associated tyrosine kinase protein-coding 99 0.0118
-4146 MATN1 matrilin 1 protein-coding 47 0.005603
-4147 MATN2 matrilin 2 protein-coding 119 0.01419
-4148 MATN3 matrilin 3 protein-coding 51 0.00608
-4149 MAX MYC associated factor X protein-coding 52 0.006199
-4150 MAZ MYC associated zinc finger protein protein-coding 51 0.00608
-4151 MB myoglobin protein-coding 12 0.001431
-4152 MBD1 methyl-CpG binding domain protein 1 protein-coding 214 0.02551
-4153 MBL2 mannose binding lectin 2 protein-coding 97 0.01156
-4154 MBNL1 muscleblind like splicing regulator 1 protein-coding 53 0.006319
-4155 MBP myelin basic protein protein-coding 34 0.004053
-4157 MC1R melanocortin 1 receptor protein-coding 36 0.004292
-4158 MC2R melanocortin 2 receptor protein-coding 62 0.007392
-4159 MC3R melanocortin 3 receptor protein-coding 85 0.01013
-4160 MC4R melanocortin 4 receptor protein-coding 55 0.006557
-4161 MC5R melanocortin 5 receptor protein-coding 85 0.01013
-4162 MCAM melanoma cell adhesion molecule protein-coding 68 0.008107
-4163 MCC mutated in colorectal cancers protein-coding 145 0.01729
-4166 CHST6 carbohydrate sulfotransferase 6 protein-coding 68 0.008107
-4168 MCF2 MCF.2 cell line derived transforming sequence protein-coding 189 0.02253
-4170 MCL1 MCL1, BCL2 family apoptosis regulator protein-coding 23 0.002742
-4171 MCM2 minichromosome maintenance complex component 2 protein-coding 84 0.01001
-4172 MCM3 minichromosome maintenance complex component 3 protein-coding 73 0.008703
-4173 MCM4 minichromosome maintenance complex component 4 protein-coding 116 0.01383
-4174 MCM5 minichromosome maintenance complex component 5 protein-coding 74 0.008822
-4175 MCM6 minichromosome maintenance complex component 6 protein-coding 95 0.01133
-4176 MCM7 minichromosome maintenance complex component 7 protein-coding 180 0.02146
-4179 CD46 CD46 molecule protein-coding 60 0.007153
-4184 SMCP sperm mitochondria associated cysteine rich protein protein-coding 21 0.002504
-4185 ADAM11 ADAM metallopeptidase domain 11 protein-coding 81 0.009657
-4188 MDFI MyoD family inhibitor protein-coding 14 0.001669
-4189 DNAJB9 DnaJ heat shock protein family (Hsp40) member B9 protein-coding 31 0.003696
-4190 MDH1 malate dehydrogenase 1 protein-coding 37 0.004411
-4191 MDH2 malate dehydrogenase 2 protein-coding 21 0.002504
-4192 MDK midkine protein-coding 13 0.00155
-4193 MDM2 MDM2 proto-oncogene protein-coding 58 0.006915
-4194 MDM4 MDM4, p53 regulator protein-coding 33 0.003934
-4195 MDRV muscular dystrophy, with rimmed vacuoles unknown 39 0.004649
-4199 ME1 malic enzyme 1 protein-coding 73 0.008703
-4200 ME2 malic enzyme 2 protein-coding 72 0.008584
-4201 MEA1 male-enhanced antigen 1 protein-coding 19 0.002265
-4204 MECP2 methyl-CpG binding protein 2 protein-coding 67 0.007988
-4205 MEF2A myocyte enhancer factor 2A protein-coding 50 0.005961
-4208 MEF2C myocyte enhancer factor 2C protein-coding 80 0.009537
-4209 MEF2D myocyte enhancer factor 2D protein-coding 56 0.006676
-4210 MEFV MEFV, pyrin innate immunity regulator protein-coding 139 0.01657
-4211 MEIS1 Meis homeobox 1 protein-coding 71 0.008464
-4212 MEIS2 Meis homeobox 2 protein-coding 91 0.01085
-4213 MEIS3P1 Meis homeobox 3 pseudogene 1 pseudo 47 0.005603
-4214 MAP3K1 mitogen-activated protein kinase kinase kinase 1 protein-coding 220 0.02623
-4215 MAP3K3 mitogen-activated protein kinase kinase kinase 3 protein-coding 69 0.008226
-4216 MAP3K4 mitogen-activated protein kinase kinase kinase 4 protein-coding 200 0.02384
-4217 MAP3K5 mitogen-activated protein kinase kinase kinase 5 protein-coding 152 0.01812
-4218 RAB8A RAB8A, member RAS oncogene family protein-coding 35 0.004173
-4221 MEN1 menin 1 protein-coding 194 0.02313
-4222 MEOX1 mesenchyme homeobox 1 protein-coding 37 0.004411
-4223 MEOX2 mesenchyme homeobox 2 protein-coding 69 0.008226
-4224 MEP1A meprin A subunit alpha protein-coding 119 0.01419
-4225 MEP1B meprin A subunit beta protein-coding 77 0.00918
-4232 MEST mesoderm specific transcript protein-coding 34 0.004053
-4233 MET MET proto-oncogene, receptor tyrosine kinase protein-coding 181 0.02158
-4234 METTL1 methyltransferase like 1 protein-coding 28 0.003338
-4236 MFAP1 microfibril associated protein 1 protein-coding 63 0.007511
-4237 MFAP2 microfibril associated protein 2 protein-coding 18 0.002146
-4238 MFAP3 microfibril associated protein 3 protein-coding 30 0.003577
-4239 MFAP4 microfibril associated protein 4 protein-coding 30 0.003577
-4240 MFGE8 milk fat globule-EGF factor 8 protein protein-coding 61 0.007272
-4241 MELTF melanotransferrin protein-coding 172 0.02051
-4242 MFNG MFNG O-fucosylpeptide 3-beta-N-acetylglucosaminyltransferase protein-coding 25 0.00298
-4245 MGAT1 mannosyl (alpha-1,3-)-glycoprotein beta-1,2-N-acetylglucosaminyltransferase protein-coding 55 0.006557
-4246 SCGB2A1 secretoglobin family 2A member 1 protein-coding 15 0.001788
-4247 MGAT2 mannosyl (alpha-1,6-)-glycoprotein beta-1,2-N-acetylglucosaminyltransferase protein-coding 43 0.005126
-4248 MGAT3 mannosyl (beta-1,4-)-glycoprotein beta-1,4-N-acetylglucosaminyltransferase protein-coding 98 0.01168
-4249 MGAT5 mannosyl (alpha-1,6-)-glycoprotein beta-1,6-N-acetyl-glucosaminyltransferase protein-coding 97 0.01156
-4250 SCGB2A2 secretoglobin family 2A member 2 protein-coding 13 0.00155
-4253 MIA2 melanoma inhibitory activity 2 protein-coding 186 0.02217
-4254 KITLG KIT ligand protein-coding 48 0.005722
-4255 MGMT O-6-methylguanine-DNA methyltransferase protein-coding 26 0.0031
-4256 MGP matrix Gla protein protein-coding 22 0.002623
-4257 MGST1 microsomal glutathione S-transferase 1 protein-coding 27 0.003219
-4258 MGST2 microsomal glutathione S-transferase 2 protein-coding 18 0.002146
-4259 MGST3 microsomal glutathione S-transferase 3 protein-coding 17 0.002027
-4261 CIITA class II major histocompatibility complex transactivator protein-coding 139 0.01657
-4267 CD99 CD99 molecule (Xg blood group) protein-coding 22 0.002623
-4277 MICB MHC class I polypeptide-related sequence B protein-coding 37 0.004411
-4281 MID1 midline 1 protein-coding 90 0.01073
-4282 MIF macrophage migration inhibitory factor protein-coding 68 0.008107
-4283 CXCL9 C-X-C motif chemokine ligand 9 protein-coding 37 0.004411
-4284 MIP major intrinsic protein of lens fiber protein-coding 43 0.005126
-4285 MIPEP mitochondrial intermediate peptidase protein-coding 112 0.01335
-4286 MITF melanogenesis associated transcription factor protein-coding 79 0.009418
-4287 ATXN3 ataxin 3 protein-coding 48 0.005722
-4288 MKI67 marker of proliferation Ki-67 protein-coding 361 0.04304
-4289 MKLN1 muskelin 1 protein-coding 74 0.008822
-4291 MLF1 myeloid leukemia factor 1 protein-coding 43 0.005126
-4292 MLH1 mutL homolog 1 protein-coding 109 0.01299
-4293 MAP3K9 mitogen-activated protein kinase kinase kinase 9 protein-coding 130 0.0155
-4294 MAP3K10 mitogen-activated protein kinase kinase kinase 10 protein-coding 90 0.01073
-4295 MLN motilin protein-coding 19 0.002265
-4296 MAP3K11 mitogen-activated protein kinase kinase kinase 11 protein-coding 83 0.009895
-4297 KMT2A lysine methyltransferase 2A protein-coding 347 0.04137
-4298 MLLT1 MLLT1, super elongation complex subunit protein-coding 66 0.007868
-4299 AFF1 AF4/FMR2 family member 1 protein-coding 141 0.01681
-4300 MLLT3 MLLT3, super elongation complex subunit protein-coding 60 0.007153
-4301 AFDN afadin, adherens junction formation factor protein-coding 196 0.02337
-4302 MLLT6 MLLT6, PHD finger containing protein-coding 97 0.01156
-4303 FOXO4 forkhead box O4 protein-coding 70 0.008345
-4306 NR3C2 nuclear receptor subfamily 3 group C member 2 protein-coding 123 0.01466
-4308 TRPM1 transient receptor potential cation channel subfamily M member 1 protein-coding 212 0.02527
-4311 MME membrane metalloendopeptidase protein-coding 149 0.01776
-4312 MMP1 matrix metallopeptidase 1 protein-coding 112 0.01335
-4313 MMP2 matrix metallopeptidase 2 protein-coding 106 0.01264
-4314 MMP3 matrix metallopeptidase 3 protein-coding 76 0.009061
-4316 MMP7 matrix metallopeptidase 7 protein-coding 33 0.003934
-4317 MMP8 matrix metallopeptidase 8 protein-coding 67 0.007988
-4318 MMP9 matrix metallopeptidase 9 protein-coding 113 0.01347
-4319 MMP10 matrix metallopeptidase 10 protein-coding 82 0.009776
-4320 MMP11 matrix metallopeptidase 11 protein-coding 49 0.005842
-4321 MMP12 matrix metallopeptidase 12 protein-coding 248 0.02957
-4322 MMP13 matrix metallopeptidase 13 protein-coding 79 0.009418
-4323 MMP14 matrix metallopeptidase 14 protein-coding 61 0.007272
-4324 MMP15 matrix metallopeptidase 15 protein-coding 69 0.008226
-4325 MMP16 matrix metallopeptidase 16 protein-coding 210 0.02504
-4326 MMP17 matrix metallopeptidase 17 protein-coding 81 0.009657
-4327 MMP19 matrix metallopeptidase 19 protein-coding 72 0.008584
-4329 ALDH6A1 aldehyde dehydrogenase 6 family member A1 protein-coding 46 0.005484
-4330 MN1 MN1 proto-oncogene, transcriptional regulator protein-coding 138 0.01645
-4331 MNAT1 MNAT1, CDK activating kinase assembly factor protein-coding 29 0.003457
-4332 MNDA myeloid cell nuclear differentiation antigen protein-coding 127 0.01514
-4335 MNT MAX network transcriptional repressor protein-coding 45 0.005365
-4336 MOBP myelin-associated oligodendrocyte basic protein protein-coding 7 0.0008345
-4337 MOCS1 molybdenum cofactor synthesis 1 protein-coding 58 0.006915
-4338 MOCS2 molybdenum cofactor synthesis 2 protein-coding 26 0.0031
-4340 MOG myelin oligodendrocyte glycoprotein protein-coding 49 0.005842
-4342 MOS MOS proto-oncogene, serine/threonine kinase protein-coding 79 0.009418
-4343 MOV10 Mov10 RISC complex RNA helicase protein-coding 89 0.01061
-4345 CD200 CD200 molecule protein-coding 38 0.00453
-4350 MPG N-methylpurine DNA glycosylase protein-coding 37 0.004411
-4351 MPI mannose phosphate isomerase protein-coding 35 0.004173
-4352 MPL MPL proto-oncogene, thrombopoietin receptor protein-coding 59 0.007034
-4353 MPO myeloperoxidase protein-coding 127 0.01514
-4354 MPP1 membrane palmitoylated protein 1 protein-coding 64 0.00763
-4355 MPP2 membrane palmitoylated protein 2 protein-coding 253 0.03016
-4356 MPP3 membrane palmitoylated protein 3 protein-coding 125 0.0149
-4357 MPST mercaptopyruvate sulfurtransferase protein-coding 21 0.002504
-4358 MPV17 MPV17, mitochondrial inner membrane protein protein-coding 22 0.002623
-4359 MPZ myelin protein zero protein-coding 115 0.01371
-4360 MRC1 mannose receptor C-type 1 protein-coding 106 0.01264
-4361 MRE11 MRE11 homolog, double strand break repair nuclease protein-coding 84 0.01001
-4363 ABCC1 ATP binding cassette subfamily C member 1 protein-coding 157 0.01872
-4430 MYO1B myosin IB protein-coding 118 0.01407
-4435 CITED1 Cbp/p300 interacting transactivator with Glu/Asp rich carboxy-terminal domain 1 protein-coding 29 0.003457
-4436 MSH2 mutS homolog 2 protein-coding 116 0.01383
-4437 MSH3 mutS homolog 3 protein-coding 122 0.01454
-4438 MSH4 mutS homolog 4 protein-coding 152 0.01812
-4439 MSH5 mutS homolog 5 protein-coding 82 0.009776
-4440 MSI1 musashi RNA binding protein 1 protein-coding 41 0.004888
-4477 MSMB microseminoprotein beta protein-coding 19 0.002265
-4478 MSN moesin protein-coding 102 0.01216
-4481 MSR1 macrophage scavenger receptor 1 protein-coding 114 0.01359
-4482 MSRA methionine sulfoxide reductase A protein-coding 34 0.004053
-4485 MST1 macrophage stimulating 1 protein-coding 74 0.008822
-4486 MST1R macrophage stimulating 1 receptor protein-coding 132 0.01574
-4487 MSX1 msh homeobox 1 protein-coding 36 0.004292
-4488 MSX2 msh homeobox 2 protein-coding 28 0.003338
-4489 MT1A metallothionein 1A protein-coding 7 0.0008345
-4490 MT1B metallothionein 1B protein-coding 5 0.0005961
-4493 MT1E metallothionein 1E protein-coding 5 0.0005961
-4494 MT1F metallothionein 1F protein-coding 1 0.0001192
-4495 MT1G metallothionein 1G protein-coding 8 0.0009537
-4496 MT1H metallothionein 1H protein-coding 15 0.001788
-4499 MT1M metallothionein 1M protein-coding 9 0.001073
-4500 MT1L metallothionein 1L, pseudogene pseudo 14 0.001669
-4501 MT1X metallothionein 1X protein-coding 2 0.0002384
-4502 MT2A metallothionein 2A protein-coding 7 0.0008345
-4504 MT3 metallothionein 3 protein-coding 72 0.008584
-4507 MTAP methylthioadenosine phosphorylase protein-coding 33 0.003934
-4515 MTCP1 mature T cell proliferation 1 protein-coding 10 0.001192
-4520 MTF1 metal regulatory transcription factor 1 protein-coding 92 0.01097
-4521 NUDT1 nudix hydrolase 1 protein-coding 29 0.003457
-4522 MTHFD1 methylenetetrahydrofolate dehydrogenase, cyclohydrolase and formyltetrahydrofolate synthetase 1 protein-coding 73 0.008703
-4524 MTHFR methylenetetrahydrofolate reductase protein-coding 77 0.00918
-4528 MTIF2 mitochondrial translational initiation factor 2 protein-coding 94 0.01121
-4534 MTM1 myotubularin 1 protein-coding 101 0.01204
-4542 MYO1F myosin IF protein-coding 176 0.02098
-4543 MTNR1A melatonin receptor 1A protein-coding 60 0.007153
-4544 MTNR1B melatonin receptor 1B protein-coding 88 0.01049
-4547 MTTP microsomal triglyceride transfer protein protein-coding 130 0.0155
-4548 MTR 5-methyltetrahydrofolate-homocysteine methyltransferase protein-coding 140 0.01669
-4552 MTRR 5-methyltetrahydrofolate-homocysteine methyltransferase reductase protein-coding 93 0.01109
-4571 TRNP tRNA tRNA 130 0.0155
-4580 MTX1 metaxin 1 protein-coding 25 0.00298
-4582 MUC1 mucin 1, cell surface associated protein-coding 57 0.006795
-4583 MUC2 mucin 2, oligomeric mucus/gel-forming protein-coding 265 0.03159
-4584 MUC3A mucin 3A, cell surface associated protein-coding 142 0.01693
-4585 MUC4 mucin 4, cell surface associated protein-coding 376 0.04483
-4586 MUC5AC mucin 5AC, oligomeric mucus/gel-forming protein-coding 230 0.02742
-4588 MUC6 mucin 6, oligomeric mucus/gel-forming protein-coding 259 0.03088
-4589 MUC7 mucin 7, secreted protein-coding 96 0.01144
-4591 TRIM37 tripartite motif containing 37 protein-coding 119 0.01419
-4593 MUSK muscle associated receptor tyrosine kinase protein-coding 136 0.01621
-4594 MUT methylmalonyl-CoA mutase protein-coding 103 0.01228
-4595 MUTYH mutY DNA glycosylase protein-coding 61 0.007272
-4597 MVD mevalonate diphosphate decarboxylase protein-coding 39 0.004649
-4598 MVK mevalonate kinase protein-coding 64 0.00763
-4599 MX1 MX dynamin like GTPase 1 protein-coding 63 0.007511
-4600 MX2 MX dynamin like GTPase 2 protein-coding 81 0.009657
-4601 MXI1 MAX interactor 1, dimerization protein protein-coding 30 0.003577
-4602 MYB MYB proto-oncogene, transcription factor protein-coding 91 0.01085
-4603 MYBL1 MYB proto-oncogene like 1 protein-coding 81 0.009657
-4604 MYBPC1 myosin binding protein C, slow type protein-coding 157 0.01872
-4605 MYBL2 MYB proto-oncogene like 2 protein-coding 81 0.009657
-4606 MYBPC2 myosin binding protein C, fast type protein-coding 141 0.01681
-4607 MYBPC3 myosin binding protein C, cardiac protein-coding 143 0.01705
-4608 MYBPH myosin binding protein H protein-coding 63 0.007511
-4609 MYC MYC proto-oncogene, bHLH transcription factor protein-coding 65 0.007749
-4610 MYCL MYCL proto-oncogene, bHLH transcription factor protein-coding 43 0.005126
-4613 MYCN MYCN proto-oncogene, bHLH transcription factor protein-coding 65 0.007749
-4615 MYD88 myeloid differentiation primary response 88 protein-coding 35 0.004173
-4616 GADD45B growth arrest and DNA damage inducible beta protein-coding 5 0.0005961
-4617 MYF5 myogenic factor 5 protein-coding 84 0.01001
-4618 MYF6 myogenic factor 6 protein-coding 81 0.009657
-4619 MYH1 myosin heavy chain 1 protein-coding 347 0.04137
-4620 MYH2 myosin heavy chain 2 protein-coding 397 0.04733
-4621 MYH3 myosin heavy chain 3 protein-coding 231 0.02754
-4622 MYH4 myosin heavy chain 4 protein-coding 305 0.03636
-4624 MYH6 myosin heavy chain 6 protein-coding 286 0.0341
-4625 MYH7 myosin heavy chain 7 protein-coding 348 0.04149
-4626 MYH8 myosin heavy chain 8 protein-coding 346 0.04125
-4627 MYH9 myosin heavy chain 9 protein-coding 257 0.03064
-4628 MYH10 myosin heavy chain 10 protein-coding 204 0.02432
-4629 MYH11 myosin heavy chain 11 protein-coding 226 0.02694
-4632 MYL1 myosin light chain 1 protein-coding 34 0.004053
-4633 MYL2 myosin light chain 2 protein-coding 42 0.005007
-4634 MYL3 myosin light chain 3 protein-coding 17 0.002027
-4635 MYL4 myosin light chain 4 protein-coding 20 0.002384
-4636 MYL5 myosin light chain 5 protein-coding 21 0.002504
-4637 MYL6 myosin light chain 6 protein-coding 15 0.001788
-4638 MYLK myosin light chain kinase protein-coding 210 0.02504
-4640 MYO1A myosin IA protein-coding 119 0.01419
-4641 MYO1C myosin IC protein-coding 130 0.0155
-4642 MYO1D myosin ID protein-coding 111 0.01323
-4643 MYO1E myosin IE protein-coding 198 0.02361
-4644 MYO5A myosin VA protein-coding 182 0.0217
-4645 MYO5B myosin VB protein-coding 151 0.018
-4646 MYO6 myosin VI protein-coding 147 0.01753
-4647 MYO7A myosin VIIA protein-coding 237 0.02825
-4648 MYO7B myosin VIIB protein-coding 262 0.03124
-4649 MYO9A myosin IXA protein-coding 246 0.02933
-4650 MYO9B myosin IXB protein-coding 182 0.0217
-4651 MYO10 myosin X protein-coding 224 0.0267
-4653 MYOC myocilin protein-coding 73 0.008703
-4654 MYOD1 myogenic differentiation 1 protein-coding 43 0.005126
-4656 MYOG myogenin protein-coding 32 0.003815
-4659 PPP1R12A protein phosphatase 1 regulatory subunit 12A protein-coding 95 0.01133
-4660 PPP1R12B protein phosphatase 1 regulatory subunit 12B protein-coding 107 0.01276
-4661 MYT1 myelin transcription factor 1 protein-coding 251 0.02992
-4664 NAB1 NGFI-A binding protein 1 protein-coding 50 0.005961
-4665 NAB2 NGFI-A binding protein 2 protein-coding 53 0.006319
-4666 NACA nascent polypeptide-associated complex alpha subunit protein-coding 96 0.01144
-4668 NAGA alpha-N-acetylgalactosaminidase protein-coding 41 0.004888
-4669 NAGLU N-acetyl-alpha-glucosaminidase protein-coding 62 0.007392
-4670 HNRNPM heterogeneous nuclear ribonucleoprotein M protein-coding 104 0.0124
-4671 NAIP NLR family apoptosis inhibitory protein protein-coding 34 0.004053
-4673 NAP1L1 nucleosome assembly protein 1 like 1 protein-coding 55 0.006557
-4674 NAP1L2 nucleosome assembly protein 1 like 2 protein-coding 97 0.01156
-4675 NAP1L3 nucleosome assembly protein 1 like 3 protein-coding 104 0.0124
-4676 NAP1L4 nucleosome assembly protein 1 like 4 protein-coding 46 0.005484
-4677 NARS asparaginyl-tRNA synthetase protein-coding 49 0.005842
-4678 NASP nuclear autoantigenic sperm protein protein-coding 75 0.008941
-4680 CEACAM6 carcinoembryonic antigen related cell adhesion molecule 6 protein-coding 32 0.003815
-4681 NBL1 neuroblastoma 1, DAN family BMP antagonist protein-coding 3 0.0003577
-4682 NUBP1 nucleotide binding protein 1 protein-coding 27 0.003219
-4683 NBN nibrin protein-coding 100 0.01192
-4684 NCAM1 neural cell adhesion molecule 1 protein-coding 153 0.01824
-4685 NCAM2 neural cell adhesion molecule 2 protein-coding 233 0.02778
-4686 NCBP1 nuclear cap binding protein subunit 1 protein-coding 82 0.009776
-4688 NCF2 neutrophil cytosolic factor 2 protein-coding 78 0.009299
-4689 NCF4 neutrophil cytosolic factor 4 protein-coding 43 0.005126
-4690 NCK1 NCK adaptor protein 1 protein-coding 50 0.005961
-4691 NCL nucleolin protein-coding 74 0.008822
-4692 NDN necdin, MAGE family member protein-coding 99 0.0118
-4693 NDP NDP, norrin cystine knot growth factor protein-coding 16 0.001907
-4694 NDUFA1 NADH:ubiquinone oxidoreductase subunit A1 protein-coding 12 0.001431
-4695 NDUFA2 NADH:ubiquinone oxidoreductase subunit A2 protein-coding 7 0.0008345
-4696 NDUFA3 NADH:ubiquinone oxidoreductase subunit A3 protein-coding 12 0.001431
-4697 NDUFA4 NDUFA4, mitochondrial complex associated protein-coding 13 0.00155
-4698 NDUFA5 NADH:ubiquinone oxidoreductase subunit A5 protein-coding 15 0.001788
-4700 NDUFA6 NADH:ubiquinone oxidoreductase subunit A6 protein-coding 10 0.001192
-4701 NDUFA7 NADH:ubiquinone oxidoreductase subunit A7 protein-coding 17 0.002027
-4702 NDUFA8 NADH:ubiquinone oxidoreductase subunit A8 protein-coding 27 0.003219
-4703 NEB nebulin protein-coding 597 0.07117
-4704 NDUFA9 NADH:ubiquinone oxidoreductase subunit A9 protein-coding 53 0.006319
-4705 NDUFA10 NADH:ubiquinone oxidoreductase subunit A10 protein-coding 46 0.005484
-4706 NDUFAB1 NADH:ubiquinone oxidoreductase subunit AB1 protein-coding 40 0.004769
-4707 NDUFB1 NADH:ubiquinone oxidoreductase subunit B1 protein-coding 11 0.001311
-4708 NDUFB2 NADH:ubiquinone oxidoreductase subunit B2 protein-coding 10 0.001192
-4709 NDUFB3 NADH:ubiquinone oxidoreductase subunit B3 protein-coding 11 0.001311
-4710 NDUFB4 NADH:ubiquinone oxidoreductase subunit B4 protein-coding 14 0.001669
-4711 NDUFB5 NADH:ubiquinone oxidoreductase subunit B5 protein-coding 28 0.003338
-4712 NDUFB6 NADH:ubiquinone oxidoreductase subunit B6 protein-coding 18 0.002146
-4713 NDUFB7 NADH:ubiquinone oxidoreductase subunit B7 protein-coding 19 0.002265
-4714 NDUFB8 NADH:ubiquinone oxidoreductase subunit B8 protein-coding 22 0.002623
-4715 NDUFB9 NADH:ubiquinone oxidoreductase subunit B9 protein-coding 20 0.002384
-4716 NDUFB10 NADH:ubiquinone oxidoreductase subunit B10 protein-coding 25 0.00298
-4717 NDUFC1 NADH:ubiquinone oxidoreductase subunit C1 protein-coding 4 0.0004769
-4718 NDUFC2 NADH:ubiquinone oxidoreductase subunit C2 protein-coding 12 0.001431
-4719 NDUFS1 NADH:ubiquinone oxidoreductase core subunit S1 protein-coding 85 0.01013
-4720 NDUFS2 NADH:ubiquinone oxidoreductase core subunit S2 protein-coding 55 0.006557
-4722 NDUFS3 NADH:ubiquinone oxidoreductase core subunit S3 protein-coding 30 0.003577
-4723 NDUFV1 NADH:ubiquinone oxidoreductase core subunit V1 protein-coding 54 0.006438
-4724 NDUFS4 NADH:ubiquinone oxidoreductase subunit S4 protein-coding 23 0.002742
-4725 NDUFS5 NADH:ubiquinone oxidoreductase subunit S5 protein-coding 18 0.002146
-4726 NDUFS6 NADH:ubiquinone oxidoreductase subunit S6 protein-coding 24 0.002861
-4728 NDUFS8 NADH:ubiquinone oxidoreductase core subunit S8 protein-coding 21 0.002504
-4729 NDUFV2 NADH:ubiquinone oxidoreductase core subunit V2 protein-coding 27 0.003219
-4731 NDUFV3 NADH:ubiquinone oxidoreductase subunit V3 protein-coding 51 0.00608
-4733 DRG1 developmentally regulated GTP binding protein 1 protein-coding 35 0.004173
-4734 NEDD4 neural precursor cell expressed, developmentally down-regulated 4, E3 ubiquitin protein ligase protein-coding 153 0.01824
-4735 SEPT2 septin 2 protein-coding 49 0.005842
-4736 RPL10A ribosomal protein L10a protein-coding 32 0.003815
-4738 NEDD8 neural precursor cell expressed, developmentally down-regulated 8 protein-coding 5 0.0005961
-4739 NEDD9 neural precursor cell expressed, developmentally down-regulated 9 protein-coding 91 0.01085
-4741 NEFM neurofilament medium protein-coding 128 0.01526
-4744 NEFH neurofilament heavy protein-coding 81 0.009657
-4745 NELL1 neural EGFL like 1 protein-coding 301 0.03588
-4747 NEFL neurofilament light protein-coding 4 0.0004769
-4750 NEK1 NIMA related kinase 1 protein-coding 106 0.01264
-4751 NEK2 NIMA related kinase 2 protein-coding 58 0.006915
-4752 NEK3 NIMA related kinase 3 protein-coding 45 0.005365
-4753 NELL2 neural EGFL like 2 protein-coding 251 0.02992
-4756 NEO1 neogenin 1 protein-coding 155 0.01848
-4758 NEU1 neuraminidase 1 protein-coding 37 0.004411
-4759 NEU2 neuraminidase 2 protein-coding 65 0.007749
-4760 NEUROD1 neuronal differentiation 1 protein-coding 73 0.008703
-4761 NEUROD2 neuronal differentiation 2 protein-coding 27 0.003219
-4762 NEUROG1 neurogenin 1 protein-coding 29 0.003457
-4763 NF1 neurofibromin 1 protein-coding 446 0.05317
-4771 NF2 neurofibromin 2 protein-coding 126 0.01502
-4772 NFATC1 nuclear factor of activated T cells 1 protein-coding 129 0.01538
-4773 NFATC2 nuclear factor of activated T cells 2 protein-coding 169 0.02015
-4774 NFIA nuclear factor I A protein-coding 66 0.007868
-4775 NFATC3 nuclear factor of activated T cells 3 protein-coding 93 0.01109
-4776 NFATC4 nuclear factor of activated T cells 4 protein-coding 118 0.01407
-4778 NFE2 nuclear factor, erythroid 2 protein-coding 52 0.006199
-4779 NFE2L1 nuclear factor, erythroid 2 like 1 protein-coding 122 0.01454
-4780 NFE2L2 nuclear factor, erythroid 2 like 2 protein-coding 254 0.03028
-4781 NFIB nuclear factor I B protein-coding 68 0.008107
-4782 NFIC nuclear factor I C protein-coding 58 0.006915
-4783 NFIL3 nuclear factor, interleukin 3 regulated protein-coding 53 0.006319
-4784 NFIX nuclear factor I X protein-coding 39 0.004649
-4790 NFKB1 nuclear factor kappa B subunit 1 protein-coding 81 0.009657
-4791 NFKB2 nuclear factor kappa B subunit 2 protein-coding 73 0.008703
-4792 NFKBIA NFKB inhibitor alpha protein-coding 44 0.005246
-4793 NFKBIB NFKB inhibitor beta protein-coding 39 0.004649
-4794 NFKBIE NFKB inhibitor epsilon protein-coding 37 0.004411
-4795 NFKBIL1 NFKB inhibitor like 1 protein-coding 33 0.003934
-4796 TONSL tonsoku like, DNA repair protein protein-coding 118 0.01407
-4798 NFRKB nuclear factor related to kappaB binding protein protein-coding 103 0.01228
-4799 NFX1 nuclear transcription factor, X-box binding 1 protein-coding 85 0.01013
-4800 NFYA nuclear transcription factor Y subunit alpha protein-coding 35 0.004173
-4801 NFYB nuclear transcription factor Y subunit beta protein-coding 17 0.002027
-4802 NFYC nuclear transcription factor Y subunit gamma protein-coding 32 0.003815
-4803 NGF nerve growth factor protein-coding 50 0.005961
-4804 NGFR nerve growth factor receptor protein-coding 46 0.005484
-4807 NHLH1 nescient helix-loop-helix 1 protein-coding 24 0.002861
-4808 NHLH2 nescient helix-loop-helix 2 protein-coding 18 0.002146
-4809 SNU13 small nuclear ribonucleoprotein 13 protein-coding 15 0.001788
-4810 NHS NHS actin remodeling regulator protein-coding 197 0.02349
-4811 NID1 nidogen 1 protein-coding 192 0.02289
-4814 NINJ1 ninjurin 1 protein-coding 17 0.002027
-4815 NINJ2 ninjurin 2 protein-coding 17 0.002027
-4817 NIT1 nitrilase 1 protein-coding 38 0.00453
-4818 NKG7 natural killer cell granule protein 7 protein-coding 25 0.00298
-4820 NKTR natural killer cell triggering receptor protein-coding 127 0.01514
-4821 NKX2-2 NK2 homeobox 2 protein-coding 79 0.009418
-4824 NKX3-1 NK3 homeobox 1 protein-coding 32 0.003815
-4825 NKX6-1 NK6 homeobox 1 protein-coding 40 0.004769
-4826 NNAT neuronatin protein-coding 11 0.001311
-4828 NMB neuromedin B protein-coding 10 0.001192
-4829 NMBR neuromedin B receptor protein-coding 73 0.008703
-4830 NME1 NME/NM23 nucleoside diphosphate kinase 1 protein-coding 18 0.002146
-4832 NME3 NME/NM23 nucleoside diphosphate kinase 3 protein-coding 6 0.0007153
-4833 NME4 NME/NM23 nucleoside diphosphate kinase 4 protein-coding 13 0.00155
-4835 NQO2 N-ribosyldihydronicotinamide:quinone reductase 2 protein-coding 27 0.003219
-4836 NMT1 N-myristoyltransferase 1 protein-coding 57 0.006795
-4837 NNMT nicotinamide N-methyltransferase protein-coding 43 0.005126
-4838 NODAL nodal growth differentiation factor protein-coding 32 0.003815
-4839 NOP2 NOP2 nucleolar protein protein-coding 87 0.01037
-4841 NONO non-POU domain containing octamer binding protein-coding 84 0.01001
-4842 NOS1 nitric oxide synthase 1 protein-coding 266 0.03171
-4843 NOS2 nitric oxide synthase 2 protein-coding 163 0.01943
-4846 NOS3 nitric oxide synthase 3 protein-coding 161 0.01919
-4848 CNOT2 CCR4-NOT transcription complex subunit 2 protein-coding 70 0.008345
-4849 CNOT3 CCR4-NOT transcription complex subunit 3 protein-coding 103 0.01228
-4850 CNOT4 CCR4-NOT transcription complex subunit 4 protein-coding 89 0.01061
-4851 NOTCH1 notch 1 protein-coding 371 0.04423
-4852 NPY neuropeptide Y protein-coding 24 0.002861
-4853 NOTCH2 notch 2 protein-coding 234 0.0279
-4854 NOTCH3 notch 3 protein-coding 241 0.02873
-4855 NOTCH4 notch 4 protein-coding 225 0.02682
-4856 NOV nephroblastoma overexpressed protein-coding 50 0.005961
-4857 NOVA1 NOVA alternative splicing regulator 1 protein-coding 143 0.01705
-4858 NOVA2 NOVA alternative splicing regulator 2 protein-coding 40 0.004769
-4860 PNP purine nucleoside phosphorylase protein-coding 36 0.004292
-4861 NPAS1 neuronal PAS domain protein 1 protein-coding 38 0.00453
-4862 NPAS2 neuronal PAS domain protein 2 protein-coding 99 0.0118
-4863 NPAT nuclear protein, coactivator of histone transcription protein-coding 141 0.01681
-4864 NPC1 NPC intracellular cholesterol transporter 1 protein-coding 121 0.01443
-4867 NPHP1 nephrocystin 1 protein-coding 103 0.01228
-4868 NPHS1 NPHS1, nephrin protein-coding 161 0.01919
-4869 NPM1 nucleophosmin 1 protein-coding 25 0.00298
-4878 NPPA natriuretic peptide A protein-coding 22 0.002623
-4879 NPPB natriuretic peptide B protein-coding 19 0.002265
-4880 NPPC natriuretic peptide C protein-coding 45 0.005365
-4881 NPR1 natriuretic peptide receptor 1 protein-coding 107 0.01276
-4882 NPR2 natriuretic peptide receptor 2 protein-coding 114 0.01359
-4883 NPR3 natriuretic peptide receptor 3 protein-coding 88 0.01049
-4884 NPTX1 neuronal pentraxin 1 protein-coding 51 0.00608
-4885 NPTX2 neuronal pentraxin 2 protein-coding 66 0.007868
-4886 NPY1R neuropeptide Y receptor Y1 protein-coding 90 0.01073
-4887 NPY2R neuropeptide Y receptor Y2 protein-coding 88 0.01049
-4888 NPY6R neuropeptide Y receptor Y6 (pseudogene) pseudo 20 0.002384
-4889 NPY5R neuropeptide Y receptor Y5 protein-coding 104 0.0124
-4891 SLC11A2 solute carrier family 11 member 2 protein-coding 55 0.006557
-4892 NRAP nebulin related anchoring protein protein-coding 227 0.02706
-4893 NRAS NRAS proto-oncogene, GTPase protein-coding 149 0.01776
-4897 NRCAM neuronal cell adhesion molecule protein-coding 189 0.02253
-4898 NRDC nardilysin convertase protein-coding 149 0.01776
-4899 NRF1 nuclear respiratory factor 1 protein-coding 54 0.006438
-4900 NRGN neurogranin protein-coding 8 0.0009537
-4901 NRL neural retina leucine zipper protein-coding 17 0.002027
-4902 NRTN neurturin protein-coding 8 0.0009537
-4904 YBX1 Y-box binding protein 1 protein-coding 35 0.004173
-4905 NSF N-ethylmaleimide sensitive factor, vesicle fusing ATPase protein-coding 52 0.006199
-4907 NT5E 5'-nucleotidase ecto protein-coding 52 0.006199
-4908 NTF3 neurotrophin 3 protein-coding 42 0.005007
-4909 NTF4 neurotrophin 4 protein-coding 24 0.002861
-4913 NTHL1 nth like DNA glycosylase 1 protein-coding 45 0.005365
-4914 NTRK1 neurotrophic receptor tyrosine kinase 1 protein-coding 118 0.01407
-4915 NTRK2 neurotrophic receptor tyrosine kinase 2 protein-coding 126 0.01502
-4916 NTRK3 neurotrophic receptor tyrosine kinase 3 protein-coding 200 0.02384
-4917 NTN3 netrin 3 protein-coding 35 0.004173
-4919 ROR1 receptor tyrosine kinase like orphan receptor 1 protein-coding 115 0.01371
-4920 ROR2 receptor tyrosine kinase like orphan receptor 2 protein-coding 158 0.01884
-4921 DDR2 discoidin domain receptor tyrosine kinase 2 protein-coding 181 0.02158
-4922 NTS neurotensin protein-coding 33 0.003934
-4923 NTSR1 neurotensin receptor 1 protein-coding 70 0.008345
-4924 NUCB1 nucleobindin 1 protein-coding 48 0.005722
-4925 NUCB2 nucleobindin 2 protein-coding 38 0.00453
-4926 NUMA1 nuclear mitotic apparatus protein 1 protein-coding 189 0.02253
-4927 NUP88 nucleoporin 88 protein-coding 72 0.008584
-4928 NUP98 nucleoporin 98 protein-coding 168 0.02003
-4929 NR4A2 nuclear receptor subfamily 4 group A member 2 protein-coding 105 0.01252
-4931 NVL nuclear VCP-like protein-coding 89 0.01061
-4935 GPR143 G protein-coupled receptor 143 protein-coding 48 0.005722
-4938 OAS1 2'-5'-oligoadenylate synthetase 1 protein-coding 50 0.005961
-4939 OAS2 2'-5'-oligoadenylate synthetase 2 protein-coding 117 0.01395
-4940 OAS3 2'-5'-oligoadenylate synthetase 3 protein-coding 99 0.0118
-4942 OAT ornithine aminotransferase protein-coding 44 0.005246
-4943 TBC1D25 TBC1 domain family member 25 protein-coding 96 0.01144
-4946 OAZ1 ornithine decarboxylase antizyme 1 protein-coding 27 0.003219
-4947 OAZ2 ornithine decarboxylase antizyme 2 protein-coding 18 0.002146
-4948 OCA2 OCA2 melanosomal transmembrane protein protein-coding 182 0.0217
-4951 OCM2 oncomodulin 2 protein-coding 24 0.002861
-4952 OCRL OCRL, inositol polyphosphate-5-phosphatase protein-coding 224 0.0267
-4953 ODC1 ornithine decarboxylase 1 protein-coding 47 0.005603
-4956 ODF1 outer dense fiber of sperm tails 1 protein-coding 136 0.01621
-4957 ODF2 outer dense fiber of sperm tails 2 protein-coding 95 0.01133
-4958 OMD osteomodulin protein-coding 54 0.006438
-4967 OGDH oxoglutarate dehydrogenase protein-coding 121 0.01443
-4968 OGG1 8-oxoguanine DNA glycosylase protein-coding 39 0.004649
-4969 OGN osteoglycin protein-coding 42 0.005007
-4973 OLR1 oxidized low density lipoprotein receptor 1 protein-coding 39 0.004649
-4974 OMG oligodendrocyte myelin glycoprotein protein-coding 31 0.003696
-4975 OMP olfactory marker protein protein-coding 29 0.003457
-4976 OPA1 OPA1, mitochondrial dynamin like GTPase protein-coding 105 0.01252
-4978 OPCML opioid binding protein/cell adhesion molecule like protein-coding 119 0.01419
-4982 TNFRSF11B TNF receptor superfamily member 11b protein-coding 64 0.00763
-4983 OPHN1 oligophrenin 1 protein-coding 106 0.01264
-4985 OPRD1 opioid receptor delta 1 protein-coding 62 0.007392
-4986 OPRK1 opioid receptor kappa 1 protein-coding 88 0.01049
-4987 OPRL1 opioid related nociceptin receptor 1 protein-coding 77 0.00918
-4988 OPRM1 opioid receptor mu 1 protein-coding 98 0.01168
-4990 SIX6 SIX homeobox 6 protein-coding 39 0.004649
-4991 OR1D2 olfactory receptor family 1 subfamily D member 2 protein-coding 47 0.005603
-4992 OR1F1 olfactory receptor family 1 subfamily F member 1 protein-coding 39 0.004649
-4993 OR2C1 olfactory receptor family 2 subfamily C member 1 protein-coding 43 0.005126
-4994 OR3A1 olfactory receptor family 3 subfamily A member 1 protein-coding 54 0.006438
-4995 OR3A2 olfactory receptor family 3 subfamily A member 2 protein-coding 43 0.005126
-4998 ORC1 origin recognition complex subunit 1 protein-coding 88 0.01049
-4999 ORC2 origin recognition complex subunit 2 protein-coding 74 0.008822
-5000 ORC4 origin recognition complex subunit 4 protein-coding 46 0.005484
-5001 ORC5 origin recognition complex subunit 5 protein-coding 53 0.006319
-5002 SLC22A18 solute carrier family 22 member 18 protein-coding 34 0.004053
-5003 SLC22A18AS solute carrier family 22 member 18 antisense protein-coding 20 0.002384
-5004 ORM1 orosomucoid 1 protein-coding 34 0.004053
-5005 ORM2 orosomucoid 2 protein-coding 31 0.003696
-5007 OSBP oxysterol binding protein protein-coding 77 0.00918
-5008 OSM oncostatin M protein-coding 33 0.003934
-5009 OTC ornithine carbamoyltransferase protein-coding 62 0.007392
-5010 CLDN11 claudin 11 protein-coding 27 0.003219
-5013 OTX1 orthodenticle homeobox 1 protein-coding 49 0.005842
-5015 OTX2 orthodenticle homeobox 2 protein-coding 73 0.008703
-5016 OVGP1 oviductal glycoprotein 1 protein-coding 82 0.009776
-5017 OVOL1 ovo like transcriptional repressor 1 protein-coding 30 0.003577
-5018 OXA1L OXA1L, mitochondrial inner membrane protein protein-coding 45 0.005365
-5019 OXCT1 3-oxoacid CoA-transferase 1 protein-coding 76 0.009061
-5020 OXT oxytocin/neurophysin I prepropeptide protein-coding 8 0.0009537
-5021 OXTR oxytocin receptor protein-coding 33 0.003934
-5023 P2RX1 purinergic receptor P2X 1 protein-coding 54 0.006438
-5024 P2RX3 purinergic receptor P2X 3 protein-coding 53 0.006319
-5025 P2RX4 purinergic receptor P2X 4 protein-coding 38 0.00453
-5026 P2RX5 purinergic receptor P2X 5 protein-coding 45 0.005365
-5027 P2RX7 purinergic receptor P2X 7 protein-coding 47 0.005603
-5028 P2RY1 purinergic receptor P2Y1 protein-coding 52 0.006199
-5029 P2RY2 purinergic receptor P2Y2 protein-coding 47 0.005603
-5030 P2RY4 pyrimidinergic receptor P2Y4 protein-coding 54 0.006438
-5031 P2RY6 pyrimidinergic receptor P2Y6 protein-coding 48 0.005722
-5032 P2RY11 purinergic receptor P2Y11 protein-coding 20 0.002384
-5033 P4HA1 prolyl 4-hydroxylase subunit alpha 1 protein-coding 63 0.007511
-5034 P4HB prolyl 4-hydroxylase subunit beta protein-coding 60 0.007153
-5036 PA2G4 proliferation-associated 2G4 protein-coding 42 0.005007
-5037 PEBP1 phosphatidylethanolamine binding protein 1 protein-coding 19 0.002265
-5042 PABPC3 poly(A) binding protein cytoplasmic 3 protein-coding 121 0.01443
-5045 FURIN furin, paired basic amino acid cleaving enzyme protein-coding 94 0.01121
-5046 PCSK6 proprotein convertase subtilisin/kexin type 6 protein-coding 109 0.01299
-5047 PAEP progestagen associated endometrial protein protein-coding 21 0.002504
-5048 PAFAH1B1 platelet activating factor acetylhydrolase 1b regulatory subunit 1 protein-coding 53 0.006319
-5049 PAFAH1B2 platelet activating factor acetylhydrolase 1b catalytic subunit 2 protein-coding 27 0.003219
-5050 PAFAH1B3 platelet activating factor acetylhydrolase 1b catalytic subunit 3 protein-coding 14 0.001669
-5051 PAFAH2 platelet activating factor acetylhydrolase 2 protein-coding 45 0.005365
-5052 PRDX1 peroxiredoxin 1 protein-coding 28 0.003338
-5053 PAH phenylalanine hydroxylase protein-coding 97 0.01156
-5054 SERPINE1 serpin family E member 1 protein-coding 64 0.00763
-5055 SERPINB2 serpin family B member 2 protein-coding 74 0.008822
-5058 PAK1 p21 (RAC1) activated kinase 1 protein-coding 61 0.007272
-5062 PAK2 p21 (RAC1) activated kinase 2 protein-coding 75 0.008941
-5063 PAK3 p21 (RAC1) activated kinase 3 protein-coding 107 0.01276
-5064 PALM paralemmin protein-coding 48 0.005722
-5066 PAM peptidylglycine alpha-amidating monooxygenase protein-coding 98 0.01168
-5067 CNTN3 contactin 3 protein-coding 211 0.02515
-5068 REG3A regenerating family member 3 alpha protein-coding 86 0.01025
-5069 PAPPA pappalysin 1 protein-coding 246 0.02933
-5071 PRKN parkin RBR E3 ubiquitin protein ligase protein-coding 95 0.01133
-5073 PARN poly(A)-specific ribonuclease protein-coding 68 0.008107
-5074 PAWR pro-apoptotic WT1 regulator protein-coding 35 0.004173
-5075 PAX1 paired box 1 protein-coding 110 0.01311
-5076 PAX2 paired box 2 protein-coding 63 0.007511
-5077 PAX3 paired box 3 protein-coding 98 0.01168
-5078 PAX4 paired box 4 protein-coding 78 0.009299
-5079 PAX5 paired box 5 protein-coding 92 0.01097
-5080 PAX6 paired box 6 protein-coding 87 0.01037
-5081 PAX7 paired box 7 protein-coding 88 0.01049
-5082 PDCL phosducin like protein-coding 41 0.004888
-5083 PAX9 paired box 9 protein-coding 49 0.005842
-5087 PBX1 PBX homeobox 1 protein-coding 73 0.008703
-5088 PBX2P1 PBX homeobox 2 pseudogene 1 pseudo 48 0.005722
-5089 PBX2 PBX homeobox 2 protein-coding 48 0.005722
-5090 PBX3 PBX homeobox 3 protein-coding 65 0.007749
-5091 PC pyruvate carboxylase protein-coding 139 0.01657
-5092 PCBD1 pterin-4 alpha-carbinolamine dehydratase 1 protein-coding 6 0.0007153
-5093 PCBP1 poly(rC) binding protein 1 protein-coding 61 0.007272
-5094 PCBP2 poly(rC) binding protein 2 protein-coding 43 0.005126
-5095 PCCA propionyl-CoA carboxylase alpha subunit protein-coding 97 0.01156
-5096 PCCB propionyl-CoA carboxylase beta subunit protein-coding 50 0.005961
-5097 PCDH1 protocadherin 1 protein-coding 140 0.01669
-5098 PCDHGC3 protocadherin gamma subfamily C, 3 protein-coding 96 0.01144
-5099 PCDH7 protocadherin 7 protein-coding 172 0.02051
-5100 PCDH8 protocadherin 8 protein-coding 129 0.01538
-5101 PCDH9 protocadherin 9 protein-coding 260 0.031
-5104 SERPINA5 serpin family A member 5 protein-coding 81 0.009657
-5105 PCK1 phosphoenolpyruvate carboxykinase 1 protein-coding 104 0.0124
-5106 PCK2 phosphoenolpyruvate carboxykinase 2, mitochondrial protein-coding 65 0.007749
-5108 PCM1 pericentriolar material 1 protein-coding 132 0.01574
-5110 PCMT1 protein-L-isoaspartate (D-aspartate) O-methyltransferase protein-coding 22 0.002623
-5111 PCNA proliferating cell nuclear antigen protein-coding 33 0.003934
-5116 PCNT pericentrin protein-coding 294 0.03505
-5118 PCOLCE procollagen C-endopeptidase enhancer protein-coding 49 0.005842
-5119 CHMP1A charged multivesicular body protein 1A protein-coding 19 0.002265
-5121 PCP4 Purkinje cell protein 4 protein-coding 12 0.001431
-5122 PCSK1 proprotein convertase subtilisin/kexin type 1 protein-coding 104 0.0124
-5125 PCSK5 proprotein convertase subtilisin/kexin type 5 protein-coding 192 0.02289
-5126 PCSK2 proprotein convertase subtilisin/kexin type 2 protein-coding 115 0.01371
-5127 CDK16 cyclin dependent kinase 16 protein-coding 48 0.005722
-5128 CDK17 cyclin dependent kinase 17 protein-coding 51 0.00608
-5129 CDK18 cyclin dependent kinase 18 protein-coding 52 0.006199
-5130 PCYT1A phosphate cytidylyltransferase 1, choline, alpha protein-coding 44 0.005246
-5132 PDC phosducin protein-coding 25 0.00298
-5133 PDCD1 programmed cell death 1 protein-coding 47 0.005603
-5134 PDCD2 programmed cell death 2 protein-coding 23 0.002742
-5136 PDE1A phosphodiesterase 1A protein-coding 91 0.01085
-5137 PDE1C phosphodiesterase 1C protein-coding 185 0.02206
-5138 PDE2A phosphodiesterase 2A protein-coding 102 0.01216
-5139 PDE3A phosphodiesterase 3A protein-coding 235 0.02802
-5140 PDE3B phosphodiesterase 3B protein-coding 126 0.01502
-5141 PDE4A phosphodiesterase 4A protein-coding 81 0.009657
-5142 PDE4B phosphodiesterase 4B protein-coding 98 0.01168
-5143 PDE4C phosphodiesterase 4C protein-coding 86 0.01025
-5144 PDE4D phosphodiesterase 4D protein-coding 98 0.01168
-5145 PDE6A phosphodiesterase 6A protein-coding 115 0.01371
-5146 PDE6C phosphodiesterase 6C protein-coding 96 0.01144
-5147 PDE6D phosphodiesterase 6D protein-coding 15 0.001788
-5148 PDE6G phosphodiesterase 6G protein-coding 12 0.001431
-5149 PDE6H phosphodiesterase 6H protein-coding 9 0.001073
-5150 PDE7A phosphodiesterase 7A protein-coding 51 0.00608
-5151 PDE8A phosphodiesterase 8A protein-coding 82 0.009776
-5152 PDE9A phosphodiesterase 9A protein-coding 89 0.01061
-5153 PDE1B phosphodiesterase 1B protein-coding 90 0.01073
-5154 PDGFA platelet derived growth factor subunit A protein-coding 36 0.004292
-5155 PDGFB platelet derived growth factor subunit B protein-coding 33 0.003934
-5156 PDGFRA platelet derived growth factor receptor alpha protein-coding 218 0.02599
-5157 PDGFRL platelet derived growth factor receptor like protein-coding 42 0.005007
-5158 PDE6B phosphodiesterase 6B protein-coding 110 0.01311
-5159 PDGFRB platelet derived growth factor receptor beta protein-coding 127 0.01514
-5160 PDHA1 pyruvate dehydrogenase E1 alpha 1 subunit protein-coding 57 0.006795
-5161 PDHA2 pyruvate dehydrogenase E1 alpha 2 subunit protein-coding 130 0.0155
-5162 PDHB pyruvate dehydrogenase E1 beta subunit protein-coding 25 0.00298
-5163 PDK1 pyruvate dehydrogenase kinase 1 protein-coding 44 0.005246
-5164 PDK2 pyruvate dehydrogenase kinase 2 protein-coding 33 0.003934
-5165 PDK3 pyruvate dehydrogenase kinase 3 protein-coding 59 0.007034
-5166 PDK4 pyruvate dehydrogenase kinase 4 protein-coding 59 0.007034
-5167 ENPP1 ectonucleotide pyrophosphatase/phosphodiesterase 1 protein-coding 124 0.01478
-5168 ENPP2 ectonucleotide pyrophosphatase/phosphodiesterase 2 protein-coding 159 0.01896
-5169 ENPP3 ectonucleotide pyrophosphatase/phosphodiesterase 3 protein-coding 117 0.01395
-5170 PDPK1 3-phosphoinositide dependent protein kinase 1 protein-coding 65 0.007749
-5172 SLC26A4 solute carrier family 26 member 4 protein-coding 124 0.01478
-5173 PDYN prodynorphin protein-coding 103 0.01228
-5174 PDZK1 PDZ domain containing 1 protein-coding 38 0.00453
-5176 SERPINF1 serpin family F member 1 protein-coding 47 0.005603
-5178 PEG3 paternally expressed 3 protein-coding 395 0.04709
-5179 PENK proenkephalin protein-coding 64 0.00763
-5184 PEPD peptidase D protein-coding 49 0.005842
-5187 PER1 period circadian regulator 1 protein-coding 127 0.01514
-5188 GATB glutamyl-tRNA amidotransferase subunit B protein-coding 67 0.007988
-5189 PEX1 peroxisomal biogenesis factor 1 protein-coding 132 0.01574
-5190 PEX6 peroxisomal biogenesis factor 6 protein-coding 62 0.007392
-5191 PEX7 peroxisomal biogenesis factor 7 protein-coding 33 0.003934
-5192 PEX10 peroxisomal biogenesis factor 10 protein-coding 29 0.003457
-5193 PEX12 peroxisomal biogenesis factor 12 protein-coding 49 0.005842
-5194 PEX13 peroxisomal biogenesis factor 13 protein-coding 40 0.004769
-5195 PEX14 peroxisomal biogenesis factor 14 protein-coding 38 0.00453
-5196 PF4 platelet factor 4 protein-coding 14 0.001669
-5197 PF4V1 platelet factor 4 variant 1 protein-coding 18 0.002146
-5198 PFAS phosphoribosylformylglycinamidine synthase protein-coding 120 0.01431
-5199 CFP complement factor properdin protein-coding 62 0.007392
-5201 PFDN1 prefoldin subunit 1 protein-coding 12 0.001431
-5202 PFDN2 prefoldin subunit 2 protein-coding 18 0.002146
-5203 PFDN4 prefoldin subunit 4 protein-coding 21 0.002504
-5204 PFDN5 prefoldin subunit 5 protein-coding 14 0.001669
-5205 ATP8B1 ATPase phospholipid transporting 8B1 protein-coding 138 0.01645
-5207 PFKFB1 6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 1 protein-coding 85 0.01013
-5208 PFKFB2 6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 2 protein-coding 60 0.007153
-5209 PFKFB3 6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 3 protein-coding 55 0.006557
-5210 PFKFB4 6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 4 protein-coding 44 0.005246
-5211 PFKL phosphofructokinase, liver type protein-coding 90 0.01073
-5212 VIT vitrin protein-coding 116 0.01383
-5213 PFKM phosphofructokinase, muscle protein-coding 75 0.008941
-5214 PFKP phosphofructokinase, platelet protein-coding 116 0.01383
-5216 PFN1 profilin 1 protein-coding 17 0.002027
-5217 PFN2 profilin 2 protein-coding 15 0.001788
-5218 CDK14 cyclin dependent kinase 14 protein-coding 82 0.009776
-5222 PGA5 pepsinogen 5, group I (pepsinogen A) protein-coding 19 0.002265
-5223 PGAM1 phosphoglycerate mutase 1 protein-coding 21 0.002504
-5224 PGAM2 phosphoglycerate mutase 2 protein-coding 42 0.005007
-5225 PGC progastricsin protein-coding 49 0.005842
-5226 PGD phosphogluconate dehydrogenase protein-coding 51 0.00608
-5228 PGF placental growth factor protein-coding 35 0.004173
-5229 PGGT1B protein geranylgeranyltransferase type I subunit beta protein-coding 40 0.004769
-5230 PGK1 phosphoglycerate kinase 1 protein-coding 53 0.006319
-5232 PGK2 phosphoglycerate kinase 2 protein-coding 92 0.01097
-5233 PGK1P2 phosphoglycerate kinase 1, pseudogene 2 pseudo 92 0.01097
-5236 PGM1 phosphoglucomutase 1 protein-coding 63 0.007511
-5238 PGM3 phosphoglucomutase 3 protein-coding 58 0.006915
-5239 PGM5 phosphoglucomutase 5 protein-coding 143 0.01705
-5241 PGR progesterone receptor protein-coding 141 0.01681
-5243 ABCB1 ATP binding cassette subfamily B member 1 protein-coding 275 0.03278
-5244 ABCB4 ATP binding cassette subfamily B member 4 protein-coding 199 0.02372
-5245 PHB prohibitin protein-coding 33 0.003934
-5250 SLC25A3 solute carrier family 25 member 3 protein-coding 48 0.005722
-5251 PHEX phosphate regulating endopeptidase homolog X-linked protein-coding 127 0.01514
-5252 PHF1 PHD finger protein 1 protein-coding 163 0.01943
-5253 PHF2 PHD finger protein 2 protein-coding 110 0.01311
-5255 PHKA1 phosphorylase kinase regulatory subunit alpha 1 protein-coding 152 0.01812
-5256 PHKA2 phosphorylase kinase regulatory subunit alpha 2 protein-coding 176 0.02098
-5257 PHKB phosphorylase kinase regulatory subunit beta protein-coding 118 0.01407
-5260 PHKG1 phosphorylase kinase catalytic subunit gamma 1 protein-coding 50 0.005961
-5261 PHKG2 phosphorylase kinase catalytic subunit gamma 2 protein-coding 44 0.005246
-5264 PHYH phytanoyl-CoA 2-hydroxylase protein-coding 54 0.006438
-5265 SERPINA1 serpin family A member 1 protein-coding 57 0.006795
-5266 PI3 peptidase inhibitor 3 protein-coding 20 0.002384
-5267 SERPINA4 serpin family A member 4 protein-coding 81 0.009657
-5268 SERPINB5 serpin family B member 5 protein-coding 42 0.005007
-5269 SERPINB6 serpin family B member 6 protein-coding 49 0.005842
-5270 SERPINE2 serpin family E member 2 protein-coding 61 0.007272
-5271 SERPINB8 serpin family B member 8 protein-coding 114 0.01359
-5272 SERPINB9 serpin family B member 9 protein-coding 51 0.00608
-5273 SERPINB10 serpin family B member 10 protein-coding 63 0.007511
-5274 SERPINI1 serpin family I member 1 protein-coding 62 0.007392
-5275 SERPINB13 serpin family B member 13 protein-coding 68 0.008107
-5276 SERPINI2 serpin family I member 2 protein-coding 94 0.01121
-5277 PIGA phosphatidylinositol glycan anchor biosynthesis class A protein-coding 51 0.00608
-5279 PIGC phosphatidylinositol glycan anchor biosynthesis class C protein-coding 35 0.004173
-5281 PIGF phosphatidylinositol glycan anchor biosynthesis class F protein-coding 17 0.002027
-5283 PIGH phosphatidylinositol glycan anchor biosynthesis class H protein-coding 12 0.001431
-5284 PIGR polymeric immunoglobulin receptor protein-coding 97 0.01156
-5286 PIK3C2A phosphatidylinositol-4-phosphate 3-kinase catalytic subunit type 2 alpha protein-coding 151 0.018
-5287 PIK3C2B phosphatidylinositol-4-phosphate 3-kinase catalytic subunit type 2 beta protein-coding 177 0.0211
-5288 PIK3C2G phosphatidylinositol-4-phosphate 3-kinase catalytic subunit type 2 gamma protein-coding 180 0.02146
-5289 PIK3C3 phosphatidylinositol 3-kinase catalytic subunit type 3 protein-coding 123 0.01466
-5290 PIK3CA phosphatidylinositol-4,5-bisphosphate 3-kinase catalytic subunit alpha protein-coding 1143 0.1363
-5291 PIK3CB phosphatidylinositol-4,5-bisphosphate 3-kinase catalytic subunit beta protein-coding 127 0.01514
-5292 PIM1 Pim-1 proto-oncogene, serine/threonine kinase protein-coding 40 0.004769
-5293 PIK3CD phosphatidylinositol-4,5-bisphosphate 3-kinase catalytic subunit delta protein-coding 107 0.01276
-5294 PIK3CG phosphatidylinositol-4,5-bisphosphate 3-kinase catalytic subunit gamma protein-coding 234 0.0279
-5295 PIK3R1 phosphoinositide-3-kinase regulatory subunit 1 protein-coding 292 0.03481
-5296 PIK3R2 phosphoinositide-3-kinase regulatory subunit 2 protein-coding 87 0.01037
-5297 PI4KA phosphatidylinositol 4-kinase alpha protein-coding 188 0.02241
-5298 PI4KB phosphatidylinositol 4-kinase beta protein-coding 84 0.01001
-5300 PIN1 peptidylprolyl cis/trans isomerase, NIMA-interacting 1 protein-coding 22 0.002623
-5303 PIN4 peptidylprolyl cis/trans isomerase, NIMA-interacting 4 protein-coding 18 0.002146
-5304 PIP prolactin induced protein protein-coding 28 0.003338
-5305 PIP4K2A phosphatidylinositol-5-phosphate 4-kinase type 2 alpha protein-coding 59 0.007034
-5306 PITPNA phosphatidylinositol transfer protein alpha protein-coding 24 0.002861
-5307 PITX1 paired like homeodomain 1 protein-coding 40 0.004769
-5308 PITX2 paired like homeodomain 2 protein-coding 69 0.008226
-5309 PITX3 paired like homeodomain 3 protein-coding 61 0.007272
-5310 PKD1 polycystin 1, transient receptor potential channel interacting protein-coding 280 0.03338
-5311 PKD2 polycystin 2, transient receptor potential cation channel protein-coding 101 0.01204
-5313 PKLR pyruvate kinase L/R protein-coding 97 0.01156
-5314 PKHD1 PKHD1, fibrocystin/polyductin protein-coding 517 0.06164
-5315 PKM pyruvate kinase M1/2 protein-coding 62 0.007392
-5316 PKNOX1 PBX/knotted 1 homeobox 1 protein-coding 51 0.00608
-5317 PKP1 plakophilin 1 protein-coding 81 0.009657
-5318 PKP2 plakophilin 2 protein-coding 122 0.01454
-5319 PLA2G1B phospholipase A2 group IB protein-coding 19 0.002265
-5320 PLA2G2A phospholipase A2 group IIA protein-coding 22 0.002623
-5321 PLA2G4A phospholipase A2 group IVA protein-coding 123 0.01466
-5322 PLA2G5 phospholipase A2 group V protein-coding 29 0.003457
-5324 PLAG1 PLAG1 zinc finger protein-coding 82 0.009776
-5325 PLAGL1 PLAG1 like zinc finger 1 protein-coding 39 0.004649
-5326 PLAGL2 PLAG1 like zinc finger 2 protein-coding 54 0.006438
-5327 PLAT plasminogen activator, tissue type protein-coding 89 0.01061
-5328 PLAU plasminogen activator, urokinase protein-coding 54 0.006438
-5329 PLAUR plasminogen activator, urokinase receptor protein-coding 42 0.005007
-5330 PLCB2 phospholipase C beta 2 protein-coding 109 0.01299
-5331 PLCB3 phospholipase C beta 3 protein-coding 126 0.01502
-5332 PLCB4 phospholipase C beta 4 protein-coding 202 0.02408
-5333 PLCD1 phospholipase C delta 1 protein-coding 76 0.009061
-5334 PLCL1 phospholipase C like 1 (inactive) protein-coding 219 0.02611
-5335 PLCG1 phospholipase C gamma 1 protein-coding 129 0.01538
-5336 PLCG2 phospholipase C gamma 2 protein-coding 170 0.02027
-5337 PLD1 phospholipase D1 protein-coding 154 0.01836
-5338 PLD2 phospholipase D2 protein-coding 88 0.01049
-5339 PLEC plectin protein-coding 433 0.05162
-5340 PLG plasminogen protein-coding 185 0.02206
-5341 PLEK pleckstrin protein-coding 79 0.009418
-5342 PLGLB2 plasminogen-like B2 protein-coding 3 0.0003577
-5343 PLGLB1 plasminogen-like B1 protein-coding 2 0.0002384
-5345 SERPINF2 serpin family F member 2 protein-coding 44 0.005246
-5346 PLIN1 perilipin 1 protein-coding 40 0.004769
-5347 PLK1 polo like kinase 1 protein-coding 83 0.009895
-5348 FXYD1 FXYD domain containing ion transport regulator 1 protein-coding 10 0.001192
-5349 FXYD3 FXYD domain containing ion transport regulator 3 protein-coding 20 0.002384
-5350 PLN phospholamban protein-coding 9 0.001073
-5351 PLOD1 procollagen-lysine,2-oxoglutarate 5-dioxygenase 1 protein-coding 64 0.00763
-5352 PLOD2 procollagen-lysine,2-oxoglutarate 5-dioxygenase 2 protein-coding 110 0.01311
-5354 PLP1 proteolipid protein 1 protein-coding 41 0.004888
-5355 PLP2 proteolipid protein 2 protein-coding 31 0.003696
-5356 PLRG1 pleiotropic regulator 1 protein-coding 69 0.008226
-5357 PLS1 plastin 1 protein-coding 81 0.009657
-5358 PLS3 plastin 3 protein-coding 67 0.007988
-5359 PLSCR1 phospholipid scramblase 1 protein-coding 45 0.005365
-5360 PLTP phospholipid transfer protein protein-coding 57 0.006795
-5361 PLXNA1 plexin A1 protein-coding 259 0.03088
-5362 PLXNA2 plexin A2 protein-coding 230 0.02742
-5364 PLXNB1 plexin B1 protein-coding 164 0.01955
-5365 PLXNB3 plexin B3 protein-coding 193 0.02301
-5366 PMAIP1 phorbol-12-myristate-13-acetate-induced protein 1 protein-coding 5 0.0005961
-5367 PMCH pro-melanin concentrating hormone protein-coding 20 0.002384
-5368 PNOC prepronociceptin protein-coding 22 0.002623
-5371 PML promyelocytic leukemia protein-coding 85 0.01013
-5372 PMM1 phosphomannomutase 1 protein-coding 24 0.002861
-5373 PMM2 phosphomannomutase 2 protein-coding 22 0.002623
-5375 PMP2 peripheral myelin protein 2 protein-coding 30 0.003577
-5376 PMP22 peripheral myelin protein 22 protein-coding 21 0.002504
-5378 PMS1 PMS1 homolog 1, mismatch repair system component protein-coding 108 0.01288
-5387 PMS2P3 PMS1 homolog 2, mismatch repair system component pseudogene 3 pseudo 9 0.001073
-5393 EXOSC9 exosome component 9 protein-coding 66 0.007868
-5394 EXOSC10 exosome component 10 protein-coding 92 0.01097
-5395 PMS2 PMS1 homolog 2, mismatch repair system component protein-coding 106 0.01264
-5396 PRRX1 paired related homeobox 1 protein-coding 59 0.007034
-5406 PNLIP pancreatic lipase protein-coding 112 0.01335
-5407 PNLIPRP1 pancreatic lipase related protein 1 protein-coding 67 0.007988
-5408 PNLIPRP2 pancreatic lipase related protein 2 (gene/pseudogene) protein-coding 69 0.008226
-5409 PNMT phenylethanolamine N-methyltransferase protein-coding 32 0.003815
-5411 PNN pinin, desmosome associated protein protein-coding 78 0.009299
-5412 UBL3 ubiquitin like 3 protein-coding 18 0.002146
-5413 SEPT5 septin 5 protein-coding 49 0.005842
-5414 SEPT4 septin 4 protein-coding 47 0.005603
-5420 PODXL podocalyxin like protein-coding 188 0.02241
-5422 POLA1 DNA polymerase alpha 1, catalytic subunit protein-coding 138 0.01645
-5423 POLB DNA polymerase beta protein-coding 44 0.005246
-5424 POLD1 DNA polymerase delta 1, catalytic subunit protein-coding 134 0.01598
-5425 POLD2 DNA polymerase delta 2, accessory subunit protein-coding 48 0.005722
-5426 POLE DNA polymerase epsilon, catalytic subunit protein-coding 265 0.03159
-5427 POLE2 DNA polymerase epsilon 2, accessory subunit protein-coding 38 0.00453
-5428 POLG DNA polymerase gamma, catalytic subunit protein-coding 114 0.01359
-5429 POLH DNA polymerase eta protein-coding 65 0.007749
-5430 POLR2A RNA polymerase II subunit A protein-coding 173 0.02062
-5431 POLR2B RNA polymerase II subunit B protein-coding 150 0.01788
-5432 POLR2C RNA polymerase II subunit C protein-coding 33 0.003934
-5433 POLR2D RNA polymerase II subunit D protein-coding 42 0.005007
-5434 POLR2E RNA polymerase II subunit E protein-coding 24 0.002861
-5435 POLR2F RNA polymerase II subunit F protein-coding 28 0.003338
-5436 POLR2G RNA polymerase II subunit G protein-coding 19 0.002265
-5437 POLR2H RNA polymerase II subunit H protein-coding 17 0.002027
-5438 POLR2I RNA polymerase II subunit I protein-coding 20 0.002384
-5439 POLR2J RNA polymerase II subunit J protein-coding 9 0.001073
-5440 POLR2K RNA polymerase II subunit K protein-coding 7 0.0008345
-5441 POLR2L RNA polymerase II subunit L protein-coding 9 0.001073
-5442 POLRMT RNA polymerase mitochondrial protein-coding 128 0.01526
-5443 POMC proopiomelanocortin protein-coding 39 0.004649
-5444 PON1 paraoxonase 1 protein-coding 71 0.008464
-5445 PON2 paraoxonase 2 protein-coding 41 0.004888
-5446 PON3 paraoxonase 3 protein-coding 70 0.008345
-5447 POR cytochrome p450 oxidoreductase protein-coding 63 0.007511
-5449 POU1F1 POU class 1 homeobox 1 protein-coding 39 0.004649
-5450 POU2AF1 POU class 2 associating factor 1 protein-coding 39 0.004649
-5451 POU2F1 POU class 2 homeobox 1 protein-coding 80 0.009537
-5452 POU2F2 POU class 2 homeobox 2 protein-coding 65 0.007749
-5453 POU3F1 POU class 3 homeobox 1 protein-coding 23 0.002742
-5454 POU3F2 POU class 3 homeobox 2 protein-coding 53 0.006319
-5455 POU3F3 POU class 3 homeobox 3 protein-coding 49 0.005842
-5456 POU3F4 POU class 3 homeobox 4 protein-coding 98 0.01168
-5457 POU4F1 POU class 4 homeobox 1 protein-coding 51 0.00608
-5458 POU4F2 POU class 4 homeobox 2 protein-coding 103 0.01228
-5459 POU4F3 POU class 4 homeobox 3 protein-coding 66 0.007868
-5460 POU5F1 POU class 5 homeobox 1 protein-coding 27 0.003219
-5462 POU5F1B POU class 5 homeobox 1B protein-coding 54 0.006438
-5463 POU6F1 POU class 6 homeobox 1 protein-coding 41 0.004888
-5464 PPA1 pyrophosphatase (inorganic) 1 protein-coding 25 0.00298
-5465 PPARA peroxisome proliferator activated receptor alpha protein-coding 57 0.006795
-5467 PPARD peroxisome proliferator activated receptor delta protein-coding 56 0.006676
-5468 PPARG peroxisome proliferator activated receptor gamma protein-coding 67 0.007988
-5469 MED1 mediator complex subunit 1 protein-coding 149 0.01776
-5470 PPEF2 protein phosphatase with EF-hand domain 2 protein-coding 113 0.01347
-5471 PPAT phosphoribosyl pyrophosphate amidotransferase protein-coding 57 0.006795
-5473 PPBP pro-platelet basic protein protein-coding 22 0.002623
-5475 PPEF1 protein phosphatase with EF-hand domain 1 protein-coding 108 0.01288
-5476 CTSA cathepsin A protein-coding 46 0.005484
-5478 PPIA peptidylprolyl isomerase A protein-coding 12 0.001431
-5479 PPIB peptidylprolyl isomerase B protein-coding 30 0.003577
-5480 PPIC peptidylprolyl isomerase C protein-coding 21 0.002504
-5481 PPID peptidylprolyl isomerase D protein-coding 44 0.005246
-5493 PPL periplakin protein-coding 176 0.02098
-5494 PPM1A protein phosphatase, Mg2+/Mn2+ dependent 1A protein-coding 57 0.006795
-5495 PPM1B protein phosphatase, Mg2+/Mn2+ dependent 1B protein-coding 66 0.007868
-5496 PPM1G protein phosphatase, Mg2+/Mn2+ dependent 1G protein-coding 49 0.005842
-5498 PPOX protoporphyrinogen oxidase protein-coding 49 0.005842
-5499 PPP1CA protein phosphatase 1 catalytic subunit alpha protein-coding 38 0.00453
-5500 PPP1CB protein phosphatase 1 catalytic subunit beta protein-coding 40 0.004769
-5501 PPP1CC protein phosphatase 1 catalytic subunit gamma protein-coding 27 0.003219
-5502 PPP1R1A protein phosphatase 1 regulatory inhibitor subunit 1A protein-coding 20 0.002384
-5504 PPP1R2 protein phosphatase 1 regulatory inhibitor subunit 2 protein-coding 28 0.003338
-5506 PPP1R3A protein phosphatase 1 regulatory subunit 3A protein-coding 285 0.03398
-5507 PPP1R3C protein phosphatase 1 regulatory subunit 3C protein-coding 42 0.005007
-5509 PPP1R3D protein phosphatase 1 regulatory subunit 3D protein-coding 33 0.003934
-5510 PPP1R7 protein phosphatase 1 regulatory subunit 7 protein-coding 43 0.005126
-5511 PPP1R8 protein phosphatase 1 regulatory subunit 8 protein-coding 25 0.00298
-5514 PPP1R10 protein phosphatase 1 regulatory subunit 10 protein-coding 110 0.01311
-5515 PPP2CA protein phosphatase 2 catalytic subunit alpha protein-coding 42 0.005007
-5516 PPP2CB protein phosphatase 2 catalytic subunit beta protein-coding 34 0.004053
-5518 PPP2R1A protein phosphatase 2 scaffold subunit Aalpha protein-coding 167 0.01991
-5519 PPP2R1B protein phosphatase 2 scaffold subunit Abeta protein-coding 69 0.008226
-5520 PPP2R2A protein phosphatase 2 regulatory subunit Balpha protein-coding 69 0.008226
-5521 PPP2R2B protein phosphatase 2 regulatory subunit Bbeta protein-coding 83 0.009895
-5522 PPP2R2C protein phosphatase 2 regulatory subunit Bgamma protein-coding 74 0.008822
-5523 PPP2R3A protein phosphatase 2 regulatory subunit B''alpha protein-coding 99 0.0118
-5524 PTPA protein phosphatase 2 phosphatase activator protein-coding 30 0.003577
-5525 PPP2R5A protein phosphatase 2 regulatory subunit B'alpha protein-coding 69 0.008226
-5526 PPP2R5B protein phosphatase 2 regulatory subunit B'beta protein-coding 71 0.008464
-5527 PPP2R5C protein phosphatase 2 regulatory subunit B'gamma protein-coding 62 0.007392
-5528 PPP2R5D protein phosphatase 2 regulatory subunit B'delta protein-coding 69 0.008226
-5529 PPP2R5E protein phosphatase 2 regulatory subunit B'epsilon protein-coding 61 0.007272
-5530 PPP3CA protein phosphatase 3 catalytic subunit alpha protein-coding 85 0.01013
-5531 PPP4C protein phosphatase 4 catalytic subunit protein-coding 34 0.004053
-5532 PPP3CB protein phosphatase 3 catalytic subunit beta protein-coding 54 0.006438
-5533 PPP3CC protein phosphatase 3 catalytic subunit gamma protein-coding 48 0.005722
-5534 PPP3R1 protein phosphatase 3 regulatory subunit B, alpha protein-coding 20 0.002384
-5535 PPP3R2 protein phosphatase 3 regulatory subunit B, beta protein-coding 50 0.005961
-5536 PPP5C protein phosphatase 5 catalytic subunit protein-coding 63 0.007511
-5537 PPP6C protein phosphatase 6 catalytic subunit protein-coding 51 0.00608
-5538 PPT1 palmitoyl-protein thioesterase 1 protein-coding 32 0.003815
-5539 PPY pancreatic polypeptide protein-coding 47 0.005603
-5540 NPY4R neuropeptide Y receptor Y4 protein-coding 84 0.01001
-5542 PRB1 proline rich protein BstNI subfamily 1 protein-coding 49 0.005842
-5544 PRB3 proline rich protein BstNI subfamily 3 protein-coding 68 0.008107
-5545 PRB4 proline rich protein BstNI subfamily 4 protein-coding 62 0.007392
-5546 PRCC papillary renal cell carcinoma (translocation-associated) protein-coding 52 0.006199
-5547 PRCP prolylcarboxypeptidase protein-coding 60 0.007153
-5549 PRELP proline and arginine rich end leucine rich repeat protein protein-coding 53 0.006319
-5550 PREP prolyl endopeptidase protein-coding 73 0.008703
-5551 PRF1 perforin 1 protein-coding 90 0.01073
-5552 SRGN serglycin protein-coding 24 0.002861
-5553 PRG2 proteoglycan 2, pro eosinophil major basic protein protein-coding 72 0.008584
-5554 PRH1 proline rich protein HaeIII subfamily 1 protein-coding 24 0.002861
-5555 PRH2 proline rich protein HaeIII subfamily 2 protein-coding 20 0.002384
-5557 PRIM1 DNA primase subunit 1 protein-coding 42 0.005007
-5558 PRIM2 DNA primase subunit 2 protein-coding 79 0.009418
-5562 PRKAA1 protein kinase AMP-activated catalytic subunit alpha 1 protein-coding 72 0.008584
-5563 PRKAA2 protein kinase AMP-activated catalytic subunit alpha 2 protein-coding 87 0.01037
-5564 PRKAB1 protein kinase AMP-activated non-catalytic subunit beta 1 protein-coding 35 0.004173
-5565 PRKAB2 protein kinase AMP-activated non-catalytic subunit beta 2 protein-coding 28 0.003338
-5566 PRKACA protein kinase cAMP-activated catalytic subunit alpha protein-coding 43 0.005126
-5567 PRKACB protein kinase cAMP-activated catalytic subunit beta protein-coding 47 0.005603
-5568 PRKACG protein kinase cAMP-activated catalytic subunit gamma protein-coding 53 0.006319
-5569 PKIA cAMP-dependent protein kinase inhibitor alpha protein-coding 19 0.002265
-5570 PKIB cAMP-dependent protein kinase inhibitor beta protein-coding 13 0.00155
-5571 PRKAG1 protein kinase AMP-activated non-catalytic subunit gamma 1 protein-coding 41 0.004888
-5573 PRKAR1A protein kinase cAMP-dependent type I regulatory subunit alpha protein-coding 54 0.006438
-5575 PRKAR1B protein kinase cAMP-dependent type I regulatory subunit beta protein-coding 55 0.006557
-5576 PRKAR2A protein kinase cAMP-dependent type II regulatory subunit alpha protein-coding 29 0.003457
-5577 PRKAR2B protein kinase cAMP-dependent type II regulatory subunit beta protein-coding 59 0.007034
-5578 PRKCA protein kinase C alpha protein-coding 123 0.01466
-5579 PRKCB protein kinase C beta protein-coding 148 0.01764
-5580 PRKCD protein kinase C delta protein-coding 71 0.008464
-5581 PRKCE protein kinase C epsilon protein-coding 94 0.01121
-5582 PRKCG protein kinase C gamma protein-coding 144 0.01717
-5583 PRKCH protein kinase C eta protein-coding 62 0.007392
-5584 PRKCI protein kinase C iota protein-coding 101 0.01204
-5585 PKN1 protein kinase N1 protein-coding 147 0.01753
-5586 PKN2 protein kinase N2 protein-coding 176 0.02098
-5587 PRKD1 protein kinase D1 protein-coding 175 0.02086
-5588 PRKCQ protein kinase C theta protein-coding 120 0.01431
-5589 PRKCSH protein kinase C substrate 80K-H protein-coding 213 0.02539
-5590 PRKCZ protein kinase C zeta protein-coding 48 0.005722
-5591 PRKDC protein kinase, DNA-activated, catalytic polypeptide protein-coding 416 0.04959
-5592 PRKG1 protein kinase, cGMP-dependent, type I protein-coding 142 0.01693
-5593 PRKG2 protein kinase, cGMP-dependent, type II protein-coding 117 0.01395
-5594 MAPK1 mitogen-activated protein kinase 1 protein-coding 58 0.006915
-5595 MAPK3 mitogen-activated protein kinase 3 protein-coding 37 0.004411
-5596 MAPK4 mitogen-activated protein kinase 4 protein-coding 87 0.01037
-5597 MAPK6 mitogen-activated protein kinase 6 protein-coding 68 0.008107
-5598 MAPK7 mitogen-activated protein kinase 7 protein-coding 68 0.008107
-5599 MAPK8 mitogen-activated protein kinase 8 protein-coding 61 0.007272
-5600 MAPK11 mitogen-activated protein kinase 11 protein-coding 27 0.003219
-5601 MAPK9 mitogen-activated protein kinase 9 protein-coding 54 0.006438
-5602 MAPK10 mitogen-activated protein kinase 10 protein-coding 81 0.009657
-5603 MAPK13 mitogen-activated protein kinase 13 protein-coding 30 0.003577
-5604 MAP2K1 mitogen-activated protein kinase kinase 1 protein-coding 72 0.008584
-5605 MAP2K2 mitogen-activated protein kinase kinase 2 protein-coding 54 0.006438
-5606 MAP2K3 mitogen-activated protein kinase kinase 3 protein-coding 84 0.01001
-5607 MAP2K5 mitogen-activated protein kinase kinase 5 protein-coding 47 0.005603
-5608 MAP2K6 mitogen-activated protein kinase kinase 6 protein-coding 41 0.004888
-5609 MAP2K7 mitogen-activated protein kinase kinase 7 protein-coding 85 0.01013
-5610 EIF2AK2 eukaryotic translation initiation factor 2 alpha kinase 2 protein-coding 144 0.01717
-5611 DNAJC3 DnaJ heat shock protein family (Hsp40) member C3 protein-coding 59 0.007034
-5612 THAP12 THAP domain containing 12 protein-coding 93 0.01109
-5613 PRKX protein kinase, X-linked protein-coding 46 0.005484
-5616 PRKY protein kinase, Y-linked, pseudogene pseudo 5 0.0005961
-5617 PRL prolactin protein-coding 49 0.005842
-5618 PRLR prolactin receptor protein-coding 106 0.01264
-5619 PRM1 protamine 1 protein-coding 5 0.0005961
-5620 PRM2 protamine 2 protein-coding 17 0.002027
-5621 PRNP prion protein protein-coding 35 0.004173
-5623 PSPN persephin protein-coding 16 0.001907
-5624 PROC protein C, inactivator of coagulation factors Va and VIIIa protein-coding 707 0.08429
-5625 PRODH proline dehydrogenase 1 protein-coding 116 0.01383
-5626 PROP1 PROP paired-like homeobox 1 protein-coding 30 0.003577
-5627 PROS1 protein S protein-coding 163 0.01943
-5629 PROX1 prospero homeobox 1 protein-coding 166 0.01979
-5630 PRPH peripherin protein-coding 29 0.003457
-5631 PRPS1 phosphoribosyl pyrophosphate synthetase 1 protein-coding 43 0.005126
-5634 PRPS2 phosphoribosyl pyrophosphate synthetase 2 protein-coding 40 0.004769
-5635 PRPSAP1 phosphoribosyl pyrophosphate synthetase associated protein 1 protein-coding 45 0.005365
-5636 PRPSAP2 phosphoribosyl pyrophosphate synthetase associated protein 2 protein-coding 40 0.004769
-5638 PRRG1 proline rich and Gla domain 1 protein-coding 46 0.005484
-5639 PRRG2 proline rich and Gla domain 2 protein-coding 17 0.002027
-5641 LGMN legumain protein-coding 51 0.00608
-5644 PRSS1 serine protease 1 protein-coding 81 0.009657
-5646 PRSS3 serine protease 3 protein-coding 33 0.003934
-5648 MASP1 mannan binding lectin serine peptidase 1 protein-coding 169 0.02015
-5649 RELN reelin protein-coding 503 0.05997
-5650 KLK7 kallikrein related peptidase 7 protein-coding 29 0.003457
-5651 TMPRSS15 transmembrane serine protease 15 protein-coding 220 0.02623
-5652 PRSS8 serine protease 8 protein-coding 74 0.008822
-5653 KLK6 kallikrein related peptidase 6 protein-coding 54 0.006438
-5654 HTRA1 HtrA serine peptidase 1 protein-coding 50 0.005961
-5655 KLK10 kallikrein related peptidase 10 protein-coding 28 0.003338
-5657 PRTN3 proteinase 3 protein-coding 19 0.002265
-5660 PSAP prosaposin protein-coding 59 0.007034
-5662 PSD pleckstrin and Sec7 domain containing protein-coding 155 0.01848
-5663 PSEN1 presenilin 1 protein-coding 54 0.006438
-5664 PSEN2 presenilin 2 protein-coding 63 0.007511
-5669 PSG1 pregnancy specific beta-1-glycoprotein 1 protein-coding 101 0.01204
-5670 PSG2 pregnancy specific beta-1-glycoprotein 2 protein-coding 103 0.01228
-5671 PSG3 pregnancy specific beta-1-glycoprotein 3 protein-coding 99 0.0118
-5672 PSG4 pregnancy specific beta-1-glycoprotein 4 protein-coding 90 0.01073
-5673 PSG5 pregnancy specific beta-1-glycoprotein 5 protein-coding 60 0.007153
-5675 PSG6 pregnancy specific beta-1-glycoprotein 6 protein-coding 102 0.01216
-5676 PSG7 pregnancy specific beta-1-glycoprotein 7 (gene/pseudogene) protein-coding 104 0.0124
-5678 PSG9 pregnancy specific beta-1-glycoprotein 9 protein-coding 81 0.009657
-5680 PSG11 pregnancy specific beta-1-glycoprotein 11 protein-coding 95 0.01133
-5681 PSKH1 protein serine kinase H1 protein-coding 43 0.005126
-5682 PSMA1 proteasome subunit alpha 1 protein-coding 46 0.005484
-5683 PSMA2 proteasome subunit alpha 2 protein-coding 20 0.002384
-5684 PSMA3 proteasome subunit alpha 3 protein-coding 27 0.003219
-5685 PSMA4 proteasome subunit alpha 4 protein-coding 30 0.003577
-5686 PSMA5 proteasome subunit alpha 5 protein-coding 24 0.002861
-5687 PSMA6 proteasome subunit alpha 6 protein-coding 30 0.003577
-5688 PSMA7 proteasome subunit alpha 7 protein-coding 258 0.03076
-5689 PSMB1 proteasome subunit beta 1 protein-coding 20 0.002384
-5690 PSMB2 proteasome subunit beta 2 protein-coding 24 0.002861
-5691 PSMB3 proteasome subunit beta 3 protein-coding 27 0.003219
-5692 PSMB4 proteasome subunit beta 4 protein-coding 26 0.0031
-5693 PSMB5 proteasome subunit beta 5 protein-coding 36 0.004292
-5694 PSMB6 proteasome subunit beta 6 protein-coding 22 0.002623
-5695 PSMB7 proteasome subunit beta 7 protein-coding 18 0.002146
-5696 PSMB8 proteasome subunit beta 8 protein-coding 32 0.003815
-5697 PYY peptide YY protein-coding 13 0.00155
-5698 PSMB9 proteasome subunit beta 9 protein-coding 21 0.002504
-5699 PSMB10 proteasome subunit beta 10 protein-coding 18 0.002146
-5700 PSMC1 proteasome 26S subunit, ATPase 1 protein-coding 42 0.005007
-5701 PSMC2 proteasome 26S subunit, ATPase 2 protein-coding 62 0.007392
-5702 PSMC3 proteasome 26S subunit, ATPase 3 protein-coding 48 0.005722
-5704 PSMC4 proteasome 26S subunit, ATPase 4 protein-coding 60 0.007153
-5705 PSMC5 proteasome 26S subunit, ATPase 5 protein-coding 51 0.00608
-5706 PSMC6 proteasome 26S subunit, ATPase 6 protein-coding 59 0.007034
-5707 PSMD1 proteasome 26S subunit, non-ATPase 1 protein-coding 105 0.01252
-5708 PSMD2 proteasome 26S subunit, non-ATPase 2 protein-coding 90 0.01073
-5709 PSMD3 proteasome 26S subunit, non-ATPase 3 protein-coding 57 0.006795
-5710 PSMD4 proteasome 26S subunit, non-ATPase 4 protein-coding 37 0.004411
-5711 PSMD5 proteasome 26S subunit, non-ATPase 5 protein-coding 44 0.005246
-5713 PSMD7 proteasome 26S subunit, non-ATPase 7 protein-coding 33 0.003934
-5714 PSMD8 proteasome 26S subunit, non-ATPase 8 protein-coding 21 0.002504
-5715 PSMD9 proteasome 26S subunit, non-ATPase 9 protein-coding 18 0.002146
-5716 PSMD10 proteasome 26S subunit, non-ATPase 10 protein-coding 16 0.001907
-5717 PSMD11 proteasome 26S subunit, non-ATPase 11 protein-coding 60 0.007153
-5718 PSMD12 proteasome 26S subunit, non-ATPase 12 protein-coding 56 0.006676
-5719 PSMD13 proteasome 26S subunit, non-ATPase 13 protein-coding 24 0.002861
-5720 PSME1 proteasome activator subunit 1 protein-coding 21 0.002504
-5721 PSME2 proteasome activator subunit 2 protein-coding 26 0.0031
-5723 PSPH phosphoserine phosphatase protein-coding 31 0.003696
-5724 PTAFR platelet activating factor receptor protein-coding 38 0.00453
-5725 PTBP1 polypyrimidine tract binding protein 1 protein-coding 72 0.008584
-5726 TAS2R38 taste 2 receptor member 38 protein-coding 54 0.006438
-5727 PTCH1 patched 1 protein-coding 203 0.0242
-5728 PTEN phosphatase and tensin homolog protein-coding 812 0.0968
-5729 PTGDR prostaglandin D2 receptor protein-coding 67 0.007988
-5730 PTGDS prostaglandin D2 synthase protein-coding 30 0.003577
-5731 PTGER1 prostaglandin E receptor 1 protein-coding 4 0.0004769
-5732 PTGER2 prostaglandin E receptor 2 protein-coding 56 0.006676
-5733 PTGER3 prostaglandin E receptor 3 protein-coding 93 0.01109
-5734 PTGER4 prostaglandin E receptor 4 protein-coding 75 0.008941
-5737 PTGFR prostaglandin F receptor protein-coding 76 0.009061
-5738 PTGFRN prostaglandin F2 receptor inhibitor protein-coding 90 0.01073
-5739 PTGIR prostaglandin I2 receptor protein-coding 33 0.003934
-5740 PTGIS prostaglandin I2 synthase protein-coding 61 0.007272
-5741 PTH parathyroid hormone protein-coding 18 0.002146
-5742 PTGS1 prostaglandin-endoperoxide synthase 1 protein-coding 86 0.01025
-5743 PTGS2 prostaglandin-endoperoxide synthase 2 protein-coding 84 0.01001
-5744 PTHLH parathyroid hormone like hormone protein-coding 34 0.004053
-5745 PTH1R parathyroid hormone 1 receptor protein-coding 78 0.009299
-5746 PTH2R parathyroid hormone 2 receptor protein-coding 102 0.01216
-5747 PTK2 protein tyrosine kinase 2 protein-coding 134 0.01598
-5753 PTK6 protein tyrosine kinase 6 protein-coding 37 0.004411
-5754 PTK7 protein tyrosine kinase 7 (inactive) protein-coding 98 0.01168
-5756 TWF1 twinfilin actin binding protein 1 protein-coding 45 0.005365
-5757 PTMA prothymosin alpha protein-coding 32 0.003815
-5761 PTMAP4 prothymosin alpha pseudogene 4 pseudo 32 0.003815
-5763 PTMS parathymosin protein-coding 11 0.001311
-5764 PTN pleiotrophin protein-coding 52 0.006199
-5768 QSOX1 quiescin sulfhydryl oxidase 1 protein-coding 72 0.008584
-5770 PTPN1 protein tyrosine phosphatase, non-receptor type 1 protein-coding 46 0.005484
-5771 PTPN2 protein tyrosine phosphatase, non-receptor type 2 protein-coding 54 0.006438
-5774 PTPN3 protein tyrosine phosphatase, non-receptor type 3 protein-coding 128 0.01526
-5775 PTPN4 protein tyrosine phosphatase, non-receptor type 4 protein-coding 133 0.01586
-5777 PTPN6 protein tyrosine phosphatase, non-receptor type 6 protein-coding 61 0.007272
-5778 PTPN7 protein tyrosine phosphatase, non-receptor type 7 protein-coding 48 0.005722
-5780 PTPN9 protein tyrosine phosphatase, non-receptor type 9 protein-coding 68 0.008107
-5781 PTPN11 protein tyrosine phosphatase, non-receptor type 11 protein-coding 84 0.01001
-5782 PTPN12 protein tyrosine phosphatase, non-receptor type 12 protein-coding 97 0.01156
-5783 PTPN13 protein tyrosine phosphatase, non-receptor type 13 protein-coding 233 0.02778
-5784 PTPN14 protein tyrosine phosphatase, non-receptor type 14 protein-coding 172 0.02051
-5786 PTPRA protein tyrosine phosphatase, receptor type A protein-coding 96 0.01144
-5787 PTPRB protein tyrosine phosphatase, receptor type B protein-coding 307 0.0366
-5788 PTPRC protein tyrosine phosphatase, receptor type C protein-coding 255 0.0304
-5789 PTPRD protein tyrosine phosphatase, receptor type D protein-coding 381 0.04542
-5790 PTPRCAP protein tyrosine phosphatase, receptor type C associated protein protein-coding 23 0.002742
-5791 PTPRE protein tyrosine phosphatase, receptor type E protein-coding 100 0.01192
-5792 PTPRF protein tyrosine phosphatase, receptor type F protein-coding 174 0.02074
-5793 PTPRG protein tyrosine phosphatase, receptor type G protein-coding 170 0.02027
-5794 PTPRH protein tyrosine phosphatase, receptor type H protein-coding 166 0.01979
-5795 PTPRJ protein tyrosine phosphatase, receptor type J protein-coding 138 0.01645
-5796 PTPRK protein tyrosine phosphatase, receptor type K protein-coding 198 0.02361
-5797 PTPRM protein tyrosine phosphatase, receptor type M protein-coding 209 0.02492
-5798 PTPRN protein tyrosine phosphatase, receptor type N protein-coding 128 0.01526
-5799 PTPRN2 protein tyrosine phosphatase, receptor type N2 protein-coding 183 0.02182
-5800 PTPRO protein tyrosine phosphatase, receptor type O protein-coding 154 0.01836
-5801 PTPRR protein tyrosine phosphatase, receptor type R protein-coding 123 0.01466
-5802 PTPRS protein tyrosine phosphatase, receptor type S protein-coding 200 0.02384
-5803 PTPRZ1 protein tyrosine phosphatase, receptor type Z1 protein-coding 305 0.03636
-5805 PTS 6-pyruvoyltetrahydropterin synthase protein-coding 7 0.0008345
-5806 PTX3 pentraxin 3 protein-coding 38 0.00453
-5810 RAD1 RAD1 checkpoint DNA exonuclease protein-coding 36 0.004292
-5813 PURA purine rich element binding protein A protein-coding 25 0.00298
-5814 PURB purine rich element binding protein B protein-coding 25 0.00298
-5816 PVALB parvalbumin protein-coding 16 0.001907
-5817 PVR poliovirus receptor protein-coding 42 0.005007
-5818 NECTIN1 nectin cell adhesion molecule 1 protein-coding 80 0.009537
-5819 NECTIN2 nectin cell adhesion molecule 2 protein-coding 59 0.007034
-5820 PVT1 Pvt1 oncogene (non-protein coding) ncRNA 4 0.0004769
-5822 PWP2 PWP2, small subunit processome component protein-coding 86 0.01025
-5824 PEX19 peroxisomal biogenesis factor 19 protein-coding 31 0.003696
-5825 ABCD3 ATP binding cassette subfamily D member 3 protein-coding 66 0.007868
-5826 ABCD4 ATP binding cassette subfamily D member 4 protein-coding 59 0.007034
-5827 PXMP2 peroxisomal membrane protein 2 protein-coding 42 0.005007
-5828 PEX2 peroxisomal biogenesis factor 2 protein-coding 122 0.01454
-5829 PXN paxillin protein-coding 52 0.006199
-5830 PEX5 peroxisomal biogenesis factor 5 protein-coding 64 0.00763
-5831 PYCR1 pyrroline-5-carboxylate reductase 1 protein-coding 29 0.003457
-5832 ALDH18A1 aldehyde dehydrogenase 18 family member A1 protein-coding 76 0.009061
-5833 PCYT2 phosphate cytidylyltransferase 2, ethanolamine protein-coding 40 0.004769
-5834 PYGB glycogen phosphorylase B protein-coding 101 0.01204
-5836 PYGL glycogen phosphorylase L protein-coding 88 0.01049
-5837 PYGM glycogen phosphorylase, muscle associated protein-coding 142 0.01693
-5858 PZP PZP, alpha-2-macroglobulin like protein-coding 228 0.02718
-5859 QARS glutaminyl-tRNA synthetase protein-coding 71 0.008464
-5860 QDPR quinoid dihydropteridine reductase protein-coding 33 0.003934
-5861 RAB1A RAB1A, member RAS oncogene family protein-coding 17 0.002027
-5862 RAB2A RAB2A, member RAS oncogene family protein-coding 29 0.003457
-5863 RGL2 ral guanine nucleotide dissociation stimulator like 2 protein-coding 86 0.01025
-5864 RAB3A RAB3A, member RAS oncogene family protein-coding 29 0.003457
-5865 RAB3B RAB3B, member RAS oncogene family protein-coding 32 0.003815
-5866 RAB3IL1 RAB3A interacting protein like 1 protein-coding 37 0.004411
-5867 RAB4A RAB4A, member RAS oncogene family protein-coding 30 0.003577
-5868 RAB5A RAB5A, member RAS oncogene family protein-coding 29 0.003457
-5869 RAB5B RAB5B, member RAS oncogene family protein-coding 23 0.002742
-5870 RAB6A RAB6A, member RAS oncogene family protein-coding 23 0.002742
-5871 MAP4K2 mitogen-activated protein kinase kinase kinase kinase 2 protein-coding 138 0.01645
-5872 RAB13 RAB13, member RAS oncogene family protein-coding 19 0.002265
-5873 RAB27A RAB27A, member RAS oncogene family protein-coding 30 0.003577
-5874 RAB27B RAB27B, member RAS oncogene family protein-coding 30 0.003577
-5875 RABGGTA Rab geranylgeranyltransferase alpha subunit protein-coding 68 0.008107
-5876 RABGGTB Rab geranylgeranyltransferase beta subunit protein-coding 59 0.007034
-5877 RABIF RAB interacting factor protein-coding 12 0.001431
-5878 RAB5C RAB5C, member RAS oncogene family protein-coding 26 0.0031
-5879 RAC1 Rac family small GTPase 1 protein-coding 46 0.005484
-5880 RAC2 Rac family small GTPase 2 protein-coding 33 0.003934
-5881 RAC3 Rac family small GTPase 3 protein-coding 22 0.002623
-5883 RAD9A RAD9 checkpoint clamp component A protein-coding 32 0.003815
-5884 RAD17 RAD17 checkpoint clamp loader component protein-coding 73 0.008703
-5885 RAD21 RAD21 cohesin complex component protein-coding 98 0.01168
-5886 RAD23A RAD23 homolog A, nucleotide excision repair protein protein-coding 43 0.005126
-5887 RAD23B RAD23 homolog B, nucleotide excision repair protein protein-coding 47 0.005603
-5888 RAD51 RAD51 recombinase protein-coding 33 0.003934
-5889 RAD51C RAD51 paralog C protein-coding 45 0.005365
-5890 RAD51B RAD51 paralog B protein-coding 43 0.005126
-5891 MOK MOK protein kinase protein-coding 35 0.004173
-5892 RAD51D RAD51 paralog D protein-coding 28 0.003338
-5893 RAD52 RAD52 homolog, DNA repair protein protein-coding 35 0.004173
-5894 RAF1 Raf-1 proto-oncogene, serine/threonine kinase protein-coding 66 0.007868
-5896 RAG1 recombination activating 1 protein-coding 152 0.01812
-5897 RAG2 recombination activating 2 protein-coding 92 0.01097
-5898 RALA RAS like proto-oncogene A protein-coding 43 0.005126
-5899 RALB RAS like proto-oncogene B protein-coding 40 0.004769
-5900 RALGDS ral guanine nucleotide dissociation stimulator protein-coding 86 0.01025
-5901 RAN RAN, member RAS oncogene family protein-coding 27 0.003219
-5902 RANBP1 RAN binding protein 1 protein-coding 23 0.002742
-5903 RANBP2 RAN binding protein 2 protein-coding 327 0.03898
-5905 RANGAP1 Ran GTPase activating protein 1 protein-coding 46 0.005484
-5906 RAP1A RAP1A, member of RAS oncogene family protein-coding 29 0.003457
-5908 RAP1B RAP1B, member of RAS oncogene family protein-coding 21 0.002504
-5909 RAP1GAP RAP1 GTPase activating protein protein-coding 72 0.008584
-5910 RAP1GDS1 Rap1 GTPase-GDP dissociation stimulator 1 protein-coding 78 0.009299
-5911 RAP2A RAP2A, member of RAS oncogene family protein-coding 13 0.00155
-5912 RAP2B RAP2B, member of RAS oncogene family protein-coding 24 0.002861
-5913 RAPSN receptor associated protein of the synapse protein-coding 39 0.004649
-5914 RARA retinoic acid receptor alpha protein-coding 61 0.007272
-5915 RARB retinoic acid receptor beta protein-coding 79 0.009418
-5916 RARG retinoic acid receptor gamma protein-coding 74 0.008822
-5917 RARS arginyl-tRNA synthetase protein-coding 63 0.007511
-5918 RARRES1 retinoic acid receptor responder 1 protein-coding 30 0.003577
-5919 RARRES2 retinoic acid receptor responder 2 protein-coding 12 0.001431
-5920 RARRES3 retinoic acid receptor responder 3 protein-coding 30 0.003577
-5921 RASA1 RAS p21 protein activator 1 protein-coding 209 0.02492
-5922 RASA2 RAS p21 protein activator 2 protein-coding 105 0.01252
-5923 RASGRF1 Ras protein specific guanine nucleotide releasing factor 1 protein-coding 163 0.01943
-5924 RASGRF2 Ras protein specific guanine nucleotide releasing factor 2 protein-coding 168 0.02003
-5925 RB1 RB transcriptional corepressor 1 protein-coding 359 0.0428
-5926 ARID4A AT-rich interaction domain 4A protein-coding 166 0.01979
-5927 KDM5A lysine demethylase 5A protein-coding 168 0.02003
-5928 RBBP4 RB binding protein 4, chromatin remodeling factor protein-coding 46 0.005484
-5929 RBBP5 RB binding protein 5, histone lysine methyltransferase complex subunit protein-coding 56 0.006676
-5930 RBBP6 RB binding protein 6, ubiquitin ligase protein-coding 213 0.02539
-5931 RBBP7 RB binding protein 7, chromatin remodeling factor protein-coding 67 0.007988
-5932 RBBP8 RB binding protein 8, endonuclease protein-coding 87 0.01037
-5933 RBL1 RB transcriptional corepressor like 1 protein-coding 168 0.02003
-5934 RBL2 RB transcriptional corepressor like 2 protein-coding 118 0.01407
-5935 RBM3 RNA binding motif protein 3 protein-coding 20 0.002384
-5936 RBM4 RNA binding motif protein 4 protein-coding 11 0.001311
-5937 RBMS1 RNA binding motif single stranded interacting protein 1 protein-coding 53 0.006319
-5939 RBMS2 RNA binding motif single stranded interacting protein 2 protein-coding 47 0.005603
-5940 RBMY1A1 RNA binding motif protein, Y-linked, family 1, member A1 protein-coding 2 0.0002384
-5947 RBP1 retinol binding protein 1 protein-coding 26 0.0031
-5948 RBP2 retinol binding protein 2 protein-coding 32 0.003815
-5949 RBP3 retinol binding protein 3 protein-coding 205 0.02444
-5950 RBP4 retinol binding protein 4 protein-coding 25 0.00298
-5954 RCN1 reticulocalbin 1 protein-coding 32 0.003815
-5955 RCN2 reticulocalbin 2 protein-coding 29 0.003457
-5956 OPN1LW opsin 1, long wave sensitive protein-coding 46 0.005484
-5957 RCVRN recoverin protein-coding 42 0.005007
-5959 RDH5 retinol dehydrogenase 5 protein-coding 37 0.004411
-5961 PRPH2 peripherin 2 protein-coding 76 0.009061
-5962 RDX radixin protein-coding 76 0.009061
-5965 RECQL RecQ like helicase protein-coding 70 0.008345
-5966 REL REL proto-oncogene, NF-kB subunit protein-coding 75 0.008941
-5967 REG1A regenerating family member 1 alpha protein-coding 90 0.01073
-5968 REG1B regenerating family member 1 beta protein-coding 87 0.01037
-5969 REG1CP regenerating family member 1 gamma, pseudogene pseudo 91 0.01085
-5970 RELA RELA proto-oncogene, NF-kB subunit protein-coding 69 0.008226
-5971 RELB RELB proto-oncogene, NF-kB subunit protein-coding 53 0.006319
-5972 REN renin protein-coding 49 0.005842
-5973 RENBP renin binding protein protein-coding 57 0.006795
-5976 UPF1 UPF1, RNA helicase and ATPase protein-coding 125 0.0149
-5977 DPF2 double PHD fingers 2 protein-coding 59 0.007034
-5978 REST RE1 silencing transcription factor protein-coding 112 0.01335
-5979 RET ret proto-oncogene protein-coding 166 0.01979
-5980 REV3L REV3 like, DNA directed polymerase zeta catalytic subunit protein-coding 298 0.03553
-5981 RFC1 replication factor C subunit 1 protein-coding 121 0.01443
-5982 RFC2 replication factor C subunit 2 protein-coding 44 0.005246
-5983 RFC3 replication factor C subunit 3 protein-coding 33 0.003934
-5984 RFC4 replication factor C subunit 4 protein-coding 60 0.007153
-5985 RFC5 replication factor C subunit 5 protein-coding 47 0.005603
-5986 RFNG RFNG O-fucosylpeptide 3-beta-N-acetylglucosaminyltransferase protein-coding 15 0.001788
-5987 TRIM27 tripartite motif containing 27 protein-coding 70 0.008345
-5988 RFPL1 ret finger protein like 1 protein-coding 47 0.005603
-5989 RFX1 regulatory factor X1 protein-coding 86 0.01025
-5990 RFX2 regulatory factor X2 protein-coding 76 0.009061
-5991 RFX3 regulatory factor X3 protein-coding 92 0.01097
-5992 RFX4 regulatory factor X4 protein-coding 109 0.01299
-5993 RFX5 regulatory factor X5 protein-coding 84 0.01001
-5994 RFXAP regulatory factor X associated protein protein-coding 26 0.0031
-5995 RGR retinal G protein coupled receptor protein-coding 43 0.005126
-5996 RGS1 regulator of G protein signaling 1 protein-coding 41 0.004888
-5997 RGS2 regulator of G protein signaling 2 protein-coding 41 0.004888
-5998 RGS3 regulator of G protein signaling 3 protein-coding 123 0.01466
-5999 RGS4 regulator of G protein signaling 4 protein-coding 61 0.007272
-6000 RGS7 regulator of G protein signaling 7 protein-coding 156 0.0186
-6001 RGS10 regulator of G protein signaling 10 protein-coding 31 0.003696
-6002 RGS12 regulator of G protein signaling 12 protein-coding 191 0.02277
-6003 RGS13 regulator of G protein signaling 13 protein-coding 33 0.003934
-6004 RGS16 regulator of G protein signaling 16 protein-coding 32 0.003815
-6005 RHAG Rh associated glycoprotein protein-coding 83 0.009895
-6006 RHCE Rh blood group CcEe antigens protein-coding 55 0.006557
-6007 RHD Rh blood group D antigen protein-coding 46 0.005484
-6008 RHEBP1 RHEB pseudogene 1 pseudo 26 0.0031
-6009 RHEB Ras homolog, mTORC1 binding protein-coding 26 0.0031
-6010 RHO rhodopsin protein-coding 53 0.006319
-6011 GRK1 G protein-coupled receptor kinase 1 protein-coding 69 0.008226
-6012 RIEG2 Rieger syndrome 2 unknown 41 0.004888
-6013 RLN1 relaxin 1 protein-coding 23 0.002742
-6014 RIT2 Ras like without CAAX 2 protein-coding 70 0.008345
-6015 RING1 ring finger protein 1 protein-coding 57 0.006795
-6016 RIT1 Ras like without CAAX 1 protein-coding 32 0.003815
-6017 RLBP1 retinaldehyde binding protein 1 protein-coding 45 0.005365
-6018 RLF rearranged L-myc fusion protein-coding 166 0.01979
-6019 RLN2 relaxin 2 protein-coding 22 0.002623
-6023 RMRP RNA component of mitochondrial RNA processing endoribonuclease ncRNA 18 0.002146
-6035 RNASE1 ribonuclease A family member 1, pancreatic protein-coding 54 0.006438
-6036 RNASE2 ribonuclease A family member 2 protein-coding 33 0.003934
-6037 RNASE3 ribonuclease A family member 3 protein-coding 96 0.01144
-6038 RNASE4 ribonuclease A family member 4 protein-coding 22 0.002623
-6039 RNASE6 ribonuclease A family member k6 protein-coding 53 0.006319
-6041 RNASEL ribonuclease L protein-coding 85 0.01013
-6045 RNF2 ring finger protein 2 protein-coding 237 0.02825
-6046 BRD2 bromodomain containing 2 protein-coding 102 0.01216
-6047 RNF4 ring finger protein 4 protein-coding 33 0.003934
-6048 RNF5 ring finger protein 5 protein-coding 18 0.002146
-6049 RNF6 ring finger protein 6 protein-coding 97 0.01156
-6050 RNH1 ribonuclease/angiogenin inhibitor 1 protein-coding 38 0.00453
-6051 RNPEP arginyl aminopeptidase protein-coding 48 0.005722
-6059 ABCE1 ATP binding cassette subfamily E member 1 protein-coding 74 0.008822
-6090 RNY5 RNA, Ro-associated Y5 ncRNA 6 0.0007153
-6091 ROBO1 roundabout guidance receptor 1 protein-coding 277 0.03302
-6092 ROBO2 roundabout guidance receptor 2 protein-coding 293 0.03493
-6093 ROCK1 Rho associated coiled-coil containing protein kinase 1 protein-coding 186 0.02217
-6094 ROM1 retinal outer segment membrane protein 1 protein-coding 37 0.004411
-6095 RORA RAR related orphan receptor A protein-coding 304 0.03624
-6096 RORB RAR related orphan receptor B protein-coding 74 0.008822
-6097 RORC RAR related orphan receptor C protein-coding 67 0.007988
-6098 ROS1 ROS proto-oncogene 1, receptor tyrosine kinase protein-coding 309 0.03684
-6100 RP9 RP9, pre-mRNA splicing factor protein-coding 25 0.00298
-6101 RP1 RP1, axonemal microtubule associated protein-coding 407 0.04852
-6102 RP2 RP2, ARL3 GTPase activating protein protein-coding 42 0.005007
-6103 RPGR retinitis pigmentosa GTPase regulator protein-coding 112 0.01335
-6117 RPA1 replication protein A1 protein-coding 54 0.006438
-6118 RPA2 replication protein A2 protein-coding 26 0.0031
-6119 RPA3 replication protein A3 protein-coding 14 0.001669
-6120 RPE ribulose-5-phosphate-3-epimerase protein-coding 37 0.004411
-6121 RPE65 RPE65, retinoid isomerohydrolase protein-coding 90 0.01073
-6122 RPL3 ribosomal protein L3 protein-coding 32 0.003815
-6123 RPL3L ribosomal protein L3 like protein-coding 58 0.006915
-6124 RPL4 ribosomal protein L4 protein-coding 40 0.004769
-6125 RPL5 ribosomal protein L5 protein-coding 63 0.007511
-6128 RPL6 ribosomal protein L6 protein-coding 38 0.00453
-6129 RPL7 ribosomal protein L7 protein-coding 23 0.002742
-6130 RPL7A ribosomal protein L7a protein-coding 26 0.0031
-6132 RPL8 ribosomal protein L8 protein-coding 30 0.003577
-6133 RPL9 ribosomal protein L9 protein-coding 18 0.002146
-6134 RPL10 ribosomal protein L10 protein-coding 90 0.01073
-6135 RPL11 ribosomal protein L11 protein-coding 29 0.003457
-6136 RPL12 ribosomal protein L12 protein-coding 13 0.00155
-6137 RPL13 ribosomal protein L13 protein-coding 16 0.001907
-6138 RPL15 ribosomal protein L15 protein-coding 57 0.006795
-6139 RPL17 ribosomal protein L17 protein-coding 36 0.004292
-6141 RPL18 ribosomal protein L18 protein-coding 10 0.001192
-6142 RPL18A ribosomal protein L18a protein-coding 27 0.003219
-6143 RPL19 ribosomal protein L19 protein-coding 22 0.002623
-6144 RPL21 ribosomal protein L21 protein-coding 15 0.001788
-6146 RPL22 ribosomal protein L22 protein-coding 118 0.01407
-6147 RPL23A ribosomal protein L23a protein-coding 22 0.002623
-6150 MRPL23 mitochondrial ribosomal protein L23 protein-coding 32 0.003815
-6152 RPL24 ribosomal protein L24 protein-coding 19 0.002265
-6154 RPL26 ribosomal protein L26 protein-coding 16 0.001907
-6155 RPL27 ribosomal protein L27 protein-coding 16 0.001907
-6156 RPL30 ribosomal protein L30 protein-coding 7 0.0008345
-6157 RPL27A ribosomal protein L27a protein-coding 6 0.0007153
-6158 RPL28 ribosomal protein L28 protein-coding 27 0.003219
-6159 RPL29 ribosomal protein L29 protein-coding 13 0.00155
-6160 RPL31 ribosomal protein L31 protein-coding 19 0.002265
-6161 RPL32 ribosomal protein L32 protein-coding 8 0.0009537
-6164 RPL34 ribosomal protein L34 protein-coding 19 0.002265
-6165 RPL35A ribosomal protein L35a protein-coding 13 0.00155
-6166 RPL36AL ribosomal protein L36a like protein-coding 24 0.002861
-6167 RPL37 ribosomal protein L37 protein-coding 14 0.001669
-6168 RPL37A ribosomal protein L37a protein-coding 7 0.0008345
-6169 RPL38 ribosomal protein L38 protein-coding 4 0.0004769
-6170 RPL39 ribosomal protein L39 protein-coding 8 0.0009537
-6171 RPL41 ribosomal protein L41 protein-coding 5 0.0005961
-6173 RPL36A ribosomal protein L36a protein-coding 12 0.001431
-6175 RPLP0 ribosomal protein lateral stalk subunit P0 protein-coding 36 0.004292
-6176 RPLP1 ribosomal protein lateral stalk subunit P1 protein-coding 6 0.0007153
-6181 RPLP2 ribosomal protein lateral stalk subunit P2 protein-coding 12 0.001431
-6183 MRPS12 mitochondrial ribosomal protein S12 protein-coding 36 0.004292
-6184 RPN1 ribophorin I protein-coding 45 0.005365
-6185 RPN2 ribophorin II protein-coding 55 0.006557
-6187 RPS2 ribosomal protein S2 protein-coding 34 0.004053
-6188 RPS3 ribosomal protein S3 protein-coding 27 0.003219
-6189 RPS3A ribosomal protein S3A protein-coding 19 0.002265
-6191 RPS4X ribosomal protein S4, X-linked protein-coding 24 0.002861
-6192 RPS4Y1 ribosomal protein S4, Y-linked 1 protein-coding 8 0.0009537
-6193 RPS5 ribosomal protein S5 protein-coding 29 0.003457
-6194 RPS6 ribosomal protein S6 protein-coding 36 0.004292
-6195 RPS6KA1 ribosomal protein S6 kinase A1 protein-coding 76 0.009061
-6196 RPS6KA2 ribosomal protein S6 kinase A2 protein-coding 112 0.01335
-6197 RPS6KA3 ribosomal protein S6 kinase A3 protein-coding 110 0.01311
-6198 RPS6KB1 ribosomal protein S6 kinase B1 protein-coding 40 0.004769
-6199 RPS6KB2 ribosomal protein S6 kinase B2 protein-coding 47 0.005603
-6201 RPS7 ribosomal protein S7 protein-coding 20 0.002384
-6202 RPS8 ribosomal protein S8 protein-coding 15 0.001788
-6203 RPS9 ribosomal protein S9 protein-coding 19 0.002265
-6204 RPS10 ribosomal protein S10 protein-coding 20 0.002384
-6205 RPS11 ribosomal protein S11 protein-coding 16 0.001907
-6206 RPS12 ribosomal protein S12 protein-coding 17 0.002027
-6207 RPS13 ribosomal protein S13 protein-coding 17 0.002027
-6208 RPS14 ribosomal protein S14 protein-coding 13 0.00155
-6209 RPS15 ribosomal protein S15 protein-coding 9 0.001073
-6210 RPS15A ribosomal protein S15a protein-coding 5 0.0005961
-6217 RPS16 ribosomal protein S16 protein-coding 12 0.001431
-6222 RPS18 ribosomal protein S18 protein-coding 20 0.002384
-6223 RPS19 ribosomal protein S19 protein-coding 13 0.00155
-6224 RPS20 ribosomal protein S20 protein-coding 16 0.001907
-6227 RPS21 ribosomal protein S21 protein-coding 10 0.001192
-6228 RPS23 ribosomal protein S23 protein-coding 6 0.0007153
-6229 RPS24 ribosomal protein S24 protein-coding 25 0.00298
-6230 RPS25 ribosomal protein S25 protein-coding 15 0.001788
-6231 RPS26 ribosomal protein S26 protein-coding 11 0.001311
-6232 RPS27 ribosomal protein S27 protein-coding 9 0.001073
-6233 RPS27A ribosomal protein S27a protein-coding 91 0.01085
-6234 RPS28 ribosomal protein S28 protein-coding 7 0.0008345
-6235 RPS29 ribosomal protein S29 protein-coding 6 0.0007153
-6236 RRAD RRAD, Ras related glycolysis inhibitor and calcium channel regulator protein-coding 33 0.003934
-6237 RRAS RAS related protein-coding 23 0.002742
-6238 RRBP1 ribosome binding protein 1 protein-coding 117 0.01395
-6239 RREB1 ras responsive element binding protein 1 protein-coding 168 0.02003
-6240 RRM1 ribonucleotide reductase catalytic subunit M1 protein-coding 67 0.007988
-6241 RRM2 ribonucleotide reductase regulatory subunit M2 protein-coding 37 0.004411
-6242 RTKN rhotekin protein-coding 62 0.007392
-6247 RS1 retinoschisin 1 protein-coding 43 0.005126
-6248 RSC1A1 regulator of solute carriers 1 protein-coding 96 0.01144
-6249 CLIP1 CAP-Gly domain containing linker protein 1 protein-coding 137 0.01633
-6251 RSU1 Ras suppressor protein 1 protein-coding 31 0.003696
-6252 RTN1 reticulon 1 protein-coding 153 0.01824
-6253 RTN2 reticulon 2 protein-coding 73 0.008703
-6256 RXRA retinoid X receptor alpha protein-coding 86 0.01025
-6257 RXRB retinoid X receptor beta protein-coding 56 0.006676
-6258 RXRG retinoid X receptor gamma protein-coding 90 0.01073
-6259 RYK receptor-like tyrosine kinase protein-coding 46 0.005484
-6261 RYR1 ryanodine receptor 1 protein-coding 606 0.07225
-6262 RYR2 ryanodine receptor 2 protein-coding 1039 0.1239
-6263 RYR3 ryanodine receptor 3 protein-coding 630 0.07511
-6271 S100A1 S100 calcium binding protein A1 protein-coding 10 0.001192
-6272 SORT1 sortilin 1 protein-coding 69 0.008226
-6273 S100A2 S100 calcium binding protein A2 protein-coding 6 0.0007153
-6274 S100A3 S100 calcium binding protein A3 protein-coding 16 0.001907
-6275 S100A4 S100 calcium binding protein A4 protein-coding 20 0.002384
-6276 S100A5 S100 calcium binding protein A5 protein-coding 15 0.001788
-6277 S100A6 S100 calcium binding protein A6 protein-coding 7 0.0008345
-6278 S100A7 S100 calcium binding protein A7 protein-coding 36 0.004292
-6279 S100A8 S100 calcium binding protein A8 protein-coding 18 0.002146
-6280 S100A9 S100 calcium binding protein A9 protein-coding 13 0.00155
-6281 S100A10 S100 calcium binding protein A10 protein-coding 9 0.001073
-6282 S100A11 S100 calcium binding protein A11 protein-coding 8 0.0009537
-6283 S100A12 S100 calcium binding protein A12 protein-coding 14 0.001669
-6284 S100A13 S100 calcium binding protein A13 protein-coding 11 0.001311
-6285 S100B S100 calcium binding protein B protein-coding 18 0.002146
-6286 S100P S100 calcium binding protein P protein-coding 5 0.0005961
-6288 SAA1 serum amyloid A1 protein-coding 21 0.002504
-6289 SAA2 serum amyloid A2 protein-coding 23 0.002742
-6290 SAA3P serum amyloid A3, pseudogene pseudo 17 0.002027
-6291 SAA4 serum amyloid A4, constitutive protein-coding 22 0.002623
-6293 VPS52 VPS52, GARP complex subunit protein-coding 87 0.01037
-6294 SAFB scaffold attachment factor B protein-coding 111 0.01323
-6295 SAG S-antigen visual arrestin protein-coding 54 0.006438
-6296 ACSM3 acyl-CoA synthetase medium chain family member 3 protein-coding 85 0.01013
-6297 SALL2 spalt like transcription factor 2 protein-coding 105 0.01252
-6299 SALL1 spalt like transcription factor 1 protein-coding 270 0.03219
-6300 MAPK12 mitogen-activated protein kinase 12 protein-coding 21 0.002504
-6301 SARS seryl-tRNA synthetase protein-coding 57 0.006795
-6302 TSPAN31 tetraspanin 31 protein-coding 31 0.003696
-6303 SAT1 spermidine/spermine N1-acetyltransferase 1 protein-coding 28 0.003338
-6304 SATB1 SATB homeobox 1 protein-coding 109 0.01299
-6305 SBF1 SET binding factor 1 protein-coding 181 0.02158
-6307 MSMO1 methylsterol monooxygenase 1 protein-coding 33 0.003934
-6309 SC5D sterol-C5-desaturase protein-coding 39 0.004649
-6310 ATXN1 ataxin 1 protein-coding 115 0.01371
-6311 ATXN2 ataxin 2 protein-coding 125 0.0149
-6314 ATXN7 ataxin 7 protein-coding 92 0.01097
-6315 ATXN8OS ATXN8 opposite strand (non-protein coding) ncRNA 5 0.0005961
-6317 SERPINB3 serpin family B member 3 protein-coding 90 0.01073
-6318 SERPINB4 serpin family B member 4 protein-coding 84 0.01001
-6319 SCD stearoyl-CoA desaturase protein-coding 34 0.004053
-6320 CLEC11A C-type lectin domain containing 11A protein-coding 20 0.002384
-6322 SCML1 Scm polycomb group protein like 1 protein-coding 36 0.004292
-6323 SCN1A sodium voltage-gated channel alpha subunit 1 protein-coding 359 0.0428
-6324 SCN1B sodium voltage-gated channel beta subunit 1 protein-coding 27 0.003219
-6326 SCN2A sodium voltage-gated channel alpha subunit 2 protein-coding 321 0.03827
-6327 SCN2B sodium voltage-gated channel beta subunit 2 protein-coding 41 0.004888
-6328 SCN3A sodium voltage-gated channel alpha subunit 3 protein-coding 299 0.03565
-6329 SCN4A sodium voltage-gated channel alpha subunit 4 protein-coding 224 0.0267
-6330 SCN4B sodium voltage-gated channel beta subunit 4 protein-coding 21 0.002504
-6331 SCN5A sodium voltage-gated channel alpha subunit 5 protein-coding 285 0.03398
-6332 SCN7A sodium voltage-gated channel alpha subunit 7 protein-coding 247 0.02945
-6334 SCN8A sodium voltage-gated channel alpha subunit 8 protein-coding 194 0.02313
-6335 SCN9A sodium voltage-gated channel alpha subunit 9 protein-coding 292 0.03481
-6336 SCN10A sodium voltage-gated channel alpha subunit 10 protein-coding 320 0.03815
-6337 SCNN1A sodium channel epithelial 1 alpha subunit protein-coding 69 0.008226
-6338 SCNN1B sodium channel epithelial 1 beta subunit protein-coding 86 0.01025
-6339 SCNN1D sodium channel epithelial 1 delta subunit protein-coding 62 0.007392
-6340 SCNN1G sodium channel epithelial 1 gamma subunit protein-coding 88 0.01049
-6341 SCO1 SCO1, cytochrome c oxidase assembly protein protein-coding 27 0.003219
-6342 SCP2 sterol carrier protein 2 protein-coding 59 0.007034
-6343 SCT secretin protein-coding 6 0.0007153
-6344 SCTR secretin receptor protein-coding 55 0.006557
-6345 SRL sarcalumenin protein-coding 65 0.007749
-6346 CCL1 C-C motif chemokine ligand 1 protein-coding 27 0.003219
-6347 CCL2 C-C motif chemokine ligand 2 protein-coding 13 0.00155
-6348 CCL3 C-C motif chemokine ligand 3 protein-coding 20 0.002384
-6349 CCL3L1 C-C motif chemokine ligand 3 like 1 protein-coding 3 0.0003577
-6351 CCL4 C-C motif chemokine ligand 4 protein-coding 16 0.001907
-6352 CCL5 C-C motif chemokine ligand 5 protein-coding 12 0.001431
-6354 CCL7 C-C motif chemokine ligand 7 protein-coding 25 0.00298
-6355 CCL8 C-C motif chemokine ligand 8 protein-coding 15 0.001788
-6356 CCL11 C-C motif chemokine ligand 11 protein-coding 15 0.001788
-6357 CCL13 C-C motif chemokine ligand 13 protein-coding 84 0.01001
-6358 CCL14 C-C motif chemokine ligand 14 protein-coding 124 0.01478
-6359 CCL15 C-C motif chemokine ligand 15 protein-coding 87 0.01037
-6360 CCL16 C-C motif chemokine ligand 16 protein-coding 23 0.002742
-6361 CCL17 C-C motif chemokine ligand 17 protein-coding 14 0.001669
-6362 CCL18 C-C motif chemokine ligand 18 protein-coding 15 0.001788
-6363 CCL19 C-C motif chemokine ligand 19 protein-coding 7 0.0008345
-6364 CCL20 C-C motif chemokine ligand 20 protein-coding 20 0.002384
-6366 CCL21 C-C motif chemokine ligand 21 protein-coding 11 0.001311
-6367 CCL22 C-C motif chemokine ligand 22 protein-coding 16 0.001907
-6368 CCL23 C-C motif chemokine ligand 23 protein-coding 27 0.003219
-6369 CCL24 C-C motif chemokine ligand 24 protein-coding 15 0.001788
-6370 CCL25 C-C motif chemokine ligand 25 protein-coding 21 0.002504
-6372 CXCL6 C-X-C motif chemokine ligand 6 protein-coding 17 0.002027
-6373 CXCL11 C-X-C motif chemokine ligand 11 protein-coding 11 0.001311
-6374 CXCL5 C-X-C motif chemokine ligand 5 protein-coding 22 0.002623
-6375 XCL1 X-C motif chemokine ligand 1 protein-coding 26 0.0031
-6376 CX3CL1 C-X3-C motif chemokine ligand 1 protein-coding 53 0.006319
-6382 SDC1 syndecan 1 protein-coding 21 0.002504
-6383 SDC2 syndecan 2 protein-coding 39 0.004649
-6385 SDC4 syndecan 4 protein-coding 29 0.003457
-6386 SDCBP syndecan binding protein protein-coding 36 0.004292
-6387 CXCL12 C-X-C motif chemokine ligand 12 protein-coding 26 0.0031
-6388 SDF2 stromal cell derived factor 2 protein-coding 22 0.002623
-6389 SDHA succinate dehydrogenase complex flavoprotein subunit A protein-coding 95 0.01133
-6390 SDHB succinate dehydrogenase complex iron sulfur subunit B protein-coding 33 0.003934
-6391 SDHC succinate dehydrogenase complex subunit C protein-coding 17 0.002027
-6392 SDHD succinate dehydrogenase complex subunit D protein-coding 22 0.002623
-6396 SEC13 SEC13 homolog, nuclear pore and COPII coat complex component protein-coding 29 0.003457
-6397 SEC14L1 SEC14 like lipid binding 1 protein-coding 93 0.01109
-6398 SECTM1 secreted and transmembrane 1 protein-coding 21 0.002504
-6399 TRAPPC2 trafficking protein particle complex 2 protein-coding 37 0.004411
-6400 SEL1L SEL1L ERAD E3 ligase adaptor subunit protein-coding 83 0.009895
-6401 SELE selectin E protein-coding 96 0.01144
-6402 SELL selectin L protein-coding 52 0.006199
-6403 SELP selectin P protein-coding 160 0.01907
-6404 SELPLG selectin P ligand protein-coding 48 0.005722
-6405 SEMA3F semaphorin 3F protein-coding 80 0.009537
-6406 SEMG1 semenogelin 1 protein-coding 63 0.007511
-6407 SEMG2 semenogelin 2 protein-coding 98 0.01168
-6414 SELENOP selenoprotein P protein-coding 205 0.02444
-6415 SELENOW selenoprotein W protein-coding 10 0.001192
-6416 MAP2K4 mitogen-activated protein kinase kinase 4 protein-coding 113 0.01347
-6418 SET SET nuclear proto-oncogene protein-coding 43 0.005126
-6419 SETMAR SET domain and mariner transposase fusion gene protein-coding 53 0.006319
-6421 SFPQ splicing factor proline and glutamine rich protein-coding 62 0.007392
-6422 SFRP1 secreted frizzled related protein 1 protein-coding 36 0.004292
-6423 SFRP2 secreted frizzled related protein 2 protein-coding 40 0.004769
-6424 SFRP4 secreted frizzled related protein 4 protein-coding 79 0.009418
-6425 SFRP5 secreted frizzled related protein 5 protein-coding 24 0.002861
-6426 SRSF1 serine and arginine rich splicing factor 1 protein-coding 45 0.005365
-6427 SRSF2 serine and arginine rich splicing factor 2 protein-coding 45 0.005365
-6428 SRSF3 serine and arginine rich splicing factor 3 protein-coding 21 0.002504
-6429 SRSF4 serine and arginine rich splicing factor 4 protein-coding 71 0.008464
-6430 SRSF5 serine and arginine rich splicing factor 5 protein-coding 48 0.005722
-6431 SRSF6 serine and arginine rich splicing factor 6 protein-coding 66 0.007868
-6432 SRSF7 serine and arginine rich splicing factor 7 protein-coding 44 0.005246
-6433 SFSWAP splicing factor SWAP protein-coding 107 0.01276
-6434 TRA2B transformer 2 beta homolog protein-coding 69 0.008226
-6439 SFTPB surfactant protein B protein-coding 40 0.004769
-6440 SFTPC surfactant protein C protein-coding 19 0.002265
-6441 SFTPD surfactant protein D protein-coding 44 0.005246
-6442 SGCA sarcoglycan alpha protein-coding 51 0.00608
-6443 SGCB sarcoglycan beta protein-coding 40 0.004769
-6444 SGCD sarcoglycan delta protein-coding 66 0.007868
-6445 SGCG sarcoglycan gamma protein-coding 106 0.01264
-6446 SGK1 serum/glucocorticoid regulated kinase 1 protein-coding 75 0.008941
-6447 SCG5 secretogranin V protein-coding 22 0.002623
-6448 SGSH N-sulfoglucosamine sulfohydrolase protein-coding 38 0.00453
-6449 SGTA small glutamine rich tetratricopeptide repeat containing alpha protein-coding 35 0.004173
-6450 SH3BGR SH3 domain binding glutamate rich protein protein-coding 38 0.00453
-6451 SH3BGRL SH3 domain binding glutamate rich protein like protein-coding 59 0.007034
-6452 SH3BP2 SH3 domain binding protein 2 protein-coding 74 0.008822
-6453 ITSN1 intersectin 1 protein-coding 186 0.02217
-6455 SH3GL1 SH3 domain containing GRB2 like 1, endophilin A2 protein-coding 49 0.005842
-6456 SH3GL2 SH3 domain containing GRB2 like 2, endophilin A1 protein-coding 66 0.007868
-6457 SH3GL3 SH3 domain containing GRB2 like 3, endophilin A3 protein-coding 69 0.008226
-6461 SHB SH2 domain containing adaptor protein B protein-coding 44 0.005246
-6462 SHBG sex hormone binding globulin protein-coding 49 0.005842
-6464 SHC1 SHC adaptor protein 1 protein-coding 62 0.007392
-6468 FBXW4 F-box and WD repeat domain containing 4 protein-coding 34 0.004053
-6469 SHH sonic hedgehog protein-coding 51 0.00608
-6470 SHMT1 serine hydroxymethyltransferase 1 protein-coding 45 0.005365
-6472 SHMT2 serine hydroxymethyltransferase 2 protein-coding 48 0.005722
-6473 SHOX short stature homeobox protein-coding 72 0.008584
-6474 SHOX2 short stature homeobox 2 protein-coding 66 0.007868
-6476 SI sucrase-isomaltase protein-coding 449 0.05353
-6477 SIAH1 siah E3 ubiquitin protein ligase 1 protein-coding 43 0.005126
-6478 SIAH2 siah E3 ubiquitin protein ligase 2 protein-coding 44 0.005246
-6480 ST6GAL1 ST6 beta-galactoside alpha-2,6-sialyltransferase 1 protein-coding 47 0.005603
-6482 ST3GAL1 ST3 beta-galactoside alpha-2,3-sialyltransferase 1 protein-coding 46 0.005484
-6483 ST3GAL2 ST3 beta-galactoside alpha-2,3-sialyltransferase 2 protein-coding 38 0.00453
-6484 ST3GAL4 ST3 beta-galactoside alpha-2,3-sialyltransferase 4 protein-coding 32 0.003815
-6487 ST3GAL3 ST3 beta-galactoside alpha-2,3-sialyltransferase 3 protein-coding 53 0.006319
-6489 ST8SIA1 ST8 alpha-N-acetyl-neuraminide alpha-2,8-sialyltransferase 1 protein-coding 59 0.007034
-6490 PMEL premelanosome protein protein-coding 489 0.0583
-6491 STIL STIL, centriolar assembly protein protein-coding 133 0.01586
-6492 SIM1 single-minded family bHLH transcription factor 1 protein-coding 167 0.01991
-6493 SIM2 single-minded family bHLH transcription factor 2 protein-coding 59 0.007034
-6494 SIPA1 signal-induced proliferation-associated 1 protein-coding 67 0.007988
-6495 SIX1 SIX homeobox 1 protein-coding 43 0.005126
-6496 SIX3 SIX homeobox 3 protein-coding 45 0.005365
-6497 SKI SKI proto-oncogene protein-coding 49 0.005842
-6498 SKIL SKI like proto-oncogene protein-coding 84 0.01001
-6499 SKIV2L Ski2 like RNA helicase protein-coding 113 0.01347
-6500 SKP1 S-phase kinase associated protein 1 protein-coding 22 0.002623
-6502 SKP2 S-phase kinase associated protein 2 protein-coding 46 0.005484
-6503 SLA Src like adaptor protein-coding 70 0.008345
-6504 SLAMF1 signaling lymphocytic activation molecule family member 1 protein-coding 69 0.008226
-6505 SLC1A1 solute carrier family 1 member 1 protein-coding 52 0.006199
-6506 SLC1A2 solute carrier family 1 member 2 protein-coding 68 0.008107
-6507 SLC1A3 solute carrier family 1 member 3 protein-coding 78 0.009299
-6508 SLC4A3 solute carrier family 4 member 3 protein-coding 163 0.01943
-6509 SLC1A4 solute carrier family 1 member 4 protein-coding 37 0.004411
-6510 SLC1A5 solute carrier family 1 member 5 protein-coding 50 0.005961
-6511 SLC1A6 solute carrier family 1 member 6 protein-coding 123 0.01466
-6512 SLC1A7 solute carrier family 1 member 7 protein-coding 71 0.008464
-6513 SLC2A1 solute carrier family 2 member 1 protein-coding 53 0.006319
-6514 SLC2A2 solute carrier family 2 member 2 protein-coding 92 0.01097
-6515 SLC2A3 solute carrier family 2 member 3 protein-coding 89 0.01061
-6517 SLC2A4 solute carrier family 2 member 4 protein-coding 59 0.007034
-6518 SLC2A5 solute carrier family 2 member 5 protein-coding 58 0.006915
-6519 SLC3A1 solute carrier family 3 member 1 protein-coding 96 0.01144
-6520 SLC3A2 solute carrier family 3 member 2 protein-coding 82 0.009776
-6521 SLC4A1 solute carrier family 4 member 1 (Diego blood group) protein-coding 126 0.01502
-6522 SLC4A2 solute carrier family 4 member 2 protein-coding 132 0.01574
-6523 SLC5A1 solute carrier family 5 member 1 protein-coding 85 0.01013
-6524 SLC5A2 solute carrier family 5 member 2 protein-coding 85 0.01013
-6525 SMTN smoothelin protein-coding 132 0.01574
-6526 SLC5A3 solute carrier family 5 member 3 protein-coding 70 0.008345
-6527 SLC5A4 solute carrier family 5 member 4 protein-coding 91 0.01085
-6528 SLC5A5 solute carrier family 5 member 5 protein-coding 88 0.01049
-6529 SLC6A1 solute carrier family 6 member 1 protein-coding 88 0.01049
-6530 SLC6A2 solute carrier family 6 member 2 protein-coding 274 0.03267
-6531 SLC6A3 solute carrier family 6 member 3 protein-coding 124 0.01478
-6532 SLC6A4 solute carrier family 6 member 4 protein-coding 313 0.03732
-6533 SLC6A6 solute carrier family 6 member 6 protein-coding 71 0.008464
-6534 SLC6A7 solute carrier family 6 member 7 protein-coding 71 0.008464
-6535 SLC6A8 solute carrier family 6 member 8 protein-coding 50 0.005961
-6536 SLC6A9 solute carrier family 6 member 9 protein-coding 83 0.009895
-6538 SLC6A11 solute carrier family 6 member 11 protein-coding 95 0.01133
-6539 SLC6A12 solute carrier family 6 member 12 protein-coding 77 0.00918
-6540 SLC6A13 solute carrier family 6 member 13 protein-coding 99 0.0118
-6541 SLC7A1 solute carrier family 7 member 1 protein-coding 70 0.008345
-6542 SLC7A2 solute carrier family 7 member 2 protein-coding 91 0.01085
-6543 SLC8A2 solute carrier family 8 member A2 protein-coding 119 0.01419
-6545 SLC7A4 solute carrier family 7 member 4 protein-coding 71 0.008464
-6546 SLC8A1 solute carrier family 8 member A1 protein-coding 226 0.02694
-6547 SLC8A3 solute carrier family 8 member A3 protein-coding 167 0.01991
-6548 SLC9A1 solute carrier family 9 member A1 protein-coding 79 0.009418
-6549 SLC9A2 solute carrier family 9 member A2 protein-coding 127 0.01514
-6550 SLC9A3 solute carrier family 9 member A3 protein-coding 107 0.01276
-6553 SLC9A5 solute carrier family 9 member A5 protein-coding 94 0.01121
-6554 SLC10A1 solute carrier family 10 member 1 protein-coding 33 0.003934
-6555 SLC10A2 solute carrier family 10 member 2 protein-coding 82 0.009776
-6556 SLC11A1 solute carrier family 11 member 1 protein-coding 61 0.007272
-6557 SLC12A1 solute carrier family 12 member 1 protein-coding 168 0.02003
-6558 SLC12A2 solute carrier family 12 member 2 protein-coding 121 0.01443
-6559 SLC12A3 solute carrier family 12 member 3 protein-coding 112 0.01335
-6560 SLC12A4 solute carrier family 12 member 4 protein-coding 117 0.01395
-6561 SLC13A1 solute carrier family 13 member 1 protein-coding 123 0.01466
-6563 SLC14A1 solute carrier family 14 member 1 (Kidd blood group) protein-coding 65 0.007749
-6564 SLC15A1 solute carrier family 15 member 1 protein-coding 89 0.01061
-6565 SLC15A2 solute carrier family 15 member 2 protein-coding 104 0.0124
-6566 SLC16A1 solute carrier family 16 member 1 protein-coding 69 0.008226
-6567 SLC16A2 solute carrier family 16 member 2 protein-coding 70 0.008345
-6568 SLC17A1 solute carrier family 17 member 1 protein-coding 74 0.008822
-6569 SLC34A1 solute carrier family 34 member 1 protein-coding 137 0.01633
-6570 SLC18A1 solute carrier family 18 member A1 protein-coding 93 0.01109
-6571 SLC18A2 solute carrier family 18 member A2 protein-coding 84 0.01001
-6572 SLC18A3 solute carrier family 18 member A3 protein-coding 106 0.01264
-6573 SLC19A1 solute carrier family 19 member 1 protein-coding 171 0.02039
-6574 SLC20A1 solute carrier family 20 member 1 protein-coding 73 0.008703
-6575 SLC20A2 solute carrier family 20 member 2 protein-coding 79 0.009418
-6576 SLC25A1 solute carrier family 25 member 1 protein-coding 24 0.002861
-6578 SLCO2A1 solute carrier organic anion transporter family member 2A1 protein-coding 113 0.01347
-6579 SLCO1A2 solute carrier organic anion transporter family member 1A2 protein-coding 109 0.01299
-6580 SLC22A1 solute carrier family 22 member 1 protein-coding 61 0.007272
-6581 SLC22A3 solute carrier family 22 member 3 protein-coding 65 0.007749
-6582 SLC22A2 solute carrier family 22 member 2 protein-coding 100 0.01192
-6583 SLC22A4 solute carrier family 22 member 4 protein-coding 55 0.006557
-6584 SLC22A5 solute carrier family 22 member 5 protein-coding 50 0.005961
-6585 SLIT1 slit guidance ligand 1 protein-coding 359 0.0428
-6586 SLIT3 slit guidance ligand 3 protein-coding 359 0.0428
-6588 SLN sarcolipin protein-coding 9 0.001073
-6590 SLPI secretory leukocyte peptidase inhibitor protein-coding 47 0.005603
-6591 SNAI2 snail family transcriptional repressor 2 protein-coding 50 0.005961
-6594 SMARCA1 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily a, member 1 protein-coding 171 0.02039
-6595 SMARCA2 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily a, member 2 protein-coding 199 0.02372
-6596 HLTF helicase like transcription factor protein-coding 105 0.01252
-6597 SMARCA4 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily a, member 4 protein-coding 313 0.03732
-6598 SMARCB1 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily b, member 1 protein-coding 74 0.008822
-6599 SMARCC1 SWI/SNF related, matrix associated, actin dependent regulator of chromatin subfamily c member 1 protein-coding 103 0.01228
-6601 SMARCC2 SWI/SNF related, matrix associated, actin dependent regulator of chromatin subfamily c member 2 protein-coding 145 0.01729
-6602 SMARCD1 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily d, member 1 protein-coding 48 0.005722
-6603 SMARCD2 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily d, member 2 protein-coding 65 0.007749
-6604 SMARCD3 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily d, member 3 protein-coding 53 0.006319
-6605 SMARCE1 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily e, member 1 protein-coding 50 0.005961
-6606 SMN1 survival of motor neuron 1, telomeric protein-coding 5 0.0005961
-6607 SMN2 survival of motor neuron 2, centromeric protein-coding 2 0.0002384
-6608 SMO smoothened, frizzled class receptor protein-coding 103 0.01228
-6609 SMPD1 sphingomyelin phosphodiesterase 1 protein-coding 70 0.008345
-6610 SMPD2 sphingomyelin phosphodiesterase 2 protein-coding 53 0.006319
-6611 SMS spermine synthase protein-coding 51 0.00608
-6612 SUMO3 small ubiquitin-like modifier 3 protein-coding 11 0.001311
-6613 SUMO2 small ubiquitin-like modifier 2 protein-coding 21 0.002504
-6614 SIGLEC1 sialic acid binding Ig like lectin 1 protein-coding 221 0.02635
-6615 SNAI1 snail family transcriptional repressor 1 protein-coding 44 0.005246
-6616 SNAP25 synaptosome associated protein 25 protein-coding 44 0.005246
-6617 SNAPC1 small nuclear RNA activating complex polypeptide 1 protein-coding 52 0.006199
-6618 SNAPC2 small nuclear RNA activating complex polypeptide 2 protein-coding 39 0.004649
-6619 SNAPC3 small nuclear RNA activating complex polypeptide 3 protein-coding 29 0.003457
-6620 SNCB synuclein beta protein-coding 22 0.002623
-6621 SNAPC4 small nuclear RNA activating complex polypeptide 4 protein-coding 115 0.01371
-6622 SNCA synuclein alpha protein-coding 20 0.002384
-6623 SNCG synuclein gamma protein-coding 17 0.002027
-6624 FSCN1 fascin actin-bundling protein 1 protein-coding 148 0.01764
-6625 SNRNP70 small nuclear ribonucleoprotein U1 subunit 70 protein-coding 40 0.004769
-6626 SNRPA small nuclear ribonucleoprotein polypeptide A protein-coding 41 0.004888
-6627 SNRPA1 small nuclear ribonucleoprotein polypeptide A' protein-coding 29 0.003457
-6628 SNRPB small nuclear ribonucleoprotein polypeptides B and B1 protein-coding 26 0.0031
-6629 SNRPB2 small nuclear ribonucleoprotein polypeptide B2 protein-coding 23 0.002742
-6631 SNRPC small nuclear ribonucleoprotein polypeptide C protein-coding 26 0.0031
-6632 SNRPD1 small nuclear ribonucleoprotein D1 polypeptide protein-coding 11 0.001311
-6633 SNRPD2 small nuclear ribonucleoprotein D2 polypeptide protein-coding 37 0.004411
-6634 SNRPD3 small nuclear ribonucleoprotein D3 polypeptide protein-coding 17 0.002027
-6635 SNRPE small nuclear ribonucleoprotein polypeptide E protein-coding 14 0.001669
-6636 SNRPF small nuclear ribonucleoprotein polypeptide F protein-coding 5 0.0005961
-6637 SNRPG small nuclear ribonucleoprotein polypeptide G protein-coding 8 0.0009537
-6638 SNRPN small nuclear ribonucleoprotein polypeptide N protein-coding 84 0.01001
-6640 SNTA1 syntrophin alpha 1 protein-coding 42 0.005007
-6641 SNTB1 syntrophin beta 1 protein-coding 59 0.007034
-6642 SNX1 sorting nexin 1 protein-coding 62 0.007392
-6643 SNX2 sorting nexin 2 protein-coding 55 0.006557
-6645 SNTB2 syntrophin beta 2 protein-coding 25 0.00298
-6646 SOAT1 sterol O-acyltransferase 1 protein-coding 123 0.01466
-6647 SOD1 superoxide dismutase 1 protein-coding 19 0.002265
-6648 SOD2 superoxide dismutase 2 protein-coding 24 0.002861
-6649 SOD3 superoxide dismutase 3 protein-coding 11 0.001311
-6650 CAPN15 calpain 15 protein-coding 84 0.01001
-6651 SON SON DNA binding protein protein-coding 180 0.02146
-6652 SORD sorbitol dehydrogenase protein-coding 30 0.003577
-6653 SORL1 sortilin related receptor 1 protein-coding 219 0.02611
-6654 SOS1 SOS Ras/Rac guanine nucleotide exchange factor 1 protein-coding 331 0.03946
-6655 SOS2 SOS Ras/Rho guanine nucleotide exchange factor 2 protein-coding 144 0.01717
-6656 SOX1 SRY-box 1 protein-coding 31 0.003696
-6657 SOX2 SRY-box 2 protein-coding 42 0.005007
-6658 SOX3 SRY-box 3 protein-coding 71 0.008464
-6659 SOX4 SRY-box 4 protein-coding 29 0.003457
-6660 SOX5 SRY-box 5 protein-coding 160 0.01907
-6662 SOX9 SRY-box 9 protein-coding 146 0.01741
-6663 SOX10 SRY-box 10 protein-coding 54 0.006438
-6664 SOX11 SRY-box 11 protein-coding 67 0.007988
-6665 SOX15 SRY-box 15 protein-coding 22 0.002623
-6666 SOX12 SRY-box 12 protein-coding 14 0.001669
-6667 SP1 Sp1 transcription factor protein-coding 85 0.01013
-6668 SP2 Sp2 transcription factor protein-coding 40 0.004769
-6670 SP3 Sp3 transcription factor protein-coding 77 0.00918
-6671 SP4 Sp4 transcription factor protein-coding 91 0.01085
-6672 SP100 SP100 nuclear antigen protein-coding 120 0.01431
-6674 SPAG1 sperm associated antigen 1 protein-coding 94 0.01121
-6675 UAP1 UDP-N-acetylglucosamine pyrophosphorylase 1 protein-coding 61 0.007272
-6676 SPAG4 sperm associated antigen 4 protein-coding 36 0.004292
-6677 SPAM1 sperm adhesion molecule 1 protein-coding 182 0.0217
-6678 SPARC secreted protein acidic and cysteine rich protein-coding 57 0.006795
-6683 SPAST spastin protein-coding 62 0.007392
-6687 SPG7 SPG7, paraplegin matrix AAA peptidase subunit protein-coding 86 0.01025
-6688 SPI1 Spi-1 proto-oncogene protein-coding 39 0.004649
-6689 SPIB Spi-B transcription factor protein-coding 38 0.00453
-6690 SPINK1 serine peptidase inhibitor, Kazal type 1 protein-coding 8 0.0009537
-6691 SPINK2 serine peptidase inhibitor, Kazal type 2 protein-coding 12 0.001431
-6692 SPINT1 serine peptidase inhibitor, Kunitz type 1 protein-coding 38 0.00453
-6693 SPN sialophorin protein-coding 40 0.004769
-6694 SPP2 secreted phosphoprotein 2 protein-coding 44 0.005246
-6695 SPOCK1 SPARC (osteonectin), cwcv and kazal like domains proteoglycan 1 protein-coding 65 0.007749
-6696 SPP1 secreted phosphoprotein 1 protein-coding 50 0.005961
-6697 SPR sepiapterin reductase protein-coding 19 0.002265
-6698 SPRR1A small proline rich protein 1A protein-coding 17 0.002027
-6699 SPRR1B small proline rich protein 1B protein-coding 20 0.002384
-6700 SPRR2A small proline rich protein 2A protein-coding 17 0.002027
-6701 SPRR2B small proline rich protein 2B protein-coding 17 0.002027
-6703 SPRR2D small proline rich protein 2D protein-coding 20 0.002384
-6704 SPRR2E small proline rich protein 2E protein-coding 20 0.002384
-6705 SPRR2F small proline rich protein 2F protein-coding 10 0.001192
-6706 SPRR2G small proline rich protein 2G protein-coding 18 0.002146
-6707 SPRR3 small proline rich protein 3 protein-coding 31 0.003696
-6708 SPTA1 spectrin alpha, erythrocytic 1 protein-coding 723 0.08619
-6709 SPTAN1 spectrin alpha, non-erythrocytic 1 protein-coding 258 0.03076
-6710 SPTB spectrin beta, erythrocytic protein-coding 245 0.02921
-6711 SPTBN1 spectrin beta, non-erythrocytic 1 protein-coding 237 0.02825
-6712 SPTBN2 spectrin beta, non-erythrocytic 2 protein-coding 219 0.02611
-6713 SQLE squalene epoxidase protein-coding 60 0.007153
-6714 SRC SRC proto-oncogene, non-receptor tyrosine kinase protein-coding 39 0.004649
-6715 SRD5A1 steroid 5 alpha-reductase 1 protein-coding 23 0.002742
-6716 SRD5A2 steroid 5 alpha-reductase 2 protein-coding 36 0.004292
-6717 SRI sorcin protein-coding 19 0.002265
-6718 AKR1D1 aldo-keto reductase family 1 member D1 protein-coding 71 0.008464
-6720 SREBF1 sterol regulatory element binding transcription factor 1 protein-coding 99 0.0118
-6721 SREBF2 sterol regulatory element binding transcription factor 2 protein-coding 99 0.0118
-6722 SRF serum response factor protein-coding 29 0.003457
-6723 SRM spermidine synthase protein-coding 29 0.003457
-6725 SRMS src-related kinase lacking C-terminal regulatory tyrosine and N-terminal myristylation sites protein-coding 99 0.0118
-6726 SRP9 signal recognition particle 9 protein-coding 12 0.001431
-6727 SRP14 signal recognition particle 14 protein-coding 14 0.001669
-6728 SRP19 signal recognition particle 19 protein-coding 19 0.002265
-6729 SRP54 signal recognition particle 54 protein-coding 46 0.005484
-6730 SRP68 signal recognition particle 68 protein-coding 66 0.007868
-6731 SRP72 signal recognition particle 72 protein-coding 84 0.01001
-6732 SRPK1 SRSF protein kinase 1 protein-coding 69 0.008226
-6733 SRPK2 SRSF protein kinase 2 protein-coding 74 0.008822
-6734 SRPRA SRP receptor alpha subunit protein-coding 94 0.01121
-6736 SRY sex determining region Y protein-coding 7 0.0008345
-6737 TRIM21 tripartite motif containing 21 protein-coding 60 0.007153
-6738 TROVE2 TROVE domain family member 2 protein-coding 58 0.006915
-6741 SSB Sjogren syndrome antigen B protein-coding 39 0.004649
-6742 SSBP1 single stranded DNA binding protein 1 protein-coding 25 0.00298
-6744 SSFA2 sperm specific antigen 2 protein-coding 128 0.01526
-6745 SSR1 signal sequence receptor subunit 1 protein-coding 20 0.002384
-6746 SSR2 signal sequence receptor subunit 2 protein-coding 19 0.002265
-6747 SSR3 signal sequence receptor subunit 3 protein-coding 28 0.003338
-6748 SSR4 signal sequence receptor subunit 4 protein-coding 26 0.0031
-6749 SSRP1 structure specific recognition protein 1 protein-coding 82 0.009776
-6750 SST somatostatin protein-coding 18 0.002146
-6751 SSTR1 somatostatin receptor 1 protein-coding 77 0.00918
-6752 SSTR2 somatostatin receptor 2 protein-coding 41 0.004888
-6753 SSTR3 somatostatin receptor 3 protein-coding 85 0.01013
-6754 SSTR4 somatostatin receptor 4 protein-coding 113 0.01347
-6755 SSTR5 somatostatin receptor 5 protein-coding 54 0.006438
-6756 SSX1 SSX family member 1 protein-coding 40 0.004769
-6758 SSX5 SSX family member 5 protein-coding 54 0.006438
-6759 SSX4 SSX family member 4 protein-coding 18 0.002146
-6760 SS18 SS18, nBAF chromatin remodeling complex subunit protein-coding 52 0.006199
-6764 ST5 suppression of tumorigenicity 5 protein-coding 121 0.01443
-6767 ST13 ST13, Hsp70 interacting protein protein-coding 37 0.004411
-6768 ST14 suppression of tumorigenicity 14 protein-coding 85 0.01013
-6769 STAC SH3 and cysteine rich domain protein-coding 79 0.009418
-6770 STAR steroidogenic acute regulatory protein protein-coding 47 0.005603
-6772 STAT1 signal transducer and activator of transcription 1 protein-coding 121 0.01443
-6773 STAT2 signal transducer and activator of transcription 2 protein-coding 85 0.01013
-6774 STAT3 signal transducer and activator of transcription 3 protein-coding 103 0.01228
-6775 STAT4 signal transducer and activator of transcription 4 protein-coding 112 0.01335
-6776 STAT5A signal transducer and activator of transcription 5A protein-coding 70 0.008345
-6777 STAT5B signal transducer and activator of transcription 5B protein-coding 80 0.009537
-6778 STAT6 signal transducer and activator of transcription 6 protein-coding 86 0.01025
-6779 STATH statherin protein-coding 11 0.001311
-6780 STAU1 staufen double-stranded RNA binding protein 1 protein-coding 70 0.008345
-6781 STC1 stanniocalcin 1 protein-coding 41 0.004888
-6782 HSPA13 heat shock protein family A (Hsp70) member 13 protein-coding 72 0.008584
-6783 SULT1E1 sulfotransferase family 1E member 1 protein-coding 67 0.007988
-6785 ELOVL4 ELOVL fatty acid elongase 4 protein-coding 49 0.005842
-6786 STIM1 stromal interaction molecule 1 protein-coding 60 0.007153
-6787 NEK4 NIMA related kinase 4 protein-coding 63 0.007511
-6788 STK3 serine/threonine kinase 3 protein-coding 77 0.00918
-6789 STK4 serine/threonine kinase 4 protein-coding 133 0.01586
-6790 AURKA aurora kinase A protein-coding 36 0.004292
-6792 CDKL5 cyclin dependent kinase like 5 protein-coding 137 0.01633
-6793 STK10 serine/threonine kinase 10 protein-coding 104 0.0124
-6794 STK11 serine/threonine kinase 11 protein-coding 131 0.01562
-6795 AURKC aurora kinase C protein-coding 61 0.007272
-6799 SULT1A2 sulfotransferase family 1A member 2 protein-coding 38 0.00453
-6801 STRN striatin protein-coding 77 0.00918
-6804 STX1A syntaxin 1A protein-coding 37 0.004411
-6809 STX3 syntaxin 3 protein-coding 44 0.005246
-6810 STX4 syntaxin 4 protein-coding 49 0.005842
-6811 STX5 syntaxin 5 protein-coding 34 0.004053
-6812 STXBP1 syntaxin binding protein 1 protein-coding 74 0.008822
-6813 STXBP2 syntaxin binding protein 2 protein-coding 143 0.01705
-6814 STXBP3 syntaxin binding protein 3 protein-coding 77 0.00918
-6815 STYX serine/threonine/tyrosine interacting protein protein-coding 27 0.003219
-6817 SULT1A1 sulfotransferase family 1A member 1 protein-coding 48 0.005722
-6819 SULT1C2 sulfotransferase family 1C member 2 protein-coding 46 0.005484
-6820 SULT2B1 sulfotransferase family 2B member 1 protein-coding 30 0.003577
-6821 SUOX sulfite oxidase protein-coding 63 0.007511
-6822 SULT2A1 sulfotransferase family 2A member 1 protein-coding 47 0.005603
-6827 SUPT4H1 SPT4 homolog, DSIF elongation factor subunit protein-coding 14 0.001669
-6829 SUPT5H SPT5 homolog, DSIF elongation factor subunit protein-coding 134 0.01598
-6830 SUPT6H SPT6 homolog, histone chaperone protein-coding 178 0.02122
-6832 SUPV3L1 Suv3 like RNA helicase protein-coding 50 0.005961
-6833 ABCC8 ATP binding cassette subfamily C member 8 protein-coding 195 0.02325
-6834 SURF1 SURF1, cytochrome c oxidase assembly factor protein-coding 16 0.001907
-6835 SURF2 surfeit 2 protein-coding 27 0.003219
-6836 SURF4 surfeit 4 protein-coding 34 0.004053
-6837 MED22 mediator complex subunit 22 protein-coding 116 0.01383
-6838 SURF6 surfeit 6 protein-coding 41 0.004888
-6839 SUV39H1 suppressor of variegation 3-9 homolog 1 protein-coding 53 0.006319
-6840 SVIL supervillin protein-coding 265 0.03159
-6843 VAMP1 vesicle associated membrane protein 1 protein-coding 12 0.001431
-6844 VAMP2 vesicle associated membrane protein 2 protein-coding 9 0.001073
-6845 VAMP7 vesicle associated membrane protein 7 protein-coding 41 0.004888
-6846 XCL2 X-C motif chemokine ligand 2 protein-coding 21 0.002504
-6847 SYCP1 synaptonemal complex protein 1 protein-coding 163 0.01943
-6850 SYK spleen associated tyrosine kinase protein-coding 83 0.009895
-6853 SYN1 synapsin I protein-coding 60 0.007153
-6854 SYN2 synapsin II protein-coding 65 0.007749
-6855 SYP synaptophysin protein-coding 34 0.004053
-6856 SYPL1 synaptophysin like 1 protein-coding 26 0.0031
-6857 SYT1 synaptotagmin 1 protein-coding 84 0.01001
-6860 SYT4 synaptotagmin 4 protein-coding 118 0.01407
-6861 SYT5 synaptotagmin 5 protein-coding 55 0.006557
-6862 TBXT T-box transcription factor T protein-coding 102 0.01216
-6863 TAC1 tachykinin precursor 1 protein-coding 27 0.003219
-6865 TACR2 tachykinin receptor 2 protein-coding 37 0.004411
-6866 TAC3 tachykinin 3 protein-coding 18 0.002146
-6867 TACC1 transforming acidic coiled-coil containing protein 1 protein-coding 69 0.008226
-6868 ADAM17 ADAM metallopeptidase domain 17 protein-coding 204 0.02432
-6869 TACR1 tachykinin receptor 1 protein-coding 66 0.007868
-6870 TACR3 tachykinin receptor 3 protein-coding 111 0.01323
-6871 TADA2A transcriptional adaptor 2A protein-coding 51 0.00608
-6872 TAF1 TATA-box binding protein associated factor 1 protein-coding 256 0.03052
-6873 TAF2 TATA-box binding protein associated factor 2 protein-coding 114 0.01359
-6874 TAF4 TATA-box binding protein associated factor 4 protein-coding 105 0.01252
-6875 TAF4B TATA-box binding protein associated factor 4b protein-coding 82 0.009776
-6876 TAGLN transgelin protein-coding 22 0.002623
-6877 TAF5 TATA-box binding protein associated factor 5 protein-coding 68 0.008107
-6878 TAF6 TATA-box binding protein associated factor 6 protein-coding 80 0.009537
-6879 TAF7 TATA-box binding protein associated factor 7 protein-coding 44 0.005246
-6880 TAF9 TATA-box binding protein associated factor 9 protein-coding 27 0.003219
-6881 TAF10 TATA-box binding protein associated factor 10 protein-coding 19 0.002265
-6882 TAF11 TATA-box binding protein associated factor 11 protein-coding 20 0.002384
-6883 TAF12 TATA-box binding protein associated factor 12 protein-coding 11 0.001311
-6884 TAF13 TATA-box binding protein associated factor 13 protein-coding 16 0.001907
-6885 MAP3K7 mitogen-activated protein kinase kinase kinase 7 protein-coding 82 0.009776
-6886 TAL1 TAL bHLH transcription factor 1, erythroid differentiation factor protein-coding 37 0.004411
-6887 TAL2 TAL bHLH transcription factor 2 protein-coding 13 0.00155
-6888 TALDO1 transaldolase 1 protein-coding 37 0.004411
-6890 TAP1 transporter 1, ATP binding cassette subfamily B member protein-coding 75 0.008941
-6891 TAP2 transporter 2, ATP binding cassette subfamily B member protein-coding 65 0.007749
-6892 TAPBP TAP binding protein protein-coding 57 0.006795
-6894 TARBP1 TAR (HIV-1) RNA binding protein 1 protein-coding 135 0.01609
-6895 TARBP2 TARBP2, RISC loading complex RNA binding subunit protein-coding 53 0.006319
-6897 TARS threonyl-tRNA synthetase protein-coding 101 0.01204
-6898 TAT tyrosine aminotransferase protein-coding 70 0.008345
-6899 TBX1 T-box 1 protein-coding 25 0.00298
-6900 CNTN2 contactin 2 protein-coding 132 0.01574
-6901 TAZ tafazzin protein-coding 43 0.005126
-6902 TBCA tubulin folding cofactor A protein-coding 11 0.001311
-6903 TBCC tubulin folding cofactor C protein-coding 30 0.003577
-6904 TBCD tubulin folding cofactor D protein-coding 125 0.0149
-6905 TBCE tubulin folding cofactor E protein-coding 55 0.006557
-6906 SERPINA7 serpin family A member 7 protein-coding 77 0.00918
-6907 TBL1X transducin beta like 1 X-linked protein-coding 71 0.008464
-6908 TBP TATA-box binding protein protein-coding 35 0.004173
-6909 TBX2 T-box 2 protein-coding 74 0.008822
-6910 TBX5 T-box 5 protein-coding 144 0.01717
-6911 TBX6 T-box 6 protein-coding 44 0.005246
-6913 TBX15 T-box 15 protein-coding 79 0.009418
-6915 TBXA2R thromboxane A2 receptor protein-coding 40 0.004769
-6916 TBXAS1 thromboxane A synthase 1 protein-coding 85 0.01013
-6917 TCEA1 transcription elongation factor A1 protein-coding 39 0.004649
-6919 TCEA2 transcription elongation factor A2 protein-coding 41 0.004888
-6920 TCEA3 transcription elongation factor A3 protein-coding 43 0.005126
-6921 ELOC elongin C protein-coding 21 0.002504
-6923 ELOB elongin B protein-coding 20 0.002384
-6924 ELOA elongin A protein-coding 81 0.009657
-6925 TCF4 transcription factor 4 protein-coding 127 0.01514
-6926 TBX3 T-box 3 protein-coding 137 0.01633
-6927 HNF1A HNF1 homeobox A protein-coding 90 0.01073
-6928 HNF1B HNF1 homeobox B protein-coding 73 0.008703
-6929 TCF3 transcription factor 3 protein-coding 55 0.006557
-6932 TCF7 transcription factor 7 protein-coding 42 0.005007
-6934 TCF7L2 transcription factor 7 like 2 protein-coding 227 0.02706
-6935 ZEB1 zinc finger E-box binding homeobox 1 protein-coding 192 0.02289
-6936 GCFC2 GC-rich sequence DNA-binding factor 2 protein-coding 82 0.009776
-6938 TCF12 transcription factor 12 protein-coding 111 0.01323
-6939 TCF15 transcription factor 15 protein-coding 6 0.0007153
-6940 ZNF354A zinc finger protein 354A protein-coding 87 0.01037
-6941 TCF19 transcription factor 19 protein-coding 37 0.004411
-6942 TCF20 transcription factor 20 protein-coding 192 0.02289
-6943 TCF21 transcription factor 21 protein-coding 41 0.004888
-6944 VPS72 vacuolar protein sorting 72 homolog protein-coding 59 0.007034
-6945 MLX MLX, MAX dimerization protein protein-coding 41 0.004888
-6947 TCN1 transcobalamin 1 protein-coding 72 0.008584
-6948 TCN2 transcobalamin 2 protein-coding 56 0.006676
-6949 TCOF1 treacle ribosome biogenesis factor 1 protein-coding 117 0.01395
-6950 TCP1 t-complex 1 protein-coding 60 0.007153
-6953 TCP10 t-complex 10 protein-coding 48 0.005722
-6954 TCP11 t-complex 11 protein-coding 61 0.007272
-6956 TRAV6 T cell receptor alpha variable 6 other 23 0.002742
-6962 TRBV20OR9-2 T cell receptor beta variable 20/OR9-2 (non-functional) pseudo 1 0.0001192
-6966 TRGC1 T cell receptor gamma constant 1 other 45 0.005365
-6967 TRGC2 T cell receptor gamma constant 2 other 48 0.005722
-6969 TRGJ2 T cell receptor gamma joining 2 other 1 0.0001192
-6970 TRGJP T cell receptor gamma joining P other 9 0.001073
-6971 TRGJP1 T cell receptor gamma joining P1 other 2 0.0002384
-6972 TRGJP2 T cell receptor gamma joining P2 other 8 0.0009537
-6974 TRGV2 T cell receptor gamma variable 2 other 29 0.003457
-6975 TECTB tectorin beta protein-coding 50 0.005961
-6976 TRGV3 T cell receptor gamma variable 3 other 26 0.0031
-6977 TRGV4 T cell receptor gamma variable 4 other 22 0.002623
-6978 TRGV5 T cell receptor gamma variable 5 other 22 0.002623
-6982 TRGV8 T cell receptor gamma variable 8 other 17 0.002027
-6983 TRGV9 T cell receptor gamma variable 9 other 20 0.002384
-6984 TRGV10 T cell receptor gamma variable 10 (non-functional) pseudo 6 0.0007153
-6985 TRGV11 T cell receptor gamma variable 11 (non-functional) pseudo 3 0.0003577
-6988 TCTA T cell leukemia translocation altered protein-coding 12 0.001431
-6990 DYNLT3 dynein light chain Tctex-type 3 protein-coding 9 0.001073
-6991 TCTE3 t-complex-associated-testis-expressed 3 protein-coding 28 0.003338
-6992 PPP1R11 protein phosphatase 1 regulatory inhibitor subunit 11 protein-coding 19 0.002265
-6993 DYNLT1 dynein light chain Tctex-type 1 protein-coding 10 0.001192
-6996 TDG thymine DNA glycosylase protein-coding 63 0.007511
-6997 TDGF1 teratocarcinoma-derived growth factor 1 protein-coding 42 0.005007
-6998 TDGF1P3 teratocarcinoma-derived growth factor 1 pseudogene 3 pseudo 114 0.01359
-6999 TDO2 tryptophan 2,3-dioxygenase protein-coding 164 0.01955
-7001 PRDX2 peroxiredoxin 2 protein-coding 30 0.003577
-7003 TEAD1 TEA domain transcription factor 1 protein-coding 44 0.005246
-7004 TEAD4 TEA domain transcription factor 4 protein-coding 62 0.007392
-7005 TEAD3 TEA domain transcription factor 3 protein-coding 42 0.005007
-7006 TEC tec protein tyrosine kinase protein-coding 87 0.01037
-7007 TECTA tectorin alpha protein-coding 277 0.03302
-7008 TEF TEF, PAR bZIP transcription factor protein-coding 22 0.002623
-7009 TMBIM6 transmembrane BAX inhibitor motif containing 6 protein-coding 31 0.003696
-7010 TEK TEK receptor tyrosine kinase protein-coding 149 0.01776
-7011 TEP1 telomerase associated protein 1 protein-coding 220 0.02623
-7013 TERF1 telomeric repeat binding factor 1 protein-coding 54 0.006438
-7014 TERF2 telomeric repeat binding factor 2 protein-coding 42 0.005007
-7015 TERT telomerase reverse transcriptase protein-coding 86 0.01025
-7016 TESK1 testis associated actin remodelling kinase 1 protein-coding 57 0.006795
-7018 TF transferrin protein-coding 116 0.01383
-7019 TFAM transcription factor A, mitochondrial protein-coding 34 0.004053
-7020 TFAP2A transcription factor AP-2 alpha protein-coding 73 0.008703
-7021 TFAP2B transcription factor AP-2 beta protein-coding 99 0.0118
-7022 TFAP2C transcription factor AP-2 gamma protein-coding 74 0.008822
-7023 TFAP4 transcription factor AP-4 protein-coding 51 0.00608
-7024 TFCP2 transcription factor CP2 protein-coding 58 0.006915
-7025 NR2F1 nuclear receptor subfamily 2 group F member 1 protein-coding 117 0.01395
-7026 NR2F2 nuclear receptor subfamily 2 group F member 2 protein-coding 117 0.01395
-7027 TFDP1 transcription factor Dp-1 protein-coding 84 0.01001
-7029 TFDP2 transcription factor Dp-2 protein-coding 59 0.007034
-7030 TFE3 transcription factor binding to IGHM enhancer 3 protein-coding 82 0.009776
-7031 TFF1 trefoil factor 1 protein-coding 9 0.001073
-7032 TFF2 trefoil factor 2 protein-coding 11 0.001311
-7033 TFF3 trefoil factor 3 protein-coding 10 0.001192
-7035 TFPI tissue factor pathway inhibitor protein-coding 53 0.006319
-7036 TFR2 transferrin receptor 2 protein-coding 70 0.008345
-7037 TFRC transferrin receptor protein-coding 71 0.008464
-7038 TG thyroglobulin protein-coding 409 0.04876
-7039 TGFA transforming growth factor alpha protein-coding 14 0.001669
-7040 TGFB1 transforming growth factor beta 1 protein-coding 40 0.004769
-7041 TGFB1I1 transforming growth factor beta 1 induced transcript 1 protein-coding 70 0.008345
-7042 TGFB2 transforming growth factor beta 2 protein-coding 61 0.007272
-7043 TGFB3 transforming growth factor beta 3 protein-coding 44 0.005246
-7044 LEFTY2 left-right determination factor 2 protein-coding 36 0.004292
-7045 TGFBI transforming growth factor beta induced protein-coding 75 0.008941
-7046 TGFBR1 transforming growth factor beta receptor 1 protein-coding 86 0.01025
-7047 TGM4 transglutaminase 4 protein-coding 109 0.01299
-7048 TGFBR2 transforming growth factor beta receptor 2 protein-coding 129 0.01538
-7049 TGFBR3 transforming growth factor beta receptor 3 protein-coding 111 0.01323
-7050 TGIF1 TGFB induced factor homeobox 1 protein-coding 50 0.005961
-7051 TGM1 transglutaminase 1 protein-coding 87 0.01037
-7052 TGM2 transglutaminase 2 protein-coding 83 0.009895
-7053 TGM3 transglutaminase 3 protein-coding 110 0.01311
-7054 TH tyrosine hydroxylase protein-coding 57 0.006795
-7056 THBD thrombomodulin protein-coding 40 0.004769
-7057 THBS1 thrombospondin 1 protein-coding 135 0.01609
-7058 THBS2 thrombospondin 2 protein-coding 208 0.0248
-7059 THBS3 thrombospondin 3 protein-coding 100 0.01192
-7060 THBS4 thrombospondin 4 protein-coding 95 0.01133
-7062 TCHH trichohyalin protein-coding 298 0.03553
-7064 THOP1 thimet oligopeptidase 1 protein-coding 82 0.009776
-7066 THPO thrombopoietin protein-coding 267 0.03183
-7067 THRA thyroid hormone receptor alpha protein-coding 62 0.007392
-7068 THRB thyroid hormone receptor beta protein-coding 60 0.007153
-7069 THRSP thyroid hormone responsive protein-coding 20 0.002384
-7070 THY1 Thy-1 cell surface antigen protein-coding 23 0.002742
-7071 KLF10 Kruppel like factor 10 protein-coding 65 0.007749
-7072 TIA1 TIA1 cytotoxic granule associated RNA binding protein protein-coding 46 0.005484
-7073 TIAL1 TIA1 cytotoxic granule associated RNA binding protein like 1 protein-coding 60 0.007153
-7074 TIAM1 T cell lymphoma invasion and metastasis 1 protein-coding 273 0.03255
-7075 TIE1 tyrosine kinase with immunoglobulin like and EGF like domains 1 protein-coding 160 0.01907
-7076 TIMP1 TIMP metallopeptidase inhibitor 1 protein-coding 44 0.005246
-7077 TIMP2 TIMP metallopeptidase inhibitor 2 protein-coding 29 0.003457
-7078 TIMP3 TIMP metallopeptidase inhibitor 3 protein-coding 51 0.00608
-7079 TIMP4 TIMP metallopeptidase inhibitor 4 protein-coding 36 0.004292
-7080 NKX2-1 NK2 homeobox 1 protein-coding 151 0.018
-7082 TJP1 tight junction protein 1 protein-coding 184 0.02194
-7083 TK1 thymidine kinase 1 protein-coding 52 0.006199
-7084 TK2 thymidine kinase 2, mitochondrial protein-coding 29 0.003457
-7086 TKT transketolase protein-coding 54 0.006438
-7087 ICAM5 intercellular adhesion molecule 5 protein-coding 86 0.01025
-7088 TLE1 transducin like enhancer of split 1 protein-coding 120 0.01431
-7089 TLE2 transducin like enhancer of split 2 protein-coding 90 0.01073
-7090 TLE3 transducin like enhancer of split 3 protein-coding 77 0.00918
-7091 TLE4 transducin like enhancer of split 4 protein-coding 135 0.01609
-7092 TLL1 tolloid like 1 protein-coding 208 0.0248
-7093 TLL2 tolloid like 2 protein-coding 137 0.01633
-7094 TLN1 talin 1 protein-coding 223 0.02659
-7095 SEC62 SEC62 homolog, preprotein translocation factor protein-coding 36 0.004292
-7096 TLR1 toll like receptor 1 protein-coding 82 0.009776
-7097 TLR2 toll like receptor 2 protein-coding 85 0.01013
-7098 TLR3 toll like receptor 3 protein-coding 103 0.01228
-7099 TLR4 toll like receptor 4 protein-coding 233 0.02778
-7100 TLR5 toll like receptor 5 protein-coding 110 0.01311
-7101 NR2E1 nuclear receptor subfamily 2 group E member 1 protein-coding 70 0.008345
-7102 TSPAN7 tetraspanin 7 protein-coding 34 0.004053
-7103 TSPAN8 tetraspanin 8 protein-coding 44 0.005246
-7104 TM4SF4 transmembrane 4 L six family member 4 protein-coding 31 0.003696
-7105 TSPAN6 tetraspanin 6 protein-coding 27 0.003219
-7106 TSPAN4 tetraspanin 4 protein-coding 22 0.002623
-7107 GPR137B G protein-coupled receptor 137B protein-coding 55 0.006557
-7108 TM7SF2 transmembrane 7 superfamily member 2 protein-coding 42 0.005007
-7109 TRAPPC10 trafficking protein particle complex 10 protein-coding 115 0.01371
-7110 TMF1 TATA element modulatory factor 1 protein-coding 106 0.01264
-7111 TMOD1 tropomodulin 1 protein-coding 39 0.004649
-7112 TMPO thymopoietin protein-coding 99 0.0118
-7113 TMPRSS2 transmembrane serine protease 2 protein-coding 49 0.005842
-7114 TMSB4X thymosin beta 4, X-linked protein-coding 11 0.001311
-7122 CLDN5 claudin 5 protein-coding 28 0.003338
-7123 CLEC3B C-type lectin domain family 3 member B protein-coding 31 0.003696
-7124 TNF tumor necrosis factor protein-coding 24 0.002861
-7125 TNNC2 troponin C2, fast skeletal type protein-coding 20 0.002384
-7126 TNFAIP1 TNF alpha induced protein 1 protein-coding 35 0.004173
-7127 TNFAIP2 TNF alpha induced protein 2 protein-coding 46 0.005484
-7128 TNFAIP3 TNF alpha induced protein 3 protein-coding 87 0.01037
-7130 TNFAIP6 TNF alpha induced protein 6 protein-coding 51 0.00608
-7132 TNFRSF1A TNF receptor superfamily member 1A protein-coding 54 0.006438
-7133 TNFRSF1B TNF receptor superfamily member 1B protein-coding 39 0.004649
-7134 TNNC1 troponin C1, slow skeletal and cardiac type protein-coding 247 0.02945
-7135 TNNI1 troponin I1, slow skeletal type protein-coding 29 0.003457
-7136 TNNI2 troponin I2, fast skeletal type protein-coding 46 0.005484
-7137 TNNI3 troponin I3, cardiac type protein-coding 55 0.006557
-7138 TNNT1 troponin T1, slow skeletal type protein-coding 54 0.006438
-7139 TNNT2 troponin T2, cardiac type protein-coding 46 0.005484
-7140 TNNT3 troponin T3, fast skeletal type protein-coding 60 0.007153
-7141 TNP1 transition protein 1 protein-coding 13 0.00155
-7142 TNP2 transition protein 2 protein-coding 26 0.0031
-7143 TNR tenascin R protein-coding 356 0.04244
-7145 TNS1 tensin 1 protein-coding 198 0.02361
-7148 TNXB tenascin XB protein-coding 307 0.0366
-7150 TOP1 DNA topoisomerase I protein-coding 91 0.01085
-7153 TOP2A DNA topoisomerase II alpha protein-coding 117 0.01395
-7155 TOP2B DNA topoisomerase II beta protein-coding 125 0.0149
-7156 TOP3A DNA topoisomerase III alpha protein-coding 98 0.01168
-7157 TP53 tumor protein p53 protein-coding 3070 0.366
-7158 TP53BP1 tumor protein p53 binding protein 1 protein-coding 3200 0.3815
-7159 TP53BP2 tumor protein p53 binding protein 2 protein-coding 134 0.01598
-7161 TP73 tumor protein p73 protein-coding 85 0.01013
-7162 TPBG trophoblast glycoprotein protein-coding 49 0.005842
-7163 TPD52 tumor protein D52 protein-coding 33 0.003934
-7164 TPD52L1 tumor protein D52 like 1 protein-coding 39 0.004649
-7165 TPD52L2 tumor protein D52 like 2 protein-coding 32 0.003815
-7166 TPH1 tryptophan hydroxylase 1 protein-coding 62 0.007392
-7167 TPI1 triosephosphate isomerase 1 protein-coding 36 0.004292
-7168 TPM1 tropomyosin 1 protein-coding 33 0.003934
-7169 TPM2 tropomyosin 2 protein-coding 37 0.004411
-7170 TPM3 tropomyosin 3 protein-coding 29 0.003457
-7171 TPM4 tropomyosin 4 protein-coding 39 0.004649
-7172 TPMT thiopurine S-methyltransferase protein-coding 25 0.00298
-7173 TPO thyroid peroxidase protein-coding 229 0.0273
-7174 TPP2 tripeptidyl peptidase 2 protein-coding 136 0.01621
-7175 TPR translocated promoter region, nuclear basket protein protein-coding 253 0.03016
-7177 TPSAB1 tryptase alpha/beta 1 protein-coding 30 0.003577
-7178 TPT1 tumor protein, translationally-controlled 1 protein-coding 12 0.001431
-7179 TPTE transmembrane phosphatase with tensin homology protein-coding 413 0.04924
-7180 CRISP2 cysteine rich secretory protein 2 protein-coding 43 0.005126
-7181 NR2C1 nuclear receptor subfamily 2 group C member 1 protein-coding 58 0.006915
-7182 NR2C2 nuclear receptor subfamily 2 group C member 2 protein-coding 56 0.006676
-7184 HSP90B1 heat shock protein 90 beta family member 1 protein-coding 94 0.01121
-7185 TRAF1 TNF receptor associated factor 1 protein-coding 34 0.004053
-7186 TRAF2 TNF receptor associated factor 2 protein-coding 62 0.007392
-7187 TRAF3 TNF receptor associated factor 3 protein-coding 120 0.01431
-7188 TRAF5 TNF receptor associated factor 5 protein-coding 63 0.007511
-7189 TRAF6 TNF receptor associated factor 6 protein-coding 54 0.006438
-7190 HSP90B2P heat shock protein 90 beta family member 2, pseudogene pseudo 68 0.008107
-7200 TRH thyrotropin releasing hormone protein-coding 37 0.004411
-7201 TRHR thyrotropin releasing hormone receptor protein-coding 77 0.00918
-7203 CCT3 chaperonin containing TCP1 subunit 3 protein-coding 67 0.007988
-7204 TRIO trio Rho guanine nucleotide exchange factor protein-coding 306 0.03648
-7205 TRIP6 thyroid hormone receptor interactor 6 protein-coding 52 0.006199
-7216 TRO trophinin protein-coding 175 0.02086
-7220 TRPC1 transient receptor potential cation channel subfamily C member 1 protein-coding 131 0.01562
-7221 TRPC2 transient receptor potential cation channel subfamily C member 2 (pseudogene) pseudo 4 0.0004769
-7222 TRPC3 transient receptor potential cation channel subfamily C member 3 protein-coding 160 0.01907
-7223 TRPC4 transient receptor potential cation channel subfamily C member 4 protein-coding 207 0.02468
-7224 TRPC5 transient receptor potential cation channel subfamily C member 5 protein-coding 185 0.02206
-7225 TRPC6 transient receptor potential cation channel subfamily C member 6 protein-coding 151 0.018
-7226 TRPM2 transient receptor potential cation channel subfamily M member 2 protein-coding 333 0.0397
-7227 TRPS1 transcriptional repressor GATA binding 1 protein-coding 302 0.036
-7247 TSN translin protein-coding 32 0.003815
-7248 TSC1 TSC complex subunit 1 protein-coding 153 0.01824
-7249 TSC2 TSC complex subunit 2 protein-coding 174 0.02074
-7251 TSG101 tumor susceptibility 101 protein-coding 42 0.005007
-7252 TSHB thyroid stimulating hormone beta protein-coding 26 0.0031
-7253 TSHR thyroid stimulating hormone receptor protein-coding 115 0.01371
-7257 TSNAX translin associated factor X protein-coding 31 0.003696
-7258 TSPY1 testis specific protein, Y-linked 1 protein-coding 3 0.0003577
-7259 TSPYL1 TSPY like 1 protein-coding 42 0.005007
-7260 EIPR1 EARP complex and GARP complex interacting protein 1 protein-coding 51 0.00608
-7262 PHLDA2 pleckstrin homology like domain family A member 2 protein-coding 14 0.001669
-7263 TST thiosulfate sulfurtransferase protein-coding 30 0.003577
-7264 TSTA3 tissue specific transplantation antigen P35B protein-coding 33 0.003934
-7265 TTC1 tetratricopeptide repeat domain 1 protein-coding 27 0.003219
-7266 DNAJC7 DnaJ heat shock protein family (Hsp40) member C7 protein-coding 46 0.005484
-7267 TTC3 tetratricopeptide repeat domain 3 protein-coding 206 0.02456
-7268 TTC4 tetratricopeptide repeat domain 4 protein-coding 38 0.00453
-7270 TTF1 transcription termination factor 1 protein-coding 110 0.01311
-7272 TTK TTK protein kinase protein-coding 154 0.01836
-7273 TTN titin protein-coding 2449 0.292
-7274 TTPA alpha tocopherol transfer protein protein-coding 46 0.005484
-7275 TUB tubby bipartite transcription factor protein-coding 85 0.01013
-7276 TTR transthyretin protein-coding 23 0.002742
-7277 TUBA4A tubulin alpha 4a protein-coding 55 0.006557
-7278 TUBA3C tubulin alpha 3c protein-coding 166 0.01979
-7280 TUBB2A tubulin beta 2A class IIa protein-coding 38 0.00453
-7283 TUBG1 tubulin gamma 1 protein-coding 52 0.006199
-7284 TUFM Tu translation elongation factor, mitochondrial protein-coding 46 0.005484
-7286 TUFT1 tuftelin 1 protein-coding 39 0.004649
-7287 TULP1 tubby like protein 1 protein-coding 68 0.008107
-7288 TULP2 tubby like protein 2 protein-coding 54 0.006438
-7289 TULP3 tubby like protein 3 protein-coding 64 0.00763
-7290 HIRA histone cell cycle regulator protein-coding 114 0.01359
-7291 TWIST1 twist family bHLH transcription factor 1 protein-coding 21 0.002504
-7292 TNFSF4 TNF superfamily member 4 protein-coding 22 0.002623
-7293 TNFRSF4 TNF receptor superfamily member 4 protein-coding 21 0.002504
-7294 TXK TXK tyrosine kinase protein-coding 67 0.007988
-7295 TXN thioredoxin protein-coding 7 0.0008345
-7296 TXNRD1 thioredoxin reductase 1 protein-coding 83 0.009895
-7297 TYK2 tyrosine kinase 2 protein-coding 131 0.01562
-7298 TYMS thymidylate synthetase protein-coding 23 0.002742
-7299 TYR tyrosinase protein-coding 133 0.01586
-7301 TYRO3 TYRO3 protein tyrosine kinase protein-coding 86 0.01025
-7305 TYROBP TYRO protein tyrosine kinase binding protein protein-coding 16 0.001907
-7306 TYRP1 tyrosinase related protein 1 protein-coding 83 0.009895
-7307 U2AF1 U2 small nuclear RNA auxiliary factor 1 protein-coding 61 0.007272
-7310 ZRSR2P1 ZRSR2 pseudogene 1 pseudo 55 0.006557
-7311 UBA52 ubiquitin A-52 residue ribosomal protein fusion product 1 protein-coding 24 0.002861
-7314 UBB ubiquitin B protein-coding 25 0.00298
-7316 UBC ubiquitin C protein-coding 77 0.00918
-7317 UBA1 ubiquitin like modifier activating enzyme 1 protein-coding 92 0.01097
-7318 UBA7 ubiquitin like modifier activating enzyme 7 protein-coding 64 0.00763
-7319 UBE2A ubiquitin conjugating enzyme E2 A protein-coding 38 0.00453
-7320 UBE2B ubiquitin conjugating enzyme E2 B protein-coding 12 0.001431
-7321 UBE2D1 ubiquitin conjugating enzyme E2 D1 protein-coding 19 0.002265
-7322 UBE2D2 ubiquitin conjugating enzyme E2 D2 protein-coding 18 0.002146
-7323 UBE2D3 ubiquitin conjugating enzyme E2 D3 protein-coding 24 0.002861
-7324 UBE2E1 ubiquitin conjugating enzyme E2 E1 protein-coding 17 0.002027
-7325 UBE2E2 ubiquitin conjugating enzyme E2 E2 protein-coding 26 0.0031
-7326 UBE2G1 ubiquitin conjugating enzyme E2 G1 protein-coding 14 0.001669
-7327 UBE2G2 ubiquitin conjugating enzyme E2 G2 protein-coding 19 0.002265
-7328 UBE2H ubiquitin conjugating enzyme E2 H protein-coding 17 0.002027
-7329 UBE2I ubiquitin conjugating enzyme E2 I protein-coding 17 0.002027
-7332 UBE2L3 ubiquitin conjugating enzyme E2 L3 protein-coding 18 0.002146
-7334 UBE2N ubiquitin conjugating enzyme E2 N protein-coding 26 0.0031
-7335 UBE2V1 ubiquitin conjugating enzyme E2 V1 protein-coding 74 0.008822
-7336 UBE2V2 ubiquitin conjugating enzyme E2 V2 protein-coding 22 0.002623
-7337 UBE3A ubiquitin protein ligase E3A protein-coding 125 0.0149
-7341 SUMO1 small ubiquitin-like modifier 1 protein-coding 85 0.01013
-7342 UBP1 upstream binding protein 1 protein-coding 56 0.006676
-7343 UBTF upstream binding transcription factor protein-coding 87 0.01037
-7345 UCHL1 ubiquitin C-terminal hydrolase L1 protein-coding 28 0.003338
-7347 UCHL3 ubiquitin C-terminal hydrolase L3 protein-coding 21 0.002504
-7348 UPK1B uroplakin 1B protein-coding 39 0.004649
-7349 UCN urocortin protein-coding 6 0.0007153
-7350 UCP1 uncoupling protein 1 protein-coding 37 0.004411
-7351 UCP2 uncoupling protein 2 protein-coding 33 0.003934
-7352 UCP3 uncoupling protein 3 protein-coding 33 0.003934
-7353 UFD1 ubiquitin recognition factor in ER associated degradation 1 protein-coding 37 0.004411
-7355 SLC35A2 solute carrier family 35 member A2 protein-coding 50 0.005961
-7356 SCGB1A1 secretoglobin family 1A member 1 protein-coding 14 0.001669
-7357 UGCG UDP-glucose ceramide glucosyltransferase protein-coding 40 0.004769
-7358 UGDH UDP-glucose 6-dehydrogenase protein-coding 54 0.006438
-7360 UGP2 UDP-glucose pyrophosphorylase 2 protein-coding 74 0.008822
-7363 UGT2B4 UDP glucuronosyltransferase family 2 member B4 protein-coding 118 0.01407
-7364 UGT2B7 UDP glucuronosyltransferase family 2 member B7 protein-coding 95 0.01133
-7365 UGT2B10 UDP glucuronosyltransferase family 2 member B10 protein-coding 101 0.01204
-7366 UGT2B15 UDP glucuronosyltransferase family 2 member B15 protein-coding 102 0.01216
-7367 UGT2B17 UDP glucuronosyltransferase family 2 member B17 protein-coding 82 0.009776
-7368 UGT8 UDP glycosyltransferase 8 protein-coding 74 0.008822
-7369 UMOD uromodulin protein-coding 104 0.0124
-7371 UCK2 uridine-cytidine kinase 2 protein-coding 50 0.005961
-7372 UMPS uridine monophosphate synthetase protein-coding 58 0.006915
-7373 COL14A1 collagen type XIV alpha 1 chain protein-coding 282 0.03362
-7374 UNG uracil DNA glycosylase protein-coding 29 0.003457
-7375 USP4 ubiquitin specific peptidase 4 protein-coding 92 0.01097
-7376 NR1H2 nuclear receptor subfamily 1 group H member 2 protein-coding 51 0.00608
-7378 UPP1 uridine phosphorylase 1 protein-coding 44 0.005246
-7379 UPK2 uroplakin 2 protein-coding 21 0.002504
-7380 UPK3A uroplakin 3A protein-coding 26 0.0031
-7381 UQCRB ubiquinol-cytochrome c reductase binding protein protein-coding 19 0.002265
-7384 UQCRC1 ubiquinol-cytochrome c reductase core protein 1 protein-coding 44 0.005246
-7385 UQCRC2 ubiquinol-cytochrome c reductase core protein 2 protein-coding 41 0.004888
-7386 UQCRFS1 ubiquinol-cytochrome c reductase, Rieske iron-sulfur polypeptide 1 protein-coding 38 0.00453
-7388 UQCRH ubiquinol-cytochrome c reductase hinge protein protein-coding 9 0.001073
-7389 UROD uroporphyrinogen decarboxylase protein-coding 33 0.003934
-7390 UROS uroporphyrinogen III synthase protein-coding 39 0.004649
-7391 USF1 upstream transcription factor 1 protein-coding 40 0.004769
-7392 USF2 upstream transcription factor 2, c-fos interacting protein-coding 25 0.00298
-7398 USP1 ubiquitin specific peptidase 1 protein-coding 75 0.008941
-7399 USH2A usherin protein-coding 853 0.1017
-7401 CLRN1 clarin 1 protein-coding 38 0.00453
-7402 UTRN utrophin protein-coding 336 0.04006
-7403 KDM6A lysine demethylase 6A protein-coding 292 0.03481
-7404 UTY ubiquitously transcribed tetratricopeptide repeat containing, Y-linked protein-coding 27 0.003219
-7405 UVRAG UV radiation resistance associated protein-coding 77 0.00918
-7407 VARS valyl-tRNA synthetase protein-coding 117 0.01395
-7408 VASP vasodilator stimulated phosphoprotein protein-coding 34 0.004053
-7409 VAV1 vav guanine nucleotide exchange factor 1 protein-coding 126 0.01502
-7410 VAV2 vav guanine nucleotide exchange factor 2 protein-coding 104 0.0124
-7411 VBP1 VHL binding protein 1 protein-coding 34 0.004053
-7412 VCAM1 vascular cell adhesion molecule 1 protein-coding 141 0.01681
-7414 VCL vinculin protein-coding 100 0.01192
-7415 VCP valosin containing protein protein-coding 75 0.008941
-7416 VDAC1 voltage dependent anion channel 1 protein-coding 31 0.003696
-7417 VDAC2 voltage dependent anion channel 2 protein-coding 85 0.01013
-7419 VDAC3 voltage dependent anion channel 3 protein-coding 24 0.002861
-7421 VDR vitamin D receptor protein-coding 49 0.005842
-7422 VEGFA vascular endothelial growth factor A protein-coding 29 0.003457
-7423 VEGFB vascular endothelial growth factor B protein-coding 24 0.002861
-7424 VEGFC vascular endothelial growth factor C protein-coding 105 0.01252
-7425 VGF VGF nerve growth factor inducible protein-coding 44 0.005246
-7428 VHL von Hippel-Lindau tumor suppressor protein-coding 195 0.02325
-7429 VIL1 villin 1 protein-coding 90 0.01073
-7430 EZR ezrin protein-coding 60 0.007153
-7431 VIM vimentin protein-coding 69 0.008226
-7432 VIP vasoactive intestinal peptide protein-coding 48 0.005722
-7433 VIPR1 vasoactive intestinal peptide receptor 1 protein-coding 34 0.004053
-7434 VIPR2 vasoactive intestinal peptide receptor 2 protein-coding 64 0.00763
-7436 VLDLR very low density lipoprotein receptor protein-coding 84 0.01001
-7439 BEST1 bestrophin 1 protein-coding 50 0.005961
-7441 VPREB1 V-set pre-B cell surrogate light chain 1 protein-coding 22 0.002623
-7442 TRPV1 transient receptor potential cation channel subfamily V member 1 protein-coding 1 0.0001192
-7443 VRK1 vaccinia related kinase 1 protein-coding 49 0.005842
-7444 VRK2 vaccinia related kinase 2 protein-coding 70 0.008345
-7447 VSNL1 visinin like 1 protein-coding 28 0.003338
-7448 VTN vitronectin protein-coding 51 0.00608
-7450 VWF von Willebrand factor protein-coding 305 0.03636
-7453 WARS tryptophanyl-tRNA synthetase protein-coding 54 0.006438
-7454 WAS Wiskott-Aldrich syndrome protein-coding 59 0.007034
-7455 ZAN zonadhesin (gene/pseudogene) protein-coding 335 0.03994
-7456 WIPF1 WAS/WASL interacting protein family member 1 protein-coding 94 0.01121
-7458 EIF4H eukaryotic translation initiation factor 4H protein-coding 31 0.003696
-7461 CLIP2 CAP-Gly domain containing linker protein 2 protein-coding 134 0.01598
-7462 LAT2 linker for activation of T cells family member 2 protein-coding 29 0.003457
-7464 CORO2A coronin 2A protein-coding 59 0.007034
-7465 WEE1 WEE1 G2 checkpoint kinase protein-coding 57 0.006795
-7466 WFS1 wolframin ER transmembrane glycoprotein protein-coding 92 0.01097
-7468 NSD2 nuclear receptor binding SET domain protein 2 protein-coding 135 0.01609
-7469 NELFA negative elongation factor complex member A protein-coding 60 0.007153
-7471 WNT1 Wnt family member 1 protein-coding 43 0.005126
-7472 WNT2 Wnt family member 2 protein-coding 61 0.007272
-7473 WNT3 Wnt family member 3 protein-coding 46 0.005484
-7474 WNT5A Wnt family member 5A protein-coding 56 0.006676
-7475 WNT6 Wnt family member 6 protein-coding 22 0.002623
-7476 WNT7A Wnt family member 7A protein-coding 65 0.007749
-7477 WNT7B Wnt family member 7B protein-coding 52 0.006199
-7478 WNT8A Wnt family member 8A protein-coding 38 0.00453
-7479 WNT8B Wnt family member 8B protein-coding 37 0.004411
-7480 WNT10B Wnt family member 10B protein-coding 50 0.005961
-7481 WNT11 Wnt family member 11 protein-coding 44 0.005246
-7482 WNT2B Wnt family member 2B protein-coding 57 0.006795
-7483 WNT9A Wnt family member 9A protein-coding 67 0.007988
-7484 WNT9B Wnt family member 9B protein-coding 35 0.004173
-7485 WRB tryptophan rich basic protein protein-coding 271 0.03231
-7486 WRN Werner syndrome RecQ like helicase protein-coding 149 0.01776
-7490 WT1 Wilms tumor 1 protein-coding 81 0.009657
-7494 XBP1 X-box binding protein 1 protein-coding 20 0.002384
-7495 XBP1P1 X-box binding protein 1 pseudogene 1 pseudo 20 0.002384
-7498 XDH xanthine dehydrogenase protein-coding 181 0.02158
-7499 XG Xg blood group protein-coding 36 0.004292
-7503 XIST X inactive specific transcript (non-protein coding) ncRNA 486 0.05794
-7504 XK X-linked Kx blood group protein-coding 71 0.008464
-7507 XPA XPA, DNA damage recognition and repair factor protein-coding 31 0.003696
-7508 XPC XPC complex subunit, DNA damage recognition and repair factor protein-coding 71 0.008464
-7511 XPNPEP1 X-prolyl aminopeptidase 1 protein-coding 69 0.008226
-7512 XPNPEP2 X-prolyl aminopeptidase 2 protein-coding 103 0.01228
-7514 XPO1 exportin 1 protein-coding 105 0.01252
-7515 XRCC1 X-ray repair cross complementing 1 protein-coding 63 0.007511
-7516 XRCC2 X-ray repair cross complementing 2 protein-coding 42 0.005007
-7517 XRCC3 X-ray repair cross complementing 3 protein-coding 23 0.002742
-7518 XRCC4 X-ray repair cross complementing 4 protein-coding 43 0.005126
-7520 XRCC5 X-ray repair cross complementing 5 protein-coding 84 0.01001
-7525 YES1 YES proto-oncogene 1, Src family tyrosine kinase protein-coding 72 0.008584
-7528 YY1 YY1 transcription factor protein-coding 42 0.005007
-7529 YWHAB tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein beta protein-coding 24 0.002861
-7531 YWHAE tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein epsilon protein-coding 26 0.0031
-7532 YWHAG tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein gamma protein-coding 27 0.003219
-7533 YWHAH tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein eta protein-coding 19 0.002265
-7534 YWHAZ tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein zeta protein-coding 35 0.004173
-7535 ZAP70 zeta chain of T cell receptor associated protein kinase 70 protein-coding 99 0.0118
-7536 SF1 splicing factor 1 protein-coding 91 0.01085
-7538 ZFP36 ZFP36 ring finger protein protein-coding 39 0.004649
-7539 ZFP37 ZFP37 zinc finger protein protein-coding 117 0.01395
-7541 ZBTB14 zinc finger and BTB domain containing 14 protein-coding 67 0.007988
-7542 ZFPL1 zinc finger protein like 1 protein-coding 27 0.003219
-7543 ZFX zinc finger protein, X-linked protein-coding 88 0.01049
-7544 ZFY zinc finger protein, Y-linked protein-coding 21 0.002504
-7545 ZIC1 Zic family member 1 protein-coding 168 0.02003
-7546 ZIC2 Zic family member 2 protein-coding 47 0.005603
-7547 ZIC3 Zic family member 3 protein-coding 83 0.009895
-7549 ZNF2 zinc finger protein 2 protein-coding 62 0.007392
-7551 ZNF3 zinc finger protein 3 protein-coding 59 0.007034
-7552 ZNF711 zinc finger protein 711 protein-coding 140 0.01669
-7553 ZNF7 zinc finger protein 7 protein-coding 87 0.01037
-7554 ZNF8 zinc finger protein 8 protein-coding 66 0.007868
-7555 CNBP CCHC-type zinc finger nucleic acid binding protein protein-coding 17 0.002027
-7556 ZNF10 zinc finger protein 10 protein-coding 61 0.007272
-7559 ZNF12 zinc finger protein 12 protein-coding 93 0.01109
-7561 ZNF14 zinc finger protein 14 protein-coding 85 0.01013
-7562 ZNF708 zinc finger protein 708 protein-coding 67 0.007988
-7564 ZNF16 zinc finger protein 16 protein-coding 77 0.00918
-7565 ZNF17 zinc finger protein 17 protein-coding 55 0.006557
-7566 ZNF18 zinc finger protein 18 protein-coding 61 0.007272
-7567 ZNF19 zinc finger protein 19 protein-coding 60 0.007153
-7568 ZNF20 zinc finger protein 20 protein-coding 59 0.007034
-7569 ZNF182 zinc finger protein 182 protein-coding 76 0.009061
-7570 ZNF22 zinc finger protein 22 protein-coding 33 0.003934
-7571 ZNF23 zinc finger protein 23 protein-coding 65 0.007749
-7572 ZNF24 zinc finger protein 24 protein-coding 34 0.004053
-7576 ZNF28 zinc finger protein 28 protein-coding 100 0.01192
-7579 ZSCAN20 zinc finger and SCAN domain containing 20 protein-coding 118 0.01407
-7580 ZNF32 zinc finger protein 32 protein-coding 36 0.004292
-7581 ZNF33A zinc finger protein 33A protein-coding 135 0.01609
-7582 ZNF33B zinc finger protein 33B protein-coding 100 0.01192
-7584 ZNF35 zinc finger protein 35 protein-coding 59 0.007034
-7586 ZKSCAN1 zinc finger with KRAB and SCAN domains 1 protein-coding 57 0.006795
-7587 ZNF37A zinc finger protein 37A protein-coding 94 0.01121
-7589 ZSCAN21 zinc finger and SCAN domain containing 21 protein-coding 48 0.005722
-7592 ZNF41 zinc finger protein 41 protein-coding 96 0.01144
-7593 MZF1 myeloid zinc finger 1 protein-coding 72 0.008584
-7594 ZNF43 zinc finger protein 43 protein-coding 157 0.01872
-7596 ZNF45 zinc finger protein 45 protein-coding 65 0.007749
-7597 ZBTB25 zinc finger and BTB domain containing 25 protein-coding 36 0.004292
-7617 ZNF66 zinc finger protein 66 protein-coding 17 0.002027
-7620 ZNF69 zinc finger protein 69 protein-coding 15 0.001788
-7621 ZNF70 zinc finger protein 70 protein-coding 60 0.007153
-7625 ZNF74 zinc finger protein 74 protein-coding 87 0.01037
-7626 ZNF75D zinc finger protein 75D protein-coding 87 0.01037
-7627 ZNF75A zinc finger protein 75a protein-coding 46 0.005484
-7629 ZNF76 zinc finger protein 76 protein-coding 58 0.006915
-7633 ZNF79 zinc finger protein 79 protein-coding 56 0.006676
-7634 ZNF80 zinc finger protein 80 protein-coding 72 0.008584
-7638 ZNF221 zinc finger protein 221 protein-coding 93 0.01109
-7639 ZNF85 zinc finger protein 85 protein-coding 97 0.01156
-7643 ZNF90 zinc finger protein 90 protein-coding 98 0.01168
-7644 ZNF91 zinc finger protein 91 protein-coding 219 0.02611
-7652 ZNF99 zinc finger protein 99 protein-coding 222 0.02647
-7673 ZNF222 zinc finger protein 222 protein-coding 67 0.007988
-7675 ZNF121 zinc finger protein 121 protein-coding 46 0.005484
-7678 ZNF124 zinc finger protein 124 protein-coding 57 0.006795
-7681 MKRN3 makorin ring finger protein 3 protein-coding 180 0.02146
-7690 ZNF131 zinc finger protein 131 protein-coding 81 0.009657
-7691 ZNF132 zinc finger protein 132 protein-coding 77 0.00918
-7692 ZNF133 zinc finger protein 133 protein-coding 57 0.006795
-7693 ZNF134 zinc finger protein 134 protein-coding 51 0.00608
-7694 ZNF135 zinc finger protein 135 protein-coding 110 0.01311
-7695 ZNF136 zinc finger protein 136 protein-coding 69 0.008226
-7697 ZNF138 zinc finger protein 138 protein-coding 33 0.003934
-7699 ZNF140 zinc finger protein 140 protein-coding 30 0.003577
-7700 ZNF141 zinc finger protein 141 protein-coding 51 0.00608
-7701 ZNF142 zinc finger protein 142 protein-coding 138 0.01645
-7702 ZNF143 zinc finger protein 143 protein-coding 62 0.007392
-7703 PCGF2 polycomb group ring finger 2 protein-coding 45 0.005365
-7704 ZBTB16 zinc finger and BTB domain containing 16 protein-coding 105 0.01252
-7705 ZNF146 zinc finger protein 146 protein-coding 44 0.005246
-7706 TRIM25 tripartite motif containing 25 protein-coding 54 0.006438
-7707 ZNF148 zinc finger protein 148 protein-coding 109 0.01299
-7709 ZBTB17 zinc finger and BTB domain containing 17 protein-coding 64 0.00763
-7710 ZNF154 zinc finger protein 154 protein-coding 61 0.007272
-7711 ZNF155 zinc finger protein 155 protein-coding 61 0.007272
-7712 ZNF157 zinc finger protein 157 protein-coding 86 0.01025
-7716 VEZF1 vascular endothelial zinc finger 1 protein-coding 51 0.00608
-7718 ZNF165 zinc finger protein 165 protein-coding 60 0.007153
-7726 TRIM26 tripartite motif containing 26 protein-coding 129 0.01538
-7727 ZNF174 zinc finger protein 174 protein-coding 57 0.006795
-7728 ZNF175 zinc finger protein 175 protein-coding 91 0.01085
-7730 ZNF177 zinc finger protein 177 protein-coding 70 0.008345
-7732 RNF112 ring finger protein 112 protein-coding 78 0.009299
-7733 ZNF180 zinc finger protein 180 protein-coding 109 0.01299
-7737 RNF113A ring finger protein 113A protein-coding 61 0.007272
-7738 ZNF184 zinc finger protein 184 protein-coding 115 0.01371
-7739 ZNF185 zinc finger protein 185 with LIM domain protein-coding 84 0.01001
-7743 ZNF189 zinc finger protein 189 protein-coding 76 0.009061
-7745 ZKSCAN8 zinc finger with KRAB and SCAN domains 8 protein-coding 66 0.007868
-7746 ZSCAN9 zinc finger and SCAN domain containing 9 protein-coding 46 0.005484
-7748 ZNF195 zinc finger protein 195 protein-coding 63 0.007511
-7750 ZMYM2 zinc finger MYM-type containing 2 protein-coding 151 0.018
-7752 ZNF200 zinc finger protein 200 protein-coding 47 0.005603
-7753 ZNF202 zinc finger protein 202 protein-coding 76 0.009061
-7755 ZNF205 zinc finger protein 205 protein-coding 56 0.006676
-7756 ZNF207 zinc finger protein 207 protein-coding 67 0.007988
-7757 ZNF208 zinc finger protein 208 protein-coding 332 0.03958
-7760 ZNF213 zinc finger protein 213 protein-coding 39 0.004649
-7761 ZNF214 zinc finger protein 214 protein-coding 96 0.01144
-7762 ZNF215 zinc finger protein 215 protein-coding 92 0.01097
-7763 ZFAND5 zinc finger AN1-type containing 5 protein-coding 33 0.003934
-7764 ZNF217 zinc finger protein 217 protein-coding 131 0.01562
-7766 ZNF223 zinc finger protein 223 protein-coding 71 0.008464
-7767 ZNF224 zinc finger protein 224 protein-coding 76 0.009061
-7768 ZNF225 zinc finger protein 225 protein-coding 66 0.007868
-7769 ZNF226 zinc finger protein 226 protein-coding 106 0.01264
-7770 ZNF227 zinc finger protein 227 protein-coding 77 0.00918
-7771 ZNF112 zinc finger protein 112 protein-coding 116 0.01383
-7772 ZNF229 zinc finger protein 229 protein-coding 128 0.01526
-7773 ZNF230 zinc finger protein 230 protein-coding 67 0.007988
-7775 ZNF232 zinc finger protein 232 protein-coding 52 0.006199
-7776 ZNF236 zinc finger protein 236 protein-coding 218 0.02599
-7779 SLC30A1 solute carrier family 30 member 1 protein-coding 45 0.005365
-7780 SLC30A2 solute carrier family 30 member 2 protein-coding 45 0.005365
-7781 SLC30A3 solute carrier family 30 member 3 protein-coding 51 0.00608
-7782 SLC30A4 solute carrier family 30 member 4 protein-coding 38 0.00453
-7783 ZP2 zona pellucida glycoprotein 2 protein-coding 93 0.01109
-7784 ZP3 zona pellucida glycoprotein 3 protein-coding 39 0.004649
-7786 MAP3K12 mitogen-activated protein kinase kinase kinase 12 protein-coding 127 0.01514
-7789 ZXDA zinc finger, X-linked, duplicated A protein-coding 88 0.01049
-7791 ZYX zyxin protein-coding 73 0.008703
-7795 MEMO1 Methylation modifier for class I HLA unknown 37 0.004411
-7798 LUZP1 leucine zipper protein 1 protein-coding 104 0.0124
-7799 PRDM2 PR/SET domain 2 protein-coding 175 0.02086
-7802 DNALI1 dynein axonemal light intermediate chain 1 protein-coding 26 0.0031
-7803 PTP4A1 protein tyrosine phosphatase type IVA, member 1 protein-coding 20 0.002384
-7804 LRP8 LDL receptor related protein 8 protein-coding 86 0.01025
-7805 LAPTM5 lysosomal protein transmembrane 5 protein-coding 35 0.004173
-7809 BSND barttin CLCNK type accessory beta subunit protein-coding 40 0.004769
-7812 CSDE1 cold shock domain containing E1 protein-coding 116 0.01383
-7813 EVI5 ecotropic viral integration site 5 protein-coding 112 0.01335
-7818 DAP3 death associated protein 3 protein-coding 51 0.00608
-7827 NPHS2 NPHS2, podocin protein-coding 61 0.007272
-7832 BTG2 BTG anti-proliferation factor 2 protein-coding 31 0.003696
-7837 PXDN peroxidasin protein-coding 340 0.04053
-7840 ALMS1 ALMS1, centrosome and basal body associated protein protein-coding 362 0.04316
-7841 MOGS mannosyl-oligosaccharide glucosidase protein-coding 86 0.01025
-7844 RNF103 ring finger protein 103 protein-coding 68 0.008107
-7846 TUBA1A tubulin alpha 1a protein-coding 60 0.007153
-7849 PAX8 paired box 8 protein-coding 68 0.008107
-7850 IL1R2 interleukin 1 receptor type 2 protein-coding 64 0.00763
-7851 MALL mal, T cell differentiation protein like protein-coding 13 0.00155
-7852 CXCR4 C-X-C motif chemokine receptor 4 protein-coding 108 0.01288
-7855 FZD5 frizzled class receptor 5 protein-coding 46 0.005484
-7857 SCG2 secretogranin II protein-coding 105 0.01252
-7862 BRPF1 bromodomain and PHD finger containing 1 protein-coding 115 0.01371
-7866 IFRD2 interferon related developmental regulator 2 protein-coding 52 0.006199
-7867 MAPKAPK3 mitogen-activated protein kinase-activated protein kinase 3 protein-coding 41 0.004888
-7869 SEMA3B semaphorin 3B protein-coding 3 0.0003577
-7871 SLMAP sarcolemma associated protein protein-coding 78 0.009299
-7873 MANF mesencephalic astrocyte derived neurotrophic factor protein-coding 13 0.00155
-7874 USP7 ubiquitin specific peptidase 7 protein-coding 140 0.01669
-7879 RAB7A RAB7A, member RAS oncogene family protein-coding 26 0.0031
-7881 KCNAB1 potassium voltage-gated channel subfamily A member regulatory beta subunit 1 protein-coding 78 0.009299
-7884 SLBP stem-loop binding protein protein-coding 21 0.002504
-7903 ST8SIA4 ST8 alpha-N-acetyl-neuraminide alpha-2,8-sialyltransferase 4 protein-coding 80 0.009537
-7905 REEP5 receptor accessory protein 5 protein-coding 31 0.003696
-7913 DEK DEK proto-oncogene protein-coding 52 0.006199
-7915 ALDH5A1 aldehyde dehydrogenase 5 family member A1 protein-coding 56 0.006676
-7916 PRRC2A proline rich coiled-coil 2A protein-coding 191 0.02277
-7917 BAG6 BCL2 associated athanogene 6 protein-coding 91 0.01085
-7918 GPANK1 G-patch domain and ankyrin repeats 1 protein-coding 39 0.004649
-7919 DDX39B DExD-box helicase 39B protein-coding 44 0.005246
-7920 ABHD16A abhydrolase domain containing 16A protein-coding 58 0.006915
-7922 SLC39A7 solute carrier family 39 member 7 protein-coding 50 0.005961
-7923 HSD17B8 hydroxysteroid 17-beta dehydrogenase 8 protein-coding 21 0.002504
-7932 OR2H2 olfactory receptor family 2 subfamily H member 2 protein-coding 44 0.005246
-7936 NELFE negative elongation factor complex member E protein-coding 58 0.006915
-7940 LST1 leukocyte specific transcript 1 protein-coding 4 0.0004769
-7941 PLA2G7 phospholipase A2 group VII protein-coding 69 0.008226
-7942 TFEB transcription factor EB protein-coding 45 0.005365
-7952 TNDM diabetes mellitus, transient neonatal unknown 58 0.006915
-7957 EPM2A EPM2A, laforin glucan phosphatase protein-coding 24 0.002861
-7965 AIMP2 aminoacyl tRNA synthetase complex interacting multifunctional protein 2 protein-coding 44 0.005246
-7975 MAFK MAF bZIP transcription factor K protein-coding 13 0.00155
-7976 FZD3 frizzled class receptor 3 protein-coding 69 0.008226
-7978 MTERF1 mitochondrial transcription termination factor 1 protein-coding 51 0.00608
-7979 SEM1 SEM1, 26S proteasome complex subunit protein-coding 70 0.008345
-7980 TFPI2 tissue factor pathway inhibitor 2 protein-coding 47 0.005603
-7982 ST7 suppression of tumorigenicity 7 protein-coding 62 0.007392
-7984 ARHGEF5 Rho guanine nucleotide exchange factor 5 protein-coding 111 0.01323
-7988 ZNF212 zinc finger protein 212 protein-coding 119 0.01419
-7991 TUSC3 tumor suppressor candidate 3 protein-coding 90 0.01073
-7993 UBXN8 UBX domain protein 8 protein-coding 46 0.005484
-7994 KAT6A lysine acetyltransferase 6A protein-coding 211 0.02515
-8000 PSCA prostate stem cell antigen protein-coding 15 0.001788
-8001 GLRA3 glycine receptor alpha 3 protein-coding 102 0.01216
-8013 NR4A3 nuclear receptor subfamily 4 group A member 3 protein-coding 153 0.01824
-8019 BRD3 bromodomain containing 3 protein-coding 95 0.01133
-8021 NUP214 nucleoporin 214 protein-coding 176 0.02098
-8022 LHX3 LIM homeobox 3 protein-coding 38 0.00453
-8026 DGS2 DiGeorge syndrome/velocardiofacial syndrome complex 2 unknown 78 0.009299
-8027 STAM signal transducing adaptor molecule protein-coding 69 0.008226
-8028 MLLT10 MLLT10, histone lysine methyltransferase DOT1L cofactor protein-coding 125 0.0149
-8029 CUBN cubilin protein-coding 532 0.06342
-8030 CCDC6 coiled-coil domain containing 6 protein-coding 65 0.007749
-8031 NCOA4 nuclear receptor coactivator 4 protein-coding 75 0.008941
-8034 SLC25A16 solute carrier family 25 member 16 protein-coding 112 0.01335
-8036 SHOC2 SHOC2, leucine rich repeat scaffold protein protein-coding 66 0.007868
-8038 ADAM12 ADAM metallopeptidase domain 12 protein-coding 125 0.0149
-8045 RASSF7 Ras association domain family member 7 protein-coding 32 0.003815
-8048 CSRP3 cysteine and glycine rich protein 3 protein-coding 53 0.006319
-8050 PDHX pyruvate dehydrogenase complex component X protein-coding 76 0.009061
-8061 FOSL1 FOS like 1, AP-1 transcription factor subunit protein-coding 27 0.003219
-8065 CUL5 cullin 5 protein-coding 97 0.01156
-8073 PTP4A2 protein tyrosine phosphatase type IVA, member 2 protein-coding 18 0.002146
-8074 FGF23 fibroblast growth factor 23 protein-coding 59 0.007034
-8076 MFAP5 microfibril associated protein 5 protein-coding 48 0.005722
-8078 USP5 ubiquitin specific peptidase 5 protein-coding 86 0.01025
-8079 MLF2 myeloid leukemia factor 2 protein-coding 37 0.004411
-8082 SSPN sarcospan protein-coding 20 0.002384
-8085 KMT2D lysine methyltransferase 2D protein-coding 808 0.09633
-8086 AAAS aladin WD repeat nucleoporin protein-coding 53 0.006319
-8087 FXR1 FMR1 autosomal homolog 1 protein-coding 98 0.01168
-8089 YEATS4 YEATS domain containing 4 protein-coding 21 0.002504
-8091 HMGA2 high mobility group AT-hook 2 protein-coding 10 0.001192
-8092 ALX1 ALX homeobox 1 protein-coding 75 0.008941
-8099 CDK2AP1 cyclin dependent kinase 2 associated protein 1 protein-coding 9 0.001073
-8100 IFT88 intraflagellar transport 88 protein-coding 90 0.01073
-8106 PABPN1 poly(A) binding protein nuclear 1 protein-coding 22 0.002623
-8110 DPF3 double PHD fingers 3 protein-coding 85 0.01013
-8111 GPR68 G protein-coupled receptor 68 protein-coding 47 0.005603
-8115 TCL1A T cell leukemia/lymphoma 1A protein-coding 18 0.002146
-8120 AP3B2 adaptor related protein complex 3 beta 2 subunit protein-coding 126 0.01502
-8125 ANP32A acidic nuclear phosphoprotein 32 family member A protein-coding 32 0.003815
-8128 ST8SIA2 ST8 alpha-N-acetyl-neuraminide alpha-2,8-sialyltransferase 2 protein-coding 75 0.008941
-8131 NPRL3 NPR3 like, GATOR1 complex subunit protein-coding 126 0.01502
-8139 GAN gigaxonin protein-coding 72 0.008584
-8140 SLC7A5 solute carrier family 7 member 5 protein-coding 54 0.006438
-8148 TAF15 TATA-box binding protein associated factor 15 protein-coding 76 0.009061
-8153 RND2 Rho family GTPase 2 protein-coding 25 0.00298
-8161 COIL coilin protein-coding 61 0.007272
-8165 AKAP1 A-kinase anchoring protein 1 protein-coding 87 0.01037
-8170 SLC14A2 solute carrier family 14 member 2 protein-coding 127 0.01514
-8174 MADCAM1 mucosal vascular addressin cell adhesion molecule 1 protein-coding 22 0.002623
-8175 SF3A2 splicing factor 3a subunit 2 protein-coding 27 0.003219
-8178 ELL elongation factor for RNA polymerase II protein-coding 54 0.006438
-8187 ZNF239 zinc finger protein 239 protein-coding 62 0.007392
-8189 SYMPK symplekin protein-coding 134 0.01598
-8190 MIA melanoma inhibitory activity protein-coding 17 0.002027
-8192 CLPP caseinolytic mitochondrial matrix peptidase proteolytic subunit protein-coding 20 0.002384
-8193 DPF1 double PHD fingers 1 protein-coding 47 0.005603
-8195 MKKS McKusick-Kaufman syndrome protein-coding 47 0.005603
-8200 GDF5 growth differentiation factor 5 protein-coding 100 0.01192
-8202 NCOA3 nuclear receptor coactivator 3 protein-coding 167 0.01991
-8204 NRIP1 nuclear receptor interacting protein 1 protein-coding 148 0.01764
-8208 CHAF1B chromatin assembly factor 1 subunit B protein-coding 128 0.01526
-8209 GATD3A glutamine amidotransferase like class 1 domain containing 3A protein-coding 60 0.007153
-8214 DGCR6 DiGeorge syndrome critical region gene 6 protein-coding 17 0.002027
-8215 DVL1P1 dishevelled segment polarity protein 1 pseudogene 1 pseudo 67 0.007988
-8216 LZTR1 leucine zipper like transcription regulator 1 protein-coding 155 0.01848
-8218 CLTCL1 clathrin heavy chain like 1 protein-coding 162 0.01931
-8220 ESS2 ess-2 splicing factor homolog protein-coding 51 0.00608
-8224 SYN3 synapsin III protein-coding 93 0.01109
-8225 GTPBP6 GTP binding protein 6 (putative) protein-coding 37 0.004411
-8226 PUDP pseudouridine 5'-phosphatase protein-coding 38 0.00453
-8227 AKAP17A A-kinase anchoring protein 17A protein-coding 97 0.01156
-8228 PNPLA4 patatin like phospholipase domain containing 4 protein-coding 35 0.004173
-8233 ZRSR2 zinc finger CCCH-type, RNA binding motif and serine/arginine rich 2 protein-coding 40 0.004769
-8237 USP11 ubiquitin specific peptidase 11 protein-coding 101 0.01204
-8239 USP9X ubiquitin specific peptidase 9, X-linked protein-coding 283 0.03374
-8241 RBM10 RNA binding motif protein 10 protein-coding 137 0.01633
-8242 KDM5C lysine demethylase 5C protein-coding 159 0.01896
-8243 SMC1A structural maintenance of chromosomes 1A protein-coding 145 0.01729
-8260 NAA10 N(alpha)-acetyltransferase 10, NatA catalytic subunit protein-coding 33 0.003934
-8263 F8A1 coagulation factor VIII associated 1 protein-coding 13 0.00155
-8266 UBL4A ubiquitin like 4A protein-coding 21 0.002504
-8269 TMEM187 transmembrane protein 187 protein-coding 36 0.004292
-8270 LAGE3 L antigen family member 3 protein-coding 15 0.001788
-8273 SLC10A3 solute carrier family 10 member 3 protein-coding 52 0.006199
-8277 TKTL1 transketolase like 1 protein-coding 86 0.01025
-8284 KDM5D lysine demethylase 5D protein-coding 31 0.003696
-8287 USP9Y ubiquitin specific peptidase 9, Y-linked protein-coding 50 0.005961
-8288 EPX eosinophil peroxidase protein-coding 136 0.01621
-8289 ARID1A AT-rich interaction domain 1A protein-coding 693 0.08262
-8290 HIST3H3 histone cluster 3 H3 protein-coding 37 0.004411
-8291 DYSF dysferlin protein-coding 315 0.03755
-8292 COLQ collagen like tail subunit of asymmetric acetylcholinesterase protein-coding 58 0.006915
-8294 HIST1H4I histone cluster 1 H4 family member i protein-coding 33 0.003934
-8295 TRRAP transformation/transcription domain associated protein protein-coding 370 0.04411
-8301 PICALM phosphatidylinositol binding clathrin assembly protein protein-coding 85 0.01013
-8302 KLRC4 killer cell lectin like receptor C4 protein-coding 34 0.004053
-8303 SNN stannin protein-coding 8 0.0009537
-8309 ACOX2 acyl-CoA oxidase 2 protein-coding 78 0.009299
-8310 ACOX3 acyl-CoA oxidase 3, pristanoyl protein-coding 82 0.009776
-8312 AXIN1 axin 1 protein-coding 127 0.01514
-8313 AXIN2 axin 2 protein-coding 130 0.0155
-8314 BAP1 BRCA1 associated protein 1 protein-coding 207 0.02468
-8315 BRAP BRCA1 associated protein protein-coding 58 0.006915
-8317 CDC7 cell division cycle 7 protein-coding 80 0.009537
-8318 CDC45 cell division cycle 45 protein-coding 70 0.008345
-8320 EOMES eomesodermin protein-coding 82 0.009776
-8321 FZD1 frizzled class receptor 1 protein-coding 65 0.007749
-8322 FZD4 frizzled class receptor 4 protein-coding 54 0.006438
-8323 FZD6 frizzled class receptor 6 protein-coding 96 0.01144
-8324 FZD7 frizzled class receptor 7 protein-coding 78 0.009299
-8325 FZD8 frizzled class receptor 8 protein-coding 64 0.00763
-8326 FZD9 frizzled class receptor 9 protein-coding 121 0.01443
-8327 GABPAP GA binding protein transcription factor alpha subunit pseudogene pseudo 52 0.006199
-8328 GFI1B growth factor independent 1B transcriptional repressor protein-coding 50 0.005961
-8329 HIST1H2AI histone cluster 1 H2A family member i protein-coding 23 0.002742
-8330 HIST1H2AK histone cluster 1 H2A family member k protein-coding 43 0.005126
-8331 HIST1H2AJ histone cluster 1 H2A family member j protein-coding 33 0.003934
-8332 HIST1H2AL histone cluster 1 H2A family member l protein-coding 28 0.003338
-8334 HIST1H2AC histone cluster 1 H2A family member c protein-coding 37 0.004411
-8335 HIST1H2AB histone cluster 1 H2A family member b protein-coding 27 0.003219
-8336 HIST1H2AM histone cluster 1 H2A family member m protein-coding 25 0.00298
-8338 HIST2H2AC histone cluster 2 H2A family member c protein-coding 41 0.004888
-8339 HIST1H2BG histone cluster 1 H2B family member g protein-coding 51 0.00608
-8340 HIST1H2BL histone cluster 1 H2B family member l protein-coding 32 0.003815
-8341 HIST1H2BN histone cluster 1 H2B family member n protein-coding 21 0.002504
-8342 HIST1H2BM histone cluster 1 H2B family member m protein-coding 33 0.003934
-8343 HIST1H2BF histone cluster 1 H2B family member f protein-coding 38 0.00453
-8344 HIST1H2BE histone cluster 1 H2B family member e protein-coding 18 0.002146
-8345 HIST1H2BH histone cluster 1 H2B family member h protein-coding 36 0.004292
-8346 HIST1H2BI histone cluster 1 H2B family member i protein-coding 21 0.002504
-8347 HIST1H2BC histone cluster 1 H2B family member c protein-coding 53 0.006319
-8348 HIST1H2BO histone cluster 1 H2B family member o protein-coding 19 0.002265
-8349 HIST2H2BE histone cluster 2 H2B family member e protein-coding 43 0.005126
-8350 HIST1H3A histone cluster 1 H3 family member a protein-coding 14 0.001669
-8351 HIST1H3D histone cluster 1 H3 family member d protein-coding 41 0.004888
-8352 HIST1H3C histone cluster 1 H3 family member c protein-coding 45 0.005365
-8353 HIST1H3E histone cluster 1 H3 family member e protein-coding 41 0.004888
-8354 HIST1H3I histone cluster 1 H3 family member i protein-coding 50 0.005961
-8355 HIST1H3G histone cluster 1 H3 family member g protein-coding 37 0.004411
-8356 HIST1H3J histone cluster 1 H3 family member j protein-coding 25 0.00298
-8357 HIST1H3H histone cluster 1 H3 family member h protein-coding 25 0.00298
-8358 HIST1H3B histone cluster 1 H3 family member b protein-coding 75 0.008941
-8359 HIST1H4A histone cluster 1 H4 family member a protein-coding 18 0.002146
-8360 HIST1H4D histone cluster 1 H4 family member d protein-coding 37 0.004411
-8361 HIST1H4F histone cluster 1 H4 family member f protein-coding 29 0.003457
-8362 HIST1H4K histone cluster 1 H4 family member k protein-coding 46 0.005484
-8363 HIST1H4J histone cluster 1 H4 family member j protein-coding 25 0.00298
-8364 HIST1H4C histone cluster 1 H4 family member c protein-coding 27 0.003219
-8365 HIST1H4H histone cluster 1 H4 family member h protein-coding 20 0.002384
-8366 HIST1H4B histone cluster 1 H4 family member b protein-coding 33 0.003934
-8367 HIST1H4E histone cluster 1 H4 family member e protein-coding 39 0.004649
-8368 HIST1H4L histone cluster 1 H4 family member l protein-coding 25 0.00298
-8369 HIST1H4G histone cluster 1 H4 family member g protein-coding 30 0.003577
-8372 HYAL3 hyaluronoglucosaminidase 3 protein-coding 39 0.004649
-8379 MAD1L1 mitotic arrest deficient 1 like 1 protein-coding 90 0.01073
-8382 NME5 NME/NM23 family member 5 protein-coding 22 0.002623
-8383 OR1A1 olfactory receptor family 1 subfamily A member 1 protein-coding 67 0.007988
-8386 OR1D5 olfactory receptor family 1 subfamily D member 5 protein-coding 44 0.005246
-8387 OR1E1 olfactory receptor family 1 subfamily E member 1 protein-coding 34 0.004053
-8388 OR1E2 olfactory receptor family 1 subfamily E member 2 protein-coding 47 0.005603
-8390 OR1G1 olfactory receptor family 1 subfamily G member 1 protein-coding 46 0.005484
-8392 OR3A3 olfactory receptor family 3 subfamily A member 3 protein-coding 41 0.004888
-8394 PIP5K1A phosphatidylinositol-4-phosphate 5-kinase type 1 alpha protein-coding 67 0.007988
-8395 PIP5K1B phosphatidylinositol-4-phosphate 5-kinase type 1 beta protein-coding 70 0.008345
-8396 PIP4K2B phosphatidylinositol-5-phosphate 4-kinase type 2 beta protein-coding 46 0.005484
-8398 PLA2G6 phospholipase A2 group VI protein-coding 92 0.01097
-8399 PLA2G10 phospholipase A2 group X protein-coding 6 0.0007153
-8402 SLC25A11 solute carrier family 25 member 11 protein-coding 33 0.003934
-8403 SOX14 SRY-box 14 protein-coding 49 0.005842
-8404 SPARCL1 SPARC like 1 protein-coding 81 0.009657
-8405 SPOP speckle type BTB/POZ protein protein-coding 144 0.01717
-8406 SRPX sushi repeat containing protein, X-linked protein-coding 68 0.008107
-8407 TAGLN2 transgelin 2 protein-coding 25 0.00298
-8408 ULK1 unc-51 like autophagy activating kinase 1 protein-coding 132 0.01574
-8409 UXT ubiquitously expressed prefoldin like chaperone protein-coding 76 0.009061
-8411 EEA1 early endosome antigen 1 protein-coding 131 0.01562
-8412 BCAR3 BCAR3, NSP family adaptor protein protein-coding 89 0.01061
-8416 ANXA9 annexin A9 protein-coding 52 0.006199
-8417 STX7 syntaxin 7 protein-coding 33 0.003934
-8418 CMAHP cytidine monophospho-N-acetylneuraminic acid hydroxylase, pseudogene pseudo 40 0.004769
-8419 BFSP2 beaded filament structural protein 2 protein-coding 66 0.007868
-8424 BBOX1 gamma-butyrobetaine hydroxylase 1 protein-coding 53 0.006319
-8425 LTBP4 latent transforming growth factor beta binding protein 4 protein-coding 166 0.01979
-8427 ZNF282 zinc finger protein 282 protein-coding 78 0.009299
-8428 STK24 serine/threonine kinase 24 protein-coding 127 0.01514
-8431 NR0B2 nuclear receptor subfamily 0 group B member 2 protein-coding 28 0.003338
-8433 UTF1 undifferentiated embryonic cell transcription factor 1 protein-coding 4 0.0004769
-8434 RECK reversion inducing cysteine rich protein with kazal motifs protein-coding 101 0.01204
-8435 SOAT2 sterol O-acyltransferase 2 protein-coding 91 0.01085
-8436 CAVIN2 caveolae associated protein 2 protein-coding 77 0.00918
-8437 RASAL1 RAS protein activator like 1 protein-coding 116 0.01383
-8438 RAD54L RAD54 like protein-coding 80 0.009537
-8439 NSMAF neutral sphingomyelinase activation associated factor protein-coding 104 0.0124
-8440 NCK2 NCK adaptor protein 2 protein-coding 65 0.007749
-8443 GNPAT glyceronephosphate O-acyltransferase protein-coding 76 0.009061
-8444 DYRK3 dual specificity tyrosine phosphorylation regulated kinase 3 protein-coding 75 0.008941
-8445 DYRK2 dual specificity tyrosine phosphorylation regulated kinase 2 protein-coding 62 0.007392
-8446 DUSP11 dual specificity phosphatase 11 protein-coding 43 0.005126
-8447 DOC2B double C2 domain beta protein-coding 16 0.001907
-8448 DOC2A double C2 domain alpha protein-coding 61 0.007272
-8449 DHX16 DEAH-box helicase 16 protein-coding 123 0.01466
-8450 CUL4B cullin 4B protein-coding 120 0.01431
-8451 CUL4A cullin 4A protein-coding 62 0.007392
-8452 CUL3 cullin 3 protein-coding 155 0.01848
-8453 CUL2 cullin 2 protein-coding 87 0.01037
-8454 CUL1 cullin 1 protein-coding 144 0.01717
-8455 ATRN attractin protein-coding 119 0.01419
-8456 FOXN1 forkhead box N1 protein-coding 68 0.008107
-8458 TTF2 transcription termination factor 2 protein-coding 107 0.01276
-8459 TPST2 tyrosylprotein sulfotransferase 2 protein-coding 49 0.005842
-8460 TPST1 tyrosylprotein sulfotransferase 1 protein-coding 52 0.006199
-8462 KLF11 Kruppel like factor 11 protein-coding 54 0.006438
-8463 TEAD2 TEA domain transcription factor 2 protein-coding 75 0.008941
-8464 SUPT3H SPT3 homolog, SAGA and STAGA complex component protein-coding 59 0.007034
-8467 SMARCA5 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily a, member 5 protein-coding 95 0.01133
-8468 FKBP6 FK506 binding protein 6 protein-coding 56 0.006676
-8470 SORBS2 sorbin and SH3 domain containing 2 protein-coding 149 0.01776
-8471 IRS4 insulin receptor substrate 4 protein-coding 222 0.02647
-8473 OGT O-linked N-acetylglucosamine (GlcNAc) transferase protein-coding 116 0.01383
-8476 CDC42BPA CDC42 binding protein kinase alpha protein-coding 163 0.01943
-8477 GPR65 G protein-coupled receptor 65 protein-coding 51 0.00608
-8479 HIRIP3 HIRA interacting protein 3 protein-coding 59 0.007034
-8480 RAE1 ribonucleic acid export 1 protein-coding 59 0.007034
-8481 OFD1 OFD1, centriole and centriolar satellite protein protein-coding 112 0.01335
-8482 SEMA7A semaphorin 7A (John Milton Hagen blood group) protein-coding 73 0.008703
-8483 CILP cartilage intermediate layer protein protein-coding 151 0.018
-8484 GALR3 galanin receptor 3 protein-coding 15 0.001788
-8487 GEMIN2 gem nuclear organelle associated protein 2 protein-coding 23 0.002742
-8490 RGS5 regulator of G protein signaling 5 protein-coding 40 0.004769
-8491 MAP4K3 mitogen-activated protein kinase kinase kinase kinase 3 protein-coding 108 0.01288
-8492 PRSS12 serine protease 12 protein-coding 103 0.01228
-8493 PPM1D protein phosphatase, Mg2+/Mn2+ dependent 1D protein-coding 79 0.009418
-8495 PPFIBP2 PPFIA binding protein 2 protein-coding 93 0.01109
-8496 PPFIBP1 PPFIA binding protein 1 protein-coding 96 0.01144
-8497 PPFIA4 PTPRF interacting protein alpha 4 protein-coding 126 0.01502
-8498 RANBP3 RAN binding protein 3 protein-coding 76 0.009061
-8499 PPFIA2 PTPRF interacting protein alpha 2 protein-coding 269 0.03207
-8500 PPFIA1 PTPRF interacting protein alpha 1 protein-coding 126 0.01502
-8501 SLC43A1 solute carrier family 43 member 1 protein-coding 50 0.005961
-8502 PKP4 plakophilin 4 protein-coding 135 0.01609
-8503 PIK3R3 phosphoinositide-3-kinase regulatory subunit 3 protein-coding 72 0.008584
-8504 PEX3 peroxisomal biogenesis factor 3 protein-coding 36 0.004292
-8505 PARG poly(ADP-ribose) glycohydrolase protein-coding 49 0.005842
-8506 CNTNAP1 contactin associated protein 1 protein-coding 144 0.01717
-8507 ENC1 ectodermal-neural cortex 1 protein-coding 97 0.01156
-8508 NIPSNAP1 nipsnap homolog 1 protein-coding 22 0.002623
-8509 NDST2 N-deacetylase and N-sulfotransferase 2 protein-coding 86 0.01025
-8510 MMP23B matrix metallopeptidase 23B protein-coding 4 0.0004769
-8511 MMP23A matrix metallopeptidase 23A (pseudogene) pseudo 60 0.007153
-8512 MBL1P mannose binding lectin 1, pseudogene pseudo 26 0.0031
-8513 LIPF lipase F, gastric type protein-coding 61 0.007272
-8514 KCNAB2 potassium voltage-gated channel subfamily A regulatory beta subunit 2 protein-coding 37 0.004411
-8515 ITGA10 integrin subunit alpha 10 protein-coding 149 0.01776
-8516 ITGA8 integrin subunit alpha 8 protein-coding 218 0.02599
-8517 IKBKG inhibitor of nuclear factor kappa B kinase subunit gamma protein-coding 25 0.00298
-8518 ELP1 elongator complex protein 1 protein-coding 117 0.01395
-8519 IFITM1 interferon induced transmembrane protein 1 protein-coding 19 0.002265
-8520 HAT1 histone acetyltransferase 1 protein-coding 55 0.006557
-8521 GCM1 glial cells missing homolog 1 protein-coding 66 0.007868
-8522 GAS7 growth arrest specific 7 protein-coding 83 0.009895
-8525 DGKZ diacylglycerol kinase zeta protein-coding 99 0.0118
-8526 DGKE diacylglycerol kinase epsilon protein-coding 76 0.009061
-8527 DGKD diacylglycerol kinase delta protein-coding 133 0.01586
-8528 DDO D-aspartate oxidase protein-coding 50 0.005961
-8529 CYP4F2 cytochrome P450 family 4 subfamily F member 2 protein-coding 114 0.01359
-8530 CST7 cystatin F protein-coding 13 0.00155
-8531 YBX3 Y-box binding protein 3 protein-coding 52 0.006199
-8532 CPZ carboxypeptidase Z protein-coding 126 0.01502
-8533 COPS3 COP9 signalosome subunit 3 protein-coding 89 0.01061
-8534 CHST1 carbohydrate sulfotransferase 1 protein-coding 101 0.01204
-8535 CBX4 chromobox 4 protein-coding 54 0.006438
-8536 CAMK1 calcium/calmodulin dependent protein kinase I protein-coding 41 0.004888
-8537 BCAS1 breast carcinoma amplified sequence 1 protein-coding 85 0.01013
-8538 BARX2 BARX homeobox 2 protein-coding 29 0.003457
-8539 API5 apoptosis inhibitor 5 protein-coding 63 0.007511
-8540 AGPS alkylglycerone phosphate synthase protein-coding 72 0.008584
-8541 PPFIA3 PTPRF interacting protein alpha 3 protein-coding 125 0.0149
-8542 APOL1 apolipoprotein L1 protein-coding 37 0.004411
-8543 LMO4 LIM domain only 4 protein-coding 29 0.003457
-8544 PIR pirin protein-coding 32 0.003815
-8545 CGGBP1 CGG triplet repeat binding protein 1 protein-coding 20 0.002384
-8546 AP3B1 adaptor related protein complex 3 beta 1 subunit protein-coding 120 0.01431
-8547 FCN3 ficolin 3 protein-coding 33 0.003934
-8548 BLZF1 basic leucine zipper nuclear factor 1 protein-coding 55 0.006557
-8549 LGR5 leucine rich repeat containing G protein-coupled receptor 5 protein-coding 115 0.01371
-8550 MAPKAPK5 mitogen-activated protein kinase-activated protein kinase 5 protein-coding 51 0.00608
-8553 BHLHE40 basic helix-loop-helix family member e40 protein-coding 57 0.006795
-8554 PIAS1 protein inhibitor of activated STAT 1 protein-coding 76 0.009061
-8555 CDC14B cell division cycle 14B protein-coding 62 0.007392
-8556 CDC14A cell division cycle 14A protein-coding 83 0.009895
-8557 TCAP titin-cap protein-coding 16 0.001907
-8558 CDK10 cyclin dependent kinase 10 protein-coding 46 0.005484
-8559 PRPF18 pre-mRNA processing factor 18 protein-coding 40 0.004769
-8560 DEGS1 delta 4-desaturase, sphingolipid 1 protein-coding 36 0.004292
-8562 DENR density regulated re-initiation and release factor protein-coding 17 0.002027
-8563 THOC5 THO complex 5 protein-coding 78 0.009299
-8564 KMO kynurenine 3-monooxygenase protein-coding 76 0.009061
-8565 YARS tyrosyl-tRNA synthetase protein-coding 61 0.007272
-8566 PDXK pyridoxal kinase protein-coding 27 0.003219
-8567 MADD MAP kinase activating death domain protein-coding 167 0.01991
-8568 RRP1 ribosomal RNA processing 1 protein-coding 33 0.003934
-8569 MKNK1 MAP kinase interacting serine/threonine kinase 1 protein-coding 46 0.005484
-8570 KHSRP KH-type splicing regulatory protein protein-coding 123 0.01466
-8572 PDLIM4 PDZ and LIM domain 4 protein-coding 32 0.003815
-8573 CASK calcium/calmodulin dependent serine protein kinase protein-coding 104 0.0124
-8574 AKR7A2 aldo-keto reductase family 7 member A2 protein-coding 37 0.004411
-8575 PRKRA protein activator of interferon induced protein kinase EIF2AK2 protein-coding 59 0.007034
-8576 STK16 serine/threonine kinase 16 protein-coding 38 0.00453
-8577 TMEFF1 transmembrane protein with EGF like and two follistatin like domains 1 protein-coding 49 0.005842
-8578 SCARF1 scavenger receptor class F member 1 protein-coding 61 0.007272
-8581 LY6D lymphocyte antigen 6 family member D protein-coding 21 0.002504
-8590 OR6A2 olfactory receptor family 6 subfamily A member 2 protein-coding 64 0.00763
-8600 TNFSF11 TNF superfamily member 11 protein-coding 35 0.004173
-8601 RGS20 regulator of G protein signaling 20 protein-coding 56 0.006676
-8602 NOP14 NOP14 nucleolar protein protein-coding 87 0.01037
-8603 FAM193A family with sequence similarity 193 member A protein-coding 149 0.01776
-8604 SLC25A12 solute carrier family 25 member 12 protein-coding 92 0.01097
-8605 PLA2G4C phospholipase A2 group IVC protein-coding 83 0.009895
-8607 RUVBL1 RuvB like AAA ATPase 1 protein-coding 54 0.006438
-8608 RDH16 retinol dehydrogenase 16 protein-coding 53 0.006319
-8609 KLF7 Kruppel like factor 7 protein-coding 40 0.004769
-8611 PLPP1 phospholipid phosphatase 1 protein-coding 28 0.003338
-8612 PLPP2 phospholipid phosphatase 2 protein-coding 25 0.00298
-8613 PLPP3 phospholipid phosphatase 3 protein-coding 32 0.003815
-8614 STC2 stanniocalcin 2 protein-coding 49 0.005842
-8615 USO1 USO1 vesicle transport factor protein-coding 68 0.008107
-8618 CADPS calcium dependent secretion activator protein-coding 223 0.02659
-8620 NPFF neuropeptide FF-amide peptide precursor protein-coding 10 0.001192
-8621 CDK13 cyclin dependent kinase 13 protein-coding 135 0.01609
-8622 PDE8B phosphodiesterase 8B protein-coding 112 0.01335
-8623 ASMTL acetylserotonin O-methyltransferase like protein-coding 90 0.01073
-8624 PSMG1 proteasome assembly chaperone 1 protein-coding 31 0.003696
-8625 RFXANK regulatory factor X associated ankyrin containing protein protein-coding 20 0.002384
-8626 TP63 tumor protein p63 protein-coding 158 0.01884
-8629 JRK Jrk helix-turn-helix protein protein-coding 100 0.01192
-8630 HSD17B6 hydroxysteroid 17-beta dehydrogenase 6 protein-coding 34 0.004053
-8631 SKAP1 src kinase associated phosphoprotein 1 protein-coding 58 0.006915
-8632 DNAH17 dynein axonemal heavy chain 17 protein-coding 405 0.04828
-8633 UNC5C unc-5 netrin receptor C protein-coding 166 0.01979
-8634 RTCA RNA 3'-terminal phosphate cyclase protein-coding 35 0.004173
-8635 RNASET2 ribonuclease T2 protein-coding 26 0.0031
-8636 SSNA1 SS nuclear autoantigen 1 protein-coding 9 0.001073
-8637 EIF4EBP3 eukaryotic translation initiation factor 4E binding protein 3 protein-coding 13 0.00155
-8638 OASL 2'-5'-oligoadenylate synthetase like protein-coding 57 0.006795
-8639 AOC3 amine oxidase, copper containing 3 protein-coding 86 0.01025
-8641 PCDHGB4 protocadherin gamma subfamily B, 4 protein-coding 279 0.03326
-8642 DCHS1 dachsous cadherin-related 1 protein-coding 457 0.05448
-8643 PTCH2 patched 2 protein-coding 128 0.01526
-8644 AKR1C3 aldo-keto reductase family 1 member C3 protein-coding 39 0.004649
-8645 KCNK5 potassium two pore domain channel subfamily K member 5 protein-coding 59 0.007034
-8646 CHRD chordin protein-coding 131 0.01562
-8647 ABCB11 ATP binding cassette subfamily B member 11 protein-coding 161 0.01919
-8648 NCOA1 nuclear receptor coactivator 1 protein-coding 160 0.01907
-8649 LAMTOR3 late endosomal/lysosomal adaptor, MAPK and MTOR activator 3 protein-coding 14 0.001669
-8650 NUMB NUMB, endocytic adaptor protein protein-coding 60 0.007153
-8651 SOCS1 suppressor of cytokine signaling 1 protein-coding 22 0.002623
-8653 DDX3Y DEAD-box helicase 3, Y-linked protein-coding 19 0.002265
-8654 PDE5A phosphodiesterase 5A protein-coding 97 0.01156
-8655 DYNLL1 dynein light chain LC8-type 1 protein-coding 265 0.03159
-8658 TNKS tankyrase protein-coding 134 0.01598
-8659 ALDH4A1 aldehyde dehydrogenase 4 family member A1 protein-coding 55 0.006557
-8660 IRS2 insulin receptor substrate 2 protein-coding 60 0.007153
-8661 EIF3A eukaryotic translation initiation factor 3 subunit A protein-coding 140 0.01669
-8662 EIF3B eukaryotic translation initiation factor 3 subunit B protein-coding 71 0.008464
-8663 EIF3C eukaryotic translation initiation factor 3 subunit C protein-coding 19 0.002265
-8664 EIF3D eukaryotic translation initiation factor 3 subunit D protein-coding 54 0.006438
-8665 EIF3F eukaryotic translation initiation factor 3 subunit F protein-coding 31 0.003696
-8666 EIF3G eukaryotic translation initiation factor 3 subunit G protein-coding 38 0.00453
-8667 EIF3H eukaryotic translation initiation factor 3 subunit H protein-coding 33 0.003934
-8668 EIF3I eukaryotic translation initiation factor 3 subunit I protein-coding 44 0.005246
-8669 EIF3J eukaryotic translation initiation factor 3 subunit J protein-coding 33 0.003934
-8671 SLC4A4 solute carrier family 4 member 4 protein-coding 256 0.03052
-8672 EIF4G3 eukaryotic translation initiation factor 4 gamma 3 protein-coding 188 0.02241
-8673 VAMP8 vesicle associated membrane protein 8 protein-coding 10 0.001192
-8674 VAMP4 vesicle associated membrane protein 4 protein-coding 13 0.00155
-8675 STX16 syntaxin 16 protein-coding 46 0.005484
-8676 STX11 syntaxin 11 protein-coding 58 0.006915
-8677 STX10 syntaxin 10 protein-coding 22 0.002623
-8678 BECN1 beclin 1 protein-coding 38 0.00453
-8681 JMJD7-PLA2G4B JMJD7-PLA2G4B readthrough protein-coding 21 0.002504
-8682 PEA15 proliferation and apoptosis adaptor protein 15 protein-coding 14 0.001669
-8683 SRSF9 serine and arginine rich splicing factor 9 protein-coding 16 0.001907
-8685 MARCO macrophage receptor with collagenous structure protein-coding 118 0.01407
-8687 KRT38 keratin 38 protein-coding 76 0.009061
-8688 KRT37 keratin 37 protein-coding 75 0.008941
-8689 KRT36 keratin 36 protein-coding 63 0.007511
-8690 JRKL JRK like protein-coding 61 0.007272
-8692 HYAL2 hyaluronoglucosaminidase 2 protein-coding 48 0.005722
-8693 GALNT4 polypeptide N-acetylgalactosaminyltransferase 4 protein-coding 62 0.007392
-8694 DGAT1 diacylglycerol O-acyltransferase 1 protein-coding 55 0.006557
-8697 CDC23 cell division cycle 23 protein-coding 50 0.005961
-8698 S1PR4 sphingosine-1-phosphate receptor 4 protein-coding 60 0.007153
-8701 DNAH11 dynein axonemal heavy chain 11 protein-coding 537 0.06402
-8702 B4GALT4 beta-1,4-galactosyltransferase 4 protein-coding 48 0.005722
-8703 B4GALT3 beta-1,4-galactosyltransferase 3 protein-coding 48 0.005722
-8704 B4GALT2 beta-1,4-galactosyltransferase 2 protein-coding 39 0.004649
-8705 B3GALT4 beta-1,3-galactosyltransferase 4 protein-coding 47 0.005603
-8706 B3GALNT1 beta-1,3-N-acetylgalactosaminyltransferase 1 (globoside blood group) protein-coding 42 0.005007
-8707 B3GALT2 beta-1,3-galactosyltransferase 2 protein-coding 57 0.006795
-8708 B3GALT1 beta-1,3-galactosyltransferase 1 protein-coding 52 0.006199
-8710 SERPINB7 serpin family B member 7 protein-coding 67 0.007988
-8711 TNK1 tyrosine kinase non receptor 1 protein-coding 48 0.005722
-8712 PAGE1 PAGE family member 1 protein-coding 36 0.004292
-8714 ABCC3 ATP binding cassette subfamily C member 3 protein-coding 150 0.01788
-8715 NOL4 nucleolar protein 4 protein-coding 153 0.01824
-8717 TRADD TNFRSF1A associated via death domain protein-coding 25 0.00298
-8718 TNFRSF25 TNF receptor superfamily member 25 protein-coding 41 0.004888
-8720 MBTPS1 membrane bound transcription factor peptidase, site 1 protein-coding 121 0.01443
-8721 EDF1 endothelial differentiation related factor 1 protein-coding 18 0.002146
-8722 CTSF cathepsin F protein-coding 61 0.007272
-8723 SNX4 sorting nexin 4 protein-coding 42 0.005007
-8724 SNX3 sorting nexin 3 protein-coding 11 0.001311
-8725 URI1 URI1, prefoldin like chaperone protein-coding 83 0.009895
-8726 EED embryonic ectoderm development protein-coding 70 0.008345
-8727 CTNNAL1 catenin alpha like 1 protein-coding 73 0.008703
-8728 ADAM19 ADAM metallopeptidase domain 19 protein-coding 143 0.01705
-8729 GBF1 golgi brefeldin A resistant guanine nucleotide exchange factor 1 protein-coding 176 0.02098
-8731 RNMT RNA guanine-7 methyltransferase protein-coding 238 0.02837
-8732 RNGTT RNA guanylyltransferase and 5'-phosphatase protein-coding 64 0.00763
-8733 GPAA1 glycosylphosphatidylinositol anchor attachment 1 protein-coding 52 0.006199
-8735 MYH13 myosin heavy chain 13 protein-coding 294 0.03505
-8736 MYOM1 myomesin 1 protein-coding 198 0.02361
-8737 RIPK1 receptor interacting serine/threonine kinase 1 protein-coding 77 0.00918
-8738 CRADD CASP2 and RIPK1 domain containing adaptor with death domain protein-coding 33 0.003934
-8739 HRK harakiri, BCL2 interacting protein protein-coding 1 0.0001192
-8740 TNFSF14 TNF superfamily member 14 protein-coding 49 0.005842
-8741 TNFSF13 TNF superfamily member 13 protein-coding 8 0.0009537
-8742 TNFSF12 TNF superfamily member 12 protein-coding 14 0.001669
-8743 TNFSF10 TNF superfamily member 10 protein-coding 28 0.003338
-8744 TNFSF9 TNF superfamily member 9 protein-coding 24 0.002861
-8745 ADAM23 ADAM metallopeptidase domain 23 protein-coding 148 0.01764
-8747 ADAM21 ADAM metallopeptidase domain 21 protein-coding 131 0.01562
-8748 ADAM20 ADAM metallopeptidase domain 20 protein-coding 82 0.009776
-8749 ADAM18 ADAM metallopeptidase domain 18 protein-coding 128 0.01526
-8751 ADAM15 ADAM metallopeptidase domain 15 protein-coding 72 0.008584
-8754 ADAM9 ADAM metallopeptidase domain 9 protein-coding 86 0.01025
-8755 ADAM6 ADAM metallopeptidase domain 6 (pseudogene) pseudo 25 0.00298
-8756 ADAM7 ADAM metallopeptidase domain 7 protein-coding 147 0.01753
-8760 CDS2 CDP-diacylglycerol synthase 2 protein-coding 49 0.005842
-8761 PABPC4 poly(A) binding protein cytoplasmic 4 protein-coding 76 0.009061
-8763 CD164 CD164 molecule protein-coding 17 0.002027
-8764 TNFRSF14 TNF receptor superfamily member 14 protein-coding 28 0.003338
-8766 RAB11A RAB11A, member RAS oncogene family protein-coding 33 0.003934
-8767 RIPK2 receptor interacting serine/threonine kinase 2 protein-coding 77 0.00918
-8771 TNFRSF6B TNF receptor superfamily member 6b protein-coding 25 0.00298
-8772 FADD Fas associated via death domain protein-coding 35 0.004173
-8773 SNAP23 synaptosome associated protein 23 protein-coding 24 0.002861
-8774 NAPG NSF attachment protein gamma protein-coding 42 0.005007
-8775 NAPA NSF attachment protein alpha protein-coding 31 0.003696
-8776 MTMR1 myotubularin related protein 1 protein-coding 99 0.0118
-8777 MPDZ multiple PDZ domain crumbs cell polarity complex component protein-coding 228 0.02718
-8778 SIGLEC5 sialic acid binding Ig like lectin 5 protein-coding 98 0.01168
-8780 RIOK3 RIO kinase 3 protein-coding 54 0.006438
-8784 TNFRSF18 TNF receptor superfamily member 18 protein-coding 15 0.001788
-8785 MATN4 matrilin 4 protein-coding 107 0.01276
-8786 RGS11 regulator of G protein signaling 11 protein-coding 38 0.00453
-8787 RGS9 regulator of G protein signaling 9 protein-coding 98 0.01168
-8788 DLK1 delta like non-canonical Notch ligand 1 protein-coding 71 0.008464
-8789 FBP2 fructose-bisphosphatase 2 protein-coding 48 0.005722
-8790 FPGT fucose-1-phosphate guanylyltransferase protein-coding 63 0.007511
-8792 TNFRSF11A TNF receptor superfamily member 11a protein-coding 70 0.008345
-8793 TNFRSF10D TNF receptor superfamily member 10d protein-coding 35 0.004173
-8794 TNFRSF10C TNF receptor superfamily member 10c protein-coding 30 0.003577
-8795 TNFRSF10B TNF receptor superfamily member 10b protein-coding 42 0.005007
-8796 SCEL sciellin protein-coding 91 0.01085
-8797 TNFRSF10A TNF receptor superfamily member 10a protein-coding 43 0.005126
-8798 DYRK4 dual specificity tyrosine phosphorylation regulated kinase 4 protein-coding 94 0.01121
-8799 PEX11B peroxisomal biogenesis factor 11 beta protein-coding 32 0.003815
-8800 PEX11A peroxisomal biogenesis factor 11 alpha protein-coding 26 0.0031
-8801 SUCLG2 succinate-CoA ligase GDP-forming beta subunit protein-coding 34 0.004053
-8802 SUCLG1 succinate-CoA ligase alpha subunit protein-coding 48 0.005722
-8803 SUCLA2 succinate-CoA ligase ADP-forming beta subunit protein-coding 51 0.00608
-8804 CREG1 cellular repressor of E1A stimulated genes 1 protein-coding 10 0.001192
-8805 TRIM24 tripartite motif containing 24 protein-coding 102 0.01216
-8807 IL18RAP interleukin 18 receptor accessory protein protein-coding 109 0.01299
-8808 IL1RL2 interleukin 1 receptor like 2 protein-coding 70 0.008345
-8809 IL18R1 interleukin 18 receptor 1 protein-coding 72 0.008584
-8811 GALR2 galanin receptor 2 protein-coding 42 0.005007
-8812 CCNK cyclin K protein-coding 41 0.004888
-8813 DPM1 dolichyl-phosphate mannosyltransferase subunit 1, catalytic protein-coding 34 0.004053
-8814 CDKL1 cyclin dependent kinase like 1 protein-coding 40 0.004769
-8815 BANF1 barrier to autointegration factor 1 protein-coding 13 0.00155
-8816 DCAF5 DDB1 and CUL4 associated factor 5 protein-coding 90 0.01073
-8817 FGF18 fibroblast growth factor 18 protein-coding 29 0.003457
-8818 DPM2 dolichyl-phosphate mannosyltransferase subunit 2, regulatory protein-coding 6 0.0007153
-8819 SAP30 Sin3A associated protein 30 protein-coding 20 0.002384
-8820 HESX1 HESX homeobox 1 protein-coding 31 0.003696
-8821 INPP4B inositol polyphosphate-4-phosphatase type II B protein-coding 145 0.01729
-8822 FGF17 fibroblast growth factor 17 protein-coding 25 0.00298
-8823 FGF16 fibroblast growth factor 16 protein-coding 28 0.003338
-8824 CES2 carboxylesterase 2 protein-coding 63 0.007511
-8825 LIN7A lin-7 homolog A, crumbs cell polarity complex component protein-coding 68 0.008107
-8826 IQGAP1 IQ motif containing GTPase activating protein 1 protein-coding 152 0.01812
-8828 NRP2 neuropilin 2 protein-coding 124 0.01478
-8829 NRP1 neuropilin 1 protein-coding 112 0.01335
-8831 SYNGAP1 synaptic Ras GTPase activating protein 1 protein-coding 311 0.03708
-8832 CD84 CD84 molecule protein-coding 60 0.007153
-8833 GMPS guanine monophosphate synthase protein-coding 91 0.01085
-8834 TMEM11 transmembrane protein 11 protein-coding 22 0.002623
-8835 SOCS2 suppressor of cytokine signaling 2 protein-coding 31 0.003696
-8836 GGH gamma-glutamyl hydrolase protein-coding 44 0.005246
-8837 CFLAR CASP8 and FADD like apoptosis regulator protein-coding 41 0.004888
-8838 WISP3 WNT1 inducible signaling pathway protein 3 protein-coding 47 0.005603
-8839 WISP2 WNT1 inducible signaling pathway protein 2 protein-coding 41 0.004888
-8840 WISP1 WNT1 inducible signaling pathway protein 1 protein-coding 92 0.01097
-8841 HDAC3 histone deacetylase 3 protein-coding 64 0.00763
-8842 PROM1 prominin 1 protein-coding 81 0.009657
-8843 HCAR3 hydroxycarboxylic acid receptor 3 protein-coding 55 0.006557
-8844 KSR1 kinase suppressor of ras 1 protein-coding 99 0.0118
-8846 ALKBH1 alkB homolog 1, histone H2A dioxygenase protein-coding 51 0.00608
-8848 TSC22D1 TSC22 domain family member 1 protein-coding 91 0.01085
-8850 KAT2B lysine acetyltransferase 2B protein-coding 98 0.01168
-8851 CDK5R1 cyclin dependent kinase 5 regulatory subunit 1 protein-coding 32 0.003815
-8852 AKAP4 A-kinase anchoring protein 4 protein-coding 134 0.01598
-8853 ASAP2 ArfGAP with SH3 domain, ankyrin repeat and PH domain 2 protein-coding 129 0.01538
-8854 ALDH1A2 aldehyde dehydrogenase 1 family member A2 protein-coding 77 0.00918
-8856 NR1I2 nuclear receptor subfamily 1 group I member 2 protein-coding 59 0.007034
-8857 FCGBP Fc fragment of IgG binding protein protein-coding 432 0.0515
-8858 PROZ protein Z, vitamin K dependent plasma glycoprotein protein-coding 48 0.005722
-8859 STK19 serine/threonine kinase 19 protein-coding 427 0.05091
-8861 LDB1 LIM domain binding 1 protein-coding 53 0.006319
-8862 APLN apelin protein-coding 8 0.0009537
-8863 PER3 period circadian regulator 3 protein-coding 121 0.01443
-8864 PER2 period circadian regulator 2 protein-coding 129 0.01538
-8867 SYNJ1 synaptojanin 1 protein-coding 166 0.01979
-8869 ST3GAL5 ST3 beta-galactoside alpha-2,3-sialyltransferase 5 protein-coding 41 0.004888
-8870 IER3 immediate early response 3 protein-coding 7 0.0008345
-8871 SYNJ2 synaptojanin 2 protein-coding 135 0.01609
-8872 CDC123 cell division cycle 123 protein-coding 41 0.004888
-8874 ARHGEF7 Rho guanine nucleotide exchange factor 7 protein-coding 193 0.02301
-8875 VNN2 vanin 2 protein-coding 76 0.009061
-8876 VNN1 vanin 1 protein-coding 84 0.01001
-8877 SPHK1 sphingosine kinase 1 protein-coding 40 0.004769
-8878 SQSTM1 sequestosome 1 protein-coding 55 0.006557
-8879 SGPL1 sphingosine-1-phosphate lyase 1 protein-coding 61 0.007272
-8880 FUBP1 far upstream element binding protein 1 protein-coding 137 0.01633
-8881 CDC16 cell division cycle 16 protein-coding 66 0.007868
-8882 ZPR1 ZPR1 zinc finger protein-coding 42 0.005007
-8883 NAE1 NEDD8 activating enzyme E1 subunit 1 protein-coding 51 0.00608
-8884 SLC5A6 solute carrier family 5 member 6 protein-coding 66 0.007868
-8886 DDX18 DEAD-box helicase 18 protein-coding 91 0.01085
-8887 TAX1BP1 Tax1 binding protein 1 protein-coding 77 0.00918
-8888 MCM3AP minichromosome maintenance complex component 3 associated protein protein-coding 182 0.0217
-8890 EIF2B4 eukaryotic translation initiation factor 2B subunit delta protein-coding 50 0.005961
-8891 EIF2B3 eukaryotic translation initiation factor 2B subunit gamma protein-coding 46 0.005484
-8892 EIF2B2 eukaryotic translation initiation factor 2B subunit beta protein-coding 35 0.004173
-8893 EIF2B5 eukaryotic translation initiation factor 2B subunit epsilon protein-coding 65 0.007749
-8894 EIF2S2 eukaryotic translation initiation factor 2 subunit beta protein-coding 40 0.004769
-8895 CPNE3 copine 3 protein-coding 75 0.008941
-8896 BUD31 BUD31 homolog protein-coding 24 0.002861
-8897 MTMR3 myotubularin related protein 3 protein-coding 113 0.01347
-8898 MTMR2 myotubularin related protein 2 protein-coding 58 0.006915
-8899 PRPF4B pre-mRNA processing factor 4B protein-coding 110 0.01311
-8900 CCNA1 cyclin A1 protein-coding 87 0.01037
-8904 CPNE1 copine 1 protein-coding 134 0.01598
-8905 AP1S2 adaptor related protein complex 1 sigma 2 subunit protein-coding 21 0.002504
-8906 AP1G2 adaptor related protein complex 1 gamma 2 subunit protein-coding 89 0.01061
-8907 AP1M1 adaptor related protein complex 1 mu 1 subunit protein-coding 56 0.006676
-8908 GYG2 glycogenin 2 protein-coding 61 0.007272
-8909 ENDOU endonuclease, poly(U) specific protein-coding 49 0.005842
-8910 SGCE sarcoglycan epsilon protein-coding 56 0.006676
-8911 CACNA1I calcium voltage-gated channel subunit alpha1 I protein-coding 195 0.02325
-8912 CACNA1H calcium voltage-gated channel subunit alpha1 H protein-coding 260 0.031
-8913 CACNA1G calcium voltage-gated channel subunit alpha1 G protein-coding 232 0.02766
-8914 TIMELESS timeless circadian regulator protein-coding 134 0.01598
-8915 BCL10 B cell CLL/lymphoma 10 protein-coding 35 0.004173
-8916 HERC3 HECT and RLD domain containing E3 ubiquitin protein ligase 3 protein-coding 98 0.01168
-8924 HERC2 HECT and RLD domain containing E3 ubiquitin protein ligase 2 protein-coding 473 0.05639
-8925 HERC1 HECT and RLD domain containing E3 ubiquitin protein ligase family member 1 protein-coding 360 0.04292
-8926 SNURF SNRPN upstream reading frame protein-coding 19 0.002265
-8927 BSN bassoon presynaptic cytomatrix protein protein-coding 330 0.03934
-8928 FOXH1 forkhead box H1 protein-coding 31 0.003696
-8929 PHOX2B paired like homeobox 2b protein-coding 50 0.005961
-8930 MBD4 methyl-CpG binding domain 4, DNA glycosylase protein-coding 195 0.02325
-8932 MBD2 methyl-CpG binding domain protein 2 protein-coding 34 0.004053
-8933 RTL8C retrotransposon Gag like 8C protein-coding 18 0.002146
-8934 RAB29 RAB29, member RAS oncogene family protein-coding 21 0.002504
-8935 SKAP2 src kinase associated phosphoprotein 2 protein-coding 41 0.004888
-8936 WASF1 WAS protein family member 1 protein-coding 65 0.007749
-8938 BAIAP3 BAI1 associated protein 3 protein-coding 130 0.0155
-8939 FUBP3 far upstream element binding protein 3 protein-coding 76 0.009061
-8940 TOP3B DNA topoisomerase III beta protein-coding 89 0.01061
-8941 CDK5R2 cyclin dependent kinase 5 regulatory subunit 2 protein-coding 12 0.001431
-8942 KYNU kynureninase protein-coding 102 0.01216
-8943 AP3D1 adaptor related protein complex 3 delta 1 subunit protein-coding 114 0.01359
-8945 BTRC beta-transducin repeat containing E3 ubiquitin protein ligase protein-coding 85 0.01013
-8968 HIST1H3F histone cluster 1 H3 family member f protein-coding 41 0.004888
-8969 HIST1H2AG histone cluster 1 H2A family member g protein-coding 40 0.004769
-8970 HIST1H2BJ histone cluster 1 H2B family member j protein-coding 27 0.003219
-8971 H1FX H1 histone family member X protein-coding 19 0.002265
-8972 MGAM maltase-glucoamylase protein-coding 573 0.06831
-8973 CHRNA6 cholinergic receptor nicotinic alpha 6 subunit protein-coding 83 0.009895
-8974 P4HA2 prolyl 4-hydroxylase subunit alpha 2 protein-coding 67 0.007988
-8975 USP13 ubiquitin specific peptidase 13 protein-coding 120 0.01431
-8976 WASL Wiskott-Aldrich syndrome like protein-coding 82 0.009776
-8985 PLOD3 procollagen-lysine,2-oxoglutarate 5-dioxygenase 3 protein-coding 94 0.01121
-8986 RPS6KA4 ribosomal protein S6 kinase A4 protein-coding 62 0.007392
-8988 HSPB3 heat shock protein family B (small) member 3 protein-coding 29 0.003457
-8989 TRPA1 transient receptor potential cation channel subfamily A member 1 protein-coding 282 0.03362
-8991 SELENBP1 selenium binding protein 1 protein-coding 56 0.006676
-8992 ATP6V0E1 ATPase H+ transporting V0 subunit e1 protein-coding 4 0.0004769
-8993 PGLYRP1 peptidoglycan recognition protein 1 protein-coding 26 0.0031
-8994 LIMD1 LIM domains containing 1 protein-coding 60 0.007153
-8995 TNFSF18 TNF superfamily member 18 protein-coding 27 0.003219
-8996 NOL3 nucleolar protein 3 protein-coding 71 0.008464
-8997 KALRN kalirin RhoGEF kinase protein-coding 524 0.06247
-8999 CDKL2 cyclin dependent kinase like 2 protein-coding 68 0.008107
-9001 HAP1 huntingtin associated protein 1 protein-coding 68 0.008107
-9002 F2RL3 F2R like thrombin or trypsin receptor 3 protein-coding 30 0.003577
-9013 TAF1C TATA-box binding protein associated factor, RNA polymerase I subunit C protein-coding 103 0.01228
-9014 TAF1B TATA-box binding protein associated factor, RNA polymerase I subunit B protein-coding 62 0.007392
-9015 TAF1A TATA-box binding protein associated factor, RNA polymerase I subunit A protein-coding 51 0.00608
-9016 SLC25A14 solute carrier family 25 member 14 protein-coding 55 0.006557
-9019 MPZL1 myelin protein zero like 1 protein-coding 34 0.004053
-9020 MAP3K14 mitogen-activated protein kinase kinase kinase 14 protein-coding 57 0.006795
-9021 SOCS3 suppressor of cytokine signaling 3 protein-coding 30 0.003577
-9022 CLIC3 chloride intracellular channel 3 protein-coding 19 0.002265
-9023 CH25H cholesterol 25-hydroxylase protein-coding 24 0.002861
-9024 BRSK2 BR serine/threonine kinase 2 protein-coding 81 0.009657
-9025 RNF8 ring finger protein 8 protein-coding 54 0.006438
-9026 HIP1R huntingtin interacting protein 1 related protein-coding 99 0.0118
-9027 NAT8 N-acetyltransferase 8 (putative) protein-coding 99 0.0118
-9028 RHBDL1 rhomboid like 1 protein-coding 35 0.004173
-9031 BAZ1B bromodomain adjacent to zinc finger domain 1B protein-coding 128 0.01526
-9032 TM4SF5 transmembrane 4 L six family member 5 protein-coding 27 0.003219
-9033 PKD2L1 polycystin 2 like 1, transient receptor potential cation channel protein-coding 116 0.01383
-9034 CCRL2 C-C motif chemokine receptor like 2 protein-coding 35 0.004173
-9037 SEMA5A semaphorin 5A protein-coding 204 0.02432
-9038 TAAR5 trace amine associated receptor 5 protein-coding 63 0.007511
-9039 UBA3 ubiquitin like modifier activating enzyme 3 protein-coding 55 0.006557
-9040 UBE2M ubiquitin conjugating enzyme E2 M protein-coding 33 0.003934
-9043 SPAG9 sperm associated antigen 9 protein-coding 114 0.01359
-9044 BTAF1 B-TFIID TATA-box binding protein associated factor 1 protein-coding 185 0.02206
-9045 RPL14 ribosomal protein L14 protein-coding 18 0.002146
-9046 DOK2 docking protein 2 protein-coding 53 0.006319
-9047 SH2D2A SH2 domain containing 2A protein-coding 158 0.01884
-9048 ARTN artemin protein-coding 109 0.01299
-9049 AIP aryl hydrocarbon receptor interacting protein protein-coding 26 0.0031
-9050 PSTPIP2 proline-serine-threonine phosphatase interacting protein 2 protein-coding 33 0.003934
-9051 PSTPIP1 proline-serine-threonine phosphatase interacting protein 1 protein-coding 50 0.005961
-9052 GPRC5A G protein-coupled receptor class C group 5 member A protein-coding 37 0.004411
-9053 MAP7 microtubule associated protein 7 protein-coding 94 0.01121
-9054 NFS1 NFS1, cysteine desulfurase protein-coding 36 0.004292
-9055 PRC1 protein regulator of cytokinesis 1 protein-coding 65 0.007749
-9056 SLC7A7 solute carrier family 7 member 7 protein-coding 56 0.006676
-9057 SLC7A6 solute carrier family 7 member 6 protein-coding 40 0.004769
-9058 SLC13A2 solute carrier family 13 member 2 protein-coding 75 0.008941
-9060 PAPSS2 3'-phosphoadenosine 5'-phosphosulfate synthase 2 protein-coding 68 0.008107
-9061 PAPSS1 3'-phosphoadenosine 5'-phosphosulfate synthase 1 protein-coding 73 0.008703
-9063 PIAS2 protein inhibitor of activated STAT 2 protein-coding 68 0.008107
-9064 MAP3K6 mitogen-activated protein kinase kinase kinase 6 protein-coding 93 0.01109
-9066 SYT7 synaptotagmin 7 protein-coding 49 0.005842
-9068 ANGPTL1 angiopoietin like 1 protein-coding 57 0.006795
-9069 CLDN12 claudin 12 protein-coding 34 0.004053
-9070 ASH2L ASH2 like histone lysine methyltransferase complex subunit protein-coding 65 0.007749
-9071 CLDN10 claudin 10 protein-coding 56 0.006676
-9073 CLDN8 claudin 8 protein-coding 38 0.00453
-9074 CLDN6 claudin 6 protein-coding 38 0.00453
-9075 CLDN2 claudin 2 protein-coding 27 0.003219
-9076 CLDN1 claudin 1 protein-coding 32 0.003815
-9077 DIRAS3 DIRAS family GTPase 3 protein-coding 37 0.004411
-9079 LDB2 LIM domain binding 2 protein-coding 143 0.01705
-9080 CLDN9 claudin 9 protein-coding 33 0.003934
-9086 EIF1AY eukaryotic translation initiation factor 1A, Y-linked protein-coding 2 0.0002384
-9087 TMSB4Y thymosin beta 4, Y-linked protein-coding 2 0.0002384
-9088 PKMYT1 protein kinase, membrane associated tyrosine/threonine 1 protein-coding 215 0.02563
-9091 PIGQ phosphatidylinositol glycan anchor biosynthesis class Q protein-coding 76 0.009061
-9092 SART1 SART1, U4/U6.U5 tri-snRNP-associated protein 1 protein-coding 52 0.006199
-9093 DNAJA3 DnaJ heat shock protein family (Hsp40) member A3 protein-coding 46 0.005484
-9094 UNC119 unc-119 lipid binding chaperone protein-coding 22 0.002623
-9095 TBX19 T-box 19 protein-coding 73 0.008703
-9096 TBX18 T-box 18 protein-coding 117 0.01395
-9097 USP14 ubiquitin specific peptidase 14 protein-coding 59 0.007034
-9098 USP6 ubiquitin specific peptidase 6 protein-coding 155 0.01848
-9099 USP2 ubiquitin specific peptidase 2 protein-coding 76 0.009061
-9100 USP10 ubiquitin specific peptidase 10 protein-coding 92 0.01097
-9101 USP8 ubiquitin specific peptidase 8 protein-coding 109 0.01299
-9103 FCGR2C Fc fragment of IgG receptor IIc (gene/pseudogene) protein-coding 3 0.0003577
-9104 RGN regucalcin protein-coding 29 0.003457
-9107 MTMR6 myotubularin related protein 6 protein-coding 83 0.009895
-9108 MTMR7 myotubularin related protein 7 protein-coding 86 0.01025
-9110 MTMR4 myotubularin related protein 4 protein-coding 126 0.01502
-9111 NMI N-myc and STAT interactor protein-coding 34 0.004053
-9112 MTA1 metastasis associated 1 protein-coding 92 0.01097
-9113 LATS1 large tumor suppressor kinase 1 protein-coding 169 0.02015
-9114 ATP6V0D1 ATPase H+ transporting V0 subunit d1 protein-coding 35 0.004173
-9117 SEC22C SEC22 homolog C, vesicle trafficking protein protein-coding 24 0.002861
-9118 INA internexin neuronal intermediate filament protein alpha protein-coding 53 0.006319
-9119 KRT75 keratin 75 protein-coding 90 0.01073
-9120 SLC16A6 solute carrier family 16 member 6 protein-coding 66 0.007868
-9121 SLC16A5 solute carrier family 16 member 5 protein-coding 52 0.006199
-9122 SLC16A4 solute carrier family 16 member 4 protein-coding 53 0.006319
-9123 SLC16A3 solute carrier family 16 member 3 protein-coding 38 0.00453
-9124 PDLIM1 PDZ and LIM domain 1 protein-coding 45 0.005365
-9125 CNOT9 CCR4-NOT transcription complex subunit 9 protein-coding 37 0.004411
-9126 SMC3 structural maintenance of chromosomes 3 protein-coding 134 0.01598
-9127 P2RX6 purinergic receptor P2X 6 protein-coding 44 0.005246
-9128 PRPF4 pre-mRNA processing factor 4 protein-coding 52 0.006199
-9129 PRPF3 pre-mRNA processing factor 3 protein-coding 78 0.009299
-9130 FAM50A family with sequence similarity 50 member A protein-coding 37 0.004411
-9131 AIFM1 apoptosis inducing factor mitochondria associated 1 protein-coding 77 0.00918
-9132 KCNQ4 potassium voltage-gated channel subfamily Q member 4 protein-coding 72 0.008584
-9133 CCNB2 cyclin B2 protein-coding 32 0.003815
-9134 CCNE2 cyclin E2 protein-coding 49 0.005842
-9135 RABEP1 rabaptin, RAB GTPase binding effector protein 1 protein-coding 81 0.009657
-9136 RRP9 ribosomal RNA processing 9, U3 small nucleolar RNA binding protein protein-coding 39 0.004649
-9138 ARHGEF1 Rho guanine nucleotide exchange factor 1 protein-coding 104 0.0124
-9139 CBFA2T2 CBFA2/RUNX1 translocation partner 2 protein-coding 83 0.009895
-9140 ATG12 autophagy related 12 protein-coding 14 0.001669
-9141 PDCD5 programmed cell death 5 protein-coding 17 0.002027
-9143 SYNGR3 synaptogyrin 3 protein-coding 11 0.001311
-9144 SYNGR2 synaptogyrin 2 protein-coding 23 0.002742
-9145 SYNGR1 synaptogyrin 1 protein-coding 20 0.002384
-9146 HGS hepatocyte growth factor-regulated tyrosine kinase substrate protein-coding 87 0.01037
-9147 NEMF nuclear export mediator factor protein-coding 108 0.01288
-9148 NEURL1 neuralized E3 ubiquitin protein ligase 1 protein-coding 48 0.005722
-9149 DYRK1B dual specificity tyrosine phosphorylation regulated kinase 1B protein-coding 82 0.009776
-9150 CTDP1 CTD phosphatase subunit 1 protein-coding 107 0.01276
-9152 SLC6A5 solute carrier family 6 member 5 protein-coding 175 0.02086
-9153 SLC28A2 solute carrier family 28 member 2 protein-coding 72 0.008584
-9154 SLC28A1 solute carrier family 28 member 1 protein-coding 84 0.01001
-9156 EXO1 exonuclease 1 protein-coding 115 0.01371
-9158 FIBP FGF1 intracellular binding protein protein-coding 34 0.004053
-9159 PCSK7 proprotein convertase subtilisin/kexin type 7 protein-coding 88 0.01049
-9162 DGKI diacylglycerol kinase iota protein-coding 184 0.02194
-9166 EBAG9 estrogen receptor binding site associated, antigen, 9 protein-coding 33 0.003934
-9167 COX7A2L cytochrome c oxidase subunit 7A2 like protein-coding 13 0.00155
-9168 TMSB10 thymosin beta 10 protein-coding 2 0.0002384
-9169 SCAF11 SR-related CTD associated factor 11 protein-coding 155 0.01848
-9170 LPAR2 lysophosphatidic acid receptor 2 protein-coding 41 0.004888
-9172 MYOM2 myomesin 2 protein-coding 235 0.02802
-9173 IL1RL1 interleukin 1 receptor like 1 protein-coding 90 0.01073
-9175 MAP3K13 mitogen-activated protein kinase kinase kinase 13 protein-coding 134 0.01598
-9177 HTR3B 5-hydroxytryptamine receptor 3B protein-coding 76 0.009061
-9179 AP4M1 adaptor related protein complex 4 mu 1 subunit protein-coding 64 0.00763
-9180 OSMR oncostatin M receptor protein-coding 116 0.01383
-9181 ARHGEF2 Rho/Rac guanine nucleotide exchange factor 2 protein-coding 119 0.01419
-9182 RASSF9 Ras association domain family member 9 protein-coding 74 0.008822
-9183 ZW10 zw10 kinetochore protein protein-coding 83 0.009895
-9184 BUB3 BUB3, mitotic checkpoint protein protein-coding 40 0.004769
-9185 REPS2 RALBP1 associated Eps domain containing 2 protein-coding 77 0.00918
-9187 SLC24A1 solute carrier family 24 member 1 protein-coding 82 0.009776
-9188 DDX21 DExD-box helicase 21 protein-coding 66 0.007868
-9189 ZBED1 zinc finger BED-type containing 1 protein-coding 108 0.01288
-9191 DEDD death effector domain containing protein-coding 30 0.003577
-9194 SLC16A7 solute carrier family 16 member 7 protein-coding 76 0.009061
-9196 KCNAB3 potassium voltage-gated channel subfamily A regulatory beta subunit 3 protein-coding 43 0.005126
-9197 SLC33A1 solute carrier family 33 member 1 protein-coding 53 0.006319
-9200 HACD1 3-hydroxyacyl-CoA dehydratase 1 protein-coding 39 0.004649
-9201 DCLK1 doublecortin like kinase 1 protein-coding 181 0.02158
-9202 ZMYM4 zinc finger MYM-type containing 4 protein-coding 158 0.01884
-9203 ZMYM3 zinc finger MYM-type containing 3 protein-coding 179 0.02134
-9204 ZMYM6 zinc finger MYM-type containing 6 protein-coding 128 0.01526
-9205 ZMYM5 zinc finger MYM-type containing 5 protein-coding 78 0.009299
-9208 LRRFIP1 LRR binding FLII interacting protein 1 protein-coding 76 0.009061
-9209 LRRFIP2 LRR binding FLII interacting protein 2 protein-coding 76 0.009061
-9210 BMP15 bone morphogenetic protein 15 protein-coding 82 0.009776
-9211 LGI1 leucine rich glioma inactivated 1 protein-coding 66 0.007868
-9212 AURKB aurora kinase B protein-coding 187 0.02229
-9213 XPR1 xenotropic and polytropic retrovirus receptor 1 protein-coding 90 0.01073
-9214 FCMR Fc fragment of IgM receptor protein-coding 43 0.005126
-9215 LARGE1 LARGE xylosyl- and glucuronyltransferase 1 protein-coding 106 0.01264
-9217 VAPB VAMP associated protein B and C protein-coding 30 0.003577
-9218 VAPA VAMP associated protein A protein-coding 37 0.004411
-9219 MTA2 metastasis associated 1 family member 2 protein-coding 76 0.009061
-9220 TIAF1 TGFB1-induced anti-apoptotic factor 1 protein-coding 17 0.002027
-9221 NOLC1 nucleolar and coiled-body phosphoprotein 1 protein-coding 69 0.008226
-9223 MAGI1 membrane associated guanylate kinase, WW and PDZ domain containing 1 protein-coding 177 0.0211
-9227 LRAT lecithin retinol acyltransferase protein-coding 44 0.005246
-9228 DLGAP2 DLG associated protein 2 protein-coding 190 0.02265
-9229 DLGAP1 DLG associated protein 1 protein-coding 141 0.01681
-9230 RAB11B RAB11B, member RAS oncogene family protein-coding 25 0.00298
-9231 DLG5 discs large MAGUK scaffold protein 5 protein-coding 162 0.01931
-9232 PTTG1 pituitary tumor-transforming 1 protein-coding 23 0.002742
-9235 IL32 interleukin 32 protein-coding 29 0.003457
-9236 CCPG1 cell cycle progression 1 protein-coding 92 0.01097
-9238 TBRG4 transforming growth factor beta regulator 4 protein-coding 56 0.006676
-9240 PNMA1 PNMA family member 1 protein-coding 45 0.005365
-9241 NOG noggin protein-coding 19 0.002265
-9242 MSC musculin protein-coding 48 0.005722
-9244 CRLF1 cytokine receptor like factor 1 protein-coding 39 0.004649
-9245 GCNT3 glucosaminyl (N-acetyl) transferase 3, mucin type protein-coding 38 0.00453
-9246 UBE2L6 ubiquitin conjugating enzyme E2 L6 protein-coding 20 0.002384
-9247 GCM2 glial cells missing homolog 2 protein-coding 73 0.008703
-9248 GPR50 G protein-coupled receptor 50 protein-coding 119 0.01419
-9249 DHRS3 dehydrogenase/reductase 3 protein-coding 31 0.003696
-9252 RPS6KA5 ribosomal protein S6 kinase A5 protein-coding 109 0.01299
-9253 NUMBL NUMB like, endocytic adaptor protein protein-coding 39 0.004649
-9254 CACNA2D2 calcium voltage-gated channel auxiliary subunit alpha2delta 2 protein-coding 82 0.009776
-9255 AIMP1 aminoacyl tRNA synthetase complex interacting multifunctional protein 1 protein-coding 38 0.00453
-9256 TSPOAP1 TSPO associated protein 1 protein-coding 175 0.02086
-9258 MFHAS1 malignant fibrous histiocytoma amplified sequence 1 protein-coding 84 0.01001
-9260 PDLIM7 PDZ and LIM domain 7 protein-coding 43 0.005126
-9261 MAPKAPK2 mitogen-activated protein kinase-activated protein kinase 2 protein-coding 39 0.004649
-9262 STK17B serine/threonine kinase 17b protein-coding 58 0.006915
-9263 STK17A serine/threonine kinase 17a protein-coding 41 0.004888
-9265 CYTH3 cytohesin 3 protein-coding 62 0.007392
-9266 CYTH2 cytohesin 2 protein-coding 44 0.005246
-9267 CYTH1 cytohesin 1 protein-coding 46 0.005484
-9270 ITGB1BP1 integrin subunit beta 1 binding protein 1 protein-coding 26 0.0031
-9271 PIWIL1 piwi like RNA-mediated gene silencing 1 protein-coding 169 0.02015
-9274 BCL7C BCL tumor suppressor 7C protein-coding 30 0.003577
-9275 BCL7B BCL tumor suppressor 7B protein-coding 13 0.00155
-9276 COPB2 coatomer protein complex subunit beta 2 protein-coding 93 0.01109
-9277 WDR46 WD repeat domain 46 protein-coding 56 0.006676
-9278 ZBTB22 zinc finger and BTB domain containing 22 protein-coding 85 0.01013
-9282 MED14 mediator complex subunit 14 protein-coding 141 0.01681
-9283 GPR37L1 G protein-coupled receptor 37 like 1 protein-coding 53 0.006319
-9284 NPIPA1 nuclear pore complex interacting protein family member A1 protein-coding 11 0.001311
-9287 TAAR2 trace amine associated receptor 2 (gene/pseudogene) protein-coding 56 0.006676
-9289 ADGRG1 adhesion G protein-coupled receptor G1 protein-coding 59 0.007034
-9290 GPR55 G protein-coupled receptor 55 protein-coding 44 0.005246
-9293 GPR52 G protein-coupled receptor 52 protein-coding 44 0.005246
-9294 S1PR2 sphingosine-1-phosphate receptor 2 protein-coding 30 0.003577
-9295 SRSF11 serine and arginine rich splicing factor 11 protein-coding 57 0.006795
-9296 ATP6V1F ATPase H+ transporting V1 subunit F protein-coding 12 0.001431
-9306 SOCS6 suppressor of cytokine signaling 6 protein-coding 114 0.01359
-9308 CD83 CD83 molecule protein-coding 25 0.00298
-9310 ZNF235 zinc finger protein 235 protein-coding 86 0.01025
-9311 ASIC3 acid sensing ion channel subunit 3 protein-coding 76 0.009061
-9312 KCNB2 potassium voltage-gated channel subfamily B member 2 protein-coding 265 0.03159
-9313 MMP20 matrix metallopeptidase 20 protein-coding 67 0.007988
-9314 KLF4 Kruppel like factor 4 protein-coding 55 0.006557
-9315 NREP neuronal regeneration related protein protein-coding 22 0.002623
-9317 PTER phosphotriesterase related protein-coding 57 0.006795
-9318 COPS2 COP9 signalosome subunit 2 protein-coding 103 0.01228
-9319 TRIP13 thyroid hormone receptor interactor 13 protein-coding 53 0.006319
-9320 TRIP12 thyroid hormone receptor interactor 12 protein-coding 226 0.02694
-9321 TRIP11 thyroid hormone receptor interactor 11 protein-coding 174 0.02074
-9322 TRIP10 thyroid hormone receptor interactor 10 protein-coding 72 0.008584
-9324 HMGN3 high mobility group nucleosomal binding domain 3 protein-coding 15 0.001788
-9325 TRIP4 thyroid hormone receptor interactor 4 protein-coding 70 0.008345
-9326 ZNHIT3 zinc finger HIT-type containing 3 protein-coding 18 0.002146
-9328 GTF3C5 general transcription factor IIIC subunit 5 protein-coding 67 0.007988
-9329 GTF3C4 general transcription factor IIIC subunit 4 protein-coding 64 0.00763
-9330 GTF3C3 general transcription factor IIIC subunit 3 protein-coding 98 0.01168
-9331 B4GALT6 beta-1,4-galactosyltransferase 6 protein-coding 56 0.006676
-9332 CD163 CD163 molecule protein-coding 218 0.02599
-9333 TGM5 transglutaminase 5 protein-coding 224 0.0267
-9334 B4GALT5 beta-1,4-galactosyltransferase 5 protein-coding 50 0.005961
-9337 CNOT8 CCR4-NOT transcription complex subunit 8 protein-coding 31 0.003696
-9338 TCEAL1 transcription elongation factor A like 1 protein-coding 21 0.002504
-9340 GLP2R glucagon like peptide 2 receptor protein-coding 100 0.01192
-9341 VAMP3 vesicle associated membrane protein 3 protein-coding 12 0.001431
-9342 SNAP29 synaptosome associated protein 29 protein-coding 30 0.003577
-9343 EFTUD2 elongation factor Tu GTP binding domain containing 2 protein-coding 102 0.01216
-9344 TAOK2 TAO kinase 2 protein-coding 143 0.01705
-9348 NDST3 N-deacetylase and N-sulfotransferase 3 protein-coding 139 0.01657
-9349 RPL23 ribosomal protein L23 protein-coding 16 0.001907
-9350 CER1 cerberus 1, DAN family BMP antagonist protein-coding 40 0.004769
-9351 SLC9A3R2 SLC9A3 regulator 2 protein-coding 27 0.003219
-9352 TXNL1 thioredoxin like 1 protein-coding 40 0.004769
-9353 SLIT2 slit guidance ligand 2 protein-coding 292 0.03481
-9354 UBE4A ubiquitination factor E4A protein-coding 95 0.01133
-9355 LHX2 LIM homeobox 2 protein-coding 48 0.005722
-9356 SLC22A6 solute carrier family 22 member 6 protein-coding 74 0.008822
-9358 ITGBL1 integrin subunit beta like 1 protein-coding 85 0.01013
-9360 PPIG peptidylprolyl isomerase G protein-coding 110 0.01311
-9361 LONP1 lon peptidase 1, mitochondrial protein-coding 126 0.01502
-9362 CPNE6 copine 6 protein-coding 80 0.009537
-9363 RAB33A RAB33A, member RAS oncogene family protein-coding 32 0.003815
-9364 RAB28 RAB28, member RAS oncogene family protein-coding 31 0.003696
-9365 KL klotho protein-coding 125 0.0149
-9367 RAB9A RAB9A, member RAS oncogene family protein-coding 21 0.002504
-9368 SLC9A3R1 SLC9A3 regulator 1 protein-coding 15 0.001788
-9369 NRXN3 neurexin 3 protein-coding 234 0.0279
-9370 ADIPOQ adiponectin, C1Q and collagen domain containing protein-coding 39 0.004649
-9371 KIF3B kinesin family member 3B protein-coding 92 0.01097
-9372 ZFYVE9 zinc finger FYVE-type containing 9 protein-coding 141 0.01681
-9373 PLAA phospholipase A2 activating protein protein-coding 68 0.008107
-9374 PPT2 palmitoyl-protein thioesterase 2 protein-coding 40 0.004769
-9375 TM9SF2 transmembrane 9 superfamily member 2 protein-coding 86 0.01025
-9376 SLC22A8 solute carrier family 22 member 8 protein-coding 82 0.009776
-9377 COX5A cytochrome c oxidase subunit 5A protein-coding 19 0.002265
-9378 NRXN1 neurexin 1 protein-coding 387 0.04614
-9379 NRXN2 neurexin 2 protein-coding 210 0.02504
-9380 GRHPR glyoxylate and hydroxypyruvate reductase protein-coding 29 0.003457
-9381 OTOF otoferlin protein-coding 270 0.03219
-9382 COG1 component of oligomeric golgi complex 1 protein-coding 87 0.01037
-9383 TSIX TSIX transcript, XIST antisense RNA ncRNA 8 0.0009537
-9388 LIPG lipase G, endothelial type protein-coding 66 0.007868
-9389 SLC22A14 solute carrier family 22 member 14 protein-coding 61 0.007272
-9390 SLC22A13 solute carrier family 22 member 13 protein-coding 51 0.00608
-9391 CIAO1 cytosolic iron-sulfur assembly component 1 protein-coding 32 0.003815
-9392 TGFBRAP1 transforming growth factor beta receptor associated protein 1 protein-coding 175 0.02086
-9394 HS6ST1 heparan sulfate 6-O-sulfotransferase 1 protein-coding 46 0.005484
-9397 NMT2 N-myristoyltransferase 2 protein-coding 66 0.007868
-9398 CD101 CD101 molecule protein-coding 104 0.0124
-9399 STOML1 stomatin like 1 protein-coding 42 0.005007
-9400 RECQL5 RecQ like helicase 5 protein-coding 104 0.0124
-9401 RECQL4 RecQ like helicase 4 protein-coding 123 0.01466
-9402 GRAP2 GRB2 related adaptor protein 2 protein-coding 62 0.007392
-9403 SELENOF selenoprotein F protein-coding 11 0.001311
-9404 LPXN leupaxin protein-coding 34 0.004053
-9406 ZRANB2 zinc finger RANBP2-type containing 2 protein-coding 62 0.007392
-9407 TMPRSS11D transmembrane serine protease 11D protein-coding 77 0.00918
-9409 PEX16 peroxisomal biogenesis factor 16 protein-coding 38 0.00453
-9410 SNRNP40 small nuclear ribonucleoprotein U5 subunit 40 protein-coding 34 0.004053
-9411 ARHGAP29 Rho GTPase activating protein 29 protein-coding 135 0.01609
-9412 MED21 mediator complex subunit 21 protein-coding 15 0.001788
-9413 FAM189A2 family with sequence similarity 189 member A2 protein-coding 55 0.006557
-9414 TJP2 tight junction protein 2 protein-coding 129 0.01538
-9415 FADS2 fatty acid desaturase 2 protein-coding 43 0.005126
-9416 DDX23 DEAD-box helicase 23 protein-coding 105 0.01252
-9419 CRIPT CXXC repeat containing interactor of PDZ3 domain protein-coding 15 0.001788
-9420 CYP7B1 cytochrome P450 family 7 subfamily B member 1 protein-coding 112 0.01335
-9421 HAND1 heart and neural crest derivatives expressed 1 protein-coding 27 0.003219
-9422 ZNF264 zinc finger protein 264 protein-coding 78 0.009299
-9423 NTN1 netrin 1 protein-coding 55 0.006557
-9424 KCNK6 potassium two pore domain channel subfamily K member 6 protein-coding 34 0.004053
-9425 CDYL chromodomain Y like protein-coding 94 0.01121
-9427 ECEL1 endothelin converting enzyme like 1 protein-coding 94 0.01121
-9429 ABCG2 ATP binding cassette subfamily G member 2 (Junior blood group) protein-coding 107 0.01276
-9435 CHST2 carbohydrate sulfotransferase 2 protein-coding 102 0.01216
-9436 NCR2 natural cytotoxicity triggering receptor 2 protein-coding 38 0.00453
-9437 NCR1 natural cytotoxicity triggering receptor 1 protein-coding 63 0.007511
-9439 MED23 mediator complex subunit 23 protein-coding 160 0.01907
-9440 MED17 mediator complex subunit 17 protein-coding 67 0.007988
-9441 MED26 mediator complex subunit 26 protein-coding 56 0.006676
-9442 MED27 mediator complex subunit 27 protein-coding 33 0.003934
-9443 MED7 mediator complex subunit 7 protein-coding 33 0.003934
-9444 QKI QKI, KH domain containing RNA binding protein-coding 64 0.00763
-9445 ITM2B integral membrane protein 2B protein-coding 30 0.003577
-9446 GSTO1 glutathione S-transferase omega 1 protein-coding 22 0.002623
-9447 AIM2 absent in melanoma 2 protein-coding 61 0.007272
-9448 MAP4K4 mitogen-activated protein kinase kinase kinase kinase 4 protein-coding 118 0.01407
-9450 LY86 lymphocyte antigen 86 protein-coding 28 0.003338
-9451 EIF2AK3 eukaryotic translation initiation factor 2 alpha kinase 3 protein-coding 135 0.01609
-9452 ITM2A integral membrane protein 2A protein-coding 74 0.008822
-9453 GGPS1 geranylgeranyl diphosphate synthase 1 protein-coding 37 0.004411
-9454 HOMER3 homer scaffold protein 3 protein-coding 26 0.0031
-9455 HOMER2 homer scaffold protein 2 protein-coding 138 0.01645
-9456 HOMER1 homer scaffold protein 1 protein-coding 41 0.004888
-9457 FHL5 four and a half LIM domains 5 protein-coding 88 0.01049
-9459 ARHGEF6 Rac/Cdc42 guanine nucleotide exchange factor 6 protein-coding 133 0.01586
-9462 RASAL2 RAS protein activator like 2 protein-coding 183 0.02182
-9463 PICK1 protein interacting with PRKCA 1 protein-coding 44 0.005246
-9464 HAND2 heart and neural crest derivatives expressed 2 protein-coding 46 0.005484
-9465 AKAP7 A-kinase anchoring protein 7 protein-coding 62 0.007392
-9466 IL27RA interleukin 27 receptor subunit alpha protein-coding 64 0.00763
-9467 SH3BP5 SH3 domain binding protein 5 protein-coding 40 0.004769
-9468 PCYT1B phosphate cytidylyltransferase 1, choline, beta protein-coding 54 0.006438
-9469 CHST3 carbohydrate sulfotransferase 3 protein-coding 55 0.006557
-9470 EIF4E2 eukaryotic translation initiation factor 4E family member 2 protein-coding 34 0.004053
-9472 AKAP6 A-kinase anchoring protein 6 protein-coding 300 0.03577
-9473 THEMIS2 thymocyte selection associated family member 2 protein-coding 53 0.006319
-9474 ATG5 autophagy related 5 protein-coding 40 0.004769
-9475 ROCK2 Rho associated coiled-coil containing protein kinase 2 protein-coding 164 0.01955
-9476 NAPSA napsin A aspartic peptidase protein-coding 56 0.006676
-9477 MED20 mediator complex subunit 20 protein-coding 18 0.002146
-9478 CABP1 calcium binding protein 1 protein-coding 28 0.003338
-9479 MAPK8IP1 mitogen-activated protein kinase 8 interacting protein 1 protein-coding 66 0.007868
-9480 ONECUT2 one cut homeobox 2 protein-coding 56 0.006676
-9481 SLC25A27 solute carrier family 25 member 27 protein-coding 33 0.003934
-9482 STX8 syntaxin 8 protein-coding 38 0.00453
-9486 CHST10 carbohydrate sulfotransferase 10 protein-coding 59 0.007034
-9487 PIGL phosphatidylinositol glycan anchor biosynthesis class L protein-coding 22 0.002623
-9488 PIGB phosphatidylinositol glycan anchor biosynthesis class B protein-coding 70 0.008345
-9489 PGS1 phosphatidylglycerophosphate synthase 1 protein-coding 66 0.007868
-9491 PSMF1 proteasome inhibitor subunit 1 protein-coding 39 0.004649
-9493 KIF23 kinesin family member 23 protein-coding 87 0.01037
-9495 AKAP5 A-kinase anchoring protein 5 protein-coding 44 0.005246
-9496 TBX4 T-box 4 protein-coding 100 0.01192
-9497 SLC4A7 solute carrier family 4 member 7 protein-coding 120 0.01431
-9498 SLC4A8 solute carrier family 4 member 8 protein-coding 127 0.01514
-9499 MYOT myotilin protein-coding 73 0.008703
-9500 MAGED1 MAGE family member D1 protein-coding 114 0.01359
-9501 RPH3AL rabphilin 3A like (without C2 domains) protein-coding 40 0.004769
-9506 PAGE4 PAGE family member 4 protein-coding 16 0.001907
-9507 ADAMTS4 ADAM metallopeptidase with thrombospondin type 1 motif 4 protein-coding 106 0.01264
-9508 ADAMTS3 ADAM metallopeptidase with thrombospondin type 1 motif 3 protein-coding 199 0.02372
-9509 ADAMTS2 ADAM metallopeptidase with thrombospondin type 1 motif 2 protein-coding 216 0.02575
-9510 ADAMTS1 ADAM metallopeptidase with thrombospondin type 1 motif 1 protein-coding 123 0.01466
-9512 PMPCB peptidase, mitochondrial processing beta subunit protein-coding 49 0.005842
-9513 FXR2 FMR1 autosomal homolog 2 protein-coding 64 0.00763
-9514 GAL3ST1 galactose-3-O-sulfotransferase 1 protein-coding 71 0.008464
-9515 STXBP5L syntaxin binding protein 5 like protein-coding 199 0.02372
-9516 LITAF lipopolysaccharide induced TNF factor protein-coding 18 0.002146
-9517 SPTLC2 serine palmitoyltransferase long chain base subunit 2 protein-coding 63 0.007511
-9518 GDF15 growth differentiation factor 15 protein-coding 26 0.0031
-9519 TBPL1 TATA-box binding protein like 1 protein-coding 24 0.002861
-9520 NPEPPS aminopeptidase puromycin sensitive protein-coding 92 0.01097
-9521 EEF1E1 eukaryotic translation elongation factor 1 epsilon 1 protein-coding 27 0.003219
-9522 SCAMP1 secretory carrier membrane protein 1 protein-coding 26 0.0031
-9524 TECR trans-2,3-enoyl-CoA reductase protein-coding 42 0.005007
-9525 VPS4B vacuolar protein sorting 4 homolog B protein-coding 56 0.006676
-9526 MPDU1 mannose-P-dolichol utilization defect 1 protein-coding 13 0.00155
-9527 GOSR1 golgi SNAP receptor complex member 1 protein-coding 24 0.002861
-9528 TMEM59 transmembrane protein 59 protein-coding 31 0.003696
-9529 BAG5 BCL2 associated athanogene 5 protein-coding 45 0.005365
-9530 BAG4 BCL2 associated athanogene 4 protein-coding 55 0.006557
-9531 BAG3 BCL2 associated athanogene 3 protein-coding 54 0.006438
-9532 BAG2 BCL2 associated athanogene 2 protein-coding 17 0.002027
-9533 POLR1C RNA polymerase I and III subunit C protein-coding 39 0.004649
-9534 ZNF254 zinc finger protein 254 protein-coding 112 0.01335
-9535 GMFG glia maturation factor gamma protein-coding 25 0.00298
-9536 PTGES prostaglandin E synthase protein-coding 14 0.001669
-9537 TP53I11 tumor protein p53 inducible protein 11 protein-coding 33 0.003934
-9538 EI24 EI24, autophagy associated transmembrane protein protein-coding 26 0.0031
-9540 TP53I3 tumor protein p53 inducible protein 3 protein-coding 24 0.002861
-9541 CIR1 corepressor interacting with RBPJ, 1 protein-coding 58 0.006915
-9542 NRG2 neuregulin 2 protein-coding 57 0.006795
-9543 IGDCC3 immunoglobulin superfamily DCC subclass member 3 protein-coding 96 0.01144
-9545 RAB3D RAB3D, member RAS oncogene family protein-coding 30 0.003577
-9546 APBA3 amyloid beta precursor protein binding family A member 3 protein-coding 47 0.005603
-9547 CXCL14 C-X-C motif chemokine ligand 14 protein-coding 17 0.002027
-9550 ATP6V1G1 ATPase H+ transporting V1 subunit G1 protein-coding 15 0.001788
-9551 ATP5MF ATP synthase membrane subunit f protein-coding 10 0.001192
-9552 SPAG7 sperm associated antigen 7 protein-coding 25 0.00298
-9553 MRPL33 mitochondrial ribosomal protein L33 protein-coding 8 0.0009537
-9554 SEC22B SEC22 homolog B, vesicle trafficking protein (gene/pseudogene) protein-coding 105 0.01252
-9555 H2AFY H2A histone family member Y protein-coding 44 0.005246
-9556 ATP5MPL ATP synthase membrane subunit 6.8PL protein-coding 8 0.0009537
-9557 CHD1L chromodomain helicase DNA binding protein 1 like protein-coding 84 0.01001
-9559 VPS26A VPS26, retromer complex component A protein-coding 33 0.003934
-9560 CCL4L2 C-C motif chemokine ligand 4 like 2 protein-coding 1 0.0001192
-9562 MINPP1 multiple inositol-polyphosphate phosphatase 1 protein-coding 50 0.005961
-9563 H6PD hexose-6-phosphate dehydrogenase/glucose 1-dehydrogenase protein-coding 84 0.01001
-9564 BCAR1 BCAR1, Cas family scaffold protein protein-coding 100 0.01192
-9567 GTPBP1 GTP binding protein 1 protein-coding 60 0.007153
-9568 GABBR2 gamma-aminobutyric acid type B receptor subunit 2 protein-coding 120 0.01431
-9569 GTF2IRD1 GTF2I repeat domain containing 1 protein-coding 101 0.01204
-9570 GOSR2 golgi SNAP receptor complex member 2 protein-coding 22 0.002623
-9572 NR1D1 nuclear receptor subfamily 1 group D member 1 protein-coding 54 0.006438
-9573 GDF3 growth differentiation factor 3 protein-coding 62 0.007392
-9575 CLOCK clock circadian regulator protein-coding 80 0.009537
-9576 SPAG6 sperm associated antigen 6 protein-coding 85 0.01013
-9577 BABAM2 BRISC and BRCA1 A complex member 2 protein-coding 62 0.007392
-9578 CDC42BPB CDC42 binding protein kinase beta protein-coding 162 0.01931
-9580 SOX13 SRY-box 13 protein-coding 65 0.007749
-9581 PREPL prolyl endopeptidase like protein-coding 87 0.01037
-9582 APOBEC3B apolipoprotein B mRNA editing enzyme catalytic subunit 3B protein-coding 52 0.006199
-9583 ENTPD4 ectonucleoside triphosphate diphosphohydrolase 4 protein-coding 66 0.007868
-9584 RBM39 RNA binding motif protein 39 protein-coding 75 0.008941
-9585 KIF20B kinesin family member 20B protein-coding 223 0.02659
-9586 CREB5 cAMP responsive element binding protein 5 protein-coding 91 0.01085
-9587 MAD2L1BP MAD2L1 binding protein protein-coding 24 0.002861
-9588 PRDX6 peroxiredoxin 6 protein-coding 188 0.02241
-9589 WTAP WT1 associated protein protein-coding 69 0.008226
-9590 AKAP12 A-kinase anchoring protein 12 protein-coding 187 0.02229
-9592 IER2 immediate early response 2 protein-coding 20 0.002384
-9595 CYTIP cytohesin 1 interacting protein protein-coding 75 0.008941
-9600 PITPNM1 phosphatidylinositol transfer protein membrane associated 1 protein-coding 121 0.01443
-9601 PDIA4 protein disulfide isomerase family A member 4 protein-coding 68 0.008107
-9603 NFE2L3 nuclear factor, erythroid 2 like 3 protein-coding 99 0.0118
-9604 RNF14 ring finger protein 14 protein-coding 48 0.005722
-9605 VPS9D1 VPS9 domain containing 1 protein-coding 65 0.007749
-9607 CARTPT CART prepropeptide protein-coding 20 0.002384
-9609 RAB36 RAB36, member RAS oncogene family protein-coding 41 0.004888
-9610 RIN1 Ras and Rab interactor 1 protein-coding 57 0.006795
-9611 NCOR1 nuclear receptor corepressor 1 protein-coding 305 0.03636
-9612 NCOR2 nuclear receptor corepressor 2 protein-coding 288 0.03433
-9615 GDA guanine deaminase protein-coding 80 0.009537
-9616 RNF7 ring finger protein 7 protein-coding 65 0.007749
-9617 MTRF1 mitochondrial translation release factor 1 protein-coding 47 0.005603
-9618 TRAF4 TNF receptor associated factor 4 protein-coding 39 0.004649
-9619 ABCG1 ATP binding cassette subfamily G member 1 protein-coding 86 0.01025
-9620 CELSR1 cadherin EGF LAG seven-pass G-type receptor 1 protein-coding 345 0.04113
-9622 KLK4 kallikrein related peptidase 4 protein-coding 40 0.004769
-9623 TCL1B T cell leukemia/lymphoma 1B protein-coding 30 0.003577
-9625 AATK apoptosis associated tyrosine kinase protein-coding 81 0.009657
-9626 GUCA1C guanylate cyclase activator 1C protein-coding 45 0.005365
-9627 SNCAIP synuclein alpha interacting protein protein-coding 128 0.01526
-9628 RGS6 regulator of G protein signaling 6 protein-coding 103 0.01228
-9630 GNA14 G protein subunit alpha 14 protein-coding 52 0.006199
-9631 NUP155 nucleoporin 155 protein-coding 149 0.01776
-9632 SEC24C SEC24 homolog C, COPII coat complex component protein-coding 106 0.01264
-9633 TESMIN testis expressed metallothionein like protein protein-coding 65 0.007749
-9635 CLCA2 chloride channel accessory 2 protein-coding 113 0.01347
-9636 ISG15 ISG15 ubiquitin-like modifier protein-coding 11 0.001311
-9637 FEZ2 fasciculation and elongation protein zeta 2 protein-coding 30 0.003577
-9638 FEZ1 fasciculation and elongation protein zeta 1 protein-coding 64 0.00763
-9639 ARHGEF10 Rho guanine nucleotide exchange factor 10 protein-coding 127 0.01514
-9640 ZNF592 zinc finger protein 592 protein-coding 119 0.01419
-9641 IKBKE inhibitor of nuclear factor kappa B kinase subunit epsilon protein-coding 101 0.01204
-9643 MORF4L2 mortality factor 4 like 2 protein-coding 43 0.005126
-9644 SH3PXD2A SH3 and PX domains 2A protein-coding 113 0.01347
-9645 MICAL2 microtubule associated monooxygenase, calponin and LIM domain containing 2 protein-coding 139 0.01657
-9646 CTR9 CTR9 homolog, Paf1/RNA polymerase II complex component protein-coding 136 0.01621
-9647 PPM1F protein phosphatase, Mg2+/Mn2+ dependent 1F protein-coding 52 0.006199
-9648 GCC2 GRIP and coiled-coil domain containing 2 protein-coding 180 0.02146
-9649 RALGPS1 Ral GEF with PH domain and SH3 binding motif 1 protein-coding 52 0.006199
-9650 MTFR1 mitochondrial fission regulator 1 protein-coding 46 0.005484
-9651 PLCH2 phospholipase C eta 2 protein-coding 100 0.01192
-9652 TTC37 tetratricopeptide repeat domain 37 protein-coding 147 0.01753
-9653 HS2ST1 heparan sulfate 2-O-sulfotransferase 1 protein-coding 47 0.005603
-9654 TTLL4 tubulin tyrosine ligase like 4 protein-coding 114 0.01359
-9655 SOCS5 suppressor of cytokine signaling 5 protein-coding 68 0.008107
-9656 MDC1 mediator of DNA damage checkpoint 1 protein-coding 189 0.02253
-9657 IQCB1 IQ motif containing B1 protein-coding 58 0.006915
-9658 ZNF516 zinc finger protein 516 protein-coding 135 0.01609
-9659 PDE4DIP phosphodiesterase 4D interacting protein protein-coding 381 0.04542
-9662 CEP135 centrosomal protein 135 protein-coding 132 0.01574
-9663 LPIN2 lipin 2 protein-coding 101 0.01204
-9665 MARF1 meiosis regulator and mRNA stability factor 1 protein-coding 161 0.01919
-9666 DZIP3 DAZ interacting zinc finger protein 3 protein-coding 169 0.02015
-9667 SAFB2 scaffold attachment factor B2 protein-coding 90 0.01073
-9668 ZNF432 zinc finger protein 432 protein-coding 79 0.009418
-9669 EIF5B eukaryotic translation initiation factor 5B protein-coding 120 0.01431
-9670 IPO13 importin 13 protein-coding 92 0.01097
-9671 WSCD2 WSC domain containing 2 protein-coding 126 0.01502
-9672 SDC3 syndecan 3 protein-coding 32 0.003815
-9673 SLC25A44 solute carrier family 25 member 44 protein-coding 30 0.003577
-9674 KIAA0040 KIAA0040 protein-coding 6 0.0007153
-9675 TTI1 TELO2 interacting protein 1 protein-coding 144 0.01717
-9677 PPIP5K1 diphosphoinositol pentakisphosphate kinase 1 protein-coding 51 0.00608
-9678 PHF14 PHD finger protein 14 protein-coding 116 0.01383
-9679 FAM53B family with sequence similarity 53 member B protein-coding 42 0.005007
-9681 DEPDC5 DEP domain containing 5 protein-coding 183 0.02182
-9682 KDM4A lysine demethylase 4A protein-coding 106 0.01264
-9683 N4BP1 NEDD4 binding protein 1 protein-coding 98 0.01168
-9684 LRRC14 leucine rich repeat containing 14 protein-coding 63 0.007511
-9685 CLINT1 clathrin interactor 1 protein-coding 70 0.008345
-9686 VGLL4 vestigial like family member 4 protein-coding 45 0.005365
-9687 GREB1 growth regulating estrogen receptor binding 1 protein-coding 238 0.02837
-9688 NUP93 nucleoporin 93 protein-coding 91 0.01085
-9689 BZW1 basic leucine zipper and W2 domains 1 protein-coding 57 0.006795
-9690 UBE3C ubiquitin protein ligase E3C protein-coding 134 0.01598
-9692 KIAA0391 KIAA0391 protein-coding 56 0.006676
-9693 RAPGEF2 Rap guanine nucleotide exchange factor 2 protein-coding 169 0.02015
-9694 EMC2 ER membrane protein complex subunit 2 protein-coding 55 0.006557
-9695 EDEM1 ER degradation enhancing alpha-mannosidase like protein 1 protein-coding 52 0.006199
-9696 CROCC ciliary rootlet coiled-coil, rootletin protein-coding 182 0.0217
-9697 TRAM2 translocation associated membrane protein 2 protein-coding 38 0.00453
-9698 PUM1 pumilio RNA binding family member 1 protein-coding 129 0.01538
-9699 RIMS2 regulating synaptic membrane exocytosis 2 protein-coding 357 0.04256
-9700 ESPL1 extra spindle pole bodies like 1, separase protein-coding 180 0.02146
-9701 PPP6R2 protein phosphatase 6 regulatory subunit 2 protein-coding 92 0.01097
-9702 CEP57 centrosomal protein 57 protein-coding 60 0.007153
-9703 KIAA0100 KIAA0100 protein-coding 203 0.0242
-9704 DHX34 DExH-box helicase 34 protein-coding 185 0.02206
-9705 ST18 ST18, C2H2C-type zinc finger protein-coding 210 0.02504
-9706 ULK2 unc-51 like autophagy activating kinase 2 protein-coding 107 0.01276
-9708 PCDHGA8 protocadherin gamma subfamily A, 8 protein-coding 171 0.02039
-9709 HERPUD1 homocysteine inducible ER protein with ubiquitin like domain 1 protein-coding 34 0.004053
-9710 KIAA0355 KIAA0355 protein-coding 96 0.01144
-9711 RUBCN RUN and cysteine rich domain containing beclin 1 interacting protein protein-coding 118 0.01407
-9712 USP6NL USP6 N-terminal like protein-coding 88 0.01049
-9715 FAM131B family with sequence similarity 131 member B protein-coding 59 0.007034
-9716 AQR aquarius intron-binding spliceosomal factor protein-coding 153 0.01824
-9717 SEC14L5 SEC14 like lipid binding 5 protein-coding 100 0.01192
-9718 ECE2 endothelin converting enzyme 2 protein-coding 139 0.01657
-9719 ADAMTSL2 ADAMTS like 2 protein-coding 46 0.005484
-9720 CCDC144A coiled-coil domain containing 144A protein-coding 139 0.01657
-9721 GPRIN2 G protein regulated inducer of neurite outgrowth 2 protein-coding 73 0.008703
-9722 NOS1AP nitric oxide synthase 1 adaptor protein protein-coding 58 0.006915
-9723 SEMA3E semaphorin 3E protein-coding 167 0.01991
-9724 UTP14C UTP14C, small subunit processome component protein-coding 77 0.00918
-9725 TMEM63A transmembrane protein 63A protein-coding 70 0.008345
-9726 ZNF646 zinc finger protein 646 protein-coding 178 0.02122
-9727 RAB11FIP3 RAB11 family interacting protein 3 protein-coding 39 0.004649
-9728 SECISBP2L SECIS binding protein 2 like protein-coding 119 0.01419
-9729 KIAA0408 KIAA0408 protein-coding 94 0.01121
-9730 DCAF1 DDB1 and CUL4 associated factor 1 protein-coding 93 0.01109
-9731 CEP104 centrosomal protein 104 protein-coding 104 0.0124
-9732 DOCK4 dedicator of cytokinesis 4 protein-coding 255 0.0304
-9733 SART3 squamous cell carcinoma antigen recognized by T cells 3 protein-coding 97 0.01156
-9734 HDAC9 histone deacetylase 9 protein-coding 276 0.0329
-9735 KNTC1 kinetochore associated 1 protein-coding 202 0.02408
-9736 USP34 ubiquitin specific peptidase 34 protein-coding 340 0.04053
-9737 GPRASP1 G protein-coupled receptor associated sorting protein 1 protein-coding 185 0.02206
-9738 CCP110 centriolar coiled-coil protein 110 protein-coding 91 0.01085
-9739 SETD1A SET domain containing 1A protein-coding 145 0.01729
-9741 LAPTM4A lysosomal protein transmembrane 4 alpha protein-coding 20 0.002384
-9742 IFT140 intraflagellar transport 140 protein-coding 144 0.01717
-9743 ARHGAP32 Rho GTPase activating protein 32 protein-coding 207 0.02468
-9744 ACAP1 ArfGAP with coiled-coil, ankyrin repeat and PH domains 1 protein-coding 85 0.01013
-9745 ZNF536 zinc finger protein 536 protein-coding 432 0.0515
-9746 CLSTN3 calsyntenin 3 protein-coding 116 0.01383
-9747 TCAF1 TRPM8 channel associated factor 1 protein-coding 39 0.004649
-9748 SLK STE20 like kinase protein-coding 121 0.01443
-9749 PHACTR2 phosphatase and actin regulator 2 protein-coding 83 0.009895
-9750 RIPOR2 RHO family interacting cell polarization regulator 2 protein-coding 118 0.01407
-9751 SNPH syntaphilin protein-coding 67 0.007988
-9752 PCDHA9 protocadherin alpha 9 protein-coding 199 0.02372
-9753 ZSCAN12 zinc finger and SCAN domain containing 12 protein-coding 53 0.006319
-9754 STARD8 StAR related lipid transfer domain containing 8 protein-coding 131 0.01562
-9755 TBKBP1 TBK1 binding protein 1 protein-coding 46 0.005484
-9757 KMT2B lysine methyltransferase 2B protein-coding 346 0.04125
-9758 FRMPD4 FERM and PDZ domain containing 4 protein-coding 193 0.02301
-9759 HDAC4 histone deacetylase 4 protein-coding 159 0.01896
-9760 TOX thymocyte selection associated high mobility group box protein-coding 97 0.01156
-9761 MLEC malectin protein-coding 43 0.005126
-9762 LZTS3 leucine zipper tumor suppressor family member 3 protein-coding 67 0.007988
-9764 KIAA0513 KIAA0513 protein-coding 45 0.005365
-9765 ZFYVE16 zinc finger FYVE-type containing 16 protein-coding 143 0.01705
-9766 SUSD6 sushi domain containing 6 protein-coding 26 0.0031
-9767 JADE3 jade family PHD finger 3 protein-coding 79 0.009418
-9768 PCLAF PCNA clamp associated factor protein-coding 18 0.002146
-9770 RASSF2 Ras association domain family member 2 protein-coding 77 0.00918
-9771 RAPGEF5 Rap guanine nucleotide exchange factor 5 protein-coding 78 0.009299
-9772 TMEM94 transmembrane protein 94 protein-coding 149 0.01776
-9774 BCLAF1 BCL2 associated transcription factor 1 protein-coding 270 0.03219
-9775 EIF4A3 eukaryotic translation initiation factor 4A3 protein-coding 45 0.005365
-9776 ATG13 autophagy related 13 protein-coding 54 0.006438
-9777 TM9SF4 transmembrane 9 superfamily member 4 protein-coding 62 0.007392
-9778 KIAA0232 KIAA0232 protein-coding 128 0.01526
-9779 TBC1D5 TBC1 domain family member 5 protein-coding 86 0.01025
-9780 PIEZO1 piezo type mechanosensitive ion channel component 1 protein-coding 107 0.01276
-9781 RNF144A ring finger protein 144A protein-coding 64 0.00763
-9782 MATR3 matrin 3 protein-coding 89 0.01061
-9783 RIMS3 regulating synaptic membrane exocytosis 3 protein-coding 43 0.005126
-9784 SNX17 sorting nexin 17 protein-coding 53 0.006319
-9785 DHX38 DEAH-box helicase 38 protein-coding 120 0.01431
-9786 KIAA0586 KIAA0586 protein-coding 146 0.01741
-9787 DLGAP5 DLG associated protein 5 protein-coding 82 0.009776
-9788 MTSS1 MTSS1, I-BAR domain containing protein-coding 101 0.01204
-9789 SPCS2 signal peptidase complex subunit 2 protein-coding 18 0.002146
-9790 BMS1 BMS1, ribosome biogenesis factor protein-coding 144 0.01717
-9791 PTDSS1 phosphatidylserine synthase 1 protein-coding 80 0.009537
-9792 SERTAD2 SERTA domain containing 2 protein-coding 41 0.004888
-9793 CKAP5 cytoskeleton associated protein 5 protein-coding 169 0.02015
-9794 MAML1 mastermind like transcriptional coactivator 1 protein-coding 82 0.009776
-9796 PHYHIP phytanoyl-CoA 2-hydroxylase interacting protein protein-coding 36 0.004292
-9797 TATDN2 TatD DNase domain containing 2 protein-coding 66 0.007868
-9798 IST1 IST1, ESCRT-III associated factor protein-coding 28 0.003338
-9801 MRPL19 mitochondrial ribosomal protein L19 protein-coding 60 0.007153
-9802 DAZAP2 DAZ associated protein 2 protein-coding 23 0.002742
-9804 TOMM20 translocase of outer mitochondrial membrane 20 protein-coding 8 0.0009537
-9805 SCRN1 secernin 1 protein-coding 54 0.006438
-9806 SPOCK2 SPARC (osteonectin), cwcv and kazal like domains proteoglycan 2 protein-coding 45 0.005365
-9807 IP6K1 inositol hexakisphosphate kinase 1 protein-coding 44 0.005246
-9808 KIAA0087 KIAA0087 lncRNA ncRNA 7 0.0008345
-9810 RNF40 ring finger protein 40 protein-coding 120 0.01431
-9811 CTIF cap binding complex dependent translation initiation factor protein-coding 81 0.009657
-9812 DELE1 DAP3 binding cell death enhancer 1 protein-coding 52 0.006199
-9813 EFCAB14 EF-hand calcium binding domain 14 protein-coding 45 0.005365
-9814 SFI1 SFI1 centrin binding protein protein-coding 121 0.01443
-9815 GIT2 GIT ArfGAP 2 protein-coding 67 0.007988
-9816 URB2 URB2 ribosome biogenesis 2 homolog (S. cerevisiae) protein-coding 138 0.01645
-9817 KEAP1 kelch like ECH associated protein 1 protein-coding 247 0.02945
-9818 NUP58 nucleoporin 58 protein-coding 69 0.008226
-9819 TSC22D2 TSC22 domain family member 2 protein-coding 60 0.007153
-9820 CUL7 cullin 7 protein-coding 141 0.01681
-9821 RB1CC1 RB1 inducible coiled-coil 1 protein-coding 198 0.02361
-9823 ARMCX2 armadillo repeat containing, X-linked 2 protein-coding 97 0.01156
-9824 ARHGAP11A Rho GTPase activating protein 11A protein-coding 115 0.01371
-9825 SPATA2 spermatogenesis associated 2 protein-coding 58 0.006915
-9826 ARHGEF11 Rho guanine nucleotide exchange factor 11 protein-coding 175 0.02086
-9827 RGP1 RGP1 homolog, RAB6A GEF complex partner 1 protein-coding 40 0.004769
-9828 ARHGEF17 Rho guanine nucleotide exchange factor 17 protein-coding 182 0.0217
-9829 DNAJC6 DnaJ heat shock protein family (Hsp40) member C6 protein-coding 130 0.0155
-9830 TRIM14 tripartite motif containing 14 protein-coding 28 0.003338
-9831 ZNF623 zinc finger protein 623 protein-coding 82 0.009776
-9832 JAKMIP2 janus kinase and microtubule interacting protein 2 protein-coding 122 0.01454
-9833 MELK maternal embryonic leucine zipper kinase protein-coding 61 0.007272
-9834 FAM30A family with sequence similarity 30 member A ncRNA 14 0.001669
-9836 LCMT2 leucine carboxyl methyltransferase 2 protein-coding 86 0.01025
-9837 GINS1 GINS complex subunit 1 protein-coding 25 0.00298
-9839 ZEB2 zinc finger E-box binding homeobox 2 protein-coding 249 0.02969
-9840 TESPA1 thymocyte expressed, positive selection associated 1 protein-coding 95 0.01133
-9841 ZBTB24 zinc finger and BTB domain containing 24 protein-coding 80 0.009537
-9842 PLEKHM1 pleckstrin homology and RUN domain containing M1 protein-coding 108 0.01288
-9843 HEPH hephaestin protein-coding 226 0.02694
-9844 ELMO1 engulfment and cell motility 1 protein-coding 165 0.01967
-9846 GAB2 GRB2 associated binding protein 2 protein-coding 73 0.008703
-9847 C2CD5 C2 calcium dependent domain containing 5 protein-coding 124 0.01478
-9848 MFAP3L microfibril associated protein 3 like protein-coding 50 0.005961
-9849 ZNF518A zinc finger protein 518A protein-coding 219 0.02611
-9851 KIAA0753 KIAA0753 protein-coding 95 0.01133
-9852 EPM2AIP1 EPM2A interacting protein 1 protein-coding 70 0.008345
-9853 RUSC2 RUN and SH3 domain containing 2 protein-coding 127 0.01514
-9854 C2CD2L C2CD2 like protein-coding 68 0.008107
-9855 FARP2 FERM, ARH/RhoGEF and pleckstrin domain protein 2 protein-coding 113 0.01347
-9856 KIAA0319 KIAA0319 protein-coding 143 0.01705
-9857 CEP350 centrosomal protein 350 protein-coding 263 0.03135
-9858 PPP1R26 protein phosphatase 1 regulatory subunit 26 protein-coding 135 0.01609
-9859 CEP170 centrosomal protein 170 protein-coding 220 0.02623
-9860 LRIG2 leucine rich repeats and immunoglobulin like domains 2 protein-coding 122 0.01454
-9861 PSMD6 proteasome 26S subunit, non-ATPase 6 protein-coding 34 0.004053
-9862 MED24 mediator complex subunit 24 protein-coding 94 0.01121
-9863 MAGI2 membrane associated guanylate kinase, WW and PDZ domain containing 2 protein-coding 242 0.02885
-9866 TRIM66 tripartite motif containing 66 protein-coding 73 0.008703
-9867 PJA2 praja ring finger ubiquitin ligase 2 protein-coding 77 0.00918
-9868 TOMM70 translocase of outer mitochondrial membrane 70 protein-coding 55 0.006557
-9869 SETDB1 SET domain bifurcated 1 protein-coding 147 0.01753
-9870 AREL1 apoptosis resistant E3 ubiquitin protein ligase 1 protein-coding 87 0.01037
-9871 SEC24D SEC24 homolog D, COPII coat complex component protein-coding 107 0.01276
-9873 FCHSD2 FCH and double SH3 domains 2 protein-coding 58 0.006915
-9874 TLK1 tousled like kinase 1 protein-coding 87 0.01037
-9875 URB1 URB1 ribosome biogenesis 1 homolog (S. cerevisiae) protein-coding 95 0.01133
-9877 ZC3H11A zinc finger CCCH-type containing 11A protein-coding 91 0.01085
-9878 TOX4 TOX high mobility group box family member 4 protein-coding 141 0.01681
-9879 DDX46 DEAD-box helicase 46 protein-coding 115 0.01371
-9880 ZBTB39 zinc finger and BTB domain containing 39 protein-coding 61 0.007272
-9881 TRANK1 tetratricopeptide repeat and ankyrin repeat containing 1 protein-coding 231 0.02754
-9882 TBC1D4 TBC1 domain family member 4 protein-coding 151 0.018
-9883 POM121 POM121 transmembrane nucleoporin protein-coding 106 0.01264
-9884 LRRC37A leucine rich repeat containing 37A protein-coding 35 0.004173
-9885 OSBPL2 oxysterol binding protein like 2 protein-coding 63 0.007511
-9886 RHOBTB1 Rho related BTB domain containing 1 protein-coding 94 0.01121
-9887 SMG7 SMG7, nonsense mediated mRNA decay factor protein-coding 116 0.01383
-9889 ZBED4 zinc finger BED-type containing 4 protein-coding 118 0.01407
-9890 PLPPR4 phospholipid phosphatase related 4 protein-coding 166 0.01979
-9891 NUAK1 NUAK family kinase 1 protein-coding 116 0.01383
-9892 SNAP91 synaptosome associated protein 91 protein-coding 143 0.01705
-9894 TELO2 telomere maintenance 2 protein-coding 171 0.02039
-9895 TECPR2 tectonin beta-propeller repeat containing 2 protein-coding 142 0.01693
-9896 FIG4 FIG4 phosphoinositide 5-phosphatase protein-coding 105 0.01252
-9897 WASHC5 WASH complex subunit 5 protein-coding 120 0.01431
-9898 UBAP2L ubiquitin associated protein 2 like protein-coding 93 0.01109
-9899 SV2B synaptic vesicle glycoprotein 2B protein-coding 102 0.01216
-9900 SV2A synaptic vesicle glycoprotein 2A protein-coding 115 0.01371
-9901 SRGAP3 SLIT-ROBO Rho GTPase activating protein 3 protein-coding 215 0.02563
-9902 MRC2 mannose receptor C type 2 protein-coding 144 0.01717
-9903 KLHL21 kelch like family member 21 protein-coding 42 0.005007
-9904 RBM19 RNA binding motif protein 19 protein-coding 122 0.01454
-9905 SGSM2 small G protein signaling modulator 2 protein-coding 72 0.008584
-9907 AP5Z1 adaptor related protein complex 5 zeta 1 subunit protein-coding 99 0.0118
-9908 G3BP2 G3BP stress granule assembly factor 2 protein-coding 61 0.007272
-9909 DENND4B DENN domain containing 4B protein-coding 172 0.02051
-9910 RABGAP1L RAB GTPase activating protein 1 like protein-coding 117 0.01395
-9911 TMCC2 transmembrane and coiled-coil domain family 2 protein-coding 81 0.009657
-9912 ARHGAP44 Rho GTPase activating protein 44 protein-coding 84 0.01001
-9913 SUPT7L SPT7 like, STAGA complex gamma subunit protein-coding 32 0.003815
-9914 ATP2C2 ATPase secretory pathway Ca2+ transporting 2 protein-coding 93 0.01109
-9915 ARNT2 aryl hydrocarbon receptor nuclear translocator 2 protein-coding 86 0.01025
-9917 FAM20B FAM20B, glycosaminoglycan xylosylkinase protein-coding 53 0.006319
-9918 NCAPD2 non-SMC condensin I complex subunit D2 protein-coding 126 0.01502
-9919 SEC16A SEC16 homolog A, endoplasmic reticulum export factor protein-coding 187 0.02229
-9920 KBTBD11 kelch repeat and BTB domain containing 11 protein-coding 5 0.0005961
-9921 RNF10 ring finger protein 10 protein-coding 86 0.01025
-9922 IQSEC1 IQ motif and Sec7 domain 1 protein-coding 105 0.01252
-9923 ZBTB40 zinc finger and BTB domain containing 40 protein-coding 109 0.01299
-9924 PAN2 PAN2 poly(A) specific ribonuclease subunit protein-coding 113 0.01347
-9925 ZBTB5 zinc finger and BTB domain containing 5 protein-coding 70 0.008345
-9926 LPGAT1 lysophosphatidylglycerol acyltransferase 1 protein-coding 39 0.004649
-9927 MFN2 mitofusin 2 protein-coding 87 0.01037
-9928 KIF14 kinesin family member 14 protein-coding 169 0.02015
-9929 JOSD1 Josephin domain containing 1 protein-coding 23 0.002742
-9931 HELZ helicase with zinc finger protein-coding 192 0.02289
-9933 PUM3 pumilio RNA binding family member 3 protein-coding 65 0.007749
-9934 P2RY14 purinergic receptor P2Y14 protein-coding 55 0.006557
-9935 MAFB MAF bZIP transcription factor B protein-coding 27 0.003219
-9936 CD302 CD302 molecule protein-coding 1 0.0001192
-9937 DCLRE1A DNA cross-link repair 1A protein-coding 103 0.01228
-9938 ARHGAP25 Rho GTPase activating protein 25 protein-coding 88 0.01049
-9939 RBM8A RNA binding motif protein 8A protein-coding 26 0.0031
-9940 DLEC1 deleted in lung and esophageal cancer 1 protein-coding 373 0.04447
-9941 EXOG exo/endonuclease G protein-coding 33 0.003934
-9942 XYLB xylulokinase protein-coding 73 0.008703
-9943 OXSR1 oxidative stress responsive 1 protein-coding 103 0.01228
-9945 GFPT2 glutamine-fructose-6-phosphate transaminase 2 protein-coding 106 0.01264
-9946 CRYZL1 crystallin zeta like 1 protein-coding 40 0.004769
-9947 MAGEC1 MAGE family member C1 protein-coding 328 0.0391
-9948 WDR1 WD repeat domain 1 protein-coding 57 0.006795
-9949 AMMECR1 Alport syndrome, mental retardation, midface hypoplasia and elliptocytosis chromosomal region gene 1 protein-coding 46 0.005484
-9950 GOLGA5 golgin A5 protein-coding 83 0.009895
-9951 HS3ST4 heparan sulfate-glucosamine 3-sulfotransferase 4 protein-coding 79 0.009418
-9953 HS3ST3B1 heparan sulfate-glucosamine 3-sulfotransferase 3B1 protein-coding 37 0.004411
-9955 HS3ST3A1 heparan sulfate-glucosamine 3-sulfotransferase 3A1 protein-coding 59 0.007034
-9956 HS3ST2 heparan sulfate-glucosamine 3-sulfotransferase 2 protein-coding 56 0.006676
-9957 HS3ST1 heparan sulfate-glucosamine 3-sulfotransferase 1 protein-coding 56 0.006676
-9958 USP15 ubiquitin specific peptidase 15 protein-coding 128 0.01526
-9959 USP12P1 ubiquitin specific peptidase 12 pseudogene 1 pseudo 66 0.007868
-9960 USP3 ubiquitin specific peptidase 3 protein-coding 59 0.007034
-9961 MVP major vault protein protein-coding 100 0.01192
-9962 SLC23A2 solute carrier family 23 member 2 protein-coding 143 0.01705
-9963 SLC23A1 solute carrier family 23 member 1 protein-coding 143 0.01705
-9965 FGF19 fibroblast growth factor 19 protein-coding 17 0.002027
-9966 TNFSF15 TNF superfamily member 15 protein-coding 30 0.003577
-9967 THRAP3 thyroid hormone receptor associated protein 3 protein-coding 126 0.01502
-9968 MED12 mediator complex subunit 12 protein-coding 378 0.04506
-9969 MED13 mediator complex subunit 13 protein-coding 233 0.02778
-9970 NR1I3 nuclear receptor subfamily 1 group I member 3 protein-coding 58 0.006915
-9971 NR1H4 nuclear receptor subfamily 1 group H member 4 protein-coding 102 0.01216
-9972 NUP153 nucleoporin 153 protein-coding 151 0.018
-9973 CCS copper chaperone for superoxide dismutase protein-coding 26 0.0031
-9975 NR1D2 nuclear receptor subfamily 1 group D member 2 protein-coding 63 0.007511
-9976 CLEC2B C-type lectin domain family 2 member B protein-coding 27 0.003219
-9978 RBX1 ring-box 1 protein-coding 11 0.001311
-9980 DOPEY2 dopey family member 2 protein-coding 217 0.02587
-9982 FGFBP1 fibroblast growth factor binding protein 1 protein-coding 24 0.002861
-9984 THOC1 THO complex 1 protein-coding 62 0.007392
-9985 REC8 REC8 meiotic recombination protein protein-coding 60 0.007153
-9986 RCE1 Ras converting CAAX endopeptidase 1 protein-coding 35 0.004173
-9987 HNRNPDL heterogeneous nuclear ribonucleoprotein D like protein-coding 69 0.008226
-9988 DMTF1 cyclin D binding myb like transcription factor 1 protein-coding 149 0.01776
-9989 PPP4R1 protein phosphatase 4 regulatory subunit 1 protein-coding 101 0.01204
-9990 SLC12A6 solute carrier family 12 member 6 protein-coding 121 0.01443
-9991 PTBP3 polypyrimidine tract binding protein 3 protein-coding 50 0.005961
-9992 KCNE2 potassium voltage-gated channel subfamily E regulatory subunit 2 protein-coding 28 0.003338
-9993 DGCR2 DiGeorge syndrome critical region gene 2 protein-coding 78 0.009299
-9994 CASP8AP2 caspase 8 associated protein 2 protein-coding 197 0.02349
-9997 SCO2 SCO2, cytochrome c oxidase assembly protein protein-coding 30 0.003577
-10000 AKT3 AKT serine/threonine kinase 3 protein-coding 90 0.01073
-10001 MED6 mediator complex subunit 6 protein-coding 30 0.003577
-10002 NR2E3 nuclear receptor subfamily 2 group E member 3 protein-coding 28 0.003338
-10003 NAALAD2 N-acetylated alpha-linked acidic dipeptidase 2 protein-coding 143 0.01705
-10004 NAALADL1 N-acetylated alpha-linked acidic dipeptidase like 1 protein-coding 87 0.01037
-10005 ACOT8 acyl-CoA thioesterase 8 protein-coding 39 0.004649
-10006 ABI1 abl interactor 1 protein-coding 42 0.005007
-10007 GNPDA1 glucosamine-6-phosphate deaminase 1 protein-coding 85 0.01013
-10008 KCNE3 potassium voltage-gated channel subfamily E regulatory subunit 3 protein-coding 21 0.002504
-10009 ZBTB33 zinc finger and BTB domain containing 33 protein-coding 92 0.01097
-10010 TANK TRAF family member associated NFKB activator protein-coding 109 0.01299
-10011 SRA1 steroid receptor RNA activator 1 protein-coding 16 0.001907
-10013 HDAC6 histone deacetylase 6 protein-coding 144 0.01717
-10014 HDAC5 histone deacetylase 5 protein-coding 98 0.01168
-10015 PDCD6IP programmed cell death 6 interacting protein protein-coding 79 0.009418
-10016 PDCD6 programmed cell death 6 protein-coding 57 0.006795
-10017 BCL2L10 BCL2 like 10 protein-coding 11 0.001311
-10018 BCL2L11 BCL2 like 11 protein-coding 42 0.005007
-10019 SH2B3 SH2B adaptor protein 3 protein-coding 42 0.005007
-10020 GNE glucosamine (UDP-N-acetyl)-2-epimerase/N-acetylmannosamine kinase protein-coding 72 0.008584
-10021 HCN4 hyperpolarization activated cyclic nucleotide gated potassium channel 4 protein-coding 140 0.01669
-10022 INSL5 insulin like 5 protein-coding 23 0.002742
-10023 FRAT1 FRAT1, WNT signaling pathway regulator protein-coding 6 0.0007153
-10024 TROAP trophinin associated protein protein-coding 82 0.009776
-10025 MED16 mediator complex subunit 16 protein-coding 82 0.009776
-10026 PIGK phosphatidylinositol glycan anchor biosynthesis class K protein-coding 59 0.007034
-10036 CHAF1A chromatin assembly factor 1 subunit A protein-coding 111 0.01323
-10038 PARP2 poly(ADP-ribose) polymerase 2 protein-coding 61 0.007272
-10039 PARP3 poly(ADP-ribose) polymerase family member 3 protein-coding 51 0.00608
-10040 TOM1L1 target of myb1 like 1 membrane trafficking protein protein-coding 53 0.006319
-10042 HMGXB4 HMG-box containing 4 protein-coding 59 0.007034
-10043 TOM1 target of myb1 membrane trafficking protein protein-coding 58 0.006915
-10044 SH2D3C SH2 domain containing 3C protein-coding 209 0.02492
-10045 SH2D3A SH2 domain containing 3A protein-coding 66 0.007868
-10046 MAMLD1 mastermind like domain containing 1 protein-coding 105 0.01252
-10047 CST8 cystatin 8 protein-coding 36 0.004292
-10048 RANBP9 RAN binding protein 9 protein-coding 55 0.006557
-10049 DNAJB6 DnaJ heat shock protein family (Hsp40) member B6 protein-coding 42 0.005007
-10050 SLC17A4 solute carrier family 17 member 4 protein-coding 101 0.01204
-10051 SMC4 structural maintenance of chromosomes 4 protein-coding 164 0.01955
-10052 GJC1 gap junction protein gamma 1 protein-coding 58 0.006915
-10053 AP1M2 adaptor related protein complex 1 mu 2 subunit protein-coding 52 0.006199
-10054 UBA2 ubiquitin like modifier activating enzyme 2 protein-coding 100 0.01192
-10055 SAE1 SUMO1 activating enzyme subunit 1 protein-coding 41 0.004888
-10056 FARSB phenylalanyl-tRNA synthetase beta subunit protein-coding 67 0.007988
-10057 ABCC5 ATP binding cassette subfamily C member 5 protein-coding 153 0.01824
-10058 ABCB6 ATP binding cassette subfamily B member 6 (Langereis blood group) protein-coding 95 0.01133
-10059 DNM1L dynamin 1 like protein-coding 65 0.007749
-10060 ABCC9 ATP binding cassette subfamily C member 9 protein-coding 253 0.03016
-10061 ABCF2 ATP binding cassette subfamily F member 2 protein-coding 66 0.007868
-10062 NR1H3 nuclear receptor subfamily 1 group H member 3 protein-coding 48 0.005722
-10063 COX17 COX17, cytochrome c oxidase copper chaperone protein-coding 9 0.001073
-10066 SCAMP2 secretory carrier membrane protein 2 protein-coding 30 0.003577
-10067 SCAMP3 secretory carrier membrane protein 3 protein-coding 45 0.005365
-10068 IL18BP interleukin 18 binding protein protein-coding 13 0.00155
-10069 RWDD2B RWD domain containing 2B protein-coding 39 0.004649
-10071 MUC12 mucin 12, cell surface associated protein-coding 38 0.00453
-10072 DPP3 dipeptidyl peptidase 3 protein-coding 87 0.01037
-10073 SNUPN snurportin 1 protein-coding 33 0.003934
-10075 HUWE1 HECT, UBA and WWE domain containing 1, E3 ubiquitin protein ligase protein-coding 448 0.05341
-10076 PTPRU protein tyrosine phosphatase, receptor type U protein-coding 304 0.03624
-10077 TSPAN32 tetraspanin 32 protein-coding 31 0.003696
-10078 TSSC4 tumor suppressing subtransferable candidate 4 protein-coding 33 0.003934
-10079 ATP9A ATPase phospholipid transporting 9A (putative) protein-coding 142 0.01693
-10081 PDCD7 programmed cell death 7 protein-coding 40 0.004769
-10082 GPC6 glypican 6 protein-coding 123 0.01466
-10083 USH1C USH1 protein network component harmonin protein-coding 136 0.01621
-10084 PQBP1 polyglutamine binding protein 1 protein-coding 38 0.00453
-10085 EDIL3 EGF like repeats and discoidin domains 3 protein-coding 109 0.01299
-10086 HHLA1 HERV-H LTR-associating 1 protein-coding 44 0.005246
-10087 COL4A3BP collagen type IV alpha 3 binding protein protein-coding 70 0.008345
-10089 KCNK7 potassium two pore domain channel subfamily K member 7 protein-coding 32 0.003815
-10090 UST uronyl 2-sulfotransferase protein-coding 61 0.007272
-10092 ARPC5 actin related protein 2/3 complex subunit 5 protein-coding 17 0.002027
-10093 ARPC4 actin related protein 2/3 complex subunit 4 protein-coding 12 0.001431
-10094 ARPC3 actin related protein 2/3 complex subunit 3 protein-coding 15 0.001788
-10095 ARPC1B actin related protein 2/3 complex subunit 1B protein-coding 36 0.004292
-10096 ACTR3 ARP3 actin related protein 3 homolog protein-coding 41 0.004888
-10097 ACTR2 ARP2 actin related protein 2 homolog protein-coding 43 0.005126
-10098 TSPAN5 tetraspanin 5 protein-coding 49 0.005842
-10099 TSPAN3 tetraspanin 3 protein-coding 23 0.002742
-10100 TSPAN2 tetraspanin 2 protein-coding 29 0.003457
-10101 NUBP2 nucleotide binding protein 2 protein-coding 37 0.004411
-10102 TSFM Ts translation elongation factor, mitochondrial protein-coding 27 0.003219
-10103 TSPAN1 tetraspanin 1 protein-coding 20 0.002384
-10105 PPIF peptidylprolyl isomerase F protein-coding 19 0.002265
-10106 CTDSP2 CTD small phosphatase 2 protein-coding 85 0.01013
-10107 TRIM10 tripartite motif containing 10 protein-coding 63 0.007511
-10109 ARPC2 actin related protein 2/3 complex subunit 2 protein-coding 39 0.004649
-10110 SGK2 SGK2, serine/threonine kinase 2 protein-coding 76 0.009061
-10111 RAD50 RAD50 double strand break repair protein protein-coding 137 0.01633
-10112 KIF20A kinesin family member 20A protein-coding 73 0.008703
-10113 PREB prolactin regulatory element binding protein-coding 46 0.005484
-10114 HIPK3 homeodomain interacting protein kinase 3 protein-coding 116 0.01383
-10116 FEM1B fem-1 homolog B protein-coding 64 0.00763
-10117 ENAM enamelin protein-coding 162 0.01931
-10120 ACTR1B ARP1 actin related protein 1 homolog B protein-coding 46 0.005484
-10121 ACTR1A ARP1 actin related protein 1 homolog A protein-coding 43 0.005126
-10123 ARL4C ADP ribosylation factor like GTPase 4C protein-coding 15 0.001788
-10124 ARL4A ADP ribosylation factor like GTPase 4A protein-coding 40 0.004769
-10125 RASGRP1 RAS guanyl releasing protein 1 protein-coding 85 0.01013
-10126 DNAL4 dynein axonemal light chain 4 protein-coding 14 0.001669
-10127 ZNF263 zinc finger protein 263 protein-coding 75 0.008941
-10128 LRPPRC leucine rich pentatricopeptide repeat containing protein-coding 123 0.01466
-10129 FRY FRY microtubule binding protein protein-coding 333 0.0397
-10130 PDIA6 protein disulfide isomerase family A member 6 protein-coding 48 0.005722
-10131 TRAP1 TNF receptor associated protein 1 protein-coding 68 0.008107
-10133 OPTN optineurin protein-coding 67 0.007988
-10134 BCAP31 B cell receptor associated protein 31 protein-coding 42 0.005007
-10135 NAMPT nicotinamide phosphoribosyltransferase protein-coding 46 0.005484
-10136 CELA3A chymotrypsin like elastase family member 3A protein-coding 41 0.004888
-10137 RBM12 RNA binding motif protein 12 protein-coding 83 0.009895
-10138 YAF2 YY1 associated factor 2 protein-coding 28 0.003338
-10139 ARFRP1 ADP ribosylation factor related protein 1 protein-coding 25 0.00298
-10140 TOB1 transducer of ERBB2, 1 protein-coding 42 0.005007
-10141 LINC01587 long intergenic non-protein coding RNA 1587 ncRNA 10 0.001192
-10142 AKAP9 A-kinase anchoring protein 9 protein-coding 363 0.04328
-10143 CLEC3A C-type lectin domain family 3 member A protein-coding 51 0.00608
-10144 FAM13A family with sequence similarity 13 member A protein-coding 118 0.01407
-10146 G3BP1 G3BP stress granule assembly factor 1 protein-coding 84 0.01001
-10147 SUGP2 SURP and G-patch domain containing 2 protein-coding 105 0.01252
-10148 EBI3 Epstein-Barr virus induced 3 protein-coding 26 0.0031
-10149 ADGRG2 adhesion G protein-coupled receptor G2 protein-coding 132 0.01574
-10150 MBNL2 muscleblind like splicing regulator 2 protein-coding 44 0.005246
-10152 ABI2 abl interactor 2 protein-coding 57 0.006795
-10153 CEBPZ CCAAT enhancer binding protein zeta protein-coding 94 0.01121
-10154 PLXNC1 plexin C1 protein-coding 164 0.01955
-10155 TRIM28 tripartite motif containing 28 protein-coding 81 0.009657
-10156 RASA4 RAS p21 protein activator 4 protein-coding 18 0.002146
-10157 AASS aminoadipate-semialdehyde synthase protein-coding 133 0.01586
-10158 PDZK1IP1 PDZK1 interacting protein 1 protein-coding 20 0.002384
-10159 ATP6AP2 ATPase H+ transporting accessory protein 2 protein-coding 49 0.005842
-10160 FARP1 FERM, ARH/RhoGEF and pleckstrin domain protein 1 protein-coding 135 0.01609
-10161 LPAR6 lysophosphatidic acid receptor 6 protein-coding 34 0.004053
-10162 LPCAT3 lysophosphatidylcholine acyltransferase 3 protein-coding 50 0.005961
-10163 WASF2 WAS protein family member 2 protein-coding 63 0.007511
-10164 CHST4 carbohydrate sulfotransferase 4 protein-coding 57 0.006795
-10165 SLC25A13 solute carrier family 25 member 13 protein-coding 95 0.01133
-10166 SLC25A15 solute carrier family 25 member 15 protein-coding 111 0.01323
-10168 ZNF197 zinc finger protein 197 protein-coding 137 0.01633
-10169 SERF2 small EDRK-rich factor 2 protein-coding 15 0.001788
-10170 DHRS9 dehydrogenase/reductase 9 protein-coding 54 0.006438
-10171 RCL1 RNA terminal phosphate cyclase like 1 protein-coding 35 0.004173
-10172 ZNF256 zinc finger protein 256 protein-coding 76 0.009061
-10174 SORBS3 sorbin and SH3 domain containing 3 protein-coding 55 0.006557
-10175 CNIH1 cornichon family AMPA receptor auxiliary protein 1 protein-coding 21 0.002504
-10178 TENM1 teneurin transmembrane protein 1 protein-coding 454 0.05412
-10179 RBM7 RNA binding motif protein 7 protein-coding 35 0.004173
-10180 RBM6 RNA binding motif protein 6 protein-coding 121 0.01443
-10181 RBM5 RNA binding motif protein 5 protein-coding 86 0.01025
-10184 LHFPL2 LHFPL tetraspan subfamily member 2 protein-coding 13 0.00155
-10186 LHFPL6 LHFPL tetraspan subfamily member 6 protein-coding 30 0.003577
-10187 VDAC1P5 voltage dependent anion channel 1 pseudogene 5 pseudo 24 0.002861
-10188 TNK2 tyrosine kinase non receptor 2 protein-coding 110 0.01311
-10189 ALYREF Aly/REF export factor protein-coding 30 0.003577
-10190 TXNDC9 thioredoxin domain containing 9 protein-coding 19 0.002265
-10193 RNF41 ring finger protein 41 protein-coding 47 0.005603
-10194 TSHZ1 teashirt zinc finger homeobox 1 protein-coding 114 0.01359
-10195 ALG3 ALG3, alpha-1,3- mannosyltransferase protein-coding 41 0.004888
-10196 PRMT3 protein arginine methyltransferase 3 protein-coding 68 0.008107
-10197 PSME3 proteasome activator subunit 3 protein-coding 30 0.003577
-10198 MPHOSPH9 M-phase phosphoprotein 9 protein-coding 100 0.01192
-10199 MPHOSPH10 M-phase phosphoprotein 10 protein-coding 93 0.01109
-10200 MPHOSPH6 M-phase phosphoprotein 6 protein-coding 98 0.01168
-10201 NME6 NME/NM23 nucleoside diphosphate kinase 6 protein-coding 21 0.002504
-10202 DHRS2 dehydrogenase/reductase 2 protein-coding 43 0.005126
-10203 CALCRL calcitonin receptor like receptor protein-coding 91 0.01085
-10204 NUTF2 nuclear transport factor 2 protein-coding 19 0.002265
-10205 MPZL2 myelin protein zero like 2 protein-coding 24 0.002861
-10206 TRIM13 tripartite motif containing 13 protein-coding 46 0.005484
-10207 PATJ PATJ, crumbs cell polarity complex component protein-coding 205 0.02444
-10208 USPL1 ubiquitin specific peptidase like 1 protein-coding 97 0.01156
-10209 EIF1 eukaryotic translation initiation factor 1 protein-coding 19 0.002265
-10210 TOPORS TOP1 binding arginine/serine rich protein protein-coding 127 0.01514
-10211 FLOT1 flotillin 1 protein-coding 38 0.00453
-10212 DDX39A DExD-box helicase 39A protein-coding 42 0.005007
-10213 PSMD14 proteasome 26S subunit, non-ATPase 14 protein-coding 29 0.003457
-10214 SSX3 SSX family member 3 protein-coding 36 0.004292
-10215 OLIG2 oligodendrocyte transcription factor 2 protein-coding 33 0.003934
-10216 PRG4 proteoglycan 4 protein-coding 193 0.02301
-10217 CTDSPL CTD small phosphatase like protein-coding 28 0.003338
-10218 ANGPTL7 angiopoietin like 7 protein-coding 38 0.00453
-10219 KLRG1 killer cell lectin like receptor G1 protein-coding 35 0.004173
-10220 GDF11 growth differentiation factor 11 protein-coding 33 0.003934
-10221 TRIB1 tribbles pseudokinase 1 protein-coding 41 0.004888
-10223 GPA33 glycoprotein A33 protein-coding 60 0.007153
-10224 ZNF443 zinc finger protein 443 protein-coding 77 0.00918
-10225 CD96 CD96 molecule protein-coding 91 0.01085
-10226 PLIN3 perilipin 3 protein-coding 46 0.005484
-10227 MFSD10 major facilitator superfamily domain containing 10 protein-coding 36 0.004292
-10228 STX6 syntaxin 6 protein-coding 30 0.003577
-10229 COQ7 coenzyme Q7, hydroxylase protein-coding 98 0.01168
-10230 NBR2 neighbor of BRCA1 gene 2 (non-protein coding) ncRNA 17 0.002027
-10231 RCAN2 regulator of calcineurin 2 protein-coding 62 0.007392
-10232 MSLN mesothelin protein-coding 75 0.008941
-10233 LRRC23 leucine rich repeat containing 23 protein-coding 41 0.004888
-10234 LRRC17 leucine rich repeat containing 17 protein-coding 59 0.007034
-10235 RASGRP2 RAS guanyl releasing protein 2 protein-coding 86 0.01025
-10236 HNRNPR heterogeneous nuclear ribonucleoprotein R protein-coding 74 0.008822
-10237 SLC35B1 solute carrier family 35 member B1 protein-coding 42 0.005007
-10238 DCAF7 DDB1 and CUL4 associated factor 7 protein-coding 19 0.002265
-10239 AP3S2 adaptor related protein complex 3 sigma 2 subunit protein-coding 8 0.0009537
-10240 MRPS31 mitochondrial ribosomal protein S31 protein-coding 50 0.005961
-10241 CALCOCO2 calcium binding and coiled-coil domain 2 protein-coding 38 0.00453
-10242 KCNMB2 potassium calcium-activated channel subfamily M regulatory beta subunit 2 protein-coding 60 0.007153
-10243 GPHN gephyrin protein-coding 92 0.01097
-10244 RABEPK Rab9 effector protein with kelch motifs protein-coding 41 0.004888
-10245 TIMM17B translocase of inner mitochondrial membrane 17B protein-coding 31 0.003696
-10246 SLC17A2 solute carrier family 17 member 2 protein-coding 73 0.008703
-10247 RIDA reactive intermediate imine deaminase A homolog protein-coding 22 0.002623
-10248 POP7 POP7 homolog, ribonuclease P/MRP subunit protein-coding 19 0.002265
-10249 GLYAT glycine-N-acyltransferase protein-coding 61 0.007272
-10250 SRRM1 serine and arginine repetitive matrix 1 protein-coding 106 0.01264
-10251 SPRY3 sprouty RTK signaling antagonist 3 protein-coding 75 0.008941
-10252 SPRY1 sprouty RTK signaling antagonist 1 protein-coding 35 0.004173
-10253 SPRY2 sprouty RTK signaling antagonist 2 protein-coding 41 0.004888
-10254 STAM2 signal transducing adaptor molecule 2 protein-coding 51 0.00608
-10255 HCG9 HLA complex group 9 (non-protein coding) ncRNA 14 0.001669
-10256 CNKSR1 connector enhancer of kinase suppressor of Ras 1 protein-coding 98 0.01168
-10257 ABCC4 ATP binding cassette subfamily C member 4 protein-coding 163 0.01943
-10260 DENND4A DENN domain containing 4A protein-coding 162 0.01931
-10261 IGSF6 immunoglobulin superfamily member 6 protein-coding 28 0.003338
-10262 SF3B4 splicing factor 3b subunit 4 protein-coding 52 0.006199
-10263 CDK2AP2 cyclin dependent kinase 2 associated protein 2 protein-coding 12 0.001431
-10265 IRX5 iroquois homeobox 5 protein-coding 70 0.008345
-10266 RAMP2 receptor activity modifying protein 2 protein-coding 18 0.002146
-10267 RAMP1 receptor activity modifying protein 1 protein-coding 18 0.002146
-10268 RAMP3 receptor activity modifying protein 3 protein-coding 21 0.002504
-10269 ZMPSTE24 zinc metallopeptidase STE24 protein-coding 66 0.007868
-10270 AKAP8 A-kinase anchoring protein 8 protein-coding 75 0.008941
-10272 FSTL3 follistatin like 3 protein-coding 18 0.002146
-10273 STUB1 STIP1 homology and U-box containing protein 1 protein-coding 42 0.005007
-10274 STAG1 stromal antigen 1 protein-coding 171 0.02039
-10276 NET1 neuroepithelial cell transforming 1 protein-coding 55 0.006557
-10277 UBE4B ubiquitination factor E4B protein-coding 137 0.01633
-10278 EFS embryonal Fyn-associated substrate protein-coding 47 0.005603
-10279 PRSS16 serine protease 16 protein-coding 68 0.008107
-10280 SIGMAR1 sigma non-opioid intracellular receptor 1 protein-coding 17 0.002027
-10281 DSCR4 Down syndrome critical region 4 ncRNA 19 0.002265
-10282 BET1 Bet1 golgi vesicular membrane trafficking protein protein-coding 17 0.002027
-10283 CWC27 CWC27 spliceosome associated protein homolog protein-coding 71 0.008464
-10284 SAP18 Sin3A associated protein 18 protein-coding 20 0.002384
-10285 SMNDC1 survival motor neuron domain containing 1 protein-coding 17 0.002027
-10286 BCAS2 BCAS2, pre-mRNA processing factor protein-coding 27 0.003219
-10287 RGS19 regulator of G protein signaling 19 protein-coding 26 0.0031
-10288 LILRB2 leukocyte immunoglobulin like receptor B2 protein-coding 119 0.01419
-10289 EIF1B eukaryotic translation initiation factor 1B protein-coding 16 0.001907
-10290 SPEG SPEG complex locus protein-coding 295 0.03517
-10291 SF3A1 splicing factor 3a subunit 1 protein-coding 64 0.00763
-10293 TRAIP TRAF interacting protein protein-coding 54 0.006438
-10294 DNAJA2 DnaJ heat shock protein family (Hsp40) member A2 protein-coding 51 0.00608
-10295 BCKDK branched chain ketoacid dehydrogenase kinase protein-coding 52 0.006199
-10296 MAEA macrophage erythroblast attacher protein-coding 57 0.006795
-10297 APC2 APC2, WNT signaling pathway regulator protein-coding 94 0.01121
-10298 PAK4 p21 (RAC1) activated kinase 4 protein-coding 64 0.00763
-10299 MARCH6 membrane associated ring-CH-type finger 6 protein-coding 108 0.01288
-10300 KATNB1 katanin regulatory subunit B1 protein-coding 64 0.00763
-10301 DLEU1 deleted in lymphocytic leukemia 1 (non-protein coding) ncRNA 3 0.0003577
-10302 SNAPC5 small nuclear RNA activating complex polypeptide 5 protein-coding 7 0.0008345
-10305 MMDK Mesomelic dysplasia, Kantaputra type unknown 13 0.00155
-10307 APBB3 amyloid beta precursor protein binding family B member 3 protein-coding 61 0.007272
-10308 ZNF267 zinc finger protein 267 protein-coding 115 0.01371
-10309 CCNO cyclin O protein-coding 21 0.002504
-10311 VPS26C VPS26 endosomal protein sorting factor C protein-coding 40 0.004769
-10312 TCIRG1 T cell immune regulator 1, ATPase H+ transporting V0 subunit a3 protein-coding 68 0.008107
-10313 RTN3 reticulon 3 protein-coding 97 0.01156
-10314 LANCL1 LanC like 1 protein-coding 36 0.004292
-10316 NMUR1 neuromedin U receptor 1 protein-coding 56 0.006676
-10317 B3GALT5 beta-1,3-galactosyltransferase 5 protein-coding 40 0.004769
-10318 TNIP1 TNFAIP3 interacting protein 1 protein-coding 126 0.01502
-10319 LAMC3 laminin subunit gamma 3 protein-coding 187 0.02229
-10320 IKZF1 IKAROS family zinc finger 1 protein-coding 95 0.01133
-10321 CRISP3 cysteine rich secretory protein 3 protein-coding 59 0.007034
-10322 SMYD5 SMYD family member 5 protein-coding 48 0.005722
-10324 KLHL41 kelch like family member 41 protein-coding 75 0.008941
-10325 RRAGB Ras related GTP binding B protein-coding 62 0.007392
-10326 SIRPB1 signal regulatory protein beta 1 protein-coding 62 0.007392
-10327 AKR1A1 aldo-keto reductase family 1 member A1 protein-coding 32 0.003815
-10328 EMC8 ER membrane protein complex subunit 8 protein-coding 14 0.001669
-10329 RXYLT1 ribitol xylosyltransferase 1 protein-coding 56 0.006676
-10330 CNPY2 canopy FGF signaling regulator 2 protein-coding 23 0.002742
-10331 B3GNT3 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 3 protein-coding 51 0.00608
-10332 CLEC4M C-type lectin domain family 4 member M protein-coding 55 0.006557
-10333 TLR6 toll like receptor 6 protein-coding 82 0.009776
-10335 MRVI1 murine retrovirus integration site 1 homolog protein-coding 109 0.01299
-10336 PCGF3 polycomb group ring finger 3 protein-coding 44 0.005246
-10342 TFG TRK-fused gene protein-coding 53 0.006319
-10343 PKDREJ polycystin family receptor for egg jelly protein-coding 191 0.02277
-10344 CCL26 C-C motif chemokine ligand 26 protein-coding 12 0.001431
-10345 TRDN triadin protein-coding 127 0.01514
-10346 TRIM22 tripartite motif containing 22 protein-coding 75 0.008941
-10347 ABCA7 ATP binding cassette subfamily A member 7 protein-coding 191 0.02277
-10349 ABCA10 ATP binding cassette subfamily A member 10 protein-coding 204 0.02432
-10350 ABCA9 ATP binding cassette subfamily A member 9 protein-coding 213 0.02539
-10351 ABCA8 ATP binding cassette subfamily A member 8 protein-coding 203 0.0242
-10352 WARS2 tryptophanyl tRNA synthetase 2, mitochondrial protein-coding 64 0.00763
-10354 HMGB1P5 high mobility group box 1 pseudogene 5 pseudo 32 0.003815
-10360 NPM3 nucleophosmin/nucleoplasmin 3 protein-coding 43 0.005126
-10361 NPM2 nucleophosmin/nucleoplasmin 2 protein-coding 27 0.003219
-10362 HMG20B high mobility group 20B protein-coding 31 0.003696
-10363 HMG20A high mobility group 20A protein-coding 58 0.006915
-10365 KLF2 Kruppel like factor 2 protein-coding 11 0.001311
-10367 MICU1 mitochondrial calcium uptake 1 protein-coding 44 0.005246
-10368 CACNG3 calcium voltage-gated channel auxiliary subunit gamma 3 protein-coding 88 0.01049
-10369 CACNG2 calcium voltage-gated channel auxiliary subunit gamma 2 protein-coding 44 0.005246
-10370 CITED2 Cbp/p300 interacting transactivator with Glu/Asp rich carboxy-terminal domain 2 protein-coding 29 0.003457
-10371 SEMA3A semaphorin 3A protein-coding 161 0.01919
-10376 TUBA1B tubulin alpha 1b protein-coding 32 0.003815
-10379 IRF9 interferon regulatory factor 9 protein-coding 45 0.005365
-10380 BPNT1 3'(2'), 5'-bisphosphate nucleotidase 1 protein-coding 70 0.008345
-10381 TUBB3 tubulin beta 3 class III protein-coding 61 0.007272
-10382 TUBB4A tubulin beta 4A class IVa protein-coding 85 0.01013
-10383 TUBB4B tubulin beta 4B class IVb protein-coding 48 0.005722
-10384 BTN3A3 butyrophilin subfamily 3 member A3 protein-coding 90 0.01073
-10385 BTN2A2 butyrophilin subfamily 2 member A2 protein-coding 83 0.009895
-10388 SYCP2 synaptonemal complex protein 2 protein-coding 243 0.02897
-10389 SCML2 Scm polycomb group protein like 2 protein-coding 93 0.01109
-10390 CEPT1 choline/ethanolamine phosphotransferase 1 protein-coding 43 0.005126
-10391 CORO2B coronin 2B protein-coding 75 0.008941
-10392 NOD1 nucleotide binding oligomerization domain containing 1 protein-coding 104 0.0124
-10393 ANAPC10 anaphase promoting complex subunit 10 protein-coding 18 0.002146
-10394 PRG3 proteoglycan 3, pro eosinophil major basic protein 2 protein-coding 33 0.003934
-10395 DLC1 DLC1 Rho GTPase activating protein protein-coding 286 0.0341
-10396 ATP8A1 ATPase phospholipid transporting 8A1 protein-coding 140 0.01669
-10397 NDRG1 N-myc downstream regulated 1 protein-coding 90 0.01073
-10398 MYL9 myosin light chain 9 protein-coding 29 0.003457
-10399 RACK1 receptor for activated C kinase 1 protein-coding 35 0.004173
-10400 PEMT phosphatidylethanolamine N-methyltransferase protein-coding 21 0.002504
-10401 PIAS3 protein inhibitor of activated STAT 3 protein-coding 66 0.007868
-10402 ST3GAL6 ST3 beta-galactoside alpha-2,3-sialyltransferase 6 protein-coding 58 0.006915
-10403 NDC80 NDC80, kinetochore complex component protein-coding 80 0.009537
-10404 CPQ carboxypeptidase Q protein-coding 89 0.01061
-10406 WFDC2 WAP four-disulfide core domain 2 protein-coding 12 0.001431
-10407 SPAG11B sperm associated antigen 11B protein-coding 27 0.003219
-10409 BASP1 brain abundant membrane attached signal protein 1 protein-coding 32 0.003815
-10410 IFITM3 interferon induced transmembrane protein 3 protein-coding 12 0.001431
-10411 RAPGEF3 Rap guanine nucleotide exchange factor 3 protein-coding 80 0.009537
-10412 NSA2 NSA2, ribosome biogenesis homolog protein-coding 28 0.003338
-10413 YAP1 Yes associated protein 1 protein-coding 48 0.005722
-10417 SPON2 spondin 2 protein-coding 27 0.003219
-10418 SPON1 spondin 1 protein-coding 64 0.00763
-10419 PRMT5 protein arginine methyltransferase 5 protein-coding 56 0.006676
-10420 TESK2 testis associated actin remodelling kinase 2 protein-coding 73 0.008703
-10421 CD2BP2 CD2 cytoplasmic tail binding protein 2 protein-coding 46 0.005484
-10422 UBAC1 UBA domain containing 1 protein-coding 39 0.004649
-10423 CDIPT CDP-diacylglycerol--inositol 3-phosphatidyltransferase protein-coding 24 0.002861
-10424 PGRMC2 progesterone receptor membrane component 2 protein-coding 13 0.00155
-10425 ARIH2 ariadne RBR E3 ubiquitin protein ligase 2 protein-coding 62 0.007392
-10426 TUBGCP3 tubulin gamma complex associated protein 3 protein-coding 108 0.01288
-10427 SEC24B SEC24 homolog B, COPII coat complex component protein-coding 123 0.01466
-10428 CFDP1 craniofacial development protein 1 protein-coding 21 0.002504
-10430 TMEM147 transmembrane protein 147 protein-coding 22 0.002623
-10432 RBM14 RNA binding motif protein 14 protein-coding 63 0.007511
-10434 LYPLA1 lysophospholipase I protein-coding 17 0.002027
-10435 CDC42EP2 CDC42 effector protein 2 protein-coding 16 0.001907
-10436 EMG1 EMG1, N1-specific pseudouridine methyltransferase protein-coding 23 0.002742
-10437 IFI30 IFI30, lysosomal thiol reductase protein-coding 25 0.00298
-10438 C1D C1D nuclear receptor corepressor protein-coding 405 0.04828
-10439 OLFM1 olfactomedin 1 protein-coding 91 0.01085
-10440 TIMM17A translocase of inner mitochondrial membrane 17A protein-coding 28 0.003338
-10443 N4BP2L2 NEDD4 binding protein 2 like 2 protein-coding 92 0.01097
-10444 ZER1 zyg-11 related cell cycle regulator protein-coding 66 0.007868
-10445 MCRS1 microspherule protein 1 protein-coding 59 0.007034
-10446 LRRN2 leucine rich repeat neuronal 2 protein-coding 107 0.01276
-10447 FAM3C family with sequence similarity 3 member C protein-coding 26 0.0031
-10449 ACAA2 acetyl-CoA acyltransferase 2 protein-coding 38 0.00453
-10450 PPIE peptidylprolyl isomerase E protein-coding 40 0.004769
-10451 VAV3 vav guanine nucleotide exchange factor 3 protein-coding 133 0.01586
-10452 TOMM40 translocase of outer mitochondrial membrane 40 protein-coding 18 0.002146
-10454 TAB1 TGF-beta activated kinase 1 (MAP3K7) binding protein 1 protein-coding 59 0.007034
-10455 ECI2 enoyl-CoA delta isomerase 2 protein-coding 58 0.006915
-10456 HAX1 HCLS1 associated protein X-1 protein-coding 48 0.005722
-10457 GPNMB glycoprotein nmb protein-coding 87 0.01037
-10458 BAIAP2 BAI1 associated protein 2 protein-coding 66 0.007868
-10459 MAD2L2 mitotic arrest deficient 2 like 2 protein-coding 21 0.002504
-10460 TACC3 transforming acidic coiled-coil containing protein 3 protein-coding 82 0.009776
-10461 MERTK MER proto-oncogene, tyrosine kinase protein-coding 114 0.01359
-10462 CLEC10A C-type lectin domain containing 10A protein-coding 33 0.003934
-10463 SLC30A9 solute carrier family 30 member 9 protein-coding 77 0.00918
-10464 PIBF1 progesterone immunomodulatory binding factor 1 protein-coding 97 0.01156
-10465 PPIH peptidylprolyl isomerase H protein-coding 16 0.001907
-10466 COG5 component of oligomeric golgi complex 5 protein-coding 99 0.0118
-10467 ZNHIT1 zinc finger HIT-type containing 1 protein-coding 35 0.004173
-10468 FST follistatin protein-coding 44 0.005246
-10469 TIMM44 translocase of inner mitochondrial membrane 44 protein-coding 52 0.006199
-10471 PFDN6 prefoldin subunit 6 protein-coding 11 0.001311
-10472 ZBTB18 zinc finger and BTB domain containing 18 protein-coding 76 0.009061
-10473 HMGN4 high mobility group nucleosomal binding domain 4 protein-coding 14 0.001669
-10474 TADA3 transcriptional adaptor 3 protein-coding 48 0.005722
-10475 TRIM38 tripartite motif containing 38 protein-coding 60 0.007153
-10476 ATP5PD ATP synthase peripheral stalk subunit d protein-coding 14 0.001669
-10477 UBE2E3 ubiquitin conjugating enzyme E2 E3 protein-coding 37 0.004411
-10478 SLC25A17 solute carrier family 25 member 17 protein-coding 33 0.003934
-10479 SLC9A6 solute carrier family 9 member A6 protein-coding 89 0.01061
-10480 EIF3M eukaryotic translation initiation factor 3 subunit M protein-coding 45 0.005365
-10481 HOXB13 homeobox B13 protein-coding 47 0.005603
-10482 NXF1 nuclear RNA export factor 1 protein-coding 97 0.01156
-10483 SEC23B Sec23 homolog B, coat complex II component protein-coding 91 0.01085
-10484 SEC23A Sec23 homolog A, coat complex II component protein-coding 97 0.01156
-10485 C1orf61 chromosome 1 open reading frame 61 protein-coding 22 0.002623
-10486 CAP2 cyclase associated actin cytoskeleton regulatory protein 2 protein-coding 48 0.005722
-10487 CAP1 cyclase associated actin cytoskeleton regulatory protein 1 protein-coding 51 0.00608
-10488 CREB3 cAMP responsive element binding protein 3 protein-coding 47 0.005603
-10489 LRRC41 leucine rich repeat containing 41 protein-coding 79 0.009418
-10490 VTI1B vesicle transport through interaction with t-SNAREs 1B protein-coding 28 0.003338
-10491 CRTAP cartilage associated protein protein-coding 26 0.0031
-10492 SYNCRIP synaptotagmin binding cytoplasmic RNA interacting protein protein-coding 93 0.01109
-10493 VAT1 vesicle amine transport 1 protein-coding 27 0.003219
-10494 STK25 serine/threonine kinase 25 protein-coding 37 0.004411
-10495 ENOX2 ecto-NOX disulfide-thiol exchanger 2 protein-coding 106 0.01264
-10497 UNC13B unc-13 homolog B protein-coding 165 0.01967
-10498 CARM1 coactivator associated arginine methyltransferase 1 protein-coding 47 0.005603
-10499 NCOA2 nuclear receptor coactivator 2 protein-coding 299 0.03565
-10500 SEMA6C semaphorin 6C protein-coding 95 0.01133
-10501 SEMA6B semaphorin 6B protein-coding 83 0.009895
-10505 SEMA4F ssemaphorin 4F protein-coding 96 0.01144
-10507 SEMA4D semaphorin 4D protein-coding 86 0.01025
-10509 SEMA4B semaphorin 4B protein-coding 76 0.009061
-10512 SEMA3C semaphorin 3C protein-coding 141 0.01681
-10513 APPBP2 amyloid beta precursor protein binding protein 2 protein-coding 57 0.006795
-10514 MYBBP1A MYB binding protein 1a protein-coding 107 0.01276
-10516 FBLN5 fibulin 5 protein-coding 55 0.006557
-10517 FBXW10 F-box and WD repeat domain containing 10 protein-coding 106 0.01264
-10518 CIB2 calcium and integrin binding family member 2 protein-coding 22 0.002623
-10519 CIB1 calcium and integrin binding 1 protein-coding 17 0.002027
-10520 ZNF211 zinc finger protein 211 protein-coding 76 0.009061
-10521 DDX17 DEAD-box helicase 17 protein-coding 86 0.01025
-10522 DEAF1 DEAF1, transcription factor protein-coding 107 0.01276
-10523 CHERP calcium homeostasis endoplasmic reticulum protein protein-coding 103 0.01228
-10524 KAT5 lysine acetyltransferase 5 protein-coding 59 0.007034
-10525 HYOU1 hypoxia up-regulated 1 protein-coding 108 0.01288
-10526 IPO8 importin 8 protein-coding 120 0.01431
-10527 IPO7 importin 7 protein-coding 127 0.01514
-10528 NOP56 NOP56 ribonucleoprotein protein-coding 74 0.008822
-10529 NEBL nebulette protein-coding 157 0.01872
-10531 PITRM1 pitrilysin metallopeptidase 1 protein-coding 87 0.01037
-10533 ATG7 autophagy related 7 protein-coding 74 0.008822
-10534 SSSCA1 Sjogren syndrome/scleroderma autoantigen 1 protein-coding 15 0.001788
-10535 RNASEH2A ribonuclease H2 subunit A protein-coding 32 0.003815
-10536 P3H3 prolyl 3-hydroxylase 3 protein-coding 75 0.008941
-10537 UBD ubiquitin D protein-coding 30 0.003577
-10538 BATF basic leucine zipper ATF-like transcription factor protein-coding 23 0.002742
-10539 GLRX3 glutaredoxin 3 protein-coding 53 0.006319
-10540 DCTN2 dynactin subunit 2 protein-coding 36 0.004292
-10541 ANP32B acidic nuclear phosphoprotein 32 family member B protein-coding 23 0.002742
-10542 LAMTOR5 late endosomal/lysosomal adaptor, MAPK and MTOR activator 5 protein-coding 22 0.002623
-10544 PROCR protein C receptor protein-coding 32 0.003815
-10548 TM9SF1 transmembrane 9 superfamily member 1 protein-coding 57 0.006795
-10549 PRDX4 peroxiredoxin 4 protein-coding 37 0.004411
-10550 ARL6IP5 ADP ribosylation factor like GTPase 6 interacting protein 5 protein-coding 21 0.002504
-10551 AGR2 anterior gradient 2, protein disulphide isomerase family member protein-coding 23 0.002742
-10552 ARPC1A actin related protein 2/3 complex subunit 1A protein-coding 51 0.00608
-10553 HTATIP2 HIV-1 Tat interactive protein 2 protein-coding 22 0.002623
-10554 AGPAT1 1-acylglycerol-3-phosphate O-acyltransferase 1 protein-coding 32 0.003815
-10555 AGPAT2 1-acylglycerol-3-phosphate O-acyltransferase 2 protein-coding 24 0.002861
-10556 RPP30 ribonuclease P/MRP subunit p30 protein-coding 26 0.0031
-10557 RPP38 ribonuclease P/MRP subunit p38 protein-coding 33 0.003934
-10558 SPTLC1 serine palmitoyltransferase long chain base subunit 1 protein-coding 56 0.006676
-10559 SLC35A1 solute carrier family 35 member A1 protein-coding 23 0.002742
-10560 SLC19A2 solute carrier family 19 member 2 protein-coding 43 0.005126
-10561 IFI44 interferon induced protein 44 protein-coding 68 0.008107
-10562 OLFM4 olfactomedin 4 protein-coding 98 0.01168
-10563 CXCL13 C-X-C motif chemokine ligand 13 protein-coding 13 0.00155
-10564 ARFGEF2 ADP ribosylation factor guanine nucleotide exchange factor 2 protein-coding 197 0.02349
-10565 ARFGEF1 ADP ribosylation factor guanine nucleotide exchange factor 1 protein-coding 215 0.02563
-10566 AKAP3 A-kinase anchoring protein 3 protein-coding 137 0.01633
-10567 RABAC1 Rab acceptor 1 protein-coding 17 0.002027
-10568 SLC34A2 solute carrier family 34 member 2 protein-coding 101 0.01204
-10569 SLU7 SLU7 homolog, splicing factor protein-coding 70 0.008345
-10570 DPYSL4 dihydropyrimidinase like 4 protein-coding 93 0.01109
-10572 SIVA1 SIVA1 apoptosis inducing factor protein-coding 14 0.001669
-10573 MRPL28 mitochondrial ribosomal protein L28 protein-coding 26 0.0031
-10574 CCT7 chaperonin containing TCP1 subunit 7 protein-coding 57 0.006795
-10575 CCT4 chaperonin containing TCP1 subunit 4 protein-coding 49 0.005842
-10576 CCT2 chaperonin containing TCP1 subunit 2 protein-coding 66 0.007868
-10577 NPC2 NPC intracellular cholesterol transporter 2 protein-coding 13 0.00155
-10578 GNLY granulysin protein-coding 20 0.002384
-10579 TACC2 transforming acidic coiled-coil containing protein 2 protein-coding 260 0.031
-10580 SORBS1 sorbin and SH3 domain containing 1 protein-coding 124 0.01478
-10581 IFITM2 interferon induced transmembrane protein 2 protein-coding 12 0.001431
-10584 COLEC10 collectin subfamily member 10 protein-coding 41 0.004888
-10585 POMT1 protein O-mannosyltransferase 1 protein-coding 73 0.008703
-10586 MAB21L2 mab-21 like 2 protein-coding 65 0.007749
-10587 TXNRD2 thioredoxin reductase 2 protein-coding 47 0.005603
-10589 DRAP1 DR1 associated protein 1 protein-coding 26 0.0031
-10590 SCGN secretagogin, EF-hand calcium binding protein protein-coding 52 0.006199
-10591 DNPH1 2'-deoxynucleoside 5'-phosphate N-hydrolase 1 protein-coding 8 0.0009537
-10592 SMC2 structural maintenance of chromosomes 2 protein-coding 152 0.01812
-10594 PRPF8 pre-mRNA processing factor 8 protein-coding 192 0.02289
-10595 ERN2 endoplasmic reticulum to nucleus signaling 2 protein-coding 152 0.01812
-10597 TRAPPC2B trafficking protein particle complex 2B protein-coding 27 0.003219
-10598 AHSA1 activator of HSP90 ATPase activity 1 protein-coding 43 0.005126
-10599 SLCO1B1 solute carrier organic anion transporter family member 1B1 protein-coding 149 0.01776
-10600 USP16 ubiquitin specific peptidase 16 protein-coding 87 0.01037
-10602 CDC42EP3 CDC42 effector protein 3 protein-coding 22 0.002623
-10603 SH2B2 SH2B adaptor protein 2 protein-coding 44 0.005246
-10605 PAIP1 poly(A) binding protein interacting protein 1 protein-coding 63 0.007511
-10606 PAICS phosphoribosylaminoimidazole carboxylase and phosphoribosylaminoimidazolesuccinocarboxamide synthase protein-coding 28 0.003338
-10607 TBL3 transducin beta like 3 protein-coding 71 0.008464
-10608 MXD4 MAX dimerization protein 4 protein-coding 16 0.001907
-10609 P3H4 prolyl 3-hydroxylase family member 4 (non-enzymatic) protein-coding 31 0.003696
-10610 ST6GALNAC2 ST6 N-acetylgalactosaminide alpha-2,6-sialyltransferase 2 protein-coding 37 0.004411
-10611 PDLIM5 PDZ and LIM domain 5 protein-coding 62 0.007392
-10612 TRIM3 tripartite motif containing 3 protein-coding 99 0.0118
-10613 ERLIN1 ER lipid raft associated 1 protein-coding 32 0.003815
-10614 HEXIM1 hexamethylene bisacetamide inducible 1 protein-coding 93 0.01109
-10615 SPAG5 sperm associated antigen 5 protein-coding 109 0.01299
-10616 RBCK1 RANBP2-type and C3HC4-type zinc finger containing 1 protein-coding 44 0.005246
-10617 STAMBP STAM binding protein protein-coding 47 0.005603
-10618 TGOLN2 trans-golgi network protein 2 protein-coding 51 0.00608
-10620 ARID3B AT-rich interaction domain 3B protein-coding 62 0.007392
-10621 POLR3F RNA polymerase III subunit F protein-coding 24 0.002861
-10622 POLR3G RNA polymerase III subunit G protein-coding 30 0.003577
-10623 POLR3C RNA polymerase III subunit C protein-coding 49 0.005842
-10625 IVNS1ABP influenza virus NS1A binding protein protein-coding 84 0.01001
-10626 TRIM16 tripartite motif containing 16 protein-coding 27 0.003219
-10627 MYL12A myosin light chain 12A protein-coding 15 0.001788
-10628 TXNIP thioredoxin interacting protein protein-coding 67 0.007988
-10629 TAF6L TATA-box binding protein associated factor 6 like protein-coding 61 0.007272
-10630 PDPN podoplanin protein-coding 41 0.004888
-10631 POSTN periostin protein-coding 184 0.02194
-10632 ATP5MG ATP synthase membrane subunit g protein-coding 18 0.002146
-10633 RASL10A RAS like family 10 member A protein-coding 11 0.001311
-10634 GAS2L1 growth arrest specific 2 like 1 protein-coding 31 0.003696
-10635 RAD51AP1 RAD51 associated protein 1 protein-coding 46 0.005484
-10636 RGS14 regulator of G protein signaling 14 protein-coding 55 0.006557
-10637 LEFTY1 left-right determination factor 1 protein-coding 32 0.003815
-10638 SPHAR S-phase response (cyclin related) protein-coding 9 0.001073
-10640 EXOC5 exocyst complex component 5 protein-coding 68 0.008107
-10641 NPRL2 NPR2 like, GATOR1 complex subunit protein-coding 139 0.01657
-10642 IGF2BP1 insulin like growth factor 2 mRNA binding protein 1 protein-coding 184 0.02194
-10643 IGF2BP3 insulin like growth factor 2 mRNA binding protein 3 protein-coding 88 0.01049
-10644 IGF2BP2 insulin like growth factor 2 mRNA binding protein 2 protein-coding 66 0.007868
-10645 CAMKK2 calcium/calmodulin dependent protein kinase kinase 2 protein-coding 65 0.007749
-10647 SCGB1D2 secretoglobin family 1D member 2 protein-coding 16 0.001907
-10648 SCGB1D1 secretoglobin family 1D member 1 protein-coding 55 0.006557
-10650 PRELID3A PRELI domain containing 3A protein-coding 14 0.001669
-10651 MTX2 metaxin 2 protein-coding 26 0.0031
-10652 YKT6 YKT6 v-SNARE homolog protein-coding 19 0.002265
-10653 SPINT2 serine peptidase inhibitor, Kunitz type 2 protein-coding 36 0.004292
-10654 PMVK phosphomevalonate kinase protein-coding 23 0.002742
-10655 DMRT2 doublesex and mab-3 related transcription factor 2 protein-coding 56 0.006676
-10656 KHDRBS3 KH RNA binding domain containing, signal transduction associated 3 protein-coding 63 0.007511
-10657 KHDRBS1 KH RNA binding domain containing, signal transduction associated 1 protein-coding 37 0.004411
-10658 CELF1 CUGBP Elav-like family member 1 protein-coding 53 0.006319
-10659 CELF2 CUGBP Elav-like family member 2 protein-coding 68 0.008107
-10660 LBX1 ladybird homeobox 1 protein-coding 22 0.002623
-10661 KLF1 Kruppel like factor 1 protein-coding 16 0.001907
-10663 CXCR6 C-X-C motif chemokine receptor 6 protein-coding 31 0.003696
-10664 CTCF CCCTC-binding factor protein-coding 224 0.0267
-10665 C6orf10 chromosome 6 open reading frame 10 protein-coding 62 0.007392
-10666 CD226 CD226 molecule protein-coding 66 0.007868
-10667 FARS2 phenylalanyl-tRNA synthetase 2, mitochondrial protein-coding 50 0.005961
-10668 CGRRF1 cell growth regulator with ring finger domain 1 protein-coding 30 0.003577
-10669 CGREF1 cell growth regulator with EF-hand domain 1 protein-coding 24 0.002861
-10670 RRAGA Ras related GTP binding A protein-coding 30 0.003577
-10671 DCTN6 dynactin subunit 6 protein-coding 20 0.002384
-10672 GNA13 G protein subunit alpha 13 protein-coding 58 0.006915
-10673 TNFSF13B TNF superfamily member 13b protein-coding 91 0.01085
-10675 CSPG5 chondroitin sulfate proteoglycan 5 protein-coding 54 0.006438
-10677 AVIL advillin protein-coding 72 0.008584
-10678 B3GNT2 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 2 protein-coding 88 0.01049
-10681 GNB5 G protein subunit beta 5 protein-coding 47 0.005603
-10682 EBP emopamil binding protein (sterol isomerase) protein-coding 27 0.003219
-10683 DLL3 delta like canonical Notch ligand 3 protein-coding 64 0.00763
-10686 CLDN16 claudin 16 protein-coding 62 0.007392
-10687 PNMA2 PNMA family member 2 protein-coding 60 0.007153
-10690 FUT9 fucosyltransferase 9 protein-coding 109 0.01299
-10691 GMEB1 glucocorticoid modulatory element binding protein 1 protein-coding 44 0.005246
-10692 RRH retinal pigment epithelium-derived rhodopsin homolog protein-coding 39 0.004649
-10693 CCT6B chaperonin containing TCP1 subunit 6B protein-coding 74 0.008822
-10694 CCT8 chaperonin containing TCP1 subunit 8 protein-coding 38 0.00453
-10695 CNPY3 canopy FGF signaling regulator 3 protein-coding 21 0.002504
-10699 CORIN corin, serine peptidase protein-coding 141 0.01681
-10712 FAM189B family with sequence similarity 189 member B protein-coding 56 0.006676
-10713 USP39 ubiquitin specific peptidase 39 protein-coding 42 0.005007
-10714 POLD3 DNA polymerase delta 3, accessory subunit protein-coding 53 0.006319
-10715 CERS1 ceramide synthase 1 protein-coding 23 0.002742
-10716 TBR1 T-box, brain 1 protein-coding 79 0.009418
-10717 AP4B1 adaptor related protein complex 4 beta 1 subunit protein-coding 83 0.009895
-10718 NRG3 neuregulin 3 protein-coding 184 0.02194
-10720 UGT2B11 UDP glucuronosyltransferase family 2 member B11 protein-coding 106 0.01264
-10721 POLQ DNA polymerase theta protein-coding 314 0.03743
-10723 SLC12A7 solute carrier family 12 member 7 protein-coding 161 0.01919
-10724 MGEA5 meningioma expressed antigen 5 (hyaluronidase) protein-coding 86 0.01025
-10725 NFAT5 nuclear factor of activated T cells 5 protein-coding 120 0.01431
-10726 NUDC nuclear distribution C, dynein complex regulator protein-coding 32 0.003815
-10728 PTGES3 prostaglandin E synthase 3 protein-coding 13 0.00155
-10730 YME1L1 YME1 like 1 ATPase protein-coding 108 0.01288
-10732 TCFL5 transcription factor like 5 protein-coding 52 0.006199
-10733 PLK4 polo like kinase 4 protein-coding 98 0.01168
-10734 STAG3 stromal antigen 3 protein-coding 129 0.01538
-10735 STAG2 stromal antigen 2 protein-coding 227 0.02706
-10736 SIX2 SIX homeobox 2 protein-coding 44 0.005246
-10737 RFPL3S RFPL3 antisense ncRNA 7 0.0008345
-10738 RFPL3 ret finger protein like 3 protein-coding 63 0.007511
-10739 RFPL2 ret finger protein like 2 protein-coding 58 0.006915
-10741 RBBP9 RB binding protein 9, serine hydrolase protein-coding 22 0.002623
-10742 RAI2 retinoic acid induced 2 protein-coding 80 0.009537
-10743 RAI1 retinoic acid induced 1 protein-coding 222 0.02647
-10744 PTTG2 pituitary tumor-transforming 2 protein-coding 22 0.002623
-10745 PHTF1 putative homeodomain transcription factor 1 protein-coding 81 0.009657
-10746 MAP3K2 mitogen-activated protein kinase kinase kinase 2 protein-coding 66 0.007868
-10747 MASP2 mannan binding lectin serine peptidase 2 protein-coding 81 0.009657
-10748 KLRA1P killer cell lectin like receptor A1, pseudogene pseudo 27 0.003219
-10749 KIF1C kinesin family member 1C protein-coding 98 0.01168
-10750 GRAP GRB2 related adaptor protein protein-coding 14 0.001669
-10752 CHL1 cell adhesion molecule L1 like protein-coding 248 0.02957
-10753 CAPN9 calpain 9 protein-coding 82 0.009776
-10755 GIPC1 GIPC PDZ domain containing family member 1 protein-coding 44 0.005246
-10758 TRAF3IP2 TRAF3 interacting protein 2 protein-coding 62 0.007392
-10761 PLAC1 placenta specific 1 protein-coding 26 0.0031
-10762 NUP50 nucleoporin 50 protein-coding 52 0.006199
-10763 NES nestin protein-coding 217 0.02587
-10765 KDM5B lysine demethylase 5B protein-coding 174 0.02074
-10766 TOB2 transducer of ERBB2, 2 protein-coding 35 0.004173
-10767 HBS1L HBS1 like translational GTPase protein-coding 77 0.00918
-10768 AHCYL1 adenosylhomocysteinase like 1 protein-coding 50 0.005961
-10769 PLK2 polo like kinase 2 protein-coding 82 0.009776
-10771 ZMYND11 zinc finger MYND-type containing 11 protein-coding 62 0.007392
-10772 SRSF10 serine and arginine rich splicing factor 10 protein-coding 2 0.0002384
-10773 ZBTB6 zinc finger and BTB domain containing 6 protein-coding 46 0.005484
-10775 POP4 POP4 homolog, ribonuclease P/MRP subunit protein-coding 27 0.003219
-10776 ARPP19 cAMP regulated phosphoprotein 19 protein-coding 13 0.00155
-10777 ARPP21 cAMP regulated phosphoprotein 21 protein-coding 175 0.02086
-10778 ZNF271P zinc finger protein 271, pseudogene pseudo 119 0.01419
-10780 ZNF234 zinc finger protein 234 protein-coding 91 0.01085
-10781 ZNF266 zinc finger protein 266 protein-coding 71 0.008464
-10782 ZNF274 zinc finger protein 274 protein-coding 77 0.00918
-10783 NEK6 NIMA related kinase 6 protein-coding 35 0.004173
-10785 WDR4 WD repeat domain 4 protein-coding 43 0.005126
-10786 SLC17A3 solute carrier family 17 member 3 protein-coding 99 0.0118
-10787 NCKAP1 NCK associated protein 1 protein-coding 120 0.01431
-10788 IQGAP2 IQ motif containing GTPase activating protein 2 protein-coding 170 0.02027
-10791 VAMP5 vesicle associated membrane protein 5 protein-coding 18 0.002146
-10793 ZNF273 zinc finger protein 273 protein-coding 66 0.007868
-10794 ZNF460 zinc finger protein 460 protein-coding 75 0.008941
-10795 ZNF268 zinc finger protein 268 protein-coding 79 0.009418
-10797 MTHFD2 methylenetetrahydrofolate dehydrogenase (NADP+ dependent) 2, methenyltetrahydrofolate cyclohydrolase protein-coding 45 0.005365
-10798 OR5I1 olfactory receptor family 5 subfamily I member 1 protein-coding 117 0.01395
-10799 RPP40 ribonuclease P/MRP subunit p40 protein-coding 45 0.005365
-10800 CYSLTR1 cysteinyl leukotriene receptor 1 protein-coding 65 0.007749
-10801 SEPT9 septin 9 protein-coding 97 0.01156
-10802 SEC24A SEC24 homolog A, COPII coat complex component protein-coding 100 0.01192
-10803 CCR9 C-C motif chemokine receptor 9 protein-coding 41 0.004888
-10804 GJB6 gap junction protein beta 6 protein-coding 37 0.004411
-10806 SDCCAG8 serologically defined colon cancer antigen 8 protein-coding 101 0.01204
-10807 SDCCAG3 serologically defined colon cancer antigen 3 protein-coding 55 0.006557
-10808 HSPH1 heat shock protein family H (Hsp110) member 1 protein-coding 98 0.01168
-10809 STARD10 StAR related lipid transfer domain containing 10 protein-coding 36 0.004292
-10810 WASF3 WAS protein family member 3 protein-coding 102 0.01216
-10811 NOXA1 NADPH oxidase activator 1 protein-coding 38 0.00453
-10813 UTP14A UTP14A, small subunit processome component protein-coding 97 0.01156
-10814 CPLX2 complexin 2 protein-coding 19 0.002265
-10815 CPLX1 complexin 1 protein-coding 25 0.00298
-10816 SPINT3 serine peptidase inhibitor, Kunitz type 3 protein-coding 7 0.0008345
-10817 FRS3 fibroblast growth factor receptor substrate 3 protein-coding 72 0.008584
-10818 FRS2 fibroblast growth factor receptor substrate 2 protein-coding 60 0.007153
-10825 NEU3 neuraminidase 3 protein-coding 46 0.005484
-10826 FAXDC2 fatty acid hydroxylase domain containing 2 protein-coding 32 0.003815
-10827 FAM114A2 family with sequence similarity 114 member A2 protein-coding 57 0.006795
-10838 ZNF275 zinc finger protein 275 protein-coding 48 0.005722
-10840 ALDH1L1 aldehyde dehydrogenase 1 family member L1 protein-coding 136 0.01621
-10841 FTCD formimidoyltransferase cyclodeaminase protein-coding 74 0.008822
-10842 PPP1R17 protein phosphatase 1 regulatory subunit 17 protein-coding 42 0.005007
-10844 TUBGCP2 tubulin gamma complex associated protein 2 protein-coding 109 0.01299
-10845 CLPX caseinolytic mitochondrial matrix peptidase chaperone subunit protein-coding 59 0.007034
-10846 PDE10A phosphodiesterase 10A protein-coding 174 0.02074
-10847 SRCAP Snf2 related CREBBP activator protein protein-coding 363 0.04328
-10848 PPP1R13L protein phosphatase 1 regulatory subunit 13 like protein-coding 90 0.01073
-10849 CD3EAP CD3e molecule associated protein protein-coding 110 0.01311
-10850 CCL27 C-C motif chemokine ligand 27 protein-coding 13 0.00155
-10855 HPSE heparanase protein-coding 66 0.007868
-10856 RUVBL2 RuvB like AAA ATPase 2 protein-coding 56 0.006676
-10857 PGRMC1 progesterone receptor membrane component 1 protein-coding 28 0.003338
-10858 CYP46A1 cytochrome P450 family 46 subfamily A member 1 protein-coding 74 0.008822
-10859 LILRB1 leukocyte immunoglobulin like receptor B1 protein-coding 156 0.0186
-10861 SLC26A1 solute carrier family 26 member 1 protein-coding 89 0.01061
-10863 ADAM28 ADAM metallopeptidase domain 28 protein-coding 112 0.01335
-10864 SLC22A7 solute carrier family 22 member 7 protein-coding 88 0.01049
-10865 ARID5A AT-rich interaction domain 5A protein-coding 56 0.006676
-10866 HCP5 HLA complex P5 (non-protein coding) ncRNA 39 0.004649
-10867 TSPAN9 tetraspanin 9 protein-coding 25 0.00298
-10868 USP20 ubiquitin specific peptidase 20 protein-coding 89 0.01061
-10869 USP19 ubiquitin specific peptidase 19 protein-coding 120 0.01431
-10870 HCST hematopoietic cell signal transducer protein-coding 12 0.001431
-10871 CD300C CD300c molecule protein-coding 46 0.005484
-10873 ME3 malic enzyme 3 protein-coding 78 0.009299
-10874 NMU neuromedin U protein-coding 19 0.002265
-10875 FGL2 fibrinogen like 2 protein-coding 51 0.00608
-10876 EDDM3A epididymal protein 3A protein-coding 23 0.002742
-10877 CFHR4 complement factor H related 4 protein-coding 156 0.0186
-10878 CFHR3 complement factor H related 3 protein-coding 66 0.007868
-10879 SMR3B submaxillary gland androgen regulated protein 3B protein-coding 21 0.002504
-10880 ACTL7B actin like 7B protein-coding 72 0.008584
-10881 ACTL7A actin like 7A protein-coding 58 0.006915
-10882 C1QL1 complement C1q like 1 protein-coding 23 0.002742
-10884 MRPS30 mitochondrial ribosomal protein S30 protein-coding 57 0.006795
-10885 WDR3 WD repeat domain 3 protein-coding 89 0.01061
-10886 NPFFR2 neuropeptide FF receptor 2 protein-coding 119 0.01419
-10887 PROKR1 prokineticin receptor 1 protein-coding 78 0.009299
-10888 GPR83 G protein-coupled receptor 83 protein-coding 80 0.009537
-10890 RAB10 RAB10, member RAS oncogene family protein-coding 22 0.002623
-10891 PPARGC1A PPARG coactivator 1 alpha protein-coding 139 0.01657
-10892 MALT1 MALT1 paracaspase protein-coding 71 0.008464
-10893 MMP24 matrix metallopeptidase 24 protein-coding 99 0.0118
-10894 LYVE1 lymphatic vessel endothelial hyaluronan receptor 1 protein-coding 29 0.003457
-10895 PPBPP2 pro-platelet basic protein pseudogene 2 pseudo 11 0.001311
-10896 OCLM oculomedin protein-coding 4 0.0004769
-10897 YIF1A Yip1 interacting factor homolog A, membrane trafficking protein protein-coding 43 0.005126
-10898 CPSF4 cleavage and polyadenylation specific factor 4 protein-coding 31 0.003696
-10899 JTB jumping translocation breakpoint protein-coding 17 0.002027
-10900 RUNDC3A RUN domain containing 3A protein-coding 36 0.004292
-10901 DHRS4 dehydrogenase/reductase 4 protein-coding 27 0.003219
-10902 BRD8 bromodomain containing 8 protein-coding 153 0.01824
-10903 MTMR11 myotubularin related protein 11 protein-coding 89 0.01061
-10904 BLCAP bladder cancer associated protein protein-coding 9 0.001073
-10905 MAN1A2 mannosidase alpha class 1A member 2 protein-coding 81 0.009657
-10906 TRAFD1 TRAF-type zinc finger domain containing 1 protein-coding 48 0.005722
-10907 TXNL4A thioredoxin like 4A protein-coding 13 0.00155
-10908 PNPLA6 patatin like phospholipase domain containing 6 protein-coding 144 0.01717
-10910 SUGT1 SGT1 homolog, MIS12 kinetochore complex assembly cochaperone protein-coding 39 0.004649
-10911 UTS2 urotensin 2 protein-coding 22 0.002623
-10912 GADD45G growth arrest and DNA damage inducible gamma protein-coding 12 0.001431
-10913 EDAR ectodysplasin A receptor protein-coding 74 0.008822
-10914 PAPOLA poly(A) polymerase alpha protein-coding 92 0.01097
-10915 TCERG1 transcription elongation regulator 1 protein-coding 146 0.01741
-10916 MAGED2 MAGE family member D2 protein-coding 100 0.01192
-10917 BTNL3 butyrophilin like 3 protein-coding 67 0.007988
-10919 EHMT2 euchromatic histone lysine methyltransferase 2 protein-coding 124 0.01478
-10920 COPS8 COP9 signalosome subunit 8 protein-coding 20 0.002384
-10921 RNPS1 RNA binding protein with serine rich domain 1 protein-coding 29 0.003457
-10922 FASTK Fas activated serine/threonine kinase protein-coding 53 0.006319
-10923 SUB1 SUB1 homolog, transcriptional regulator protein-coding 10 0.001192
-10924 SMPDL3A sphingomyelin phosphodiesterase acid like 3A protein-coding 54 0.006438
-10926 DBF4 DBF4 zinc finger protein-coding 79 0.009418
-10927 SPIN1 spindlin 1 protein-coding 37 0.004411
-10928 RALBP1 ralA binding protein 1 protein-coding 57 0.006795
-10929 SRSF8 serine and arginine rich splicing factor 8 protein-coding 21 0.002504
-10930 APOBEC2 apolipoprotein B mRNA editing enzyme catalytic subunit 2 protein-coding 35 0.004173
-10933 MORF4L1 mortality factor 4 like 1 protein-coding 50 0.005961
-10935 PRDX3 peroxiredoxin 3 protein-coding 22 0.002623
-10936 GPR75 G protein-coupled receptor 75 protein-coding 59 0.007034
-10938 EHD1 EH domain containing 1 protein-coding 59 0.007034
-10939 AFG3L2 AFG3 like matrix AAA peptidase subunit 2 protein-coding 75 0.008941
-10940 POP1 POP1 homolog, ribonuclease P/MRP subunit protein-coding 131 0.01562
-10941 UGT2A1 UDP glucuronosyltransferase family 2 member A1 complex locus protein-coding 108 0.01288
-10942 PRSS21 serine protease 21 protein-coding 37 0.004411
-10943 MSL3 MSL complex subunit 3 protein-coding 82 0.009776
-10944 C11orf58 chromosome 11 open reading frame 58 protein-coding 23 0.002742
-10945 KDELR1 KDEL endoplasmic reticulum protein retention receptor 1 protein-coding 30 0.003577
-10946 SF3A3 splicing factor 3a subunit 3 protein-coding 53 0.006319
-10947 AP3M2 adaptor related protein complex 3 mu 2 subunit protein-coding 58 0.006915
-10948 STARD3 StAR related lipid transfer domain containing 3 protein-coding 47 0.005603
-10949 HNRNPA0 heterogeneous nuclear ribonucleoprotein A0 protein-coding 21 0.002504
-10950 BTG3 BTG anti-proliferation factor 3 protein-coding 31 0.003696
-10951 CBX1 chromobox 1 protein-coding 39 0.004649
-10952 SEC61B Sec61 translocon beta subunit protein-coding 18 0.002146
-10953 TOMM34 translocase of outer mitochondrial membrane 34 protein-coding 39 0.004649
-10954 PDIA5 protein disulfide isomerase family A member 5 protein-coding 70 0.008345
-10955 SERINC3 serine incorporator 3 protein-coding 64 0.00763
-10956 OS9 OS9, endoplasmic reticulum lectin protein-coding 63 0.007511
-10957 PNRC1 proline rich nuclear receptor coactivator 1 protein-coding 31 0.003696
-10959 TMED2 transmembrane p24 trafficking protein 2 protein-coding 26 0.0031
-10960 LMAN2 lectin, mannose binding 2 protein-coding 43 0.005126
-10961 ERP29 endoplasmic reticulum protein 29 protein-coding 24 0.002861
-10962 MLLT11 MLLT11, transcription factor 7 cofactor protein-coding 13 0.00155
-10963 STIP1 stress induced phosphoprotein 1 protein-coding 73 0.008703
-10964 IFI44L interferon induced protein 44 like protein-coding 95 0.01133
-10965 ACOT2 acyl-CoA thioesterase 2 protein-coding 34 0.004053
-10966 RAB40B RAB40B, member RAS oncogene family protein-coding 25 0.00298
-10969 EBNA1BP2 EBNA1 binding protein 2 protein-coding 40 0.004769
-10970 CKAP4 cytoskeleton associated protein 4 protein-coding 58 0.006915
-10971 YWHAQ tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein theta protein-coding 32 0.003815
-10972 TMED10 transmembrane p24 trafficking protein 10 protein-coding 26 0.0031
-10973 ASCC3 activating signal cointegrator 1 complex subunit 3 protein-coding 230 0.02742
-10974 ADIRF adipogenesis regulatory factor protein-coding 9 0.001073
-10975 UQCR11 ubiquinol-cytochrome c reductase, complex III subunit XI protein-coding 6 0.0007153
-10978 CLP1 cleavage and polyadenylation factor I subunit 1 protein-coding 44 0.005246
-10979 FERMT2 fermitin family member 2 protein-coding 65 0.007749
-10980 COPS6 COP9 signalosome subunit 6 protein-coding 39 0.004649
-10981 RAB32 RAB32, member RAS oncogene family protein-coding 24 0.002861
-10982 MAPRE2 microtubule associated protein RP/EB family member 2 protein-coding 431 0.05138
-10983 CCNI cyclin I protein-coding 85 0.01013
-10985 GCN1 GCN1, eIF2 alpha kinase activator homolog protein-coding 250 0.0298
-10987 COPS5 COP9 signalosome subunit 5 protein-coding 38 0.00453
-10988 METAP2 methionyl aminopeptidase 2 protein-coding 332 0.03958
-10989 IMMT inner membrane mitochondrial protein protein-coding 88 0.01049
-10990 LILRB5 leukocyte immunoglobulin like receptor B5 protein-coding 129 0.01538
-10991 SLC38A3 solute carrier family 38 member 3 protein-coding 106 0.01264
-10992 SF3B2 splicing factor 3b subunit 2 protein-coding 100 0.01192
-10993 SDS serine dehydratase protein-coding 43 0.005126
-10994 ILVBL ilvB acetolactate synthase like protein-coding 84 0.01001
-10998 SLC27A5 solute carrier family 27 member 5 protein-coding 89 0.01061
-10999 SLC27A4 solute carrier family 27 member 4 protein-coding 70 0.008345
-11000 SLC27A3 solute carrier family 27 member 3 protein-coding 70 0.008345
-11001 SLC27A2 solute carrier family 27 member 2 protein-coding 69 0.008226
-11004 KIF2C kinesin family member 2C protein-coding 76 0.009061
-11005 SPINK5 serine peptidase inhibitor, Kazal type 5 protein-coding 144 0.01717
-11006 LILRB4 leukocyte immunoglobulin like receptor B4 protein-coding 93 0.01109
-11007 CCDC85B coiled-coil domain containing 85B protein-coding 2 0.0002384
-11009 IL24 interleukin 24 protein-coding 30 0.003577
-11010 GLIPR1 GLI pathogenesis related 1 protein-coding 47 0.005603
-11011 TLK2 tousled like kinase 2 protein-coding 90 0.01073
-11012 KLK11 kallikrein related peptidase 11 protein-coding 42 0.005007
-11013 TMSB15A thymosin beta 15a protein-coding 9 0.001073
-11014 KDELR2 KDEL endoplasmic reticulum protein retention receptor 2 protein-coding 22 0.002623
-11015 KDELR3 KDEL endoplasmic reticulum protein retention receptor 3 protein-coding 26 0.0031
-11016 ATF7 activating transcription factor 7 protein-coding 46 0.005484
-11017 SNRNP27 small nuclear ribonucleoprotein U4/U6.U5 subunit 27 protein-coding 21 0.002504
-11018 TMED1 transmembrane p24 trafficking protein 1 protein-coding 17 0.002027
-11019 LIAS lipoic acid synthetase protein-coding 40 0.004769
-11020 IFT27 intraflagellar transport 27 protein-coding 9 0.001073
-11021 RAB35 RAB35, member RAS oncogene family protein-coding 25 0.00298
-11022 TDRKH tudor and KH domain containing protein-coding 53 0.006319
-11023 VAX1 ventral anterior homeobox 1 protein-coding 44 0.005246
-11024 LILRA1 leukocyte immunoglobulin like receptor A1 protein-coding 113 0.01347
-11025 LILRB3 leukocyte immunoglobulin like receptor B3 protein-coding 68 0.008107
-11026 LILRA3 leukocyte immunoglobulin like receptor A3 protein-coding 73 0.008703
-11027 LILRA2 leukocyte immunoglobulin like receptor A2 protein-coding 114 0.01359
-11029 SERPINB8P1 serpin family B member 8 pseudogene 1 pseudo 73 0.008703
-11030 RBPMS RNA binding protein, mRNA processing factor protein-coding 25 0.00298
-11031 RAB31 RAB31, member RAS oncogene family protein-coding 25 0.00298
-11033 ADAP1 ArfGAP with dual PH domains 1 protein-coding 25 0.00298
-11034 DSTN destrin, actin depolymerizing factor protein-coding 32 0.003815
-11035 RIPK3 receptor interacting serine/threonine kinase 3 protein-coding 51 0.00608
-11036 GTF2A1L general transcription factor IIA subunit 1 like protein-coding 3 0.0003577
-11037 STON1 stonin 1 protein-coding 5 0.0005961
-11040 PIM2 Pim-2 proto-oncogene, serine/threonine kinase protein-coding 40 0.004769
-11041 B4GAT1 beta-1,4-glucuronyltransferase 1 protein-coding 47 0.005603
-11043 MID2 midline 2 protein-coding 91 0.01085
-11044 PAPD7 poly(A) RNA polymerase D7, non-canonical protein-coding 93 0.01109
-11045 UPK1A uroplakin 1A protein-coding 33 0.003934
-11046 SLC35D2 solute carrier family 35 member D2 protein-coding 27 0.003219
-11047 ADRM1 adhesion regulating molecule 1 protein-coding 42 0.005007
-11051 NUDT21 nudix hydrolase 21 protein-coding 16 0.001907
-11052 CPSF6 cleavage and polyadenylation specific factor 6 protein-coding 69 0.008226
-11054 OGFR opioid growth factor receptor protein-coding 48 0.005722
-11055 ZPBP zona pellucida binding protein protein-coding 80 0.009537
-11056 DDX52 DExD-box helicase 52 protein-coding 57 0.006795
-11057 ABHD2 abhydrolase domain containing 2 protein-coding 48 0.005722
-11059 WWP1 WW domain containing E3 ubiquitin protein ligase 1 protein-coding 133 0.01586
-11060 WWP2 WW domain containing E3 ubiquitin protein ligase 2 protein-coding 99 0.0118
-11061 CNMD chondromodulin protein-coding 42 0.005007
-11062 DUS4L dihydrouridine synthase 4 like protein-coding 36 0.004292
-11063 SOX30 SRY-box 30 protein-coding 79 0.009418
-11064 CNTRL centriolin protein-coding 180 0.02146
-11065 UBE2C ubiquitin conjugating enzyme E2 C protein-coding 17 0.002027
-11066 SNRNP35 small nuclear ribonucleoprotein U11/U12 subunit 35 protein-coding 38 0.00453
-11067 DEPP1 DEPP1, autophagy regulator protein-coding 23 0.002742
-11068 CYB561D2 cytochrome b561 family member D2 protein-coding 11 0.001311
-11069 RAPGEF4 Rap guanine nucleotide exchange factor 4 protein-coding 122 0.01454
-11070 TMEM115 transmembrane protein 115 protein-coding 26 0.0031
-11072 DUSP14 dual specificity phosphatase 14 protein-coding 27 0.003219
-11073 TOPBP1 DNA topoisomerase II binding protein 1 protein-coding 146 0.01741
-11074 TRIM31 tripartite motif containing 31 protein-coding 51 0.00608
-11075 STMN2 stathmin 2 protein-coding 16 0.001907
-11076 TPPP tubulin polymerization promoting protein protein-coding 34 0.004053
-11077 HSF2BP heat shock transcription factor 2 binding protein protein-coding 40 0.004769
-11078 TRIOBP TRIO and F-actin binding protein protein-coding 264 0.03147
-11079 RER1 retention in endoplasmic reticulum sorting receptor 1 protein-coding 17 0.002027
-11080 DNAJB4 DnaJ heat shock protein family (Hsp40) member B4 protein-coding 48 0.005722
-11081 KERA keratocan protein-coding 65 0.007749
-11082 ESM1 endothelial cell specific molecule 1 protein-coding 33 0.003934
-11083 DIDO1 death inducer-obliterator 1 protein-coding 329 0.03922
-11085 ADAM30 ADAM metallopeptidase domain 30 protein-coding 108 0.01288
-11086 ADAM29 ADAM metallopeptidase domain 29 protein-coding 177 0.0211
-11091 WDR5 WD repeat domain 5 protein-coding 51 0.00608
-11092 SPACA9 sperm acrosome associated 9 protein-coding 21 0.002504
-11093 ADAMTS13 ADAM metallopeptidase with thrombospondin type 1 motif 13 protein-coding 143 0.01705
-11094 CACFD1 calcium channel flower domain containing 1 protein-coding 19 0.002265
-11095 ADAMTS8 ADAM metallopeptidase with thrombospondin type 1 motif 8 protein-coding 93 0.01109
-11096 ADAMTS5 ADAM metallopeptidase with thrombospondin type 1 motif 5 protein-coding 180 0.02146
-11097 NUPL2 nucleoporin like 2 protein-coding 55 0.006557
-11098 PRSS23 serine protease 23 protein-coding 56 0.006676
-11099 PTPN21 protein tyrosine phosphatase, non-receptor type 21 protein-coding 122 0.01454
-11100 HNRNPUL1 heterogeneous nuclear ribonucleoprotein U like 1 protein-coding 111 0.01323
-11101 ATE1 arginyltransferase 1 protein-coding 52 0.006199
-11102 RPP14 ribonuclease P/MRP subunit p14 protein-coding 15 0.001788
-11103 KRR1 KRR1, small subunit processome component homolog protein-coding 51 0.00608
-11104 KATNA1 katanin catalytic subunit A1 protein-coding 59 0.007034
-11105 PRDM7 PR/SET domain 7 protein-coding 48 0.005722
-11107 PRDM5 PR/SET domain 5 protein-coding 125 0.0149
-11108 PRDM4 PR/SET domain 4 protein-coding 80 0.009537
-11112 HIBADH 3-hydroxyisobutyrate dehydrogenase protein-coding 31 0.003696
-11113 CIT citron rho-interacting serine/threonine kinase protein-coding 220 0.02623
-11116 FGFR1OP FGFR1 oncogene partner protein-coding 29 0.003457
-11117 EMILIN1 elastin microfibril interfacer 1 protein-coding 115 0.01371
-11118 BTN3A2 butyrophilin subfamily 3 member A2 protein-coding 63 0.007511
-11119 BTN3A1 butyrophilin subfamily 3 member A1 protein-coding 72 0.008584
-11120 BTN2A1 butyrophilin subfamily 2 member A1 protein-coding 72 0.008584
-11122 PTPRT protein tyrosine phosphatase, receptor type T protein-coding 341 0.04065
-11123 RCAN3 RCAN family member 3 protein-coding 59 0.007034
-11124 FAF1 Fas associated factor 1 protein-coding 77 0.00918
-11126 CD160 CD160 molecule protein-coding 19 0.002265
-11127 KIF3A kinesin family member 3A protein-coding 80 0.009537
-11128 POLR3A RNA polymerase III subunit A protein-coding 125 0.0149
-11129 CLASRP CLK4 associating serine/arginine rich protein protein-coding 73 0.008703
-11130 ZWINT ZW10 interacting kinetochore protein protein-coding 75 0.008941
-11131 CAPN11 calpain 11 protein-coding 80 0.009537
-11132 CAPN10 calpain 10 protein-coding 65 0.007749
-11133 KPTN kaptin, actin binding protein protein-coding 43 0.005126
-11135 CDC42EP1 CDC42 effector protein 1 protein-coding 37 0.004411
-11136 SLC7A9 solute carrier family 7 member 9 protein-coding 81 0.009657
-11137 PWP1 PWP1 homolog, endonuclein protein-coding 59 0.007034
-11138 TBC1D8 TBC1 domain family member 8 protein-coding 116 0.01383
-11140 CDC37 cell division cycle 37 protein-coding 48 0.005722
-11141 IL1RAPL1 interleukin 1 receptor accessory protein like 1 protein-coding 164 0.01955
-11142 PKIG cAMP-dependent protein kinase inhibitor gamma protein-coding 15 0.001788
-11143 KAT7 lysine acetyltransferase 7 protein-coding 86 0.01025
-11144 DMC1 DNA meiotic recombinase 1 protein-coding 41 0.004888
-11145 PLA2G16 phospholipase A2 group XVI protein-coding 17 0.002027
-11146 GLMN glomulin, FKBP associated protein protein-coding 177 0.0211
-11147 HHLA3 HERV-H LTR-associating 3 protein-coding 10 0.001192
-11148 HHLA2 HERV-H LTR-associating 2 protein-coding 62 0.007392
-11149 BVES blood vessel epicardial substance protein-coding 173 0.02062
-11151 CORO1A coronin 1A protein-coding 51 0.00608
-11152 WDR45 WD repeat domain 45 protein-coding 68 0.008107
-11153 FICD FIC domain containing protein-coding 39 0.004649
-11154 AP4S1 adaptor related protein complex 4 sigma 1 subunit protein-coding 19 0.002265
-11155 LDB3 LIM domain binding 3 protein-coding 88 0.01049
-11156 PTP4A3 protein tyrosine phosphatase type IVA, member 3 protein-coding 37 0.004411
-11157 LSM6 LSM6 homolog, U6 small nuclear RNA and mRNA degradation associated protein-coding 6 0.0007153
-11158 RABL2B RAB, member of RAS oncogene family like 2B protein-coding 22 0.002623
-11159 RABL2A RAB, member of RAS oncogene family like 2A protein-coding 24 0.002861
-11160 ERLIN2 ER lipid raft associated 2 protein-coding 42 0.005007
-11161 ERG28 ergosterol biosynthesis 28 homolog protein-coding 15 0.001788
-11162 NUDT6 nudix hydrolase 6 protein-coding 40 0.004769
-11163 NUDT4 nudix hydrolase 4 protein-coding 20 0.002384
-11164 NUDT5 nudix hydrolase 5 protein-coding 24 0.002861
-11165 NUDT3 nudix hydrolase 3 protein-coding 16 0.001907
-11166 SOX21 SRY-box 21 protein-coding 22 0.002623
-11167 FSTL1 follistatin like 1 protein-coding 44 0.005246
-11168 PSIP1 PC4 and SFRS1 interacting protein 1 protein-coding 105 0.01252
-11169 WDHD1 WD repeat and HMG-box DNA binding protein 1 protein-coding 97 0.01156
-11170 FAM107A family with sequence similarity 107 member A protein-coding 20 0.002384
-11171 STRAP serine/threonine kinase receptor associated protein protein-coding 39 0.004649
-11172 INSL6 insulin like 6 protein-coding 243 0.02897
-11173 ADAMTS7 ADAM metallopeptidase with thrombospondin type 1 motif 7 protein-coding 175 0.02086
-11174 ADAMTS6 ADAM metallopeptidase with thrombospondin type 1 motif 6 protein-coding 85 0.01013
-11176 BAZ2A bromodomain adjacent to zinc finger domain 2A protein-coding 146 0.01741
-11177 BAZ1A bromodomain adjacent to zinc finger domain 1A protein-coding 130 0.0155
-11178 LZTS1 leucine zipper tumor suppressor 1 protein-coding 148 0.01764
-11179 ZNF277 zinc finger protein 277 protein-coding 63 0.007511
-11180 WDR6 WD repeat domain 6 protein-coding 107 0.01276
-11181 TREH trehalase protein-coding 43 0.005126
-11182 SLC2A6 solute carrier family 2 member 6 protein-coding 57 0.006795
-11183 MAP4K5 mitogen-activated protein kinase kinase kinase kinase 5 protein-coding 117 0.01395
-11184 MAP4K1 mitogen-activated protein kinase kinase kinase kinase 1 protein-coding 95 0.01133
-11185 INMT indolethylamine N-methyltransferase protein-coding 41 0.004888
-11186 RASSF1 Ras association domain family member 1 protein-coding 29 0.003457
-11187 PKP3 plakophilin 3 protein-coding 76 0.009061
-11188 NISCH nischarin protein-coding 130 0.0155
-11189 CELF3 CUGBP Elav-like family member 3 protein-coding 68 0.008107
-11190 CEP250 centrosomal protein 250 protein-coding 208 0.0248
-11191 PTENP1 phosphatase and tensin homolog pseudogene 1 pseudo 134 0.01598
-11193 WBP4 WW domain binding protein 4 protein-coding 52 0.006199
-11194 ABCB8 ATP binding cassette subfamily B member 8 protein-coding 96 0.01144
-11196 SEC23IP SEC23 interacting protein protein-coding 109 0.01299
-11197 WIF1 WNT inhibitory factor 1 protein-coding 71 0.008464
-11198 SUPT16H SPT16 homolog, facilitates chromatin remodeling subunit protein-coding 137 0.01633
-11199 ANXA10 annexin A10 protein-coding 44 0.005246
-11200 CHEK2 checkpoint kinase 2 protein-coding 157 0.01872
-11201 POLI DNA polymerase iota protein-coding 68 0.008107
-11202 KLK8 kallikrein related peptidase 8 protein-coding 64 0.00763
-11211 FZD10 frizzled class receptor 10 protein-coding 132 0.01574
-11212 PLPBP pyridoxal phosphate binding protein protein-coding 34 0.004053
-11213 IRAK3 interleukin 1 receptor associated kinase 3 protein-coding 97 0.01156
-11214 AKAP13 A-kinase anchoring protein 13 protein-coding 258 0.03076
-11215 AKAP11 A-kinase anchoring protein 11 protein-coding 168 0.02003
-11216 AKAP10 A-kinase anchoring protein 10 protein-coding 45 0.005365
-11218 DDX20 DEAD-box helicase 20 protein-coding 73 0.008703
-11219 TREX2 three prime repair exonuclease 2 protein-coding 35 0.004173
-11221 DUSP10 dual specificity phosphatase 10 protein-coding 57 0.006795
-11222 MRPL3 mitochondrial ribosomal protein L3 protein-coding 42 0.005007
-11223 MST1L macrophage stimulating 1 like protein-coding 98 0.01168
-11224 RPL35 ribosomal protein L35 protein-coding 18 0.002146
-11226 GALNT6 polypeptide N-acetylgalactosaminyltransferase 6 protein-coding 70 0.008345
-11227 GALNT5 polypeptide N-acetylgalactosaminyltransferase 5 protein-coding 126 0.01502
-11228 RASSF8 Ras association domain family member 8 protein-coding 43 0.005126
-11230 PRAF2 PRA1 domain family member 2 protein-coding 9 0.001073
-11231 SEC63 SEC63 homolog, protein translocation regulator protein-coding 81 0.009657
-11232 POLG2 DNA polymerase gamma 2, accessory subunit protein-coding 89 0.01061
-11234 HPS5 HPS5, biogenesis of lysosomal organelles complex 2 subunit 2 protein-coding 92 0.01097
-11235 PDCD10 programmed cell death 10 protein-coding 42 0.005007
-11236 RNF139 ring finger protein 139 protein-coding 70 0.008345
-11237 RNF24 ring finger protein 24 protein-coding 20 0.002384
-11238 CA5B carbonic anhydrase 5B protein-coding 34 0.004053
-11240 PADI2 peptidyl arginine deiminase 2 protein-coding 89 0.01061
-11243 PMF1 polyamine modulated factor 1 protein-coding 21 0.002504
-11244 ZHX1 zinc fingers and homeoboxes 1 protein-coding 91 0.01085
-11245 GPR176 G protein-coupled receptor 176 protein-coding 43 0.005126
-11247 NXPH4 neurexophilin 4 protein-coding 27 0.003219
-11248 NXPH3 neurexophilin 3 protein-coding 36 0.004292
-11249 NXPH2 neurexophilin 2 protein-coding 66 0.007868
-11250 GPR45 G protein-coupled receptor 45 protein-coding 77 0.00918
-11251 PTGDR2 prostaglandin D2 receptor 2 protein-coding 25 0.00298
-11252 PACSIN2 protein kinase C and casein kinase substrate in neurons 2 protein-coding 49 0.005842
-11253 MAN1B1 mannosidase alpha class 1B member 1 protein-coding 65 0.007749
-11254 SLC6A14 solute carrier family 6 member 14 protein-coding 86 0.01025
-11255 HRH3 histamine receptor H3 protein-coding 52 0.006199
-11258 DCTN3 dynactin subunit 3 protein-coding 17 0.002027
-11259 FILIP1L filamin A interacting protein 1 like protein-coding 113 0.01347
-11260 XPOT exportin for tRNA protein-coding 115 0.01371
-11261 CHP1 calcineurin like EF-hand protein 1 protein-coding 23 0.002742
-11262 SP140 SP140 nuclear body protein protein-coding 148 0.01764
-11264 PXMP4 peroxisomal membrane protein 4 protein-coding 29 0.003457
-11266 DUSP12 dual specificity phosphatase 12 protein-coding 61 0.007272
-11267 SNF8 SNF8, ESCRT-II complex subunit protein-coding 30 0.003577
-11269 DDX19B DEAD-box helicase 19B protein-coding 55 0.006557
-11270 NRM nurim protein-coding 19 0.002265
-11272 PRR4 proline rich 4 protein-coding 24 0.002861
-11273 ATXN2L ataxin 2 like protein-coding 152 0.01812
-11274 USP18 ubiquitin specific peptidase 18 protein-coding 30 0.003577
-11275 KLHL2 kelch like family member 2 protein-coding 69 0.008226
-11276 SYNRG synergin gamma protein-coding 129 0.01538
-11277 TREX1 three prime repair exonuclease 1 protein-coding 26 0.0031
-11278 KLF12 Kruppel like factor 12 protein-coding 48 0.005722
-11279 KLF8 Kruppel like factor 8 protein-coding 53 0.006319
-11280 SCN11A sodium voltage-gated channel alpha subunit 11 protein-coding 279 0.03326
-11281 POU6F2 POU class 6 homeobox 2 protein-coding 113 0.01347
-11282 MGAT4B mannosyl (alpha-1,3-)-glycoprotein beta-1,4-N-acetylglucosaminyltransferase, isozyme B protein-coding 63 0.007511
-11283 CYP4F8 cytochrome P450 family 4 subfamily F member 8 protein-coding 81 0.009657
-11284 PNKP polynucleotide kinase 3'-phosphatase protein-coding 51 0.00608
-11285 B4GALT7 beta-1,4-galactosyltransferase 7 protein-coding 27 0.003219
-11309 SLCO2B1 solute carrier organic anion transporter family member 2B1 protein-coding 96 0.01144
-11311 VPS45 vacuolar protein sorting 45 homolog protein-coding 66 0.007868
-11313 LYPLA2 lysophospholipase II protein-coding 23 0.002742
-11314 CD300A CD300a molecule protein-coding 39 0.004649
-11315 PARK7 Parkinsonism associated deglycase protein-coding 17 0.002027
-11316 COPE coatomer protein complex subunit epsilon protein-coding 26 0.0031
-11317 RBPJL recombination signal binding protein for immunoglobulin kappa J region like protein-coding 64 0.00763
-11318 GPR182 G protein-coupled receptor 182 protein-coding 42 0.005007
-11319 ECD ecdysoneless cell cycle regulator protein-coding 60 0.007153
-11320 MGAT4A mannosyl (alpha-1,3-)-glycoprotein beta-1,4-N-acetylglucosaminyltransferase, isozyme A protein-coding 55 0.006557
-11321 GPN1 GPN-loop GTPase 1 protein-coding 41 0.004888
-11322 TMC6 transmembrane channel like 6 protein-coding 80 0.009537
-11325 DDX42 DEAD-box helicase 42 protein-coding 110 0.01311
-11326 VSIG4 V-set and immunoglobulin domain containing 4 protein-coding 59 0.007034
-11328 FKBP9 FK506 binding protein 9 protein-coding 72 0.008584
-11329 STK38 serine/threonine kinase 38 protein-coding 57 0.006795
-11330 CTRC chymotrypsin C protein-coding 28 0.003338
-11331 PHB2 prohibitin 2 protein-coding 31 0.003696
-11332 ACOT7 acyl-CoA thioesterase 7 protein-coding 38 0.00453
-11333 PDAP1 PDGFA associated protein 1 protein-coding 22 0.002623
-11334 TUSC2 tumor suppressor 2, mitochondrial calcium regulator protein-coding 6 0.0007153
-11335 CBX3 chromobox 3 protein-coding 36 0.004292
-11336 EXOC3 exocyst complex component 3 protein-coding 77 0.00918
-11337 GABARAP GABA type A receptor-associated protein protein-coding 15 0.001788
-11338 U2AF2 U2 small nuclear RNA auxiliary factor 2 protein-coding 68 0.008107
-11339 OIP5 Opa interacting protein 5 protein-coding 21 0.002504
-11340 EXOSC8 exosome component 8 protein-coding 29 0.003457
-11341 SCRG1 stimulator of chondrogenesis 1 protein-coding 9 0.001073
-11342 RNF13 ring finger protein 13 protein-coding 39 0.004649
-11343 MGLL monoglyceride lipase protein-coding 39 0.004649
-11344 TWF2 twinfilin actin binding protein 2 protein-coding 35 0.004173
-11345 GABARAPL2 GABA type A receptor associated protein like 2 protein-coding 14 0.001669
-11346 SYNPO synaptopodin protein-coding 84 0.01001
-22794 CASC3 cancer susceptibility 3 protein-coding 70 0.008345
-22795 NID2 nidogen 2 protein-coding 218 0.02599
-22796 COG2 component of oligomeric golgi complex 2 protein-coding 89 0.01061
-22797 TFEC transcription factor EC protein-coding 66 0.007868
-22798 LAMB4 laminin subunit beta 4 protein-coding 237 0.02825
-22800 RRAS2 RAS related 2 protein-coding 33 0.003934
-22801 ITGA11 integrin subunit alpha 11 protein-coding 127 0.01514
-22802 CLCA4 chloride channel accessory 4 protein-coding 143 0.01705
-22803 XRN2 5'-3' exoribonuclease 2 protein-coding 109 0.01299
-22806 IKZF3 IKAROS family zinc finger 3 protein-coding 82 0.009776
-22807 IKZF2 IKAROS family zinc finger 2 protein-coding 92 0.01097
-22808 MRAS muscle RAS oncogene homolog protein-coding 26 0.0031
-22809 ATF5 activating transcription factor 5 protein-coding 42 0.005007
-22818 COPZ1 coatomer protein complex subunit zeta 1 protein-coding 20 0.002384
-22820 COPG1 coatomer protein complex subunit gamma 1 protein-coding 93 0.01109
-22821 RASA3 RAS p21 protein activator 3 protein-coding 99 0.0118
-22822 PHLDA1 pleckstrin homology like domain family A member 1 protein-coding 38 0.00453
-22823 MTF2 metal response element binding transcription factor 2 protein-coding 75 0.008941
-22824 HSPA4L heat shock protein family A (Hsp70) member 4 like protein-coding 84 0.01001
-22826 DNAJC8 DnaJ heat shock protein family (Hsp40) member C8 protein-coding 29 0.003457
-22827 PUF60 poly(U) binding splicing factor 60 protein-coding 51 0.00608
-22828 SCAF8 SR-related CTD associated factor 8 protein-coding 142 0.01693
-22829 NLGN4Y neuroligin 4, Y-linked protein-coding 55 0.006557
-22832 CEP162 centrosomal protein 162 protein-coding 167 0.01991
-22834 ZNF652 zinc finger protein 652 protein-coding 66 0.007868
-22835 ZFP30 ZFP30 zinc finger protein protein-coding 94 0.01121
-22836 RHOBTB3 Rho related BTB domain containing 3 protein-coding 66 0.007868
-22837 COBLL1 cordon-bleu WH2 repeat protein like 1 protein-coding 125 0.0149
-22838 RNF44 ring finger protein 44 protein-coding 44 0.005246
-22839 DLGAP4 DLG associated protein 4 protein-coding 135 0.01609
-22841 RAB11FIP2 RAB11 family interacting protein 2 protein-coding 69 0.008226
-22843 PPM1E protein phosphatase, Mg2+/Mn2+ dependent 1E protein-coding 75 0.008941
-22844 FRMPD1 FERM and PDZ domain containing 1 protein-coding 215 0.02563
-22845 DOLK dolichol kinase protein-coding 47 0.005603
-22846 VASH1 vasohibin 1 protein-coding 39 0.004649
-22847 ZNF507 zinc finger protein 507 protein-coding 115 0.01371
-22848 AAK1 AP2 associated kinase 1 protein-coding 81 0.009657
-22849 CPEB3 cytoplasmic polyadenylation element binding protein 3 protein-coding 50 0.005961
-22850 ADNP2 ADNP homeobox 2 protein-coding 127 0.01514
-22852 ANKRD26 ankyrin repeat domain 26 protein-coding 207 0.02468
-22853 LMTK2 lemur tyrosine kinase 2 protein-coding 170 0.02027
-22854 NTNG1 netrin G1 protein-coding 126 0.01502
-22856 CHSY1 chondroitin sulfate synthase 1 protein-coding 88 0.01049
-22858 ICK intestinal cell kinase protein-coding 61 0.007272
-22859 ADGRL1 adhesion G protein-coupled receptor L1 protein-coding 144 0.01717
-22861 NLRP1 NLR family pyrin domain containing 1 protein-coding 155 0.01848
-22862 FNDC3A fibronectin type III domain containing 3A protein-coding 111 0.01323
-22863 ATG14 autophagy related 14 protein-coding 46 0.005484
-22864 R3HDM2 R3H domain containing 2 protein-coding 84 0.01001
-22865 SLITRK3 SLIT and NTRK like family member 3 protein-coding 252 0.03004
-22866 CNKSR2 connector enhancer of kinase suppressor of Ras 2 protein-coding 315 0.03755
-22868 FASTKD2 FAST kinase domains 2 protein-coding 61 0.007272
-22869 ZNF510 zinc finger protein 510 protein-coding 68 0.008107
-22870 PPP6R1 protein phosphatase 6 regulatory subunit 1 protein-coding 79 0.009418
-22871 NLGN1 neuroligin 1 protein-coding 193 0.02301
-22872 SEC31A SEC31 homolog A, COPII coat complex component protein-coding 126 0.01502
-22873 DZIP1 DAZ interacting zinc finger protein 1 protein-coding 112 0.01335
-22874 PLEKHA6 pleckstrin homology domain containing A6 protein-coding 175 0.02086
-22875 ENPP4 ectonucleotide pyrophosphatase/phosphodiesterase 4 protein-coding 54 0.006438
-22876 INPP5F inositol polyphosphate-5-phosphatase F protein-coding 121 0.01443
-22877 MLXIP MLX interacting protein protein-coding 70 0.008345
-22878 TRAPPC8 trafficking protein particle complex 8 protein-coding 167 0.01991
-22879 MON1B MON1 homolog B, secretory trafficking associated protein-coding 69 0.008226
-22880 MORC2 MORC family CW-type zinc finger 2 protein-coding 80 0.009537
-22881 ANKRD6 ankyrin repeat domain 6 protein-coding 77 0.00918
-22882 ZHX2 zinc fingers and homeoboxes 2 protein-coding 132 0.01574
-22883 CLSTN1 calsyntenin 1 protein-coding 90 0.01073
-22884 WDR37 WD repeat domain 37 protein-coding 51 0.00608
-22885 ABLIM3 actin binding LIM protein family member 3 protein-coding 91 0.01085
-22887 FOXJ3 forkhead box J3 protein-coding 73 0.008703
-22888 UBOX5 U-box domain containing 5 protein-coding 54 0.006438
-22889 KHDC4 KH domain containing 4, pre-mRNA splicing factor protein-coding 92 0.01097
-22890 ZBTB1 zinc finger and BTB domain containing 1 protein-coding 65 0.007749
-22891 ZNF365 zinc finger protein 365 protein-coding 77 0.00918
-22893 BAHD1 bromo adjacent homology domain containing 1 protein-coding 81 0.009657
-22894 DIS3 DIS3 homolog, exosome endoribonuclease and 3'-5' exoribonuclease protein-coding 100 0.01192
-22895 RPH3A rabphilin 3A protein-coding 120 0.01431
-22897 CEP164 centrosomal protein 164 protein-coding 130 0.0155
-22898 DENND3 DENN domain containing 3 protein-coding 138 0.01645
-22899 ARHGEF15 Rho guanine nucleotide exchange factor 15 protein-coding 136 0.01621
-22900 CARD8 caspase recruitment domain family member 8 protein-coding 57 0.006795
-22901 ARSG arylsulfatase G protein-coding 71 0.008464
-22902 RUFY3 RUN and FYVE domain containing 3 protein-coding 96 0.01144
-22903 BTBD3 BTB domain containing 3 protein-coding 81 0.009657
-22904 SBNO2 strawberry notch homolog 2 protein-coding 103 0.01228
-22905 EPN2 epsin 2 protein-coding 73 0.008703
-22906 TRAK1 trafficking kinesin protein 1 protein-coding 95 0.01133
-22907 DHX30 DExH-box helicase 30 protein-coding 141 0.01681
-22908 SACM1L SAC1 like phosphatidylinositide phosphatase protein-coding 46 0.005484
-22909 FAN1 FANCD2 and FANCI associated nuclease 1 protein-coding 109 0.01299
-22911 WDR47 WD repeat domain 47 protein-coding 115 0.01371
-22913 RALY RALY heterogeneous nuclear ribonucleoprotein protein-coding 43 0.005126
-22914 KLRK1 killer cell lectin like receptor K1 protein-coding 43 0.005126
-22915 MMRN1 multimerin 1 protein-coding 194 0.02313
-22916 NCBP2 nuclear cap binding protein subunit 2 protein-coding 28 0.003338
-22917 ZP1 zona pellucida glycoprotein 1 protein-coding 66 0.007868
-22918 CD93 CD93 molecule protein-coding 150 0.01788
-22919 MAPRE1 microtubule associated protein RP/EB family member 1 protein-coding 36 0.004292
-22920 KIFAP3 kinesin associated protein 3 protein-coding 117 0.01395
-22921 MSRB2 methionine sulfoxide reductase B2 protein-coding 27 0.003219
-22924 MAPRE3 microtubule associated protein RP/EB family member 3 protein-coding 153 0.01824
-22925 PLA2R1 phospholipase A2 receptor 1 protein-coding 145 0.01729
-22926 ATF6 activating transcription factor 6 protein-coding 76 0.009061
-22927 HABP4 hyaluronan binding protein 4 protein-coding 34 0.004053
-22928 SEPHS2 selenophosphate synthetase 2 protein-coding 40 0.004769
-22929 SEPHS1 selenophosphate synthetase 1 protein-coding 51 0.00608
-22930 RAB3GAP1 RAB3 GTPase activating protein catalytic subunit 1 protein-coding 114 0.01359
-22931 RAB18 RAB18, member RAS oncogene family protein-coding 24 0.002861
-22932 POMZP3 POM121 and ZP3 fusion protein-coding 25 0.00298
-22933 SIRT2 sirtuin 2 protein-coding 35 0.004173
-22934 RPIA ribose 5-phosphate isomerase A protein-coding 40 0.004769
-22936 ELL2 elongation factor for RNA polymerase II 2 protein-coding 98 0.01168
-22937 SCAP SREBF chaperone protein-coding 119 0.01419
-22938 SNW1 SNW domain containing 1 protein-coding 69 0.008226
-22941 SHANK2 SH3 and multiple ankyrin repeat domains 2 protein-coding 216 0.02575
-22943 DKK1 dickkopf WNT signaling pathway inhibitor 1 protein-coding 57 0.006795
-22944 KIN Kin17 DNA and RNA binding protein protein-coding 54 0.006438
-22948 CCT5 chaperonin containing TCP1 subunit 5 protein-coding 59 0.007034
-22949 PTGR1 prostaglandin reductase 1 protein-coding 43 0.005126
-22950 SLC4A1AP solute carrier family 4 member 1 adaptor protein protein-coding 69 0.008226
-22952 CYP2G1P cytochrome P450 family 2 subfamily G member 1, pseudogene pseudo 31 0.003696
-22953 P2RX2 purinergic receptor P2X 2 protein-coding 67 0.007988
-22954 TRIM32 tripartite motif containing 32 protein-coding 72 0.008584
-22955 SCMH1 Scm polycomb group protein homolog 1 protein-coding 47 0.005603
-22974 TPX2 TPX2, microtubule nucleation factor protein-coding 93 0.01109
-22976 PAXIP1 PAX interacting protein 1 protein-coding 101 0.01204
-22977 AKR7A3 aldo-keto reductase family 7 member A3 protein-coding 30 0.003577
-22978 NT5C2 5'-nucleotidase, cytosolic II protein-coding 59 0.007034
-22979 EFR3B EFR3 homolog B protein-coding 48 0.005722
-22980 TCF25 transcription factor 25 protein-coding 79 0.009418
-22981 NINL ninein like protein-coding 183 0.02182
-22982 DIP2C disco interacting protein 2 homolog C protein-coding 197 0.02349
-22983 MAST1 microtubule associated serine/threonine kinase 1 protein-coding 153 0.01824
-22984 PDCD11 programmed cell death 11 protein-coding 154 0.01836
-22985 ACIN1 apoptotic chromatin condensation inducer 1 protein-coding 141 0.01681
-22986 SORCS3 sortilin related VPS10 domain containing receptor 3 protein-coding 288 0.03433
-22987 SV2C synaptic vesicle glycoprotein 2C protein-coding 132 0.01574
-22989 MYH15 myosin heavy chain 15 protein-coding 257 0.03064
-22990 PCNX1 pecanex homolog 1 protein-coding 227 0.02706
-22992 KDM2A lysine demethylase 2A protein-coding 99 0.0118
-22993 HMGXB3 HMG-box containing 3 protein-coding 53 0.006319
-22994 CEP131 centrosomal protein 131 protein-coding 102 0.01216
-22995 CEP152 centrosomal protein 152 protein-coding 164 0.01955
-22996 TTC39A tetratricopeptide repeat domain 39A protein-coding 60 0.007153
-22997 IGSF9B immunoglobulin superfamily member 9B protein-coding 220 0.02623
-22998 LIMCH1 LIM and calponin homology domains 1 protein-coding 116 0.01383
-22999 RIMS1 regulating synaptic membrane exocytosis 1 protein-coding 305 0.03636
-23001 WDFY3 WD repeat and FYVE domain containing 3 protein-coding 365 0.04351
-23002 DAAM1 dishevelled associated activator of morphogenesis 1 protein-coding 134 0.01598
-23005 MAPKBP1 mitogen-activated protein kinase binding protein 1 protein-coding 123 0.01466
-23007 PLCH1 phospholipase C eta 1 protein-coding 250 0.0298
-23008 KLHDC10 kelch domain containing 10 protein-coding 39 0.004649
-23011 RAB21 RAB21, member RAS oncogene family protein-coding 24 0.002861
-23012 STK38L serine/threonine kinase 38 like protein-coding 41 0.004888
-23013 SPEN spen family transcriptional repressor protein-coding 320 0.03815
-23014 FBXO21 F-box protein 21 protein-coding 80 0.009537
-23015 GOLGA8A golgin A8 family member A protein-coding 20 0.002384
-23016 EXOSC7 exosome component 7 protein-coding 32 0.003815
-23017 FAIM2 Fas apoptotic inhibitory molecule 2 protein-coding 27 0.003219
-23019 CNOT1 CCR4-NOT transcription complex subunit 1 protein-coding 255 0.0304
-23020 SNRNP200 small nuclear ribonucleoprotein U5 subunit 200 protein-coding 170 0.02027
-23022 PALLD palladin, cytoskeletal associated protein protein-coding 107 0.01276
-23023 TMCC1 transmembrane and coiled-coil domain family 1 protein-coding 82 0.009776
-23024 PDZRN3 PDZ domain containing ring finger 3 protein-coding 183 0.02182
-23025 UNC13A unc-13 homolog A protein-coding 199 0.02372
-23026 MYO16 myosin XVI protein-coding 296 0.03529
-23028 KDM1A lysine demethylase 1A protein-coding 67 0.007988
-23029 RBM34 RNA binding motif protein 34 protein-coding 59 0.007034
-23030 KDM4B lysine demethylase 4B protein-coding 114 0.01359
-23031 MAST3 microtubule associated serine/threonine kinase 3 protein-coding 125 0.0149
-23032 USP33 ubiquitin specific peptidase 33 protein-coding 123 0.01466
-23033 DOPEY1 dopey family member 1 protein-coding 230 0.02742
-23034 SAMD4A sterile alpha motif domain containing 4A protein-coding 73 0.008703
-23035 PHLPP2 PH domain and leucine rich repeat protein phosphatase 2 protein-coding 122 0.01454
-23036 ZNF292 zinc finger protein 292 protein-coding 299 0.03565
-23037 PDZD2 PDZ domain containing 2 protein-coding 328 0.0391
-23038 WDTC1 WD and tetratricopeptide repeats 1 protein-coding 77 0.00918
-23039 XPO7 exportin 7 protein-coding 105 0.01252
-23040 MYT1L myelin transcription factor 1 like protein-coding 283 0.03374
-23041 MON2 MON2 homolog, regulator of endosome-to-Golgi trafficking protein-coding 165 0.01967
-23042 PDXDC1 pyridoxal dependent decarboxylase domain containing 1 protein-coding 80 0.009537
-23043 TNIK TRAF2 and NCK interacting kinase protein-coding 205 0.02444
-23046 KIF21B kinesin family member 21B protein-coding 226 0.02694
-23047 PDS5B PDS5 cohesin associated factor B protein-coding 161 0.01919
-23048 FNBP1 formin binding protein 1 protein-coding 70 0.008345
-23049 SMG1 SMG1, nonsense mediated mRNA decay associated PI3K related kinase protein-coding 267 0.03183
-23051 ZHX3 zinc fingers and homeoboxes 3 protein-coding 104 0.0124
-23052 ENDOD1 endonuclease domain containing 1 protein-coding 39 0.004649
-23053 ZSWIM8 zinc finger SWIM-type containing 8 protein-coding 159 0.01896
-23054 NCOA6 nuclear receptor coactivator 6 protein-coding 188 0.02241
-23057 NMNAT2 nicotinamide nucleotide adenylyltransferase 2 protein-coding 42 0.005007
-23059 CLUAP1 clusterin associated protein 1 protein-coding 50 0.005961
-23060 ZNF609 zinc finger protein 609 protein-coding 137 0.01633
-23061 TBC1D9B TBC1 domain family member 9B protein-coding 122 0.01454
-23062 GGA2 golgi associated, gamma adaptin ear containing, ARF binding protein 2 protein-coding 58 0.006915
-23063 WAPL WAPL cohesin release factor protein-coding 121 0.01443
-23064 SETX senataxin protein-coding 240 0.02861
-23065 EMC1 ER membrane protein complex subunit 1 protein-coding 93 0.01109
-23066 CAND2 cullin associated and neddylation dissociated 2 (putative) protein-coding 116 0.01383
-23067 SETD1B SET domain containing 1B protein-coding 120 0.01431
-23070 CMTR1 cap methyltransferase 1 protein-coding 75 0.008941
-23071 ERP44 endoplasmic reticulum protein 44 protein-coding 49 0.005842
-23072 HECW1 HECT, C2 and WW domain containing E3 ubiquitin protein ligase 1 protein-coding 309 0.03684
-23074 UHRF1BP1L UHRF1 binding protein 1 like protein-coding 168 0.02003
-23075 SWAP70 switching B cell complex subunit SWAP70 protein-coding 56 0.006676
-23076 RRP1B ribosomal RNA processing 1B protein-coding 63 0.007511
-23077 MYCBP2 MYC binding protein 2, E3 ubiquitin protein ligase protein-coding 437 0.0521
-23078 VWA8 von Willebrand factor A domain containing 8 protein-coding 179 0.02134
-23080 AVL9 AVL9 cell migration associated protein-coding 60 0.007153
-23081 KDM4C lysine demethylase 4C protein-coding 112 0.01335
-23082 PPRC1 peroxisome proliferator-activated receptor gamma, coactivator-related 1 protein-coding 166 0.01979
-23085 ERC1 ELKS/RAB6-interacting/CAST family member 1 protein-coding 119 0.01419
-23086 EXPH5 exophilin 5 protein-coding 213 0.02539
-23087 TRIM35 tripartite motif containing 35 protein-coding 60 0.007153
-23089 PEG10 paternally expressed 10 protein-coding 57 0.006795
-23090 ZNF423 zinc finger protein 423 protein-coding 258 0.03076
-23091 ZC3H13 zinc finger CCCH-type containing 13 protein-coding 226 0.02694
-23092 ARHGAP26 Rho GTPase activating protein 26 protein-coding 94 0.01121
-23093 TTLL5 tubulin tyrosine ligase like 5 protein-coding 138 0.01645
-23094 SIPA1L3 signal induced proliferation associated 1 like 3 protein-coding 187 0.02229
-23095 KIF1B kinesin family member 1B protein-coding 202 0.02408
-23096 IQSEC2 IQ motif and Sec7 domain 2 protein-coding 139 0.01657
-23097 CDK19 cyclin dependent kinase 19 protein-coding 60 0.007153
-23098 SARM1 sterile alpha and TIR motif containing 1 protein-coding 30 0.003577
-23099 ZBTB43 zinc finger and BTB domain containing 43 protein-coding 48 0.005722
-23101 MCF2L2 MCF.2 cell line derived transforming sequence-like 2 protein-coding 165 0.01967
-23102 TBC1D2B TBC1 domain family member 2B protein-coding 77 0.00918
-23105 FSTL4 follistatin like 4 protein-coding 102 0.01216
-23107 MRPS27 mitochondrial ribosomal protein S27 protein-coding 38 0.00453
-23108 RAP1GAP2 RAP1 GTPase activating protein 2 protein-coding 77 0.00918
-23109 DDN dendrin protein-coding 51 0.00608
-23111 SPART spartin protein-coding 117 0.01395
-23112 TNRC6B trinucleotide repeat containing 6B protein-coding 180 0.02146
-23113 CUL9 cullin 9 protein-coding 210 0.02504
-23114 NFASC neurofascin protein-coding 230 0.02742
-23116 TOGARAM1 TOG array regulator of axonemal microtubules 1 protein-coding 200 0.02384
-23117 NPIPB3 nuclear pore complex interacting protein family member B3 protein-coding 11 0.001311
-23118 TAB2 TGF-beta activated kinase 1 (MAP3K7) binding protein 2 protein-coding 73 0.008703
-23119 HIC2 HIC ZBTB transcriptional repressor 2 protein-coding 74 0.008822
-23120 ATP10B ATPase phospholipid transporting 10B (putative) protein-coding 236 0.02814
-23122 CLASP2 cytoplasmic linker associated protein 2 protein-coding 139 0.01657
-23125 CAMTA2 calmodulin binding transcription activator 2 protein-coding 142 0.01693
-23126 POGZ pogo transposable element derived with ZNF domain protein-coding 131 0.01562
-23127 COLGALT2 collagen beta(1-O)galactosyltransferase 2 protein-coding 97 0.01156
-23129 PLXND1 plexin D1 protein-coding 188 0.02241
-23130 ATG2A autophagy related 2A protein-coding 171 0.02039
-23131 GPATCH8 G-patch domain containing 8 protein-coding 184 0.02194
-23132 RAD54L2 RAD54 like 2 protein-coding 132 0.01574
-23133 PHF8 PHD finger protein 8 protein-coding 115 0.01371
-23135 KDM6B lysine demethylase 6B protein-coding 167 0.01991
-23136 EPB41L3 erythrocyte membrane protein band 4.1 like 3 protein-coding 272 0.03243
-23137 SMC5 structural maintenance of chromosomes 5 protein-coding 114 0.01359
-23138 N4BP3 NEDD4 binding protein 3 protein-coding 59 0.007034
-23139 MAST2 microtubule associated serine/threonine kinase 2 protein-coding 155 0.01848
-23140 ZZEF1 zinc finger ZZ-type and EF-hand domain containing 1 protein-coding 218 0.02599
-23141 ANKLE2 ankyrin repeat and LEM domain containing 2 protein-coding 119 0.01419
-23142 DCUN1D4 defective in cullin neddylation 1 domain containing 4 protein-coding 41 0.004888
-23143 LRCH1 leucine rich repeats and calponin homology domain containing 1 protein-coding 82 0.009776
-23144 ZC3H3 zinc finger CCCH-type containing 3 protein-coding 102 0.01216
-23145 SSPO SCO-spondin protein-coding 582 0.06938
-23148 NACAD NAC alpha domain containing protein-coding 79 0.009418
-23149 FCHO1 FCH domain only 1 protein-coding 110 0.01311
-23150 FRMD4B FERM domain containing 4B protein-coding 77 0.00918
-23151 GRAMD4 GRAM domain containing 4 protein-coding 68 0.008107
-23152 CIC capicua transcriptional repressor protein-coding 302 0.036
-23154 NCDN neurochondrin protein-coding 75 0.008941
-23155 CLCC1 chloride channel CLIC like 1 protein-coding 52 0.006199
-23157 SEPT6 septin 6 protein-coding 116 0.01383
-23158 TBC1D9 TBC1 domain family member 9 protein-coding 143 0.01705
-23160 WDR43 WD repeat domain 43 protein-coding 49 0.005842
-23161 SNX13 sorting nexin 13 protein-coding 102 0.01216
-23162 MAPK8IP3 mitogen-activated protein kinase 8 interacting protein 3 protein-coding 138 0.01645
-23163 GGA3 golgi associated, gamma adaptin ear containing, ARF binding protein 3 protein-coding 57 0.006795
-23164 MPRIP myosin phosphatase Rho interacting protein protein-coding 115 0.01371
-23165 NUP205 nucleoporin 205 protein-coding 223 0.02659
-23166 STAB1 stabilin 1 protein-coding 262 0.03124
-23167 EFR3A EFR3 homolog A protein-coding 114 0.01359
-23168 RTF1 RTF1 homolog, Paf1/RNA polymerase II complex component protein-coding 81 0.009657
-23169 SLC35D1 solute carrier family 35 member D1 protein-coding 29 0.003457
-23170 TTLL12 tubulin tyrosine ligase like 12 protein-coding 59 0.007034
-23171 GPD1L glycerol-3-phosphate dehydrogenase 1 like protein-coding 37 0.004411
-23172 ABRAXAS2 abraxas 2, BRISC complex subunit protein-coding 59 0.007034
-23173 METAP1 methionyl aminopeptidase 1 protein-coding 268 0.03195
-23174 ZCCHC14 zinc finger CCHC-type containing 14 protein-coding 99 0.0118
-23175 LPIN1 lipin 1 protein-coding 102 0.01216
-23176 SEPT8 septin 8 protein-coding 46 0.005484
-23177 CEP68 centrosomal protein 68 protein-coding 75 0.008941
-23178 PASK PAS domain containing serine/threonine kinase protein-coding 138 0.01645
-23179 RGL1 ral guanine nucleotide dissociation stimulator like 1 protein-coding 106 0.01264
-23180 RFTN1 raftlin, lipid raft linker 1 protein-coding 83 0.009895
-23181 DIP2A disco interacting protein 2 homolog A protein-coding 155 0.01848
-23184 MESD mesoderm development LRP chaperone protein-coding 32 0.003815
-23185 LARP4B La ribonucleoprotein domain family member 4B protein-coding 157 0.01872
-23186 RCOR1 REST corepressor 1 protein-coding 47 0.005603
-23187 PHLDB1 pleckstrin homology like domain family B member 1 protein-coding 137 0.01633
-23189 KANK1 KN motif and ankyrin repeat domains 1 protein-coding 129 0.01538
-23190 UBXN4 UBX domain protein 4 protein-coding 69 0.008226
-23191 CYFIP1 cytoplasmic FMR1 interacting protein 1 protein-coding 143 0.01705
-23192 ATG4B autophagy related 4B cysteine peptidase protein-coding 35 0.004173
-23193 GANAB glucosidase II alpha subunit protein-coding 126 0.01502
-23194 FBXL7 F-box and leucine rich repeat protein 7 protein-coding 171 0.02039
-23195 MDN1 midasin AAA ATPase 1 protein-coding 416 0.04959
-23196 FAM120A family with sequence similarity 120A protein-coding 117 0.01395
-23197 FAF2 Fas associated factor family member 2 protein-coding 56 0.006676
-23198 PSME4 proteasome activator subunit 4 protein-coding 179 0.02134
-23199 GSE1 Gse1 coiled-coil protein protein-coding 113 0.01347
-23200 ATP11B ATPase phospholipid transporting 11B (putative) protein-coding 124 0.01478
-23201 FAM168A family with sequence similarity 168 member A protein-coding 18 0.002146
-23203 PMPCA peptidase, mitochondrial processing alpha subunit protein-coding 54 0.006438
-23204 ARL6IP1 ADP ribosylation factor like GTPase 6 interacting protein 1 protein-coding 24 0.002861
-23205 ACSBG1 acyl-CoA synthetase bubblegum family member 1 protein-coding 108 0.01288
-23207 PLEKHM2 pleckstrin homology and RUN domain containing M2 protein-coding 86 0.01025
-23208 SYT11 synaptotagmin 11 protein-coding 106 0.01264
-23209 MLC1 megalencephalic leukoencephalopathy with subcortical cysts 1 protein-coding 43 0.005126
-23210 JMJD6 arginine demethylase and lysine hydroxylase protein-coding 46 0.005484
-23211 ZC3H4 zinc finger CCCH-type containing 4 protein-coding 131 0.01562
-23212 RRS1 ribosome biogenesis regulator homolog protein-coding 27 0.003219
-23213 SULF1 sulfatase 1 protein-coding 200 0.02384
-23214 XPO6 exportin 6 protein-coding 117 0.01395
-23215 PRRC2C proline rich coiled-coil 2C protein-coding 210 0.02504
-23216 TBC1D1 TBC1 domain family member 1 protein-coding 105 0.01252
-23217 ZFR2 zinc finger RNA binding protein 2 protein-coding 97 0.01156
-23218 NBEAL2 neurobeachin like 2 protein-coding 193 0.02301
-23219 FBXO28 F-box protein 28 protein-coding 46 0.005484
-23220 DTX4 deltex E3 ubiquitin ligase 4 protein-coding 76 0.009061
-23221 RHOBTB2 Rho related BTB domain containing 2 protein-coding 72 0.008584
-23223 RRP12 ribosomal RNA processing 12 homolog protein-coding 124 0.01478
-23224 SYNE2 spectrin repeat containing nuclear envelope protein 2 protein-coding 527 0.06283
-23225 NUP210 nucleoporin 210 protein-coding 192 0.02289
-23228 PLCL2 phospholipase C like 2 protein-coding 121 0.01443
-23229 ARHGEF9 Cdc42 guanine nucleotide exchange factor 9 protein-coding 95 0.01133
-23230 VPS13A vacuolar protein sorting 13 homolog A protein-coding 284 0.03386
-23231 SEL1L3 SEL1L family member 3 protein-coding 120 0.01431
-23232 TBC1D12 TBC1 domain family member 12 protein-coding 65 0.007749
-23233 EXOC6B exocyst complex component 6B protein-coding 85 0.01013
-23234 DNAJC9 DnaJ heat shock protein family (Hsp40) member C9 protein-coding 30 0.003577
-23235 SIK2 salt inducible kinase 2 protein-coding 91 0.01085
-23236 PLCB1 phospholipase C beta 1 protein-coding 223 0.02659
-23237 ARC activity regulated cytoskeleton associated protein protein-coding 60 0.007153
-23239 PHLPP1 PH domain and leucine rich repeat protein phosphatase 1 protein-coding 124 0.01478
-23240 TMEM131L transmembrane 131 like protein-coding 145 0.01729
-23241 PACS2 phosphofurin acidic cluster sorting protein 2 protein-coding 99 0.0118
-23242 COBL cordon-bleu WH2 repeat protein protein-coding 177 0.0211
-23243 ANKRD28 ankyrin repeat domain 28 protein-coding 99 0.0118
-23244 PDS5A PDS5 cohesin associated factor A protein-coding 126 0.01502
-23245 ASTN2 astrotactin 2 protein-coding 241 0.02873
-23246 BOP1 block of proliferation 1 protein-coding 17 0.002027
-23247 KIAA0556 KIAA0556 protein-coding 193 0.02301
-23248 RPRD2 regulation of nuclear pre-mRNA domain containing 2 protein-coding 137 0.01633
-23250 ATP11A ATPase phospholipid transporting 11A protein-coding 138 0.01645
-23251 KIAA1024 KIAA1024 protein-coding 159 0.01896
-23252 OTUD3 OTU deubiquitinase 3 protein-coding 39 0.004649
-23253 ANKRD12 ankyrin repeat domain 12 protein-coding 199 0.02372
-23254 KAZN kazrin, periplakin interacting protein protein-coding 71 0.008464
-23255 MTCL1 microtubule crosslinking factor 1 protein-coding 191 0.02277
-23256 SCFD1 sec1 family domain containing 1 protein-coding 76 0.009061
-23258 DENND5A DENN domain containing 5A protein-coding 129 0.01538
-23259 DDHD2 DDHD domain containing 2 protein-coding 71 0.008464
-23261 CAMTA1 calmodulin binding transcription activator 1 protein-coding 222 0.02647
-23262 PPIP5K2 diphosphoinositol pentakisphosphate kinase 2 protein-coding 124 0.01478
-23263 MCF2L MCF.2 cell line derived transforming sequence like protein-coding 134 0.01598
-23264 ZC3H7B zinc finger CCCH-type containing 7B protein-coding 94 0.01121
-23265 EXOC7 exocyst complex component 7 protein-coding 172 0.02051
-23266 ADGRL2 adhesion G protein-coupled receptor L2 protein-coding 239 0.02849
-23268 DNMBP dynamin binding protein protein-coding 139 0.01657
-23269 MGA MGA, MAX dimerization protein protein-coding 324 0.03863
-23270 TSPYL4 TSPY like 4 protein-coding 47 0.005603
-23271 CAMSAP2 calmodulin regulated spectrin associated protein family member 2 protein-coding 171 0.02039
-23272 FAM208A family with sequence similarity 208 member A protein-coding 133 0.01586
-23274 CLEC16A C-type lectin domain containing 16A protein-coding 126 0.01502
-23275 POFUT2 protein O-fucosyltransferase 2 protein-coding 53 0.006319
-23276 KLHL18 kelch like family member 18 protein-coding 62 0.007392
-23277 CLUH clustered mitochondria homolog protein-coding 148 0.01764
-23279 NUP160 nucleoporin 160 protein-coding 131 0.01562
-23281 MTUS2 microtubule associated scaffold protein 2 protein-coding 259 0.03088
-23283 CSTF2T cleavage stimulation factor subunit 2 tau variant protein-coding 86 0.01025
-23284 ADGRL3 adhesion G protein-coupled receptor L3 protein-coding 333 0.0397
-23285 KIAA1107 KIAA1107 protein-coding 76 0.009061
-23286 WWC1 WW and C2 domain containing 1 protein-coding 128 0.01526
-23287 AGTPBP1 ATP/GTP binding protein 1 protein-coding 134 0.01598
-23288 IQCE IQ motif containing E protein-coding 78 0.009299
-23291 FBXW11 F-box and WD repeat domain containing 11 protein-coding 64 0.00763
-23293 SMG6 SMG6, nonsense mediated mRNA decay factor protein-coding 138 0.01645
-23294 ANKS1A ankyrin repeat and sterile alpha motif domain containing 1A protein-coding 108 0.01288
-23295 MGRN1 mahogunin ring finger 1 protein-coding 77 0.00918
-23299 BICD2 BICD cargo adaptor 2 protein-coding 96 0.01144
-23300 ATMIN ATM interactor protein-coding 73 0.008703
-23301 EHBP1 EH domain binding protein 1 protein-coding 132 0.01574
-23302 WSCD1 WSC domain containing 1 protein-coding 80 0.009537
-23303 KIF13B kinesin family member 13B protein-coding 156 0.0186
-23304 UBR2 ubiquitin protein ligase E3 component n-recognin 2 protein-coding 154 0.01836
-23305 ACSL6 acyl-CoA synthetase long chain family member 6 protein-coding 91 0.01085
-23306 NEMP1 nuclear envelope integral membrane protein 1 protein-coding 36 0.004292
-23307 FKBP15 FK506 binding protein 15 protein-coding 107 0.01276
-23308 ICOSLG inducible T cell costimulator ligand protein-coding 38 0.00453
-23309 SIN3B SIN3 transcription regulator family member B protein-coding 104 0.0124
-23310 NCAPD3 non-SMC condensin II complex subunit D3 protein-coding 173 0.02062
-23312 DMXL2 Dmx like 2 protein-coding 287 0.03422
-23313 KIAA0930 KIAA0930 protein-coding 57 0.006795
-23314 SATB2 SATB homeobox 2 protein-coding 155 0.01848
-23315 SLC9A8 solute carrier family 9 member A8 protein-coding 70 0.008345
-23316 CUX2 cut like homeobox 2 protein-coding 210 0.02504
-23317 DNAJC13 DnaJ heat shock protein family (Hsp40) member C13 protein-coding 209 0.02492
-23318 ZCCHC11 zinc finger CCHC-type containing 11 protein-coding 170 0.02027
-23321 TRIM2 tripartite motif containing 2 protein-coding 69 0.008226
-23322 RPGRIP1L RPGRIP1 like protein-coding 152 0.01812
-23324 MAN2B2 mannosidase alpha class 2B member 2 protein-coding 109 0.01299
-23325 WASHC4 WASH complex subunit 4 protein-coding 127 0.01514
-23326 USP22 ubiquitin specific peptidase 22 protein-coding 54 0.006438
-23327 NEDD4L neural precursor cell expressed, developmentally down-regulated 4-like, E3 ubiquitin protein ligase protein-coding 103 0.01228
-23328 SASH1 SAM and SH3 domain containing 1 protein-coding 144 0.01717
-23329 TBC1D30 TBC1 domain family member 30 protein-coding 19 0.002265
-23331 TTC28 tetratricopeptide repeat domain 28 protein-coding 116 0.01383
-23332 CLASP1 cytoplasmic linker associated protein 1 protein-coding 260 0.031
-23333 DPY19L1 dpy-19 like C-mannosyltransferase 1 protein-coding 72 0.008584
-23334 SZT2 SZT2, KICSTOR complex subunit protein-coding 281 0.0335
-23335 WDR7 WD repeat domain 7 protein-coding 184 0.02194
-23336 SYNM synemin protein-coding 115 0.01371
-23338 JADE2 jade family PHD finger 2 protein-coding 78 0.009299
-23339 VPS39 VPS39, HOPS complex subunit protein-coding 87 0.01037
-23341 DNAJC16 DnaJ heat shock protein family (Hsp40) member C16 protein-coding 68 0.008107
-23344 ESYT1 extended synaptotagmin 1 protein-coding 106 0.01264
-23345 SYNE1 spectrin repeat containing nuclear envelope protein 1 protein-coding 964 0.1149
-23347 SMCHD1 structural maintenance of chromosomes flexible hinge domain containing 1 protein-coding 189 0.02253
-23348 DOCK9 dedicator of cytokinesis 9 protein-coding 165 0.01967
-23350 U2SURP U2 snRNP associated SURP domain containing protein-coding 118 0.01407
-23351 KHNYN KH and NYN domain containing protein-coding 64 0.00763
-23352 UBR4 ubiquitin protein ligase E3 component n-recognin 4 protein-coding 367 0.04375
-23353 SUN1 Sad1 and UNC84 domain containing 1 protein-coding 99 0.0118
-23354 HAUS5 HAUS augmin like complex subunit 5 protein-coding 80 0.009537
-23355 VPS8 VPS8, CORVET complex subunit protein-coding 143 0.01705
-23357 ANGEL1 angel homolog 1 protein-coding 70 0.008345
-23358 USP24 ubiquitin specific peptidase 24 protein-coding 185 0.02206
-23359 FAM189A1 family with sequence similarity 189 member A1 protein-coding 36 0.004292
-23360 FNBP4 formin binding protein 4 protein-coding 106 0.01264
-23361 ZNF629 zinc finger protein 629 protein-coding 80 0.009537
-23362 PSD3 pleckstrin and Sec7 domain containing 3 protein-coding 117 0.01395
-23363 OBSL1 obscurin like 1 protein-coding 171 0.02039
-23365 ARHGEF12 Rho guanine nucleotide exchange factor 12 protein-coding 156 0.0186
-23366 KIAA0895 KIAA0895 protein-coding 51 0.00608
-23367 LARP1 La ribonucleoprotein domain family member 1 protein-coding 120 0.01431
-23368 PPP1R13B protein phosphatase 1 regulatory subunit 13B protein-coding 112 0.01335
-23369 PUM2 pumilio RNA binding family member 2 protein-coding 120 0.01431
-23370 ARHGEF18 Rho/Rac guanine nucleotide exchange factor 18 protein-coding 127 0.01514
-23371 TNS2 tensin 2 protein-coding 119 0.01419
-23373 CRTC1 CREB regulated transcription coactivator 1 protein-coding 70 0.008345
-23376 UFL1 UFM1 specific ligase 1 protein-coding 95 0.01133
-23378 RRP8 ribosomal RNA processing 8 protein-coding 64 0.00763
-23379 ICE1 interactor of little elongation complex ELL subunit 1 protein-coding 264 0.03147
-23380 SRGAP2 SLIT-ROBO Rho GTPase activating protein 2 protein-coding 215 0.02563
-23381 SMG5 SMG5, nonsense mediated mRNA decay factor protein-coding 111 0.01323
-23382 AHCYL2 adenosylhomocysteinase like 2 protein-coding 71 0.008464
-23383 MAU2 MAU2 sister chromatid cohesion factor protein-coding 60 0.007153
-23384 SPECC1L sperm antigen with calponin homology and coiled-coil domains 1 like protein-coding 109 0.01299
-23385 NCSTN nicastrin protein-coding 101 0.01204
-23386 NUDCD3 NudC domain containing 3 protein-coding 34 0.004053
-23387 SIK3 SIK family kinase 3 protein-coding 129 0.01538
-23389 MED13L mediator complex subunit 13 like protein-coding 196 0.02337
-23390 ZDHHC17 zinc finger DHHC-type containing 17 protein-coding 74 0.008822
-23392 ECPAS Ecm29 proteasome adaptor and scaffold protein-coding 161 0.01919
-23394 ADNP activity dependent neuroprotector homeobox protein-coding 123 0.01466
-23395 LARS2 leucyl-tRNA synthetase 2, mitochondrial protein-coding 72 0.008584
-23396 PIP5K1C phosphatidylinositol-4-phosphate 5-kinase type 1 gamma protein-coding 83 0.009895
-23397 NCAPH non-SMC condensin I complex subunit H protein-coding 86 0.01025
-23398 PPWD1 peptidylprolyl isomerase domain and WD repeat containing 1 protein-coding 63 0.007511
-23399 CTDNEP1 CTD nuclear envelope phosphatase 1 protein-coding 18 0.002146
-23400 ATP13A2 ATPase cation transporting 13A2 protein-coding 120 0.01431
-23403 FBXO46 F-box protein 46 protein-coding 65 0.007749
-23404 EXOSC2 exosome component 2 protein-coding 20 0.002384
-23405 DICER1 dicer 1, ribonuclease III protein-coding 192 0.02289
-23406 COTL1 coactosin like F-actin binding protein 1 protein-coding 18 0.002146
-23408 SIRT5 sirtuin 5 protein-coding 39 0.004649
-23409 SIRT4 sirtuin 4 protein-coding 41 0.004888
-23410 SIRT3 sirtuin 3 protein-coding 34 0.004053
-23411 SIRT1 sirtuin 1 protein-coding 71 0.008464
-23412 COMMD3 COMM domain containing 3 protein-coding 15 0.001788
-23413 NCS1 neuronal calcium sensor 1 protein-coding 24 0.002861
-23414 ZFPM2 zinc finger protein, FOG family member 2 protein-coding 255 0.0304
-23415 KCNH4 potassium voltage-gated channel subfamily H member 4 protein-coding 177 0.0211
-23416 KCNH3 potassium voltage-gated channel subfamily H member 3 protein-coding 133 0.01586
-23417 MLYCD malonyl-CoA decarboxylase protein-coding 35 0.004173
-23418 CRB1 crumbs 1, cell polarity complex component protein-coding 308 0.03672
-23420 NOMO1 NODAL modulator 1 protein-coding 101 0.01204
-23421 ITGB3BP integrin subunit beta 3 binding protein protein-coding 20 0.002384
-23423 TMED3 transmembrane p24 trafficking protein 3 protein-coding 21 0.002504
-23424 TDRD7 tudor domain containing 7 protein-coding 95 0.01133
-23426 GRIP1 glutamate receptor interacting protein 1 protein-coding 156 0.0186
-23428 SLC7A8 solute carrier family 7 member 8 protein-coding 80 0.009537
-23429 RYBP RING1 and YY1 binding protein protein-coding 34 0.004053
-23430 TPSD1 tryptase delta 1 protein-coding 37 0.004411
-23431 AP4E1 adaptor related protein complex 4 epsilon 1 subunit protein-coding 106 0.01264
-23432 GPR161 G protein-coupled receptor 161 protein-coding 74 0.008822
-23433 RHOQ ras homolog family member Q protein-coding 22 0.002623
-23434 LINC01565 long intergenic non-protein coding RNA 1565 ncRNA 22 0.002623
-23435 TARDBP TAR DNA binding protein protein-coding 37 0.004411
-23436 CELA3B chymotrypsin like elastase family member 3B protein-coding 41 0.004888
-23438 HARS2 histidyl-tRNA synthetase 2, mitochondrial protein-coding 38 0.00453
-23439 ATP1B4 ATPase Na+/K+ transporting family member beta 4 protein-coding 81 0.009657
-23440 OTP orthopedia homeobox protein-coding 39 0.004649
-23443 SLC35A3 solute carrier family 35 member A3 protein-coding 36 0.004292
-23446 SLC44A1 solute carrier family 44 member 1 protein-coding 81 0.009657
-23450 SF3B3 splicing factor 3b subunit 3 protein-coding 206 0.02456
-23451 SF3B1 splicing factor 3b subunit 1 protein-coding 207 0.02468
-23452 ANGPTL2 angiopoietin like 2 protein-coding 58 0.006915
-23456 ABCB10 ATP binding cassette subfamily B member 10 protein-coding 78 0.009299
-23457 ABCB9 ATP binding cassette subfamily B member 9 protein-coding 61 0.007272
-23460 ABCA6 ATP binding cassette subfamily A member 6 protein-coding 187 0.02229
-23461 ABCA5 ATP binding cassette subfamily A member 5 protein-coding 176 0.02098
-23462 HEY1 hes related family bHLH transcription factor with YRPW motif 1 protein-coding 31 0.003696
-23463 ICMT isoprenylcysteine carboxyl methyltransferase protein-coding 25 0.00298
-23464 GCAT glycine C-acetyltransferase protein-coding 49 0.005842
-23466 CBX6 chromobox 6 protein-coding 52 0.006199
-23467 NPTXR neuronal pentraxin receptor protein-coding 41 0.004888
-23468 CBX5 chromobox 5 protein-coding 32 0.003815
-23469 PHF3 PHD finger protein 3 protein-coding 224 0.0267
-23471 TRAM1 translocation associated membrane protein 1 protein-coding 58 0.006915
-23473 CAPN7 calpain 7 protein-coding 69 0.008226
-23474 ETHE1 ETHE1, persulfide dioxygenase protein-coding 22 0.002623
-23475 QPRT quinolinate phosphoribosyltransferase protein-coding 22 0.002623
-23476 BRD4 bromodomain containing 4 protein-coding 147 0.01753
-23478 SEC11A SEC11 homolog A, signal peptidase complex subunit protein-coding 22 0.002623
-23479 ISCU iron-sulfur cluster assembly enzyme protein-coding 11 0.001311
-23480 SEC61G Sec61 translocon gamma subunit protein-coding 10 0.001192
-23481 PES1 pescadillo ribosomal biogenesis factor 1 protein-coding 62 0.007392
-23483 TGDS TDP-glucose 4,6-dehydratase protein-coding 38 0.00453
-23484 LEPROTL1 leptin receptor overlapping transcript like 1 protein-coding 9 0.001073
-23491 CES3 carboxylesterase 3 protein-coding 71 0.008464
-23492 CBX7 chromobox 7 protein-coding 26 0.0031
-23493 HEY2 hes related family bHLH transcription factor with YRPW motif 2 protein-coding 54 0.006438
-23495 TNFRSF13B TNF receptor superfamily member 13B protein-coding 43 0.005126
-23498 HAAO 3-hydroxyanthranilate 3,4-dioxygenase protein-coding 34 0.004053
-23499 MACF1 microtubule-actin crosslinking factor 1 protein-coding 426 0.05079
-23500 DAAM2 dishevelled associated activator of morphogenesis 2 protein-coding 153 0.01824
-23503 ZFYVE26 zinc finger FYVE-type containing 26 protein-coding 209 0.02492
-23504 RIMBP2 RIMS binding protein 2 protein-coding 217 0.02587
-23505 TMEM131 transmembrane protein 131 protein-coding 185 0.02206
-23506 BICRAL BRD4 interacting chromatin remodeling complex associated protein like protein-coding 116 0.01383
-23507 LRRC8B leucine rich repeat containing 8 VRAC subunit B protein-coding 77 0.00918
-23508 TTC9 tetratricopeptide repeat domain 9 protein-coding 15 0.001788
-23509 POFUT1 protein O-fucosyltransferase 1 protein-coding 41 0.004888
-23510 KCTD2 potassium channel tetramerization domain containing 2 protein-coding 30 0.003577
-23511 NUP188 nucleoporin 188 protein-coding 135 0.01609
-23512 SUZ12 SUZ12 polycomb repressive complex 2 subunit protein-coding 72 0.008584
-23513 SCRIB scribbled planar cell polarity protein protein-coding 168 0.02003
-23514 SPIDR scaffold protein involved in DNA repair protein-coding 93 0.01109
-23515 MORC3 MORC family CW-type zinc finger 3 protein-coding 99 0.0118
-23516 SLC39A14 solute carrier family 39 member 14 protein-coding 44 0.005246
-23517 MTREX Mtr4 exosome RNA helicase protein-coding 116 0.01383
-23518 R3HDM1 R3H domain containing 1 protein-coding 109 0.01299
-23519 ANP32D acidic nuclear phosphoprotein 32 family member D protein-coding 24 0.002861
-23521 RPL13A ribosomal protein L13a protein-coding 24 0.002861
-23522 KAT6B lysine acetyltransferase 6B protein-coding 169 0.02015
-23523 CABIN1 calcineurin binding protein 1 protein-coding 177 0.0211
-23524 SRRM2 serine/arginine repetitive matrix 2 protein-coding 307 0.0366
-23526 ARHGAP45 Rho GTPase activating protein 45 protein-coding 104 0.0124
-23527 ACAP2 ArfGAP with coiled-coil, ankyrin repeat and PH domains 2 protein-coding 89 0.01061
-23528 ZNF281 zinc finger protein 281 protein-coding 84 0.01001
-23529 CLCF1 cardiotrophin like cytokine factor 1 protein-coding 42 0.005007
-23530 NNT nicotinamide nucleotide transhydrogenase protein-coding 116 0.01383
-23531 MMD monocyte to macrophage differentiation associated protein-coding 28 0.003338
-23532 PRAME preferentially expressed antigen in melanoma protein-coding 71 0.008464
-23533 PIK3R5 phosphoinositide-3-kinase regulatory subunit 5 protein-coding 105 0.01252
-23534 TNPO3 transportin 3 protein-coding 102 0.01216
-23536 ADAT1 adenosine deaminase, tRNA specific 1 protein-coding 56 0.006676
-23538 OR52A1 olfactory receptor family 52 subfamily A member 1 protein-coding 62 0.007392
-23539 SLC16A8 solute carrier family 16 member 8 protein-coding 19 0.002265
-23541 SEC14L2 SEC14 like lipid binding 2 protein-coding 101 0.01204
-23542 MAPK8IP2 mitogen-activated protein kinase 8 interacting protein 2 protein-coding 40 0.004769
-23543 RBFOX2 RNA binding fox-1 homolog 2 protein-coding 39 0.004649
-23544 SEZ6L seizure related 6 homolog like protein-coding 168 0.02003
-23545 ATP6V0A2 ATPase H+ transporting V0 subunit a2 protein-coding 86 0.01025
-23546 SYNGR4 synaptogyrin 4 protein-coding 31 0.003696
-23547 LILRA4 leukocyte immunoglobulin like receptor A4 protein-coding 101 0.01204
-23548 TTC33 tetratricopeptide repeat domain 33 protein-coding 36 0.004292
-23549 DNPEP aspartyl aminopeptidase protein-coding 50 0.005961
-23550 PSD4 pleckstrin and Sec7 domain containing 4 protein-coding 112 0.01335
-23551 RASD2 RASD family member 2 protein-coding 48 0.005722
-23552 CDK20 cyclin dependent kinase 20 protein-coding 37 0.004411
-23553 HYAL4 hyaluronoglucosaminidase 4 protein-coding 76 0.009061
-23554 TSPAN12 tetraspanin 12 protein-coding 41 0.004888
-23555 TSPAN15 tetraspanin 15 protein-coding 20 0.002384
-23556 PIGN phosphatidylinositol glycan anchor biosynthesis class N protein-coding 70 0.008345
-23557 SNAPIN SNAP associated protein protein-coding 12 0.001431
-23558 WBP2 WW domain binding protein 2 protein-coding 26 0.0031
-23559 WBP1 WW domain binding protein 1 protein-coding 24 0.002861
-23560 GTPBP4 GTP binding protein 4 protein-coding 80 0.009537
-23562 CLDN14 claudin 14 protein-coding 23 0.002742
-23563 CHST5 carbohydrate sulfotransferase 5 protein-coding 76 0.009061
-23564 DDAH2 dimethylarginine dimethylaminohydrolase 2 protein-coding 23 0.002742
-23566 LPAR3 lysophosphatidic acid receptor 3 protein-coding 50 0.005961
-23567 ZNF346 zinc finger protein 346 protein-coding 29 0.003457
-23568 ARL2BP ADP ribosylation factor like GTPase 2 binding protein protein-coding 16 0.001907
-23569 PADI4 peptidyl arginine deiminase 4 protein-coding 80 0.009537
-23576 DDAH1 dimethylarginine dimethylaminohydrolase 1 protein-coding 27 0.003219
-23580 CDC42EP4 CDC42 effector protein 4 protein-coding 36 0.004292
-23581 CASP14 caspase 14 protein-coding 41 0.004888
-23582 CCNDBP1 cyclin D1 binding protein 1 protein-coding 30 0.003577
-23583 SMUG1 single-strand-selective monofunctional uracil-DNA glycosylase 1 protein-coding 24 0.002861
-23584 VSIG2 V-set and immunoglobulin domain containing 2 protein-coding 86 0.01025
-23585 TMEM50A transmembrane protein 50A protein-coding 29 0.003457
-23586 DDX58 DExD/H-box helicase 58 protein-coding 98 0.01168
-23587 ELP5 elongator acetyltransferase complex subunit 5 protein-coding 34 0.004053
-23588 KLHDC2 kelch domain containing 2 protein-coding 41 0.004888
-23589 CARHSP1 calcium regulated heat stable protein 1 protein-coding 18 0.002146
-23590 PDSS1 decaprenyl diphosphate synthase subunit 1 protein-coding 45 0.005365
-23592 LEMD3 LEM domain containing 3 protein-coding 70 0.008345
-23593 HEBP2 heme binding protein 2 protein-coding 21 0.002504
-23594 ORC6 origin recognition complex subunit 6 protein-coding 20 0.002384
-23595 ORC3 origin recognition complex subunit 3 protein-coding 103 0.01228
-23596 OPN3 opsin 3 protein-coding 34 0.004053
-23597 ACOT9 acyl-CoA thioesterase 9 protein-coding 43 0.005126
-23598 PATZ1 POZ/BTB and AT hook containing zinc finger 1 protein-coding 68 0.008107
-23600 AMACR alpha-methylacyl-CoA racemase protein-coding 55 0.006557
-23601 CLEC5A C-type lectin domain containing 5A protein-coding 31 0.003696
-23603 CORO1C coronin 1C protein-coding 51 0.00608
-23604 DAPK2 death associated protein kinase 2 protein-coding 48 0.005722
-23607 CD2AP CD2 associated protein protein-coding 73 0.008703
-23608 MKRN1 makorin ring finger protein 1 protein-coding 41 0.004888
-23609 MKRN2 makorin ring finger protein 2 protein-coding 42 0.005007
-23612 PHLDA3 pleckstrin homology like domain family A member 3 protein-coding 20 0.002384
-23613 ZMYND8 zinc finger MYND-type containing 8 protein-coding 151 0.018
-23615 PYY2 peptide YY 2 (pseudogene) pseudo 15 0.001788
-23616 SH3BP1 SH3 domain binding protein 1 protein-coding 59 0.007034
-23617 TSSK2 testis specific serine kinase 2 protein-coding 50 0.005961
-23619 ZIM2 zinc finger imprinted 2 protein-coding 104 0.0124
-23620 NTSR2 neurotensin receptor 2 protein-coding 45 0.005365
-23621 BACE1 beta-secretase 1 protein-coding 46 0.005484
-23623 RUSC1 RUN and SH3 domain containing 1 protein-coding 83 0.009895
-23624 CBLC Cbl proto-oncogene C protein-coding 47 0.005603
-23625 FAM89B family with sequence similarity 89 member B protein-coding 11 0.001311
-23626 SPO11 SPO11, initiator of meiotic double stranded breaks protein-coding 52 0.006199
-23627 PRND prion like protein doppel protein-coding 23 0.002742
-23630 KCNE5 potassium voltage-gated channel subfamily E regulatory subunit 5 protein-coding 19 0.002265
-23632 CA14 carbonic anhydrase 14 protein-coding 53 0.006319
-23633 KPNA6 karyopherin subunit alpha 6 protein-coding 92 0.01097
-23635 SSBP2 single stranded DNA binding protein 2 protein-coding 42 0.005007
-23636 NUP62 nucleoporin 62 protein-coding 74 0.008822
-23637 RABGAP1 RAB GTPase activating protein 1 protein-coding 106 0.01264
-23639 LRRC6 leucine rich repeat containing 6 protein-coding 85 0.01013
-23640 HSPBP1 HSPA (Hsp70) binding protein 1 protein-coding 33 0.003934
-23641 LDOC1 LDOC1, regulator of NFKB signaling protein-coding 42 0.005007
-23643 LY96 lymphocyte antigen 96 protein-coding 36 0.004292
-23644 EDC4 enhancer of mRNA decapping 4 protein-coding 115 0.01371
-23645 PPP1R15A protein phosphatase 1 regulatory subunit 15A protein-coding 66 0.007868
-23646 PLD3 phospholipase D family member 3 protein-coding 67 0.007988
-23647 ARFIP2 ADP ribosylation factor interacting protein 2 protein-coding 37 0.004411
-23648 SSBP3 single stranded DNA binding protein 3 protein-coding 43 0.005126
-23649 POLA2 DNA polymerase alpha 2, accessory subunit protein-coding 52 0.006199
-23650 TRIM29 tripartite motif containing 29 protein-coding 85 0.01013
-23654 PLXNB2 plexin B2 protein-coding 247 0.02945
-23657 SLC7A11 solute carrier family 7 member 11 protein-coding 59 0.007034
-23658 LSM5 LSM5 homolog, U6 small nuclear RNA and mRNA degradation associated protein-coding 9 0.001073
-23659 PLA2G15 phospholipase A2 group XV protein-coding 45 0.005365
-23660 ZKSCAN5 zinc finger with KRAB and SCAN domains 5 protein-coding 92 0.01097
-23666 UBBP4 ubiquitin B pseudogene 4 pseudo 106 0.01264
-23670 CEMIP2 cell migration inducing hyaluronidase 2 protein-coding 150 0.01788
-23671 TMEFF2 transmembrane protein with EGF like and two follistatin like domains 2 protein-coding 67 0.007988
-23673 STX12 syntaxin 12 protein-coding 20 0.002384
-23676 SMPX small muscle protein, X-linked protein-coding 11 0.001311
-23677 SH3BP4 SH3 domain binding protein 4 protein-coding 127 0.01514
-23678 SGK3 serum/glucocorticoid regulated kinase family member 3 protein-coding 129 0.01538
-23682 RAB38 RAB38, member RAS oncogene family protein-coding 31 0.003696
-23683 PRKD3 protein kinase D3 protein-coding 88 0.01049
-23704 KCNE4 potassium voltage-gated channel subfamily E regulatory subunit 4 protein-coding 25 0.00298
-23705 CADM1 cell adhesion molecule 1 protein-coding 84 0.01001
-23708 GSPT2 G1 to S phase transition 2 protein-coding 99 0.0118
-23710 GABARAPL1 GABA type A receptor associated protein like 1 protein-coding 21 0.002504
-23729 SHPK sedoheptulokinase protein-coding 94 0.01121
-23731 TMEM245 transmembrane protein 245 protein-coding 57 0.006795
-23732 FRRS1L ferric chelate reductase 1 like protein-coding 27 0.003219
-23739 C3CER1 chromosome 3 common eliminated region 1 other 40 0.004769
-23741 EID1 EP300 interacting inhibitor of differentiation 1 protein-coding 23 0.002742
-23742 NPAP1 nuclear pore associated protein 1 protein-coding 356 0.04244
-23743 BHMT2 betaine--homocysteine S-methyltransferase 2 protein-coding 53 0.006319
-23746 AIPL1 aryl hydrocarbon receptor interacting protein like 1 protein-coding 45 0.005365
-23753 SDF2L1 stromal cell derived factor 2 like 1 protein-coding 13 0.00155
-23759 PPIL2 peptidylprolyl isomerase like 2 protein-coding 55 0.006557
-23760 PITPNB phosphatidylinositol transfer protein beta protein-coding 26 0.0031
-23761 PISD phosphatidylserine decarboxylase protein-coding 190 0.02265
-23762 OSBP2 oxysterol binding protein 2 protein-coding 74 0.008822
-23764 MAFF MAF bZIP transcription factor F protein-coding 11 0.001311
-23765 IL17RA interleukin 17 receptor A protein-coding 82 0.009776
-23766 GABARAPL3 GABA type A receptor associated protein like 3 pseudogene pseudo 8 0.0009537
-23767 FLRT3 fibronectin leucine rich transmembrane protein 3 protein-coding 90 0.01073
-23768 FLRT2 fibronectin leucine rich transmembrane protein 2 protein-coding 185 0.02206
-23769 FLRT1 fibronectin leucine rich transmembrane protein 1 protein-coding 54 0.006438
-23770 FKBP8 FK506 binding protein 8 protein-coding 54 0.006438
-23774 BRD1 bromodomain containing 1 protein-coding 225 0.02682
-23779 ARHGAP8 Rho GTPase activating protein 8 protein-coding 34 0.004053
-23780 APOL2 apolipoprotein L2 protein-coding 33 0.003934
-23784 POTEH POTE ankyrin domain family member H protein-coding 175 0.02086
-23786 BCL2L13 BCL2 like 13 protein-coding 50 0.005961
-23787 MTCH1 mitochondrial carrier 1 protein-coding 85 0.01013
-23788 MTCH2 mitochondrial carrier 2 protein-coding 38 0.00453
-24137 KIF4A kinesin family member 4A protein-coding 146 0.01741
-24138 IFIT5 interferon induced protein with tetratricopeptide repeats 5 protein-coding 41 0.004888
-24139 EML2 echinoderm microtubule associated protein like 2 protein-coding 85 0.01013
-24140 FTSJ1 FtsJ RNA methyltransferase homolog 1 protein-coding 39 0.004649
-24141 LAMP5 lysosomal associated membrane protein family member 5 protein-coding 61 0.007272
-24142 NAT6 N-acetyltransferase 6 protein-coding 25 0.00298
-24144 TFIP11 tuftelin interacting protein 11 protein-coding 82 0.009776
-24145 PANX1 pannexin 1 protein-coding 48 0.005722
-24146 CLDN15 claudin 15 protein-coding 24 0.002861
-24147 FJX1 four jointed box 1 protein-coding 18 0.002146
-24148 PRPF6 pre-mRNA processing factor 6 protein-coding 100 0.01192
-24149 ZNF318 zinc finger protein 318 protein-coding 202 0.02408
-25758 KIAA1549L KIAA1549 like protein-coding 232 0.02766
-25759 SHC2 SHC adaptor protein 2 protein-coding 58 0.006915
-25763 HYPM huntingtin interacting protein M protein-coding 21 0.002504
-25764 HYPK huntingtin interacting protein K protein-coding 14 0.001669
-25766 PRPF40B pre-mRNA processing factor 40 homolog B protein-coding 106 0.01264
-25769 SLC24A2 solute carrier family 24 member 2 protein-coding 114 0.01359
-25770 C22orf31 chromosome 22 open reading frame 31 protein-coding 29 0.003457
-25771 TBC1D22A TBC1 domain family member 22A protein-coding 75 0.008941
-25775 C22orf24 chromosome 22 open reading frame 24 protein-coding 13 0.00155
-25776 CBY1 chibby family member 1, beta catenin antagonist protein-coding 13 0.00155
-25777 SUN2 Sad1 and UNC84 domain containing 2 protein-coding 68 0.008107
-25778 DSTYK dual serine/threonine and tyrosine protein kinase protein-coding 103 0.01228
-25780 RASGRP3 RAS guanyl releasing protein 3 protein-coding 106 0.01264
-25782 RAB3GAP2 RAB3 GTPase activating non-catalytic protein subunit 2 protein-coding 165 0.01967
-25787 DGCR9 DiGeorge syndrome critical region gene 9 (non-protein coding) ncRNA 31 0.003696
-25788 RAD54B RAD54 homolog B protein-coding 102 0.01216
-25789 TMEM59L transmembrane protein 59 like protein-coding 51 0.00608
-25790 CFAP45 cilia and flagella associated protein 45 protein-coding 105 0.01252
-25791 NGEF neuronal guanine nucleotide exchange factor protein-coding 91 0.01085
-25792 CIZ1 CDKN1A interacting zinc finger protein 1 protein-coding 77 0.00918
-25793 FBXO7 F-box protein 7 protein-coding 67 0.007988
-25794 FSCN2 fascin actin-bundling protein 2, retinal protein-coding 30 0.003577
-25796 PGLS 6-phosphogluconolactonase protein-coding 20 0.002384
-25797 QPCT glutaminyl-peptide cyclotransferase protein-coding 49 0.005842
-25798 BRI3 brain protein I3 protein-coding 7 0.0008345
-25799 ZNF324 zinc finger protein 324 protein-coding 58 0.006915
-25800 SLC39A6 solute carrier family 39 member 6 protein-coding 84 0.01001
-25801 GCA grancalcin protein-coding 28 0.003338
-25802 LMOD1 leiomodin 1 protein-coding 68 0.008107
-25803 SPDEF SAM pointed domain containing ETS transcription factor protein-coding 45 0.005365
-25804 LSM4 LSM4 homolog, U6 small nuclear RNA and mRNA degradation associated protein-coding 39 0.004649
-25805 BAMBI BMP and activin membrane bound inhibitor protein-coding 41 0.004888
-25806 VAX2 ventral anterior homeobox 2 protein-coding 42 0.005007
-25807 RHBDD3 rhomboid domain containing 3 protein-coding 18 0.002146
-25809 TTLL1 tubulin tyrosine ligase like 1 protein-coding 57 0.006795
-25812 POM121L1P POM121 transmembrane nucleoporin like 1, pseudogene pseudo 2 0.0002384
-25813 SAMM50 SAMM50 sorting and assembly machinery component protein-coding 52 0.006199
-25814 ATXN10 ataxin 10 protein-coding 44 0.005246
-25816 TNFAIP8 TNF alpha induced protein 8 protein-coding 19 0.002265
-25817 FAM19A5 family with sequence similarity 19 member A5, C-C motif chemokine like protein-coding 36 0.004292
-25818 KLK5 kallikrein related peptidase 5 protein-coding 46 0.005484
-25819 NOCT nocturnin protein-coding 38 0.00453
-25820 ARIH1 ariadne RBR E3 ubiquitin protein ligase 1 protein-coding 47 0.005603
-25821 MTO1 mitochondrial tRNA translation optimization 1 protein-coding 56 0.006676
-25822 DNAJB5 DnaJ heat shock protein family (Hsp40) member B5 protein-coding 50 0.005961
-25823 TPSG1 tryptase gamma 1 protein-coding 24 0.002861
-25824 PRDX5 peroxiredoxin 5 protein-coding 56 0.006676
-25825 BACE2 beta-site APP-cleaving enzyme 2 protein-coding 61 0.007272
-25827 FBXL2 F-box and leucine rich repeat protein 2 protein-coding 51 0.00608
-25828 TXN2 thioredoxin 2 protein-coding 28 0.003338
-25829 TMEM184B transmembrane protein 184B protein-coding 35 0.004173
-25830 SULT4A1 sulfotransferase family 4A member 1 protein-coding 34 0.004053
-25831 HECTD1 HECT domain E3 ubiquitin protein ligase 1 protein-coding 209 0.02492
-25832 NBPF14 NBPF member 14 protein-coding 56 0.006676
-25833 POU2F3 POU class 2 homeobox 3 protein-coding 53 0.006319
-25834 MGAT4C MGAT4 family member C protein-coding 129 0.01538
-25836 NIPBL NIPBL, cohesin loading factor protein-coding 341 0.04065
-25837 RAB26 RAB26, member RAS oncogene family protein-coding 22 0.002623
-25839 COG4 component of oligomeric golgi complex 4 protein-coding 75 0.008941
-25840 METTL7A methyltransferase like 7A protein-coding 23 0.002742
-25841 ABTB2 ankyrin repeat and BTB domain containing 2 protein-coding 78 0.009299
-25842 ASF1A anti-silencing function 1A histone chaperone protein-coding 16 0.001907
-25843 MOB4 MOB family member 4, phocein protein-coding 1 0.0001192
-25844 YIPF3 Yip1 domain family member 3 protein-coding 38 0.00453
-25847 ANAPC13 anaphase promoting complex subunit 13 protein-coding 9 0.001073
-25849 PARM1 prostate androgen-regulated mucin-like protein 1 protein-coding 42 0.005007
-25850 ZNF345 zinc finger protein 345 protein-coding 85 0.01013
-25851 TECPR1 tectonin beta-propeller repeat containing 1 protein-coding 113 0.01347
-25852 ARMC8 armadillo repeat containing 8 protein-coding 70 0.008345
-25853 DCAF12 DDB1 and CUL4 associated factor 12 protein-coding 65 0.007749
-25854 FAM149A family with sequence similarity 149 member A protein-coding 52 0.006199
-25855 BRMS1 breast cancer metastasis suppressor 1 protein-coding 51 0.00608
-25858 CATSPERZ catsper channel auxiliary subunit zeta protein-coding 7 0.0008345
-25859 PART1 prostate androgen-regulated transcript 1 (non-protein coding) ncRNA 2 0.0002384
-25861 WHRN whirlin protein-coding 77 0.00918
-25862 USP49 ubiquitin specific peptidase 49 protein-coding 66 0.007868
-25864 ABHD14A abhydrolase domain containing 14A protein-coding 23 0.002742
-25865 PRKD2 protein kinase D2 protein-coding 189 0.02253
-25870 SUMF2 sulfatase modifying factor 2 protein-coding 31 0.003696
-25871 NEPRO nucleolus and neural progenitor protein protein-coding 62 0.007392
-25873 RPL36 ribosomal protein L36 protein-coding 7 0.0008345
-25874 MPC2 mitochondrial pyruvate carrier 2 protein-coding 15 0.001788
-25875 LETMD1 LETM1 domain containing 1 protein-coding 52 0.006199
-25876 SPEF1 sperm flagellar 1 protein-coding 17 0.002027
-25878 MXRA5 matrix remodeling associated 5 protein-coding 401 0.04781
-25879 DCAF13 DDB1 and CUL4 associated factor 13 protein-coding 95 0.01133
-25880 TMEM186 transmembrane protein 186 protein-coding 24 0.002861
-25884 CHRDL2 chordin like 2 protein-coding 49 0.005842
-25885 POLR1A RNA polymerase I subunit A protein-coding 215 0.02563
-25886 POC1A POC1 centriolar protein A protein-coding 33 0.003934
-25888 ZNF473 zinc finger protein 473 protein-coding 100 0.01192
-25890 ABI3BP ABI family member 3 binding protein protein-coding 160 0.01907
-25891 PAMR1 peptidase domain containing associated with muscle regeneration 1 protein-coding 117 0.01395
-25893 TRIM58 tripartite motif containing 58 protein-coding 133 0.01586
-25894 PLEKHG4 pleckstrin homology and RhoGEF domain containing G4 protein-coding 113 0.01347
-25895 EEF1AKMT3 EEF1A lysine methyltransferase 3 protein-coding 22 0.002623
-25896 INTS7 integrator complex subunit 7 protein-coding 93 0.01109
-25897 RNF19A ring finger protein 19A, RBR E3 ubiquitin protein ligase protein-coding 97 0.01156
-25898 RCHY1 ring finger and CHY zinc finger domain containing 1 protein-coding 31 0.003696
-25900 IFFO1 intermediate filament family orphan 1 protein-coding 61 0.007272
-25901 CCDC28A coiled-coil domain containing 28A protein-coding 43 0.005126
-25902 MTHFD1L methylenetetrahydrofolate dehydrogenase (NADP+ dependent) 1 like protein-coding 101 0.01204
-25903 OLFML2B olfactomedin like 2B protein-coding 149 0.01776
-25904 CNOT10 CCR4-NOT transcription complex subunit 10 protein-coding 74 0.008822
-25906 ANAPC15 anaphase promoting complex subunit 15 protein-coding 20 0.002384
-25907 TMEM158 transmembrane protein 158 (gene/pseudogene) protein-coding 3 0.0003577
-25909 AHCTF1 AT-hook containing transcription factor 1 protein-coding 234 0.0279
-25911 DPCD deleted in primary ciliary dyskinesia homolog (mouse) protein-coding 25 0.00298
-25912 C1orf43 chromosome 1 open reading frame 43 protein-coding 32 0.003815
-25913 POT1 protection of telomeres 1 protein-coding 104 0.0124
-25914 RTTN rotatin protein-coding 209 0.02492
-25915 NDUFAF3 NADH:ubiquinone oxidoreductase complex assembly factor 3 protein-coding 22 0.002623
-25917 THUMPD3 THUMP domain containing 3 protein-coding 49 0.005842
-25920 NELFB negative elongation factor complex member B protein-coding 61 0.007272
-25921 ZDHHC5 zinc finger DHHC-type containing 5 protein-coding 79 0.009418
-25923 ATL3 atlastin GTPase 3 protein-coding 45 0.005365
-25924 MYRIP myosin VIIA and Rab interacting protein protein-coding 97 0.01156
-25925 ZNF521 zinc finger protein 521 protein-coding 278 0.03314
-25926 NOL11 nucleolar protein 11 protein-coding 65 0.007749
-25927 CNRIP1 cannabinoid receptor interacting protein 1 protein-coding 37 0.004411
-25928 SOSTDC1 sclerostin domain containing 1 protein-coding 14 0.001669
-25929 GEMIN5 gem nuclear organelle associated protein 5 protein-coding 117 0.01395
-25930 PTPN23 protein tyrosine phosphatase, non-receptor type 23 protein-coding 122 0.01454
-25932 CLIC4 chloride intracellular channel 4 protein-coding 26 0.0031
-25934 NIPSNAP3A nipsnap homolog 3A protein-coding 22 0.002623
-25936 NSL1 NSL1, MIS12 kinetochore complex component protein-coding 29 0.003457
-25937 WWTR1 WW domain containing transcription regulator 1 protein-coding 80 0.009537
-25938 HEATR5A HEAT repeat containing 5A protein-coding 99 0.0118
-25939 SAMHD1 SAM and HD domain containing deoxynucleoside triphosphate triphosphohydrolase 1 protein-coding 103 0.01228
-25940 FAM98A family with sequence similarity 98 member A protein-coding 71 0.008464
-25941 TPGS2 tubulin polyglutamylase complex subunit 2 protein-coding 29 0.003457
-25942 SIN3A SIN3 transcription regulator family member A protein-coding 173 0.02062
-25943 C20orf194 chromosome 20 open reading frame 194 protein-coding 137 0.01633
-25945 NECTIN3 nectin cell adhesion molecule 3 protein-coding 101 0.01204
-25946 ZNF385A zinc finger protein 385A protein-coding 40 0.004769
-25948 KBTBD2 kelch repeat and BTB domain containing 2 protein-coding 70 0.008345
-25949 SYF2 SYF2 pre-mRNA splicing factor protein-coding 28 0.003338
-25950 RWDD3 RWD domain containing 3 protein-coding 36 0.004292
-25953 PNKD paroxysmal nonkinesigenic dyskinesia protein-coding 107 0.01276
-25956 SEC31B SEC31 homolog B, COPII coat complex component protein-coding 111 0.01323
-25957 PNISR PNN interacting serine and arginine rich protein protein-coding 123 0.01466
-25959 KANK2 KN motif and ankyrin repeat domains 2 protein-coding 88 0.01049
-25960 ADGRA2 adhesion G protein-coupled receptor A2 protein-coding 125 0.0149
-25961 NUDT13 nudix hydrolase 13 protein-coding 39 0.004649
-25962 VIRMA vir like m6A methyltransferase associated protein-coding 194 0.02313
-25963 TMEM87A transmembrane protein 87A protein-coding 59 0.007034
-25966 C2CD2 C2 calcium dependent domain containing 2 protein-coding 56 0.006676
-25970 SH2B1 SH2B adaptor protein 1 protein-coding 84 0.01001
-25972 UNC50 unc-50 inner nuclear membrane RNA binding protein protein-coding 26 0.0031
-25973 PARS2 prolyl-tRNA synthetase 2, mitochondrial protein-coding 46 0.005484
-25974 MMACHC methylmalonic aciduria (cobalamin deficiency) cblC type, with homocystinuria protein-coding 28 0.003338
-25975 EGFL6 EGF like domain multiple 6 protein-coding 67 0.007988
-25976 TIPARP TCDD inducible poly(ADP-ribose) polymerase protein-coding 63 0.007511
-25977 NECAP1 NECAP endocytosis associated 1 protein-coding 35 0.004173
-25978 CHMP2B charged multivesicular body protein 2B protein-coding 30 0.003577
-25979 DHRS7B dehydrogenase/reductase 7B protein-coding 36 0.004292
-25980 AAR2 AAR2 splicing factor homolog protein-coding 45 0.005365
-25981 DNAH1 dynein axonemal heavy chain 1 protein-coding 332 0.03958
-25983 NGDN neuroguidin protein-coding 45 0.005365
-25984 KRT23 keratin 23 protein-coding 68 0.008107
-25987 TSKU tsukushi, small leucine rich proteoglycan protein-coding 49 0.005842
-25988 HINFP histone H4 transcription factor protein-coding 66 0.007868
-25989 ULK3 unc-51 like kinase 3 protein-coding 46 0.005484
-25992 SNED1 sushi, nidogen and EGF like domains 1 protein-coding 120 0.01431
-25994 HIGD1A HIG1 hypoxia inducible domain family member 1A protein-coding 19 0.002265
-25996 REXO2 RNA exonuclease 2 protein-coding 40 0.004769
-25998 IBTK inhibitor of Bruton tyrosine kinase protein-coding 141 0.01681
-25999 CLIP3 CAP-Gly domain containing linker protein 3 protein-coding 74 0.008822
-26000 TBC1D10B TBC1 domain family member 10B protein-coding 56 0.006676
-26001 RNF167 ring finger protein 167 protein-coding 37 0.004411
-26002 MOXD1 monooxygenase DBH like 1 protein-coding 83 0.009895
-26003 GORASP2 golgi reassembly stacking protein 2 protein-coding 57 0.006795
-26005 C2CD3 C2 calcium dependent domain containing 3 protein-coding 183 0.02182
-26007 TKFC triokinase and FMN cyclase protein-coding 56 0.006676
-26009 ZZZ3 zinc finger ZZ-type containing 3 protein-coding 107 0.01276
-26010 SPATS2L spermatogenesis associated serine rich 2 like protein-coding 60 0.007153
-26011 TENM4 teneurin transmembrane protein 4 protein-coding 316 0.03767
-26012 NSMF NMDA receptor synaptonuclear signaling and neuronal migration factor protein-coding 45 0.005365
-26013 L3MBTL1 L3MBTL1, histone methyl-lysine binding protein protein-coding 93 0.01109
-26015 RPAP1 RNA polymerase II associated protein 1 protein-coding 125 0.0149
-26017 FAM32A family with sequence similarity 32 member A protein-coding 8 0.0009537
-26018 LRIG1 leucine rich repeats and immunoglobulin like domains 1 protein-coding 195 0.02325
-26019 UPF2 UPF2, regulator of nonsense mediated mRNA decay protein-coding 136 0.01621
-26020 LRP10 LDL receptor related protein 10 protein-coding 79 0.009418
-26022 TMEM98 transmembrane protein 98 protein-coding 69 0.008226
-26024 PTCD1 pentatricopeptide repeat domain 1 protein-coding 7 0.0008345
-26025 PCDHGA12 protocadherin gamma subfamily A, 12 protein-coding 155 0.01848
-26027 ACOT11 acyl-CoA thioesterase 11 protein-coding 62 0.007392
-26030 PLEKHG3 pleckstrin homology and RhoGEF domain containing G3 protein-coding 107 0.01276
-26031 OSBPL3 oxysterol binding protein like 3 protein-coding 107 0.01276
-26032 SUSD5 sushi domain containing 5 protein-coding 69 0.008226
-26033 ATRNL1 attractin like 1 protein-coding 225 0.02682
-26034 IPCEF1 interaction protein for cytohesin exchange factors 1 protein-coding 44 0.005246
-26035 GLCE glucuronic acid epimerase protein-coding 61 0.007272
-26036 ZNF451 zinc finger protein 451 protein-coding 129 0.01538
-26037 SIPA1L1 signal induced proliferation associated 1 like 1 protein-coding 212 0.02527
-26038 CHD5 chromodomain helicase DNA binding protein 5 protein-coding 261 0.03112
-26039 SS18L1 SS18L1, nBAF chromatin remodeling complex subunit protein-coding 43 0.005126
-26040 SETBP1 SET binding protein 1 protein-coding 245 0.02921
-26043 UBXN7 UBX domain protein 7 protein-coding 68 0.008107
-26045 LRRTM2 leucine rich repeat transmembrane neuronal 2 protein-coding 49 0.005842
-26046 LTN1 listerin E3 ubiquitin protein ligase 1 protein-coding 175 0.02086
-26047 CNTNAP2 contactin associated protein like 2 protein-coding 373 0.04447
-26048 ZNF500 zinc finger protein 500 protein-coding 48 0.005722
-26049 FAM169A family with sequence similarity 169 member A protein-coding 71 0.008464
-26050 SLITRK5 SLIT and NTRK like family member 5 protein-coding 235 0.02802
-26051 PPP1R16B protein phosphatase 1 regulatory subunit 16B protein-coding 116 0.01383
-26052 DNM3 dynamin 3 protein-coding 124 0.01478
-26053 AUTS2 AUTS2, activator of transcription and developmental regulator protein-coding 172 0.02051
-26054 SENP6 SUMO specific peptidase 6 protein-coding 115 0.01371
-26056 RAB11FIP5 RAB11 family interacting protein 5 protein-coding 63 0.007511
-26057 ANKRD17 ankyrin repeat domain 17 protein-coding 220 0.02623
-26058 GIGYF2 GRB10 interacting GYF protein 2 protein-coding 160 0.01907
-26059 ERC2 ELKS/RAB6-interacting/CAST family member 2 protein-coding 198 0.02361
-26060 APPL1 adaptor protein, phosphotyrosine interacting with PH domain and leucine zipper 1 protein-coding 81 0.009657
-26061 HACL1 2-hydroxyacyl-CoA lyase 1 protein-coding 55 0.006557
-26063 DECR2 2,4-dienoyl-CoA reductase 2 protein-coding 42 0.005007
-26064 RAI14 retinoic acid induced 14 protein-coding 118 0.01407
-26065 LSM14A LSM14A, mRNA processing body assembly factor protein-coding 64 0.00763
-26071 RTL8A retrotransposon Gag like 8A protein-coding 19 0.002265
-26073 POLDIP2 DNA polymerase delta interacting protein 2 protein-coding 42 0.005007
-26074 CFAP61 cilia and flagella associated protein 61 protein-coding 206 0.02456
-26083 TBC1D29 TBC1 domain family member 29 protein-coding 15 0.001788
-26084 ARHGEF26 Rho guanine nucleotide exchange factor 26 protein-coding 119 0.01419
-26085 KLK13 kallikrein related peptidase 13 protein-coding 58 0.006915
-26086 GPSM1 G protein signaling modulator 1 protein-coding 67 0.007988
-26088 GGA1 golgi associated, gamma adaptin ear containing, ARF binding protein 1 protein-coding 62 0.007392
-26090 ABHD12 abhydrolase domain containing 12 protein-coding 38 0.00453
-26091 HERC4 HECT and RLD domain containing E3 ubiquitin protein ligase 4 protein-coding 99 0.0118
-26092 TOR1AIP1 torsin 1A interacting protein 1 protein-coding 66 0.007868
-26093 CCDC9 coiled-coil domain containing 9 protein-coding 52 0.006199
-26094 DCAF4 DDB1 and CUL4 associated factor 4 protein-coding 60 0.007153
-26095 PTPN20 protein tyrosine phosphatase, non-receptor type 20 protein-coding 16 0.001907
-26097 CHTOP chromatin target of PRMT1 protein-coding 36 0.004292
-26098 EDRF1 erythroid differentiation regulatory factor 1 protein-coding 128 0.01526
-26099 SZRD1 SUZ RNA binding domain containing 1 protein-coding 19 0.002265
-26100 WIPI2 WD repeat domain, phosphoinositide interacting 2 protein-coding 44 0.005246
-26103 LRIT1 leucine rich repeat, Ig-like and transmembrane domains 1 protein-coding 98 0.01168
-26108 PYGO1 pygopus family PHD finger 1 protein-coding 56 0.006676
-26112 CCDC69 coiled-coil domain containing 69 protein-coding 36 0.004292
-26115 TANC2 tetratricopeptide repeat, ankyrin repeat and coiled-coil containing 2 protein-coding 186 0.02217
-26118 WSB1 WD repeat and SOCS box containing 1 protein-coding 55 0.006557
-26119 LDLRAP1 low density lipoprotein receptor adaptor protein 1 protein-coding 37 0.004411
-26121 PRPF31 pre-mRNA processing factor 31 protein-coding 47 0.005603
-26122 EPC2 enhancer of polycomb homolog 2 protein-coding 80 0.009537
-26123 TCTN3 tectonic family member 3 protein-coding 35 0.004173
-26127 FGFR1OP2 FGFR1 oncogene partner 2 protein-coding 26 0.0031
-26128 KIF1BP KIF1 binding protein protein-coding 58 0.006915
-26130 GAPVD1 GTPase activating protein and VPS9 domains 1 protein-coding 142 0.01693
-26133 TRPC4AP transient receptor potential cation channel subfamily C member 4 associated protein protein-coding 85 0.01013
-26135 SERBP1 SERPINE1 mRNA binding protein 1 protein-coding 49 0.005842
-26136 TES testin LIM domain protein protein-coding 41 0.004888
-26137 ZBTB20 zinc finger and BTB domain containing 20 protein-coding 200 0.02384
-26138 LINC00588 long intergenic non-protein coding RNA 588 ncRNA 26 0.0031
-26140 TTLL3 tubulin tyrosine ligase like 3 protein-coding 81 0.009657
-26145 IRF2BP1 interferon regulatory factor 2 binding protein 1 protein-coding 52 0.006199
-26146 TRAF3IP1 TRAF3 interacting protein 1 protein-coding 67 0.007988
-26147 PHF19 PHD finger protein 19 protein-coding 54 0.006438
-26149 ZNF658 zinc finger protein 658 protein-coding 149 0.01776
-26150 RIBC2 RIB43A domain with coiled-coils 2 protein-coding 32 0.003815
-26151 NAT9 N-acetyltransferase 9 (putative) protein-coding 29 0.003457
-26152 ZNF337 zinc finger protein 337 protein-coding 80 0.009537
-26153 KIF26A kinesin family member 26A protein-coding 138 0.01645
-26154 ABCA12 ATP binding cassette subfamily A member 12 protein-coding 352 0.04196
-26155 NOC2L NOC2 like nucleolar associated transcriptional repressor protein-coding 68 0.008107
-26156 RSL1D1 ribosomal L1 domain containing 1 protein-coding 57 0.006795
-26157 GIMAP2 GTPase, IMAP family member 2 protein-coding 54 0.006438
-26160 IFT172 intraflagellar transport 172 protein-coding 179 0.02134
-26164 MTG2 mitochondrial ribosome associated GTPase 2 protein-coding 44 0.005246
-26165 SPATA31A7 SPATA31 subfamily A member 7 protein-coding 32 0.003815
-26166 RGS22 regulator of G protein signaling 22 protein-coding 198 0.02361
-26167 PCDHB5 protocadherin beta 5 protein-coding 189 0.02253
-26168 SENP3 SUMO specific peptidase 3 protein-coding 52 0.006199
-26173 INTS1 integrator complex subunit 1 protein-coding 170 0.02027
-26175 TMEM251 transmembrane protein 251 protein-coding 11 0.001311
-26188 OR1C1 olfactory receptor family 1 subfamily C member 1 protein-coding 111 0.01323
-26189 OR1A2 olfactory receptor family 1 subfamily A member 2 protein-coding 58 0.006915
-26190 FBXW2 F-box and WD repeat domain containing 2 protein-coding 28 0.003338
-26191 PTPN22 protein tyrosine phosphatase, non-receptor type 22 protein-coding 99 0.0118
-26205 GMEB2 glucocorticoid modulatory element binding protein 2 protein-coding 59 0.007034
-26206 SPAG8 sperm associated antigen 8 protein-coding 49 0.005842
-26207 PITPNC1 phosphatidylinositol transfer protein cytoplasmic 1 protein-coding 47 0.005603
-26211 OR2F1 olfactory receptor family 2 subfamily F member 1 (gene/pseudogene) protein-coding 67 0.007988
-26212 OR2B6 olfactory receptor family 2 subfamily B member 6 protein-coding 56 0.006676
-26219 OR1J4 olfactory receptor family 1 subfamily J member 4 protein-coding 50 0.005961
-26220 DGCR5 DiGeorge syndrome critical region gene 5 (non-protein coding) ncRNA 50 0.005961
-26223 FBXL21 F-box and leucine rich repeat protein 21 (gene/pseudogene) pseudo 63 0.007511
-26224 FBXL3 F-box and leucine rich repeat protein 3 protein-coding 50 0.005961
-26225 ARL5A ADP ribosylation factor like GTPase 5A protein-coding 24 0.002861
-26227 PHGDH phosphoglycerate dehydrogenase protein-coding 45 0.005365
-26228 STAP1 signal transducing adaptor family member 1 protein-coding 56 0.006676
-26229 B3GAT3 beta-1,3-glucuronyltransferase 3 protein-coding 38 0.00453
-26230 TIAM2 T cell lymphoma invasion and metastasis 2 protein-coding 212 0.02527
-26231 LRRC29 leucine rich repeat containing 29 protein-coding 18 0.002146
-26232 FBXO2 F-box protein 2 protein-coding 17 0.002027
-26233 FBXL6 F-box and leucine rich repeat protein 6 protein-coding 28 0.003338
-26234 FBXL5 F-box and leucine rich repeat protein 5 protein-coding 64 0.00763
-26235 FBXL4 F-box and leucine rich repeat protein 4 protein-coding 83 0.009895
-26238 LINC01558 long intergenic non-protein coding RNA 1558 ncRNA 7 0.0008345
-26239 LCE2B late cornified envelope 2B protein-coding 50 0.005961
-26240 FAM50B family with sequence similarity 50 member B protein-coding 61 0.007272
-26245 OR2M4 olfactory receptor family 2 subfamily M member 4 protein-coding 109 0.01299
-26246 OR2L2 olfactory receptor family 2 subfamily L member 2 protein-coding 124 0.01478
-26248 OR2K2 olfactory receptor family 2 subfamily K member 2 protein-coding 36 0.004292
-26249 KLHL3 kelch like family member 3 protein-coding 62 0.007392
-26251 KCNG2 potassium voltage-gated channel modifier subfamily G member 2 protein-coding 55 0.006557
-26253 CLEC4E C-type lectin domain family 4 member E protein-coding 44 0.005246
-26254 OPTC opticin protein-coding 42 0.005007
-26256 CABYR calcium binding tyrosine phosphorylation regulated protein-coding 51 0.00608
-26257 NKX2-8 NK2 homeobox 8 protein-coding 20 0.002384
-26258 BLOC1S6 biogenesis of lysosomal organelles complex 1 subunit 6 protein-coding 19 0.002265
-26259 FBXW8 F-box and WD repeat domain containing 8 protein-coding 51 0.00608
-26260 FBXO25 F-box protein 25 protein-coding 41 0.004888
-26261 FBXO24 F-box protein 24 protein-coding 91 0.01085
-26262 TSPAN17 tetraspanin 17 protein-coding 32 0.003815
-26263 FBXO22 F-box protein 22 protein-coding 59 0.007034
-26266 SLC13A4 solute carrier family 13 member 4 protein-coding 68 0.008107
-26267 FBXO10 F-box protein 10 protein-coding 87 0.01037
-26268 FBXO9 F-box protein 9 protein-coding 40 0.004769
-26269 FBXO8 F-box protein 8 protein-coding 48 0.005722
-26270 FBXO6 F-box protein 6 protein-coding 27 0.003219
-26271 FBXO5 F-box protein 5 protein-coding 55 0.006557
-26272 FBXO4 F-box protein 4 protein-coding 54 0.006438
-26273 FBXO3 F-box protein 3 protein-coding 55 0.006557
-26275 HIBCH 3-hydroxyisobutyryl-CoA hydrolase protein-coding 41 0.004888
-26276 VPS33B VPS33B, late endosome and lysosome associated protein-coding 58 0.006915
-26277 TINF2 TERF1 interacting nuclear factor 2 protein-coding 37 0.004411
-26278 SACS sacsin molecular chaperone protein-coding 437 0.0521
-26279 PLA2G2D phospholipase A2 group IID protein-coding 18 0.002146
-26280 IL1RAPL2 interleukin 1 receptor accessory protein like 2 protein-coding 138 0.01645
-26281 FGF20 fibroblast growth factor 20 protein-coding 23 0.002742
-26284 ERAL1 Era like 12S mitochondrial rRNA chaperone 1 protein-coding 31 0.003696
-26285 CLDN17 claudin 17 protein-coding 52 0.006199
-26286 ARFGAP3 ADP ribosylation factor GTPase activating protein 3 protein-coding 108 0.01288
-26287 ANKRD2 ankyrin repeat domain 2 protein-coding 34 0.004053
-26289 AK5 adenylate kinase 5 protein-coding 100 0.01192
-26290 GALNT8 polypeptide N-acetylgalactosaminyltransferase 8 protein-coding 119 0.01419
-26291 FGF21 fibroblast growth factor 21 protein-coding 25 0.00298
-26292 MYCBP MYC binding protein protein-coding 11 0.001311
-26297 SERGEF secretion regulating guanine nucleotide exchange factor protein-coding 42 0.005007
-26298 EHF ETS homologous factor protein-coding 47 0.005603
-26301 GBGT1 globoside alpha-1,3-N-acetylgalactosaminyltransferase 1 (FORS blood group) protein-coding 38 0.00453
-26330 GAPDHS glyceraldehyde-3-phosphate dehydrogenase, spermatogenic protein-coding 67 0.007988
-26333 OR7A17 olfactory receptor family 7 subfamily A member 17 protein-coding 52 0.006199
-26338 OR5L2 olfactory receptor family 5 subfamily L member 2 protein-coding 136 0.01621
-26339 OR5K1 olfactory receptor family 5 subfamily K member 1 protein-coding 76 0.009061
-26341 OR5H1 olfactory receptor family 5 subfamily H member 1 protein-coding 102 0.01216
-26353 HSPB8 heat shock protein family B (small) member 8 protein-coding 42 0.005007
-26354 GNL3 G protein nucleolar 3 protein-coding 49 0.005842
-26355 FAM162A family with sequence similarity 162 member A protein-coding 23 0.002742
-26468 LHX6 LIM homeobox 6 protein-coding 39 0.004649
-26469 PTPN18 protein tyrosine phosphatase, non-receptor type 18 protein-coding 258 0.03076
-26470 SEZ6L2 seizure related 6 homolog like 2 protein-coding 125 0.0149
-26471 NUPR1 nuclear protein 1, transcriptional regulator protein-coding 14 0.001669
-26472 PPP1R14B protein phosphatase 1 regulatory inhibitor subunit 14B protein-coding 12 0.001431
-26476 OR10J1 olfactory receptor family 10 subfamily J member 1 protein-coding 74 0.008822
-26493 OR8B8 olfactory receptor family 8 subfamily B member 8 protein-coding 76 0.009061
-26494 OR8G1 olfactory receptor family 8 subfamily G member 1 (gene/pseudogene) protein-coding 63 0.007511
-26496 OR10A3 olfactory receptor family 10 subfamily A member 3 protein-coding 61 0.007272
-26497 OR10D3 olfactory receptor family 10 subfamily D member 3 (putative) protein-coding 7 0.0008345
-26499 PLEK2 pleckstrin 2 protein-coding 39 0.004649
-26502 NARF nuclear prelamin A recognition factor protein-coding 56 0.006676
-26503 SLC17A5 solute carrier family 17 member 5 protein-coding 68 0.008107
-26504 CNNM4 cyclin and CBS domain divalent metal cation transport mediator 4 protein-coding 94 0.01121
-26505 CNNM3 cyclin and CBS domain divalent metal cation transport mediator 3 protein-coding 41 0.004888
-26507 CNNM1 cyclin and CBS domain divalent metal cation transport mediator 1 protein-coding 95 0.01133
-26508 HEYL hes related family bHLH transcription factor with YRPW motif-like protein-coding 39 0.004649
-26509 MYOF myoferlin protein-coding 187 0.02229
-26511 CHIC2 cysteine rich hydrophobic domain 2 protein-coding 20 0.002384
-26512 INTS6 integrator complex subunit 6 protein-coding 87 0.01037
-26515 TIMM10B translocase of inner mitochondrial membrane 10B protein-coding 8 0.0009537
-26517 TIMM13 translocase of inner mitochondrial membrane 13 protein-coding 8 0.0009537
-26519 TIMM10 translocase of inner mitochondrial membrane 10 protein-coding 7 0.0008345
-26520 TIMM9 translocase of inner mitochondrial membrane 9 protein-coding 5 0.0005961
-26521 TIMM8B translocase of inner mitochondrial membrane 8 homolog B protein-coding 8 0.0009537
-26523 AGO1 argonaute 1, RISC catalytic component protein-coding 99 0.0118
-26524 LATS2 large tumor suppressor kinase 2 protein-coding 134 0.01598
-26525 IL36RN interleukin 36 receptor antagonist protein-coding 24 0.002861
-26526 TSPAN16 tetraspanin 16 protein-coding 35 0.004173
-26528 DAZAP1 DAZ associated protein 1 protein-coding 86 0.01025
-26529 OR12D2 olfactory receptor family 12 subfamily D member 2 (gene/pseudogene) protein-coding 72 0.008584
-26531 OR11A1 olfactory receptor family 11 subfamily A member 1 protein-coding 59 0.007034
-26532 OR10H3 olfactory receptor family 10 subfamily H member 3 protein-coding 34 0.004053
-26533 OR10G3 olfactory receptor family 10 subfamily G member 3 protein-coding 40 0.004769
-26534 OR10G2 olfactory receptor family 10 subfamily G member 2 protein-coding 60 0.007153
-26538 OR10H2 olfactory receptor family 10 subfamily H member 2 protein-coding 74 0.008822
-26539 OR10H1 olfactory receptor family 10 subfamily H member 1 protein-coding 69 0.008226
-26548 ITGB1BP2 integrin subunit beta 1 binding protein 2 protein-coding 50 0.005961
-26574 AATF apoptosis antagonizing transcription factor protein-coding 56 0.006676
-26575 RGS17 regulator of G protein signaling 17 protein-coding 42 0.005007
-26576 SRPK3 SRSF protein kinase 3 protein-coding 71 0.008464
-26577 PCOLCE2 procollagen C-endopeptidase enhancer 2 protein-coding 81 0.009657
-26578 OSTF1 osteoclast stimulating factor 1 protein-coding 25 0.00298
-26579 MYEOV myeloma overexpressed protein-coding 45 0.005365
-26580 BSCL2 BSCL2, seipin lipid droplet biogenesis associated protein-coding 53 0.006319
-26585 GREM1 gremlin 1, DAN family BMP antagonist protein-coding 21 0.002504
-26586 CKAP2 cytoskeleton associated protein 2 protein-coding 69 0.008226
-26589 MRPL46 mitochondrial ribosomal protein L46 protein-coding 26 0.0031
-26595 OR8B2 olfactory receptor family 8 subfamily B member 2 protein-coding 60 0.007153
-26608 TBL2 transducin beta like 2 protein-coding 52 0.006199
-26609 VCX variable charge, X-linked protein-coding 42 0.005007
-26610 ELP4 elongator acetyltransferase complex subunit 4 protein-coding 54 0.006438
-26648 OR7E24 olfactory receptor family 7 subfamily E member 24 protein-coding 71 0.008464
-26658 OR7C2 olfactory receptor family 7 subfamily C member 2 protein-coding 56 0.006676
-26659 OR7A5 olfactory receptor family 7 subfamily A member 5 protein-coding 53 0.006319
-26664 OR7C1 olfactory receptor family 7 subfamily C member 1 protein-coding 43 0.005126
-26682 OR4F4 olfactory receptor family 4 subfamily F member 4 protein-coding 13 0.00155
-26686 OR4E2 olfactory receptor family 4 subfamily E member 2 protein-coding 58 0.006915
-26689 OR4D1 olfactory receptor family 4 subfamily D member 1 protein-coding 31 0.003696
-26692 OR2W1 olfactory receptor family 2 subfamily W member 1 protein-coding 69 0.008226
-26696 OR2T1 olfactory receptor family 2 subfamily T member 1 protein-coding 112 0.01335
-26707 OR2J2 olfactory receptor family 2 subfamily J member 2 protein-coding 80 0.009537
-26716 OR2H1 olfactory receptor family 2 subfamily H member 1 protein-coding 58 0.006915
-26735 OR1L3 olfactory receptor family 1 subfamily L member 3 protein-coding 61 0.007272
-26737 OR1L1 olfactory receptor family 1 subfamily L member 1 protein-coding 39 0.004649
-26740 OR1J2 olfactory receptor family 1 subfamily J member 2 protein-coding 52 0.006199
-26747 NUFIP1 NUFIP1, FMR1 interacting protein 1 protein-coding 70 0.008345
-26748 GAGE12I G antigen 12I protein-coding 1 0.0001192
-26750 RPS6KC1 ribosomal protein S6 kinase C1 protein-coding 125 0.0149
-26751 SH3YL1 SH3 and SYLF domain containing 1 protein-coding 43 0.005126
-26762 HAVCR1 hepatitis A virus cellular receptor 1 protein-coding 77 0.00918
-26768 SNORA73B small nucleolar RNA, H/ACA box 73B snoRNA 5 0.0005961
-26776 SNORA71B small nucleolar RNA, H/ACA box 71B snoRNA 7 0.0008345
-26777 SNORA71A small nucleolar RNA, H/ACA box 71A snoRNA 3 0.0003577
-26821 SNORA74A small nucleolar RNA, H/ACA box 74A snoRNA 4 0.0004769
-26824 RNU11 RNA, U11 small nuclear snRNA 9 0.001073
-26851 SNORD3B-1 small nucleolar RNA, C/D box 3B-1 snoRNA 8 0.0009537
-26872 STEAP1 STEAP family member 1 protein-coding 44 0.005246
-26873 OPLAH 5-oxoprolinase, ATP-hydrolysing protein-coding 136 0.01621
-26952 SMR3A submaxillary gland androgen regulated protein 3A protein-coding 34 0.004053
-26953 RANBP6 RAN binding protein 6 protein-coding 122 0.01454
-26958 COPG2 coatomer protein complex subunit gamma 2 protein-coding 25 0.00298
-26959 HBP1 HMG-box transcription factor 1 protein-coding 63 0.007511
-26960 NBEA neurobeachin protein-coding 375 0.04471
-26973 CHORDC1 cysteine and histidine rich domain containing 1 protein-coding 71 0.008464
-26974 ZNF285 zinc finger protein 285 protein-coding 93 0.01109
-26984 SEC22A SEC22 homolog A, vesicle trafficking protein protein-coding 42 0.005007
-26985 AP3M1 adaptor related protein complex 3 mu 1 subunit protein-coding 40 0.004769
-26986 PABPC1 poly(A) binding protein cytoplasmic 1 protein-coding 66 0.007868
-26993 AKAP8L A-kinase anchoring protein 8 like protein-coding 62 0.007392
-26994 RNF11 ring finger protein 11 protein-coding 17 0.002027
-26995 TRUB2 TruB pseudouridine synthase family member 2 protein-coding 37 0.004411
-26996 GPR160 G protein-coupled receptor 160 protein-coding 38 0.00453
-26998 FETUB fetuin B protein-coding 56 0.006676
-26999 CYFIP2 cytoplasmic FMR1 interacting protein 2 protein-coding 158 0.01884
-27000 DNAJC2 DnaJ heat shock protein family (Hsp40) member C2 protein-coding 68 0.008107
-27004 TCL6 T cell leukemia/lymphoma 6 (non-protein coding) ncRNA 55 0.006557
-27005 USP21 ubiquitin specific peptidase 21 protein-coding 156 0.0186
-27006 FGF22 fibroblast growth factor 22 protein-coding 11 0.001311
-27010 TPK1 thiamin pyrophosphokinase 1 protein-coding 48 0.005722
-27012 KCNV1 potassium voltage-gated channel modifier subfamily V member 1 protein-coding 131 0.01562
-27013 CNPPD1 cyclin Pas1/PHO80 domain containing 1 protein-coding 46 0.005484
-27018 BEX3 brain expressed X-linked 3 protein-coding 23 0.002742
-27019 DNAI1 dynein axonemal intermediate chain 1 protein-coding 86 0.01025
-27020 NPTN neuroplastin protein-coding 44 0.005246
-27022 FOXD3 forkhead box D3 protein-coding 36 0.004292
-27023 FOXB1 forkhead box B1 protein-coding 25 0.00298
-27030 MLH3 mutL homolog 3 protein-coding 130 0.0155
-27031 NPHP3 nephrocystin 3 protein-coding 134 0.01598
-27032 ATP2C1 ATPase secretory pathway Ca2+ transporting 1 protein-coding 126 0.01502
-27033 ZBTB32 zinc finger and BTB domain containing 32 protein-coding 56 0.006676
-27034 ACAD8 acyl-CoA dehydrogenase family member 8 protein-coding 39 0.004649
-27035 NOX1 NADPH oxidase 1 protein-coding 89 0.01061
-27036 SIGLEC7 sialic acid binding Ig like lectin 7 protein-coding 74 0.008822
-27037 TRMT2A tRNA methyltransferase 2 homolog A protein-coding 62 0.007392
-27039 PKD2L2 polycystin 2 like 2, transient receptor potential cation channel protein-coding 93 0.01109
-27040 LAT linker for activation of T cells protein-coding 33 0.003934
-27042 DIEXF digestive organ expansion factor homolog (zebrafish) protein-coding 110 0.01311
-27043 PELP1 proline, glutamate and leucine rich protein 1 protein-coding 88 0.01049
-27044 SND1 staphylococcal nuclease and tudor domain containing 1 protein-coding 124 0.01478
-27063 ANKRD1 ankyrin repeat domain 1 protein-coding 41 0.004888
-27065 NSG1 neuronal vesicle trafficking associated 1 protein-coding 33 0.003934
-27067 STAU2 staufen double-stranded RNA binding protein 2 protein-coding 71 0.008464
-27068 PPA2 pyrophosphatase (inorganic) 2 protein-coding 35 0.004173
-27069 GHITM growth hormone inducible transmembrane protein protein-coding 40 0.004769
-27071 DAPP1 dual adaptor of phosphotyrosine and 3-phosphoinositides 1 protein-coding 44 0.005246
-27072 VPS41 VPS41, HOPS complex subunit protein-coding 111 0.01323
-27074 LAMP3 lysosomal associated membrane protein 3 protein-coding 70 0.008345
-27075 TSPAN13 tetraspanin 13 protein-coding 17 0.002027
-27076 LYPD3 LY6/PLAUR domain containing 3 protein-coding 48 0.005722
-27077 B9D1 B9 domain containing 1 protein-coding 14 0.001669
-27079 RPUSD2 RNA pseudouridylate synthase domain containing 2 protein-coding 48 0.005722
-27085 MTBP MDM2 binding protein protein-coding 103 0.01228
-27086 FOXP1 forkhead box P1 protein-coding 127 0.01514
-27087 B3GAT1 beta-1,3-glucuronyltransferase 1 protein-coding 74 0.008822
-27089 UQCRQ ubiquinol-cytochrome c reductase complex III subunit VII protein-coding 10 0.001192
-27090 ST6GALNAC4 ST6 N-acetylgalactosaminide alpha-2,6-sialyltransferase 4 protein-coding 27 0.003219
-27091 CACNG5 calcium voltage-gated channel auxiliary subunit gamma 5 protein-coding 66 0.007868
-27092 CACNG4 calcium voltage-gated channel auxiliary subunit gamma 4 protein-coding 39 0.004649
-27094 KCNMB3 potassium calcium-activated channel subfamily M regulatory beta subunit 3 protein-coding 39 0.004649
-27095 TRAPPC3 trafficking protein particle complex 3 protein-coding 11 0.001311
-27097 TAF5L TATA-box binding protein associated factor 5 like protein-coding 68 0.008107
-27098 CLUL1 clusterin like 1 protein-coding 62 0.007392
-27101 CACYBP calcyclin binding protein protein-coding 35 0.004173
-27102 EIF2AK1 eukaryotic translation initiation factor 2 alpha kinase 1 protein-coding 92 0.01097
-27106 ARRDC2 arrestin domain containing 2 protein-coding 33 0.003934
-27107 ZBTB11 zinc finger and BTB domain containing 11 protein-coding 120 0.01431
-27109 ATP5S ATP synthase, H+ transporting, mitochondrial Fo complex subunit s (factor B) protein-coding 23 0.002742
-27111 SDCBP2 syndecan binding protein 2 protein-coding 36 0.004292
-27112 FAM155B family with sequence similarity 155 member B protein-coding 60 0.007153
-27113 BBC3 BCL2 binding component 3 protein-coding 19 0.002265
-27115 PDE7B phosphodiesterase 7B protein-coding 59 0.007034
-27120 DKKL1 dickkopf like acrosomal protein 1 protein-coding 38 0.00453
-27121 DKK4 dickkopf WNT signaling pathway inhibitor 4 protein-coding 29 0.003457
-27122 DKK3 dickkopf WNT signaling pathway inhibitor 3 protein-coding 39 0.004649
-27123 DKK2 dickkopf WNT signaling pathway inhibitor 2 protein-coding 86 0.01025
-27124 INPP5J inositol polyphosphate-5-phosphatase J protein-coding 61 0.007272
-27125 AFF4 AF4/FMR2 family member 4 protein-coding 128 0.01526
-27127 SMC1B structural maintenance of chromosomes 1B protein-coding 127 0.01514
-27128 CYTH4 cytohesin 4 protein-coding 52 0.006199
-27129 HSPB7 heat shock protein family B (small) member 7 protein-coding 21 0.002504
-27130 INVS inversin protein-coding 109 0.01299
-27131 SNX5 sorting nexin 5 protein-coding 38 0.00453
-27132 CPNE7 copine 7 protein-coding 61 0.007272
-27133 KCNH5 potassium voltage-gated channel subfamily H member 5 protein-coding 201 0.02396
-27134 TJP3 tight junction protein 3 protein-coding 110 0.01311
-27136 MORC1 MORC family CW-type zinc finger 1 protein-coding 210 0.02504
-27141 CIDEB cell death-inducing DFFA-like effector b protein-coding 21 0.002504
-27143 PALD1 phosphatase domain containing, paladin 1 protein-coding 103 0.01228
-27145 FILIP1 filamin A interacting protein 1 protein-coding 191 0.02277
-27146 FAM184B family with sequence similarity 184 member B protein-coding 81 0.009657
-27147 DENND2A DENN domain containing 2A protein-coding 140 0.01669
-27148 STK36 serine/threonine kinase 36 protein-coding 122 0.01454
-27151 CPAMD8 C3 and PZP like, alpha-2-macroglobulin domain containing 8 protein-coding 281 0.0335
-27152 INTU inturned planar cell polarity protein protein-coding 121 0.01443
-27153 ZNF777 zinc finger protein 777 protein-coding 108 0.01288
-27154 BRPF3 bromodomain and PHD finger containing 3 protein-coding 113 0.01347
-27156 RSPH14 radial spoke head 14 homolog protein-coding 47 0.005603
-27158 NDOR1 NADPH dependent diflavin oxidoreductase 1 protein-coding 46 0.005484
-27159 CHIA chitinase, acidic protein-coding 81 0.009657
-27160 INGX inhibitor of growth family, X-linked (pseudogene) pseudo 32 0.003815
-27161 AGO2 argonaute 2, RISC catalytic component protein-coding 127 0.01514
-27163 NAAA N-acylethanolamine acid amidase protein-coding 36 0.004292
-27164 SALL3 spalt like transcription factor 3 protein-coding 190 0.02265
-27165 GLS2 glutaminase 2 protein-coding 104 0.0124
-27166 PRELID1 PRELI domain containing 1 protein-coding 14 0.001669
-27173 SLC39A1 solute carrier family 39 member 1 protein-coding 32 0.003815
-27175 TUBG2 tubulin gamma 2 protein-coding 51 0.00608
-27177 IL36B interleukin 36 beta protein-coding 35 0.004173
-27178 IL37 interleukin 37 protein-coding 34 0.004053
-27179 IL36A interleukin 36 alpha protein-coding 25 0.00298
-27180 SIGLEC9 sialic acid binding Ig like lectin 9 protein-coding 80 0.009537
-27181 SIGLEC8 sialic acid binding Ig like lectin 8 protein-coding 120 0.01431
-27183 VPS4A vacuolar protein sorting 4 homolog A protein-coding 53 0.006319
-27185 DISC1 DISC1 scaffold protein protein-coding 113 0.01347
-27189 IL17C interleukin 17C protein-coding 26 0.0031
-27190 IL17B interleukin 17B protein-coding 24 0.002861
-27197 GPR82 G protein-coupled receptor 82 protein-coding 42 0.005007
-27198 HCAR1 hydroxycarboxylic acid receptor 1 protein-coding 39 0.004649
-27199 OXGR1 oxoglutarate receptor 1 protein-coding 50 0.005961
-27201 GPR78 G protein-coupled receptor 78 protein-coding 63 0.007511
-27202 C5AR2 complement component 5a receptor 2 protein-coding 36 0.004292
-27229 TUBGCP4 tubulin gamma complex associated protein 4 protein-coding 53 0.006319
-27230 SERP1 stress associated endoplasmic reticulum protein 1 protein-coding 9 0.001073
-27231 NMRK2 nicotinamide riboside kinase 2 protein-coding 29 0.003457
-27232 GNMT glycine N-methyltransferase protein-coding 23 0.002742
-27233 SULT1C4 sulfotransferase family 1C member 4 protein-coding 51 0.00608
-27235 COQ2 coenzyme Q2, polyprenyltransferase protein-coding 22 0.002623
-27236 ARFIP1 ADP ribosylation factor interacting protein 1 protein-coding 32 0.003815
-27237 ARHGEF16 Rho guanine nucleotide exchange factor 16 protein-coding 65 0.007749
-27238 GPKOW G-patch domain and KOW motifs protein-coding 69 0.008226
-27239 GPR162 G protein-coupled receptor 162 protein-coding 75 0.008941
-27240 SIT1 signaling threshold regulating transmembrane adaptor 1 protein-coding 18 0.002146
-27241 BBS9 Bardet-Biedl syndrome 9 protein-coding 137 0.01633
-27242 TNFRSF21 TNF receptor superfamily member 21 protein-coding 71 0.008464
-27243 CHMP2A charged multivesicular body protein 2A protein-coding 34 0.004053
-27244 SESN1 sestrin 1 protein-coding 46 0.005484
-27245 AHDC1 AT-hook DNA binding motif containing 1 protein-coding 133 0.01586
-27246 RNF115 ring finger protein 115 protein-coding 30 0.003577
-27247 NFU1 NFU1 iron-sulfur cluster scaffold protein-coding 29 0.003457
-27248 ERLEC1 endoplasmic reticulum lectin 1 protein-coding 52 0.006199
-27249 MMADHC methylmalonic aciduria and homocystinuria, cblD type protein-coding 31 0.003696
-27250 PDCD4 programmed cell death 4 protein-coding 50 0.005961
-27252 KLHL20 kelch like family member 20 protein-coding 66 0.007868
-27253 PCDH17 protocadherin 17 protein-coding 293 0.03493
-27254 CSDC2 cold shock domain containing C2 protein-coding 15 0.001788
-27255 CNTN6 contactin 6 protein-coding 255 0.0304
-27257 LSM1 LSM1 homolog, mRNA degradation associated protein-coding 21 0.002504
-27258 LSM3 LSM3 homolog, U6 small nuclear RNA and mRNA degradation associated protein-coding 17 0.002027
-27259 HPLH1 hemophagocytic lymphohistiocytosis 1 unknown 46 0.005484
-27283 TINAG tubulointerstitial nephritis antigen protein-coding 113 0.01347
-27284 SULT1B1 sulfotransferase family 1B member 1 protein-coding 77 0.00918
-27285 TEKT2 tektin 2 protein-coding 38 0.00453
-27286 SRPX2 sushi repeat containing protein, X-linked 2 protein-coding 67 0.007988
-27287 VENTX VENT homeobox protein-coding 39 0.004649
-27288 RBMXL2 RNA binding motif protein, X-linked like 2 protein-coding 77 0.00918
-27289 RND1 Rho family GTPase 1 protein-coding 38 0.00453
-27290 SPINK4 serine peptidase inhibitor, Kazal type 4 protein-coding 16 0.001907
-27291 R3HCC1L R3H domain and coiled-coil containing 1 like protein-coding 89 0.01061
-27292 DIMT1 DIM1 dimethyladenosine transferase 1 homolog protein-coding 29 0.003457
-27293 SMPDL3B sphingomyelin phosphodiesterase acid like 3B protein-coding 39 0.004649
-27294 DHDH dihydrodiol dehydrogenase protein-coding 38 0.00453
-27295 PDLIM3 PDZ and LIM domain 3 protein-coding 44 0.005246
-27296 TP53TG5 TP53 target 5 protein-coding 44 0.005246
-27297 CRCP CGRP receptor component protein-coding 13 0.00155
-27299 ADAMDEC1 ADAM like decysin 1 protein-coding 73 0.008703
-27300 ZNF544 zinc finger protein 544 protein-coding 88 0.01049
-27301 APEX2 apurinic/apyrimidinic endodeoxyribonuclease 2 protein-coding 66 0.007868
-27302 BMP10 bone morphogenetic protein 10 protein-coding 66 0.007868
-27303 RBMS3 RNA binding motif single stranded interacting protein 3 protein-coding 65 0.007749
-27304 MOCS3 molybdenum cofactor synthesis 3 protein-coding 56 0.006676
-27306 HPGDS hematopoietic prostaglandin D synthase protein-coding 35 0.004173
-27309 ZNF330 zinc finger protein 330 protein-coding 49 0.005842
-27314 RAB30 RAB30, member RAS oncogene family protein-coding 24 0.002861
-27315 PGAP2 post-GPI attachment to proteins 2 protein-coding 38 0.00453
-27316 RBMX RNA binding motif protein, X-linked protein-coding 63 0.007511
-27319 BHLHE22 basic helix-loop-helix family member e22 protein-coding 37 0.004411
-27324 TOX3 TOX high mobility group box family member 3 protein-coding 75 0.008941
-27327 TNRC6A trinucleotide repeat containing 6A protein-coding 211 0.02515
-27328 PCDH11X protocadherin 11 X-linked protein-coding 402 0.04793
-27329 ANGPTL3 angiopoietin like 3 protein-coding 46 0.005484
-27330 RPS6KA6 ribosomal protein S6 kinase A6 protein-coding 149 0.01776
-27332 ZNF638 zinc finger protein 638 protein-coding 189 0.02253
-27333 GOLIM4 golgi integral membrane protein 4 protein-coding 102 0.01216
-27334 P2RY10 P2Y receptor family member 10 protein-coding 101 0.01204
-27335 EIF3K eukaryotic translation initiation factor 3 subunit K protein-coding 33 0.003934
-27336 HTATSF1 HIV-1 Tat specific factor 1 protein-coding 123 0.01466
-27338 UBE2S ubiquitin conjugating enzyme E2 S protein-coding 21 0.002504
-27339 PRPF19 pre-mRNA processing factor 19 protein-coding 59 0.007034
-27340 UTP20 UTP20, small subunit processome component protein-coding 245 0.02921
-27341 RRP7A ribosomal RNA processing 7 homolog A protein-coding 22 0.002623
-27342 RABGEF1 RAB guanine nucleotide exchange factor 1 protein-coding 8 0.0009537
-27343 POLL DNA polymerase lambda protein-coding 47 0.005603
-27344 PCSK1N proprotein convertase subtilisin/kexin type 1 inhibitor protein-coding 4 0.0004769
-27345 KCNMB4 potassium calcium-activated channel subfamily M regulatory beta subunit 4 protein-coding 41 0.004888
-27346 TMEM97 transmembrane protein 97 protein-coding 20 0.002384
-27347 STK39 serine/threonine kinase 39 protein-coding 60 0.007153
-27348 TOR1B torsin family 1 member B protein-coding 34 0.004053
-27349 MCAT malonyl-CoA-acyl carrier protein transacylase protein-coding 33 0.003934
-27350 APOBEC3C apolipoprotein B mRNA editing enzyme catalytic subunit 3C protein-coding 27 0.003219
-27351 DESI1 desumoylating isopeptidase 1 protein-coding 37 0.004411
-27352 SGSM3 small G protein signaling modulator 3 protein-coding 72 0.008584
-27429 HTRA2 HtrA serine peptidase 2 protein-coding 49 0.005842
-27430 MAT2B methionine adenosyltransferase 2B protein-coding 41 0.004888
-27433 TOR2A torsin family 2 member A protein-coding 25 0.00298
-27434 POLM DNA polymerase mu protein-coding 64 0.00763
-27436 EML4 echinoderm microtubule associated protein like 4 protein-coding 96 0.01144
-27437 HSFY1P1 heat shock transcription factor, Y-linked 1 pseudogene 1 pseudo 37 0.004411
-27439 TMEM121B transmembrane protein 121B protein-coding 25 0.00298
-27440 HDHD5 haloacid dehalogenase like hydrolase domain containing 5 protein-coding 41 0.004888
-27443 CECR2 CECR2, histone acetyl-lysine reader protein-coding 178 0.02122
-27445 PCLO piccolo presynaptic cytomatrix protein protein-coding 798 0.09514
-28227 PPP2R3B protein phosphatase 2 regulatory subunit B''beta protein-coding 74 0.008822
-28231 SLCO4A1 solute carrier organic anion transporter family member 4A1 protein-coding 90 0.01073
-28232 SLCO3A1 solute carrier organic anion transporter family member 3A1 protein-coding 96 0.01144
-28234 SLCO1B3 solute carrier organic anion transporter family member 1B3 protein-coding 127 0.01514
-28299 IGKV1-5 immunoglobulin kappa variable 1-5 other 57 0.006795
-28307 IGHV3OR16-9 immunoglobulin heavy variable 3/OR16-9 (non-functional) pseudo 32 0.003815
-28316 CDH20 cadherin 20 protein-coding 152 0.01812
-28317 IGHV4OR15-8 immunoglobulin heavy variable 4/OR15-8 (non-functional) other 76 0.009061
-28318 IGHV3OR15-7 immunoglobulin heavy variable 3/OR15-7 (pseudogene) pseudo 16 0.001907
-28378 IGHV7-81 immunoglobulin heavy variable 7-81 (non-functional) other 27 0.003219
-28385 IGHV6-1 immunoglobulin heavy variable 6-1 other 27 0.003219
-28388 IGHV5-51 immunoglobulin heavy variable 5-51 other 29 0.003457
-28391 IGHV4-61 immunoglobulin heavy variable 4-61 other 14 0.001669
-28392 IGHV4-59 immunoglobulin heavy variable 4-59 other 28 0.003338
-28394 IGHV4-39 immunoglobulin heavy variable 4-39 other 24 0.002861
-28395 IGHV4-34 immunoglobulin heavy variable 4-34 other 35 0.004173
-28396 IGHV4-31 immunoglobulin heavy variable 4-31 other 41 0.004888
-28400 IGHV4-28 immunoglobulin heavy variable 4-28 other 40 0.004769
-28401 IGHV4-4 immunoglobulin heavy variable 4-4 other 13 0.00155
-28408 IGHV3-74 immunoglobulin heavy variable 3-74 other 20 0.002384
-28409 IGHV3-73 immunoglobulin heavy variable 3-73 other 22 0.002623
-28410 IGHV3-72 immunoglobulin heavy variable 3-72 other 29 0.003457
-28412 IGHV3-66 immunoglobulin heavy variable 3-66 other 14 0.001669
-28414 IGHV3-64 immunoglobulin heavy variable 3-64 other 21 0.002504
-28420 IGHV3-53 immunoglobulin heavy variable 3-53 other 35 0.004173
-28423 IGHV3-49 immunoglobulin heavy variable 3-49 other 20 0.002384
-28424 IGHV3-48 immunoglobulin heavy variable 3-48 other 27 0.003219
-28426 IGHV3-43 immunoglobulin heavy variable 3-43 other 36 0.004292
-28429 IGHV3-38 immunoglobulin heavy variable 3-38 (non-functional) other 32 0.003815
-28432 IGHV3-35 immunoglobulin heavy variable 3-35 (non-functional) other 22 0.002623
-28434 IGHV3-33 immunoglobulin heavy variable 3-33 other 22 0.002623
-28439 IGHV3-30 immunoglobulin heavy variable 3-30 other 30 0.003577
-28442 IGHV3-23 immunoglobulin heavy variable 3-23 other 46 0.005484
-28444 IGHV3-21 immunoglobulin heavy variable 3-21 other 26 0.0031
-28445 IGHV3-20 immunoglobulin heavy variable 3-20 other 41 0.004888
-28447 IGHV3-16 immunoglobulin heavy variable 3-16 (non-functional) other 33 0.003934
-28448 IGHV3-15 immunoglobulin heavy variable 3-15 other 23 0.002742
-28449 IGHV3-13 immunoglobulin heavy variable 3-13 other 23 0.002742
-28450 IGHV3-11 immunoglobulin heavy variable 3-11 (gene/pseudogene) other 20 0.002384
-28451 IGHV3-9 immunoglobulin heavy variable 3-9 other 15 0.001788
-28452 IGHV3-7 immunoglobulin heavy variable 3-7 other 20 0.002384
-28454 IGHV2-70 immunoglobulin heavy variable 2-70 other 49 0.005842
-28455 IGHV2-26 immunoglobulin heavy variable 2-26 other 20 0.002384
-28457 IGHV2-5 immunoglobulin heavy variable 2-5 other 23 0.002742
-28461 IGHV1-69 immunoglobulin heavy variable 1-69 other 40 0.004769
-28464 IGHV1-58 immunoglobulin heavy variable 1-58 other 31 0.003696
-28465 IGHV1-46 immunoglobulin heavy variable 1-46 other 25 0.00298
-28466 IGHV1-45 immunoglobulin heavy variable 1-45 other 36 0.004292
-28467 IGHV1-24 immunoglobulin heavy variable 1-24 other 32 0.003815
-28468 IGHV1-18 immunoglobulin heavy variable 1-18 other 34 0.004053
-28472 IGHV1-8 immunoglobulin heavy variable 1-8 other 13 0.00155
-28473 IGHV1-3 immunoglobulin heavy variable 1-3 other 17 0.002027
-28474 IGHV1-2 immunoglobulin heavy variable 1-2 other 29 0.003457
-28475 IGHJ6 immunoglobulin heavy joining 6 other 7 0.0008345
-28476 IGHJ5 immunoglobulin heavy joining 5 other 7 0.0008345
-28477 IGHJ4 immunoglobulin heavy joining 4 other 5 0.0005961
+1 A1BG alpha-1-B glycoprotein protein-coding 54 0.006431
+2 A2M alpha-2-macroglobulin protein-coding 198 0.02358
+9 NAT1 N-acetyltransferase 1 protein-coding 33 0.00393
+10 NAT2 N-acetyltransferase 2 protein-coding 40 0.004764
+12 SERPINA3 serpin family A member 3 protein-coding 78 0.009289
+13 AADAC arylacetamide deacetylase protein-coding 58 0.006907
+14 AAMP angio associated migratory cell protein protein-coding 30 0.003573
+15 AANAT aralkylamine N-acetyltransferase protein-coding 25 0.002977
+16 AARS alanyl-tRNA synthetase protein-coding 85 0.01012
+18 ABAT 4-aminobutyrate aminotransferase protein-coding 68 0.008098
+19 ABCA1 ATP binding cassette subfamily A member 1 protein-coding 214 0.02549
+20 ABCA2 ATP binding cassette subfamily A member 2 protein-coding 188 0.02239
+21 ABCA3 ATP binding cassette subfamily A member 3 protein-coding 167 0.01989
+22 ABCB7 ATP binding cassette subfamily B member 7 protein-coding 100 0.01191
+23 ABCF1 ATP binding cassette subfamily F member 1 protein-coding 88 0.01048
+24 ABCA4 ATP binding cassette subfamily A member 4 protein-coding 227 0.02703
+25 ABL1 ABL proto-oncogene 1, non-receptor tyrosine kinase protein-coding 108 0.01286
+26 AOC1 amine oxidase, copper containing 1 protein-coding 190 0.02263
+27 ABL2 ABL proto-oncogene 2, non-receptor tyrosine kinase protein-coding 141 0.01679
+28 ABO ABO, alpha 1-3-N-acetylgalactosaminyltransferase and alpha 1-3-galactosyltransferase protein-coding 6 0.0007145
+29 ABR ABR, RhoGEF and GTPase activating protein protein-coding 101 0.01203
+30 ACAA1 acetyl-CoA acyltransferase 1 protein-coding 38 0.004525
+31 ACACA acetyl-CoA carboxylase alpha protein-coding 247 0.02942
+32 ACACB acetyl-CoA carboxylase beta protein-coding 282 0.03358
+33 ACADL acyl-CoA dehydrogenase long chain protein-coding 64 0.007622
+34 ACADM acyl-CoA dehydrogenase medium chain protein-coding 65 0.007741
+35 ACADS acyl-CoA dehydrogenase short chain protein-coding 50 0.005955
+36 ACADSB acyl-CoA dehydrogenase short/branched chain protein-coding 50 0.005955
+37 ACADVL acyl-CoA dehydrogenase very long chain protein-coding 55 0.00655
+38 ACAT1 acetyl-CoA acetyltransferase 1 protein-coding 51 0.006074
+39 ACAT2 acetyl-CoA acetyltransferase 2 protein-coding 39 0.004645
+40 ASIC2 acid sensing ion channel subunit 2 protein-coding 215 0.0256
+41 ASIC1 acid sensing ion channel subunit 1 protein-coding 66 0.00786
+43 ACHE acetylcholinesterase (Cartwright blood group) protein-coding 70 0.008336
+47 ACLY ATP citrate lyase protein-coding 105 0.0125
+48 ACO1 aconitase 1 protein-coding 85 0.01012
+49 ACR acrosin protein-coding 36 0.004287
+50 ACO2 aconitase 2 protein-coding 72 0.008574
+51 ACOX1 acyl-CoA oxidase 1 protein-coding 71 0.008455
+52 ACP1 acid phosphatase 1 protein-coding 24 0.002858
+53 ACP2 acid phosphatase 2, lysosomal protein-coding 38 0.004525
+54 ACP5 acid phosphatase 5, tartrate resistant protein-coding 42 0.005002
+55 ACPP acid phosphatase, prostate protein-coding 67 0.007979
+56 ACRV1 acrosomal vesicle protein 1 protein-coding 32 0.003811
+58 ACTA1 actin, alpha 1, skeletal muscle protein-coding 70 0.008336
+59 ACTA2 actin, alpha 2, smooth muscle, aorta protein-coding 50 0.005955
+60 ACTB actin beta protein-coding 94 0.01119
+70 ACTC1 actin, alpha, cardiac muscle 1 protein-coding 89 0.0106
+71 ACTG1 actin gamma 1 protein-coding 61 0.007264
+72 ACTG2 actin, gamma 2, smooth muscle, enteric protein-coding 62 0.007384
+81 ACTN4 actinin alpha 4 protein-coding 124 0.01477
+86 ACTL6A actin like 6A protein-coding 61 0.007264
+87 ACTN1 actinin alpha 1 protein-coding 98 0.01167
+88 ACTN2 actinin alpha 2 protein-coding 179 0.02132
+90 ACVR1 activin A receptor type 1 protein-coding 67 0.007979
+91 ACVR1B activin A receptor type 1B protein-coding 110 0.0131
+92 ACVR2A activin A receptor type 2A protein-coding 181 0.02156
+93 ACVR2B activin A receptor type 2B protein-coding 56 0.006669
+94 ACVRL1 activin A receptor like type 1 protein-coding 81 0.009646
+95 ACY1 aminoacylase 1 protein-coding 41 0.004883
+97 ACYP1 acylphosphatase 1 protein-coding 13 0.001548
+98 ACYP2 acylphosphatase 2 protein-coding 7 0.0008336
+100 ADA adenosine deaminase protein-coding 37 0.004406
+101 ADAM8 ADAM metallopeptidase domain 8 protein-coding 75 0.008932
+102 ADAM10 ADAM metallopeptidase domain 10 protein-coding 89 0.0106
+103 ADAR adenosine deaminase, RNA specific protein-coding 113 0.01346
+104 ADARB1 adenosine deaminase, RNA specific B1 protein-coding 84 0.01
+105 ADARB2 adenosine deaminase, RNA specific B2 (inactive) protein-coding 133 0.01584
+107 ADCY1 adenylate cyclase 1 protein-coding 179 0.02132
+108 ADCY2 adenylate cyclase 2 protein-coding 249 0.02965
+109 ADCY3 adenylate cyclase 3 protein-coding 119 0.01417
+111 ADCY5 adenylate cyclase 5 protein-coding 172 0.02048
+112 ADCY6 adenylate cyclase 6 protein-coding 121 0.01441
+113 ADCY7 adenylate cyclase 7 protein-coding 112 0.01334
+114 ADCY8 adenylate cyclase 8 protein-coding 384 0.04573
+115 ADCY9 adenylate cyclase 9 protein-coding 159 0.01894
+116 ADCYAP1 adenylate cyclase activating polypeptide 1 protein-coding 35 0.004168
+117 ADCYAP1R1 ADCYAP receptor type I protein-coding 96 0.01143
+118 ADD1 adducin 1 protein-coding 91 0.01084
+119 ADD2 adducin 2 protein-coding 111 0.01322
+120 ADD3 adducin 3 protein-coding 104 0.01239
+123 PLIN2 perilipin 2 protein-coding 39 0.004645
+124 ADH1A alcohol dehydrogenase 1A (class I), alpha polypeptide protein-coding 53 0.006312
+125 ADH1B alcohol dehydrogenase 1B (class I), beta polypeptide protein-coding 61 0.007264
+126 ADH1C alcohol dehydrogenase 1C (class I), gamma polypeptide protein-coding 78 0.009289
+127 ADH4 alcohol dehydrogenase 4 (class II), pi polypeptide protein-coding 46 0.005478
+128 ADH5 alcohol dehydrogenase 5 (class III), chi polypeptide protein-coding 31 0.003692
+130 ADH6 alcohol dehydrogenase 6 (class V) protein-coding 56 0.006669
+131 ADH7 alcohol dehydrogenase 7 (class IV), mu or sigma polypeptide protein-coding 55 0.00655
+132 ADK adenosine kinase protein-coding 31 0.003692
+133 ADM adrenomedullin protein-coding 23 0.002739
+134 ADORA1 adenosine A1 receptor protein-coding 59 0.007026
+135 ADORA2A adenosine A2a receptor protein-coding 53 0.006312
+136 ADORA2B adenosine A2b receptor protein-coding 19 0.002263
+140 ADORA3 adenosine A3 receptor protein-coding 54 0.006431
+141 ADPRH ADP-ribosylarginine hydrolase protein-coding 49 0.005835
+142 PARP1 poly(ADP-ribose) polymerase 1 protein-coding 100 0.01191
+143 PARP4 poly(ADP-ribose) polymerase family member 4 protein-coding 148 0.01763
+146 ADRA1D adrenoceptor alpha 1D protein-coding 135 0.01608
+147 ADRA1B adrenoceptor alpha 1B protein-coding 53 0.006312
+148 ADRA1A adrenoceptor alpha 1A protein-coding 88 0.01048
+150 ADRA2A adrenoceptor alpha 2A protein-coding 64 0.007622
+151 ADRA2B adrenoceptor alpha 2B protein-coding 61 0.007264
+152 ADRA2C adrenoceptor alpha 2C protein-coding 45 0.005359
+153 ADRB1 adrenoceptor beta 1 protein-coding 36 0.004287
+154 ADRB2 adrenoceptor beta 2 protein-coding 51 0.006074
+155 ADRB3 adrenoceptor beta 3 protein-coding 41 0.004883
+156 GRK2 G protein-coupled receptor kinase 2 protein-coding 74 0.008813
+157 GRK3 G protein-coupled receptor kinase 3 protein-coding 82 0.009765
+158 ADSL adenylosuccinate lyase protein-coding 108 0.01286
+159 ADSS adenylosuccinate synthase protein-coding 53 0.006312
+160 AP2A1 adaptor related protein complex 2 alpha 1 subunit protein-coding 89 0.0106
+161 AP2A2 adaptor related protein complex 2 alpha 2 subunit protein-coding 99 0.01179
+162 AP1B1 adaptor related protein complex 1 beta 1 subunit protein-coding 94 0.01119
+163 AP2B1 adaptor related protein complex 2 beta 1 subunit protein-coding 97 0.01155
+164 AP1G1 adaptor related protein complex 1 gamma 1 subunit protein-coding 96 0.01143
+165 AEBP1 AE binding protein 1 protein-coding 144 0.01715
+166 AES amino-terminal enhancer of split protein-coding 13 0.001548
+167 CRISP1 cysteine rich secretory protein 1 protein-coding 58 0.006907
+172 AFG3L1P AFG3 like matrix AAA peptidase subunit 1, pseudogene pseudo 19 0.002263
+173 AFM afamin protein-coding 93 0.01108
+174 AFP alpha fetoprotein protein-coding 79 0.009408
+175 AGA aspartylglucosaminidase protein-coding 56 0.006669
+176 ACAN aggrecan protein-coding 302 0.03597
+177 AGER advanced glycosylation end-product specific receptor protein-coding 33 0.00393
+178 AGL amylo-alpha-1, 6-glucosidase, 4-alpha-glucanotransferase protein-coding 156 0.01858
+181 AGRP agouti related neuropeptide protein-coding 12 0.001429
+182 JAG1 jagged 1 protein-coding 157 0.0187
+183 AGT angiotensinogen protein-coding 65 0.007741
+185 AGTR1 angiotensin II receptor type 1 protein-coding 78 0.009289
+186 AGTR2 angiotensin II receptor type 2 protein-coding 66 0.00786
+187 APLNR apelin receptor protein-coding 84 0.01
+189 AGXT alanine--glyoxylate and serine--pyruvate aminotransferase protein-coding 109 0.01298
+190 NR0B1 nuclear receptor subfamily 0 group B member 1 protein-coding 91 0.01084
+191 AHCY adenosylhomocysteinase protein-coding 47 0.005597
+196 AHR aryl hydrocarbon receptor protein-coding 107 0.01274
+197 AHSG alpha 2-HS glycoprotein protein-coding 62 0.007384
+199 AIF1 allograft inflammatory factor 1 protein-coding 16 0.001905
+202 CRYBG1 crystallin beta-gamma domain containing 1 protein-coding 154 0.01834
+203 AK1 adenylate kinase 1 protein-coding 15 0.001786
+204 AK2 adenylate kinase 2 protein-coding 15 0.001786
+205 AK4 adenylate kinase 4 protein-coding 46 0.005478
+207 AKT1 AKT serine/threonine kinase 1 protein-coding 90 0.01072
+208 AKT2 AKT serine/threonine kinase 2 protein-coding 69 0.008217
+210 ALAD aminolevulinate dehydratase protein-coding 34 0.004049
+211 ALAS1 5'-aminolevulinate synthase 1 protein-coding 67 0.007979
+212 ALAS2 5'-aminolevulinate synthase 2 protein-coding 91 0.01084
+213 ALB albumin protein-coding 147 0.01751
+214 ALCAM activated leukocyte cell adhesion molecule protein-coding 80 0.009527
+215 ABCD1 ATP binding cassette subfamily D member 1 protein-coding 102 0.01215
+216 ALDH1A1 aldehyde dehydrogenase 1 family member A1 protein-coding 63 0.007503
+217 ALDH2 aldehyde dehydrogenase 2 family member protein-coding 44 0.00524
+218 ALDH3A1 aldehyde dehydrogenase 3 family member A1 protein-coding 62 0.007384
+219 ALDH1B1 aldehyde dehydrogenase 1 family member B1 protein-coding 69 0.008217
+220 ALDH1A3 aldehyde dehydrogenase 1 family member A3 protein-coding 71 0.008455
+221 ALDH3B1 aldehyde dehydrogenase 3 family member B1 protein-coding 40 0.004764
+222 ALDH3B2 aldehyde dehydrogenase 3 family member B2 protein-coding 57 0.006788
+223 ALDH9A1 aldehyde dehydrogenase 9 family member A1 protein-coding 56 0.006669
+224 ALDH3A2 aldehyde dehydrogenase 3 family member A2 protein-coding 44 0.00524
+225 ABCD2 ATP binding cassette subfamily D member 2 protein-coding 122 0.01453
+226 ALDOA aldolase, fructose-bisphosphate A protein-coding 43 0.005121
+229 ALDOB aldolase, fructose-bisphosphate B protein-coding 76 0.009051
+230 ALDOC aldolase, fructose-bisphosphate C protein-coding 36 0.004287
+231 AKR1B1 aldo-keto reductase family 1 member B protein-coding 164 0.01953
+238 ALK ALK receptor tyrosine kinase protein-coding 211 0.02513
+239 ALOX12 arachidonate 12-lipoxygenase, 12S type protein-coding 63 0.007503
+240 ALOX5 arachidonate 5-lipoxygenase protein-coding 108 0.01286
+241 ALOX5AP arachidonate 5-lipoxygenase activating protein protein-coding 18 0.002144
+242 ALOX12B arachidonate 12-lipoxygenase, 12R type protein-coding 94 0.01119
+246 ALOX15 arachidonate 15-lipoxygenase protein-coding 58 0.006907
+247 ALOX15B arachidonate 15-lipoxygenase, type B protein-coding 87 0.01036
+248 ALPI alkaline phosphatase, intestinal protein-coding 72 0.008574
+249 ALPL alkaline phosphatase, liver/bone/kidney protein-coding 60 0.007145
+250 ALPP alkaline phosphatase, placental protein-coding 89 0.0106
+251 ALPPL2 alkaline phosphatase, placental like 2 protein-coding 61 0.007264
+257 ALX3 ALX homeobox 3 protein-coding 28 0.003335
+258 AMBN ameloblastin protein-coding 60 0.007145
+259 AMBP alpha-1-microglobulin/bikunin precursor protein-coding 44 0.00524
+262 AMD1 adenosylmethionine decarboxylase 1 protein-coding 48 0.005716
+265 AMELX amelogenin, X-linked protein-coding 41 0.004883
+266 AMELY amelogenin, Y-linked protein-coding 7 0.0008336
+267 AMFR autocrine motility factor receptor protein-coding 62 0.007384
+268 AMH anti-Mullerian hormone protein-coding 23 0.002739
+269 AMHR2 anti-Mullerian hormone receptor type 2 protein-coding 64 0.007622
+270 AMPD1 adenosine monophosphate deaminase 1 protein-coding 145 0.01727
+271 AMPD2 adenosine monophosphate deaminase 2 protein-coding 84 0.01
+272 AMPD3 adenosine monophosphate deaminase 3 protein-coding 96 0.01143
+273 AMPH amphiphysin protein-coding 180 0.02144
+274 BIN1 bridging integrator 1 protein-coding 62 0.007384
+275 AMT aminomethyltransferase protein-coding 32 0.003811
+276 AMY1A amylase, alpha 1A (salivary) protein-coding 20 0.002382
+277 AMY1B amylase, alpha 1B (salivary) protein-coding 10 0.001191
+278 AMY1C amylase, alpha 1C (salivary) protein-coding 31 0.003692
+279 AMY2A amylase, alpha 2A (pancreatic) protein-coding 93 0.01108
+280 AMY2B amylase, alpha 2B (pancreatic) protein-coding 130 0.01548
+283 ANG angiogenin protein-coding 11 0.00131
+284 ANGPT1 angiopoietin 1 protein-coding 76 0.009051
+285 ANGPT2 angiopoietin 2 protein-coding 66 0.00786
+286 ANK1 ankyrin 1 protein-coding 274 0.03263
+287 ANK2 ankyrin 2 protein-coding 505 0.06014
+288 ANK3 ankyrin 3 protein-coding 439 0.05228
+290 ANPEP alanyl aminopeptidase, membrane protein-coding 117 0.01393
+291 SLC25A4 solute carrier family 25 member 4 protein-coding 29 0.003454
+292 SLC25A5 solute carrier family 25 member 5 protein-coding 41 0.004883
+293 SLC25A6 solute carrier family 25 member 6 protein-coding 44 0.00524
+301 ANXA1 annexin A1 protein-coding 49 0.005835
+302 ANXA2 annexin A2 protein-coding 35 0.004168
+306 ANXA3 annexin A3 protein-coding 41 0.004883
+307 ANXA4 annexin A4 protein-coding 48 0.005716
+308 ANXA5 annexin A5 protein-coding 48 0.005716
+309 ANXA6 annexin A6 protein-coding 74 0.008813
+310 ANXA7 annexin A7 protein-coding 53 0.006312
+311 ANXA11 annexin A11 protein-coding 59 0.007026
+312 ANXA13 annexin A13 protein-coding 73 0.008694
+313 AOAH acyloxyacyl hydrolase protein-coding 78 0.009289
+314 AOC2 amine oxidase, copper containing 2 protein-coding 77 0.00917
+316 AOX1 aldehyde oxidase 1 protein-coding 163 0.01941
+317 APAF1 apoptotic peptidase activating factor 1 protein-coding 130 0.01548
+318 NUDT2 nudix hydrolase 2 protein-coding 16 0.001905
+319 APOF apolipoprotein F protein-coding 28 0.003335
+320 APBA1 amyloid beta precursor protein binding family A member 1 protein-coding 122 0.01453
+321 APBA2 amyloid beta precursor protein binding family A member 2 protein-coding 161 0.01917
+322 APBB1 amyloid beta precursor protein binding family B member 1 protein-coding 97 0.01155
+323 APBB2 amyloid beta precursor protein binding family B member 2 protein-coding 76 0.009051
+324 APC APC, WNT signaling pathway regulator protein-coding 586 0.06979
+325 APCS amyloid P component, serum protein-coding 48 0.005716
+326 AIRE autoimmune regulator protein-coding 53 0.006312
+327 APEH acylaminoacyl-peptide hydrolase protein-coding 65 0.007741
+328 APEX1 apurinic/apyrimidinic endodeoxyribonuclease 1 protein-coding 95 0.01131
+329 BIRC2 baculoviral IAP repeat containing 2 protein-coding 67 0.007979
+330 BIRC3 baculoviral IAP repeat containing 3 protein-coding 66 0.00786
+331 XIAP X-linked inhibitor of apoptosis protein-coding 74 0.008813
+332 BIRC5 baculoviral IAP repeat containing 5 protein-coding 21 0.002501
+333 APLP1 amyloid beta precursor like protein 1 protein-coding 111 0.01322
+334 APLP2 amyloid beta precursor like protein 2 protein-coding 136 0.0162
+335 APOA1 apolipoprotein A1 protein-coding 36 0.004287
+336 APOA2 apolipoprotein A2 protein-coding 11 0.00131
+337 APOA4 apolipoprotein A4 protein-coding 79 0.009408
+338 APOB apolipoprotein B protein-coding 595 0.07086
+339 APOBEC1 apolipoprotein B mRNA editing enzyme catalytic subunit 1 protein-coding 65 0.007741
+341 APOC1 apolipoprotein C1 protein-coding 10 0.001191
+342 APOC1P1 apolipoprotein C1 pseudogene 1 pseudo 5 0.0005955
+343 AQP8 aquaporin 8 protein-coding 42 0.005002
+344 APOC2 apolipoprotein C2 protein-coding 11 0.00131
+345 APOC3 apolipoprotein C3 protein-coding 13 0.001548
+346 APOC4 apolipoprotein C4 protein-coding 14 0.001667
+347 APOD apolipoprotein D protein-coding 31 0.003692
+348 APOE apolipoprotein E protein-coding 20 0.002382
+350 APOH apolipoprotein H protein-coding 58 0.006907
+351 APP amyloid beta precursor protein protein-coding 105 0.0125
+353 APRT adenine phosphoribosyltransferase protein-coding 16 0.001905
+354 KLK3 kallikrein related peptidase 3 protein-coding 42 0.005002
+355 FAS Fas cell surface death receptor protein-coding 61 0.007264
+356 FASLG Fas ligand protein-coding 48 0.005716
+357 SHROOM2 shroom family member 2 protein-coding 178 0.0212
+358 AQP1 aquaporin 1 (Colton blood group) protein-coding 34 0.004049
+359 AQP2 aquaporin 2 protein-coding 33 0.00393
+360 AQP3 aquaporin 3 (Gill blood group) protein-coding 29 0.003454
+361 AQP4 aquaporin 4 protein-coding 39 0.004645
+362 AQP5 aquaporin 5 protein-coding 27 0.003215
+363 AQP6 aquaporin 6 protein-coding 38 0.004525
+364 AQP7 aquaporin 7 protein-coding 50 0.005955
+366 AQP9 aquaporin 9 protein-coding 56 0.006669
+367 AR androgen receptor protein-coding 129 0.01536
+368 ABCC6 ATP binding cassette subfamily C member 6 protein-coding 134 0.01596
+369 ARAF A-Raf proto-oncogene, serine/threonine kinase protein-coding 101 0.01203
+372 ARCN1 archain 1 protein-coding 42 0.005002
+373 TRIM23 tripartite motif containing 23 protein-coding 75 0.008932
+374 AREG amphiregulin protein-coding 148 0.01763
+375 ARF1 ADP ribosylation factor 1 protein-coding 35 0.004168
+377 ARF3 ADP ribosylation factor 3 protein-coding 12 0.001429
+378 ARF4 ADP ribosylation factor 4 protein-coding 19 0.002263
+379 ARL4D ADP ribosylation factor like GTPase 4D protein-coding 46 0.005478
+381 ARF5 ADP ribosylation factor 5 protein-coding 23 0.002739
+382 ARF6 ADP ribosylation factor 6 protein-coding 17 0.002025
+383 ARG1 arginase 1 protein-coding 32 0.003811
+384 ARG2 arginase 2 protein-coding 34 0.004049
+387 RHOA ras homolog family member A protein-coding 90 0.01072
+388 RHOB ras homolog family member B protein-coding 43 0.005121
+389 RHOC ras homolog family member C protein-coding 25 0.002977
+390 RND3 Rho family GTPase 3 protein-coding 38 0.004525
+391 RHOG ras homolog family member G protein-coding 27 0.003215
+392 ARHGAP1 Rho GTPase activating protein 1 protein-coding 38 0.004525
+393 ARHGAP4 Rho GTPase activating protein 4 protein-coding 109 0.01298
+394 ARHGAP5 Rho GTPase activating protein 5 protein-coding 182 0.02167
+395 ARHGAP6 Rho GTPase activating protein 6 protein-coding 133 0.01584
+396 ARHGDIA Rho GDP dissociation inhibitor alpha protein-coding 30 0.003573
+397 ARHGDIB Rho GDP dissociation inhibitor beta protein-coding 31 0.003692
+398 ARHGDIG Rho GDP dissociation inhibitor gamma protein-coding 9 0.001072
+399 RHOH ras homolog family member H protein-coding 31 0.003692
+400 ARL1 ADP ribosylation factor like GTPase 1 protein-coding 19 0.002263
+401 PHOX2A paired like homeobox 2a protein-coding 248 0.02953
+402 ARL2 ADP ribosylation factor like GTPase 2 protein-coding 18 0.002144
+403 ARL3 ADP ribosylation factor like GTPase 3 protein-coding 11 0.00131
+405 ARNT aryl hydrocarbon receptor nuclear translocator protein-coding 80 0.009527
+406 ARNTL aryl hydrocarbon receptor nuclear translocator like protein-coding 58 0.006907
+407 ARR3 arrestin 3 protein-coding 47 0.005597
+408 ARRB1 arrestin beta 1 protein-coding 49 0.005835
+409 ARRB2 arrestin beta 2 protein-coding 36 0.004287
+410 ARSA arylsulfatase A protein-coding 43 0.005121
+411 ARSB arylsulfatase B protein-coding 60 0.007145
+412 STS steroid sulfatase protein-coding 92 0.01096
+414 ARSD arylsulfatase D protein-coding 65 0.007741
+415 ARSE arylsulfatase E (chondrodysplasia punctata 1) protein-coding 65 0.007741
+416 ARSF arylsulfatase F protein-coding 90 0.01072
+417 ART1 ADP-ribosyltransferase 1 protein-coding 50 0.005955
+419 ART3 ADP-ribosyltransferase 3 protein-coding 42 0.005002
+420 ART4 ADP-ribosyltransferase 4 (Dombrock blood group) protein-coding 100 0.01191
+421 ARVCF ARVCF, delta catenin family member protein-coding 98 0.01167
+427 ASAH1 N-acylsphingosine amidohydrolase 1 protein-coding 40 0.004764
+429 ASCL1 achaete-scute family bHLH transcription factor 1 protein-coding 27 0.003215
+430 ASCL2 achaete-scute family bHLH transcription factor 2 protein-coding 2 0.0002382
+432 ASGR1 asialoglycoprotein receptor 1 protein-coding 27 0.003215
+433 ASGR2 asialoglycoprotein receptor 2 protein-coding 35 0.004168
+434 ASIP agouti signaling protein protein-coding 15 0.001786
+435 ASL argininosuccinate lyase protein-coding 56 0.006669
+438 ASMT acetylserotonin O-methyltransferase protein-coding 61 0.007264
+439 ASNA1 arsA arsenite transporter, ATP-binding, homolog 1 (bacterial) protein-coding 38 0.004525
+440 ASNS asparagine synthetase (glutamine-hydrolyzing) protein-coding 75 0.008932
+443 ASPA aspartoacylase protein-coding 47 0.005597
+444 ASPH aspartate beta-hydroxylase protein-coding 102 0.01215
+445 ASS1 argininosuccinate synthase 1 protein-coding 59 0.007026
+460 ASTN1 astrotactin 1 protein-coding 337 0.04013
+462 SERPINC1 serpin family C member 1 protein-coding 74 0.008813
+463 ZFHX3 zinc finger homeobox 3 protein-coding 384 0.04573
+466 ATF1 activating transcription factor 1 protein-coding 28 0.003335
+467 ATF3 activating transcription factor 3 protein-coding 23 0.002739
+468 ATF4 activating transcription factor 4 protein-coding 45 0.005359
+471 ATIC 5-aminoimidazole-4-carboxamide ribonucleotide formyltransferase/IMP cyclohydrolase protein-coding 74 0.008813
+472 ATM ATM serine/threonine kinase protein-coding 440 0.0524
+473 RERE arginine-glutamic acid dipeptide repeats protein-coding 166 0.01977
+474 ATOH1 atonal bHLH transcription factor 1 protein-coding 61 0.007264
+475 ATOX1 antioxidant 1 copper chaperone protein-coding 3 0.0003573
+476 ATP1A1 ATPase Na+/K+ transporting subunit alpha 1 protein-coding 104 0.01239
+477 ATP1A2 ATPase Na+/K+ transporting subunit alpha 2 protein-coding 171 0.02036
+478 ATP1A3 ATPase Na+/K+ transporting subunit alpha 3 protein-coding 224 0.02668
+479 ATP12A ATPase H+/K+ transporting non-gastric alpha2 subunit protein-coding 156 0.01858
+480 ATP1A4 ATPase Na+/K+ transporting subunit alpha 4 protein-coding 162 0.01929
+481 ATP1B1 ATPase Na+/K+ transporting subunit beta 1 protein-coding 48 0.005716
+482 ATP1B2 ATPase Na+/K+ transporting subunit beta 2 protein-coding 40 0.004764
+483 ATP1B3 ATPase Na+/K+ transporting subunit beta 3 protein-coding 32 0.003811
+486 FXYD2 FXYD domain containing ion transport regulator 2 protein-coding 2 0.0002382
+487 ATP2A1 ATPase sarcoplasmic/endoplasmic reticulum Ca2+ transporting 1 protein-coding 139 0.01655
+488 ATP2A2 ATPase sarcoplasmic/endoplasmic reticulum Ca2+ transporting 2 protein-coding 110 0.0131
+489 ATP2A3 ATPase sarcoplasmic/endoplasmic reticulum Ca2+ transporting 3 protein-coding 107 0.01274
+490 ATP2B1 ATPase plasma membrane Ca2+ transporting 1 protein-coding 130 0.01548
+491 ATP2B2 ATPase plasma membrane Ca2+ transporting 2 protein-coding 186 0.02215
+492 ATP2B3 ATPase plasma membrane Ca2+ transporting 3 protein-coding 194 0.0231
+493 ATP2B4 ATPase plasma membrane Ca2+ transporting 4 protein-coding 281 0.03346
+495 ATP4A ATPase H+/K+ transporting alpha subunit protein-coding 144 0.01715
+496 ATP4B ATPase H+/K+ transporting beta subunit protein-coding 35 0.004168
+498 ATP5F1A ATP synthase F1 subunit alpha protein-coding 53 0.006312
+501 ALDH7A1 aldehyde dehydrogenase 7 family member A1 protein-coding 32 0.003811
+506 ATP5F1B ATP synthase F1 subunit beta protein-coding 56 0.006669
+509 ATP5F1C ATP synthase F1 subunit gamma protein-coding 45 0.005359
+513 ATP5F1D ATP synthase F1 subunit delta protein-coding 6 0.0007145
+514 ATP5F1E ATP synthase F1 subunit epsilon protein-coding 5 0.0005955
+515 ATP5PB ATP synthase peripheral stalk-membrane subunit b protein-coding 29 0.003454
+516 ATP5MC1 ATP synthase membrane subunit c locus 1 protein-coding 12 0.001429
+517 ATP5MC2 ATP synthase membrane subunit c locus 2 protein-coding 24 0.002858
+518 ATP5MC3 ATP synthase membrane subunit c locus 3 protein-coding 16 0.001905
+521 ATP5ME ATP synthase membrane subunit e protein-coding 8 0.0009527
+522 ATP5PF ATP synthase peripheral stalk subunit F6 protein-coding 18 0.002144
+523 ATP6V1A ATPase H+ transporting V1 subunit A protein-coding 81 0.009646
+525 ATP6V1B1 ATPase H+ transporting V1 subunit B1 protein-coding 96 0.01143
+526 ATP6V1B2 ATPase H+ transporting V1 subunit B2 protein-coding 60 0.007145
+527 ATP6V0C ATPase H+ transporting V0 subunit c protein-coding 12 0.001429
+528 ATP6V1C1 ATPase H+ transporting V1 subunit C1 protein-coding 51 0.006074
+529 ATP6V1E1 ATPase H+ transporting V1 subunit E1 protein-coding 26 0.003096
+533 ATP6V0B ATPase H+ transporting V0 subunit b protein-coding 22 0.00262
+534 ATP6V1G2 ATPase H+ transporting V1 subunit G2 protein-coding 14 0.001667
+535 ATP6V0A1 ATPase H+ transporting V0 subunit a1 protein-coding 84 0.01
+537 ATP6AP1 ATPase H+ transporting accessory protein 1 protein-coding 62 0.007384
+538 ATP7A ATPase copper transporting alpha protein-coding 179 0.02132
+539 ATP5PO ATP synthase peripheral stalk subunit OSCP protein-coding 10 0.001191
+540 ATP7B ATPase copper transporting beta protein-coding 148 0.01763
+545 ATR ATR serine/threonine kinase protein-coding 270 0.03215
+546 ATRX ATRX, chromatin remodeler protein-coding 585 0.06967
+547 KIF1A kinesin family member 1A protein-coding 234 0.02787
+549 AUH AU RNA binding methylglutaconyl-CoA hydratase protein-coding 39 0.004645
+550 AUP1 AUP1, lipid droplet regulating VLDL assembly factor protein-coding 48 0.005716
+551 AVP arginine vasopressin protein-coding 14 0.001667
+552 AVPR1A arginine vasopressin receptor 1A protein-coding 104 0.01239
+553 AVPR1B arginine vasopressin receptor 1B protein-coding 63 0.007503
+554 AVPR2 arginine vasopressin receptor 2 protein-coding 56 0.006669
+558 AXL AXL receptor tyrosine kinase protein-coding 114 0.01358
+560 AZF1 azoospermia factor 1 unknown 77 0.00917
+563 AZGP1 alpha-2-glycoprotein 1, zinc-binding protein-coding 47 0.005597
+566 AZU1 azurocidin 1 protein-coding 32 0.003811
+567 B2M beta-2-microglobulin protein-coding 111 0.01322
+570 BAAT bile acid-CoA:amino acid N-acyltransferase protein-coding 69 0.008217
+571 BACH1 BTB domain and CNC homolog 1 protein-coding 102 0.01215
+572 BAD BCL2 associated agonist of cell death protein-coding 17 0.002025
+573 BAG1 BCL2 associated athanogene 1 protein-coding 19 0.002263
+575 ADGRB1 adhesion G protein-coupled receptor B1 protein-coding 198 0.02358
+576 ADGRB2 adhesion G protein-coupled receptor B2 protein-coding 164 0.01953
+577 ADGRB3 adhesion G protein-coupled receptor B3 protein-coding 388 0.04621
+578 BAK1 BCL2 antagonist/killer 1 protein-coding 34 0.004049
+579 NKX3-2 NK3 homeobox 2 protein-coding 29 0.003454
+580 BARD1 BRCA1 associated RING domain 1 protein-coding 103 0.01227
+581 BAX BCL2 associated X, apoptosis regulator protein-coding 31 0.003692
+582 BBS1 Bardet-Biedl syndrome 1 protein-coding 62 0.007384
+583 BBS2 Bardet-Biedl syndrome 2 protein-coding 78 0.009289
+585 BBS4 Bardet-Biedl syndrome 4 protein-coding 54 0.006431
+586 BCAT1 branched chain amino acid transaminase 1 protein-coding 64 0.007622
+587 BCAT2 branched chain amino acid transaminase 2 protein-coding 42 0.005002
+590 BCHE butyrylcholinesterase protein-coding 183 0.02179
+593 BCKDHA branched chain keto acid dehydrogenase E1, alpha polypeptide protein-coding 52 0.006193
+594 BCKDHB branched chain keto acid dehydrogenase E1 subunit beta protein-coding 48 0.005716
+595 CCND1 cyclin D1 protein-coding 61 0.007264
+596 BCL2 BCL2, apoptosis regulator protein-coding 22 0.00262
+597 BCL2A1 BCL2 related protein A1 protein-coding 22 0.00262
+598 BCL2L1 BCL2 like 1 protein-coding 23 0.002739
+599 BCL2L2 BCL2 like 2 protein-coding 12 0.001429
+602 BCL3 B cell CLL/lymphoma 3 protein-coding 40 0.004764
+604 BCL6 B cell CLL/lymphoma 6 protein-coding 112 0.01334
+605 BCL7A BCL tumor suppressor 7A protein-coding 27 0.003215
+606 NBEAP1 neurobeachin pseudogene 1 pseudo 48 0.005716
+607 BCL9 B cell CLL/lymphoma 9 protein-coding 180 0.02144
+608 TNFRSF17 TNF receptor superfamily member 17 protein-coding 22 0.00262
+610 HCN2 hyperpolarization activated cyclic nucleotide gated potassium and sodium channel 2 protein-coding 63 0.007503
+611 OPN1SW opsin 1, short wave sensitive protein-coding 53 0.006312
+613 BCR BCR, RhoGEF and GTPase activating protein protein-coding 106 0.01262
+617 BCS1L BCS1 homolog, ubiquinol-cytochrome c reductase complex chaperone protein-coding 36 0.004287
+622 BDH1 3-hydroxybutyrate dehydrogenase 1 protein-coding 45 0.005359
+623 BDKRB1 bradykinin receptor B1 protein-coding 51 0.006074
+624 BDKRB2 bradykinin receptor B2 protein-coding 56 0.006669
+627 BDNF brain derived neurotrophic factor protein-coding 45 0.005359
+629 CFB complement factor B protein-coding 111 0.01322
+631 BFSP1 beaded filament structural protein 1 protein-coding 74 0.008813
+632 BGLAP bone gamma-carboxyglutamate protein protein-coding 13 0.001548
+633 BGN biglycan protein-coding 45 0.005359
+634 CEACAM1 carcinoembryonic antigen related cell adhesion molecule 1 protein-coding 45 0.005359
+635 BHMT betaine--homocysteine S-methyltransferase protein-coding 57 0.006788
+636 BICD1 BICD cargo adaptor 1 protein-coding 107 0.01274
+637 BID BH3 interacting domain death agonist protein-coding 31 0.003692
+638 BIK BCL2 interacting killer protein-coding 15 0.001786
+639 PRDM1 PR/SET domain 1 protein-coding 102 0.01215
+640 BLK BLK proto-oncogene, Src family tyrosine kinase protein-coding 83 0.009884
+641 BLM Bloom syndrome RecQ like helicase protein-coding 131 0.0156
+642 BLMH bleomycin hydrolase protein-coding 56 0.006669
+643 CXCR5 C-X-C motif chemokine receptor 5 protein-coding 39 0.004645
+644 BLVRA biliverdin reductase A protein-coding 46 0.005478
+645 BLVRB biliverdin reductase B protein-coding 13 0.001548
+646 BNC1 basonuclin 1 protein-coding 124 0.01477
+648 BMI1 BMI1 proto-oncogene, polycomb ring finger protein-coding 36 0.004287
+649 BMP1 bone morphogenetic protein 1 protein-coding 126 0.01501
+650 BMP2 bone morphogenetic protein 2 protein-coding 69 0.008217
+651 BMP3 bone morphogenetic protein 3 protein-coding 89 0.0106
+652 BMP4 bone morphogenetic protein 4 protein-coding 71 0.008455
+653 BMP5 bone morphogenetic protein 5 protein-coding 110 0.0131
+654 BMP6 bone morphogenetic protein 6 protein-coding 68 0.008098
+655 BMP7 bone morphogenetic protein 7 protein-coding 84 0.01
+656 BMP8B bone morphogenetic protein 8b protein-coding 28 0.003335
+657 BMPR1A bone morphogenetic protein receptor type 1A protein-coding 69 0.008217
+658 BMPR1B bone morphogenetic protein receptor type 1B protein-coding 71 0.008455
+659 BMPR2 bone morphogenetic protein receptor type 2 protein-coding 148 0.01763
+660 BMX BMX non-receptor tyrosine kinase protein-coding 86 0.01024
+661 POLR3D RNA polymerase III subunit D protein-coding 42 0.005002
+662 BNIP1 BCL2 interacting protein 1 protein-coding 41 0.004883
+663 BNIP2 BCL2 interacting protein 2 protein-coding 23 0.002739
+664 BNIP3 BCL2 interacting protein 3 protein-coding 23 0.002739
+665 BNIP3L BCL2 interacting protein 3 like protein-coding 14 0.001667
+666 BOK BOK, BCL2 family apoptosis regulator protein-coding 8 0.0009527
+667 DST dystonin protein-coding 480 0.05716
+668 FOXL2 forkhead box L2 protein-coding 36 0.004287
+669 BPGM bisphosphoglycerate mutase protein-coding 40 0.004764
+670 BPHL biphenyl hydrolase like protein-coding 37 0.004406
+671 BPI bactericidal permeability increasing protein protein-coding 68 0.008098
+672 BRCA1 BRCA1, DNA repair associated protein-coding 201 0.02394
+673 BRAF B-Raf proto-oncogene, serine/threonine kinase protein-coding 545 0.0649
+675 BRCA2 BRCA2, DNA repair associated protein-coding 351 0.0418
+676 BRDT bromodomain testis associated protein-coding 121 0.01441
+677 ZFP36L1 ZFP36 ring finger protein like 1 protein-coding 100 0.01191
+678 ZFP36L2 ZFP36 ring finger protein like 2 protein-coding 151 0.01798
+680 BRS3 bombesin receptor subtype 3 protein-coding 68 0.008098
+682 BSG basigin (Ok blood group) protein-coding 44 0.00524
+683 BST1 bone marrow stromal cell antigen 1 protein-coding 42 0.005002
+684 BST2 bone marrow stromal cell antigen 2 protein-coding 16 0.001905
+685 BTC betacellulin protein-coding 21 0.002501
+686 BTD biotinidase protein-coding 59 0.007026
+687 KLF9 Kruppel like factor 9 protein-coding 34 0.004049
+688 KLF5 Kruppel like factor 5 protein-coding 99 0.01179
+689 BTF3 basic transcription factor 3 protein-coding 27 0.003215
+690 BTF3P11 basic transcription factor 3 pseudogene 11 pseudo 64 0.007622
+694 BTG1 BTG anti-proliferation factor 1 protein-coding 22 0.00262
+695 BTK Bruton tyrosine kinase protein-coding 114 0.01358
+696 BTN1A1 butyrophilin subfamily 1 member A1 protein-coding 82 0.009765
+699 BUB1 BUB1 mitotic checkpoint serine/threonine kinase protein-coding 124 0.01477
+701 BUB1B BUB1 mitotic checkpoint serine/threonine kinase B protein-coding 85 0.01012
+705 BYSL bystin like protein-coding 37 0.004406
+706 TSPO translocator protein protein-coding 31 0.003692
+708 C1QBP complement C1q binding protein protein-coding 17 0.002025
+710 SERPING1 serpin family G member 1 protein-coding 67 0.007979
+712 C1QA complement C1q A chain protein-coding 35 0.004168
+713 C1QB complement C1q B chain protein-coding 34 0.004049
+714 C1QC complement C1q C chain protein-coding 38 0.004525
+715 C1R complement C1r protein-coding 81 0.009646
+716 C1S complement C1s protein-coding 102 0.01215
+717 C2 complement C2 protein-coding 23 0.002739
+718 C3 complement C3 protein-coding 239 0.02846
+719 C3AR1 complement C3a receptor 1 protein-coding 83 0.009884
+720 C4A complement C4A (Rodgers blood group) protein-coding 34 0.004049
+721 C4B complement C4B (Chido blood group) protein-coding 34 0.004049
+722 C4BPA complement component 4 binding protein alpha protein-coding 88 0.01048
+725 C4BPB complement component 4 binding protein beta protein-coding 37 0.004406
+726 CAPN5 calpain 5 protein-coding 126 0.01501
+727 C5 complement C5 protein-coding 134 0.01596
+728 C5AR1 complement C5a receptor 1 protein-coding 41 0.004883
+729 C6 complement C6 protein-coding 232 0.02763
+730 C7 complement C7 protein-coding 185 0.02203
+731 C8A complement C8 alpha chain protein-coding 119 0.01417
+732 C8B complement C8 beta chain protein-coding 119 0.01417
+733 C8G complement C8 gamma chain protein-coding 17 0.002025
+734 OSGIN2 oxidative stress induced growth inhibitor family member 2 protein-coding 66 0.00786
+735 C9 complement C9 protein-coding 127 0.01512
+738 VPS51 VPS51, GARP complex subunit protein-coding 69 0.008217
+740 MRPL49 mitochondrial ribosomal protein L49 protein-coding 14 0.001667
+741 ZNHIT2 zinc finger HIT-type containing 2 protein-coding 25 0.002977
+744 MPPED2 metallophosphoesterase domain containing 2 protein-coding 72 0.008574
+745 MYRF myelin regulatory factor protein-coding 119 0.01417
+746 TMEM258 transmembrane protein 258 protein-coding 11 0.00131
+747 DAGLA diacylglycerol lipase alpha protein-coding 123 0.01465
+750 GAS8-AS1 GAS8 antisense RNA 1 ncRNA 12 0.001429
+752 FMNL1 formin like 1 protein-coding 104 0.01239
+753 LDLRAD4 low density lipoprotein receptor class A domain containing 4 protein-coding 53 0.006312
+754 PTTG1IP PTTG1 interacting protein protein-coding 22 0.00262
+755 C21orf2 chromosome 21 open reading frame 2 protein-coding 20 0.002382
+757 TMEM50B transmembrane protein 50B protein-coding 20 0.002382
+758 MPPED1 metallophosphoesterase domain containing 1 protein-coding 67 0.007979
+759 CA1 carbonic anhydrase 1 protein-coding 49 0.005835
+760 CA2 carbonic anhydrase 2 protein-coding 40 0.004764
+761 CA3 carbonic anhydrase 3 protein-coding 55 0.00655
+762 CA4 carbonic anhydrase 4 protein-coding 44 0.00524
+763 CA5A carbonic anhydrase 5A protein-coding 33 0.00393
+765 CA6 carbonic anhydrase 6 protein-coding 40 0.004764
+766 CA7 carbonic anhydrase 7 protein-coding 26 0.003096
+767 CA8 carbonic anhydrase 8 protein-coding 55 0.00655
+768 CA9 carbonic anhydrase 9 protein-coding 56 0.006669
+770 CA11 carbonic anhydrase 11 protein-coding 53 0.006312
+771 CA12 carbonic anhydrase 12 protein-coding 34 0.004049
+773 CACNA1A calcium voltage-gated channel subunit alpha1 A protein-coding 316 0.03763
+774 CACNA1B calcium voltage-gated channel subunit alpha1 B protein-coding 296 0.03525
+775 CACNA1C calcium voltage-gated channel subunit alpha1 C protein-coding 318 0.03787
+776 CACNA1D calcium voltage-gated channel subunit alpha1 D protein-coding 247 0.02942
+777 CACNA1E calcium voltage-gated channel subunit alpha1 E protein-coding 472 0.05621
+778 CACNA1F calcium voltage-gated channel subunit alpha1 F protein-coding 221 0.02632
+779 CACNA1S calcium voltage-gated channel subunit alpha1 S protein-coding 245 0.02918
+780 DDR1 discoidin domain receptor tyrosine kinase 1 protein-coding 84 0.01
+781 CACNA2D1 calcium voltage-gated channel auxiliary subunit alpha2delta 1 protein-coding 238 0.02834
+782 CACNB1 calcium voltage-gated channel auxiliary subunit beta 1 protein-coding 63 0.007503
+783 CACNB2 calcium voltage-gated channel auxiliary subunit beta 2 protein-coding 117 0.01393
+784 CACNB3 calcium voltage-gated channel auxiliary subunit beta 3 protein-coding 45 0.005359
+785 CACNB4 calcium voltage-gated channel auxiliary subunit beta 4 protein-coding 71 0.008455
+786 CACNG1 calcium voltage-gated channel auxiliary subunit gamma 1 protein-coding 33 0.00393
+788 SLC25A20 solute carrier family 25 member 20 protein-coding 32 0.003811
+790 CAD carbamoyl-phosphate synthetase 2, aspartate transcarbamylase, and dihydroorotase protein-coding 207 0.02465
+793 CALB1 calbindin 1 protein-coding 42 0.005002
+794 CALB2 calbindin 2 protein-coding 43 0.005121
+795 S100G S100 calcium binding protein G protein-coding 35 0.004168
+796 CALCA calcitonin related polypeptide alpha protein-coding 30 0.003573
+797 CALCB calcitonin related polypeptide beta protein-coding 23 0.002739
+799 CALCR calcitonin receptor protein-coding 135 0.01608
+800 CALD1 caldesmon 1 protein-coding 114 0.01358
+801 CALM1 calmodulin 1 protein-coding 19 0.002263
+805 CALM2 calmodulin 2 protein-coding 20 0.002382
+808 CALM3 calmodulin 3 protein-coding 14 0.001667
+810 CALML3 calmodulin like 3 protein-coding 22 0.00262
+811 CALR calreticulin protein-coding 39 0.004645
+813 CALU calumenin protein-coding 26 0.003096
+814 CAMK4 calcium/calmodulin dependent protein kinase IV protein-coding 74 0.008813
+815 CAMK2A calcium/calmodulin dependent protein kinase II alpha protein-coding 59 0.007026
+816 CAMK2B calcium/calmodulin dependent protein kinase II beta protein-coding 80 0.009527
+817 CAMK2D calcium/calmodulin dependent protein kinase II delta protein-coding 50 0.005955
+818 CAMK2G calcium/calmodulin dependent protein kinase II gamma protein-coding 59 0.007026
+819 CAMLG calcium modulating ligand protein-coding 34 0.004049
+820 CAMP cathelicidin antimicrobial peptide protein-coding 20 0.002382
+821 CANX calnexin protein-coding 71 0.008455
+822 CAPG capping actin protein, gelsolin like protein-coding 39 0.004645
+823 CAPN1 calpain 1 protein-coding 60 0.007145
+824 CAPN2 calpain 2 protein-coding 73 0.008694
+825 CAPN3 calpain 3 protein-coding 101 0.01203
+826 CAPNS1 calpain small subunit 1 protein-coding 28 0.003335
+827 CAPN6 calpain 6 protein-coding 133 0.01584
+828 CAPS calcyphosine protein-coding 14 0.001667
+829 CAPZA1 capping actin protein of muscle Z-line alpha subunit 1 protein-coding 35 0.004168
+830 CAPZA2 capping actin protein of muscle Z-line alpha subunit 2 protein-coding 32 0.003811
+831 CAST calpastatin protein-coding 71 0.008455
+832 CAPZB capping actin protein of muscle Z-line beta subunit protein-coding 23 0.002739
+833 CARS cysteinyl-tRNA synthetase protein-coding 83 0.009884
+834 CASP1 caspase 1 protein-coding 80 0.009527
+835 CASP2 caspase 2 protein-coding 56 0.006669
+836 CASP3 caspase 3 protein-coding 37 0.004406
+837 CASP4 caspase 4 protein-coding 62 0.007384
+838 CASP5 caspase 5 protein-coding 99 0.01179
+839 CASP6 caspase 6 protein-coding 29 0.003454
+840 CASP7 caspase 7 protein-coding 43 0.005121
+841 CASP8 caspase 8 protein-coding 206 0.02453
+842 CASP9 caspase 9 protein-coding 37 0.004406
+843 CASP10 caspase 10 protein-coding 62 0.007384
+844 CASQ1 calsequestrin 1 protein-coding 64 0.007622
+845 CASQ2 calsequestrin 2 protein-coding 61 0.007264
+846 CASR calcium sensing receptor protein-coding 177 0.02108
+847 CAT catalase protein-coding 66 0.00786
+857 CAV1 caveolin 1 protein-coding 22 0.00262
+858 CAV2 caveolin 2 protein-coding 23 0.002739
+859 CAV3 caveolin 3 protein-coding 23 0.002739
+860 RUNX2 runt related transcription factor 2 protein-coding 75 0.008932
+861 RUNX1 runt related transcription factor 1 protein-coding 99 0.01179
+862 RUNX1T1 RUNX1 translocation partner 1 protein-coding 214 0.02549
+863 CBFA2T3 CBFA2/RUNX1 translocation partner 3 protein-coding 79 0.009408
+864 RUNX3 runt related transcription factor 3 protein-coding 54 0.006431
+865 CBFB core-binding factor beta subunit protein-coding 39 0.004645
+866 SERPINA6 serpin family A member 6 protein-coding 62 0.007384
+867 CBL Cbl proto-oncogene protein-coding 89 0.0106
+868 CBLB Cbl proto-oncogene B protein-coding 124 0.01477
+869 CBLN1 cerebellin 1 precursor protein-coding 41 0.004883
+871 SERPINH1 serpin family H member 1 protein-coding 46 0.005478
+873 CBR1 carbonyl reductase 1 protein-coding 19 0.002263
+874 CBR3 carbonyl reductase 3 protein-coding 23 0.002739
+875 CBS cystathionine-beta-synthase protein-coding 55 0.00655
+881 CCIN calicin protein-coding 77 0.00917
+883 KYAT1 kynurenine aminotransferase 1 protein-coding 44 0.00524
+885 CCK cholecystokinin protein-coding 20 0.002382
+886 CCKAR cholecystokinin A receptor protein-coding 86 0.01024
+887 CCKBR cholecystokinin B receptor protein-coding 110 0.0131
+889 KRIT1 KRIT1, ankyrin repeat containing protein-coding 76 0.009051
+890 CCNA2 cyclin A2 protein-coding 45 0.005359
+891 CCNB1 cyclin B1 protein-coding 35 0.004168
+892 CCNC cyclin C protein-coding 28 0.003335
+894 CCND2 cyclin D2 protein-coding 37 0.004406
+896 CCND3 cyclin D3 protein-coding 26 0.003096
+898 CCNE1 cyclin E1 protein-coding 52 0.006193
+899 CCNF cyclin F protein-coding 87 0.01036
+900 CCNG1 cyclin G1 protein-coding 26 0.003096
+901 CCNG2 cyclin G2 protein-coding 24 0.002858
+902 CCNH cyclin H protein-coding 28 0.003335
+904 CCNT1 cyclin T1 protein-coding 83 0.009884
+905 CCNT2 cyclin T2 protein-coding 65 0.007741
+908 CCT6A chaperonin containing TCP1 subunit 6A protein-coding 71 0.008455
+909 CD1A CD1a molecule protein-coding 90 0.01072
+910 CD1B CD1b molecule protein-coding 80 0.009527
+911 CD1C CD1c molecule protein-coding 88 0.01048
+912 CD1D CD1d molecule protein-coding 92 0.01096
+913 CD1E CD1e molecule protein-coding 137 0.01632
+914 CD2 CD2 molecule protein-coding 47 0.005597
+915 CD3D CD3d molecule protein-coding 19 0.002263
+916 CD3E CD3e molecule protein-coding 21 0.002501
+917 CD3G CD3g molecule protein-coding 23 0.002739
+919 CD247 CD247 molecule protein-coding 38 0.004525
+920 CD4 CD4 molecule protein-coding 65 0.007741
+921 CD5 CD5 molecule protein-coding 58 0.006907
+922 CD5L CD5 molecule like protein-coding 118 0.01405
+923 CD6 CD6 molecule protein-coding 72 0.008574
+924 CD7 CD7 molecule protein-coding 28 0.003335
+925 CD8A CD8a molecule protein-coding 30 0.003573
+926 CD8B CD8b molecule protein-coding 33 0.00393
+928 CD9 CD9 molecule protein-coding 25 0.002977
+929 CD14 CD14 molecule protein-coding 35 0.004168
+930 CD19 CD19 molecule protein-coding 70 0.008336
+931 MS4A1 membrane spanning 4-domains A1 protein-coding 62 0.007384
+932 MS4A3 membrane spanning 4-domains A3 protein-coding 48 0.005716
+933 CD22 CD22 molecule protein-coding 118 0.01405
+939 CD27 CD27 molecule protein-coding 29 0.003454
+940 CD28 CD28 molecule protein-coding 29 0.003454
+941 CD80 CD80 molecule protein-coding 40 0.004764
+942 CD86 CD86 molecule protein-coding 66 0.00786
+943 TNFRSF8 TNF receptor superfamily member 8 protein-coding 82 0.009765
+944 TNFSF8 TNF superfamily member 8 protein-coding 34 0.004049
+945 CD33 CD33 molecule protein-coding 81 0.009646
+946 SIGLEC6 sialic acid binding Ig like lectin 6 protein-coding 105 0.0125
+947 CD34 CD34 molecule protein-coding 57 0.006788
+948 CD36 CD36 molecule protein-coding 60 0.007145
+949 SCARB1 scavenger receptor class B member 1 protein-coding 56 0.006669
+950 SCARB2 scavenger receptor class B member 2 protein-coding 56 0.006669
+951 CD37 CD37 molecule protein-coding 27 0.003215
+952 CD38 CD38 molecule protein-coding 50 0.005955
+953 ENTPD1 ectonucleoside triphosphate diphosphohydrolase 1 protein-coding 50 0.005955
+954 ENTPD2 ectonucleoside triphosphate diphosphohydrolase 2 protein-coding 35 0.004168
+955 ENTPD6 ectonucleoside triphosphate diphosphohydrolase 6 (putative) protein-coding 58 0.006907
+956 ENTPD3 ectonucleoside triphosphate diphosphohydrolase 3 protein-coding 48 0.005716
+957 ENTPD5 ectonucleoside triphosphate diphosphohydrolase 5 protein-coding 36 0.004287
+958 CD40 CD40 molecule protein-coding 45 0.005359
+959 CD40LG CD40 ligand protein-coding 53 0.006312
+960 CD44 CD44 molecule (Indian blood group) protein-coding 72 0.008574
+961 CD47 CD47 molecule protein-coding 31 0.003692
+962 CD48 CD48 molecule protein-coding 27 0.003215
+963 CD53 CD53 molecule protein-coding 39 0.004645
+965 CD58 CD58 molecule protein-coding 59 0.007026
+966 CD59 CD59 molecule (CD59 blood group) protein-coding 10 0.001191
+967 CD63 CD63 molecule protein-coding 21 0.002501
+968 CD68 CD68 molecule protein-coding 29 0.003454
+969 CD69 CD69 molecule protein-coding 24 0.002858
+970 CD70 CD70 molecule protein-coding 29 0.003454
+971 CD72 CD72 molecule protein-coding 30 0.003573
+972 CD74 CD74 molecule protein-coding 23 0.002739
+973 CD79A CD79a molecule protein-coding 36 0.004287
+974 CD79B CD79b molecule protein-coding 27 0.003215
+975 CD81 CD81 molecule protein-coding 28 0.003335
+976 ADGRE5 adhesion G protein-coupled receptor E5 protein-coding 96 0.01143
+977 CD151 CD151 molecule (Raph blood group) protein-coding 25 0.002977
+978 CDA cytidine deaminase protein-coding 16 0.001905
+983 CDK1 cyclin dependent kinase 1 protein-coding 32 0.003811
+984 CDK11B cyclin dependent kinase 11B protein-coding 74 0.008813
+987 LRBA LPS responsive beige-like anchor protein protein-coding 252 0.03001
+988 CDC5L cell division cycle 5 like protein-coding 106 0.01262
+989 SEPT7 septin 7 protein-coding 43 0.005121
+990 CDC6 cell division cycle 6 protein-coding 60 0.007145
+991 CDC20 cell division cycle 20 protein-coding 47 0.005597
+993 CDC25A cell division cycle 25A protein-coding 54 0.006431
+994 CDC25B cell division cycle 25B protein-coding 67 0.007979
+995 CDC25C cell division cycle 25C protein-coding 61 0.007264
+996 CDC27 cell division cycle 27 protein-coding 93 0.01108
+997 CDC34 cell division cycle 34 protein-coding 24 0.002858
+998 CDC42 cell division cycle 42 protein-coding 32 0.003811
+999 CDH1 cadherin 1 protein-coding 240 0.02858
+1000 CDH2 cadherin 2 protein-coding 170 0.02025
+1001 CDH3 cadherin 3 protein-coding 72 0.008574
+1002 CDH4 cadherin 4 protein-coding 191 0.02275
+1003 CDH5 cadherin 5 protein-coding 102 0.01215
+1004 CDH6 cadherin 6 protein-coding 166 0.01977
+1005 CDH7 cadherin 7 protein-coding 225 0.0268
+1006 CDH8 cadherin 8 protein-coding 273 0.03251
+1007 CDH9 cadherin 9 protein-coding 304 0.0362
+1008 CDH10 cadherin 10 protein-coding 400 0.04764
+1009 CDH11 cadherin 11 protein-coding 227 0.02703
+1010 CDH12 cadherin 12 protein-coding 286 0.03406
+1012 CDH13 cadherin 13 protein-coding 129 0.01536
+1013 CDH15 cadherin 15 protein-coding 91 0.01084
+1014 CDH16 cadherin 16 protein-coding 107 0.01274
+1015 CDH17 cadherin 17 protein-coding 226 0.02691
+1016 CDH18 cadherin 18 protein-coding 333 0.03966
+1017 CDK2 cyclin dependent kinase 2 protein-coding 24 0.002858
+1018 CDK3 cyclin dependent kinase 3 protein-coding 33 0.00393
+1019 CDK4 cyclin dependent kinase 4 protein-coding 32 0.003811
+1020 CDK5 cyclin dependent kinase 5 protein-coding 39 0.004645
+1021 CDK6 cyclin dependent kinase 6 protein-coding 39 0.004645
+1022 CDK7 cyclin dependent kinase 7 protein-coding 41 0.004883
+1024 CDK8 cyclin dependent kinase 8 protein-coding 68 0.008098
+1025 CDK9 cyclin dependent kinase 9 protein-coding 35 0.004168
+1026 CDKN1A cyclin dependent kinase inhibitor 1A protein-coding 86 0.01024
+1027 CDKN1B cyclin dependent kinase inhibitor 1B protein-coding 52 0.006193
+1028 CDKN1C cyclin dependent kinase inhibitor 1C protein-coding 5 0.0005955
+1029 CDKN2A cyclin dependent kinase inhibitor 2A protein-coding 332 0.03954
+1030 CDKN2B cyclin dependent kinase inhibitor 2B protein-coding 13 0.001548
+1031 CDKN2C cyclin dependent kinase inhibitor 2C protein-coding 24 0.002858
+1032 CDKN2D cyclin dependent kinase inhibitor 2D protein-coding 12 0.001429
+1033 CDKN3 cyclin dependent kinase inhibitor 3 protein-coding 19 0.002263
+1036 CDO1 cysteine dioxygenase type 1 protein-coding 27 0.003215
+1038 CDR1 cerebellar degeneration related protein 1 protein-coding 71 0.008455
+1039 CDR2 cerebellar degeneration related protein 2 protein-coding 55 0.00655
+1040 CDS1 CDP-diacylglycerol synthase 1 protein-coding 59 0.007026
+1041 CDSN corneodesmosin protein-coding 34 0.004049
+1043 CD52 CD52 molecule protein-coding 11 0.00131
+1044 CDX1 caudal type homeobox 1 protein-coding 23 0.002739
+1045 CDX2 caudal type homeobox 2 protein-coding 41 0.004883
+1046 CDX4 caudal type homeobox 4 protein-coding 75 0.008932
+1047 CLGN calmegin protein-coding 66 0.00786
+1048 CEACAM5 carcinoembryonic antigen related cell adhesion molecule 5 protein-coding 80 0.009527
+1050 CEBPA CCAAT enhancer binding protein alpha protein-coding 11 0.00131
+1051 CEBPB CCAAT enhancer binding protein beta protein-coding 5 0.0005955
+1052 CEBPD CCAAT enhancer binding protein delta protein-coding 6 0.0007145
+1053 CEBPE CCAAT enhancer binding protein epsilon protein-coding 45 0.005359
+1054 CEBPG CCAAT enhancer binding protein gamma protein-coding 15 0.001786
+1056 CEL carboxyl ester lipase protein-coding 232 0.02763
+1057 CELP carboxyl ester lipase pseudogene pseudo 38 0.004525
+1058 CENPA centromere protein A protein-coding 15 0.001786
+1059 CENPB centromere protein B protein-coding 61 0.007264
+1060 CENPC centromere protein C protein-coding 93 0.01108
+1061 CENPCP1 centromere protein C pseudogene 1 pseudo 93 0.01108
+1062 CENPE centromere protein E protein-coding 259 0.03084
+1063 CENPF centromere protein F protein-coding 274 0.03263
+1066 CES1 carboxylesterase 1 protein-coding 94 0.01119
+1068 CETN1 centrin 1 protein-coding 48 0.005716
+1069 CETN2 centrin 2 protein-coding 33 0.00393
+1070 CETN3 centrin 3 protein-coding 33 0.00393
+1071 CETP cholesteryl ester transfer protein protein-coding 50 0.005955
+1072 CFL1 cofilin 1 protein-coding 21 0.002501
+1073 CFL2 cofilin 2 protein-coding 24 0.002858
+1075 CTSC cathepsin C protein-coding 72 0.008574
+1080 CFTR cystic fibrosis transmembrane conductance regulator protein-coding 187 0.02227
+1081 CGA glycoprotein hormones, alpha polypeptide protein-coding 26 0.003096
+1084 CEACAM3 carcinoembryonic antigen related cell adhesion molecule 3 protein-coding 54 0.006431
+1087 CEACAM7 carcinoembryonic antigen related cell adhesion molecule 7 protein-coding 48 0.005716
+1088 CEACAM8 carcinoembryonic antigen related cell adhesion molecule 8 protein-coding 62 0.007384
+1089 CEACAM4 carcinoembryonic antigen related cell adhesion molecule 4 protein-coding 50 0.005955
+1101 CHAD chondroadherin protein-coding 53 0.006312
+1102 RCBTB2 RCC1 and BTB domain containing protein 2 protein-coding 78 0.009289
+1103 CHAT choline O-acetyltransferase protein-coding 125 0.01489
+1104 RCC1 regulator of chromosome condensation 1 protein-coding 45 0.005359
+1105 CHD1 chromodomain helicase DNA binding protein 1 protein-coding 166 0.01977
+1106 CHD2 chromodomain helicase DNA binding protein 2 protein-coding 179 0.02132
+1107 CHD3 chromodomain helicase DNA binding protein 3 protein-coding 225 0.0268
+1108 CHD4 chromodomain helicase DNA binding protein 4 protein-coding 314 0.03739
+1109 AKR1C4 aldo-keto reductase family 1 member C4 protein-coding 56 0.006669
+1111 CHEK1 checkpoint kinase 1 protein-coding 64 0.007622
+1112 FOXN3 forkhead box N3 protein-coding 76 0.009051
+1113 CHGA chromogranin A protein-coding 68 0.008098
+1114 CHGB chromogranin B protein-coding 119 0.01417
+1116 CHI3L1 chitinase 3 like 1 protein-coding 55 0.00655
+1117 CHI3L2 chitinase 3 like 2 protein-coding 50 0.005955
+1118 CHIT1 chitinase 1 protein-coding 77 0.00917
+1119 CHKA choline kinase alpha protein-coding 46 0.005478
+1120 CHKB choline kinase beta protein-coding 69 0.008217
+1121 CHM CHM, Rab escort protein 1 protein-coding 97 0.01155
+1122 CHML CHM like, Rab escort protein 2 protein-coding 87 0.01036
+1123 CHN1 chimerin 1 protein-coding 57 0.006788
+1124 CHN2 chimerin 2 protein-coding 68 0.008098
+1128 CHRM1 cholinergic receptor muscarinic 1 protein-coding 48 0.005716
+1129 CHRM2 cholinergic receptor muscarinic 2 protein-coding 166 0.01977
+1130 LYST lysosomal trafficking regulator protein-coding 343 0.04085
+1131 CHRM3 cholinergic receptor muscarinic 3 protein-coding 154 0.01834
+1132 CHRM4 cholinergic receptor muscarinic 4 protein-coding 67 0.007979
+1133 CHRM5 cholinergic receptor muscarinic 5 protein-coding 60 0.007145
+1134 CHRNA1 cholinergic receptor nicotinic alpha 1 subunit protein-coding 88 0.01048
+1135 CHRNA2 cholinergic receptor nicotinic alpha 2 subunit protein-coding 73 0.008694
+1136 CHRNA3 cholinergic receptor nicotinic alpha 3 subunit protein-coding 66 0.00786
+1137 CHRNA4 cholinergic receptor nicotinic alpha 4 subunit protein-coding 121 0.01441
+1138 CHRNA5 cholinergic receptor nicotinic alpha 5 subunit protein-coding 51 0.006074
+1139 CHRNA7 cholinergic receptor nicotinic alpha 7 subunit protein-coding 61 0.007264
+1140 CHRNB1 cholinergic receptor nicotinic beta 1 subunit protein-coding 54 0.006431
+1141 CHRNB2 cholinergic receptor nicotinic beta 2 subunit protein-coding 81 0.009646
+1142 CHRNB3 cholinergic receptor nicotinic beta 3 subunit protein-coding 98 0.01167
+1143 CHRNB4 cholinergic receptor nicotinic beta 4 subunit protein-coding 77 0.00917
+1144 CHRND cholinergic receptor nicotinic delta subunit protein-coding 85 0.01012
+1145 CHRNE cholinergic receptor nicotinic epsilon subunit protein-coding 44 0.00524
+1146 CHRNG cholinergic receptor nicotinic gamma subunit protein-coding 66 0.00786
+1147 CHUK conserved helix-loop-helix ubiquitous kinase protein-coding 79 0.009408
+1149 CIDEA cell death-inducing DFFA-like effector a protein-coding 35 0.004168
+1152 CKB creatine kinase B protein-coding 32 0.003811
+1153 CIRBP cold inducible RNA binding protein protein-coding 27 0.003215
+1154 CISH cytokine inducible SH2 containing protein protein-coding 31 0.003692
+1155 TBCB tubulin folding cofactor B protein-coding 17 0.002025
+1158 CKM creatine kinase, M-type protein-coding 55 0.00655
+1159 CKMT1B creatine kinase, mitochondrial 1B protein-coding 23 0.002739
+1160 CKMT2 creatine kinase, mitochondrial 2 protein-coding 67 0.007979
+1161 ERCC8 ERCC excision repair 8, CSA ubiquitin ligase complex subunit protein-coding 31 0.003692
+1163 CKS1B CDC28 protein kinase regulatory subunit 1B protein-coding 15 0.001786
+1164 CKS2 CDC28 protein kinase regulatory subunit 2 protein-coding 13 0.001548
+1173 AP2M1 adaptor related protein complex 2 mu 1 subunit protein-coding 49 0.005835
+1174 AP1S1 adaptor related protein complex 1 sigma 1 subunit protein-coding 35 0.004168
+1175 AP2S1 adaptor related protein complex 2 sigma 1 subunit protein-coding 6 0.0007145
+1176 AP3S1 adaptor related protein complex 3 sigma 1 subunit protein-coding 27 0.003215
+1178 CLC Charcot-Leyden crystal galectin protein-coding 26 0.003096
+1179 CLCA1 chloride channel accessory 1 protein-coding 117 0.01393
+1180 CLCN1 chloride voltage-gated channel 1 protein-coding 148 0.01763
+1181 CLCN2 chloride voltage-gated channel 2 protein-coding 117 0.01393
+1182 CLCN3 chloride voltage-gated channel 3 protein-coding 108 0.01286
+1183 CLCN4 chloride voltage-gated channel 4 protein-coding 106 0.01262
+1184 CLCN5 chloride voltage-gated channel 5 protein-coding 108 0.01286
+1185 CLCN6 chloride voltage-gated channel 6 protein-coding 98 0.01167
+1186 CLCN7 chloride voltage-gated channel 7 protein-coding 81 0.009646
+1187 CLCNKA chloride voltage-gated channel Ka protein-coding 80 0.009527
+1188 CLCNKB chloride voltage-gated channel Kb protein-coding 87 0.01036
+1191 CLU clusterin protein-coding 238 0.02834
+1192 CLIC1 chloride intracellular channel 1 protein-coding 30 0.003573
+1193 CLIC2 chloride intracellular channel 2 protein-coding 42 0.005002
+1195 CLK1 CDC like kinase 1 protein-coding 77 0.00917
+1196 CLK2 CDC like kinase 2 protein-coding 88 0.01048
+1198 CLK3 CDC like kinase 3 protein-coding 71 0.008455
+1200 TPP1 tripeptidyl peptidase 1 protein-coding 58 0.006907
+1201 CLN3 CLN3, battenin protein-coding 55 0.00655
+1203 CLN5 CLN5, intracellular trafficking protein protein-coding 103 0.01227
+1207 CLNS1A chloride nucleotide-sensitive channel 1A protein-coding 21 0.002501
+1208 CLPS colipase protein-coding 15 0.001786
+1209 CLPTM1 CLPTM1, transmembrane protein protein-coding 66 0.00786
+1211 CLTA clathrin light chain A protein-coding 21 0.002501
+1212 CLTB clathrin light chain B protein-coding 31 0.003692
+1213 CLTC clathrin heavy chain protein-coding 158 0.01882
+1215 CMA1 chymase 1 protein-coding 39 0.004645
+1230 CCR1 C-C motif chemokine receptor 1 protein-coding 57 0.006788
+1232 CCR3 C-C motif chemokine receptor 3 protein-coding 69 0.008217
+1233 CCR4 C-C motif chemokine receptor 4 protein-coding 43 0.005121
+1234 CCR5 C-C motif chemokine receptor 5 (gene/pseudogene) protein-coding 46 0.005478
+1235 CCR6 C-C motif chemokine receptor 6 protein-coding 54 0.006431
+1236 CCR7 C-C motif chemokine receptor 7 protein-coding 48 0.005716
+1237 CCR8 C-C motif chemokine receptor 8 protein-coding 41 0.004883
+1238 ACKR2 atypical chemokine receptor 2 protein-coding 46 0.005478
+1240 CMKLR1 chemerin chemokine-like receptor 1 protein-coding 85 0.01012
+1241 LTB4R leukotriene B4 receptor protein-coding 30 0.003573
+1244 ABCC2 ATP binding cassette subfamily C member 2 protein-coding 160 0.01905
+1258 CNGB1 cyclic nucleotide gated channel beta 1 protein-coding 170 0.02025
+1259 CNGA1 cyclic nucleotide gated channel alpha 1 protein-coding 91 0.01084
+1260 CNGA2 cyclic nucleotide gated channel alpha 2 protein-coding 127 0.01512
+1261 CNGA3 cyclic nucleotide gated channel alpha 3 protein-coding 131 0.0156
+1262 CNGA4 cyclic nucleotide gated channel alpha 4 protein-coding 106 0.01262
+1263 PLK3 polo like kinase 3 protein-coding 71 0.008455
+1264 CNN1 calponin 1 protein-coding 42 0.005002
+1265 CNN2 calponin 2 protein-coding 35 0.004168
+1266 CNN3 calponin 3 protein-coding 22 0.00262
+1267 CNP 2',3'-cyclic nucleotide 3' phosphodiesterase protein-coding 38 0.004525
+1268 CNR1 cannabinoid receptor 1 protein-coding 113 0.01346
+1269 CNR2 cannabinoid receptor 2 protein-coding 45 0.005359
+1270 CNTF ciliary neurotrophic factor protein-coding 36 0.004287
+1271 CNTFR ciliary neurotrophic factor receptor protein-coding 45 0.005359
+1272 CNTN1 contactin 1 protein-coding 224 0.02668
+1277 COL1A1 collagen type I alpha 1 chain protein-coding 176 0.02096
+1278 COL1A2 collagen type I alpha 2 chain protein-coding 244 0.02906
+1280 COL2A1 collagen type II alpha 1 chain protein-coding 179 0.02132
+1281 COL3A1 collagen type III alpha 1 chain protein-coding 253 0.03013
+1282 COL4A1 collagen type IV alpha 1 chain protein-coding 211 0.02513
+1284 COL4A2 collagen type IV alpha 2 chain protein-coding 216 0.02572
+1285 COL4A3 collagen type IV alpha 3 chain protein-coding 177 0.02108
+1286 COL4A4 collagen type IV alpha 4 chain protein-coding 233 0.02775
+1287 COL4A5 collagen type IV alpha 5 chain protein-coding 225 0.0268
+1288 COL4A6 collagen type IV alpha 6 chain protein-coding 185 0.02203
+1289 COL5A1 collagen type V alpha 1 chain protein-coding 298 0.03549
+1290 COL5A2 collagen type V alpha 2 chain protein-coding 250 0.02977
+1291 COL6A1 collagen type VI alpha 1 chain protein-coding 135 0.01608
+1292 COL6A2 collagen type VI alpha 2 chain protein-coding 186 0.02215
+1293 COL6A3 collagen type VI alpha 3 chain protein-coding 438 0.05216
+1294 COL7A1 collagen type VII alpha 1 chain protein-coding 306 0.03644
+1295 COL8A1 collagen type VIII alpha 1 chain protein-coding 124 0.01477
+1296 COL8A2 collagen type VIII alpha 2 chain protein-coding 53 0.006312
+1297 COL9A1 collagen type IX alpha 1 chain protein-coding 186 0.02215
+1298 COL9A2 collagen type IX alpha 2 chain protein-coding 95 0.01131
+1299 COL9A3 collagen type IX alpha 3 chain protein-coding 96 0.01143
+1300 COL10A1 collagen type X alpha 1 chain protein-coding 63 0.007503
+1301 COL11A1 collagen type XI alpha 1 chain protein-coding 523 0.06228
+1302 COL11A2 collagen type XI alpha 2 chain protein-coding 189 0.02251
+1303 COL12A1 collagen type XII alpha 1 chain protein-coding 385 0.04585
+1305 COL13A1 collagen type XIII alpha 1 chain protein-coding 91 0.01084
+1306 COL15A1 collagen type XV alpha 1 chain protein-coding 205 0.02441
+1307 COL16A1 collagen type XVI alpha 1 chain protein-coding 155 0.01846
+1308 COL17A1 collagen type XVII alpha 1 chain protein-coding 158 0.01882
+1310 COL19A1 collagen type XIX alpha 1 chain protein-coding 260 0.03096
+1311 COMP cartilage oligomeric matrix protein protein-coding 78 0.009289
+1312 COMT catechol-O-methyltransferase protein-coding 22 0.00262
+1314 COPA coatomer protein complex subunit alpha protein-coding 147 0.01751
+1315 COPB1 coatomer protein complex subunit beta 1 protein-coding 102 0.01215
+1316 KLF6 Kruppel like factor 6 protein-coding 51 0.006074
+1317 SLC31A1 solute carrier family 31 member 1 protein-coding 12 0.001429
+1318 SLC31A2 solute carrier family 31 member 2 protein-coding 11 0.00131
+1325 CORT cortistatin protein-coding 12 0.001429
+1326 MAP3K8 mitogen-activated protein kinase kinase kinase 8 protein-coding 57 0.006788
+1327 COX4I1 cytochrome c oxidase subunit 4I1 protein-coding 20 0.002382
+1329 COX5B cytochrome c oxidase subunit 5B protein-coding 13 0.001548
+1337 COX6A1 cytochrome c oxidase subunit 6A1 protein-coding 12 0.001429
+1339 COX6A2 cytochrome c oxidase subunit 6A2 protein-coding 11 0.00131
+1340 COX6B1 cytochrome c oxidase subunit 6B1 protein-coding 13 0.001548
+1345 COX6C cytochrome c oxidase subunit 6C protein-coding 14 0.001667
+1346 COX7A1 cytochrome c oxidase subunit 7A1 protein-coding 16 0.001905
+1347 COX7A2 cytochrome c oxidase subunit 7A2 protein-coding 11 0.00131
+1349 COX7B cytochrome c oxidase subunit 7B protein-coding 20 0.002382
+1350 COX7C cytochrome c oxidase subunit 7C protein-coding 6 0.0007145
+1351 COX8A cytochrome c oxidase subunit 8A protein-coding 6 0.0007145
+1352 COX10 COX10, heme A:farnesyltransferase cytochrome c oxidase assembly factor protein-coding 57 0.006788
+1353 COX11 COX11, cytochrome c oxidase copper chaperone protein-coding 28 0.003335
+1355 COX15 COX15, cytochrome c oxidase assembly homolog protein-coding 30 0.003573
+1356 CP ceruloplasmin protein-coding 136 0.0162
+1357 CPA1 carboxypeptidase A1 protein-coding 66 0.00786
+1358 CPA2 carboxypeptidase A2 protein-coding 48 0.005716
+1359 CPA3 carboxypeptidase A3 protein-coding 82 0.009765
+1360 CPB1 carboxypeptidase B1 protein-coding 80 0.009527
+1361 CPB2 carboxypeptidase B2 protein-coding 67 0.007979
+1362 CPD carboxypeptidase D protein-coding 111 0.01322
+1363 CPE carboxypeptidase E protein-coding 73 0.008694
+1364 CLDN4 claudin 4 protein-coding 29 0.003454
+1365 CLDN3 claudin 3 protein-coding 6 0.0007145
+1366 CLDN7 claudin 7 protein-coding 12 0.001429
+1368 CPM carboxypeptidase M protein-coding 49 0.005835
+1369 CPN1 carboxypeptidase N subunit 1 protein-coding 82 0.009765
+1370 CPN2 carboxypeptidase N subunit 2 protein-coding 70 0.008336
+1371 CPOX coproporphyrinogen oxidase protein-coding 98 0.01167
+1373 CPS1 carbamoyl-phosphate synthase 1 protein-coding 284 0.03382
+1374 CPT1A carnitine palmitoyltransferase 1A protein-coding 106 0.01262
+1375 CPT1B carnitine palmitoyltransferase 1B protein-coding 77 0.00917
+1376 CPT2 carnitine palmitoyltransferase 2 protein-coding 48 0.005716
+1378 CR1 complement C3b/C4b receptor 1 (Knops blood group) protein-coding 244 0.02906
+1379 CR1L complement C3b/C4b receptor 1 like protein-coding 102 0.01215
+1380 CR2 complement C3d receptor 2 protein-coding 207 0.02465
+1381 CRABP1 cellular retinoic acid binding protein 1 protein-coding 34 0.004049
+1382 CRABP2 cellular retinoic acid binding protein 2 protein-coding 24 0.002858
+1384 CRAT carnitine O-acetyltransferase protein-coding 134 0.01596
+1385 CREB1 cAMP responsive element binding protein 1 protein-coding 28 0.003335
+1386 ATF2 activating transcription factor 2 protein-coding 59 0.007026
+1387 CREBBP CREB binding protein protein-coding 360 0.04287
+1388 ATF6B activating transcription factor 6 beta protein-coding 60 0.007145
+1389 CREBL2 cAMP responsive element binding protein like 2 protein-coding 12 0.001429
+1390 CREM cAMP responsive element modulator protein-coding 34 0.004049
+1392 CRH corticotropin releasing hormone protein-coding 7 0.0008336
+1393 CRHBP corticotropin releasing hormone binding protein protein-coding 54 0.006431
+1394 CRHR1 corticotropin releasing hormone receptor 1 protein-coding 70 0.008336
+1395 CRHR2 corticotropin releasing hormone receptor 2 protein-coding 66 0.00786
+1396 CRIP1 cysteine rich protein 1 protein-coding 7 0.0008336
+1397 CRIP2 cysteine rich protein 2 protein-coding 17 0.002025
+1398 CRK CRK proto-oncogene, adaptor protein protein-coding 22 0.00262
+1399 CRKL CRK like proto-oncogene, adaptor protein protein-coding 32 0.003811
+1400 CRMP1 collapsin response mediator protein 1 protein-coding 109 0.01298
+1401 CRP C-reactive protein protein-coding 43 0.005121
+1404 HAPLN1 hyaluronan and proteoglycan link protein 1 protein-coding 91 0.01084
+1406 CRX cone-rod homeobox protein-coding 78 0.009289
+1407 CRY1 cryptochrome circadian regulator 1 protein-coding 65 0.007741
+1408 CRY2 cryptochrome circadian regulator 2 protein-coding 67 0.007979
+1409 CRYAA crystallin alpha A protein-coding 30 0.003573
+1410 CRYAB crystallin alpha B protein-coding 24 0.002858
+1411 CRYBA1 crystallin beta A1 protein-coding 37 0.004406
+1412 CRYBA2 crystallin beta A2 protein-coding 20 0.002382
+1413 CRYBA4 crystallin beta A4 protein-coding 51 0.006074
+1414 CRYBB1 crystallin beta B1 protein-coding 59 0.007026
+1415 CRYBB2 crystallin beta B2 protein-coding 30 0.003573
+1417 CRYBB3 crystallin beta B3 protein-coding 28 0.003335
+1418 CRYGA crystallin gamma A protein-coding 43 0.005121
+1419 CRYGB crystallin gamma B protein-coding 37 0.004406
+1420 CRYGC crystallin gamma C protein-coding 39 0.004645
+1421 CRYGD crystallin gamma D protein-coding 32 0.003811
+1427 CRYGS crystallin gamma S protein-coding 32 0.003811
+1428 CRYM crystallin mu protein-coding 35 0.004168
+1429 CRYZ crystallin zeta protein-coding 48 0.005716
+1431 CS citrate synthase protein-coding 41 0.004883
+1432 MAPK14 mitogen-activated protein kinase 14 protein-coding 37 0.004406
+1434 CSE1L chromosome segregation 1 like protein-coding 103 0.01227
+1435 CSF1 colony stimulating factor 1 protein-coding 54 0.006431
+1436 CSF1R colony stimulating factor 1 receptor protein-coding 116 0.01381
+1437 CSF2 colony stimulating factor 2 protein-coding 10 0.001191
+1438 CSF2RA colony stimulating factor 2 receptor alpha subunit protein-coding 105 0.0125
+1439 CSF2RB colony stimulating factor 2 receptor beta common subunit protein-coding 145 0.01727
+1440 CSF3 colony stimulating factor 3 protein-coding 18 0.002144
+1441 CSF3R colony stimulating factor 3 receptor protein-coding 107 0.01274
+1442 CSH1 chorionic somatomammotropin hormone 1 protein-coding 29 0.003454
+1443 CSH2 chorionic somatomammotropin hormone 2 protein-coding 39 0.004645
+1444 CSHL1 chorionic somatomammotropin hormone like 1 protein-coding 52 0.006193
+1445 CSK C-terminal Src kinase protein-coding 45 0.005359
+1446 CSN1S1 casein alpha s1 protein-coding 39 0.004645
+1447 CSN2 casein beta protein-coding 30 0.003573
+1448 CSN3 casein kappa protein-coding 42 0.005002
+1452 CSNK1A1 casein kinase 1 alpha 1 protein-coding 43 0.005121
+1453 CSNK1D casein kinase 1 delta protein-coding 49 0.005835
+1454 CSNK1E casein kinase 1 epsilon protein-coding 60 0.007145
+1455 CSNK1G2 casein kinase 1 gamma 2 protein-coding 43 0.005121
+1456 CSNK1G3 casein kinase 1 gamma 3 protein-coding 61 0.007264
+1457 CSNK2A1 casein kinase 2 alpha 1 protein-coding 132 0.01572
+1459 CSNK2A2 casein kinase 2 alpha 2 protein-coding 110 0.0131
+1460 CSNK2B casein kinase 2 beta protein-coding 3 0.0003573
+1462 VCAN versican protein-coding 384 0.04573
+1463 NCAN neurocan protein-coding 192 0.02287
+1464 CSPG4 chondroitin sulfate proteoglycan 4 protein-coding 204 0.02429
+1465 CSRP1 cysteine and glycine rich protein 1 protein-coding 15 0.001786
+1466 CSRP2 cysteine and glycine rich protein 2 protein-coding 25 0.002977
+1468 SLC25A10 solute carrier family 25 member 10 protein-coding 58 0.006907
+1469 CST1 cystatin SN protein-coding 36 0.004287
+1470 CST2 cystatin SA protein-coding 33 0.00393
+1471 CST3 cystatin C protein-coding 11 0.00131
+1472 CST4 cystatin S protein-coding 34 0.004049
+1473 CST5 cystatin D protein-coding 33 0.00393
+1474 CST6 cystatin E/M protein-coding 16 0.001905
+1475 CSTA cystatin A protein-coding 13 0.001548
+1476 CSTB cystatin B protein-coding 25 0.002977
+1477 CSTF1 cleavage stimulation factor subunit 1 protein-coding 58 0.006907
+1478 CSTF2 cleavage stimulation factor subunit 2 protein-coding 64 0.007622
+1479 CSTF3 cleavage stimulation factor subunit 3 protein-coding 79 0.009408
+1482 NKX2-5 NK2 homeobox 5 protein-coding 46 0.005478
+1486 CTBS chitobiase protein-coding 29 0.003454
+1487 CTBP1 C-terminal binding protein 1 protein-coding 43 0.005121
+1488 CTBP2 C-terminal binding protein 2 protein-coding 90 0.01072
+1489 CTF1 cardiotrophin 1 protein-coding 4 0.0004764
+1490 CTGF connective tissue growth factor protein-coding 40 0.004764
+1491 CTH cystathionine gamma-lyase protein-coding 48 0.005716
+1493 CTLA4 cytotoxic T-lymphocyte associated protein 4 protein-coding 38 0.004525
+1495 CTNNA1 catenin alpha 1 protein-coding 122 0.01453
+1496 CTNNA2 catenin alpha 2 protein-coding 321 0.03823
+1497 CTNS cystinosin, lysosomal cystine transporter protein-coding 38 0.004525
+1499 CTNNB1 catenin beta 1 protein-coding 343 0.04085
+1500 CTNND1 catenin delta 1 protein-coding 160 0.01905
+1501 CTNND2 catenin delta 2 protein-coding 309 0.0368
+1503 CTPS1 CTP synthase 1 protein-coding 59 0.007026
+1504 CTRB1 chymotrypsinogen B1 protein-coding 16 0.001905
+1506 CTRL chymotrypsin like protein-coding 28 0.003335
+1508 CTSB cathepsin B protein-coding 41 0.004883
+1509 CTSD cathepsin D protein-coding 57 0.006788
+1510 CTSE cathepsin E protein-coding 51 0.006074
+1511 CTSG cathepsin G protein-coding 52 0.006193
+1512 CTSH cathepsin H protein-coding 48 0.005716
+1513 CTSK cathepsin K protein-coding 82 0.009765
+1514 CTSL cathepsin L protein-coding 47 0.005597
+1515 CTSV cathepsin V protein-coding 54 0.006431
+1519 CTSO cathepsin O protein-coding 47 0.005597
+1520 CTSS cathepsin S protein-coding 44 0.00524
+1521 CTSW cathepsin W protein-coding 51 0.006074
+1522 CTSZ cathepsin Z protein-coding 30 0.003573
+1523 CUX1 cut like homeobox 1 protein-coding 212 0.02525
+1524 CX3CR1 C-X3-C motif chemokine receptor 1 protein-coding 60 0.007145
+1525 CXADR CXADR, Ig-like cell adhesion molecule protein-coding 51 0.006074
+1528 CYB5A cytochrome b5 type A protein-coding 20 0.002382
+1534 CYB561 cytochrome b561 protein-coding 30 0.003573
+1535 CYBA cytochrome b-245 alpha chain protein-coding 17 0.002025
+1536 CYBB cytochrome b-245 beta chain protein-coding 85 0.01012
+1537 CYC1 cytochrome c1 protein-coding 57 0.006788
+1538 CYLC1 cylicin 1 protein-coding 179 0.02132
+1539 CYLC2 cylicin 2 protein-coding 122 0.01453
+1540 CYLD CYLD lysine 63 deubiquitinase protein-coding 119 0.01417
+1543 CYP1A1 cytochrome P450 family 1 subfamily A member 1 protein-coding 166 0.01977
+1544 CYP1A2 cytochrome P450 family 1 subfamily A member 2 protein-coding 64 0.007622
+1545 CYP1B1 cytochrome P450 family 1 subfamily B member 1 protein-coding 65 0.007741
+1548 CYP2A6 cytochrome P450 family 2 subfamily A member 6 protein-coding 146 0.01739
+1549 CYP2A7 cytochrome P450 family 2 subfamily A member 7 protein-coding 70 0.008336
+1551 CYP3A7 cytochrome P450 family 3 subfamily A member 7 protein-coding 73 0.008694
+1553 CYP2A13 cytochrome P450 family 2 subfamily A member 13 protein-coding 94 0.01119
+1555 CYP2B6 cytochrome P450 family 2 subfamily B member 6 protein-coding 94 0.01119
+1556 CYP2B7P cytochrome P450 family 2 subfamily B member 7, pseudogene pseudo 50 0.005955
+1557 CYP2C19 cytochrome P450 family 2 subfamily C member 19 protein-coding 95 0.01131
+1558 CYP2C8 cytochrome P450 family 2 subfamily C member 8 protein-coding 70 0.008336
+1559 CYP2C9 cytochrome P450 family 2 subfamily C member 9 protein-coding 75 0.008932
+1562 CYP2C18 cytochrome P450 family 2 subfamily C member 18 protein-coding 67 0.007979
+1565 CYP2D6 cytochrome P450 family 2 subfamily D member 6 protein-coding 67 0.007979
+1571 CYP2E1 cytochrome P450 family 2 subfamily E member 1 protein-coding 68 0.008098
+1572 CYP2F1 cytochrome P450 family 2 subfamily F member 1 protein-coding 60 0.007145
+1573 CYP2J2 cytochrome P450 family 2 subfamily J member 2 protein-coding 45 0.005359
+1576 CYP3A4 cytochrome P450 family 3 subfamily A member 4 protein-coding 61 0.007264
+1577 CYP3A5 cytochrome P450 family 3 subfamily A member 5 protein-coding 51 0.006074
+1579 CYP4A11 cytochrome P450 family 4 subfamily A member 11 protein-coding 83 0.009884
+1580 CYP4B1 cytochrome P450 family 4 subfamily B member 1 protein-coding 85 0.01012
+1581 CYP7A1 cytochrome P450 family 7 subfamily A member 1 protein-coding 93 0.01108
+1582 CYP8B1 cytochrome P450 family 8 subfamily B member 1 protein-coding 67 0.007979
+1583 CYP11A1 cytochrome P450 family 11 subfamily A member 1 protein-coding 68 0.008098
+1584 CYP11B1 cytochrome P450 family 11 subfamily B member 1 protein-coding 202 0.02406
+1585 CYP11B2 cytochrome P450 family 11 subfamily B member 2 protein-coding 191 0.02275
+1586 CYP17A1 cytochrome P450 family 17 subfamily A member 1 protein-coding 63 0.007503
+1587 ADAM3A ADAM metallopeptidase domain 3A (pseudogene) pseudo 13 0.001548
+1588 CYP19A1 cytochrome P450 family 19 subfamily A member 1 protein-coding 73 0.008694
+1589 CYP21A2 cytochrome P450 family 21 subfamily A member 2 protein-coding 327 0.03894
+1591 CYP24A1 cytochrome P450 family 24 subfamily A member 1 protein-coding 61 0.007264
+1592 CYP26A1 cytochrome P450 family 26 subfamily A member 1 protein-coding 57 0.006788
+1593 CYP27A1 cytochrome P450 family 27 subfamily A member 1 protein-coding 53 0.006312
+1594 CYP27B1 cytochrome P450 family 27 subfamily B member 1 protein-coding 66 0.00786
+1595 CYP51A1 cytochrome P450 family 51 subfamily A member 1 protein-coding 47 0.005597
+1600 DAB1 DAB1, reelin adaptor protein protein-coding 121 0.01441
+1601 DAB2 DAB2, clathrin adaptor protein protein-coding 119 0.01417
+1602 DACH1 dachshund family transcription factor 1 protein-coding 132 0.01572
+1603 DAD1 defender against cell death 1 protein-coding 8 0.0009527
+1604 CD55 CD55 molecule (Cromer blood group) protein-coding 43 0.005121
+1605 DAG1 dystroglycan 1 protein-coding 73 0.008694
+1606 DGKA diacylglycerol kinase alpha protein-coding 72 0.008574
+1607 DGKB diacylglycerol kinase beta protein-coding 175 0.02084
+1608 DGKG diacylglycerol kinase gamma protein-coding 130 0.01548
+1609 DGKQ diacylglycerol kinase theta protein-coding 55 0.00655
+1610 DAO D-amino acid oxidase protein-coding 68 0.008098
+1611 DAP death associated protein protein-coding 11 0.00131
+1612 DAPK1 death associated protein kinase 1 protein-coding 175 0.02084
+1613 DAPK3 death associated protein kinase 3 protein-coding 54 0.006431
+1615 DARS aspartyl-tRNA synthetase protein-coding 50 0.005955
+1616 DAXX death domain associated protein protein-coding 92 0.01096
+1618 DAZL deleted in azoospermia like protein-coding 32 0.003811
+1620 BRINP1 BMP/retinoic acid inducible neural specific 1 protein-coding 197 0.02346
+1621 DBH dopamine beta-hydroxylase protein-coding 88 0.01048
+1622 DBI diazepam binding inhibitor, acyl-CoA binding protein protein-coding 24 0.002858
+1627 DBN1 drebrin 1 protein-coding 88 0.01048
+1628 DBP D-box binding PAR bZIP transcription factor protein-coding 26 0.003096
+1629 DBT dihydrolipoamide branched chain transacylase E2 protein-coding 60 0.007145
+1630 DCC DCC netrin 1 receptor protein-coding 360 0.04287
+1632 ECI1 enoyl-CoA delta isomerase 1 protein-coding 35 0.004168
+1633 DCK deoxycytidine kinase protein-coding 31 0.003692
+1634 DCN decorin protein-coding 79 0.009408
+1635 DCTD dCMP deaminase protein-coding 25 0.002977
+1636 ACE angiotensin I converting enzyme protein-coding 153 0.01822
+1638 DCT dopachrome tautomerase protein-coding 118 0.01405
+1639 DCTN1 dynactin subunit 1 protein-coding 140 0.01667
+1641 DCX doublecortin protein-coding 115 0.0137
+1642 DDB1 damage specific DNA binding protein 1 protein-coding 123 0.01465
+1643 DDB2 damage specific DNA binding protein 2 protein-coding 46 0.005478
+1644 DDC dopa decarboxylase protein-coding 83 0.009884
+1645 AKR1C1 aldo-keto reductase family 1 member C1 protein-coding 161 0.01917
+1646 AKR1C2 aldo-keto reductase family 1 member C2 protein-coding 37 0.004406
+1647 GADD45A growth arrest and DNA damage inducible alpha protein-coding 10 0.001191
+1649 DDIT3 DNA damage inducible transcript 3 protein-coding 113 0.01346
+1650 DDOST dolichyl-diphosphooligosaccharide--protein glycosyltransferase non-catalytic subunit protein-coding 51 0.006074
+1652 DDT D-dopachrome tautomerase protein-coding 3 0.0003573
+1653 DDX1 DEAD-box helicase 1 protein-coding 75 0.008932
+1654 DDX3X DEAD-box helicase 3, X-linked protein-coding 136 0.0162
+1655 DDX5 DEAD-box helicase 5 protein-coding 74 0.008813
+1656 DDX6 DEAD-box helicase 6 protein-coding 42 0.005002
+1657 DMXL1 Dmx like 1 protein-coding 275 0.03275
+1659 DHX8 DEAH-box helicase 8 protein-coding 172 0.02048
+1660 DHX9 DExH-box helicase 9 protein-coding 164 0.01953
+1662 DDX10 DEAD-box helicase 10 protein-coding 98 0.01167
+1663 DDX11 DEAD/H-box helicase 11 protein-coding 338 0.04025
+1665 DHX15 DEAH-box helicase 15 protein-coding 175 0.02084
+1666 DECR1 2,4-dienoyl-CoA reductase 1 protein-coding 38 0.004525
+1668 DEFA3 defensin alpha 3 protein-coding 5 0.0005955
+1669 DEFA4 defensin alpha 4 protein-coding 22 0.00262
+1670 DEFA5 defensin alpha 5 protein-coding 10 0.001191
+1671 DEFA6 defensin alpha 6 protein-coding 76 0.009051
+1672 DEFB1 defensin beta 1 protein-coding 9 0.001072
+1673 DEFB4A defensin beta 4A protein-coding 7 0.0008336
+1674 DES desmin protein-coding 55 0.00655
+1675 CFD complement factor D protein-coding 9 0.001072
+1676 DFFA DNA fragmentation factor subunit alpha protein-coding 39 0.004645
+1677 DFFB DNA fragmentation factor subunit beta protein-coding 233 0.02775
+1678 TIMM8A translocase of inner mitochondrial membrane 8A protein-coding 12 0.001429
+1687 GSDME gasdermin E protein-coding 69 0.008217
+1690 COCH cochlin protein-coding 67 0.007979
+1716 DGUOK deoxyguanosine kinase protein-coding 25 0.002977
+1717 DHCR7 7-dehydrocholesterol reductase protein-coding 54 0.006431
+1718 DHCR24 24-dehydrocholesterol reductase protein-coding 46 0.005478
+1719 DHFR dihydrofolate reductase protein-coding 17 0.002025
+1723 DHODH dihydroorotate dehydrogenase (quinone) protein-coding 36 0.004287
+1725 DHPS deoxyhypusine synthase protein-coding 44 0.00524
+1727 CYB5R3 cytochrome b5 reductase 3 protein-coding 41 0.004883
+1728 NQO1 NAD(P)H quinone dehydrogenase 1 protein-coding 20 0.002382
+1729 DIAPH1 diaphanous related formin 1 protein-coding 110 0.0131
+1730 DIAPH2 diaphanous related formin 2 protein-coding 158 0.01882
+1731 SEPT1 septin 1 protein-coding 45 0.005359
+1733 DIO1 iodothyronine deiodinase 1 protein-coding 20 0.002382
+1734 DIO2 iodothyronine deiodinase 2 protein-coding 75 0.008932
+1735 DIO3 iodothyronine deiodinase 3 protein-coding 73 0.008694
+1736 DKC1 dyskerin pseudouridine synthase 1 protein-coding 57 0.006788
+1737 DLAT dihydrolipoamide S-acetyltransferase protein-coding 55 0.00655
+1738 DLD dihydrolipoamide dehydrogenase protein-coding 59 0.007026
+1739 DLG1 discs large MAGUK scaffold protein 1 protein-coding 109 0.01298
+1740 DLG2 discs large MAGUK scaffold protein 2 protein-coding 190 0.02263
+1741 DLG3 discs large MAGUK scaffold protein 3 protein-coding 81 0.009646
+1742 DLG4 discs large MAGUK scaffold protein 4 protein-coding 94 0.01119
+1743 DLST dihydrolipoamide S-succinyltransferase protein-coding 54 0.006431
+1745 DLX1 distal-less homeobox 1 protein-coding 18 0.002144
+1746 DLX2 distal-less homeobox 2 protein-coding 41 0.004883
+1747 DLX3 distal-less homeobox 3 protein-coding 40 0.004764
+1748 DLX4 distal-less homeobox 4 protein-coding 30 0.003573
+1749 DLX5 distal-less homeobox 5 protein-coding 71 0.008455
+1750 DLX6 distal-less homeobox 6 protein-coding 31 0.003692
+1755 DMBT1 deleted in malignant brain tumors 1 protein-coding 319 0.03799
+1756 DMD dystrophin protein-coding 590 0.07026
+1757 SARDH sarcosine dehydrogenase protein-coding 104 0.01239
+1758 DMP1 dentin matrix acidic phosphoprotein 1 protein-coding 71 0.008455
+1759 DNM1 dynamin 1 protein-coding 87 0.01036
+1760 DMPK DM1 protein kinase protein-coding 68 0.008098
+1761 DMRT1 doublesex and mab-3 related transcription factor 1 protein-coding 46 0.005478
+1762 DMWD DM1 locus, WD repeat containing protein-coding 57 0.006788
+1763 DNA2 DNA replication helicase/nuclease 2 protein-coding 108 0.01286
+1767 DNAH5 dynein axonemal heavy chain 5 protein-coding 692 0.08241
+1768 DNAH6 dynein axonemal heavy chain 6 protein-coding 243 0.02894
+1769 DNAH8 dynein axonemal heavy chain 8 protein-coding 535 0.06371
+1770 DNAH9 dynein axonemal heavy chain 9 protein-coding 582 0.06931
+1773 DNASE1 deoxyribonuclease 1 protein-coding 23 0.002739
+1774 DNASE1L1 deoxyribonuclease 1 like 1 protein-coding 37 0.004406
+1775 DNASE1L2 deoxyribonuclease 1 like 2 protein-coding 21 0.002501
+1776 DNASE1L3 deoxyribonuclease 1 like 3 protein-coding 43 0.005121
+1777 DNASE2 deoxyribonuclease 2, lysosomal protein-coding 32 0.003811
+1778 DYNC1H1 dynein cytoplasmic 1 heavy chain 1 protein-coding 349 0.04156
+1780 DYNC1I1 dynein cytoplasmic 1 intermediate chain 1 protein-coding 131 0.0156
+1781 DYNC1I2 dynein cytoplasmic 1 intermediate chain 2 protein-coding 60 0.007145
+1783 DYNC1LI2 dynein cytoplasmic 1 light intermediate chain 2 protein-coding 48 0.005716
+1785 DNM2 dynamin 2 protein-coding 107 0.01274
+1786 DNMT1 DNA methyltransferase 1 protein-coding 134 0.01596
+1787 TRDMT1 tRNA aspartic acid methyltransferase 1 protein-coding 64 0.007622
+1788 DNMT3A DNA methyltransferase 3 alpha protein-coding 154 0.01834
+1789 DNMT3B DNA methyltransferase 3 beta protein-coding 129 0.01536
+1791 DNTT DNA nucleotidylexotransferase protein-coding 71 0.008455
+1793 DOCK1 dedicator of cytokinesis 1 protein-coding 189 0.02251
+1794 DOCK2 dedicator of cytokinesis 2 protein-coding 368 0.04383
+1795 DOCK3 dedicator of cytokinesis 3 protein-coding 285 0.03394
+1796 DOK1 docking protein 1 protein-coding 59 0.007026
+1797 DXO decapping exoribonuclease protein-coding 207 0.02465
+1798 DPAGT1 dolichyl-phosphate N-acetylglucosaminephosphotransferase 1 protein-coding 103 0.01227
+1800 DPEP1 dipeptidase 1 protein-coding 154 0.01834
+1801 DPH1 diphthamide biosynthesis 1 protein-coding 47 0.005597
+1802 DPH2 DPH2 homolog protein-coding 63 0.007503
+1803 DPP4 dipeptidyl peptidase 4 protein-coding 123 0.01465
+1804 DPP6 dipeptidyl peptidase like 6 protein-coding 209 0.02489
+1805 DPT dermatopontin protein-coding 23 0.002739
+1806 DPYD dihydropyrimidine dehydrogenase protein-coding 190 0.02263
+1807 DPYS dihydropyrimidinase protein-coding 110 0.0131
+1808 DPYSL2 dihydropyrimidinase like 2 protein-coding 192 0.02287
+1809 DPYSL3 dihydropyrimidinase like 3 protein-coding 83 0.009884
+1810 DR1 down-regulator of transcription 1 protein-coding 21 0.002501
+1811 SLC26A3 solute carrier family 26 member 3 protein-coding 116 0.01381
+1812 DRD1 dopamine receptor D1 protein-coding 64 0.007622
+1813 DRD2 dopamine receptor D2 protein-coding 91 0.01084
+1814 DRD3 dopamine receptor D3 protein-coding 85 0.01012
+1815 DRD4 dopamine receptor D4 protein-coding 25 0.002977
+1816 DRD5 dopamine receptor D5 protein-coding 103 0.01227
+1819 DRG2 developmentally regulated GTP binding protein 2 protein-coding 38 0.004525
+1820 ARID3A AT-rich interaction domain 3A protein-coding 45 0.005359
+1821 DRP2 dystrophin related protein 2 protein-coding 135 0.01608
+1822 ATN1 atrophin 1 protein-coding 122 0.01453
+1823 DSC1 desmocollin 1 protein-coding 131 0.0156
+1824 DSC2 desmocollin 2 protein-coding 114 0.01358
+1825 DSC3 desmocollin 3 protein-coding 126 0.01501
+1826 DSCAM DS cell adhesion molecule protein-coding 501 0.05966
+1827 RCAN1 regulator of calcineurin 1 protein-coding 172 0.02048
+1828 DSG1 desmoglein 1 protein-coding 158 0.01882
+1829 DSG2 desmoglein 2 protein-coding 119 0.01417
+1830 DSG3 desmoglein 3 protein-coding 173 0.0206
+1831 TSC22D3 TSC22 domain family member 3 protein-coding 26 0.003096
+1832 DSP desmoplakin protein-coding 294 0.03501
+1833 EPYC epiphycan protein-coding 56 0.006669
+1834 DSPP dentin sialophosphoprotein protein-coding 373 0.04442
+1836 SLC26A2 solute carrier family 26 member 2 protein-coding 58 0.006907
+1837 DTNA dystrobrevin alpha protein-coding 124 0.01477
+1838 DTNB dystrobrevin beta protein-coding 68 0.008098
+1839 HBEGF heparin binding EGF like growth factor protein-coding 17 0.002025
+1840 DTX1 deltex E3 ubiquitin ligase 1 protein-coding 85 0.01012
+1841 DTYMK deoxythymidylate kinase protein-coding 8 0.0009527
+1842 ECM2 extracellular matrix protein 2 protein-coding 77 0.00917
+1843 DUSP1 dual specificity phosphatase 1 protein-coding 25 0.002977
+1844 DUSP2 dual specificity phosphatase 2 protein-coding 22 0.00262
+1845 DUSP3 dual specificity phosphatase 3 protein-coding 18 0.002144
+1846 DUSP4 dual specificity phosphatase 4 protein-coding 35 0.004168
+1847 DUSP5 dual specificity phosphatase 5 protein-coding 50 0.005955
+1848 DUSP6 dual specificity phosphatase 6 protein-coding 40 0.004764
+1849 DUSP7 dual specificity phosphatase 7 protein-coding 32 0.003811
+1850 DUSP8 dual specificity phosphatase 8 protein-coding 37 0.004406
+1852 DUSP9 dual specificity phosphatase 9 protein-coding 45 0.005359
+1854 DUT deoxyuridine triphosphatase protein-coding 18 0.002144
+1855 DVL1 dishevelled segment polarity protein 1 protein-coding 67 0.007979
+1856 DVL2 dishevelled segment polarity protein 2 protein-coding 82 0.009765
+1857 DVL3 dishevelled segment polarity protein 3 protein-coding 88 0.01048
+1859 DYRK1A dual specificity tyrosine phosphorylation regulated kinase 1A protein-coding 145 0.01727
+1861 TOR1A torsin family 1 member A protein-coding 35 0.004168
+1869 E2F1 E2F transcription factor 1 protein-coding 245 0.02918
+1870 E2F2 E2F transcription factor 2 protein-coding 38 0.004525
+1871 E2F3 E2F transcription factor 3 protein-coding 53 0.006312
+1874 E2F4 E2F transcription factor 4 protein-coding 34 0.004049
+1875 E2F5 E2F transcription factor 5 protein-coding 55 0.00655
+1876 E2F6 E2F transcription factor 6 protein-coding 19 0.002263
+1877 E4F1 E4F transcription factor 1 protein-coding 85 0.01012
+1879 EBF1 early B cell factor 1 protein-coding 121 0.01441
+1880 GPR183 G protein-coupled receptor 183 protein-coding 37 0.004406
+1889 ECE1 endothelin converting enzyme 1 protein-coding 86 0.01024
+1890 TYMP thymidine phosphorylase protein-coding 35 0.004168
+1891 ECH1 enoyl-CoA hydratase 1 protein-coding 26 0.003096
+1892 ECHS1 enoyl-CoA hydratase, short chain 1 protein-coding 37 0.004406
+1893 ECM1 extracellular matrix protein 1 protein-coding 76 0.009051
+1894 ECT2 epithelial cell transforming 2 protein-coding 92 0.01096
+1896 EDA ectodysplasin A protein-coding 53 0.006312
+1901 S1PR1 sphingosine-1-phosphate receptor 1 protein-coding 71 0.008455
+1902 LPAR1 lysophosphatidic acid receptor 1 protein-coding 115 0.0137
+1903 S1PR3 sphingosine-1-phosphate receptor 3 protein-coding 57 0.006788
+1906 EDN1 endothelin 1 protein-coding 26 0.003096
+1907 EDN2 endothelin 2 protein-coding 18 0.002144
+1908 EDN3 endothelin 3 protein-coding 52 0.006193
+1909 EDNRA endothelin receptor type A protein-coding 54 0.006431
+1910 EDNRB endothelin receptor type B protein-coding 128 0.01524
+1911 PHC1 polyhomeotic homolog 1 protein-coding 76 0.009051
+1912 PHC2 polyhomeotic homolog 2 protein-coding 83 0.009884
+1915 EEF1A1 eukaryotic translation elongation factor 1 alpha 1 protein-coding 92 0.01096
+1917 EEF1A2 eukaryotic translation elongation factor 1 alpha 2 protein-coding 76 0.009051
+1933 EEF1B2 eukaryotic translation elongation factor 1 beta 2 protein-coding 31 0.003692
+1936 EEF1D eukaryotic translation elongation factor 1 delta protein-coding 61 0.007264
+1937 EEF1G eukaryotic translation elongation factor 1 gamma protein-coding 45 0.005359
+1938 EEF2 eukaryotic translation elongation factor 2 protein-coding 118 0.01405
+1939 EIF2D eukaryotic translation initiation factor 2D protein-coding 47 0.005597
+1942 EFNA1 ephrin A1 protein-coding 23 0.002739
+1943 EFNA2 ephrin A2 protein-coding 10 0.001191
+1944 EFNA3 ephrin A3 protein-coding 22 0.00262
+1945 EFNA4 ephrin A4 protein-coding 11 0.00131
+1946 EFNA5 ephrin A5 protein-coding 28 0.003335
+1947 EFNB1 ephrin B1 protein-coding 44 0.00524
+1948 EFNB2 ephrin B2 protein-coding 46 0.005478
+1949 EFNB3 ephrin B3 protein-coding 63 0.007503
+1950 EGF epidermal growth factor protein-coding 148 0.01763
+1951 CELSR3 cadherin EGF LAG seven-pass G-type receptor 3 protein-coding 280 0.03335
+1952 CELSR2 cadherin EGF LAG seven-pass G-type receptor 2 protein-coding 259 0.03084
+1953 MEGF6 multiple EGF like domains 6 protein-coding 133 0.01584
+1954 MEGF8 multiple EGF like domains 8 protein-coding 282 0.03358
+1955 MEGF9 multiple EGF like domains 9 protein-coding 51 0.006074
+1956 EGFR epidermal growth factor receptor protein-coding 287 0.03418
+1958 EGR1 early growth response 1 protein-coding 139 0.01655
+1959 EGR2 early growth response 2 protein-coding 77 0.00917
+1960 EGR3 early growth response 3 protein-coding 57 0.006788
+1961 EGR4 early growth response 4 protein-coding 56 0.006669
+1962 EHHADH enoyl-CoA hydratase and 3-hydroxyacyl CoA dehydrogenase protein-coding 97 0.01155
+1964 EIF1AX eukaryotic translation initiation factor 1A, X-linked protein-coding 44 0.00524
+1965 EIF2S1 eukaryotic translation initiation factor 2 subunit alpha protein-coding 82 0.009765
+1967 EIF2B1 eukaryotic translation initiation factor 2B subunit alpha protein-coding 37 0.004406
+1968 EIF2S3 eukaryotic translation initiation factor 2 subunit gamma protein-coding 42 0.005002
+1969 EPHA2 EPH receptor A2 protein-coding 190 0.02263
+1973 EIF4A1 eukaryotic translation initiation factor 4A1 protein-coding 56 0.006669
+1974 EIF4A2 eukaryotic translation initiation factor 4A2 protein-coding 78 0.009289
+1975 EIF4B eukaryotic translation initiation factor 4B protein-coding 73 0.008694
+1977 EIF4E eukaryotic translation initiation factor 4E protein-coding 31 0.003692
+1978 EIF4EBP1 eukaryotic translation initiation factor 4E binding protein 1 protein-coding 6 0.0007145
+1979 EIF4EBP2 eukaryotic translation initiation factor 4E binding protein 2 protein-coding 14 0.001667
+1981 EIF4G1 eukaryotic translation initiation factor 4 gamma 1 protein-coding 183 0.02179
+1982 EIF4G2 eukaryotic translation initiation factor 4 gamma 2 protein-coding 118 0.01405
+1983 EIF5 eukaryotic translation initiation factor 5 protein-coding 67 0.007979
+1984 EIF5A eukaryotic translation initiation factor 5A protein-coding 42 0.005002
+1990 CELA1 chymotrypsin like elastase family member 1 protein-coding 31 0.003692
+1991 ELANE elastase, neutrophil expressed protein-coding 35 0.004168
+1992 SERPINB1 serpin family B member 1 protein-coding 36 0.004287
+1993 ELAVL2 ELAV like RNA binding protein 2 protein-coding 95 0.01131
+1994 ELAVL1 ELAV like RNA binding protein 1 protein-coding 65 0.007741
+1995 ELAVL3 ELAV like RNA binding protein 3 protein-coding 52 0.006193
+1996 ELAVL4 ELAV like RNA binding protein 4 protein-coding 86 0.01024
+1997 ELF1 E74 like ETS transcription factor 1 protein-coding 164 0.01953
+1998 ELF2 E74 like ETS transcription factor 2 protein-coding 52 0.006193
+1999 ELF3 E74 like ETS transcription factor 3 protein-coding 116 0.01381
+2000 ELF4 E74 like ETS transcription factor 4 protein-coding 87 0.01036
+2001 ELF5 E74 like ETS transcription factor 5 protein-coding 30 0.003573
+2002 ELK1 ELK1, ETS transcription factor protein-coding 50 0.005955
+2004 ELK3 ELK3, ETS transcription factor protein-coding 42 0.005002
+2005 ELK4 ELK4, ETS transcription factor protein-coding 42 0.005002
+2006 ELN elastin protein-coding 87 0.01036
+2009 EML1 echinoderm microtubule associated protein like 1 protein-coding 112 0.01334
+2010 EMD emerin protein-coding 37 0.004406
+2011 MARK2 microtubule affinity regulating kinase 2 protein-coding 113 0.01346
+2012 EMP1 epithelial membrane protein 1 protein-coding 21 0.002501
+2013 EMP2 epithelial membrane protein 2 protein-coding 23 0.002739
+2014 EMP3 epithelial membrane protein 3 protein-coding 18 0.002144
+2015 ADGRE1 adhesion G protein-coupled receptor E1 protein-coding 138 0.01643
+2016 EMX1 empty spiracles homeobox 1 protein-coding 18 0.002144
+2017 CTTN cortactin protein-coding 78 0.009289
+2018 EMX2 empty spiracles homeobox 2 protein-coding 34 0.004049
+2019 EN1 engrailed homeobox 1 protein-coding 42 0.005002
+2020 EN2 engrailed homeobox 2 protein-coding 22 0.00262
+2021 ENDOG endonuclease G protein-coding 13 0.001548
+2022 ENG endoglin protein-coding 56 0.006669
+2023 ENO1 enolase 1 protein-coding 48 0.005716
+2026 ENO2 enolase 2 protein-coding 34 0.004049
+2027 ENO3 enolase 3 protein-coding 49 0.005835
+2028 ENPEP glutamyl aminopeptidase protein-coding 166 0.01977
+2029 ENSA endosulfine alpha protein-coding 18 0.002144
+2030 SLC29A1 solute carrier family 29 member 1 (Augustine blood group) protein-coding 48 0.005716
+2033 EP300 E1A binding protein p300 protein-coding 340 0.04049
+2034 EPAS1 endothelial PAS domain protein 1 protein-coding 158 0.01882
+2035 EPB41 erythrocyte membrane protein band 4.1 protein-coding 86 0.01024
+2036 EPB41L1 erythrocyte membrane protein band 4.1 like 1 protein-coding 115 0.0137
+2037 EPB41L2 erythrocyte membrane protein band 4.1 like 2 protein-coding 135 0.01608
+2038 EPB42 erythrocyte membrane protein band 4.2 protein-coding 82 0.009765
+2039 DMTN dematin actin binding protein protein-coding 58 0.006907
+2040 STOM stomatin protein-coding 19 0.002263
+2041 EPHA1 EPH receptor A1 protein-coding 109 0.01298
+2042 EPHA3 EPH receptor A3 protein-coding 273 0.03251
+2043 EPHA4 EPH receptor A4 protein-coding 155 0.01846
+2044 EPHA5 EPH receptor A5 protein-coding 319 0.03799
+2045 EPHA7 EPH receptor A7 protein-coding 187 0.02227
+2046 EPHA8 EPH receptor A8 protein-coding 147 0.01751
+2047 EPHB1 EPH receptor B1 protein-coding 245 0.02918
+2048 EPHB2 EPH receptor B2 protein-coding 132 0.01572
+2049 EPHB3 EPH receptor B3 protein-coding 135 0.01608
+2050 EPHB4 EPH receptor B4 protein-coding 111 0.01322
+2051 EPHB6 EPH receptor B6 protein-coding 181 0.02156
+2052 EPHX1 epoxide hydrolase 1 protein-coding 63 0.007503
+2053 EPHX2 epoxide hydrolase 2 protein-coding 59 0.007026
+2054 STX2 syntaxin 2 protein-coding 51 0.006074
+2055 CLN8 CLN8, transmembrane ER and ERGIC protein protein-coding 33 0.00393
+2056 EPO erythropoietin protein-coding 25 0.002977
+2057 EPOR erythropoietin receptor protein-coding 39 0.004645
+2058 EPRS glutamyl-prolyl-tRNA synthetase protein-coding 227 0.02703
+2059 EPS8 epidermal growth factor receptor pathway substrate 8 protein-coding 103 0.01227
+2060 EPS15 epidermal growth factor receptor pathway substrate 15 protein-coding 96 0.01143
+2063 NR2F6 nuclear receptor subfamily 2 group F member 6 protein-coding 23 0.002739
+2064 ERBB2 erb-b2 receptor tyrosine kinase 2 protein-coding 197 0.02346
+2065 ERBB3 erb-b2 receptor tyrosine kinase 3 protein-coding 240 0.02858
+2066 ERBB4 erb-b2 receptor tyrosine kinase 4 protein-coding 342 0.04073
+2067 ERCC1 ERCC excision repair 1, endonuclease non-catalytic subunit protein-coding 45 0.005359
+2068 ERCC2 ERCC excision repair 2, TFIIH core complex helicase subunit protein-coding 102 0.01215
+2069 EREG epiregulin protein-coding 23 0.002739
+2070 EYA4 EYA transcriptional coactivator and phosphatase 4 protein-coding 133 0.01584
+2071 ERCC3 ERCC excision repair 3, TFIIH core complex helicase subunit protein-coding 85 0.01012
+2072 ERCC4 ERCC excision repair 4, endonuclease catalytic subunit protein-coding 108 0.01286
+2073 ERCC5 ERCC excision repair 5, endonuclease protein-coding 38 0.004525
+2074 ERCC6 ERCC excision repair 6, chromatin remodeling factor protein-coding 120 0.01429
+2077 ERF ETS2 repressor factor protein-coding 79 0.009408
+2078 ERG ERG, ETS transcription factor protein-coding 80 0.009527
+2079 ERH ERH, mRNA splicing and mitosis factor protein-coding 8 0.0009527
+2081 ERN1 endoplasmic reticulum to nucleus signaling 1 protein-coding 87 0.01036
+2086 ERV3-1 endogenous retrovirus group 3 member 1, envelope protein-coding 70 0.008336
+2091 FBL fibrillarin protein-coding 45 0.005359
+2098 ESD esterase D protein-coding 30 0.003573
+2099 ESR1 estrogen receptor 1 protein-coding 103 0.01227
+2100 ESR2 estrogen receptor 2 protein-coding 74 0.008813
+2101 ESRRA estrogen related receptor alpha protein-coding 33 0.00393
+2103 ESRRB estrogen related receptor beta protein-coding 81 0.009646
+2104 ESRRG estrogen related receptor gamma protein-coding 118 0.01405
+2107 ETF1 eukaryotic translation termination factor 1 protein-coding 119 0.01417
+2108 ETFA electron transfer flavoprotein alpha subunit protein-coding 187 0.02227
+2109 ETFB electron transfer flavoprotein beta subunit protein-coding 192 0.02287
+2110 ETFDH electron transfer flavoprotein dehydrogenase protein-coding 206 0.02453
+2113 ETS1 ETS proto-oncogene 1, transcription factor protein-coding 60 0.007145
+2114 ETS2 ETS proto-oncogene 2, transcription factor protein-coding 55 0.00655
+2115 ETV1 ETS variant 1 protein-coding 83 0.009884
+2116 ETV2 ETS variant 2 protein-coding 25 0.002977
+2117 ETV3 ETS variant 3 protein-coding 52 0.006193
+2118 ETV4 ETS variant 4 protein-coding 41 0.004883
+2119 ETV5 ETS variant 5 protein-coding 81 0.009646
+2120 ETV6 ETS variant 6 protein-coding 83 0.009884
+2121 EVC EvC ciliary complex subunit 1 protein-coding 124 0.01477
+2122 MECOM MDS1 and EVI1 complex locus protein-coding 182 0.02167
+2123 EVI2A ecotropic viral integration site 2A protein-coding 34 0.004049
+2124 EVI2B ecotropic viral integration site 2B protein-coding 51 0.006074
+2125 EVPL envoplakin protein-coding 186 0.02215
+2128 EVX1 even-skipped homeobox 1 protein-coding 34 0.004049
+2130 EWSR1 EWS RNA binding protein 1 protein-coding 80 0.009527
+2131 EXT1 exostosin glycosyltransferase 1 protein-coding 95 0.01131
+2132 EXT2 exostosin glycosyltransferase 2 protein-coding 72 0.008574
+2133 EXT3 exostoses (multiple) 3 unknown 72 0.008574
+2134 EXTL1 exostosin like glycosyltransferase 1 protein-coding 75 0.008932
+2135 EXTL2 exostosin like glycosyltransferase 2 protein-coding 42 0.005002
+2137 EXTL3 exostosin like glycosyltransferase 3 protein-coding 94 0.01119
+2138 EYA1 EYA transcriptional coactivator and phosphatase 1 protein-coding 131 0.0156
+2139 EYA2 EYA transcriptional coactivator and phosphatase 2 protein-coding 86 0.01024
+2140 EYA3 EYA transcriptional coactivator and phosphatase 3 protein-coding 57 0.006788
+2145 EZH1 enhancer of zeste 1 polycomb repressive complex 2 subunit protein-coding 81 0.009646
+2146 EZH2 enhancer of zeste 2 polycomb repressive complex 2 subunit protein-coding 98 0.01167
+2147 F2 coagulation factor II, thrombin protein-coding 88 0.01048
+2149 F2R coagulation factor II thrombin receptor protein-coding 68 0.008098
+2150 F2RL1 F2R like trypsin receptor 1 protein-coding 47 0.005597
+2151 F2RL2 coagulation factor II thrombin receptor like 2 protein-coding 38 0.004525
+2152 F3 coagulation factor III, tissue factor protein-coding 133 0.01584
+2153 F5 coagulation factor V protein-coding 288 0.0343
+2155 F7 coagulation factor VII protein-coding 67 0.007979
+2157 F8 coagulation factor VIII protein-coding 303 0.03608
+2158 F9 coagulation factor IX protein-coding 102 0.01215
+2159 F10 coagulation factor X protein-coding 82 0.009765
+2160 F11 coagulation factor XI protein-coding 98 0.01167
+2161 F12 coagulation factor XII protein-coding 53 0.006312
+2162 F13A1 coagulation factor XIII A chain protein-coding 157 0.0187
+2165 F13B coagulation factor XIII B chain protein-coding 163 0.01941
+2166 FAAH fatty acid amide hydrolase protein-coding 55 0.00655
+2167 FABP4 fatty acid binding protein 4 protein-coding 22 0.00262
+2168 FABP1 fatty acid binding protein 1 protein-coding 29 0.003454
+2169 FABP2 fatty acid binding protein 2 protein-coding 23 0.002739
+2170 FABP3 fatty acid binding protein 3 protein-coding 13 0.001548
+2171 FABP5 fatty acid binding protein 5 protein-coding 14 0.001667
+2172 FABP6 fatty acid binding protein 6 protein-coding 28 0.003335
+2173 FABP7 fatty acid binding protein 7 protein-coding 15 0.001786
+2175 FANCA Fanconi anemia complementation group A protein-coding 162 0.01929
+2176 FANCC Fanconi anemia complementation group C protein-coding 66 0.00786
+2177 FANCD2 Fanconi anemia complementation group D2 protein-coding 141 0.01679
+2178 FANCE Fanconi anemia complementation group E protein-coding 44 0.00524
+2180 ACSL1 acyl-CoA synthetase long chain family member 1 protein-coding 75 0.008932
+2181 ACSL3 acyl-CoA synthetase long chain family member 3 protein-coding 70 0.008336
+2182 ACSL4 acyl-CoA synthetase long chain family member 4 protein-coding 81 0.009646
+2184 FAH fumarylacetoacetate hydrolase protein-coding 42 0.005002
+2185 PTK2B protein tyrosine kinase 2 beta protein-coding 116 0.01381
+2186 BPTF bromodomain PHD finger transcription factor protein-coding 219 0.02608
+2187 FANCB Fanconi anemia complementation group B protein-coding 105 0.0125
+2188 FANCF Fanconi anemia complementation group F protein-coding 33 0.00393
+2189 FANCG Fanconi anemia complementation group G protein-coding 53 0.006312
+2191 FAP fibroblast activation protein alpha protein-coding 134 0.01596
+2192 FBLN1 fibulin 1 protein-coding 98 0.01167
+2193 FARSA phenylalanyl-tRNA synthetase alpha subunit protein-coding 65 0.007741
+2194 FASN fatty acid synthase protein-coding 273 0.03251
+2195 FAT1 FAT atypical cadherin 1 protein-coding 575 0.06848
+2196 FAT2 FAT atypical cadherin 2 protein-coding 422 0.05026
+2197 FAU FAU, ubiquitin like and ribosomal protein S30 fusion protein-coding 18 0.002144
+2199 FBLN2 fibulin 2 protein-coding 138 0.01643
+2200 FBN1 fibrillin 1 protein-coding 329 0.03918
+2201 FBN2 fibrillin 2 protein-coding 424 0.05049
+2202 EFEMP1 EGF containing fibulin extracellular matrix protein 1 protein-coding 91 0.01084
+2203 FBP1 fructose-bisphosphatase 1 protein-coding 35 0.004168
+2204 FCAR Fc fragment of IgA receptor protein-coding 62 0.007384
+2205 FCER1A Fc fragment of IgE receptor Ia protein-coding 62 0.007384
+2206 MS4A2 membrane spanning 4-domains A2 protein-coding 45 0.005359
+2207 FCER1G Fc fragment of IgE receptor Ig protein-coding 16 0.001905
+2208 FCER2 Fc fragment of IgE receptor II protein-coding 38 0.004525
+2209 FCGR1A Fc fragment of IgG receptor Ia protein-coding 45 0.005359
+2210 FCGR1B Fc fragment of IgG receptor Ib protein-coding 32 0.003811
+2212 FCGR2A Fc fragment of IgG receptor IIa protein-coding 54 0.006431
+2213 FCGR2B Fc fragment of IgG receptor IIb protein-coding 43 0.005121
+2214 FCGR3A Fc fragment of IgG receptor IIIa protein-coding 52 0.006193
+2215 FCGR3B Fc fragment of IgG receptor IIIb protein-coding 53 0.006312
+2217 FCGRT Fc fragment of IgG receptor and transporter protein-coding 53 0.006312
+2218 FKTN fukutin protein-coding 54 0.006431
+2219 FCN1 ficolin 1 protein-coding 94 0.01119
+2220 FCN2 ficolin 2 protein-coding 67 0.007979
+2222 FDFT1 farnesyl-diphosphate farnesyltransferase 1 protein-coding 31 0.003692
+2224 FDPS farnesyl diphosphate synthase protein-coding 63 0.007503
+2230 FDX1 ferredoxin 1 protein-coding 13 0.001548
+2232 FDXR ferredoxin reductase protein-coding 58 0.006907
+2235 FECH ferrochelatase protein-coding 42 0.005002
+2237 FEN1 flap structure-specific endonuclease 1 protein-coding 26 0.003096
+2239 GPC4 glypican 4 protein-coding 74 0.008813
+2241 FER FER tyrosine kinase protein-coding 123 0.01465
+2242 FES FES proto-oncogene, tyrosine kinase protein-coding 84 0.01
+2243 FGA fibrinogen alpha chain protein-coding 169 0.02013
+2244 FGB fibrinogen beta chain protein-coding 79 0.009408
+2245 FGD1 FYVE, RhoGEF and PH domain containing 1 protein-coding 116 0.01381
+2246 FGF1 fibroblast growth factor 1 protein-coding 26 0.003096
+2247 FGF2 fibroblast growth factor 2 protein-coding 23 0.002739
+2248 FGF3 fibroblast growth factor 3 protein-coding 36 0.004287
+2249 FGF4 fibroblast growth factor 4 protein-coding 9 0.001072
+2250 FGF5 fibroblast growth factor 5 protein-coding 57 0.006788
+2251 FGF6 fibroblast growth factor 6 protein-coding 56 0.006669
+2252 FGF7 fibroblast growth factor 7 protein-coding 38 0.004525
+2253 FGF8 fibroblast growth factor 8 protein-coding 38 0.004525
+2254 FGF9 fibroblast growth factor 9 protein-coding 35 0.004168
+2255 FGF10 fibroblast growth factor 10 protein-coding 54 0.006431
+2256 FGF11 fibroblast growth factor 11 protein-coding 14 0.001667
+2257 FGF12 fibroblast growth factor 12 protein-coding 59 0.007026
+2258 FGF13 fibroblast growth factor 13 protein-coding 95 0.01131
+2259 FGF14 fibroblast growth factor 14 protein-coding 58 0.006907
+2260 FGFR1 fibroblast growth factor receptor 1 protein-coding 916 0.1091
+2261 FGFR3 fibroblast growth factor receptor 3 protein-coding 146 0.01739
+2262 GPC5 glypican 5 protein-coding 170 0.02025
+2263 FGFR2 fibroblast growth factor receptor 2 protein-coding 159 0.01894
+2264 FGFR4 fibroblast growth factor receptor 4 protein-coding 104 0.01239
+2266 FGG fibrinogen gamma chain protein-coding 75 0.008932
+2267 FGL1 fibrinogen like 1 protein-coding 35 0.004168
+2268 FGR FGR proto-oncogene, Src family tyrosine kinase protein-coding 57 0.006788
+2271 FH fumarate hydratase protein-coding 64 0.007622
+2272 FHIT fragile histidine triad protein-coding 29 0.003454
+2273 FHL1 four and a half LIM domains 1 protein-coding 46 0.005478
+2274 FHL2 four and a half LIM domains 2 protein-coding 34 0.004049
+2275 FHL3 four and a half LIM domains 3 protein-coding 27 0.003215
+2277 VEGFD vascular endothelial growth factor D protein-coding 51 0.006074
+2280 FKBP1A FK506 binding protein 1A protein-coding 11 0.00131
+2281 FKBP1B FK506 binding protein 1B protein-coding 5 0.0005955
+2286 FKBP2 FK506 binding protein 2 protein-coding 15 0.001786
+2287 FKBP3 FK506 binding protein 3 protein-coding 26 0.003096
+2288 FKBP4 FK506 binding protein 4 protein-coding 52 0.006193
+2289 FKBP5 FK506 binding protein 5 protein-coding 51 0.006074
+2290 FOXG1 forkhead box G1 protein-coding 129 0.01536
+2294 FOXF1 forkhead box F1 protein-coding 47 0.005597
+2295 FOXF2 forkhead box F2 protein-coding 42 0.005002
+2296 FOXC1 forkhead box C1 protein-coding 39 0.004645
+2297 FOXD1 forkhead box D1 protein-coding 11 0.00131
+2298 FOXD4 forkhead box D4 protein-coding 72 0.008574
+2299 FOXI1 forkhead box I1 protein-coding 76 0.009051
+2300 FOXL1 forkhead box L1 protein-coding 42 0.005002
+2301 FOXE3 forkhead box E3 protein-coding 13 0.001548
+2302 FOXJ1 forkhead box J1 protein-coding 27 0.003215
+2303 FOXC2 forkhead box C2 protein-coding 52 0.006193
+2304 FOXE1 forkhead box E1 protein-coding 143 0.01703
+2305 FOXM1 forkhead box M1 protein-coding 166 0.01977
+2306 FOXD2 forkhead box D2 protein-coding 28 0.003335
+2307 FOXS1 forkhead box S1 protein-coding 46 0.005478
+2308 FOXO1 forkhead box O1 protein-coding 64 0.007622
+2309 FOXO3 forkhead box O3 protein-coding 54 0.006431
+2312 FLG filaggrin protein-coding 864 0.1029
+2313 FLI1 Fli-1 proto-oncogene, ETS transcription factor protein-coding 89 0.0106
+2314 FLII FLII, actin remodeling protein protein-coding 101 0.01203
+2315 MLANA melan-A protein-coding 14 0.001667
+2316 FLNA filamin A protein-coding 304 0.0362
+2317 FLNB filamin B protein-coding 240 0.02858
+2318 FLNC filamin C protein-coding 356 0.0424
+2319 FLOT2 flotillin 2 protein-coding 54 0.006431
+2321 FLT1 fms related tyrosine kinase 1 protein-coding 191 0.02275
+2322 FLT3 fms related tyrosine kinase 3 protein-coding 145 0.01727
+2323 FLT3LG fms related tyrosine kinase 3 ligand protein-coding 26 0.003096
+2324 FLT4 fms related tyrosine kinase 4 protein-coding 205 0.02441
+2326 FMO1 flavin containing monooxygenase 1 protein-coding 104 0.01239
+2327 FMO2 flavin containing monooxygenase 2 protein-coding 90 0.01072
+2328 FMO3 flavin containing monooxygenase 3 protein-coding 96 0.01143
+2329 FMO4 flavin containing monooxygenase 4 protein-coding 88 0.01048
+2330 FMO5 flavin containing monooxygenase 5 protein-coding 66 0.00786
+2331 FMOD fibromodulin protein-coding 77 0.00917
+2332 FMR1 fragile X mental retardation 1 protein-coding 120 0.01429
+2334 AFF2 AF4/FMR2 family member 2 protein-coding 301 0.03585
+2335 FN1 fibronectin 1 protein-coding 292 0.03477
+2339 FNTA farnesyltransferase, CAAX box, alpha protein-coding 38 0.004525
+2342 FNTB farnesyltransferase, CAAX box, beta protein-coding 37 0.004406
+2346 FOLH1 folate hydrolase 1 protein-coding 173 0.0206
+2348 FOLR1 folate receptor 1 protein-coding 30 0.003573
+2350 FOLR2 folate receptor beta protein-coding 30 0.003573
+2352 FOLR3 folate receptor 3 protein-coding 54 0.006431
+2353 FOS Fos proto-oncogene, AP-1 transcription factor subunit protein-coding 44 0.00524
+2354 FOSB FosB proto-oncogene, AP-1 transcription factor subunit protein-coding 43 0.005121
+2355 FOSL2 FOS like 2, AP-1 transcription factor subunit protein-coding 61 0.007264
+2356 FPGS folylpolyglutamate synthase protein-coding 52 0.006193
+2357 FPR1 formyl peptide receptor 1 protein-coding 64 0.007622
+2358 FPR2 formyl peptide receptor 2 protein-coding 76 0.009051
+2359 FPR3 formyl peptide receptor 3 protein-coding 68 0.008098
+2395 FXN frataxin protein-coding 17 0.002025
+2444 FRK fyn related Src family tyrosine kinase protein-coding 65 0.007741
+2475 MTOR mechanistic target of rapamycin kinase protein-coding 263 0.03132
+2483 FRG1 FSHD region gene 1 protein-coding 32 0.003811
+2487 FRZB frizzled related protein protein-coding 56 0.006669
+2488 FSHB follicle stimulating hormone beta subunit protein-coding 29 0.003454
+2491 CENPI centromere protein I protein-coding 86 0.01024
+2492 FSHR follicle stimulating hormone receptor protein-coding 187 0.02227
+2494 NR5A2 nuclear receptor subfamily 5 group A member 2 protein-coding 87 0.01036
+2495 FTH1 ferritin heavy chain 1 protein-coding 26 0.003096
+2512 FTL ferritin light chain protein-coding 22 0.00262
+2515 ADAM2 ADAM metallopeptidase domain 2 protein-coding 153 0.01822
+2516 NR5A1 nuclear receptor subfamily 5 group A member 1 protein-coding 137 0.01632
+2517 FUCA1 alpha-L-fucosidase 1 protein-coding 31 0.003692
+2519 FUCA2 alpha-L-fucosidase 2 protein-coding 49 0.005835
+2520 GAST gastrin protein-coding 19 0.002263
+2521 FUS FUS RNA binding protein protein-coding 61 0.007264
+2523 FUT1 fucosyltransferase 1 (H blood group) protein-coding 49 0.005835
+2524 FUT2 fucosyltransferase 2 protein-coding 39 0.004645
+2525 FUT3 fucosyltransferase 3 (Lewis blood group) protein-coding 56 0.006669
+2526 FUT4 fucosyltransferase 4 protein-coding 40 0.004764
+2527 FUT5 fucosyltransferase 5 protein-coding 53 0.006312
+2528 FUT6 fucosyltransferase 6 protein-coding 57 0.006788
+2529 FUT7 fucosyltransferase 7 protein-coding 22 0.00262
+2530 FUT8 fucosyltransferase 8 protein-coding 83 0.009884
+2531 KDSR 3-ketodihydrosphingosine reductase protein-coding 32 0.003811
+2532 ACKR1 atypical chemokine receptor 1 (Duffy blood group) protein-coding 85 0.01012
+2533 FYB1 FYN binding protein 1 protein-coding 135 0.01608
+2534 FYN FYN proto-oncogene, Src family tyrosine kinase protein-coding 183 0.02179
+2535 FZD2 frizzled class receptor 2 protein-coding 75 0.008932
+2537 IFI6 interferon alpha inducible protein 6 protein-coding 12 0.001429
+2538 G6PC glucose-6-phosphatase catalytic subunit protein-coding 50 0.005955
+2539 G6PD glucose-6-phosphate dehydrogenase protein-coding 67 0.007979
+2542 SLC37A4 solute carrier family 37 member 4 protein-coding 41 0.004883
+2543 GAGE1 G antigen 1 protein-coding 1 0.0001191
+2547 XRCC6 X-ray repair cross complementing 6 protein-coding 61 0.007264
+2548 GAA glucosidase alpha, acid protein-coding 93 0.01108
+2549 GAB1 GRB2 associated binding protein 1 protein-coding 78 0.009289
+2550 GABBR1 gamma-aminobutyric acid type B receptor subunit 1 protein-coding 126 0.01501
+2551 GABPA GA binding protein transcription factor alpha subunit protein-coding 57 0.006788
+2553 GABPB1 GA binding protein transcription factor beta subunit 1 protein-coding 86 0.01024
+2554 GABRA1 gamma-aminobutyric acid type A receptor alpha1 subunit protein-coding 147 0.01751
+2555 GABRA2 gamma-aminobutyric acid type A receptor alpha2 subunit protein-coding 160 0.01905
+2556 GABRA3 gamma-aminobutyric acid type A receptor alpha3 subunit protein-coding 96 0.01143
+2557 GABRA4 gamma-aminobutyric acid type A receptor alpha4 subunit protein-coding 154 0.01834
+2558 GABRA5 gamma-aminobutyric acid type A receptor alpha5 subunit protein-coding 134 0.01596
+2559 GABRA6 gamma-aminobutyric acid type A receptor alpha6 subunit protein-coding 142 0.01691
+2560 GABRB1 gamma-aminobutyric acid type A receptor beta1 subunit protein-coding 112 0.01334
+2561 GABRB2 gamma-aminobutyric acid type A receptor beta2 subunit protein-coding 114 0.01358
+2562 GABRB3 gamma-aminobutyric acid type A receptor beta3 subunit protein-coding 147 0.01751
+2563 GABRD gamma-aminobutyric acid type A receptor delta subunit protein-coding 76 0.009051
+2564 GABRE gamma-aminobutyric acid type A receptor epsilon subunit protein-coding 90 0.01072
+2565 GABRG1 gamma-aminobutyric acid type A receptor gamma1 subunit protein-coding 173 0.0206
+2566 GABRG2 gamma-aminobutyric acid type A receptor gamma2 subunit protein-coding 162 0.01929
+2567 GABRG3 gamma-aminobutyric acid type A receptor gamma3 subunit protein-coding 132 0.01572
+2568 GABRP gamma-aminobutyric acid type A receptor pi subunit protein-coding 62 0.007384
+2569 GABRR1 gamma-aminobutyric acid type A receptor rho1 subunit protein-coding 79 0.009408
+2570 GABRR2 gamma-aminobutyric acid type A receptor rho2 subunit protein-coding 60 0.007145
+2571 GAD1 glutamate decarboxylase 1 protein-coding 95 0.01131
+2572 GAD2 glutamate decarboxylase 2 protein-coding 135 0.01608
+2574 GAGE2C G antigen 2C protein-coding 9 0.001072
+2580 GAK cyclin G associated kinase protein-coding 132 0.01572
+2581 GALC galactosylceramidase protein-coding 85 0.01012
+2582 GALE UDP-galactose-4-epimerase protein-coding 29 0.003454
+2583 B4GALNT1 beta-1,4-N-acetyl-galactosaminyltransferase 1 protein-coding 67 0.007979
+2584 GALK1 galactokinase 1 protein-coding 32 0.003811
+2585 GALK2 galactokinase 2 protein-coding 165 0.01965
+2587 GALR1 galanin receptor 1 protein-coding 61 0.007264
+2588 GALNS galactosamine (N-acetyl)-6-sulfatase protein-coding 50 0.005955
+2589 GALNT1 polypeptide N-acetylgalactosaminyltransferase 1 protein-coding 63 0.007503
+2590 GALNT2 polypeptide N-acetylgalactosaminyltransferase 2 protein-coding 85 0.01012
+2591 GALNT3 polypeptide N-acetylgalactosaminyltransferase 3 protein-coding 89 0.0106
+2592 GALT galactose-1-phosphate uridylyltransferase protein-coding 41 0.004883
+2593 GAMT guanidinoacetate N-methyltransferase protein-coding 20 0.002382
+2595 GANC glucosidase alpha, neutral C protein-coding 80 0.009527
+2596 GAP43 growth associated protein 43 protein-coding 62 0.007384
+2597 GAPDH glyceraldehyde-3-phosphate dehydrogenase protein-coding 39 0.004645
+2615 LRRC32 leucine rich repeat containing 32 protein-coding 111 0.01322
+2617 GARS glycyl-tRNA synthetase protein-coding 101 0.01203
+2618 GART phosphoribosylglycinamide formyltransferase, phosphoribosylglycinamide synthetase, phosphoribosylaminoimidazole synthetase protein-coding 124 0.01477
+2619 GAS1 growth arrest specific 1 protein-coding 9 0.001072
+2620 GAS2 growth arrest specific 2 protein-coding 61 0.007264
+2621 GAS6 growth arrest specific 6 protein-coding 85 0.01012
+2622 GAS8 growth arrest specific 8 protein-coding 49 0.005835
+2623 GATA1 GATA binding protein 1 protein-coding 54 0.006431
+2624 GATA2 GATA binding protein 2 protein-coding 60 0.007145
+2625 GATA3 GATA binding protein 3 protein-coding 207 0.02465
+2626 GATA4 GATA binding protein 4 protein-coding 33 0.00393
+2627 GATA6 GATA binding protein 6 protein-coding 42 0.005002
+2628 GATM glycine amidinotransferase protein-coding 47 0.005597
+2629 GBA glucosylceramidase beta protein-coding 64 0.007622
+2630 GBAP1 glucosylceramidase beta pseudogene 1 pseudo 3 0.0003573
+2631 NIPSNAP2 nipsnap homolog 2 protein-coding 36 0.004287
+2632 GBE1 1,4-alpha-glucan branching enzyme 1 protein-coding 83 0.009884
+2633 GBP1 guanylate binding protein 1 protein-coding 84 0.01
+2634 GBP2 guanylate binding protein 2 protein-coding 64 0.007622
+2635 GBP3 guanylate binding protein 3 protein-coding 66 0.00786
+2636 GBX1 gastrulation brain homeobox 1 protein-coding 45 0.005359
+2637 GBX2 gastrulation brain homeobox 2 protein-coding 31 0.003692
+2638 GC GC, vitamin D binding protein protein-coding 115 0.0137
+2639 GCDH glutaryl-CoA dehydrogenase protein-coding 52 0.006193
+2641 GCG glucagon protein-coding 49 0.005835
+2642 GCGR glucagon receptor protein-coding 24 0.002858
+2643 GCH1 GTP cyclohydrolase 1 protein-coding 24 0.002858
+2644 GCHFR GTP cyclohydrolase I feedback regulator protein-coding 12 0.001429
+2645 GCK glucokinase protein-coding 139 0.01655
+2646 GCKR glucokinase regulator protein-coding 70 0.008336
+2647 BLOC1S1 biogenesis of lysosomal organelles complex 1 subunit 1 protein-coding 17 0.002025
+2648 KAT2A lysine acetyltransferase 2A protein-coding 75 0.008932
+2649 NR6A1 nuclear receptor subfamily 6 group A member 1 protein-coding 40 0.004764
+2650 GCNT1 glucosaminyl (N-acetyl) transferase 1, core 2 protein-coding 57 0.006788
+2651 GCNT2 glucosaminyl (N-acetyl) transferase 2 (I blood group) protein-coding 40 0.004764
+2652 OPN1MW opsin 1, medium wave sensitive protein-coding 27 0.003215
+2653 GCSH glycine cleavage system protein H protein-coding 13 0.001548
+2657 GDF1 growth differentiation factor 1 protein-coding 10 0.001191
+2658 GDF2 growth differentiation factor 2 protein-coding 97 0.01155
+2660 MSTN myostatin protein-coding 62 0.007384
+2661 GDF9 growth differentiation factor 9 protein-coding 57 0.006788
+2662 GDF10 growth differentiation factor 10 protein-coding 81 0.009646
+2664 GDI1 GDP dissociation inhibitor 1 protein-coding 62 0.007384
+2665 GDI2 GDP dissociation inhibitor 2 protein-coding 45 0.005359
+2668 GDNF glial cell derived neurotrophic factor protein-coding 125 0.01489
+2669 GEM GTP binding protein overexpressed in skeletal muscle protein-coding 50 0.005955
+2670 GFAP glial fibrillary acidic protein protein-coding 52 0.006193
+2671 GFER growth factor, augmenter of liver regeneration protein-coding 10 0.001191
+2672 GFI1 growth factor independent 1 transcriptional repressor protein-coding 50 0.005955
+2673 GFPT1 glutamine--fructose-6-phosphate transaminase 1 protein-coding 88 0.01048
+2674 GFRA1 GDNF family receptor alpha 1 protein-coding 103 0.01227
+2675 GFRA2 GDNF family receptor alpha 2 protein-coding 58 0.006907
+2676 GFRA3 GDNF family receptor alpha 3 protein-coding 41 0.004883
+2677 GGCX gamma-glutamyl carboxylase protein-coding 78 0.009289
+2678 GGT1 gamma-glutamyltransferase 1 protein-coding 59 0.007026
+2679 GGT3P gamma-glutamyltransferase 3 pseudogene pseudo 50 0.005955
+2681 GGTA1P glycoprotein, alpha-galactosyltransferase 1 pseudogene pseudo 8 0.0009527
+2683 B4GALT1 beta-1,4-galactosyltransferase 1 protein-coding 34 0.004049
+2686 GGT7 gamma-glutamyltransferase 7 protein-coding 61 0.007264
+2687 GGT5 gamma-glutamyltransferase 5 protein-coding 84 0.01
+2688 GH1 growth hormone 1 protein-coding 43 0.005121
+2689 GH2 growth hormone 2 protein-coding 41 0.004883
+2690 GHR growth hormone receptor protein-coding 119 0.01417
+2691 GHRH growth hormone releasing hormone protein-coding 16 0.001905
+2692 GHRHR growth hormone releasing hormone receptor protein-coding 40 0.004764
+2693 GHSR growth hormone secretagogue receptor protein-coding 64 0.007622
+2694 GIF gastric intrinsic factor protein-coding 64 0.007622
+2695 GIP gastric inhibitory polypeptide protein-coding 27 0.003215
+2696 GIPR gastric inhibitory polypeptide receptor protein-coding 41 0.004883
+2697 GJA1 gap junction protein alpha 1 protein-coding 81 0.009646
+2700 GJA3 gap junction protein alpha 3 protein-coding 44 0.00524
+2701 GJA4 gap junction protein alpha 4 protein-coding 43 0.005121
+2702 GJA5 gap junction protein alpha 5 protein-coding 74 0.008813
+2703 GJA8 gap junction protein alpha 8 protein-coding 121 0.01441
+2705 GJB1 gap junction protein beta 1 protein-coding 34 0.004049
+2706 GJB2 gap junction protein beta 2 protein-coding 20 0.002382
+2707 GJB3 gap junction protein beta 3 protein-coding 35 0.004168
+2709 GJB5 gap junction protein beta 5 protein-coding 34 0.004049
+2710 GK glycerol kinase protein-coding 75 0.008932
+2712 GK2 glycerol kinase 2 protein-coding 125 0.01489
+2717 GLA galactosidase alpha protein-coding 58 0.006907
+2719 GPC3 glypican 3 protein-coding 81 0.009646
+2720 GLB1 galactosidase beta 1 protein-coding 91 0.01084
+2729 GCLC glutamate-cysteine ligase catalytic subunit protein-coding 66 0.00786
+2730 GCLM glutamate-cysteine ligase modifier subunit protein-coding 25 0.002977
+2731 GLDC glycine decarboxylase protein-coding 127 0.01512
+2733 GLE1 GLE1, RNA export mediator protein-coding 63 0.007503
+2734 GLG1 golgi glycoprotein 1 protein-coding 141 0.01679
+2735 GLI1 GLI family zinc finger 1 protein-coding 161 0.01917
+2736 GLI2 GLI family zinc finger 2 protein-coding 200 0.02382
+2737 GLI3 GLI family zinc finger 3 protein-coding 307 0.03656
+2738 GLI4 GLI family zinc finger 4 protein-coding 34 0.004049
+2739 GLO1 glyoxalase I protein-coding 25 0.002977
+2740 GLP1R glucagon like peptide 1 receptor protein-coding 49 0.005835
+2741 GLRA1 glycine receptor alpha 1 protein-coding 78 0.009289
+2742 GLRA2 glycine receptor alpha 2 protein-coding 98 0.01167
+2743 GLRB glycine receptor beta protein-coding 72 0.008574
+2744 GLS glutaminase protein-coding 58 0.006907
+2745 GLRX glutaredoxin protein-coding 12 0.001429
+2746 GLUD1 glutamate dehydrogenase 1 protein-coding 40 0.004764
+2747 GLUD2 glutamate dehydrogenase 2 protein-coding 134 0.01596
+2752 GLUL glutamate-ammonia ligase protein-coding 62 0.007384
+2760 GM2A GM2 ganglioside activator protein-coding 16 0.001905
+2762 GMDS GDP-mannose 4,6-dehydratase protein-coding 44 0.00524
+2764 GMFB glia maturation factor beta protein-coding 23 0.002739
+2765 GML glycosylphosphatidylinositol anchored molecule like protein-coding 38 0.004525
+2766 GMPR guanosine monophosphate reductase protein-coding 44 0.00524
+2767 GNA11 G protein subunit alpha 11 protein-coding 73 0.008694
+2768 GNA12 G protein subunit alpha 12 protein-coding 38 0.004525
+2769 GNA15 G protein subunit alpha 15 protein-coding 46 0.005478
+2770 GNAI1 G protein subunit alpha i1 protein-coding 50 0.005955
+2771 GNAI2 G protein subunit alpha i2 protein-coding 73 0.008694
+2773 GNAI3 G protein subunit alpha i3 protein-coding 47 0.005597
+2774 GNAL G protein subunit alpha L protein-coding 55 0.00655
+2775 GNAO1 G protein subunit alpha o1 protein-coding 64 0.007622
+2776 GNAQ G protein subunit alpha q protein-coding 98 0.01167
+2778 GNAS GNAS complex locus protein-coding 182 0.02167
+2779 GNAT1 G protein subunit alpha transducin 1 protein-coding 40 0.004764
+2780 GNAT2 G protein subunit alpha transducin 2 protein-coding 34 0.004049
+2781 GNAZ G protein subunit alpha z protein-coding 78 0.009289
+2782 GNB1 G protein subunit beta 1 protein-coding 44 0.00524
+2783 GNB2 G protein subunit beta 2 protein-coding 33 0.00393
+2784 GNB3 G protein subunit beta 3 protein-coding 51 0.006074
+2785 GNG3 G protein subunit gamma 3 protein-coding 12 0.001429
+2786 GNG4 G protein subunit gamma 4 protein-coding 17 0.002025
+2787 GNG5 G protein subunit gamma 5 protein-coding 7 0.0008336
+2788 GNG7 G protein subunit gamma 7 protein-coding 11 0.00131
+2791 GNG11 G protein subunit gamma 11 protein-coding 17 0.002025
+2792 GNGT1 G protein subunit gamma transducin 1 protein-coding 14 0.001667
+2793 GNGT2 G protein subunit gamma transducin 2 protein-coding 18 0.002144
+2794 GNL1 G protein nucleolar 1 (putative) protein-coding 44 0.00524
+2796 GNRH1 gonadotropin releasing hormone 1 protein-coding 21 0.002501
+2797 GNRH2 gonadotropin releasing hormone 2 protein-coding 14 0.001667
+2798 GNRHR gonadotropin releasing hormone receptor protein-coding 44 0.00524
+2799 GNS glucosamine (N-acetyl)-6-sulfatase protein-coding 56 0.006669
+2800 GOLGA1 golgin A1 protein-coding 82 0.009765
+2801 GOLGA2 golgin A2 protein-coding 112 0.01334
+2802 GOLGA3 golgin A3 protein-coding 187 0.02227
+2803 GOLGA4 golgin A4 protein-coding 179 0.02132
+2804 GOLGB1 golgin B1 protein-coding 291 0.03466
+2805 GOT1 glutamic-oxaloacetic transaminase 1 protein-coding 54 0.006431
+2806 GOT2 glutamic-oxaloacetic transaminase 2 protein-coding 41 0.004883
+2810 SFN stratifin protein-coding 22 0.00262
+2811 GP1BA glycoprotein Ib platelet alpha subunit protein-coding 57 0.006788
+2812 GP1BB glycoprotein Ib platelet beta subunit protein-coding 1 0.0001191
+2813 GP2 glycoprotein 2 protein-coding 111 0.01322
+2814 GP5 glycoprotein V platelet protein-coding 65 0.007741
+2815 GP9 glycoprotein IX platelet protein-coding 21 0.002501
+2817 GPC1 glypican 1 protein-coding 56 0.006669
+2819 GPD1 glycerol-3-phosphate dehydrogenase 1 protein-coding 46 0.005478
+2820 GPD2 glycerol-3-phosphate dehydrogenase 2 protein-coding 75 0.008932
+2821 GPI glucose-6-phosphate isomerase protein-coding 119 0.01417
+2822 GPLD1 glycosylphosphatidylinositol specific phospholipase D1 protein-coding 100 0.01191
+2823 GPM6A glycoprotein M6A protein-coding 69 0.008217
+2824 GPM6B glycoprotein M6B protein-coding 38 0.004525
+2825 GPR1 G protein-coupled receptor 1 protein-coding 45 0.005359
+2826 CCR10 C-C motif chemokine receptor 10 protein-coding 29 0.003454
+2827 GPR3 G protein-coupled receptor 3 protein-coding 34 0.004049
+2828 GPR4 G protein-coupled receptor 4 protein-coding 56 0.006669
+2829 XCR1 X-C motif chemokine receptor 1 protein-coding 58 0.006907
+2830 GPR6 G protein-coupled receptor 6 protein-coding 68 0.008098
+2831 NPBWR1 neuropeptides B and W receptor 1 protein-coding 72 0.008574
+2832 NPBWR2 neuropeptides B and W receptor 2 protein-coding 63 0.007503
+2833 CXCR3 C-X-C motif chemokine receptor 3 protein-coding 53 0.006312
+2834 PRLHR prolactin releasing hormone receptor protein-coding 67 0.007979
+2835 GPR12 G protein-coupled receptor 12 protein-coding 56 0.006669
+2837 UTS2R urotensin 2 receptor protein-coding 35 0.004168
+2838 GPR15 G protein-coupled receptor 15 protein-coding 70 0.008336
+2840 GPR17 G protein-coupled receptor 17 protein-coding 56 0.006669
+2841 GPR18 G protein-coupled receptor 18 protein-coding 43 0.005121
+2842 GPR19 G protein-coupled receptor 19 protein-coding 37 0.004406
+2843 GPR20 G protein-coupled receptor 20 protein-coding 58 0.006907
+2844 GPR21 G protein-coupled receptor 21 protein-coding 36 0.004287
+2845 GPR22 G protein-coupled receptor 22 protein-coding 53 0.006312
+2846 LPAR4 lysophosphatidic acid receptor 4 protein-coding 92 0.01096
+2847 MCHR1 melanin concentrating hormone receptor 1 protein-coding 62 0.007384
+2848 GPR25 G protein-coupled receptor 25 protein-coding 25 0.002977
+2849 GPR26 G protein-coupled receptor 26 protein-coding 55 0.00655
+2850 GPR27 G protein-coupled receptor 27 protein-coding 21 0.002501
+2852 GPER1 G protein-coupled estrogen receptor 1 protein-coding 52 0.006193
+2853 GPR31 G protein-coupled receptor 31 protein-coding 43 0.005121
+2854 GPR32 G protein-coupled receptor 32 protein-coding 72 0.008574
+2857 GPR34 G protein-coupled receptor 34 protein-coding 42 0.005002
+2859 GPR35 G protein-coupled receptor 35 protein-coding 43 0.005121
+2861 GPR37 G protein-coupled receptor 37 protein-coding 109 0.01298
+2862 MLNR motilin receptor protein-coding 39 0.004645
+2863 GPR39 G protein-coupled receptor 39 protein-coding 63 0.007503
+2864 FFAR1 free fatty acid receptor 1 protein-coding 33 0.00393
+2865 FFAR3 free fatty acid receptor 3 protein-coding 72 0.008574
+2866 GPR42 G protein-coupled receptor 42 (gene/pseudogene) protein-coding 17 0.002025
+2867 FFAR2 free fatty acid receptor 2 protein-coding 38 0.004525
+2868 GRK4 G protein-coupled receptor kinase 4 protein-coding 59 0.007026
+2869 GRK5 G protein-coupled receptor kinase 5 protein-coding 60 0.007145
+2870 GRK6 G protein-coupled receptor kinase 6 protein-coding 60 0.007145
+2872 MKNK2 MAP kinase interacting serine/threonine kinase 2 protein-coding 39 0.004645
+2873 GPS1 G protein pathway suppressor 1 protein-coding 65 0.007741
+2874 GPS2 G protein pathway suppressor 2 protein-coding 54 0.006431
+2875 GPT glutamic--pyruvic transaminase protein-coding 54 0.006431
+2876 GPX1 glutathione peroxidase 1 protein-coding 21 0.002501
+2877 GPX2 glutathione peroxidase 2 protein-coding 26 0.003096
+2878 GPX3 glutathione peroxidase 3 protein-coding 21 0.002501
+2879 GPX4 glutathione peroxidase 4 protein-coding 19 0.002263
+2880 GPX5 glutathione peroxidase 5 protein-coding 52 0.006193
+2882 GPX7 glutathione peroxidase 7 protein-coding 74 0.008813
+2885 GRB2 growth factor receptor bound protein 2 protein-coding 26 0.003096
+2886 GRB7 growth factor receptor bound protein 7 protein-coding 67 0.007979
+2887 GRB10 growth factor receptor bound protein 10 protein-coding 83 0.009884
+2888 GRB14 growth factor receptor bound protein 14 protein-coding 65 0.007741
+2889 RAPGEF1 Rap guanine nucleotide exchange factor 1 protein-coding 116 0.01381
+2890 GRIA1 glutamate ionotropic receptor AMPA type subunit 1 protein-coding 216 0.02572
+2891 GRIA2 glutamate ionotropic receptor AMPA type subunit 2 protein-coding 199 0.0237
+2892 GRIA3 glutamate ionotropic receptor AMPA type subunit 3 protein-coding 160 0.01905
+2893 GRIA4 glutamate ionotropic receptor AMPA type subunit 4 protein-coding 174 0.02072
+2894 GRID1 glutamate ionotropic receptor delta type subunit 1 protein-coding 218 0.02596
+2895 GRID2 glutamate ionotropic receptor delta type subunit 2 protein-coding 253 0.03013
+2896 GRN granulin precursor protein-coding 62 0.007384
+2897 GRIK1 glutamate ionotropic receptor kainate type subunit 1 protein-coding 167 0.01989
+2898 GRIK2 glutamate ionotropic receptor kainate type subunit 2 protein-coding 218 0.02596
+2899 GRIK3 glutamate ionotropic receptor kainate type subunit 3 protein-coding 185 0.02203
+2900 GRIK4 glutamate ionotropic receptor kainate type subunit 4 protein-coding 145 0.01727
+2901 GRIK5 glutamate ionotropic receptor kainate type subunit 5 protein-coding 322 0.03835
+2902 GRIN1 glutamate ionotropic receptor NMDA type subunit 1 protein-coding 94 0.01119
+2903 GRIN2A glutamate ionotropic receptor NMDA type subunit 2A protein-coding 319 0.03799
+2904 GRIN2B glutamate ionotropic receptor NMDA type subunit 2B protein-coding 277 0.03299
+2905 GRIN2C glutamate ionotropic receptor NMDA type subunit 2C protein-coding 84 0.01
+2906 GRIN2D glutamate ionotropic receptor NMDA type subunit 2D protein-coding 108 0.01286
+2907 GRINA glutamate ionotropic receptor NMDA type subunit associated protein 1 protein-coding 33 0.00393
+2908 NR3C1 nuclear receptor subfamily 3 group C member 1 protein-coding 90 0.01072
+2909 ARHGAP35 Rho GTPase activating protein 35 protein-coding 279 0.03323
+2911 GRM1 glutamate metabotropic receptor 1 protein-coding 277 0.03299
+2912 GRM2 glutamate metabotropic receptor 2 protein-coding 117 0.01393
+2913 GRM3 glutamate metabotropic receptor 3 protein-coding 213 0.02537
+2914 GRM4 glutamate metabotropic receptor 4 protein-coding 141 0.01679
+2915 GRM5 glutamate metabotropic receptor 5 protein-coding 251 0.02989
+2916 GRM6 glutamate metabotropic receptor 6 protein-coding 157 0.0187
+2917 GRM7 glutamate metabotropic receptor 7 protein-coding 234 0.02787
+2918 GRM8 glutamate metabotropic receptor 8 protein-coding 268 0.03192
+2919 CXCL1 C-X-C motif chemokine ligand 1 protein-coding 25 0.002977
+2920 CXCL2 C-X-C motif chemokine ligand 2 protein-coding 16 0.001905
+2921 CXCL3 C-X-C motif chemokine ligand 3 protein-coding 7 0.0008336
+2922 GRP gastrin releasing peptide protein-coding 22 0.00262
+2923 PDIA3 protein disulfide isomerase family A member 3 protein-coding 55 0.00655
+2925 GRPR gastrin releasing peptide receptor protein-coding 54 0.006431
+2926 GRSF1 G-rich RNA sequence binding factor 1 protein-coding 51 0.006074
+2928 GSC2 goosecoid homeobox 2 protein-coding 10 0.001191
+2931 GSK3A glycogen synthase kinase 3 alpha protein-coding 28 0.003335
+2932 GSK3B glycogen synthase kinase 3 beta protein-coding 54 0.006431
+2934 GSN gelsolin protein-coding 63 0.007503
+2935 GSPT1 G1 to S phase transition 1 protein-coding 29 0.003454
+2936 GSR glutathione-disulfide reductase protein-coding 59 0.007026
+2937 GSS glutathione synthetase protein-coding 40 0.004764
+2938 GSTA1 glutathione S-transferase alpha 1 protein-coding 42 0.005002
+2939 GSTA2 glutathione S-transferase alpha 2 protein-coding 43 0.005121
+2940 GSTA3 glutathione S-transferase alpha 3 protein-coding 24 0.002858
+2941 GSTA4 glutathione S-transferase alpha 4 protein-coding 27 0.003215
+2944 GSTM1 glutathione S-transferase mu 1 protein-coding 11 0.00131
+2946 GSTM2 glutathione S-transferase mu 2 protein-coding 31 0.003692
+2947 GSTM3 glutathione S-transferase mu 3 protein-coding 29 0.003454
+2948 GSTM4 glutathione S-transferase mu 4 protein-coding 24 0.002858
+2949 GSTM5 glutathione S-transferase mu 5 protein-coding 31 0.003692
+2950 GSTP1 glutathione S-transferase pi 1 protein-coding 22 0.00262
+2952 GSTT1 glutathione S-transferase theta 1 protein-coding 14 0.001667
+2953 GSTT2 glutathione S-transferase theta 2 (gene/pseudogene) protein-coding 8 0.0009527
+2954 GSTZ1 glutathione S-transferase zeta 1 protein-coding 35 0.004168
+2956 MSH6 mutS homolog 6 protein-coding 147 0.01751
+2957 GTF2A1 general transcription factor IIA subunit 1 protein-coding 41 0.004883
+2958 GTF2A2 general transcription factor IIA subunit 2 protein-coding 11 0.00131
+2959 GTF2B general transcription factor IIB protein-coding 38 0.004525
+2960 GTF2E1 general transcription factor IIE subunit 1 protein-coding 62 0.007384
+2961 GTF2E2 general transcription factor IIE subunit 2 protein-coding 35 0.004168
+2962 GTF2F1 general transcription factor IIF subunit 1 protein-coding 59 0.007026
+2963 GTF2F2 general transcription factor IIF subunit 2 protein-coding 17 0.002025
+2965 GTF2H1 general transcription factor IIH subunit 1 protein-coding 49 0.005835
+2966 GTF2H2 general transcription factor IIH subunit 2 protein-coding 4 0.0004764
+2967 GTF2H3 general transcription factor IIH subunit 3 protein-coding 37 0.004406
+2968 GTF2H4 general transcription factor IIH subunit 4 protein-coding 43 0.005121
+2969 GTF2I general transcription factor IIi protein-coding 134 0.01596
+2971 GTF3A general transcription factor IIIA protein-coding 24 0.002858
+2972 BRF1 BRF1, RNA polymerase III transcription initiation factor subunit protein-coding 79 0.009408
+2974 GUCY1B2 guanylate cyclase 1 soluble subunit beta 2 (pseudogene) pseudo 45 0.005359
+2975 GTF3C1 general transcription factor IIIC subunit 1 protein-coding 271 0.03227
+2976 GTF3C2 general transcription factor IIIC subunit 2 protein-coding 109 0.01298
+2977 GUCY1A2 guanylate cyclase 1 soluble subunit alpha 2 protein-coding 152 0.0181
+2978 GUCA1A guanylate cyclase activator 1A protein-coding 29 0.003454
+2979 GUCA1B guanylate cyclase activator 1B protein-coding 23 0.002739
+2980 GUCA2A guanylate cyclase activator 2A protein-coding 11 0.00131
+2981 GUCA2B guanylate cyclase activator 2B protein-coding 17 0.002025
+2982 GUCY1A1 guanylate cyclase 1 soluble subunit alpha 1 protein-coding 138 0.01643
+2983 GUCY1B1 guanylate cyclase 1 soluble subunit beta 1 protein-coding 85 0.01012
+2984 GUCY2C guanylate cyclase 2C protein-coding 180 0.02144
+2986 GUCY2F guanylate cyclase 2F, retinal protein-coding 156 0.01858
+2987 GUK1 guanylate kinase 1 protein-coding 28 0.003335
+2990 GUSB glucuronidase beta protein-coding 90 0.01072
+2992 GYG1 glycogenin 1 protein-coding 38 0.004525
+2993 GYPA glycophorin A (MNS blood group) protein-coding 38 0.004525
+2994 GYPB glycophorin B (MNS blood group) protein-coding 23 0.002739
+2995 GYPC glycophorin C (Gerbich blood group) protein-coding 32 0.003811
+2996 GYPE glycophorin E (MNS blood group) protein-coding 28 0.003335
+2997 GYS1 glycogen synthase 1 protein-coding 74 0.008813
+2998 GYS2 glycogen synthase 2 protein-coding 122 0.01453
+2999 GZMH granzyme H protein-coding 42 0.005002
+3000 GUCY2D guanylate cyclase 2D, retinal protein-coding 90 0.01072
+3001 GZMA granzyme A protein-coding 56 0.006669
+3002 GZMB granzyme B protein-coding 37 0.004406
+3003 GZMK granzyme K protein-coding 52 0.006193
+3004 GZMM granzyme M protein-coding 21 0.002501
+3005 H1F0 H1 histone family member 0 protein-coding 24 0.002858
+3006 HIST1H1C histone cluster 1 H1 family member c protein-coding 75 0.008932
+3007 HIST1H1D histone cluster 1 H1 family member d protein-coding 42 0.005002
+3008 HIST1H1E histone cluster 1 H1 family member e protein-coding 78 0.009289
+3009 HIST1H1B histone cluster 1 H1 family member b protein-coding 75 0.008932
+3010 HIST1H1T histone cluster 1 H1 family member t protein-coding 37 0.004406
+3012 HIST1H2AE histone cluster 1 H2A family member e protein-coding 39 0.004645
+3013 HIST1H2AD histone cluster 1 H2A family member d protein-coding 31 0.003692
+3014 H2AFX H2A histone family member X protein-coding 23 0.002739
+3015 H2AFZ H2A histone family member Z protein-coding 21 0.002501
+3017 HIST1H2BD histone cluster 1 H2B family member d protein-coding 39 0.004645
+3018 HIST1H2BB histone cluster 1 H2B family member b protein-coding 30 0.003573
+3020 H3F3A H3 histone family member 3A protein-coding 33 0.00393
+3021 H3F3B H3 histone family member 3B protein-coding 27 0.003215
+3024 HIST1H1A histone cluster 1 H1 family member a protein-coding 39 0.004645
+3026 HABP2 hyaluronan binding protein 2 protein-coding 63 0.007503
+3028 HSD17B10 hydroxysteroid 17-beta dehydrogenase 10 protein-coding 22 0.00262
+3029 HAGH hydroxyacylglutathione hydrolase protein-coding 24 0.002858
+3030 HADHA hydroxyacyl-CoA dehydrogenase trifunctional multienzyme complex subunit alpha protein-coding 97 0.01155
+3032 HADHB hydroxyacyl-CoA dehydrogenase trifunctional multienzyme complex subunit beta protein-coding 59 0.007026
+3033 HADH hydroxyacyl-CoA dehydrogenase protein-coding 37 0.004406
+3034 HAL histidine ammonia-lyase protein-coding 73 0.008694
+3035 HARS histidyl-tRNA synthetase protein-coding 56 0.006669
+3036 HAS1 hyaluronan synthase 1 protein-coding 81 0.009646
+3037 HAS2 hyaluronan synthase 2 protein-coding 95 0.01131
+3038 HAS3 hyaluronan synthase 3 protein-coding 54 0.006431
+3039 HBA1 hemoglobin subunit alpha 1 protein-coding 4 0.0004764
+3040 HBA2 hemoglobin subunit alpha 2 protein-coding 11 0.00131
+3042 HBM hemoglobin subunit mu protein-coding 9 0.001072
+3043 HBB hemoglobin subunit beta protein-coding 30 0.003573
+3045 HBD hemoglobin subunit delta protein-coding 37 0.004406
+3046 HBE1 hemoglobin subunit epsilon 1 protein-coding 31 0.003692
+3047 HBG1 hemoglobin subunit gamma 1 protein-coding 16 0.001905
+3048 HBG2 hemoglobin subunit gamma 2 protein-coding 53 0.006312
+3049 HBQ1 hemoglobin subunit theta 1 protein-coding 6 0.0007145
+3050 HBZ hemoglobin subunit zeta protein-coding 6 0.0007145
+3052 HCCS holocytochrome c synthase protein-coding 39 0.004645
+3053 SERPIND1 serpin family D member 1 protein-coding 62 0.007384
+3054 HCFC1 host cell factor C1 protein-coding 194 0.0231
+3055 HCK HCK proto-oncogene, Src family tyrosine kinase protein-coding 89 0.0106
+3059 HCLS1 hematopoietic cell-specific Lyn substrate 1 protein-coding 86 0.01024
+3060 HCRT hypocretin neuropeptide precursor protein-coding 51 0.006074
+3061 HCRTR1 hypocretin receptor 1 protein-coding 48 0.005716
+3062 HCRTR2 hypocretin receptor 2 protein-coding 121 0.01441
+3064 HTT huntingtin protein-coding 255 0.03037
+3065 HDAC1 histone deacetylase 1 protein-coding 41 0.004883
+3066 HDAC2 histone deacetylase 2 protein-coding 60 0.007145
+3067 HDC histidine decarboxylase protein-coding 102 0.01215
+3068 HDGF heparin binding growth factor protein-coding 39 0.004645
+3069 HDLBP high density lipoprotein binding protein protein-coding 184 0.02191
+3070 HELLS helicase, lymphoid specific protein-coding 79 0.009408
+3071 NCKAP1L NCK associated protein 1 like protein-coding 170 0.02025
+3073 HEXA hexosaminidase subunit alpha protein-coding 51 0.006074
+3074 HEXB hexosaminidase subunit beta protein-coding 45 0.005359
+3075 CFH complement factor H protein-coding 290 0.03454
+3077 HFE homeostatic iron regulator protein-coding 45 0.005359
+3078 CFHR1 complement factor H related 1 protein-coding 54 0.006431
+3080 CFHR2 complement factor H related 2 protein-coding 74 0.008813
+3081 HGD homogentisate 1,2-dioxygenase protein-coding 64 0.007622
+3082 HGF hepatocyte growth factor protein-coding 191 0.02275
+3083 HGFAC HGF activator protein-coding 83 0.009884
+3084 NRG1 neuregulin 1 protein-coding 209 0.02489
+3087 HHEX hematopoietically expressed homeobox protein-coding 24 0.002858
+3090 HIC1 HIC ZBTB transcriptional repressor 1 protein-coding 27 0.003215
+3091 HIF1A hypoxia inducible factor 1 alpha subunit protein-coding 83 0.009884
+3092 HIP1 huntingtin interacting protein 1 protein-coding 116 0.01381
+3093 UBE2K ubiquitin conjugating enzyme E2 K protein-coding 30 0.003573
+3094 HINT1 histidine triad nucleotide binding protein 1 protein-coding 10 0.001191
+3096 HIVEP1 human immunodeficiency virus type I enhancer binding protein 1 protein-coding 240 0.02858
+3097 HIVEP2 human immunodeficiency virus type I enhancer binding protein 2 protein-coding 238 0.02834
+3098 HK1 hexokinase 1 protein-coding 110 0.0131
+3099 HK2 hexokinase 2 protein-coding 115 0.0137
+3101 HK3 hexokinase 3 protein-coding 138 0.01643
+3104 ZBTB48 zinc finger and BTB domain containing 48 protein-coding 56 0.006669
+3105 HLA-A major histocompatibility complex, class I, A protein-coding 93 0.01108
+3106 HLA-B major histocompatibility complex, class I, B protein-coding 113 0.01346
+3107 HLA-C major histocompatibility complex, class I, C protein-coding 45 0.005359
+3108 HLA-DMA major histocompatibility complex, class II, DM alpha protein-coding 23 0.002739
+3109 HLA-DMB major histocompatibility complex, class II, DM beta protein-coding 32 0.003811
+3110 MNX1 motor neuron and pancreas homeobox 1 protein-coding 38 0.004525
+3111 HLA-DOA major histocompatibility complex, class II, DO alpha protein-coding 22 0.00262
+3112 HLA-DOB major histocompatibility complex, class II, DO beta protein-coding 23 0.002739
+3113 HLA-DPA1 major histocompatibility complex, class II, DP alpha 1 protein-coding 30 0.003573
+3115 HLA-DPB1 major histocompatibility complex, class II, DP beta 1 protein-coding 29 0.003454
+3116 HLA-DPB2 major histocompatibility complex, class II, DP beta 2 (pseudogene) pseudo 1 0.0001191
+3117 HLA-DQA1 major histocompatibility complex, class II, DQ alpha 1 protein-coding 17 0.002025
+3118 HLA-DQA2 major histocompatibility complex, class II, DQ alpha 2 protein-coding 42 0.005002
+3119 HLA-DQB1 major histocompatibility complex, class II, DQ beta 1 protein-coding 20 0.002382
+3120 HLA-DQB2 major histocompatibility complex, class II, DQ beta 2 protein-coding 24 0.002858
+3122 HLA-DRA major histocompatibility complex, class II, DR alpha protein-coding 46 0.005478
+3123 HLA-DRB1 major histocompatibility complex, class II, DR beta 1 protein-coding 11 0.00131
+3127 HLA-DRB5 major histocompatibility complex, class II, DR beta 5 protein-coding 7 0.0008336
+3128 HLA-DRB6 major histocompatibility complex, class II, DR beta 6 (pseudogene) pseudo 2 0.0002382
+3131 HLF HLF, PAR bZIP transcription factor protein-coding 43 0.005121
+3133 HLA-E major histocompatibility complex, class I, E protein-coding 44 0.00524
+3134 HLA-F major histocompatibility complex, class I, F protein-coding 50 0.005955
+3135 HLA-G major histocompatibility complex, class I, G protein-coding 54 0.006431
+3140 MR1 major histocompatibility complex, class I-related protein-coding 52 0.006193
+3141 HLCS holocarboxylase synthetase protein-coding 75 0.008932
+3142 HLX H2.0 like homeobox protein-coding 88 0.01048
+3145 HMBS hydroxymethylbilane synthase protein-coding 41 0.004883
+3146 HMGB1 high mobility group box 1 protein-coding 27 0.003215
+3148 HMGB2 high mobility group box 2 protein-coding 39 0.004645
+3149 HMGB3 high mobility group box 3 protein-coding 32 0.003811
+3150 HMGN1 high mobility group nucleosome binding domain 1 protein-coding 16 0.001905
+3151 HMGN2 high mobility group nucleosomal binding domain 2 protein-coding 9 0.001072
+3155 HMGCL 3-hydroxymethyl-3-methylglutaryl-CoA lyase protein-coding 18 0.002144
+3156 HMGCR 3-hydroxy-3-methylglutaryl-CoA reductase protein-coding 77 0.00917
+3157 HMGCS1 3-hydroxy-3-methylglutaryl-CoA synthase 1 protein-coding 58 0.006907
+3158 HMGCS2 3-hydroxy-3-methylglutaryl-CoA synthase 2 protein-coding 79 0.009408
+3159 HMGA1 high mobility group AT-hook 1 protein-coding 7 0.0008336
+3161 HMMR hyaluronan mediated motility receptor protein-coding 88 0.01048
+3162 HMOX1 heme oxygenase 1 protein-coding 47 0.005597
+3163 HMOX2 heme oxygenase 2 protein-coding 24 0.002858
+3164 NR4A1 nuclear receptor subfamily 4 group A member 1 protein-coding 54 0.006431
+3166 HMX1 H6 family homeobox 1 protein-coding 5 0.0005955
+3167 HMX2 H6 family homeobox 2 protein-coding 41 0.004883
+3169 FOXA1 forkhead box A1 protein-coding 113 0.01346
+3170 FOXA2 forkhead box A2 protein-coding 78 0.009289
+3171 FOXA3 forkhead box A3 protein-coding 45 0.005359
+3172 HNF4A hepatocyte nuclear factor 4 alpha protein-coding 101 0.01203
+3174 HNF4G hepatocyte nuclear factor 4 gamma protein-coding 86 0.01024
+3175 ONECUT1 one cut homeobox 1 protein-coding 61 0.007264
+3176 HNMT histamine N-methyltransferase protein-coding 35 0.004168
+3177 SLC29A2 solute carrier family 29 member 2 protein-coding 51 0.006074
+3178 HNRNPA1 heterogeneous nuclear ribonucleoprotein A1 protein-coding 59 0.007026
+3181 HNRNPA2B1 heterogeneous nuclear ribonucleoprotein A2/B1 protein-coding 72 0.008574
+3182 HNRNPAB heterogeneous nuclear ribonucleoprotein A/B protein-coding 45 0.005359
+3183 HNRNPC heterogeneous nuclear ribonucleoprotein C (C1/C2) protein-coding 96 0.01143
+3184 HNRNPD heterogeneous nuclear ribonucleoprotein D protein-coding 59 0.007026
+3185 HNRNPF heterogeneous nuclear ribonucleoprotein F protein-coding 56 0.006669
+3187 HNRNPH1 heterogeneous nuclear ribonucleoprotein H1 protein-coding 59 0.007026
+3188 HNRNPH2 heterogeneous nuclear ribonucleoprotein H2 protein-coding 67 0.007979
+3189 HNRNPH3 heterogeneous nuclear ribonucleoprotein H3 protein-coding 43 0.005121
+3190 HNRNPK heterogeneous nuclear ribonucleoprotein K protein-coding 73 0.008694
+3191 HNRNPL heterogeneous nuclear ribonucleoprotein L protein-coding 59 0.007026
+3192 HNRNPU heterogeneous nuclear ribonucleoprotein U protein-coding 81 0.009646
+3195 TLX1 T cell leukemia homeobox 1 protein-coding 27 0.003215
+3196 TLX2 T cell leukemia homeobox 2 protein-coding 24 0.002858
+3198 HOXA1 homeobox A1 protein-coding 82 0.009765
+3199 HOXA2 homeobox A2 protein-coding 69 0.008217
+3200 HOXA3 homeobox A3 protein-coding 93 0.01108
+3201 HOXA4 homeobox A4 protein-coding 36 0.004287
+3202 HOXA5 homeobox A5 protein-coding 39 0.004645
+3203 HOXA6 homeobox A6 protein-coding 46 0.005478
+3204 HOXA7 homeobox A7 protein-coding 52 0.006193
+3205 HOXA9 homeobox A9 protein-coding 43 0.005121
+3206 HOXA10 homeobox A10 protein-coding 35 0.004168
+3207 HOXA11 homeobox A11 protein-coding 37 0.004406
+3208 HPCA hippocalcin protein-coding 17 0.002025
+3209 HOXA13 homeobox A13 protein-coding 39 0.004645
+3211 HOXB1 homeobox B1 protein-coding 52 0.006193
+3212 HOXB2 homeobox B2 protein-coding 46 0.005478
+3213 HOXB3 homeobox B3 protein-coding 74 0.008813
+3214 HOXB4 homeobox B4 protein-coding 33 0.00393
+3215 HOXB5 homeobox B5 protein-coding 40 0.004764
+3216 HOXB6 homeobox B6 protein-coding 29 0.003454
+3217 HOXB7 homeobox B7 protein-coding 23 0.002739
+3218 HOXB8 homeobox B8 protein-coding 31 0.003692
+3219 HOXB9 homeobox B9 protein-coding 27 0.003215
+3221 HOXC4 homeobox C4 protein-coding 37 0.004406
+3222 HOXC5 homeobox C5 protein-coding 24 0.002858
+3223 HOXC6 homeobox C6 protein-coding 47 0.005597
+3224 HOXC8 homeobox C8 protein-coding 31 0.003692
+3225 HOXC9 homeobox C9 protein-coding 29 0.003454
+3226 HOXC10 homeobox C10 protein-coding 58 0.006907
+3227 HOXC11 homeobox C11 protein-coding 32 0.003811
+3228 HOXC12 homeobox C12 protein-coding 23 0.002739
+3229 HOXC13 homeobox C13 protein-coding 45 0.005359
+3231 HOXD1 homeobox D1 protein-coding 36 0.004287
+3232 HOXD3 homeobox D3 protein-coding 67 0.007979
+3233 HOXD4 homeobox D4 protein-coding 56 0.006669
+3234 HOXD8 homeobox D8 protein-coding 45 0.005359
+3235 HOXD9 homeobox D9 protein-coding 45 0.005359
+3236 HOXD10 homeobox D10 protein-coding 69 0.008217
+3237 HOXD11 homeobox D11 protein-coding 28 0.003335
+3238 HOXD12 homeobox D12 protein-coding 39 0.004645
+3239 HOXD13 homeobox D13 protein-coding 44 0.00524
+3240 HP haptoglobin protein-coding 47 0.005597
+3241 HPCAL1 hippocalcin like 1 protein-coding 24 0.002858
+3242 HPD 4-hydroxyphenylpyruvate dioxygenase protein-coding 58 0.006907
+3248 HPGD 15-hydroxyprostaglandin dehydrogenase protein-coding 39 0.004645
+3249 HPN hepsin protein-coding 50 0.005955
+3250 HPR haptoglobin-related protein protein-coding 53 0.006312
+3251 HPRT1 hypoxanthine phosphoribosyltransferase 1 protein-coding 22 0.00262
+3257 HPS1 HPS1, biogenesis of lysosomal organelles complex 3 subunit 1 protein-coding 79 0.009408
+3263 HPX hemopexin protein-coding 61 0.007264
+3265 HRAS HRas proto-oncogene, GTPase protein-coding 129 0.01536
+3266 ERAS ES cell expressed Ras protein-coding 32 0.003811
+3267 AGFG1 ArfGAP with FG repeats 1 protein-coding 56 0.006669
+3268 AGFG2 ArfGAP with FG repeats 2 protein-coding 46 0.005478
+3269 HRH1 histamine receptor H1 protein-coding 62 0.007384
+3270 HRC histidine rich calcium binding protein protein-coding 81 0.009646
+3273 HRG histidine rich glycoprotein protein-coding 88 0.01048
+3274 HRH2 histamine receptor H2 protein-coding 72 0.008574
+3275 PRMT2 protein arginine methyltransferase 2 protein-coding 53 0.006312
+3276 PRMT1 protein arginine methyltransferase 1 protein-coding 49 0.005835
+3280 HES1 hes family bHLH transcription factor 1 protein-coding 34 0.004049
+3281 HSBP1 heat shock factor binding protein 1 protein-coding 6 0.0007145
+3283 HSD3B1 hydroxy-delta-5-steroid dehydrogenase, 3 beta- and steroid delta-isomerase 1 protein-coding 54 0.006431
+3284 HSD3B2 hydroxy-delta-5-steroid dehydrogenase, 3 beta- and steroid delta-isomerase 2 protein-coding 53 0.006312
+3290 HSD11B1 hydroxysteroid 11-beta dehydrogenase 1 protein-coding 52 0.006193
+3291 HSD11B2 hydroxysteroid 11-beta dehydrogenase 2 protein-coding 24 0.002858
+3292 HSD17B1 hydroxysteroid 17-beta dehydrogenase 1 protein-coding 28 0.003335
+3293 HSD17B3 hydroxysteroid 17-beta dehydrogenase 3 protein-coding 32 0.003811
+3294 HSD17B2 hydroxysteroid 17-beta dehydrogenase 2 protein-coding 45 0.005359
+3295 HSD17B4 hydroxysteroid 17-beta dehydrogenase 4 protein-coding 109 0.01298
+3297 HSF1 heat shock transcription factor 1 protein-coding 53 0.006312
+3298 HSF2 heat shock transcription factor 2 protein-coding 55 0.00655
+3299 HSF4 heat shock transcription factor 4 protein-coding 48 0.005716
+3300 DNAJB2 DnaJ heat shock protein family (Hsp40) member B2 protein-coding 47 0.005597
+3301 DNAJA1 DnaJ heat shock protein family (Hsp40) member A1 protein-coding 47 0.005597
+3303 HSPA1A heat shock protein family A (Hsp70) member 1A protein-coding 24 0.002858
+3304 HSPA1B heat shock protein family A (Hsp70) member 1B protein-coding 18 0.002144
+3305 HSPA1L heat shock protein family A (Hsp70) member 1 like protein-coding 93 0.01108
+3306 HSPA2 heat shock protein family A (Hsp70) member 2 protein-coding 85 0.01012
+3308 HSPA4 heat shock protein family A (Hsp70) member 4 protein-coding 83 0.009884
+3309 HSPA5 heat shock protein family A (Hsp70) member 5 protein-coding 58 0.006907
+3310 HSPA6 heat shock protein family A (Hsp70) member 6 protein-coding 96 0.01143
+3312 HSPA8 heat shock protein family A (Hsp70) member 8 protein-coding 107 0.01274
+3313 HSPA9 heat shock protein family A (Hsp70) member 9 protein-coding 58 0.006907
+3315 HSPB1 heat shock protein family B (small) member 1 protein-coding 11 0.00131
+3316 HSPB2 heat shock protein family B (small) member 2 protein-coding 23 0.002739
+3320 HSP90AA1 heat shock protein 90 alpha family class A member 1 protein-coding 105 0.0125
+3321 IGSF3 immunoglobulin superfamily member 3 protein-coding 132 0.01572
+3326 HSP90AB1 heat shock protein 90 alpha family class B member 1 protein-coding 116 0.01381
+3329 HSPD1 heat shock protein family D (Hsp60) member 1 protein-coding 69 0.008217
+3336 HSPE1 heat shock protein family E (Hsp10) member 1 protein-coding 4 0.0004764
+3337 DNAJB1 DnaJ heat shock protein family (Hsp40) member B1 protein-coding 32 0.003811
+3338 DNAJC4 DnaJ heat shock protein family (Hsp40) member C4 protein-coding 23 0.002739
+3339 HSPG2 heparan sulfate proteoglycan 2 protein-coding 328 0.03906
+3340 NDST1 N-deacetylase and N-sulfotransferase 1 protein-coding 92 0.01096
+3344 FOXN2 forkhead box N2 protein-coding 63 0.007503
+3346 HTN1 histatin 1 protein-coding 15 0.001786
+3347 HTN3 histatin 3 protein-coding 7 0.0008336
+3350 HTR1A 5-hydroxytryptamine receptor 1A protein-coding 134 0.01596
+3351 HTR1B 5-hydroxytryptamine receptor 1B protein-coding 84 0.01
+3352 HTR1D 5-hydroxytryptamine receptor 1D protein-coding 51 0.006074
+3354 HTR1E 5-hydroxytryptamine receptor 1E protein-coding 108 0.01286
+3355 HTR1F 5-hydroxytryptamine receptor 1F protein-coding 81 0.009646
+3356 HTR2A 5-hydroxytryptamine receptor 2A protein-coding 88 0.01048
+3357 HTR2B 5-hydroxytryptamine receptor 2B protein-coding 44 0.00524
+3358 HTR2C 5-hydroxytryptamine receptor 2C protein-coding 105 0.0125
+3359 HTR3A 5-hydroxytryptamine receptor 3A protein-coding 103 0.01227
+3360 HTR4 5-hydroxytryptamine receptor 4 protein-coding 70 0.008336
+3361 HTR5A 5-hydroxytryptamine receptor 5A protein-coding 106 0.01262
+3362 HTR6 5-hydroxytryptamine receptor 6 protein-coding 59 0.007026
+3363 HTR7 5-hydroxytryptamine receptor 7 protein-coding 80 0.009527
+3364 HUS1 HUS1 checkpoint clamp component protein-coding 33 0.00393
+3371 TNC tenascin C protein-coding 238 0.02834
+3373 HYAL1 hyaluronoglucosaminidase 1 protein-coding 39 0.004645
+3375 IAPP islet amyloid polypeptide protein-coding 34 0.004049
+3376 IARS isoleucyl-tRNA synthetase protein-coding 105 0.0125
+3381 IBSP integrin binding sialoprotein protein-coding 68 0.008098
+3382 ICA1 islet cell autoantigen 1 protein-coding 63 0.007503
+3383 ICAM1 intercellular adhesion molecule 1 protein-coding 49 0.005835
+3384 ICAM2 intercellular adhesion molecule 2 protein-coding 37 0.004406
+3385 ICAM3 intercellular adhesion molecule 3 protein-coding 49 0.005835
+3386 ICAM4 intercellular adhesion molecule 4 (Landsteiner-Wiener blood group) protein-coding 23 0.002739
+3394 IRF8 interferon regulatory factor 8 protein-coding 72 0.008574
+3396 MRPL58 mitochondrial ribosomal protein L58 protein-coding 32 0.003811
+3397 ID1 inhibitor of DNA binding 1, HLH protein protein-coding 17 0.002025
+3398 ID2 inhibitor of DNA binding 2 protein-coding 12 0.001429
+3399 ID3 inhibitor of DNA binding 3, HLH protein protein-coding 16 0.001905
+3400 ID4 inhibitor of DNA binding 4, HLH protein protein-coding 10 0.001191
+3416 IDE insulin degrading enzyme protein-coding 103 0.01227
+3417 IDH1 isocitrate dehydrogenase (NADP(+)) 1, cytosolic protein-coding 492 0.05859
+3418 IDH2 isocitrate dehydrogenase (NADP(+)) 2, mitochondrial protein-coding 68 0.008098
+3419 IDH3A isocitrate dehydrogenase 3 (NAD(+)) alpha protein-coding 35 0.004168
+3420 IDH3B isocitrate dehydrogenase 3 (NAD(+)) beta protein-coding 30 0.003573
+3421 IDH3G isocitrate dehydrogenase 3 (NAD(+)) gamma protein-coding 52 0.006193
+3422 IDI1 isopentenyl-diphosphate delta isomerase 1 protein-coding 35 0.004168
+3423 IDS iduronate 2-sulfatase protein-coding 88 0.01048
+3425 IDUA iduronidase, alpha-L- protein-coding 38 0.004525
+3426 CFI complement factor I protein-coding 82 0.009765
+3428 IFI16 interferon gamma inducible protein 16 protein-coding 131 0.0156
+3429 IFI27 interferon alpha inducible protein 27 protein-coding 13 0.001548
+3430 IFI35 interferon induced protein 35 protein-coding 37 0.004406
+3431 SP110 SP110 nuclear body protein protein-coding 73 0.008694
+3433 IFIT2 interferon induced protein with tetratricopeptide repeats 2 protein-coding 65 0.007741
+3434 IFIT1 interferon induced protein with tetratricopeptide repeats 1 protein-coding 48 0.005716
+3437 IFIT3 interferon induced protein with tetratricopeptide repeats 3 protein-coding 51 0.006074
+3439 IFNA1 interferon alpha 1 protein-coding 23 0.002739
+3440 IFNA2 interferon alpha 2 protein-coding 33 0.00393
+3441 IFNA4 interferon alpha 4 protein-coding 33 0.00393
+3442 IFNA5 interferon alpha 5 protein-coding 32 0.003811
+3443 IFNA6 interferon alpha 6 protein-coding 25 0.002977
+3444 IFNA7 interferon alpha 7 protein-coding 31 0.003692
+3445 IFNA8 interferon alpha 8 protein-coding 41 0.004883
+3446 IFNA10 interferon alpha 10 protein-coding 34 0.004049
+3447 IFNA13 interferon alpha 13 protein-coding 34 0.004049
+3448 IFNA14 interferon alpha 14 protein-coding 27 0.003215
+3449 IFNA16 interferon alpha 16 protein-coding 49 0.005835
+3451 IFNA17 interferon alpha 17 protein-coding 35 0.004168
+3452 IFNA21 interferon alpha 21 protein-coding 25 0.002977
+3454 IFNAR1 interferon alpha and beta receptor subunit 1 protein-coding 63 0.007503
+3455 IFNAR2 interferon alpha and beta receptor subunit 2 protein-coding 50 0.005955
+3456 IFNB1 interferon beta 1 protein-coding 32 0.003811
+3458 IFNG interferon gamma protein-coding 43 0.005121
+3459 IFNGR1 interferon gamma receptor 1 protein-coding 68 0.008098
+3460 IFNGR2 interferon gamma receptor 2 protein-coding 40 0.004764
+3467 IFNW1 interferon omega 1 protein-coding 29 0.003454
+3475 IFRD1 interferon related developmental regulator 1 protein-coding 77 0.00917
+3476 IGBP1 immunoglobulin binding protein 1 protein-coding 41 0.004883
+3479 IGF1 insulin like growth factor 1 protein-coding 41 0.004883
+3480 IGF1R insulin like growth factor 1 receptor protein-coding 149 0.01774
+3481 IGF2 insulin like growth factor 2 protein-coding 45 0.005359
+3482 IGF2R insulin like growth factor 2 receptor protein-coding 273 0.03251
+3483 IGFALS insulin like growth factor binding protein acid labile subunit protein-coding 51 0.006074
+3484 IGFBP1 insulin like growth factor binding protein 1 protein-coding 46 0.005478
+3485 IGFBP2 insulin like growth factor binding protein 2 protein-coding 30 0.003573
+3486 IGFBP3 insulin like growth factor binding protein 3 protein-coding 37 0.004406
+3487 IGFBP4 insulin like growth factor binding protein 4 protein-coding 24 0.002858
+3488 IGFBP5 insulin like growth factor binding protein 5 protein-coding 28 0.003335
+3489 IGFBP6 insulin like growth factor binding protein 6 protein-coding 17 0.002025
+3490 IGFBP7 insulin like growth factor binding protein 7 protein-coding 25 0.002977
+3491 CYR61 cysteine rich angiogenic inducer 61 protein-coding 35 0.004168
+3493 IGHA1 immunoglobulin heavy constant alpha 1 other 87 0.01036
+3494 IGHA2 immunoglobulin heavy constant alpha 2 (A2m marker) other 50 0.005955
+3495 IGHD immunoglobulin heavy constant delta other 56 0.006669
+3497 IGHE immunoglobulin heavy constant epsilon other 21 0.002501
+3500 IGHG1 immunoglobulin heavy constant gamma 1 (G1m marker) other 89 0.0106
+3501 IGHG2 immunoglobulin heavy constant gamma 2 (G2m marker) other 72 0.008574
+3502 IGHG3 immunoglobulin heavy constant gamma 3 (G3m marker) other 70 0.008336
+3503 IGHG4 immunoglobulin heavy constant gamma 4 (G4m marker) other 83 0.009884
+3507 IGHM immunoglobulin heavy constant mu other 95 0.01131
+3508 IGHMBP2 immunoglobulin mu binding protein 2 protein-coding 108 0.01286
+3512 JCHAIN joining chain of multimeric IgA and IgM protein-coding 32 0.003811
+3514 IGKC immunoglobulin kappa constant other 17 0.002025
+3516 RBPJ recombination signal binding protein for immunoglobulin kappa J region protein-coding 59 0.007026
+3538 IGLC2 immunoglobulin lambda constant 2 other 14 0.001667
+3539 IGLC3 immunoglobulin lambda constant 3 (Kern-Oz+ marker) other 27 0.003215
+3543 IGLL1 immunoglobulin lambda like polypeptide 1 protein-coding 28 0.003335
+3547 IGSF1 immunoglobulin superfamily member 1 protein-coding 234 0.02787
+3549 IHH indian hedgehog protein-coding 47 0.005597
+3550 IK IK cytokine protein-coding 52 0.006193
+3551 IKBKB inhibitor of nuclear factor kappa B kinase subunit beta protein-coding 104 0.01239
+3552 IL1A interleukin 1 alpha protein-coding 23 0.002739
+3553 IL1B interleukin 1 beta protein-coding 37 0.004406
+3554 IL1R1 interleukin 1 receptor type 1 protein-coding 55 0.00655
+3556 IL1RAP interleukin 1 receptor accessory protein protein-coding 72 0.008574
+3557 IL1RN interleukin 1 receptor antagonist protein-coding 16 0.001905
+3558 IL2 interleukin 2 protein-coding 16 0.001905
+3559 IL2RA interleukin 2 receptor subunit alpha protein-coding 33 0.00393
+3560 IL2RB interleukin 2 receptor subunit beta protein-coding 59 0.007026
+3561 IL2RG interleukin 2 receptor subunit gamma protein-coding 59 0.007026
+3562 IL3 interleukin 3 protein-coding 21 0.002501
+3563 IL3RA interleukin 3 receptor subunit alpha protein-coding 80 0.009527
+3565 IL4 interleukin 4 protein-coding 20 0.002382
+3566 IL4R interleukin 4 receptor protein-coding 100 0.01191
+3567 IL5 interleukin 5 protein-coding 15 0.001786
+3568 IL5RA interleukin 5 receptor subunit alpha protein-coding 86 0.01024
+3569 IL6 interleukin 6 protein-coding 37 0.004406
+3570 IL6R interleukin 6 receptor protein-coding 44 0.00524
+3572 IL6ST interleukin 6 signal transducer protein-coding 108 0.01286
+3574 IL7 interleukin 7 protein-coding 24 0.002858
+3575 IL7R interleukin 7 receptor protein-coding 129 0.01536
+3576 CXCL8 C-X-C motif chemokine ligand 8 protein-coding 21 0.002501
+3577 CXCR1 C-X-C motif chemokine receptor 1 protein-coding 54 0.006431
+3578 IL9 interleukin 9 protein-coding 15 0.001786
+3579 CXCR2 C-X-C motif chemokine receptor 2 protein-coding 55 0.00655
+3580 CXCR2P1 C-X-C motif chemokine receptor 2 pseudogene 1 pseudo 79 0.009408
+3581 IL9R interleukin 9 receptor protein-coding 87 0.01036
+3586 IL10 interleukin 10 protein-coding 24 0.002858
+3587 IL10RA interleukin 10 receptor subunit alpha protein-coding 66 0.00786
+3588 IL10RB interleukin 10 receptor subunit beta protein-coding 44 0.00524
+3589 IL11 interleukin 11 protein-coding 15 0.001786
+3590 IL11RA interleukin 11 receptor subunit alpha protein-coding 39 0.004645
+3592 IL12A interleukin 12A protein-coding 34 0.004049
+3593 IL12B interleukin 12B protein-coding 42 0.005002
+3594 IL12RB1 interleukin 12 receptor subunit beta 1 protein-coding 73 0.008694
+3595 IL12RB2 interleukin 12 receptor subunit beta 2 protein-coding 108 0.01286
+3596 IL13 interleukin 13 protein-coding 16 0.001905
+3597 IL13RA1 interleukin 13 receptor subunit alpha 1 protein-coding 58 0.006907
+3598 IL13RA2 interleukin 13 receptor subunit alpha 2 protein-coding 58 0.006907
+3600 IL15 interleukin 15 protein-coding 27 0.003215
+3601 IL15RA interleukin 15 receptor subunit alpha protein-coding 25 0.002977
+3603 IL16 interleukin 16 protein-coding 161 0.01917
+3604 TNFRSF9 TNF receptor superfamily member 9 protein-coding 45 0.005359
+3605 IL17A interleukin 17A protein-coding 30 0.003573
+3606 IL18 interleukin 18 protein-coding 17 0.002025
+3607 FOXK2 forkhead box K2 protein-coding 52 0.006193
+3608 ILF2 interleukin enhancer binding factor 2 protein-coding 45 0.005359
+3609 ILF3 interleukin enhancer binding factor 3 protein-coding 139 0.01655
+3611 ILK integrin linked kinase protein-coding 53 0.006312
+3612 IMPA1 inositol monophosphatase 1 protein-coding 48 0.005716
+3613 IMPA2 inositol monophosphatase 2 protein-coding 35 0.004168
+3614 IMPDH1 inosine monophosphate dehydrogenase 1 protein-coding 68 0.008098
+3615 IMPDH2 inosine monophosphate dehydrogenase 2 protein-coding 56 0.006669
+3617 IMPG1 interphotoreceptor matrix proteoglycan 1 protein-coding 168 0.02001
+3619 INCENP inner centromere protein protein-coding 92 0.01096
+3620 IDO1 indoleamine 2,3-dioxygenase 1 protein-coding 62 0.007384
+3621 ING1 inhibitor of growth family member 1 protein-coding 72 0.008574
+3622 ING2 inhibitor of growth family member 2 protein-coding 32 0.003811
+3623 INHA inhibin alpha subunit protein-coding 48 0.005716
+3624 INHBA inhibin beta A subunit protein-coding 121 0.01441
+3625 INHBB inhibin beta B subunit protein-coding 40 0.004764
+3626 INHBC inhibin beta C subunit protein-coding 38 0.004525
+3627 CXCL10 C-X-C motif chemokine ligand 10 protein-coding 194 0.0231
+3628 INPP1 inositol polyphosphate-1-phosphatase protein-coding 37 0.004406
+3630 INS insulin protein-coding 6 0.0007145
+3631 INPP4A inositol polyphosphate-4-phosphatase type I A protein-coding 103 0.01227
+3632 INPP5A inositol polyphosphate-5-phosphatase A protein-coding 59 0.007026
+3633 INPP5B inositol polyphosphate-5-phosphatase B protein-coding 89 0.0106
+3635 INPP5D inositol polyphosphate-5-phosphatase D protein-coding 131 0.0156
+3636 INPPL1 inositol polyphosphate phosphatase like 1 protein-coding 181 0.02156
+3638 INSIG1 insulin induced gene 1 protein-coding 29 0.003454
+3640 INSL3 insulin like 3 protein-coding 171 0.02036
+3641 INSL4 insulin like 4 protein-coding 24 0.002858
+3642 INSM1 INSM transcriptional repressor 1 protein-coding 25 0.002977
+3643 INSR insulin receptor protein-coding 154 0.01834
+3645 INSRR insulin receptor related receptor protein-coding 201 0.02394
+3646 EIF3E eukaryotic translation initiation factor 3 subunit E protein-coding 74 0.008813
+3651 PDX1 pancreatic and duodenal homeobox 1 protein-coding 25 0.002977
+3652 IPP intracisternal A particle-promoted polypeptide protein-coding 65 0.007741
+3654 IRAK1 interleukin 1 receptor associated kinase 1 protein-coding 68 0.008098
+3655 ITGA6 integrin subunit alpha 6 protein-coding 113 0.01346
+3656 IRAK2 interleukin 1 receptor associated kinase 2 protein-coding 64 0.007622
+3658 IREB2 iron responsive element binding protein 2 protein-coding 118 0.01405
+3659 IRF1 interferon regulatory factor 1 protein-coding 47 0.005597
+3660 IRF2 interferon regulatory factor 2 protein-coding 87 0.01036
+3661 IRF3 interferon regulatory factor 3 protein-coding 40 0.004764
+3662 IRF4 interferon regulatory factor 4 protein-coding 136 0.0162
+3663 IRF5 interferon regulatory factor 5 protein-coding 51 0.006074
+3664 IRF6 interferon regulatory factor 6 protein-coding 92 0.01096
+3665 IRF7 interferon regulatory factor 7 protein-coding 38 0.004525
+3667 IRS1 insulin receptor substrate 1 protein-coding 148 0.01763
+3669 ISG20 interferon stimulated exonuclease gene 20 protein-coding 24 0.002858
+3670 ISL1 ISL LIM homeobox 1 protein-coding 79 0.009408
+3671 ISLR immunoglobulin superfamily containing leucine rich repeat protein-coding 69 0.008217
+3672 ITGA1 integrin subunit alpha 1 protein-coding 125 0.01489
+3673 ITGA2 integrin subunit alpha 2 protein-coding 128 0.01524
+3674 ITGA2B integrin subunit alpha 2b protein-coding 102 0.01215
+3675 ITGA3 integrin subunit alpha 3 protein-coding 101 0.01203
+3676 ITGA4 integrin subunit alpha 4 protein-coding 179 0.02132
+3678 ITGA5 integrin subunit alpha 5 protein-coding 95 0.01131
+3679 ITGA7 integrin subunit alpha 7 protein-coding 142 0.01691
+3680 ITGA9 integrin subunit alpha 9 protein-coding 107 0.01274
+3681 ITGAD integrin subunit alpha D protein-coding 173 0.0206
+3682 ITGAE integrin subunit alpha E protein-coding 129 0.01536
+3683 ITGAL integrin subunit alpha L protein-coding 178 0.0212
+3684 ITGAM integrin subunit alpha M protein-coding 161 0.01917
+3685 ITGAV integrin subunit alpha V protein-coding 124 0.01477
+3687 ITGAX integrin subunit alpha X protein-coding 189 0.02251
+3688 ITGB1 integrin subunit beta 1 protein-coding 79 0.009408
+3689 ITGB2 integrin subunit beta 2 protein-coding 106 0.01262
+3690 ITGB3 integrin subunit beta 3 protein-coding 103 0.01227
+3691 ITGB4 integrin subunit beta 4 protein-coding 183 0.02179
+3692 EIF6 eukaryotic translation initiation factor 6 protein-coding 164 0.01953
+3693 ITGB5 integrin subunit beta 5 protein-coding 74 0.008813
+3694 ITGB6 integrin subunit beta 6 protein-coding 97 0.01155
+3695 ITGB7 integrin subunit beta 7 protein-coding 52 0.006193
+3696 ITGB8 integrin subunit beta 8 protein-coding 107 0.01274
+3697 ITIH1 inter-alpha-trypsin inhibitor heavy chain 1 protein-coding 125 0.01489
+3698 ITIH2 inter-alpha-trypsin inhibitor heavy chain 2 protein-coding 157 0.0187
+3699 ITIH3 inter-alpha-trypsin inhibitor heavy chain 3 protein-coding 85 0.01012
+3700 ITIH4 inter-alpha-trypsin inhibitor heavy chain family member 4 protein-coding 94 0.01119
+3702 ITK IL2 inducible T cell kinase protein-coding 111 0.01322
+3703 STT3A STT3A, catalytic subunit of the oligosaccharyltransferase complex protein-coding 77 0.00917
+3704 ITPA inosine triphosphatase protein-coding 16 0.001905
+3705 ITPK1 inositol-tetrakisphosphate 1-kinase protein-coding 56 0.006669
+3706 ITPKA inositol-trisphosphate 3-kinase A protein-coding 26 0.003096
+3707 ITPKB inositol-trisphosphate 3-kinase B protein-coding 106 0.01262
+3708 ITPR1 inositol 1,4,5-trisphosphate receptor type 1 protein-coding 253 0.03013
+3709 ITPR2 inositol 1,4,5-trisphosphate receptor type 2 protein-coding 303 0.03608
+3710 ITPR3 inositol 1,4,5-trisphosphate receptor type 3 protein-coding 245 0.02918
+3712 IVD isovaleryl-CoA dehydrogenase protein-coding 35 0.004168
+3713 IVL involucrin protein-coding 97 0.01155
+3714 JAG2 jagged 2 protein-coding 114 0.01358
+3716 JAK1 Janus kinase 1 protein-coding 163 0.01941
+3717 JAK2 Janus kinase 2 protein-coding 122 0.01453
+3718 JAK3 Janus kinase 3 protein-coding 140 0.01667
+3720 JARID2 jumonji and AT-rich interaction domain containing 2 protein-coding 175 0.02084
+3725 JUN Jun proto-oncogene, AP-1 transcription factor subunit protein-coding 36 0.004287
+3726 JUNB JunB proto-oncogene, AP-1 transcription factor subunit protein-coding 27 0.003215
+3727 JUND JunD proto-oncogene, AP-1 transcription factor subunit protein-coding 18 0.002144
+3728 JUP junction plakoglobin protein-coding 95 0.01131
+3730 ANOS1 anosmin 1 protein-coding 111 0.01322
+3732 CD82 CD82 molecule protein-coding 37 0.004406
+3735 KARS lysyl-tRNA synthetase protein-coding 73 0.008694
+3736 KCNA1 potassium voltage-gated channel subfamily A member 1 protein-coding 137 0.01632
+3737 KCNA2 potassium voltage-gated channel subfamily A member 2 protein-coding 79 0.009408
+3738 KCNA3 potassium voltage-gated channel subfamily A member 3 protein-coding 100 0.01191
+3739 KCNA4 potassium voltage-gated channel subfamily A member 4 protein-coding 280 0.03335
+3741 KCNA5 potassium voltage-gated channel subfamily A member 5 protein-coding 281 0.03346
+3742 KCNA6 potassium voltage-gated channel subfamily A member 6 protein-coding 137 0.01632
+3743 KCNA7 potassium voltage-gated channel subfamily A member 7 protein-coding 44 0.00524
+3744 KCNA10 potassium voltage-gated channel subfamily A member 10 protein-coding 82 0.009765
+3745 KCNB1 potassium voltage-gated channel subfamily B member 1 protein-coding 150 0.01786
+3746 KCNC1 potassium voltage-gated channel subfamily C member 1 protein-coding 89 0.0106
+3747 KCNC2 potassium voltage-gated channel subfamily C member 2 protein-coding 135 0.01608
+3748 KCNC3 potassium voltage-gated channel subfamily C member 3 protein-coding 61 0.007264
+3749 KCNC4 potassium voltage-gated channel subfamily C member 4 protein-coding 94 0.01119
+3750 KCND1 potassium voltage-gated channel subfamily D member 1 protein-coding 76 0.009051
+3751 KCND2 potassium voltage-gated channel subfamily D member 2 protein-coding 170 0.02025
+3752 KCND3 potassium voltage-gated channel subfamily D member 3 protein-coding 109 0.01298
+3753 KCNE1 potassium voltage-gated channel subfamily E regulatory subunit 1 protein-coding 29 0.003454
+3754 KCNF1 potassium voltage-gated channel modifier subfamily F member 1 protein-coding 95 0.01131
+3755 KCNG1 potassium voltage-gated channel modifier subfamily G member 1 protein-coding 98 0.01167
+3756 KCNH1 potassium voltage-gated channel subfamily H member 1 protein-coding 207 0.02465
+3757 KCNH2 potassium voltage-gated channel subfamily H member 2 protein-coding 132 0.01572
+3758 KCNJ1 potassium voltage-gated channel subfamily J member 1 protein-coding 69 0.008217
+3759 KCNJ2 potassium voltage-gated channel subfamily J member 2 protein-coding 92 0.01096
+3760 KCNJ3 potassium voltage-gated channel subfamily J member 3 protein-coding 166 0.01977
+3761 KCNJ4 potassium voltage-gated channel subfamily J member 4 protein-coding 89 0.0106
+3762 KCNJ5 potassium voltage-gated channel subfamily J member 5 protein-coding 66 0.00786
+3763 KCNJ6 potassium voltage-gated channel subfamily J member 6 protein-coding 73 0.008694
+3764 KCNJ8 potassium voltage-gated channel subfamily J member 8 protein-coding 87 0.01036
+3765 KCNJ9 potassium voltage-gated channel subfamily J member 9 protein-coding 40 0.004764
+3766 KCNJ10 potassium voltage-gated channel subfamily J member 10 protein-coding 63 0.007503
+3767 KCNJ11 potassium voltage-gated channel subfamily J member 11 protein-coding 41 0.004883
+3768 KCNJ12 potassium voltage-gated channel subfamily J member 12 protein-coding 162 0.01929
+3769 KCNJ13 potassium voltage-gated channel subfamily J member 13 protein-coding 47 0.005597
+3770 KCNJ14 potassium voltage-gated channel subfamily J member 14 protein-coding 51 0.006074
+3772 KCNJ15 potassium voltage-gated channel subfamily J member 15 protein-coding 63 0.007503
+3773 KCNJ16 potassium voltage-gated channel subfamily J member 16 protein-coding 92 0.01096
+3775 KCNK1 potassium two pore domain channel subfamily K member 1 protein-coding 50 0.005955
+3776 KCNK2 potassium two pore domain channel subfamily K member 2 protein-coding 94 0.01119
+3777 KCNK3 potassium two pore domain channel subfamily K member 3 protein-coding 42 0.005002
+3778 KCNMA1 potassium calcium-activated channel subfamily M alpha 1 protein-coding 168 0.02001
+3779 KCNMB1 potassium calcium-activated channel subfamily M regulatory beta subunit 1 protein-coding 30 0.003573
+3780 KCNN1 potassium calcium-activated channel subfamily N member 1 protein-coding 71 0.008455
+3781 KCNN2 potassium calcium-activated channel subfamily N member 2 protein-coding 115 0.0137
+3782 KCNN3 potassium calcium-activated channel subfamily N member 3 protein-coding 92 0.01096
+3783 KCNN4 potassium calcium-activated channel subfamily N member 4 protein-coding 102 0.01215
+3784 KCNQ1 potassium voltage-gated channel subfamily Q member 1 protein-coding 69 0.008217
+3785 KCNQ2 potassium voltage-gated channel subfamily Q member 2 protein-coding 169 0.02013
+3786 KCNQ3 potassium voltage-gated channel subfamily Q member 3 protein-coding 182 0.02167
+3787 KCNS1 potassium voltage-gated channel modifier subfamily S member 1 protein-coding 48 0.005716
+3788 KCNS2 potassium voltage-gated channel modifier subfamily S member 2 protein-coding 112 0.01334
+3790 KCNS3 potassium voltage-gated channel modifier subfamily S member 3 protein-coding 90 0.01072
+3791 KDR kinase insert domain receptor protein-coding 244 0.02906
+3792 KEL Kell blood group, metallo-endopeptidase protein-coding 156 0.01858
+3795 KHK ketohexokinase protein-coding 43 0.005121
+3796 KIF2A kinesin family member 2A protein-coding 173 0.0206
+3797 KIF3C kinesin family member 3C protein-coding 92 0.01096
+3798 KIF5A kinesin family member 5A protein-coding 147 0.01751
+3799 KIF5B kinesin family member 5B protein-coding 112 0.01334
+3800 KIF5C kinesin family member 5C protein-coding 141 0.01679
+3801 KIFC3 kinesin family member C3 protein-coding 71 0.008455
+3802 KIR2DL1 killer cell immunoglobulin like receptor, two Ig domains and long cytoplasmic tail 1 protein-coding 75 0.008932
+3804 KIR2DL3 killer cell immunoglobulin like receptor, two Ig domains and long cytoplasmic tail 3 protein-coding 51 0.006074
+3805 KIR2DL4 killer cell immunoglobulin like receptor, two Ig domains and long cytoplasmic tail 4 protein-coding 31 0.003692
+3809 KIR2DS4 killer cell immunoglobulin like receptor, two Ig domains and short cytoplasmic tail 4 protein-coding 50 0.005955
+3811 KIR3DL1 killer cell immunoglobulin like receptor, three Ig domains and long cytoplasmic tail 1 protein-coding 83 0.009884
+3812 KIR3DL2 killer cell immunoglobulin like receptor, three Ig domains and long cytoplasmic tail 2 protein-coding 59 0.007026
+3814 KISS1 KiSS-1 metastasis suppressor protein-coding 10 0.001191
+3815 KIT KIT proto-oncogene receptor tyrosine kinase protein-coding 191 0.02275
+3816 KLK1 kallikrein 1 protein-coding 47 0.005597
+3817 KLK2 kallikrein related peptidase 2 protein-coding 36 0.004287
+3818 KLKB1 kallikrein B1 protein-coding 134 0.01596
+3820 KLRB1 killer cell lectin like receptor B1 protein-coding 25 0.002977
+3821 KLRC1 killer cell lectin like receptor C1 protein-coding 37 0.004406
+3822 KLRC2 killer cell lectin like receptor C2 protein-coding 53 0.006312
+3823 KLRC3 killer cell lectin like receptor C3 protein-coding 35 0.004168
+3824 KLRD1 killer cell lectin like receptor D1 protein-coding 29 0.003454
+3827 KNG1 kininogen 1 protein-coding 99 0.01179
+3831 KLC1 kinesin light chain 1 protein-coding 62 0.007384
+3832 KIF11 kinesin family member 11 protein-coding 97 0.01155
+3833 KIFC1 kinesin family member C1 protein-coding 81 0.009646
+3834 KIF25 kinesin family member 25 protein-coding 54 0.006431
+3835 KIF22 kinesin family member 22 protein-coding 72 0.008574
+3836 KPNA1 karyopherin subunit alpha 1 protein-coding 71 0.008455
+3837 KPNB1 karyopherin subunit beta 1 protein-coding 80 0.009527
+3838 KPNA2 karyopherin subunit alpha 2 protein-coding 65 0.007741
+3839 KPNA3 karyopherin subunit alpha 3 protein-coding 58 0.006907
+3840 KPNA4 karyopherin subunit alpha 4 protein-coding 54 0.006431
+3841 KPNA5 karyopherin subunit alpha 5 protein-coding 59 0.007026
+3842 TNPO1 transportin 1 protein-coding 144 0.01715
+3843 IPO5 importin 5 protein-coding 100 0.01191
+3845 KRAS KRAS proto-oncogene, GTPase protein-coding 646 0.07693
+3846 KRTAP5-9 keratin associated protein 5-9 protein-coding 22 0.00262
+3848 KRT1 keratin 1 protein-coding 87 0.01036
+3849 KRT2 keratin 2 protein-coding 92 0.01096
+3850 KRT3 keratin 3 protein-coding 84 0.01
+3851 KRT4 keratin 4 protein-coding 87 0.01036
+3852 KRT5 keratin 5 protein-coding 94 0.01119
+3853 KRT6A keratin 6A protein-coding 99 0.01179
+3854 KRT6B keratin 6B protein-coding 97 0.01155
+3855 KRT7 keratin 7 protein-coding 54 0.006431
+3856 KRT8 keratin 8 protein-coding 58 0.006907
+3857 KRT9 keratin 9 protein-coding 68 0.008098
+3858 KRT10 keratin 10 protein-coding 72 0.008574
+3859 KRT12 keratin 12 protein-coding 77 0.00917
+3860 KRT13 keratin 13 protein-coding 70 0.008336
+3861 KRT14 keratin 14 protein-coding 73 0.008694
+3866 KRT15 keratin 15 protein-coding 70 0.008336
+3868 KRT16 keratin 16 protein-coding 73 0.008694
+3872 KRT17 keratin 17 protein-coding 199 0.0237
+3875 KRT18 keratin 18 protein-coding 41 0.004883
+3880 KRT19 keratin 19 protein-coding 61 0.007264
+3881 KRT31 keratin 31 protein-coding 87 0.01036
+3882 KRT32 keratin 32 protein-coding 59 0.007026
+3883 KRT33A keratin 33A protein-coding 72 0.008574
+3884 KRT33B keratin 33B protein-coding 78 0.009289
+3885 KRT34 keratin 34 protein-coding 83 0.009884
+3886 KRT35 keratin 35 protein-coding 62 0.007384
+3887 KRT81 keratin 81 protein-coding 40 0.004764
+3888 KRT82 keratin 82 protein-coding 73 0.008694
+3889 KRT83 keratin 83 protein-coding 70 0.008336
+3890 KRT84 keratin 84 protein-coding 83 0.009884
+3891 KRT85 keratin 85 protein-coding 83 0.009884
+3892 KRT86 keratin 86 protein-coding 41 0.004883
+3895 KTN1 kinectin 1 protein-coding 117 0.01393
+3897 L1CAM L1 cell adhesion molecule protein-coding 196 0.02334
+3898 LAD1 ladinin 1 protein-coding 59 0.007026
+3899 AFF3 AF4/FMR2 family member 3 protein-coding 205 0.02441
+3902 LAG3 lymphocyte activating 3 protein-coding 47 0.005597
+3903 LAIR1 leukocyte associated immunoglobulin like receptor 1 protein-coding 48 0.005716
+3904 LAIR2 leukocyte associated immunoglobulin like receptor 2 protein-coding 37 0.004406
+3906 LALBA lactalbumin alpha protein-coding 12 0.001429
+3908 LAMA2 laminin subunit alpha 2 protein-coding 423 0.05038
+3909 LAMA3 laminin subunit alpha 3 protein-coding 313 0.03728
+3910 LAMA4 laminin subunit alpha 4 protein-coding 522 0.06217
+3911 LAMA5 laminin subunit alpha 5 protein-coding 307 0.03656
+3912 LAMB1 laminin subunit beta 1 protein-coding 208 0.02477
+3913 LAMB2 laminin subunit beta 2 protein-coding 172 0.02048
+3914 LAMB3 laminin subunit beta 3 protein-coding 156 0.01858
+3915 LAMC1 laminin subunit gamma 1 protein-coding 335 0.0399
+3916 LAMP1 lysosomal associated membrane protein 1 protein-coding 45 0.005359
+3918 LAMC2 laminin subunit gamma 2 protein-coding 122 0.01453
+3920 LAMP2 lysosomal associated membrane protein 2 protein-coding 42 0.005002
+3921 RPSA ribosomal protein SA protein-coding 26 0.003096
+3925 STMN1 stathmin 1 protein-coding 18 0.002144
+3927 LASP1 LIM and SH3 protein 1 protein-coding 27 0.003215
+3929 LBP lipopolysaccharide binding protein protein-coding 64 0.007622
+3930 LBR lamin B receptor protein-coding 84 0.01
+3931 LCAT lecithin-cholesterol acyltransferase protein-coding 46 0.005478
+3932 LCK LCK proto-oncogene, Src family tyrosine kinase protein-coding 62 0.007384
+3933 LCN1 lipocalin 1 protein-coding 33 0.00393
+3934 LCN2 lipocalin 2 protein-coding 29 0.003454
+3936 LCP1 lymphocyte cytosolic protein 1 protein-coding 147 0.01751
+3937 LCP2 lymphocyte cytosolic protein 2 protein-coding 96 0.01143
+3938 LCT lactase protein-coding 282 0.03358
+3939 LDHA lactate dehydrogenase A protein-coding 40 0.004764
+3945 LDHB lactate dehydrogenase B protein-coding 48 0.005716
+3948 LDHC lactate dehydrogenase C protein-coding 57 0.006788
+3949 LDLR low density lipoprotein receptor protein-coding 151 0.01798
+3950 LECT2 leukocyte cell derived chemotaxin 2 protein-coding 28 0.003335
+3952 LEP leptin protein-coding 24 0.002858
+3953 LEPR leptin receptor protein-coding 188 0.02239
+3954 LETM1 leucine zipper and EF-hand containing transmembrane protein 1 protein-coding 76 0.009051
+3955 LFNG LFNG O-fucosylpeptide 3-beta-N-acetylglucosaminyltransferase protein-coding 36 0.004287
+3956 LGALS1 galectin 1 protein-coding 16 0.001905
+3957 LGALS2 galectin 2 protein-coding 22 0.00262
+3958 LGALS3 galectin 3 protein-coding 39 0.004645
+3959 LGALS3BP galectin 3 binding protein protein-coding 56 0.006669
+3960 LGALS4 galectin 4 protein-coding 49 0.005835
+3963 LGALS7 galectin 7 protein-coding 7 0.0008336
+3964 LGALS8 galectin 8 protein-coding 45 0.005359
+3965 LGALS9 galectin 9 protein-coding 49 0.005835
+3972 LHB luteinizing hormone beta polypeptide protein-coding 16 0.001905
+3973 LHCGR luteinizing hormone/choriogonadotropin receptor protein-coding 146 0.01739
+3975 LHX1 LIM homeobox 1 protein-coding 67 0.007979
+3976 LIF LIF, interleukin 6 family cytokine protein-coding 25 0.002977
+3977 LIFR LIF receptor alpha protein-coding 155 0.01846
+3978 LIG1 DNA ligase 1 protein-coding 103 0.01227
+3980 LIG3 DNA ligase 3 protein-coding 92 0.01096
+3981 LIG4 DNA ligase 4 protein-coding 129 0.01536
+3982 LIM2 lens intrinsic membrane protein 2 protein-coding 54 0.006431
+3983 ABLIM1 actin binding LIM protein 1 protein-coding 91 0.01084
+3984 LIMK1 LIM domain kinase 1 protein-coding 74 0.008813
+3985 LIMK2 LIM domain kinase 2 protein-coding 73 0.008694
+3987 LIMS1 LIM zinc finger domain containing 1 protein-coding 36 0.004287
+3988 LIPA lipase A, lysosomal acid type protein-coding 37 0.004406
+3990 LIPC lipase C, hepatic type protein-coding 128 0.01524
+3991 LIPE lipase E, hormone sensitive type protein-coding 107 0.01274
+3992 FADS1 fatty acid desaturase 1 protein-coding 61 0.007264
+3993 LLGL2 LLGL2, scribble cell polarity complex component protein-coding 95 0.01131
+3995 FADS3 fatty acid desaturase 3 protein-coding 41 0.004883
+3996 LLGL1 LLGL1, scribble cell polarity complex component protein-coding 78 0.009289
+3998 LMAN1 lectin, mannose binding 1 protein-coding 78 0.009289
+4000 LMNA lamin A/C protein-coding 67 0.007979
+4001 LMNB1 lamin B1 protein-coding 54 0.006431
+4004 LMO1 LIM domain only 1 protein-coding 19 0.002263
+4005 LMO2 LIM domain only 2 protein-coding 28 0.003335
+4007 PRICKLE3 prickle planar cell polarity protein 3 protein-coding 62 0.007384
+4008 LMO7 LIM domain 7 protein-coding 149 0.01774
+4009 LMX1A LIM homeobox transcription factor 1 alpha protein-coding 86 0.01024
+4010 LMX1B LIM homeobox transcription factor 1 beta protein-coding 49 0.005835
+4012 LNPEP leucyl and cystinyl aminopeptidase protein-coding 99 0.01179
+4013 VWA5A von Willebrand factor A domain containing 5A protein-coding 109 0.01298
+4014 LOR loricrin protein-coding 10 0.001191
+4015 LOX lysyl oxidase protein-coding 53 0.006312
+4016 LOXL1 lysyl oxidase like 1 protein-coding 38 0.004525
+4017 LOXL2 lysyl oxidase like 2 protein-coding 109 0.01298
+4018 LPA lipoprotein(a) protein-coding 275 0.03275
+4023 LPL lipoprotein lipase protein-coding 73 0.008694
+4025 LPO lactoperoxidase protein-coding 84 0.01
+4026 LPP LIM domain containing preferred translocation partner in lipoma protein-coding 101 0.01203
+4033 LRMP lymphoid restricted membrane protein protein-coding 68 0.008098
+4034 LRCH4 leucine rich repeats and calponin homology domain containing 4 protein-coding 201 0.02394
+4035 LRP1 LDL receptor related protein 1 protein-coding 395 0.04704
+4036 LRP2 LDL receptor related protein 2 protein-coding 579 0.06895
+4037 LRP3 LDL receptor related protein 3 protein-coding 74 0.008813
+4038 LRP4 LDL receptor related protein 4 protein-coding 260 0.03096
+4040 LRP6 LDL receptor related protein 6 protein-coding 176 0.02096
+4041 LRP5 LDL receptor related protein 5 protein-coding 183 0.02179
+4043 LRPAP1 LDL receptor related protein associated protein 1 protein-coding 49 0.005835
+4045 LSAMP limbic system associated membrane protein protein-coding 76 0.009051
+4046 LSP1 lymphocyte-specific protein 1 protein-coding 62 0.007384
+4047 LSS lanosterol synthase protein-coding 88 0.01048
+4048 LTA4H leukotriene A4 hydrolase protein-coding 53 0.006312
+4049 LTA lymphotoxin alpha protein-coding 27 0.003215
+4050 LTB lymphotoxin beta protein-coding 21 0.002501
+4051 CYP4F3 cytochrome P450 family 4 subfamily F member 3 protein-coding 90 0.01072
+4052 LTBP1 latent transforming growth factor beta binding protein 1 protein-coding 241 0.0287
+4053 LTBP2 latent transforming growth factor beta binding protein 2 protein-coding 274 0.03263
+4054 LTBP3 latent transforming growth factor beta binding protein 3 protein-coding 274 0.03263
+4055 LTBR lymphotoxin beta receptor protein-coding 51 0.006074
+4056 LTC4S leukotriene C4 synthase protein-coding 4 0.0004764
+4057 LTF lactotransferrin protein-coding 103 0.01227
+4058 LTK leukocyte receptor tyrosine kinase protein-coding 81 0.009646
+4059 BCAM basal cell adhesion molecule (Lutheran blood group) protein-coding 74 0.008813
+4060 LUM lumican protein-coding 88 0.01048
+4061 LY6E lymphocyte antigen 6 family member E protein-coding 9 0.001072
+4062 LY6H lymphocyte antigen 6 family member H protein-coding 25 0.002977
+4063 LY9 lymphocyte antigen 9 protein-coding 103 0.01227
+4064 CD180 CD180 molecule protein-coding 81 0.009646
+4065 LY75 lymphocyte antigen 75 protein-coding 7 0.0008336
+4066 LYL1 LYL1, basic helix-loop-helix family member protein-coding 17 0.002025
+4067 LYN LYN proto-oncogene, Src family tyrosine kinase protein-coding 79 0.009408
+4068 SH2D1A SH2 domain containing 1A protein-coding 37 0.004406
+4069 LYZ lysozyme protein-coding 23 0.002739
+4070 TACSTD2 tumor associated calcium signal transducer 2 protein-coding 25 0.002977
+4071 TM4SF1 transmembrane 4 L six family member 1 protein-coding 30 0.003573
+4072 EPCAM epithelial cell adhesion molecule protein-coding 28 0.003335
+4074 M6PR mannose-6-phosphate receptor, cation dependent protein-coding 14 0.001667
+4076 CAPRIN1 cell cycle associated protein 1 protein-coding 82 0.009765
+4077 NBR1 NBR1, autophagy cargo receptor protein-coding 91 0.01084
+4081 MAB21L1 mab-21 like 1 protein-coding 83 0.009884
+4082 MARCKS myristoylated alanine rich protein kinase C substrate protein-coding 17 0.002025
+4084 MXD1 MAX dimerization protein 1 protein-coding 31 0.003692
+4085 MAD2L1 mitotic arrest deficient 2 like 1 protein-coding 32 0.003811
+4086 SMAD1 SMAD family member 1 protein-coding 50 0.005955
+4087 SMAD2 SMAD family member 2 protein-coding 83 0.009884
+4088 SMAD3 SMAD family member 3 protein-coding 90 0.01072
+4089 SMAD4 SMAD family member 4 protein-coding 227 0.02703
+4090 SMAD5 SMAD family member 5 protein-coding 39 0.004645
+4091 SMAD6 SMAD family member 6 protein-coding 28 0.003335
+4092 SMAD7 SMAD family member 7 protein-coding 32 0.003811
+4093 SMAD9 SMAD family member 9 protein-coding 68 0.008098
+4094 MAF MAF bZIP transcription factor protein-coding 45 0.005359
+4097 MAFG MAF bZIP transcription factor G protein-coding 6 0.0007145
+4099 MAG myelin associated glycoprotein protein-coding 117 0.01393
+4100 MAGEA1 MAGE family member A1 protein-coding 53 0.006312
+4102 MAGEA3 MAGE family member A3 protein-coding 63 0.007503
+4103 MAGEA4 MAGE family member A4 protein-coding 80 0.009527
+4105 MAGEA6 MAGE family member A6 protein-coding 70 0.008336
+4107 MAGEA8 MAGE family member A8 protein-coding 61 0.007264
+4109 MAGEA10 MAGE family member A10 protein-coding 82 0.009765
+4110 MAGEA11 MAGE family member A11 protein-coding 94 0.01119
+4111 MAGEA12 MAGE family member A12 protein-coding 75 0.008932
+4112 MAGEB1 MAGE family member B1 protein-coding 101 0.01203
+4113 MAGEB2 MAGE family member B2 protein-coding 91 0.01084
+4114 MAGEB3 MAGE family member B3 protein-coding 80 0.009527
+4115 MAGEB4 MAGE family member B4 protein-coding 88 0.01048
+4116 MAGOH mago homolog, exon junction complex core component protein-coding 16 0.001905
+4117 MAK male germ cell associated kinase protein-coding 68 0.008098
+4118 MAL mal, T cell differentiation protein protein-coding 24 0.002858
+4121 MAN1A1 mannosidase alpha class 1A member 1 protein-coding 84 0.01
+4122 MAN2A2 mannosidase alpha class 2A member 2 protein-coding 103 0.01227
+4123 MAN2C1 mannosidase alpha class 2C member 1 protein-coding 105 0.0125
+4124 MAN2A1 mannosidase alpha class 2A member 1 protein-coding 145 0.01727
+4125 MAN2B1 mannosidase alpha class 2B member 1 protein-coding 109 0.01298
+4126 MANBA mannosidase beta protein-coding 89 0.0106
+4128 MAOA monoamine oxidase A protein-coding 52 0.006193
+4129 MAOB monoamine oxidase B protein-coding 70 0.008336
+4130 MAP1A microtubule associated protein 1A protein-coding 246 0.0293
+4131 MAP1B microtubule associated protein 1B protein-coding 255 0.03037
+4133 MAP2 microtubule associated protein 2 protein-coding 300 0.03573
+4134 MAP4 microtubule associated protein 4 protein-coding 87 0.01036
+4135 MAP6 microtubule associated protein 6 protein-coding 72 0.008574
+4137 MAPT microtubule associated protein tau protein-coding 108 0.01286
+4139 MARK1 microtubule affinity regulating kinase 1 protein-coding 134 0.01596
+4140 MARK3 microtubule affinity regulating kinase 3 protein-coding 78 0.009289
+4141 MARS methionyl-tRNA synthetase protein-coding 82 0.009765
+4142 MAS1 MAS1 proto-oncogene, G protein-coupled receptor protein-coding 42 0.005002
+4143 MAT1A methionine adenosyltransferase 1A protein-coding 69 0.008217
+4144 MAT2A methionine adenosyltransferase 2A protein-coding 30 0.003573
+4145 MATK megakaryocyte-associated tyrosine kinase protein-coding 99 0.01179
+4146 MATN1 matrilin 1 protein-coding 47 0.005597
+4147 MATN2 matrilin 2 protein-coding 119 0.01417
+4148 MATN3 matrilin 3 protein-coding 51 0.006074
+4149 MAX MYC associated factor X protein-coding 52 0.006193
+4150 MAZ MYC associated zinc finger protein protein-coding 51 0.006074
+4151 MB myoglobin protein-coding 12 0.001429
+4152 MBD1 methyl-CpG binding domain protein 1 protein-coding 214 0.02549
+4153 MBL2 mannose binding lectin 2 protein-coding 97 0.01155
+4154 MBNL1 muscleblind like splicing regulator 1 protein-coding 53 0.006312
+4155 MBP myelin basic protein protein-coding 34 0.004049
+4157 MC1R melanocortin 1 receptor protein-coding 36 0.004287
+4158 MC2R melanocortin 2 receptor protein-coding 62 0.007384
+4159 MC3R melanocortin 3 receptor protein-coding 85 0.01012
+4160 MC4R melanocortin 4 receptor protein-coding 55 0.00655
+4161 MC5R melanocortin 5 receptor protein-coding 85 0.01012
+4162 MCAM melanoma cell adhesion molecule protein-coding 68 0.008098
+4163 MCC mutated in colorectal cancers protein-coding 145 0.01727
+4166 CHST6 carbohydrate sulfotransferase 6 protein-coding 68 0.008098
+4168 MCF2 MCF.2 cell line derived transforming sequence protein-coding 189 0.02251
+4170 MCL1 MCL1, BCL2 family apoptosis regulator protein-coding 23 0.002739
+4171 MCM2 minichromosome maintenance complex component 2 protein-coding 84 0.01
+4172 MCM3 minichromosome maintenance complex component 3 protein-coding 73 0.008694
+4173 MCM4 minichromosome maintenance complex component 4 protein-coding 116 0.01381
+4174 MCM5 minichromosome maintenance complex component 5 protein-coding 74 0.008813
+4175 MCM6 minichromosome maintenance complex component 6 protein-coding 95 0.01131
+4176 MCM7 minichromosome maintenance complex component 7 protein-coding 180 0.02144
+4179 CD46 CD46 molecule protein-coding 60 0.007145
+4184 SMCP sperm mitochondria associated cysteine rich protein protein-coding 21 0.002501
+4185 ADAM11 ADAM metallopeptidase domain 11 protein-coding 81 0.009646
+4188 MDFI MyoD family inhibitor protein-coding 14 0.001667
+4189 DNAJB9 DnaJ heat shock protein family (Hsp40) member B9 protein-coding 31 0.003692
+4190 MDH1 malate dehydrogenase 1 protein-coding 37 0.004406
+4191 MDH2 malate dehydrogenase 2 protein-coding 21 0.002501
+4192 MDK midkine protein-coding 13 0.001548
+4193 MDM2 MDM2 proto-oncogene protein-coding 58 0.006907
+4194 MDM4 MDM4, p53 regulator protein-coding 33 0.00393
+4195 MDRV muscular dystrophy, with rimmed vacuoles unknown 39 0.004645
+4199 ME1 malic enzyme 1 protein-coding 73 0.008694
+4200 ME2 malic enzyme 2 protein-coding 72 0.008574
+4201 MEA1 male-enhanced antigen 1 protein-coding 19 0.002263
+4204 MECP2 methyl-CpG binding protein 2 protein-coding 67 0.007979
+4205 MEF2A myocyte enhancer factor 2A protein-coding 50 0.005955
+4208 MEF2C myocyte enhancer factor 2C protein-coding 80 0.009527
+4209 MEF2D myocyte enhancer factor 2D protein-coding 56 0.006669
+4210 MEFV MEFV, pyrin innate immunity regulator protein-coding 139 0.01655
+4211 MEIS1 Meis homeobox 1 protein-coding 71 0.008455
+4212 MEIS2 Meis homeobox 2 protein-coding 91 0.01084
+4213 MEIS3P1 Meis homeobox 3 pseudogene 1 pseudo 47 0.005597
+4214 MAP3K1 mitogen-activated protein kinase kinase kinase 1 protein-coding 220 0.0262
+4215 MAP3K3 mitogen-activated protein kinase kinase kinase 3 protein-coding 69 0.008217
+4216 MAP3K4 mitogen-activated protein kinase kinase kinase 4 protein-coding 200 0.02382
+4217 MAP3K5 mitogen-activated protein kinase kinase kinase 5 protein-coding 152 0.0181
+4218 RAB8A RAB8A, member RAS oncogene family protein-coding 35 0.004168
+4221 MEN1 menin 1 protein-coding 194 0.0231
+4222 MEOX1 mesenchyme homeobox 1 protein-coding 37 0.004406
+4223 MEOX2 mesenchyme homeobox 2 protein-coding 69 0.008217
+4224 MEP1A meprin A subunit alpha protein-coding 119 0.01417
+4225 MEP1B meprin A subunit beta protein-coding 77 0.00917
+4232 MEST mesoderm specific transcript protein-coding 34 0.004049
+4233 MET MET proto-oncogene, receptor tyrosine kinase protein-coding 181 0.02156
+4234 METTL1 methyltransferase like 1 protein-coding 28 0.003335
+4236 MFAP1 microfibril associated protein 1 protein-coding 63 0.007503
+4237 MFAP2 microfibril associated protein 2 protein-coding 18 0.002144
+4238 MFAP3 microfibril associated protein 3 protein-coding 30 0.003573
+4239 MFAP4 microfibril associated protein 4 protein-coding 30 0.003573
+4240 MFGE8 milk fat globule-EGF factor 8 protein protein-coding 61 0.007264
+4241 MELTF melanotransferrin protein-coding 172 0.02048
+4242 MFNG MFNG O-fucosylpeptide 3-beta-N-acetylglucosaminyltransferase protein-coding 25 0.002977
+4245 MGAT1 mannosyl (alpha-1,3-)-glycoprotein beta-1,2-N-acetylglucosaminyltransferase protein-coding 55 0.00655
+4246 SCGB2A1 secretoglobin family 2A member 1 protein-coding 15 0.001786
+4247 MGAT2 mannosyl (alpha-1,6-)-glycoprotein beta-1,2-N-acetylglucosaminyltransferase protein-coding 43 0.005121
+4248 MGAT3 mannosyl (beta-1,4-)-glycoprotein beta-1,4-N-acetylglucosaminyltransferase protein-coding 98 0.01167
+4249 MGAT5 mannosyl (alpha-1,6-)-glycoprotein beta-1,6-N-acetyl-glucosaminyltransferase protein-coding 97 0.01155
+4250 SCGB2A2 secretoglobin family 2A member 2 protein-coding 13 0.001548
+4253 MIA2 melanoma inhibitory activity 2 protein-coding 186 0.02215
+4254 KITLG KIT ligand protein-coding 48 0.005716
+4255 MGMT O-6-methylguanine-DNA methyltransferase protein-coding 26 0.003096
+4256 MGP matrix Gla protein protein-coding 22 0.00262
+4257 MGST1 microsomal glutathione S-transferase 1 protein-coding 27 0.003215
+4258 MGST2 microsomal glutathione S-transferase 2 protein-coding 18 0.002144
+4259 MGST3 microsomal glutathione S-transferase 3 protein-coding 17 0.002025
+4261 CIITA class II major histocompatibility complex transactivator protein-coding 139 0.01655
+4267 CD99 CD99 molecule (Xg blood group) protein-coding 22 0.00262
+4277 MICB MHC class I polypeptide-related sequence B protein-coding 37 0.004406
+4281 MID1 midline 1 protein-coding 90 0.01072
+4282 MIF macrophage migration inhibitory factor protein-coding 68 0.008098
+4283 CXCL9 C-X-C motif chemokine ligand 9 protein-coding 37 0.004406
+4284 MIP major intrinsic protein of lens fiber protein-coding 43 0.005121
+4285 MIPEP mitochondrial intermediate peptidase protein-coding 112 0.01334
+4286 MITF melanogenesis associated transcription factor protein-coding 79 0.009408
+4287 ATXN3 ataxin 3 protein-coding 48 0.005716
+4288 MKI67 marker of proliferation Ki-67 protein-coding 361 0.04299
+4289 MKLN1 muskelin 1 protein-coding 74 0.008813
+4291 MLF1 myeloid leukemia factor 1 protein-coding 43 0.005121
+4292 MLH1 mutL homolog 1 protein-coding 109 0.01298
+4293 MAP3K9 mitogen-activated protein kinase kinase kinase 9 protein-coding 130 0.01548
+4294 MAP3K10 mitogen-activated protein kinase kinase kinase 10 protein-coding 90 0.01072
+4295 MLN motilin protein-coding 19 0.002263
+4296 MAP3K11 mitogen-activated protein kinase kinase kinase 11 protein-coding 83 0.009884
+4297 KMT2A lysine methyltransferase 2A protein-coding 347 0.04132
+4298 MLLT1 MLLT1, super elongation complex subunit protein-coding 66 0.00786
+4299 AFF1 AF4/FMR2 family member 1 protein-coding 141 0.01679
+4300 MLLT3 MLLT3, super elongation complex subunit protein-coding 60 0.007145
+4301 AFDN afadin, adherens junction formation factor protein-coding 196 0.02334
+4302 MLLT6 MLLT6, PHD finger containing protein-coding 97 0.01155
+4303 FOXO4 forkhead box O4 protein-coding 70 0.008336
+4306 NR3C2 nuclear receptor subfamily 3 group C member 2 protein-coding 123 0.01465
+4308 TRPM1 transient receptor potential cation channel subfamily M member 1 protein-coding 212 0.02525
+4311 MME membrane metalloendopeptidase protein-coding 149 0.01774
+4312 MMP1 matrix metallopeptidase 1 protein-coding 112 0.01334
+4313 MMP2 matrix metallopeptidase 2 protein-coding 106 0.01262
+4314 MMP3 matrix metallopeptidase 3 protein-coding 76 0.009051
+4316 MMP7 matrix metallopeptidase 7 protein-coding 33 0.00393
+4317 MMP8 matrix metallopeptidase 8 protein-coding 67 0.007979
+4318 MMP9 matrix metallopeptidase 9 protein-coding 113 0.01346
+4319 MMP10 matrix metallopeptidase 10 protein-coding 82 0.009765
+4320 MMP11 matrix metallopeptidase 11 protein-coding 49 0.005835
+4321 MMP12 matrix metallopeptidase 12 protein-coding 248 0.02953
+4322 MMP13 matrix metallopeptidase 13 protein-coding 79 0.009408
+4323 MMP14 matrix metallopeptidase 14 protein-coding 61 0.007264
+4324 MMP15 matrix metallopeptidase 15 protein-coding 69 0.008217
+4325 MMP16 matrix metallopeptidase 16 protein-coding 210 0.02501
+4326 MMP17 matrix metallopeptidase 17 protein-coding 81 0.009646
+4327 MMP19 matrix metallopeptidase 19 protein-coding 72 0.008574
+4329 ALDH6A1 aldehyde dehydrogenase 6 family member A1 protein-coding 46 0.005478
+4330 MN1 MN1 proto-oncogene, transcriptional regulator protein-coding 138 0.01643
+4331 MNAT1 MNAT1, CDK activating kinase assembly factor protein-coding 29 0.003454
+4332 MNDA myeloid cell nuclear differentiation antigen protein-coding 127 0.01512
+4335 MNT MAX network transcriptional repressor protein-coding 45 0.005359
+4336 MOBP myelin-associated oligodendrocyte basic protein protein-coding 7 0.0008336
+4337 MOCS1 molybdenum cofactor synthesis 1 protein-coding 58 0.006907
+4338 MOCS2 molybdenum cofactor synthesis 2 protein-coding 26 0.003096
+4340 MOG myelin oligodendrocyte glycoprotein protein-coding 49 0.005835
+4342 MOS MOS proto-oncogene, serine/threonine kinase protein-coding 79 0.009408
+4343 MOV10 Mov10 RISC complex RNA helicase protein-coding 89 0.0106
+4345 CD200 CD200 molecule protein-coding 38 0.004525
+4350 MPG N-methylpurine DNA glycosylase protein-coding 37 0.004406
+4351 MPI mannose phosphate isomerase protein-coding 35 0.004168
+4352 MPL MPL proto-oncogene, thrombopoietin receptor protein-coding 59 0.007026
+4353 MPO myeloperoxidase protein-coding 127 0.01512
+4354 MPP1 membrane palmitoylated protein 1 protein-coding 64 0.007622
+4355 MPP2 membrane palmitoylated protein 2 protein-coding 253 0.03013
+4356 MPP3 membrane palmitoylated protein 3 protein-coding 125 0.01489
+4357 MPST mercaptopyruvate sulfurtransferase protein-coding 21 0.002501
+4358 MPV17 MPV17, mitochondrial inner membrane protein protein-coding 22 0.00262
+4359 MPZ myelin protein zero protein-coding 115 0.0137
+4360 MRC1 mannose receptor C-type 1 protein-coding 106 0.01262
+4361 MRE11 MRE11 homolog, double strand break repair nuclease protein-coding 84 0.01
+4363 ABCC1 ATP binding cassette subfamily C member 1 protein-coding 157 0.0187
+4430 MYO1B myosin IB protein-coding 118 0.01405
+4435 CITED1 Cbp/p300 interacting transactivator with Glu/Asp rich carboxy-terminal domain 1 protein-coding 29 0.003454
+4436 MSH2 mutS homolog 2 protein-coding 116 0.01381
+4437 MSH3 mutS homolog 3 protein-coding 122 0.01453
+4438 MSH4 mutS homolog 4 protein-coding 152 0.0181
+4439 MSH5 mutS homolog 5 protein-coding 82 0.009765
+4440 MSI1 musashi RNA binding protein 1 protein-coding 41 0.004883
+4477 MSMB microseminoprotein beta protein-coding 19 0.002263
+4478 MSN moesin protein-coding 102 0.01215
+4481 MSR1 macrophage scavenger receptor 1 protein-coding 114 0.01358
+4482 MSRA methionine sulfoxide reductase A protein-coding 34 0.004049
+4485 MST1 macrophage stimulating 1 protein-coding 74 0.008813
+4486 MST1R macrophage stimulating 1 receptor protein-coding 132 0.01572
+4487 MSX1 msh homeobox 1 protein-coding 36 0.004287
+4488 MSX2 msh homeobox 2 protein-coding 28 0.003335
+4489 MT1A metallothionein 1A protein-coding 7 0.0008336
+4490 MT1B metallothionein 1B protein-coding 5 0.0005955
+4493 MT1E metallothionein 1E protein-coding 5 0.0005955
+4494 MT1F metallothionein 1F protein-coding 1 0.0001191
+4495 MT1G metallothionein 1G protein-coding 8 0.0009527
+4496 MT1H metallothionein 1H protein-coding 15 0.001786
+4499 MT1M metallothionein 1M protein-coding 9 0.001072
+4500 MT1L metallothionein 1L, pseudogene pseudo 14 0.001667
+4501 MT1X metallothionein 1X protein-coding 2 0.0002382
+4502 MT2A metallothionein 2A protein-coding 7 0.0008336
+4504 MT3 metallothionein 3 protein-coding 72 0.008574
+4507 MTAP methylthioadenosine phosphorylase protein-coding 33 0.00393
+4515 MTCP1 mature T cell proliferation 1 protein-coding 10 0.001191
+4520 MTF1 metal regulatory transcription factor 1 protein-coding 92 0.01096
+4521 NUDT1 nudix hydrolase 1 protein-coding 29 0.003454
+4522 MTHFD1 methylenetetrahydrofolate dehydrogenase, cyclohydrolase and formyltetrahydrofolate synthetase 1 protein-coding 73 0.008694
+4524 MTHFR methylenetetrahydrofolate reductase protein-coding 77 0.00917
+4528 MTIF2 mitochondrial translational initiation factor 2 protein-coding 94 0.01119
+4534 MTM1 myotubularin 1 protein-coding 101 0.01203
+4542 MYO1F myosin IF protein-coding 176 0.02096
+4543 MTNR1A melatonin receptor 1A protein-coding 60 0.007145
+4544 MTNR1B melatonin receptor 1B protein-coding 88 0.01048
+4547 MTTP microsomal triglyceride transfer protein protein-coding 130 0.01548
+4548 MTR 5-methyltetrahydrofolate-homocysteine methyltransferase protein-coding 140 0.01667
+4552 MTRR 5-methyltetrahydrofolate-homocysteine methyltransferase reductase protein-coding 93 0.01108
+4571 TRNP tRNA tRNA 130 0.01548
+4580 MTX1 metaxin 1 protein-coding 25 0.002977
+4582 MUC1 mucin 1, cell surface associated protein-coding 57 0.006788
+4583 MUC2 mucin 2, oligomeric mucus/gel-forming protein-coding 265 0.03156
+4584 MUC3A mucin 3A, cell surface associated protein-coding 142 0.01691
+4585 MUC4 mucin 4, cell surface associated protein-coding 376 0.04478
+4586 MUC5AC mucin 5AC, oligomeric mucus/gel-forming protein-coding 230 0.02739
+4588 MUC6 mucin 6, oligomeric mucus/gel-forming protein-coding 259 0.03084
+4589 MUC7 mucin 7, secreted protein-coding 96 0.01143
+4591 TRIM37 tripartite motif containing 37 protein-coding 119 0.01417
+4593 MUSK muscle associated receptor tyrosine kinase protein-coding 136 0.0162
+4594 MUT methylmalonyl-CoA mutase protein-coding 103 0.01227
+4595 MUTYH mutY DNA glycosylase protein-coding 61 0.007264
+4597 MVD mevalonate diphosphate decarboxylase protein-coding 39 0.004645
+4598 MVK mevalonate kinase protein-coding 64 0.007622
+4599 MX1 MX dynamin like GTPase 1 protein-coding 63 0.007503
+4600 MX2 MX dynamin like GTPase 2 protein-coding 81 0.009646
+4601 MXI1 MAX interactor 1, dimerization protein protein-coding 30 0.003573
+4602 MYB MYB proto-oncogene, transcription factor protein-coding 91 0.01084
+4603 MYBL1 MYB proto-oncogene like 1 protein-coding 81 0.009646
+4604 MYBPC1 myosin binding protein C, slow type protein-coding 157 0.0187
+4605 MYBL2 MYB proto-oncogene like 2 protein-coding 81 0.009646
+4606 MYBPC2 myosin binding protein C, fast type protein-coding 141 0.01679
+4607 MYBPC3 myosin binding protein C, cardiac protein-coding 143 0.01703
+4608 MYBPH myosin binding protein H protein-coding 63 0.007503
+4609 MYC MYC proto-oncogene, bHLH transcription factor protein-coding 65 0.007741
+4610 MYCL MYCL proto-oncogene, bHLH transcription factor protein-coding 43 0.005121
+4613 MYCN MYCN proto-oncogene, bHLH transcription factor protein-coding 65 0.007741
+4615 MYD88 myeloid differentiation primary response 88 protein-coding 35 0.004168
+4616 GADD45B growth arrest and DNA damage inducible beta protein-coding 5 0.0005955
+4617 MYF5 myogenic factor 5 protein-coding 84 0.01
+4618 MYF6 myogenic factor 6 protein-coding 81 0.009646
+4619 MYH1 myosin heavy chain 1 protein-coding 347 0.04132
+4620 MYH2 myosin heavy chain 2 protein-coding 397 0.04728
+4621 MYH3 myosin heavy chain 3 protein-coding 231 0.02751
+4622 MYH4 myosin heavy chain 4 protein-coding 305 0.03632
+4624 MYH6 myosin heavy chain 6 protein-coding 286 0.03406
+4625 MYH7 myosin heavy chain 7 protein-coding 348 0.04144
+4626 MYH8 myosin heavy chain 8 protein-coding 346 0.04121
+4627 MYH9 myosin heavy chain 9 protein-coding 257 0.03061
+4628 MYH10 myosin heavy chain 10 protein-coding 204 0.02429
+4629 MYH11 myosin heavy chain 11 protein-coding 226 0.02691
+4632 MYL1 myosin light chain 1 protein-coding 34 0.004049
+4633 MYL2 myosin light chain 2 protein-coding 42 0.005002
+4634 MYL3 myosin light chain 3 protein-coding 17 0.002025
+4635 MYL4 myosin light chain 4 protein-coding 20 0.002382
+4636 MYL5 myosin light chain 5 protein-coding 21 0.002501
+4637 MYL6 myosin light chain 6 protein-coding 15 0.001786
+4638 MYLK myosin light chain kinase protein-coding 210 0.02501
+4640 MYO1A myosin IA protein-coding 119 0.01417
+4641 MYO1C myosin IC protein-coding 130 0.01548
+4642 MYO1D myosin ID protein-coding 111 0.01322
+4643 MYO1E myosin IE protein-coding 198 0.02358
+4644 MYO5A myosin VA protein-coding 182 0.02167
+4645 MYO5B myosin VB protein-coding 151 0.01798
+4646 MYO6 myosin VI protein-coding 147 0.01751
+4647 MYO7A myosin VIIA protein-coding 237 0.02822
+4648 MYO7B myosin VIIB protein-coding 262 0.0312
+4649 MYO9A myosin IXA protein-coding 246 0.0293
+4650 MYO9B myosin IXB protein-coding 182 0.02167
+4651 MYO10 myosin X protein-coding 224 0.02668
+4653 MYOC myocilin protein-coding 73 0.008694
+4654 MYOD1 myogenic differentiation 1 protein-coding 43 0.005121
+4656 MYOG myogenin protein-coding 32 0.003811
+4659 PPP1R12A protein phosphatase 1 regulatory subunit 12A protein-coding 95 0.01131
+4660 PPP1R12B protein phosphatase 1 regulatory subunit 12B protein-coding 107 0.01274
+4661 MYT1 myelin transcription factor 1 protein-coding 251 0.02989
+4664 NAB1 NGFI-A binding protein 1 protein-coding 50 0.005955
+4665 NAB2 NGFI-A binding protein 2 protein-coding 53 0.006312
+4666 NACA nascent polypeptide-associated complex alpha subunit protein-coding 96 0.01143
+4668 NAGA alpha-N-acetylgalactosaminidase protein-coding 41 0.004883
+4669 NAGLU N-acetyl-alpha-glucosaminidase protein-coding 62 0.007384
+4670 HNRNPM heterogeneous nuclear ribonucleoprotein M protein-coding 104 0.01239
+4671 NAIP NLR family apoptosis inhibitory protein protein-coding 34 0.004049
+4673 NAP1L1 nucleosome assembly protein 1 like 1 protein-coding 55 0.00655
+4674 NAP1L2 nucleosome assembly protein 1 like 2 protein-coding 97 0.01155
+4675 NAP1L3 nucleosome assembly protein 1 like 3 protein-coding 104 0.01239
+4676 NAP1L4 nucleosome assembly protein 1 like 4 protein-coding 46 0.005478
+4677 NARS asparaginyl-tRNA synthetase protein-coding 49 0.005835
+4678 NASP nuclear autoantigenic sperm protein protein-coding 75 0.008932
+4680 CEACAM6 carcinoembryonic antigen related cell adhesion molecule 6 protein-coding 32 0.003811
+4681 NBL1 neuroblastoma 1, DAN family BMP antagonist protein-coding 3 0.0003573
+4682 NUBP1 nucleotide binding protein 1 protein-coding 27 0.003215
+4683 NBN nibrin protein-coding 100 0.01191
+4684 NCAM1 neural cell adhesion molecule 1 protein-coding 153 0.01822
+4685 NCAM2 neural cell adhesion molecule 2 protein-coding 233 0.02775
+4686 NCBP1 nuclear cap binding protein subunit 1 protein-coding 82 0.009765
+4688 NCF2 neutrophil cytosolic factor 2 protein-coding 78 0.009289
+4689 NCF4 neutrophil cytosolic factor 4 protein-coding 43 0.005121
+4690 NCK1 NCK adaptor protein 1 protein-coding 50 0.005955
+4691 NCL nucleolin protein-coding 74 0.008813
+4692 NDN necdin, MAGE family member protein-coding 99 0.01179
+4693 NDP NDP, norrin cystine knot growth factor protein-coding 16 0.001905
+4694 NDUFA1 NADH:ubiquinone oxidoreductase subunit A1 protein-coding 12 0.001429
+4695 NDUFA2 NADH:ubiquinone oxidoreductase subunit A2 protein-coding 7 0.0008336
+4696 NDUFA3 NADH:ubiquinone oxidoreductase subunit A3 protein-coding 12 0.001429
+4697 NDUFA4 NDUFA4, mitochondrial complex associated protein-coding 13 0.001548
+4698 NDUFA5 NADH:ubiquinone oxidoreductase subunit A5 protein-coding 15 0.001786
+4700 NDUFA6 NADH:ubiquinone oxidoreductase subunit A6 protein-coding 10 0.001191
+4701 NDUFA7 NADH:ubiquinone oxidoreductase subunit A7 protein-coding 17 0.002025
+4702 NDUFA8 NADH:ubiquinone oxidoreductase subunit A8 protein-coding 27 0.003215
+4703 NEB nebulin protein-coding 597 0.0711
+4704 NDUFA9 NADH:ubiquinone oxidoreductase subunit A9 protein-coding 53 0.006312
+4705 NDUFA10 NADH:ubiquinone oxidoreductase subunit A10 protein-coding 46 0.005478
+4706 NDUFAB1 NADH:ubiquinone oxidoreductase subunit AB1 protein-coding 40 0.004764
+4707 NDUFB1 NADH:ubiquinone oxidoreductase subunit B1 protein-coding 11 0.00131
+4708 NDUFB2 NADH:ubiquinone oxidoreductase subunit B2 protein-coding 10 0.001191
+4709 NDUFB3 NADH:ubiquinone oxidoreductase subunit B3 protein-coding 11 0.00131
+4710 NDUFB4 NADH:ubiquinone oxidoreductase subunit B4 protein-coding 14 0.001667
+4711 NDUFB5 NADH:ubiquinone oxidoreductase subunit B5 protein-coding 28 0.003335
+4712 NDUFB6 NADH:ubiquinone oxidoreductase subunit B6 protein-coding 18 0.002144
+4713 NDUFB7 NADH:ubiquinone oxidoreductase subunit B7 protein-coding 19 0.002263
+4714 NDUFB8 NADH:ubiquinone oxidoreductase subunit B8 protein-coding 22 0.00262
+4715 NDUFB9 NADH:ubiquinone oxidoreductase subunit B9 protein-coding 20 0.002382
+4716 NDUFB10 NADH:ubiquinone oxidoreductase subunit B10 protein-coding 25 0.002977
+4717 NDUFC1 NADH:ubiquinone oxidoreductase subunit C1 protein-coding 4 0.0004764
+4718 NDUFC2 NADH:ubiquinone oxidoreductase subunit C2 protein-coding 12 0.001429
+4719 NDUFS1 NADH:ubiquinone oxidoreductase core subunit S1 protein-coding 85 0.01012
+4720 NDUFS2 NADH:ubiquinone oxidoreductase core subunit S2 protein-coding 55 0.00655
+4722 NDUFS3 NADH:ubiquinone oxidoreductase core subunit S3 protein-coding 30 0.003573
+4723 NDUFV1 NADH:ubiquinone oxidoreductase core subunit V1 protein-coding 54 0.006431
+4724 NDUFS4 NADH:ubiquinone oxidoreductase subunit S4 protein-coding 23 0.002739
+4725 NDUFS5 NADH:ubiquinone oxidoreductase subunit S5 protein-coding 18 0.002144
+4726 NDUFS6 NADH:ubiquinone oxidoreductase subunit S6 protein-coding 24 0.002858
+4728 NDUFS8 NADH:ubiquinone oxidoreductase core subunit S8 protein-coding 21 0.002501
+4729 NDUFV2 NADH:ubiquinone oxidoreductase core subunit V2 protein-coding 27 0.003215
+4731 NDUFV3 NADH:ubiquinone oxidoreductase subunit V3 protein-coding 51 0.006074
+4733 DRG1 developmentally regulated GTP binding protein 1 protein-coding 35 0.004168
+4734 NEDD4 neural precursor cell expressed, developmentally down-regulated 4, E3 ubiquitin protein ligase protein-coding 153 0.01822
+4735 SEPT2 septin 2 protein-coding 49 0.005835
+4736 RPL10A ribosomal protein L10a protein-coding 32 0.003811
+4738 NEDD8 neural precursor cell expressed, developmentally down-regulated 8 protein-coding 5 0.0005955
+4739 NEDD9 neural precursor cell expressed, developmentally down-regulated 9 protein-coding 91 0.01084
+4741 NEFM neurofilament medium protein-coding 128 0.01524
+4744 NEFH neurofilament heavy protein-coding 81 0.009646
+4745 NELL1 neural EGFL like 1 protein-coding 301 0.03585
+4747 NEFL neurofilament light protein-coding 4 0.0004764
+4750 NEK1 NIMA related kinase 1 protein-coding 106 0.01262
+4751 NEK2 NIMA related kinase 2 protein-coding 58 0.006907
+4752 NEK3 NIMA related kinase 3 protein-coding 45 0.005359
+4753 NELL2 neural EGFL like 2 protein-coding 251 0.02989
+4756 NEO1 neogenin 1 protein-coding 155 0.01846
+4758 NEU1 neuraminidase 1 protein-coding 37 0.004406
+4759 NEU2 neuraminidase 2 protein-coding 65 0.007741
+4760 NEUROD1 neuronal differentiation 1 protein-coding 73 0.008694
+4761 NEUROD2 neuronal differentiation 2 protein-coding 27 0.003215
+4762 NEUROG1 neurogenin 1 protein-coding 29 0.003454
+4763 NF1 neurofibromin 1 protein-coding 446 0.05311
+4771 NF2 neurofibromin 2 protein-coding 126 0.01501
+4772 NFATC1 nuclear factor of activated T cells 1 protein-coding 129 0.01536
+4773 NFATC2 nuclear factor of activated T cells 2 protein-coding 169 0.02013
+4774 NFIA nuclear factor I A protein-coding 66 0.00786
+4775 NFATC3 nuclear factor of activated T cells 3 protein-coding 93 0.01108
+4776 NFATC4 nuclear factor of activated T cells 4 protein-coding 118 0.01405
+4778 NFE2 nuclear factor, erythroid 2 protein-coding 52 0.006193
+4779 NFE2L1 nuclear factor, erythroid 2 like 1 protein-coding 122 0.01453
+4780 NFE2L2 nuclear factor, erythroid 2 like 2 protein-coding 254 0.03025
+4781 NFIB nuclear factor I B protein-coding 68 0.008098
+4782 NFIC nuclear factor I C protein-coding 58 0.006907
+4783 NFIL3 nuclear factor, interleukin 3 regulated protein-coding 53 0.006312
+4784 NFIX nuclear factor I X protein-coding 39 0.004645
+4790 NFKB1 nuclear factor kappa B subunit 1 protein-coding 81 0.009646
+4791 NFKB2 nuclear factor kappa B subunit 2 protein-coding 73 0.008694
+4792 NFKBIA NFKB inhibitor alpha protein-coding 44 0.00524
+4793 NFKBIB NFKB inhibitor beta protein-coding 39 0.004645
+4794 NFKBIE NFKB inhibitor epsilon protein-coding 37 0.004406
+4795 NFKBIL1 NFKB inhibitor like 1 protein-coding 33 0.00393
+4796 TONSL tonsoku like, DNA repair protein protein-coding 118 0.01405
+4798 NFRKB nuclear factor related to kappaB binding protein protein-coding 103 0.01227
+4799 NFX1 nuclear transcription factor, X-box binding 1 protein-coding 85 0.01012
+4800 NFYA nuclear transcription factor Y subunit alpha protein-coding 35 0.004168
+4801 NFYB nuclear transcription factor Y subunit beta protein-coding 17 0.002025
+4802 NFYC nuclear transcription factor Y subunit gamma protein-coding 32 0.003811
+4803 NGF nerve growth factor protein-coding 50 0.005955
+4804 NGFR nerve growth factor receptor protein-coding 46 0.005478
+4807 NHLH1 nescient helix-loop-helix 1 protein-coding 24 0.002858
+4808 NHLH2 nescient helix-loop-helix 2 protein-coding 18 0.002144
+4809 SNU13 small nuclear ribonucleoprotein 13 protein-coding 15 0.001786
+4810 NHS NHS actin remodeling regulator protein-coding 197 0.02346
+4811 NID1 nidogen 1 protein-coding 192 0.02287
+4814 NINJ1 ninjurin 1 protein-coding 17 0.002025
+4815 NINJ2 ninjurin 2 protein-coding 17 0.002025
+4817 NIT1 nitrilase 1 protein-coding 38 0.004525
+4818 NKG7 natural killer cell granule protein 7 protein-coding 25 0.002977
+4820 NKTR natural killer cell triggering receptor protein-coding 127 0.01512
+4821 NKX2-2 NK2 homeobox 2 protein-coding 79 0.009408
+4824 NKX3-1 NK3 homeobox 1 protein-coding 32 0.003811
+4825 NKX6-1 NK6 homeobox 1 protein-coding 40 0.004764
+4826 NNAT neuronatin protein-coding 11 0.00131
+4828 NMB neuromedin B protein-coding 10 0.001191
+4829 NMBR neuromedin B receptor protein-coding 73 0.008694
+4830 NME1 NME/NM23 nucleoside diphosphate kinase 1 protein-coding 18 0.002144
+4832 NME3 NME/NM23 nucleoside diphosphate kinase 3 protein-coding 6 0.0007145
+4833 NME4 NME/NM23 nucleoside diphosphate kinase 4 protein-coding 13 0.001548
+4835 NQO2 N-ribosyldihydronicotinamide:quinone reductase 2 protein-coding 27 0.003215
+4836 NMT1 N-myristoyltransferase 1 protein-coding 57 0.006788
+4837 NNMT nicotinamide N-methyltransferase protein-coding 43 0.005121
+4838 NODAL nodal growth differentiation factor protein-coding 32 0.003811
+4839 NOP2 NOP2 nucleolar protein protein-coding 87 0.01036
+4841 NONO non-POU domain containing octamer binding protein-coding 84 0.01
+4842 NOS1 nitric oxide synthase 1 protein-coding 266 0.03168
+4843 NOS2 nitric oxide synthase 2 protein-coding 163 0.01941
+4846 NOS3 nitric oxide synthase 3 protein-coding 161 0.01917
+4848 CNOT2 CCR4-NOT transcription complex subunit 2 protein-coding 70 0.008336
+4849 CNOT3 CCR4-NOT transcription complex subunit 3 protein-coding 103 0.01227
+4850 CNOT4 CCR4-NOT transcription complex subunit 4 protein-coding 89 0.0106
+4851 NOTCH1 notch 1 protein-coding 371 0.04418
+4852 NPY neuropeptide Y protein-coding 24 0.002858
+4853 NOTCH2 notch 2 protein-coding 234 0.02787
+4854 NOTCH3 notch 3 protein-coding 241 0.0287
+4855 NOTCH4 notch 4 protein-coding 225 0.0268
+4856 NOV nephroblastoma overexpressed protein-coding 50 0.005955
+4857 NOVA1 NOVA alternative splicing regulator 1 protein-coding 143 0.01703
+4858 NOVA2 NOVA alternative splicing regulator 2 protein-coding 40 0.004764
+4860 PNP purine nucleoside phosphorylase protein-coding 36 0.004287
+4861 NPAS1 neuronal PAS domain protein 1 protein-coding 38 0.004525
+4862 NPAS2 neuronal PAS domain protein 2 protein-coding 99 0.01179
+4863 NPAT nuclear protein, coactivator of histone transcription protein-coding 141 0.01679
+4864 NPC1 NPC intracellular cholesterol transporter 1 protein-coding 121 0.01441
+4867 NPHP1 nephrocystin 1 protein-coding 103 0.01227
+4868 NPHS1 NPHS1, nephrin protein-coding 161 0.01917
+4869 NPM1 nucleophosmin 1 protein-coding 25 0.002977
+4878 NPPA natriuretic peptide A protein-coding 22 0.00262
+4879 NPPB natriuretic peptide B protein-coding 19 0.002263
+4880 NPPC natriuretic peptide C protein-coding 45 0.005359
+4881 NPR1 natriuretic peptide receptor 1 protein-coding 107 0.01274
+4882 NPR2 natriuretic peptide receptor 2 protein-coding 114 0.01358
+4883 NPR3 natriuretic peptide receptor 3 protein-coding 88 0.01048
+4884 NPTX1 neuronal pentraxin 1 protein-coding 51 0.006074
+4885 NPTX2 neuronal pentraxin 2 protein-coding 66 0.00786
+4886 NPY1R neuropeptide Y receptor Y1 protein-coding 90 0.01072
+4887 NPY2R neuropeptide Y receptor Y2 protein-coding 88 0.01048
+4888 NPY6R neuropeptide Y receptor Y6 (pseudogene) pseudo 20 0.002382
+4889 NPY5R neuropeptide Y receptor Y5 protein-coding 104 0.01239
+4891 SLC11A2 solute carrier family 11 member 2 protein-coding 55 0.00655
+4892 NRAP nebulin related anchoring protein protein-coding 227 0.02703
+4893 NRAS NRAS proto-oncogene, GTPase protein-coding 149 0.01774
+4897 NRCAM neuronal cell adhesion molecule protein-coding 189 0.02251
+4898 NRDC nardilysin convertase protein-coding 149 0.01774
+4899 NRF1 nuclear respiratory factor 1 protein-coding 54 0.006431
+4900 NRGN neurogranin protein-coding 8 0.0009527
+4901 NRL neural retina leucine zipper protein-coding 17 0.002025
+4902 NRTN neurturin protein-coding 8 0.0009527
+4904 YBX1 Y-box binding protein 1 protein-coding 35 0.004168
+4905 NSF N-ethylmaleimide sensitive factor, vesicle fusing ATPase protein-coding 52 0.006193
+4907 NT5E 5'-nucleotidase ecto protein-coding 52 0.006193
+4908 NTF3 neurotrophin 3 protein-coding 42 0.005002
+4909 NTF4 neurotrophin 4 protein-coding 24 0.002858
+4913 NTHL1 nth like DNA glycosylase 1 protein-coding 45 0.005359
+4914 NTRK1 neurotrophic receptor tyrosine kinase 1 protein-coding 118 0.01405
+4915 NTRK2 neurotrophic receptor tyrosine kinase 2 protein-coding 126 0.01501
+4916 NTRK3 neurotrophic receptor tyrosine kinase 3 protein-coding 200 0.02382
+4917 NTN3 netrin 3 protein-coding 35 0.004168
+4919 ROR1 receptor tyrosine kinase like orphan receptor 1 protein-coding 115 0.0137
+4920 ROR2 receptor tyrosine kinase like orphan receptor 2 protein-coding 158 0.01882
+4921 DDR2 discoidin domain receptor tyrosine kinase 2 protein-coding 181 0.02156
+4922 NTS neurotensin protein-coding 33 0.00393
+4923 NTSR1 neurotensin receptor 1 protein-coding 70 0.008336
+4924 NUCB1 nucleobindin 1 protein-coding 48 0.005716
+4925 NUCB2 nucleobindin 2 protein-coding 38 0.004525
+4926 NUMA1 nuclear mitotic apparatus protein 1 protein-coding 189 0.02251
+4927 NUP88 nucleoporin 88 protein-coding 72 0.008574
+4928 NUP98 nucleoporin 98 protein-coding 168 0.02001
+4929 NR4A2 nuclear receptor subfamily 4 group A member 2 protein-coding 105 0.0125
+4931 NVL nuclear VCP-like protein-coding 89 0.0106
+4935 GPR143 G protein-coupled receptor 143 protein-coding 48 0.005716
+4938 OAS1 2'-5'-oligoadenylate synthetase 1 protein-coding 50 0.005955
+4939 OAS2 2'-5'-oligoadenylate synthetase 2 protein-coding 117 0.01393
+4940 OAS3 2'-5'-oligoadenylate synthetase 3 protein-coding 99 0.01179
+4942 OAT ornithine aminotransferase protein-coding 44 0.00524
+4943 TBC1D25 TBC1 domain family member 25 protein-coding 96 0.01143
+4946 OAZ1 ornithine decarboxylase antizyme 1 protein-coding 27 0.003215
+4947 OAZ2 ornithine decarboxylase antizyme 2 protein-coding 18 0.002144
+4948 OCA2 OCA2 melanosomal transmembrane protein protein-coding 182 0.02167
+4951 OCM2 oncomodulin 2 protein-coding 24 0.002858
+4952 OCRL OCRL, inositol polyphosphate-5-phosphatase protein-coding 224 0.02668
+4953 ODC1 ornithine decarboxylase 1 protein-coding 47 0.005597
+4956 ODF1 outer dense fiber of sperm tails 1 protein-coding 136 0.0162
+4957 ODF2 outer dense fiber of sperm tails 2 protein-coding 95 0.01131
+4958 OMD osteomodulin protein-coding 54 0.006431
+4967 OGDH oxoglutarate dehydrogenase protein-coding 121 0.01441
+4968 OGG1 8-oxoguanine DNA glycosylase protein-coding 39 0.004645
+4969 OGN osteoglycin protein-coding 42 0.005002
+4973 OLR1 oxidized low density lipoprotein receptor 1 protein-coding 39 0.004645
+4974 OMG oligodendrocyte myelin glycoprotein protein-coding 31 0.003692
+4975 OMP olfactory marker protein protein-coding 29 0.003454
+4976 OPA1 OPA1, mitochondrial dynamin like GTPase protein-coding 105 0.0125
+4978 OPCML opioid binding protein/cell adhesion molecule like protein-coding 119 0.01417
+4982 TNFRSF11B TNF receptor superfamily member 11b protein-coding 64 0.007622
+4983 OPHN1 oligophrenin 1 protein-coding 106 0.01262
+4985 OPRD1 opioid receptor delta 1 protein-coding 62 0.007384
+4986 OPRK1 opioid receptor kappa 1 protein-coding 88 0.01048
+4987 OPRL1 opioid related nociceptin receptor 1 protein-coding 77 0.00917
+4988 OPRM1 opioid receptor mu 1 protein-coding 98 0.01167
+4990 SIX6 SIX homeobox 6 protein-coding 39 0.004645
+4991 OR1D2 olfactory receptor family 1 subfamily D member 2 protein-coding 47 0.005597
+4992 OR1F1 olfactory receptor family 1 subfamily F member 1 protein-coding 39 0.004645
+4993 OR2C1 olfactory receptor family 2 subfamily C member 1 protein-coding 43 0.005121
+4994 OR3A1 olfactory receptor family 3 subfamily A member 1 protein-coding 54 0.006431
+4995 OR3A2 olfactory receptor family 3 subfamily A member 2 protein-coding 43 0.005121
+4998 ORC1 origin recognition complex subunit 1 protein-coding 88 0.01048
+4999 ORC2 origin recognition complex subunit 2 protein-coding 74 0.008813
+5000 ORC4 origin recognition complex subunit 4 protein-coding 46 0.005478
+5001 ORC5 origin recognition complex subunit 5 protein-coding 53 0.006312
+5002 SLC22A18 solute carrier family 22 member 18 protein-coding 34 0.004049
+5003 SLC22A18AS solute carrier family 22 member 18 antisense protein-coding 20 0.002382
+5004 ORM1 orosomucoid 1 protein-coding 34 0.004049
+5005 ORM2 orosomucoid 2 protein-coding 31 0.003692
+5007 OSBP oxysterol binding protein protein-coding 77 0.00917
+5008 OSM oncostatin M protein-coding 33 0.00393
+5009 OTC ornithine carbamoyltransferase protein-coding 62 0.007384
+5010 CLDN11 claudin 11 protein-coding 27 0.003215
+5013 OTX1 orthodenticle homeobox 1 protein-coding 49 0.005835
+5015 OTX2 orthodenticle homeobox 2 protein-coding 73 0.008694
+5016 OVGP1 oviductal glycoprotein 1 protein-coding 82 0.009765
+5017 OVOL1 ovo like transcriptional repressor 1 protein-coding 30 0.003573
+5018 OXA1L OXA1L, mitochondrial inner membrane protein protein-coding 45 0.005359
+5019 OXCT1 3-oxoacid CoA-transferase 1 protein-coding 76 0.009051
+5020 OXT oxytocin/neurophysin I prepropeptide protein-coding 8 0.0009527
+5021 OXTR oxytocin receptor protein-coding 33 0.00393
+5023 P2RX1 purinergic receptor P2X 1 protein-coding 54 0.006431
+5024 P2RX3 purinergic receptor P2X 3 protein-coding 53 0.006312
+5025 P2RX4 purinergic receptor P2X 4 protein-coding 38 0.004525
+5026 P2RX5 purinergic receptor P2X 5 protein-coding 45 0.005359
+5027 P2RX7 purinergic receptor P2X 7 protein-coding 47 0.005597
+5028 P2RY1 purinergic receptor P2Y1 protein-coding 52 0.006193
+5029 P2RY2 purinergic receptor P2Y2 protein-coding 47 0.005597
+5030 P2RY4 pyrimidinergic receptor P2Y4 protein-coding 54 0.006431
+5031 P2RY6 pyrimidinergic receptor P2Y6 protein-coding 48 0.005716
+5032 P2RY11 purinergic receptor P2Y11 protein-coding 20 0.002382
+5033 P4HA1 prolyl 4-hydroxylase subunit alpha 1 protein-coding 63 0.007503
+5034 P4HB prolyl 4-hydroxylase subunit beta protein-coding 60 0.007145
+5036 PA2G4 proliferation-associated 2G4 protein-coding 42 0.005002
+5037 PEBP1 phosphatidylethanolamine binding protein 1 protein-coding 19 0.002263
+5042 PABPC3 poly(A) binding protein cytoplasmic 3 protein-coding 121 0.01441
+5045 FURIN furin, paired basic amino acid cleaving enzyme protein-coding 94 0.01119
+5046 PCSK6 proprotein convertase subtilisin/kexin type 6 protein-coding 109 0.01298
+5047 PAEP progestagen associated endometrial protein protein-coding 21 0.002501
+5048 PAFAH1B1 platelet activating factor acetylhydrolase 1b regulatory subunit 1 protein-coding 53 0.006312
+5049 PAFAH1B2 platelet activating factor acetylhydrolase 1b catalytic subunit 2 protein-coding 27 0.003215
+5050 PAFAH1B3 platelet activating factor acetylhydrolase 1b catalytic subunit 3 protein-coding 14 0.001667
+5051 PAFAH2 platelet activating factor acetylhydrolase 2 protein-coding 45 0.005359
+5052 PRDX1 peroxiredoxin 1 protein-coding 28 0.003335
+5053 PAH phenylalanine hydroxylase protein-coding 97 0.01155
+5054 SERPINE1 serpin family E member 1 protein-coding 64 0.007622
+5055 SERPINB2 serpin family B member 2 protein-coding 74 0.008813
+5058 PAK1 p21 (RAC1) activated kinase 1 protein-coding 61 0.007264
+5062 PAK2 p21 (RAC1) activated kinase 2 protein-coding 75 0.008932
+5063 PAK3 p21 (RAC1) activated kinase 3 protein-coding 107 0.01274
+5064 PALM paralemmin protein-coding 48 0.005716
+5066 PAM peptidylglycine alpha-amidating monooxygenase protein-coding 98 0.01167
+5067 CNTN3 contactin 3 protein-coding 211 0.02513
+5068 REG3A regenerating family member 3 alpha protein-coding 86 0.01024
+5069 PAPPA pappalysin 1 protein-coding 246 0.0293
+5071 PRKN parkin RBR E3 ubiquitin protein ligase protein-coding 95 0.01131
+5073 PARN poly(A)-specific ribonuclease protein-coding 68 0.008098
+5074 PAWR pro-apoptotic WT1 regulator protein-coding 35 0.004168
+5075 PAX1 paired box 1 protein-coding 110 0.0131
+5076 PAX2 paired box 2 protein-coding 63 0.007503
+5077 PAX3 paired box 3 protein-coding 98 0.01167
+5078 PAX4 paired box 4 protein-coding 78 0.009289
+5079 PAX5 paired box 5 protein-coding 92 0.01096
+5080 PAX6 paired box 6 protein-coding 87 0.01036
+5081 PAX7 paired box 7 protein-coding 88 0.01048
+5082 PDCL phosducin like protein-coding 41 0.004883
+5083 PAX9 paired box 9 protein-coding 49 0.005835
+5087 PBX1 PBX homeobox 1 protein-coding 73 0.008694
+5088 PBX2P1 PBX homeobox 2 pseudogene 1 pseudo 48 0.005716
+5089 PBX2 PBX homeobox 2 protein-coding 48 0.005716
+5090 PBX3 PBX homeobox 3 protein-coding 65 0.007741
+5091 PC pyruvate carboxylase protein-coding 139 0.01655
+5092 PCBD1 pterin-4 alpha-carbinolamine dehydratase 1 protein-coding 6 0.0007145
+5093 PCBP1 poly(rC) binding protein 1 protein-coding 61 0.007264
+5094 PCBP2 poly(rC) binding protein 2 protein-coding 43 0.005121
+5095 PCCA propionyl-CoA carboxylase alpha subunit protein-coding 97 0.01155
+5096 PCCB propionyl-CoA carboxylase beta subunit protein-coding 50 0.005955
+5097 PCDH1 protocadherin 1 protein-coding 140 0.01667
+5098 PCDHGC3 protocadherin gamma subfamily C, 3 protein-coding 96 0.01143
+5099 PCDH7 protocadherin 7 protein-coding 172 0.02048
+5100 PCDH8 protocadherin 8 protein-coding 129 0.01536
+5101 PCDH9 protocadherin 9 protein-coding 260 0.03096
+5104 SERPINA5 serpin family A member 5 protein-coding 81 0.009646
+5105 PCK1 phosphoenolpyruvate carboxykinase 1 protein-coding 104 0.01239
+5106 PCK2 phosphoenolpyruvate carboxykinase 2, mitochondrial protein-coding 65 0.007741
+5108 PCM1 pericentriolar material 1 protein-coding 132 0.01572
+5110 PCMT1 protein-L-isoaspartate (D-aspartate) O-methyltransferase protein-coding 22 0.00262
+5111 PCNA proliferating cell nuclear antigen protein-coding 33 0.00393
+5116 PCNT pericentrin protein-coding 294 0.03501
+5118 PCOLCE procollagen C-endopeptidase enhancer protein-coding 49 0.005835
+5119 CHMP1A charged multivesicular body protein 1A protein-coding 19 0.002263
+5121 PCP4 Purkinje cell protein 4 protein-coding 12 0.001429
+5122 PCSK1 proprotein convertase subtilisin/kexin type 1 protein-coding 104 0.01239
+5125 PCSK5 proprotein convertase subtilisin/kexin type 5 protein-coding 192 0.02287
+5126 PCSK2 proprotein convertase subtilisin/kexin type 2 protein-coding 115 0.0137
+5127 CDK16 cyclin dependent kinase 16 protein-coding 48 0.005716
+5128 CDK17 cyclin dependent kinase 17 protein-coding 51 0.006074
+5129 CDK18 cyclin dependent kinase 18 protein-coding 52 0.006193
+5130 PCYT1A phosphate cytidylyltransferase 1, choline, alpha protein-coding 44 0.00524
+5132 PDC phosducin protein-coding 25 0.002977
+5133 PDCD1 programmed cell death 1 protein-coding 47 0.005597
+5134 PDCD2 programmed cell death 2 protein-coding 23 0.002739
+5136 PDE1A phosphodiesterase 1A protein-coding 91 0.01084
+5137 PDE1C phosphodiesterase 1C protein-coding 185 0.02203
+5138 PDE2A phosphodiesterase 2A protein-coding 102 0.01215
+5139 PDE3A phosphodiesterase 3A protein-coding 235 0.02799
+5140 PDE3B phosphodiesterase 3B protein-coding 126 0.01501
+5141 PDE4A phosphodiesterase 4A protein-coding 81 0.009646
+5142 PDE4B phosphodiesterase 4B protein-coding 98 0.01167
+5143 PDE4C phosphodiesterase 4C protein-coding 86 0.01024
+5144 PDE4D phosphodiesterase 4D protein-coding 98 0.01167
+5145 PDE6A phosphodiesterase 6A protein-coding 115 0.0137
+5146 PDE6C phosphodiesterase 6C protein-coding 96 0.01143
+5147 PDE6D phosphodiesterase 6D protein-coding 15 0.001786
+5148 PDE6G phosphodiesterase 6G protein-coding 12 0.001429
+5149 PDE6H phosphodiesterase 6H protein-coding 9 0.001072
+5150 PDE7A phosphodiesterase 7A protein-coding 51 0.006074
+5151 PDE8A phosphodiesterase 8A protein-coding 82 0.009765
+5152 PDE9A phosphodiesterase 9A protein-coding 89 0.0106
+5153 PDE1B phosphodiesterase 1B protein-coding 90 0.01072
+5154 PDGFA platelet derived growth factor subunit A protein-coding 36 0.004287
+5155 PDGFB platelet derived growth factor subunit B protein-coding 33 0.00393
+5156 PDGFRA platelet derived growth factor receptor alpha protein-coding 218 0.02596
+5157 PDGFRL platelet derived growth factor receptor like protein-coding 42 0.005002
+5158 PDE6B phosphodiesterase 6B protein-coding 110 0.0131
+5159 PDGFRB platelet derived growth factor receptor beta protein-coding 127 0.01512
+5160 PDHA1 pyruvate dehydrogenase E1 alpha 1 subunit protein-coding 57 0.006788
+5161 PDHA2 pyruvate dehydrogenase E1 alpha 2 subunit protein-coding 130 0.01548
+5162 PDHB pyruvate dehydrogenase E1 beta subunit protein-coding 25 0.002977
+5163 PDK1 pyruvate dehydrogenase kinase 1 protein-coding 44 0.00524
+5164 PDK2 pyruvate dehydrogenase kinase 2 protein-coding 33 0.00393
+5165 PDK3 pyruvate dehydrogenase kinase 3 protein-coding 59 0.007026
+5166 PDK4 pyruvate dehydrogenase kinase 4 protein-coding 59 0.007026
+5167 ENPP1 ectonucleotide pyrophosphatase/phosphodiesterase 1 protein-coding 124 0.01477
+5168 ENPP2 ectonucleotide pyrophosphatase/phosphodiesterase 2 protein-coding 159 0.01894
+5169 ENPP3 ectonucleotide pyrophosphatase/phosphodiesterase 3 protein-coding 117 0.01393
+5170 PDPK1 3-phosphoinositide dependent protein kinase 1 protein-coding 65 0.007741
+5172 SLC26A4 solute carrier family 26 member 4 protein-coding 124 0.01477
+5173 PDYN prodynorphin protein-coding 103 0.01227
+5174 PDZK1 PDZ domain containing 1 protein-coding 38 0.004525
+5176 SERPINF1 serpin family F member 1 protein-coding 47 0.005597
+5178 PEG3 paternally expressed 3 protein-coding 395 0.04704
+5179 PENK proenkephalin protein-coding 64 0.007622
+5184 PEPD peptidase D protein-coding 49 0.005835
+5187 PER1 period circadian regulator 1 protein-coding 127 0.01512
+5188 GATB glutamyl-tRNA amidotransferase subunit B protein-coding 67 0.007979
+5189 PEX1 peroxisomal biogenesis factor 1 protein-coding 132 0.01572
+5190 PEX6 peroxisomal biogenesis factor 6 protein-coding 62 0.007384
+5191 PEX7 peroxisomal biogenesis factor 7 protein-coding 33 0.00393
+5192 PEX10 peroxisomal biogenesis factor 10 protein-coding 29 0.003454
+5193 PEX12 peroxisomal biogenesis factor 12 protein-coding 49 0.005835
+5194 PEX13 peroxisomal biogenesis factor 13 protein-coding 40 0.004764
+5195 PEX14 peroxisomal biogenesis factor 14 protein-coding 38 0.004525
+5196 PF4 platelet factor 4 protein-coding 14 0.001667
+5197 PF4V1 platelet factor 4 variant 1 protein-coding 18 0.002144
+5198 PFAS phosphoribosylformylglycinamidine synthase protein-coding 120 0.01429
+5199 CFP complement factor properdin protein-coding 62 0.007384
+5201 PFDN1 prefoldin subunit 1 protein-coding 12 0.001429
+5202 PFDN2 prefoldin subunit 2 protein-coding 18 0.002144
+5203 PFDN4 prefoldin subunit 4 protein-coding 21 0.002501
+5204 PFDN5 prefoldin subunit 5 protein-coding 14 0.001667
+5205 ATP8B1 ATPase phospholipid transporting 8B1 protein-coding 138 0.01643
+5207 PFKFB1 6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 1 protein-coding 85 0.01012
+5208 PFKFB2 6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 2 protein-coding 60 0.007145
+5209 PFKFB3 6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 3 protein-coding 55 0.00655
+5210 PFKFB4 6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 4 protein-coding 44 0.00524
+5211 PFKL phosphofructokinase, liver type protein-coding 90 0.01072
+5212 VIT vitrin protein-coding 116 0.01381
+5213 PFKM phosphofructokinase, muscle protein-coding 75 0.008932
+5214 PFKP phosphofructokinase, platelet protein-coding 116 0.01381
+5216 PFN1 profilin 1 protein-coding 17 0.002025
+5217 PFN2 profilin 2 protein-coding 15 0.001786
+5218 CDK14 cyclin dependent kinase 14 protein-coding 82 0.009765
+5222 PGA5 pepsinogen 5, group I (pepsinogen A) protein-coding 19 0.002263
+5223 PGAM1 phosphoglycerate mutase 1 protein-coding 21 0.002501
+5224 PGAM2 phosphoglycerate mutase 2 protein-coding 42 0.005002
+5225 PGC progastricsin protein-coding 49 0.005835
+5226 PGD phosphogluconate dehydrogenase protein-coding 51 0.006074
+5228 PGF placental growth factor protein-coding 35 0.004168
+5229 PGGT1B protein geranylgeranyltransferase type I subunit beta protein-coding 40 0.004764
+5230 PGK1 phosphoglycerate kinase 1 protein-coding 53 0.006312
+5232 PGK2 phosphoglycerate kinase 2 protein-coding 92 0.01096
+5233 PGK1P2 phosphoglycerate kinase 1, pseudogene 2 pseudo 92 0.01096
+5236 PGM1 phosphoglucomutase 1 protein-coding 63 0.007503
+5238 PGM3 phosphoglucomutase 3 protein-coding 58 0.006907
+5239 PGM5 phosphoglucomutase 5 protein-coding 143 0.01703
+5241 PGR progesterone receptor protein-coding 141 0.01679
+5243 ABCB1 ATP binding cassette subfamily B member 1 protein-coding 275 0.03275
+5244 ABCB4 ATP binding cassette subfamily B member 4 protein-coding 199 0.0237
+5245 PHB prohibitin protein-coding 33 0.00393
+5250 SLC25A3 solute carrier family 25 member 3 protein-coding 48 0.005716
+5251 PHEX phosphate regulating endopeptidase homolog X-linked protein-coding 127 0.01512
+5252 PHF1 PHD finger protein 1 protein-coding 163 0.01941
+5253 PHF2 PHD finger protein 2 protein-coding 110 0.0131
+5255 PHKA1 phosphorylase kinase regulatory subunit alpha 1 protein-coding 152 0.0181
+5256 PHKA2 phosphorylase kinase regulatory subunit alpha 2 protein-coding 176 0.02096
+5257 PHKB phosphorylase kinase regulatory subunit beta protein-coding 118 0.01405
+5260 PHKG1 phosphorylase kinase catalytic subunit gamma 1 protein-coding 50 0.005955
+5261 PHKG2 phosphorylase kinase catalytic subunit gamma 2 protein-coding 44 0.00524
+5264 PHYH phytanoyl-CoA 2-hydroxylase protein-coding 54 0.006431
+5265 SERPINA1 serpin family A member 1 protein-coding 57 0.006788
+5266 PI3 peptidase inhibitor 3 protein-coding 20 0.002382
+5267 SERPINA4 serpin family A member 4 protein-coding 81 0.009646
+5268 SERPINB5 serpin family B member 5 protein-coding 42 0.005002
+5269 SERPINB6 serpin family B member 6 protein-coding 49 0.005835
+5270 SERPINE2 serpin family E member 2 protein-coding 61 0.007264
+5271 SERPINB8 serpin family B member 8 protein-coding 114 0.01358
+5272 SERPINB9 serpin family B member 9 protein-coding 51 0.006074
+5273 SERPINB10 serpin family B member 10 protein-coding 63 0.007503
+5274 SERPINI1 serpin family I member 1 protein-coding 62 0.007384
+5275 SERPINB13 serpin family B member 13 protein-coding 68 0.008098
+5276 SERPINI2 serpin family I member 2 protein-coding 94 0.01119
+5277 PIGA phosphatidylinositol glycan anchor biosynthesis class A protein-coding 51 0.006074
+5279 PIGC phosphatidylinositol glycan anchor biosynthesis class C protein-coding 35 0.004168
+5281 PIGF phosphatidylinositol glycan anchor biosynthesis class F protein-coding 17 0.002025
+5283 PIGH phosphatidylinositol glycan anchor biosynthesis class H protein-coding 12 0.001429
+5284 PIGR polymeric immunoglobulin receptor protein-coding 97 0.01155
+5286 PIK3C2A phosphatidylinositol-4-phosphate 3-kinase catalytic subunit type 2 alpha protein-coding 151 0.01798
+5287 PIK3C2B phosphatidylinositol-4-phosphate 3-kinase catalytic subunit type 2 beta protein-coding 177 0.02108
+5288 PIK3C2G phosphatidylinositol-4-phosphate 3-kinase catalytic subunit type 2 gamma protein-coding 180 0.02144
+5289 PIK3C3 phosphatidylinositol 3-kinase catalytic subunit type 3 protein-coding 123 0.01465
+5290 PIK3CA phosphatidylinositol-4,5-bisphosphate 3-kinase catalytic subunit alpha protein-coding 1143 0.1361
+5291 PIK3CB phosphatidylinositol-4,5-bisphosphate 3-kinase catalytic subunit beta protein-coding 127 0.01512
+5292 PIM1 Pim-1 proto-oncogene, serine/threonine kinase protein-coding 40 0.004764
+5293 PIK3CD phosphatidylinositol-4,5-bisphosphate 3-kinase catalytic subunit delta protein-coding 107 0.01274
+5294 PIK3CG phosphatidylinositol-4,5-bisphosphate 3-kinase catalytic subunit gamma protein-coding 234 0.02787
+5295 PIK3R1 phosphoinositide-3-kinase regulatory subunit 1 protein-coding 292 0.03477
+5296 PIK3R2 phosphoinositide-3-kinase regulatory subunit 2 protein-coding 87 0.01036
+5297 PI4KA phosphatidylinositol 4-kinase alpha protein-coding 188 0.02239
+5298 PI4KB phosphatidylinositol 4-kinase beta protein-coding 84 0.01
+5300 PIN1 peptidylprolyl cis/trans isomerase, NIMA-interacting 1 protein-coding 22 0.00262
+5303 PIN4 peptidylprolyl cis/trans isomerase, NIMA-interacting 4 protein-coding 18 0.002144
+5304 PIP prolactin induced protein protein-coding 28 0.003335
+5305 PIP4K2A phosphatidylinositol-5-phosphate 4-kinase type 2 alpha protein-coding 59 0.007026
+5306 PITPNA phosphatidylinositol transfer protein alpha protein-coding 24 0.002858
+5307 PITX1 paired like homeodomain 1 protein-coding 40 0.004764
+5308 PITX2 paired like homeodomain 2 protein-coding 69 0.008217
+5309 PITX3 paired like homeodomain 3 protein-coding 61 0.007264
+5310 PKD1 polycystin 1, transient receptor potential channel interacting protein-coding 280 0.03335
+5311 PKD2 polycystin 2, transient receptor potential cation channel protein-coding 101 0.01203
+5313 PKLR pyruvate kinase L/R protein-coding 97 0.01155
+5314 PKHD1 PKHD1, fibrocystin/polyductin protein-coding 517 0.06157
+5315 PKM pyruvate kinase M1/2 protein-coding 62 0.007384
+5316 PKNOX1 PBX/knotted 1 homeobox 1 protein-coding 51 0.006074
+5317 PKP1 plakophilin 1 protein-coding 81 0.009646
+5318 PKP2 plakophilin 2 protein-coding 122 0.01453
+5319 PLA2G1B phospholipase A2 group IB protein-coding 19 0.002263
+5320 PLA2G2A phospholipase A2 group IIA protein-coding 22 0.00262
+5321 PLA2G4A phospholipase A2 group IVA protein-coding 123 0.01465
+5322 PLA2G5 phospholipase A2 group V protein-coding 29 0.003454
+5324 PLAG1 PLAG1 zinc finger protein-coding 82 0.009765
+5325 PLAGL1 PLAG1 like zinc finger 1 protein-coding 39 0.004645
+5326 PLAGL2 PLAG1 like zinc finger 2 protein-coding 54 0.006431
+5327 PLAT plasminogen activator, tissue type protein-coding 89 0.0106
+5328 PLAU plasminogen activator, urokinase protein-coding 54 0.006431
+5329 PLAUR plasminogen activator, urokinase receptor protein-coding 42 0.005002
+5330 PLCB2 phospholipase C beta 2 protein-coding 109 0.01298
+5331 PLCB3 phospholipase C beta 3 protein-coding 126 0.01501
+5332 PLCB4 phospholipase C beta 4 protein-coding 202 0.02406
+5333 PLCD1 phospholipase C delta 1 protein-coding 76 0.009051
+5334 PLCL1 phospholipase C like 1 (inactive) protein-coding 219 0.02608
+5335 PLCG1 phospholipase C gamma 1 protein-coding 129 0.01536
+5336 PLCG2 phospholipase C gamma 2 protein-coding 170 0.02025
+5337 PLD1 phospholipase D1 protein-coding 154 0.01834
+5338 PLD2 phospholipase D2 protein-coding 88 0.01048
+5339 PLEC plectin protein-coding 433 0.05157
+5340 PLG plasminogen protein-coding 185 0.02203
+5341 PLEK pleckstrin protein-coding 79 0.009408
+5342 PLGLB2 plasminogen-like B2 protein-coding 3 0.0003573
+5343 PLGLB1 plasminogen-like B1 protein-coding 2 0.0002382
+5345 SERPINF2 serpin family F member 2 protein-coding 44 0.00524
+5346 PLIN1 perilipin 1 protein-coding 40 0.004764
+5347 PLK1 polo like kinase 1 protein-coding 83 0.009884
+5348 FXYD1 FXYD domain containing ion transport regulator 1 protein-coding 10 0.001191
+5349 FXYD3 FXYD domain containing ion transport regulator 3 protein-coding 20 0.002382
+5350 PLN phospholamban protein-coding 9 0.001072
+5351 PLOD1 procollagen-lysine,2-oxoglutarate 5-dioxygenase 1 protein-coding 64 0.007622
+5352 PLOD2 procollagen-lysine,2-oxoglutarate 5-dioxygenase 2 protein-coding 110 0.0131
+5354 PLP1 proteolipid protein 1 protein-coding 41 0.004883
+5355 PLP2 proteolipid protein 2 protein-coding 31 0.003692
+5356 PLRG1 pleiotropic regulator 1 protein-coding 69 0.008217
+5357 PLS1 plastin 1 protein-coding 81 0.009646
+5358 PLS3 plastin 3 protein-coding 67 0.007979
+5359 PLSCR1 phospholipid scramblase 1 protein-coding 45 0.005359
+5360 PLTP phospholipid transfer protein protein-coding 57 0.006788
+5361 PLXNA1 plexin A1 protein-coding 259 0.03084
+5362 PLXNA2 plexin A2 protein-coding 230 0.02739
+5364 PLXNB1 plexin B1 protein-coding 164 0.01953
+5365 PLXNB3 plexin B3 protein-coding 193 0.02298
+5366 PMAIP1 phorbol-12-myristate-13-acetate-induced protein 1 protein-coding 5 0.0005955
+5367 PMCH pro-melanin concentrating hormone protein-coding 20 0.002382
+5368 PNOC prepronociceptin protein-coding 22 0.00262
+5371 PML promyelocytic leukemia protein-coding 85 0.01012
+5372 PMM1 phosphomannomutase 1 protein-coding 24 0.002858
+5373 PMM2 phosphomannomutase 2 protein-coding 22 0.00262
+5375 PMP2 peripheral myelin protein 2 protein-coding 30 0.003573
+5376 PMP22 peripheral myelin protein 22 protein-coding 21 0.002501
+5378 PMS1 PMS1 homolog 1, mismatch repair system component protein-coding 108 0.01286
+5387 PMS2P3 PMS1 homolog 2, mismatch repair system component pseudogene 3 pseudo 9 0.001072
+5393 EXOSC9 exosome component 9 protein-coding 66 0.00786
+5394 EXOSC10 exosome component 10 protein-coding 92 0.01096
+5395 PMS2 PMS1 homolog 2, mismatch repair system component protein-coding 106 0.01262
+5396 PRRX1 paired related homeobox 1 protein-coding 59 0.007026
+5406 PNLIP pancreatic lipase protein-coding 112 0.01334
+5407 PNLIPRP1 pancreatic lipase related protein 1 protein-coding 67 0.007979
+5408 PNLIPRP2 pancreatic lipase related protein 2 (gene/pseudogene) protein-coding 69 0.008217
+5409 PNMT phenylethanolamine N-methyltransferase protein-coding 32 0.003811
+5411 PNN pinin, desmosome associated protein protein-coding 78 0.009289
+5412 UBL3 ubiquitin like 3 protein-coding 18 0.002144
+5413 SEPT5 septin 5 protein-coding 49 0.005835
+5414 SEPT4 septin 4 protein-coding 47 0.005597
+5420 PODXL podocalyxin like protein-coding 188 0.02239
+5422 POLA1 DNA polymerase alpha 1, catalytic subunit protein-coding 138 0.01643
+5423 POLB DNA polymerase beta protein-coding 44 0.00524
+5424 POLD1 DNA polymerase delta 1, catalytic subunit protein-coding 134 0.01596
+5425 POLD2 DNA polymerase delta 2, accessory subunit protein-coding 48 0.005716
+5426 POLE DNA polymerase epsilon, catalytic subunit protein-coding 265 0.03156
+5427 POLE2 DNA polymerase epsilon 2, accessory subunit protein-coding 38 0.004525
+5428 POLG DNA polymerase gamma, catalytic subunit protein-coding 114 0.01358
+5429 POLH DNA polymerase eta protein-coding 65 0.007741
+5430 POLR2A RNA polymerase II subunit A protein-coding 173 0.0206
+5431 POLR2B RNA polymerase II subunit B protein-coding 150 0.01786
+5432 POLR2C RNA polymerase II subunit C protein-coding 33 0.00393
+5433 POLR2D RNA polymerase II subunit D protein-coding 42 0.005002
+5434 POLR2E RNA polymerase II subunit E protein-coding 24 0.002858
+5435 POLR2F RNA polymerase II subunit F protein-coding 28 0.003335
+5436 POLR2G RNA polymerase II subunit G protein-coding 19 0.002263
+5437 POLR2H RNA polymerase II subunit H protein-coding 17 0.002025
+5438 POLR2I RNA polymerase II subunit I protein-coding 20 0.002382
+5439 POLR2J RNA polymerase II subunit J protein-coding 9 0.001072
+5440 POLR2K RNA polymerase II subunit K protein-coding 7 0.0008336
+5441 POLR2L RNA polymerase II subunit L protein-coding 9 0.001072
+5442 POLRMT RNA polymerase mitochondrial protein-coding 128 0.01524
+5443 POMC proopiomelanocortin protein-coding 39 0.004645
+5444 PON1 paraoxonase 1 protein-coding 71 0.008455
+5445 PON2 paraoxonase 2 protein-coding 41 0.004883
+5446 PON3 paraoxonase 3 protein-coding 70 0.008336
+5447 POR cytochrome p450 oxidoreductase protein-coding 63 0.007503
+5449 POU1F1 POU class 1 homeobox 1 protein-coding 39 0.004645
+5450 POU2AF1 POU class 2 associating factor 1 protein-coding 39 0.004645
+5451 POU2F1 POU class 2 homeobox 1 protein-coding 80 0.009527
+5452 POU2F2 POU class 2 homeobox 2 protein-coding 65 0.007741
+5453 POU3F1 POU class 3 homeobox 1 protein-coding 23 0.002739
+5454 POU3F2 POU class 3 homeobox 2 protein-coding 53 0.006312
+5455 POU3F3 POU class 3 homeobox 3 protein-coding 49 0.005835
+5456 POU3F4 POU class 3 homeobox 4 protein-coding 98 0.01167
+5457 POU4F1 POU class 4 homeobox 1 protein-coding 51 0.006074
+5458 POU4F2 POU class 4 homeobox 2 protein-coding 103 0.01227
+5459 POU4F3 POU class 4 homeobox 3 protein-coding 66 0.00786
+5460 POU5F1 POU class 5 homeobox 1 protein-coding 27 0.003215
+5462 POU5F1B POU class 5 homeobox 1B protein-coding 54 0.006431
+5463 POU6F1 POU class 6 homeobox 1 protein-coding 41 0.004883
+5464 PPA1 pyrophosphatase (inorganic) 1 protein-coding 25 0.002977
+5465 PPARA peroxisome proliferator activated receptor alpha protein-coding 57 0.006788
+5467 PPARD peroxisome proliferator activated receptor delta protein-coding 56 0.006669
+5468 PPARG peroxisome proliferator activated receptor gamma protein-coding 67 0.007979
+5469 MED1 mediator complex subunit 1 protein-coding 149 0.01774
+5470 PPEF2 protein phosphatase with EF-hand domain 2 protein-coding 113 0.01346
+5471 PPAT phosphoribosyl pyrophosphate amidotransferase protein-coding 57 0.006788
+5473 PPBP pro-platelet basic protein protein-coding 22 0.00262
+5475 PPEF1 protein phosphatase with EF-hand domain 1 protein-coding 108 0.01286
+5476 CTSA cathepsin A protein-coding 46 0.005478
+5478 PPIA peptidylprolyl isomerase A protein-coding 12 0.001429
+5479 PPIB peptidylprolyl isomerase B protein-coding 30 0.003573
+5480 PPIC peptidylprolyl isomerase C protein-coding 21 0.002501
+5481 PPID peptidylprolyl isomerase D protein-coding 44 0.00524
+5493 PPL periplakin protein-coding 176 0.02096
+5494 PPM1A protein phosphatase, Mg2+/Mn2+ dependent 1A protein-coding 57 0.006788
+5495 PPM1B protein phosphatase, Mg2+/Mn2+ dependent 1B protein-coding 66 0.00786
+5496 PPM1G protein phosphatase, Mg2+/Mn2+ dependent 1G protein-coding 49 0.005835
+5498 PPOX protoporphyrinogen oxidase protein-coding 49 0.005835
+5499 PPP1CA protein phosphatase 1 catalytic subunit alpha protein-coding 38 0.004525
+5500 PPP1CB protein phosphatase 1 catalytic subunit beta protein-coding 40 0.004764
+5501 PPP1CC protein phosphatase 1 catalytic subunit gamma protein-coding 27 0.003215
+5502 PPP1R1A protein phosphatase 1 regulatory inhibitor subunit 1A protein-coding 20 0.002382
+5504 PPP1R2 protein phosphatase 1 regulatory inhibitor subunit 2 protein-coding 28 0.003335
+5506 PPP1R3A protein phosphatase 1 regulatory subunit 3A protein-coding 285 0.03394
+5507 PPP1R3C protein phosphatase 1 regulatory subunit 3C protein-coding 42 0.005002
+5509 PPP1R3D protein phosphatase 1 regulatory subunit 3D protein-coding 33 0.00393
+5510 PPP1R7 protein phosphatase 1 regulatory subunit 7 protein-coding 43 0.005121
+5511 PPP1R8 protein phosphatase 1 regulatory subunit 8 protein-coding 25 0.002977
+5514 PPP1R10 protein phosphatase 1 regulatory subunit 10 protein-coding 110 0.0131
+5515 PPP2CA protein phosphatase 2 catalytic subunit alpha protein-coding 42 0.005002
+5516 PPP2CB protein phosphatase 2 catalytic subunit beta protein-coding 34 0.004049
+5518 PPP2R1A protein phosphatase 2 scaffold subunit Aalpha protein-coding 167 0.01989
+5519 PPP2R1B protein phosphatase 2 scaffold subunit Abeta protein-coding 69 0.008217
+5520 PPP2R2A protein phosphatase 2 regulatory subunit Balpha protein-coding 69 0.008217
+5521 PPP2R2B protein phosphatase 2 regulatory subunit Bbeta protein-coding 83 0.009884
+5522 PPP2R2C protein phosphatase 2 regulatory subunit Bgamma protein-coding 74 0.008813
+5523 PPP2R3A protein phosphatase 2 regulatory subunit B''alpha protein-coding 99 0.01179
+5524 PTPA protein phosphatase 2 phosphatase activator protein-coding 30 0.003573
+5525 PPP2R5A protein phosphatase 2 regulatory subunit B'alpha protein-coding 69 0.008217
+5526 PPP2R5B protein phosphatase 2 regulatory subunit B'beta protein-coding 71 0.008455
+5527 PPP2R5C protein phosphatase 2 regulatory subunit B'gamma protein-coding 62 0.007384
+5528 PPP2R5D protein phosphatase 2 regulatory subunit B'delta protein-coding 69 0.008217
+5529 PPP2R5E protein phosphatase 2 regulatory subunit B'epsilon protein-coding 61 0.007264
+5530 PPP3CA protein phosphatase 3 catalytic subunit alpha protein-coding 85 0.01012
+5531 PPP4C protein phosphatase 4 catalytic subunit protein-coding 34 0.004049
+5532 PPP3CB protein phosphatase 3 catalytic subunit beta protein-coding 54 0.006431
+5533 PPP3CC protein phosphatase 3 catalytic subunit gamma protein-coding 48 0.005716
+5534 PPP3R1 protein phosphatase 3 regulatory subunit B, alpha protein-coding 20 0.002382
+5535 PPP3R2 protein phosphatase 3 regulatory subunit B, beta protein-coding 50 0.005955
+5536 PPP5C protein phosphatase 5 catalytic subunit protein-coding 63 0.007503
+5537 PPP6C protein phosphatase 6 catalytic subunit protein-coding 51 0.006074
+5538 PPT1 palmitoyl-protein thioesterase 1 protein-coding 32 0.003811
+5539 PPY pancreatic polypeptide protein-coding 47 0.005597
+5540 NPY4R neuropeptide Y receptor Y4 protein-coding 84 0.01
+5542 PRB1 proline rich protein BstNI subfamily 1 protein-coding 49 0.005835
+5544 PRB3 proline rich protein BstNI subfamily 3 protein-coding 68 0.008098
+5545 PRB4 proline rich protein BstNI subfamily 4 protein-coding 62 0.007384
+5546 PRCC papillary renal cell carcinoma (translocation-associated) protein-coding 52 0.006193
+5547 PRCP prolylcarboxypeptidase protein-coding 60 0.007145
+5549 PRELP proline and arginine rich end leucine rich repeat protein protein-coding 53 0.006312
+5550 PREP prolyl endopeptidase protein-coding 73 0.008694
+5551 PRF1 perforin 1 protein-coding 90 0.01072
+5552 SRGN serglycin protein-coding 24 0.002858
+5553 PRG2 proteoglycan 2, pro eosinophil major basic protein protein-coding 72 0.008574
+5554 PRH1 proline rich protein HaeIII subfamily 1 protein-coding 24 0.002858
+5555 PRH2 proline rich protein HaeIII subfamily 2 protein-coding 20 0.002382
+5557 PRIM1 DNA primase subunit 1 protein-coding 42 0.005002
+5558 PRIM2 DNA primase subunit 2 protein-coding 79 0.009408
+5562 PRKAA1 protein kinase AMP-activated catalytic subunit alpha 1 protein-coding 72 0.008574
+5563 PRKAA2 protein kinase AMP-activated catalytic subunit alpha 2 protein-coding 87 0.01036
+5564 PRKAB1 protein kinase AMP-activated non-catalytic subunit beta 1 protein-coding 35 0.004168
+5565 PRKAB2 protein kinase AMP-activated non-catalytic subunit beta 2 protein-coding 28 0.003335
+5566 PRKACA protein kinase cAMP-activated catalytic subunit alpha protein-coding 43 0.005121
+5567 PRKACB protein kinase cAMP-activated catalytic subunit beta protein-coding 47 0.005597
+5568 PRKACG protein kinase cAMP-activated catalytic subunit gamma protein-coding 53 0.006312
+5569 PKIA cAMP-dependent protein kinase inhibitor alpha protein-coding 19 0.002263
+5570 PKIB cAMP-dependent protein kinase inhibitor beta protein-coding 13 0.001548
+5571 PRKAG1 protein kinase AMP-activated non-catalytic subunit gamma 1 protein-coding 41 0.004883
+5573 PRKAR1A protein kinase cAMP-dependent type I regulatory subunit alpha protein-coding 54 0.006431
+5575 PRKAR1B protein kinase cAMP-dependent type I regulatory subunit beta protein-coding 55 0.00655
+5576 PRKAR2A protein kinase cAMP-dependent type II regulatory subunit alpha protein-coding 29 0.003454
+5577 PRKAR2B protein kinase cAMP-dependent type II regulatory subunit beta protein-coding 59 0.007026
+5578 PRKCA protein kinase C alpha protein-coding 123 0.01465
+5579 PRKCB protein kinase C beta protein-coding 148 0.01763
+5580 PRKCD protein kinase C delta protein-coding 71 0.008455
+5581 PRKCE protein kinase C epsilon protein-coding 94 0.01119
+5582 PRKCG protein kinase C gamma protein-coding 144 0.01715
+5583 PRKCH protein kinase C eta protein-coding 62 0.007384
+5584 PRKCI protein kinase C iota protein-coding 101 0.01203
+5585 PKN1 protein kinase N1 protein-coding 147 0.01751
+5586 PKN2 protein kinase N2 protein-coding 176 0.02096
+5587 PRKD1 protein kinase D1 protein-coding 175 0.02084
+5588 PRKCQ protein kinase C theta protein-coding 120 0.01429
+5589 PRKCSH protein kinase C substrate 80K-H protein-coding 213 0.02537
+5590 PRKCZ protein kinase C zeta protein-coding 48 0.005716
+5591 PRKDC protein kinase, DNA-activated, catalytic polypeptide protein-coding 416 0.04954
+5592 PRKG1 protein kinase, cGMP-dependent, type I protein-coding 142 0.01691
+5593 PRKG2 protein kinase, cGMP-dependent, type II protein-coding 117 0.01393
+5594 MAPK1 mitogen-activated protein kinase 1 protein-coding 58 0.006907
+5595 MAPK3 mitogen-activated protein kinase 3 protein-coding 37 0.004406
+5596 MAPK4 mitogen-activated protein kinase 4 protein-coding 87 0.01036
+5597 MAPK6 mitogen-activated protein kinase 6 protein-coding 68 0.008098
+5598 MAPK7 mitogen-activated protein kinase 7 protein-coding 68 0.008098
+5599 MAPK8 mitogen-activated protein kinase 8 protein-coding 61 0.007264
+5600 MAPK11 mitogen-activated protein kinase 11 protein-coding 27 0.003215
+5601 MAPK9 mitogen-activated protein kinase 9 protein-coding 54 0.006431
+5602 MAPK10 mitogen-activated protein kinase 10 protein-coding 81 0.009646
+5603 MAPK13 mitogen-activated protein kinase 13 protein-coding 30 0.003573
+5604 MAP2K1 mitogen-activated protein kinase kinase 1 protein-coding 72 0.008574
+5605 MAP2K2 mitogen-activated protein kinase kinase 2 protein-coding 54 0.006431
+5606 MAP2K3 mitogen-activated protein kinase kinase 3 protein-coding 84 0.01
+5607 MAP2K5 mitogen-activated protein kinase kinase 5 protein-coding 47 0.005597
+5608 MAP2K6 mitogen-activated protein kinase kinase 6 protein-coding 41 0.004883
+5609 MAP2K7 mitogen-activated protein kinase kinase 7 protein-coding 85 0.01012
+5610 EIF2AK2 eukaryotic translation initiation factor 2 alpha kinase 2 protein-coding 144 0.01715
+5611 DNAJC3 DnaJ heat shock protein family (Hsp40) member C3 protein-coding 59 0.007026
+5612 THAP12 THAP domain containing 12 protein-coding 93 0.01108
+5613 PRKX protein kinase, X-linked protein-coding 46 0.005478
+5616 PRKY protein kinase, Y-linked, pseudogene pseudo 5 0.0005955
+5617 PRL prolactin protein-coding 49 0.005835
+5618 PRLR prolactin receptor protein-coding 106 0.01262
+5619 PRM1 protamine 1 protein-coding 5 0.0005955
+5620 PRM2 protamine 2 protein-coding 17 0.002025
+5621 PRNP prion protein protein-coding 35 0.004168
+5623 PSPN persephin protein-coding 16 0.001905
+5624 PROC protein C, inactivator of coagulation factors Va and VIIIa protein-coding 707 0.0842
+5625 PRODH proline dehydrogenase 1 protein-coding 116 0.01381
+5626 PROP1 PROP paired-like homeobox 1 protein-coding 30 0.003573
+5627 PROS1 protein S protein-coding 163 0.01941
+5629 PROX1 prospero homeobox 1 protein-coding 166 0.01977
+5630 PRPH peripherin protein-coding 29 0.003454
+5631 PRPS1 phosphoribosyl pyrophosphate synthetase 1 protein-coding 43 0.005121
+5634 PRPS2 phosphoribosyl pyrophosphate synthetase 2 protein-coding 40 0.004764
+5635 PRPSAP1 phosphoribosyl pyrophosphate synthetase associated protein 1 protein-coding 45 0.005359
+5636 PRPSAP2 phosphoribosyl pyrophosphate synthetase associated protein 2 protein-coding 40 0.004764
+5638 PRRG1 proline rich and Gla domain 1 protein-coding 46 0.005478
+5639 PRRG2 proline rich and Gla domain 2 protein-coding 17 0.002025
+5641 LGMN legumain protein-coding 51 0.006074
+5644 PRSS1 serine protease 1 protein-coding 81 0.009646
+5646 PRSS3 serine protease 3 protein-coding 33 0.00393
+5648 MASP1 mannan binding lectin serine peptidase 1 protein-coding 169 0.02013
+5649 RELN reelin protein-coding 503 0.0599
+5650 KLK7 kallikrein related peptidase 7 protein-coding 29 0.003454
+5651 TMPRSS15 transmembrane serine protease 15 protein-coding 220 0.0262
+5652 PRSS8 serine protease 8 protein-coding 74 0.008813
+5653 KLK6 kallikrein related peptidase 6 protein-coding 54 0.006431
+5654 HTRA1 HtrA serine peptidase 1 protein-coding 50 0.005955
+5655 KLK10 kallikrein related peptidase 10 protein-coding 28 0.003335
+5657 PRTN3 proteinase 3 protein-coding 19 0.002263
+5660 PSAP prosaposin protein-coding 59 0.007026
+5662 PSD pleckstrin and Sec7 domain containing protein-coding 155 0.01846
+5663 PSEN1 presenilin 1 protein-coding 54 0.006431
+5664 PSEN2 presenilin 2 protein-coding 63 0.007503
+5669 PSG1 pregnancy specific beta-1-glycoprotein 1 protein-coding 101 0.01203
+5670 PSG2 pregnancy specific beta-1-glycoprotein 2 protein-coding 103 0.01227
+5671 PSG3 pregnancy specific beta-1-glycoprotein 3 protein-coding 99 0.01179
+5672 PSG4 pregnancy specific beta-1-glycoprotein 4 protein-coding 90 0.01072
+5673 PSG5 pregnancy specific beta-1-glycoprotein 5 protein-coding 60 0.007145
+5675 PSG6 pregnancy specific beta-1-glycoprotein 6 protein-coding 102 0.01215
+5676 PSG7 pregnancy specific beta-1-glycoprotein 7 (gene/pseudogene) protein-coding 104 0.01239
+5678 PSG9 pregnancy specific beta-1-glycoprotein 9 protein-coding 81 0.009646
+5680 PSG11 pregnancy specific beta-1-glycoprotein 11 protein-coding 95 0.01131
+5681 PSKH1 protein serine kinase H1 protein-coding 43 0.005121
+5682 PSMA1 proteasome subunit alpha 1 protein-coding 46 0.005478
+5683 PSMA2 proteasome subunit alpha 2 protein-coding 20 0.002382
+5684 PSMA3 proteasome subunit alpha 3 protein-coding 27 0.003215
+5685 PSMA4 proteasome subunit alpha 4 protein-coding 30 0.003573
+5686 PSMA5 proteasome subunit alpha 5 protein-coding 24 0.002858
+5687 PSMA6 proteasome subunit alpha 6 protein-coding 30 0.003573
+5688 PSMA7 proteasome subunit alpha 7 protein-coding 258 0.03073
+5689 PSMB1 proteasome subunit beta 1 protein-coding 20 0.002382
+5690 PSMB2 proteasome subunit beta 2 protein-coding 24 0.002858
+5691 PSMB3 proteasome subunit beta 3 protein-coding 27 0.003215
+5692 PSMB4 proteasome subunit beta 4 protein-coding 26 0.003096
+5693 PSMB5 proteasome subunit beta 5 protein-coding 36 0.004287
+5694 PSMB6 proteasome subunit beta 6 protein-coding 22 0.00262
+5695 PSMB7 proteasome subunit beta 7 protein-coding 18 0.002144
+5696 PSMB8 proteasome subunit beta 8 protein-coding 32 0.003811
+5697 PYY peptide YY protein-coding 13 0.001548
+5698 PSMB9 proteasome subunit beta 9 protein-coding 21 0.002501
+5699 PSMB10 proteasome subunit beta 10 protein-coding 18 0.002144
+5700 PSMC1 proteasome 26S subunit, ATPase 1 protein-coding 42 0.005002
+5701 PSMC2 proteasome 26S subunit, ATPase 2 protein-coding 62 0.007384
+5702 PSMC3 proteasome 26S subunit, ATPase 3 protein-coding 48 0.005716
+5704 PSMC4 proteasome 26S subunit, ATPase 4 protein-coding 60 0.007145
+5705 PSMC5 proteasome 26S subunit, ATPase 5 protein-coding 51 0.006074
+5706 PSMC6 proteasome 26S subunit, ATPase 6 protein-coding 59 0.007026
+5707 PSMD1 proteasome 26S subunit, non-ATPase 1 protein-coding 105 0.0125
+5708 PSMD2 proteasome 26S subunit, non-ATPase 2 protein-coding 90 0.01072
+5709 PSMD3 proteasome 26S subunit, non-ATPase 3 protein-coding 57 0.006788
+5710 PSMD4 proteasome 26S subunit, non-ATPase 4 protein-coding 37 0.004406
+5711 PSMD5 proteasome 26S subunit, non-ATPase 5 protein-coding 44 0.00524
+5713 PSMD7 proteasome 26S subunit, non-ATPase 7 protein-coding 33 0.00393
+5714 PSMD8 proteasome 26S subunit, non-ATPase 8 protein-coding 21 0.002501
+5715 PSMD9 proteasome 26S subunit, non-ATPase 9 protein-coding 18 0.002144
+5716 PSMD10 proteasome 26S subunit, non-ATPase 10 protein-coding 16 0.001905
+5717 PSMD11 proteasome 26S subunit, non-ATPase 11 protein-coding 60 0.007145
+5718 PSMD12 proteasome 26S subunit, non-ATPase 12 protein-coding 56 0.006669
+5719 PSMD13 proteasome 26S subunit, non-ATPase 13 protein-coding 24 0.002858
+5720 PSME1 proteasome activator subunit 1 protein-coding 21 0.002501
+5721 PSME2 proteasome activator subunit 2 protein-coding 26 0.003096
+5723 PSPH phosphoserine phosphatase protein-coding 31 0.003692
+5724 PTAFR platelet activating factor receptor protein-coding 38 0.004525
+5725 PTBP1 polypyrimidine tract binding protein 1 protein-coding 72 0.008574
+5726 TAS2R38 taste 2 receptor member 38 protein-coding 54 0.006431
+5727 PTCH1 patched 1 protein-coding 203 0.02418
+5728 PTEN phosphatase and tensin homolog protein-coding 812 0.0967
+5729 PTGDR prostaglandin D2 receptor protein-coding 67 0.007979
+5730 PTGDS prostaglandin D2 synthase protein-coding 30 0.003573
+5731 PTGER1 prostaglandin E receptor 1 protein-coding 4 0.0004764
+5732 PTGER2 prostaglandin E receptor 2 protein-coding 56 0.006669
+5733 PTGER3 prostaglandin E receptor 3 protein-coding 93 0.01108
+5734 PTGER4 prostaglandin E receptor 4 protein-coding 75 0.008932
+5737 PTGFR prostaglandin F receptor protein-coding 76 0.009051
+5738 PTGFRN prostaglandin F2 receptor inhibitor protein-coding 90 0.01072
+5739 PTGIR prostaglandin I2 receptor protein-coding 33 0.00393
+5740 PTGIS prostaglandin I2 synthase protein-coding 61 0.007264
+5741 PTH parathyroid hormone protein-coding 18 0.002144
+5742 PTGS1 prostaglandin-endoperoxide synthase 1 protein-coding 86 0.01024
+5743 PTGS2 prostaglandin-endoperoxide synthase 2 protein-coding 84 0.01
+5744 PTHLH parathyroid hormone like hormone protein-coding 34 0.004049
+5745 PTH1R parathyroid hormone 1 receptor protein-coding 78 0.009289
+5746 PTH2R parathyroid hormone 2 receptor protein-coding 102 0.01215
+5747 PTK2 protein tyrosine kinase 2 protein-coding 134 0.01596
+5753 PTK6 protein tyrosine kinase 6 protein-coding 37 0.004406
+5754 PTK7 protein tyrosine kinase 7 (inactive) protein-coding 98 0.01167
+5756 TWF1 twinfilin actin binding protein 1 protein-coding 45 0.005359
+5757 PTMA prothymosin alpha protein-coding 32 0.003811
+5761 PTMAP4 prothymosin alpha pseudogene 4 pseudo 32 0.003811
+5763 PTMS parathymosin protein-coding 11 0.00131
+5764 PTN pleiotrophin protein-coding 52 0.006193
+5768 QSOX1 quiescin sulfhydryl oxidase 1 protein-coding 72 0.008574
+5770 PTPN1 protein tyrosine phosphatase, non-receptor type 1 protein-coding 46 0.005478
+5771 PTPN2 protein tyrosine phosphatase, non-receptor type 2 protein-coding 54 0.006431
+5774 PTPN3 protein tyrosine phosphatase, non-receptor type 3 protein-coding 128 0.01524
+5775 PTPN4 protein tyrosine phosphatase, non-receptor type 4 protein-coding 133 0.01584
+5777 PTPN6 protein tyrosine phosphatase, non-receptor type 6 protein-coding 61 0.007264
+5778 PTPN7 protein tyrosine phosphatase, non-receptor type 7 protein-coding 48 0.005716
+5780 PTPN9 protein tyrosine phosphatase, non-receptor type 9 protein-coding 68 0.008098
+5781 PTPN11 protein tyrosine phosphatase, non-receptor type 11 protein-coding 84 0.01
+5782 PTPN12 protein tyrosine phosphatase, non-receptor type 12 protein-coding 97 0.01155
+5783 PTPN13 protein tyrosine phosphatase, non-receptor type 13 protein-coding 233 0.02775
+5784 PTPN14 protein tyrosine phosphatase, non-receptor type 14 protein-coding 172 0.02048
+5786 PTPRA protein tyrosine phosphatase, receptor type A protein-coding 96 0.01143
+5787 PTPRB protein tyrosine phosphatase, receptor type B protein-coding 307 0.03656
+5788 PTPRC protein tyrosine phosphatase, receptor type C protein-coding 255 0.03037
+5789 PTPRD protein tyrosine phosphatase, receptor type D protein-coding 381 0.04537
+5790 PTPRCAP protein tyrosine phosphatase, receptor type C associated protein protein-coding 23 0.002739
+5791 PTPRE protein tyrosine phosphatase, receptor type E protein-coding 100 0.01191
+5792 PTPRF protein tyrosine phosphatase, receptor type F protein-coding 174 0.02072
+5793 PTPRG protein tyrosine phosphatase, receptor type G protein-coding 170 0.02025
+5794 PTPRH protein tyrosine phosphatase, receptor type H protein-coding 166 0.01977
+5795 PTPRJ protein tyrosine phosphatase, receptor type J protein-coding 138 0.01643
+5796 PTPRK protein tyrosine phosphatase, receptor type K protein-coding 198 0.02358
+5797 PTPRM protein tyrosine phosphatase, receptor type M protein-coding 209 0.02489
+5798 PTPRN protein tyrosine phosphatase, receptor type N protein-coding 128 0.01524
+5799 PTPRN2 protein tyrosine phosphatase, receptor type N2 protein-coding 183 0.02179
+5800 PTPRO protein tyrosine phosphatase, receptor type O protein-coding 154 0.01834
+5801 PTPRR protein tyrosine phosphatase, receptor type R protein-coding 123 0.01465
+5802 PTPRS protein tyrosine phosphatase, receptor type S protein-coding 200 0.02382
+5803 PTPRZ1 protein tyrosine phosphatase, receptor type Z1 protein-coding 305 0.03632
+5805 PTS 6-pyruvoyltetrahydropterin synthase protein-coding 7 0.0008336
+5806 PTX3 pentraxin 3 protein-coding 38 0.004525
+5810 RAD1 RAD1 checkpoint DNA exonuclease protein-coding 36 0.004287
+5813 PURA purine rich element binding protein A protein-coding 25 0.002977
+5814 PURB purine rich element binding protein B protein-coding 25 0.002977
+5816 PVALB parvalbumin protein-coding 16 0.001905
+5817 PVR poliovirus receptor protein-coding 42 0.005002
+5818 NECTIN1 nectin cell adhesion molecule 1 protein-coding 80 0.009527
+5819 NECTIN2 nectin cell adhesion molecule 2 protein-coding 59 0.007026
+5820 PVT1 Pvt1 oncogene (non-protein coding) ncRNA 4 0.0004764
+5822 PWP2 PWP2, small subunit processome component protein-coding 86 0.01024
+5824 PEX19 peroxisomal biogenesis factor 19 protein-coding 31 0.003692
+5825 ABCD3 ATP binding cassette subfamily D member 3 protein-coding 66 0.00786
+5826 ABCD4 ATP binding cassette subfamily D member 4 protein-coding 59 0.007026
+5827 PXMP2 peroxisomal membrane protein 2 protein-coding 42 0.005002
+5828 PEX2 peroxisomal biogenesis factor 2 protein-coding 122 0.01453
+5829 PXN paxillin protein-coding 52 0.006193
+5830 PEX5 peroxisomal biogenesis factor 5 protein-coding 64 0.007622
+5831 PYCR1 pyrroline-5-carboxylate reductase 1 protein-coding 29 0.003454
+5832 ALDH18A1 aldehyde dehydrogenase 18 family member A1 protein-coding 76 0.009051
+5833 PCYT2 phosphate cytidylyltransferase 2, ethanolamine protein-coding 40 0.004764
+5834 PYGB glycogen phosphorylase B protein-coding 101 0.01203
+5836 PYGL glycogen phosphorylase L protein-coding 88 0.01048
+5837 PYGM glycogen phosphorylase, muscle associated protein-coding 142 0.01691
+5858 PZP PZP, alpha-2-macroglobulin like protein-coding 228 0.02715
+5859 QARS glutaminyl-tRNA synthetase protein-coding 71 0.008455
+5860 QDPR quinoid dihydropteridine reductase protein-coding 33 0.00393
+5861 RAB1A RAB1A, member RAS oncogene family protein-coding 17 0.002025
+5862 RAB2A RAB2A, member RAS oncogene family protein-coding 29 0.003454
+5863 RGL2 ral guanine nucleotide dissociation stimulator like 2 protein-coding 86 0.01024
+5864 RAB3A RAB3A, member RAS oncogene family protein-coding 29 0.003454
+5865 RAB3B RAB3B, member RAS oncogene family protein-coding 32 0.003811
+5866 RAB3IL1 RAB3A interacting protein like 1 protein-coding 37 0.004406
+5867 RAB4A RAB4A, member RAS oncogene family protein-coding 30 0.003573
+5868 RAB5A RAB5A, member RAS oncogene family protein-coding 29 0.003454
+5869 RAB5B RAB5B, member RAS oncogene family protein-coding 23 0.002739
+5870 RAB6A RAB6A, member RAS oncogene family protein-coding 23 0.002739
+5871 MAP4K2 mitogen-activated protein kinase kinase kinase kinase 2 protein-coding 138 0.01643
+5872 RAB13 RAB13, member RAS oncogene family protein-coding 19 0.002263
+5873 RAB27A RAB27A, member RAS oncogene family protein-coding 30 0.003573
+5874 RAB27B RAB27B, member RAS oncogene family protein-coding 30 0.003573
+5875 RABGGTA Rab geranylgeranyltransferase alpha subunit protein-coding 68 0.008098
+5876 RABGGTB Rab geranylgeranyltransferase beta subunit protein-coding 59 0.007026
+5877 RABIF RAB interacting factor protein-coding 12 0.001429
+5878 RAB5C RAB5C, member RAS oncogene family protein-coding 26 0.003096
+5879 RAC1 Rac family small GTPase 1 protein-coding 46 0.005478
+5880 RAC2 Rac family small GTPase 2 protein-coding 33 0.00393
+5881 RAC3 Rac family small GTPase 3 protein-coding 22 0.00262
+5883 RAD9A RAD9 checkpoint clamp component A protein-coding 32 0.003811
+5884 RAD17 RAD17 checkpoint clamp loader component protein-coding 73 0.008694
+5885 RAD21 RAD21 cohesin complex component protein-coding 98 0.01167
+5886 RAD23A RAD23 homolog A, nucleotide excision repair protein protein-coding 43 0.005121
+5887 RAD23B RAD23 homolog B, nucleotide excision repair protein protein-coding 47 0.005597
+5888 RAD51 RAD51 recombinase protein-coding 33 0.00393
+5889 RAD51C RAD51 paralog C protein-coding 45 0.005359
+5890 RAD51B RAD51 paralog B protein-coding 43 0.005121
+5891 MOK MOK protein kinase protein-coding 35 0.004168
+5892 RAD51D RAD51 paralog D protein-coding 28 0.003335
+5893 RAD52 RAD52 homolog, DNA repair protein protein-coding 35 0.004168
+5894 RAF1 Raf-1 proto-oncogene, serine/threonine kinase protein-coding 66 0.00786
+5896 RAG1 recombination activating 1 protein-coding 152 0.0181
+5897 RAG2 recombination activating 2 protein-coding 92 0.01096
+5898 RALA RAS like proto-oncogene A protein-coding 43 0.005121
+5899 RALB RAS like proto-oncogene B protein-coding 40 0.004764
+5900 RALGDS ral guanine nucleotide dissociation stimulator protein-coding 86 0.01024
+5901 RAN RAN, member RAS oncogene family protein-coding 27 0.003215
+5902 RANBP1 RAN binding protein 1 protein-coding 23 0.002739
+5903 RANBP2 RAN binding protein 2 protein-coding 327 0.03894
+5905 RANGAP1 Ran GTPase activating protein 1 protein-coding 46 0.005478
+5906 RAP1A RAP1A, member of RAS oncogene family protein-coding 29 0.003454
+5908 RAP1B RAP1B, member of RAS oncogene family protein-coding 21 0.002501
+5909 RAP1GAP RAP1 GTPase activating protein protein-coding 72 0.008574
+5910 RAP1GDS1 Rap1 GTPase-GDP dissociation stimulator 1 protein-coding 78 0.009289
+5911 RAP2A RAP2A, member of RAS oncogene family protein-coding 13 0.001548
+5912 RAP2B RAP2B, member of RAS oncogene family protein-coding 24 0.002858
+5913 RAPSN receptor associated protein of the synapse protein-coding 39 0.004645
+5914 RARA retinoic acid receptor alpha protein-coding 61 0.007264
+5915 RARB retinoic acid receptor beta protein-coding 79 0.009408
+5916 RARG retinoic acid receptor gamma protein-coding 74 0.008813
+5917 RARS arginyl-tRNA synthetase protein-coding 63 0.007503
+5918 RARRES1 retinoic acid receptor responder 1 protein-coding 30 0.003573
+5919 RARRES2 retinoic acid receptor responder 2 protein-coding 12 0.001429
+5920 RARRES3 retinoic acid receptor responder 3 protein-coding 30 0.003573
+5921 RASA1 RAS p21 protein activator 1 protein-coding 209 0.02489
+5922 RASA2 RAS p21 protein activator 2 protein-coding 105 0.0125
+5923 RASGRF1 Ras protein specific guanine nucleotide releasing factor 1 protein-coding 163 0.01941
+5924 RASGRF2 Ras protein specific guanine nucleotide releasing factor 2 protein-coding 168 0.02001
+5925 RB1 RB transcriptional corepressor 1 protein-coding 359 0.04275
+5926 ARID4A AT-rich interaction domain 4A protein-coding 166 0.01977
+5927 KDM5A lysine demethylase 5A protein-coding 168 0.02001
+5928 RBBP4 RB binding protein 4, chromatin remodeling factor protein-coding 46 0.005478
+5929 RBBP5 RB binding protein 5, histone lysine methyltransferase complex subunit protein-coding 56 0.006669
+5930 RBBP6 RB binding protein 6, ubiquitin ligase protein-coding 213 0.02537
+5931 RBBP7 RB binding protein 7, chromatin remodeling factor protein-coding 67 0.007979
+5932 RBBP8 RB binding protein 8, endonuclease protein-coding 87 0.01036
+5933 RBL1 RB transcriptional corepressor like 1 protein-coding 168 0.02001
+5934 RBL2 RB transcriptional corepressor like 2 protein-coding 118 0.01405
+5935 RBM3 RNA binding motif protein 3 protein-coding 20 0.002382
+5936 RBM4 RNA binding motif protein 4 protein-coding 11 0.00131
+5937 RBMS1 RNA binding motif single stranded interacting protein 1 protein-coding 53 0.006312
+5939 RBMS2 RNA binding motif single stranded interacting protein 2 protein-coding 47 0.005597
+5940 RBMY1A1 RNA binding motif protein, Y-linked, family 1, member A1 protein-coding 2 0.0002382
+5947 RBP1 retinol binding protein 1 protein-coding 26 0.003096
+5948 RBP2 retinol binding protein 2 protein-coding 32 0.003811
+5949 RBP3 retinol binding protein 3 protein-coding 205 0.02441
+5950 RBP4 retinol binding protein 4 protein-coding 25 0.002977
+5954 RCN1 reticulocalbin 1 protein-coding 32 0.003811
+5955 RCN2 reticulocalbin 2 protein-coding 29 0.003454
+5956 OPN1LW opsin 1, long wave sensitive protein-coding 46 0.005478
+5957 RCVRN recoverin protein-coding 42 0.005002
+5959 RDH5 retinol dehydrogenase 5 protein-coding 37 0.004406
+5961 PRPH2 peripherin 2 protein-coding 76 0.009051
+5962 RDX radixin protein-coding 76 0.009051
+5965 RECQL RecQ like helicase protein-coding 70 0.008336
+5966 REL REL proto-oncogene, NF-kB subunit protein-coding 75 0.008932
+5967 REG1A regenerating family member 1 alpha protein-coding 90 0.01072
+5968 REG1B regenerating family member 1 beta protein-coding 87 0.01036
+5969 REG1CP regenerating family member 1 gamma, pseudogene pseudo 91 0.01084
+5970 RELA RELA proto-oncogene, NF-kB subunit protein-coding 69 0.008217
+5971 RELB RELB proto-oncogene, NF-kB subunit protein-coding 53 0.006312
+5972 REN renin protein-coding 49 0.005835
+5973 RENBP renin binding protein protein-coding 57 0.006788
+5976 UPF1 UPF1, RNA helicase and ATPase protein-coding 125 0.01489
+5977 DPF2 double PHD fingers 2 protein-coding 59 0.007026
+5978 REST RE1 silencing transcription factor protein-coding 112 0.01334
+5979 RET ret proto-oncogene protein-coding 166 0.01977
+5980 REV3L REV3 like, DNA directed polymerase zeta catalytic subunit protein-coding 298 0.03549
+5981 RFC1 replication factor C subunit 1 protein-coding 121 0.01441
+5982 RFC2 replication factor C subunit 2 protein-coding 44 0.00524
+5983 RFC3 replication factor C subunit 3 protein-coding 33 0.00393
+5984 RFC4 replication factor C subunit 4 protein-coding 60 0.007145
+5985 RFC5 replication factor C subunit 5 protein-coding 47 0.005597
+5986 RFNG RFNG O-fucosylpeptide 3-beta-N-acetylglucosaminyltransferase protein-coding 15 0.001786
+5987 TRIM27 tripartite motif containing 27 protein-coding 70 0.008336
+5988 RFPL1 ret finger protein like 1 protein-coding 47 0.005597
+5989 RFX1 regulatory factor X1 protein-coding 86 0.01024
+5990 RFX2 regulatory factor X2 protein-coding 76 0.009051
+5991 RFX3 regulatory factor X3 protein-coding 92 0.01096
+5992 RFX4 regulatory factor X4 protein-coding 109 0.01298
+5993 RFX5 regulatory factor X5 protein-coding 84 0.01
+5994 RFXAP regulatory factor X associated protein protein-coding 26 0.003096
+5995 RGR retinal G protein coupled receptor protein-coding 43 0.005121
+5996 RGS1 regulator of G protein signaling 1 protein-coding 41 0.004883
+5997 RGS2 regulator of G protein signaling 2 protein-coding 41 0.004883
+5998 RGS3 regulator of G protein signaling 3 protein-coding 123 0.01465
+5999 RGS4 regulator of G protein signaling 4 protein-coding 61 0.007264
+6000 RGS7 regulator of G protein signaling 7 protein-coding 156 0.01858
+6001 RGS10 regulator of G protein signaling 10 protein-coding 31 0.003692
+6002 RGS12 regulator of G protein signaling 12 protein-coding 191 0.02275
+6003 RGS13 regulator of G protein signaling 13 protein-coding 33 0.00393
+6004 RGS16 regulator of G protein signaling 16 protein-coding 32 0.003811
+6005 RHAG Rh associated glycoprotein protein-coding 83 0.009884
+6006 RHCE Rh blood group CcEe antigens protein-coding 55 0.00655
+6007 RHD Rh blood group D antigen protein-coding 46 0.005478
+6008 RHEBP1 RHEB pseudogene 1 pseudo 26 0.003096
+6009 RHEB Ras homolog, mTORC1 binding protein-coding 26 0.003096
+6010 RHO rhodopsin protein-coding 53 0.006312
+6011 GRK1 G protein-coupled receptor kinase 1 protein-coding 69 0.008217
+6012 RIEG2 Rieger syndrome 2 unknown 41 0.004883
+6013 RLN1 relaxin 1 protein-coding 23 0.002739
+6014 RIT2 Ras like without CAAX 2 protein-coding 70 0.008336
+6015 RING1 ring finger protein 1 protein-coding 57 0.006788
+6016 RIT1 Ras like without CAAX 1 protein-coding 32 0.003811
+6017 RLBP1 retinaldehyde binding protein 1 protein-coding 45 0.005359
+6018 RLF rearranged L-myc fusion protein-coding 166 0.01977
+6019 RLN2 relaxin 2 protein-coding 22 0.00262
+6023 RMRP RNA component of mitochondrial RNA processing endoribonuclease ncRNA 18 0.002144
+6035 RNASE1 ribonuclease A family member 1, pancreatic protein-coding 54 0.006431
+6036 RNASE2 ribonuclease A family member 2 protein-coding 33 0.00393
+6037 RNASE3 ribonuclease A family member 3 protein-coding 96 0.01143
+6038 RNASE4 ribonuclease A family member 4 protein-coding 22 0.00262
+6039 RNASE6 ribonuclease A family member k6 protein-coding 53 0.006312
+6041 RNASEL ribonuclease L protein-coding 85 0.01012
+6045 RNF2 ring finger protein 2 protein-coding 237 0.02822
+6046 BRD2 bromodomain containing 2 protein-coding 102 0.01215
+6047 RNF4 ring finger protein 4 protein-coding 33 0.00393
+6048 RNF5 ring finger protein 5 protein-coding 18 0.002144
+6049 RNF6 ring finger protein 6 protein-coding 97 0.01155
+6050 RNH1 ribonuclease/angiogenin inhibitor 1 protein-coding 38 0.004525
+6051 RNPEP arginyl aminopeptidase protein-coding 48 0.005716
+6059 ABCE1 ATP binding cassette subfamily E member 1 protein-coding 74 0.008813
+6090 RNY5 RNA, Ro-associated Y5 ncRNA 6 0.0007145
+6091 ROBO1 roundabout guidance receptor 1 protein-coding 277 0.03299
+6092 ROBO2 roundabout guidance receptor 2 protein-coding 293 0.03489
+6093 ROCK1 Rho associated coiled-coil containing protein kinase 1 protein-coding 186 0.02215
+6094 ROM1 retinal outer segment membrane protein 1 protein-coding 37 0.004406
+6095 RORA RAR related orphan receptor A protein-coding 304 0.0362
+6096 RORB RAR related orphan receptor B protein-coding 74 0.008813
+6097 RORC RAR related orphan receptor C protein-coding 67 0.007979
+6098 ROS1 ROS proto-oncogene 1, receptor tyrosine kinase protein-coding 309 0.0368
+6100 RP9 RP9, pre-mRNA splicing factor protein-coding 25 0.002977
+6101 RP1 RP1, axonemal microtubule associated protein-coding 407 0.04847
+6102 RP2 RP2, ARL3 GTPase activating protein protein-coding 42 0.005002
+6103 RPGR retinitis pigmentosa GTPase regulator protein-coding 112 0.01334
+6117 RPA1 replication protein A1 protein-coding 54 0.006431
+6118 RPA2 replication protein A2 protein-coding 26 0.003096
+6119 RPA3 replication protein A3 protein-coding 14 0.001667
+6120 RPE ribulose-5-phosphate-3-epimerase protein-coding 37 0.004406
+6121 RPE65 RPE65, retinoid isomerohydrolase protein-coding 90 0.01072
+6122 RPL3 ribosomal protein L3 protein-coding 32 0.003811
+6123 RPL3L ribosomal protein L3 like protein-coding 58 0.006907
+6124 RPL4 ribosomal protein L4 protein-coding 40 0.004764
+6125 RPL5 ribosomal protein L5 protein-coding 63 0.007503
+6128 RPL6 ribosomal protein L6 protein-coding 38 0.004525
+6129 RPL7 ribosomal protein L7 protein-coding 23 0.002739
+6130 RPL7A ribosomal protein L7a protein-coding 26 0.003096
+6132 RPL8 ribosomal protein L8 protein-coding 30 0.003573
+6133 RPL9 ribosomal protein L9 protein-coding 18 0.002144
+6134 RPL10 ribosomal protein L10 protein-coding 90 0.01072
+6135 RPL11 ribosomal protein L11 protein-coding 29 0.003454
+6136 RPL12 ribosomal protein L12 protein-coding 13 0.001548
+6137 RPL13 ribosomal protein L13 protein-coding 16 0.001905
+6138 RPL15 ribosomal protein L15 protein-coding 57 0.006788
+6139 RPL17 ribosomal protein L17 protein-coding 36 0.004287
+6141 RPL18 ribosomal protein L18 protein-coding 10 0.001191
+6142 RPL18A ribosomal protein L18a protein-coding 27 0.003215
+6143 RPL19 ribosomal protein L19 protein-coding 22 0.00262
+6144 RPL21 ribosomal protein L21 protein-coding 15 0.001786
+6146 RPL22 ribosomal protein L22 protein-coding 118 0.01405
+6147 RPL23A ribosomal protein L23a protein-coding 22 0.00262
+6150 MRPL23 mitochondrial ribosomal protein L23 protein-coding 32 0.003811
+6152 RPL24 ribosomal protein L24 protein-coding 19 0.002263
+6154 RPL26 ribosomal protein L26 protein-coding 16 0.001905
+6155 RPL27 ribosomal protein L27 protein-coding 16 0.001905
+6156 RPL30 ribosomal protein L30 protein-coding 7 0.0008336
+6157 RPL27A ribosomal protein L27a protein-coding 6 0.0007145
+6158 RPL28 ribosomal protein L28 protein-coding 27 0.003215
+6159 RPL29 ribosomal protein L29 protein-coding 13 0.001548
+6160 RPL31 ribosomal protein L31 protein-coding 19 0.002263
+6161 RPL32 ribosomal protein L32 protein-coding 8 0.0009527
+6164 RPL34 ribosomal protein L34 protein-coding 19 0.002263
+6165 RPL35A ribosomal protein L35a protein-coding 13 0.001548
+6166 RPL36AL ribosomal protein L36a like protein-coding 24 0.002858
+6167 RPL37 ribosomal protein L37 protein-coding 14 0.001667
+6168 RPL37A ribosomal protein L37a protein-coding 7 0.0008336
+6169 RPL38 ribosomal protein L38 protein-coding 4 0.0004764
+6170 RPL39 ribosomal protein L39 protein-coding 8 0.0009527
+6171 RPL41 ribosomal protein L41 protein-coding 5 0.0005955
+6173 RPL36A ribosomal protein L36a protein-coding 12 0.001429
+6175 RPLP0 ribosomal protein lateral stalk subunit P0 protein-coding 36 0.004287
+6176 RPLP1 ribosomal protein lateral stalk subunit P1 protein-coding 6 0.0007145
+6181 RPLP2 ribosomal protein lateral stalk subunit P2 protein-coding 12 0.001429
+6183 MRPS12 mitochondrial ribosomal protein S12 protein-coding 36 0.004287
+6184 RPN1 ribophorin I protein-coding 45 0.005359
+6185 RPN2 ribophorin II protein-coding 55 0.00655
+6187 RPS2 ribosomal protein S2 protein-coding 34 0.004049
+6188 RPS3 ribosomal protein S3 protein-coding 27 0.003215
+6189 RPS3A ribosomal protein S3A protein-coding 19 0.002263
+6191 RPS4X ribosomal protein S4, X-linked protein-coding 24 0.002858
+6192 RPS4Y1 ribosomal protein S4, Y-linked 1 protein-coding 8 0.0009527
+6193 RPS5 ribosomal protein S5 protein-coding 29 0.003454
+6194 RPS6 ribosomal protein S6 protein-coding 36 0.004287
+6195 RPS6KA1 ribosomal protein S6 kinase A1 protein-coding 76 0.009051
+6196 RPS6KA2 ribosomal protein S6 kinase A2 protein-coding 112 0.01334
+6197 RPS6KA3 ribosomal protein S6 kinase A3 protein-coding 110 0.0131
+6198 RPS6KB1 ribosomal protein S6 kinase B1 protein-coding 40 0.004764
+6199 RPS6KB2 ribosomal protein S6 kinase B2 protein-coding 47 0.005597
+6201 RPS7 ribosomal protein S7 protein-coding 20 0.002382
+6202 RPS8 ribosomal protein S8 protein-coding 15 0.001786
+6203 RPS9 ribosomal protein S9 protein-coding 19 0.002263
+6204 RPS10 ribosomal protein S10 protein-coding 20 0.002382
+6205 RPS11 ribosomal protein S11 protein-coding 16 0.001905
+6206 RPS12 ribosomal protein S12 protein-coding 17 0.002025
+6207 RPS13 ribosomal protein S13 protein-coding 17 0.002025
+6208 RPS14 ribosomal protein S14 protein-coding 13 0.001548
+6209 RPS15 ribosomal protein S15 protein-coding 9 0.001072
+6210 RPS15A ribosomal protein S15a protein-coding 5 0.0005955
+6217 RPS16 ribosomal protein S16 protein-coding 12 0.001429
+6222 RPS18 ribosomal protein S18 protein-coding 20 0.002382
+6223 RPS19 ribosomal protein S19 protein-coding 13 0.001548
+6224 RPS20 ribosomal protein S20 protein-coding 16 0.001905
+6227 RPS21 ribosomal protein S21 protein-coding 10 0.001191
+6228 RPS23 ribosomal protein S23 protein-coding 6 0.0007145
+6229 RPS24 ribosomal protein S24 protein-coding 25 0.002977
+6230 RPS25 ribosomal protein S25 protein-coding 15 0.001786
+6231 RPS26 ribosomal protein S26 protein-coding 11 0.00131
+6232 RPS27 ribosomal protein S27 protein-coding 9 0.001072
+6233 RPS27A ribosomal protein S27a protein-coding 91 0.01084
+6234 RPS28 ribosomal protein S28 protein-coding 7 0.0008336
+6235 RPS29 ribosomal protein S29 protein-coding 6 0.0007145
+6236 RRAD RRAD, Ras related glycolysis inhibitor and calcium channel regulator protein-coding 33 0.00393
+6237 RRAS RAS related protein-coding 23 0.002739
+6238 RRBP1 ribosome binding protein 1 protein-coding 117 0.01393
+6239 RREB1 ras responsive element binding protein 1 protein-coding 168 0.02001
+6240 RRM1 ribonucleotide reductase catalytic subunit M1 protein-coding 67 0.007979
+6241 RRM2 ribonucleotide reductase regulatory subunit M2 protein-coding 37 0.004406
+6242 RTKN rhotekin protein-coding 62 0.007384
+6247 RS1 retinoschisin 1 protein-coding 43 0.005121
+6248 RSC1A1 regulator of solute carriers 1 protein-coding 96 0.01143
+6249 CLIP1 CAP-Gly domain containing linker protein 1 protein-coding 137 0.01632
+6251 RSU1 Ras suppressor protein 1 protein-coding 31 0.003692
+6252 RTN1 reticulon 1 protein-coding 153 0.01822
+6253 RTN2 reticulon 2 protein-coding 73 0.008694
+6256 RXRA retinoid X receptor alpha protein-coding 86 0.01024
+6257 RXRB retinoid X receptor beta protein-coding 56 0.006669
+6258 RXRG retinoid X receptor gamma protein-coding 90 0.01072
+6259 RYK receptor-like tyrosine kinase protein-coding 46 0.005478
+6261 RYR1 ryanodine receptor 1 protein-coding 606 0.07217
+6262 RYR2 ryanodine receptor 2 protein-coding 1039 0.1237
+6263 RYR3 ryanodine receptor 3 protein-coding 630 0.07503
+6271 S100A1 S100 calcium binding protein A1 protein-coding 10 0.001191
+6272 SORT1 sortilin 1 protein-coding 69 0.008217
+6273 S100A2 S100 calcium binding protein A2 protein-coding 6 0.0007145
+6274 S100A3 S100 calcium binding protein A3 protein-coding 16 0.001905
+6275 S100A4 S100 calcium binding protein A4 protein-coding 20 0.002382
+6276 S100A5 S100 calcium binding protein A5 protein-coding 15 0.001786
+6277 S100A6 S100 calcium binding protein A6 protein-coding 7 0.0008336
+6278 S100A7 S100 calcium binding protein A7 protein-coding 36 0.004287
+6279 S100A8 S100 calcium binding protein A8 protein-coding 18 0.002144
+6280 S100A9 S100 calcium binding protein A9 protein-coding 13 0.001548
+6281 S100A10 S100 calcium binding protein A10 protein-coding 9 0.001072
+6282 S100A11 S100 calcium binding protein A11 protein-coding 8 0.0009527
+6283 S100A12 S100 calcium binding protein A12 protein-coding 14 0.001667
+6284 S100A13 S100 calcium binding protein A13 protein-coding 11 0.00131
+6285 S100B S100 calcium binding protein B protein-coding 18 0.002144
+6286 S100P S100 calcium binding protein P protein-coding 5 0.0005955
+6288 SAA1 serum amyloid A1 protein-coding 21 0.002501
+6289 SAA2 serum amyloid A2 protein-coding 23 0.002739
+6290 SAA3P serum amyloid A3, pseudogene pseudo 17 0.002025
+6291 SAA4 serum amyloid A4, constitutive protein-coding 22 0.00262
+6293 VPS52 VPS52, GARP complex subunit protein-coding 87 0.01036
+6294 SAFB scaffold attachment factor B protein-coding 111 0.01322
+6295 SAG S-antigen visual arrestin protein-coding 54 0.006431
+6296 ACSM3 acyl-CoA synthetase medium chain family member 3 protein-coding 85 0.01012
+6297 SALL2 spalt like transcription factor 2 protein-coding 105 0.0125
+6299 SALL1 spalt like transcription factor 1 protein-coding 270 0.03215
+6300 MAPK12 mitogen-activated protein kinase 12 protein-coding 21 0.002501
+6301 SARS seryl-tRNA synthetase protein-coding 57 0.006788
+6302 TSPAN31 tetraspanin 31 protein-coding 31 0.003692
+6303 SAT1 spermidine/spermine N1-acetyltransferase 1 protein-coding 28 0.003335
+6304 SATB1 SATB homeobox 1 protein-coding 109 0.01298
+6305 SBF1 SET binding factor 1 protein-coding 181 0.02156
+6307 MSMO1 methylsterol monooxygenase 1 protein-coding 33 0.00393
+6309 SC5D sterol-C5-desaturase protein-coding 39 0.004645
+6310 ATXN1 ataxin 1 protein-coding 115 0.0137
+6311 ATXN2 ataxin 2 protein-coding 125 0.01489
+6314 ATXN7 ataxin 7 protein-coding 92 0.01096
+6315 ATXN8OS ATXN8 opposite strand (non-protein coding) ncRNA 5 0.0005955
+6317 SERPINB3 serpin family B member 3 protein-coding 90 0.01072
+6318 SERPINB4 serpin family B member 4 protein-coding 84 0.01
+6319 SCD stearoyl-CoA desaturase protein-coding 34 0.004049
+6320 CLEC11A C-type lectin domain containing 11A protein-coding 20 0.002382
+6322 SCML1 Scm polycomb group protein like 1 protein-coding 36 0.004287
+6323 SCN1A sodium voltage-gated channel alpha subunit 1 protein-coding 359 0.04275
+6324 SCN1B sodium voltage-gated channel beta subunit 1 protein-coding 27 0.003215
+6326 SCN2A sodium voltage-gated channel alpha subunit 2 protein-coding 321 0.03823
+6327 SCN2B sodium voltage-gated channel beta subunit 2 protein-coding 41 0.004883
+6328 SCN3A sodium voltage-gated channel alpha subunit 3 protein-coding 299 0.03561
+6329 SCN4A sodium voltage-gated channel alpha subunit 4 protein-coding 224 0.02668
+6330 SCN4B sodium voltage-gated channel beta subunit 4 protein-coding 21 0.002501
+6331 SCN5A sodium voltage-gated channel alpha subunit 5 protein-coding 285 0.03394
+6332 SCN7A sodium voltage-gated channel alpha subunit 7 protein-coding 247 0.02942
+6334 SCN8A sodium voltage-gated channel alpha subunit 8 protein-coding 194 0.0231
+6335 SCN9A sodium voltage-gated channel alpha subunit 9 protein-coding 292 0.03477
+6336 SCN10A sodium voltage-gated channel alpha subunit 10 protein-coding 320 0.03811
+6337 SCNN1A sodium channel epithelial 1 alpha subunit protein-coding 69 0.008217
+6338 SCNN1B sodium channel epithelial 1 beta subunit protein-coding 86 0.01024
+6339 SCNN1D sodium channel epithelial 1 delta subunit protein-coding 62 0.007384
+6340 SCNN1G sodium channel epithelial 1 gamma subunit protein-coding 88 0.01048
+6341 SCO1 SCO1, cytochrome c oxidase assembly protein protein-coding 27 0.003215
+6342 SCP2 sterol carrier protein 2 protein-coding 59 0.007026
+6343 SCT secretin protein-coding 6 0.0007145
+6344 SCTR secretin receptor protein-coding 55 0.00655
+6345 SRL sarcalumenin protein-coding 65 0.007741
+6346 CCL1 C-C motif chemokine ligand 1 protein-coding 27 0.003215
+6347 CCL2 C-C motif chemokine ligand 2 protein-coding 13 0.001548
+6348 CCL3 C-C motif chemokine ligand 3 protein-coding 20 0.002382
+6349 CCL3L1 C-C motif chemokine ligand 3 like 1 protein-coding 3 0.0003573
+6351 CCL4 C-C motif chemokine ligand 4 protein-coding 16 0.001905
+6352 CCL5 C-C motif chemokine ligand 5 protein-coding 12 0.001429
+6354 CCL7 C-C motif chemokine ligand 7 protein-coding 25 0.002977
+6355 CCL8 C-C motif chemokine ligand 8 protein-coding 15 0.001786
+6356 CCL11 C-C motif chemokine ligand 11 protein-coding 15 0.001786
+6357 CCL13 C-C motif chemokine ligand 13 protein-coding 84 0.01
+6358 CCL14 C-C motif chemokine ligand 14 protein-coding 124 0.01477
+6359 CCL15 C-C motif chemokine ligand 15 protein-coding 87 0.01036
+6360 CCL16 C-C motif chemokine ligand 16 protein-coding 23 0.002739
+6361 CCL17 C-C motif chemokine ligand 17 protein-coding 14 0.001667
+6362 CCL18 C-C motif chemokine ligand 18 protein-coding 15 0.001786
+6363 CCL19 C-C motif chemokine ligand 19 protein-coding 7 0.0008336
+6364 CCL20 C-C motif chemokine ligand 20 protein-coding 20 0.002382
+6366 CCL21 C-C motif chemokine ligand 21 protein-coding 11 0.00131
+6367 CCL22 C-C motif chemokine ligand 22 protein-coding 16 0.001905
+6368 CCL23 C-C motif chemokine ligand 23 protein-coding 27 0.003215
+6369 CCL24 C-C motif chemokine ligand 24 protein-coding 15 0.001786
+6370 CCL25 C-C motif chemokine ligand 25 protein-coding 21 0.002501
+6372 CXCL6 C-X-C motif chemokine ligand 6 protein-coding 17 0.002025
+6373 CXCL11 C-X-C motif chemokine ligand 11 protein-coding 11 0.00131
+6374 CXCL5 C-X-C motif chemokine ligand 5 protein-coding 22 0.00262
+6375 XCL1 X-C motif chemokine ligand 1 protein-coding 26 0.003096
+6376 CX3CL1 C-X3-C motif chemokine ligand 1 protein-coding 53 0.006312
+6382 SDC1 syndecan 1 protein-coding 21 0.002501
+6383 SDC2 syndecan 2 protein-coding 39 0.004645
+6385 SDC4 syndecan 4 protein-coding 29 0.003454
+6386 SDCBP syndecan binding protein protein-coding 36 0.004287
+6387 CXCL12 C-X-C motif chemokine ligand 12 protein-coding 26 0.003096
+6388 SDF2 stromal cell derived factor 2 protein-coding 22 0.00262
+6389 SDHA succinate dehydrogenase complex flavoprotein subunit A protein-coding 95 0.01131
+6390 SDHB succinate dehydrogenase complex iron sulfur subunit B protein-coding 33 0.00393
+6391 SDHC succinate dehydrogenase complex subunit C protein-coding 17 0.002025
+6392 SDHD succinate dehydrogenase complex subunit D protein-coding 22 0.00262
+6396 SEC13 SEC13 homolog, nuclear pore and COPII coat complex component protein-coding 29 0.003454
+6397 SEC14L1 SEC14 like lipid binding 1 protein-coding 93 0.01108
+6398 SECTM1 secreted and transmembrane 1 protein-coding 21 0.002501
+6399 TRAPPC2 trafficking protein particle complex 2 protein-coding 37 0.004406
+6400 SEL1L SEL1L ERAD E3 ligase adaptor subunit protein-coding 83 0.009884
+6401 SELE selectin E protein-coding 96 0.01143
+6402 SELL selectin L protein-coding 52 0.006193
+6403 SELP selectin P protein-coding 160 0.01905
+6404 SELPLG selectin P ligand protein-coding 48 0.005716
+6405 SEMA3F semaphorin 3F protein-coding 80 0.009527
+6406 SEMG1 semenogelin 1 protein-coding 63 0.007503
+6407 SEMG2 semenogelin 2 protein-coding 98 0.01167
+6414 SELENOP selenoprotein P protein-coding 205 0.02441
+6415 SELENOW selenoprotein W protein-coding 10 0.001191
+6416 MAP2K4 mitogen-activated protein kinase kinase 4 protein-coding 113 0.01346
+6418 SET SET nuclear proto-oncogene protein-coding 43 0.005121
+6419 SETMAR SET domain and mariner transposase fusion gene protein-coding 53 0.006312
+6421 SFPQ splicing factor proline and glutamine rich protein-coding 62 0.007384
+6422 SFRP1 secreted frizzled related protein 1 protein-coding 36 0.004287
+6423 SFRP2 secreted frizzled related protein 2 protein-coding 40 0.004764
+6424 SFRP4 secreted frizzled related protein 4 protein-coding 79 0.009408
+6425 SFRP5 secreted frizzled related protein 5 protein-coding 24 0.002858
+6426 SRSF1 serine and arginine rich splicing factor 1 protein-coding 45 0.005359
+6427 SRSF2 serine and arginine rich splicing factor 2 protein-coding 45 0.005359
+6428 SRSF3 serine and arginine rich splicing factor 3 protein-coding 21 0.002501
+6429 SRSF4 serine and arginine rich splicing factor 4 protein-coding 71 0.008455
+6430 SRSF5 serine and arginine rich splicing factor 5 protein-coding 48 0.005716
+6431 SRSF6 serine and arginine rich splicing factor 6 protein-coding 66 0.00786
+6432 SRSF7 serine and arginine rich splicing factor 7 protein-coding 44 0.00524
+6433 SFSWAP splicing factor SWAP protein-coding 107 0.01274
+6434 TRA2B transformer 2 beta homolog protein-coding 69 0.008217
+6439 SFTPB surfactant protein B protein-coding 40 0.004764
+6440 SFTPC surfactant protein C protein-coding 19 0.002263
+6441 SFTPD surfactant protein D protein-coding 44 0.00524
+6442 SGCA sarcoglycan alpha protein-coding 51 0.006074
+6443 SGCB sarcoglycan beta protein-coding 40 0.004764
+6444 SGCD sarcoglycan delta protein-coding 66 0.00786
+6445 SGCG sarcoglycan gamma protein-coding 106 0.01262
+6446 SGK1 serum/glucocorticoid regulated kinase 1 protein-coding 75 0.008932
+6447 SCG5 secretogranin V protein-coding 22 0.00262
+6448 SGSH N-sulfoglucosamine sulfohydrolase protein-coding 38 0.004525
+6449 SGTA small glutamine rich tetratricopeptide repeat containing alpha protein-coding 35 0.004168
+6450 SH3BGR SH3 domain binding glutamate rich protein protein-coding 38 0.004525
+6451 SH3BGRL SH3 domain binding glutamate rich protein like protein-coding 59 0.007026
+6452 SH3BP2 SH3 domain binding protein 2 protein-coding 74 0.008813
+6453 ITSN1 intersectin 1 protein-coding 186 0.02215
+6455 SH3GL1 SH3 domain containing GRB2 like 1, endophilin A2 protein-coding 49 0.005835
+6456 SH3GL2 SH3 domain containing GRB2 like 2, endophilin A1 protein-coding 66 0.00786
+6457 SH3GL3 SH3 domain containing GRB2 like 3, endophilin A3 protein-coding 69 0.008217
+6461 SHB SH2 domain containing adaptor protein B protein-coding 44 0.00524
+6462 SHBG sex hormone binding globulin protein-coding 49 0.005835
+6464 SHC1 SHC adaptor protein 1 protein-coding 62 0.007384
+6468 FBXW4 F-box and WD repeat domain containing 4 protein-coding 34 0.004049
+6469 SHH sonic hedgehog protein-coding 51 0.006074
+6470 SHMT1 serine hydroxymethyltransferase 1 protein-coding 45 0.005359
+6472 SHMT2 serine hydroxymethyltransferase 2 protein-coding 48 0.005716
+6473 SHOX short stature homeobox protein-coding 72 0.008574
+6474 SHOX2 short stature homeobox 2 protein-coding 66 0.00786
+6476 SI sucrase-isomaltase protein-coding 449 0.05347
+6477 SIAH1 siah E3 ubiquitin protein ligase 1 protein-coding 43 0.005121
+6478 SIAH2 siah E3 ubiquitin protein ligase 2 protein-coding 44 0.00524
+6480 ST6GAL1 ST6 beta-galactoside alpha-2,6-sialyltransferase 1 protein-coding 47 0.005597
+6482 ST3GAL1 ST3 beta-galactoside alpha-2,3-sialyltransferase 1 protein-coding 46 0.005478
+6483 ST3GAL2 ST3 beta-galactoside alpha-2,3-sialyltransferase 2 protein-coding 38 0.004525
+6484 ST3GAL4 ST3 beta-galactoside alpha-2,3-sialyltransferase 4 protein-coding 32 0.003811
+6487 ST3GAL3 ST3 beta-galactoside alpha-2,3-sialyltransferase 3 protein-coding 53 0.006312
+6489 ST8SIA1 ST8 alpha-N-acetyl-neuraminide alpha-2,8-sialyltransferase 1 protein-coding 59 0.007026
+6490 PMEL premelanosome protein protein-coding 489 0.05824
+6491 STIL STIL, centriolar assembly protein protein-coding 133 0.01584
+6492 SIM1 single-minded family bHLH transcription factor 1 protein-coding 167 0.01989
+6493 SIM2 single-minded family bHLH transcription factor 2 protein-coding 59 0.007026
+6494 SIPA1 signal-induced proliferation-associated 1 protein-coding 67 0.007979
+6495 SIX1 SIX homeobox 1 protein-coding 43 0.005121
+6496 SIX3 SIX homeobox 3 protein-coding 45 0.005359
+6497 SKI SKI proto-oncogene protein-coding 49 0.005835
+6498 SKIL SKI like proto-oncogene protein-coding 84 0.01
+6499 SKIV2L Ski2 like RNA helicase protein-coding 113 0.01346
+6500 SKP1 S-phase kinase associated protein 1 protein-coding 22 0.00262
+6502 SKP2 S-phase kinase associated protein 2 protein-coding 46 0.005478
+6503 SLA Src like adaptor protein-coding 70 0.008336
+6504 SLAMF1 signaling lymphocytic activation molecule family member 1 protein-coding 69 0.008217
+6505 SLC1A1 solute carrier family 1 member 1 protein-coding 52 0.006193
+6506 SLC1A2 solute carrier family 1 member 2 protein-coding 68 0.008098
+6507 SLC1A3 solute carrier family 1 member 3 protein-coding 78 0.009289
+6508 SLC4A3 solute carrier family 4 member 3 protein-coding 163 0.01941
+6509 SLC1A4 solute carrier family 1 member 4 protein-coding 37 0.004406
+6510 SLC1A5 solute carrier family 1 member 5 protein-coding 50 0.005955
+6511 SLC1A6 solute carrier family 1 member 6 protein-coding 123 0.01465
+6512 SLC1A7 solute carrier family 1 member 7 protein-coding 71 0.008455
+6513 SLC2A1 solute carrier family 2 member 1 protein-coding 53 0.006312
+6514 SLC2A2 solute carrier family 2 member 2 protein-coding 92 0.01096
+6515 SLC2A3 solute carrier family 2 member 3 protein-coding 89 0.0106
+6517 SLC2A4 solute carrier family 2 member 4 protein-coding 59 0.007026
+6518 SLC2A5 solute carrier family 2 member 5 protein-coding 58 0.006907
+6519 SLC3A1 solute carrier family 3 member 1 protein-coding 96 0.01143
+6520 SLC3A2 solute carrier family 3 member 2 protein-coding 82 0.009765
+6521 SLC4A1 solute carrier family 4 member 1 (Diego blood group) protein-coding 126 0.01501
+6522 SLC4A2 solute carrier family 4 member 2 protein-coding 132 0.01572
+6523 SLC5A1 solute carrier family 5 member 1 protein-coding 85 0.01012
+6524 SLC5A2 solute carrier family 5 member 2 protein-coding 85 0.01012
+6525 SMTN smoothelin protein-coding 132 0.01572
+6526 SLC5A3 solute carrier family 5 member 3 protein-coding 70 0.008336
+6527 SLC5A4 solute carrier family 5 member 4 protein-coding 91 0.01084
+6528 SLC5A5 solute carrier family 5 member 5 protein-coding 88 0.01048
+6529 SLC6A1 solute carrier family 6 member 1 protein-coding 88 0.01048
+6530 SLC6A2 solute carrier family 6 member 2 protein-coding 274 0.03263
+6531 SLC6A3 solute carrier family 6 member 3 protein-coding 124 0.01477
+6532 SLC6A4 solute carrier family 6 member 4 protein-coding 313 0.03728
+6533 SLC6A6 solute carrier family 6 member 6 protein-coding 71 0.008455
+6534 SLC6A7 solute carrier family 6 member 7 protein-coding 71 0.008455
+6535 SLC6A8 solute carrier family 6 member 8 protein-coding 50 0.005955
+6536 SLC6A9 solute carrier family 6 member 9 protein-coding 83 0.009884
+6538 SLC6A11 solute carrier family 6 member 11 protein-coding 95 0.01131
+6539 SLC6A12 solute carrier family 6 member 12 protein-coding 77 0.00917
+6540 SLC6A13 solute carrier family 6 member 13 protein-coding 99 0.01179
+6541 SLC7A1 solute carrier family 7 member 1 protein-coding 70 0.008336
+6542 SLC7A2 solute carrier family 7 member 2 protein-coding 91 0.01084
+6543 SLC8A2 solute carrier family 8 member A2 protein-coding 119 0.01417
+6545 SLC7A4 solute carrier family 7 member 4 protein-coding 71 0.008455
+6546 SLC8A1 solute carrier family 8 member A1 protein-coding 226 0.02691
+6547 SLC8A3 solute carrier family 8 member A3 protein-coding 167 0.01989
+6548 SLC9A1 solute carrier family 9 member A1 protein-coding 79 0.009408
+6549 SLC9A2 solute carrier family 9 member A2 protein-coding 127 0.01512
+6550 SLC9A3 solute carrier family 9 member A3 protein-coding 107 0.01274
+6553 SLC9A5 solute carrier family 9 member A5 protein-coding 94 0.01119
+6554 SLC10A1 solute carrier family 10 member 1 protein-coding 33 0.00393
+6555 SLC10A2 solute carrier family 10 member 2 protein-coding 82 0.009765
+6556 SLC11A1 solute carrier family 11 member 1 protein-coding 61 0.007264
+6557 SLC12A1 solute carrier family 12 member 1 protein-coding 168 0.02001
+6558 SLC12A2 solute carrier family 12 member 2 protein-coding 121 0.01441
+6559 SLC12A3 solute carrier family 12 member 3 protein-coding 112 0.01334
+6560 SLC12A4 solute carrier family 12 member 4 protein-coding 117 0.01393
+6561 SLC13A1 solute carrier family 13 member 1 protein-coding 123 0.01465
+6563 SLC14A1 solute carrier family 14 member 1 (Kidd blood group) protein-coding 65 0.007741
+6564 SLC15A1 solute carrier family 15 member 1 protein-coding 89 0.0106
+6565 SLC15A2 solute carrier family 15 member 2 protein-coding 104 0.01239
+6566 SLC16A1 solute carrier family 16 member 1 protein-coding 69 0.008217
+6567 SLC16A2 solute carrier family 16 member 2 protein-coding 70 0.008336
+6568 SLC17A1 solute carrier family 17 member 1 protein-coding 74 0.008813
+6569 SLC34A1 solute carrier family 34 member 1 protein-coding 137 0.01632
+6570 SLC18A1 solute carrier family 18 member A1 protein-coding 93 0.01108
+6571 SLC18A2 solute carrier family 18 member A2 protein-coding 84 0.01
+6572 SLC18A3 solute carrier family 18 member A3 protein-coding 106 0.01262
+6573 SLC19A1 solute carrier family 19 member 1 protein-coding 171 0.02036
+6574 SLC20A1 solute carrier family 20 member 1 protein-coding 73 0.008694
+6575 SLC20A2 solute carrier family 20 member 2 protein-coding 79 0.009408
+6576 SLC25A1 solute carrier family 25 member 1 protein-coding 24 0.002858
+6578 SLCO2A1 solute carrier organic anion transporter family member 2A1 protein-coding 113 0.01346
+6579 SLCO1A2 solute carrier organic anion transporter family member 1A2 protein-coding 109 0.01298
+6580 SLC22A1 solute carrier family 22 member 1 protein-coding 61 0.007264
+6581 SLC22A3 solute carrier family 22 member 3 protein-coding 65 0.007741
+6582 SLC22A2 solute carrier family 22 member 2 protein-coding 100 0.01191
+6583 SLC22A4 solute carrier family 22 member 4 protein-coding 55 0.00655
+6584 SLC22A5 solute carrier family 22 member 5 protein-coding 50 0.005955
+6585 SLIT1 slit guidance ligand 1 protein-coding 359 0.04275
+6586 SLIT3 slit guidance ligand 3 protein-coding 359 0.04275
+6588 SLN sarcolipin protein-coding 9 0.001072
+6590 SLPI secretory leukocyte peptidase inhibitor protein-coding 47 0.005597
+6591 SNAI2 snail family transcriptional repressor 2 protein-coding 50 0.005955
+6594 SMARCA1 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily a, member 1 protein-coding 171 0.02036
+6595 SMARCA2 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily a, member 2 protein-coding 199 0.0237
+6596 HLTF helicase like transcription factor protein-coding 105 0.0125
+6597 SMARCA4 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily a, member 4 protein-coding 313 0.03728
+6598 SMARCB1 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily b, member 1 protein-coding 74 0.008813
+6599 SMARCC1 SWI/SNF related, matrix associated, actin dependent regulator of chromatin subfamily c member 1 protein-coding 103 0.01227
+6601 SMARCC2 SWI/SNF related, matrix associated, actin dependent regulator of chromatin subfamily c member 2 protein-coding 145 0.01727
+6602 SMARCD1 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily d, member 1 protein-coding 48 0.005716
+6603 SMARCD2 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily d, member 2 protein-coding 65 0.007741
+6604 SMARCD3 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily d, member 3 protein-coding 53 0.006312
+6605 SMARCE1 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily e, member 1 protein-coding 50 0.005955
+6606 SMN1 survival of motor neuron 1, telomeric protein-coding 5 0.0005955
+6607 SMN2 survival of motor neuron 2, centromeric protein-coding 2 0.0002382
+6608 SMO smoothened, frizzled class receptor protein-coding 103 0.01227
+6609 SMPD1 sphingomyelin phosphodiesterase 1 protein-coding 70 0.008336
+6610 SMPD2 sphingomyelin phosphodiesterase 2 protein-coding 53 0.006312
+6611 SMS spermine synthase protein-coding 51 0.006074
+6612 SUMO3 small ubiquitin-like modifier 3 protein-coding 11 0.00131
+6613 SUMO2 small ubiquitin-like modifier 2 protein-coding 21 0.002501
+6614 SIGLEC1 sialic acid binding Ig like lectin 1 protein-coding 221 0.02632
+6615 SNAI1 snail family transcriptional repressor 1 protein-coding 44 0.00524
+6616 SNAP25 synaptosome associated protein 25 protein-coding 44 0.00524
+6617 SNAPC1 small nuclear RNA activating complex polypeptide 1 protein-coding 52 0.006193
+6618 SNAPC2 small nuclear RNA activating complex polypeptide 2 protein-coding 39 0.004645
+6619 SNAPC3 small nuclear RNA activating complex polypeptide 3 protein-coding 29 0.003454
+6620 SNCB synuclein beta protein-coding 22 0.00262
+6621 SNAPC4 small nuclear RNA activating complex polypeptide 4 protein-coding 115 0.0137
+6622 SNCA synuclein alpha protein-coding 20 0.002382
+6623 SNCG synuclein gamma protein-coding 17 0.002025
+6624 FSCN1 fascin actin-bundling protein 1 protein-coding 148 0.01763
+6625 SNRNP70 small nuclear ribonucleoprotein U1 subunit 70 protein-coding 40 0.004764
+6626 SNRPA small nuclear ribonucleoprotein polypeptide A protein-coding 41 0.004883
+6627 SNRPA1 small nuclear ribonucleoprotein polypeptide A' protein-coding 29 0.003454
+6628 SNRPB small nuclear ribonucleoprotein polypeptides B and B1 protein-coding 26 0.003096
+6629 SNRPB2 small nuclear ribonucleoprotein polypeptide B2 protein-coding 23 0.002739
+6631 SNRPC small nuclear ribonucleoprotein polypeptide C protein-coding 26 0.003096
+6632 SNRPD1 small nuclear ribonucleoprotein D1 polypeptide protein-coding 11 0.00131
+6633 SNRPD2 small nuclear ribonucleoprotein D2 polypeptide protein-coding 37 0.004406
+6634 SNRPD3 small nuclear ribonucleoprotein D3 polypeptide protein-coding 17 0.002025
+6635 SNRPE small nuclear ribonucleoprotein polypeptide E protein-coding 14 0.001667
+6636 SNRPF small nuclear ribonucleoprotein polypeptide F protein-coding 5 0.0005955
+6637 SNRPG small nuclear ribonucleoprotein polypeptide G protein-coding 8 0.0009527
+6638 SNRPN small nuclear ribonucleoprotein polypeptide N protein-coding 84 0.01
+6640 SNTA1 syntrophin alpha 1 protein-coding 42 0.005002
+6641 SNTB1 syntrophin beta 1 protein-coding 59 0.007026
+6642 SNX1 sorting nexin 1 protein-coding 62 0.007384
+6643 SNX2 sorting nexin 2 protein-coding 55 0.00655
+6645 SNTB2 syntrophin beta 2 protein-coding 25 0.002977
+6646 SOAT1 sterol O-acyltransferase 1 protein-coding 123 0.01465
+6647 SOD1 superoxide dismutase 1 protein-coding 19 0.002263
+6648 SOD2 superoxide dismutase 2 protein-coding 24 0.002858
+6649 SOD3 superoxide dismutase 3 protein-coding 11 0.00131
+6650 CAPN15 calpain 15 protein-coding 84 0.01
+6651 SON SON DNA binding protein protein-coding 180 0.02144
+6652 SORD sorbitol dehydrogenase protein-coding 30 0.003573
+6653 SORL1 sortilin related receptor 1 protein-coding 219 0.02608
+6654 SOS1 SOS Ras/Rac guanine nucleotide exchange factor 1 protein-coding 331 0.03942
+6655 SOS2 SOS Ras/Rho guanine nucleotide exchange factor 2 protein-coding 144 0.01715
+6656 SOX1 SRY-box 1 protein-coding 31 0.003692
+6657 SOX2 SRY-box 2 protein-coding 42 0.005002
+6658 SOX3 SRY-box 3 protein-coding 71 0.008455
+6659 SOX4 SRY-box 4 protein-coding 29 0.003454
+6660 SOX5 SRY-box 5 protein-coding 160 0.01905
+6662 SOX9 SRY-box 9 protein-coding 146 0.01739
+6663 SOX10 SRY-box 10 protein-coding 54 0.006431
+6664 SOX11 SRY-box 11 protein-coding 67 0.007979
+6665 SOX15 SRY-box 15 protein-coding 22 0.00262
+6666 SOX12 SRY-box 12 protein-coding 14 0.001667
+6667 SP1 Sp1 transcription factor protein-coding 85 0.01012
+6668 SP2 Sp2 transcription factor protein-coding 40 0.004764
+6670 SP3 Sp3 transcription factor protein-coding 77 0.00917
+6671 SP4 Sp4 transcription factor protein-coding 91 0.01084
+6672 SP100 SP100 nuclear antigen protein-coding 120 0.01429
+6674 SPAG1 sperm associated antigen 1 protein-coding 94 0.01119
+6675 UAP1 UDP-N-acetylglucosamine pyrophosphorylase 1 protein-coding 61 0.007264
+6676 SPAG4 sperm associated antigen 4 protein-coding 36 0.004287
+6677 SPAM1 sperm adhesion molecule 1 protein-coding 182 0.02167
+6678 SPARC secreted protein acidic and cysteine rich protein-coding 57 0.006788
+6683 SPAST spastin protein-coding 62 0.007384
+6687 SPG7 SPG7, paraplegin matrix AAA peptidase subunit protein-coding 86 0.01024
+6688 SPI1 Spi-1 proto-oncogene protein-coding 39 0.004645
+6689 SPIB Spi-B transcription factor protein-coding 38 0.004525
+6690 SPINK1 serine peptidase inhibitor, Kazal type 1 protein-coding 8 0.0009527
+6691 SPINK2 serine peptidase inhibitor, Kazal type 2 protein-coding 12 0.001429
+6692 SPINT1 serine peptidase inhibitor, Kunitz type 1 protein-coding 38 0.004525
+6693 SPN sialophorin protein-coding 40 0.004764
+6694 SPP2 secreted phosphoprotein 2 protein-coding 44 0.00524
+6695 SPOCK1 SPARC (osteonectin), cwcv and kazal like domains proteoglycan 1 protein-coding 65 0.007741
+6696 SPP1 secreted phosphoprotein 1 protein-coding 50 0.005955
+6697 SPR sepiapterin reductase protein-coding 19 0.002263
+6698 SPRR1A small proline rich protein 1A protein-coding 17 0.002025
+6699 SPRR1B small proline rich protein 1B protein-coding 20 0.002382
+6700 SPRR2A small proline rich protein 2A protein-coding 17 0.002025
+6701 SPRR2B small proline rich protein 2B protein-coding 17 0.002025
+6703 SPRR2D small proline rich protein 2D protein-coding 20 0.002382
+6704 SPRR2E small proline rich protein 2E protein-coding 20 0.002382
+6705 SPRR2F small proline rich protein 2F protein-coding 10 0.001191
+6706 SPRR2G small proline rich protein 2G protein-coding 18 0.002144
+6707 SPRR3 small proline rich protein 3 protein-coding 31 0.003692
+6708 SPTA1 spectrin alpha, erythrocytic 1 protein-coding 723 0.0861
+6709 SPTAN1 spectrin alpha, non-erythrocytic 1 protein-coding 258 0.03073
+6710 SPTB spectrin beta, erythrocytic protein-coding 245 0.02918
+6711 SPTBN1 spectrin beta, non-erythrocytic 1 protein-coding 237 0.02822
+6712 SPTBN2 spectrin beta, non-erythrocytic 2 protein-coding 219 0.02608
+6713 SQLE squalene epoxidase protein-coding 60 0.007145
+6714 SRC SRC proto-oncogene, non-receptor tyrosine kinase protein-coding 39 0.004645
+6715 SRD5A1 steroid 5 alpha-reductase 1 protein-coding 23 0.002739
+6716 SRD5A2 steroid 5 alpha-reductase 2 protein-coding 36 0.004287
+6717 SRI sorcin protein-coding 19 0.002263
+6718 AKR1D1 aldo-keto reductase family 1 member D1 protein-coding 71 0.008455
+6720 SREBF1 sterol regulatory element binding transcription factor 1 protein-coding 99 0.01179
+6721 SREBF2 sterol regulatory element binding transcription factor 2 protein-coding 99 0.01179
+6722 SRF serum response factor protein-coding 29 0.003454
+6723 SRM spermidine synthase protein-coding 29 0.003454
+6725 SRMS src-related kinase lacking C-terminal regulatory tyrosine and N-terminal myristylation sites protein-coding 99 0.01179
+6726 SRP9 signal recognition particle 9 protein-coding 12 0.001429
+6727 SRP14 signal recognition particle 14 protein-coding 14 0.001667
+6728 SRP19 signal recognition particle 19 protein-coding 19 0.002263
+6729 SRP54 signal recognition particle 54 protein-coding 46 0.005478
+6730 SRP68 signal recognition particle 68 protein-coding 66 0.00786
+6731 SRP72 signal recognition particle 72 protein-coding 84 0.01
+6732 SRPK1 SRSF protein kinase 1 protein-coding 69 0.008217
+6733 SRPK2 SRSF protein kinase 2 protein-coding 74 0.008813
+6734 SRPRA SRP receptor alpha subunit protein-coding 94 0.01119
+6736 SRY sex determining region Y protein-coding 7 0.0008336
+6737 TRIM21 tripartite motif containing 21 protein-coding 60 0.007145
+6738 TROVE2 TROVE domain family member 2 protein-coding 58 0.006907
+6741 SSB Sjogren syndrome antigen B protein-coding 39 0.004645
+6742 SSBP1 single stranded DNA binding protein 1 protein-coding 25 0.002977
+6744 SSFA2 sperm specific antigen 2 protein-coding 128 0.01524
+6745 SSR1 signal sequence receptor subunit 1 protein-coding 20 0.002382
+6746 SSR2 signal sequence receptor subunit 2 protein-coding 19 0.002263
+6747 SSR3 signal sequence receptor subunit 3 protein-coding 28 0.003335
+6748 SSR4 signal sequence receptor subunit 4 protein-coding 26 0.003096
+6749 SSRP1 structure specific recognition protein 1 protein-coding 82 0.009765
+6750 SST somatostatin protein-coding 18 0.002144
+6751 SSTR1 somatostatin receptor 1 protein-coding 77 0.00917
+6752 SSTR2 somatostatin receptor 2 protein-coding 41 0.004883
+6753 SSTR3 somatostatin receptor 3 protein-coding 85 0.01012
+6754 SSTR4 somatostatin receptor 4 protein-coding 113 0.01346
+6755 SSTR5 somatostatin receptor 5 protein-coding 54 0.006431
+6756 SSX1 SSX family member 1 protein-coding 40 0.004764
+6758 SSX5 SSX family member 5 protein-coding 54 0.006431
+6759 SSX4 SSX family member 4 protein-coding 18 0.002144
+6760 SS18 SS18, nBAF chromatin remodeling complex subunit protein-coding 52 0.006193
+6764 ST5 suppression of tumorigenicity 5 protein-coding 121 0.01441
+6767 ST13 ST13, Hsp70 interacting protein protein-coding 37 0.004406
+6768 ST14 suppression of tumorigenicity 14 protein-coding 85 0.01012
+6769 STAC SH3 and cysteine rich domain protein-coding 79 0.009408
+6770 STAR steroidogenic acute regulatory protein protein-coding 47 0.005597
+6772 STAT1 signal transducer and activator of transcription 1 protein-coding 121 0.01441
+6773 STAT2 signal transducer and activator of transcription 2 protein-coding 85 0.01012
+6774 STAT3 signal transducer and activator of transcription 3 protein-coding 103 0.01227
+6775 STAT4 signal transducer and activator of transcription 4 protein-coding 112 0.01334
+6776 STAT5A signal transducer and activator of transcription 5A protein-coding 70 0.008336
+6777 STAT5B signal transducer and activator of transcription 5B protein-coding 80 0.009527
+6778 STAT6 signal transducer and activator of transcription 6 protein-coding 86 0.01024
+6779 STATH statherin protein-coding 11 0.00131
+6780 STAU1 staufen double-stranded RNA binding protein 1 protein-coding 70 0.008336
+6781 STC1 stanniocalcin 1 protein-coding 41 0.004883
+6782 HSPA13 heat shock protein family A (Hsp70) member 13 protein-coding 72 0.008574
+6783 SULT1E1 sulfotransferase family 1E member 1 protein-coding 67 0.007979
+6785 ELOVL4 ELOVL fatty acid elongase 4 protein-coding 49 0.005835
+6786 STIM1 stromal interaction molecule 1 protein-coding 60 0.007145
+6787 NEK4 NIMA related kinase 4 protein-coding 63 0.007503
+6788 STK3 serine/threonine kinase 3 protein-coding 77 0.00917
+6789 STK4 serine/threonine kinase 4 protein-coding 133 0.01584
+6790 AURKA aurora kinase A protein-coding 36 0.004287
+6792 CDKL5 cyclin dependent kinase like 5 protein-coding 137 0.01632
+6793 STK10 serine/threonine kinase 10 protein-coding 104 0.01239
+6794 STK11 serine/threonine kinase 11 protein-coding 131 0.0156
+6795 AURKC aurora kinase C protein-coding 61 0.007264
+6799 SULT1A2 sulfotransferase family 1A member 2 protein-coding 38 0.004525
+6801 STRN striatin protein-coding 77 0.00917
+6804 STX1A syntaxin 1A protein-coding 37 0.004406
+6809 STX3 syntaxin 3 protein-coding 44 0.00524
+6810 STX4 syntaxin 4 protein-coding 49 0.005835
+6811 STX5 syntaxin 5 protein-coding 34 0.004049
+6812 STXBP1 syntaxin binding protein 1 protein-coding 74 0.008813
+6813 STXBP2 syntaxin binding protein 2 protein-coding 143 0.01703
+6814 STXBP3 syntaxin binding protein 3 protein-coding 77 0.00917
+6815 STYX serine/threonine/tyrosine interacting protein protein-coding 27 0.003215
+6817 SULT1A1 sulfotransferase family 1A member 1 protein-coding 48 0.005716
+6819 SULT1C2 sulfotransferase family 1C member 2 protein-coding 46 0.005478
+6820 SULT2B1 sulfotransferase family 2B member 1 protein-coding 30 0.003573
+6821 SUOX sulfite oxidase protein-coding 63 0.007503
+6822 SULT2A1 sulfotransferase family 2A member 1 protein-coding 47 0.005597
+6827 SUPT4H1 SPT4 homolog, DSIF elongation factor subunit protein-coding 14 0.001667
+6829 SUPT5H SPT5 homolog, DSIF elongation factor subunit protein-coding 134 0.01596
+6830 SUPT6H SPT6 homolog, histone chaperone protein-coding 178 0.0212
+6832 SUPV3L1 Suv3 like RNA helicase protein-coding 50 0.005955
+6833 ABCC8 ATP binding cassette subfamily C member 8 protein-coding 195 0.02322
+6834 SURF1 SURF1, cytochrome c oxidase assembly factor protein-coding 16 0.001905
+6835 SURF2 surfeit 2 protein-coding 27 0.003215
+6836 SURF4 surfeit 4 protein-coding 34 0.004049
+6837 MED22 mediator complex subunit 22 protein-coding 116 0.01381
+6838 SURF6 surfeit 6 protein-coding 41 0.004883
+6839 SUV39H1 suppressor of variegation 3-9 homolog 1 protein-coding 53 0.006312
+6840 SVIL supervillin protein-coding 265 0.03156
+6843 VAMP1 vesicle associated membrane protein 1 protein-coding 12 0.001429
+6844 VAMP2 vesicle associated membrane protein 2 protein-coding 9 0.001072
+6845 VAMP7 vesicle associated membrane protein 7 protein-coding 41 0.004883
+6846 XCL2 X-C motif chemokine ligand 2 protein-coding 21 0.002501
+6847 SYCP1 synaptonemal complex protein 1 protein-coding 163 0.01941
+6850 SYK spleen associated tyrosine kinase protein-coding 83 0.009884
+6853 SYN1 synapsin I protein-coding 60 0.007145
+6854 SYN2 synapsin II protein-coding 65 0.007741
+6855 SYP synaptophysin protein-coding 34 0.004049
+6856 SYPL1 synaptophysin like 1 protein-coding 26 0.003096
+6857 SYT1 synaptotagmin 1 protein-coding 84 0.01
+6860 SYT4 synaptotagmin 4 protein-coding 118 0.01405
+6861 SYT5 synaptotagmin 5 protein-coding 55 0.00655
+6862 TBXT T-box transcription factor T protein-coding 102 0.01215
+6863 TAC1 tachykinin precursor 1 protein-coding 27 0.003215
+6865 TACR2 tachykinin receptor 2 protein-coding 37 0.004406
+6866 TAC3 tachykinin 3 protein-coding 18 0.002144
+6867 TACC1 transforming acidic coiled-coil containing protein 1 protein-coding 69 0.008217
+6868 ADAM17 ADAM metallopeptidase domain 17 protein-coding 204 0.02429
+6869 TACR1 tachykinin receptor 1 protein-coding 66 0.00786
+6870 TACR3 tachykinin receptor 3 protein-coding 111 0.01322
+6871 TADA2A transcriptional adaptor 2A protein-coding 51 0.006074
+6872 TAF1 TATA-box binding protein associated factor 1 protein-coding 256 0.03049
+6873 TAF2 TATA-box binding protein associated factor 2 protein-coding 114 0.01358
+6874 TAF4 TATA-box binding protein associated factor 4 protein-coding 105 0.0125
+6875 TAF4B TATA-box binding protein associated factor 4b protein-coding 82 0.009765
+6876 TAGLN transgelin protein-coding 22 0.00262
+6877 TAF5 TATA-box binding protein associated factor 5 protein-coding 68 0.008098
+6878 TAF6 TATA-box binding protein associated factor 6 protein-coding 80 0.009527
+6879 TAF7 TATA-box binding protein associated factor 7 protein-coding 44 0.00524
+6880 TAF9 TATA-box binding protein associated factor 9 protein-coding 27 0.003215
+6881 TAF10 TATA-box binding protein associated factor 10 protein-coding 19 0.002263
+6882 TAF11 TATA-box binding protein associated factor 11 protein-coding 20 0.002382
+6883 TAF12 TATA-box binding protein associated factor 12 protein-coding 11 0.00131
+6884 TAF13 TATA-box binding protein associated factor 13 protein-coding 16 0.001905
+6885 MAP3K7 mitogen-activated protein kinase kinase kinase 7 protein-coding 82 0.009765
+6886 TAL1 TAL bHLH transcription factor 1, erythroid differentiation factor protein-coding 37 0.004406
+6887 TAL2 TAL bHLH transcription factor 2 protein-coding 13 0.001548
+6888 TALDO1 transaldolase 1 protein-coding 37 0.004406
+6890 TAP1 transporter 1, ATP binding cassette subfamily B member protein-coding 75 0.008932
+6891 TAP2 transporter 2, ATP binding cassette subfamily B member protein-coding 65 0.007741
+6892 TAPBP TAP binding protein protein-coding 57 0.006788
+6894 TARBP1 TAR (HIV-1) RNA binding protein 1 protein-coding 135 0.01608
+6895 TARBP2 TARBP2, RISC loading complex RNA binding subunit protein-coding 53 0.006312
+6897 TARS threonyl-tRNA synthetase protein-coding 101 0.01203
+6898 TAT tyrosine aminotransferase protein-coding 70 0.008336
+6899 TBX1 T-box 1 protein-coding 25 0.002977
+6900 CNTN2 contactin 2 protein-coding 132 0.01572
+6901 TAZ tafazzin protein-coding 43 0.005121
+6902 TBCA tubulin folding cofactor A protein-coding 11 0.00131
+6903 TBCC tubulin folding cofactor C protein-coding 30 0.003573
+6904 TBCD tubulin folding cofactor D protein-coding 125 0.01489
+6905 TBCE tubulin folding cofactor E protein-coding 55 0.00655
+6906 SERPINA7 serpin family A member 7 protein-coding 77 0.00917
+6907 TBL1X transducin beta like 1 X-linked protein-coding 71 0.008455
+6908 TBP TATA-box binding protein protein-coding 35 0.004168
+6909 TBX2 T-box 2 protein-coding 74 0.008813
+6910 TBX5 T-box 5 protein-coding 144 0.01715
+6911 TBX6 T-box 6 protein-coding 44 0.00524
+6913 TBX15 T-box 15 protein-coding 79 0.009408
+6915 TBXA2R thromboxane A2 receptor protein-coding 40 0.004764
+6916 TBXAS1 thromboxane A synthase 1 protein-coding 85 0.01012
+6917 TCEA1 transcription elongation factor A1 protein-coding 39 0.004645
+6919 TCEA2 transcription elongation factor A2 protein-coding 41 0.004883
+6920 TCEA3 transcription elongation factor A3 protein-coding 43 0.005121
+6921 ELOC elongin C protein-coding 21 0.002501
+6923 ELOB elongin B protein-coding 20 0.002382
+6924 ELOA elongin A protein-coding 81 0.009646
+6925 TCF4 transcription factor 4 protein-coding 127 0.01512
+6926 TBX3 T-box 3 protein-coding 137 0.01632
+6927 HNF1A HNF1 homeobox A protein-coding 90 0.01072
+6928 HNF1B HNF1 homeobox B protein-coding 73 0.008694
+6929 TCF3 transcription factor 3 protein-coding 55 0.00655
+6932 TCF7 transcription factor 7 protein-coding 42 0.005002
+6934 TCF7L2 transcription factor 7 like 2 protein-coding 227 0.02703
+6935 ZEB1 zinc finger E-box binding homeobox 1 protein-coding 192 0.02287
+6936 GCFC2 GC-rich sequence DNA-binding factor 2 protein-coding 82 0.009765
+6938 TCF12 transcription factor 12 protein-coding 111 0.01322
+6939 TCF15 transcription factor 15 protein-coding 6 0.0007145
+6940 ZNF354A zinc finger protein 354A protein-coding 87 0.01036
+6941 TCF19 transcription factor 19 protein-coding 37 0.004406
+6942 TCF20 transcription factor 20 protein-coding 192 0.02287
+6943 TCF21 transcription factor 21 protein-coding 41 0.004883
+6944 VPS72 vacuolar protein sorting 72 homolog protein-coding 59 0.007026
+6945 MLX MLX, MAX dimerization protein protein-coding 41 0.004883
+6947 TCN1 transcobalamin 1 protein-coding 72 0.008574
+6948 TCN2 transcobalamin 2 protein-coding 56 0.006669
+6949 TCOF1 treacle ribosome biogenesis factor 1 protein-coding 117 0.01393
+6950 TCP1 t-complex 1 protein-coding 60 0.007145
+6953 TCP10 t-complex 10 protein-coding 48 0.005716
+6954 TCP11 t-complex 11 protein-coding 61 0.007264
+6956 TRAV6 T cell receptor alpha variable 6 other 23 0.002739
+6962 TRBV20OR9-2 T cell receptor beta variable 20/OR9-2 (non-functional) pseudo 1 0.0001191
+6966 TRGC1 T cell receptor gamma constant 1 other 45 0.005359
+6967 TRGC2 T cell receptor gamma constant 2 other 48 0.005716
+6969 TRGJ2 T cell receptor gamma joining 2 other 1 0.0001191
+6970 TRGJP T cell receptor gamma joining P other 9 0.001072
+6971 TRGJP1 T cell receptor gamma joining P1 other 2 0.0002382
+6972 TRGJP2 T cell receptor gamma joining P2 other 8 0.0009527
+6974 TRGV2 T cell receptor gamma variable 2 other 29 0.003454
+6975 TECTB tectorin beta protein-coding 50 0.005955
+6976 TRGV3 T cell receptor gamma variable 3 other 26 0.003096
+6977 TRGV4 T cell receptor gamma variable 4 other 22 0.00262
+6978 TRGV5 T cell receptor gamma variable 5 other 22 0.00262
+6982 TRGV8 T cell receptor gamma variable 8 other 17 0.002025
+6983 TRGV9 T cell receptor gamma variable 9 other 20 0.002382
+6984 TRGV10 T cell receptor gamma variable 10 (non-functional) pseudo 6 0.0007145
+6985 TRGV11 T cell receptor gamma variable 11 (non-functional) pseudo 3 0.0003573
+6988 TCTA T cell leukemia translocation altered protein-coding 12 0.001429
+6990 DYNLT3 dynein light chain Tctex-type 3 protein-coding 9 0.001072
+6991 TCTE3 t-complex-associated-testis-expressed 3 protein-coding 28 0.003335
+6992 PPP1R11 protein phosphatase 1 regulatory inhibitor subunit 11 protein-coding 19 0.002263
+6993 DYNLT1 dynein light chain Tctex-type 1 protein-coding 10 0.001191
+6996 TDG thymine DNA glycosylase protein-coding 63 0.007503
+6997 TDGF1 teratocarcinoma-derived growth factor 1 protein-coding 42 0.005002
+6998 TDGF1P3 teratocarcinoma-derived growth factor 1 pseudogene 3 pseudo 114 0.01358
+6999 TDO2 tryptophan 2,3-dioxygenase protein-coding 164 0.01953
+7001 PRDX2 peroxiredoxin 2 protein-coding 30 0.003573
+7003 TEAD1 TEA domain transcription factor 1 protein-coding 44 0.00524
+7004 TEAD4 TEA domain transcription factor 4 protein-coding 62 0.007384
+7005 TEAD3 TEA domain transcription factor 3 protein-coding 42 0.005002
+7006 TEC tec protein tyrosine kinase protein-coding 87 0.01036
+7007 TECTA tectorin alpha protein-coding 277 0.03299
+7008 TEF TEF, PAR bZIP transcription factor protein-coding 22 0.00262
+7009 TMBIM6 transmembrane BAX inhibitor motif containing 6 protein-coding 31 0.003692
+7010 TEK TEK receptor tyrosine kinase protein-coding 149 0.01774
+7011 TEP1 telomerase associated protein 1 protein-coding 220 0.0262
+7013 TERF1 telomeric repeat binding factor 1 protein-coding 54 0.006431
+7014 TERF2 telomeric repeat binding factor 2 protein-coding 42 0.005002
+7015 TERT telomerase reverse transcriptase protein-coding 86 0.01024
+7016 TESK1 testis associated actin remodelling kinase 1 protein-coding 57 0.006788
+7018 TF transferrin protein-coding 116 0.01381
+7019 TFAM transcription factor A, mitochondrial protein-coding 34 0.004049
+7020 TFAP2A transcription factor AP-2 alpha protein-coding 73 0.008694
+7021 TFAP2B transcription factor AP-2 beta protein-coding 99 0.01179
+7022 TFAP2C transcription factor AP-2 gamma protein-coding 74 0.008813
+7023 TFAP4 transcription factor AP-4 protein-coding 51 0.006074
+7024 TFCP2 transcription factor CP2 protein-coding 58 0.006907
+7025 NR2F1 nuclear receptor subfamily 2 group F member 1 protein-coding 117 0.01393
+7026 NR2F2 nuclear receptor subfamily 2 group F member 2 protein-coding 117 0.01393
+7027 TFDP1 transcription factor Dp-1 protein-coding 84 0.01
+7029 TFDP2 transcription factor Dp-2 protein-coding 59 0.007026
+7030 TFE3 transcription factor binding to IGHM enhancer 3 protein-coding 82 0.009765
+7031 TFF1 trefoil factor 1 protein-coding 9 0.001072
+7032 TFF2 trefoil factor 2 protein-coding 11 0.00131
+7033 TFF3 trefoil factor 3 protein-coding 10 0.001191
+7035 TFPI tissue factor pathway inhibitor protein-coding 53 0.006312
+7036 TFR2 transferrin receptor 2 protein-coding 70 0.008336
+7037 TFRC transferrin receptor protein-coding 71 0.008455
+7038 TG thyroglobulin protein-coding 409 0.04871
+7039 TGFA transforming growth factor alpha protein-coding 14 0.001667
+7040 TGFB1 transforming growth factor beta 1 protein-coding 40 0.004764
+7041 TGFB1I1 transforming growth factor beta 1 induced transcript 1 protein-coding 70 0.008336
+7042 TGFB2 transforming growth factor beta 2 protein-coding 61 0.007264
+7043 TGFB3 transforming growth factor beta 3 protein-coding 44 0.00524
+7044 LEFTY2 left-right determination factor 2 protein-coding 36 0.004287
+7045 TGFBI transforming growth factor beta induced protein-coding 75 0.008932
+7046 TGFBR1 transforming growth factor beta receptor 1 protein-coding 86 0.01024
+7047 TGM4 transglutaminase 4 protein-coding 109 0.01298
+7048 TGFBR2 transforming growth factor beta receptor 2 protein-coding 129 0.01536
+7049 TGFBR3 transforming growth factor beta receptor 3 protein-coding 111 0.01322
+7050 TGIF1 TGFB induced factor homeobox 1 protein-coding 50 0.005955
+7051 TGM1 transglutaminase 1 protein-coding 87 0.01036
+7052 TGM2 transglutaminase 2 protein-coding 83 0.009884
+7053 TGM3 transglutaminase 3 protein-coding 110 0.0131
+7054 TH tyrosine hydroxylase protein-coding 57 0.006788
+7056 THBD thrombomodulin protein-coding 40 0.004764
+7057 THBS1 thrombospondin 1 protein-coding 135 0.01608
+7058 THBS2 thrombospondin 2 protein-coding 208 0.02477
+7059 THBS3 thrombospondin 3 protein-coding 100 0.01191
+7060 THBS4 thrombospondin 4 protein-coding 95 0.01131
+7062 TCHH trichohyalin protein-coding 298 0.03549
+7064 THOP1 thimet oligopeptidase 1 protein-coding 82 0.009765
+7066 THPO thrombopoietin protein-coding 267 0.0318
+7067 THRA thyroid hormone receptor alpha protein-coding 62 0.007384
+7068 THRB thyroid hormone receptor beta protein-coding 60 0.007145
+7069 THRSP thyroid hormone responsive protein-coding 20 0.002382
+7070 THY1 Thy-1 cell surface antigen protein-coding 23 0.002739
+7071 KLF10 Kruppel like factor 10 protein-coding 65 0.007741
+7072 TIA1 TIA1 cytotoxic granule associated RNA binding protein protein-coding 46 0.005478
+7073 TIAL1 TIA1 cytotoxic granule associated RNA binding protein like 1 protein-coding 60 0.007145
+7074 TIAM1 T cell lymphoma invasion and metastasis 1 protein-coding 273 0.03251
+7075 TIE1 tyrosine kinase with immunoglobulin like and EGF like domains 1 protein-coding 160 0.01905
+7076 TIMP1 TIMP metallopeptidase inhibitor 1 protein-coding 44 0.00524
+7077 TIMP2 TIMP metallopeptidase inhibitor 2 protein-coding 29 0.003454
+7078 TIMP3 TIMP metallopeptidase inhibitor 3 protein-coding 51 0.006074
+7079 TIMP4 TIMP metallopeptidase inhibitor 4 protein-coding 36 0.004287
+7080 NKX2-1 NK2 homeobox 1 protein-coding 151 0.01798
+7082 TJP1 tight junction protein 1 protein-coding 184 0.02191
+7083 TK1 thymidine kinase 1 protein-coding 52 0.006193
+7084 TK2 thymidine kinase 2, mitochondrial protein-coding 29 0.003454
+7086 TKT transketolase protein-coding 54 0.006431
+7087 ICAM5 intercellular adhesion molecule 5 protein-coding 86 0.01024
+7088 TLE1 transducin like enhancer of split 1 protein-coding 120 0.01429
+7089 TLE2 transducin like enhancer of split 2 protein-coding 90 0.01072
+7090 TLE3 transducin like enhancer of split 3 protein-coding 77 0.00917
+7091 TLE4 transducin like enhancer of split 4 protein-coding 135 0.01608
+7092 TLL1 tolloid like 1 protein-coding 208 0.02477
+7093 TLL2 tolloid like 2 protein-coding 137 0.01632
+7094 TLN1 talin 1 protein-coding 223 0.02656
+7095 SEC62 SEC62 homolog, preprotein translocation factor protein-coding 36 0.004287
+7096 TLR1 toll like receptor 1 protein-coding 82 0.009765
+7097 TLR2 toll like receptor 2 protein-coding 85 0.01012
+7098 TLR3 toll like receptor 3 protein-coding 103 0.01227
+7099 TLR4 toll like receptor 4 protein-coding 233 0.02775
+7100 TLR5 toll like receptor 5 protein-coding 110 0.0131
+7101 NR2E1 nuclear receptor subfamily 2 group E member 1 protein-coding 70 0.008336
+7102 TSPAN7 tetraspanin 7 protein-coding 34 0.004049
+7103 TSPAN8 tetraspanin 8 protein-coding 44 0.00524
+7104 TM4SF4 transmembrane 4 L six family member 4 protein-coding 31 0.003692
+7105 TSPAN6 tetraspanin 6 protein-coding 27 0.003215
+7106 TSPAN4 tetraspanin 4 protein-coding 22 0.00262
+7107 GPR137B G protein-coupled receptor 137B protein-coding 55 0.00655
+7108 TM7SF2 transmembrane 7 superfamily member 2 protein-coding 42 0.005002
+7109 TRAPPC10 trafficking protein particle complex 10 protein-coding 115 0.0137
+7110 TMF1 TATA element modulatory factor 1 protein-coding 106 0.01262
+7111 TMOD1 tropomodulin 1 protein-coding 39 0.004645
+7112 TMPO thymopoietin protein-coding 99 0.01179
+7113 TMPRSS2 transmembrane serine protease 2 protein-coding 49 0.005835
+7114 TMSB4X thymosin beta 4, X-linked protein-coding 11 0.00131
+7122 CLDN5 claudin 5 protein-coding 28 0.003335
+7123 CLEC3B C-type lectin domain family 3 member B protein-coding 31 0.003692
+7124 TNF tumor necrosis factor protein-coding 24 0.002858
+7125 TNNC2 troponin C2, fast skeletal type protein-coding 20 0.002382
+7126 TNFAIP1 TNF alpha induced protein 1 protein-coding 35 0.004168
+7127 TNFAIP2 TNF alpha induced protein 2 protein-coding 46 0.005478
+7128 TNFAIP3 TNF alpha induced protein 3 protein-coding 87 0.01036
+7130 TNFAIP6 TNF alpha induced protein 6 protein-coding 51 0.006074
+7132 TNFRSF1A TNF receptor superfamily member 1A protein-coding 54 0.006431
+7133 TNFRSF1B TNF receptor superfamily member 1B protein-coding 39 0.004645
+7134 TNNC1 troponin C1, slow skeletal and cardiac type protein-coding 247 0.02942
+7135 TNNI1 troponin I1, slow skeletal type protein-coding 29 0.003454
+7136 TNNI2 troponin I2, fast skeletal type protein-coding 46 0.005478
+7137 TNNI3 troponin I3, cardiac type protein-coding 55 0.00655
+7138 TNNT1 troponin T1, slow skeletal type protein-coding 54 0.006431
+7139 TNNT2 troponin T2, cardiac type protein-coding 46 0.005478
+7140 TNNT3 troponin T3, fast skeletal type protein-coding 60 0.007145
+7141 TNP1 transition protein 1 protein-coding 13 0.001548
+7142 TNP2 transition protein 2 protein-coding 26 0.003096
+7143 TNR tenascin R protein-coding 356 0.0424
+7145 TNS1 tensin 1 protein-coding 198 0.02358
+7148 TNXB tenascin XB protein-coding 307 0.03656
+7150 TOP1 DNA topoisomerase I protein-coding 91 0.01084
+7153 TOP2A DNA topoisomerase II alpha protein-coding 117 0.01393
+7155 TOP2B DNA topoisomerase II beta protein-coding 125 0.01489
+7156 TOP3A DNA topoisomerase III alpha protein-coding 98 0.01167
+7157 TP53 tumor protein p53 protein-coding 3070 0.3656
+7158 TP53BP1 tumor protein p53 binding protein 1 protein-coding 3200 0.3811
+7159 TP53BP2 tumor protein p53 binding protein 2 protein-coding 134 0.01596
+7161 TP73 tumor protein p73 protein-coding 85 0.01012
+7162 TPBG trophoblast glycoprotein protein-coding 49 0.005835
+7163 TPD52 tumor protein D52 protein-coding 33 0.00393
+7164 TPD52L1 tumor protein D52 like 1 protein-coding 39 0.004645
+7165 TPD52L2 tumor protein D52 like 2 protein-coding 32 0.003811
+7166 TPH1 tryptophan hydroxylase 1 protein-coding 62 0.007384
+7167 TPI1 triosephosphate isomerase 1 protein-coding 36 0.004287
+7168 TPM1 tropomyosin 1 protein-coding 33 0.00393
+7169 TPM2 tropomyosin 2 protein-coding 37 0.004406
+7170 TPM3 tropomyosin 3 protein-coding 29 0.003454
+7171 TPM4 tropomyosin 4 protein-coding 39 0.004645
+7172 TPMT thiopurine S-methyltransferase protein-coding 25 0.002977
+7173 TPO thyroid peroxidase protein-coding 229 0.02727
+7174 TPP2 tripeptidyl peptidase 2 protein-coding 136 0.0162
+7175 TPR translocated promoter region, nuclear basket protein protein-coding 253 0.03013
+7177 TPSAB1 tryptase alpha/beta 1 protein-coding 30 0.003573
+7178 TPT1 tumor protein, translationally-controlled 1 protein-coding 12 0.001429
+7179 TPTE transmembrane phosphatase with tensin homology protein-coding 413 0.04918
+7180 CRISP2 cysteine rich secretory protein 2 protein-coding 43 0.005121
+7181 NR2C1 nuclear receptor subfamily 2 group C member 1 protein-coding 58 0.006907
+7182 NR2C2 nuclear receptor subfamily 2 group C member 2 protein-coding 56 0.006669
+7184 HSP90B1 heat shock protein 90 beta family member 1 protein-coding 94 0.01119
+7185 TRAF1 TNF receptor associated factor 1 protein-coding 34 0.004049
+7186 TRAF2 TNF receptor associated factor 2 protein-coding 62 0.007384
+7187 TRAF3 TNF receptor associated factor 3 protein-coding 120 0.01429
+7188 TRAF5 TNF receptor associated factor 5 protein-coding 63 0.007503
+7189 TRAF6 TNF receptor associated factor 6 protein-coding 54 0.006431
+7190 HSP90B2P heat shock protein 90 beta family member 2, pseudogene pseudo 68 0.008098
+7200 TRH thyrotropin releasing hormone protein-coding 37 0.004406
+7201 TRHR thyrotropin releasing hormone receptor protein-coding 77 0.00917
+7203 CCT3 chaperonin containing TCP1 subunit 3 protein-coding 67 0.007979
+7204 TRIO trio Rho guanine nucleotide exchange factor protein-coding 306 0.03644
+7205 TRIP6 thyroid hormone receptor interactor 6 protein-coding 52 0.006193
+7216 TRO trophinin protein-coding 175 0.02084
+7220 TRPC1 transient receptor potential cation channel subfamily C member 1 protein-coding 131 0.0156
+7221 TRPC2 transient receptor potential cation channel subfamily C member 2 (pseudogene) pseudo 4 0.0004764
+7222 TRPC3 transient receptor potential cation channel subfamily C member 3 protein-coding 160 0.01905
+7223 TRPC4 transient receptor potential cation channel subfamily C member 4 protein-coding 207 0.02465
+7224 TRPC5 transient receptor potential cation channel subfamily C member 5 protein-coding 185 0.02203
+7225 TRPC6 transient receptor potential cation channel subfamily C member 6 protein-coding 151 0.01798
+7226 TRPM2 transient receptor potential cation channel subfamily M member 2 protein-coding 333 0.03966
+7227 TRPS1 transcriptional repressor GATA binding 1 protein-coding 302 0.03597
+7247 TSN translin protein-coding 32 0.003811
+7248 TSC1 TSC complex subunit 1 protein-coding 153 0.01822
+7249 TSC2 TSC complex subunit 2 protein-coding 174 0.02072
+7251 TSG101 tumor susceptibility 101 protein-coding 42 0.005002
+7252 TSHB thyroid stimulating hormone beta protein-coding 26 0.003096
+7253 TSHR thyroid stimulating hormone receptor protein-coding 115 0.0137
+7257 TSNAX translin associated factor X protein-coding 31 0.003692
+7258 TSPY1 testis specific protein, Y-linked 1 protein-coding 3 0.0003573
+7259 TSPYL1 TSPY like 1 protein-coding 42 0.005002
+7260 EIPR1 EARP complex and GARP complex interacting protein 1 protein-coding 51 0.006074
+7262 PHLDA2 pleckstrin homology like domain family A member 2 protein-coding 14 0.001667
+7263 TST thiosulfate sulfurtransferase protein-coding 30 0.003573
+7264 TSTA3 tissue specific transplantation antigen P35B protein-coding 33 0.00393
+7265 TTC1 tetratricopeptide repeat domain 1 protein-coding 27 0.003215
+7266 DNAJC7 DnaJ heat shock protein family (Hsp40) member C7 protein-coding 46 0.005478
+7267 TTC3 tetratricopeptide repeat domain 3 protein-coding 206 0.02453
+7268 TTC4 tetratricopeptide repeat domain 4 protein-coding 38 0.004525
+7270 TTF1 transcription termination factor 1 protein-coding 110 0.0131
+7272 TTK TTK protein kinase protein-coding 154 0.01834
+7273 TTN titin protein-coding 2449 0.2917
+7274 TTPA alpha tocopherol transfer protein protein-coding 46 0.005478
+7275 TUB tubby bipartite transcription factor protein-coding 85 0.01012
+7276 TTR transthyretin protein-coding 23 0.002739
+7277 TUBA4A tubulin alpha 4a protein-coding 55 0.00655
+7278 TUBA3C tubulin alpha 3c protein-coding 166 0.01977
+7280 TUBB2A tubulin beta 2A class IIa protein-coding 38 0.004525
+7283 TUBG1 tubulin gamma 1 protein-coding 52 0.006193
+7284 TUFM Tu translation elongation factor, mitochondrial protein-coding 46 0.005478
+7286 TUFT1 tuftelin 1 protein-coding 39 0.004645
+7287 TULP1 tubby like protein 1 protein-coding 68 0.008098
+7288 TULP2 tubby like protein 2 protein-coding 54 0.006431
+7289 TULP3 tubby like protein 3 protein-coding 64 0.007622
+7290 HIRA histone cell cycle regulator protein-coding 114 0.01358
+7291 TWIST1 twist family bHLH transcription factor 1 protein-coding 21 0.002501
+7292 TNFSF4 TNF superfamily member 4 protein-coding 22 0.00262
+7293 TNFRSF4 TNF receptor superfamily member 4 protein-coding 21 0.002501
+7294 TXK TXK tyrosine kinase protein-coding 67 0.007979
+7295 TXN thioredoxin protein-coding 7 0.0008336
+7296 TXNRD1 thioredoxin reductase 1 protein-coding 83 0.009884
+7297 TYK2 tyrosine kinase 2 protein-coding 131 0.0156
+7298 TYMS thymidylate synthetase protein-coding 23 0.002739
+7299 TYR tyrosinase protein-coding 133 0.01584
+7301 TYRO3 TYRO3 protein tyrosine kinase protein-coding 86 0.01024
+7305 TYROBP TYRO protein tyrosine kinase binding protein protein-coding 16 0.001905
+7306 TYRP1 tyrosinase related protein 1 protein-coding 83 0.009884
+7307 U2AF1 U2 small nuclear RNA auxiliary factor 1 protein-coding 61 0.007264
+7310 ZRSR2P1 ZRSR2 pseudogene 1 pseudo 55 0.00655
+7311 UBA52 ubiquitin A-52 residue ribosomal protein fusion product 1 protein-coding 24 0.002858
+7314 UBB ubiquitin B protein-coding 25 0.002977
+7316 UBC ubiquitin C protein-coding 77 0.00917
+7317 UBA1 ubiquitin like modifier activating enzyme 1 protein-coding 92 0.01096
+7318 UBA7 ubiquitin like modifier activating enzyme 7 protein-coding 64 0.007622
+7319 UBE2A ubiquitin conjugating enzyme E2 A protein-coding 38 0.004525
+7320 UBE2B ubiquitin conjugating enzyme E2 B protein-coding 12 0.001429
+7321 UBE2D1 ubiquitin conjugating enzyme E2 D1 protein-coding 19 0.002263
+7322 UBE2D2 ubiquitin conjugating enzyme E2 D2 protein-coding 18 0.002144
+7323 UBE2D3 ubiquitin conjugating enzyme E2 D3 protein-coding 24 0.002858
+7324 UBE2E1 ubiquitin conjugating enzyme E2 E1 protein-coding 17 0.002025
+7325 UBE2E2 ubiquitin conjugating enzyme E2 E2 protein-coding 26 0.003096
+7326 UBE2G1 ubiquitin conjugating enzyme E2 G1 protein-coding 14 0.001667
+7327 UBE2G2 ubiquitin conjugating enzyme E2 G2 protein-coding 19 0.002263
+7328 UBE2H ubiquitin conjugating enzyme E2 H protein-coding 17 0.002025
+7329 UBE2I ubiquitin conjugating enzyme E2 I protein-coding 17 0.002025
+7332 UBE2L3 ubiquitin conjugating enzyme E2 L3 protein-coding 18 0.002144
+7334 UBE2N ubiquitin conjugating enzyme E2 N protein-coding 26 0.003096
+7335 UBE2V1 ubiquitin conjugating enzyme E2 V1 protein-coding 74 0.008813
+7336 UBE2V2 ubiquitin conjugating enzyme E2 V2 protein-coding 22 0.00262
+7337 UBE3A ubiquitin protein ligase E3A protein-coding 125 0.01489
+7341 SUMO1 small ubiquitin-like modifier 1 protein-coding 85 0.01012
+7342 UBP1 upstream binding protein 1 protein-coding 56 0.006669
+7343 UBTF upstream binding transcription factor protein-coding 87 0.01036
+7345 UCHL1 ubiquitin C-terminal hydrolase L1 protein-coding 28 0.003335
+7347 UCHL3 ubiquitin C-terminal hydrolase L3 protein-coding 21 0.002501
+7348 UPK1B uroplakin 1B protein-coding 39 0.004645
+7349 UCN urocortin protein-coding 6 0.0007145
+7350 UCP1 uncoupling protein 1 protein-coding 37 0.004406
+7351 UCP2 uncoupling protein 2 protein-coding 33 0.00393
+7352 UCP3 uncoupling protein 3 protein-coding 33 0.00393
+7353 UFD1 ubiquitin recognition factor in ER associated degradation 1 protein-coding 37 0.004406
+7355 SLC35A2 solute carrier family 35 member A2 protein-coding 50 0.005955
+7356 SCGB1A1 secretoglobin family 1A member 1 protein-coding 14 0.001667
+7357 UGCG UDP-glucose ceramide glucosyltransferase protein-coding 40 0.004764
+7358 UGDH UDP-glucose 6-dehydrogenase protein-coding 54 0.006431
+7360 UGP2 UDP-glucose pyrophosphorylase 2 protein-coding 74 0.008813
+7363 UGT2B4 UDP glucuronosyltransferase family 2 member B4 protein-coding 118 0.01405
+7364 UGT2B7 UDP glucuronosyltransferase family 2 member B7 protein-coding 95 0.01131
+7365 UGT2B10 UDP glucuronosyltransferase family 2 member B10 protein-coding 101 0.01203
+7366 UGT2B15 UDP glucuronosyltransferase family 2 member B15 protein-coding 102 0.01215
+7367 UGT2B17 UDP glucuronosyltransferase family 2 member B17 protein-coding 82 0.009765
+7368 UGT8 UDP glycosyltransferase 8 protein-coding 74 0.008813
+7369 UMOD uromodulin protein-coding 104 0.01239
+7371 UCK2 uridine-cytidine kinase 2 protein-coding 50 0.005955
+7372 UMPS uridine monophosphate synthetase protein-coding 58 0.006907
+7373 COL14A1 collagen type XIV alpha 1 chain protein-coding 282 0.03358
+7374 UNG uracil DNA glycosylase protein-coding 29 0.003454
+7375 USP4 ubiquitin specific peptidase 4 protein-coding 92 0.01096
+7376 NR1H2 nuclear receptor subfamily 1 group H member 2 protein-coding 51 0.006074
+7378 UPP1 uridine phosphorylase 1 protein-coding 44 0.00524
+7379 UPK2 uroplakin 2 protein-coding 21 0.002501
+7380 UPK3A uroplakin 3A protein-coding 26 0.003096
+7381 UQCRB ubiquinol-cytochrome c reductase binding protein protein-coding 19 0.002263
+7384 UQCRC1 ubiquinol-cytochrome c reductase core protein 1 protein-coding 44 0.00524
+7385 UQCRC2 ubiquinol-cytochrome c reductase core protein 2 protein-coding 41 0.004883
+7386 UQCRFS1 ubiquinol-cytochrome c reductase, Rieske iron-sulfur polypeptide 1 protein-coding 38 0.004525
+7388 UQCRH ubiquinol-cytochrome c reductase hinge protein protein-coding 9 0.001072
+7389 UROD uroporphyrinogen decarboxylase protein-coding 33 0.00393
+7390 UROS uroporphyrinogen III synthase protein-coding 39 0.004645
+7391 USF1 upstream transcription factor 1 protein-coding 40 0.004764
+7392 USF2 upstream transcription factor 2, c-fos interacting protein-coding 25 0.002977
+7398 USP1 ubiquitin specific peptidase 1 protein-coding 75 0.008932
+7399 USH2A usherin protein-coding 853 0.1016
+7401 CLRN1 clarin 1 protein-coding 38 0.004525
+7402 UTRN utrophin protein-coding 336 0.04001
+7403 KDM6A lysine demethylase 6A protein-coding 292 0.03477
+7404 UTY ubiquitously transcribed tetratricopeptide repeat containing, Y-linked protein-coding 27 0.003215
+7405 UVRAG UV radiation resistance associated protein-coding 77 0.00917
+7407 VARS valyl-tRNA synthetase protein-coding 117 0.01393
+7408 VASP vasodilator stimulated phosphoprotein protein-coding 34 0.004049
+7409 VAV1 vav guanine nucleotide exchange factor 1 protein-coding 126 0.01501
+7410 VAV2 vav guanine nucleotide exchange factor 2 protein-coding 104 0.01239
+7411 VBP1 VHL binding protein 1 protein-coding 34 0.004049
+7412 VCAM1 vascular cell adhesion molecule 1 protein-coding 141 0.01679
+7414 VCL vinculin protein-coding 100 0.01191
+7415 VCP valosin containing protein protein-coding 75 0.008932
+7416 VDAC1 voltage dependent anion channel 1 protein-coding 31 0.003692
+7417 VDAC2 voltage dependent anion channel 2 protein-coding 85 0.01012
+7419 VDAC3 voltage dependent anion channel 3 protein-coding 24 0.002858
+7421 VDR vitamin D receptor protein-coding 49 0.005835
+7422 VEGFA vascular endothelial growth factor A protein-coding 29 0.003454
+7423 VEGFB vascular endothelial growth factor B protein-coding 24 0.002858
+7424 VEGFC vascular endothelial growth factor C protein-coding 105 0.0125
+7425 VGF VGF nerve growth factor inducible protein-coding 44 0.00524
+7428 VHL von Hippel-Lindau tumor suppressor protein-coding 195 0.02322
+7429 VIL1 villin 1 protein-coding 90 0.01072
+7430 EZR ezrin protein-coding 60 0.007145
+7431 VIM vimentin protein-coding 69 0.008217
+7432 VIP vasoactive intestinal peptide protein-coding 48 0.005716
+7433 VIPR1 vasoactive intestinal peptide receptor 1 protein-coding 34 0.004049
+7434 VIPR2 vasoactive intestinal peptide receptor 2 protein-coding 64 0.007622
+7436 VLDLR very low density lipoprotein receptor protein-coding 84 0.01
+7439 BEST1 bestrophin 1 protein-coding 50 0.005955
+7441 VPREB1 V-set pre-B cell surrogate light chain 1 protein-coding 22 0.00262
+7442 TRPV1 transient receptor potential cation channel subfamily V member 1 protein-coding 1 0.0001191
+7443 VRK1 vaccinia related kinase 1 protein-coding 49 0.005835
+7444 VRK2 vaccinia related kinase 2 protein-coding 70 0.008336
+7447 VSNL1 visinin like 1 protein-coding 28 0.003335
+7448 VTN vitronectin protein-coding 51 0.006074
+7450 VWF von Willebrand factor protein-coding 305 0.03632
+7453 WARS tryptophanyl-tRNA synthetase protein-coding 54 0.006431
+7454 WAS Wiskott-Aldrich syndrome protein-coding 59 0.007026
+7455 ZAN zonadhesin (gene/pseudogene) protein-coding 335 0.0399
+7456 WIPF1 WAS/WASL interacting protein family member 1 protein-coding 94 0.01119
+7458 EIF4H eukaryotic translation initiation factor 4H protein-coding 31 0.003692
+7461 CLIP2 CAP-Gly domain containing linker protein 2 protein-coding 134 0.01596
+7462 LAT2 linker for activation of T cells family member 2 protein-coding 29 0.003454
+7464 CORO2A coronin 2A protein-coding 59 0.007026
+7465 WEE1 WEE1 G2 checkpoint kinase protein-coding 57 0.006788
+7466 WFS1 wolframin ER transmembrane glycoprotein protein-coding 92 0.01096
+7468 NSD2 nuclear receptor binding SET domain protein 2 protein-coding 135 0.01608
+7469 NELFA negative elongation factor complex member A protein-coding 60 0.007145
+7471 WNT1 Wnt family member 1 protein-coding 43 0.005121
+7472 WNT2 Wnt family member 2 protein-coding 61 0.007264
+7473 WNT3 Wnt family member 3 protein-coding 46 0.005478
+7474 WNT5A Wnt family member 5A protein-coding 56 0.006669
+7475 WNT6 Wnt family member 6 protein-coding 22 0.00262
+7476 WNT7A Wnt family member 7A protein-coding 65 0.007741
+7477 WNT7B Wnt family member 7B protein-coding 52 0.006193
+7478 WNT8A Wnt family member 8A protein-coding 38 0.004525
+7479 WNT8B Wnt family member 8B protein-coding 37 0.004406
+7480 WNT10B Wnt family member 10B protein-coding 50 0.005955
+7481 WNT11 Wnt family member 11 protein-coding 44 0.00524
+7482 WNT2B Wnt family member 2B protein-coding 57 0.006788
+7483 WNT9A Wnt family member 9A protein-coding 67 0.007979
+7484 WNT9B Wnt family member 9B protein-coding 35 0.004168
+7485 WRB tryptophan rich basic protein protein-coding 271 0.03227
+7486 WRN Werner syndrome RecQ like helicase protein-coding 149 0.01774
+7490 WT1 Wilms tumor 1 protein-coding 81 0.009646
+7494 XBP1 X-box binding protein 1 protein-coding 20 0.002382
+7495 XBP1P1 X-box binding protein 1 pseudogene 1 pseudo 20 0.002382
+7498 XDH xanthine dehydrogenase protein-coding 181 0.02156
+7499 XG Xg blood group protein-coding 36 0.004287
+7503 XIST X inactive specific transcript (non-protein coding) ncRNA 486 0.05788
+7504 XK X-linked Kx blood group protein-coding 71 0.008455
+7507 XPA XPA, DNA damage recognition and repair factor protein-coding 31 0.003692
+7508 XPC XPC complex subunit, DNA damage recognition and repair factor protein-coding 71 0.008455
+7511 XPNPEP1 X-prolyl aminopeptidase 1 protein-coding 69 0.008217
+7512 XPNPEP2 X-prolyl aminopeptidase 2 protein-coding 103 0.01227
+7514 XPO1 exportin 1 protein-coding 105 0.0125
+7515 XRCC1 X-ray repair cross complementing 1 protein-coding 63 0.007503
+7516 XRCC2 X-ray repair cross complementing 2 protein-coding 42 0.005002
+7517 XRCC3 X-ray repair cross complementing 3 protein-coding 23 0.002739
+7518 XRCC4 X-ray repair cross complementing 4 protein-coding 43 0.005121
+7520 XRCC5 X-ray repair cross complementing 5 protein-coding 84 0.01
+7525 YES1 YES proto-oncogene 1, Src family tyrosine kinase protein-coding 72 0.008574
+7528 YY1 YY1 transcription factor protein-coding 42 0.005002
+7529 YWHAB tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein beta protein-coding 24 0.002858
+7531 YWHAE tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein epsilon protein-coding 26 0.003096
+7532 YWHAG tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein gamma protein-coding 27 0.003215
+7533 YWHAH tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein eta protein-coding 19 0.002263
+7534 YWHAZ tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein zeta protein-coding 35 0.004168
+7535 ZAP70 zeta chain of T cell receptor associated protein kinase 70 protein-coding 99 0.01179
+7536 SF1 splicing factor 1 protein-coding 91 0.01084
+7538 ZFP36 ZFP36 ring finger protein protein-coding 39 0.004645
+7539 ZFP37 ZFP37 zinc finger protein protein-coding 117 0.01393
+7541 ZBTB14 zinc finger and BTB domain containing 14 protein-coding 67 0.007979
+7542 ZFPL1 zinc finger protein like 1 protein-coding 27 0.003215
+7543 ZFX zinc finger protein, X-linked protein-coding 88 0.01048
+7544 ZFY zinc finger protein, Y-linked protein-coding 21 0.002501
+7545 ZIC1 Zic family member 1 protein-coding 168 0.02001
+7546 ZIC2 Zic family member 2 protein-coding 47 0.005597
+7547 ZIC3 Zic family member 3 protein-coding 83 0.009884
+7549 ZNF2 zinc finger protein 2 protein-coding 62 0.007384
+7551 ZNF3 zinc finger protein 3 protein-coding 59 0.007026
+7552 ZNF711 zinc finger protein 711 protein-coding 140 0.01667
+7553 ZNF7 zinc finger protein 7 protein-coding 87 0.01036
+7554 ZNF8 zinc finger protein 8 protein-coding 66 0.00786
+7555 CNBP CCHC-type zinc finger nucleic acid binding protein protein-coding 17 0.002025
+7556 ZNF10 zinc finger protein 10 protein-coding 61 0.007264
+7559 ZNF12 zinc finger protein 12 protein-coding 93 0.01108
+7561 ZNF14 zinc finger protein 14 protein-coding 85 0.01012
+7562 ZNF708 zinc finger protein 708 protein-coding 67 0.007979
+7564 ZNF16 zinc finger protein 16 protein-coding 77 0.00917
+7565 ZNF17 zinc finger protein 17 protein-coding 55 0.00655
+7566 ZNF18 zinc finger protein 18 protein-coding 61 0.007264
+7567 ZNF19 zinc finger protein 19 protein-coding 60 0.007145
+7568 ZNF20 zinc finger protein 20 protein-coding 59 0.007026
+7569 ZNF182 zinc finger protein 182 protein-coding 76 0.009051
+7570 ZNF22 zinc finger protein 22 protein-coding 33 0.00393
+7571 ZNF23 zinc finger protein 23 protein-coding 65 0.007741
+7572 ZNF24 zinc finger protein 24 protein-coding 34 0.004049
+7576 ZNF28 zinc finger protein 28 protein-coding 100 0.01191
+7579 ZSCAN20 zinc finger and SCAN domain containing 20 protein-coding 118 0.01405
+7580 ZNF32 zinc finger protein 32 protein-coding 36 0.004287
+7581 ZNF33A zinc finger protein 33A protein-coding 135 0.01608
+7582 ZNF33B zinc finger protein 33B protein-coding 100 0.01191
+7584 ZNF35 zinc finger protein 35 protein-coding 59 0.007026
+7586 ZKSCAN1 zinc finger with KRAB and SCAN domains 1 protein-coding 57 0.006788
+7587 ZNF37A zinc finger protein 37A protein-coding 94 0.01119
+7589 ZSCAN21 zinc finger and SCAN domain containing 21 protein-coding 48 0.005716
+7592 ZNF41 zinc finger protein 41 protein-coding 96 0.01143
+7593 MZF1 myeloid zinc finger 1 protein-coding 72 0.008574
+7594 ZNF43 zinc finger protein 43 protein-coding 157 0.0187
+7596 ZNF45 zinc finger protein 45 protein-coding 65 0.007741
+7597 ZBTB25 zinc finger and BTB domain containing 25 protein-coding 36 0.004287
+7617 ZNF66 zinc finger protein 66 protein-coding 17 0.002025
+7620 ZNF69 zinc finger protein 69 protein-coding 15 0.001786
+7621 ZNF70 zinc finger protein 70 protein-coding 60 0.007145
+7625 ZNF74 zinc finger protein 74 protein-coding 87 0.01036
+7626 ZNF75D zinc finger protein 75D protein-coding 87 0.01036
+7627 ZNF75A zinc finger protein 75a protein-coding 46 0.005478
+7629 ZNF76 zinc finger protein 76 protein-coding 58 0.006907
+7633 ZNF79 zinc finger protein 79 protein-coding 56 0.006669
+7634 ZNF80 zinc finger protein 80 protein-coding 72 0.008574
+7638 ZNF221 zinc finger protein 221 protein-coding 93 0.01108
+7639 ZNF85 zinc finger protein 85 protein-coding 97 0.01155
+7643 ZNF90 zinc finger protein 90 protein-coding 98 0.01167
+7644 ZNF91 zinc finger protein 91 protein-coding 219 0.02608
+7652 ZNF99 zinc finger protein 99 protein-coding 222 0.02644
+7673 ZNF222 zinc finger protein 222 protein-coding 67 0.007979
+7675 ZNF121 zinc finger protein 121 protein-coding 46 0.005478
+7678 ZNF124 zinc finger protein 124 protein-coding 57 0.006788
+7681 MKRN3 makorin ring finger protein 3 protein-coding 180 0.02144
+7690 ZNF131 zinc finger protein 131 protein-coding 81 0.009646
+7691 ZNF132 zinc finger protein 132 protein-coding 77 0.00917
+7692 ZNF133 zinc finger protein 133 protein-coding 57 0.006788
+7693 ZNF134 zinc finger protein 134 protein-coding 51 0.006074
+7694 ZNF135 zinc finger protein 135 protein-coding 110 0.0131
+7695 ZNF136 zinc finger protein 136 protein-coding 69 0.008217
+7697 ZNF138 zinc finger protein 138 protein-coding 33 0.00393
+7699 ZNF140 zinc finger protein 140 protein-coding 30 0.003573
+7700 ZNF141 zinc finger protein 141 protein-coding 51 0.006074
+7701 ZNF142 zinc finger protein 142 protein-coding 138 0.01643
+7702 ZNF143 zinc finger protein 143 protein-coding 62 0.007384
+7703 PCGF2 polycomb group ring finger 2 protein-coding 45 0.005359
+7704 ZBTB16 zinc finger and BTB domain containing 16 protein-coding 105 0.0125
+7705 ZNF146 zinc finger protein 146 protein-coding 44 0.00524
+7706 TRIM25 tripartite motif containing 25 protein-coding 54 0.006431
+7707 ZNF148 zinc finger protein 148 protein-coding 109 0.01298
+7709 ZBTB17 zinc finger and BTB domain containing 17 protein-coding 64 0.007622
+7710 ZNF154 zinc finger protein 154 protein-coding 61 0.007264
+7711 ZNF155 zinc finger protein 155 protein-coding 61 0.007264
+7712 ZNF157 zinc finger protein 157 protein-coding 86 0.01024
+7716 VEZF1 vascular endothelial zinc finger 1 protein-coding 51 0.006074
+7718 ZNF165 zinc finger protein 165 protein-coding 60 0.007145
+7726 TRIM26 tripartite motif containing 26 protein-coding 129 0.01536
+7727 ZNF174 zinc finger protein 174 protein-coding 57 0.006788
+7728 ZNF175 zinc finger protein 175 protein-coding 91 0.01084
+7730 ZNF177 zinc finger protein 177 protein-coding 70 0.008336
+7732 RNF112 ring finger protein 112 protein-coding 78 0.009289
+7733 ZNF180 zinc finger protein 180 protein-coding 109 0.01298
+7737 RNF113A ring finger protein 113A protein-coding 61 0.007264
+7738 ZNF184 zinc finger protein 184 protein-coding 115 0.0137
+7739 ZNF185 zinc finger protein 185 with LIM domain protein-coding 84 0.01
+7743 ZNF189 zinc finger protein 189 protein-coding 76 0.009051
+7745 ZKSCAN8 zinc finger with KRAB and SCAN domains 8 protein-coding 66 0.00786
+7746 ZSCAN9 zinc finger and SCAN domain containing 9 protein-coding 46 0.005478
+7748 ZNF195 zinc finger protein 195 protein-coding 63 0.007503
+7750 ZMYM2 zinc finger MYM-type containing 2 protein-coding 151 0.01798
+7752 ZNF200 zinc finger protein 200 protein-coding 47 0.005597
+7753 ZNF202 zinc finger protein 202 protein-coding 76 0.009051
+7755 ZNF205 zinc finger protein 205 protein-coding 56 0.006669
+7756 ZNF207 zinc finger protein 207 protein-coding 67 0.007979
+7757 ZNF208 zinc finger protein 208 protein-coding 332 0.03954
+7760 ZNF213 zinc finger protein 213 protein-coding 39 0.004645
+7761 ZNF214 zinc finger protein 214 protein-coding 96 0.01143
+7762 ZNF215 zinc finger protein 215 protein-coding 92 0.01096
+7763 ZFAND5 zinc finger AN1-type containing 5 protein-coding 33 0.00393
+7764 ZNF217 zinc finger protein 217 protein-coding 131 0.0156
+7766 ZNF223 zinc finger protein 223 protein-coding 71 0.008455
+7767 ZNF224 zinc finger protein 224 protein-coding 76 0.009051
+7768 ZNF225 zinc finger protein 225 protein-coding 66 0.00786
+7769 ZNF226 zinc finger protein 226 protein-coding 106 0.01262
+7770 ZNF227 zinc finger protein 227 protein-coding 77 0.00917
+7771 ZNF112 zinc finger protein 112 protein-coding 116 0.01381
+7772 ZNF229 zinc finger protein 229 protein-coding 128 0.01524
+7773 ZNF230 zinc finger protein 230 protein-coding 67 0.007979
+7775 ZNF232 zinc finger protein 232 protein-coding 52 0.006193
+7776 ZNF236 zinc finger protein 236 protein-coding 218 0.02596
+7779 SLC30A1 solute carrier family 30 member 1 protein-coding 45 0.005359
+7780 SLC30A2 solute carrier family 30 member 2 protein-coding 45 0.005359
+7781 SLC30A3 solute carrier family 30 member 3 protein-coding 51 0.006074
+7782 SLC30A4 solute carrier family 30 member 4 protein-coding 38 0.004525
+7783 ZP2 zona pellucida glycoprotein 2 protein-coding 93 0.01108
+7784 ZP3 zona pellucida glycoprotein 3 protein-coding 39 0.004645
+7786 MAP3K12 mitogen-activated protein kinase kinase kinase 12 protein-coding 127 0.01512
+7789 ZXDA zinc finger, X-linked, duplicated A protein-coding 88 0.01048
+7791 ZYX zyxin protein-coding 73 0.008694
+7795 MEMO1 Methylation modifier for class I HLA unknown 37 0.004406
+7798 LUZP1 leucine zipper protein 1 protein-coding 104 0.01239
+7799 PRDM2 PR/SET domain 2 protein-coding 175 0.02084
+7802 DNALI1 dynein axonemal light intermediate chain 1 protein-coding 26 0.003096
+7803 PTP4A1 protein tyrosine phosphatase type IVA, member 1 protein-coding 20 0.002382
+7804 LRP8 LDL receptor related protein 8 protein-coding 86 0.01024
+7805 LAPTM5 lysosomal protein transmembrane 5 protein-coding 35 0.004168
+7809 BSND barttin CLCNK type accessory beta subunit protein-coding 40 0.004764
+7812 CSDE1 cold shock domain containing E1 protein-coding 116 0.01381
+7813 EVI5 ecotropic viral integration site 5 protein-coding 112 0.01334
+7818 DAP3 death associated protein 3 protein-coding 51 0.006074
+7827 NPHS2 NPHS2, podocin protein-coding 61 0.007264
+7832 BTG2 BTG anti-proliferation factor 2 protein-coding 31 0.003692
+7837 PXDN peroxidasin protein-coding 340 0.04049
+7840 ALMS1 ALMS1, centrosome and basal body associated protein protein-coding 362 0.04311
+7841 MOGS mannosyl-oligosaccharide glucosidase protein-coding 86 0.01024
+7844 RNF103 ring finger protein 103 protein-coding 68 0.008098
+7846 TUBA1A tubulin alpha 1a protein-coding 60 0.007145
+7849 PAX8 paired box 8 protein-coding 68 0.008098
+7850 IL1R2 interleukin 1 receptor type 2 protein-coding 64 0.007622
+7851 MALL mal, T cell differentiation protein like protein-coding 13 0.001548
+7852 CXCR4 C-X-C motif chemokine receptor 4 protein-coding 108 0.01286
+7855 FZD5 frizzled class receptor 5 protein-coding 46 0.005478
+7857 SCG2 secretogranin II protein-coding 105 0.0125
+7862 BRPF1 bromodomain and PHD finger containing 1 protein-coding 115 0.0137
+7866 IFRD2 interferon related developmental regulator 2 protein-coding 52 0.006193
+7867 MAPKAPK3 mitogen-activated protein kinase-activated protein kinase 3 protein-coding 41 0.004883
+7869 SEMA3B semaphorin 3B protein-coding 3 0.0003573
+7871 SLMAP sarcolemma associated protein protein-coding 78 0.009289
+7873 MANF mesencephalic astrocyte derived neurotrophic factor protein-coding 13 0.001548
+7874 USP7 ubiquitin specific peptidase 7 protein-coding 140 0.01667
+7879 RAB7A RAB7A, member RAS oncogene family protein-coding 26 0.003096
+7881 KCNAB1 potassium voltage-gated channel subfamily A member regulatory beta subunit 1 protein-coding 78 0.009289
+7884 SLBP stem-loop binding protein protein-coding 21 0.002501
+7903 ST8SIA4 ST8 alpha-N-acetyl-neuraminide alpha-2,8-sialyltransferase 4 protein-coding 80 0.009527
+7905 REEP5 receptor accessory protein 5 protein-coding 31 0.003692
+7913 DEK DEK proto-oncogene protein-coding 52 0.006193
+7915 ALDH5A1 aldehyde dehydrogenase 5 family member A1 protein-coding 56 0.006669
+7916 PRRC2A proline rich coiled-coil 2A protein-coding 191 0.02275
+7917 BAG6 BCL2 associated athanogene 6 protein-coding 91 0.01084
+7918 GPANK1 G-patch domain and ankyrin repeats 1 protein-coding 39 0.004645
+7919 DDX39B DExD-box helicase 39B protein-coding 44 0.00524
+7920 ABHD16A abhydrolase domain containing 16A protein-coding 58 0.006907
+7922 SLC39A7 solute carrier family 39 member 7 protein-coding 50 0.005955
+7923 HSD17B8 hydroxysteroid 17-beta dehydrogenase 8 protein-coding 21 0.002501
+7932 OR2H2 olfactory receptor family 2 subfamily H member 2 protein-coding 44 0.00524
+7936 NELFE negative elongation factor complex member E protein-coding 58 0.006907
+7940 LST1 leukocyte specific transcript 1 protein-coding 4 0.0004764
+7941 PLA2G7 phospholipase A2 group VII protein-coding 69 0.008217
+7942 TFEB transcription factor EB protein-coding 45 0.005359
+7952 TNDM diabetes mellitus, transient neonatal unknown 58 0.006907
+7957 EPM2A EPM2A, laforin glucan phosphatase protein-coding 24 0.002858
+7965 AIMP2 aminoacyl tRNA synthetase complex interacting multifunctional protein 2 protein-coding 44 0.00524
+7975 MAFK MAF bZIP transcription factor K protein-coding 13 0.001548
+7976 FZD3 frizzled class receptor 3 protein-coding 69 0.008217
+7978 MTERF1 mitochondrial transcription termination factor 1 protein-coding 51 0.006074
+7979 SEM1 SEM1, 26S proteasome complex subunit protein-coding 70 0.008336
+7980 TFPI2 tissue factor pathway inhibitor 2 protein-coding 47 0.005597
+7982 ST7 suppression of tumorigenicity 7 protein-coding 62 0.007384
+7984 ARHGEF5 Rho guanine nucleotide exchange factor 5 protein-coding 111 0.01322
+7988 ZNF212 zinc finger protein 212 protein-coding 119 0.01417
+7991 TUSC3 tumor suppressor candidate 3 protein-coding 90 0.01072
+7993 UBXN8 UBX domain protein 8 protein-coding 46 0.005478
+7994 KAT6A lysine acetyltransferase 6A protein-coding 211 0.02513
+8000 PSCA prostate stem cell antigen protein-coding 15 0.001786
+8001 GLRA3 glycine receptor alpha 3 protein-coding 102 0.01215
+8013 NR4A3 nuclear receptor subfamily 4 group A member 3 protein-coding 153 0.01822
+8019 BRD3 bromodomain containing 3 protein-coding 95 0.01131
+8021 NUP214 nucleoporin 214 protein-coding 176 0.02096
+8022 LHX3 LIM homeobox 3 protein-coding 38 0.004525
+8026 DGS2 DiGeorge syndrome/velocardiofacial syndrome complex 2 unknown 78 0.009289
+8027 STAM signal transducing adaptor molecule protein-coding 69 0.008217
+8028 MLLT10 MLLT10, histone lysine methyltransferase DOT1L cofactor protein-coding 125 0.01489
+8029 CUBN cubilin protein-coding 532 0.06336
+8030 CCDC6 coiled-coil domain containing 6 protein-coding 65 0.007741
+8031 NCOA4 nuclear receptor coactivator 4 protein-coding 75 0.008932
+8034 SLC25A16 solute carrier family 25 member 16 protein-coding 112 0.01334
+8036 SHOC2 SHOC2, leucine rich repeat scaffold protein protein-coding 66 0.00786
+8038 ADAM12 ADAM metallopeptidase domain 12 protein-coding 125 0.01489
+8045 RASSF7 Ras association domain family member 7 protein-coding 32 0.003811
+8048 CSRP3 cysteine and glycine rich protein 3 protein-coding 53 0.006312
+8050 PDHX pyruvate dehydrogenase complex component X protein-coding 76 0.009051
+8061 FOSL1 FOS like 1, AP-1 transcription factor subunit protein-coding 27 0.003215
+8065 CUL5 cullin 5 protein-coding 97 0.01155
+8073 PTP4A2 protein tyrosine phosphatase type IVA, member 2 protein-coding 18 0.002144
+8074 FGF23 fibroblast growth factor 23 protein-coding 59 0.007026
+8076 MFAP5 microfibril associated protein 5 protein-coding 48 0.005716
+8078 USP5 ubiquitin specific peptidase 5 protein-coding 86 0.01024
+8079 MLF2 myeloid leukemia factor 2 protein-coding 37 0.004406
+8082 SSPN sarcospan protein-coding 20 0.002382
+8085 KMT2D lysine methyltransferase 2D protein-coding 808 0.09622
+8086 AAAS aladin WD repeat nucleoporin protein-coding 53 0.006312
+8087 FXR1 FMR1 autosomal homolog 1 protein-coding 98 0.01167
+8089 YEATS4 YEATS domain containing 4 protein-coding 21 0.002501
+8091 HMGA2 high mobility group AT-hook 2 protein-coding 10 0.001191
+8092 ALX1 ALX homeobox 1 protein-coding 75 0.008932
+8099 CDK2AP1 cyclin dependent kinase 2 associated protein 1 protein-coding 9 0.001072
+8100 IFT88 intraflagellar transport 88 protein-coding 90 0.01072
+8106 PABPN1 poly(A) binding protein nuclear 1 protein-coding 22 0.00262
+8110 DPF3 double PHD fingers 3 protein-coding 85 0.01012
+8111 GPR68 G protein-coupled receptor 68 protein-coding 47 0.005597
+8115 TCL1A T cell leukemia/lymphoma 1A protein-coding 18 0.002144
+8120 AP3B2 adaptor related protein complex 3 beta 2 subunit protein-coding 126 0.01501
+8125 ANP32A acidic nuclear phosphoprotein 32 family member A protein-coding 32 0.003811
+8128 ST8SIA2 ST8 alpha-N-acetyl-neuraminide alpha-2,8-sialyltransferase 2 protein-coding 75 0.008932
+8131 NPRL3 NPR3 like, GATOR1 complex subunit protein-coding 126 0.01501
+8139 GAN gigaxonin protein-coding 72 0.008574
+8140 SLC7A5 solute carrier family 7 member 5 protein-coding 54 0.006431
+8148 TAF15 TATA-box binding protein associated factor 15 protein-coding 76 0.009051
+8153 RND2 Rho family GTPase 2 protein-coding 25 0.002977
+8161 COIL coilin protein-coding 61 0.007264
+8165 AKAP1 A-kinase anchoring protein 1 protein-coding 87 0.01036
+8170 SLC14A2 solute carrier family 14 member 2 protein-coding 127 0.01512
+8174 MADCAM1 mucosal vascular addressin cell adhesion molecule 1 protein-coding 22 0.00262
+8175 SF3A2 splicing factor 3a subunit 2 protein-coding 27 0.003215
+8178 ELL elongation factor for RNA polymerase II protein-coding 54 0.006431
+8187 ZNF239 zinc finger protein 239 protein-coding 62 0.007384
+8189 SYMPK symplekin protein-coding 134 0.01596
+8190 MIA melanoma inhibitory activity protein-coding 17 0.002025
+8192 CLPP caseinolytic mitochondrial matrix peptidase proteolytic subunit protein-coding 20 0.002382
+8193 DPF1 double PHD fingers 1 protein-coding 47 0.005597
+8195 MKKS McKusick-Kaufman syndrome protein-coding 47 0.005597
+8200 GDF5 growth differentiation factor 5 protein-coding 100 0.01191
+8202 NCOA3 nuclear receptor coactivator 3 protein-coding 167 0.01989
+8204 NRIP1 nuclear receptor interacting protein 1 protein-coding 148 0.01763
+8208 CHAF1B chromatin assembly factor 1 subunit B protein-coding 128 0.01524
+8209 GATD3A glutamine amidotransferase like class 1 domain containing 3A protein-coding 60 0.007145
+8214 DGCR6 DiGeorge syndrome critical region gene 6 protein-coding 17 0.002025
+8215 DVL1P1 dishevelled segment polarity protein 1 pseudogene 1 pseudo 67 0.007979
+8216 LZTR1 leucine zipper like transcription regulator 1 protein-coding 155 0.01846
+8218 CLTCL1 clathrin heavy chain like 1 protein-coding 162 0.01929
+8220 ESS2 ess-2 splicing factor homolog protein-coding 51 0.006074
+8224 SYN3 synapsin III protein-coding 93 0.01108
+8225 GTPBP6 GTP binding protein 6 (putative) protein-coding 37 0.004406
+8226 PUDP pseudouridine 5'-phosphatase protein-coding 38 0.004525
+8227 AKAP17A A-kinase anchoring protein 17A protein-coding 97 0.01155
+8228 PNPLA4 patatin like phospholipase domain containing 4 protein-coding 35 0.004168
+8233 ZRSR2 zinc finger CCCH-type, RNA binding motif and serine/arginine rich 2 protein-coding 40 0.004764
+8237 USP11 ubiquitin specific peptidase 11 protein-coding 101 0.01203
+8239 USP9X ubiquitin specific peptidase 9, X-linked protein-coding 283 0.0337
+8241 RBM10 RNA binding motif protein 10 protein-coding 137 0.01632
+8242 KDM5C lysine demethylase 5C protein-coding 159 0.01894
+8243 SMC1A structural maintenance of chromosomes 1A protein-coding 145 0.01727
+8260 NAA10 N(alpha)-acetyltransferase 10, NatA catalytic subunit protein-coding 33 0.00393
+8263 F8A1 coagulation factor VIII associated 1 protein-coding 13 0.001548
+8266 UBL4A ubiquitin like 4A protein-coding 21 0.002501
+8269 TMEM187 transmembrane protein 187 protein-coding 36 0.004287
+8270 LAGE3 L antigen family member 3 protein-coding 15 0.001786
+8273 SLC10A3 solute carrier family 10 member 3 protein-coding 52 0.006193
+8277 TKTL1 transketolase like 1 protein-coding 86 0.01024
+8284 KDM5D lysine demethylase 5D protein-coding 31 0.003692
+8287 USP9Y ubiquitin specific peptidase 9, Y-linked protein-coding 50 0.005955
+8288 EPX eosinophil peroxidase protein-coding 136 0.0162
+8289 ARID1A AT-rich interaction domain 1A protein-coding 693 0.08253
+8290 HIST3H3 histone cluster 3 H3 protein-coding 37 0.004406
+8291 DYSF dysferlin protein-coding 315 0.03751
+8292 COLQ collagen like tail subunit of asymmetric acetylcholinesterase protein-coding 58 0.006907
+8294 HIST1H4I histone cluster 1 H4 family member i protein-coding 33 0.00393
+8295 TRRAP transformation/transcription domain associated protein protein-coding 370 0.04406
+8301 PICALM phosphatidylinositol binding clathrin assembly protein protein-coding 85 0.01012
+8302 KLRC4 killer cell lectin like receptor C4 protein-coding 34 0.004049
+8303 SNN stannin protein-coding 8 0.0009527
+8309 ACOX2 acyl-CoA oxidase 2 protein-coding 78 0.009289
+8310 ACOX3 acyl-CoA oxidase 3, pristanoyl protein-coding 82 0.009765
+8312 AXIN1 axin 1 protein-coding 127 0.01512
+8313 AXIN2 axin 2 protein-coding 130 0.01548
+8314 BAP1 BRCA1 associated protein 1 protein-coding 207 0.02465
+8315 BRAP BRCA1 associated protein protein-coding 58 0.006907
+8317 CDC7 cell division cycle 7 protein-coding 80 0.009527
+8318 CDC45 cell division cycle 45 protein-coding 70 0.008336
+8320 EOMES eomesodermin protein-coding 82 0.009765
+8321 FZD1 frizzled class receptor 1 protein-coding 65 0.007741
+8322 FZD4 frizzled class receptor 4 protein-coding 54 0.006431
+8323 FZD6 frizzled class receptor 6 protein-coding 96 0.01143
+8324 FZD7 frizzled class receptor 7 protein-coding 78 0.009289
+8325 FZD8 frizzled class receptor 8 protein-coding 64 0.007622
+8326 FZD9 frizzled class receptor 9 protein-coding 121 0.01441
+8327 GABPAP GA binding protein transcription factor alpha subunit pseudogene pseudo 52 0.006193
+8328 GFI1B growth factor independent 1B transcriptional repressor protein-coding 50 0.005955
+8329 HIST1H2AI histone cluster 1 H2A family member i protein-coding 23 0.002739
+8330 HIST1H2AK histone cluster 1 H2A family member k protein-coding 43 0.005121
+8331 HIST1H2AJ histone cluster 1 H2A family member j protein-coding 33 0.00393
+8332 HIST1H2AL histone cluster 1 H2A family member l protein-coding 28 0.003335
+8334 HIST1H2AC histone cluster 1 H2A family member c protein-coding 37 0.004406
+8335 HIST1H2AB histone cluster 1 H2A family member b protein-coding 27 0.003215
+8336 HIST1H2AM histone cluster 1 H2A family member m protein-coding 25 0.002977
+8338 HIST2H2AC histone cluster 2 H2A family member c protein-coding 41 0.004883
+8339 HIST1H2BG histone cluster 1 H2B family member g protein-coding 51 0.006074
+8340 HIST1H2BL histone cluster 1 H2B family member l protein-coding 32 0.003811
+8341 HIST1H2BN histone cluster 1 H2B family member n protein-coding 21 0.002501
+8342 HIST1H2BM histone cluster 1 H2B family member m protein-coding 33 0.00393
+8343 HIST1H2BF histone cluster 1 H2B family member f protein-coding 38 0.004525
+8344 HIST1H2BE histone cluster 1 H2B family member e protein-coding 18 0.002144
+8345 HIST1H2BH histone cluster 1 H2B family member h protein-coding 36 0.004287
+8346 HIST1H2BI histone cluster 1 H2B family member i protein-coding 21 0.002501
+8347 HIST1H2BC histone cluster 1 H2B family member c protein-coding 53 0.006312
+8348 HIST1H2BO histone cluster 1 H2B family member o protein-coding 19 0.002263
+8349 HIST2H2BE histone cluster 2 H2B family member e protein-coding 43 0.005121
+8350 HIST1H3A histone cluster 1 H3 family member a protein-coding 14 0.001667
+8351 HIST1H3D histone cluster 1 H3 family member d protein-coding 41 0.004883
+8352 HIST1H3C histone cluster 1 H3 family member c protein-coding 45 0.005359
+8353 HIST1H3E histone cluster 1 H3 family member e protein-coding 41 0.004883
+8354 HIST1H3I histone cluster 1 H3 family member i protein-coding 50 0.005955
+8355 HIST1H3G histone cluster 1 H3 family member g protein-coding 37 0.004406
+8356 HIST1H3J histone cluster 1 H3 family member j protein-coding 25 0.002977
+8357 HIST1H3H histone cluster 1 H3 family member h protein-coding 25 0.002977
+8358 HIST1H3B histone cluster 1 H3 family member b protein-coding 75 0.008932
+8359 HIST1H4A histone cluster 1 H4 family member a protein-coding 18 0.002144
+8360 HIST1H4D histone cluster 1 H4 family member d protein-coding 37 0.004406
+8361 HIST1H4F histone cluster 1 H4 family member f protein-coding 29 0.003454
+8362 HIST1H4K histone cluster 1 H4 family member k protein-coding 46 0.005478
+8363 HIST1H4J histone cluster 1 H4 family member j protein-coding 25 0.002977
+8364 HIST1H4C histone cluster 1 H4 family member c protein-coding 27 0.003215
+8365 HIST1H4H histone cluster 1 H4 family member h protein-coding 20 0.002382
+8366 HIST1H4B histone cluster 1 H4 family member b protein-coding 33 0.00393
+8367 HIST1H4E histone cluster 1 H4 family member e protein-coding 39 0.004645
+8368 HIST1H4L histone cluster 1 H4 family member l protein-coding 25 0.002977
+8369 HIST1H4G histone cluster 1 H4 family member g protein-coding 30 0.003573
+8372 HYAL3 hyaluronoglucosaminidase 3 protein-coding 39 0.004645
+8379 MAD1L1 mitotic arrest deficient 1 like 1 protein-coding 90 0.01072
+8382 NME5 NME/NM23 family member 5 protein-coding 22 0.00262
+8383 OR1A1 olfactory receptor family 1 subfamily A member 1 protein-coding 67 0.007979
+8386 OR1D5 olfactory receptor family 1 subfamily D member 5 protein-coding 44 0.00524
+8387 OR1E1 olfactory receptor family 1 subfamily E member 1 protein-coding 34 0.004049
+8388 OR1E2 olfactory receptor family 1 subfamily E member 2 protein-coding 47 0.005597
+8390 OR1G1 olfactory receptor family 1 subfamily G member 1 protein-coding 46 0.005478
+8392 OR3A3 olfactory receptor family 3 subfamily A member 3 protein-coding 41 0.004883
+8394 PIP5K1A phosphatidylinositol-4-phosphate 5-kinase type 1 alpha protein-coding 67 0.007979
+8395 PIP5K1B phosphatidylinositol-4-phosphate 5-kinase type 1 beta protein-coding 70 0.008336
+8396 PIP4K2B phosphatidylinositol-5-phosphate 4-kinase type 2 beta protein-coding 46 0.005478
+8398 PLA2G6 phospholipase A2 group VI protein-coding 92 0.01096
+8399 PLA2G10 phospholipase A2 group X protein-coding 6 0.0007145
+8402 SLC25A11 solute carrier family 25 member 11 protein-coding 33 0.00393
+8403 SOX14 SRY-box 14 protein-coding 49 0.005835
+8404 SPARCL1 SPARC like 1 protein-coding 81 0.009646
+8405 SPOP speckle type BTB/POZ protein protein-coding 144 0.01715
+8406 SRPX sushi repeat containing protein, X-linked protein-coding 68 0.008098
+8407 TAGLN2 transgelin 2 protein-coding 25 0.002977
+8408 ULK1 unc-51 like autophagy activating kinase 1 protein-coding 132 0.01572
+8409 UXT ubiquitously expressed prefoldin like chaperone protein-coding 76 0.009051
+8411 EEA1 early endosome antigen 1 protein-coding 131 0.0156
+8412 BCAR3 BCAR3, NSP family adaptor protein protein-coding 89 0.0106
+8416 ANXA9 annexin A9 protein-coding 52 0.006193
+8417 STX7 syntaxin 7 protein-coding 33 0.00393
+8418 CMAHP cytidine monophospho-N-acetylneuraminic acid hydroxylase, pseudogene pseudo 40 0.004764
+8419 BFSP2 beaded filament structural protein 2 protein-coding 66 0.00786
+8424 BBOX1 gamma-butyrobetaine hydroxylase 1 protein-coding 53 0.006312
+8425 LTBP4 latent transforming growth factor beta binding protein 4 protein-coding 166 0.01977
+8427 ZNF282 zinc finger protein 282 protein-coding 78 0.009289
+8428 STK24 serine/threonine kinase 24 protein-coding 127 0.01512
+8431 NR0B2 nuclear receptor subfamily 0 group B member 2 protein-coding 28 0.003335
+8433 UTF1 undifferentiated embryonic cell transcription factor 1 protein-coding 4 0.0004764
+8434 RECK reversion inducing cysteine rich protein with kazal motifs protein-coding 101 0.01203
+8435 SOAT2 sterol O-acyltransferase 2 protein-coding 91 0.01084
+8436 CAVIN2 caveolae associated protein 2 protein-coding 77 0.00917
+8437 RASAL1 RAS protein activator like 1 protein-coding 116 0.01381
+8438 RAD54L RAD54 like protein-coding 80 0.009527
+8439 NSMAF neutral sphingomyelinase activation associated factor protein-coding 104 0.01239
+8440 NCK2 NCK adaptor protein 2 protein-coding 65 0.007741
+8443 GNPAT glyceronephosphate O-acyltransferase protein-coding 76 0.009051
+8444 DYRK3 dual specificity tyrosine phosphorylation regulated kinase 3 protein-coding 75 0.008932
+8445 DYRK2 dual specificity tyrosine phosphorylation regulated kinase 2 protein-coding 62 0.007384
+8446 DUSP11 dual specificity phosphatase 11 protein-coding 43 0.005121
+8447 DOC2B double C2 domain beta protein-coding 16 0.001905
+8448 DOC2A double C2 domain alpha protein-coding 61 0.007264
+8449 DHX16 DEAH-box helicase 16 protein-coding 123 0.01465
+8450 CUL4B cullin 4B protein-coding 120 0.01429
+8451 CUL4A cullin 4A protein-coding 62 0.007384
+8452 CUL3 cullin 3 protein-coding 155 0.01846
+8453 CUL2 cullin 2 protein-coding 87 0.01036
+8454 CUL1 cullin 1 protein-coding 144 0.01715
+8455 ATRN attractin protein-coding 119 0.01417
+8456 FOXN1 forkhead box N1 protein-coding 68 0.008098
+8458 TTF2 transcription termination factor 2 protein-coding 107 0.01274
+8459 TPST2 tyrosylprotein sulfotransferase 2 protein-coding 49 0.005835
+8460 TPST1 tyrosylprotein sulfotransferase 1 protein-coding 52 0.006193
+8462 KLF11 Kruppel like factor 11 protein-coding 54 0.006431
+8463 TEAD2 TEA domain transcription factor 2 protein-coding 75 0.008932
+8464 SUPT3H SPT3 homolog, SAGA and STAGA complex component protein-coding 59 0.007026
+8467 SMARCA5 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily a, member 5 protein-coding 95 0.01131
+8468 FKBP6 FK506 binding protein 6 protein-coding 56 0.006669
+8470 SORBS2 sorbin and SH3 domain containing 2 protein-coding 149 0.01774
+8471 IRS4 insulin receptor substrate 4 protein-coding 222 0.02644
+8473 OGT O-linked N-acetylglucosamine (GlcNAc) transferase protein-coding 116 0.01381
+8476 CDC42BPA CDC42 binding protein kinase alpha protein-coding 163 0.01941
+8477 GPR65 G protein-coupled receptor 65 protein-coding 51 0.006074
+8479 HIRIP3 HIRA interacting protein 3 protein-coding 59 0.007026
+8480 RAE1 ribonucleic acid export 1 protein-coding 59 0.007026
+8481 OFD1 OFD1, centriole and centriolar satellite protein protein-coding 112 0.01334
+8482 SEMA7A semaphorin 7A (John Milton Hagen blood group) protein-coding 73 0.008694
+8483 CILP cartilage intermediate layer protein protein-coding 151 0.01798
+8484 GALR3 galanin receptor 3 protein-coding 15 0.001786
+8487 GEMIN2 gem nuclear organelle associated protein 2 protein-coding 23 0.002739
+8490 RGS5 regulator of G protein signaling 5 protein-coding 40 0.004764
+8491 MAP4K3 mitogen-activated protein kinase kinase kinase kinase 3 protein-coding 108 0.01286
+8492 PRSS12 serine protease 12 protein-coding 103 0.01227
+8493 PPM1D protein phosphatase, Mg2+/Mn2+ dependent 1D protein-coding 79 0.009408
+8495 PPFIBP2 PPFIA binding protein 2 protein-coding 93 0.01108
+8496 PPFIBP1 PPFIA binding protein 1 protein-coding 96 0.01143
+8497 PPFIA4 PTPRF interacting protein alpha 4 protein-coding 126 0.01501
+8498 RANBP3 RAN binding protein 3 protein-coding 76 0.009051
+8499 PPFIA2 PTPRF interacting protein alpha 2 protein-coding 269 0.03204
+8500 PPFIA1 PTPRF interacting protein alpha 1 protein-coding 126 0.01501
+8501 SLC43A1 solute carrier family 43 member 1 protein-coding 50 0.005955
+8502 PKP4 plakophilin 4 protein-coding 135 0.01608
+8503 PIK3R3 phosphoinositide-3-kinase regulatory subunit 3 protein-coding 72 0.008574
+8504 PEX3 peroxisomal biogenesis factor 3 protein-coding 36 0.004287
+8505 PARG poly(ADP-ribose) glycohydrolase protein-coding 49 0.005835
+8506 CNTNAP1 contactin associated protein 1 protein-coding 144 0.01715
+8507 ENC1 ectodermal-neural cortex 1 protein-coding 97 0.01155
+8508 NIPSNAP1 nipsnap homolog 1 protein-coding 22 0.00262
+8509 NDST2 N-deacetylase and N-sulfotransferase 2 protein-coding 86 0.01024
+8510 MMP23B matrix metallopeptidase 23B protein-coding 4 0.0004764
+8511 MMP23A matrix metallopeptidase 23A (pseudogene) pseudo 60 0.007145
+8512 MBL1P mannose binding lectin 1, pseudogene pseudo 26 0.003096
+8513 LIPF lipase F, gastric type protein-coding 61 0.007264
+8514 KCNAB2 potassium voltage-gated channel subfamily A regulatory beta subunit 2 protein-coding 37 0.004406
+8515 ITGA10 integrin subunit alpha 10 protein-coding 149 0.01774
+8516 ITGA8 integrin subunit alpha 8 protein-coding 218 0.02596
+8517 IKBKG inhibitor of nuclear factor kappa B kinase subunit gamma protein-coding 25 0.002977
+8518 ELP1 elongator complex protein 1 protein-coding 117 0.01393
+8519 IFITM1 interferon induced transmembrane protein 1 protein-coding 19 0.002263
+8520 HAT1 histone acetyltransferase 1 protein-coding 55 0.00655
+8521 GCM1 glial cells missing homolog 1 protein-coding 66 0.00786
+8522 GAS7 growth arrest specific 7 protein-coding 83 0.009884
+8525 DGKZ diacylglycerol kinase zeta protein-coding 99 0.01179
+8526 DGKE diacylglycerol kinase epsilon protein-coding 76 0.009051
+8527 DGKD diacylglycerol kinase delta protein-coding 133 0.01584
+8528 DDO D-aspartate oxidase protein-coding 50 0.005955
+8529 CYP4F2 cytochrome P450 family 4 subfamily F member 2 protein-coding 114 0.01358
+8530 CST7 cystatin F protein-coding 13 0.001548
+8531 YBX3 Y-box binding protein 3 protein-coding 52 0.006193
+8532 CPZ carboxypeptidase Z protein-coding 126 0.01501
+8533 COPS3 COP9 signalosome subunit 3 protein-coding 89 0.0106
+8534 CHST1 carbohydrate sulfotransferase 1 protein-coding 101 0.01203
+8535 CBX4 chromobox 4 protein-coding 54 0.006431
+8536 CAMK1 calcium/calmodulin dependent protein kinase I protein-coding 41 0.004883
+8537 BCAS1 breast carcinoma amplified sequence 1 protein-coding 85 0.01012
+8538 BARX2 BARX homeobox 2 protein-coding 29 0.003454
+8539 API5 apoptosis inhibitor 5 protein-coding 63 0.007503
+8540 AGPS alkylglycerone phosphate synthase protein-coding 72 0.008574
+8541 PPFIA3 PTPRF interacting protein alpha 3 protein-coding 125 0.01489
+8542 APOL1 apolipoprotein L1 protein-coding 37 0.004406
+8543 LMO4 LIM domain only 4 protein-coding 29 0.003454
+8544 PIR pirin protein-coding 32 0.003811
+8545 CGGBP1 CGG triplet repeat binding protein 1 protein-coding 20 0.002382
+8546 AP3B1 adaptor related protein complex 3 beta 1 subunit protein-coding 120 0.01429
+8547 FCN3 ficolin 3 protein-coding 33 0.00393
+8548 BLZF1 basic leucine zipper nuclear factor 1 protein-coding 55 0.00655
+8549 LGR5 leucine rich repeat containing G protein-coupled receptor 5 protein-coding 115 0.0137
+8550 MAPKAPK5 mitogen-activated protein kinase-activated protein kinase 5 protein-coding 51 0.006074
+8553 BHLHE40 basic helix-loop-helix family member e40 protein-coding 57 0.006788
+8554 PIAS1 protein inhibitor of activated STAT 1 protein-coding 76 0.009051
+8555 CDC14B cell division cycle 14B protein-coding 62 0.007384
+8556 CDC14A cell division cycle 14A protein-coding 83 0.009884
+8557 TCAP titin-cap protein-coding 16 0.001905
+8558 CDK10 cyclin dependent kinase 10 protein-coding 46 0.005478
+8559 PRPF18 pre-mRNA processing factor 18 protein-coding 40 0.004764
+8560 DEGS1 delta 4-desaturase, sphingolipid 1 protein-coding 36 0.004287
+8562 DENR density regulated re-initiation and release factor protein-coding 17 0.002025
+8563 THOC5 THO complex 5 protein-coding 78 0.009289
+8564 KMO kynurenine 3-monooxygenase protein-coding 76 0.009051
+8565 YARS tyrosyl-tRNA synthetase protein-coding 61 0.007264
+8566 PDXK pyridoxal kinase protein-coding 27 0.003215
+8567 MADD MAP kinase activating death domain protein-coding 167 0.01989
+8568 RRP1 ribosomal RNA processing 1 protein-coding 33 0.00393
+8569 MKNK1 MAP kinase interacting serine/threonine kinase 1 protein-coding 46 0.005478
+8570 KHSRP KH-type splicing regulatory protein protein-coding 123 0.01465
+8572 PDLIM4 PDZ and LIM domain 4 protein-coding 32 0.003811
+8573 CASK calcium/calmodulin dependent serine protein kinase protein-coding 104 0.01239
+8574 AKR7A2 aldo-keto reductase family 7 member A2 protein-coding 37 0.004406
+8575 PRKRA protein activator of interferon induced protein kinase EIF2AK2 protein-coding 59 0.007026
+8576 STK16 serine/threonine kinase 16 protein-coding 38 0.004525
+8577 TMEFF1 transmembrane protein with EGF like and two follistatin like domains 1 protein-coding 49 0.005835
+8578 SCARF1 scavenger receptor class F member 1 protein-coding 61 0.007264
+8581 LY6D lymphocyte antigen 6 family member D protein-coding 21 0.002501
+8590 OR6A2 olfactory receptor family 6 subfamily A member 2 protein-coding 64 0.007622
+8600 TNFSF11 TNF superfamily member 11 protein-coding 35 0.004168
+8601 RGS20 regulator of G protein signaling 20 protein-coding 56 0.006669
+8602 NOP14 NOP14 nucleolar protein protein-coding 87 0.01036
+8603 FAM193A family with sequence similarity 193 member A protein-coding 149 0.01774
+8604 SLC25A12 solute carrier family 25 member 12 protein-coding 92 0.01096
+8605 PLA2G4C phospholipase A2 group IVC protein-coding 83 0.009884
+8607 RUVBL1 RuvB like AAA ATPase 1 protein-coding 54 0.006431
+8608 RDH16 retinol dehydrogenase 16 protein-coding 53 0.006312
+8609 KLF7 Kruppel like factor 7 protein-coding 40 0.004764
+8611 PLPP1 phospholipid phosphatase 1 protein-coding 28 0.003335
+8612 PLPP2 phospholipid phosphatase 2 protein-coding 25 0.002977
+8613 PLPP3 phospholipid phosphatase 3 protein-coding 32 0.003811
+8614 STC2 stanniocalcin 2 protein-coding 49 0.005835
+8615 USO1 USO1 vesicle transport factor protein-coding 68 0.008098
+8618 CADPS calcium dependent secretion activator protein-coding 223 0.02656
+8620 NPFF neuropeptide FF-amide peptide precursor protein-coding 10 0.001191
+8621 CDK13 cyclin dependent kinase 13 protein-coding 135 0.01608
+8622 PDE8B phosphodiesterase 8B protein-coding 112 0.01334
+8623 ASMTL acetylserotonin O-methyltransferase like protein-coding 90 0.01072
+8624 PSMG1 proteasome assembly chaperone 1 protein-coding 31 0.003692
+8625 RFXANK regulatory factor X associated ankyrin containing protein protein-coding 20 0.002382
+8626 TP63 tumor protein p63 protein-coding 158 0.01882
+8629 JRK Jrk helix-turn-helix protein protein-coding 100 0.01191
+8630 HSD17B6 hydroxysteroid 17-beta dehydrogenase 6 protein-coding 34 0.004049
+8631 SKAP1 src kinase associated phosphoprotein 1 protein-coding 58 0.006907
+8632 DNAH17 dynein axonemal heavy chain 17 protein-coding 405 0.04823
+8633 UNC5C unc-5 netrin receptor C protein-coding 166 0.01977
+8634 RTCA RNA 3'-terminal phosphate cyclase protein-coding 35 0.004168
+8635 RNASET2 ribonuclease T2 protein-coding 26 0.003096
+8636 SSNA1 SS nuclear autoantigen 1 protein-coding 9 0.001072
+8637 EIF4EBP3 eukaryotic translation initiation factor 4E binding protein 3 protein-coding 13 0.001548
+8638 OASL 2'-5'-oligoadenylate synthetase like protein-coding 57 0.006788
+8639 AOC3 amine oxidase, copper containing 3 protein-coding 86 0.01024
+8641 PCDHGB4 protocadherin gamma subfamily B, 4 protein-coding 279 0.03323
+8642 DCHS1 dachsous cadherin-related 1 protein-coding 457 0.05442
+8643 PTCH2 patched 2 protein-coding 128 0.01524
+8644 AKR1C3 aldo-keto reductase family 1 member C3 protein-coding 39 0.004645
+8645 KCNK5 potassium two pore domain channel subfamily K member 5 protein-coding 59 0.007026
+8646 CHRD chordin protein-coding 131 0.0156
+8647 ABCB11 ATP binding cassette subfamily B member 11 protein-coding 161 0.01917
+8648 NCOA1 nuclear receptor coactivator 1 protein-coding 160 0.01905
+8649 LAMTOR3 late endosomal/lysosomal adaptor, MAPK and MTOR activator 3 protein-coding 14 0.001667
+8650 NUMB NUMB, endocytic adaptor protein protein-coding 60 0.007145
+8651 SOCS1 suppressor of cytokine signaling 1 protein-coding 22 0.00262
+8653 DDX3Y DEAD-box helicase 3, Y-linked protein-coding 19 0.002263
+8654 PDE5A phosphodiesterase 5A protein-coding 97 0.01155
+8655 DYNLL1 dynein light chain LC8-type 1 protein-coding 265 0.03156
+8658 TNKS tankyrase protein-coding 134 0.01596
+8659 ALDH4A1 aldehyde dehydrogenase 4 family member A1 protein-coding 55 0.00655
+8660 IRS2 insulin receptor substrate 2 protein-coding 60 0.007145
+8661 EIF3A eukaryotic translation initiation factor 3 subunit A protein-coding 140 0.01667
+8662 EIF3B eukaryotic translation initiation factor 3 subunit B protein-coding 71 0.008455
+8663 EIF3C eukaryotic translation initiation factor 3 subunit C protein-coding 19 0.002263
+8664 EIF3D eukaryotic translation initiation factor 3 subunit D protein-coding 54 0.006431
+8665 EIF3F eukaryotic translation initiation factor 3 subunit F protein-coding 31 0.003692
+8666 EIF3G eukaryotic translation initiation factor 3 subunit G protein-coding 38 0.004525
+8667 EIF3H eukaryotic translation initiation factor 3 subunit H protein-coding 33 0.00393
+8668 EIF3I eukaryotic translation initiation factor 3 subunit I protein-coding 44 0.00524
+8669 EIF3J eukaryotic translation initiation factor 3 subunit J protein-coding 33 0.00393
+8671 SLC4A4 solute carrier family 4 member 4 protein-coding 256 0.03049
+8672 EIF4G3 eukaryotic translation initiation factor 4 gamma 3 protein-coding 188 0.02239
+8673 VAMP8 vesicle associated membrane protein 8 protein-coding 10 0.001191
+8674 VAMP4 vesicle associated membrane protein 4 protein-coding 13 0.001548
+8675 STX16 syntaxin 16 protein-coding 46 0.005478
+8676 STX11 syntaxin 11 protein-coding 58 0.006907
+8677 STX10 syntaxin 10 protein-coding 22 0.00262
+8678 BECN1 beclin 1 protein-coding 38 0.004525
+8681 JMJD7-PLA2G4B JMJD7-PLA2G4B readthrough protein-coding 21 0.002501
+8682 PEA15 proliferation and apoptosis adaptor protein 15 protein-coding 14 0.001667
+8683 SRSF9 serine and arginine rich splicing factor 9 protein-coding 16 0.001905
+8685 MARCO macrophage receptor with collagenous structure protein-coding 118 0.01405
+8687 KRT38 keratin 38 protein-coding 76 0.009051
+8688 KRT37 keratin 37 protein-coding 75 0.008932
+8689 KRT36 keratin 36 protein-coding 63 0.007503
+8690 JRKL JRK like protein-coding 61 0.007264
+8692 HYAL2 hyaluronoglucosaminidase 2 protein-coding 48 0.005716
+8693 GALNT4 polypeptide N-acetylgalactosaminyltransferase 4 protein-coding 62 0.007384
+8694 DGAT1 diacylglycerol O-acyltransferase 1 protein-coding 55 0.00655
+8697 CDC23 cell division cycle 23 protein-coding 50 0.005955
+8698 S1PR4 sphingosine-1-phosphate receptor 4 protein-coding 60 0.007145
+8701 DNAH11 dynein axonemal heavy chain 11 protein-coding 537 0.06395
+8702 B4GALT4 beta-1,4-galactosyltransferase 4 protein-coding 48 0.005716
+8703 B4GALT3 beta-1,4-galactosyltransferase 3 protein-coding 48 0.005716
+8704 B4GALT2 beta-1,4-galactosyltransferase 2 protein-coding 39 0.004645
+8705 B3GALT4 beta-1,3-galactosyltransferase 4 protein-coding 47 0.005597
+8706 B3GALNT1 beta-1,3-N-acetylgalactosaminyltransferase 1 (globoside blood group) protein-coding 42 0.005002
+8707 B3GALT2 beta-1,3-galactosyltransferase 2 protein-coding 57 0.006788
+8708 B3GALT1 beta-1,3-galactosyltransferase 1 protein-coding 52 0.006193
+8710 SERPINB7 serpin family B member 7 protein-coding 67 0.007979
+8711 TNK1 tyrosine kinase non receptor 1 protein-coding 48 0.005716
+8712 PAGE1 PAGE family member 1 protein-coding 36 0.004287
+8714 ABCC3 ATP binding cassette subfamily C member 3 protein-coding 150 0.01786
+8715 NOL4 nucleolar protein 4 protein-coding 153 0.01822
+8717 TRADD TNFRSF1A associated via death domain protein-coding 25 0.002977
+8718 TNFRSF25 TNF receptor superfamily member 25 protein-coding 41 0.004883
+8720 MBTPS1 membrane bound transcription factor peptidase, site 1 protein-coding 121 0.01441
+8721 EDF1 endothelial differentiation related factor 1 protein-coding 18 0.002144
+8722 CTSF cathepsin F protein-coding 61 0.007264
+8723 SNX4 sorting nexin 4 protein-coding 42 0.005002
+8724 SNX3 sorting nexin 3 protein-coding 11 0.00131
+8725 URI1 URI1, prefoldin like chaperone protein-coding 83 0.009884
+8726 EED embryonic ectoderm development protein-coding 70 0.008336
+8727 CTNNAL1 catenin alpha like 1 protein-coding 73 0.008694
+8728 ADAM19 ADAM metallopeptidase domain 19 protein-coding 143 0.01703
+8729 GBF1 golgi brefeldin A resistant guanine nucleotide exchange factor 1 protein-coding 176 0.02096
+8731 RNMT RNA guanine-7 methyltransferase protein-coding 238 0.02834
+8732 RNGTT RNA guanylyltransferase and 5'-phosphatase protein-coding 64 0.007622
+8733 GPAA1 glycosylphosphatidylinositol anchor attachment 1 protein-coding 52 0.006193
+8735 MYH13 myosin heavy chain 13 protein-coding 294 0.03501
+8736 MYOM1 myomesin 1 protein-coding 198 0.02358
+8737 RIPK1 receptor interacting serine/threonine kinase 1 protein-coding 77 0.00917
+8738 CRADD CASP2 and RIPK1 domain containing adaptor with death domain protein-coding 33 0.00393
+8739 HRK harakiri, BCL2 interacting protein protein-coding 1 0.0001191
+8740 TNFSF14 TNF superfamily member 14 protein-coding 49 0.005835
+8741 TNFSF13 TNF superfamily member 13 protein-coding 8 0.0009527
+8742 TNFSF12 TNF superfamily member 12 protein-coding 14 0.001667
+8743 TNFSF10 TNF superfamily member 10 protein-coding 28 0.003335
+8744 TNFSF9 TNF superfamily member 9 protein-coding 24 0.002858
+8745 ADAM23 ADAM metallopeptidase domain 23 protein-coding 148 0.01763
+8747 ADAM21 ADAM metallopeptidase domain 21 protein-coding 131 0.0156
+8748 ADAM20 ADAM metallopeptidase domain 20 protein-coding 82 0.009765
+8749 ADAM18 ADAM metallopeptidase domain 18 protein-coding 128 0.01524
+8751 ADAM15 ADAM metallopeptidase domain 15 protein-coding 72 0.008574
+8754 ADAM9 ADAM metallopeptidase domain 9 protein-coding 86 0.01024
+8755 ADAM6 ADAM metallopeptidase domain 6 (pseudogene) pseudo 25 0.002977
+8756 ADAM7 ADAM metallopeptidase domain 7 protein-coding 147 0.01751
+8760 CDS2 CDP-diacylglycerol synthase 2 protein-coding 49 0.005835
+8761 PABPC4 poly(A) binding protein cytoplasmic 4 protein-coding 76 0.009051
+8763 CD164 CD164 molecule protein-coding 17 0.002025
+8764 TNFRSF14 TNF receptor superfamily member 14 protein-coding 28 0.003335
+8766 RAB11A RAB11A, member RAS oncogene family protein-coding 33 0.00393
+8767 RIPK2 receptor interacting serine/threonine kinase 2 protein-coding 77 0.00917
+8771 TNFRSF6B TNF receptor superfamily member 6b protein-coding 25 0.002977
+8772 FADD Fas associated via death domain protein-coding 35 0.004168
+8773 SNAP23 synaptosome associated protein 23 protein-coding 24 0.002858
+8774 NAPG NSF attachment protein gamma protein-coding 42 0.005002
+8775 NAPA NSF attachment protein alpha protein-coding 31 0.003692
+8776 MTMR1 myotubularin related protein 1 protein-coding 99 0.01179
+8777 MPDZ multiple PDZ domain crumbs cell polarity complex component protein-coding 228 0.02715
+8778 SIGLEC5 sialic acid binding Ig like lectin 5 protein-coding 98 0.01167
+8780 RIOK3 RIO kinase 3 protein-coding 54 0.006431
+8784 TNFRSF18 TNF receptor superfamily member 18 protein-coding 15 0.001786
+8785 MATN4 matrilin 4 protein-coding 107 0.01274
+8786 RGS11 regulator of G protein signaling 11 protein-coding 38 0.004525
+8787 RGS9 regulator of G protein signaling 9 protein-coding 98 0.01167
+8788 DLK1 delta like non-canonical Notch ligand 1 protein-coding 71 0.008455
+8789 FBP2 fructose-bisphosphatase 2 protein-coding 48 0.005716
+8790 FPGT fucose-1-phosphate guanylyltransferase protein-coding 63 0.007503
+8792 TNFRSF11A TNF receptor superfamily member 11a protein-coding 70 0.008336
+8793 TNFRSF10D TNF receptor superfamily member 10d protein-coding 35 0.004168
+8794 TNFRSF10C TNF receptor superfamily member 10c protein-coding 30 0.003573
+8795 TNFRSF10B TNF receptor superfamily member 10b protein-coding 42 0.005002
+8796 SCEL sciellin protein-coding 91 0.01084
+8797 TNFRSF10A TNF receptor superfamily member 10a protein-coding 43 0.005121
+8798 DYRK4 dual specificity tyrosine phosphorylation regulated kinase 4 protein-coding 94 0.01119
+8799 PEX11B peroxisomal biogenesis factor 11 beta protein-coding 32 0.003811
+8800 PEX11A peroxisomal biogenesis factor 11 alpha protein-coding 26 0.003096
+8801 SUCLG2 succinate-CoA ligase GDP-forming beta subunit protein-coding 34 0.004049
+8802 SUCLG1 succinate-CoA ligase alpha subunit protein-coding 48 0.005716
+8803 SUCLA2 succinate-CoA ligase ADP-forming beta subunit protein-coding 51 0.006074
+8804 CREG1 cellular repressor of E1A stimulated genes 1 protein-coding 10 0.001191
+8805 TRIM24 tripartite motif containing 24 protein-coding 102 0.01215
+8807 IL18RAP interleukin 18 receptor accessory protein protein-coding 109 0.01298
+8808 IL1RL2 interleukin 1 receptor like 2 protein-coding 70 0.008336
+8809 IL18R1 interleukin 18 receptor 1 protein-coding 72 0.008574
+8811 GALR2 galanin receptor 2 protein-coding 42 0.005002
+8812 CCNK cyclin K protein-coding 41 0.004883
+8813 DPM1 dolichyl-phosphate mannosyltransferase subunit 1, catalytic protein-coding 34 0.004049
+8814 CDKL1 cyclin dependent kinase like 1 protein-coding 40 0.004764
+8815 BANF1 barrier to autointegration factor 1 protein-coding 13 0.001548
+8816 DCAF5 DDB1 and CUL4 associated factor 5 protein-coding 90 0.01072
+8817 FGF18 fibroblast growth factor 18 protein-coding 29 0.003454
+8818 DPM2 dolichyl-phosphate mannosyltransferase subunit 2, regulatory protein-coding 6 0.0007145
+8819 SAP30 Sin3A associated protein 30 protein-coding 20 0.002382
+8820 HESX1 HESX homeobox 1 protein-coding 31 0.003692
+8821 INPP4B inositol polyphosphate-4-phosphatase type II B protein-coding 145 0.01727
+8822 FGF17 fibroblast growth factor 17 protein-coding 25 0.002977
+8823 FGF16 fibroblast growth factor 16 protein-coding 28 0.003335
+8824 CES2 carboxylesterase 2 protein-coding 63 0.007503
+8825 LIN7A lin-7 homolog A, crumbs cell polarity complex component protein-coding 68 0.008098
+8826 IQGAP1 IQ motif containing GTPase activating protein 1 protein-coding 152 0.0181
+8828 NRP2 neuropilin 2 protein-coding 124 0.01477
+8829 NRP1 neuropilin 1 protein-coding 112 0.01334
+8831 SYNGAP1 synaptic Ras GTPase activating protein 1 protein-coding 311 0.03704
+8832 CD84 CD84 molecule protein-coding 60 0.007145
+8833 GMPS guanine monophosphate synthase protein-coding 91 0.01084
+8834 TMEM11 transmembrane protein 11 protein-coding 22 0.00262
+8835 SOCS2 suppressor of cytokine signaling 2 protein-coding 31 0.003692
+8836 GGH gamma-glutamyl hydrolase protein-coding 44 0.00524
+8837 CFLAR CASP8 and FADD like apoptosis regulator protein-coding 41 0.004883
+8838 WISP3 WNT1 inducible signaling pathway protein 3 protein-coding 47 0.005597
+8839 WISP2 WNT1 inducible signaling pathway protein 2 protein-coding 41 0.004883
+8840 WISP1 WNT1 inducible signaling pathway protein 1 protein-coding 92 0.01096
+8841 HDAC3 histone deacetylase 3 protein-coding 64 0.007622
+8842 PROM1 prominin 1 protein-coding 81 0.009646
+8843 HCAR3 hydroxycarboxylic acid receptor 3 protein-coding 55 0.00655
+8844 KSR1 kinase suppressor of ras 1 protein-coding 99 0.01179
+8846 ALKBH1 alkB homolog 1, histone H2A dioxygenase protein-coding 51 0.006074
+8848 TSC22D1 TSC22 domain family member 1 protein-coding 91 0.01084
+8850 KAT2B lysine acetyltransferase 2B protein-coding 98 0.01167
+8851 CDK5R1 cyclin dependent kinase 5 regulatory subunit 1 protein-coding 32 0.003811
+8852 AKAP4 A-kinase anchoring protein 4 protein-coding 134 0.01596
+8853 ASAP2 ArfGAP with SH3 domain, ankyrin repeat and PH domain 2 protein-coding 129 0.01536
+8854 ALDH1A2 aldehyde dehydrogenase 1 family member A2 protein-coding 77 0.00917
+8856 NR1I2 nuclear receptor subfamily 1 group I member 2 protein-coding 59 0.007026
+8857 FCGBP Fc fragment of IgG binding protein protein-coding 432 0.05145
+8858 PROZ protein Z, vitamin K dependent plasma glycoprotein protein-coding 48 0.005716
+8859 STK19 serine/threonine kinase 19 protein-coding 427 0.05085
+8861 LDB1 LIM domain binding 1 protein-coding 53 0.006312
+8862 APLN apelin protein-coding 8 0.0009527
+8863 PER3 period circadian regulator 3 protein-coding 121 0.01441
+8864 PER2 period circadian regulator 2 protein-coding 129 0.01536
+8867 SYNJ1 synaptojanin 1 protein-coding 166 0.01977
+8869 ST3GAL5 ST3 beta-galactoside alpha-2,3-sialyltransferase 5 protein-coding 41 0.004883
+8870 IER3 immediate early response 3 protein-coding 7 0.0008336
+8871 SYNJ2 synaptojanin 2 protein-coding 135 0.01608
+8872 CDC123 cell division cycle 123 protein-coding 41 0.004883
+8874 ARHGEF7 Rho guanine nucleotide exchange factor 7 protein-coding 193 0.02298
+8875 VNN2 vanin 2 protein-coding 76 0.009051
+8876 VNN1 vanin 1 protein-coding 84 0.01
+8877 SPHK1 sphingosine kinase 1 protein-coding 40 0.004764
+8878 SQSTM1 sequestosome 1 protein-coding 55 0.00655
+8879 SGPL1 sphingosine-1-phosphate lyase 1 protein-coding 61 0.007264
+8880 FUBP1 far upstream element binding protein 1 protein-coding 137 0.01632
+8881 CDC16 cell division cycle 16 protein-coding 66 0.00786
+8882 ZPR1 ZPR1 zinc finger protein-coding 42 0.005002
+8883 NAE1 NEDD8 activating enzyme E1 subunit 1 protein-coding 51 0.006074
+8884 SLC5A6 solute carrier family 5 member 6 protein-coding 66 0.00786
+8886 DDX18 DEAD-box helicase 18 protein-coding 91 0.01084
+8887 TAX1BP1 Tax1 binding protein 1 protein-coding 77 0.00917
+8888 MCM3AP minichromosome maintenance complex component 3 associated protein protein-coding 182 0.02167
+8890 EIF2B4 eukaryotic translation initiation factor 2B subunit delta protein-coding 50 0.005955
+8891 EIF2B3 eukaryotic translation initiation factor 2B subunit gamma protein-coding 46 0.005478
+8892 EIF2B2 eukaryotic translation initiation factor 2B subunit beta protein-coding 35 0.004168
+8893 EIF2B5 eukaryotic translation initiation factor 2B subunit epsilon protein-coding 65 0.007741
+8894 EIF2S2 eukaryotic translation initiation factor 2 subunit beta protein-coding 40 0.004764
+8895 CPNE3 copine 3 protein-coding 75 0.008932
+8896 BUD31 BUD31 homolog protein-coding 24 0.002858
+8897 MTMR3 myotubularin related protein 3 protein-coding 113 0.01346
+8898 MTMR2 myotubularin related protein 2 protein-coding 58 0.006907
+8899 PRPF4B pre-mRNA processing factor 4B protein-coding 110 0.0131
+8900 CCNA1 cyclin A1 protein-coding 87 0.01036
+8904 CPNE1 copine 1 protein-coding 134 0.01596
+8905 AP1S2 adaptor related protein complex 1 sigma 2 subunit protein-coding 21 0.002501
+8906 AP1G2 adaptor related protein complex 1 gamma 2 subunit protein-coding 89 0.0106
+8907 AP1M1 adaptor related protein complex 1 mu 1 subunit protein-coding 56 0.006669
+8908 GYG2 glycogenin 2 protein-coding 61 0.007264
+8909 ENDOU endonuclease, poly(U) specific protein-coding 49 0.005835
+8910 SGCE sarcoglycan epsilon protein-coding 56 0.006669
+8911 CACNA1I calcium voltage-gated channel subunit alpha1 I protein-coding 195 0.02322
+8912 CACNA1H calcium voltage-gated channel subunit alpha1 H protein-coding 260 0.03096
+8913 CACNA1G calcium voltage-gated channel subunit alpha1 G protein-coding 232 0.02763
+8914 TIMELESS timeless circadian regulator protein-coding 134 0.01596
+8915 BCL10 B cell CLL/lymphoma 10 protein-coding 35 0.004168
+8916 HERC3 HECT and RLD domain containing E3 ubiquitin protein ligase 3 protein-coding 98 0.01167
+8924 HERC2 HECT and RLD domain containing E3 ubiquitin protein ligase 2 protein-coding 473 0.05633
+8925 HERC1 HECT and RLD domain containing E3 ubiquitin protein ligase family member 1 protein-coding 360 0.04287
+8926 SNURF SNRPN upstream reading frame protein-coding 19 0.002263
+8927 BSN bassoon presynaptic cytomatrix protein protein-coding 330 0.0393
+8928 FOXH1 forkhead box H1 protein-coding 31 0.003692
+8929 PHOX2B paired like homeobox 2b protein-coding 50 0.005955
+8930 MBD4 methyl-CpG binding domain 4, DNA glycosylase protein-coding 195 0.02322
+8932 MBD2 methyl-CpG binding domain protein 2 protein-coding 34 0.004049
+8933 RTL8C retrotransposon Gag like 8C protein-coding 18 0.002144
+8934 RAB29 RAB29, member RAS oncogene family protein-coding 21 0.002501
+8935 SKAP2 src kinase associated phosphoprotein 2 protein-coding 41 0.004883
+8936 WASF1 WAS protein family member 1 protein-coding 65 0.007741
+8938 BAIAP3 BAI1 associated protein 3 protein-coding 130 0.01548
+8939 FUBP3 far upstream element binding protein 3 protein-coding 76 0.009051
+8940 TOP3B DNA topoisomerase III beta protein-coding 89 0.0106
+8941 CDK5R2 cyclin dependent kinase 5 regulatory subunit 2 protein-coding 12 0.001429
+8942 KYNU kynureninase protein-coding 102 0.01215
+8943 AP3D1 adaptor related protein complex 3 delta 1 subunit protein-coding 114 0.01358
+8945 BTRC beta-transducin repeat containing E3 ubiquitin protein ligase protein-coding 85 0.01012
+8968 HIST1H3F histone cluster 1 H3 family member f protein-coding 41 0.004883
+8969 HIST1H2AG histone cluster 1 H2A family member g protein-coding 40 0.004764
+8970 HIST1H2BJ histone cluster 1 H2B family member j protein-coding 27 0.003215
+8971 H1FX H1 histone family member X protein-coding 19 0.002263
+8972 MGAM maltase-glucoamylase protein-coding 573 0.06824
+8973 CHRNA6 cholinergic receptor nicotinic alpha 6 subunit protein-coding 83 0.009884
+8974 P4HA2 prolyl 4-hydroxylase subunit alpha 2 protein-coding 67 0.007979
+8975 USP13 ubiquitin specific peptidase 13 protein-coding 120 0.01429
+8976 WASL Wiskott-Aldrich syndrome like protein-coding 82 0.009765
+8985 PLOD3 procollagen-lysine,2-oxoglutarate 5-dioxygenase 3 protein-coding 94 0.01119
+8986 RPS6KA4 ribosomal protein S6 kinase A4 protein-coding 62 0.007384
+8988 HSPB3 heat shock protein family B (small) member 3 protein-coding 29 0.003454
+8989 TRPA1 transient receptor potential cation channel subfamily A member 1 protein-coding 282 0.03358
+8991 SELENBP1 selenium binding protein 1 protein-coding 56 0.006669
+8992 ATP6V0E1 ATPase H+ transporting V0 subunit e1 protein-coding 4 0.0004764
+8993 PGLYRP1 peptidoglycan recognition protein 1 protein-coding 26 0.003096
+8994 LIMD1 LIM domains containing 1 protein-coding 60 0.007145
+8995 TNFSF18 TNF superfamily member 18 protein-coding 27 0.003215
+8996 NOL3 nucleolar protein 3 protein-coding 71 0.008455
+8997 KALRN kalirin RhoGEF kinase protein-coding 524 0.0624
+8999 CDKL2 cyclin dependent kinase like 2 protein-coding 68 0.008098
+9001 HAP1 huntingtin associated protein 1 protein-coding 68 0.008098
+9002 F2RL3 F2R like thrombin or trypsin receptor 3 protein-coding 30 0.003573
+9013 TAF1C TATA-box binding protein associated factor, RNA polymerase I subunit C protein-coding 103 0.01227
+9014 TAF1B TATA-box binding protein associated factor, RNA polymerase I subunit B protein-coding 62 0.007384
+9015 TAF1A TATA-box binding protein associated factor, RNA polymerase I subunit A protein-coding 51 0.006074
+9016 SLC25A14 solute carrier family 25 member 14 protein-coding 55 0.00655
+9019 MPZL1 myelin protein zero like 1 protein-coding 34 0.004049
+9020 MAP3K14 mitogen-activated protein kinase kinase kinase 14 protein-coding 57 0.006788
+9021 SOCS3 suppressor of cytokine signaling 3 protein-coding 30 0.003573
+9022 CLIC3 chloride intracellular channel 3 protein-coding 19 0.002263
+9023 CH25H cholesterol 25-hydroxylase protein-coding 24 0.002858
+9024 BRSK2 BR serine/threonine kinase 2 protein-coding 81 0.009646
+9025 RNF8 ring finger protein 8 protein-coding 54 0.006431
+9026 HIP1R huntingtin interacting protein 1 related protein-coding 99 0.01179
+9027 NAT8 N-acetyltransferase 8 (putative) protein-coding 99 0.01179
+9028 RHBDL1 rhomboid like 1 protein-coding 35 0.004168
+9031 BAZ1B bromodomain adjacent to zinc finger domain 1B protein-coding 128 0.01524
+9032 TM4SF5 transmembrane 4 L six family member 5 protein-coding 27 0.003215
+9033 PKD2L1 polycystin 2 like 1, transient receptor potential cation channel protein-coding 116 0.01381
+9034 CCRL2 C-C motif chemokine receptor like 2 protein-coding 35 0.004168
+9037 SEMA5A semaphorin 5A protein-coding 204 0.02429
+9038 TAAR5 trace amine associated receptor 5 protein-coding 63 0.007503
+9039 UBA3 ubiquitin like modifier activating enzyme 3 protein-coding 55 0.00655
+9040 UBE2M ubiquitin conjugating enzyme E2 M protein-coding 33 0.00393
+9043 SPAG9 sperm associated antigen 9 protein-coding 114 0.01358
+9044 BTAF1 B-TFIID TATA-box binding protein associated factor 1 protein-coding 185 0.02203
+9045 RPL14 ribosomal protein L14 protein-coding 18 0.002144
+9046 DOK2 docking protein 2 protein-coding 53 0.006312
+9047 SH2D2A SH2 domain containing 2A protein-coding 158 0.01882
+9048 ARTN artemin protein-coding 109 0.01298
+9049 AIP aryl hydrocarbon receptor interacting protein protein-coding 26 0.003096
+9050 PSTPIP2 proline-serine-threonine phosphatase interacting protein 2 protein-coding 33 0.00393
+9051 PSTPIP1 proline-serine-threonine phosphatase interacting protein 1 protein-coding 50 0.005955
+9052 GPRC5A G protein-coupled receptor class C group 5 member A protein-coding 37 0.004406
+9053 MAP7 microtubule associated protein 7 protein-coding 94 0.01119
+9054 NFS1 NFS1, cysteine desulfurase protein-coding 36 0.004287
+9055 PRC1 protein regulator of cytokinesis 1 protein-coding 65 0.007741
+9056 SLC7A7 solute carrier family 7 member 7 protein-coding 56 0.006669
+9057 SLC7A6 solute carrier family 7 member 6 protein-coding 40 0.004764
+9058 SLC13A2 solute carrier family 13 member 2 protein-coding 75 0.008932
+9060 PAPSS2 3'-phosphoadenosine 5'-phosphosulfate synthase 2 protein-coding 68 0.008098
+9061 PAPSS1 3'-phosphoadenosine 5'-phosphosulfate synthase 1 protein-coding 73 0.008694
+9063 PIAS2 protein inhibitor of activated STAT 2 protein-coding 68 0.008098
+9064 MAP3K6 mitogen-activated protein kinase kinase kinase 6 protein-coding 93 0.01108
+9066 SYT7 synaptotagmin 7 protein-coding 49 0.005835
+9068 ANGPTL1 angiopoietin like 1 protein-coding 57 0.006788
+9069 CLDN12 claudin 12 protein-coding 34 0.004049
+9070 ASH2L ASH2 like histone lysine methyltransferase complex subunit protein-coding 65 0.007741
+9071 CLDN10 claudin 10 protein-coding 56 0.006669
+9073 CLDN8 claudin 8 protein-coding 38 0.004525
+9074 CLDN6 claudin 6 protein-coding 38 0.004525
+9075 CLDN2 claudin 2 protein-coding 27 0.003215
+9076 CLDN1 claudin 1 protein-coding 32 0.003811
+9077 DIRAS3 DIRAS family GTPase 3 protein-coding 37 0.004406
+9079 LDB2 LIM domain binding 2 protein-coding 143 0.01703
+9080 CLDN9 claudin 9 protein-coding 33 0.00393
+9086 EIF1AY eukaryotic translation initiation factor 1A, Y-linked protein-coding 2 0.0002382
+9087 TMSB4Y thymosin beta 4, Y-linked protein-coding 2 0.0002382
+9088 PKMYT1 protein kinase, membrane associated tyrosine/threonine 1 protein-coding 215 0.0256
+9091 PIGQ phosphatidylinositol glycan anchor biosynthesis class Q protein-coding 76 0.009051
+9092 SART1 SART1, U4/U6.U5 tri-snRNP-associated protein 1 protein-coding 52 0.006193
+9093 DNAJA3 DnaJ heat shock protein family (Hsp40) member A3 protein-coding 46 0.005478
+9094 UNC119 unc-119 lipid binding chaperone protein-coding 22 0.00262
+9095 TBX19 T-box 19 protein-coding 73 0.008694
+9096 TBX18 T-box 18 protein-coding 117 0.01393
+9097 USP14 ubiquitin specific peptidase 14 protein-coding 59 0.007026
+9098 USP6 ubiquitin specific peptidase 6 protein-coding 155 0.01846
+9099 USP2 ubiquitin specific peptidase 2 protein-coding 76 0.009051
+9100 USP10 ubiquitin specific peptidase 10 protein-coding 92 0.01096
+9101 USP8 ubiquitin specific peptidase 8 protein-coding 109 0.01298
+9103 FCGR2C Fc fragment of IgG receptor IIc (gene/pseudogene) protein-coding 3 0.0003573
+9104 RGN regucalcin protein-coding 29 0.003454
+9107 MTMR6 myotubularin related protein 6 protein-coding 83 0.009884
+9108 MTMR7 myotubularin related protein 7 protein-coding 86 0.01024
+9110 MTMR4 myotubularin related protein 4 protein-coding 126 0.01501
+9111 NMI N-myc and STAT interactor protein-coding 34 0.004049
+9112 MTA1 metastasis associated 1 protein-coding 92 0.01096
+9113 LATS1 large tumor suppressor kinase 1 protein-coding 169 0.02013
+9114 ATP6V0D1 ATPase H+ transporting V0 subunit d1 protein-coding 35 0.004168
+9117 SEC22C SEC22 homolog C, vesicle trafficking protein protein-coding 24 0.002858
+9118 INA internexin neuronal intermediate filament protein alpha protein-coding 53 0.006312
+9119 KRT75 keratin 75 protein-coding 90 0.01072
+9120 SLC16A6 solute carrier family 16 member 6 protein-coding 66 0.00786
+9121 SLC16A5 solute carrier family 16 member 5 protein-coding 52 0.006193
+9122 SLC16A4 solute carrier family 16 member 4 protein-coding 53 0.006312
+9123 SLC16A3 solute carrier family 16 member 3 protein-coding 38 0.004525
+9124 PDLIM1 PDZ and LIM domain 1 protein-coding 45 0.005359
+9125 CNOT9 CCR4-NOT transcription complex subunit 9 protein-coding 37 0.004406
+9126 SMC3 structural maintenance of chromosomes 3 protein-coding 134 0.01596
+9127 P2RX6 purinergic receptor P2X 6 protein-coding 44 0.00524
+9128 PRPF4 pre-mRNA processing factor 4 protein-coding 52 0.006193
+9129 PRPF3 pre-mRNA processing factor 3 protein-coding 78 0.009289
+9130 FAM50A family with sequence similarity 50 member A protein-coding 37 0.004406
+9131 AIFM1 apoptosis inducing factor mitochondria associated 1 protein-coding 77 0.00917
+9132 KCNQ4 potassium voltage-gated channel subfamily Q member 4 protein-coding 72 0.008574
+9133 CCNB2 cyclin B2 protein-coding 32 0.003811
+9134 CCNE2 cyclin E2 protein-coding 49 0.005835
+9135 RABEP1 rabaptin, RAB GTPase binding effector protein 1 protein-coding 81 0.009646
+9136 RRP9 ribosomal RNA processing 9, U3 small nucleolar RNA binding protein protein-coding 39 0.004645
+9138 ARHGEF1 Rho guanine nucleotide exchange factor 1 protein-coding 104 0.01239
+9139 CBFA2T2 CBFA2/RUNX1 translocation partner 2 protein-coding 83 0.009884
+9140 ATG12 autophagy related 12 protein-coding 14 0.001667
+9141 PDCD5 programmed cell death 5 protein-coding 17 0.002025
+9143 SYNGR3 synaptogyrin 3 protein-coding 11 0.00131
+9144 SYNGR2 synaptogyrin 2 protein-coding 23 0.002739
+9145 SYNGR1 synaptogyrin 1 protein-coding 20 0.002382
+9146 HGS hepatocyte growth factor-regulated tyrosine kinase substrate protein-coding 87 0.01036
+9147 NEMF nuclear export mediator factor protein-coding 108 0.01286
+9148 NEURL1 neuralized E3 ubiquitin protein ligase 1 protein-coding 48 0.005716
+9149 DYRK1B dual specificity tyrosine phosphorylation regulated kinase 1B protein-coding 82 0.009765
+9150 CTDP1 CTD phosphatase subunit 1 protein-coding 107 0.01274
+9152 SLC6A5 solute carrier family 6 member 5 protein-coding 175 0.02084
+9153 SLC28A2 solute carrier family 28 member 2 protein-coding 72 0.008574
+9154 SLC28A1 solute carrier family 28 member 1 protein-coding 84 0.01
+9156 EXO1 exonuclease 1 protein-coding 115 0.0137
+9158 FIBP FGF1 intracellular binding protein protein-coding 34 0.004049
+9159 PCSK7 proprotein convertase subtilisin/kexin type 7 protein-coding 88 0.01048
+9162 DGKI diacylglycerol kinase iota protein-coding 184 0.02191
+9166 EBAG9 estrogen receptor binding site associated, antigen, 9 protein-coding 33 0.00393
+9167 COX7A2L cytochrome c oxidase subunit 7A2 like protein-coding 13 0.001548
+9168 TMSB10 thymosin beta 10 protein-coding 2 0.0002382
+9169 SCAF11 SR-related CTD associated factor 11 protein-coding 155 0.01846
+9170 LPAR2 lysophosphatidic acid receptor 2 protein-coding 41 0.004883
+9172 MYOM2 myomesin 2 protein-coding 235 0.02799
+9173 IL1RL1 interleukin 1 receptor like 1 protein-coding 90 0.01072
+9175 MAP3K13 mitogen-activated protein kinase kinase kinase 13 protein-coding 134 0.01596
+9177 HTR3B 5-hydroxytryptamine receptor 3B protein-coding 76 0.009051
+9179 AP4M1 adaptor related protein complex 4 mu 1 subunit protein-coding 64 0.007622
+9180 OSMR oncostatin M receptor protein-coding 116 0.01381
+9181 ARHGEF2 Rho/Rac guanine nucleotide exchange factor 2 protein-coding 119 0.01417
+9182 RASSF9 Ras association domain family member 9 protein-coding 74 0.008813
+9183 ZW10 zw10 kinetochore protein protein-coding 83 0.009884
+9184 BUB3 BUB3, mitotic checkpoint protein protein-coding 40 0.004764
+9185 REPS2 RALBP1 associated Eps domain containing 2 protein-coding 77 0.00917
+9187 SLC24A1 solute carrier family 24 member 1 protein-coding 82 0.009765
+9188 DDX21 DExD-box helicase 21 protein-coding 66 0.00786
+9189 ZBED1 zinc finger BED-type containing 1 protein-coding 108 0.01286
+9191 DEDD death effector domain containing protein-coding 30 0.003573
+9194 SLC16A7 solute carrier family 16 member 7 protein-coding 76 0.009051
+9196 KCNAB3 potassium voltage-gated channel subfamily A regulatory beta subunit 3 protein-coding 43 0.005121
+9197 SLC33A1 solute carrier family 33 member 1 protein-coding 53 0.006312
+9200 HACD1 3-hydroxyacyl-CoA dehydratase 1 protein-coding 39 0.004645
+9201 DCLK1 doublecortin like kinase 1 protein-coding 181 0.02156
+9202 ZMYM4 zinc finger MYM-type containing 4 protein-coding 158 0.01882
+9203 ZMYM3 zinc finger MYM-type containing 3 protein-coding 179 0.02132
+9204 ZMYM6 zinc finger MYM-type containing 6 protein-coding 128 0.01524
+9205 ZMYM5 zinc finger MYM-type containing 5 protein-coding 78 0.009289
+9208 LRRFIP1 LRR binding FLII interacting protein 1 protein-coding 76 0.009051
+9209 LRRFIP2 LRR binding FLII interacting protein 2 protein-coding 76 0.009051
+9210 BMP15 bone morphogenetic protein 15 protein-coding 82 0.009765
+9211 LGI1 leucine rich glioma inactivated 1 protein-coding 66 0.00786
+9212 AURKB aurora kinase B protein-coding 187 0.02227
+9213 XPR1 xenotropic and polytropic retrovirus receptor 1 protein-coding 90 0.01072
+9214 FCMR Fc fragment of IgM receptor protein-coding 43 0.005121
+9215 LARGE1 LARGE xylosyl- and glucuronyltransferase 1 protein-coding 106 0.01262
+9217 VAPB VAMP associated protein B and C protein-coding 30 0.003573
+9218 VAPA VAMP associated protein A protein-coding 37 0.004406
+9219 MTA2 metastasis associated 1 family member 2 protein-coding 76 0.009051
+9220 TIAF1 TGFB1-induced anti-apoptotic factor 1 protein-coding 17 0.002025
+9221 NOLC1 nucleolar and coiled-body phosphoprotein 1 protein-coding 69 0.008217
+9223 MAGI1 membrane associated guanylate kinase, WW and PDZ domain containing 1 protein-coding 177 0.02108
+9227 LRAT lecithin retinol acyltransferase protein-coding 44 0.00524
+9228 DLGAP2 DLG associated protein 2 protein-coding 190 0.02263
+9229 DLGAP1 DLG associated protein 1 protein-coding 141 0.01679
+9230 RAB11B RAB11B, member RAS oncogene family protein-coding 25 0.002977
+9231 DLG5 discs large MAGUK scaffold protein 5 protein-coding 162 0.01929
+9232 PTTG1 pituitary tumor-transforming 1 protein-coding 23 0.002739
+9235 IL32 interleukin 32 protein-coding 29 0.003454
+9236 CCPG1 cell cycle progression 1 protein-coding 92 0.01096
+9238 TBRG4 transforming growth factor beta regulator 4 protein-coding 56 0.006669
+9240 PNMA1 PNMA family member 1 protein-coding 45 0.005359
+9241 NOG noggin protein-coding 19 0.002263
+9242 MSC musculin protein-coding 48 0.005716
+9244 CRLF1 cytokine receptor like factor 1 protein-coding 39 0.004645
+9245 GCNT3 glucosaminyl (N-acetyl) transferase 3, mucin type protein-coding 38 0.004525
+9246 UBE2L6 ubiquitin conjugating enzyme E2 L6 protein-coding 20 0.002382
+9247 GCM2 glial cells missing homolog 2 protein-coding 73 0.008694
+9248 GPR50 G protein-coupled receptor 50 protein-coding 119 0.01417
+9249 DHRS3 dehydrogenase/reductase 3 protein-coding 31 0.003692
+9252 RPS6KA5 ribosomal protein S6 kinase A5 protein-coding 109 0.01298
+9253 NUMBL NUMB like, endocytic adaptor protein protein-coding 39 0.004645
+9254 CACNA2D2 calcium voltage-gated channel auxiliary subunit alpha2delta 2 protein-coding 82 0.009765
+9255 AIMP1 aminoacyl tRNA synthetase complex interacting multifunctional protein 1 protein-coding 38 0.004525
+9256 TSPOAP1 TSPO associated protein 1 protein-coding 175 0.02084
+9258 MFHAS1 malignant fibrous histiocytoma amplified sequence 1 protein-coding 84 0.01
+9260 PDLIM7 PDZ and LIM domain 7 protein-coding 43 0.005121
+9261 MAPKAPK2 mitogen-activated protein kinase-activated protein kinase 2 protein-coding 39 0.004645
+9262 STK17B serine/threonine kinase 17b protein-coding 58 0.006907
+9263 STK17A serine/threonine kinase 17a protein-coding 41 0.004883
+9265 CYTH3 cytohesin 3 protein-coding 62 0.007384
+9266 CYTH2 cytohesin 2 protein-coding 44 0.00524
+9267 CYTH1 cytohesin 1 protein-coding 46 0.005478
+9270 ITGB1BP1 integrin subunit beta 1 binding protein 1 protein-coding 26 0.003096
+9271 PIWIL1 piwi like RNA-mediated gene silencing 1 protein-coding 169 0.02013
+9274 BCL7C BCL tumor suppressor 7C protein-coding 30 0.003573
+9275 BCL7B BCL tumor suppressor 7B protein-coding 13 0.001548
+9276 COPB2 coatomer protein complex subunit beta 2 protein-coding 93 0.01108
+9277 WDR46 WD repeat domain 46 protein-coding 56 0.006669
+9278 ZBTB22 zinc finger and BTB domain containing 22 protein-coding 85 0.01012
+9282 MED14 mediator complex subunit 14 protein-coding 141 0.01679
+9283 GPR37L1 G protein-coupled receptor 37 like 1 protein-coding 53 0.006312
+9284 NPIPA1 nuclear pore complex interacting protein family member A1 protein-coding 11 0.00131
+9287 TAAR2 trace amine associated receptor 2 (gene/pseudogene) protein-coding 56 0.006669
+9289 ADGRG1 adhesion G protein-coupled receptor G1 protein-coding 59 0.007026
+9290 GPR55 G protein-coupled receptor 55 protein-coding 44 0.00524
+9293 GPR52 G protein-coupled receptor 52 protein-coding 44 0.00524
+9294 S1PR2 sphingosine-1-phosphate receptor 2 protein-coding 30 0.003573
+9295 SRSF11 serine and arginine rich splicing factor 11 protein-coding 57 0.006788
+9296 ATP6V1F ATPase H+ transporting V1 subunit F protein-coding 12 0.001429
+9306 SOCS6 suppressor of cytokine signaling 6 protein-coding 114 0.01358
+9308 CD83 CD83 molecule protein-coding 25 0.002977
+9310 ZNF235 zinc finger protein 235 protein-coding 86 0.01024
+9311 ASIC3 acid sensing ion channel subunit 3 protein-coding 76 0.009051
+9312 KCNB2 potassium voltage-gated channel subfamily B member 2 protein-coding 265 0.03156
+9313 MMP20 matrix metallopeptidase 20 protein-coding 67 0.007979
+9314 KLF4 Kruppel like factor 4 protein-coding 55 0.00655
+9315 NREP neuronal regeneration related protein protein-coding 22 0.00262
+9317 PTER phosphotriesterase related protein-coding 57 0.006788
+9318 COPS2 COP9 signalosome subunit 2 protein-coding 103 0.01227
+9319 TRIP13 thyroid hormone receptor interactor 13 protein-coding 53 0.006312
+9320 TRIP12 thyroid hormone receptor interactor 12 protein-coding 226 0.02691
+9321 TRIP11 thyroid hormone receptor interactor 11 protein-coding 174 0.02072
+9322 TRIP10 thyroid hormone receptor interactor 10 protein-coding 72 0.008574
+9324 HMGN3 high mobility group nucleosomal binding domain 3 protein-coding 15 0.001786
+9325 TRIP4 thyroid hormone receptor interactor 4 protein-coding 70 0.008336
+9326 ZNHIT3 zinc finger HIT-type containing 3 protein-coding 18 0.002144
+9328 GTF3C5 general transcription factor IIIC subunit 5 protein-coding 67 0.007979
+9329 GTF3C4 general transcription factor IIIC subunit 4 protein-coding 64 0.007622
+9330 GTF3C3 general transcription factor IIIC subunit 3 protein-coding 98 0.01167
+9331 B4GALT6 beta-1,4-galactosyltransferase 6 protein-coding 56 0.006669
+9332 CD163 CD163 molecule protein-coding 218 0.02596
+9333 TGM5 transglutaminase 5 protein-coding 224 0.02668
+9334 B4GALT5 beta-1,4-galactosyltransferase 5 protein-coding 50 0.005955
+9337 CNOT8 CCR4-NOT transcription complex subunit 8 protein-coding 31 0.003692
+9338 TCEAL1 transcription elongation factor A like 1 protein-coding 21 0.002501
+9340 GLP2R glucagon like peptide 2 receptor protein-coding 100 0.01191
+9341 VAMP3 vesicle associated membrane protein 3 protein-coding 12 0.001429
+9342 SNAP29 synaptosome associated protein 29 protein-coding 30 0.003573
+9343 EFTUD2 elongation factor Tu GTP binding domain containing 2 protein-coding 102 0.01215
+9344 TAOK2 TAO kinase 2 protein-coding 143 0.01703
+9348 NDST3 N-deacetylase and N-sulfotransferase 3 protein-coding 139 0.01655
+9349 RPL23 ribosomal protein L23 protein-coding 16 0.001905
+9350 CER1 cerberus 1, DAN family BMP antagonist protein-coding 40 0.004764
+9351 SLC9A3R2 SLC9A3 regulator 2 protein-coding 27 0.003215
+9352 TXNL1 thioredoxin like 1 protein-coding 40 0.004764
+9353 SLIT2 slit guidance ligand 2 protein-coding 292 0.03477
+9354 UBE4A ubiquitination factor E4A protein-coding 95 0.01131
+9355 LHX2 LIM homeobox 2 protein-coding 48 0.005716
+9356 SLC22A6 solute carrier family 22 member 6 protein-coding 74 0.008813
+9358 ITGBL1 integrin subunit beta like 1 protein-coding 85 0.01012
+9360 PPIG peptidylprolyl isomerase G protein-coding 110 0.0131
+9361 LONP1 lon peptidase 1, mitochondrial protein-coding 126 0.01501
+9362 CPNE6 copine 6 protein-coding 80 0.009527
+9363 RAB33A RAB33A, member RAS oncogene family protein-coding 32 0.003811
+9364 RAB28 RAB28, member RAS oncogene family protein-coding 31 0.003692
+9365 KL klotho protein-coding 125 0.01489
+9367 RAB9A RAB9A, member RAS oncogene family protein-coding 21 0.002501
+9368 SLC9A3R1 SLC9A3 regulator 1 protein-coding 15 0.001786
+9369 NRXN3 neurexin 3 protein-coding 234 0.02787
+9370 ADIPOQ adiponectin, C1Q and collagen domain containing protein-coding 39 0.004645
+9371 KIF3B kinesin family member 3B protein-coding 92 0.01096
+9372 ZFYVE9 zinc finger FYVE-type containing 9 protein-coding 141 0.01679
+9373 PLAA phospholipase A2 activating protein protein-coding 68 0.008098
+9374 PPT2 palmitoyl-protein thioesterase 2 protein-coding 40 0.004764
+9375 TM9SF2 transmembrane 9 superfamily member 2 protein-coding 86 0.01024
+9376 SLC22A8 solute carrier family 22 member 8 protein-coding 82 0.009765
+9377 COX5A cytochrome c oxidase subunit 5A protein-coding 19 0.002263
+9378 NRXN1 neurexin 1 protein-coding 387 0.04609
+9379 NRXN2 neurexin 2 protein-coding 210 0.02501
+9380 GRHPR glyoxylate and hydroxypyruvate reductase protein-coding 29 0.003454
+9381 OTOF otoferlin protein-coding 270 0.03215
+9382 COG1 component of oligomeric golgi complex 1 protein-coding 87 0.01036
+9383 TSIX TSIX transcript, XIST antisense RNA ncRNA 8 0.0009527
+9388 LIPG lipase G, endothelial type protein-coding 66 0.00786
+9389 SLC22A14 solute carrier family 22 member 14 protein-coding 61 0.007264
+9390 SLC22A13 solute carrier family 22 member 13 protein-coding 51 0.006074
+9391 CIAO1 cytosolic iron-sulfur assembly component 1 protein-coding 32 0.003811
+9392 TGFBRAP1 transforming growth factor beta receptor associated protein 1 protein-coding 175 0.02084
+9394 HS6ST1 heparan sulfate 6-O-sulfotransferase 1 protein-coding 46 0.005478
+9397 NMT2 N-myristoyltransferase 2 protein-coding 66 0.00786
+9398 CD101 CD101 molecule protein-coding 104 0.01239
+9399 STOML1 stomatin like 1 protein-coding 42 0.005002
+9400 RECQL5 RecQ like helicase 5 protein-coding 104 0.01239
+9401 RECQL4 RecQ like helicase 4 protein-coding 123 0.01465
+9402 GRAP2 GRB2 related adaptor protein 2 protein-coding 62 0.007384
+9403 SELENOF selenoprotein F protein-coding 11 0.00131
+9404 LPXN leupaxin protein-coding 34 0.004049
+9406 ZRANB2 zinc finger RANBP2-type containing 2 protein-coding 62 0.007384
+9407 TMPRSS11D transmembrane serine protease 11D protein-coding 77 0.00917
+9409 PEX16 peroxisomal biogenesis factor 16 protein-coding 38 0.004525
+9410 SNRNP40 small nuclear ribonucleoprotein U5 subunit 40 protein-coding 34 0.004049
+9411 ARHGAP29 Rho GTPase activating protein 29 protein-coding 135 0.01608
+9412 MED21 mediator complex subunit 21 protein-coding 15 0.001786
+9413 FAM189A2 family with sequence similarity 189 member A2 protein-coding 55 0.00655
+9414 TJP2 tight junction protein 2 protein-coding 129 0.01536
+9415 FADS2 fatty acid desaturase 2 protein-coding 43 0.005121
+9416 DDX23 DEAD-box helicase 23 protein-coding 105 0.0125
+9419 CRIPT CXXC repeat containing interactor of PDZ3 domain protein-coding 15 0.001786
+9420 CYP7B1 cytochrome P450 family 7 subfamily B member 1 protein-coding 112 0.01334
+9421 HAND1 heart and neural crest derivatives expressed 1 protein-coding 27 0.003215
+9422 ZNF264 zinc finger protein 264 protein-coding 78 0.009289
+9423 NTN1 netrin 1 protein-coding 55 0.00655
+9424 KCNK6 potassium two pore domain channel subfamily K member 6 protein-coding 34 0.004049
+9425 CDYL chromodomain Y like protein-coding 94 0.01119
+9427 ECEL1 endothelin converting enzyme like 1 protein-coding 94 0.01119
+9429 ABCG2 ATP binding cassette subfamily G member 2 (Junior blood group) protein-coding 107 0.01274
+9435 CHST2 carbohydrate sulfotransferase 2 protein-coding 102 0.01215
+9436 NCR2 natural cytotoxicity triggering receptor 2 protein-coding 38 0.004525
+9437 NCR1 natural cytotoxicity triggering receptor 1 protein-coding 63 0.007503
+9439 MED23 mediator complex subunit 23 protein-coding 160 0.01905
+9440 MED17 mediator complex subunit 17 protein-coding 67 0.007979
+9441 MED26 mediator complex subunit 26 protein-coding 56 0.006669
+9442 MED27 mediator complex subunit 27 protein-coding 33 0.00393
+9443 MED7 mediator complex subunit 7 protein-coding 33 0.00393
+9444 QKI QKI, KH domain containing RNA binding protein-coding 64 0.007622
+9445 ITM2B integral membrane protein 2B protein-coding 30 0.003573
+9446 GSTO1 glutathione S-transferase omega 1 protein-coding 22 0.00262
+9447 AIM2 absent in melanoma 2 protein-coding 61 0.007264
+9448 MAP4K4 mitogen-activated protein kinase kinase kinase kinase 4 protein-coding 118 0.01405
+9450 LY86 lymphocyte antigen 86 protein-coding 28 0.003335
+9451 EIF2AK3 eukaryotic translation initiation factor 2 alpha kinase 3 protein-coding 135 0.01608
+9452 ITM2A integral membrane protein 2A protein-coding 74 0.008813
+9453 GGPS1 geranylgeranyl diphosphate synthase 1 protein-coding 37 0.004406
+9454 HOMER3 homer scaffold protein 3 protein-coding 26 0.003096
+9455 HOMER2 homer scaffold protein 2 protein-coding 138 0.01643
+9456 HOMER1 homer scaffold protein 1 protein-coding 41 0.004883
+9457 FHL5 four and a half LIM domains 5 protein-coding 88 0.01048
+9459 ARHGEF6 Rac/Cdc42 guanine nucleotide exchange factor 6 protein-coding 133 0.01584
+9462 RASAL2 RAS protein activator like 2 protein-coding 183 0.02179
+9463 PICK1 protein interacting with PRKCA 1 protein-coding 44 0.00524
+9464 HAND2 heart and neural crest derivatives expressed 2 protein-coding 46 0.005478
+9465 AKAP7 A-kinase anchoring protein 7 protein-coding 62 0.007384
+9466 IL27RA interleukin 27 receptor subunit alpha protein-coding 64 0.007622
+9467 SH3BP5 SH3 domain binding protein 5 protein-coding 40 0.004764
+9468 PCYT1B phosphate cytidylyltransferase 1, choline, beta protein-coding 54 0.006431
+9469 CHST3 carbohydrate sulfotransferase 3 protein-coding 55 0.00655
+9470 EIF4E2 eukaryotic translation initiation factor 4E family member 2 protein-coding 34 0.004049
+9472 AKAP6 A-kinase anchoring protein 6 protein-coding 300 0.03573
+9473 THEMIS2 thymocyte selection associated family member 2 protein-coding 53 0.006312
+9474 ATG5 autophagy related 5 protein-coding 40 0.004764
+9475 ROCK2 Rho associated coiled-coil containing protein kinase 2 protein-coding 164 0.01953
+9476 NAPSA napsin A aspartic peptidase protein-coding 56 0.006669
+9477 MED20 mediator complex subunit 20 protein-coding 18 0.002144
+9478 CABP1 calcium binding protein 1 protein-coding 28 0.003335
+9479 MAPK8IP1 mitogen-activated protein kinase 8 interacting protein 1 protein-coding 66 0.00786
+9480 ONECUT2 one cut homeobox 2 protein-coding 56 0.006669
+9481 SLC25A27 solute carrier family 25 member 27 protein-coding 33 0.00393
+9482 STX8 syntaxin 8 protein-coding 38 0.004525
+9486 CHST10 carbohydrate sulfotransferase 10 protein-coding 59 0.007026
+9487 PIGL phosphatidylinositol glycan anchor biosynthesis class L protein-coding 22 0.00262
+9488 PIGB phosphatidylinositol glycan anchor biosynthesis class B protein-coding 70 0.008336
+9489 PGS1 phosphatidylglycerophosphate synthase 1 protein-coding 66 0.00786
+9491 PSMF1 proteasome inhibitor subunit 1 protein-coding 39 0.004645
+9493 KIF23 kinesin family member 23 protein-coding 87 0.01036
+9495 AKAP5 A-kinase anchoring protein 5 protein-coding 44 0.00524
+9496 TBX4 T-box 4 protein-coding 100 0.01191
+9497 SLC4A7 solute carrier family 4 member 7 protein-coding 120 0.01429
+9498 SLC4A8 solute carrier family 4 member 8 protein-coding 127 0.01512
+9499 MYOT myotilin protein-coding 73 0.008694
+9500 MAGED1 MAGE family member D1 protein-coding 114 0.01358
+9501 RPH3AL rabphilin 3A like (without C2 domains) protein-coding 40 0.004764
+9506 PAGE4 PAGE family member 4 protein-coding 16 0.001905
+9507 ADAMTS4 ADAM metallopeptidase with thrombospondin type 1 motif 4 protein-coding 106 0.01262
+9508 ADAMTS3 ADAM metallopeptidase with thrombospondin type 1 motif 3 protein-coding 199 0.0237
+9509 ADAMTS2 ADAM metallopeptidase with thrombospondin type 1 motif 2 protein-coding 216 0.02572
+9510 ADAMTS1 ADAM metallopeptidase with thrombospondin type 1 motif 1 protein-coding 123 0.01465
+9512 PMPCB peptidase, mitochondrial processing beta subunit protein-coding 49 0.005835
+9513 FXR2 FMR1 autosomal homolog 2 protein-coding 64 0.007622
+9514 GAL3ST1 galactose-3-O-sulfotransferase 1 protein-coding 71 0.008455
+9515 STXBP5L syntaxin binding protein 5 like protein-coding 199 0.0237
+9516 LITAF lipopolysaccharide induced TNF factor protein-coding 18 0.002144
+9517 SPTLC2 serine palmitoyltransferase long chain base subunit 2 protein-coding 63 0.007503
+9518 GDF15 growth differentiation factor 15 protein-coding 26 0.003096
+9519 TBPL1 TATA-box binding protein like 1 protein-coding 24 0.002858
+9520 NPEPPS aminopeptidase puromycin sensitive protein-coding 92 0.01096
+9521 EEF1E1 eukaryotic translation elongation factor 1 epsilon 1 protein-coding 27 0.003215
+9522 SCAMP1 secretory carrier membrane protein 1 protein-coding 26 0.003096
+9524 TECR trans-2,3-enoyl-CoA reductase protein-coding 42 0.005002
+9525 VPS4B vacuolar protein sorting 4 homolog B protein-coding 56 0.006669
+9526 MPDU1 mannose-P-dolichol utilization defect 1 protein-coding 13 0.001548
+9527 GOSR1 golgi SNAP receptor complex member 1 protein-coding 24 0.002858
+9528 TMEM59 transmembrane protein 59 protein-coding 31 0.003692
+9529 BAG5 BCL2 associated athanogene 5 protein-coding 45 0.005359
+9530 BAG4 BCL2 associated athanogene 4 protein-coding 55 0.00655
+9531 BAG3 BCL2 associated athanogene 3 protein-coding 54 0.006431
+9532 BAG2 BCL2 associated athanogene 2 protein-coding 17 0.002025
+9533 POLR1C RNA polymerase I and III subunit C protein-coding 39 0.004645
+9534 ZNF254 zinc finger protein 254 protein-coding 112 0.01334
+9535 GMFG glia maturation factor gamma protein-coding 25 0.002977
+9536 PTGES prostaglandin E synthase protein-coding 14 0.001667
+9537 TP53I11 tumor protein p53 inducible protein 11 protein-coding 33 0.00393
+9538 EI24 EI24, autophagy associated transmembrane protein protein-coding 26 0.003096
+9540 TP53I3 tumor protein p53 inducible protein 3 protein-coding 24 0.002858
+9541 CIR1 corepressor interacting with RBPJ, 1 protein-coding 58 0.006907
+9542 NRG2 neuregulin 2 protein-coding 57 0.006788
+9543 IGDCC3 immunoglobulin superfamily DCC subclass member 3 protein-coding 96 0.01143
+9545 RAB3D RAB3D, member RAS oncogene family protein-coding 30 0.003573
+9546 APBA3 amyloid beta precursor protein binding family A member 3 protein-coding 47 0.005597
+9547 CXCL14 C-X-C motif chemokine ligand 14 protein-coding 17 0.002025
+9550 ATP6V1G1 ATPase H+ transporting V1 subunit G1 protein-coding 15 0.001786
+9551 ATP5MF ATP synthase membrane subunit f protein-coding 10 0.001191
+9552 SPAG7 sperm associated antigen 7 protein-coding 25 0.002977
+9553 MRPL33 mitochondrial ribosomal protein L33 protein-coding 8 0.0009527
+9554 SEC22B SEC22 homolog B, vesicle trafficking protein (gene/pseudogene) protein-coding 105 0.0125
+9555 H2AFY H2A histone family member Y protein-coding 44 0.00524
+9556 ATP5MPL ATP synthase membrane subunit 6.8PL protein-coding 8 0.0009527
+9557 CHD1L chromodomain helicase DNA binding protein 1 like protein-coding 84 0.01
+9559 VPS26A VPS26, retromer complex component A protein-coding 33 0.00393
+9560 CCL4L2 C-C motif chemokine ligand 4 like 2 protein-coding 1 0.0001191
+9562 MINPP1 multiple inositol-polyphosphate phosphatase 1 protein-coding 50 0.005955
+9563 H6PD hexose-6-phosphate dehydrogenase/glucose 1-dehydrogenase protein-coding 84 0.01
+9564 BCAR1 BCAR1, Cas family scaffold protein protein-coding 100 0.01191
+9567 GTPBP1 GTP binding protein 1 protein-coding 60 0.007145
+9568 GABBR2 gamma-aminobutyric acid type B receptor subunit 2 protein-coding 120 0.01429
+9569 GTF2IRD1 GTF2I repeat domain containing 1 protein-coding 101 0.01203
+9570 GOSR2 golgi SNAP receptor complex member 2 protein-coding 22 0.00262
+9572 NR1D1 nuclear receptor subfamily 1 group D member 1 protein-coding 54 0.006431
+9573 GDF3 growth differentiation factor 3 protein-coding 62 0.007384
+9575 CLOCK clock circadian regulator protein-coding 80 0.009527
+9576 SPAG6 sperm associated antigen 6 protein-coding 85 0.01012
+9577 BABAM2 BRISC and BRCA1 A complex member 2 protein-coding 62 0.007384
+9578 CDC42BPB CDC42 binding protein kinase beta protein-coding 162 0.01929
+9580 SOX13 SRY-box 13 protein-coding 65 0.007741
+9581 PREPL prolyl endopeptidase like protein-coding 87 0.01036
+9582 APOBEC3B apolipoprotein B mRNA editing enzyme catalytic subunit 3B protein-coding 52 0.006193
+9583 ENTPD4 ectonucleoside triphosphate diphosphohydrolase 4 protein-coding 66 0.00786
+9584 RBM39 RNA binding motif protein 39 protein-coding 75 0.008932
+9585 KIF20B kinesin family member 20B protein-coding 223 0.02656
+9586 CREB5 cAMP responsive element binding protein 5 protein-coding 91 0.01084
+9587 MAD2L1BP MAD2L1 binding protein protein-coding 24 0.002858
+9588 PRDX6 peroxiredoxin 6 protein-coding 188 0.02239
+9589 WTAP WT1 associated protein protein-coding 69 0.008217
+9590 AKAP12 A-kinase anchoring protein 12 protein-coding 187 0.02227
+9592 IER2 immediate early response 2 protein-coding 20 0.002382
+9595 CYTIP cytohesin 1 interacting protein protein-coding 75 0.008932
+9600 PITPNM1 phosphatidylinositol transfer protein membrane associated 1 protein-coding 121 0.01441
+9601 PDIA4 protein disulfide isomerase family A member 4 protein-coding 68 0.008098
+9603 NFE2L3 nuclear factor, erythroid 2 like 3 protein-coding 99 0.01179
+9604 RNF14 ring finger protein 14 protein-coding 48 0.005716
+9605 VPS9D1 VPS9 domain containing 1 protein-coding 65 0.007741
+9607 CARTPT CART prepropeptide protein-coding 20 0.002382
+9609 RAB36 RAB36, member RAS oncogene family protein-coding 41 0.004883
+9610 RIN1 Ras and Rab interactor 1 protein-coding 57 0.006788
+9611 NCOR1 nuclear receptor corepressor 1 protein-coding 305 0.03632
+9612 NCOR2 nuclear receptor corepressor 2 protein-coding 288 0.0343
+9615 GDA guanine deaminase protein-coding 80 0.009527
+9616 RNF7 ring finger protein 7 protein-coding 65 0.007741
+9617 MTRF1 mitochondrial translation release factor 1 protein-coding 47 0.005597
+9618 TRAF4 TNF receptor associated factor 4 protein-coding 39 0.004645
+9619 ABCG1 ATP binding cassette subfamily G member 1 protein-coding 86 0.01024
+9620 CELSR1 cadherin EGF LAG seven-pass G-type receptor 1 protein-coding 345 0.04109
+9622 KLK4 kallikrein related peptidase 4 protein-coding 40 0.004764
+9623 TCL1B T cell leukemia/lymphoma 1B protein-coding 30 0.003573
+9625 AATK apoptosis associated tyrosine kinase protein-coding 81 0.009646
+9626 GUCA1C guanylate cyclase activator 1C protein-coding 45 0.005359
+9627 SNCAIP synuclein alpha interacting protein protein-coding 128 0.01524
+9628 RGS6 regulator of G protein signaling 6 protein-coding 103 0.01227
+9630 GNA14 G protein subunit alpha 14 protein-coding 52 0.006193
+9631 NUP155 nucleoporin 155 protein-coding 149 0.01774
+9632 SEC24C SEC24 homolog C, COPII coat complex component protein-coding 106 0.01262
+9633 TESMIN testis expressed metallothionein like protein protein-coding 65 0.007741
+9635 CLCA2 chloride channel accessory 2 protein-coding 113 0.01346
+9636 ISG15 ISG15 ubiquitin-like modifier protein-coding 11 0.00131
+9637 FEZ2 fasciculation and elongation protein zeta 2 protein-coding 30 0.003573
+9638 FEZ1 fasciculation and elongation protein zeta 1 protein-coding 64 0.007622
+9639 ARHGEF10 Rho guanine nucleotide exchange factor 10 protein-coding 127 0.01512
+9640 ZNF592 zinc finger protein 592 protein-coding 119 0.01417
+9641 IKBKE inhibitor of nuclear factor kappa B kinase subunit epsilon protein-coding 101 0.01203
+9643 MORF4L2 mortality factor 4 like 2 protein-coding 43 0.005121
+9644 SH3PXD2A SH3 and PX domains 2A protein-coding 113 0.01346
+9645 MICAL2 microtubule associated monooxygenase, calponin and LIM domain containing 2 protein-coding 139 0.01655
+9646 CTR9 CTR9 homolog, Paf1/RNA polymerase II complex component protein-coding 136 0.0162
+9647 PPM1F protein phosphatase, Mg2+/Mn2+ dependent 1F protein-coding 52 0.006193
+9648 GCC2 GRIP and coiled-coil domain containing 2 protein-coding 180 0.02144
+9649 RALGPS1 Ral GEF with PH domain and SH3 binding motif 1 protein-coding 52 0.006193
+9650 MTFR1 mitochondrial fission regulator 1 protein-coding 46 0.005478
+9651 PLCH2 phospholipase C eta 2 protein-coding 100 0.01191
+9652 TTC37 tetratricopeptide repeat domain 37 protein-coding 147 0.01751
+9653 HS2ST1 heparan sulfate 2-O-sulfotransferase 1 protein-coding 47 0.005597
+9654 TTLL4 tubulin tyrosine ligase like 4 protein-coding 114 0.01358
+9655 SOCS5 suppressor of cytokine signaling 5 protein-coding 68 0.008098
+9656 MDC1 mediator of DNA damage checkpoint 1 protein-coding 189 0.02251
+9657 IQCB1 IQ motif containing B1 protein-coding 58 0.006907
+9658 ZNF516 zinc finger protein 516 protein-coding 135 0.01608
+9659 PDE4DIP phosphodiesterase 4D interacting protein protein-coding 381 0.04537
+9662 CEP135 centrosomal protein 135 protein-coding 132 0.01572
+9663 LPIN2 lipin 2 protein-coding 101 0.01203
+9665 MARF1 meiosis regulator and mRNA stability factor 1 protein-coding 161 0.01917
+9666 DZIP3 DAZ interacting zinc finger protein 3 protein-coding 169 0.02013
+9667 SAFB2 scaffold attachment factor B2 protein-coding 90 0.01072
+9668 ZNF432 zinc finger protein 432 protein-coding 79 0.009408
+9669 EIF5B eukaryotic translation initiation factor 5B protein-coding 120 0.01429
+9670 IPO13 importin 13 protein-coding 92 0.01096
+9671 WSCD2 WSC domain containing 2 protein-coding 126 0.01501
+9672 SDC3 syndecan 3 protein-coding 32 0.003811
+9673 SLC25A44 solute carrier family 25 member 44 protein-coding 30 0.003573
+9674 KIAA0040 KIAA0040 protein-coding 6 0.0007145
+9675 TTI1 TELO2 interacting protein 1 protein-coding 144 0.01715
+9677 PPIP5K1 diphosphoinositol pentakisphosphate kinase 1 protein-coding 51 0.006074
+9678 PHF14 PHD finger protein 14 protein-coding 116 0.01381
+9679 FAM53B family with sequence similarity 53 member B protein-coding 42 0.005002
+9681 DEPDC5 DEP domain containing 5 protein-coding 183 0.02179
+9682 KDM4A lysine demethylase 4A protein-coding 106 0.01262
+9683 N4BP1 NEDD4 binding protein 1 protein-coding 98 0.01167
+9684 LRRC14 leucine rich repeat containing 14 protein-coding 63 0.007503
+9685 CLINT1 clathrin interactor 1 protein-coding 70 0.008336
+9686 VGLL4 vestigial like family member 4 protein-coding 45 0.005359
+9687 GREB1 growth regulating estrogen receptor binding 1 protein-coding 238 0.02834
+9688 NUP93 nucleoporin 93 protein-coding 91 0.01084
+9689 BZW1 basic leucine zipper and W2 domains 1 protein-coding 57 0.006788
+9690 UBE3C ubiquitin protein ligase E3C protein-coding 134 0.01596
+9692 KIAA0391 KIAA0391 protein-coding 56 0.006669
+9693 RAPGEF2 Rap guanine nucleotide exchange factor 2 protein-coding 169 0.02013
+9694 EMC2 ER membrane protein complex subunit 2 protein-coding 55 0.00655
+9695 EDEM1 ER degradation enhancing alpha-mannosidase like protein 1 protein-coding 52 0.006193
+9696 CROCC ciliary rootlet coiled-coil, rootletin protein-coding 182 0.02167
+9697 TRAM2 translocation associated membrane protein 2 protein-coding 38 0.004525
+9698 PUM1 pumilio RNA binding family member 1 protein-coding 129 0.01536
+9699 RIMS2 regulating synaptic membrane exocytosis 2 protein-coding 357 0.04252
+9700 ESPL1 extra spindle pole bodies like 1, separase protein-coding 180 0.02144
+9701 PPP6R2 protein phosphatase 6 regulatory subunit 2 protein-coding 92 0.01096
+9702 CEP57 centrosomal protein 57 protein-coding 60 0.007145
+9703 KIAA0100 KIAA0100 protein-coding 203 0.02418
+9704 DHX34 DExH-box helicase 34 protein-coding 185 0.02203
+9705 ST18 ST18, C2H2C-type zinc finger protein-coding 210 0.02501
+9706 ULK2 unc-51 like autophagy activating kinase 2 protein-coding 107 0.01274
+9708 PCDHGA8 protocadherin gamma subfamily A, 8 protein-coding 171 0.02036
+9709 HERPUD1 homocysteine inducible ER protein with ubiquitin like domain 1 protein-coding 34 0.004049
+9710 KIAA0355 KIAA0355 protein-coding 96 0.01143
+9711 RUBCN RUN and cysteine rich domain containing beclin 1 interacting protein protein-coding 118 0.01405
+9712 USP6NL USP6 N-terminal like protein-coding 88 0.01048
+9715 FAM131B family with sequence similarity 131 member B protein-coding 59 0.007026
+9716 AQR aquarius intron-binding spliceosomal factor protein-coding 153 0.01822
+9717 SEC14L5 SEC14 like lipid binding 5 protein-coding 100 0.01191
+9718 ECE2 endothelin converting enzyme 2 protein-coding 139 0.01655
+9719 ADAMTSL2 ADAMTS like 2 protein-coding 46 0.005478
+9720 CCDC144A coiled-coil domain containing 144A protein-coding 139 0.01655
+9721 GPRIN2 G protein regulated inducer of neurite outgrowth 2 protein-coding 73 0.008694
+9722 NOS1AP nitric oxide synthase 1 adaptor protein protein-coding 58 0.006907
+9723 SEMA3E semaphorin 3E protein-coding 167 0.01989
+9724 UTP14C UTP14C, small subunit processome component protein-coding 77 0.00917
+9725 TMEM63A transmembrane protein 63A protein-coding 70 0.008336
+9726 ZNF646 zinc finger protein 646 protein-coding 178 0.0212
+9727 RAB11FIP3 RAB11 family interacting protein 3 protein-coding 39 0.004645
+9728 SECISBP2L SECIS binding protein 2 like protein-coding 119 0.01417
+9729 KIAA0408 KIAA0408 protein-coding 94 0.01119
+9730 DCAF1 DDB1 and CUL4 associated factor 1 protein-coding 93 0.01108
+9731 CEP104 centrosomal protein 104 protein-coding 104 0.01239
+9732 DOCK4 dedicator of cytokinesis 4 protein-coding 255 0.03037
+9733 SART3 squamous cell carcinoma antigen recognized by T cells 3 protein-coding 97 0.01155
+9734 HDAC9 histone deacetylase 9 protein-coding 276 0.03287
+9735 KNTC1 kinetochore associated 1 protein-coding 202 0.02406
+9736 USP34 ubiquitin specific peptidase 34 protein-coding 340 0.04049
+9737 GPRASP1 G protein-coupled receptor associated sorting protein 1 protein-coding 185 0.02203
+9738 CCP110 centriolar coiled-coil protein 110 protein-coding 91 0.01084
+9739 SETD1A SET domain containing 1A protein-coding 145 0.01727
+9741 LAPTM4A lysosomal protein transmembrane 4 alpha protein-coding 20 0.002382
+9742 IFT140 intraflagellar transport 140 protein-coding 144 0.01715
+9743 ARHGAP32 Rho GTPase activating protein 32 protein-coding 207 0.02465
+9744 ACAP1 ArfGAP with coiled-coil, ankyrin repeat and PH domains 1 protein-coding 85 0.01012
+9745 ZNF536 zinc finger protein 536 protein-coding 432 0.05145
+9746 CLSTN3 calsyntenin 3 protein-coding 116 0.01381
+9747 TCAF1 TRPM8 channel associated factor 1 protein-coding 39 0.004645
+9748 SLK STE20 like kinase protein-coding 121 0.01441
+9749 PHACTR2 phosphatase and actin regulator 2 protein-coding 83 0.009884
+9750 RIPOR2 RHO family interacting cell polarization regulator 2 protein-coding 118 0.01405
+9751 SNPH syntaphilin protein-coding 67 0.007979
+9752 PCDHA9 protocadherin alpha 9 protein-coding 199 0.0237
+9753 ZSCAN12 zinc finger and SCAN domain containing 12 protein-coding 53 0.006312
+9754 STARD8 StAR related lipid transfer domain containing 8 protein-coding 131 0.0156
+9755 TBKBP1 TBK1 binding protein 1 protein-coding 46 0.005478
+9757 KMT2B lysine methyltransferase 2B protein-coding 346 0.04121
+9758 FRMPD4 FERM and PDZ domain containing 4 protein-coding 193 0.02298
+9759 HDAC4 histone deacetylase 4 protein-coding 159 0.01894
+9760 TOX thymocyte selection associated high mobility group box protein-coding 97 0.01155
+9761 MLEC malectin protein-coding 43 0.005121
+9762 LZTS3 leucine zipper tumor suppressor family member 3 protein-coding 67 0.007979
+9764 KIAA0513 KIAA0513 protein-coding 45 0.005359
+9765 ZFYVE16 zinc finger FYVE-type containing 16 protein-coding 143 0.01703
+9766 SUSD6 sushi domain containing 6 protein-coding 26 0.003096
+9767 JADE3 jade family PHD finger 3 protein-coding 79 0.009408
+9768 PCLAF PCNA clamp associated factor protein-coding 18 0.002144
+9770 RASSF2 Ras association domain family member 2 protein-coding 77 0.00917
+9771 RAPGEF5 Rap guanine nucleotide exchange factor 5 protein-coding 78 0.009289
+9772 TMEM94 transmembrane protein 94 protein-coding 149 0.01774
+9774 BCLAF1 BCL2 associated transcription factor 1 protein-coding 270 0.03215
+9775 EIF4A3 eukaryotic translation initiation factor 4A3 protein-coding 45 0.005359
+9776 ATG13 autophagy related 13 protein-coding 54 0.006431
+9777 TM9SF4 transmembrane 9 superfamily member 4 protein-coding 62 0.007384
+9778 KIAA0232 KIAA0232 protein-coding 128 0.01524
+9779 TBC1D5 TBC1 domain family member 5 protein-coding 86 0.01024
+9780 PIEZO1 piezo type mechanosensitive ion channel component 1 protein-coding 107 0.01274
+9781 RNF144A ring finger protein 144A protein-coding 64 0.007622
+9782 MATR3 matrin 3 protein-coding 89 0.0106
+9783 RIMS3 regulating synaptic membrane exocytosis 3 protein-coding 43 0.005121
+9784 SNX17 sorting nexin 17 protein-coding 53 0.006312
+9785 DHX38 DEAH-box helicase 38 protein-coding 120 0.01429
+9786 KIAA0586 KIAA0586 protein-coding 146 0.01739
+9787 DLGAP5 DLG associated protein 5 protein-coding 82 0.009765
+9788 MTSS1 MTSS1, I-BAR domain containing protein-coding 101 0.01203
+9789 SPCS2 signal peptidase complex subunit 2 protein-coding 18 0.002144
+9790 BMS1 BMS1, ribosome biogenesis factor protein-coding 144 0.01715
+9791 PTDSS1 phosphatidylserine synthase 1 protein-coding 80 0.009527
+9792 SERTAD2 SERTA domain containing 2 protein-coding 41 0.004883
+9793 CKAP5 cytoskeleton associated protein 5 protein-coding 169 0.02013
+9794 MAML1 mastermind like transcriptional coactivator 1 protein-coding 82 0.009765
+9796 PHYHIP phytanoyl-CoA 2-hydroxylase interacting protein protein-coding 36 0.004287
+9797 TATDN2 TatD DNase domain containing 2 protein-coding 66 0.00786
+9798 IST1 IST1, ESCRT-III associated factor protein-coding 28 0.003335
+9801 MRPL19 mitochondrial ribosomal protein L19 protein-coding 60 0.007145
+9802 DAZAP2 DAZ associated protein 2 protein-coding 23 0.002739
+9804 TOMM20 translocase of outer mitochondrial membrane 20 protein-coding 8 0.0009527
+9805 SCRN1 secernin 1 protein-coding 54 0.006431
+9806 SPOCK2 SPARC (osteonectin), cwcv and kazal like domains proteoglycan 2 protein-coding 45 0.005359
+9807 IP6K1 inositol hexakisphosphate kinase 1 protein-coding 44 0.00524
+9808 KIAA0087 KIAA0087 lncRNA ncRNA 7 0.0008336
+9810 RNF40 ring finger protein 40 protein-coding 120 0.01429
+9811 CTIF cap binding complex dependent translation initiation factor protein-coding 81 0.009646
+9812 DELE1 DAP3 binding cell death enhancer 1 protein-coding 52 0.006193
+9813 EFCAB14 EF-hand calcium binding domain 14 protein-coding 45 0.005359
+9814 SFI1 SFI1 centrin binding protein protein-coding 121 0.01441
+9815 GIT2 GIT ArfGAP 2 protein-coding 67 0.007979
+9816 URB2 URB2 ribosome biogenesis 2 homolog (S. cerevisiae) protein-coding 138 0.01643
+9817 KEAP1 kelch like ECH associated protein 1 protein-coding 247 0.02942
+9818 NUP58 nucleoporin 58 protein-coding 69 0.008217
+9819 TSC22D2 TSC22 domain family member 2 protein-coding 60 0.007145
+9820 CUL7 cullin 7 protein-coding 141 0.01679
+9821 RB1CC1 RB1 inducible coiled-coil 1 protein-coding 198 0.02358
+9823 ARMCX2 armadillo repeat containing, X-linked 2 protein-coding 97 0.01155
+9824 ARHGAP11A Rho GTPase activating protein 11A protein-coding 115 0.0137
+9825 SPATA2 spermatogenesis associated 2 protein-coding 58 0.006907
+9826 ARHGEF11 Rho guanine nucleotide exchange factor 11 protein-coding 175 0.02084
+9827 RGP1 RGP1 homolog, RAB6A GEF complex partner 1 protein-coding 40 0.004764
+9828 ARHGEF17 Rho guanine nucleotide exchange factor 17 protein-coding 182 0.02167
+9829 DNAJC6 DnaJ heat shock protein family (Hsp40) member C6 protein-coding 130 0.01548
+9830 TRIM14 tripartite motif containing 14 protein-coding 28 0.003335
+9831 ZNF623 zinc finger protein 623 protein-coding 82 0.009765
+9832 JAKMIP2 janus kinase and microtubule interacting protein 2 protein-coding 122 0.01453
+9833 MELK maternal embryonic leucine zipper kinase protein-coding 61 0.007264
+9834 FAM30A family with sequence similarity 30 member A ncRNA 14 0.001667
+9836 LCMT2 leucine carboxyl methyltransferase 2 protein-coding 86 0.01024
+9837 GINS1 GINS complex subunit 1 protein-coding 25 0.002977
+9839 ZEB2 zinc finger E-box binding homeobox 2 protein-coding 249 0.02965
+9840 TESPA1 thymocyte expressed, positive selection associated 1 protein-coding 95 0.01131
+9841 ZBTB24 zinc finger and BTB domain containing 24 protein-coding 80 0.009527
+9842 PLEKHM1 pleckstrin homology and RUN domain containing M1 protein-coding 108 0.01286
+9843 HEPH hephaestin protein-coding 226 0.02691
+9844 ELMO1 engulfment and cell motility 1 protein-coding 165 0.01965
+9846 GAB2 GRB2 associated binding protein 2 protein-coding 73 0.008694
+9847 C2CD5 C2 calcium dependent domain containing 5 protein-coding 124 0.01477
+9848 MFAP3L microfibril associated protein 3 like protein-coding 50 0.005955
+9849 ZNF518A zinc finger protein 518A protein-coding 219 0.02608
+9851 KIAA0753 KIAA0753 protein-coding 95 0.01131
+9852 EPM2AIP1 EPM2A interacting protein 1 protein-coding 70 0.008336
+9853 RUSC2 RUN and SH3 domain containing 2 protein-coding 127 0.01512
+9854 C2CD2L C2CD2 like protein-coding 68 0.008098
+9855 FARP2 FERM, ARH/RhoGEF and pleckstrin domain protein 2 protein-coding 113 0.01346
+9856 KIAA0319 KIAA0319 protein-coding 143 0.01703
+9857 CEP350 centrosomal protein 350 protein-coding 263 0.03132
+9858 PPP1R26 protein phosphatase 1 regulatory subunit 26 protein-coding 135 0.01608
+9859 CEP170 centrosomal protein 170 protein-coding 220 0.0262
+9860 LRIG2 leucine rich repeats and immunoglobulin like domains 2 protein-coding 122 0.01453
+9861 PSMD6 proteasome 26S subunit, non-ATPase 6 protein-coding 34 0.004049
+9862 MED24 mediator complex subunit 24 protein-coding 94 0.01119
+9863 MAGI2 membrane associated guanylate kinase, WW and PDZ domain containing 2 protein-coding 242 0.02882
+9866 TRIM66 tripartite motif containing 66 protein-coding 73 0.008694
+9867 PJA2 praja ring finger ubiquitin ligase 2 protein-coding 77 0.00917
+9868 TOMM70 translocase of outer mitochondrial membrane 70 protein-coding 55 0.00655
+9869 SETDB1 SET domain bifurcated 1 protein-coding 147 0.01751
+9870 AREL1 apoptosis resistant E3 ubiquitin protein ligase 1 protein-coding 87 0.01036
+9871 SEC24D SEC24 homolog D, COPII coat complex component protein-coding 107 0.01274
+9873 FCHSD2 FCH and double SH3 domains 2 protein-coding 58 0.006907
+9874 TLK1 tousled like kinase 1 protein-coding 87 0.01036
+9875 URB1 URB1 ribosome biogenesis 1 homolog (S. cerevisiae) protein-coding 95 0.01131
+9877 ZC3H11A zinc finger CCCH-type containing 11A protein-coding 91 0.01084
+9878 TOX4 TOX high mobility group box family member 4 protein-coding 141 0.01679
+9879 DDX46 DEAD-box helicase 46 protein-coding 115 0.0137
+9880 ZBTB39 zinc finger and BTB domain containing 39 protein-coding 61 0.007264
+9881 TRANK1 tetratricopeptide repeat and ankyrin repeat containing 1 protein-coding 231 0.02751
+9882 TBC1D4 TBC1 domain family member 4 protein-coding 151 0.01798
+9883 POM121 POM121 transmembrane nucleoporin protein-coding 106 0.01262
+9884 LRRC37A leucine rich repeat containing 37A protein-coding 35 0.004168
+9885 OSBPL2 oxysterol binding protein like 2 protein-coding 63 0.007503
+9886 RHOBTB1 Rho related BTB domain containing 1 protein-coding 94 0.01119
+9887 SMG7 SMG7, nonsense mediated mRNA decay factor protein-coding 116 0.01381
+9889 ZBED4 zinc finger BED-type containing 4 protein-coding 118 0.01405
+9890 PLPPR4 phospholipid phosphatase related 4 protein-coding 166 0.01977
+9891 NUAK1 NUAK family kinase 1 protein-coding 116 0.01381
+9892 SNAP91 synaptosome associated protein 91 protein-coding 143 0.01703
+9894 TELO2 telomere maintenance 2 protein-coding 171 0.02036
+9895 TECPR2 tectonin beta-propeller repeat containing 2 protein-coding 142 0.01691
+9896 FIG4 FIG4 phosphoinositide 5-phosphatase protein-coding 105 0.0125
+9897 WASHC5 WASH complex subunit 5 protein-coding 120 0.01429
+9898 UBAP2L ubiquitin associated protein 2 like protein-coding 93 0.01108
+9899 SV2B synaptic vesicle glycoprotein 2B protein-coding 102 0.01215
+9900 SV2A synaptic vesicle glycoprotein 2A protein-coding 115 0.0137
+9901 SRGAP3 SLIT-ROBO Rho GTPase activating protein 3 protein-coding 215 0.0256
+9902 MRC2 mannose receptor C type 2 protein-coding 144 0.01715
+9903 KLHL21 kelch like family member 21 protein-coding 42 0.005002
+9904 RBM19 RNA binding motif protein 19 protein-coding 122 0.01453
+9905 SGSM2 small G protein signaling modulator 2 protein-coding 72 0.008574
+9907 AP5Z1 adaptor related protein complex 5 zeta 1 subunit protein-coding 99 0.01179
+9908 G3BP2 G3BP stress granule assembly factor 2 protein-coding 61 0.007264
+9909 DENND4B DENN domain containing 4B protein-coding 172 0.02048
+9910 RABGAP1L RAB GTPase activating protein 1 like protein-coding 117 0.01393
+9911 TMCC2 transmembrane and coiled-coil domain family 2 protein-coding 81 0.009646
+9912 ARHGAP44 Rho GTPase activating protein 44 protein-coding 84 0.01
+9913 SUPT7L SPT7 like, STAGA complex gamma subunit protein-coding 32 0.003811
+9914 ATP2C2 ATPase secretory pathway Ca2+ transporting 2 protein-coding 93 0.01108
+9915 ARNT2 aryl hydrocarbon receptor nuclear translocator 2 protein-coding 86 0.01024
+9917 FAM20B FAM20B, glycosaminoglycan xylosylkinase protein-coding 53 0.006312
+9918 NCAPD2 non-SMC condensin I complex subunit D2 protein-coding 126 0.01501
+9919 SEC16A SEC16 homolog A, endoplasmic reticulum export factor protein-coding 187 0.02227
+9920 KBTBD11 kelch repeat and BTB domain containing 11 protein-coding 5 0.0005955
+9921 RNF10 ring finger protein 10 protein-coding 86 0.01024
+9922 IQSEC1 IQ motif and Sec7 domain 1 protein-coding 105 0.0125
+9923 ZBTB40 zinc finger and BTB domain containing 40 protein-coding 109 0.01298
+9924 PAN2 PAN2 poly(A) specific ribonuclease subunit protein-coding 113 0.01346
+9925 ZBTB5 zinc finger and BTB domain containing 5 protein-coding 70 0.008336
+9926 LPGAT1 lysophosphatidylglycerol acyltransferase 1 protein-coding 39 0.004645
+9927 MFN2 mitofusin 2 protein-coding 87 0.01036
+9928 KIF14 kinesin family member 14 protein-coding 169 0.02013
+9929 JOSD1 Josephin domain containing 1 protein-coding 23 0.002739
+9931 HELZ helicase with zinc finger protein-coding 192 0.02287
+9933 PUM3 pumilio RNA binding family member 3 protein-coding 65 0.007741
+9934 P2RY14 purinergic receptor P2Y14 protein-coding 55 0.00655
+9935 MAFB MAF bZIP transcription factor B protein-coding 27 0.003215
+9936 CD302 CD302 molecule protein-coding 1 0.0001191
+9937 DCLRE1A DNA cross-link repair 1A protein-coding 103 0.01227
+9938 ARHGAP25 Rho GTPase activating protein 25 protein-coding 88 0.01048
+9939 RBM8A RNA binding motif protein 8A protein-coding 26 0.003096
+9940 DLEC1 deleted in lung and esophageal cancer 1 protein-coding 373 0.04442
+9941 EXOG exo/endonuclease G protein-coding 33 0.00393
+9942 XYLB xylulokinase protein-coding 73 0.008694
+9943 OXSR1 oxidative stress responsive 1 protein-coding 103 0.01227
+9945 GFPT2 glutamine-fructose-6-phosphate transaminase 2 protein-coding 106 0.01262
+9946 CRYZL1 crystallin zeta like 1 protein-coding 40 0.004764
+9947 MAGEC1 MAGE family member C1 protein-coding 328 0.03906
+9948 WDR1 WD repeat domain 1 protein-coding 57 0.006788
+9949 AMMECR1 Alport syndrome, mental retardation, midface hypoplasia and elliptocytosis chromosomal region gene 1 protein-coding 46 0.005478
+9950 GOLGA5 golgin A5 protein-coding 83 0.009884
+9951 HS3ST4 heparan sulfate-glucosamine 3-sulfotransferase 4 protein-coding 79 0.009408
+9953 HS3ST3B1 heparan sulfate-glucosamine 3-sulfotransferase 3B1 protein-coding 37 0.004406
+9955 HS3ST3A1 heparan sulfate-glucosamine 3-sulfotransferase 3A1 protein-coding 59 0.007026
+9956 HS3ST2 heparan sulfate-glucosamine 3-sulfotransferase 2 protein-coding 56 0.006669
+9957 HS3ST1 heparan sulfate-glucosamine 3-sulfotransferase 1 protein-coding 56 0.006669
+9958 USP15 ubiquitin specific peptidase 15 protein-coding 128 0.01524
+9959 USP12P1 ubiquitin specific peptidase 12 pseudogene 1 pseudo 66 0.00786
+9960 USP3 ubiquitin specific peptidase 3 protein-coding 59 0.007026
+9961 MVP major vault protein protein-coding 100 0.01191
+9962 SLC23A2 solute carrier family 23 member 2 protein-coding 143 0.01703
+9963 SLC23A1 solute carrier family 23 member 1 protein-coding 143 0.01703
+9965 FGF19 fibroblast growth factor 19 protein-coding 17 0.002025
+9966 TNFSF15 TNF superfamily member 15 protein-coding 30 0.003573
+9967 THRAP3 thyroid hormone receptor associated protein 3 protein-coding 126 0.01501
+9968 MED12 mediator complex subunit 12 protein-coding 378 0.04502
+9969 MED13 mediator complex subunit 13 protein-coding 233 0.02775
+9970 NR1I3 nuclear receptor subfamily 1 group I member 3 protein-coding 58 0.006907
+9971 NR1H4 nuclear receptor subfamily 1 group H member 4 protein-coding 102 0.01215
+9972 NUP153 nucleoporin 153 protein-coding 151 0.01798
+9973 CCS copper chaperone for superoxide dismutase protein-coding 26 0.003096
+9975 NR1D2 nuclear receptor subfamily 1 group D member 2 protein-coding 63 0.007503
+9976 CLEC2B C-type lectin domain family 2 member B protein-coding 27 0.003215
+9978 RBX1 ring-box 1 protein-coding 11 0.00131
+9980 DOPEY2 dopey family member 2 protein-coding 217 0.02584
+9982 FGFBP1 fibroblast growth factor binding protein 1 protein-coding 24 0.002858
+9984 THOC1 THO complex 1 protein-coding 62 0.007384
+9985 REC8 REC8 meiotic recombination protein protein-coding 60 0.007145
+9986 RCE1 Ras converting CAAX endopeptidase 1 protein-coding 35 0.004168
+9987 HNRNPDL heterogeneous nuclear ribonucleoprotein D like protein-coding 69 0.008217
+9988 DMTF1 cyclin D binding myb like transcription factor 1 protein-coding 149 0.01774
+9989 PPP4R1 protein phosphatase 4 regulatory subunit 1 protein-coding 101 0.01203
+9990 SLC12A6 solute carrier family 12 member 6 protein-coding 121 0.01441
+9991 PTBP3 polypyrimidine tract binding protein 3 protein-coding 50 0.005955
+9992 KCNE2 potassium voltage-gated channel subfamily E regulatory subunit 2 protein-coding 28 0.003335
+9993 DGCR2 DiGeorge syndrome critical region gene 2 protein-coding 78 0.009289
+9994 CASP8AP2 caspase 8 associated protein 2 protein-coding 197 0.02346
+9997 SCO2 SCO2, cytochrome c oxidase assembly protein protein-coding 30 0.003573
+10000 AKT3 AKT serine/threonine kinase 3 protein-coding 90 0.01072
+10001 MED6 mediator complex subunit 6 protein-coding 30 0.003573
+10002 NR2E3 nuclear receptor subfamily 2 group E member 3 protein-coding 28 0.003335
+10003 NAALAD2 N-acetylated alpha-linked acidic dipeptidase 2 protein-coding 143 0.01703
+10004 NAALADL1 N-acetylated alpha-linked acidic dipeptidase like 1 protein-coding 87 0.01036
+10005 ACOT8 acyl-CoA thioesterase 8 protein-coding 39 0.004645
+10006 ABI1 abl interactor 1 protein-coding 42 0.005002
+10007 GNPDA1 glucosamine-6-phosphate deaminase 1 protein-coding 85 0.01012
+10008 KCNE3 potassium voltage-gated channel subfamily E regulatory subunit 3 protein-coding 21 0.002501
+10009 ZBTB33 zinc finger and BTB domain containing 33 protein-coding 92 0.01096
+10010 TANK TRAF family member associated NFKB activator protein-coding 109 0.01298
+10011 SRA1 steroid receptor RNA activator 1 protein-coding 16 0.001905
+10013 HDAC6 histone deacetylase 6 protein-coding 144 0.01715
+10014 HDAC5 histone deacetylase 5 protein-coding 98 0.01167
+10015 PDCD6IP programmed cell death 6 interacting protein protein-coding 79 0.009408
+10016 PDCD6 programmed cell death 6 protein-coding 57 0.006788
+10017 BCL2L10 BCL2 like 10 protein-coding 11 0.00131
+10018 BCL2L11 BCL2 like 11 protein-coding 42 0.005002
+10019 SH2B3 SH2B adaptor protein 3 protein-coding 42 0.005002
+10020 GNE glucosamine (UDP-N-acetyl)-2-epimerase/N-acetylmannosamine kinase protein-coding 72 0.008574
+10021 HCN4 hyperpolarization activated cyclic nucleotide gated potassium channel 4 protein-coding 140 0.01667
+10022 INSL5 insulin like 5 protein-coding 23 0.002739
+10023 FRAT1 FRAT1, WNT signaling pathway regulator protein-coding 6 0.0007145
+10024 TROAP trophinin associated protein protein-coding 82 0.009765
+10025 MED16 mediator complex subunit 16 protein-coding 82 0.009765
+10026 PIGK phosphatidylinositol glycan anchor biosynthesis class K protein-coding 59 0.007026
+10036 CHAF1A chromatin assembly factor 1 subunit A protein-coding 111 0.01322
+10038 PARP2 poly(ADP-ribose) polymerase 2 protein-coding 61 0.007264
+10039 PARP3 poly(ADP-ribose) polymerase family member 3 protein-coding 51 0.006074
+10040 TOM1L1 target of myb1 like 1 membrane trafficking protein protein-coding 53 0.006312
+10042 HMGXB4 HMG-box containing 4 protein-coding 59 0.007026
+10043 TOM1 target of myb1 membrane trafficking protein protein-coding 58 0.006907
+10044 SH2D3C SH2 domain containing 3C protein-coding 209 0.02489
+10045 SH2D3A SH2 domain containing 3A protein-coding 66 0.00786
+10046 MAMLD1 mastermind like domain containing 1 protein-coding 105 0.0125
+10047 CST8 cystatin 8 protein-coding 36 0.004287
+10048 RANBP9 RAN binding protein 9 protein-coding 55 0.00655
+10049 DNAJB6 DnaJ heat shock protein family (Hsp40) member B6 protein-coding 42 0.005002
+10050 SLC17A4 solute carrier family 17 member 4 protein-coding 101 0.01203
+10051 SMC4 structural maintenance of chromosomes 4 protein-coding 164 0.01953
+10052 GJC1 gap junction protein gamma 1 protein-coding 58 0.006907
+10053 AP1M2 adaptor related protein complex 1 mu 2 subunit protein-coding 52 0.006193
+10054 UBA2 ubiquitin like modifier activating enzyme 2 protein-coding 100 0.01191
+10055 SAE1 SUMO1 activating enzyme subunit 1 protein-coding 41 0.004883
+10056 FARSB phenylalanyl-tRNA synthetase beta subunit protein-coding 67 0.007979
+10057 ABCC5 ATP binding cassette subfamily C member 5 protein-coding 153 0.01822
+10058 ABCB6 ATP binding cassette subfamily B member 6 (Langereis blood group) protein-coding 95 0.01131
+10059 DNM1L dynamin 1 like protein-coding 65 0.007741
+10060 ABCC9 ATP binding cassette subfamily C member 9 protein-coding 253 0.03013
+10061 ABCF2 ATP binding cassette subfamily F member 2 protein-coding 66 0.00786
+10062 NR1H3 nuclear receptor subfamily 1 group H member 3 protein-coding 48 0.005716
+10063 COX17 COX17, cytochrome c oxidase copper chaperone protein-coding 9 0.001072
+10066 SCAMP2 secretory carrier membrane protein 2 protein-coding 30 0.003573
+10067 SCAMP3 secretory carrier membrane protein 3 protein-coding 45 0.005359
+10068 IL18BP interleukin 18 binding protein protein-coding 13 0.001548
+10069 RWDD2B RWD domain containing 2B protein-coding 39 0.004645
+10071 MUC12 mucin 12, cell surface associated protein-coding 38 0.004525
+10072 DPP3 dipeptidyl peptidase 3 protein-coding 87 0.01036
+10073 SNUPN snurportin 1 protein-coding 33 0.00393
+10075 HUWE1 HECT, UBA and WWE domain containing 1, E3 ubiquitin protein ligase protein-coding 448 0.05335
+10076 PTPRU protein tyrosine phosphatase, receptor type U protein-coding 304 0.0362
+10077 TSPAN32 tetraspanin 32 protein-coding 31 0.003692
+10078 TSSC4 tumor suppressing subtransferable candidate 4 protein-coding 33 0.00393
+10079 ATP9A ATPase phospholipid transporting 9A (putative) protein-coding 142 0.01691
+10081 PDCD7 programmed cell death 7 protein-coding 40 0.004764
+10082 GPC6 glypican 6 protein-coding 123 0.01465
+10083 USH1C USH1 protein network component harmonin protein-coding 136 0.0162
+10084 PQBP1 polyglutamine binding protein 1 protein-coding 38 0.004525
+10085 EDIL3 EGF like repeats and discoidin domains 3 protein-coding 109 0.01298
+10086 HHLA1 HERV-H LTR-associating 1 protein-coding 44 0.00524
+10087 COL4A3BP collagen type IV alpha 3 binding protein protein-coding 70 0.008336
+10089 KCNK7 potassium two pore domain channel subfamily K member 7 protein-coding 32 0.003811
+10090 UST uronyl 2-sulfotransferase protein-coding 61 0.007264
+10092 ARPC5 actin related protein 2/3 complex subunit 5 protein-coding 17 0.002025
+10093 ARPC4 actin related protein 2/3 complex subunit 4 protein-coding 12 0.001429
+10094 ARPC3 actin related protein 2/3 complex subunit 3 protein-coding 15 0.001786
+10095 ARPC1B actin related protein 2/3 complex subunit 1B protein-coding 36 0.004287
+10096 ACTR3 ARP3 actin related protein 3 homolog protein-coding 41 0.004883
+10097 ACTR2 ARP2 actin related protein 2 homolog protein-coding 43 0.005121
+10098 TSPAN5 tetraspanin 5 protein-coding 49 0.005835
+10099 TSPAN3 tetraspanin 3 protein-coding 23 0.002739
+10100 TSPAN2 tetraspanin 2 protein-coding 29 0.003454
+10101 NUBP2 nucleotide binding protein 2 protein-coding 37 0.004406
+10102 TSFM Ts translation elongation factor, mitochondrial protein-coding 27 0.003215
+10103 TSPAN1 tetraspanin 1 protein-coding 20 0.002382
+10105 PPIF peptidylprolyl isomerase F protein-coding 19 0.002263
+10106 CTDSP2 CTD small phosphatase 2 protein-coding 85 0.01012
+10107 TRIM10 tripartite motif containing 10 protein-coding 63 0.007503
+10109 ARPC2 actin related protein 2/3 complex subunit 2 protein-coding 39 0.004645
+10110 SGK2 SGK2, serine/threonine kinase 2 protein-coding 76 0.009051
+10111 RAD50 RAD50 double strand break repair protein protein-coding 137 0.01632
+10112 KIF20A kinesin family member 20A protein-coding 73 0.008694
+10113 PREB prolactin regulatory element binding protein-coding 46 0.005478
+10114 HIPK3 homeodomain interacting protein kinase 3 protein-coding 116 0.01381
+10116 FEM1B fem-1 homolog B protein-coding 64 0.007622
+10117 ENAM enamelin protein-coding 162 0.01929
+10120 ACTR1B ARP1 actin related protein 1 homolog B protein-coding 46 0.005478
+10121 ACTR1A ARP1 actin related protein 1 homolog A protein-coding 43 0.005121
+10123 ARL4C ADP ribosylation factor like GTPase 4C protein-coding 15 0.001786
+10124 ARL4A ADP ribosylation factor like GTPase 4A protein-coding 40 0.004764
+10125 RASGRP1 RAS guanyl releasing protein 1 protein-coding 85 0.01012
+10126 DNAL4 dynein axonemal light chain 4 protein-coding 14 0.001667
+10127 ZNF263 zinc finger protein 263 protein-coding 75 0.008932
+10128 LRPPRC leucine rich pentatricopeptide repeat containing protein-coding 123 0.01465
+10129 FRY FRY microtubule binding protein protein-coding 333 0.03966
+10130 PDIA6 protein disulfide isomerase family A member 6 protein-coding 48 0.005716
+10131 TRAP1 TNF receptor associated protein 1 protein-coding 68 0.008098
+10133 OPTN optineurin protein-coding 67 0.007979
+10134 BCAP31 B cell receptor associated protein 31 protein-coding 42 0.005002
+10135 NAMPT nicotinamide phosphoribosyltransferase protein-coding 46 0.005478
+10136 CELA3A chymotrypsin like elastase family member 3A protein-coding 41 0.004883
+10137 RBM12 RNA binding motif protein 12 protein-coding 83 0.009884
+10138 YAF2 YY1 associated factor 2 protein-coding 28 0.003335
+10139 ARFRP1 ADP ribosylation factor related protein 1 protein-coding 25 0.002977
+10140 TOB1 transducer of ERBB2, 1 protein-coding 42 0.005002
+10141 LINC01587 long intergenic non-protein coding RNA 1587 ncRNA 10 0.001191
+10142 AKAP9 A-kinase anchoring protein 9 protein-coding 363 0.04323
+10143 CLEC3A C-type lectin domain family 3 member A protein-coding 51 0.006074
+10144 FAM13A family with sequence similarity 13 member A protein-coding 118 0.01405
+10146 G3BP1 G3BP stress granule assembly factor 1 protein-coding 84 0.01
+10147 SUGP2 SURP and G-patch domain containing 2 protein-coding 105 0.0125
+10148 EBI3 Epstein-Barr virus induced 3 protein-coding 26 0.003096
+10149 ADGRG2 adhesion G protein-coupled receptor G2 protein-coding 132 0.01572
+10150 MBNL2 muscleblind like splicing regulator 2 protein-coding 44 0.00524
+10152 ABI2 abl interactor 2 protein-coding 57 0.006788
+10153 CEBPZ CCAAT enhancer binding protein zeta protein-coding 94 0.01119
+10154 PLXNC1 plexin C1 protein-coding 164 0.01953
+10155 TRIM28 tripartite motif containing 28 protein-coding 81 0.009646
+10156 RASA4 RAS p21 protein activator 4 protein-coding 18 0.002144
+10157 AASS aminoadipate-semialdehyde synthase protein-coding 133 0.01584
+10158 PDZK1IP1 PDZK1 interacting protein 1 protein-coding 20 0.002382
+10159 ATP6AP2 ATPase H+ transporting accessory protein 2 protein-coding 49 0.005835
+10160 FARP1 FERM, ARH/RhoGEF and pleckstrin domain protein 1 protein-coding 135 0.01608
+10161 LPAR6 lysophosphatidic acid receptor 6 protein-coding 34 0.004049
+10162 LPCAT3 lysophosphatidylcholine acyltransferase 3 protein-coding 50 0.005955
+10163 WASF2 WAS protein family member 2 protein-coding 63 0.007503
+10164 CHST4 carbohydrate sulfotransferase 4 protein-coding 57 0.006788
+10165 SLC25A13 solute carrier family 25 member 13 protein-coding 95 0.01131
+10166 SLC25A15 solute carrier family 25 member 15 protein-coding 111 0.01322
+10168 ZNF197 zinc finger protein 197 protein-coding 137 0.01632
+10169 SERF2 small EDRK-rich factor 2 protein-coding 15 0.001786
+10170 DHRS9 dehydrogenase/reductase 9 protein-coding 54 0.006431
+10171 RCL1 RNA terminal phosphate cyclase like 1 protein-coding 35 0.004168
+10172 ZNF256 zinc finger protein 256 protein-coding 76 0.009051
+10174 SORBS3 sorbin and SH3 domain containing 3 protein-coding 55 0.00655
+10175 CNIH1 cornichon family AMPA receptor auxiliary protein 1 protein-coding 21 0.002501
+10178 TENM1 teneurin transmembrane protein 1 protein-coding 454 0.05407
+10179 RBM7 RNA binding motif protein 7 protein-coding 35 0.004168
+10180 RBM6 RNA binding motif protein 6 protein-coding 121 0.01441
+10181 RBM5 RNA binding motif protein 5 protein-coding 86 0.01024
+10184 LHFPL2 LHFPL tetraspan subfamily member 2 protein-coding 13 0.001548
+10186 LHFPL6 LHFPL tetraspan subfamily member 6 protein-coding 30 0.003573
+10187 VDAC1P5 voltage dependent anion channel 1 pseudogene 5 pseudo 24 0.002858
+10188 TNK2 tyrosine kinase non receptor 2 protein-coding 110 0.0131
+10189 ALYREF Aly/REF export factor protein-coding 30 0.003573
+10190 TXNDC9 thioredoxin domain containing 9 protein-coding 19 0.002263
+10193 RNF41 ring finger protein 41 protein-coding 47 0.005597
+10194 TSHZ1 teashirt zinc finger homeobox 1 protein-coding 114 0.01358
+10195 ALG3 ALG3, alpha-1,3- mannosyltransferase protein-coding 41 0.004883
+10196 PRMT3 protein arginine methyltransferase 3 protein-coding 68 0.008098
+10197 PSME3 proteasome activator subunit 3 protein-coding 30 0.003573
+10198 MPHOSPH9 M-phase phosphoprotein 9 protein-coding 100 0.01191
+10199 MPHOSPH10 M-phase phosphoprotein 10 protein-coding 93 0.01108
+10200 MPHOSPH6 M-phase phosphoprotein 6 protein-coding 98 0.01167
+10201 NME6 NME/NM23 nucleoside diphosphate kinase 6 protein-coding 21 0.002501
+10202 DHRS2 dehydrogenase/reductase 2 protein-coding 43 0.005121
+10203 CALCRL calcitonin receptor like receptor protein-coding 91 0.01084
+10204 NUTF2 nuclear transport factor 2 protein-coding 19 0.002263
+10205 MPZL2 myelin protein zero like 2 protein-coding 24 0.002858
+10206 TRIM13 tripartite motif containing 13 protein-coding 46 0.005478
+10207 PATJ PATJ, crumbs cell polarity complex component protein-coding 205 0.02441
+10208 USPL1 ubiquitin specific peptidase like 1 protein-coding 97 0.01155
+10209 EIF1 eukaryotic translation initiation factor 1 protein-coding 19 0.002263
+10210 TOPORS TOP1 binding arginine/serine rich protein protein-coding 127 0.01512
+10211 FLOT1 flotillin 1 protein-coding 38 0.004525
+10212 DDX39A DExD-box helicase 39A protein-coding 42 0.005002
+10213 PSMD14 proteasome 26S subunit, non-ATPase 14 protein-coding 29 0.003454
+10214 SSX3 SSX family member 3 protein-coding 36 0.004287
+10215 OLIG2 oligodendrocyte transcription factor 2 protein-coding 33 0.00393
+10216 PRG4 proteoglycan 4 protein-coding 193 0.02298
+10217 CTDSPL CTD small phosphatase like protein-coding 28 0.003335
+10218 ANGPTL7 angiopoietin like 7 protein-coding 38 0.004525
+10219 KLRG1 killer cell lectin like receptor G1 protein-coding 35 0.004168
+10220 GDF11 growth differentiation factor 11 protein-coding 33 0.00393
+10221 TRIB1 tribbles pseudokinase 1 protein-coding 41 0.004883
+10223 GPA33 glycoprotein A33 protein-coding 60 0.007145
+10224 ZNF443 zinc finger protein 443 protein-coding 77 0.00917
+10225 CD96 CD96 molecule protein-coding 91 0.01084
+10226 PLIN3 perilipin 3 protein-coding 46 0.005478
+10227 MFSD10 major facilitator superfamily domain containing 10 protein-coding 36 0.004287
+10228 STX6 syntaxin 6 protein-coding 30 0.003573
+10229 COQ7 coenzyme Q7, hydroxylase protein-coding 98 0.01167
+10230 NBR2 neighbor of BRCA1 gene 2 (non-protein coding) ncRNA 17 0.002025
+10231 RCAN2 regulator of calcineurin 2 protein-coding 62 0.007384
+10232 MSLN mesothelin protein-coding 75 0.008932
+10233 LRRC23 leucine rich repeat containing 23 protein-coding 41 0.004883
+10234 LRRC17 leucine rich repeat containing 17 protein-coding 59 0.007026
+10235 RASGRP2 RAS guanyl releasing protein 2 protein-coding 86 0.01024
+10236 HNRNPR heterogeneous nuclear ribonucleoprotein R protein-coding 74 0.008813
+10237 SLC35B1 solute carrier family 35 member B1 protein-coding 42 0.005002
+10238 DCAF7 DDB1 and CUL4 associated factor 7 protein-coding 19 0.002263
+10239 AP3S2 adaptor related protein complex 3 sigma 2 subunit protein-coding 8 0.0009527
+10240 MRPS31 mitochondrial ribosomal protein S31 protein-coding 50 0.005955
+10241 CALCOCO2 calcium binding and coiled-coil domain 2 protein-coding 38 0.004525
+10242 KCNMB2 potassium calcium-activated channel subfamily M regulatory beta subunit 2 protein-coding 60 0.007145
+10243 GPHN gephyrin protein-coding 92 0.01096
+10244 RABEPK Rab9 effector protein with kelch motifs protein-coding 41 0.004883
+10245 TIMM17B translocase of inner mitochondrial membrane 17B protein-coding 31 0.003692
+10246 SLC17A2 solute carrier family 17 member 2 protein-coding 73 0.008694
+10247 RIDA reactive intermediate imine deaminase A homolog protein-coding 22 0.00262
+10248 POP7 POP7 homolog, ribonuclease P/MRP subunit protein-coding 19 0.002263
+10249 GLYAT glycine-N-acyltransferase protein-coding 61 0.007264
+10250 SRRM1 serine and arginine repetitive matrix 1 protein-coding 106 0.01262
+10251 SPRY3 sprouty RTK signaling antagonist 3 protein-coding 75 0.008932
+10252 SPRY1 sprouty RTK signaling antagonist 1 protein-coding 35 0.004168
+10253 SPRY2 sprouty RTK signaling antagonist 2 protein-coding 41 0.004883
+10254 STAM2 signal transducing adaptor molecule 2 protein-coding 51 0.006074
+10255 HCG9 HLA complex group 9 (non-protein coding) ncRNA 14 0.001667
+10256 CNKSR1 connector enhancer of kinase suppressor of Ras 1 protein-coding 98 0.01167
+10257 ABCC4 ATP binding cassette subfamily C member 4 protein-coding 163 0.01941
+10260 DENND4A DENN domain containing 4A protein-coding 162 0.01929
+10261 IGSF6 immunoglobulin superfamily member 6 protein-coding 28 0.003335
+10262 SF3B4 splicing factor 3b subunit 4 protein-coding 52 0.006193
+10263 CDK2AP2 cyclin dependent kinase 2 associated protein 2 protein-coding 12 0.001429
+10265 IRX5 iroquois homeobox 5 protein-coding 70 0.008336
+10266 RAMP2 receptor activity modifying protein 2 protein-coding 18 0.002144
+10267 RAMP1 receptor activity modifying protein 1 protein-coding 18 0.002144
+10268 RAMP3 receptor activity modifying protein 3 protein-coding 21 0.002501
+10269 ZMPSTE24 zinc metallopeptidase STE24 protein-coding 66 0.00786
+10270 AKAP8 A-kinase anchoring protein 8 protein-coding 75 0.008932
+10272 FSTL3 follistatin like 3 protein-coding 18 0.002144
+10273 STUB1 STIP1 homology and U-box containing protein 1 protein-coding 42 0.005002
+10274 STAG1 stromal antigen 1 protein-coding 171 0.02036
+10276 NET1 neuroepithelial cell transforming 1 protein-coding 55 0.00655
+10277 UBE4B ubiquitination factor E4B protein-coding 137 0.01632
+10278 EFS embryonal Fyn-associated substrate protein-coding 47 0.005597
+10279 PRSS16 serine protease 16 protein-coding 68 0.008098
+10280 SIGMAR1 sigma non-opioid intracellular receptor 1 protein-coding 17 0.002025
+10281 DSCR4 Down syndrome critical region 4 ncRNA 19 0.002263
+10282 BET1 Bet1 golgi vesicular membrane trafficking protein protein-coding 17 0.002025
+10283 CWC27 CWC27 spliceosome associated protein homolog protein-coding 71 0.008455
+10284 SAP18 Sin3A associated protein 18 protein-coding 20 0.002382
+10285 SMNDC1 survival motor neuron domain containing 1 protein-coding 17 0.002025
+10286 BCAS2 BCAS2, pre-mRNA processing factor protein-coding 27 0.003215
+10287 RGS19 regulator of G protein signaling 19 protein-coding 26 0.003096
+10288 LILRB2 leukocyte immunoglobulin like receptor B2 protein-coding 119 0.01417
+10289 EIF1B eukaryotic translation initiation factor 1B protein-coding 16 0.001905
+10290 SPEG SPEG complex locus protein-coding 295 0.03513
+10291 SF3A1 splicing factor 3a subunit 1 protein-coding 64 0.007622
+10293 TRAIP TRAF interacting protein protein-coding 54 0.006431
+10294 DNAJA2 DnaJ heat shock protein family (Hsp40) member A2 protein-coding 51 0.006074
+10295 BCKDK branched chain ketoacid dehydrogenase kinase protein-coding 52 0.006193
+10296 MAEA macrophage erythroblast attacher protein-coding 57 0.006788
+10297 APC2 APC2, WNT signaling pathway regulator protein-coding 94 0.01119
+10298 PAK4 p21 (RAC1) activated kinase 4 protein-coding 64 0.007622
+10299 MARCH6 membrane associated ring-CH-type finger 6 protein-coding 108 0.01286
+10300 KATNB1 katanin regulatory subunit B1 protein-coding 64 0.007622
+10301 DLEU1 deleted in lymphocytic leukemia 1 (non-protein coding) ncRNA 3 0.0003573
+10302 SNAPC5 small nuclear RNA activating complex polypeptide 5 protein-coding 7 0.0008336
+10305 MMDK Mesomelic dysplasia, Kantaputra type unknown 13 0.001548
+10307 APBB3 amyloid beta precursor protein binding family B member 3 protein-coding 61 0.007264
+10308 ZNF267 zinc finger protein 267 protein-coding 115 0.0137
+10309 CCNO cyclin O protein-coding 21 0.002501
+10311 VPS26C VPS26 endosomal protein sorting factor C protein-coding 40 0.004764
+10312 TCIRG1 T cell immune regulator 1, ATPase H+ transporting V0 subunit a3 protein-coding 68 0.008098
+10313 RTN3 reticulon 3 protein-coding 97 0.01155
+10314 LANCL1 LanC like 1 protein-coding 36 0.004287
+10316 NMUR1 neuromedin U receptor 1 protein-coding 56 0.006669
+10317 B3GALT5 beta-1,3-galactosyltransferase 5 protein-coding 40 0.004764
+10318 TNIP1 TNFAIP3 interacting protein 1 protein-coding 126 0.01501
+10319 LAMC3 laminin subunit gamma 3 protein-coding 187 0.02227
+10320 IKZF1 IKAROS family zinc finger 1 protein-coding 95 0.01131
+10321 CRISP3 cysteine rich secretory protein 3 protein-coding 59 0.007026
+10322 SMYD5 SMYD family member 5 protein-coding 48 0.005716
+10324 KLHL41 kelch like family member 41 protein-coding 75 0.008932
+10325 RRAGB Ras related GTP binding B protein-coding 62 0.007384
+10326 SIRPB1 signal regulatory protein beta 1 protein-coding 62 0.007384
+10327 AKR1A1 aldo-keto reductase family 1 member A1 protein-coding 32 0.003811
+10328 EMC8 ER membrane protein complex subunit 8 protein-coding 14 0.001667
+10329 RXYLT1 ribitol xylosyltransferase 1 protein-coding 56 0.006669
+10330 CNPY2 canopy FGF signaling regulator 2 protein-coding 23 0.002739
+10331 B3GNT3 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 3 protein-coding 51 0.006074
+10332 CLEC4M C-type lectin domain family 4 member M protein-coding 55 0.00655
+10333 TLR6 toll like receptor 6 protein-coding 82 0.009765
+10335 MRVI1 murine retrovirus integration site 1 homolog protein-coding 109 0.01298
+10336 PCGF3 polycomb group ring finger 3 protein-coding 44 0.00524
+10342 TFG TRK-fused gene protein-coding 53 0.006312
+10343 PKDREJ polycystin family receptor for egg jelly protein-coding 191 0.02275
+10344 CCL26 C-C motif chemokine ligand 26 protein-coding 12 0.001429
+10345 TRDN triadin protein-coding 127 0.01512
+10346 TRIM22 tripartite motif containing 22 protein-coding 75 0.008932
+10347 ABCA7 ATP binding cassette subfamily A member 7 protein-coding 191 0.02275
+10349 ABCA10 ATP binding cassette subfamily A member 10 protein-coding 204 0.02429
+10350 ABCA9 ATP binding cassette subfamily A member 9 protein-coding 213 0.02537
+10351 ABCA8 ATP binding cassette subfamily A member 8 protein-coding 203 0.02418
+10352 WARS2 tryptophanyl tRNA synthetase 2, mitochondrial protein-coding 64 0.007622
+10354 HMGB1P5 high mobility group box 1 pseudogene 5 pseudo 32 0.003811
+10360 NPM3 nucleophosmin/nucleoplasmin 3 protein-coding 43 0.005121
+10361 NPM2 nucleophosmin/nucleoplasmin 2 protein-coding 27 0.003215
+10362 HMG20B high mobility group 20B protein-coding 31 0.003692
+10363 HMG20A high mobility group 20A protein-coding 58 0.006907
+10365 KLF2 Kruppel like factor 2 protein-coding 11 0.00131
+10367 MICU1 mitochondrial calcium uptake 1 protein-coding 44 0.00524
+10368 CACNG3 calcium voltage-gated channel auxiliary subunit gamma 3 protein-coding 88 0.01048
+10369 CACNG2 calcium voltage-gated channel auxiliary subunit gamma 2 protein-coding 44 0.00524
+10370 CITED2 Cbp/p300 interacting transactivator with Glu/Asp rich carboxy-terminal domain 2 protein-coding 29 0.003454
+10371 SEMA3A semaphorin 3A protein-coding 161 0.01917
+10376 TUBA1B tubulin alpha 1b protein-coding 32 0.003811
+10379 IRF9 interferon regulatory factor 9 protein-coding 45 0.005359
+10380 BPNT1 3'(2'), 5'-bisphosphate nucleotidase 1 protein-coding 70 0.008336
+10381 TUBB3 tubulin beta 3 class III protein-coding 61 0.007264
+10382 TUBB4A tubulin beta 4A class IVa protein-coding 85 0.01012
+10383 TUBB4B tubulin beta 4B class IVb protein-coding 48 0.005716
+10384 BTN3A3 butyrophilin subfamily 3 member A3 protein-coding 90 0.01072
+10385 BTN2A2 butyrophilin subfamily 2 member A2 protein-coding 83 0.009884
+10388 SYCP2 synaptonemal complex protein 2 protein-coding 243 0.02894
+10389 SCML2 Scm polycomb group protein like 2 protein-coding 93 0.01108
+10390 CEPT1 choline/ethanolamine phosphotransferase 1 protein-coding 43 0.005121
+10391 CORO2B coronin 2B protein-coding 75 0.008932
+10392 NOD1 nucleotide binding oligomerization domain containing 1 protein-coding 104 0.01239
+10393 ANAPC10 anaphase promoting complex subunit 10 protein-coding 18 0.002144
+10394 PRG3 proteoglycan 3, pro eosinophil major basic protein 2 protein-coding 33 0.00393
+10395 DLC1 DLC1 Rho GTPase activating protein protein-coding 286 0.03406
+10396 ATP8A1 ATPase phospholipid transporting 8A1 protein-coding 140 0.01667
+10397 NDRG1 N-myc downstream regulated 1 protein-coding 90 0.01072
+10398 MYL9 myosin light chain 9 protein-coding 29 0.003454
+10399 RACK1 receptor for activated C kinase 1 protein-coding 35 0.004168
+10400 PEMT phosphatidylethanolamine N-methyltransferase protein-coding 21 0.002501
+10401 PIAS3 protein inhibitor of activated STAT 3 protein-coding 66 0.00786
+10402 ST3GAL6 ST3 beta-galactoside alpha-2,3-sialyltransferase 6 protein-coding 58 0.006907
+10403 NDC80 NDC80, kinetochore complex component protein-coding 80 0.009527
+10404 CPQ carboxypeptidase Q protein-coding 89 0.0106
+10406 WFDC2 WAP four-disulfide core domain 2 protein-coding 12 0.001429
+10407 SPAG11B sperm associated antigen 11B protein-coding 27 0.003215
+10409 BASP1 brain abundant membrane attached signal protein 1 protein-coding 32 0.003811
+10410 IFITM3 interferon induced transmembrane protein 3 protein-coding 12 0.001429
+10411 RAPGEF3 Rap guanine nucleotide exchange factor 3 protein-coding 80 0.009527
+10412 NSA2 NSA2, ribosome biogenesis homolog protein-coding 28 0.003335
+10413 YAP1 Yes associated protein 1 protein-coding 48 0.005716
+10417 SPON2 spondin 2 protein-coding 27 0.003215
+10418 SPON1 spondin 1 protein-coding 64 0.007622
+10419 PRMT5 protein arginine methyltransferase 5 protein-coding 56 0.006669
+10420 TESK2 testis associated actin remodelling kinase 2 protein-coding 73 0.008694
+10421 CD2BP2 CD2 cytoplasmic tail binding protein 2 protein-coding 46 0.005478
+10422 UBAC1 UBA domain containing 1 protein-coding 39 0.004645
+10423 CDIPT CDP-diacylglycerol--inositol 3-phosphatidyltransferase protein-coding 24 0.002858
+10424 PGRMC2 progesterone receptor membrane component 2 protein-coding 13 0.001548
+10425 ARIH2 ariadne RBR E3 ubiquitin protein ligase 2 protein-coding 62 0.007384
+10426 TUBGCP3 tubulin gamma complex associated protein 3 protein-coding 108 0.01286
+10427 SEC24B SEC24 homolog B, COPII coat complex component protein-coding 123 0.01465
+10428 CFDP1 craniofacial development protein 1 protein-coding 21 0.002501
+10430 TMEM147 transmembrane protein 147 protein-coding 22 0.00262
+10432 RBM14 RNA binding motif protein 14 protein-coding 63 0.007503
+10434 LYPLA1 lysophospholipase I protein-coding 17 0.002025
+10435 CDC42EP2 CDC42 effector protein 2 protein-coding 16 0.001905
+10436 EMG1 EMG1, N1-specific pseudouridine methyltransferase protein-coding 23 0.002739
+10437 IFI30 IFI30, lysosomal thiol reductase protein-coding 25 0.002977
+10438 C1D C1D nuclear receptor corepressor protein-coding 405 0.04823
+10439 OLFM1 olfactomedin 1 protein-coding 91 0.01084
+10440 TIMM17A translocase of inner mitochondrial membrane 17A protein-coding 28 0.003335
+10443 N4BP2L2 NEDD4 binding protein 2 like 2 protein-coding 92 0.01096
+10444 ZER1 zyg-11 related cell cycle regulator protein-coding 66 0.00786
+10445 MCRS1 microspherule protein 1 protein-coding 59 0.007026
+10446 LRRN2 leucine rich repeat neuronal 2 protein-coding 107 0.01274
+10447 FAM3C family with sequence similarity 3 member C protein-coding 26 0.003096
+10449 ACAA2 acetyl-CoA acyltransferase 2 protein-coding 38 0.004525
+10450 PPIE peptidylprolyl isomerase E protein-coding 40 0.004764
+10451 VAV3 vav guanine nucleotide exchange factor 3 protein-coding 133 0.01584
+10452 TOMM40 translocase of outer mitochondrial membrane 40 protein-coding 18 0.002144
+10454 TAB1 TGF-beta activated kinase 1 (MAP3K7) binding protein 1 protein-coding 59 0.007026
+10455 ECI2 enoyl-CoA delta isomerase 2 protein-coding 58 0.006907
+10456 HAX1 HCLS1 associated protein X-1 protein-coding 48 0.005716
+10457 GPNMB glycoprotein nmb protein-coding 87 0.01036
+10458 BAIAP2 BAI1 associated protein 2 protein-coding 66 0.00786
+10459 MAD2L2 mitotic arrest deficient 2 like 2 protein-coding 21 0.002501
+10460 TACC3 transforming acidic coiled-coil containing protein 3 protein-coding 82 0.009765
+10461 MERTK MER proto-oncogene, tyrosine kinase protein-coding 114 0.01358
+10462 CLEC10A C-type lectin domain containing 10A protein-coding 33 0.00393
+10463 SLC30A9 solute carrier family 30 member 9 protein-coding 77 0.00917
+10464 PIBF1 progesterone immunomodulatory binding factor 1 protein-coding 97 0.01155
+10465 PPIH peptidylprolyl isomerase H protein-coding 16 0.001905
+10466 COG5 component of oligomeric golgi complex 5 protein-coding 99 0.01179
+10467 ZNHIT1 zinc finger HIT-type containing 1 protein-coding 35 0.004168
+10468 FST follistatin protein-coding 44 0.00524
+10469 TIMM44 translocase of inner mitochondrial membrane 44 protein-coding 52 0.006193
+10471 PFDN6 prefoldin subunit 6 protein-coding 11 0.00131
+10472 ZBTB18 zinc finger and BTB domain containing 18 protein-coding 76 0.009051
+10473 HMGN4 high mobility group nucleosomal binding domain 4 protein-coding 14 0.001667
+10474 TADA3 transcriptional adaptor 3 protein-coding 48 0.005716
+10475 TRIM38 tripartite motif containing 38 protein-coding 60 0.007145
+10476 ATP5PD ATP synthase peripheral stalk subunit d protein-coding 14 0.001667
+10477 UBE2E3 ubiquitin conjugating enzyme E2 E3 protein-coding 37 0.004406
+10478 SLC25A17 solute carrier family 25 member 17 protein-coding 33 0.00393
+10479 SLC9A6 solute carrier family 9 member A6 protein-coding 89 0.0106
+10480 EIF3M eukaryotic translation initiation factor 3 subunit M protein-coding 45 0.005359
+10481 HOXB13 homeobox B13 protein-coding 47 0.005597
+10482 NXF1 nuclear RNA export factor 1 protein-coding 97 0.01155
+10483 SEC23B Sec23 homolog B, coat complex II component protein-coding 91 0.01084
+10484 SEC23A Sec23 homolog A, coat complex II component protein-coding 97 0.01155
+10485 C1orf61 chromosome 1 open reading frame 61 protein-coding 22 0.00262
+10486 CAP2 cyclase associated actin cytoskeleton regulatory protein 2 protein-coding 48 0.005716
+10487 CAP1 cyclase associated actin cytoskeleton regulatory protein 1 protein-coding 51 0.006074
+10488 CREB3 cAMP responsive element binding protein 3 protein-coding 47 0.005597
+10489 LRRC41 leucine rich repeat containing 41 protein-coding 79 0.009408
+10490 VTI1B vesicle transport through interaction with t-SNAREs 1B protein-coding 28 0.003335
+10491 CRTAP cartilage associated protein protein-coding 26 0.003096
+10492 SYNCRIP synaptotagmin binding cytoplasmic RNA interacting protein protein-coding 93 0.01108
+10493 VAT1 vesicle amine transport 1 protein-coding 27 0.003215
+10494 STK25 serine/threonine kinase 25 protein-coding 37 0.004406
+10495 ENOX2 ecto-NOX disulfide-thiol exchanger 2 protein-coding 106 0.01262
+10497 UNC13B unc-13 homolog B protein-coding 165 0.01965
+10498 CARM1 coactivator associated arginine methyltransferase 1 protein-coding 47 0.005597
+10499 NCOA2 nuclear receptor coactivator 2 protein-coding 299 0.03561
+10500 SEMA6C semaphorin 6C protein-coding 95 0.01131
+10501 SEMA6B semaphorin 6B protein-coding 83 0.009884
+10505 SEMA4F ssemaphorin 4F protein-coding 96 0.01143
+10507 SEMA4D semaphorin 4D protein-coding 86 0.01024
+10509 SEMA4B semaphorin 4B protein-coding 76 0.009051
+10512 SEMA3C semaphorin 3C protein-coding 141 0.01679
+10513 APPBP2 amyloid beta precursor protein binding protein 2 protein-coding 57 0.006788
+10514 MYBBP1A MYB binding protein 1a protein-coding 107 0.01274
+10516 FBLN5 fibulin 5 protein-coding 55 0.00655
+10517 FBXW10 F-box and WD repeat domain containing 10 protein-coding 106 0.01262
+10518 CIB2 calcium and integrin binding family member 2 protein-coding 22 0.00262
+10519 CIB1 calcium and integrin binding 1 protein-coding 17 0.002025
+10520 ZNF211 zinc finger protein 211 protein-coding 76 0.009051
+10521 DDX17 DEAD-box helicase 17 protein-coding 86 0.01024
+10522 DEAF1 DEAF1, transcription factor protein-coding 107 0.01274
+10523 CHERP calcium homeostasis endoplasmic reticulum protein protein-coding 103 0.01227
+10524 KAT5 lysine acetyltransferase 5 protein-coding 59 0.007026
+10525 HYOU1 hypoxia up-regulated 1 protein-coding 108 0.01286
+10526 IPO8 importin 8 protein-coding 120 0.01429
+10527 IPO7 importin 7 protein-coding 127 0.01512
+10528 NOP56 NOP56 ribonucleoprotein protein-coding 74 0.008813
+10529 NEBL nebulette protein-coding 157 0.0187
+10531 PITRM1 pitrilysin metallopeptidase 1 protein-coding 87 0.01036
+10533 ATG7 autophagy related 7 protein-coding 74 0.008813
+10534 SSSCA1 Sjogren syndrome/scleroderma autoantigen 1 protein-coding 15 0.001786
+10535 RNASEH2A ribonuclease H2 subunit A protein-coding 32 0.003811
+10536 P3H3 prolyl 3-hydroxylase 3 protein-coding 75 0.008932
+10537 UBD ubiquitin D protein-coding 30 0.003573
+10538 BATF basic leucine zipper ATF-like transcription factor protein-coding 23 0.002739
+10539 GLRX3 glutaredoxin 3 protein-coding 53 0.006312
+10540 DCTN2 dynactin subunit 2 protein-coding 36 0.004287
+10541 ANP32B acidic nuclear phosphoprotein 32 family member B protein-coding 23 0.002739
+10542 LAMTOR5 late endosomal/lysosomal adaptor, MAPK and MTOR activator 5 protein-coding 22 0.00262
+10544 PROCR protein C receptor protein-coding 32 0.003811
+10548 TM9SF1 transmembrane 9 superfamily member 1 protein-coding 57 0.006788
+10549 PRDX4 peroxiredoxin 4 protein-coding 37 0.004406
+10550 ARL6IP5 ADP ribosylation factor like GTPase 6 interacting protein 5 protein-coding 21 0.002501
+10551 AGR2 anterior gradient 2, protein disulphide isomerase family member protein-coding 23 0.002739
+10552 ARPC1A actin related protein 2/3 complex subunit 1A protein-coding 51 0.006074
+10553 HTATIP2 HIV-1 Tat interactive protein 2 protein-coding 22 0.00262
+10554 AGPAT1 1-acylglycerol-3-phosphate O-acyltransferase 1 protein-coding 32 0.003811
+10555 AGPAT2 1-acylglycerol-3-phosphate O-acyltransferase 2 protein-coding 24 0.002858
+10556 RPP30 ribonuclease P/MRP subunit p30 protein-coding 26 0.003096
+10557 RPP38 ribonuclease P/MRP subunit p38 protein-coding 33 0.00393
+10558 SPTLC1 serine palmitoyltransferase long chain base subunit 1 protein-coding 56 0.006669
+10559 SLC35A1 solute carrier family 35 member A1 protein-coding 23 0.002739
+10560 SLC19A2 solute carrier family 19 member 2 protein-coding 43 0.005121
+10561 IFI44 interferon induced protein 44 protein-coding 68 0.008098
+10562 OLFM4 olfactomedin 4 protein-coding 98 0.01167
+10563 CXCL13 C-X-C motif chemokine ligand 13 protein-coding 13 0.001548
+10564 ARFGEF2 ADP ribosylation factor guanine nucleotide exchange factor 2 protein-coding 197 0.02346
+10565 ARFGEF1 ADP ribosylation factor guanine nucleotide exchange factor 1 protein-coding 215 0.0256
+10566 AKAP3 A-kinase anchoring protein 3 protein-coding 137 0.01632
+10567 RABAC1 Rab acceptor 1 protein-coding 17 0.002025
+10568 SLC34A2 solute carrier family 34 member 2 protein-coding 101 0.01203
+10569 SLU7 SLU7 homolog, splicing factor protein-coding 70 0.008336
+10570 DPYSL4 dihydropyrimidinase like 4 protein-coding 93 0.01108
+10572 SIVA1 SIVA1 apoptosis inducing factor protein-coding 14 0.001667
+10573 MRPL28 mitochondrial ribosomal protein L28 protein-coding 26 0.003096
+10574 CCT7 chaperonin containing TCP1 subunit 7 protein-coding 57 0.006788
+10575 CCT4 chaperonin containing TCP1 subunit 4 protein-coding 49 0.005835
+10576 CCT2 chaperonin containing TCP1 subunit 2 protein-coding 66 0.00786
+10577 NPC2 NPC intracellular cholesterol transporter 2 protein-coding 13 0.001548
+10578 GNLY granulysin protein-coding 20 0.002382
+10579 TACC2 transforming acidic coiled-coil containing protein 2 protein-coding 260 0.03096
+10580 SORBS1 sorbin and SH3 domain containing 1 protein-coding 124 0.01477
+10581 IFITM2 interferon induced transmembrane protein 2 protein-coding 12 0.001429
+10584 COLEC10 collectin subfamily member 10 protein-coding 41 0.004883
+10585 POMT1 protein O-mannosyltransferase 1 protein-coding 73 0.008694
+10586 MAB21L2 mab-21 like 2 protein-coding 65 0.007741
+10587 TXNRD2 thioredoxin reductase 2 protein-coding 47 0.005597
+10589 DRAP1 DR1 associated protein 1 protein-coding 26 0.003096
+10590 SCGN secretagogin, EF-hand calcium binding protein protein-coding 52 0.006193
+10591 DNPH1 2'-deoxynucleoside 5'-phosphate N-hydrolase 1 protein-coding 8 0.0009527
+10592 SMC2 structural maintenance of chromosomes 2 protein-coding 152 0.0181
+10594 PRPF8 pre-mRNA processing factor 8 protein-coding 192 0.02287
+10595 ERN2 endoplasmic reticulum to nucleus signaling 2 protein-coding 152 0.0181
+10597 TRAPPC2B trafficking protein particle complex 2B protein-coding 27 0.003215
+10598 AHSA1 activator of HSP90 ATPase activity 1 protein-coding 43 0.005121
+10599 SLCO1B1 solute carrier organic anion transporter family member 1B1 protein-coding 149 0.01774
+10600 USP16 ubiquitin specific peptidase 16 protein-coding 87 0.01036
+10602 CDC42EP3 CDC42 effector protein 3 protein-coding 22 0.00262
+10603 SH2B2 SH2B adaptor protein 2 protein-coding 44 0.00524
+10605 PAIP1 poly(A) binding protein interacting protein 1 protein-coding 63 0.007503
+10606 PAICS phosphoribosylaminoimidazole carboxylase and phosphoribosylaminoimidazolesuccinocarboxamide synthase protein-coding 28 0.003335
+10607 TBL3 transducin beta like 3 protein-coding 71 0.008455
+10608 MXD4 MAX dimerization protein 4 protein-coding 16 0.001905
+10609 P3H4 prolyl 3-hydroxylase family member 4 (non-enzymatic) protein-coding 31 0.003692
+10610 ST6GALNAC2 ST6 N-acetylgalactosaminide alpha-2,6-sialyltransferase 2 protein-coding 37 0.004406
+10611 PDLIM5 PDZ and LIM domain 5 protein-coding 62 0.007384
+10612 TRIM3 tripartite motif containing 3 protein-coding 99 0.01179
+10613 ERLIN1 ER lipid raft associated 1 protein-coding 32 0.003811
+10614 HEXIM1 hexamethylene bisacetamide inducible 1 protein-coding 93 0.01108
+10615 SPAG5 sperm associated antigen 5 protein-coding 109 0.01298
+10616 RBCK1 RANBP2-type and C3HC4-type zinc finger containing 1 protein-coding 44 0.00524
+10617 STAMBP STAM binding protein protein-coding 47 0.005597
+10618 TGOLN2 trans-golgi network protein 2 protein-coding 51 0.006074
+10620 ARID3B AT-rich interaction domain 3B protein-coding 62 0.007384
+10621 POLR3F RNA polymerase III subunit F protein-coding 24 0.002858
+10622 POLR3G RNA polymerase III subunit G protein-coding 30 0.003573
+10623 POLR3C RNA polymerase III subunit C protein-coding 49 0.005835
+10625 IVNS1ABP influenza virus NS1A binding protein protein-coding 84 0.01
+10626 TRIM16 tripartite motif containing 16 protein-coding 27 0.003215
+10627 MYL12A myosin light chain 12A protein-coding 15 0.001786
+10628 TXNIP thioredoxin interacting protein protein-coding 67 0.007979
+10629 TAF6L TATA-box binding protein associated factor 6 like protein-coding 61 0.007264
+10630 PDPN podoplanin protein-coding 41 0.004883
+10631 POSTN periostin protein-coding 184 0.02191
+10632 ATP5MG ATP synthase membrane subunit g protein-coding 18 0.002144
+10633 RASL10A RAS like family 10 member A protein-coding 11 0.00131
+10634 GAS2L1 growth arrest specific 2 like 1 protein-coding 31 0.003692
+10635 RAD51AP1 RAD51 associated protein 1 protein-coding 46 0.005478
+10636 RGS14 regulator of G protein signaling 14 protein-coding 55 0.00655
+10637 LEFTY1 left-right determination factor 1 protein-coding 32 0.003811
+10638 SPHAR S-phase response (cyclin related) protein-coding 9 0.001072
+10640 EXOC5 exocyst complex component 5 protein-coding 68 0.008098
+10641 NPRL2 NPR2 like, GATOR1 complex subunit protein-coding 139 0.01655
+10642 IGF2BP1 insulin like growth factor 2 mRNA binding protein 1 protein-coding 184 0.02191
+10643 IGF2BP3 insulin like growth factor 2 mRNA binding protein 3 protein-coding 88 0.01048
+10644 IGF2BP2 insulin like growth factor 2 mRNA binding protein 2 protein-coding 66 0.00786
+10645 CAMKK2 calcium/calmodulin dependent protein kinase kinase 2 protein-coding 65 0.007741
+10647 SCGB1D2 secretoglobin family 1D member 2 protein-coding 16 0.001905
+10648 SCGB1D1 secretoglobin family 1D member 1 protein-coding 55 0.00655
+10650 PRELID3A PRELI domain containing 3A protein-coding 14 0.001667
+10651 MTX2 metaxin 2 protein-coding 26 0.003096
+10652 YKT6 YKT6 v-SNARE homolog protein-coding 19 0.002263
+10653 SPINT2 serine peptidase inhibitor, Kunitz type 2 protein-coding 36 0.004287
+10654 PMVK phosphomevalonate kinase protein-coding 23 0.002739
+10655 DMRT2 doublesex and mab-3 related transcription factor 2 protein-coding 56 0.006669
+10656 KHDRBS3 KH RNA binding domain containing, signal transduction associated 3 protein-coding 63 0.007503
+10657 KHDRBS1 KH RNA binding domain containing, signal transduction associated 1 protein-coding 37 0.004406
+10658 CELF1 CUGBP Elav-like family member 1 protein-coding 53 0.006312
+10659 CELF2 CUGBP Elav-like family member 2 protein-coding 68 0.008098
+10660 LBX1 ladybird homeobox 1 protein-coding 22 0.00262
+10661 KLF1 Kruppel like factor 1 protein-coding 16 0.001905
+10663 CXCR6 C-X-C motif chemokine receptor 6 protein-coding 31 0.003692
+10664 CTCF CCCTC-binding factor protein-coding 224 0.02668
+10665 C6orf10 chromosome 6 open reading frame 10 protein-coding 62 0.007384
+10666 CD226 CD226 molecule protein-coding 66 0.00786
+10667 FARS2 phenylalanyl-tRNA synthetase 2, mitochondrial protein-coding 50 0.005955
+10668 CGRRF1 cell growth regulator with ring finger domain 1 protein-coding 30 0.003573
+10669 CGREF1 cell growth regulator with EF-hand domain 1 protein-coding 24 0.002858
+10670 RRAGA Ras related GTP binding A protein-coding 30 0.003573
+10671 DCTN6 dynactin subunit 6 protein-coding 20 0.002382
+10672 GNA13 G protein subunit alpha 13 protein-coding 58 0.006907
+10673 TNFSF13B TNF superfamily member 13b protein-coding 91 0.01084
+10675 CSPG5 chondroitin sulfate proteoglycan 5 protein-coding 54 0.006431
+10677 AVIL advillin protein-coding 72 0.008574
+10678 B3GNT2 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 2 protein-coding 88 0.01048
+10681 GNB5 G protein subunit beta 5 protein-coding 47 0.005597
+10682 EBP emopamil binding protein (sterol isomerase) protein-coding 27 0.003215
+10683 DLL3 delta like canonical Notch ligand 3 protein-coding 64 0.007622
+10686 CLDN16 claudin 16 protein-coding 62 0.007384
+10687 PNMA2 PNMA family member 2 protein-coding 60 0.007145
+10690 FUT9 fucosyltransferase 9 protein-coding 109 0.01298
+10691 GMEB1 glucocorticoid modulatory element binding protein 1 protein-coding 44 0.00524
+10692 RRH retinal pigment epithelium-derived rhodopsin homolog protein-coding 39 0.004645
+10693 CCT6B chaperonin containing TCP1 subunit 6B protein-coding 74 0.008813
+10694 CCT8 chaperonin containing TCP1 subunit 8 protein-coding 38 0.004525
+10695 CNPY3 canopy FGF signaling regulator 3 protein-coding 21 0.002501
+10699 CORIN corin, serine peptidase protein-coding 141 0.01679
+10712 FAM189B family with sequence similarity 189 member B protein-coding 56 0.006669
+10713 USP39 ubiquitin specific peptidase 39 protein-coding 42 0.005002
+10714 POLD3 DNA polymerase delta 3, accessory subunit protein-coding 53 0.006312
+10715 CERS1 ceramide synthase 1 protein-coding 23 0.002739
+10716 TBR1 T-box, brain 1 protein-coding 79 0.009408
+10717 AP4B1 adaptor related protein complex 4 beta 1 subunit protein-coding 83 0.009884
+10718 NRG3 neuregulin 3 protein-coding 184 0.02191
+10720 UGT2B11 UDP glucuronosyltransferase family 2 member B11 protein-coding 106 0.01262
+10721 POLQ DNA polymerase theta protein-coding 314 0.03739
+10723 SLC12A7 solute carrier family 12 member 7 protein-coding 161 0.01917
+10724 MGEA5 meningioma expressed antigen 5 (hyaluronidase) protein-coding 86 0.01024
+10725 NFAT5 nuclear factor of activated T cells 5 protein-coding 120 0.01429
+10726 NUDC nuclear distribution C, dynein complex regulator protein-coding 32 0.003811
+10728 PTGES3 prostaglandin E synthase 3 protein-coding 13 0.001548
+10730 YME1L1 YME1 like 1 ATPase protein-coding 108 0.01286
+10732 TCFL5 transcription factor like 5 protein-coding 52 0.006193
+10733 PLK4 polo like kinase 4 protein-coding 98 0.01167
+10734 STAG3 stromal antigen 3 protein-coding 129 0.01536
+10735 STAG2 stromal antigen 2 protein-coding 227 0.02703
+10736 SIX2 SIX homeobox 2 protein-coding 44 0.00524
+10737 RFPL3S RFPL3 antisense ncRNA 7 0.0008336
+10738 RFPL3 ret finger protein like 3 protein-coding 63 0.007503
+10739 RFPL2 ret finger protein like 2 protein-coding 58 0.006907
+10741 RBBP9 RB binding protein 9, serine hydrolase protein-coding 22 0.00262
+10742 RAI2 retinoic acid induced 2 protein-coding 80 0.009527
+10743 RAI1 retinoic acid induced 1 protein-coding 222 0.02644
+10744 PTTG2 pituitary tumor-transforming 2 protein-coding 22 0.00262
+10745 PHTF1 putative homeodomain transcription factor 1 protein-coding 81 0.009646
+10746 MAP3K2 mitogen-activated protein kinase kinase kinase 2 protein-coding 66 0.00786
+10747 MASP2 mannan binding lectin serine peptidase 2 protein-coding 81 0.009646
+10748 KLRA1P killer cell lectin like receptor A1, pseudogene pseudo 27 0.003215
+10749 KIF1C kinesin family member 1C protein-coding 98 0.01167
+10750 GRAP GRB2 related adaptor protein protein-coding 14 0.001667
+10752 CHL1 cell adhesion molecule L1 like protein-coding 248 0.02953
+10753 CAPN9 calpain 9 protein-coding 82 0.009765
+10755 GIPC1 GIPC PDZ domain containing family member 1 protein-coding 44 0.00524
+10758 TRAF3IP2 TRAF3 interacting protein 2 protein-coding 62 0.007384
+10761 PLAC1 placenta specific 1 protein-coding 26 0.003096
+10762 NUP50 nucleoporin 50 protein-coding 52 0.006193
+10763 NES nestin protein-coding 217 0.02584
+10765 KDM5B lysine demethylase 5B protein-coding 174 0.02072
+10766 TOB2 transducer of ERBB2, 2 protein-coding 35 0.004168
+10767 HBS1L HBS1 like translational GTPase protein-coding 77 0.00917
+10768 AHCYL1 adenosylhomocysteinase like 1 protein-coding 50 0.005955
+10769 PLK2 polo like kinase 2 protein-coding 82 0.009765
+10771 ZMYND11 zinc finger MYND-type containing 11 protein-coding 62 0.007384
+10772 SRSF10 serine and arginine rich splicing factor 10 protein-coding 2 0.0002382
+10773 ZBTB6 zinc finger and BTB domain containing 6 protein-coding 46 0.005478
+10775 POP4 POP4 homolog, ribonuclease P/MRP subunit protein-coding 27 0.003215
+10776 ARPP19 cAMP regulated phosphoprotein 19 protein-coding 13 0.001548
+10777 ARPP21 cAMP regulated phosphoprotein 21 protein-coding 175 0.02084
+10778 ZNF271P zinc finger protein 271, pseudogene pseudo 119 0.01417
+10780 ZNF234 zinc finger protein 234 protein-coding 91 0.01084
+10781 ZNF266 zinc finger protein 266 protein-coding 71 0.008455
+10782 ZNF274 zinc finger protein 274 protein-coding 77 0.00917
+10783 NEK6 NIMA related kinase 6 protein-coding 35 0.004168
+10785 WDR4 WD repeat domain 4 protein-coding 43 0.005121
+10786 SLC17A3 solute carrier family 17 member 3 protein-coding 99 0.01179
+10787 NCKAP1 NCK associated protein 1 protein-coding 120 0.01429
+10788 IQGAP2 IQ motif containing GTPase activating protein 2 protein-coding 170 0.02025
+10791 VAMP5 vesicle associated membrane protein 5 protein-coding 18 0.002144
+10793 ZNF273 zinc finger protein 273 protein-coding 66 0.00786
+10794 ZNF460 zinc finger protein 460 protein-coding 75 0.008932
+10795 ZNF268 zinc finger protein 268 protein-coding 79 0.009408
+10797 MTHFD2 methylenetetrahydrofolate dehydrogenase (NADP+ dependent) 2, methenyltetrahydrofolate cyclohydrolase protein-coding 45 0.005359
+10798 OR5I1 olfactory receptor family 5 subfamily I member 1 protein-coding 117 0.01393
+10799 RPP40 ribonuclease P/MRP subunit p40 protein-coding 45 0.005359
+10800 CYSLTR1 cysteinyl leukotriene receptor 1 protein-coding 65 0.007741
+10801 SEPT9 septin 9 protein-coding 97 0.01155
+10802 SEC24A SEC24 homolog A, COPII coat complex component protein-coding 100 0.01191
+10803 CCR9 C-C motif chemokine receptor 9 protein-coding 41 0.004883
+10804 GJB6 gap junction protein beta 6 protein-coding 37 0.004406
+10806 SDCCAG8 serologically defined colon cancer antigen 8 protein-coding 101 0.01203
+10807 SDCCAG3 serologically defined colon cancer antigen 3 protein-coding 55 0.00655
+10808 HSPH1 heat shock protein family H (Hsp110) member 1 protein-coding 98 0.01167
+10809 STARD10 StAR related lipid transfer domain containing 10 protein-coding 36 0.004287
+10810 WASF3 WAS protein family member 3 protein-coding 102 0.01215
+10811 NOXA1 NADPH oxidase activator 1 protein-coding 38 0.004525
+10813 UTP14A UTP14A, small subunit processome component protein-coding 97 0.01155
+10814 CPLX2 complexin 2 protein-coding 19 0.002263
+10815 CPLX1 complexin 1 protein-coding 25 0.002977
+10816 SPINT3 serine peptidase inhibitor, Kunitz type 3 protein-coding 7 0.0008336
+10817 FRS3 fibroblast growth factor receptor substrate 3 protein-coding 72 0.008574
+10818 FRS2 fibroblast growth factor receptor substrate 2 protein-coding 60 0.007145
+10825 NEU3 neuraminidase 3 protein-coding 46 0.005478
+10826 FAXDC2 fatty acid hydroxylase domain containing 2 protein-coding 32 0.003811
+10827 FAM114A2 family with sequence similarity 114 member A2 protein-coding 57 0.006788
+10838 ZNF275 zinc finger protein 275 protein-coding 48 0.005716
+10840 ALDH1L1 aldehyde dehydrogenase 1 family member L1 protein-coding 136 0.0162
+10841 FTCD formimidoyltransferase cyclodeaminase protein-coding 74 0.008813
+10842 PPP1R17 protein phosphatase 1 regulatory subunit 17 protein-coding 42 0.005002
+10844 TUBGCP2 tubulin gamma complex associated protein 2 protein-coding 109 0.01298
+10845 CLPX caseinolytic mitochondrial matrix peptidase chaperone subunit protein-coding 59 0.007026
+10846 PDE10A phosphodiesterase 10A protein-coding 174 0.02072
+10847 SRCAP Snf2 related CREBBP activator protein protein-coding 363 0.04323
+10848 PPP1R13L protein phosphatase 1 regulatory subunit 13 like protein-coding 90 0.01072
+10849 CD3EAP CD3e molecule associated protein protein-coding 110 0.0131
+10850 CCL27 C-C motif chemokine ligand 27 protein-coding 13 0.001548
+10855 HPSE heparanase protein-coding 66 0.00786
+10856 RUVBL2 RuvB like AAA ATPase 2 protein-coding 56 0.006669
+10857 PGRMC1 progesterone receptor membrane component 1 protein-coding 28 0.003335
+10858 CYP46A1 cytochrome P450 family 46 subfamily A member 1 protein-coding 74 0.008813
+10859 LILRB1 leukocyte immunoglobulin like receptor B1 protein-coding 156 0.01858
+10861 SLC26A1 solute carrier family 26 member 1 protein-coding 89 0.0106
+10863 ADAM28 ADAM metallopeptidase domain 28 protein-coding 112 0.01334
+10864 SLC22A7 solute carrier family 22 member 7 protein-coding 88 0.01048
+10865 ARID5A AT-rich interaction domain 5A protein-coding 56 0.006669
+10866 HCP5 HLA complex P5 (non-protein coding) ncRNA 39 0.004645
+10867 TSPAN9 tetraspanin 9 protein-coding 25 0.002977
+10868 USP20 ubiquitin specific peptidase 20 protein-coding 89 0.0106
+10869 USP19 ubiquitin specific peptidase 19 protein-coding 120 0.01429
+10870 HCST hematopoietic cell signal transducer protein-coding 12 0.001429
+10871 CD300C CD300c molecule protein-coding 46 0.005478
+10873 ME3 malic enzyme 3 protein-coding 78 0.009289
+10874 NMU neuromedin U protein-coding 19 0.002263
+10875 FGL2 fibrinogen like 2 protein-coding 51 0.006074
+10876 EDDM3A epididymal protein 3A protein-coding 23 0.002739
+10877 CFHR4 complement factor H related 4 protein-coding 156 0.01858
+10878 CFHR3 complement factor H related 3 protein-coding 66 0.00786
+10879 SMR3B submaxillary gland androgen regulated protein 3B protein-coding 21 0.002501
+10880 ACTL7B actin like 7B protein-coding 72 0.008574
+10881 ACTL7A actin like 7A protein-coding 58 0.006907
+10882 C1QL1 complement C1q like 1 protein-coding 23 0.002739
+10884 MRPS30 mitochondrial ribosomal protein S30 protein-coding 57 0.006788
+10885 WDR3 WD repeat domain 3 protein-coding 89 0.0106
+10886 NPFFR2 neuropeptide FF receptor 2 protein-coding 119 0.01417
+10887 PROKR1 prokineticin receptor 1 protein-coding 78 0.009289
+10888 GPR83 G protein-coupled receptor 83 protein-coding 80 0.009527
+10890 RAB10 RAB10, member RAS oncogene family protein-coding 22 0.00262
+10891 PPARGC1A PPARG coactivator 1 alpha protein-coding 139 0.01655
+10892 MALT1 MALT1 paracaspase protein-coding 71 0.008455
+10893 MMP24 matrix metallopeptidase 24 protein-coding 99 0.01179
+10894 LYVE1 lymphatic vessel endothelial hyaluronan receptor 1 protein-coding 29 0.003454
+10895 PPBPP2 pro-platelet basic protein pseudogene 2 pseudo 11 0.00131
+10896 OCLM oculomedin protein-coding 4 0.0004764
+10897 YIF1A Yip1 interacting factor homolog A, membrane trafficking protein protein-coding 43 0.005121
+10898 CPSF4 cleavage and polyadenylation specific factor 4 protein-coding 31 0.003692
+10899 JTB jumping translocation breakpoint protein-coding 17 0.002025
+10900 RUNDC3A RUN domain containing 3A protein-coding 36 0.004287
+10901 DHRS4 dehydrogenase/reductase 4 protein-coding 27 0.003215
+10902 BRD8 bromodomain containing 8 protein-coding 153 0.01822
+10903 MTMR11 myotubularin related protein 11 protein-coding 89 0.0106
+10904 BLCAP bladder cancer associated protein protein-coding 9 0.001072
+10905 MAN1A2 mannosidase alpha class 1A member 2 protein-coding 81 0.009646
+10906 TRAFD1 TRAF-type zinc finger domain containing 1 protein-coding 48 0.005716
+10907 TXNL4A thioredoxin like 4A protein-coding 13 0.001548
+10908 PNPLA6 patatin like phospholipase domain containing 6 protein-coding 144 0.01715
+10910 SUGT1 SGT1 homolog, MIS12 kinetochore complex assembly cochaperone protein-coding 39 0.004645
+10911 UTS2 urotensin 2 protein-coding 22 0.00262
+10912 GADD45G growth arrest and DNA damage inducible gamma protein-coding 12 0.001429
+10913 EDAR ectodysplasin A receptor protein-coding 74 0.008813
+10914 PAPOLA poly(A) polymerase alpha protein-coding 92 0.01096
+10915 TCERG1 transcription elongation regulator 1 protein-coding 146 0.01739
+10916 MAGED2 MAGE family member D2 protein-coding 100 0.01191
+10917 BTNL3 butyrophilin like 3 protein-coding 67 0.007979
+10919 EHMT2 euchromatic histone lysine methyltransferase 2 protein-coding 124 0.01477
+10920 COPS8 COP9 signalosome subunit 8 protein-coding 20 0.002382
+10921 RNPS1 RNA binding protein with serine rich domain 1 protein-coding 29 0.003454
+10922 FASTK Fas activated serine/threonine kinase protein-coding 53 0.006312
+10923 SUB1 SUB1 homolog, transcriptional regulator protein-coding 10 0.001191
+10924 SMPDL3A sphingomyelin phosphodiesterase acid like 3A protein-coding 54 0.006431
+10926 DBF4 DBF4 zinc finger protein-coding 79 0.009408
+10927 SPIN1 spindlin 1 protein-coding 37 0.004406
+10928 RALBP1 ralA binding protein 1 protein-coding 57 0.006788
+10929 SRSF8 serine and arginine rich splicing factor 8 protein-coding 21 0.002501
+10930 APOBEC2 apolipoprotein B mRNA editing enzyme catalytic subunit 2 protein-coding 35 0.004168
+10933 MORF4L1 mortality factor 4 like 1 protein-coding 50 0.005955
+10935 PRDX3 peroxiredoxin 3 protein-coding 22 0.00262
+10936 GPR75 G protein-coupled receptor 75 protein-coding 59 0.007026
+10938 EHD1 EH domain containing 1 protein-coding 59 0.007026
+10939 AFG3L2 AFG3 like matrix AAA peptidase subunit 2 protein-coding 75 0.008932
+10940 POP1 POP1 homolog, ribonuclease P/MRP subunit protein-coding 131 0.0156
+10941 UGT2A1 UDP glucuronosyltransferase family 2 member A1 complex locus protein-coding 108 0.01286
+10942 PRSS21 serine protease 21 protein-coding 37 0.004406
+10943 MSL3 MSL complex subunit 3 protein-coding 82 0.009765
+10944 C11orf58 chromosome 11 open reading frame 58 protein-coding 23 0.002739
+10945 KDELR1 KDEL endoplasmic reticulum protein retention receptor 1 protein-coding 30 0.003573
+10946 SF3A3 splicing factor 3a subunit 3 protein-coding 53 0.006312
+10947 AP3M2 adaptor related protein complex 3 mu 2 subunit protein-coding 58 0.006907
+10948 STARD3 StAR related lipid transfer domain containing 3 protein-coding 47 0.005597
+10949 HNRNPA0 heterogeneous nuclear ribonucleoprotein A0 protein-coding 21 0.002501
+10950 BTG3 BTG anti-proliferation factor 3 protein-coding 31 0.003692
+10951 CBX1 chromobox 1 protein-coding 39 0.004645
+10952 SEC61B Sec61 translocon beta subunit protein-coding 18 0.002144
+10953 TOMM34 translocase of outer mitochondrial membrane 34 protein-coding 39 0.004645
+10954 PDIA5 protein disulfide isomerase family A member 5 protein-coding 70 0.008336
+10955 SERINC3 serine incorporator 3 protein-coding 64 0.007622
+10956 OS9 OS9, endoplasmic reticulum lectin protein-coding 63 0.007503
+10957 PNRC1 proline rich nuclear receptor coactivator 1 protein-coding 31 0.003692
+10959 TMED2 transmembrane p24 trafficking protein 2 protein-coding 26 0.003096
+10960 LMAN2 lectin, mannose binding 2 protein-coding 43 0.005121
+10961 ERP29 endoplasmic reticulum protein 29 protein-coding 24 0.002858
+10962 MLLT11 MLLT11, transcription factor 7 cofactor protein-coding 13 0.001548
+10963 STIP1 stress induced phosphoprotein 1 protein-coding 73 0.008694
+10964 IFI44L interferon induced protein 44 like protein-coding 95 0.01131
+10965 ACOT2 acyl-CoA thioesterase 2 protein-coding 34 0.004049
+10966 RAB40B RAB40B, member RAS oncogene family protein-coding 25 0.002977
+10969 EBNA1BP2 EBNA1 binding protein 2 protein-coding 40 0.004764
+10970 CKAP4 cytoskeleton associated protein 4 protein-coding 58 0.006907
+10971 YWHAQ tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein theta protein-coding 32 0.003811
+10972 TMED10 transmembrane p24 trafficking protein 10 protein-coding 26 0.003096
+10973 ASCC3 activating signal cointegrator 1 complex subunit 3 protein-coding 230 0.02739
+10974 ADIRF adipogenesis regulatory factor protein-coding 9 0.001072
+10975 UQCR11 ubiquinol-cytochrome c reductase, complex III subunit XI protein-coding 6 0.0007145
+10978 CLP1 cleavage and polyadenylation factor I subunit 1 protein-coding 44 0.00524
+10979 FERMT2 fermitin family member 2 protein-coding 65 0.007741
+10980 COPS6 COP9 signalosome subunit 6 protein-coding 39 0.004645
+10981 RAB32 RAB32, member RAS oncogene family protein-coding 24 0.002858
+10982 MAPRE2 microtubule associated protein RP/EB family member 2 protein-coding 431 0.05133
+10983 CCNI cyclin I protein-coding 85 0.01012
+10985 GCN1 GCN1, eIF2 alpha kinase activator homolog protein-coding 250 0.02977
+10987 COPS5 COP9 signalosome subunit 5 protein-coding 38 0.004525
+10988 METAP2 methionyl aminopeptidase 2 protein-coding 332 0.03954
+10989 IMMT inner membrane mitochondrial protein protein-coding 88 0.01048
+10990 LILRB5 leukocyte immunoglobulin like receptor B5 protein-coding 129 0.01536
+10991 SLC38A3 solute carrier family 38 member 3 protein-coding 106 0.01262
+10992 SF3B2 splicing factor 3b subunit 2 protein-coding 100 0.01191
+10993 SDS serine dehydratase protein-coding 43 0.005121
+10994 ILVBL ilvB acetolactate synthase like protein-coding 84 0.01
+10998 SLC27A5 solute carrier family 27 member 5 protein-coding 89 0.0106
+10999 SLC27A4 solute carrier family 27 member 4 protein-coding 70 0.008336
+11000 SLC27A3 solute carrier family 27 member 3 protein-coding 70 0.008336
+11001 SLC27A2 solute carrier family 27 member 2 protein-coding 69 0.008217
+11004 KIF2C kinesin family member 2C protein-coding 76 0.009051
+11005 SPINK5 serine peptidase inhibitor, Kazal type 5 protein-coding 144 0.01715
+11006 LILRB4 leukocyte immunoglobulin like receptor B4 protein-coding 93 0.01108
+11007 CCDC85B coiled-coil domain containing 85B protein-coding 2 0.0002382
+11009 IL24 interleukin 24 protein-coding 30 0.003573
+11010 GLIPR1 GLI pathogenesis related 1 protein-coding 47 0.005597
+11011 TLK2 tousled like kinase 2 protein-coding 90 0.01072
+11012 KLK11 kallikrein related peptidase 11 protein-coding 42 0.005002
+11013 TMSB15A thymosin beta 15a protein-coding 9 0.001072
+11014 KDELR2 KDEL endoplasmic reticulum protein retention receptor 2 protein-coding 22 0.00262
+11015 KDELR3 KDEL endoplasmic reticulum protein retention receptor 3 protein-coding 26 0.003096
+11016 ATF7 activating transcription factor 7 protein-coding 46 0.005478
+11017 SNRNP27 small nuclear ribonucleoprotein U4/U6.U5 subunit 27 protein-coding 21 0.002501
+11018 TMED1 transmembrane p24 trafficking protein 1 protein-coding 17 0.002025
+11019 LIAS lipoic acid synthetase protein-coding 40 0.004764
+11020 IFT27 intraflagellar transport 27 protein-coding 9 0.001072
+11021 RAB35 RAB35, member RAS oncogene family protein-coding 25 0.002977
+11022 TDRKH tudor and KH domain containing protein-coding 53 0.006312
+11023 VAX1 ventral anterior homeobox 1 protein-coding 44 0.00524
+11024 LILRA1 leukocyte immunoglobulin like receptor A1 protein-coding 113 0.01346
+11025 LILRB3 leukocyte immunoglobulin like receptor B3 protein-coding 68 0.008098
+11026 LILRA3 leukocyte immunoglobulin like receptor A3 protein-coding 73 0.008694
+11027 LILRA2 leukocyte immunoglobulin like receptor A2 protein-coding 114 0.01358
+11029 SERPINB8P1 serpin family B member 8 pseudogene 1 pseudo 73 0.008694
+11030 RBPMS RNA binding protein, mRNA processing factor protein-coding 25 0.002977
+11031 RAB31 RAB31, member RAS oncogene family protein-coding 25 0.002977
+11033 ADAP1 ArfGAP with dual PH domains 1 protein-coding 25 0.002977
+11034 DSTN destrin, actin depolymerizing factor protein-coding 32 0.003811
+11035 RIPK3 receptor interacting serine/threonine kinase 3 protein-coding 51 0.006074
+11036 GTF2A1L general transcription factor IIA subunit 1 like protein-coding 3 0.0003573
+11037 STON1 stonin 1 protein-coding 5 0.0005955
+11040 PIM2 Pim-2 proto-oncogene, serine/threonine kinase protein-coding 40 0.004764
+11041 B4GAT1 beta-1,4-glucuronyltransferase 1 protein-coding 47 0.005597
+11043 MID2 midline 2 protein-coding 91 0.01084
+11044 PAPD7 poly(A) RNA polymerase D7, non-canonical protein-coding 93 0.01108
+11045 UPK1A uroplakin 1A protein-coding 33 0.00393
+11046 SLC35D2 solute carrier family 35 member D2 protein-coding 27 0.003215
+11047 ADRM1 adhesion regulating molecule 1 protein-coding 42 0.005002
+11051 NUDT21 nudix hydrolase 21 protein-coding 16 0.001905
+11052 CPSF6 cleavage and polyadenylation specific factor 6 protein-coding 69 0.008217
+11054 OGFR opioid growth factor receptor protein-coding 48 0.005716
+11055 ZPBP zona pellucida binding protein protein-coding 80 0.009527
+11056 DDX52 DExD-box helicase 52 protein-coding 57 0.006788
+11057 ABHD2 abhydrolase domain containing 2 protein-coding 48 0.005716
+11059 WWP1 WW domain containing E3 ubiquitin protein ligase 1 protein-coding 133 0.01584
+11060 WWP2 WW domain containing E3 ubiquitin protein ligase 2 protein-coding 99 0.01179
+11061 CNMD chondromodulin protein-coding 42 0.005002
+11062 DUS4L dihydrouridine synthase 4 like protein-coding 36 0.004287
+11063 SOX30 SRY-box 30 protein-coding 79 0.009408
+11064 CNTRL centriolin protein-coding 180 0.02144
+11065 UBE2C ubiquitin conjugating enzyme E2 C protein-coding 17 0.002025
+11066 SNRNP35 small nuclear ribonucleoprotein U11/U12 subunit 35 protein-coding 38 0.004525
+11067 DEPP1 DEPP1, autophagy regulator protein-coding 23 0.002739
+11068 CYB561D2 cytochrome b561 family member D2 protein-coding 11 0.00131
+11069 RAPGEF4 Rap guanine nucleotide exchange factor 4 protein-coding 122 0.01453
+11070 TMEM115 transmembrane protein 115 protein-coding 26 0.003096
+11072 DUSP14 dual specificity phosphatase 14 protein-coding 27 0.003215
+11073 TOPBP1 DNA topoisomerase II binding protein 1 protein-coding 146 0.01739
+11074 TRIM31 tripartite motif containing 31 protein-coding 51 0.006074
+11075 STMN2 stathmin 2 protein-coding 16 0.001905
+11076 TPPP tubulin polymerization promoting protein protein-coding 34 0.004049
+11077 HSF2BP heat shock transcription factor 2 binding protein protein-coding 40 0.004764
+11078 TRIOBP TRIO and F-actin binding protein protein-coding 264 0.03144
+11079 RER1 retention in endoplasmic reticulum sorting receptor 1 protein-coding 17 0.002025
+11080 DNAJB4 DnaJ heat shock protein family (Hsp40) member B4 protein-coding 48 0.005716
+11081 KERA keratocan protein-coding 65 0.007741
+11082 ESM1 endothelial cell specific molecule 1 protein-coding 33 0.00393
+11083 DIDO1 death inducer-obliterator 1 protein-coding 329 0.03918
+11085 ADAM30 ADAM metallopeptidase domain 30 protein-coding 108 0.01286
+11086 ADAM29 ADAM metallopeptidase domain 29 protein-coding 177 0.02108
+11091 WDR5 WD repeat domain 5 protein-coding 51 0.006074
+11092 SPACA9 sperm acrosome associated 9 protein-coding 21 0.002501
+11093 ADAMTS13 ADAM metallopeptidase with thrombospondin type 1 motif 13 protein-coding 143 0.01703
+11094 CACFD1 calcium channel flower domain containing 1 protein-coding 19 0.002263
+11095 ADAMTS8 ADAM metallopeptidase with thrombospondin type 1 motif 8 protein-coding 93 0.01108
+11096 ADAMTS5 ADAM metallopeptidase with thrombospondin type 1 motif 5 protein-coding 180 0.02144
+11097 NUPL2 nucleoporin like 2 protein-coding 55 0.00655
+11098 PRSS23 serine protease 23 protein-coding 56 0.006669
+11099 PTPN21 protein tyrosine phosphatase, non-receptor type 21 protein-coding 122 0.01453
+11100 HNRNPUL1 heterogeneous nuclear ribonucleoprotein U like 1 protein-coding 111 0.01322
+11101 ATE1 arginyltransferase 1 protein-coding 52 0.006193
+11102 RPP14 ribonuclease P/MRP subunit p14 protein-coding 15 0.001786
+11103 KRR1 KRR1, small subunit processome component homolog protein-coding 51 0.006074
+11104 KATNA1 katanin catalytic subunit A1 protein-coding 59 0.007026
+11105 PRDM7 PR/SET domain 7 protein-coding 48 0.005716
+11107 PRDM5 PR/SET domain 5 protein-coding 125 0.01489
+11108 PRDM4 PR/SET domain 4 protein-coding 80 0.009527
+11112 HIBADH 3-hydroxyisobutyrate dehydrogenase protein-coding 31 0.003692
+11113 CIT citron rho-interacting serine/threonine kinase protein-coding 220 0.0262
+11116 FGFR1OP FGFR1 oncogene partner protein-coding 29 0.003454
+11117 EMILIN1 elastin microfibril interfacer 1 protein-coding 115 0.0137
+11118 BTN3A2 butyrophilin subfamily 3 member A2 protein-coding 63 0.007503
+11119 BTN3A1 butyrophilin subfamily 3 member A1 protein-coding 72 0.008574
+11120 BTN2A1 butyrophilin subfamily 2 member A1 protein-coding 72 0.008574
+11122 PTPRT protein tyrosine phosphatase, receptor type T protein-coding 341 0.04061
+11123 RCAN3 RCAN family member 3 protein-coding 59 0.007026
+11124 FAF1 Fas associated factor 1 protein-coding 77 0.00917
+11126 CD160 CD160 molecule protein-coding 19 0.002263
+11127 KIF3A kinesin family member 3A protein-coding 80 0.009527
+11128 POLR3A RNA polymerase III subunit A protein-coding 125 0.01489
+11129 CLASRP CLK4 associating serine/arginine rich protein protein-coding 73 0.008694
+11130 ZWINT ZW10 interacting kinetochore protein protein-coding 75 0.008932
+11131 CAPN11 calpain 11 protein-coding 80 0.009527
+11132 CAPN10 calpain 10 protein-coding 65 0.007741
+11133 KPTN kaptin, actin binding protein protein-coding 43 0.005121
+11135 CDC42EP1 CDC42 effector protein 1 protein-coding 37 0.004406
+11136 SLC7A9 solute carrier family 7 member 9 protein-coding 81 0.009646
+11137 PWP1 PWP1 homolog, endonuclein protein-coding 59 0.007026
+11138 TBC1D8 TBC1 domain family member 8 protein-coding 116 0.01381
+11140 CDC37 cell division cycle 37 protein-coding 48 0.005716
+11141 IL1RAPL1 interleukin 1 receptor accessory protein like 1 protein-coding 164 0.01953
+11142 PKIG cAMP-dependent protein kinase inhibitor gamma protein-coding 15 0.001786
+11143 KAT7 lysine acetyltransferase 7 protein-coding 86 0.01024
+11144 DMC1 DNA meiotic recombinase 1 protein-coding 41 0.004883
+11145 PLA2G16 phospholipase A2 group XVI protein-coding 17 0.002025
+11146 GLMN glomulin, FKBP associated protein protein-coding 177 0.02108
+11147 HHLA3 HERV-H LTR-associating 3 protein-coding 10 0.001191
+11148 HHLA2 HERV-H LTR-associating 2 protein-coding 62 0.007384
+11149 BVES blood vessel epicardial substance protein-coding 173 0.0206
+11151 CORO1A coronin 1A protein-coding 51 0.006074
+11152 WDR45 WD repeat domain 45 protein-coding 68 0.008098
+11153 FICD FIC domain containing protein-coding 39 0.004645
+11154 AP4S1 adaptor related protein complex 4 sigma 1 subunit protein-coding 19 0.002263
+11155 LDB3 LIM domain binding 3 protein-coding 88 0.01048
+11156 PTP4A3 protein tyrosine phosphatase type IVA, member 3 protein-coding 37 0.004406
+11157 LSM6 LSM6 homolog, U6 small nuclear RNA and mRNA degradation associated protein-coding 6 0.0007145
+11158 RABL2B RAB, member of RAS oncogene family like 2B protein-coding 22 0.00262
+11159 RABL2A RAB, member of RAS oncogene family like 2A protein-coding 24 0.002858
+11160 ERLIN2 ER lipid raft associated 2 protein-coding 42 0.005002
+11161 ERG28 ergosterol biosynthesis 28 homolog protein-coding 15 0.001786
+11162 NUDT6 nudix hydrolase 6 protein-coding 40 0.004764
+11163 NUDT4 nudix hydrolase 4 protein-coding 20 0.002382
+11164 NUDT5 nudix hydrolase 5 protein-coding 24 0.002858
+11165 NUDT3 nudix hydrolase 3 protein-coding 16 0.001905
+11166 SOX21 SRY-box 21 protein-coding 22 0.00262
+11167 FSTL1 follistatin like 1 protein-coding 44 0.00524
+11168 PSIP1 PC4 and SFRS1 interacting protein 1 protein-coding 105 0.0125
+11169 WDHD1 WD repeat and HMG-box DNA binding protein 1 protein-coding 97 0.01155
+11170 FAM107A family with sequence similarity 107 member A protein-coding 20 0.002382
+11171 STRAP serine/threonine kinase receptor associated protein protein-coding 39 0.004645
+11172 INSL6 insulin like 6 protein-coding 243 0.02894
+11173 ADAMTS7 ADAM metallopeptidase with thrombospondin type 1 motif 7 protein-coding 175 0.02084
+11174 ADAMTS6 ADAM metallopeptidase with thrombospondin type 1 motif 6 protein-coding 85 0.01012
+11176 BAZ2A bromodomain adjacent to zinc finger domain 2A protein-coding 146 0.01739
+11177 BAZ1A bromodomain adjacent to zinc finger domain 1A protein-coding 130 0.01548
+11178 LZTS1 leucine zipper tumor suppressor 1 protein-coding 148 0.01763
+11179 ZNF277 zinc finger protein 277 protein-coding 63 0.007503
+11180 WDR6 WD repeat domain 6 protein-coding 107 0.01274
+11181 TREH trehalase protein-coding 43 0.005121
+11182 SLC2A6 solute carrier family 2 member 6 protein-coding 57 0.006788
+11183 MAP4K5 mitogen-activated protein kinase kinase kinase kinase 5 protein-coding 117 0.01393
+11184 MAP4K1 mitogen-activated protein kinase kinase kinase kinase 1 protein-coding 95 0.01131
+11185 INMT indolethylamine N-methyltransferase protein-coding 41 0.004883
+11186 RASSF1 Ras association domain family member 1 protein-coding 29 0.003454
+11187 PKP3 plakophilin 3 protein-coding 76 0.009051
+11188 NISCH nischarin protein-coding 130 0.01548
+11189 CELF3 CUGBP Elav-like family member 3 protein-coding 68 0.008098
+11190 CEP250 centrosomal protein 250 protein-coding 208 0.02477
+11191 PTENP1 phosphatase and tensin homolog pseudogene 1 pseudo 134 0.01596
+11193 WBP4 WW domain binding protein 4 protein-coding 52 0.006193
+11194 ABCB8 ATP binding cassette subfamily B member 8 protein-coding 96 0.01143
+11196 SEC23IP SEC23 interacting protein protein-coding 109 0.01298
+11197 WIF1 WNT inhibitory factor 1 protein-coding 71 0.008455
+11198 SUPT16H SPT16 homolog, facilitates chromatin remodeling subunit protein-coding 137 0.01632
+11199 ANXA10 annexin A10 protein-coding 44 0.00524
+11200 CHEK2 checkpoint kinase 2 protein-coding 157 0.0187
+11201 POLI DNA polymerase iota protein-coding 68 0.008098
+11202 KLK8 kallikrein related peptidase 8 protein-coding 64 0.007622
+11211 FZD10 frizzled class receptor 10 protein-coding 132 0.01572
+11212 PLPBP pyridoxal phosphate binding protein protein-coding 34 0.004049
+11213 IRAK3 interleukin 1 receptor associated kinase 3 protein-coding 97 0.01155
+11214 AKAP13 A-kinase anchoring protein 13 protein-coding 258 0.03073
+11215 AKAP11 A-kinase anchoring protein 11 protein-coding 168 0.02001
+11216 AKAP10 A-kinase anchoring protein 10 protein-coding 45 0.005359
+11218 DDX20 DEAD-box helicase 20 protein-coding 73 0.008694
+11219 TREX2 three prime repair exonuclease 2 protein-coding 35 0.004168
+11221 DUSP10 dual specificity phosphatase 10 protein-coding 57 0.006788
+11222 MRPL3 mitochondrial ribosomal protein L3 protein-coding 42 0.005002
+11223 MST1L macrophage stimulating 1 like protein-coding 98 0.01167
+11224 RPL35 ribosomal protein L35 protein-coding 18 0.002144
+11226 GALNT6 polypeptide N-acetylgalactosaminyltransferase 6 protein-coding 70 0.008336
+11227 GALNT5 polypeptide N-acetylgalactosaminyltransferase 5 protein-coding 126 0.01501
+11228 RASSF8 Ras association domain family member 8 protein-coding 43 0.005121
+11230 PRAF2 PRA1 domain family member 2 protein-coding 9 0.001072
+11231 SEC63 SEC63 homolog, protein translocation regulator protein-coding 81 0.009646
+11232 POLG2 DNA polymerase gamma 2, accessory subunit protein-coding 89 0.0106
+11234 HPS5 HPS5, biogenesis of lysosomal organelles complex 2 subunit 2 protein-coding 92 0.01096
+11235 PDCD10 programmed cell death 10 protein-coding 42 0.005002
+11236 RNF139 ring finger protein 139 protein-coding 70 0.008336
+11237 RNF24 ring finger protein 24 protein-coding 20 0.002382
+11238 CA5B carbonic anhydrase 5B protein-coding 34 0.004049
+11240 PADI2 peptidyl arginine deiminase 2 protein-coding 89 0.0106
+11243 PMF1 polyamine modulated factor 1 protein-coding 21 0.002501
+11244 ZHX1 zinc fingers and homeoboxes 1 protein-coding 91 0.01084
+11245 GPR176 G protein-coupled receptor 176 protein-coding 43 0.005121
+11247 NXPH4 neurexophilin 4 protein-coding 27 0.003215
+11248 NXPH3 neurexophilin 3 protein-coding 36 0.004287
+11249 NXPH2 neurexophilin 2 protein-coding 66 0.00786
+11250 GPR45 G protein-coupled receptor 45 protein-coding 77 0.00917
+11251 PTGDR2 prostaglandin D2 receptor 2 protein-coding 25 0.002977
+11252 PACSIN2 protein kinase C and casein kinase substrate in neurons 2 protein-coding 49 0.005835
+11253 MAN1B1 mannosidase alpha class 1B member 1 protein-coding 65 0.007741
+11254 SLC6A14 solute carrier family 6 member 14 protein-coding 86 0.01024
+11255 HRH3 histamine receptor H3 protein-coding 52 0.006193
+11258 DCTN3 dynactin subunit 3 protein-coding 17 0.002025
+11259 FILIP1L filamin A interacting protein 1 like protein-coding 113 0.01346
+11260 XPOT exportin for tRNA protein-coding 115 0.0137
+11261 CHP1 calcineurin like EF-hand protein 1 protein-coding 23 0.002739
+11262 SP140 SP140 nuclear body protein protein-coding 148 0.01763
+11264 PXMP4 peroxisomal membrane protein 4 protein-coding 29 0.003454
+11266 DUSP12 dual specificity phosphatase 12 protein-coding 61 0.007264
+11267 SNF8 SNF8, ESCRT-II complex subunit protein-coding 30 0.003573
+11269 DDX19B DEAD-box helicase 19B protein-coding 55 0.00655
+11270 NRM nurim protein-coding 19 0.002263
+11272 PRR4 proline rich 4 protein-coding 24 0.002858
+11273 ATXN2L ataxin 2 like protein-coding 152 0.0181
+11274 USP18 ubiquitin specific peptidase 18 protein-coding 30 0.003573
+11275 KLHL2 kelch like family member 2 protein-coding 69 0.008217
+11276 SYNRG synergin gamma protein-coding 129 0.01536
+11277 TREX1 three prime repair exonuclease 1 protein-coding 26 0.003096
+11278 KLF12 Kruppel like factor 12 protein-coding 48 0.005716
+11279 KLF8 Kruppel like factor 8 protein-coding 53 0.006312
+11280 SCN11A sodium voltage-gated channel alpha subunit 11 protein-coding 279 0.03323
+11281 POU6F2 POU class 6 homeobox 2 protein-coding 113 0.01346
+11282 MGAT4B mannosyl (alpha-1,3-)-glycoprotein beta-1,4-N-acetylglucosaminyltransferase, isozyme B protein-coding 63 0.007503
+11283 CYP4F8 cytochrome P450 family 4 subfamily F member 8 protein-coding 81 0.009646
+11284 PNKP polynucleotide kinase 3'-phosphatase protein-coding 51 0.006074
+11285 B4GALT7 beta-1,4-galactosyltransferase 7 protein-coding 27 0.003215
+11309 SLCO2B1 solute carrier organic anion transporter family member 2B1 protein-coding 96 0.01143
+11311 VPS45 vacuolar protein sorting 45 homolog protein-coding 66 0.00786
+11313 LYPLA2 lysophospholipase II protein-coding 23 0.002739
+11314 CD300A CD300a molecule protein-coding 39 0.004645
+11315 PARK7 Parkinsonism associated deglycase protein-coding 17 0.002025
+11316 COPE coatomer protein complex subunit epsilon protein-coding 26 0.003096
+11317 RBPJL recombination signal binding protein for immunoglobulin kappa J region like protein-coding 64 0.007622
+11318 GPR182 G protein-coupled receptor 182 protein-coding 42 0.005002
+11319 ECD ecdysoneless cell cycle regulator protein-coding 60 0.007145
+11320 MGAT4A mannosyl (alpha-1,3-)-glycoprotein beta-1,4-N-acetylglucosaminyltransferase, isozyme A protein-coding 55 0.00655
+11321 GPN1 GPN-loop GTPase 1 protein-coding 41 0.004883
+11322 TMC6 transmembrane channel like 6 protein-coding 80 0.009527
+11325 DDX42 DEAD-box helicase 42 protein-coding 110 0.0131
+11326 VSIG4 V-set and immunoglobulin domain containing 4 protein-coding 59 0.007026
+11328 FKBP9 FK506 binding protein 9 protein-coding 72 0.008574
+11329 STK38 serine/threonine kinase 38 protein-coding 57 0.006788
+11330 CTRC chymotrypsin C protein-coding 28 0.003335
+11331 PHB2 prohibitin 2 protein-coding 31 0.003692
+11332 ACOT7 acyl-CoA thioesterase 7 protein-coding 38 0.004525
+11333 PDAP1 PDGFA associated protein 1 protein-coding 22 0.00262
+11334 TUSC2 tumor suppressor 2, mitochondrial calcium regulator protein-coding 6 0.0007145
+11335 CBX3 chromobox 3 protein-coding 36 0.004287
+11336 EXOC3 exocyst complex component 3 protein-coding 77 0.00917
+11337 GABARAP GABA type A receptor-associated protein protein-coding 15 0.001786
+11338 U2AF2 U2 small nuclear RNA auxiliary factor 2 protein-coding 68 0.008098
+11339 OIP5 Opa interacting protein 5 protein-coding 21 0.002501
+11340 EXOSC8 exosome component 8 protein-coding 29 0.003454
+11341 SCRG1 stimulator of chondrogenesis 1 protein-coding 9 0.001072
+11342 RNF13 ring finger protein 13 protein-coding 39 0.004645
+11343 MGLL monoglyceride lipase protein-coding 39 0.004645
+11344 TWF2 twinfilin actin binding protein 2 protein-coding 35 0.004168
+11345 GABARAPL2 GABA type A receptor associated protein like 2 protein-coding 14 0.001667
+11346 SYNPO synaptopodin protein-coding 84 0.01
+22794 CASC3 cancer susceptibility 3 protein-coding 70 0.008336
+22795 NID2 nidogen 2 protein-coding 218 0.02596
+22796 COG2 component of oligomeric golgi complex 2 protein-coding 89 0.0106
+22797 TFEC transcription factor EC protein-coding 66 0.00786
+22798 LAMB4 laminin subunit beta 4 protein-coding 237 0.02822
+22800 RRAS2 RAS related 2 protein-coding 33 0.00393
+22801 ITGA11 integrin subunit alpha 11 protein-coding 127 0.01512
+22802 CLCA4 chloride channel accessory 4 protein-coding 143 0.01703
+22803 XRN2 5'-3' exoribonuclease 2 protein-coding 109 0.01298
+22806 IKZF3 IKAROS family zinc finger 3 protein-coding 82 0.009765
+22807 IKZF2 IKAROS family zinc finger 2 protein-coding 92 0.01096
+22808 MRAS muscle RAS oncogene homolog protein-coding 26 0.003096
+22809 ATF5 activating transcription factor 5 protein-coding 42 0.005002
+22818 COPZ1 coatomer protein complex subunit zeta 1 protein-coding 20 0.002382
+22820 COPG1 coatomer protein complex subunit gamma 1 protein-coding 93 0.01108
+22821 RASA3 RAS p21 protein activator 3 protein-coding 99 0.01179
+22822 PHLDA1 pleckstrin homology like domain family A member 1 protein-coding 38 0.004525
+22823 MTF2 metal response element binding transcription factor 2 protein-coding 75 0.008932
+22824 HSPA4L heat shock protein family A (Hsp70) member 4 like protein-coding 84 0.01
+22826 DNAJC8 DnaJ heat shock protein family (Hsp40) member C8 protein-coding 29 0.003454
+22827 PUF60 poly(U) binding splicing factor 60 protein-coding 51 0.006074
+22828 SCAF8 SR-related CTD associated factor 8 protein-coding 142 0.01691
+22829 NLGN4Y neuroligin 4, Y-linked protein-coding 55 0.00655
+22832 CEP162 centrosomal protein 162 protein-coding 167 0.01989
+22834 ZNF652 zinc finger protein 652 protein-coding 66 0.00786
+22835 ZFP30 ZFP30 zinc finger protein protein-coding 94 0.01119
+22836 RHOBTB3 Rho related BTB domain containing 3 protein-coding 66 0.00786
+22837 COBLL1 cordon-bleu WH2 repeat protein like 1 protein-coding 125 0.01489
+22838 RNF44 ring finger protein 44 protein-coding 44 0.00524
+22839 DLGAP4 DLG associated protein 4 protein-coding 135 0.01608
+22841 RAB11FIP2 RAB11 family interacting protein 2 protein-coding 69 0.008217
+22843 PPM1E protein phosphatase, Mg2+/Mn2+ dependent 1E protein-coding 75 0.008932
+22844 FRMPD1 FERM and PDZ domain containing 1 protein-coding 215 0.0256
+22845 DOLK dolichol kinase protein-coding 47 0.005597
+22846 VASH1 vasohibin 1 protein-coding 39 0.004645
+22847 ZNF507 zinc finger protein 507 protein-coding 115 0.0137
+22848 AAK1 AP2 associated kinase 1 protein-coding 81 0.009646
+22849 CPEB3 cytoplasmic polyadenylation element binding protein 3 protein-coding 50 0.005955
+22850 ADNP2 ADNP homeobox 2 protein-coding 127 0.01512
+22852 ANKRD26 ankyrin repeat domain 26 protein-coding 207 0.02465
+22853 LMTK2 lemur tyrosine kinase 2 protein-coding 170 0.02025
+22854 NTNG1 netrin G1 protein-coding 126 0.01501
+22856 CHSY1 chondroitin sulfate synthase 1 protein-coding 88 0.01048
+22858 ICK intestinal cell kinase protein-coding 61 0.007264
+22859 ADGRL1 adhesion G protein-coupled receptor L1 protein-coding 144 0.01715
+22861 NLRP1 NLR family pyrin domain containing 1 protein-coding 155 0.01846
+22862 FNDC3A fibronectin type III domain containing 3A protein-coding 111 0.01322
+22863 ATG14 autophagy related 14 protein-coding 46 0.005478
+22864 R3HDM2 R3H domain containing 2 protein-coding 84 0.01
+22865 SLITRK3 SLIT and NTRK like family member 3 protein-coding 252 0.03001
+22866 CNKSR2 connector enhancer of kinase suppressor of Ras 2 protein-coding 315 0.03751
+22868 FASTKD2 FAST kinase domains 2 protein-coding 61 0.007264
+22869 ZNF510 zinc finger protein 510 protein-coding 68 0.008098
+22870 PPP6R1 protein phosphatase 6 regulatory subunit 1 protein-coding 79 0.009408
+22871 NLGN1 neuroligin 1 protein-coding 193 0.02298
+22872 SEC31A SEC31 homolog A, COPII coat complex component protein-coding 126 0.01501
+22873 DZIP1 DAZ interacting zinc finger protein 1 protein-coding 112 0.01334
+22874 PLEKHA6 pleckstrin homology domain containing A6 protein-coding 175 0.02084
+22875 ENPP4 ectonucleotide pyrophosphatase/phosphodiesterase 4 protein-coding 54 0.006431
+22876 INPP5F inositol polyphosphate-5-phosphatase F protein-coding 121 0.01441
+22877 MLXIP MLX interacting protein protein-coding 70 0.008336
+22878 TRAPPC8 trafficking protein particle complex 8 protein-coding 167 0.01989
+22879 MON1B MON1 homolog B, secretory trafficking associated protein-coding 69 0.008217
+22880 MORC2 MORC family CW-type zinc finger 2 protein-coding 80 0.009527
+22881 ANKRD6 ankyrin repeat domain 6 protein-coding 77 0.00917
+22882 ZHX2 zinc fingers and homeoboxes 2 protein-coding 132 0.01572
+22883 CLSTN1 calsyntenin 1 protein-coding 90 0.01072
+22884 WDR37 WD repeat domain 37 protein-coding 51 0.006074
+22885 ABLIM3 actin binding LIM protein family member 3 protein-coding 91 0.01084
+22887 FOXJ3 forkhead box J3 protein-coding 73 0.008694
+22888 UBOX5 U-box domain containing 5 protein-coding 54 0.006431
+22889 KHDC4 KH domain containing 4, pre-mRNA splicing factor protein-coding 92 0.01096
+22890 ZBTB1 zinc finger and BTB domain containing 1 protein-coding 65 0.007741
+22891 ZNF365 zinc finger protein 365 protein-coding 77 0.00917
+22893 BAHD1 bromo adjacent homology domain containing 1 protein-coding 81 0.009646
+22894 DIS3 DIS3 homolog, exosome endoribonuclease and 3'-5' exoribonuclease protein-coding 100 0.01191
+22895 RPH3A rabphilin 3A protein-coding 120 0.01429
+22897 CEP164 centrosomal protein 164 protein-coding 130 0.01548
+22898 DENND3 DENN domain containing 3 protein-coding 138 0.01643
+22899 ARHGEF15 Rho guanine nucleotide exchange factor 15 protein-coding 136 0.0162
+22900 CARD8 caspase recruitment domain family member 8 protein-coding 57 0.006788
+22901 ARSG arylsulfatase G protein-coding 71 0.008455
+22902 RUFY3 RUN and FYVE domain containing 3 protein-coding 96 0.01143
+22903 BTBD3 BTB domain containing 3 protein-coding 81 0.009646
+22904 SBNO2 strawberry notch homolog 2 protein-coding 103 0.01227
+22905 EPN2 epsin 2 protein-coding 73 0.008694
+22906 TRAK1 trafficking kinesin protein 1 protein-coding 95 0.01131
+22907 DHX30 DExH-box helicase 30 protein-coding 141 0.01679
+22908 SACM1L SAC1 like phosphatidylinositide phosphatase protein-coding 46 0.005478
+22909 FAN1 FANCD2 and FANCI associated nuclease 1 protein-coding 109 0.01298
+22911 WDR47 WD repeat domain 47 protein-coding 115 0.0137
+22913 RALY RALY heterogeneous nuclear ribonucleoprotein protein-coding 43 0.005121
+22914 KLRK1 killer cell lectin like receptor K1 protein-coding 43 0.005121
+22915 MMRN1 multimerin 1 protein-coding 194 0.0231
+22916 NCBP2 nuclear cap binding protein subunit 2 protein-coding 28 0.003335
+22917 ZP1 zona pellucida glycoprotein 1 protein-coding 66 0.00786
+22918 CD93 CD93 molecule protein-coding 150 0.01786
+22919 MAPRE1 microtubule associated protein RP/EB family member 1 protein-coding 36 0.004287
+22920 KIFAP3 kinesin associated protein 3 protein-coding 117 0.01393
+22921 MSRB2 methionine sulfoxide reductase B2 protein-coding 27 0.003215
+22924 MAPRE3 microtubule associated protein RP/EB family member 3 protein-coding 153 0.01822
+22925 PLA2R1 phospholipase A2 receptor 1 protein-coding 145 0.01727
+22926 ATF6 activating transcription factor 6 protein-coding 76 0.009051
+22927 HABP4 hyaluronan binding protein 4 protein-coding 34 0.004049
+22928 SEPHS2 selenophosphate synthetase 2 protein-coding 40 0.004764
+22929 SEPHS1 selenophosphate synthetase 1 protein-coding 51 0.006074
+22930 RAB3GAP1 RAB3 GTPase activating protein catalytic subunit 1 protein-coding 114 0.01358
+22931 RAB18 RAB18, member RAS oncogene family protein-coding 24 0.002858
+22932 POMZP3 POM121 and ZP3 fusion protein-coding 25 0.002977
+22933 SIRT2 sirtuin 2 protein-coding 35 0.004168
+22934 RPIA ribose 5-phosphate isomerase A protein-coding 40 0.004764
+22936 ELL2 elongation factor for RNA polymerase II 2 protein-coding 98 0.01167
+22937 SCAP SREBF chaperone protein-coding 119 0.01417
+22938 SNW1 SNW domain containing 1 protein-coding 69 0.008217
+22941 SHANK2 SH3 and multiple ankyrin repeat domains 2 protein-coding 216 0.02572
+22943 DKK1 dickkopf WNT signaling pathway inhibitor 1 protein-coding 57 0.006788
+22944 KIN Kin17 DNA and RNA binding protein protein-coding 54 0.006431
+22948 CCT5 chaperonin containing TCP1 subunit 5 protein-coding 59 0.007026
+22949 PTGR1 prostaglandin reductase 1 protein-coding 43 0.005121
+22950 SLC4A1AP solute carrier family 4 member 1 adaptor protein protein-coding 69 0.008217
+22952 CYP2G1P cytochrome P450 family 2 subfamily G member 1, pseudogene pseudo 31 0.003692
+22953 P2RX2 purinergic receptor P2X 2 protein-coding 67 0.007979
+22954 TRIM32 tripartite motif containing 32 protein-coding 72 0.008574
+22955 SCMH1 Scm polycomb group protein homolog 1 protein-coding 47 0.005597
+22974 TPX2 TPX2, microtubule nucleation factor protein-coding 93 0.01108
+22976 PAXIP1 PAX interacting protein 1 protein-coding 101 0.01203
+22977 AKR7A3 aldo-keto reductase family 7 member A3 protein-coding 30 0.003573
+22978 NT5C2 5'-nucleotidase, cytosolic II protein-coding 59 0.007026
+22979 EFR3B EFR3 homolog B protein-coding 48 0.005716
+22980 TCF25 transcription factor 25 protein-coding 79 0.009408
+22981 NINL ninein like protein-coding 183 0.02179
+22982 DIP2C disco interacting protein 2 homolog C protein-coding 197 0.02346
+22983 MAST1 microtubule associated serine/threonine kinase 1 protein-coding 153 0.01822
+22984 PDCD11 programmed cell death 11 protein-coding 154 0.01834
+22985 ACIN1 apoptotic chromatin condensation inducer 1 protein-coding 141 0.01679
+22986 SORCS3 sortilin related VPS10 domain containing receptor 3 protein-coding 288 0.0343
+22987 SV2C synaptic vesicle glycoprotein 2C protein-coding 132 0.01572
+22989 MYH15 myosin heavy chain 15 protein-coding 257 0.03061
+22990 PCNX1 pecanex homolog 1 protein-coding 227 0.02703
+22992 KDM2A lysine demethylase 2A protein-coding 99 0.01179
+22993 HMGXB3 HMG-box containing 3 protein-coding 53 0.006312
+22994 CEP131 centrosomal protein 131 protein-coding 102 0.01215
+22995 CEP152 centrosomal protein 152 protein-coding 164 0.01953
+22996 TTC39A tetratricopeptide repeat domain 39A protein-coding 60 0.007145
+22997 IGSF9B immunoglobulin superfamily member 9B protein-coding 220 0.0262
+22998 LIMCH1 LIM and calponin homology domains 1 protein-coding 116 0.01381
+22999 RIMS1 regulating synaptic membrane exocytosis 1 protein-coding 305 0.03632
+23001 WDFY3 WD repeat and FYVE domain containing 3 protein-coding 365 0.04347
+23002 DAAM1 dishevelled associated activator of morphogenesis 1 protein-coding 134 0.01596
+23005 MAPKBP1 mitogen-activated protein kinase binding protein 1 protein-coding 123 0.01465
+23007 PLCH1 phospholipase C eta 1 protein-coding 250 0.02977
+23008 KLHDC10 kelch domain containing 10 protein-coding 39 0.004645
+23011 RAB21 RAB21, member RAS oncogene family protein-coding 24 0.002858
+23012 STK38L serine/threonine kinase 38 like protein-coding 41 0.004883
+23013 SPEN spen family transcriptional repressor protein-coding 320 0.03811
+23014 FBXO21 F-box protein 21 protein-coding 80 0.009527
+23015 GOLGA8A golgin A8 family member A protein-coding 20 0.002382
+23016 EXOSC7 exosome component 7 protein-coding 32 0.003811
+23017 FAIM2 Fas apoptotic inhibitory molecule 2 protein-coding 27 0.003215
+23019 CNOT1 CCR4-NOT transcription complex subunit 1 protein-coding 255 0.03037
+23020 SNRNP200 small nuclear ribonucleoprotein U5 subunit 200 protein-coding 170 0.02025
+23022 PALLD palladin, cytoskeletal associated protein protein-coding 107 0.01274
+23023 TMCC1 transmembrane and coiled-coil domain family 1 protein-coding 82 0.009765
+23024 PDZRN3 PDZ domain containing ring finger 3 protein-coding 183 0.02179
+23025 UNC13A unc-13 homolog A protein-coding 199 0.0237
+23026 MYO16 myosin XVI protein-coding 296 0.03525
+23028 KDM1A lysine demethylase 1A protein-coding 67 0.007979
+23029 RBM34 RNA binding motif protein 34 protein-coding 59 0.007026
+23030 KDM4B lysine demethylase 4B protein-coding 114 0.01358
+23031 MAST3 microtubule associated serine/threonine kinase 3 protein-coding 125 0.01489
+23032 USP33 ubiquitin specific peptidase 33 protein-coding 123 0.01465
+23033 DOPEY1 dopey family member 1 protein-coding 230 0.02739
+23034 SAMD4A sterile alpha motif domain containing 4A protein-coding 73 0.008694
+23035 PHLPP2 PH domain and leucine rich repeat protein phosphatase 2 protein-coding 122 0.01453
+23036 ZNF292 zinc finger protein 292 protein-coding 299 0.03561
+23037 PDZD2 PDZ domain containing 2 protein-coding 328 0.03906
+23038 WDTC1 WD and tetratricopeptide repeats 1 protein-coding 77 0.00917
+23039 XPO7 exportin 7 protein-coding 105 0.0125
+23040 MYT1L myelin transcription factor 1 like protein-coding 283 0.0337
+23041 MON2 MON2 homolog, regulator of endosome-to-Golgi trafficking protein-coding 165 0.01965
+23042 PDXDC1 pyridoxal dependent decarboxylase domain containing 1 protein-coding 80 0.009527
+23043 TNIK TRAF2 and NCK interacting kinase protein-coding 205 0.02441
+23046 KIF21B kinesin family member 21B protein-coding 226 0.02691
+23047 PDS5B PDS5 cohesin associated factor B protein-coding 161 0.01917
+23048 FNBP1 formin binding protein 1 protein-coding 70 0.008336
+23049 SMG1 SMG1, nonsense mediated mRNA decay associated PI3K related kinase protein-coding 267 0.0318
+23051 ZHX3 zinc fingers and homeoboxes 3 protein-coding 104 0.01239
+23052 ENDOD1 endonuclease domain containing 1 protein-coding 39 0.004645
+23053 ZSWIM8 zinc finger SWIM-type containing 8 protein-coding 159 0.01894
+23054 NCOA6 nuclear receptor coactivator 6 protein-coding 188 0.02239
+23057 NMNAT2 nicotinamide nucleotide adenylyltransferase 2 protein-coding 42 0.005002
+23059 CLUAP1 clusterin associated protein 1 protein-coding 50 0.005955
+23060 ZNF609 zinc finger protein 609 protein-coding 137 0.01632
+23061 TBC1D9B TBC1 domain family member 9B protein-coding 122 0.01453
+23062 GGA2 golgi associated, gamma adaptin ear containing, ARF binding protein 2 protein-coding 58 0.006907
+23063 WAPL WAPL cohesin release factor protein-coding 121 0.01441
+23064 SETX senataxin protein-coding 240 0.02858
+23065 EMC1 ER membrane protein complex subunit 1 protein-coding 93 0.01108
+23066 CAND2 cullin associated and neddylation dissociated 2 (putative) protein-coding 116 0.01381
+23067 SETD1B SET domain containing 1B protein-coding 120 0.01429
+23070 CMTR1 cap methyltransferase 1 protein-coding 75 0.008932
+23071 ERP44 endoplasmic reticulum protein 44 protein-coding 49 0.005835
+23072 HECW1 HECT, C2 and WW domain containing E3 ubiquitin protein ligase 1 protein-coding 309 0.0368
+23074 UHRF1BP1L UHRF1 binding protein 1 like protein-coding 168 0.02001
+23075 SWAP70 switching B cell complex subunit SWAP70 protein-coding 56 0.006669
+23076 RRP1B ribosomal RNA processing 1B protein-coding 63 0.007503
+23077 MYCBP2 MYC binding protein 2, E3 ubiquitin protein ligase protein-coding 437 0.05204
+23078 VWA8 von Willebrand factor A domain containing 8 protein-coding 179 0.02132
+23080 AVL9 AVL9 cell migration associated protein-coding 60 0.007145
+23081 KDM4C lysine demethylase 4C protein-coding 112 0.01334
+23082 PPRC1 peroxisome proliferator-activated receptor gamma, coactivator-related 1 protein-coding 166 0.01977
+23085 ERC1 ELKS/RAB6-interacting/CAST family member 1 protein-coding 119 0.01417
+23086 EXPH5 exophilin 5 protein-coding 213 0.02537
+23087 TRIM35 tripartite motif containing 35 protein-coding 60 0.007145
+23089 PEG10 paternally expressed 10 protein-coding 57 0.006788
+23090 ZNF423 zinc finger protein 423 protein-coding 258 0.03073
+23091 ZC3H13 zinc finger CCCH-type containing 13 protein-coding 226 0.02691
+23092 ARHGAP26 Rho GTPase activating protein 26 protein-coding 94 0.01119
+23093 TTLL5 tubulin tyrosine ligase like 5 protein-coding 138 0.01643
+23094 SIPA1L3 signal induced proliferation associated 1 like 3 protein-coding 187 0.02227
+23095 KIF1B kinesin family member 1B protein-coding 202 0.02406
+23096 IQSEC2 IQ motif and Sec7 domain 2 protein-coding 139 0.01655
+23097 CDK19 cyclin dependent kinase 19 protein-coding 60 0.007145
+23098 SARM1 sterile alpha and TIR motif containing 1 protein-coding 30 0.003573
+23099 ZBTB43 zinc finger and BTB domain containing 43 protein-coding 48 0.005716
+23101 MCF2L2 MCF.2 cell line derived transforming sequence-like 2 protein-coding 165 0.01965
+23102 TBC1D2B TBC1 domain family member 2B protein-coding 77 0.00917
+23105 FSTL4 follistatin like 4 protein-coding 102 0.01215
+23107 MRPS27 mitochondrial ribosomal protein S27 protein-coding 38 0.004525
+23108 RAP1GAP2 RAP1 GTPase activating protein 2 protein-coding 77 0.00917
+23109 DDN dendrin protein-coding 51 0.006074
+23111 SPART spartin protein-coding 117 0.01393
+23112 TNRC6B trinucleotide repeat containing 6B protein-coding 180 0.02144
+23113 CUL9 cullin 9 protein-coding 210 0.02501
+23114 NFASC neurofascin protein-coding 230 0.02739
+23116 TOGARAM1 TOG array regulator of axonemal microtubules 1 protein-coding 200 0.02382
+23117 NPIPB3 nuclear pore complex interacting protein family member B3 protein-coding 11 0.00131
+23118 TAB2 TGF-beta activated kinase 1 (MAP3K7) binding protein 2 protein-coding 73 0.008694
+23119 HIC2 HIC ZBTB transcriptional repressor 2 protein-coding 74 0.008813
+23120 ATP10B ATPase phospholipid transporting 10B (putative) protein-coding 236 0.02811
+23122 CLASP2 cytoplasmic linker associated protein 2 protein-coding 139 0.01655
+23125 CAMTA2 calmodulin binding transcription activator 2 protein-coding 142 0.01691
+23126 POGZ pogo transposable element derived with ZNF domain protein-coding 131 0.0156
+23127 COLGALT2 collagen beta(1-O)galactosyltransferase 2 protein-coding 97 0.01155
+23129 PLXND1 plexin D1 protein-coding 188 0.02239
+23130 ATG2A autophagy related 2A protein-coding 171 0.02036
+23131 GPATCH8 G-patch domain containing 8 protein-coding 184 0.02191
+23132 RAD54L2 RAD54 like 2 protein-coding 132 0.01572
+23133 PHF8 PHD finger protein 8 protein-coding 115 0.0137
+23135 KDM6B lysine demethylase 6B protein-coding 167 0.01989
+23136 EPB41L3 erythrocyte membrane protein band 4.1 like 3 protein-coding 272 0.03239
+23137 SMC5 structural maintenance of chromosomes 5 protein-coding 114 0.01358
+23138 N4BP3 NEDD4 binding protein 3 protein-coding 59 0.007026
+23139 MAST2 microtubule associated serine/threonine kinase 2 protein-coding 155 0.01846
+23140 ZZEF1 zinc finger ZZ-type and EF-hand domain containing 1 protein-coding 218 0.02596
+23141 ANKLE2 ankyrin repeat and LEM domain containing 2 protein-coding 119 0.01417
+23142 DCUN1D4 defective in cullin neddylation 1 domain containing 4 protein-coding 41 0.004883
+23143 LRCH1 leucine rich repeats and calponin homology domain containing 1 protein-coding 82 0.009765
+23144 ZC3H3 zinc finger CCCH-type containing 3 protein-coding 102 0.01215
+23145 SSPO SCO-spondin protein-coding 582 0.06931
+23148 NACAD NAC alpha domain containing protein-coding 79 0.009408
+23149 FCHO1 FCH domain only 1 protein-coding 110 0.0131
+23150 FRMD4B FERM domain containing 4B protein-coding 77 0.00917
+23151 GRAMD4 GRAM domain containing 4 protein-coding 68 0.008098
+23152 CIC capicua transcriptional repressor protein-coding 302 0.03597
+23154 NCDN neurochondrin protein-coding 75 0.008932
+23155 CLCC1 chloride channel CLIC like 1 protein-coding 52 0.006193
+23157 SEPT6 septin 6 protein-coding 116 0.01381
+23158 TBC1D9 TBC1 domain family member 9 protein-coding 143 0.01703
+23160 WDR43 WD repeat domain 43 protein-coding 49 0.005835
+23161 SNX13 sorting nexin 13 protein-coding 102 0.01215
+23162 MAPK8IP3 mitogen-activated protein kinase 8 interacting protein 3 protein-coding 138 0.01643
+23163 GGA3 golgi associated, gamma adaptin ear containing, ARF binding protein 3 protein-coding 57 0.006788
+23164 MPRIP myosin phosphatase Rho interacting protein protein-coding 115 0.0137
+23165 NUP205 nucleoporin 205 protein-coding 223 0.02656
+23166 STAB1 stabilin 1 protein-coding 262 0.0312
+23167 EFR3A EFR3 homolog A protein-coding 114 0.01358
+23168 RTF1 RTF1 homolog, Paf1/RNA polymerase II complex component protein-coding 81 0.009646
+23169 SLC35D1 solute carrier family 35 member D1 protein-coding 29 0.003454
+23170 TTLL12 tubulin tyrosine ligase like 12 protein-coding 59 0.007026
+23171 GPD1L glycerol-3-phosphate dehydrogenase 1 like protein-coding 37 0.004406
+23172 ABRAXAS2 abraxas 2, BRISC complex subunit protein-coding 59 0.007026
+23173 METAP1 methionyl aminopeptidase 1 protein-coding 268 0.03192
+23174 ZCCHC14 zinc finger CCHC-type containing 14 protein-coding 99 0.01179
+23175 LPIN1 lipin 1 protein-coding 102 0.01215
+23176 SEPT8 septin 8 protein-coding 46 0.005478
+23177 CEP68 centrosomal protein 68 protein-coding 75 0.008932
+23178 PASK PAS domain containing serine/threonine kinase protein-coding 138 0.01643
+23179 RGL1 ral guanine nucleotide dissociation stimulator like 1 protein-coding 106 0.01262
+23180 RFTN1 raftlin, lipid raft linker 1 protein-coding 83 0.009884
+23181 DIP2A disco interacting protein 2 homolog A protein-coding 155 0.01846
+23184 MESD mesoderm development LRP chaperone protein-coding 32 0.003811
+23185 LARP4B La ribonucleoprotein domain family member 4B protein-coding 157 0.0187
+23186 RCOR1 REST corepressor 1 protein-coding 47 0.005597
+23187 PHLDB1 pleckstrin homology like domain family B member 1 protein-coding 137 0.01632
+23189 KANK1 KN motif and ankyrin repeat domains 1 protein-coding 129 0.01536
+23190 UBXN4 UBX domain protein 4 protein-coding 69 0.008217
+23191 CYFIP1 cytoplasmic FMR1 interacting protein 1 protein-coding 143 0.01703
+23192 ATG4B autophagy related 4B cysteine peptidase protein-coding 35 0.004168
+23193 GANAB glucosidase II alpha subunit protein-coding 126 0.01501
+23194 FBXL7 F-box and leucine rich repeat protein 7 protein-coding 171 0.02036
+23195 MDN1 midasin AAA ATPase 1 protein-coding 416 0.04954
+23196 FAM120A family with sequence similarity 120A protein-coding 117 0.01393
+23197 FAF2 Fas associated factor family member 2 protein-coding 56 0.006669
+23198 PSME4 proteasome activator subunit 4 protein-coding 179 0.02132
+23199 GSE1 Gse1 coiled-coil protein protein-coding 113 0.01346
+23200 ATP11B ATPase phospholipid transporting 11B (putative) protein-coding 124 0.01477
+23201 FAM168A family with sequence similarity 168 member A protein-coding 18 0.002144
+23203 PMPCA peptidase, mitochondrial processing alpha subunit protein-coding 54 0.006431
+23204 ARL6IP1 ADP ribosylation factor like GTPase 6 interacting protein 1 protein-coding 24 0.002858
+23205 ACSBG1 acyl-CoA synthetase bubblegum family member 1 protein-coding 108 0.01286
+23207 PLEKHM2 pleckstrin homology and RUN domain containing M2 protein-coding 86 0.01024
+23208 SYT11 synaptotagmin 11 protein-coding 106 0.01262
+23209 MLC1 megalencephalic leukoencephalopathy with subcortical cysts 1 protein-coding 43 0.005121
+23210 JMJD6 arginine demethylase and lysine hydroxylase protein-coding 46 0.005478
+23211 ZC3H4 zinc finger CCCH-type containing 4 protein-coding 131 0.0156
+23212 RRS1 ribosome biogenesis regulator homolog protein-coding 27 0.003215
+23213 SULF1 sulfatase 1 protein-coding 200 0.02382
+23214 XPO6 exportin 6 protein-coding 117 0.01393
+23215 PRRC2C proline rich coiled-coil 2C protein-coding 210 0.02501
+23216 TBC1D1 TBC1 domain family member 1 protein-coding 105 0.0125
+23217 ZFR2 zinc finger RNA binding protein 2 protein-coding 97 0.01155
+23218 NBEAL2 neurobeachin like 2 protein-coding 193 0.02298
+23219 FBXO28 F-box protein 28 protein-coding 46 0.005478
+23220 DTX4 deltex E3 ubiquitin ligase 4 protein-coding 76 0.009051
+23221 RHOBTB2 Rho related BTB domain containing 2 protein-coding 72 0.008574
+23223 RRP12 ribosomal RNA processing 12 homolog protein-coding 124 0.01477
+23224 SYNE2 spectrin repeat containing nuclear envelope protein 2 protein-coding 527 0.06276
+23225 NUP210 nucleoporin 210 protein-coding 192 0.02287
+23228 PLCL2 phospholipase C like 2 protein-coding 121 0.01441
+23229 ARHGEF9 Cdc42 guanine nucleotide exchange factor 9 protein-coding 95 0.01131
+23230 VPS13A vacuolar protein sorting 13 homolog A protein-coding 284 0.03382
+23231 SEL1L3 SEL1L family member 3 protein-coding 120 0.01429
+23232 TBC1D12 TBC1 domain family member 12 protein-coding 65 0.007741
+23233 EXOC6B exocyst complex component 6B protein-coding 85 0.01012
+23234 DNAJC9 DnaJ heat shock protein family (Hsp40) member C9 protein-coding 30 0.003573
+23235 SIK2 salt inducible kinase 2 protein-coding 91 0.01084
+23236 PLCB1 phospholipase C beta 1 protein-coding 223 0.02656
+23237 ARC activity regulated cytoskeleton associated protein protein-coding 60 0.007145
+23239 PHLPP1 PH domain and leucine rich repeat protein phosphatase 1 protein-coding 124 0.01477
+23240 TMEM131L transmembrane 131 like protein-coding 145 0.01727
+23241 PACS2 phosphofurin acidic cluster sorting protein 2 protein-coding 99 0.01179
+23242 COBL cordon-bleu WH2 repeat protein protein-coding 177 0.02108
+23243 ANKRD28 ankyrin repeat domain 28 protein-coding 99 0.01179
+23244 PDS5A PDS5 cohesin associated factor A protein-coding 126 0.01501
+23245 ASTN2 astrotactin 2 protein-coding 241 0.0287
+23246 BOP1 block of proliferation 1 protein-coding 17 0.002025
+23247 KIAA0556 KIAA0556 protein-coding 193 0.02298
+23248 RPRD2 regulation of nuclear pre-mRNA domain containing 2 protein-coding 137 0.01632
+23250 ATP11A ATPase phospholipid transporting 11A protein-coding 138 0.01643
+23251 KIAA1024 KIAA1024 protein-coding 159 0.01894
+23252 OTUD3 OTU deubiquitinase 3 protein-coding 39 0.004645
+23253 ANKRD12 ankyrin repeat domain 12 protein-coding 199 0.0237
+23254 KAZN kazrin, periplakin interacting protein protein-coding 71 0.008455
+23255 MTCL1 microtubule crosslinking factor 1 protein-coding 191 0.02275
+23256 SCFD1 sec1 family domain containing 1 protein-coding 76 0.009051
+23258 DENND5A DENN domain containing 5A protein-coding 129 0.01536
+23259 DDHD2 DDHD domain containing 2 protein-coding 71 0.008455
+23261 CAMTA1 calmodulin binding transcription activator 1 protein-coding 222 0.02644
+23262 PPIP5K2 diphosphoinositol pentakisphosphate kinase 2 protein-coding 124 0.01477
+23263 MCF2L MCF.2 cell line derived transforming sequence like protein-coding 134 0.01596
+23264 ZC3H7B zinc finger CCCH-type containing 7B protein-coding 94 0.01119
+23265 EXOC7 exocyst complex component 7 protein-coding 172 0.02048
+23266 ADGRL2 adhesion G protein-coupled receptor L2 protein-coding 239 0.02846
+23268 DNMBP dynamin binding protein protein-coding 139 0.01655
+23269 MGA MGA, MAX dimerization protein protein-coding 324 0.03859
+23270 TSPYL4 TSPY like 4 protein-coding 47 0.005597
+23271 CAMSAP2 calmodulin regulated spectrin associated protein family member 2 protein-coding 171 0.02036
+23272 FAM208A family with sequence similarity 208 member A protein-coding 133 0.01584
+23274 CLEC16A C-type lectin domain containing 16A protein-coding 126 0.01501
+23275 POFUT2 protein O-fucosyltransferase 2 protein-coding 53 0.006312
+23276 KLHL18 kelch like family member 18 protein-coding 62 0.007384
+23277 CLUH clustered mitochondria homolog protein-coding 148 0.01763
+23279 NUP160 nucleoporin 160 protein-coding 131 0.0156
+23281 MTUS2 microtubule associated scaffold protein 2 protein-coding 259 0.03084
+23283 CSTF2T cleavage stimulation factor subunit 2 tau variant protein-coding 86 0.01024
+23284 ADGRL3 adhesion G protein-coupled receptor L3 protein-coding 333 0.03966
+23285 KIAA1107 KIAA1107 protein-coding 76 0.009051
+23286 WWC1 WW and C2 domain containing 1 protein-coding 128 0.01524
+23287 AGTPBP1 ATP/GTP binding protein 1 protein-coding 134 0.01596
+23288 IQCE IQ motif containing E protein-coding 78 0.009289
+23291 FBXW11 F-box and WD repeat domain containing 11 protein-coding 64 0.007622
+23293 SMG6 SMG6, nonsense mediated mRNA decay factor protein-coding 138 0.01643
+23294 ANKS1A ankyrin repeat and sterile alpha motif domain containing 1A protein-coding 108 0.01286
+23295 MGRN1 mahogunin ring finger 1 protein-coding 77 0.00917
+23299 BICD2 BICD cargo adaptor 2 protein-coding 96 0.01143
+23300 ATMIN ATM interactor protein-coding 73 0.008694
+23301 EHBP1 EH domain binding protein 1 protein-coding 132 0.01572
+23302 WSCD1 WSC domain containing 1 protein-coding 80 0.009527
+23303 KIF13B kinesin family member 13B protein-coding 156 0.01858
+23304 UBR2 ubiquitin protein ligase E3 component n-recognin 2 protein-coding 154 0.01834
+23305 ACSL6 acyl-CoA synthetase long chain family member 6 protein-coding 91 0.01084
+23306 NEMP1 nuclear envelope integral membrane protein 1 protein-coding 36 0.004287
+23307 FKBP15 FK506 binding protein 15 protein-coding 107 0.01274
+23308 ICOSLG inducible T cell costimulator ligand protein-coding 38 0.004525
+23309 SIN3B SIN3 transcription regulator family member B protein-coding 104 0.01239
+23310 NCAPD3 non-SMC condensin II complex subunit D3 protein-coding 173 0.0206
+23312 DMXL2 Dmx like 2 protein-coding 287 0.03418
+23313 KIAA0930 KIAA0930 protein-coding 57 0.006788
+23314 SATB2 SATB homeobox 2 protein-coding 155 0.01846
+23315 SLC9A8 solute carrier family 9 member A8 protein-coding 70 0.008336
+23316 CUX2 cut like homeobox 2 protein-coding 210 0.02501
+23317 DNAJC13 DnaJ heat shock protein family (Hsp40) member C13 protein-coding 209 0.02489
+23318 ZCCHC11 zinc finger CCHC-type containing 11 protein-coding 170 0.02025
+23321 TRIM2 tripartite motif containing 2 protein-coding 69 0.008217
+23322 RPGRIP1L RPGRIP1 like protein-coding 152 0.0181
+23324 MAN2B2 mannosidase alpha class 2B member 2 protein-coding 109 0.01298
+23325 WASHC4 WASH complex subunit 4 protein-coding 127 0.01512
+23326 USP22 ubiquitin specific peptidase 22 protein-coding 54 0.006431
+23327 NEDD4L neural precursor cell expressed, developmentally down-regulated 4-like, E3 ubiquitin protein ligase protein-coding 103 0.01227
+23328 SASH1 SAM and SH3 domain containing 1 protein-coding 144 0.01715
+23329 TBC1D30 TBC1 domain family member 30 protein-coding 19 0.002263
+23331 TTC28 tetratricopeptide repeat domain 28 protein-coding 116 0.01381
+23332 CLASP1 cytoplasmic linker associated protein 1 protein-coding 260 0.03096
+23333 DPY19L1 dpy-19 like C-mannosyltransferase 1 protein-coding 72 0.008574
+23334 SZT2 SZT2, KICSTOR complex subunit protein-coding 281 0.03346
+23335 WDR7 WD repeat domain 7 protein-coding 184 0.02191
+23336 SYNM synemin protein-coding 115 0.0137
+23338 JADE2 jade family PHD finger 2 protein-coding 78 0.009289
+23339 VPS39 VPS39, HOPS complex subunit protein-coding 87 0.01036
+23341 DNAJC16 DnaJ heat shock protein family (Hsp40) member C16 protein-coding 68 0.008098
+23344 ESYT1 extended synaptotagmin 1 protein-coding 106 0.01262
+23345 SYNE1 spectrin repeat containing nuclear envelope protein 1 protein-coding 964 0.1148
+23347 SMCHD1 structural maintenance of chromosomes flexible hinge domain containing 1 protein-coding 189 0.02251
+23348 DOCK9 dedicator of cytokinesis 9 protein-coding 165 0.01965
+23350 U2SURP U2 snRNP associated SURP domain containing protein-coding 118 0.01405
+23351 KHNYN KH and NYN domain containing protein-coding 64 0.007622
+23352 UBR4 ubiquitin protein ligase E3 component n-recognin 4 protein-coding 367 0.04371
+23353 SUN1 Sad1 and UNC84 domain containing 1 protein-coding 99 0.01179
+23354 HAUS5 HAUS augmin like complex subunit 5 protein-coding 80 0.009527
+23355 VPS8 VPS8, CORVET complex subunit protein-coding 143 0.01703
+23357 ANGEL1 angel homolog 1 protein-coding 70 0.008336
+23358 USP24 ubiquitin specific peptidase 24 protein-coding 185 0.02203
+23359 FAM189A1 family with sequence similarity 189 member A1 protein-coding 36 0.004287
+23360 FNBP4 formin binding protein 4 protein-coding 106 0.01262
+23361 ZNF629 zinc finger protein 629 protein-coding 80 0.009527
+23362 PSD3 pleckstrin and Sec7 domain containing 3 protein-coding 117 0.01393
+23363 OBSL1 obscurin like 1 protein-coding 171 0.02036
+23365 ARHGEF12 Rho guanine nucleotide exchange factor 12 protein-coding 156 0.01858
+23366 KIAA0895 KIAA0895 protein-coding 51 0.006074
+23367 LARP1 La ribonucleoprotein domain family member 1 protein-coding 120 0.01429
+23368 PPP1R13B protein phosphatase 1 regulatory subunit 13B protein-coding 112 0.01334
+23369 PUM2 pumilio RNA binding family member 2 protein-coding 120 0.01429
+23370 ARHGEF18 Rho/Rac guanine nucleotide exchange factor 18 protein-coding 127 0.01512
+23371 TNS2 tensin 2 protein-coding 119 0.01417
+23373 CRTC1 CREB regulated transcription coactivator 1 protein-coding 70 0.008336
+23376 UFL1 UFM1 specific ligase 1 protein-coding 95 0.01131
+23378 RRP8 ribosomal RNA processing 8 protein-coding 64 0.007622
+23379 ICE1 interactor of little elongation complex ELL subunit 1 protein-coding 264 0.03144
+23380 SRGAP2 SLIT-ROBO Rho GTPase activating protein 2 protein-coding 215 0.0256
+23381 SMG5 SMG5, nonsense mediated mRNA decay factor protein-coding 111 0.01322
+23382 AHCYL2 adenosylhomocysteinase like 2 protein-coding 71 0.008455
+23383 MAU2 MAU2 sister chromatid cohesion factor protein-coding 60 0.007145
+23384 SPECC1L sperm antigen with calponin homology and coiled-coil domains 1 like protein-coding 109 0.01298
+23385 NCSTN nicastrin protein-coding 101 0.01203
+23386 NUDCD3 NudC domain containing 3 protein-coding 34 0.004049
+23387 SIK3 SIK family kinase 3 protein-coding 129 0.01536
+23389 MED13L mediator complex subunit 13 like protein-coding 196 0.02334
+23390 ZDHHC17 zinc finger DHHC-type containing 17 protein-coding 74 0.008813
+23392 ECPAS Ecm29 proteasome adaptor and scaffold protein-coding 161 0.01917
+23394 ADNP activity dependent neuroprotector homeobox protein-coding 123 0.01465
+23395 LARS2 leucyl-tRNA synthetase 2, mitochondrial protein-coding 72 0.008574
+23396 PIP5K1C phosphatidylinositol-4-phosphate 5-kinase type 1 gamma protein-coding 83 0.009884
+23397 NCAPH non-SMC condensin I complex subunit H protein-coding 86 0.01024
+23398 PPWD1 peptidylprolyl isomerase domain and WD repeat containing 1 protein-coding 63 0.007503
+23399 CTDNEP1 CTD nuclear envelope phosphatase 1 protein-coding 18 0.002144
+23400 ATP13A2 ATPase cation transporting 13A2 protein-coding 120 0.01429
+23403 FBXO46 F-box protein 46 protein-coding 65 0.007741
+23404 EXOSC2 exosome component 2 protein-coding 20 0.002382
+23405 DICER1 dicer 1, ribonuclease III protein-coding 192 0.02287
+23406 COTL1 coactosin like F-actin binding protein 1 protein-coding 18 0.002144
+23408 SIRT5 sirtuin 5 protein-coding 39 0.004645
+23409 SIRT4 sirtuin 4 protein-coding 41 0.004883
+23410 SIRT3 sirtuin 3 protein-coding 34 0.004049
+23411 SIRT1 sirtuin 1 protein-coding 71 0.008455
+23412 COMMD3 COMM domain containing 3 protein-coding 15 0.001786
+23413 NCS1 neuronal calcium sensor 1 protein-coding 24 0.002858
+23414 ZFPM2 zinc finger protein, FOG family member 2 protein-coding 255 0.03037
+23415 KCNH4 potassium voltage-gated channel subfamily H member 4 protein-coding 177 0.02108
+23416 KCNH3 potassium voltage-gated channel subfamily H member 3 protein-coding 133 0.01584
+23417 MLYCD malonyl-CoA decarboxylase protein-coding 35 0.004168
+23418 CRB1 crumbs 1, cell polarity complex component protein-coding 308 0.03668
+23420 NOMO1 NODAL modulator 1 protein-coding 101 0.01203
+23421 ITGB3BP integrin subunit beta 3 binding protein protein-coding 20 0.002382
+23423 TMED3 transmembrane p24 trafficking protein 3 protein-coding 21 0.002501
+23424 TDRD7 tudor domain containing 7 protein-coding 95 0.01131
+23426 GRIP1 glutamate receptor interacting protein 1 protein-coding 156 0.01858
+23428 SLC7A8 solute carrier family 7 member 8 protein-coding 80 0.009527
+23429 RYBP RING1 and YY1 binding protein protein-coding 34 0.004049
+23430 TPSD1 tryptase delta 1 protein-coding 37 0.004406
+23431 AP4E1 adaptor related protein complex 4 epsilon 1 subunit protein-coding 106 0.01262
+23432 GPR161 G protein-coupled receptor 161 protein-coding 74 0.008813
+23433 RHOQ ras homolog family member Q protein-coding 22 0.00262
+23434 LINC01565 long intergenic non-protein coding RNA 1565 ncRNA 22 0.00262
+23435 TARDBP TAR DNA binding protein protein-coding 37 0.004406
+23436 CELA3B chymotrypsin like elastase family member 3B protein-coding 41 0.004883
+23438 HARS2 histidyl-tRNA synthetase 2, mitochondrial protein-coding 38 0.004525
+23439 ATP1B4 ATPase Na+/K+ transporting family member beta 4 protein-coding 81 0.009646
+23440 OTP orthopedia homeobox protein-coding 39 0.004645
+23443 SLC35A3 solute carrier family 35 member A3 protein-coding 36 0.004287
+23446 SLC44A1 solute carrier family 44 member 1 protein-coding 81 0.009646
+23450 SF3B3 splicing factor 3b subunit 3 protein-coding 206 0.02453
+23451 SF3B1 splicing factor 3b subunit 1 protein-coding 207 0.02465
+23452 ANGPTL2 angiopoietin like 2 protein-coding 58 0.006907
+23456 ABCB10 ATP binding cassette subfamily B member 10 protein-coding 78 0.009289
+23457 ABCB9 ATP binding cassette subfamily B member 9 protein-coding 61 0.007264
+23460 ABCA6 ATP binding cassette subfamily A member 6 protein-coding 187 0.02227
+23461 ABCA5 ATP binding cassette subfamily A member 5 protein-coding 176 0.02096
+23462 HEY1 hes related family bHLH transcription factor with YRPW motif 1 protein-coding 31 0.003692
+23463 ICMT isoprenylcysteine carboxyl methyltransferase protein-coding 25 0.002977
+23464 GCAT glycine C-acetyltransferase protein-coding 49 0.005835
+23466 CBX6 chromobox 6 protein-coding 52 0.006193
+23467 NPTXR neuronal pentraxin receptor protein-coding 41 0.004883
+23468 CBX5 chromobox 5 protein-coding 32 0.003811
+23469 PHF3 PHD finger protein 3 protein-coding 224 0.02668
+23471 TRAM1 translocation associated membrane protein 1 protein-coding 58 0.006907
+23473 CAPN7 calpain 7 protein-coding 69 0.008217
+23474 ETHE1 ETHE1, persulfide dioxygenase protein-coding 22 0.00262
+23475 QPRT quinolinate phosphoribosyltransferase protein-coding 22 0.00262
+23476 BRD4 bromodomain containing 4 protein-coding 147 0.01751
+23478 SEC11A SEC11 homolog A, signal peptidase complex subunit protein-coding 22 0.00262
+23479 ISCU iron-sulfur cluster assembly enzyme protein-coding 11 0.00131
+23480 SEC61G Sec61 translocon gamma subunit protein-coding 10 0.001191
+23481 PES1 pescadillo ribosomal biogenesis factor 1 protein-coding 62 0.007384
+23483 TGDS TDP-glucose 4,6-dehydratase protein-coding 38 0.004525
+23484 LEPROTL1 leptin receptor overlapping transcript like 1 protein-coding 9 0.001072
+23491 CES3 carboxylesterase 3 protein-coding 71 0.008455
+23492 CBX7 chromobox 7 protein-coding 26 0.003096
+23493 HEY2 hes related family bHLH transcription factor with YRPW motif 2 protein-coding 54 0.006431
+23495 TNFRSF13B TNF receptor superfamily member 13B protein-coding 43 0.005121
+23498 HAAO 3-hydroxyanthranilate 3,4-dioxygenase protein-coding 34 0.004049
+23499 MACF1 microtubule-actin crosslinking factor 1 protein-coding 426 0.05073
+23500 DAAM2 dishevelled associated activator of morphogenesis 2 protein-coding 153 0.01822
+23503 ZFYVE26 zinc finger FYVE-type containing 26 protein-coding 209 0.02489
+23504 RIMBP2 RIMS binding protein 2 protein-coding 217 0.02584
+23505 TMEM131 transmembrane protein 131 protein-coding 185 0.02203
+23506 BICRAL BRD4 interacting chromatin remodeling complex associated protein like protein-coding 116 0.01381
+23507 LRRC8B leucine rich repeat containing 8 VRAC subunit B protein-coding 77 0.00917
+23508 TTC9 tetratricopeptide repeat domain 9 protein-coding 15 0.001786
+23509 POFUT1 protein O-fucosyltransferase 1 protein-coding 41 0.004883
+23510 KCTD2 potassium channel tetramerization domain containing 2 protein-coding 30 0.003573
+23511 NUP188 nucleoporin 188 protein-coding 135 0.01608
+23512 SUZ12 SUZ12 polycomb repressive complex 2 subunit protein-coding 72 0.008574
+23513 SCRIB scribbled planar cell polarity protein protein-coding 168 0.02001
+23514 SPIDR scaffold protein involved in DNA repair protein-coding 93 0.01108
+23515 MORC3 MORC family CW-type zinc finger 3 protein-coding 99 0.01179
+23516 SLC39A14 solute carrier family 39 member 14 protein-coding 44 0.00524
+23517 MTREX Mtr4 exosome RNA helicase protein-coding 116 0.01381
+23518 R3HDM1 R3H domain containing 1 protein-coding 109 0.01298
+23519 ANP32D acidic nuclear phosphoprotein 32 family member D protein-coding 24 0.002858
+23521 RPL13A ribosomal protein L13a protein-coding 24 0.002858
+23522 KAT6B lysine acetyltransferase 6B protein-coding 169 0.02013
+23523 CABIN1 calcineurin binding protein 1 protein-coding 177 0.02108
+23524 SRRM2 serine/arginine repetitive matrix 2 protein-coding 307 0.03656
+23526 ARHGAP45 Rho GTPase activating protein 45 protein-coding 104 0.01239
+23527 ACAP2 ArfGAP with coiled-coil, ankyrin repeat and PH domains 2 protein-coding 89 0.0106
+23528 ZNF281 zinc finger protein 281 protein-coding 84 0.01
+23529 CLCF1 cardiotrophin like cytokine factor 1 protein-coding 42 0.005002
+23530 NNT nicotinamide nucleotide transhydrogenase protein-coding 116 0.01381
+23531 MMD monocyte to macrophage differentiation associated protein-coding 28 0.003335
+23532 PRAME preferentially expressed antigen in melanoma protein-coding 71 0.008455
+23533 PIK3R5 phosphoinositide-3-kinase regulatory subunit 5 protein-coding 105 0.0125
+23534 TNPO3 transportin 3 protein-coding 102 0.01215
+23536 ADAT1 adenosine deaminase, tRNA specific 1 protein-coding 56 0.006669
+23538 OR52A1 olfactory receptor family 52 subfamily A member 1 protein-coding 62 0.007384
+23539 SLC16A8 solute carrier family 16 member 8 protein-coding 19 0.002263
+23541 SEC14L2 SEC14 like lipid binding 2 protein-coding 101 0.01203
+23542 MAPK8IP2 mitogen-activated protein kinase 8 interacting protein 2 protein-coding 40 0.004764
+23543 RBFOX2 RNA binding fox-1 homolog 2 protein-coding 39 0.004645
+23544 SEZ6L seizure related 6 homolog like protein-coding 168 0.02001
+23545 ATP6V0A2 ATPase H+ transporting V0 subunit a2 protein-coding 86 0.01024
+23546 SYNGR4 synaptogyrin 4 protein-coding 31 0.003692
+23547 LILRA4 leukocyte immunoglobulin like receptor A4 protein-coding 101 0.01203
+23548 TTC33 tetratricopeptide repeat domain 33 protein-coding 36 0.004287
+23549 DNPEP aspartyl aminopeptidase protein-coding 50 0.005955
+23550 PSD4 pleckstrin and Sec7 domain containing 4 protein-coding 112 0.01334
+23551 RASD2 RASD family member 2 protein-coding 48 0.005716
+23552 CDK20 cyclin dependent kinase 20 protein-coding 37 0.004406
+23553 HYAL4 hyaluronoglucosaminidase 4 protein-coding 76 0.009051
+23554 TSPAN12 tetraspanin 12 protein-coding 41 0.004883
+23555 TSPAN15 tetraspanin 15 protein-coding 20 0.002382
+23556 PIGN phosphatidylinositol glycan anchor biosynthesis class N protein-coding 70 0.008336
+23557 SNAPIN SNAP associated protein protein-coding 12 0.001429
+23558 WBP2 WW domain binding protein 2 protein-coding 26 0.003096
+23559 WBP1 WW domain binding protein 1 protein-coding 24 0.002858
+23560 GTPBP4 GTP binding protein 4 protein-coding 80 0.009527
+23562 CLDN14 claudin 14 protein-coding 23 0.002739
+23563 CHST5 carbohydrate sulfotransferase 5 protein-coding 76 0.009051
+23564 DDAH2 dimethylarginine dimethylaminohydrolase 2 protein-coding 23 0.002739
+23566 LPAR3 lysophosphatidic acid receptor 3 protein-coding 50 0.005955
+23567 ZNF346 zinc finger protein 346 protein-coding 29 0.003454
+23568 ARL2BP ADP ribosylation factor like GTPase 2 binding protein protein-coding 16 0.001905
+23569 PADI4 peptidyl arginine deiminase 4 protein-coding 80 0.009527
+23576 DDAH1 dimethylarginine dimethylaminohydrolase 1 protein-coding 27 0.003215
+23580 CDC42EP4 CDC42 effector protein 4 protein-coding 36 0.004287
+23581 CASP14 caspase 14 protein-coding 41 0.004883
+23582 CCNDBP1 cyclin D1 binding protein 1 protein-coding 30 0.003573
+23583 SMUG1 single-strand-selective monofunctional uracil-DNA glycosylase 1 protein-coding 24 0.002858
+23584 VSIG2 V-set and immunoglobulin domain containing 2 protein-coding 86 0.01024
+23585 TMEM50A transmembrane protein 50A protein-coding 29 0.003454
+23586 DDX58 DExD/H-box helicase 58 protein-coding 98 0.01167
+23587 ELP5 elongator acetyltransferase complex subunit 5 protein-coding 34 0.004049
+23588 KLHDC2 kelch domain containing 2 protein-coding 41 0.004883
+23589 CARHSP1 calcium regulated heat stable protein 1 protein-coding 18 0.002144
+23590 PDSS1 decaprenyl diphosphate synthase subunit 1 protein-coding 45 0.005359
+23592 LEMD3 LEM domain containing 3 protein-coding 70 0.008336
+23593 HEBP2 heme binding protein 2 protein-coding 21 0.002501
+23594 ORC6 origin recognition complex subunit 6 protein-coding 20 0.002382
+23595 ORC3 origin recognition complex subunit 3 protein-coding 103 0.01227
+23596 OPN3 opsin 3 protein-coding 34 0.004049
+23597 ACOT9 acyl-CoA thioesterase 9 protein-coding 43 0.005121
+23598 PATZ1 POZ/BTB and AT hook containing zinc finger 1 protein-coding 68 0.008098
+23600 AMACR alpha-methylacyl-CoA racemase protein-coding 55 0.00655
+23601 CLEC5A C-type lectin domain containing 5A protein-coding 31 0.003692
+23603 CORO1C coronin 1C protein-coding 51 0.006074
+23604 DAPK2 death associated protein kinase 2 protein-coding 48 0.005716
+23607 CD2AP CD2 associated protein protein-coding 73 0.008694
+23608 MKRN1 makorin ring finger protein 1 protein-coding 41 0.004883
+23609 MKRN2 makorin ring finger protein 2 protein-coding 42 0.005002
+23612 PHLDA3 pleckstrin homology like domain family A member 3 protein-coding 20 0.002382
+23613 ZMYND8 zinc finger MYND-type containing 8 protein-coding 151 0.01798
+23615 PYY2 peptide YY 2 (pseudogene) pseudo 15 0.001786
+23616 SH3BP1 SH3 domain binding protein 1 protein-coding 59 0.007026
+23617 TSSK2 testis specific serine kinase 2 protein-coding 50 0.005955
+23619 ZIM2 zinc finger imprinted 2 protein-coding 104 0.01239
+23620 NTSR2 neurotensin receptor 2 protein-coding 45 0.005359
+23621 BACE1 beta-secretase 1 protein-coding 46 0.005478
+23623 RUSC1 RUN and SH3 domain containing 1 protein-coding 83 0.009884
+23624 CBLC Cbl proto-oncogene C protein-coding 47 0.005597
+23625 FAM89B family with sequence similarity 89 member B protein-coding 11 0.00131
+23626 SPO11 SPO11, initiator of meiotic double stranded breaks protein-coding 52 0.006193
+23627 PRND prion like protein doppel protein-coding 23 0.002739
+23630 KCNE5 potassium voltage-gated channel subfamily E regulatory subunit 5 protein-coding 19 0.002263
+23632 CA14 carbonic anhydrase 14 protein-coding 53 0.006312
+23633 KPNA6 karyopherin subunit alpha 6 protein-coding 92 0.01096
+23635 SSBP2 single stranded DNA binding protein 2 protein-coding 42 0.005002
+23636 NUP62 nucleoporin 62 protein-coding 74 0.008813
+23637 RABGAP1 RAB GTPase activating protein 1 protein-coding 106 0.01262
+23639 LRRC6 leucine rich repeat containing 6 protein-coding 85 0.01012
+23640 HSPBP1 HSPA (Hsp70) binding protein 1 protein-coding 33 0.00393
+23641 LDOC1 LDOC1, regulator of NFKB signaling protein-coding 42 0.005002
+23643 LY96 lymphocyte antigen 96 protein-coding 36 0.004287
+23644 EDC4 enhancer of mRNA decapping 4 protein-coding 115 0.0137
+23645 PPP1R15A protein phosphatase 1 regulatory subunit 15A protein-coding 66 0.00786
+23646 PLD3 phospholipase D family member 3 protein-coding 67 0.007979
+23647 ARFIP2 ADP ribosylation factor interacting protein 2 protein-coding 37 0.004406
+23648 SSBP3 single stranded DNA binding protein 3 protein-coding 43 0.005121
+23649 POLA2 DNA polymerase alpha 2, accessory subunit protein-coding 52 0.006193
+23650 TRIM29 tripartite motif containing 29 protein-coding 85 0.01012
+23654 PLXNB2 plexin B2 protein-coding 247 0.02942
+23657 SLC7A11 solute carrier family 7 member 11 protein-coding 59 0.007026
+23658 LSM5 LSM5 homolog, U6 small nuclear RNA and mRNA degradation associated protein-coding 9 0.001072
+23659 PLA2G15 phospholipase A2 group XV protein-coding 45 0.005359
+23660 ZKSCAN5 zinc finger with KRAB and SCAN domains 5 protein-coding 92 0.01096
+23666 UBBP4 ubiquitin B pseudogene 4 pseudo 106 0.01262
+23670 CEMIP2 cell migration inducing hyaluronidase 2 protein-coding 150 0.01786
+23671 TMEFF2 transmembrane protein with EGF like and two follistatin like domains 2 protein-coding 67 0.007979
+23673 STX12 syntaxin 12 protein-coding 20 0.002382
+23676 SMPX small muscle protein, X-linked protein-coding 11 0.00131
+23677 SH3BP4 SH3 domain binding protein 4 protein-coding 127 0.01512
+23678 SGK3 serum/glucocorticoid regulated kinase family member 3 protein-coding 129 0.01536
+23682 RAB38 RAB38, member RAS oncogene family protein-coding 31 0.003692
+23683 PRKD3 protein kinase D3 protein-coding 88 0.01048
+23704 KCNE4 potassium voltage-gated channel subfamily E regulatory subunit 4 protein-coding 25 0.002977
+23705 CADM1 cell adhesion molecule 1 protein-coding 84 0.01
+23708 GSPT2 G1 to S phase transition 2 protein-coding 99 0.01179
+23710 GABARAPL1 GABA type A receptor associated protein like 1 protein-coding 21 0.002501
+23729 SHPK sedoheptulokinase protein-coding 94 0.01119
+23731 TMEM245 transmembrane protein 245 protein-coding 57 0.006788
+23732 FRRS1L ferric chelate reductase 1 like protein-coding 27 0.003215
+23739 C3CER1 chromosome 3 common eliminated region 1 other 40 0.004764
+23741 EID1 EP300 interacting inhibitor of differentiation 1 protein-coding 23 0.002739
+23742 NPAP1 nuclear pore associated protein 1 protein-coding 356 0.0424
+23743 BHMT2 betaine--homocysteine S-methyltransferase 2 protein-coding 53 0.006312
+23746 AIPL1 aryl hydrocarbon receptor interacting protein like 1 protein-coding 45 0.005359
+23753 SDF2L1 stromal cell derived factor 2 like 1 protein-coding 13 0.001548
+23759 PPIL2 peptidylprolyl isomerase like 2 protein-coding 55 0.00655
+23760 PITPNB phosphatidylinositol transfer protein beta protein-coding 26 0.003096
+23761 PISD phosphatidylserine decarboxylase protein-coding 190 0.02263
+23762 OSBP2 oxysterol binding protein 2 protein-coding 74 0.008813
+23764 MAFF MAF bZIP transcription factor F protein-coding 11 0.00131
+23765 IL17RA interleukin 17 receptor A protein-coding 82 0.009765
+23766 GABARAPL3 GABA type A receptor associated protein like 3 pseudogene pseudo 8 0.0009527
+23767 FLRT3 fibronectin leucine rich transmembrane protein 3 protein-coding 90 0.01072
+23768 FLRT2 fibronectin leucine rich transmembrane protein 2 protein-coding 185 0.02203
+23769 FLRT1 fibronectin leucine rich transmembrane protein 1 protein-coding 54 0.006431
+23770 FKBP8 FK506 binding protein 8 protein-coding 54 0.006431
+23774 BRD1 bromodomain containing 1 protein-coding 225 0.0268
+23779 ARHGAP8 Rho GTPase activating protein 8 protein-coding 34 0.004049
+23780 APOL2 apolipoprotein L2 protein-coding 33 0.00393
+23784 POTEH POTE ankyrin domain family member H protein-coding 175 0.02084
+23786 BCL2L13 BCL2 like 13 protein-coding 50 0.005955
+23787 MTCH1 mitochondrial carrier 1 protein-coding 85 0.01012
+23788 MTCH2 mitochondrial carrier 2 protein-coding 38 0.004525
+24137 KIF4A kinesin family member 4A protein-coding 146 0.01739
+24138 IFIT5 interferon induced protein with tetratricopeptide repeats 5 protein-coding 41 0.004883
+24139 EML2 echinoderm microtubule associated protein like 2 protein-coding 85 0.01012
+24140 FTSJ1 FtsJ RNA methyltransferase homolog 1 protein-coding 39 0.004645
+24141 LAMP5 lysosomal associated membrane protein family member 5 protein-coding 61 0.007264
+24142 NAT6 N-acetyltransferase 6 protein-coding 25 0.002977
+24144 TFIP11 tuftelin interacting protein 11 protein-coding 82 0.009765
+24145 PANX1 pannexin 1 protein-coding 48 0.005716
+24146 CLDN15 claudin 15 protein-coding 24 0.002858
+24147 FJX1 four jointed box 1 protein-coding 18 0.002144
+24148 PRPF6 pre-mRNA processing factor 6 protein-coding 100 0.01191
+24149 ZNF318 zinc finger protein 318 protein-coding 202 0.02406
+25758 KIAA1549L KIAA1549 like protein-coding 232 0.02763
+25759 SHC2 SHC adaptor protein 2 protein-coding 58 0.006907
+25763 HYPM huntingtin interacting protein M protein-coding 21 0.002501
+25764 HYPK huntingtin interacting protein K protein-coding 14 0.001667
+25766 PRPF40B pre-mRNA processing factor 40 homolog B protein-coding 106 0.01262
+25769 SLC24A2 solute carrier family 24 member 2 protein-coding 114 0.01358
+25770 C22orf31 chromosome 22 open reading frame 31 protein-coding 29 0.003454
+25771 TBC1D22A TBC1 domain family member 22A protein-coding 75 0.008932
+25775 C22orf24 chromosome 22 open reading frame 24 protein-coding 13 0.001548
+25776 CBY1 chibby family member 1, beta catenin antagonist protein-coding 13 0.001548
+25777 SUN2 Sad1 and UNC84 domain containing 2 protein-coding 68 0.008098
+25778 DSTYK dual serine/threonine and tyrosine protein kinase protein-coding 103 0.01227
+25780 RASGRP3 RAS guanyl releasing protein 3 protein-coding 106 0.01262
+25782 RAB3GAP2 RAB3 GTPase activating non-catalytic protein subunit 2 protein-coding 165 0.01965
+25787 DGCR9 DiGeorge syndrome critical region gene 9 (non-protein coding) ncRNA 31 0.003692
+25788 RAD54B RAD54 homolog B protein-coding 102 0.01215
+25789 TMEM59L transmembrane protein 59 like protein-coding 51 0.006074
+25790 CFAP45 cilia and flagella associated protein 45 protein-coding 105 0.0125
+25791 NGEF neuronal guanine nucleotide exchange factor protein-coding 91 0.01084
+25792 CIZ1 CDKN1A interacting zinc finger protein 1 protein-coding 77 0.00917
+25793 FBXO7 F-box protein 7 protein-coding 67 0.007979
+25794 FSCN2 fascin actin-bundling protein 2, retinal protein-coding 30 0.003573
+25796 PGLS 6-phosphogluconolactonase protein-coding 20 0.002382
+25797 QPCT glutaminyl-peptide cyclotransferase protein-coding 49 0.005835
+25798 BRI3 brain protein I3 protein-coding 7 0.0008336
+25799 ZNF324 zinc finger protein 324 protein-coding 58 0.006907
+25800 SLC39A6 solute carrier family 39 member 6 protein-coding 84 0.01
+25801 GCA grancalcin protein-coding 28 0.003335
+25802 LMOD1 leiomodin 1 protein-coding 68 0.008098
+25803 SPDEF SAM pointed domain containing ETS transcription factor protein-coding 45 0.005359
+25804 LSM4 LSM4 homolog, U6 small nuclear RNA and mRNA degradation associated protein-coding 39 0.004645
+25805 BAMBI BMP and activin membrane bound inhibitor protein-coding 41 0.004883
+25806 VAX2 ventral anterior homeobox 2 protein-coding 42 0.005002
+25807 RHBDD3 rhomboid domain containing 3 protein-coding 18 0.002144
+25809 TTLL1 tubulin tyrosine ligase like 1 protein-coding 57 0.006788
+25812 POM121L1P POM121 transmembrane nucleoporin like 1, pseudogene pseudo 2 0.0002382
+25813 SAMM50 SAMM50 sorting and assembly machinery component protein-coding 52 0.006193
+25814 ATXN10 ataxin 10 protein-coding 44 0.00524
+25816 TNFAIP8 TNF alpha induced protein 8 protein-coding 19 0.002263
+25817 FAM19A5 family with sequence similarity 19 member A5, C-C motif chemokine like protein-coding 36 0.004287
+25818 KLK5 kallikrein related peptidase 5 protein-coding 46 0.005478
+25819 NOCT nocturnin protein-coding 38 0.004525
+25820 ARIH1 ariadne RBR E3 ubiquitin protein ligase 1 protein-coding 47 0.005597
+25821 MTO1 mitochondrial tRNA translation optimization 1 protein-coding 56 0.006669
+25822 DNAJB5 DnaJ heat shock protein family (Hsp40) member B5 protein-coding 50 0.005955
+25823 TPSG1 tryptase gamma 1 protein-coding 24 0.002858
+25824 PRDX5 peroxiredoxin 5 protein-coding 56 0.006669
+25825 BACE2 beta-site APP-cleaving enzyme 2 protein-coding 61 0.007264
+25827 FBXL2 F-box and leucine rich repeat protein 2 protein-coding 51 0.006074
+25828 TXN2 thioredoxin 2 protein-coding 28 0.003335
+25829 TMEM184B transmembrane protein 184B protein-coding 35 0.004168
+25830 SULT4A1 sulfotransferase family 4A member 1 protein-coding 34 0.004049
+25831 HECTD1 HECT domain E3 ubiquitin protein ligase 1 protein-coding 209 0.02489
+25832 NBPF14 NBPF member 14 protein-coding 56 0.006669
+25833 POU2F3 POU class 2 homeobox 3 protein-coding 53 0.006312
+25834 MGAT4C MGAT4 family member C protein-coding 129 0.01536
+25836 NIPBL NIPBL, cohesin loading factor protein-coding 341 0.04061
+25837 RAB26 RAB26, member RAS oncogene family protein-coding 22 0.00262
+25839 COG4 component of oligomeric golgi complex 4 protein-coding 75 0.008932
+25840 METTL7A methyltransferase like 7A protein-coding 23 0.002739
+25841 ABTB2 ankyrin repeat and BTB domain containing 2 protein-coding 78 0.009289
+25842 ASF1A anti-silencing function 1A histone chaperone protein-coding 16 0.001905
+25843 MOB4 MOB family member 4, phocein protein-coding 1 0.0001191
+25844 YIPF3 Yip1 domain family member 3 protein-coding 38 0.004525
+25847 ANAPC13 anaphase promoting complex subunit 13 protein-coding 9 0.001072
+25849 PARM1 prostate androgen-regulated mucin-like protein 1 protein-coding 42 0.005002
+25850 ZNF345 zinc finger protein 345 protein-coding 85 0.01012
+25851 TECPR1 tectonin beta-propeller repeat containing 1 protein-coding 113 0.01346
+25852 ARMC8 armadillo repeat containing 8 protein-coding 70 0.008336
+25853 DCAF12 DDB1 and CUL4 associated factor 12 protein-coding 65 0.007741
+25854 FAM149A family with sequence similarity 149 member A protein-coding 52 0.006193
+25855 BRMS1 breast cancer metastasis suppressor 1 protein-coding 51 0.006074
+25858 CATSPERZ catsper channel auxiliary subunit zeta protein-coding 7 0.0008336
+25859 PART1 prostate androgen-regulated transcript 1 (non-protein coding) ncRNA 2 0.0002382
+25861 WHRN whirlin protein-coding 77 0.00917
+25862 USP49 ubiquitin specific peptidase 49 protein-coding 66 0.00786
+25864 ABHD14A abhydrolase domain containing 14A protein-coding 23 0.002739
+25865 PRKD2 protein kinase D2 protein-coding 189 0.02251
+25870 SUMF2 sulfatase modifying factor 2 protein-coding 31 0.003692
+25871 NEPRO nucleolus and neural progenitor protein protein-coding 62 0.007384
+25873 RPL36 ribosomal protein L36 protein-coding 7 0.0008336
+25874 MPC2 mitochondrial pyruvate carrier 2 protein-coding 15 0.001786
+25875 LETMD1 LETM1 domain containing 1 protein-coding 52 0.006193
+25876 SPEF1 sperm flagellar 1 protein-coding 17 0.002025
+25878 MXRA5 matrix remodeling associated 5 protein-coding 401 0.04776
+25879 DCAF13 DDB1 and CUL4 associated factor 13 protein-coding 95 0.01131
+25880 TMEM186 transmembrane protein 186 protein-coding 24 0.002858
+25884 CHRDL2 chordin like 2 protein-coding 49 0.005835
+25885 POLR1A RNA polymerase I subunit A protein-coding 215 0.0256
+25886 POC1A POC1 centriolar protein A protein-coding 33 0.00393
+25888 ZNF473 zinc finger protein 473 protein-coding 100 0.01191
+25890 ABI3BP ABI family member 3 binding protein protein-coding 160 0.01905
+25891 PAMR1 peptidase domain containing associated with muscle regeneration 1 protein-coding 117 0.01393
+25893 TRIM58 tripartite motif containing 58 protein-coding 133 0.01584
+25894 PLEKHG4 pleckstrin homology and RhoGEF domain containing G4 protein-coding 113 0.01346
+25895 EEF1AKMT3 EEF1A lysine methyltransferase 3 protein-coding 22 0.00262
+25896 INTS7 integrator complex subunit 7 protein-coding 93 0.01108
+25897 RNF19A ring finger protein 19A, RBR E3 ubiquitin protein ligase protein-coding 97 0.01155
+25898 RCHY1 ring finger and CHY zinc finger domain containing 1 protein-coding 31 0.003692
+25900 IFFO1 intermediate filament family orphan 1 protein-coding 61 0.007264
+25901 CCDC28A coiled-coil domain containing 28A protein-coding 43 0.005121
+25902 MTHFD1L methylenetetrahydrofolate dehydrogenase (NADP+ dependent) 1 like protein-coding 101 0.01203
+25903 OLFML2B olfactomedin like 2B protein-coding 149 0.01774
+25904 CNOT10 CCR4-NOT transcription complex subunit 10 protein-coding 74 0.008813
+25906 ANAPC15 anaphase promoting complex subunit 15 protein-coding 20 0.002382
+25907 TMEM158 transmembrane protein 158 (gene/pseudogene) protein-coding 3 0.0003573
+25909 AHCTF1 AT-hook containing transcription factor 1 protein-coding 234 0.02787
+25911 DPCD deleted in primary ciliary dyskinesia homolog (mouse) protein-coding 25 0.002977
+25912 C1orf43 chromosome 1 open reading frame 43 protein-coding 32 0.003811
+25913 POT1 protection of telomeres 1 protein-coding 104 0.01239
+25914 RTTN rotatin protein-coding 209 0.02489
+25915 NDUFAF3 NADH:ubiquinone oxidoreductase complex assembly factor 3 protein-coding 22 0.00262
+25917 THUMPD3 THUMP domain containing 3 protein-coding 49 0.005835
+25920 NELFB negative elongation factor complex member B protein-coding 61 0.007264
+25921 ZDHHC5 zinc finger DHHC-type containing 5 protein-coding 79 0.009408
+25923 ATL3 atlastin GTPase 3 protein-coding 45 0.005359
+25924 MYRIP myosin VIIA and Rab interacting protein protein-coding 97 0.01155
+25925 ZNF521 zinc finger protein 521 protein-coding 278 0.03311
+25926 NOL11 nucleolar protein 11 protein-coding 65 0.007741
+25927 CNRIP1 cannabinoid receptor interacting protein 1 protein-coding 37 0.004406
+25928 SOSTDC1 sclerostin domain containing 1 protein-coding 14 0.001667
+25929 GEMIN5 gem nuclear organelle associated protein 5 protein-coding 117 0.01393
+25930 PTPN23 protein tyrosine phosphatase, non-receptor type 23 protein-coding 122 0.01453
+25932 CLIC4 chloride intracellular channel 4 protein-coding 26 0.003096
+25934 NIPSNAP3A nipsnap homolog 3A protein-coding 22 0.00262
+25936 NSL1 NSL1, MIS12 kinetochore complex component protein-coding 29 0.003454
+25937 WWTR1 WW domain containing transcription regulator 1 protein-coding 80 0.009527
+25938 HEATR5A HEAT repeat containing 5A protein-coding 99 0.01179
+25939 SAMHD1 SAM and HD domain containing deoxynucleoside triphosphate triphosphohydrolase 1 protein-coding 103 0.01227
+25940 FAM98A family with sequence similarity 98 member A protein-coding 71 0.008455
+25941 TPGS2 tubulin polyglutamylase complex subunit 2 protein-coding 29 0.003454
+25942 SIN3A SIN3 transcription regulator family member A protein-coding 173 0.0206
+25943 C20orf194 chromosome 20 open reading frame 194 protein-coding 137 0.01632
+25945 NECTIN3 nectin cell adhesion molecule 3 protein-coding 101 0.01203
+25946 ZNF385A zinc finger protein 385A protein-coding 40 0.004764
+25948 KBTBD2 kelch repeat and BTB domain containing 2 protein-coding 70 0.008336
+25949 SYF2 SYF2 pre-mRNA splicing factor protein-coding 28 0.003335
+25950 RWDD3 RWD domain containing 3 protein-coding 36 0.004287
+25953 PNKD paroxysmal nonkinesigenic dyskinesia protein-coding 107 0.01274
+25956 SEC31B SEC31 homolog B, COPII coat complex component protein-coding 111 0.01322
+25957 PNISR PNN interacting serine and arginine rich protein protein-coding 123 0.01465
+25959 KANK2 KN motif and ankyrin repeat domains 2 protein-coding 88 0.01048
+25960 ADGRA2 adhesion G protein-coupled receptor A2 protein-coding 125 0.01489
+25961 NUDT13 nudix hydrolase 13 protein-coding 39 0.004645
+25962 VIRMA vir like m6A methyltransferase associated protein-coding 194 0.0231
+25963 TMEM87A transmembrane protein 87A protein-coding 59 0.007026
+25966 C2CD2 C2 calcium dependent domain containing 2 protein-coding 56 0.006669
+25970 SH2B1 SH2B adaptor protein 1 protein-coding 84 0.01
+25972 UNC50 unc-50 inner nuclear membrane RNA binding protein protein-coding 26 0.003096
+25973 PARS2 prolyl-tRNA synthetase 2, mitochondrial protein-coding 46 0.005478
+25974 MMACHC methylmalonic aciduria (cobalamin deficiency) cblC type, with homocystinuria protein-coding 28 0.003335
+25975 EGFL6 EGF like domain multiple 6 protein-coding 67 0.007979
+25976 TIPARP TCDD inducible poly(ADP-ribose) polymerase protein-coding 63 0.007503
+25977 NECAP1 NECAP endocytosis associated 1 protein-coding 35 0.004168
+25978 CHMP2B charged multivesicular body protein 2B protein-coding 30 0.003573
+25979 DHRS7B dehydrogenase/reductase 7B protein-coding 36 0.004287
+25980 AAR2 AAR2 splicing factor homolog protein-coding 45 0.005359
+25981 DNAH1 dynein axonemal heavy chain 1 protein-coding 332 0.03954
+25983 NGDN neuroguidin protein-coding 45 0.005359
+25984 KRT23 keratin 23 protein-coding 68 0.008098
+25987 TSKU tsukushi, small leucine rich proteoglycan protein-coding 49 0.005835
+25988 HINFP histone H4 transcription factor protein-coding 66 0.00786
+25989 ULK3 unc-51 like kinase 3 protein-coding 46 0.005478
+25992 SNED1 sushi, nidogen and EGF like domains 1 protein-coding 120 0.01429
+25994 HIGD1A HIG1 hypoxia inducible domain family member 1A protein-coding 19 0.002263
+25996 REXO2 RNA exonuclease 2 protein-coding 40 0.004764
+25998 IBTK inhibitor of Bruton tyrosine kinase protein-coding 141 0.01679
+25999 CLIP3 CAP-Gly domain containing linker protein 3 protein-coding 74 0.008813
+26000 TBC1D10B TBC1 domain family member 10B protein-coding 56 0.006669
+26001 RNF167 ring finger protein 167 protein-coding 37 0.004406
+26002 MOXD1 monooxygenase DBH like 1 protein-coding 83 0.009884
+26003 GORASP2 golgi reassembly stacking protein 2 protein-coding 57 0.006788
+26005 C2CD3 C2 calcium dependent domain containing 3 protein-coding 183 0.02179
+26007 TKFC triokinase and FMN cyclase protein-coding 56 0.006669
+26009 ZZZ3 zinc finger ZZ-type containing 3 protein-coding 107 0.01274
+26010 SPATS2L spermatogenesis associated serine rich 2 like protein-coding 60 0.007145
+26011 TENM4 teneurin transmembrane protein 4 protein-coding 316 0.03763
+26012 NSMF NMDA receptor synaptonuclear signaling and neuronal migration factor protein-coding 45 0.005359
+26013 L3MBTL1 L3MBTL1, histone methyl-lysine binding protein protein-coding 93 0.01108
+26015 RPAP1 RNA polymerase II associated protein 1 protein-coding 125 0.01489
+26017 FAM32A family with sequence similarity 32 member A protein-coding 8 0.0009527
+26018 LRIG1 leucine rich repeats and immunoglobulin like domains 1 protein-coding 195 0.02322
+26019 UPF2 UPF2, regulator of nonsense mediated mRNA decay protein-coding 136 0.0162
+26020 LRP10 LDL receptor related protein 10 protein-coding 79 0.009408
+26022 TMEM98 transmembrane protein 98 protein-coding 69 0.008217
+26024 PTCD1 pentatricopeptide repeat domain 1 protein-coding 7 0.0008336
+26025 PCDHGA12 protocadherin gamma subfamily A, 12 protein-coding 155 0.01846
+26027 ACOT11 acyl-CoA thioesterase 11 protein-coding 62 0.007384
+26030 PLEKHG3 pleckstrin homology and RhoGEF domain containing G3 protein-coding 107 0.01274
+26031 OSBPL3 oxysterol binding protein like 3 protein-coding 107 0.01274
+26032 SUSD5 sushi domain containing 5 protein-coding 69 0.008217
+26033 ATRNL1 attractin like 1 protein-coding 225 0.0268
+26034 IPCEF1 interaction protein for cytohesin exchange factors 1 protein-coding 44 0.00524
+26035 GLCE glucuronic acid epimerase protein-coding 61 0.007264
+26036 ZNF451 zinc finger protein 451 protein-coding 129 0.01536
+26037 SIPA1L1 signal induced proliferation associated 1 like 1 protein-coding 212 0.02525
+26038 CHD5 chromodomain helicase DNA binding protein 5 protein-coding 261 0.03108
+26039 SS18L1 SS18L1, nBAF chromatin remodeling complex subunit protein-coding 43 0.005121
+26040 SETBP1 SET binding protein 1 protein-coding 245 0.02918
+26043 UBXN7 UBX domain protein 7 protein-coding 68 0.008098
+26045 LRRTM2 leucine rich repeat transmembrane neuronal 2 protein-coding 49 0.005835
+26046 LTN1 listerin E3 ubiquitin protein ligase 1 protein-coding 175 0.02084
+26047 CNTNAP2 contactin associated protein like 2 protein-coding 373 0.04442
+26048 ZNF500 zinc finger protein 500 protein-coding 48 0.005716
+26049 FAM169A family with sequence similarity 169 member A protein-coding 71 0.008455
+26050 SLITRK5 SLIT and NTRK like family member 5 protein-coding 235 0.02799
+26051 PPP1R16B protein phosphatase 1 regulatory subunit 16B protein-coding 116 0.01381
+26052 DNM3 dynamin 3 protein-coding 124 0.01477
+26053 AUTS2 AUTS2, activator of transcription and developmental regulator protein-coding 172 0.02048
+26054 SENP6 SUMO specific peptidase 6 protein-coding 115 0.0137
+26056 RAB11FIP5 RAB11 family interacting protein 5 protein-coding 63 0.007503
+26057 ANKRD17 ankyrin repeat domain 17 protein-coding 220 0.0262
+26058 GIGYF2 GRB10 interacting GYF protein 2 protein-coding 160 0.01905
+26059 ERC2 ELKS/RAB6-interacting/CAST family member 2 protein-coding 198 0.02358
+26060 APPL1 adaptor protein, phosphotyrosine interacting with PH domain and leucine zipper 1 protein-coding 81 0.009646
+26061 HACL1 2-hydroxyacyl-CoA lyase 1 protein-coding 55 0.00655
+26063 DECR2 2,4-dienoyl-CoA reductase 2 protein-coding 42 0.005002
+26064 RAI14 retinoic acid induced 14 protein-coding 118 0.01405
+26065 LSM14A LSM14A, mRNA processing body assembly factor protein-coding 64 0.007622
+26071 RTL8A retrotransposon Gag like 8A protein-coding 19 0.002263
+26073 POLDIP2 DNA polymerase delta interacting protein 2 protein-coding 42 0.005002
+26074 CFAP61 cilia and flagella associated protein 61 protein-coding 206 0.02453
+26083 TBC1D29 TBC1 domain family member 29 protein-coding 15 0.001786
+26084 ARHGEF26 Rho guanine nucleotide exchange factor 26 protein-coding 119 0.01417
+26085 KLK13 kallikrein related peptidase 13 protein-coding 58 0.006907
+26086 GPSM1 G protein signaling modulator 1 protein-coding 67 0.007979
+26088 GGA1 golgi associated, gamma adaptin ear containing, ARF binding protein 1 protein-coding 62 0.007384
+26090 ABHD12 abhydrolase domain containing 12 protein-coding 38 0.004525
+26091 HERC4 HECT and RLD domain containing E3 ubiquitin protein ligase 4 protein-coding 99 0.01179
+26092 TOR1AIP1 torsin 1A interacting protein 1 protein-coding 66 0.00786
+26093 CCDC9 coiled-coil domain containing 9 protein-coding 52 0.006193
+26094 DCAF4 DDB1 and CUL4 associated factor 4 protein-coding 60 0.007145
+26095 PTPN20 protein tyrosine phosphatase, non-receptor type 20 protein-coding 16 0.001905
+26097 CHTOP chromatin target of PRMT1 protein-coding 36 0.004287
+26098 EDRF1 erythroid differentiation regulatory factor 1 protein-coding 128 0.01524
+26099 SZRD1 SUZ RNA binding domain containing 1 protein-coding 19 0.002263
+26100 WIPI2 WD repeat domain, phosphoinositide interacting 2 protein-coding 44 0.00524
+26103 LRIT1 leucine rich repeat, Ig-like and transmembrane domains 1 protein-coding 98 0.01167
+26108 PYGO1 pygopus family PHD finger 1 protein-coding 56 0.006669
+26112 CCDC69 coiled-coil domain containing 69 protein-coding 36 0.004287
+26115 TANC2 tetratricopeptide repeat, ankyrin repeat and coiled-coil containing 2 protein-coding 186 0.02215
+26118 WSB1 WD repeat and SOCS box containing 1 protein-coding 55 0.00655
+26119 LDLRAP1 low density lipoprotein receptor adaptor protein 1 protein-coding 37 0.004406
+26121 PRPF31 pre-mRNA processing factor 31 protein-coding 47 0.005597
+26122 EPC2 enhancer of polycomb homolog 2 protein-coding 80 0.009527
+26123 TCTN3 tectonic family member 3 protein-coding 35 0.004168
+26127 FGFR1OP2 FGFR1 oncogene partner 2 protein-coding 26 0.003096
+26128 KIF1BP KIF1 binding protein protein-coding 58 0.006907
+26130 GAPVD1 GTPase activating protein and VPS9 domains 1 protein-coding 142 0.01691
+26133 TRPC4AP transient receptor potential cation channel subfamily C member 4 associated protein protein-coding 85 0.01012
+26135 SERBP1 SERPINE1 mRNA binding protein 1 protein-coding 49 0.005835
+26136 TES testin LIM domain protein protein-coding 41 0.004883
+26137 ZBTB20 zinc finger and BTB domain containing 20 protein-coding 200 0.02382
+26138 LINC00588 long intergenic non-protein coding RNA 588 ncRNA 26 0.003096
+26140 TTLL3 tubulin tyrosine ligase like 3 protein-coding 81 0.009646
+26145 IRF2BP1 interferon regulatory factor 2 binding protein 1 protein-coding 52 0.006193
+26146 TRAF3IP1 TRAF3 interacting protein 1 protein-coding 67 0.007979
+26147 PHF19 PHD finger protein 19 protein-coding 54 0.006431
+26149 ZNF658 zinc finger protein 658 protein-coding 149 0.01774
+26150 RIBC2 RIB43A domain with coiled-coils 2 protein-coding 32 0.003811
+26151 NAT9 N-acetyltransferase 9 (putative) protein-coding 29 0.003454
+26152 ZNF337 zinc finger protein 337 protein-coding 80 0.009527
+26153 KIF26A kinesin family member 26A protein-coding 138 0.01643
+26154 ABCA12 ATP binding cassette subfamily A member 12 protein-coding 352 0.04192
+26155 NOC2L NOC2 like nucleolar associated transcriptional repressor protein-coding 68 0.008098
+26156 RSL1D1 ribosomal L1 domain containing 1 protein-coding 57 0.006788
+26157 GIMAP2 GTPase, IMAP family member 2 protein-coding 54 0.006431
+26160 IFT172 intraflagellar transport 172 protein-coding 179 0.02132
+26164 MTG2 mitochondrial ribosome associated GTPase 2 protein-coding 44 0.00524
+26165 SPATA31A7 SPATA31 subfamily A member 7 protein-coding 32 0.003811
+26166 RGS22 regulator of G protein signaling 22 protein-coding 198 0.02358
+26167 PCDHB5 protocadherin beta 5 protein-coding 189 0.02251
+26168 SENP3 SUMO specific peptidase 3 protein-coding 52 0.006193
+26173 INTS1 integrator complex subunit 1 protein-coding 170 0.02025
+26175 TMEM251 transmembrane protein 251 protein-coding 11 0.00131
+26188 OR1C1 olfactory receptor family 1 subfamily C member 1 protein-coding 111 0.01322
+26189 OR1A2 olfactory receptor family 1 subfamily A member 2 protein-coding 58 0.006907
+26190 FBXW2 F-box and WD repeat domain containing 2 protein-coding 28 0.003335
+26191 PTPN22 protein tyrosine phosphatase, non-receptor type 22 protein-coding 99 0.01179
+26205 GMEB2 glucocorticoid modulatory element binding protein 2 protein-coding 59 0.007026
+26206 SPAG8 sperm associated antigen 8 protein-coding 49 0.005835
+26207 PITPNC1 phosphatidylinositol transfer protein cytoplasmic 1 protein-coding 47 0.005597
+26211 OR2F1 olfactory receptor family 2 subfamily F member 1 (gene/pseudogene) protein-coding 67 0.007979
+26212 OR2B6 olfactory receptor family 2 subfamily B member 6 protein-coding 56 0.006669
+26219 OR1J4 olfactory receptor family 1 subfamily J member 4 protein-coding 50 0.005955
+26220 DGCR5 DiGeorge syndrome critical region gene 5 (non-protein coding) ncRNA 50 0.005955
+26223 FBXL21 F-box and leucine rich repeat protein 21 (gene/pseudogene) pseudo 63 0.007503
+26224 FBXL3 F-box and leucine rich repeat protein 3 protein-coding 50 0.005955
+26225 ARL5A ADP ribosylation factor like GTPase 5A protein-coding 24 0.002858
+26227 PHGDH phosphoglycerate dehydrogenase protein-coding 45 0.005359
+26228 STAP1 signal transducing adaptor family member 1 protein-coding 56 0.006669
+26229 B3GAT3 beta-1,3-glucuronyltransferase 3 protein-coding 38 0.004525
+26230 TIAM2 T cell lymphoma invasion and metastasis 2 protein-coding 212 0.02525
+26231 LRRC29 leucine rich repeat containing 29 protein-coding 18 0.002144
+26232 FBXO2 F-box protein 2 protein-coding 17 0.002025
+26233 FBXL6 F-box and leucine rich repeat protein 6 protein-coding 28 0.003335
+26234 FBXL5 F-box and leucine rich repeat protein 5 protein-coding 64 0.007622
+26235 FBXL4 F-box and leucine rich repeat protein 4 protein-coding 83 0.009884
+26238 LINC01558 long intergenic non-protein coding RNA 1558 ncRNA 7 0.0008336
+26239 LCE2B late cornified envelope 2B protein-coding 50 0.005955
+26240 FAM50B family with sequence similarity 50 member B protein-coding 61 0.007264
+26245 OR2M4 olfactory receptor family 2 subfamily M member 4 protein-coding 109 0.01298
+26246 OR2L2 olfactory receptor family 2 subfamily L member 2 protein-coding 124 0.01477
+26248 OR2K2 olfactory receptor family 2 subfamily K member 2 protein-coding 36 0.004287
+26249 KLHL3 kelch like family member 3 protein-coding 62 0.007384
+26251 KCNG2 potassium voltage-gated channel modifier subfamily G member 2 protein-coding 55 0.00655
+26253 CLEC4E C-type lectin domain family 4 member E protein-coding 44 0.00524
+26254 OPTC opticin protein-coding 42 0.005002
+26256 CABYR calcium binding tyrosine phosphorylation regulated protein-coding 51 0.006074
+26257 NKX2-8 NK2 homeobox 8 protein-coding 20 0.002382
+26258 BLOC1S6 biogenesis of lysosomal organelles complex 1 subunit 6 protein-coding 19 0.002263
+26259 FBXW8 F-box and WD repeat domain containing 8 protein-coding 51 0.006074
+26260 FBXO25 F-box protein 25 protein-coding 41 0.004883
+26261 FBXO24 F-box protein 24 protein-coding 91 0.01084
+26262 TSPAN17 tetraspanin 17 protein-coding 32 0.003811
+26263 FBXO22 F-box protein 22 protein-coding 59 0.007026
+26266 SLC13A4 solute carrier family 13 member 4 protein-coding 68 0.008098
+26267 FBXO10 F-box protein 10 protein-coding 87 0.01036
+26268 FBXO9 F-box protein 9 protein-coding 40 0.004764
+26269 FBXO8 F-box protein 8 protein-coding 48 0.005716
+26270 FBXO6 F-box protein 6 protein-coding 27 0.003215
+26271 FBXO5 F-box protein 5 protein-coding 55 0.00655
+26272 FBXO4 F-box protein 4 protein-coding 54 0.006431
+26273 FBXO3 F-box protein 3 protein-coding 55 0.00655
+26275 HIBCH 3-hydroxyisobutyryl-CoA hydrolase protein-coding 41 0.004883
+26276 VPS33B VPS33B, late endosome and lysosome associated protein-coding 58 0.006907
+26277 TINF2 TERF1 interacting nuclear factor 2 protein-coding 37 0.004406
+26278 SACS sacsin molecular chaperone protein-coding 437 0.05204
+26279 PLA2G2D phospholipase A2 group IID protein-coding 18 0.002144
+26280 IL1RAPL2 interleukin 1 receptor accessory protein like 2 protein-coding 138 0.01643
+26281 FGF20 fibroblast growth factor 20 protein-coding 23 0.002739
+26284 ERAL1 Era like 12S mitochondrial rRNA chaperone 1 protein-coding 31 0.003692
+26285 CLDN17 claudin 17 protein-coding 52 0.006193
+26286 ARFGAP3 ADP ribosylation factor GTPase activating protein 3 protein-coding 108 0.01286
+26287 ANKRD2 ankyrin repeat domain 2 protein-coding 34 0.004049
+26289 AK5 adenylate kinase 5 protein-coding 100 0.01191
+26290 GALNT8 polypeptide N-acetylgalactosaminyltransferase 8 protein-coding 119 0.01417
+26291 FGF21 fibroblast growth factor 21 protein-coding 25 0.002977
+26292 MYCBP MYC binding protein protein-coding 11 0.00131
+26297 SERGEF secretion regulating guanine nucleotide exchange factor protein-coding 42 0.005002
+26298 EHF ETS homologous factor protein-coding 47 0.005597
+26301 GBGT1 globoside alpha-1,3-N-acetylgalactosaminyltransferase 1 (FORS blood group) protein-coding 38 0.004525
+26330 GAPDHS glyceraldehyde-3-phosphate dehydrogenase, spermatogenic protein-coding 67 0.007979
+26333 OR7A17 olfactory receptor family 7 subfamily A member 17 protein-coding 52 0.006193
+26338 OR5L2 olfactory receptor family 5 subfamily L member 2 protein-coding 136 0.0162
+26339 OR5K1 olfactory receptor family 5 subfamily K member 1 protein-coding 76 0.009051
+26341 OR5H1 olfactory receptor family 5 subfamily H member 1 protein-coding 102 0.01215
+26353 HSPB8 heat shock protein family B (small) member 8 protein-coding 42 0.005002
+26354 GNL3 G protein nucleolar 3 protein-coding 49 0.005835
+26355 FAM162A family with sequence similarity 162 member A protein-coding 23 0.002739
+26468 LHX6 LIM homeobox 6 protein-coding 39 0.004645
+26469 PTPN18 protein tyrosine phosphatase, non-receptor type 18 protein-coding 258 0.03073
+26470 SEZ6L2 seizure related 6 homolog like 2 protein-coding 125 0.01489
+26471 NUPR1 nuclear protein 1, transcriptional regulator protein-coding 14 0.001667
+26472 PPP1R14B protein phosphatase 1 regulatory inhibitor subunit 14B protein-coding 12 0.001429
+26476 OR10J1 olfactory receptor family 10 subfamily J member 1 protein-coding 74 0.008813
+26493 OR8B8 olfactory receptor family 8 subfamily B member 8 protein-coding 76 0.009051
+26494 OR8G1 olfactory receptor family 8 subfamily G member 1 (gene/pseudogene) protein-coding 63 0.007503
+26496 OR10A3 olfactory receptor family 10 subfamily A member 3 protein-coding 61 0.007264
+26497 OR10D3 olfactory receptor family 10 subfamily D member 3 (putative) protein-coding 7 0.0008336
+26499 PLEK2 pleckstrin 2 protein-coding 39 0.004645
+26502 NARF nuclear prelamin A recognition factor protein-coding 56 0.006669
+26503 SLC17A5 solute carrier family 17 member 5 protein-coding 68 0.008098
+26504 CNNM4 cyclin and CBS domain divalent metal cation transport mediator 4 protein-coding 94 0.01119
+26505 CNNM3 cyclin and CBS domain divalent metal cation transport mediator 3 protein-coding 41 0.004883
+26507 CNNM1 cyclin and CBS domain divalent metal cation transport mediator 1 protein-coding 95 0.01131
+26508 HEYL hes related family bHLH transcription factor with YRPW motif-like protein-coding 39 0.004645
+26509 MYOF myoferlin protein-coding 187 0.02227
+26511 CHIC2 cysteine rich hydrophobic domain 2 protein-coding 20 0.002382
+26512 INTS6 integrator complex subunit 6 protein-coding 87 0.01036
+26515 TIMM10B translocase of inner mitochondrial membrane 10B protein-coding 8 0.0009527
+26517 TIMM13 translocase of inner mitochondrial membrane 13 protein-coding 8 0.0009527
+26519 TIMM10 translocase of inner mitochondrial membrane 10 protein-coding 7 0.0008336
+26520 TIMM9 translocase of inner mitochondrial membrane 9 protein-coding 5 0.0005955
+26521 TIMM8B translocase of inner mitochondrial membrane 8 homolog B protein-coding 8 0.0009527
+26523 AGO1 argonaute 1, RISC catalytic component protein-coding 99 0.01179
+26524 LATS2 large tumor suppressor kinase 2 protein-coding 134 0.01596
+26525 IL36RN interleukin 36 receptor antagonist protein-coding 24 0.002858
+26526 TSPAN16 tetraspanin 16 protein-coding 35 0.004168
+26528 DAZAP1 DAZ associated protein 1 protein-coding 86 0.01024
+26529 OR12D2 olfactory receptor family 12 subfamily D member 2 (gene/pseudogene) protein-coding 72 0.008574
+26531 OR11A1 olfactory receptor family 11 subfamily A member 1 protein-coding 59 0.007026
+26532 OR10H3 olfactory receptor family 10 subfamily H member 3 protein-coding 34 0.004049
+26533 OR10G3 olfactory receptor family 10 subfamily G member 3 protein-coding 40 0.004764
+26534 OR10G2 olfactory receptor family 10 subfamily G member 2 protein-coding 60 0.007145
+26538 OR10H2 olfactory receptor family 10 subfamily H member 2 protein-coding 74 0.008813
+26539 OR10H1 olfactory receptor family 10 subfamily H member 1 protein-coding 69 0.008217
+26548 ITGB1BP2 integrin subunit beta 1 binding protein 2 protein-coding 50 0.005955
+26574 AATF apoptosis antagonizing transcription factor protein-coding 56 0.006669
+26575 RGS17 regulator of G protein signaling 17 protein-coding 42 0.005002
+26576 SRPK3 SRSF protein kinase 3 protein-coding 71 0.008455
+26577 PCOLCE2 procollagen C-endopeptidase enhancer 2 protein-coding 81 0.009646
+26578 OSTF1 osteoclast stimulating factor 1 protein-coding 25 0.002977
+26579 MYEOV myeloma overexpressed protein-coding 45 0.005359
+26580 BSCL2 BSCL2, seipin lipid droplet biogenesis associated protein-coding 53 0.006312
+26585 GREM1 gremlin 1, DAN family BMP antagonist protein-coding 21 0.002501
+26586 CKAP2 cytoskeleton associated protein 2 protein-coding 69 0.008217
+26589 MRPL46 mitochondrial ribosomal protein L46 protein-coding 26 0.003096
+26595 OR8B2 olfactory receptor family 8 subfamily B member 2 protein-coding 60 0.007145
+26608 TBL2 transducin beta like 2 protein-coding 52 0.006193
+26609 VCX variable charge, X-linked protein-coding 42 0.005002
+26610 ELP4 elongator acetyltransferase complex subunit 4 protein-coding 54 0.006431
+26648 OR7E24 olfactory receptor family 7 subfamily E member 24 protein-coding 71 0.008455
+26658 OR7C2 olfactory receptor family 7 subfamily C member 2 protein-coding 56 0.006669
+26659 OR7A5 olfactory receptor family 7 subfamily A member 5 protein-coding 53 0.006312
+26664 OR7C1 olfactory receptor family 7 subfamily C member 1 protein-coding 43 0.005121
+26682 OR4F4 olfactory receptor family 4 subfamily F member 4 protein-coding 13 0.001548
+26686 OR4E2 olfactory receptor family 4 subfamily E member 2 protein-coding 58 0.006907
+26689 OR4D1 olfactory receptor family 4 subfamily D member 1 protein-coding 31 0.003692
+26692 OR2W1 olfactory receptor family 2 subfamily W member 1 protein-coding 69 0.008217
+26696 OR2T1 olfactory receptor family 2 subfamily T member 1 protein-coding 112 0.01334
+26707 OR2J2 olfactory receptor family 2 subfamily J member 2 protein-coding 80 0.009527
+26716 OR2H1 olfactory receptor family 2 subfamily H member 1 protein-coding 58 0.006907
+26735 OR1L3 olfactory receptor family 1 subfamily L member 3 protein-coding 61 0.007264
+26737 OR1L1 olfactory receptor family 1 subfamily L member 1 protein-coding 39 0.004645
+26740 OR1J2 olfactory receptor family 1 subfamily J member 2 protein-coding 52 0.006193
+26747 NUFIP1 NUFIP1, FMR1 interacting protein 1 protein-coding 70 0.008336
+26748 GAGE12I G antigen 12I protein-coding 1 0.0001191
+26750 RPS6KC1 ribosomal protein S6 kinase C1 protein-coding 125 0.01489
+26751 SH3YL1 SH3 and SYLF domain containing 1 protein-coding 43 0.005121
+26762 HAVCR1 hepatitis A virus cellular receptor 1 protein-coding 77 0.00917
+26768 SNORA73B small nucleolar RNA, H/ACA box 73B snoRNA 5 0.0005955
+26776 SNORA71B small nucleolar RNA, H/ACA box 71B snoRNA 7 0.0008336
+26777 SNORA71A small nucleolar RNA, H/ACA box 71A snoRNA 3 0.0003573
+26821 SNORA74A small nucleolar RNA, H/ACA box 74A snoRNA 4 0.0004764
+26824 RNU11 RNA, U11 small nuclear snRNA 9 0.001072
+26851 SNORD3B-1 small nucleolar RNA, C/D box 3B-1 snoRNA 8 0.0009527
+26872 STEAP1 STEAP family member 1 protein-coding 44 0.00524
+26873 OPLAH 5-oxoprolinase, ATP-hydrolysing protein-coding 136 0.0162
+26952 SMR3A submaxillary gland androgen regulated protein 3A protein-coding 34 0.004049
+26953 RANBP6 RAN binding protein 6 protein-coding 122 0.01453
+26958 COPG2 coatomer protein complex subunit gamma 2 protein-coding 25 0.002977
+26959 HBP1 HMG-box transcription factor 1 protein-coding 63 0.007503
+26960 NBEA neurobeachin protein-coding 375 0.04466
+26973 CHORDC1 cysteine and histidine rich domain containing 1 protein-coding 71 0.008455
+26974 ZNF285 zinc finger protein 285 protein-coding 93 0.01108
+26984 SEC22A SEC22 homolog A, vesicle trafficking protein protein-coding 42 0.005002
+26985 AP3M1 adaptor related protein complex 3 mu 1 subunit protein-coding 40 0.004764
+26986 PABPC1 poly(A) binding protein cytoplasmic 1 protein-coding 66 0.00786
+26993 AKAP8L A-kinase anchoring protein 8 like protein-coding 62 0.007384
+26994 RNF11 ring finger protein 11 protein-coding 17 0.002025
+26995 TRUB2 TruB pseudouridine synthase family member 2 protein-coding 37 0.004406
+26996 GPR160 G protein-coupled receptor 160 protein-coding 38 0.004525
+26998 FETUB fetuin B protein-coding 56 0.006669
+26999 CYFIP2 cytoplasmic FMR1 interacting protein 2 protein-coding 158 0.01882
+27000 DNAJC2 DnaJ heat shock protein family (Hsp40) member C2 protein-coding 68 0.008098
+27004 TCL6 T cell leukemia/lymphoma 6 (non-protein coding) ncRNA 55 0.00655
+27005 USP21 ubiquitin specific peptidase 21 protein-coding 156 0.01858
+27006 FGF22 fibroblast growth factor 22 protein-coding 11 0.00131
+27010 TPK1 thiamin pyrophosphokinase 1 protein-coding 48 0.005716
+27012 KCNV1 potassium voltage-gated channel modifier subfamily V member 1 protein-coding 131 0.0156
+27013 CNPPD1 cyclin Pas1/PHO80 domain containing 1 protein-coding 46 0.005478
+27018 BEX3 brain expressed X-linked 3 protein-coding 23 0.002739
+27019 DNAI1 dynein axonemal intermediate chain 1 protein-coding 86 0.01024
+27020 NPTN neuroplastin protein-coding 44 0.00524
+27022 FOXD3 forkhead box D3 protein-coding 36 0.004287
+27023 FOXB1 forkhead box B1 protein-coding 25 0.002977
+27030 MLH3 mutL homolog 3 protein-coding 130 0.01548
+27031 NPHP3 nephrocystin 3 protein-coding 134 0.01596
+27032 ATP2C1 ATPase secretory pathway Ca2+ transporting 1 protein-coding 126 0.01501
+27033 ZBTB32 zinc finger and BTB domain containing 32 protein-coding 56 0.006669
+27034 ACAD8 acyl-CoA dehydrogenase family member 8 protein-coding 39 0.004645
+27035 NOX1 NADPH oxidase 1 protein-coding 89 0.0106
+27036 SIGLEC7 sialic acid binding Ig like lectin 7 protein-coding 74 0.008813
+27037 TRMT2A tRNA methyltransferase 2 homolog A protein-coding 62 0.007384
+27039 PKD2L2 polycystin 2 like 2, transient receptor potential cation channel protein-coding 93 0.01108
+27040 LAT linker for activation of T cells protein-coding 33 0.00393
+27042 DIEXF digestive organ expansion factor homolog (zebrafish) protein-coding 110 0.0131
+27043 PELP1 proline, glutamate and leucine rich protein 1 protein-coding 88 0.01048
+27044 SND1 staphylococcal nuclease and tudor domain containing 1 protein-coding 124 0.01477
+27063 ANKRD1 ankyrin repeat domain 1 protein-coding 41 0.004883
+27065 NSG1 neuronal vesicle trafficking associated 1 protein-coding 33 0.00393
+27067 STAU2 staufen double-stranded RNA binding protein 2 protein-coding 71 0.008455
+27068 PPA2 pyrophosphatase (inorganic) 2 protein-coding 35 0.004168
+27069 GHITM growth hormone inducible transmembrane protein protein-coding 40 0.004764
+27071 DAPP1 dual adaptor of phosphotyrosine and 3-phosphoinositides 1 protein-coding 44 0.00524
+27072 VPS41 VPS41, HOPS complex subunit protein-coding 111 0.01322
+27074 LAMP3 lysosomal associated membrane protein 3 protein-coding 70 0.008336
+27075 TSPAN13 tetraspanin 13 protein-coding 17 0.002025
+27076 LYPD3 LY6/PLAUR domain containing 3 protein-coding 48 0.005716
+27077 B9D1 B9 domain containing 1 protein-coding 14 0.001667
+27079 RPUSD2 RNA pseudouridylate synthase domain containing 2 protein-coding 48 0.005716
+27085 MTBP MDM2 binding protein protein-coding 103 0.01227
+27086 FOXP1 forkhead box P1 protein-coding 127 0.01512
+27087 B3GAT1 beta-1,3-glucuronyltransferase 1 protein-coding 74 0.008813
+27089 UQCRQ ubiquinol-cytochrome c reductase complex III subunit VII protein-coding 10 0.001191
+27090 ST6GALNAC4 ST6 N-acetylgalactosaminide alpha-2,6-sialyltransferase 4 protein-coding 27 0.003215
+27091 CACNG5 calcium voltage-gated channel auxiliary subunit gamma 5 protein-coding 66 0.00786
+27092 CACNG4 calcium voltage-gated channel auxiliary subunit gamma 4 protein-coding 39 0.004645
+27094 KCNMB3 potassium calcium-activated channel subfamily M regulatory beta subunit 3 protein-coding 39 0.004645
+27095 TRAPPC3 trafficking protein particle complex 3 protein-coding 11 0.00131
+27097 TAF5L TATA-box binding protein associated factor 5 like protein-coding 68 0.008098
+27098 CLUL1 clusterin like 1 protein-coding 62 0.007384
+27101 CACYBP calcyclin binding protein protein-coding 35 0.004168
+27102 EIF2AK1 eukaryotic translation initiation factor 2 alpha kinase 1 protein-coding 92 0.01096
+27106 ARRDC2 arrestin domain containing 2 protein-coding 33 0.00393
+27107 ZBTB11 zinc finger and BTB domain containing 11 protein-coding 120 0.01429
+27109 ATP5S ATP synthase, H+ transporting, mitochondrial Fo complex subunit s (factor B) protein-coding 23 0.002739
+27111 SDCBP2 syndecan binding protein 2 protein-coding 36 0.004287
+27112 FAM155B family with sequence similarity 155 member B protein-coding 60 0.007145
+27113 BBC3 BCL2 binding component 3 protein-coding 19 0.002263
+27115 PDE7B phosphodiesterase 7B protein-coding 59 0.007026
+27120 DKKL1 dickkopf like acrosomal protein 1 protein-coding 38 0.004525
+27121 DKK4 dickkopf WNT signaling pathway inhibitor 4 protein-coding 29 0.003454
+27122 DKK3 dickkopf WNT signaling pathway inhibitor 3 protein-coding 39 0.004645
+27123 DKK2 dickkopf WNT signaling pathway inhibitor 2 protein-coding 86 0.01024
+27124 INPP5J inositol polyphosphate-5-phosphatase J protein-coding 61 0.007264
+27125 AFF4 AF4/FMR2 family member 4 protein-coding 128 0.01524
+27127 SMC1B structural maintenance of chromosomes 1B protein-coding 127 0.01512
+27128 CYTH4 cytohesin 4 protein-coding 52 0.006193
+27129 HSPB7 heat shock protein family B (small) member 7 protein-coding 21 0.002501
+27130 INVS inversin protein-coding 109 0.01298
+27131 SNX5 sorting nexin 5 protein-coding 38 0.004525
+27132 CPNE7 copine 7 protein-coding 61 0.007264
+27133 KCNH5 potassium voltage-gated channel subfamily H member 5 protein-coding 201 0.02394
+27134 TJP3 tight junction protein 3 protein-coding 110 0.0131
+27136 MORC1 MORC family CW-type zinc finger 1 protein-coding 210 0.02501
+27141 CIDEB cell death-inducing DFFA-like effector b protein-coding 21 0.002501
+27143 PALD1 phosphatase domain containing, paladin 1 protein-coding 103 0.01227
+27145 FILIP1 filamin A interacting protein 1 protein-coding 191 0.02275
+27146 FAM184B family with sequence similarity 184 member B protein-coding 81 0.009646
+27147 DENND2A DENN domain containing 2A protein-coding 140 0.01667
+27148 STK36 serine/threonine kinase 36 protein-coding 122 0.01453
+27151 CPAMD8 C3 and PZP like, alpha-2-macroglobulin domain containing 8 protein-coding 281 0.03346
+27152 INTU inturned planar cell polarity protein protein-coding 121 0.01441
+27153 ZNF777 zinc finger protein 777 protein-coding 108 0.01286
+27154 BRPF3 bromodomain and PHD finger containing 3 protein-coding 113 0.01346
+27156 RSPH14 radial spoke head 14 homolog protein-coding 47 0.005597
+27158 NDOR1 NADPH dependent diflavin oxidoreductase 1 protein-coding 46 0.005478
+27159 CHIA chitinase, acidic protein-coding 81 0.009646
+27160 INGX inhibitor of growth family, X-linked (pseudogene) pseudo 32 0.003811
+27161 AGO2 argonaute 2, RISC catalytic component protein-coding 127 0.01512
+27163 NAAA N-acylethanolamine acid amidase protein-coding 36 0.004287
+27164 SALL3 spalt like transcription factor 3 protein-coding 190 0.02263
+27165 GLS2 glutaminase 2 protein-coding 104 0.01239
+27166 PRELID1 PRELI domain containing 1 protein-coding 14 0.001667
+27173 SLC39A1 solute carrier family 39 member 1 protein-coding 32 0.003811
+27175 TUBG2 tubulin gamma 2 protein-coding 51 0.006074
+27177 IL36B interleukin 36 beta protein-coding 35 0.004168
+27178 IL37 interleukin 37 protein-coding 34 0.004049
+27179 IL36A interleukin 36 alpha protein-coding 25 0.002977
+27180 SIGLEC9 sialic acid binding Ig like lectin 9 protein-coding 80 0.009527
+27181 SIGLEC8 sialic acid binding Ig like lectin 8 protein-coding 120 0.01429
+27183 VPS4A vacuolar protein sorting 4 homolog A protein-coding 53 0.006312
+27185 DISC1 DISC1 scaffold protein protein-coding 113 0.01346
+27189 IL17C interleukin 17C protein-coding 26 0.003096
+27190 IL17B interleukin 17B protein-coding 24 0.002858
+27197 GPR82 G protein-coupled receptor 82 protein-coding 42 0.005002
+27198 HCAR1 hydroxycarboxylic acid receptor 1 protein-coding 39 0.004645
+27199 OXGR1 oxoglutarate receptor 1 protein-coding 50 0.005955
+27201 GPR78 G protein-coupled receptor 78 protein-coding 63 0.007503
+27202 C5AR2 complement component 5a receptor 2 protein-coding 36 0.004287
+27229 TUBGCP4 tubulin gamma complex associated protein 4 protein-coding 53 0.006312
+27230 SERP1 stress associated endoplasmic reticulum protein 1 protein-coding 9 0.001072
+27231 NMRK2 nicotinamide riboside kinase 2 protein-coding 29 0.003454
+27232 GNMT glycine N-methyltransferase protein-coding 23 0.002739
+27233 SULT1C4 sulfotransferase family 1C member 4 protein-coding 51 0.006074
+27235 COQ2 coenzyme Q2, polyprenyltransferase protein-coding 22 0.00262
+27236 ARFIP1 ADP ribosylation factor interacting protein 1 protein-coding 32 0.003811
+27237 ARHGEF16 Rho guanine nucleotide exchange factor 16 protein-coding 65 0.007741
+27238 GPKOW G-patch domain and KOW motifs protein-coding 69 0.008217
+27239 GPR162 G protein-coupled receptor 162 protein-coding 75 0.008932
+27240 SIT1 signaling threshold regulating transmembrane adaptor 1 protein-coding 18 0.002144
+27241 BBS9 Bardet-Biedl syndrome 9 protein-coding 137 0.01632
+27242 TNFRSF21 TNF receptor superfamily member 21 protein-coding 71 0.008455
+27243 CHMP2A charged multivesicular body protein 2A protein-coding 34 0.004049
+27244 SESN1 sestrin 1 protein-coding 46 0.005478
+27245 AHDC1 AT-hook DNA binding motif containing 1 protein-coding 133 0.01584
+27246 RNF115 ring finger protein 115 protein-coding 30 0.003573
+27247 NFU1 NFU1 iron-sulfur cluster scaffold protein-coding 29 0.003454
+27248 ERLEC1 endoplasmic reticulum lectin 1 protein-coding 52 0.006193
+27249 MMADHC methylmalonic aciduria and homocystinuria, cblD type protein-coding 31 0.003692
+27250 PDCD4 programmed cell death 4 protein-coding 50 0.005955
+27252 KLHL20 kelch like family member 20 protein-coding 66 0.00786
+27253 PCDH17 protocadherin 17 protein-coding 293 0.03489
+27254 CSDC2 cold shock domain containing C2 protein-coding 15 0.001786
+27255 CNTN6 contactin 6 protein-coding 255 0.03037
+27257 LSM1 LSM1 homolog, mRNA degradation associated protein-coding 21 0.002501
+27258 LSM3 LSM3 homolog, U6 small nuclear RNA and mRNA degradation associated protein-coding 17 0.002025
+27259 HPLH1 hemophagocytic lymphohistiocytosis 1 unknown 46 0.005478
+27283 TINAG tubulointerstitial nephritis antigen protein-coding 113 0.01346
+27284 SULT1B1 sulfotransferase family 1B member 1 protein-coding 77 0.00917
+27285 TEKT2 tektin 2 protein-coding 38 0.004525
+27286 SRPX2 sushi repeat containing protein, X-linked 2 protein-coding 67 0.007979
+27287 VENTX VENT homeobox protein-coding 39 0.004645
+27288 RBMXL2 RNA binding motif protein, X-linked like 2 protein-coding 77 0.00917
+27289 RND1 Rho family GTPase 1 protein-coding 38 0.004525
+27290 SPINK4 serine peptidase inhibitor, Kazal type 4 protein-coding 16 0.001905
+27291 R3HCC1L R3H domain and coiled-coil containing 1 like protein-coding 89 0.0106
+27292 DIMT1 DIM1 dimethyladenosine transferase 1 homolog protein-coding 29 0.003454
+27293 SMPDL3B sphingomyelin phosphodiesterase acid like 3B protein-coding 39 0.004645
+27294 DHDH dihydrodiol dehydrogenase protein-coding 38 0.004525
+27295 PDLIM3 PDZ and LIM domain 3 protein-coding 44 0.00524
+27296 TP53TG5 TP53 target 5 protein-coding 44 0.00524
+27297 CRCP CGRP receptor component protein-coding 13 0.001548
+27299 ADAMDEC1 ADAM like decysin 1 protein-coding 73 0.008694
+27300 ZNF544 zinc finger protein 544 protein-coding 88 0.01048
+27301 APEX2 apurinic/apyrimidinic endodeoxyribonuclease 2 protein-coding 66 0.00786
+27302 BMP10 bone morphogenetic protein 10 protein-coding 66 0.00786
+27303 RBMS3 RNA binding motif single stranded interacting protein 3 protein-coding 65 0.007741
+27304 MOCS3 molybdenum cofactor synthesis 3 protein-coding 56 0.006669
+27306 HPGDS hematopoietic prostaglandin D synthase protein-coding 35 0.004168
+27309 ZNF330 zinc finger protein 330 protein-coding 49 0.005835
+27314 RAB30 RAB30, member RAS oncogene family protein-coding 24 0.002858
+27315 PGAP2 post-GPI attachment to proteins 2 protein-coding 38 0.004525
+27316 RBMX RNA binding motif protein, X-linked protein-coding 63 0.007503
+27319 BHLHE22 basic helix-loop-helix family member e22 protein-coding 37 0.004406
+27324 TOX3 TOX high mobility group box family member 3 protein-coding 75 0.008932
+27327 TNRC6A trinucleotide repeat containing 6A protein-coding 211 0.02513
+27328 PCDH11X protocadherin 11 X-linked protein-coding 402 0.04787
+27329 ANGPTL3 angiopoietin like 3 protein-coding 46 0.005478
+27330 RPS6KA6 ribosomal protein S6 kinase A6 protein-coding 149 0.01774
+27332 ZNF638 zinc finger protein 638 protein-coding 189 0.02251
+27333 GOLIM4 golgi integral membrane protein 4 protein-coding 102 0.01215
+27334 P2RY10 P2Y receptor family member 10 protein-coding 101 0.01203
+27335 EIF3K eukaryotic translation initiation factor 3 subunit K protein-coding 33 0.00393
+27336 HTATSF1 HIV-1 Tat specific factor 1 protein-coding 123 0.01465
+27338 UBE2S ubiquitin conjugating enzyme E2 S protein-coding 21 0.002501
+27339 PRPF19 pre-mRNA processing factor 19 protein-coding 59 0.007026
+27340 UTP20 UTP20, small subunit processome component protein-coding 245 0.02918
+27341 RRP7A ribosomal RNA processing 7 homolog A protein-coding 22 0.00262
+27342 RABGEF1 RAB guanine nucleotide exchange factor 1 protein-coding 8 0.0009527
+27343 POLL DNA polymerase lambda protein-coding 47 0.005597
+27344 PCSK1N proprotein convertase subtilisin/kexin type 1 inhibitor protein-coding 4 0.0004764
+27345 KCNMB4 potassium calcium-activated channel subfamily M regulatory beta subunit 4 protein-coding 41 0.004883
+27346 TMEM97 transmembrane protein 97 protein-coding 20 0.002382
+27347 STK39 serine/threonine kinase 39 protein-coding 60 0.007145
+27348 TOR1B torsin family 1 member B protein-coding 34 0.004049
+27349 MCAT malonyl-CoA-acyl carrier protein transacylase protein-coding 33 0.00393
+27350 APOBEC3C apolipoprotein B mRNA editing enzyme catalytic subunit 3C protein-coding 27 0.003215
+27351 DESI1 desumoylating isopeptidase 1 protein-coding 37 0.004406
+27352 SGSM3 small G protein signaling modulator 3 protein-coding 72 0.008574
+27429 HTRA2 HtrA serine peptidase 2 protein-coding 49 0.005835
+27430 MAT2B methionine adenosyltransferase 2B protein-coding 41 0.004883
+27433 TOR2A torsin family 2 member A protein-coding 25 0.002977
+27434 POLM DNA polymerase mu protein-coding 64 0.007622
+27436 EML4 echinoderm microtubule associated protein like 4 protein-coding 96 0.01143
+27437 HSFY1P1 heat shock transcription factor, Y-linked 1 pseudogene 1 pseudo 37 0.004406
+27439 TMEM121B transmembrane protein 121B protein-coding 25 0.002977
+27440 HDHD5 haloacid dehalogenase like hydrolase domain containing 5 protein-coding 41 0.004883
+27443 CECR2 CECR2, histone acetyl-lysine reader protein-coding 178 0.0212
+27445 PCLO piccolo presynaptic cytomatrix protein protein-coding 798 0.09503
+28227 PPP2R3B protein phosphatase 2 regulatory subunit B''beta protein-coding 74 0.008813
+28231 SLCO4A1 solute carrier organic anion transporter family member 4A1 protein-coding 90 0.01072
+28232 SLCO3A1 solute carrier organic anion transporter family member 3A1 protein-coding 96 0.01143
+28234 SLCO1B3 solute carrier organic anion transporter family member 1B3 protein-coding 127 0.01512
+28299 IGKV1-5 immunoglobulin kappa variable 1-5 other 57 0.006788
+28307 IGHV3OR16-9 immunoglobulin heavy variable 3/OR16-9 (non-functional) pseudo 32 0.003811
+28316 CDH20 cadherin 20 protein-coding 152 0.0181
+28317 IGHV4OR15-8 immunoglobulin heavy variable 4/OR15-8 (non-functional) other 76 0.009051
+28318 IGHV3OR15-7 immunoglobulin heavy variable 3/OR15-7 (pseudogene) pseudo 16 0.001905
+28378 IGHV7-81 immunoglobulin heavy variable 7-81 (non-functional) other 27 0.003215
+28385 IGHV6-1 immunoglobulin heavy variable 6-1 other 27 0.003215
+28388 IGHV5-51 immunoglobulin heavy variable 5-51 other 29 0.003454
+28391 IGHV4-61 immunoglobulin heavy variable 4-61 other 14 0.001667
+28392 IGHV4-59 immunoglobulin heavy variable 4-59 other 28 0.003335
+28394 IGHV4-39 immunoglobulin heavy variable 4-39 other 24 0.002858
+28395 IGHV4-34 immunoglobulin heavy variable 4-34 other 35 0.004168
+28396 IGHV4-31 immunoglobulin heavy variable 4-31 other 41 0.004883
+28400 IGHV4-28 immunoglobulin heavy variable 4-28 other 40 0.004764
+28401 IGHV4-4 immunoglobulin heavy variable 4-4 other 13 0.001548
+28408 IGHV3-74 immunoglobulin heavy variable 3-74 other 20 0.002382
+28409 IGHV3-73 immunoglobulin heavy variable 3-73 other 22 0.00262
+28410 IGHV3-72 immunoglobulin heavy variable 3-72 other 29 0.003454
+28412 IGHV3-66 immunoglobulin heavy variable 3-66 other 14 0.001667
+28414 IGHV3-64 immunoglobulin heavy variable 3-64 other 21 0.002501
+28420 IGHV3-53 immunoglobulin heavy variable 3-53 other 35 0.004168
+28423 IGHV3-49 immunoglobulin heavy variable 3-49 other 20 0.002382
+28424 IGHV3-48 immunoglobulin heavy variable 3-48 other 27 0.003215
+28426 IGHV3-43 immunoglobulin heavy variable 3-43 other 36 0.004287
+28429 IGHV3-38 immunoglobulin heavy variable 3-38 (non-functional) other 32 0.003811
+28432 IGHV3-35 immunoglobulin heavy variable 3-35 (non-functional) other 22 0.00262
+28434 IGHV3-33 immunoglobulin heavy variable 3-33 other 22 0.00262
+28439 IGHV3-30 immunoglobulin heavy variable 3-30 other 30 0.003573
+28442 IGHV3-23 immunoglobulin heavy variable 3-23 other 46 0.005478
+28444 IGHV3-21 immunoglobulin heavy variable 3-21 other 26 0.003096
+28445 IGHV3-20 immunoglobulin heavy variable 3-20 other 41 0.004883
+28447 IGHV3-16 immunoglobulin heavy variable 3-16 (non-functional) other 33 0.00393
+28448 IGHV3-15 immunoglobulin heavy variable 3-15 other 23 0.002739
+28449 IGHV3-13 immunoglobulin heavy variable 3-13 other 23 0.002739
+28450 IGHV3-11 immunoglobulin heavy variable 3-11 (gene/pseudogene) other 20 0.002382
+28451 IGHV3-9 immunoglobulin heavy variable 3-9 other 15 0.001786
+28452 IGHV3-7 immunoglobulin heavy variable 3-7 other 20 0.002382
+28454 IGHV2-70 immunoglobulin heavy variable 2-70 other 49 0.005835
+28455 IGHV2-26 immunoglobulin heavy variable 2-26 other 20 0.002382
+28457 IGHV2-5 immunoglobulin heavy variable 2-5 other 23 0.002739
+28461 IGHV1-69 immunoglobulin heavy variable 1-69 other 40 0.004764
+28464 IGHV1-58 immunoglobulin heavy variable 1-58 other 31 0.003692
+28465 IGHV1-46 immunoglobulin heavy variable 1-46 other 25 0.002977
+28466 IGHV1-45 immunoglobulin heavy variable 1-45 other 36 0.004287
+28467 IGHV1-24 immunoglobulin heavy variable 1-24 other 32 0.003811
+28468 IGHV1-18 immunoglobulin heavy variable 1-18 other 34 0.004049
+28472 IGHV1-8 immunoglobulin heavy variable 1-8 other 13 0.001548
+28473 IGHV1-3 immunoglobulin heavy variable 1-3 other 17 0.002025
+28474 IGHV1-2 immunoglobulin heavy variable 1-2 other 29 0.003454
+28475 IGHJ6 immunoglobulin heavy joining 6 other 7 0.0008336
+28476 IGHJ5 immunoglobulin heavy joining 5 other 7 0.0008336
+28477 IGHJ4 immunoglobulin heavy joining 4 other 5 0.0005955
28479 IGHJ3 immunoglobulin heavy joining 3 other 0 0
-28481 IGHJ2 immunoglobulin heavy joining 2 other 4 0.0004769
-28485 IGHD6-25 immunoglobulin heavy diversity 6-25 other 1 0.0001192
-28486 IGHD6-19 immunoglobulin heavy diversity 6-19 other 2 0.0002384
-28487 IGHD6-13 immunoglobulin heavy diversity 6-13 other 4 0.0004769
+28481 IGHJ2 immunoglobulin heavy joining 2 other 4 0.0004764
+28485 IGHD6-25 immunoglobulin heavy diversity 6-25 other 1 0.0001191
+28486 IGHD6-19 immunoglobulin heavy diversity 6-19 other 2 0.0002382
+28487 IGHD6-13 immunoglobulin heavy diversity 6-13 other 4 0.0004764
28488 IGHD6-6 immunoglobulin heavy diversity 6-6 other 0 0
-28490 IGHD5-18 immunoglobulin heavy diversity 5-18 other 1 0.0001192
-28491 IGHD5-12 immunoglobulin heavy diversity 5-12 other 2 0.0002384
-28494 IGHD4-17 immunoglobulin heavy diversity 4-17 other 2 0.0002384
-28497 IGHD3-22 immunoglobulin heavy diversity 3-22 other 1 0.0001192
-28499 IGHD3-10 immunoglobulin heavy diversity 3-10 other 2 0.0002384
-28500 IGHD3-9 immunoglobulin heavy diversity 3-9 other 3 0.0003577
-28502 IGHD2-21 immunoglobulin heavy diversity 2-21 other 3 0.0003577
-28503 IGHD2-15 immunoglobulin heavy diversity 2-15 other 1 0.0001192
-28504 IGHD2-8 immunoglobulin heavy diversity 2-8 other 2 0.0002384
-28506 IGHD1-26 immunoglobulin heavy diversity 1-26 other 1 0.0001192
-28507 IGHD1-20 immunoglobulin heavy diversity 1-20 other 1 0.0001192
-28509 IGHD1-7 immunoglobulin heavy diversity 1-7 other 2 0.0002384
-28511 NKIRAS2 NFKB inhibitor interacting Ras like 2 protein-coding 31 0.003696
-28512 NKIRAS1 NFKB inhibitor interacting Ras like 1 protein-coding 27 0.003219
-28513 CDH19 cadherin 19 protein-coding 185 0.02206
-28514 DLL1 delta like canonical Notch ligand 1 protein-coding 94 0.01121
-28516 TRDV3 T cell receptor delta variable 3 other 4 0.0004769
-28517 TRDV2 T cell receptor delta variable 2 other 12 0.001431
-28518 TRDV1 T cell receptor delta variable 1 other 22 0.002623
-28519 TRDJ4 T cell receptor delta joining 4 other 1 0.0001192
-28520 TRDJ3 T cell receptor delta joining 3 other 6 0.0007153
-28521 TRDJ2 T cell receptor delta joining 2 other 2 0.0002384
-28522 TRDJ1 T cell receptor delta joining 1 other 4 0.0004769
-28526 TRDC T cell receptor delta constant other 15 0.001788
-28557 TRBV30 T cell receptor beta variable 30 (gene/pseudogene) other 19 0.002265
-28558 TRBV29-1 T cell receptor beta variable 29-1 other 19 0.002265
-28559 TRBV28 T cell receptor beta variable 28 other 15 0.001788
-28560 TRBV27 T cell receptor beta variable 27 other 29 0.003457
-28563 TRBV24-1 T cell receptor beta variable 24-1 other 28 0.003338
-28567 TRBV20-1 T cell receptor beta variable 20-1 other 22 0.002623
-28568 TRBV19 T cell receptor beta variable 19 other 31 0.003696
-28581 TRBV11-2 T cell receptor beta variable 11-2 other 32 0.003815
-28582 TRBV11-1 T cell receptor beta variable 11-1 other 15 0.001788
-28584 TRBV10-2 T cell receptor beta variable 10-2 other 27 0.003219
-28585 TRBV10-1 T cell receptor beta variable 10-1(gene/pseudogene) other 27 0.003219
-28586 TRBV9 T cell receptor beta variable 9 other 22 0.002623
-28590 TRBV7-8 T cell receptor beta variable 7-8 other 36 0.004292
-28591 TRBV7-7 T cell receptor beta variable 7-7 other 15 0.001788
-28592 TRBV7-6 T cell receptor beta variable 7-6 other 23 0.002742
-28594 TRBV7-4 T cell receptor beta variable 7-4 (gene/pseudogene) other 28 0.003338
-28595 TRBV7-3 T cell receptor beta variable 7-3 other 19 0.002265
-28597 TRBV7-1 T cell receptor beta variable 7-1 (non-functional) pseudo 29 0.003457
-28598 TRBV6-9 T cell receptor beta variable 6-9 other 28 0.003338
-28599 TRBV6-8 T cell receptor beta variable 6-8 other 25 0.00298
-28600 TRBV6-7 T cell receptor beta variable 6-7 (non-functional) pseudo 25 0.00298
-28601 TRBV6-6 T cell receptor beta variable 6-6 other 31 0.003696
-28602 TRBV6-5 T cell receptor beta variable 6-5 other 26 0.0031
-28603 TRBV6-4 T cell receptor beta variable 6-4 other 28 0.003338
-28606 TRBV6-1 T cell receptor beta variable 6-1 other 30 0.003577
-28608 TRBV5-7 T cell receptor beta variable 5-7 (non-functional) other 26 0.0031
-28609 TRBV5-6 T cell receptor beta variable 5-6 other 22 0.002623
-28610 TRBV5-5 T cell receptor beta variable 5-5 other 29 0.003457
-28611 TRBV5-4 T cell receptor beta variable 5-4 other 29 0.003457
-28614 TRBV5-1 T cell receptor beta variable 5-1 other 26 0.0031
-28616 TRBV4-2 T cell receptor beta variable 4-2 other 28 0.003338
-28617 TRBV4-1 T cell receptor beta variable 4-1 other 28 0.003338
-28619 TRBV3-1 T cell receptor beta variable 3-1 other 28 0.003338
-28620 TRBV2 T cell receptor beta variable 2 other 21 0.002504
-28622 TRBJ2-7 T cell receptor beta joining 2-7 other 2 0.0002384
-28623 TRBJ2-6 T cell receptor beta joining 2-6 other 4 0.0004769
-28624 TRBJ2-5 T cell receptor beta joining 2-5 other 3 0.0003577
-28625 TRBJ2-4 T cell receptor beta joining 2-4 other 2 0.0002384
-28626 TRBJ2-3 T cell receptor beta joining 2-3 other 2 0.0002384
-28627 TRBJ2-2P T cell receptor beta joining 2-2P (non-functional) pseudo 2 0.0002384
-28628 TRBJ2-2 T cell receptor beta joining 2-2 other 4 0.0004769
-28629 TRBJ2-1 T cell receptor beta joining 2-1 other 3 0.0003577
-28638 TRBC2 T cell receptor beta constant 2 other 52 0.006199
-28640 TRAV41 T cell receptor alpha variable 41 other 15 0.001788
-28641 TRAV40 T cell receptor alpha variable 40 other 17 0.002027
-28642 TRAV39 T cell receptor alpha variable 39 other 10 0.001192
-28643 TRAV38-2DV8 T cell receptor alpha variable 38-2/delta variable 8 other 7 0.0008345
-28644 TRAV38-1 T cell receptor alpha variable 38-1 other 11 0.001311
-28646 TRAV36DV7 T cell receptor alpha variable 36/delta variable 7 other 12 0.001431
-28647 TRAV35 T cell receptor alpha variable 35 other 14 0.001669
-28648 TRAV34 T cell receptor alpha variable 34 other 14 0.001669
-28652 TRAV30 T cell receptor alpha variable 30 other 12 0.001431
-28653 TRAV29DV5 T cell receptor alpha variable 29/delta variable 5 (gene/pseudogene) other 11 0.001311
-28655 TRAV27 T cell receptor alpha variable 27 other 21 0.002504
-28656 TRAV26-2 T cell receptor alpha variable 26-2 other 12 0.001431
-28657 TRAV26-1 T cell receptor alpha variable 26-1 other 28 0.003338
-28658 TRAV25 T cell receptor alpha variable 25 other 12 0.001431
-28659 TRAV24 T cell receptor alpha variable 24 other 13 0.00155
-28660 TRAV23DV6 T cell receptor alpha variable 23/delta variable 6 other 12 0.001431
-28661 TRAV22 T cell receptor alpha variable 22 other 21 0.002504
-28662 TRAV21 T cell receptor alpha variable 21 other 19 0.002265
-28663 TRAV20 T cell receptor alpha variable 20 other 17 0.002027
-28664 TRAV19 T cell receptor alpha variable 19 other 25 0.00298
-28665 TRAV18 T cell receptor alpha variable 18 other 20 0.002384
-28666 TRAV17 T cell receptor alpha variable 17 other 18 0.002146
-28667 TRAV16 T cell receptor alpha variable 16 other 14 0.001669
-28669 TRAV14DV4 T cell receptor alpha variable 14/delta variable 4 other 19 0.002265
-28670 TRAV13-2 T cell receptor alpha variable 13-2 other 18 0.002146
-28671 TRAV13-1 T cell receptor alpha variable 13-1 other 21 0.002504
-28672 TRAV12-3 T cell receptor alpha variable 12-3 other 22 0.002623
-28673 TRAV12-2 T cell receptor alpha variable 12-2 other 21 0.002504
-28674 TRAV12-1 T cell receptor alpha variable 12-1 other 26 0.0031
-28676 TRAV10 T cell receptor alpha variable 10 other 19 0.002265
-28677 TRAV9-2 T cell receptor alpha variable 9-2 other 16 0.001907
-28678 TRAV9-1 T cell receptor alpha variable 9-1 other 19 0.002265
-28679 TRAV8-7 T cell receptor alpha variable 8-7 (non-functional) other 14 0.001669
-28680 TRAV8-6 T cell receptor alpha variable 8-6 other 23 0.002742
-28682 TRAV8-4 T cell receptor alpha variable 8-4 other 22 0.002623
-28683 TRAV8-3 T cell receptor alpha variable 8-3 other 13 0.00155
-28684 TRAV8-2 T cell receptor alpha variable 8-2 other 23 0.002742
-28685 TRAV8-1 T cell receptor alpha variable 8-1 other 23 0.002742
-28686 TRAV7 T cell receptor alpha variable 7 other 19 0.002265
-28688 TRAV5 T cell receptor alpha variable 5 other 18 0.002146
-28689 TRAV4 T cell receptor alpha variable 4 other 13 0.00155
-28690 TRAV3 T cell receptor alpha variable 3 (gene/pseudogene) other 23 0.002742
-28691 TRAV2 T cell receptor alpha variable 2 other 11 0.001311
-28692 TRAV1-2 T cell receptor alpha variable 1-2 other 9 0.001073
-28693 TRAV1-1 T cell receptor alpha variable 1-1 other 22 0.002623
-28694 TRAJ61 T cell receptor alpha joining 61 (non-functional) other 1 0.0001192
-28696 TRAJ59 T cell receptor alpha joining 59 (non-functional) other 3 0.0003577
-28697 TRAJ58 T cell receptor alpha joining 58 (non-functional) other 1 0.0001192
-28698 TRAJ57 T cell receptor alpha joining 57 other 1 0.0001192
-28699 TRAJ56 T cell receptor alpha joining 56 other 1 0.0001192
-28701 TRAJ54 T cell receptor alpha joining 54 other 2 0.0002384
-28702 TRAJ53 T cell receptor alpha joining 53 other 1 0.0001192
-28705 TRAJ50 T cell receptor alpha joining 50 other 1 0.0001192
-28706 TRAJ49 T cell receptor alpha joining 49 other 1 0.0001192
-28707 TRAJ48 T cell receptor alpha joining 48 other 1 0.0001192
-28710 TRAJ45 T cell receptor alpha joining 45 other 7 0.0008345
-28712 TRAJ43 T cell receptor alpha joining 43 other 3 0.0003577
-28713 TRAJ42 T cell receptor alpha joining 42 other 3 0.0003577
-28714 TRAJ41 T cell receptor alpha joining 41 other 2 0.0002384
-28715 TRAJ40 T cell receptor alpha joining 40 other 2 0.0002384
-28717 TRAJ38 T cell receptor alpha joining 38 other 2 0.0002384
-28718 TRAJ37 T cell receptor alpha joining 37 other 1 0.0001192
-28719 TRAJ36 T cell receptor alpha joining 36 other 2 0.0002384
-28720 TRAJ35 T cell receptor alpha joining 35 (non-functional) other 2 0.0002384
-28721 TRAJ34 T cell receptor alpha joining 34 other 1 0.0001192
-28722 TRAJ33 T cell receptor alpha joining 33 other 1 0.0001192
-28724 TRAJ31 T cell receptor alpha joining 31 other 4 0.0004769
-28725 TRAJ30 T cell receptor alpha joining 30 other 1 0.0001192
-28726 TRAJ29 T cell receptor alpha joining 29 other 2 0.0002384
-28727 TRAJ28 T cell receptor alpha joining 28 other 1 0.0001192
-28728 TRAJ27 T cell receptor alpha joining 27 other 2 0.0002384
-28729 TRAJ26 T cell receptor alpha joining 26 other 3 0.0003577
-28730 TRAJ25 T cell receptor alpha joining 25 (non-functional) other 3 0.0003577
-28732 TRAJ23 T cell receptor alpha joining 23 other 8 0.0009537
-28733 TRAJ22 T cell receptor alpha joining 22 other 2 0.0002384
-28734 TRAJ21 T cell receptor alpha joining 21 other 2 0.0002384
-28735 TRAJ20 T cell receptor alpha joining 20 other 1 0.0001192
-28736 TRAJ19 T cell receptor alpha joining 19 (non-functional) other 2 0.0002384
-28737 TRAJ18 T cell receptor alpha joining 18 other 3 0.0003577
-28739 TRAJ16 T cell receptor alpha joining 16 other 1 0.0001192
-28741 TRAJ14 T cell receptor alpha joining 14 other 3 0.0003577
-28742 TRAJ13 T cell receptor alpha joining 13 other 1 0.0001192
-28743 TRAJ12 T cell receptor alpha joining 12 other 2 0.0002384
-28745 TRAJ10 T cell receptor alpha joining 10 other 2 0.0002384
-28746 TRAJ9 T cell receptor alpha joining 9 other 3 0.0003577
-28747 TRAJ8 T cell receptor alpha joining 8 other 2 0.0002384
-28748 TRAJ7 T cell receptor alpha joining 7 other 2 0.0002384
-28753 TRAJ2 T cell receptor alpha joining 2 (non-functional) other 3 0.0003577
-28754 TRAJ1 T cell receptor alpha joining 1 (non-functional) other 4 0.0004769
-28755 TRAC T cell receptor alpha constant other 24 0.002861
-28770 IGLV11-55 immunoglobulin lambda variable 11-55 (non-functional) other 13 0.00155
-28772 IGLV10-54 immunoglobulin lambda variable 10-54 other 13 0.00155
-28773 IGLV9-49 immunoglobulin lambda variable 9-49 other 12 0.001431
-28774 IGLV8-61 immunoglobulin lambda variable 8-61 other 22 0.002623
-28775 IGLV7-46 immunoglobulin lambda variable 7-46 (gene/pseudogene) other 14 0.001669
-28776 IGLV7-43 immunoglobulin lambda variable 7-43 other 19 0.002265
-28778 IGLV6-57 immunoglobulin lambda variable 6-57 other 13 0.00155
-28779 IGLV5-52 immunoglobulin lambda variable 5-52 other 14 0.001669
-28780 IGLV5-48 immunoglobulin lambda variable 5-48 (non-functional) other 20 0.002384
-28781 IGLV5-45 immunoglobulin lambda variable 5-45 other 21 0.002504
-28783 IGLV5-37 immunoglobulin lambda variable 5-37 other 16 0.001907
-28784 IGLV4-69 immunoglobulin lambda variable 4-69 other 22 0.002623
-28785 IGLV4-60 immunoglobulin lambda variable 4-60 other 20 0.002384
-28786 IGLV4-3 immunoglobulin lambda variable 4-3 other 24 0.002861
-28787 IGLV3-32 immunoglobulin lambda variable 3-32 (non-functional) other 13 0.00155
-28791 IGLV3-27 immunoglobulin lambda variable 3-27 other 24 0.002861
-28793 IGLV3-25 immunoglobulin lambda variable 3-25 other 26 0.0031
-28795 IGLV3-22 immunoglobulin lambda variable 3-22 (gene/pseudogene) other 18 0.002146
-28796 IGLV3-21 immunoglobulin lambda variable 3-21 other 15 0.001788
-28797 IGLV3-19 immunoglobulin lambda variable 3-19 other 26 0.0031
-28799 IGLV3-16 immunoglobulin lambda variable 3-16 other 20 0.002384
-28802 IGLV3-12 immunoglobulin lambda variable 3-12 other 16 0.001907
-28803 IGLV3-10 immunoglobulin lambda variable 3-10 other 22 0.002623
-28804 IGLV3-9 immunoglobulin lambda variable 3-9 (gene/pseudogene) other 19 0.002265
-28809 IGLV3-1 immunoglobulin lambda variable 3-1 other 24 0.002861
-28811 IGLV2-33 immunoglobulin lambda variable 2-33 (non-functional) other 22 0.002623
-28813 IGLV2-23 immunoglobulin lambda variable 2-23 other 19 0.002265
-28814 IGLV2-18 immunoglobulin lambda variable 2-18 other 22 0.002623
-28815 IGLV2-14 immunoglobulin lambda variable 2-14 other 23 0.002742
-28816 IGLV2-11 immunoglobulin lambda variable 2-11 other 16 0.001907
-28817 IGLV2-8 immunoglobulin lambda variable 2-8 other 22 0.002623
-28820 IGLV1-51 immunoglobulin lambda variable 1-51 other 21 0.002504
-28821 IGLV1-50 immunoglobulin lambda variable 1-50 (non-functional) other 16 0.001907
-28822 IGLV1-47 immunoglobulin lambda variable 1-47 other 20 0.002384
-28823 IGLV1-44 immunoglobulin lambda variable 1-44 other 22 0.002623
-28825 IGLV1-40 immunoglobulin lambda variable 1-40 other 16 0.001907
-28826 IGLV1-36 immunoglobulin lambda variable 1-36 other 13 0.00155
-28829 IGLJ5 immunoglobulin lambda joining 5 (non-functional) other 2 0.0002384
-28830 IGLJ4 immunoglobulin lambda joining 4 (non-functional) other 1 0.0001192
-28831 IGLJ3 immunoglobulin lambda joining 3 other 6 0.0007153
-28834 IGLC7 immunoglobulin lambda constant 7 other 200 0.02384
-28869 IGKV6D-41 immunoglobulin kappa variable 6D-41 (non-functional) other 42 0.005007
-28870 IGKV6D-21 immunoglobulin kappa variable 6D-21 (non-functional) other 34 0.004053
-28874 IGKV3D-20 immunoglobulin kappa variable 3D-20 other 43 0.005126
-28875 IGKV3D-15 immunoglobulin kappa variable 3D-15 (gene/pseudogene) other 35 0.004173
-28876 IGKV3D-11 immunoglobulin kappa variable 3D-11 other 49 0.005842
-28881 IGKV2D-30 immunoglobulin kappa variable 2D-30 other 42 0.005007
-28882 IGKV2D-29 immunoglobulin kappa variable 2D-29 other 32 0.003815
-28883 IGKV2D-28 immunoglobulin kappa variable 2D-28 other 13 0.00155
-28885 IGKV2D-24 immunoglobulin kappa variable 2D-24 (non-functional) other 47 0.005603
-28891 IGKV1D-43 immunoglobulin kappa variable 1D-43 other 54 0.006438
-28892 IGKV1D-42 immunoglobulin kappa variable 1D-42 (non-functional) other 53 0.006319
-28893 IGKV1D-39 immunoglobulin kappa variable 1D-39 other 3 0.0003577
-28896 IGKV1D-33 immunoglobulin kappa variable 1D-33 other 17 0.002027
-28900 IGKV1D-17 immunoglobulin kappa variable 1D-17 other 44 0.005246
-28901 IGKV1D-16 immunoglobulin kappa variable 1D-16 other 64 0.00763
-28902 IGKV1D-13 immunoglobulin kappa variable 1D-13 other 40 0.004769
-28903 IGKV1D-12 immunoglobulin kappa variable 1D-12 other 38 0.00453
-28904 IGKV1D-8 immunoglobulin kappa variable 1D-8 other 44 0.005246
-28906 IGKV6-21 immunoglobulin kappa variable 6-21 (non-functional) other 27 0.003219
-28907 IGKV5-2 immunoglobulin kappa variable 5-2 other 30 0.003577
-28908 IGKV4-1 immunoglobulin kappa variable 4-1 other 29 0.003457
-28912 IGKV3-20 immunoglobulin kappa variable 3-20 other 27 0.003219
-28913 IGKV3-15 immunoglobulin kappa variable 3-15 other 21 0.002504
-28914 IGKV3-11 immunoglobulin kappa variable 3-11 other 33 0.003934
-28915 IGKV3-7 immunoglobulin kappa variable 3-7 (non-functional) other 38 0.00453
-28919 IGKV2-30 immunoglobulin kappa variable 2-30 other 37 0.004411
-28921 IGKV2-28 immunoglobulin kappa variable 2-28 other 16 0.001907
-28923 IGKV2-24 immunoglobulin kappa variable 2-24 other 42 0.005007
-28930 IGKV1-39 immunoglobulin kappa variable 1-39 (gene/pseudogene) other 3 0.0003577
-28931 IGKV1-37 immunoglobulin kappa variable 1-37 (non-functional) other 3 0.0003577
-28933 IGKV1-33 immunoglobulin kappa variable 1-33 other 13 0.00155
-28935 IGKV1-27 immunoglobulin kappa variable 1-27 other 33 0.003934
-28937 IGKV1-17 immunoglobulin kappa variable 1-17 other 49 0.005842
-28938 IGKV1-16 immunoglobulin kappa variable 1-16 other 50 0.005961
-28940 IGKV1-12 immunoglobulin kappa variable 1-12 other 41 0.004888
-28941 IGKV1-9 immunoglobulin kappa variable 1-9 other 37 0.004411
-28942 IGKV1-8 immunoglobulin kappa variable 1-8 other 26 0.0031
-28943 IGKV1-6 immunoglobulin kappa variable 1-6 other 39 0.004649
-28946 IGKJ5 immunoglobulin kappa joining 5 other 3 0.0003577
-28947 IGKJ4 immunoglobulin kappa joining 4 other 11 0.001311
-28948 IGKJ3 immunoglobulin kappa joining 3 other 3 0.0003577
-28949 IGKJ2 immunoglobulin kappa joining 2 other 3 0.0003577
-28950 IGKJ1 immunoglobulin kappa joining 1 other 2 0.0002384
-28951 TRIB2 tribbles pseudokinase 2 protein-coding 51 0.00608
-28952 CCDC22 coiled-coil domain containing 22 protein-coding 62 0.007392
-28954 REM1 RRAD and GEM like GTPase 1 protein-coding 62 0.007392
-28955 DEXI Dexi homolog protein-coding 4 0.0004769
-28956 LAMTOR2 late endosomal/lysosomal adaptor, MAPK and MTOR activator 2 protein-coding 9 0.001073
-28957 MRPS28 mitochondrial ribosomal protein S28 protein-coding 73 0.008703
-28958 COA3 cytochrome c oxidase assembly factor 3 protein-coding 6 0.0007153
-28959 TMEM176B transmembrane protein 176B protein-coding 51 0.00608
-28960 DCPS decapping enzyme, scavenger protein-coding 39 0.004649
-28962 OSTM1 osteopetrosis associated transmembrane protein 1 protein-coding 30 0.003577
-28964 GIT1 GIT ArfGAP 1 protein-coding 59 0.007034
-28965 SLC27A6 solute carrier family 27 member 6 protein-coding 116 0.01383
-28966 SNX24 sorting nexin 24 protein-coding 22 0.002623
-28968 SLC6A16 solute carrier family 6 member 16 protein-coding 73 0.008703
-28969 BZW2 basic leucine zipper and W2 domains 2 protein-coding 45 0.005365
-28970 C11orf54 chromosome 11 open reading frame 54 protein-coding 29 0.003457
-28971 AAMDC adipogenesis associated Mth938 domain containing protein-coding 11 0.001311
-28972 SPCS1 signal peptidase complex subunit 1 protein-coding 20 0.002384
-28973 MRPS18B mitochondrial ribosomal protein S18B protein-coding 29 0.003457
-28974 C19orf53 chromosome 19 open reading frame 53 protein-coding 13 0.00155
-28976 ACAD9 acyl-CoA dehydrogenase family member 9 protein-coding 56 0.006676
-28977 MRPL42 mitochondrial ribosomal protein L42 protein-coding 14 0.001669
-28978 TMEM14A transmembrane protein 14A protein-coding 10 0.001192
-28981 IFT81 intraflagellar transport 81 protein-coding 87 0.01037
-28982 FLVCR1 feline leukemia virus subgroup C cellular receptor 1 protein-coding 40 0.004769
-28983 TMPRSS11E transmembrane serine protease 11E protein-coding 79 0.009418
-28984 RGCC regulator of cell cycle protein-coding 6 0.0007153
-28985 MCTS1 MCTS1, re-initiation and release factor protein-coding 37 0.004411
-28986 MAGEH1 MAGE family member H1 protein-coding 41 0.004888
-28987 NOB1 NIN1 (RPN12) binding protein 1 homolog protein-coding 39 0.004649
-28988 DBNL drebrin like protein-coding 47 0.005603
-28989 NTMT1 N-terminal Xaa-Pro-Lys N-methyltransferase 1 protein-coding 29 0.003457
-28990 ASTE1 asteroid homolog 1 protein-coding 76 0.009061
-28991 COMMD5 COMM domain containing 5 protein-coding 25 0.00298
-28992 MACROD1 MACRO domain containing 1 protein-coding 20 0.002384
-28996 HIPK2 homeodomain interacting protein kinase 2 protein-coding 117 0.01395
-28998 MRPL13 mitochondrial ribosomal protein L13 protein-coding 37 0.004411
-28999 KLF15 Kruppel like factor 15 protein-coding 65 0.007749
-29015 SLC43A3 solute carrier family 43 member 3 protein-coding 61 0.007272
-29028 ATAD2 ATPase family, AAA domain containing 2 protein-coding 199 0.02372
-29035 C16orf72 chromosome 16 open reading frame 72 protein-coding 31 0.003696
-29058 TMEM230 transmembrane protein 230 protein-coding 17 0.002027
-29062 WDR91 WD repeat domain 91 protein-coding 80 0.009537
-29063 ZCCHC4 zinc finger CCHC-type containing 4 protein-coding 47 0.005603
-29066 ZC3H7A zinc finger CCCH-type containing 7A protein-coding 95 0.01133
-29068 ZBTB44 zinc finger and BTB domain containing 44 protein-coding 38 0.00453
-29070 CCDC113 coiled-coil domain containing 113 protein-coding 53 0.006319
-29071 C1GALT1C1 C1GALT1 specific chaperone 1 protein-coding 56 0.006676
-29072 SETD2 SET domain containing 2 protein-coding 356 0.04244
-29074 MRPL18 mitochondrial ribosomal protein L18 protein-coding 22 0.002623
-29078 NDUFAF4 NADH:ubiquinone oxidoreductase complex assembly factor 4 protein-coding 14 0.001669
-29079 MED4 mediator complex subunit 4 protein-coding 23 0.002742
-29080 CCDC59 coiled-coil domain containing 59 protein-coding 41 0.004888
-29081 METTL5 methyltransferase like 5 protein-coding 21 0.002504
-29082 CHMP4A charged multivesicular body protein 4A protein-coding 52 0.006199
-29083 GTPBP8 GTP binding protein 8 (putative) protein-coding 35 0.004173
-29085 PHPT1 phosphohistidine phosphatase 1 protein-coding 15 0.001788
-29086 BABAM1 BRISC and BRCA1 A complex member 1 protein-coding 27 0.003219
-29087 THYN1 thymocyte nuclear protein 1 protein-coding 42 0.005007
-29088 MRPL15 mitochondrial ribosomal protein L15 protein-coding 34 0.004053
-29089 UBE2T ubiquitin conjugating enzyme E2 T protein-coding 16 0.001907
-29090 TIMM21 translocase of inner mitochondrial membrane 21 protein-coding 32 0.003815
-29091 STXBP6 syntaxin binding protein 6 protein-coding 27 0.003219
-29093 MRPL22 mitochondrial ribosomal protein L22 protein-coding 27 0.003219
-29094 LGALSL galectin like protein-coding 43 0.005126
-29095 ORMDL2 ORMDL sphingolipid biosynthesis regulator 2 protein-coding 8 0.0009537
-29097 CNIH4 cornichon family AMPA receptor auxiliary protein 4 protein-coding 29 0.003457
-29098 RANGRF RAN guanine nucleotide release factor protein-coding 12 0.001431
-29099 COMMD9 COMM domain containing 9 protein-coding 18 0.002146
-29100 TMEM208 transmembrane protein 208 protein-coding 17 0.002027
-29101 SSU72 SSU72 homolog, RNA polymerase II CTD phosphatase protein-coding 22 0.002623
-29102 DROSHA drosha ribonuclease III protein-coding 166 0.01979
-29103 DNAJC15 DnaJ heat shock protein family (Hsp40) member C15 protein-coding 19 0.002265
-29104 N6AMT1 N-6 adenine-specific DNA methyltransferase 1 protein-coding 33 0.003934
-29105 CFAP20 cilia and flagella associated protein 20 protein-coding 24 0.002861
-29106 SCG3 secretogranin III protein-coding 65 0.007749
-29107 NXT1 nuclear transport factor 2 like export factor 1 protein-coding 18 0.002146
-29108 PYCARD PYD and CARD domain containing protein-coding 21 0.002504
-29109 FHOD1 formin homology 2 domain containing 1 protein-coding 115 0.01371
-29110 TBK1 TANK binding kinase 1 protein-coding 83 0.009895
-29113 C6orf15 chromosome 6 open reading frame 15 protein-coding 46 0.005484
-29114 TAGLN3 transgelin 3 protein-coding 22 0.002623
-29115 SAP30BP SAP30 binding protein protein-coding 37 0.004411
-29116 MYLIP myosin regulatory light chain interacting protein protein-coding 50 0.005961
-29117 BRD7 bromodomain containing 7 protein-coding 95 0.01133
-29118 DDX25 DEAD-box helicase 25 protein-coding 55 0.006557
-29119 CTNNA3 catenin alpha 3 protein-coding 223 0.02659
-29121 CLEC2D C-type lectin domain family 2 member D protein-coding 21 0.002504
-29122 PRSS50 serine protease 50 protein-coding 40 0.004769
-29123 ANKRD11 ankyrin repeat domain 11 protein-coding 265 0.03159
-29124 LGALS13 galectin 13 protein-coding 50 0.005961
-29125 C11orf21 chromosome 11 open reading frame 21 protein-coding 7 0.0008345
-29126 CD274 CD274 molecule protein-coding 30 0.003577
-29127 RACGAP1 Rac GTPase activating protein 1 protein-coding 75 0.008941
-29128 UHRF1 ubiquitin like with PHD and ring finger domains 1 protein-coding 93 0.01109
-29760 BLNK B cell linker protein-coding 61 0.007272
-29761 USP25 ubiquitin specific peptidase 25 protein-coding 188 0.02241
-29763 PACSIN3 protein kinase C and casein kinase substrate in neurons 3 protein-coding 49 0.005842
-29765 TMOD4 tropomodulin 4 protein-coding 28 0.003338
-29766 TMOD3 tropomodulin 3 protein-coding 38 0.00453
-29767 TMOD2 tropomodulin 2 protein-coding 33 0.003934
-29774 POM121L9P POM121 transmembrane nucleoporin like 9, pseudogene pseudo 70 0.008345
-29775 CARD10 caspase recruitment domain family member 10 protein-coding 85 0.01013
-29777 ABT1 activator of basal transcription 1 protein-coding 51 0.00608
-29780 PARVB parvin beta protein-coding 40 0.004769
-29781 NCAPH2 non-SMC condensin II complex subunit H2 protein-coding 65 0.007749
-29785 CYP2S1 cytochrome P450 family 2 subfamily S member 1 protein-coding 63 0.007511
-29789 OLA1 Obg like ATPase 1 protein-coding 42 0.005007
-29796 UQCR10 ubiquinol-cytochrome c reductase, complex III subunit X protein-coding 14 0.001669
-29798 C2orf27A chromosome 2 open reading frame 27A protein-coding 2 0.0002384
-29799 YPEL1 yippee like 1 protein-coding 20 0.002384
-29800 ZDHHC1 zinc finger DHHC-type containing 1 protein-coding 38 0.00453
-29801 ZDHHC8 zinc finger DHHC-type containing 8 protein-coding 92 0.01097
-29802 VPREB3 V-set pre-B cell surrogate light chain 3 protein-coding 10 0.001192
-29803 REPIN1 replication initiator 1 protein-coding 60 0.007153
-29841 GRHL1 grainyhead like transcription factor 1 protein-coding 93 0.01109
-29842 TFCP2L1 transcription factor CP2 like 1 protein-coding 54 0.006438
-29843 SENP1 SUMO specific peptidase 1 protein-coding 55 0.006557
-29844 TFPT TCF3 fusion partner protein-coding 36 0.004292
-29850 TRPM5 transient receptor potential cation channel subfamily M member 5 protein-coding 112 0.01335
-29851 ICOS inducible T cell costimulator protein-coding 32 0.003815
-29855 UBN1 ubinuclein 1 protein-coding 109 0.01299
-29880 ALG5 ALG5, dolichyl-phosphate beta-glucosyltransferase protein-coding 44 0.005246
-29881 NPC1L1 NPC1 like intracellular cholesterol transporter 1 protein-coding 170 0.02027
-29882 ANAPC2 anaphase promoting complex subunit 2 protein-coding 165 0.01967
-29883 CNOT7 CCR4-NOT transcription complex subunit 7 protein-coding 29 0.003457
-29886 SNX8 sorting nexin 8 protein-coding 48 0.005722
-29887 SNX10 sorting nexin 10 protein-coding 32 0.003815
-29888 STRN4 striatin 4 protein-coding 75 0.008941
-29889 GNL2 G protein nucleolar 2 protein-coding 91 0.01085
-29890 RBM15B RNA binding motif protein 15B protein-coding 78 0.009299
-29893 PSMC3IP PSMC3 interacting protein protein-coding 26 0.0031
-29894 CPSF1 cleavage and polyadenylation specific factor 1 protein-coding 158 0.01884
-29895 MYLPF myosin light chain, phosphorylatable, fast skeletal muscle protein-coding 19 0.002265
-29896 TRA2A transformer 2 alpha homolog protein-coding 55 0.006557
-29899 GPSM2 G protein signaling modulator 2 protein-coding 90 0.01073
-29901 SAC3D1 SAC3 domain containing 1 protein-coding 21 0.002504
-29902 FAM216A family with sequence similarity 216 member A protein-coding 25 0.00298
-29903 CCDC106 coiled-coil domain containing 106 protein-coding 45 0.005365
-29904 EEF2K eukaryotic elongation factor 2 kinase protein-coding 92 0.01097
-29906 ST8SIA5 ST8 alpha-N-acetyl-neuraminide alpha-2,8-sialyltransferase 5 protein-coding 77 0.00918
-29907 SNX15 sorting nexin 15 protein-coding 42 0.005007
-29909 GPR171 G protein-coupled receptor 171 protein-coding 44 0.005246
-29911 HOOK2 hook microtubule tethering protein 2 protein-coding 183 0.02182
-29914 UBIAD1 UbiA prenyltransferase domain containing 1 protein-coding 45 0.005365
-29915 HCFC2 host cell factor C2 protein-coding 112 0.01335
-29916 SNX11 sorting nexin 11 protein-coding 27 0.003219
-29919 RMC1 regulator of MON1-CCZ1 protein-coding 65 0.007749
-29920 PYCR2 pyrroline-5-carboxylate reductase 2 protein-coding 16 0.001907
-29922 NME7 NME/NM23 family member 7 protein-coding 50 0.005961
-29923 HILPDA hypoxia inducible lipid droplet associated protein-coding 3 0.0003577
-29924 EPN1 epsin 1 protein-coding 82 0.009776
-29925 GMPPB GDP-mannose pyrophosphorylase B protein-coding 34 0.004053
-29926 GMPPA GDP-mannose pyrophosphorylase A protein-coding 49 0.005842
-29927 SEC61A1 Sec61 translocon alpha 1 subunit protein-coding 62 0.007392
-29928 TIMM22 translocase of inner mitochondrial membrane 22 protein-coding 20 0.002384
-29929 ALG6 ALG6, alpha-1,3-glucosyltransferase protein-coding 54 0.006438
-29930 PCDHB1 protocadherin beta 1 protein-coding 146 0.01741
-29933 GPR132 G protein-coupled receptor 132 protein-coding 61 0.007272
-29934 SNX12 sorting nexin 12 protein-coding 22 0.002623
-29935 RPA4 replication protein A4 protein-coding 57 0.006795
-29937 NENF neudesin neurotrophic factor protein-coding 13 0.00155
-29940 DSE dermatan sulfate epimerase protein-coding 114 0.01359
-29941 PKN3 protein kinase N3 protein-coding 89 0.01061
-29942 PURG purine rich element binding protein G protein-coding 52 0.006199
-29943 PADI1 peptidyl arginine deiminase 1 protein-coding 85 0.01013
-29944 PNMA3 PNMA family member 3 protein-coding 74 0.008822
-29945 ANAPC4 anaphase promoting complex subunit 4 protein-coding 66 0.007868
-29946 SERTAD3 SERTA domain containing 3 protein-coding 25 0.00298
-29947 DNMT3L DNA methyltransferase 3 like protein-coding 72 0.008584
-29948 OSGIN1 oxidative stress induced growth inhibitor 1 protein-coding 49 0.005842
-29949 IL19 interleukin 19 protein-coding 31 0.003696
-29950 SERTAD1 SERTA domain containing 1 protein-coding 23 0.002742
-29951 PDZRN4 PDZ domain containing ring finger 4 protein-coding 191 0.02277
-29952 DPP7 dipeptidyl peptidase 7 protein-coding 37 0.004411
-29953 TRHDE thyrotropin releasing hormone degrading enzyme protein-coding 250 0.0298
-29954 POMT2 protein O-mannosyltransferase 2 protein-coding 63 0.007511
-29956 CERS2 ceramide synthase 2 protein-coding 48 0.005722
-29957 SLC25A24 solute carrier family 25 member 24 protein-coding 46 0.005484
-29958 DMGDH dimethylglycine dehydrogenase protein-coding 93 0.01109
-29959 NRBP1 nuclear receptor binding protein 1 protein-coding 63 0.007511
-29960 MRM2 mitochondrial rRNA methyltransferase 2 protein-coding 34 0.004053
-29964 PRICKLE4 prickle planar cell polarity protein 4 protein-coding 42 0.005007
-29965 CDIP1 cell death inducing p53 target 1 protein-coding 8 0.0009537
-29966 STRN3 striatin 3 protein-coding 77 0.00918
-29967 LRP12 LDL receptor related protein 12 protein-coding 222 0.02647
-29968 PSAT1 phosphoserine aminotransferase 1 protein-coding 46 0.005484
-29969 MDFIC MyoD family inhibitor domain containing protein-coding 42 0.005007
-29974 A1CF APOBEC1 complementation factor protein-coding 112 0.01335
-29978 UBQLN2 ubiquilin 2 protein-coding 97 0.01156
-29979 UBQLN1 ubiquilin 1 protein-coding 59 0.007034
-29980 DONSON downstream neighbor of SON protein-coding 44 0.005246
-29982 NRBF2 nuclear receptor binding factor 2 protein-coding 27 0.003219
-29984 RHOD ras homolog family member D protein-coding 18 0.002146
-29985 SLC39A3 solute carrier family 39 member 3 protein-coding 37 0.004411
-29986 SLC39A2 solute carrier family 39 member 2 protein-coding 34 0.004053
-29988 SLC2A8 solute carrier family 2 member 8 protein-coding 33 0.003934
-29989 OBP2B odorant binding protein 2B protein-coding 17 0.002027
-29990 PILRB paired immunoglobin-like type 2 receptor beta protein-coding 21 0.002504
-29991 OBP2A odorant binding protein 2A protein-coding 28 0.003338
-29992 PILRA paired immunoglobin like type 2 receptor alpha protein-coding 29 0.003457
-29993 PACSIN1 protein kinase C and casein kinase substrate in neurons 1 protein-coding 50 0.005961
-29994 BAZ2B bromodomain adjacent to zinc finger domain 2B protein-coding 238 0.02837
-29995 LMCD1 LIM and cysteine rich domains 1 protein-coding 59 0.007034
-29997 NOP53 NOP53 ribosome biogenesis factor protein-coding 47 0.005603
-29998 BICRA BRD4 interacting chromatin remodeling complex associated protein protein-coding 83 0.009895
-29999 FSCN3 fascin actin-bundling protein 3 protein-coding 82 0.009776
-30000 TNPO2 transportin 2 protein-coding 95 0.01133
-30001 ERO1A endoplasmic reticulum oxidoreductase 1 alpha protein-coding 46 0.005484
-30008 EFEMP2 EGF containing fibulin extracellular matrix protein 2 protein-coding 63 0.007511
-30009 TBX21 T-box 21 protein-coding 57 0.006795
-30010 NXPH1 neurexophilin 1 protein-coding 68 0.008107
-30011 SH3KBP1 SH3 domain containing kinase binding protein 1 protein-coding 102 0.01216
-30012 TLX3 T cell leukemia homeobox 3 protein-coding 38 0.00453
-30061 SLC40A1 solute carrier family 40 member 1 protein-coding 61 0.007272
-30062 RAX retina and anterior neural fold homeobox protein-coding 22 0.002623
-30811 HUNK hormonally up-regulated Neu-associated kinase protein-coding 94 0.01121
-30812 SOX8 SRY-box 8 protein-coding 39 0.004649
-30813 VSX1 visual system homeobox 1 protein-coding 17 0.002027
-30814 PLA2G2E phospholipase A2 group IIE protein-coding 29 0.003457
-30815 ST6GALNAC6 ST6 N-acetylgalactosaminide alpha-2,6-sialyltransferase 6 protein-coding 42 0.005007
-30816 ERVW-1 endogenous retrovirus group W member 1, envelope protein-coding 60 0.007153
-30817 ADGRE2 adhesion G protein-coupled receptor E2 protein-coding 116 0.01383
-30818 KCNIP3 potassium voltage-gated channel interacting protein 3 protein-coding 37 0.004411
-30819 KCNIP2 potassium voltage-gated channel interacting protein 2 protein-coding 28 0.003338
-30820 KCNIP1 potassium voltage-gated channel interacting protein 1 protein-coding 46 0.005484
-30827 CXXC1 CXXC finger protein 1 protein-coding 145 0.01729
-30832 ZNF354C zinc finger protein 354C protein-coding 88 0.01049
-30833 NT5C 5', 3'-nucleotidase, cytosolic protein-coding 16 0.001907
-30834 ZNRD1 zinc ribbon domain containing 1 protein-coding 8 0.0009537
-30835 CD209 CD209 molecule protein-coding 55 0.006557
-30836 DNTTIP2 deoxynucleotidyltransferase terminal interacting protein 2 protein-coding 66 0.007868
-30837 SOCS7 suppressor of cytokine signaling 7 protein-coding 37 0.004411
-30844 EHD4 EH domain containing 4 protein-coding 51 0.00608
-30845 EHD3 EH domain containing 3 protein-coding 79 0.009418
-30846 EHD2 EH domain containing 2 protein-coding 80 0.009537
-30848 CTAG2 cancer/testis antigen 2 protein-coding 39 0.004649
-30849 PIK3R4 phosphoinositide-3-kinase regulatory subunit 4 protein-coding 153 0.01824
-30850 CDR2L cerebellar degeneration related protein 2 like protein-coding 33 0.003934
-30851 TAX1BP3 Tax1 binding protein 3 protein-coding 9 0.001073
-30968 STOML2 stomatin like 2 protein-coding 43 0.005126
-43847 KLK14 kallikrein related peptidase 14 protein-coding 28 0.003338
-43849 KLK12 kallikrein related peptidase 12 protein-coding 39 0.004649
-49854 ZBTB21 zinc finger and BTB domain containing 21 protein-coding 107 0.01276
-49855 SCAPER S-phase cyclin A associated protein in the ER protein-coding 144 0.01717
-49856 WRAP73 WD repeat containing, antisense to TP73 protein-coding 49 0.005842
-49860 CRNN cornulin protein-coding 167 0.01991
-49861 CLDN20 claudin 20 protein-coding 17 0.002027
-50484 RRM2B ribonucleotide reductase regulatory TP53 inducible subunit M2B protein-coding 42 0.005007
-50485 SMARCAL1 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily a like 1 protein-coding 124 0.01478
-50486 G0S2 G0/G1 switch 2 protein-coding 9 0.001073
-50487 PLA2G3 phospholipase A2 group III protein-coding 82 0.009776
-50488 MINK1 misshapen like kinase 1 protein-coding 107 0.01276
-50489 CD207 CD207 molecule protein-coding 63 0.007511
-50506 DUOX2 dual oxidase 2 protein-coding 165 0.01967
-50507 NOX4 NADPH oxidase 4 protein-coding 125 0.0149
-50508 NOX3 NADPH oxidase 3 protein-coding 118 0.01407
-50509 COL5A3 collagen type V alpha 3 chain protein-coding 222 0.02647
-50511 SYCP3 synaptonemal complex protein 3 protein-coding 32 0.003815
-50512 PODXL2 podocalyxin like 2 protein-coding 60 0.007153
-50514 DEC1 deleted in esophageal cancer 1 protein-coding 8 0.0009537
-50515 CHST11 carbohydrate sulfotransferase 11 protein-coding 60 0.007153
-50604 IL20 interleukin 20 protein-coding 23 0.002742
-50613 UBQLN3 ubiquilin 3 protein-coding 112 0.01335
-50614 GALNT9 polypeptide N-acetylgalactosaminyltransferase 9 protein-coding 66 0.007868
-50615 IL21R interleukin 21 receptor protein-coding 109 0.01299
-50616 IL22 interleukin 22 protein-coding 32 0.003815
-50617 ATP6V0A4 ATPase H+ transporting V0 subunit a4 protein-coding 113 0.01347
-50618 ITSN2 intersectin 2 protein-coding 187 0.02229
-50619 DEF6 DEF6, guanine nucleotide exchange factor protein-coding 60 0.007153
-50624 CUZD1 CUB and zona pellucida like domains 1 protein-coding 63 0.007511
-50626 CYHR1 cysteine and histidine rich 1 protein-coding 27 0.003219
-50628 GEMIN4 gem nuclear organelle associated protein 4 protein-coding 78 0.009299
-50632 CALY calcyon neuron specific vesicular protein protein-coding 11 0.001311
-50636 ANO7 anoctamin 7 protein-coding 114 0.01359
-50640 PNPLA8 patatin like phospholipase domain containing 8 protein-coding 95 0.01133
-50649 ARHGEF4 Rho guanine nucleotide exchange factor 4 protein-coding 94 0.01121
-50650 ARHGEF3 Rho guanine nucleotide exchange factor 3 protein-coding 66 0.007868
-50651 SLC45A1 solute carrier family 45 member 1 protein-coding 107 0.01276
-50674 NEUROG3 neurogenin 3 protein-coding 45 0.005365
-50700 RDH8 retinol dehydrogenase 8 protein-coding 60 0.007153
-50717 DCAF8 DDB1 and CUL4 associated factor 8 protein-coding 80 0.009537
-50801 KCNK4 potassium two pore domain channel subfamily K member 4 protein-coding 32 0.003815
-50804 MYEF2 myelin expression factor 2 protein-coding 88 0.01049
-50805 IRX4 iroquois homeobox 4 protein-coding 73 0.008703
-50807 ASAP1 ArfGAP with SH3 domain, ankyrin repeat and PH domain 1 protein-coding 158 0.01884
-50808 AK3 adenylate kinase 3 protein-coding 23 0.002742
-50809 HP1BP3 heterochromatin protein 1 binding protein 3 protein-coding 69 0.008226
-50810 HDGFL3 HDGF like 3 protein-coding 19 0.002265
-50813 COPS7A COP9 signalosome subunit 7A protein-coding 30 0.003577
-50814 NSDHL NAD(P) dependent steroid dehydrogenase-like protein-coding 53 0.006319
-50831 TAS2R3 taste 2 receptor member 3 protein-coding 41 0.004888
-50832 TAS2R4 taste 2 receptor member 4 protein-coding 26 0.0031
-50833 TAS2R16 taste 2 receptor member 16 protein-coding 66 0.007868
-50834 TAS2R1 taste 2 receptor member 1 protein-coding 74 0.008822
-50835 TAS2R9 taste 2 receptor member 9 protein-coding 39 0.004649
-50836 TAS2R8 taste 2 receptor member 8 protein-coding 34 0.004053
-50837 TAS2R7 taste 2 receptor member 7 protein-coding 48 0.005722
-50838 TAS2R13 taste 2 receptor member 13 protein-coding 30 0.003577
-50839 TAS2R10 taste 2 receptor member 10 protein-coding 60 0.007153
-50840 TAS2R14 taste 2 receptor member 14 protein-coding 40 0.004769
-50846 DHH desert hedgehog protein-coding 34 0.004053
-50848 F11R F11 receptor protein-coding 41 0.004888
-50852 TRAT1 T cell receptor associated transmembrane adaptor 1 protein-coding 63 0.007511
-50853 VILL villin like protein-coding 84 0.01001
-50854 C6orf48 chromosome 6 open reading frame 48 protein-coding 6 0.0007153
-50855 PARD6A par-6 family cell polarity regulator alpha protein-coding 23 0.002742
-50856 CLEC4A C-type lectin domain family 4 member A protein-coding 43 0.005126
-50859 SPOCK3 SPARC (osteonectin), cwcv and kazal like domains proteoglycan 3 protein-coding 104 0.0124
-50861 STMN3 stathmin 3 protein-coding 22 0.002623
-50862 RNF141 ring finger protein 141 protein-coding 89 0.01061
-50863 NTM neurotrimin protein-coding 116 0.01383
-50865 HEBP1 heme binding protein 1 protein-coding 15 0.001788
-50937 CDON cell adhesion associated, oncogene regulated protein-coding 140 0.01669
-50939 IMPG2 interphotoreceptor matrix proteoglycan 2 protein-coding 176 0.02098
-50940 PDE11A phosphodiesterase 11A protein-coding 145 0.01729
-50943 FOXP3 forkhead box P3 protein-coding 41 0.004888
-50944 SHANK1 SH3 and multiple ankyrin repeat domains 1 protein-coding 216 0.02575
-50945 TBX22 T-box 22 protein-coding 141 0.01681
-50964 SOST sclerostin protein-coding 19 0.002265
-50999 TMED5 transmembrane p24 trafficking protein 5 protein-coding 24 0.002861
-51000 SLC35B3 solute carrier family 35 member B3 protein-coding 40 0.004769
-51001 MTERF3 mitochondrial transcription termination factor 3 protein-coding 59 0.007034
-51002 TPRKB TP53RK binding protein protein-coding 26 0.0031
-51003 MED31 mediator complex subunit 31 protein-coding 14 0.001669
-51004 COQ6 coenzyme Q6, monooxygenase protein-coding 55 0.006557
-51005 AMDHD2 amidohydrolase domain containing 2 protein-coding 50 0.005961
-51006 SLC35C2 solute carrier family 35 member C2 protein-coding 48 0.005722
-51008 ASCC1 activating signal cointegrator 1 complex subunit 1 protein-coding 34 0.004053
-51009 DERL2 derlin 2 protein-coding 22 0.002623
-51010 EXOSC3 exosome component 3 protein-coding 19 0.002265
-51011 FAHD2A fumarylacetoacetate hydrolase domain containing 2A protein-coding 49 0.005842
-51012 PRELID3B PRELI domain containing 3B protein-coding 24 0.002861
-51013 EXOSC1 exosome component 1 protein-coding 15 0.001788
-51014 TMED7 transmembrane p24 trafficking protein 7 protein-coding 5 0.0005961
-51015 ISOC1 isochorismatase domain containing 1 protein-coding 31 0.003696
-51016 EMC9 ER membrane protein complex subunit 9 protein-coding 25 0.00298
-51018 RRP15 ribosomal RNA processing 15 homolog protein-coding 44 0.005246
-51019 WASHC3 WASH complex subunit 3 protein-coding 27 0.003219
-51020 HDDC2 HD domain containing 2 protein-coding 29 0.003457
-51021 MRPS16 mitochondrial ribosomal protein S16 protein-coding 6 0.0007153
-51022 GLRX2 glutaredoxin 2 protein-coding 25 0.00298
-51023 MRPS18C mitochondrial ribosomal protein S18C protein-coding 14 0.001669
-51024 FIS1 fission, mitochondrial 1 protein-coding 17 0.002027
-51025 PAM16 presequence translocase associated motor 16 protein-coding 14 0.001669
-51026 GOLT1B golgi transport 1B protein-coding 77 0.00918
-51027 BOLA1 bolA family member 1 protein-coding 24 0.002861
-51028 VPS36 vacuolar protein sorting 36 homolog protein-coding 34 0.004053
-51029 DESI2 desumoylating isopeptidase 2 protein-coding 37 0.004411
-51030 TVP23B trans-golgi network vesicle protein 23 homolog B protein-coding 20 0.002384
-51031 GLOD4 glyoxalase domain containing 4 protein-coding 27 0.003219
-51032 CELA2B chymotrypsin like elastase family member 2B protein-coding 28 0.003338
-51035 UBXN1 UBX domain protein 1 protein-coding 39 0.004649
-51042 ZNF593 zinc finger protein 593 protein-coding 8 0.0009537
-51043 ZBTB7B zinc finger and BTB domain containing 7B protein-coding 106 0.01264
-51046 ST8SIA3 ST8 alpha-N-acetyl-neuraminide alpha-2,8-sialyltransferase 3 protein-coding 71 0.008464
-51050 PI15 peptidase inhibitor 15 protein-coding 84 0.01001
-51052 PRLH prolactin releasing hormone protein-coding 8 0.0009537
-51053 GMNN geminin, DNA replication inhibitor protein-coding 29 0.003457
-51054 PLEKHA8P1 pleckstrin homology domain containing A8 pseudogene 1 pseudo 102 0.01216
-51056 LAP3 leucine aminopeptidase 3 protein-coding 61 0.007272
-51057 WDPCP WD repeat containing planar cell polarity effector protein-coding 103 0.01228
-51058 ZNF691 zinc finger protein 691 protein-coding 31 0.003696
-51059 FAM135B family with sequence similarity 135 member B protein-coding 494 0.05889
-51060 TXNDC12 thioredoxin domain containing 12 protein-coding 17 0.002027
-51061 TXNDC11 thioredoxin domain containing 11 protein-coding 73 0.008703
-51062 ATL1 atlastin GTPase 1 protein-coding 114 0.01359
-51063 CALHM2 calcium homeostasis modulator family member 2 protein-coding 40 0.004769
-51065 RPS27L ribosomal protein S27 like protein-coding 4 0.0004769
-51066 SSUH2 ssu-2 homolog (C. elegans) protein-coding 62 0.007392
-51067 YARS2 tyrosyl-tRNA synthetase 2 protein-coding 58 0.006915
-51068 NMD3 NMD3 ribosome export adaptor protein-coding 62 0.007392
-51069 MRPL2 mitochondrial ribosomal protein L2 protein-coding 44 0.005246
-51070 NOSIP nitric oxide synthase interacting protein protein-coding 43 0.005126
-51071 DERA deoxyribose-phosphate aldolase protein-coding 40 0.004769
-51072 MEMO1 mediator of cell motility 1 protein-coding 37 0.004411
-51073 MRPL4 mitochondrial ribosomal protein L4 protein-coding 23 0.002742
-51074 APIP APAF1 interacting protein protein-coding 28 0.003338
-51075 TMX2 thioredoxin related transmembrane protein 2 protein-coding 42 0.005007
-51076 CUTC cutC copper transporter protein-coding 40 0.004769
-51077 FCF1 FCF1, rRNA-processing protein protein-coding 23 0.002742
-51078 THAP4 THAP domain containing 4 protein-coding 51 0.00608
-51079 NDUFA13 NADH:ubiquinone oxidoreductase subunit A13 protein-coding 28 0.003338
-51081 MRPS7 mitochondrial ribosomal protein S7 protein-coding 29 0.003457
-51082 POLR1D RNA polymerase I and III subunit D protein-coding 65 0.007749
-51083 GAL galanin and GMAP prepropeptide protein-coding 20 0.002384
-51084 CRYL1 crystallin lambda 1 protein-coding 45 0.005365
-51085 MLXIPL MLX interacting protein like protein-coding 132 0.01574
-51086 TNNI3K TNNI3 interacting kinase protein-coding 81 0.009657
-51087 YBX2 Y-box binding protein 2 protein-coding 46 0.005484
-51088 KLHL5 kelch like family member 5 protein-coding 74 0.008822
-51090 PLLP plasmolipin protein-coding 13 0.00155
-51091 SEPSECS Sep (O-phosphoserine) tRNA:Sec (selenocysteine) tRNA synthase protein-coding 97 0.01156
-51092 SIDT2 SID1 transmembrane family member 2 protein-coding 86 0.01025
-51093 RRNAD1 ribosomal RNA adenine dimethylase domain containing 1 protein-coding 53 0.006319
-51094 ADIPOR1 adiponectin receptor 1 protein-coding 46 0.005484
-51095 TRNT1 tRNA nucleotidyl transferase 1 protein-coding 54 0.006438
-51096 UTP18 UTP18, small subunit processome component protein-coding 48 0.005722
-51097 SCCPDH saccharopine dehydrogenase (putative) protein-coding 55 0.006557
-51098 IFT52 intraflagellar transport 52 protein-coding 53 0.006319
-51099 ABHD5 abhydrolase domain containing 5 protein-coding 28 0.003338
-51100 SH3GLB1 SH3 domain containing GRB2 like, endophilin B1 protein-coding 45 0.005365
-51101 ZC2HC1A zinc finger C2HC-type containing 1A protein-coding 49 0.005842
-51102 MECR mitochondrial trans-2-enoyl-CoA reductase protein-coding 37 0.004411
-51103 NDUFAF1 NADH:ubiquinone oxidoreductase complex assembly factor 1 protein-coding 41 0.004888
-51104 ABHD17B abhydrolase domain containing 17B protein-coding 38 0.00453
-51105 PHF20L1 PHD finger protein 20 like 1 protein-coding 155 0.01848
-51106 TFB1M transcription factor B1, mitochondrial protein-coding 49 0.005842
-51107 APH1A aph-1 homolog A, gamma-secretase subunit protein-coding 31 0.003696
-51108 METTL9 methyltransferase like 9 protein-coding 28 0.003338
-51109 RDH11 retinol dehydrogenase 11 protein-coding 28 0.003338
-51110 LACTB2 lactamase beta 2 protein-coding 40 0.004769
-51111 KMT5B lysine methyltransferase 5B protein-coding 115 0.01371
-51112 TRAPPC12 trafficking protein particle complex 12 protein-coding 79 0.009418
-51114 ZDHHC9 zinc finger DHHC-type containing 9 protein-coding 50 0.005961
-51115 RMDN1 regulator of microtubule dynamics 1 protein-coding 44 0.005246
-51116 MRPS2 mitochondrial ribosomal protein S2 protein-coding 32 0.003815
-51117 COQ4 coenzyme Q4 protein-coding 24 0.002861
-51118 UTP11 UTP11, small subunit processome component protein-coding 35 0.004173
-51119 SBDS SBDS, ribosome maturation factor protein-coding 69 0.008226
-51121 RPL26L1 ribosomal protein L26 like 1 protein-coding 29 0.003457
-51122 COMMD2 COMM domain containing 2 protein-coding 21 0.002504
-51123 ZNF706 zinc finger protein 706 protein-coding 8 0.0009537
-51124 IER3IP1 immediate early response 3 interacting protein 1 protein-coding 7 0.0008345
-51125 GOLGA7 golgin A7 protein-coding 11 0.001311
-51126 NAA20 N(alpha)-acetyltransferase 20, NatB catalytic subunit protein-coding 23 0.002742
-51127 TRIM17 tripartite motif containing 17 protein-coding 56 0.006676
-51128 SAR1B secretion associated Ras related GTPase 1B protein-coding 20 0.002384
-51129 ANGPTL4 angiopoietin like 4 protein-coding 39 0.004649
-51130 ASB3 ankyrin repeat and SOCS box containing 3 protein-coding 57 0.006795
-51131 PHF11 PHD finger protein 11 protein-coding 36 0.004292
-51132 RLIM ring finger protein, LIM domain interacting protein-coding 94 0.01121
-51133 KCTD3 potassium channel tetramerization domain containing 3 protein-coding 113 0.01347
-51134 CEP83 centrosomal protein 83 protein-coding 87 0.01037
-51135 IRAK4 interleukin 1 receptor associated kinase 4 protein-coding 59 0.007034
-51136 RNFT1 ring finger protein, transmembrane 1 protein-coding 33 0.003934
-51138 COPS4 COP9 signalosome subunit 4 protein-coding 55 0.006557
-51141 INSIG2 insulin induced gene 2 protein-coding 45 0.005365
-51142 CHCHD2 coiled-coil-helix-coiled-coil-helix domain containing 2 protein-coding 25 0.00298
-51143 DYNC1LI1 dynein cytoplasmic 1 light intermediate chain 1 protein-coding 56 0.006676
-51144 HSD17B12 hydroxysteroid 17-beta dehydrogenase 12 protein-coding 28 0.003338
-51146 A4GNT alpha-1,4-N-acetylglucosaminyltransferase protein-coding 65 0.007749
-51147 ING4 inhibitor of growth family member 4 protein-coding 22 0.002623
-51148 CERCAM cerebral endothelial cell adhesion molecule protein-coding 63 0.007511
-51149 MRNIP MRN complex interacting protein protein-coding 43 0.005126
-51150 SDF4 stromal cell derived factor 4 protein-coding 41 0.004888
-51151 SLC45A2 solute carrier family 45 member 2 protein-coding 235 0.02802
-51154 MRTO4 MRT4 homolog, ribosome maturation factor protein-coding 22 0.002623
-51156 SERPINA10 serpin family A member 10 protein-coding 65 0.007749
-51157 ZNF580 zinc finger protein 580 protein-coding 4 0.0004769
-51160 VPS28 VPS28, ESCRT-I subunit protein-coding 31 0.003696
-51161 C3orf18 chromosome 3 open reading frame 18 protein-coding 19 0.002265
-51162 EGFL7 EGF like domain multiple 7 protein-coding 62 0.007392
-51163 DBR1 debranching RNA lariats 1 protein-coding 68 0.008107
-51164 DCTN4 dynactin subunit 4 protein-coding 41 0.004888
-51166 AADAT aminoadipate aminotransferase protein-coding 41 0.004888
-51167 CYB5R4 cytochrome b5 reductase 4 protein-coding 67 0.007988
-51168 MYO15A myosin XVA protein-coding 321 0.03827
-51170 HSD17B11 hydroxysteroid 17-beta dehydrogenase 11 protein-coding 41 0.004888
-51171 HSD17B14 hydroxysteroid 17-beta dehydrogenase 14 protein-coding 31 0.003696
-51172 NAGPA N-acetylglucosamine-1-phosphodiester alpha-N-acetylglucosaminidase protein-coding 41 0.004888
-51174 TUBD1 tubulin delta 1 protein-coding 57 0.006795
-51175 TUBE1 tubulin epsilon 1 protein-coding 52 0.006199
-51176 LEF1 lymphoid enhancer binding factor 1 protein-coding 74 0.008822
-51177 PLEKHO1 pleckstrin homology domain containing O1 protein-coding 61 0.007272
-51179 HAO2 hydroxyacid oxidase 2 protein-coding 62 0.007392
-51181 DCXR dicarbonyl and L-xylulose reductase protein-coding 17 0.002027
-51182 HSPA14 heat shock protein family A (Hsp70) member 14 protein-coding 49 0.005842
-51184 GPN3 GPN-loop GTPase 3 protein-coding 22 0.002623
-51185 CRBN cereblon protein-coding 41 0.004888
-51186 TCEAL9 transcription elongation factor A like 9 protein-coding 20 0.002384
-51187 RSL24D1 ribosomal L24 domain containing 1 protein-coding 28 0.003338
-51188 SS18L2 SS18 like 2 protein-coding 3 0.0003577
-51191 HERC5 HECT and RLD domain containing E3 ubiquitin protein ligase 5 protein-coding 101 0.01204
-51192 CKLF chemokine like factor protein-coding 20 0.002384
-51193 ZNF639 zinc finger protein 639 protein-coding 61 0.007272
-51194 IPO11 importin 11 protein-coding 94 0.01121
-51195 RAPGEFL1 Rap guanine nucleotide exchange factor like 1 protein-coding 35 0.004173
-51196 PLCE1 phospholipase C epsilon 1 protein-coding 238 0.02837
-51198 CDKN2A-DT CDKN2A divergent transcript ncRNA 6 0.0007153
-51199 NIN ninein protein-coding 191 0.02277
-51200 CPA4 carboxypeptidase A4 protein-coding 146 0.01741
-51201 ZDHHC2 zinc finger DHHC-type containing 2 protein-coding 39 0.004649
-51202 DDX47 DEAD-box helicase 47 protein-coding 49 0.005842
-51203 NUSAP1 nucleolar and spindle associated protein 1 protein-coding 44 0.005246
-51204 TACO1 translational activator of cytochrome c oxidase I protein-coding 17 0.002027
-51205 ACP6 acid phosphatase 6, lysophosphatidic protein-coding 30 0.003577
-51206 GP6 glycoprotein VI platelet protein-coding 68 0.008107
-51207 DUSP13 dual specificity phosphatase 13 protein-coding 36 0.004292
-51208 CLDN18 claudin 18 protein-coding 48 0.005722
-51209 RAB9B RAB9B, member RAS oncogene family protein-coding 34 0.004053
-51213 LUZP4 leucine zipper protein 4 protein-coding 67 0.007988
-51218 GLRX5 glutaredoxin 5 protein-coding 3 0.0003577
-51222 ZNF219 zinc finger protein 219 protein-coding 42 0.005007
-51224 ELOA2 elongin A2 protein-coding 156 0.0186
-51225 ABI3 ABI family member 3 protein-coding 41 0.004888
-51226 COPZ2 coatomer protein complex subunit zeta 2 protein-coding 17 0.002027
-51227 PIGP phosphatidylinositol glycan anchor biosynthesis class P protein-coding 14 0.001669
-51228 GLTP glycolipid transfer protein protein-coding 25 0.00298
-51230 PHF20 PHD finger protein 20 protein-coding 117 0.01395
-51231 VRK3 vaccinia related kinase 3 protein-coding 46 0.005484
-51232 CRIM1 cysteine rich transmembrane BMP regulator 1 protein-coding 109 0.01299
-51233 DRICH1 aspartate rich 1 protein-coding 28 0.003338
-51234 EMC4 ER membrane protein complex subunit 4 protein-coding 17 0.002027
-51236 HGH1 HGH1 homolog protein-coding 1 0.0001192
-51237 MZB1 marginal zone B and B1 cell specific protein protein-coding 15 0.001788
-51239 ANKRD39 ankyrin repeat domain 39 protein-coding 14 0.001669
-51241 COX16 COX16, cytochrome c oxidase assembly homolog protein-coding 16 0.001907
-51244 CCDC174 coiled-coil domain containing 174 protein-coding 60 0.007153
-51246 SHISA5 shisa family member 5 protein-coding 28 0.003338
-51247 PAIP2 poly(A) binding protein interacting protein 2 protein-coding 15 0.001788
-51248 PDZD11 PDZ domain containing 11 protein-coding 20 0.002384
-51249 TMEM69 transmembrane protein 69 protein-coding 15 0.001788
-51250 C6orf203 chromosome 6 open reading frame 203 protein-coding 29 0.003457
-51251 NT5C3A 5'-nucleotidase, cytosolic IIIA protein-coding 53 0.006319
-51252 FAM178B family with sequence similarity 178 member B protein-coding 42 0.005007
-51253 MRPL37 mitochondrial ribosomal protein L37 protein-coding 84 0.01001
-51255 RNF181 ring finger protein 181 protein-coding 17 0.002027
-51256 TBC1D7 TBC1 domain family member 7 protein-coding 45 0.005365
-51257 MARCH2 membrane associated ring-CH-type finger 2 protein-coding 22 0.002623
-51258 MRPL51 mitochondrial ribosomal protein L51 protein-coding 15 0.001788
-51259 TMEM216 transmembrane protein 216 protein-coding 18 0.002146
-51260 PBDC1 polysaccharide biosynthesis domain containing 1 protein-coding 54 0.006438
-51263 MRPL30 mitochondrial ribosomal protein L30 protein-coding 51 0.00608
-51264 MRPL27 mitochondrial ribosomal protein L27 protein-coding 14 0.001669
-51265 CDKL3 cyclin dependent kinase like 3 protein-coding 61 0.007272
-51266 CLEC1B C-type lectin domain family 1 member B protein-coding 42 0.005007
-51267 CLEC1A C-type lectin domain family 1 member A protein-coding 55 0.006557
-51268 PIPOX pipecolic acid and sarcosine oxidase protein-coding 51 0.00608
-51270 TFDP3 transcription factor Dp family member 3 protein-coding 72 0.008584
-51271 UBAP1 ubiquitin associated protein 1 protein-coding 57 0.006795
-51272 BET1L Bet1 golgi vesicular membrane trafficking protein like protein-coding 7 0.0008345
-51274 KLF3 Kruppel like factor 3 protein-coding 82 0.009776
-51276 ZNF571 zinc finger protein 571 protein-coding 75 0.008941
-51277 DNAJC27 DnaJ heat shock protein family (Hsp40) member C27 protein-coding 34 0.004053
-51278 IER5 immediate early response 5 protein-coding 23 0.002742
-51279 C1RL complement C1r subcomponent like protein-coding 55 0.006557
-51280 GOLM1 golgi membrane protein 1 protein-coding 39 0.004649
-51281 ANKMY1 ankyrin repeat and MYND domain containing 1 protein-coding 104 0.0124
-51282 SCAND1 SCAN domain containing 1 protein-coding 11 0.001311
-51283 BFAR bifunctional apoptosis regulator protein-coding 58 0.006915
-51284 TLR7 toll like receptor 7 protein-coding 142 0.01693
-51285 RASL12 RAS like family 12 protein-coding 30 0.003577
-51286 CEND1 cell cycle exit and neuronal differentiation 1 protein-coding 15 0.001788
-51287 COA4 cytochrome c oxidase assembly factor 4 homolog protein-coding 10 0.001192
-51289 RXFP3 relaxin family peptide receptor 3 protein-coding 131 0.01562
-51290 ERGIC2 ERGIC and golgi 2 protein-coding 40 0.004769
-51291 GMIP GEM interacting protein protein-coding 106 0.01264
-51292 GMPR2 guanosine monophosphate reductase 2 protein-coding 35 0.004173
-51293 CD320 CD320 molecule protein-coding 31 0.003696
-51294 PCDH12 protocadherin 12 protein-coding 131 0.01562
-51295 ECSIT ECSIT signalling integrator protein-coding 53 0.006319
-51296 SLC15A3 solute carrier family 15 member 3 protein-coding 43 0.005126
-51297 BPIFA1 BPI fold containing family A member 1 protein-coding 45 0.005365
-51298 THEG theg spermatid protein protein-coding 65 0.007749
-51299 NRN1 neuritin 1 protein-coding 32 0.003815
-51300 TIMMDC1 translocase of inner mitochondrial membrane domain containing 1 protein-coding 48 0.005722
-51301 GCNT4 glucosaminyl (N-acetyl) transferase 4, core 2 protein-coding 59 0.007034
-51302 CYP39A1 cytochrome P450 family 39 subfamily A member 1 protein-coding 60 0.007153
-51303 FKBP11 FK506 binding protein 11 protein-coding 24 0.002861
-51304 ZDHHC3 zinc finger DHHC-type containing 3 protein-coding 32 0.003815
-51305 KCNK9 potassium two pore domain channel subfamily K member 9 protein-coding 107 0.01276
-51306 FAM13B family with sequence similarity 13 member B protein-coding 85 0.01013
-51307 FAM53C family with sequence similarity 53 member C protein-coding 46 0.005484
-51308 REEP2 receptor accessory protein 2 protein-coding 28 0.003338
-51309 ARMCX1 armadillo repeat containing, X-linked 1 protein-coding 61 0.007272
-51310 SLC22A17 solute carrier family 22 member 17 protein-coding 42 0.005007
-51311 TLR8 toll like receptor 8 protein-coding 147 0.01753
-51312 SLC25A37 solute carrier family 25 member 37 protein-coding 38 0.00453
-51313 FAM198B family with sequence similarity 198 member B protein-coding 72 0.008584
-51314 NME8 NME/NM23 family member 8 protein-coding 128 0.01526
-51315 KRCC1 lysine rich coiled-coil 1 protein-coding 32 0.003815
-51316 PLAC8 placenta specific 8 protein-coding 19 0.002265
-51317 PHF21A PHD finger protein 21A protein-coding 71 0.008464
-51318 MRPL35 mitochondrial ribosomal protein L35 protein-coding 27 0.003219
-51319 RSRC1 arginine and serine rich coiled-coil 1 protein-coding 64 0.00763
-51320 MEX3C mex-3 RNA binding family member C protein-coding 32 0.003815
-51321 AMZ2 archaelysin family metallopeptidase 2 protein-coding 51 0.00608
-51322 WAC WW domain containing adaptor with coiled-coil protein-coding 102 0.01216
-51324 SPG21 SPG21, maspardin protein-coding 31 0.003696
-51327 AHSP alpha hemoglobin stabilizing protein protein-coding 13 0.00155
-51329 ARL6IP4 ADP ribosylation factor like GTPase 6 interacting protein 4 protein-coding 30 0.003577
-51330 TNFRSF12A TNF receptor superfamily member 12A protein-coding 9 0.001073
-51332 SPTBN5 spectrin beta, non-erythrocytic 5 protein-coding 240 0.02861
-51333 ZNF771 zinc finger protein 771 protein-coding 4 0.0004769
-51334 PRR16 proline rich 16 protein-coding 65 0.007749
-51335 NGRN neugrin, neurite outgrowth associated protein-coding 29 0.003457
-51337 THEM6 thioesterase superfamily member 6 protein-coding 5 0.0005961
-51338 MS4A4A membrane spanning 4-domains A4A protein-coding 51 0.00608
-51339 DACT1 dishevelled binding antagonist of beta catenin 1 protein-coding 140 0.01669
-51340 CRNKL1 crooked neck pre-mRNA splicing factor 1 protein-coding 102 0.01216
-51341 ZBTB7A zinc finger and BTB domain containing 7A protein-coding 59 0.007034
-51343 FZR1 fizzy and cell division cycle 20 related 1 protein-coding 307 0.0366
-51347 TAOK3 TAO kinase 3 protein-coding 114 0.01359
-51348 KLRF1 killer cell lectin like receptor F1 protein-coding 40 0.004769
-51350 KRT76 keratin 76 protein-coding 66 0.007868
-51351 ZNF117 zinc finger protein 117 protein-coding 70 0.008345
-51360 MBTPS2 membrane bound transcription factor peptidase, site 2 protein-coding 71 0.008464
-51361 HOOK1 hook microtubule tethering protein 1 protein-coding 185 0.02206
-51362 CDC40 cell division cycle 40 protein-coding 62 0.007392
-51363 CHST15 carbohydrate sulfotransferase 15 protein-coding 99 0.0118
-51364 ZMYND10 zinc finger MYND-type containing 10 protein-coding 35 0.004173
-51365 PLA1A phospholipase A1 member A protein-coding 74 0.008822
-51366 UBR5 ubiquitin protein ligase E3 component n-recognin 5 protein-coding 290 0.03457
-51367 POP5 POP5 homolog, ribonuclease P/MRP subunit protein-coding 10 0.001192
-51368 TEX264 testis expressed 264 protein-coding 32 0.003815
-51371 POMP proteasome maturation protein protein-coding 18 0.002146
-51372 TMA7 translation machinery associated 7 homolog protein-coding 7 0.0008345
-51373 MRPS17 mitochondrial ribosomal protein S17 protein-coding 36 0.004292
-51374 ATRAID all-trans retinoic acid induced differentiation factor protein-coding 24 0.002861
-51375 SNX7 sorting nexin 7 protein-coding 59 0.007034
-51377 UCHL5 ubiquitin C-terminal hydrolase L5 protein-coding 39 0.004649
-51378 ANGPT4 angiopoietin 4 protein-coding 89 0.01061
-51379 CRLF3 cytokine receptor like factor 3 protein-coding 49 0.005842
-51380 CSAD cysteine sulfinic acid decarboxylase protein-coding 59 0.007034
-51382 ATP6V1D ATPase H+ transporting V1 subunit D protein-coding 36 0.004292
-51384 WNT16 Wnt family member 16 protein-coding 59 0.007034
-51385 ZNF589 zinc finger protein 589 protein-coding 30 0.003577
-51386 EIF3L eukaryotic translation initiation factor 3 subunit L protein-coding 57 0.006795
-51388 NIP7 NIP7, nucleolar pre-rRNA processing protein protein-coding 19 0.002265
-51389 RWDD1 RWD domain containing 1 protein-coding 27 0.003219
-51390 AIG1 androgen induced 1 protein-coding 20 0.002384
-51393 TRPV2 transient receptor potential cation channel subfamily V member 2 protein-coding 89 0.01061
-51397 COMMD10 COMM domain containing 10 protein-coding 24 0.002861
-51398 WDR83OS WD repeat domain 83 opposite strand protein-coding 11 0.001311
-51399 TRAPPC4 trafficking protein particle complex 4 protein-coding 19 0.002265
-51400 PPME1 protein phosphatase methylesterase 1 protein-coding 31 0.003696
-51406 NOL7 nucleolar protein 7 protein-coding 23 0.002742
-51409 HEMK1 HemK methyltransferase family member 1 protein-coding 27 0.003219
-51411 BIN2 bridging integrator 2 protein-coding 57 0.006795
-51412 ACTL6B actin like 6B protein-coding 68 0.008107
-51421 AMOTL2 angiomotin like 2 protein-coding 89 0.01061
-51422 PRKAG2 protein kinase AMP-activated non-catalytic subunit gamma 2 protein-coding 63 0.007511
-51426 POLK DNA polymerase kappa protein-coding 368 0.04387
-51427 ZNF107 zinc finger protein 107 protein-coding 139 0.01657
-51428 DDX41 DEAD-box helicase 41 protein-coding 73 0.008703
-51429 SNX9 sorting nexin 9 protein-coding 54 0.006438
-51430 SUCO SUN domain containing ossification factor protein-coding 140 0.01669
-51433 ANAPC5 anaphase promoting complex subunit 5 protein-coding 86 0.01025
-51434 ANAPC7 anaphase promoting complex subunit 7 protein-coding 52 0.006199
-51435 SCARA3 scavenger receptor class A member 3 protein-coding 64 0.00763
-51438 MAGEC2 MAGE family member C2 protein-coding 111 0.01323
-51439 FAM8A1 family with sequence similarity 8 member A1 protein-coding 32 0.003815
-51440 HPCAL4 hippocalcin like 4 protein-coding 31 0.003696
-51441 YTHDF2 YTH N6-methyladenosine RNA binding protein 2 protein-coding 68 0.008107
-51442 VGLL1 vestigial like family member 1 protein-coding 56 0.006676
-51444 RNF138 ring finger protein 138 protein-coding 94 0.01121
-51447 IP6K2 inositol hexakisphosphate kinase 2 protein-coding 43 0.005126
-51449 PCYOX1 prenylcysteine oxidase 1 protein-coding 48 0.005722
-51450 PRRX2 paired related homeobox 2 protein-coding 21 0.002504
-51451 LCMT1 leucine carboxyl methyltransferase 1 protein-coding 47 0.005603
-51454 GULP1 GULP, engulfment adaptor PTB domain containing 1 protein-coding 44 0.005246
-51455 REV1 REV1, DNA directed polymerase protein-coding 123 0.01466
-51458 RHCG Rh family C glycoprotein protein-coding 69 0.008226
-51460 SFMBT1 Scm like with four mbt domains 1 protein-coding 76 0.009061
-51463 GPR89B G protein-coupled receptor 89B protein-coding 20 0.002384
-51465 UBE2J1 ubiquitin conjugating enzyme E2 J1 protein-coding 34 0.004053
-51466 EVL Enah/Vasp-like protein-coding 46 0.005484
-51473 DCDC2 doublecortin domain containing 2 protein-coding 63 0.007511
-51474 LIMA1 LIM domain and actin binding 1 protein-coding 92 0.01097
-51475 CABP2 calcium binding protein 2 protein-coding 35 0.004173
-51477 ISYNA1 inositol-3-phosphate synthase 1 protein-coding 47 0.005603
-51478 HSD17B7 hydroxysteroid 17-beta dehydrogenase 7 protein-coding 37 0.004411
-51479 ANKFY1 ankyrin repeat and FYVE domain containing 1 protein-coding 96 0.01144
-51480 VCX2 variable charge, X-linked 2 protein-coding 9 0.001073
-51481 VCX3A variable charge, X-linked 3A protein-coding 17 0.002027
-51490 SPOUT1 SPOUT domain containing methyltransferase 1 protein-coding 39 0.004649
-51491 NOP16 NOP16 nucleolar protein protein-coding 16 0.001907
-51493 RTCB RNA 2',3'-cyclic phosphate and 5'-OH ligase protein-coding 56 0.006676
-51495 HACD3 3-hydroxyacyl-CoA dehydratase 3 protein-coding 30 0.003577
-51496 CTDSPL2 CTD small phosphatase like 2 protein-coding 49 0.005842
-51497 NELFCD negative elongation factor complex member C/D protein-coding 70 0.008345
-51499 TRIAP1 TP53 regulated inhibitor of apoptosis 1 protein-coding 8 0.0009537
-51501 HIKESHI Hikeshi, heat shock protein nuclear import factor protein-coding 32 0.003815
-51503 CWC15 CWC15 spliceosome associated protein homolog protein-coding 19 0.002265
-51504 TRMT112 tRNA methyltransferase subunit 11-2 protein-coding 17 0.002027
-51506 UFC1 ubiquitin-fold modifier conjugating enzyme 1 protein-coding 22 0.002623
-51507 RTF2 replication termination factor 2 protein-coding 46 0.005484
-51510 CHMP5 charged multivesicular body protein 5 protein-coding 19 0.002265
-51512 GTSE1 G2 and S-phase expressed 1 protein-coding 71 0.008464
-51513 ETV7 ETS variant 7 protein-coding 47 0.005603
-51514 DTL denticleless E3 ubiquitin protein ligase homolog protein-coding 57 0.006795
-51517 NCKIPSD NCK interacting protein with SH3 domain protein-coding 53 0.006319
-51520 LARS leucyl-tRNA synthetase protein-coding 104 0.0124
-51522 TMEM14C transmembrane protein 14C protein-coding 14 0.001669
-51523 CXXC5 CXXC finger protein 5 protein-coding 33 0.003934
-51524 TMEM138 transmembrane protein 138 protein-coding 21 0.002504
-51526 OSER1 oxidative stress responsive serine rich 1 protein-coding 31 0.003696
-51527 GSKIP GSK3B interacting protein protein-coding 13 0.00155
-51528 JKAMP JNK1/MAPK8 associated membrane protein protein-coding 37 0.004411
-51529 ANAPC11 anaphase promoting complex subunit 11 protein-coding 17 0.002027
-51530 ZC3HC1 zinc finger C3HC-type containing 1 protein-coding 53 0.006319
-51531 TRMO tRNA methyltransferase O protein-coding 45 0.005365
-51533 PHF7 PHD finger protein 7 protein-coding 40 0.004769
-51534 VTA1 vesicle trafficking 1 protein-coding 81 0.009657
-51535 PPHLN1 periphilin 1 protein-coding 60 0.007153
-51537 MTFP1 mitochondrial fission process 1 protein-coding 18 0.002146
-51538 ZCCHC17 zinc finger CCHC-type containing 17 protein-coding 24 0.002861
-51540 SCLY selenocysteine lyase protein-coding 47 0.005603
-51542 VPS54 VPS54, GARP complex subunit protein-coding 84 0.01001
-51545 ZNF581 zinc finger protein 581 protein-coding 29 0.003457
-51547 SIRT7 sirtuin 7 protein-coding 44 0.005246
-51548 SIRT6 sirtuin 6 protein-coding 26 0.0031
-51550 CINP cyclin dependent kinase 2 interacting protein protein-coding 19 0.002265
-51552 RAB14 RAB14, member RAS oncogene family protein-coding 23 0.002742
-51554 ACKR4 atypical chemokine receptor 4 protein-coding 43 0.005126
-51555 PEX5L peroxisomal biogenesis factor 5 like protein-coding 136 0.01621
-51557 LGSN lengsin, lens protein with glutamine synthetase domain protein-coding 94 0.01121
-51559 NT5DC3 5'-nucleotidase domain containing 3 protein-coding 66 0.007868
-51560 RAB6B RAB6B, member RAS oncogene family protein-coding 48 0.005722
-51561 IL23A interleukin 23 subunit alpha protein-coding 15 0.001788
-51562 MBIP MAP3K12 binding inhibitory protein 1 protein-coding 43 0.005126
-51564 HDAC7 histone deacetylase 7 protein-coding 78 0.009299
-51566 ARMCX3 armadillo repeat containing, X-linked 3 protein-coding 50 0.005961
-51567 TDP2 tyrosyl-DNA phosphodiesterase 2 protein-coding 50 0.005961
-51569 UFM1 ubiquitin fold modifier 1 protein-coding 9 0.001073
-51571 FAM49B family with sequence similarity 49 member B protein-coding 43 0.005126
-51573 GDE1 glycerophosphodiester phosphodiesterase 1 protein-coding 29 0.003457
-51574 LARP7 La ribonucleoprotein domain family member 7 protein-coding 75 0.008941
-51575 ESF1 ESF1 nucleolar pre-rRNA processing protein homolog protein-coding 124 0.01478
-51582 AZIN1 antizyme inhibitor 1 protein-coding 137 0.01633
-51585 PCF11 PCF11 cleavage and polyadenylation factor subunit protein-coding 169 0.02015
-51586 MED15 mediator complex subunit 15 protein-coding 92 0.01097
-51588 PIAS4 protein inhibitor of activated STAT 4 protein-coding 55 0.006557
-51592 TRIM33 tripartite motif containing 33 protein-coding 93 0.01109
-51593 SRRT serrate, RNA effector molecule protein-coding 127 0.01514
-51594 NBAS neuroblastoma amplified sequence protein-coding 281 0.0335
-51596 CUTA cutA divalent cation tolerance homolog protein-coding 21 0.002504
-51599 LSR lipolysis stimulated lipoprotein receptor protein-coding 72 0.008584
-51601 LIPT1 lipoyltransferase 1 protein-coding 38 0.00453
-51602 NOP58 NOP58 ribonucleoprotein protein-coding 62 0.007392
-51603 METTL13 methyltransferase like 13 protein-coding 89 0.01061
-51604 PIGT phosphatidylinositol glycan anchor biosynthesis class T protein-coding 51 0.00608
-51605 TRMT6 tRNA methyltransferase 6 protein-coding 54 0.006438
-51606 ATP6V1H ATPase H+ transporting V1 subunit H protein-coding 75 0.008941
-51608 GET4 golgi to ER traffic protein 4 protein-coding 39 0.004649
-51611 DPH5 diphthamide biosynthesis 5 protein-coding 29 0.003457
-51614 ERGIC3 ERGIC and golgi 3 protein-coding 63 0.007511
-51616 TAF9B TATA-box binding protein associated factor 9b protein-coding 40 0.004769
-51617 NSG2 neuronal vesicle trafficking associated 2 protein-coding 30 0.003577
-51619 UBE2D4 ubiquitin conjugating enzyme E2 D4 (putative) protein-coding 12 0.001431
-51621 KLF13 Kruppel like factor 13 protein-coding 17 0.002027
-51622 CCZ1 CCZ1 homolog, vacuolar protein trafficking and biogenesis associated protein-coding 44 0.005246
-51626 DYNC2LI1 dynein cytoplasmic 2 light intermediate chain 1 protein-coding 46 0.005484
-51629 SLC25A39 solute carrier family 25 member 39 protein-coding 42 0.005007
-51631 LUC7L2 LUC7 like 2, pre-mRNA splicing factor protein-coding 61 0.007272
-51633 OTUD6B OTU domain containing 6B protein-coding 45 0.005365
-51634 RBMX2 RNA binding motif protein, X-linked 2 protein-coding 51 0.00608
-51635 DHRS7 dehydrogenase/reductase 7 protein-coding 48 0.005722
-51637 RTRAF RNA transcription, translation and transport factor protein-coding 29 0.003457
-51639 SF3B6 splicing factor 3b subunit 6 protein-coding 11 0.001311
-51642 MRPL48 mitochondrial ribosomal protein L48 protein-coding 18 0.002146
-51643 TMBIM4 transmembrane BAX inhibitor motif containing 4 protein-coding 30 0.003577
-51645 PPIL1 peptidylprolyl isomerase like 1 protein-coding 24 0.002861
-51646 YPEL5 yippee like 5 protein-coding 19 0.002265
-51647 FAM96B family with sequence similarity 96 member B protein-coding 7 0.0008345
-51649 MRPS23 mitochondrial ribosomal protein S23 protein-coding 19 0.002265
-51650 MRPS33 mitochondrial ribosomal protein S33 protein-coding 16 0.001907
-51651 PTRH2 peptidyl-tRNA hydrolase 2 protein-coding 35 0.004173
-51652 CHMP3 charged multivesicular body protein 3 protein-coding 15 0.001788
-51654 CDK5RAP1 CDK5 regulatory subunit associated protein 1 protein-coding 65 0.007749
-51655 RASD1 ras related dexamethasone induced 1 protein-coding 22 0.002623
-51657 STYXL1 serine/threonine/tyrosine interacting like 1 protein-coding 52 0.006199
-51659 GINS2 GINS complex subunit 2 protein-coding 16 0.001907
-51660 MPC1 mitochondrial pyruvate carrier 1 protein-coding 9 0.001073
-51661 FKBP7 FK506 binding protein 7 protein-coding 26 0.0031
-51663 ZFR zinc finger RNA binding protein protein-coding 113 0.01347
-51665 ASB1 ankyrin repeat and SOCS box containing 1 protein-coding 43 0.005126
-51666 ASB4 ankyrin repeat and SOCS box containing 4 protein-coding 73 0.008703
-51667 NUB1 negative regulator of ubiquitin like proteins 1 protein-coding 58 0.006915
-51668 HSPB11 heat shock protein family B (small) member 11 protein-coding 25 0.00298
-51669 SARAF store-operated calcium entry associated regulatory factor protein-coding 32 0.003815
-51673 TPPP3 tubulin polymerization promoting protein family member 3 protein-coding 21 0.002504
-51676 ASB2 ankyrin repeat and SOCS box containing 2 protein-coding 73 0.008703
-51678 MPP6 membrane palmitoylated protein 6 protein-coding 82 0.009776
-51684 SUFU SUFU negative regulator of hedgehog signaling protein-coding 59 0.007034
-51686 OAZ3 ornithine decarboxylase antizyme 3 protein-coding 29 0.003457
-51690 LSM7 LSM7 homolog, U6 small nuclear RNA and mRNA degradation associated protein-coding 2 0.0002384
-51691 LSM8 LSM8 homolog, U6 small nuclear RNA associated protein-coding 20 0.002384
-51692 CPSF3 cleavage and polyadenylation specific factor 3 protein-coding 62 0.007392
-51693 TRAPPC2L trafficking protein particle complex 2 like protein-coding 23 0.002742
-51696 HECA hdc homolog, cell cycle regulator protein-coding 178 0.02122
-51699 VPS29 VPS29, retromer complex component protein-coding 25 0.00298
-51700 CYB5R2 cytochrome b5 reductase 2 protein-coding 31 0.003696
-51701 NLK nemo like kinase protein-coding 71 0.008464
-51702 PADI3 peptidyl arginine deiminase 3 protein-coding 85 0.01013
-51703 ACSL5 acyl-CoA synthetase long chain family member 5 protein-coding 82 0.009776
-51704 GPRC5B G protein-coupled receptor class C group 5 member B protein-coding 69 0.008226
-51705 EMCN endomucin protein-coding 44 0.005246
-51706 CYB5R1 cytochrome b5 reductase 1 protein-coding 32 0.003815
-51710 ZNF44 zinc finger protein 44 protein-coding 90 0.01073
-51714 SELENOT selenoprotein T protein-coding 21 0.002504
-51715 RAB23 RAB23, member RAS oncogene family protein-coding 28 0.003338
-51716 CES1P1 carboxylesterase 1 pseudogene 1 pseudo 35 0.004173
-51719 CAB39 calcium binding protein 39 protein-coding 26 0.0031
-51720 UIMC1 ubiquitin interaction motif containing 1 protein-coding 61 0.007272
-51725 FBXO40 F-box protein 40 protein-coding 101 0.01204
-51726 DNAJB11 DnaJ heat shock protein family (Hsp40) member B11 protein-coding 55 0.006557
-51727 CMPK1 cytidine/uridine monophosphate kinase 1 protein-coding 29 0.003457
-51728 POLR3K RNA polymerase III subunit K protein-coding 8 0.0009537
-51729 WBP11 WW domain binding protein 11 protein-coding 74 0.008822
-51733 UPB1 beta-ureidopropionase 1 protein-coding 45 0.005365
-51734 MSRB1 methionine sulfoxide reductase B1 protein-coding 17 0.002027
-51735 RAPGEF6 Rap guanine nucleotide exchange factor 6 protein-coding 153 0.01824
-51738 GHRL ghrelin and obestatin prepropeptide protein-coding 18 0.002146
-51741 WWOX WW domain containing oxidoreductase protein-coding 70 0.008345
-51742 ARID4B AT-rich interaction domain 4B protein-coding 164 0.01955
-51744 CD244 CD244 molecule protein-coding 57 0.006795
-51747 LUC7L3 LUC7 like 3 pre-mRNA splicing factor protein-coding 62 0.007392
-51750 RTEL1 regulator of telomere elongation helicase 1 protein-coding 116 0.01383
-51751 HIGD1B HIG1 hypoxia inducible domain family member 1B protein-coding 10 0.001192
-51752 ERAP1 endoplasmic reticulum aminopeptidase 1 protein-coding 84 0.01001
-51754 TMEM8B transmembrane protein 8B protein-coding 54 0.006438
-51755 CDK12 cyclin dependent kinase 12 protein-coding 212 0.02527
-51759 C9orf78 chromosome 9 open reading frame 78 protein-coding 29 0.003457
-51760 SYT17 synaptotagmin 17 protein-coding 56 0.006676
-51761 ATP8A2 ATPase phospholipid transporting 8A2 protein-coding 183 0.02182
-51762 RAB8B RAB8B, member RAS oncogene family protein-coding 22 0.002623
-51763 INPP5K inositol polyphosphate-5-phosphatase K protein-coding 30 0.003577
-51764 GNG13 G protein subunit gamma 13 protein-coding 14 0.001669
-51765 STK26 serine/threonine kinase 26 protein-coding 55 0.006557
-51768 TM7SF3 transmembrane 7 superfamily member 3 protein-coding 70 0.008345
-51773 RSF1 remodeling and spacing factor 1 protein-coding 137 0.01633
-51776 MAP3K20 mitogen-activated protein kinase kinase kinase 20 protein-coding 83 0.009895
-51778 MYOZ2 myozenin 2 protein-coding 38 0.00453
-51780 KDM3B lysine demethylase 3B protein-coding 196 0.02337
-51802 ASIC5 acid sensing ion channel subunit family member 5 protein-coding 93 0.01109
-51804 SIX4 SIX homeobox 4 protein-coding 80 0.009537
-51805 COQ3 coenzyme Q3, methyltransferase protein-coding 43 0.005126
-51806 CALML5 calmodulin like 5 protein-coding 18 0.002146
-51807 TUBA8 tubulin alpha 8 protein-coding 49 0.005842
-51808 PHAX phosphorylated adaptor for RNA export protein-coding 40 0.004769
-51809 GALNT7 polypeptide N-acetylgalactosaminyltransferase 7 protein-coding 73 0.008703
-51816 ADA2 adenosine deaminase 2 protein-coding 77 0.00918
-53335 BCL11A B cell CLL/lymphoma 11A protein-coding 164 0.01955
-53336 CPXCR1 CPX chromosome region, candidate 1 protein-coding 100 0.01192
-53339 BTBD1 BTB domain containing 1 protein-coding 42 0.005007
-53340 SPA17 sperm autoantigenic protein 17 protein-coding 17 0.002027
-53342 IL17D interleukin 17D protein-coding 4 0.0004769
-53343 NUDT9 nudix hydrolase 9 protein-coding 57 0.006795
-53344 CHIC1 cysteine rich hydrophobic domain 1 protein-coding 18 0.002146
-53345 TM6SF2 transmembrane 6 superfamily member 2 protein-coding 35 0.004173
-53346 TM6SF1 transmembrane 6 superfamily member 1 protein-coding 66 0.007868
-53347 UBASH3A ubiquitin associated and SH3 domain containing A protein-coding 171 0.02039
-53349 ZFYVE1 zinc finger FYVE-type containing 1 protein-coding 84 0.01001
-53353 LRP1B LDL receptor related protein 1B protein-coding 996 0.1187
-53354 PANK1 pantothenate kinase 1 protein-coding 59 0.007034
-53358 SHC3 SHC adaptor protein 3 protein-coding 76 0.009061
-53371 NUP54 nucleoporin 54 protein-coding 45 0.005365
-53373 TPCN1 two pore segment channel 1 protein-coding 105 0.01252
-53405 CLIC5 chloride intracellular channel 5 protein-coding 49 0.005842
-53407 STX18 syntaxin 18 protein-coding 36 0.004292
-53615 MBD3 methyl-CpG binding domain protein 3 protein-coding 47 0.005603
-53616 ADAM22 ADAM metallopeptidase domain 22 protein-coding 138 0.01645
-53630 BCO1 beta-carotene oxygenase 1 protein-coding 59 0.007034
-53632 PRKAG3 protein kinase AMP-activated non-catalytic subunit gamma 3 protein-coding 58 0.006915
-53635 PTOV1 prostate tumor overexpressed 1 protein-coding 61 0.007272
-53637 S1PR5 sphingosine-1-phosphate receptor 5 protein-coding 39 0.004649
-53820 RIPPLY3 ripply transcriptional repressor 3 protein-coding 30 0.003577
-53822 FXYD7 FXYD domain containing ion transport regulator 7 protein-coding 7 0.0008345
-53826 FXYD6 FXYD domain containing ion transport regulator 6 protein-coding 15 0.001788
-53827 FXYD5 FXYD domain containing ion transport regulator 5 protein-coding 29 0.003457
-53828 FXYD4 FXYD domain containing ion transport regulator 4 protein-coding 8 0.0009537
-53829 P2RY13 purinergic receptor P2Y13 protein-coding 54 0.006438
-53831 GPR84 G protein-coupled receptor 84 protein-coding 54 0.006438
-53832 IL20RA interleukin 20 receptor subunit alpha protein-coding 55 0.006557
-53833 IL20RB interleukin 20 receptor subunit beta protein-coding 37 0.004411
-53834 FGFRL1 fibroblast growth factor receptor like 1 protein-coding 62 0.007392
-53836 GPR87 G protein-coupled receptor 87 protein-coding 60 0.007153
-53838 C11orf24 chromosome 11 open reading frame 24 protein-coding 50 0.005961
-53840 TRIM34 tripartite motif containing 34 protein-coding 57 0.006795
-53841 CDHR5 cadherin related family member 5 protein-coding 77 0.00918
-53842 CLDN22 claudin 22 protein-coding 32 0.003815
-53904 MYO3A myosin IIIA protein-coding 309 0.03684
-53905 DUOX1 dual oxidase 1 protein-coding 135 0.01609
-53916 RAB4B RAB4B, member RAS oncogene family protein-coding 30 0.003577
-53917 RAB24 RAB24, member RAS oncogene family protein-coding 28 0.003338
-53918 PELO pelota mRNA surveillance and ribosome rescue factor protein-coding 38 0.00453
-53919 SLCO1C1 solute carrier organic anion transporter family member 1C1 protein-coding 165 0.01967
-53938 PPIL3 peptidylprolyl isomerase like 3 protein-coding 7 0.0008345
-53940 FTHL17 ferritin heavy chain like 17 protein-coding 53 0.006319
-53942 CNTN5 contactin 5 protein-coding 261 0.03112
-53944 CSNK1G1 casein kinase 1 gamma 1 protein-coding 57 0.006795
-53947 A4GALT alpha 1,4-galactosyltransferase (P blood group) protein-coding 47 0.005603
-53981 CPSF2 cleavage and polyadenylation specific factor 2 protein-coding 82 0.009776
-54014 BRWD1 bromodomain and WD repeat domain containing 1 protein-coding 229 0.0273
-54020 SLC37A1 solute carrier family 37 member 1 protein-coding 59 0.007034
-54033 RBM11 RNA binding motif protein 11 protein-coding 50 0.005961
-54039 PCBP3 poly(rC) binding protein 3 protein-coding 60 0.007153
-54055 CYP4F29P cytochrome P450 family 4 subfamily F member 29, pseudogene pseudo 11 0.001311
-54058 C21orf58 chromosome 21 open reading frame 58 protein-coding 36 0.004292
-54059 YBEY ybeY metallopeptidase (putative) protein-coding 12 0.001431
-54065 SMIM11A small integral membrane protein 11A protein-coding 9 0.001073
-54067 C21orf62-AS1 C21orf62 antisense RNA 1 ncRNA 3 0.0003577
-54069 MIS18A MIS18 kinetochore protein A protein-coding 20 0.002384
-54072 LINC00158 long intergenic non-protein coding RNA 158 ncRNA 10 0.001192
-54084 TSPEAR thrombospondin type laminin G domain and EAR repeats protein-coding 112 0.01335
-54093 SETD4 SET domain containing 4 protein-coding 49 0.005842
-54097 FAM3B family with sequence similarity 3 member B protein-coding 23 0.002742
-54101 RIPK4 receptor interacting serine/threonine kinase 4 protein-coding 102 0.01216
-54102 CLIC6 chloride intracellular channel 6 protein-coding 39 0.004649
-54103 GSAP gamma-secretase activating protein protein-coding 70 0.008345
-54106 TLR9 toll like receptor 9 protein-coding 109 0.01299
-54107 POLE3 DNA polymerase epsilon 3, accessory subunit protein-coding 20 0.002384
-54108 CHRAC1 chromatin accessibility complex 1 protein-coding 13 0.00155
-54112 GPR88 G protein-coupled receptor 88 protein-coding 13 0.00155
-54143 LINC00308 long intergenic non-protein coding RNA 308 ncRNA 7 0.0008345
-54148 MRPL39 mitochondrial ribosomal protein L39 protein-coding 40 0.004769
-54149 C21orf91 chromosome 21 open reading frame 91 protein-coding 41 0.004888
-54165 DCUN1D1 defective in cullin neddylation 1 domain containing 1 protein-coding 45 0.005365
-54187 NANS N-acetylneuraminate synthase protein-coding 34 0.004053
-54205 CYCS cytochrome c, somatic protein-coding 14 0.001669
-54206 ERRFI1 ERBB receptor feedback inhibitor 1 protein-coding 64 0.00763
-54207 KCNK10 potassium two pore domain channel subfamily K member 10 protein-coding 110 0.01311
-54209 TREM2 triggering receptor expressed on myeloid cells 2 protein-coding 32 0.003815
-54210 TREM1 triggering receptor expressed on myeloid cells 1 protein-coding 38 0.00453
-54212 SNTG1 syntrophin gamma 1 protein-coding 185 0.02206
-54221 SNTG2 syntrophin gamma 2 protein-coding 141 0.01681
-54328 GPR173 G protein-coupled receptor 173 protein-coding 55 0.006557
-54329 GPR85 G protein-coupled receptor 85 protein-coding 63 0.007511
-54331 GNG2 G protein subunit gamma 2 protein-coding 18 0.002146
-54332 GDAP1 ganglioside induced differentiation associated protein 1 protein-coding 43 0.005126
-54344 DPM3 dolichyl-phosphate mannosyltransferase subunit 3 protein-coding 10 0.001192
-54345 SOX18 SRY-box 18 protein-coding 10 0.001192
-54346 UNC93A unc-93 homolog A protein-coding 80 0.009537
-54360 CYTL1 cytokine like 1 protein-coding 28 0.003338
-54361 WNT4 Wnt family member 4 protein-coding 35 0.004173
-54363 HAO1 hydroxyacid oxidase 1 protein-coding 89 0.01061
-54386 TERF2IP TERF2 interacting protein protein-coding 39 0.004649
-54407 SLC38A2 solute carrier family 38 member 2 protein-coding 60 0.007153
-54413 NLGN3 neuroligin 3 protein-coding 126 0.01502
-54414 SIAE sialic acid acetylesterase protein-coding 50 0.005961
-54429 TAS2R5 taste 2 receptor member 5 protein-coding 27 0.003219
-54431 DNAJC10 DnaJ heat shock protein family (Hsp40) member C10 protein-coding 106 0.01264
-54432 YIPF1 Yip1 domain family member 1 protein-coding 35 0.004173
-54433 GAR1 GAR1 ribonucleoprotein protein-coding 29 0.003457
-54434 SSH1 slingshot protein phosphatase 1 protein-coding 102 0.01216
-54436 SH3TC1 SH3 domain and tetratricopeptide repeats 1 protein-coding 129 0.01538
-54437 SEMA5B semaphorin 5B protein-coding 183 0.02182
-54438 GFOD1 glucose-fructose oxidoreductase domain containing 1 protein-coding 52 0.006199
-54439 RBM27 RNA binding motif protein 27 protein-coding 269 0.03207
-54440 SASH3 SAM and SH3 domain containing 3 protein-coding 59 0.007034
-54441 STAG3L1 stromal antigen 3-like 1 (pseudogene) pseudo 5 0.0005961
-54442 KCTD5 potassium channel tetramerization domain containing 5 protein-coding 21 0.002504
-54443 ANLN anillin actin binding protein protein-coding 123 0.01466
-54453 RIN2 Ras and Rab interactor 2 protein-coding 115 0.01371
-54454 ATAD2B ATPase family, AAA domain containing 2B protein-coding 146 0.01741
-54455 FBXO42 F-box protein 42 protein-coding 76 0.009061
-54456 MOV10L1 Mov10 RISC complex RNA helicase like 1 protein-coding 127 0.01514
-54457 TAF7L TATA-box binding protein associated factor 7 like protein-coding 80 0.009537
-54458 PRR13 proline rich 13 protein-coding 7 0.0008345
-54460 MRPS21 mitochondrial ribosomal protein S21 protein-coding 16 0.001907
-54461 FBXW5 F-box and WD repeat domain containing 5 protein-coding 57 0.006795
-54462 CCSER2 coiled-coil serine rich protein 2 protein-coding 86 0.01025
-54463 RETREG1 reticulophagy regulator 1 protein-coding 45 0.005365
-54464 XRN1 5'-3' exoribonuclease 1 protein-coding 204 0.02432
-54465 ETAA1 ETAA1, ATR kinase activator protein-coding 102 0.01216
-54466 SPIN2A spindlin family member 2A protein-coding 26 0.0031
-54467 ANKIB1 ankyrin repeat and IBR domain containing 1 protein-coding 116 0.01383
-54468 MIOS meiosis regulator for oocyte development protein-coding 98 0.01168
-54469 ZFAND6 zinc finger AN1-type containing 6 protein-coding 24 0.002861
-54470 ARMCX6 armadillo repeat containing, X-linked 6 protein-coding 36 0.004292
-54471 MIEF1 mitochondrial elongation factor 1 protein-coding 60 0.007153
-54472 TOLLIP toll interacting protein protein-coding 33 0.003934
-54474 KRT20 keratin 20 protein-coding 58 0.006915
-54475 NLE1 notchless homolog 1 protein-coding 40 0.004769
-54476 RNF216 ring finger protein 216 protein-coding 104 0.0124
-54477 PLEKHA5 pleckstrin homology domain containing A5 protein-coding 152 0.01812
-54478 PIMREG PICALM interacting mitotic regulator protein-coding 36 0.004292
-54480 CHPF2 chondroitin polymerizing factor 2 protein-coding 90 0.01073
-54482 TRMT13 tRNA methyltransferase 13 homolog protein-coding 72 0.008584
-54487 DGCR8 DGCR8, microprocessor complex subunit protein-coding 93 0.01109
-54490 UGT2B28 UDP glucuronosyltransferase family 2 member B28 protein-coding 104 0.0124
-54491 OTULINL OTU deubiquitinase with linear linkage specificity like protein-coding 45 0.005365
-54492 NEURL1B neuralized E3 ubiquitin protein ligase 1B protein-coding 34 0.004053
-54494 C11orf71 chromosome 11 open reading frame 71 protein-coding 20 0.002384
-54495 TMX3 thioredoxin related transmembrane protein 3 protein-coding 62 0.007392
-54496 PRMT7 protein arginine methyltransferase 7 protein-coding 66 0.007868
-54497 HEATR5B HEAT repeat containing 5B protein-coding 206 0.02456
-54498 SMOX spermine oxidase protein-coding 153 0.01824
-54499 TMCO1 transmembrane and coiled-coil domains 1 protein-coding 29 0.003457
-54502 RBM47 RNA binding motif protein 47 protein-coding 97 0.01156
-54503 ZDHHC13 zinc finger DHHC-type containing 13 protein-coding 46 0.005484
-54504 CPVL carboxypeptidase, vitellogenic like protein-coding 70 0.008345
-54505 DHX29 DExH-box helicase 29 protein-coding 127 0.01514
-54507 ADAMTSL4 ADAMTS like 4 protein-coding 140 0.01669
-54508 EPB41L4A-DT EPB41L4A divergent transcript ncRNA 1 0.0001192
-54509 RHOF ras homolog family member F, filopodia associated protein-coding 11 0.001311
-54510 PCDH18 protocadherin 18 protein-coding 216 0.02575
-54511 HMGCLL1 3-hydroxymethyl-3-methylglutaryl-CoA lyase like 1 protein-coding 81 0.009657
-54512 EXOSC4 exosome component 4 protein-coding 30 0.003577
-54514 DDX4 DEAD-box helicase 4 protein-coding 102 0.01216
-54516 MTRF1L mitochondrial translational release factor 1 like protein-coding 32 0.003815
-54517 PUS7 pseudouridylate synthase 7 (putative) protein-coding 86 0.01025
-54518 APBB1IP amyloid beta precursor protein binding family B member 1 interacting protein protein-coding 108 0.01288
-54520 CCDC93 coiled-coil domain containing 93 protein-coding 86 0.01025
-54521 WDR44 WD repeat domain 44 protein-coding 134 0.01598
-54522 ANKRD16 ankyrin repeat domain 16 protein-coding 29 0.003457
-54529 ASNSD1 asparagine synthetase domain containing 1 protein-coding 70 0.008345
-54531 MIER2 MIER family member 2 protein-coding 54 0.006438
-54532 USP53 ubiquitin specific peptidase 53 protein-coding 105 0.01252
-54534 MRPL50 mitochondrial ribosomal protein L50 protein-coding 28 0.003338
-54535 CCHCR1 coiled-coil alpha-helical rod protein 1 protein-coding 84 0.01001
-54536 EXOC6 exocyst complex component 6 protein-coding 89 0.01061
-54537 FAM35A family with sequence similarity 35 member A protein-coding 74 0.008822
-54538 ROBO4 roundabout guidance receptor 4 protein-coding 168 0.02003
-54539 NDUFB11 NADH:ubiquinone oxidoreductase subunit B11 protein-coding 23 0.002742
-54540 FAM193B family with sequence similarity 193 member B protein-coding 44 0.005246
-54541 DDIT4 DNA damage inducible transcript 4 protein-coding 29 0.003457
-54542 RC3H2 ring finger and CCCH-type domains 2 protein-coding 126 0.01502
-54543 TOMM7 translocase of outer mitochondrial membrane 7 protein-coding 4 0.0004769
-54544 CRCT1 cysteine rich C-terminal 1 protein-coding 14 0.001669
-54545 MTMR12 myotubularin related protein 12 protein-coding 95 0.01133
-54546 RNF186 ring finger protein 186 protein-coding 24 0.002861
-54549 SDK2 sidekick cell adhesion molecule 2 protein-coding 227 0.02706
-54550 NECAB2 N-terminal EF-hand calcium binding protein 2 protein-coding 39 0.004649
-54551 MAGEL2 MAGE family member L2 protein-coding 166 0.01979
-54552 GNL3L G protein nucleolar 3 like protein-coding 89 0.01061
-54554 WDR5B WD repeat domain 5B protein-coding 27 0.003219
-54555 DDX49 DEAD-box helicase 49 protein-coding 35 0.004173
-54556 ING3 inhibitor of growth family member 3 protein-coding 78 0.009299
-54557 SGTB small glutamine rich tetratricopeptide repeat containing beta protein-coding 36 0.004292
-54558 SPATA6 spermatogenesis associated 6 protein-coding 59 0.007034
-54566 EPB41L4B erythrocyte membrane protein band 4.1 like 4B protein-coding 102 0.01216
-54567 DLL4 delta like canonical Notch ligand 4 protein-coding 50 0.005961
-54575 UGT1A10 UDP glucuronosyltransferase family 1 member A10 protein-coding 72 0.008584
-54576 UGT1A8 UDP glucuronosyltransferase family 1 member A8 protein-coding 53 0.006319
-54577 UGT1A7 UDP glucuronosyltransferase family 1 member A7 protein-coding 52 0.006199
-54578 UGT1A6 UDP glucuronosyltransferase family 1 member A6 protein-coding 36 0.004292
-54579 UGT1A5 UDP glucuronosyltransferase family 1 member A5 protein-coding 52 0.006199
-54583 EGLN1 egl-9 family hypoxia inducible factor 1 protein-coding 34 0.004053
-54584 GNB1L G protein subunit beta 1 like protein-coding 55 0.006557
-54585 LZTFL1 leucine zipper transcription factor like 1 protein-coding 35 0.004173
-54586 EQTN equatorin protein-coding 30 0.003577
-54587 MXRA8 matrix remodeling associated 8 protein-coding 60 0.007153
-54596 L1TD1 LINE1 type transposase domain containing 1 protein-coding 92 0.01097
-54600 UGT1A9 UDP glucuronosyltransferase family 1 member A9 protein-coding 58 0.006915
-54602 NDFIP2 Nedd4 family interacting protein 2 protein-coding 21 0.002504
-54606 DDX56 DEAD-box helicase 56 protein-coding 107 0.01276
-54617 INO80 INO80 complex subunit protein-coding 143 0.01705
-54619 CCNJ cyclin J protein-coding 31 0.003696
-54620 FBXL19 F-box and leucine rich repeat protein 19 protein-coding 115 0.01371
-54621 VSIG10 V-set and immunoglobulin domain containing 10 protein-coding 63 0.007511
-54622 ARL15 ADP ribosylation factor like GTPase 15 protein-coding 26 0.0031
-54623 PAF1 PAF1 homolog, Paf1/RNA polymerase II complex component protein-coding 69 0.008226
-54625 PARP14 poly(ADP-ribose) polymerase family member 14 protein-coding 171 0.02039
-54626 HES2 hes family bHLH transcription factor 2 protein-coding 3 0.0003577
-54627 MAP10 microtubule associated protein 10 protein-coding 108 0.01288
-54629 MINDY2 MINDY lysine 48 deubiquitinase 2 protein-coding 53 0.006319
-54657 UGT1A4 UDP glucuronosyltransferase family 1 member A4 protein-coding 80 0.009537
-54659 UGT1A3 UDP glucuronosyltransferase family 1 member A3 protein-coding 40 0.004769
-54660 PCDHB18P protocadherin beta 18 pseudogene pseudo 175 0.02086
-54661 PCDHB17P protocadherin beta 17 pseudogene pseudo 82 0.009776
-54662 TBC1D13 TBC1 domain family member 13 protein-coding 42 0.005007
-54663 WDR74 WD repeat domain 74 protein-coding 34 0.004053
-54664 TMEM106B transmembrane protein 106B protein-coding 36 0.004292
-54665 RSBN1 round spermatid basic protein 1 protein-coding 82 0.009776
-54674 LRRN3 leucine rich repeat neuronal 3 protein-coding 142 0.01693
-54675 CRLS1 cardiolipin synthase 1 protein-coding 19 0.002265
-54676 GTPBP2 GTP binding protein 2 protein-coding 48 0.005722
-54677 CROT carnitine O-octanoyltransferase protein-coding 115 0.01371
-54680 ZNHIT6 zinc finger HIT-type containing 6 protein-coding 54 0.006438
-54681 P4HTM prolyl 4-hydroxylase, transmembrane protein-coding 55 0.006557
-54682 MANSC1 MANSC domain containing 1 protein-coding 48 0.005722
-54700 RRN3 RRN3 homolog, RNA polymerase I transcription factor protein-coding 47 0.005603
-54704 PDP1 pyruvate dehyrogenase phosphatase catalytic subunit 1 protein-coding 61 0.007272
-54707 GPN2 GPN-loop GTPase 2 protein-coding 27 0.003219
-54708 MARCH5 membrane associated ring-CH-type finger 5 protein-coding 26 0.0031
-54714 CNGB3 cyclic nucleotide gated channel beta 3 protein-coding 180 0.02146
-54715 RBFOX1 RNA binding fox-1 homolog 1 protein-coding 145 0.01729
-54716 SLC6A20 solute carrier family 6 member 20 protein-coding 78 0.009299
-54718 BTN2A3P butyrophilin subfamily 2 member A3, pseudogene pseudo 83 0.009895
-54726 OTUD4 OTU deubiquitinase 4 protein-coding 117 0.01395
-54732 TMED9 transmembrane p24 trafficking protein 9 protein-coding 15 0.001788
-54733 SLC35F2 solute carrier family 35 member F2 protein-coding 43 0.005126
-54734 RAB39A RAB39A, member RAS oncogene family protein-coding 31 0.003696
-54737 MPHOSPH8 M-phase phosphoprotein 8 protein-coding 95 0.01133
-54738 FEV FEV, ETS transcription factor protein-coding 12 0.001431
-54739 XAF1 XIAP associated factor 1 protein-coding 24 0.002861
-54741 LEPROT leptin receptor overlapping transcript protein-coding 15 0.001788
-54742 LY6K lymphocyte antigen 6 family member K protein-coding 27 0.003219
-54749 EPDR1 ependymin related 1 protein-coding 42 0.005007
-54751 FBLIM1 filamin binding LIM protein 1 protein-coding 39 0.004649
-54752 FNDC8 fibronectin type III domain containing 8 protein-coding 36 0.004292
-54753 ZNF853 zinc finger protein 853 protein-coding 30 0.003577
-54754 NUTM2F NUT family member 2F protein-coding 69 0.008226
-54756 IL17RD interleukin 17 receptor D protein-coding 79 0.009418
-54757 FAM20A FAM20A, golgi associated secretory pathway pseudokinase protein-coding 55 0.006557
-54758 KLHDC4 kelch domain containing 4 protein-coding 62 0.007392
-54760 PCSK4 proprotein convertase subtilisin/kexin type 4 protein-coding 75 0.008941
-54762 GRAMD1C GRAM domain containing 1C protein-coding 99 0.0118
-54763 ROPN1 rhophilin associated tail protein 1 protein-coding 27 0.003219
-54764 ZRANB1 zinc finger RANBP2-type containing 1 protein-coding 80 0.009537
-54765 TRIM44 tripartite motif containing 44 protein-coding 27 0.003219
-54766 BTG4 BTG anti-proliferation factor 4 protein-coding 39 0.004649
-54768 HYDIN HYDIN, axonemal central pair apparatus protein protein-coding 462 0.05508
-54769 DIRAS2 DIRAS family GTPase 2 protein-coding 31 0.003696
-54776 PPP1R12C protein phosphatase 1 regulatory subunit 12C protein-coding 77 0.00918
-54777 CFAP46 cilia and flagella associated protein 46 protein-coding 220 0.02623
-54778 RNF111 ring finger protein 111 protein-coding 129 0.01538
-54780 NSMCE4A NSE4 homolog A, SMC5-SMC6 complex component protein-coding 23 0.002742
-54784 ALKBH4 alkB homolog 4, lysine demethylase protein-coding 38 0.00453
-54785 BORCS6 BLOC-1 related complex subunit 6 protein-coding 16 0.001907
-54788 DNAJB12 DnaJ heat shock protein family (Hsp40) member B12 protein-coding 35 0.004173
-54790 TET2 tet methylcytosine dioxygenase 2 protein-coding 169 0.02015
-54793 KCTD9 potassium channel tetramerization domain containing 9 protein-coding 50 0.005961
-54795 TRPM4 transient receptor potential cation channel subfamily M member 4 protein-coding 127 0.01514
-54796 BNC2 basonuclin 2 protein-coding 209 0.02492
-54797 MED18 mediator complex subunit 18 protein-coding 25 0.00298
-54798 DCHS2 dachsous cadherin-related 2 protein-coding 423 0.05043
-54799 MBTD1 mbt domain containing 1 protein-coding 50 0.005961
-54800 KLHL24 kelch like family member 24 protein-coding 82 0.009776
-54801 HAUS6 HAUS augmin like complex subunit 6 protein-coding 108 0.01288
-54802 TRIT1 tRNA isopentenyltransferase 1 protein-coding 47 0.005603
-54805 CNNM2 cyclin and CBS domain divalent metal cation transport mediator 2 protein-coding 93 0.01109
-54806 AHI1 Abelson helper integration site 1 protein-coding 114 0.01359
-54807 ZNF586 zinc finger protein 586 protein-coding 57 0.006795
-54808 DYM dymeclin protein-coding 88 0.01049
-54809 SAMD9 sterile alpha motif domain containing 9 protein-coding 224 0.0267
-54810 GIPC2 GIPC PDZ domain containing family member 2 protein-coding 46 0.005484
-54811 ZNF562 zinc finger protein 562 protein-coding 56 0.006676
-54812 AFTPH aftiphilin protein-coding 86 0.01025
-54813 KLHL28 kelch like family member 28 protein-coding 81 0.009657
-54814 QPCTL glutaminyl-peptide cyclotransferase like protein-coding 40 0.004769
-54815 GATAD2A GATA zinc finger domain containing 2A protein-coding 87 0.01037
-54816 ZNF280D zinc finger protein 280D protein-coding 88 0.01049
-54819 ZCCHC10 zinc finger CCHC-type containing 10 protein-coding 12 0.001431
-54820 NDE1 nudE neurodevelopment protein 1 protein-coding 51 0.00608
-54821 ERCC6L ERCC excision repair 6 like, spindle assembly checkpoint helicase protein-coding 96 0.01144
-54822 TRPM7 transient receptor potential cation channel subfamily M member 7 protein-coding 163 0.01943
-54823 SWT1 SWT1, RNA endoribonuclease homolog protein-coding 113 0.01347
-54825 CDHR2 cadherin related family member 2 protein-coding 182 0.0217
-54826 GIN1 gypsy retrotransposon integrase 1 protein-coding 74 0.008822
-54827 NXPE4 neurexophilin and PC-esterase domain family member 4 protein-coding 104 0.0124
-54828 BCAS3 BCAS3, microtubule associated cell migration factor protein-coding 114 0.01359
-54829 ASPN asporin protein-coding 50 0.005961
-54830 NUP62CL nucleoporin 62 C-terminal like protein-coding 27 0.003219
-54831 BEST2 bestrophin 2 protein-coding 60 0.007153
-54832 VPS13C vacuolar protein sorting 13 homolog C protein-coding 337 0.04018
-54834 GDAP2 ganglioside induced differentiation associated protein 2 protein-coding 60 0.007153
-54836 BSPRY B-box and SPRY domain containing protein-coding 37 0.004411
-54838 WBP1L WW domain binding protein 1 like protein-coding 23 0.002742
-54839 LRRC49 leucine rich repeat containing 49 protein-coding 101 0.01204
-54840 APTX aprataxin protein-coding 28 0.003338
-54841 BIVM basic, immunoglobulin-like variable motif containing protein-coding 10 0.001192
-54842 MFSD6 major facilitator superfamily domain containing 6 protein-coding 80 0.009537
-54843 SYTL2 synaptotagmin like 2 protein-coding 201 0.02396
-54845 ESRP1 epithelial splicing regulatory protein 1 protein-coding 138 0.01645
-54847 SIDT1 SID1 transmembrane family member 1 protein-coding 102 0.01216
-54848 ARHGEF38 Rho guanine nucleotide exchange factor 38 protein-coding 31 0.003696
-54849 DEF8 differentially expressed in FDCP 8 homolog protein-coding 50 0.005961
-54850 FBXL12 F-box and leucine rich repeat protein 12 protein-coding 34 0.004053
-54851 ANKRD49 ankyrin repeat domain 49 protein-coding 32 0.003815
-54852 PAQR5 progestin and adipoQ receptor family member 5 protein-coding 36 0.004292
-54853 WDR55 WD repeat domain 55 protein-coding 42 0.005007
-54854 FAM83E family with sequence similarity 83 member E protein-coding 65 0.007749
-54855 FAM46C family with sequence similarity 46 member C protein-coding 44 0.005246
-54856 GON4L gon-4 like protein-coding 231 0.02754
-54857 GDPD2 glycerophosphodiester phosphodiesterase domain containing 2 protein-coding 88 0.01049
-54858 PGPEP1 pyroglutamyl-peptidase I protein-coding 32 0.003815
-54859 ELP6 elongator acetyltransferase complex subunit 6 protein-coding 28 0.003338
-54860 MS4A12 membrane spanning 4-domains A12 protein-coding 52 0.006199
-54861 SNRK SNF related kinase protein-coding 68 0.008107
-54862 CC2D1A coiled-coil and C2 domain containing 1A protein-coding 112 0.01335
-54863 TOR4A torsin family 4 member A protein-coding 26 0.0031
-54865 GPATCH4 G-patch domain containing 4 protein-coding 47 0.005603
-54866 PPP1R14D protein phosphatase 1 regulatory inhibitor subunit 14D protein-coding 12 0.001431
-54867 TMEM214 transmembrane protein 214 protein-coding 51 0.00608
-54868 TMEM104 transmembrane protein 104 protein-coding 52 0.006199
-54869 EPS8L1 EPS8 like 1 protein-coding 93 0.01109
-54870 QRICH1 glutamine rich 1 protein-coding 79 0.009418
-54872 PIGG phosphatidylinositol glycan anchor biosynthesis class G protein-coding 104 0.0124
-54873 PALMD palmdelphin protein-coding 63 0.007511
-54874 FNBP1L formin binding protein 1 like protein-coding 45 0.005365
-54875 CNTLN centlein protein-coding 208 0.0248
-54876 DCAF16 DDB1 and CUL4 associated factor 16 protein-coding 29 0.003457
-54877 ZCCHC2 zinc finger CCHC-type containing 2 protein-coding 89 0.01061
-54878 DPP8 dipeptidyl peptidase 8 protein-coding 85 0.01013
-54879 ST7L suppression of tumorigenicity 7 like protein-coding 48 0.005722
-54880 BCOR BCL6 corepressor protein-coding 259 0.03088
-54881 TEX10 testis expressed 10 protein-coding 113 0.01347
-54882 ANKHD1 ankyrin repeat and KH domain containing 1 protein-coding 242 0.02885
-54883 CWC25 CWC25 spliceosome associated protein homolog protein-coding 50 0.005961
-54884 RETSAT retinol saturase protein-coding 74 0.008822
-54885 TBC1D8B TBC1 domain family member 8B protein-coding 148 0.01764
-54886 PLPPR1 phospholipid phosphatase related 1 protein-coding 62 0.007392
-54887 UHRF1BP1 UHRF1 binding protein 1 protein-coding 138 0.01645
-54888 NSUN2 NOP2/Sun RNA methyltransferase family member 2 protein-coding 100 0.01192
-54890 ALKBH5 alkB homolog 5, RNA demethylase protein-coding 39 0.004649
-54891 INO80D INO80 complex subunit D protein-coding 96 0.01144
-54892 NCAPG2 non-SMC condensin II complex subunit G2 protein-coding 106 0.01264
-54893 MTMR10 myotubularin related protein 10 protein-coding 72 0.008584
-54894 RNF43 ring finger protein 43 protein-coding 216 0.02575
-54896 PQLC2 PQ loop repeat containing 2 protein-coding 33 0.003934
-54897 CASZ1 castor zinc finger 1 protein-coding 170 0.02027
-54898 ELOVL2 ELOVL fatty acid elongase 2 protein-coding 45 0.005365
-54899 PXK PX domain containing serine/threonine kinase like protein-coding 69 0.008226
-54900 LAX1 lymphocyte transmembrane adaptor 1 protein-coding 49 0.005842
-54901 CDKAL1 CDK5 regulatory subunit associated protein 1 like 1 protein-coding 63 0.007511
-54902 TTC19 tetratricopeptide repeat domain 19 protein-coding 32 0.003815
-54903 MKS1 Meckel syndrome, type 1 protein-coding 68 0.008107
-54904 NSD3 nuclear receptor binding SET domain protein 3 protein-coding 159 0.01896
-54905 CYP2W1 cytochrome P450 family 2 subfamily W member 1 protein-coding 51 0.00608
-54906 FAM208B family with sequence similarity 208 member B protein-coding 185 0.02206
-54908 SPDL1 spindle apparatus coiled-coil protein 1 protein-coding 80 0.009537
-54910 SEMA4C semaphorin 4C protein-coding 84 0.01001
-54913 RPP25 ribonuclease P and MRP subunit p25 protein-coding 8 0.0009537
-54914 FOCAD focadhesin protein-coding 156 0.0186
-54915 YTHDF1 YTH N6-methyladenosine RNA binding protein 1 protein-coding 70 0.008345
-54916 TMEM260 transmembrane protein 260 protein-coding 79 0.009418
-54918 CMTM6 CKLF like MARVEL transmembrane domain containing 6 protein-coding 14 0.001669
-54919 DNAAF5 dynein axonemal assembly factor 5 protein-coding 58 0.006915
-54920 DUS2 dihydrouridine synthase 2 protein-coding 45 0.005365
-54921 CHTF8 chromosome transmission fidelity factor 8 protein-coding 34 0.004053
-54922 RASIP1 Ras interacting protein 1 protein-coding 67 0.007988
-54923 LIME1 Lck interacting transmembrane adaptor 1 protein-coding 11 0.001311
-54925 ZSCAN32 zinc finger and SCAN domain containing 32 protein-coding 58 0.006915
-54926 UBE2R2 ubiquitin conjugating enzyme E2 R2 protein-coding 27 0.003219
-54927 CHCHD3 coiled-coil-helix-coiled-coil-helix domain containing 3 protein-coding 36 0.004292
-54928 IMPAD1 inositol monophosphatase domain containing 1 protein-coding 45 0.005365
-54929 TMEM161A transmembrane protein 161A protein-coding 50 0.005961
-54930 HAUS4 HAUS augmin like complex subunit 4 protein-coding 41 0.004888
-54931 TRMT10C tRNA methyltransferase 10C, mitochondrial RNase P subunit protein-coding 56 0.006676
-54932 EXD3 exonuclease 3'-5' domain containing 3 protein-coding 73 0.008703
-54933 RHBDL2 rhomboid like 2 protein-coding 35 0.004173
-54934 KANSL2 KAT8 regulatory NSL complex subunit 2 protein-coding 49 0.005842
-54935 DUSP23 dual specificity phosphatase 23 protein-coding 6 0.0007153
-54936 ADPRHL2 ADP-ribosylhydrolase like 2 protein-coding 29 0.003457
-54937 SOHLH2 spermatogenesis and oogenesis specific basic helix-loop-helix 2 protein-coding 82 0.009776
-54938 SARS2 seryl-tRNA synthetase 2, mitochondrial protein-coding 105 0.01252
-54939 COMMD4 COMM domain containing 4 protein-coding 19 0.002265
-54940 OCIAD1 OCIA domain containing 1 protein-coding 46 0.005484
-54941 RNF125 ring finger protein 125 protein-coding 40 0.004769
-54942 FAM206A family with sequence similarity 206 member A protein-coding 14 0.001669
-54943 DNAJC28 DnaJ heat shock protein family (Hsp40) member C28 protein-coding 54 0.006438
-54946 SLC41A3 solute carrier family 41 member 3 protein-coding 55 0.006557
-54947 LPCAT2 lysophosphatidylcholine acyltransferase 2 protein-coding 71 0.008464
-54948 MRPL16 mitochondrial ribosomal protein L16 protein-coding 28 0.003338
-54949 SDHAF2 succinate dehydrogenase complex assembly factor 2 protein-coding 27 0.003219
-54951 COMMD8 COMM domain containing 8 protein-coding 29 0.003457
-54952 TRNAU1AP tRNA selenocysteine 1 associated protein 1 protein-coding 23 0.002742
-54953 ODR4 odr-4 GPCR localization factor homolog protein-coding 39 0.004649
-54954 FAM120C family with sequence similarity 120C protein-coding 116 0.01383
-54955 C1orf109 chromosome 1 open reading frame 109 protein-coding 15 0.001788
-54956 PARP16 poly(ADP-ribose) polymerase family member 16 protein-coding 29 0.003457
-54957 TXNL4B thioredoxin like 4B protein-coding 17 0.002027
-54958 TMEM160 transmembrane protein 160 protein-coding 2 0.0002384
-54959 ODAM odontogenic, ameloblast associated protein-coding 46 0.005484
-54960 GEMIN8 gem nuclear organelle associated protein 8 protein-coding 41 0.004888
-54961 SSH3 slingshot protein phosphatase 3 protein-coding 86 0.01025
-54962 TIPIN TIMELESS interacting protein protein-coding 28 0.003338
-54963 UCKL1 uridine-cytidine kinase 1 like 1 protein-coding 57 0.006795
-54964 C1orf56 chromosome 1 open reading frame 56 protein-coding 28 0.003338
-54965 PIGX phosphatidylinositol glycan anchor biosynthesis class X protein-coding 16 0.001907
-54967 CT55 cancer/testis antigen 55 protein-coding 44 0.005246
-54968 TMEM70 transmembrane protein 70 protein-coding 26 0.0031
-54969 HPF1 histone PARylation factor 1 protein-coding 36 0.004292
-54970 TTC12 tetratricopeptide repeat domain 12 protein-coding 88 0.01049
-54971 BANP BTG3 associated nuclear protein protein-coding 60 0.007153
-54972 TMEM132A transmembrane protein 132A protein-coding 119 0.01419
-54973 INTS11 integrator complex subunit 11 protein-coding 67 0.007988
-54974 THG1L tRNA-histidine guanylyltransferase 1 like protein-coding 31 0.003696
-54976 C20orf27 chromosome 20 open reading frame 27 protein-coding 30 0.003577
-54977 SLC25A38 solute carrier family 25 member 38 protein-coding 42 0.005007
-54978 SLC35F6 solute carrier family 35 member F6 protein-coding 26 0.0031
-54979 HRASLS2 HRAS like suppressor 2 protein-coding 21 0.002504
-54980 C2orf42 chromosome 2 open reading frame 42 protein-coding 55 0.006557
-54981 NMRK1 nicotinamide riboside kinase 1 protein-coding 26 0.0031
-54982 CLN6 CLN6, transmembrane ER protein protein-coding 24 0.002861
-54984 PINX1 PIN2 (TERF1) interacting telomerase inhibitor 1 protein-coding 24 0.002861
-54985 HCFC1R1 host cell factor C1 regulator 1 protein-coding 28 0.003338
-54986 ULK4 unc-51 like kinase 4 protein-coding 127 0.01514
-54987 C1orf123 chromosome 1 open reading frame 123 protein-coding 24 0.002861
-54988 ACSM5 acyl-CoA synthetase medium chain family member 5 protein-coding 124 0.01478
-54989 ZNF770 zinc finger protein 770 protein-coding 84 0.01001
-54991 C1orf159 chromosome 1 open reading frame 159 protein-coding 15 0.001788
-54993 ZSCAN2 zinc finger and SCAN domain containing 2 protein-coding 57 0.006795
-54994 GID8 GID complex subunit 8 homolog protein-coding 33 0.003934
-54995 OXSM 3-oxoacyl-ACP synthase, mitochondrial protein-coding 62 0.007392
-54996 MARC2 mitochondrial amidoxime reducing component 2 protein-coding 33 0.003934
-54997 TESC tescalcin protein-coding 27 0.003219
-54998 AURKAIP1 aurora kinase A interacting protein 1 protein-coding 41 0.004888
-55001 TTC22 tetratricopeptide repeat domain 22 protein-coding 32 0.003815
-55002 TMCO3 transmembrane and coiled-coil domains 3 protein-coding 90 0.01073
-55003 PAK1IP1 PAK1 interacting protein 1 protein-coding 41 0.004888
-55004 LAMTOR1 late endosomal/lysosomal adaptor, MAPK and MTOR activator 1 protein-coding 16 0.001907
-55005 RMND1 required for meiotic nuclear division 1 homolog protein-coding 50 0.005961
-55006 TRMT61B tRNA methyltransferase 61B protein-coding 49 0.005842
-55007 FAM118A family with sequence similarity 118 member A protein-coding 31 0.003696
-55008 HERC6 HECT and RLD domain containing E3 ubiquitin protein ligase family member 6 protein-coding 121 0.01443
-55009 C19orf24 chromosome 19 open reading frame 24 protein-coding 7 0.0008345
-55010 PARPBP PARP1 binding protein protein-coding 89 0.01061
-55011 PIH1D1 PIH1 domain containing 1 protein-coding 38 0.00453
-55012 PPP2R3C protein phosphatase 2 regulatory subunit B''gamma protein-coding 44 0.005246
-55013 MCUB mitochondrial calcium uniporter dominant negative beta subunit protein-coding 38 0.00453
-55014 STX17 syntaxin 17 protein-coding 28 0.003338
-55015 PRPF39 pre-mRNA processing factor 39 protein-coding 64 0.00763
-55016 MARCH1 membrane associated ring-CH-type finger 1 protein-coding 54 0.006438
-55017 C14orf119 chromosome 14 open reading frame 119 protein-coding 15 0.001788
-55018 LINC00483 long intergenic non-protein coding RNA 483 protein-coding 3 0.0003577
-55020 TTC38 tetratricopeptide repeat domain 38 protein-coding 57 0.006795
-55022 PID1 phosphotyrosine interaction domain containing 1 protein-coding 55 0.006557
-55023 PHIP pleckstrin homology domain interacting protein protein-coding 260 0.031
-55024 BANK1 B cell scaffold protein with ankyrin repeats 1 protein-coding 120 0.01431
-55026 TMEM255A transmembrane protein 255A protein-coding 56 0.006676
-55027 HEATR3 HEAT repeat containing 3 protein-coding 66 0.007868
-55028 C17orf80 chromosome 17 open reading frame 80 protein-coding 51 0.00608
-55030 FBXO34 F-box protein 34 protein-coding 90 0.01073
-55031 USP47 ubiquitin specific peptidase 47 protein-coding 114 0.01359
-55032 SLC35A5 solute carrier family 35 member A5 protein-coding 49 0.005842
-55033 FKBP14 FK506 binding protein 14 protein-coding 26 0.0031
-55034 MOCOS molybdenum cofactor sulfurase protein-coding 155 0.01848
-55035 NOL8 nucleolar protein 8 protein-coding 105 0.01252
-55036 CCDC40 coiled-coil domain containing 40 protein-coding 144 0.01717
-55037 PTCD3 pentatricopeptide repeat domain 3 protein-coding 74 0.008822
-55038 CDCA4 cell division cycle associated 4 protein-coding 31 0.003696
-55039 TRMT12 tRNA methyltransferase 12 homolog protein-coding 52 0.006199
-55040 EPN3 epsin 3 protein-coding 62 0.007392
-55041 PLEKHB2 pleckstrin homology domain containing B2 protein-coding 43 0.005126
-55048 VPS37C VPS37C, ESCRT-I subunit protein-coding 38 0.00453
-55049 REX1BD required for excision 1-B domain containing protein-coding 7 0.0008345
-55051 NRDE2 NRDE-2, necessary for RNA interference, domain containing protein-coding 116 0.01383
-55052 MRPL20 mitochondrial ribosomal protein L20 protein-coding 19 0.002265
-55054 ATG16L1 autophagy related 16 like 1 protein-coding 68 0.008107
-55055 ZWILCH zwilch kinetochore protein protein-coding 55 0.006557
-55057 CRYBG2 crystallin beta-gamma domain containing 2 protein-coding 61 0.007272
-55061 SUSD4 sushi domain containing 4 protein-coding 65 0.007749
-55062 WIPI1 WD repeat domain, phosphoinositide interacting 1 protein-coding 44 0.005246
-55063 ZCWPW1 zinc finger CW-type and PWWP domain containing 1 protein-coding 70 0.008345
-55064 SPATA6L spermatogenesis associated 6 like protein-coding 31 0.003696
-55065 SLC52A1 solute carrier family 52 member 1 protein-coding 73 0.008703
-55066 PDPR pyruvate dehydrogenase phosphatase regulatory subunit protein-coding 113 0.01347
-55068 ENOX1 ecto-NOX disulfide-thiol exchanger 1 protein-coding 106 0.01264
-55069 TMEM248 transmembrane protein 248 protein-coding 41 0.004888
-55070 DET1 DET1, COP1 ubiquitin ligase partner protein-coding 83 0.009895
-55071 C9orf40 chromosome 9 open reading frame 40 protein-coding 10 0.001192
-55072 RNF31 ring finger protein 31 protein-coding 118 0.01407
-55073 LRRC37A4P leucine rich repeat containing 37 member A4, pseudogene pseudo 36 0.004292
-55074 OXR1 oxidation resistance 1 protein-coding 111 0.01323
-55075 UACA uveal autoantigen with coiled-coil domains and ankyrin repeats protein-coding 160 0.01907
-55076 TMEM45A transmembrane protein 45A protein-coding 36 0.004292
-55079 FEZF2 FEZ family zinc finger 2 protein-coding 60 0.007153
-55080 TAPBPL TAP binding protein like protein-coding 29 0.003457
-55081 IFT57 intraflagellar transport 57 protein-coding 45 0.005365
-55082 ARGLU1 arginine and glutamate rich 1 protein-coding 37 0.004411
-55083 KIF26B kinesin family member 26B protein-coding 257 0.03064
-55084 SOBP sine oculis binding protein homolog protein-coding 108 0.01288
-55086 CXorf57 chromosome X open reading frame 57 protein-coding 115 0.01371
-55088 CCDC186 coiled-coil domain containing 186 protein-coding 82 0.009776
-55089 SLC38A4 solute carrier family 38 member 4 protein-coding 70 0.008345
-55090 MED9 mediator complex subunit 9 protein-coding 100 0.01192
-55092 TMEM51 transmembrane protein 51 protein-coding 46 0.005484
-55093 WDYHV1 WDYHV motif containing 1 protein-coding 28 0.003338
-55094 GPATCH1 G-patch domain containing 1 protein-coding 82 0.009776
-55095 SAMD4B sterile alpha motif domain containing 4B protein-coding 65 0.007749
-55096 EBLN2 endogenous Bornavirus like nucleoprotein 2 protein-coding 19 0.002265
-55100 WDR70 WD repeat domain 70 protein-coding 102 0.01216
-55101 DMAC2 distal membrane arm assembly complex 2 protein-coding 30 0.003577
-55102 ATG2B autophagy related 2B protein-coding 204 0.02432
-55103 RALGPS2 Ral GEF with PH domain and SH3 binding motif 2 protein-coding 74 0.008822
-55105 GPATCH2 G-patch domain containing 2 protein-coding 75 0.008941
-55106 SLFN12 schlafen family member 12 protein-coding 69 0.008226
-55107 ANO1 anoctamin 1 protein-coding 125 0.0149
-55108 BSDC1 BSD domain containing 1 protein-coding 49 0.005842
-55109 AGGF1 angiogenic factor with G-patch and FHA domains 1 protein-coding 89 0.01061
-55110 MAGOHB mago homolog B, exon junction complex core component protein-coding 18 0.002146
-55111 PLEKHJ1 pleckstrin homology domain containing J1 protein-coding 7 0.0008345
-55112 WDR60 WD repeat domain 60 protein-coding 127 0.01514
-55113 XKR8 XK related 8 protein-coding 29 0.003457
-55114 ARHGAP17 Rho GTPase activating protein 17 protein-coding 114 0.01359
-55116 TMEM39B transmembrane protein 39B protein-coding 43 0.005126
-55117 SLC6A15 solute carrier family 6 member 15 protein-coding 136 0.01621
-55118 CRTAC1 cartilage acidic protein 1 protein-coding 88 0.01049
-55119 PRPF38B pre-mRNA processing factor 38B protein-coding 73 0.008703
-55120 FANCL Fanconi anemia complementation group L protein-coding 49 0.005842
-55122 AKIRIN2 akirin 2 protein-coding 29 0.003457
-55124 PIWIL2 piwi like RNA-mediated gene silencing 2 protein-coding 114 0.01359
-55125 CEP192 centrosomal protein 192 protein-coding 228 0.02718
-55127 HEATR1 HEAT repeat containing 1 protein-coding 215 0.02563
-55128 TRIM68 tripartite motif containing 68 protein-coding 64 0.00763
-55129 ANO10 anoctamin 10 protein-coding 75 0.008941
-55130 ARMC4 armadillo repeat containing 4 protein-coding 176 0.02098
-55131 RBM28 RNA binding motif protein 28 protein-coding 87 0.01037
-55132 LARP1B La ribonucleoprotein domain family member 1B protein-coding 101 0.01204
-55133 SRBD1 S1 RNA binding domain 1 protein-coding 105 0.01252
-55135 WRAP53 WD repeat containing antisense to TP53 protein-coding 55 0.006557
-55137 FIGN fidgetin, microtubule severing factor protein-coding 159 0.01896
-55138 FAM90A1 family with sequence similarity 90 member A1 protein-coding 92 0.01097
-55139 ANKZF1 ankyrin repeat and zinc finger domain containing 1 protein-coding 70 0.008345
-55140 ELP3 elongator acetyltransferase complex subunit 3 protein-coding 52 0.006199
-55142 HAUS2 HAUS augmin like complex subunit 2 protein-coding 21 0.002504
-55143 CDCA8 cell division cycle associated 8 protein-coding 24 0.002861
-55144 LRRC8D leucine rich repeat containing 8 VRAC subunit D protein-coding 73 0.008703
-55145 THAP1 THAP domain containing 1 protein-coding 24 0.002861
-55146 ZDHHC4 zinc finger DHHC-type containing 4 protein-coding 39 0.004649
-55147 RBM23 RNA binding motif protein 23 protein-coding 40 0.004769
-55148 UBR7 ubiquitin protein ligase E3 component n-recognin 7 (putative) protein-coding 34 0.004053
-55149 MTPAP mitochondrial poly(A) polymerase protein-coding 65 0.007749
-55150 C19orf73 chromosome 19 open reading frame 73 protein-coding 14 0.001669
-55151 TMEM38B transmembrane protein 38B protein-coding 53 0.006319
-55152 DALRD3 DALR anticodon binding domain containing 3 protein-coding 51 0.00608
-55153 SDAD1 SDA1 domain containing 1 protein-coding 68 0.008107
-55154 MSTO1 misato 1, mitochondrial distribution and morphology regulator protein-coding 44 0.005246
-55156 ARMC1 armadillo repeat containing 1 protein-coding 37 0.004411
-55157 DARS2 aspartyl-tRNA synthetase 2, mitochondrial protein-coding 67 0.007988
-55159 RFWD3 ring finger and WD repeat domain 3 protein-coding 68 0.008107
-55160 ARHGEF10L Rho guanine nucleotide exchange factor 10 like protein-coding 140 0.01669
-55161 TMEM33 transmembrane protein 33 protein-coding 18 0.002146
-55163 PNPO pyridoxamine 5'-phosphate oxidase protein-coding 24 0.002861
-55164 SHQ1 SHQ1, H/ACA ribonucleoprotein assembly factor protein-coding 60 0.007153
-55165 CEP55 centrosomal protein 55 protein-coding 59 0.007034
-55166 CENPQ centromere protein Q protein-coding 30 0.003577
-55167 MSL2 MSL complex subunit 2 protein-coding 71 0.008464
-55168 MRPS18A mitochondrial ribosomal protein S18A protein-coding 12 0.001431
-55170 PRMT6 protein arginine methyltransferase 6 protein-coding 44 0.005246
-55171 TBCCD1 TBCC domain containing 1 protein-coding 52 0.006199
-55172 DNAAF2 dynein axonemal assembly factor 2 protein-coding 63 0.007511
-55173 MRPS10 mitochondrial ribosomal protein S10 protein-coding 22 0.002623
-55174 INTS10 integrator complex subunit 10 protein-coding 72 0.008584
-55175 KLHL11 kelch like family member 11 protein-coding 74 0.008822
-55176 SEC61A2 Sec61 translocon alpha 2 subunit protein-coding 43 0.005126
-55177 RMDN3 regulator of microtubule dynamics 3 protein-coding 36 0.004292
-55178 MRM3 mitochondrial rRNA methyltransferase 3 protein-coding 39 0.004649
-55179 FAIM Fas apoptotic inhibitory molecule protein-coding 28 0.003338
-55180 LINS1 lines homolog 1 protein-coding 75 0.008941
-55181 SMG8 SMG8, nonsense mediated mRNA decay factor protein-coding 130 0.0155
-55182 RNF220 ring finger protein 220 protein-coding 94 0.01121
-55183 RIF1 replication timing regulatory factor 1 protein-coding 222 0.02647
-55184 DZANK1 double zinc ribbon and ankyrin repeat domains 1 protein-coding 89 0.01061
-55186 SLC25A36 solute carrier family 25 member 36 protein-coding 38 0.00453
-55187 VPS13D vacuolar protein sorting 13 homolog D protein-coding 338 0.0403
-55188 RIC8B RIC8 guanine nucleotide exchange factor B protein-coding 56 0.006676
-55190 NUDT11 nudix hydrolase 11 protein-coding 33 0.003934
-55191 NADSYN1 NAD synthetase 1 protein-coding 75 0.008941
-55192 DNAJC17 DnaJ heat shock protein family (Hsp40) member C17 protein-coding 35 0.004173
-55193 PBRM1 polybromo 1 protein-coding 351 0.04185
-55194 EVA1B eva-1 homolog B protein-coding 13 0.00155
-55195 CCDC198 coiled-coil domain containing 198 protein-coding 40 0.004769
-55196 KIAA1551 KIAA1551 protein-coding 174 0.02074
-55197 RPRD1A regulation of nuclear pre-mRNA domain containing 1A protein-coding 39 0.004649
-55198 APPL2 adaptor protein, phosphotyrosine interacting with PH domain and leucine zipper 2 protein-coding 74 0.008822
-55199 FAM86C1 family with sequence similarity 86 member C1 protein-coding 17 0.002027
-55200 PLEKHG6 pleckstrin homology and RhoGEF domain containing G6 protein-coding 84 0.01001
-55201 MAP1S microtubule associated protein 1S protein-coding 100 0.01192
-55203 LGI2 leucine rich repeat LGI family member 2 protein-coding 82 0.009776
-55204 GOLPH3L golgi phosphoprotein 3 like protein-coding 29 0.003457
-55205 ZNF532 zinc finger protein 532 protein-coding 125 0.0149
-55206 SBNO1 strawberry notch homolog 1 protein-coding 144 0.01717
-55207 ARL8B ADP ribosylation factor like GTPase 8B protein-coding 31 0.003696
-55208 DCUN1D2 defective in cullin neddylation 1 domain containing 2 protein-coding 31 0.003696
-55209 SETD5 SET domain containing 5 protein-coding 154 0.01836
-55210 ATAD3A ATPase family, AAA domain containing 3A protein-coding 60 0.007153
-55211 DPPA4 developmental pluripotency associated 4 protein-coding 92 0.01097
-55212 BBS7 Bardet-Biedl syndrome 7 protein-coding 85 0.01013
-55213 RCBTB1 RCC1 and BTB domain containing protein 1 protein-coding 53 0.006319
-55214 P3H2 prolyl 3-hydroxylase 2 protein-coding 90 0.01073
-55215 FANCI Fanconi anemia complementation group I protein-coding 126 0.01502
-55216 NKAPD1 NKAP domain containing 1 protein-coding 55 0.006557
-55217 TMLHE trimethyllysine hydroxylase, epsilon protein-coding 46 0.005484
-55218 EXD2 exonuclease 3'-5' domain containing 2 protein-coding 54 0.006438
-55219 MACO1 macoilin 1 protein-coding 73 0.008703
-55220 KLHDC8A kelch domain containing 8A protein-coding 44 0.005246
-55222 LRRC20 leucine rich repeat containing 20 protein-coding 15 0.001788
-55223 TRIM62 tripartite motif containing 62 protein-coding 54 0.006438
-55224 ETNK2 ethanolamine kinase 2 protein-coding 23 0.002742
-55225 RAVER2 ribonucleoprotein, PTB binding 2 protein-coding 82 0.009776
-55226 NAT10 N-acetyltransferase 10 protein-coding 90 0.01073
-55227 LRRC1 leucine rich repeat containing 1 protein-coding 60 0.007153
-55228 PNMA8A PNMA family member 8A protein-coding 68 0.008107
-55229 PANK4 pantothenate kinase 4 protein-coding 65 0.007749
-55230 USP40 ubiquitin specific peptidase 40 protein-coding 114 0.01359
-55231 CCDC87 coiled-coil domain containing 87 protein-coding 103 0.01228
-55233 MOB1A MOB kinase activator 1A protein-coding 13 0.00155
-55234 SMU1 SMU1, DNA replication regulator and spliceosomal factor protein-coding 39 0.004649
-55236 UBA6 ubiquitin like modifier activating enzyme 6 protein-coding 135 0.01609
-55237 VRTN vertebrae development associated protein-coding 113 0.01347
-55238 SLC38A7 solute carrier family 38 member 7 protein-coding 48 0.005722
-55239 OGFOD1 2-oxoglutarate and iron dependent oxygenase domain containing 1 protein-coding 41 0.004888
-55240 STEAP3 STEAP3 metalloreductase protein-coding 58 0.006915
-55243 KIRREL1 kirre like nephrin family adhesion molecule 1 protein-coding 132 0.01574
-55244 SLC47A1 solute carrier family 47 member 1 protein-coding 63 0.007511
-55245 UQCC1 ubiquinol-cytochrome c reductase complex assembly factor 1 protein-coding 41 0.004888
-55246 CCDC25 coiled-coil domain containing 25 protein-coding 26 0.0031
-55247 NEIL3 nei like DNA glycosylase 3 protein-coding 68 0.008107
-55248 TMEM206 transmembrane protein 206 protein-coding 56 0.006676
-55249 YY1AP1 YY1 associated protein 1 protein-coding 116 0.01383
-55250 ELP2 elongator acetyltransferase complex subunit 2 protein-coding 69 0.008226
-55251 PCMTD2 protein-L-isoaspartate (D-aspartate) O-methyltransferase domain containing 2 protein-coding 54 0.006438
-55252 ASXL2 additional sex combs like 2, transcriptional regulator protein-coding 188 0.02241
-55253 TYW1 tRNA-yW synthesizing protein 1 homolog protein-coding 85 0.01013
-55254 TMEM39A transmembrane protein 39A protein-coding 60 0.007153
-55255 WDR41 WD repeat domain 41 protein-coding 55 0.006557
-55256 ADI1 acireductone dioxygenase 1 protein-coding 18 0.002146
-55257 MRGBP MRG domain binding protein protein-coding 30 0.003577
-55258 THNSL2 threonine synthase like 2 protein-coding 68 0.008107
-55259 CASC1 cancer susceptibility 1 protein-coding 77 0.00918
-55260 TMEM143 transmembrane protein 143 protein-coding 41 0.004888
-55262 C7orf43 chromosome 7 open reading frame 43 protein-coding 44 0.005246
-55266 TMEM19 transmembrane protein 19 protein-coding 38 0.00453
-55267 PRR34 proline rich 34 protein-coding 3 0.0003577
-55268 ECHDC2 enoyl-CoA hydratase domain containing 2 protein-coding 41 0.004888
-55269 PSPC1 paraspeckle component 1 protein-coding 93 0.01109
-55270 NUDT15 nudix hydrolase 15 protein-coding 14 0.001669
-55272 IMP3 IMP3, U3 small nucleolar ribonucleoprotein protein-coding 11 0.001311
-55273 TMEM100 transmembrane protein 100 protein-coding 35 0.004173
-55274 PHF10 PHD finger protein 10 protein-coding 55 0.006557
-55275 VPS53 VPS53, GARP complex subunit protein-coding 72 0.008584
-55276 PGM2 phosphoglucomutase 2 protein-coding 67 0.007988
-55277 FGGY FGGY carbohydrate kinase domain containing protein-coding 81 0.009657
-55278 QRSL1 glutaminyl-tRNA synthase (glutamine-hydrolyzing)-like 1 protein-coding 47 0.005603
-55279 ZNF654 zinc finger protein 654 protein-coding 61 0.007272
-55280 CWF19L1 CWF19 like 1, cell cycle control (S. pombe) protein-coding 47 0.005603
-55281 TMEM140 transmembrane protein 140 protein-coding 24 0.002861
-55282 LRRC36 leucine rich repeat containing 36 protein-coding 100 0.01192
-55283 MCOLN3 mucolipin 3 protein-coding 81 0.009657
-55284 UBE2W ubiquitin conjugating enzyme E2 W protein-coding 24 0.002861
-55285 RBM41 RNA binding motif protein 41 protein-coding 54 0.006438
-55286 C4orf19 chromosome 4 open reading frame 19 protein-coding 32 0.003815
-55287 TMEM40 transmembrane protein 40 protein-coding 28 0.003338
-55288 RHOT1 ras homolog family member T1 protein-coding 67 0.007988
-55289 ACOXL acyl-CoA oxidase like protein-coding 74 0.008822
-55290 BRF2 BRF2, RNA polymerase III transcription initiation factor subunit protein-coding 43 0.005126
-55291 PPP6R3 protein phosphatase 6 regulatory subunit 3 protein-coding 106 0.01264
-55293 UEVLD UEV and lactate/malate dehyrogenase domains protein-coding 52 0.006199
-55294 FBXW7 F-box and WD repeat domain containing 7 protein-coding 428 0.05103
-55295 KLHL26 kelch like family member 26 protein-coding 59 0.007034
-55296 TBC1D19 TBC1 domain family member 19 protein-coding 71 0.008464
-55297 CCDC91 coiled-coil domain containing 91 protein-coding 62 0.007392
-55298 RNF121 ring finger protein 121 protein-coding 30 0.003577
-55299 BRIX1 BRX1, biogenesis of ribosomes protein-coding 34 0.004053
-55300 PI4K2B phosphatidylinositol 4-kinase type 2 beta protein-coding 37 0.004411
-55301 OLAH oleoyl-ACP hydrolase protein-coding 59 0.007034
-55303 GIMAP4 GTPase, IMAP family member 4 protein-coding 61 0.007272
-55304 SPTLC3 serine palmitoyltransferase long chain base subunit 3 protein-coding 89 0.01061
-55308 DDX19A DEAD-box helicase 19A protein-coding 48 0.005722
-55311 ZNF444 zinc finger protein 444 protein-coding 10 0.001192
-55312 RFK riboflavin kinase protein-coding 17 0.002027
-55313 CPPED1 calcineurin like phosphoesterase domain containing 1 protein-coding 47 0.005603
-55314 TMEM144 transmembrane protein 144 protein-coding 40 0.004769
-55315 SLC29A3 solute carrier family 29 member 3 protein-coding 58 0.006915
-55316 RSAD1 radical S-adenosyl methionine domain containing 1 protein-coding 52 0.006199
-55317 AP5S1 adaptor related protein complex 5 sigma 1 subunit protein-coding 21 0.002504
-55319 TMA16 translation machinery associated 16 homolog protein-coding 33 0.003934
-55320 MIS18BP1 MIS18 binding protein 1 protein-coding 118 0.01407
-55321 TMEM74B transmembrane protein 74B protein-coding 30 0.003577
-55322 C5orf22 chromosome 5 open reading frame 22 protein-coding 50 0.005961
-55323 LARP6 La ribonucleoprotein domain family member 6 protein-coding 63 0.007511
-55324 ABCF3 ATP binding cassette subfamily F member 3 protein-coding 87 0.01037
-55325 UFSP2 UFM1 specific peptidase 2 protein-coding 57 0.006795
-55326 AGPAT5 1-acylglycerol-3-phosphate O-acyltransferase 5 protein-coding 36 0.004292
-55327 LIN7C lin-7 homolog C, crumbs cell polarity complex component protein-coding 26 0.0031
-55328 RNLS renalase, FAD dependent amine oxidase protein-coding 54 0.006438
-55329 MNS1 meiosis specific nuclear structural 1 protein-coding 59 0.007034
-55330 BLOC1S4 biogenesis of lysosomal organelles complex 1 subunit 4 protein-coding 9 0.001073
-55331 ACER3 alkaline ceramidase 3 protein-coding 33 0.003934
-55332 DRAM1 DNA damage regulated autophagy modulator 1 protein-coding 25 0.00298
-55333 SYNJ2BP synaptojanin 2 binding protein protein-coding 15 0.001788
-55334 SLC39A9 solute carrier family 39 member 9 protein-coding 31 0.003696
-55335 NIPSNAP3B nipsnap homolog 3B protein-coding 30 0.003577
-55336 FBXL8 F-box and leucine rich repeat protein 8 protein-coding 18 0.002146
-55337 C19orf66 chromosome 19 open reading frame 66 protein-coding 24 0.002861
-55339 WDR33 WD repeat domain 33 protein-coding 176 0.02098
-55340 GIMAP5 GTPase, IMAP family member 5 protein-coding 49 0.005842
-55341 LSG1 large 60S subunit nuclear export GTPase 1 protein-coding 75 0.008941
-55342 STRBP spermatid perinuclear RNA binding protein protein-coding 67 0.007988
-55343 SLC35C1 solute carrier family 35 member C1 protein-coding 26 0.0031
-55344 PLCXD1 phosphatidylinositol specific phospholipase C X domain containing 1 protein-coding 39 0.004649
-55345 ZGRF1 zinc finger GRF-type containing 1 protein-coding 181 0.02158
-55346 TCP11L1 t-complex 11 like 1 protein-coding 57 0.006795
-55347 ABHD10 abhydrolase domain containing 10 protein-coding 40 0.004769
-55349 CHDH choline dehydrogenase protein-coding 42 0.005007
-55350 VNN3 vanin 3 protein-coding 32 0.003815
-55351 STK32B serine/threonine kinase 32B protein-coding 89 0.01061
-55352 COPRS coordinator of PRMT5 and differentiation stimulator protein-coding 18 0.002146
-55353 LAPTM4B lysosomal protein transmembrane 4 beta protein-coding 20 0.002384
-55355 HJURP Holliday junction recognition protein protein-coding 85 0.01013
-55356 SLC22A15 solute carrier family 22 member 15 protein-coding 51 0.00608
-55357 TBC1D2 TBC1 domain family member 2 protein-coding 84 0.01001
-55359 STYK1 serine/threonine/tyrosine kinase 1 protein-coding 63 0.007511
-55361 PI4K2A phosphatidylinositol 4-kinase type 2 alpha protein-coding 55 0.006557
-55362 TMEM63B transmembrane protein 63B protein-coding 88 0.01049
-55363 HEMGN hemogen protein-coding 66 0.007868
-55364 IMPACT impact RWD domain protein protein-coding 42 0.005007
-55365 TMEM176A transmembrane protein 176A protein-coding 35 0.004173
-55366 LGR4 leucine rich repeat containing G protein-coupled receptor 4 protein-coding 95 0.01133
-55367 PIDD1 p53-induced death domain protein 1 protein-coding 85 0.01013
-55370 PPP4R1L protein phosphatase 4 regulatory subunit 1 like (pseudogene) pseudo 21 0.002504
-55374 TMCO6 transmembrane and coiled-coil domains 6 protein-coding 51 0.00608
-55379 LRRC59 leucine rich repeat containing 59 protein-coding 28 0.003338
-55384 MEG3 maternally expressed 3 (non-protein coding) ncRNA 2 0.0002384
-55388 MCM10 minichromosome maintenance 10 replication initiation factor protein-coding 101 0.01204
-55421 NCBP3 nuclear cap binding subunit 3 protein-coding 56 0.006676
-55422 ZNF331 zinc finger protein 331 protein-coding 99 0.0118
-55423 SIRPG signal regulatory protein gamma protein-coding 81 0.009657
-55425 GPALPP1 GPALPP motifs containing 1 protein-coding 40 0.004769
-55432 YOD1 YOD1 deubiquitinase protein-coding 28 0.003338
-55435 AP1AR adaptor related protein complex 1 associated regulatory protein protein-coding 21 0.002504
-55437 STRADB STE20-related kinase adaptor beta protein-coding 42 0.005007
-55450 CAMK2N1 calcium/calmodulin dependent protein kinase II inhibitor 1 protein-coding 11 0.001311
-55454 CSGALNACT2 chondroitin sulfate N-acetylgalactosaminyltransferase 2 protein-coding 82 0.009776
-55466 DNAJA4 DnaJ heat shock protein family (Hsp40) member A4 protein-coding 42 0.005007
-55471 NDUFAF7 NADH:ubiquinone oxidoreductase complex assembly factor 7 protein-coding 51 0.00608
-55472 RBM12B-AS1 RBM12B antisense RNA 1 ncRNA 2 0.0002384
-55486 PARL presenilin associated rhomboid like protein-coding 54 0.006438
-55500 ETNK1 ethanolamine kinase 1 protein-coding 50 0.005961
-55501 CHST12 carbohydrate sulfotransferase 12 protein-coding 56 0.006676
-55502 HES6 hes family bHLH transcription factor 6 protein-coding 8 0.0009537
-55503 TRPV6 transient receptor potential cation channel subfamily V member 6 protein-coding 123 0.01466
-55504 TNFRSF19 TNF receptor superfamily member 19 protein-coding 69 0.008226
-55505 NOP10 NOP10 ribonucleoprotein protein-coding 12 0.001431
-55506 H2AFY2 H2A histone family member Y2 protein-coding 52 0.006199
-55507 GPRC5D G protein-coupled receptor class C group 5 member D protein-coding 37 0.004411
-55508 SLC35E3 solute carrier family 35 member E3 protein-coding 34 0.004053
-55509 BATF3 basic leucine zipper ATF-like transcription factor 3 protein-coding 15 0.001788
-55510 DDX43 DEAD-box helicase 43 protein-coding 92 0.01097
-55511 SAGE1 sarcoma antigen 1 protein-coding 200 0.02384
-55512 SMPD3 sphingomyelin phosphodiesterase 3 protein-coding 73 0.008703
-55515 ASIC4 acid sensing ion channel subunit family member 4 protein-coding 95 0.01133
-55520 ELAC1 elaC ribonuclease Z 1 protein-coding 37 0.004411
-55521 TRIM36 tripartite motif containing 36 protein-coding 89 0.01061
-55526 DHTKD1 dehydrogenase E1 and transketolase domain containing 1 protein-coding 96 0.01144
-55527 FEM1A fem-1 homolog A protein-coding 50 0.005961
-55529 PIP4P2 phosphatidylinositol-4,5-bisphosphate 4-phosphatase 2 protein-coding 45 0.005365
-55530 SVOP SV2 related protein protein-coding 50 0.005961
-55531 ELMOD1 ELMO domain containing 1 protein-coding 54 0.006438
-55532 SLC30A10 solute carrier family 30 member 10 protein-coding 70 0.008345
-55534 MAML3 mastermind like transcriptional coactivator 3 protein-coding 99 0.0118
-55536 CDCA7L cell division cycle associated 7 like protein-coding 69 0.008226
-55539 KCNQ1DN KCNQ1 downstream neighbor (non-protein coding) ncRNA 5 0.0005961
-55540 IL17RB interleukin 17 receptor B protein-coding 53 0.006319
-55544 RBM38 RNA binding motif protein 38 protein-coding 26 0.0031
-55552 ZNF823 zinc finger protein 823 protein-coding 69 0.008226
-55553 SOX6 SRY-box 6 protein-coding 110 0.01311
-55554 KLK15 kallikrein related peptidase 15 protein-coding 72 0.008584
-55556 ENOSF1 enolase superfamily member 1 protein-coding 56 0.006676
-55558 PLXNA3 plexin A3 protein-coding 197 0.02349
-55559 HAUS7 HAUS augmin like complex subunit 7 protein-coding 45 0.005365
-55561 CDC42BPG CDC42 binding protein kinase gamma protein-coding 130 0.0155
-55565 ZNF821 zinc finger protein 821 protein-coding 43 0.005126
-55567 DNAH3 dynein axonemal heavy chain 3 protein-coding 451 0.05377
-55568 GALNT10 polypeptide N-acetylgalactosaminyltransferase 10 protein-coding 74 0.008822
-55571 CNOT11 CCR4-NOT transcription complex subunit 11 protein-coding 55 0.006557
-55572 FOXRED1 FAD dependent oxidoreductase domain containing 1 protein-coding 53 0.006319
-55573 CDV3 CDV3 homolog protein-coding 11 0.001311
-55576 STAB2 stabilin 2 protein-coding 305 0.03636
-55577 NAGK N-acetylglucosamine kinase protein-coding 45 0.005365
-55578 SUPT20H SPT20 homolog, SAGA complex component protein-coding 101 0.01204
-55582 KIF27 kinesin family member 27 protein-coding 141 0.01681
-55584 CHRNA9 cholinergic receptor nicotinic alpha 9 subunit protein-coding 58 0.006915
-55585 UBE2Q1 ubiquitin conjugating enzyme E2 Q1 protein-coding 43 0.005126
-55586 MIOX myo-inositol oxygenase protein-coding 37 0.004411
-55588 MED29 mediator complex subunit 29 protein-coding 26 0.0031
-55589 BMP2K BMP2 inducible kinase protein-coding 96 0.01144
-55591 VEZT vezatin, adherens junctions transmembrane protein protein-coding 79 0.009418
-55593 OTUD5 OTU deubiquitinase 5 protein-coding 48 0.005722
-55596 ZCCHC8 zinc finger CCHC-type containing 8 protein-coding 87 0.01037
-55599 RNPC3 RNA binding region (RNP1, RRM) containing 3 protein-coding 34 0.004053
-55600 ITLN1 intelectin 1 protein-coding 63 0.007511
-55601 DDX60 DExD/H-box helicase 60 protein-coding 163 0.01943
-55602 CDKN2AIP CDKN2A interacting protein protein-coding 127 0.01514
-55603 FAM46A family with sequence similarity 46 member A protein-coding 46 0.005484
-55604 CARMIL1 capping protein regulator and myosin 1 linker 1 protein-coding 148 0.01764
-55605 KIF21A kinesin family member 21A protein-coding 228 0.02718
-55607 PPP1R9A protein phosphatase 1 regulatory subunit 9A protein-coding 168 0.02003
-55608 ANKRD10 ankyrin repeat domain 10 protein-coding 30 0.003577
-55609 ZNF280C zinc finger protein 280C protein-coding 77 0.00918
-55610 VPS50 VPS50, EARP/GARPII complex subunit protein-coding 152 0.01812
-55611 OTUB1 OTU deubiquitinase, ubiquitin aldehyde binding 1 protein-coding 30 0.003577
-55612 FERMT1 fermitin family member 1 protein-coding 75 0.008941
-55613 MTMR8 myotubularin related protein 8 protein-coding 101 0.01204
-55614 KIF16B kinesin family member 16B protein-coding 210 0.02504
-55615 PRR5 proline rich 5 protein-coding 44 0.005246
-55616 ASAP3 ArfGAP with SH3 domain, ankyrin repeat and PH domain 3 protein-coding 89 0.01061
-55617 TASP1 taspase 1 protein-coding 64 0.00763
-55619 DOCK10 dedicator of cytokinesis 10 protein-coding 271 0.03231
-55620 STAP2 signal transducing adaptor family member 2 protein-coding 43 0.005126
-55621 TRMT1 tRNA methyltransferase 1 protein-coding 72 0.008584
-55622 TTC27 tetratricopeptide repeat domain 27 protein-coding 95 0.01133
-55623 THUMPD1 THUMP domain containing 1 protein-coding 30 0.003577
-55624 POMGNT1 protein O-linked mannose N-acetylglucosaminyltransferase 1 (beta 1,2-) protein-coding 78 0.009299
-55625 ZDHHC7 zinc finger DHHC-type containing 7 protein-coding 55 0.006557
-55626 AMBRA1 autophagy and beclin 1 regulator 1 protein-coding 146 0.01741
-55627 SMPD4 sphingomyelin phosphodiesterase 4 protein-coding 115 0.01371
-55628 ZNF407 zinc finger protein 407 protein-coding 207 0.02468
-55629 PNRC2 proline rich nuclear receptor coactivator 2 protein-coding 1 0.0001192
-55630 SLC39A4 solute carrier family 39 member 4 protein-coding 64 0.00763
-55631 LRRC40 leucine rich repeat containing 40 protein-coding 74 0.008822
-55632 G2E3 G2/M-phase specific E3 ubiquitin protein ligase protein-coding 90 0.01073
-55633 TBC1D22B TBC1 domain family member 22B protein-coding 50 0.005961
-55634 KRBOX4 KRAB box domain containing 4 protein-coding 28 0.003338
-55635 DEPDC1 DEP domain containing 1 protein-coding 99 0.0118
-55636 CHD7 chromodomain helicase DNA binding protein 7 protein-coding 334 0.03982
-55638 SYBU syntabulin protein-coding 104 0.0124
-55640 FLVCR2 feline leukemia virus subgroup C cellular receptor family member 2 protein-coding 58 0.006915
-55643 BTBD2 BTB domain containing 2 protein-coding 55 0.006557
-55644 OSGEP O-sialoglycoprotein endopeptidase protein-coding 44 0.005246
-55646 LYAR Ly1 antibody reactive protein-coding 53 0.006319
-55647 RAB20 RAB20, member RAS oncogene family protein-coding 29 0.003457
-55650 PIGV phosphatidylinositol glycan anchor biosynthesis class V protein-coding 48 0.005722
-55651 NHP2 NHP2 ribonucleoprotein protein-coding 22 0.002623
-55652 SLC48A1 solute carrier family 48 member 1 protein-coding 7 0.0008345
-55653 BCAS4 breast carcinoma amplified sequence 4 protein-coding 15 0.001788
-55654 TMEM127 transmembrane protein 127 protein-coding 18 0.002146
-55655 NLRP2 NLR family pyrin domain containing 2 protein-coding 180 0.02146
-55656 INTS8 integrator complex subunit 8 protein-coding 104 0.0124
-55657 ZNF692 zinc finger protein 692 protein-coding 65 0.007749
-55658 RNF126 ring finger protein 126 protein-coding 30 0.003577
-55659 ZNF416 zinc finger protein 416 protein-coding 76 0.009061
-55660 PRPF40A pre-mRNA processing factor 40 homolog A protein-coding 82 0.009776
-55661 DDX27 DEAD-box helicase 27 protein-coding 85 0.01013
-55662 HIF1AN hypoxia inducible factor 1 alpha subunit inhibitor protein-coding 37 0.004411
-55663 ZNF446 zinc finger protein 446 protein-coding 86 0.01025
-55664 CDC37L1 cell division cycle 37 like 1 protein-coding 42 0.005007
-55665 URGCP upregulator of cell proliferation protein-coding 115 0.01371
-55666 NPLOC4 NPL4 homolog, ubiquitin recognition factor protein-coding 65 0.007749
-55667 DENND4C DENN domain containing 4C protein-coding 155 0.01848
-55668 GPATCH2L G-patch domain containing 2 like protein-coding 56 0.006676
-55669 MFN1 mitofusin 1 protein-coding 86 0.01025
-55670 PEX26 peroxisomal biogenesis factor 26 protein-coding 19 0.002265
-55671 PPP4R3A protein phosphatase 4 regulatory subunit 3A protein-coding 73 0.008703
-55672 NBPF1 NBPF member 1 protein-coding 158 0.01884
-55676 SLC30A6 solute carrier family 30 member 6 protein-coding 65 0.007749
-55677 IWS1 IWS1, SUPT6H interacting protein protein-coding 95 0.01133
-55679 LIMS2 LIM zinc finger domain containing 2 protein-coding 46 0.005484
-55680 RUFY2 RUN and FYVE domain containing 2 protein-coding 72 0.008584
-55681 SCYL2 SCY1 like pseudokinase 2 protein-coding 103 0.01228
-55683 KANSL3 KAT8 regulatory NSL complex subunit 3 protein-coding 78 0.009299
-55684 RABL6 RAB, member RAS oncogene family like 6 protein-coding 64 0.00763
-55686 MREG melanoregulin protein-coding 26 0.0031
-55687 TRMU tRNA 5-methylaminomethyl-2-thiouridylate methyltransferase protein-coding 107 0.01276
-55689 YEATS2 YEATS domain containing 2 protein-coding 129 0.01538
-55690 PACS1 phosphofurin acidic cluster sorting protein 1 protein-coding 101 0.01204
-55691 FRMD4A FERM domain containing 4A protein-coding 118 0.01407
-55692 LUC7L LUC7 like protein-coding 43 0.005126
-55693 KDM4D lysine demethylase 4D protein-coding 72 0.008584
-55695 NSUN5 NOP2/Sun RNA methyltransferase family member 5 protein-coding 48 0.005722
-55696 RBM22 RNA binding motif protein 22 protein-coding 36 0.004292
-55697 VAC14 Vac14, PIKFYVE complex component protein-coding 76 0.009061
-55698 RADIL Rap associating with DIL domain protein-coding 130 0.0155
-55699 IARS2 isoleucyl-tRNA synthetase 2, mitochondrial protein-coding 110 0.01311
-55700 MAP7D1 MAP7 domain containing 1 protein-coding 101 0.01204
-55701 ARHGEF40 Rho guanine nucleotide exchange factor 40 protein-coding 142 0.01693
-55702 YJU2 YJU2 splicing factor homolog protein-coding 23 0.002742
-55703 POLR3B RNA polymerase III subunit B protein-coding 117 0.01395
-55704 CCDC88A coiled-coil domain containing 88A protein-coding 210 0.02504
-55705 IPO9 importin 9 protein-coding 108 0.01288
-55706 NDC1 NDC1 transmembrane nucleoporin protein-coding 60 0.007153
-55707 NECAP2 NECAP endocytosis associated 2 protein-coding 25 0.00298
-55709 KBTBD4 kelch repeat and BTB domain containing 4 protein-coding 59 0.007034
-55711 FAR2 fatty acyl-CoA reductase 2 protein-coding 64 0.00763
-55713 ZNF334 zinc finger protein 334 protein-coding 138 0.01645
-55714 TENM3 teneurin transmembrane protein 3 protein-coding 381 0.04542
-55715 DOK4 docking protein 4 protein-coding 44 0.005246
-55716 LMBR1L limb development membrane protein 1 like protein-coding 53 0.006319
-55717 WDR11 WD repeat domain 11 protein-coding 106 0.01264
-55718 POLR3E RNA polymerase III subunit E protein-coding 87 0.01037
-55719 SLF2 SMC5-SMC6 complex localization factor 2 protein-coding 108 0.01288
-55720 TSR1 TSR1, ribosome maturation factor protein-coding 58 0.006915
-55721 IQCC IQ motif containing C protein-coding 43 0.005126
-55722 CEP72 centrosomal protein 72 protein-coding 79 0.009418
-55723 ASF1B anti-silencing function 1B histone chaperone protein-coding 24 0.002861
-55726 INTS13 integrator complex subunit 13 protein-coding 85 0.01013
-55727 BTBD7 BTB domain containing 7 protein-coding 134 0.01598
-55728 N4BP2 NEDD4 binding protein 2 protein-coding 159 0.01896
-55729 ATF7IP activating transcription factor 7 interacting protein protein-coding 176 0.02098
-55731 FAM222B family with sequence similarity 222 member B protein-coding 52 0.006199
-55732 C1orf112 chromosome 1 open reading frame 112 protein-coding 95 0.01133
-55733 HHAT hedgehog acyltransferase protein-coding 66 0.007868
-55734 ZFP64 ZFP64 zinc finger protein protein-coding 131 0.01562
-55735 DNAJC11 DnaJ heat shock protein family (Hsp40) member C11 protein-coding 62 0.007392
-55737 VPS35 VPS35, retromer complex component protein-coding 72 0.008584
-55738 ARFGAP1 ADP ribosylation factor GTPase activating protein 1 protein-coding 60 0.007153
-55739 NAXD NAD(P)HX dehydratase protein-coding 48 0.005722
-55740 ENAH ENAH, actin regulator protein-coding 63 0.007511
-55741 EDEM2 ER degradation enhancing alpha-mannosidase like protein 2 protein-coding 56 0.006676
-55742 PARVA parvin alpha protein-coding 27 0.003219
-55743 CHFR checkpoint with forkhead and ring finger domains protein-coding 75 0.008941
-55744 COA1 cytochrome c oxidase assembly factor 1 homolog protein-coding 16 0.001907
-55745 AP5M1 adaptor related protein complex 5 mu 1 subunit protein-coding 54 0.006438
-55746 NUP133 nucleoporin 133 protein-coding 133 0.01586
-55748 CNDP2 carnosine dipeptidase 2 protein-coding 59 0.007034
-55749 CCAR1 cell division cycle and apoptosis regulator 1 protein-coding 130 0.0155
-55750 AGK acylglycerol kinase protein-coding 48 0.005722
-55751 TMEM184C transmembrane protein 184C protein-coding 51 0.00608
-55752 SEPT11 septin 11 protein-coding 48 0.005722
-55753 OGDHL oxoglutarate dehydrogenase like protein-coding 186 0.02217
-55754 TMEM30A transmembrane protein 30A protein-coding 44 0.005246
-55755 CDK5RAP2 CDK5 regulatory subunit associated protein 2 protein-coding 184 0.02194
-55756 INTS9 integrator complex subunit 9 protein-coding 49 0.005842
-55757 UGGT2 UDP-glucose glycoprotein glucosyltransferase 2 protein-coding 153 0.01824
-55758 RCOR3 REST corepressor 3 protein-coding 67 0.007988
-55759 WDR12 WD repeat domain 12 protein-coding 38 0.00453
-55760 DHX32 DEAH-box helicase 32 (putative) protein-coding 78 0.009299
-55761 TTC17 tetratricopeptide repeat domain 17 protein-coding 138 0.01645
-55762 ZNF701 zinc finger protein 701 protein-coding 78 0.009299
-55763 EXOC1 exocyst complex component 1 protein-coding 108 0.01288
-55764 IFT122 intraflagellar transport 122 protein-coding 129 0.01538
-55765 INAVA innate immunity activator protein-coding 57 0.006795
-55766 H2AFJ H2A histone family member J protein-coding 19 0.002265
-55768 NGLY1 N-glycanase 1 protein-coding 71 0.008464
-55769 ZNF83 zinc finger protein 83 protein-coding 62 0.007392
-55770 EXOC2 exocyst complex component 2 protein-coding 95 0.01133
-55771 PRR11 proline rich 11 protein-coding 30 0.003577
-55773 TBC1D23 TBC1 domain family member 23 protein-coding 70 0.008345
-55775 TDP1 tyrosyl-DNA phosphodiesterase 1 protein-coding 69 0.008226
-55776 SAYSD1 SAYSVFN motif domain containing 1 protein-coding 20 0.002384
-55777 MBD5 methyl-CpG binding domain protein 5 protein-coding 189 0.02253
-55778 ZNF839 zinc finger protein 839 protein-coding 77 0.00918
-55779 CFAP44 cilia and flagella associated protein 44 protein-coding 167 0.01991
-55780 ERMARD ER membrane associated RNA degradation protein-coding 80 0.009537
-55781 RIOK2 RIO kinase 2 protein-coding 67 0.007988
-55783 CMTR2 cap methyltransferase 2 protein-coding 104 0.0124
-55784 MCTP2 multiple C2 and transmembrane domain containing 2 protein-coding 118 0.01407
-55785 FGD6 FYVE, RhoGEF and PH domain containing 6 protein-coding 157 0.01872
-55786 ZNF415 zinc finger protein 415 protein-coding 84 0.01001
-55787 TXLNG taxilin gamma protein-coding 51 0.00608
-55788 LMBRD1 LMBR1 domain containing 1 protein-coding 86 0.01025
-55789 DEPDC1B DEP domain containing 1B protein-coding 110 0.01311
-55790 CSGALNACT1 chondroitin sulfate N-acetylgalactosaminyltransferase 1 protein-coding 78 0.009299
-55791 LRIF1 ligand dependent nuclear receptor interacting factor 1 protein-coding 290 0.03457
-55793 MINDY1 MINDY lysine 48 deubiquitinase 1 protein-coding 49 0.005842
-55794 DDX28 DEAD-box helicase 28 protein-coding 38 0.00453
-55795 PCID2 PCI domain containing 2 protein-coding 44 0.005246
-55796 MBNL3 muscleblind like splicing regulator 3 protein-coding 46 0.005484
-55798 METTL2B methyltransferase like 2B protein-coding 74 0.008822
-55799 CACNA2D3 calcium voltage-gated channel auxiliary subunit alpha2delta 3 protein-coding 171 0.02039
-55800 SCN3B sodium voltage-gated channel beta subunit 3 protein-coding 53 0.006319
-55801 IL26 interleukin 26 protein-coding 35 0.004173
-55802 DCP1A decapping mRNA 1A protein-coding 44 0.005246
-55803 ADAP2 ArfGAP with dual PH domains 2 protein-coding 45 0.005365
-55805 LRP2BP LRP2 binding protein protein-coding 39 0.004649
-55806 HR HR, lysine demethylase and nuclear receptor corepressor protein-coding 105 0.01252
-55808 ST6GALNAC1 ST6 N-acetylgalactosaminide alpha-2,6-sialyltransferase 1 protein-coding 64 0.00763
-55809 TRERF1 transcriptional regulating factor 1 protein-coding 164 0.01955
-55810 FOXJ2 forkhead box J2 protein-coding 66 0.007868
-55811 ADCY10 adenylate cyclase 10 protein-coding 203 0.0242
-55812 SPATA7 spermatogenesis associated 7 protein-coding 72 0.008584
-55813 UTP6 UTP6, small subunit processome component protein-coding 64 0.00763
-55814 BDP1 B double prime 1, subunit of RNA polymerase III transcription initiation factor IIIB protein-coding 227 0.02706
-55815 TSNAXIP1 translin associated factor X interacting protein 1 protein-coding 77 0.00918
-55816 DOK5 docking protein 5 protein-coding 73 0.008703
-55818 KDM3A lysine demethylase 3A protein-coding 117 0.01395
-55819 RNF130 ring finger protein 130 protein-coding 38 0.00453
-55821 ALLC allantoicase protein-coding 88 0.01049
-55823 VPS11 VPS11, CORVET/HOPS core subunit protein-coding 89 0.01061
-55824 PAG1 phosphoprotein membrane anchor with glycosphingolipid microdomains 1 protein-coding 53 0.006319
-55825 PECR peroxisomal trans-2-enoyl-CoA reductase protein-coding 29 0.003457
-55827 DCAF6 DDB1 and CUL4 associated factor 6 protein-coding 107 0.01276
-55829 SELENOS selenoprotein S protein-coding 10 0.001192
-55830 GLT8D1 glycosyltransferase 8 domain containing 1 protein-coding 43 0.005126
-55831 EMC3 ER membrane protein complex subunit 3 protein-coding 33 0.003934
-55832 CAND1 cullin associated and neddylation dissociated 1 protein-coding 144 0.01717
-55833 UBAP2 ubiquitin associated protein 2 protein-coding 106 0.01264
-55835 CENPJ centromere protein J protein-coding 147 0.01753
-55837 EAPP E2F associated phosphoprotein protein-coding 30 0.003577
-55839 CENPN centromere protein N protein-coding 41 0.004888
-55840 EAF2 ELL associated factor 2 protein-coding 46 0.005484
-55841 WWC3 WWC family member 3 protein-coding 180 0.02146
-55843 ARHGAP15 Rho GTPase activating protein 15 protein-coding 94 0.01121
-55844 PPP2R2D protein phosphatase 2 regulatory subunit Bdelta protein-coding 48 0.005722
-55845 BRK1 BRICK1, SCAR/WAVE actin nucleating complex subunit protein-coding 5 0.0005961
-55846 ITFG2 integrin alpha FG-GAP repeat containing 2 protein-coding 46 0.005484
-55847 CISD1 CDGSH iron sulfur domain 1 protein-coding 9 0.001073
-55848 PLGRKT plasminogen receptor with a C-terminal lysine protein-coding 23 0.002742
-55850 USE1 unconventional SNARE in the ER 1 protein-coding 32 0.003815
-55851 PSENEN presenilin enhancer gamma-secretase subunit protein-coding 17 0.002027
-55852 TEX2 testis expressed 2 protein-coding 133 0.01586
-55854 ZC3H15 zinc finger CCCH-type containing 15 protein-coding 51 0.00608
-55856 ACOT13 acyl-CoA thioesterase 13 protein-coding 14 0.001669
-55857 KIZ kizuna centrosomal protein protein-coding 20 0.002384
-55858 TMEM165 transmembrane protein 165 protein-coding 28 0.003338
-55859 BEX1 brain expressed X-linked 1 protein-coding 30 0.003577
-55860 ACTR10 actin related protein 10 homolog protein-coding 44 0.005246
-55861 DBNDD2 dysbindin domain containing 2 protein-coding 35 0.004173
-55862 ECHDC1 ethylmalonyl-CoA decarboxylase 1 protein-coding 40 0.004769
-55863 TMEM126B transmembrane protein 126B protein-coding 23 0.002742
-55867 SLC22A11 solute carrier family 22 member 11 protein-coding 76 0.009061
-55869 HDAC8 histone deacetylase 8 protein-coding 50 0.005961
-55870 ASH1L ASH1 like histone lysine methyltransferase protein-coding 298 0.03553
-55871 CBWD1 COBW domain containing 1 protein-coding 25 0.00298
-55872 PBK PDZ binding kinase protein-coding 32 0.003815
-55876 GSDMB gasdermin B protein-coding 33 0.003934
-55879 GABRQ gamma-aminobutyric acid type A receptor theta subunit protein-coding 136 0.01621
-55884 WSB2 WD repeat and SOCS box containing 2 protein-coding 44 0.005246
-55885 LMO3 LIM domain only 3 protein-coding 18 0.002146
-55888 ZKSCAN7 zinc finger with KRAB and SCAN domains 7 protein-coding 90 0.01073
-55889 GOLGA6B golgin A6 family member B protein-coding 51 0.00608
-55890 GPRC5C G protein-coupled receptor class C group 5 member C protein-coding 78 0.009299
-55891 LENEP lens epithelial protein protein-coding 10 0.001192
-55892 MYNN myoneurin protein-coding 64 0.00763
-55893 ZNF395 zinc finger protein 395 protein-coding 141 0.01681
-55897 MESP1 mesoderm posterior bHLH transcription factor 1 protein-coding 5 0.0005961
-55898 UNC45A unc-45 myosin chaperone A protein-coding 125 0.0149
-55900 ZNF302 zinc finger protein 302 protein-coding 53 0.006319
-55901 THSD1 thrombospondin type 1 domain containing 1 protein-coding 118 0.01407
-55902 ACSS2 acyl-CoA synthetase short chain family member 2 protein-coding 63 0.007511
-55904 KMT2E lysine methyltransferase 2E protein-coding 219 0.02611
-55905 RNF114 ring finger protein 114 protein-coding 24 0.002861
-55906 ZC4H2 zinc finger C4H2-type containing protein-coding 47 0.005603
-55907 CMAS cytidine monophosphate N-acetylneuraminic acid synthetase protein-coding 63 0.007511
-55908 ANGPTL8 angiopoietin like 8 protein-coding 19 0.002265
-55909 BIN3 bridging integrator 3 protein-coding 28 0.003338
-55911 APOBR apolipoprotein B receptor protein-coding 109 0.01299
-55914 ERBIN erbb2 interacting protein protein-coding 144 0.01717
-55915 LANCL2 LanC like 2 protein-coding 59 0.007034
-55916 NXT2 nuclear transport factor 2 like export factor 2 protein-coding 22 0.002623
-55917 CTTNBP2NL CTTNBP2 N-terminal like protein-coding 69 0.008226
-55920 RCC2 regulator of chromosome condensation 2 protein-coding 61 0.007272
-55922 NKRF NFKB repressing factor protein-coding 81 0.009657
-55924 FAM212B family with sequence similarity 212 member B protein-coding 39 0.004649
-55929 DMAP1 DNA methyltransferase 1 associated protein 1 protein-coding 96 0.01144
-55930 MYO5C myosin VC protein-coding 157 0.01872
-55937 APOM apolipoprotein M protein-coding 14 0.001669
-55954 ZMAT5 zinc finger matrin-type 5 protein-coding 18 0.002146
-55957 LIN37 lin-37 DREAM MuvB core complex component protein-coding 34 0.004053
-55958 KLHL9 kelch like family member 9 protein-coding 69 0.008226
-55959 SULF2 sulfatase 2 protein-coding 122 0.01454
-55964 SEPT3 septin 3 protein-coding 53 0.006319
-55966 AJAP1 adherens junctions associated protein 1 protein-coding 93 0.01109
-55967 NDUFA12 NADH:ubiquinone oxidoreductase subunit A12 protein-coding 20 0.002384
-55968 NSFL1C NSFL1 cofactor protein-coding 46 0.005484
-55969 RAB5IF RAB5 interacting factor protein-coding 6 0.0007153
-55970 GNG12 G protein subunit gamma 12 protein-coding 34 0.004053
-55971 BAIAP2L1 BAI1 associated protein 2 like 1 protein-coding 75 0.008941
-55972 SLC25A40 solute carrier family 25 member 40 protein-coding 40 0.004769
-55973 BCAP29 B cell receptor associated protein 29 protein-coding 51 0.00608
-55974 SLC50A1 solute carrier family 50 member 1 protein-coding 22 0.002623
-55975 KLHL7 kelch like family member 7 protein-coding 170 0.02027
-55997 CFC1 cripto, FRL-1, cryptic family 1 protein-coding 31 0.003696
-55998 NXF5 nuclear RNA export factor 5 protein-coding 77 0.00918
-55999 NXF4 nuclear RNA export factor 4 pseudogene pseudo 144 0.01717
-56000 NXF3 nuclear RNA export factor 3 protein-coding 100 0.01192
-56001 NXF2 nuclear RNA export factor 2 protein-coding 43 0.005126
-56005 MYDGF myeloid derived growth factor protein-coding 73 0.008703
-56006 SMG9 SMG9, nonsense mediated mRNA decay factor protein-coding 48 0.005722
-56033 BARX1 BARX homeobox 1 protein-coding 13 0.00155
-56034 PDGFC platelet derived growth factor C protein-coding 65 0.007749
-56052 ALG1 ALG1, chitobiosyldiphosphodolichol beta-mannosyltransferase protein-coding 48 0.005722
-56061 UBFD1 ubiquitin family domain containing 1 protein-coding 28 0.003338
-56062 KLHL4 kelch like family member 4 protein-coding 213 0.02539
-56063 TMEM234 transmembrane protein 234 protein-coding 7 0.0008345
-56097 PCDHGC5 protocadherin gamma subfamily C, 5 protein-coding 99 0.0118
-56098 PCDHGC4 protocadherin gamma subfamily C, 4 protein-coding 96 0.01144
-56099 PCDHGB7 protocadherin gamma subfamily B, 7 protein-coding 137 0.01633
-56100 PCDHGB6 protocadherin gamma subfamily B, 6 protein-coding 154 0.01836
-56102 PCDHGB3 protocadherin gamma subfamily B, 3 protein-coding 177 0.0211
-56103 PCDHGB2 protocadherin gamma subfamily B, 2 protein-coding 162 0.01931
-56104 PCDHGB1 protocadherin gamma subfamily B, 1 protein-coding 168 0.02003
-56105 PCDHGA11 protocadherin gamma subfamily A, 11 protein-coding 133 0.01586
-56106 PCDHGA10 protocadherin gamma subfamily A, 10 protein-coding 126 0.01502
-56107 PCDHGA9 protocadherin gamma subfamily A, 9 protein-coding 122 0.01454
-56108 PCDHGA7 protocadherin gamma subfamily A, 7 protein-coding 159 0.01896
-56109 PCDHGA6 protocadherin gamma subfamily A, 6 protein-coding 175 0.02086
-56110 PCDHGA5 protocadherin gamma subfamily A, 5 protein-coding 242 0.02885
-56111 PCDHGA4 protocadherin gamma subfamily A, 4 protein-coding 159 0.01896
-56112 PCDHGA3 protocadherin gamma subfamily A, 3 protein-coding 202 0.02408
-56113 PCDHGA2 protocadherin gamma subfamily A, 2 protein-coding 202 0.02408
-56114 PCDHGA1 protocadherin gamma subfamily A, 1 protein-coding 176 0.02098
-56121 PCDHB15 protocadherin beta 15 protein-coding 147 0.01753
-56122 PCDHB14 protocadherin beta 14 protein-coding 176 0.02098
-56123 PCDHB13 protocadherin beta 13 protein-coding 162 0.01931
-56124 PCDHB12 protocadherin beta 12 protein-coding 216 0.02575
-56125 PCDHB11 protocadherin beta 11 protein-coding 229 0.0273
-56126 PCDHB10 protocadherin beta 10 protein-coding 190 0.02265
-56128 PCDHB8 protocadherin beta 8 protein-coding 241 0.02873
-56129 PCDHB7 protocadherin beta 7 protein-coding 241 0.02873
-56130 PCDHB6 protocadherin beta 6 protein-coding 211 0.02515
-56131 PCDHB4 protocadherin beta 4 protein-coding 177 0.0211
-56132 PCDHB3 protocadherin beta 3 protein-coding 194 0.02313
-56133 PCDHB2 protocadherin beta 2 protein-coding 186 0.02217
-56134 PCDHAC2 protocadherin alpha subfamily C, 2 protein-coding 132 0.01574
-56135 PCDHAC1 protocadherin alpha subfamily C, 1 protein-coding 154 0.01836
-56136 PCDHA13 protocadherin alpha 13 protein-coding 189 0.02253
-56137 PCDHA12 protocadherin alpha 12 protein-coding 227 0.02706
-56138 PCDHA11 protocadherin alpha 11 protein-coding 197 0.02349
-56139 PCDHA10 protocadherin alpha 10 protein-coding 182 0.0217
-56140 PCDHA8 protocadherin alpha 8 protein-coding 203 0.0242
-56141 PCDHA7 protocadherin alpha 7 protein-coding 210 0.02504
-56142 PCDHA6 protocadherin alpha 6 protein-coding 246 0.02933
-56143 PCDHA5 protocadherin alpha 5 protein-coding 190 0.02265
-56144 PCDHA4 protocadherin alpha 4 protein-coding 188 0.02241
-56145 PCDHA3 protocadherin alpha 3 protein-coding 206 0.02456
-56146 PCDHA2 protocadherin alpha 2 protein-coding 223 0.02659
-56147 PCDHA1 protocadherin alpha 1 protein-coding 207 0.02468
-56154 TEX15 testis expressed 15, meiosis and synapsis associated protein-coding 302 0.036
-56155 TEX14 testis expressed 14, intercellular bridge forming factor protein-coding 181 0.02158
-56156 TEX13B testis expressed 13B protein-coding 54 0.006438
-56157 TEX13A testis expressed 13A protein-coding 93 0.01109
-56158 TEX12 testis expressed 12 protein-coding 13 0.00155
-56159 TEX11 testis expressed 11 protein-coding 114 0.01359
-56160 NSMCE3 NSE3 homolog, SMC5-SMC6 complex component protein-coding 29 0.003457
-56163 RNF17 ring finger protein 17 protein-coding 190 0.02265
-56164 STK31 serine/threonine kinase 31 protein-coding 156 0.0186
-56165 TDRD1 tudor domain containing 1 protein-coding 157 0.01872
-56169 GSDMC gasdermin C protein-coding 88 0.01049
-56171 DNAH7 dynein axonemal heavy chain 7 protein-coding 522 0.06223
-56172 ANKH ANKH inorganic pyrophosphate transport regulator protein-coding 60 0.007153
-56180 MOSPD1 motile sperm domain containing 1 protein-coding 30 0.003577
-56181 MTFR1L mitochondrial fission regulator 1 like protein-coding 28 0.003338
-56203 LMOD3 leiomodin 3 protein-coding 65 0.007749
-56204 FAM214A family with sequence similarity 214 member A protein-coding 104 0.0124
-56241 SUSD2 sushi domain containing 2 protein-coding 86 0.01025
-56242 ZNF253 zinc finger protein 253 protein-coding 77 0.00918
-56243 KIAA1217 KIAA1217 protein-coding 227 0.02706
-56244 BTNL2 butyrophilin like 2 protein-coding 45 0.005365
-56245 C21orf62 chromosome 21 open reading frame 62 protein-coding 24 0.002861
-56246 MRAP melanocortin 2 receptor accessory protein protein-coding 100 0.01192
-56252 YLPM1 YLP motif containing 1 protein-coding 217 0.02587
-56253 CRTAM cytotoxic and regulatory T cell molecule protein-coding 54 0.006438
-56254 RNF20 ring finger protein 20 protein-coding 107 0.01276
-56255 TMX4 thioredoxin related transmembrane protein 4 protein-coding 50 0.005961
-56256 SERTAD4 SERTA domain containing 4 protein-coding 56 0.006676
-56257 MEPCE methylphosphate capping enzyme protein-coding 70 0.008345
-56259 CTNNBL1 catenin beta like 1 protein-coding 68 0.008107
-56260 C8orf44 chromosome 8 open reading frame 44 protein-coding 18 0.002146
-56261 GPCPD1 glycerophosphocholine phosphodiesterase 1 protein-coding 71 0.008464
-56262 LRRC8A leucine rich repeat containing 8 VRAC subunit A protein-coding 83 0.009895
-56265 CPXM1 carboxypeptidase X, M14 family member 1 protein-coding 117 0.01395
-56267 KYAT3 kynurenine aminotransferase 3 protein-coding 59 0.007034
-56269 IRGC immunity related GTPase cinema protein-coding 80 0.009537
-56270 WDR45B WD repeat domain 45B protein-coding 55 0.006557
-56271 BEX4 brain expressed X-linked 4 protein-coding 14 0.001669
-56287 GKN1 gastrokine 1 protein-coding 78 0.009299
-56288 PARD3 par-3 family cell polarity regulator protein-coding 203 0.0242
-56300 IL36G interleukin 36 gamma protein-coding 32 0.003815
-56301 SLC7A10 solute carrier family 7 member 10 protein-coding 51 0.00608
-56302 TRPV5 transient receptor potential cation channel subfamily V member 5 protein-coding 151 0.018
-56311 ANKRD7 ankyrin repeat domain 7 protein-coding 53 0.006319
-56339 METTL3 methyltransferase like 3 protein-coding 67 0.007988
-56341 PRMT8 protein arginine methyltransferase 8 protein-coding 77 0.00918
-56342 PPAN peter pan homolog (Drosophila) protein-coding 49 0.005842
-56344 CABP5 calcium binding protein 5 protein-coding 36 0.004292
-56413 LTB4R2 leukotriene B4 receptor 2 protein-coding 29 0.003457
-56474 CTPS2 CTP synthase 2 protein-coding 57 0.006795
-56475 RPRM reprimo, TP53 dependent G2 arrest mediator homolog protein-coding 22 0.002623
-56477 CCL28 C-C motif chemokine ligand 28 protein-coding 15 0.001788
-56478 EIF4ENIF1 eukaryotic translation initiation factor 4E nuclear import factor 1 protein-coding 105 0.01252
-56479 KCNQ5 potassium voltage-gated channel subfamily Q member 5 protein-coding 175 0.02086
-56521 DNAJC12 DnaJ heat shock protein family (Hsp40) member C12 protein-coding 27 0.003219
-56547 MMP26 matrix metallopeptidase 26 protein-coding 51 0.00608
-56548 CHST7 carbohydrate sulfotransferase 7 protein-coding 46 0.005484
-56603 CYP26B1 cytochrome P450 family 26 subfamily B member 1 protein-coding 94 0.01121
-56605 ERO1B endoplasmic reticulum oxidoreductase 1 beta protein-coding 53 0.006319
-56606 SLC2A9 solute carrier family 2 member 9 protein-coding 74 0.008822
-56616 DIABLO diablo IAP-binding mitochondrial protein protein-coding 19 0.002265
-56623 INPP5E inositol polyphosphate-5-phosphatase E protein-coding 37 0.004411
-56624 ASAH2 N-acylsphingosine amidohydrolase 2 protein-coding 58 0.006915
-56647 BCCIP BRCA2 and CDKN1A interacting protein protein-coding 41 0.004888
-56648 EIF5A2 eukaryotic translation initiation factor 5A2 protein-coding 25 0.00298
-56649 TMPRSS4 transmembrane serine protease 4 protein-coding 100 0.01192
-56650 CLDND1 claudin domain containing 1 protein-coding 41 0.004888
-56651 LINC00470 long intergenic non-protein coding RNA 470 ncRNA 2 0.0002384
-56652 TWNK twinkle mtDNA helicase protein-coding 78 0.009299
-56654 NPDC1 neural proliferation, differentiation and control 1 protein-coding 22 0.002623
-56655 POLE4 DNA polymerase epsilon 4, accessory subunit protein-coding 8 0.0009537
-56656 OR2S2 olfactory receptor family 2 subfamily S member 2 (gene/pseudogene) protein-coding 40 0.004769
-56658 TRIM39 tripartite motif containing 39 protein-coding 66 0.007868
-56659 KCNK13 potassium two pore domain channel subfamily K member 13 protein-coding 73 0.008703
-56660 KCNK12 potassium two pore domain channel subfamily K member 12 protein-coding 5 0.0005961
-56666 PANX2 pannexin 2 protein-coding 60 0.007153
-56667 MUC13 mucin 13, cell surface associated protein-coding 58 0.006915
-56670 SUCNR1 succinate receptor 1 protein-coding 39 0.004649
-56672 AKIP1 A-kinase interacting protein 1 protein-coding 23 0.002742
-56673 C11orf16 chromosome 11 open reading frame 16 protein-coding 43 0.005126
-56674 TMEM9B TMEM9 domain family member B protein-coding 11 0.001311
-56675 NRIP3 nuclear receptor interacting protein 3 protein-coding 29 0.003457
-56676 ASCL3 achaete-scute family bHLH transcription factor 3 protein-coding 18 0.002146
-56681 SAR1A secretion associated Ras related GTPase 1A protein-coding 24 0.002861
-56683 CFAP298 cilia and flagella associated protein 298 protein-coding 7 0.0008345
-56704 JPH1 junctophilin 1 protein-coding 109 0.01299
-56729 RETN resistin protein-coding 8 0.0009537
-56731 SLC2A4RG SLC2A4 regulator protein-coding 26 0.0031
-56751 BARHL1 BarH like homeobox 1 protein-coding 38 0.00453
-56776 FMN2 formin 2 protein-coding 415 0.04948
-56829 ZC3HAV1 zinc finger CCCH-type containing, antiviral 1 protein-coding 112 0.01335
-56832 IFNK interferon kappa protein-coding 16 0.001907
-56833 SLAMF8 SLAM family member 8 protein-coding 48 0.005722
-56834 GPR137 G protein-coupled receptor 137 protein-coding 57 0.006795
-56848 SPHK2 sphingosine kinase 2 protein-coding 71 0.008464
-56849 TCEAL7 transcription elongation factor A like 7 protein-coding 12 0.001431
-56850 GRIPAP1 GRIP1 associated protein 1 protein-coding 94 0.01121
-56851 EMC7 ER membrane protein complex subunit 7 protein-coding 29 0.003457
-56852 RAD18 RAD18, E3 ubiquitin protein ligase protein-coding 63 0.007511
-56853 CELF4 CUGBP Elav-like family member 4 protein-coding 90 0.01073
-56882 CDC42SE1 CDC42 small effector 1 protein-coding 5 0.0005961
-56884 FSTL5 follistatin like 5 protein-coding 252 0.03004
-56886 UGGT1 UDP-glucose glycoprotein glucosyltransferase 1 protein-coding 137 0.01633
-56888 KCMF1 potassium channel modulatory factor 1 protein-coding 50 0.005961
-56889 TM9SF3 transmembrane 9 superfamily member 3 protein-coding 64 0.00763
-56890 MDM1 Mdm1 nuclear protein protein-coding 92 0.01097
-56891 LGALS14 galectin 14 protein-coding 24 0.002861
-56892 TCIM transcriptional and immune response regulator protein-coding 16 0.001907
-56893 UBQLN4 ubiquilin 4 protein-coding 58 0.006915
-56894 AGPAT3 1-acylglycerol-3-phosphate O-acyltransferase 3 protein-coding 49 0.005842
-56895 AGPAT4 1-acylglycerol-3-phosphate O-acyltransferase 4 protein-coding 52 0.006199
-56896 DPYSL5 dihydropyrimidinase like 5 protein-coding 112 0.01335
-56897 WRNIP1 Werner helicase interacting protein 1 protein-coding 41 0.004888
-56898 BDH2 3-hydroxybutyrate dehydrogenase 2 protein-coding 20 0.002384
-56899 ANKS1B ankyrin repeat and sterile alpha motif domain containing 1B protein-coding 206 0.02456
-56900 TMEM167B transmembrane protein 167B protein-coding 6 0.0007153
-56901 NDUFA4L2 NDUFA4, mitochondrial complex associated like 2 protein-coding 10 0.001192
-56902 PNO1 partner of NOB1 homolog protein-coding 32 0.003815
-56903 PAPOLB poly(A) polymerase beta protein-coding 107 0.01276
-56904 SH3GLB2 SH3 domain containing GRB2 like, endophilin B2 protein-coding 37 0.004411
-56905 C15orf39 chromosome 15 open reading frame 39 protein-coding 114 0.01359
-56906 THAP10 THAP domain containing 10 protein-coding 28 0.003338
-56907 SPIRE1 spire type actin nucleation factor 1 protein-coding 66 0.007868
-56910 STARD7 StAR related lipid transfer domain containing 7 protein-coding 41 0.004888
-56911 MAP3K7CL MAP3K7 C-terminal like protein-coding 29 0.003457
-56912 IFT46 intraflagellar transport 46 protein-coding 35 0.004173
-56913 C1GALT1 core 1 synthase, glycoprotein-N-acetylgalactosamine 3-beta-galactosyltransferase 1 protein-coding 39 0.004649
-56914 OTOR otoraplin protein-coding 31 0.003696
-56915 EXOSC5 exosome component 5 protein-coding 33 0.003934
-56916 SMARCAD1 SWI/SNF-related, matrix-associated actin-dependent regulator of chromatin, subfamily a, containing DEAD/H box 1 protein-coding 136 0.01621
-56917 MEIS3 Meis homeobox 3 protein-coding 47 0.005603
-56918 C2orf83 chromosome 2 open reading frame 83 protein-coding 17 0.002027
-56919 DHX33 DEAH-box helicase 33 protein-coding 55 0.006557
-56920 SEMA3G semaphorin 3G protein-coding 78 0.009299
-56922 MCCC1 methylcrotonoyl-CoA carboxylase 1 protein-coding 90 0.01073
-56923 NMUR2 neuromedin U receptor 2 protein-coding 102 0.01216
-56924 PAK6 p21 (RAC1) activated kinase 6 protein-coding 65 0.007749
-56925 LXN latexin protein-coding 22 0.002623
-56926 NCLN nicalin protein-coding 44 0.005246
-56927 GPR108 G protein-coupled receptor 108 protein-coding 53 0.006319
-56928 SPPL2B signal peptide peptidase like 2B protein-coding 89 0.01061
-56929 FEM1C fem-1 homolog C protein-coding 101 0.01204
-56931 DUS3L dihydrouridine synthase 3 like protein-coding 72 0.008584
-56934 CA10 carbonic anhydrase 10 protein-coding 80 0.009537
-56935 SMCO4 single-pass membrane protein with coiled-coil domains 4 protein-coding 8 0.0009537
-56936 CCDC177 coiled-coil domain containing 177 protein-coding 5 0.0005961
-56937 PMEPA1 prostate transmembrane protein, androgen induced 1 protein-coding 207 0.02468
-56938 ARNTL2 aryl hydrocarbon receptor nuclear translocator like 2 protein-coding 69 0.008226
-56940 DUSP22 dual specificity phosphatase 22 protein-coding 82 0.009776
-56941 HMCES 5-hydroxymethylcytosine (hmC) binding, ES cell-specific protein-coding 42 0.005007
-56942 CMC2 C-X9-C motif containing 2 protein-coding 11 0.001311
-56943 ENY2 ENY2, transcription and export complex 2 subunit protein-coding 16 0.001907
-56944 OLFML3 olfactomedin like 3 protein-coding 41 0.004888
-56945 MRPS22 mitochondrial ribosomal protein S22 protein-coding 52 0.006199
-56946 EMSY EMSY, BRCA2 interacting transcriptional repressor protein-coding 115 0.01371
-56947 MFF mitochondrial fission factor protein-coding 56 0.006676
-56948 SDR39U1 short chain dehydrogenase/reductase family 39U member 1 protein-coding 34 0.004053
-56949 XAB2 XPA binding protein 2 protein-coding 112 0.01335
-56950 SMYD2 SET and MYND domain containing 2 protein-coding 42 0.005007
-56951 C5orf15 chromosome 5 open reading frame 15 protein-coding 29 0.003457
-56952 PRTFDC1 phosphoribosyl transferase domain containing 1 protein-coding 32 0.003815
-56953 NT5M 5',3'-nucleotidase, mitochondrial protein-coding 27 0.003219
-56954 NIT2 nitrilase family member 2 protein-coding 42 0.005007
-56955 MEPE matrix extracellular phosphoglycoprotein protein-coding 85 0.01013
-56956 LHX9 LIM homeobox 9 protein-coding 77 0.00918
-56957 OTUD7B OTU deubiquitinase 7B protein-coding 116 0.01383
-56961 SHD Src homology 2 domain containing transforming protein D protein-coding 40 0.004769
-56963 RGMA repulsive guidance molecule BMP co-receptor a protein-coding 51 0.00608
-56964 WDR93 WD repeat domain 93 protein-coding 71 0.008464
-56965 PARP6 poly(ADP-ribose) polymerase family member 6 protein-coding 71 0.008464
-56970 ATXN7L3 ataxin 7 like 3 protein-coding 52 0.006199
-56971 CEACAM19 carcinoembryonic antigen related cell adhesion molecule 19 protein-coding 23 0.002742
-56975 FAM20C FAM20C, golgi associated secretory pathway kinase protein-coding 39 0.004649
-56977 STOX2 storkhead box 2 protein-coding 97 0.01156
-56978 PRDM8 PR/SET domain 8 protein-coding 54 0.006438
-56979 PRDM9 PR/SET domain 9 protein-coding 366 0.04363
-56980 PRDM10 PR/SET domain 10 protein-coding 137 0.01633
-56981 PRDM11 PR/SET domain 11 protein-coding 81 0.009657
-56983 POGLUT1 protein O-glucosyltransferase 1 protein-coding 64 0.00763
-56984 PSMG2 proteasome assembly chaperone 2 protein-coding 20 0.002384
-56985 ADPRM ADP-ribose/CDP-alcohol diphosphatase, manganese dependent protein-coding 37 0.004411
-56986 DTWD1 DTW domain containing 1 protein-coding 45 0.005365
-56987 BBX BBX, HMG-box containing protein-coding 126 0.01502
-56990 CDC42SE2 CDC42 small effector 2 protein-coding 3 0.0003577
-56992 KIF15 kinesin family member 15 protein-coding 125 0.0149
-56993 TOMM22 translocase of outer mitochondrial membrane 22 protein-coding 16 0.001907
-56994 CHPT1 choline phosphotransferase 1 protein-coding 37 0.004411
-56995 TULP4 tubby like protein 4 protein-coding 175 0.02086
-56996 SLC12A9 solute carrier family 12 member 9 protein-coding 104 0.0124
-56997 COQ8A coenzyme Q8A protein-coding 83 0.009895
-56998 CTNNBIP1 catenin beta interacting protein 1 protein-coding 9 0.001073
-56999 ADAMTS9 ADAM metallopeptidase with thrombospondin type 1 motif 9 protein-coding 229 0.0273
-57000 GSN-AS1 GSN antisense RNA 1 ncRNA 6 0.0007153
-57001 SDHAF3 succinate dehydrogenase complex assembly factor 3 protein-coding 23 0.002742
-57002 YAE1D1 Yae1 domain containing 1 protein-coding 26 0.0031
-57003 CCDC47 coiled-coil domain containing 47 protein-coding 57 0.006795
-57007 ACKR3 atypical chemokine receptor 3 protein-coding 61 0.007272
-57010 CABP4 calcium binding protein 4 protein-coding 45 0.005365
-57016 AKR1B10 aldo-keto reductase family 1 member B10 protein-coding 70 0.008345
-57017 COQ9 coenzyme Q9 protein-coding 35 0.004173
-57018 CCNL1 cyclin L1 protein-coding 63 0.007511
-57019 CIAPIN1 cytokine induced apoptosis inhibitor 1 protein-coding 27 0.003219
-57020 VPS35L VPS35 endosomal protein sorting factor like protein-coding 101 0.01204
-57026 PDXP pyridoxal phosphatase protein-coding 17 0.002027
-57030 SLC17A7 solute carrier family 17 member 7 protein-coding 68 0.008107
-57035 RSRP1 arginine and serine rich protein 1 protein-coding 27 0.003219
-57037 ANKMY2 ankyrin repeat and MYND domain containing 2 protein-coding 45 0.005365
-57038 RARS2 arginyl-tRNA synthetase 2, mitochondrial protein-coding 82 0.009776
-57045 TWSG1 twisted gastrulation BMP signaling modulator 1 protein-coding 25 0.00298
-57047 PLSCR2 phospholipid scramblase 2 protein-coding 58 0.006915
-57050 UTP3 UTP3, small subunit processome component protein-coding 44 0.005246
-57053 CHRNA10 cholinergic receptor nicotinic alpha 10 subunit protein-coding 48 0.005722
+28490 IGHD5-18 immunoglobulin heavy diversity 5-18 other 1 0.0001191
+28491 IGHD5-12 immunoglobulin heavy diversity 5-12 other 2 0.0002382
+28494 IGHD4-17 immunoglobulin heavy diversity 4-17 other 2 0.0002382
+28497 IGHD3-22 immunoglobulin heavy diversity 3-22 other 1 0.0001191
+28499 IGHD3-10 immunoglobulin heavy diversity 3-10 other 2 0.0002382
+28500 IGHD3-9 immunoglobulin heavy diversity 3-9 other 3 0.0003573
+28502 IGHD2-21 immunoglobulin heavy diversity 2-21 other 3 0.0003573
+28503 IGHD2-15 immunoglobulin heavy diversity 2-15 other 1 0.0001191
+28504 IGHD2-8 immunoglobulin heavy diversity 2-8 other 2 0.0002382
+28506 IGHD1-26 immunoglobulin heavy diversity 1-26 other 1 0.0001191
+28507 IGHD1-20 immunoglobulin heavy diversity 1-20 other 1 0.0001191
+28509 IGHD1-7 immunoglobulin heavy diversity 1-7 other 2 0.0002382
+28511 NKIRAS2 NFKB inhibitor interacting Ras like 2 protein-coding 31 0.003692
+28512 NKIRAS1 NFKB inhibitor interacting Ras like 1 protein-coding 27 0.003215
+28513 CDH19 cadherin 19 protein-coding 185 0.02203
+28514 DLL1 delta like canonical Notch ligand 1 protein-coding 94 0.01119
+28516 TRDV3 T cell receptor delta variable 3 other 4 0.0004764
+28517 TRDV2 T cell receptor delta variable 2 other 12 0.001429
+28518 TRDV1 T cell receptor delta variable 1 other 22 0.00262
+28519 TRDJ4 T cell receptor delta joining 4 other 1 0.0001191
+28520 TRDJ3 T cell receptor delta joining 3 other 6 0.0007145
+28521 TRDJ2 T cell receptor delta joining 2 other 2 0.0002382
+28522 TRDJ1 T cell receptor delta joining 1 other 4 0.0004764
+28526 TRDC T cell receptor delta constant other 15 0.001786
+28557 TRBV30 T cell receptor beta variable 30 (gene/pseudogene) other 19 0.002263
+28558 TRBV29-1 T cell receptor beta variable 29-1 other 19 0.002263
+28559 TRBV28 T cell receptor beta variable 28 other 15 0.001786
+28560 TRBV27 T cell receptor beta variable 27 other 29 0.003454
+28563 TRBV24-1 T cell receptor beta variable 24-1 other 28 0.003335
+28567 TRBV20-1 T cell receptor beta variable 20-1 other 22 0.00262
+28568 TRBV19 T cell receptor beta variable 19 other 31 0.003692
+28581 TRBV11-2 T cell receptor beta variable 11-2 other 32 0.003811
+28582 TRBV11-1 T cell receptor beta variable 11-1 other 15 0.001786
+28584 TRBV10-2 T cell receptor beta variable 10-2 other 27 0.003215
+28585 TRBV10-1 T cell receptor beta variable 10-1(gene/pseudogene) other 27 0.003215
+28586 TRBV9 T cell receptor beta variable 9 other 22 0.00262
+28590 TRBV7-8 T cell receptor beta variable 7-8 other 36 0.004287
+28591 TRBV7-7 T cell receptor beta variable 7-7 other 15 0.001786
+28592 TRBV7-6 T cell receptor beta variable 7-6 other 23 0.002739
+28594 TRBV7-4 T cell receptor beta variable 7-4 (gene/pseudogene) other 28 0.003335
+28595 TRBV7-3 T cell receptor beta variable 7-3 other 19 0.002263
+28597 TRBV7-1 T cell receptor beta variable 7-1 (non-functional) pseudo 29 0.003454
+28598 TRBV6-9 T cell receptor beta variable 6-9 other 28 0.003335
+28599 TRBV6-8 T cell receptor beta variable 6-8 other 25 0.002977
+28600 TRBV6-7 T cell receptor beta variable 6-7 (non-functional) pseudo 25 0.002977
+28601 TRBV6-6 T cell receptor beta variable 6-6 other 31 0.003692
+28602 TRBV6-5 T cell receptor beta variable 6-5 other 26 0.003096
+28603 TRBV6-4 T cell receptor beta variable 6-4 other 28 0.003335
+28606 TRBV6-1 T cell receptor beta variable 6-1 other 30 0.003573
+28608 TRBV5-7 T cell receptor beta variable 5-7 (non-functional) other 26 0.003096
+28609 TRBV5-6 T cell receptor beta variable 5-6 other 22 0.00262
+28610 TRBV5-5 T cell receptor beta variable 5-5 other 29 0.003454
+28611 TRBV5-4 T cell receptor beta variable 5-4 other 29 0.003454
+28614 TRBV5-1 T cell receptor beta variable 5-1 other 26 0.003096
+28616 TRBV4-2 T cell receptor beta variable 4-2 other 28 0.003335
+28617 TRBV4-1 T cell receptor beta variable 4-1 other 28 0.003335
+28619 TRBV3-1 T cell receptor beta variable 3-1 other 28 0.003335
+28620 TRBV2 T cell receptor beta variable 2 other 21 0.002501
+28622 TRBJ2-7 T cell receptor beta joining 2-7 other 2 0.0002382
+28623 TRBJ2-6 T cell receptor beta joining 2-6 other 4 0.0004764
+28624 TRBJ2-5 T cell receptor beta joining 2-5 other 3 0.0003573
+28625 TRBJ2-4 T cell receptor beta joining 2-4 other 2 0.0002382
+28626 TRBJ2-3 T cell receptor beta joining 2-3 other 2 0.0002382
+28627 TRBJ2-2P T cell receptor beta joining 2-2P (non-functional) pseudo 2 0.0002382
+28628 TRBJ2-2 T cell receptor beta joining 2-2 other 4 0.0004764
+28629 TRBJ2-1 T cell receptor beta joining 2-1 other 3 0.0003573
+28638 TRBC2 T cell receptor beta constant 2 other 52 0.006193
+28640 TRAV41 T cell receptor alpha variable 41 other 15 0.001786
+28641 TRAV40 T cell receptor alpha variable 40 other 17 0.002025
+28642 TRAV39 T cell receptor alpha variable 39 other 10 0.001191
+28643 TRAV38-2DV8 T cell receptor alpha variable 38-2/delta variable 8 other 7 0.0008336
+28644 TRAV38-1 T cell receptor alpha variable 38-1 other 11 0.00131
+28646 TRAV36DV7 T cell receptor alpha variable 36/delta variable 7 other 12 0.001429
+28647 TRAV35 T cell receptor alpha variable 35 other 14 0.001667
+28648 TRAV34 T cell receptor alpha variable 34 other 14 0.001667
+28652 TRAV30 T cell receptor alpha variable 30 other 12 0.001429
+28653 TRAV29DV5 T cell receptor alpha variable 29/delta variable 5 (gene/pseudogene) other 11 0.00131
+28655 TRAV27 T cell receptor alpha variable 27 other 21 0.002501
+28656 TRAV26-2 T cell receptor alpha variable 26-2 other 12 0.001429
+28657 TRAV26-1 T cell receptor alpha variable 26-1 other 28 0.003335
+28658 TRAV25 T cell receptor alpha variable 25 other 12 0.001429
+28659 TRAV24 T cell receptor alpha variable 24 other 13 0.001548
+28660 TRAV23DV6 T cell receptor alpha variable 23/delta variable 6 other 12 0.001429
+28661 TRAV22 T cell receptor alpha variable 22 other 21 0.002501
+28662 TRAV21 T cell receptor alpha variable 21 other 19 0.002263
+28663 TRAV20 T cell receptor alpha variable 20 other 17 0.002025
+28664 TRAV19 T cell receptor alpha variable 19 other 25 0.002977
+28665 TRAV18 T cell receptor alpha variable 18 other 20 0.002382
+28666 TRAV17 T cell receptor alpha variable 17 other 18 0.002144
+28667 TRAV16 T cell receptor alpha variable 16 other 14 0.001667
+28669 TRAV14DV4 T cell receptor alpha variable 14/delta variable 4 other 19 0.002263
+28670 TRAV13-2 T cell receptor alpha variable 13-2 other 18 0.002144
+28671 TRAV13-1 T cell receptor alpha variable 13-1 other 21 0.002501
+28672 TRAV12-3 T cell receptor alpha variable 12-3 other 22 0.00262
+28673 TRAV12-2 T cell receptor alpha variable 12-2 other 21 0.002501
+28674 TRAV12-1 T cell receptor alpha variable 12-1 other 26 0.003096
+28676 TRAV10 T cell receptor alpha variable 10 other 19 0.002263
+28677 TRAV9-2 T cell receptor alpha variable 9-2 other 16 0.001905
+28678 TRAV9-1 T cell receptor alpha variable 9-1 other 19 0.002263
+28679 TRAV8-7 T cell receptor alpha variable 8-7 (non-functional) other 14 0.001667
+28680 TRAV8-6 T cell receptor alpha variable 8-6 other 23 0.002739
+28682 TRAV8-4 T cell receptor alpha variable 8-4 other 22 0.00262
+28683 TRAV8-3 T cell receptor alpha variable 8-3 other 13 0.001548
+28684 TRAV8-2 T cell receptor alpha variable 8-2 other 23 0.002739
+28685 TRAV8-1 T cell receptor alpha variable 8-1 other 23 0.002739
+28686 TRAV7 T cell receptor alpha variable 7 other 19 0.002263
+28688 TRAV5 T cell receptor alpha variable 5 other 18 0.002144
+28689 TRAV4 T cell receptor alpha variable 4 other 13 0.001548
+28690 TRAV3 T cell receptor alpha variable 3 (gene/pseudogene) other 23 0.002739
+28691 TRAV2 T cell receptor alpha variable 2 other 11 0.00131
+28692 TRAV1-2 T cell receptor alpha variable 1-2 other 9 0.001072
+28693 TRAV1-1 T cell receptor alpha variable 1-1 other 22 0.00262
+28694 TRAJ61 T cell receptor alpha joining 61 (non-functional) other 1 0.0001191
+28696 TRAJ59 T cell receptor alpha joining 59 (non-functional) other 3 0.0003573
+28697 TRAJ58 T cell receptor alpha joining 58 (non-functional) other 1 0.0001191
+28698 TRAJ57 T cell receptor alpha joining 57 other 1 0.0001191
+28699 TRAJ56 T cell receptor alpha joining 56 other 1 0.0001191
+28701 TRAJ54 T cell receptor alpha joining 54 other 2 0.0002382
+28702 TRAJ53 T cell receptor alpha joining 53 other 1 0.0001191
+28705 TRAJ50 T cell receptor alpha joining 50 other 1 0.0001191
+28706 TRAJ49 T cell receptor alpha joining 49 other 1 0.0001191
+28707 TRAJ48 T cell receptor alpha joining 48 other 1 0.0001191
+28710 TRAJ45 T cell receptor alpha joining 45 other 7 0.0008336
+28712 TRAJ43 T cell receptor alpha joining 43 other 3 0.0003573
+28713 TRAJ42 T cell receptor alpha joining 42 other 3 0.0003573
+28714 TRAJ41 T cell receptor alpha joining 41 other 2 0.0002382
+28715 TRAJ40 T cell receptor alpha joining 40 other 2 0.0002382
+28717 TRAJ38 T cell receptor alpha joining 38 other 2 0.0002382
+28718 TRAJ37 T cell receptor alpha joining 37 other 1 0.0001191
+28719 TRAJ36 T cell receptor alpha joining 36 other 2 0.0002382
+28720 TRAJ35 T cell receptor alpha joining 35 (non-functional) other 2 0.0002382
+28721 TRAJ34 T cell receptor alpha joining 34 other 1 0.0001191
+28722 TRAJ33 T cell receptor alpha joining 33 other 1 0.0001191
+28724 TRAJ31 T cell receptor alpha joining 31 other 4 0.0004764
+28725 TRAJ30 T cell receptor alpha joining 30 other 1 0.0001191
+28726 TRAJ29 T cell receptor alpha joining 29 other 2 0.0002382
+28727 TRAJ28 T cell receptor alpha joining 28 other 1 0.0001191
+28728 TRAJ27 T cell receptor alpha joining 27 other 2 0.0002382
+28729 TRAJ26 T cell receptor alpha joining 26 other 3 0.0003573
+28730 TRAJ25 T cell receptor alpha joining 25 (non-functional) other 3 0.0003573
+28732 TRAJ23 T cell receptor alpha joining 23 other 8 0.0009527
+28733 TRAJ22 T cell receptor alpha joining 22 other 2 0.0002382
+28734 TRAJ21 T cell receptor alpha joining 21 other 2 0.0002382
+28735 TRAJ20 T cell receptor alpha joining 20 other 1 0.0001191
+28736 TRAJ19 T cell receptor alpha joining 19 (non-functional) other 2 0.0002382
+28737 TRAJ18 T cell receptor alpha joining 18 other 3 0.0003573
+28739 TRAJ16 T cell receptor alpha joining 16 other 1 0.0001191
+28741 TRAJ14 T cell receptor alpha joining 14 other 3 0.0003573
+28742 TRAJ13 T cell receptor alpha joining 13 other 1 0.0001191
+28743 TRAJ12 T cell receptor alpha joining 12 other 2 0.0002382
+28745 TRAJ10 T cell receptor alpha joining 10 other 2 0.0002382
+28746 TRAJ9 T cell receptor alpha joining 9 other 3 0.0003573
+28747 TRAJ8 T cell receptor alpha joining 8 other 2 0.0002382
+28748 TRAJ7 T cell receptor alpha joining 7 other 2 0.0002382
+28753 TRAJ2 T cell receptor alpha joining 2 (non-functional) other 3 0.0003573
+28754 TRAJ1 T cell receptor alpha joining 1 (non-functional) other 4 0.0004764
+28755 TRAC T cell receptor alpha constant other 24 0.002858
+28770 IGLV11-55 immunoglobulin lambda variable 11-55 (non-functional) other 13 0.001548
+28772 IGLV10-54 immunoglobulin lambda variable 10-54 other 13 0.001548
+28773 IGLV9-49 immunoglobulin lambda variable 9-49 other 12 0.001429
+28774 IGLV8-61 immunoglobulin lambda variable 8-61 other 22 0.00262
+28775 IGLV7-46 immunoglobulin lambda variable 7-46 (gene/pseudogene) other 14 0.001667
+28776 IGLV7-43 immunoglobulin lambda variable 7-43 other 19 0.002263
+28778 IGLV6-57 immunoglobulin lambda variable 6-57 other 13 0.001548
+28779 IGLV5-52 immunoglobulin lambda variable 5-52 other 14 0.001667
+28780 IGLV5-48 immunoglobulin lambda variable 5-48 (non-functional) other 20 0.002382
+28781 IGLV5-45 immunoglobulin lambda variable 5-45 other 21 0.002501
+28783 IGLV5-37 immunoglobulin lambda variable 5-37 other 16 0.001905
+28784 IGLV4-69 immunoglobulin lambda variable 4-69 other 22 0.00262
+28785 IGLV4-60 immunoglobulin lambda variable 4-60 other 20 0.002382
+28786 IGLV4-3 immunoglobulin lambda variable 4-3 other 24 0.002858
+28787 IGLV3-32 immunoglobulin lambda variable 3-32 (non-functional) other 13 0.001548
+28791 IGLV3-27 immunoglobulin lambda variable 3-27 other 24 0.002858
+28793 IGLV3-25 immunoglobulin lambda variable 3-25 other 26 0.003096
+28795 IGLV3-22 immunoglobulin lambda variable 3-22 (gene/pseudogene) other 18 0.002144
+28796 IGLV3-21 immunoglobulin lambda variable 3-21 other 15 0.001786
+28797 IGLV3-19 immunoglobulin lambda variable 3-19 other 26 0.003096
+28799 IGLV3-16 immunoglobulin lambda variable 3-16 other 20 0.002382
+28802 IGLV3-12 immunoglobulin lambda variable 3-12 other 16 0.001905
+28803 IGLV3-10 immunoglobulin lambda variable 3-10 other 22 0.00262
+28804 IGLV3-9 immunoglobulin lambda variable 3-9 (gene/pseudogene) other 19 0.002263
+28809 IGLV3-1 immunoglobulin lambda variable 3-1 other 24 0.002858
+28811 IGLV2-33 immunoglobulin lambda variable 2-33 (non-functional) other 22 0.00262
+28813 IGLV2-23 immunoglobulin lambda variable 2-23 other 19 0.002263
+28814 IGLV2-18 immunoglobulin lambda variable 2-18 other 22 0.00262
+28815 IGLV2-14 immunoglobulin lambda variable 2-14 other 23 0.002739
+28816 IGLV2-11 immunoglobulin lambda variable 2-11 other 16 0.001905
+28817 IGLV2-8 immunoglobulin lambda variable 2-8 other 22 0.00262
+28820 IGLV1-51 immunoglobulin lambda variable 1-51 other 21 0.002501
+28821 IGLV1-50 immunoglobulin lambda variable 1-50 (non-functional) other 16 0.001905
+28822 IGLV1-47 immunoglobulin lambda variable 1-47 other 20 0.002382
+28823 IGLV1-44 immunoglobulin lambda variable 1-44 other 22 0.00262
+28825 IGLV1-40 immunoglobulin lambda variable 1-40 other 16 0.001905
+28826 IGLV1-36 immunoglobulin lambda variable 1-36 other 13 0.001548
+28829 IGLJ5 immunoglobulin lambda joining 5 (non-functional) other 2 0.0002382
+28830 IGLJ4 immunoglobulin lambda joining 4 (non-functional) other 1 0.0001191
+28831 IGLJ3 immunoglobulin lambda joining 3 other 6 0.0007145
+28834 IGLC7 immunoglobulin lambda constant 7 other 200 0.02382
+28869 IGKV6D-41 immunoglobulin kappa variable 6D-41 (non-functional) other 42 0.005002
+28870 IGKV6D-21 immunoglobulin kappa variable 6D-21 (non-functional) other 34 0.004049
+28874 IGKV3D-20 immunoglobulin kappa variable 3D-20 other 43 0.005121
+28875 IGKV3D-15 immunoglobulin kappa variable 3D-15 (gene/pseudogene) other 35 0.004168
+28876 IGKV3D-11 immunoglobulin kappa variable 3D-11 other 49 0.005835
+28881 IGKV2D-30 immunoglobulin kappa variable 2D-30 other 42 0.005002
+28882 IGKV2D-29 immunoglobulin kappa variable 2D-29 other 32 0.003811
+28883 IGKV2D-28 immunoglobulin kappa variable 2D-28 other 13 0.001548
+28885 IGKV2D-24 immunoglobulin kappa variable 2D-24 (non-functional) other 47 0.005597
+28891 IGKV1D-43 immunoglobulin kappa variable 1D-43 other 54 0.006431
+28892 IGKV1D-42 immunoglobulin kappa variable 1D-42 (non-functional) other 53 0.006312
+28893 IGKV1D-39 immunoglobulin kappa variable 1D-39 other 3 0.0003573
+28896 IGKV1D-33 immunoglobulin kappa variable 1D-33 other 17 0.002025
+28900 IGKV1D-17 immunoglobulin kappa variable 1D-17 other 44 0.00524
+28901 IGKV1D-16 immunoglobulin kappa variable 1D-16 other 64 0.007622
+28902 IGKV1D-13 immunoglobulin kappa variable 1D-13 other 40 0.004764
+28903 IGKV1D-12 immunoglobulin kappa variable 1D-12 other 38 0.004525
+28904 IGKV1D-8 immunoglobulin kappa variable 1D-8 other 44 0.00524
+28906 IGKV6-21 immunoglobulin kappa variable 6-21 (non-functional) other 27 0.003215
+28907 IGKV5-2 immunoglobulin kappa variable 5-2 other 30 0.003573
+28908 IGKV4-1 immunoglobulin kappa variable 4-1 other 29 0.003454
+28912 IGKV3-20 immunoglobulin kappa variable 3-20 other 27 0.003215
+28913 IGKV3-15 immunoglobulin kappa variable 3-15 other 21 0.002501
+28914 IGKV3-11 immunoglobulin kappa variable 3-11 other 33 0.00393
+28915 IGKV3-7 immunoglobulin kappa variable 3-7 (non-functional) other 38 0.004525
+28919 IGKV2-30 immunoglobulin kappa variable 2-30 other 37 0.004406
+28921 IGKV2-28 immunoglobulin kappa variable 2-28 other 16 0.001905
+28923 IGKV2-24 immunoglobulin kappa variable 2-24 other 42 0.005002
+28930 IGKV1-39 immunoglobulin kappa variable 1-39 (gene/pseudogene) other 3 0.0003573
+28931 IGKV1-37 immunoglobulin kappa variable 1-37 (non-functional) other 3 0.0003573
+28933 IGKV1-33 immunoglobulin kappa variable 1-33 other 13 0.001548
+28935 IGKV1-27 immunoglobulin kappa variable 1-27 other 33 0.00393
+28937 IGKV1-17 immunoglobulin kappa variable 1-17 other 49 0.005835
+28938 IGKV1-16 immunoglobulin kappa variable 1-16 other 50 0.005955
+28940 IGKV1-12 immunoglobulin kappa variable 1-12 other 41 0.004883
+28941 IGKV1-9 immunoglobulin kappa variable 1-9 other 37 0.004406
+28942 IGKV1-8 immunoglobulin kappa variable 1-8 other 26 0.003096
+28943 IGKV1-6 immunoglobulin kappa variable 1-6 other 39 0.004645
+28946 IGKJ5 immunoglobulin kappa joining 5 other 3 0.0003573
+28947 IGKJ4 immunoglobulin kappa joining 4 other 11 0.00131
+28948 IGKJ3 immunoglobulin kappa joining 3 other 3 0.0003573
+28949 IGKJ2 immunoglobulin kappa joining 2 other 3 0.0003573
+28950 IGKJ1 immunoglobulin kappa joining 1 other 2 0.0002382
+28951 TRIB2 tribbles pseudokinase 2 protein-coding 51 0.006074
+28952 CCDC22 coiled-coil domain containing 22 protein-coding 62 0.007384
+28954 REM1 RRAD and GEM like GTPase 1 protein-coding 62 0.007384
+28955 DEXI Dexi homolog protein-coding 4 0.0004764
+28956 LAMTOR2 late endosomal/lysosomal adaptor, MAPK and MTOR activator 2 protein-coding 9 0.001072
+28957 MRPS28 mitochondrial ribosomal protein S28 protein-coding 73 0.008694
+28958 COA3 cytochrome c oxidase assembly factor 3 protein-coding 6 0.0007145
+28959 TMEM176B transmembrane protein 176B protein-coding 51 0.006074
+28960 DCPS decapping enzyme, scavenger protein-coding 39 0.004645
+28962 OSTM1 osteopetrosis associated transmembrane protein 1 protein-coding 30 0.003573
+28964 GIT1 GIT ArfGAP 1 protein-coding 59 0.007026
+28965 SLC27A6 solute carrier family 27 member 6 protein-coding 116 0.01381
+28966 SNX24 sorting nexin 24 protein-coding 22 0.00262
+28968 SLC6A16 solute carrier family 6 member 16 protein-coding 73 0.008694
+28969 BZW2 basic leucine zipper and W2 domains 2 protein-coding 45 0.005359
+28970 C11orf54 chromosome 11 open reading frame 54 protein-coding 29 0.003454
+28971 AAMDC adipogenesis associated Mth938 domain containing protein-coding 11 0.00131
+28972 SPCS1 signal peptidase complex subunit 1 protein-coding 20 0.002382
+28973 MRPS18B mitochondrial ribosomal protein S18B protein-coding 29 0.003454
+28974 C19orf53 chromosome 19 open reading frame 53 protein-coding 13 0.001548
+28976 ACAD9 acyl-CoA dehydrogenase family member 9 protein-coding 56 0.006669
+28977 MRPL42 mitochondrial ribosomal protein L42 protein-coding 14 0.001667
+28978 TMEM14A transmembrane protein 14A protein-coding 10 0.001191
+28981 IFT81 intraflagellar transport 81 protein-coding 87 0.01036
+28982 FLVCR1 feline leukemia virus subgroup C cellular receptor 1 protein-coding 40 0.004764
+28983 TMPRSS11E transmembrane serine protease 11E protein-coding 79 0.009408
+28984 RGCC regulator of cell cycle protein-coding 6 0.0007145
+28985 MCTS1 MCTS1, re-initiation and release factor protein-coding 37 0.004406
+28986 MAGEH1 MAGE family member H1 protein-coding 41 0.004883
+28987 NOB1 NIN1 (RPN12) binding protein 1 homolog protein-coding 39 0.004645
+28988 DBNL drebrin like protein-coding 47 0.005597
+28989 NTMT1 N-terminal Xaa-Pro-Lys N-methyltransferase 1 protein-coding 29 0.003454
+28990 ASTE1 asteroid homolog 1 protein-coding 76 0.009051
+28991 COMMD5 COMM domain containing 5 protein-coding 25 0.002977
+28992 MACROD1 MACRO domain containing 1 protein-coding 20 0.002382
+28996 HIPK2 homeodomain interacting protein kinase 2 protein-coding 117 0.01393
+28998 MRPL13 mitochondrial ribosomal protein L13 protein-coding 37 0.004406
+28999 KLF15 Kruppel like factor 15 protein-coding 65 0.007741
+29015 SLC43A3 solute carrier family 43 member 3 protein-coding 61 0.007264
+29028 ATAD2 ATPase family, AAA domain containing 2 protein-coding 199 0.0237
+29035 C16orf72 chromosome 16 open reading frame 72 protein-coding 31 0.003692
+29058 TMEM230 transmembrane protein 230 protein-coding 17 0.002025
+29062 WDR91 WD repeat domain 91 protein-coding 80 0.009527
+29063 ZCCHC4 zinc finger CCHC-type containing 4 protein-coding 47 0.005597
+29066 ZC3H7A zinc finger CCCH-type containing 7A protein-coding 95 0.01131
+29068 ZBTB44 zinc finger and BTB domain containing 44 protein-coding 38 0.004525
+29070 CCDC113 coiled-coil domain containing 113 protein-coding 53 0.006312
+29071 C1GALT1C1 C1GALT1 specific chaperone 1 protein-coding 56 0.006669
+29072 SETD2 SET domain containing 2 protein-coding 356 0.0424
+29074 MRPL18 mitochondrial ribosomal protein L18 protein-coding 22 0.00262
+29078 NDUFAF4 NADH:ubiquinone oxidoreductase complex assembly factor 4 protein-coding 14 0.001667
+29079 MED4 mediator complex subunit 4 protein-coding 23 0.002739
+29080 CCDC59 coiled-coil domain containing 59 protein-coding 41 0.004883
+29081 METTL5 methyltransferase like 5 protein-coding 21 0.002501
+29082 CHMP4A charged multivesicular body protein 4A protein-coding 52 0.006193
+29083 GTPBP8 GTP binding protein 8 (putative) protein-coding 35 0.004168
+29085 PHPT1 phosphohistidine phosphatase 1 protein-coding 15 0.001786
+29086 BABAM1 BRISC and BRCA1 A complex member 1 protein-coding 27 0.003215
+29087 THYN1 thymocyte nuclear protein 1 protein-coding 42 0.005002
+29088 MRPL15 mitochondrial ribosomal protein L15 protein-coding 34 0.004049
+29089 UBE2T ubiquitin conjugating enzyme E2 T protein-coding 16 0.001905
+29090 TIMM21 translocase of inner mitochondrial membrane 21 protein-coding 32 0.003811
+29091 STXBP6 syntaxin binding protein 6 protein-coding 27 0.003215
+29093 MRPL22 mitochondrial ribosomal protein L22 protein-coding 27 0.003215
+29094 LGALSL galectin like protein-coding 43 0.005121
+29095 ORMDL2 ORMDL sphingolipid biosynthesis regulator 2 protein-coding 8 0.0009527
+29097 CNIH4 cornichon family AMPA receptor auxiliary protein 4 protein-coding 29 0.003454
+29098 RANGRF RAN guanine nucleotide release factor protein-coding 12 0.001429
+29099 COMMD9 COMM domain containing 9 protein-coding 18 0.002144
+29100 TMEM208 transmembrane protein 208 protein-coding 17 0.002025
+29101 SSU72 SSU72 homolog, RNA polymerase II CTD phosphatase protein-coding 22 0.00262
+29102 DROSHA drosha ribonuclease III protein-coding 166 0.01977
+29103 DNAJC15 DnaJ heat shock protein family (Hsp40) member C15 protein-coding 19 0.002263
+29104 N6AMT1 N-6 adenine-specific DNA methyltransferase 1 protein-coding 33 0.00393
+29105 CFAP20 cilia and flagella associated protein 20 protein-coding 24 0.002858
+29106 SCG3 secretogranin III protein-coding 65 0.007741
+29107 NXT1 nuclear transport factor 2 like export factor 1 protein-coding 18 0.002144
+29108 PYCARD PYD and CARD domain containing protein-coding 21 0.002501
+29109 FHOD1 formin homology 2 domain containing 1 protein-coding 115 0.0137
+29110 TBK1 TANK binding kinase 1 protein-coding 83 0.009884
+29113 C6orf15 chromosome 6 open reading frame 15 protein-coding 46 0.005478
+29114 TAGLN3 transgelin 3 protein-coding 22 0.00262
+29115 SAP30BP SAP30 binding protein protein-coding 37 0.004406
+29116 MYLIP myosin regulatory light chain interacting protein protein-coding 50 0.005955
+29117 BRD7 bromodomain containing 7 protein-coding 95 0.01131
+29118 DDX25 DEAD-box helicase 25 protein-coding 55 0.00655
+29119 CTNNA3 catenin alpha 3 protein-coding 223 0.02656
+29121 CLEC2D C-type lectin domain family 2 member D protein-coding 21 0.002501
+29122 PRSS50 serine protease 50 protein-coding 40 0.004764
+29123 ANKRD11 ankyrin repeat domain 11 protein-coding 265 0.03156
+29124 LGALS13 galectin 13 protein-coding 50 0.005955
+29125 C11orf21 chromosome 11 open reading frame 21 protein-coding 7 0.0008336
+29126 CD274 CD274 molecule protein-coding 30 0.003573
+29127 RACGAP1 Rac GTPase activating protein 1 protein-coding 75 0.008932
+29128 UHRF1 ubiquitin like with PHD and ring finger domains 1 protein-coding 93 0.01108
+29760 BLNK B cell linker protein-coding 61 0.007264
+29761 USP25 ubiquitin specific peptidase 25 protein-coding 188 0.02239
+29763 PACSIN3 protein kinase C and casein kinase substrate in neurons 3 protein-coding 49 0.005835
+29765 TMOD4 tropomodulin 4 protein-coding 28 0.003335
+29766 TMOD3 tropomodulin 3 protein-coding 38 0.004525
+29767 TMOD2 tropomodulin 2 protein-coding 33 0.00393
+29774 POM121L9P POM121 transmembrane nucleoporin like 9, pseudogene pseudo 70 0.008336
+29775 CARD10 caspase recruitment domain family member 10 protein-coding 85 0.01012
+29777 ABT1 activator of basal transcription 1 protein-coding 51 0.006074
+29780 PARVB parvin beta protein-coding 40 0.004764
+29781 NCAPH2 non-SMC condensin II complex subunit H2 protein-coding 65 0.007741
+29785 CYP2S1 cytochrome P450 family 2 subfamily S member 1 protein-coding 63 0.007503
+29789 OLA1 Obg like ATPase 1 protein-coding 42 0.005002
+29796 UQCR10 ubiquinol-cytochrome c reductase, complex III subunit X protein-coding 14 0.001667
+29798 C2orf27A chromosome 2 open reading frame 27A protein-coding 2 0.0002382
+29799 YPEL1 yippee like 1 protein-coding 20 0.002382
+29800 ZDHHC1 zinc finger DHHC-type containing 1 protein-coding 38 0.004525
+29801 ZDHHC8 zinc finger DHHC-type containing 8 protein-coding 92 0.01096
+29802 VPREB3 V-set pre-B cell surrogate light chain 3 protein-coding 10 0.001191
+29803 REPIN1 replication initiator 1 protein-coding 60 0.007145
+29841 GRHL1 grainyhead like transcription factor 1 protein-coding 93 0.01108
+29842 TFCP2L1 transcription factor CP2 like 1 protein-coding 54 0.006431
+29843 SENP1 SUMO specific peptidase 1 protein-coding 55 0.00655
+29844 TFPT TCF3 fusion partner protein-coding 36 0.004287
+29850 TRPM5 transient receptor potential cation channel subfamily M member 5 protein-coding 112 0.01334
+29851 ICOS inducible T cell costimulator protein-coding 32 0.003811
+29855 UBN1 ubinuclein 1 protein-coding 109 0.01298
+29880 ALG5 ALG5, dolichyl-phosphate beta-glucosyltransferase protein-coding 44 0.00524
+29881 NPC1L1 NPC1 like intracellular cholesterol transporter 1 protein-coding 170 0.02025
+29882 ANAPC2 anaphase promoting complex subunit 2 protein-coding 165 0.01965
+29883 CNOT7 CCR4-NOT transcription complex subunit 7 protein-coding 29 0.003454
+29886 SNX8 sorting nexin 8 protein-coding 48 0.005716
+29887 SNX10 sorting nexin 10 protein-coding 32 0.003811
+29888 STRN4 striatin 4 protein-coding 75 0.008932
+29889 GNL2 G protein nucleolar 2 protein-coding 91 0.01084
+29890 RBM15B RNA binding motif protein 15B protein-coding 78 0.009289
+29893 PSMC3IP PSMC3 interacting protein protein-coding 26 0.003096
+29894 CPSF1 cleavage and polyadenylation specific factor 1 protein-coding 158 0.01882
+29895 MYLPF myosin light chain, phosphorylatable, fast skeletal muscle protein-coding 19 0.002263
+29896 TRA2A transformer 2 alpha homolog protein-coding 55 0.00655
+29899 GPSM2 G protein signaling modulator 2 protein-coding 90 0.01072
+29901 SAC3D1 SAC3 domain containing 1 protein-coding 21 0.002501
+29902 FAM216A family with sequence similarity 216 member A protein-coding 25 0.002977
+29903 CCDC106 coiled-coil domain containing 106 protein-coding 45 0.005359
+29904 EEF2K eukaryotic elongation factor 2 kinase protein-coding 92 0.01096
+29906 ST8SIA5 ST8 alpha-N-acetyl-neuraminide alpha-2,8-sialyltransferase 5 protein-coding 77 0.00917
+29907 SNX15 sorting nexin 15 protein-coding 42 0.005002
+29909 GPR171 G protein-coupled receptor 171 protein-coding 44 0.00524
+29911 HOOK2 hook microtubule tethering protein 2 protein-coding 183 0.02179
+29914 UBIAD1 UbiA prenyltransferase domain containing 1 protein-coding 45 0.005359
+29915 HCFC2 host cell factor C2 protein-coding 112 0.01334
+29916 SNX11 sorting nexin 11 protein-coding 27 0.003215
+29919 RMC1 regulator of MON1-CCZ1 protein-coding 65 0.007741
+29920 PYCR2 pyrroline-5-carboxylate reductase 2 protein-coding 16 0.001905
+29922 NME7 NME/NM23 family member 7 protein-coding 50 0.005955
+29923 HILPDA hypoxia inducible lipid droplet associated protein-coding 3 0.0003573
+29924 EPN1 epsin 1 protein-coding 82 0.009765
+29925 GMPPB GDP-mannose pyrophosphorylase B protein-coding 34 0.004049
+29926 GMPPA GDP-mannose pyrophosphorylase A protein-coding 49 0.005835
+29927 SEC61A1 Sec61 translocon alpha 1 subunit protein-coding 62 0.007384
+29928 TIMM22 translocase of inner mitochondrial membrane 22 protein-coding 20 0.002382
+29929 ALG6 ALG6, alpha-1,3-glucosyltransferase protein-coding 54 0.006431
+29930 PCDHB1 protocadherin beta 1 protein-coding 146 0.01739
+29933 GPR132 G protein-coupled receptor 132 protein-coding 61 0.007264
+29934 SNX12 sorting nexin 12 protein-coding 22 0.00262
+29935 RPA4 replication protein A4 protein-coding 57 0.006788
+29937 NENF neudesin neurotrophic factor protein-coding 13 0.001548
+29940 DSE dermatan sulfate epimerase protein-coding 114 0.01358
+29941 PKN3 protein kinase N3 protein-coding 89 0.0106
+29942 PURG purine rich element binding protein G protein-coding 52 0.006193
+29943 PADI1 peptidyl arginine deiminase 1 protein-coding 85 0.01012
+29944 PNMA3 PNMA family member 3 protein-coding 74 0.008813
+29945 ANAPC4 anaphase promoting complex subunit 4 protein-coding 66 0.00786
+29946 SERTAD3 SERTA domain containing 3 protein-coding 25 0.002977
+29947 DNMT3L DNA methyltransferase 3 like protein-coding 72 0.008574
+29948 OSGIN1 oxidative stress induced growth inhibitor 1 protein-coding 49 0.005835
+29949 IL19 interleukin 19 protein-coding 31 0.003692
+29950 SERTAD1 SERTA domain containing 1 protein-coding 23 0.002739
+29951 PDZRN4 PDZ domain containing ring finger 4 protein-coding 191 0.02275
+29952 DPP7 dipeptidyl peptidase 7 protein-coding 37 0.004406
+29953 TRHDE thyrotropin releasing hormone degrading enzyme protein-coding 250 0.02977
+29954 POMT2 protein O-mannosyltransferase 2 protein-coding 63 0.007503
+29956 CERS2 ceramide synthase 2 protein-coding 48 0.005716
+29957 SLC25A24 solute carrier family 25 member 24 protein-coding 46 0.005478
+29958 DMGDH dimethylglycine dehydrogenase protein-coding 93 0.01108
+29959 NRBP1 nuclear receptor binding protein 1 protein-coding 63 0.007503
+29960 MRM2 mitochondrial rRNA methyltransferase 2 protein-coding 34 0.004049
+29964 PRICKLE4 prickle planar cell polarity protein 4 protein-coding 42 0.005002
+29965 CDIP1 cell death inducing p53 target 1 protein-coding 8 0.0009527
+29966 STRN3 striatin 3 protein-coding 77 0.00917
+29967 LRP12 LDL receptor related protein 12 protein-coding 222 0.02644
+29968 PSAT1 phosphoserine aminotransferase 1 protein-coding 46 0.005478
+29969 MDFIC MyoD family inhibitor domain containing protein-coding 42 0.005002
+29974 A1CF APOBEC1 complementation factor protein-coding 112 0.01334
+29978 UBQLN2 ubiquilin 2 protein-coding 97 0.01155
+29979 UBQLN1 ubiquilin 1 protein-coding 59 0.007026
+29980 DONSON downstream neighbor of SON protein-coding 44 0.00524
+29982 NRBF2 nuclear receptor binding factor 2 protein-coding 27 0.003215
+29984 RHOD ras homolog family member D protein-coding 18 0.002144
+29985 SLC39A3 solute carrier family 39 member 3 protein-coding 37 0.004406
+29986 SLC39A2 solute carrier family 39 member 2 protein-coding 34 0.004049
+29988 SLC2A8 solute carrier family 2 member 8 protein-coding 33 0.00393
+29989 OBP2B odorant binding protein 2B protein-coding 17 0.002025
+29990 PILRB paired immunoglobin-like type 2 receptor beta protein-coding 21 0.002501
+29991 OBP2A odorant binding protein 2A protein-coding 28 0.003335
+29992 PILRA paired immunoglobin like type 2 receptor alpha protein-coding 29 0.003454
+29993 PACSIN1 protein kinase C and casein kinase substrate in neurons 1 protein-coding 50 0.005955
+29994 BAZ2B bromodomain adjacent to zinc finger domain 2B protein-coding 238 0.02834
+29995 LMCD1 LIM and cysteine rich domains 1 protein-coding 59 0.007026
+29997 NOP53 NOP53 ribosome biogenesis factor protein-coding 47 0.005597
+29998 BICRA BRD4 interacting chromatin remodeling complex associated protein protein-coding 83 0.009884
+29999 FSCN3 fascin actin-bundling protein 3 protein-coding 82 0.009765
+30000 TNPO2 transportin 2 protein-coding 95 0.01131
+30001 ERO1A endoplasmic reticulum oxidoreductase 1 alpha protein-coding 46 0.005478
+30008 EFEMP2 EGF containing fibulin extracellular matrix protein 2 protein-coding 63 0.007503
+30009 TBX21 T-box 21 protein-coding 57 0.006788
+30010 NXPH1 neurexophilin 1 protein-coding 68 0.008098
+30011 SH3KBP1 SH3 domain containing kinase binding protein 1 protein-coding 102 0.01215
+30012 TLX3 T cell leukemia homeobox 3 protein-coding 38 0.004525
+30061 SLC40A1 solute carrier family 40 member 1 protein-coding 61 0.007264
+30062 RAX retina and anterior neural fold homeobox protein-coding 22 0.00262
+30811 HUNK hormonally up-regulated Neu-associated kinase protein-coding 94 0.01119
+30812 SOX8 SRY-box 8 protein-coding 39 0.004645
+30813 VSX1 visual system homeobox 1 protein-coding 17 0.002025
+30814 PLA2G2E phospholipase A2 group IIE protein-coding 29 0.003454
+30815 ST6GALNAC6 ST6 N-acetylgalactosaminide alpha-2,6-sialyltransferase 6 protein-coding 42 0.005002
+30816 ERVW-1 endogenous retrovirus group W member 1, envelope protein-coding 60 0.007145
+30817 ADGRE2 adhesion G protein-coupled receptor E2 protein-coding 116 0.01381
+30818 KCNIP3 potassium voltage-gated channel interacting protein 3 protein-coding 37 0.004406
+30819 KCNIP2 potassium voltage-gated channel interacting protein 2 protein-coding 28 0.003335
+30820 KCNIP1 potassium voltage-gated channel interacting protein 1 protein-coding 46 0.005478
+30827 CXXC1 CXXC finger protein 1 protein-coding 145 0.01727
+30832 ZNF354C zinc finger protein 354C protein-coding 88 0.01048
+30833 NT5C 5', 3'-nucleotidase, cytosolic protein-coding 16 0.001905
+30834 ZNRD1 zinc ribbon domain containing 1 protein-coding 8 0.0009527
+30835 CD209 CD209 molecule protein-coding 55 0.00655
+30836 DNTTIP2 deoxynucleotidyltransferase terminal interacting protein 2 protein-coding 66 0.00786
+30837 SOCS7 suppressor of cytokine signaling 7 protein-coding 37 0.004406
+30844 EHD4 EH domain containing 4 protein-coding 51 0.006074
+30845 EHD3 EH domain containing 3 protein-coding 79 0.009408
+30846 EHD2 EH domain containing 2 protein-coding 80 0.009527
+30848 CTAG2 cancer/testis antigen 2 protein-coding 39 0.004645
+30849 PIK3R4 phosphoinositide-3-kinase regulatory subunit 4 protein-coding 153 0.01822
+30850 CDR2L cerebellar degeneration related protein 2 like protein-coding 33 0.00393
+30851 TAX1BP3 Tax1 binding protein 3 protein-coding 9 0.001072
+30968 STOML2 stomatin like 2 protein-coding 43 0.005121
+43847 KLK14 kallikrein related peptidase 14 protein-coding 28 0.003335
+43849 KLK12 kallikrein related peptidase 12 protein-coding 39 0.004645
+49854 ZBTB21 zinc finger and BTB domain containing 21 protein-coding 107 0.01274
+49855 SCAPER S-phase cyclin A associated protein in the ER protein-coding 144 0.01715
+49856 WRAP73 WD repeat containing, antisense to TP73 protein-coding 49 0.005835
+49860 CRNN cornulin protein-coding 167 0.01989
+49861 CLDN20 claudin 20 protein-coding 17 0.002025
+50484 RRM2B ribonucleotide reductase regulatory TP53 inducible subunit M2B protein-coding 42 0.005002
+50485 SMARCAL1 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily a like 1 protein-coding 124 0.01477
+50486 G0S2 G0/G1 switch 2 protein-coding 9 0.001072
+50487 PLA2G3 phospholipase A2 group III protein-coding 82 0.009765
+50488 MINK1 misshapen like kinase 1 protein-coding 107 0.01274
+50489 CD207 CD207 molecule protein-coding 63 0.007503
+50506 DUOX2 dual oxidase 2 protein-coding 165 0.01965
+50507 NOX4 NADPH oxidase 4 protein-coding 125 0.01489
+50508 NOX3 NADPH oxidase 3 protein-coding 118 0.01405
+50509 COL5A3 collagen type V alpha 3 chain protein-coding 222 0.02644
+50511 SYCP3 synaptonemal complex protein 3 protein-coding 32 0.003811
+50512 PODXL2 podocalyxin like 2 protein-coding 60 0.007145
+50514 DEC1 deleted in esophageal cancer 1 protein-coding 8 0.0009527
+50515 CHST11 carbohydrate sulfotransferase 11 protein-coding 60 0.007145
+50604 IL20 interleukin 20 protein-coding 23 0.002739
+50613 UBQLN3 ubiquilin 3 protein-coding 112 0.01334
+50614 GALNT9 polypeptide N-acetylgalactosaminyltransferase 9 protein-coding 66 0.00786
+50615 IL21R interleukin 21 receptor protein-coding 109 0.01298
+50616 IL22 interleukin 22 protein-coding 32 0.003811
+50617 ATP6V0A4 ATPase H+ transporting V0 subunit a4 protein-coding 113 0.01346
+50618 ITSN2 intersectin 2 protein-coding 187 0.02227
+50619 DEF6 DEF6, guanine nucleotide exchange factor protein-coding 60 0.007145
+50624 CUZD1 CUB and zona pellucida like domains 1 protein-coding 63 0.007503
+50626 CYHR1 cysteine and histidine rich 1 protein-coding 27 0.003215
+50628 GEMIN4 gem nuclear organelle associated protein 4 protein-coding 78 0.009289
+50632 CALY calcyon neuron specific vesicular protein protein-coding 11 0.00131
+50636 ANO7 anoctamin 7 protein-coding 114 0.01358
+50640 PNPLA8 patatin like phospholipase domain containing 8 protein-coding 95 0.01131
+50649 ARHGEF4 Rho guanine nucleotide exchange factor 4 protein-coding 94 0.01119
+50650 ARHGEF3 Rho guanine nucleotide exchange factor 3 protein-coding 66 0.00786
+50651 SLC45A1 solute carrier family 45 member 1 protein-coding 107 0.01274
+50674 NEUROG3 neurogenin 3 protein-coding 45 0.005359
+50700 RDH8 retinol dehydrogenase 8 protein-coding 60 0.007145
+50717 DCAF8 DDB1 and CUL4 associated factor 8 protein-coding 80 0.009527
+50801 KCNK4 potassium two pore domain channel subfamily K member 4 protein-coding 32 0.003811
+50804 MYEF2 myelin expression factor 2 protein-coding 88 0.01048
+50805 IRX4 iroquois homeobox 4 protein-coding 73 0.008694
+50807 ASAP1 ArfGAP with SH3 domain, ankyrin repeat and PH domain 1 protein-coding 158 0.01882
+50808 AK3 adenylate kinase 3 protein-coding 23 0.002739
+50809 HP1BP3 heterochromatin protein 1 binding protein 3 protein-coding 69 0.008217
+50810 HDGFL3 HDGF like 3 protein-coding 19 0.002263
+50813 COPS7A COP9 signalosome subunit 7A protein-coding 30 0.003573
+50814 NSDHL NAD(P) dependent steroid dehydrogenase-like protein-coding 53 0.006312
+50831 TAS2R3 taste 2 receptor member 3 protein-coding 41 0.004883
+50832 TAS2R4 taste 2 receptor member 4 protein-coding 26 0.003096
+50833 TAS2R16 taste 2 receptor member 16 protein-coding 66 0.00786
+50834 TAS2R1 taste 2 receptor member 1 protein-coding 74 0.008813
+50835 TAS2R9 taste 2 receptor member 9 protein-coding 39 0.004645
+50836 TAS2R8 taste 2 receptor member 8 protein-coding 34 0.004049
+50837 TAS2R7 taste 2 receptor member 7 protein-coding 48 0.005716
+50838 TAS2R13 taste 2 receptor member 13 protein-coding 30 0.003573
+50839 TAS2R10 taste 2 receptor member 10 protein-coding 60 0.007145
+50840 TAS2R14 taste 2 receptor member 14 protein-coding 40 0.004764
+50846 DHH desert hedgehog protein-coding 34 0.004049
+50848 F11R F11 receptor protein-coding 41 0.004883
+50852 TRAT1 T cell receptor associated transmembrane adaptor 1 protein-coding 63 0.007503
+50853 VILL villin like protein-coding 84 0.01
+50854 C6orf48 chromosome 6 open reading frame 48 protein-coding 6 0.0007145
+50855 PARD6A par-6 family cell polarity regulator alpha protein-coding 23 0.002739
+50856 CLEC4A C-type lectin domain family 4 member A protein-coding 43 0.005121
+50859 SPOCK3 SPARC (osteonectin), cwcv and kazal like domains proteoglycan 3 protein-coding 104 0.01239
+50861 STMN3 stathmin 3 protein-coding 22 0.00262
+50862 RNF141 ring finger protein 141 protein-coding 89 0.0106
+50863 NTM neurotrimin protein-coding 116 0.01381
+50865 HEBP1 heme binding protein 1 protein-coding 15 0.001786
+50937 CDON cell adhesion associated, oncogene regulated protein-coding 140 0.01667
+50939 IMPG2 interphotoreceptor matrix proteoglycan 2 protein-coding 176 0.02096
+50940 PDE11A phosphodiesterase 11A protein-coding 145 0.01727
+50943 FOXP3 forkhead box P3 protein-coding 41 0.004883
+50944 SHANK1 SH3 and multiple ankyrin repeat domains 1 protein-coding 216 0.02572
+50945 TBX22 T-box 22 protein-coding 141 0.01679
+50964 SOST sclerostin protein-coding 19 0.002263
+50999 TMED5 transmembrane p24 trafficking protein 5 protein-coding 24 0.002858
+51000 SLC35B3 solute carrier family 35 member B3 protein-coding 40 0.004764
+51001 MTERF3 mitochondrial transcription termination factor 3 protein-coding 59 0.007026
+51002 TPRKB TP53RK binding protein protein-coding 26 0.003096
+51003 MED31 mediator complex subunit 31 protein-coding 14 0.001667
+51004 COQ6 coenzyme Q6, monooxygenase protein-coding 55 0.00655
+51005 AMDHD2 amidohydrolase domain containing 2 protein-coding 50 0.005955
+51006 SLC35C2 solute carrier family 35 member C2 protein-coding 48 0.005716
+51008 ASCC1 activating signal cointegrator 1 complex subunit 1 protein-coding 34 0.004049
+51009 DERL2 derlin 2 protein-coding 22 0.00262
+51010 EXOSC3 exosome component 3 protein-coding 19 0.002263
+51011 FAHD2A fumarylacetoacetate hydrolase domain containing 2A protein-coding 49 0.005835
+51012 PRELID3B PRELI domain containing 3B protein-coding 24 0.002858
+51013 EXOSC1 exosome component 1 protein-coding 15 0.001786
+51014 TMED7 transmembrane p24 trafficking protein 7 protein-coding 5 0.0005955
+51015 ISOC1 isochorismatase domain containing 1 protein-coding 31 0.003692
+51016 EMC9 ER membrane protein complex subunit 9 protein-coding 25 0.002977
+51018 RRP15 ribosomal RNA processing 15 homolog protein-coding 44 0.00524
+51019 WASHC3 WASH complex subunit 3 protein-coding 27 0.003215
+51020 HDDC2 HD domain containing 2 protein-coding 29 0.003454
+51021 MRPS16 mitochondrial ribosomal protein S16 protein-coding 6 0.0007145
+51022 GLRX2 glutaredoxin 2 protein-coding 25 0.002977
+51023 MRPS18C mitochondrial ribosomal protein S18C protein-coding 14 0.001667
+51024 FIS1 fission, mitochondrial 1 protein-coding 17 0.002025
+51025 PAM16 presequence translocase associated motor 16 protein-coding 14 0.001667
+51026 GOLT1B golgi transport 1B protein-coding 77 0.00917
+51027 BOLA1 bolA family member 1 protein-coding 24 0.002858
+51028 VPS36 vacuolar protein sorting 36 homolog protein-coding 34 0.004049
+51029 DESI2 desumoylating isopeptidase 2 protein-coding 37 0.004406
+51030 TVP23B trans-golgi network vesicle protein 23 homolog B protein-coding 20 0.002382
+51031 GLOD4 glyoxalase domain containing 4 protein-coding 27 0.003215
+51032 CELA2B chymotrypsin like elastase family member 2B protein-coding 28 0.003335
+51035 UBXN1 UBX domain protein 1 protein-coding 39 0.004645
+51042 ZNF593 zinc finger protein 593 protein-coding 8 0.0009527
+51043 ZBTB7B zinc finger and BTB domain containing 7B protein-coding 106 0.01262
+51046 ST8SIA3 ST8 alpha-N-acetyl-neuraminide alpha-2,8-sialyltransferase 3 protein-coding 71 0.008455
+51050 PI15 peptidase inhibitor 15 protein-coding 84 0.01
+51052 PRLH prolactin releasing hormone protein-coding 8 0.0009527
+51053 GMNN geminin, DNA replication inhibitor protein-coding 29 0.003454
+51054 PLEKHA8P1 pleckstrin homology domain containing A8 pseudogene 1 pseudo 102 0.01215
+51056 LAP3 leucine aminopeptidase 3 protein-coding 61 0.007264
+51057 WDPCP WD repeat containing planar cell polarity effector protein-coding 103 0.01227
+51058 ZNF691 zinc finger protein 691 protein-coding 31 0.003692
+51059 FAM135B family with sequence similarity 135 member B protein-coding 494 0.05883
+51060 TXNDC12 thioredoxin domain containing 12 protein-coding 17 0.002025
+51061 TXNDC11 thioredoxin domain containing 11 protein-coding 73 0.008694
+51062 ATL1 atlastin GTPase 1 protein-coding 114 0.01358
+51063 CALHM2 calcium homeostasis modulator family member 2 protein-coding 40 0.004764
+51065 RPS27L ribosomal protein S27 like protein-coding 4 0.0004764
+51066 SSUH2 ssu-2 homolog (C. elegans) protein-coding 62 0.007384
+51067 YARS2 tyrosyl-tRNA synthetase 2 protein-coding 58 0.006907
+51068 NMD3 NMD3 ribosome export adaptor protein-coding 62 0.007384
+51069 MRPL2 mitochondrial ribosomal protein L2 protein-coding 44 0.00524
+51070 NOSIP nitric oxide synthase interacting protein protein-coding 43 0.005121
+51071 DERA deoxyribose-phosphate aldolase protein-coding 40 0.004764
+51072 MEMO1 mediator of cell motility 1 protein-coding 37 0.004406
+51073 MRPL4 mitochondrial ribosomal protein L4 protein-coding 23 0.002739
+51074 APIP APAF1 interacting protein protein-coding 28 0.003335
+51075 TMX2 thioredoxin related transmembrane protein 2 protein-coding 42 0.005002
+51076 CUTC cutC copper transporter protein-coding 40 0.004764
+51077 FCF1 FCF1, rRNA-processing protein protein-coding 23 0.002739
+51078 THAP4 THAP domain containing 4 protein-coding 51 0.006074
+51079 NDUFA13 NADH:ubiquinone oxidoreductase subunit A13 protein-coding 28 0.003335
+51081 MRPS7 mitochondrial ribosomal protein S7 protein-coding 29 0.003454
+51082 POLR1D RNA polymerase I and III subunit D protein-coding 65 0.007741
+51083 GAL galanin and GMAP prepropeptide protein-coding 20 0.002382
+51084 CRYL1 crystallin lambda 1 protein-coding 45 0.005359
+51085 MLXIPL MLX interacting protein like protein-coding 132 0.01572
+51086 TNNI3K TNNI3 interacting kinase protein-coding 81 0.009646
+51087 YBX2 Y-box binding protein 2 protein-coding 46 0.005478
+51088 KLHL5 kelch like family member 5 protein-coding 74 0.008813
+51090 PLLP plasmolipin protein-coding 13 0.001548
+51091 SEPSECS Sep (O-phosphoserine) tRNA:Sec (selenocysteine) tRNA synthase protein-coding 97 0.01155
+51092 SIDT2 SID1 transmembrane family member 2 protein-coding 86 0.01024
+51093 RRNAD1 ribosomal RNA adenine dimethylase domain containing 1 protein-coding 53 0.006312
+51094 ADIPOR1 adiponectin receptor 1 protein-coding 46 0.005478
+51095 TRNT1 tRNA nucleotidyl transferase 1 protein-coding 54 0.006431
+51096 UTP18 UTP18, small subunit processome component protein-coding 48 0.005716
+51097 SCCPDH saccharopine dehydrogenase (putative) protein-coding 55 0.00655
+51098 IFT52 intraflagellar transport 52 protein-coding 53 0.006312
+51099 ABHD5 abhydrolase domain containing 5 protein-coding 28 0.003335
+51100 SH3GLB1 SH3 domain containing GRB2 like, endophilin B1 protein-coding 45 0.005359
+51101 ZC2HC1A zinc finger C2HC-type containing 1A protein-coding 49 0.005835
+51102 MECR mitochondrial trans-2-enoyl-CoA reductase protein-coding 37 0.004406
+51103 NDUFAF1 NADH:ubiquinone oxidoreductase complex assembly factor 1 protein-coding 41 0.004883
+51104 ABHD17B abhydrolase domain containing 17B protein-coding 38 0.004525
+51105 PHF20L1 PHD finger protein 20 like 1 protein-coding 155 0.01846
+51106 TFB1M transcription factor B1, mitochondrial protein-coding 49 0.005835
+51107 APH1A aph-1 homolog A, gamma-secretase subunit protein-coding 31 0.003692
+51108 METTL9 methyltransferase like 9 protein-coding 28 0.003335
+51109 RDH11 retinol dehydrogenase 11 protein-coding 28 0.003335
+51110 LACTB2 lactamase beta 2 protein-coding 40 0.004764
+51111 KMT5B lysine methyltransferase 5B protein-coding 115 0.0137
+51112 TRAPPC12 trafficking protein particle complex 12 protein-coding 79 0.009408
+51114 ZDHHC9 zinc finger DHHC-type containing 9 protein-coding 50 0.005955
+51115 RMDN1 regulator of microtubule dynamics 1 protein-coding 44 0.00524
+51116 MRPS2 mitochondrial ribosomal protein S2 protein-coding 32 0.003811
+51117 COQ4 coenzyme Q4 protein-coding 24 0.002858
+51118 UTP11 UTP11, small subunit processome component protein-coding 35 0.004168
+51119 SBDS SBDS, ribosome maturation factor protein-coding 69 0.008217
+51121 RPL26L1 ribosomal protein L26 like 1 protein-coding 29 0.003454
+51122 COMMD2 COMM domain containing 2 protein-coding 21 0.002501
+51123 ZNF706 zinc finger protein 706 protein-coding 8 0.0009527
+51124 IER3IP1 immediate early response 3 interacting protein 1 protein-coding 7 0.0008336
+51125 GOLGA7 golgin A7 protein-coding 11 0.00131
+51126 NAA20 N(alpha)-acetyltransferase 20, NatB catalytic subunit protein-coding 23 0.002739
+51127 TRIM17 tripartite motif containing 17 protein-coding 56 0.006669
+51128 SAR1B secretion associated Ras related GTPase 1B protein-coding 20 0.002382
+51129 ANGPTL4 angiopoietin like 4 protein-coding 39 0.004645
+51130 ASB3 ankyrin repeat and SOCS box containing 3 protein-coding 57 0.006788
+51131 PHF11 PHD finger protein 11 protein-coding 36 0.004287
+51132 RLIM ring finger protein, LIM domain interacting protein-coding 94 0.01119
+51133 KCTD3 potassium channel tetramerization domain containing 3 protein-coding 113 0.01346
+51134 CEP83 centrosomal protein 83 protein-coding 87 0.01036
+51135 IRAK4 interleukin 1 receptor associated kinase 4 protein-coding 59 0.007026
+51136 RNFT1 ring finger protein, transmembrane 1 protein-coding 33 0.00393
+51138 COPS4 COP9 signalosome subunit 4 protein-coding 55 0.00655
+51141 INSIG2 insulin induced gene 2 protein-coding 45 0.005359
+51142 CHCHD2 coiled-coil-helix-coiled-coil-helix domain containing 2 protein-coding 25 0.002977
+51143 DYNC1LI1 dynein cytoplasmic 1 light intermediate chain 1 protein-coding 56 0.006669
+51144 HSD17B12 hydroxysteroid 17-beta dehydrogenase 12 protein-coding 28 0.003335
+51146 A4GNT alpha-1,4-N-acetylglucosaminyltransferase protein-coding 65 0.007741
+51147 ING4 inhibitor of growth family member 4 protein-coding 22 0.00262
+51148 CERCAM cerebral endothelial cell adhesion molecule protein-coding 63 0.007503
+51149 MRNIP MRN complex interacting protein protein-coding 43 0.005121
+51150 SDF4 stromal cell derived factor 4 protein-coding 41 0.004883
+51151 SLC45A2 solute carrier family 45 member 2 protein-coding 235 0.02799
+51154 MRTO4 MRT4 homolog, ribosome maturation factor protein-coding 22 0.00262
+51156 SERPINA10 serpin family A member 10 protein-coding 65 0.007741
+51157 ZNF580 zinc finger protein 580 protein-coding 4 0.0004764
+51160 VPS28 VPS28, ESCRT-I subunit protein-coding 31 0.003692
+51161 C3orf18 chromosome 3 open reading frame 18 protein-coding 19 0.002263
+51162 EGFL7 EGF like domain multiple 7 protein-coding 62 0.007384
+51163 DBR1 debranching RNA lariats 1 protein-coding 68 0.008098
+51164 DCTN4 dynactin subunit 4 protein-coding 41 0.004883
+51166 AADAT aminoadipate aminotransferase protein-coding 41 0.004883
+51167 CYB5R4 cytochrome b5 reductase 4 protein-coding 67 0.007979
+51168 MYO15A myosin XVA protein-coding 321 0.03823
+51170 HSD17B11 hydroxysteroid 17-beta dehydrogenase 11 protein-coding 41 0.004883
+51171 HSD17B14 hydroxysteroid 17-beta dehydrogenase 14 protein-coding 31 0.003692
+51172 NAGPA N-acetylglucosamine-1-phosphodiester alpha-N-acetylglucosaminidase protein-coding 41 0.004883
+51174 TUBD1 tubulin delta 1 protein-coding 57 0.006788
+51175 TUBE1 tubulin epsilon 1 protein-coding 52 0.006193
+51176 LEF1 lymphoid enhancer binding factor 1 protein-coding 74 0.008813
+51177 PLEKHO1 pleckstrin homology domain containing O1 protein-coding 61 0.007264
+51179 HAO2 hydroxyacid oxidase 2 protein-coding 62 0.007384
+51181 DCXR dicarbonyl and L-xylulose reductase protein-coding 17 0.002025
+51182 HSPA14 heat shock protein family A (Hsp70) member 14 protein-coding 49 0.005835
+51184 GPN3 GPN-loop GTPase 3 protein-coding 22 0.00262
+51185 CRBN cereblon protein-coding 41 0.004883
+51186 TCEAL9 transcription elongation factor A like 9 protein-coding 20 0.002382
+51187 RSL24D1 ribosomal L24 domain containing 1 protein-coding 28 0.003335
+51188 SS18L2 SS18 like 2 protein-coding 3 0.0003573
+51191 HERC5 HECT and RLD domain containing E3 ubiquitin protein ligase 5 protein-coding 101 0.01203
+51192 CKLF chemokine like factor protein-coding 20 0.002382
+51193 ZNF639 zinc finger protein 639 protein-coding 61 0.007264
+51194 IPO11 importin 11 protein-coding 94 0.01119
+51195 RAPGEFL1 Rap guanine nucleotide exchange factor like 1 protein-coding 35 0.004168
+51196 PLCE1 phospholipase C epsilon 1 protein-coding 238 0.02834
+51198 CDKN2A-DT CDKN2A divergent transcript ncRNA 6 0.0007145
+51199 NIN ninein protein-coding 191 0.02275
+51200 CPA4 carboxypeptidase A4 protein-coding 146 0.01739
+51201 ZDHHC2 zinc finger DHHC-type containing 2 protein-coding 39 0.004645
+51202 DDX47 DEAD-box helicase 47 protein-coding 49 0.005835
+51203 NUSAP1 nucleolar and spindle associated protein 1 protein-coding 44 0.00524
+51204 TACO1 translational activator of cytochrome c oxidase I protein-coding 17 0.002025
+51205 ACP6 acid phosphatase 6, lysophosphatidic protein-coding 30 0.003573
+51206 GP6 glycoprotein VI platelet protein-coding 68 0.008098
+51207 DUSP13 dual specificity phosphatase 13 protein-coding 36 0.004287
+51208 CLDN18 claudin 18 protein-coding 48 0.005716
+51209 RAB9B RAB9B, member RAS oncogene family protein-coding 34 0.004049
+51213 LUZP4 leucine zipper protein 4 protein-coding 67 0.007979
+51218 GLRX5 glutaredoxin 5 protein-coding 3 0.0003573
+51222 ZNF219 zinc finger protein 219 protein-coding 42 0.005002
+51224 ELOA2 elongin A2 protein-coding 156 0.01858
+51225 ABI3 ABI family member 3 protein-coding 41 0.004883
+51226 COPZ2 coatomer protein complex subunit zeta 2 protein-coding 17 0.002025
+51227 PIGP phosphatidylinositol glycan anchor biosynthesis class P protein-coding 14 0.001667
+51228 GLTP glycolipid transfer protein protein-coding 25 0.002977
+51230 PHF20 PHD finger protein 20 protein-coding 117 0.01393
+51231 VRK3 vaccinia related kinase 3 protein-coding 46 0.005478
+51232 CRIM1 cysteine rich transmembrane BMP regulator 1 protein-coding 109 0.01298
+51233 DRICH1 aspartate rich 1 protein-coding 28 0.003335
+51234 EMC4 ER membrane protein complex subunit 4 protein-coding 17 0.002025
+51236 HGH1 HGH1 homolog protein-coding 1 0.0001191
+51237 MZB1 marginal zone B and B1 cell specific protein protein-coding 15 0.001786
+51239 ANKRD39 ankyrin repeat domain 39 protein-coding 14 0.001667
+51241 COX16 COX16, cytochrome c oxidase assembly homolog protein-coding 16 0.001905
+51244 CCDC174 coiled-coil domain containing 174 protein-coding 60 0.007145
+51246 SHISA5 shisa family member 5 protein-coding 28 0.003335
+51247 PAIP2 poly(A) binding protein interacting protein 2 protein-coding 15 0.001786
+51248 PDZD11 PDZ domain containing 11 protein-coding 20 0.002382
+51249 TMEM69 transmembrane protein 69 protein-coding 15 0.001786
+51250 C6orf203 chromosome 6 open reading frame 203 protein-coding 29 0.003454
+51251 NT5C3A 5'-nucleotidase, cytosolic IIIA protein-coding 53 0.006312
+51252 FAM178B family with sequence similarity 178 member B protein-coding 42 0.005002
+51253 MRPL37 mitochondrial ribosomal protein L37 protein-coding 84 0.01
+51255 RNF181 ring finger protein 181 protein-coding 17 0.002025
+51256 TBC1D7 TBC1 domain family member 7 protein-coding 45 0.005359
+51257 MARCH2 membrane associated ring-CH-type finger 2 protein-coding 22 0.00262
+51258 MRPL51 mitochondrial ribosomal protein L51 protein-coding 15 0.001786
+51259 TMEM216 transmembrane protein 216 protein-coding 18 0.002144
+51260 PBDC1 polysaccharide biosynthesis domain containing 1 protein-coding 54 0.006431
+51263 MRPL30 mitochondrial ribosomal protein L30 protein-coding 51 0.006074
+51264 MRPL27 mitochondrial ribosomal protein L27 protein-coding 14 0.001667
+51265 CDKL3 cyclin dependent kinase like 3 protein-coding 61 0.007264
+51266 CLEC1B C-type lectin domain family 1 member B protein-coding 42 0.005002
+51267 CLEC1A C-type lectin domain family 1 member A protein-coding 55 0.00655
+51268 PIPOX pipecolic acid and sarcosine oxidase protein-coding 51 0.006074
+51270 TFDP3 transcription factor Dp family member 3 protein-coding 72 0.008574
+51271 UBAP1 ubiquitin associated protein 1 protein-coding 57 0.006788
+51272 BET1L Bet1 golgi vesicular membrane trafficking protein like protein-coding 7 0.0008336
+51274 KLF3 Kruppel like factor 3 protein-coding 82 0.009765
+51276 ZNF571 zinc finger protein 571 protein-coding 75 0.008932
+51277 DNAJC27 DnaJ heat shock protein family (Hsp40) member C27 protein-coding 34 0.004049
+51278 IER5 immediate early response 5 protein-coding 23 0.002739
+51279 C1RL complement C1r subcomponent like protein-coding 55 0.00655
+51280 GOLM1 golgi membrane protein 1 protein-coding 39 0.004645
+51281 ANKMY1 ankyrin repeat and MYND domain containing 1 protein-coding 104 0.01239
+51282 SCAND1 SCAN domain containing 1 protein-coding 11 0.00131
+51283 BFAR bifunctional apoptosis regulator protein-coding 58 0.006907
+51284 TLR7 toll like receptor 7 protein-coding 142 0.01691
+51285 RASL12 RAS like family 12 protein-coding 30 0.003573
+51286 CEND1 cell cycle exit and neuronal differentiation 1 protein-coding 15 0.001786
+51287 COA4 cytochrome c oxidase assembly factor 4 homolog protein-coding 10 0.001191
+51289 RXFP3 relaxin family peptide receptor 3 protein-coding 131 0.0156
+51290 ERGIC2 ERGIC and golgi 2 protein-coding 40 0.004764
+51291 GMIP GEM interacting protein protein-coding 106 0.01262
+51292 GMPR2 guanosine monophosphate reductase 2 protein-coding 35 0.004168
+51293 CD320 CD320 molecule protein-coding 31 0.003692
+51294 PCDH12 protocadherin 12 protein-coding 131 0.0156
+51295 ECSIT ECSIT signalling integrator protein-coding 53 0.006312
+51296 SLC15A3 solute carrier family 15 member 3 protein-coding 43 0.005121
+51297 BPIFA1 BPI fold containing family A member 1 protein-coding 45 0.005359
+51298 THEG theg spermatid protein protein-coding 65 0.007741
+51299 NRN1 neuritin 1 protein-coding 32 0.003811
+51300 TIMMDC1 translocase of inner mitochondrial membrane domain containing 1 protein-coding 48 0.005716
+51301 GCNT4 glucosaminyl (N-acetyl) transferase 4, core 2 protein-coding 59 0.007026
+51302 CYP39A1 cytochrome P450 family 39 subfamily A member 1 protein-coding 60 0.007145
+51303 FKBP11 FK506 binding protein 11 protein-coding 24 0.002858
+51304 ZDHHC3 zinc finger DHHC-type containing 3 protein-coding 32 0.003811
+51305 KCNK9 potassium two pore domain channel subfamily K member 9 protein-coding 107 0.01274
+51306 FAM13B family with sequence similarity 13 member B protein-coding 85 0.01012
+51307 FAM53C family with sequence similarity 53 member C protein-coding 46 0.005478
+51308 REEP2 receptor accessory protein 2 protein-coding 28 0.003335
+51309 ARMCX1 armadillo repeat containing, X-linked 1 protein-coding 61 0.007264
+51310 SLC22A17 solute carrier family 22 member 17 protein-coding 42 0.005002
+51311 TLR8 toll like receptor 8 protein-coding 147 0.01751
+51312 SLC25A37 solute carrier family 25 member 37 protein-coding 38 0.004525
+51313 FAM198B family with sequence similarity 198 member B protein-coding 72 0.008574
+51314 NME8 NME/NM23 family member 8 protein-coding 128 0.01524
+51315 KRCC1 lysine rich coiled-coil 1 protein-coding 32 0.003811
+51316 PLAC8 placenta specific 8 protein-coding 19 0.002263
+51317 PHF21A PHD finger protein 21A protein-coding 71 0.008455
+51318 MRPL35 mitochondrial ribosomal protein L35 protein-coding 27 0.003215
+51319 RSRC1 arginine and serine rich coiled-coil 1 protein-coding 64 0.007622
+51320 MEX3C mex-3 RNA binding family member C protein-coding 32 0.003811
+51321 AMZ2 archaelysin family metallopeptidase 2 protein-coding 51 0.006074
+51322 WAC WW domain containing adaptor with coiled-coil protein-coding 102 0.01215
+51324 SPG21 SPG21, maspardin protein-coding 31 0.003692
+51327 AHSP alpha hemoglobin stabilizing protein protein-coding 13 0.001548
+51329 ARL6IP4 ADP ribosylation factor like GTPase 6 interacting protein 4 protein-coding 30 0.003573
+51330 TNFRSF12A TNF receptor superfamily member 12A protein-coding 9 0.001072
+51332 SPTBN5 spectrin beta, non-erythrocytic 5 protein-coding 240 0.02858
+51333 ZNF771 zinc finger protein 771 protein-coding 4 0.0004764
+51334 PRR16 proline rich 16 protein-coding 65 0.007741
+51335 NGRN neugrin, neurite outgrowth associated protein-coding 29 0.003454
+51337 THEM6 thioesterase superfamily member 6 protein-coding 5 0.0005955
+51338 MS4A4A membrane spanning 4-domains A4A protein-coding 51 0.006074
+51339 DACT1 dishevelled binding antagonist of beta catenin 1 protein-coding 140 0.01667
+51340 CRNKL1 crooked neck pre-mRNA splicing factor 1 protein-coding 102 0.01215
+51341 ZBTB7A zinc finger and BTB domain containing 7A protein-coding 59 0.007026
+51343 FZR1 fizzy and cell division cycle 20 related 1 protein-coding 307 0.03656
+51347 TAOK3 TAO kinase 3 protein-coding 114 0.01358
+51348 KLRF1 killer cell lectin like receptor F1 protein-coding 40 0.004764
+51350 KRT76 keratin 76 protein-coding 66 0.00786
+51351 ZNF117 zinc finger protein 117 protein-coding 70 0.008336
+51360 MBTPS2 membrane bound transcription factor peptidase, site 2 protein-coding 71 0.008455
+51361 HOOK1 hook microtubule tethering protein 1 protein-coding 185 0.02203
+51362 CDC40 cell division cycle 40 protein-coding 62 0.007384
+51363 CHST15 carbohydrate sulfotransferase 15 protein-coding 99 0.01179
+51364 ZMYND10 zinc finger MYND-type containing 10 protein-coding 35 0.004168
+51365 PLA1A phospholipase A1 member A protein-coding 74 0.008813
+51366 UBR5 ubiquitin protein ligase E3 component n-recognin 5 protein-coding 290 0.03454
+51367 POP5 POP5 homolog, ribonuclease P/MRP subunit protein-coding 10 0.001191
+51368 TEX264 testis expressed 264 protein-coding 32 0.003811
+51371 POMP proteasome maturation protein protein-coding 18 0.002144
+51372 TMA7 translation machinery associated 7 homolog protein-coding 7 0.0008336
+51373 MRPS17 mitochondrial ribosomal protein S17 protein-coding 36 0.004287
+51374 ATRAID all-trans retinoic acid induced differentiation factor protein-coding 24 0.002858
+51375 SNX7 sorting nexin 7 protein-coding 59 0.007026
+51377 UCHL5 ubiquitin C-terminal hydrolase L5 protein-coding 39 0.004645
+51378 ANGPT4 angiopoietin 4 protein-coding 89 0.0106
+51379 CRLF3 cytokine receptor like factor 3 protein-coding 49 0.005835
+51380 CSAD cysteine sulfinic acid decarboxylase protein-coding 59 0.007026
+51382 ATP6V1D ATPase H+ transporting V1 subunit D protein-coding 36 0.004287
+51384 WNT16 Wnt family member 16 protein-coding 59 0.007026
+51385 ZNF589 zinc finger protein 589 protein-coding 30 0.003573
+51386 EIF3L eukaryotic translation initiation factor 3 subunit L protein-coding 57 0.006788
+51388 NIP7 NIP7, nucleolar pre-rRNA processing protein protein-coding 19 0.002263
+51389 RWDD1 RWD domain containing 1 protein-coding 27 0.003215
+51390 AIG1 androgen induced 1 protein-coding 20 0.002382
+51393 TRPV2 transient receptor potential cation channel subfamily V member 2 protein-coding 89 0.0106
+51397 COMMD10 COMM domain containing 10 protein-coding 24 0.002858
+51398 WDR83OS WD repeat domain 83 opposite strand protein-coding 11 0.00131
+51399 TRAPPC4 trafficking protein particle complex 4 protein-coding 19 0.002263
+51400 PPME1 protein phosphatase methylesterase 1 protein-coding 31 0.003692
+51406 NOL7 nucleolar protein 7 protein-coding 23 0.002739
+51409 HEMK1 HemK methyltransferase family member 1 protein-coding 27 0.003215
+51411 BIN2 bridging integrator 2 protein-coding 57 0.006788
+51412 ACTL6B actin like 6B protein-coding 68 0.008098
+51421 AMOTL2 angiomotin like 2 protein-coding 89 0.0106
+51422 PRKAG2 protein kinase AMP-activated non-catalytic subunit gamma 2 protein-coding 63 0.007503
+51426 POLK DNA polymerase kappa protein-coding 368 0.04383
+51427 ZNF107 zinc finger protein 107 protein-coding 139 0.01655
+51428 DDX41 DEAD-box helicase 41 protein-coding 73 0.008694
+51429 SNX9 sorting nexin 9 protein-coding 54 0.006431
+51430 SUCO SUN domain containing ossification factor protein-coding 140 0.01667
+51433 ANAPC5 anaphase promoting complex subunit 5 protein-coding 86 0.01024
+51434 ANAPC7 anaphase promoting complex subunit 7 protein-coding 52 0.006193
+51435 SCARA3 scavenger receptor class A member 3 protein-coding 64 0.007622
+51438 MAGEC2 MAGE family member C2 protein-coding 111 0.01322
+51439 FAM8A1 family with sequence similarity 8 member A1 protein-coding 32 0.003811
+51440 HPCAL4 hippocalcin like 4 protein-coding 31 0.003692
+51441 YTHDF2 YTH N6-methyladenosine RNA binding protein 2 protein-coding 68 0.008098
+51442 VGLL1 vestigial like family member 1 protein-coding 56 0.006669
+51444 RNF138 ring finger protein 138 protein-coding 94 0.01119
+51447 IP6K2 inositol hexakisphosphate kinase 2 protein-coding 43 0.005121
+51449 PCYOX1 prenylcysteine oxidase 1 protein-coding 48 0.005716
+51450 PRRX2 paired related homeobox 2 protein-coding 21 0.002501
+51451 LCMT1 leucine carboxyl methyltransferase 1 protein-coding 47 0.005597
+51454 GULP1 GULP, engulfment adaptor PTB domain containing 1 protein-coding 44 0.00524
+51455 REV1 REV1, DNA directed polymerase protein-coding 123 0.01465
+51458 RHCG Rh family C glycoprotein protein-coding 69 0.008217
+51460 SFMBT1 Scm like with four mbt domains 1 protein-coding 76 0.009051
+51463 GPR89B G protein-coupled receptor 89B protein-coding 20 0.002382
+51465 UBE2J1 ubiquitin conjugating enzyme E2 J1 protein-coding 34 0.004049
+51466 EVL Enah/Vasp-like protein-coding 46 0.005478
+51473 DCDC2 doublecortin domain containing 2 protein-coding 63 0.007503
+51474 LIMA1 LIM domain and actin binding 1 protein-coding 92 0.01096
+51475 CABP2 calcium binding protein 2 protein-coding 35 0.004168
+51477 ISYNA1 inositol-3-phosphate synthase 1 protein-coding 47 0.005597
+51478 HSD17B7 hydroxysteroid 17-beta dehydrogenase 7 protein-coding 37 0.004406
+51479 ANKFY1 ankyrin repeat and FYVE domain containing 1 protein-coding 96 0.01143
+51480 VCX2 variable charge, X-linked 2 protein-coding 9 0.001072
+51481 VCX3A variable charge, X-linked 3A protein-coding 17 0.002025
+51490 SPOUT1 SPOUT domain containing methyltransferase 1 protein-coding 39 0.004645
+51491 NOP16 NOP16 nucleolar protein protein-coding 16 0.001905
+51493 RTCB RNA 2',3'-cyclic phosphate and 5'-OH ligase protein-coding 56 0.006669
+51495 HACD3 3-hydroxyacyl-CoA dehydratase 3 protein-coding 30 0.003573
+51496 CTDSPL2 CTD small phosphatase like 2 protein-coding 49 0.005835
+51497 NELFCD negative elongation factor complex member C/D protein-coding 70 0.008336
+51499 TRIAP1 TP53 regulated inhibitor of apoptosis 1 protein-coding 8 0.0009527
+51501 HIKESHI Hikeshi, heat shock protein nuclear import factor protein-coding 32 0.003811
+51503 CWC15 CWC15 spliceosome associated protein homolog protein-coding 19 0.002263
+51504 TRMT112 tRNA methyltransferase subunit 11-2 protein-coding 17 0.002025
+51506 UFC1 ubiquitin-fold modifier conjugating enzyme 1 protein-coding 22 0.00262
+51507 RTF2 replication termination factor 2 protein-coding 46 0.005478
+51510 CHMP5 charged multivesicular body protein 5 protein-coding 19 0.002263
+51512 GTSE1 G2 and S-phase expressed 1 protein-coding 71 0.008455
+51513 ETV7 ETS variant 7 protein-coding 47 0.005597
+51514 DTL denticleless E3 ubiquitin protein ligase homolog protein-coding 57 0.006788
+51517 NCKIPSD NCK interacting protein with SH3 domain protein-coding 53 0.006312
+51520 LARS leucyl-tRNA synthetase protein-coding 104 0.01239
+51522 TMEM14C transmembrane protein 14C protein-coding 14 0.001667
+51523 CXXC5 CXXC finger protein 5 protein-coding 33 0.00393
+51524 TMEM138 transmembrane protein 138 protein-coding 21 0.002501
+51526 OSER1 oxidative stress responsive serine rich 1 protein-coding 31 0.003692
+51527 GSKIP GSK3B interacting protein protein-coding 13 0.001548
+51528 JKAMP JNK1/MAPK8 associated membrane protein protein-coding 37 0.004406
+51529 ANAPC11 anaphase promoting complex subunit 11 protein-coding 17 0.002025
+51530 ZC3HC1 zinc finger C3HC-type containing 1 protein-coding 53 0.006312
+51531 TRMO tRNA methyltransferase O protein-coding 45 0.005359
+51533 PHF7 PHD finger protein 7 protein-coding 40 0.004764
+51534 VTA1 vesicle trafficking 1 protein-coding 81 0.009646
+51535 PPHLN1 periphilin 1 protein-coding 60 0.007145
+51537 MTFP1 mitochondrial fission process 1 protein-coding 18 0.002144
+51538 ZCCHC17 zinc finger CCHC-type containing 17 protein-coding 24 0.002858
+51540 SCLY selenocysteine lyase protein-coding 47 0.005597
+51542 VPS54 VPS54, GARP complex subunit protein-coding 84 0.01
+51545 ZNF581 zinc finger protein 581 protein-coding 29 0.003454
+51547 SIRT7 sirtuin 7 protein-coding 44 0.00524
+51548 SIRT6 sirtuin 6 protein-coding 26 0.003096
+51550 CINP cyclin dependent kinase 2 interacting protein protein-coding 19 0.002263
+51552 RAB14 RAB14, member RAS oncogene family protein-coding 23 0.002739
+51554 ACKR4 atypical chemokine receptor 4 protein-coding 43 0.005121
+51555 PEX5L peroxisomal biogenesis factor 5 like protein-coding 136 0.0162
+51557 LGSN lengsin, lens protein with glutamine synthetase domain protein-coding 94 0.01119
+51559 NT5DC3 5'-nucleotidase domain containing 3 protein-coding 66 0.00786
+51560 RAB6B RAB6B, member RAS oncogene family protein-coding 48 0.005716
+51561 IL23A interleukin 23 subunit alpha protein-coding 15 0.001786
+51562 MBIP MAP3K12 binding inhibitory protein 1 protein-coding 43 0.005121
+51564 HDAC7 histone deacetylase 7 protein-coding 78 0.009289
+51566 ARMCX3 armadillo repeat containing, X-linked 3 protein-coding 50 0.005955
+51567 TDP2 tyrosyl-DNA phosphodiesterase 2 protein-coding 50 0.005955
+51569 UFM1 ubiquitin fold modifier 1 protein-coding 9 0.001072
+51571 FAM49B family with sequence similarity 49 member B protein-coding 43 0.005121
+51573 GDE1 glycerophosphodiester phosphodiesterase 1 protein-coding 29 0.003454
+51574 LARP7 La ribonucleoprotein domain family member 7 protein-coding 75 0.008932
+51575 ESF1 ESF1 nucleolar pre-rRNA processing protein homolog protein-coding 124 0.01477
+51582 AZIN1 antizyme inhibitor 1 protein-coding 137 0.01632
+51585 PCF11 PCF11 cleavage and polyadenylation factor subunit protein-coding 169 0.02013
+51586 MED15 mediator complex subunit 15 protein-coding 92 0.01096
+51588 PIAS4 protein inhibitor of activated STAT 4 protein-coding 55 0.00655
+51592 TRIM33 tripartite motif containing 33 protein-coding 93 0.01108
+51593 SRRT serrate, RNA effector molecule protein-coding 127 0.01512
+51594 NBAS neuroblastoma amplified sequence protein-coding 281 0.03346
+51596 CUTA cutA divalent cation tolerance homolog protein-coding 21 0.002501
+51599 LSR lipolysis stimulated lipoprotein receptor protein-coding 72 0.008574
+51601 LIPT1 lipoyltransferase 1 protein-coding 38 0.004525
+51602 NOP58 NOP58 ribonucleoprotein protein-coding 62 0.007384
+51603 METTL13 methyltransferase like 13 protein-coding 89 0.0106
+51604 PIGT phosphatidylinositol glycan anchor biosynthesis class T protein-coding 51 0.006074
+51605 TRMT6 tRNA methyltransferase 6 protein-coding 54 0.006431
+51606 ATP6V1H ATPase H+ transporting V1 subunit H protein-coding 75 0.008932
+51608 GET4 golgi to ER traffic protein 4 protein-coding 39 0.004645
+51611 DPH5 diphthamide biosynthesis 5 protein-coding 29 0.003454
+51614 ERGIC3 ERGIC and golgi 3 protein-coding 63 0.007503
+51616 TAF9B TATA-box binding protein associated factor 9b protein-coding 40 0.004764
+51617 NSG2 neuronal vesicle trafficking associated 2 protein-coding 30 0.003573
+51619 UBE2D4 ubiquitin conjugating enzyme E2 D4 (putative) protein-coding 12 0.001429
+51621 KLF13 Kruppel like factor 13 protein-coding 17 0.002025
+51622 CCZ1 CCZ1 homolog, vacuolar protein trafficking and biogenesis associated protein-coding 44 0.00524
+51626 DYNC2LI1 dynein cytoplasmic 2 light intermediate chain 1 protein-coding 46 0.005478
+51629 SLC25A39 solute carrier family 25 member 39 protein-coding 42 0.005002
+51631 LUC7L2 LUC7 like 2, pre-mRNA splicing factor protein-coding 61 0.007264
+51633 OTUD6B OTU domain containing 6B protein-coding 45 0.005359
+51634 RBMX2 RNA binding motif protein, X-linked 2 protein-coding 51 0.006074
+51635 DHRS7 dehydrogenase/reductase 7 protein-coding 48 0.005716
+51637 RTRAF RNA transcription, translation and transport factor protein-coding 29 0.003454
+51639 SF3B6 splicing factor 3b subunit 6 protein-coding 11 0.00131
+51642 MRPL48 mitochondrial ribosomal protein L48 protein-coding 18 0.002144
+51643 TMBIM4 transmembrane BAX inhibitor motif containing 4 protein-coding 30 0.003573
+51645 PPIL1 peptidylprolyl isomerase like 1 protein-coding 24 0.002858
+51646 YPEL5 yippee like 5 protein-coding 19 0.002263
+51647 FAM96B family with sequence similarity 96 member B protein-coding 7 0.0008336
+51649 MRPS23 mitochondrial ribosomal protein S23 protein-coding 19 0.002263
+51650 MRPS33 mitochondrial ribosomal protein S33 protein-coding 16 0.001905
+51651 PTRH2 peptidyl-tRNA hydrolase 2 protein-coding 35 0.004168
+51652 CHMP3 charged multivesicular body protein 3 protein-coding 15 0.001786
+51654 CDK5RAP1 CDK5 regulatory subunit associated protein 1 protein-coding 65 0.007741
+51655 RASD1 ras related dexamethasone induced 1 protein-coding 22 0.00262
+51657 STYXL1 serine/threonine/tyrosine interacting like 1 protein-coding 52 0.006193
+51659 GINS2 GINS complex subunit 2 protein-coding 16 0.001905
+51660 MPC1 mitochondrial pyruvate carrier 1 protein-coding 9 0.001072
+51661 FKBP7 FK506 binding protein 7 protein-coding 26 0.003096
+51663 ZFR zinc finger RNA binding protein protein-coding 113 0.01346
+51665 ASB1 ankyrin repeat and SOCS box containing 1 protein-coding 43 0.005121
+51666 ASB4 ankyrin repeat and SOCS box containing 4 protein-coding 73 0.008694
+51667 NUB1 negative regulator of ubiquitin like proteins 1 protein-coding 58 0.006907
+51668 HSPB11 heat shock protein family B (small) member 11 protein-coding 25 0.002977
+51669 SARAF store-operated calcium entry associated regulatory factor protein-coding 32 0.003811
+51673 TPPP3 tubulin polymerization promoting protein family member 3 protein-coding 21 0.002501
+51676 ASB2 ankyrin repeat and SOCS box containing 2 protein-coding 73 0.008694
+51678 MPP6 membrane palmitoylated protein 6 protein-coding 82 0.009765
+51684 SUFU SUFU negative regulator of hedgehog signaling protein-coding 59 0.007026
+51686 OAZ3 ornithine decarboxylase antizyme 3 protein-coding 29 0.003454
+51690 LSM7 LSM7 homolog, U6 small nuclear RNA and mRNA degradation associated protein-coding 2 0.0002382
+51691 LSM8 LSM8 homolog, U6 small nuclear RNA associated protein-coding 20 0.002382
+51692 CPSF3 cleavage and polyadenylation specific factor 3 protein-coding 62 0.007384
+51693 TRAPPC2L trafficking protein particle complex 2 like protein-coding 23 0.002739
+51696 HECA hdc homolog, cell cycle regulator protein-coding 178 0.0212
+51699 VPS29 VPS29, retromer complex component protein-coding 25 0.002977
+51700 CYB5R2 cytochrome b5 reductase 2 protein-coding 31 0.003692
+51701 NLK nemo like kinase protein-coding 71 0.008455
+51702 PADI3 peptidyl arginine deiminase 3 protein-coding 85 0.01012
+51703 ACSL5 acyl-CoA synthetase long chain family member 5 protein-coding 82 0.009765
+51704 GPRC5B G protein-coupled receptor class C group 5 member B protein-coding 69 0.008217
+51705 EMCN endomucin protein-coding 44 0.00524
+51706 CYB5R1 cytochrome b5 reductase 1 protein-coding 32 0.003811
+51710 ZNF44 zinc finger protein 44 protein-coding 90 0.01072
+51714 SELENOT selenoprotein T protein-coding 21 0.002501
+51715 RAB23 RAB23, member RAS oncogene family protein-coding 28 0.003335
+51716 CES1P1 carboxylesterase 1 pseudogene 1 pseudo 35 0.004168
+51719 CAB39 calcium binding protein 39 protein-coding 26 0.003096
+51720 UIMC1 ubiquitin interaction motif containing 1 protein-coding 61 0.007264
+51725 FBXO40 F-box protein 40 protein-coding 101 0.01203
+51726 DNAJB11 DnaJ heat shock protein family (Hsp40) member B11 protein-coding 55 0.00655
+51727 CMPK1 cytidine/uridine monophosphate kinase 1 protein-coding 29 0.003454
+51728 POLR3K RNA polymerase III subunit K protein-coding 8 0.0009527
+51729 WBP11 WW domain binding protein 11 protein-coding 74 0.008813
+51733 UPB1 beta-ureidopropionase 1 protein-coding 45 0.005359
+51734 MSRB1 methionine sulfoxide reductase B1 protein-coding 17 0.002025
+51735 RAPGEF6 Rap guanine nucleotide exchange factor 6 protein-coding 153 0.01822
+51738 GHRL ghrelin and obestatin prepropeptide protein-coding 18 0.002144
+51741 WWOX WW domain containing oxidoreductase protein-coding 70 0.008336
+51742 ARID4B AT-rich interaction domain 4B protein-coding 164 0.01953
+51744 CD244 CD244 molecule protein-coding 57 0.006788
+51747 LUC7L3 LUC7 like 3 pre-mRNA splicing factor protein-coding 62 0.007384
+51750 RTEL1 regulator of telomere elongation helicase 1 protein-coding 116 0.01381
+51751 HIGD1B HIG1 hypoxia inducible domain family member 1B protein-coding 10 0.001191
+51752 ERAP1 endoplasmic reticulum aminopeptidase 1 protein-coding 84 0.01
+51754 TMEM8B transmembrane protein 8B protein-coding 54 0.006431
+51755 CDK12 cyclin dependent kinase 12 protein-coding 212 0.02525
+51759 C9orf78 chromosome 9 open reading frame 78 protein-coding 29 0.003454
+51760 SYT17 synaptotagmin 17 protein-coding 56 0.006669
+51761 ATP8A2 ATPase phospholipid transporting 8A2 protein-coding 183 0.02179
+51762 RAB8B RAB8B, member RAS oncogene family protein-coding 22 0.00262
+51763 INPP5K inositol polyphosphate-5-phosphatase K protein-coding 30 0.003573
+51764 GNG13 G protein subunit gamma 13 protein-coding 14 0.001667
+51765 STK26 serine/threonine kinase 26 protein-coding 55 0.00655
+51768 TM7SF3 transmembrane 7 superfamily member 3 protein-coding 70 0.008336
+51773 RSF1 remodeling and spacing factor 1 protein-coding 137 0.01632
+51776 MAP3K20 mitogen-activated protein kinase kinase kinase 20 protein-coding 83 0.009884
+51778 MYOZ2 myozenin 2 protein-coding 38 0.004525
+51780 KDM3B lysine demethylase 3B protein-coding 196 0.02334
+51802 ASIC5 acid sensing ion channel subunit family member 5 protein-coding 93 0.01108
+51804 SIX4 SIX homeobox 4 protein-coding 80 0.009527
+51805 COQ3 coenzyme Q3, methyltransferase protein-coding 43 0.005121
+51806 CALML5 calmodulin like 5 protein-coding 18 0.002144
+51807 TUBA8 tubulin alpha 8 protein-coding 49 0.005835
+51808 PHAX phosphorylated adaptor for RNA export protein-coding 40 0.004764
+51809 GALNT7 polypeptide N-acetylgalactosaminyltransferase 7 protein-coding 73 0.008694
+51816 ADA2 adenosine deaminase 2 protein-coding 77 0.00917
+53335 BCL11A B cell CLL/lymphoma 11A protein-coding 164 0.01953
+53336 CPXCR1 CPX chromosome region, candidate 1 protein-coding 100 0.01191
+53339 BTBD1 BTB domain containing 1 protein-coding 42 0.005002
+53340 SPA17 sperm autoantigenic protein 17 protein-coding 17 0.002025
+53342 IL17D interleukin 17D protein-coding 4 0.0004764
+53343 NUDT9 nudix hydrolase 9 protein-coding 57 0.006788
+53344 CHIC1 cysteine rich hydrophobic domain 1 protein-coding 18 0.002144
+53345 TM6SF2 transmembrane 6 superfamily member 2 protein-coding 35 0.004168
+53346 TM6SF1 transmembrane 6 superfamily member 1 protein-coding 66 0.00786
+53347 UBASH3A ubiquitin associated and SH3 domain containing A protein-coding 171 0.02036
+53349 ZFYVE1 zinc finger FYVE-type containing 1 protein-coding 84 0.01
+53353 LRP1B LDL receptor related protein 1B protein-coding 996 0.1186
+53354 PANK1 pantothenate kinase 1 protein-coding 59 0.007026
+53358 SHC3 SHC adaptor protein 3 protein-coding 76 0.009051
+53371 NUP54 nucleoporin 54 protein-coding 45 0.005359
+53373 TPCN1 two pore segment channel 1 protein-coding 105 0.0125
+53405 CLIC5 chloride intracellular channel 5 protein-coding 49 0.005835
+53407 STX18 syntaxin 18 protein-coding 36 0.004287
+53615 MBD3 methyl-CpG binding domain protein 3 protein-coding 47 0.005597
+53616 ADAM22 ADAM metallopeptidase domain 22 protein-coding 138 0.01643
+53630 BCO1 beta-carotene oxygenase 1 protein-coding 59 0.007026
+53632 PRKAG3 protein kinase AMP-activated non-catalytic subunit gamma 3 protein-coding 58 0.006907
+53635 PTOV1 prostate tumor overexpressed 1 protein-coding 61 0.007264
+53637 S1PR5 sphingosine-1-phosphate receptor 5 protein-coding 39 0.004645
+53820 RIPPLY3 ripply transcriptional repressor 3 protein-coding 30 0.003573
+53822 FXYD7 FXYD domain containing ion transport regulator 7 protein-coding 7 0.0008336
+53826 FXYD6 FXYD domain containing ion transport regulator 6 protein-coding 15 0.001786
+53827 FXYD5 FXYD domain containing ion transport regulator 5 protein-coding 29 0.003454
+53828 FXYD4 FXYD domain containing ion transport regulator 4 protein-coding 8 0.0009527
+53829 P2RY13 purinergic receptor P2Y13 protein-coding 54 0.006431
+53831 GPR84 G protein-coupled receptor 84 protein-coding 54 0.006431
+53832 IL20RA interleukin 20 receptor subunit alpha protein-coding 55 0.00655
+53833 IL20RB interleukin 20 receptor subunit beta protein-coding 37 0.004406
+53834 FGFRL1 fibroblast growth factor receptor like 1 protein-coding 62 0.007384
+53836 GPR87 G protein-coupled receptor 87 protein-coding 60 0.007145
+53838 C11orf24 chromosome 11 open reading frame 24 protein-coding 50 0.005955
+53840 TRIM34 tripartite motif containing 34 protein-coding 57 0.006788
+53841 CDHR5 cadherin related family member 5 protein-coding 77 0.00917
+53842 CLDN22 claudin 22 protein-coding 32 0.003811
+53904 MYO3A myosin IIIA protein-coding 309 0.0368
+53905 DUOX1 dual oxidase 1 protein-coding 135 0.01608
+53916 RAB4B RAB4B, member RAS oncogene family protein-coding 30 0.003573
+53917 RAB24 RAB24, member RAS oncogene family protein-coding 28 0.003335
+53918 PELO pelota mRNA surveillance and ribosome rescue factor protein-coding 38 0.004525
+53919 SLCO1C1 solute carrier organic anion transporter family member 1C1 protein-coding 165 0.01965
+53938 PPIL3 peptidylprolyl isomerase like 3 protein-coding 7 0.0008336
+53940 FTHL17 ferritin heavy chain like 17 protein-coding 53 0.006312
+53942 CNTN5 contactin 5 protein-coding 261 0.03108
+53944 CSNK1G1 casein kinase 1 gamma 1 protein-coding 57 0.006788
+53947 A4GALT alpha 1,4-galactosyltransferase (P blood group) protein-coding 47 0.005597
+53981 CPSF2 cleavage and polyadenylation specific factor 2 protein-coding 82 0.009765
+54014 BRWD1 bromodomain and WD repeat domain containing 1 protein-coding 229 0.02727
+54020 SLC37A1 solute carrier family 37 member 1 protein-coding 59 0.007026
+54033 RBM11 RNA binding motif protein 11 protein-coding 50 0.005955
+54039 PCBP3 poly(rC) binding protein 3 protein-coding 60 0.007145
+54055 CYP4F29P cytochrome P450 family 4 subfamily F member 29, pseudogene pseudo 11 0.00131
+54058 C21orf58 chromosome 21 open reading frame 58 protein-coding 36 0.004287
+54059 YBEY ybeY metallopeptidase (putative) protein-coding 12 0.001429
+54065 SMIM11A small integral membrane protein 11A protein-coding 9 0.001072
+54067 C21orf62-AS1 C21orf62 antisense RNA 1 ncRNA 3 0.0003573
+54069 MIS18A MIS18 kinetochore protein A protein-coding 20 0.002382
+54072 LINC00158 long intergenic non-protein coding RNA 158 ncRNA 10 0.001191
+54084 TSPEAR thrombospondin type laminin G domain and EAR repeats protein-coding 112 0.01334
+54093 SETD4 SET domain containing 4 protein-coding 49 0.005835
+54097 FAM3B family with sequence similarity 3 member B protein-coding 23 0.002739
+54101 RIPK4 receptor interacting serine/threonine kinase 4 protein-coding 102 0.01215
+54102 CLIC6 chloride intracellular channel 6 protein-coding 39 0.004645
+54103 GSAP gamma-secretase activating protein protein-coding 70 0.008336
+54106 TLR9 toll like receptor 9 protein-coding 109 0.01298
+54107 POLE3 DNA polymerase epsilon 3, accessory subunit protein-coding 20 0.002382
+54108 CHRAC1 chromatin accessibility complex 1 protein-coding 13 0.001548
+54112 GPR88 G protein-coupled receptor 88 protein-coding 13 0.001548
+54143 LINC00308 long intergenic non-protein coding RNA 308 ncRNA 7 0.0008336
+54148 MRPL39 mitochondrial ribosomal protein L39 protein-coding 40 0.004764
+54149 C21orf91 chromosome 21 open reading frame 91 protein-coding 41 0.004883
+54165 DCUN1D1 defective in cullin neddylation 1 domain containing 1 protein-coding 45 0.005359
+54187 NANS N-acetylneuraminate synthase protein-coding 34 0.004049
+54205 CYCS cytochrome c, somatic protein-coding 14 0.001667
+54206 ERRFI1 ERBB receptor feedback inhibitor 1 protein-coding 64 0.007622
+54207 KCNK10 potassium two pore domain channel subfamily K member 10 protein-coding 110 0.0131
+54209 TREM2 triggering receptor expressed on myeloid cells 2 protein-coding 32 0.003811
+54210 TREM1 triggering receptor expressed on myeloid cells 1 protein-coding 38 0.004525
+54212 SNTG1 syntrophin gamma 1 protein-coding 185 0.02203
+54221 SNTG2 syntrophin gamma 2 protein-coding 141 0.01679
+54328 GPR173 G protein-coupled receptor 173 protein-coding 55 0.00655
+54329 GPR85 G protein-coupled receptor 85 protein-coding 63 0.007503
+54331 GNG2 G protein subunit gamma 2 protein-coding 18 0.002144
+54332 GDAP1 ganglioside induced differentiation associated protein 1 protein-coding 43 0.005121
+54344 DPM3 dolichyl-phosphate mannosyltransferase subunit 3 protein-coding 10 0.001191
+54345 SOX18 SRY-box 18 protein-coding 10 0.001191
+54346 UNC93A unc-93 homolog A protein-coding 80 0.009527
+54360 CYTL1 cytokine like 1 protein-coding 28 0.003335
+54361 WNT4 Wnt family member 4 protein-coding 35 0.004168
+54363 HAO1 hydroxyacid oxidase 1 protein-coding 89 0.0106
+54386 TERF2IP TERF2 interacting protein protein-coding 39 0.004645
+54407 SLC38A2 solute carrier family 38 member 2 protein-coding 60 0.007145
+54413 NLGN3 neuroligin 3 protein-coding 126 0.01501
+54414 SIAE sialic acid acetylesterase protein-coding 50 0.005955
+54429 TAS2R5 taste 2 receptor member 5 protein-coding 27 0.003215
+54431 DNAJC10 DnaJ heat shock protein family (Hsp40) member C10 protein-coding 106 0.01262
+54432 YIPF1 Yip1 domain family member 1 protein-coding 35 0.004168
+54433 GAR1 GAR1 ribonucleoprotein protein-coding 29 0.003454
+54434 SSH1 slingshot protein phosphatase 1 protein-coding 102 0.01215
+54436 SH3TC1 SH3 domain and tetratricopeptide repeats 1 protein-coding 129 0.01536
+54437 SEMA5B semaphorin 5B protein-coding 183 0.02179
+54438 GFOD1 glucose-fructose oxidoreductase domain containing 1 protein-coding 52 0.006193
+54439 RBM27 RNA binding motif protein 27 protein-coding 269 0.03204
+54440 SASH3 SAM and SH3 domain containing 3 protein-coding 59 0.007026
+54441 STAG3L1 stromal antigen 3-like 1 (pseudogene) pseudo 5 0.0005955
+54442 KCTD5 potassium channel tetramerization domain containing 5 protein-coding 21 0.002501
+54443 ANLN anillin actin binding protein protein-coding 123 0.01465
+54453 RIN2 Ras and Rab interactor 2 protein-coding 115 0.0137
+54454 ATAD2B ATPase family, AAA domain containing 2B protein-coding 146 0.01739
+54455 FBXO42 F-box protein 42 protein-coding 76 0.009051
+54456 MOV10L1 Mov10 RISC complex RNA helicase like 1 protein-coding 127 0.01512
+54457 TAF7L TATA-box binding protein associated factor 7 like protein-coding 80 0.009527
+54458 PRR13 proline rich 13 protein-coding 7 0.0008336
+54460 MRPS21 mitochondrial ribosomal protein S21 protein-coding 16 0.001905
+54461 FBXW5 F-box and WD repeat domain containing 5 protein-coding 57 0.006788
+54462 CCSER2 coiled-coil serine rich protein 2 protein-coding 86 0.01024
+54463 RETREG1 reticulophagy regulator 1 protein-coding 45 0.005359
+54464 XRN1 5'-3' exoribonuclease 1 protein-coding 204 0.02429
+54465 ETAA1 ETAA1, ATR kinase activator protein-coding 102 0.01215
+54466 SPIN2A spindlin family member 2A protein-coding 26 0.003096
+54467 ANKIB1 ankyrin repeat and IBR domain containing 1 protein-coding 116 0.01381
+54468 MIOS meiosis regulator for oocyte development protein-coding 98 0.01167
+54469 ZFAND6 zinc finger AN1-type containing 6 protein-coding 24 0.002858
+54470 ARMCX6 armadillo repeat containing, X-linked 6 protein-coding 36 0.004287
+54471 MIEF1 mitochondrial elongation factor 1 protein-coding 60 0.007145
+54472 TOLLIP toll interacting protein protein-coding 33 0.00393
+54474 KRT20 keratin 20 protein-coding 58 0.006907
+54475 NLE1 notchless homolog 1 protein-coding 40 0.004764
+54476 RNF216 ring finger protein 216 protein-coding 104 0.01239
+54477 PLEKHA5 pleckstrin homology domain containing A5 protein-coding 152 0.0181
+54478 PIMREG PICALM interacting mitotic regulator protein-coding 36 0.004287
+54480 CHPF2 chondroitin polymerizing factor 2 protein-coding 90 0.01072
+54482 TRMT13 tRNA methyltransferase 13 homolog protein-coding 72 0.008574
+54487 DGCR8 DGCR8, microprocessor complex subunit protein-coding 93 0.01108
+54490 UGT2B28 UDP glucuronosyltransferase family 2 member B28 protein-coding 104 0.01239
+54491 OTULINL OTU deubiquitinase with linear linkage specificity like protein-coding 45 0.005359
+54492 NEURL1B neuralized E3 ubiquitin protein ligase 1B protein-coding 34 0.004049
+54494 C11orf71 chromosome 11 open reading frame 71 protein-coding 20 0.002382
+54495 TMX3 thioredoxin related transmembrane protein 3 protein-coding 62 0.007384
+54496 PRMT7 protein arginine methyltransferase 7 protein-coding 66 0.00786
+54497 HEATR5B HEAT repeat containing 5B protein-coding 206 0.02453
+54498 SMOX spermine oxidase protein-coding 153 0.01822
+54499 TMCO1 transmembrane and coiled-coil domains 1 protein-coding 29 0.003454
+54502 RBM47 RNA binding motif protein 47 protein-coding 97 0.01155
+54503 ZDHHC13 zinc finger DHHC-type containing 13 protein-coding 46 0.005478
+54504 CPVL carboxypeptidase, vitellogenic like protein-coding 70 0.008336
+54505 DHX29 DExH-box helicase 29 protein-coding 127 0.01512
+54507 ADAMTSL4 ADAMTS like 4 protein-coding 140 0.01667
+54508 EPB41L4A-DT EPB41L4A divergent transcript ncRNA 1 0.0001191
+54509 RHOF ras homolog family member F, filopodia associated protein-coding 11 0.00131
+54510 PCDH18 protocadherin 18 protein-coding 216 0.02572
+54511 HMGCLL1 3-hydroxymethyl-3-methylglutaryl-CoA lyase like 1 protein-coding 81 0.009646
+54512 EXOSC4 exosome component 4 protein-coding 30 0.003573
+54514 DDX4 DEAD-box helicase 4 protein-coding 102 0.01215
+54516 MTRF1L mitochondrial translational release factor 1 like protein-coding 32 0.003811
+54517 PUS7 pseudouridylate synthase 7 (putative) protein-coding 86 0.01024
+54518 APBB1IP amyloid beta precursor protein binding family B member 1 interacting protein protein-coding 108 0.01286
+54520 CCDC93 coiled-coil domain containing 93 protein-coding 86 0.01024
+54521 WDR44 WD repeat domain 44 protein-coding 134 0.01596
+54522 ANKRD16 ankyrin repeat domain 16 protein-coding 29 0.003454
+54529 ASNSD1 asparagine synthetase domain containing 1 protein-coding 70 0.008336
+54531 MIER2 MIER family member 2 protein-coding 54 0.006431
+54532 USP53 ubiquitin specific peptidase 53 protein-coding 105 0.0125
+54534 MRPL50 mitochondrial ribosomal protein L50 protein-coding 28 0.003335
+54535 CCHCR1 coiled-coil alpha-helical rod protein 1 protein-coding 84 0.01
+54536 EXOC6 exocyst complex component 6 protein-coding 89 0.0106
+54537 FAM35A family with sequence similarity 35 member A protein-coding 74 0.008813
+54538 ROBO4 roundabout guidance receptor 4 protein-coding 168 0.02001
+54539 NDUFB11 NADH:ubiquinone oxidoreductase subunit B11 protein-coding 23 0.002739
+54540 FAM193B family with sequence similarity 193 member B protein-coding 44 0.00524
+54541 DDIT4 DNA damage inducible transcript 4 protein-coding 29 0.003454
+54542 RC3H2 ring finger and CCCH-type domains 2 protein-coding 126 0.01501
+54543 TOMM7 translocase of outer mitochondrial membrane 7 protein-coding 4 0.0004764
+54544 CRCT1 cysteine rich C-terminal 1 protein-coding 14 0.001667
+54545 MTMR12 myotubularin related protein 12 protein-coding 95 0.01131
+54546 RNF186 ring finger protein 186 protein-coding 24 0.002858
+54549 SDK2 sidekick cell adhesion molecule 2 protein-coding 227 0.02703
+54550 NECAB2 N-terminal EF-hand calcium binding protein 2 protein-coding 39 0.004645
+54551 MAGEL2 MAGE family member L2 protein-coding 166 0.01977
+54552 GNL3L G protein nucleolar 3 like protein-coding 89 0.0106
+54554 WDR5B WD repeat domain 5B protein-coding 27 0.003215
+54555 DDX49 DEAD-box helicase 49 protein-coding 35 0.004168
+54556 ING3 inhibitor of growth family member 3 protein-coding 78 0.009289
+54557 SGTB small glutamine rich tetratricopeptide repeat containing beta protein-coding 36 0.004287
+54558 SPATA6 spermatogenesis associated 6 protein-coding 59 0.007026
+54566 EPB41L4B erythrocyte membrane protein band 4.1 like 4B protein-coding 102 0.01215
+54567 DLL4 delta like canonical Notch ligand 4 protein-coding 50 0.005955
+54575 UGT1A10 UDP glucuronosyltransferase family 1 member A10 protein-coding 72 0.008574
+54576 UGT1A8 UDP glucuronosyltransferase family 1 member A8 protein-coding 53 0.006312
+54577 UGT1A7 UDP glucuronosyltransferase family 1 member A7 protein-coding 52 0.006193
+54578 UGT1A6 UDP glucuronosyltransferase family 1 member A6 protein-coding 36 0.004287
+54579 UGT1A5 UDP glucuronosyltransferase family 1 member A5 protein-coding 52 0.006193
+54583 EGLN1 egl-9 family hypoxia inducible factor 1 protein-coding 34 0.004049
+54584 GNB1L G protein subunit beta 1 like protein-coding 55 0.00655
+54585 LZTFL1 leucine zipper transcription factor like 1 protein-coding 35 0.004168
+54586 EQTN equatorin protein-coding 30 0.003573
+54587 MXRA8 matrix remodeling associated 8 protein-coding 60 0.007145
+54596 L1TD1 LINE1 type transposase domain containing 1 protein-coding 92 0.01096
+54600 UGT1A9 UDP glucuronosyltransferase family 1 member A9 protein-coding 58 0.006907
+54602 NDFIP2 Nedd4 family interacting protein 2 protein-coding 21 0.002501
+54606 DDX56 DEAD-box helicase 56 protein-coding 107 0.01274
+54617 INO80 INO80 complex subunit protein-coding 143 0.01703
+54619 CCNJ cyclin J protein-coding 31 0.003692
+54620 FBXL19 F-box and leucine rich repeat protein 19 protein-coding 115 0.0137
+54621 VSIG10 V-set and immunoglobulin domain containing 10 protein-coding 63 0.007503
+54622 ARL15 ADP ribosylation factor like GTPase 15 protein-coding 26 0.003096
+54623 PAF1 PAF1 homolog, Paf1/RNA polymerase II complex component protein-coding 69 0.008217
+54625 PARP14 poly(ADP-ribose) polymerase family member 14 protein-coding 171 0.02036
+54626 HES2 hes family bHLH transcription factor 2 protein-coding 3 0.0003573
+54627 MAP10 microtubule associated protein 10 protein-coding 108 0.01286
+54629 MINDY2 MINDY lysine 48 deubiquitinase 2 protein-coding 53 0.006312
+54657 UGT1A4 UDP glucuronosyltransferase family 1 member A4 protein-coding 80 0.009527
+54659 UGT1A3 UDP glucuronosyltransferase family 1 member A3 protein-coding 40 0.004764
+54660 PCDHB18P protocadherin beta 18 pseudogene pseudo 175 0.02084
+54661 PCDHB17P protocadherin beta 17 pseudogene pseudo 82 0.009765
+54662 TBC1D13 TBC1 domain family member 13 protein-coding 42 0.005002
+54663 WDR74 WD repeat domain 74 protein-coding 34 0.004049
+54664 TMEM106B transmembrane protein 106B protein-coding 36 0.004287
+54665 RSBN1 round spermatid basic protein 1 protein-coding 82 0.009765
+54674 LRRN3 leucine rich repeat neuronal 3 protein-coding 142 0.01691
+54675 CRLS1 cardiolipin synthase 1 protein-coding 19 0.002263
+54676 GTPBP2 GTP binding protein 2 protein-coding 48 0.005716
+54677 CROT carnitine O-octanoyltransferase protein-coding 115 0.0137
+54680 ZNHIT6 zinc finger HIT-type containing 6 protein-coding 54 0.006431
+54681 P4HTM prolyl 4-hydroxylase, transmembrane protein-coding 55 0.00655
+54682 MANSC1 MANSC domain containing 1 protein-coding 48 0.005716
+54700 RRN3 RRN3 homolog, RNA polymerase I transcription factor protein-coding 47 0.005597
+54704 PDP1 pyruvate dehyrogenase phosphatase catalytic subunit 1 protein-coding 61 0.007264
+54707 GPN2 GPN-loop GTPase 2 protein-coding 27 0.003215
+54708 MARCH5 membrane associated ring-CH-type finger 5 protein-coding 26 0.003096
+54714 CNGB3 cyclic nucleotide gated channel beta 3 protein-coding 180 0.02144
+54715 RBFOX1 RNA binding fox-1 homolog 1 protein-coding 145 0.01727
+54716 SLC6A20 solute carrier family 6 member 20 protein-coding 78 0.009289
+54718 BTN2A3P butyrophilin subfamily 2 member A3, pseudogene pseudo 83 0.009884
+54726 OTUD4 OTU deubiquitinase 4 protein-coding 117 0.01393
+54732 TMED9 transmembrane p24 trafficking protein 9 protein-coding 15 0.001786
+54733 SLC35F2 solute carrier family 35 member F2 protein-coding 43 0.005121
+54734 RAB39A RAB39A, member RAS oncogene family protein-coding 31 0.003692
+54737 MPHOSPH8 M-phase phosphoprotein 8 protein-coding 95 0.01131
+54738 FEV FEV, ETS transcription factor protein-coding 12 0.001429
+54739 XAF1 XIAP associated factor 1 protein-coding 24 0.002858
+54741 LEPROT leptin receptor overlapping transcript protein-coding 15 0.001786
+54742 LY6K lymphocyte antigen 6 family member K protein-coding 27 0.003215
+54749 EPDR1 ependymin related 1 protein-coding 42 0.005002
+54751 FBLIM1 filamin binding LIM protein 1 protein-coding 39 0.004645
+54752 FNDC8 fibronectin type III domain containing 8 protein-coding 36 0.004287
+54753 ZNF853 zinc finger protein 853 protein-coding 30 0.003573
+54754 NUTM2F NUT family member 2F protein-coding 69 0.008217
+54756 IL17RD interleukin 17 receptor D protein-coding 79 0.009408
+54757 FAM20A FAM20A, golgi associated secretory pathway pseudokinase protein-coding 55 0.00655
+54758 KLHDC4 kelch domain containing 4 protein-coding 62 0.007384
+54760 PCSK4 proprotein convertase subtilisin/kexin type 4 protein-coding 75 0.008932
+54762 GRAMD1C GRAM domain containing 1C protein-coding 99 0.01179
+54763 ROPN1 rhophilin associated tail protein 1 protein-coding 27 0.003215
+54764 ZRANB1 zinc finger RANBP2-type containing 1 protein-coding 80 0.009527
+54765 TRIM44 tripartite motif containing 44 protein-coding 27 0.003215
+54766 BTG4 BTG anti-proliferation factor 4 protein-coding 39 0.004645
+54768 HYDIN HYDIN, axonemal central pair apparatus protein protein-coding 462 0.05502
+54769 DIRAS2 DIRAS family GTPase 2 protein-coding 31 0.003692
+54776 PPP1R12C protein phosphatase 1 regulatory subunit 12C protein-coding 77 0.00917
+54777 CFAP46 cilia and flagella associated protein 46 protein-coding 220 0.0262
+54778 RNF111 ring finger protein 111 protein-coding 129 0.01536
+54780 NSMCE4A NSE4 homolog A, SMC5-SMC6 complex component protein-coding 23 0.002739
+54784 ALKBH4 alkB homolog 4, lysine demethylase protein-coding 38 0.004525
+54785 BORCS6 BLOC-1 related complex subunit 6 protein-coding 16 0.001905
+54788 DNAJB12 DnaJ heat shock protein family (Hsp40) member B12 protein-coding 35 0.004168
+54790 TET2 tet methylcytosine dioxygenase 2 protein-coding 169 0.02013
+54793 KCTD9 potassium channel tetramerization domain containing 9 protein-coding 50 0.005955
+54795 TRPM4 transient receptor potential cation channel subfamily M member 4 protein-coding 127 0.01512
+54796 BNC2 basonuclin 2 protein-coding 209 0.02489
+54797 MED18 mediator complex subunit 18 protein-coding 25 0.002977
+54798 DCHS2 dachsous cadherin-related 2 protein-coding 423 0.05038
+54799 MBTD1 mbt domain containing 1 protein-coding 50 0.005955
+54800 KLHL24 kelch like family member 24 protein-coding 82 0.009765
+54801 HAUS6 HAUS augmin like complex subunit 6 protein-coding 108 0.01286
+54802 TRIT1 tRNA isopentenyltransferase 1 protein-coding 47 0.005597
+54805 CNNM2 cyclin and CBS domain divalent metal cation transport mediator 2 protein-coding 93 0.01108
+54806 AHI1 Abelson helper integration site 1 protein-coding 114 0.01358
+54807 ZNF586 zinc finger protein 586 protein-coding 57 0.006788
+54808 DYM dymeclin protein-coding 88 0.01048
+54809 SAMD9 sterile alpha motif domain containing 9 protein-coding 224 0.02668
+54810 GIPC2 GIPC PDZ domain containing family member 2 protein-coding 46 0.005478
+54811 ZNF562 zinc finger protein 562 protein-coding 56 0.006669
+54812 AFTPH aftiphilin protein-coding 86 0.01024
+54813 KLHL28 kelch like family member 28 protein-coding 81 0.009646
+54814 QPCTL glutaminyl-peptide cyclotransferase like protein-coding 40 0.004764
+54815 GATAD2A GATA zinc finger domain containing 2A protein-coding 87 0.01036
+54816 ZNF280D zinc finger protein 280D protein-coding 88 0.01048
+54819 ZCCHC10 zinc finger CCHC-type containing 10 protein-coding 12 0.001429
+54820 NDE1 nudE neurodevelopment protein 1 protein-coding 51 0.006074
+54821 ERCC6L ERCC excision repair 6 like, spindle assembly checkpoint helicase protein-coding 96 0.01143
+54822 TRPM7 transient receptor potential cation channel subfamily M member 7 protein-coding 163 0.01941
+54823 SWT1 SWT1, RNA endoribonuclease homolog protein-coding 113 0.01346
+54825 CDHR2 cadherin related family member 2 protein-coding 182 0.02167
+54826 GIN1 gypsy retrotransposon integrase 1 protein-coding 74 0.008813
+54827 NXPE4 neurexophilin and PC-esterase domain family member 4 protein-coding 104 0.01239
+54828 BCAS3 BCAS3, microtubule associated cell migration factor protein-coding 114 0.01358
+54829 ASPN asporin protein-coding 50 0.005955
+54830 NUP62CL nucleoporin 62 C-terminal like protein-coding 27 0.003215
+54831 BEST2 bestrophin 2 protein-coding 60 0.007145
+54832 VPS13C vacuolar protein sorting 13 homolog C protein-coding 337 0.04013
+54834 GDAP2 ganglioside induced differentiation associated protein 2 protein-coding 60 0.007145
+54836 BSPRY B-box and SPRY domain containing protein-coding 37 0.004406
+54838 WBP1L WW domain binding protein 1 like protein-coding 23 0.002739
+54839 LRRC49 leucine rich repeat containing 49 protein-coding 101 0.01203
+54840 APTX aprataxin protein-coding 28 0.003335
+54841 BIVM basic, immunoglobulin-like variable motif containing protein-coding 10 0.001191
+54842 MFSD6 major facilitator superfamily domain containing 6 protein-coding 80 0.009527
+54843 SYTL2 synaptotagmin like 2 protein-coding 201 0.02394
+54845 ESRP1 epithelial splicing regulatory protein 1 protein-coding 138 0.01643
+54847 SIDT1 SID1 transmembrane family member 1 protein-coding 102 0.01215
+54848 ARHGEF38 Rho guanine nucleotide exchange factor 38 protein-coding 31 0.003692
+54849 DEF8 differentially expressed in FDCP 8 homolog protein-coding 50 0.005955
+54850 FBXL12 F-box and leucine rich repeat protein 12 protein-coding 34 0.004049
+54851 ANKRD49 ankyrin repeat domain 49 protein-coding 32 0.003811
+54852 PAQR5 progestin and adipoQ receptor family member 5 protein-coding 36 0.004287
+54853 WDR55 WD repeat domain 55 protein-coding 42 0.005002
+54854 FAM83E family with sequence similarity 83 member E protein-coding 65 0.007741
+54855 FAM46C family with sequence similarity 46 member C protein-coding 44 0.00524
+54856 GON4L gon-4 like protein-coding 231 0.02751
+54857 GDPD2 glycerophosphodiester phosphodiesterase domain containing 2 protein-coding 88 0.01048
+54858 PGPEP1 pyroglutamyl-peptidase I protein-coding 32 0.003811
+54859 ELP6 elongator acetyltransferase complex subunit 6 protein-coding 28 0.003335
+54860 MS4A12 membrane spanning 4-domains A12 protein-coding 52 0.006193
+54861 SNRK SNF related kinase protein-coding 68 0.008098
+54862 CC2D1A coiled-coil and C2 domain containing 1A protein-coding 112 0.01334
+54863 TOR4A torsin family 4 member A protein-coding 26 0.003096
+54865 GPATCH4 G-patch domain containing 4 protein-coding 47 0.005597
+54866 PPP1R14D protein phosphatase 1 regulatory inhibitor subunit 14D protein-coding 12 0.001429
+54867 TMEM214 transmembrane protein 214 protein-coding 51 0.006074
+54868 TMEM104 transmembrane protein 104 protein-coding 52 0.006193
+54869 EPS8L1 EPS8 like 1 protein-coding 93 0.01108
+54870 QRICH1 glutamine rich 1 protein-coding 79 0.009408
+54872 PIGG phosphatidylinositol glycan anchor biosynthesis class G protein-coding 104 0.01239
+54873 PALMD palmdelphin protein-coding 63 0.007503
+54874 FNBP1L formin binding protein 1 like protein-coding 45 0.005359
+54875 CNTLN centlein protein-coding 208 0.02477
+54876 DCAF16 DDB1 and CUL4 associated factor 16 protein-coding 29 0.003454
+54877 ZCCHC2 zinc finger CCHC-type containing 2 protein-coding 89 0.0106
+54878 DPP8 dipeptidyl peptidase 8 protein-coding 85 0.01012
+54879 ST7L suppression of tumorigenicity 7 like protein-coding 48 0.005716
+54880 BCOR BCL6 corepressor protein-coding 259 0.03084
+54881 TEX10 testis expressed 10 protein-coding 113 0.01346
+54882 ANKHD1 ankyrin repeat and KH domain containing 1 protein-coding 242 0.02882
+54883 CWC25 CWC25 spliceosome associated protein homolog protein-coding 50 0.005955
+54884 RETSAT retinol saturase protein-coding 74 0.008813
+54885 TBC1D8B TBC1 domain family member 8B protein-coding 148 0.01763
+54886 PLPPR1 phospholipid phosphatase related 1 protein-coding 62 0.007384
+54887 UHRF1BP1 UHRF1 binding protein 1 protein-coding 138 0.01643
+54888 NSUN2 NOP2/Sun RNA methyltransferase family member 2 protein-coding 100 0.01191
+54890 ALKBH5 alkB homolog 5, RNA demethylase protein-coding 39 0.004645
+54891 INO80D INO80 complex subunit D protein-coding 96 0.01143
+54892 NCAPG2 non-SMC condensin II complex subunit G2 protein-coding 106 0.01262
+54893 MTMR10 myotubularin related protein 10 protein-coding 72 0.008574
+54894 RNF43 ring finger protein 43 protein-coding 216 0.02572
+54896 PQLC2 PQ loop repeat containing 2 protein-coding 33 0.00393
+54897 CASZ1 castor zinc finger 1 protein-coding 170 0.02025
+54898 ELOVL2 ELOVL fatty acid elongase 2 protein-coding 45 0.005359
+54899 PXK PX domain containing serine/threonine kinase like protein-coding 69 0.008217
+54900 LAX1 lymphocyte transmembrane adaptor 1 protein-coding 49 0.005835
+54901 CDKAL1 CDK5 regulatory subunit associated protein 1 like 1 protein-coding 63 0.007503
+54902 TTC19 tetratricopeptide repeat domain 19 protein-coding 32 0.003811
+54903 MKS1 Meckel syndrome, type 1 protein-coding 68 0.008098
+54904 NSD3 nuclear receptor binding SET domain protein 3 protein-coding 159 0.01894
+54905 CYP2W1 cytochrome P450 family 2 subfamily W member 1 protein-coding 51 0.006074
+54906 FAM208B family with sequence similarity 208 member B protein-coding 185 0.02203
+54908 SPDL1 spindle apparatus coiled-coil protein 1 protein-coding 80 0.009527
+54910 SEMA4C semaphorin 4C protein-coding 84 0.01
+54913 RPP25 ribonuclease P and MRP subunit p25 protein-coding 8 0.0009527
+54914 FOCAD focadhesin protein-coding 156 0.01858
+54915 YTHDF1 YTH N6-methyladenosine RNA binding protein 1 protein-coding 70 0.008336
+54916 TMEM260 transmembrane protein 260 protein-coding 79 0.009408
+54918 CMTM6 CKLF like MARVEL transmembrane domain containing 6 protein-coding 14 0.001667
+54919 DNAAF5 dynein axonemal assembly factor 5 protein-coding 58 0.006907
+54920 DUS2 dihydrouridine synthase 2 protein-coding 45 0.005359
+54921 CHTF8 chromosome transmission fidelity factor 8 protein-coding 34 0.004049
+54922 RASIP1 Ras interacting protein 1 protein-coding 67 0.007979
+54923 LIME1 Lck interacting transmembrane adaptor 1 protein-coding 11 0.00131
+54925 ZSCAN32 zinc finger and SCAN domain containing 32 protein-coding 58 0.006907
+54926 UBE2R2 ubiquitin conjugating enzyme E2 R2 protein-coding 27 0.003215
+54927 CHCHD3 coiled-coil-helix-coiled-coil-helix domain containing 3 protein-coding 36 0.004287
+54928 IMPAD1 inositol monophosphatase domain containing 1 protein-coding 45 0.005359
+54929 TMEM161A transmembrane protein 161A protein-coding 50 0.005955
+54930 HAUS4 HAUS augmin like complex subunit 4 protein-coding 41 0.004883
+54931 TRMT10C tRNA methyltransferase 10C, mitochondrial RNase P subunit protein-coding 56 0.006669
+54932 EXD3 exonuclease 3'-5' domain containing 3 protein-coding 73 0.008694
+54933 RHBDL2 rhomboid like 2 protein-coding 35 0.004168
+54934 KANSL2 KAT8 regulatory NSL complex subunit 2 protein-coding 49 0.005835
+54935 DUSP23 dual specificity phosphatase 23 protein-coding 6 0.0007145
+54936 ADPRHL2 ADP-ribosylhydrolase like 2 protein-coding 29 0.003454
+54937 SOHLH2 spermatogenesis and oogenesis specific basic helix-loop-helix 2 protein-coding 82 0.009765
+54938 SARS2 seryl-tRNA synthetase 2, mitochondrial protein-coding 105 0.0125
+54939 COMMD4 COMM domain containing 4 protein-coding 19 0.002263
+54940 OCIAD1 OCIA domain containing 1 protein-coding 46 0.005478
+54941 RNF125 ring finger protein 125 protein-coding 40 0.004764
+54942 FAM206A family with sequence similarity 206 member A protein-coding 14 0.001667
+54943 DNAJC28 DnaJ heat shock protein family (Hsp40) member C28 protein-coding 54 0.006431
+54946 SLC41A3 solute carrier family 41 member 3 protein-coding 55 0.00655
+54947 LPCAT2 lysophosphatidylcholine acyltransferase 2 protein-coding 71 0.008455
+54948 MRPL16 mitochondrial ribosomal protein L16 protein-coding 28 0.003335
+54949 SDHAF2 succinate dehydrogenase complex assembly factor 2 protein-coding 27 0.003215
+54951 COMMD8 COMM domain containing 8 protein-coding 29 0.003454
+54952 TRNAU1AP tRNA selenocysteine 1 associated protein 1 protein-coding 23 0.002739
+54953 ODR4 odr-4 GPCR localization factor homolog protein-coding 39 0.004645
+54954 FAM120C family with sequence similarity 120C protein-coding 116 0.01381
+54955 C1orf109 chromosome 1 open reading frame 109 protein-coding 15 0.001786
+54956 PARP16 poly(ADP-ribose) polymerase family member 16 protein-coding 29 0.003454
+54957 TXNL4B thioredoxin like 4B protein-coding 17 0.002025
+54958 TMEM160 transmembrane protein 160 protein-coding 2 0.0002382
+54959 ODAM odontogenic, ameloblast associated protein-coding 46 0.005478
+54960 GEMIN8 gem nuclear organelle associated protein 8 protein-coding 41 0.004883
+54961 SSH3 slingshot protein phosphatase 3 protein-coding 86 0.01024
+54962 TIPIN TIMELESS interacting protein protein-coding 28 0.003335
+54963 UCKL1 uridine-cytidine kinase 1 like 1 protein-coding 57 0.006788
+54964 C1orf56 chromosome 1 open reading frame 56 protein-coding 28 0.003335
+54965 PIGX phosphatidylinositol glycan anchor biosynthesis class X protein-coding 16 0.001905
+54967 CT55 cancer/testis antigen 55 protein-coding 44 0.00524
+54968 TMEM70 transmembrane protein 70 protein-coding 26 0.003096
+54969 HPF1 histone PARylation factor 1 protein-coding 36 0.004287
+54970 TTC12 tetratricopeptide repeat domain 12 protein-coding 88 0.01048
+54971 BANP BTG3 associated nuclear protein protein-coding 60 0.007145
+54972 TMEM132A transmembrane protein 132A protein-coding 119 0.01417
+54973 INTS11 integrator complex subunit 11 protein-coding 67 0.007979
+54974 THG1L tRNA-histidine guanylyltransferase 1 like protein-coding 31 0.003692
+54976 C20orf27 chromosome 20 open reading frame 27 protein-coding 30 0.003573
+54977 SLC25A38 solute carrier family 25 member 38 protein-coding 42 0.005002
+54978 SLC35F6 solute carrier family 35 member F6 protein-coding 26 0.003096
+54979 HRASLS2 HRAS like suppressor 2 protein-coding 21 0.002501
+54980 C2orf42 chromosome 2 open reading frame 42 protein-coding 55 0.00655
+54981 NMRK1 nicotinamide riboside kinase 1 protein-coding 26 0.003096
+54982 CLN6 CLN6, transmembrane ER protein protein-coding 24 0.002858
+54984 PINX1 PIN2 (TERF1) interacting telomerase inhibitor 1 protein-coding 24 0.002858
+54985 HCFC1R1 host cell factor C1 regulator 1 protein-coding 28 0.003335
+54986 ULK4 unc-51 like kinase 4 protein-coding 127 0.01512
+54987 C1orf123 chromosome 1 open reading frame 123 protein-coding 24 0.002858
+54988 ACSM5 acyl-CoA synthetase medium chain family member 5 protein-coding 124 0.01477
+54989 ZNF770 zinc finger protein 770 protein-coding 84 0.01
+54991 C1orf159 chromosome 1 open reading frame 159 protein-coding 15 0.001786
+54993 ZSCAN2 zinc finger and SCAN domain containing 2 protein-coding 57 0.006788
+54994 GID8 GID complex subunit 8 homolog protein-coding 33 0.00393
+54995 OXSM 3-oxoacyl-ACP synthase, mitochondrial protein-coding 62 0.007384
+54996 MARC2 mitochondrial amidoxime reducing component 2 protein-coding 33 0.00393
+54997 TESC tescalcin protein-coding 27 0.003215
+54998 AURKAIP1 aurora kinase A interacting protein 1 protein-coding 41 0.004883
+55001 TTC22 tetratricopeptide repeat domain 22 protein-coding 32 0.003811
+55002 TMCO3 transmembrane and coiled-coil domains 3 protein-coding 90 0.01072
+55003 PAK1IP1 PAK1 interacting protein 1 protein-coding 41 0.004883
+55004 LAMTOR1 late endosomal/lysosomal adaptor, MAPK and MTOR activator 1 protein-coding 16 0.001905
+55005 RMND1 required for meiotic nuclear division 1 homolog protein-coding 50 0.005955
+55006 TRMT61B tRNA methyltransferase 61B protein-coding 49 0.005835
+55007 FAM118A family with sequence similarity 118 member A protein-coding 31 0.003692
+55008 HERC6 HECT and RLD domain containing E3 ubiquitin protein ligase family member 6 protein-coding 121 0.01441
+55009 C19orf24 chromosome 19 open reading frame 24 protein-coding 7 0.0008336
+55010 PARPBP PARP1 binding protein protein-coding 89 0.0106
+55011 PIH1D1 PIH1 domain containing 1 protein-coding 38 0.004525
+55012 PPP2R3C protein phosphatase 2 regulatory subunit B''gamma protein-coding 44 0.00524
+55013 MCUB mitochondrial calcium uniporter dominant negative beta subunit protein-coding 38 0.004525
+55014 STX17 syntaxin 17 protein-coding 28 0.003335
+55015 PRPF39 pre-mRNA processing factor 39 protein-coding 64 0.007622
+55016 MARCH1 membrane associated ring-CH-type finger 1 protein-coding 54 0.006431
+55017 C14orf119 chromosome 14 open reading frame 119 protein-coding 15 0.001786
+55018 LINC00483 long intergenic non-protein coding RNA 483 protein-coding 3 0.0003573
+55020 TTC38 tetratricopeptide repeat domain 38 protein-coding 57 0.006788
+55022 PID1 phosphotyrosine interaction domain containing 1 protein-coding 55 0.00655
+55023 PHIP pleckstrin homology domain interacting protein protein-coding 260 0.03096
+55024 BANK1 B cell scaffold protein with ankyrin repeats 1 protein-coding 120 0.01429
+55026 TMEM255A transmembrane protein 255A protein-coding 56 0.006669
+55027 HEATR3 HEAT repeat containing 3 protein-coding 66 0.00786
+55028 C17orf80 chromosome 17 open reading frame 80 protein-coding 51 0.006074
+55030 FBXO34 F-box protein 34 protein-coding 90 0.01072
+55031 USP47 ubiquitin specific peptidase 47 protein-coding 114 0.01358
+55032 SLC35A5 solute carrier family 35 member A5 protein-coding 49 0.005835
+55033 FKBP14 FK506 binding protein 14 protein-coding 26 0.003096
+55034 MOCOS molybdenum cofactor sulfurase protein-coding 155 0.01846
+55035 NOL8 nucleolar protein 8 protein-coding 105 0.0125
+55036 CCDC40 coiled-coil domain containing 40 protein-coding 144 0.01715
+55037 PTCD3 pentatricopeptide repeat domain 3 protein-coding 74 0.008813
+55038 CDCA4 cell division cycle associated 4 protein-coding 31 0.003692
+55039 TRMT12 tRNA methyltransferase 12 homolog protein-coding 52 0.006193
+55040 EPN3 epsin 3 protein-coding 62 0.007384
+55041 PLEKHB2 pleckstrin homology domain containing B2 protein-coding 43 0.005121
+55048 VPS37C VPS37C, ESCRT-I subunit protein-coding 38 0.004525
+55049 REX1BD required for excision 1-B domain containing protein-coding 7 0.0008336
+55051 NRDE2 NRDE-2, necessary for RNA interference, domain containing protein-coding 116 0.01381
+55052 MRPL20 mitochondrial ribosomal protein L20 protein-coding 19 0.002263
+55054 ATG16L1 autophagy related 16 like 1 protein-coding 68 0.008098
+55055 ZWILCH zwilch kinetochore protein protein-coding 55 0.00655
+55057 CRYBG2 crystallin beta-gamma domain containing 2 protein-coding 61 0.007264
+55061 SUSD4 sushi domain containing 4 protein-coding 65 0.007741
+55062 WIPI1 WD repeat domain, phosphoinositide interacting 1 protein-coding 44 0.00524
+55063 ZCWPW1 zinc finger CW-type and PWWP domain containing 1 protein-coding 70 0.008336
+55064 SPATA6L spermatogenesis associated 6 like protein-coding 31 0.003692
+55065 SLC52A1 solute carrier family 52 member 1 protein-coding 73 0.008694
+55066 PDPR pyruvate dehydrogenase phosphatase regulatory subunit protein-coding 113 0.01346
+55068 ENOX1 ecto-NOX disulfide-thiol exchanger 1 protein-coding 106 0.01262
+55069 TMEM248 transmembrane protein 248 protein-coding 41 0.004883
+55070 DET1 DET1, COP1 ubiquitin ligase partner protein-coding 83 0.009884
+55071 C9orf40 chromosome 9 open reading frame 40 protein-coding 10 0.001191
+55072 RNF31 ring finger protein 31 protein-coding 118 0.01405
+55073 LRRC37A4P leucine rich repeat containing 37 member A4, pseudogene pseudo 36 0.004287
+55074 OXR1 oxidation resistance 1 protein-coding 111 0.01322
+55075 UACA uveal autoantigen with coiled-coil domains and ankyrin repeats protein-coding 160 0.01905
+55076 TMEM45A transmembrane protein 45A protein-coding 36 0.004287
+55079 FEZF2 FEZ family zinc finger 2 protein-coding 60 0.007145
+55080 TAPBPL TAP binding protein like protein-coding 29 0.003454
+55081 IFT57 intraflagellar transport 57 protein-coding 45 0.005359
+55082 ARGLU1 arginine and glutamate rich 1 protein-coding 37 0.004406
+55083 KIF26B kinesin family member 26B protein-coding 257 0.03061
+55084 SOBP sine oculis binding protein homolog protein-coding 108 0.01286
+55086 CXorf57 chromosome X open reading frame 57 protein-coding 115 0.0137
+55088 CCDC186 coiled-coil domain containing 186 protein-coding 82 0.009765
+55089 SLC38A4 solute carrier family 38 member 4 protein-coding 70 0.008336
+55090 MED9 mediator complex subunit 9 protein-coding 100 0.01191
+55092 TMEM51 transmembrane protein 51 protein-coding 46 0.005478
+55093 WDYHV1 WDYHV motif containing 1 protein-coding 28 0.003335
+55094 GPATCH1 G-patch domain containing 1 protein-coding 82 0.009765
+55095 SAMD4B sterile alpha motif domain containing 4B protein-coding 65 0.007741
+55096 EBLN2 endogenous Bornavirus like nucleoprotein 2 protein-coding 19 0.002263
+55100 WDR70 WD repeat domain 70 protein-coding 102 0.01215
+55101 DMAC2 distal membrane arm assembly complex 2 protein-coding 30 0.003573
+55102 ATG2B autophagy related 2B protein-coding 204 0.02429
+55103 RALGPS2 Ral GEF with PH domain and SH3 binding motif 2 protein-coding 74 0.008813
+55105 GPATCH2 G-patch domain containing 2 protein-coding 75 0.008932
+55106 SLFN12 schlafen family member 12 protein-coding 69 0.008217
+55107 ANO1 anoctamin 1 protein-coding 125 0.01489
+55108 BSDC1 BSD domain containing 1 protein-coding 49 0.005835
+55109 AGGF1 angiogenic factor with G-patch and FHA domains 1 protein-coding 89 0.0106
+55110 MAGOHB mago homolog B, exon junction complex core component protein-coding 18 0.002144
+55111 PLEKHJ1 pleckstrin homology domain containing J1 protein-coding 7 0.0008336
+55112 WDR60 WD repeat domain 60 protein-coding 127 0.01512
+55113 XKR8 XK related 8 protein-coding 29 0.003454
+55114 ARHGAP17 Rho GTPase activating protein 17 protein-coding 114 0.01358
+55116 TMEM39B transmembrane protein 39B protein-coding 43 0.005121
+55117 SLC6A15 solute carrier family 6 member 15 protein-coding 136 0.0162
+55118 CRTAC1 cartilage acidic protein 1 protein-coding 88 0.01048
+55119 PRPF38B pre-mRNA processing factor 38B protein-coding 73 0.008694
+55120 FANCL Fanconi anemia complementation group L protein-coding 49 0.005835
+55122 AKIRIN2 akirin 2 protein-coding 29 0.003454
+55124 PIWIL2 piwi like RNA-mediated gene silencing 2 protein-coding 114 0.01358
+55125 CEP192 centrosomal protein 192 protein-coding 228 0.02715
+55127 HEATR1 HEAT repeat containing 1 protein-coding 215 0.0256
+55128 TRIM68 tripartite motif containing 68 protein-coding 64 0.007622
+55129 ANO10 anoctamin 10 protein-coding 75 0.008932
+55130 ARMC4 armadillo repeat containing 4 protein-coding 176 0.02096
+55131 RBM28 RNA binding motif protein 28 protein-coding 87 0.01036
+55132 LARP1B La ribonucleoprotein domain family member 1B protein-coding 101 0.01203
+55133 SRBD1 S1 RNA binding domain 1 protein-coding 105 0.0125
+55135 WRAP53 WD repeat containing antisense to TP53 protein-coding 55 0.00655
+55137 FIGN fidgetin, microtubule severing factor protein-coding 159 0.01894
+55138 FAM90A1 family with sequence similarity 90 member A1 protein-coding 92 0.01096
+55139 ANKZF1 ankyrin repeat and zinc finger domain containing 1 protein-coding 70 0.008336
+55140 ELP3 elongator acetyltransferase complex subunit 3 protein-coding 52 0.006193
+55142 HAUS2 HAUS augmin like complex subunit 2 protein-coding 21 0.002501
+55143 CDCA8 cell division cycle associated 8 protein-coding 24 0.002858
+55144 LRRC8D leucine rich repeat containing 8 VRAC subunit D protein-coding 73 0.008694
+55145 THAP1 THAP domain containing 1 protein-coding 24 0.002858
+55146 ZDHHC4 zinc finger DHHC-type containing 4 protein-coding 39 0.004645
+55147 RBM23 RNA binding motif protein 23 protein-coding 40 0.004764
+55148 UBR7 ubiquitin protein ligase E3 component n-recognin 7 (putative) protein-coding 34 0.004049
+55149 MTPAP mitochondrial poly(A) polymerase protein-coding 65 0.007741
+55150 C19orf73 chromosome 19 open reading frame 73 protein-coding 14 0.001667
+55151 TMEM38B transmembrane protein 38B protein-coding 53 0.006312
+55152 DALRD3 DALR anticodon binding domain containing 3 protein-coding 51 0.006074
+55153 SDAD1 SDA1 domain containing 1 protein-coding 68 0.008098
+55154 MSTO1 misato 1, mitochondrial distribution and morphology regulator protein-coding 44 0.00524
+55156 ARMC1 armadillo repeat containing 1 protein-coding 37 0.004406
+55157 DARS2 aspartyl-tRNA synthetase 2, mitochondrial protein-coding 67 0.007979
+55159 RFWD3 ring finger and WD repeat domain 3 protein-coding 68 0.008098
+55160 ARHGEF10L Rho guanine nucleotide exchange factor 10 like protein-coding 140 0.01667
+55161 TMEM33 transmembrane protein 33 protein-coding 18 0.002144
+55163 PNPO pyridoxamine 5'-phosphate oxidase protein-coding 24 0.002858
+55164 SHQ1 SHQ1, H/ACA ribonucleoprotein assembly factor protein-coding 60 0.007145
+55165 CEP55 centrosomal protein 55 protein-coding 59 0.007026
+55166 CENPQ centromere protein Q protein-coding 30 0.003573
+55167 MSL2 MSL complex subunit 2 protein-coding 71 0.008455
+55168 MRPS18A mitochondrial ribosomal protein S18A protein-coding 12 0.001429
+55170 PRMT6 protein arginine methyltransferase 6 protein-coding 44 0.00524
+55171 TBCCD1 TBCC domain containing 1 protein-coding 52 0.006193
+55172 DNAAF2 dynein axonemal assembly factor 2 protein-coding 63 0.007503
+55173 MRPS10 mitochondrial ribosomal protein S10 protein-coding 22 0.00262
+55174 INTS10 integrator complex subunit 10 protein-coding 72 0.008574
+55175 KLHL11 kelch like family member 11 protein-coding 74 0.008813
+55176 SEC61A2 Sec61 translocon alpha 2 subunit protein-coding 43 0.005121
+55177 RMDN3 regulator of microtubule dynamics 3 protein-coding 36 0.004287
+55178 MRM3 mitochondrial rRNA methyltransferase 3 protein-coding 39 0.004645
+55179 FAIM Fas apoptotic inhibitory molecule protein-coding 28 0.003335
+55180 LINS1 lines homolog 1 protein-coding 75 0.008932
+55181 SMG8 SMG8, nonsense mediated mRNA decay factor protein-coding 130 0.01548
+55182 RNF220 ring finger protein 220 protein-coding 94 0.01119
+55183 RIF1 replication timing regulatory factor 1 protein-coding 222 0.02644
+55184 DZANK1 double zinc ribbon and ankyrin repeat domains 1 protein-coding 89 0.0106
+55186 SLC25A36 solute carrier family 25 member 36 protein-coding 38 0.004525
+55187 VPS13D vacuolar protein sorting 13 homolog D protein-coding 338 0.04025
+55188 RIC8B RIC8 guanine nucleotide exchange factor B protein-coding 56 0.006669
+55190 NUDT11 nudix hydrolase 11 protein-coding 33 0.00393
+55191 NADSYN1 NAD synthetase 1 protein-coding 75 0.008932
+55192 DNAJC17 DnaJ heat shock protein family (Hsp40) member C17 protein-coding 35 0.004168
+55193 PBRM1 polybromo 1 protein-coding 351 0.0418
+55194 EVA1B eva-1 homolog B protein-coding 13 0.001548
+55195 CCDC198 coiled-coil domain containing 198 protein-coding 40 0.004764
+55196 KIAA1551 KIAA1551 protein-coding 174 0.02072
+55197 RPRD1A regulation of nuclear pre-mRNA domain containing 1A protein-coding 39 0.004645
+55198 APPL2 adaptor protein, phosphotyrosine interacting with PH domain and leucine zipper 2 protein-coding 74 0.008813
+55199 FAM86C1 family with sequence similarity 86 member C1 protein-coding 17 0.002025
+55200 PLEKHG6 pleckstrin homology and RhoGEF domain containing G6 protein-coding 84 0.01
+55201 MAP1S microtubule associated protein 1S protein-coding 100 0.01191
+55203 LGI2 leucine rich repeat LGI family member 2 protein-coding 82 0.009765
+55204 GOLPH3L golgi phosphoprotein 3 like protein-coding 29 0.003454
+55205 ZNF532 zinc finger protein 532 protein-coding 125 0.01489
+55206 SBNO1 strawberry notch homolog 1 protein-coding 144 0.01715
+55207 ARL8B ADP ribosylation factor like GTPase 8B protein-coding 31 0.003692
+55208 DCUN1D2 defective in cullin neddylation 1 domain containing 2 protein-coding 31 0.003692
+55209 SETD5 SET domain containing 5 protein-coding 154 0.01834
+55210 ATAD3A ATPase family, AAA domain containing 3A protein-coding 60 0.007145
+55211 DPPA4 developmental pluripotency associated 4 protein-coding 92 0.01096
+55212 BBS7 Bardet-Biedl syndrome 7 protein-coding 85 0.01012
+55213 RCBTB1 RCC1 and BTB domain containing protein 1 protein-coding 53 0.006312
+55214 P3H2 prolyl 3-hydroxylase 2 protein-coding 90 0.01072
+55215 FANCI Fanconi anemia complementation group I protein-coding 126 0.01501
+55216 NKAPD1 NKAP domain containing 1 protein-coding 55 0.00655
+55217 TMLHE trimethyllysine hydroxylase, epsilon protein-coding 46 0.005478
+55218 EXD2 exonuclease 3'-5' domain containing 2 protein-coding 54 0.006431
+55219 MACO1 macoilin 1 protein-coding 73 0.008694
+55220 KLHDC8A kelch domain containing 8A protein-coding 44 0.00524
+55222 LRRC20 leucine rich repeat containing 20 protein-coding 15 0.001786
+55223 TRIM62 tripartite motif containing 62 protein-coding 54 0.006431
+55224 ETNK2 ethanolamine kinase 2 protein-coding 23 0.002739
+55225 RAVER2 ribonucleoprotein, PTB binding 2 protein-coding 82 0.009765
+55226 NAT10 N-acetyltransferase 10 protein-coding 90 0.01072
+55227 LRRC1 leucine rich repeat containing 1 protein-coding 60 0.007145
+55228 PNMA8A PNMA family member 8A protein-coding 68 0.008098
+55229 PANK4 pantothenate kinase 4 protein-coding 65 0.007741
+55230 USP40 ubiquitin specific peptidase 40 protein-coding 114 0.01358
+55231 CCDC87 coiled-coil domain containing 87 protein-coding 103 0.01227
+55233 MOB1A MOB kinase activator 1A protein-coding 13 0.001548
+55234 SMU1 SMU1, DNA replication regulator and spliceosomal factor protein-coding 39 0.004645
+55236 UBA6 ubiquitin like modifier activating enzyme 6 protein-coding 135 0.01608
+55237 VRTN vertebrae development associated protein-coding 113 0.01346
+55238 SLC38A7 solute carrier family 38 member 7 protein-coding 48 0.005716
+55239 OGFOD1 2-oxoglutarate and iron dependent oxygenase domain containing 1 protein-coding 41 0.004883
+55240 STEAP3 STEAP3 metalloreductase protein-coding 58 0.006907
+55243 KIRREL1 kirre like nephrin family adhesion molecule 1 protein-coding 132 0.01572
+55244 SLC47A1 solute carrier family 47 member 1 protein-coding 63 0.007503
+55245 UQCC1 ubiquinol-cytochrome c reductase complex assembly factor 1 protein-coding 41 0.004883
+55246 CCDC25 coiled-coil domain containing 25 protein-coding 26 0.003096
+55247 NEIL3 nei like DNA glycosylase 3 protein-coding 68 0.008098
+55248 TMEM206 transmembrane protein 206 protein-coding 56 0.006669
+55249 YY1AP1 YY1 associated protein 1 protein-coding 116 0.01381
+55250 ELP2 elongator acetyltransferase complex subunit 2 protein-coding 69 0.008217
+55251 PCMTD2 protein-L-isoaspartate (D-aspartate) O-methyltransferase domain containing 2 protein-coding 54 0.006431
+55252 ASXL2 additional sex combs like 2, transcriptional regulator protein-coding 188 0.02239
+55253 TYW1 tRNA-yW synthesizing protein 1 homolog protein-coding 85 0.01012
+55254 TMEM39A transmembrane protein 39A protein-coding 60 0.007145
+55255 WDR41 WD repeat domain 41 protein-coding 55 0.00655
+55256 ADI1 acireductone dioxygenase 1 protein-coding 18 0.002144
+55257 MRGBP MRG domain binding protein protein-coding 30 0.003573
+55258 THNSL2 threonine synthase like 2 protein-coding 68 0.008098
+55259 CASC1 cancer susceptibility 1 protein-coding 77 0.00917
+55260 TMEM143 transmembrane protein 143 protein-coding 41 0.004883
+55262 C7orf43 chromosome 7 open reading frame 43 protein-coding 44 0.00524
+55266 TMEM19 transmembrane protein 19 protein-coding 38 0.004525
+55267 PRR34 proline rich 34 protein-coding 3 0.0003573
+55268 ECHDC2 enoyl-CoA hydratase domain containing 2 protein-coding 41 0.004883
+55269 PSPC1 paraspeckle component 1 protein-coding 93 0.01108
+55270 NUDT15 nudix hydrolase 15 protein-coding 14 0.001667
+55272 IMP3 IMP3, U3 small nucleolar ribonucleoprotein protein-coding 11 0.00131
+55273 TMEM100 transmembrane protein 100 protein-coding 35 0.004168
+55274 PHF10 PHD finger protein 10 protein-coding 55 0.00655
+55275 VPS53 VPS53, GARP complex subunit protein-coding 72 0.008574
+55276 PGM2 phosphoglucomutase 2 protein-coding 67 0.007979
+55277 FGGY FGGY carbohydrate kinase domain containing protein-coding 81 0.009646
+55278 QRSL1 glutaminyl-tRNA synthase (glutamine-hydrolyzing)-like 1 protein-coding 47 0.005597
+55279 ZNF654 zinc finger protein 654 protein-coding 61 0.007264
+55280 CWF19L1 CWF19 like 1, cell cycle control (S. pombe) protein-coding 47 0.005597
+55281 TMEM140 transmembrane protein 140 protein-coding 24 0.002858
+55282 LRRC36 leucine rich repeat containing 36 protein-coding 100 0.01191
+55283 MCOLN3 mucolipin 3 protein-coding 81 0.009646
+55284 UBE2W ubiquitin conjugating enzyme E2 W protein-coding 24 0.002858
+55285 RBM41 RNA binding motif protein 41 protein-coding 54 0.006431
+55286 C4orf19 chromosome 4 open reading frame 19 protein-coding 32 0.003811
+55287 TMEM40 transmembrane protein 40 protein-coding 28 0.003335
+55288 RHOT1 ras homolog family member T1 protein-coding 67 0.007979
+55289 ACOXL acyl-CoA oxidase like protein-coding 74 0.008813
+55290 BRF2 BRF2, RNA polymerase III transcription initiation factor subunit protein-coding 43 0.005121
+55291 PPP6R3 protein phosphatase 6 regulatory subunit 3 protein-coding 106 0.01262
+55293 UEVLD UEV and lactate/malate dehyrogenase domains protein-coding 52 0.006193
+55294 FBXW7 F-box and WD repeat domain containing 7 protein-coding 428 0.05097
+55295 KLHL26 kelch like family member 26 protein-coding 59 0.007026
+55296 TBC1D19 TBC1 domain family member 19 protein-coding 71 0.008455
+55297 CCDC91 coiled-coil domain containing 91 protein-coding 62 0.007384
+55298 RNF121 ring finger protein 121 protein-coding 30 0.003573
+55299 BRIX1 BRX1, biogenesis of ribosomes protein-coding 34 0.004049
+55300 PI4K2B phosphatidylinositol 4-kinase type 2 beta protein-coding 37 0.004406
+55301 OLAH oleoyl-ACP hydrolase protein-coding 59 0.007026
+55303 GIMAP4 GTPase, IMAP family member 4 protein-coding 61 0.007264
+55304 SPTLC3 serine palmitoyltransferase long chain base subunit 3 protein-coding 89 0.0106
+55308 DDX19A DEAD-box helicase 19A protein-coding 48 0.005716
+55311 ZNF444 zinc finger protein 444 protein-coding 10 0.001191
+55312 RFK riboflavin kinase protein-coding 17 0.002025
+55313 CPPED1 calcineurin like phosphoesterase domain containing 1 protein-coding 47 0.005597
+55314 TMEM144 transmembrane protein 144 protein-coding 40 0.004764
+55315 SLC29A3 solute carrier family 29 member 3 protein-coding 58 0.006907
+55316 RSAD1 radical S-adenosyl methionine domain containing 1 protein-coding 52 0.006193
+55317 AP5S1 adaptor related protein complex 5 sigma 1 subunit protein-coding 21 0.002501
+55319 TMA16 translation machinery associated 16 homolog protein-coding 33 0.00393
+55320 MIS18BP1 MIS18 binding protein 1 protein-coding 118 0.01405
+55321 TMEM74B transmembrane protein 74B protein-coding 30 0.003573
+55322 C5orf22 chromosome 5 open reading frame 22 protein-coding 50 0.005955
+55323 LARP6 La ribonucleoprotein domain family member 6 protein-coding 63 0.007503
+55324 ABCF3 ATP binding cassette subfamily F member 3 protein-coding 87 0.01036
+55325 UFSP2 UFM1 specific peptidase 2 protein-coding 57 0.006788
+55326 AGPAT5 1-acylglycerol-3-phosphate O-acyltransferase 5 protein-coding 36 0.004287
+55327 LIN7C lin-7 homolog C, crumbs cell polarity complex component protein-coding 26 0.003096
+55328 RNLS renalase, FAD dependent amine oxidase protein-coding 54 0.006431
+55329 MNS1 meiosis specific nuclear structural 1 protein-coding 59 0.007026
+55330 BLOC1S4 biogenesis of lysosomal organelles complex 1 subunit 4 protein-coding 9 0.001072
+55331 ACER3 alkaline ceramidase 3 protein-coding 33 0.00393
+55332 DRAM1 DNA damage regulated autophagy modulator 1 protein-coding 25 0.002977
+55333 SYNJ2BP synaptojanin 2 binding protein protein-coding 15 0.001786
+55334 SLC39A9 solute carrier family 39 member 9 protein-coding 31 0.003692
+55335 NIPSNAP3B nipsnap homolog 3B protein-coding 30 0.003573
+55336 FBXL8 F-box and leucine rich repeat protein 8 protein-coding 18 0.002144
+55337 C19orf66 chromosome 19 open reading frame 66 protein-coding 24 0.002858
+55339 WDR33 WD repeat domain 33 protein-coding 176 0.02096
+55340 GIMAP5 GTPase, IMAP family member 5 protein-coding 49 0.005835
+55341 LSG1 large 60S subunit nuclear export GTPase 1 protein-coding 75 0.008932
+55342 STRBP spermatid perinuclear RNA binding protein protein-coding 67 0.007979
+55343 SLC35C1 solute carrier family 35 member C1 protein-coding 26 0.003096
+55344 PLCXD1 phosphatidylinositol specific phospholipase C X domain containing 1 protein-coding 39 0.004645
+55345 ZGRF1 zinc finger GRF-type containing 1 protein-coding 181 0.02156
+55346 TCP11L1 t-complex 11 like 1 protein-coding 57 0.006788
+55347 ABHD10 abhydrolase domain containing 10 protein-coding 40 0.004764
+55349 CHDH choline dehydrogenase protein-coding 42 0.005002
+55350 VNN3 vanin 3 protein-coding 32 0.003811
+55351 STK32B serine/threonine kinase 32B protein-coding 89 0.0106
+55352 COPRS coordinator of PRMT5 and differentiation stimulator protein-coding 18 0.002144
+55353 LAPTM4B lysosomal protein transmembrane 4 beta protein-coding 20 0.002382
+55355 HJURP Holliday junction recognition protein protein-coding 85 0.01012
+55356 SLC22A15 solute carrier family 22 member 15 protein-coding 51 0.006074
+55357 TBC1D2 TBC1 domain family member 2 protein-coding 84 0.01
+55359 STYK1 serine/threonine/tyrosine kinase 1 protein-coding 63 0.007503
+55361 PI4K2A phosphatidylinositol 4-kinase type 2 alpha protein-coding 55 0.00655
+55362 TMEM63B transmembrane protein 63B protein-coding 88 0.01048
+55363 HEMGN hemogen protein-coding 66 0.00786
+55364 IMPACT impact RWD domain protein protein-coding 42 0.005002
+55365 TMEM176A transmembrane protein 176A protein-coding 35 0.004168
+55366 LGR4 leucine rich repeat containing G protein-coupled receptor 4 protein-coding 95 0.01131
+55367 PIDD1 p53-induced death domain protein 1 protein-coding 85 0.01012
+55370 PPP4R1L protein phosphatase 4 regulatory subunit 1 like (pseudogene) pseudo 21 0.002501
+55374 TMCO6 transmembrane and coiled-coil domains 6 protein-coding 51 0.006074
+55379 LRRC59 leucine rich repeat containing 59 protein-coding 28 0.003335
+55384 MEG3 maternally expressed 3 (non-protein coding) ncRNA 2 0.0002382
+55388 MCM10 minichromosome maintenance 10 replication initiation factor protein-coding 101 0.01203
+55421 NCBP3 nuclear cap binding subunit 3 protein-coding 56 0.006669
+55422 ZNF331 zinc finger protein 331 protein-coding 99 0.01179
+55423 SIRPG signal regulatory protein gamma protein-coding 81 0.009646
+55425 GPALPP1 GPALPP motifs containing 1 protein-coding 40 0.004764
+55432 YOD1 YOD1 deubiquitinase protein-coding 28 0.003335
+55435 AP1AR adaptor related protein complex 1 associated regulatory protein protein-coding 21 0.002501
+55437 STRADB STE20-related kinase adaptor beta protein-coding 42 0.005002
+55450 CAMK2N1 calcium/calmodulin dependent protein kinase II inhibitor 1 protein-coding 11 0.00131
+55454 CSGALNACT2 chondroitin sulfate N-acetylgalactosaminyltransferase 2 protein-coding 82 0.009765
+55466 DNAJA4 DnaJ heat shock protein family (Hsp40) member A4 protein-coding 42 0.005002
+55471 NDUFAF7 NADH:ubiquinone oxidoreductase complex assembly factor 7 protein-coding 51 0.006074
+55472 RBM12B-AS1 RBM12B antisense RNA 1 ncRNA 2 0.0002382
+55486 PARL presenilin associated rhomboid like protein-coding 54 0.006431
+55500 ETNK1 ethanolamine kinase 1 protein-coding 50 0.005955
+55501 CHST12 carbohydrate sulfotransferase 12 protein-coding 56 0.006669
+55502 HES6 hes family bHLH transcription factor 6 protein-coding 8 0.0009527
+55503 TRPV6 transient receptor potential cation channel subfamily V member 6 protein-coding 123 0.01465
+55504 TNFRSF19 TNF receptor superfamily member 19 protein-coding 69 0.008217
+55505 NOP10 NOP10 ribonucleoprotein protein-coding 12 0.001429
+55506 H2AFY2 H2A histone family member Y2 protein-coding 52 0.006193
+55507 GPRC5D G protein-coupled receptor class C group 5 member D protein-coding 37 0.004406
+55508 SLC35E3 solute carrier family 35 member E3 protein-coding 34 0.004049
+55509 BATF3 basic leucine zipper ATF-like transcription factor 3 protein-coding 15 0.001786
+55510 DDX43 DEAD-box helicase 43 protein-coding 92 0.01096
+55511 SAGE1 sarcoma antigen 1 protein-coding 200 0.02382
+55512 SMPD3 sphingomyelin phosphodiesterase 3 protein-coding 73 0.008694
+55515 ASIC4 acid sensing ion channel subunit family member 4 protein-coding 95 0.01131
+55520 ELAC1 elaC ribonuclease Z 1 protein-coding 37 0.004406
+55521 TRIM36 tripartite motif containing 36 protein-coding 89 0.0106
+55526 DHTKD1 dehydrogenase E1 and transketolase domain containing 1 protein-coding 96 0.01143
+55527 FEM1A fem-1 homolog A protein-coding 50 0.005955
+55529 PIP4P2 phosphatidylinositol-4,5-bisphosphate 4-phosphatase 2 protein-coding 45 0.005359
+55530 SVOP SV2 related protein protein-coding 50 0.005955
+55531 ELMOD1 ELMO domain containing 1 protein-coding 54 0.006431
+55532 SLC30A10 solute carrier family 30 member 10 protein-coding 70 0.008336
+55534 MAML3 mastermind like transcriptional coactivator 3 protein-coding 99 0.01179
+55536 CDCA7L cell division cycle associated 7 like protein-coding 69 0.008217
+55539 KCNQ1DN KCNQ1 downstream neighbor (non-protein coding) ncRNA 5 0.0005955
+55540 IL17RB interleukin 17 receptor B protein-coding 53 0.006312
+55544 RBM38 RNA binding motif protein 38 protein-coding 26 0.003096
+55552 ZNF823 zinc finger protein 823 protein-coding 69 0.008217
+55553 SOX6 SRY-box 6 protein-coding 110 0.0131
+55554 KLK15 kallikrein related peptidase 15 protein-coding 72 0.008574
+55556 ENOSF1 enolase superfamily member 1 protein-coding 56 0.006669
+55558 PLXNA3 plexin A3 protein-coding 197 0.02346
+55559 HAUS7 HAUS augmin like complex subunit 7 protein-coding 45 0.005359
+55561 CDC42BPG CDC42 binding protein kinase gamma protein-coding 130 0.01548
+55565 ZNF821 zinc finger protein 821 protein-coding 43 0.005121
+55567 DNAH3 dynein axonemal heavy chain 3 protein-coding 451 0.05371
+55568 GALNT10 polypeptide N-acetylgalactosaminyltransferase 10 protein-coding 74 0.008813
+55571 CNOT11 CCR4-NOT transcription complex subunit 11 protein-coding 55 0.00655
+55572 FOXRED1 FAD dependent oxidoreductase domain containing 1 protein-coding 53 0.006312
+55573 CDV3 CDV3 homolog protein-coding 11 0.00131
+55576 STAB2 stabilin 2 protein-coding 305 0.03632
+55577 NAGK N-acetylglucosamine kinase protein-coding 45 0.005359
+55578 SUPT20H SPT20 homolog, SAGA complex component protein-coding 101 0.01203
+55582 KIF27 kinesin family member 27 protein-coding 141 0.01679
+55584 CHRNA9 cholinergic receptor nicotinic alpha 9 subunit protein-coding 58 0.006907
+55585 UBE2Q1 ubiquitin conjugating enzyme E2 Q1 protein-coding 43 0.005121
+55586 MIOX myo-inositol oxygenase protein-coding 37 0.004406
+55588 MED29 mediator complex subunit 29 protein-coding 26 0.003096
+55589 BMP2K BMP2 inducible kinase protein-coding 96 0.01143
+55591 VEZT vezatin, adherens junctions transmembrane protein protein-coding 79 0.009408
+55593 OTUD5 OTU deubiquitinase 5 protein-coding 48 0.005716
+55596 ZCCHC8 zinc finger CCHC-type containing 8 protein-coding 87 0.01036
+55599 RNPC3 RNA binding region (RNP1, RRM) containing 3 protein-coding 34 0.004049
+55600 ITLN1 intelectin 1 protein-coding 63 0.007503
+55601 DDX60 DExD/H-box helicase 60 protein-coding 163 0.01941
+55602 CDKN2AIP CDKN2A interacting protein protein-coding 127 0.01512
+55603 FAM46A family with sequence similarity 46 member A protein-coding 46 0.005478
+55604 CARMIL1 capping protein regulator and myosin 1 linker 1 protein-coding 148 0.01763
+55605 KIF21A kinesin family member 21A protein-coding 228 0.02715
+55607 PPP1R9A protein phosphatase 1 regulatory subunit 9A protein-coding 168 0.02001
+55608 ANKRD10 ankyrin repeat domain 10 protein-coding 30 0.003573
+55609 ZNF280C zinc finger protein 280C protein-coding 77 0.00917
+55610 VPS50 VPS50, EARP/GARPII complex subunit protein-coding 152 0.0181
+55611 OTUB1 OTU deubiquitinase, ubiquitin aldehyde binding 1 protein-coding 30 0.003573
+55612 FERMT1 fermitin family member 1 protein-coding 75 0.008932
+55613 MTMR8 myotubularin related protein 8 protein-coding 101 0.01203
+55614 KIF16B kinesin family member 16B protein-coding 210 0.02501
+55615 PRR5 proline rich 5 protein-coding 44 0.00524
+55616 ASAP3 ArfGAP with SH3 domain, ankyrin repeat and PH domain 3 protein-coding 89 0.0106
+55617 TASP1 taspase 1 protein-coding 64 0.007622
+55619 DOCK10 dedicator of cytokinesis 10 protein-coding 271 0.03227
+55620 STAP2 signal transducing adaptor family member 2 protein-coding 43 0.005121
+55621 TRMT1 tRNA methyltransferase 1 protein-coding 72 0.008574
+55622 TTC27 tetratricopeptide repeat domain 27 protein-coding 95 0.01131
+55623 THUMPD1 THUMP domain containing 1 protein-coding 30 0.003573
+55624 POMGNT1 protein O-linked mannose N-acetylglucosaminyltransferase 1 (beta 1,2-) protein-coding 78 0.009289
+55625 ZDHHC7 zinc finger DHHC-type containing 7 protein-coding 55 0.00655
+55626 AMBRA1 autophagy and beclin 1 regulator 1 protein-coding 146 0.01739
+55627 SMPD4 sphingomyelin phosphodiesterase 4 protein-coding 115 0.0137
+55628 ZNF407 zinc finger protein 407 protein-coding 207 0.02465
+55629 PNRC2 proline rich nuclear receptor coactivator 2 protein-coding 1 0.0001191
+55630 SLC39A4 solute carrier family 39 member 4 protein-coding 64 0.007622
+55631 LRRC40 leucine rich repeat containing 40 protein-coding 74 0.008813
+55632 G2E3 G2/M-phase specific E3 ubiquitin protein ligase protein-coding 90 0.01072
+55633 TBC1D22B TBC1 domain family member 22B protein-coding 50 0.005955
+55634 KRBOX4 KRAB box domain containing 4 protein-coding 28 0.003335
+55635 DEPDC1 DEP domain containing 1 protein-coding 99 0.01179
+55636 CHD7 chromodomain helicase DNA binding protein 7 protein-coding 334 0.03978
+55638 SYBU syntabulin protein-coding 104 0.01239
+55640 FLVCR2 feline leukemia virus subgroup C cellular receptor family member 2 protein-coding 58 0.006907
+55643 BTBD2 BTB domain containing 2 protein-coding 55 0.00655
+55644 OSGEP O-sialoglycoprotein endopeptidase protein-coding 44 0.00524
+55646 LYAR Ly1 antibody reactive protein-coding 53 0.006312
+55647 RAB20 RAB20, member RAS oncogene family protein-coding 29 0.003454
+55650 PIGV phosphatidylinositol glycan anchor biosynthesis class V protein-coding 48 0.005716
+55651 NHP2 NHP2 ribonucleoprotein protein-coding 22 0.00262
+55652 SLC48A1 solute carrier family 48 member 1 protein-coding 7 0.0008336
+55653 BCAS4 breast carcinoma amplified sequence 4 protein-coding 15 0.001786
+55654 TMEM127 transmembrane protein 127 protein-coding 18 0.002144
+55655 NLRP2 NLR family pyrin domain containing 2 protein-coding 180 0.02144
+55656 INTS8 integrator complex subunit 8 protein-coding 104 0.01239
+55657 ZNF692 zinc finger protein 692 protein-coding 65 0.007741
+55658 RNF126 ring finger protein 126 protein-coding 30 0.003573
+55659 ZNF416 zinc finger protein 416 protein-coding 76 0.009051
+55660 PRPF40A pre-mRNA processing factor 40 homolog A protein-coding 82 0.009765
+55661 DDX27 DEAD-box helicase 27 protein-coding 85 0.01012
+55662 HIF1AN hypoxia inducible factor 1 alpha subunit inhibitor protein-coding 37 0.004406
+55663 ZNF446 zinc finger protein 446 protein-coding 86 0.01024
+55664 CDC37L1 cell division cycle 37 like 1 protein-coding 42 0.005002
+55665 URGCP upregulator of cell proliferation protein-coding 115 0.0137
+55666 NPLOC4 NPL4 homolog, ubiquitin recognition factor protein-coding 65 0.007741
+55667 DENND4C DENN domain containing 4C protein-coding 155 0.01846
+55668 GPATCH2L G-patch domain containing 2 like protein-coding 56 0.006669
+55669 MFN1 mitofusin 1 protein-coding 86 0.01024
+55670 PEX26 peroxisomal biogenesis factor 26 protein-coding 19 0.002263
+55671 PPP4R3A protein phosphatase 4 regulatory subunit 3A protein-coding 73 0.008694
+55672 NBPF1 NBPF member 1 protein-coding 158 0.01882
+55676 SLC30A6 solute carrier family 30 member 6 protein-coding 65 0.007741
+55677 IWS1 IWS1, SUPT6H interacting protein protein-coding 95 0.01131
+55679 LIMS2 LIM zinc finger domain containing 2 protein-coding 46 0.005478
+55680 RUFY2 RUN and FYVE domain containing 2 protein-coding 72 0.008574
+55681 SCYL2 SCY1 like pseudokinase 2 protein-coding 103 0.01227
+55683 KANSL3 KAT8 regulatory NSL complex subunit 3 protein-coding 78 0.009289
+55684 RABL6 RAB, member RAS oncogene family like 6 protein-coding 64 0.007622
+55686 MREG melanoregulin protein-coding 26 0.003096
+55687 TRMU tRNA 5-methylaminomethyl-2-thiouridylate methyltransferase protein-coding 107 0.01274
+55689 YEATS2 YEATS domain containing 2 protein-coding 129 0.01536
+55690 PACS1 phosphofurin acidic cluster sorting protein 1 protein-coding 101 0.01203
+55691 FRMD4A FERM domain containing 4A protein-coding 118 0.01405
+55692 LUC7L LUC7 like protein-coding 43 0.005121
+55693 KDM4D lysine demethylase 4D protein-coding 72 0.008574
+55695 NSUN5 NOP2/Sun RNA methyltransferase family member 5 protein-coding 48 0.005716
+55696 RBM22 RNA binding motif protein 22 protein-coding 36 0.004287
+55697 VAC14 Vac14, PIKFYVE complex component protein-coding 76 0.009051
+55698 RADIL Rap associating with DIL domain protein-coding 130 0.01548
+55699 IARS2 isoleucyl-tRNA synthetase 2, mitochondrial protein-coding 110 0.0131
+55700 MAP7D1 MAP7 domain containing 1 protein-coding 101 0.01203
+55701 ARHGEF40 Rho guanine nucleotide exchange factor 40 protein-coding 142 0.01691
+55702 YJU2 YJU2 splicing factor homolog protein-coding 23 0.002739
+55703 POLR3B RNA polymerase III subunit B protein-coding 117 0.01393
+55704 CCDC88A coiled-coil domain containing 88A protein-coding 210 0.02501
+55705 IPO9 importin 9 protein-coding 108 0.01286
+55706 NDC1 NDC1 transmembrane nucleoporin protein-coding 60 0.007145
+55707 NECAP2 NECAP endocytosis associated 2 protein-coding 25 0.002977
+55709 KBTBD4 kelch repeat and BTB domain containing 4 protein-coding 59 0.007026
+55711 FAR2 fatty acyl-CoA reductase 2 protein-coding 64 0.007622
+55713 ZNF334 zinc finger protein 334 protein-coding 138 0.01643
+55714 TENM3 teneurin transmembrane protein 3 protein-coding 381 0.04537
+55715 DOK4 docking protein 4 protein-coding 44 0.00524
+55716 LMBR1L limb development membrane protein 1 like protein-coding 53 0.006312
+55717 WDR11 WD repeat domain 11 protein-coding 106 0.01262
+55718 POLR3E RNA polymerase III subunit E protein-coding 87 0.01036
+55719 SLF2 SMC5-SMC6 complex localization factor 2 protein-coding 108 0.01286
+55720 TSR1 TSR1, ribosome maturation factor protein-coding 58 0.006907
+55721 IQCC IQ motif containing C protein-coding 43 0.005121
+55722 CEP72 centrosomal protein 72 protein-coding 79 0.009408
+55723 ASF1B anti-silencing function 1B histone chaperone protein-coding 24 0.002858
+55726 INTS13 integrator complex subunit 13 protein-coding 85 0.01012
+55727 BTBD7 BTB domain containing 7 protein-coding 134 0.01596
+55728 N4BP2 NEDD4 binding protein 2 protein-coding 159 0.01894
+55729 ATF7IP activating transcription factor 7 interacting protein protein-coding 176 0.02096
+55731 FAM222B family with sequence similarity 222 member B protein-coding 52 0.006193
+55732 C1orf112 chromosome 1 open reading frame 112 protein-coding 95 0.01131
+55733 HHAT hedgehog acyltransferase protein-coding 66 0.00786
+55734 ZFP64 ZFP64 zinc finger protein protein-coding 131 0.0156
+55735 DNAJC11 DnaJ heat shock protein family (Hsp40) member C11 protein-coding 62 0.007384
+55737 VPS35 VPS35, retromer complex component protein-coding 72 0.008574
+55738 ARFGAP1 ADP ribosylation factor GTPase activating protein 1 protein-coding 60 0.007145
+55739 NAXD NAD(P)HX dehydratase protein-coding 48 0.005716
+55740 ENAH ENAH, actin regulator protein-coding 63 0.007503
+55741 EDEM2 ER degradation enhancing alpha-mannosidase like protein 2 protein-coding 56 0.006669
+55742 PARVA parvin alpha protein-coding 27 0.003215
+55743 CHFR checkpoint with forkhead and ring finger domains protein-coding 75 0.008932
+55744 COA1 cytochrome c oxidase assembly factor 1 homolog protein-coding 16 0.001905
+55745 AP5M1 adaptor related protein complex 5 mu 1 subunit protein-coding 54 0.006431
+55746 NUP133 nucleoporin 133 protein-coding 133 0.01584
+55748 CNDP2 carnosine dipeptidase 2 protein-coding 59 0.007026
+55749 CCAR1 cell division cycle and apoptosis regulator 1 protein-coding 130 0.01548
+55750 AGK acylglycerol kinase protein-coding 48 0.005716
+55751 TMEM184C transmembrane protein 184C protein-coding 51 0.006074
+55752 SEPT11 septin 11 protein-coding 48 0.005716
+55753 OGDHL oxoglutarate dehydrogenase like protein-coding 186 0.02215
+55754 TMEM30A transmembrane protein 30A protein-coding 44 0.00524
+55755 CDK5RAP2 CDK5 regulatory subunit associated protein 2 protein-coding 184 0.02191
+55756 INTS9 integrator complex subunit 9 protein-coding 49 0.005835
+55757 UGGT2 UDP-glucose glycoprotein glucosyltransferase 2 protein-coding 153 0.01822
+55758 RCOR3 REST corepressor 3 protein-coding 67 0.007979
+55759 WDR12 WD repeat domain 12 protein-coding 38 0.004525
+55760 DHX32 DEAH-box helicase 32 (putative) protein-coding 78 0.009289
+55761 TTC17 tetratricopeptide repeat domain 17 protein-coding 138 0.01643
+55762 ZNF701 zinc finger protein 701 protein-coding 78 0.009289
+55763 EXOC1 exocyst complex component 1 protein-coding 108 0.01286
+55764 IFT122 intraflagellar transport 122 protein-coding 129 0.01536
+55765 INAVA innate immunity activator protein-coding 57 0.006788
+55766 H2AFJ H2A histone family member J protein-coding 19 0.002263
+55768 NGLY1 N-glycanase 1 protein-coding 71 0.008455
+55769 ZNF83 zinc finger protein 83 protein-coding 62 0.007384
+55770 EXOC2 exocyst complex component 2 protein-coding 95 0.01131
+55771 PRR11 proline rich 11 protein-coding 30 0.003573
+55773 TBC1D23 TBC1 domain family member 23 protein-coding 70 0.008336
+55775 TDP1 tyrosyl-DNA phosphodiesterase 1 protein-coding 69 0.008217
+55776 SAYSD1 SAYSVFN motif domain containing 1 protein-coding 20 0.002382
+55777 MBD5 methyl-CpG binding domain protein 5 protein-coding 189 0.02251
+55778 ZNF839 zinc finger protein 839 protein-coding 77 0.00917
+55779 CFAP44 cilia and flagella associated protein 44 protein-coding 167 0.01989
+55780 ERMARD ER membrane associated RNA degradation protein-coding 80 0.009527
+55781 RIOK2 RIO kinase 2 protein-coding 67 0.007979
+55783 CMTR2 cap methyltransferase 2 protein-coding 104 0.01239
+55784 MCTP2 multiple C2 and transmembrane domain containing 2 protein-coding 118 0.01405
+55785 FGD6 FYVE, RhoGEF and PH domain containing 6 protein-coding 157 0.0187
+55786 ZNF415 zinc finger protein 415 protein-coding 84 0.01
+55787 TXLNG taxilin gamma protein-coding 51 0.006074
+55788 LMBRD1 LMBR1 domain containing 1 protein-coding 86 0.01024
+55789 DEPDC1B DEP domain containing 1B protein-coding 110 0.0131
+55790 CSGALNACT1 chondroitin sulfate N-acetylgalactosaminyltransferase 1 protein-coding 78 0.009289
+55791 LRIF1 ligand dependent nuclear receptor interacting factor 1 protein-coding 290 0.03454
+55793 MINDY1 MINDY lysine 48 deubiquitinase 1 protein-coding 49 0.005835
+55794 DDX28 DEAD-box helicase 28 protein-coding 38 0.004525
+55795 PCID2 PCI domain containing 2 protein-coding 44 0.00524
+55796 MBNL3 muscleblind like splicing regulator 3 protein-coding 46 0.005478
+55798 METTL2B methyltransferase like 2B protein-coding 74 0.008813
+55799 CACNA2D3 calcium voltage-gated channel auxiliary subunit alpha2delta 3 protein-coding 171 0.02036
+55800 SCN3B sodium voltage-gated channel beta subunit 3 protein-coding 53 0.006312
+55801 IL26 interleukin 26 protein-coding 35 0.004168
+55802 DCP1A decapping mRNA 1A protein-coding 44 0.00524
+55803 ADAP2 ArfGAP with dual PH domains 2 protein-coding 45 0.005359
+55805 LRP2BP LRP2 binding protein protein-coding 39 0.004645
+55806 HR HR, lysine demethylase and nuclear receptor corepressor protein-coding 105 0.0125
+55808 ST6GALNAC1 ST6 N-acetylgalactosaminide alpha-2,6-sialyltransferase 1 protein-coding 64 0.007622
+55809 TRERF1 transcriptional regulating factor 1 protein-coding 164 0.01953
+55810 FOXJ2 forkhead box J2 protein-coding 66 0.00786
+55811 ADCY10 adenylate cyclase 10 protein-coding 203 0.02418
+55812 SPATA7 spermatogenesis associated 7 protein-coding 72 0.008574
+55813 UTP6 UTP6, small subunit processome component protein-coding 64 0.007622
+55814 BDP1 B double prime 1, subunit of RNA polymerase III transcription initiation factor IIIB protein-coding 227 0.02703
+55815 TSNAXIP1 translin associated factor X interacting protein 1 protein-coding 77 0.00917
+55816 DOK5 docking protein 5 protein-coding 73 0.008694
+55818 KDM3A lysine demethylase 3A protein-coding 117 0.01393
+55819 RNF130 ring finger protein 130 protein-coding 38 0.004525
+55821 ALLC allantoicase protein-coding 88 0.01048
+55823 VPS11 VPS11, CORVET/HOPS core subunit protein-coding 89 0.0106
+55824 PAG1 phosphoprotein membrane anchor with glycosphingolipid microdomains 1 protein-coding 53 0.006312
+55825 PECR peroxisomal trans-2-enoyl-CoA reductase protein-coding 29 0.003454
+55827 DCAF6 DDB1 and CUL4 associated factor 6 protein-coding 107 0.01274
+55829 SELENOS selenoprotein S protein-coding 10 0.001191
+55830 GLT8D1 glycosyltransferase 8 domain containing 1 protein-coding 43 0.005121
+55831 EMC3 ER membrane protein complex subunit 3 protein-coding 33 0.00393
+55832 CAND1 cullin associated and neddylation dissociated 1 protein-coding 144 0.01715
+55833 UBAP2 ubiquitin associated protein 2 protein-coding 106 0.01262
+55835 CENPJ centromere protein J protein-coding 147 0.01751
+55837 EAPP E2F associated phosphoprotein protein-coding 30 0.003573
+55839 CENPN centromere protein N protein-coding 41 0.004883
+55840 EAF2 ELL associated factor 2 protein-coding 46 0.005478
+55841 WWC3 WWC family member 3 protein-coding 180 0.02144
+55843 ARHGAP15 Rho GTPase activating protein 15 protein-coding 94 0.01119
+55844 PPP2R2D protein phosphatase 2 regulatory subunit Bdelta protein-coding 48 0.005716
+55845 BRK1 BRICK1, SCAR/WAVE actin nucleating complex subunit protein-coding 5 0.0005955
+55846 ITFG2 integrin alpha FG-GAP repeat containing 2 protein-coding 46 0.005478
+55847 CISD1 CDGSH iron sulfur domain 1 protein-coding 9 0.001072
+55848 PLGRKT plasminogen receptor with a C-terminal lysine protein-coding 23 0.002739
+55850 USE1 unconventional SNARE in the ER 1 protein-coding 32 0.003811
+55851 PSENEN presenilin enhancer gamma-secretase subunit protein-coding 17 0.002025
+55852 TEX2 testis expressed 2 protein-coding 133 0.01584
+55854 ZC3H15 zinc finger CCCH-type containing 15 protein-coding 51 0.006074
+55856 ACOT13 acyl-CoA thioesterase 13 protein-coding 14 0.001667
+55857 KIZ kizuna centrosomal protein protein-coding 20 0.002382
+55858 TMEM165 transmembrane protein 165 protein-coding 28 0.003335
+55859 BEX1 brain expressed X-linked 1 protein-coding 30 0.003573
+55860 ACTR10 actin related protein 10 homolog protein-coding 44 0.00524
+55861 DBNDD2 dysbindin domain containing 2 protein-coding 35 0.004168
+55862 ECHDC1 ethylmalonyl-CoA decarboxylase 1 protein-coding 40 0.004764
+55863 TMEM126B transmembrane protein 126B protein-coding 23 0.002739
+55867 SLC22A11 solute carrier family 22 member 11 protein-coding 76 0.009051
+55869 HDAC8 histone deacetylase 8 protein-coding 50 0.005955
+55870 ASH1L ASH1 like histone lysine methyltransferase protein-coding 298 0.03549
+55871 CBWD1 COBW domain containing 1 protein-coding 25 0.002977
+55872 PBK PDZ binding kinase protein-coding 32 0.003811
+55876 GSDMB gasdermin B protein-coding 33 0.00393
+55879 GABRQ gamma-aminobutyric acid type A receptor theta subunit protein-coding 136 0.0162
+55884 WSB2 WD repeat and SOCS box containing 2 protein-coding 44 0.00524
+55885 LMO3 LIM domain only 3 protein-coding 18 0.002144
+55888 ZKSCAN7 zinc finger with KRAB and SCAN domains 7 protein-coding 90 0.01072
+55889 GOLGA6B golgin A6 family member B protein-coding 51 0.006074
+55890 GPRC5C G protein-coupled receptor class C group 5 member C protein-coding 78 0.009289
+55891 LENEP lens epithelial protein protein-coding 10 0.001191
+55892 MYNN myoneurin protein-coding 64 0.007622
+55893 ZNF395 zinc finger protein 395 protein-coding 141 0.01679
+55897 MESP1 mesoderm posterior bHLH transcription factor 1 protein-coding 5 0.0005955
+55898 UNC45A unc-45 myosin chaperone A protein-coding 125 0.01489
+55900 ZNF302 zinc finger protein 302 protein-coding 53 0.006312
+55901 THSD1 thrombospondin type 1 domain containing 1 protein-coding 118 0.01405
+55902 ACSS2 acyl-CoA synthetase short chain family member 2 protein-coding 63 0.007503
+55904 KMT2E lysine methyltransferase 2E protein-coding 219 0.02608
+55905 RNF114 ring finger protein 114 protein-coding 24 0.002858
+55906 ZC4H2 zinc finger C4H2-type containing protein-coding 47 0.005597
+55907 CMAS cytidine monophosphate N-acetylneuraminic acid synthetase protein-coding 63 0.007503
+55908 ANGPTL8 angiopoietin like 8 protein-coding 19 0.002263
+55909 BIN3 bridging integrator 3 protein-coding 28 0.003335
+55911 APOBR apolipoprotein B receptor protein-coding 109 0.01298
+55914 ERBIN erbb2 interacting protein protein-coding 144 0.01715
+55915 LANCL2 LanC like 2 protein-coding 59 0.007026
+55916 NXT2 nuclear transport factor 2 like export factor 2 protein-coding 22 0.00262
+55917 CTTNBP2NL CTTNBP2 N-terminal like protein-coding 69 0.008217
+55920 RCC2 regulator of chromosome condensation 2 protein-coding 61 0.007264
+55922 NKRF NFKB repressing factor protein-coding 81 0.009646
+55924 FAM212B family with sequence similarity 212 member B protein-coding 39 0.004645
+55929 DMAP1 DNA methyltransferase 1 associated protein 1 protein-coding 96 0.01143
+55930 MYO5C myosin VC protein-coding 157 0.0187
+55937 APOM apolipoprotein M protein-coding 14 0.001667
+55954 ZMAT5 zinc finger matrin-type 5 protein-coding 18 0.002144
+55957 LIN37 lin-37 DREAM MuvB core complex component protein-coding 34 0.004049
+55958 KLHL9 kelch like family member 9 protein-coding 69 0.008217
+55959 SULF2 sulfatase 2 protein-coding 122 0.01453
+55964 SEPT3 septin 3 protein-coding 53 0.006312
+55966 AJAP1 adherens junctions associated protein 1 protein-coding 93 0.01108
+55967 NDUFA12 NADH:ubiquinone oxidoreductase subunit A12 protein-coding 20 0.002382
+55968 NSFL1C NSFL1 cofactor protein-coding 46 0.005478
+55969 RAB5IF RAB5 interacting factor protein-coding 6 0.0007145
+55970 GNG12 G protein subunit gamma 12 protein-coding 34 0.004049
+55971 BAIAP2L1 BAI1 associated protein 2 like 1 protein-coding 75 0.008932
+55972 SLC25A40 solute carrier family 25 member 40 protein-coding 40 0.004764
+55973 BCAP29 B cell receptor associated protein 29 protein-coding 51 0.006074
+55974 SLC50A1 solute carrier family 50 member 1 protein-coding 22 0.00262
+55975 KLHL7 kelch like family member 7 protein-coding 170 0.02025
+55997 CFC1 cripto, FRL-1, cryptic family 1 protein-coding 31 0.003692
+55998 NXF5 nuclear RNA export factor 5 protein-coding 77 0.00917
+55999 NXF4 nuclear RNA export factor 4 pseudogene pseudo 144 0.01715
+56000 NXF3 nuclear RNA export factor 3 protein-coding 100 0.01191
+56001 NXF2 nuclear RNA export factor 2 protein-coding 43 0.005121
+56005 MYDGF myeloid derived growth factor protein-coding 73 0.008694
+56006 SMG9 SMG9, nonsense mediated mRNA decay factor protein-coding 48 0.005716
+56033 BARX1 BARX homeobox 1 protein-coding 13 0.001548
+56034 PDGFC platelet derived growth factor C protein-coding 65 0.007741
+56052 ALG1 ALG1, chitobiosyldiphosphodolichol beta-mannosyltransferase protein-coding 48 0.005716
+56061 UBFD1 ubiquitin family domain containing 1 protein-coding 28 0.003335
+56062 KLHL4 kelch like family member 4 protein-coding 213 0.02537
+56063 TMEM234 transmembrane protein 234 protein-coding 7 0.0008336
+56097 PCDHGC5 protocadherin gamma subfamily C, 5 protein-coding 99 0.01179
+56098 PCDHGC4 protocadherin gamma subfamily C, 4 protein-coding 96 0.01143
+56099 PCDHGB7 protocadherin gamma subfamily B, 7 protein-coding 137 0.01632
+56100 PCDHGB6 protocadherin gamma subfamily B, 6 protein-coding 154 0.01834
+56102 PCDHGB3 protocadherin gamma subfamily B, 3 protein-coding 177 0.02108
+56103 PCDHGB2 protocadherin gamma subfamily B, 2 protein-coding 162 0.01929
+56104 PCDHGB1 protocadherin gamma subfamily B, 1 protein-coding 168 0.02001
+56105 PCDHGA11 protocadherin gamma subfamily A, 11 protein-coding 133 0.01584
+56106 PCDHGA10 protocadherin gamma subfamily A, 10 protein-coding 126 0.01501
+56107 PCDHGA9 protocadherin gamma subfamily A, 9 protein-coding 122 0.01453
+56108 PCDHGA7 protocadherin gamma subfamily A, 7 protein-coding 159 0.01894
+56109 PCDHGA6 protocadherin gamma subfamily A, 6 protein-coding 175 0.02084
+56110 PCDHGA5 protocadherin gamma subfamily A, 5 protein-coding 242 0.02882
+56111 PCDHGA4 protocadherin gamma subfamily A, 4 protein-coding 159 0.01894
+56112 PCDHGA3 protocadherin gamma subfamily A, 3 protein-coding 202 0.02406
+56113 PCDHGA2 protocadherin gamma subfamily A, 2 protein-coding 202 0.02406
+56114 PCDHGA1 protocadherin gamma subfamily A, 1 protein-coding 176 0.02096
+56121 PCDHB15 protocadherin beta 15 protein-coding 147 0.01751
+56122 PCDHB14 protocadherin beta 14 protein-coding 176 0.02096
+56123 PCDHB13 protocadherin beta 13 protein-coding 162 0.01929
+56124 PCDHB12 protocadherin beta 12 protein-coding 216 0.02572
+56125 PCDHB11 protocadherin beta 11 protein-coding 229 0.02727
+56126 PCDHB10 protocadherin beta 10 protein-coding 190 0.02263
+56128 PCDHB8 protocadherin beta 8 protein-coding 241 0.0287
+56129 PCDHB7 protocadherin beta 7 protein-coding 241 0.0287
+56130 PCDHB6 protocadherin beta 6 protein-coding 211 0.02513
+56131 PCDHB4 protocadherin beta 4 protein-coding 177 0.02108
+56132 PCDHB3 protocadherin beta 3 protein-coding 194 0.0231
+56133 PCDHB2 protocadherin beta 2 protein-coding 186 0.02215
+56134 PCDHAC2 protocadherin alpha subfamily C, 2 protein-coding 132 0.01572
+56135 PCDHAC1 protocadherin alpha subfamily C, 1 protein-coding 154 0.01834
+56136 PCDHA13 protocadherin alpha 13 protein-coding 189 0.02251
+56137 PCDHA12 protocadherin alpha 12 protein-coding 227 0.02703
+56138 PCDHA11 protocadherin alpha 11 protein-coding 197 0.02346
+56139 PCDHA10 protocadherin alpha 10 protein-coding 182 0.02167
+56140 PCDHA8 protocadherin alpha 8 protein-coding 203 0.02418
+56141 PCDHA7 protocadherin alpha 7 protein-coding 210 0.02501
+56142 PCDHA6 protocadherin alpha 6 protein-coding 246 0.0293
+56143 PCDHA5 protocadherin alpha 5 protein-coding 190 0.02263
+56144 PCDHA4 protocadherin alpha 4 protein-coding 188 0.02239
+56145 PCDHA3 protocadherin alpha 3 protein-coding 206 0.02453
+56146 PCDHA2 protocadherin alpha 2 protein-coding 223 0.02656
+56147 PCDHA1 protocadherin alpha 1 protein-coding 207 0.02465
+56154 TEX15 testis expressed 15, meiosis and synapsis associated protein-coding 302 0.03597
+56155 TEX14 testis expressed 14, intercellular bridge forming factor protein-coding 181 0.02156
+56156 TEX13B testis expressed 13B protein-coding 54 0.006431
+56157 TEX13A testis expressed 13A protein-coding 93 0.01108
+56158 TEX12 testis expressed 12 protein-coding 13 0.001548
+56159 TEX11 testis expressed 11 protein-coding 114 0.01358
+56160 NSMCE3 NSE3 homolog, SMC5-SMC6 complex component protein-coding 29 0.003454
+56163 RNF17 ring finger protein 17 protein-coding 190 0.02263
+56164 STK31 serine/threonine kinase 31 protein-coding 156 0.01858
+56165 TDRD1 tudor domain containing 1 protein-coding 157 0.0187
+56169 GSDMC gasdermin C protein-coding 88 0.01048
+56171 DNAH7 dynein axonemal heavy chain 7 protein-coding 522 0.06217
+56172 ANKH ANKH inorganic pyrophosphate transport regulator protein-coding 60 0.007145
+56180 MOSPD1 motile sperm domain containing 1 protein-coding 30 0.003573
+56181 MTFR1L mitochondrial fission regulator 1 like protein-coding 28 0.003335
+56203 LMOD3 leiomodin 3 protein-coding 65 0.007741
+56204 FAM214A family with sequence similarity 214 member A protein-coding 104 0.01239
+56241 SUSD2 sushi domain containing 2 protein-coding 86 0.01024
+56242 ZNF253 zinc finger protein 253 protein-coding 77 0.00917
+56243 KIAA1217 KIAA1217 protein-coding 227 0.02703
+56244 BTNL2 butyrophilin like 2 protein-coding 45 0.005359
+56245 C21orf62 chromosome 21 open reading frame 62 protein-coding 24 0.002858
+56246 MRAP melanocortin 2 receptor accessory protein protein-coding 100 0.01191
+56252 YLPM1 YLP motif containing 1 protein-coding 217 0.02584
+56253 CRTAM cytotoxic and regulatory T cell molecule protein-coding 54 0.006431
+56254 RNF20 ring finger protein 20 protein-coding 107 0.01274
+56255 TMX4 thioredoxin related transmembrane protein 4 protein-coding 50 0.005955
+56256 SERTAD4 SERTA domain containing 4 protein-coding 56 0.006669
+56257 MEPCE methylphosphate capping enzyme protein-coding 70 0.008336
+56259 CTNNBL1 catenin beta like 1 protein-coding 68 0.008098
+56260 C8orf44 chromosome 8 open reading frame 44 protein-coding 18 0.002144
+56261 GPCPD1 glycerophosphocholine phosphodiesterase 1 protein-coding 71 0.008455
+56262 LRRC8A leucine rich repeat containing 8 VRAC subunit A protein-coding 83 0.009884
+56265 CPXM1 carboxypeptidase X, M14 family member 1 protein-coding 117 0.01393
+56267 KYAT3 kynurenine aminotransferase 3 protein-coding 59 0.007026
+56269 IRGC immunity related GTPase cinema protein-coding 80 0.009527
+56270 WDR45B WD repeat domain 45B protein-coding 55 0.00655
+56271 BEX4 brain expressed X-linked 4 protein-coding 14 0.001667
+56287 GKN1 gastrokine 1 protein-coding 78 0.009289
+56288 PARD3 par-3 family cell polarity regulator protein-coding 203 0.02418
+56300 IL36G interleukin 36 gamma protein-coding 32 0.003811
+56301 SLC7A10 solute carrier family 7 member 10 protein-coding 51 0.006074
+56302 TRPV5 transient receptor potential cation channel subfamily V member 5 protein-coding 151 0.01798
+56311 ANKRD7 ankyrin repeat domain 7 protein-coding 53 0.006312
+56339 METTL3 methyltransferase like 3 protein-coding 67 0.007979
+56341 PRMT8 protein arginine methyltransferase 8 protein-coding 77 0.00917
+56342 PPAN peter pan homolog (Drosophila) protein-coding 49 0.005835
+56344 CABP5 calcium binding protein 5 protein-coding 36 0.004287
+56413 LTB4R2 leukotriene B4 receptor 2 protein-coding 29 0.003454
+56474 CTPS2 CTP synthase 2 protein-coding 57 0.006788
+56475 RPRM reprimo, TP53 dependent G2 arrest mediator homolog protein-coding 22 0.00262
+56477 CCL28 C-C motif chemokine ligand 28 protein-coding 15 0.001786
+56478 EIF4ENIF1 eukaryotic translation initiation factor 4E nuclear import factor 1 protein-coding 105 0.0125
+56479 KCNQ5 potassium voltage-gated channel subfamily Q member 5 protein-coding 175 0.02084
+56521 DNAJC12 DnaJ heat shock protein family (Hsp40) member C12 protein-coding 27 0.003215
+56547 MMP26 matrix metallopeptidase 26 protein-coding 51 0.006074
+56548 CHST7 carbohydrate sulfotransferase 7 protein-coding 46 0.005478
+56603 CYP26B1 cytochrome P450 family 26 subfamily B member 1 protein-coding 94 0.01119
+56605 ERO1B endoplasmic reticulum oxidoreductase 1 beta protein-coding 53 0.006312
+56606 SLC2A9 solute carrier family 2 member 9 protein-coding 74 0.008813
+56616 DIABLO diablo IAP-binding mitochondrial protein protein-coding 19 0.002263
+56623 INPP5E inositol polyphosphate-5-phosphatase E protein-coding 37 0.004406
+56624 ASAH2 N-acylsphingosine amidohydrolase 2 protein-coding 58 0.006907
+56647 BCCIP BRCA2 and CDKN1A interacting protein protein-coding 41 0.004883
+56648 EIF5A2 eukaryotic translation initiation factor 5A2 protein-coding 25 0.002977
+56649 TMPRSS4 transmembrane serine protease 4 protein-coding 100 0.01191
+56650 CLDND1 claudin domain containing 1 protein-coding 41 0.004883
+56651 LINC00470 long intergenic non-protein coding RNA 470 ncRNA 2 0.0002382
+56652 TWNK twinkle mtDNA helicase protein-coding 78 0.009289
+56654 NPDC1 neural proliferation, differentiation and control 1 protein-coding 22 0.00262
+56655 POLE4 DNA polymerase epsilon 4, accessory subunit protein-coding 8 0.0009527
+56656 OR2S2 olfactory receptor family 2 subfamily S member 2 (gene/pseudogene) protein-coding 40 0.004764
+56658 TRIM39 tripartite motif containing 39 protein-coding 66 0.00786
+56659 KCNK13 potassium two pore domain channel subfamily K member 13 protein-coding 73 0.008694
+56660 KCNK12 potassium two pore domain channel subfamily K member 12 protein-coding 5 0.0005955
+56666 PANX2 pannexin 2 protein-coding 60 0.007145
+56667 MUC13 mucin 13, cell surface associated protein-coding 58 0.006907
+56670 SUCNR1 succinate receptor 1 protein-coding 39 0.004645
+56672 AKIP1 A-kinase interacting protein 1 protein-coding 23 0.002739
+56673 C11orf16 chromosome 11 open reading frame 16 protein-coding 43 0.005121
+56674 TMEM9B TMEM9 domain family member B protein-coding 11 0.00131
+56675 NRIP3 nuclear receptor interacting protein 3 protein-coding 29 0.003454
+56676 ASCL3 achaete-scute family bHLH transcription factor 3 protein-coding 18 0.002144
+56681 SAR1A secretion associated Ras related GTPase 1A protein-coding 24 0.002858
+56683 CFAP298 cilia and flagella associated protein 298 protein-coding 7 0.0008336
+56704 JPH1 junctophilin 1 protein-coding 109 0.01298
+56729 RETN resistin protein-coding 8 0.0009527
+56731 SLC2A4RG SLC2A4 regulator protein-coding 26 0.003096
+56751 BARHL1 BarH like homeobox 1 protein-coding 38 0.004525
+56776 FMN2 formin 2 protein-coding 415 0.04942
+56829 ZC3HAV1 zinc finger CCCH-type containing, antiviral 1 protein-coding 112 0.01334
+56832 IFNK interferon kappa protein-coding 16 0.001905
+56833 SLAMF8 SLAM family member 8 protein-coding 48 0.005716
+56834 GPR137 G protein-coupled receptor 137 protein-coding 57 0.006788
+56848 SPHK2 sphingosine kinase 2 protein-coding 71 0.008455
+56849 TCEAL7 transcription elongation factor A like 7 protein-coding 12 0.001429
+56850 GRIPAP1 GRIP1 associated protein 1 protein-coding 94 0.01119
+56851 EMC7 ER membrane protein complex subunit 7 protein-coding 29 0.003454
+56852 RAD18 RAD18, E3 ubiquitin protein ligase protein-coding 63 0.007503
+56853 CELF4 CUGBP Elav-like family member 4 protein-coding 90 0.01072
+56882 CDC42SE1 CDC42 small effector 1 protein-coding 5 0.0005955
+56884 FSTL5 follistatin like 5 protein-coding 252 0.03001
+56886 UGGT1 UDP-glucose glycoprotein glucosyltransferase 1 protein-coding 137 0.01632
+56888 KCMF1 potassium channel modulatory factor 1 protein-coding 50 0.005955
+56889 TM9SF3 transmembrane 9 superfamily member 3 protein-coding 64 0.007622
+56890 MDM1 Mdm1 nuclear protein protein-coding 92 0.01096
+56891 LGALS14 galectin 14 protein-coding 24 0.002858
+56892 TCIM transcriptional and immune response regulator protein-coding 16 0.001905
+56893 UBQLN4 ubiquilin 4 protein-coding 58 0.006907
+56894 AGPAT3 1-acylglycerol-3-phosphate O-acyltransferase 3 protein-coding 49 0.005835
+56895 AGPAT4 1-acylglycerol-3-phosphate O-acyltransferase 4 protein-coding 52 0.006193
+56896 DPYSL5 dihydropyrimidinase like 5 protein-coding 112 0.01334
+56897 WRNIP1 Werner helicase interacting protein 1 protein-coding 41 0.004883
+56898 BDH2 3-hydroxybutyrate dehydrogenase 2 protein-coding 20 0.002382
+56899 ANKS1B ankyrin repeat and sterile alpha motif domain containing 1B protein-coding 206 0.02453
+56900 TMEM167B transmembrane protein 167B protein-coding 6 0.0007145
+56901 NDUFA4L2 NDUFA4, mitochondrial complex associated like 2 protein-coding 10 0.001191
+56902 PNO1 partner of NOB1 homolog protein-coding 32 0.003811
+56903 PAPOLB poly(A) polymerase beta protein-coding 107 0.01274
+56904 SH3GLB2 SH3 domain containing GRB2 like, endophilin B2 protein-coding 37 0.004406
+56905 C15orf39 chromosome 15 open reading frame 39 protein-coding 114 0.01358
+56906 THAP10 THAP domain containing 10 protein-coding 28 0.003335
+56907 SPIRE1 spire type actin nucleation factor 1 protein-coding 66 0.00786
+56910 STARD7 StAR related lipid transfer domain containing 7 protein-coding 41 0.004883
+56911 MAP3K7CL MAP3K7 C-terminal like protein-coding 29 0.003454
+56912 IFT46 intraflagellar transport 46 protein-coding 35 0.004168
+56913 C1GALT1 core 1 synthase, glycoprotein-N-acetylgalactosamine 3-beta-galactosyltransferase 1 protein-coding 39 0.004645
+56914 OTOR otoraplin protein-coding 31 0.003692
+56915 EXOSC5 exosome component 5 protein-coding 33 0.00393
+56916 SMARCAD1 SWI/SNF-related, matrix-associated actin-dependent regulator of chromatin, subfamily a, containing DEAD/H box 1 protein-coding 136 0.0162
+56917 MEIS3 Meis homeobox 3 protein-coding 47 0.005597
+56918 C2orf83 chromosome 2 open reading frame 83 protein-coding 17 0.002025
+56919 DHX33 DEAH-box helicase 33 protein-coding 55 0.00655
+56920 SEMA3G semaphorin 3G protein-coding 78 0.009289
+56922 MCCC1 methylcrotonoyl-CoA carboxylase 1 protein-coding 90 0.01072
+56923 NMUR2 neuromedin U receptor 2 protein-coding 102 0.01215
+56924 PAK6 p21 (RAC1) activated kinase 6 protein-coding 65 0.007741
+56925 LXN latexin protein-coding 22 0.00262
+56926 NCLN nicalin protein-coding 44 0.00524
+56927 GPR108 G protein-coupled receptor 108 protein-coding 53 0.006312
+56928 SPPL2B signal peptide peptidase like 2B protein-coding 89 0.0106
+56929 FEM1C fem-1 homolog C protein-coding 101 0.01203
+56931 DUS3L dihydrouridine synthase 3 like protein-coding 72 0.008574
+56934 CA10 carbonic anhydrase 10 protein-coding 80 0.009527
+56935 SMCO4 single-pass membrane protein with coiled-coil domains 4 protein-coding 8 0.0009527
+56936 CCDC177 coiled-coil domain containing 177 protein-coding 5 0.0005955
+56937 PMEPA1 prostate transmembrane protein, androgen induced 1 protein-coding 207 0.02465
+56938 ARNTL2 aryl hydrocarbon receptor nuclear translocator like 2 protein-coding 69 0.008217
+56940 DUSP22 dual specificity phosphatase 22 protein-coding 82 0.009765
+56941 HMCES 5-hydroxymethylcytosine (hmC) binding, ES cell-specific protein-coding 42 0.005002
+56942 CMC2 C-X9-C motif containing 2 protein-coding 11 0.00131
+56943 ENY2 ENY2, transcription and export complex 2 subunit protein-coding 16 0.001905
+56944 OLFML3 olfactomedin like 3 protein-coding 41 0.004883
+56945 MRPS22 mitochondrial ribosomal protein S22 protein-coding 52 0.006193
+56946 EMSY EMSY, BRCA2 interacting transcriptional repressor protein-coding 115 0.0137
+56947 MFF mitochondrial fission factor protein-coding 56 0.006669
+56948 SDR39U1 short chain dehydrogenase/reductase family 39U member 1 protein-coding 34 0.004049
+56949 XAB2 XPA binding protein 2 protein-coding 112 0.01334
+56950 SMYD2 SET and MYND domain containing 2 protein-coding 42 0.005002
+56951 C5orf15 chromosome 5 open reading frame 15 protein-coding 29 0.003454
+56952 PRTFDC1 phosphoribosyl transferase domain containing 1 protein-coding 32 0.003811
+56953 NT5M 5',3'-nucleotidase, mitochondrial protein-coding 27 0.003215
+56954 NIT2 nitrilase family member 2 protein-coding 42 0.005002
+56955 MEPE matrix extracellular phosphoglycoprotein protein-coding 85 0.01012
+56956 LHX9 LIM homeobox 9 protein-coding 77 0.00917
+56957 OTUD7B OTU deubiquitinase 7B protein-coding 116 0.01381
+56961 SHD Src homology 2 domain containing transforming protein D protein-coding 40 0.004764
+56963 RGMA repulsive guidance molecule BMP co-receptor a protein-coding 51 0.006074
+56964 WDR93 WD repeat domain 93 protein-coding 71 0.008455
+56965 PARP6 poly(ADP-ribose) polymerase family member 6 protein-coding 71 0.008455
+56970 ATXN7L3 ataxin 7 like 3 protein-coding 52 0.006193
+56971 CEACAM19 carcinoembryonic antigen related cell adhesion molecule 19 protein-coding 23 0.002739
+56975 FAM20C FAM20C, golgi associated secretory pathway kinase protein-coding 39 0.004645
+56977 STOX2 storkhead box 2 protein-coding 97 0.01155
+56978 PRDM8 PR/SET domain 8 protein-coding 54 0.006431
+56979 PRDM9 PR/SET domain 9 protein-coding 366 0.04359
+56980 PRDM10 PR/SET domain 10 protein-coding 137 0.01632
+56981 PRDM11 PR/SET domain 11 protein-coding 81 0.009646
+56983 POGLUT1 protein O-glucosyltransferase 1 protein-coding 64 0.007622
+56984 PSMG2 proteasome assembly chaperone 2 protein-coding 20 0.002382
+56985 ADPRM ADP-ribose/CDP-alcohol diphosphatase, manganese dependent protein-coding 37 0.004406
+56986 DTWD1 DTW domain containing 1 protein-coding 45 0.005359
+56987 BBX BBX, HMG-box containing protein-coding 126 0.01501
+56990 CDC42SE2 CDC42 small effector 2 protein-coding 3 0.0003573
+56992 KIF15 kinesin family member 15 protein-coding 125 0.01489
+56993 TOMM22 translocase of outer mitochondrial membrane 22 protein-coding 16 0.001905
+56994 CHPT1 choline phosphotransferase 1 protein-coding 37 0.004406
+56995 TULP4 tubby like protein 4 protein-coding 175 0.02084
+56996 SLC12A9 solute carrier family 12 member 9 protein-coding 104 0.01239
+56997 COQ8A coenzyme Q8A protein-coding 83 0.009884
+56998 CTNNBIP1 catenin beta interacting protein 1 protein-coding 9 0.001072
+56999 ADAMTS9 ADAM metallopeptidase with thrombospondin type 1 motif 9 protein-coding 229 0.02727
+57000 GSN-AS1 GSN antisense RNA 1 ncRNA 6 0.0007145
+57001 SDHAF3 succinate dehydrogenase complex assembly factor 3 protein-coding 23 0.002739
+57002 YAE1D1 Yae1 domain containing 1 protein-coding 26 0.003096
+57003 CCDC47 coiled-coil domain containing 47 protein-coding 57 0.006788
+57007 ACKR3 atypical chemokine receptor 3 protein-coding 61 0.007264
+57010 CABP4 calcium binding protein 4 protein-coding 45 0.005359
+57016 AKR1B10 aldo-keto reductase family 1 member B10 protein-coding 70 0.008336
+57017 COQ9 coenzyme Q9 protein-coding 35 0.004168
+57018 CCNL1 cyclin L1 protein-coding 63 0.007503
+57019 CIAPIN1 cytokine induced apoptosis inhibitor 1 protein-coding 27 0.003215
+57020 VPS35L VPS35 endosomal protein sorting factor like protein-coding 101 0.01203
+57026 PDXP pyridoxal phosphatase protein-coding 17 0.002025
+57030 SLC17A7 solute carrier family 17 member 7 protein-coding 68 0.008098
+57035 RSRP1 arginine and serine rich protein 1 protein-coding 27 0.003215
+57037 ANKMY2 ankyrin repeat and MYND domain containing 2 protein-coding 45 0.005359
+57038 RARS2 arginyl-tRNA synthetase 2, mitochondrial protein-coding 82 0.009765
+57045 TWSG1 twisted gastrulation BMP signaling modulator 1 protein-coding 25 0.002977
+57047 PLSCR2 phospholipid scramblase 2 protein-coding 58 0.006907
+57050 UTP3 UTP3, small subunit processome component protein-coding 44 0.00524
+57053 CHRNA10 cholinergic receptor nicotinic alpha 10 subunit protein-coding 48 0.005716
57055 DAZ2 deleted in azoospermia 2 protein-coding 0 0
-57057 TBX20 T-box 20 protein-coding 85 0.01013
-57060 PCBP4 poly(rC) binding protein 4 protein-coding 32 0.003815
-57062 DDX24 DEAD-box helicase 24 protein-coding 78 0.009299
-57082 KNL1 kinetochore scaffold 1 protein-coding 190 0.02265
-57084 SLC17A6 solute carrier family 17 member 6 protein-coding 165 0.01967
-57085 AGTRAP angiotensin II receptor associated protein protein-coding 20 0.002384
-57088 PLSCR4 phospholipid scramblase 4 protein-coding 62 0.007392
-57089 ENTPD7 ectonucleoside triphosphate diphosphohydrolase 7 protein-coding 77 0.00918
-57091 CASS4 Cas scaffold protein family member 4 protein-coding 142 0.01693
-57092 PCNP PEST proteolytic signal containing nuclear protein protein-coding 18 0.002146
-57093 TRIM49 tripartite motif containing 49 protein-coding 106 0.01264
-57094 CPA6 carboxypeptidase A6 protein-coding 75 0.008941
-57095 PITHD1 PITH domain containing 1 protein-coding 23 0.002742
-57096 RPGRIP1 RPGR interacting protein 1 protein-coding 141 0.01681
-57097 PARP11 poly(ADP-ribose) polymerase family member 11 protein-coding 47 0.005603
-57099 AVEN apoptosis and caspase activation inhibitor protein-coding 41 0.004888
-57101 ANO2 anoctamin 2 protein-coding 166 0.01979
-57102 C12orf4 chromosome 12 open reading frame 4 protein-coding 73 0.008703
-57103 TIGAR TP53 induced glycolysis regulatory phosphatase protein-coding 42 0.005007
-57104 PNPLA2 patatin like phospholipase domain containing 2 protein-coding 27 0.003219
-57105 CYSLTR2 cysteinyl leukotriene receptor 2 protein-coding 60 0.007153
-57106 NAT14 N-acetyltransferase 14 (putative) protein-coding 6 0.0007153
-57107 PDSS2 decaprenyl diphosphate synthase subunit 2 protein-coding 36 0.004292
-57109 REXO4 REX4 homolog, 3'-5' exonuclease protein-coding 35 0.004173
-57110 HRASLS HRAS like suppressor protein-coding 38 0.00453
-57111 RAB25 RAB25, member RAS oncogene family protein-coding 24 0.002861
-57113 TRPC7 transient receptor potential cation channel subfamily C member 7 protein-coding 164 0.01955
-57115 PGLYRP4 peptidoglycan recognition protein 4 protein-coding 65 0.007749
-57116 ZNF695 zinc finger protein 695 protein-coding 77 0.00918
-57117 INTS12 integrator complex subunit 12 protein-coding 49 0.005842
-57118 CAMK1D calcium/calmodulin dependent protein kinase ID protein-coding 69 0.008226
-57119 EPPIN epididymal peptidase inhibitor protein-coding 11 0.001311
-57120 GOPC golgi associated PDZ and coiled-coil motif containing protein-coding 44 0.005246
-57121 LPAR5 lysophosphatidic acid receptor 5 protein-coding 30 0.003577
-57122 NUP107 nucleoporin 107 protein-coding 111 0.01323
-57124 CD248 CD248 molecule protein-coding 78 0.009299
-57125 PLXDC1 plexin domain containing 1 protein-coding 53 0.006319
-57126 CD177 CD177 molecule protein-coding 19 0.002265
-57127 RHBG Rh family B glycoprotein (gene/pseudogene) protein-coding 57 0.006795
-57128 LYRM4 LYR motif containing 4 protein-coding 15 0.001788
-57129 MRPL47 mitochondrial ribosomal protein L47 protein-coding 46 0.005484
-57130 ATP13A1 ATPase 13A1 protein-coding 107 0.01276
-57132 CHMP1B charged multivesicular body protein 1B protein-coding 96 0.01144
-57134 MAN1C1 mannosidase alpha class 1C member 1 protein-coding 70 0.008345
-57136 APMAP adipocyte plasma membrane associated protein protein-coding 53 0.006319
-57139 RGL3 ral guanine nucleotide dissociation stimulator like 3 protein-coding 72 0.008584
-57140 RNPEPL1 arginyl aminopeptidase like 1 protein-coding 47 0.005603
-57142 RTN4 reticulon 4 protein-coding 114 0.01359
-57143 ADCK1 aarF domain containing kinase 1 protein-coding 67 0.007988
-57144 PAK5 p21 (RAC1) activated kinase 5 protein-coding 148 0.01764
-57146 TMEM159 transmembrane protein 159 protein-coding 21 0.002504
-57147 SCYL3 SCY1 like pseudokinase 3 protein-coding 67 0.007988
-57148 RALGAPB Ral GTPase activating protein non-catalytic beta subunit protein-coding 181 0.02158
-57149 LYRM1 LYR motif containing 1 protein-coding 10 0.001192
-57150 SMIM8 small integral membrane protein 8 protein-coding 13 0.00155
-57151 LYZL6 lysozyme like 6 protein-coding 25 0.00298
-57152 SLURP1 secreted LY6/PLAUR domain containing 1 protein-coding 13 0.00155
-57153 SLC44A2 solute carrier family 44 member 2 protein-coding 83 0.009895
-57154 SMURF1 SMAD specific E3 ubiquitin protein ligase 1 protein-coding 79 0.009418
-57156 TMEM63C transmembrane protein 63C protein-coding 94 0.01121
-57157 PHTF2 putative homeodomain transcription factor 2 protein-coding 85 0.01013
-57158 JPH2 junctophilin 2 protein-coding 106 0.01264
-57159 TRIM54 tripartite motif containing 54 protein-coding 56 0.006676
-57161 PELI2 pellino E3 ubiquitin protein ligase family member 2 protein-coding 68 0.008107
-57162 PELI1 pellino E3 ubiquitin protein ligase 1 protein-coding 39 0.004649
-57165 GJC2 gap junction protein gamma 2 protein-coding 29 0.003457
-57167 SALL4 spalt like transcription factor 4 protein-coding 173 0.02062
-57168 ASPHD2 aspartate beta-hydroxylase domain containing 2 protein-coding 54 0.006438
-57169 ZNFX1 zinc finger NFX1-type containing 1 protein-coding 180 0.02146
-57171 DOLPP1 dolichyldiphosphatase 1 protein-coding 19 0.002265
-57172 CAMK1G calcium/calmodulin dependent protein kinase IG protein-coding 56 0.006676
-57175 CORO1B coronin 1B protein-coding 40 0.004769
-57176 VARS2 valyl-tRNA synthetase 2, mitochondrial protein-coding 86 0.01025
-57178 ZMIZ1 zinc finger MIZ-type containing 1 protein-coding 133 0.01586
-57179 KIAA1191 KIAA1191 protein-coding 34 0.004053
-57180 ACTR3B ARP3 actin related protein 3 homolog B protein-coding 51 0.00608
-57181 SLC39A10 solute carrier family 39 member 10 protein-coding 96 0.01144
-57182 ANKRD50 ankyrin repeat domain 50 protein-coding 190 0.02265
-57184 FAM219B family with sequence similarity 219 member B protein-coding 8 0.0009537
-57185 NIPAL3 NIPA like domain containing 3 protein-coding 49 0.005842
-57186 RALGAPA2 Ral GTPase activating protein catalytic alpha subunit 2 protein-coding 170 0.02027
-57187 THOC2 THO complex 2 protein-coding 202 0.02408
-57188 ADAMTSL3 ADAMTS like 3 protein-coding 260 0.031
-57189 KIAA1147 KIAA1147 protein-coding 40 0.004769
-57190 SELENON selenoprotein N protein-coding 50 0.005961
-57191 VN1R1 vomeronasal 1 receptor 1 protein-coding 53 0.006319
-57192 MCOLN1 mucolipin 1 protein-coding 81 0.009657
-57194 ATP10A ATPase phospholipid transporting 10A (putative) protein-coding 289 0.03445
-57198 ATP8B2 ATPase phospholipid transporting 8B2 protein-coding 151 0.018
-57205 ATP10D ATPase phospholipid transporting 10D (putative) protein-coding 209 0.02492
-57209 ZNF248 zinc finger protein 248 protein-coding 89 0.01061
-57210 SLC45A4 solute carrier family 45 member 4 protein-coding 116 0.01383
-57211 ADGRG6 adhesion G protein-coupled receptor G6 protein-coding 114 0.01359
-57212 TP73-AS1 TP73 antisense RNA 1 ncRNA 34 0.004053
-57213 SPRYD7 SPRY domain containing 7 protein-coding 17 0.002027
-57214 CEMIP cell migration inducing hyaluronidase 1 protein-coding 150 0.01788
-57215 THAP11 THAP domain containing 11 protein-coding 26 0.0031
-57216 VANGL2 VANGL planar cell polarity protein 2 protein-coding 95 0.01133
-57217 TTC7A tetratricopeptide repeat domain 7A protein-coding 82 0.009776
-57221 ARFGEF3 ARFGEF family member 3 protein-coding 203 0.0242
-57222 ERGIC1 endoplasmic reticulum-golgi intermediate compartment 1 protein-coding 24 0.002861
-57223 PPP4R3B protein phosphatase 4 regulatory subunit 3B protein-coding 92 0.01097
-57224 NHSL1 NHS like 1 protein-coding 81 0.009657
-57226 LYRM2 LYR motif containing 2 protein-coding 5 0.0005961
-57228 SMAGP small cell adhesion glycoprotein protein-coding 10 0.001192
-57231 SNX14 sorting nexin 14 protein-coding 95 0.01133
-57232 ZNF630 zinc finger protein 630 protein-coding 79 0.009418
-57282 SLC4A10 solute carrier family 4 member 10 protein-coding 164 0.01955
-57291 DANCR differentiation antagonizing non-protein coding RNA ncRNA 1 0.0001192
-57326 PBXIP1 PBX homeobox interacting protein 1 protein-coding 73 0.008703
-57332 CBX8 chromobox 8 protein-coding 58 0.006915
-57333 RCN3 reticulocalbin 3 protein-coding 36 0.004292
-57335 ZNF286A zinc finger protein 286A protein-coding 61 0.007272
-57336 ZNF287 zinc finger protein 287 protein-coding 85 0.01013
-57337 SENP7 SUMO specific peptidase 7 protein-coding 135 0.01609
-57338 JPH3 junctophilin 3 protein-coding 116 0.01383
-57343 ZNF304 zinc finger protein 304 protein-coding 97 0.01156
-57348 TTYH1 tweety family member 1 protein-coding 70 0.008345
-57369 GJD2 gap junction protein delta 2 protein-coding 124 0.01478
-57379 AICDA activation induced cytidine deaminase protein-coding 52 0.006199
-57380 MRS2 MRS2, magnesium transporter protein-coding 42 0.005007
-57381 RHOJ ras homolog family member J protein-coding 31 0.003696
-57393 CLTRN collectrin, amino acid transport regulator protein-coding 23 0.002742
-57396 CLK4 CDC like kinase 4 protein-coding 61 0.007272
-57402 S100A14 S100 calcium binding protein A14 protein-coding 15 0.001788
-57403 RAB22A RAB22A, member RAS oncogene family protein-coding 24 0.002861
-57404 CYP20A1 cytochrome P450 family 20 subfamily A member 1 protein-coding 56 0.006676
-57405 SPC25 SPC25, NDC80 kinetochore complex component protein-coding 14 0.001669
-57406 ABHD6 abhydrolase domain containing 6 protein-coding 35 0.004173
-57407 NMRAL1 NmrA like redox sensor 1 protein-coding 26 0.0031
-57408 LRTM1 leucine rich repeats and transmembrane domains 1 protein-coding 62 0.007392
-57409 MIF4GD MIF4G domain containing protein-coding 33 0.003934
-57410 SCYL1 SCY1 like pseudokinase 1 protein-coding 70 0.008345
-57412 AS3MT arsenite methyltransferase protein-coding 31 0.003696
-57414 RHBDD2 rhomboid domain containing 2 protein-coding 44 0.005246
-57415 C3orf14 chromosome 3 open reading frame 14 protein-coding 27 0.003219
-57418 WDR18 WD repeat domain 18 protein-coding 35 0.004173
-57419 SLC24A3 solute carrier family 24 member 3 protein-coding 92 0.01097
-57446 NDRG3 NDRG family member 3 protein-coding 42 0.005007
-57447 NDRG2 NDRG family member 2 protein-coding 33 0.003934
-57448 BIRC6 baculoviral IAP repeat containing 6 protein-coding 421 0.05019
-57449 PLEKHG5 pleckstrin homology and RhoGEF domain containing G5 protein-coding 82 0.009776
-57451 TENM2 teneurin transmembrane protein 2 protein-coding 332 0.03958
-57452 GALNT16 polypeptide N-acetylgalactosaminyltransferase 16 protein-coding 56 0.006676
-57453 DSCAML1 DS cell adhesion molecule like 1 protein-coding 318 0.03791
-57455 REXO1 RNA exonuclease 1 homolog protein-coding 104 0.0124
-57456 KIAA1143 KIAA1143 protein-coding 17 0.002027
-57458 TMCC3 transmembrane and coiled-coil domain family 3 protein-coding 73 0.008703
-57459 GATAD2B GATA zinc finger domain containing 2B protein-coding 69 0.008226
-57460 PPM1H protein phosphatase, Mg2+/Mn2+ dependent 1H protein-coding 65 0.007749
-57461 ISY1 ISY1 splicing factor homolog protein-coding 31 0.003696
-57462 MYORG myogenesis regulating glycosidase (putative) protein-coding 76 0.009061
-57463 AMIGO1 adhesion molecule with Ig like domain 1 protein-coding 39 0.004649
-57464 STRIP2 striatin interacting protein 2 protein-coding 89 0.01061
-57465 TBC1D24 TBC1 domain family member 24 protein-coding 25 0.00298
-57466 SCAF4 SR-related CTD associated factor 4 protein-coding 208 0.0248
-57467 HHATL hedgehog acyltransferase like protein-coding 55 0.006557
-57468 SLC12A5 solute carrier family 12 member 5 protein-coding 200 0.02384
-57469 PNMA8B PNMA family member 8B protein-coding 75 0.008941
-57470 LRRC47 leucine rich repeat containing 47 protein-coding 57 0.006795
-57471 ERMN ermin protein-coding 51 0.00608
-57472 CNOT6 CCR4-NOT transcription complex subunit 6 protein-coding 102 0.01216
-57473 ZNF512B zinc finger protein 512B protein-coding 101 0.01204
-57474 ZNF490 zinc finger protein 490 protein-coding 70 0.008345
-57475 PLEKHH1 pleckstrin homology, MyTH4 and FERM domain containing H1 protein-coding 97 0.01156
-57476 GRAMD1B GRAM domain containing 1B protein-coding 111 0.01323
-57477 SHROOM4 shroom family member 4 protein-coding 164 0.01955
-57478 USP31 ubiquitin specific peptidase 31 protein-coding 141 0.01681
-57479 PRR12 proline rich 12 protein-coding 161 0.01919
-57480 PLEKHG1 pleckstrin homology and RhoGEF domain containing G1 protein-coding 145 0.01729
-57481 KIAA1210 KIAA1210 protein-coding 221 0.02635
-57482 KIAA1211 KIAA1211 protein-coding 216 0.02575
-57484 RNF150 ring finger protein 150 protein-coding 67 0.007988
-57486 NLN neurolysin protein-coding 70 0.008345
-57488 ESYT2 extended synaptotagmin 2 protein-coding 91 0.01085
-57489 ODF2L outer dense fiber of sperm tails 2 like protein-coding 69 0.008226
-57491 AHRR aryl-hydrocarbon receptor repressor protein-coding 101 0.01204
-57492 ARID1B AT-rich interaction domain 1B protein-coding 266 0.03171
-57493 HEG1 heart development protein with EGF like domains 1 protein-coding 135 0.01609
-57494 RIMKLB ribosomal modification protein rimK like family member B protein-coding 66 0.007868
-57495 NWD2 NACHT and WD repeat domain containing 2 protein-coding 94 0.01121
-57496 MKL2 MKL1/myocardin like 2 protein-coding 94 0.01121
-57497 LRFN2 leucine rich repeat and fibronectin type III domain containing 2 protein-coding 159 0.01896
-57498 KIDINS220 kinase D interacting substrate 220 protein-coding 202 0.02408
-57501 KIAA1257 KIAA1257 protein-coding 61 0.007272
-57502 NLGN4X neuroligin 4, X-linked protein-coding 218 0.02599
-57504 MTA3 metastasis associated 1 family member 3 protein-coding 47 0.005603
-57505 AARS2 alanyl-tRNA synthetase 2, mitochondrial protein-coding 112 0.01335
-57506 MAVS mitochondrial antiviral signaling protein protein-coding 51 0.00608
-57507 ZNF608 zinc finger protein 608 protein-coding 140 0.01669
-57508 INTS2 integrator complex subunit 2 protein-coding 117 0.01395
-57509 MTUS1 microtubule associated scaffold protein 1 protein-coding 125 0.0149
-57510 XPO5 exportin 5 protein-coding 98 0.01168
-57511 COG6 component of oligomeric golgi complex 6 protein-coding 73 0.008703
-57512 GPR158 G protein-coupled receptor 158 protein-coding 293 0.03493
-57513 CASKIN2 CASK interacting protein 2 protein-coding 105 0.01252
-57514 ARHGAP31 Rho GTPase activating protein 31 protein-coding 202 0.02408
-57515 SERINC1 serine incorporator 1 protein-coding 49 0.005842
-57519 STARD9 StAR related lipid transfer domain containing 9 protein-coding 74 0.008822
-57520 HECW2 HECT, C2 and WW domain containing E3 ubiquitin protein ligase 2 protein-coding 242 0.02885
-57521 RPTOR regulatory associated protein of MTOR complex 1 protein-coding 135 0.01609
-57522 SRGAP1 SLIT-ROBO Rho GTPase activating protein 1 protein-coding 167 0.01991
-57523 NYNRIN NYN domain and retroviral integrase containing protein-coding 195 0.02325
-57524 CASKIN1 CASK interacting protein 1 protein-coding 95 0.01133
-57526 PCDH19 protocadherin 19 protein-coding 212 0.02527
-57528 KCTD16 potassium channel tetramerization domain containing 16 protein-coding 94 0.01121
-57529 RTL9 retrotransposon Gag like 9 protein-coding 185 0.02206
-57530 CGN cingulin protein-coding 115 0.01371
-57531 HACE1 HECT domain and ankyrin repeat containing E3 ubiquitin protein ligase 1 protein-coding 109 0.01299
-57532 NUFIP2 NUFIP2, FMR1 interacting protein 2 protein-coding 64 0.00763
-57533 TBC1D14 TBC1 domain family member 14 protein-coding 78 0.009299
-57534 MIB1 mindbomb E3 ubiquitin protein ligase 1 protein-coding 104 0.0124
-57535 KIAA1324 KIAA1324 protein-coding 86 0.01025
-57536 KIAA1328 KIAA1328 protein-coding 70 0.008345
-57537 SORCS2 sortilin related VPS10 domain containing receptor 2 protein-coding 103 0.01228
-57538 ALPK3 alpha kinase 3 protein-coding 244 0.02909
-57539 WDR35 WD repeat domain 35 protein-coding 117 0.01395
-57540 DISP3 dispatched RND transporter family member 3 protein-coding 238 0.02837
-57541 ZNF398 zinc finger protein 398 protein-coding 70 0.008345
-57542 KLHL42 kelch like family member 42 protein-coding 44 0.005246
-57544 TXNDC16 thioredoxin domain containing 16 protein-coding 100 0.01192
-57545 CC2D2A coiled-coil and C2 domain containing 2A protein-coding 131 0.01562
-57546 PDP2 pyruvate dehyrogenase phosphatase catalytic subunit 2 protein-coding 39 0.004649
-57547 ZNF624 zinc finger protein 624 protein-coding 97 0.01156
-57549 IGSF9 immunoglobulin superfamily member 9 protein-coding 134 0.01598
-57551 TAOK1 TAO kinase 1 protein-coding 115 0.01371
-57552 NCEH1 neutral cholesterol ester hydrolase 1 protein-coding 49 0.005842
-57553 MICAL3 microtubule associated monooxygenase, calponin and LIM domain containing 3 protein-coding 193 0.02301
-57554 LRRC7 leucine rich repeat containing 7 protein-coding 369 0.04399
-57555 NLGN2 neuroligin 2 protein-coding 74 0.008822
-57556 SEMA6A semaphorin 6A protein-coding 129 0.01538
-57558 USP35 ubiquitin specific peptidase 35 protein-coding 101 0.01204
-57559 STAMBPL1 STAM binding protein like 1 protein-coding 61 0.007272
-57560 IFT80 intraflagellar transport 80 protein-coding 105 0.01252
-57561 ARRDC3 arrestin domain containing 3 protein-coding 56 0.006676
-57562 CEP126 centrosomal protein 126 protein-coding 146 0.01741
-57563 KLHL8 kelch like family member 8 protein-coding 64 0.00763
-57565 KLHL14 kelch like family member 14 protein-coding 108 0.01288
-57567 ZNF319 zinc finger protein 319 protein-coding 70 0.008345
-57568 SIPA1L2 signal induced proliferation associated 1 like 2 protein-coding 245 0.02921
-57569 ARHGAP20 Rho GTPase activating protein 20 protein-coding 141 0.01681
-57570 TRMT5 tRNA methyltransferase 5 protein-coding 47 0.005603
-57571 CARNS1 carnosine synthase 1 protein-coding 77 0.00918
-57572 DOCK6 dedicator of cytokinesis 6 protein-coding 165 0.01967
-57573 ZNF471 zinc finger protein 471 protein-coding 118 0.01407
-57574 MARCH4 membrane associated ring-CH-type finger 4 protein-coding 76 0.009061
-57575 PCDH10 protocadherin 10 protein-coding 510 0.0608
-57576 KIF17 kinesin family member 17 protein-coding 136 0.01621
-57577 CCDC191 coiled-coil domain containing 191 protein-coding 117 0.01395
-57578 UNC79 unc-79 homolog, NALCN channel complex subunit protein-coding 357 0.04256
-57579 FAM135A family with sequence similarity 135 member A protein-coding 143 0.01705
-57580 PREX1 phosphatidylinositol-3,4,5-trisphosphate dependent Rac exchange factor 1 protein-coding 223 0.02659
-57582 KCNT1 potassium sodium-activated channel subfamily T member 1 protein-coding 162 0.01931
-57583 TMEM181 transmembrane protein 181 protein-coding 52 0.006199
-57584 ARHGAP21 Rho GTPase activating protein 21 protein-coding 246 0.02933
-57585 CRAMP1 cramped chromatin regulator homolog 1 protein-coding 102 0.01216
-57586 SYT13 synaptotagmin 13 protein-coding 50 0.005961
-57587 CFAP97 cilia and flagella associated protein 97 protein-coding 56 0.006676
-57589 RIC1 RIC1 homolog, RAB6A GEF complex partner 1 protein-coding 122 0.01454
-57590 WDFY1 WD repeat and FYVE domain containing 1 protein-coding 44 0.005246
-57591 MKL1 megakaryoblastic leukemia (translocation) 1 protein-coding 123 0.01466
-57592 ZNF687 zinc finger protein 687 protein-coding 120 0.01431
-57593 EBF4 early B cell factor 4 protein-coding 38 0.00453
-57594 HOMEZ homeobox and leucine zipper encoding protein-coding 66 0.007868
-57595 PDZD4 PDZ domain containing 4 protein-coding 95 0.01133
-57596 BEGAIN brain enriched guanylate kinase associated protein-coding 50 0.005961
-57599 WDR48 WD repeat domain 48 protein-coding 56 0.006676
-57600 FNIP2 folliculin interacting protein 2 protein-coding 110 0.01311
-57602 USP36 ubiquitin specific peptidase 36 protein-coding 109 0.01299
-57604 TRMT9B tRNA methyltransferase 9B (putative) protein-coding 53 0.006319
-57605 PITPNM2 phosphatidylinositol transfer protein membrane associated 2 protein-coding 108 0.01288
-57606 SLAIN2 SLAIN motif family member 2 protein-coding 56 0.006676
-57608 JCAD junctional cadherin 5 associated protein-coding 184 0.02194
-57609 DIP2B disco interacting protein 2 homolog B protein-coding 159 0.01896
-57610 RANBP10 RAN binding protein 10 protein-coding 63 0.007511
-57611 ISLR2 immunoglobulin superfamily containing leucine rich repeat 2 protein-coding 91 0.01085
-57613 FAM234B family with sequence similarity 234 member B protein-coding 78 0.009299
-57614 KIAA1468 KIAA1468 protein-coding 101 0.01204
-57615 ZNF492 zinc finger protein 492 protein-coding 122 0.01454
-57616 TSHZ3 teashirt zinc finger homeobox 3 protein-coding 297 0.03541
-57617 VPS18 VPS18, CORVET/HOPS core subunit protein-coding 82 0.009776
-57619 SHROOM3 shroom family member 3 protein-coding 181 0.02158
-57620 STIM2 stromal interaction molecule 2 protein-coding 74 0.008822
-57621 ZBTB2 zinc finger and BTB domain containing 2 protein-coding 61 0.007272
-57622 LRFN1 leucine rich repeat and fibronectin type III domain containing 1 protein-coding 69 0.008226
-57623 ZFAT zinc finger and AT-hook domain containing protein-coding 175 0.02086
-57624 NYAP2 neuronal tyrosine-phosphorylated phosphoinositide-3-kinase adaptor 2 protein-coding 169 0.02015
-57626 KLHL1 kelch like family member 1 protein-coding 235 0.02802
-57628 DPP10 dipeptidyl peptidase like 10 protein-coding 242 0.02885
-57630 SH3RF1 SH3 domain containing ring finger 1 protein-coding 104 0.0124
-57631 LRCH2 leucine rich repeats and calponin homology domain containing 2 protein-coding 107 0.01276
-57633 LRRN1 leucine rich repeat neuronal 1 protein-coding 104 0.0124
-57634 EP400 E1A binding protein p400 protein-coding 282 0.03362
-57636 ARHGAP23 Rho GTPase activating protein 23 protein-coding 69 0.008226
-57639 CCDC146 coiled-coil domain containing 146 protein-coding 107 0.01276
-57642 COL20A1 collagen type XX alpha 1 chain protein-coding 186 0.02217
-57643 ZSWIM5 zinc finger SWIM-type containing 5 protein-coding 99 0.0118
-57644 MYH7B myosin heavy chain 7B protein-coding 384 0.04578
-57645 POGK pogo transposable element derived with KRAB domain protein-coding 69 0.008226
-57646 USP28 ubiquitin specific peptidase 28 protein-coding 162 0.01931
-57647 DHX37 DEAH-box helicase 37 protein-coding 130 0.0155
-57648 KIAA1522 KIAA1522 protein-coding 130 0.0155
-57649 PHF12 PHD finger protein 12 protein-coding 85 0.01013
-57650 CIP2A cell proliferation regulating inhibitor of protein phosphatase 2A protein-coding 102 0.01216
-57654 UVSSA UV stimulated scaffold protein A protein-coding 94 0.01121
-57655 GRAMD1A GRAM domain containing 1A protein-coding 74 0.008822
-57657 HCN3 hyperpolarization activated cyclic nucleotide gated potassium channel 3 protein-coding 84 0.01001
-57658 CALCOCO1 calcium binding and coiled-coil domain 1 protein-coding 74 0.008822
-57659 ZBTB4 zinc finger and BTB domain containing 4 protein-coding 95 0.01133
-57661 PHRF1 PHD and ring finger domains 1 protein-coding 193 0.02301
-57662 CAMSAP3 calmodulin regulated spectrin associated protein family member 3 protein-coding 120 0.01431
-57663 USP29 ubiquitin specific peptidase 29 protein-coding 196 0.02337
-57664 PLEKHA4 pleckstrin homology domain containing A4 protein-coding 95 0.01133
-57665 RDH14 retinol dehydrogenase 14 protein-coding 129 0.01538
-57666 FBRSL1 fibrosin like 1 protein-coding 38 0.00453
-57669 EPB41L5 erythrocyte membrane protein band 4.1 like 5 protein-coding 98 0.01168
-57670 KIAA1549 KIAA1549 protein-coding 226 0.02694
-57673 BEND3 BEN domain containing 3 protein-coding 112 0.01335
-57674 RNF213 ring finger protein 213 protein-coding 370 0.04411
-57677 ZFP14 ZFP14 zinc finger protein protein-coding 83 0.009895
-57678 GPAM glycerol-3-phosphate acyltransferase, mitochondrial protein-coding 96 0.01144
-57679 ALS2 ALS2, alsin Rho guanine nucleotide exchange factor protein-coding 141 0.01681
-57680 CHD8 chromodomain helicase DNA binding protein 8 protein-coding 254 0.03028
-57683 ZDBF2 zinc finger DBF-type containing 2 protein-coding 297 0.03541
-57684 ZBTB26 zinc finger and BTB domain containing 26 protein-coding 44 0.005246
-57685 CACHD1 cache domain containing 1 protein-coding 140 0.01669
-57687 VAT1L vesicle amine transport 1 like protein-coding 80 0.009537
-57688 ZSWIM6 zinc finger SWIM-type containing 6 protein-coding 75 0.008941
-57689 LRRC4C leucine rich repeat containing 4C protein-coding 204 0.02432
-57690 TNRC6C trinucleotide repeat containing 6C protein-coding 135 0.01609
-57691 KIAA1586 KIAA1586 protein-coding 86 0.01025
-57692 MAGEE1 MAGE family member E1 protein-coding 163 0.01943
-57693 ZNF317 zinc finger protein 317 protein-coding 67 0.007988
-57695 USP37 ubiquitin specific peptidase 37 protein-coding 97 0.01156
-57696 DDX55 DEAD-box helicase 55 protein-coding 57 0.006795
-57697 FANCM Fanconi anemia complementation group M protein-coding 227 0.02706
-57698 SHTN1 shootin 1 protein-coding 64 0.00763
-57699 CPNE5 copine 5 protein-coding 64 0.00763
-57700 FAM160B1 family with sequence similarity 160 member B1 protein-coding 85 0.01013
-57701 NCKAP5L NCK associated protein 5 like protein-coding 136 0.01621
-57703 CWC22 CWC22 spliceosome associated protein homolog protein-coding 103 0.01228
-57704 GBA2 glucosylceramidase beta 2 protein-coding 76 0.009061
-57705 WDFY4 WDFY family member 4 protein-coding 201 0.02396
-57706 DENND1A DENN domain containing 1A protein-coding 93 0.01109
-57707 TLDC1 TBC/LysM-associated domain containing 1 protein-coding 42 0.005007
-57708 MIER1 MIER1 transcriptional regulator protein-coding 75 0.008941
-57709 SLC7A14 solute carrier family 7 member 14 protein-coding 121 0.01443
-57710 KIAA1614 KIAA1614 protein-coding 121 0.01443
-57711 ZNF529 zinc finger protein 529 protein-coding 66 0.007868
-57713 SFMBT2 Scm like with four mbt domains 2 protein-coding 168 0.02003
-57715 SEMA4G semaphorin 4G protein-coding 61 0.007272
-57716 PRX periaxin protein-coding 148 0.01764
-57717 PCDHB16 protocadherin beta 16 protein-coding 229 0.0273
-57718 PPP4R4 protein phosphatase 4 regulatory subunit 4 protein-coding 127 0.01514
-57719 ANO8 anoctamin 8 protein-coding 87 0.01037
-57720 GPR107 G protein-coupled receptor 107 protein-coding 57 0.006795
-57721 METTL14 methyltransferase like 14 protein-coding 60 0.007153
-57722 IGDCC4 immunoglobulin superfamily DCC subclass member 4 protein-coding 122 0.01454
-57724 EPG5 ectopic P-granules autophagy protein 5 homolog protein-coding 238 0.02837
-57727 NCOA5 nuclear receptor coactivator 5 protein-coding 82 0.009776
-57728 WDR19 WD repeat domain 19 protein-coding 111 0.01323
-57730 ANKRD36B ankyrin repeat domain 36B protein-coding 65 0.007749
-57731 SPTBN4 spectrin beta, non-erythrocytic 4 protein-coding 244 0.02909
-57732 ZFYVE28 zinc finger FYVE-type containing 28 protein-coding 116 0.01383
-57733 GBA3 glucosylceramidase beta 3 (gene/pseudogene) protein-coding 82 0.009776
-57758 SCUBE2 signal peptide, CUB domain and EGF like domain containing 2 protein-coding 104 0.0124
-57761 TRIB3 tribbles pseudokinase 3 protein-coding 51 0.00608
-57763 ANKRA2 ankyrin repeat family A member 2 protein-coding 25 0.00298
-57786 RBAK RB associated KRAB zinc finger protein-coding 80 0.009537
-57787 MARK4 microtubule affinity regulating kinase 4 protein-coding 83 0.009895
-57794 SUGP1 SURP and G-patch domain containing 1 protein-coding 78 0.009299
-57795 BRINP2 BMP/retinoic acid inducible neural specific 2 protein-coding 179 0.02134
-57798 GATAD1 GATA zinc finger domain containing 1 protein-coding 16 0.001907
-57799 RAB40C RAB40C, member RAS oncogene family protein-coding 36 0.004292
-57801 HES4 hes family bHLH transcription factor 4 protein-coding 7 0.0008345
-57804 POLD4 DNA polymerase delta 4, accessory subunit protein-coding 9 0.001073
-57805 CCAR2 cell cycle and apoptosis regulator 2 protein-coding 96 0.01144
-57817 HAMP hepcidin antimicrobial peptide protein-coding 13 0.00155
-57818 G6PC2 glucose-6-phosphatase catalytic subunit 2 protein-coding 58 0.006915
-57819 LSM2 LSM2 homolog, U6 small nuclear RNA and mRNA degradation associated protein-coding 11 0.001311
-57820 CCNB1IP1 cyclin B1 interacting protein 1 protein-coding 46 0.005484
-57821 CCDC181 coiled-coil domain containing 181 protein-coding 102 0.01216
-57822 GRHL3 grainyhead like transcription factor 3 protein-coding 71 0.008464
-57823 SLAMF7 SLAM family member 7 protein-coding 53 0.006319
-57824 HMHB1 histocompatibility minor HB-1 protein-coding 3 0.0003577
-57826 RAP2C RAP2C, member of RAS oncogene family protein-coding 33 0.003934
-57827 C6orf47 chromosome 6 open reading frame 47 protein-coding 19 0.002265
-57828 CATSPERG cation channel sperm associated auxiliary subunit gamma protein-coding 102 0.01216
-57829 ZP4 zona pellucida glycoprotein 4 protein-coding 207 0.02468
-57830 KRTAP5-8 keratin associated protein 5-8 protein-coding 30 0.003577
-57834 CYP4F11 cytochrome P450 family 4 subfamily F member 11 protein-coding 95 0.01133
-57835 SLC4A5 solute carrier family 4 member 5 protein-coding 120 0.01431
-57862 ZNF410 zinc finger protein 410 protein-coding 42 0.005007
-57863 CADM3 cell adhesion molecule 3 protein-coding 99 0.0118
-57864 SLC46A2 solute carrier family 46 member 2 protein-coding 46 0.005484
-58155 PTBP2 polypyrimidine tract binding protein 2 protein-coding 80 0.009537
-58157 NGB neuroglobin protein-coding 14 0.001669
-58158 NEUROD4 neuronal differentiation 4 protein-coding 89 0.01061
-58189 WFDC1 WAP four-disulfide core domain 1 protein-coding 12 0.001431
-58190 CTDSP1 CTD small phosphatase 1 protein-coding 38 0.00453
-58191 CXCL16 C-X-C motif chemokine ligand 16 protein-coding 29 0.003457
-58472 SQOR sulfide quinone oxidoreductase protein-coding 44 0.005246
-58473 PLEKHB1 pleckstrin homology domain containing B1 protein-coding 26 0.0031
-58475 MS4A7 membrane spanning 4-domains A7 protein-coding 42 0.005007
-58476 TP53INP2 tumor protein p53 inducible nuclear protein 2 protein-coding 16 0.001907
-58477 SRPRB SRP receptor beta subunit protein-coding 29 0.003457
-58478 ENOPH1 enolase-phosphatase 1 protein-coding 30 0.003577
-58480 RHOU ras homolog family member U protein-coding 33 0.003934
-58483 LINC00474 long intergenic non-protein coding RNA 474 ncRNA 4 0.0004769
-58484 NLRC4 NLR family CARD domain containing 4 protein-coding 141 0.01681
-58485 TRAPPC1 trafficking protein particle complex 1 protein-coding 12 0.001431
-58486 ZBED5 zinc finger BED-type containing 5 protein-coding 49 0.005842
-58487 CREBZF CREB/ATF bZIP transcription factor protein-coding 43 0.005126
-58488 PCTP phosphatidylcholine transfer protein protein-coding 23 0.002742
-58489 ABHD17C abhydrolase domain containing 17C protein-coding 21 0.002504
-58490 RPRD1B regulation of nuclear pre-mRNA domain containing 1B protein-coding 36 0.004292
-58491 ZNF71 zinc finger protein 71 protein-coding 94 0.01121
-58492 ZNF77 zinc finger protein 77 protein-coding 61 0.007272
-58493 INIP INTS3 and NABP interacting protein protein-coding 18 0.002146
-58494 JAM2 junctional adhesion molecule 2 protein-coding 40 0.004769
-58495 OVOL2 ovo like zinc finger 2 protein-coding 29 0.003457
-58496 LY6G5B lymphocyte antigen 6 family member G5B protein-coding 4 0.0004769
-58497 PRUNE1 prune exopolyphosphatase 1 protein-coding 46 0.005484
-58498 MYL7 myosin light chain 7 protein-coding 14 0.001669
-58499 ZNF462 zinc finger protein 462 protein-coding 241 0.02873
-58500 ZNF250 zinc finger protein 250 protein-coding 50 0.005961
-58503 OPRPN opiorphin prepropeptide protein-coding 62 0.007392
-58504 ARHGAP22 Rho GTPase activating protein 22 protein-coding 107 0.01276
-58505 OSTC oligosaccharyltransferase complex non-catalytic subunit protein-coding 15 0.001788
-58506 SCAF1 SR-related CTD associated factor 1 protein-coding 108 0.01288
-58508 KMT2C lysine methyltransferase 2C protein-coding 720 0.08584
-58509 CACTIN cactin, spliceosome C complex subunit protein-coding 77 0.00918
-58510 PRODH2 proline dehydrogenase 2 protein-coding 69 0.008226
-58511 DNASE2B deoxyribonuclease 2 beta protein-coding 49 0.005842
-58512 DLGAP3 DLG associated protein 3 protein-coding 140 0.01669
-58513 EPS15L1 epidermal growth factor receptor pathway substrate 15 like 1 protein-coding 79 0.009418
-58515 SELENOK selenoprotein K protein-coding 11 0.001311
-58516 SINHCAF SIN3-HDAC complex associated factor protein-coding 24 0.002861
-58517 RBM25 RNA binding motif protein 25 protein-coding 104 0.0124
-58524 DMRT3 doublesex and mab-3 related transcription factor 3 protein-coding 69 0.008226
-58525 WIZ widely interspaced zinc finger motifs protein-coding 104 0.0124
-58526 MID1IP1 MID1 interacting protein 1 protein-coding 24 0.002861
-58527 ABRACL ABRA C-terminal like protein-coding 7 0.0008345
-58528 RRAGD Ras related GTP binding D protein-coding 46 0.005484
-58529 MYOZ1 myozenin 1 protein-coding 36 0.004292
-58530 LY6G6D lymphocyte antigen 6 family member G6D protein-coding 11 0.001311
-58531 PRM3 protamine 3 protein-coding 13 0.00155
-58533 SNX6 sorting nexin 6 protein-coding 40 0.004769
-58538 MPP4 membrane palmitoylated protein 4 protein-coding 72 0.008584
-58985 IL22RA1 interleukin 22 receptor subunit alpha 1 protein-coding 56 0.006676
-58986 TMEM8A transmembrane protein 8A protein-coding 74 0.008822
-59067 IL21 interleukin 21 protein-coding 37 0.004411
-59082 CARD18 caspase recruitment domain family member 18 protein-coding 26 0.0031
-59084 ENPP5 ectonucleotide pyrophosphatase/phosphodiesterase 5 (putative) protein-coding 69 0.008226
-59269 HIVEP3 human immunodeficiency virus type I enhancer binding protein 3 protein-coding 242 0.02885
-59271 EVA1C eva-1 homolog C protein-coding 42 0.005007
-59272 ACE2 angiotensin I converting enzyme 2 protein-coding 96 0.01144
-59274 TLNRD1 talin rod domain containing 1 protein-coding 22 0.002623
-59277 NTN4 netrin 4 protein-coding 75 0.008941
-59283 CACNG8 calcium voltage-gated channel auxiliary subunit gamma 8 protein-coding 50 0.005961
-59284 CACNG7 calcium voltage-gated channel auxiliary subunit gamma 7 protein-coding 75 0.008941
-59285 CACNG6 calcium voltage-gated channel auxiliary subunit gamma 6 protein-coding 39 0.004649
-59286 UBL5 ubiquitin like 5 protein-coding 8 0.0009537
-59307 SIGIRR single Ig and TIR domain containing protein-coding 32 0.003815
-59335 PRDM12 PR/SET domain 12 protein-coding 29 0.003457
-59336 PRDM13 PR/SET domain 13 protein-coding 72 0.008584
-59338 PLEKHA1 pleckstrin homology domain containing A1 protein-coding 55 0.006557
-59339 PLEKHA2 pleckstrin homology domain containing A2 protein-coding 38 0.00453
-59340 HRH4 histamine receptor H4 protein-coding 60 0.007153
-59341 TRPV4 transient receptor potential cation channel subfamily V member 4 protein-coding 120 0.01431
-59342 SCPEP1 serine carboxypeptidase 1 protein-coding 45 0.005365
-59343 SENP2 SUMO specific peptidase 2 protein-coding 68 0.008107
-59344 ALOXE3 arachidonate lipoxygenase 3 protein-coding 87 0.01037
-59345 GNB4 G protein subunit beta 4 protein-coding 48 0.005722
-59348 ZNF350 zinc finger protein 350 protein-coding 69 0.008226
-59349 KLHL12 kelch like family member 12 protein-coding 62 0.007392
-59350 RXFP1 relaxin family peptide receptor 1 protein-coding 129 0.01538
-59351 PBOV1 prostate and breast cancer overexpressed 1 protein-coding 15 0.001788
-59352 LGR6 leucine rich repeat containing G protein-coupled receptor 6 protein-coding 123 0.01466
-59353 TMEM35A transmembrane protein 35A protein-coding 31 0.003696
-60312 AFAP1 actin filament associated protein 1 protein-coding 92 0.01097
-60313 GPBP1L1 GC-rich promoter binding protein 1 like 1 protein-coding 49 0.005842
-60314 C12orf10 chromosome 12 open reading frame 10 protein-coding 28 0.003338
-60343 FAM3A family with sequence similarity 3 member A protein-coding 80 0.009537
-60370 AVPI1 arginine vasopressin induced 1 protein-coding 18 0.002146
-60385 TSKS testis specific serine kinase substrate protein-coding 94 0.01121
-60386 SLC25A19 solute carrier family 25 member 19 protein-coding 31 0.003696
-60401 EDA2R ectodysplasin A2 receptor protein-coding 51 0.00608
-60412 EXOC4 exocyst complex component 4 protein-coding 136 0.01621
-60436 TGIF2 TGFB induced factor homeobox 2 protein-coding 27 0.003219
-60437 CDH26 cadherin 26 protein-coding 115 0.01371
-60468 BACH2 BTB domain and CNC homolog 2 protein-coding 133 0.01586
-60481 ELOVL5 ELOVL fatty acid elongase 5 protein-coding 29 0.003457
-60482 SLC5A7 solute carrier family 5 member 7 protein-coding 115 0.01371
-60484 HAPLN2 hyaluronan and proteoglycan link protein 2 protein-coding 22 0.002623
-60485 SAV1 salvador family WW domain containing protein 1 protein-coding 39 0.004649
-60487 TRMT11 tRNA methyltransferase 11 homolog protein-coding 42 0.005007
-60488 MRPS35 mitochondrial ribosomal protein S35 protein-coding 73 0.008703
-60489 APOBEC3G apolipoprotein B mRNA editing enzyme catalytic subunit 3G protein-coding 51 0.00608
-60490 PPCDC phosphopantothenoylcysteine decarboxylase protein-coding 12 0.001431
-60491 NIF3L1 NGG1 interacting factor 3 like 1 protein-coding 44 0.005246
-60492 CCDC90B coiled-coil domain containing 90B protein-coding 32 0.003815
-60493 FASTKD5 FAST kinase domains 5 protein-coding 76 0.009061
-60494 CCDC81 coiled-coil domain containing 81 protein-coding 76 0.009061
-60495 HPSE2 heparanase 2 (inactive) protein-coding 104 0.0124
-60496 AASDHPPT aminoadipate-semialdehyde dehydrogenase-phosphopantetheinyl transferase protein-coding 42 0.005007
-60506 NYX nyctalopin protein-coding 49 0.005842
-60509 AGBL5 ATP/GTP binding protein like 5 protein-coding 113 0.01347
-60526 LDAH lipid droplet associated hydrolase protein-coding 46 0.005484
-60528 ELAC2 elaC ribonuclease Z 2 protein-coding 82 0.009776
-60529 ALX4 ALX homeobox 4 protein-coding 97 0.01156
-60558 GUF1 GUF1 homolog, GTPase protein-coding 84 0.01001
-60559 SPCS3 signal peptidase complex subunit 3 protein-coding 31 0.003696
-60560 NAA35 N(alpha)-acetyltransferase 35, NatC auxiliary subunit protein-coding 74 0.008822
-60561 RINT1 RAD50 interactor 1 protein-coding 72 0.008584
-60592 SCOC short coiled-coil protein protein-coding 17 0.002027
-60598 KCNK15 potassium two pore domain channel subfamily K member 15 protein-coding 47 0.005603
-60625 DHX35 DEAH-box helicase 35 protein-coding 79 0.009418
-60626 RIC8A RIC8 guanine nucleotide exchange factor A protein-coding 52 0.006199
-60672 MIIP migration and invasion inhibitory protein protein-coding 44 0.005246
-60673 ATG101 autophagy related 101 protein-coding 21 0.002504
-60675 PROK2 prokineticin 2 protein-coding 16 0.001907
-60676 PAPPA2 pappalysin 2 protein-coding 461 0.05496
-60677 CELF6 CUGBP Elav-like family member 6 protein-coding 39 0.004649
-60678 EEFSEC eukaryotic elongation factor, selenocysteine-tRNA specific protein-coding 57 0.006795
-60680 CELF5 CUGBP Elav-like family member 5 protein-coding 34 0.004053
-60681 FKBP10 FK506 binding protein 10 protein-coding 73 0.008703
-60682 SMAP1 small ArfGAP 1 protein-coding 61 0.007272
-60684 TRAPPC11 trafficking protein particle complex 11 protein-coding 92 0.01097
-60685 ZFAND3 zinc finger AN1-type containing 3 protein-coding 24 0.002861
-60686 C14orf93 chromosome 14 open reading frame 93 protein-coding 48 0.005722
-63027 SLC22A23 solute carrier family 22 member 23 protein-coding 66 0.007868
-63035 BCORL1 BCL6 corepressor like 1 protein-coding 246 0.02933
-63036 CELA2A chymotrypsin like elastase family member 2A protein-coding 32 0.003815
-63826 SRR serine racemase protein-coding 30 0.003577
-63827 BCAN brevican protein-coding 152 0.01812
-63874 ABHD4 abhydrolase domain containing 4 protein-coding 40 0.004769
-63875 MRPL17 mitochondrial ribosomal protein L17 protein-coding 14 0.001669
-63876 PKNOX2 PBX/knotted 1 homeobox 2 protein-coding 73 0.008703
-63877 FAM204A family with sequence similarity 204 member A protein-coding 31 0.003696
-63891 RNF123 ring finger protein 123 protein-coding 129 0.01538
-63892 THADA THADA, armadillo repeat containing protein-coding 174 0.02074
-63893 UBE2O ubiquitin conjugating enzyme E2 O protein-coding 109 0.01299
-63894 VIPAS39 VPS33B interacting protein, apical-basolateral polarity regulator, spe-39 homolog protein-coding 59 0.007034
-63895 PIEZO2 piezo type mechanosensitive ion channel component 2 protein-coding 160 0.01907
-63897 HEATR6 HEAT repeat containing 6 protein-coding 93 0.01109
-63898 SH2D4A SH2 domain containing 4A protein-coding 51 0.00608
-63899 NSUN3 NOP2/Sun RNA methyltransferase family member 3 protein-coding 40 0.004769
-63901 FAM111A family with sequence similarity 111 member A protein-coding 78 0.009299
-63904 DUSP21 dual specificity phosphatase 21 protein-coding 43 0.005126
-63905 MANBAL mannosidase beta like protein-coding 14 0.001669
-63906 GPATCH3 G-patch domain containing 3 protein-coding 56 0.006676
-63908 NAPB NSF attachment protein beta protein-coding 38 0.00453
-63910 SLC17A9 solute carrier family 17 member 9 protein-coding 62 0.007392
-63914 LINC01590 long intergenic non-protein coding RNA 1590 ncRNA 1 0.0001192
-63915 BLOC1S5 biogenesis of lysosomal organelles complex 1 subunit 5 protein-coding 22 0.002623
-63916 ELMO2 engulfment and cell motility 2 protein-coding 73 0.008703
-63917 GALNT11 polypeptide N-acetylgalactosaminyltransferase 11 protein-coding 72 0.008584
-63920 ZBED8 zinc finger BED-type containing 8 protein-coding 68 0.008107
-63922 CHTF18 chromosome transmission fidelity factor 18 protein-coding 101 0.01204
-63923 TNN tenascin N protein-coding 307 0.0366
-63924 CIDEC cell death inducing DFFA like effector c protein-coding 27 0.003219
-63925 ZNF335 zinc finger protein 335 protein-coding 139 0.01657
-63926 ANKEF1 ankyrin repeat and EF-hand domain containing 1 protein-coding 93 0.01109
-63928 CHP2 calcineurin like EF-hand protein 2 protein-coding 34 0.004053
-63929 XPNPEP3 X-prolyl aminopeptidase 3 protein-coding 64 0.00763
-63931 MRPS14 mitochondrial ribosomal protein S14 protein-coding 23 0.002742
-63932 CXorf56 chromosome X open reading frame 56 protein-coding 50 0.005961
-63933 MCUR1 mitochondrial calcium uniporter regulator 1 protein-coding 22 0.002623
-63934 ZNF667 zinc finger protein 667 protein-coding 132 0.01574
-63935 PCIF1 PDX1 C-terminal inhibiting factor 1 protein-coding 75 0.008941
-63939 FAM217B family with sequence similarity 217 member B protein-coding 54 0.006438
-63940 GPSM3 G protein signaling modulator 3 protein-coding 30 0.003577
-63941 NECAB3 N-terminal EF-hand calcium binding protein 3 protein-coding 33 0.003934
-63943 FKBPL FK506 binding protein like protein-coding 93 0.01109
-63946 DMRTC2 DMRT like family C2 protein-coding 43 0.005126
-63947 DMRTC1 DMRT like family C1 protein-coding 9 0.001073
-63948 DMRTB1 DMRT like family B with proline rich C-terminal 1 protein-coding 49 0.005842
-63950 DMRTA2 DMRT like family A2 protein-coding 22 0.002623
-63951 DMRTA1 DMRT like family A1 protein-coding 39 0.004649
-63967 CLSPN claspin protein-coding 129 0.01538
-63970 TP53AIP1 tumor protein p53 regulated apoptosis inducing protein 1 protein-coding 10 0.001192
-63971 KIF13A kinesin family member 13A protein-coding 184 0.02194
-63973 NEUROG2 neurogenin 2 protein-coding 28 0.003338
-63974 NEUROD6 neuronal differentiation 6 protein-coding 82 0.009776
-63976 PRDM16 PR/SET domain 16 protein-coding 173 0.02062
-63977 PRDM15 PR/SET domain 15 protein-coding 131 0.01562
-63978 PRDM14 PR/SET domain 14 protein-coding 101 0.01204
-63979 FIGNL1 fidgetin like 1 protein-coding 86 0.01025
-63982 ANO3 anoctamin 3 protein-coding 167 0.01991
-64005 MYO1G myosin IG protein-coding 101 0.01204
-64061 TSPYL2 TSPY like 2 protein-coding 93 0.01109
-64062 RBM26 RNA binding motif protein 26 protein-coding 110 0.01311
-64063 PRSS22 serine protease 22 protein-coding 35 0.004173
-64064 OXCT2 3-oxoacid CoA-transferase 2 protein-coding 51 0.00608
-64065 PERP PERP, TP53 apoptosis effector protein-coding 23 0.002742
-64066 MMP27 matrix metallopeptidase 27 protein-coding 69 0.008226
-64067 NPAS3 neuronal PAS domain protein 3 protein-coding 140 0.01669
-64072 CDH23 cadherin related 23 protein-coding 289 0.03445
-64073 C19orf33 chromosome 19 open reading frame 33 protein-coding 11 0.001311
-64077 LHPP phospholysine phosphohistidine inorganic pyrophosphate phosphatase protein-coding 32 0.003815
-64078 SLC28A3 solute carrier family 28 member 3 protein-coding 86 0.01025
-64080 RBKS ribokinase protein-coding 30 0.003577
-64081 PBLD phenazine biosynthesis like protein domain containing protein-coding 35 0.004173
-64083 GOLPH3 golgi phosphoprotein 3 protein-coding 38 0.00453
-64084 CLSTN2 calsyntenin 2 protein-coding 191 0.02277
-64087 MCCC2 methylcrotonoyl-CoA carboxylase 2 protein-coding 62 0.007392
-64089 SNX16 sorting nexin 16 protein-coding 42 0.005007
-64090 GAL3ST2 galactose-3-O-sulfotransferase 2 protein-coding 40 0.004769
-64091 POPDC2 popeye domain containing 2 protein-coding 45 0.005365
-64092 SAMSN1 SAM domain, SH3 domain and nuclear localization signals 1 protein-coding 92 0.01097
-64093 SMOC1 SPARC related modular calcium binding 1 protein-coding 61 0.007272
-64094 SMOC2 SPARC related modular calcium binding 2 protein-coding 101 0.01204
-64096 GFRA4 GDNF family receptor alpha 4 protein-coding 12 0.001431
-64097 EPB41L4A erythrocyte membrane protein band 4.1 like 4A protein-coding 96 0.01144
-64098 PARVG parvin gamma protein-coding 51 0.00608
-64100 ELSPBP1 epididymal sperm binding protein 1 protein-coding 42 0.005007
-64101 LRRC4 leucine rich repeat containing 4 protein-coding 91 0.01085
-64102 TNMD tenomodulin protein-coding 43 0.005126
-64105 CENPK centromere protein K protein-coding 32 0.003815
-64106 NPFFR1 neuropeptide FF receptor 1 protein-coding 32 0.003815
-64108 RTP4 receptor transporter protein 4 protein-coding 36 0.004292
-64109 CRLF2 cytokine receptor like factor 2 protein-coding 46 0.005484
-64110 MAGEF1 MAGE family member F1 protein-coding 31 0.003696
-64111 NPVF neuropeptide VF precursor protein-coding 31 0.003696
-64112 MOAP1 modulator of apoptosis 1 protein-coding 44 0.005246
-64114 TMBIM1 transmembrane BAX inhibitor motif containing 1 protein-coding 32 0.003815
-64115 VSIR V-set immunoregulatory receptor protein-coding 41 0.004888
-64116 SLC39A8 solute carrier family 39 member 8 protein-coding 51 0.00608
-64118 DUS1L dihydrouridine synthase 1 like protein-coding 45 0.005365
-64121 RRAGC Ras related GTP binding C protein-coding 33 0.003934
-64122 FN3K fructosamine 3 kinase protein-coding 38 0.00453
-64123 ADGRL4 adhesion G protein-coupled receptor L4 protein-coding 192 0.02289
-64127 NOD2 nucleotide binding oligomerization domain containing 2 protein-coding 139 0.01657
-64129 TINAGL1 tubulointerstitial nephritis antigen like 1 protein-coding 79 0.009418
-64130 LIN7B lin-7 homolog B, crumbs cell polarity complex component protein-coding 24 0.002861
-64131 XYLT1 xylosyltransferase 1 protein-coding 152 0.01812
-64132 XYLT2 xylosyltransferase 2 protein-coding 97 0.01156
-64135 IFIH1 interferon induced with helicase C domain 1 protein-coding 109 0.01299
-64137 ABCG4 ATP binding cassette subfamily G member 4 protein-coding 97 0.01156
-64145 RBSN rabenosyn, RAB effector protein-coding 88 0.01049
-64146 PDF peptide deformylase, mitochondrial protein-coding 1 0.0001192
-64147 KIF9 kinesin family member 9 protein-coding 79 0.009418
-64149 C17orf75 chromosome 17 open reading frame 75 protein-coding 41 0.004888
-64151 NCAPG non-SMC condensin I complex subunit G protein-coding 119 0.01419
-64167 ERAP2 endoplasmic reticulum aminopeptidase 2 protein-coding 89 0.01061
-64168 NECAB1 N-terminal EF-hand calcium binding protein 1 protein-coding 59 0.007034
-64170 CARD9 caspase recruitment domain family member 9 protein-coding 66 0.007868
-64172 OSGEPL1 O-sialoglycoprotein endopeptidase like 1 protein-coding 43 0.005126
-64174 DPEP2 dipeptidase 2 protein-coding 84 0.01001
-64175 P3H1 prolyl 3-hydroxylase 1 protein-coding 80 0.009537
-64180 DPEP3 dipeptidase 3 protein-coding 108 0.01288
-64184 EDDM3B epididymal protein 3B protein-coding 20 0.002384
-64207 IRF2BPL interferon regulatory factor 2 binding protein like protein-coding 49 0.005842
-64208 POPDC3 popeye domain containing 3 protein-coding 57 0.006795
-64210 MMS19 MMS19 homolog, cytosolic iron-sulfur assembly component protein-coding 58 0.006915
-64211 LHX5 LIM homeobox 5 protein-coding 43 0.005126
-64215 DNAJC1 DnaJ heat shock protein family (Hsp40) member C1 protein-coding 77 0.00918
-64216 TFB2M transcription factor B2, mitochondrial protein-coding 50 0.005961
-64218 SEMA4A semaphorin 4A protein-coding 98 0.01168
-64219 PJA1 praja ring finger ubiquitin ligase 1 protein-coding 99 0.0118
-64220 STRA6 stimulated by retinoic acid 6 protein-coding 51 0.00608
-64221 ROBO3 roundabout guidance receptor 3 protein-coding 154 0.01836
-64222 TOR3A torsin family 3 member A protein-coding 31 0.003696
-64223 MLST8 MTOR associated protein, LST8 homolog protein-coding 38 0.00453
-64224 HERPUD2 HERPUD family member 2 protein-coding 53 0.006319
-64225 ATL2 atlastin GTPase 2 protein-coding 49 0.005842
-64231 MS4A6A membrane spanning 4-domains A6A protein-coding 37 0.004411
-64232 MS4A5 membrane spanning 4-domains A5 protein-coding 40 0.004769
-64236 PDLIM2 PDZ and LIM domain 2 protein-coding 43 0.005126
-64240 ABCG5 ATP binding cassette subfamily G member 5 protein-coding 73 0.008703
-64241 ABCG8 ATP binding cassette subfamily G member 8 protein-coding 124 0.01478
-64282 PAPD5 poly(A) RNA polymerase D5, non-canonical protein-coding 63 0.007511
-64283 ARHGEF28 Rho guanine nucleotide exchange factor 28 protein-coding 125 0.0149
-64284 RAB17 RAB17, member RAS oncogene family protein-coding 26 0.0031
-64285 RHBDF1 rhomboid 5 homolog 1 protein-coding 83 0.009895
-64288 ZSCAN31 zinc finger and SCAN domain containing 31 protein-coding 63 0.007511
-64318 NOC3L NOC3 like DNA replication regulator protein-coding 82 0.009776
-64319 FBRS fibrosin protein-coding 58 0.006915
-64320 RNF25 ring finger protein 25 protein-coding 50 0.005961
-64321 SOX17 SRY-box 17 protein-coding 64 0.00763
-64324 NSD1 nuclear receptor binding SET domain protein 1 protein-coding 331 0.03946
-64326 COP1 COP1, E3 ubiquitin ligase protein-coding 99 0.0118
-64327 LMBR1 limb development membrane protein 1 protein-coding 130 0.0155
-64328 XPO4 exportin 4 protein-coding 121 0.01443
-64332 NFKBIZ NFKB inhibitor zeta protein-coding 95 0.01133
-64333 ARHGAP9 Rho GTPase activating protein 9 protein-coding 192 0.02289
-64342 HS1BP3 HCLS1 binding protein 3 protein-coding 43 0.005126
-64343 AZI2 5-azacytidine induced 2 protein-coding 44 0.005246
-64344 HIF3A hypoxia inducible factor 3 alpha subunit protein-coding 109 0.01299
-64359 NXN nucleoredoxin protein-coding 44 0.005246
-64374 SIL1 SIL1 nucleotide exchange factor protein-coding 45 0.005365
-64375 IKZF4 IKAROS family zinc finger 4 protein-coding 50 0.005961
-64376 IKZF5 IKAROS family zinc finger 5 protein-coding 39 0.004649
-64377 CHST8 carbohydrate sulfotransferase 8 protein-coding 77 0.00918
-64386 MMP25 matrix metallopeptidase 25 protein-coding 111 0.01323
-64388 GREM2 gremlin 2, DAN family BMP antagonist protein-coding 54 0.006438
-64393 ZMAT3 zinc finger matrin-type 3 protein-coding 50 0.005961
-64395 GMCL1 germ cell-less, spermatogenesis associated 1 protein-coding 36 0.004292
-64397 ZNF106 zinc finger protein 106 protein-coding 199 0.02372
-64398 MPP5 membrane palmitoylated protein 5 protein-coding 69 0.008226
-64399 HHIP hedgehog interacting protein protein-coding 118 0.01407
-64400 AKTIP AKT interacting protein protein-coding 33 0.003934
-64403 CDH24 cadherin 24 protein-coding 79 0.009418
-64405 CDH22 cadherin 22 protein-coding 117 0.01395
-64407 RGS18 regulator of G protein signaling 18 protein-coding 66 0.007868
-64409 GALNT17 polypeptide N-acetylgalactosaminyltransferase 17 protein-coding 267 0.03183
-64410 KLHL25 kelch like family member 25 protein-coding 80 0.009537
-64411 ARAP3 ArfGAP with RhoGAP domain, ankyrin repeat and PH domain 3 protein-coding 158 0.01884
-64412 GZF1 GDNF inducible zinc finger protein 1 protein-coding 84 0.01001
-64417 TMEM267 transmembrane protein 267 protein-coding 27 0.003219
-64418 TMEM168 transmembrane protein 168 protein-coding 102 0.01216
-64419 MTMR14 myotubularin related protein 14 protein-coding 60 0.007153
-64420 SUSD1 sushi domain containing 1 protein-coding 81 0.009657
-64421 DCLRE1C DNA cross-link repair 1C protein-coding 84 0.01001
-64422 ATG3 autophagy related 3 protein-coding 33 0.003934
-64423 INF2 inverted formin, FH2 and WH2 domain containing protein-coding 104 0.0124
-64425 POLR1E RNA polymerase I subunit E protein-coding 35 0.004173
-64426 SUDS3 SDS3 homolog, SIN3A corepressor complex component protein-coding 45 0.005365
-64427 TTC31 tetratricopeptide repeat domain 31 protein-coding 50 0.005961
-64428 NARFL nuclear prelamin A recognition factor like protein-coding 56 0.006676
-64429 ZDHHC6 zinc finger DHHC-type containing 6 protein-coding 41 0.004888
-64430 PCNX4 pecanex homolog 4 protein-coding 123 0.01466
-64431 ACTR6 ARP6 actin related protein 6 homolog protein-coding 55 0.006557
-64432 MRPS25 mitochondrial ribosomal protein S25 protein-coding 22 0.002623
-64434 NOM1 nucleolar protein with MIF4G domain 1 protein-coding 81 0.009657
-64446 DNAI2 dynein axonemal intermediate chain 2 protein-coding 106 0.01264
-64478 CSMD1 CUB and Sushi multiple domains 1 protein-coding 673 0.08023
-64499 TPSB2 tryptase beta 2 (gene/pseudogene) protein-coding 19 0.002265
-64506 CPEB1 cytoplasmic polyadenylation element binding protein 1 protein-coding 77 0.00918
-64518 TEKT3 tektin 3 protein-coding 88 0.01049
-64577 ALDH8A1 aldehyde dehydrogenase 8 family member A1 protein-coding 88 0.01049
-64579 NDST4 N-deacetylase and N-sulfotransferase 4 protein-coding 206 0.02456
-64581 CLEC7A C-type lectin domain containing 7A protein-coding 38 0.00453
-64582 GPR135 G protein-coupled receptor 135 protein-coding 47 0.005603
-64591 TSPY2 testis specific protein, Y-linked 2 protein-coding 7 0.0008345
-64598 MOSPD3 motile sperm domain containing 3 protein-coding 34 0.004053
-64599 GIGYF1 GRB10 interacting GYF protein 1 protein-coding 129 0.01538
-64600 PLA2G2F phospholipase A2 group IIF protein-coding 31 0.003696
-64601 VPS16 VPS16, CORVET/HOPS core subunit protein-coding 93 0.01109
-64641 EBF2 early B cell factor 2 protein-coding 100 0.01192
-64645 MFSD14A major facilitator superfamily domain containing 14A protein-coding 52 0.006199
-64648 SPANXD SPANX family member D protein-coding 48 0.005722
-64651 CSRNP1 cysteine and serine rich nuclear protein 1 protein-coding 53 0.006319
-64663 SPANXC SPANX family member C protein-coding 31 0.003696
-64682 ANAPC1 anaphase promoting complex subunit 1 protein-coding 147 0.01753
-64689 GORASP1 golgi reassembly stacking protein 1 protein-coding 35 0.004173
-64693 CTAGE1 cutaneous T cell lymphoma-associated antigen 1 protein-coding 136 0.01621
-64699 TMPRSS3 transmembrane serine protease 3 protein-coding 65 0.007749
-64708 COPS7B COP9 signalosome subunit 7B protein-coding 24 0.002861
-64710 NUCKS1 nuclear casein kinase and cyclin dependent kinase substrate 1 protein-coding 28 0.003338
-64711 HS3ST6 heparan sulfate-glucosamine 3-sulfotransferase 6 protein-coding 110 0.01311
-64714 PDIA2 protein disulfide isomerase family A member 2 protein-coding 51 0.00608
-64718 UNKL unkempt family like zinc finger protein-coding 62 0.007392
-64743 WDR13 WD repeat domain 13 protein-coding 71 0.008464
-64744 SMAP2 small ArfGAP2 protein-coding 39 0.004649
-64745 METTL17 methyltransferase like 17 protein-coding 63 0.007511
-64746 ACBD3 acyl-CoA binding domain containing 3 protein-coding 63 0.007511
-64747 MFSD1 major facilitator superfamily domain containing 1 protein-coding 58 0.006915
-64748 PLPPR2 phospholipid phosphatase related 2 protein-coding 193 0.02301
-64750 SMURF2 SMAD specific E3 ubiquitin protein ligase 2 protein-coding 76 0.009061
-64753 CCDC136 coiled-coil domain containing 136 protein-coding 124 0.01478
-64754 SMYD3 SET and MYND domain containing 3 protein-coding 56 0.006676
-64755 C16orf58 chromosome 16 open reading frame 58 protein-coding 36 0.004292
-64756 ATPAF1 ATP synthase mitochondrial F1 complex assembly factor 1 protein-coding 25 0.00298
-64757 MARC1 mitochondrial amidoxime reducing component 1 protein-coding 35 0.004173
-64759 TNS3 tensin 3 protein-coding 181 0.02158
-64760 FAM160B2 family with sequence similarity 160 member B2 protein-coding 60 0.007153
-64761 PARP12 poly(ADP-ribose) polymerase family member 12 protein-coding 69 0.008226
-64762 GAREM1 GRB2 associated regulator of MAPK1 subtype 1 protein-coding 92 0.01097
-64763 ZNF574 zinc finger protein 574 protein-coding 103 0.01228
-64764 CREB3L2 cAMP responsive element binding protein 3 like 2 protein-coding 57 0.006795
-64766 S100PBP S100P binding protein protein-coding 42 0.005007
-64768 IPPK inositol-pentakisphosphate 2-kinase protein-coding 50 0.005961
-64769 MEAF6 MYST/Esa1 associated factor 6 protein-coding 22 0.002623
-64770 CCDC14 coiled-coil domain containing 14 protein-coding 89 0.01061
-64771 C6orf106 chromosome 6 open reading frame 106 protein-coding 21 0.002504
-64772 ENGASE endo-beta-N-acetylglucosaminidase protein-coding 86 0.01025
-64773 PCED1A PC-esterase domain containing 1A protein-coding 55 0.006557
-64776 C11orf1 chromosome 11 open reading frame 1 protein-coding 22 0.002623
-64777 RMND5B required for meiotic nuclear division 5 homolog B protein-coding 39 0.004649
-64778 FNDC3B fibronectin type III domain containing 3B protein-coding 126 0.01502
-64779 MTHFSD methenyltetrahydrofolate synthetase domain containing protein-coding 39 0.004649
-64780 MICAL1 microtubule associated monooxygenase, calponin and LIM domain containing 1 protein-coding 109 0.01299
-64781 CERK ceramide kinase protein-coding 59 0.007034
-64782 AEN apoptosis enhancing nuclease protein-coding 33 0.003934
-64783 RBM15 RNA binding motif protein 15 protein-coding 115 0.01371
-64784 CRTC3 CREB regulated transcription coactivator 3 protein-coding 52 0.006199
-64785 GINS3 GINS complex subunit 3 protein-coding 36 0.004292
-64786 TBC1D15 TBC1 domain family member 15 protein-coding 90 0.01073
-64787 EPS8L2 EPS8 like 2 protein-coding 63 0.007511
-64788 LMF1 lipase maturation factor 1 protein-coding 43 0.005126
-64789 EXO5 exonuclease 5 protein-coding 35 0.004173
-64792 IFT22 intraflagellar transport 22 protein-coding 15 0.001788
-64793 CEP85 centrosomal protein 85 protein-coding 59 0.007034
-64794 DDX31 DEAD-box helicase 31 protein-coding 75 0.008941
-64795 RMND5A required for meiotic nuclear division 5 homolog A protein-coding 40 0.004769
-64798 DEPTOR DEP domain containing MTOR interacting protein protein-coding 51 0.00608
-64799 IQCH IQ motif containing H protein-coding 100 0.01192
-64800 EFCAB6 EF-hand calcium binding domain 6 protein-coding 169 0.02015
-64801 ARV1 ARV1 homolog, fatty acid homeostasis modulator protein-coding 33 0.003934
-64802 NMNAT1 nicotinamide nucleotide adenylyltransferase 1 protein-coding 35 0.004173
-64805 P2RY12 purinergic receptor P2Y12 protein-coding 47 0.005603
-64806 IL25 interleukin 25 protein-coding 27 0.003219
-64816 CYP3A43 cytochrome P450 family 3 subfamily A member 43 protein-coding 63 0.007511
-64834 ELOVL1 ELOVL fatty acid elongase 1 protein-coding 27 0.003219
-64837 KLC2 kinesin light chain 2 protein-coding 74 0.008822
-64838 FNDC4 fibronectin type III domain containing 4 protein-coding 26 0.0031
-64839 FBXL17 F-box and leucine rich repeat protein 17 protein-coding 59 0.007034
-64840 PORCN porcupine O-acyltransferase protein-coding 68 0.008107
-64841 GNPNAT1 glucosamine-phosphate N-acetyltransferase 1 protein-coding 27 0.003219
-64843 ISL2 ISL LIM homeobox 2 protein-coding 34 0.004053
-64844 MARCH7 membrane associated ring-CH-type finger 7 protein-coding 81 0.009657
-64847 SPATA20 spermatogenesis associated 20 protein-coding 78 0.009299
-64848 YTHDC2 YTH domain containing 2 protein-coding 157 0.01872
-64849 SLC13A3 solute carrier family 13 member 3 protein-coding 89 0.01061
-64850 ETNPPL ethanolamine-phosphate phospho-lyase protein-coding 84 0.01001
-64852 TUT1 terminal uridylyl transferase 1, U6 snRNA-specific protein-coding 88 0.01049
-64853 AIDA axin interactor, dorsalization associated protein-coding 39 0.004649
-64854 USP46 ubiquitin specific peptidase 46 protein-coding 49 0.005842
-64855 FAM129B family with sequence similarity 129 member B protein-coding 81 0.009657
-64856 VWA1 von Willebrand factor A domain containing 1 protein-coding 28 0.003338
-64857 PLEKHG2 pleckstrin homology and RhoGEF domain containing G2 protein-coding 128 0.01526
-64858 DCLRE1B DNA cross-link repair 1B protein-coding 55 0.006557
-64859 NABP1 nucleic acid binding protein 1 protein-coding 21 0.002504
-64860 ARMCX5 armadillo repeat containing, X-linked 5 protein-coding 61 0.007272
-64863 METTL4 methyltransferase like 4 protein-coding 58 0.006915
-64864 RFX7 regulatory factor X7 protein-coding 143 0.01705
-64866 CDCP1 CUB domain containing protein 1 protein-coding 84 0.01001
-64881 PCDH20 protocadherin 20 protein-coding 191 0.02277
-64895 PAPOLG poly(A) polymerase gamma protein-coding 93 0.01109
-64897 C12orf43 chromosome 12 open reading frame 43 protein-coding 40 0.004769
-64900 LPIN3 lipin 3 protein-coding 74 0.008822
-64901 RANBP17 RAN binding protein 17 protein-coding 135 0.01609
-64902 AGXT2 alanine--glyoxylate aminotransferase 2 protein-coding 91 0.01085
-64919 BCL11B B cell CLL/lymphoma 11B protein-coding 142 0.01693
-64921 CASD1 CAS1 domain containing 1 protein-coding 111 0.01323
-64922 LRRC19 leucine rich repeat containing 19 protein-coding 40 0.004769
-64924 SLC30A5 solute carrier family 30 member 5 protein-coding 53 0.006319
-64925 CCDC71 coiled-coil domain containing 71 protein-coding 42 0.005007
-64926 RASAL3 RAS protein activator like 3 protein-coding 106 0.01264
-64927 TTC23 tetratricopeptide repeat domain 23 protein-coding 47 0.005603
-64928 MRPL14 mitochondrial ribosomal protein L14 protein-coding 63 0.007511
-64940 STAG3L4 stromal antigen 3-like 4 (pseudogene) pseudo 49 0.005842
-64943 NT5DC2 5'-nucleotidase domain containing 2 protein-coding 47 0.005603
-64946 CENPH centromere protein H protein-coding 42 0.005007
-64949 MRPS26 mitochondrial ribosomal protein S26 protein-coding 21 0.002504
-64951 MRPS24 mitochondrial ribosomal protein S24 protein-coding 16 0.001907
-64960 MRPS15 mitochondrial ribosomal protein S15 protein-coding 37 0.004411
-64963 MRPS11 mitochondrial ribosomal protein S11 protein-coding 20 0.002384
-64965 MRPS9 mitochondrial ribosomal protein S9 protein-coding 41 0.004888
-64968 MRPS6 mitochondrial ribosomal protein S6 protein-coding 17 0.002027
-64969 MRPS5 mitochondrial ribosomal protein S5 protein-coding 58 0.006915
-64975 MRPL41 mitochondrial ribosomal protein L41 protein-coding 28 0.003338
-64976 MRPL40 mitochondrial ribosomal protein L40 protein-coding 49 0.005842
-64978 MRPL38 mitochondrial ribosomal protein L38 protein-coding 39 0.004649
-64979 MRPL36 mitochondrial ribosomal protein L36 protein-coding 147 0.01753
-64981 MRPL34 mitochondrial ribosomal protein L34 protein-coding 8 0.0009537
-64983 MRPL32 mitochondrial ribosomal protein L32 protein-coding 38 0.00453
-65003 MRPL11 mitochondrial ribosomal protein L11 protein-coding 21 0.002504
-65005 MRPL9 mitochondrial ribosomal protein L9 protein-coding 20 0.002384
-65008 MRPL1 mitochondrial ribosomal protein L1 protein-coding 39 0.004649
-65009 NDRG4 NDRG family member 4 protein-coding 37 0.004411
-65010 SLC26A6 solute carrier family 26 member 6 protein-coding 60 0.007153
-65012 SLC26A10 solute carrier family 26 member 10 protein-coding 70 0.008345
-65018 PINK1 PTEN induced putative kinase 1 protein-coding 52 0.006199
-65055 REEP1 receptor accessory protein 1 protein-coding 27 0.003219
-65056 GPBP1 GC-rich promoter binding protein 1 protein-coding 60 0.007153
-65057 ACD ACD, shelterin complex subunit and telomerase recruitment factor protein-coding 114 0.01359
-65059 RAPH1 Ras association (RalGDS/AF-6) and pleckstrin homology domains 1 protein-coding 100 0.01192
-65061 CDK15 cyclin dependent kinase 15 protein-coding 69 0.008226
-65062 TMEM237 transmembrane protein 237 protein-coding 39 0.004649
-65065 NBEAL1 neurobeachin like 1 protein-coding 203 0.0242
-65078 RTN4R reticulon 4 receptor protein-coding 34 0.004053
-65080 MRPL44 mitochondrial ribosomal protein L44 protein-coding 36 0.004292
-65082 VPS33A VPS33A, CORVET/HOPS core subunit protein-coding 82 0.009776
-65083 NOL6 nucleolar protein 6 protein-coding 322 0.03839
-65084 TMEM135 transmembrane protein 135 protein-coding 59 0.007034
-65094 JMJD4 jumonji domain containing 4 protein-coding 41 0.004888
-65095 KRI1 KRI1 homolog protein-coding 79 0.009418
-65108 MARCKSL1 MARCKS like 1 protein-coding 21 0.002504
-65109 UPF3B UPF3B, regulator of nonsense mediated mRNA decay protein-coding 97 0.01156
-65110 UPF3A UPF3A, regulator of nonsense mediated mRNA decay protein-coding 50 0.005961
-65117 RSRC2 arginine and serine rich coiled-coil 2 protein-coding 67 0.007988
-65121 PRAMEF1 PRAME family member 1 protein-coding 91 0.01085
-65122 PRAMEF2 PRAME family member 2 protein-coding 84 0.01001
-65123 INTS3 integrator complex subunit 3 protein-coding 108 0.01288
-65124 SOWAHC sosondowah ankyrin repeat domain family member C protein-coding 27 0.003219
-65125 WNK1 WNK lysine deficient protein kinase 1 protein-coding 197 0.02349
-65217 PCDH15 protocadherin related 15 protein-coding 611 0.07284
-65220 NADK NAD kinase protein-coding 62 0.007392
-65243 ZFP69B ZFP69 zinc finger protein B protein-coding 55 0.006557
-65244 SPATS2 spermatogenesis associated serine rich 2 protein-coding 47 0.005603
-65249 ZSWIM4 zinc finger SWIM-type containing 4 protein-coding 113 0.01347
-65250 CPLANE1 ciliogenesis and planar polarity effector 1 protein-coding 274 0.03267
-65251 ZNF649 zinc finger protein 649 protein-coding 80 0.009537
-65258 MPPE1 metallophosphoesterase 1 protein-coding 34 0.004053
-65260 COA7 cytochrome c oxidase assembly factor 7 (putative) protein-coding 22 0.002623
-65263 PYCR3 pyrroline-5-carboxylate reductase 3 protein-coding 23 0.002742
-65264 UBE2Z ubiquitin conjugating enzyme E2 Z protein-coding 53 0.006319
-65265 C8orf33 chromosome 8 open reading frame 33 protein-coding 34 0.004053
-65266 WNK4 WNK lysine deficient protein kinase 4 protein-coding 132 0.01574
-65267 WNK3 WNK lysine deficient protein kinase 3 protein-coding 219 0.02611
-65268 WNK2 WNK lysine deficient protein kinase 2 protein-coding 180 0.02146
-65975 STK33 serine/threonine kinase 33 protein-coding 76 0.009061
-65977 PLEKHA3 pleckstrin homology domain containing A3 protein-coding 41 0.004888
-65979 PHACTR4 phosphatase and actin regulator 4 protein-coding 93 0.01109
-65980 BRD9 bromodomain containing 9 protein-coding 59 0.007034
-65981 CAPRIN2 caprin family member 2 protein-coding 128 0.01526
-65982 ZSCAN18 zinc finger and SCAN domain containing 18 protein-coding 88 0.01049
-65983 GRAMD2B GRAM domain containing 2B protein-coding 39 0.004649
-65985 AACS acetoacetyl-CoA synthetase protein-coding 72 0.008584
-65986 ZBTB10 zinc finger and BTB domain containing 10 protein-coding 70 0.008345
-65987 KCTD14 potassium channel tetramerization domain containing 14 protein-coding 32 0.003815
-65988 ZNF747 zinc finger protein 747 protein-coding 10 0.001192
-65989 DLK2 delta like non-canonical Notch ligand 2 protein-coding 39 0.004649
-65990 FAM173A family with sequence similarity 173 member A protein-coding 7 0.0008345
-65991 FUNDC2 FUN14 domain containing 2 protein-coding 27 0.003219
-65992 DDRGK1 DDRGK domain containing 1 protein-coding 33 0.003934
-65993 MRPS34 mitochondrial ribosomal protein S34 protein-coding 31 0.003696
-65997 RASL11B RAS like family 11 member B protein-coding 21 0.002504
-65998 C11orf95 chromosome 11 open reading frame 95 protein-coding 17 0.002027
-65999 LRRC61 leucine rich repeat containing 61 protein-coding 28 0.003338
-66000 TMEM108 transmembrane protein 108 protein-coding 72 0.008584
-66002 CYP4F12 cytochrome P450 family 4 subfamily F member 12 protein-coding 95 0.01133
-66004 LYNX1 Ly6/neurotoxin 1 protein-coding 24 0.002861
-66005 CHID1 chitinase domain containing 1 protein-coding 45 0.005365
-66008 TRAK2 trafficking kinesin protein 2 protein-coding 90 0.01073
-66035 SLC2A11 solute carrier family 2 member 11 protein-coding 30 0.003577
-66036 MTMR9 myotubularin related protein 9 protein-coding 135 0.01609
-66037 BOLL boule homolog, RNA binding protein protein-coding 55 0.006557
-78986 DUSP26 dual specificity phosphatase 26 protein-coding 47 0.005603
-78987 CRELD1 cysteine rich with EGF like domains 1 protein-coding 37 0.004411
-78988 MRPL57 mitochondrial ribosomal protein L57 protein-coding 12 0.001431
-78989 COLEC11 collectin subfamily member 11 protein-coding 64 0.00763
-78990 OTUB2 OTU deubiquitinase, ubiquitin aldehyde binding 2 protein-coding 26 0.0031
-78991 PCYOX1L prenylcysteine oxidase 1 like protein-coding 51 0.00608
-78992 YIPF2 Yip1 domain family member 2 protein-coding 25 0.00298
-78994 PRR14 proline rich 14 protein-coding 75 0.008941
-78995 C17orf53 chromosome 17 open reading frame 53 protein-coding 62 0.007392
-78996 CYREN cell cycle regulator of NHEJ protein-coding 24 0.002861
-78997 GDAP1L1 ganglioside induced differentiation associated protein 1 like 1 protein-coding 36 0.004292
-78999 LRFN4 leucine rich repeat and fibronectin type III domain containing 4 protein-coding 60 0.007153
-79000 AUNIP aurora kinase A and ninein interacting protein protein-coding 25 0.00298
-79001 VKORC1 vitamin K epoxide reductase complex subunit 1 protein-coding 12 0.001431
-79002 TRIR telomerase RNA component interacting RNase protein-coding 17 0.002027
-79003 MIS12 MIS12, kinetochore complex component protein-coding 24 0.002861
-79004 CUEDC2 CUE domain containing 2 protein-coding 32 0.003815
-79005 SCNM1 sodium channel modifier 1 protein-coding 30 0.003577
-79006 METRN meteorin, glial cell differentiation regulator protein-coding 10 0.001192
-79007 DBNDD1 dysbindin domain containing 1 protein-coding 27 0.003219
-79008 SLX1B SLX1 homolog B, structure-specific endonuclease subunit protein-coding 3 0.0003577
-79009 DDX50 DExD-box helicase 50 protein-coding 101 0.01204
-79012 CAMKV CaM kinase like vesicle associated protein-coding 65 0.007749
-79016 DDA1 DET1 and DDB1 associated 1 protein-coding 16 0.001907
-79017 GGCT gamma-glutamylcyclotransferase protein-coding 28 0.003338
-79018 GID4 GID complex subunit 4 homolog protein-coding 20 0.002384
-79019 CENPM centromere protein M protein-coding 14 0.001669
-79020 C7orf25 chromosome 7 open reading frame 25 protein-coding 49 0.005842
-79022 TMEM106C transmembrane protein 106C protein-coding 34 0.004053
-79023 NUP37 nucleoporin 37 protein-coding 37 0.004411
-79024 SMIM2 small integral membrane protein 2 protein-coding 5 0.0005961
-79025 FNDC11 fibronectin type III domain containing 11 protein-coding 50 0.005961
-79026 AHNAK AHNAK nucleoprotein protein-coding 504 0.06009
-79027 ZNF655 zinc finger protein 655 protein-coding 46 0.005484
-79029 SPATA5L1 spermatogenesis associated 5 like 1 protein-coding 46 0.005484
-79031 PDCL3 phosducin like 3 protein-coding 47 0.005603
-79033 ERI3 ERI1 exoribonuclease family member 3 protein-coding 40 0.004769
-79034 C7orf26 chromosome 7 open reading frame 26 protein-coding 50 0.005961
-79035 NABP2 nucleic acid binding protein 2 protein-coding 25 0.00298
-79036 KXD1 KxDL motif containing 1 protein-coding 19 0.002265
-79037 PVRIG PVR related immunoglobulin domain containing protein-coding 50 0.005961
-79038 ZFYVE21 zinc finger FYVE-type containing 21 protein-coding 20 0.002384
-79039 DDX54 DEAD-box helicase 54 protein-coding 93 0.01109
-79041 TMEM38A transmembrane protein 38A protein-coding 48 0.005722
-79042 TSEN34 tRNA splicing endonuclease subunit 34 protein-coding 40 0.004769
-79047 KCTD15 potassium channel tetramerization domain containing 15 protein-coding 38 0.00453
-79048 SECISBP2 SECIS binding protein 2 protein-coding 83 0.009895
-79050 NOC4L nucleolar complex associated 4 homolog protein-coding 60 0.007153
-79053 ALG8 ALG8, alpha-1,3-glucosyltransferase protein-coding 50 0.005961
-79054 TRPM8 transient receptor potential cation channel subfamily M member 8 protein-coding 163 0.01943
-79056 PRRG4 proline rich and Gla domain 4 protein-coding 16 0.001907
-79057 PRRG3 proline rich and Gla domain 3 protein-coding 61 0.007272
-79058 ASPSCR1 ASPSCR1, UBX domain containing tether for SLC2A4 protein-coding 63 0.007511
-79064 TMEM223 transmembrane protein 223 protein-coding 20 0.002384
-79065 ATG9A autophagy related 9A protein-coding 75 0.008941
-79066 METTL16 methyltransferase like 16 protein-coding 42 0.005007
-79068 FTO FTO, alpha-ketoglutarate dependent dioxygenase protein-coding 69 0.008226
-79070 KDELC1 KDEL motif containing 1 protein-coding 81 0.009657
-79071 ELOVL6 ELOVL fatty acid elongase 6 protein-coding 40 0.004769
-79072 FASTKD3 FAST kinase domains 3 protein-coding 95 0.01133
-79073 TMEM109 transmembrane protein 109 protein-coding 32 0.003815
-79074 C2orf49 chromosome 2 open reading frame 49 protein-coding 21 0.002504
-79075 DSCC1 DNA replication and sister chromatid cohesion 1 protein-coding 38 0.00453
-79077 DCTPP1 dCTP pyrophosphatase 1 protein-coding 15 0.001788
-79078 C1orf50 chromosome 1 open reading frame 50 protein-coding 17 0.002027
-79080 CCDC86 coiled-coil domain containing 86 protein-coding 38 0.00453
-79083 MLPH melanophilin protein-coding 58 0.006915
-79084 WDR77 WD repeat domain 77 protein-coding 31 0.003696
-79085 SLC25A23 solute carrier family 25 member 23 protein-coding 50 0.005961
-79086 SMIM7 small integral membrane protein 7 protein-coding 6 0.0007153
-79087 ALG12 ALG12, alpha-1,6-mannosyltransferase protein-coding 50 0.005961
-79088 ZNF426 zinc finger protein 426 protein-coding 65 0.007749
-79089 TMUB2 transmembrane and ubiquitin like domain containing 2 protein-coding 40 0.004769
-79090 TRAPPC6A trafficking protein particle complex 6A protein-coding 22 0.002623
-79091 METTL22 methyltransferase like 22 protein-coding 43 0.005126
-79092 CARD14 caspase recruitment domain family member 14 protein-coding 93 0.01109
-79094 CHAC1 ChaC glutathione specific gamma-glutamylcyclotransferase 1 protein-coding 22 0.002623
-79095 C9orf16 chromosome 9 open reading frame 16 protein-coding 2 0.0002384
-79096 C11orf49 chromosome 11 open reading frame 49 protein-coding 33 0.003934
-79097 TRIM48 tripartite motif containing 48 protein-coding 87 0.01037
-79098 C1orf116 chromosome 1 open reading frame 116 protein-coding 75 0.008941
-79101 TAF1D TATA-box binding protein associated factor, RNA polymerase I subunit D protein-coding 45 0.005365
-79102 RNF26 ring finger protein 26 protein-coding 44 0.005246
-79109 MAPKAP1 mitogen-activated protein kinase associated protein 1 protein-coding 72 0.008584
-79132 DHX58 DExH-box helicase 58 protein-coding 56 0.006676
-79133 NDUFAF5 NADH:ubiquinone oxidoreductase complex assembly factor 5 protein-coding 45 0.005365
-79134 TMEM185B transmembrane protein 185B protein-coding 22 0.002623
-79135 APOO apolipoprotein O protein-coding 24 0.002861
-79136 LY6G6E lymphocyte antigen 6 family member G6E pseudo 6 0.0007153
-79137 RETREG2 reticulophagy regulator family member 2 protein-coding 55 0.006557
-79139 DERL1 derlin 1 protein-coding 35 0.004173
-79140 CCDC28B coiled-coil domain containing 28B protein-coding 22 0.002623
-79142 PHF23 PHD finger protein 23 protein-coding 59 0.007034
-79143 MBOAT7 membrane bound O-acyltransferase domain containing 7 protein-coding 54 0.006438
-79144 PPDPF pancreatic progenitor cell differentiation and proliferation factor protein-coding 11 0.001311
-79145 CHCHD7 coiled-coil-helix-coiled-coil-helix domain containing 7 protein-coding 13 0.00155
-79147 FKRP fukutin related protein protein-coding 37 0.004411
-79148 MMP28 matrix metallopeptidase 28 protein-coding 66 0.007868
-79149 ZSCAN5A zinc finger and SCAN domain containing 5A protein-coding 63 0.007511
-79152 FA2H fatty acid 2-hydroxylase protein-coding 82 0.009776
-79153 GDPD3 glycerophosphodiester phosphodiesterase domain containing 3 protein-coding 46 0.005484
-79154 DHRS11 dehydrogenase/reductase 11 protein-coding 19 0.002265
-79155 TNIP2 TNFAIP3 interacting protein 2 protein-coding 41 0.004888
-79156 PLEKHF1 pleckstrin homology and FYVE domain containing 1 protein-coding 28 0.003338
-79157 MFSD11 major facilitator superfamily domain containing 11 protein-coding 57 0.006795
-79158 GNPTAB N-acetylglucosamine-1-phosphate transferase alpha and beta subunits protein-coding 138 0.01645
-79159 NOL12 nucleolar protein 12 protein-coding 27 0.003219
-79161 TMEM243 transmembrane protein 243 protein-coding 12 0.001431
-79165 LENG1 leukocyte receptor cluster member 1 protein-coding 44 0.005246
-79166 LILRP2 leukocyte immunoglobulin-like receptor pseudogene 2 pseudo 17 0.002027
-79168 LILRA6 leukocyte immunoglobulin like receptor A6 protein-coding 108 0.01288
-79169 C1orf35 chromosome 1 open reading frame 35 protein-coding 26 0.0031
-79170 PRR15L proline rich 15 like protein-coding 11 0.001311
-79171 RBM42 RNA binding motif protein 42 protein-coding 65 0.007749
-79172 CENPO centromere protein O protein-coding 28 0.003338
-79173 C19orf57 chromosome 19 open reading frame 57 protein-coding 71 0.008464
-79174 CRELD2 cysteine rich with EGF like domains 2 protein-coding 41 0.004888
-79175 ZNF343 zinc finger protein 343 protein-coding 71 0.008464
-79176 FBXL15 F-box and leucine rich repeat protein 15 protein-coding 6 0.0007153
-79177 ZNF576 zinc finger protein 576 protein-coding 26 0.0031
-79178 THTPA thiamine triphosphatase protein-coding 22 0.002623
-79180 EFHD2 EF-hand domain family member D2 protein-coding 14 0.001669
-79183 TTPAL alpha tocopherol transfer protein like protein-coding 40 0.004769
-79184 BRCC3 BRCA1/BRCA2-containing complex subunit 3 protein-coding 46 0.005484
-79187 FSD1 fibronectin type III and SPRY domain containing 1 protein-coding 54 0.006438
-79188 TMEM43 transmembrane protein 43 protein-coding 33 0.003934
-79190 IRX6 iroquois homeobox 6 protein-coding 86 0.01025
-79191 IRX3 iroquois homeobox 3 protein-coding 42 0.005007
-79192 IRX1 iroquois homeobox 1 protein-coding 144 0.01717
-79228 THOC6 THO complex 6 protein-coding 41 0.004888
-79230 ZNF557 zinc finger protein 557 protein-coding 64 0.00763
-79258 MMEL1 membrane metalloendopeptidase like 1 protein-coding 103 0.01228
-79269 DCAF10 DDB1 and CUL4 associated factor 10 protein-coding 43 0.005126
-79290 OR13A1 olfactory receptor family 13 subfamily A member 1 protein-coding 63 0.007511
-79295 OR5H6 olfactory receptor family 5 subfamily H member 6 (gene/pseudogene) protein-coding 83 0.009895
-79310 OR5H2 olfactory receptor family 5 subfamily H member 2 protein-coding 71 0.008464
-79317 OR4K5 olfactory receptor family 4 subfamily K member 5 protein-coding 109 0.01299
-79324 OR51G1 olfactory receptor family 51 subfamily G member 1 (gene/pseudogene) protein-coding 95 0.01133
-79339 OR51B4 olfactory receptor family 51 subfamily B member 4 protein-coding 66 0.007868
-79345 OR51B2 olfactory receptor family 51 subfamily B member 2 (gene/pseudogene) protein-coding 68 0.008107
-79363 CPLANE2 ciliogenesis and planar polarity effector 2 protein-coding 29 0.003457
-79364 ZXDC ZXD family zinc finger C protein-coding 75 0.008941
-79365 BHLHE41 basic helix-loop-helix family member e41 protein-coding 31 0.003696
-79366 HMGN5 high mobility group nucleosome binding domain 5 protein-coding 44 0.005246
-79368 FCRL2 Fc receptor like 2 protein-coding 108 0.01288
-79369 B3GNT4 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 4 protein-coding 51 0.00608
-79370 BCL2L14 BCL2 like 14 protein-coding 32 0.003815
-79400 NOX5 NADPH oxidase 5 protein-coding 101 0.01204
-79411 GLB1L galactosidase beta 1 like protein-coding 70 0.008345
-79412 KREMEN2 kringle containing transmembrane protein 2 protein-coding 21 0.002504
-79413 ZBED2 zinc finger BED-type containing 2 protein-coding 46 0.005484
-79414 LRFN3 leucine rich repeat and fibronectin type III domain containing 3 protein-coding 72 0.008584
-79415 CYBC1 cytochrome b-245 chaperone 1 protein-coding 22 0.002623
-79441 HAUS3 HAUS augmin like complex subunit 3 protein-coding 75 0.008941
-79442 LRRC2 leucine rich repeat containing 2 protein-coding 51 0.00608
-79443 FYCO1 FYVE and coiled-coil domain containing 1 protein-coding 198 0.02361
-79444 BIRC7 baculoviral IAP repeat containing 7 protein-coding 45 0.005365
-79446 WDR25 WD repeat domain 25 protein-coding 68 0.008107
-79447 PAGR1 PAXIP1 associated glutamate rich protein 1 protein-coding 26 0.0031
-79465 ULBP3 UL16 binding protein 3 protein-coding 28 0.003338
-79469 DLEU2L deleted in lymphocytic leukemia 2-like ncRNA 2 0.0002384
-79473 OR52N1 olfactory receptor family 52 subfamily N member 1 protein-coding 68 0.008107
-79501 OR4F5 olfactory receptor family 4 subfamily F member 5 protein-coding 7 0.0008345
-79541 OR2A4 olfactory receptor family 2 subfamily A member 4 protein-coding 35 0.004173
-79544 OR4K1 olfactory receptor family 4 subfamily K member 1 protein-coding 106 0.01264
-79567 RIPOR1 RHO family interacting cell polarization regulator 1 protein-coding 96 0.01144
-79568 MAIP1 matrix AAA peptidase interacting protein 1 protein-coding 23 0.002742
-79570 NKAIN1 sodium/potassium transporting ATPase interacting 1 protein-coding 17 0.002027
-79571 GCC1 GRIP and coiled-coil domain containing 1 protein-coding 92 0.01097
-79572 ATP13A3 ATPase 13A3 protein-coding 134 0.01598
-79573 TTC13 tetratricopeptide repeat domain 13 protein-coding 113 0.01347
-79574 EPS8L3 EPS8 like 3 protein-coding 69 0.008226
-79575 ABHD8 abhydrolase domain containing 8 protein-coding 49 0.005842
-79576 NKAP NFKB activating protein protein-coding 82 0.009776
-79577 CDC73 cell division cycle 73 protein-coding 99 0.0118
-79581 SLC52A2 solute carrier family 52 member 2 protein-coding 54 0.006438
-79582 SPAG16 sperm associated antigen 16 protein-coding 129 0.01538
-79583 TMEM231 transmembrane protein 231 protein-coding 16 0.001907
-79585 CORO7 coronin 7 protein-coding 102 0.01216
-79586 CHPF chondroitin polymerizing factor protein-coding 75 0.008941
-79587 CARS2 cysteinyl-tRNA synthetase 2, mitochondrial protein-coding 53 0.006319
-79589 RNF128 ring finger protein 128, E3 ubiquitin protein ligase protein-coding 84 0.01001
-79590 MRPL24 mitochondrial ribosomal protein L24 protein-coding 27 0.003219
-79591 ARMH3 armadillo-like helical domain containing 3 protein-coding 69 0.008226
-79594 MUL1 mitochondrial E3 ubiquitin protein ligase 1 protein-coding 45 0.005365
-79595 SAP130 Sin3A associated protein 130 protein-coding 116 0.01383
-79596 RNF219 ring finger protein 219 protein-coding 89 0.01061
-79598 CEP97 centrosomal protein 97 protein-coding 88 0.01049
-79600 TCTN1 tectonic family member 1 protein-coding 53 0.006319
-79602 ADIPOR2 adiponectin receptor 2 protein-coding 43 0.005126
-79603 CERS4 ceramide synthase 4 protein-coding 44 0.005246
-79605 PGBD5 piggyBac transposable element derived 5 protein-coding 74 0.008822
-79607 FAM118B family with sequence similarity 118 member B protein-coding 46 0.005484
-79608 RIC3 RIC3 acetylcholine receptor chaperone protein-coding 64 0.00763
-79609 VCPKMT valosin containing protein lysine methyltransferase protein-coding 19 0.002265
-79611 ACSS3 acyl-CoA synthetase short chain family member 3 protein-coding 145 0.01729
-79612 NAA16 N(alpha)-acetyltransferase 16, NatA auxiliary subunit protein-coding 99 0.0118
-79613 TANGO6 transport and golgi organization 6 homolog protein-coding 112 0.01335
-79616 CCNJL cyclin J like protein-coding 51 0.00608
-79618 HMBOX1 homeobox containing 1 protein-coding 43 0.005126
-79621 RNASEH2B ribonuclease H2 subunit B protein-coding 27 0.003219
-79622 SNRNP25 small nuclear ribonucleoprotein U11/U12 subunit 25 protein-coding 12 0.001431
-79623 GALNT14 polypeptide N-acetylgalactosaminyltransferase 14 protein-coding 199 0.02372
-79624 ARMT1 acidic residue methyltransferase 1 protein-coding 51 0.00608
-79625 NDNF neuron derived neurotrophic factor protein-coding 87 0.01037
-79626 TNFAIP8L2 TNF alpha induced protein 8 like 2 protein-coding 27 0.003219
-79627 OGFRL1 opioid growth factor receptor like 1 protein-coding 55 0.006557
-79628 SH3TC2 SH3 domain and tetratricopeptide repeats 2 protein-coding 131 0.01562
-79629 OCEL1 occludin/ELL domain containing 1 protein-coding 30 0.003577
-79630 C1orf54 chromosome 1 open reading frame 54 protein-coding 21 0.002504
-79631 EFL1 elongation factor like GTPase 1 protein-coding 105 0.01252
-79632 FAM184A family with sequence similarity 184 member A protein-coding 150 0.01788
-79633 FAT4 FAT atypical cadherin 4 protein-coding 666 0.0794
-79634 SCRN3 secernin 3 protein-coding 55 0.006557
-79635 CCDC121 coiled-coil domain containing 121 protein-coding 46 0.005484
-79637 ARMC7 armadillo repeat containing 7 protein-coding 23 0.002742
-79639 TMEM53 transmembrane protein 53 protein-coding 28 0.003338
-79640 C22orf46 chromosome 22 open reading frame 46 protein-coding 10 0.001192
-79641 ROGDI rogdi homolog protein-coding 17 0.002027
-79642 ARSJ arylsulfatase family member J protein-coding 79 0.009418
-79643 CHMP6 charged multivesicular body protein 6 protein-coding 25 0.00298
-79644 SRD5A3 steroid 5 alpha-reductase 3 protein-coding 37 0.004411
-79645 EFCAB1 EF-hand calcium binding domain 1 protein-coding 48 0.005722
-79646 PANK3 pantothenate kinase 3 protein-coding 43 0.005126
-79647 AKIRIN1 akirin 1 protein-coding 10 0.001192
-79648 MCPH1 microcephalin 1 protein-coding 85 0.01013
-79649 MAP7D3 MAP7 domain containing 3 protein-coding 132 0.01574
-79650 USB1 U6 snRNA biogenesis phosphodiesterase 1 protein-coding 28 0.003338
-79651 RHBDF2 rhomboid 5 homolog 2 protein-coding 159 0.01896
-79652 TMEM204 transmembrane protein 204 protein-coding 29 0.003457
-79654 HECTD3 HECT domain E3 ubiquitin protein ligase 3 protein-coding 69 0.008226
-79656 BEND5 BEN domain containing 5 protein-coding 53 0.006319
-79657 RPAP3 RNA polymerase II associated protein 3 protein-coding 54 0.006438
-79658 ARHGAP10 Rho GTPase activating protein 10 protein-coding 82 0.009776
-79659 DYNC2H1 dynein cytoplasmic 2 heavy chain 1 protein-coding 352 0.04196
-79660 PPP1R3B protein phosphatase 1 regulatory subunit 3B protein-coding 32 0.003815
-79661 NEIL1 nei like DNA glycosylase 1 protein-coding 51 0.00608
-79663 HSPBAP1 HSPB1 associated protein 1 protein-coding 48 0.005722
-79664 ICE2 interactor of little elongation complex ELL subunit 2 protein-coding 101 0.01204
-79665 DHX40 DEAH-box helicase 40 protein-coding 71 0.008464
-79666 PLEKHF2 pleckstrin homology and FYVE domain containing 2 protein-coding 34 0.004053
-79668 PARP8 poly(ADP-ribose) polymerase family member 8 protein-coding 116 0.01383
-79669 C3orf52 chromosome 3 open reading frame 52 protein-coding 16 0.001907
-79670 ZCCHC6 zinc finger CCHC-type containing 6 protein-coding 147 0.01753
-79671 NLRX1 NLR family member X1 protein-coding 116 0.01383
-79672 FN3KRP fructosamine 3 kinase related protein protein-coding 29 0.003457
-79673 ZNF329 zinc finger protein 329 protein-coding 90 0.01073
-79674 VEPH1 ventricular zone expressed PH domain containing 1 protein-coding 117 0.01395
-79675 FASTKD1 FAST kinase domains 1 protein-coding 103 0.01228
-79676 OGFOD2 2-oxoglutarate and iron dependent oxygenase domain containing 2 protein-coding 31 0.003696
-79677 SMC6 structural maintenance of chromosomes 6 protein-coding 117 0.01395
-79679 VTCN1 V-set domain containing T cell activation inhibitor 1 protein-coding 33 0.003934
-79680 RTL10 retrotransposon Gag like 10 protein-coding 43 0.005126
-79682 CENPU centromere protein U protein-coding 39 0.004649
-79683 ZDHHC14 zinc finger DHHC-type containing 14 protein-coding 56 0.006676
-79684 MSANTD2 Myb/SANT DNA binding domain containing 2 protein-coding 40 0.004769
-79685 SAP30L SAP30 like protein-coding 17 0.002027
-79689 STEAP4 STEAP4 metalloreductase protein-coding 84 0.01001
-79690 GAL3ST4 galactose-3-O-sulfotransferase 4 protein-coding 79 0.009418
-79691 QTRT2 queuine tRNA-ribosyltransferase accessory subunit 2 protein-coding 42 0.005007
-79692 ZNF322 zinc finger protein 322 protein-coding 38 0.00453
-79693 YRDC yrdC N6-threonylcarbamoyltransferase domain containing protein-coding 17 0.002027
-79694 MANEA mannosidase endo-alpha protein-coding 84 0.01001
-79695 GALNT12 polypeptide N-acetylgalactosaminyltransferase 12 protein-coding 66 0.007868
-79696 ZC2HC1C zinc finger C2HC-type containing 1C protein-coding 38 0.00453
-79698 ZMAT4 zinc finger matrin-type 4 protein-coding 59 0.007034
-79699 ZYG11B zyg-11 family member B, cell cycle regulator protein-coding 72 0.008584
-79701 OGFOD3 2-oxoglutarate and iron dependent oxygenase domain containing 3 protein-coding 37 0.004411
-79703 C11orf80 chromosome 11 open reading frame 80 protein-coding 55 0.006557
-79705 LRRK1 leucine rich repeat kinase 1 protein-coding 189 0.02253
-79706 PRKRIP1 PRKR interacting protein 1 protein-coding 23 0.002742
-79707 NOL9 nucleolar protein 9 protein-coding 61 0.007272
-79709 COLGALT1 collagen beta(1-O)galactosyltransferase 1 protein-coding 76 0.009061
-79710 MORC4 MORC family CW-type zinc finger 4 protein-coding 125 0.0149
-79711 IPO4 importin 4 protein-coding 88 0.01049
-79712 GTDC1 glycosyltransferase like domain containing 1 protein-coding 98 0.01168
-79713 IGFLR1 IGF like family receptor 1 protein-coding 39 0.004649
-79714 CCDC51 coiled-coil domain containing 51 protein-coding 40 0.004769
-79716 NPEPL1 aminopeptidase like 1 protein-coding 72 0.008584
-79717 PPCS phosphopantothenoylcysteine synthetase protein-coding 35 0.004173
-79718 TBL1XR1 transducin beta like 1 X-linked receptor 1 protein-coding 110 0.01311
-79719 AAGAB alpha and gamma adaptin binding protein protein-coding 35 0.004173
-79720 VPS37B VPS37B, ESCRT-I subunit protein-coding 33 0.003934
-79722 ANKRD55 ankyrin repeat domain 55 protein-coding 80 0.009537
-79723 SUV39H2 suppressor of variegation 3-9 homolog 2 protein-coding 39 0.004649
-79724 ZNF768 zinc finger protein 768 protein-coding 72 0.008584
-79725 THAP9 THAP domain containing 9 protein-coding 79 0.009418
-79726 WDR59 WD repeat domain 59 protein-coding 104 0.0124
-79727 LIN28A lin-28 homolog A protein-coding 30 0.003577
-79728 PALB2 partner and localizer of BRCA2 protein-coding 119 0.01419
-79729 SH3D21 SH3 domain containing 21 protein-coding 53 0.006319
-79730 NSUN7 NOP2/Sun RNA methyltransferase family member 7 protein-coding 61 0.007272
-79731 NARS2 asparaginyl-tRNA synthetase 2, mitochondrial protein-coding 60 0.007153
-79733 E2F8 E2F transcription factor 8 protein-coding 110 0.01311
-79734 KCTD17 potassium channel tetramerization domain containing 17 protein-coding 21 0.002504
-79735 TBC1D17 TBC1 domain family member 17 protein-coding 61 0.007272
-79736 TEFM transcription elongation factor, mitochondrial protein-coding 40 0.004769
-79738 BBS10 Bardet-Biedl syndrome 10 protein-coding 73 0.008703
-79739 TTLL7 tubulin tyrosine ligase like 7 protein-coding 138 0.01645
-79740 ZBBX zinc finger B-box domain containing protein-coding 213 0.02539
-79741 CCDC7 coiled-coil domain containing 7 protein-coding 53 0.006319
-79742 CXorf36 chromosome X open reading frame 36 protein-coding 51 0.00608
-79744 ZNF419 zinc finger protein 419 protein-coding 74 0.008822
-79745 CLIP4 CAP-Gly domain containing linker protein family member 4 protein-coding 91 0.01085
-79746 ECHDC3 enoyl-CoA hydratase domain containing 3 protein-coding 26 0.0031
-79747 ADGB androglobin protein-coding 119 0.01419
-79748 LMAN1L lectin, mannose binding 1 like protein-coding 68 0.008107
-79750 ZNF385D zinc finger protein 385D protein-coding 157 0.01872
-79751 SLC25A22 solute carrier family 25 member 22 protein-coding 36 0.004292
-79752 ZFAND1 zinc finger AN1-type containing 1 protein-coding 37 0.004411
-79753 SNIP1 Smad nuclear interacting protein 1 protein-coding 51 0.00608
-79754 ASB13 ankyrin repeat and SOCS box containing 13 protein-coding 29 0.003457
-79755 ZNF750 zinc finger protein 750 protein-coding 114 0.01359
-79758 DHRS12 dehydrogenase/reductase 12 protein-coding 28 0.003338
-79759 ZNF668 zinc finger protein 668 protein-coding 83 0.009895
-79760 GEMIN7 gem nuclear organelle associated protein 7 protein-coding 21 0.002504
-79762 C1orf115 chromosome 1 open reading frame 115 protein-coding 7 0.0008345
-79763 ISOC2 isochorismatase domain containing 2 protein-coding 28 0.003338
-79767 ELMO3 engulfment and cell motility 3 protein-coding 65 0.007749
-79768 KATNBL1 katanin regulatory subunit B1 like 1 protein-coding 39 0.004649
-79770 TXNDC15 thioredoxin domain containing 15 protein-coding 34 0.004053
-79772 MCTP1 multiple C2 and transmembrane domain containing 1 protein-coding 137 0.01633
-79774 GRTP1 growth hormone regulated TBC protein 1 protein-coding 36 0.004292
-79776 ZFHX4 zinc finger homeobox 4 protein-coding 790 0.09418
-79777 ACBD4 acyl-CoA binding domain containing 4 protein-coding 38 0.00453
-79778 MICALL2 MICAL like 2 protein-coding 86 0.01025
-79780 CCDC82 coiled-coil domain containing 82 protein-coding 68 0.008107
-79781 IQCA1 IQ motif containing with AAA domain 1 protein-coding 106 0.01264
-79782 LRRC31 leucine rich repeat containing 31 protein-coding 82 0.009776
-79783 SUGCT succinyl-CoA:glutarate-CoA transferase protein-coding 76 0.009061
-79784 MYH14 myosin heavy chain 14 protein-coding 211 0.02515
-79785 RERGL RERG like protein-coding 36 0.004292
-79786 KLHL36 kelch like family member 36 protein-coding 74 0.008822
-79788 ZNF665 zinc finger protein 665 protein-coding 136 0.01621
-79789 CLMN calmin protein-coding 130 0.0155
-79791 FBXO31 F-box protein 31 protein-coding 64 0.00763
-79792 GSDMD gasdermin D protein-coding 44 0.005246
-79794 C12orf49 chromosome 12 open reading frame 49 protein-coding 21 0.002504
-79796 ALG9 ALG9, alpha-1,2-mannosyltransferase protein-coding 34 0.004053
-79797 ZNF408 zinc finger protein 408 protein-coding 71 0.008464
-79798 ARMC5 armadillo repeat containing 5 protein-coding 103 0.01228
-79799 UGT2A3 UDP glucuronosyltransferase family 2 member A3 protein-coding 104 0.0124
-79800 CARF calcium responsive transcription factor protein-coding 89 0.01061
-79801 SHCBP1 SHC binding and spindle associated 1 protein-coding 52 0.006199
-79802 HHIPL2 HHIP like 2 protein-coding 153 0.01824
-79803 HPS6 HPS6, biogenesis of lysosomal organelles complex 2 subunit 3 protein-coding 60 0.007153
-79804 HAND2-AS1 HAND2 antisense RNA 1 ncRNA 10 0.001192
-79805 VASH2 vasohibin 2 protein-coding 29 0.003457
-79807 GSTCD glutathione S-transferase C-terminal domain containing protein-coding 67 0.007988
-79809 TTC21B tetratricopeptide repeat domain 21B protein-coding 142 0.01693
-79810 PTCD2 pentatricopeptide repeat domain 2 protein-coding 39 0.004649
-79811 SLTM SAFB like transcription modulator protein-coding 114 0.01359
-79812 MMRN2 multimerin 2 protein-coding 158 0.01884
-79813 EHMT1 euchromatic histone lysine methyltransferase 1 protein-coding 136 0.01621
-79814 AGMAT agmatinase protein-coding 29 0.003457
-79815 NIPAL2 NIPA like domain containing 2 protein-coding 36 0.004292
-79816 TLE6 transducin like enhancer of split 6 protein-coding 62 0.007392
-79817 MOB3B MOB kinase activator 3B protein-coding 27 0.003219
-79818 ZNF552 zinc finger protein 552 protein-coding 44 0.005246
-79819 WDR78 WD repeat domain 78 protein-coding 133 0.01586
-79820 CATSPERB cation channel sperm associated auxiliary subunit beta protein-coding 133 0.01586
-79822 ARHGAP28 Rho GTPase activating protein 28 protein-coding 108 0.01288
-79823 CAMKMT calmodulin-lysine N-methyltransferase protein-coding 38 0.00453
-79825 EFCC1 EF-hand and coiled-coil domain containing 1 protein-coding 35 0.004173
-79827 CLMP CXADR like membrane protein protein-coding 52 0.006199
-79828 METTL8 methyltransferase like 8 protein-coding 38 0.00453
-79829 NAA40 N(alpha)-acetyltransferase 40, NatD catalytic subunit protein-coding 19 0.002265
-79830 ZMYM1 zinc finger MYM-type containing 1 protein-coding 120 0.01431
-79831 KDM8 lysine demethylase 8 protein-coding 43 0.005126
-79832 QSER1 glutamine and serine rich 1 protein-coding 156 0.0186
-79833 GEMIN6 gem nuclear organelle associated protein 6 protein-coding 18 0.002146
-79834 PEAK1 pseudopodium enriched atypical kinase 1 protein-coding 192 0.02289
-79836 LONRF3 LON peptidase N-terminal domain and ring finger 3 protein-coding 91 0.01085
-79837 PIP4K2C phosphatidylinositol-5-phosphate 4-kinase type 2 gamma protein-coding 54 0.006438
-79838 TMC5 transmembrane channel like 5 protein-coding 133 0.01586
-79839 CCDC102B coiled-coil domain containing 102B protein-coding 106 0.01264
-79840 NHEJ1 non-homologous end joining factor 1 protein-coding 31 0.003696
-79841 AGBL2 ATP/GTP binding protein like 2 protein-coding 106 0.01264
-79842 ZBTB3 zinc finger and BTB domain containing 3 protein-coding 62 0.007392
-79843 FAM124B family with sequence similarity 124 member B protein-coding 58 0.006915
-79844 ZDHHC11 zinc finger DHHC-type containing 11 protein-coding 47 0.005603
-79845 RNF122 ring finger protein 122 protein-coding 21 0.002504
-79846 CFAP69 cilia and flagella associated protein 69 protein-coding 121 0.01443
-79847 MFSD13A major facilitator superfamily domain containing 13A protein-coding 43 0.005126
-79848 CSPP1 centrosome and spindle pole associated protein 1 protein-coding 157 0.01872
-79849 PDZD3 PDZ domain containing 3 protein-coding 47 0.005603
-79850 FAM57A family with sequence similarity 57 member A protein-coding 17 0.002027
-79852 EPHX3 epoxide hydrolase 3 protein-coding 42 0.005007
-79853 TM4SF20 transmembrane 4 L six family member 20 protein-coding 21 0.002504
-79854 LINC00115 long intergenic non-protein coding RNA 115 ncRNA 17 0.002027
-79856 SNX22 sorting nexin 22 protein-coding 18 0.002146
-79858 NEK11 NIMA related kinase 11 protein-coding 88 0.01049
-79861 TUBAL3 tubulin alpha like 3 protein-coding 63 0.007511
-79862 ZNF669 zinc finger protein 669 protein-coding 50 0.005961
-79863 RBFA ribosome binding factor A protein-coding 36 0.004292
-79864 JHY junctional cadherin complex regulator protein-coding 134 0.01598
-79865 TREML2 triggering receptor expressed on myeloid cells like 2 protein-coding 44 0.005246
-79866 BORA bora, aurora kinase A activator protein-coding 48 0.005722
-79867 TCTN2 tectonic family member 2 protein-coding 77 0.00918
-79868 ALG13 ALG13, UDP-N-acetylglucosaminyltransferase subunit protein-coding 143 0.01705
-79869 CPSF7 cleavage and polyadenylation specific factor 7 protein-coding 65 0.007749
-79870 BAALC BAALC, MAP3K1 and KLF4 binding protein-coding 19 0.002265
-79871 RPAP2 RNA polymerase II associated protein 2 protein-coding 64 0.00763
-79872 CBLL1 Cbl proto-oncogene like 1 protein-coding 70 0.008345
-79873 NUDT18 nudix hydrolase 18 protein-coding 24 0.002861
-79874 RABEP2 rabaptin, RAB GTPase binding effector protein 2 protein-coding 74 0.008822
-79875 THSD4 thrombospondin type 1 domain containing 4 protein-coding 131 0.01562
-79876 UBA5 ubiquitin like modifier activating enzyme 5 protein-coding 41 0.004888
-79877 DCAKD dephospho-CoA kinase domain containing protein-coding 32 0.003815
-79879 CCDC134 coiled-coil domain containing 134 protein-coding 24 0.002861
-79882 ZC3H14 zinc finger CCCH-type containing 14 protein-coding 89 0.01061
-79883 PODNL1 podocan like 1 protein-coding 34 0.004053
-79884 MAP9 microtubule associated protein 9 protein-coding 111 0.01323
-79885 HDAC11 histone deacetylase 11 protein-coding 55 0.006557
-79886 CAAP1 caspase activity and apoptosis inhibitor 1 protein-coding 28 0.003338
-79887 PLBD1 phospholipase B domain containing 1 protein-coding 55 0.006557
-79888 LPCAT1 lysophosphatidylcholine acyltransferase 1 protein-coding 128 0.01526
-79890 RIN3 Ras and Rab interactor 3 protein-coding 99 0.0118
-79891 ZNF671 zinc finger protein 671 protein-coding 77 0.00918
-79892 MCMBP minichromosome maintenance complex binding protein protein-coding 53 0.006319
-79893 GGNBP2 gametogenetin binding protein 2 protein-coding 90 0.01073
-79894 ZNF672 zinc finger protein 672 protein-coding 48 0.005722
-79895 ATP8B4 ATPase phospholipid transporting 8B4 (putative) protein-coding 186 0.02217
-79896 THNSL1 threonine synthase like 1 protein-coding 73 0.008703
-79897 RPP21 ribonuclease P/MRP subunit p21 protein-coding 11 0.001311
-79898 ZNF613 zinc finger protein 613 protein-coding 84 0.01001
-79899 PRR5L proline rich 5 like protein-coding 51 0.00608
-79901 CYBRD1 cytochrome b reductase 1 protein-coding 33 0.003934
-79902 NUP85 nucleoporin 85 protein-coding 63 0.007511
-79903 NAA60 N(alpha)-acetyltransferase 60, NatF catalytic subunit protein-coding 26 0.0031
-79905 TMC7 transmembrane channel like 7 protein-coding 79 0.009418
-79906 MORN1 MORN repeat containing 1 protein-coding 55 0.006557
-79908 BTNL8 butyrophilin like 8 protein-coding 92 0.01097
-79912 PYROXD1 pyridine nucleotide-disulphide oxidoreductase domain 1 protein-coding 49 0.005842
-79913 ACTR5 ARP5 actin related protein 5 homolog protein-coding 67 0.007988
-79915 ATAD5 ATPase family, AAA domain containing 5 protein-coding 201 0.02396
-79917 MAGIX MAGI family member, X-linked protein-coding 58 0.006915
-79918 SETD6 SET domain containing 6 protein-coding 39 0.004649
-79919 C2orf54 chromosome 2 open reading frame 54 protein-coding 36 0.004292
-79921 TCEAL4 transcription elongation factor A like 4 protein-coding 30 0.003577
-79922 MRM1 mitochondrial rRNA methyltransferase 1 protein-coding 40 0.004769
-79923 NANOG Nanog homeobox protein-coding 40 0.004769
-79924 ADM2 adrenomedullin 2 protein-coding 11 0.001311
-79925 SPEF2 sperm flagellar 2 protein-coding 284 0.03386
-79927 FAM110D family with sequence similarity 110 member D protein-coding 9 0.001073
-79929 MAP6D1 MAP6 domain containing 1 protein-coding 9 0.001073
-79930 DOK3 docking protein 3 protein-coding 48 0.005722
-79931 TNIP3 TNFAIP3 interacting protein 3 protein-coding 85 0.01013
-79932 KIAA0319L KIAA0319 like protein-coding 115 0.01371
-79933 SYNPO2L synaptopodin 2 like protein-coding 89 0.01061
-79934 COQ8B coenzyme Q8B protein-coding 51 0.00608
-79935 CNTD2 cyclin N-terminal domain containing 2 protein-coding 21 0.002504
-79937 CNTNAP3 contactin associated protein like 3 protein-coding 148 0.01764
-79939 SLC35E1 solute carrier family 35 member E1 protein-coding 32 0.003815
-79940 LINC00472 long intergenic non-protein coding RNA 472 ncRNA 1 0.0001192
-79943 ZNF696 zinc finger protein 696 protein-coding 32 0.003815
-79944 L2HGDH L-2-hydroxyglutarate dehydrogenase protein-coding 45 0.005365
-79946 C10orf95 chromosome 10 open reading frame 95 protein-coding 7 0.0008345
-79947 DHDDS dehydrodolichyl diphosphate synthase subunit protein-coding 250 0.0298
-79948 PLPPR3 phospholipid phosphatase related 3 protein-coding 88 0.01049
-79949 PLEKHS1 pleckstrin homology domain containing S1 protein-coding 56 0.006676
-79953 SYNDIG1 synapse differentiation inducing 1 protein-coding 66 0.007868
-79954 NOL10 nucleolar protein 10 protein-coding 53 0.006319
-79955 PDZD7 PDZ domain containing 7 protein-coding 58 0.006915
-79956 ERMP1 endoplasmic reticulum metallopeptidase 1 protein-coding 67 0.007988
-79957 PAQR6 progestin and adipoQ receptor family member 6 protein-coding 39 0.004649
-79958 DENND1C DENN domain containing 1C protein-coding 81 0.009657
-79959 CEP76 centrosomal protein 76 protein-coding 74 0.008822
-79960 JADE1 jade family PHD finger 1 protein-coding 84 0.01001
-79961 DENND2D DENN domain containing 2D protein-coding 59 0.007034
-79962 DNAJC22 DnaJ heat shock protein family (Hsp40) member C22 protein-coding 41 0.004888
-79963 ABCA11P ATP binding cassette subfamily A member 11, pseudogene pseudo 70 0.008345
-79966 SCD5 stearoyl-CoA desaturase 5 protein-coding 38 0.00453
-79968 WDR76 WD repeat domain 76 protein-coding 57 0.006795
-79969 ATAT1 alpha tubulin acetyltransferase 1 protein-coding 98 0.01168
-79970 ZNF767P zinc finger family member 767, pseudogene pseudo 42 0.005007
-79971 WLS wntless Wnt ligand secretion mediator protein-coding 50 0.005961
-79973 ZNF442 zinc finger protein 442 protein-coding 93 0.01109
-79974 CPED1 cadherin like and PC-esterase domain containing 1 protein-coding 187 0.02229
-79977 GRHL2 grainyhead like transcription factor 2 protein-coding 75 0.008941
-79979 TRMT2B tRNA methyltransferase 2 homolog B protein-coding 66 0.007868
-79980 DSN1 DSN1 homolog, MIS12 kinetochore complex component protein-coding 51 0.00608
-79981 FRMD1 FERM domain containing 1 protein-coding 66 0.007868
-79982 DNAJB14 DnaJ heat shock protein family (Hsp40) member B14 protein-coding 33 0.003934
-79983 POF1B POF1B, actin binding protein protein-coding 107 0.01276
-79986 ZNF702P zinc finger protein 702, pseudogene pseudo 116 0.01383
-79987 SVEP1 sushi, von Willebrand factor type A, EGF and pentraxin domain containing 1 protein-coding 369 0.04399
-79989 TTC26 tetratricopeptide repeat domain 26 protein-coding 57 0.006795
-79990 PLEKHH3 pleckstrin homology, MyTH4 and FERM domain containing H3 protein-coding 86 0.01025
-79991 STN1 STN1, CST complex subunit protein-coding 42 0.005007
-79993 ELOVL7 ELOVL fatty acid elongase 7 protein-coding 42 0.005007
-79998 ANKRD53 ankyrin repeat domain 53 protein-coding 50 0.005961
-80000 GREB1L GREB1 like retinoic acid receptor coactivator protein-coding 97 0.01156
-80003 PCNX2 pecanex homolog 2 protein-coding 244 0.02909
-80004 ESRP2 epithelial splicing regulatory protein 2 protein-coding 73 0.008703
-80005 DOCK5 dedicator of cytokinesis 5 protein-coding 188 0.02241
-80006 TRAPPC13 trafficking protein particle complex 13 protein-coding 35 0.004173
-80007 C10orf88 chromosome 10 open reading frame 88 protein-coding 59 0.007034
-80008 TMEM156 transmembrane protein 156 protein-coding 36 0.004292
-80010 RMI1 RecQ mediated genome instability 1 protein-coding 53 0.006319
-80011 FAM192A family with sequence similarity 192 member A protein-coding 24 0.002861
-80012 PHC3 polyhomeotic homolog 3 protein-coding 82 0.009776
-80013 MINDY3 MINDY lysine 48 deubiquitinase 3 protein-coding 65 0.007749
-80014 WWC2 WW and C2 domain containing 2 protein-coding 115 0.01371
-80017 DGLUCY D-glutamate cyclase protein-coding 55 0.006557
-80018 NAA25 N(alpha)-acetyltransferase 25, NatB auxiliary subunit protein-coding 118 0.01407
-80019 UBTD1 ubiquitin domain containing 1 protein-coding 28 0.003338
-80020 FOXRED2 FAD dependent oxidoreductase domain containing 2 protein-coding 82 0.009776
-80021 TMEM62 transmembrane protein 62 protein-coding 67 0.007988
-80022 MYO15B myosin XVB protein-coding 28 0.003338
-80023 NRSN2 neurensin 2 protein-coding 27 0.003219
-80024 SLC8B1 solute carrier family 8 member B1 protein-coding 58 0.006915
-80025 PANK2 pantothenate kinase 2 protein-coding 46 0.005484
-80028 FBXL18 F-box and leucine rich repeat protein 18 protein-coding 66 0.007868
-80031 SEMA6D semaphorin 6D protein-coding 197 0.02349
-80032 ZNF556 zinc finger protein 556 protein-coding 71 0.008464
-80034 CSRNP3 cysteine and serine rich nuclear protein 3 protein-coding 107 0.01276
-80036 TRPM3 transient receptor potential cation channel subfamily M member 3 protein-coding 254 0.03028
-80039 FAM106A family with sequence similarity 106 member A protein-coding 5 0.0005961
-80045 GPR157 G protein-coupled receptor 157 protein-coding 31 0.003696
-80055 PGAP1 post-GPI attachment to proteins 1 protein-coding 99 0.0118
-80059 LRRTM4 leucine rich repeat transmembrane neuronal 4 protein-coding 189 0.02253
-80063 ATF7IP2 activating transcription factor 7 interacting protein 2 protein-coding 74 0.008822
-80067 DCAF17 DDB1 and CUL4 associated factor 17 protein-coding 49 0.005842
-80069 LINC00574 long intergenic non-protein coding RNA 574 ncRNA 20 0.002384
-80070 ADAMTS20 ADAM metallopeptidase with thrombospondin type 1 motif 20 protein-coding 331 0.03946
-80071 CCDC15 coiled-coil domain containing 15 protein-coding 86 0.01025
-80086 TUBA4B tubulin alpha 4b protein-coding 69 0.008226
-80095 ZNF606 zinc finger protein 606 protein-coding 106 0.01264
-80097 MZT2B mitotic spindle organizing protein 2B protein-coding 15 0.001788
-80099 C7orf69 chromosome 7 open reading frame 69 protein-coding 9 0.001073
-80108 ZFP2 ZFP2 zinc finger protein protein-coding 77 0.00918
-80110 ZNF614 zinc finger protein 614 protein-coding 79 0.009418
-80111 C3orf36 chromosome 3 open reading frame 36 protein-coding 27 0.003219
-80114 BICC1 BicC family RNA binding protein 1 protein-coding 154 0.01836
-80115 BAIAP2L2 BAI1 associated protein 2 like 2 protein-coding 32 0.003815
-80117 ARL14 ADP ribosylation factor like GTPase 14 protein-coding 23 0.002742
-80119 PIF1 PIF1 5'-to-3' DNA helicase protein-coding 44 0.005246
-80122 MAP3K19 mitogen-activated protein kinase kinase kinase 19 protein-coding 181 0.02158
-80124 VCPIP1 valosin containing protein interacting protein 1 protein-coding 135 0.01609
-80125 CCDC33 coiled-coil domain containing 33 protein-coding 99 0.0118
-80127 BBOF1 basal body orientation factor 1 protein-coding 56 0.006676
-80128 TRIM46 tripartite motif containing 46 protein-coding 94 0.01121
-80129 CCDC170 coiled-coil domain containing 170 protein-coding 112 0.01335
-80131 LRRC8E leucine rich repeat containing 8 VRAC subunit E protein-coding 71 0.008464
-80133 MROH9 maestro heat like repeat family member 9 protein-coding 139 0.01657
-80135 RPF1 ribosome production factor 1 homolog protein-coding 34 0.004053
-80139 ZNF703 zinc finger protein 703 protein-coding 28 0.003338
-80142 PTGES2 prostaglandin E synthase 2 protein-coding 198 0.02361
-80143 SIKE1 suppressor of IKBKE 1 protein-coding 20 0.002384
-80144 FRAS1 Fraser extracellular matrix complex subunit 1 protein-coding 384 0.04578
-80145 THOC7 THO complex 7 protein-coding 21 0.002504
-80146 UXS1 UDP-glucuronate decarboxylase 1 protein-coding 59 0.007034
-80148 PQLC1 PQ loop repeat containing 1 protein-coding 32 0.003815
-80149 ZC3H12A zinc finger CCCH-type containing 12A protein-coding 93 0.01109
-80150 ASRGL1 asparaginase like 1 protein-coding 33 0.003934
-80152 CENPT centromere protein T protein-coding 49 0.005842
-80153 EDC3 enhancer of mRNA decapping 3 protein-coding 49 0.005842
-80155 NAA15 N(alpha)-acetyltransferase 15, NatA auxiliary subunit protein-coding 118 0.01407
-80157 CWH43 cell wall biogenesis 43 C-terminal homolog protein-coding 129 0.01538
-80162 PGGHG protein-glucosylgalactosylhydroxylysine glucosidase protein-coding 66 0.007868
-80167 ABHD18 abhydrolase domain containing 18 protein-coding 40 0.004769
-80168 MOGAT2 monoacylglycerol O-acyltransferase 2 protein-coding 100 0.01192
-80169 CTC1 CST telomere replication complex component 1 protein-coding 114 0.01359
-80173 IFT74 intraflagellar transport 74 protein-coding 54 0.006438
-80174 DBF4B DBF4 zinc finger B protein-coding 61 0.007272
-80176 SPSB1 splA/ryanodine receptor domain and SOCS box containing 1 protein-coding 34 0.004053
-80177 MYCT1 MYC target 1 protein-coding 73 0.008703
-80178 TEDC2 tubulin epsilon and delta complex 2 protein-coding 44 0.005246
-80179 MYO19 myosin XIX protein-coding 94 0.01121
-80183 RUBCNL RUN and cysteine rich domain containing beclin 1 interacting protein like protein-coding 76 0.009061
-80184 CEP290 centrosomal protein 290 protein-coding 234 0.0279
-80185 TTI2 TELO2 interacting protein 2 protein-coding 51 0.00608
-80194 TMEM134 transmembrane protein 134 protein-coding 10 0.001192
-80195 TMEM254 transmembrane protein 254 protein-coding 17 0.002027
-80196 RNF34 ring finger protein 34 protein-coding 28 0.003338
-80198 MUS81 MUS81 structure-specific endonuclease subunit protein-coding 51 0.00608
-80199 FUZ fuzzy planar cell polarity protein protein-coding 36 0.004292
-80201 HKDC1 hexokinase domain containing 1 protein-coding 119 0.01419
-80204 FBXO11 F-box protein 11 protein-coding 95 0.01133
-80205 CHD9 chromodomain helicase DNA binding protein 9 protein-coding 244 0.02909
-80206 FHOD3 formin homology 2 domain containing 3 protein-coding 207 0.02468
-80207 OPA3 OPA3, outer mitochondrial membrane lipid metabolism regulator protein-coding 17 0.002027
-80208 SPG11 SPG11, spatacsin vesicle trafficking associated protein-coding 194 0.02313
-80209 PROSER1 proline and serine rich 1 protein-coding 104 0.0124
-80210 ARMC9 armadillo repeat containing 9 protein-coding 71 0.008464
-80212 CCDC92 coiled-coil domain containing 92 protein-coding 52 0.006199
-80213 TM2D3 TM2 domain containing 3 protein-coding 26 0.0031
-80216 ALPK1 alpha kinase 1 protein-coding 151 0.018
-80217 CFAP43 cilia and flagella associated protein 43 protein-coding 171 0.02039
-80218 NAA50 N(alpha)-acetyltransferase 50, NatE catalytic subunit protein-coding 16 0.001907
-80219 COQ10B coenzyme Q10B protein-coding 29 0.003457
-80221 ACSF2 acyl-CoA synthetase family member 2 protein-coding 69 0.008226
-80222 TARS2 threonyl-tRNA synthetase 2, mitochondrial protein-coding 91 0.01085
-80223 RAB11FIP1 RAB11 family interacting protein 1 protein-coding 127 0.01514
-80224 NUBPL nucleotide binding protein like protein-coding 31 0.003696
-80227 PAAF1 proteasomal ATPase associated factor 1 protein-coding 44 0.005246
-80228 ORAI2 ORAI calcium release-activated calcium modulator 2 protein-coding 29 0.003457
-80230 RUFY1 RUN and FYVE domain containing 1 protein-coding 72 0.008584
-80231 CXorf21 chromosome X open reading frame 21 protein-coding 64 0.00763
-80232 WDR26 WD repeat domain 26 protein-coding 57 0.006795
-80233 FAAP100 Fanconi anemia core complex associated protein 100 protein-coding 70 0.008345
-80235 PIGZ phosphatidylinositol glycan anchor biosynthesis class Z protein-coding 55 0.006557
-80237 ELL3 elongation factor for RNA polymerase II 3 protein-coding 49 0.005842
-80243 PREX2 phosphatidylinositol-3,4,5-trisphosphate dependent Rac exchange factor 2 protein-coding 322 0.03839
-80254 CEP63 centrosomal protein 63 protein-coding 91 0.01085
-80255 SLC35F5 solute carrier family 35 member F5 protein-coding 54 0.006438
-80256 FAM214B family with sequence similarity 214 member B protein-coding 68 0.008107
-80258 EFHC2 EF-hand domain containing 2 protein-coding 91 0.01085
-80262 C16orf70 chromosome 16 open reading frame 70 protein-coding 54 0.006438
-80263 TRIM45 tripartite motif containing 45 protein-coding 61 0.007272
-80264 ZNF430 zinc finger protein 430 protein-coding 73 0.008703
-80267 EDEM3 ER degradation enhancing alpha-mannosidase like protein 3 protein-coding 97 0.01156
-80270 HSD3B7 hydroxy-delta-5-steroid dehydrogenase, 3 beta- and steroid delta-isomerase 7 protein-coding 40 0.004769
-80271 ITPKC inositol-trisphosphate 3-kinase C protein-coding 71 0.008464
-80273 GRPEL1 GrpE like 1, mitochondrial protein-coding 18 0.002146
-80274 SCUBE1 signal peptide, CUB domain and EGF like domain containing 1 protein-coding 124 0.01478
-80279 CDK5RAP3 CDK5 regulatory subunit associated protein 3 protein-coding 41 0.004888
-80298 MTERF2 mitochondrial transcription termination factor 2 protein-coding 57 0.006795
-80301 PLEKHO2 pleckstrin homology domain containing O2 protein-coding 41 0.004888
-80303 EFHD1 EF-hand domain family member D1 protein-coding 36 0.004292
-80304 WDCP WD repeat and coiled coil containing protein-coding 69 0.008226
-80305 TRABD TraB domain containing protein-coding 36 0.004292
-80306 MED28 mediator complex subunit 28 protein-coding 30 0.003577
-80307 FER1L4 fer-1 like family member 4, pseudogene pseudo 29 0.003457
-80308 FLAD1 flavin adenine dinucleotide synthetase 1 protein-coding 63 0.007511
-80309 SPHKAP SPHK1 interactor, AKAP domain containing protein-coding 367 0.04375
-80310 PDGFD platelet derived growth factor D protein-coding 87 0.01037
-80311 KLHL15 kelch like family member 15 protein-coding 64 0.00763
-80312 TET1 tet methylcytosine dioxygenase 1 protein-coding 227 0.02706
-80313 LRRC27 leucine rich repeat containing 27 protein-coding 66 0.007868
-80314 EPC1 enhancer of polycomb homolog 1 protein-coding 82 0.009776
-80315 CPEB4 cytoplasmic polyadenylation element binding protein 4 protein-coding 89 0.01061
-80317 ZKSCAN3 zinc finger with KRAB and SCAN domains 3 protein-coding 63 0.007511
-80318 GKAP1 G kinase anchoring protein 1 protein-coding 36 0.004292
-80319 CXXC4 CXXC finger protein 4 protein-coding 31 0.003696
-80320 SP6 Sp6 transcription factor protein-coding 67 0.007988
-80321 CEP70 centrosomal protein 70 protein-coding 69 0.008226
-80323 CCDC68 coiled-coil domain containing 68 protein-coding 47 0.005603
-80324 PUS1 pseudouridylate synthase 1 protein-coding 45 0.005365
-80325 ABTB1 ankyrin repeat and BTB domain containing 1 protein-coding 68 0.008107
-80326 WNT10A Wnt family member 10A protein-coding 38 0.00453
-80328 ULBP2 UL16 binding protein 2 protein-coding 33 0.003934
-80329 ULBP1 UL16 binding protein 1 protein-coding 42 0.005007
-80331 DNAJC5 DnaJ heat shock protein family (Hsp40) member C5 protein-coding 92 0.01097
-80332 ADAM33 ADAM metallopeptidase domain 33 protein-coding 73 0.008703
-80333 KCNIP4 potassium voltage-gated channel interacting protein 4 protein-coding 47 0.005603
-80335 WDR82 WD repeat domain 82 protein-coding 29 0.003457
-80336 PABPC1L poly(A) binding protein cytoplasmic 1 like protein-coding 73 0.008703
-80339 PNPLA3 patatin like phospholipase domain containing 3 protein-coding 51 0.00608
-80341 BPIFB2 BPI fold containing family B member 2 protein-coding 74 0.008822
-80342 TRAF3IP3 TRAF3 interacting protein 3 protein-coding 74 0.008822
-80343 SEL1L2 SEL1L2 ERAD E3 ligase adaptor subunit protein-coding 118 0.01407
-80344 DCAF11 DDB1 and CUL4 associated factor 11 protein-coding 73 0.008703
-80345 ZSCAN16 zinc finger and SCAN domain containing 16 protein-coding 31 0.003696
-80346 REEP4 receptor accessory protein 4 protein-coding 27 0.003219
-80347 COASY Coenzyme A synthase protein-coding 109 0.01299
-80349 WDR61 WD repeat domain 61 protein-coding 27 0.003219
-80350 LPAL2 lipoprotein(a) like 2, pseudogene pseudo 128 0.01526
-80351 TNKS2 tankyrase 2 protein-coding 121 0.01443
-80352 RNF39 ring finger protein 39 protein-coding 38 0.00453
-80380 PDCD1LG2 programmed cell death 1 ligand 2 protein-coding 25 0.00298
-80381 CD276 CD276 molecule protein-coding 56 0.006676
-80700 UBXN6 UBX domain protein 6 protein-coding 56 0.006676
-80704 SLC19A3 solute carrier family 19 member 3 protein-coding 70 0.008345
-80705 TSGA10 testis specific 10 protein-coding 123 0.01466
-80709 AKNA AT-hook transcription factor protein-coding 122 0.01454
-80712 ESX1 ESX homeobox 1 protein-coding 88 0.01049
-80714 PBX4 PBX homeobox 4 protein-coding 37 0.004411
-80723 SLC35G2 solute carrier family 35 member G2 protein-coding 43 0.005126
-80724 ACAD10 acyl-CoA dehydrogenase family member 10 protein-coding 111 0.01323
-80725 SRCIN1 SRC kinase signaling inhibitor 1 protein-coding 111 0.01323
-80726 IQCN IQ motif containing N protein-coding 127 0.01514
-80727 TTYH3 tweety family member 3 protein-coding 45 0.005365
-80728 ARHGAP39 Rho GTPase activating protein 39 protein-coding 107 0.01276
-80731 THSD7B thrombospondin type 1 domain containing 7B protein-coding 383 0.04566
-80736 SLC44A4 solute carrier family 44 member 4 protein-coding 90 0.01073
-80737 VWA7 von Willebrand factor A domain containing 7 protein-coding 96 0.01144
-80739 MPIG6B megakaryocyte and platelet inhibitory receptor G6b protein-coding 23 0.002742
-80740 LY6G6C lymphocyte antigen 6 family member G6C protein-coding 12 0.001431
-80741 LY6G5C lymphocyte antigen 6 family member G5C protein-coding 15 0.001788
-80742 PRR3 proline rich 3 protein-coding 13 0.00155
-80745 THUMPD2 THUMP domain containing 2 protein-coding 42 0.005007
-80746 TSEN2 tRNA splicing endonuclease subunit 2 protein-coding 52 0.006199
-80755 AARSD1 alanyl-tRNA synthetase domain containing 1 protein-coding 32 0.003815
-80757 TMEM121 transmembrane protein 121 protein-coding 26 0.0031
-80758 PRR7 proline rich 7, synaptic protein-coding 10 0.001192
-80759 KHDC1 KH domain containing 1 protein-coding 27 0.003219
-80760 ITIH5 inter-alpha-trypsin inhibitor heavy chain family member 5 protein-coding 175 0.02086
-80762 NDFIP1 Nedd4 family interacting protein 1 protein-coding 21 0.002504
-80763 SPX spexin hormone protein-coding 28 0.003338
-80764 THAP7 THAP domain containing 7 protein-coding 35 0.004173
-80765 STARD5 StAR related lipid transfer domain containing 5 protein-coding 17 0.002027
-80772 CPTP ceramide-1-phosphate transfer protein protein-coding 18 0.002146
-80774 LIMD2 LIM domain containing 2 protein-coding 11 0.001311
-80775 TMEM177 transmembrane protein 177 protein-coding 42 0.005007
-80776 B9D2 B9 domain containing 2 protein-coding 25 0.00298
-80777 CYB5B cytochrome b5 type B protein-coding 15 0.001788
-80778 ZNF34 zinc finger protein 34 protein-coding 60 0.007153
-80781 COL18A1 collagen type XVIII alpha 1 chain protein-coding 157 0.01872
-80789 INTS5 integrator complex subunit 5 protein-coding 90 0.01073
-80790 CMIP c-Maf inducing protein protein-coding 67 0.007988
-80816 ASXL3 additional sex combs like 3, transcriptional regulator protein-coding 352 0.04196
-80817 CEP44 centrosomal protein 44 protein-coding 47 0.005603
-80818 ZNF436 zinc finger protein 436 protein-coding 58 0.006915
-80820 EEPD1 endonuclease/exonuclease/phosphatase family domain containing 1 protein-coding 70 0.008345
-80821 DDHD1 DDHD domain containing 1 protein-coding 113 0.01347
-80823 BHLHB9 basic helix-loop-helix family member b9 protein-coding 81 0.009657
-80824 DUSP16 dual specificity phosphatase 16 protein-coding 78 0.009299
-80829 ZFP91 ZFP91 zinc finger protein protein-coding 83 0.009895
-80830 APOL6 apolipoprotein L6 protein-coding 43 0.005126
-80831 APOL5 apolipoprotein L5 protein-coding 52 0.006199
-80832 APOL4 apolipoprotein L4 protein-coding 26 0.0031
-80833 APOL3 apolipoprotein L3 protein-coding 39 0.004649
-80834 TAS1R2 taste 1 receptor member 2 protein-coding 147 0.01753
-80835 TAS1R1 taste 1 receptor member 1 protein-coding 80 0.009537
-80851 SH3BP5L SH3 binding domain protein 5 like protein-coding 55 0.006557
-80852 GRIP2 glutamate receptor interacting protein 2 protein-coding 129 0.01538
-80853 KDM7A lysine demethylase 7A protein-coding 96 0.01144
-80854 SETD7 SET domain containing lysine methyltransferase 7 protein-coding 35 0.004173
-80856 LNPK lunapark, ER junction formation factor protein-coding 90 0.01073
-80862 ZNRD1ASP zinc ribbon domain containing 1 antisense, pseudogene pseudo 28 0.003338
-80863 PRRT1 proline rich transmembrane protein 1 protein-coding 33 0.003934
-80864 EGFL8 EGF like domain multiple 8 protein-coding 38 0.00453
-80895 ILKAP ILK associated serine/threonine phosphatase protein-coding 46 0.005484
-80896 NPL N-acetylneuraminate pyruvate lyase protein-coding 32 0.003815
-80975 TMPRSS5 transmembrane serine protease 5 protein-coding 38 0.00453
-81025 GJA9 gap junction protein alpha 9 protein-coding 145 0.01729
-81027 TUBB1 tubulin beta 1 class VI protein-coding 66 0.007868
-81029 WNT5B Wnt family member 5B protein-coding 58 0.006915
-81030 ZBP1 Z-DNA binding protein 1 protein-coding 78 0.009299
-81031 SLC2A10 solute carrier family 2 member 10 protein-coding 72 0.008584
-81033 KCNH6 potassium voltage-gated channel subfamily H member 6 protein-coding 146 0.01741
-81034 SLC25A32 solute carrier family 25 member 32 protein-coding 40 0.004769
-81035 COLEC12 collectin subfamily member 12 protein-coding 170 0.02027
-81037 CLPTM1L CLPTM1 like protein-coding 75 0.008941
-81050 OR5AC2 olfactory receptor family 5 subfamily AC member 2 protein-coding 68 0.008107
-81061 OR11H1 olfactory receptor family 11 subfamily H member 1 protein-coding 193 0.02301
-81099 OR4F17 olfactory receptor family 4 subfamily F member 17 protein-coding 30 0.003577
-81127 OR4K15 olfactory receptor family 4 subfamily K member 15 protein-coding 93 0.01109
-81168 OR8J3 olfactory receptor family 8 subfamily J member 3 protein-coding 126 0.01502
-81191 OR5G5P olfactory receptor family 5 subfamily G member 5 pseudogene pseudo 13 0.00155
-81282 OR51G2 olfactory receptor family 51 subfamily G member 2 protein-coding 78 0.009299
-81285 OR51E2 olfactory receptor family 51 subfamily E member 2 protein-coding 88 0.01049
-81300 OR4P4 olfactory receptor family 4 subfamily P member 4 protein-coding 114 0.01359
-81309 OR4C15 olfactory receptor family 4 subfamily C member 15 protein-coding 166 0.01979
-81318 OR4A5 olfactory receptor family 4 subfamily A member 5 protein-coding 123 0.01466
-81327 OR4A16 olfactory receptor family 4 subfamily A member 16 protein-coding 136 0.01621
-81328 OR4A15 olfactory receptor family 4 subfamily A member 15 protein-coding 169 0.02015
-81341 OR10W1 olfactory receptor family 10 subfamily W member 1 protein-coding 53 0.006319
-81392 OR2AE1 olfactory receptor family 2 subfamily AE member 1 protein-coding 43 0.005126
-81442 OR6N2 olfactory receptor family 6 subfamily N member 2 protein-coding 96 0.01144
-81448 OR6K2 olfactory receptor family 6 subfamily K member 2 protein-coding 127 0.01514
-81469 OR2G3 olfactory receptor family 2 subfamily G member 3 protein-coding 97 0.01156
-81470 OR2G2 olfactory receptor family 2 subfamily G member 2 protein-coding 111 0.01323
-81472 OR2C3 olfactory receptor family 2 subfamily C member 3 protein-coding 91 0.01085
-81488 POLR2M RNA polymerase II subunit M protein-coding 23 0.002742
-81490 PTDSS2 phosphatidylserine synthase 2 protein-coding 35 0.004173
-81491 GPR63 G protein-coupled receptor 63 protein-coding 74 0.008822
-81492 RSPH6A radial spoke head 6 homolog A protein-coding 88 0.01049
-81493 SYNC syncoilin, intermediate filament protein protein-coding 33 0.003934
-81494 CFHR5 complement factor H related 5 protein-coding 128 0.01526
-81501 DCSTAMP dendrocyte expressed seven transmembrane protein protein-coding 126 0.01502
-81502 HM13 histocompatibility minor 13 protein-coding 43 0.005126
-81532 MOB2 MOB kinase activator 2 protein-coding 27 0.003219
-81533 ITFG1 integrin alpha FG-GAP repeat containing 1 protein-coding 64 0.00763
-81537 SGPP1 sphingosine-1-phosphate phosphatase 1 protein-coding 54 0.006438
-81539 SLC38A1 solute carrier family 38 member 1 protein-coding 124 0.01478
-81542 TMX1 thioredoxin related transmembrane protein 1 protein-coding 28 0.003338
-81543 LRRC3 leucine rich repeat containing 3 protein-coding 44 0.005246
-81544 GDPD5 glycerophosphodiester phosphodiesterase domain containing 5 protein-coding 69 0.008226
-81545 FBXO38 F-box protein 38 protein-coding 98 0.01168
-81550 TDRD3 tudor domain containing 3 protein-coding 110 0.01311
-81551 STMN4 stathmin 4 protein-coding 41 0.004888
-81552 VOPP1 VOPP1, WBP1/VOPP1 family member protein-coding 21 0.002504
-81553 FAM49A family with sequence similarity 49 member A protein-coding 71 0.008464
-81554 RCC1L RCC1 like protein-coding 20 0.002384
-81555 YIPF5 Yip1 domain family member 5 protein-coding 25 0.00298
-81556 INTS14 integrator complex subunit 14 protein-coding 40 0.004769
-81558 FAM117A family with sequence similarity 117 member A protein-coding 42 0.005007
-81559 TRIM11 tripartite motif containing 11 protein-coding 57 0.006795
-81562 LMAN2L lectin, mannose binding 2 like protein-coding 41 0.004888
-81563 C1orf21 chromosome 1 open reading frame 21 protein-coding 19 0.002265
-81565 NDEL1 nudE neurodevelopment protein 1 like 1 protein-coding 29 0.003457
-81566 CSRNP2 cysteine and serine rich nuclear protein 2 protein-coding 58 0.006915
-81567 TXNDC5 thioredoxin domain containing 5 protein-coding 43 0.005126
-81569 ACTL8 actin like 8 protein-coding 71 0.008464
-81570 CLPB ClpB homolog, mitochondrial AAA ATPase chaperonin protein-coding 60 0.007153
-81571 MIR600HG MIR600 host gene ncRNA 3 0.0003577
-81572 PDRG1 p53 and DNA damage regulated 1 protein-coding 22 0.002623
-81573 ANKRD13C ankyrin repeat domain 13C protein-coding 64 0.00763
-81575 APOLD1 apolipoprotein L domain containing 1 protein-coding 20 0.002384
-81576 CCDC130 coiled-coil domain containing 130 protein-coding 37 0.004411
-81577 GFOD2 glucose-fructose oxidoreductase domain containing 2 protein-coding 59 0.007034
-81578 COL21A1 collagen type XXI alpha 1 chain protein-coding 160 0.01907
-81579 PLA2G12A phospholipase A2 group XIIA protein-coding 14 0.001669
-81602 CDADC1 cytidine and dCMP deaminase domain containing 1 protein-coding 49 0.005842
-81603 TRIM8 tripartite motif containing 8 protein-coding 54 0.006438
-81605 URM1 ubiquitin related modifier 1 protein-coding 19 0.002265
-81606 LBH limb bud and heart development protein-coding 16 0.001907
-81607 NECTIN4 nectin cell adhesion molecule 4 protein-coding 95 0.01133
-81608 FIP1L1 factor interacting with PAPOLA and CPSF1 protein-coding 82 0.009776
-81609 SNX27 sorting nexin family member 27 protein-coding 62 0.007392
-81610 FAM83D family with sequence similarity 83 member D protein-coding 70 0.008345
-81611 ANP32E acidic nuclear phosphoprotein 32 family member E protein-coding 44 0.005246
-81614 NIPA2 NIPA magnesium transporter 2 protein-coding 39 0.004649
-81615 TMEM163 transmembrane protein 163 protein-coding 27 0.003219
-81616 ACSBG2 acyl-CoA synthetase bubblegum family member 2 protein-coding 82 0.009776
-81617 CAB39L calcium binding protein 39 like protein-coding 50 0.005961
-81618 ITM2C integral membrane protein 2C protein-coding 34 0.004053
-81619 TSPAN14 tetraspanin 14 protein-coding 34 0.004053
-81620 CDT1 chromatin licensing and DNA replication factor 1 protein-coding 61 0.007272
-81621 KAZALD1 Kazal type serine peptidase inhibitor domain 1 protein-coding 18 0.002146
-81622 UNC93B1 unc-93 homolog B1, TLR signaling regulator protein-coding 50 0.005961
-81623 DEFB126 defensin beta 126 protein-coding 24 0.002861
-81624 DIAPH3 diaphanous related formin 3 protein-coding 156 0.0186
-81626 SHCBP1L SHC binding and spindle associated 1 like protein-coding 89 0.01061
-81627 TRMT1L tRNA methyltransferase 1 like protein-coding 72 0.008584
-81628 TSC22D4 TSC22 domain family member 4 protein-coding 35 0.004173
-81629 TSSK3 testis specific serine kinase 3 protein-coding 30 0.003577
-81631 MAP1LC3B microtubule associated protein 1 light chain 3 beta protein-coding 15 0.001788
-81669 CCNL2 cyclin L2 protein-coding 74 0.008822
-81671 VMP1 vacuole membrane protein 1 protein-coding 57 0.006795
-81688 C6orf62 chromosome 6 open reading frame 62 protein-coding 41 0.004888
-81689 ISCA1 iron-sulfur cluster assembly 1 protein-coding 11 0.001311
-81693 AMN amnion associated transmembrane protein protein-coding 26 0.0031
-81696 OR5V1 olfactory receptor family 5 subfamily V member 1 protein-coding 75 0.008941
-81697 OR2B2 olfactory receptor family 2 subfamily B member 2 protein-coding 72 0.008584
-81704 DOCK8 dedicator of cytokinesis 8 protein-coding 199 0.02372
-81706 PPP1R14C protein phosphatase 1 regulatory inhibitor subunit 14C protein-coding 16 0.001907
-81786 TRIM7 tripartite motif containing 7 protein-coding 51 0.00608
-81788 NUAK2 NUAK family kinase 2 protein-coding 71 0.008464
-81789 TIGD6 tigger transposable element derived 6 protein-coding 38 0.00453
-81790 RNF170 ring finger protein 170 protein-coding 23 0.002742
-81792 ADAMTS12 ADAM metallopeptidase with thrombospondin type 1 motif 12 protein-coding 393 0.04685
-81793 TLR10 toll like receptor 10 protein-coding 101 0.01204
-81794 ADAMTS10 ADAM metallopeptidase with thrombospondin type 1 motif 10 protein-coding 127 0.01514
-81796 SLCO5A1 solute carrier organic anion transporter family member 5A1 protein-coding 182 0.0217
-81797 OR12D3 olfactory receptor family 12 subfamily D member 3 protein-coding 44 0.005246
-81831 NETO2 neuropilin and tolloid like 2 protein-coding 74 0.008822
-81832 NETO1 neuropilin and tolloid like 1 protein-coding 165 0.01967
-81833 SPACA1 sperm acrosome associated 1 protein-coding 60 0.007153
-81839 VANGL1 VANGL planar cell polarity protein 1 protein-coding 67 0.007988
-81844 TRIM56 tripartite motif containing 56 protein-coding 81 0.009657
-81846 SBF2 SET binding factor 2 protein-coding 165 0.01967
-81847 RNF146 ring finger protein 146 protein-coding 41 0.004888
-81848 SPRY4 sprouty RTK signaling antagonist 4 protein-coding 41 0.004888
-81849 ST6GALNAC5 ST6 N-acetylgalactosaminide alpha-2,6-sialyltransferase 5 protein-coding 77 0.00918
-81850 KRTAP1-3 keratin associated protein 1-3 protein-coding 23 0.002742
-81851 KRTAP1-1 keratin associated protein 1-1 protein-coding 14 0.001669
-81853 TMEM14B transmembrane protein 14B protein-coding 10 0.001192
-81855 SFXN3 sideroflexin 3 protein-coding 37 0.004411
-81856 ZNF611 zinc finger protein 611 protein-coding 114 0.01359
-81857 MED25 mediator complex subunit 25 protein-coding 88 0.01049
-81858 SHARPIN SHANK associated RH domain interactor protein-coding 28 0.003338
-81870 KRTAP9-9 keratin associated protein 9-9 protein-coding 19 0.002265
-81871 KRTAP4-6 keratin associated protein 4-6 protein-coding 52 0.006199
-81872 KRTAP2-1 keratin associated protein 2-1 protein-coding 3 0.0003577
-81873 ARPC5L actin related protein 2/3 complex subunit 5 like protein-coding 9 0.001073
-81875 ISG20L2 interferon stimulated exonuclease gene 20 like 2 protein-coding 44 0.005246
-81876 RAB1B RAB1B, member RAS oncogene family protein-coding 23 0.002742
-81887 LAS1L LAS1 like, ribosome biogenesis factor protein-coding 81 0.009657
-81888 HYI hydroxypyruvate isomerase (putative) protein-coding 14 0.001669
-81889 FAHD1 fumarylacetoacetate hydrolase domain containing 1 protein-coding 13 0.00155
-81890 QTRT1 queuine tRNA-ribosyltransferase catalytic subunit 1 protein-coding 51 0.00608
-81892 SLIRP SRA stem-loop interacting RNA binding protein protein-coding 10 0.001192
-81894 SLC25A28 solute carrier family 25 member 28 protein-coding 34 0.004053
-81926 ABHD17A abhydrolase domain containing 17A protein-coding 36 0.004292
-81928 CABLES2 Cdk5 and Abl enzyme substrate 2 protein-coding 33 0.003934
-81929 SEH1L SEH1 like nucleoporin protein-coding 39 0.004649
-81930 KIF18A kinesin family member 18A protein-coding 100 0.01192
-81931 ZNF93 zinc finger protein 93 protein-coding 84 0.01001
-81932 HDHD3 haloacid dehalogenase like hydrolase domain containing 3 protein-coding 22 0.002623
-83259 PCDH11Y protocadherin 11 Y-linked protein-coding 106 0.01264
-83394 PITPNM3 PITPNM family member 3 protein-coding 116 0.01383
-83401 ELOVL3 ELOVL fatty acid elongase 3 protein-coding 46 0.005484
-83416 FCRL5 Fc receptor like 5 protein-coding 197 0.02349
-83417 FCRL4 Fc receptor like 4 protein-coding 115 0.01371
-83439 TCF7L1 transcription factor 7 like 1 protein-coding 103 0.01228
-83440 ADPGK ADP dependent glucokinase protein-coding 33 0.003934
-83442 SH3BGRL3 SH3 domain binding glutamate rich protein like 3 protein-coding 8 0.0009537
-83443 SF3B5 splicing factor 3b subunit 5 protein-coding 11 0.001311
-83444 INO80B INO80 complex subunit B protein-coding 38 0.00453
-83445 GSG1 germ cell associated 1 protein-coding 40 0.004769
-83446 CCDC70 coiled-coil domain containing 70 protein-coding 43 0.005126
-83447 SLC25A31 solute carrier family 25 member 31 protein-coding 57 0.006795
-83448 PUS7L pseudouridylate synthase 7 like protein-coding 81 0.009657
-83449 PMFBP1 polyamine modulated factor 1 binding protein 1 protein-coding 134 0.01598
-83450 DRC3 dynein regulatory complex subunit 3 protein-coding 45 0.005365
-83451 ABHD11 abhydrolase domain containing 11 protein-coding 34 0.004053
-83452 RAB33B RAB33B, member RAS oncogene family protein-coding 170 0.02027
-83460 EMC6 ER membrane protein complex subunit 6 protein-coding 3 0.0003577
-83461 CDCA3 cell division cycle associated 3 protein-coding 17 0.002027
-83463 MXD3 MAX dimerization protein 3 protein-coding 25 0.00298
-83464 APH1B aph-1 homolog B, gamma-secretase subunit protein-coding 20 0.002384
-83468 GLT8D2 glycosyltransferase 8 domain containing 2 protein-coding 46 0.005484
-83473 KATNAL2 katanin catalytic subunit A1 like 2 protein-coding 72 0.008584
-83475 DOHH deoxyhypusine hydroxylase protein-coding 17 0.002027
-83478 ARHGAP24 Rho GTPase activating protein 24 protein-coding 97 0.01156
-83479 DDX59 DEAD-box helicase 59 protein-coding 74 0.008822
-83480 PUS3 pseudouridylate synthase 3 protein-coding 52 0.006199
-83481 EPPK1 epiplakin 1 protein-coding 262 0.03124
-83482 SCRT1 scratch family transcriptional repressor 1 protein-coding 28 0.003338
-83483 PLVAP plasmalemma vesicle associated protein protein-coding 87 0.01037
-83538 TTC25 tetratricopeptide repeat domain 25 protein-coding 63 0.007511
-83539 CHST9 carbohydrate sulfotransferase 9 protein-coding 65 0.007749
-83540 NUF2 NUF2, NDC80 kinetochore complex component protein-coding 70 0.008345
-83541 FAM110A family with sequence similarity 110 member A protein-coding 99 0.0118
-83543 AIF1L allograft inflammatory factor 1 like protein-coding 13 0.00155
-83544 DNAL1 dynein axonemal light chain 1 protein-coding 23 0.002742
-83546 RTBDN retbindin protein-coding 25 0.00298
-83547 RILP Rab interacting lysosomal protein protein-coding 22 0.002623
-83548 COG3 component of oligomeric golgi complex 3 protein-coding 68 0.008107
-83549 UCK1 uridine-cytidine kinase 1 protein-coding 35 0.004173
-83550 GPR101 G protein-coupled receptor 101 protein-coding 112 0.01335
-83551 TAAR8 trace amine associated receptor 8 protein-coding 47 0.005603
-83552 MFRP membrane frizzled-related protein protein-coding 107 0.01276
-83590 TMUB1 transmembrane and ubiquitin like domain containing 1 protein-coding 17 0.002027
-83591 THAP2 THAP domain containing 2 protein-coding 20 0.002384
-83592 AKR1E2 aldo-keto reductase family 1 member E2 protein-coding 41 0.004888
-83593 RASSF5 Ras association domain family member 5 protein-coding 60 0.007153
-83594 NUDT12 nudix hydrolase 12 protein-coding 59 0.007034
-83595 SOX7 SRY-box 7 protein-coding 99 0.0118
-83596 BCL2L12 BCL2 like 12 protein-coding 21 0.002504
-83597 RTP3 receptor transporter protein 3 protein-coding 31 0.003696
-83604 TMEM47 transmembrane protein 47 protein-coding 33 0.003934
-83605 CCM2 CCM2 scaffold protein protein-coding 81 0.009657
-83606 GUCD1 guanylyl cyclase domain containing 1 protein-coding 28 0.003338
-83607 AMMECR1L AMMECR1 like protein-coding 43 0.005126
-83608 C18orf21 chromosome 18 open reading frame 21 protein-coding 21 0.002504
-83636 C19orf12 chromosome 19 open reading frame 12 protein-coding 27 0.003219
-83637 ZMIZ2 zinc finger MIZ-type containing 2 protein-coding 101 0.01204
-83638 C11orf68 chromosome 11 open reading frame 68 protein-coding 18 0.002146
-83639 TEX101 testis expressed 101 protein-coding 39 0.004649
-83640 RAMMET RNMT activating mRNA cap methyltransferase subunit protein-coding 11 0.001311
-83641 FAM107B family with sequence similarity 107 member B protein-coding 60 0.007153
-83642 SELENOO selenoprotein O protein-coding 53 0.006319
-83643 CCDC3 coiled-coil domain containing 3 protein-coding 43 0.005126
-83648 FAM167A family with sequence similarity 167 member A protein-coding 35 0.004173
-83650 SLC35G5 solute carrier family 35 member G5 protein-coding 57 0.006795
-83656 FAM167A-AS1 FAM167A antisense RNA 1 ncRNA 8 0.0009537
-83657 DYNLRB2 dynein light chain roadblock-type 2 protein-coding 16 0.001907
-83658 DYNLRB1 dynein light chain roadblock-type 1 protein-coding 17 0.002027
-83659 TEKT1 tektin 1 protein-coding 70 0.008345
-83660 TLN2 talin 2 protein-coding 246 0.02933
-83661 MS4A8 membrane spanning 4-domains A8 protein-coding 49 0.005842
-83666 PARP9 poly(ADP-ribose) polymerase family member 9 protein-coding 91 0.01085
-83667 SESN2 sestrin 2 protein-coding 60 0.007153
-83690 CRISPLD1 cysteine rich secretory protein LCCL domain containing 1 protein-coding 117 0.01395
-83692 CD99L2 CD99 molecule like 2 protein-coding 45 0.005365
-83693 HSDL1 hydroxysteroid dehydrogenase like 1 protein-coding 34 0.004053
-83694 RPS6KL1 ribosomal protein S6 kinase like 1 protein-coding 53 0.006319
-83695 RHNO1 RAD9-HUS1-RAD1 interacting nuclear orphan 1 protein-coding 24 0.002861
-83696 TRAPPC9 trafficking protein particle complex 9 protein-coding 140 0.01669
-83697 SLC4A9 solute carrier family 4 member 9 protein-coding 84 0.01001
-83698 CALN1 calneuron 1 protein-coding 84 0.01001
-83699 SH3BGRL2 SH3 domain binding glutamate rich protein like 2 protein-coding 16 0.001907
-83700 JAM3 junctional adhesion molecule 3 protein-coding 54 0.006438
-83706 FERMT3 fermitin family member 3 protein-coding 84 0.01001
-83707 TRPT1 tRNA phosphotransferase 1 protein-coding 17 0.002027
-83714 NRIP2 nuclear receptor interacting protein 2 protein-coding 35 0.004173
-83715 ESPN espin protein-coding 59 0.007034
-83716 CRISPLD2 cysteine rich secretory protein LCCL domain containing 2 protein-coding 46 0.005484
-83719 YPEL3 yippee like 3 protein-coding 9 0.001073
-83723 FAM57B family with sequence similarity 57 member B protein-coding 33 0.003934
-83729 INHBE inhibin beta E subunit protein-coding 42 0.005007
-83732 RIOK1 RIO kinase 1 protein-coding 60 0.007153
-83733 SLC25A18 solute carrier family 25 member 18 protein-coding 39 0.004649
-83734 ATG10 autophagy related 10 protein-coding 33 0.003934
-83737 ITCH itchy E3 ubiquitin protein ligase protein-coding 102 0.01216
-83741 TFAP2D transcription factor AP-2 delta protein-coding 139 0.01657
-83742 MARVELD1 MARVEL domain containing 1 protein-coding 1 0.0001192
-83743 GRWD1 glutamate rich WD repeat containing 1 protein-coding 32 0.003815
-83744 ZNF484 zinc finger protein 484 protein-coding 96 0.01144
-83746 L3MBTL2 L3MBTL2, polycomb repressive complex 1 subunit protein-coding 70 0.008345
-83752 LONP2 lon peptidase 2, peroxisomal protein-coding 94 0.01121
-83755 KRTAP4-12 keratin associated protein 4-12 protein-coding 29 0.003457
-83756 TAS1R3 taste 1 receptor member 3 protein-coding 96 0.01144
-83758 RBP5 retinol binding protein 5 protein-coding 16 0.001907
-83759 RBM4B RNA binding motif protein 4B protein-coding 45 0.005365
-83786 FRMD8 FERM domain containing 8 protein-coding 54 0.006438
-83787 ARMC10 armadillo repeat containing 10 protein-coding 36 0.004292
-83795 KCNK16 potassium two pore domain channel subfamily K member 16 protein-coding 48 0.005722
-83844 USP26 ubiquitin specific peptidase 26 protein-coding 155 0.01848
-83849 SYT15 synaptotagmin 15 protein-coding 80 0.009537
-83850 ESYT3 extended synaptotagmin 3 protein-coding 105 0.01252
-83851 SYT16 synaptotagmin 16 protein-coding 133 0.01586
-83852 SETDB2 SET domain bifurcated 2 protein-coding 71 0.008464
-83853 ROPN1L rhophilin associated tail protein 1 like protein-coding 35 0.004173
-83854 ANGPTL6 angiopoietin like 6 protein-coding 38 0.00453
-83855 KLF16 Kruppel like factor 16 protein-coding 13 0.00155
-83856 FSD1L fibronectin type III and SPRY domain containing 1 like protein-coding 37 0.004411
-83857 TMTC1 transmembrane and tetratricopeptide repeat containing 1 protein-coding 144 0.01717
-83858 ATAD3B ATPase family, AAA domain containing 3B protein-coding 71 0.008464
-83860 TAF3 TATA-box binding protein associated factor 3 protein-coding 126 0.01502
-83861 RSPH3 radial spoke head 3 homolog protein-coding 60 0.007153
-83863 TTTY5 testis-specific transcript, Y-linked 5 (non-protein coding) ncRNA 1 0.0001192
-83866 TTTY11 testis-specific transcript, Y-linked 11 (non-protein coding) ncRNA 4 0.0004769
-83871 RAB34 RAB34, member RAS oncogene family protein-coding 51 0.00608
-83872 HMCN1 hemicentin 1 protein-coding 665 0.07928
-83873 GPR61 G protein-coupled receptor 61 protein-coding 60 0.007153
-83874 TBC1D10A TBC1 domain family member 10A protein-coding 71 0.008464
-83875 BCO2 beta-carotene oxygenase 2 protein-coding 73 0.008703
-83876 MRO maestro protein-coding 38 0.00453
-83877 TM2D2 TM2 domain containing 2 protein-coding 21 0.002504
-83878 USHBP1 USH1 protein network component harmonin binding protein 1 protein-coding 85 0.01013
-83879 CDCA7 cell division cycle associated 7 protein-coding 59 0.007034
-83881 MIXL1 Mix paired-like homeobox protein-coding 19 0.002265
-83882 TSPAN10 tetraspanin 10 protein-coding 38 0.00453
-83884 SLC25A2 solute carrier family 25 member 2 protein-coding 128 0.01526
-83886 PRSS27 serine protease 27 protein-coding 17 0.002027
-83887 TTLL2 tubulin tyrosine ligase like 2 protein-coding 81 0.009657
-83888 FGFBP2 fibroblast growth factor binding protein 2 protein-coding 26 0.0031
-83889 WDR87 WD repeat domain 87 protein-coding 176 0.02098
-83890 SPATA9 spermatogenesis associated 9 protein-coding 42 0.005007
-83891 SNX25 sorting nexin 25 protein-coding 97 0.01156
-83892 KCTD10 potassium channel tetramerization domain containing 10 protein-coding 58 0.006915
-83893 SPATA16 spermatogenesis associated 16 protein-coding 117 0.01395
-83894 TTC29 tetratricopeptide repeat domain 29 protein-coding 89 0.01061
-83895 KRTAP1-5 keratin associated protein 1-5 protein-coding 28 0.003338
-83896 KRTAP3-1 keratin associated protein 3-1 protein-coding 9 0.001073
-83897 KRTAP3-2 keratin associated protein 3-2 protein-coding 12 0.001431
-83899 KRTAP9-2 keratin associated protein 9-2 protein-coding 31 0.003696
-83900 KRTAP9-3 keratin associated protein 9-3 protein-coding 28 0.003338
-83901 KRTAP9-8 keratin associated protein 9-8 protein-coding 23 0.002742
-83902 KRTAP17-1 keratin associated protein 17-1 protein-coding 17 0.002027
-83903 HASPIN histone H3 associated protein kinase protein-coding 67 0.007988
-83930 STARD3NL STARD3 N-terminal like protein-coding 28 0.003338
-83931 STK40 serine/threonine kinase 40 protein-coding 46 0.005484
-83932 SPRTN SprT-like N-terminal domain protein-coding 72 0.008584
-83933 HDAC10 histone deacetylase 10 protein-coding 53 0.006319
-83937 RASSF4 Ras association domain family member 4 protein-coding 43 0.005126
-83938 LRMDA leucine rich melanocyte differentiation associated protein-coding 30 0.003577
-83939 EIF2A eukaryotic translation initiation factor 2A protein-coding 58 0.006915
-83940 TATDN1 TatD DNase domain containing 1 protein-coding 28 0.003338
-83941 TM2D1 TM2 domain containing 1 protein-coding 33 0.003934
-83942 TSSK1B testis specific serine kinase 1B protein-coding 76 0.009061
-83943 IMMP2L inner mitochondrial membrane peptidase subunit 2 protein-coding 33 0.003934
-83953 FCAMR Fc fragment of IgA and IgM receptor protein-coding 58 0.006915
-83955 NACAP1 nascent polypeptide associated complex alpha subunit pseudogene 1 pseudo 48 0.005722
-83959 SLC4A11 solute carrier family 4 member 11 protein-coding 138 0.01645
-83982 IFI27L2 interferon alpha inducible protein 27 like 2 protein-coding 22 0.002623
-83983 TSSK6 testis specific serine kinase 6 protein-coding 57 0.006795
-83985 SPNS1 sphingolipid transporter 1 (putative) protein-coding 91 0.01085
-83986 FAM234A family with sequence similarity 234 member A protein-coding 54 0.006438
-83987 CCDC8 coiled-coil domain containing 8 protein-coding 75 0.008941
-83988 NCALD neurocalcin delta protein-coding 31 0.003696
-83989 FAM172A family with sequence similarity 172 member A protein-coding 57 0.006795
-83990 BRIP1 BRCA1 interacting protein C-terminal helicase 1 protein-coding 216 0.02575
-83992 CTTNBP2 cortactin binding protein 2 protein-coding 219 0.02611
-83998 REG4 regenerating family member 4 protein-coding 20 0.002384
-83999 KREMEN1 kringle containing transmembrane protein 1 protein-coding 63 0.007511
-84000 TMPRSS13 transmembrane serine protease 13 protein-coding 55 0.006557
-84002 B3GNT5 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 5 protein-coding 53 0.006319
-84033 OBSCN obscurin, cytoskeletal calmodulin and titin-interacting RhoGEF protein-coding 746 0.08894
-84034 EMILIN2 elastin microfibril interfacer 2 protein-coding 122 0.01454
-84056 KATNAL1 katanin catalytic subunit A1 like 1 protein-coding 57 0.006795
-84057 MND1 meiotic nuclear divisions 1 protein-coding 35 0.004173
-84058 WDR54 WD repeat domain 54 protein-coding 34 0.004053
-84059 ADGRV1 adhesion G protein-coupled receptor V1 protein-coding 609 0.0726
-84060 RBM48 RNA binding motif protein 48 protein-coding 54 0.006438
-84061 MAGT1 magnesium transporter 1 protein-coding 63 0.007511
-84062 DTNBP1 dystrobrevin binding protein 1 protein-coding 40 0.004769
-84063 KIRREL2 kirre like nephrin family adhesion molecule 2 protein-coding 132 0.01574
-84064 HDHD2 haloacid dehalogenase like hydrolase domain containing 2 protein-coding 19 0.002265
-84065 TMEM222 transmembrane protein 222 protein-coding 19 0.002265
-84066 TEX35 testis expressed 35 protein-coding 50 0.005961
-84067 FAM160A2 family with sequence similarity 160 member A2 protein-coding 115 0.01371
-84068 SLC10A7 solute carrier family 10 member 7 protein-coding 45 0.005365
-84069 PLEKHN1 pleckstrin homology domain containing N1 protein-coding 55 0.006557
-84070 FAM186B family with sequence similarity 186 member B protein-coding 78 0.009299
-84071 ARMC2 armadillo repeat containing 2 protein-coding 67 0.007988
-84072 HORMAD1 HORMA domain containing 1 protein-coding 81 0.009657
-84073 MYCBPAP MYCBP associated protein protein-coding 109 0.01299
-84074 QRICH2 glutamine rich 2 protein-coding 137 0.01633
-84075 FSCB fibrous sheath CABYR binding protein protein-coding 203 0.0242
-84076 TKTL2 transketolase like 2 protein-coding 149 0.01776
-84077 C3orf20 chromosome 3 open reading frame 20 protein-coding 123 0.01466
-84078 KBTBD7 kelch repeat and BTB domain containing 7 protein-coding 86 0.01025
-84079 ANKRD27 ankyrin repeat domain 27 protein-coding 120 0.01431
-84080 ENKD1 enkurin domain containing 1 protein-coding 36 0.004292
-84081 NSRP1 nuclear speckle splicing regulatory protein 1 protein-coding 56 0.006676
-84083 ZRANB3 zinc finger RANBP2-type containing 3 protein-coding 124 0.01478
-84084 RAB6C RAB6C, member RAS oncogene family protein-coding 39 0.004649
-84085 FBXO30 F-box protein 30 protein-coding 75 0.008941
-84100 ARL6 ADP ribosylation factor like GTPase 6 protein-coding 28 0.003338
-84101 USP44 ubiquitin specific peptidase 44 protein-coding 73 0.008703
-84102 SLC41A2 solute carrier family 41 member 2 protein-coding 49 0.005842
-84103 C4orf17 chromosome 4 open reading frame 17 protein-coding 44 0.005246
-84105 PCBD2 pterin-4 alpha-carbinolamine dehydratase 2 protein-coding 12 0.001431
-84106 PRAM1 PML-RARA regulated adaptor molecule 1 protein-coding 101 0.01204
-84107 ZIC4 Zic family member 4 protein-coding 157 0.01872
-84108 PCGF6 polycomb group ring finger 6 protein-coding 29 0.003457
-84109 QRFPR pyroglutamylated RFamide peptide receptor protein-coding 79 0.009418
-84124 ZNF394 zinc finger protein 394 protein-coding 71 0.008464
-84125 LRRIQ1 leucine rich repeats and IQ motif containing 1 protein-coding 304 0.03624
-84126 ATRIP ATR interacting protein protein-coding 70 0.008345
-84128 WDR75 WD repeat domain 75 protein-coding 57 0.006795
-84129 ACAD11 acyl-CoA dehydrogenase family member 11 protein-coding 94 0.01121
-84131 CEP78 centrosomal protein 78 protein-coding 79 0.009418
-84132 USP42 ubiquitin specific peptidase 42 protein-coding 106 0.01264
-84133 ZNRF3 zinc and ring finger 3 protein-coding 96 0.01144
-84134 TOMM40L translocase of outer mitochondrial membrane 40 like protein-coding 24 0.002861
-84135 UTP15 UTP15, small subunit processome component protein-coding 45 0.005365
-84138 SLC7A6OS solute carrier family 7 member 6 opposite strand protein-coding 20 0.002384
-84140 FAM161A family with sequence similarity 161 member A protein-coding 90 0.01073
-84141 EVA1A eva-1 homolog A, regulator of programmed cell death protein-coding 34 0.004053
-84142 ABRAXAS1 abraxas 1, BRCA1 A complex subunit protein-coding 43 0.005126
-84144 SYDE2 synapse defective Rho GTPase homolog 2 protein-coding 99 0.0118
-84146 ZNF644 zinc finger protein 644 protein-coding 135 0.01609
-84148 KAT8 lysine acetyltransferase 8 protein-coding 63 0.007511
-84152 PPP1R1B protein phosphatase 1 regulatory inhibitor subunit 1B protein-coding 28 0.003338
-84153 RNASEH2C ribonuclease H2 subunit C protein-coding 9 0.001073
-84154 RPF2 ribosome production factor 2 homolog protein-coding 36 0.004292
-84159 ARID5B AT-rich interaction domain 5B protein-coding 161 0.01919
-84162 KIAA1109 KIAA1109 protein-coding 424 0.05055
-84163 GTF2IRD2 GTF2I repeat domain containing 2 protein-coding 62 0.007392
-84164 ASCC2 activating signal cointegrator 1 complex subunit 2 protein-coding 85 0.01013
-84166 NLRC5 NLR family CARD domain containing 5 protein-coding 212 0.02527
-84167 C19orf44 chromosome 19 open reading frame 44 protein-coding 83 0.009895
-84168 ANTXR1 anthrax toxin receptor 1 protein-coding 333 0.0397
-84171 LOXL4 lysyl oxidase like 4 protein-coding 73 0.008703
-84172 POLR1B RNA polymerase I subunit B protein-coding 123 0.01466
-84173 ELMOD3 ELMO domain containing 3 protein-coding 64 0.00763
-84174 SLA2 Src like adaptor 2 protein-coding 105 0.01252
-84179 SLC49A3 solute carrier family 49 member 3 protein-coding 52 0.006199
-84181 CHD6 chromodomain helicase DNA binding protein 6 protein-coding 494 0.05889
-84182 MINDY4 MINDY lysine 48 deubiquitinase 4 protein-coding 87 0.01037
-84186 ZCCHC7 zinc finger CCHC-type containing 7 protein-coding 62 0.007392
-84187 TMEM164 transmembrane protein 164 protein-coding 32 0.003815
-84188 FAR1 fatty acyl-CoA reductase 1 protein-coding 66 0.007868
-84189 SLITRK6 SLIT and NTRK like family member 6 protein-coding 176 0.02098
-84190 METTL25 methyltransferase like 25 protein-coding 77 0.00918
-84191 FAM96A family with sequence similarity 96 member A protein-coding 27 0.003219
-84193 SETD3 SET domain containing 3 protein-coding 63 0.007511
-84196 USP48 ubiquitin specific peptidase 48 protein-coding 243 0.02897
-84197 POMK protein-O-mannose kinase protein-coding 37 0.004411
-84203 TXNDC2 thioredoxin domain containing 2 protein-coding 80 0.009537
-84206 MEX3B mex-3 RNA binding family member B protein-coding 83 0.009895
-84210 ANKRD20A1 ankyrin repeat domain 20 family member A1 protein-coding 44 0.005246
-84215 ZNF541 zinc finger protein 541 protein-coding 80 0.009537
-84216 TMEM117 transmembrane protein 117 protein-coding 75 0.008941
-84217 ZMYND12 zinc finger MYND-type containing 12 protein-coding 53 0.006319
-84218 TBC1D3F TBC1 domain family member 3F protein-coding 13 0.00155
-84219 WDR24 WD repeat domain 24 protein-coding 69 0.008226
-84221 SPATC1L spermatogenesis and centriole associated 1 like protein-coding 29 0.003457
-84222 TMEM191A transmembrane protein 191A (pseudogene) pseudo 27 0.003219
-84223 IQCG IQ motif containing G protein-coding 78 0.009299
-84224 NBPF3 NBPF member 3 protein-coding 56 0.006676
-84225 ZMYND15 zinc finger MYND-type containing 15 protein-coding 73 0.008703
-84226 C2orf16 chromosome 2 open reading frame 16 protein-coding 213 0.02539
-84229 DRC7 dynein regulatory complex subunit 7 protein-coding 125 0.0149
-84230 LRRC8C leucine rich repeat containing 8 VRAC subunit C protein-coding 85 0.01013
-84231 TRAF7 TNF receptor associated factor 7 protein-coding 69 0.008226
-84232 MAF1 MAF1 homolog, negative regulator of RNA polymerase III protein-coding 25 0.00298
-84233 TMEM126A transmembrane protein 126A protein-coding 18 0.002146
-84236 RHBDD1 rhomboid domain containing 1 protein-coding 40 0.004769
-84239 ATP13A4 ATPase 13A4 protein-coding 155 0.01848
-84240 ZCCHC9 zinc finger CCHC-type containing 9 protein-coding 32 0.003815
-84243 ZDHHC18 zinc finger DHHC-type containing 18 protein-coding 32 0.003815
-84245 MRI1 methylthioribose-1-phosphate isomerase 1 protein-coding 36 0.004292
-84246 MED10 mediator complex subunit 10 protein-coding 16 0.001907
-84247 RTL6 retrotransposon Gag like 6 protein-coding 29 0.003457
-84248 FYTTD1 forty-two-three domain containing 1 protein-coding 39 0.004649
-84249 PSD2 pleckstrin and Sec7 domain containing 2 protein-coding 123 0.01466
-84250 SLF1 SMC5-SMC6 complex localization factor 1 protein-coding 86 0.01025
-84251 SGIP1 SH3 domain GRB2 like endophilin interacting protein 1 protein-coding 169 0.02015
-84253 GARNL3 GTPase activating Rap/RanGAP domain like 3 protein-coding 99 0.0118
-84254 CAMKK1 calcium/calmodulin dependent protein kinase kinase 1 protein-coding 69 0.008226
-84255 SLC37A3 solute carrier family 37 member 3 protein-coding 52 0.006199
-84256 FLYWCH1 FLYWCH-type zinc finger 1 protein-coding 60 0.007153
-84258 SYT3 synaptotagmin 3 protein-coding 98 0.01168
-84259 DCUN1D5 defective in cullin neddylation 1 domain containing 5 protein-coding 22 0.002623
-84260 TCHP trichoplein keratin filament binding protein-coding 65 0.007749
-84261 FBXW9 F-box and WD repeat domain containing 9 protein-coding 38 0.00453
-84262 PSMG3 proteasome assembly chaperone 3 protein-coding 16 0.001907
-84263 HSDL2 hydroxysteroid dehydrogenase like 2 protein-coding 44 0.005246
-84264 HAGHL hydroxyacylglutathione hydrolase like protein-coding 16 0.001907
-84265 POLR3GL RNA polymerase III subunit G like protein-coding 21 0.002504
-84266 ALKBH7 alkB homolog 7 protein-coding 17 0.002027
-84267 C9orf64 chromosome 9 open reading frame 64 protein-coding 34 0.004053
-84268 RPAIN RPA interacting protein protein-coding 26 0.0031
-84269 CHCHD5 coiled-coil-helix-coiled-coil-helix domain containing 5 protein-coding 14 0.001669
-84270 CARD19 caspase recruitment domain family member 19 protein-coding 18 0.002146
-84271 POLDIP3 DNA polymerase delta interacting protein 3 protein-coding 41 0.004888
-84272 YIPF4 Yip1 domain family member 4 protein-coding 30 0.003577
-84273 NOA1 nitric oxide associated 1 protein-coding 62 0.007392
-84274 COQ5 coenzyme Q5, methyltransferase protein-coding 44 0.005246
-84275 SLC25A33 solute carrier family 25 member 33 protein-coding 29 0.003457
-84276 NICN1 nicolin 1 protein-coding 18 0.002146
-84277 DNAJC30 DnaJ heat shock protein family (Hsp40) member C30 protein-coding 16 0.001907
-84278 MFSD14C major facilitator superfamily domain containing 14C protein-coding 14 0.001669
-84279 PRADC1 protease associated domain containing 1 protein-coding 24 0.002861
-84280 BTBD10 BTB domain containing 10 protein-coding 56 0.006676
-84281 C2orf88 chromosome 2 open reading frame 88 protein-coding 12 0.001431
-84282 RNF135 ring finger protein 135 protein-coding 32 0.003815
-84283 TMEM79 transmembrane protein 79 protein-coding 48 0.005722
-84284 NTPCR nucleoside-triphosphatase, cancer-related protein-coding 22 0.002623
-84285 EIF1AD eukaryotic translation initiation factor 1A domain containing protein-coding 15 0.001788
-84286 TMEM175 transmembrane protein 175 protein-coding 64 0.00763
-84287 ZDHHC16 zinc finger DHHC-type containing 16 protein-coding 54 0.006438
-84288 EFCAB2 EF-hand calcium binding domain 2 protein-coding 20 0.002384
-84289 ING5 inhibitor of growth family member 5 protein-coding 32 0.003815
-84290 CAPNS2 calpain small subunit 2 protein-coding 20 0.002384
-84292 WDR83 WD repeat domain 83 protein-coding 26 0.0031
-84293 FAM213A family with sequence similarity 213 member A protein-coding 39 0.004649
-84294 UTP23 UTP23, small subunit processome component protein-coding 35 0.004173
-84295 PHF6 PHD finger protein 6 protein-coding 50 0.005961
-84296 GINS4 GINS complex subunit 4 protein-coding 29 0.003457
-84298 LLPH LLP homolog, long-term synaptic facilitation protein-coding 15 0.001788
-84299 MIEN1 migration and invasion enhancer 1 protein-coding 18 0.002146
-84300 UQCC2 ubiquinol-cytochrome c reductase complex assembly factor 2 protein-coding 9 0.001073
-84301 DDI2 DNA damage inducible 1 homolog 2 protein-coding 43 0.005126
-84302 TMEM246 transmembrane protein 246 protein-coding 71 0.008464
-84303 CHCHD6 coiled-coil-helix-coiled-coil-helix domain containing 6 protein-coding 30 0.003577
-84304 NUDT22 nudix hydrolase 22 protein-coding 23 0.002742
-84305 PYM1 PYM homolog 1, exon junction complex associated factor protein-coding 22 0.002623
-84306 PDCD2L programmed cell death 2 like protein-coding 23 0.002742
-84307 ZNF397 zinc finger protein 397 protein-coding 45 0.005365
-84309 NUDT16L1 nudix hydrolase 16 like 1 protein-coding 21 0.002504
-84310 C7orf50 chromosome 7 open reading frame 50 protein-coding 37 0.004411
-84311 MRPL45 mitochondrial ribosomal protein L45 protein-coding 31 0.003696
-84312 BRMS1L breast cancer metastasis-suppressor 1 like protein-coding 82 0.009776
-84313 VPS25 vacuolar protein sorting 25 homolog protein-coding 15 0.001788
-84314 TMEM107 transmembrane protein 107 protein-coding 18 0.002146
-84315 MON1A MON1 homolog A, secretory trafficking associated protein-coding 43 0.005126
-84316 NAA38 N(alpha)-acetyltransferase 38, NatC auxiliary subunit protein-coding 35 0.004173
-84317 CCDC115 coiled-coil domain containing 115 protein-coding 21 0.002504
-84318 CCDC77 coiled-coil domain containing 77 protein-coding 41 0.004888
-84319 CMSS1 cms1 ribosomal small subunit homolog (yeast) protein-coding 48 0.005722
-84320 ACBD6 acyl-CoA binding domain containing 6 protein-coding 22 0.002623
-84321 THOC3 THO complex 3 protein-coding 28 0.003338
-84324 SARNP SAP domain containing ribonucleoprotein protein-coding 30 0.003577
-84326 METTL26 methyltransferase like 26 protein-coding 4 0.0004769
+57057 TBX20 T-box 20 protein-coding 85 0.01012
+57060 PCBP4 poly(rC) binding protein 4 protein-coding 32 0.003811
+57062 DDX24 DEAD-box helicase 24 protein-coding 78 0.009289
+57082 KNL1 kinetochore scaffold 1 protein-coding 190 0.02263
+57084 SLC17A6 solute carrier family 17 member 6 protein-coding 165 0.01965
+57085 AGTRAP angiotensin II receptor associated protein protein-coding 20 0.002382
+57088 PLSCR4 phospholipid scramblase 4 protein-coding 62 0.007384
+57089 ENTPD7 ectonucleoside triphosphate diphosphohydrolase 7 protein-coding 77 0.00917
+57091 CASS4 Cas scaffold protein family member 4 protein-coding 142 0.01691
+57092 PCNP PEST proteolytic signal containing nuclear protein protein-coding 18 0.002144
+57093 TRIM49 tripartite motif containing 49 protein-coding 106 0.01262
+57094 CPA6 carboxypeptidase A6 protein-coding 75 0.008932
+57095 PITHD1 PITH domain containing 1 protein-coding 23 0.002739
+57096 RPGRIP1 RPGR interacting protein 1 protein-coding 141 0.01679
+57097 PARP11 poly(ADP-ribose) polymerase family member 11 protein-coding 47 0.005597
+57099 AVEN apoptosis and caspase activation inhibitor protein-coding 41 0.004883
+57101 ANO2 anoctamin 2 protein-coding 166 0.01977
+57102 C12orf4 chromosome 12 open reading frame 4 protein-coding 73 0.008694
+57103 TIGAR TP53 induced glycolysis regulatory phosphatase protein-coding 42 0.005002
+57104 PNPLA2 patatin like phospholipase domain containing 2 protein-coding 27 0.003215
+57105 CYSLTR2 cysteinyl leukotriene receptor 2 protein-coding 60 0.007145
+57106 NAT14 N-acetyltransferase 14 (putative) protein-coding 6 0.0007145
+57107 PDSS2 decaprenyl diphosphate synthase subunit 2 protein-coding 36 0.004287
+57109 REXO4 REX4 homolog, 3'-5' exonuclease protein-coding 35 0.004168
+57110 HRASLS HRAS like suppressor protein-coding 38 0.004525
+57111 RAB25 RAB25, member RAS oncogene family protein-coding 24 0.002858
+57113 TRPC7 transient receptor potential cation channel subfamily C member 7 protein-coding 164 0.01953
+57115 PGLYRP4 peptidoglycan recognition protein 4 protein-coding 65 0.007741
+57116 ZNF695 zinc finger protein 695 protein-coding 77 0.00917
+57117 INTS12 integrator complex subunit 12 protein-coding 49 0.005835
+57118 CAMK1D calcium/calmodulin dependent protein kinase ID protein-coding 69 0.008217
+57119 EPPIN epididymal peptidase inhibitor protein-coding 11 0.00131
+57120 GOPC golgi associated PDZ and coiled-coil motif containing protein-coding 44 0.00524
+57121 LPAR5 lysophosphatidic acid receptor 5 protein-coding 30 0.003573
+57122 NUP107 nucleoporin 107 protein-coding 111 0.01322
+57124 CD248 CD248 molecule protein-coding 78 0.009289
+57125 PLXDC1 plexin domain containing 1 protein-coding 53 0.006312
+57126 CD177 CD177 molecule protein-coding 19 0.002263
+57127 RHBG Rh family B glycoprotein (gene/pseudogene) protein-coding 57 0.006788
+57128 LYRM4 LYR motif containing 4 protein-coding 15 0.001786
+57129 MRPL47 mitochondrial ribosomal protein L47 protein-coding 46 0.005478
+57130 ATP13A1 ATPase 13A1 protein-coding 107 0.01274
+57132 CHMP1B charged multivesicular body protein 1B protein-coding 96 0.01143
+57134 MAN1C1 mannosidase alpha class 1C member 1 protein-coding 70 0.008336
+57136 APMAP adipocyte plasma membrane associated protein protein-coding 53 0.006312
+57139 RGL3 ral guanine nucleotide dissociation stimulator like 3 protein-coding 72 0.008574
+57140 RNPEPL1 arginyl aminopeptidase like 1 protein-coding 47 0.005597
+57142 RTN4 reticulon 4 protein-coding 114 0.01358
+57143 ADCK1 aarF domain containing kinase 1 protein-coding 67 0.007979
+57144 PAK5 p21 (RAC1) activated kinase 5 protein-coding 148 0.01763
+57146 TMEM159 transmembrane protein 159 protein-coding 21 0.002501
+57147 SCYL3 SCY1 like pseudokinase 3 protein-coding 67 0.007979
+57148 RALGAPB Ral GTPase activating protein non-catalytic beta subunit protein-coding 181 0.02156
+57149 LYRM1 LYR motif containing 1 protein-coding 10 0.001191
+57150 SMIM8 small integral membrane protein 8 protein-coding 13 0.001548
+57151 LYZL6 lysozyme like 6 protein-coding 25 0.002977
+57152 SLURP1 secreted LY6/PLAUR domain containing 1 protein-coding 13 0.001548
+57153 SLC44A2 solute carrier family 44 member 2 protein-coding 83 0.009884
+57154 SMURF1 SMAD specific E3 ubiquitin protein ligase 1 protein-coding 79 0.009408
+57156 TMEM63C transmembrane protein 63C protein-coding 94 0.01119
+57157 PHTF2 putative homeodomain transcription factor 2 protein-coding 85 0.01012
+57158 JPH2 junctophilin 2 protein-coding 106 0.01262
+57159 TRIM54 tripartite motif containing 54 protein-coding 56 0.006669
+57161 PELI2 pellino E3 ubiquitin protein ligase family member 2 protein-coding 68 0.008098
+57162 PELI1 pellino E3 ubiquitin protein ligase 1 protein-coding 39 0.004645
+57165 GJC2 gap junction protein gamma 2 protein-coding 29 0.003454
+57167 SALL4 spalt like transcription factor 4 protein-coding 173 0.0206
+57168 ASPHD2 aspartate beta-hydroxylase domain containing 2 protein-coding 54 0.006431
+57169 ZNFX1 zinc finger NFX1-type containing 1 protein-coding 180 0.02144
+57171 DOLPP1 dolichyldiphosphatase 1 protein-coding 19 0.002263
+57172 CAMK1G calcium/calmodulin dependent protein kinase IG protein-coding 56 0.006669
+57175 CORO1B coronin 1B protein-coding 40 0.004764
+57176 VARS2 valyl-tRNA synthetase 2, mitochondrial protein-coding 86 0.01024
+57178 ZMIZ1 zinc finger MIZ-type containing 1 protein-coding 133 0.01584
+57179 KIAA1191 KIAA1191 protein-coding 34 0.004049
+57180 ACTR3B ARP3 actin related protein 3 homolog B protein-coding 51 0.006074
+57181 SLC39A10 solute carrier family 39 member 10 protein-coding 96 0.01143
+57182 ANKRD50 ankyrin repeat domain 50 protein-coding 190 0.02263
+57184 FAM219B family with sequence similarity 219 member B protein-coding 8 0.0009527
+57185 NIPAL3 NIPA like domain containing 3 protein-coding 49 0.005835
+57186 RALGAPA2 Ral GTPase activating protein catalytic alpha subunit 2 protein-coding 170 0.02025
+57187 THOC2 THO complex 2 protein-coding 202 0.02406
+57188 ADAMTSL3 ADAMTS like 3 protein-coding 260 0.03096
+57189 KIAA1147 KIAA1147 protein-coding 40 0.004764
+57190 SELENON selenoprotein N protein-coding 50 0.005955
+57191 VN1R1 vomeronasal 1 receptor 1 protein-coding 53 0.006312
+57192 MCOLN1 mucolipin 1 protein-coding 81 0.009646
+57194 ATP10A ATPase phospholipid transporting 10A (putative) protein-coding 289 0.03442
+57198 ATP8B2 ATPase phospholipid transporting 8B2 protein-coding 151 0.01798
+57205 ATP10D ATPase phospholipid transporting 10D (putative) protein-coding 209 0.02489
+57209 ZNF248 zinc finger protein 248 protein-coding 89 0.0106
+57210 SLC45A4 solute carrier family 45 member 4 protein-coding 116 0.01381
+57211 ADGRG6 adhesion G protein-coupled receptor G6 protein-coding 114 0.01358
+57212 TP73-AS1 TP73 antisense RNA 1 ncRNA 34 0.004049
+57213 SPRYD7 SPRY domain containing 7 protein-coding 17 0.002025
+57214 CEMIP cell migration inducing hyaluronidase 1 protein-coding 150 0.01786
+57215 THAP11 THAP domain containing 11 protein-coding 26 0.003096
+57216 VANGL2 VANGL planar cell polarity protein 2 protein-coding 95 0.01131
+57217 TTC7A tetratricopeptide repeat domain 7A protein-coding 82 0.009765
+57221 ARFGEF3 ARFGEF family member 3 protein-coding 203 0.02418
+57222 ERGIC1 endoplasmic reticulum-golgi intermediate compartment 1 protein-coding 24 0.002858
+57223 PPP4R3B protein phosphatase 4 regulatory subunit 3B protein-coding 92 0.01096
+57224 NHSL1 NHS like 1 protein-coding 81 0.009646
+57226 LYRM2 LYR motif containing 2 protein-coding 5 0.0005955
+57228 SMAGP small cell adhesion glycoprotein protein-coding 10 0.001191
+57231 SNX14 sorting nexin 14 protein-coding 95 0.01131
+57232 ZNF630 zinc finger protein 630 protein-coding 79 0.009408
+57282 SLC4A10 solute carrier family 4 member 10 protein-coding 164 0.01953
+57291 DANCR differentiation antagonizing non-protein coding RNA ncRNA 1 0.0001191
+57326 PBXIP1 PBX homeobox interacting protein 1 protein-coding 73 0.008694
+57332 CBX8 chromobox 8 protein-coding 58 0.006907
+57333 RCN3 reticulocalbin 3 protein-coding 36 0.004287
+57335 ZNF286A zinc finger protein 286A protein-coding 61 0.007264
+57336 ZNF287 zinc finger protein 287 protein-coding 85 0.01012
+57337 SENP7 SUMO specific peptidase 7 protein-coding 135 0.01608
+57338 JPH3 junctophilin 3 protein-coding 116 0.01381
+57343 ZNF304 zinc finger protein 304 protein-coding 97 0.01155
+57348 TTYH1 tweety family member 1 protein-coding 70 0.008336
+57369 GJD2 gap junction protein delta 2 protein-coding 124 0.01477
+57379 AICDA activation induced cytidine deaminase protein-coding 52 0.006193
+57380 MRS2 MRS2, magnesium transporter protein-coding 42 0.005002
+57381 RHOJ ras homolog family member J protein-coding 31 0.003692
+57393 CLTRN collectrin, amino acid transport regulator protein-coding 23 0.002739
+57396 CLK4 CDC like kinase 4 protein-coding 61 0.007264
+57402 S100A14 S100 calcium binding protein A14 protein-coding 15 0.001786
+57403 RAB22A RAB22A, member RAS oncogene family protein-coding 24 0.002858
+57404 CYP20A1 cytochrome P450 family 20 subfamily A member 1 protein-coding 56 0.006669
+57405 SPC25 SPC25, NDC80 kinetochore complex component protein-coding 14 0.001667
+57406 ABHD6 abhydrolase domain containing 6 protein-coding 35 0.004168
+57407 NMRAL1 NmrA like redox sensor 1 protein-coding 26 0.003096
+57408 LRTM1 leucine rich repeats and transmembrane domains 1 protein-coding 62 0.007384
+57409 MIF4GD MIF4G domain containing protein-coding 33 0.00393
+57410 SCYL1 SCY1 like pseudokinase 1 protein-coding 70 0.008336
+57412 AS3MT arsenite methyltransferase protein-coding 31 0.003692
+57414 RHBDD2 rhomboid domain containing 2 protein-coding 44 0.00524
+57415 C3orf14 chromosome 3 open reading frame 14 protein-coding 27 0.003215
+57418 WDR18 WD repeat domain 18 protein-coding 35 0.004168
+57419 SLC24A3 solute carrier family 24 member 3 protein-coding 92 0.01096
+57446 NDRG3 NDRG family member 3 protein-coding 42 0.005002
+57447 NDRG2 NDRG family member 2 protein-coding 33 0.00393
+57448 BIRC6 baculoviral IAP repeat containing 6 protein-coding 421 0.05014
+57449 PLEKHG5 pleckstrin homology and RhoGEF domain containing G5 protein-coding 82 0.009765
+57451 TENM2 teneurin transmembrane protein 2 protein-coding 332 0.03954
+57452 GALNT16 polypeptide N-acetylgalactosaminyltransferase 16 protein-coding 56 0.006669
+57453 DSCAML1 DS cell adhesion molecule like 1 protein-coding 318 0.03787
+57455 REXO1 RNA exonuclease 1 homolog protein-coding 104 0.01239
+57456 KIAA1143 KIAA1143 protein-coding 17 0.002025
+57458 TMCC3 transmembrane and coiled-coil domain family 3 protein-coding 73 0.008694
+57459 GATAD2B GATA zinc finger domain containing 2B protein-coding 69 0.008217
+57460 PPM1H protein phosphatase, Mg2+/Mn2+ dependent 1H protein-coding 65 0.007741
+57461 ISY1 ISY1 splicing factor homolog protein-coding 31 0.003692
+57462 MYORG myogenesis regulating glycosidase (putative) protein-coding 76 0.009051
+57463 AMIGO1 adhesion molecule with Ig like domain 1 protein-coding 39 0.004645
+57464 STRIP2 striatin interacting protein 2 protein-coding 89 0.0106
+57465 TBC1D24 TBC1 domain family member 24 protein-coding 25 0.002977
+57466 SCAF4 SR-related CTD associated factor 4 protein-coding 208 0.02477
+57467 HHATL hedgehog acyltransferase like protein-coding 55 0.00655
+57468 SLC12A5 solute carrier family 12 member 5 protein-coding 200 0.02382
+57469 PNMA8B PNMA family member 8B protein-coding 75 0.008932
+57470 LRRC47 leucine rich repeat containing 47 protein-coding 57 0.006788
+57471 ERMN ermin protein-coding 51 0.006074
+57472 CNOT6 CCR4-NOT transcription complex subunit 6 protein-coding 102 0.01215
+57473 ZNF512B zinc finger protein 512B protein-coding 101 0.01203
+57474 ZNF490 zinc finger protein 490 protein-coding 70 0.008336
+57475 PLEKHH1 pleckstrin homology, MyTH4 and FERM domain containing H1 protein-coding 97 0.01155
+57476 GRAMD1B GRAM domain containing 1B protein-coding 111 0.01322
+57477 SHROOM4 shroom family member 4 protein-coding 164 0.01953
+57478 USP31 ubiquitin specific peptidase 31 protein-coding 141 0.01679
+57479 PRR12 proline rich 12 protein-coding 161 0.01917
+57480 PLEKHG1 pleckstrin homology and RhoGEF domain containing G1 protein-coding 145 0.01727
+57481 KIAA1210 KIAA1210 protein-coding 221 0.02632
+57482 KIAA1211 KIAA1211 protein-coding 216 0.02572
+57484 RNF150 ring finger protein 150 protein-coding 67 0.007979
+57486 NLN neurolysin protein-coding 70 0.008336
+57488 ESYT2 extended synaptotagmin 2 protein-coding 91 0.01084
+57489 ODF2L outer dense fiber of sperm tails 2 like protein-coding 69 0.008217
+57491 AHRR aryl-hydrocarbon receptor repressor protein-coding 101 0.01203
+57492 ARID1B AT-rich interaction domain 1B protein-coding 266 0.03168
+57493 HEG1 heart development protein with EGF like domains 1 protein-coding 135 0.01608
+57494 RIMKLB ribosomal modification protein rimK like family member B protein-coding 66 0.00786
+57495 NWD2 NACHT and WD repeat domain containing 2 protein-coding 94 0.01119
+57496 MKL2 MKL1/myocardin like 2 protein-coding 94 0.01119
+57497 LRFN2 leucine rich repeat and fibronectin type III domain containing 2 protein-coding 159 0.01894
+57498 KIDINS220 kinase D interacting substrate 220 protein-coding 202 0.02406
+57501 KIAA1257 KIAA1257 protein-coding 61 0.007264
+57502 NLGN4X neuroligin 4, X-linked protein-coding 218 0.02596
+57504 MTA3 metastasis associated 1 family member 3 protein-coding 47 0.005597
+57505 AARS2 alanyl-tRNA synthetase 2, mitochondrial protein-coding 112 0.01334
+57506 MAVS mitochondrial antiviral signaling protein protein-coding 51 0.006074
+57507 ZNF608 zinc finger protein 608 protein-coding 140 0.01667
+57508 INTS2 integrator complex subunit 2 protein-coding 117 0.01393
+57509 MTUS1 microtubule associated scaffold protein 1 protein-coding 125 0.01489
+57510 XPO5 exportin 5 protein-coding 98 0.01167
+57511 COG6 component of oligomeric golgi complex 6 protein-coding 73 0.008694
+57512 GPR158 G protein-coupled receptor 158 protein-coding 293 0.03489
+57513 CASKIN2 CASK interacting protein 2 protein-coding 105 0.0125
+57514 ARHGAP31 Rho GTPase activating protein 31 protein-coding 202 0.02406
+57515 SERINC1 serine incorporator 1 protein-coding 49 0.005835
+57519 STARD9 StAR related lipid transfer domain containing 9 protein-coding 74 0.008813
+57520 HECW2 HECT, C2 and WW domain containing E3 ubiquitin protein ligase 2 protein-coding 242 0.02882
+57521 RPTOR regulatory associated protein of MTOR complex 1 protein-coding 135 0.01608
+57522 SRGAP1 SLIT-ROBO Rho GTPase activating protein 1 protein-coding 167 0.01989
+57523 NYNRIN NYN domain and retroviral integrase containing protein-coding 195 0.02322
+57524 CASKIN1 CASK interacting protein 1 protein-coding 95 0.01131
+57526 PCDH19 protocadherin 19 protein-coding 212 0.02525
+57528 KCTD16 potassium channel tetramerization domain containing 16 protein-coding 94 0.01119
+57529 RTL9 retrotransposon Gag like 9 protein-coding 185 0.02203
+57530 CGN cingulin protein-coding 115 0.0137
+57531 HACE1 HECT domain and ankyrin repeat containing E3 ubiquitin protein ligase 1 protein-coding 109 0.01298
+57532 NUFIP2 NUFIP2, FMR1 interacting protein 2 protein-coding 64 0.007622
+57533 TBC1D14 TBC1 domain family member 14 protein-coding 78 0.009289
+57534 MIB1 mindbomb E3 ubiquitin protein ligase 1 protein-coding 104 0.01239
+57535 KIAA1324 KIAA1324 protein-coding 86 0.01024
+57536 KIAA1328 KIAA1328 protein-coding 70 0.008336
+57537 SORCS2 sortilin related VPS10 domain containing receptor 2 protein-coding 103 0.01227
+57538 ALPK3 alpha kinase 3 protein-coding 244 0.02906
+57539 WDR35 WD repeat domain 35 protein-coding 117 0.01393
+57540 DISP3 dispatched RND transporter family member 3 protein-coding 238 0.02834
+57541 ZNF398 zinc finger protein 398 protein-coding 70 0.008336
+57542 KLHL42 kelch like family member 42 protein-coding 44 0.00524
+57544 TXNDC16 thioredoxin domain containing 16 protein-coding 100 0.01191
+57545 CC2D2A coiled-coil and C2 domain containing 2A protein-coding 131 0.0156
+57546 PDP2 pyruvate dehyrogenase phosphatase catalytic subunit 2 protein-coding 39 0.004645
+57547 ZNF624 zinc finger protein 624 protein-coding 97 0.01155
+57549 IGSF9 immunoglobulin superfamily member 9 protein-coding 134 0.01596
+57551 TAOK1 TAO kinase 1 protein-coding 115 0.0137
+57552 NCEH1 neutral cholesterol ester hydrolase 1 protein-coding 49 0.005835
+57553 MICAL3 microtubule associated monooxygenase, calponin and LIM domain containing 3 protein-coding 193 0.02298
+57554 LRRC7 leucine rich repeat containing 7 protein-coding 369 0.04394
+57555 NLGN2 neuroligin 2 protein-coding 74 0.008813
+57556 SEMA6A semaphorin 6A protein-coding 129 0.01536
+57558 USP35 ubiquitin specific peptidase 35 protein-coding 101 0.01203
+57559 STAMBPL1 STAM binding protein like 1 protein-coding 61 0.007264
+57560 IFT80 intraflagellar transport 80 protein-coding 105 0.0125
+57561 ARRDC3 arrestin domain containing 3 protein-coding 56 0.006669
+57562 CEP126 centrosomal protein 126 protein-coding 146 0.01739
+57563 KLHL8 kelch like family member 8 protein-coding 64 0.007622
+57565 KLHL14 kelch like family member 14 protein-coding 108 0.01286
+57567 ZNF319 zinc finger protein 319 protein-coding 70 0.008336
+57568 SIPA1L2 signal induced proliferation associated 1 like 2 protein-coding 245 0.02918
+57569 ARHGAP20 Rho GTPase activating protein 20 protein-coding 141 0.01679
+57570 TRMT5 tRNA methyltransferase 5 protein-coding 47 0.005597
+57571 CARNS1 carnosine synthase 1 protein-coding 77 0.00917
+57572 DOCK6 dedicator of cytokinesis 6 protein-coding 165 0.01965
+57573 ZNF471 zinc finger protein 471 protein-coding 118 0.01405
+57574 MARCH4 membrane associated ring-CH-type finger 4 protein-coding 76 0.009051
+57575 PCDH10 protocadherin 10 protein-coding 510 0.06074
+57576 KIF17 kinesin family member 17 protein-coding 136 0.0162
+57577 CCDC191 coiled-coil domain containing 191 protein-coding 117 0.01393
+57578 UNC79 unc-79 homolog, NALCN channel complex subunit protein-coding 357 0.04252
+57579 FAM135A family with sequence similarity 135 member A protein-coding 143 0.01703
+57580 PREX1 phosphatidylinositol-3,4,5-trisphosphate dependent Rac exchange factor 1 protein-coding 223 0.02656
+57582 KCNT1 potassium sodium-activated channel subfamily T member 1 protein-coding 162 0.01929
+57583 TMEM181 transmembrane protein 181 protein-coding 52 0.006193
+57584 ARHGAP21 Rho GTPase activating protein 21 protein-coding 246 0.0293
+57585 CRAMP1 cramped chromatin regulator homolog 1 protein-coding 102 0.01215
+57586 SYT13 synaptotagmin 13 protein-coding 50 0.005955
+57587 CFAP97 cilia and flagella associated protein 97 protein-coding 56 0.006669
+57589 RIC1 RIC1 homolog, RAB6A GEF complex partner 1 protein-coding 122 0.01453
+57590 WDFY1 WD repeat and FYVE domain containing 1 protein-coding 44 0.00524
+57591 MKL1 megakaryoblastic leukemia (translocation) 1 protein-coding 123 0.01465
+57592 ZNF687 zinc finger protein 687 protein-coding 120 0.01429
+57593 EBF4 early B cell factor 4 protein-coding 38 0.004525
+57594 HOMEZ homeobox and leucine zipper encoding protein-coding 66 0.00786
+57595 PDZD4 PDZ domain containing 4 protein-coding 95 0.01131
+57596 BEGAIN brain enriched guanylate kinase associated protein-coding 50 0.005955
+57599 WDR48 WD repeat domain 48 protein-coding 56 0.006669
+57600 FNIP2 folliculin interacting protein 2 protein-coding 110 0.0131
+57602 USP36 ubiquitin specific peptidase 36 protein-coding 109 0.01298
+57604 TRMT9B tRNA methyltransferase 9B (putative) protein-coding 53 0.006312
+57605 PITPNM2 phosphatidylinositol transfer protein membrane associated 2 protein-coding 108 0.01286
+57606 SLAIN2 SLAIN motif family member 2 protein-coding 56 0.006669
+57608 JCAD junctional cadherin 5 associated protein-coding 184 0.02191
+57609 DIP2B disco interacting protein 2 homolog B protein-coding 159 0.01894
+57610 RANBP10 RAN binding protein 10 protein-coding 63 0.007503
+57611 ISLR2 immunoglobulin superfamily containing leucine rich repeat 2 protein-coding 91 0.01084
+57613 FAM234B family with sequence similarity 234 member B protein-coding 78 0.009289
+57614 KIAA1468 KIAA1468 protein-coding 101 0.01203
+57615 ZNF492 zinc finger protein 492 protein-coding 122 0.01453
+57616 TSHZ3 teashirt zinc finger homeobox 3 protein-coding 297 0.03537
+57617 VPS18 VPS18, CORVET/HOPS core subunit protein-coding 82 0.009765
+57619 SHROOM3 shroom family member 3 protein-coding 181 0.02156
+57620 STIM2 stromal interaction molecule 2 protein-coding 74 0.008813
+57621 ZBTB2 zinc finger and BTB domain containing 2 protein-coding 61 0.007264
+57622 LRFN1 leucine rich repeat and fibronectin type III domain containing 1 protein-coding 69 0.008217
+57623 ZFAT zinc finger and AT-hook domain containing protein-coding 175 0.02084
+57624 NYAP2 neuronal tyrosine-phosphorylated phosphoinositide-3-kinase adaptor 2 protein-coding 169 0.02013
+57626 KLHL1 kelch like family member 1 protein-coding 235 0.02799
+57628 DPP10 dipeptidyl peptidase like 10 protein-coding 242 0.02882
+57630 SH3RF1 SH3 domain containing ring finger 1 protein-coding 104 0.01239
+57631 LRCH2 leucine rich repeats and calponin homology domain containing 2 protein-coding 107 0.01274
+57633 LRRN1 leucine rich repeat neuronal 1 protein-coding 104 0.01239
+57634 EP400 E1A binding protein p400 protein-coding 282 0.03358
+57636 ARHGAP23 Rho GTPase activating protein 23 protein-coding 69 0.008217
+57639 CCDC146 coiled-coil domain containing 146 protein-coding 107 0.01274
+57642 COL20A1 collagen type XX alpha 1 chain protein-coding 186 0.02215
+57643 ZSWIM5 zinc finger SWIM-type containing 5 protein-coding 99 0.01179
+57644 MYH7B myosin heavy chain 7B protein-coding 384 0.04573
+57645 POGK pogo transposable element derived with KRAB domain protein-coding 69 0.008217
+57646 USP28 ubiquitin specific peptidase 28 protein-coding 162 0.01929
+57647 DHX37 DEAH-box helicase 37 protein-coding 130 0.01548
+57648 KIAA1522 KIAA1522 protein-coding 130 0.01548
+57649 PHF12 PHD finger protein 12 protein-coding 85 0.01012
+57650 CIP2A cell proliferation regulating inhibitor of protein phosphatase 2A protein-coding 102 0.01215
+57654 UVSSA UV stimulated scaffold protein A protein-coding 94 0.01119
+57655 GRAMD1A GRAM domain containing 1A protein-coding 74 0.008813
+57657 HCN3 hyperpolarization activated cyclic nucleotide gated potassium channel 3 protein-coding 84 0.01
+57658 CALCOCO1 calcium binding and coiled-coil domain 1 protein-coding 74 0.008813
+57659 ZBTB4 zinc finger and BTB domain containing 4 protein-coding 95 0.01131
+57661 PHRF1 PHD and ring finger domains 1 protein-coding 193 0.02298
+57662 CAMSAP3 calmodulin regulated spectrin associated protein family member 3 protein-coding 120 0.01429
+57663 USP29 ubiquitin specific peptidase 29 protein-coding 196 0.02334
+57664 PLEKHA4 pleckstrin homology domain containing A4 protein-coding 95 0.01131
+57665 RDH14 retinol dehydrogenase 14 protein-coding 129 0.01536
+57666 FBRSL1 fibrosin like 1 protein-coding 38 0.004525
+57669 EPB41L5 erythrocyte membrane protein band 4.1 like 5 protein-coding 98 0.01167
+57670 KIAA1549 KIAA1549 protein-coding 226 0.02691
+57673 BEND3 BEN domain containing 3 protein-coding 112 0.01334
+57674 RNF213 ring finger protein 213 protein-coding 370 0.04406
+57677 ZFP14 ZFP14 zinc finger protein protein-coding 83 0.009884
+57678 GPAM glycerol-3-phosphate acyltransferase, mitochondrial protein-coding 96 0.01143
+57679 ALS2 ALS2, alsin Rho guanine nucleotide exchange factor protein-coding 141 0.01679
+57680 CHD8 chromodomain helicase DNA binding protein 8 protein-coding 254 0.03025
+57683 ZDBF2 zinc finger DBF-type containing 2 protein-coding 297 0.03537
+57684 ZBTB26 zinc finger and BTB domain containing 26 protein-coding 44 0.00524
+57685 CACHD1 cache domain containing 1 protein-coding 140 0.01667
+57687 VAT1L vesicle amine transport 1 like protein-coding 80 0.009527
+57688 ZSWIM6 zinc finger SWIM-type containing 6 protein-coding 75 0.008932
+57689 LRRC4C leucine rich repeat containing 4C protein-coding 204 0.02429
+57690 TNRC6C trinucleotide repeat containing 6C protein-coding 135 0.01608
+57691 KIAA1586 KIAA1586 protein-coding 86 0.01024
+57692 MAGEE1 MAGE family member E1 protein-coding 163 0.01941
+57693 ZNF317 zinc finger protein 317 protein-coding 67 0.007979
+57695 USP37 ubiquitin specific peptidase 37 protein-coding 97 0.01155
+57696 DDX55 DEAD-box helicase 55 protein-coding 57 0.006788
+57697 FANCM Fanconi anemia complementation group M protein-coding 227 0.02703
+57698 SHTN1 shootin 1 protein-coding 64 0.007622
+57699 CPNE5 copine 5 protein-coding 64 0.007622
+57700 FAM160B1 family with sequence similarity 160 member B1 protein-coding 85 0.01012
+57701 NCKAP5L NCK associated protein 5 like protein-coding 136 0.0162
+57703 CWC22 CWC22 spliceosome associated protein homolog protein-coding 103 0.01227
+57704 GBA2 glucosylceramidase beta 2 protein-coding 76 0.009051
+57705 WDFY4 WDFY family member 4 protein-coding 201 0.02394
+57706 DENND1A DENN domain containing 1A protein-coding 93 0.01108
+57707 TLDC1 TBC/LysM-associated domain containing 1 protein-coding 42 0.005002
+57708 MIER1 MIER1 transcriptional regulator protein-coding 75 0.008932
+57709 SLC7A14 solute carrier family 7 member 14 protein-coding 121 0.01441
+57710 KIAA1614 KIAA1614 protein-coding 121 0.01441
+57711 ZNF529 zinc finger protein 529 protein-coding 66 0.00786
+57713 SFMBT2 Scm like with four mbt domains 2 protein-coding 168 0.02001
+57715 SEMA4G semaphorin 4G protein-coding 61 0.007264
+57716 PRX periaxin protein-coding 148 0.01763
+57717 PCDHB16 protocadherin beta 16 protein-coding 229 0.02727
+57718 PPP4R4 protein phosphatase 4 regulatory subunit 4 protein-coding 127 0.01512
+57719 ANO8 anoctamin 8 protein-coding 87 0.01036
+57720 GPR107 G protein-coupled receptor 107 protein-coding 57 0.006788
+57721 METTL14 methyltransferase like 14 protein-coding 60 0.007145
+57722 IGDCC4 immunoglobulin superfamily DCC subclass member 4 protein-coding 122 0.01453
+57724 EPG5 ectopic P-granules autophagy protein 5 homolog protein-coding 238 0.02834
+57727 NCOA5 nuclear receptor coactivator 5 protein-coding 82 0.009765
+57728 WDR19 WD repeat domain 19 protein-coding 111 0.01322
+57730 ANKRD36B ankyrin repeat domain 36B protein-coding 65 0.007741
+57731 SPTBN4 spectrin beta, non-erythrocytic 4 protein-coding 244 0.02906
+57732 ZFYVE28 zinc finger FYVE-type containing 28 protein-coding 116 0.01381
+57733 GBA3 glucosylceramidase beta 3 (gene/pseudogene) protein-coding 82 0.009765
+57758 SCUBE2 signal peptide, CUB domain and EGF like domain containing 2 protein-coding 104 0.01239
+57761 TRIB3 tribbles pseudokinase 3 protein-coding 51 0.006074
+57763 ANKRA2 ankyrin repeat family A member 2 protein-coding 25 0.002977
+57786 RBAK RB associated KRAB zinc finger protein-coding 80 0.009527
+57787 MARK4 microtubule affinity regulating kinase 4 protein-coding 83 0.009884
+57794 SUGP1 SURP and G-patch domain containing 1 protein-coding 78 0.009289
+57795 BRINP2 BMP/retinoic acid inducible neural specific 2 protein-coding 179 0.02132
+57798 GATAD1 GATA zinc finger domain containing 1 protein-coding 16 0.001905
+57799 RAB40C RAB40C, member RAS oncogene family protein-coding 36 0.004287
+57801 HES4 hes family bHLH transcription factor 4 protein-coding 7 0.0008336
+57804 POLD4 DNA polymerase delta 4, accessory subunit protein-coding 9 0.001072
+57805 CCAR2 cell cycle and apoptosis regulator 2 protein-coding 96 0.01143
+57817 HAMP hepcidin antimicrobial peptide protein-coding 13 0.001548
+57818 G6PC2 glucose-6-phosphatase catalytic subunit 2 protein-coding 58 0.006907
+57819 LSM2 LSM2 homolog, U6 small nuclear RNA and mRNA degradation associated protein-coding 11 0.00131
+57820 CCNB1IP1 cyclin B1 interacting protein 1 protein-coding 46 0.005478
+57821 CCDC181 coiled-coil domain containing 181 protein-coding 102 0.01215
+57822 GRHL3 grainyhead like transcription factor 3 protein-coding 71 0.008455
+57823 SLAMF7 SLAM family member 7 protein-coding 53 0.006312
+57824 HMHB1 histocompatibility minor HB-1 protein-coding 3 0.0003573
+57826 RAP2C RAP2C, member of RAS oncogene family protein-coding 33 0.00393
+57827 C6orf47 chromosome 6 open reading frame 47 protein-coding 19 0.002263
+57828 CATSPERG cation channel sperm associated auxiliary subunit gamma protein-coding 102 0.01215
+57829 ZP4 zona pellucida glycoprotein 4 protein-coding 207 0.02465
+57830 KRTAP5-8 keratin associated protein 5-8 protein-coding 30 0.003573
+57834 CYP4F11 cytochrome P450 family 4 subfamily F member 11 protein-coding 95 0.01131
+57835 SLC4A5 solute carrier family 4 member 5 protein-coding 120 0.01429
+57862 ZNF410 zinc finger protein 410 protein-coding 42 0.005002
+57863 CADM3 cell adhesion molecule 3 protein-coding 99 0.01179
+57864 SLC46A2 solute carrier family 46 member 2 protein-coding 46 0.005478
+58155 PTBP2 polypyrimidine tract binding protein 2 protein-coding 80 0.009527
+58157 NGB neuroglobin protein-coding 14 0.001667
+58158 NEUROD4 neuronal differentiation 4 protein-coding 89 0.0106
+58189 WFDC1 WAP four-disulfide core domain 1 protein-coding 12 0.001429
+58190 CTDSP1 CTD small phosphatase 1 protein-coding 38 0.004525
+58191 CXCL16 C-X-C motif chemokine ligand 16 protein-coding 29 0.003454
+58472 SQOR sulfide quinone oxidoreductase protein-coding 44 0.00524
+58473 PLEKHB1 pleckstrin homology domain containing B1 protein-coding 26 0.003096
+58475 MS4A7 membrane spanning 4-domains A7 protein-coding 42 0.005002
+58476 TP53INP2 tumor protein p53 inducible nuclear protein 2 protein-coding 16 0.001905
+58477 SRPRB SRP receptor beta subunit protein-coding 29 0.003454
+58478 ENOPH1 enolase-phosphatase 1 protein-coding 30 0.003573
+58480 RHOU ras homolog family member U protein-coding 33 0.00393
+58483 LINC00474 long intergenic non-protein coding RNA 474 ncRNA 4 0.0004764
+58484 NLRC4 NLR family CARD domain containing 4 protein-coding 141 0.01679
+58485 TRAPPC1 trafficking protein particle complex 1 protein-coding 12 0.001429
+58486 ZBED5 zinc finger BED-type containing 5 protein-coding 49 0.005835
+58487 CREBZF CREB/ATF bZIP transcription factor protein-coding 43 0.005121
+58488 PCTP phosphatidylcholine transfer protein protein-coding 23 0.002739
+58489 ABHD17C abhydrolase domain containing 17C protein-coding 21 0.002501
+58490 RPRD1B regulation of nuclear pre-mRNA domain containing 1B protein-coding 36 0.004287
+58491 ZNF71 zinc finger protein 71 protein-coding 94 0.01119
+58492 ZNF77 zinc finger protein 77 protein-coding 61 0.007264
+58493 INIP INTS3 and NABP interacting protein protein-coding 18 0.002144
+58494 JAM2 junctional adhesion molecule 2 protein-coding 40 0.004764
+58495 OVOL2 ovo like zinc finger 2 protein-coding 29 0.003454
+58496 LY6G5B lymphocyte antigen 6 family member G5B protein-coding 4 0.0004764
+58497 PRUNE1 prune exopolyphosphatase 1 protein-coding 46 0.005478
+58498 MYL7 myosin light chain 7 protein-coding 14 0.001667
+58499 ZNF462 zinc finger protein 462 protein-coding 241 0.0287
+58500 ZNF250 zinc finger protein 250 protein-coding 50 0.005955
+58503 OPRPN opiorphin prepropeptide protein-coding 62 0.007384
+58504 ARHGAP22 Rho GTPase activating protein 22 protein-coding 107 0.01274
+58505 OSTC oligosaccharyltransferase complex non-catalytic subunit protein-coding 15 0.001786
+58506 SCAF1 SR-related CTD associated factor 1 protein-coding 108 0.01286
+58508 KMT2C lysine methyltransferase 2C protein-coding 720 0.08574
+58509 CACTIN cactin, spliceosome C complex subunit protein-coding 77 0.00917
+58510 PRODH2 proline dehydrogenase 2 protein-coding 69 0.008217
+58511 DNASE2B deoxyribonuclease 2 beta protein-coding 49 0.005835
+58512 DLGAP3 DLG associated protein 3 protein-coding 140 0.01667
+58513 EPS15L1 epidermal growth factor receptor pathway substrate 15 like 1 protein-coding 79 0.009408
+58515 SELENOK selenoprotein K protein-coding 11 0.00131
+58516 SINHCAF SIN3-HDAC complex associated factor protein-coding 24 0.002858
+58517 RBM25 RNA binding motif protein 25 protein-coding 104 0.01239
+58524 DMRT3 doublesex and mab-3 related transcription factor 3 protein-coding 69 0.008217
+58525 WIZ widely interspaced zinc finger motifs protein-coding 104 0.01239
+58526 MID1IP1 MID1 interacting protein 1 protein-coding 24 0.002858
+58527 ABRACL ABRA C-terminal like protein-coding 7 0.0008336
+58528 RRAGD Ras related GTP binding D protein-coding 46 0.005478
+58529 MYOZ1 myozenin 1 protein-coding 36 0.004287
+58530 LY6G6D lymphocyte antigen 6 family member G6D protein-coding 11 0.00131
+58531 PRM3 protamine 3 protein-coding 13 0.001548
+58533 SNX6 sorting nexin 6 protein-coding 40 0.004764
+58538 MPP4 membrane palmitoylated protein 4 protein-coding 72 0.008574
+58985 IL22RA1 interleukin 22 receptor subunit alpha 1 protein-coding 56 0.006669
+58986 TMEM8A transmembrane protein 8A protein-coding 74 0.008813
+59067 IL21 interleukin 21 protein-coding 37 0.004406
+59082 CARD18 caspase recruitment domain family member 18 protein-coding 26 0.003096
+59084 ENPP5 ectonucleotide pyrophosphatase/phosphodiesterase 5 (putative) protein-coding 69 0.008217
+59269 HIVEP3 human immunodeficiency virus type I enhancer binding protein 3 protein-coding 242 0.02882
+59271 EVA1C eva-1 homolog C protein-coding 42 0.005002
+59272 ACE2 angiotensin I converting enzyme 2 protein-coding 96 0.01143
+59274 TLNRD1 talin rod domain containing 1 protein-coding 22 0.00262
+59277 NTN4 netrin 4 protein-coding 75 0.008932
+59283 CACNG8 calcium voltage-gated channel auxiliary subunit gamma 8 protein-coding 50 0.005955
+59284 CACNG7 calcium voltage-gated channel auxiliary subunit gamma 7 protein-coding 75 0.008932
+59285 CACNG6 calcium voltage-gated channel auxiliary subunit gamma 6 protein-coding 39 0.004645
+59286 UBL5 ubiquitin like 5 protein-coding 8 0.0009527
+59307 SIGIRR single Ig and TIR domain containing protein-coding 32 0.003811
+59335 PRDM12 PR/SET domain 12 protein-coding 29 0.003454
+59336 PRDM13 PR/SET domain 13 protein-coding 72 0.008574
+59338 PLEKHA1 pleckstrin homology domain containing A1 protein-coding 55 0.00655
+59339 PLEKHA2 pleckstrin homology domain containing A2 protein-coding 38 0.004525
+59340 HRH4 histamine receptor H4 protein-coding 60 0.007145
+59341 TRPV4 transient receptor potential cation channel subfamily V member 4 protein-coding 120 0.01429
+59342 SCPEP1 serine carboxypeptidase 1 protein-coding 45 0.005359
+59343 SENP2 SUMO specific peptidase 2 protein-coding 68 0.008098
+59344 ALOXE3 arachidonate lipoxygenase 3 protein-coding 87 0.01036
+59345 GNB4 G protein subunit beta 4 protein-coding 48 0.005716
+59348 ZNF350 zinc finger protein 350 protein-coding 69 0.008217
+59349 KLHL12 kelch like family member 12 protein-coding 62 0.007384
+59350 RXFP1 relaxin family peptide receptor 1 protein-coding 129 0.01536
+59351 PBOV1 prostate and breast cancer overexpressed 1 protein-coding 15 0.001786
+59352 LGR6 leucine rich repeat containing G protein-coupled receptor 6 protein-coding 123 0.01465
+59353 TMEM35A transmembrane protein 35A protein-coding 31 0.003692
+60312 AFAP1 actin filament associated protein 1 protein-coding 92 0.01096
+60313 GPBP1L1 GC-rich promoter binding protein 1 like 1 protein-coding 49 0.005835
+60314 C12orf10 chromosome 12 open reading frame 10 protein-coding 28 0.003335
+60343 FAM3A family with sequence similarity 3 member A protein-coding 80 0.009527
+60370 AVPI1 arginine vasopressin induced 1 protein-coding 18 0.002144
+60385 TSKS testis specific serine kinase substrate protein-coding 94 0.01119
+60386 SLC25A19 solute carrier family 25 member 19 protein-coding 31 0.003692
+60401 EDA2R ectodysplasin A2 receptor protein-coding 51 0.006074
+60412 EXOC4 exocyst complex component 4 protein-coding 136 0.0162
+60436 TGIF2 TGFB induced factor homeobox 2 protein-coding 27 0.003215
+60437 CDH26 cadherin 26 protein-coding 115 0.0137
+60468 BACH2 BTB domain and CNC homolog 2 protein-coding 133 0.01584
+60481 ELOVL5 ELOVL fatty acid elongase 5 protein-coding 29 0.003454
+60482 SLC5A7 solute carrier family 5 member 7 protein-coding 115 0.0137
+60484 HAPLN2 hyaluronan and proteoglycan link protein 2 protein-coding 22 0.00262
+60485 SAV1 salvador family WW domain containing protein 1 protein-coding 39 0.004645
+60487 TRMT11 tRNA methyltransferase 11 homolog protein-coding 42 0.005002
+60488 MRPS35 mitochondrial ribosomal protein S35 protein-coding 73 0.008694
+60489 APOBEC3G apolipoprotein B mRNA editing enzyme catalytic subunit 3G protein-coding 51 0.006074
+60490 PPCDC phosphopantothenoylcysteine decarboxylase protein-coding 12 0.001429
+60491 NIF3L1 NGG1 interacting factor 3 like 1 protein-coding 44 0.00524
+60492 CCDC90B coiled-coil domain containing 90B protein-coding 32 0.003811
+60493 FASTKD5 FAST kinase domains 5 protein-coding 76 0.009051
+60494 CCDC81 coiled-coil domain containing 81 protein-coding 76 0.009051
+60495 HPSE2 heparanase 2 (inactive) protein-coding 104 0.01239
+60496 AASDHPPT aminoadipate-semialdehyde dehydrogenase-phosphopantetheinyl transferase protein-coding 42 0.005002
+60506 NYX nyctalopin protein-coding 49 0.005835
+60509 AGBL5 ATP/GTP binding protein like 5 protein-coding 113 0.01346
+60526 LDAH lipid droplet associated hydrolase protein-coding 46 0.005478
+60528 ELAC2 elaC ribonuclease Z 2 protein-coding 82 0.009765
+60529 ALX4 ALX homeobox 4 protein-coding 97 0.01155
+60558 GUF1 GUF1 homolog, GTPase protein-coding 84 0.01
+60559 SPCS3 signal peptidase complex subunit 3 protein-coding 31 0.003692
+60560 NAA35 N(alpha)-acetyltransferase 35, NatC auxiliary subunit protein-coding 74 0.008813
+60561 RINT1 RAD50 interactor 1 protein-coding 72 0.008574
+60592 SCOC short coiled-coil protein protein-coding 17 0.002025
+60598 KCNK15 potassium two pore domain channel subfamily K member 15 protein-coding 47 0.005597
+60625 DHX35 DEAH-box helicase 35 protein-coding 79 0.009408
+60626 RIC8A RIC8 guanine nucleotide exchange factor A protein-coding 52 0.006193
+60672 MIIP migration and invasion inhibitory protein protein-coding 44 0.00524
+60673 ATG101 autophagy related 101 protein-coding 21 0.002501
+60675 PROK2 prokineticin 2 protein-coding 16 0.001905
+60676 PAPPA2 pappalysin 2 protein-coding 461 0.0549
+60677 CELF6 CUGBP Elav-like family member 6 protein-coding 39 0.004645
+60678 EEFSEC eukaryotic elongation factor, selenocysteine-tRNA specific protein-coding 57 0.006788
+60680 CELF5 CUGBP Elav-like family member 5 protein-coding 34 0.004049
+60681 FKBP10 FK506 binding protein 10 protein-coding 73 0.008694
+60682 SMAP1 small ArfGAP 1 protein-coding 61 0.007264
+60684 TRAPPC11 trafficking protein particle complex 11 protein-coding 92 0.01096
+60685 ZFAND3 zinc finger AN1-type containing 3 protein-coding 24 0.002858
+60686 C14orf93 chromosome 14 open reading frame 93 protein-coding 48 0.005716
+63027 SLC22A23 solute carrier family 22 member 23 protein-coding 66 0.00786
+63035 BCORL1 BCL6 corepressor like 1 protein-coding 246 0.0293
+63036 CELA2A chymotrypsin like elastase family member 2A protein-coding 32 0.003811
+63826 SRR serine racemase protein-coding 30 0.003573
+63827 BCAN brevican protein-coding 152 0.0181
+63874 ABHD4 abhydrolase domain containing 4 protein-coding 40 0.004764
+63875 MRPL17 mitochondrial ribosomal protein L17 protein-coding 14 0.001667
+63876 PKNOX2 PBX/knotted 1 homeobox 2 protein-coding 73 0.008694
+63877 FAM204A family with sequence similarity 204 member A protein-coding 31 0.003692
+63891 RNF123 ring finger protein 123 protein-coding 129 0.01536
+63892 THADA THADA, armadillo repeat containing protein-coding 174 0.02072
+63893 UBE2O ubiquitin conjugating enzyme E2 O protein-coding 109 0.01298
+63894 VIPAS39 VPS33B interacting protein, apical-basolateral polarity regulator, spe-39 homolog protein-coding 59 0.007026
+63895 PIEZO2 piezo type mechanosensitive ion channel component 2 protein-coding 160 0.01905
+63897 HEATR6 HEAT repeat containing 6 protein-coding 93 0.01108
+63898 SH2D4A SH2 domain containing 4A protein-coding 51 0.006074
+63899 NSUN3 NOP2/Sun RNA methyltransferase family member 3 protein-coding 40 0.004764
+63901 FAM111A family with sequence similarity 111 member A protein-coding 78 0.009289
+63904 DUSP21 dual specificity phosphatase 21 protein-coding 43 0.005121
+63905 MANBAL mannosidase beta like protein-coding 14 0.001667
+63906 GPATCH3 G-patch domain containing 3 protein-coding 56 0.006669
+63908 NAPB NSF attachment protein beta protein-coding 38 0.004525
+63910 SLC17A9 solute carrier family 17 member 9 protein-coding 62 0.007384
+63914 LINC01590 long intergenic non-protein coding RNA 1590 ncRNA 1 0.0001191
+63915 BLOC1S5 biogenesis of lysosomal organelles complex 1 subunit 5 protein-coding 22 0.00262
+63916 ELMO2 engulfment and cell motility 2 protein-coding 73 0.008694
+63917 GALNT11 polypeptide N-acetylgalactosaminyltransferase 11 protein-coding 72 0.008574
+63920 ZBED8 zinc finger BED-type containing 8 protein-coding 68 0.008098
+63922 CHTF18 chromosome transmission fidelity factor 18 protein-coding 101 0.01203
+63923 TNN tenascin N protein-coding 307 0.03656
+63924 CIDEC cell death inducing DFFA like effector c protein-coding 27 0.003215
+63925 ZNF335 zinc finger protein 335 protein-coding 139 0.01655
+63926 ANKEF1 ankyrin repeat and EF-hand domain containing 1 protein-coding 93 0.01108
+63928 CHP2 calcineurin like EF-hand protein 2 protein-coding 34 0.004049
+63929 XPNPEP3 X-prolyl aminopeptidase 3 protein-coding 64 0.007622
+63931 MRPS14 mitochondrial ribosomal protein S14 protein-coding 23 0.002739
+63932 CXorf56 chromosome X open reading frame 56 protein-coding 50 0.005955
+63933 MCUR1 mitochondrial calcium uniporter regulator 1 protein-coding 22 0.00262
+63934 ZNF667 zinc finger protein 667 protein-coding 132 0.01572
+63935 PCIF1 PDX1 C-terminal inhibiting factor 1 protein-coding 75 0.008932
+63939 FAM217B family with sequence similarity 217 member B protein-coding 54 0.006431
+63940 GPSM3 G protein signaling modulator 3 protein-coding 30 0.003573
+63941 NECAB3 N-terminal EF-hand calcium binding protein 3 protein-coding 33 0.00393
+63943 FKBPL FK506 binding protein like protein-coding 93 0.01108
+63946 DMRTC2 DMRT like family C2 protein-coding 43 0.005121
+63947 DMRTC1 DMRT like family C1 protein-coding 9 0.001072
+63948 DMRTB1 DMRT like family B with proline rich C-terminal 1 protein-coding 49 0.005835
+63950 DMRTA2 DMRT like family A2 protein-coding 22 0.00262
+63951 DMRTA1 DMRT like family A1 protein-coding 39 0.004645
+63967 CLSPN claspin protein-coding 129 0.01536
+63970 TP53AIP1 tumor protein p53 regulated apoptosis inducing protein 1 protein-coding 10 0.001191
+63971 KIF13A kinesin family member 13A protein-coding 184 0.02191
+63973 NEUROG2 neurogenin 2 protein-coding 28 0.003335
+63974 NEUROD6 neuronal differentiation 6 protein-coding 82 0.009765
+63976 PRDM16 PR/SET domain 16 protein-coding 173 0.0206
+63977 PRDM15 PR/SET domain 15 protein-coding 131 0.0156
+63978 PRDM14 PR/SET domain 14 protein-coding 101 0.01203
+63979 FIGNL1 fidgetin like 1 protein-coding 86 0.01024
+63982 ANO3 anoctamin 3 protein-coding 167 0.01989
+64005 MYO1G myosin IG protein-coding 101 0.01203
+64061 TSPYL2 TSPY like 2 protein-coding 93 0.01108
+64062 RBM26 RNA binding motif protein 26 protein-coding 110 0.0131
+64063 PRSS22 serine protease 22 protein-coding 35 0.004168
+64064 OXCT2 3-oxoacid CoA-transferase 2 protein-coding 51 0.006074
+64065 PERP PERP, TP53 apoptosis effector protein-coding 23 0.002739
+64066 MMP27 matrix metallopeptidase 27 protein-coding 69 0.008217
+64067 NPAS3 neuronal PAS domain protein 3 protein-coding 140 0.01667
+64072 CDH23 cadherin related 23 protein-coding 289 0.03442
+64073 C19orf33 chromosome 19 open reading frame 33 protein-coding 11 0.00131
+64077 LHPP phospholysine phosphohistidine inorganic pyrophosphate phosphatase protein-coding 32 0.003811
+64078 SLC28A3 solute carrier family 28 member 3 protein-coding 86 0.01024
+64080 RBKS ribokinase protein-coding 30 0.003573
+64081 PBLD phenazine biosynthesis like protein domain containing protein-coding 35 0.004168
+64083 GOLPH3 golgi phosphoprotein 3 protein-coding 38 0.004525
+64084 CLSTN2 calsyntenin 2 protein-coding 191 0.02275
+64087 MCCC2 methylcrotonoyl-CoA carboxylase 2 protein-coding 62 0.007384
+64089 SNX16 sorting nexin 16 protein-coding 42 0.005002
+64090 GAL3ST2 galactose-3-O-sulfotransferase 2 protein-coding 40 0.004764
+64091 POPDC2 popeye domain containing 2 protein-coding 45 0.005359
+64092 SAMSN1 SAM domain, SH3 domain and nuclear localization signals 1 protein-coding 92 0.01096
+64093 SMOC1 SPARC related modular calcium binding 1 protein-coding 61 0.007264
+64094 SMOC2 SPARC related modular calcium binding 2 protein-coding 101 0.01203
+64096 GFRA4 GDNF family receptor alpha 4 protein-coding 12 0.001429
+64097 EPB41L4A erythrocyte membrane protein band 4.1 like 4A protein-coding 96 0.01143
+64098 PARVG parvin gamma protein-coding 51 0.006074
+64100 ELSPBP1 epididymal sperm binding protein 1 protein-coding 42 0.005002
+64101 LRRC4 leucine rich repeat containing 4 protein-coding 91 0.01084
+64102 TNMD tenomodulin protein-coding 43 0.005121
+64105 CENPK centromere protein K protein-coding 32 0.003811
+64106 NPFFR1 neuropeptide FF receptor 1 protein-coding 32 0.003811
+64108 RTP4 receptor transporter protein 4 protein-coding 36 0.004287
+64109 CRLF2 cytokine receptor like factor 2 protein-coding 46 0.005478
+64110 MAGEF1 MAGE family member F1 protein-coding 31 0.003692
+64111 NPVF neuropeptide VF precursor protein-coding 31 0.003692
+64112 MOAP1 modulator of apoptosis 1 protein-coding 44 0.00524
+64114 TMBIM1 transmembrane BAX inhibitor motif containing 1 protein-coding 32 0.003811
+64115 VSIR V-set immunoregulatory receptor protein-coding 41 0.004883
+64116 SLC39A8 solute carrier family 39 member 8 protein-coding 51 0.006074
+64118 DUS1L dihydrouridine synthase 1 like protein-coding 45 0.005359
+64121 RRAGC Ras related GTP binding C protein-coding 33 0.00393
+64122 FN3K fructosamine 3 kinase protein-coding 38 0.004525
+64123 ADGRL4 adhesion G protein-coupled receptor L4 protein-coding 192 0.02287
+64127 NOD2 nucleotide binding oligomerization domain containing 2 protein-coding 139 0.01655
+64129 TINAGL1 tubulointerstitial nephritis antigen like 1 protein-coding 79 0.009408
+64130 LIN7B lin-7 homolog B, crumbs cell polarity complex component protein-coding 24 0.002858
+64131 XYLT1 xylosyltransferase 1 protein-coding 152 0.0181
+64132 XYLT2 xylosyltransferase 2 protein-coding 97 0.01155
+64135 IFIH1 interferon induced with helicase C domain 1 protein-coding 109 0.01298
+64137 ABCG4 ATP binding cassette subfamily G member 4 protein-coding 97 0.01155
+64145 RBSN rabenosyn, RAB effector protein-coding 88 0.01048
+64146 PDF peptide deformylase, mitochondrial protein-coding 1 0.0001191
+64147 KIF9 kinesin family member 9 protein-coding 79 0.009408
+64149 C17orf75 chromosome 17 open reading frame 75 protein-coding 41 0.004883
+64151 NCAPG non-SMC condensin I complex subunit G protein-coding 119 0.01417
+64167 ERAP2 endoplasmic reticulum aminopeptidase 2 protein-coding 89 0.0106
+64168 NECAB1 N-terminal EF-hand calcium binding protein 1 protein-coding 59 0.007026
+64170 CARD9 caspase recruitment domain family member 9 protein-coding 66 0.00786
+64172 OSGEPL1 O-sialoglycoprotein endopeptidase like 1 protein-coding 43 0.005121
+64174 DPEP2 dipeptidase 2 protein-coding 84 0.01
+64175 P3H1 prolyl 3-hydroxylase 1 protein-coding 80 0.009527
+64180 DPEP3 dipeptidase 3 protein-coding 108 0.01286
+64184 EDDM3B epididymal protein 3B protein-coding 20 0.002382
+64207 IRF2BPL interferon regulatory factor 2 binding protein like protein-coding 49 0.005835
+64208 POPDC3 popeye domain containing 3 protein-coding 57 0.006788
+64210 MMS19 MMS19 homolog, cytosolic iron-sulfur assembly component protein-coding 58 0.006907
+64211 LHX5 LIM homeobox 5 protein-coding 43 0.005121
+64215 DNAJC1 DnaJ heat shock protein family (Hsp40) member C1 protein-coding 77 0.00917
+64216 TFB2M transcription factor B2, mitochondrial protein-coding 50 0.005955
+64218 SEMA4A semaphorin 4A protein-coding 98 0.01167
+64219 PJA1 praja ring finger ubiquitin ligase 1 protein-coding 99 0.01179
+64220 STRA6 stimulated by retinoic acid 6 protein-coding 51 0.006074
+64221 ROBO3 roundabout guidance receptor 3 protein-coding 154 0.01834
+64222 TOR3A torsin family 3 member A protein-coding 31 0.003692
+64223 MLST8 MTOR associated protein, LST8 homolog protein-coding 38 0.004525
+64224 HERPUD2 HERPUD family member 2 protein-coding 53 0.006312
+64225 ATL2 atlastin GTPase 2 protein-coding 49 0.005835
+64231 MS4A6A membrane spanning 4-domains A6A protein-coding 37 0.004406
+64232 MS4A5 membrane spanning 4-domains A5 protein-coding 40 0.004764
+64236 PDLIM2 PDZ and LIM domain 2 protein-coding 43 0.005121
+64240 ABCG5 ATP binding cassette subfamily G member 5 protein-coding 73 0.008694
+64241 ABCG8 ATP binding cassette subfamily G member 8 protein-coding 124 0.01477
+64282 PAPD5 poly(A) RNA polymerase D5, non-canonical protein-coding 63 0.007503
+64283 ARHGEF28 Rho guanine nucleotide exchange factor 28 protein-coding 125 0.01489
+64284 RAB17 RAB17, member RAS oncogene family protein-coding 26 0.003096
+64285 RHBDF1 rhomboid 5 homolog 1 protein-coding 83 0.009884
+64288 ZSCAN31 zinc finger and SCAN domain containing 31 protein-coding 63 0.007503
+64318 NOC3L NOC3 like DNA replication regulator protein-coding 82 0.009765
+64319 FBRS fibrosin protein-coding 58 0.006907
+64320 RNF25 ring finger protein 25 protein-coding 50 0.005955
+64321 SOX17 SRY-box 17 protein-coding 64 0.007622
+64324 NSD1 nuclear receptor binding SET domain protein 1 protein-coding 331 0.03942
+64326 COP1 COP1, E3 ubiquitin ligase protein-coding 99 0.01179
+64327 LMBR1 limb development membrane protein 1 protein-coding 130 0.01548
+64328 XPO4 exportin 4 protein-coding 121 0.01441
+64332 NFKBIZ NFKB inhibitor zeta protein-coding 95 0.01131
+64333 ARHGAP9 Rho GTPase activating protein 9 protein-coding 192 0.02287
+64342 HS1BP3 HCLS1 binding protein 3 protein-coding 43 0.005121
+64343 AZI2 5-azacytidine induced 2 protein-coding 44 0.00524
+64344 HIF3A hypoxia inducible factor 3 alpha subunit protein-coding 109 0.01298
+64359 NXN nucleoredoxin protein-coding 44 0.00524
+64374 SIL1 SIL1 nucleotide exchange factor protein-coding 45 0.005359
+64375 IKZF4 IKAROS family zinc finger 4 protein-coding 50 0.005955
+64376 IKZF5 IKAROS family zinc finger 5 protein-coding 39 0.004645
+64377 CHST8 carbohydrate sulfotransferase 8 protein-coding 77 0.00917
+64386 MMP25 matrix metallopeptidase 25 protein-coding 111 0.01322
+64388 GREM2 gremlin 2, DAN family BMP antagonist protein-coding 54 0.006431
+64393 ZMAT3 zinc finger matrin-type 3 protein-coding 50 0.005955
+64395 GMCL1 germ cell-less, spermatogenesis associated 1 protein-coding 36 0.004287
+64397 ZNF106 zinc finger protein 106 protein-coding 199 0.0237
+64398 MPP5 membrane palmitoylated protein 5 protein-coding 69 0.008217
+64399 HHIP hedgehog interacting protein protein-coding 118 0.01405
+64400 AKTIP AKT interacting protein protein-coding 33 0.00393
+64403 CDH24 cadherin 24 protein-coding 79 0.009408
+64405 CDH22 cadherin 22 protein-coding 117 0.01393
+64407 RGS18 regulator of G protein signaling 18 protein-coding 66 0.00786
+64409 GALNT17 polypeptide N-acetylgalactosaminyltransferase 17 protein-coding 267 0.0318
+64410 KLHL25 kelch like family member 25 protein-coding 80 0.009527
+64411 ARAP3 ArfGAP with RhoGAP domain, ankyrin repeat and PH domain 3 protein-coding 158 0.01882
+64412 GZF1 GDNF inducible zinc finger protein 1 protein-coding 84 0.01
+64417 TMEM267 transmembrane protein 267 protein-coding 27 0.003215
+64418 TMEM168 transmembrane protein 168 protein-coding 102 0.01215
+64419 MTMR14 myotubularin related protein 14 protein-coding 60 0.007145
+64420 SUSD1 sushi domain containing 1 protein-coding 81 0.009646
+64421 DCLRE1C DNA cross-link repair 1C protein-coding 84 0.01
+64422 ATG3 autophagy related 3 protein-coding 33 0.00393
+64423 INF2 inverted formin, FH2 and WH2 domain containing protein-coding 104 0.01239
+64425 POLR1E RNA polymerase I subunit E protein-coding 35 0.004168
+64426 SUDS3 SDS3 homolog, SIN3A corepressor complex component protein-coding 45 0.005359
+64427 TTC31 tetratricopeptide repeat domain 31 protein-coding 50 0.005955
+64428 NARFL nuclear prelamin A recognition factor like protein-coding 56 0.006669
+64429 ZDHHC6 zinc finger DHHC-type containing 6 protein-coding 41 0.004883
+64430 PCNX4 pecanex homolog 4 protein-coding 123 0.01465
+64431 ACTR6 ARP6 actin related protein 6 homolog protein-coding 55 0.00655
+64432 MRPS25 mitochondrial ribosomal protein S25 protein-coding 22 0.00262
+64434 NOM1 nucleolar protein with MIF4G domain 1 protein-coding 81 0.009646
+64446 DNAI2 dynein axonemal intermediate chain 2 protein-coding 106 0.01262
+64478 CSMD1 CUB and Sushi multiple domains 1 protein-coding 673 0.08015
+64499 TPSB2 tryptase beta 2 (gene/pseudogene) protein-coding 19 0.002263
+64506 CPEB1 cytoplasmic polyadenylation element binding protein 1 protein-coding 77 0.00917
+64518 TEKT3 tektin 3 protein-coding 88 0.01048
+64577 ALDH8A1 aldehyde dehydrogenase 8 family member A1 protein-coding 88 0.01048
+64579 NDST4 N-deacetylase and N-sulfotransferase 4 protein-coding 206 0.02453
+64581 CLEC7A C-type lectin domain containing 7A protein-coding 38 0.004525
+64582 GPR135 G protein-coupled receptor 135 protein-coding 47 0.005597
+64591 TSPY2 testis specific protein, Y-linked 2 protein-coding 7 0.0008336
+64598 MOSPD3 motile sperm domain containing 3 protein-coding 34 0.004049
+64599 GIGYF1 GRB10 interacting GYF protein 1 protein-coding 129 0.01536
+64600 PLA2G2F phospholipase A2 group IIF protein-coding 31 0.003692
+64601 VPS16 VPS16, CORVET/HOPS core subunit protein-coding 93 0.01108
+64641 EBF2 early B cell factor 2 protein-coding 100 0.01191
+64645 MFSD14A major facilitator superfamily domain containing 14A protein-coding 52 0.006193
+64648 SPANXD SPANX family member D protein-coding 48 0.005716
+64651 CSRNP1 cysteine and serine rich nuclear protein 1 protein-coding 53 0.006312
+64663 SPANXC SPANX family member C protein-coding 31 0.003692
+64682 ANAPC1 anaphase promoting complex subunit 1 protein-coding 147 0.01751
+64689 GORASP1 golgi reassembly stacking protein 1 protein-coding 35 0.004168
+64693 CTAGE1 cutaneous T cell lymphoma-associated antigen 1 protein-coding 136 0.0162
+64699 TMPRSS3 transmembrane serine protease 3 protein-coding 65 0.007741
+64708 COPS7B COP9 signalosome subunit 7B protein-coding 24 0.002858
+64710 NUCKS1 nuclear casein kinase and cyclin dependent kinase substrate 1 protein-coding 28 0.003335
+64711 HS3ST6 heparan sulfate-glucosamine 3-sulfotransferase 6 protein-coding 110 0.0131
+64714 PDIA2 protein disulfide isomerase family A member 2 protein-coding 51 0.006074
+64718 UNKL unkempt family like zinc finger protein-coding 62 0.007384
+64743 WDR13 WD repeat domain 13 protein-coding 71 0.008455
+64744 SMAP2 small ArfGAP2 protein-coding 39 0.004645
+64745 METTL17 methyltransferase like 17 protein-coding 63 0.007503
+64746 ACBD3 acyl-CoA binding domain containing 3 protein-coding 63 0.007503
+64747 MFSD1 major facilitator superfamily domain containing 1 protein-coding 58 0.006907
+64748 PLPPR2 phospholipid phosphatase related 2 protein-coding 193 0.02298
+64750 SMURF2 SMAD specific E3 ubiquitin protein ligase 2 protein-coding 76 0.009051
+64753 CCDC136 coiled-coil domain containing 136 protein-coding 124 0.01477
+64754 SMYD3 SET and MYND domain containing 3 protein-coding 56 0.006669
+64755 C16orf58 chromosome 16 open reading frame 58 protein-coding 36 0.004287
+64756 ATPAF1 ATP synthase mitochondrial F1 complex assembly factor 1 protein-coding 25 0.002977
+64757 MARC1 mitochondrial amidoxime reducing component 1 protein-coding 35 0.004168
+64759 TNS3 tensin 3 protein-coding 181 0.02156
+64760 FAM160B2 family with sequence similarity 160 member B2 protein-coding 60 0.007145
+64761 PARP12 poly(ADP-ribose) polymerase family member 12 protein-coding 69 0.008217
+64762 GAREM1 GRB2 associated regulator of MAPK1 subtype 1 protein-coding 92 0.01096
+64763 ZNF574 zinc finger protein 574 protein-coding 103 0.01227
+64764 CREB3L2 cAMP responsive element binding protein 3 like 2 protein-coding 57 0.006788
+64766 S100PBP S100P binding protein protein-coding 42 0.005002
+64768 IPPK inositol-pentakisphosphate 2-kinase protein-coding 50 0.005955
+64769 MEAF6 MYST/Esa1 associated factor 6 protein-coding 22 0.00262
+64770 CCDC14 coiled-coil domain containing 14 protein-coding 89 0.0106
+64771 C6orf106 chromosome 6 open reading frame 106 protein-coding 21 0.002501
+64772 ENGASE endo-beta-N-acetylglucosaminidase protein-coding 86 0.01024
+64773 PCED1A PC-esterase domain containing 1A protein-coding 55 0.00655
+64776 C11orf1 chromosome 11 open reading frame 1 protein-coding 22 0.00262
+64777 RMND5B required for meiotic nuclear division 5 homolog B protein-coding 39 0.004645
+64778 FNDC3B fibronectin type III domain containing 3B protein-coding 126 0.01501
+64779 MTHFSD methenyltetrahydrofolate synthetase domain containing protein-coding 39 0.004645
+64780 MICAL1 microtubule associated monooxygenase, calponin and LIM domain containing 1 protein-coding 109 0.01298
+64781 CERK ceramide kinase protein-coding 59 0.007026
+64782 AEN apoptosis enhancing nuclease protein-coding 33 0.00393
+64783 RBM15 RNA binding motif protein 15 protein-coding 115 0.0137
+64784 CRTC3 CREB regulated transcription coactivator 3 protein-coding 52 0.006193
+64785 GINS3 GINS complex subunit 3 protein-coding 36 0.004287
+64786 TBC1D15 TBC1 domain family member 15 protein-coding 90 0.01072
+64787 EPS8L2 EPS8 like 2 protein-coding 63 0.007503
+64788 LMF1 lipase maturation factor 1 protein-coding 43 0.005121
+64789 EXO5 exonuclease 5 protein-coding 35 0.004168
+64792 IFT22 intraflagellar transport 22 protein-coding 15 0.001786
+64793 CEP85 centrosomal protein 85 protein-coding 59 0.007026
+64794 DDX31 DEAD-box helicase 31 protein-coding 75 0.008932
+64795 RMND5A required for meiotic nuclear division 5 homolog A protein-coding 40 0.004764
+64798 DEPTOR DEP domain containing MTOR interacting protein protein-coding 51 0.006074
+64799 IQCH IQ motif containing H protein-coding 100 0.01191
+64800 EFCAB6 EF-hand calcium binding domain 6 protein-coding 169 0.02013
+64801 ARV1 ARV1 homolog, fatty acid homeostasis modulator protein-coding 33 0.00393
+64802 NMNAT1 nicotinamide nucleotide adenylyltransferase 1 protein-coding 35 0.004168
+64805 P2RY12 purinergic receptor P2Y12 protein-coding 47 0.005597
+64806 IL25 interleukin 25 protein-coding 27 0.003215
+64816 CYP3A43 cytochrome P450 family 3 subfamily A member 43 protein-coding 63 0.007503
+64834 ELOVL1 ELOVL fatty acid elongase 1 protein-coding 27 0.003215
+64837 KLC2 kinesin light chain 2 protein-coding 74 0.008813
+64838 FNDC4 fibronectin type III domain containing 4 protein-coding 26 0.003096
+64839 FBXL17 F-box and leucine rich repeat protein 17 protein-coding 59 0.007026
+64840 PORCN porcupine O-acyltransferase protein-coding 68 0.008098
+64841 GNPNAT1 glucosamine-phosphate N-acetyltransferase 1 protein-coding 27 0.003215
+64843 ISL2 ISL LIM homeobox 2 protein-coding 34 0.004049
+64844 MARCH7 membrane associated ring-CH-type finger 7 protein-coding 81 0.009646
+64847 SPATA20 spermatogenesis associated 20 protein-coding 78 0.009289
+64848 YTHDC2 YTH domain containing 2 protein-coding 157 0.0187
+64849 SLC13A3 solute carrier family 13 member 3 protein-coding 89 0.0106
+64850 ETNPPL ethanolamine-phosphate phospho-lyase protein-coding 84 0.01
+64852 TUT1 terminal uridylyl transferase 1, U6 snRNA-specific protein-coding 88 0.01048
+64853 AIDA axin interactor, dorsalization associated protein-coding 39 0.004645
+64854 USP46 ubiquitin specific peptidase 46 protein-coding 49 0.005835
+64855 FAM129B family with sequence similarity 129 member B protein-coding 81 0.009646
+64856 VWA1 von Willebrand factor A domain containing 1 protein-coding 28 0.003335
+64857 PLEKHG2 pleckstrin homology and RhoGEF domain containing G2 protein-coding 128 0.01524
+64858 DCLRE1B DNA cross-link repair 1B protein-coding 55 0.00655
+64859 NABP1 nucleic acid binding protein 1 protein-coding 21 0.002501
+64860 ARMCX5 armadillo repeat containing, X-linked 5 protein-coding 61 0.007264
+64863 METTL4 methyltransferase like 4 protein-coding 58 0.006907
+64864 RFX7 regulatory factor X7 protein-coding 143 0.01703
+64866 CDCP1 CUB domain containing protein 1 protein-coding 84 0.01
+64881 PCDH20 protocadherin 20 protein-coding 191 0.02275
+64895 PAPOLG poly(A) polymerase gamma protein-coding 93 0.01108
+64897 C12orf43 chromosome 12 open reading frame 43 protein-coding 40 0.004764
+64900 LPIN3 lipin 3 protein-coding 74 0.008813
+64901 RANBP17 RAN binding protein 17 protein-coding 135 0.01608
+64902 AGXT2 alanine--glyoxylate aminotransferase 2 protein-coding 91 0.01084
+64919 BCL11B B cell CLL/lymphoma 11B protein-coding 142 0.01691
+64921 CASD1 CAS1 domain containing 1 protein-coding 111 0.01322
+64922 LRRC19 leucine rich repeat containing 19 protein-coding 40 0.004764
+64924 SLC30A5 solute carrier family 30 member 5 protein-coding 53 0.006312
+64925 CCDC71 coiled-coil domain containing 71 protein-coding 42 0.005002
+64926 RASAL3 RAS protein activator like 3 protein-coding 106 0.01262
+64927 TTC23 tetratricopeptide repeat domain 23 protein-coding 47 0.005597
+64928 MRPL14 mitochondrial ribosomal protein L14 protein-coding 63 0.007503
+64940 STAG3L4 stromal antigen 3-like 4 (pseudogene) pseudo 49 0.005835
+64943 NT5DC2 5'-nucleotidase domain containing 2 protein-coding 47 0.005597
+64946 CENPH centromere protein H protein-coding 42 0.005002
+64949 MRPS26 mitochondrial ribosomal protein S26 protein-coding 21 0.002501
+64951 MRPS24 mitochondrial ribosomal protein S24 protein-coding 16 0.001905
+64960 MRPS15 mitochondrial ribosomal protein S15 protein-coding 37 0.004406
+64963 MRPS11 mitochondrial ribosomal protein S11 protein-coding 20 0.002382
+64965 MRPS9 mitochondrial ribosomal protein S9 protein-coding 41 0.004883
+64968 MRPS6 mitochondrial ribosomal protein S6 protein-coding 17 0.002025
+64969 MRPS5 mitochondrial ribosomal protein S5 protein-coding 58 0.006907
+64975 MRPL41 mitochondrial ribosomal protein L41 protein-coding 28 0.003335
+64976 MRPL40 mitochondrial ribosomal protein L40 protein-coding 49 0.005835
+64978 MRPL38 mitochondrial ribosomal protein L38 protein-coding 39 0.004645
+64979 MRPL36 mitochondrial ribosomal protein L36 protein-coding 147 0.01751
+64981 MRPL34 mitochondrial ribosomal protein L34 protein-coding 8 0.0009527
+64983 MRPL32 mitochondrial ribosomal protein L32 protein-coding 38 0.004525
+65003 MRPL11 mitochondrial ribosomal protein L11 protein-coding 21 0.002501
+65005 MRPL9 mitochondrial ribosomal protein L9 protein-coding 20 0.002382
+65008 MRPL1 mitochondrial ribosomal protein L1 protein-coding 39 0.004645
+65009 NDRG4 NDRG family member 4 protein-coding 37 0.004406
+65010 SLC26A6 solute carrier family 26 member 6 protein-coding 60 0.007145
+65012 SLC26A10 solute carrier family 26 member 10 protein-coding 70 0.008336
+65018 PINK1 PTEN induced putative kinase 1 protein-coding 52 0.006193
+65055 REEP1 receptor accessory protein 1 protein-coding 27 0.003215
+65056 GPBP1 GC-rich promoter binding protein 1 protein-coding 60 0.007145
+65057 ACD ACD, shelterin complex subunit and telomerase recruitment factor protein-coding 114 0.01358
+65059 RAPH1 Ras association (RalGDS/AF-6) and pleckstrin homology domains 1 protein-coding 100 0.01191
+65061 CDK15 cyclin dependent kinase 15 protein-coding 69 0.008217
+65062 TMEM237 transmembrane protein 237 protein-coding 39 0.004645
+65065 NBEAL1 neurobeachin like 1 protein-coding 203 0.02418
+65078 RTN4R reticulon 4 receptor protein-coding 34 0.004049
+65080 MRPL44 mitochondrial ribosomal protein L44 protein-coding 36 0.004287
+65082 VPS33A VPS33A, CORVET/HOPS core subunit protein-coding 82 0.009765
+65083 NOL6 nucleolar protein 6 protein-coding 322 0.03835
+65084 TMEM135 transmembrane protein 135 protein-coding 59 0.007026
+65094 JMJD4 jumonji domain containing 4 protein-coding 41 0.004883
+65095 KRI1 KRI1 homolog protein-coding 79 0.009408
+65108 MARCKSL1 MARCKS like 1 protein-coding 21 0.002501
+65109 UPF3B UPF3B, regulator of nonsense mediated mRNA decay protein-coding 97 0.01155
+65110 UPF3A UPF3A, regulator of nonsense mediated mRNA decay protein-coding 50 0.005955
+65117 RSRC2 arginine and serine rich coiled-coil 2 protein-coding 67 0.007979
+65121 PRAMEF1 PRAME family member 1 protein-coding 91 0.01084
+65122 PRAMEF2 PRAME family member 2 protein-coding 84 0.01
+65123 INTS3 integrator complex subunit 3 protein-coding 108 0.01286
+65124 SOWAHC sosondowah ankyrin repeat domain family member C protein-coding 27 0.003215
+65125 WNK1 WNK lysine deficient protein kinase 1 protein-coding 197 0.02346
+65217 PCDH15 protocadherin related 15 protein-coding 611 0.07276
+65220 NADK NAD kinase protein-coding 62 0.007384
+65243 ZFP69B ZFP69 zinc finger protein B protein-coding 55 0.00655
+65244 SPATS2 spermatogenesis associated serine rich 2 protein-coding 47 0.005597
+65249 ZSWIM4 zinc finger SWIM-type containing 4 protein-coding 113 0.01346
+65250 CPLANE1 ciliogenesis and planar polarity effector 1 protein-coding 274 0.03263
+65251 ZNF649 zinc finger protein 649 protein-coding 80 0.009527
+65258 MPPE1 metallophosphoesterase 1 protein-coding 34 0.004049
+65260 COA7 cytochrome c oxidase assembly factor 7 (putative) protein-coding 22 0.00262
+65263 PYCR3 pyrroline-5-carboxylate reductase 3 protein-coding 23 0.002739
+65264 UBE2Z ubiquitin conjugating enzyme E2 Z protein-coding 53 0.006312
+65265 C8orf33 chromosome 8 open reading frame 33 protein-coding 34 0.004049
+65266 WNK4 WNK lysine deficient protein kinase 4 protein-coding 132 0.01572
+65267 WNK3 WNK lysine deficient protein kinase 3 protein-coding 219 0.02608
+65268 WNK2 WNK lysine deficient protein kinase 2 protein-coding 180 0.02144
+65975 STK33 serine/threonine kinase 33 protein-coding 76 0.009051
+65977 PLEKHA3 pleckstrin homology domain containing A3 protein-coding 41 0.004883
+65979 PHACTR4 phosphatase and actin regulator 4 protein-coding 93 0.01108
+65980 BRD9 bromodomain containing 9 protein-coding 59 0.007026
+65981 CAPRIN2 caprin family member 2 protein-coding 128 0.01524
+65982 ZSCAN18 zinc finger and SCAN domain containing 18 protein-coding 88 0.01048
+65983 GRAMD2B GRAM domain containing 2B protein-coding 39 0.004645
+65985 AACS acetoacetyl-CoA synthetase protein-coding 72 0.008574
+65986 ZBTB10 zinc finger and BTB domain containing 10 protein-coding 70 0.008336
+65987 KCTD14 potassium channel tetramerization domain containing 14 protein-coding 32 0.003811
+65988 ZNF747 zinc finger protein 747 protein-coding 10 0.001191
+65989 DLK2 delta like non-canonical Notch ligand 2 protein-coding 39 0.004645
+65990 FAM173A family with sequence similarity 173 member A protein-coding 7 0.0008336
+65991 FUNDC2 FUN14 domain containing 2 protein-coding 27 0.003215
+65992 DDRGK1 DDRGK domain containing 1 protein-coding 33 0.00393
+65993 MRPS34 mitochondrial ribosomal protein S34 protein-coding 31 0.003692
+65997 RASL11B RAS like family 11 member B protein-coding 21 0.002501
+65998 C11orf95 chromosome 11 open reading frame 95 protein-coding 17 0.002025
+65999 LRRC61 leucine rich repeat containing 61 protein-coding 28 0.003335
+66000 TMEM108 transmembrane protein 108 protein-coding 72 0.008574
+66002 CYP4F12 cytochrome P450 family 4 subfamily F member 12 protein-coding 95 0.01131
+66004 LYNX1 Ly6/neurotoxin 1 protein-coding 24 0.002858
+66005 CHID1 chitinase domain containing 1 protein-coding 45 0.005359
+66008 TRAK2 trafficking kinesin protein 2 protein-coding 90 0.01072
+66035 SLC2A11 solute carrier family 2 member 11 protein-coding 30 0.003573
+66036 MTMR9 myotubularin related protein 9 protein-coding 135 0.01608
+66037 BOLL boule homolog, RNA binding protein protein-coding 55 0.00655
+78986 DUSP26 dual specificity phosphatase 26 protein-coding 47 0.005597
+78987 CRELD1 cysteine rich with EGF like domains 1 protein-coding 37 0.004406
+78988 MRPL57 mitochondrial ribosomal protein L57 protein-coding 12 0.001429
+78989 COLEC11 collectin subfamily member 11 protein-coding 64 0.007622
+78990 OTUB2 OTU deubiquitinase, ubiquitin aldehyde binding 2 protein-coding 26 0.003096
+78991 PCYOX1L prenylcysteine oxidase 1 like protein-coding 51 0.006074
+78992 YIPF2 Yip1 domain family member 2 protein-coding 25 0.002977
+78994 PRR14 proline rich 14 protein-coding 75 0.008932
+78995 C17orf53 chromosome 17 open reading frame 53 protein-coding 62 0.007384
+78996 CYREN cell cycle regulator of NHEJ protein-coding 24 0.002858
+78997 GDAP1L1 ganglioside induced differentiation associated protein 1 like 1 protein-coding 36 0.004287
+78999 LRFN4 leucine rich repeat and fibronectin type III domain containing 4 protein-coding 60 0.007145
+79000 AUNIP aurora kinase A and ninein interacting protein protein-coding 25 0.002977
+79001 VKORC1 vitamin K epoxide reductase complex subunit 1 protein-coding 12 0.001429
+79002 TRIR telomerase RNA component interacting RNase protein-coding 17 0.002025
+79003 MIS12 MIS12, kinetochore complex component protein-coding 24 0.002858
+79004 CUEDC2 CUE domain containing 2 protein-coding 32 0.003811
+79005 SCNM1 sodium channel modifier 1 protein-coding 30 0.003573
+79006 METRN meteorin, glial cell differentiation regulator protein-coding 10 0.001191
+79007 DBNDD1 dysbindin domain containing 1 protein-coding 27 0.003215
+79008 SLX1B SLX1 homolog B, structure-specific endonuclease subunit protein-coding 3 0.0003573
+79009 DDX50 DExD-box helicase 50 protein-coding 101 0.01203
+79012 CAMKV CaM kinase like vesicle associated protein-coding 65 0.007741
+79016 DDA1 DET1 and DDB1 associated 1 protein-coding 16 0.001905
+79017 GGCT gamma-glutamylcyclotransferase protein-coding 28 0.003335
+79018 GID4 GID complex subunit 4 homolog protein-coding 20 0.002382
+79019 CENPM centromere protein M protein-coding 14 0.001667
+79020 C7orf25 chromosome 7 open reading frame 25 protein-coding 49 0.005835
+79022 TMEM106C transmembrane protein 106C protein-coding 34 0.004049
+79023 NUP37 nucleoporin 37 protein-coding 37 0.004406
+79024 SMIM2 small integral membrane protein 2 protein-coding 5 0.0005955
+79025 FNDC11 fibronectin type III domain containing 11 protein-coding 50 0.005955
+79026 AHNAK AHNAK nucleoprotein protein-coding 504 0.06002
+79027 ZNF655 zinc finger protein 655 protein-coding 46 0.005478
+79029 SPATA5L1 spermatogenesis associated 5 like 1 protein-coding 46 0.005478
+79031 PDCL3 phosducin like 3 protein-coding 47 0.005597
+79033 ERI3 ERI1 exoribonuclease family member 3 protein-coding 40 0.004764
+79034 C7orf26 chromosome 7 open reading frame 26 protein-coding 50 0.005955
+79035 NABP2 nucleic acid binding protein 2 protein-coding 25 0.002977
+79036 KXD1 KxDL motif containing 1 protein-coding 19 0.002263
+79037 PVRIG PVR related immunoglobulin domain containing protein-coding 50 0.005955
+79038 ZFYVE21 zinc finger FYVE-type containing 21 protein-coding 20 0.002382
+79039 DDX54 DEAD-box helicase 54 protein-coding 93 0.01108
+79041 TMEM38A transmembrane protein 38A protein-coding 48 0.005716
+79042 TSEN34 tRNA splicing endonuclease subunit 34 protein-coding 40 0.004764
+79047 KCTD15 potassium channel tetramerization domain containing 15 protein-coding 38 0.004525
+79048 SECISBP2 SECIS binding protein 2 protein-coding 83 0.009884
+79050 NOC4L nucleolar complex associated 4 homolog protein-coding 60 0.007145
+79053 ALG8 ALG8, alpha-1,3-glucosyltransferase protein-coding 50 0.005955
+79054 TRPM8 transient receptor potential cation channel subfamily M member 8 protein-coding 163 0.01941
+79056 PRRG4 proline rich and Gla domain 4 protein-coding 16 0.001905
+79057 PRRG3 proline rich and Gla domain 3 protein-coding 61 0.007264
+79058 ASPSCR1 ASPSCR1, UBX domain containing tether for SLC2A4 protein-coding 63 0.007503
+79064 TMEM223 transmembrane protein 223 protein-coding 20 0.002382
+79065 ATG9A autophagy related 9A protein-coding 75 0.008932
+79066 METTL16 methyltransferase like 16 protein-coding 42 0.005002
+79068 FTO FTO, alpha-ketoglutarate dependent dioxygenase protein-coding 69 0.008217
+79070 KDELC1 KDEL motif containing 1 protein-coding 81 0.009646
+79071 ELOVL6 ELOVL fatty acid elongase 6 protein-coding 40 0.004764
+79072 FASTKD3 FAST kinase domains 3 protein-coding 95 0.01131
+79073 TMEM109 transmembrane protein 109 protein-coding 32 0.003811
+79074 C2orf49 chromosome 2 open reading frame 49 protein-coding 21 0.002501
+79075 DSCC1 DNA replication and sister chromatid cohesion 1 protein-coding 38 0.004525
+79077 DCTPP1 dCTP pyrophosphatase 1 protein-coding 15 0.001786
+79078 C1orf50 chromosome 1 open reading frame 50 protein-coding 17 0.002025
+79080 CCDC86 coiled-coil domain containing 86 protein-coding 38 0.004525
+79083 MLPH melanophilin protein-coding 58 0.006907
+79084 WDR77 WD repeat domain 77 protein-coding 31 0.003692
+79085 SLC25A23 solute carrier family 25 member 23 protein-coding 50 0.005955
+79086 SMIM7 small integral membrane protein 7 protein-coding 6 0.0007145
+79087 ALG12 ALG12, alpha-1,6-mannosyltransferase protein-coding 50 0.005955
+79088 ZNF426 zinc finger protein 426 protein-coding 65 0.007741
+79089 TMUB2 transmembrane and ubiquitin like domain containing 2 protein-coding 40 0.004764
+79090 TRAPPC6A trafficking protein particle complex 6A protein-coding 22 0.00262
+79091 METTL22 methyltransferase like 22 protein-coding 43 0.005121
+79092 CARD14 caspase recruitment domain family member 14 protein-coding 93 0.01108
+79094 CHAC1 ChaC glutathione specific gamma-glutamylcyclotransferase 1 protein-coding 22 0.00262
+79095 C9orf16 chromosome 9 open reading frame 16 protein-coding 2 0.0002382
+79096 C11orf49 chromosome 11 open reading frame 49 protein-coding 33 0.00393
+79097 TRIM48 tripartite motif containing 48 protein-coding 87 0.01036
+79098 C1orf116 chromosome 1 open reading frame 116 protein-coding 75 0.008932
+79101 TAF1D TATA-box binding protein associated factor, RNA polymerase I subunit D protein-coding 45 0.005359
+79102 RNF26 ring finger protein 26 protein-coding 44 0.00524
+79109 MAPKAP1 mitogen-activated protein kinase associated protein 1 protein-coding 72 0.008574
+79132 DHX58 DExH-box helicase 58 protein-coding 56 0.006669
+79133 NDUFAF5 NADH:ubiquinone oxidoreductase complex assembly factor 5 protein-coding 45 0.005359
+79134 TMEM185B transmembrane protein 185B protein-coding 22 0.00262
+79135 APOO apolipoprotein O protein-coding 24 0.002858
+79136 LY6G6E lymphocyte antigen 6 family member G6E pseudo 6 0.0007145
+79137 RETREG2 reticulophagy regulator family member 2 protein-coding 55 0.00655
+79139 DERL1 derlin 1 protein-coding 35 0.004168
+79140 CCDC28B coiled-coil domain containing 28B protein-coding 22 0.00262
+79142 PHF23 PHD finger protein 23 protein-coding 59 0.007026
+79143 MBOAT7 membrane bound O-acyltransferase domain containing 7 protein-coding 54 0.006431
+79144 PPDPF pancreatic progenitor cell differentiation and proliferation factor protein-coding 11 0.00131
+79145 CHCHD7 coiled-coil-helix-coiled-coil-helix domain containing 7 protein-coding 13 0.001548
+79147 FKRP fukutin related protein protein-coding 37 0.004406
+79148 MMP28 matrix metallopeptidase 28 protein-coding 66 0.00786
+79149 ZSCAN5A zinc finger and SCAN domain containing 5A protein-coding 63 0.007503
+79152 FA2H fatty acid 2-hydroxylase protein-coding 82 0.009765
+79153 GDPD3 glycerophosphodiester phosphodiesterase domain containing 3 protein-coding 46 0.005478
+79154 DHRS11 dehydrogenase/reductase 11 protein-coding 19 0.002263
+79155 TNIP2 TNFAIP3 interacting protein 2 protein-coding 41 0.004883
+79156 PLEKHF1 pleckstrin homology and FYVE domain containing 1 protein-coding 28 0.003335
+79157 MFSD11 major facilitator superfamily domain containing 11 protein-coding 57 0.006788
+79158 GNPTAB N-acetylglucosamine-1-phosphate transferase alpha and beta subunits protein-coding 138 0.01643
+79159 NOL12 nucleolar protein 12 protein-coding 27 0.003215
+79161 TMEM243 transmembrane protein 243 protein-coding 12 0.001429
+79165 LENG1 leukocyte receptor cluster member 1 protein-coding 44 0.00524
+79166 LILRP2 leukocyte immunoglobulin-like receptor pseudogene 2 pseudo 17 0.002025
+79168 LILRA6 leukocyte immunoglobulin like receptor A6 protein-coding 108 0.01286
+79169 C1orf35 chromosome 1 open reading frame 35 protein-coding 26 0.003096
+79170 PRR15L proline rich 15 like protein-coding 11 0.00131
+79171 RBM42 RNA binding motif protein 42 protein-coding 65 0.007741
+79172 CENPO centromere protein O protein-coding 28 0.003335
+79173 C19orf57 chromosome 19 open reading frame 57 protein-coding 71 0.008455
+79174 CRELD2 cysteine rich with EGF like domains 2 protein-coding 41 0.004883
+79175 ZNF343 zinc finger protein 343 protein-coding 71 0.008455
+79176 FBXL15 F-box and leucine rich repeat protein 15 protein-coding 6 0.0007145
+79177 ZNF576 zinc finger protein 576 protein-coding 26 0.003096
+79178 THTPA thiamine triphosphatase protein-coding 22 0.00262
+79180 EFHD2 EF-hand domain family member D2 protein-coding 14 0.001667
+79183 TTPAL alpha tocopherol transfer protein like protein-coding 40 0.004764
+79184 BRCC3 BRCA1/BRCA2-containing complex subunit 3 protein-coding 46 0.005478
+79187 FSD1 fibronectin type III and SPRY domain containing 1 protein-coding 54 0.006431
+79188 TMEM43 transmembrane protein 43 protein-coding 33 0.00393
+79190 IRX6 iroquois homeobox 6 protein-coding 86 0.01024
+79191 IRX3 iroquois homeobox 3 protein-coding 42 0.005002
+79192 IRX1 iroquois homeobox 1 protein-coding 144 0.01715
+79228 THOC6 THO complex 6 protein-coding 41 0.004883
+79230 ZNF557 zinc finger protein 557 protein-coding 64 0.007622
+79258 MMEL1 membrane metalloendopeptidase like 1 protein-coding 103 0.01227
+79269 DCAF10 DDB1 and CUL4 associated factor 10 protein-coding 43 0.005121
+79290 OR13A1 olfactory receptor family 13 subfamily A member 1 protein-coding 63 0.007503
+79295 OR5H6 olfactory receptor family 5 subfamily H member 6 (gene/pseudogene) protein-coding 83 0.009884
+79310 OR5H2 olfactory receptor family 5 subfamily H member 2 protein-coding 71 0.008455
+79317 OR4K5 olfactory receptor family 4 subfamily K member 5 protein-coding 109 0.01298
+79324 OR51G1 olfactory receptor family 51 subfamily G member 1 (gene/pseudogene) protein-coding 95 0.01131
+79339 OR51B4 olfactory receptor family 51 subfamily B member 4 protein-coding 66 0.00786
+79345 OR51B2 olfactory receptor family 51 subfamily B member 2 (gene/pseudogene) protein-coding 68 0.008098
+79363 CPLANE2 ciliogenesis and planar polarity effector 2 protein-coding 29 0.003454
+79364 ZXDC ZXD family zinc finger C protein-coding 75 0.008932
+79365 BHLHE41 basic helix-loop-helix family member e41 protein-coding 31 0.003692
+79366 HMGN5 high mobility group nucleosome binding domain 5 protein-coding 44 0.00524
+79368 FCRL2 Fc receptor like 2 protein-coding 108 0.01286
+79369 B3GNT4 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 4 protein-coding 51 0.006074
+79370 BCL2L14 BCL2 like 14 protein-coding 32 0.003811
+79400 NOX5 NADPH oxidase 5 protein-coding 101 0.01203
+79411 GLB1L galactosidase beta 1 like protein-coding 70 0.008336
+79412 KREMEN2 kringle containing transmembrane protein 2 protein-coding 21 0.002501
+79413 ZBED2 zinc finger BED-type containing 2 protein-coding 46 0.005478
+79414 LRFN3 leucine rich repeat and fibronectin type III domain containing 3 protein-coding 72 0.008574
+79415 CYBC1 cytochrome b-245 chaperone 1 protein-coding 22 0.00262
+79441 HAUS3 HAUS augmin like complex subunit 3 protein-coding 75 0.008932
+79442 LRRC2 leucine rich repeat containing 2 protein-coding 51 0.006074
+79443 FYCO1 FYVE and coiled-coil domain containing 1 protein-coding 198 0.02358
+79444 BIRC7 baculoviral IAP repeat containing 7 protein-coding 45 0.005359
+79446 WDR25 WD repeat domain 25 protein-coding 68 0.008098
+79447 PAGR1 PAXIP1 associated glutamate rich protein 1 protein-coding 26 0.003096
+79465 ULBP3 UL16 binding protein 3 protein-coding 28 0.003335
+79469 DLEU2L deleted in lymphocytic leukemia 2-like ncRNA 2 0.0002382
+79473 OR52N1 olfactory receptor family 52 subfamily N member 1 protein-coding 68 0.008098
+79501 OR4F5 olfactory receptor family 4 subfamily F member 5 protein-coding 7 0.0008336
+79541 OR2A4 olfactory receptor family 2 subfamily A member 4 protein-coding 35 0.004168
+79544 OR4K1 olfactory receptor family 4 subfamily K member 1 protein-coding 106 0.01262
+79567 RIPOR1 RHO family interacting cell polarization regulator 1 protein-coding 96 0.01143
+79568 MAIP1 matrix AAA peptidase interacting protein 1 protein-coding 23 0.002739
+79570 NKAIN1 sodium/potassium transporting ATPase interacting 1 protein-coding 17 0.002025
+79571 GCC1 GRIP and coiled-coil domain containing 1 protein-coding 92 0.01096
+79572 ATP13A3 ATPase 13A3 protein-coding 134 0.01596
+79573 TTC13 tetratricopeptide repeat domain 13 protein-coding 113 0.01346
+79574 EPS8L3 EPS8 like 3 protein-coding 69 0.008217
+79575 ABHD8 abhydrolase domain containing 8 protein-coding 49 0.005835
+79576 NKAP NFKB activating protein protein-coding 82 0.009765
+79577 CDC73 cell division cycle 73 protein-coding 99 0.01179
+79581 SLC52A2 solute carrier family 52 member 2 protein-coding 54 0.006431
+79582 SPAG16 sperm associated antigen 16 protein-coding 129 0.01536
+79583 TMEM231 transmembrane protein 231 protein-coding 16 0.001905
+79585 CORO7 coronin 7 protein-coding 102 0.01215
+79586 CHPF chondroitin polymerizing factor protein-coding 75 0.008932
+79587 CARS2 cysteinyl-tRNA synthetase 2, mitochondrial protein-coding 53 0.006312
+79589 RNF128 ring finger protein 128, E3 ubiquitin protein ligase protein-coding 84 0.01
+79590 MRPL24 mitochondrial ribosomal protein L24 protein-coding 27 0.003215
+79591 ARMH3 armadillo-like helical domain containing 3 protein-coding 69 0.008217
+79594 MUL1 mitochondrial E3 ubiquitin protein ligase 1 protein-coding 45 0.005359
+79595 SAP130 Sin3A associated protein 130 protein-coding 116 0.01381
+79596 RNF219 ring finger protein 219 protein-coding 89 0.0106
+79598 CEP97 centrosomal protein 97 protein-coding 88 0.01048
+79600 TCTN1 tectonic family member 1 protein-coding 53 0.006312
+79602 ADIPOR2 adiponectin receptor 2 protein-coding 43 0.005121
+79603 CERS4 ceramide synthase 4 protein-coding 44 0.00524
+79605 PGBD5 piggyBac transposable element derived 5 protein-coding 74 0.008813
+79607 FAM118B family with sequence similarity 118 member B protein-coding 46 0.005478
+79608 RIC3 RIC3 acetylcholine receptor chaperone protein-coding 64 0.007622
+79609 VCPKMT valosin containing protein lysine methyltransferase protein-coding 19 0.002263
+79611 ACSS3 acyl-CoA synthetase short chain family member 3 protein-coding 145 0.01727
+79612 NAA16 N(alpha)-acetyltransferase 16, NatA auxiliary subunit protein-coding 99 0.01179
+79613 TANGO6 transport and golgi organization 6 homolog protein-coding 112 0.01334
+79616 CCNJL cyclin J like protein-coding 51 0.006074
+79618 HMBOX1 homeobox containing 1 protein-coding 43 0.005121
+79621 RNASEH2B ribonuclease H2 subunit B protein-coding 27 0.003215
+79622 SNRNP25 small nuclear ribonucleoprotein U11/U12 subunit 25 protein-coding 12 0.001429
+79623 GALNT14 polypeptide N-acetylgalactosaminyltransferase 14 protein-coding 199 0.0237
+79624 ARMT1 acidic residue methyltransferase 1 protein-coding 51 0.006074
+79625 NDNF neuron derived neurotrophic factor protein-coding 87 0.01036
+79626 TNFAIP8L2 TNF alpha induced protein 8 like 2 protein-coding 27 0.003215
+79627 OGFRL1 opioid growth factor receptor like 1 protein-coding 55 0.00655
+79628 SH3TC2 SH3 domain and tetratricopeptide repeats 2 protein-coding 131 0.0156
+79629 OCEL1 occludin/ELL domain containing 1 protein-coding 30 0.003573
+79630 C1orf54 chromosome 1 open reading frame 54 protein-coding 21 0.002501
+79631 EFL1 elongation factor like GTPase 1 protein-coding 105 0.0125
+79632 FAM184A family with sequence similarity 184 member A protein-coding 150 0.01786
+79633 FAT4 FAT atypical cadherin 4 protein-coding 666 0.07931
+79634 SCRN3 secernin 3 protein-coding 55 0.00655
+79635 CCDC121 coiled-coil domain containing 121 protein-coding 46 0.005478
+79637 ARMC7 armadillo repeat containing 7 protein-coding 23 0.002739
+79639 TMEM53 transmembrane protein 53 protein-coding 28 0.003335
+79640 C22orf46 chromosome 22 open reading frame 46 protein-coding 10 0.001191
+79641 ROGDI rogdi homolog protein-coding 17 0.002025
+79642 ARSJ arylsulfatase family member J protein-coding 79 0.009408
+79643 CHMP6 charged multivesicular body protein 6 protein-coding 25 0.002977
+79644 SRD5A3 steroid 5 alpha-reductase 3 protein-coding 37 0.004406
+79645 EFCAB1 EF-hand calcium binding domain 1 protein-coding 48 0.005716
+79646 PANK3 pantothenate kinase 3 protein-coding 43 0.005121
+79647 AKIRIN1 akirin 1 protein-coding 10 0.001191
+79648 MCPH1 microcephalin 1 protein-coding 85 0.01012
+79649 MAP7D3 MAP7 domain containing 3 protein-coding 132 0.01572
+79650 USB1 U6 snRNA biogenesis phosphodiesterase 1 protein-coding 28 0.003335
+79651 RHBDF2 rhomboid 5 homolog 2 protein-coding 159 0.01894
+79652 TMEM204 transmembrane protein 204 protein-coding 29 0.003454
+79654 HECTD3 HECT domain E3 ubiquitin protein ligase 3 protein-coding 69 0.008217
+79656 BEND5 BEN domain containing 5 protein-coding 53 0.006312
+79657 RPAP3 RNA polymerase II associated protein 3 protein-coding 54 0.006431
+79658 ARHGAP10 Rho GTPase activating protein 10 protein-coding 82 0.009765
+79659 DYNC2H1 dynein cytoplasmic 2 heavy chain 1 protein-coding 352 0.04192
+79660 PPP1R3B protein phosphatase 1 regulatory subunit 3B protein-coding 32 0.003811
+79661 NEIL1 nei like DNA glycosylase 1 protein-coding 51 0.006074
+79663 HSPBAP1 HSPB1 associated protein 1 protein-coding 48 0.005716
+79664 ICE2 interactor of little elongation complex ELL subunit 2 protein-coding 101 0.01203
+79665 DHX40 DEAH-box helicase 40 protein-coding 71 0.008455
+79666 PLEKHF2 pleckstrin homology and FYVE domain containing 2 protein-coding 34 0.004049
+79668 PARP8 poly(ADP-ribose) polymerase family member 8 protein-coding 116 0.01381
+79669 C3orf52 chromosome 3 open reading frame 52 protein-coding 16 0.001905
+79670 ZCCHC6 zinc finger CCHC-type containing 6 protein-coding 147 0.01751
+79671 NLRX1 NLR family member X1 protein-coding 116 0.01381
+79672 FN3KRP fructosamine 3 kinase related protein protein-coding 29 0.003454
+79673 ZNF329 zinc finger protein 329 protein-coding 90 0.01072
+79674 VEPH1 ventricular zone expressed PH domain containing 1 protein-coding 117 0.01393
+79675 FASTKD1 FAST kinase domains 1 protein-coding 103 0.01227
+79676 OGFOD2 2-oxoglutarate and iron dependent oxygenase domain containing 2 protein-coding 31 0.003692
+79677 SMC6 structural maintenance of chromosomes 6 protein-coding 117 0.01393
+79679 VTCN1 V-set domain containing T cell activation inhibitor 1 protein-coding 33 0.00393
+79680 RTL10 retrotransposon Gag like 10 protein-coding 43 0.005121
+79682 CENPU centromere protein U protein-coding 39 0.004645
+79683 ZDHHC14 zinc finger DHHC-type containing 14 protein-coding 56 0.006669
+79684 MSANTD2 Myb/SANT DNA binding domain containing 2 protein-coding 40 0.004764
+79685 SAP30L SAP30 like protein-coding 17 0.002025
+79689 STEAP4 STEAP4 metalloreductase protein-coding 84 0.01
+79690 GAL3ST4 galactose-3-O-sulfotransferase 4 protein-coding 79 0.009408
+79691 QTRT2 queuine tRNA-ribosyltransferase accessory subunit 2 protein-coding 42 0.005002
+79692 ZNF322 zinc finger protein 322 protein-coding 38 0.004525
+79693 YRDC yrdC N6-threonylcarbamoyltransferase domain containing protein-coding 17 0.002025
+79694 MANEA mannosidase endo-alpha protein-coding 84 0.01
+79695 GALNT12 polypeptide N-acetylgalactosaminyltransferase 12 protein-coding 66 0.00786
+79696 ZC2HC1C zinc finger C2HC-type containing 1C protein-coding 38 0.004525
+79698 ZMAT4 zinc finger matrin-type 4 protein-coding 59 0.007026
+79699 ZYG11B zyg-11 family member B, cell cycle regulator protein-coding 72 0.008574
+79701 OGFOD3 2-oxoglutarate and iron dependent oxygenase domain containing 3 protein-coding 37 0.004406
+79703 C11orf80 chromosome 11 open reading frame 80 protein-coding 55 0.00655
+79705 LRRK1 leucine rich repeat kinase 1 protein-coding 189 0.02251
+79706 PRKRIP1 PRKR interacting protein 1 protein-coding 23 0.002739
+79707 NOL9 nucleolar protein 9 protein-coding 61 0.007264
+79709 COLGALT1 collagen beta(1-O)galactosyltransferase 1 protein-coding 76 0.009051
+79710 MORC4 MORC family CW-type zinc finger 4 protein-coding 125 0.01489
+79711 IPO4 importin 4 protein-coding 88 0.01048
+79712 GTDC1 glycosyltransferase like domain containing 1 protein-coding 98 0.01167
+79713 IGFLR1 IGF like family receptor 1 protein-coding 39 0.004645
+79714 CCDC51 coiled-coil domain containing 51 protein-coding 40 0.004764
+79716 NPEPL1 aminopeptidase like 1 protein-coding 72 0.008574
+79717 PPCS phosphopantothenoylcysteine synthetase protein-coding 35 0.004168
+79718 TBL1XR1 transducin beta like 1 X-linked receptor 1 protein-coding 110 0.0131
+79719 AAGAB alpha and gamma adaptin binding protein protein-coding 35 0.004168
+79720 VPS37B VPS37B, ESCRT-I subunit protein-coding 33 0.00393
+79722 ANKRD55 ankyrin repeat domain 55 protein-coding 80 0.009527
+79723 SUV39H2 suppressor of variegation 3-9 homolog 2 protein-coding 39 0.004645
+79724 ZNF768 zinc finger protein 768 protein-coding 72 0.008574
+79725 THAP9 THAP domain containing 9 protein-coding 79 0.009408
+79726 WDR59 WD repeat domain 59 protein-coding 104 0.01239
+79727 LIN28A lin-28 homolog A protein-coding 30 0.003573
+79728 PALB2 partner and localizer of BRCA2 protein-coding 119 0.01417
+79729 SH3D21 SH3 domain containing 21 protein-coding 53 0.006312
+79730 NSUN7 NOP2/Sun RNA methyltransferase family member 7 protein-coding 61 0.007264
+79731 NARS2 asparaginyl-tRNA synthetase 2, mitochondrial protein-coding 60 0.007145
+79733 E2F8 E2F transcription factor 8 protein-coding 110 0.0131
+79734 KCTD17 potassium channel tetramerization domain containing 17 protein-coding 21 0.002501
+79735 TBC1D17 TBC1 domain family member 17 protein-coding 61 0.007264
+79736 TEFM transcription elongation factor, mitochondrial protein-coding 40 0.004764
+79738 BBS10 Bardet-Biedl syndrome 10 protein-coding 73 0.008694
+79739 TTLL7 tubulin tyrosine ligase like 7 protein-coding 138 0.01643
+79740 ZBBX zinc finger B-box domain containing protein-coding 213 0.02537
+79741 CCDC7 coiled-coil domain containing 7 protein-coding 53 0.006312
+79742 CXorf36 chromosome X open reading frame 36 protein-coding 51 0.006074
+79744 ZNF419 zinc finger protein 419 protein-coding 74 0.008813
+79745 CLIP4 CAP-Gly domain containing linker protein family member 4 protein-coding 91 0.01084
+79746 ECHDC3 enoyl-CoA hydratase domain containing 3 protein-coding 26 0.003096
+79747 ADGB androglobin protein-coding 119 0.01417
+79748 LMAN1L lectin, mannose binding 1 like protein-coding 68 0.008098
+79750 ZNF385D zinc finger protein 385D protein-coding 157 0.0187
+79751 SLC25A22 solute carrier family 25 member 22 protein-coding 36 0.004287
+79752 ZFAND1 zinc finger AN1-type containing 1 protein-coding 37 0.004406
+79753 SNIP1 Smad nuclear interacting protein 1 protein-coding 51 0.006074
+79754 ASB13 ankyrin repeat and SOCS box containing 13 protein-coding 29 0.003454
+79755 ZNF750 zinc finger protein 750 protein-coding 114 0.01358
+79758 DHRS12 dehydrogenase/reductase 12 protein-coding 28 0.003335
+79759 ZNF668 zinc finger protein 668 protein-coding 83 0.009884
+79760 GEMIN7 gem nuclear organelle associated protein 7 protein-coding 21 0.002501
+79762 C1orf115 chromosome 1 open reading frame 115 protein-coding 7 0.0008336
+79763 ISOC2 isochorismatase domain containing 2 protein-coding 28 0.003335
+79767 ELMO3 engulfment and cell motility 3 protein-coding 65 0.007741
+79768 KATNBL1 katanin regulatory subunit B1 like 1 protein-coding 39 0.004645
+79770 TXNDC15 thioredoxin domain containing 15 protein-coding 34 0.004049
+79772 MCTP1 multiple C2 and transmembrane domain containing 1 protein-coding 137 0.01632
+79774 GRTP1 growth hormone regulated TBC protein 1 protein-coding 36 0.004287
+79776 ZFHX4 zinc finger homeobox 4 protein-coding 790 0.09408
+79777 ACBD4 acyl-CoA binding domain containing 4 protein-coding 38 0.004525
+79778 MICALL2 MICAL like 2 protein-coding 86 0.01024
+79780 CCDC82 coiled-coil domain containing 82 protein-coding 68 0.008098
+79781 IQCA1 IQ motif containing with AAA domain 1 protein-coding 106 0.01262
+79782 LRRC31 leucine rich repeat containing 31 protein-coding 82 0.009765
+79783 SUGCT succinyl-CoA:glutarate-CoA transferase protein-coding 76 0.009051
+79784 MYH14 myosin heavy chain 14 protein-coding 211 0.02513
+79785 RERGL RERG like protein-coding 36 0.004287
+79786 KLHL36 kelch like family member 36 protein-coding 74 0.008813
+79788 ZNF665 zinc finger protein 665 protein-coding 136 0.0162
+79789 CLMN calmin protein-coding 130 0.01548
+79791 FBXO31 F-box protein 31 protein-coding 64 0.007622
+79792 GSDMD gasdermin D protein-coding 44 0.00524
+79794 C12orf49 chromosome 12 open reading frame 49 protein-coding 21 0.002501
+79796 ALG9 ALG9, alpha-1,2-mannosyltransferase protein-coding 34 0.004049
+79797 ZNF408 zinc finger protein 408 protein-coding 71 0.008455
+79798 ARMC5 armadillo repeat containing 5 protein-coding 103 0.01227
+79799 UGT2A3 UDP glucuronosyltransferase family 2 member A3 protein-coding 104 0.01239
+79800 CARF calcium responsive transcription factor protein-coding 89 0.0106
+79801 SHCBP1 SHC binding and spindle associated 1 protein-coding 52 0.006193
+79802 HHIPL2 HHIP like 2 protein-coding 153 0.01822
+79803 HPS6 HPS6, biogenesis of lysosomal organelles complex 2 subunit 3 protein-coding 60 0.007145
+79804 HAND2-AS1 HAND2 antisense RNA 1 ncRNA 10 0.001191
+79805 VASH2 vasohibin 2 protein-coding 29 0.003454
+79807 GSTCD glutathione S-transferase C-terminal domain containing protein-coding 67 0.007979
+79809 TTC21B tetratricopeptide repeat domain 21B protein-coding 142 0.01691
+79810 PTCD2 pentatricopeptide repeat domain 2 protein-coding 39 0.004645
+79811 SLTM SAFB like transcription modulator protein-coding 114 0.01358
+79812 MMRN2 multimerin 2 protein-coding 158 0.01882
+79813 EHMT1 euchromatic histone lysine methyltransferase 1 protein-coding 136 0.0162
+79814 AGMAT agmatinase protein-coding 29 0.003454
+79815 NIPAL2 NIPA like domain containing 2 protein-coding 36 0.004287
+79816 TLE6 transducin like enhancer of split 6 protein-coding 62 0.007384
+79817 MOB3B MOB kinase activator 3B protein-coding 27 0.003215
+79818 ZNF552 zinc finger protein 552 protein-coding 44 0.00524
+79819 WDR78 WD repeat domain 78 protein-coding 133 0.01584
+79820 CATSPERB cation channel sperm associated auxiliary subunit beta protein-coding 133 0.01584
+79822 ARHGAP28 Rho GTPase activating protein 28 protein-coding 108 0.01286
+79823 CAMKMT calmodulin-lysine N-methyltransferase protein-coding 38 0.004525
+79825 EFCC1 EF-hand and coiled-coil domain containing 1 protein-coding 35 0.004168
+79827 CLMP CXADR like membrane protein protein-coding 52 0.006193
+79828 METTL8 methyltransferase like 8 protein-coding 38 0.004525
+79829 NAA40 N(alpha)-acetyltransferase 40, NatD catalytic subunit protein-coding 19 0.002263
+79830 ZMYM1 zinc finger MYM-type containing 1 protein-coding 120 0.01429
+79831 KDM8 lysine demethylase 8 protein-coding 43 0.005121
+79832 QSER1 glutamine and serine rich 1 protein-coding 156 0.01858
+79833 GEMIN6 gem nuclear organelle associated protein 6 protein-coding 18 0.002144
+79834 PEAK1 pseudopodium enriched atypical kinase 1 protein-coding 192 0.02287
+79836 LONRF3 LON peptidase N-terminal domain and ring finger 3 protein-coding 91 0.01084
+79837 PIP4K2C phosphatidylinositol-5-phosphate 4-kinase type 2 gamma protein-coding 54 0.006431
+79838 TMC5 transmembrane channel like 5 protein-coding 133 0.01584
+79839 CCDC102B coiled-coil domain containing 102B protein-coding 106 0.01262
+79840 NHEJ1 non-homologous end joining factor 1 protein-coding 31 0.003692
+79841 AGBL2 ATP/GTP binding protein like 2 protein-coding 106 0.01262
+79842 ZBTB3 zinc finger and BTB domain containing 3 protein-coding 62 0.007384
+79843 FAM124B family with sequence similarity 124 member B protein-coding 58 0.006907
+79844 ZDHHC11 zinc finger DHHC-type containing 11 protein-coding 47 0.005597
+79845 RNF122 ring finger protein 122 protein-coding 21 0.002501
+79846 CFAP69 cilia and flagella associated protein 69 protein-coding 121 0.01441
+79847 MFSD13A major facilitator superfamily domain containing 13A protein-coding 43 0.005121
+79848 CSPP1 centrosome and spindle pole associated protein 1 protein-coding 157 0.0187
+79849 PDZD3 PDZ domain containing 3 protein-coding 47 0.005597
+79850 FAM57A family with sequence similarity 57 member A protein-coding 17 0.002025
+79852 EPHX3 epoxide hydrolase 3 protein-coding 42 0.005002
+79853 TM4SF20 transmembrane 4 L six family member 20 protein-coding 21 0.002501
+79854 LINC00115 long intergenic non-protein coding RNA 115 ncRNA 17 0.002025
+79856 SNX22 sorting nexin 22 protein-coding 18 0.002144
+79858 NEK11 NIMA related kinase 11 protein-coding 88 0.01048
+79861 TUBAL3 tubulin alpha like 3 protein-coding 63 0.007503
+79862 ZNF669 zinc finger protein 669 protein-coding 50 0.005955
+79863 RBFA ribosome binding factor A protein-coding 36 0.004287
+79864 JHY junctional cadherin complex regulator protein-coding 134 0.01596
+79865 TREML2 triggering receptor expressed on myeloid cells like 2 protein-coding 44 0.00524
+79866 BORA bora, aurora kinase A activator protein-coding 48 0.005716
+79867 TCTN2 tectonic family member 2 protein-coding 77 0.00917
+79868 ALG13 ALG13, UDP-N-acetylglucosaminyltransferase subunit protein-coding 143 0.01703
+79869 CPSF7 cleavage and polyadenylation specific factor 7 protein-coding 65 0.007741
+79870 BAALC BAALC, MAP3K1 and KLF4 binding protein-coding 19 0.002263
+79871 RPAP2 RNA polymerase II associated protein 2 protein-coding 64 0.007622
+79872 CBLL1 Cbl proto-oncogene like 1 protein-coding 70 0.008336
+79873 NUDT18 nudix hydrolase 18 protein-coding 24 0.002858
+79874 RABEP2 rabaptin, RAB GTPase binding effector protein 2 protein-coding 74 0.008813
+79875 THSD4 thrombospondin type 1 domain containing 4 protein-coding 131 0.0156
+79876 UBA5 ubiquitin like modifier activating enzyme 5 protein-coding 41 0.004883
+79877 DCAKD dephospho-CoA kinase domain containing protein-coding 32 0.003811
+79879 CCDC134 coiled-coil domain containing 134 protein-coding 24 0.002858
+79882 ZC3H14 zinc finger CCCH-type containing 14 protein-coding 89 0.0106
+79883 PODNL1 podocan like 1 protein-coding 34 0.004049
+79884 MAP9 microtubule associated protein 9 protein-coding 111 0.01322
+79885 HDAC11 histone deacetylase 11 protein-coding 55 0.00655
+79886 CAAP1 caspase activity and apoptosis inhibitor 1 protein-coding 28 0.003335
+79887 PLBD1 phospholipase B domain containing 1 protein-coding 55 0.00655
+79888 LPCAT1 lysophosphatidylcholine acyltransferase 1 protein-coding 128 0.01524
+79890 RIN3 Ras and Rab interactor 3 protein-coding 99 0.01179
+79891 ZNF671 zinc finger protein 671 protein-coding 77 0.00917
+79892 MCMBP minichromosome maintenance complex binding protein protein-coding 53 0.006312
+79893 GGNBP2 gametogenetin binding protein 2 protein-coding 90 0.01072
+79894 ZNF672 zinc finger protein 672 protein-coding 48 0.005716
+79895 ATP8B4 ATPase phospholipid transporting 8B4 (putative) protein-coding 186 0.02215
+79896 THNSL1 threonine synthase like 1 protein-coding 73 0.008694
+79897 RPP21 ribonuclease P/MRP subunit p21 protein-coding 11 0.00131
+79898 ZNF613 zinc finger protein 613 protein-coding 84 0.01
+79899 PRR5L proline rich 5 like protein-coding 51 0.006074
+79901 CYBRD1 cytochrome b reductase 1 protein-coding 33 0.00393
+79902 NUP85 nucleoporin 85 protein-coding 63 0.007503
+79903 NAA60 N(alpha)-acetyltransferase 60, NatF catalytic subunit protein-coding 26 0.003096
+79905 TMC7 transmembrane channel like 7 protein-coding 79 0.009408
+79906 MORN1 MORN repeat containing 1 protein-coding 55 0.00655
+79908 BTNL8 butyrophilin like 8 protein-coding 92 0.01096
+79912 PYROXD1 pyridine nucleotide-disulphide oxidoreductase domain 1 protein-coding 49 0.005835
+79913 ACTR5 ARP5 actin related protein 5 homolog protein-coding 67 0.007979
+79915 ATAD5 ATPase family, AAA domain containing 5 protein-coding 201 0.02394
+79917 MAGIX MAGI family member, X-linked protein-coding 58 0.006907
+79918 SETD6 SET domain containing 6 protein-coding 39 0.004645
+79919 C2orf54 chromosome 2 open reading frame 54 protein-coding 36 0.004287
+79921 TCEAL4 transcription elongation factor A like 4 protein-coding 30 0.003573
+79922 MRM1 mitochondrial rRNA methyltransferase 1 protein-coding 40 0.004764
+79923 NANOG Nanog homeobox protein-coding 40 0.004764
+79924 ADM2 adrenomedullin 2 protein-coding 11 0.00131
+79925 SPEF2 sperm flagellar 2 protein-coding 284 0.03382
+79927 FAM110D family with sequence similarity 110 member D protein-coding 9 0.001072
+79929 MAP6D1 MAP6 domain containing 1 protein-coding 9 0.001072
+79930 DOK3 docking protein 3 protein-coding 48 0.005716
+79931 TNIP3 TNFAIP3 interacting protein 3 protein-coding 85 0.01012
+79932 KIAA0319L KIAA0319 like protein-coding 115 0.0137
+79933 SYNPO2L synaptopodin 2 like protein-coding 89 0.0106
+79934 COQ8B coenzyme Q8B protein-coding 51 0.006074
+79935 CNTD2 cyclin N-terminal domain containing 2 protein-coding 21 0.002501
+79937 CNTNAP3 contactin associated protein like 3 protein-coding 148 0.01763
+79939 SLC35E1 solute carrier family 35 member E1 protein-coding 32 0.003811
+79940 LINC00472 long intergenic non-protein coding RNA 472 ncRNA 1 0.0001191
+79943 ZNF696 zinc finger protein 696 protein-coding 32 0.003811
+79944 L2HGDH L-2-hydroxyglutarate dehydrogenase protein-coding 45 0.005359
+79946 C10orf95 chromosome 10 open reading frame 95 protein-coding 7 0.0008336
+79947 DHDDS dehydrodolichyl diphosphate synthase subunit protein-coding 250 0.02977
+79948 PLPPR3 phospholipid phosphatase related 3 protein-coding 88 0.01048
+79949 PLEKHS1 pleckstrin homology domain containing S1 protein-coding 56 0.006669
+79953 SYNDIG1 synapse differentiation inducing 1 protein-coding 66 0.00786
+79954 NOL10 nucleolar protein 10 protein-coding 53 0.006312
+79955 PDZD7 PDZ domain containing 7 protein-coding 58 0.006907
+79956 ERMP1 endoplasmic reticulum metallopeptidase 1 protein-coding 67 0.007979
+79957 PAQR6 progestin and adipoQ receptor family member 6 protein-coding 39 0.004645
+79958 DENND1C DENN domain containing 1C protein-coding 81 0.009646
+79959 CEP76 centrosomal protein 76 protein-coding 74 0.008813
+79960 JADE1 jade family PHD finger 1 protein-coding 84 0.01
+79961 DENND2D DENN domain containing 2D protein-coding 59 0.007026
+79962 DNAJC22 DnaJ heat shock protein family (Hsp40) member C22 protein-coding 41 0.004883
+79963 ABCA11P ATP binding cassette subfamily A member 11, pseudogene pseudo 70 0.008336
+79966 SCD5 stearoyl-CoA desaturase 5 protein-coding 38 0.004525
+79968 WDR76 WD repeat domain 76 protein-coding 57 0.006788
+79969 ATAT1 alpha tubulin acetyltransferase 1 protein-coding 98 0.01167
+79970 ZNF767P zinc finger family member 767, pseudogene pseudo 42 0.005002
+79971 WLS wntless Wnt ligand secretion mediator protein-coding 50 0.005955
+79973 ZNF442 zinc finger protein 442 protein-coding 93 0.01108
+79974 CPED1 cadherin like and PC-esterase domain containing 1 protein-coding 187 0.02227
+79977 GRHL2 grainyhead like transcription factor 2 protein-coding 75 0.008932
+79979 TRMT2B tRNA methyltransferase 2 homolog B protein-coding 66 0.00786
+79980 DSN1 DSN1 homolog, MIS12 kinetochore complex component protein-coding 51 0.006074
+79981 FRMD1 FERM domain containing 1 protein-coding 66 0.00786
+79982 DNAJB14 DnaJ heat shock protein family (Hsp40) member B14 protein-coding 33 0.00393
+79983 POF1B POF1B, actin binding protein protein-coding 107 0.01274
+79986 ZNF702P zinc finger protein 702, pseudogene pseudo 116 0.01381
+79987 SVEP1 sushi, von Willebrand factor type A, EGF and pentraxin domain containing 1 protein-coding 369 0.04394
+79989 TTC26 tetratricopeptide repeat domain 26 protein-coding 57 0.006788
+79990 PLEKHH3 pleckstrin homology, MyTH4 and FERM domain containing H3 protein-coding 86 0.01024
+79991 STN1 STN1, CST complex subunit protein-coding 42 0.005002
+79993 ELOVL7 ELOVL fatty acid elongase 7 protein-coding 42 0.005002
+79998 ANKRD53 ankyrin repeat domain 53 protein-coding 50 0.005955
+80000 GREB1L GREB1 like retinoic acid receptor coactivator protein-coding 97 0.01155
+80003 PCNX2 pecanex homolog 2 protein-coding 244 0.02906
+80004 ESRP2 epithelial splicing regulatory protein 2 protein-coding 73 0.008694
+80005 DOCK5 dedicator of cytokinesis 5 protein-coding 188 0.02239
+80006 TRAPPC13 trafficking protein particle complex 13 protein-coding 35 0.004168
+80007 C10orf88 chromosome 10 open reading frame 88 protein-coding 59 0.007026
+80008 TMEM156 transmembrane protein 156 protein-coding 36 0.004287
+80010 RMI1 RecQ mediated genome instability 1 protein-coding 53 0.006312
+80011 FAM192A family with sequence similarity 192 member A protein-coding 24 0.002858
+80012 PHC3 polyhomeotic homolog 3 protein-coding 82 0.009765
+80013 MINDY3 MINDY lysine 48 deubiquitinase 3 protein-coding 65 0.007741
+80014 WWC2 WW and C2 domain containing 2 protein-coding 115 0.0137
+80017 DGLUCY D-glutamate cyclase protein-coding 55 0.00655
+80018 NAA25 N(alpha)-acetyltransferase 25, NatB auxiliary subunit protein-coding 118 0.01405
+80019 UBTD1 ubiquitin domain containing 1 protein-coding 28 0.003335
+80020 FOXRED2 FAD dependent oxidoreductase domain containing 2 protein-coding 82 0.009765
+80021 TMEM62 transmembrane protein 62 protein-coding 67 0.007979
+80022 MYO15B myosin XVB protein-coding 28 0.003335
+80023 NRSN2 neurensin 2 protein-coding 27 0.003215
+80024 SLC8B1 solute carrier family 8 member B1 protein-coding 58 0.006907
+80025 PANK2 pantothenate kinase 2 protein-coding 46 0.005478
+80028 FBXL18 F-box and leucine rich repeat protein 18 protein-coding 66 0.00786
+80031 SEMA6D semaphorin 6D protein-coding 197 0.02346
+80032 ZNF556 zinc finger protein 556 protein-coding 71 0.008455
+80034 CSRNP3 cysteine and serine rich nuclear protein 3 protein-coding 107 0.01274
+80036 TRPM3 transient receptor potential cation channel subfamily M member 3 protein-coding 254 0.03025
+80039 FAM106A family with sequence similarity 106 member A protein-coding 5 0.0005955
+80045 GPR157 G protein-coupled receptor 157 protein-coding 31 0.003692
+80055 PGAP1 post-GPI attachment to proteins 1 protein-coding 99 0.01179
+80059 LRRTM4 leucine rich repeat transmembrane neuronal 4 protein-coding 189 0.02251
+80063 ATF7IP2 activating transcription factor 7 interacting protein 2 protein-coding 74 0.008813
+80067 DCAF17 DDB1 and CUL4 associated factor 17 protein-coding 49 0.005835
+80069 LINC00574 long intergenic non-protein coding RNA 574 ncRNA 20 0.002382
+80070 ADAMTS20 ADAM metallopeptidase with thrombospondin type 1 motif 20 protein-coding 331 0.03942
+80071 CCDC15 coiled-coil domain containing 15 protein-coding 86 0.01024
+80086 TUBA4B tubulin alpha 4b protein-coding 69 0.008217
+80095 ZNF606 zinc finger protein 606 protein-coding 106 0.01262
+80097 MZT2B mitotic spindle organizing protein 2B protein-coding 15 0.001786
+80099 C7orf69 chromosome 7 open reading frame 69 protein-coding 9 0.001072
+80108 ZFP2 ZFP2 zinc finger protein protein-coding 77 0.00917
+80110 ZNF614 zinc finger protein 614 protein-coding 79 0.009408
+80111 C3orf36 chromosome 3 open reading frame 36 protein-coding 27 0.003215
+80114 BICC1 BicC family RNA binding protein 1 protein-coding 154 0.01834
+80115 BAIAP2L2 BAI1 associated protein 2 like 2 protein-coding 32 0.003811
+80117 ARL14 ADP ribosylation factor like GTPase 14 protein-coding 23 0.002739
+80119 PIF1 PIF1 5'-to-3' DNA helicase protein-coding 44 0.00524
+80122 MAP3K19 mitogen-activated protein kinase kinase kinase 19 protein-coding 181 0.02156
+80124 VCPIP1 valosin containing protein interacting protein 1 protein-coding 135 0.01608
+80125 CCDC33 coiled-coil domain containing 33 protein-coding 99 0.01179
+80127 BBOF1 basal body orientation factor 1 protein-coding 56 0.006669
+80128 TRIM46 tripartite motif containing 46 protein-coding 94 0.01119
+80129 CCDC170 coiled-coil domain containing 170 protein-coding 112 0.01334
+80131 LRRC8E leucine rich repeat containing 8 VRAC subunit E protein-coding 71 0.008455
+80133 MROH9 maestro heat like repeat family member 9 protein-coding 139 0.01655
+80135 RPF1 ribosome production factor 1 homolog protein-coding 34 0.004049
+80139 ZNF703 zinc finger protein 703 protein-coding 28 0.003335
+80142 PTGES2 prostaglandin E synthase 2 protein-coding 198 0.02358
+80143 SIKE1 suppressor of IKBKE 1 protein-coding 20 0.002382
+80144 FRAS1 Fraser extracellular matrix complex subunit 1 protein-coding 384 0.04573
+80145 THOC7 THO complex 7 protein-coding 21 0.002501
+80146 UXS1 UDP-glucuronate decarboxylase 1 protein-coding 59 0.007026
+80148 PQLC1 PQ loop repeat containing 1 protein-coding 32 0.003811
+80149 ZC3H12A zinc finger CCCH-type containing 12A protein-coding 93 0.01108
+80150 ASRGL1 asparaginase like 1 protein-coding 33 0.00393
+80152 CENPT centromere protein T protein-coding 49 0.005835
+80153 EDC3 enhancer of mRNA decapping 3 protein-coding 49 0.005835
+80155 NAA15 N(alpha)-acetyltransferase 15, NatA auxiliary subunit protein-coding 118 0.01405
+80157 CWH43 cell wall biogenesis 43 C-terminal homolog protein-coding 129 0.01536
+80162 PGGHG protein-glucosylgalactosylhydroxylysine glucosidase protein-coding 66 0.00786
+80167 ABHD18 abhydrolase domain containing 18 protein-coding 40 0.004764
+80168 MOGAT2 monoacylglycerol O-acyltransferase 2 protein-coding 100 0.01191
+80169 CTC1 CST telomere replication complex component 1 protein-coding 114 0.01358
+80173 IFT74 intraflagellar transport 74 protein-coding 54 0.006431
+80174 DBF4B DBF4 zinc finger B protein-coding 61 0.007264
+80176 SPSB1 splA/ryanodine receptor domain and SOCS box containing 1 protein-coding 34 0.004049
+80177 MYCT1 MYC target 1 protein-coding 73 0.008694
+80178 TEDC2 tubulin epsilon and delta complex 2 protein-coding 44 0.00524
+80179 MYO19 myosin XIX protein-coding 94 0.01119
+80183 RUBCNL RUN and cysteine rich domain containing beclin 1 interacting protein like protein-coding 76 0.009051
+80184 CEP290 centrosomal protein 290 protein-coding 234 0.02787
+80185 TTI2 TELO2 interacting protein 2 protein-coding 51 0.006074
+80194 TMEM134 transmembrane protein 134 protein-coding 10 0.001191
+80195 TMEM254 transmembrane protein 254 protein-coding 17 0.002025
+80196 RNF34 ring finger protein 34 protein-coding 28 0.003335
+80198 MUS81 MUS81 structure-specific endonuclease subunit protein-coding 51 0.006074
+80199 FUZ fuzzy planar cell polarity protein protein-coding 36 0.004287
+80201 HKDC1 hexokinase domain containing 1 protein-coding 119 0.01417
+80204 FBXO11 F-box protein 11 protein-coding 95 0.01131
+80205 CHD9 chromodomain helicase DNA binding protein 9 protein-coding 244 0.02906
+80206 FHOD3 formin homology 2 domain containing 3 protein-coding 207 0.02465
+80207 OPA3 OPA3, outer mitochondrial membrane lipid metabolism regulator protein-coding 17 0.002025
+80208 SPG11 SPG11, spatacsin vesicle trafficking associated protein-coding 194 0.0231
+80209 PROSER1 proline and serine rich 1 protein-coding 104 0.01239
+80210 ARMC9 armadillo repeat containing 9 protein-coding 71 0.008455
+80212 CCDC92 coiled-coil domain containing 92 protein-coding 52 0.006193
+80213 TM2D3 TM2 domain containing 3 protein-coding 26 0.003096
+80216 ALPK1 alpha kinase 1 protein-coding 151 0.01798
+80217 CFAP43 cilia and flagella associated protein 43 protein-coding 171 0.02036
+80218 NAA50 N(alpha)-acetyltransferase 50, NatE catalytic subunit protein-coding 16 0.001905
+80219 COQ10B coenzyme Q10B protein-coding 29 0.003454
+80221 ACSF2 acyl-CoA synthetase family member 2 protein-coding 69 0.008217
+80222 TARS2 threonyl-tRNA synthetase 2, mitochondrial protein-coding 91 0.01084
+80223 RAB11FIP1 RAB11 family interacting protein 1 protein-coding 127 0.01512
+80224 NUBPL nucleotide binding protein like protein-coding 31 0.003692
+80227 PAAF1 proteasomal ATPase associated factor 1 protein-coding 44 0.00524
+80228 ORAI2 ORAI calcium release-activated calcium modulator 2 protein-coding 29 0.003454
+80230 RUFY1 RUN and FYVE domain containing 1 protein-coding 72 0.008574
+80231 CXorf21 chromosome X open reading frame 21 protein-coding 64 0.007622
+80232 WDR26 WD repeat domain 26 protein-coding 57 0.006788
+80233 FAAP100 Fanconi anemia core complex associated protein 100 protein-coding 70 0.008336
+80235 PIGZ phosphatidylinositol glycan anchor biosynthesis class Z protein-coding 55 0.00655
+80237 ELL3 elongation factor for RNA polymerase II 3 protein-coding 49 0.005835
+80243 PREX2 phosphatidylinositol-3,4,5-trisphosphate dependent Rac exchange factor 2 protein-coding 322 0.03835
+80254 CEP63 centrosomal protein 63 protein-coding 91 0.01084
+80255 SLC35F5 solute carrier family 35 member F5 protein-coding 54 0.006431
+80256 FAM214B family with sequence similarity 214 member B protein-coding 68 0.008098
+80258 EFHC2 EF-hand domain containing 2 protein-coding 91 0.01084
+80262 C16orf70 chromosome 16 open reading frame 70 protein-coding 54 0.006431
+80263 TRIM45 tripartite motif containing 45 protein-coding 61 0.007264
+80264 ZNF430 zinc finger protein 430 protein-coding 73 0.008694
+80267 EDEM3 ER degradation enhancing alpha-mannosidase like protein 3 protein-coding 97 0.01155
+80270 HSD3B7 hydroxy-delta-5-steroid dehydrogenase, 3 beta- and steroid delta-isomerase 7 protein-coding 40 0.004764
+80271 ITPKC inositol-trisphosphate 3-kinase C protein-coding 71 0.008455
+80273 GRPEL1 GrpE like 1, mitochondrial protein-coding 18 0.002144
+80274 SCUBE1 signal peptide, CUB domain and EGF like domain containing 1 protein-coding 124 0.01477
+80279 CDK5RAP3 CDK5 regulatory subunit associated protein 3 protein-coding 41 0.004883
+80298 MTERF2 mitochondrial transcription termination factor 2 protein-coding 57 0.006788
+80301 PLEKHO2 pleckstrin homology domain containing O2 protein-coding 41 0.004883
+80303 EFHD1 EF-hand domain family member D1 protein-coding 36 0.004287
+80304 WDCP WD repeat and coiled coil containing protein-coding 69 0.008217
+80305 TRABD TraB domain containing protein-coding 36 0.004287
+80306 MED28 mediator complex subunit 28 protein-coding 30 0.003573
+80307 FER1L4 fer-1 like family member 4, pseudogene pseudo 29 0.003454
+80308 FLAD1 flavin adenine dinucleotide synthetase 1 protein-coding 63 0.007503
+80309 SPHKAP SPHK1 interactor, AKAP domain containing protein-coding 367 0.04371
+80310 PDGFD platelet derived growth factor D protein-coding 87 0.01036
+80311 KLHL15 kelch like family member 15 protein-coding 64 0.007622
+80312 TET1 tet methylcytosine dioxygenase 1 protein-coding 227 0.02703
+80313 LRRC27 leucine rich repeat containing 27 protein-coding 66 0.00786
+80314 EPC1 enhancer of polycomb homolog 1 protein-coding 82 0.009765
+80315 CPEB4 cytoplasmic polyadenylation element binding protein 4 protein-coding 89 0.0106
+80317 ZKSCAN3 zinc finger with KRAB and SCAN domains 3 protein-coding 63 0.007503
+80318 GKAP1 G kinase anchoring protein 1 protein-coding 36 0.004287
+80319 CXXC4 CXXC finger protein 4 protein-coding 31 0.003692
+80320 SP6 Sp6 transcription factor protein-coding 67 0.007979
+80321 CEP70 centrosomal protein 70 protein-coding 69 0.008217
+80323 CCDC68 coiled-coil domain containing 68 protein-coding 47 0.005597
+80324 PUS1 pseudouridylate synthase 1 protein-coding 45 0.005359
+80325 ABTB1 ankyrin repeat and BTB domain containing 1 protein-coding 68 0.008098
+80326 WNT10A Wnt family member 10A protein-coding 38 0.004525
+80328 ULBP2 UL16 binding protein 2 protein-coding 33 0.00393
+80329 ULBP1 UL16 binding protein 1 protein-coding 42 0.005002
+80331 DNAJC5 DnaJ heat shock protein family (Hsp40) member C5 protein-coding 92 0.01096
+80332 ADAM33 ADAM metallopeptidase domain 33 protein-coding 73 0.008694
+80333 KCNIP4 potassium voltage-gated channel interacting protein 4 protein-coding 47 0.005597
+80335 WDR82 WD repeat domain 82 protein-coding 29 0.003454
+80336 PABPC1L poly(A) binding protein cytoplasmic 1 like protein-coding 73 0.008694
+80339 PNPLA3 patatin like phospholipase domain containing 3 protein-coding 51 0.006074
+80341 BPIFB2 BPI fold containing family B member 2 protein-coding 74 0.008813
+80342 TRAF3IP3 TRAF3 interacting protein 3 protein-coding 74 0.008813
+80343 SEL1L2 SEL1L2 ERAD E3 ligase adaptor subunit protein-coding 118 0.01405
+80344 DCAF11 DDB1 and CUL4 associated factor 11 protein-coding 73 0.008694
+80345 ZSCAN16 zinc finger and SCAN domain containing 16 protein-coding 31 0.003692
+80346 REEP4 receptor accessory protein 4 protein-coding 27 0.003215
+80347 COASY Coenzyme A synthase protein-coding 109 0.01298
+80349 WDR61 WD repeat domain 61 protein-coding 27 0.003215
+80350 LPAL2 lipoprotein(a) like 2, pseudogene pseudo 128 0.01524
+80351 TNKS2 tankyrase 2 protein-coding 121 0.01441
+80352 RNF39 ring finger protein 39 protein-coding 38 0.004525
+80380 PDCD1LG2 programmed cell death 1 ligand 2 protein-coding 25 0.002977
+80381 CD276 CD276 molecule protein-coding 56 0.006669
+80700 UBXN6 UBX domain protein 6 protein-coding 56 0.006669
+80704 SLC19A3 solute carrier family 19 member 3 protein-coding 70 0.008336
+80705 TSGA10 testis specific 10 protein-coding 123 0.01465
+80709 AKNA AT-hook transcription factor protein-coding 122 0.01453
+80712 ESX1 ESX homeobox 1 protein-coding 88 0.01048
+80714 PBX4 PBX homeobox 4 protein-coding 37 0.004406
+80723 SLC35G2 solute carrier family 35 member G2 protein-coding 43 0.005121
+80724 ACAD10 acyl-CoA dehydrogenase family member 10 protein-coding 111 0.01322
+80725 SRCIN1 SRC kinase signaling inhibitor 1 protein-coding 111 0.01322
+80726 IQCN IQ motif containing N protein-coding 127 0.01512
+80727 TTYH3 tweety family member 3 protein-coding 45 0.005359
+80728 ARHGAP39 Rho GTPase activating protein 39 protein-coding 107 0.01274
+80731 THSD7B thrombospondin type 1 domain containing 7B protein-coding 383 0.04561
+80736 SLC44A4 solute carrier family 44 member 4 protein-coding 90 0.01072
+80737 VWA7 von Willebrand factor A domain containing 7 protein-coding 96 0.01143
+80739 MPIG6B megakaryocyte and platelet inhibitory receptor G6b protein-coding 23 0.002739
+80740 LY6G6C lymphocyte antigen 6 family member G6C protein-coding 12 0.001429
+80741 LY6G5C lymphocyte antigen 6 family member G5C protein-coding 15 0.001786
+80742 PRR3 proline rich 3 protein-coding 13 0.001548
+80745 THUMPD2 THUMP domain containing 2 protein-coding 42 0.005002
+80746 TSEN2 tRNA splicing endonuclease subunit 2 protein-coding 52 0.006193
+80755 AARSD1 alanyl-tRNA synthetase domain containing 1 protein-coding 32 0.003811
+80757 TMEM121 transmembrane protein 121 protein-coding 26 0.003096
+80758 PRR7 proline rich 7, synaptic protein-coding 10 0.001191
+80759 KHDC1 KH domain containing 1 protein-coding 27 0.003215
+80760 ITIH5 inter-alpha-trypsin inhibitor heavy chain family member 5 protein-coding 175 0.02084
+80762 NDFIP1 Nedd4 family interacting protein 1 protein-coding 21 0.002501
+80763 SPX spexin hormone protein-coding 28 0.003335
+80764 THAP7 THAP domain containing 7 protein-coding 35 0.004168
+80765 STARD5 StAR related lipid transfer domain containing 5 protein-coding 17 0.002025
+80772 CPTP ceramide-1-phosphate transfer protein protein-coding 18 0.002144
+80774 LIMD2 LIM domain containing 2 protein-coding 11 0.00131
+80775 TMEM177 transmembrane protein 177 protein-coding 42 0.005002
+80776 B9D2 B9 domain containing 2 protein-coding 25 0.002977
+80777 CYB5B cytochrome b5 type B protein-coding 15 0.001786
+80778 ZNF34 zinc finger protein 34 protein-coding 60 0.007145
+80781 COL18A1 collagen type XVIII alpha 1 chain protein-coding 157 0.0187
+80789 INTS5 integrator complex subunit 5 protein-coding 90 0.01072
+80790 CMIP c-Maf inducing protein protein-coding 67 0.007979
+80816 ASXL3 additional sex combs like 3, transcriptional regulator protein-coding 352 0.04192
+80817 CEP44 centrosomal protein 44 protein-coding 47 0.005597
+80818 ZNF436 zinc finger protein 436 protein-coding 58 0.006907
+80820 EEPD1 endonuclease/exonuclease/phosphatase family domain containing 1 protein-coding 70 0.008336
+80821 DDHD1 DDHD domain containing 1 protein-coding 113 0.01346
+80823 BHLHB9 basic helix-loop-helix family member b9 protein-coding 81 0.009646
+80824 DUSP16 dual specificity phosphatase 16 protein-coding 78 0.009289
+80829 ZFP91 ZFP91 zinc finger protein protein-coding 83 0.009884
+80830 APOL6 apolipoprotein L6 protein-coding 43 0.005121
+80831 APOL5 apolipoprotein L5 protein-coding 52 0.006193
+80832 APOL4 apolipoprotein L4 protein-coding 26 0.003096
+80833 APOL3 apolipoprotein L3 protein-coding 39 0.004645
+80834 TAS1R2 taste 1 receptor member 2 protein-coding 147 0.01751
+80835 TAS1R1 taste 1 receptor member 1 protein-coding 80 0.009527
+80851 SH3BP5L SH3 binding domain protein 5 like protein-coding 55 0.00655
+80852 GRIP2 glutamate receptor interacting protein 2 protein-coding 129 0.01536
+80853 KDM7A lysine demethylase 7A protein-coding 96 0.01143
+80854 SETD7 SET domain containing lysine methyltransferase 7 protein-coding 35 0.004168
+80856 LNPK lunapark, ER junction formation factor protein-coding 90 0.01072
+80862 ZNRD1ASP zinc ribbon domain containing 1 antisense, pseudogene pseudo 28 0.003335
+80863 PRRT1 proline rich transmembrane protein 1 protein-coding 33 0.00393
+80864 EGFL8 EGF like domain multiple 8 protein-coding 38 0.004525
+80895 ILKAP ILK associated serine/threonine phosphatase protein-coding 46 0.005478
+80896 NPL N-acetylneuraminate pyruvate lyase protein-coding 32 0.003811
+80975 TMPRSS5 transmembrane serine protease 5 protein-coding 38 0.004525
+81025 GJA9 gap junction protein alpha 9 protein-coding 145 0.01727
+81027 TUBB1 tubulin beta 1 class VI protein-coding 66 0.00786
+81029 WNT5B Wnt family member 5B protein-coding 58 0.006907
+81030 ZBP1 Z-DNA binding protein 1 protein-coding 78 0.009289
+81031 SLC2A10 solute carrier family 2 member 10 protein-coding 72 0.008574
+81033 KCNH6 potassium voltage-gated channel subfamily H member 6 protein-coding 146 0.01739
+81034 SLC25A32 solute carrier family 25 member 32 protein-coding 40 0.004764
+81035 COLEC12 collectin subfamily member 12 protein-coding 170 0.02025
+81037 CLPTM1L CLPTM1 like protein-coding 75 0.008932
+81050 OR5AC2 olfactory receptor family 5 subfamily AC member 2 protein-coding 68 0.008098
+81061 OR11H1 olfactory receptor family 11 subfamily H member 1 protein-coding 193 0.02298
+81099 OR4F17 olfactory receptor family 4 subfamily F member 17 protein-coding 30 0.003573
+81127 OR4K15 olfactory receptor family 4 subfamily K member 15 protein-coding 93 0.01108
+81168 OR8J3 olfactory receptor family 8 subfamily J member 3 protein-coding 126 0.01501
+81191 OR5G5P olfactory receptor family 5 subfamily G member 5 pseudogene pseudo 13 0.001548
+81282 OR51G2 olfactory receptor family 51 subfamily G member 2 protein-coding 78 0.009289
+81285 OR51E2 olfactory receptor family 51 subfamily E member 2 protein-coding 88 0.01048
+81300 OR4P4 olfactory receptor family 4 subfamily P member 4 protein-coding 114 0.01358
+81309 OR4C15 olfactory receptor family 4 subfamily C member 15 protein-coding 166 0.01977
+81318 OR4A5 olfactory receptor family 4 subfamily A member 5 protein-coding 123 0.01465
+81327 OR4A16 olfactory receptor family 4 subfamily A member 16 protein-coding 136 0.0162
+81328 OR4A15 olfactory receptor family 4 subfamily A member 15 protein-coding 169 0.02013
+81341 OR10W1 olfactory receptor family 10 subfamily W member 1 protein-coding 53 0.006312
+81392 OR2AE1 olfactory receptor family 2 subfamily AE member 1 protein-coding 43 0.005121
+81442 OR6N2 olfactory receptor family 6 subfamily N member 2 protein-coding 96 0.01143
+81448 OR6K2 olfactory receptor family 6 subfamily K member 2 protein-coding 127 0.01512
+81469 OR2G3 olfactory receptor family 2 subfamily G member 3 protein-coding 97 0.01155
+81470 OR2G2 olfactory receptor family 2 subfamily G member 2 protein-coding 111 0.01322
+81472 OR2C3 olfactory receptor family 2 subfamily C member 3 protein-coding 91 0.01084
+81488 POLR2M RNA polymerase II subunit M protein-coding 23 0.002739
+81490 PTDSS2 phosphatidylserine synthase 2 protein-coding 35 0.004168
+81491 GPR63 G protein-coupled receptor 63 protein-coding 74 0.008813
+81492 RSPH6A radial spoke head 6 homolog A protein-coding 88 0.01048
+81493 SYNC syncoilin, intermediate filament protein protein-coding 33 0.00393
+81494 CFHR5 complement factor H related 5 protein-coding 128 0.01524
+81501 DCSTAMP dendrocyte expressed seven transmembrane protein protein-coding 126 0.01501
+81502 HM13 histocompatibility minor 13 protein-coding 43 0.005121
+81532 MOB2 MOB kinase activator 2 protein-coding 27 0.003215
+81533 ITFG1 integrin alpha FG-GAP repeat containing 1 protein-coding 64 0.007622
+81537 SGPP1 sphingosine-1-phosphate phosphatase 1 protein-coding 54 0.006431
+81539 SLC38A1 solute carrier family 38 member 1 protein-coding 124 0.01477
+81542 TMX1 thioredoxin related transmembrane protein 1 protein-coding 28 0.003335
+81543 LRRC3 leucine rich repeat containing 3 protein-coding 44 0.00524
+81544 GDPD5 glycerophosphodiester phosphodiesterase domain containing 5 protein-coding 69 0.008217
+81545 FBXO38 F-box protein 38 protein-coding 98 0.01167
+81550 TDRD3 tudor domain containing 3 protein-coding 110 0.0131
+81551 STMN4 stathmin 4 protein-coding 41 0.004883
+81552 VOPP1 VOPP1, WBP1/VOPP1 family member protein-coding 21 0.002501
+81553 FAM49A family with sequence similarity 49 member A protein-coding 71 0.008455
+81554 RCC1L RCC1 like protein-coding 20 0.002382
+81555 YIPF5 Yip1 domain family member 5 protein-coding 25 0.002977
+81556 INTS14 integrator complex subunit 14 protein-coding 40 0.004764
+81558 FAM117A family with sequence similarity 117 member A protein-coding 42 0.005002
+81559 TRIM11 tripartite motif containing 11 protein-coding 57 0.006788
+81562 LMAN2L lectin, mannose binding 2 like protein-coding 41 0.004883
+81563 C1orf21 chromosome 1 open reading frame 21 protein-coding 19 0.002263
+81565 NDEL1 nudE neurodevelopment protein 1 like 1 protein-coding 29 0.003454
+81566 CSRNP2 cysteine and serine rich nuclear protein 2 protein-coding 58 0.006907
+81567 TXNDC5 thioredoxin domain containing 5 protein-coding 43 0.005121
+81569 ACTL8 actin like 8 protein-coding 71 0.008455
+81570 CLPB ClpB homolog, mitochondrial AAA ATPase chaperonin protein-coding 60 0.007145
+81571 MIR600HG MIR600 host gene ncRNA 3 0.0003573
+81572 PDRG1 p53 and DNA damage regulated 1 protein-coding 22 0.00262
+81573 ANKRD13C ankyrin repeat domain 13C protein-coding 64 0.007622
+81575 APOLD1 apolipoprotein L domain containing 1 protein-coding 20 0.002382
+81576 CCDC130 coiled-coil domain containing 130 protein-coding 37 0.004406
+81577 GFOD2 glucose-fructose oxidoreductase domain containing 2 protein-coding 59 0.007026
+81578 COL21A1 collagen type XXI alpha 1 chain protein-coding 160 0.01905
+81579 PLA2G12A phospholipase A2 group XIIA protein-coding 14 0.001667
+81602 CDADC1 cytidine and dCMP deaminase domain containing 1 protein-coding 49 0.005835
+81603 TRIM8 tripartite motif containing 8 protein-coding 54 0.006431
+81605 URM1 ubiquitin related modifier 1 protein-coding 19 0.002263
+81606 LBH limb bud and heart development protein-coding 16 0.001905
+81607 NECTIN4 nectin cell adhesion molecule 4 protein-coding 95 0.01131
+81608 FIP1L1 factor interacting with PAPOLA and CPSF1 protein-coding 82 0.009765
+81609 SNX27 sorting nexin family member 27 protein-coding 62 0.007384
+81610 FAM83D family with sequence similarity 83 member D protein-coding 70 0.008336
+81611 ANP32E acidic nuclear phosphoprotein 32 family member E protein-coding 44 0.00524
+81614 NIPA2 NIPA magnesium transporter 2 protein-coding 39 0.004645
+81615 TMEM163 transmembrane protein 163 protein-coding 27 0.003215
+81616 ACSBG2 acyl-CoA synthetase bubblegum family member 2 protein-coding 82 0.009765
+81617 CAB39L calcium binding protein 39 like protein-coding 50 0.005955
+81618 ITM2C integral membrane protein 2C protein-coding 34 0.004049
+81619 TSPAN14 tetraspanin 14 protein-coding 34 0.004049
+81620 CDT1 chromatin licensing and DNA replication factor 1 protein-coding 61 0.007264
+81621 KAZALD1 Kazal type serine peptidase inhibitor domain 1 protein-coding 18 0.002144
+81622 UNC93B1 unc-93 homolog B1, TLR signaling regulator protein-coding 50 0.005955
+81623 DEFB126 defensin beta 126 protein-coding 24 0.002858
+81624 DIAPH3 diaphanous related formin 3 protein-coding 156 0.01858
+81626 SHCBP1L SHC binding and spindle associated 1 like protein-coding 89 0.0106
+81627 TRMT1L tRNA methyltransferase 1 like protein-coding 72 0.008574
+81628 TSC22D4 TSC22 domain family member 4 protein-coding 35 0.004168
+81629 TSSK3 testis specific serine kinase 3 protein-coding 30 0.003573
+81631 MAP1LC3B microtubule associated protein 1 light chain 3 beta protein-coding 15 0.001786
+81669 CCNL2 cyclin L2 protein-coding 74 0.008813
+81671 VMP1 vacuole membrane protein 1 protein-coding 57 0.006788
+81688 C6orf62 chromosome 6 open reading frame 62 protein-coding 41 0.004883
+81689 ISCA1 iron-sulfur cluster assembly 1 protein-coding 11 0.00131
+81693 AMN amnion associated transmembrane protein protein-coding 26 0.003096
+81696 OR5V1 olfactory receptor family 5 subfamily V member 1 protein-coding 75 0.008932
+81697 OR2B2 olfactory receptor family 2 subfamily B member 2 protein-coding 72 0.008574
+81704 DOCK8 dedicator of cytokinesis 8 protein-coding 199 0.0237
+81706 PPP1R14C protein phosphatase 1 regulatory inhibitor subunit 14C protein-coding 16 0.001905
+81786 TRIM7 tripartite motif containing 7 protein-coding 51 0.006074
+81788 NUAK2 NUAK family kinase 2 protein-coding 71 0.008455
+81789 TIGD6 tigger transposable element derived 6 protein-coding 38 0.004525
+81790 RNF170 ring finger protein 170 protein-coding 23 0.002739
+81792 ADAMTS12 ADAM metallopeptidase with thrombospondin type 1 motif 12 protein-coding 393 0.0468
+81793 TLR10 toll like receptor 10 protein-coding 101 0.01203
+81794 ADAMTS10 ADAM metallopeptidase with thrombospondin type 1 motif 10 protein-coding 127 0.01512
+81796 SLCO5A1 solute carrier organic anion transporter family member 5A1 protein-coding 182 0.02167
+81797 OR12D3 olfactory receptor family 12 subfamily D member 3 protein-coding 44 0.00524
+81831 NETO2 neuropilin and tolloid like 2 protein-coding 74 0.008813
+81832 NETO1 neuropilin and tolloid like 1 protein-coding 165 0.01965
+81833 SPACA1 sperm acrosome associated 1 protein-coding 60 0.007145
+81839 VANGL1 VANGL planar cell polarity protein 1 protein-coding 67 0.007979
+81844 TRIM56 tripartite motif containing 56 protein-coding 81 0.009646
+81846 SBF2 SET binding factor 2 protein-coding 165 0.01965
+81847 RNF146 ring finger protein 146 protein-coding 41 0.004883
+81848 SPRY4 sprouty RTK signaling antagonist 4 protein-coding 41 0.004883
+81849 ST6GALNAC5 ST6 N-acetylgalactosaminide alpha-2,6-sialyltransferase 5 protein-coding 77 0.00917
+81850 KRTAP1-3 keratin associated protein 1-3 protein-coding 23 0.002739
+81851 KRTAP1-1 keratin associated protein 1-1 protein-coding 14 0.001667
+81853 TMEM14B transmembrane protein 14B protein-coding 10 0.001191
+81855 SFXN3 sideroflexin 3 protein-coding 37 0.004406
+81856 ZNF611 zinc finger protein 611 protein-coding 114 0.01358
+81857 MED25 mediator complex subunit 25 protein-coding 88 0.01048
+81858 SHARPIN SHANK associated RH domain interactor protein-coding 28 0.003335
+81870 KRTAP9-9 keratin associated protein 9-9 protein-coding 19 0.002263
+81871 KRTAP4-6 keratin associated protein 4-6 protein-coding 52 0.006193
+81872 KRTAP2-1 keratin associated protein 2-1 protein-coding 3 0.0003573
+81873 ARPC5L actin related protein 2/3 complex subunit 5 like protein-coding 9 0.001072
+81875 ISG20L2 interferon stimulated exonuclease gene 20 like 2 protein-coding 44 0.00524
+81876 RAB1B RAB1B, member RAS oncogene family protein-coding 23 0.002739
+81887 LAS1L LAS1 like, ribosome biogenesis factor protein-coding 81 0.009646
+81888 HYI hydroxypyruvate isomerase (putative) protein-coding 14 0.001667
+81889 FAHD1 fumarylacetoacetate hydrolase domain containing 1 protein-coding 13 0.001548
+81890 QTRT1 queuine tRNA-ribosyltransferase catalytic subunit 1 protein-coding 51 0.006074
+81892 SLIRP SRA stem-loop interacting RNA binding protein protein-coding 10 0.001191
+81894 SLC25A28 solute carrier family 25 member 28 protein-coding 34 0.004049
+81926 ABHD17A abhydrolase domain containing 17A protein-coding 36 0.004287
+81928 CABLES2 Cdk5 and Abl enzyme substrate 2 protein-coding 33 0.00393
+81929 SEH1L SEH1 like nucleoporin protein-coding 39 0.004645
+81930 KIF18A kinesin family member 18A protein-coding 100 0.01191
+81931 ZNF93 zinc finger protein 93 protein-coding 84 0.01
+81932 HDHD3 haloacid dehalogenase like hydrolase domain containing 3 protein-coding 22 0.00262
+83259 PCDH11Y protocadherin 11 Y-linked protein-coding 106 0.01262
+83394 PITPNM3 PITPNM family member 3 protein-coding 116 0.01381
+83401 ELOVL3 ELOVL fatty acid elongase 3 protein-coding 46 0.005478
+83416 FCRL5 Fc receptor like 5 protein-coding 197 0.02346
+83417 FCRL4 Fc receptor like 4 protein-coding 115 0.0137
+83439 TCF7L1 transcription factor 7 like 1 protein-coding 103 0.01227
+83440 ADPGK ADP dependent glucokinase protein-coding 33 0.00393
+83442 SH3BGRL3 SH3 domain binding glutamate rich protein like 3 protein-coding 8 0.0009527
+83443 SF3B5 splicing factor 3b subunit 5 protein-coding 11 0.00131
+83444 INO80B INO80 complex subunit B protein-coding 38 0.004525
+83445 GSG1 germ cell associated 1 protein-coding 40 0.004764
+83446 CCDC70 coiled-coil domain containing 70 protein-coding 43 0.005121
+83447 SLC25A31 solute carrier family 25 member 31 protein-coding 57 0.006788
+83448 PUS7L pseudouridylate synthase 7 like protein-coding 81 0.009646
+83449 PMFBP1 polyamine modulated factor 1 binding protein 1 protein-coding 134 0.01596
+83450 DRC3 dynein regulatory complex subunit 3 protein-coding 45 0.005359
+83451 ABHD11 abhydrolase domain containing 11 protein-coding 34 0.004049
+83452 RAB33B RAB33B, member RAS oncogene family protein-coding 170 0.02025
+83460 EMC6 ER membrane protein complex subunit 6 protein-coding 3 0.0003573
+83461 CDCA3 cell division cycle associated 3 protein-coding 17 0.002025
+83463 MXD3 MAX dimerization protein 3 protein-coding 25 0.002977
+83464 APH1B aph-1 homolog B, gamma-secretase subunit protein-coding 20 0.002382
+83468 GLT8D2 glycosyltransferase 8 domain containing 2 protein-coding 46 0.005478
+83473 KATNAL2 katanin catalytic subunit A1 like 2 protein-coding 72 0.008574
+83475 DOHH deoxyhypusine hydroxylase protein-coding 17 0.002025
+83478 ARHGAP24 Rho GTPase activating protein 24 protein-coding 97 0.01155
+83479 DDX59 DEAD-box helicase 59 protein-coding 74 0.008813
+83480 PUS3 pseudouridylate synthase 3 protein-coding 52 0.006193
+83481 EPPK1 epiplakin 1 protein-coding 262 0.0312
+83482 SCRT1 scratch family transcriptional repressor 1 protein-coding 28 0.003335
+83483 PLVAP plasmalemma vesicle associated protein protein-coding 87 0.01036
+83538 TTC25 tetratricopeptide repeat domain 25 protein-coding 63 0.007503
+83539 CHST9 carbohydrate sulfotransferase 9 protein-coding 65 0.007741
+83540 NUF2 NUF2, NDC80 kinetochore complex component protein-coding 70 0.008336
+83541 FAM110A family with sequence similarity 110 member A protein-coding 99 0.01179
+83543 AIF1L allograft inflammatory factor 1 like protein-coding 13 0.001548
+83544 DNAL1 dynein axonemal light chain 1 protein-coding 23 0.002739
+83546 RTBDN retbindin protein-coding 25 0.002977
+83547 RILP Rab interacting lysosomal protein protein-coding 22 0.00262
+83548 COG3 component of oligomeric golgi complex 3 protein-coding 68 0.008098
+83549 UCK1 uridine-cytidine kinase 1 protein-coding 35 0.004168
+83550 GPR101 G protein-coupled receptor 101 protein-coding 112 0.01334
+83551 TAAR8 trace amine associated receptor 8 protein-coding 47 0.005597
+83552 MFRP membrane frizzled-related protein protein-coding 107 0.01274
+83590 TMUB1 transmembrane and ubiquitin like domain containing 1 protein-coding 17 0.002025
+83591 THAP2 THAP domain containing 2 protein-coding 20 0.002382
+83592 AKR1E2 aldo-keto reductase family 1 member E2 protein-coding 41 0.004883
+83593 RASSF5 Ras association domain family member 5 protein-coding 60 0.007145
+83594 NUDT12 nudix hydrolase 12 protein-coding 59 0.007026
+83595 SOX7 SRY-box 7 protein-coding 99 0.01179
+83596 BCL2L12 BCL2 like 12 protein-coding 21 0.002501
+83597 RTP3 receptor transporter protein 3 protein-coding 31 0.003692
+83604 TMEM47 transmembrane protein 47 protein-coding 33 0.00393
+83605 CCM2 CCM2 scaffold protein protein-coding 81 0.009646
+83606 GUCD1 guanylyl cyclase domain containing 1 protein-coding 28 0.003335
+83607 AMMECR1L AMMECR1 like protein-coding 43 0.005121
+83608 C18orf21 chromosome 18 open reading frame 21 protein-coding 21 0.002501
+83636 C19orf12 chromosome 19 open reading frame 12 protein-coding 27 0.003215
+83637 ZMIZ2 zinc finger MIZ-type containing 2 protein-coding 101 0.01203
+83638 C11orf68 chromosome 11 open reading frame 68 protein-coding 18 0.002144
+83639 TEX101 testis expressed 101 protein-coding 39 0.004645
+83640 RAMMET RNMT activating mRNA cap methyltransferase subunit protein-coding 11 0.00131
+83641 FAM107B family with sequence similarity 107 member B protein-coding 60 0.007145
+83642 SELENOO selenoprotein O protein-coding 53 0.006312
+83643 CCDC3 coiled-coil domain containing 3 protein-coding 43 0.005121
+83648 FAM167A family with sequence similarity 167 member A protein-coding 35 0.004168
+83650 SLC35G5 solute carrier family 35 member G5 protein-coding 57 0.006788
+83656 FAM167A-AS1 FAM167A antisense RNA 1 ncRNA 8 0.0009527
+83657 DYNLRB2 dynein light chain roadblock-type 2 protein-coding 16 0.001905
+83658 DYNLRB1 dynein light chain roadblock-type 1 protein-coding 17 0.002025
+83659 TEKT1 tektin 1 protein-coding 70 0.008336
+83660 TLN2 talin 2 protein-coding 246 0.0293
+83661 MS4A8 membrane spanning 4-domains A8 protein-coding 49 0.005835
+83666 PARP9 poly(ADP-ribose) polymerase family member 9 protein-coding 91 0.01084
+83667 SESN2 sestrin 2 protein-coding 60 0.007145
+83690 CRISPLD1 cysteine rich secretory protein LCCL domain containing 1 protein-coding 117 0.01393
+83692 CD99L2 CD99 molecule like 2 protein-coding 45 0.005359
+83693 HSDL1 hydroxysteroid dehydrogenase like 1 protein-coding 34 0.004049
+83694 RPS6KL1 ribosomal protein S6 kinase like 1 protein-coding 53 0.006312
+83695 RHNO1 RAD9-HUS1-RAD1 interacting nuclear orphan 1 protein-coding 24 0.002858
+83696 TRAPPC9 trafficking protein particle complex 9 protein-coding 140 0.01667
+83697 SLC4A9 solute carrier family 4 member 9 protein-coding 84 0.01
+83698 CALN1 calneuron 1 protein-coding 84 0.01
+83699 SH3BGRL2 SH3 domain binding glutamate rich protein like 2 protein-coding 16 0.001905
+83700 JAM3 junctional adhesion molecule 3 protein-coding 54 0.006431
+83706 FERMT3 fermitin family member 3 protein-coding 84 0.01
+83707 TRPT1 tRNA phosphotransferase 1 protein-coding 17 0.002025
+83714 NRIP2 nuclear receptor interacting protein 2 protein-coding 35 0.004168
+83715 ESPN espin protein-coding 59 0.007026
+83716 CRISPLD2 cysteine rich secretory protein LCCL domain containing 2 protein-coding 46 0.005478
+83719 YPEL3 yippee like 3 protein-coding 9 0.001072
+83723 FAM57B family with sequence similarity 57 member B protein-coding 33 0.00393
+83729 INHBE inhibin beta E subunit protein-coding 42 0.005002
+83732 RIOK1 RIO kinase 1 protein-coding 60 0.007145
+83733 SLC25A18 solute carrier family 25 member 18 protein-coding 39 0.004645
+83734 ATG10 autophagy related 10 protein-coding 33 0.00393
+83737 ITCH itchy E3 ubiquitin protein ligase protein-coding 102 0.01215
+83741 TFAP2D transcription factor AP-2 delta protein-coding 139 0.01655
+83742 MARVELD1 MARVEL domain containing 1 protein-coding 1 0.0001191
+83743 GRWD1 glutamate rich WD repeat containing 1 protein-coding 32 0.003811
+83744 ZNF484 zinc finger protein 484 protein-coding 96 0.01143
+83746 L3MBTL2 L3MBTL2, polycomb repressive complex 1 subunit protein-coding 70 0.008336
+83752 LONP2 lon peptidase 2, peroxisomal protein-coding 94 0.01119
+83755 KRTAP4-12 keratin associated protein 4-12 protein-coding 29 0.003454
+83756 TAS1R3 taste 1 receptor member 3 protein-coding 96 0.01143
+83758 RBP5 retinol binding protein 5 protein-coding 16 0.001905
+83759 RBM4B RNA binding motif protein 4B protein-coding 45 0.005359
+83786 FRMD8 FERM domain containing 8 protein-coding 54 0.006431
+83787 ARMC10 armadillo repeat containing 10 protein-coding 36 0.004287
+83795 KCNK16 potassium two pore domain channel subfamily K member 16 protein-coding 48 0.005716
+83844 USP26 ubiquitin specific peptidase 26 protein-coding 155 0.01846
+83849 SYT15 synaptotagmin 15 protein-coding 80 0.009527
+83850 ESYT3 extended synaptotagmin 3 protein-coding 105 0.0125
+83851 SYT16 synaptotagmin 16 protein-coding 133 0.01584
+83852 SETDB2 SET domain bifurcated 2 protein-coding 71 0.008455
+83853 ROPN1L rhophilin associated tail protein 1 like protein-coding 35 0.004168
+83854 ANGPTL6 angiopoietin like 6 protein-coding 38 0.004525
+83855 KLF16 Kruppel like factor 16 protein-coding 13 0.001548
+83856 FSD1L fibronectin type III and SPRY domain containing 1 like protein-coding 37 0.004406
+83857 TMTC1 transmembrane and tetratricopeptide repeat containing 1 protein-coding 144 0.01715
+83858 ATAD3B ATPase family, AAA domain containing 3B protein-coding 71 0.008455
+83860 TAF3 TATA-box binding protein associated factor 3 protein-coding 126 0.01501
+83861 RSPH3 radial spoke head 3 homolog protein-coding 60 0.007145
+83863 TTTY5 testis-specific transcript, Y-linked 5 (non-protein coding) ncRNA 1 0.0001191
+83866 TTTY11 testis-specific transcript, Y-linked 11 (non-protein coding) ncRNA 4 0.0004764
+83871 RAB34 RAB34, member RAS oncogene family protein-coding 51 0.006074
+83872 HMCN1 hemicentin 1 protein-coding 665 0.07919
+83873 GPR61 G protein-coupled receptor 61 protein-coding 60 0.007145
+83874 TBC1D10A TBC1 domain family member 10A protein-coding 71 0.008455
+83875 BCO2 beta-carotene oxygenase 2 protein-coding 73 0.008694
+83876 MRO maestro protein-coding 38 0.004525
+83877 TM2D2 TM2 domain containing 2 protein-coding 21 0.002501
+83878 USHBP1 USH1 protein network component harmonin binding protein 1 protein-coding 85 0.01012
+83879 CDCA7 cell division cycle associated 7 protein-coding 59 0.007026
+83881 MIXL1 Mix paired-like homeobox protein-coding 19 0.002263
+83882 TSPAN10 tetraspanin 10 protein-coding 38 0.004525
+83884 SLC25A2 solute carrier family 25 member 2 protein-coding 128 0.01524
+83886 PRSS27 serine protease 27 protein-coding 17 0.002025
+83887 TTLL2 tubulin tyrosine ligase like 2 protein-coding 81 0.009646
+83888 FGFBP2 fibroblast growth factor binding protein 2 protein-coding 26 0.003096
+83889 WDR87 WD repeat domain 87 protein-coding 176 0.02096
+83890 SPATA9 spermatogenesis associated 9 protein-coding 42 0.005002
+83891 SNX25 sorting nexin 25 protein-coding 97 0.01155
+83892 KCTD10 potassium channel tetramerization domain containing 10 protein-coding 58 0.006907
+83893 SPATA16 spermatogenesis associated 16 protein-coding 117 0.01393
+83894 TTC29 tetratricopeptide repeat domain 29 protein-coding 89 0.0106
+83895 KRTAP1-5 keratin associated protein 1-5 protein-coding 28 0.003335
+83896 KRTAP3-1 keratin associated protein 3-1 protein-coding 9 0.001072
+83897 KRTAP3-2 keratin associated protein 3-2 protein-coding 12 0.001429
+83899 KRTAP9-2 keratin associated protein 9-2 protein-coding 31 0.003692
+83900 KRTAP9-3 keratin associated protein 9-3 protein-coding 28 0.003335
+83901 KRTAP9-8 keratin associated protein 9-8 protein-coding 23 0.002739
+83902 KRTAP17-1 keratin associated protein 17-1 protein-coding 17 0.002025
+83903 HASPIN histone H3 associated protein kinase protein-coding 67 0.007979
+83930 STARD3NL STARD3 N-terminal like protein-coding 28 0.003335
+83931 STK40 serine/threonine kinase 40 protein-coding 46 0.005478
+83932 SPRTN SprT-like N-terminal domain protein-coding 72 0.008574
+83933 HDAC10 histone deacetylase 10 protein-coding 53 0.006312
+83937 RASSF4 Ras association domain family member 4 protein-coding 43 0.005121
+83938 LRMDA leucine rich melanocyte differentiation associated protein-coding 30 0.003573
+83939 EIF2A eukaryotic translation initiation factor 2A protein-coding 58 0.006907
+83940 TATDN1 TatD DNase domain containing 1 protein-coding 28 0.003335
+83941 TM2D1 TM2 domain containing 1 protein-coding 33 0.00393
+83942 TSSK1B testis specific serine kinase 1B protein-coding 76 0.009051
+83943 IMMP2L inner mitochondrial membrane peptidase subunit 2 protein-coding 33 0.00393
+83953 FCAMR Fc fragment of IgA and IgM receptor protein-coding 58 0.006907
+83955 NACAP1 nascent polypeptide associated complex alpha subunit pseudogene 1 pseudo 48 0.005716
+83959 SLC4A11 solute carrier family 4 member 11 protein-coding 138 0.01643
+83982 IFI27L2 interferon alpha inducible protein 27 like 2 protein-coding 22 0.00262
+83983 TSSK6 testis specific serine kinase 6 protein-coding 57 0.006788
+83985 SPNS1 sphingolipid transporter 1 (putative) protein-coding 91 0.01084
+83986 FAM234A family with sequence similarity 234 member A protein-coding 54 0.006431
+83987 CCDC8 coiled-coil domain containing 8 protein-coding 75 0.008932
+83988 NCALD neurocalcin delta protein-coding 31 0.003692
+83989 FAM172A family with sequence similarity 172 member A protein-coding 57 0.006788
+83990 BRIP1 BRCA1 interacting protein C-terminal helicase 1 protein-coding 216 0.02572
+83992 CTTNBP2 cortactin binding protein 2 protein-coding 219 0.02608
+83998 REG4 regenerating family member 4 protein-coding 20 0.002382
+83999 KREMEN1 kringle containing transmembrane protein 1 protein-coding 63 0.007503
+84000 TMPRSS13 transmembrane serine protease 13 protein-coding 55 0.00655
+84002 B3GNT5 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 5 protein-coding 53 0.006312
+84033 OBSCN obscurin, cytoskeletal calmodulin and titin-interacting RhoGEF protein-coding 746 0.08884
+84034 EMILIN2 elastin microfibril interfacer 2 protein-coding 122 0.01453
+84056 KATNAL1 katanin catalytic subunit A1 like 1 protein-coding 57 0.006788
+84057 MND1 meiotic nuclear divisions 1 protein-coding 35 0.004168
+84058 WDR54 WD repeat domain 54 protein-coding 34 0.004049
+84059 ADGRV1 adhesion G protein-coupled receptor V1 protein-coding 609 0.07253
+84060 RBM48 RNA binding motif protein 48 protein-coding 54 0.006431
+84061 MAGT1 magnesium transporter 1 protein-coding 63 0.007503
+84062 DTNBP1 dystrobrevin binding protein 1 protein-coding 40 0.004764
+84063 KIRREL2 kirre like nephrin family adhesion molecule 2 protein-coding 132 0.01572
+84064 HDHD2 haloacid dehalogenase like hydrolase domain containing 2 protein-coding 19 0.002263
+84065 TMEM222 transmembrane protein 222 protein-coding 19 0.002263
+84066 TEX35 testis expressed 35 protein-coding 50 0.005955
+84067 FAM160A2 family with sequence similarity 160 member A2 protein-coding 115 0.0137
+84068 SLC10A7 solute carrier family 10 member 7 protein-coding 45 0.005359
+84069 PLEKHN1 pleckstrin homology domain containing N1 protein-coding 55 0.00655
+84070 FAM186B family with sequence similarity 186 member B protein-coding 78 0.009289
+84071 ARMC2 armadillo repeat containing 2 protein-coding 67 0.007979
+84072 HORMAD1 HORMA domain containing 1 protein-coding 81 0.009646
+84073 MYCBPAP MYCBP associated protein protein-coding 109 0.01298
+84074 QRICH2 glutamine rich 2 protein-coding 137 0.01632
+84075 FSCB fibrous sheath CABYR binding protein protein-coding 203 0.02418
+84076 TKTL2 transketolase like 2 protein-coding 149 0.01774
+84077 C3orf20 chromosome 3 open reading frame 20 protein-coding 123 0.01465
+84078 KBTBD7 kelch repeat and BTB domain containing 7 protein-coding 86 0.01024
+84079 ANKRD27 ankyrin repeat domain 27 protein-coding 120 0.01429
+84080 ENKD1 enkurin domain containing 1 protein-coding 36 0.004287
+84081 NSRP1 nuclear speckle splicing regulatory protein 1 protein-coding 56 0.006669
+84083 ZRANB3 zinc finger RANBP2-type containing 3 protein-coding 124 0.01477
+84084 RAB6C RAB6C, member RAS oncogene family protein-coding 39 0.004645
+84085 FBXO30 F-box protein 30 protein-coding 75 0.008932
+84100 ARL6 ADP ribosylation factor like GTPase 6 protein-coding 28 0.003335
+84101 USP44 ubiquitin specific peptidase 44 protein-coding 73 0.008694
+84102 SLC41A2 solute carrier family 41 member 2 protein-coding 49 0.005835
+84103 C4orf17 chromosome 4 open reading frame 17 protein-coding 44 0.00524
+84105 PCBD2 pterin-4 alpha-carbinolamine dehydratase 2 protein-coding 12 0.001429
+84106 PRAM1 PML-RARA regulated adaptor molecule 1 protein-coding 101 0.01203
+84107 ZIC4 Zic family member 4 protein-coding 157 0.0187
+84108 PCGF6 polycomb group ring finger 6 protein-coding 29 0.003454
+84109 QRFPR pyroglutamylated RFamide peptide receptor protein-coding 79 0.009408
+84124 ZNF394 zinc finger protein 394 protein-coding 71 0.008455
+84125 LRRIQ1 leucine rich repeats and IQ motif containing 1 protein-coding 304 0.0362
+84126 ATRIP ATR interacting protein protein-coding 70 0.008336
+84128 WDR75 WD repeat domain 75 protein-coding 57 0.006788
+84129 ACAD11 acyl-CoA dehydrogenase family member 11 protein-coding 94 0.01119
+84131 CEP78 centrosomal protein 78 protein-coding 79 0.009408
+84132 USP42 ubiquitin specific peptidase 42 protein-coding 106 0.01262
+84133 ZNRF3 zinc and ring finger 3 protein-coding 96 0.01143
+84134 TOMM40L translocase of outer mitochondrial membrane 40 like protein-coding 24 0.002858
+84135 UTP15 UTP15, small subunit processome component protein-coding 45 0.005359
+84138 SLC7A6OS solute carrier family 7 member 6 opposite strand protein-coding 20 0.002382
+84140 FAM161A family with sequence similarity 161 member A protein-coding 90 0.01072
+84141 EVA1A eva-1 homolog A, regulator of programmed cell death protein-coding 34 0.004049
+84142 ABRAXAS1 abraxas 1, BRCA1 A complex subunit protein-coding 43 0.005121
+84144 SYDE2 synapse defective Rho GTPase homolog 2 protein-coding 99 0.01179
+84146 ZNF644 zinc finger protein 644 protein-coding 135 0.01608
+84148 KAT8 lysine acetyltransferase 8 protein-coding 63 0.007503
+84152 PPP1R1B protein phosphatase 1 regulatory inhibitor subunit 1B protein-coding 28 0.003335
+84153 RNASEH2C ribonuclease H2 subunit C protein-coding 9 0.001072
+84154 RPF2 ribosome production factor 2 homolog protein-coding 36 0.004287
+84159 ARID5B AT-rich interaction domain 5B protein-coding 161 0.01917
+84162 KIAA1109 KIAA1109 protein-coding 424 0.05049
+84163 GTF2IRD2 GTF2I repeat domain containing 2 protein-coding 62 0.007384
+84164 ASCC2 activating signal cointegrator 1 complex subunit 2 protein-coding 85 0.01012
+84166 NLRC5 NLR family CARD domain containing 5 protein-coding 212 0.02525
+84167 C19orf44 chromosome 19 open reading frame 44 protein-coding 83 0.009884
+84168 ANTXR1 anthrax toxin receptor 1 protein-coding 333 0.03966
+84171 LOXL4 lysyl oxidase like 4 protein-coding 73 0.008694
+84172 POLR1B RNA polymerase I subunit B protein-coding 123 0.01465
+84173 ELMOD3 ELMO domain containing 3 protein-coding 64 0.007622
+84174 SLA2 Src like adaptor 2 protein-coding 105 0.0125
+84179 SLC49A3 solute carrier family 49 member 3 protein-coding 52 0.006193
+84181 CHD6 chromodomain helicase DNA binding protein 6 protein-coding 494 0.05883
+84182 MINDY4 MINDY lysine 48 deubiquitinase 4 protein-coding 87 0.01036
+84186 ZCCHC7 zinc finger CCHC-type containing 7 protein-coding 62 0.007384
+84187 TMEM164 transmembrane protein 164 protein-coding 32 0.003811
+84188 FAR1 fatty acyl-CoA reductase 1 protein-coding 66 0.00786
+84189 SLITRK6 SLIT and NTRK like family member 6 protein-coding 176 0.02096
+84190 METTL25 methyltransferase like 25 protein-coding 77 0.00917
+84191 FAM96A family with sequence similarity 96 member A protein-coding 27 0.003215
+84193 SETD3 SET domain containing 3 protein-coding 63 0.007503
+84196 USP48 ubiquitin specific peptidase 48 protein-coding 243 0.02894
+84197 POMK protein-O-mannose kinase protein-coding 37 0.004406
+84203 TXNDC2 thioredoxin domain containing 2 protein-coding 80 0.009527
+84206 MEX3B mex-3 RNA binding family member B protein-coding 83 0.009884
+84210 ANKRD20A1 ankyrin repeat domain 20 family member A1 protein-coding 44 0.00524
+84215 ZNF541 zinc finger protein 541 protein-coding 80 0.009527
+84216 TMEM117 transmembrane protein 117 protein-coding 75 0.008932
+84217 ZMYND12 zinc finger MYND-type containing 12 protein-coding 53 0.006312
+84218 TBC1D3F TBC1 domain family member 3F protein-coding 13 0.001548
+84219 WDR24 WD repeat domain 24 protein-coding 69 0.008217
+84221 SPATC1L spermatogenesis and centriole associated 1 like protein-coding 29 0.003454
+84222 TMEM191A transmembrane protein 191A (pseudogene) pseudo 27 0.003215
+84223 IQCG IQ motif containing G protein-coding 78 0.009289
+84224 NBPF3 NBPF member 3 protein-coding 56 0.006669
+84225 ZMYND15 zinc finger MYND-type containing 15 protein-coding 73 0.008694
+84226 C2orf16 chromosome 2 open reading frame 16 protein-coding 213 0.02537
+84229 DRC7 dynein regulatory complex subunit 7 protein-coding 125 0.01489
+84230 LRRC8C leucine rich repeat containing 8 VRAC subunit C protein-coding 85 0.01012
+84231 TRAF7 TNF receptor associated factor 7 protein-coding 69 0.008217
+84232 MAF1 MAF1 homolog, negative regulator of RNA polymerase III protein-coding 25 0.002977
+84233 TMEM126A transmembrane protein 126A protein-coding 18 0.002144
+84236 RHBDD1 rhomboid domain containing 1 protein-coding 40 0.004764
+84239 ATP13A4 ATPase 13A4 protein-coding 155 0.01846
+84240 ZCCHC9 zinc finger CCHC-type containing 9 protein-coding 32 0.003811
+84243 ZDHHC18 zinc finger DHHC-type containing 18 protein-coding 32 0.003811
+84245 MRI1 methylthioribose-1-phosphate isomerase 1 protein-coding 36 0.004287
+84246 MED10 mediator complex subunit 10 protein-coding 16 0.001905
+84247 RTL6 retrotransposon Gag like 6 protein-coding 29 0.003454
+84248 FYTTD1 forty-two-three domain containing 1 protein-coding 39 0.004645
+84249 PSD2 pleckstrin and Sec7 domain containing 2 protein-coding 123 0.01465
+84250 SLF1 SMC5-SMC6 complex localization factor 1 protein-coding 86 0.01024
+84251 SGIP1 SH3 domain GRB2 like endophilin interacting protein 1 protein-coding 169 0.02013
+84253 GARNL3 GTPase activating Rap/RanGAP domain like 3 protein-coding 99 0.01179
+84254 CAMKK1 calcium/calmodulin dependent protein kinase kinase 1 protein-coding 69 0.008217
+84255 SLC37A3 solute carrier family 37 member 3 protein-coding 52 0.006193
+84256 FLYWCH1 FLYWCH-type zinc finger 1 protein-coding 60 0.007145
+84258 SYT3 synaptotagmin 3 protein-coding 98 0.01167
+84259 DCUN1D5 defective in cullin neddylation 1 domain containing 5 protein-coding 22 0.00262
+84260 TCHP trichoplein keratin filament binding protein-coding 65 0.007741
+84261 FBXW9 F-box and WD repeat domain containing 9 protein-coding 38 0.004525
+84262 PSMG3 proteasome assembly chaperone 3 protein-coding 16 0.001905
+84263 HSDL2 hydroxysteroid dehydrogenase like 2 protein-coding 44 0.00524
+84264 HAGHL hydroxyacylglutathione hydrolase like protein-coding 16 0.001905
+84265 POLR3GL RNA polymerase III subunit G like protein-coding 21 0.002501
+84266 ALKBH7 alkB homolog 7 protein-coding 17 0.002025
+84267 C9orf64 chromosome 9 open reading frame 64 protein-coding 34 0.004049
+84268 RPAIN RPA interacting protein protein-coding 26 0.003096
+84269 CHCHD5 coiled-coil-helix-coiled-coil-helix domain containing 5 protein-coding 14 0.001667
+84270 CARD19 caspase recruitment domain family member 19 protein-coding 18 0.002144
+84271 POLDIP3 DNA polymerase delta interacting protein 3 protein-coding 41 0.004883
+84272 YIPF4 Yip1 domain family member 4 protein-coding 30 0.003573
+84273 NOA1 nitric oxide associated 1 protein-coding 62 0.007384
+84274 COQ5 coenzyme Q5, methyltransferase protein-coding 44 0.00524
+84275 SLC25A33 solute carrier family 25 member 33 protein-coding 29 0.003454
+84276 NICN1 nicolin 1 protein-coding 18 0.002144
+84277 DNAJC30 DnaJ heat shock protein family (Hsp40) member C30 protein-coding 16 0.001905
+84278 MFSD14C major facilitator superfamily domain containing 14C protein-coding 14 0.001667
+84279 PRADC1 protease associated domain containing 1 protein-coding 24 0.002858
+84280 BTBD10 BTB domain containing 10 protein-coding 56 0.006669
+84281 C2orf88 chromosome 2 open reading frame 88 protein-coding 12 0.001429
+84282 RNF135 ring finger protein 135 protein-coding 32 0.003811
+84283 TMEM79 transmembrane protein 79 protein-coding 48 0.005716
+84284 NTPCR nucleoside-triphosphatase, cancer-related protein-coding 22 0.00262
+84285 EIF1AD eukaryotic translation initiation factor 1A domain containing protein-coding 15 0.001786
+84286 TMEM175 transmembrane protein 175 protein-coding 64 0.007622
+84287 ZDHHC16 zinc finger DHHC-type containing 16 protein-coding 54 0.006431
+84288 EFCAB2 EF-hand calcium binding domain 2 protein-coding 20 0.002382
+84289 ING5 inhibitor of growth family member 5 protein-coding 32 0.003811
+84290 CAPNS2 calpain small subunit 2 protein-coding 20 0.002382
+84292 WDR83 WD repeat domain 83 protein-coding 26 0.003096
+84293 FAM213A family with sequence similarity 213 member A protein-coding 39 0.004645
+84294 UTP23 UTP23, small subunit processome component protein-coding 35 0.004168
+84295 PHF6 PHD finger protein 6 protein-coding 50 0.005955
+84296 GINS4 GINS complex subunit 4 protein-coding 29 0.003454
+84298 LLPH LLP homolog, long-term synaptic facilitation protein-coding 15 0.001786
+84299 MIEN1 migration and invasion enhancer 1 protein-coding 18 0.002144
+84300 UQCC2 ubiquinol-cytochrome c reductase complex assembly factor 2 protein-coding 9 0.001072
+84301 DDI2 DNA damage inducible 1 homolog 2 protein-coding 43 0.005121
+84302 TMEM246 transmembrane protein 246 protein-coding 71 0.008455
+84303 CHCHD6 coiled-coil-helix-coiled-coil-helix domain containing 6 protein-coding 30 0.003573
+84304 NUDT22 nudix hydrolase 22 protein-coding 23 0.002739
+84305 PYM1 PYM homolog 1, exon junction complex associated factor protein-coding 22 0.00262
+84306 PDCD2L programmed cell death 2 like protein-coding 23 0.002739
+84307 ZNF397 zinc finger protein 397 protein-coding 45 0.005359
+84309 NUDT16L1 nudix hydrolase 16 like 1 protein-coding 21 0.002501
+84310 C7orf50 chromosome 7 open reading frame 50 protein-coding 37 0.004406
+84311 MRPL45 mitochondrial ribosomal protein L45 protein-coding 31 0.003692
+84312 BRMS1L breast cancer metastasis-suppressor 1 like protein-coding 82 0.009765
+84313 VPS25 vacuolar protein sorting 25 homolog protein-coding 15 0.001786
+84314 TMEM107 transmembrane protein 107 protein-coding 18 0.002144
+84315 MON1A MON1 homolog A, secretory trafficking associated protein-coding 43 0.005121
+84316 NAA38 N(alpha)-acetyltransferase 38, NatC auxiliary subunit protein-coding 35 0.004168
+84317 CCDC115 coiled-coil domain containing 115 protein-coding 21 0.002501
+84318 CCDC77 coiled-coil domain containing 77 protein-coding 41 0.004883
+84319 CMSS1 cms1 ribosomal small subunit homolog (yeast) protein-coding 48 0.005716
+84320 ACBD6 acyl-CoA binding domain containing 6 protein-coding 22 0.00262
+84321 THOC3 THO complex 3 protein-coding 28 0.003335
+84324 SARNP SAP domain containing ribonucleoprotein protein-coding 30 0.003573
+84326 METTL26 methyltransferase like 26 protein-coding 4 0.0004764
84327 ZBED3 zinc finger BED-type containing 3 protein-coding 0 0
-84328 LZIC leucine zipper and CTNNBIP1 domain containing protein-coding 20 0.002384
-84329 HVCN1 hydrogen voltage gated channel 1 protein-coding 40 0.004769
-84330 ZNF414 zinc finger protein 414 protein-coding 20 0.002384
-84331 MCRIP2 MAPK regulated corepressor interacting protein 2 protein-coding 10 0.001192
-84332 DYDC2 DPY30 domain containing 2 protein-coding 23 0.002742
-84333 PCGF5 polycomb group ring finger 5 protein-coding 38 0.00453
-84334 APOPT1 apoptogenic 1, mitochondrial protein-coding 10 0.001192
-84335 AKT1S1 AKT1 substrate 1 protein-coding 26 0.0031
-84336 TMEM101 transmembrane protein 101 protein-coding 26 0.0031
-84337 ELOF1 elongation factor 1 homolog protein-coding 90 0.01073
-84340 GFM2 G elongation factor mitochondrial 2 protein-coding 69 0.008226
-84342 COG8 component of oligomeric golgi complex 8 protein-coding 42 0.005007
-84343 HPS3 HPS3, biogenesis of lysosomal organelles complex 2 subunit 1 protein-coding 110 0.01311
-84364 ARFGAP2 ADP ribosylation factor GTPase activating protein 2 protein-coding 70 0.008345
-84365 NIFK nucleolar protein interacting with the FHA domain of MKI67 protein-coding 40 0.004769
-84366 PRAC1 PRAC1 small nuclear protein protein-coding 10 0.001192
-84376 HOOK3 hook microtubule tethering protein 3 protein-coding 203 0.0242
-84417 C2orf40 chromosome 2 open reading frame 40 protein-coding 30 0.003577
-84418 CYSTM1 cysteine rich transmembrane module containing 1 protein-coding 16 0.001907
-84419 C15orf48 chromosome 15 open reading frame 48 protein-coding 9 0.001073
-84432 PROK1 prokineticin 1 protein-coding 19 0.002265
-84433 CARD11 caspase recruitment domain family member 11 protein-coding 237 0.02825
-84435 ADGRA1 adhesion G protein-coupled receptor A1 protein-coding 91 0.01085
-84436 ZNF528 zinc finger protein 528 protein-coding 105 0.01252
-84437 MSANTD4 Myb/SANT DNA binding domain containing 4 with coiled-coils protein-coding 64 0.00763
-84439 HHIPL1 HHIP like 1 protein-coding 59 0.007034
-84440 RAB11FIP4 RAB11 family interacting protein 4 protein-coding 65 0.007749
-84441 MAML2 mastermind like transcriptional coactivator 2 protein-coding 130 0.0155
-84443 FRMPD3 FERM and PDZ domain containing 3 protein-coding 162 0.01931
-84444 DOT1L DOT1 like histone lysine methyltransferase protein-coding 136 0.01621
-84445 LZTS2 leucine zipper tumor suppressor 2 protein-coding 69 0.008226
-84446 BRSK1 BR serine/threonine kinase 1 protein-coding 105 0.01252
-84447 SYVN1 synoviolin 1 protein-coding 55 0.006557
-84448 ABLIM2 actin binding LIM protein family member 2 protein-coding 77 0.00918
-84449 ZNF333 zinc finger protein 333 protein-coding 68 0.008107
-84450 ZNF512 zinc finger protein 512 protein-coding 59 0.007034
-84451 MAP3K21 mitogen-activated protein kinase kinase kinase 21 protein-coding 123 0.01466
-84455 EFCAB7 EF-hand calcium binding domain 7 protein-coding 66 0.007868
-84456 L3MBTL3 L3MBTL3, histone methyl-lysine binding protein protein-coding 99 0.0118
-84457 PHYHIPL phytanoyl-CoA 2-hydroxylase interacting protein like protein-coding 47 0.005603
-84458 LCOR ligand dependent nuclear receptor corepressor protein-coding 181 0.02158
-84460 ZMAT1 zinc finger matrin-type 1 protein-coding 107 0.01276
-84461 NEURL4 neuralized E3 ubiquitin protein ligase 4 protein-coding 148 0.01764
-84464 SLX4 SLX4 structure-specific endonuclease subunit protein-coding 201 0.02396
-84465 MEGF11 multiple EGF like domains 11 protein-coding 84 0.01001
-84466 MEGF10 multiple EGF like domains 10 protein-coding 162 0.01931
-84467 FBN3 fibrillin 3 protein-coding 328 0.0391
-84498 FAM120B family with sequence similarity 120B protein-coding 99 0.0118
-84501 SPIRE2 spire type actin nucleation factor 2 protein-coding 80 0.009537
-84502 JPH4 junctophilin 4 protein-coding 57 0.006795
-84503 ZNF527 zinc finger protein 527 protein-coding 90 0.01073
-84504 NKX6-2 NK6 homeobox 2 protein-coding 28 0.003338
-84513 PLPP5 phospholipid phosphatase 5 protein-coding 15 0.001788
-84514 GHDC GH3 domain containing protein-coding 49 0.005842
-84515 MCM8 minichromosome maintenance 8 homologous recombination repair factor protein-coding 79 0.009418
-84516 DCTN5 dynactin subunit 5 protein-coding 26 0.0031
-84517 ACTRT3 actin related protein T3 protein-coding 38 0.00453
-84518 CNFN cornifelin protein-coding 10 0.001192
-84519 ACRBP acrosin binding protein protein-coding 58 0.006915
-84520 GON7 GON7, KEOPS complex subunit protein-coding 9 0.001073
-84522 JAGN1 jagunal homolog 1 protein-coding 17 0.002027
-84524 ZC3H8 zinc finger CCCH-type containing 8 protein-coding 23 0.002742
-84525 HOPX HOP homeobox protein-coding 13 0.00155
-84527 ZNF559 zinc finger protein 559 protein-coding 94 0.01121
-84528 RHOXF2 Rhox homeobox family member 2 protein-coding 27 0.003219
-84529 C15orf41 chromosome 15 open reading frame 41 protein-coding 28 0.003338
-84530 SRRM4 serine/arginine repetitive matrix 4 protein-coding 143 0.01705
-84532 ACSS1 acyl-CoA synthetase short chain family member 1 protein-coding 77 0.00918
-84536 LINC01547 long intergenic non-protein coding RNA 1547 ncRNA 9 0.001073
-84539 MCHR2 melanin concentrating hormone receptor 2 protein-coding 86 0.01025
-84541 KBTBD8 kelch repeat and BTB domain containing 8 protein-coding 80 0.009537
-84542 KIAA1841 KIAA1841 protein-coding 89 0.01061
-84545 MRPL43 mitochondrial ribosomal protein L43 protein-coding 16 0.001907
-84547 PGBD1 piggyBac transposable element derived 1 protein-coding 137 0.01633
-84548 TMEM185A transmembrane protein 185A protein-coding 24 0.002861
-84549 MAK16 MAK16 homolog protein-coding 37 0.004411
-84552 PARD6G par-6 family cell polarity regulator gamma protein-coding 33 0.003934
-84553 FAXC failed axon connections homolog protein-coding 53 0.006319
-84557 MAP1LC3A microtubule associated protein 1 light chain 3 alpha protein-coding 28 0.003338
-84560 MT4 metallothionein 4 protein-coding 11 0.001311
-84561 SLC12A8 solute carrier family 12 member 8 protein-coding 68 0.008107
-84569 LYZL1 lysozyme like 1 protein-coding 33 0.003934
-84570 COL25A1 collagen type XXV alpha 1 chain protein-coding 133 0.01586
-84572 GNPTG N-acetylglucosamine-1-phosphate transferase gamma subunit protein-coding 27 0.003219
-84612 PARD6B par-6 family cell polarity regulator beta protein-coding 51 0.00608
-84614 ZBTB37 zinc finger and BTB domain containing 37 protein-coding 54 0.006438
-84616 KRTAP4-4 keratin associated protein 4-4 protein-coding 16 0.001907
-84617 TUBB6 tubulin beta 6 class V protein-coding 52 0.006199
-84618 NT5C1A 5'-nucleotidase, cytosolic IA protein-coding 73 0.008703
-84619 ZGPAT zinc finger CCCH-type and G-patch domain containing protein-coding 76 0.009061
-84620 ST6GAL2 ST6 beta-galactoside alpha-2,6-sialyltransferase 2 protein-coding 159 0.01896
-84622 ZNF594 zinc finger protein 594 protein-coding 116 0.01383
-84623 KIRREL3 kirre like nephrin family adhesion molecule 3 protein-coding 95 0.01133
-84624 FNDC1 fibronectin type III domain containing 1 protein-coding 268 0.03195
-84626 KRBA1 KRAB-A domain containing 1 protein-coding 112 0.01335
-84627 ZNF469 zinc finger protein 469 protein-coding 158 0.01884
-84628 NTNG2 netrin G2 protein-coding 198 0.02361
-84629 TNRC18 trinucleotide repeat containing 18 protein-coding 212 0.02527
-84630 TTBK1 tau tubulin kinase 1 protein-coding 137 0.01633
-84631 SLITRK2 SLIT and NTRK like family member 2 protein-coding 249 0.02969
-84632 AFAP1L2 actin filament associated protein 1 like 2 protein-coding 70 0.008345
-84634 KISS1R KISS1 receptor protein-coding 5 0.0005961
-84636 GPR174 G protein-coupled receptor 174 protein-coding 101 0.01204
-84639 IL1F10 interleukin 1 family member 10 protein-coding 22 0.002623
-84640 USP38 ubiquitin specific peptidase 38 protein-coding 83 0.009895
-84641 MFSD14B major facilitator superfamily domain containing 14B protein-coding 46 0.005484
-84643 KIF2B kinesin family member 2B protein-coding 233 0.02778
-84645 C22orf23 chromosome 22 open reading frame 23 protein-coding 27 0.003219
-84647 PLA2G12B phospholipase A2 group XIIB protein-coding 26 0.0031
-84648 LCE3D late cornified envelope 3D protein-coding 33 0.003934
-84649 DGAT2 diacylglycerol O-acyltransferase 2 protein-coding 41 0.004888
-84650 EBPL emopamil binding protein like protein-coding 16 0.001907
-84651 SPINK7 serine peptidase inhibitor, Kazal type 7 (putative) protein-coding 10 0.001192
-84654 SPZ1 spermatogenic leucine zipper 1 protein-coding 73 0.008703
-84656 GLYR1 glyoxylate reductase 1 homolog protein-coding 79 0.009418
-84658 ADGRE3 adhesion G protein-coupled receptor E3 protein-coding 80 0.009537
-84659 RNASE7 ribonuclease A family member 7 protein-coding 74 0.008822
-84660 CCDC62 coiled-coil domain containing 62 protein-coding 78 0.009299
-84661 DPY30 dpy-30, histone methyltransferase complex regulatory subunit protein-coding 10 0.001192
-84662 GLIS2 GLIS family zinc finger 2 protein-coding 43 0.005126
-84665 MYPN myopalladin protein-coding 197 0.02349
-84666 RETNLB resistin like beta protein-coding 20 0.002384
-84667 HES7 hes family bHLH transcription factor 7 protein-coding 9 0.001073
-84668 FAM126A family with sequence similarity 126 member A protein-coding 53 0.006319
-84669 USP32 ubiquitin specific peptidase 32 protein-coding 206 0.02456
-84671 ZNF347 zinc finger protein 347 protein-coding 141 0.01681
-84674 CARD6 caspase recruitment domain family member 6 protein-coding 156 0.0186
-84675 TRIM55 tripartite motif containing 55 protein-coding 99 0.0118
-84676 TRIM63 tripartite motif containing 63 protein-coding 41 0.004888
-84677 DSCR8 Down syndrome critical region 8 (non-protein coding) ncRNA 4 0.0004769
-84678 KDM2B lysine demethylase 2B protein-coding 153 0.01824
-84679 SLC9A7 solute carrier family 9 member A7 protein-coding 84 0.01001
-84680 ACCS 1-aminocyclopropane-1-carboxylate synthase homolog (inactive) protein-coding 75 0.008941
-84681 HINT2 histidine triad nucleotide binding protein 2 protein-coding 15 0.001788
-84684 INSM2 INSM transcriptional repressor 2 protein-coding 49 0.005842
-84687 PPP1R9B protein phosphatase 1 regulatory subunit 9B protein-coding 35 0.004173
-84688 C9orf24 chromosome 9 open reading frame 24 protein-coding 20 0.002384
-84689 MS4A14 membrane spanning 4-domains A14 protein-coding 147 0.01753
-84690 SPATA22 spermatogenesis associated 22 protein-coding 60 0.007153
-84691 FAM71F1 family with sequence similarity 71 member F1 protein-coding 41 0.004888
-84692 CCDC54 coiled-coil domain containing 54 protein-coding 67 0.007988
-84693 MCEE methylmalonyl-CoA epimerase protein-coding 23 0.002742
-84694 GJA10 gap junction protein alpha 10 protein-coding 104 0.0124
-84695 LOXL3 lysyl oxidase like 3 protein-coding 68 0.008107
-84696 ABHD1 abhydrolase domain containing 1 protein-coding 41 0.004888
-84698 CAPS2 calcyphosine 2 protein-coding 92 0.01097
-84699 CREB3L3 cAMP responsive element binding protein 3 like 3 protein-coding 76 0.009061
-84700 MYO18B myosin XVIIIB protein-coding 343 0.04089
-84701 COX4I2 cytochrome c oxidase subunit 4I2 protein-coding 26 0.0031
-84705 GTPBP3 GTP binding protein 3, mitochondrial protein-coding 50 0.005961
-84706 GPT2 glutamic--pyruvic transaminase 2 protein-coding 54 0.006438
-84707 BEX2 brain expressed X-linked 2 protein-coding 22 0.002623
-84708 LNX1 ligand of numb-protein X 1 protein-coding 286 0.0341
-84709 MGARP mitochondria localized glutamic acid rich protein protein-coding 25 0.00298
-84717 HDGFL2 HDGF like 2 protein-coding 66 0.007868
-84720 PIGO phosphatidylinositol glycan anchor biosynthesis class O protein-coding 108 0.01288
-84722 PSRC1 proline and serine rich coiled-coil 1 protein-coding 26 0.0031
-84725 PLEKHA8 pleckstrin homology domain containing A8 protein-coding 65 0.007749
-84726 PRRC2B proline rich coiled-coil 2B protein-coding 201 0.02396
-84727 SPSB2 splA/ryanodine receptor domain and SOCS box containing 2 protein-coding 32 0.003815
-84733 CBX2 chromobox 2 protein-coding 41 0.004888
-84734 FAM167B family with sequence similarity 167 member B protein-coding 19 0.002265
-84735 CNDP1 carnosine dipeptidase 1 protein-coding 84 0.01001
-84747 UNC119B unc-119 lipid binding chaperone B protein-coding 23 0.002742
-84749 USP30 ubiquitin specific peptidase 30 protein-coding 66 0.007868
-84750 FUT10 fucosyltransferase 10 protein-coding 53 0.006319
-84752 B3GNT9 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 9 protein-coding 25 0.00298
-84759 PCGF1 polycomb group ring finger 1 protein-coding 28 0.003338
-84765 ZNF577 zinc finger protein 577 protein-coding 74 0.008822
-84766 CRACR2A calcium release activated channel regulator 2A protein-coding 75 0.008941
-84767 TRIM51 tripartite motif-containing 51 protein-coding 207 0.02468
-84769 MPV17L2 MPV17 mitochondrial inner membrane protein like 2 protein-coding 16 0.001907
-84775 ZNF607 zinc finger protein 607 protein-coding 114 0.01359
-84779 NAA11 N(alpha)-acetyltransferase 11, NatA catalytic subunit protein-coding 40 0.004769
-84787 KMT5C lysine methyltransferase 5C protein-coding 42 0.005007
-84790 TUBA1C tubulin alpha 1c protein-coding 32 0.003815
-84791 LINC00467 long intergenic non-protein coding RNA 467 ncRNA 7 0.0008345
-84792 FAM220A family with sequence similarity 220 member A protein-coding 34 0.004053
-84795 PYROXD2 pyridine nucleotide-disulphide oxidoreductase domain 2 protein-coding 47 0.005603
-84798 C19orf48 chromosome 19 open reading frame 48 protein-coding 14 0.001669
-84803 GPAT3 glycerol-3-phosphate acyltransferase 3 protein-coding 66 0.007868
-84804 MFSD9 major facilitator superfamily domain containing 9 protein-coding 61 0.007272
-84807 NFKBID NFKB inhibitor delta protein-coding 46 0.005484
-84808 PERM1 PPARGC1 and ESRR induced regulator, muscle 1 protein-coding 25 0.00298
-84809 CROCCP2 ciliary rootlet coiled-coil, rootletin pseudogene 2 pseudo 24 0.002861
-84811 BUD13 BUD13 homolog protein-coding 71 0.008464
-84812 PLCD4 phospholipase C delta 4 protein-coding 69 0.008226
-84814 PLPP7 phospholipid phosphatase 7 (inactive) protein-coding 45 0.005365
-84816 RTN4IP1 reticulon 4 interacting protein 1 protein-coding 59 0.007034
-84817 TXNDC17 thioredoxin domain containing 17 protein-coding 11 0.001311
-84818 IL17RC interleukin 17 receptor C protein-coding 70 0.008345
-84820 POLR2J4 RNA polymerase II subunit J4, pseudogene pseudo 38 0.00453
-84823 LMNB2 lamin B2 protein-coding 222 0.02647
-84824 FCRLA Fc receptor like A protein-coding 72 0.008584
-84830 ADTRP androgen dependent TFPI regulating protein protein-coding 32 0.003815
-84833 ATP5MD ATP synthase membrane subunit DAPIT protein-coding 12 0.001431
-84836 ABHD14B abhydrolase domain containing 14B protein-coding 14 0.001669
-84838 ZNF496 zinc finger protein 496 protein-coding 99 0.0118
-84839 RAX2 retina and anterior neural fold homeobox 2 protein-coding 11 0.001311
-84842 HPDL 4-hydroxyphenylpyruvate dioxygenase like protein-coding 29 0.003457
-84844 PHF5A PHD finger protein 5A protein-coding 12 0.001431
-84847 LINC00525 long intergenic non-protein coding RNA 525 ncRNA 5 0.0005961
-84848 MIR503HG MIR503 host gene ncRNA 1 0.0001192
-84851 TRIM52 tripartite motif containing 52 protein-coding 31 0.003696
-84856 LINC00839 long intergenic non-protein coding RNA 839 ncRNA 20 0.002384
-84858 ZNF503 zinc finger protein 503 protein-coding 26 0.0031
-84859 LRCH3 leucine rich repeats and calponin homology domain containing 3 protein-coding 87 0.01037
-84861 KLHL22 kelch like family member 22 protein-coding 79 0.009418
-84864 RIOX2 ribosomal oxygenase 2 protein-coding 59 0.007034
-84865 CCDC142 coiled-coil domain containing 142 protein-coding 53 0.006319
-84866 TMEM25 transmembrane protein 25 protein-coding 44 0.005246
-84867 PTPN5 protein tyrosine phosphatase, non-receptor type 5 protein-coding 89 0.01061
-84868 HAVCR2 hepatitis A virus cellular receptor 2 protein-coding 54 0.006438
-84869 CBR4 carbonyl reductase 4 protein-coding 19 0.002265
-84870 RSPO3 R-spondin 3 protein-coding 43 0.005126
-84871 AGBL4 ATP/GTP binding protein like 4 protein-coding 65 0.007749
-84872 ZC3H10 zinc finger CCCH-type containing 10 protein-coding 42 0.005007
-84873 ADGRG7 adhesion G protein-coupled receptor G7 protein-coding 107 0.01276
-84874 ZNF514 zinc finger protein 514 protein-coding 61 0.007272
-84875 PARP10 poly(ADP-ribose) polymerase family member 10 protein-coding 86 0.01025
-84876 ORAI1 ORAI calcium release-activated calcium modulator 1 protein-coding 18 0.002146
-84878 ZBTB45 zinc finger and BTB domain containing 45 protein-coding 68 0.008107
-84879 MFSD2A major facilitator superfamily domain containing 2A protein-coding 56 0.006676
-84881 RPUSD4 RNA pseudouridylate synthase domain containing 4 protein-coding 40 0.004769
-84883 AIFM2 apoptosis inducing factor, mitochondria associated 2 protein-coding 65 0.007749
-84885 ZDHHC12 zinc finger DHHC-type containing 12 protein-coding 25 0.00298
-84886 C1orf198 chromosome 1 open reading frame 198 protein-coding 37 0.004411
-84888 SPPL2A signal peptide peptidase like 2A protein-coding 51 0.00608
-84889 SLC7A3 solute carrier family 7 member 3 protein-coding 92 0.01097
-84890 ADO 2-aminoethanethiol dioxygenase protein-coding 11 0.001311
-84891 ZSCAN10 zinc finger and SCAN domain containing 10 protein-coding 93 0.01109
-84892 POMGNT2 protein O-linked mannose N-acetylglucosaminyltransferase 2 (beta 1,4-) protein-coding 57 0.006795
-84893 FBH1 F-box DNA helicase 1 protein-coding 120 0.01431
-84894 LINGO1 leucine rich repeat and Ig domain containing 1 protein-coding 117 0.01395
-84895 MIGA2 mitoguardin 2 protein-coding 48 0.005722
-84896 ATAD1 ATPase family, AAA domain containing 1 protein-coding 38 0.00453
-84897 TBRG1 transforming growth factor beta regulator 1 protein-coding 28 0.003338
-84898 PLXDC2 plexin domain containing 2 protein-coding 109 0.01299
-84899 TMTC4 transmembrane and tetratricopeptide repeat containing 4 protein-coding 94 0.01121
-84900 RNFT2 ring finger protein, transmembrane 2 protein-coding 29 0.003457
-84901 NFATC2IP nuclear factor of activated T cells 2 interacting protein protein-coding 41 0.004888
-84902 CEP89 centrosomal protein 89 protein-coding 91 0.01085
-84904 ARHGEF39 Rho guanine nucleotide exchange factor 39 protein-coding 27 0.003219
-84905 ZNF341 zinc finger protein 341 protein-coding 101 0.01204
-84908 FAM136A family with sequence similarity 136 member A protein-coding 14 0.001669
-84909 C9orf3 chromosome 9 open reading frame 3 protein-coding 84 0.01001
-84910 TMEM87B transmembrane protein 87B protein-coding 55 0.006557
-84911 ZNF382 zinc finger protein 382 protein-coding 98 0.01168
-84912 SLC35B4 solute carrier family 35 member B4 protein-coding 27 0.003219
-84913 ATOH8 atonal bHLH transcription factor 8 protein-coding 16 0.001907
-84914 ZNF587 zinc finger protein 587 protein-coding 55 0.006557
-84915 FAM222A family with sequence similarity 222 member A protein-coding 32 0.003815
-84916 UTP4 UTP4, small subunit processome component protein-coding 64 0.00763
-84918 LRP11 LDL receptor related protein 11 protein-coding 26 0.0031
-84919 PPP1R15B protein phosphatase 1 regulatory subunit 15B protein-coding 69 0.008226
-84920 ALG10 ALG10, alpha-1,2-glucosyltransferase protein-coding 81 0.009657
-84922 FIZ1 FLT3 interacting zinc finger 1 protein-coding 45 0.005365
-84923 FAM104A family with sequence similarity 104 member A protein-coding 26 0.0031
-84924 ZNF566 zinc finger protein 566 protein-coding 62 0.007392
-84925 DIRC2 disrupted in renal carcinoma 2 protein-coding 55 0.006557
-84926 SPRYD3 SPRY domain containing 3 protein-coding 35 0.004173
-84928 TMEM209 transmembrane protein 209 protein-coding 48 0.005722
-84929 FIBCD1 fibrinogen C domain containing 1 protein-coding 52 0.006199
-84930 MASTL microtubule associated serine/threonine kinase like protein-coding 97 0.01156
-84931 LINC01101 long intergenic non-protein coding RNA 1101 ncRNA 3 0.0003577
-84932 RAB2B RAB2B, member RAS oncogene family protein-coding 17 0.002027
-84933 C8orf76 chromosome 8 open reading frame 76 protein-coding 49 0.005842
-84934 RITA1 RBPJ interacting and tubulin associated 1 protein-coding 24 0.002861
-84935 MEDAG mesenteric estrogen dependent adipogenesis protein-coding 40 0.004769
-84936 ZFYVE19 zinc finger FYVE-type containing 19 protein-coding 32 0.003815
-84937 ZNRF1 zinc and ring finger 1 protein-coding 19 0.002265
-84938 ATG4C autophagy related 4C cysteine peptidase protein-coding 63 0.007511
-84939 MUM1 melanoma associated antigen (mutated) 1 protein-coding 60 0.007153
-84940 CORO6 coronin 6 protein-coding 51 0.00608
-84942 WDR73 WD repeat domain 73 protein-coding 25 0.00298
-84944 MAEL maelstrom spermatogenic transposon silencer protein-coding 104 0.0124
-84945 ABHD13 abhydrolase domain containing 13 protein-coding 51 0.00608
-84946 LTV1 LTV1 ribosome biogenesis factor protein-coding 50 0.005961
-84947 SERAC1 serine active site containing 1 protein-coding 79 0.009418
-84948 TIGD5 tigger transposable element derived 5 protein-coding 40 0.004769
-84950 PRPF38A pre-mRNA processing factor 38A protein-coding 37 0.004411
-84951 TNS4 tensin 4 protein-coding 83 0.009895
-84952 CGNL1 cingulin like 1 protein-coding 126 0.01502
-84953 MICALCL MICAL C-terminal like protein-coding 77 0.00918
-84954 MPND MPN domain containing protein-coding 39 0.004649
-84955 NUDCD1 NudC domain containing 1 protein-coding 69 0.008226
-84957 RELT RELT, TNF receptor protein-coding 45 0.005365
-84958 SYTL1 synaptotagmin like 1 protein-coding 57 0.006795
-84959 UBASH3B ubiquitin associated and SH3 domain containing B protein-coding 79 0.009418
-84960 CCDC183 coiled-coil domain containing 183 protein-coding 52 0.006199
-84961 FBXL20 F-box and leucine rich repeat protein 20 protein-coding 67 0.007988
-84962 AJUBA ajuba LIM protein protein-coding 76 0.009061
-84964 ALKBH6 alkB homolog 6 protein-coding 33 0.003934
-84966 IGSF21 immunoglobin superfamily member 21 protein-coding 80 0.009537
-84967 LSM10 LSM10, U7 small nuclear RNA associated protein-coding 15 0.001788
-84969 TOX2 TOX high mobility group box family member 2 protein-coding 91 0.01085
-84970 C1orf94 chromosome 1 open reading frame 94 protein-coding 123 0.01466
-84971 ATG4D autophagy related 4D cysteine peptidase protein-coding 58 0.006915
-84975 MFSD5 major facilitator superfamily domain containing 5 protein-coding 44 0.005246
-84976 DISP1 dispatched RND transporter family member 1 protein-coding 171 0.02039
-84978 FRMD5 FERM domain containing 5 protein-coding 61 0.007272
-84984 CEP19 centrosomal protein 19 protein-coding 32 0.003815
-84985 FAM83A family with sequence similarity 83 member A protein-coding 45 0.005365
-84986 ARHGAP19 Rho GTPase activating protein 19 protein-coding 63 0.007511
-84987 COX14 COX14, cytochrome c oxidase assembly factor protein-coding 5 0.0005961
-84988 PPP1R16A protein phosphatase 1 regulatory subunit 16A protein-coding 56 0.006676
-84991 RBM17 RNA binding motif protein 17 protein-coding 55 0.006557
-84992 PIGY phosphatidylinositol glycan anchor biosynthesis class Y protein-coding 4 0.0004769
-84993 UBL7 ubiquitin like 7 protein-coding 25 0.00298
-84996 URB1-AS1 URB1 antisense RNA 1 (head to head) ncRNA 4 0.0004769
-85002 FAM86B1 family with sequence similarity 86 member B1 protein-coding 18 0.002146
-85004 RERG RAS like estrogen regulated growth inhibitor protein-coding 36 0.004292
-85007 PHYKPL 5-phosphohydroxy-L-lysine phospho-lyase protein-coding 38 0.00453
-85012 TCEAL3 transcription elongation factor A like 3 protein-coding 36 0.004292
-85013 TMEM128 transmembrane protein 128 protein-coding 15 0.001788
-85014 TMEM141 transmembrane protein 141 protein-coding 8 0.0009537
-85015 USP45 ubiquitin specific peptidase 45 protein-coding 73 0.008703
-85016 CFAP300 cilia and flagella associated protein 300 protein-coding 42 0.005007
-85019 TMEM241 transmembrane protein 241 protein-coding 27 0.003219
-85021 REPS1 RALBP1 associated Eps domain containing 1 protein-coding 127 0.01514
-85025 TMEM60 transmembrane protein 60 protein-coding 13 0.00155
-85026 ARRDC1-AS1 ARRDC1 antisense RNA 1 ncRNA 17 0.002027
-85027 SMIM3 small integral membrane protein 3 protein-coding 5 0.0005961
-85235 HIST1H2AH histone cluster 1 H2A family member h protein-coding 32 0.003815
-85236 HIST1H2BK histone cluster 1 H2B family member k protein-coding 38 0.00453
-85280 KRTAP9-4 keratin associated protein 9-4 protein-coding 18 0.002146
-85285 KRTAP4-1 keratin associated protein 4-1 protein-coding 22 0.002623
-85289 KRTAP4-5 keratin associated protein 4-5 protein-coding 17 0.002027
-85290 KRTAP4-3 keratin associated protein 4-3 protein-coding 27 0.003219
-85291 KRTAP4-2 keratin associated protein 4-2 protein-coding 25 0.00298
-85293 KRTAP3-3 keratin associated protein 3-3 protein-coding 13 0.00155
-85294 KRTAP2-4 keratin associated protein 2-4 protein-coding 5 0.0005961
-85300 ATCAY ATCAY, caytaxin protein-coding 72 0.008584
-85301 COL27A1 collagen type XXVII alpha 1 chain protein-coding 210 0.02504
-85302 FBF1 Fas binding factor 1 protein-coding 102 0.01216
-85313 PPIL4 peptidylprolyl isomerase like 4 protein-coding 64 0.00763
-85315 PAQR8 progestin and adipoQ receptor family member 8 protein-coding 51 0.00608
-85319 BAGE2 BAGE family member 2 protein-coding 472 0.05627
-85320 ABCC11 ATP binding cassette subfamily C member 11 protein-coding 184 0.02194
-85329 LGALS12 galectin 12 protein-coding 194 0.02313
-85344 KRT89P keratin 89 pseudogene pseudo 30 0.003577
-85349 KRT87P keratin 87 pseudogene pseudo 74 0.008822
-85352 SHISAL1 shisa like 1 protein-coding 38 0.00453
-85358 SHANK3 SH3 and multiple ankyrin repeat domains 3 protein-coding 104 0.0124
-85359 DGCR6L DiGeorge syndrome critical region gene 6 like protein-coding 18 0.002146
-85360 SYDE1 synapse defective Rho GTPase homolog 1 protein-coding 72 0.008584
-85363 TRIM5 tripartite motif containing 5 protein-coding 60 0.007153
-85364 ZCCHC3 zinc finger CCHC-type containing 3 protein-coding 19 0.002265
-85365 ALG2 ALG2, alpha-1,3/1,6-mannosyltransferase protein-coding 36 0.004292
-85366 MYLK2 myosin light chain kinase 2 protein-coding 86 0.01025
-85369 STRIP1 striatin interacting protein 1 protein-coding 78 0.009299
-85376 RIMBP3 RIMS binding protein 3 protein-coding 93 0.01109
-85377 MICALL1 MICAL like 1 protein-coding 73 0.008703
-85378 TUBGCP6 tubulin gamma complex associated protein 6 protein-coding 160 0.01907
-85379 KIAA1671 KIAA1671 protein-coding 17 0.002027
-85395 FAM207A family with sequence similarity 207 member A protein-coding 22 0.002623
-85397 RGS8 regulator of G protein signaling 8 protein-coding 40 0.004769
-85403 EAF1 ELL associated factor 1 protein-coding 16 0.001907
-85406 DNAJC14 DnaJ heat shock protein family (Hsp40) member C14 protein-coding 98 0.01168
-85407 NKD1 naked cuticle homolog 1 protein-coding 63 0.007511
-85409 NKD2 naked cuticle homolog 2 protein-coding 56 0.006676
-85413 SLC22A16 solute carrier family 22 member 16 protein-coding 97 0.01156
-85414 SLC45A3 solute carrier family 45 member 3 protein-coding 55 0.006557
-85415 RHPN2 rhophilin Rho GTPase binding protein 2 protein-coding 75 0.008941
-85416 ZIC5 Zic family member 5 protein-coding 45 0.005365
-85417 CCNB3 cyclin B3 protein-coding 193 0.02301
-85437 ZCRB1 zinc finger CCHC-type and RNA binding motif containing 1 protein-coding 32 0.003815
-85438 CABS1 calcium binding protein, spermatid associated 1 protein-coding 73 0.008703
-85439 STON2 stonin 2 protein-coding 96 0.01144
-85440 DOCK7 dedicator of cytokinesis 7 protein-coding 205 0.02444
-85441 HELZ2 helicase with zinc finger 2 protein-coding 221 0.02635
-85442 KNDC1 kinase non-catalytic C-lobe domain containing 1 protein-coding 198 0.02361
-85443 DCLK3 doublecortin like kinase 3 protein-coding 100 0.01192
-85444 LRRCC1 leucine rich repeat and coiled-coil centrosomal protein 1 protein-coding 151 0.018
-85445 CNTNAP4 contactin associated protein like 4 protein-coding 270 0.03219
-85446 ZFHX2 zinc finger homeobox 2 protein-coding 63 0.007511
-85449 KIAA1755 KIAA1755 protein-coding 167 0.01991
-85450 ITPRIP inositol 1,4,5-trisphosphate receptor interacting protein protein-coding 57 0.006795
-85451 UNK unkempt family zinc finger protein-coding 72 0.008584
-85452 CFAP74 cilia and flagella associated protein 74 protein-coding 20 0.002384
-85453 TSPYL5 TSPY like 5 protein-coding 78 0.009299
-85455 DISP2 dispatched RND transporter family member 2 protein-coding 120 0.01431
-85456 TNKS1BP1 tankyrase 1 binding protein 1 protein-coding 176 0.02098
-85457 CIPC CLOCK interacting pacemaker protein-coding 34 0.004053
-85458 DIXDC1 DIX domain containing 1 protein-coding 65 0.007749
-85459 CEP295 centrosomal protein 295 protein-coding 114 0.01359
-85460 ZNF518B zinc finger protein 518B protein-coding 134 0.01598
-85461 TANC1 tetratricopeptide repeat, ankyrin repeat and coiled-coil containing 1 protein-coding 175 0.02086
-85462 FHDC1 FH2 domain containing 1 protein-coding 145 0.01729
-85463 ZC3H12C zinc finger CCCH-type containing 12C protein-coding 104 0.0124
-85464 SSH2 slingshot protein phosphatase 2 protein-coding 155 0.01848
-85465 SELENOI selenoprotein I protein-coding 40 0.004769
-85474 LBX2 ladybird homeobox 2 protein-coding 18 0.002146
-85476 GFM1 G elongation factor mitochondrial 1 protein-coding 78 0.009299
-85477 SCIN scinderin protein-coding 85 0.01013
-85478 CCDC65 coiled-coil domain containing 65 protein-coding 44 0.005246
-85479 DNAJC5B DnaJ heat shock protein family (Hsp40) member C5 beta protein-coding 47 0.005603
-85480 TSLP thymic stromal lymphopoietin protein-coding 25 0.00298
-85481 PSKH2 protein serine kinase H2 protein-coding 85 0.01013
-85508 SCRT2 scratch family transcriptional repressor 2 protein-coding 19 0.002265
-85509 MBD3L1 methyl-CpG binding domain protein 3 like 1 protein-coding 36 0.004292
-85569 GALP galanin like peptide protein-coding 23 0.002742
-85865 GTPBP10 GTP binding protein 10 protein-coding 46 0.005484
-87178 PNPT1 polyribonucleotide nucleotidyltransferase 1 protein-coding 81 0.009657
-87769 GGACT gamma-glutamylamine cyclotransferase protein-coding 4 0.0004769
-88455 ANKRD13A ankyrin repeat domain 13A protein-coding 56 0.006676
-88745 RRP36 ribosomal RNA processing 36 protein-coding 25 0.00298
-89122 TRIM4 tripartite motif containing 4 protein-coding 49 0.005842
-89765 RSPH1 radial spoke head 1 homolog protein-coding 40 0.004769
-89766 UMODL1 uromodulin like 1 protein-coding 168 0.02003
-89777 SERPINB12 serpin family B member 12 protein-coding 71 0.008464
-89778 SERPINB11 serpin family B member 11 (gene/pseudogene) protein-coding 73 0.008703
-89780 WNT3A Wnt family member 3A protein-coding 61 0.007272
-89781 HPS4 HPS4, biogenesis of lysosomal organelles complex 3 subunit 2 protein-coding 86 0.01025
-89782 LMLN leishmanolysin like peptidase protein-coding 82 0.009776
-89790 SIGLEC10 sialic acid binding Ig like lectin 10 protein-coding 130 0.0155
-89792 GAL3ST3 galactose-3-O-sulfotransferase 3 protein-coding 105 0.01252
-89795 NAV3 neuron navigator 3 protein-coding 529 0.06307
-89796 NAV1 neuron navigator 1 protein-coding 193 0.02301
-89797 NAV2 neuron navigator 2 protein-coding 273 0.03255
-89801 PPP1R3F protein phosphatase 1 regulatory subunit 3F protein-coding 64 0.00763
-89822 KCNK17 potassium two pore domain channel subfamily K member 17 protein-coding 39 0.004649
-89832 CHRFAM7A CHRNA7 (exons 5-10) and FAM7A (exons A-E) fusion protein-coding 38 0.00453
-89837 ULK4P3 ULK4 pseudogene 3 pseudo 5 0.0005961
-89839 ARHGAP11B Rho GTPase activating protein 11B protein-coding 31 0.003696
-89845 ABCC10 ATP binding cassette subfamily C member 10 protein-coding 134 0.01598
-89846 FGD3 FYVE, RhoGEF and PH domain containing 3 protein-coding 100 0.01192
-89848 FCHSD1 FCH and double SH3 domains 1 protein-coding 66 0.007868
-89849 ATG16L2 autophagy related 16 like 2 protein-coding 38 0.00453
-89853 MVB12B multivesicular body subunit 12B protein-coding 36 0.004292
-89857 KLHL6 kelch like family member 6 protein-coding 111 0.01323
-89858 SIGLEC12 sialic acid binding Ig like lectin 12 (gene/pseudogene) protein-coding 104 0.0124
-89866 SEC16B SEC16 homolog B, endoplasmic reticulum export factor protein-coding 128 0.01526
-89869 PLCZ1 phospholipase C zeta 1 protein-coding 93 0.01109
-89870 TRIM15 tripartite motif containing 15 protein-coding 49 0.005842
-89872 AQP10 aquaporin 10 protein-coding 56 0.006676
-89874 SLC25A21 solute carrier family 25 member 21 protein-coding 80 0.009537
-89876 MAATS1 MYCBP associated and testis expressed 1 protein-coding 140 0.01669
-89882 TPD52L3 tumor protein D52 like 3 protein-coding 24 0.002861
-89883 OR6W1P olfactory receptor family 6 subfamily W member 1 pseudogene pseudo 15 0.001788
-89884 LHX4 LIM homeobox 4 protein-coding 53 0.006319
-89885 FATE1 fetal and adult testis expressed 1 protein-coding 43 0.005126
-89886 SLAMF9 SLAM family member 9 protein-coding 55 0.006557
-89887 ZNF628 zinc finger protein 628 protein-coding 74 0.008822
-89890 KBTBD6 kelch repeat and BTB domain containing 6 protein-coding 82 0.009776
-89891 WDR34 WD repeat domain 34 protein-coding 40 0.004769
-89894 TMEM116 transmembrane protein 116 protein-coding 21 0.002504
-89910 UBE3B ubiquitin protein ligase E3B protein-coding 133 0.01586
-89927 C16orf45 chromosome 16 open reading frame 45 protein-coding 29 0.003457
-89932 PAPLN papilin, proteoglycan like sulfated glycoprotein protein-coding 106 0.01264
-89941 RHOT2 ras homolog family member T2 protein-coding 44 0.005246
-89944 GLB1L2 galactosidase beta 1 like 2 protein-coding 98 0.01168
-89953 KLC4 kinesin light chain 4 protein-coding 61 0.007272
-89958 SAPCD2 suppressor APC domain containing 2 protein-coding 18 0.002146
-89970 RSPRY1 ring finger and SPRY domain containing 1 protein-coding 53 0.006319
-89978 DPH6 diphthamine biosynthesis 6 protein-coding 28 0.003338
-90007 MIDN midnolin protein-coding 45 0.005365
-90011 KIR3DX1 killer cell immunoglobulin like receptor, three Ig domains X1 pseudo 68 0.008107
-90019 SYT8 synaptotagmin 8 protein-coding 28 0.003338
-90025 UBE3D ubiquitin protein ligase E3D protein-coding 55 0.006557
-90050 FAM181A family with sequence similarity 181 member A protein-coding 42 0.005007
-90060 CCDC120 coiled-coil domain containing 120 protein-coding 71 0.008464
-90070 LACRT lacritin protein-coding 32 0.003815
-90075 ZNF30 zinc finger protein 30 protein-coding 65 0.007749
-90102 PHLDB2 pleckstrin homology like domain family B member 2 protein-coding 172 0.02051
-90113 VWA5B2 von Willebrand factor A domain containing 5B2 protein-coding 74 0.008822
-90120 TMEM250 transmembrane protein 250 protein-coding 13 0.00155
-90121 TSR2 TSR2, ribosome maturation factor protein-coding 24 0.002861
-90134 KCNH7 potassium voltage-gated channel subfamily H member 7 protein-coding 235 0.02802
-90135 BTBD6 BTB domain containing 6 protein-coding 39 0.004649
-90139 TSPAN18 tetraspanin 18 protein-coding 30 0.003577
-90141 EFCAB11 EF-hand calcium binding domain 11 protein-coding 20 0.002384
-90161 HS6ST2 heparan sulfate 6-O-sulfotransferase 2 protein-coding 74 0.008822
-90167 FRMD7 FERM domain containing 7 protein-coding 111 0.01323
-90187 EMILIN3 elastin microfibril interfacer 3 protein-coding 81 0.009657
-90196 SYS1 SYS1, golgi trafficking protein protein-coding 19 0.002265
-90199 WFDC8 WAP four-disulfide core domain 8 protein-coding 38 0.00453
-90203 SNX21 sorting nexin family member 21 protein-coding 30 0.003577
-90204 ZSWIM1 zinc finger SWIM-type containing 1 protein-coding 41 0.004888
-90226 UCN2 urocortin 2 protein-coding 8 0.0009537
-90231 KIAA2013 KIAA2013 protein-coding 33 0.003934
-90233 ZNF551 zinc finger protein 551 protein-coding 93 0.01109
-90249 UNC5A unc-5 netrin receptor A protein-coding 110 0.01311
-90268 OTULIN OTU deubiquitinase with linear linkage specificity protein-coding 55 0.006557
-90273 CEACAM21 carcinoembryonic antigen related cell adhesion molecule 21 protein-coding 40 0.004769
-90288 EFCAB12 EF-hand calcium binding domain 12 protein-coding 63 0.007511
-90293 KLHL13 kelch like family member 13 protein-coding 101 0.01204
-90313 TP53I13 tumor protein p53 inducible protein 13 protein-coding 33 0.003934
-90316 TGIF2LX TGFB induced factor homeobox 2 like, X-linked protein-coding 104 0.0124
-90317 ZNF616 zinc finger protein 616 protein-coding 125 0.0149
-90321 ZNF766 zinc finger protein 766 protein-coding 65 0.007749
-90324 CCDC97 coiled-coil domain containing 97 protein-coding 41 0.004888
-90326 THAP3 THAP domain containing 3 protein-coding 28 0.003338
-90332 EXOC3L2 exocyst complex component 3 like 2 protein-coding 50 0.005961
-90333 ZNF468 zinc finger protein 468 protein-coding 69 0.008226
-90338 ZNF160 zinc finger protein 160 protein-coding 181 0.02158
-90342 FER1L5 fer-1 like family member 5 protein-coding 115 0.01371
-90353 CTU1 cytosolic thiouridylase subunit 1 protein-coding 7 0.0008345
-90355 C5orf30 chromosome 5 open reading frame 30 protein-coding 16 0.001907
-90362 FAM110B family with sequence similarity 110 member B protein-coding 70 0.008345
-90378 SAMD1 sterile alpha motif domain containing 1 protein-coding 25 0.00298
-90379 DCAF15 DDB1 and CUL4 associated factor 15 protein-coding 47 0.005603
-90381 TICRR TOPBP1 interacting checkpoint and replication regulator protein-coding 151 0.018
-90390 MED30 mediator complex subunit 30 protein-coding 20 0.002384
-90407 TMEM41A transmembrane protein 41A protein-coding 29 0.003457
-90410 IFT20 intraflagellar transport 20 protein-coding 14 0.001669
-90411 MCFD2 multiple coagulation factor deficiency 2 protein-coding 15 0.001788
-90416 CCDC32 coiled-coil domain containing 32 protein-coding 20 0.002384
-90417 KNSTRN kinetochore localized astrin (SPAG5) binding protein protein-coding 46 0.005484
-90423 ATP6V1E2 ATPase H+ transporting V1 subunit E2 protein-coding 34 0.004053
-90427 BMF Bcl2 modifying factor protein-coding 25 0.00298
-90441 ZNF622 zinc finger protein 622 protein-coding 66 0.007868
-90459 ERI1 exoribonuclease 1 protein-coding 23 0.002742
-90480 GADD45GIP1 GADD45G interacting protein 1 protein-coding 22 0.002623
-90485 ZNF835 zinc finger protein 835 protein-coding 170 0.02027
-90488 TMEM263 transmembrane protein 263 protein-coding 6 0.0007153
-90506 LRRC46 leucine rich repeat containing 46 protein-coding 34 0.004053
-90507 SCRN2 secernin 2 protein-coding 49 0.005842
-90522 YIF1B Yip1 interacting factor homolog B, membrane trafficking protein protein-coding 27 0.003219
-90523 MLIP muscular LMNA interacting protein protein-coding 74 0.008822
-90525 SHF Src homology 2 domain containing F protein-coding 42 0.005007
-90527 DUOXA1 dual oxidase maturation factor 1 protein-coding 42 0.005007
-90529 STPG1 sperm tail PG-rich repeat containing 1 protein-coding 46 0.005484
-90550 MCU mitochondrial calcium uniporter protein-coding 31 0.003696
-90557 CCDC74A coiled-coil domain containing 74A protein-coding 68 0.008107
-90576 ZNF799 zinc finger protein 799 protein-coding 83 0.009895
-90580 TIMM29 translocase of inner mitochondrial membrane 29 protein-coding 10 0.001192
-90586 AOC4P amine oxidase, copper containing 4, pseudogene pseudo 86 0.01025
-90589 ZNF625 zinc finger protein 625 protein-coding 59 0.007034
-90592 ZNF700 zinc finger protein 700 protein-coding 105 0.01252
-90594 ZNF439 zinc finger protein 439 protein-coding 74 0.008822
-90624 LYRM7 LYR motif containing 7 protein-coding 10 0.001192
-90625 ERVH48-1 endogenous retrovirus group 48 member 1 protein-coding 11 0.001311
-90627 STARD13 StAR related lipid transfer domain containing 13 protein-coding 127 0.01514
-90632 LINC00473 long intergenic non-protein coding RNA 473 ncRNA 5 0.0005961
-90634 N4BP2L1 NEDD4 binding protein 2 like 1 protein-coding 25 0.00298
-90637 ZFAND2A zinc finger AN1-type containing 2A protein-coding 19 0.002265
-90639 COX19 COX19, cytochrome c oxidase assembly factor protein-coding 15 0.001788
-90649 ZNF486 zinc finger protein 486 protein-coding 83 0.009895
-90655 TGIF2LY TGFB induced factor homeobox 2 like, Y-linked protein-coding 14 0.001669
-90665 TBL1Y transducin beta like 1 Y-linked protein-coding 22 0.002623
-90668 CARMIL3 capping protein regulator and myosin 1 linker 3 protein-coding 152 0.01812
-90678 LRSAM1 leucine rich repeat and sterile alpha motif containing 1 protein-coding 79 0.009418
-90693 CCDC126 coiled-coil domain containing 126 protein-coding 16 0.001907
-90701 SEC11C SEC11 homolog C, signal peptidase complex subunit protein-coding 23 0.002742
-90736 FAM104B family with sequence similarity 104 member B protein-coding 14 0.001669
-90737 PAGE5 PAGE family member 5 protein-coding 24 0.002861
-90780 PYGO2 pygopus family PHD finger 2 protein-coding 59 0.007034
-90799 CEP95 centrosomal protein 95 protein-coding 88 0.01049
-90806 ANGEL2 angel homolog 2 protein-coding 46 0.005484
-90809 PIP4P1 phosphatidylinositol-4,5-bisphosphate 4-phosphatase 1 protein-coding 28 0.003338
-90826 PRMT9 protein arginine methyltransferase 9 protein-coding 78 0.009299
-90827 ZNF479 zinc finger protein 479 protein-coding 220 0.02623
-90835 CCDC189 coiled-coil domain containing 189 protein-coding 33 0.003934
-90843 TCEAL8 transcription elongation factor A like 8 protein-coding 19 0.002265
-90850 ZNF598 zinc finger protein 598 protein-coding 78 0.009299
-90853 SPOCD1 SPOC domain containing 1 protein-coding 108 0.01288
-90864 SPSB3 splA/ryanodine receptor domain and SOCS box containing 3 protein-coding 45 0.005365
-90865 IL33 interleukin 33 protein-coding 34 0.004053
-90871 DMAC1 distal membrane arm assembly complex 1 protein-coding 14 0.001669
-90874 ZNF697 zinc finger protein 697 protein-coding 57 0.006795
-90933 TRIM41 tripartite motif containing 41 protein-coding 65 0.007749
-90952 ESAM endothelial cell adhesion molecule protein-coding 50 0.005961
-90956 ADCK2 aarF domain containing kinase 2 protein-coding 57 0.006795
-90957 DHX57 DExH-box helicase 57 protein-coding 133 0.01586
-90987 ZNF251 zinc finger protein 251 protein-coding 85 0.01013
-90990 KIFC2 kinesin family member C2 protein-coding 81 0.009657
-90993 CREB3L1 cAMP responsive element binding protein 3 like 1 protein-coding 50 0.005961
-91010 FMNL3 formin like 3 protein-coding 305 0.03636
-91012 CERS5 ceramide synthase 5 protein-coding 40 0.004769
-91039 DPP9 dipeptidyl peptidase 9 protein-coding 89 0.01061
-91050 CCDC149 coiled-coil domain containing 149 protein-coding 42 0.005007
-91056 AP5B1 adaptor related protein complex 5 beta 1 subunit protein-coding 48 0.005722
-91057 CCDC34 coiled-coil domain containing 34 protein-coding 46 0.005484
-91074 ANKRD30A ankyrin repeat domain 30A protein-coding 336 0.04006
-91107 TRIM47 tripartite motif containing 47 protein-coding 43 0.005126
-91120 ZNF682 zinc finger protein 682 protein-coding 70 0.008345
-91133 L3MBTL4 L3MBTL4, histone methyl-lysine binding protein protein-coding 103 0.01228
-91137 SLC25A46 solute carrier family 25 member 46 protein-coding 42 0.005007
-91147 TMEM67 transmembrane protein 67 protein-coding 103 0.01228
-91151 TIGD7 tigger transposable element derived 7 protein-coding 76 0.009061
-91156 IGFN1 immunoglobulin-like and fibronectin type III domain containing 1 protein-coding 154 0.01836
-91179 SCARF2 scavenger receptor class F member 2 protein-coding 49 0.005842
-91181 NUP210L nucleoporin 210 like protein-coding 225 0.02682
-91227 GGTLC2 gamma-glutamyltransferase light chain 2 protein-coding 19 0.002265
-91252 SLC39A13 solute carrier family 39 member 13 protein-coding 28 0.003338
-91272 BOD1 biorientation of chromosomes in cell division 1 protein-coding 15 0.001788
-91283 MSANTD3 Myb/SANT DNA binding domain containing 3 protein-coding 40 0.004769
-91289 LMF2 lipase maturation factor 2 protein-coding 70 0.008345
-91298 C12orf29 chromosome 12 open reading frame 29 protein-coding 27 0.003219
-91300 R3HDM4 R3H domain containing 4 protein-coding 28 0.003338
-91304 TMEM259 transmembrane protein 259 protein-coding 34 0.004053
-91316 GUSBP11 glucuronidase, beta pseudogene 11 pseudo 23 0.002742
-91319 DERL3 derlin 3 protein-coding 20 0.002384
-91351 DDX60L DExD/H-box 60 like protein-coding 163 0.01943
-91355 LRP5L LDL receptor related protein 5 like protein-coding 28 0.003338
-91368 CDKN2AIPNL CDKN2A interacting protein N-terminal like protein-coding 10 0.001192
-91369 ANKRD40 ankyrin repeat domain 40 protein-coding 39 0.004649
-91373 UAP1L1 UDP-N-acetylglucosamine pyrophosphorylase 1 like 1 protein-coding 36 0.004292
-91392 ZNF502 zinc finger protein 502 protein-coding 91 0.01085
-91404 SESTD1 SEC14 and spectrin domain containing 1 protein-coding 103 0.01228
-91408 BTF3L4 basic transcription factor 3 like 4 protein-coding 15 0.001788
-91409 CCDC74B coiled-coil domain containing 74B protein-coding 69 0.008226
-91419 ATP23 ATP23 metallopeptidase and ATP synthase assembly factor homolog protein-coding 25 0.00298
-91433 RCCD1 RCC1 domain containing 1 protein-coding 14 0.001669
-91442 FAAP24 Fanconi anemia core complex associated protein 24 protein-coding 39 0.004649
-91445 RNF185 ring finger protein 185 protein-coding 26 0.0031
-91452 ACBD5 acyl-CoA binding domain containing 5 protein-coding 60 0.007153
-91461 PKDCC protein kinase domain containing, cytoplasmic protein-coding 33 0.003934
-91464 ISX intestine specific homeobox protein-coding 39 0.004649
-91522 COL23A1 collagen type XXIII alpha 1 chain protein-coding 57 0.006795
-91523 PCED1B PC-esterase domain containing 1B protein-coding 62 0.007392
-91526 ANKRD44 ankyrin repeat domain 44 protein-coding 111 0.01323
-91543 RSAD2 radical S-adenosyl methionine domain containing 2 protein-coding 62 0.007392
-91544 UBXN11 UBX domain protein 11 protein-coding 44 0.005246
-91574 C12orf65 chromosome 12 open reading frame 65 protein-coding 25 0.00298
-91582 RPS19BP1 ribosomal protein S19 binding protein 1 protein-coding 5 0.0005961
-91584 PLXNA4 plexin A4 protein-coding 377 0.04495
-91603 ZNF830 zinc finger protein 830 protein-coding 36 0.004292
-91607 SLFN11 schlafen family member 11 protein-coding 137 0.01633
-91608 RASL10B RAS like family 10 member B protein-coding 28 0.003338
-91612 CHURC1 churchill domain containing 1 protein-coding 6 0.0007153
-91614 DEPDC7 DEP domain containing 7 protein-coding 63 0.007511
-91624 NEXN nexilin F-actin binding protein protein-coding 94 0.01121
-91646 TDRD12 tudor domain containing 12 protein-coding 46 0.005484
-91647 ATPAF2 ATP synthase mitochondrial F1 complex assembly factor 2 protein-coding 18 0.002146
-91653 BOC BOC cell adhesion associated, oncogene regulated protein-coding 132 0.01574
-91661 ZNF765 zinc finger protein 765 protein-coding 73 0.008703
-91662 NLRP12 NLR family pyrin domain containing 12 protein-coding 226 0.02694
-91663 MYADM myeloid associated differentiation marker protein-coding 50 0.005961
-91664 ZNF845 zinc finger protein 845 protein-coding 130 0.0155
-91683 SYT12 synaptotagmin 12 protein-coding 106 0.01264
-91687 CENPL centromere protein L protein-coding 35 0.004173
-91689 SMDT1 single-pass membrane protein with aspartate rich tail 1 protein-coding 7 0.0008345
-91694 LONRF1 LON peptidase N-terminal domain and ring finger 1 protein-coding 64 0.00763
-91703 ACY3 aminoacylase 3 protein-coding 42 0.005007
-91734 IDI2 isopentenyl-diphosphate delta isomerase 2 protein-coding 27 0.003219
-91746 YTHDC1 YTH domain containing 1 protein-coding 122 0.01454
-91748 ELMSAN1 ELM2 and Myb/SANT domain containing 1 protein-coding 137 0.01633
-91749 MFSD4B major facilitator superfamily domain containing 4B protein-coding 64 0.00763
-91750 LIN52 lin-52 DREAM MuvB core complex component protein-coding 9 0.001073
-91752 ZNF804A zinc finger protein 804A protein-coding 362 0.04316
-91754 NEK9 NIMA related kinase 9 protein-coding 81 0.009657
-91768 CABLES1 Cdk5 and Abl enzyme substrate 1 protein-coding 50 0.005961
-91775 NXPE3 neurexophilin and PC-esterase domain family member 3 protein-coding 72 0.008584
-91782 CHMP7 charged multivesicular body protein 7 protein-coding 43 0.005126
-91801 ALKBH8 alkB homolog 8, tRNA methyltransferase protein-coding 53 0.006319
-91807 MYLK3 myosin light chain kinase 3 protein-coding 106 0.01264
-91828 EXOC3L4 exocyst complex component 3 like 4 protein-coding 45 0.005365
-91833 WDR20 WD repeat domain 20 protein-coding 49 0.005842
-91851 CHRDL1 chordin like 1 protein-coding 93 0.01109
-91860 CALML4 calmodulin like 4 protein-coding 16 0.001907
-91862 MARVELD3 MARVEL domain containing 3 protein-coding 44 0.005246
-91869 RFT1 RFT1 homolog protein-coding 35 0.004173
-91875 TTC5 tetratricopeptide repeat domain 5 protein-coding 47 0.005603
-91893 FDXACB1 ferredoxin-fold anticodon binding domain containing 1 protein-coding 49 0.005842
-91894 C11orf52 chromosome 11 open reading frame 52 protein-coding 16 0.001907
-91937 TIMD4 T cell immunoglobulin and mucin domain containing 4 protein-coding 94 0.01121
-91942 NDUFAF2 NADH:ubiquinone oxidoreductase complex assembly factor 2 protein-coding 17 0.002027
-91947 ARRDC4 arrestin domain containing 4 protein-coding 43 0.005126
-91948 LINC00923 long intergenic non-protein coding RNA 923 ncRNA 5 0.0005961
-91949 COG7 component of oligomeric golgi complex 7 protein-coding 75 0.008941
-91966 CXorf40A chromosome X open reading frame 40A protein-coding 28 0.003338
-91975 ZNF300 zinc finger protein 300 protein-coding 103 0.01228
-91977 MYOZ3 myozenin 3 protein-coding 29 0.003457
-91978 TPGS1 tubulin polyglutamylase complex subunit 1 protein-coding 4 0.0004769
-92002 CCNQ cyclin Q protein-coding 80 0.009537
-92014 SLC25A51 solute carrier family 25 member 51 protein-coding 34 0.004053
-92017 SNX29 sorting nexin 29 protein-coding 105 0.01252
-92086 GGTLC1 gamma-glutamyltransferase light chain 1 protein-coding 54 0.006438
-92092 ZC3HAV1L zinc finger CCCH-type containing, antiviral 1 like protein-coding 13 0.00155
-92104 TTC30A tetratricopeptide repeat domain 30A protein-coding 80 0.009537
-92105 INTS4 integrator complex subunit 4 protein-coding 106 0.01264
-92106 OXNAD1 oxidoreductase NAD binding domain containing 1 protein-coding 43 0.005126
-92126 DSEL dermatan sulfate epimerase like protein-coding 223 0.02659
-92129 RIPPLY1 ripply transcriptional repressor 1 protein-coding 17 0.002027
-92140 MTDH metadherin protein-coding 73 0.008703
-92154 MTSS1L MTSS1L, I-BAR domain containing protein-coding 62 0.007392
-92162 TMEM88 transmembrane protein 88 protein-coding 18 0.002146
-92170 MTG1 mitochondrial ribosome associated GTPase 1 protein-coding 41 0.004888
-92181 UBTD2 ubiquitin domain containing 2 protein-coding 25 0.00298
-92196 DAPL1 death associated protein like 1 protein-coding 13 0.00155
-92211 CDHR1 cadherin related family member 1 protein-coding 125 0.0149
-92235 DUSP27 dual specificity phosphatase 27, atypical protein-coding 240 0.02861
-92241 RCSD1 RCSD domain containing 1 protein-coding 55 0.006557
-92255 LMBRD2 LMBR1 domain containing 2 protein-coding 101 0.01204
-92259 MRPS36 mitochondrial ribosomal protein S36 protein-coding 15 0.001788
-92270 ATP6AP1L ATPase H+ transporting accessory protein 1 like protein-coding 30 0.003577
-92283 ZNF461 zinc finger protein 461 protein-coding 85 0.01013
-92285 ZNF585B zinc finger protein 585B protein-coding 127 0.01514
-92291 CAPN13 calpain 13 protein-coding 114 0.01359
-92292 GLYATL1 glycine-N-acyltransferase like 1 protein-coding 79 0.009418
-92293 TMEM132C transmembrane protein 132C protein-coding 131 0.01562
-92304 SCGB3A1 secretoglobin family 3A member 1 protein-coding 6 0.0007153
-92305 TMEM129 transmembrane protein 129 protein-coding 16 0.001907
-92312 MEX3A mex-3 RNA binding family member A protein-coding 48 0.005722
-92335 STRADA STE20-related kinase adaptor alpha protein-coding 54 0.006438
-92340 PRR29 proline rich 29 protein-coding 11 0.001311
-92342 METTL18 methyltransferase like 18 protein-coding 41 0.004888
-92344 GORAB golgin, RAB6 interacting protein-coding 54 0.006438
-92345 NAF1 nuclear assembly factor 1 ribonucleoprotein protein-coding 60 0.007153
-92346 C1orf105 chromosome 1 open reading frame 105 protein-coding 31 0.003696
-92359 CRB3 crumbs 3, cell polarity complex component protein-coding 12 0.001431
-92369 SPSB4 splA/ryanodine receptor domain and SOCS box containing 4 protein-coding 40 0.004769
-92370 PXYLP1 2-phosphoxylose phosphatase 1 protein-coding 48 0.005722
-92399 MRRF mitochondrial ribosome recycling factor protein-coding 18 0.002146
-92400 RBM18 RNA binding motif protein 18 protein-coding 29 0.003457
-92421 CHMP4C charged multivesicular body protein 4C protein-coding 30 0.003577
-92482 BBIP1 BBSome interacting protein 1 protein-coding 3 0.0003577
-92483 LDHAL6B lactate dehydrogenase A like 6B protein-coding 45 0.005365
-92521 SPECC1 sperm antigen with calponin homology and coiled-coil domains 1 protein-coding 138 0.01645
-92552 ATXN3L ataxin 3 like protein-coding 54 0.006438
-92558 BICDL1 BICD family like cargo adaptor 1 protein-coding 57 0.006795
-92565 FANK1 fibronectin type III and ankyrin repeat domains 1 protein-coding 57 0.006795
-92579 G6PC3 glucose-6-phosphatase catalytic subunit 3 protein-coding 26 0.0031
-92591 ASB16 ankyrin repeat and SOCS box containing 16 protein-coding 44 0.005246
-92595 ZNF764 zinc finger protein 764 protein-coding 36 0.004292
-92597 MOB1B MOB kinase activator 1B protein-coding 25 0.00298
-92609 TIMM50 translocase of inner mitochondrial membrane 50 protein-coding 42 0.005007
-92610 TIFA TRAF interacting protein with forkhead associated domain protein-coding 15 0.001788
-92667 MGME1 mitochondrial genome maintenance exonuclease 1 protein-coding 40 0.004769
-92675 DTD1 D-tyrosyl-tRNA deacylase 1 protein-coding 67 0.007988
-92689 FAM114A1 family with sequence similarity 114 member A1 protein-coding 61 0.007272
-92691 TMEM169 transmembrane protein 169 protein-coding 55 0.006557
-92703 TMEM183A transmembrane protein 183A protein-coding 33 0.003934
-92714 ARRDC1 arrestin domain containing 1 protein-coding 37 0.004411
-92715 DPH7 diphthamide biosynthesis 7 protein-coding 28 0.003338
-92736 OTOP2 otopetrin 2 protein-coding 64 0.00763
-92737 DNER delta/notch like EGF repeat containing protein-coding 126 0.01502
-92745 SLC38A5 solute carrier family 38 member 5 protein-coding 44 0.005246
-92747 BPIFB1 BPI fold containing family B member 1 protein-coding 67 0.007988
-92749 DRC1 dynein regulatory complex subunit 1 protein-coding 95 0.01133
-92755 TUBBP1 tubulin beta pseudogene 1 pseudo 83 0.009895
-92797 HELB DNA helicase B protein-coding 135 0.01609
-92799 SHKBP1 SH3KBP1 binding protein 1 protein-coding 75 0.008941
-92806 CENPBD1 CENPB DNA-binding domain containing 1 protein-coding 18 0.002146
-92815 HIST3H2A histone cluster 3 H2A protein-coding 22 0.002623
-92822 ZNF276 zinc finger protein 276 protein-coding 68 0.008107
-92840 REEP6 receptor accessory protein 6 protein-coding 16 0.001907
-92856 IMP4 IMP4, U3 small nucleolar ribonucleoprotein protein-coding 41 0.004888
-92906 HNRNPLL heterogeneous nuclear ribonucleoprotein L like protein-coding 45 0.005365
-92912 UBE2Q2 ubiquitin conjugating enzyme E2 Q2 protein-coding 36 0.004292
-92922 CCDC102A coiled-coil domain containing 102A protein-coding 49 0.005842
-92935 MARS2 methionyl-tRNA synthetase 2, mitochondrial protein-coding 70 0.008345
-92949 ADAMTSL1 ADAMTS like 1 protein-coding 245 0.02921
-92960 PEX11G peroxisomal biogenesis factor 11 gamma protein-coding 21 0.002504
-92979 MARCH9 membrane associated ring-CH-type finger 9 protein-coding 21 0.002504
-92999 ZBTB47 zinc finger and BTB domain containing 47 protein-coding 51 0.00608
-93010 B3GNT7 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 7 protein-coding 45 0.005365
-93034 NT5C1B 5'-nucleotidase, cytosolic IB protein-coding 107 0.01276
-93035 PKHD1L1 PKHD1 like 1 protein-coding 543 0.06474
-93058 COQ10A coenzyme Q10A protein-coding 27 0.003219
-93081 TEX30 testis expressed 30 protein-coding 36 0.004292
-93082 NEURL3 neuralized E3 ubiquitin protein ligase 3 protein-coding 27 0.003219
-93099 DMKN dermokine protein-coding 72 0.008584
-93100 NAPRT nicotinate phosphoribosyltransferase protein-coding 42 0.005007
-93107 KCNG4 potassium voltage-gated channel modifier subfamily G member 4 protein-coding 98 0.01168
-93109 TMEM44 transmembrane protein 44 protein-coding 43 0.005126
-93129 ORAI3 ORAI calcium release-activated calcium modulator 3 protein-coding 24 0.002861
-93134 ZNF561 zinc finger protein 561 protein-coding 52 0.006199
-93145 OLFM2 olfactomedin 2 protein-coding 58 0.006915
-93166 PRDM6 PR/SET domain 6 protein-coding 36 0.004292
-93183 PIGM phosphatidylinositol glycan anchor biosynthesis class M protein-coding 34 0.004053
-93185 IGSF8 immunoglobulin superfamily member 8 protein-coding 78 0.009299
-93190 C1orf158 chromosome 1 open reading frame 158 protein-coding 30 0.003577
-93210 PGAP3 post-GPI attachment to proteins 3 protein-coding 25 0.00298
-93233 CCDC114 coiled-coil domain containing 114 protein-coding 68 0.008107
-93273 LEMD1 LEM domain containing 1 protein-coding 25 0.00298
-93323 HAUS8 HAUS augmin like complex subunit 8 protein-coding 51 0.00608
-93343 MVB12A multivesicular body subunit 12A protein-coding 32 0.003815
-93349 SP140L SP140 nuclear body protein like protein-coding 78 0.009299
-93377 OPALIN oligodendrocytic myelin paranodal and inner loop protein protein-coding 22 0.002623
-93380 MMGT1 membrane magnesium transporter 1 protein-coding 28 0.003338
-93408 MYL10 myosin light chain 10 protein-coding 33 0.003934
-93426 SYCE1 synaptonemal complex central element protein 1 protein-coding 46 0.005484
-93436 ARMC6 armadillo repeat containing 6 protein-coding 61 0.007272
-93474 ZNF670 zinc finger protein 670 protein-coding 54 0.006438
-93487 MAPK1IP1L mitogen-activated protein kinase 1 interacting protein 1 like protein-coding 18 0.002146
-93492 TPTE2 transmembrane phosphoinositide 3-phosphatase and tensin homolog 2 protein-coding 135 0.01609
-93517 SDR42E1 short chain dehydrogenase/reductase family 42E, member 1 protein-coding 50 0.005961
-93550 ZFAND4 zinc finger AN1-type containing 4 protein-coding 98 0.01168
-93556 EGFEM1P EGF like and EMI domain containing 1, pseudogene pseudo 12 0.001431
-93587 TRMT10A tRNA methyltransferase 10A protein-coding 51 0.00608
-93589 CACNA2D4 calcium voltage-gated channel auxiliary subunit alpha2delta 4 protein-coding 173 0.02062
-93594 TBC1D31 TBC1 domain family member 31 protein-coding 107 0.01276
-93611 FBXO44 F-box protein 44 protein-coding 28 0.003338
-93621 MRFAP1 Morf4 family associated protein 1 protein-coding 14 0.001669
-93624 TADA2B transcriptional adaptor 2B protein-coding 56 0.006676
-93627 TBCK TBC1 domain containing kinase protein-coding 98 0.01168
-93643 TJAP1 tight junction associated protein 1 protein-coding 52 0.006199
-93649 MYOCD myocardin protein-coding 177 0.0211
-93650 ACP4 acid phosphatase 4 protein-coding 58 0.006915
-93659 CGB5 chorionic gonadotropin beta subunit 5 protein-coding 19 0.002265
-93661 CAPZA3 capping actin protein of muscle Z-line alpha subunit 3 protein-coding 58 0.006915
-93663 ARHGAP18 Rho GTPase activating protein 18 protein-coding 78 0.009299
-93664 CADPS2 calcium dependent secretion activator 2 protein-coding 229 0.0273
-93953 GCNA germ cell nuclear acidic peptidase protein-coding 113 0.01347
-93973 ACTR8 ARP8 actin related protein 8 homolog protein-coding 63 0.007511
-93974 ATP5IF1 ATP synthase inhibitory factor subunit 1 protein-coding 12 0.001431
-93978 CLEC6A C-type lectin domain containing 6A protein-coding 31 0.003696
-93979 CPA5 carboxypeptidase A5 protein-coding 62 0.007392
-93986 FOXP2 forkhead box P2 protein-coding 128 0.01526
-94005 PIGS phosphatidylinositol glycan anchor biosynthesis class S protein-coding 49 0.005842
-94009 SERHL serine hydrolase-like (pseudogene) pseudo 12 0.001431
-94015 TTYH2 tweety family member 2 protein-coding 59 0.007034
-94025 MUC16 mucin 16, cell surface associated protein-coding 1511 0.1801
-94026 POM121L2 POM121 transmembrane nucleoporin like 2 protein-coding 80 0.009537
-94027 CGB7 chorionic gonadotropin beta subunit 7 protein-coding 22 0.002623
-94030 LRRC4B leucine rich repeat containing 4B protein-coding 122 0.01454
-94031 HTRA3 HtrA serine peptidase 3 protein-coding 51 0.00608
-94032 CAMK2N2 calcium/calmodulin dependent protein kinase II inhibitor 2 protein-coding 8 0.0009537
-94033 FTMT ferritin mitochondrial protein-coding 77 0.00918
-94039 ZNF101 zinc finger protein 101 protein-coding 57 0.006795
-94056 SYAP1 synapse associated protein 1 protein-coding 30 0.003577
-94059 LENG9 leukocyte receptor cluster member 9 protein-coding 46 0.005484
-94081 SFXN1 sideroflexin 1 protein-coding 35 0.004173
-94086 HSPB9 heat shock protein family B (small) member 9 protein-coding 19 0.002265
-94097 SFXN5 sideroflexin 5 protein-coding 32 0.003815
-94101 ORMDL1 ORMDL sphingolipid biosynthesis regulator 1 protein-coding 12 0.001431
-94103 ORMDL3 ORMDL sphingolipid biosynthesis regulator 3 protein-coding 16 0.001907
-94104 PAXBP1 PAX3 and PAX7 binding protein 1 protein-coding 113 0.01347
-94107 TMEM203 transmembrane protein 203 protein-coding 17 0.002027
-94115 CGB8 chorionic gonadotropin beta subunit 8 protein-coding 8 0.0009537
-94120 SYTL3 synaptotagmin like 3 protein-coding 66 0.007868
-94121 SYTL4 synaptotagmin like 4 protein-coding 86 0.01025
-94122 SYTL5 synaptotagmin like 5 protein-coding 100 0.01192
-94134 ARHGAP12 Rho GTPase activating protein 12 protein-coding 88 0.01049
-94137 RP1L1 RP1 like 1 protein-coding 364 0.0434
-94160 ABCC12 ATP binding cassette subfamily C member 12 protein-coding 189 0.02253
-94233 OPN4 opsin 4 protein-coding 74 0.008822
-94234 FOXQ1 forkhead box Q1 protein-coding 35 0.004173
-94235 GNG8 G protein subunit gamma 8 protein-coding 4 0.0004769
-94239 H2AFV H2A histone family member V protein-coding 19 0.002265
-94240 EPSTI1 epithelial stromal interaction 1 protein-coding 59 0.007034
-94241 TP53INP1 tumor protein p53 inducible nuclear protein 1 protein-coding 29 0.003457
-94274 PPP1R14A protein phosphatase 1 regulatory inhibitor subunit 14A protein-coding 17 0.002027
-95681 CEP41 centrosomal protein 41 protein-coding 54 0.006438
-96459 FNIP1 folliculin interacting protein 1 protein-coding 127 0.01514
-96597 TBC1D27P TBC1 domain family member 27, pseudogene pseudo 37 0.004411
-96610 BMS1P20 BMS1, ribosome biogenesis factor pseudogene 20 pseudo 39 0.004649
-96626 LIMS3 LIM zinc finger domain containing 3 protein-coding 2 0.0002384
-96764 TGS1 trimethylguanosine synthase 1 protein-coding 90 0.01073
-103910 MYL12B myosin light chain 12B protein-coding 20 0.002384
-112398 EGLN2 egl-9 family hypoxia inducible factor 2 protein-coding 50 0.005961
-112399 EGLN3 egl-9 family hypoxia inducible factor 3 protein-coding 30 0.003577
-112401 BIRC8 baculoviral IAP repeat containing 8 protein-coding 64 0.00763
-112464 CAVIN3 caveolae associated protein 3 protein-coding 25 0.00298
-112476 PRRT2 proline rich transmembrane protein 2 protein-coding 60 0.007153
-112479 ERI2 ERI1 exoribonuclease family member 2 protein-coding 42 0.005007
-112483 SAT2 spermidine/spermine N1-acetyltransferase family member 2 protein-coding 16 0.001907
-112487 DTD2 D-tyrosyl-tRNA deacylase 2 (putative) protein-coding 13 0.00155
-112495 GTF3C6 general transcription factor IIIC subunit 6 protein-coding 23 0.002742
-112574 SNX18 sorting nexin 18 protein-coding 68 0.008107
-112597 CYTOR cytoskeleton regulator RNA ncRNA 3 0.0003577
-112609 MRAP2 melanocortin 2 receptor accessory protein 2 protein-coding 41 0.004888
-112611 RWDD2A RWD domain containing 2A protein-coding 22 0.002623
-112616 CMTM7 CKLF like MARVEL transmembrane domain containing 7 protein-coding 20 0.002384
-112703 FAM71E1 family with sequence similarity 71 member E1 protein-coding 24 0.002861
-112714 TUBA3E tubulin alpha 3e protein-coding 78 0.009299
-112724 RDH13 retinol dehydrogenase 13 protein-coding 34 0.004053
-112744 IL17F interleukin 17F protein-coding 30 0.003577
-112752 IFT43 intraflagellar transport 43 protein-coding 26 0.0031
-112755 STX1B syntaxin 1B protein-coding 41 0.004888
-112770 GLMP glycosylated lysosomal membrane protein protein-coding 40 0.004769
-112802 KRT71 keratin 71 protein-coding 81 0.009657
-112812 FDX1L ferredoxin 1 like protein-coding 18 0.002146
-112817 HOGA1 4-hydroxy-2-oxoglutarate aldolase 1 protein-coding 29 0.003457
-112840 WDR89 WD repeat domain 89 protein-coding 35 0.004173
-112849 L3HYPDH trans-L-3-hydroxyproline dehydratase protein-coding 29 0.003457
-112858 TP53RK TP53 regulating kinase protein-coding 28 0.003338
-112869 SGF29 SAGA complex associated factor 29 protein-coding 35 0.004173
-112885 PHF21B PHD finger protein 21B protein-coding 74 0.008822
-112936 VPS26B VPS26, retromer complex component B protein-coding 34 0.004053
-112937 GLB1L3 galactosidase beta 1 like 3 protein-coding 100 0.01192
-112939 NACC1 nucleus accumbens associated 1 protein-coding 51 0.00608
-112942 CFAP36 cilia and flagella associated protein 36 protein-coding 51 0.00608
-112950 MED8 mediator complex subunit 8 protein-coding 25 0.00298
-112970 KTI12 KTI12 chromatin associated homolog protein-coding 41 0.004888
-113000 RPUSD1 RNA pseudouridylate synthase domain containing 1 protein-coding 27 0.003219
-113026 PLCD3 phospholipase C delta 3 protein-coding 57 0.006795
-113091 PTH2 parathyroid hormone 2 protein-coding 5 0.0005961
-113115 MTFR2 mitochondrial fission regulator 2 protein-coding 30 0.003577
-113130 CDCA5 cell division cycle associated 5 protein-coding 25 0.00298
-113146 AHNAK2 AHNAK nucleoprotein 2 protein-coding 554 0.06605
-113157 RPLP0P2 ribosomal protein lateral stalk subunit P0 pseudogene 2 pseudo 73 0.008703
-113174 SAAL1 serum amyloid A like 1 protein-coding 55 0.006557
-113177 IZUMO4 IZUMO family member 4 protein-coding 21 0.002504
-113178 SCAMP4 secretory carrier membrane protein 4 protein-coding 18 0.002146
-113179 ADAT3 adenosine deaminase, tRNA specific 3 protein-coding 17 0.002027
-113189 CHST14 carbohydrate sulfotransferase 14 protein-coding 24 0.002861
-113201 CASC4 cancer susceptibility 4 protein-coding 48 0.005722
-113220 KIF12 kinesin family member 12 protein-coding 60 0.007153
-113235 SLC46A1 solute carrier family 46 member 1 protein-coding 41 0.004888
-113246 C12orf57 chromosome 12 open reading frame 57 protein-coding 12 0.001431
-113251 LARP4 La ribonucleoprotein domain family member 4 protein-coding 91 0.01085
-113263 GLCCI1 glucocorticoid induced 1 protein-coding 55 0.006557
-113277 TMEM106A transmembrane protein 106A protein-coding 25 0.00298
-113278 SLC52A3 solute carrier family 52 member 3 protein-coding 49 0.005842
-113402 SFT2D1 SFT2 domain containing 1 protein-coding 13 0.00155
-113419 TEX261 testis expressed 261 protein-coding 9 0.001073
-113444 SMIM12 small integral membrane protein 12 protein-coding 9 0.001073
-113451 AZIN2 antizyme inhibitor 2 protein-coding 75 0.008941
-113452 TMEM54 transmembrane protein 54 protein-coding 16 0.001907
-113457 TUBA3D tubulin alpha 3d protein-coding 65 0.007749
-113510 HELQ helicase, POLQ like protein-coding 115 0.01371
-113540 CMTM1 CKLF like MARVEL transmembrane domain containing 1 protein-coding 34 0.004053
-113612 CYP2U1 cytochrome P450 family 2 subfamily U member 1 protein-coding 35 0.004173
-113622 ADPRHL1 ADP-ribosylhydrolase like 1 protein-coding 42 0.005007
-113655 MFSD3 major facilitator superfamily domain containing 3 protein-coding 25 0.00298
-113675 SDSL serine dehydratase like protein-coding 52 0.006199
-113730 KLHDC7B kelch domain containing 7B protein-coding 51 0.00608
-113746 ODF3 outer dense fiber of sperm tails 3 protein-coding 23 0.002742
-113763 ZBED6CL ZBED6 C-terminal like protein-coding 23 0.002742
-113791 PIK3IP1 phosphoinositide-3-kinase interacting protein 1 protein-coding 25 0.00298
-113802 HENMT1 HEN methyltransferase 1 protein-coding 50 0.005961
-113828 FAM83F family with sequence similarity 83 member F protein-coding 53 0.006319
-113829 SLC35A4 solute carrier family 35 member A4 protein-coding 33 0.003934
-113835 ZNF257 zinc finger protein 257 protein-coding 157 0.01872
-113878 DTX2 deltex E3 ubiquitin ligase 2 protein-coding 62 0.007392
-114026 ZIM3 zinc finger imprinted 3 protein-coding 125 0.0149
-114034 TOE1 target of EGR1, exonuclease protein-coding 44 0.005246
-114038 LINC00313 long intergenic non-protein coding RNA 313 ncRNA 2 0.0002384
-114041 B3GALT5-AS1 B3GALT5 antisense RNA 1 ncRNA 9 0.001073
-114043 TSPEAR-AS2 TSPEAR antisense RNA 2 ncRNA 3 0.0003577
-114049 BUD23 BUD23, rRNA methyltransferase and ribosome maturation factor protein-coding 42 0.005007
-114088 TRIM9 tripartite motif containing 9 protein-coding 115 0.01371
-114112 TXNRD3 thioredoxin reductase 3 protein-coding 6 0.0007153
-114131 UCN3 urocortin 3 protein-coding 21 0.002504
-114132 SIGLEC11 sialic acid binding Ig like lectin 11 protein-coding 85 0.01013
-114134 SLC2A13 solute carrier family 2 member 13 protein-coding 82 0.009776
-114294 LACTB lactamase beta protein-coding 45 0.005365
-114299 PALM2 paralemmin 2 protein-coding 39 0.004649
-114327 EFHC1 EF-hand domain containing 1 protein-coding 74 0.008822
-114335 CGB1 chorionic gonadotropin beta subunit 1 protein-coding 32 0.003815
-114336 CGB2 chorionic gonadotropin beta subunit 2 protein-coding 14 0.001669
-114548 NLRP3 NLR family pyrin domain containing 3 protein-coding 256 0.03052
-114569 MAL2 mal, T cell differentiation protein 2 (gene/pseudogene) protein-coding 22 0.002623
-114571 SLC22A9 solute carrier family 22 member 9 protein-coding 101 0.01204
-114609 TIRAP TIR domain containing adaptor protein protein-coding 18 0.002146
-114614 MIR155HG MIR155 host gene ncRNA 2 0.0002384
-114625 ERMAP erythroblast membrane associated protein (Scianna blood group) protein-coding 42 0.005007
-114659 LRRC37B leucine rich repeat containing 37B protein-coding 111 0.01323
-114757 CYGB cytoglobin protein-coding 30 0.003577
-114769 CARD16 caspase recruitment domain family member 16 protein-coding 29 0.003457
-114770 PGLYRP2 peptidoglycan recognition protein 2 protein-coding 81 0.009657
-114771 PGLYRP3 peptidoglycan recognition protein 3 protein-coding 54 0.006438
-114780 PKD1L2 polycystin 1 like 2 (gene/pseudogene) protein-coding 265 0.03159
-114781 BTBD9 BTB domain containing 9 protein-coding 70 0.008345
-114783 LMTK3 lemur tyrosine kinase 3 protein-coding 104 0.0124
-114784 CSMD2 CUB and Sushi multiple domains 2 protein-coding 491 0.05854
-114785 MBD6 methyl-CpG binding domain protein 6 protein-coding 155 0.01848
-114786 XKR4 XK related 4 protein-coding 149 0.01776
-114787 GPRIN1 G protein regulated inducer of neurite outgrowth 1 protein-coding 176 0.02098
-114788 CSMD3 CUB and Sushi multiple domains 3 protein-coding 1074 0.128
-114789 SLC25A25 solute carrier family 25 member 25 protein-coding 42 0.005007
-114790 STK11IP serine/threonine kinase 11 interacting protein protein-coding 92 0.01097
-114791 TUBGCP5 tubulin gamma complex associated protein 5 protein-coding 106 0.01264
-114792 KLHL32 kelch like family member 32 protein-coding 85 0.01013
-114793 FMNL2 formin like 2 protein-coding 103 0.01228
-114794 ELFN2 extracellular leucine rich repeat and fibronectin type III domain containing 2 protein-coding 121 0.01443
-114795 TMEM132B transmembrane protein 132B protein-coding 221 0.02635
-114796 PSMG3-AS1 PSMG3 antisense RNA 1 (head to head) ncRNA 1 0.0001192
-114798 SLITRK1 SLIT and NTRK like family member 1 protein-coding 219 0.02611
-114799 ESCO1 establishment of sister chromatid cohesion N-acetyltransferase 1 protein-coding 107 0.01276
-114800 CCDC85A coiled-coil domain containing 85A protein-coding 122 0.01454
-114801 TMEM200A transmembrane protein 200A protein-coding 139 0.01657
-114803 MYSM1 Myb like, SWIRM and MPN domains 1 protein-coding 82 0.009776
-114804 RNF157 ring finger protein 157 protein-coding 65 0.007749
-114805 GALNT13 polypeptide N-acetylgalactosaminyltransferase 13 protein-coding 167 0.01991
-114815 SORCS1 sortilin related VPS10 domain containing receptor 1 protein-coding 324 0.03863
-114818 KLHL29 kelch like family member 29 protein-coding 53 0.006319
-114819 CROCCP3 ciliary rootlet coiled-coil, rootletin pseudogene 3 pseudo 65 0.007749
-114821 ZBED9 zinc finger BED-type containing 9 protein-coding 210 0.02504
-114822 RHPN1 rhophilin Rho GTPase binding protein 1 protein-coding 73 0.008703
-114823 LENG8 leukocyte receptor cluster member 8 protein-coding 106 0.01264
-114824 PNMA5 PNMA family member 5 protein-coding 69 0.008226
-114825 PWWP2A PWWP domain containing 2A protein-coding 63 0.007511
-114826 SMYD4 SET and MYND domain containing 4 protein-coding 53 0.006319
-114827 FHAD1 forkhead associated phosphopeptide binding domain 1 protein-coding 71 0.008464
-114836 SLAMF6 SLAM family member 6 protein-coding 58 0.006915
-114876 OSBPL1A oxysterol binding protein like 1A protein-coding 101 0.01204
-114879 OSBPL5 oxysterol binding protein like 5 protein-coding 89 0.01061
-114880 OSBPL6 oxysterol binding protein like 6 protein-coding 150 0.01788
-114881 OSBPL7 oxysterol binding protein like 7 protein-coding 88 0.01049
-114882 OSBPL8 oxysterol binding protein like 8 protein-coding 98 0.01168
-114883 OSBPL9 oxysterol binding protein like 9 protein-coding 82 0.009776
-114884 OSBPL10 oxysterol binding protein like 10 protein-coding 85 0.01013
-114885 OSBPL11 oxysterol binding protein like 11 protein-coding 65 0.007749
-114897 C1QTNF1 C1q and TNF related 1 protein-coding 58 0.006915
-114898 C1QTNF2 C1q and TNF related 2 protein-coding 48 0.005722
-114899 C1QTNF3 C1q and TNF related 3 protein-coding 55 0.006557
-114900 C1QTNF4 C1q and TNF related 4 protein-coding 26 0.0031
-114902 C1QTNF5 C1q and TNF related 5 protein-coding 21 0.002504
-114904 C1QTNF6 C1q and TNF related 6 protein-coding 31 0.003696
-114905 C1QTNF7 C1q and TNF related 7 protein-coding 33 0.003934
-114907 FBXO32 F-box protein 32 protein-coding 39 0.004649
-114908 TMEM123 transmembrane protein 123 protein-coding 18 0.002146
-114926 SMIM19 small integral membrane protein 19 protein-coding 15 0.001788
-114928 GPRASP2 G protein-coupled receptor associated sorting protein 2 protein-coding 127 0.01514
-114932 MRFAP1L1 Morf4 family associated protein 1 like 1 protein-coding 10 0.001192
-114960 TSGA13 testis specific 13 protein-coding 43 0.005126
-114971 PTPMT1 protein tyrosine phosphatase, mitochondrial 1 protein-coding 23 0.002742
-114984 FLYWCH2 FLYWCH family member 2 protein-coding 12 0.001431
-114987 WDR31 WD repeat domain 31 protein-coding 41 0.004888
-114990 VASN vasorin protein-coding 34 0.004053
-114991 ZNF618 zinc finger protein 618 protein-coding 82 0.009776
-115004 CGAS cyclic GMP-AMP synthase protein-coding 49 0.005842
-115019 SLC26A9 solute carrier family 26 member 9 protein-coding 114 0.01359
-115024 NT5C3B 5'-nucleotidase, cytosolic IIIB protein-coding 27 0.003219
-115098 CCDC124 coiled-coil domain containing 124 protein-coding 28 0.003338
-115106 HAUS1 HAUS augmin like complex subunit 1 protein-coding 41 0.004888
-115111 SLC26A7 solute carrier family 26 member 7 protein-coding 164 0.01955
-115123 MARCH3 membrane associated ring-CH-type finger 3 protein-coding 26 0.0031
-115196 ZNF554 zinc finger protein 554 protein-coding 50 0.005961
-115201 ATG4A autophagy related 4A cysteine peptidase protein-coding 51 0.00608
-115207 KCTD12 potassium channel tetramerization domain containing 12 protein-coding 16 0.001907
-115209 OMA1 OMA1 zinc metallopeptidase protein-coding 46 0.005484
-115265 DDIT4L DNA damage inducible transcript 4 like protein-coding 40 0.004769
-115273 RAB42 RAB42, member RAS oncogene family protein-coding 21 0.002504
-115286 SLC25A26 solute carrier family 25 member 26 protein-coding 19 0.002265
-115290 FBXO17 F-box protein 17 protein-coding 3 0.0003577
-115294 PCMTD1 protein-L-isoaspartate (D-aspartate) O-methyltransferase domain containing 1 protein-coding 66 0.007868
-115330 GPR146 G protein-coupled receptor 146 protein-coding 24 0.002861
-115350 FCRL1 Fc receptor like 1 protein-coding 117 0.01395
-115352 FCRL3 Fc receptor like 3 protein-coding 160 0.01907
-115353 LRRC42 leucine rich repeat containing 42 protein-coding 55 0.006557
-115361 GBP4 guanylate binding protein 4 protein-coding 89 0.01061
-115362 GBP5 guanylate binding protein 5 protein-coding 102 0.01216
-115399 LRRC56 leucine rich repeat containing 56 protein-coding 50 0.005961
-115416 MALSU1 mitochondrial assembly of ribosomal large subunit 1 protein-coding 20 0.002384
-115426 UHRF2 ubiquitin like with PHD and ring finger domains 2 protein-coding 82 0.009776
-115509 ZNF689 zinc finger protein 689 protein-coding 66 0.007868
-115548 FCHO2 FCH domain only 2 protein-coding 83 0.009895
-115557 ARHGEF25 Rho guanine nucleotide exchange factor 25 protein-coding 82 0.009776
-115560 ZNF501 zinc finger protein 501 protein-coding 37 0.004411
-115572 FAM46B family with sequence similarity 46 member B protein-coding 42 0.005007
-115584 SLC5A11 solute carrier family 5 member 11 protein-coding 105 0.01252
-115650 TNFRSF13C TNF receptor superfamily member 13C protein-coding 17 0.002027
-115653 KIR3DL3 killer cell immunoglobulin like receptor, three Ig domains and long cytoplasmic tail 3 protein-coding 37 0.004411
-115677 NOSTRIN nitric oxide synthase trafficking protein-coding 62 0.007392
-115701 ALPK2 alpha kinase 2 protein-coding 263 0.03135
-115703 ARHGAP33 Rho GTPase activating protein 33 protein-coding 147 0.01753
-115704 EVI5L ecotropic viral integration site 5 like protein-coding 74 0.008822
-115708 TRMT61A tRNA methyltransferase 61A protein-coding 17 0.002027
-115727 RASGRP4 RAS guanyl releasing protein 4 protein-coding 84 0.01001
-115749 C12orf56 chromosome 12 open reading frame 56 protein-coding 46 0.005484
-115752 DIS3L DIS3 like exosome 3'-5' exoribonuclease protein-coding 100 0.01192
-115761 ARL11 ADP ribosylation factor like GTPase 11 protein-coding 24 0.002861
-115795 FANCD2OS FANCD2 opposite strand protein-coding 25 0.00298
-115811 IQCD IQ motif containing D protein-coding 40 0.004769
-115817 DHRS1 dehydrogenase/reductase 1 protein-coding 25 0.00298
-115825 WDFY2 WD repeat and FYVE domain containing 2 protein-coding 38 0.00453
-115827 RAB3C RAB3C, member RAS oncogene family protein-coding 46 0.005484
-115861 NXNL1 nucleoredoxin like 1 protein-coding 23 0.002742
-115908 CTHRC1 collagen triple helix repeat containing 1 protein-coding 33 0.003934
-115939 TSR3 TSR3, acp transferase ribosome maturation factor protein-coding 30 0.003577
-115948 CCDC151 coiled-coil domain containing 151 protein-coding 70 0.008345
-115950 ZNF653 zinc finger protein 653 protein-coding 60 0.007153
-115992 RNF166 ring finger protein 166 protein-coding 14 0.001669
-116028 RMI2 RecQ mediated genome instability 2 protein-coding 7 0.0008345
-116039 OSR2 odd-skipped related transciption factor 2 protein-coding 62 0.007392
-116064 LRRC58 leucine rich repeat containing 58 protein-coding 21 0.002504
-116068 LYSMD3 LysM domain containing 3 protein-coding 34 0.004053
-116071 BATF2 basic leucine zipper ATF-like transcription factor 2 protein-coding 16 0.001907
-116085 SLC22A12 solute carrier family 22 member 12 protein-coding 85 0.01013
-116092 DNTTIP1 deoxynucleotidyltransferase terminal interacting protein 1 protein-coding 42 0.005007
-116093 DIRC1 disrupted in renal carcinoma 1 protein-coding 20 0.002384
-116113 FOXP4 forkhead box P4 protein-coding 86 0.01025
-116115 ZNF526 zinc finger protein 526 protein-coding 65 0.007749
-116123 FMO9P flavin containing monooxygenase 9 pseudogene pseudo 15 0.001788
-116135 LRRC3B leucine rich repeat containing 3B protein-coding 53 0.006319
-116138 KLHDC3 kelch domain containing 3 protein-coding 48 0.005722
-116143 WDR92 WD repeat domain 92 protein-coding 37 0.004411
-116150 NUS1 NUS1 dehydrodolichyl diphosphate synthase subunit protein-coding 23 0.002742
-116151 FAM210B family with sequence similarity 210 member B protein-coding 8 0.0009537
-116154 PHACTR3 phosphatase and actin regulator 3 protein-coding 127 0.01514
-116159 CYYR1 cysteine and tyrosine rich 1 protein-coding 43 0.005126
-116173 CMTM5 CKLF like MARVEL transmembrane domain containing 5 protein-coding 37 0.004411
-116179 TGM7 transglutaminase 7 protein-coding 95 0.01133
-116211 TM4SF19 transmembrane 4 L six family member 19 protein-coding 26 0.0031
-116224 FAM122A family with sequence similarity 122A protein-coding 28 0.003338
-116225 ZMYND19 zinc finger MYND-type containing 19 protein-coding 28 0.003338
-116228 COX20 COX20, cytochrome c oxidase assembly factor protein-coding 13 0.00155
-116236 ABHD15 abhydrolase domain containing 15 protein-coding 37 0.004411
-116238 TLCD1 TLC domain containing 1 protein-coding 28 0.003338
-116254 GINM1 glycoprotein integral membrane 1 protein-coding 37 0.004411
-116255 MOGAT1 monoacylglycerol O-acyltransferase 1 protein-coding 88 0.01049
-116285 ACSM1 acyl-CoA synthetase medium chain family member 1 protein-coding 90 0.01073
-116328 C8orf34 chromosome 8 open reading frame 34 protein-coding 136 0.01621
-116337 PANX3 pannexin 3 protein-coding 73 0.008703
-116349 EXOC3-AS1 EXOC3 antisense RNA 1 ncRNA 12 0.001431
-116362 RBP7 retinol binding protein 7 protein-coding 6 0.0007153
-116369 SLC26A8 solute carrier family 26 member 8 protein-coding 114 0.01359
-116372 LYPD1 LY6/PLAUR domain containing 1 protein-coding 17 0.002027
-116379 IL22RA2 interleukin 22 receptor subunit alpha 2 protein-coding 39 0.004649
-116412 ZNF837 zinc finger protein 837 protein-coding 28 0.003338
-116441 TM4SF18 transmembrane 4 L six family member 18 protein-coding 19 0.002265
-116442 RAB39B RAB39B, member RAS oncogene family protein-coding 44 0.005246
-116443 GRIN3A glutamate ionotropic receptor NMDA type subunit 3A protein-coding 209 0.02492
-116444 GRIN3B glutamate ionotropic receptor NMDA type subunit 3B protein-coding 67 0.007988
-116447 TOP1MT DNA topoisomerase I mitochondrial protein-coding 86 0.01025
-116448 OLIG1 oligodendrocyte transcription factor 1 protein-coding 5 0.0005961
-116449 CLNK cytokine dependent hematopoietic cell linker protein-coding 60 0.007153
-116461 TSEN15 tRNA splicing endonuclease subunit 15 protein-coding 14 0.001669
-116496 FAM129A family with sequence similarity 129 member A protein-coding 114 0.01359
-116511 MAS1L MAS1 proto-oncogene like, G protein-coupled receptor protein-coding 51 0.00608
-116512 MRGPRD MAS related GPR family member D protein-coding 50 0.005961
-116519 APOA5 apolipoprotein A5 protein-coding 53 0.006319
-116534 MRGPRE MAS related GPR family member E protein-coding 32 0.003815
-116535 MRGPRF MAS related GPR family member F protein-coding 41 0.004888
-116540 MRPL53 mitochondrial ribosomal protein L53 protein-coding 19 0.002265
-116541 MRPL54 mitochondrial ribosomal protein L54 protein-coding 16 0.001907
-116729 PPP1R27 protein phosphatase 1 regulatory subunit 27 protein-coding 13 0.00155
-116832 RPL39L ribosomal protein L39 like protein-coding 10 0.001192
-116835 HSPA12B heat shock protein family A (Hsp70) member 12B protein-coding 61 0.007272
-116840 CNTROB centrobin, centriole duplication and spindle assembly protein protein-coding 94 0.01121
-116841 SNAP47 synaptosome associated protein 47 protein-coding 47 0.005603
-116842 LEAP2 liver enriched antimicrobial peptide 2 protein-coding 8 0.0009537
-116843 SLC18B1 solute carrier family 18 member B1 protein-coding 44 0.005246
-116844 LRG1 leucine rich alpha-2-glycoprotein 1 protein-coding 50 0.005961
-116931 MED12L mediator complex subunit 12 like protein-coding 272 0.03243
-116933 CLRN1-AS1 CLRN1 antisense RNA 1 ncRNA 6 0.0007153
-116966 WDR17 WD repeat domain 17 protein-coding 236 0.02814
-116969 ART5 ADP-ribosyltransferase 5 protein-coding 36 0.004292
-116983 ACAP3 ArfGAP with coiled-coil, ankyrin repeat and PH domains 3 protein-coding 65 0.007749
-116984 ARAP2 ArfGAP with RhoGAP domain, ankyrin repeat and PH domain 2 protein-coding 201 0.02396
-116985 ARAP1 ArfGAP with RhoGAP domain, ankyrin repeat and PH domain 1 protein-coding 128 0.01526
-116986 AGAP2 ArfGAP with GTPase domain, ankyrin repeat and PH domain 2 protein-coding 106 0.01264
-116987 AGAP1 ArfGAP with GTPase domain, ankyrin repeat and PH domain 1 protein-coding 138 0.01645
-116988 AGAP3 ArfGAP with GTPase domain, ankyrin repeat and PH domain 3 protein-coding 99 0.0118
-117143 TADA1 transcriptional adaptor 1 protein-coding 40 0.004769
-117144 CATSPER1 cation channel sperm associated 1 protein-coding 112 0.01335
-117145 THEM4 thioesterase superfamily member 4 protein-coding 19 0.002265
-117154 DACH2 dachshund family transcription factor 2 protein-coding 163 0.01943
-117155 CATSPER2 cation channel sperm associated 2 protein-coding 72 0.008584
-117156 SCGB3A2 secretoglobin family 3A member 2 protein-coding 8 0.0009537
-117157 SH2D1B SH2 domain containing 1B protein-coding 23 0.002742
-117159 DCD dermcidin protein-coding 18 0.002146
-117166 WFIKKN1 WAP, follistatin/kazal, immunoglobulin, kunitz and netrin domain containing 1 protein-coding 34 0.004053
-117177 RAB3IP RAB3A interacting protein protein-coding 68 0.008107
-117178 SSX2IP SSX family member 2 interacting protein protein-coding 73 0.008703
-117194 MRGPRX2 MAS related GPR family member X2 protein-coding 58 0.006915
-117195 MRGPRX3 MAS related GPR family member X3 protein-coding 81 0.009657
-117196 MRGPRX4 MAS related GPR family member X4 protein-coding 66 0.007868
-117245 HRASLS5 HRAS like suppressor family member 5 protein-coding 34 0.004053
-117246 FTSJ3 FtsJ RNA methyltransferase homolog 3 protein-coding 104 0.0124
-117247 SLC16A10 solute carrier family 16 member 10 protein-coding 52 0.006199
-117248 GALNT15 polypeptide N-acetylgalactosaminyltransferase 15 protein-coding 297 0.03541
-117283 IP6K3 inositol hexakisphosphate kinase 3 protein-coding 57 0.006795
-117285 DEFB118 defensin beta 118 protein-coding 33 0.003934
-117286 CIB3 calcium and integrin binding family member 3 protein-coding 40 0.004769
-117289 TAGAP T cell activation RhoGTPase activating protein protein-coding 84 0.01001
-117531 TMC1 transmembrane channel like 1 protein-coding 93 0.01109
-117532 TMC2 transmembrane channel like 2 protein-coding 137 0.01633
-117579 RLN3 relaxin 3 protein-coding 14 0.001669
-117581 TWIST2 twist family bHLH transcription factor 2 protein-coding 14 0.001669
-117583 PARD3B par-3 family cell polarity regulator beta protein-coding 182 0.0217
-117584 RFFL ring finger and FYVE like domain containing E3 ubiquitin protein ligase protein-coding 40 0.004769
-117608 ZNF354B zinc finger protein 354B protein-coding 76 0.009061
-117854 TRIM6 tripartite motif containing 6 protein-coding 78 0.009299
-118424 UBE2J2 ubiquitin conjugating enzyme E2 J2 protein-coding 26 0.0031
-118426 BORCS5 BLOC-1 related complex subunit 5 protein-coding 18 0.002146
-118427 OLFM3 olfactomedin 3 protein-coding 121 0.01443
-118429 ANTXR2 anthrax toxin receptor 2 protein-coding 57 0.006795
-118430 MUCL1 mucin like 1 protein-coding 12 0.001431
-118433 RPL23AP7 ribosomal protein L23a pseudogene 7 pseudo 13 0.00155
-118442 GPR62 G protein-coupled receptor 62 protein-coding 13 0.00155
-118460 EXOSC6 exosome component 6 protein-coding 2 0.0002384
-118461 C10orf71 chromosome 10 open reading frame 71 protein-coding 133 0.01586
-118471 PRAP1 proline rich acidic protein 1 protein-coding 16 0.001907
-118472 ZNF511 zinc finger protein 511 protein-coding 22 0.002623
-118487 CHCHD1 coiled-coil-helix-coiled-coil-helix domain containing 1 protein-coding 11 0.001311
-118490 MSS51 MSS51 mitochondrial translational activator protein-coding 36 0.004292
-118491 CFAP70 cilia and flagella associated protein 70 protein-coding 115 0.01371
-118611 C10orf90 chromosome 10 open reading frame 90 protein-coding 136 0.01621
-118663 BTBD16 BTB domain containing 16 protein-coding 52 0.006199
-118670 FAM24A family with sequence similarity 24 member A protein-coding 29 0.003457
-118672 PSTK phosphoseryl-tRNA kinase protein-coding 46 0.005484
-118738 ZNF488 zinc finger protein 488 protein-coding 62 0.007392
-118788 PIK3AP1 phosphoinositide-3-kinase adaptor protein 1 protein-coding 128 0.01526
-118812 MORN4 MORN repeat containing 4 protein-coding 18 0.002146
-118813 ZFYVE27 zinc finger FYVE-type containing 27 protein-coding 40 0.004769
-118856 MMP21 matrix metallopeptidase 21 protein-coding 60 0.007153
-118881 COMTD1 catechol-O-methyltransferase domain containing 1 protein-coding 13 0.00155
-118924 FRA10AC1 FRA10A associated CGG repeat 1 protein-coding 47 0.005603
-118932 ANKRD22 ankyrin repeat domain 22 protein-coding 23 0.002742
-118980 SFXN2 sideroflexin 2 protein-coding 36 0.004292
-118987 PDZD8 PDZ domain containing 8 protein-coding 116 0.01383
-119016 AGAP4 ArfGAP with GTPase domain, ankyrin repeat and PH domain 4 protein-coding 42 0.005007
-119032 BORCS7 BLOC-1 related complex subunit 7 protein-coding 11 0.001311
-119180 LYZL2 lysozyme like 2 protein-coding 42 0.005007
-119385 AGAP11 ArfGAP with GTPase domain, ankyrin repeat and PH domain 11 protein-coding 6 0.0007153
-119391 GSTO2 glutathione S-transferase omega 2 protein-coding 25 0.00298
-119392 SFR1 SWI5 dependent homologous recombination repair protein 1 protein-coding 23 0.002742
-119395 CALHM3 calcium homeostasis modulator 3 protein-coding 24 0.002861
-119467 CLRN3 clarin 3 protein-coding 35 0.004173
-119504 ANAPC16 anaphase promoting complex subunit 16 protein-coding 6 0.0007153
-119548 PNLIPRP3 pancreatic lipase related protein 3 protein-coding 113 0.01347
-119559 SFXN4 sideroflexin 4 protein-coding 42 0.005007
-119587 CPXM2 carboxypeptidase X, M14 family member 2 protein-coding 151 0.018
-119678 OR52E2 olfactory receptor family 52 subfamily E member 2 protein-coding 79 0.009418
-119679 OR52J3 olfactory receptor family 52 subfamily J member 3 protein-coding 75 0.008941
-119682 OR51L1 olfactory receptor family 51 subfamily L member 1 protein-coding 60 0.007153
-119687 OR51A7 olfactory receptor family 51 subfamily A member 7 protein-coding 79 0.009418
-119692 OR51S1 olfactory receptor family 51 subfamily S member 1 protein-coding 82 0.009776
-119694 OR51F2 olfactory receptor family 51 subfamily F member 2 protein-coding 70 0.008345
-119695 OR52R1 olfactory receptor family 52 subfamily R member 1 (gene/pseudogene) protein-coding 65 0.007749
-119710 C11orf74 chromosome 11 open reading frame 74 protein-coding 35 0.004173
-119749 OR4C46 olfactory receptor family 4 subfamily C member 46 protein-coding 116 0.01383
-119764 OR4X2 olfactory receptor family 4 subfamily X member 2 (gene/pseudogene) protein-coding 64 0.00763
-119765 OR4B1 olfactory receptor family 4 subfamily B member 1 protein-coding 63 0.007511
-119772 OR52M1 olfactory receptor family 52 subfamily M member 1 protein-coding 69 0.008226
-119774 OR52K2 olfactory receptor family 52 subfamily K member 2 protein-coding 55 0.006557
-120065 OR5P2 olfactory receptor family 5 subfamily P member 2 protein-coding 70 0.008345
-120066 OR5P3 olfactory receptor family 5 subfamily P member 3 protein-coding 46 0.005484
-120071 LARGE2 LARGE xylosyl- and glucuronyltransferase 2 protein-coding 68 0.008107
-120103 SLC36A4 solute carrier family 36 member 4 protein-coding 72 0.008584
-120114 FAT3 FAT atypical cadherin 3 protein-coding 672 0.08011
-120224 TMEM45B transmembrane protein 45B protein-coding 29 0.003457
-120227 CYP2R1 cytochrome P450 family 2 subfamily R member 1 protein-coding 53 0.006319
-120237 DBX1 developing brain homeobox 1 protein-coding 53 0.006319
-120376 COLCA2 colorectal cancer associated 2 protein-coding 12 0.001431
-120379 PIH1D2 PIH1 domain containing 2 protein-coding 39 0.004649
-120400 NXPE1 neurexophilin and PC-esterase domain family member 1 protein-coding 69 0.008226
-120406 NXPE2 neurexophilin and PC-esterase domain family member 2 protein-coding 58 0.006915
-120425 JAML junction adhesion molecule like protein-coding 47 0.005603
-120526 DNAJC24 DnaJ heat shock protein family (Hsp40) member C24 protein-coding 23 0.002742
-120534 ARL14EP ADP ribosylation factor like GTPase 14 effector protein protein-coding 29 0.003457
-120586 OR8I2 olfactory receptor family 8 subfamily I member 2 protein-coding 115 0.01371
-120775 OR2D3 olfactory receptor family 2 subfamily D member 3 protein-coding 81 0.009657
-120776 OR2D2 olfactory receptor family 2 subfamily D member 2 protein-coding 79 0.009418
-120787 OR52W1 olfactory receptor family 52 subfamily W member 1 protein-coding 32 0.003815
-120793 OR56A4 olfactory receptor family 56 subfamily A member 4 protein-coding 82 0.009776
-120796 OR56A1 olfactory receptor family 56 subfamily A member 1 protein-coding 83 0.009895
-120863 DEPDC4 DEP domain containing 4 protein-coding 37 0.004411
-120892 LRRK2 leucine rich repeat kinase 2 protein-coding 410 0.04888
-120935 CCDC38 coiled-coil domain containing 38 protein-coding 76 0.009061
-120939 TMEM52B transmembrane protein 52B protein-coding 44 0.005246
-121006 FAM186A family with sequence similarity 186 member A protein-coding 105 0.01252
-121053 C12orf45 chromosome 12 open reading frame 45 protein-coding 22 0.002623
-121130 OR10P1 olfactory receptor family 10 subfamily P member 1 protein-coding 48 0.005722
-121214 SDR9C7 short chain dehydrogenase/reductase family 9C member 7 protein-coding 43 0.005126
-121227 LRIG3 leucine rich repeats and immunoglobulin like domains 3 protein-coding 201 0.02396
-121256 TMEM132D transmembrane protein 132D protein-coding 320 0.03815
-121260 SLC15A4 solute carrier family 15 member 4 protein-coding 61 0.007272
-121268 RHEBL1 RHEB like 1 protein-coding 17 0.002027
-121273 C12orf54 chromosome 12 open reading frame 54 protein-coding 20 0.002384
-121274 ZNF641 zinc finger protein 641 protein-coding 39 0.004649
-121275 OR10AD1 olfactory receptor family 10 subfamily AD member 1 protein-coding 25 0.00298
-121278 TPH2 tryptophan hydroxylase 2 protein-coding 104 0.0124
-121328 GGTA2P glycoprotein, alpha-galactosyltransferase 2, pseudogene pseudo 8 0.0009537
-121340 SP7 Sp7 transcription factor protein-coding 49 0.005842
-121355 GTSF1 gametocyte specific factor 1 protein-coding 23 0.002742
-121364 OR10A7 olfactory receptor family 10 subfamily A member 7 protein-coding 52 0.006199
-121391 KRT74 keratin 74 protein-coding 74 0.008822
-121441 NEDD1 neural precursor cell expressed, developmentally down-regulated 1 protein-coding 81 0.009657
-121456 SLC9A7P1 solute carrier family 9 member 7 pseudogene 1 pseudo 129 0.01538
-121457 IKBIP IKBKB interacting protein protein-coding 86 0.01025
-121504 HIST4H4 histone cluster 4 H4 protein-coding 18 0.002146
-121506 ERP27 endoplasmic reticulum protein 27 protein-coding 35 0.004173
-121512 FGD4 FYVE, RhoGEF and PH domain containing 4 protein-coding 78 0.009299
-121536 AEBP2 AE binding protein 2 protein-coding 33 0.003934
-121549 ASCL4 achaete-scute family bHLH transcription factor 4 protein-coding 30 0.003577
-121551 BTBD11 BTB domain containing 11 protein-coding 159 0.01896
-121599 SPIC Spi-C transcription factor protein-coding 50 0.005961
-121601 ANO4 anoctamin 4 protein-coding 198 0.02361
-121642 ALKBH2 alkB homolog 2, alpha-ketoglutarate dependent dioxygenase protein-coding 35 0.004173
-121643 FOXN4 forkhead box N4 protein-coding 57 0.006795
-121665 SPPL3 signal peptide peptidase like 3 protein-coding 44 0.005246
-121793 TEX29 testis expressed 29 protein-coding 29 0.003457
-121952 METTL21EP methyltransferase like 21E, pseudogene pseudo 7 0.0008345
-122011 CSNK1A1L casein kinase 1 alpha 1 like protein-coding 70 0.008345
-122042 RXFP2 relaxin family peptide receptor 2 protein-coding 112 0.01335
-122046 TEX26 testis expressed 26 protein-coding 45 0.005365
-122060 SLAIN1 SLAIN motif family member 1 protein-coding 45 0.005365
-122258 SPACA7 sperm acrosome associated 7 protein-coding 36 0.004292
-122402 TDRD9 tudor domain containing 9 protein-coding 108 0.01288
-122416 ANKRD9 ankyrin repeat domain 9 protein-coding 7 0.0008345
-122481 AK7 adenylate kinase 7 protein-coding 95 0.01133
-122509 IFI27L1 interferon alpha inducible protein 27 like 1 protein-coding 13 0.00155
-122525 C14orf28 chromosome 14 open reading frame 28 protein-coding 42 0.005007
-122553 TRAPPC6B trafficking protein particle complex 6B protein-coding 23 0.002742
-122616 CLBA1 clathrin binding box of aftiphilin containing 1 protein-coding 32 0.003815
-122618 PLD4 phospholipase D family member 4 protein-coding 45 0.005365
-122622 ADSSL1 adenylosuccinate synthase like 1 protein-coding 69 0.008226
-122651 RNASE11 ribonuclease A family member 11 (inactive) protein-coding 42 0.005007
-122664 TPPP2 tubulin polymerization promoting protein family member 2 protein-coding 34 0.004053
-122665 RNASE8 ribonuclease A family member 8 protein-coding 17 0.002027
-122704 MRPL52 mitochondrial ribosomal protein L52 protein-coding 10 0.001192
-122706 PSMB11 proteasome subunit beta 11 protein-coding 51 0.00608
-122740 OR4K14 olfactory receptor family 4 subfamily K member 14 protein-coding 63 0.007511
-122742 OR4L1 olfactory receptor family 4 subfamily L member 1 protein-coding 79 0.009418
-122748 OR11H6 olfactory receptor family 11 subfamily H member 6 protein-coding 72 0.008584
-122769 LRR1 leucine rich repeat protein 1 protein-coding 41 0.004888
-122773 KLHDC1 kelch domain containing 1 protein-coding 39 0.004649
-122786 FRMD6 FERM domain containing 6 protein-coding 96 0.01144
-122809 SOCS4 suppressor of cytokine signaling 4 protein-coding 73 0.008703
-122830 NAA30 N(alpha)-acetyltransferase 30, NatC catalytic subunit protein-coding 38 0.00453
-122876 GPHB5 glycoprotein hormone beta 5 protein-coding 41 0.004888
-122945 NOXRED1 NADP dependent oxidoreductase domain containing 1 protein-coding 48 0.005722
-122953 JDP2 Jun dimerization protein 2 protein-coding 19 0.002265
-122961 ISCA2 iron-sulfur cluster assembly 2 protein-coding 12 0.001431
-122970 ACOT4 acyl-CoA thioesterase 4 protein-coding 36 0.004292
-123016 TTC8 tetratricopeptide repeat domain 8 protein-coding 67 0.007988
-123036 TC2N tandem C2 domains, nuclear protein-coding 61 0.007272
-123041 SLC24A4 solute carrier family 24 member 4 protein-coding 206 0.02456
-123096 SLC25A29 solute carrier family 25 member 29 protein-coding 9 0.001073
-123099 DEGS2 delta 4-desaturase, sphingolipid 2 protein-coding 31 0.003696
-123103 KLHL33 kelch like family member 33 protein-coding 35 0.004173
-123169 LEO1 LEO1 homolog, Paf1/RNA polymerase II complex component protein-coding 69 0.008226
-123207 C15orf40 chromosome 15 open reading frame 40 protein-coding 10 0.001192
-123228 SENP8 SUMO peptidase family member, NEDD8 specific protein-coding 21 0.002504
-123263 MTFMT mitochondrial methionyl-tRNA formyltransferase protein-coding 31 0.003696
-123264 SLC51B solute carrier family 51 beta subunit protein-coding 9 0.001073
-123283 TARSL2 threonyl-tRNA synthetase like 2 protein-coding 75 0.008941
-123346 HIGD2B HIG1 hypoxia inducible domain family member 2B protein-coding 14 0.001669
-123355 LRRC28 leucine rich repeat containing 28 protein-coding 45 0.005365
-123591 TMEM266 transmembrane protein 266 protein-coding 66 0.007868
-123606 NIPA1 NIPA magnesium transporter 1 protein-coding 34 0.004053
-123624 AGBL1 ATP/GTP binding protein like 1 protein-coding 189 0.02253
-123688 HYKK hydroxylysine kinase protein-coding 33 0.003934
-123720 WHAMM WAS protein homolog associated with actin, golgi membranes and microtubules protein-coding 53 0.006319
-123722 FSD2 fibronectin type III and SPRY domain containing 2 protein-coding 95 0.01133
-123745 PLA2G4E phospholipase A2 group IVE protein-coding 57 0.006795
-123775 C16orf46 chromosome 16 open reading frame 46 protein-coding 59 0.007034
-123803 NTAN1 N-terminal asparagine amidase protein-coding 34 0.004053
-123811 FOPNL FGFR1OP N-terminal like protein-coding 31 0.003696
-123872 DNAAF1 dynein axonemal assembly factor 1 protein-coding 85 0.01013
-123876 ACSM2A acyl-CoA synthetase medium chain family member 2A protein-coding 141 0.01681
-123879 DCUN1D3 defective in cullin neddylation 1 domain containing 3 protein-coding 33 0.003934
-123904 NRN1L neuritin 1 like protein-coding 18 0.002146
-123920 CMTM3 CKLF like MARVEL transmembrane domain containing 3 protein-coding 20 0.002384
-123970 C16orf78 chromosome 16 open reading frame 78 protein-coding 53 0.006319
-124044 SPATA2L spermatogenesis associated 2 like protein-coding 43 0.005126
-124045 SPATA33 spermatogenesis associated 33 protein-coding 10 0.001192
-124056 NOXO1 NADPH oxidase organizer 1 protein-coding 32 0.003815
-124093 CCDC78 coiled-coil domain containing 78 protein-coding 48 0.005722
-124149 ANKRD26P1 ankyrin repeat domain 26 pseudogene 1 pseudo 32 0.003815
-124152 IQCK IQ motif containing K protein-coding 29 0.003457
-124220 ZG16B zymogen granule protein 16B protein-coding 28 0.003338
-124221 PRSS30P serine protease 30, pseudogene pseudo 11 0.001311
-124222 PAQR4 progestin and adipoQ receptor family member 4 protein-coding 26 0.0031
-124245 ZC3H18 zinc finger CCCH-type containing 18 protein-coding 142 0.01693
-124274 GPR139 G protein-coupled receptor 139 protein-coding 90 0.01073
-124359 CDYL2 chromodomain Y like 2 protein-coding 80 0.009537
-124401 ANKS3 ankyrin repeat and sterile alpha motif domain containing 3 protein-coding 49 0.005842
-124402 UBALD1 UBA like domain containing 1 protein-coding 8 0.0009537
-124404 SEPT12 septin 12 protein-coding 50 0.005961
-124411 ZNF720 zinc finger protein 720 protein-coding 12 0.001431
-124446 TMEM219 transmembrane protein 219 protein-coding 9 0.001073
-124454 EARS2 glutamyl-tRNA synthetase 2, mitochondrial protein-coding 47 0.005603
-124460 SNX20 sorting nexin 20 protein-coding 51 0.00608
-124491 TMEM170A transmembrane protein 170A protein-coding 10 0.001192
-124512 METTL23 methyltransferase like 23 protein-coding 19 0.002265
-124535 HSF5 heat shock transcription factor 5 protein-coding 62 0.007392
-124538 OR4D2 olfactory receptor family 4 subfamily D member 2 protein-coding 65 0.007749
-124540 MSI2 musashi RNA binding protein 2 protein-coding 38 0.00453
-124565 SLC38A10 solute carrier family 38 member 10 protein-coding 101 0.01204
-124583 CANT1 calcium activated nucleotidase 1 protein-coding 44 0.005246
-124590 USH1G USH1 protein network component sans protein-coding 71 0.008464
-124599 CD300LB CD300 molecule like family member b protein-coding 47 0.005603
-124602 KIF19 kinesin family member 19 protein-coding 120 0.01431
-124626 ZPBP2 zona pellucida binding protein 2 protein-coding 47 0.005603
-124637 CYB5D1 cytochrome b5 domain containing 1 protein-coding 15 0.001788
-124641 OVCA2 OVCA2, serine hydrolase domain containing protein-coding 10 0.001192
-124739 USP43 ubiquitin specific peptidase 43 protein-coding 94 0.01121
-124751 KRBA2 KRAB-A domain containing 2 protein-coding 49 0.005842
-124773 C17orf64 chromosome 17 open reading frame 64 protein-coding 28 0.003338
-124783 SPATA32 spermatogenesis associated 32 protein-coding 32 0.003815
-124790 HEXIM2 hexamethylene bisacetamide inducible 2 protein-coding 28 0.003338
-124801 LSM12 LSM12 homolog protein-coding 16 0.001907
-124808 CCDC43 coiled-coil domain containing 43 protein-coding 23 0.002742
-124817 CNTD1 cyclin N-terminal domain containing 1 protein-coding 33 0.003934
-124842 TMEM132E transmembrane protein 132E protein-coding 181 0.02158
-124857 WFIKKN2 WAP, follistatin/kazal, immunoglobulin, kunitz and netrin domain containing 2 protein-coding 91 0.01085
-124872 B4GALNT2 beta-1,4-N-acetyl-galactosaminyltransferase 2 protein-coding 77 0.00918
-124912 SPACA3 sperm acrosome associated 3 protein-coding 47 0.005603
-124923 SGK494 uncharacterized serine/threonine-protein kinase SgK494 protein-coding 23 0.002742
-124925 SEZ6 seizure related 6 homolog protein-coding 97 0.01156
-124930 ANKRD13B ankyrin repeat domain 13B protein-coding 66 0.007868
-124935 SLC43A2 solute carrier family 43 member 2 protein-coding 52 0.006199
-124936 CYB5D2 cytochrome b5 domain containing 2 protein-coding 29 0.003457
-124944 C17orf49 chromosome 17 open reading frame 49 protein-coding 14 0.001669
-124961 ZFP3 ZFP3 zinc finger protein protein-coding 55 0.006557
-124975 GGT6 gamma-glutamyltransferase 6 protein-coding 36 0.004292
-124976 SPNS2 sphingolipid transporter 2 protein-coding 47 0.005603
-124989 EFCAB13 EF-hand calcium binding domain 13 protein-coding 113 0.01347
-124995 MRPL10 mitochondrial ribosomal protein L10 protein-coding 22 0.002623
-124997 WDR81 WD repeat domain 81 protein-coding 141 0.01681
-125058 TBC1D16 TBC1 domain family member 16 protein-coding 87 0.01037
-125061 AFMID arylformamidase protein-coding 43 0.005126
-125111 GJD3 gap junction protein delta 3 protein-coding 2 0.0002384
-125113 KRT222 keratin 222 protein-coding 50 0.005961
-125115 KRT40 keratin 40 protein-coding 52 0.006199
-125150 ZSWIM7 zinc finger SWIM-type containing 7 protein-coding 6 0.0007153
-125170 MIEF2 mitochondrial elongation factor 2 protein-coding 40 0.004769
-125206 SLC5A10 solute carrier family 5 member 10 protein-coding 75 0.008941
-125228 FAM210A family with sequence similarity 210 member A protein-coding 34 0.004053
-125336 LOXHD1 lipoxygenase homology domains 1 protein-coding 135 0.01609
-125476 INO80C INO80 complex subunit C protein-coding 23 0.002742
-125488 TTC39C tetratricopeptide repeat domain 39C protein-coding 57 0.006795
-125704 FAM69C family with sequence similarity 69 member C protein-coding 40 0.004769
-125875 CLDND2 claudin domain containing 2 protein-coding 7 0.0008345
-125893 ZNF816 zinc finger protein 816 protein-coding 81 0.009657
-125919 ZNF543 zinc finger protein 543 protein-coding 96 0.01144
-125931 CEACAM20 carcinoembryonic antigen related cell adhesion molecule 20 protein-coding 88 0.01049
-125950 RAVER1 ribonucleoprotein, PTB binding 1 protein-coding 67 0.007988
-125958 OR7D4 olfactory receptor family 7 subfamily D member 4 protein-coding 76 0.009061
-125962 OR7G1 olfactory receptor family 7 subfamily G member 1 protein-coding 48 0.005722
-125963 OR1M1 olfactory receptor family 1 subfamily M member 1 protein-coding 62 0.007392
-125965 COX6B2 cytochrome c oxidase subunit 6B2 protein-coding 6 0.0007153
-125972 CALR3 calreticulin 3 protein-coding 50 0.005961
-125981 ACER1 alkaline ceramidase 1 protein-coding 45 0.005365
-125988 C19orf70 chromosome 19 open reading frame 70 protein-coding 25 0.00298
-125997 MBD3L2 methyl-CpG binding domain protein 3 like 2 protein-coding 9 0.001073
-126003 TRAPPC5 trafficking protein particle complex 5 protein-coding 21 0.002504
-126006 PCP2 Purkinje cell protein 2 protein-coding 17 0.002027
-126014 OSCAR osteoclast associated, immunoglobulin-like receptor protein-coding 24 0.002861
-126017 ZNF813 zinc finger protein 813 protein-coding 111 0.01323
-126068 ZNF441 zinc finger protein 441 protein-coding 91 0.01085
-126069 ZNF491 zinc finger protein 491 protein-coding 72 0.008584
-126070 ZNF440 zinc finger protein 440 protein-coding 95 0.01133
-126074 SWSAP1 SWIM-type zinc finger 7 associated protein 1 protein-coding 18 0.002146
-126075 CCDC159 coiled-coil domain containing 159 protein-coding 23 0.002742
-126119 JOSD2 Josephin domain containing 2 protein-coding 21 0.002504
-126123 IZUMO2 IZUMO family member 2 protein-coding 43 0.005126
-126129 CPT1C carnitine palmitoyltransferase 1C protein-coding 107 0.01276
-126133 ALDH16A1 aldehyde dehydrogenase 16 family member A1 protein-coding 90 0.01073
-126147 NTN5 netrin 5 protein-coding 29 0.003457
-126204 NLRP13 NLR family pyrin domain containing 13 protein-coding 199 0.02372
-126205 NLRP8 NLR family pyrin domain containing 8 protein-coding 214 0.02551
-126206 NLRP5 NLR family pyrin domain containing 5 protein-coding 241 0.02873
-126208 ZNF787 zinc finger protein 787 protein-coding 28 0.003338
-126231 ZNF573 zinc finger protein 573 protein-coding 74 0.008822
-126248 WDR88 WD repeat domain 88 protein-coding 69 0.008226
-126259 TMIGD2 transmembrane and immunoglobulin domain containing 2 protein-coding 40 0.004769
-126272 EID2B EP300 interacting inhibitor of differentiation 2B protein-coding 12 0.001431
-126282 TNFAIP8L1 TNF alpha induced protein 8 like 1 protein-coding 11 0.001311
-126295 ZNF57 zinc finger protein 57 protein-coding 54 0.006438
-126298 IRGQ immunity related GTPase Q protein-coding 57 0.006795
-126299 ZNF428 zinc finger protein 428 protein-coding 18 0.002146
-126306 JSRP1 junctional sarcoplasmic reticulum protein 1 protein-coding 45 0.005365
-126308 MOB3A MOB kinase activator 3A protein-coding 25 0.00298
-126321 MFSD12 major facilitator superfamily domain containing 12 protein-coding 54 0.006438
-126326 GIPC3 GIPC PDZ domain containing family member 3 protein-coding 44 0.005246
-126328 NDUFA11 NADH:ubiquinone oxidoreductase subunit A11 protein-coding 9 0.001073
-126353 MISP mitotic spindle positioning protein-coding 84 0.01001
-126364 LRRC25 leucine rich repeat containing 25 protein-coding 36 0.004292
-126370 OR1I1 olfactory receptor family 1 subfamily I member 1 protein-coding 41 0.004888
-126374 WTIP WT1 interacting protein protein-coding 31 0.003696
-126375 ZNF792 zinc finger protein 792 protein-coding 72 0.008584
-126382 NR2C2AP nuclear receptor 2C2 associated protein protein-coding 22 0.002623
-126393 HSPB6 heat shock protein family B (small) member 6 protein-coding 3 0.0003577
-126402 CCDC105 coiled-coil domain containing 105 protein-coding 68 0.008107
-126410 CYP4F22 cytochrome P450 family 4 subfamily F member 22 protein-coding 86 0.01025
-126432 RINL Ras and Rab interactor like protein-coding 35 0.004173
-126433 FBXO27 F-box protein 27 protein-coding 37 0.004411
-126520 PLK5 polo like kinase 5 protein-coding 10 0.001192
-126526 C19orf47 chromosome 19 open reading frame 47 protein-coding 42 0.005007
-126536 LINC00661 long intergenic non-protein coding RNA 661 ncRNA 15 0.001788
-126541 OR10H4 olfactory receptor family 10 subfamily H member 4 protein-coding 57 0.006795
-126549 ANKLE1 ankyrin repeat and LEM domain containing 1 protein-coding 55 0.006557
-126567 C2CD4C C2 calcium dependent domain containing 4C protein-coding 10 0.001192
-126626 GABPB2 GA binding protein transcription factor beta subunit 2 protein-coding 39 0.004649
-126637 TCHHL1 trichohyalin like 1 protein-coding 127 0.01514
-126638 RPTN repetin protein-coding 116 0.01383
-126661 CCDC163 coiled-coil domain containing 163 protein-coding 15 0.001788
-126668 TDRD10 tudor domain containing 10 protein-coding 65 0.007749
-126669 SHE Src homology 2 domain containing E protein-coding 62 0.007392
-126695 KDF1 keratinocyte differentiation factor 1 protein-coding 51 0.00608
-126731 CCSAP centriole, cilia and spindle associated protein protein-coding 24 0.002861
-126755 LRRC38 leucine rich repeat containing 38 protein-coding 23 0.002742
-126767 AADACL3 arylacetamide deacetylase like 3 protein-coding 49 0.005842
-126789 PUSL1 pseudouridylate synthase-like 1 protein-coding 12 0.001431
-126792 B3GALT6 beta-1,3-galactosyltransferase 6 protein-coding 8 0.0009537
-126820 WDR63 WD repeat domain 63 protein-coding 108 0.01288
-126823 KLHDC9 kelch domain containing 9 protein-coding 30 0.003577
-126859 AXDND1 axonemal dynein light chain domain containing 1 protein-coding 159 0.01896
-126868 MAB21L3 mab-21 like 3 protein-coding 29 0.003457
-126917 IFFO2 intermediate filament family orphan 2 protein-coding 24 0.002861
-126969 SLC44A3 solute carrier family 44 member 3 protein-coding 80 0.009537
-127002 ATXN7L2 ataxin 7 like 2 protein-coding 79 0.009418
-127003 C1orf194 chromosome 1 open reading frame 194 protein-coding 15 0.001788
-127018 LYPLAL1 lysophospholipase like 1 protein-coding 25 0.00298
-127059 OR2M5 olfactory receptor family 2 subfamily M member 5 protein-coding 143 0.01705
-127062 OR2M3 olfactory receptor family 2 subfamily M member 3 protein-coding 158 0.01884
-127064 OR2T12 olfactory receptor family 2 subfamily T member 12 protein-coding 140 0.01669
-127066 OR14C36 olfactory receptor family 14 subfamily C member 36 protein-coding 96 0.01144
-127068 OR2T34 olfactory receptor family 2 subfamily T member 34 protein-coding 88 0.01049
-127069 OR2T10 olfactory receptor family 2 subfamily T member 10 protein-coding 81 0.009657
-127074 OR2T4 olfactory receptor family 2 subfamily T member 4 protein-coding 137 0.01633
-127077 OR2T11 olfactory receptor family 2 subfamily T member 11 (gene/pseudogene) protein-coding 82 0.009776
-127124 ATP6V1G3 ATPase H+ transporting V1 subunit G3 protein-coding 25 0.00298
-127247 ASB17 ankyrin repeat and SOCS box containing 17 protein-coding 68 0.008107
-127253 TYW3 tRNA-yW synthesizing protein 3 homolog protein-coding 36 0.004292
-127254 ERICH3 glutamate rich 3 protein-coding 389 0.04638
-127255 LRRIQ3 leucine rich repeats and IQ motif containing 3 protein-coding 172 0.02051
-127262 TPRG1L tumor protein p63 regulated 1 like protein-coding 28 0.003338
-127281 FAM213B family with sequence similarity 213 member B protein-coding 13 0.00155
-127294 MYOM3 myomesin 3 protein-coding 173 0.02062
-127343 DMBX1 diencephalon/mesencephalon homeobox 1 protein-coding 74 0.008822
-127385 OR10J5 olfactory receptor family 10 subfamily J member 5 protein-coding 70 0.008345
-127391 TMCO2 transmembrane and coiled-coil domains 2 protein-coding 27 0.003219
-127396 ZNF684 zinc finger protein 684 protein-coding 39 0.004649
-127428 TCEANC2 transcription elongation factor A N-terminal and central domain containing 2 protein-coding 21 0.002504
-127435 PODN podocan protein-coding 100 0.01192
-127495 LRRC39 leucine rich repeat containing 39 protein-coding 37 0.004411
-127534 GJB4 gap junction protein beta 4 protein-coding 51 0.00608
-127540 HMGB4 high mobility group box 4 protein-coding 32 0.003815
-127544 RNF19B ring finger protein 19B protein-coding 47 0.005603
-127550 A3GALT2 alpha 1,3-galactosyltransferase 2 protein-coding 17 0.002027
-127579 DCST2 DC-STAMP domain containing 2 protein-coding 96 0.01144
-127602 DNAH14 dynein axonemal heavy chain 14 protein-coding 211 0.02515
-127623 OR2B11 olfactory receptor family 2 subfamily B member 11 protein-coding 86 0.01025
-127665 ZNF648 zinc finger protein 648 protein-coding 118 0.01407
-127670 TEDDM1 transmembrane epididymal protein 1 protein-coding 28 0.003338
-127687 C1orf122 chromosome 1 open reading frame 122 protein-coding 6 0.0007153
-127700 OSCP1 organic solute carrier partner 1 protein-coding 37 0.004411
-127703 C1orf216 chromosome 1 open reading frame 216 protein-coding 22 0.002623
-127707 KLHDC7A kelch domain containing 7A protein-coding 95 0.01133
-127731 VWA5B1 von Willebrand factor A domain containing 5B1 protein-coding 72 0.008584
-127733 UBXN10 UBX domain protein 10 protein-coding 40 0.004769
-127795 C1orf87 chromosome 1 open reading frame 87 protein-coding 75 0.008941
-127829 ARL8A ADP ribosylation factor like GTPase 8A protein-coding 17 0.002027
-127833 SYT2 synaptotagmin 2 protein-coding 63 0.007511
-127845 GOLT1A golgi transport 1A protein-coding 78 0.009299
-127933 UHMK1 U2AF homology motif kinase 1 protein-coding 43 0.005126
-127943 FCRLB Fc receptor like B protein-coding 43 0.005126
-128025 WDR64 WD repeat domain 64 protein-coding 136 0.01621
-128061 C1orf131 chromosome 1 open reading frame 131 protein-coding 38 0.00453
-128077 LIX1L limb and CNS expressed 1 like protein-coding 24 0.002861
-128153 SPATA17 spermatogenesis associated 17 protein-coding 183 0.02182
-128178 EDARADD EDAR associated death domain protein-coding 35 0.004173
-128209 KLF17 Kruppel like factor 17 protein-coding 65 0.007749
-128218 TMEM125 transmembrane protein 125 protein-coding 21 0.002504
-128229 TSACC TSSK6 activating cochaperone protein-coding 21 0.002504
-128239 IQGAP3 IQ motif containing GTPase activating protein 3 protein-coding 170 0.02027
-128240 NAXE NAD(P)HX epimerase protein-coding 27 0.003219
-128272 ARHGEF19 Rho guanine nucleotide exchange factor 19 protein-coding 62 0.007392
-128308 MRPL55 mitochondrial ribosomal protein L55 protein-coding 23 0.002742
-128312 HIST3H2BB histone cluster 3 H2B family member b protein-coding 18 0.002146
-128338 DRAM2 DNA damage regulated autophagy modulator 2 protein-coding 26 0.0031
-128344 PIFO primary cilia formation protein-coding 27 0.003219
-128346 C1orf162 chromosome 1 open reading frame 162 protein-coding 19 0.002265
-128360 OR10T2 olfactory receptor family 10 subfamily T member 2 protein-coding 69 0.008226
-128366 OR6P1 olfactory receptor family 6 subfamily P member 1 protein-coding 44 0.005246
-128367 OR10X1 olfactory receptor family 10 subfamily X member 1 (gene/pseudogene) protein-coding 99 0.0118
-128368 OR10Z1 olfactory receptor family 10 subfamily Z member 1 protein-coding 105 0.01252
-128371 OR6K6 olfactory receptor family 6 subfamily K member 6 protein-coding 97 0.01156
-128372 OR6N1 olfactory receptor family 6 subfamily N member 1 protein-coding 98 0.01168
-128387 TATDN3 TatD DNase domain containing 3 protein-coding 35 0.004173
-128408 BHLHE23 basic helix-loop-helix family member e23 protein-coding 12 0.001431
-128414 NKAIN4 sodium/potassium transporting ATPase interacting 4 protein-coding 22 0.002623
-128434 VSTM2L V-set and transmembrane domain containing 2 like protein-coding 23 0.002742
-128486 FITM2 fat storage inducing transmembrane protein 2 protein-coding 26 0.0031
-128488 WFDC12 WAP four-disulfide core domain 12 protein-coding 14 0.001669
-128497 SPATA25 spermatogenesis associated 25 protein-coding 20 0.002384
-128506 OCSTAMP osteoclast stimulatory transmembrane protein protein-coding 34 0.004053
-128553 TSHZ2 teashirt zinc finger homeobox 2 protein-coding 209 0.02492
-128602 C20orf85 chromosome 20 open reading frame 85 protein-coding 28 0.003338
-128611 ZNF831 zinc finger protein 831 protein-coding 315 0.03755
-128637 TBC1D20 TBC1 domain family member 20 protein-coding 47 0.005603
-128646 SIRPD signal regulatory protein delta protein-coding 38 0.00453
-128653 C20orf141 chromosome 20 open reading frame 141 protein-coding 16 0.001907
-128674 PROKR2 prokineticin receptor 2 protein-coding 95 0.01133
-128710 SLX4IP SLX4 interacting protein protein-coding 48 0.005722
-128817 CSTL1 cystatin like 1 protein-coding 36 0.004292
-128821 CST9L cystatin 9 like protein-coding 28 0.003338
-128822 CST9 cystatin 9 protein-coding 22 0.002623
-128826 MIR1-1HG MIR1-1 host gene protein-coding 13 0.00155
-128853 DUSP15 dual specificity phosphatase 15 protein-coding 16 0.001907
-128859 BPIFB6 BPI fold containing family B member 6 protein-coding 77 0.00918
-128861 BPIFA3 BPI fold containing family A member 3 protein-coding 37 0.004411
-128864 C20orf144 chromosome 20 open reading frame 144 protein-coding 8 0.0009537
-128866 CHMP4B charged multivesicular body protein 4B protein-coding 52 0.006199
-128869 PIGU phosphatidylinositol glycan anchor biosynthesis class U protein-coding 104 0.0124
-128876 FAM83C family with sequence similarity 83 member C protein-coding 109 0.01299
-128954 GAB4 GRB2 associated binding protein family member 4 protein-coding 118 0.01407
-128977 C22orf39 chromosome 22 open reading frame 39 protein-coding 7 0.0008345
-128989 TANGO2 transport and golgi organization 2 homolog protein-coding 23 0.002742
-129025 ZNF280A zinc finger protein 280A protein-coding 92 0.01097
-129049 SGSM1 small G protein signaling modulator 1 protein-coding 127 0.01514
-129080 EMID1 EMI domain containing 1 protein-coding 43 0.005126
-129138 ANKRD54 ankyrin repeat domain 54 protein-coding 29 0.003457
-129285 PPP1R21 protein phosphatase 1 regulatory subunit 21 protein-coding 90 0.01073
-129293 TRABD2A TraB domain containing 2A protein-coding 66 0.007868
-129303 TMEM150A transmembrane protein 150A protein-coding 20 0.002384
-129401 NUP35 nucleoporin 35 protein-coding 39 0.004649
-129446 XIRP2 xin actin binding repeat containing 2 protein-coding 669 0.07976
-129450 TYW5 tRNA-yW synthesizing protein 5 protein-coding 33 0.003934
-129521 NMS neuromedin S protein-coding 36 0.004292
-129530 LYG1 lysozyme g1 protein-coding 28 0.003338
-129531 MITD1 microtubule interacting and trafficking domain containing 1 protein-coding 28 0.003338
-129563 DIS3L2 DIS3 like 3'-5' exoribonuclease 2 protein-coding 103 0.01228
-129607 CMPK2 cytidine/uridine monophosphate kinase 2 protein-coding 34 0.004053
-129642 MBOAT2 membrane bound O-acyltransferase domain containing 2 protein-coding 95 0.01133
-129684 CNTNAP5 contactin associated protein like 5 protein-coding 415 0.04948
-129685 TAF8 TATA-box binding protein associated factor 8 protein-coding 32 0.003815
-129787 TMEM18 transmembrane protein 18 protein-coding 23 0.002742
-129790 C7orf13 chromosome 7 open reading frame 13 ncRNA 9 0.001073
-129804 FBLN7 fibulin 7 protein-coding 70 0.008345
-129807 NEU4 neuraminidase 4 protein-coding 60 0.007153
-129831 RBM45 RNA binding motif protein 45 protein-coding 57 0.006795
-129852 C2orf73 chromosome 2 open reading frame 73 protein-coding 36 0.004292
-129868 TRIM43 tripartite motif containing 43 protein-coding 45 0.005365
-129880 BBS5 Bardet-Biedl syndrome 5 protein-coding 40 0.004769
-129881 CCDC173 coiled-coil domain containing 173 protein-coding 78 0.009299
-130013 ACMSD aminocarboxymuconate semialdehyde decarboxylase protein-coding 50 0.005961
-130026 ICA1L islet cell autoantigen 1 like protein-coding 41 0.004888
-130074 FAM168B family with sequence similarity 168 member B protein-coding 34 0.004053
-130075 OR9A4 olfactory receptor family 9 subfamily A member 4 protein-coding 58 0.006915
-130106 CIB4 calcium and integrin binding family member 4 protein-coding 24 0.002861
-130120 REG3G regenerating family member 3 gamma protein-coding 86 0.01025
-130132 RFTN2 raftlin family member 2 protein-coding 80 0.009537
-130162 CLHC1 clathrin heavy chain linker domain containing 1 protein-coding 61 0.007272
-130271 PLEKHH2 pleckstrin homology, MyTH4 and FERM domain containing H2 protein-coding 184 0.02194
-130340 AP1S3 adaptor related protein complex 1 sigma 3 subunit protein-coding 22 0.002623
-130355 C2orf76 chromosome 2 open reading frame 76 protein-coding 20 0.002384
-130367 SGPP2 sphingosine-1-phosphate phosphatase 2 protein-coding 37 0.004411
-130399 ACVR1C activin A receptor type 1C protein-coding 66 0.007868
-130497 OSR1 odd-skipped related transciption factor 1 protein-coding 51 0.00608
-130502 TTC32 tetratricopeptide repeat domain 32 protein-coding 20 0.002384
-130507 UBR3 ubiquitin protein ligase E3 component n-recognin 3 (putative) protein-coding 150 0.01788
-130535 KCTD18 potassium channel tetramerization domain containing 18 protein-coding 56 0.006676
-130540 ALS2CR12 amyotrophic lateral sclerosis 2 chromosome region 12 protein-coding 44 0.005246
-130557 ZNF513 zinc finger protein 513 protein-coding 77 0.00918
-130560 SPATA3 spermatogenesis associated 3 protein-coding 17 0.002027
-130574 LYPD6 LY6/PLAUR domain containing 6 protein-coding 16 0.001907
-130576 LYPD6B LY6/PLAUR domain containing 6B protein-coding 35 0.004173
-130589 GALM galactose mutarotase protein-coding 34 0.004053
-130612 TMEM198 transmembrane protein 198 protein-coding 53 0.006319
-130617 ZFAND2B zinc finger AN1-type containing 2B protein-coding 32 0.003815
-130733 TMEM178A transmembrane protein 178A protein-coding 44 0.005246
-130749 CPO carboxypeptidase O protein-coding 61 0.007272
-130752 MDH1B malate dehydrogenase 1B protein-coding 81 0.009657
-130813 C2orf50 chromosome 2 open reading frame 50 protein-coding 11 0.001311
-130814 PQLC3 PQ loop repeat containing 3 protein-coding 22 0.002623
-130827 TMEM182 transmembrane protein 182 protein-coding 36 0.004292
-130872 AHSA2P activator of HSP90 ATPase homolog 2, pseudogene pseudo 13 0.00155
-130888 FBXO36 F-box protein 36 protein-coding 20 0.002384
-130916 MTERF4 mitochondrial transcription termination factor 4 protein-coding 37 0.004411
-130940 CCDC148 coiled-coil domain containing 148 protein-coding 81 0.009657
-130951 M1AP meiosis 1 associated protein protein-coding 73 0.008703
-131034 CPNE4 copine 4 protein-coding 105 0.01252
-131076 CCDC58 coiled-coil domain containing 58 protein-coding 23 0.002742
-131096 KCNH8 potassium voltage-gated channel subfamily H member 8 protein-coding 254 0.03028
-131118 DNAJC19 DnaJ heat shock protein family (Hsp40) member C19 protein-coding 18 0.002146
-131149 OTOL1 otolin 1 protein-coding 92 0.01097
-131177 FAM3D family with sequence similarity 3 member D protein-coding 42 0.005007
-131368 ZPLD1 zona pellucida like domain containing 1 protein-coding 90 0.01073
-131375 LYZL4 lysozyme like 4 protein-coding 20 0.002384
-131377 KLHL40 kelch like family member 40 protein-coding 88 0.01049
-131405 TRIM71 tripartite motif containing 71 protein-coding 104 0.0124
-131408 FAM131A family with sequence similarity 131 member A protein-coding 36 0.004292
-131450 CD200R1 CD200 receptor 1 protein-coding 177 0.0211
-131474 CHCHD4 coiled-coil-helix-coiled-coil-helix domain containing 4 protein-coding 21 0.002504
-131540 ZDHHC19 zinc finger DHHC-type containing 19 protein-coding 39 0.004649
-131544 CRYBG3 crystallin beta-gamma domain containing 3 protein-coding 150 0.01788
-131566 DCBLD2 discoidin, CUB and LCCL domain containing 2 protein-coding 94 0.01121
-131578 LRRC15 leucine rich repeat containing 15 protein-coding 87 0.01037
-131583 FAM43A family with sequence similarity 43 member A protein-coding 22 0.002623
-131601 TPRA1 transmembrane protein adipocyte associated 1 protein-coding 34 0.004053
-131616 TMEM42 transmembrane protein 42 protein-coding 13 0.00155
-131669 UROC1 urocanate hydratase 1 protein-coding 122 0.01454
-131831 ERICH6 glutamate rich 6 protein-coding 99 0.0118
-131870 NUDT16 nudix hydrolase 16 protein-coding 20 0.002384
-131873 COL6A6 collagen type VI alpha 6 chain protein-coding 348 0.04149
-131890 GRK7 G protein-coupled receptor kinase 7 protein-coding 81 0.009657
-131920 TMEM207 transmembrane protein 207 protein-coding 33 0.003934
-131965 METTL6 methyltransferase like 6 protein-coding 38 0.00453
-132001 TAMM41 TAM41 mitochondrial translocator assembly and maintenance homolog protein-coding 30 0.003577
-132014 IL17RE interleukin 17 receptor E protein-coding 45 0.005365
-132112 RTP1 receptor transporter protein 1 protein-coding 53 0.006319
-132141 IQCF1 IQ motif containing F1 protein-coding 32 0.003815
-132158 GLYCTK glycerate kinase protein-coding 34 0.004053
-132160 PPM1M protein phosphatase, Mg2+/Mn2+ dependent 1M protein-coding 25 0.00298
-132200 C3orf49 chromosome 3 open reading frame 49 protein-coding 10 0.001192
-132203 SNTN sentan, cilia apical structure protein protein-coding 24 0.002861
-132204 SYNPR synaptoporin protein-coding 29 0.003457
-132228 LSMEM2 leucine rich single-pass membrane protein 2 protein-coding 23 0.002742
-132243 H1FOO H1 histone family member O oocyte specific protein-coding 39 0.004649
-132299 OCIAD2 OCIA domain containing 2 protein-coding 27 0.003219
-132320 SCLT1 sodium channel and clathrin linker 1 protein-coding 88 0.01049
-132321 C4orf33 chromosome 4 open reading frame 33 protein-coding 24 0.002861
-132332 TMEM155 transmembrane protein 155 protein-coding 25 0.00298
-132430 PABPC4L poly(A) binding protein cytoplasmic 4 like protein-coding 58 0.006915
-132612 ADAD1 adenosine deaminase domain containing 1 protein-coding 129 0.01538
-132625 ZFP42 ZFP42 zinc finger protein protein-coding 107 0.01276
-132660 LIN54 lin-54 DREAM MuvB core complex component protein-coding 63 0.007511
-132671 SPATA18 spermatogenesis associated 18 protein-coding 103 0.01228
-132720 FAM241A family with sequence similarity 241 member A protein-coding 10 0.001192
-132724 TMPRSS11B transmembrane serine protease 11B protein-coding 75 0.008941
-132789 GNPDA2 glucosamine-6-phosphate deaminase 2 protein-coding 39 0.004649
-132851 SPATA4 spermatogenesis associated 4 protein-coding 59 0.007034
-132864 CPEB2 cytoplasmic polyadenylation element binding protein 2 protein-coding 78 0.009299
-132884 EVC2 EvC ciliary complex subunit 2 protein-coding 199 0.02372
-132946 ARL9 ADP ribosylation factor like GTPase 9 protein-coding 18 0.002146
-132949 AASDH aminoadipate-semialdehyde dehydrogenase protein-coding 137 0.01633
-132954 PDCL2 phosducin like 2 protein-coding 25 0.00298
-132989 C4orf36 chromosome 4 open reading frame 36 protein-coding 14 0.001669
-133015 PACRGL parkin coregulated like protein-coding 41 0.004888
-133022 TRAM1L1 translocation associated membrane protein 1 like 1 protein-coding 83 0.009895
-133060 OTOP1 otopetrin 1 protein-coding 93 0.01109
-133121 ENPP6 ectonucleotide pyrophosphatase/phosphodiesterase 6 protein-coding 65 0.007749
-133308 SLC9B2 solute carrier family 9 member B2 protein-coding 73 0.008703
-133383 SETD9 SET domain containing 9 protein-coding 26 0.0031
-133396 IL31RA interleukin 31 receptor A protein-coding 96 0.01144
-133418 EMB embigin protein-coding 52 0.006199
-133482 SLCO6A1 solute carrier organic anion transporter family member 6A1 protein-coding 158 0.01884
-133491 C5orf47 chromosome 5 open reading frame 47 protein-coding 19 0.002265
-133522 PPARGC1B PPARG coactivator 1 beta protein-coding 100 0.01192
-133558 MROH2B maestro heat like repeat family member 2B protein-coding 356 0.04244
-133584 EGFLAM EGF like, fibronectin type III and laminin G domains protein-coding 198 0.02361
-133619 PRRC1 proline rich coiled-coil 1 protein-coding 42 0.005007
-133686 NADK2 NAD kinase 2, mitochondrial protein-coding 38 0.00453
-133688 UGT3A1 UDP glycosyltransferase family 3 member A1 protein-coding 116 0.01383
-133690 CAPSL calcyphosine like protein-coding 59 0.007034
-133746 JMY junction mediating and regulatory protein, p53 cofactor protein-coding 88 0.01049
-133874 C5orf58 chromosome 5 open reading frame 58 protein-coding 14 0.001669
-133923 ZNF474 zinc finger protein 474 protein-coding 57 0.006795
-133957 CCDC127 coiled-coil domain containing 127 protein-coding 34 0.004053
-134083 OR2Y1 olfactory receptor family 2 subfamily Y member 1 protein-coding 47 0.005603
-134111 UBE2QL1 ubiquitin conjugating enzyme E2 Q family like 1 protein-coding 14 0.001669
-134121 C5orf49 chromosome 5 open reading frame 49 protein-coding 21 0.002504
-134145 FAM173B family with sequence similarity 173 member B protein-coding 39 0.004649
-134147 CMBL carboxymethylenebutenolidase homolog protein-coding 27 0.003219
-134187 POU5F2 POU domain class 5, transcription factor 2 protein-coding 47 0.005603
-134218 DNAJC21 DnaJ heat shock protein family (Hsp40) member C21 protein-coding 74 0.008822
-134265 AFAP1L1 actin filament associated protein 1 like 1 protein-coding 84 0.01001
-134266 GRPEL2 GrpE like 2, mitochondrial protein-coding 22 0.002623
-134285 TMEM171 transmembrane protein 171 protein-coding 46 0.005484
-134288 TMEM174 transmembrane protein 174 protein-coding 25 0.00298
-134353 LSM11 LSM11, U7 small nuclear RNA associated protein-coding 37 0.004411
-134359 POC5 POC5 centriolar protein protein-coding 52 0.006199
-134391 GPR151 G protein-coupled receptor 151 protein-coding 44 0.005246
-134429 STARD4 StAR related lipid transfer domain containing 4 protein-coding 39 0.004649
-134430 WDR36 WD repeat domain 36 protein-coding 117 0.01395
-134466 ZNF300P1 zinc finger protein 300 pseudogene 1 pseudo 85 0.01013
-134492 NUDCD2 NudC domain containing 2 protein-coding 13 0.00155
-134510 UBLCP1 ubiquitin like domain containing CTD phosphatase 1 protein-coding 43 0.005126
-134526 ACOT12 acyl-CoA thioesterase 12 protein-coding 85 0.01013
-134548 SOWAHA sosondowah ankyrin repeat domain family member A protein-coding 19 0.002265
-134549 SHROOM1 shroom family member 1 protein-coding 56 0.006676
-134553 C5orf24 chromosome 5 open reading frame 24 protein-coding 24 0.002861
-134637 ADAT2 adenosine deaminase, tRNA specific 2 protein-coding 23 0.002742
-134701 RIPPLY2 ripply transcriptional repressor 2 protein-coding 25 0.00298
-134728 IRAK1BP1 interleukin 1 receptor associated kinase 1 binding protein 1 protein-coding 31 0.003696
-134829 CLVS2 clavesin 2 protein-coding 86 0.01025
-134860 TAAR9 trace amine associated receptor 9 (gene/pseudogene) protein-coding 62 0.007392
-134864 TAAR1 trace amine associated receptor 1 protein-coding 60 0.007153
-134957 STXBP5 syntaxin binding protein 5 protein-coding 119 0.01419
-135112 NCOA7 nuclear receptor coactivator 7 protein-coding 100 0.01192
-135114 HINT3 histidine triad nucleotide binding protein 3 protein-coding 13 0.00155
-135138 PACRG parkin coregulated protein-coding 69 0.008226
-135152 B3GAT2 beta-1,3-glucuronyltransferase 2 protein-coding 45 0.005365
-135154 SDHAF4 succinate dehydrogenase complex assembly factor 4 protein-coding 16 0.001907
-135228 CD109 CD109 molecule protein-coding 165 0.01967
-135250 RAET1E retinoic acid early transcript 1E protein-coding 26 0.0031
-135293 PM20D2 peptidase M20 domain containing 2 protein-coding 35 0.004173
-135295 SRSF12 serine and arginine rich splicing factor 12 protein-coding 41 0.004888
-135398 C6orf141 chromosome 6 open reading frame 141 protein-coding 16 0.001907
-135458 HUS1B HUS1 checkpoint clamp component B protein-coding 43 0.005126
-135644 TRIM40 tripartite motif containing 40 protein-coding 32 0.003815
-135656 MUCL3 mucin like 3 protein-coding 100 0.01192
-135886 TMEM270 transmembrane protein 270 protein-coding 27 0.003219
-135892 TRIM50 tripartite motif containing 50 protein-coding 51 0.00608
-135924 OR9A2 olfactory receptor family 9 subfamily A member 2 protein-coding 47 0.005603
-135927 LLCFC1 LLLL and CFNLAS motif containing 1 protein-coding 27 0.003219
-135932 TMEM139 transmembrane protein 139 protein-coding 36 0.004292
-135935 NOBOX NOBOX oogenesis homeobox protein-coding 112 0.01335
-135941 OR2A14 olfactory receptor family 2 subfamily A member 14 protein-coding 69 0.008226
-135946 OR6B1 olfactory receptor family 6 subfamily B member 1 protein-coding 74 0.008822
-135948 OR2F2 olfactory receptor family 2 subfamily F member 2 protein-coding 84 0.01001
-136051 ZNF786 zinc finger protein 786 protein-coding 96 0.01144
-136227 COL26A1 collagen type XXVI alpha 1 chain protein-coding 67 0.007988
-136242 PRSS37 serine protease 37 protein-coding 40 0.004769
-136259 KLF14 Kruppel like factor 14 protein-coding 27 0.003219
-136263 SSMEM1 serine rich single-pass membrane protein 1 protein-coding 49 0.005842
-136288 C7orf57 chromosome 7 open reading frame 57 protein-coding 43 0.005126
-136306 SVOPL SVOP like protein-coding 70 0.008345
-136319 MTPN myotrophin protein-coding 13 0.00155
-136332 LRGUK leucine rich repeats and guanylate kinase domain containing protein-coding 131 0.01562
-136371 ASB10 ankyrin repeat and SOCS box containing 10 protein-coding 56 0.006676
-136541 PRSS58 serine protease 58 protein-coding 58 0.006915
-136647 MPLKIP M-phase specific PLK1 interacting protein protein-coding 15 0.001788
-136853 SSC4D scavenger receptor cysteine rich family member with 4 domains protein-coding 33 0.003934
-136895 C7orf31 chromosome 7 open reading frame 31 protein-coding 76 0.009061
-136991 ASZ1 ankyrin repeat, SAM and basic leucine zipper domain containing 1 protein-coding 57 0.006795
-137075 CLDN23 claudin 23 protein-coding 15 0.001788
-137209 ZNF572 zinc finger protein 572 protein-coding 83 0.009895
-137362 GOT1L1 glutamic-oxaloacetic transaminase 1 like 1 protein-coding 49 0.005842
-137392 FAM92A family with sequence similarity 92 member A protein-coding 33 0.003934
-137492 VPS37A VPS37A, ESCRT-I subunit protein-coding 28 0.003338
-137682 NDUFAF6 NADH:ubiquinone oxidoreductase complex assembly factor 6 protein-coding 40 0.004769
-137695 TMEM68 transmembrane protein 68 protein-coding 26 0.0031
-137735 ABRA actin binding Rho activating protein protein-coding 72 0.008584
-137797 LYPD2 LY6/PLAUR domain containing 2 protein-coding 14 0.001669
-137814 NKX2-6 NK2 homeobox 6 protein-coding 15 0.001788
-137835 TMEM71 transmembrane protein 71 protein-coding 59 0.007034
-137868 SGCZ sarcoglycan zeta protein-coding 89 0.01061
-137872 ADHFE1 alcohol dehydrogenase, iron containing 1 protein-coding 59 0.007034
-137886 UBXN2B UBX domain protein 2B protein-coding 46 0.005484
-137902 PXDNL peroxidasin like protein-coding 382 0.04554
-137964 GPAT4 glycerol-3-phosphate acyltransferase 4 protein-coding 55 0.006557
-137970 UNC5D unc-5 netrin receptor D protein-coding 228 0.02718
-137994 LETM2 leucine zipper and EF-hand containing transmembrane protein 2 protein-coding 46 0.005484
-138009 DCAF4L2 DDB1 and CUL4 associated factor 4 like 2 protein-coding 215 0.02563
-138046 RALYL RALY RNA binding protein like protein-coding 101 0.01204
-138050 HGSNAT heparan-alpha-glucosaminide N-acetyltransferase protein-coding 74 0.008822
-138065 RNF183 ring finger protein 183 protein-coding 11 0.001311
-138151 NACC2 NACC family member 2 protein-coding 21 0.002504
-138162 C9orf116 chromosome 9 open reading frame 116 protein-coding 12 0.001431
-138199 CARNMT1 carnosine N-methyltransferase 1 protein-coding 52 0.006199
-138240 C9orf57 chromosome 9 open reading frame 57 protein-coding 16 0.001907
-138241 C9orf85 chromosome 9 open reading frame 85 protein-coding 20 0.002384
-138255 C9orf135 chromosome 9 open reading frame 135 protein-coding 48 0.005722
-138307 LCN8 lipocalin 8 protein-coding 24 0.002861
-138311 FAM69B family with sequence similarity 69 member B protein-coding 40 0.004769
-138428 PTRH1 peptidyl-tRNA hydrolase 1 homolog protein-coding 17 0.002027
-138429 PIP5KL1 phosphatidylinositol-4-phosphate 5-kinase like 1 protein-coding 24 0.002861
-138474 TAF1L TATA-box binding protein associated factor 1 like protein-coding 354 0.0422
-138639 PTPDC1 protein tyrosine phosphatase domain containing 1 protein-coding 81 0.009657
-138649 ANKRD19P ankyrin repeat domain 19, pseudogene pseudo 75 0.008941
-138715 ARID3C AT-rich interaction domain 3C protein-coding 47 0.005603
-138716 RPP25L ribonuclease P/MRP subunit p25 like protein-coding 35 0.004173
-138724 C9orf131 chromosome 9 open reading frame 131 protein-coding 120 0.01431
-138799 OR13C5 olfactory receptor family 13 subfamily C member 5 protein-coding 64 0.00763
-138802 OR13C8 olfactory receptor family 13 subfamily C member 8 protein-coding 75 0.008941
-138803 OR13C3 olfactory receptor family 13 subfamily C member 3 protein-coding 61 0.007272
-138804 OR13C4 olfactory receptor family 13 subfamily C member 4 protein-coding 80 0.009537
-138805 OR13F1 olfactory receptor family 13 subfamily F member 1 protein-coding 79 0.009418
-138881 OR1L8 olfactory receptor family 1 subfamily L member 8 protein-coding 63 0.007511
-138882 OR1N2 olfactory receptor family 1 subfamily N member 2 protein-coding 57 0.006795
-138883 OR1N1 olfactory receptor family 1 subfamily N member 1 protein-coding 46 0.005484
-139065 SLITRK4 SLIT and NTRK like family member 4 protein-coding 214 0.02551
-139067 SPANXN3 SPANX family member N3 protein-coding 49 0.005842
-139081 MAGEC3 MAGE family member C3 protein-coding 190 0.02265
-139105 BEND2 BEN domain containing 2 protein-coding 123 0.01466
-139135 PASD1 PAS domain containing repressor 1 protein-coding 153 0.01824
-139170 DCAF12L1 DDB1 and CUL4 associated factor 12 like 1 protein-coding 169 0.02015
-139189 DGKK diacylglycerol kinase kappa protein-coding 260 0.031
-139212 PIH1D3 PIH1 domain containing 3 protein-coding 17 0.002027
-139221 MUM1L1 MUM1 like 1 protein-coding 107 0.01276
-139231 FAM199X family with sequence similarity 199, X-linked protein-coding 53 0.006319
-139285 AMER1 APC membrane recruitment protein 1 protein-coding 228 0.02718
-139322 APOOL apolipoprotein O like protein-coding 35 0.004173
-139324 HDX highly divergent homeobox protein-coding 146 0.01741
-139341 FUNDC1 FUN14 domain containing 1 protein-coding 14 0.001669
-139378 ADGRG4 adhesion G protein-coupled receptor G4 protein-coding 428 0.05103
-139411 PTCHD1 patched domain containing 1 protein-coding 134 0.01598
-139422 MAGEB10 MAGE family member B10 protein-coding 81 0.009657
-139425 DCAF8L1 DDB1 and CUL4 associated factor 8 like 1 protein-coding 145 0.01729
-139538 VENTXP1 VENT homeobox pseudogene 1 pseudo 1 0.0001192
-139562 OTUD6A OTU deubiquitinase 6A protein-coding 66 0.007868
-139596 UPRT uracil phosphoribosyltransferase homolog protein-coding 64 0.00763
-139599 MAGEE2 MAGE family member E2 protein-coding 119 0.01419
-139604 MAGEB16 MAGE family member B16 protein-coding 75 0.008941
-139628 FOXR2 forkhead box R2 protein-coding 56 0.006676
-139716 GAB3 GRB2 associated binding protein 3 protein-coding 78 0.009299
-139728 PNCK pregnancy up-regulated nonubiquitous CaM kinase protein-coding 61 0.007272
-139735 ZFP92 ZFP92 zinc finger protein protein-coding 44 0.005246
-139741 ACTRT1 actin related protein T1 protein-coding 128 0.01526
-139760 GPR119 G protein-coupled receptor 119 protein-coding 56 0.006676
-139793 PAGE3 PAGE family member 3 protein-coding 33 0.003934
-139804 RBMXL3 RNA binding motif protein, X-linked like 3 protein-coding 114 0.01359
-139818 DOCK11 dedicator of cytokinesis 11 protein-coding 247 0.02945
-139886 SPIN4 spindlin family member 4 protein-coding 28 0.003338
-140032 RPS4Y2 ribosomal protein S4, Y-linked 2 protein-coding 8 0.0009537
-140258 KRTAP13-1 keratin associated protein 13-1 protein-coding 48 0.005722
-140290 TCP10L t-complex 10 like protein-coding 24 0.002861
-140432 RNF113B ring finger protein 113B protein-coding 56 0.006676
-140453 MUC17 mucin 17, cell surface associated protein-coding 637 0.07594
-140456 ASB11 ankyrin repeat and SOCS box containing 11 protein-coding 55 0.006557
-140458 ASB5 ankyrin repeat and SOCS box containing 5 protein-coding 92 0.01097
-140459 ASB6 ankyrin repeat and SOCS box containing 6 protein-coding 38 0.00453
-140460 ASB7 ankyrin repeat and SOCS box containing 7 protein-coding 41 0.004888
-140461 ASB8 ankyrin repeat and SOCS box containing 8 protein-coding 31 0.003696
-140462 ASB9 ankyrin repeat and SOCS box containing 9 protein-coding 52 0.006199
-140465 MYL6B myosin light chain 6B protein-coding 16 0.001907
-140467 ZNF358 zinc finger protein 358 protein-coding 73 0.008703
-140468 COX11P1 COX11, cytochrome c oxidase copper chaperone pseudogene 1 pseudo 28 0.003338
-140469 MYO3B myosin IIIB protein-coding 164 0.01955
-140545 RNF32 ring finger protein 32 protein-coding 59 0.007034
-140564 APOBEC3D apolipoprotein B mRNA editing enzyme catalytic subunit 3D protein-coding 39 0.004649
-140576 S100A16 S100 calcium binding protein A16 protein-coding 14 0.001669
-140578 CHODL chondrolectin protein-coding 45 0.005365
-140596 DEFB104A defensin beta 104A protein-coding 8 0.0009537
-140597 TCEAL2 transcription elongation factor A like 2 protein-coding 36 0.004292
-140606 SELENOM selenoprotein M protein-coding 11 0.001311
-140609 NEK7 NIMA related kinase 7 protein-coding 41 0.004888
-140612 ZFP28 ZFP28 zinc finger protein protein-coding 96 0.01144
-140625 ACTRT2 actin related protein T2 protein-coding 81 0.009657
-140628 GATA5 GATA binding protein 5 protein-coding 36 0.004292
-140679 SLC32A1 solute carrier family 32 member 1 protein-coding 120 0.01431
-140680 C20orf96 chromosome 20 open reading frame 96 protein-coding 40 0.004769
-140683 BPIFA2 BPI fold containing family A member 2 protein-coding 31 0.003696
-140685 ZBTB46 zinc finger and BTB domain containing 46 protein-coding 95 0.01133
-140686 WFDC3 WAP four-disulfide core domain 3 protein-coding 25 0.00298
-140687 GCNT7 glucosaminyl (N-acetyl) transferase family member 7 protein-coding 21 0.002504
-140688 NOL4L nucleolar protein 4 like protein-coding 52 0.006199
-140689 CBLN4 cerebellin 4 precursor protein-coding 59 0.007034
-140690 CTCFL CCCTC-binding factor like protein-coding 121 0.01443
-140691 TRIM69 tripartite motif containing 69 protein-coding 57 0.006795
-140699 MROH8 maestro heat like repeat family member 8 protein-coding 101 0.01204
-140700 SAMD10 sterile alpha motif domain containing 10 protein-coding 19 0.002265
-140701 ABHD16B abhydrolase domain containing 16B protein-coding 39 0.004649
-140706 CCM2L CCM2 like scaffold protein protein-coding 35 0.004173
-140707 BRI3BP BRI3 binding protein protein-coding 26 0.0031
-140710 SOGA1 suppressor of glucose, autophagy associated 1 protein-coding 131 0.01562
-140711 TLDC2 TBC/LysM-associated domain containing 2 protein-coding 28 0.003338
-140730 RIMS4 regulating synaptic membrane exocytosis 4 protein-coding 50 0.005961
-140732 SUN5 Sad1 and UNC84 domain containing 5 protein-coding 73 0.008703
-140733 MACROD2 MACRO domain containing 2 protein-coding 86 0.01025
-140735 DYNLL2 dynein light chain LC8-type 2 protein-coding 14 0.001669
-140738 TMEM37 transmembrane protein 37 protein-coding 32 0.003815
-140739 UBE2F ubiquitin conjugating enzyme E2 F (putative) protein-coding 16 0.001907
-140766 ADAMTS14 ADAM metallopeptidase with thrombospondin type 1 motif 14 protein-coding 156 0.0186
-140767 NRSN1 neurensin 1 protein-coding 39 0.004649
-140775 SMCR8 Smith-Magenis syndrome chromosome region, candidate 8 protein-coding 101 0.01204
-140801 RPL10L ribosomal protein L10 like protein-coding 97 0.01156
-140803 TRPM6 transient receptor potential cation channel subfamily M member 6 protein-coding 278 0.03314
-140807 KRT72 keratin 72 protein-coding 82 0.009776
-140809 SRXN1 sulfiredoxin 1 protein-coding 11 0.001311
-140823 ROMO1 reactive oxygen species modulator 1 protein-coding 7 0.0008345
-140825 NEURL2 neuralized E3 ubiquitin protein ligase 2 protein-coding 29 0.003457
-140831 ZSWIM3 zinc finger SWIM-type containing 3 protein-coding 80 0.009537
-140832 WFDC10A WAP four-disulfide core domain 10A protein-coding 12 0.001431
-140834 LINC01620 long intergenic non-protein coding RNA 1620 ncRNA 9 0.001073
-140836 BANF2 barrier to autointegration factor 2 protein-coding 14 0.001669
-140838 NANP N-acetylneuraminic acid phosphatase protein-coding 19 0.002265
-140849 LINC00266-1 long intergenic non-protein coding RNA 266-1 ncRNA 6 0.0007153
-140850 DEFB127 defensin beta 127 protein-coding 17 0.002027
-140856 SCP2D1 SCP2 sterol binding domain containing 1 protein-coding 29 0.003457
-140862 ISM1 isthmin 1 protein-coding 61 0.007272
-140870 WFDC6 WAP four-disulfide core domain 6 protein-coding 12 0.001431
-140873 C20orf173 chromosome 20 open reading frame 173 protein-coding 19 0.002265
-140876 RIPOR3 RIPOR family member 3 protein-coding 105 0.01252
-140880 CST11 cystatin 11 protein-coding 33 0.003934
-140881 DEFB129 defensin beta 129 protein-coding 27 0.003219
-140883 ZNF280B zinc finger protein 280B protein-coding 68 0.008107
-140885 SIRPA signal regulatory protein alpha protein-coding 75 0.008941
-140886 PABPC5 poly(A) binding protein cytoplasmic 5 protein-coding 128 0.01526
-140890 SREK1 splicing regulatory glutamic acid and lysine rich protein 1 protein-coding 68 0.008107
-140893 RBBP8NL RBBP8 N-terminal like protein-coding 51 0.00608
-140894 CNBD2 cyclic nucleotide binding domain containing 2 protein-coding 83 0.009895
-140901 STK35 serine/threonine kinase 35 protein-coding 35 0.004173
-140902 R3HDML R3H domain containing like protein-coding 42 0.005007
-140913 PPIAP10 peptidylprolyl isomerase A pseudogene 10 pseudo 43 0.005126
-140947 DCANP1 dendritic cell associated nuclear protein protein-coding 35 0.004173
-142678 MIB2 mindbomb E3 ubiquitin protein ligase 2 protein-coding 73 0.008703
-142679 DUSP19 dual specificity phosphatase 19 protein-coding 33 0.003934
-142680 SLC34A3 solute carrier family 34 member 3 protein-coding 51 0.00608
-142683 ITLN2 intelectin 2 protein-coding 47 0.005603
-142684 RAB40A RAB40A, member RAS oncogene family protein-coding 32 0.003815
-142685 ASB15 ankyrin repeat and SOCS box containing 15 protein-coding 96 0.01144
-142686 ASB14 ankyrin repeat and SOCS box containing 14 protein-coding 38 0.00453
-142689 ASB12 ankyrin repeat and SOCS box containing 12 protein-coding 62 0.007392
-142827 ACSM6 acyl-CoA synthetase medium chain family member 6 protein-coding 41 0.004888
-142891 SAMD8 sterile alpha motif domain containing 8 protein-coding 38 0.00453
-142910 LIPJ lipase family member J protein-coding 43 0.005126
-142913 CFL1P1 cofilin 1 pseudogene 1 pseudo 11 0.001311
-142940 TRUB1 TruB pseudouridine synthase family member 1 protein-coding 42 0.005007
-143098 MPP7 membrane palmitoylated protein 7 protein-coding 80 0.009537
-143162 FRMPD2 FERM and PDZ domain containing 2 protein-coding 174 0.02074
-143187 VTI1A vesicle transport through interaction with t-SNAREs 1A protein-coding 23 0.002742
-143241 DYDC1 DPY30 domain containing 1 protein-coding 23 0.002742
-143244 EIF5AL1 eukaryotic translation initiation factor 5A-like 1 protein-coding 20 0.002384
-143279 HECTD2 HECT domain E3 ubiquitin protein ligase 2 protein-coding 90 0.01073
-143282 FGFBP3 fibroblast growth factor binding protein 3 protein-coding 7 0.0008345
-143379 C10orf82 chromosome 10 open reading frame 82 protein-coding 17 0.002027
-143384 CACUL1 CDK2 associated cullin domain 1 protein-coding 53 0.006319
-143425 SYT9 synaptotagmin 9 protein-coding 88 0.01049
-143458 LDLRAD3 low density lipoprotein receptor class A domain containing 3 protein-coding 41 0.004888
-143471 PSMA8 proteasome subunit alpha 8 protein-coding 50 0.005961
-143496 OR52B4 olfactory receptor family 52 subfamily B member 4 (gene/pseudogene) protein-coding 57 0.006795
-143501 C11orf40 chromosome 11 open reading frame 40 protein-coding 38 0.00453
-143502 OR52I2 olfactory receptor family 52 subfamily I member 2 protein-coding 66 0.007868
-143503 OR51E1 olfactory receptor family 51 subfamily E member 1 protein-coding 64 0.00763
-143570 XRRA1 X-ray radiation resistance associated 1 protein-coding 84 0.01001
-143630 UBQLNL ubiquilin like protein-coding 79 0.009418
-143662 MUC15 mucin 15, cell surface associated protein-coding 81 0.009657
-143678 C11orf94 chromosome 11 open reading frame 94 protein-coding 15 0.001788
-143684 FAM76B family with sequence similarity 76 member B protein-coding 43 0.005126
-143686 SESN3 sestrin 3 protein-coding 79 0.009418
-143689 PIWIL4 piwi like RNA-mediated gene silencing 4 protein-coding 94 0.01121
-143872 ARHGAP42 Rho GTPase activating protein 42 protein-coding 82 0.009776
-143879 KBTBD3 kelch repeat and BTB domain containing 3 protein-coding 86 0.01025
-143884 CWF19L2 CWF19 like 2, cell cycle control (S. pombe) protein-coding 136 0.01621
-143888 KDELC2 KDEL motif containing 2 protein-coding 47 0.005603
-143903 LAYN layilin protein-coding 45 0.005365
-143941 TTC36 tetratricopeptide repeat domain 36 protein-coding 9 0.001073
-144097 SPINDOC spindlin interactor and repressor of chromatin binding protein-coding 53 0.006319
-144100 PLEKHA7 pleckstrin homology domain containing A7 protein-coding 124 0.01478
-144108 SPTY2D1 SPT2 chromatin protein domain containing 1 protein-coding 109 0.01299
-144110 TMEM86A transmembrane protein 86A protein-coding 23 0.002742
-144124 OR10A5 olfactory receptor family 10 subfamily A member 5 protein-coding 57 0.006795
-144125 OR2AG1 olfactory receptor family 2 subfamily AG member 1 (gene/pseudogene) protein-coding 51 0.00608
-144132 DNHD1 dynein heavy chain domain 1 protein-coding 249 0.02969
-144165 PRICKLE1 prickle planar cell polarity protein 1 protein-coding 144 0.01717
-144193 AMDHD1 amidohydrolase domain containing 1 protein-coding 60 0.007153
-144195 SLC2A14 solute carrier family 2 member 14 protein-coding 95 0.01133
-144233 BCDIN3D BCDIN3 domain containing RNA methyltransferase protein-coding 33 0.003934
-144245 ALG10B ALG10B, alpha-1,2-glucosyltransferase protein-coding 73 0.008703
-144321 GLIPR1L2 GLIPR1 like 2 protein-coding 58 0.006915
-144347 RFLNA refilin A protein-coding 22 0.002623
-144348 ZNF664 zinc finger protein 664 protein-coding 35 0.004173
-144360 LINC00477 long intergenic non-protein coding RNA 477 ncRNA 89 0.01061
-144363 ETFRF1 electron transfer flavoprotein regulatory factor 1 protein-coding 12 0.001431
-144402 CPNE8 copine 8 protein-coding 94 0.01121
-144404 TMEM120B transmembrane protein 120B protein-coding 33 0.003934
-144406 WDR66 WD repeat domain 66 protein-coding 131 0.01562
-144423 GLT1D1 glycosyltransferase 1 domain containing 1 protein-coding 59 0.007034
-144448 TSPAN19 tetraspanin 19 protein-coding 39 0.004649
-144453 BEST3 bestrophin 3 protein-coding 115 0.01371
-144455 E2F7 E2F transcription factor 7 protein-coding 126 0.01502
-144501 KRT80 keratin 80 protein-coding 46 0.005484
-144535 CFAP54 cilia and flagella associated protein 54 protein-coding 235 0.02802
-144568 A2ML1 alpha-2-macroglobulin like 1 protein-coding 189 0.02253
-144577 C12orf66 chromosome 12 open reading frame 66 protein-coding 65 0.007749
-144608 C12orf60 chromosome 12 open reading frame 60 protein-coding 40 0.004769
-144699 FBXL14 F-box and leucine rich repeat protein 14 protein-coding 29 0.003457
-144715 RAD9B RAD9 checkpoint clamp component B protein-coding 37 0.004411
-144717 PHETA1 PH domain containing endocytic trafficking adaptor 1 protein-coding 19 0.002265
-144809 FAM216B family with sequence similarity 216 member B protein-coding 14 0.001669
-144811 LACC1 laccase domain containing 1 protein-coding 48 0.005722
-144983 HNRNPA1L2 heterogeneous nuclear ribonucleoprotein A1-like 2 protein-coding 25 0.00298
-145173 B3GLCT beta 3-glucosyltransferase protein-coding 63 0.007511
-145226 RDH12 retinol dehydrogenase 12 protein-coding 41 0.004888
-145241 ADAM21P1 ADAM metallopeptidase domain 21 pseudogene 1 pseudo 164 0.01955
-145258 GSC goosecoid homeobox protein-coding 15 0.001788
-145264 SERPINA12 serpin family A member 12 protein-coding 72 0.008584
-145270 PRIMA1 proline rich membrane anchor 1 protein-coding 19 0.002265
-145282 MIPOL1 mirror-image polydactyly 1 protein-coding 70 0.008345
-145376 PPP1R36 protein phosphatase 1 regulatory subunit 36 protein-coding 62 0.007392
-145389 SLC38A6 solute carrier family 38 member 6 protein-coding 48 0.005722
-145407 ARMH4 armadillo-like helical domain containing 4 protein-coding 98 0.01168
-145447 ABHD12B abhydrolase domain containing 12B protein-coding 31 0.003696
-145482 PTGR2 prostaglandin reductase 2 protein-coding 27 0.003219
-145483 FAM161B family with sequence similarity 161 member B protein-coding 66 0.007868
-145497 LRRC74A leucine rich repeat containing 74A protein-coding 62 0.007392
-145501 ISM2 isthmin 2 protein-coding 65 0.007749
-145508 CEP128 centrosomal protein 128 protein-coding 171 0.02039
-145553 MDP1 magnesium dependent phosphatase 1 protein-coding 15 0.001788
-145567 TTC7B tetratricopeptide repeat domain 7B protein-coding 115 0.01371
-145581 LRFN5 leucine rich repeat and fibronectin type III domain containing 5 protein-coding 254 0.03028
-145645 TERB2 telomere repeat binding bouquet formation protein 2 protein-coding 31 0.003696
-145741 C2CD4A C2 calcium dependent domain containing 4A protein-coding 7 0.0008345
-145748 LYSMD4 LysM domain containing 4 protein-coding 38 0.00453
-145773 FAM81A family with sequence similarity 81 member A protein-coding 46 0.005484
-145781 GCOM1 GRINL1A complex locus 1 protein-coding 44 0.005246
-145788 C15orf65 chromosome 15 open reading frame 65 protein-coding 1 0.0001192
-145814 PGPEP1L pyroglutamyl-peptidase I like protein-coding 29 0.003457
-145853 C15orf61 chromosome 15 open reading frame 61 protein-coding 3 0.0003577
-145858 C15orf32 chromosome 15 open reading frame 32 protein-coding 24 0.002861
-145864 HAPLN3 hyaluronan and proteoglycan link protein 3 protein-coding 51 0.00608
-145873 MESP2 mesoderm posterior bHLH transcription factor 2 protein-coding 30 0.003577
-145942 TMCO5A transmembrane and coiled-coil domains 5A protein-coding 44 0.005246
-145946 SPATA8 spermatogenesis associated 8 protein-coding 34 0.004053
-145957 NRG4 neuregulin 4 protein-coding 14 0.001669
-145978 LINC00052 long intergenic non-protein coding RNA 52 ncRNA 22 0.002623
-146050 ZSCAN29 zinc finger and SCAN domain containing 29 protein-coding 79 0.009418
-146057 TTBK2 tau tubulin kinase 2 protein-coding 111 0.01323
-146059 CDAN1 codanin 1 protein-coding 106 0.01264
-146167 SLC38A8 solute carrier family 38 member 8 protein-coding 68 0.008107
-146177 VWA3A von Willebrand factor A domain containing 3A protein-coding 139 0.01657
-146183 OTOA otoancorin protein-coding 121 0.01443
-146198 ZFP90 ZFP90 zinc finger protein protein-coding 71 0.008464
-146206 CARMIL2 capping protein regulator and myosin 1 linker 2 protein-coding 138 0.01645
-146212 KCTD19 potassium channel tetramerization domain containing 19 protein-coding 103 0.01228
-146223 CMTM4 CKLF like MARVEL transmembrane domain containing 4 protein-coding 20 0.002384
-146225 CMTM2 CKLF like MARVEL transmembrane domain containing 2 protein-coding 20 0.002384
-146227 BEAN1 brain expressed associated with NEDD4 1 protein-coding 16 0.001907
-146279 TEKT5 tektin 5 protein-coding 81 0.009657
-146310 RNF151 ring finger protein 151 protein-coding 24 0.002861
-146325 PRR35 proline rich 35 protein-coding 47 0.005603
-146330 FBXL16 F-box and leucine rich repeat protein 16 protein-coding 38 0.00453
-146336 SSTR5-AS1 SSTR5 antisense RNA 1 ncRNA 9 0.001073
-146378 C16orf92 chromosome 16 open reading frame 92 protein-coding 22 0.002623
-146395 GSG1L GSG1 like protein-coding 48 0.005722
-146429 SLC22A31 solute carrier family 22 member 31 protein-coding 1 0.0001192
-146433 IL34 interleukin 34 protein-coding 23 0.002742
-146434 ZNF597 zinc finger protein 597 protein-coding 58 0.006915
-146439 BICDL2 BICD family like cargo adaptor 2 protein-coding 41 0.004888
-146456 TMED6 transmembrane p24 trafficking protein 6 protein-coding 27 0.003219
-146540 ZNF785 zinc finger protein 785 protein-coding 50 0.005961
-146542 ZNF688 zinc finger protein 688 protein-coding 32 0.003815
-146547 PRSS36 serine protease 36 protein-coding 75 0.008941
-146556 C16orf89 chromosome 16 open reading frame 89 protein-coding 45 0.005365
-146562 C16orf71 chromosome 16 open reading frame 71 protein-coding 54 0.006438
-146664 MGAT5B mannosyl (alpha-1,6-)-glycoprotein beta-1,6-N-acetyl-glucosaminyltransferase, isozyme B protein-coding 134 0.01598
-146691 TOM1L2 target of myb1 like 2 membrane trafficking protein protein-coding 58 0.006915
-146705 TEPSIN TEPSIN, adaptor related protein complex 4 accessory protein protein-coding 41 0.004888
-146712 B3GNTL1 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase like 1 protein-coding 69 0.008226
-146713 RBFOX3 RNA binding fox-1 homolog 3 protein-coding 18 0.002146
-146722 CD300LF CD300 molecule like family member f protein-coding 31 0.003696
-146723 C17orf77 chromosome 17 open reading frame 77 protein-coding 36 0.004292
-146754 DNAH2 dynein axonemal heavy chain 2 protein-coding 391 0.04661
-146760 RTN4RL1 reticulon 4 receptor like 1 protein-coding 37 0.004411
-146771 TCAM1P testicular cell adhesion molecule 1, pseudogene pseudo 21 0.002504
-146779 EFCAB3 EF-hand calcium binding domain 3 protein-coding 80 0.009537
-146802 SLC47A2 solute carrier family 47 member 2 protein-coding 59 0.007034
-146822 CDRT15 CMT1A duplicated region transcript 15 protein-coding 25 0.00298
-146845 CFAP52 cilia and flagella associated protein 52 protein-coding 97 0.01156
-146849 CCDC42 coiled-coil domain containing 42 protein-coding 65 0.007749
-146850 PIK3R6 phosphoinositide-3-kinase regulatory subunit 6 protein-coding 81 0.009657
-146852 ODF4 outer dense fiber of sperm tails 4 protein-coding 26 0.0031
-146853 C17orf50 chromosome 17 open reading frame 50 protein-coding 8 0.0009537
-146857 SLFN13 schlafen family member 13 protein-coding 112 0.01335
-146861 SLC35G3 solute carrier family 35 member G3 protein-coding 76 0.009061
-146862 UNC45B unc-45 myosin chaperone B protein-coding 137 0.01633
-146894 CD300LG CD300 molecule like family member g protein-coding 50 0.005961
-146909 KIF18B kinesin family member 18B protein-coding 82 0.009776
-146923 RUNDC1 RUN domain containing 1 protein-coding 47 0.005603
-146956 EME1 essential meiotic structure-specific endonuclease 1 protein-coding 50 0.005961
-147007 TMEM199 transmembrane protein 199 protein-coding 24 0.002861
-147011 PROCA1 protein interacting with cyclin A1 protein-coding 44 0.005246
-147015 DHRS13 dehydrogenase/reductase 13 protein-coding 26 0.0031
-147040 KCTD11 potassium channel tetramerization domain containing 11 protein-coding 73 0.008703
-147081 LINC02210 long intergenic non-protein coding RNA 2210 ncRNA 6 0.0007153
-147111 NOTUM notum, palmitoleoyl-protein carboxylesterase protein-coding 54 0.006438
-147138 TMC8 transmembrane channel like 8 protein-coding 56 0.006676
-147166 TRIM16L tripartite motif containing 16 like protein-coding 35 0.004173
-147172 LRRC37BP1 leucine rich repeat containing 37B pseudogene 1 pseudo 42 0.005007
-147179 WIPF2 WAS/WASL interacting protein family member 2 protein-coding 63 0.007511
-147183 KRT25 keratin 25 protein-coding 75 0.008941
-147184 TMEM99 transmembrane protein 99 protein-coding 25 0.00298
-147199 SCGB1C1 secretoglobin family 1C member 1 protein-coding 18 0.002146
-147323 STARD6 StAR related lipid transfer domain containing 6 protein-coding 33 0.003934
-147339 C18orf25 chromosome 18 open reading frame 25 protein-coding 29 0.003457
-147372 CCBE1 collagen and calcium binding EGF domains 1 protein-coding 69 0.008226
-147381 CBLN2 cerebellin 2 precursor protein-coding 68 0.008107
-147407 SLC25A52 solute carrier family 25 member 52 protein-coding 52 0.006199
-147409 DSG4 desmoglein 4 protein-coding 166 0.01979
-147463 ANKRD29 ankyrin repeat domain 29 protein-coding 29 0.003457
-147495 APCDD1 APC down-regulated 1 protein-coding 66 0.007868
-147645 VSIG10L V-set and immunoglobulin domain containing 10 like protein-coding 45 0.005365
-147646 C19orf84 chromosome 19 open reading frame 84 protein-coding 5 0.0005961
-147650 SPACA6 sperm acrosome associated 6 protein-coding 14 0.001669
-147657 ZNF480 zinc finger protein 480 protein-coding 83 0.009895
-147658 ZNF534 zinc finger protein 534 protein-coding 112 0.01335
-147660 ZNF578 zinc finger protein 578 protein-coding 117 0.01395
-147664 ERVV-1 endogenous retrovirus group V member 1, envelope protein-coding 16 0.001907
-147670 SMIM17 small integral membrane protein 17 protein-coding 7 0.0008345
-147685 C19orf18 chromosome 19 open reading frame 18 protein-coding 41 0.004888
-147686 ZNF418 zinc finger protein 418 protein-coding 105 0.01252
-147687 ZNF417 zinc finger protein 417 protein-coding 73 0.008703
-147694 ZNF548 zinc finger protein 548 protein-coding 97 0.01156
-147699 PPM1N protein phosphatase, Mg2+/Mn2+ dependent 1N (putative) protein-coding 28 0.003338
-147700 KLC3 kinesin light chain 3 protein-coding 119 0.01419
-147710 IGSF23 immunoglobulin superfamily member 23 protein-coding 6 0.0007153
-147719 LYPD4 LY6/PLAUR domain containing 4 protein-coding 37 0.004411
-147741 ZNF560 zinc finger protein 560 protein-coding 141 0.01681
-147744 TMEM190 transmembrane protein 190 protein-coding 32 0.003815
-147746 HIPK4 homeodomain interacting protein kinase 4 protein-coding 72 0.008584
-147798 TMC4 transmembrane channel like 4 protein-coding 94 0.01121
-147804 TPM3P9 tropomyosin 3 pseudogene 9 pseudo 31 0.003696
-147807 ZNF524 zinc finger protein 524 protein-coding 31 0.003696
-147808 ZNF784 zinc finger protein 784 protein-coding 26 0.0031
-147837 ZNF563 zinc finger protein 563 protein-coding 72 0.008584
-147841 SPC24 SPC24, NDC80 kinetochore complex component protein-coding 7 0.0008345
-147872 CCDC155 coiled-coil domain containing 155 protein-coding 69 0.008226
-147906 DACT3 dishevelled binding antagonist of beta catenin 3 protein-coding 16 0.001907
-147912 SIX5 SIX homeobox 5 protein-coding 54 0.006438
-147920 IGFL2 IGF like family member 2 protein-coding 21 0.002504
-147923 ZNF420 zinc finger protein 420 protein-coding 95 0.01133
-147929 ZNF565 zinc finger protein 565 protein-coding 49 0.005842
-147945 NLRP4 NLR family pyrin domain containing 4 protein-coding 305 0.03636
-147948 ZNF582 zinc finger protein 582 protein-coding 80 0.009537
-147949 ZNF583 zinc finger protein 583 protein-coding 89 0.01061
-147965 FAM98C family with sequence similarity 98 member C protein-coding 50 0.005961
-147968 CAPN12 calpain 12 protein-coding 76 0.009061
-147991 DPY19L3 dpy-19 like C-mannosyltransferase 3 protein-coding 79 0.009418
-148003 LGALS16 galectin 16 protein-coding 14 0.001669
-148014 TTC9B tetratricopeptide repeat domain 9B protein-coding 12 0.001431
-148022 TICAM1 toll like receptor adaptor molecule 1 protein-coding 95 0.01133
-148066 ZNRF4 zinc and ring finger 4 protein-coding 82 0.009776
-148103 ZNF599 zinc finger protein 599 protein-coding 84 0.01001
-148109 FAM187B family with sequence similarity 187 member B protein-coding 48 0.005722
-148113 CILP2 cartilage intermediate layer protein 2 protein-coding 155 0.01848
-148137 PROSER3 proline and serine rich 3 protein-coding 42 0.005007
-148156 ZNF558 zinc finger protein 558 protein-coding 54 0.006438
-148170 CDC42EP5 CDC42 effector protein 5 protein-coding 3 0.0003577
-148198 ZNF98 zinc finger protein 98 protein-coding 161 0.01919
-148203 ZNF738 zinc finger protein 738 protein-coding 18 0.002146
-148206 ZNF714 zinc finger protein 714 protein-coding 72 0.008584
-148213 ZNF681 zinc finger protein 681 protein-coding 114 0.01359
-148223 C19orf25 chromosome 19 open reading frame 25 protein-coding 3 0.0003577
-148229 ATP8B3 ATPase phospholipid transporting 8B3 protein-coding 135 0.01609
-148231 LINC00905 long intergenic non-protein coding RNA 905 ncRNA 24 0.002861
-148252 DIRAS1 DIRAS family GTPase 1 protein-coding 30 0.003577
-148254 ZNF555 zinc finger protein 555 protein-coding 58 0.006915
-148266 ZNF569 zinc finger protein 569 protein-coding 114 0.01359
-148268 ZNF570 zinc finger protein 570 protein-coding 85 0.01013
-148281 SYT6 synaptotagmin 6 protein-coding 76 0.009061
-148304 C1orf74 chromosome 1 open reading frame 74 protein-coding 28 0.003338
-148327 CREB3L4 cAMP responsive element binding protein 3 like 4 protein-coding 89 0.01061
-148345 C1orf127 chromosome 1 open reading frame 127 protein-coding 81 0.009657
-148362 BROX BRO1 domain and CAAX motif containing protein-coding 53 0.006319
-148398 SAMD11 sterile alpha motif domain containing 11 protein-coding 49 0.005842
-148418 SAMD13 sterile alpha motif domain containing 13 protein-coding 15 0.001788
-148423 C1orf52 chromosome 1 open reading frame 52 protein-coding 22 0.002623
-148479 PHF13 PHD finger protein 13 protein-coding 47 0.005603
-148523 CIART circadian associated repressor of transcription protein-coding 53 0.006319
-148534 TMEM56 transmembrane protein 56 protein-coding 32 0.003815
-148545 NBPF4 NBPF member 4 protein-coding 9 0.001073
-148581 UBE2U ubiquitin conjugating enzyme E2 U protein-coding 42 0.005007
-148641 SLC35F3 solute carrier family 35 member F3 protein-coding 90 0.01073
-148713 PTPRVP protein tyrosine phosphatase, receptor type V, pseudogene pseudo 23 0.002742
-148738 HJV hemojuvelin BMP co-receptor protein-coding 49 0.005842
-148741 ANKRD35 ankyrin repeat domain 35 protein-coding 128 0.01526
-148753 FAM163A family with sequence similarity 163 member A protein-coding 24 0.002861
-148789 B3GALNT2 beta-1,3-N-acetylgalactosaminyltransferase 2 protein-coding 40 0.004769
-148808 MFSD4A major facilitator superfamily domain containing 4A protein-coding 39 0.004649
-148811 PM20D1 peptidase M20 domain containing 1 protein-coding 55 0.006557
-148823 GCSAML germinal center associated signaling and motility like protein-coding 43 0.005126
-148867 SLC30A7 solute carrier family 30 member 7 protein-coding 38 0.00453
-148870 CCDC27 coiled-coil domain containing 27 protein-coding 93 0.01109
-148898 ZNF436-AS1 ZNF436 antisense RNA 1 ncRNA 14 0.001669
-148930 KNCN kinocilin protein-coding 14 0.001669
-148932 MOB3C MOB kinase activator 3C protein-coding 39 0.004649
-148979 GLIS1 GLIS family zinc finger 1 protein-coding 87 0.01037
-149013 NBPF12 NBPF member 12 protein-coding 46 0.005484
-149018 LELP1 late cornified envelope like proline rich 1 protein-coding 25 0.00298
-149041 RC3H1 ring finger and CCCH-type domains 1 protein-coding 140 0.01669
-149069 DCDC2B doublecortin domain containing 2B protein-coding 34 0.004053
-149076 ZNF362 zinc finger protein 362 protein-coding 49 0.005842
-149095 DCST1 DC-STAMP domain containing 1 protein-coding 91 0.01085
-149111 CNIH3 cornichon family AMPA receptor auxiliary protein 3 protein-coding 26 0.0031
-149175 MANEAL mannosidase endo-alpha like protein-coding 34 0.004053
-149233 IL23R interleukin 23 receptor protein-coding 68 0.008107
-149281 METTL11B methyltransferase like 11B protein-coding 31 0.003696
-149297 FAM78B family with sequence similarity 78 member B protein-coding 58 0.006915
-149345 SHISA4 shisa family member 4 protein-coding 23 0.002742
-149371 EXOC8 exocyst complex component 8 protein-coding 77 0.00918
-149420 PDIK1L PDLIM1 interacting kinase 1 like protein-coding 37 0.004411
-149428 BNIPL BCL2 interacting protein like protein-coding 42 0.005007
-149461 CLDN19 claudin 19 protein-coding 25 0.00298
-149465 CFAP57 cilia and flagella associated protein 57 protein-coding 77 0.00918
-149466 C1orf210 chromosome 1 open reading frame 210 protein-coding 13 0.00155
-149473 CCDC24 coiled-coil domain containing 24 protein-coding 34 0.004053
-149478 BTBD19 BTB domain containing 19 protein-coding 19 0.002265
-149483 CCDC17 coiled-coil domain containing 17 protein-coding 52 0.006199
-149499 LRRC71 leucine rich repeat containing 71 protein-coding 49 0.005842
-149563 SRARP steroid receptor associated and regulated protein protein-coding 13 0.00155
-149603 RNF187 ring finger protein 187 protein-coding 4 0.0004769
-149620 CHIAP2 chitinase, acidic pseudogene 2 pseudo 65 0.007749
-149628 PYHIN1 pyrin and HIN domain family member 1 protein-coding 149 0.01776
-149643 SPATA45 spermatogenesis associated 45 protein-coding 18 0.002146
-149647 FAM71A family with sequence similarity 71 member A protein-coding 113 0.01347
-149685 ADIG adipogenin protein-coding 16 0.001907
-149699 GTSF1L gametocyte specific factor 1 like protein-coding 29 0.003457
-149708 WFDC5 WAP four-disulfide core domain 5 protein-coding 23 0.002742
-149830 PRNT prion locus lncRNA, testis expressed ncRNA 18 0.002146
-149837 LINC00654 long intergenic non-protein coding RNA 654 ncRNA 14 0.001669
-149840 C20orf196 chromosome 20 open reading frame 196 protein-coding 33 0.003934
-149934 NCOR1P1 nuclear receptor corepressor 1 pseudogene 1 pseudo 26 0.0031
-149951 COMMD7 COMM domain containing 7 protein-coding 26 0.0031
-149954 BPIFB4 BPI fold containing family B member 4 protein-coding 96 0.01144
-149986 LSM14B LSM family member 14B protein-coding 48 0.005722
-149998 LIPI lipase I protein-coding 109 0.01299
-150000 ABCC13 ATP binding cassette subfamily C member 13 (pseudogene) pseudo 26 0.0031
-150082 LCA5L LCA5L, lebercilin like protein-coding 68 0.008107
-150084 IGSF5 immunoglobulin superfamily member 5 protein-coding 60 0.007153
-150094 SIK1 salt inducible kinase 1 protein-coding 66 0.007868
-150135 LINC00479 long intergenic non-protein coding RNA 479 ncRNA 14 0.001669
-150142 ZNF295-AS1 ZNF295 antisense RNA 1 ncRNA 20 0.002384
-150147 UMODL1-AS1 UMODL1 antisense RNA 1 ncRNA 9 0.001073
-150159 SLC9B1 solute carrier family 9 member B1 protein-coding 75 0.008941
-150160 CCT8L2 chaperonin containing TCP1 subunit 8 like 2 protein-coding 166 0.01979
-150165 XKR3 XK related 3 protein-coding 61 0.007272
-150197 LINC00896 long intergenic non-protein coding RNA 896 ncRNA 5 0.0005961
-150209 AIFM3 apoptosis inducing factor, mitochondria associated 3 protein-coding 78 0.009299
-150223 YDJC YdjC chitooligosaccharide deacetylase homolog protein-coding 12 0.001431
-150244 ZDHHC8P1 zinc finger DHHC-type containing 8 pseudogene 1 pseudo 42 0.005007
-150248 C22orf15 chromosome 22 open reading frame 15 protein-coding 17 0.002027
-150274 HSCB HscB mitochondrial iron-sulfur cluster cochaperone protein-coding 33 0.003934
-150275 CCDC117 coiled-coil domain containing 117 protein-coding 28 0.003338
-150280 HORMAD2 HORMA domain containing 2 protein-coding 19 0.002265
-150290 DUSP18 dual specificity phosphatase 18 protein-coding 19 0.002265
-150297 C22orf42 chromosome 22 open reading frame 42 protein-coding 45 0.005365
-150350 ENTHD1 ENTH domain containing 1 protein-coding 89 0.01061
-150353 DNAJB7 DnaJ heat shock protein family (Hsp40) member B7 protein-coding 42 0.005007
-150356 CHADL chondroadherin like protein-coding 28 0.003338
-150365 MEI1 meiotic double-stranded break formation protein 1 protein-coding 121 0.01443
-150368 PHETA2 PH domain containing endocytic trafficking adaptor 2 protein-coding 21 0.002504
-150372 NFAM1 NFAT activating protein with ITAM motif 1 protein-coding 26 0.0031
-150379 PNPLA5 patatin like phospholipase domain containing 5 protein-coding 72 0.008584
-150383 CDPF1 cysteine rich DPF motif domain containing 1 protein-coding 15 0.001788
-150465 TTL tubulin tyrosine ligase protein-coding 35 0.004173
-150468 CKAP2L cytoskeleton associated protein 2 like protein-coding 71 0.008464
-150472 CBWD2 COBW domain containing 2 protein-coding 30 0.003577
-150483 TEKT4 tektin 4 protein-coding 64 0.00763
-150572 SMYD1 SET and MYND domain containing 1 protein-coding 95 0.01133
-150677 OTOS otospiralin protein-coding 21 0.002504
-150678 COPS9 COP9 signalosome subunit 9 protein-coding 40 0.004769
-150681 OR6B3 olfactory receptor family 6 subfamily B member 3 protein-coding 49 0.005842
-150684 COMMD1 copper metabolism domain containing 1 protein-coding 18 0.002146
-150696 PROM2 prominin 2 protein-coding 84 0.01001
-150709 ANKAR ankyrin and armadillo repeat containing protein-coding 153 0.01824
-150726 FBXO41 F-box protein 41 protein-coding 66 0.007868
-150737 TTC30B tetratricopeptide repeat domain 30B protein-coding 73 0.008703
-150759 LINC00342 long intergenic non-protein coding RNA 342 ncRNA 1 0.0001192
-150763 GPAT2 glycerol-3-phosphate acyltransferase 2, mitochondrial protein-coding 65 0.007749
-150771 ITPRIPL1 ITPRIP like 1 protein-coding 63 0.007511
-150864 FAM117B family with sequence similarity 117 member B protein-coding 55 0.006557
-150921 TCF23 transcription factor 23 protein-coding 40 0.004769
-150946 GAREM2 GRB2 associated regulator of MAPK1 subtype 2 protein-coding 39 0.004649
-150962 PUS10 pseudouridylate synthase 10 protein-coding 51 0.00608
-151009 LINC01106 long intergenic non-protein coding RNA 1106 ncRNA 3 0.0003577
-151011 SEPT10 septin 10 protein-coding 42 0.005007
-151050 KANSL1L KAT8 regulatory NSL complex subunit 1 like protein-coding 117 0.01395
-151056 PLB1 phospholipase B1 protein-coding 148 0.01764
-151112 ZSWIM2 zinc finger SWIM-type containing 2 protein-coding 125 0.0149
-151126 ZNF385B zinc finger protein 385B protein-coding 80 0.009537
-151176 ERFE erythroferrone protein-coding 5 0.0005961
-151188 ARL6IP6 ADP ribosylation factor like GTPase 6 interacting protein 6 protein-coding 33 0.003934
-151194 METTL21A methyltransferase like 21A protein-coding 26 0.0031
-151195 CCNYL1 cyclin Y like 1 protein-coding 25 0.00298
-151230 KLHL23 kelch like family member 23 protein-coding 74 0.008822
-151242 PPP1R1C protein phosphatase 1 regulatory inhibitor subunit 1C protein-coding 12 0.001431
-151246 SGO2 shugoshin 2 protein-coding 146 0.01741
-151254 C2CD6 C2 calcium dependent domain containing 6 protein-coding 110 0.01311
-151258 SLC38A11 solute carrier family 38 member 11 protein-coding 57 0.006795
-151278 CCDC140 coiled-coil domain containing 140 protein-coding 26 0.0031
-151295 SLC23A3 solute carrier family 23 member 3 protein-coding 61 0.007272
-151306 GPBAR1 G protein-coupled bile acid receptor 1 protein-coding 22 0.002623
-151313 FAHD2B fumarylacetoacetate hydrolase domain containing 2B protein-coding 52 0.006199
-151354 FAM84A family with sequence similarity 84 member A protein-coding 32 0.003815
-151393 RMDN2 regulator of microtubule dynamics 2 protein-coding 68 0.008107
-151449 GDF7 growth differentiation factor 7 protein-coding 31 0.003696
-151473 SLC16A14 solute carrier family 16 member 14 protein-coding 78 0.009299
-151477 LINC00471 long intergenic non-protein coding RNA 471 ncRNA 29 0.003457
-151507 MSL3P1 MSL complex subunit 3 pseudogene 1 pseudo 67 0.007988
-151516 ASPRV1 aspartic peptidase retroviral like 1 protein-coding 58 0.006915
-151525 WDSUB1 WD repeat, sterile alpha motif and U-box domain containing 1 protein-coding 54 0.006438
-151531 UPP2 uridine phosphorylase 2 protein-coding 51 0.00608
-151556 GPR155 G protein-coupled receptor 155 protein-coding 90 0.01073
-151613 TTC14 tetratricopeptide repeat domain 14 protein-coding 126 0.01502
-151636 DTX3L deltex E3 ubiquitin ligase 3L protein-coding 63 0.007511
-151647 FAM19A4 family with sequence similarity 19 member A4, C-C motif chemokine like protein-coding 34 0.004053
-151648 SGO1 shugoshin 1 protein-coding 74 0.008822
-151649 PP2D1 protein phosphatase 2C like domain containing 1 protein-coding 15 0.001788
-151651 EFHB EF-hand domain family member B protein-coding 123 0.01466
-151742 PPM1L protein phosphatase, Mg2+/Mn2+ dependent 1L protein-coding 61 0.007272
-151790 WDR49 WD repeat domain 49 protein-coding 170 0.02027
-151827 LRRC34 leucine rich repeat containing 34 protein-coding 41 0.004888
-151835 CPNE9 copine family member 9 protein-coding 65 0.007749
-151871 DPPA2 developmental pluripotency associated 2 protein-coding 79 0.009418
-151887 CCDC80 coiled-coil domain containing 80 protein-coding 135 0.01609
-151888 BTLA B and T lymphocyte associated protein-coding 29 0.003457
-151903 CCDC12 coiled-coil domain containing 12 protein-coding 11 0.001311
-151963 MB21D2 Mab-21 domain containing 2 protein-coding 100 0.01192
-151987 PPP4R2 protein phosphatase 4 regulatory subunit 2 protein-coding 43 0.005126
-152002 XXYLT1 xyloside xylosyltransferase 1 protein-coding 43 0.005126
-152006 RNF38 ring finger protein 38 protein-coding 55 0.006557
-152007 GLIPR2 GLI pathogenesis related 2 protein-coding 19 0.002265
-152015 ROPN1B rhophilin associated tail protein 1B protein-coding 36 0.004292
-152024 LINC00691 long intergenic non-protein coding RNA 691 ncRNA 10 0.001192
-152065 C3orf22 chromosome 3 open reading frame 22 protein-coding 28 0.003338
-152078 PQLC2L PQ loop repeat containing 2 like protein-coding 14 0.001669
-152098 ZCWPW2 zinc finger CW-type and PWWP domain containing 2 protein-coding 66 0.007868
-152100 CMC1 C-X9-C motif containing 1 protein-coding 15 0.001788
-152110 NEK10 NIMA related kinase 10 protein-coding 155 0.01848
-152118 C3orf79 chromosome 3 open reading frame 79 protein-coding 15 0.001788
-152137 CCDC50 coiled-coil domain containing 50 protein-coding 74 0.008822
-152138 PYDC2 pyrin domain containing 2 protein-coding 22 0.002623
-152185 SPICE1 spindle and centriole associated protein 1 protein-coding 98 0.01168
-152189 CMTM8 CKLF like MARVEL transmembrane domain containing 8 protein-coding 24 0.002861
-152195 NUDT16P1 nudix hydrolase 16 pseudogene 1 pseudo 19 0.002265
-152206 CCDC13 coiled-coil domain containing 13 protein-coding 94 0.01121
-152273 FGD5 FYVE, RhoGEF and PH domain containing 5 protein-coding 174 0.02074
-152330 CNTN4 contactin 4 protein-coding 195 0.02325
-152404 IGSF11 immunoglobulin superfamily member 11 protein-coding 85 0.01013
-152405 C3orf30 chromosome 3 open reading frame 30 protein-coding 75 0.008941
-152485 ZNF827 zinc finger protein 827 protein-coding 122 0.01454
-152503 SH3D19 SH3 domain containing 19 protein-coding 93 0.01109
-152518 NFXL1 nuclear transcription factor, X-box binding like 1 protein-coding 87 0.01037
-152519 NIPAL1 NIPA like domain containing 1 protein-coding 35 0.004173
-152559 PAQR3 progestin and adipoQ receptor family member 3 protein-coding 33 0.003934
-152573 SHISA3 shisa family member 3 protein-coding 33 0.003934
-152579 SCFD2 sec1 family domain containing 2 protein-coding 77 0.00918
-152687 ZNF595 zinc finger protein 595 protein-coding 65 0.007749
-152756 FAM218A family with sequence similarity 218 member A protein-coding 18 0.002146
-152789 JAKMIP1 janus kinase and microtubule interacting protein 1 protein-coding 158 0.01884
-152815 THAP6 THAP domain containing 6 protein-coding 39 0.004649
-152816 ODAPH odontogenesis associated phosphoprotein protein-coding 33 0.003934
-152831 KLB klotho beta protein-coding 117 0.01395
-152877 FAM53A family with sequence similarity 53 member A protein-coding 25 0.00298
-152926 PPM1K protein phosphatase, Mg2+/Mn2+ dependent 1K protein-coding 55 0.006557
-152940 C4orf45 chromosome 4 open reading frame 45 protein-coding 27 0.003219
-152992 TRMT44 tRNA methyltransferase 44 homolog protein-coding 48 0.005722
-153020 RASGEF1B RasGEF domain family member 1B protein-coding 63 0.007511
-153090 DAB2IP DAB2 interacting protein protein-coding 95 0.01133
-153129 SLC38A9 solute carrier family 38 member 9 protein-coding 53 0.006319
-153201 SLC36A2 solute carrier family 36 member 2 protein-coding 65 0.007749
-153218 SPINK13 serine peptidase inhibitor, Kazal type 13 (putative) protein-coding 22 0.002623
-153222 CREBRF CREB3 regulatory factor protein-coding 65 0.007749
-153241 CEP120 centrosomal protein 120 protein-coding 96 0.01144
-153328 SLC25A48 solute carrier family 25 member 48 protein-coding 25 0.00298
-153339 TMEM167A transmembrane protein 167A protein-coding 11 0.001311
-153364 MBLAC2 metallo-beta-lactamase domain containing 2 protein-coding 28 0.003338
-153396 TMEM161B transmembrane protein 161B protein-coding 63 0.007511
-153443 SRFBP1 serum response factor binding protein 1 protein-coding 91 0.01085
-153478 PLEKHG4B pleckstrin homology and RhoGEF domain containing G4B protein-coding 181 0.02158
-153527 ZMAT2 zinc finger matrin-type 2 protein-coding 20 0.002384
-153562 MARVELD2 MARVEL domain containing 2 protein-coding 57 0.006795
-153571 C5orf38 chromosome 5 open reading frame 38 protein-coding 36 0.004292
-153572 IRX2 iroquois homeobox 2 protein-coding 86 0.01025
-153579 BTNL9 butyrophilin like 9 protein-coding 54 0.006438
-153642 ARSK arylsulfatase family member K protein-coding 66 0.007868
-153643 FAM81B family with sequence similarity 81 member B protein-coding 74 0.008822
-153657 TTC23L tetratricopeptide repeat domain 23 like protein-coding 49 0.005842
-153733 CCDC112 coiled-coil domain containing 112 protein-coding 57 0.006795
-153745 FAM71B family with sequence similarity 71 member B protein-coding 156 0.0186
-153768 PRELID2 PRELI domain containing 2 protein-coding 21 0.002504
-153769 SH3RF2 SH3 domain containing ring finger 2 protein-coding 81 0.009657
-153770 PLAC8L1 PLAC8 like 1 protein-coding 17 0.002027
-153830 RNF145 ring finger protein 145 protein-coding 84 0.01001
-153918 ZC2HC1B zinc finger C2HC-type containing 1B protein-coding 13 0.00155
-154007 SNRNP48 small nuclear ribonucleoprotein U11/U12 subunit 48 protein-coding 41 0.004888
-154043 CNKSR3 CNKSR family member 3 protein-coding 222 0.02647
-154064 RAET1L retinoic acid early transcript 1L protein-coding 32 0.003815
-154075 SAMD3 sterile alpha motif domain containing 3 protein-coding 101 0.01204
-154091 SLC2A12 solute carrier family 2 member 12 protein-coding 62 0.007392
-154092 LINC01010 long intergenic non-protein coding RNA 1010 ncRNA 10 0.001192
-154141 MBOAT1 membrane bound O-acyltransferase domain containing 1 protein-coding 68 0.008107
-154150 HDGFL1 HDGF like 1 protein-coding 46 0.005484
-154197 PNLDC1 PARN like, ribonuclease domain containing 1 protein-coding 84 0.01001
-154214 RNF217 ring finger protein 217 protein-coding 40 0.004769
-154215 NKAIN2 sodium/potassium transporting ATPase interacting 2 protein-coding 43 0.005126
-154288 KHDC3L KH domain containing 3 like, subcortical maternal complex member protein-coding 49 0.005842
-154386 LINC01600 long intergenic non-protein coding RNA 1600 ncRNA 17 0.002027
-154442 BVES-AS1 BVES antisense RNA 1 ncRNA 3 0.0003577
-154467 CCDC167 coiled-coil domain containing 167 protein-coding 12 0.001431
-154661 RUNDC3B RUN domain containing 3B protein-coding 92 0.01097
-154664 ABCA13 ATP binding cassette subfamily A member 13 protein-coding 581 0.06927
-154743 BMT2 base methyltransferase of 25S rRNA 2 homolog protein-coding 73 0.008703
-154754 PRSS3P2 PRSS3 pseudogene 2 pseudo 58 0.006915
-154790 CLEC2L C-type lectin domain family 2 member L protein-coding 14 0.001669
-154791 FMC1 formation of mitochondrial complex V assembly factor 1 homolog protein-coding 2 0.0002384
-154796 AMOT angiomotin protein-coding 161 0.01919
-154807 VKORC1L1 vitamin K epoxide reductase complex subunit 1 like 1 protein-coding 18 0.002146
-154810 AMOTL1 angiomotin like 1 protein-coding 113 0.01347
-154865 IQUB IQ motif and ubiquitin domain containing protein-coding 129 0.01538
-154881 KCTD7 potassium channel tetramerization domain containing 7 protein-coding 80 0.009537
-154907 C7orf66 chromosome 7 open reading frame 66 protein-coding 32 0.003815
-155006 TMEM213 transmembrane protein 213 protein-coding 14 0.001669
-155038 GIMAP8 GTPase, IMAP family member 8 protein-coding 136 0.01621
-155051 CRYGN crystallin gamma N protein-coding 20 0.002384
-155054 ZNF425 zinc finger protein 425 protein-coding 113 0.01347
-155061 ZNF746 zinc finger protein 746 protein-coding 78 0.009299
-155066 ATP6V0E2 ATPase H+ transporting V0 subunit e2 protein-coding 16 0.001907
-155184 SLC2A7 solute carrier family 2 member 7 protein-coding 52 0.006199
-155185 AMZ1 archaelysin family metallopeptidase 1 protein-coding 61 0.007272
-155368 METTL27 methyltransferase like 27 protein-coding 37 0.004411
-155382 VPS37D VPS37D, ESCRT-I subunit protein-coding 14 0.001669
-155435 RBM33 RNA binding motif protein 33 protein-coding 108 0.01288
-155465 AGR3 anterior gradient 3, protein disulphide isomerase family member protein-coding 29 0.003457
-157285 PRAG1 PEAK1 related, kinase-activating pseudokinase 1 protein-coding 149 0.01776
-157310 PEBP4 phosphatidylethanolamine binding protein 4 protein-coding 21 0.002504
-157313 CDCA2 cell division cycle associated 2 protein-coding 109 0.01299
-157378 TMEM65 transmembrane protein 65 protein-coding 22 0.002623
-157506 RDH10 retinol dehydrogenase 10 protein-coding 32 0.003815
-157556 BAALC-AS2 BAALC antisense RNA 2 ncRNA 5 0.0005961
-157567 ANKRD46 ankyrin repeat domain 46 protein-coding 25 0.00298
-157570 ESCO2 establishment of sister chromatid cohesion N-acetyltransferase 2 protein-coding 69 0.008226
-157574 FBXO16 F-box protein 16 protein-coding 39 0.004649
-157627 LINC00599 long intergenic non-protein coding RNA 599 ncRNA 1 0.0001192
-157638 FAM84B family with sequence similarity 84 member B protein-coding 25 0.00298
-157657 C8orf37 chromosome 8 open reading frame 37 protein-coding 27 0.003219
-157680 VPS13B vacuolar protein sorting 13 homolog B protein-coding 423 0.05043
-157693 FAM87A family with sequence similarity 87 member A ncRNA 20 0.002384
-157695 TDRP testis development related protein protein-coding 27 0.003219
-157697 ERICH1 glutamate rich 1 protein-coding 76 0.009061
-157724 SLC7A13 solute carrier family 7 member 13 protein-coding 103 0.01228
-157739 TDH L-threonine dehydrogenase (pseudogene) pseudo 14 0.001669
-157753 TMEM74 transmembrane protein 74 protein-coding 70 0.008345
-157769 FAM91A1 family with sequence similarity 91 member A1 protein-coding 111 0.01323
-157773 C8orf48 chromosome 8 open reading frame 48 protein-coding 29 0.003457
-157777 MCMDC2 minichromosome maintenance domain containing 2 protein-coding 77 0.00918
-157807 CLVS1 clavesin 1 protein-coding 82 0.009776
-157848 NKX6-3 NK6 homeobox 3 protein-coding 15 0.001788
-157855 KCNU1 potassium calcium-activated channel subfamily U member 1 protein-coding 202 0.02408
-157869 SBSPON somatomedin B and thrombospondin type 1 domain containing protein-coding 30 0.003577
-157922 CAMSAP1 calmodulin regulated spectrin associated protein 1 protein-coding 151 0.018
-157927 C9orf62 chromosome 9 open reading frame 62 protein-coding 13 0.00155
-157983 C9orf66 chromosome 9 open reading frame 66 protein-coding 21 0.002504
-158035 LINC00032 long intergenic non-protein coding RNA 32 ncRNA 6 0.0007153
-158038 LINGO2 leucine rich repeat and Ig domain containing 2 protein-coding 154 0.01836
-158046 NXNL2 nucleoredoxin like 2 protein-coding 17 0.002027
-158055 C9orf163 chromosome 9 open reading frame 163 protein-coding 15 0.001788
-158056 MAMDC4 MAM domain containing 4 protein-coding 84 0.01001
-158062 LCN6 lipocalin 6 protein-coding 20 0.002384
-158067 AK8 adenylate kinase 8 protein-coding 61 0.007272
-158131 OR1Q1 olfactory receptor family 1 subfamily Q member 1 protein-coding 55 0.006557
-158135 TTLL11 tubulin tyrosine ligase like 11 protein-coding 62 0.007392
-158158 RASEF RAS and EF-hand domain containing protein-coding 94 0.01121
-158160 HSD17B7P2 hydroxysteroid 17-beta dehydrogenase 7 pseudogene 2 pseudo 109 0.01299
-158219 TTC39B tetratricopeptide repeat domain 39B protein-coding 52 0.006199
-158234 TRMT10B tRNA methyltransferase 10B protein-coding 41 0.004888
-158248 TTC16 tetratricopeptide repeat domain 16 protein-coding 94 0.01121
-158293 FAM120AOS family with sequence similarity 120A opposite strand protein-coding 11 0.001311
-158297 SAXO1 stabilizer of axonemal microtubules 1 protein-coding 63 0.007511
-158326 FREM1 FRAS1 related extracellular matrix 1 protein-coding 260 0.031
-158358 KIAA2026 KIAA2026 protein-coding 174 0.02074
-158381 ATP8B5P ATPase phospholipid transporting 8B5, pseudogene pseudo 61 0.007272
-158399 ZNF483 zinc finger protein 483 protein-coding 103 0.01228
-158401 C9orf84 chromosome 9 open reading frame 84 protein-coding 140 0.01669
-158405 KIAA1958 KIAA1958 protein-coding 78 0.009299
-158427 TSTD2 thiosulfate sulfurtransferase like domain containing 2 protein-coding 46 0.005484
-158431 ZNF782 zinc finger protein 782 protein-coding 84 0.01001
-158471 PRUNE2 prune homolog 2 protein-coding 347 0.04137
-158506 CBLL2 Cbl proto-oncogene like 2 protein-coding 87 0.01037
-158511 CSAG1 chondrosarcoma associated gene 1 protein-coding 21 0.002504
-158521 FMR1NB FMR1 neighbor protein-coding 71 0.008464
-158584 FAAH2 fatty acid amide hydrolase 2 protein-coding 74 0.008822
-158586 ZXDB zinc finger, X-linked, duplicated B protein-coding 82 0.009776
-158724 FAM47A family with sequence similarity 47 member A protein-coding 262 0.03124
-158747 MOSPD2 motile sperm domain containing 2 protein-coding 61 0.007272
-158763 ARHGAP36 Rho GTPase activating protein 36 protein-coding 158 0.01884
-158787 RIBC1 RIB43A domain with coiled-coils 1 protein-coding 38 0.00453
-158798 AKAP14 A-kinase anchoring protein 14 protein-coding 32 0.003815
-158800 RHOXF1 Rhox homeobox family member 1 protein-coding 33 0.003934
-158801 NKAPP1 NFKB activating protein pseudogene 1 pseudo 6 0.0007153
-158809 MAGEB6 MAGE family member B6 protein-coding 130 0.0155
-158830 CXorf65 chromosome X open reading frame 65 protein-coding 35 0.004173
-158833 AWAT1 acyl-CoA wax alcohol acyltransferase 1 protein-coding 42 0.005007
-158835 AWAT2 acyl-CoA wax alcohol acyltransferase 2 protein-coding 46 0.005484
-158866 ZDHHC15 zinc finger DHHC-type containing 15 protein-coding 69 0.008226
-158880 USP51 ubiquitin specific peptidase 51 protein-coding 99 0.0118
-158931 TCEAL6 transcription elongation factor A like 6 protein-coding 55 0.006557
-158983 H2BFWT H2B histone family member W, testis specific protein-coding 47 0.005603
-159013 CXorf38 chromosome X open reading frame 38 protein-coding 37 0.004411
-159090 FAM122B family with sequence similarity 122B protein-coding 25 0.00298
-159091 FAM122C family with sequence similarity 122C protein-coding 27 0.003219
-159125 RBMY2EP RNA binding motif protein, Y-linked, family 2, member E pseudogene pseudo 10 0.001192
-159162 RBMY2FP RNA binding motif protein, Y-linked, family 2, member F pseudogene pseudo 7 0.0008345
-159163 RBMY1F RNA binding motif protein, Y-linked, family 1, member F protein-coding 3 0.0003577
-159195 USP54 ubiquitin specific peptidase 54 protein-coding 137 0.01633
-159296 NKX2-3 NK2 homeobox 3 protein-coding 24 0.002861
-159371 SLC35G1 solute carrier family 35 member G1 protein-coding 30 0.003577
-159686 CFAP58 cilia and flagella associated protein 58 protein-coding 132 0.01574
-159963 SLC5A12 solute carrier family 5 member 12 protein-coding 105 0.01252
-159989 DEUP1 deuterosome assembly protein 1 protein-coding 90 0.01073
-160065 PATE1 prostate and testis expressed 1 protein-coding 32 0.003815
-160140 C11orf65 chromosome 11 open reading frame 65 protein-coding 38 0.00453
-160287 LDHAL6A lactate dehydrogenase A like 6A protein-coding 38 0.00453
-160298 C11orf42 chromosome 11 open reading frame 42 protein-coding 39 0.004649
-160335 TMTC2 transmembrane and tetratricopeptide repeat containing 2 protein-coding 130 0.0155
-160364 CLEC12A C-type lectin domain family 12 member A protein-coding 57 0.006795
-160365 CLECL1 C-type lectin like 1 protein-coding 19 0.002265
-160418 TMTC3 transmembrane and tetratricopeptide repeat containing 3 protein-coding 115 0.01371
-160419 C12orf50 chromosome 12 open reading frame 50 protein-coding 93 0.01109
-160428 ALDH1L2 aldehyde dehydrogenase 1 family member L2 protein-coding 97 0.01156
-160492 LMNTD1 lamin tail domain containing 1 protein-coding 67 0.007988
-160518 DENND5B DENN domain containing 5B protein-coding 142 0.01693
-160622 GRASP general receptor for phosphoinositides 1 associated scaffold protein protein-coding 24 0.002861
-160728 SLC5A8 solute carrier family 5 member 8 protein-coding 113 0.01347
-160760 PPTC7 PTC7 protein phosphatase homolog protein-coding 31 0.003696
-160762 CCDC63 coiled-coil domain containing 63 protein-coding 96 0.01144
-160777 CCDC60 coiled-coil domain containing 60 protein-coding 105 0.01252
-160851 DGKH diacylglycerol kinase eta protein-coding 109 0.01299
-160857 CCDC122 coiled-coil domain containing 122 protein-coding 32 0.003815
-160897 GPR180 G protein-coupled receptor 180 protein-coding 39 0.004649
-161003 STOML3 stomatin like 3 protein-coding 53 0.006319
-161142 FAM71D family with sequence similarity 71 member D protein-coding 39 0.004649
-161145 TMEM229B transmembrane protein 229B protein-coding 21 0.002504
-161176 SYNE3 spectrin repeat containing nuclear envelope family member 3 protein-coding 133 0.01586
-161198 CLEC14A C-type lectin domain containing 14A protein-coding 111 0.01323
-161247 FITM1 fat storage inducing transmembrane protein 1 protein-coding 28 0.003338
-161253 REM2 RRAD and GEM like GTPase 2 protein-coding 32 0.003815
-161291 TMEM30B transmembrane protein 30B protein-coding 16 0.001907
-161357 MDGA2 MAM domain containing glycosylphosphatidylinositol anchor 2 protein-coding 255 0.0304
-161394 SAMD15 sterile alpha motif domain containing 15 protein-coding 85 0.01013
-161424 NOP9 NOP9 nucleolar protein protein-coding 58 0.006915
-161436 EML5 echinoderm microtubule associated protein like 5 protein-coding 196 0.02337
-161497 STRC stereocilin protein-coding 77 0.00918
-161502 CFAP161 cilia and flagella associated protein 161 protein-coding 42 0.005007
-161514 TBC1D21 TBC1 domain family member 21 protein-coding 48 0.005722
-161582 DNAAF4 dynein axonemal assembly factor 4 protein-coding 72 0.008584
-161635 CSNK1A1P1 casein kinase 1 alpha 1 pseudogene 1 pseudo 47 0.005603
-161725 OTUD7A OTU deubiquitinase 7A protein-coding 101 0.01204
-161742 SPRED1 sprouty related EVH1 domain containing 1 protein-coding 86 0.01025
-161753 ODF3L1 outer dense fiber of sperm tails 3 like 1 protein-coding 31 0.003696
-161779 PGBD4 piggyBac transposable element derived 4 protein-coding 70 0.008345
-161823 ADAL adenosine deaminase like protein-coding 37 0.004411
-161829 EXD1 exonuclease 3'-5' domain containing 1 protein-coding 66 0.007868
-161835 FSIP1 fibrous sheath interacting protein 1 protein-coding 75 0.008941
-161882 ZFPM1 zinc finger protein, FOG family member 1 protein-coding 115 0.01371
-161931 ADAD2 adenosine deaminase domain containing 2 protein-coding 67 0.007988
-162073 ITPRIPL2 ITPRIP like 2 protein-coding 50 0.005961
-162083 C16orf82 chromosome 16 open reading frame 82 protein-coding 68 0.008107
-162239 ZFP1 ZFP1 zinc finger protein protein-coding 38 0.00453
-162282 ANKFN1 ankyrin repeat and fibronectin type III domain containing 1 protein-coding 131 0.01562
-162333 MARCH10 membrane associated ring-CH-type finger 10 protein-coding 104 0.0124
-162387 MFSD6L major facilitator superfamily domain containing 6 like protein-coding 59 0.007034
-162394 SLFN5 schlafen family member 5 protein-coding 105 0.01252
-162417 NAGS N-acetylglutamate synthase protein-coding 28 0.003338
-162427 RETREG3 reticulophagy regulator family member 3 protein-coding 46 0.005484
-162461 TMEM92 transmembrane protein 92 protein-coding 23 0.002742
-162466 PHOSPHO1 phosphoethanolamine/phosphocholine phosphatase protein-coding 22 0.002623
-162494 RHBDL3 rhomboid like 3 protein-coding 53 0.006319
-162514 TRPV3 transient receptor potential cation channel subfamily V member 3 protein-coding 104 0.0124
-162515 SLC16A11 solute carrier family 16 member 11 protein-coding 30 0.003577
-162517 FBXO39 F-box protein 39 protein-coding 43 0.005126
-162540 SPPL2C signal peptide peptidase like 2C protein-coding 84 0.01001
-162605 KRT28 keratin 28 protein-coding 82 0.009776
-162655 ZNF519 zinc finger protein 519 protein-coding 60 0.007153
-162681 C18orf54 chromosome 18 open reading frame 54 protein-coding 44 0.005246
-162699 ELOA3 elongin A3 protein-coding 62 0.007392
-162962 ZNF836 zinc finger protein 836 protein-coding 121 0.01443
-162963 ZNF610 zinc finger protein 610 protein-coding 74 0.008822
-162966 ZNF600 zinc finger protein 600 protein-coding 104 0.0124
-162967 ZNF320 zinc finger protein 320 protein-coding 87 0.01037
-162968 ZNF497 zinc finger protein 497 protein-coding 47 0.005603
-162972 ZNF550 zinc finger protein 550 protein-coding 43 0.005126
-162979 ZNF296 zinc finger protein 296 protein-coding 42 0.005007
-162989 DEDD2 death effector domain containing 2 protein-coding 37 0.004411
-162993 ZNF846 zinc finger protein 846 protein-coding 67 0.007988
-162998 OR7D2 olfactory receptor family 7 subfamily D member 2 protein-coding 64 0.00763
-163033 ZNF579 zinc finger protein 579 protein-coding 30 0.003577
-163049 ZNF791 zinc finger protein 791 protein-coding 81 0.009657
-163050 ZNF564 zinc finger protein 564 protein-coding 72 0.008584
-163051 ZNF709 zinc finger protein 709 protein-coding 96 0.01144
-163059 ZNF433 zinc finger protein 433 protein-coding 78 0.009299
-163071 ZNF114 zinc finger protein 114 protein-coding 43 0.005126
-163081 ZNF567 zinc finger protein 567 protein-coding 93 0.01109
-163087 ZNF383 zinc finger protein 383 protein-coding 80 0.009537
-163115 ZNF781 zinc finger protein 781 protein-coding 65 0.007749
-163126 EID2 EP300 interacting inhibitor of differentiation 2 protein-coding 17 0.002027
-163131 ZNF780B zinc finger protein 780B protein-coding 113 0.01347
-163154 PRR22 proline rich 22 protein-coding 35 0.004173
-163175 LGI4 leucine rich repeat LGI family member 4 protein-coding 56 0.006676
-163183 SYNE4 spectrin repeat containing nuclear envelope family member 4 protein-coding 35 0.004173
-163223 ZNF676 zinc finger protein 676 protein-coding 192 0.02289
-163227 ZNF100 zinc finger protein 100 protein-coding 77 0.00918
-163255 ZNF540 zinc finger protein 540 protein-coding 111 0.01323
-163259 DENND2C DENN domain containing 2C protein-coding 134 0.01598
-163351 GBP6 guanylate binding protein family member 6 protein-coding 93 0.01109
-163404 PLPPR5 phospholipid phosphatase related 5 protein-coding 86 0.01025
-163479 FNDC7 fibronectin type III domain containing 7 protein-coding 75 0.008941
-163486 DENND1B DENN domain containing 1B protein-coding 47 0.005603
-163589 TDRD5 tudor domain containing 5 protein-coding 175 0.02086
-163590 TOR1AIP2 torsin 1A interacting protein 2 protein-coding 67 0.007988
-163688 CALML6 calmodulin like 6 protein-coding 20 0.002384
-163702 IFNLR1 interferon lambda receptor 1 protein-coding 51 0.00608
-163720 CYP4Z2P cytochrome P450 family 4 subfamily Z member 2, pseudogene pseudo 70 0.008345
-163742 SLC25A3P1 solute carrier family 25 member 3 pseudogene 1 pseudo 24 0.002861
-163747 LEXM lymphocyte expansion molecule protein-coding 59 0.007034
-163778 SPRR4 small proline rich protein 4 protein-coding 17 0.002027
-163782 KANK4 KN motif and ankyrin repeat domains 4 protein-coding 143 0.01705
-163786 SASS6 SAS-6 centriolar assembly protein protein-coding 72 0.008584
-163859 SDE2 SDE2 telomere maintenance homolog protein-coding 55 0.006557
-163882 CNST consortin, connexin sorting protein protein-coding 106 0.01264
-163933 FAM43B family with sequence similarity 43 member B protein-coding 13 0.00155
-164045 HFM1 HFM1, ATP dependent DNA helicase homolog protein-coding 234 0.0279
-164091 PAQR7 progestin and adipoQ receptor family member 7 protein-coding 32 0.003815
-164118 TTC24 tetratricopeptide repeat domain 24 protein-coding 46 0.005484
-164127 CCDC185 coiled-coil domain containing 185 protein-coding 71 0.008464
-164153 UBL4B ubiquitin like 4B protein-coding 12 0.001431
-164237 WFDC13 WAP four-disulfide core domain 13 protein-coding 6 0.0007153
-164284 APCDD1L APC down-regulated 1 like protein-coding 53 0.006319
-164312 LRRN4 leucine rich repeat neuronal 4 protein-coding 66 0.007868
-164380 CST13P cystatin 13, pseudogene pseudo 7 0.0008345
-164395 TTLL9 tubulin tyrosine ligase like 9 protein-coding 70 0.008345
-164592 CCDC116 coiled-coil domain containing 116 protein-coding 74 0.008822
-164633 CABP7 calcium binding protein 7 protein-coding 16 0.001907
-164656 TMPRSS6 transmembrane serine protease 6 protein-coding 96 0.01144
-164668 APOBEC3H apolipoprotein B mRNA editing enzyme catalytic subunit 3H protein-coding 28 0.003338
-164684 WBP2NL WBP2 N-terminal like protein-coding 40 0.004769
-164714 TTLL8 tubulin tyrosine ligase like 8 protein-coding 63 0.007511
-164781 DAW1 dynein assembly factor with WD repeats 1 protein-coding 62 0.007392
-164832 LONRF2 LON peptidase N-terminal domain and ring finger 2 protein-coding 80 0.009537
-165055 CCDC138 coiled-coil domain containing 138 protein-coding 78 0.009299
-165082 ADGRF3 adhesion G protein-coupled receptor F3 protein-coding 77 0.00918
-165100 TEX44 testis expressed 44 protein-coding 34 0.004053
-165140 OXER1 oxoeicosanoid receptor 1 protein-coding 47 0.005603
-165186 TOGARAM2 TOG array regulator of axonemal microtubules 2 protein-coding 137 0.01633
-165215 FAM171B family with sequence similarity 171 member B protein-coding 125 0.0149
-165257 C1QL2 complement C1q like 2 protein-coding 29 0.003457
-165324 UBXN2A UBX domain protein 2A protein-coding 32 0.003815
-165530 CLEC4F C-type lectin domain family 4 member F protein-coding 94 0.01121
-165545 DQX1 DEAQ-box RNA dependent ATPase 1 protein-coding 74 0.008822
-165631 PARP15 poly(ADP-ribose) polymerase family member 15 protein-coding 77 0.00918
-165679 SPTSSB serine palmitoyltransferase small subunit B protein-coding 19 0.002265
-165721 DNAJB8 DnaJ heat shock protein family (Hsp40) member B8 protein-coding 49 0.005842
-165829 GPR156 G protein-coupled receptor 156 protein-coding 107 0.01276
-165904 XIRP1 xin actin binding repeat containing 1 protein-coding 192 0.02289
-165918 RNF168 ring finger protein 168 protein-coding 73 0.008703
-166012 CHST13 carbohydrate sulfotransferase 13 protein-coding 43 0.005126
-166336 PRICKLE2 prickle planar cell polarity protein 2 protein-coding 120 0.01431
-166348 KBTBD12 kelch repeat and BTB domain containing 12 protein-coding 71 0.008464
-166378 SPATA5 spermatogenesis associated 5 protein-coding 101 0.01204
-166379 BBS12 Bardet-Biedl syndrome 12 protein-coding 81 0.009657
-166614 DCLK2 doublecortin like kinase 2 protein-coding 89 0.01061
-166647 ADGRA3 adhesion G protein-coupled receptor A3 protein-coding 151 0.018
-166655 TRIM60 tripartite motif containing 60 protein-coding 81 0.009657
-166785 MMAA methylmalonic aciduria (cobalamin deficiency) cblA type protein-coding 52 0.006199
-166793 ZBTB49 zinc finger and BTB domain containing 49 protein-coding 84 0.01001
-166815 TIGD2 tigger transposable element derived 2 protein-coding 68 0.008107
-166824 RASSF6 Ras association domain family member 6 protein-coding 45 0.005365
-166863 RBM46 RNA binding motif protein 46 protein-coding 85 0.01013
-166929 SGMS2 sphingomyelin synthase 2 protein-coding 44 0.005246
-166968 MIER3 MIER family member 3 protein-coding 43 0.005126
-166979 CDC20B cell division cycle 20B protein-coding 93 0.01109
-167127 UGT3A2 UDP glycosyltransferase family 3 member A2 protein-coding 116 0.01383
-167153 PAPD4 poly(A) RNA polymerase D4, non-canonical protein-coding 68 0.008107
-167227 DCP2 decapping mRNA 2 protein-coding 49 0.005842
-167359 NIM1K NIM1 serine/threonine protein kinase protein-coding 62 0.007392
-167410 LIX1 limb and CNS expressed 1 protein-coding 34 0.004053
-167465 ZNF366 zinc finger protein 366 protein-coding 123 0.01466
-167555 FAM151B family with sequence similarity 151 member B protein-coding 36 0.004292
-167681 PRSS35 serine protease 35 protein-coding 83 0.009895
-167691 LCA5 LCA5, lebercilin protein-coding 96 0.01144
-167826 OLIG3 oligodendrocyte transcription factor 3 protein-coding 41 0.004888
-167838 TXLNB taxilin beta protein-coding 114 0.01359
-168002 DACT2 dishevelled binding antagonist of beta catenin 2 protein-coding 41 0.004888
-168090 C6orf118 chromosome 6 open reading frame 118 protein-coding 150 0.01788
-168374 ZNF92 zinc finger protein 92 protein-coding 68 0.008107
-168391 GALNTL5 polypeptide N-acetylgalactosaminyltransferase like 5 protein-coding 173 0.02062
-168400 DDX53 DEAD-box helicase 53 protein-coding 84 0.01001
-168417 ZNF679 zinc finger protein 679 protein-coding 126 0.01502
-168433 RNF133 ring finger protein 133 protein-coding 65 0.007749
-168451 THAP5 THAP domain containing 5 protein-coding 53 0.006319
-168455 CCDC71L coiled-coil domain containing 71 like protein-coding 5 0.0005961
-168507 PKD1L1 polycystin 1 like 1, transient receptor potential channel interacting protein-coding 303 0.03612
-168537 GIMAP7 GTPase, IMAP family member 7 protein-coding 67 0.007988
-168544 ZNF467 zinc finger protein 467 protein-coding 70 0.008345
-168620 BHLHA15 basic helix-loop-helix family member a15 protein-coding 11 0.001311
-168667 BMPER BMP binding endothelial regulator protein-coding 134 0.01598
-168850 ZNF800 zinc finger protein 800 protein-coding 124 0.01478
-168975 CNBD1 cyclic nucleotide binding domain containing 1 protein-coding 138 0.01645
-169026 SLC30A8 solute carrier family 30 member 8 protein-coding 87 0.01037
-169044 COL22A1 collagen type XXII alpha 1 chain protein-coding 409 0.04876
-169166 SNX31 sorting nexin 31 protein-coding 60 0.007153
-169200 TMEM64 transmembrane protein 64 protein-coding 36 0.004292
-169270 ZNF596 zinc finger protein 596 protein-coding 57 0.006795
-169355 IDO2 indoleamine 2,3-dioxygenase 2 protein-coding 63 0.007511
-169436 STKLD1 serine/threonine kinase like domain containing 1 protein-coding 85 0.01013
-169522 KCNV2 potassium voltage-gated channel modifier subfamily V member 2 protein-coding 100 0.01192
-169611 OLFML2A olfactomedin like 2A protein-coding 84 0.01001
-169693 TMEM252 transmembrane protein 252 protein-coding 35 0.004173
-169714 QSOX2 quiescin sulfhydryl oxidase 2 protein-coding 74 0.008822
-169792 GLIS3 GLIS family zinc finger 3 protein-coding 119 0.01419
-169834 ZNF883 zinc finger protein 883 protein-coding 79 0.009418
-169841 ZNF169 zinc finger protein 169 protein-coding 71 0.008464
-169966 FAM46D family with sequence similarity 46 member D protein-coding 100 0.01192
-169981 SPIN3 spindlin family member 3 protein-coding 39 0.004649
-170062 FAM47B family with sequence similarity 47 member B protein-coding 218 0.02599
-170082 TCEANC transcription elongation factor A N-terminal and central domain containing protein-coding 32 0.003815
-170261 ZCCHC12 zinc finger CCHC-type containing 12 protein-coding 80 0.009537
-170302 ARX aristaless related homeobox protein-coding 29 0.003457
-170370 FAM170B family with sequence similarity 170 member B protein-coding 32 0.003815
-170371 TMEM273 transmembrane protein 273 protein-coding 22 0.002623
-170384 FUT11 fucosyltransferase 11 protein-coding 24 0.002861
-170392 OIT3 oncoprotein induced transcript 3 protein-coding 67 0.007988
-170393 C10orf91 chromosome 10 open reading frame 91 (putative) ncRNA 25 0.00298
-170394 PWWP2B PWWP domain containing 2B protein-coding 58 0.006915
-170463 SSBP4 single stranded DNA binding protein 4 protein-coding 35 0.004173
-170482 CLEC4C C-type lectin domain family 4 member C protein-coding 53 0.006319
-170487 ACTL10 actin like 10 protein-coding 17 0.002027
-170506 DHX36 DEAH-box helicase 36 protein-coding 126 0.01502
-170572 HTR3C 5-hydroxytryptamine receptor 3C protein-coding 71 0.008464
-170575 GIMAP1 GTPase, IMAP family member 1 protein-coding 74 0.008822
-170589 GPHA2 glycoprotein hormone alpha 2 protein-coding 14 0.001669
-170591 S100Z S100 calcium binding protein Z protein-coding 21 0.002504
-170622 COMMD6 COMM domain containing 6 protein-coding 12 0.001431
-170626 XAGE3 X antigen family member 3 protein-coding 12 0.001431
-170627 XAGE5 X antigen family member 5 protein-coding 31 0.003696
-170679 PSORS1C1 psoriasis susceptibility 1 candidate 1 protein-coding 21 0.002504
-170680 PSORS1C2 psoriasis susceptibility 1 candidate 2 protein-coding 12 0.001431
-170685 NUDT10 nudix hydrolase 10 protein-coding 29 0.003457
-170689 ADAMTS15 ADAM metallopeptidase with thrombospondin type 1 motif 15 protein-coding 108 0.01288
-170690 ADAMTS16 ADAM metallopeptidase with thrombospondin type 1 motif 16 protein-coding 312 0.0372
-170691 ADAMTS17 ADAM metallopeptidase with thrombospondin type 1 motif 17 protein-coding 140 0.01669
-170692 ADAMTS18 ADAM metallopeptidase with thrombospondin type 1 motif 18 protein-coding 246 0.02933
-170712 COX7B2 cytochrome c oxidase subunit 7B2 protein-coding 23 0.002742
-170825 GSX2 GS homeobox 2 protein-coding 44 0.005246
-170850 KCNG3 potassium voltage-gated channel modifier subfamily G member 3 protein-coding 38 0.00453
-170954 PPP1R18 protein phosphatase 1 regulatory subunit 18 protein-coding 51 0.00608
-170958 ZNF525 zinc finger protein 525 protein-coding 82 0.009776
-170959 ZNF431 zinc finger protein 431 protein-coding 78 0.009299
-170960 ZNF721 zinc finger protein 721 protein-coding 124 0.01478
-170961 ANKRD24 ankyrin repeat domain 24 protein-coding 83 0.009895
-171017 ZNF384 zinc finger protein 384 protein-coding 61 0.007272
-171019 ADAMTS19 ADAM metallopeptidase with thrombospondin type 1 motif 19 protein-coding 211 0.02515
-171023 ASXL1 additional sex combs like 1, transcriptional regulator protein-coding 205 0.02444
-171024 SYNPO2 synaptopodin 2 protein-coding 180 0.02146
-171169 SPACA4 sperm acrosome associated 4 protein-coding 17 0.002027
-171177 RHOV ras homolog family member V protein-coding 18 0.002146
-171389 NLRP6 NLR family pyrin domain containing 6 protein-coding 157 0.01872
-171392 ZNF675 zinc finger protein 675 protein-coding 106 0.01264
-171425 CLYBL citrate lyase beta like protein-coding 44 0.005246
-171482 FAM9A family with sequence similarity 9 member A protein-coding 83 0.009895
-171483 FAM9B family with sequence similarity 9 member B protein-coding 43 0.005126
-171484 FAM9C family with sequence similarity 9 member C protein-coding 27 0.003219
-171546 SPTSSA serine palmitoyltransferase small subunit A protein-coding 8 0.0009537
-171558 PTCRA pre T cell antigen receptor alpha protein-coding 30 0.003577
-171568 POLR3H RNA polymerase III subunit H protein-coding 23 0.002742
-171586 ABHD3 abhydrolase domain containing 3 protein-coding 36 0.004292
-192111 PGAM5 PGAM family member 5, mitochondrial serine/threonine protein phosphatase protein-coding 31 0.003696
-192134 B3GNT6 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 6 protein-coding 35 0.004173
-192286 HIGD2A HIG1 hypoxia inducible domain family member 2A protein-coding 13 0.00155
-192666 KRT24 keratin 24 protein-coding 69 0.008226
-192668 CYS1 cystin 1 protein-coding 6 0.0007153
-192669 AGO3 argonaute 3, RISC catalytic component protein-coding 95 0.01133
-192670 AGO4 argonaute 4, RISC catalytic component protein-coding 99 0.0118
-192683 SCAMP5 secretory carrier membrane protein 5 protein-coding 30 0.003577
-193629 LINC00189 long intergenic non-protein coding RNA 189 ncRNA 3 0.0003577
-195814 SDR16C5 short chain dehydrogenase/reductase family 16C member 5 protein-coding 53 0.006319
-195827 AAED1 AhpC/TSA antioxidant enzyme domain containing 1 protein-coding 13 0.00155
-195828 ZNF367 zinc finger protein 367 protein-coding 43 0.005126
-195977 ANTXRL anthrax toxin receptor like protein-coding 18 0.002146
-196051 PLPP4 phospholipid phosphatase 4 protein-coding 40 0.004769
-196074 METTL15 methyltransferase like 15 protein-coding 48 0.005722
-196264 MPZL3 myelin protein zero like 3 protein-coding 26 0.0031
-196294 IMMP1L inner mitochondrial membrane peptidase subunit 1 protein-coding 18 0.002146
-196335 OR56B4 olfactory receptor family 56 subfamily B member 4 protein-coding 55 0.006557
-196374 KRT78 keratin 78 protein-coding 63 0.007511
-196383 RILPL2 Rab interacting lysosomal protein like 2 protein-coding 17 0.002027
-196385 DNAH10 dynein axonemal heavy chain 10 protein-coding 429 0.05114
-196394 AMN1 antagonist of mitotic exit network 1 homolog protein-coding 25 0.00298
-196403 DTX3 deltex E3 ubiquitin ligase 3 protein-coding 57 0.006795
-196410 METTL7B methyltransferase like 7B protein-coding 23 0.002742
-196415 C12orf77 chromosome 12 open reading frame 77 protein-coding 21 0.002504
-196441 ZFC3H1 zinc finger C3H1-type containing protein-coding 198 0.02361
-196446 MYRFL myelin regulatory factor like protein-coding 7 0.0008345
-196463 PLBD2 phospholipase B domain containing 2 protein-coding 52 0.006199
-196472 FAM71C family with sequence similarity 71 member C protein-coding 42 0.005007
-196475 RMST rhabdomyosarcoma 2 associated transcript (non-protein coding) ncRNA 1 0.0001192
-196477 CCER1 coiled-coil glutamate rich protein 1 protein-coding 95 0.01133
-196483 EEF2KMT eukaryotic elongation factor 2 lysine methyltransferase protein-coding 35 0.004173
-196500 PIANP PILR alpha associated neural protein protein-coding 28 0.003338
-196513 DCP1B decapping mRNA 1B protein-coding 66 0.007868
-196527 ANO6 anoctamin 6 protein-coding 117 0.01395
-196528 ARID2 AT-rich interaction domain 2 protein-coding 302 0.036
-196541 METTL21C methyltransferase like 21C protein-coding 50 0.005961
-196549 EEF1DP3 eukaryotic translation elongation factor 1 delta pseudogene 3 pseudo 60 0.007153
-196740 VSTM4 V-set and transmembrane domain containing 4 protein-coding 64 0.00763
-196743 PAOX polyamine oxidase protein-coding 56 0.006676
-196792 FAM24B family with sequence similarity 24 member B protein-coding 11 0.001311
-196883 ADCY4 adenylate cyclase 4 protein-coding 110 0.01311
-196913 LINC01599 long intergenic non-protein coding RNA 1599 ncRNA 31 0.003696
-196951 FAM227B family with sequence similarity 227 member B protein-coding 87 0.01037
-196968 DNM1P46 dynamin 1 pseudogene 46 pseudo 50 0.005961
-196993 CT62 cancer/testis antigen 62 protein-coding 13 0.00155
-196996 GRAMD2A GRAM domain containing 2A protein-coding 36 0.004292
-197021 LCTL lactase like protein-coding 69 0.008226
-197131 UBR1 ubiquitin protein ligase E3 component n-recognin 1 protein-coding 144 0.01717
-197135 PATL2 PAT1 homolog 2 protein-coding 29 0.003457
-197257 LDHD lactate dehydrogenase D protein-coding 102 0.01216
-197258 FUK fucokinase protein-coding 86 0.01025
-197259 MLKL mixed lineage kinase domain like pseudokinase protein-coding 55 0.006557
-197320 ZNF778 zinc finger protein 778 protein-coding 75 0.008941
-197322 ACSF3 acyl-CoA synthetase family member 3 protein-coding 67 0.007988
-197331 TUBB8P7 tubulin beta 8 class VIII pseudogene 7 pseudo 91 0.01085
-197335 WDR90 WD repeat domain 90 protein-coding 147 0.01753
-197342 EME2 essential meiotic structure-specific endonuclease subunit 2 protein-coding 27 0.003219
-197350 CASP16P caspase 16, pseudogene pseudo 8 0.0009537
-197358 NLRC3 NLR family CARD domain containing 3 protein-coding 113 0.01347
-197370 NSMCE1 NSE1 homolog, SMC5-SMC6 complex component protein-coding 38 0.00453
-197407 ZNF48 zinc finger protein 48 protein-coding 72 0.008584
-198437 LKAAEAR1 LKAAEAR motif containing 1 protein-coding 4 0.0004769
-199221 DZIP1L DAZ interacting zinc finger protein 1 like protein-coding 109 0.01299
-199223 TTC21A tetratricopeptide repeat domain 21A protein-coding 134 0.01598
-199675 MCEMP1 mast cell expressed membrane protein 1 protein-coding 14 0.001669
-199692 ZNF627 zinc finger protein 627 protein-coding 56 0.006676
-199699 DAND5 DAN domain BMP antagonist family member 5 protein-coding 26 0.0031
-199704 ZNF585A zinc finger protein 585A protein-coding 109 0.01299
-199713 NLRP7 NLR family pyrin domain containing 7 protein-coding 207 0.02468
-199720 GGN gametogenetin protein-coding 72 0.008584
-199731 CADM4 cell adhesion molecule 4 protein-coding 48 0.005722
-199745 THAP8 THAP domain containing 8 protein-coding 20 0.002384
-199746 U2AF1L4 U2 small nuclear RNA auxiliary factor 1 like 4 protein-coding 20 0.002384
-199777 ZNF626 zinc finger protein 626 protein-coding 108 0.01288
-199786 FAM129C family with sequence similarity 129 member C protein-coding 65 0.007749
-199800 ADM5 adrenomedullin 5 (putative) protein-coding 8 0.0009537
-199834 LCE4A late cornified envelope 4A protein-coding 21 0.002504
-199857 ALG14 ALG14, UDP-N-acetylglucosaminyltransferase subunit protein-coding 24 0.002861
-199870 FAM76A family with sequence similarity 76 member A protein-coding 22 0.002623
-199920 FYB2 FYN binding protein 2 protein-coding 109 0.01299
-199953 TMEM201 transmembrane protein 201 protein-coding 50 0.005961
-199964 TMEM61 transmembrane protein 61 protein-coding 33 0.003934
-199974 CYP4Z1 cytochrome P450 family 4 subfamily Z member 1 protein-coding 80 0.009537
-199990 FAAP20 Fanconi anemia core complex associated protein 20 protein-coding 14 0.001669
-200008 CDCP2 CUB domain containing protein 2 protein-coding 55 0.006557
-200010 SLC5A9 solute carrier family 5 member 9 protein-coding 100 0.01192
-200014 CC2D1B coiled-coil and C2 domain containing 1B protein-coding 72 0.008584
-200030 NBPF11 NBPF member 11 protein-coding 16 0.001907
-200035 NUDT17 nudix hydrolase 17 protein-coding 27 0.003219
-200081 TXLNA taxilin alpha protein-coding 49 0.005842
-200132 TCTEX1D1 Tctex1 domain containing 1 protein-coding 40 0.004769
-200150 PLD5 phospholipase D family member 5 protein-coding 122 0.01454
-200159 C1orf100 chromosome 1 open reading frame 100 protein-coding 25 0.00298
-200162 SPAG17 sperm associated antigen 17 protein-coding 312 0.0372
-200172 SLFNL1 schlafen like 1 protein-coding 42 0.005007
-200185 KRTCAP2 keratinocyte associated protein 2 protein-coding 9 0.001073
-200186 CRTC2 CREB regulated transcription coactivator 2 protein-coding 66 0.007868
-200197 TMEM51-AS1 TMEM51 antisense RNA 1 ncRNA 3 0.0003577
-200205 IBA57 IBA57, iron-sulfur cluster assembly protein-coding 38 0.00453
-200232 FAM209A family with sequence similarity 209 member A protein-coding 33 0.003934
-200312 RNF215 ring finger protein 215 protein-coding 35 0.004173
-200315 APOBEC3A apolipoprotein B mRNA editing enzyme catalytic subunit 3A protein-coding 16 0.001907
-200316 APOBEC3F apolipoprotein B mRNA editing enzyme catalytic subunit 3F protein-coding 45 0.005365
-200350 FOXD4L1 forkhead box D4 like 1 protein-coding 51 0.00608
-200373 CFAP221 cilia and flagella associated protein 221 protein-coding 85 0.01013
-200403 VWA3B von Willebrand factor A domain containing 3B protein-coding 193 0.02301
-200407 CREG2 cellular repressor of E1A stimulated genes 2 protein-coding 17 0.002027
-200420 ALMS1P1 ALMS1, centrosome and basal body associated protein pseudogene 1 pseudo 55 0.006557
-200424 TET3 tet methylcytosine dioxygenase 3 protein-coding 172 0.02051
-200504 GKN2 gastrokine 2 protein-coding 23 0.002742
-200523 TEX37 testis expressed 37 protein-coding 35 0.004173
-200539 ANKRD23 ankyrin repeat domain 23 protein-coding 43 0.005126
-200558 APLF aprataxin and PNKP like factor protein-coding 64 0.00763
-200576 PIKFYVE phosphoinositide kinase, FYVE-type zinc finger containing protein-coding 199 0.02372
-200634 KRTCAP3 keratinocyte associated protein 3 protein-coding 24 0.002861
-200728 TMEM17 transmembrane protein 17 protein-coding 14 0.001669
-200734 SPRED2 sprouty related EVH1 domain containing 2 protein-coding 68 0.008107
-200765 TIGD1 tigger transposable element derived 1 protein-coding 15 0.001788
-200810 ALG1L ALG1, chitobiosyldiphosphodolichol beta-mannosyltransferase like protein-coding 14 0.001669
-200844 C3orf67 chromosome 3 open reading frame 67 protein-coding 62 0.007392
-200845 KCTD6 potassium channel tetramerization domain containing 6 protein-coding 27 0.003219
-200879 LIPH lipase H protein-coding 66 0.007868
-200894 ARL13B ADP ribosylation factor like GTPase 13B protein-coding 67 0.007988
-200895 DHFR2 dihydrofolate reductase 2 protein-coding 35 0.004173
-200909 HTR3D 5-hydroxytryptamine receptor 3D protein-coding 46 0.005484
-200916 RPL22L1 ribosomal protein L22 like 1 protein-coding 19 0.002265
-200931 SLC51A solute carrier family 51 alpha subunit protein-coding 32 0.003815
-200933 FBXO45 F-box protein 45 protein-coding 31 0.003696
-200942 KLHDC8B kelch domain containing 8B protein-coding 46 0.005484
-200958 MUC20 mucin 20, cell surface associated protein-coding 64 0.00763
-200959 GABRR3 gamma-aminobutyric acid type A receptor rho3 subunit (gene/pseudogene) protein-coding 59 0.007034
-201134 CEP112 centrosomal protein 112 protein-coding 114 0.01359
-201140 DHRS7C dehydrogenase/reductase 7C protein-coding 65 0.007749
-201158 TVP23C trans-golgi network vesicle protein 23 homolog C protein-coding 21 0.002504
-201161 CENPV centromere protein V protein-coding 18 0.002146
-201163 FLCN folliculin protein-coding 65 0.007749
-201164 PLD6 phospholipase D family member 6 protein-coding 22 0.002623
-201176 ARHGAP27 Rho GTPase activating protein 27 protein-coding 71 0.008464
-201181 ZNF385C zinc finger protein 385C protein-coding 19 0.002265
-201191 SAMD14 sterile alpha motif domain containing 14 protein-coding 53 0.006319
-201229 LYRM9 LYR motif containing 9 protein-coding 4 0.0004769
-201232 SLC16A13 solute carrier family 16 member 13 protein-coding 41 0.004888
-201243 SPEM2 SPEM family member 2 protein-coding 72 0.008584
-201254 CENPX centromere protein X protein-coding 6 0.0007153
-201255 LRRC45 leucine rich repeat containing 45 protein-coding 56 0.006676
-201266 SLC39A11 solute carrier family 39 member 11 protein-coding 39 0.004649
-201283 AMZ2P1 archaelysin family metallopeptidase 2 pseudogene 1 pseudo 42 0.005007
-201292 TRIM65 tripartite motif containing 65 protein-coding 40 0.004769
-201294 UNC13D unc-13 homolog D protein-coding 130 0.0155
-201299 RDM1 RAD52 motif containing 1 protein-coding 25 0.00298
-201305 SPNS3 sphingolipid transporter 3 (putative) protein-coding 62 0.007392
-201456 FBXO15 F-box protein 15 protein-coding 77 0.00918
-201475 RAB12 RAB12, member RAS oncogene family protein-coding 29 0.003457
-201501 ZBTB7C zinc finger and BTB domain containing 7C protein-coding 80 0.009537
-201514 ZNF584 zinc finger protein 584 protein-coding 40 0.004769
-201516 ZSCAN4 zinc finger and SCAN domain containing 4 protein-coding 86 0.01025
-201562 HACD2 3-hydroxyacyl-CoA dehydratase 2 protein-coding 19 0.002265
-201595 STT3B STT3B, catalytic subunit of the oligosaccharyltransferase complex protein-coding 55 0.006557
-201625 DNAH12 dynein axonemal heavy chain 12 protein-coding 140 0.01669
-201626 PDE12 phosphodiesterase 12 protein-coding 52 0.006199
-201627 DENND6A DENN domain containing 6A protein-coding 69 0.008226
-201633 TIGIT T cell immunoreceptor with Ig and ITIM domains protein-coding 52 0.006199
-201725 C4orf46 chromosome 4 open reading frame 46 protein-coding 13 0.00155
-201780 SLC10A4 solute carrier family 10 member 4 protein-coding 46 0.005484
-201798 TIGD4 tigger transposable element derived 4 protein-coding 67 0.007988
-201799 TMEM154 transmembrane protein 154 protein-coding 22 0.002623
-201895 SMIM14 small integral membrane protein 14 protein-coding 6 0.0007153
-201931 TMEM192 transmembrane protein 192 protein-coding 33 0.003934
-201965 RWDD4 RWD domain containing 4 protein-coding 17 0.002027
-201973 PRIMPOL primase and DNA directed polymerase protein-coding 52 0.006199
-202018 TAPT1 transmembrane anterior posterior transformation 1 protein-coding 47 0.005603
-202020 TAPT1-AS1 TAPT1 antisense RNA 1 (head to head) ncRNA 22 0.002623
-202051 SPATA24 spermatogenesis associated 24 protein-coding 7 0.0008345
-202052 DNAJC18 DnaJ heat shock protein family (Hsp40) member C18 protein-coding 39 0.004649
-202134 FAM153B family with sequence similarity 153 member B protein-coding 42 0.005007
-202151 RANBP3L RAN binding protein 3 like protein-coding 74 0.008822
-202243 CCDC125 coiled-coil domain containing 125 protein-coding 64 0.00763
-202299 LINC01554 long intergenic non-protein coding RNA 1554 ncRNA 4 0.0004769
-202309 GAPT GRB2 binding adaptor protein, transmembrane protein-coding 31 0.003696
-202333 CMYA5 cardiomyopathy associated 5 protein-coding 350 0.04173
-202374 STK32A serine/threonine kinase 32A protein-coding 43 0.005126
-202459 OSTCP1 oligosaccharyltransferase complex subunit pseudogene 1 pseudo 29 0.003457
-202500 TCTE1 t-complex-associated-testis-expressed 1 protein-coding 79 0.009418
-202559 KHDRBS2 KH RNA binding domain containing, signal transduction associated 2 protein-coding 127 0.01514
-202658 TRIM39-RPP21 TRIM39-RPP21 readthrough protein-coding 4 0.0004769
-202865 C7orf33 chromosome 7 open reading frame 33 protein-coding 39 0.004649
-202915 TMEM184A transmembrane protein 184A protein-coding 54 0.006438
-203054 ADCK5 aarF domain containing kinase 5 protein-coding 52 0.006199
-203062 TSNARE1 t-SNARE domain containing 1 protein-coding 77 0.00918
-203068 TUBB tubulin beta class I protein-coding 95 0.01133
-203069 R3HCC1 R3H domain and coiled-coil containing 1 protein-coding 20 0.002384
-203074 PRSS55 serine protease 55 protein-coding 57 0.006795
-203076 C8orf74 chromosome 8 open reading frame 74 protein-coding 46 0.005484
-203100 HTRA4 HtrA serine peptidase 4 protein-coding 55 0.006557
-203102 ADAM32 ADAM metallopeptidase domain 32 protein-coding 100 0.01192
-203111 ERICH5 glutamate rich 5 protein-coding 45 0.005365
-203190 LGI3 leucine rich repeat LGI family member 3 protein-coding 70 0.008345
-203197 TMEM268 transmembrane protein 268 protein-coding 30 0.003577
-203228 C9orf72 chromosome 9 open reading frame 72 protein-coding 52 0.006199
-203238 CCDC171 coiled-coil domain containing 171 protein-coding 142 0.01693
-203245 NAIF1 nuclear apoptosis inducing factor 1 protein-coding 46 0.005484
-203259 FAM219A family with sequence similarity 219 member A protein-coding 22 0.002623
-203260 CCDC107 coiled-coil domain containing 107 protein-coding 20 0.002384
-203286 ANKS6 ankyrin repeat and sterile alpha motif domain containing 6 protein-coding 82 0.009776
-203328 SUSD3 sushi domain containing 3 protein-coding 30 0.003577
-203413 CT83 cancer/testis antigen 83 protein-coding 15 0.001788
-203427 SLC25A43 solute carrier family 25 member 43 protein-coding 29 0.003457
-203430 RTL3 retrotransposon Gag like 3 protein-coding 124 0.01478
-203447 NRK Nik related kinase protein-coding 230 0.02742
-203522 INTS6L integrator complex subunit 6 like protein-coding 116 0.01383
-203523 ZNF449 zinc finger protein 449 protein-coding 71 0.008464
-203547 VMA21 VMA21, vacuolar ATPase assembly factor protein-coding 14 0.001669
-203562 TMEM31 transmembrane protein 31 protein-coding 29 0.003457
-203569 PAGE2 PAGE family member 2 protein-coding 22 0.002623
-203859 ANO5 anoctamin 5 protein-coding 187 0.02229
-204010 RPSAP52 ribosomal protein SA pseudogene 52 pseudo 49 0.005842
-204219 CERS3 ceramide synthase 3 protein-coding 73 0.008703
-204474 PDILT protein disulfide isomerase like, testis expressed protein-coding 119 0.01419
-204801 NLRP11 NLR family pyrin domain containing 11 protein-coding 156 0.0186
-204851 HIPK1 homeodomain interacting protein kinase 1 protein-coding 122 0.01454
-204962 SLC44A5 solute carrier family 44 member 5 protein-coding 155 0.01848
-205147 AMER3 APC membrane recruitment protein 3 protein-coding 195 0.02325
-205251 SMIM37 small integral membrane protein 37 protein-coding 3 0.0003577
-205327 C2orf69 chromosome 2 open reading frame 69 protein-coding 28 0.003338
-205428 C3orf58 chromosome 3 open reading frame 58 protein-coding 52 0.006199
-205564 SENP5 SUMO specific peptidase 5 protein-coding 79 0.009418
-205717 USF3 upstream transcription factor family member 3 protein-coding 220 0.02623
-205860 TRIML2 tripartite motif family like 2 protein-coding 127 0.01514
-206338 LVRN laeverin protein-coding 154 0.01836
-206358 SLC36A1 solute carrier family 36 member 1 protein-coding 60 0.007153
-206412 C6orf163 chromosome 6 open reading frame 163 protein-coding 18 0.002146
-207063 DHRSX dehydrogenase/reductase X-linked protein-coding 48 0.005722
-219285 SAMD9L sterile alpha motif domain containing 9 like protein-coding 226 0.02694
-219287 AMER2 APC membrane recruitment protein 2 protein-coding 100 0.01192
-219293 ATAD3C ATPase family, AAA domain containing 3C protein-coding 46 0.005484
-219333 USP12 ubiquitin specific peptidase 12 protein-coding 66 0.007868
-219348 PLAC9 placenta specific 9 protein-coding 11 0.001311
-219402 MTIF3 mitochondrial translational initiation factor 3 protein-coding 33 0.003934
-219409 GSX1 GS homeobox 1 protein-coding 26 0.0031
-219417 OR8U1 olfactory receptor family 8 subfamily U member 1 protein-coding 110 0.01311
-219428 OR4C16 olfactory receptor family 4 subfamily C member 16 (gene/pseudogene) protein-coding 126 0.01502
-219429 OR4C11 olfactory receptor family 4 subfamily C member 11 protein-coding 89 0.01061
-219431 OR4S2 olfactory receptor family 4 subfamily S member 2 protein-coding 104 0.0124
-219432 OR4C6 olfactory receptor family 4 subfamily C member 6 protein-coding 143 0.01705
-219436 OR5D14 olfactory receptor family 5 subfamily D member 14 protein-coding 132 0.01574
-219437 OR5L1 olfactory receptor family 5 subfamily L member 1 (gene/pseudogene) protein-coding 125 0.0149
-219438 OR5D18 olfactory receptor family 5 subfamily D member 18 protein-coding 136 0.01621
-219447 OR5AS1 olfactory receptor family 5 subfamily AS member 1 protein-coding 120 0.01431
-219453 OR8K5 olfactory receptor family 8 subfamily K member 5 protein-coding 107 0.01276
-219464 OR5T2 olfactory receptor family 5 subfamily T member 2 protein-coding 124 0.01478
-219469 OR8H1 olfactory receptor family 8 subfamily H member 1 protein-coding 106 0.01264
-219473 OR8K3 olfactory receptor family 8 subfamily K member 3 (gene/pseudogene) protein-coding 111 0.01323
-219477 OR8J1 olfactory receptor family 8 subfamily J member 1 protein-coding 95 0.01133
-219479 OR5R1 olfactory receptor family 5 subfamily R member 1 (gene/pseudogene) protein-coding 91 0.01085
-219482 OR5M3 olfactory receptor family 5 subfamily M member 3 protein-coding 108 0.01288
-219484 OR5M8 olfactory receptor family 5 subfamily M member 8 protein-coding 100 0.01192
-219487 OR5M11 olfactory receptor family 5 subfamily M member 11 protein-coding 73 0.008703
-219493 OR5AR1 olfactory receptor family 5 subfamily AR member 1 (gene/pseudogene) protein-coding 84 0.01001
-219527 LRRC55 leucine rich repeat containing 55 protein-coding 56 0.006676
-219537 SMTNL1 smoothelin like 1 protein-coding 59 0.007034
-219539 YPEL4 yippee like 4 protein-coding 12 0.001431
-219541 MED19 mediator complex subunit 19 protein-coding 12 0.001431
-219557 TEX47 testis expressed 47 protein-coding 82 0.009776
-219578 ZNF804B zinc finger protein 804B protein-coding 348 0.04149
-219595 FOLH1B folate hydrolase 1B protein-coding 155 0.01848
-219621 CABCOCO1 ciliary associated calcium binding coiled-coil 1 protein-coding 26 0.0031
-219623 TMEM26 transmembrane protein 26 protein-coding 58 0.006915
-219654 ZCCHC24 zinc finger CCHC-type containing 24 protein-coding 19 0.002265
-219670 ENKUR enkurin, TRPC channel interacting protein protein-coding 52 0.006199
-219681 ARMC3 armadillo repeat containing 3 protein-coding 138 0.01645
-219699 UNC5B unc-5 netrin receptor B protein-coding 126 0.01502
-219736 STOX1 storkhead box 1 protein-coding 91 0.01085
-219738 FAM241B family with sequence similarity 241 member B protein-coding 23 0.002742
-219743 TYSND1 trypsin domain containing 1 protein-coding 26 0.0031
-219749 ZNF25 zinc finger protein 25 protein-coding 67 0.007988
-219770 GJD4 gap junction protein delta 4 protein-coding 43 0.005126
-219771 CCNY cyclin Y protein-coding 35 0.004173
-219790 RTKN2 rhotekin 2 protein-coding 70 0.008345
-219793 TBATA thymus, brain and testes associated protein-coding 51 0.00608
-219833 C11orf45 chromosome 11 open reading frame 45 protein-coding 16 0.001907
-219844 HYLS1 HYLS1, centriolar and ciliogenesis associated protein-coding 27 0.003219
-219854 TMEM218 transmembrane protein 218 protein-coding 12 0.001431
-219855 SLC37A2 solute carrier family 37 member 2 protein-coding 48 0.005722
-219858 OR8B12 olfactory receptor family 8 subfamily B member 12 protein-coding 57 0.006795
-219865 OR8G5 olfactory receptor family 8 subfamily G member 5 protein-coding 81 0.009657
-219869 OR10G8 olfactory receptor family 10 subfamily G member 8 protein-coding 118 0.01407
-219870 OR10G9 olfactory receptor family 10 subfamily G member 9 protein-coding 77 0.00918
-219873 OR10S1 olfactory receptor family 10 subfamily S member 1 protein-coding 90 0.01073
-219874 OR6T1 olfactory receptor family 6 subfamily T member 1 protein-coding 94 0.01121
-219875 OR4D5 olfactory receptor family 4 subfamily D member 5 protein-coding 102 0.01216
-219899 TBCEL tubulin folding cofactor E like protein-coding 50 0.005961
-219902 TMEM136 transmembrane protein 136 protein-coding 18 0.002146
-219927 MRPL21 mitochondrial ribosomal protein L21 protein-coding 18 0.002146
-219931 TPCN2 two pore segment channel 2 protein-coding 56 0.006676
-219938 SPATA19 spermatogenesis associated 19 protein-coding 42 0.005007
-219952 OR6Q1 olfactory receptor family 6 subfamily Q member 1 (gene/pseudogene) protein-coding 62 0.007392
-219954 OR9I1 olfactory receptor family 9 subfamily I member 1 protein-coding 53 0.006319
-219956 OR9Q1 olfactory receptor family 9 subfamily Q member 1 protein-coding 55 0.006557
-219957 OR9Q2 olfactory receptor family 9 subfamily Q member 2 protein-coding 72 0.008584
-219958 OR1S2 olfactory receptor family 1 subfamily S member 2 protein-coding 73 0.008703
-219959 OR1S1 olfactory receptor family 1 subfamily S member 1 (gene/pseudogene) protein-coding 77 0.00918
-219960 OR10Q1 olfactory receptor family 10 subfamily Q member 1 protein-coding 99 0.0118
-219965 OR5B17 olfactory receptor family 5 subfamily B member 17 protein-coding 69 0.008226
-219968 OR5B21 olfactory receptor family 5 subfamily B member 21 protein-coding 57 0.006795
-219970 GLYATL2 glycine-N-acyltransferase like 2 protein-coding 56 0.006676
-219972 MPEG1 macrophage expressed 1 protein-coding 123 0.01466
-219981 OR5A2 olfactory receptor family 5 subfamily A member 2 protein-coding 58 0.006915
-219982 OR5A1 olfactory receptor family 5 subfamily A member 1 protein-coding 82 0.009776
-219983 OR4D6 olfactory receptor family 4 subfamily D member 6 protein-coding 70 0.008345
-219986 OR4D11 olfactory receptor family 4 subfamily D member 11 protein-coding 83 0.009895
-219988 PATL1 PAT1 homolog 1, processing body mRNA decay factor protein-coding 65 0.007749
-219990 OOSP2 oocyte secreted protein 2 protein-coding 31 0.003696
-219995 MS4A15 membrane spanning 4-domains A15 protein-coding 34 0.004053
-220001 VWCE von Willebrand factor C and EGF domains protein-coding 100 0.01192
-220002 CYB561A3 cytochrome b561 family member A3 protein-coding 29 0.003457
-220004 PPP1R32 protein phosphatase 1 regulatory subunit 32 protein-coding 56 0.006676
-220032 GDPD4 glycerophosphodiester phosphodiesterase domain containing 4 protein-coding 71 0.008464
-220042 DDIAS DNA damage induced apoptosis suppressor protein-coding 102 0.01216
-220047 CCDC83 coiled-coil domain containing 83 protein-coding 74 0.008822
-220064 ORAOV1 oral cancer overexpressed 1 protein-coding 23 0.002742
-220074 LRTOMT leucine rich transmembrane and O-methyltransferase domain containing protein-coding 23 0.002742
-220081 ERICH6B glutamate rich 6B protein-coding 55 0.006557
-220082 SPERT spermatid associated protein-coding 71 0.008464
-220107 DLEU7 deleted in lymphocytic leukemia, 7 protein-coding 5 0.0005961
-220108 FAM124A family with sequence similarity 124 member A protein-coding 72 0.008584
-220134 SKA1 spindle and kinetochore associated complex subunit 1 protein-coding 26 0.0031
-220136 CFAP53 cilia and flagella associated protein 53 protein-coding 74 0.008822
-220164 DOK6 docking protein 6 protein-coding 82 0.009776
-220202 ATOH7 atonal bHLH transcription factor 7 protein-coding 8 0.0009537
-220213 OTUD1 OTU deubiquitinase 1 protein-coding 14 0.001669
-220296 HEPACAM hepatic and glial cell adhesion molecule protein-coding 48 0.005722
-220323 OAF out at first homolog protein-coding 31 0.003696
-220359 TIGD3 tigger transposable element derived 3 protein-coding 64 0.00763
-220382 FAM181B family with sequence similarity 181 member B protein-coding 24 0.002861
-220388 CCDC89 coiled-coil domain containing 89 protein-coding 53 0.006319
-220416 LRRC63 leucine rich repeat containing 63 protein-coding 32 0.003815
-220433 RPS4XP16 ribosomal protein S4X pseudogene 16 pseudo 30 0.003577
-220441 RNF152 ring finger protein 152 protein-coding 41 0.004888
-220594 USP32P2 ubiquitin specific peptidase 32 pseudogene 2 pseudo 15 0.001788
-220869 CBWD5 COBW domain containing 5 protein-coding 10 0.001192
-220929 ZNF438 zinc finger protein 438 protein-coding 109 0.01299
-220963 SLC16A9 solute carrier family 16 member 9 protein-coding 58 0.006915
-220965 FAM13C family with sequence similarity 13 member C protein-coding 112 0.01335
-220972 MARCH8 membrane associated ring-CH-type finger 8 protein-coding 40 0.004769
-220979 C10orf25 chromosome 10 open reading frame 25 protein-coding 18 0.002146
-220988 HNRNPA3 heterogeneous nuclear ribonucleoprotein A3 protein-coding 42 0.005007
-220992 ZNF485 zinc finger protein 485 protein-coding 59 0.007034
-221002 RASGEF1A RasGEF domain family member 1A protein-coding 67 0.007988
-221035 REEP3 receptor accessory protein 3 protein-coding 25 0.00298
-221037 JMJD1C jumonji domain containing 1C protein-coding 244 0.02909
-221044 UCMA upper zone of growth plate and cartilage matrix associated protein-coding 49 0.005842
-221060 C10orf111 chromosome 10 open reading frame 111 protein-coding 13 0.00155
-221061 FAM171A1 family with sequence similarity 171 member A1 protein-coding 124 0.01478
-221074 SLC39A12 solute carrier family 39 member 12 protein-coding 184 0.02194
-221078 NSUN6 NOP2/Sun RNA methyltransferase family member 6 protein-coding 64 0.00763
-221079 ARL5B ADP ribosylation factor like GTPase 5B protein-coding 27 0.003219
-221091 LRRN4CL LRRN4 C-terminal like protein-coding 21 0.002504
-221092 HNRNPUL2 heterogeneous nuclear ribonucleoprotein U like 2 protein-coding 75 0.008941
-221120 ALKBH3 alkB homolog 3, alpha-ketoglutaratedependent dioxygenase protein-coding 31 0.003696
-221143 EEF1AKMT1 EEF1A lysine methyltransferase 1 protein-coding 28 0.003338
-221150 SKA3 spindle and kinetochore associated complex subunit 3 protein-coding 57 0.006795
-221154 MICU2 mitochondrial calcium uptake 2 protein-coding 56 0.006676
-221178 SPATA13 spermatogenesis associated 13 protein-coding 77 0.00918
-221184 CPNE2 copine 2 protein-coding 116 0.01383
-221188 ADGRG5 adhesion G protein-coupled receptor G5 protein-coding 58 0.006915
-221191 PRSS54 serine protease 54 protein-coding 48 0.005722
-221223 CES5A carboxylesterase 5A protein-coding 79 0.009418
-221241 LINC00305 long intergenic non-protein coding RNA 305 ncRNA 9 0.001073
-221262 CCDC162P coiled-coil domain containing 162, pseudogene pseudo 22 0.002623
-221264 AK9 adenylate kinase 9 protein-coding 192 0.02289
-221294 NT5DC1 5'-nucleotidase domain containing 1 protein-coding 51 0.00608
-221301 CALHM4 calcium homeostasis modulator family member 4 protein-coding 26 0.0031
-221302 ZUP1 zinc finger containing ubiquitin peptidase 1 protein-coding 62 0.007392
-221303 FAM162B family with sequence similarity 162 member B protein-coding 21 0.002504
-221322 TBC1D32 TBC1 domain family member 32 protein-coding 157 0.01872
-221336 BEND6 BEN domain containing 6 protein-coding 53 0.006319
-221357 GSTA5 glutathione S-transferase alpha 5 protein-coding 37 0.004411
-221391 OPN5 opsin 5 protein-coding 65 0.007749
-221393 ADGRF4 adhesion G protein-coupled receptor F4 protein-coding 115 0.01371
-221395 ADGRF5 adhesion G protein-coupled receptor F5 protein-coding 160 0.01907
-221400 TDRD6 tudor domain containing 6 protein-coding 242 0.02885
-221409 SPATS1 spermatogenesis associated serine rich 1 protein-coding 76 0.009061
-221416 C6orf223 chromosome 6 open reading frame 223 protein-coding 13 0.00155
-221421 RSPH9 radial spoke head 9 homolog protein-coding 37 0.004411
-221424 LRRC73 leucine rich repeat containing 73 protein-coding 27 0.003219
-221442 ADCY10P1 adenylate cyclase 10, soluble pseudogene 1 pseudo 25 0.00298
-221443 OARD1 O-acyl-ADP-ribose deacylase 1 protein-coding 19 0.002265
-221458 KIF6 kinesin family member 6 protein-coding 145 0.01729
-221468 TMEM217 transmembrane protein 217 protein-coding 31 0.003696
-221472 FGD2 FYVE, RhoGEF and PH domain containing 2 protein-coding 80 0.009537
-221476 PI16 peptidase inhibitor 16 protein-coding 56 0.006676
-221477 C6orf89 chromosome 6 open reading frame 89 protein-coding 105 0.01252
-221481 ARMC12 armadillo repeat containing 12 protein-coding 43 0.005126
-221491 SMIM29 small integral membrane protein 29 protein-coding 33 0.003934
-221496 LEMD2 LEM domain containing 2 protein-coding 38 0.00453
-221504 ZBTB9 zinc finger and BTB domain containing 9 protein-coding 54 0.006438
-221527 ZBTB12 zinc finger and BTB domain containing 12 protein-coding 48 0.005722
-221545 C6orf136 chromosome 6 open reading frame 136 protein-coding 32 0.003815
-221613 HIST1H2AA histone cluster 1 H2A family member a protein-coding 32 0.003815
-221656 KDM1B lysine demethylase 1B protein-coding 69 0.008226
-221662 RBM24 RNA binding motif protein 24 protein-coding 28 0.003338
-221687 RNF182 ring finger protein 182 protein-coding 34 0.004053
-221692 PHACTR1 phosphatase and actin regulator 1 protein-coding 103 0.01228
-221710 SMIM13 small integral membrane protein 13 protein-coding 6 0.0007153
-221711 SYCP2L synaptonemal complex protein 2 like protein-coding 127 0.01514
-221718 LINC00518 long intergenic non-protein coding RNA 518 ncRNA 25 0.00298
-221749 PXDC1 PX domain containing 1 protein-coding 22 0.002623
-221785 ZSCAN25 zinc finger and SCAN domain containing 25 protein-coding 53 0.006319
-221786 FAM200A family with sequence similarity 200 member A protein-coding 47 0.005603
-221806 VWDE von Willebrand factor D and EGF domains protein-coding 109 0.01299
-221823 PRPS1L1 phosphoribosyl pyrophosphate synthetase 1-like 1 protein-coding 90 0.01073
-221830 TWISTNB TWIST neighbor protein-coding 48 0.005722
-221833 SP8 Sp8 transcription factor protein-coding 92 0.01097
-221895 JAZF1 JAZF zinc finger 1 protein-coding 29 0.003457
-221908 PPP1R35 protein phosphatase 1 regulatory subunit 35 protein-coding 13 0.00155
-221914 GPC2 glypican 2 protein-coding 57 0.006795
-221927 BRAT1 BRCA1 associated ATM activator 1 protein-coding 73 0.008703
-221935 SDK1 sidekick cell adhesion molecule 1 protein-coding 368 0.04387
-221937 FOXK1 forkhead box K1 protein-coding 85 0.01013
-221938 MMD2 monocyte to macrophage differentiation associated 2 protein-coding 52 0.006199
-221955 DAGLB diacylglycerol lipase beta protein-coding 67 0.007988
-221960 CCZ1B CCZ1 homolog B, vacuolar protein trafficking and biogenesis associated protein-coding 42 0.005007
-221981 THSD7A thrombospondin type 1 domain containing 7A protein-coding 319 0.03803
-222008 VSTM2A V-set and transmembrane domain containing 2A protein-coding 62 0.007392
-222068 TMED4 transmembrane p24 trafficking protein 4 protein-coding 19 0.002265
-222166 MTURN maturin, neural progenitor differentiation regulator homolog protein-coding 17 0.002027
-222171 PRR15 proline rich 15 protein-coding 8 0.0009537
-222183 SRRM3 serine/arginine repetitive matrix 3 protein-coding 30 0.003577
-222194 RSBN1L round spermatid basic protein 1 like protein-coding 74 0.008822
-222223 KIAA1324L KIAA1324 like protein-coding 156 0.0186
-222229 LRWD1 leucine rich repeats and WD repeat domain containing 1 protein-coding 55 0.006557
-222234 FAM185A family with sequence similarity 185 member A protein-coding 13 0.00155
-222235 FBXL13 F-box and leucine rich repeat protein 13 protein-coding 99 0.0118
-222236 NAPEPLD N-acyl phosphatidylethanolamine phospholipase D protein-coding 57 0.006795
-222255 ATXN7L1 ataxin 7 like 1 protein-coding 53 0.006319
-222256 CDHR3 cadherin related family member 3 protein-coding 109 0.01299
-222389 BEND7 BEN domain containing 7 protein-coding 58 0.006915
-222484 LNX2 ligand of numb-protein X 2 protein-coding 69 0.008226
-222487 ADGRG3 adhesion G protein-coupled receptor G3 protein-coding 76 0.009061
-222537 HS3ST5 heparan sulfate-glucosamine 3-sulfotransferase 5 protein-coding 81 0.009657
-222545 GPRC6A G protein-coupled receptor class C group 6 member A protein-coding 144 0.01717
-222546 RFX6 regulatory factor X6 protein-coding 168 0.02003
-222553 SLC35F1 solute carrier family 35 member F1 protein-coding 83 0.009895
-222584 FAM83B family with sequence similarity 83 member B protein-coding 182 0.0217
-222611 ADGRF2 adhesion G protein-coupled receptor F2 protein-coding 83 0.009895
-222642 TSPO2 translocator protein 2 protein-coding 21 0.002504
-222643 UNC5CL unc-5 family C-terminal like protein-coding 55 0.006557
-222658 KCTD20 potassium channel tetramerization domain containing 20 protein-coding 54 0.006438
-222659 PXT1 peroxisomal testis enriched protein 1 protein-coding 16 0.001907
-222662 LHFPL5 LHFPL tetraspan subfamily member 5 protein-coding 41 0.004888
-222663 SCUBE3 signal peptide, CUB domain and EGF like domain containing 3 protein-coding 100 0.01192
-222696 ZSCAN23 zinc finger and SCAN domain containing 23 protein-coding 46 0.005484
-222698 NKAPL NFKB activating protein like protein-coding 100 0.01192
-222826 FAM217A family with sequence similarity 217 member A protein-coding 70 0.008345
-222865 TMEM130 transmembrane protein 130 protein-coding 62 0.007392
-222894 FERD3L Fer3 like bHLH transcription factor protein-coding 76 0.009061
-222950 NYAP1 neuronal tyrosine phosphorylated phosphoinositide-3-kinase adaptor 1 protein-coding 109 0.01299
-222962 SLC29A4 solute carrier family 29 member 4 protein-coding 78 0.009299
-222967 RSPH10B radial spoke head 10 homolog B protein-coding 70 0.008345
-223075 CCDC129 coiled-coil domain containing 129 protein-coding 175 0.02086
-223082 ZNRF2 zinc and ring finger 2 protein-coding 9 0.001073
-223117 SEMA3D semaphorin 3D protein-coding 177 0.0211
-225689 MAPK15 mitogen-activated protein kinase 15 protein-coding 74 0.008822
-245711 SPDYA speedy/RINGO cell cycle regulator family member A protein-coding 35 0.004173
-245802 MS4A6E membrane spanning 4-domains A6E protein-coding 31 0.003696
-245806 VGLL2 vestigial like family member 2 protein-coding 26 0.0031
-245812 CNPY4 canopy FGF signaling regulator 4 protein-coding 30 0.003577
-245908 DEFB105A defensin beta 105A protein-coding 2 0.0002384
-245909 DEFB106A defensin beta 106A protein-coding 4 0.0004769
-245910 DEFB107A defensin beta 107A protein-coding 1 0.0001192
-245911 DEFB108B defensin beta 108B protein-coding 10 0.001192
-245913 DEFB110 defensin beta 110 protein-coding 33 0.003934
-245915 DEFB112 defensin beta 112 protein-coding 40 0.004769
-245927 DEFB113 defensin beta 113 protein-coding 26 0.0031
-245928 DEFB114 defensin beta 114 protein-coding 20 0.002384
-245929 DEFB115 defensin beta 115 protein-coding 20 0.002384
-245930 DEFB116 defensin beta 116 protein-coding 28 0.003338
-245932 DEFB119 defensin beta 119 protein-coding 40 0.004769
-245934 DEFB121 defensin beta 121 protein-coding 13 0.00155
-245935 DEFB122 defensin beta 122 (pseudogene) pseudo 4 0.0004769
-245936 DEFB123 defensin beta 123 protein-coding 12 0.001431
-245937 DEFB124 defensin beta 124 protein-coding 11 0.001311
-245938 DEFB125 defensin beta 125 protein-coding 26 0.0031
-245939 DEFB128 defensin beta 128 protein-coding 14 0.001669
-245940 DEFB130A defensin beta 130A protein-coding 1 0.0001192
-245972 ATP6V0D2 ATPase H+ transporting V0 subunit d2 protein-coding 69 0.008226
-245973 ATP6V1C2 ATPase H+ transporting V1 subunit C2 protein-coding 67 0.007988
-246126 TXLNGY taxilin gamma pseudogene, Y-linked pseudo 1 0.0001192
-246175 CNOT6L CCR4-NOT transcription complex subunit 6 like protein-coding 63 0.007511
-246176 GAS2L2 growth arrest specific 2 like 2 protein-coding 123 0.01466
-246181 AKR7L aldo-keto reductase family 7 like (gene/pseudogene) protein-coding 16 0.001907
-246184 CDC26 cell division cycle 26 protein-coding 8 0.0009537
-246213 SLC17A8 solute carrier family 17 member 8 protein-coding 115 0.01371
-246243 RNASEH1 ribonuclease H1 protein-coding 65 0.007749
-246269 AFG1L AFG1 like ATPase protein-coding 48 0.005722
-246329 STAC3 SH3 and cysteine rich domain 3 protein-coding 45 0.005365
-246330 PELI3 pellino E3 ubiquitin protein ligase family member 3 protein-coding 49 0.005842
-246705 LINC00314 long intergenic non-protein coding RNA 314 ncRNA 4 0.0004769
-246721 POLR2J2 RNA polymerase II subunit J2 protein-coding 2 0.0002384
-246744 STH saitohin protein-coding 14 0.001669
-246777 SPESP1 sperm equatorial segment protein 1 protein-coding 53 0.006319
-246778 IL27 interleukin 27 protein-coding 34 0.004053
-252839 TMEM9 transmembrane protein 9 protein-coding 24 0.002861
-252884 ZNF396 zinc finger protein 396 protein-coding 52 0.006199
-252969 NEIL2 nei like DNA glycosylase 2 protein-coding 25 0.00298
-252983 STXBP4 syntaxin binding protein 4 protein-coding 56 0.006676
-252995 FNDC5 fibronectin type III domain containing 5 protein-coding 18 0.002146
-253012 HEPACAM2 HEPACAM family member 2 protein-coding 98 0.01168
-253017 TECRL trans-2,3-enoyl-CoA reductase like protein-coding 137 0.01633
-253018 HCG27 HLA complex group 27 (non-protein coding) ncRNA 7 0.0008345
-253128 LINC00612 long intergenic non-protein coding RNA 612 ncRNA 8 0.0009537
-253143 PRR14L proline rich 14 like protein-coding 113 0.01347
-253152 EPHX4 epoxide hydrolase 4 protein-coding 50 0.005961
-253190 SERHL2 serine hydrolase like 2 protein-coding 22 0.002623
-253260 RICTOR RPTOR independent companion of MTOR complex 2 protein-coding 172 0.02051
-253314 EIF4E1B eukaryotic translation initiation factor 4E family member 1B protein-coding 38 0.00453
-253430 IPMK inositol polyphosphate multikinase protein-coding 48 0.005722
-253461 ZBTB38 zinc finger and BTB domain containing 38 protein-coding 112 0.01335
-253512 SLC25A30 solute carrier family 25 member 30 protein-coding 33 0.003934
-253558 LCLAT1 lysocardiolipin acyltransferase 1 protein-coding 60 0.007153
-253559 CADM2 cell adhesion molecule 2 protein-coding 123 0.01466
-253582 TMEM244 transmembrane protein 244 protein-coding 27 0.003219
-253635 GPATCH11 G-patch domain containing 11 protein-coding 26 0.0031
-253639 ZNF620 zinc finger protein 620 protein-coding 47 0.005603
-253650 ANKRD18A ankyrin repeat domain 18A protein-coding 71 0.008464
-253714 MMS22L MMS22 like, DNA repair protein protein-coding 150 0.01788
-253725 WASHC2C WASH complex subunit 2C protein-coding 96 0.01144
-253738 EBF3 early B cell factor 3 protein-coding 123 0.01466
-253769 WDR27 WD repeat domain 27 protein-coding 76 0.009061
-253782 CERS6 ceramide synthase 6 protein-coding 84 0.01001
-253827 MSRB3 methionine sulfoxide reductase B3 protein-coding 35 0.004173
-253832 ZDHHC20 zinc finger DHHC-type containing 20 protein-coding 36 0.004292
-253935 ANGPTL5 angiopoietin like 5 protein-coding 58 0.006915
-253943 YTHDF3 YTH N6-methyladenosine RNA binding protein 3 protein-coding 63 0.007511
-253959 RALGAPA1 Ral GTPase activating protein catalytic alpha subunit 1 protein-coding 180 0.02146
-253970 SFTA3 surfactant associated 3 protein-coding 19 0.002265
-253980 KCTD13 potassium channel tetramerization domain containing 13 protein-coding 33 0.003934
-253982 ASPHD1 aspartate beta-hydroxylase domain containing 1 protein-coding 45 0.005365
-254013 ETFBKMT electron transfer flavoprotein beta subunit lysine methyltransferase protein-coding 27 0.003219
-254042 METAP1D methionyl aminopeptidase type 1D, mitochondrial protein-coding 45 0.005365
-254048 UBN2 ubinuclein 2 protein-coding 124 0.01478
-254050 LRRC43 leucine rich repeat containing 43 protein-coding 99 0.0118
-254065 BRWD3 bromodomain and WD repeat domain containing 3 protein-coding 291 0.03469
-254102 EHBP1L1 EH domain binding protein 1 like 1 protein-coding 105 0.01252
-254122 SNX32 sorting nexin 32 protein-coding 62 0.007392
-254158 CXorf58 chromosome X open reading frame 58 protein-coding 59 0.007034
-254170 FBXO33 F-box protein 33 protein-coding 35 0.004173
-254173 TTLL10 tubulin tyrosine ligase like 10 protein-coding 177 0.0211
-254187 TSGA10IP testis specific 10 interacting protein protein-coding 65 0.007749
-254225 RNF169 ring finger protein 169 protein-coding 55 0.006557
-254228 CALHM5 calcium homeostasis modulator family member 5 protein-coding 45 0.005365
-254240 BPIFC BPI fold containing family C protein-coding 86 0.01025
-254251 LCORL ligand dependent nuclear receptor corepressor like protein-coding 25 0.00298
-254263 CNIH2 cornichon family AMPA receptor auxiliary protein 2 protein-coding 20 0.002384
-254268 AKNAD1 AKNA domain containing 1 protein-coding 113 0.01347
-254272 TBC1D28 TBC1 domain family member 28 protein-coding 26 0.0031
-254295 PHYHD1 phytanoyl-CoA dioxygenase domain containing 1 protein-coding 28 0.003338
-254312 LINC00710 long intergenic non-protein coding RNA 710 ncRNA 9 0.001073
-254359 ZDHHC24 zinc finger DHHC-type containing 24 protein-coding 22 0.002623
-254394 MCM9 minichromosome maintenance 9 homologous recombination repair factor protein-coding 71 0.008464
-254427 PROSER2 proline and serine rich 2 protein-coding 25 0.00298
-254428 SLC41A1 solute carrier family 41 member 1 protein-coding 50 0.005961
-254439 C11orf86 chromosome 11 open reading frame 86 protein-coding 14 0.001669
-254528 MEIOB meiosis specific with OB domains protein-coding 48 0.005722
-254531 LPCAT4 lysophosphatidylcholine acyltransferase 4 protein-coding 58 0.006915
-254552 NUDT8 nudix hydrolase 8 protein-coding 23 0.002742
-254773 LYG2 lysozyme g2 protein-coding 34 0.004053
-254778 C8orf46 chromosome 8 open reading frame 46 protein-coding 37 0.004411
-254783 OR6C74 olfactory receptor family 6 subfamily C member 74 protein-coding 61 0.007272
-254786 OR6C3 olfactory receptor family 6 subfamily C member 3 protein-coding 45 0.005365
-254827 NAALADL2 N-acetylated alpha-linked acidic dipeptidase like 2 protein-coding 131 0.01562
-254863 TMEM256 transmembrane protein 256 protein-coding 7 0.0008345
-254879 OR2T6 olfactory receptor family 2 subfamily T member 6 protein-coding 107 0.01276
-254887 ZDHHC23 zinc finger DHHC-type containing 23 protein-coding 47 0.005603
-254910 LCE5A late cornified envelope 5A protein-coding 35 0.004173
-254950 KRTAP15-1 keratin associated protein 15-1 protein-coding 35 0.004173
-254956 MORN5 MORN repeat containing 5 protein-coding 35 0.004173
-254958 REXO1L1P REXO1 like 1, pseudogene pseudo 23 0.002742
-254973 OR1L4 olfactory receptor family 1 subfamily L member 4 protein-coding 54 0.006438
-255022 CALHM1 calcium homeostasis modulator 1 protein-coding 47 0.005603
-255027 MPV17L MPV17 mitochondrial inner membrane protein like protein-coding 16 0.001907
-255031 LINC00957 long intergenic non-protein coding RNA 957 ncRNA 10 0.001192
-255043 TMEM86B transmembrane protein 86B protein-coding 19 0.002265
-255057 CBARP CACN beta subunit associated regulatory protein protein-coding 50 0.005961
-255061 TAC4 tachykinin 4 protein-coding 130 0.0155
-255082 CASC2 cancer susceptibility 2 (non-protein coding) ncRNA 8 0.0009537
-255101 CFAP65 cilia and flagella associated protein 65 protein-coding 230 0.02742
-255104 TMCO4 transmembrane and coiled-coil domains 4 protein-coding 79 0.009418
-255119 CFAP299 cilia and flagella associated protein 299 protein-coding 41 0.004888
-255189 PLA2G4F phospholipase A2 group IVF protein-coding 85 0.01013
-255220 TXNDC8 thioredoxin domain containing 8 protein-coding 17 0.002027
-255231 MCOLN2 mucolipin 2 protein-coding 65 0.007749
-255239 ANKK1 ankyrin repeat and kinase domain containing 1 protein-coding 94 0.01121
-255252 LRRC57 leucine rich repeat containing 57 protein-coding 34 0.004053
-255275 MYADML2 myeloid associated differentiation marker like 2 protein-coding 15 0.001788
-255324 EPGN epithelial mitogen protein-coding 13 0.00155
-255330 NUP210P1 nucleoporin 210 pseudogene 1 pseudo 33 0.003934
-255349 TMEM211 transmembrane protein 211 protein-coding 14 0.001669
-255374 MBLAC1 metallo-beta-lactamase domain containing 1 protein-coding 18 0.002146
-255394 TCP11L2 t-complex 11 like 2 protein-coding 71 0.008464
-255403 ZNF718 zinc finger protein 718 protein-coding 92 0.01097
-255411 TEX49 testis expressed 49 protein-coding 7 0.0008345
-255426 RASGEF1C RasGEF domain family member 1C protein-coding 63 0.007511
-255488 RNF144B ring finger protein 144B protein-coding 26 0.0031
-255520 ELMOD2 ELMO domain containing 2 protein-coding 31 0.003696
-255626 HIST1H2BA histone cluster 1 H2B family member a protein-coding 23 0.002742
-255631 COL24A1 collagen type XXIV alpha 1 chain protein-coding 236 0.02814
-255649 OOSP1 oocyte secreted protein 1 (pseudogene) pseudo 2 0.0002384
-255725 OR52B2 olfactory receptor family 52 subfamily B member 2 protein-coding 59 0.007034
-255738 PCSK9 proprotein convertase subtilisin/kexin type 9 protein-coding 58 0.006915
-255743 NPNT nephronectin protein-coding 66 0.007868
-255758 TCTEX1D2 Tctex1 domain containing 2 protein-coding 19 0.002265
-255762 PDZD9 PDZ domain containing 9 protein-coding 33 0.003934
-255783 INAFM1 InaF motif containing 1 protein-coding 1 0.0001192
-255798 SMCO1 single-pass membrane protein with coiled-coil domains 1 protein-coding 26 0.0031
-255809 C19orf38 chromosome 19 open reading frame 38 protein-coding 14 0.001669
-255812 SDHAP1 succinate dehydrogenase complex flavoprotein subunit A pseudogene 1 pseudo 102 0.01216
-255877 BCL6B B cell CLL/lymphoma 6B protein-coding 72 0.008584
-255919 CNEP1R1 CTD nuclear envelope phosphatase 1 regulatory subunit 1 protein-coding 11 0.001311
-255926 ADAM5 ADAM metallopeptidase domain 5 (pseudogene) pseudo 14 0.001669
-255928 SYT14 synaptotagmin 14 protein-coding 90 0.01073
-255967 PAN3 PAN3 poly(A) specific ribonuclease subunit protein-coding 89 0.01061
-256006 ANKRD31 ankyrin repeat domain 31 protein-coding 47 0.005603
-256051 ZNF549 zinc finger protein 549 protein-coding 94 0.01121
-256076 COL6A5 collagen type VI alpha 5 chain protein-coding 240 0.02861
-256126 SYCE2 synaptonemal complex central element protein 2 protein-coding 25 0.00298
-256130 TMEM196 transmembrane protein 196 protein-coding 32 0.003815
-256144 OR4C3 olfactory receptor family 4 subfamily C member 3 protein-coding 103 0.01228
-256148 OR4S1 olfactory receptor family 4 subfamily S member 1 protein-coding 60 0.007153
-256158 HMCN2 hemicentin 2 protein-coding 34 0.004053
-256227 STEAP1B STEAP family member 1B protein-coding 45 0.005365
-256236 NAPSB napsin B aspartic peptidase, pseudogene pseudo 82 0.009776
-256281 NUDT14 nudix hydrolase 14 protein-coding 34 0.004053
-256297 PTF1A pancreas associated transcription factor 1a protein-coding 41 0.004888
-256302 NATD1 N-acetyltransferase domain containing 1 protein-coding 7 0.0008345
-256309 CCDC110 coiled-coil domain containing 110 protein-coding 100 0.01192
-256329 LMNTD2 lamin tail domain containing 2 protein-coding 40 0.004769
-256356 GK5 glycerol kinase 5 (putative) protein-coding 47 0.005603
-256364 EML3 echinoderm microtubule associated protein like 3 protein-coding 81 0.009657
-256369 CCDC197 coiled-coil domain containing 197 protein-coding 51 0.00608
-256380 SCML4 Scm polycomb group protein like 4 protein-coding 58 0.006915
-256394 SERPINA11 serpin family A member 11 protein-coding 63 0.007511
-256435 ST6GALNAC3 ST6 N-acetylgalactosaminide alpha-2,6-sialyltransferase 3 protein-coding 104 0.0124
-256471 MFSD8 major facilitator superfamily domain containing 8 protein-coding 70 0.008345
-256472 TMEM151A transmembrane protein 151A protein-coding 35 0.004173
-256536 TCERG1L transcription elongation regulator 1 like protein-coding 90 0.01073
-256586 LYSMD2 LysM domain containing 2 protein-coding 14 0.001669
-256643 BCLAF3 BCLAF1 and THRAP3 family member 3 protein-coding 84 0.01001
-256646 NUTM1 NUT midline carcinoma family member 1 protein-coding 150 0.01788
-256691 MAMDC2 MAM domain containing 2 protein-coding 79 0.009418
-256710 GLIPR1L1 GLIPR1 like 1 protein-coding 26 0.0031
-256714 MAP7D2 MAP7 domain containing 2 protein-coding 114 0.01359
-256764 WDR72 WD repeat domain 72 protein-coding 183 0.02182
-256815 C10orf67 chromosome 10 open reading frame 67 protein-coding 17 0.002027
-256892 OR51F1 olfactory receptor family 51 subfamily F member 1 (gene/pseudogene) protein-coding 75 0.008941
-256933 NPB neuropeptide B protein-coding 4 0.0004769
-256949 KANK3 KN motif and ankyrin repeat domains 3 protein-coding 39 0.004649
-256957 HEATR9 HEAT repeat containing 9 protein-coding 76 0.009061
-256979 SUN3 Sad1 and UNC84 domain containing 3 protein-coding 54 0.006438
-256987 SERINC5 serine incorporator 5 protein-coding 44 0.005246
-257000 TINCR TINCR ubiquitin domain containing ncRNA 16 0.001907
-257019 FRMD3 FERM domain containing 3 protein-coding 90 0.01073
-257044 CATSPERE catsper channel auxiliary subunit epsilon protein-coding 100 0.01192
-257062 CATSPERD cation channel sperm associated auxiliary subunit delta protein-coding 122 0.01454
-257068 PLCXD2 phosphatidylinositol specific phospholipase C X domain containing 2 protein-coding 45 0.005365
-257101 ZNF683 zinc finger protein 683 protein-coding 69 0.008226
-257106 ARHGAP30 Rho GTPase activating protein 30 protein-coding 150 0.01788
-257144 GCSAM germinal center associated signaling and motility protein-coding 33 0.003934
-257160 RNF214 ring finger protein 214 protein-coding 76 0.009061
-257169 C9orf43 chromosome 9 open reading frame 43 protein-coding 54 0.006438
-257177 CFAP126 cilia and flagella associated protein 126 protein-coding 20 0.002384
-257194 NEGR1 neuronal growth regulator 1 protein-coding 78 0.009299
-257202 GPX6 glutathione peroxidase 6 protein-coding 46 0.005484
-257218 SHPRH SNF2 histone linker PHD RING helicase protein-coding 198 0.02361
-257236 CCDC96 coiled-coil domain containing 96 protein-coding 59 0.007034
-257240 KLHL34 kelch like family member 34 protein-coding 93 0.01109
-257313 UTS2B urotensin 2B protein-coding 23 0.002742
-257364 SNX33 sorting nexin 33 protein-coding 96 0.01144
-257397 TAB3 TGF-beta activated kinase 1 (MAP3K7) binding protein 3 protein-coding 126 0.01502
-257407 C2orf72 chromosome 2 open reading frame 72 protein-coding 3 0.0003577
-257415 FAM133B family with sequence similarity 133 member B protein-coding 25 0.00298
-257629 ANKS4B ankyrin repeat and sterile alpha motif domain containing 4B protein-coding 55 0.006557
-257641 NPCA1 Nasopharyngeal carcinoma 1 unknown 121 0.01443
-258010 SVIP small VCP interacting protein protein-coding 13 0.00155
-259173 ALS2CL ALS2 C-terminal like protein-coding 87 0.01037
-259197 NCR3 natural cytotoxicity triggering receptor 3 protein-coding 17 0.002027
-259215 LY6G6F lymphocyte antigen 6 family member G6F protein-coding 30 0.003577
-259217 HSPA12A heat shock protein family A (Hsp70) member 12A protein-coding 123 0.01466
-259230 SGMS1 sphingomyelin synthase 1 protein-coding 53 0.006319
-259232 NALCN sodium leak channel, non-selective protein-coding 371 0.04423
-259234 DSCR10 Down syndrome critical region 10 (non-protein coding) ncRNA 37 0.004411
-259236 TMIE transmembrane inner ear protein-coding 11 0.001311
-259239 WFDC11 WAP four-disulfide core domain 11 protein-coding 13 0.00155
-259240 WFDC9 WAP four-disulfide core domain 9 protein-coding 9 0.001073
-259249 MRGPRX1 MAS related GPR family member X1 protein-coding 89 0.01061
-259266 ASPM abnormal spindle microtubule assembly protein-coding 404 0.04816
-259282 BOD1L1 biorientation of chromosomes in cell division 1 like 1 protein-coding 297 0.03541
-259283 MDS2 myelodysplastic syndrome 2 translocation associated protein-coding 19 0.002265
-259285 TAS2R39 taste 2 receptor member 39 protein-coding 44 0.005246
-259286 TAS2R40 taste 2 receptor member 40 protein-coding 45 0.005365
-259287 TAS2R41 taste 2 receptor member 41 protein-coding 68 0.008107
-259289 TAS2R43 taste 2 receptor member 43 protein-coding 20 0.002384
-259290 TAS2R31 taste 2 receptor member 31 protein-coding 34 0.004053
-259292 TAS2R46 taste 2 receptor member 46 protein-coding 32 0.003815
-259293 TAS2R30 taste 2 receptor member 30 protein-coding 37 0.004411
-259294 TAS2R19 taste 2 receptor member 19 protein-coding 39 0.004649
-259295 TAS2R20 taste 2 receptor member 20 protein-coding 44 0.005246
-259296 TAS2R50 taste 2 receptor member 50 protein-coding 42 0.005007
-259307 IL4I1 interleukin 4 induced 1 protein-coding 65 0.007749
-259308 FAM205A family with sequence similarity 205 member A protein-coding 65 0.007749
-260293 CYP4X1 cytochrome P450 family 4 subfamily X member 1 protein-coding 51 0.00608
-260425 MAGI3 membrane associated guanylate kinase, WW and PDZ domain containing 3 protein-coding 138 0.01645
-260429 PRSS33 serine protease 33 protein-coding 17 0.002027
-260434 PYDC1 pyrin domain containing 1 protein-coding 150 0.01788
-260436 FDCSP follicular dendritic cell secreted protein protein-coding 22 0.002623
-261726 TIPRL TOR signaling pathway regulator protein-coding 24 0.002861
-261729 STEAP2 STEAP2 metalloreductase protein-coding 57 0.006795
-261734 NPHP4 nephrocystin 4 protein-coding 142 0.01693
-266553 OFCC1 orofacial cleft 1 candidate 1 protein-coding 19 0.002265
-266629 SEC14L3 SEC14 like lipid binding 3 protein-coding 117 0.01395
-266675 BEST4 bestrophin 4 protein-coding 36 0.004292
-266697 POM121L4P POM121 transmembrane nucleoporin like 4, pseudogene pseudo 25 0.00298
-266722 HS6ST3 heparan sulfate 6-O-sulfotransferase 3 protein-coding 68 0.008107
-266727 MDGA1 MAM domain containing glycosylphosphatidylinositol anchor 1 protein-coding 118 0.01407
-266743 NPAS4 neuronal PAS domain protein 4 protein-coding 149 0.01776
-266747 RGL4 ral guanine nucleotide dissociation stimulator like 4 protein-coding 44 0.005246
-266812 NAP1L5 nucleosome assembly protein 1 like 5 protein-coding 21 0.002504
-266971 PIPSL PIP5K1A and PSMD4-like, pseudogene pseudo 154 0.01836
-266977 ADGRF1 adhesion G protein-coupled receptor F1 protein-coding 102 0.01216
-267002 PGBD2 piggyBac transposable element derived 2 protein-coding 87 0.01037
-267012 DAOA D-amino acid oxidase activator protein-coding 33 0.003934
-267020 ATP5MGL ATP synthase membrane subunit g like protein-coding 9 0.001073
-280636 SELENOH selenoprotein H protein-coding 10 0.001192
-280657 SSX6 SSX family member 6, pseudogene pseudo 16 0.001907
-280658 SSX7 SSX family member 7 protein-coding 42 0.005007
-280660 SSX9 SSX family member 9, pseudogene pseudo 28 0.003338
-280664 WFDC10B WAP four-disulfide core domain 10B protein-coding 8 0.0009537
-282553 AUTS8 Autism, susceptibility to, 8 unknown 172 0.02051
-282616 IFNL2 interferon lambda 2 protein-coding 38 0.00453
-282617 IFNL3 interferon lambda 3 protein-coding 37 0.004411
-282618 IFNL1 interferon lambda 1 protein-coding 20 0.002384
-282679 AQP11 aquaporin 11 protein-coding 21 0.002504
-282763 OR51B5 olfactory receptor family 51 subfamily B member 5 protein-coding 62 0.007392
-282770 OR10AG1 olfactory receptor family 10 subfamily AG member 1 protein-coding 107 0.01276
-282775 OR5J2 olfactory receptor family 5 subfamily J member 2 protein-coding 113 0.01347
-282808 RAB40AL RAB40A like protein-coding 45 0.005365
-282809 POC1B POC1 centriolar protein B protein-coding 47 0.005603
-282890 ZNF311 zinc finger protein 311 protein-coding 70 0.008345
-282966 C10orf53 chromosome 10 open reading frame 53 protein-coding 33 0.003934
-282969 FUOM fucose mutarotase protein-coding 11 0.001311
-282973 JAKMIP3 Janus kinase and microtubule interacting protein 3 protein-coding 110 0.01311
-282974 STK32C serine/threonine kinase 32C protein-coding 49 0.005842
-282980 LINC00700 long intergenic non-protein coding RNA 700 ncRNA 11 0.001311
-282991 BLOC1S2 biogenesis of lysosomal organelles complex 1 subunit 2 protein-coding 17 0.002027
-282996 RBM20 RNA binding motif protein 20 protein-coding 70 0.008345
-283025 LINC01553 long intergenic non-protein coding RNA 1553 ncRNA 8 0.0009537
-283078 MKX mohawk homeobox protein-coding 61 0.007272
-283092 OR4C13 olfactory receptor family 4 subfamily C member 13 protein-coding 112 0.01335
-283093 OR4C12 olfactory receptor family 4 subfamily C member 12 protein-coding 118 0.01407
-283106 CSNK2A3 casein kinase 2 alpha 3 protein-coding 69 0.008226
-283111 OR51V1 olfactory receptor family 51 subfamily V member 1 protein-coding 87 0.01037
-283120 H19 H19, imprinted maternally expressed transcript (non-protein coding) ncRNA 3 0.0003577
-283129 MAJIN membrane anchored junction protein protein-coding 28 0.003338
-283130 SLC25A45 solute carrier family 25 member 45 protein-coding 42 0.005007
-283131 NEAT1 nuclear paraspeckle assembly transcript 1 (non-protein coding) ncRNA 3 0.0003577
-283149 BCL9L B cell CLL/lymphoma 9 like protein-coding 179 0.02134
-283150 FOXR1 forkhead box R1 protein-coding 35 0.004173
-283152 CCDC153 coiled-coil domain containing 153 protein-coding 24 0.002861
-283159 OR8D1 olfactory receptor family 8 subfamily D member 1 protein-coding 83 0.009895
-283160 OR8D2 olfactory receptor family 8 subfamily D member 2 (gene/pseudogene) protein-coding 73 0.008703
-283162 OR8B4 olfactory receptor family 8 subfamily B member 4 (gene/pseudogene) protein-coding 72 0.008584
-283189 OR9G4 olfactory receptor family 9 subfamily G member 4 protein-coding 84 0.01001
-283197 LINC00301 long intergenic non-protein coding RNA 301 ncRNA 8 0.0009537
-283208 P4HA3 prolyl 4-hydroxylase subunit alpha 3 protein-coding 61 0.007272
-283209 PGM2L1 phosphoglucomutase 2 like 1 protein-coding 64 0.00763
-283212 KLHL35 kelch like family member 35 protein-coding 30 0.003577
-283219 KCTD21 potassium channel tetramerization domain containing 21 protein-coding 41 0.004888
-283229 CRACR2B calcium release activated channel regulator 2B protein-coding 30 0.003577
-283232 TMEM80 transmembrane protein 80 protein-coding 15 0.001788
-283234 CCDC88B coiled-coil domain containing 88B protein-coding 125 0.0149
-283237 TTC9C tetratricopeptide repeat domain 9C protein-coding 19 0.002265
-283238 SLC22A24 solute carrier family 22 member 24 protein-coding 65 0.007749
-283248 RCOR2 REST corepressor 2 protein-coding 47 0.005603
-283254 HARBI1 harbinger transposase derived 1 protein-coding 36 0.004292
-283284 IGSF22 immunoglobulin superfamily member 22 protein-coding 140 0.01669
-283297 OR10A4 olfactory receptor family 10 subfamily A member 4 protein-coding 64 0.00763
-283298 OLFML1 olfactomedin like 1 protein-coding 50 0.005961
-283310 OTOGL otogelin like protein-coding 319 0.03803
-283316 CD163L1 CD163 molecule like 1 protein-coding 224 0.0267
-283337 ZNF740 zinc finger protein 740 protein-coding 24 0.002861
-283345 RPL13P5 ribosomal protein L13 pseudogene 5 pseudo 9 0.001073
-283349 RASSF3 Ras association domain family member 3 protein-coding 60 0.007153
-283358 B4GALNT3 beta-1,4-N-acetyl-galactosaminyltransferase 3 protein-coding 102 0.01216
-283365 OR6C6 olfactory receptor family 6 subfamily C member 6 protein-coding 49 0.005842
-283373 ANKRD52 ankyrin repeat domain 52 protein-coding 99 0.0118
-283375 SLC39A5 solute carrier family 39 member 5 protein-coding 48 0.005722
-283377 SPRYD4 SPRY domain containing 4 protein-coding 16 0.001907
-283383 ADGRD1 adhesion G protein-coupled receptor D1 protein-coding 150 0.01788
-283385 MORN3 MORN repeat containing 3 protein-coding 39 0.004649
-283403 C12orf80 chromosome 12 open reading frame 80 protein-coding 6 0.0007153
-283416 LINC01465 long intergenic non-protein coding RNA 1465 ncRNA 4 0.0004769
-283417 DPY19L2 dpy-19 like 2 protein-coding 131 0.01562
-283420 CLEC9A C-type lectin domain containing 9A protein-coding 59 0.007034
-283422 LINC01559 long intergenic non-protein coding RNA 1559 ncRNA 28 0.003338
-283431 GAS2L3 growth arrest specific 2 like 3 protein-coding 72 0.008584
-283446 MYO1H myosin IH protein-coding 134 0.01598
-283450 HECTD4 HECT domain E3 ubiquitin protein ligase 4 protein-coding 334 0.03982
-283455 KSR2 kinase suppressor of ras 2 protein-coding 166 0.01979
-283459 GATC glutamyl-tRNA amidotransferase subunit C protein-coding 16 0.001907
-283460 HNF1A-AS1 HNF1A antisense RNA 1 ncRNA 81 0.009657
-283461 C12orf40 chromosome 12 open reading frame 40 protein-coding 127 0.01514
-283463 MUC19 mucin 19, oligomeric protein-coding 4 0.0004769
-283464 GXYLT1 glucoside xylosyltransferase 1 protein-coding 68 0.008107
-283471 TMPRSS12 transmembrane serine protease 12 protein-coding 46 0.005484
-283487 LINC00346 long intergenic non-protein coding RNA 346 ncRNA 8 0.0009537
-283489 CHAMP1 chromosome alignment maintaining phosphoprotein 1 protein-coding 86 0.01025
-283507 SUGT1P3 SUGT1 pseudogene 3 pseudo 17 0.002027
-283514 SIAH3 siah E3 ubiquitin protein ligase family member 3 protein-coding 47 0.005603
-283518 KCNRG potassium channel regulator protein-coding 39 0.004649
-283537 SLC46A3 solute carrier family 46 member 3 protein-coding 71 0.008464
-283547 LINC00639 long intergenic non-protein coding RNA 639 ncRNA 22 0.002623
-283551 LINC01588 long intergenic non-protein coding RNA 1588 ncRNA 14 0.001669
-283554 GPR137C G protein-coupled receptor 137C protein-coding 39 0.004649
-283571 PROX2 prospero homeobox 2 protein-coding 36 0.004292
-283576 ZDHHC22 zinc finger DHHC-type containing 22 protein-coding 26 0.0031
-283578 TMED8 transmembrane p24 trafficking protein family member 8 protein-coding 36 0.004292
-283579 C14orf178 chromosome 14 open reading frame 178 protein-coding 9 0.001073
-283598 C14orf177 chromosome 14 open reading frame 177 protein-coding 22 0.002623
-283600 SLC25A47 solute carrier family 25 member 47 protein-coding 49 0.005842
-283601 LINC00523 long intergenic non-protein coding RNA 523 ncRNA 8 0.0009537
-283629 TSSK4 testis specific serine kinase 4 protein-coding 19 0.002265
-283635 FAM177A1 family with sequence similarity 177 member A1 protein-coding 17 0.002027
-283638 CEP170B centrosomal protein 170B protein-coding 106 0.01264
-283643 TEDC1 tubulin epsilon and delta complex 1 protein-coding 25 0.00298
-283652 SLC24A5 solute carrier family 24 member 5 protein-coding 70 0.008345
-283659 PRTG protogenin protein-coding 172 0.02051
-283673 EWSAT1 Ewing sarcoma associated transcript 1 ncRNA 6 0.0007153
-283677 REC114 REC114 meiotic recombination protein protein-coding 30 0.003577
-283685 GOLGA6L2 golgin A6 family-like 2 protein-coding 47 0.005603
-283687 ST20-AS1 ST20 antisense RNA 1 ncRNA 11 0.001311
-283694 OR4N4 olfactory receptor family 4 subfamily N member 4 protein-coding 136 0.01621
-283726 SAXO2 stabilizer of axonemal microtubules 2 protein-coding 59 0.007034
-283742 FAM98B family with sequence similarity 98 member B protein-coding 33 0.003934
-283748 PLA2G4D phospholipase A2 group IVD protein-coding 74 0.008822
-283755 HERC2P3 hect domain and RLD 2 pseudogene 3 pseudo 286 0.0341
-283767 GOLGA6L1 golgin A6 family-like 1 protein-coding 42 0.005007
-283768 GOLGA8G golgin A8 family member G protein-coding 12 0.001431
-283777 FAM169B family with sequence similarity 169 member B protein-coding 42 0.005007
-283796 GOLGA8IP golgin A8 family member I, pseudogene pseudo 43 0.005126
-283807 FBXL22 F-box and leucine rich repeat protein 22 protein-coding 20 0.002384
-283820 NOMO2 NODAL modulator 2 protein-coding 47 0.005603
-283847 TERB1 telomere repeat binding bouquet formation protein 1 protein-coding 42 0.005007
-283848 CES4A carboxylesterase 4A protein-coding 35 0.004173
-283849 EXOC3L1 exocyst complex component 3 like 1 protein-coding 58 0.006915
-283867 LINC00922 long intergenic non-protein coding RNA 922 ncRNA 44 0.005246
-283869 NPW neuropeptide W protein-coding 4 0.0004769
-283870 BRICD5 BRICHOS domain containing 5 protein-coding 25 0.00298
-283871 PGP phosphoglycolate phosphatase protein-coding 10 0.001192
-283875 LINC00514 long intergenic non-protein coding RNA 514 ncRNA 10 0.001192
-283897 C16orf54 chromosome 16 open reading frame 54 protein-coding 23 0.002742
-283899 INO80E INO80 complex subunit E protein-coding 24 0.002861
-283902 HCCAT5 hepatocellular carcinoma associated transcript 5 (non-protein coding) ncRNA 40 0.004769
-283927 NUDT7 nudix hydrolase 7 protein-coding 50 0.005961
-283933 ZNF843 zinc finger protein 843 protein-coding 25 0.00298
-283948 NHLRC4 NHL repeat containing 4 protein-coding 15 0.001788
-283951 C16orf91 chromosome 16 open reading frame 91 protein-coding 44 0.005246
-283953 TMEM114 transmembrane protein 114 protein-coding 1 0.0001192
-283971 CLEC18C C-type lectin domain family 18 member C protein-coding 23 0.002742
-283982 LINC00469 long intergenic non-protein coding RNA 469 ncRNA 7 0.0008345
-283985 FADS6 fatty acid desaturase 6 protein-coding 27 0.003219
-283987 HID1 HID1 domain containing protein-coding 112 0.01335
-283989 TSEN54 tRNA splicing endonuclease subunit 54 protein-coding 28 0.003338
-283991 UBALD2 UBA like domain containing 2 protein-coding 6 0.0007153
-283994 LINC00868 long intergenic non-protein coding RNA 868 ncRNA 9 0.001073
-283999 TMEM235 transmembrane protein 235 protein-coding 10 0.001192
-284001 CCDC57 coiled-coil domain containing 57 protein-coding 92 0.01097
-284004 HEXDC hexosaminidase D protein-coding 66 0.007868
-284013 VMO1 vitelline membrane outer layer 1 homolog protein-coding 25 0.00298
-284018 C17orf58 chromosome 17 open reading frame 58 protein-coding 13 0.00155
-284021 MILR1 mast cell immunoglobulin like receptor 1 protein-coding 10 0.001192
-284029 LINC00324 long intergenic non-protein coding RNA 324 ncRNA 7 0.0008345
-284034 LINC00670 long intergenic non-protein coding RNA 670 ncRNA 9 0.001073
-284040 CDRT4 CMT1A duplicated region transcript 4 protein-coding 18 0.002146
-284047 CCDC144B coiled-coil domain containing 144B (pseudogene) pseudo 6 0.0007153
-284058 KANSL1 KAT8 regulatory NSL complex subunit 1 protein-coding 228 0.02718
-284067 CFAP97D1 CFAP97 domain containing 1 protein-coding 10 0.001192
-284069 FAM171A2 family with sequence similarity 171 member A2 protein-coding 22 0.002623
-284071 MEIOC meiosis specific with coiled-coil domain protein-coding 88 0.01049
-284076 TTLL6 tubulin tyrosine ligase like 6 protein-coding 91 0.01085
-284083 C17orf47 chromosome 17 open reading frame 47 protein-coding 73 0.008703
-284085 KRT18P55 keratin 18 pseudogene 55 pseudo 4 0.0004769
-284086 NEK8 NIMA related kinase 8 protein-coding 80 0.009537
-284098 PIGW phosphatidylinositol glycan anchor biosynthesis class W protein-coding 48 0.005722
-284099 C17orf78 chromosome 17 open reading frame 78 protein-coding 33 0.003934
-284100 YWHAEP7 tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein epsilon pseudogene 7 pseudo 17 0.002027
-284106 CISD3 CDGSH iron sulfur domain 3 protein-coding 8 0.0009537
-284110 GSDMA gasdermin A protein-coding 56 0.006676
-284111 SLC13A5 solute carrier family 13 member 5 protein-coding 75 0.008941
-284114 TMEM102 transmembrane protein 102 protein-coding 36 0.004292
-284116 KRT42P keratin 42 pseudogene pseudo 7 0.0008345
-284119 CAVIN1 caveolae associated protein 1 protein-coding 58 0.006915
-284123 FAM27E5 family with sequence similarity E5 ncRNA 81 0.009657
-284129 SLC26A11 solute carrier family 26 member 11 protein-coding 74 0.008822
-284131 ENDOV endonuclease V protein-coding 24 0.002861
-284161 GDPD1 glycerophosphodiester phosphodiesterase domain containing 1 protein-coding 46 0.005484
-284184 NDUFAF8 NADH:ubiquinone oxidoreductase complex assembly factor 8 protein-coding 1 0.0001192
-284185 LINC00482 long intergenic non-protein coding RNA 482 ncRNA 33 0.003934
-284186 TMEM105 transmembrane protein 105 protein-coding 22 0.002623
-284194 LGALS9B galectin 9B protein-coding 32 0.003815
-284203 RNASEH1P1 ribonuclease H1 pseudogene 1 pseudo 65 0.007749
-284207 METRNL meteorin like, glial cell differentiation regulator protein-coding 25 0.00298
-284217 LAMA1 laminin subunit alpha 1 protein-coding 436 0.05198
-284233 CYP4F35P cytochrome P450 family 4 subfamily F member 35, pseudogene pseudo 20 0.002384
-284252 KCTD1 potassium channel tetramerization domain containing 1 protein-coding 39 0.004649
-284254 DYNAP dynactin associated protein protein-coding 26 0.0031
-284257 BOD1L2 biorientation of chromosomes in cell division 1 like 2 protein-coding 24 0.002861
-284266 SIGLEC15 sialic acid binding Ig like lectin 15 protein-coding 21 0.002504
-284273 ZADH2 zinc binding alcohol dehydrogenase domain containing 2 protein-coding 38 0.00453
-284274 SMIM21 small integral membrane protein 21 protein-coding 20 0.002384
-284293 HMSD histocompatibility minor serpin domain containing protein-coding 18 0.002146
-284297 SSC5D scavenger receptor cysteine rich family member with 5 domains protein-coding 81 0.009657
-284306 ZNF547 zinc finger protein 547 protein-coding 57 0.006795
-284307 ZIK1 zinc finger protein interacting with K protein 1 protein-coding 79 0.009418
-284309 ZNF776 zinc finger protein 776 protein-coding 58 0.006915
-284312 ZSCAN1 zinc finger and SCAN domain containing 1 protein-coding 106 0.01264
-284323 ZNF780A zinc finger protein 780A protein-coding 98 0.01168
-284325 C19orf54 chromosome 19 open reading frame 54 protein-coding 33 0.003934
-284338 PRR19 proline rich 19 protein-coding 51 0.00608
-284339 TMEM145 transmembrane protein 145 protein-coding 73 0.008703
-284340 CXCL17 C-X-C motif chemokine ligand 17 protein-coding 11 0.001311
-284346 ZNF575 zinc finger protein 575 protein-coding 10 0.001192
-284348 LYPD5 LY6/PLAUR domain containing 5 protein-coding 29 0.003457
-284349 ZNF283 zinc finger protein 283 protein-coding 82 0.009776
-284352 PPP1R37 protein phosphatase 1 regulatory subunit 37 protein-coding 13 0.00155
-284353 NKPD1 NTPase KAP family P-loop domain containing 1 protein-coding 63 0.007511
-284355 TPRX1 tetrapeptide repeat homeobox 1 protein-coding 44 0.005246
-284358 MAMSTR MEF2 activating motif and SAP domain containing transcriptional regulator protein-coding 28 0.003338
-284359 IZUMO1 izumo sperm-egg fusion 1 protein-coding 52 0.006199
-284361 EMC10 ER membrane protein complex subunit 10 protein-coding 20 0.002384
-284366 KLK9 kallikrein related peptidase 9 protein-coding 32 0.003815
-284369 SIGLECL1 SIGLEC family like 1 protein-coding 35 0.004173
-284370 ZNF615 zinc finger protein 615 protein-coding 132 0.01574
-284371 ZNF841 zinc finger protein 841 protein-coding 122 0.01454
-284382 ACTL9 actin like 9 protein-coding 96 0.01144
-284383 OR2Z1 olfactory receptor family 2 subfamily Z member 1 protein-coding 71 0.008464
-284390 ZNF763 zinc finger protein 763 protein-coding 57 0.006795
-284391 ZNF844 zinc finger protein 844 protein-coding 63 0.007511
-284402 SCGB2B2 secretoglobin family 2B member 2 protein-coding 19 0.002265
-284403 WDR62 WD repeat domain 62 protein-coding 142 0.01693
-284406 ZFP82 ZFP82 zinc finger protein protein-coding 86 0.01025
-284415 VSTM1 V-set and transmembrane domain containing 1 protein-coding 55 0.006557
-284417 TMEM150B transmembrane protein 150B protein-coding 20 0.002384
-284418 FAM71E2 family with sequence similarity 71 member E2 protein-coding 66 0.007868
-284422 SMIM24 small integral membrane protein 24 protein-coding 4 0.0004769
-284424 MIR7-3HG MIR7-3 host gene ncRNA 11 0.001311
-284427 SLC25A41 solute carrier family 25 member 41 protein-coding 46 0.005484
-284428 MBD3L5 methyl-CpG binding domain protein 3 like 5 protein-coding 7 0.0008345
-284433 OR10H5 olfactory receptor family 10 subfamily H member 5 protein-coding 57 0.006795
-284434 NWD1 NACHT and WD repeat domain containing 1 protein-coding 167 0.01991
-284439 SLC25A42 solute carrier family 25 member 42 protein-coding 45 0.005365
-284443 ZNF493 zinc finger protein 493 protein-coding 129 0.01538
-284451 ODF3L2 outer dense fiber of sperm tails 3 like 2 protein-coding 38 0.00453
-284459 HKR1 HKR1, GLI-Kruppel zinc finger family member protein-coding 77 0.00918
-284467 FAM19A3 family with sequence similarity 19 member A3, C-C motif chemokine like protein-coding 29 0.003457
-284485 RIIAD1 regulatory subunit of type II PKA R-subunit (RIIa) domain containing 1 protein-coding 11 0.001311
-284486 THEM5 thioesterase superfamily member 5 protein-coding 40 0.004769
-284498 C1orf167 chromosome 1 open reading frame 167 protein-coding 36 0.004292
-284521 OR2L13 olfactory receptor family 2 subfamily L member 13 protein-coding 118 0.01407
-284525 SLC9C2 solute carrier family 9 member C2 (putative) protein-coding 186 0.02217
-284532 OR14A16 olfactory receptor family 14 subfamily A member 16 protein-coding 102 0.01216
-284541 CYP4A22 cytochrome P450 family 4 subfamily A member 22 protein-coding 74 0.008822
-284546 C1orf185 chromosome 1 open reading frame 185 protein-coding 21 0.002504
-284565 NBPF15 NBPF member 15 protein-coding 25 0.00298
-284573 LINC00303 long intergenic non-protein coding RNA 303 ncRNA 29 0.003457
-284593 FAM41C family with sequence similarity 41 member C ncRNA 5 0.0005961
-284611 FAM102B family with sequence similarity 102 member B protein-coding 33 0.003934
-284612 SYPL2 synaptophysin like 2 protein-coding 30 0.003577
-284613 CYB561D1 cytochrome b561 family member D1 protein-coding 16 0.001907
-284615 ANKRD34A ankyrin repeat domain 34A protein-coding 81 0.009657
-284654 RSPO1 R-spondin 1 protein-coding 45 0.005365
-284656 EPHA10 EPH receptor A10 protein-coding 134 0.01598
-284677 SNHG28 small nucleolar RNA host gene 28 ncRNA 13 0.00155
-284680 SPATA46 spermatogenesis associated 46 protein-coding 26 0.0031
-284695 ZNF326 zinc finger protein 326 protein-coding 74 0.008822
-284697 BTBD8 BTB domain containing 8 protein-coding 56 0.006676
-284716 RIMKLA ribosomal modification protein rimK like family member A protein-coding 49 0.005842
-284723 SLC25A34 solute carrier family 25 member 34 protein-coding 28 0.003338
-284729 ESPNP espin pseudogene pseudo 116 0.01383
-284756 C20orf197 chromosome 20 open reading frame 197 protein-coding 20 0.002384
-284759 SIRPB2 signal regulatory protein beta 2 protein-coding 44 0.005246
-284800 FAM182A family with sequence similarity 182 member A ncRNA 18 0.002146
-284802 FRG1BP FSHD region gene 1 family member B, pseudogene pseudo 53 0.006319
-284805 C20orf203 chromosome 20 open reading frame 203 protein-coding 15 0.001788
-284827 KRTAP13-4 keratin associated protein 13-4 protein-coding 48 0.005722
-284904 SEC14L4 SEC14 like lipid binding 4 protein-coding 51 0.00608
-284942 RPL23AP82 ribosomal protein L23a pseudogene 82 pseudo 28 0.003338
-284948 SH2D6 SH2 domain containing 6 protein-coding 19 0.002265
-284958 NT5DC4 5'-nucleotidase domain containing 4 protein-coding 20 0.002384
-284992 CCDC150 coiled-coil domain containing 150 protein-coding 100 0.01192
-284996 RNF149 ring finger protein 149 protein-coding 31 0.003696
-285016 ALKAL2 ALK and LTK ligand 2 protein-coding 8 0.0009537
-285025 CCDC141 coiled-coil domain containing 141 protein-coding 198 0.02361
-285033 STARD7-AS1 STARD7 antisense RNA 1 ncRNA 6 0.0007153
-285051 STPG4 sperm-tail PG-rich repeat containing 4 protein-coding 30 0.003577
-285093 RTP5 receptor transporter protein 5 (putative) protein-coding 64 0.00763
-285126 DNAJC5G DnaJ heat shock protein family (Hsp40) member C5 gamma protein-coding 34 0.004053
-285141 ERICH2 glutamate rich 2 protein-coding 12 0.001431
-285148 IAH1 isoamyl acetate hydrolyzing esterase 1 (putative) protein-coding 15 0.001788
-285154 CYP1B1-AS1 CYP1B1 antisense RNA 1 ncRNA 12 0.001431
-285172 FAM126B family with sequence similarity 126 member B protein-coding 52 0.006199
-285175 UNC80 unc-80 homolog, NALCN channel complex subunit protein-coding 255 0.0304
-285180 RUFY4 RUN and FYVE domain containing 4 protein-coding 51 0.00608
-285189 PLGLA plasminogen-like A (pseudogene) pseudo 36 0.004292
-285190 RGPD4 RANBP2-like and GRIP domain containing 4 protein-coding 241 0.02873
-285193 DUSP28 dual specificity phosphatase 28 protein-coding 51 0.00608
-285195 SLC9A9 solute carrier family 9 member A9 protein-coding 108 0.01288
-285203 EOGT EGF domain specific O-linked N-acetylglucosamine transferase protein-coding 41 0.004888
-285205 LINC00636 long intergenic non-protein coding RNA 636 ncRNA 5 0.0005961
-285220 EPHA6 EPH receptor A6 protein-coding 250 0.0298
-285231 FBXW12 F-box and WD repeat domain containing 12 protein-coding 52 0.006199
-285237 C3orf38 chromosome 3 open reading frame 38 protein-coding 44 0.005246
-285242 HTR3E 5-hydroxytryptamine receptor 3E protein-coding 74 0.008822
-285267 ZNF619 zinc finger protein 619 protein-coding 68 0.008107
-285268 ZNF621 zinc finger protein 621 protein-coding 49 0.005842
-285282 RABL3 RAB, member of RAS oncogene family like 3 protein-coding 31 0.003696
-285311 C3orf56 chromosome 3 open reading frame 56 protein-coding 38 0.00453
-285313 IGSF10 immunoglobulin superfamily member 10 protein-coding 296 0.03529
-285315 C3orf33 chromosome 3 open reading frame 33 protein-coding 31 0.003696
-285326 LINC00692 long intergenic non-protein coding RNA 692 ncRNA 4 0.0004769
-285331 CCDC66 coiled-coil domain containing 66 protein-coding 91 0.01085
-285335 SLC9C1 solute carrier family 9 member C1 protein-coding 162 0.01931
-285343 TCAIM T cell activation inhibitor, mitochondrial protein-coding 55 0.006557
-285346 ZNF852 zinc finger protein 852 protein-coding 67 0.007988
-285349 ZNF660 zinc finger protein 660 protein-coding 53 0.006319
-285362 SUMF1 sulfatase modifying factor 1 protein-coding 38 0.00453
-285367 RPUSD3 RNA pseudouridylate synthase domain containing 3 protein-coding 28 0.003338
-285368 PRRT3 proline rich transmembrane protein 3 protein-coding 57 0.006795
-285381 DPH3 diphthamide biosynthesis 3 protein-coding 10 0.001192
-285382 C3orf70 chromosome 3 open reading frame 70 protein-coding 58 0.006915
-285386 TPRG1 tumor protein p63 regulated 1 protein-coding 37 0.004411
-285429 DCAF4L1 DDB1 and CUL4 associated factor 4 like 1 protein-coding 77 0.00918
-285440 CYP4V2 cytochrome P450 family 4 subfamily V member 2 protein-coding 58 0.006915
-285464 CRIPAK cysteine rich PAK1 inhibitor protein-coding 49 0.005842
-285489 DOK7 docking protein 7 protein-coding 43 0.005126
-285492 LINC00955 long intergenic non-protein coding RNA 955 ncRNA 7 0.0008345
-285498 RNF212 ring finger protein 212 protein-coding 38 0.00453
-285501 LINC01098 long intergenic non-protein coding RNA 1098 ncRNA 32 0.003815
-285513 GPRIN3 GPRIN family member 3 protein-coding 107 0.01276
-285521 COX18 COX18, cytochrome c oxidase assembly factor protein-coding 23 0.002742
-285525 YIPF7 Yip1 domain family member 7 protein-coding 45 0.005365
-285527 FRYL FRY like transcription coactivator protein-coding 244 0.02909
-285533 RNF175 ring finger protein 175 protein-coding 31 0.003696
-285550 FAM200B family with sequence similarity 200 member B protein-coding 56 0.006676
-285555 STPG2 sperm tail PG-rich repeat containing 2 protein-coding 83 0.009895
-285590 SH3PXD2B SH3 and PX domains 2B protein-coding 99 0.0118
-285596 FAM153A family with sequence similarity 153 member A protein-coding 39 0.004649
-285598 ARL10 ADP ribosylation factor like GTPase 10 protein-coding 23 0.002742
-285600 KIAA0825 KIAA0825 protein-coding 109 0.01299
-285601 GPR150 G protein-coupled receptor 150 protein-coding 16 0.001907
-285605 DTWD2 DTW domain containing 2 protein-coding 37 0.004411
-285613 RELL2 RELT like 2 protein-coding 34 0.004053
-285622 NBPF22P NBPF member 22, pseudogene pseudo 98 0.01168
-285636 C5orf51 chromosome 5 open reading frame 51 protein-coding 34 0.004053
-285641 SLC36A3 solute carrier family 36 member 3 protein-coding 51 0.00608
-285643 KIF4B kinesin family member 4B protein-coding 196 0.02337
-285659 OR2V2 olfactory receptor family 2 subfamily V member 2 protein-coding 63 0.007511
-285668 C5orf64 chromosome 5 open reading frame 64 protein-coding 10 0.001192
-285671 RNF180 ring finger protein 180 protein-coding 76 0.009061
-285672 SREK1IP1 SREK1 interacting protein 1 protein-coding 33 0.003934
-285676 ZNF454 zinc finger protein 454 protein-coding 95 0.01133
-285679 C5orf60 chromosome 5 open reading frame 60 protein-coding 28 0.003338
-285704 RGMB repulsive guidance molecule BMP co-receptor b protein-coding 40 0.004769
-285735 LINC00326 long intergenic non-protein coding RNA 326 ncRNA 19 0.002265
-285753 CEP57L1 centrosomal protein 57 like 1 protein-coding 42 0.005007
-285755 PPIL6 peptidylprolyl isomerase like 6 protein-coding 35 0.004173
-285761 DCBLD1 discoidin, CUB and LCCL domain containing 1 protein-coding 69 0.008226
-285782 CAGE1 cancer antigen 1 protein-coding 83 0.009895
-285800 PRR18 proline rich 18 protein-coding 4 0.0004769
-285830 HLA-F-AS1 HLA-F antisense RNA 1 ncRNA 4 0.0004769
-285848 PNPLA1 patatin like phospholipase domain containing 1 protein-coding 72 0.008584
-285852 TREML4 triggering receptor expressed on myeloid cells like 4 protein-coding 30 0.003577
-285855 RPL7L1 ribosomal protein L7 like 1 protein-coding 20 0.002384
-285877 POM121L12 POM121 transmembrane nucleoporin like 12 protein-coding 201 0.02396
-285888 CNPY1 canopy FGF signaling regulator 1 protein-coding 23 0.002742
-285905 INTS4P1 integrator complex subunit 4 pseudogene 1 pseudo 47 0.005603
-285908 LINC00174 long intergenic non-protein coding RNA 174 ncRNA 16 0.001907
-285941 C7orf71 chromosome 7 open reading frame 71 protein-coding 11 0.001311
-285955 SPDYE1 speedy/RINGO cell cycle regulator family member E1 protein-coding 37 0.004411
-285958 SNHG15 small nucleolar RNA host gene 15 ncRNA 5 0.0005961
-285961 SEPT7P9 septin 7 pseudogene 9 pseudo 8 0.0009537
-285965 EPHA1-AS1 EPHA1 antisense RNA 1 ncRNA 3 0.0003577
-285966 TCAF2 TRPM8 channel associated factor 2 protein-coding 43 0.005126
-285971 ZNF775 zinc finger protein 775 protein-coding 53 0.006319
-285973 ATG9B autophagy related 9B protein-coding 96 0.01144
-285989 ZNF789 zinc finger protein 789 protein-coding 50 0.005961
-286006 LSMEM1 leucine rich single-pass membrane protein 1 protein-coding 18 0.002146
-286046 XKR6 XK related 6 protein-coding 74 0.008822
-286053 NSMCE2 NSE2 (MMS21) homolog, SMC5-SMC6 complex SUMO ligase protein-coding 31 0.003696
-286075 ZNF707 zinc finger protein 707 protein-coding 43 0.005126
-286077 FAM83H family with sequence similarity 83 member H protein-coding 125 0.0149
-286097 MICU3 mitochondrial calcium uptake family member 3 protein-coding 75 0.008941
-286101 ZNF252P zinc finger protein 252, pseudogene pseudo 54 0.006438
-286103 ZNF252P-AS1 ZNF252P antisense RNA 1 ncRNA 6 0.0007153
-286122 C8orf31 chromosome 8 open reading frame 31 (putative) ncRNA 24 0.002861
-286128 ZFP41 ZFP41 zinc finger protein protein-coding 34 0.004053
-286133 SCARA5 scavenger receptor class A member 5 protein-coding 66 0.007868
+84328 LZIC leucine zipper and CTNNBIP1 domain containing protein-coding 20 0.002382
+84329 HVCN1 hydrogen voltage gated channel 1 protein-coding 40 0.004764
+84330 ZNF414 zinc finger protein 414 protein-coding 20 0.002382
+84331 MCRIP2 MAPK regulated corepressor interacting protein 2 protein-coding 10 0.001191
+84332 DYDC2 DPY30 domain containing 2 protein-coding 23 0.002739
+84333 PCGF5 polycomb group ring finger 5 protein-coding 38 0.004525
+84334 APOPT1 apoptogenic 1, mitochondrial protein-coding 10 0.001191
+84335 AKT1S1 AKT1 substrate 1 protein-coding 26 0.003096
+84336 TMEM101 transmembrane protein 101 protein-coding 26 0.003096
+84337 ELOF1 elongation factor 1 homolog protein-coding 90 0.01072
+84340 GFM2 G elongation factor mitochondrial 2 protein-coding 69 0.008217
+84342 COG8 component of oligomeric golgi complex 8 protein-coding 42 0.005002
+84343 HPS3 HPS3, biogenesis of lysosomal organelles complex 2 subunit 1 protein-coding 110 0.0131
+84364 ARFGAP2 ADP ribosylation factor GTPase activating protein 2 protein-coding 70 0.008336
+84365 NIFK nucleolar protein interacting with the FHA domain of MKI67 protein-coding 40 0.004764
+84366 PRAC1 PRAC1 small nuclear protein protein-coding 10 0.001191
+84376 HOOK3 hook microtubule tethering protein 3 protein-coding 203 0.02418
+84417 C2orf40 chromosome 2 open reading frame 40 protein-coding 30 0.003573
+84418 CYSTM1 cysteine rich transmembrane module containing 1 protein-coding 16 0.001905
+84419 C15orf48 chromosome 15 open reading frame 48 protein-coding 9 0.001072
+84432 PROK1 prokineticin 1 protein-coding 19 0.002263
+84433 CARD11 caspase recruitment domain family member 11 protein-coding 237 0.02822
+84435 ADGRA1 adhesion G protein-coupled receptor A1 protein-coding 91 0.01084
+84436 ZNF528 zinc finger protein 528 protein-coding 105 0.0125
+84437 MSANTD4 Myb/SANT DNA binding domain containing 4 with coiled-coils protein-coding 64 0.007622
+84439 HHIPL1 HHIP like 1 protein-coding 59 0.007026
+84440 RAB11FIP4 RAB11 family interacting protein 4 protein-coding 65 0.007741
+84441 MAML2 mastermind like transcriptional coactivator 2 protein-coding 130 0.01548
+84443 FRMPD3 FERM and PDZ domain containing 3 protein-coding 162 0.01929
+84444 DOT1L DOT1 like histone lysine methyltransferase protein-coding 136 0.0162
+84445 LZTS2 leucine zipper tumor suppressor 2 protein-coding 69 0.008217
+84446 BRSK1 BR serine/threonine kinase 1 protein-coding 105 0.0125
+84447 SYVN1 synoviolin 1 protein-coding 55 0.00655
+84448 ABLIM2 actin binding LIM protein family member 2 protein-coding 77 0.00917
+84449 ZNF333 zinc finger protein 333 protein-coding 68 0.008098
+84450 ZNF512 zinc finger protein 512 protein-coding 59 0.007026
+84451 MAP3K21 mitogen-activated protein kinase kinase kinase 21 protein-coding 123 0.01465
+84455 EFCAB7 EF-hand calcium binding domain 7 protein-coding 66 0.00786
+84456 L3MBTL3 L3MBTL3, histone methyl-lysine binding protein protein-coding 99 0.01179
+84457 PHYHIPL phytanoyl-CoA 2-hydroxylase interacting protein like protein-coding 47 0.005597
+84458 LCOR ligand dependent nuclear receptor corepressor protein-coding 181 0.02156
+84460 ZMAT1 zinc finger matrin-type 1 protein-coding 107 0.01274
+84461 NEURL4 neuralized E3 ubiquitin protein ligase 4 protein-coding 148 0.01763
+84464 SLX4 SLX4 structure-specific endonuclease subunit protein-coding 201 0.02394
+84465 MEGF11 multiple EGF like domains 11 protein-coding 84 0.01
+84466 MEGF10 multiple EGF like domains 10 protein-coding 162 0.01929
+84467 FBN3 fibrillin 3 protein-coding 328 0.03906
+84498 FAM120B family with sequence similarity 120B protein-coding 99 0.01179
+84501 SPIRE2 spire type actin nucleation factor 2 protein-coding 80 0.009527
+84502 JPH4 junctophilin 4 protein-coding 57 0.006788
+84503 ZNF527 zinc finger protein 527 protein-coding 90 0.01072
+84504 NKX6-2 NK6 homeobox 2 protein-coding 28 0.003335
+84513 PLPP5 phospholipid phosphatase 5 protein-coding 15 0.001786
+84514 GHDC GH3 domain containing protein-coding 49 0.005835
+84515 MCM8 minichromosome maintenance 8 homologous recombination repair factor protein-coding 79 0.009408
+84516 DCTN5 dynactin subunit 5 protein-coding 26 0.003096
+84517 ACTRT3 actin related protein T3 protein-coding 38 0.004525
+84518 CNFN cornifelin protein-coding 10 0.001191
+84519 ACRBP acrosin binding protein protein-coding 58 0.006907
+84520 GON7 GON7, KEOPS complex subunit protein-coding 9 0.001072
+84522 JAGN1 jagunal homolog 1 protein-coding 17 0.002025
+84524 ZC3H8 zinc finger CCCH-type containing 8 protein-coding 23 0.002739
+84525 HOPX HOP homeobox protein-coding 13 0.001548
+84527 ZNF559 zinc finger protein 559 protein-coding 94 0.01119
+84528 RHOXF2 Rhox homeobox family member 2 protein-coding 27 0.003215
+84529 C15orf41 chromosome 15 open reading frame 41 protein-coding 28 0.003335
+84530 SRRM4 serine/arginine repetitive matrix 4 protein-coding 143 0.01703
+84532 ACSS1 acyl-CoA synthetase short chain family member 1 protein-coding 77 0.00917
+84536 LINC01547 long intergenic non-protein coding RNA 1547 ncRNA 9 0.001072
+84539 MCHR2 melanin concentrating hormone receptor 2 protein-coding 86 0.01024
+84541 KBTBD8 kelch repeat and BTB domain containing 8 protein-coding 80 0.009527
+84542 KIAA1841 KIAA1841 protein-coding 89 0.0106
+84545 MRPL43 mitochondrial ribosomal protein L43 protein-coding 16 0.001905
+84547 PGBD1 piggyBac transposable element derived 1 protein-coding 137 0.01632
+84548 TMEM185A transmembrane protein 185A protein-coding 24 0.002858
+84549 MAK16 MAK16 homolog protein-coding 37 0.004406
+84552 PARD6G par-6 family cell polarity regulator gamma protein-coding 33 0.00393
+84553 FAXC failed axon connections homolog protein-coding 53 0.006312
+84557 MAP1LC3A microtubule associated protein 1 light chain 3 alpha protein-coding 28 0.003335
+84560 MT4 metallothionein 4 protein-coding 11 0.00131
+84561 SLC12A8 solute carrier family 12 member 8 protein-coding 68 0.008098
+84569 LYZL1 lysozyme like 1 protein-coding 33 0.00393
+84570 COL25A1 collagen type XXV alpha 1 chain protein-coding 133 0.01584
+84572 GNPTG N-acetylglucosamine-1-phosphate transferase gamma subunit protein-coding 27 0.003215
+84612 PARD6B par-6 family cell polarity regulator beta protein-coding 51 0.006074
+84614 ZBTB37 zinc finger and BTB domain containing 37 protein-coding 54 0.006431
+84616 KRTAP4-4 keratin associated protein 4-4 protein-coding 16 0.001905
+84617 TUBB6 tubulin beta 6 class V protein-coding 52 0.006193
+84618 NT5C1A 5'-nucleotidase, cytosolic IA protein-coding 73 0.008694
+84619 ZGPAT zinc finger CCCH-type and G-patch domain containing protein-coding 76 0.009051
+84620 ST6GAL2 ST6 beta-galactoside alpha-2,6-sialyltransferase 2 protein-coding 159 0.01894
+84622 ZNF594 zinc finger protein 594 protein-coding 116 0.01381
+84623 KIRREL3 kirre like nephrin family adhesion molecule 3 protein-coding 95 0.01131
+84624 FNDC1 fibronectin type III domain containing 1 protein-coding 268 0.03192
+84626 KRBA1 KRAB-A domain containing 1 protein-coding 112 0.01334
+84627 ZNF469 zinc finger protein 469 protein-coding 158 0.01882
+84628 NTNG2 netrin G2 protein-coding 198 0.02358
+84629 TNRC18 trinucleotide repeat containing 18 protein-coding 212 0.02525
+84630 TTBK1 tau tubulin kinase 1 protein-coding 137 0.01632
+84631 SLITRK2 SLIT and NTRK like family member 2 protein-coding 249 0.02965
+84632 AFAP1L2 actin filament associated protein 1 like 2 protein-coding 70 0.008336
+84634 KISS1R KISS1 receptor protein-coding 5 0.0005955
+84636 GPR174 G protein-coupled receptor 174 protein-coding 101 0.01203
+84639 IL1F10 interleukin 1 family member 10 protein-coding 22 0.00262
+84640 USP38 ubiquitin specific peptidase 38 protein-coding 83 0.009884
+84641 MFSD14B major facilitator superfamily domain containing 14B protein-coding 46 0.005478
+84643 KIF2B kinesin family member 2B protein-coding 233 0.02775
+84645 C22orf23 chromosome 22 open reading frame 23 protein-coding 27 0.003215
+84647 PLA2G12B phospholipase A2 group XIIB protein-coding 26 0.003096
+84648 LCE3D late cornified envelope 3D protein-coding 33 0.00393
+84649 DGAT2 diacylglycerol O-acyltransferase 2 protein-coding 41 0.004883
+84650 EBPL emopamil binding protein like protein-coding 16 0.001905
+84651 SPINK7 serine peptidase inhibitor, Kazal type 7 (putative) protein-coding 10 0.001191
+84654 SPZ1 spermatogenic leucine zipper 1 protein-coding 73 0.008694
+84656 GLYR1 glyoxylate reductase 1 homolog protein-coding 79 0.009408
+84658 ADGRE3 adhesion G protein-coupled receptor E3 protein-coding 80 0.009527
+84659 RNASE7 ribonuclease A family member 7 protein-coding 74 0.008813
+84660 CCDC62 coiled-coil domain containing 62 protein-coding 78 0.009289
+84661 DPY30 dpy-30, histone methyltransferase complex regulatory subunit protein-coding 10 0.001191
+84662 GLIS2 GLIS family zinc finger 2 protein-coding 43 0.005121
+84665 MYPN myopalladin protein-coding 197 0.02346
+84666 RETNLB resistin like beta protein-coding 20 0.002382
+84667 HES7 hes family bHLH transcription factor 7 protein-coding 9 0.001072
+84668 FAM126A family with sequence similarity 126 member A protein-coding 53 0.006312
+84669 USP32 ubiquitin specific peptidase 32 protein-coding 206 0.02453
+84671 ZNF347 zinc finger protein 347 protein-coding 141 0.01679
+84674 CARD6 caspase recruitment domain family member 6 protein-coding 156 0.01858
+84675 TRIM55 tripartite motif containing 55 protein-coding 99 0.01179
+84676 TRIM63 tripartite motif containing 63 protein-coding 41 0.004883
+84677 DSCR8 Down syndrome critical region 8 (non-protein coding) ncRNA 4 0.0004764
+84678 KDM2B lysine demethylase 2B protein-coding 153 0.01822
+84679 SLC9A7 solute carrier family 9 member A7 protein-coding 84 0.01
+84680 ACCS 1-aminocyclopropane-1-carboxylate synthase homolog (inactive) protein-coding 75 0.008932
+84681 HINT2 histidine triad nucleotide binding protein 2 protein-coding 15 0.001786
+84684 INSM2 INSM transcriptional repressor 2 protein-coding 49 0.005835
+84687 PPP1R9B protein phosphatase 1 regulatory subunit 9B protein-coding 35 0.004168
+84688 C9orf24 chromosome 9 open reading frame 24 protein-coding 20 0.002382
+84689 MS4A14 membrane spanning 4-domains A14 protein-coding 147 0.01751
+84690 SPATA22 spermatogenesis associated 22 protein-coding 60 0.007145
+84691 FAM71F1 family with sequence similarity 71 member F1 protein-coding 41 0.004883
+84692 CCDC54 coiled-coil domain containing 54 protein-coding 67 0.007979
+84693 MCEE methylmalonyl-CoA epimerase protein-coding 23 0.002739
+84694 GJA10 gap junction protein alpha 10 protein-coding 104 0.01239
+84695 LOXL3 lysyl oxidase like 3 protein-coding 68 0.008098
+84696 ABHD1 abhydrolase domain containing 1 protein-coding 41 0.004883
+84698 CAPS2 calcyphosine 2 protein-coding 92 0.01096
+84699 CREB3L3 cAMP responsive element binding protein 3 like 3 protein-coding 76 0.009051
+84700 MYO18B myosin XVIIIB protein-coding 343 0.04085
+84701 COX4I2 cytochrome c oxidase subunit 4I2 protein-coding 26 0.003096
+84705 GTPBP3 GTP binding protein 3, mitochondrial protein-coding 50 0.005955
+84706 GPT2 glutamic--pyruvic transaminase 2 protein-coding 54 0.006431
+84707 BEX2 brain expressed X-linked 2 protein-coding 22 0.00262
+84708 LNX1 ligand of numb-protein X 1 protein-coding 286 0.03406
+84709 MGARP mitochondria localized glutamic acid rich protein protein-coding 25 0.002977
+84717 HDGFL2 HDGF like 2 protein-coding 66 0.00786
+84720 PIGO phosphatidylinositol glycan anchor biosynthesis class O protein-coding 108 0.01286
+84722 PSRC1 proline and serine rich coiled-coil 1 protein-coding 26 0.003096
+84725 PLEKHA8 pleckstrin homology domain containing A8 protein-coding 65 0.007741
+84726 PRRC2B proline rich coiled-coil 2B protein-coding 201 0.02394
+84727 SPSB2 splA/ryanodine receptor domain and SOCS box containing 2 protein-coding 32 0.003811
+84733 CBX2 chromobox 2 protein-coding 41 0.004883
+84734 FAM167B family with sequence similarity 167 member B protein-coding 19 0.002263
+84735 CNDP1 carnosine dipeptidase 1 protein-coding 84 0.01
+84747 UNC119B unc-119 lipid binding chaperone B protein-coding 23 0.002739
+84749 USP30 ubiquitin specific peptidase 30 protein-coding 66 0.00786
+84750 FUT10 fucosyltransferase 10 protein-coding 53 0.006312
+84752 B3GNT9 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 9 protein-coding 25 0.002977
+84759 PCGF1 polycomb group ring finger 1 protein-coding 28 0.003335
+84765 ZNF577 zinc finger protein 577 protein-coding 74 0.008813
+84766 CRACR2A calcium release activated channel regulator 2A protein-coding 75 0.008932
+84767 TRIM51 tripartite motif-containing 51 protein-coding 207 0.02465
+84769 MPV17L2 MPV17 mitochondrial inner membrane protein like 2 protein-coding 16 0.001905
+84775 ZNF607 zinc finger protein 607 protein-coding 114 0.01358
+84779 NAA11 N(alpha)-acetyltransferase 11, NatA catalytic subunit protein-coding 40 0.004764
+84787 KMT5C lysine methyltransferase 5C protein-coding 42 0.005002
+84790 TUBA1C tubulin alpha 1c protein-coding 32 0.003811
+84791 LINC00467 long intergenic non-protein coding RNA 467 ncRNA 7 0.0008336
+84792 FAM220A family with sequence similarity 220 member A protein-coding 34 0.004049
+84795 PYROXD2 pyridine nucleotide-disulphide oxidoreductase domain 2 protein-coding 47 0.005597
+84798 C19orf48 chromosome 19 open reading frame 48 protein-coding 14 0.001667
+84803 GPAT3 glycerol-3-phosphate acyltransferase 3 protein-coding 66 0.00786
+84804 MFSD9 major facilitator superfamily domain containing 9 protein-coding 61 0.007264
+84807 NFKBID NFKB inhibitor delta protein-coding 46 0.005478
+84808 PERM1 PPARGC1 and ESRR induced regulator, muscle 1 protein-coding 25 0.002977
+84809 CROCCP2 ciliary rootlet coiled-coil, rootletin pseudogene 2 pseudo 24 0.002858
+84811 BUD13 BUD13 homolog protein-coding 71 0.008455
+84812 PLCD4 phospholipase C delta 4 protein-coding 69 0.008217
+84814 PLPP7 phospholipid phosphatase 7 (inactive) protein-coding 45 0.005359
+84816 RTN4IP1 reticulon 4 interacting protein 1 protein-coding 59 0.007026
+84817 TXNDC17 thioredoxin domain containing 17 protein-coding 11 0.00131
+84818 IL17RC interleukin 17 receptor C protein-coding 70 0.008336
+84820 POLR2J4 RNA polymerase II subunit J4, pseudogene pseudo 38 0.004525
+84823 LMNB2 lamin B2 protein-coding 222 0.02644
+84824 FCRLA Fc receptor like A protein-coding 72 0.008574
+84830 ADTRP androgen dependent TFPI regulating protein protein-coding 32 0.003811
+84833 ATP5MD ATP synthase membrane subunit DAPIT protein-coding 12 0.001429
+84836 ABHD14B abhydrolase domain containing 14B protein-coding 14 0.001667
+84838 ZNF496 zinc finger protein 496 protein-coding 99 0.01179
+84839 RAX2 retina and anterior neural fold homeobox 2 protein-coding 11 0.00131
+84842 HPDL 4-hydroxyphenylpyruvate dioxygenase like protein-coding 29 0.003454
+84844 PHF5A PHD finger protein 5A protein-coding 12 0.001429
+84847 LINC00525 long intergenic non-protein coding RNA 525 ncRNA 5 0.0005955
+84848 MIR503HG MIR503 host gene ncRNA 1 0.0001191
+84851 TRIM52 tripartite motif containing 52 protein-coding 31 0.003692
+84856 LINC00839 long intergenic non-protein coding RNA 839 ncRNA 20 0.002382
+84858 ZNF503 zinc finger protein 503 protein-coding 26 0.003096
+84859 LRCH3 leucine rich repeats and calponin homology domain containing 3 protein-coding 87 0.01036
+84861 KLHL22 kelch like family member 22 protein-coding 79 0.009408
+84864 RIOX2 ribosomal oxygenase 2 protein-coding 59 0.007026
+84865 CCDC142 coiled-coil domain containing 142 protein-coding 53 0.006312
+84866 TMEM25 transmembrane protein 25 protein-coding 44 0.00524
+84867 PTPN5 protein tyrosine phosphatase, non-receptor type 5 protein-coding 89 0.0106
+84868 HAVCR2 hepatitis A virus cellular receptor 2 protein-coding 54 0.006431
+84869 CBR4 carbonyl reductase 4 protein-coding 19 0.002263
+84870 RSPO3 R-spondin 3 protein-coding 43 0.005121
+84871 AGBL4 ATP/GTP binding protein like 4 protein-coding 65 0.007741
+84872 ZC3H10 zinc finger CCCH-type containing 10 protein-coding 42 0.005002
+84873 ADGRG7 adhesion G protein-coupled receptor G7 protein-coding 107 0.01274
+84874 ZNF514 zinc finger protein 514 protein-coding 61 0.007264
+84875 PARP10 poly(ADP-ribose) polymerase family member 10 protein-coding 86 0.01024
+84876 ORAI1 ORAI calcium release-activated calcium modulator 1 protein-coding 18 0.002144
+84878 ZBTB45 zinc finger and BTB domain containing 45 protein-coding 68 0.008098
+84879 MFSD2A major facilitator superfamily domain containing 2A protein-coding 56 0.006669
+84881 RPUSD4 RNA pseudouridylate synthase domain containing 4 protein-coding 40 0.004764
+84883 AIFM2 apoptosis inducing factor, mitochondria associated 2 protein-coding 65 0.007741
+84885 ZDHHC12 zinc finger DHHC-type containing 12 protein-coding 25 0.002977
+84886 C1orf198 chromosome 1 open reading frame 198 protein-coding 37 0.004406
+84888 SPPL2A signal peptide peptidase like 2A protein-coding 51 0.006074
+84889 SLC7A3 solute carrier family 7 member 3 protein-coding 92 0.01096
+84890 ADO 2-aminoethanethiol dioxygenase protein-coding 11 0.00131
+84891 ZSCAN10 zinc finger and SCAN domain containing 10 protein-coding 93 0.01108
+84892 POMGNT2 protein O-linked mannose N-acetylglucosaminyltransferase 2 (beta 1,4-) protein-coding 57 0.006788
+84893 FBH1 F-box DNA helicase 1 protein-coding 120 0.01429
+84894 LINGO1 leucine rich repeat and Ig domain containing 1 protein-coding 117 0.01393
+84895 MIGA2 mitoguardin 2 protein-coding 48 0.005716
+84896 ATAD1 ATPase family, AAA domain containing 1 protein-coding 38 0.004525
+84897 TBRG1 transforming growth factor beta regulator 1 protein-coding 28 0.003335
+84898 PLXDC2 plexin domain containing 2 protein-coding 109 0.01298
+84899 TMTC4 transmembrane and tetratricopeptide repeat containing 4 protein-coding 94 0.01119
+84900 RNFT2 ring finger protein, transmembrane 2 protein-coding 29 0.003454
+84901 NFATC2IP nuclear factor of activated T cells 2 interacting protein protein-coding 41 0.004883
+84902 CEP89 centrosomal protein 89 protein-coding 91 0.01084
+84904 ARHGEF39 Rho guanine nucleotide exchange factor 39 protein-coding 27 0.003215
+84905 ZNF341 zinc finger protein 341 protein-coding 101 0.01203
+84908 FAM136A family with sequence similarity 136 member A protein-coding 14 0.001667
+84909 C9orf3 chromosome 9 open reading frame 3 protein-coding 84 0.01
+84910 TMEM87B transmembrane protein 87B protein-coding 55 0.00655
+84911 ZNF382 zinc finger protein 382 protein-coding 98 0.01167
+84912 SLC35B4 solute carrier family 35 member B4 protein-coding 27 0.003215
+84913 ATOH8 atonal bHLH transcription factor 8 protein-coding 16 0.001905
+84914 ZNF587 zinc finger protein 587 protein-coding 55 0.00655
+84915 FAM222A family with sequence similarity 222 member A protein-coding 32 0.003811
+84916 UTP4 UTP4, small subunit processome component protein-coding 64 0.007622
+84918 LRP11 LDL receptor related protein 11 protein-coding 26 0.003096
+84919 PPP1R15B protein phosphatase 1 regulatory subunit 15B protein-coding 69 0.008217
+84920 ALG10 ALG10, alpha-1,2-glucosyltransferase protein-coding 81 0.009646
+84922 FIZ1 FLT3 interacting zinc finger 1 protein-coding 45 0.005359
+84923 FAM104A family with sequence similarity 104 member A protein-coding 26 0.003096
+84924 ZNF566 zinc finger protein 566 protein-coding 62 0.007384
+84925 DIRC2 disrupted in renal carcinoma 2 protein-coding 55 0.00655
+84926 SPRYD3 SPRY domain containing 3 protein-coding 35 0.004168
+84928 TMEM209 transmembrane protein 209 protein-coding 48 0.005716
+84929 FIBCD1 fibrinogen C domain containing 1 protein-coding 52 0.006193
+84930 MASTL microtubule associated serine/threonine kinase like protein-coding 97 0.01155
+84931 LINC01101 long intergenic non-protein coding RNA 1101 ncRNA 3 0.0003573
+84932 RAB2B RAB2B, member RAS oncogene family protein-coding 17 0.002025
+84933 C8orf76 chromosome 8 open reading frame 76 protein-coding 49 0.005835
+84934 RITA1 RBPJ interacting and tubulin associated 1 protein-coding 24 0.002858
+84935 MEDAG mesenteric estrogen dependent adipogenesis protein-coding 40 0.004764
+84936 ZFYVE19 zinc finger FYVE-type containing 19 protein-coding 32 0.003811
+84937 ZNRF1 zinc and ring finger 1 protein-coding 19 0.002263
+84938 ATG4C autophagy related 4C cysteine peptidase protein-coding 63 0.007503
+84939 MUM1 melanoma associated antigen (mutated) 1 protein-coding 60 0.007145
+84940 CORO6 coronin 6 protein-coding 51 0.006074
+84942 WDR73 WD repeat domain 73 protein-coding 25 0.002977
+84944 MAEL maelstrom spermatogenic transposon silencer protein-coding 104 0.01239
+84945 ABHD13 abhydrolase domain containing 13 protein-coding 51 0.006074
+84946 LTV1 LTV1 ribosome biogenesis factor protein-coding 50 0.005955
+84947 SERAC1 serine active site containing 1 protein-coding 79 0.009408
+84948 TIGD5 tigger transposable element derived 5 protein-coding 40 0.004764
+84950 PRPF38A pre-mRNA processing factor 38A protein-coding 37 0.004406
+84951 TNS4 tensin 4 protein-coding 83 0.009884
+84952 CGNL1 cingulin like 1 protein-coding 126 0.01501
+84953 MICALCL MICAL C-terminal like protein-coding 77 0.00917
+84954 MPND MPN domain containing protein-coding 39 0.004645
+84955 NUDCD1 NudC domain containing 1 protein-coding 69 0.008217
+84957 RELT RELT, TNF receptor protein-coding 45 0.005359
+84958 SYTL1 synaptotagmin like 1 protein-coding 57 0.006788
+84959 UBASH3B ubiquitin associated and SH3 domain containing B protein-coding 79 0.009408
+84960 CCDC183 coiled-coil domain containing 183 protein-coding 52 0.006193
+84961 FBXL20 F-box and leucine rich repeat protein 20 protein-coding 67 0.007979
+84962 AJUBA ajuba LIM protein protein-coding 76 0.009051
+84964 ALKBH6 alkB homolog 6 protein-coding 33 0.00393
+84966 IGSF21 immunoglobin superfamily member 21 protein-coding 80 0.009527
+84967 LSM10 LSM10, U7 small nuclear RNA associated protein-coding 15 0.001786
+84969 TOX2 TOX high mobility group box family member 2 protein-coding 91 0.01084
+84970 C1orf94 chromosome 1 open reading frame 94 protein-coding 123 0.01465
+84971 ATG4D autophagy related 4D cysteine peptidase protein-coding 58 0.006907
+84975 MFSD5 major facilitator superfamily domain containing 5 protein-coding 44 0.00524
+84976 DISP1 dispatched RND transporter family member 1 protein-coding 171 0.02036
+84978 FRMD5 FERM domain containing 5 protein-coding 61 0.007264
+84984 CEP19 centrosomal protein 19 protein-coding 32 0.003811
+84985 FAM83A family with sequence similarity 83 member A protein-coding 45 0.005359
+84986 ARHGAP19 Rho GTPase activating protein 19 protein-coding 63 0.007503
+84987 COX14 COX14, cytochrome c oxidase assembly factor protein-coding 5 0.0005955
+84988 PPP1R16A protein phosphatase 1 regulatory subunit 16A protein-coding 56 0.006669
+84991 RBM17 RNA binding motif protein 17 protein-coding 55 0.00655
+84992 PIGY phosphatidylinositol glycan anchor biosynthesis class Y protein-coding 4 0.0004764
+84993 UBL7 ubiquitin like 7 protein-coding 25 0.002977
+84996 URB1-AS1 URB1 antisense RNA 1 (head to head) ncRNA 4 0.0004764
+85002 FAM86B1 family with sequence similarity 86 member B1 protein-coding 18 0.002144
+85004 RERG RAS like estrogen regulated growth inhibitor protein-coding 36 0.004287
+85007 PHYKPL 5-phosphohydroxy-L-lysine phospho-lyase protein-coding 38 0.004525
+85012 TCEAL3 transcription elongation factor A like 3 protein-coding 36 0.004287
+85013 TMEM128 transmembrane protein 128 protein-coding 15 0.001786
+85014 TMEM141 transmembrane protein 141 protein-coding 8 0.0009527
+85015 USP45 ubiquitin specific peptidase 45 protein-coding 73 0.008694
+85016 CFAP300 cilia and flagella associated protein 300 protein-coding 42 0.005002
+85019 TMEM241 transmembrane protein 241 protein-coding 27 0.003215
+85021 REPS1 RALBP1 associated Eps domain containing 1 protein-coding 127 0.01512
+85025 TMEM60 transmembrane protein 60 protein-coding 13 0.001548
+85026 ARRDC1-AS1 ARRDC1 antisense RNA 1 ncRNA 17 0.002025
+85027 SMIM3 small integral membrane protein 3 protein-coding 5 0.0005955
+85235 HIST1H2AH histone cluster 1 H2A family member h protein-coding 32 0.003811
+85236 HIST1H2BK histone cluster 1 H2B family member k protein-coding 38 0.004525
+85280 KRTAP9-4 keratin associated protein 9-4 protein-coding 18 0.002144
+85285 KRTAP4-1 keratin associated protein 4-1 protein-coding 22 0.00262
+85289 KRTAP4-5 keratin associated protein 4-5 protein-coding 17 0.002025
+85290 KRTAP4-3 keratin associated protein 4-3 protein-coding 27 0.003215
+85291 KRTAP4-2 keratin associated protein 4-2 protein-coding 25 0.002977
+85293 KRTAP3-3 keratin associated protein 3-3 protein-coding 13 0.001548
+85294 KRTAP2-4 keratin associated protein 2-4 protein-coding 5 0.0005955
+85300 ATCAY ATCAY, caytaxin protein-coding 72 0.008574
+85301 COL27A1 collagen type XXVII alpha 1 chain protein-coding 210 0.02501
+85302 FBF1 Fas binding factor 1 protein-coding 102 0.01215
+85313 PPIL4 peptidylprolyl isomerase like 4 protein-coding 64 0.007622
+85315 PAQR8 progestin and adipoQ receptor family member 8 protein-coding 51 0.006074
+85319 BAGE2 BAGE family member 2 protein-coding 472 0.05621
+85320 ABCC11 ATP binding cassette subfamily C member 11 protein-coding 184 0.02191
+85329 LGALS12 galectin 12 protein-coding 194 0.0231
+85344 KRT89P keratin 89 pseudogene pseudo 30 0.003573
+85349 KRT87P keratin 87 pseudogene pseudo 74 0.008813
+85352 SHISAL1 shisa like 1 protein-coding 38 0.004525
+85358 SHANK3 SH3 and multiple ankyrin repeat domains 3 protein-coding 104 0.01239
+85359 DGCR6L DiGeorge syndrome critical region gene 6 like protein-coding 18 0.002144
+85360 SYDE1 synapse defective Rho GTPase homolog 1 protein-coding 72 0.008574
+85363 TRIM5 tripartite motif containing 5 protein-coding 60 0.007145
+85364 ZCCHC3 zinc finger CCHC-type containing 3 protein-coding 19 0.002263
+85365 ALG2 ALG2, alpha-1,3/1,6-mannosyltransferase protein-coding 36 0.004287
+85366 MYLK2 myosin light chain kinase 2 protein-coding 86 0.01024
+85369 STRIP1 striatin interacting protein 1 protein-coding 78 0.009289
+85376 RIMBP3 RIMS binding protein 3 protein-coding 93 0.01108
+85377 MICALL1 MICAL like 1 protein-coding 73 0.008694
+85378 TUBGCP6 tubulin gamma complex associated protein 6 protein-coding 160 0.01905
+85379 KIAA1671 KIAA1671 protein-coding 17 0.002025
+85395 FAM207A family with sequence similarity 207 member A protein-coding 22 0.00262
+85397 RGS8 regulator of G protein signaling 8 protein-coding 40 0.004764
+85403 EAF1 ELL associated factor 1 protein-coding 16 0.001905
+85406 DNAJC14 DnaJ heat shock protein family (Hsp40) member C14 protein-coding 98 0.01167
+85407 NKD1 naked cuticle homolog 1 protein-coding 63 0.007503
+85409 NKD2 naked cuticle homolog 2 protein-coding 56 0.006669
+85413 SLC22A16 solute carrier family 22 member 16 protein-coding 97 0.01155
+85414 SLC45A3 solute carrier family 45 member 3 protein-coding 55 0.00655
+85415 RHPN2 rhophilin Rho GTPase binding protein 2 protein-coding 75 0.008932
+85416 ZIC5 Zic family member 5 protein-coding 45 0.005359
+85417 CCNB3 cyclin B3 protein-coding 193 0.02298
+85437 ZCRB1 zinc finger CCHC-type and RNA binding motif containing 1 protein-coding 32 0.003811
+85438 CABS1 calcium binding protein, spermatid associated 1 protein-coding 73 0.008694
+85439 STON2 stonin 2 protein-coding 96 0.01143
+85440 DOCK7 dedicator of cytokinesis 7 protein-coding 205 0.02441
+85441 HELZ2 helicase with zinc finger 2 protein-coding 221 0.02632
+85442 KNDC1 kinase non-catalytic C-lobe domain containing 1 protein-coding 198 0.02358
+85443 DCLK3 doublecortin like kinase 3 protein-coding 100 0.01191
+85444 LRRCC1 leucine rich repeat and coiled-coil centrosomal protein 1 protein-coding 151 0.01798
+85445 CNTNAP4 contactin associated protein like 4 protein-coding 270 0.03215
+85446 ZFHX2 zinc finger homeobox 2 protein-coding 63 0.007503
+85449 KIAA1755 KIAA1755 protein-coding 167 0.01989
+85450 ITPRIP inositol 1,4,5-trisphosphate receptor interacting protein protein-coding 57 0.006788
+85451 UNK unkempt family zinc finger protein-coding 72 0.008574
+85452 CFAP74 cilia and flagella associated protein 74 protein-coding 20 0.002382
+85453 TSPYL5 TSPY like 5 protein-coding 78 0.009289
+85455 DISP2 dispatched RND transporter family member 2 protein-coding 120 0.01429
+85456 TNKS1BP1 tankyrase 1 binding protein 1 protein-coding 176 0.02096
+85457 CIPC CLOCK interacting pacemaker protein-coding 34 0.004049
+85458 DIXDC1 DIX domain containing 1 protein-coding 65 0.007741
+85459 CEP295 centrosomal protein 295 protein-coding 114 0.01358
+85460 ZNF518B zinc finger protein 518B protein-coding 134 0.01596
+85461 TANC1 tetratricopeptide repeat, ankyrin repeat and coiled-coil containing 1 protein-coding 175 0.02084
+85462 FHDC1 FH2 domain containing 1 protein-coding 145 0.01727
+85463 ZC3H12C zinc finger CCCH-type containing 12C protein-coding 104 0.01239
+85464 SSH2 slingshot protein phosphatase 2 protein-coding 155 0.01846
+85465 SELENOI selenoprotein I protein-coding 40 0.004764
+85474 LBX2 ladybird homeobox 2 protein-coding 18 0.002144
+85476 GFM1 G elongation factor mitochondrial 1 protein-coding 78 0.009289
+85477 SCIN scinderin protein-coding 85 0.01012
+85478 CCDC65 coiled-coil domain containing 65 protein-coding 44 0.00524
+85479 DNAJC5B DnaJ heat shock protein family (Hsp40) member C5 beta protein-coding 47 0.005597
+85480 TSLP thymic stromal lymphopoietin protein-coding 25 0.002977
+85481 PSKH2 protein serine kinase H2 protein-coding 85 0.01012
+85508 SCRT2 scratch family transcriptional repressor 2 protein-coding 19 0.002263
+85509 MBD3L1 methyl-CpG binding domain protein 3 like 1 protein-coding 36 0.004287
+85569 GALP galanin like peptide protein-coding 23 0.002739
+85865 GTPBP10 GTP binding protein 10 protein-coding 46 0.005478
+87178 PNPT1 polyribonucleotide nucleotidyltransferase 1 protein-coding 81 0.009646
+87769 GGACT gamma-glutamylamine cyclotransferase protein-coding 4 0.0004764
+88455 ANKRD13A ankyrin repeat domain 13A protein-coding 56 0.006669
+88745 RRP36 ribosomal RNA processing 36 protein-coding 25 0.002977
+89122 TRIM4 tripartite motif containing 4 protein-coding 49 0.005835
+89765 RSPH1 radial spoke head 1 homolog protein-coding 40 0.004764
+89766 UMODL1 uromodulin like 1 protein-coding 168 0.02001
+89777 SERPINB12 serpin family B member 12 protein-coding 71 0.008455
+89778 SERPINB11 serpin family B member 11 (gene/pseudogene) protein-coding 73 0.008694
+89780 WNT3A Wnt family member 3A protein-coding 61 0.007264
+89781 HPS4 HPS4, biogenesis of lysosomal organelles complex 3 subunit 2 protein-coding 86 0.01024
+89782 LMLN leishmanolysin like peptidase protein-coding 82 0.009765
+89790 SIGLEC10 sialic acid binding Ig like lectin 10 protein-coding 130 0.01548
+89792 GAL3ST3 galactose-3-O-sulfotransferase 3 protein-coding 105 0.0125
+89795 NAV3 neuron navigator 3 protein-coding 529 0.063
+89796 NAV1 neuron navigator 1 protein-coding 193 0.02298
+89797 NAV2 neuron navigator 2 protein-coding 273 0.03251
+89801 PPP1R3F protein phosphatase 1 regulatory subunit 3F protein-coding 64 0.007622
+89822 KCNK17 potassium two pore domain channel subfamily K member 17 protein-coding 39 0.004645
+89832 CHRFAM7A CHRNA7 (exons 5-10) and FAM7A (exons A-E) fusion protein-coding 38 0.004525
+89837 ULK4P3 ULK4 pseudogene 3 pseudo 5 0.0005955
+89839 ARHGAP11B Rho GTPase activating protein 11B protein-coding 31 0.003692
+89845 ABCC10 ATP binding cassette subfamily C member 10 protein-coding 134 0.01596
+89846 FGD3 FYVE, RhoGEF and PH domain containing 3 protein-coding 100 0.01191
+89848 FCHSD1 FCH and double SH3 domains 1 protein-coding 66 0.00786
+89849 ATG16L2 autophagy related 16 like 2 protein-coding 38 0.004525
+89853 MVB12B multivesicular body subunit 12B protein-coding 36 0.004287
+89857 KLHL6 kelch like family member 6 protein-coding 111 0.01322
+89858 SIGLEC12 sialic acid binding Ig like lectin 12 (gene/pseudogene) protein-coding 104 0.01239
+89866 SEC16B SEC16 homolog B, endoplasmic reticulum export factor protein-coding 128 0.01524
+89869 PLCZ1 phospholipase C zeta 1 protein-coding 93 0.01108
+89870 TRIM15 tripartite motif containing 15 protein-coding 49 0.005835
+89872 AQP10 aquaporin 10 protein-coding 56 0.006669
+89874 SLC25A21 solute carrier family 25 member 21 protein-coding 80 0.009527
+89876 MAATS1 MYCBP associated and testis expressed 1 protein-coding 140 0.01667
+89882 TPD52L3 tumor protein D52 like 3 protein-coding 24 0.002858
+89883 OR6W1P olfactory receptor family 6 subfamily W member 1 pseudogene pseudo 15 0.001786
+89884 LHX4 LIM homeobox 4 protein-coding 53 0.006312
+89885 FATE1 fetal and adult testis expressed 1 protein-coding 43 0.005121
+89886 SLAMF9 SLAM family member 9 protein-coding 55 0.00655
+89887 ZNF628 zinc finger protein 628 protein-coding 74 0.008813
+89890 KBTBD6 kelch repeat and BTB domain containing 6 protein-coding 82 0.009765
+89891 WDR34 WD repeat domain 34 protein-coding 40 0.004764
+89894 TMEM116 transmembrane protein 116 protein-coding 21 0.002501
+89910 UBE3B ubiquitin protein ligase E3B protein-coding 133 0.01584
+89927 C16orf45 chromosome 16 open reading frame 45 protein-coding 29 0.003454
+89932 PAPLN papilin, proteoglycan like sulfated glycoprotein protein-coding 106 0.01262
+89941 RHOT2 ras homolog family member T2 protein-coding 44 0.00524
+89944 GLB1L2 galactosidase beta 1 like 2 protein-coding 98 0.01167
+89953 KLC4 kinesin light chain 4 protein-coding 61 0.007264
+89958 SAPCD2 suppressor APC domain containing 2 protein-coding 18 0.002144
+89970 RSPRY1 ring finger and SPRY domain containing 1 protein-coding 53 0.006312
+89978 DPH6 diphthamine biosynthesis 6 protein-coding 28 0.003335
+90007 MIDN midnolin protein-coding 45 0.005359
+90011 KIR3DX1 killer cell immunoglobulin like receptor, three Ig domains X1 pseudo 68 0.008098
+90019 SYT8 synaptotagmin 8 protein-coding 28 0.003335
+90025 UBE3D ubiquitin protein ligase E3D protein-coding 55 0.00655
+90050 FAM181A family with sequence similarity 181 member A protein-coding 42 0.005002
+90060 CCDC120 coiled-coil domain containing 120 protein-coding 71 0.008455
+90070 LACRT lacritin protein-coding 32 0.003811
+90075 ZNF30 zinc finger protein 30 protein-coding 65 0.007741
+90102 PHLDB2 pleckstrin homology like domain family B member 2 protein-coding 172 0.02048
+90113 VWA5B2 von Willebrand factor A domain containing 5B2 protein-coding 74 0.008813
+90120 TMEM250 transmembrane protein 250 protein-coding 13 0.001548
+90121 TSR2 TSR2, ribosome maturation factor protein-coding 24 0.002858
+90134 KCNH7 potassium voltage-gated channel subfamily H member 7 protein-coding 235 0.02799
+90135 BTBD6 BTB domain containing 6 protein-coding 39 0.004645
+90139 TSPAN18 tetraspanin 18 protein-coding 30 0.003573
+90141 EFCAB11 EF-hand calcium binding domain 11 protein-coding 20 0.002382
+90161 HS6ST2 heparan sulfate 6-O-sulfotransferase 2 protein-coding 74 0.008813
+90167 FRMD7 FERM domain containing 7 protein-coding 111 0.01322
+90187 EMILIN3 elastin microfibril interfacer 3 protein-coding 81 0.009646
+90196 SYS1 SYS1, golgi trafficking protein protein-coding 19 0.002263
+90199 WFDC8 WAP four-disulfide core domain 8 protein-coding 38 0.004525
+90203 SNX21 sorting nexin family member 21 protein-coding 30 0.003573
+90204 ZSWIM1 zinc finger SWIM-type containing 1 protein-coding 41 0.004883
+90226 UCN2 urocortin 2 protein-coding 8 0.0009527
+90231 KIAA2013 KIAA2013 protein-coding 33 0.00393
+90233 ZNF551 zinc finger protein 551 protein-coding 93 0.01108
+90249 UNC5A unc-5 netrin receptor A protein-coding 110 0.0131
+90268 OTULIN OTU deubiquitinase with linear linkage specificity protein-coding 55 0.00655
+90273 CEACAM21 carcinoembryonic antigen related cell adhesion molecule 21 protein-coding 40 0.004764
+90288 EFCAB12 EF-hand calcium binding domain 12 protein-coding 63 0.007503
+90293 KLHL13 kelch like family member 13 protein-coding 101 0.01203
+90313 TP53I13 tumor protein p53 inducible protein 13 protein-coding 33 0.00393
+90316 TGIF2LX TGFB induced factor homeobox 2 like, X-linked protein-coding 104 0.01239
+90317 ZNF616 zinc finger protein 616 protein-coding 125 0.01489
+90321 ZNF766 zinc finger protein 766 protein-coding 65 0.007741
+90324 CCDC97 coiled-coil domain containing 97 protein-coding 41 0.004883
+90326 THAP3 THAP domain containing 3 protein-coding 28 0.003335
+90332 EXOC3L2 exocyst complex component 3 like 2 protein-coding 50 0.005955
+90333 ZNF468 zinc finger protein 468 protein-coding 69 0.008217
+90338 ZNF160 zinc finger protein 160 protein-coding 181 0.02156
+90342 FER1L5 fer-1 like family member 5 protein-coding 115 0.0137
+90353 CTU1 cytosolic thiouridylase subunit 1 protein-coding 7 0.0008336
+90355 C5orf30 chromosome 5 open reading frame 30 protein-coding 16 0.001905
+90362 FAM110B family with sequence similarity 110 member B protein-coding 70 0.008336
+90378 SAMD1 sterile alpha motif domain containing 1 protein-coding 25 0.002977
+90379 DCAF15 DDB1 and CUL4 associated factor 15 protein-coding 47 0.005597
+90381 TICRR TOPBP1 interacting checkpoint and replication regulator protein-coding 151 0.01798
+90390 MED30 mediator complex subunit 30 protein-coding 20 0.002382
+90407 TMEM41A transmembrane protein 41A protein-coding 29 0.003454
+90410 IFT20 intraflagellar transport 20 protein-coding 14 0.001667
+90411 MCFD2 multiple coagulation factor deficiency 2 protein-coding 15 0.001786
+90416 CCDC32 coiled-coil domain containing 32 protein-coding 20 0.002382
+90417 KNSTRN kinetochore localized astrin (SPAG5) binding protein protein-coding 46 0.005478
+90423 ATP6V1E2 ATPase H+ transporting V1 subunit E2 protein-coding 34 0.004049
+90427 BMF Bcl2 modifying factor protein-coding 25 0.002977
+90441 ZNF622 zinc finger protein 622 protein-coding 66 0.00786
+90459 ERI1 exoribonuclease 1 protein-coding 23 0.002739
+90480 GADD45GIP1 GADD45G interacting protein 1 protein-coding 22 0.00262
+90485 ZNF835 zinc finger protein 835 protein-coding 170 0.02025
+90488 TMEM263 transmembrane protein 263 protein-coding 6 0.0007145
+90506 LRRC46 leucine rich repeat containing 46 protein-coding 34 0.004049
+90507 SCRN2 secernin 2 protein-coding 49 0.005835
+90522 YIF1B Yip1 interacting factor homolog B, membrane trafficking protein protein-coding 27 0.003215
+90523 MLIP muscular LMNA interacting protein protein-coding 74 0.008813
+90525 SHF Src homology 2 domain containing F protein-coding 42 0.005002
+90527 DUOXA1 dual oxidase maturation factor 1 protein-coding 42 0.005002
+90529 STPG1 sperm tail PG-rich repeat containing 1 protein-coding 46 0.005478
+90550 MCU mitochondrial calcium uniporter protein-coding 31 0.003692
+90557 CCDC74A coiled-coil domain containing 74A protein-coding 68 0.008098
+90576 ZNF799 zinc finger protein 799 protein-coding 83 0.009884
+90580 TIMM29 translocase of inner mitochondrial membrane 29 protein-coding 10 0.001191
+90586 AOC4P amine oxidase, copper containing 4, pseudogene pseudo 86 0.01024
+90589 ZNF625 zinc finger protein 625 protein-coding 59 0.007026
+90592 ZNF700 zinc finger protein 700 protein-coding 105 0.0125
+90594 ZNF439 zinc finger protein 439 protein-coding 74 0.008813
+90624 LYRM7 LYR motif containing 7 protein-coding 10 0.001191
+90625 ERVH48-1 endogenous retrovirus group 48 member 1 protein-coding 11 0.00131
+90627 STARD13 StAR related lipid transfer domain containing 13 protein-coding 127 0.01512
+90632 LINC00473 long intergenic non-protein coding RNA 473 ncRNA 5 0.0005955
+90634 N4BP2L1 NEDD4 binding protein 2 like 1 protein-coding 25 0.002977
+90637 ZFAND2A zinc finger AN1-type containing 2A protein-coding 19 0.002263
+90639 COX19 COX19, cytochrome c oxidase assembly factor protein-coding 15 0.001786
+90649 ZNF486 zinc finger protein 486 protein-coding 83 0.009884
+90655 TGIF2LY TGFB induced factor homeobox 2 like, Y-linked protein-coding 14 0.001667
+90665 TBL1Y transducin beta like 1 Y-linked protein-coding 22 0.00262
+90668 CARMIL3 capping protein regulator and myosin 1 linker 3 protein-coding 152 0.0181
+90678 LRSAM1 leucine rich repeat and sterile alpha motif containing 1 protein-coding 79 0.009408
+90693 CCDC126 coiled-coil domain containing 126 protein-coding 16 0.001905
+90701 SEC11C SEC11 homolog C, signal peptidase complex subunit protein-coding 23 0.002739
+90736 FAM104B family with sequence similarity 104 member B protein-coding 14 0.001667
+90737 PAGE5 PAGE family member 5 protein-coding 24 0.002858
+90780 PYGO2 pygopus family PHD finger 2 protein-coding 59 0.007026
+90799 CEP95 centrosomal protein 95 protein-coding 88 0.01048
+90806 ANGEL2 angel homolog 2 protein-coding 46 0.005478
+90809 PIP4P1 phosphatidylinositol-4,5-bisphosphate 4-phosphatase 1 protein-coding 28 0.003335
+90826 PRMT9 protein arginine methyltransferase 9 protein-coding 78 0.009289
+90827 ZNF479 zinc finger protein 479 protein-coding 220 0.0262
+90835 CCDC189 coiled-coil domain containing 189 protein-coding 33 0.00393
+90843 TCEAL8 transcription elongation factor A like 8 protein-coding 19 0.002263
+90850 ZNF598 zinc finger protein 598 protein-coding 78 0.009289
+90853 SPOCD1 SPOC domain containing 1 protein-coding 108 0.01286
+90864 SPSB3 splA/ryanodine receptor domain and SOCS box containing 3 protein-coding 45 0.005359
+90865 IL33 interleukin 33 protein-coding 34 0.004049
+90871 DMAC1 distal membrane arm assembly complex 1 protein-coding 14 0.001667
+90874 ZNF697 zinc finger protein 697 protein-coding 57 0.006788
+90933 TRIM41 tripartite motif containing 41 protein-coding 65 0.007741
+90952 ESAM endothelial cell adhesion molecule protein-coding 50 0.005955
+90956 ADCK2 aarF domain containing kinase 2 protein-coding 57 0.006788
+90957 DHX57 DExH-box helicase 57 protein-coding 133 0.01584
+90987 ZNF251 zinc finger protein 251 protein-coding 85 0.01012
+90990 KIFC2 kinesin family member C2 protein-coding 81 0.009646
+90993 CREB3L1 cAMP responsive element binding protein 3 like 1 protein-coding 50 0.005955
+91010 FMNL3 formin like 3 protein-coding 305 0.03632
+91012 CERS5 ceramide synthase 5 protein-coding 40 0.004764
+91039 DPP9 dipeptidyl peptidase 9 protein-coding 89 0.0106
+91050 CCDC149 coiled-coil domain containing 149 protein-coding 42 0.005002
+91056 AP5B1 adaptor related protein complex 5 beta 1 subunit protein-coding 48 0.005716
+91057 CCDC34 coiled-coil domain containing 34 protein-coding 46 0.005478
+91074 ANKRD30A ankyrin repeat domain 30A protein-coding 336 0.04001
+91107 TRIM47 tripartite motif containing 47 protein-coding 43 0.005121
+91120 ZNF682 zinc finger protein 682 protein-coding 70 0.008336
+91133 L3MBTL4 L3MBTL4, histone methyl-lysine binding protein protein-coding 103 0.01227
+91137 SLC25A46 solute carrier family 25 member 46 protein-coding 42 0.005002
+91147 TMEM67 transmembrane protein 67 protein-coding 103 0.01227
+91151 TIGD7 tigger transposable element derived 7 protein-coding 76 0.009051
+91156 IGFN1 immunoglobulin-like and fibronectin type III domain containing 1 protein-coding 154 0.01834
+91179 SCARF2 scavenger receptor class F member 2 protein-coding 49 0.005835
+91181 NUP210L nucleoporin 210 like protein-coding 225 0.0268
+91227 GGTLC2 gamma-glutamyltransferase light chain 2 protein-coding 19 0.002263
+91252 SLC39A13 solute carrier family 39 member 13 protein-coding 28 0.003335
+91272 BOD1 biorientation of chromosomes in cell division 1 protein-coding 15 0.001786
+91283 MSANTD3 Myb/SANT DNA binding domain containing 3 protein-coding 40 0.004764
+91289 LMF2 lipase maturation factor 2 protein-coding 70 0.008336
+91298 C12orf29 chromosome 12 open reading frame 29 protein-coding 27 0.003215
+91300 R3HDM4 R3H domain containing 4 protein-coding 28 0.003335
+91304 TMEM259 transmembrane protein 259 protein-coding 34 0.004049
+91316 GUSBP11 glucuronidase, beta pseudogene 11 pseudo 23 0.002739
+91319 DERL3 derlin 3 protein-coding 20 0.002382
+91351 DDX60L DExD/H-box 60 like protein-coding 163 0.01941
+91355 LRP5L LDL receptor related protein 5 like protein-coding 28 0.003335
+91368 CDKN2AIPNL CDKN2A interacting protein N-terminal like protein-coding 10 0.001191
+91369 ANKRD40 ankyrin repeat domain 40 protein-coding 39 0.004645
+91373 UAP1L1 UDP-N-acetylglucosamine pyrophosphorylase 1 like 1 protein-coding 36 0.004287
+91392 ZNF502 zinc finger protein 502 protein-coding 91 0.01084
+91404 SESTD1 SEC14 and spectrin domain containing 1 protein-coding 103 0.01227
+91408 BTF3L4 basic transcription factor 3 like 4 protein-coding 15 0.001786
+91409 CCDC74B coiled-coil domain containing 74B protein-coding 69 0.008217
+91419 ATP23 ATP23 metallopeptidase and ATP synthase assembly factor homolog protein-coding 25 0.002977
+91433 RCCD1 RCC1 domain containing 1 protein-coding 14 0.001667
+91442 FAAP24 Fanconi anemia core complex associated protein 24 protein-coding 39 0.004645
+91445 RNF185 ring finger protein 185 protein-coding 26 0.003096
+91452 ACBD5 acyl-CoA binding domain containing 5 protein-coding 60 0.007145
+91461 PKDCC protein kinase domain containing, cytoplasmic protein-coding 33 0.00393
+91464 ISX intestine specific homeobox protein-coding 39 0.004645
+91522 COL23A1 collagen type XXIII alpha 1 chain protein-coding 57 0.006788
+91523 PCED1B PC-esterase domain containing 1B protein-coding 62 0.007384
+91526 ANKRD44 ankyrin repeat domain 44 protein-coding 111 0.01322
+91543 RSAD2 radical S-adenosyl methionine domain containing 2 protein-coding 62 0.007384
+91544 UBXN11 UBX domain protein 11 protein-coding 44 0.00524
+91574 C12orf65 chromosome 12 open reading frame 65 protein-coding 25 0.002977
+91582 RPS19BP1 ribosomal protein S19 binding protein 1 protein-coding 5 0.0005955
+91584 PLXNA4 plexin A4 protein-coding 377 0.0449
+91603 ZNF830 zinc finger protein 830 protein-coding 36 0.004287
+91607 SLFN11 schlafen family member 11 protein-coding 137 0.01632
+91608 RASL10B RAS like family 10 member B protein-coding 28 0.003335
+91612 CHURC1 churchill domain containing 1 protein-coding 6 0.0007145
+91614 DEPDC7 DEP domain containing 7 protein-coding 63 0.007503
+91624 NEXN nexilin F-actin binding protein protein-coding 94 0.01119
+91646 TDRD12 tudor domain containing 12 protein-coding 46 0.005478
+91647 ATPAF2 ATP synthase mitochondrial F1 complex assembly factor 2 protein-coding 18 0.002144
+91653 BOC BOC cell adhesion associated, oncogene regulated protein-coding 132 0.01572
+91661 ZNF765 zinc finger protein 765 protein-coding 73 0.008694
+91662 NLRP12 NLR family pyrin domain containing 12 protein-coding 226 0.02691
+91663 MYADM myeloid associated differentiation marker protein-coding 50 0.005955
+91664 ZNF845 zinc finger protein 845 protein-coding 130 0.01548
+91683 SYT12 synaptotagmin 12 protein-coding 106 0.01262
+91687 CENPL centromere protein L protein-coding 35 0.004168
+91689 SMDT1 single-pass membrane protein with aspartate rich tail 1 protein-coding 7 0.0008336
+91694 LONRF1 LON peptidase N-terminal domain and ring finger 1 protein-coding 64 0.007622
+91703 ACY3 aminoacylase 3 protein-coding 42 0.005002
+91734 IDI2 isopentenyl-diphosphate delta isomerase 2 protein-coding 27 0.003215
+91746 YTHDC1 YTH domain containing 1 protein-coding 122 0.01453
+91748 ELMSAN1 ELM2 and Myb/SANT domain containing 1 protein-coding 137 0.01632
+91749 MFSD4B major facilitator superfamily domain containing 4B protein-coding 64 0.007622
+91750 LIN52 lin-52 DREAM MuvB core complex component protein-coding 9 0.001072
+91752 ZNF804A zinc finger protein 804A protein-coding 362 0.04311
+91754 NEK9 NIMA related kinase 9 protein-coding 81 0.009646
+91768 CABLES1 Cdk5 and Abl enzyme substrate 1 protein-coding 50 0.005955
+91775 NXPE3 neurexophilin and PC-esterase domain family member 3 protein-coding 72 0.008574
+91782 CHMP7 charged multivesicular body protein 7 protein-coding 43 0.005121
+91801 ALKBH8 alkB homolog 8, tRNA methyltransferase protein-coding 53 0.006312
+91807 MYLK3 myosin light chain kinase 3 protein-coding 106 0.01262
+91828 EXOC3L4 exocyst complex component 3 like 4 protein-coding 45 0.005359
+91833 WDR20 WD repeat domain 20 protein-coding 49 0.005835
+91851 CHRDL1 chordin like 1 protein-coding 93 0.01108
+91860 CALML4 calmodulin like 4 protein-coding 16 0.001905
+91862 MARVELD3 MARVEL domain containing 3 protein-coding 44 0.00524
+91869 RFT1 RFT1 homolog protein-coding 35 0.004168
+91875 TTC5 tetratricopeptide repeat domain 5 protein-coding 47 0.005597
+91893 FDXACB1 ferredoxin-fold anticodon binding domain containing 1 protein-coding 49 0.005835
+91894 C11orf52 chromosome 11 open reading frame 52 protein-coding 16 0.001905
+91937 TIMD4 T cell immunoglobulin and mucin domain containing 4 protein-coding 94 0.01119
+91942 NDUFAF2 NADH:ubiquinone oxidoreductase complex assembly factor 2 protein-coding 17 0.002025
+91947 ARRDC4 arrestin domain containing 4 protein-coding 43 0.005121
+91948 LINC00923 long intergenic non-protein coding RNA 923 ncRNA 5 0.0005955
+91949 COG7 component of oligomeric golgi complex 7 protein-coding 75 0.008932
+91966 CXorf40A chromosome X open reading frame 40A protein-coding 28 0.003335
+91975 ZNF300 zinc finger protein 300 protein-coding 103 0.01227
+91977 MYOZ3 myozenin 3 protein-coding 29 0.003454
+91978 TPGS1 tubulin polyglutamylase complex subunit 1 protein-coding 4 0.0004764
+92002 CCNQ cyclin Q protein-coding 80 0.009527
+92014 SLC25A51 solute carrier family 25 member 51 protein-coding 34 0.004049
+92017 SNX29 sorting nexin 29 protein-coding 105 0.0125
+92086 GGTLC1 gamma-glutamyltransferase light chain 1 protein-coding 54 0.006431
+92092 ZC3HAV1L zinc finger CCCH-type containing, antiviral 1 like protein-coding 13 0.001548
+92104 TTC30A tetratricopeptide repeat domain 30A protein-coding 80 0.009527
+92105 INTS4 integrator complex subunit 4 protein-coding 106 0.01262
+92106 OXNAD1 oxidoreductase NAD binding domain containing 1 protein-coding 43 0.005121
+92126 DSEL dermatan sulfate epimerase like protein-coding 223 0.02656
+92129 RIPPLY1 ripply transcriptional repressor 1 protein-coding 17 0.002025
+92140 MTDH metadherin protein-coding 73 0.008694
+92154 MTSS1L MTSS1L, I-BAR domain containing protein-coding 62 0.007384
+92162 TMEM88 transmembrane protein 88 protein-coding 18 0.002144
+92170 MTG1 mitochondrial ribosome associated GTPase 1 protein-coding 41 0.004883
+92181 UBTD2 ubiquitin domain containing 2 protein-coding 25 0.002977
+92196 DAPL1 death associated protein like 1 protein-coding 13 0.001548
+92211 CDHR1 cadherin related family member 1 protein-coding 125 0.01489
+92235 DUSP27 dual specificity phosphatase 27, atypical protein-coding 240 0.02858
+92241 RCSD1 RCSD domain containing 1 protein-coding 55 0.00655
+92255 LMBRD2 LMBR1 domain containing 2 protein-coding 101 0.01203
+92259 MRPS36 mitochondrial ribosomal protein S36 protein-coding 15 0.001786
+92270 ATP6AP1L ATPase H+ transporting accessory protein 1 like protein-coding 30 0.003573
+92283 ZNF461 zinc finger protein 461 protein-coding 85 0.01012
+92285 ZNF585B zinc finger protein 585B protein-coding 127 0.01512
+92291 CAPN13 calpain 13 protein-coding 114 0.01358
+92292 GLYATL1 glycine-N-acyltransferase like 1 protein-coding 79 0.009408
+92293 TMEM132C transmembrane protein 132C protein-coding 131 0.0156
+92304 SCGB3A1 secretoglobin family 3A member 1 protein-coding 6 0.0007145
+92305 TMEM129 transmembrane protein 129 protein-coding 16 0.001905
+92312 MEX3A mex-3 RNA binding family member A protein-coding 48 0.005716
+92335 STRADA STE20-related kinase adaptor alpha protein-coding 54 0.006431
+92340 PRR29 proline rich 29 protein-coding 11 0.00131
+92342 METTL18 methyltransferase like 18 protein-coding 41 0.004883
+92344 GORAB golgin, RAB6 interacting protein-coding 54 0.006431
+92345 NAF1 nuclear assembly factor 1 ribonucleoprotein protein-coding 60 0.007145
+92346 C1orf105 chromosome 1 open reading frame 105 protein-coding 31 0.003692
+92359 CRB3 crumbs 3, cell polarity complex component protein-coding 12 0.001429
+92369 SPSB4 splA/ryanodine receptor domain and SOCS box containing 4 protein-coding 40 0.004764
+92370 PXYLP1 2-phosphoxylose phosphatase 1 protein-coding 48 0.005716
+92399 MRRF mitochondrial ribosome recycling factor protein-coding 18 0.002144
+92400 RBM18 RNA binding motif protein 18 protein-coding 29 0.003454
+92421 CHMP4C charged multivesicular body protein 4C protein-coding 30 0.003573
+92482 BBIP1 BBSome interacting protein 1 protein-coding 3 0.0003573
+92483 LDHAL6B lactate dehydrogenase A like 6B protein-coding 45 0.005359
+92521 SPECC1 sperm antigen with calponin homology and coiled-coil domains 1 protein-coding 138 0.01643
+92552 ATXN3L ataxin 3 like protein-coding 54 0.006431
+92558 BICDL1 BICD family like cargo adaptor 1 protein-coding 57 0.006788
+92565 FANK1 fibronectin type III and ankyrin repeat domains 1 protein-coding 57 0.006788
+92579 G6PC3 glucose-6-phosphatase catalytic subunit 3 protein-coding 26 0.003096
+92591 ASB16 ankyrin repeat and SOCS box containing 16 protein-coding 44 0.00524
+92595 ZNF764 zinc finger protein 764 protein-coding 36 0.004287
+92597 MOB1B MOB kinase activator 1B protein-coding 25 0.002977
+92609 TIMM50 translocase of inner mitochondrial membrane 50 protein-coding 42 0.005002
+92610 TIFA TRAF interacting protein with forkhead associated domain protein-coding 15 0.001786
+92667 MGME1 mitochondrial genome maintenance exonuclease 1 protein-coding 40 0.004764
+92675 DTD1 D-tyrosyl-tRNA deacylase 1 protein-coding 67 0.007979
+92689 FAM114A1 family with sequence similarity 114 member A1 protein-coding 61 0.007264
+92691 TMEM169 transmembrane protein 169 protein-coding 55 0.00655
+92703 TMEM183A transmembrane protein 183A protein-coding 33 0.00393
+92714 ARRDC1 arrestin domain containing 1 protein-coding 37 0.004406
+92715 DPH7 diphthamide biosynthesis 7 protein-coding 28 0.003335
+92736 OTOP2 otopetrin 2 protein-coding 64 0.007622
+92737 DNER delta/notch like EGF repeat containing protein-coding 126 0.01501
+92745 SLC38A5 solute carrier family 38 member 5 protein-coding 44 0.00524
+92747 BPIFB1 BPI fold containing family B member 1 protein-coding 67 0.007979
+92749 DRC1 dynein regulatory complex subunit 1 protein-coding 95 0.01131
+92755 TUBBP1 tubulin beta pseudogene 1 pseudo 83 0.009884
+92797 HELB DNA helicase B protein-coding 135 0.01608
+92799 SHKBP1 SH3KBP1 binding protein 1 protein-coding 75 0.008932
+92806 CENPBD1 CENPB DNA-binding domain containing 1 protein-coding 18 0.002144
+92815 HIST3H2A histone cluster 3 H2A protein-coding 22 0.00262
+92822 ZNF276 zinc finger protein 276 protein-coding 68 0.008098
+92840 REEP6 receptor accessory protein 6 protein-coding 16 0.001905
+92856 IMP4 IMP4, U3 small nucleolar ribonucleoprotein protein-coding 41 0.004883
+92906 HNRNPLL heterogeneous nuclear ribonucleoprotein L like protein-coding 45 0.005359
+92912 UBE2Q2 ubiquitin conjugating enzyme E2 Q2 protein-coding 36 0.004287
+92922 CCDC102A coiled-coil domain containing 102A protein-coding 49 0.005835
+92935 MARS2 methionyl-tRNA synthetase 2, mitochondrial protein-coding 70 0.008336
+92949 ADAMTSL1 ADAMTS like 1 protein-coding 245 0.02918
+92960 PEX11G peroxisomal biogenesis factor 11 gamma protein-coding 21 0.002501
+92979 MARCH9 membrane associated ring-CH-type finger 9 protein-coding 21 0.002501
+92999 ZBTB47 zinc finger and BTB domain containing 47 protein-coding 51 0.006074
+93010 B3GNT7 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 7 protein-coding 45 0.005359
+93034 NT5C1B 5'-nucleotidase, cytosolic IB protein-coding 107 0.01274
+93035 PKHD1L1 PKHD1 like 1 protein-coding 543 0.06467
+93058 COQ10A coenzyme Q10A protein-coding 27 0.003215
+93081 TEX30 testis expressed 30 protein-coding 36 0.004287
+93082 NEURL3 neuralized E3 ubiquitin protein ligase 3 protein-coding 27 0.003215
+93099 DMKN dermokine protein-coding 72 0.008574
+93100 NAPRT nicotinate phosphoribosyltransferase protein-coding 42 0.005002
+93107 KCNG4 potassium voltage-gated channel modifier subfamily G member 4 protein-coding 98 0.01167
+93109 TMEM44 transmembrane protein 44 protein-coding 43 0.005121
+93129 ORAI3 ORAI calcium release-activated calcium modulator 3 protein-coding 24 0.002858
+93134 ZNF561 zinc finger protein 561 protein-coding 52 0.006193
+93145 OLFM2 olfactomedin 2 protein-coding 58 0.006907
+93166 PRDM6 PR/SET domain 6 protein-coding 36 0.004287
+93183 PIGM phosphatidylinositol glycan anchor biosynthesis class M protein-coding 34 0.004049
+93185 IGSF8 immunoglobulin superfamily member 8 protein-coding 78 0.009289
+93190 C1orf158 chromosome 1 open reading frame 158 protein-coding 30 0.003573
+93210 PGAP3 post-GPI attachment to proteins 3 protein-coding 25 0.002977
+93233 CCDC114 coiled-coil domain containing 114 protein-coding 68 0.008098
+93273 LEMD1 LEM domain containing 1 protein-coding 25 0.002977
+93323 HAUS8 HAUS augmin like complex subunit 8 protein-coding 51 0.006074
+93343 MVB12A multivesicular body subunit 12A protein-coding 32 0.003811
+93349 SP140L SP140 nuclear body protein like protein-coding 78 0.009289
+93377 OPALIN oligodendrocytic myelin paranodal and inner loop protein protein-coding 22 0.00262
+93380 MMGT1 membrane magnesium transporter 1 protein-coding 28 0.003335
+93408 MYL10 myosin light chain 10 protein-coding 33 0.00393
+93426 SYCE1 synaptonemal complex central element protein 1 protein-coding 46 0.005478
+93436 ARMC6 armadillo repeat containing 6 protein-coding 61 0.007264
+93474 ZNF670 zinc finger protein 670 protein-coding 54 0.006431
+93487 MAPK1IP1L mitogen-activated protein kinase 1 interacting protein 1 like protein-coding 18 0.002144
+93492 TPTE2 transmembrane phosphoinositide 3-phosphatase and tensin homolog 2 protein-coding 135 0.01608
+93517 SDR42E1 short chain dehydrogenase/reductase family 42E, member 1 protein-coding 50 0.005955
+93550 ZFAND4 zinc finger AN1-type containing 4 protein-coding 98 0.01167
+93556 EGFEM1P EGF like and EMI domain containing 1, pseudogene pseudo 12 0.001429
+93587 TRMT10A tRNA methyltransferase 10A protein-coding 51 0.006074
+93589 CACNA2D4 calcium voltage-gated channel auxiliary subunit alpha2delta 4 protein-coding 173 0.0206
+93594 TBC1D31 TBC1 domain family member 31 protein-coding 107 0.01274
+93611 FBXO44 F-box protein 44 protein-coding 28 0.003335
+93621 MRFAP1 Morf4 family associated protein 1 protein-coding 14 0.001667
+93624 TADA2B transcriptional adaptor 2B protein-coding 56 0.006669
+93627 TBCK TBC1 domain containing kinase protein-coding 98 0.01167
+93643 TJAP1 tight junction associated protein 1 protein-coding 52 0.006193
+93649 MYOCD myocardin protein-coding 177 0.02108
+93650 ACP4 acid phosphatase 4 protein-coding 58 0.006907
+93659 CGB5 chorionic gonadotropin beta subunit 5 protein-coding 19 0.002263
+93661 CAPZA3 capping actin protein of muscle Z-line alpha subunit 3 protein-coding 58 0.006907
+93663 ARHGAP18 Rho GTPase activating protein 18 protein-coding 78 0.009289
+93664 CADPS2 calcium dependent secretion activator 2 protein-coding 229 0.02727
+93953 GCNA germ cell nuclear acidic peptidase protein-coding 113 0.01346
+93973 ACTR8 ARP8 actin related protein 8 homolog protein-coding 63 0.007503
+93974 ATP5IF1 ATP synthase inhibitory factor subunit 1 protein-coding 12 0.001429
+93978 CLEC6A C-type lectin domain containing 6A protein-coding 31 0.003692
+93979 CPA5 carboxypeptidase A5 protein-coding 62 0.007384
+93986 FOXP2 forkhead box P2 protein-coding 128 0.01524
+94005 PIGS phosphatidylinositol glycan anchor biosynthesis class S protein-coding 49 0.005835
+94009 SERHL serine hydrolase-like (pseudogene) pseudo 12 0.001429
+94015 TTYH2 tweety family member 2 protein-coding 59 0.007026
+94025 MUC16 mucin 16, cell surface associated protein-coding 1511 0.1799
+94026 POM121L2 POM121 transmembrane nucleoporin like 2 protein-coding 80 0.009527
+94027 CGB7 chorionic gonadotropin beta subunit 7 protein-coding 22 0.00262
+94030 LRRC4B leucine rich repeat containing 4B protein-coding 122 0.01453
+94031 HTRA3 HtrA serine peptidase 3 protein-coding 51 0.006074
+94032 CAMK2N2 calcium/calmodulin dependent protein kinase II inhibitor 2 protein-coding 8 0.0009527
+94033 FTMT ferritin mitochondrial protein-coding 77 0.00917
+94039 ZNF101 zinc finger protein 101 protein-coding 57 0.006788
+94056 SYAP1 synapse associated protein 1 protein-coding 30 0.003573
+94059 LENG9 leukocyte receptor cluster member 9 protein-coding 46 0.005478
+94081 SFXN1 sideroflexin 1 protein-coding 35 0.004168
+94086 HSPB9 heat shock protein family B (small) member 9 protein-coding 19 0.002263
+94097 SFXN5 sideroflexin 5 protein-coding 32 0.003811
+94101 ORMDL1 ORMDL sphingolipid biosynthesis regulator 1 protein-coding 12 0.001429
+94103 ORMDL3 ORMDL sphingolipid biosynthesis regulator 3 protein-coding 16 0.001905
+94104 PAXBP1 PAX3 and PAX7 binding protein 1 protein-coding 113 0.01346
+94107 TMEM203 transmembrane protein 203 protein-coding 17 0.002025
+94115 CGB8 chorionic gonadotropin beta subunit 8 protein-coding 8 0.0009527
+94120 SYTL3 synaptotagmin like 3 protein-coding 66 0.00786
+94121 SYTL4 synaptotagmin like 4 protein-coding 86 0.01024
+94122 SYTL5 synaptotagmin like 5 protein-coding 100 0.01191
+94134 ARHGAP12 Rho GTPase activating protein 12 protein-coding 88 0.01048
+94137 RP1L1 RP1 like 1 protein-coding 364 0.04335
+94160 ABCC12 ATP binding cassette subfamily C member 12 protein-coding 189 0.02251
+94233 OPN4 opsin 4 protein-coding 74 0.008813
+94234 FOXQ1 forkhead box Q1 protein-coding 35 0.004168
+94235 GNG8 G protein subunit gamma 8 protein-coding 4 0.0004764
+94239 H2AFV H2A histone family member V protein-coding 19 0.002263
+94240 EPSTI1 epithelial stromal interaction 1 protein-coding 59 0.007026
+94241 TP53INP1 tumor protein p53 inducible nuclear protein 1 protein-coding 29 0.003454
+94274 PPP1R14A protein phosphatase 1 regulatory inhibitor subunit 14A protein-coding 17 0.002025
+95681 CEP41 centrosomal protein 41 protein-coding 54 0.006431
+96459 FNIP1 folliculin interacting protein 1 protein-coding 127 0.01512
+96597 TBC1D27P TBC1 domain family member 27, pseudogene pseudo 37 0.004406
+96610 BMS1P20 BMS1, ribosome biogenesis factor pseudogene 20 pseudo 39 0.004645
+96626 LIMS3 LIM zinc finger domain containing 3 protein-coding 2 0.0002382
+96764 TGS1 trimethylguanosine synthase 1 protein-coding 90 0.01072
+103910 MYL12B myosin light chain 12B protein-coding 20 0.002382
+112398 EGLN2 egl-9 family hypoxia inducible factor 2 protein-coding 50 0.005955
+112399 EGLN3 egl-9 family hypoxia inducible factor 3 protein-coding 30 0.003573
+112401 BIRC8 baculoviral IAP repeat containing 8 protein-coding 64 0.007622
+112464 CAVIN3 caveolae associated protein 3 protein-coding 25 0.002977
+112476 PRRT2 proline rich transmembrane protein 2 protein-coding 60 0.007145
+112479 ERI2 ERI1 exoribonuclease family member 2 protein-coding 42 0.005002
+112483 SAT2 spermidine/spermine N1-acetyltransferase family member 2 protein-coding 16 0.001905
+112487 DTD2 D-tyrosyl-tRNA deacylase 2 (putative) protein-coding 13 0.001548
+112495 GTF3C6 general transcription factor IIIC subunit 6 protein-coding 23 0.002739
+112574 SNX18 sorting nexin 18 protein-coding 68 0.008098
+112597 CYTOR cytoskeleton regulator RNA ncRNA 3 0.0003573
+112609 MRAP2 melanocortin 2 receptor accessory protein 2 protein-coding 41 0.004883
+112611 RWDD2A RWD domain containing 2A protein-coding 22 0.00262
+112616 CMTM7 CKLF like MARVEL transmembrane domain containing 7 protein-coding 20 0.002382
+112703 FAM71E1 family with sequence similarity 71 member E1 protein-coding 24 0.002858
+112714 TUBA3E tubulin alpha 3e protein-coding 78 0.009289
+112724 RDH13 retinol dehydrogenase 13 protein-coding 34 0.004049
+112744 IL17F interleukin 17F protein-coding 30 0.003573
+112752 IFT43 intraflagellar transport 43 protein-coding 26 0.003096
+112755 STX1B syntaxin 1B protein-coding 41 0.004883
+112770 GLMP glycosylated lysosomal membrane protein protein-coding 40 0.004764
+112802 KRT71 keratin 71 protein-coding 81 0.009646
+112812 FDX1L ferredoxin 1 like protein-coding 18 0.002144
+112817 HOGA1 4-hydroxy-2-oxoglutarate aldolase 1 protein-coding 29 0.003454
+112840 WDR89 WD repeat domain 89 protein-coding 35 0.004168
+112849 L3HYPDH trans-L-3-hydroxyproline dehydratase protein-coding 29 0.003454
+112858 TP53RK TP53 regulating kinase protein-coding 28 0.003335
+112869 SGF29 SAGA complex associated factor 29 protein-coding 35 0.004168
+112885 PHF21B PHD finger protein 21B protein-coding 74 0.008813
+112936 VPS26B VPS26, retromer complex component B protein-coding 34 0.004049
+112937 GLB1L3 galactosidase beta 1 like 3 protein-coding 100 0.01191
+112939 NACC1 nucleus accumbens associated 1 protein-coding 51 0.006074
+112942 CFAP36 cilia and flagella associated protein 36 protein-coding 51 0.006074
+112950 MED8 mediator complex subunit 8 protein-coding 25 0.002977
+112970 KTI12 KTI12 chromatin associated homolog protein-coding 41 0.004883
+113000 RPUSD1 RNA pseudouridylate synthase domain containing 1 protein-coding 27 0.003215
+113026 PLCD3 phospholipase C delta 3 protein-coding 57 0.006788
+113091 PTH2 parathyroid hormone 2 protein-coding 5 0.0005955
+113115 MTFR2 mitochondrial fission regulator 2 protein-coding 30 0.003573
+113130 CDCA5 cell division cycle associated 5 protein-coding 25 0.002977
+113146 AHNAK2 AHNAK nucleoprotein 2 protein-coding 554 0.06598
+113157 RPLP0P2 ribosomal protein lateral stalk subunit P0 pseudogene 2 pseudo 73 0.008694
+113174 SAAL1 serum amyloid A like 1 protein-coding 55 0.00655
+113177 IZUMO4 IZUMO family member 4 protein-coding 21 0.002501
+113178 SCAMP4 secretory carrier membrane protein 4 protein-coding 18 0.002144
+113179 ADAT3 adenosine deaminase, tRNA specific 3 protein-coding 17 0.002025
+113189 CHST14 carbohydrate sulfotransferase 14 protein-coding 24 0.002858
+113201 CASC4 cancer susceptibility 4 protein-coding 48 0.005716
+113220 KIF12 kinesin family member 12 protein-coding 60 0.007145
+113235 SLC46A1 solute carrier family 46 member 1 protein-coding 41 0.004883
+113246 C12orf57 chromosome 12 open reading frame 57 protein-coding 12 0.001429
+113251 LARP4 La ribonucleoprotein domain family member 4 protein-coding 91 0.01084
+113263 GLCCI1 glucocorticoid induced 1 protein-coding 55 0.00655
+113277 TMEM106A transmembrane protein 106A protein-coding 25 0.002977
+113278 SLC52A3 solute carrier family 52 member 3 protein-coding 49 0.005835
+113402 SFT2D1 SFT2 domain containing 1 protein-coding 13 0.001548
+113419 TEX261 testis expressed 261 protein-coding 9 0.001072
+113444 SMIM12 small integral membrane protein 12 protein-coding 9 0.001072
+113451 AZIN2 antizyme inhibitor 2 protein-coding 75 0.008932
+113452 TMEM54 transmembrane protein 54 protein-coding 16 0.001905
+113457 TUBA3D tubulin alpha 3d protein-coding 65 0.007741
+113510 HELQ helicase, POLQ like protein-coding 115 0.0137
+113540 CMTM1 CKLF like MARVEL transmembrane domain containing 1 protein-coding 34 0.004049
+113612 CYP2U1 cytochrome P450 family 2 subfamily U member 1 protein-coding 35 0.004168
+113622 ADPRHL1 ADP-ribosylhydrolase like 1 protein-coding 42 0.005002
+113655 MFSD3 major facilitator superfamily domain containing 3 protein-coding 25 0.002977
+113675 SDSL serine dehydratase like protein-coding 52 0.006193
+113730 KLHDC7B kelch domain containing 7B protein-coding 51 0.006074
+113746 ODF3 outer dense fiber of sperm tails 3 protein-coding 23 0.002739
+113763 ZBED6CL ZBED6 C-terminal like protein-coding 23 0.002739
+113791 PIK3IP1 phosphoinositide-3-kinase interacting protein 1 protein-coding 25 0.002977
+113802 HENMT1 HEN methyltransferase 1 protein-coding 50 0.005955
+113828 FAM83F family with sequence similarity 83 member F protein-coding 53 0.006312
+113829 SLC35A4 solute carrier family 35 member A4 protein-coding 33 0.00393
+113835 ZNF257 zinc finger protein 257 protein-coding 157 0.0187
+113878 DTX2 deltex E3 ubiquitin ligase 2 protein-coding 62 0.007384
+114026 ZIM3 zinc finger imprinted 3 protein-coding 125 0.01489
+114034 TOE1 target of EGR1, exonuclease protein-coding 44 0.00524
+114038 LINC00313 long intergenic non-protein coding RNA 313 ncRNA 2 0.0002382
+114041 B3GALT5-AS1 B3GALT5 antisense RNA 1 ncRNA 9 0.001072
+114043 TSPEAR-AS2 TSPEAR antisense RNA 2 ncRNA 3 0.0003573
+114049 BUD23 BUD23, rRNA methyltransferase and ribosome maturation factor protein-coding 42 0.005002
+114088 TRIM9 tripartite motif containing 9 protein-coding 115 0.0137
+114112 TXNRD3 thioredoxin reductase 3 protein-coding 6 0.0007145
+114131 UCN3 urocortin 3 protein-coding 21 0.002501
+114132 SIGLEC11 sialic acid binding Ig like lectin 11 protein-coding 85 0.01012
+114134 SLC2A13 solute carrier family 2 member 13 protein-coding 82 0.009765
+114294 LACTB lactamase beta protein-coding 45 0.005359
+114299 PALM2 paralemmin 2 protein-coding 39 0.004645
+114327 EFHC1 EF-hand domain containing 1 protein-coding 74 0.008813
+114335 CGB1 chorionic gonadotropin beta subunit 1 protein-coding 32 0.003811
+114336 CGB2 chorionic gonadotropin beta subunit 2 protein-coding 14 0.001667
+114548 NLRP3 NLR family pyrin domain containing 3 protein-coding 256 0.03049
+114569 MAL2 mal, T cell differentiation protein 2 (gene/pseudogene) protein-coding 22 0.00262
+114571 SLC22A9 solute carrier family 22 member 9 protein-coding 101 0.01203
+114609 TIRAP TIR domain containing adaptor protein protein-coding 18 0.002144
+114614 MIR155HG MIR155 host gene ncRNA 2 0.0002382
+114625 ERMAP erythroblast membrane associated protein (Scianna blood group) protein-coding 42 0.005002
+114659 LRRC37B leucine rich repeat containing 37B protein-coding 111 0.01322
+114757 CYGB cytoglobin protein-coding 30 0.003573
+114769 CARD16 caspase recruitment domain family member 16 protein-coding 29 0.003454
+114770 PGLYRP2 peptidoglycan recognition protein 2 protein-coding 81 0.009646
+114771 PGLYRP3 peptidoglycan recognition protein 3 protein-coding 54 0.006431
+114780 PKD1L2 polycystin 1 like 2 (gene/pseudogene) protein-coding 265 0.03156
+114781 BTBD9 BTB domain containing 9 protein-coding 70 0.008336
+114783 LMTK3 lemur tyrosine kinase 3 protein-coding 104 0.01239
+114784 CSMD2 CUB and Sushi multiple domains 2 protein-coding 491 0.05847
+114785 MBD6 methyl-CpG binding domain protein 6 protein-coding 155 0.01846
+114786 XKR4 XK related 4 protein-coding 149 0.01774
+114787 GPRIN1 G protein regulated inducer of neurite outgrowth 1 protein-coding 176 0.02096
+114788 CSMD3 CUB and Sushi multiple domains 3 protein-coding 1074 0.1279
+114789 SLC25A25 solute carrier family 25 member 25 protein-coding 42 0.005002
+114790 STK11IP serine/threonine kinase 11 interacting protein protein-coding 92 0.01096
+114791 TUBGCP5 tubulin gamma complex associated protein 5 protein-coding 106 0.01262
+114792 KLHL32 kelch like family member 32 protein-coding 85 0.01012
+114793 FMNL2 formin like 2 protein-coding 103 0.01227
+114794 ELFN2 extracellular leucine rich repeat and fibronectin type III domain containing 2 protein-coding 121 0.01441
+114795 TMEM132B transmembrane protein 132B protein-coding 221 0.02632
+114796 PSMG3-AS1 PSMG3 antisense RNA 1 (head to head) ncRNA 1 0.0001191
+114798 SLITRK1 SLIT and NTRK like family member 1 protein-coding 219 0.02608
+114799 ESCO1 establishment of sister chromatid cohesion N-acetyltransferase 1 protein-coding 107 0.01274
+114800 CCDC85A coiled-coil domain containing 85A protein-coding 122 0.01453
+114801 TMEM200A transmembrane protein 200A protein-coding 139 0.01655
+114803 MYSM1 Myb like, SWIRM and MPN domains 1 protein-coding 82 0.009765
+114804 RNF157 ring finger protein 157 protein-coding 65 0.007741
+114805 GALNT13 polypeptide N-acetylgalactosaminyltransferase 13 protein-coding 167 0.01989
+114815 SORCS1 sortilin related VPS10 domain containing receptor 1 protein-coding 324 0.03859
+114818 KLHL29 kelch like family member 29 protein-coding 53 0.006312
+114819 CROCCP3 ciliary rootlet coiled-coil, rootletin pseudogene 3 pseudo 65 0.007741
+114821 ZBED9 zinc finger BED-type containing 9 protein-coding 210 0.02501
+114822 RHPN1 rhophilin Rho GTPase binding protein 1 protein-coding 73 0.008694
+114823 LENG8 leukocyte receptor cluster member 8 protein-coding 106 0.01262
+114824 PNMA5 PNMA family member 5 protein-coding 69 0.008217
+114825 PWWP2A PWWP domain containing 2A protein-coding 63 0.007503
+114826 SMYD4 SET and MYND domain containing 4 protein-coding 53 0.006312
+114827 FHAD1 forkhead associated phosphopeptide binding domain 1 protein-coding 71 0.008455
+114836 SLAMF6 SLAM family member 6 protein-coding 58 0.006907
+114876 OSBPL1A oxysterol binding protein like 1A protein-coding 101 0.01203
+114879 OSBPL5 oxysterol binding protein like 5 protein-coding 89 0.0106
+114880 OSBPL6 oxysterol binding protein like 6 protein-coding 150 0.01786
+114881 OSBPL7 oxysterol binding protein like 7 protein-coding 88 0.01048
+114882 OSBPL8 oxysterol binding protein like 8 protein-coding 98 0.01167
+114883 OSBPL9 oxysterol binding protein like 9 protein-coding 82 0.009765
+114884 OSBPL10 oxysterol binding protein like 10 protein-coding 85 0.01012
+114885 OSBPL11 oxysterol binding protein like 11 protein-coding 65 0.007741
+114897 C1QTNF1 C1q and TNF related 1 protein-coding 58 0.006907
+114898 C1QTNF2 C1q and TNF related 2 protein-coding 48 0.005716
+114899 C1QTNF3 C1q and TNF related 3 protein-coding 55 0.00655
+114900 C1QTNF4 C1q and TNF related 4 protein-coding 26 0.003096
+114902 C1QTNF5 C1q and TNF related 5 protein-coding 21 0.002501
+114904 C1QTNF6 C1q and TNF related 6 protein-coding 31 0.003692
+114905 C1QTNF7 C1q and TNF related 7 protein-coding 33 0.00393
+114907 FBXO32 F-box protein 32 protein-coding 39 0.004645
+114908 TMEM123 transmembrane protein 123 protein-coding 18 0.002144
+114926 SMIM19 small integral membrane protein 19 protein-coding 15 0.001786
+114928 GPRASP2 G protein-coupled receptor associated sorting protein 2 protein-coding 127 0.01512
+114932 MRFAP1L1 Morf4 family associated protein 1 like 1 protein-coding 10 0.001191
+114960 TSGA13 testis specific 13 protein-coding 43 0.005121
+114971 PTPMT1 protein tyrosine phosphatase, mitochondrial 1 protein-coding 23 0.002739
+114984 FLYWCH2 FLYWCH family member 2 protein-coding 12 0.001429
+114987 WDR31 WD repeat domain 31 protein-coding 41 0.004883
+114990 VASN vasorin protein-coding 34 0.004049
+114991 ZNF618 zinc finger protein 618 protein-coding 82 0.009765
+115004 CGAS cyclic GMP-AMP synthase protein-coding 49 0.005835
+115019 SLC26A9 solute carrier family 26 member 9 protein-coding 114 0.01358
+115024 NT5C3B 5'-nucleotidase, cytosolic IIIB protein-coding 27 0.003215
+115098 CCDC124 coiled-coil domain containing 124 protein-coding 28 0.003335
+115106 HAUS1 HAUS augmin like complex subunit 1 protein-coding 41 0.004883
+115111 SLC26A7 solute carrier family 26 member 7 protein-coding 164 0.01953
+115123 MARCH3 membrane associated ring-CH-type finger 3 protein-coding 26 0.003096
+115196 ZNF554 zinc finger protein 554 protein-coding 50 0.005955
+115201 ATG4A autophagy related 4A cysteine peptidase protein-coding 51 0.006074
+115207 KCTD12 potassium channel tetramerization domain containing 12 protein-coding 16 0.001905
+115209 OMA1 OMA1 zinc metallopeptidase protein-coding 46 0.005478
+115265 DDIT4L DNA damage inducible transcript 4 like protein-coding 40 0.004764
+115273 RAB42 RAB42, member RAS oncogene family protein-coding 21 0.002501
+115286 SLC25A26 solute carrier family 25 member 26 protein-coding 19 0.002263
+115290 FBXO17 F-box protein 17 protein-coding 3 0.0003573
+115294 PCMTD1 protein-L-isoaspartate (D-aspartate) O-methyltransferase domain containing 1 protein-coding 66 0.00786
+115330 GPR146 G protein-coupled receptor 146 protein-coding 24 0.002858
+115350 FCRL1 Fc receptor like 1 protein-coding 117 0.01393
+115352 FCRL3 Fc receptor like 3 protein-coding 160 0.01905
+115353 LRRC42 leucine rich repeat containing 42 protein-coding 55 0.00655
+115361 GBP4 guanylate binding protein 4 protein-coding 89 0.0106
+115362 GBP5 guanylate binding protein 5 protein-coding 102 0.01215
+115399 LRRC56 leucine rich repeat containing 56 protein-coding 50 0.005955
+115416 MALSU1 mitochondrial assembly of ribosomal large subunit 1 protein-coding 20 0.002382
+115426 UHRF2 ubiquitin like with PHD and ring finger domains 2 protein-coding 82 0.009765
+115509 ZNF689 zinc finger protein 689 protein-coding 66 0.00786
+115548 FCHO2 FCH domain only 2 protein-coding 83 0.009884
+115557 ARHGEF25 Rho guanine nucleotide exchange factor 25 protein-coding 82 0.009765
+115560 ZNF501 zinc finger protein 501 protein-coding 37 0.004406
+115572 FAM46B family with sequence similarity 46 member B protein-coding 42 0.005002
+115584 SLC5A11 solute carrier family 5 member 11 protein-coding 105 0.0125
+115650 TNFRSF13C TNF receptor superfamily member 13C protein-coding 17 0.002025
+115653 KIR3DL3 killer cell immunoglobulin like receptor, three Ig domains and long cytoplasmic tail 3 protein-coding 37 0.004406
+115677 NOSTRIN nitric oxide synthase trafficking protein-coding 62 0.007384
+115701 ALPK2 alpha kinase 2 protein-coding 263 0.03132
+115703 ARHGAP33 Rho GTPase activating protein 33 protein-coding 147 0.01751
+115704 EVI5L ecotropic viral integration site 5 like protein-coding 74 0.008813
+115708 TRMT61A tRNA methyltransferase 61A protein-coding 17 0.002025
+115727 RASGRP4 RAS guanyl releasing protein 4 protein-coding 84 0.01
+115749 C12orf56 chromosome 12 open reading frame 56 protein-coding 46 0.005478
+115752 DIS3L DIS3 like exosome 3'-5' exoribonuclease protein-coding 100 0.01191
+115761 ARL11 ADP ribosylation factor like GTPase 11 protein-coding 24 0.002858
+115795 FANCD2OS FANCD2 opposite strand protein-coding 25 0.002977
+115811 IQCD IQ motif containing D protein-coding 40 0.004764
+115817 DHRS1 dehydrogenase/reductase 1 protein-coding 25 0.002977
+115825 WDFY2 WD repeat and FYVE domain containing 2 protein-coding 38 0.004525
+115827 RAB3C RAB3C, member RAS oncogene family protein-coding 46 0.005478
+115861 NXNL1 nucleoredoxin like 1 protein-coding 23 0.002739
+115908 CTHRC1 collagen triple helix repeat containing 1 protein-coding 33 0.00393
+115939 TSR3 TSR3, acp transferase ribosome maturation factor protein-coding 30 0.003573
+115948 CCDC151 coiled-coil domain containing 151 protein-coding 70 0.008336
+115950 ZNF653 zinc finger protein 653 protein-coding 60 0.007145
+115992 RNF166 ring finger protein 166 protein-coding 14 0.001667
+116028 RMI2 RecQ mediated genome instability 2 protein-coding 7 0.0008336
+116039 OSR2 odd-skipped related transciption factor 2 protein-coding 62 0.007384
+116064 LRRC58 leucine rich repeat containing 58 protein-coding 21 0.002501
+116068 LYSMD3 LysM domain containing 3 protein-coding 34 0.004049
+116071 BATF2 basic leucine zipper ATF-like transcription factor 2 protein-coding 16 0.001905
+116085 SLC22A12 solute carrier family 22 member 12 protein-coding 85 0.01012
+116092 DNTTIP1 deoxynucleotidyltransferase terminal interacting protein 1 protein-coding 42 0.005002
+116093 DIRC1 disrupted in renal carcinoma 1 protein-coding 20 0.002382
+116113 FOXP4 forkhead box P4 protein-coding 86 0.01024
+116115 ZNF526 zinc finger protein 526 protein-coding 65 0.007741
+116123 FMO9P flavin containing monooxygenase 9 pseudogene pseudo 15 0.001786
+116135 LRRC3B leucine rich repeat containing 3B protein-coding 53 0.006312
+116138 KLHDC3 kelch domain containing 3 protein-coding 48 0.005716
+116143 WDR92 WD repeat domain 92 protein-coding 37 0.004406
+116150 NUS1 NUS1 dehydrodolichyl diphosphate synthase subunit protein-coding 23 0.002739
+116151 FAM210B family with sequence similarity 210 member B protein-coding 8 0.0009527
+116154 PHACTR3 phosphatase and actin regulator 3 protein-coding 127 0.01512
+116159 CYYR1 cysteine and tyrosine rich 1 protein-coding 43 0.005121
+116173 CMTM5 CKLF like MARVEL transmembrane domain containing 5 protein-coding 37 0.004406
+116179 TGM7 transglutaminase 7 protein-coding 95 0.01131
+116211 TM4SF19 transmembrane 4 L six family member 19 protein-coding 26 0.003096
+116224 FAM122A family with sequence similarity 122A protein-coding 28 0.003335
+116225 ZMYND19 zinc finger MYND-type containing 19 protein-coding 28 0.003335
+116228 COX20 COX20, cytochrome c oxidase assembly factor protein-coding 13 0.001548
+116236 ABHD15 abhydrolase domain containing 15 protein-coding 37 0.004406
+116238 TLCD1 TLC domain containing 1 protein-coding 28 0.003335
+116254 GINM1 glycoprotein integral membrane 1 protein-coding 37 0.004406
+116255 MOGAT1 monoacylglycerol O-acyltransferase 1 protein-coding 88 0.01048
+116285 ACSM1 acyl-CoA synthetase medium chain family member 1 protein-coding 90 0.01072
+116328 C8orf34 chromosome 8 open reading frame 34 protein-coding 136 0.0162
+116337 PANX3 pannexin 3 protein-coding 73 0.008694
+116349 EXOC3-AS1 EXOC3 antisense RNA 1 ncRNA 12 0.001429
+116362 RBP7 retinol binding protein 7 protein-coding 6 0.0007145
+116369 SLC26A8 solute carrier family 26 member 8 protein-coding 114 0.01358
+116372 LYPD1 LY6/PLAUR domain containing 1 protein-coding 17 0.002025
+116379 IL22RA2 interleukin 22 receptor subunit alpha 2 protein-coding 39 0.004645
+116412 ZNF837 zinc finger protein 837 protein-coding 28 0.003335
+116441 TM4SF18 transmembrane 4 L six family member 18 protein-coding 19 0.002263
+116442 RAB39B RAB39B, member RAS oncogene family protein-coding 44 0.00524
+116443 GRIN3A glutamate ionotropic receptor NMDA type subunit 3A protein-coding 209 0.02489
+116444 GRIN3B glutamate ionotropic receptor NMDA type subunit 3B protein-coding 67 0.007979
+116447 TOP1MT DNA topoisomerase I mitochondrial protein-coding 86 0.01024
+116448 OLIG1 oligodendrocyte transcription factor 1 protein-coding 5 0.0005955
+116449 CLNK cytokine dependent hematopoietic cell linker protein-coding 60 0.007145
+116461 TSEN15 tRNA splicing endonuclease subunit 15 protein-coding 14 0.001667
+116496 FAM129A family with sequence similarity 129 member A protein-coding 114 0.01358
+116511 MAS1L MAS1 proto-oncogene like, G protein-coupled receptor protein-coding 51 0.006074
+116512 MRGPRD MAS related GPR family member D protein-coding 50 0.005955
+116519 APOA5 apolipoprotein A5 protein-coding 53 0.006312
+116534 MRGPRE MAS related GPR family member E protein-coding 32 0.003811
+116535 MRGPRF MAS related GPR family member F protein-coding 41 0.004883
+116540 MRPL53 mitochondrial ribosomal protein L53 protein-coding 19 0.002263
+116541 MRPL54 mitochondrial ribosomal protein L54 protein-coding 16 0.001905
+116729 PPP1R27 protein phosphatase 1 regulatory subunit 27 protein-coding 13 0.001548
+116832 RPL39L ribosomal protein L39 like protein-coding 10 0.001191
+116835 HSPA12B heat shock protein family A (Hsp70) member 12B protein-coding 61 0.007264
+116840 CNTROB centrobin, centriole duplication and spindle assembly protein protein-coding 94 0.01119
+116841 SNAP47 synaptosome associated protein 47 protein-coding 47 0.005597
+116842 LEAP2 liver enriched antimicrobial peptide 2 protein-coding 8 0.0009527
+116843 SLC18B1 solute carrier family 18 member B1 protein-coding 44 0.00524
+116844 LRG1 leucine rich alpha-2-glycoprotein 1 protein-coding 50 0.005955
+116931 MED12L mediator complex subunit 12 like protein-coding 272 0.03239
+116933 CLRN1-AS1 CLRN1 antisense RNA 1 ncRNA 6 0.0007145
+116966 WDR17 WD repeat domain 17 protein-coding 236 0.02811
+116969 ART5 ADP-ribosyltransferase 5 protein-coding 36 0.004287
+116983 ACAP3 ArfGAP with coiled-coil, ankyrin repeat and PH domains 3 protein-coding 65 0.007741
+116984 ARAP2 ArfGAP with RhoGAP domain, ankyrin repeat and PH domain 2 protein-coding 201 0.02394
+116985 ARAP1 ArfGAP with RhoGAP domain, ankyrin repeat and PH domain 1 protein-coding 128 0.01524
+116986 AGAP2 ArfGAP with GTPase domain, ankyrin repeat and PH domain 2 protein-coding 106 0.01262
+116987 AGAP1 ArfGAP with GTPase domain, ankyrin repeat and PH domain 1 protein-coding 138 0.01643
+116988 AGAP3 ArfGAP with GTPase domain, ankyrin repeat and PH domain 3 protein-coding 99 0.01179
+117143 TADA1 transcriptional adaptor 1 protein-coding 40 0.004764
+117144 CATSPER1 cation channel sperm associated 1 protein-coding 112 0.01334
+117145 THEM4 thioesterase superfamily member 4 protein-coding 19 0.002263
+117154 DACH2 dachshund family transcription factor 2 protein-coding 163 0.01941
+117155 CATSPER2 cation channel sperm associated 2 protein-coding 72 0.008574
+117156 SCGB3A2 secretoglobin family 3A member 2 protein-coding 8 0.0009527
+117157 SH2D1B SH2 domain containing 1B protein-coding 23 0.002739
+117159 DCD dermcidin protein-coding 18 0.002144
+117166 WFIKKN1 WAP, follistatin/kazal, immunoglobulin, kunitz and netrin domain containing 1 protein-coding 34 0.004049
+117177 RAB3IP RAB3A interacting protein protein-coding 68 0.008098
+117178 SSX2IP SSX family member 2 interacting protein protein-coding 73 0.008694
+117194 MRGPRX2 MAS related GPR family member X2 protein-coding 58 0.006907
+117195 MRGPRX3 MAS related GPR family member X3 protein-coding 81 0.009646
+117196 MRGPRX4 MAS related GPR family member X4 protein-coding 66 0.00786
+117245 HRASLS5 HRAS like suppressor family member 5 protein-coding 34 0.004049
+117246 FTSJ3 FtsJ RNA methyltransferase homolog 3 protein-coding 104 0.01239
+117247 SLC16A10 solute carrier family 16 member 10 protein-coding 52 0.006193
+117248 GALNT15 polypeptide N-acetylgalactosaminyltransferase 15 protein-coding 297 0.03537
+117283 IP6K3 inositol hexakisphosphate kinase 3 protein-coding 57 0.006788
+117285 DEFB118 defensin beta 118 protein-coding 33 0.00393
+117286 CIB3 calcium and integrin binding family member 3 protein-coding 40 0.004764
+117289 TAGAP T cell activation RhoGTPase activating protein protein-coding 84 0.01
+117531 TMC1 transmembrane channel like 1 protein-coding 93 0.01108
+117532 TMC2 transmembrane channel like 2 protein-coding 137 0.01632
+117579 RLN3 relaxin 3 protein-coding 14 0.001667
+117581 TWIST2 twist family bHLH transcription factor 2 protein-coding 14 0.001667
+117583 PARD3B par-3 family cell polarity regulator beta protein-coding 182 0.02167
+117584 RFFL ring finger and FYVE like domain containing E3 ubiquitin protein ligase protein-coding 40 0.004764
+117608 ZNF354B zinc finger protein 354B protein-coding 76 0.009051
+117854 TRIM6 tripartite motif containing 6 protein-coding 78 0.009289
+118424 UBE2J2 ubiquitin conjugating enzyme E2 J2 protein-coding 26 0.003096
+118426 BORCS5 BLOC-1 related complex subunit 5 protein-coding 18 0.002144
+118427 OLFM3 olfactomedin 3 protein-coding 121 0.01441
+118429 ANTXR2 anthrax toxin receptor 2 protein-coding 57 0.006788
+118430 MUCL1 mucin like 1 protein-coding 12 0.001429
+118433 RPL23AP7 ribosomal protein L23a pseudogene 7 pseudo 13 0.001548
+118442 GPR62 G protein-coupled receptor 62 protein-coding 13 0.001548
+118460 EXOSC6 exosome component 6 protein-coding 2 0.0002382
+118461 C10orf71 chromosome 10 open reading frame 71 protein-coding 133 0.01584
+118471 PRAP1 proline rich acidic protein 1 protein-coding 16 0.001905
+118472 ZNF511 zinc finger protein 511 protein-coding 22 0.00262
+118487 CHCHD1 coiled-coil-helix-coiled-coil-helix domain containing 1 protein-coding 11 0.00131
+118490 MSS51 MSS51 mitochondrial translational activator protein-coding 36 0.004287
+118491 CFAP70 cilia and flagella associated protein 70 protein-coding 115 0.0137
+118611 C10orf90 chromosome 10 open reading frame 90 protein-coding 136 0.0162
+118663 BTBD16 BTB domain containing 16 protein-coding 52 0.006193
+118670 FAM24A family with sequence similarity 24 member A protein-coding 29 0.003454
+118672 PSTK phosphoseryl-tRNA kinase protein-coding 46 0.005478
+118738 ZNF488 zinc finger protein 488 protein-coding 62 0.007384
+118788 PIK3AP1 phosphoinositide-3-kinase adaptor protein 1 protein-coding 128 0.01524
+118812 MORN4 MORN repeat containing 4 protein-coding 18 0.002144
+118813 ZFYVE27 zinc finger FYVE-type containing 27 protein-coding 40 0.004764
+118856 MMP21 matrix metallopeptidase 21 protein-coding 60 0.007145
+118881 COMTD1 catechol-O-methyltransferase domain containing 1 protein-coding 13 0.001548
+118924 FRA10AC1 FRA10A associated CGG repeat 1 protein-coding 47 0.005597
+118932 ANKRD22 ankyrin repeat domain 22 protein-coding 23 0.002739
+118980 SFXN2 sideroflexin 2 protein-coding 36 0.004287
+118987 PDZD8 PDZ domain containing 8 protein-coding 116 0.01381
+119016 AGAP4 ArfGAP with GTPase domain, ankyrin repeat and PH domain 4 protein-coding 42 0.005002
+119032 BORCS7 BLOC-1 related complex subunit 7 protein-coding 11 0.00131
+119180 LYZL2 lysozyme like 2 protein-coding 42 0.005002
+119385 AGAP11 ArfGAP with GTPase domain, ankyrin repeat and PH domain 11 protein-coding 6 0.0007145
+119391 GSTO2 glutathione S-transferase omega 2 protein-coding 25 0.002977
+119392 SFR1 SWI5 dependent homologous recombination repair protein 1 protein-coding 23 0.002739
+119395 CALHM3 calcium homeostasis modulator 3 protein-coding 24 0.002858
+119467 CLRN3 clarin 3 protein-coding 35 0.004168
+119504 ANAPC16 anaphase promoting complex subunit 16 protein-coding 6 0.0007145
+119548 PNLIPRP3 pancreatic lipase related protein 3 protein-coding 113 0.01346
+119559 SFXN4 sideroflexin 4 protein-coding 42 0.005002
+119587 CPXM2 carboxypeptidase X, M14 family member 2 protein-coding 151 0.01798
+119678 OR52E2 olfactory receptor family 52 subfamily E member 2 protein-coding 79 0.009408
+119679 OR52J3 olfactory receptor family 52 subfamily J member 3 protein-coding 75 0.008932
+119682 OR51L1 olfactory receptor family 51 subfamily L member 1 protein-coding 60 0.007145
+119687 OR51A7 olfactory receptor family 51 subfamily A member 7 protein-coding 79 0.009408
+119692 OR51S1 olfactory receptor family 51 subfamily S member 1 protein-coding 82 0.009765
+119694 OR51F2 olfactory receptor family 51 subfamily F member 2 protein-coding 70 0.008336
+119695 OR52R1 olfactory receptor family 52 subfamily R member 1 (gene/pseudogene) protein-coding 65 0.007741
+119710 C11orf74 chromosome 11 open reading frame 74 protein-coding 35 0.004168
+119749 OR4C46 olfactory receptor family 4 subfamily C member 46 protein-coding 116 0.01381
+119764 OR4X2 olfactory receptor family 4 subfamily X member 2 (gene/pseudogene) protein-coding 64 0.007622
+119765 OR4B1 olfactory receptor family 4 subfamily B member 1 protein-coding 63 0.007503
+119772 OR52M1 olfactory receptor family 52 subfamily M member 1 protein-coding 69 0.008217
+119774 OR52K2 olfactory receptor family 52 subfamily K member 2 protein-coding 55 0.00655
+120065 OR5P2 olfactory receptor family 5 subfamily P member 2 protein-coding 70 0.008336
+120066 OR5P3 olfactory receptor family 5 subfamily P member 3 protein-coding 46 0.005478
+120071 LARGE2 LARGE xylosyl- and glucuronyltransferase 2 protein-coding 68 0.008098
+120103 SLC36A4 solute carrier family 36 member 4 protein-coding 72 0.008574
+120114 FAT3 FAT atypical cadherin 3 protein-coding 672 0.08003
+120224 TMEM45B transmembrane protein 45B protein-coding 29 0.003454
+120227 CYP2R1 cytochrome P450 family 2 subfamily R member 1 protein-coding 53 0.006312
+120237 DBX1 developing brain homeobox 1 protein-coding 53 0.006312
+120376 COLCA2 colorectal cancer associated 2 protein-coding 12 0.001429
+120379 PIH1D2 PIH1 domain containing 2 protein-coding 39 0.004645
+120400 NXPE1 neurexophilin and PC-esterase domain family member 1 protein-coding 69 0.008217
+120406 NXPE2 neurexophilin and PC-esterase domain family member 2 protein-coding 58 0.006907
+120425 JAML junction adhesion molecule like protein-coding 47 0.005597
+120526 DNAJC24 DnaJ heat shock protein family (Hsp40) member C24 protein-coding 23 0.002739
+120534 ARL14EP ADP ribosylation factor like GTPase 14 effector protein protein-coding 29 0.003454
+120586 OR8I2 olfactory receptor family 8 subfamily I member 2 protein-coding 115 0.0137
+120775 OR2D3 olfactory receptor family 2 subfamily D member 3 protein-coding 81 0.009646
+120776 OR2D2 olfactory receptor family 2 subfamily D member 2 protein-coding 79 0.009408
+120787 OR52W1 olfactory receptor family 52 subfamily W member 1 protein-coding 32 0.003811
+120793 OR56A4 olfactory receptor family 56 subfamily A member 4 protein-coding 82 0.009765
+120796 OR56A1 olfactory receptor family 56 subfamily A member 1 protein-coding 83 0.009884
+120863 DEPDC4 DEP domain containing 4 protein-coding 37 0.004406
+120892 LRRK2 leucine rich repeat kinase 2 protein-coding 410 0.04883
+120935 CCDC38 coiled-coil domain containing 38 protein-coding 76 0.009051
+120939 TMEM52B transmembrane protein 52B protein-coding 44 0.00524
+121006 FAM186A family with sequence similarity 186 member A protein-coding 105 0.0125
+121053 C12orf45 chromosome 12 open reading frame 45 protein-coding 22 0.00262
+121130 OR10P1 olfactory receptor family 10 subfamily P member 1 protein-coding 48 0.005716
+121214 SDR9C7 short chain dehydrogenase/reductase family 9C member 7 protein-coding 43 0.005121
+121227 LRIG3 leucine rich repeats and immunoglobulin like domains 3 protein-coding 201 0.02394
+121256 TMEM132D transmembrane protein 132D protein-coding 320 0.03811
+121260 SLC15A4 solute carrier family 15 member 4 protein-coding 61 0.007264
+121268 RHEBL1 RHEB like 1 protein-coding 17 0.002025
+121273 C12orf54 chromosome 12 open reading frame 54 protein-coding 20 0.002382
+121274 ZNF641 zinc finger protein 641 protein-coding 39 0.004645
+121275 OR10AD1 olfactory receptor family 10 subfamily AD member 1 protein-coding 25 0.002977
+121278 TPH2 tryptophan hydroxylase 2 protein-coding 104 0.01239
+121328 GGTA2P glycoprotein, alpha-galactosyltransferase 2, pseudogene pseudo 8 0.0009527
+121340 SP7 Sp7 transcription factor protein-coding 49 0.005835
+121355 GTSF1 gametocyte specific factor 1 protein-coding 23 0.002739
+121364 OR10A7 olfactory receptor family 10 subfamily A member 7 protein-coding 52 0.006193
+121391 KRT74 keratin 74 protein-coding 74 0.008813
+121441 NEDD1 neural precursor cell expressed, developmentally down-regulated 1 protein-coding 81 0.009646
+121456 SLC9A7P1 solute carrier family 9 member 7 pseudogene 1 pseudo 129 0.01536
+121457 IKBIP IKBKB interacting protein protein-coding 86 0.01024
+121504 HIST4H4 histone cluster 4 H4 protein-coding 18 0.002144
+121506 ERP27 endoplasmic reticulum protein 27 protein-coding 35 0.004168
+121512 FGD4 FYVE, RhoGEF and PH domain containing 4 protein-coding 78 0.009289
+121536 AEBP2 AE binding protein 2 protein-coding 33 0.00393
+121549 ASCL4 achaete-scute family bHLH transcription factor 4 protein-coding 30 0.003573
+121551 BTBD11 BTB domain containing 11 protein-coding 159 0.01894
+121599 SPIC Spi-C transcription factor protein-coding 50 0.005955
+121601 ANO4 anoctamin 4 protein-coding 198 0.02358
+121642 ALKBH2 alkB homolog 2, alpha-ketoglutarate dependent dioxygenase protein-coding 35 0.004168
+121643 FOXN4 forkhead box N4 protein-coding 57 0.006788
+121665 SPPL3 signal peptide peptidase like 3 protein-coding 44 0.00524
+121793 TEX29 testis expressed 29 protein-coding 29 0.003454
+121952 METTL21EP methyltransferase like 21E, pseudogene pseudo 7 0.0008336
+122011 CSNK1A1L casein kinase 1 alpha 1 like protein-coding 70 0.008336
+122042 RXFP2 relaxin family peptide receptor 2 protein-coding 112 0.01334
+122046 TEX26 testis expressed 26 protein-coding 45 0.005359
+122060 SLAIN1 SLAIN motif family member 1 protein-coding 45 0.005359
+122258 SPACA7 sperm acrosome associated 7 protein-coding 36 0.004287
+122402 TDRD9 tudor domain containing 9 protein-coding 108 0.01286
+122416 ANKRD9 ankyrin repeat domain 9 protein-coding 7 0.0008336
+122481 AK7 adenylate kinase 7 protein-coding 95 0.01131
+122509 IFI27L1 interferon alpha inducible protein 27 like 1 protein-coding 13 0.001548
+122525 C14orf28 chromosome 14 open reading frame 28 protein-coding 42 0.005002
+122553 TRAPPC6B trafficking protein particle complex 6B protein-coding 23 0.002739
+122616 CLBA1 clathrin binding box of aftiphilin containing 1 protein-coding 32 0.003811
+122618 PLD4 phospholipase D family member 4 protein-coding 45 0.005359
+122622 ADSSL1 adenylosuccinate synthase like 1 protein-coding 69 0.008217
+122651 RNASE11 ribonuclease A family member 11 (inactive) protein-coding 42 0.005002
+122664 TPPP2 tubulin polymerization promoting protein family member 2 protein-coding 34 0.004049
+122665 RNASE8 ribonuclease A family member 8 protein-coding 17 0.002025
+122704 MRPL52 mitochondrial ribosomal protein L52 protein-coding 10 0.001191
+122706 PSMB11 proteasome subunit beta 11 protein-coding 51 0.006074
+122740 OR4K14 olfactory receptor family 4 subfamily K member 14 protein-coding 63 0.007503
+122742 OR4L1 olfactory receptor family 4 subfamily L member 1 protein-coding 79 0.009408
+122748 OR11H6 olfactory receptor family 11 subfamily H member 6 protein-coding 72 0.008574
+122769 LRR1 leucine rich repeat protein 1 protein-coding 41 0.004883
+122773 KLHDC1 kelch domain containing 1 protein-coding 39 0.004645
+122786 FRMD6 FERM domain containing 6 protein-coding 96 0.01143
+122809 SOCS4 suppressor of cytokine signaling 4 protein-coding 73 0.008694
+122830 NAA30 N(alpha)-acetyltransferase 30, NatC catalytic subunit protein-coding 38 0.004525
+122876 GPHB5 glycoprotein hormone beta 5 protein-coding 41 0.004883
+122945 NOXRED1 NADP dependent oxidoreductase domain containing 1 protein-coding 48 0.005716
+122953 JDP2 Jun dimerization protein 2 protein-coding 19 0.002263
+122961 ISCA2 iron-sulfur cluster assembly 2 protein-coding 12 0.001429
+122970 ACOT4 acyl-CoA thioesterase 4 protein-coding 36 0.004287
+123016 TTC8 tetratricopeptide repeat domain 8 protein-coding 67 0.007979
+123036 TC2N tandem C2 domains, nuclear protein-coding 61 0.007264
+123041 SLC24A4 solute carrier family 24 member 4 protein-coding 206 0.02453
+123096 SLC25A29 solute carrier family 25 member 29 protein-coding 9 0.001072
+123099 DEGS2 delta 4-desaturase, sphingolipid 2 protein-coding 31 0.003692
+123103 KLHL33 kelch like family member 33 protein-coding 35 0.004168
+123169 LEO1 LEO1 homolog, Paf1/RNA polymerase II complex component protein-coding 69 0.008217
+123207 C15orf40 chromosome 15 open reading frame 40 protein-coding 10 0.001191
+123228 SENP8 SUMO peptidase family member, NEDD8 specific protein-coding 21 0.002501
+123263 MTFMT mitochondrial methionyl-tRNA formyltransferase protein-coding 31 0.003692
+123264 SLC51B solute carrier family 51 beta subunit protein-coding 9 0.001072
+123283 TARSL2 threonyl-tRNA synthetase like 2 protein-coding 75 0.008932
+123346 HIGD2B HIG1 hypoxia inducible domain family member 2B protein-coding 14 0.001667
+123355 LRRC28 leucine rich repeat containing 28 protein-coding 45 0.005359
+123591 TMEM266 transmembrane protein 266 protein-coding 66 0.00786
+123606 NIPA1 NIPA magnesium transporter 1 protein-coding 34 0.004049
+123624 AGBL1 ATP/GTP binding protein like 1 protein-coding 189 0.02251
+123688 HYKK hydroxylysine kinase protein-coding 33 0.00393
+123720 WHAMM WAS protein homolog associated with actin, golgi membranes and microtubules protein-coding 53 0.006312
+123722 FSD2 fibronectin type III and SPRY domain containing 2 protein-coding 95 0.01131
+123745 PLA2G4E phospholipase A2 group IVE protein-coding 57 0.006788
+123775 C16orf46 chromosome 16 open reading frame 46 protein-coding 59 0.007026
+123803 NTAN1 N-terminal asparagine amidase protein-coding 34 0.004049
+123811 FOPNL FGFR1OP N-terminal like protein-coding 31 0.003692
+123872 DNAAF1 dynein axonemal assembly factor 1 protein-coding 85 0.01012
+123876 ACSM2A acyl-CoA synthetase medium chain family member 2A protein-coding 141 0.01679
+123879 DCUN1D3 defective in cullin neddylation 1 domain containing 3 protein-coding 33 0.00393
+123904 NRN1L neuritin 1 like protein-coding 18 0.002144
+123920 CMTM3 CKLF like MARVEL transmembrane domain containing 3 protein-coding 20 0.002382
+123970 C16orf78 chromosome 16 open reading frame 78 protein-coding 53 0.006312
+124044 SPATA2L spermatogenesis associated 2 like protein-coding 43 0.005121
+124045 SPATA33 spermatogenesis associated 33 protein-coding 10 0.001191
+124056 NOXO1 NADPH oxidase organizer 1 protein-coding 32 0.003811
+124093 CCDC78 coiled-coil domain containing 78 protein-coding 48 0.005716
+124149 ANKRD26P1 ankyrin repeat domain 26 pseudogene 1 pseudo 32 0.003811
+124152 IQCK IQ motif containing K protein-coding 29 0.003454
+124220 ZG16B zymogen granule protein 16B protein-coding 28 0.003335
+124221 PRSS30P serine protease 30, pseudogene pseudo 11 0.00131
+124222 PAQR4 progestin and adipoQ receptor family member 4 protein-coding 26 0.003096
+124245 ZC3H18 zinc finger CCCH-type containing 18 protein-coding 142 0.01691
+124274 GPR139 G protein-coupled receptor 139 protein-coding 90 0.01072
+124359 CDYL2 chromodomain Y like 2 protein-coding 80 0.009527
+124401 ANKS3 ankyrin repeat and sterile alpha motif domain containing 3 protein-coding 49 0.005835
+124402 UBALD1 UBA like domain containing 1 protein-coding 8 0.0009527
+124404 SEPT12 septin 12 protein-coding 50 0.005955
+124411 ZNF720 zinc finger protein 720 protein-coding 12 0.001429
+124446 TMEM219 transmembrane protein 219 protein-coding 9 0.001072
+124454 EARS2 glutamyl-tRNA synthetase 2, mitochondrial protein-coding 47 0.005597
+124460 SNX20 sorting nexin 20 protein-coding 51 0.006074
+124491 TMEM170A transmembrane protein 170A protein-coding 10 0.001191
+124512 METTL23 methyltransferase like 23 protein-coding 19 0.002263
+124535 HSF5 heat shock transcription factor 5 protein-coding 62 0.007384
+124538 OR4D2 olfactory receptor family 4 subfamily D member 2 protein-coding 65 0.007741
+124540 MSI2 musashi RNA binding protein 2 protein-coding 38 0.004525
+124565 SLC38A10 solute carrier family 38 member 10 protein-coding 101 0.01203
+124583 CANT1 calcium activated nucleotidase 1 protein-coding 44 0.00524
+124590 USH1G USH1 protein network component sans protein-coding 71 0.008455
+124599 CD300LB CD300 molecule like family member b protein-coding 47 0.005597
+124602 KIF19 kinesin family member 19 protein-coding 120 0.01429
+124626 ZPBP2 zona pellucida binding protein 2 protein-coding 47 0.005597
+124637 CYB5D1 cytochrome b5 domain containing 1 protein-coding 15 0.001786
+124641 OVCA2 OVCA2, serine hydrolase domain containing protein-coding 10 0.001191
+124739 USP43 ubiquitin specific peptidase 43 protein-coding 94 0.01119
+124751 KRBA2 KRAB-A domain containing 2 protein-coding 49 0.005835
+124773 C17orf64 chromosome 17 open reading frame 64 protein-coding 28 0.003335
+124783 SPATA32 spermatogenesis associated 32 protein-coding 32 0.003811
+124790 HEXIM2 hexamethylene bisacetamide inducible 2 protein-coding 28 0.003335
+124801 LSM12 LSM12 homolog protein-coding 16 0.001905
+124808 CCDC43 coiled-coil domain containing 43 protein-coding 23 0.002739
+124817 CNTD1 cyclin N-terminal domain containing 1 protein-coding 33 0.00393
+124842 TMEM132E transmembrane protein 132E protein-coding 181 0.02156
+124857 WFIKKN2 WAP, follistatin/kazal, immunoglobulin, kunitz and netrin domain containing 2 protein-coding 91 0.01084
+124872 B4GALNT2 beta-1,4-N-acetyl-galactosaminyltransferase 2 protein-coding 77 0.00917
+124912 SPACA3 sperm acrosome associated 3 protein-coding 47 0.005597
+124923 SGK494 uncharacterized serine/threonine-protein kinase SgK494 protein-coding 23 0.002739
+124925 SEZ6 seizure related 6 homolog protein-coding 97 0.01155
+124930 ANKRD13B ankyrin repeat domain 13B protein-coding 66 0.00786
+124935 SLC43A2 solute carrier family 43 member 2 protein-coding 52 0.006193
+124936 CYB5D2 cytochrome b5 domain containing 2 protein-coding 29 0.003454
+124944 C17orf49 chromosome 17 open reading frame 49 protein-coding 14 0.001667
+124961 ZFP3 ZFP3 zinc finger protein protein-coding 55 0.00655
+124975 GGT6 gamma-glutamyltransferase 6 protein-coding 36 0.004287
+124976 SPNS2 sphingolipid transporter 2 protein-coding 47 0.005597
+124989 EFCAB13 EF-hand calcium binding domain 13 protein-coding 113 0.01346
+124995 MRPL10 mitochondrial ribosomal protein L10 protein-coding 22 0.00262
+124997 WDR81 WD repeat domain 81 protein-coding 141 0.01679
+125058 TBC1D16 TBC1 domain family member 16 protein-coding 87 0.01036
+125061 AFMID arylformamidase protein-coding 43 0.005121
+125111 GJD3 gap junction protein delta 3 protein-coding 2 0.0002382
+125113 KRT222 keratin 222 protein-coding 50 0.005955
+125115 KRT40 keratin 40 protein-coding 52 0.006193
+125150 ZSWIM7 zinc finger SWIM-type containing 7 protein-coding 6 0.0007145
+125170 MIEF2 mitochondrial elongation factor 2 protein-coding 40 0.004764
+125206 SLC5A10 solute carrier family 5 member 10 protein-coding 75 0.008932
+125228 FAM210A family with sequence similarity 210 member A protein-coding 34 0.004049
+125336 LOXHD1 lipoxygenase homology domains 1 protein-coding 135 0.01608
+125476 INO80C INO80 complex subunit C protein-coding 23 0.002739
+125488 TTC39C tetratricopeptide repeat domain 39C protein-coding 57 0.006788
+125704 FAM69C family with sequence similarity 69 member C protein-coding 40 0.004764
+125875 CLDND2 claudin domain containing 2 protein-coding 7 0.0008336
+125893 ZNF816 zinc finger protein 816 protein-coding 81 0.009646
+125919 ZNF543 zinc finger protein 543 protein-coding 96 0.01143
+125931 CEACAM20 carcinoembryonic antigen related cell adhesion molecule 20 protein-coding 88 0.01048
+125950 RAVER1 ribonucleoprotein, PTB binding 1 protein-coding 67 0.007979
+125958 OR7D4 olfactory receptor family 7 subfamily D member 4 protein-coding 76 0.009051
+125962 OR7G1 olfactory receptor family 7 subfamily G member 1 protein-coding 48 0.005716
+125963 OR1M1 olfactory receptor family 1 subfamily M member 1 protein-coding 62 0.007384
+125965 COX6B2 cytochrome c oxidase subunit 6B2 protein-coding 6 0.0007145
+125972 CALR3 calreticulin 3 protein-coding 50 0.005955
+125981 ACER1 alkaline ceramidase 1 protein-coding 45 0.005359
+125988 C19orf70 chromosome 19 open reading frame 70 protein-coding 25 0.002977
+125997 MBD3L2 methyl-CpG binding domain protein 3 like 2 protein-coding 9 0.001072
+126003 TRAPPC5 trafficking protein particle complex 5 protein-coding 21 0.002501
+126006 PCP2 Purkinje cell protein 2 protein-coding 17 0.002025
+126014 OSCAR osteoclast associated, immunoglobulin-like receptor protein-coding 24 0.002858
+126017 ZNF813 zinc finger protein 813 protein-coding 111 0.01322
+126068 ZNF441 zinc finger protein 441 protein-coding 91 0.01084
+126069 ZNF491 zinc finger protein 491 protein-coding 72 0.008574
+126070 ZNF440 zinc finger protein 440 protein-coding 95 0.01131
+126074 SWSAP1 SWIM-type zinc finger 7 associated protein 1 protein-coding 18 0.002144
+126075 CCDC159 coiled-coil domain containing 159 protein-coding 23 0.002739
+126119 JOSD2 Josephin domain containing 2 protein-coding 21 0.002501
+126123 IZUMO2 IZUMO family member 2 protein-coding 43 0.005121
+126129 CPT1C carnitine palmitoyltransferase 1C protein-coding 107 0.01274
+126133 ALDH16A1 aldehyde dehydrogenase 16 family member A1 protein-coding 90 0.01072
+126147 NTN5 netrin 5 protein-coding 29 0.003454
+126204 NLRP13 NLR family pyrin domain containing 13 protein-coding 199 0.0237
+126205 NLRP8 NLR family pyrin domain containing 8 protein-coding 214 0.02549
+126206 NLRP5 NLR family pyrin domain containing 5 protein-coding 241 0.0287
+126208 ZNF787 zinc finger protein 787 protein-coding 28 0.003335
+126231 ZNF573 zinc finger protein 573 protein-coding 74 0.008813
+126248 WDR88 WD repeat domain 88 protein-coding 69 0.008217
+126259 TMIGD2 transmembrane and immunoglobulin domain containing 2 protein-coding 40 0.004764
+126272 EID2B EP300 interacting inhibitor of differentiation 2B protein-coding 12 0.001429
+126282 TNFAIP8L1 TNF alpha induced protein 8 like 1 protein-coding 11 0.00131
+126295 ZNF57 zinc finger protein 57 protein-coding 54 0.006431
+126298 IRGQ immunity related GTPase Q protein-coding 57 0.006788
+126299 ZNF428 zinc finger protein 428 protein-coding 18 0.002144
+126306 JSRP1 junctional sarcoplasmic reticulum protein 1 protein-coding 45 0.005359
+126308 MOB3A MOB kinase activator 3A protein-coding 25 0.002977
+126321 MFSD12 major facilitator superfamily domain containing 12 protein-coding 54 0.006431
+126326 GIPC3 GIPC PDZ domain containing family member 3 protein-coding 44 0.00524
+126328 NDUFA11 NADH:ubiquinone oxidoreductase subunit A11 protein-coding 9 0.001072
+126353 MISP mitotic spindle positioning protein-coding 84 0.01
+126364 LRRC25 leucine rich repeat containing 25 protein-coding 36 0.004287
+126370 OR1I1 olfactory receptor family 1 subfamily I member 1 protein-coding 41 0.004883
+126374 WTIP WT1 interacting protein protein-coding 31 0.003692
+126375 ZNF792 zinc finger protein 792 protein-coding 72 0.008574
+126382 NR2C2AP nuclear receptor 2C2 associated protein protein-coding 22 0.00262
+126393 HSPB6 heat shock protein family B (small) member 6 protein-coding 3 0.0003573
+126402 CCDC105 coiled-coil domain containing 105 protein-coding 68 0.008098
+126410 CYP4F22 cytochrome P450 family 4 subfamily F member 22 protein-coding 86 0.01024
+126432 RINL Ras and Rab interactor like protein-coding 35 0.004168
+126433 FBXO27 F-box protein 27 protein-coding 37 0.004406
+126520 PLK5 polo like kinase 5 protein-coding 10 0.001191
+126526 C19orf47 chromosome 19 open reading frame 47 protein-coding 42 0.005002
+126536 LINC00661 long intergenic non-protein coding RNA 661 ncRNA 15 0.001786
+126541 OR10H4 olfactory receptor family 10 subfamily H member 4 protein-coding 57 0.006788
+126549 ANKLE1 ankyrin repeat and LEM domain containing 1 protein-coding 55 0.00655
+126567 C2CD4C C2 calcium dependent domain containing 4C protein-coding 10 0.001191
+126626 GABPB2 GA binding protein transcription factor beta subunit 2 protein-coding 39 0.004645
+126637 TCHHL1 trichohyalin like 1 protein-coding 127 0.01512
+126638 RPTN repetin protein-coding 116 0.01381
+126661 CCDC163 coiled-coil domain containing 163 protein-coding 15 0.001786
+126668 TDRD10 tudor domain containing 10 protein-coding 65 0.007741
+126669 SHE Src homology 2 domain containing E protein-coding 62 0.007384
+126695 KDF1 keratinocyte differentiation factor 1 protein-coding 51 0.006074
+126731 CCSAP centriole, cilia and spindle associated protein protein-coding 24 0.002858
+126755 LRRC38 leucine rich repeat containing 38 protein-coding 23 0.002739
+126767 AADACL3 arylacetamide deacetylase like 3 protein-coding 49 0.005835
+126789 PUSL1 pseudouridylate synthase-like 1 protein-coding 12 0.001429
+126792 B3GALT6 beta-1,3-galactosyltransferase 6 protein-coding 8 0.0009527
+126820 WDR63 WD repeat domain 63 protein-coding 108 0.01286
+126823 KLHDC9 kelch domain containing 9 protein-coding 30 0.003573
+126859 AXDND1 axonemal dynein light chain domain containing 1 protein-coding 159 0.01894
+126868 MAB21L3 mab-21 like 3 protein-coding 29 0.003454
+126917 IFFO2 intermediate filament family orphan 2 protein-coding 24 0.002858
+126969 SLC44A3 solute carrier family 44 member 3 protein-coding 80 0.009527
+127002 ATXN7L2 ataxin 7 like 2 protein-coding 79 0.009408
+127003 C1orf194 chromosome 1 open reading frame 194 protein-coding 15 0.001786
+127018 LYPLAL1 lysophospholipase like 1 protein-coding 25 0.002977
+127059 OR2M5 olfactory receptor family 2 subfamily M member 5 protein-coding 143 0.01703
+127062 OR2M3 olfactory receptor family 2 subfamily M member 3 protein-coding 158 0.01882
+127064 OR2T12 olfactory receptor family 2 subfamily T member 12 protein-coding 140 0.01667
+127066 OR14C36 olfactory receptor family 14 subfamily C member 36 protein-coding 96 0.01143
+127068 OR2T34 olfactory receptor family 2 subfamily T member 34 protein-coding 88 0.01048
+127069 OR2T10 olfactory receptor family 2 subfamily T member 10 protein-coding 81 0.009646
+127074 OR2T4 olfactory receptor family 2 subfamily T member 4 protein-coding 137 0.01632
+127077 OR2T11 olfactory receptor family 2 subfamily T member 11 (gene/pseudogene) protein-coding 82 0.009765
+127124 ATP6V1G3 ATPase H+ transporting V1 subunit G3 protein-coding 25 0.002977
+127247 ASB17 ankyrin repeat and SOCS box containing 17 protein-coding 68 0.008098
+127253 TYW3 tRNA-yW synthesizing protein 3 homolog protein-coding 36 0.004287
+127254 ERICH3 glutamate rich 3 protein-coding 389 0.04633
+127255 LRRIQ3 leucine rich repeats and IQ motif containing 3 protein-coding 172 0.02048
+127262 TPRG1L tumor protein p63 regulated 1 like protein-coding 28 0.003335
+127281 FAM213B family with sequence similarity 213 member B protein-coding 13 0.001548
+127294 MYOM3 myomesin 3 protein-coding 173 0.0206
+127343 DMBX1 diencephalon/mesencephalon homeobox 1 protein-coding 74 0.008813
+127385 OR10J5 olfactory receptor family 10 subfamily J member 5 protein-coding 70 0.008336
+127391 TMCO2 transmembrane and coiled-coil domains 2 protein-coding 27 0.003215
+127396 ZNF684 zinc finger protein 684 protein-coding 39 0.004645
+127428 TCEANC2 transcription elongation factor A N-terminal and central domain containing 2 protein-coding 21 0.002501
+127435 PODN podocan protein-coding 100 0.01191
+127495 LRRC39 leucine rich repeat containing 39 protein-coding 37 0.004406
+127534 GJB4 gap junction protein beta 4 protein-coding 51 0.006074
+127540 HMGB4 high mobility group box 4 protein-coding 32 0.003811
+127544 RNF19B ring finger protein 19B protein-coding 47 0.005597
+127550 A3GALT2 alpha 1,3-galactosyltransferase 2 protein-coding 17 0.002025
+127579 DCST2 DC-STAMP domain containing 2 protein-coding 96 0.01143
+127602 DNAH14 dynein axonemal heavy chain 14 protein-coding 211 0.02513
+127623 OR2B11 olfactory receptor family 2 subfamily B member 11 protein-coding 86 0.01024
+127665 ZNF648 zinc finger protein 648 protein-coding 118 0.01405
+127670 TEDDM1 transmembrane epididymal protein 1 protein-coding 28 0.003335
+127687 C1orf122 chromosome 1 open reading frame 122 protein-coding 6 0.0007145
+127700 OSCP1 organic solute carrier partner 1 protein-coding 37 0.004406
+127703 C1orf216 chromosome 1 open reading frame 216 protein-coding 22 0.00262
+127707 KLHDC7A kelch domain containing 7A protein-coding 95 0.01131
+127731 VWA5B1 von Willebrand factor A domain containing 5B1 protein-coding 72 0.008574
+127733 UBXN10 UBX domain protein 10 protein-coding 40 0.004764
+127795 C1orf87 chromosome 1 open reading frame 87 protein-coding 75 0.008932
+127829 ARL8A ADP ribosylation factor like GTPase 8A protein-coding 17 0.002025
+127833 SYT2 synaptotagmin 2 protein-coding 63 0.007503
+127845 GOLT1A golgi transport 1A protein-coding 78 0.009289
+127933 UHMK1 U2AF homology motif kinase 1 protein-coding 43 0.005121
+127943 FCRLB Fc receptor like B protein-coding 43 0.005121
+128025 WDR64 WD repeat domain 64 protein-coding 136 0.0162
+128061 C1orf131 chromosome 1 open reading frame 131 protein-coding 38 0.004525
+128077 LIX1L limb and CNS expressed 1 like protein-coding 24 0.002858
+128153 SPATA17 spermatogenesis associated 17 protein-coding 183 0.02179
+128178 EDARADD EDAR associated death domain protein-coding 35 0.004168
+128209 KLF17 Kruppel like factor 17 protein-coding 65 0.007741
+128218 TMEM125 transmembrane protein 125 protein-coding 21 0.002501
+128229 TSACC TSSK6 activating cochaperone protein-coding 21 0.002501
+128239 IQGAP3 IQ motif containing GTPase activating protein 3 protein-coding 170 0.02025
+128240 NAXE NAD(P)HX epimerase protein-coding 27 0.003215
+128272 ARHGEF19 Rho guanine nucleotide exchange factor 19 protein-coding 62 0.007384
+128308 MRPL55 mitochondrial ribosomal protein L55 protein-coding 23 0.002739
+128312 HIST3H2BB histone cluster 3 H2B family member b protein-coding 18 0.002144
+128338 DRAM2 DNA damage regulated autophagy modulator 2 protein-coding 26 0.003096
+128344 PIFO primary cilia formation protein-coding 27 0.003215
+128346 C1orf162 chromosome 1 open reading frame 162 protein-coding 19 0.002263
+128360 OR10T2 olfactory receptor family 10 subfamily T member 2 protein-coding 69 0.008217
+128366 OR6P1 olfactory receptor family 6 subfamily P member 1 protein-coding 44 0.00524
+128367 OR10X1 olfactory receptor family 10 subfamily X member 1 (gene/pseudogene) protein-coding 99 0.01179
+128368 OR10Z1 olfactory receptor family 10 subfamily Z member 1 protein-coding 105 0.0125
+128371 OR6K6 olfactory receptor family 6 subfamily K member 6 protein-coding 97 0.01155
+128372 OR6N1 olfactory receptor family 6 subfamily N member 1 protein-coding 98 0.01167
+128387 TATDN3 TatD DNase domain containing 3 protein-coding 35 0.004168
+128408 BHLHE23 basic helix-loop-helix family member e23 protein-coding 12 0.001429
+128414 NKAIN4 sodium/potassium transporting ATPase interacting 4 protein-coding 22 0.00262
+128434 VSTM2L V-set and transmembrane domain containing 2 like protein-coding 23 0.002739
+128486 FITM2 fat storage inducing transmembrane protein 2 protein-coding 26 0.003096
+128488 WFDC12 WAP four-disulfide core domain 12 protein-coding 14 0.001667
+128497 SPATA25 spermatogenesis associated 25 protein-coding 20 0.002382
+128506 OCSTAMP osteoclast stimulatory transmembrane protein protein-coding 34 0.004049
+128553 TSHZ2 teashirt zinc finger homeobox 2 protein-coding 209 0.02489
+128602 C20orf85 chromosome 20 open reading frame 85 protein-coding 28 0.003335
+128611 ZNF831 zinc finger protein 831 protein-coding 315 0.03751
+128637 TBC1D20 TBC1 domain family member 20 protein-coding 47 0.005597
+128646 SIRPD signal regulatory protein delta protein-coding 38 0.004525
+128653 C20orf141 chromosome 20 open reading frame 141 protein-coding 16 0.001905
+128674 PROKR2 prokineticin receptor 2 protein-coding 95 0.01131
+128710 SLX4IP SLX4 interacting protein protein-coding 48 0.005716
+128817 CSTL1 cystatin like 1 protein-coding 36 0.004287
+128821 CST9L cystatin 9 like protein-coding 28 0.003335
+128822 CST9 cystatin 9 protein-coding 22 0.00262
+128826 MIR1-1HG MIR1-1 host gene protein-coding 13 0.001548
+128853 DUSP15 dual specificity phosphatase 15 protein-coding 16 0.001905
+128859 BPIFB6 BPI fold containing family B member 6 protein-coding 77 0.00917
+128861 BPIFA3 BPI fold containing family A member 3 protein-coding 37 0.004406
+128864 C20orf144 chromosome 20 open reading frame 144 protein-coding 8 0.0009527
+128866 CHMP4B charged multivesicular body protein 4B protein-coding 52 0.006193
+128869 PIGU phosphatidylinositol glycan anchor biosynthesis class U protein-coding 104 0.01239
+128876 FAM83C family with sequence similarity 83 member C protein-coding 109 0.01298
+128954 GAB4 GRB2 associated binding protein family member 4 protein-coding 118 0.01405
+128977 C22orf39 chromosome 22 open reading frame 39 protein-coding 7 0.0008336
+128989 TANGO2 transport and golgi organization 2 homolog protein-coding 23 0.002739
+129025 ZNF280A zinc finger protein 280A protein-coding 92 0.01096
+129049 SGSM1 small G protein signaling modulator 1 protein-coding 127 0.01512
+129080 EMID1 EMI domain containing 1 protein-coding 43 0.005121
+129138 ANKRD54 ankyrin repeat domain 54 protein-coding 29 0.003454
+129285 PPP1R21 protein phosphatase 1 regulatory subunit 21 protein-coding 90 0.01072
+129293 TRABD2A TraB domain containing 2A protein-coding 66 0.00786
+129303 TMEM150A transmembrane protein 150A protein-coding 20 0.002382
+129401 NUP35 nucleoporin 35 protein-coding 39 0.004645
+129446 XIRP2 xin actin binding repeat containing 2 protein-coding 669 0.07967
+129450 TYW5 tRNA-yW synthesizing protein 5 protein-coding 33 0.00393
+129521 NMS neuromedin S protein-coding 36 0.004287
+129530 LYG1 lysozyme g1 protein-coding 28 0.003335
+129531 MITD1 microtubule interacting and trafficking domain containing 1 protein-coding 28 0.003335
+129563 DIS3L2 DIS3 like 3'-5' exoribonuclease 2 protein-coding 103 0.01227
+129607 CMPK2 cytidine/uridine monophosphate kinase 2 protein-coding 34 0.004049
+129642 MBOAT2 membrane bound O-acyltransferase domain containing 2 protein-coding 95 0.01131
+129684 CNTNAP5 contactin associated protein like 5 protein-coding 415 0.04942
+129685 TAF8 TATA-box binding protein associated factor 8 protein-coding 32 0.003811
+129787 TMEM18 transmembrane protein 18 protein-coding 23 0.002739
+129790 C7orf13 chromosome 7 open reading frame 13 ncRNA 9 0.001072
+129804 FBLN7 fibulin 7 protein-coding 70 0.008336
+129807 NEU4 neuraminidase 4 protein-coding 60 0.007145
+129831 RBM45 RNA binding motif protein 45 protein-coding 57 0.006788
+129852 C2orf73 chromosome 2 open reading frame 73 protein-coding 36 0.004287
+129868 TRIM43 tripartite motif containing 43 protein-coding 45 0.005359
+129880 BBS5 Bardet-Biedl syndrome 5 protein-coding 40 0.004764
+129881 CCDC173 coiled-coil domain containing 173 protein-coding 78 0.009289
+130013 ACMSD aminocarboxymuconate semialdehyde decarboxylase protein-coding 50 0.005955
+130026 ICA1L islet cell autoantigen 1 like protein-coding 41 0.004883
+130074 FAM168B family with sequence similarity 168 member B protein-coding 34 0.004049
+130075 OR9A4 olfactory receptor family 9 subfamily A member 4 protein-coding 58 0.006907
+130106 CIB4 calcium and integrin binding family member 4 protein-coding 24 0.002858
+130120 REG3G regenerating family member 3 gamma protein-coding 86 0.01024
+130132 RFTN2 raftlin family member 2 protein-coding 80 0.009527
+130162 CLHC1 clathrin heavy chain linker domain containing 1 protein-coding 61 0.007264
+130271 PLEKHH2 pleckstrin homology, MyTH4 and FERM domain containing H2 protein-coding 184 0.02191
+130340 AP1S3 adaptor related protein complex 1 sigma 3 subunit protein-coding 22 0.00262
+130355 C2orf76 chromosome 2 open reading frame 76 protein-coding 20 0.002382
+130367 SGPP2 sphingosine-1-phosphate phosphatase 2 protein-coding 37 0.004406
+130399 ACVR1C activin A receptor type 1C protein-coding 66 0.00786
+130497 OSR1 odd-skipped related transciption factor 1 protein-coding 51 0.006074
+130502 TTC32 tetratricopeptide repeat domain 32 protein-coding 20 0.002382
+130507 UBR3 ubiquitin protein ligase E3 component n-recognin 3 (putative) protein-coding 150 0.01786
+130535 KCTD18 potassium channel tetramerization domain containing 18 protein-coding 56 0.006669
+130540 ALS2CR12 amyotrophic lateral sclerosis 2 chromosome region 12 protein-coding 44 0.00524
+130557 ZNF513 zinc finger protein 513 protein-coding 77 0.00917
+130560 SPATA3 spermatogenesis associated 3 protein-coding 17 0.002025
+130574 LYPD6 LY6/PLAUR domain containing 6 protein-coding 16 0.001905
+130576 LYPD6B LY6/PLAUR domain containing 6B protein-coding 35 0.004168
+130589 GALM galactose mutarotase protein-coding 34 0.004049
+130612 TMEM198 transmembrane protein 198 protein-coding 53 0.006312
+130617 ZFAND2B zinc finger AN1-type containing 2B protein-coding 32 0.003811
+130733 TMEM178A transmembrane protein 178A protein-coding 44 0.00524
+130749 CPO carboxypeptidase O protein-coding 61 0.007264
+130752 MDH1B malate dehydrogenase 1B protein-coding 81 0.009646
+130813 C2orf50 chromosome 2 open reading frame 50 protein-coding 11 0.00131
+130814 PQLC3 PQ loop repeat containing 3 protein-coding 22 0.00262
+130827 TMEM182 transmembrane protein 182 protein-coding 36 0.004287
+130872 AHSA2P activator of HSP90 ATPase homolog 2, pseudogene pseudo 13 0.001548
+130888 FBXO36 F-box protein 36 protein-coding 20 0.002382
+130916 MTERF4 mitochondrial transcription termination factor 4 protein-coding 37 0.004406
+130940 CCDC148 coiled-coil domain containing 148 protein-coding 81 0.009646
+130951 M1AP meiosis 1 associated protein protein-coding 73 0.008694
+131034 CPNE4 copine 4 protein-coding 105 0.0125
+131076 CCDC58 coiled-coil domain containing 58 protein-coding 23 0.002739
+131096 KCNH8 potassium voltage-gated channel subfamily H member 8 protein-coding 254 0.03025
+131118 DNAJC19 DnaJ heat shock protein family (Hsp40) member C19 protein-coding 18 0.002144
+131149 OTOL1 otolin 1 protein-coding 92 0.01096
+131177 FAM3D family with sequence similarity 3 member D protein-coding 42 0.005002
+131368 ZPLD1 zona pellucida like domain containing 1 protein-coding 90 0.01072
+131375 LYZL4 lysozyme like 4 protein-coding 20 0.002382
+131377 KLHL40 kelch like family member 40 protein-coding 88 0.01048
+131405 TRIM71 tripartite motif containing 71 protein-coding 104 0.01239
+131408 FAM131A family with sequence similarity 131 member A protein-coding 36 0.004287
+131450 CD200R1 CD200 receptor 1 protein-coding 177 0.02108
+131474 CHCHD4 coiled-coil-helix-coiled-coil-helix domain containing 4 protein-coding 21 0.002501
+131540 ZDHHC19 zinc finger DHHC-type containing 19 protein-coding 39 0.004645
+131544 CRYBG3 crystallin beta-gamma domain containing 3 protein-coding 150 0.01786
+131566 DCBLD2 discoidin, CUB and LCCL domain containing 2 protein-coding 94 0.01119
+131578 LRRC15 leucine rich repeat containing 15 protein-coding 87 0.01036
+131583 FAM43A family with sequence similarity 43 member A protein-coding 22 0.00262
+131601 TPRA1 transmembrane protein adipocyte associated 1 protein-coding 34 0.004049
+131616 TMEM42 transmembrane protein 42 protein-coding 13 0.001548
+131669 UROC1 urocanate hydratase 1 protein-coding 122 0.01453
+131831 ERICH6 glutamate rich 6 protein-coding 99 0.01179
+131870 NUDT16 nudix hydrolase 16 protein-coding 20 0.002382
+131873 COL6A6 collagen type VI alpha 6 chain protein-coding 348 0.04144
+131890 GRK7 G protein-coupled receptor kinase 7 protein-coding 81 0.009646
+131920 TMEM207 transmembrane protein 207 protein-coding 33 0.00393
+131965 METTL6 methyltransferase like 6 protein-coding 38 0.004525
+132001 TAMM41 TAM41 mitochondrial translocator assembly and maintenance homolog protein-coding 30 0.003573
+132014 IL17RE interleukin 17 receptor E protein-coding 45 0.005359
+132112 RTP1 receptor transporter protein 1 protein-coding 53 0.006312
+132141 IQCF1 IQ motif containing F1 protein-coding 32 0.003811
+132158 GLYCTK glycerate kinase protein-coding 34 0.004049
+132160 PPM1M protein phosphatase, Mg2+/Mn2+ dependent 1M protein-coding 25 0.002977
+132200 C3orf49 chromosome 3 open reading frame 49 protein-coding 10 0.001191
+132203 SNTN sentan, cilia apical structure protein protein-coding 24 0.002858
+132204 SYNPR synaptoporin protein-coding 29 0.003454
+132228 LSMEM2 leucine rich single-pass membrane protein 2 protein-coding 23 0.002739
+132243 H1FOO H1 histone family member O oocyte specific protein-coding 39 0.004645
+132299 OCIAD2 OCIA domain containing 2 protein-coding 27 0.003215
+132320 SCLT1 sodium channel and clathrin linker 1 protein-coding 88 0.01048
+132321 C4orf33 chromosome 4 open reading frame 33 protein-coding 24 0.002858
+132332 TMEM155 transmembrane protein 155 protein-coding 25 0.002977
+132430 PABPC4L poly(A) binding protein cytoplasmic 4 like protein-coding 58 0.006907
+132612 ADAD1 adenosine deaminase domain containing 1 protein-coding 129 0.01536
+132625 ZFP42 ZFP42 zinc finger protein protein-coding 107 0.01274
+132660 LIN54 lin-54 DREAM MuvB core complex component protein-coding 63 0.007503
+132671 SPATA18 spermatogenesis associated 18 protein-coding 103 0.01227
+132720 FAM241A family with sequence similarity 241 member A protein-coding 10 0.001191
+132724 TMPRSS11B transmembrane serine protease 11B protein-coding 75 0.008932
+132789 GNPDA2 glucosamine-6-phosphate deaminase 2 protein-coding 39 0.004645
+132851 SPATA4 spermatogenesis associated 4 protein-coding 59 0.007026
+132864 CPEB2 cytoplasmic polyadenylation element binding protein 2 protein-coding 78 0.009289
+132884 EVC2 EvC ciliary complex subunit 2 protein-coding 199 0.0237
+132946 ARL9 ADP ribosylation factor like GTPase 9 protein-coding 18 0.002144
+132949 AASDH aminoadipate-semialdehyde dehydrogenase protein-coding 137 0.01632
+132954 PDCL2 phosducin like 2 protein-coding 25 0.002977
+132989 C4orf36 chromosome 4 open reading frame 36 protein-coding 14 0.001667
+133015 PACRGL parkin coregulated like protein-coding 41 0.004883
+133022 TRAM1L1 translocation associated membrane protein 1 like 1 protein-coding 83 0.009884
+133060 OTOP1 otopetrin 1 protein-coding 93 0.01108
+133121 ENPP6 ectonucleotide pyrophosphatase/phosphodiesterase 6 protein-coding 65 0.007741
+133308 SLC9B2 solute carrier family 9 member B2 protein-coding 73 0.008694
+133383 SETD9 SET domain containing 9 protein-coding 26 0.003096
+133396 IL31RA interleukin 31 receptor A protein-coding 96 0.01143
+133418 EMB embigin protein-coding 52 0.006193
+133482 SLCO6A1 solute carrier organic anion transporter family member 6A1 protein-coding 158 0.01882
+133491 C5orf47 chromosome 5 open reading frame 47 protein-coding 19 0.002263
+133522 PPARGC1B PPARG coactivator 1 beta protein-coding 100 0.01191
+133558 MROH2B maestro heat like repeat family member 2B protein-coding 356 0.0424
+133584 EGFLAM EGF like, fibronectin type III and laminin G domains protein-coding 198 0.02358
+133619 PRRC1 proline rich coiled-coil 1 protein-coding 42 0.005002
+133686 NADK2 NAD kinase 2, mitochondrial protein-coding 38 0.004525
+133688 UGT3A1 UDP glycosyltransferase family 3 member A1 protein-coding 116 0.01381
+133690 CAPSL calcyphosine like protein-coding 59 0.007026
+133746 JMY junction mediating and regulatory protein, p53 cofactor protein-coding 88 0.01048
+133874 C5orf58 chromosome 5 open reading frame 58 protein-coding 14 0.001667
+133923 ZNF474 zinc finger protein 474 protein-coding 57 0.006788
+133957 CCDC127 coiled-coil domain containing 127 protein-coding 34 0.004049
+134083 OR2Y1 olfactory receptor family 2 subfamily Y member 1 protein-coding 47 0.005597
+134111 UBE2QL1 ubiquitin conjugating enzyme E2 Q family like 1 protein-coding 14 0.001667
+134121 C5orf49 chromosome 5 open reading frame 49 protein-coding 21 0.002501
+134145 FAM173B family with sequence similarity 173 member B protein-coding 39 0.004645
+134147 CMBL carboxymethylenebutenolidase homolog protein-coding 27 0.003215
+134187 POU5F2 POU domain class 5, transcription factor 2 protein-coding 47 0.005597
+134218 DNAJC21 DnaJ heat shock protein family (Hsp40) member C21 protein-coding 74 0.008813
+134265 AFAP1L1 actin filament associated protein 1 like 1 protein-coding 84 0.01
+134266 GRPEL2 GrpE like 2, mitochondrial protein-coding 22 0.00262
+134285 TMEM171 transmembrane protein 171 protein-coding 46 0.005478
+134288 TMEM174 transmembrane protein 174 protein-coding 25 0.002977
+134353 LSM11 LSM11, U7 small nuclear RNA associated protein-coding 37 0.004406
+134359 POC5 POC5 centriolar protein protein-coding 52 0.006193
+134391 GPR151 G protein-coupled receptor 151 protein-coding 44 0.00524
+134429 STARD4 StAR related lipid transfer domain containing 4 protein-coding 39 0.004645
+134430 WDR36 WD repeat domain 36 protein-coding 117 0.01393
+134466 ZNF300P1 zinc finger protein 300 pseudogene 1 pseudo 85 0.01012
+134492 NUDCD2 NudC domain containing 2 protein-coding 13 0.001548
+134510 UBLCP1 ubiquitin like domain containing CTD phosphatase 1 protein-coding 43 0.005121
+134526 ACOT12 acyl-CoA thioesterase 12 protein-coding 85 0.01012
+134548 SOWAHA sosondowah ankyrin repeat domain family member A protein-coding 19 0.002263
+134549 SHROOM1 shroom family member 1 protein-coding 56 0.006669
+134553 C5orf24 chromosome 5 open reading frame 24 protein-coding 24 0.002858
+134637 ADAT2 adenosine deaminase, tRNA specific 2 protein-coding 23 0.002739
+134701 RIPPLY2 ripply transcriptional repressor 2 protein-coding 25 0.002977
+134728 IRAK1BP1 interleukin 1 receptor associated kinase 1 binding protein 1 protein-coding 31 0.003692
+134829 CLVS2 clavesin 2 protein-coding 86 0.01024
+134860 TAAR9 trace amine associated receptor 9 (gene/pseudogene) protein-coding 62 0.007384
+134864 TAAR1 trace amine associated receptor 1 protein-coding 60 0.007145
+134957 STXBP5 syntaxin binding protein 5 protein-coding 119 0.01417
+135112 NCOA7 nuclear receptor coactivator 7 protein-coding 100 0.01191
+135114 HINT3 histidine triad nucleotide binding protein 3 protein-coding 13 0.001548
+135138 PACRG parkin coregulated protein-coding 69 0.008217
+135152 B3GAT2 beta-1,3-glucuronyltransferase 2 protein-coding 45 0.005359
+135154 SDHAF4 succinate dehydrogenase complex assembly factor 4 protein-coding 16 0.001905
+135228 CD109 CD109 molecule protein-coding 165 0.01965
+135250 RAET1E retinoic acid early transcript 1E protein-coding 26 0.003096
+135293 PM20D2 peptidase M20 domain containing 2 protein-coding 35 0.004168
+135295 SRSF12 serine and arginine rich splicing factor 12 protein-coding 41 0.004883
+135398 C6orf141 chromosome 6 open reading frame 141 protein-coding 16 0.001905
+135458 HUS1B HUS1 checkpoint clamp component B protein-coding 43 0.005121
+135644 TRIM40 tripartite motif containing 40 protein-coding 32 0.003811
+135656 MUCL3 mucin like 3 protein-coding 100 0.01191
+135886 TMEM270 transmembrane protein 270 protein-coding 27 0.003215
+135892 TRIM50 tripartite motif containing 50 protein-coding 51 0.006074
+135924 OR9A2 olfactory receptor family 9 subfamily A member 2 protein-coding 47 0.005597
+135927 LLCFC1 LLLL and CFNLAS motif containing 1 protein-coding 27 0.003215
+135932 TMEM139 transmembrane protein 139 protein-coding 36 0.004287
+135935 NOBOX NOBOX oogenesis homeobox protein-coding 112 0.01334
+135941 OR2A14 olfactory receptor family 2 subfamily A member 14 protein-coding 69 0.008217
+135946 OR6B1 olfactory receptor family 6 subfamily B member 1 protein-coding 74 0.008813
+135948 OR2F2 olfactory receptor family 2 subfamily F member 2 protein-coding 84 0.01
+136051 ZNF786 zinc finger protein 786 protein-coding 96 0.01143
+136227 COL26A1 collagen type XXVI alpha 1 chain protein-coding 67 0.007979
+136242 PRSS37 serine protease 37 protein-coding 40 0.004764
+136259 KLF14 Kruppel like factor 14 protein-coding 27 0.003215
+136263 SSMEM1 serine rich single-pass membrane protein 1 protein-coding 49 0.005835
+136288 C7orf57 chromosome 7 open reading frame 57 protein-coding 43 0.005121
+136306 SVOPL SVOP like protein-coding 70 0.008336
+136319 MTPN myotrophin protein-coding 13 0.001548
+136332 LRGUK leucine rich repeats and guanylate kinase domain containing protein-coding 131 0.0156
+136371 ASB10 ankyrin repeat and SOCS box containing 10 protein-coding 56 0.006669
+136541 PRSS58 serine protease 58 protein-coding 58 0.006907
+136647 MPLKIP M-phase specific PLK1 interacting protein protein-coding 15 0.001786
+136853 SSC4D scavenger receptor cysteine rich family member with 4 domains protein-coding 33 0.00393
+136895 C7orf31 chromosome 7 open reading frame 31 protein-coding 76 0.009051
+136991 ASZ1 ankyrin repeat, SAM and basic leucine zipper domain containing 1 protein-coding 57 0.006788
+137075 CLDN23 claudin 23 protein-coding 15 0.001786
+137209 ZNF572 zinc finger protein 572 protein-coding 83 0.009884
+137362 GOT1L1 glutamic-oxaloacetic transaminase 1 like 1 protein-coding 49 0.005835
+137392 FAM92A family with sequence similarity 92 member A protein-coding 33 0.00393
+137492 VPS37A VPS37A, ESCRT-I subunit protein-coding 28 0.003335
+137682 NDUFAF6 NADH:ubiquinone oxidoreductase complex assembly factor 6 protein-coding 40 0.004764
+137695 TMEM68 transmembrane protein 68 protein-coding 26 0.003096
+137735 ABRA actin binding Rho activating protein protein-coding 72 0.008574
+137797 LYPD2 LY6/PLAUR domain containing 2 protein-coding 14 0.001667
+137814 NKX2-6 NK2 homeobox 6 protein-coding 15 0.001786
+137835 TMEM71 transmembrane protein 71 protein-coding 59 0.007026
+137868 SGCZ sarcoglycan zeta protein-coding 89 0.0106
+137872 ADHFE1 alcohol dehydrogenase, iron containing 1 protein-coding 59 0.007026
+137886 UBXN2B UBX domain protein 2B protein-coding 46 0.005478
+137902 PXDNL peroxidasin like protein-coding 382 0.04549
+137964 GPAT4 glycerol-3-phosphate acyltransferase 4 protein-coding 55 0.00655
+137970 UNC5D unc-5 netrin receptor D protein-coding 228 0.02715
+137994 LETM2 leucine zipper and EF-hand containing transmembrane protein 2 protein-coding 46 0.005478
+138009 DCAF4L2 DDB1 and CUL4 associated factor 4 like 2 protein-coding 215 0.0256
+138046 RALYL RALY RNA binding protein like protein-coding 101 0.01203
+138050 HGSNAT heparan-alpha-glucosaminide N-acetyltransferase protein-coding 74 0.008813
+138065 RNF183 ring finger protein 183 protein-coding 11 0.00131
+138151 NACC2 NACC family member 2 protein-coding 21 0.002501
+138162 C9orf116 chromosome 9 open reading frame 116 protein-coding 12 0.001429
+138199 CARNMT1 carnosine N-methyltransferase 1 protein-coding 52 0.006193
+138240 C9orf57 chromosome 9 open reading frame 57 protein-coding 16 0.001905
+138241 C9orf85 chromosome 9 open reading frame 85 protein-coding 20 0.002382
+138255 C9orf135 chromosome 9 open reading frame 135 protein-coding 48 0.005716
+138307 LCN8 lipocalin 8 protein-coding 24 0.002858
+138311 FAM69B family with sequence similarity 69 member B protein-coding 40 0.004764
+138428 PTRH1 peptidyl-tRNA hydrolase 1 homolog protein-coding 17 0.002025
+138429 PIP5KL1 phosphatidylinositol-4-phosphate 5-kinase like 1 protein-coding 24 0.002858
+138474 TAF1L TATA-box binding protein associated factor 1 like protein-coding 354 0.04216
+138639 PTPDC1 protein tyrosine phosphatase domain containing 1 protein-coding 81 0.009646
+138649 ANKRD19P ankyrin repeat domain 19, pseudogene pseudo 75 0.008932
+138715 ARID3C AT-rich interaction domain 3C protein-coding 47 0.005597
+138716 RPP25L ribonuclease P/MRP subunit p25 like protein-coding 35 0.004168
+138724 C9orf131 chromosome 9 open reading frame 131 protein-coding 120 0.01429
+138799 OR13C5 olfactory receptor family 13 subfamily C member 5 protein-coding 64 0.007622
+138802 OR13C8 olfactory receptor family 13 subfamily C member 8 protein-coding 75 0.008932
+138803 OR13C3 olfactory receptor family 13 subfamily C member 3 protein-coding 61 0.007264
+138804 OR13C4 olfactory receptor family 13 subfamily C member 4 protein-coding 80 0.009527
+138805 OR13F1 olfactory receptor family 13 subfamily F member 1 protein-coding 79 0.009408
+138881 OR1L8 olfactory receptor family 1 subfamily L member 8 protein-coding 63 0.007503
+138882 OR1N2 olfactory receptor family 1 subfamily N member 2 protein-coding 57 0.006788
+138883 OR1N1 olfactory receptor family 1 subfamily N member 1 protein-coding 46 0.005478
+139065 SLITRK4 SLIT and NTRK like family member 4 protein-coding 214 0.02549
+139067 SPANXN3 SPANX family member N3 protein-coding 49 0.005835
+139081 MAGEC3 MAGE family member C3 protein-coding 190 0.02263
+139105 BEND2 BEN domain containing 2 protein-coding 123 0.01465
+139135 PASD1 PAS domain containing repressor 1 protein-coding 153 0.01822
+139170 DCAF12L1 DDB1 and CUL4 associated factor 12 like 1 protein-coding 169 0.02013
+139189 DGKK diacylglycerol kinase kappa protein-coding 260 0.03096
+139212 PIH1D3 PIH1 domain containing 3 protein-coding 17 0.002025
+139221 MUM1L1 MUM1 like 1 protein-coding 107 0.01274
+139231 FAM199X family with sequence similarity 199, X-linked protein-coding 53 0.006312
+139285 AMER1 APC membrane recruitment protein 1 protein-coding 228 0.02715
+139322 APOOL apolipoprotein O like protein-coding 35 0.004168
+139324 HDX highly divergent homeobox protein-coding 146 0.01739
+139341 FUNDC1 FUN14 domain containing 1 protein-coding 14 0.001667
+139378 ADGRG4 adhesion G protein-coupled receptor G4 protein-coding 428 0.05097
+139411 PTCHD1 patched domain containing 1 protein-coding 134 0.01596
+139422 MAGEB10 MAGE family member B10 protein-coding 81 0.009646
+139425 DCAF8L1 DDB1 and CUL4 associated factor 8 like 1 protein-coding 145 0.01727
+139538 VENTXP1 VENT homeobox pseudogene 1 pseudo 1 0.0001191
+139562 OTUD6A OTU deubiquitinase 6A protein-coding 66 0.00786
+139596 UPRT uracil phosphoribosyltransferase homolog protein-coding 64 0.007622
+139599 MAGEE2 MAGE family member E2 protein-coding 119 0.01417
+139604 MAGEB16 MAGE family member B16 protein-coding 75 0.008932
+139628 FOXR2 forkhead box R2 protein-coding 56 0.006669
+139716 GAB3 GRB2 associated binding protein 3 protein-coding 78 0.009289
+139728 PNCK pregnancy up-regulated nonubiquitous CaM kinase protein-coding 61 0.007264
+139735 ZFP92 ZFP92 zinc finger protein protein-coding 44 0.00524
+139741 ACTRT1 actin related protein T1 protein-coding 128 0.01524
+139760 GPR119 G protein-coupled receptor 119 protein-coding 56 0.006669
+139793 PAGE3 PAGE family member 3 protein-coding 33 0.00393
+139804 RBMXL3 RNA binding motif protein, X-linked like 3 protein-coding 114 0.01358
+139818 DOCK11 dedicator of cytokinesis 11 protein-coding 247 0.02942
+139886 SPIN4 spindlin family member 4 protein-coding 28 0.003335
+140032 RPS4Y2 ribosomal protein S4, Y-linked 2 protein-coding 8 0.0009527
+140258 KRTAP13-1 keratin associated protein 13-1 protein-coding 48 0.005716
+140290 TCP10L t-complex 10 like protein-coding 24 0.002858
+140432 RNF113B ring finger protein 113B protein-coding 56 0.006669
+140453 MUC17 mucin 17, cell surface associated protein-coding 637 0.07586
+140456 ASB11 ankyrin repeat and SOCS box containing 11 protein-coding 55 0.00655
+140458 ASB5 ankyrin repeat and SOCS box containing 5 protein-coding 92 0.01096
+140459 ASB6 ankyrin repeat and SOCS box containing 6 protein-coding 38 0.004525
+140460 ASB7 ankyrin repeat and SOCS box containing 7 protein-coding 41 0.004883
+140461 ASB8 ankyrin repeat and SOCS box containing 8 protein-coding 31 0.003692
+140462 ASB9 ankyrin repeat and SOCS box containing 9 protein-coding 52 0.006193
+140465 MYL6B myosin light chain 6B protein-coding 16 0.001905
+140467 ZNF358 zinc finger protein 358 protein-coding 73 0.008694
+140468 COX11P1 COX11, cytochrome c oxidase copper chaperone pseudogene 1 pseudo 28 0.003335
+140469 MYO3B myosin IIIB protein-coding 164 0.01953
+140545 RNF32 ring finger protein 32 protein-coding 59 0.007026
+140564 APOBEC3D apolipoprotein B mRNA editing enzyme catalytic subunit 3D protein-coding 39 0.004645
+140576 S100A16 S100 calcium binding protein A16 protein-coding 14 0.001667
+140578 CHODL chondrolectin protein-coding 45 0.005359
+140596 DEFB104A defensin beta 104A protein-coding 8 0.0009527
+140597 TCEAL2 transcription elongation factor A like 2 protein-coding 36 0.004287
+140606 SELENOM selenoprotein M protein-coding 11 0.00131
+140609 NEK7 NIMA related kinase 7 protein-coding 41 0.004883
+140612 ZFP28 ZFP28 zinc finger protein protein-coding 96 0.01143
+140625 ACTRT2 actin related protein T2 protein-coding 81 0.009646
+140628 GATA5 GATA binding protein 5 protein-coding 36 0.004287
+140679 SLC32A1 solute carrier family 32 member 1 protein-coding 120 0.01429
+140680 C20orf96 chromosome 20 open reading frame 96 protein-coding 40 0.004764
+140683 BPIFA2 BPI fold containing family A member 2 protein-coding 31 0.003692
+140685 ZBTB46 zinc finger and BTB domain containing 46 protein-coding 95 0.01131
+140686 WFDC3 WAP four-disulfide core domain 3 protein-coding 25 0.002977
+140687 GCNT7 glucosaminyl (N-acetyl) transferase family member 7 protein-coding 21 0.002501
+140688 NOL4L nucleolar protein 4 like protein-coding 52 0.006193
+140689 CBLN4 cerebellin 4 precursor protein-coding 59 0.007026
+140690 CTCFL CCCTC-binding factor like protein-coding 121 0.01441
+140691 TRIM69 tripartite motif containing 69 protein-coding 57 0.006788
+140699 MROH8 maestro heat like repeat family member 8 protein-coding 101 0.01203
+140700 SAMD10 sterile alpha motif domain containing 10 protein-coding 19 0.002263
+140701 ABHD16B abhydrolase domain containing 16B protein-coding 39 0.004645
+140706 CCM2L CCM2 like scaffold protein protein-coding 35 0.004168
+140707 BRI3BP BRI3 binding protein protein-coding 26 0.003096
+140710 SOGA1 suppressor of glucose, autophagy associated 1 protein-coding 131 0.0156
+140711 TLDC2 TBC/LysM-associated domain containing 2 protein-coding 28 0.003335
+140730 RIMS4 regulating synaptic membrane exocytosis 4 protein-coding 50 0.005955
+140732 SUN5 Sad1 and UNC84 domain containing 5 protein-coding 73 0.008694
+140733 MACROD2 MACRO domain containing 2 protein-coding 86 0.01024
+140735 DYNLL2 dynein light chain LC8-type 2 protein-coding 14 0.001667
+140738 TMEM37 transmembrane protein 37 protein-coding 32 0.003811
+140739 UBE2F ubiquitin conjugating enzyme E2 F (putative) protein-coding 16 0.001905
+140766 ADAMTS14 ADAM metallopeptidase with thrombospondin type 1 motif 14 protein-coding 156 0.01858
+140767 NRSN1 neurensin 1 protein-coding 39 0.004645
+140775 SMCR8 Smith-Magenis syndrome chromosome region, candidate 8 protein-coding 101 0.01203
+140801 RPL10L ribosomal protein L10 like protein-coding 97 0.01155
+140803 TRPM6 transient receptor potential cation channel subfamily M member 6 protein-coding 278 0.03311
+140807 KRT72 keratin 72 protein-coding 82 0.009765
+140809 SRXN1 sulfiredoxin 1 protein-coding 11 0.00131
+140823 ROMO1 reactive oxygen species modulator 1 protein-coding 7 0.0008336
+140825 NEURL2 neuralized E3 ubiquitin protein ligase 2 protein-coding 29 0.003454
+140831 ZSWIM3 zinc finger SWIM-type containing 3 protein-coding 80 0.009527
+140832 WFDC10A WAP four-disulfide core domain 10A protein-coding 12 0.001429
+140834 LINC01620 long intergenic non-protein coding RNA 1620 ncRNA 9 0.001072
+140836 BANF2 barrier to autointegration factor 2 protein-coding 14 0.001667
+140838 NANP N-acetylneuraminic acid phosphatase protein-coding 19 0.002263
+140849 LINC00266-1 long intergenic non-protein coding RNA 266-1 ncRNA 6 0.0007145
+140850 DEFB127 defensin beta 127 protein-coding 17 0.002025
+140856 SCP2D1 SCP2 sterol binding domain containing 1 protein-coding 29 0.003454
+140862 ISM1 isthmin 1 protein-coding 61 0.007264
+140870 WFDC6 WAP four-disulfide core domain 6 protein-coding 12 0.001429
+140873 C20orf173 chromosome 20 open reading frame 173 protein-coding 19 0.002263
+140876 RIPOR3 RIPOR family member 3 protein-coding 105 0.0125
+140880 CST11 cystatin 11 protein-coding 33 0.00393
+140881 DEFB129 defensin beta 129 protein-coding 27 0.003215
+140883 ZNF280B zinc finger protein 280B protein-coding 68 0.008098
+140885 SIRPA signal regulatory protein alpha protein-coding 75 0.008932
+140886 PABPC5 poly(A) binding protein cytoplasmic 5 protein-coding 128 0.01524
+140890 SREK1 splicing regulatory glutamic acid and lysine rich protein 1 protein-coding 68 0.008098
+140893 RBBP8NL RBBP8 N-terminal like protein-coding 51 0.006074
+140894 CNBD2 cyclic nucleotide binding domain containing 2 protein-coding 83 0.009884
+140901 STK35 serine/threonine kinase 35 protein-coding 35 0.004168
+140902 R3HDML R3H domain containing like protein-coding 42 0.005002
+140913 PPIAP10 peptidylprolyl isomerase A pseudogene 10 pseudo 43 0.005121
+140947 DCANP1 dendritic cell associated nuclear protein protein-coding 35 0.004168
+142678 MIB2 mindbomb E3 ubiquitin protein ligase 2 protein-coding 73 0.008694
+142679 DUSP19 dual specificity phosphatase 19 protein-coding 33 0.00393
+142680 SLC34A3 solute carrier family 34 member 3 protein-coding 51 0.006074
+142683 ITLN2 intelectin 2 protein-coding 47 0.005597
+142684 RAB40A RAB40A, member RAS oncogene family protein-coding 32 0.003811
+142685 ASB15 ankyrin repeat and SOCS box containing 15 protein-coding 96 0.01143
+142686 ASB14 ankyrin repeat and SOCS box containing 14 protein-coding 38 0.004525
+142689 ASB12 ankyrin repeat and SOCS box containing 12 protein-coding 62 0.007384
+142827 ACSM6 acyl-CoA synthetase medium chain family member 6 protein-coding 41 0.004883
+142891 SAMD8 sterile alpha motif domain containing 8 protein-coding 38 0.004525
+142910 LIPJ lipase family member J protein-coding 43 0.005121
+142913 CFL1P1 cofilin 1 pseudogene 1 pseudo 11 0.00131
+142940 TRUB1 TruB pseudouridine synthase family member 1 protein-coding 42 0.005002
+143098 MPP7 membrane palmitoylated protein 7 protein-coding 80 0.009527
+143162 FRMPD2 FERM and PDZ domain containing 2 protein-coding 174 0.02072
+143187 VTI1A vesicle transport through interaction with t-SNAREs 1A protein-coding 23 0.002739
+143241 DYDC1 DPY30 domain containing 1 protein-coding 23 0.002739
+143244 EIF5AL1 eukaryotic translation initiation factor 5A-like 1 protein-coding 20 0.002382
+143279 HECTD2 HECT domain E3 ubiquitin protein ligase 2 protein-coding 90 0.01072
+143282 FGFBP3 fibroblast growth factor binding protein 3 protein-coding 7 0.0008336
+143379 C10orf82 chromosome 10 open reading frame 82 protein-coding 17 0.002025
+143384 CACUL1 CDK2 associated cullin domain 1 protein-coding 53 0.006312
+143425 SYT9 synaptotagmin 9 protein-coding 88 0.01048
+143458 LDLRAD3 low density lipoprotein receptor class A domain containing 3 protein-coding 41 0.004883
+143471 PSMA8 proteasome subunit alpha 8 protein-coding 50 0.005955
+143496 OR52B4 olfactory receptor family 52 subfamily B member 4 (gene/pseudogene) protein-coding 57 0.006788
+143501 C11orf40 chromosome 11 open reading frame 40 protein-coding 38 0.004525
+143502 OR52I2 olfactory receptor family 52 subfamily I member 2 protein-coding 66 0.00786
+143503 OR51E1 olfactory receptor family 51 subfamily E member 1 protein-coding 64 0.007622
+143570 XRRA1 X-ray radiation resistance associated 1 protein-coding 84 0.01
+143630 UBQLNL ubiquilin like protein-coding 79 0.009408
+143662 MUC15 mucin 15, cell surface associated protein-coding 81 0.009646
+143678 C11orf94 chromosome 11 open reading frame 94 protein-coding 15 0.001786
+143684 FAM76B family with sequence similarity 76 member B protein-coding 43 0.005121
+143686 SESN3 sestrin 3 protein-coding 79 0.009408
+143689 PIWIL4 piwi like RNA-mediated gene silencing 4 protein-coding 94 0.01119
+143872 ARHGAP42 Rho GTPase activating protein 42 protein-coding 82 0.009765
+143879 KBTBD3 kelch repeat and BTB domain containing 3 protein-coding 86 0.01024
+143884 CWF19L2 CWF19 like 2, cell cycle control (S. pombe) protein-coding 136 0.0162
+143888 KDELC2 KDEL motif containing 2 protein-coding 47 0.005597
+143903 LAYN layilin protein-coding 45 0.005359
+143941 TTC36 tetratricopeptide repeat domain 36 protein-coding 9 0.001072
+144097 SPINDOC spindlin interactor and repressor of chromatin binding protein-coding 53 0.006312
+144100 PLEKHA7 pleckstrin homology domain containing A7 protein-coding 124 0.01477
+144108 SPTY2D1 SPT2 chromatin protein domain containing 1 protein-coding 109 0.01298
+144110 TMEM86A transmembrane protein 86A protein-coding 23 0.002739
+144124 OR10A5 olfactory receptor family 10 subfamily A member 5 protein-coding 57 0.006788
+144125 OR2AG1 olfactory receptor family 2 subfamily AG member 1 (gene/pseudogene) protein-coding 51 0.006074
+144132 DNHD1 dynein heavy chain domain 1 protein-coding 249 0.02965
+144165 PRICKLE1 prickle planar cell polarity protein 1 protein-coding 144 0.01715
+144193 AMDHD1 amidohydrolase domain containing 1 protein-coding 60 0.007145
+144195 SLC2A14 solute carrier family 2 member 14 protein-coding 95 0.01131
+144233 BCDIN3D BCDIN3 domain containing RNA methyltransferase protein-coding 33 0.00393
+144245 ALG10B ALG10B, alpha-1,2-glucosyltransferase protein-coding 73 0.008694
+144321 GLIPR1L2 GLIPR1 like 2 protein-coding 58 0.006907
+144347 RFLNA refilin A protein-coding 22 0.00262
+144348 ZNF664 zinc finger protein 664 protein-coding 35 0.004168
+144360 LINC00477 long intergenic non-protein coding RNA 477 ncRNA 89 0.0106
+144363 ETFRF1 electron transfer flavoprotein regulatory factor 1 protein-coding 12 0.001429
+144402 CPNE8 copine 8 protein-coding 94 0.01119
+144404 TMEM120B transmembrane protein 120B protein-coding 33 0.00393
+144406 WDR66 WD repeat domain 66 protein-coding 131 0.0156
+144423 GLT1D1 glycosyltransferase 1 domain containing 1 protein-coding 59 0.007026
+144448 TSPAN19 tetraspanin 19 protein-coding 39 0.004645
+144453 BEST3 bestrophin 3 protein-coding 115 0.0137
+144455 E2F7 E2F transcription factor 7 protein-coding 126 0.01501
+144501 KRT80 keratin 80 protein-coding 46 0.005478
+144535 CFAP54 cilia and flagella associated protein 54 protein-coding 235 0.02799
+144568 A2ML1 alpha-2-macroglobulin like 1 protein-coding 189 0.02251
+144577 C12orf66 chromosome 12 open reading frame 66 protein-coding 65 0.007741
+144608 C12orf60 chromosome 12 open reading frame 60 protein-coding 40 0.004764
+144699 FBXL14 F-box and leucine rich repeat protein 14 protein-coding 29 0.003454
+144715 RAD9B RAD9 checkpoint clamp component B protein-coding 37 0.004406
+144717 PHETA1 PH domain containing endocytic trafficking adaptor 1 protein-coding 19 0.002263
+144809 FAM216B family with sequence similarity 216 member B protein-coding 14 0.001667
+144811 LACC1 laccase domain containing 1 protein-coding 48 0.005716
+144983 HNRNPA1L2 heterogeneous nuclear ribonucleoprotein A1-like 2 protein-coding 25 0.002977
+145173 B3GLCT beta 3-glucosyltransferase protein-coding 63 0.007503
+145226 RDH12 retinol dehydrogenase 12 protein-coding 41 0.004883
+145241 ADAM21P1 ADAM metallopeptidase domain 21 pseudogene 1 pseudo 164 0.01953
+145258 GSC goosecoid homeobox protein-coding 15 0.001786
+145264 SERPINA12 serpin family A member 12 protein-coding 72 0.008574
+145270 PRIMA1 proline rich membrane anchor 1 protein-coding 19 0.002263
+145282 MIPOL1 mirror-image polydactyly 1 protein-coding 70 0.008336
+145376 PPP1R36 protein phosphatase 1 regulatory subunit 36 protein-coding 62 0.007384
+145389 SLC38A6 solute carrier family 38 member 6 protein-coding 48 0.005716
+145407 ARMH4 armadillo-like helical domain containing 4 protein-coding 98 0.01167
+145447 ABHD12B abhydrolase domain containing 12B protein-coding 31 0.003692
+145482 PTGR2 prostaglandin reductase 2 protein-coding 27 0.003215
+145483 FAM161B family with sequence similarity 161 member B protein-coding 66 0.00786
+145497 LRRC74A leucine rich repeat containing 74A protein-coding 62 0.007384
+145501 ISM2 isthmin 2 protein-coding 65 0.007741
+145508 CEP128 centrosomal protein 128 protein-coding 171 0.02036
+145553 MDP1 magnesium dependent phosphatase 1 protein-coding 15 0.001786
+145567 TTC7B tetratricopeptide repeat domain 7B protein-coding 115 0.0137
+145581 LRFN5 leucine rich repeat and fibronectin type III domain containing 5 protein-coding 254 0.03025
+145645 TERB2 telomere repeat binding bouquet formation protein 2 protein-coding 31 0.003692
+145741 C2CD4A C2 calcium dependent domain containing 4A protein-coding 7 0.0008336
+145748 LYSMD4 LysM domain containing 4 protein-coding 38 0.004525
+145773 FAM81A family with sequence similarity 81 member A protein-coding 46 0.005478
+145781 GCOM1 GRINL1A complex locus 1 protein-coding 44 0.00524
+145788 C15orf65 chromosome 15 open reading frame 65 protein-coding 1 0.0001191
+145814 PGPEP1L pyroglutamyl-peptidase I like protein-coding 29 0.003454
+145853 C15orf61 chromosome 15 open reading frame 61 protein-coding 3 0.0003573
+145858 C15orf32 chromosome 15 open reading frame 32 protein-coding 24 0.002858
+145864 HAPLN3 hyaluronan and proteoglycan link protein 3 protein-coding 51 0.006074
+145873 MESP2 mesoderm posterior bHLH transcription factor 2 protein-coding 30 0.003573
+145942 TMCO5A transmembrane and coiled-coil domains 5A protein-coding 44 0.00524
+145946 SPATA8 spermatogenesis associated 8 protein-coding 34 0.004049
+145957 NRG4 neuregulin 4 protein-coding 14 0.001667
+145978 LINC00052 long intergenic non-protein coding RNA 52 ncRNA 22 0.00262
+146050 ZSCAN29 zinc finger and SCAN domain containing 29 protein-coding 79 0.009408
+146057 TTBK2 tau tubulin kinase 2 protein-coding 111 0.01322
+146059 CDAN1 codanin 1 protein-coding 106 0.01262
+146167 SLC38A8 solute carrier family 38 member 8 protein-coding 68 0.008098
+146177 VWA3A von Willebrand factor A domain containing 3A protein-coding 139 0.01655
+146183 OTOA otoancorin protein-coding 121 0.01441
+146198 ZFP90 ZFP90 zinc finger protein protein-coding 71 0.008455
+146206 CARMIL2 capping protein regulator and myosin 1 linker 2 protein-coding 138 0.01643
+146212 KCTD19 potassium channel tetramerization domain containing 19 protein-coding 103 0.01227
+146223 CMTM4 CKLF like MARVEL transmembrane domain containing 4 protein-coding 20 0.002382
+146225 CMTM2 CKLF like MARVEL transmembrane domain containing 2 protein-coding 20 0.002382
+146227 BEAN1 brain expressed associated with NEDD4 1 protein-coding 16 0.001905
+146279 TEKT5 tektin 5 protein-coding 81 0.009646
+146310 RNF151 ring finger protein 151 protein-coding 24 0.002858
+146325 PRR35 proline rich 35 protein-coding 47 0.005597
+146330 FBXL16 F-box and leucine rich repeat protein 16 protein-coding 38 0.004525
+146336 SSTR5-AS1 SSTR5 antisense RNA 1 ncRNA 9 0.001072
+146378 C16orf92 chromosome 16 open reading frame 92 protein-coding 22 0.00262
+146395 GSG1L GSG1 like protein-coding 48 0.005716
+146429 SLC22A31 solute carrier family 22 member 31 protein-coding 1 0.0001191
+146433 IL34 interleukin 34 protein-coding 23 0.002739
+146434 ZNF597 zinc finger protein 597 protein-coding 58 0.006907
+146439 BICDL2 BICD family like cargo adaptor 2 protein-coding 41 0.004883
+146456 TMED6 transmembrane p24 trafficking protein 6 protein-coding 27 0.003215
+146540 ZNF785 zinc finger protein 785 protein-coding 50 0.005955
+146542 ZNF688 zinc finger protein 688 protein-coding 32 0.003811
+146547 PRSS36 serine protease 36 protein-coding 75 0.008932
+146556 C16orf89 chromosome 16 open reading frame 89 protein-coding 45 0.005359
+146562 C16orf71 chromosome 16 open reading frame 71 protein-coding 54 0.006431
+146664 MGAT5B mannosyl (alpha-1,6-)-glycoprotein beta-1,6-N-acetyl-glucosaminyltransferase, isozyme B protein-coding 134 0.01596
+146691 TOM1L2 target of myb1 like 2 membrane trafficking protein protein-coding 58 0.006907
+146705 TEPSIN TEPSIN, adaptor related protein complex 4 accessory protein protein-coding 41 0.004883
+146712 B3GNTL1 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase like 1 protein-coding 69 0.008217
+146713 RBFOX3 RNA binding fox-1 homolog 3 protein-coding 18 0.002144
+146722 CD300LF CD300 molecule like family member f protein-coding 31 0.003692
+146723 C17orf77 chromosome 17 open reading frame 77 protein-coding 36 0.004287
+146754 DNAH2 dynein axonemal heavy chain 2 protein-coding 391 0.04656
+146760 RTN4RL1 reticulon 4 receptor like 1 protein-coding 37 0.004406
+146771 TCAM1P testicular cell adhesion molecule 1, pseudogene pseudo 21 0.002501
+146779 EFCAB3 EF-hand calcium binding domain 3 protein-coding 80 0.009527
+146802 SLC47A2 solute carrier family 47 member 2 protein-coding 59 0.007026
+146822 CDRT15 CMT1A duplicated region transcript 15 protein-coding 25 0.002977
+146845 CFAP52 cilia and flagella associated protein 52 protein-coding 97 0.01155
+146849 CCDC42 coiled-coil domain containing 42 protein-coding 65 0.007741
+146850 PIK3R6 phosphoinositide-3-kinase regulatory subunit 6 protein-coding 81 0.009646
+146852 ODF4 outer dense fiber of sperm tails 4 protein-coding 26 0.003096
+146853 C17orf50 chromosome 17 open reading frame 50 protein-coding 8 0.0009527
+146857 SLFN13 schlafen family member 13 protein-coding 112 0.01334
+146861 SLC35G3 solute carrier family 35 member G3 protein-coding 76 0.009051
+146862 UNC45B unc-45 myosin chaperone B protein-coding 137 0.01632
+146894 CD300LG CD300 molecule like family member g protein-coding 50 0.005955
+146909 KIF18B kinesin family member 18B protein-coding 82 0.009765
+146923 RUNDC1 RUN domain containing 1 protein-coding 47 0.005597
+146956 EME1 essential meiotic structure-specific endonuclease 1 protein-coding 50 0.005955
+147007 TMEM199 transmembrane protein 199 protein-coding 24 0.002858
+147011 PROCA1 protein interacting with cyclin A1 protein-coding 44 0.00524
+147015 DHRS13 dehydrogenase/reductase 13 protein-coding 26 0.003096
+147040 KCTD11 potassium channel tetramerization domain containing 11 protein-coding 73 0.008694
+147081 LINC02210 long intergenic non-protein coding RNA 2210 ncRNA 6 0.0007145
+147111 NOTUM notum, palmitoleoyl-protein carboxylesterase protein-coding 54 0.006431
+147138 TMC8 transmembrane channel like 8 protein-coding 56 0.006669
+147166 TRIM16L tripartite motif containing 16 like protein-coding 35 0.004168
+147172 LRRC37BP1 leucine rich repeat containing 37B pseudogene 1 pseudo 42 0.005002
+147179 WIPF2 WAS/WASL interacting protein family member 2 protein-coding 63 0.007503
+147183 KRT25 keratin 25 protein-coding 75 0.008932
+147184 TMEM99 transmembrane protein 99 protein-coding 25 0.002977
+147199 SCGB1C1 secretoglobin family 1C member 1 protein-coding 18 0.002144
+147323 STARD6 StAR related lipid transfer domain containing 6 protein-coding 33 0.00393
+147339 C18orf25 chromosome 18 open reading frame 25 protein-coding 29 0.003454
+147372 CCBE1 collagen and calcium binding EGF domains 1 protein-coding 69 0.008217
+147381 CBLN2 cerebellin 2 precursor protein-coding 68 0.008098
+147407 SLC25A52 solute carrier family 25 member 52 protein-coding 52 0.006193
+147409 DSG4 desmoglein 4 protein-coding 166 0.01977
+147463 ANKRD29 ankyrin repeat domain 29 protein-coding 29 0.003454
+147495 APCDD1 APC down-regulated 1 protein-coding 66 0.00786
+147645 VSIG10L V-set and immunoglobulin domain containing 10 like protein-coding 45 0.005359
+147646 C19orf84 chromosome 19 open reading frame 84 protein-coding 5 0.0005955
+147650 SPACA6 sperm acrosome associated 6 protein-coding 14 0.001667
+147657 ZNF480 zinc finger protein 480 protein-coding 83 0.009884
+147658 ZNF534 zinc finger protein 534 protein-coding 112 0.01334
+147660 ZNF578 zinc finger protein 578 protein-coding 117 0.01393
+147664 ERVV-1 endogenous retrovirus group V member 1, envelope protein-coding 16 0.001905
+147670 SMIM17 small integral membrane protein 17 protein-coding 7 0.0008336
+147685 C19orf18 chromosome 19 open reading frame 18 protein-coding 41 0.004883
+147686 ZNF418 zinc finger protein 418 protein-coding 105 0.0125
+147687 ZNF417 zinc finger protein 417 protein-coding 73 0.008694
+147694 ZNF548 zinc finger protein 548 protein-coding 97 0.01155
+147699 PPM1N protein phosphatase, Mg2+/Mn2+ dependent 1N (putative) protein-coding 28 0.003335
+147700 KLC3 kinesin light chain 3 protein-coding 119 0.01417
+147710 IGSF23 immunoglobulin superfamily member 23 protein-coding 6 0.0007145
+147719 LYPD4 LY6/PLAUR domain containing 4 protein-coding 37 0.004406
+147741 ZNF560 zinc finger protein 560 protein-coding 141 0.01679
+147744 TMEM190 transmembrane protein 190 protein-coding 32 0.003811
+147746 HIPK4 homeodomain interacting protein kinase 4 protein-coding 72 0.008574
+147798 TMC4 transmembrane channel like 4 protein-coding 94 0.01119
+147804 TPM3P9 tropomyosin 3 pseudogene 9 pseudo 31 0.003692
+147807 ZNF524 zinc finger protein 524 protein-coding 31 0.003692
+147808 ZNF784 zinc finger protein 784 protein-coding 26 0.003096
+147837 ZNF563 zinc finger protein 563 protein-coding 72 0.008574
+147841 SPC24 SPC24, NDC80 kinetochore complex component protein-coding 7 0.0008336
+147872 CCDC155 coiled-coil domain containing 155 protein-coding 69 0.008217
+147906 DACT3 dishevelled binding antagonist of beta catenin 3 protein-coding 16 0.001905
+147912 SIX5 SIX homeobox 5 protein-coding 54 0.006431
+147920 IGFL2 IGF like family member 2 protein-coding 21 0.002501
+147923 ZNF420 zinc finger protein 420 protein-coding 95 0.01131
+147929 ZNF565 zinc finger protein 565 protein-coding 49 0.005835
+147945 NLRP4 NLR family pyrin domain containing 4 protein-coding 305 0.03632
+147948 ZNF582 zinc finger protein 582 protein-coding 80 0.009527
+147949 ZNF583 zinc finger protein 583 protein-coding 89 0.0106
+147965 FAM98C family with sequence similarity 98 member C protein-coding 50 0.005955
+147968 CAPN12 calpain 12 protein-coding 76 0.009051
+147991 DPY19L3 dpy-19 like C-mannosyltransferase 3 protein-coding 79 0.009408
+148003 LGALS16 galectin 16 protein-coding 14 0.001667
+148014 TTC9B tetratricopeptide repeat domain 9B protein-coding 12 0.001429
+148022 TICAM1 toll like receptor adaptor molecule 1 protein-coding 95 0.01131
+148066 ZNRF4 zinc and ring finger 4 protein-coding 82 0.009765
+148103 ZNF599 zinc finger protein 599 protein-coding 84 0.01
+148109 FAM187B family with sequence similarity 187 member B protein-coding 48 0.005716
+148113 CILP2 cartilage intermediate layer protein 2 protein-coding 155 0.01846
+148137 PROSER3 proline and serine rich 3 protein-coding 42 0.005002
+148156 ZNF558 zinc finger protein 558 protein-coding 54 0.006431
+148170 CDC42EP5 CDC42 effector protein 5 protein-coding 3 0.0003573
+148198 ZNF98 zinc finger protein 98 protein-coding 161 0.01917
+148203 ZNF738 zinc finger protein 738 protein-coding 18 0.002144
+148206 ZNF714 zinc finger protein 714 protein-coding 72 0.008574
+148213 ZNF681 zinc finger protein 681 protein-coding 114 0.01358
+148223 C19orf25 chromosome 19 open reading frame 25 protein-coding 3 0.0003573
+148229 ATP8B3 ATPase phospholipid transporting 8B3 protein-coding 135 0.01608
+148231 LINC00905 long intergenic non-protein coding RNA 905 ncRNA 24 0.002858
+148252 DIRAS1 DIRAS family GTPase 1 protein-coding 30 0.003573
+148254 ZNF555 zinc finger protein 555 protein-coding 58 0.006907
+148266 ZNF569 zinc finger protein 569 protein-coding 114 0.01358
+148268 ZNF570 zinc finger protein 570 protein-coding 85 0.01012
+148281 SYT6 synaptotagmin 6 protein-coding 76 0.009051
+148304 C1orf74 chromosome 1 open reading frame 74 protein-coding 28 0.003335
+148327 CREB3L4 cAMP responsive element binding protein 3 like 4 protein-coding 89 0.0106
+148345 C1orf127 chromosome 1 open reading frame 127 protein-coding 81 0.009646
+148362 BROX BRO1 domain and CAAX motif containing protein-coding 53 0.006312
+148398 SAMD11 sterile alpha motif domain containing 11 protein-coding 49 0.005835
+148418 SAMD13 sterile alpha motif domain containing 13 protein-coding 15 0.001786
+148423 C1orf52 chromosome 1 open reading frame 52 protein-coding 22 0.00262
+148479 PHF13 PHD finger protein 13 protein-coding 47 0.005597
+148523 CIART circadian associated repressor of transcription protein-coding 53 0.006312
+148534 TMEM56 transmembrane protein 56 protein-coding 32 0.003811
+148545 NBPF4 NBPF member 4 protein-coding 9 0.001072
+148581 UBE2U ubiquitin conjugating enzyme E2 U protein-coding 42 0.005002
+148641 SLC35F3 solute carrier family 35 member F3 protein-coding 90 0.01072
+148713 PTPRVP protein tyrosine phosphatase, receptor type V, pseudogene pseudo 23 0.002739
+148738 HJV hemojuvelin BMP co-receptor protein-coding 49 0.005835
+148741 ANKRD35 ankyrin repeat domain 35 protein-coding 128 0.01524
+148753 FAM163A family with sequence similarity 163 member A protein-coding 24 0.002858
+148789 B3GALNT2 beta-1,3-N-acetylgalactosaminyltransferase 2 protein-coding 40 0.004764
+148808 MFSD4A major facilitator superfamily domain containing 4A protein-coding 39 0.004645
+148811 PM20D1 peptidase M20 domain containing 1 protein-coding 55 0.00655
+148823 GCSAML germinal center associated signaling and motility like protein-coding 43 0.005121
+148867 SLC30A7 solute carrier family 30 member 7 protein-coding 38 0.004525
+148870 CCDC27 coiled-coil domain containing 27 protein-coding 93 0.01108
+148898 ZNF436-AS1 ZNF436 antisense RNA 1 ncRNA 14 0.001667
+148930 KNCN kinocilin protein-coding 14 0.001667
+148932 MOB3C MOB kinase activator 3C protein-coding 39 0.004645
+148979 GLIS1 GLIS family zinc finger 1 protein-coding 87 0.01036
+149013 NBPF12 NBPF member 12 protein-coding 46 0.005478
+149018 LELP1 late cornified envelope like proline rich 1 protein-coding 25 0.002977
+149041 RC3H1 ring finger and CCCH-type domains 1 protein-coding 140 0.01667
+149069 DCDC2B doublecortin domain containing 2B protein-coding 34 0.004049
+149076 ZNF362 zinc finger protein 362 protein-coding 49 0.005835
+149095 DCST1 DC-STAMP domain containing 1 protein-coding 91 0.01084
+149111 CNIH3 cornichon family AMPA receptor auxiliary protein 3 protein-coding 26 0.003096
+149175 MANEAL mannosidase endo-alpha like protein-coding 34 0.004049
+149233 IL23R interleukin 23 receptor protein-coding 68 0.008098
+149281 METTL11B methyltransferase like 11B protein-coding 31 0.003692
+149297 FAM78B family with sequence similarity 78 member B protein-coding 58 0.006907
+149345 SHISA4 shisa family member 4 protein-coding 23 0.002739
+149371 EXOC8 exocyst complex component 8 protein-coding 77 0.00917
+149420 PDIK1L PDLIM1 interacting kinase 1 like protein-coding 37 0.004406
+149428 BNIPL BCL2 interacting protein like protein-coding 42 0.005002
+149461 CLDN19 claudin 19 protein-coding 25 0.002977
+149465 CFAP57 cilia and flagella associated protein 57 protein-coding 77 0.00917
+149466 C1orf210 chromosome 1 open reading frame 210 protein-coding 13 0.001548
+149473 CCDC24 coiled-coil domain containing 24 protein-coding 34 0.004049
+149478 BTBD19 BTB domain containing 19 protein-coding 19 0.002263
+149483 CCDC17 coiled-coil domain containing 17 protein-coding 52 0.006193
+149499 LRRC71 leucine rich repeat containing 71 protein-coding 49 0.005835
+149563 SRARP steroid receptor associated and regulated protein protein-coding 13 0.001548
+149603 RNF187 ring finger protein 187 protein-coding 4 0.0004764
+149620 CHIAP2 chitinase, acidic pseudogene 2 pseudo 65 0.007741
+149628 PYHIN1 pyrin and HIN domain family member 1 protein-coding 149 0.01774
+149643 SPATA45 spermatogenesis associated 45 protein-coding 18 0.002144
+149647 FAM71A family with sequence similarity 71 member A protein-coding 113 0.01346
+149685 ADIG adipogenin protein-coding 16 0.001905
+149699 GTSF1L gametocyte specific factor 1 like protein-coding 29 0.003454
+149708 WFDC5 WAP four-disulfide core domain 5 protein-coding 23 0.002739
+149830 PRNT prion locus lncRNA, testis expressed ncRNA 18 0.002144
+149837 LINC00654 long intergenic non-protein coding RNA 654 ncRNA 14 0.001667
+149840 C20orf196 chromosome 20 open reading frame 196 protein-coding 33 0.00393
+149934 NCOR1P1 nuclear receptor corepressor 1 pseudogene 1 pseudo 26 0.003096
+149951 COMMD7 COMM domain containing 7 protein-coding 26 0.003096
+149954 BPIFB4 BPI fold containing family B member 4 protein-coding 96 0.01143
+149986 LSM14B LSM family member 14B protein-coding 48 0.005716
+149998 LIPI lipase I protein-coding 109 0.01298
+150000 ABCC13 ATP binding cassette subfamily C member 13 (pseudogene) pseudo 26 0.003096
+150082 LCA5L LCA5L, lebercilin like protein-coding 68 0.008098
+150084 IGSF5 immunoglobulin superfamily member 5 protein-coding 60 0.007145
+150094 SIK1 salt inducible kinase 1 protein-coding 66 0.00786
+150135 LINC00479 long intergenic non-protein coding RNA 479 ncRNA 14 0.001667
+150142 ZNF295-AS1 ZNF295 antisense RNA 1 ncRNA 20 0.002382
+150147 UMODL1-AS1 UMODL1 antisense RNA 1 ncRNA 9 0.001072
+150159 SLC9B1 solute carrier family 9 member B1 protein-coding 75 0.008932
+150160 CCT8L2 chaperonin containing TCP1 subunit 8 like 2 protein-coding 166 0.01977
+150165 XKR3 XK related 3 protein-coding 61 0.007264
+150197 LINC00896 long intergenic non-protein coding RNA 896 ncRNA 5 0.0005955
+150209 AIFM3 apoptosis inducing factor, mitochondria associated 3 protein-coding 78 0.009289
+150223 YDJC YdjC chitooligosaccharide deacetylase homolog protein-coding 12 0.001429
+150244 ZDHHC8P1 zinc finger DHHC-type containing 8 pseudogene 1 pseudo 42 0.005002
+150248 C22orf15 chromosome 22 open reading frame 15 protein-coding 17 0.002025
+150274 HSCB HscB mitochondrial iron-sulfur cluster cochaperone protein-coding 33 0.00393
+150275 CCDC117 coiled-coil domain containing 117 protein-coding 28 0.003335
+150280 HORMAD2 HORMA domain containing 2 protein-coding 19 0.002263
+150290 DUSP18 dual specificity phosphatase 18 protein-coding 19 0.002263
+150297 C22orf42 chromosome 22 open reading frame 42 protein-coding 45 0.005359
+150350 ENTHD1 ENTH domain containing 1 protein-coding 89 0.0106
+150353 DNAJB7 DnaJ heat shock protein family (Hsp40) member B7 protein-coding 42 0.005002
+150356 CHADL chondroadherin like protein-coding 28 0.003335
+150365 MEI1 meiotic double-stranded break formation protein 1 protein-coding 121 0.01441
+150368 PHETA2 PH domain containing endocytic trafficking adaptor 2 protein-coding 21 0.002501
+150372 NFAM1 NFAT activating protein with ITAM motif 1 protein-coding 26 0.003096
+150379 PNPLA5 patatin like phospholipase domain containing 5 protein-coding 72 0.008574
+150383 CDPF1 cysteine rich DPF motif domain containing 1 protein-coding 15 0.001786
+150465 TTL tubulin tyrosine ligase protein-coding 35 0.004168
+150468 CKAP2L cytoskeleton associated protein 2 like protein-coding 71 0.008455
+150472 CBWD2 COBW domain containing 2 protein-coding 30 0.003573
+150483 TEKT4 tektin 4 protein-coding 64 0.007622
+150572 SMYD1 SET and MYND domain containing 1 protein-coding 95 0.01131
+150677 OTOS otospiralin protein-coding 21 0.002501
+150678 COPS9 COP9 signalosome subunit 9 protein-coding 40 0.004764
+150681 OR6B3 olfactory receptor family 6 subfamily B member 3 protein-coding 49 0.005835
+150684 COMMD1 copper metabolism domain containing 1 protein-coding 18 0.002144
+150696 PROM2 prominin 2 protein-coding 84 0.01
+150709 ANKAR ankyrin and armadillo repeat containing protein-coding 153 0.01822
+150726 FBXO41 F-box protein 41 protein-coding 66 0.00786
+150737 TTC30B tetratricopeptide repeat domain 30B protein-coding 73 0.008694
+150759 LINC00342 long intergenic non-protein coding RNA 342 ncRNA 1 0.0001191
+150763 GPAT2 glycerol-3-phosphate acyltransferase 2, mitochondrial protein-coding 65 0.007741
+150771 ITPRIPL1 ITPRIP like 1 protein-coding 63 0.007503
+150864 FAM117B family with sequence similarity 117 member B protein-coding 55 0.00655
+150921 TCF23 transcription factor 23 protein-coding 40 0.004764
+150946 GAREM2 GRB2 associated regulator of MAPK1 subtype 2 protein-coding 39 0.004645
+150962 PUS10 pseudouridylate synthase 10 protein-coding 51 0.006074
+151009 LINC01106 long intergenic non-protein coding RNA 1106 ncRNA 3 0.0003573
+151011 SEPT10 septin 10 protein-coding 42 0.005002
+151050 KANSL1L KAT8 regulatory NSL complex subunit 1 like protein-coding 117 0.01393
+151056 PLB1 phospholipase B1 protein-coding 148 0.01763
+151112 ZSWIM2 zinc finger SWIM-type containing 2 protein-coding 125 0.01489
+151126 ZNF385B zinc finger protein 385B protein-coding 80 0.009527
+151176 ERFE erythroferrone protein-coding 5 0.0005955
+151188 ARL6IP6 ADP ribosylation factor like GTPase 6 interacting protein 6 protein-coding 33 0.00393
+151194 METTL21A methyltransferase like 21A protein-coding 26 0.003096
+151195 CCNYL1 cyclin Y like 1 protein-coding 25 0.002977
+151230 KLHL23 kelch like family member 23 protein-coding 74 0.008813
+151242 PPP1R1C protein phosphatase 1 regulatory inhibitor subunit 1C protein-coding 12 0.001429
+151246 SGO2 shugoshin 2 protein-coding 146 0.01739
+151254 C2CD6 C2 calcium dependent domain containing 6 protein-coding 110 0.0131
+151258 SLC38A11 solute carrier family 38 member 11 protein-coding 57 0.006788
+151278 CCDC140 coiled-coil domain containing 140 protein-coding 26 0.003096
+151295 SLC23A3 solute carrier family 23 member 3 protein-coding 61 0.007264
+151306 GPBAR1 G protein-coupled bile acid receptor 1 protein-coding 22 0.00262
+151313 FAHD2B fumarylacetoacetate hydrolase domain containing 2B protein-coding 52 0.006193
+151354 FAM84A family with sequence similarity 84 member A protein-coding 32 0.003811
+151393 RMDN2 regulator of microtubule dynamics 2 protein-coding 68 0.008098
+151449 GDF7 growth differentiation factor 7 protein-coding 31 0.003692
+151473 SLC16A14 solute carrier family 16 member 14 protein-coding 78 0.009289
+151477 LINC00471 long intergenic non-protein coding RNA 471 ncRNA 29 0.003454
+151507 MSL3P1 MSL complex subunit 3 pseudogene 1 pseudo 67 0.007979
+151516 ASPRV1 aspartic peptidase retroviral like 1 protein-coding 58 0.006907
+151525 WDSUB1 WD repeat, sterile alpha motif and U-box domain containing 1 protein-coding 54 0.006431
+151531 UPP2 uridine phosphorylase 2 protein-coding 51 0.006074
+151556 GPR155 G protein-coupled receptor 155 protein-coding 90 0.01072
+151613 TTC14 tetratricopeptide repeat domain 14 protein-coding 126 0.01501
+151636 DTX3L deltex E3 ubiquitin ligase 3L protein-coding 63 0.007503
+151647 FAM19A4 family with sequence similarity 19 member A4, C-C motif chemokine like protein-coding 34 0.004049
+151648 SGO1 shugoshin 1 protein-coding 74 0.008813
+151649 PP2D1 protein phosphatase 2C like domain containing 1 protein-coding 15 0.001786
+151651 EFHB EF-hand domain family member B protein-coding 123 0.01465
+151742 PPM1L protein phosphatase, Mg2+/Mn2+ dependent 1L protein-coding 61 0.007264
+151790 WDR49 WD repeat domain 49 protein-coding 170 0.02025
+151827 LRRC34 leucine rich repeat containing 34 protein-coding 41 0.004883
+151835 CPNE9 copine family member 9 protein-coding 65 0.007741
+151871 DPPA2 developmental pluripotency associated 2 protein-coding 79 0.009408
+151887 CCDC80 coiled-coil domain containing 80 protein-coding 135 0.01608
+151888 BTLA B and T lymphocyte associated protein-coding 29 0.003454
+151903 CCDC12 coiled-coil domain containing 12 protein-coding 11 0.00131
+151963 MB21D2 Mab-21 domain containing 2 protein-coding 100 0.01191
+151987 PPP4R2 protein phosphatase 4 regulatory subunit 2 protein-coding 43 0.005121
+152002 XXYLT1 xyloside xylosyltransferase 1 protein-coding 43 0.005121
+152006 RNF38 ring finger protein 38 protein-coding 55 0.00655
+152007 GLIPR2 GLI pathogenesis related 2 protein-coding 19 0.002263
+152015 ROPN1B rhophilin associated tail protein 1B protein-coding 36 0.004287
+152024 LINC00691 long intergenic non-protein coding RNA 691 ncRNA 10 0.001191
+152065 C3orf22 chromosome 3 open reading frame 22 protein-coding 28 0.003335
+152078 PQLC2L PQ loop repeat containing 2 like protein-coding 14 0.001667
+152098 ZCWPW2 zinc finger CW-type and PWWP domain containing 2 protein-coding 66 0.00786
+152100 CMC1 C-X9-C motif containing 1 protein-coding 15 0.001786
+152110 NEK10 NIMA related kinase 10 protein-coding 155 0.01846
+152118 C3orf79 chromosome 3 open reading frame 79 protein-coding 15 0.001786
+152137 CCDC50 coiled-coil domain containing 50 protein-coding 74 0.008813
+152138 PYDC2 pyrin domain containing 2 protein-coding 22 0.00262
+152185 SPICE1 spindle and centriole associated protein 1 protein-coding 98 0.01167
+152189 CMTM8 CKLF like MARVEL transmembrane domain containing 8 protein-coding 24 0.002858
+152195 NUDT16P1 nudix hydrolase 16 pseudogene 1 pseudo 19 0.002263
+152206 CCDC13 coiled-coil domain containing 13 protein-coding 94 0.01119
+152273 FGD5 FYVE, RhoGEF and PH domain containing 5 protein-coding 174 0.02072
+152330 CNTN4 contactin 4 protein-coding 195 0.02322
+152404 IGSF11 immunoglobulin superfamily member 11 protein-coding 85 0.01012
+152405 C3orf30 chromosome 3 open reading frame 30 protein-coding 75 0.008932
+152485 ZNF827 zinc finger protein 827 protein-coding 122 0.01453
+152503 SH3D19 SH3 domain containing 19 protein-coding 93 0.01108
+152518 NFXL1 nuclear transcription factor, X-box binding like 1 protein-coding 87 0.01036
+152519 NIPAL1 NIPA like domain containing 1 protein-coding 35 0.004168
+152559 PAQR3 progestin and adipoQ receptor family member 3 protein-coding 33 0.00393
+152573 SHISA3 shisa family member 3 protein-coding 33 0.00393
+152579 SCFD2 sec1 family domain containing 2 protein-coding 77 0.00917
+152687 ZNF595 zinc finger protein 595 protein-coding 65 0.007741
+152756 FAM218A family with sequence similarity 218 member A protein-coding 18 0.002144
+152789 JAKMIP1 janus kinase and microtubule interacting protein 1 protein-coding 158 0.01882
+152815 THAP6 THAP domain containing 6 protein-coding 39 0.004645
+152816 ODAPH odontogenesis associated phosphoprotein protein-coding 33 0.00393
+152831 KLB klotho beta protein-coding 117 0.01393
+152877 FAM53A family with sequence similarity 53 member A protein-coding 25 0.002977
+152926 PPM1K protein phosphatase, Mg2+/Mn2+ dependent 1K protein-coding 55 0.00655
+152940 C4orf45 chromosome 4 open reading frame 45 protein-coding 27 0.003215
+152992 TRMT44 tRNA methyltransferase 44 homolog protein-coding 48 0.005716
+153020 RASGEF1B RasGEF domain family member 1B protein-coding 63 0.007503
+153090 DAB2IP DAB2 interacting protein protein-coding 95 0.01131
+153129 SLC38A9 solute carrier family 38 member 9 protein-coding 53 0.006312
+153201 SLC36A2 solute carrier family 36 member 2 protein-coding 65 0.007741
+153218 SPINK13 serine peptidase inhibitor, Kazal type 13 (putative) protein-coding 22 0.00262
+153222 CREBRF CREB3 regulatory factor protein-coding 65 0.007741
+153241 CEP120 centrosomal protein 120 protein-coding 96 0.01143
+153328 SLC25A48 solute carrier family 25 member 48 protein-coding 25 0.002977
+153339 TMEM167A transmembrane protein 167A protein-coding 11 0.00131
+153364 MBLAC2 metallo-beta-lactamase domain containing 2 protein-coding 28 0.003335
+153396 TMEM161B transmembrane protein 161B protein-coding 63 0.007503
+153443 SRFBP1 serum response factor binding protein 1 protein-coding 91 0.01084
+153478 PLEKHG4B pleckstrin homology and RhoGEF domain containing G4B protein-coding 181 0.02156
+153527 ZMAT2 zinc finger matrin-type 2 protein-coding 20 0.002382
+153562 MARVELD2 MARVEL domain containing 2 protein-coding 57 0.006788
+153571 C5orf38 chromosome 5 open reading frame 38 protein-coding 36 0.004287
+153572 IRX2 iroquois homeobox 2 protein-coding 86 0.01024
+153579 BTNL9 butyrophilin like 9 protein-coding 54 0.006431
+153642 ARSK arylsulfatase family member K protein-coding 66 0.00786
+153643 FAM81B family with sequence similarity 81 member B protein-coding 74 0.008813
+153657 TTC23L tetratricopeptide repeat domain 23 like protein-coding 49 0.005835
+153733 CCDC112 coiled-coil domain containing 112 protein-coding 57 0.006788
+153745 FAM71B family with sequence similarity 71 member B protein-coding 156 0.01858
+153768 PRELID2 PRELI domain containing 2 protein-coding 21 0.002501
+153769 SH3RF2 SH3 domain containing ring finger 2 protein-coding 81 0.009646
+153770 PLAC8L1 PLAC8 like 1 protein-coding 17 0.002025
+153830 RNF145 ring finger protein 145 protein-coding 84 0.01
+153918 ZC2HC1B zinc finger C2HC-type containing 1B protein-coding 13 0.001548
+154007 SNRNP48 small nuclear ribonucleoprotein U11/U12 subunit 48 protein-coding 41 0.004883
+154043 CNKSR3 CNKSR family member 3 protein-coding 222 0.02644
+154064 RAET1L retinoic acid early transcript 1L protein-coding 32 0.003811
+154075 SAMD3 sterile alpha motif domain containing 3 protein-coding 101 0.01203
+154091 SLC2A12 solute carrier family 2 member 12 protein-coding 62 0.007384
+154092 LINC01010 long intergenic non-protein coding RNA 1010 ncRNA 10 0.001191
+154141 MBOAT1 membrane bound O-acyltransferase domain containing 1 protein-coding 68 0.008098
+154150 HDGFL1 HDGF like 1 protein-coding 46 0.005478
+154197 PNLDC1 PARN like, ribonuclease domain containing 1 protein-coding 84 0.01
+154214 RNF217 ring finger protein 217 protein-coding 40 0.004764
+154215 NKAIN2 sodium/potassium transporting ATPase interacting 2 protein-coding 43 0.005121
+154288 KHDC3L KH domain containing 3 like, subcortical maternal complex member protein-coding 49 0.005835
+154386 LINC01600 long intergenic non-protein coding RNA 1600 ncRNA 17 0.002025
+154442 BVES-AS1 BVES antisense RNA 1 ncRNA 3 0.0003573
+154467 CCDC167 coiled-coil domain containing 167 protein-coding 12 0.001429
+154661 RUNDC3B RUN domain containing 3B protein-coding 92 0.01096
+154664 ABCA13 ATP binding cassette subfamily A member 13 protein-coding 581 0.06919
+154743 BMT2 base methyltransferase of 25S rRNA 2 homolog protein-coding 73 0.008694
+154754 PRSS3P2 PRSS3 pseudogene 2 pseudo 58 0.006907
+154790 CLEC2L C-type lectin domain family 2 member L protein-coding 14 0.001667
+154791 FMC1 formation of mitochondrial complex V assembly factor 1 homolog protein-coding 2 0.0002382
+154796 AMOT angiomotin protein-coding 161 0.01917
+154807 VKORC1L1 vitamin K epoxide reductase complex subunit 1 like 1 protein-coding 18 0.002144
+154810 AMOTL1 angiomotin like 1 protein-coding 113 0.01346
+154865 IQUB IQ motif and ubiquitin domain containing protein-coding 129 0.01536
+154881 KCTD7 potassium channel tetramerization domain containing 7 protein-coding 80 0.009527
+154907 C7orf66 chromosome 7 open reading frame 66 protein-coding 32 0.003811
+155006 TMEM213 transmembrane protein 213 protein-coding 14 0.001667
+155038 GIMAP8 GTPase, IMAP family member 8 protein-coding 136 0.0162
+155051 CRYGN crystallin gamma N protein-coding 20 0.002382
+155054 ZNF425 zinc finger protein 425 protein-coding 113 0.01346
+155061 ZNF746 zinc finger protein 746 protein-coding 78 0.009289
+155066 ATP6V0E2 ATPase H+ transporting V0 subunit e2 protein-coding 16 0.001905
+155184 SLC2A7 solute carrier family 2 member 7 protein-coding 52 0.006193
+155185 AMZ1 archaelysin family metallopeptidase 1 protein-coding 61 0.007264
+155368 METTL27 methyltransferase like 27 protein-coding 37 0.004406
+155382 VPS37D VPS37D, ESCRT-I subunit protein-coding 14 0.001667
+155435 RBM33 RNA binding motif protein 33 protein-coding 108 0.01286
+155465 AGR3 anterior gradient 3, protein disulphide isomerase family member protein-coding 29 0.003454
+157285 PRAG1 PEAK1 related, kinase-activating pseudokinase 1 protein-coding 149 0.01774
+157310 PEBP4 phosphatidylethanolamine binding protein 4 protein-coding 21 0.002501
+157313 CDCA2 cell division cycle associated 2 protein-coding 109 0.01298
+157378 TMEM65 transmembrane protein 65 protein-coding 22 0.00262
+157506 RDH10 retinol dehydrogenase 10 protein-coding 32 0.003811
+157556 BAALC-AS2 BAALC antisense RNA 2 ncRNA 5 0.0005955
+157567 ANKRD46 ankyrin repeat domain 46 protein-coding 25 0.002977
+157570 ESCO2 establishment of sister chromatid cohesion N-acetyltransferase 2 protein-coding 69 0.008217
+157574 FBXO16 F-box protein 16 protein-coding 39 0.004645
+157627 LINC00599 long intergenic non-protein coding RNA 599 ncRNA 1 0.0001191
+157638 FAM84B family with sequence similarity 84 member B protein-coding 25 0.002977
+157657 C8orf37 chromosome 8 open reading frame 37 protein-coding 27 0.003215
+157680 VPS13B vacuolar protein sorting 13 homolog B protein-coding 423 0.05038
+157693 FAM87A family with sequence similarity 87 member A ncRNA 20 0.002382
+157695 TDRP testis development related protein protein-coding 27 0.003215
+157697 ERICH1 glutamate rich 1 protein-coding 76 0.009051
+157724 SLC7A13 solute carrier family 7 member 13 protein-coding 103 0.01227
+157739 TDH L-threonine dehydrogenase (pseudogene) pseudo 14 0.001667
+157753 TMEM74 transmembrane protein 74 protein-coding 70 0.008336
+157769 FAM91A1 family with sequence similarity 91 member A1 protein-coding 111 0.01322
+157773 C8orf48 chromosome 8 open reading frame 48 protein-coding 29 0.003454
+157777 MCMDC2 minichromosome maintenance domain containing 2 protein-coding 77 0.00917
+157807 CLVS1 clavesin 1 protein-coding 82 0.009765
+157848 NKX6-3 NK6 homeobox 3 protein-coding 15 0.001786
+157855 KCNU1 potassium calcium-activated channel subfamily U member 1 protein-coding 202 0.02406
+157869 SBSPON somatomedin B and thrombospondin type 1 domain containing protein-coding 30 0.003573
+157922 CAMSAP1 calmodulin regulated spectrin associated protein 1 protein-coding 151 0.01798
+157927 C9orf62 chromosome 9 open reading frame 62 protein-coding 13 0.001548
+157983 C9orf66 chromosome 9 open reading frame 66 protein-coding 21 0.002501
+158035 LINC00032 long intergenic non-protein coding RNA 32 ncRNA 6 0.0007145
+158038 LINGO2 leucine rich repeat and Ig domain containing 2 protein-coding 154 0.01834
+158046 NXNL2 nucleoredoxin like 2 protein-coding 17 0.002025
+158055 C9orf163 chromosome 9 open reading frame 163 protein-coding 15 0.001786
+158056 MAMDC4 MAM domain containing 4 protein-coding 84 0.01
+158062 LCN6 lipocalin 6 protein-coding 20 0.002382
+158067 AK8 adenylate kinase 8 protein-coding 61 0.007264
+158131 OR1Q1 olfactory receptor family 1 subfamily Q member 1 protein-coding 55 0.00655
+158135 TTLL11 tubulin tyrosine ligase like 11 protein-coding 62 0.007384
+158158 RASEF RAS and EF-hand domain containing protein-coding 94 0.01119
+158160 HSD17B7P2 hydroxysteroid 17-beta dehydrogenase 7 pseudogene 2 pseudo 109 0.01298
+158219 TTC39B tetratricopeptide repeat domain 39B protein-coding 52 0.006193
+158234 TRMT10B tRNA methyltransferase 10B protein-coding 41 0.004883
+158248 TTC16 tetratricopeptide repeat domain 16 protein-coding 94 0.01119
+158293 FAM120AOS family with sequence similarity 120A opposite strand protein-coding 11 0.00131
+158297 SAXO1 stabilizer of axonemal microtubules 1 protein-coding 63 0.007503
+158326 FREM1 FRAS1 related extracellular matrix 1 protein-coding 260 0.03096
+158358 KIAA2026 KIAA2026 protein-coding 174 0.02072
+158381 ATP8B5P ATPase phospholipid transporting 8B5, pseudogene pseudo 61 0.007264
+158399 ZNF483 zinc finger protein 483 protein-coding 103 0.01227
+158401 C9orf84 chromosome 9 open reading frame 84 protein-coding 140 0.01667
+158405 KIAA1958 KIAA1958 protein-coding 78 0.009289
+158427 TSTD2 thiosulfate sulfurtransferase like domain containing 2 protein-coding 46 0.005478
+158431 ZNF782 zinc finger protein 782 protein-coding 84 0.01
+158471 PRUNE2 prune homolog 2 protein-coding 347 0.04132
+158506 CBLL2 Cbl proto-oncogene like 2 protein-coding 87 0.01036
+158511 CSAG1 chondrosarcoma associated gene 1 protein-coding 21 0.002501
+158521 FMR1NB FMR1 neighbor protein-coding 71 0.008455
+158584 FAAH2 fatty acid amide hydrolase 2 protein-coding 74 0.008813
+158586 ZXDB zinc finger, X-linked, duplicated B protein-coding 82 0.009765
+158724 FAM47A family with sequence similarity 47 member A protein-coding 262 0.0312
+158747 MOSPD2 motile sperm domain containing 2 protein-coding 61 0.007264
+158763 ARHGAP36 Rho GTPase activating protein 36 protein-coding 158 0.01882
+158787 RIBC1 RIB43A domain with coiled-coils 1 protein-coding 38 0.004525
+158798 AKAP14 A-kinase anchoring protein 14 protein-coding 32 0.003811
+158800 RHOXF1 Rhox homeobox family member 1 protein-coding 33 0.00393
+158801 NKAPP1 NFKB activating protein pseudogene 1 pseudo 6 0.0007145
+158809 MAGEB6 MAGE family member B6 protein-coding 130 0.01548
+158830 CXorf65 chromosome X open reading frame 65 protein-coding 35 0.004168
+158833 AWAT1 acyl-CoA wax alcohol acyltransferase 1 protein-coding 42 0.005002
+158835 AWAT2 acyl-CoA wax alcohol acyltransferase 2 protein-coding 46 0.005478
+158866 ZDHHC15 zinc finger DHHC-type containing 15 protein-coding 69 0.008217
+158880 USP51 ubiquitin specific peptidase 51 protein-coding 99 0.01179
+158931 TCEAL6 transcription elongation factor A like 6 protein-coding 55 0.00655
+158983 H2BFWT H2B histone family member W, testis specific protein-coding 47 0.005597
+159013 CXorf38 chromosome X open reading frame 38 protein-coding 37 0.004406
+159090 FAM122B family with sequence similarity 122B protein-coding 25 0.002977
+159091 FAM122C family with sequence similarity 122C protein-coding 27 0.003215
+159125 RBMY2EP RNA binding motif protein, Y-linked, family 2, member E pseudogene pseudo 10 0.001191
+159162 RBMY2FP RNA binding motif protein, Y-linked, family 2, member F pseudogene pseudo 7 0.0008336
+159163 RBMY1F RNA binding motif protein, Y-linked, family 1, member F protein-coding 3 0.0003573
+159195 USP54 ubiquitin specific peptidase 54 protein-coding 137 0.01632
+159296 NKX2-3 NK2 homeobox 3 protein-coding 24 0.002858
+159371 SLC35G1 solute carrier family 35 member G1 protein-coding 30 0.003573
+159686 CFAP58 cilia and flagella associated protein 58 protein-coding 132 0.01572
+159963 SLC5A12 solute carrier family 5 member 12 protein-coding 105 0.0125
+159989 DEUP1 deuterosome assembly protein 1 protein-coding 90 0.01072
+160065 PATE1 prostate and testis expressed 1 protein-coding 32 0.003811
+160140 C11orf65 chromosome 11 open reading frame 65 protein-coding 38 0.004525
+160287 LDHAL6A lactate dehydrogenase A like 6A protein-coding 38 0.004525
+160298 C11orf42 chromosome 11 open reading frame 42 protein-coding 39 0.004645
+160335 TMTC2 transmembrane and tetratricopeptide repeat containing 2 protein-coding 130 0.01548
+160364 CLEC12A C-type lectin domain family 12 member A protein-coding 57 0.006788
+160365 CLECL1 C-type lectin like 1 protein-coding 19 0.002263
+160418 TMTC3 transmembrane and tetratricopeptide repeat containing 3 protein-coding 115 0.0137
+160419 C12orf50 chromosome 12 open reading frame 50 protein-coding 93 0.01108
+160428 ALDH1L2 aldehyde dehydrogenase 1 family member L2 protein-coding 97 0.01155
+160492 LMNTD1 lamin tail domain containing 1 protein-coding 67 0.007979
+160518 DENND5B DENN domain containing 5B protein-coding 142 0.01691
+160622 GRASP general receptor for phosphoinositides 1 associated scaffold protein protein-coding 24 0.002858
+160728 SLC5A8 solute carrier family 5 member 8 protein-coding 113 0.01346
+160760 PPTC7 PTC7 protein phosphatase homolog protein-coding 31 0.003692
+160762 CCDC63 coiled-coil domain containing 63 protein-coding 96 0.01143
+160777 CCDC60 coiled-coil domain containing 60 protein-coding 105 0.0125
+160851 DGKH diacylglycerol kinase eta protein-coding 109 0.01298
+160857 CCDC122 coiled-coil domain containing 122 protein-coding 32 0.003811
+160897 GPR180 G protein-coupled receptor 180 protein-coding 39 0.004645
+161003 STOML3 stomatin like 3 protein-coding 53 0.006312
+161142 FAM71D family with sequence similarity 71 member D protein-coding 39 0.004645
+161145 TMEM229B transmembrane protein 229B protein-coding 21 0.002501
+161176 SYNE3 spectrin repeat containing nuclear envelope family member 3 protein-coding 133 0.01584
+161198 CLEC14A C-type lectin domain containing 14A protein-coding 111 0.01322
+161247 FITM1 fat storage inducing transmembrane protein 1 protein-coding 28 0.003335
+161253 REM2 RRAD and GEM like GTPase 2 protein-coding 32 0.003811
+161291 TMEM30B transmembrane protein 30B protein-coding 16 0.001905
+161357 MDGA2 MAM domain containing glycosylphosphatidylinositol anchor 2 protein-coding 255 0.03037
+161394 SAMD15 sterile alpha motif domain containing 15 protein-coding 85 0.01012
+161424 NOP9 NOP9 nucleolar protein protein-coding 58 0.006907
+161436 EML5 echinoderm microtubule associated protein like 5 protein-coding 196 0.02334
+161497 STRC stereocilin protein-coding 77 0.00917
+161502 CFAP161 cilia and flagella associated protein 161 protein-coding 42 0.005002
+161514 TBC1D21 TBC1 domain family member 21 protein-coding 48 0.005716
+161582 DNAAF4 dynein axonemal assembly factor 4 protein-coding 72 0.008574
+161635 CSNK1A1P1 casein kinase 1 alpha 1 pseudogene 1 pseudo 47 0.005597
+161725 OTUD7A OTU deubiquitinase 7A protein-coding 101 0.01203
+161742 SPRED1 sprouty related EVH1 domain containing 1 protein-coding 86 0.01024
+161753 ODF3L1 outer dense fiber of sperm tails 3 like 1 protein-coding 31 0.003692
+161779 PGBD4 piggyBac transposable element derived 4 protein-coding 70 0.008336
+161823 ADAL adenosine deaminase like protein-coding 37 0.004406
+161829 EXD1 exonuclease 3'-5' domain containing 1 protein-coding 66 0.00786
+161835 FSIP1 fibrous sheath interacting protein 1 protein-coding 75 0.008932
+161882 ZFPM1 zinc finger protein, FOG family member 1 protein-coding 115 0.0137
+161931 ADAD2 adenosine deaminase domain containing 2 protein-coding 67 0.007979
+162073 ITPRIPL2 ITPRIP like 2 protein-coding 50 0.005955
+162083 C16orf82 chromosome 16 open reading frame 82 protein-coding 68 0.008098
+162239 ZFP1 ZFP1 zinc finger protein protein-coding 38 0.004525
+162282 ANKFN1 ankyrin repeat and fibronectin type III domain containing 1 protein-coding 131 0.0156
+162333 MARCH10 membrane associated ring-CH-type finger 10 protein-coding 104 0.01239
+162387 MFSD6L major facilitator superfamily domain containing 6 like protein-coding 59 0.007026
+162394 SLFN5 schlafen family member 5 protein-coding 105 0.0125
+162417 NAGS N-acetylglutamate synthase protein-coding 28 0.003335
+162427 RETREG3 reticulophagy regulator family member 3 protein-coding 46 0.005478
+162461 TMEM92 transmembrane protein 92 protein-coding 23 0.002739
+162466 PHOSPHO1 phosphoethanolamine/phosphocholine phosphatase protein-coding 22 0.00262
+162494 RHBDL3 rhomboid like 3 protein-coding 53 0.006312
+162514 TRPV3 transient receptor potential cation channel subfamily V member 3 protein-coding 104 0.01239
+162515 SLC16A11 solute carrier family 16 member 11 protein-coding 30 0.003573
+162517 FBXO39 F-box protein 39 protein-coding 43 0.005121
+162540 SPPL2C signal peptide peptidase like 2C protein-coding 84 0.01
+162605 KRT28 keratin 28 protein-coding 82 0.009765
+162655 ZNF519 zinc finger protein 519 protein-coding 60 0.007145
+162681 C18orf54 chromosome 18 open reading frame 54 protein-coding 44 0.00524
+162699 ELOA3 elongin A3 protein-coding 62 0.007384
+162962 ZNF836 zinc finger protein 836 protein-coding 121 0.01441
+162963 ZNF610 zinc finger protein 610 protein-coding 74 0.008813
+162966 ZNF600 zinc finger protein 600 protein-coding 104 0.01239
+162967 ZNF320 zinc finger protein 320 protein-coding 87 0.01036
+162968 ZNF497 zinc finger protein 497 protein-coding 47 0.005597
+162972 ZNF550 zinc finger protein 550 protein-coding 43 0.005121
+162979 ZNF296 zinc finger protein 296 protein-coding 42 0.005002
+162989 DEDD2 death effector domain containing 2 protein-coding 37 0.004406
+162993 ZNF846 zinc finger protein 846 protein-coding 67 0.007979
+162998 OR7D2 olfactory receptor family 7 subfamily D member 2 protein-coding 64 0.007622
+163033 ZNF579 zinc finger protein 579 protein-coding 30 0.003573
+163049 ZNF791 zinc finger protein 791 protein-coding 81 0.009646
+163050 ZNF564 zinc finger protein 564 protein-coding 72 0.008574
+163051 ZNF709 zinc finger protein 709 protein-coding 96 0.01143
+163059 ZNF433 zinc finger protein 433 protein-coding 78 0.009289
+163071 ZNF114 zinc finger protein 114 protein-coding 43 0.005121
+163081 ZNF567 zinc finger protein 567 protein-coding 93 0.01108
+163087 ZNF383 zinc finger protein 383 protein-coding 80 0.009527
+163115 ZNF781 zinc finger protein 781 protein-coding 65 0.007741
+163126 EID2 EP300 interacting inhibitor of differentiation 2 protein-coding 17 0.002025
+163131 ZNF780B zinc finger protein 780B protein-coding 113 0.01346
+163154 PRR22 proline rich 22 protein-coding 35 0.004168
+163175 LGI4 leucine rich repeat LGI family member 4 protein-coding 56 0.006669
+163183 SYNE4 spectrin repeat containing nuclear envelope family member 4 protein-coding 35 0.004168
+163223 ZNF676 zinc finger protein 676 protein-coding 192 0.02287
+163227 ZNF100 zinc finger protein 100 protein-coding 77 0.00917
+163255 ZNF540 zinc finger protein 540 protein-coding 111 0.01322
+163259 DENND2C DENN domain containing 2C protein-coding 134 0.01596
+163351 GBP6 guanylate binding protein family member 6 protein-coding 93 0.01108
+163404 PLPPR5 phospholipid phosphatase related 5 protein-coding 86 0.01024
+163479 FNDC7 fibronectin type III domain containing 7 protein-coding 75 0.008932
+163486 DENND1B DENN domain containing 1B protein-coding 47 0.005597
+163589 TDRD5 tudor domain containing 5 protein-coding 175 0.02084
+163590 TOR1AIP2 torsin 1A interacting protein 2 protein-coding 67 0.007979
+163688 CALML6 calmodulin like 6 protein-coding 20 0.002382
+163702 IFNLR1 interferon lambda receptor 1 protein-coding 51 0.006074
+163720 CYP4Z2P cytochrome P450 family 4 subfamily Z member 2, pseudogene pseudo 70 0.008336
+163742 SLC25A3P1 solute carrier family 25 member 3 pseudogene 1 pseudo 24 0.002858
+163747 LEXM lymphocyte expansion molecule protein-coding 59 0.007026
+163778 SPRR4 small proline rich protein 4 protein-coding 17 0.002025
+163782 KANK4 KN motif and ankyrin repeat domains 4 protein-coding 143 0.01703
+163786 SASS6 SAS-6 centriolar assembly protein protein-coding 72 0.008574
+163859 SDE2 SDE2 telomere maintenance homolog protein-coding 55 0.00655
+163882 CNST consortin, connexin sorting protein protein-coding 106 0.01262
+163933 FAM43B family with sequence similarity 43 member B protein-coding 13 0.001548
+164045 HFM1 HFM1, ATP dependent DNA helicase homolog protein-coding 234 0.02787
+164091 PAQR7 progestin and adipoQ receptor family member 7 protein-coding 32 0.003811
+164118 TTC24 tetratricopeptide repeat domain 24 protein-coding 46 0.005478
+164127 CCDC185 coiled-coil domain containing 185 protein-coding 71 0.008455
+164153 UBL4B ubiquitin like 4B protein-coding 12 0.001429
+164237 WFDC13 WAP four-disulfide core domain 13 protein-coding 6 0.0007145
+164284 APCDD1L APC down-regulated 1 like protein-coding 53 0.006312
+164312 LRRN4 leucine rich repeat neuronal 4 protein-coding 66 0.00786
+164380 CST13P cystatin 13, pseudogene pseudo 7 0.0008336
+164395 TTLL9 tubulin tyrosine ligase like 9 protein-coding 70 0.008336
+164592 CCDC116 coiled-coil domain containing 116 protein-coding 74 0.008813
+164633 CABP7 calcium binding protein 7 protein-coding 16 0.001905
+164656 TMPRSS6 transmembrane serine protease 6 protein-coding 96 0.01143
+164668 APOBEC3H apolipoprotein B mRNA editing enzyme catalytic subunit 3H protein-coding 28 0.003335
+164684 WBP2NL WBP2 N-terminal like protein-coding 40 0.004764
+164714 TTLL8 tubulin tyrosine ligase like 8 protein-coding 63 0.007503
+164781 DAW1 dynein assembly factor with WD repeats 1 protein-coding 62 0.007384
+164832 LONRF2 LON peptidase N-terminal domain and ring finger 2 protein-coding 80 0.009527
+165055 CCDC138 coiled-coil domain containing 138 protein-coding 78 0.009289
+165082 ADGRF3 adhesion G protein-coupled receptor F3 protein-coding 77 0.00917
+165100 TEX44 testis expressed 44 protein-coding 34 0.004049
+165140 OXER1 oxoeicosanoid receptor 1 protein-coding 47 0.005597
+165186 TOGARAM2 TOG array regulator of axonemal microtubules 2 protein-coding 137 0.01632
+165215 FAM171B family with sequence similarity 171 member B protein-coding 125 0.01489
+165257 C1QL2 complement C1q like 2 protein-coding 29 0.003454
+165324 UBXN2A UBX domain protein 2A protein-coding 32 0.003811
+165530 CLEC4F C-type lectin domain family 4 member F protein-coding 94 0.01119
+165545 DQX1 DEAQ-box RNA dependent ATPase 1 protein-coding 74 0.008813
+165631 PARP15 poly(ADP-ribose) polymerase family member 15 protein-coding 77 0.00917
+165679 SPTSSB serine palmitoyltransferase small subunit B protein-coding 19 0.002263
+165721 DNAJB8 DnaJ heat shock protein family (Hsp40) member B8 protein-coding 49 0.005835
+165829 GPR156 G protein-coupled receptor 156 protein-coding 107 0.01274
+165904 XIRP1 xin actin binding repeat containing 1 protein-coding 192 0.02287
+165918 RNF168 ring finger protein 168 protein-coding 73 0.008694
+166012 CHST13 carbohydrate sulfotransferase 13 protein-coding 43 0.005121
+166336 PRICKLE2 prickle planar cell polarity protein 2 protein-coding 120 0.01429
+166348 KBTBD12 kelch repeat and BTB domain containing 12 protein-coding 71 0.008455
+166378 SPATA5 spermatogenesis associated 5 protein-coding 101 0.01203
+166379 BBS12 Bardet-Biedl syndrome 12 protein-coding 81 0.009646
+166614 DCLK2 doublecortin like kinase 2 protein-coding 89 0.0106
+166647 ADGRA3 adhesion G protein-coupled receptor A3 protein-coding 151 0.01798
+166655 TRIM60 tripartite motif containing 60 protein-coding 81 0.009646
+166785 MMAA methylmalonic aciduria (cobalamin deficiency) cblA type protein-coding 52 0.006193
+166793 ZBTB49 zinc finger and BTB domain containing 49 protein-coding 84 0.01
+166815 TIGD2 tigger transposable element derived 2 protein-coding 68 0.008098
+166824 RASSF6 Ras association domain family member 6 protein-coding 45 0.005359
+166863 RBM46 RNA binding motif protein 46 protein-coding 85 0.01012
+166929 SGMS2 sphingomyelin synthase 2 protein-coding 44 0.00524
+166968 MIER3 MIER family member 3 protein-coding 43 0.005121
+166979 CDC20B cell division cycle 20B protein-coding 93 0.01108
+167127 UGT3A2 UDP glycosyltransferase family 3 member A2 protein-coding 116 0.01381
+167153 PAPD4 poly(A) RNA polymerase D4, non-canonical protein-coding 68 0.008098
+167227 DCP2 decapping mRNA 2 protein-coding 49 0.005835
+167359 NIM1K NIM1 serine/threonine protein kinase protein-coding 62 0.007384
+167410 LIX1 limb and CNS expressed 1 protein-coding 34 0.004049
+167465 ZNF366 zinc finger protein 366 protein-coding 123 0.01465
+167555 FAM151B family with sequence similarity 151 member B protein-coding 36 0.004287
+167681 PRSS35 serine protease 35 protein-coding 83 0.009884
+167691 LCA5 LCA5, lebercilin protein-coding 96 0.01143
+167826 OLIG3 oligodendrocyte transcription factor 3 protein-coding 41 0.004883
+167838 TXLNB taxilin beta protein-coding 114 0.01358
+168002 DACT2 dishevelled binding antagonist of beta catenin 2 protein-coding 41 0.004883
+168090 C6orf118 chromosome 6 open reading frame 118 protein-coding 150 0.01786
+168374 ZNF92 zinc finger protein 92 protein-coding 68 0.008098
+168391 GALNTL5 polypeptide N-acetylgalactosaminyltransferase like 5 protein-coding 173 0.0206
+168400 DDX53 DEAD-box helicase 53 protein-coding 84 0.01
+168417 ZNF679 zinc finger protein 679 protein-coding 126 0.01501
+168433 RNF133 ring finger protein 133 protein-coding 65 0.007741
+168451 THAP5 THAP domain containing 5 protein-coding 53 0.006312
+168455 CCDC71L coiled-coil domain containing 71 like protein-coding 5 0.0005955
+168507 PKD1L1 polycystin 1 like 1, transient receptor potential channel interacting protein-coding 303 0.03608
+168537 GIMAP7 GTPase, IMAP family member 7 protein-coding 67 0.007979
+168544 ZNF467 zinc finger protein 467 protein-coding 70 0.008336
+168620 BHLHA15 basic helix-loop-helix family member a15 protein-coding 11 0.00131
+168667 BMPER BMP binding endothelial regulator protein-coding 134 0.01596
+168850 ZNF800 zinc finger protein 800 protein-coding 124 0.01477
+168975 CNBD1 cyclic nucleotide binding domain containing 1 protein-coding 138 0.01643
+169026 SLC30A8 solute carrier family 30 member 8 protein-coding 87 0.01036
+169044 COL22A1 collagen type XXII alpha 1 chain protein-coding 409 0.04871
+169166 SNX31 sorting nexin 31 protein-coding 60 0.007145
+169200 TMEM64 transmembrane protein 64 protein-coding 36 0.004287
+169270 ZNF596 zinc finger protein 596 protein-coding 57 0.006788
+169355 IDO2 indoleamine 2,3-dioxygenase 2 protein-coding 63 0.007503
+169436 STKLD1 serine/threonine kinase like domain containing 1 protein-coding 85 0.01012
+169522 KCNV2 potassium voltage-gated channel modifier subfamily V member 2 protein-coding 100 0.01191
+169611 OLFML2A olfactomedin like 2A protein-coding 84 0.01
+169693 TMEM252 transmembrane protein 252 protein-coding 35 0.004168
+169714 QSOX2 quiescin sulfhydryl oxidase 2 protein-coding 74 0.008813
+169792 GLIS3 GLIS family zinc finger 3 protein-coding 119 0.01417
+169834 ZNF883 zinc finger protein 883 protein-coding 79 0.009408
+169841 ZNF169 zinc finger protein 169 protein-coding 71 0.008455
+169966 FAM46D family with sequence similarity 46 member D protein-coding 100 0.01191
+169981 SPIN3 spindlin family member 3 protein-coding 39 0.004645
+170062 FAM47B family with sequence similarity 47 member B protein-coding 218 0.02596
+170082 TCEANC transcription elongation factor A N-terminal and central domain containing protein-coding 32 0.003811
+170261 ZCCHC12 zinc finger CCHC-type containing 12 protein-coding 80 0.009527
+170302 ARX aristaless related homeobox protein-coding 29 0.003454
+170370 FAM170B family with sequence similarity 170 member B protein-coding 32 0.003811
+170371 TMEM273 transmembrane protein 273 protein-coding 22 0.00262
+170384 FUT11 fucosyltransferase 11 protein-coding 24 0.002858
+170392 OIT3 oncoprotein induced transcript 3 protein-coding 67 0.007979
+170393 C10orf91 chromosome 10 open reading frame 91 (putative) ncRNA 25 0.002977
+170394 PWWP2B PWWP domain containing 2B protein-coding 58 0.006907
+170463 SSBP4 single stranded DNA binding protein 4 protein-coding 35 0.004168
+170482 CLEC4C C-type lectin domain family 4 member C protein-coding 53 0.006312
+170487 ACTL10 actin like 10 protein-coding 17 0.002025
+170506 DHX36 DEAH-box helicase 36 protein-coding 126 0.01501
+170572 HTR3C 5-hydroxytryptamine receptor 3C protein-coding 71 0.008455
+170575 GIMAP1 GTPase, IMAP family member 1 protein-coding 74 0.008813
+170589 GPHA2 glycoprotein hormone alpha 2 protein-coding 14 0.001667
+170591 S100Z S100 calcium binding protein Z protein-coding 21 0.002501
+170622 COMMD6 COMM domain containing 6 protein-coding 12 0.001429
+170626 XAGE3 X antigen family member 3 protein-coding 12 0.001429
+170627 XAGE5 X antigen family member 5 protein-coding 31 0.003692
+170679 PSORS1C1 psoriasis susceptibility 1 candidate 1 protein-coding 21 0.002501
+170680 PSORS1C2 psoriasis susceptibility 1 candidate 2 protein-coding 12 0.001429
+170685 NUDT10 nudix hydrolase 10 protein-coding 29 0.003454
+170689 ADAMTS15 ADAM metallopeptidase with thrombospondin type 1 motif 15 protein-coding 108 0.01286
+170690 ADAMTS16 ADAM metallopeptidase with thrombospondin type 1 motif 16 protein-coding 312 0.03716
+170691 ADAMTS17 ADAM metallopeptidase with thrombospondin type 1 motif 17 protein-coding 140 0.01667
+170692 ADAMTS18 ADAM metallopeptidase with thrombospondin type 1 motif 18 protein-coding 246 0.0293
+170712 COX7B2 cytochrome c oxidase subunit 7B2 protein-coding 23 0.002739
+170825 GSX2 GS homeobox 2 protein-coding 44 0.00524
+170850 KCNG3 potassium voltage-gated channel modifier subfamily G member 3 protein-coding 38 0.004525
+170954 PPP1R18 protein phosphatase 1 regulatory subunit 18 protein-coding 51 0.006074
+170958 ZNF525 zinc finger protein 525 protein-coding 82 0.009765
+170959 ZNF431 zinc finger protein 431 protein-coding 78 0.009289
+170960 ZNF721 zinc finger protein 721 protein-coding 124 0.01477
+170961 ANKRD24 ankyrin repeat domain 24 protein-coding 83 0.009884
+171017 ZNF384 zinc finger protein 384 protein-coding 61 0.007264
+171019 ADAMTS19 ADAM metallopeptidase with thrombospondin type 1 motif 19 protein-coding 211 0.02513
+171023 ASXL1 additional sex combs like 1, transcriptional regulator protein-coding 205 0.02441
+171024 SYNPO2 synaptopodin 2 protein-coding 180 0.02144
+171169 SPACA4 sperm acrosome associated 4 protein-coding 17 0.002025
+171177 RHOV ras homolog family member V protein-coding 18 0.002144
+171389 NLRP6 NLR family pyrin domain containing 6 protein-coding 157 0.0187
+171392 ZNF675 zinc finger protein 675 protein-coding 106 0.01262
+171425 CLYBL citrate lyase beta like protein-coding 44 0.00524
+171482 FAM9A family with sequence similarity 9 member A protein-coding 83 0.009884
+171483 FAM9B family with sequence similarity 9 member B protein-coding 43 0.005121
+171484 FAM9C family with sequence similarity 9 member C protein-coding 27 0.003215
+171546 SPTSSA serine palmitoyltransferase small subunit A protein-coding 8 0.0009527
+171558 PTCRA pre T cell antigen receptor alpha protein-coding 30 0.003573
+171568 POLR3H RNA polymerase III subunit H protein-coding 23 0.002739
+171586 ABHD3 abhydrolase domain containing 3 protein-coding 36 0.004287
+192111 PGAM5 PGAM family member 5, mitochondrial serine/threonine protein phosphatase protein-coding 31 0.003692
+192134 B3GNT6 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 6 protein-coding 35 0.004168
+192286 HIGD2A HIG1 hypoxia inducible domain family member 2A protein-coding 13 0.001548
+192666 KRT24 keratin 24 protein-coding 69 0.008217
+192668 CYS1 cystin 1 protein-coding 6 0.0007145
+192669 AGO3 argonaute 3, RISC catalytic component protein-coding 95 0.01131
+192670 AGO4 argonaute 4, RISC catalytic component protein-coding 99 0.01179
+192683 SCAMP5 secretory carrier membrane protein 5 protein-coding 30 0.003573
+193629 LINC00189 long intergenic non-protein coding RNA 189 ncRNA 3 0.0003573
+195814 SDR16C5 short chain dehydrogenase/reductase family 16C member 5 protein-coding 53 0.006312
+195827 AAED1 AhpC/TSA antioxidant enzyme domain containing 1 protein-coding 13 0.001548
+195828 ZNF367 zinc finger protein 367 protein-coding 43 0.005121
+195977 ANTXRL anthrax toxin receptor like protein-coding 18 0.002144
+196051 PLPP4 phospholipid phosphatase 4 protein-coding 40 0.004764
+196074 METTL15 methyltransferase like 15 protein-coding 48 0.005716
+196264 MPZL3 myelin protein zero like 3 protein-coding 26 0.003096
+196294 IMMP1L inner mitochondrial membrane peptidase subunit 1 protein-coding 18 0.002144
+196335 OR56B4 olfactory receptor family 56 subfamily B member 4 protein-coding 55 0.00655
+196374 KRT78 keratin 78 protein-coding 63 0.007503
+196383 RILPL2 Rab interacting lysosomal protein like 2 protein-coding 17 0.002025
+196385 DNAH10 dynein axonemal heavy chain 10 protein-coding 429 0.05109
+196394 AMN1 antagonist of mitotic exit network 1 homolog protein-coding 25 0.002977
+196403 DTX3 deltex E3 ubiquitin ligase 3 protein-coding 57 0.006788
+196410 METTL7B methyltransferase like 7B protein-coding 23 0.002739
+196415 C12orf77 chromosome 12 open reading frame 77 protein-coding 21 0.002501
+196441 ZFC3H1 zinc finger C3H1-type containing protein-coding 198 0.02358
+196446 MYRFL myelin regulatory factor like protein-coding 7 0.0008336
+196463 PLBD2 phospholipase B domain containing 2 protein-coding 52 0.006193
+196472 FAM71C family with sequence similarity 71 member C protein-coding 42 0.005002
+196475 RMST rhabdomyosarcoma 2 associated transcript (non-protein coding) ncRNA 1 0.0001191
+196477 CCER1 coiled-coil glutamate rich protein 1 protein-coding 95 0.01131
+196483 EEF2KMT eukaryotic elongation factor 2 lysine methyltransferase protein-coding 35 0.004168
+196500 PIANP PILR alpha associated neural protein protein-coding 28 0.003335
+196513 DCP1B decapping mRNA 1B protein-coding 66 0.00786
+196527 ANO6 anoctamin 6 protein-coding 117 0.01393
+196528 ARID2 AT-rich interaction domain 2 protein-coding 302 0.03597
+196541 METTL21C methyltransferase like 21C protein-coding 50 0.005955
+196549 EEF1DP3 eukaryotic translation elongation factor 1 delta pseudogene 3 pseudo 60 0.007145
+196740 VSTM4 V-set and transmembrane domain containing 4 protein-coding 64 0.007622
+196743 PAOX polyamine oxidase protein-coding 56 0.006669
+196792 FAM24B family with sequence similarity 24 member B protein-coding 11 0.00131
+196883 ADCY4 adenylate cyclase 4 protein-coding 110 0.0131
+196913 LINC01599 long intergenic non-protein coding RNA 1599 ncRNA 31 0.003692
+196951 FAM227B family with sequence similarity 227 member B protein-coding 87 0.01036
+196968 DNM1P46 dynamin 1 pseudogene 46 pseudo 50 0.005955
+196993 CT62 cancer/testis antigen 62 protein-coding 13 0.001548
+196996 GRAMD2A GRAM domain containing 2A protein-coding 36 0.004287
+197021 LCTL lactase like protein-coding 69 0.008217
+197131 UBR1 ubiquitin protein ligase E3 component n-recognin 1 protein-coding 144 0.01715
+197135 PATL2 PAT1 homolog 2 protein-coding 29 0.003454
+197257 LDHD lactate dehydrogenase D protein-coding 102 0.01215
+197258 FUK fucokinase protein-coding 86 0.01024
+197259 MLKL mixed lineage kinase domain like pseudokinase protein-coding 55 0.00655
+197320 ZNF778 zinc finger protein 778 protein-coding 75 0.008932
+197322 ACSF3 acyl-CoA synthetase family member 3 protein-coding 67 0.007979
+197331 TUBB8P7 tubulin beta 8 class VIII pseudogene 7 pseudo 91 0.01084
+197335 WDR90 WD repeat domain 90 protein-coding 147 0.01751
+197342 EME2 essential meiotic structure-specific endonuclease subunit 2 protein-coding 27 0.003215
+197350 CASP16P caspase 16, pseudogene pseudo 8 0.0009527
+197358 NLRC3 NLR family CARD domain containing 3 protein-coding 113 0.01346
+197370 NSMCE1 NSE1 homolog, SMC5-SMC6 complex component protein-coding 38 0.004525
+197407 ZNF48 zinc finger protein 48 protein-coding 72 0.008574
+198437 LKAAEAR1 LKAAEAR motif containing 1 protein-coding 4 0.0004764
+199221 DZIP1L DAZ interacting zinc finger protein 1 like protein-coding 109 0.01298
+199223 TTC21A tetratricopeptide repeat domain 21A protein-coding 134 0.01596
+199675 MCEMP1 mast cell expressed membrane protein 1 protein-coding 14 0.001667
+199692 ZNF627 zinc finger protein 627 protein-coding 56 0.006669
+199699 DAND5 DAN domain BMP antagonist family member 5 protein-coding 26 0.003096
+199704 ZNF585A zinc finger protein 585A protein-coding 109 0.01298
+199713 NLRP7 NLR family pyrin domain containing 7 protein-coding 207 0.02465
+199720 GGN gametogenetin protein-coding 72 0.008574
+199731 CADM4 cell adhesion molecule 4 protein-coding 48 0.005716
+199745 THAP8 THAP domain containing 8 protein-coding 20 0.002382
+199746 U2AF1L4 U2 small nuclear RNA auxiliary factor 1 like 4 protein-coding 20 0.002382
+199777 ZNF626 zinc finger protein 626 protein-coding 108 0.01286
+199786 FAM129C family with sequence similarity 129 member C protein-coding 65 0.007741
+199800 ADM5 adrenomedullin 5 (putative) protein-coding 8 0.0009527
+199834 LCE4A late cornified envelope 4A protein-coding 21 0.002501
+199857 ALG14 ALG14, UDP-N-acetylglucosaminyltransferase subunit protein-coding 24 0.002858
+199870 FAM76A family with sequence similarity 76 member A protein-coding 22 0.00262
+199920 FYB2 FYN binding protein 2 protein-coding 109 0.01298
+199953 TMEM201 transmembrane protein 201 protein-coding 50 0.005955
+199964 TMEM61 transmembrane protein 61 protein-coding 33 0.00393
+199974 CYP4Z1 cytochrome P450 family 4 subfamily Z member 1 protein-coding 80 0.009527
+199990 FAAP20 Fanconi anemia core complex associated protein 20 protein-coding 14 0.001667
+200008 CDCP2 CUB domain containing protein 2 protein-coding 55 0.00655
+200010 SLC5A9 solute carrier family 5 member 9 protein-coding 100 0.01191
+200014 CC2D1B coiled-coil and C2 domain containing 1B protein-coding 72 0.008574
+200030 NBPF11 NBPF member 11 protein-coding 16 0.001905
+200035 NUDT17 nudix hydrolase 17 protein-coding 27 0.003215
+200081 TXLNA taxilin alpha protein-coding 49 0.005835
+200132 TCTEX1D1 Tctex1 domain containing 1 protein-coding 40 0.004764
+200150 PLD5 phospholipase D family member 5 protein-coding 122 0.01453
+200159 C1orf100 chromosome 1 open reading frame 100 protein-coding 25 0.002977
+200162 SPAG17 sperm associated antigen 17 protein-coding 312 0.03716
+200172 SLFNL1 schlafen like 1 protein-coding 42 0.005002
+200185 KRTCAP2 keratinocyte associated protein 2 protein-coding 9 0.001072
+200186 CRTC2 CREB regulated transcription coactivator 2 protein-coding 66 0.00786
+200197 TMEM51-AS1 TMEM51 antisense RNA 1 ncRNA 3 0.0003573
+200205 IBA57 IBA57, iron-sulfur cluster assembly protein-coding 38 0.004525
+200232 FAM209A family with sequence similarity 209 member A protein-coding 33 0.00393
+200312 RNF215 ring finger protein 215 protein-coding 35 0.004168
+200315 APOBEC3A apolipoprotein B mRNA editing enzyme catalytic subunit 3A protein-coding 16 0.001905
+200316 APOBEC3F apolipoprotein B mRNA editing enzyme catalytic subunit 3F protein-coding 45 0.005359
+200350 FOXD4L1 forkhead box D4 like 1 protein-coding 51 0.006074
+200373 CFAP221 cilia and flagella associated protein 221 protein-coding 85 0.01012
+200403 VWA3B von Willebrand factor A domain containing 3B protein-coding 193 0.02298
+200407 CREG2 cellular repressor of E1A stimulated genes 2 protein-coding 17 0.002025
+200420 ALMS1P1 ALMS1, centrosome and basal body associated protein pseudogene 1 pseudo 55 0.00655
+200424 TET3 tet methylcytosine dioxygenase 3 protein-coding 172 0.02048
+200504 GKN2 gastrokine 2 protein-coding 23 0.002739
+200523 TEX37 testis expressed 37 protein-coding 35 0.004168
+200539 ANKRD23 ankyrin repeat domain 23 protein-coding 43 0.005121
+200558 APLF aprataxin and PNKP like factor protein-coding 64 0.007622
+200576 PIKFYVE phosphoinositide kinase, FYVE-type zinc finger containing protein-coding 199 0.0237
+200634 KRTCAP3 keratinocyte associated protein 3 protein-coding 24 0.002858
+200728 TMEM17 transmembrane protein 17 protein-coding 14 0.001667
+200734 SPRED2 sprouty related EVH1 domain containing 2 protein-coding 68 0.008098
+200765 TIGD1 tigger transposable element derived 1 protein-coding 15 0.001786
+200810 ALG1L ALG1, chitobiosyldiphosphodolichol beta-mannosyltransferase like protein-coding 14 0.001667
+200844 C3orf67 chromosome 3 open reading frame 67 protein-coding 62 0.007384
+200845 KCTD6 potassium channel tetramerization domain containing 6 protein-coding 27 0.003215
+200879 LIPH lipase H protein-coding 66 0.00786
+200894 ARL13B ADP ribosylation factor like GTPase 13B protein-coding 67 0.007979
+200895 DHFR2 dihydrofolate reductase 2 protein-coding 35 0.004168
+200909 HTR3D 5-hydroxytryptamine receptor 3D protein-coding 46 0.005478
+200916 RPL22L1 ribosomal protein L22 like 1 protein-coding 19 0.002263
+200931 SLC51A solute carrier family 51 alpha subunit protein-coding 32 0.003811
+200933 FBXO45 F-box protein 45 protein-coding 31 0.003692
+200942 KLHDC8B kelch domain containing 8B protein-coding 46 0.005478
+200958 MUC20 mucin 20, cell surface associated protein-coding 64 0.007622
+200959 GABRR3 gamma-aminobutyric acid type A receptor rho3 subunit (gene/pseudogene) protein-coding 59 0.007026
+201134 CEP112 centrosomal protein 112 protein-coding 114 0.01358
+201140 DHRS7C dehydrogenase/reductase 7C protein-coding 65 0.007741
+201158 TVP23C trans-golgi network vesicle protein 23 homolog C protein-coding 21 0.002501
+201161 CENPV centromere protein V protein-coding 18 0.002144
+201163 FLCN folliculin protein-coding 65 0.007741
+201164 PLD6 phospholipase D family member 6 protein-coding 22 0.00262
+201176 ARHGAP27 Rho GTPase activating protein 27 protein-coding 71 0.008455
+201181 ZNF385C zinc finger protein 385C protein-coding 19 0.002263
+201191 SAMD14 sterile alpha motif domain containing 14 protein-coding 53 0.006312
+201229 LYRM9 LYR motif containing 9 protein-coding 4 0.0004764
+201232 SLC16A13 solute carrier family 16 member 13 protein-coding 41 0.004883
+201243 SPEM2 SPEM family member 2 protein-coding 72 0.008574
+201254 CENPX centromere protein X protein-coding 6 0.0007145
+201255 LRRC45 leucine rich repeat containing 45 protein-coding 56 0.006669
+201266 SLC39A11 solute carrier family 39 member 11 protein-coding 39 0.004645
+201283 AMZ2P1 archaelysin family metallopeptidase 2 pseudogene 1 pseudo 42 0.005002
+201292 TRIM65 tripartite motif containing 65 protein-coding 40 0.004764
+201294 UNC13D unc-13 homolog D protein-coding 130 0.01548
+201299 RDM1 RAD52 motif containing 1 protein-coding 25 0.002977
+201305 SPNS3 sphingolipid transporter 3 (putative) protein-coding 62 0.007384
+201456 FBXO15 F-box protein 15 protein-coding 77 0.00917
+201475 RAB12 RAB12, member RAS oncogene family protein-coding 29 0.003454
+201501 ZBTB7C zinc finger and BTB domain containing 7C protein-coding 80 0.009527
+201514 ZNF584 zinc finger protein 584 protein-coding 40 0.004764
+201516 ZSCAN4 zinc finger and SCAN domain containing 4 protein-coding 86 0.01024
+201562 HACD2 3-hydroxyacyl-CoA dehydratase 2 protein-coding 19 0.002263
+201595 STT3B STT3B, catalytic subunit of the oligosaccharyltransferase complex protein-coding 55 0.00655
+201625 DNAH12 dynein axonemal heavy chain 12 protein-coding 140 0.01667
+201626 PDE12 phosphodiesterase 12 protein-coding 52 0.006193
+201627 DENND6A DENN domain containing 6A protein-coding 69 0.008217
+201633 TIGIT T cell immunoreceptor with Ig and ITIM domains protein-coding 52 0.006193
+201725 C4orf46 chromosome 4 open reading frame 46 protein-coding 13 0.001548
+201780 SLC10A4 solute carrier family 10 member 4 protein-coding 46 0.005478
+201798 TIGD4 tigger transposable element derived 4 protein-coding 67 0.007979
+201799 TMEM154 transmembrane protein 154 protein-coding 22 0.00262
+201895 SMIM14 small integral membrane protein 14 protein-coding 6 0.0007145
+201931 TMEM192 transmembrane protein 192 protein-coding 33 0.00393
+201965 RWDD4 RWD domain containing 4 protein-coding 17 0.002025
+201973 PRIMPOL primase and DNA directed polymerase protein-coding 52 0.006193
+202018 TAPT1 transmembrane anterior posterior transformation 1 protein-coding 47 0.005597
+202020 TAPT1-AS1 TAPT1 antisense RNA 1 (head to head) ncRNA 22 0.00262
+202051 SPATA24 spermatogenesis associated 24 protein-coding 7 0.0008336
+202052 DNAJC18 DnaJ heat shock protein family (Hsp40) member C18 protein-coding 39 0.004645
+202134 FAM153B family with sequence similarity 153 member B protein-coding 42 0.005002
+202151 RANBP3L RAN binding protein 3 like protein-coding 74 0.008813
+202243 CCDC125 coiled-coil domain containing 125 protein-coding 64 0.007622
+202299 LINC01554 long intergenic non-protein coding RNA 1554 ncRNA 4 0.0004764
+202309 GAPT GRB2 binding adaptor protein, transmembrane protein-coding 31 0.003692
+202333 CMYA5 cardiomyopathy associated 5 protein-coding 350 0.04168
+202374 STK32A serine/threonine kinase 32A protein-coding 43 0.005121
+202459 OSTCP1 oligosaccharyltransferase complex subunit pseudogene 1 pseudo 29 0.003454
+202500 TCTE1 t-complex-associated-testis-expressed 1 protein-coding 79 0.009408
+202559 KHDRBS2 KH RNA binding domain containing, signal transduction associated 2 protein-coding 127 0.01512
+202658 TRIM39-RPP21 TRIM39-RPP21 readthrough protein-coding 4 0.0004764
+202865 C7orf33 chromosome 7 open reading frame 33 protein-coding 39 0.004645
+202915 TMEM184A transmembrane protein 184A protein-coding 54 0.006431
+203054 ADCK5 aarF domain containing kinase 5 protein-coding 52 0.006193
+203062 TSNARE1 t-SNARE domain containing 1 protein-coding 77 0.00917
+203068 TUBB tubulin beta class I protein-coding 95 0.01131
+203069 R3HCC1 R3H domain and coiled-coil containing 1 protein-coding 20 0.002382
+203074 PRSS55 serine protease 55 protein-coding 57 0.006788
+203076 C8orf74 chromosome 8 open reading frame 74 protein-coding 46 0.005478
+203100 HTRA4 HtrA serine peptidase 4 protein-coding 55 0.00655
+203102 ADAM32 ADAM metallopeptidase domain 32 protein-coding 100 0.01191
+203111 ERICH5 glutamate rich 5 protein-coding 45 0.005359
+203190 LGI3 leucine rich repeat LGI family member 3 protein-coding 70 0.008336
+203197 TMEM268 transmembrane protein 268 protein-coding 30 0.003573
+203228 C9orf72 chromosome 9 open reading frame 72 protein-coding 52 0.006193
+203238 CCDC171 coiled-coil domain containing 171 protein-coding 142 0.01691
+203245 NAIF1 nuclear apoptosis inducing factor 1 protein-coding 46 0.005478
+203259 FAM219A family with sequence similarity 219 member A protein-coding 22 0.00262
+203260 CCDC107 coiled-coil domain containing 107 protein-coding 20 0.002382
+203286 ANKS6 ankyrin repeat and sterile alpha motif domain containing 6 protein-coding 82 0.009765
+203328 SUSD3 sushi domain containing 3 protein-coding 30 0.003573
+203413 CT83 cancer/testis antigen 83 protein-coding 15 0.001786
+203427 SLC25A43 solute carrier family 25 member 43 protein-coding 29 0.003454
+203430 RTL3 retrotransposon Gag like 3 protein-coding 124 0.01477
+203447 NRK Nik related kinase protein-coding 230 0.02739
+203522 INTS6L integrator complex subunit 6 like protein-coding 116 0.01381
+203523 ZNF449 zinc finger protein 449 protein-coding 71 0.008455
+203547 VMA21 VMA21, vacuolar ATPase assembly factor protein-coding 14 0.001667
+203562 TMEM31 transmembrane protein 31 protein-coding 29 0.003454
+203569 PAGE2 PAGE family member 2 protein-coding 22 0.00262
+203859 ANO5 anoctamin 5 protein-coding 187 0.02227
+204010 RPSAP52 ribosomal protein SA pseudogene 52 pseudo 49 0.005835
+204219 CERS3 ceramide synthase 3 protein-coding 73 0.008694
+204474 PDILT protein disulfide isomerase like, testis expressed protein-coding 119 0.01417
+204801 NLRP11 NLR family pyrin domain containing 11 protein-coding 156 0.01858
+204851 HIPK1 homeodomain interacting protein kinase 1 protein-coding 122 0.01453
+204962 SLC44A5 solute carrier family 44 member 5 protein-coding 155 0.01846
+205147 AMER3 APC membrane recruitment protein 3 protein-coding 195 0.02322
+205251 SMIM37 small integral membrane protein 37 protein-coding 3 0.0003573
+205327 C2orf69 chromosome 2 open reading frame 69 protein-coding 28 0.003335
+205428 C3orf58 chromosome 3 open reading frame 58 protein-coding 52 0.006193
+205564 SENP5 SUMO specific peptidase 5 protein-coding 79 0.009408
+205717 USF3 upstream transcription factor family member 3 protein-coding 220 0.0262
+205860 TRIML2 tripartite motif family like 2 protein-coding 127 0.01512
+206338 LVRN laeverin protein-coding 154 0.01834
+206358 SLC36A1 solute carrier family 36 member 1 protein-coding 60 0.007145
+206412 C6orf163 chromosome 6 open reading frame 163 protein-coding 18 0.002144
+207063 DHRSX dehydrogenase/reductase X-linked protein-coding 48 0.005716
+219285 SAMD9L sterile alpha motif domain containing 9 like protein-coding 226 0.02691
+219287 AMER2 APC membrane recruitment protein 2 protein-coding 100 0.01191
+219293 ATAD3C ATPase family, AAA domain containing 3C protein-coding 46 0.005478
+219333 USP12 ubiquitin specific peptidase 12 protein-coding 66 0.00786
+219348 PLAC9 placenta specific 9 protein-coding 11 0.00131
+219402 MTIF3 mitochondrial translational initiation factor 3 protein-coding 33 0.00393
+219409 GSX1 GS homeobox 1 protein-coding 26 0.003096
+219417 OR8U1 olfactory receptor family 8 subfamily U member 1 protein-coding 110 0.0131
+219428 OR4C16 olfactory receptor family 4 subfamily C member 16 (gene/pseudogene) protein-coding 126 0.01501
+219429 OR4C11 olfactory receptor family 4 subfamily C member 11 protein-coding 89 0.0106
+219431 OR4S2 olfactory receptor family 4 subfamily S member 2 protein-coding 104 0.01239
+219432 OR4C6 olfactory receptor family 4 subfamily C member 6 protein-coding 143 0.01703
+219436 OR5D14 olfactory receptor family 5 subfamily D member 14 protein-coding 132 0.01572
+219437 OR5L1 olfactory receptor family 5 subfamily L member 1 (gene/pseudogene) protein-coding 125 0.01489
+219438 OR5D18 olfactory receptor family 5 subfamily D member 18 protein-coding 136 0.0162
+219447 OR5AS1 olfactory receptor family 5 subfamily AS member 1 protein-coding 120 0.01429
+219453 OR8K5 olfactory receptor family 8 subfamily K member 5 protein-coding 107 0.01274
+219464 OR5T2 olfactory receptor family 5 subfamily T member 2 protein-coding 124 0.01477
+219469 OR8H1 olfactory receptor family 8 subfamily H member 1 protein-coding 106 0.01262
+219473 OR8K3 olfactory receptor family 8 subfamily K member 3 (gene/pseudogene) protein-coding 111 0.01322
+219477 OR8J1 olfactory receptor family 8 subfamily J member 1 protein-coding 95 0.01131
+219479 OR5R1 olfactory receptor family 5 subfamily R member 1 (gene/pseudogene) protein-coding 91 0.01084
+219482 OR5M3 olfactory receptor family 5 subfamily M member 3 protein-coding 108 0.01286
+219484 OR5M8 olfactory receptor family 5 subfamily M member 8 protein-coding 100 0.01191
+219487 OR5M11 olfactory receptor family 5 subfamily M member 11 protein-coding 73 0.008694
+219493 OR5AR1 olfactory receptor family 5 subfamily AR member 1 (gene/pseudogene) protein-coding 84 0.01
+219527 LRRC55 leucine rich repeat containing 55 protein-coding 56 0.006669
+219537 SMTNL1 smoothelin like 1 protein-coding 59 0.007026
+219539 YPEL4 yippee like 4 protein-coding 12 0.001429
+219541 MED19 mediator complex subunit 19 protein-coding 12 0.001429
+219557 TEX47 testis expressed 47 protein-coding 82 0.009765
+219578 ZNF804B zinc finger protein 804B protein-coding 348 0.04144
+219595 FOLH1B folate hydrolase 1B protein-coding 155 0.01846
+219621 CABCOCO1 ciliary associated calcium binding coiled-coil 1 protein-coding 26 0.003096
+219623 TMEM26 transmembrane protein 26 protein-coding 58 0.006907
+219654 ZCCHC24 zinc finger CCHC-type containing 24 protein-coding 19 0.002263
+219670 ENKUR enkurin, TRPC channel interacting protein protein-coding 52 0.006193
+219681 ARMC3 armadillo repeat containing 3 protein-coding 138 0.01643
+219699 UNC5B unc-5 netrin receptor B protein-coding 126 0.01501
+219736 STOX1 storkhead box 1 protein-coding 91 0.01084
+219738 FAM241B family with sequence similarity 241 member B protein-coding 23 0.002739
+219743 TYSND1 trypsin domain containing 1 protein-coding 26 0.003096
+219749 ZNF25 zinc finger protein 25 protein-coding 67 0.007979
+219770 GJD4 gap junction protein delta 4 protein-coding 43 0.005121
+219771 CCNY cyclin Y protein-coding 35 0.004168
+219790 RTKN2 rhotekin 2 protein-coding 70 0.008336
+219793 TBATA thymus, brain and testes associated protein-coding 51 0.006074
+219833 C11orf45 chromosome 11 open reading frame 45 protein-coding 16 0.001905
+219844 HYLS1 HYLS1, centriolar and ciliogenesis associated protein-coding 27 0.003215
+219854 TMEM218 transmembrane protein 218 protein-coding 12 0.001429
+219855 SLC37A2 solute carrier family 37 member 2 protein-coding 48 0.005716
+219858 OR8B12 olfactory receptor family 8 subfamily B member 12 protein-coding 57 0.006788
+219865 OR8G5 olfactory receptor family 8 subfamily G member 5 protein-coding 81 0.009646
+219869 OR10G8 olfactory receptor family 10 subfamily G member 8 protein-coding 118 0.01405
+219870 OR10G9 olfactory receptor family 10 subfamily G member 9 protein-coding 77 0.00917
+219873 OR10S1 olfactory receptor family 10 subfamily S member 1 protein-coding 90 0.01072
+219874 OR6T1 olfactory receptor family 6 subfamily T member 1 protein-coding 94 0.01119
+219875 OR4D5 olfactory receptor family 4 subfamily D member 5 protein-coding 102 0.01215
+219899 TBCEL tubulin folding cofactor E like protein-coding 50 0.005955
+219902 TMEM136 transmembrane protein 136 protein-coding 18 0.002144
+219927 MRPL21 mitochondrial ribosomal protein L21 protein-coding 18 0.002144
+219931 TPCN2 two pore segment channel 2 protein-coding 56 0.006669
+219938 SPATA19 spermatogenesis associated 19 protein-coding 42 0.005002
+219952 OR6Q1 olfactory receptor family 6 subfamily Q member 1 (gene/pseudogene) protein-coding 62 0.007384
+219954 OR9I1 olfactory receptor family 9 subfamily I member 1 protein-coding 53 0.006312
+219956 OR9Q1 olfactory receptor family 9 subfamily Q member 1 protein-coding 55 0.00655
+219957 OR9Q2 olfactory receptor family 9 subfamily Q member 2 protein-coding 72 0.008574
+219958 OR1S2 olfactory receptor family 1 subfamily S member 2 protein-coding 73 0.008694
+219959 OR1S1 olfactory receptor family 1 subfamily S member 1 (gene/pseudogene) protein-coding 77 0.00917
+219960 OR10Q1 olfactory receptor family 10 subfamily Q member 1 protein-coding 99 0.01179
+219965 OR5B17 olfactory receptor family 5 subfamily B member 17 protein-coding 69 0.008217
+219968 OR5B21 olfactory receptor family 5 subfamily B member 21 protein-coding 57 0.006788
+219970 GLYATL2 glycine-N-acyltransferase like 2 protein-coding 56 0.006669
+219972 MPEG1 macrophage expressed 1 protein-coding 123 0.01465
+219981 OR5A2 olfactory receptor family 5 subfamily A member 2 protein-coding 58 0.006907
+219982 OR5A1 olfactory receptor family 5 subfamily A member 1 protein-coding 82 0.009765
+219983 OR4D6 olfactory receptor family 4 subfamily D member 6 protein-coding 70 0.008336
+219986 OR4D11 olfactory receptor family 4 subfamily D member 11 protein-coding 83 0.009884
+219988 PATL1 PAT1 homolog 1, processing body mRNA decay factor protein-coding 65 0.007741
+219990 OOSP2 oocyte secreted protein 2 protein-coding 31 0.003692
+219995 MS4A15 membrane spanning 4-domains A15 protein-coding 34 0.004049
+220001 VWCE von Willebrand factor C and EGF domains protein-coding 100 0.01191
+220002 CYB561A3 cytochrome b561 family member A3 protein-coding 29 0.003454
+220004 PPP1R32 protein phosphatase 1 regulatory subunit 32 protein-coding 56 0.006669
+220032 GDPD4 glycerophosphodiester phosphodiesterase domain containing 4 protein-coding 71 0.008455
+220042 DDIAS DNA damage induced apoptosis suppressor protein-coding 102 0.01215
+220047 CCDC83 coiled-coil domain containing 83 protein-coding 74 0.008813
+220064 ORAOV1 oral cancer overexpressed 1 protein-coding 23 0.002739
+220074 LRTOMT leucine rich transmembrane and O-methyltransferase domain containing protein-coding 23 0.002739
+220081 ERICH6B glutamate rich 6B protein-coding 55 0.00655
+220082 SPERT spermatid associated protein-coding 71 0.008455
+220107 DLEU7 deleted in lymphocytic leukemia, 7 protein-coding 5 0.0005955
+220108 FAM124A family with sequence similarity 124 member A protein-coding 72 0.008574
+220134 SKA1 spindle and kinetochore associated complex subunit 1 protein-coding 26 0.003096
+220136 CFAP53 cilia and flagella associated protein 53 protein-coding 74 0.008813
+220164 DOK6 docking protein 6 protein-coding 82 0.009765
+220202 ATOH7 atonal bHLH transcription factor 7 protein-coding 8 0.0009527
+220213 OTUD1 OTU deubiquitinase 1 protein-coding 14 0.001667
+220296 HEPACAM hepatic and glial cell adhesion molecule protein-coding 48 0.005716
+220323 OAF out at first homolog protein-coding 31 0.003692
+220359 TIGD3 tigger transposable element derived 3 protein-coding 64 0.007622
+220382 FAM181B family with sequence similarity 181 member B protein-coding 24 0.002858
+220388 CCDC89 coiled-coil domain containing 89 protein-coding 53 0.006312
+220416 LRRC63 leucine rich repeat containing 63 protein-coding 32 0.003811
+220433 RPS4XP16 ribosomal protein S4X pseudogene 16 pseudo 30 0.003573
+220441 RNF152 ring finger protein 152 protein-coding 41 0.004883
+220594 USP32P2 ubiquitin specific peptidase 32 pseudogene 2 pseudo 15 0.001786
+220869 CBWD5 COBW domain containing 5 protein-coding 10 0.001191
+220929 ZNF438 zinc finger protein 438 protein-coding 109 0.01298
+220963 SLC16A9 solute carrier family 16 member 9 protein-coding 58 0.006907
+220965 FAM13C family with sequence similarity 13 member C protein-coding 112 0.01334
+220972 MARCH8 membrane associated ring-CH-type finger 8 protein-coding 40 0.004764
+220979 C10orf25 chromosome 10 open reading frame 25 protein-coding 18 0.002144
+220988 HNRNPA3 heterogeneous nuclear ribonucleoprotein A3 protein-coding 42 0.005002
+220992 ZNF485 zinc finger protein 485 protein-coding 59 0.007026
+221002 RASGEF1A RasGEF domain family member 1A protein-coding 67 0.007979
+221035 REEP3 receptor accessory protein 3 protein-coding 25 0.002977
+221037 JMJD1C jumonji domain containing 1C protein-coding 244 0.02906
+221044 UCMA upper zone of growth plate and cartilage matrix associated protein-coding 49 0.005835
+221060 C10orf111 chromosome 10 open reading frame 111 protein-coding 13 0.001548
+221061 FAM171A1 family with sequence similarity 171 member A1 protein-coding 124 0.01477
+221074 SLC39A12 solute carrier family 39 member 12 protein-coding 184 0.02191
+221078 NSUN6 NOP2/Sun RNA methyltransferase family member 6 protein-coding 64 0.007622
+221079 ARL5B ADP ribosylation factor like GTPase 5B protein-coding 27 0.003215
+221091 LRRN4CL LRRN4 C-terminal like protein-coding 21 0.002501
+221092 HNRNPUL2 heterogeneous nuclear ribonucleoprotein U like 2 protein-coding 75 0.008932
+221120 ALKBH3 alkB homolog 3, alpha-ketoglutaratedependent dioxygenase protein-coding 31 0.003692
+221143 EEF1AKMT1 EEF1A lysine methyltransferase 1 protein-coding 28 0.003335
+221150 SKA3 spindle and kinetochore associated complex subunit 3 protein-coding 57 0.006788
+221154 MICU2 mitochondrial calcium uptake 2 protein-coding 56 0.006669
+221178 SPATA13 spermatogenesis associated 13 protein-coding 77 0.00917
+221184 CPNE2 copine 2 protein-coding 116 0.01381
+221188 ADGRG5 adhesion G protein-coupled receptor G5 protein-coding 58 0.006907
+221191 PRSS54 serine protease 54 protein-coding 48 0.005716
+221223 CES5A carboxylesterase 5A protein-coding 79 0.009408
+221241 LINC00305 long intergenic non-protein coding RNA 305 ncRNA 9 0.001072
+221262 CCDC162P coiled-coil domain containing 162, pseudogene pseudo 22 0.00262
+221264 AK9 adenylate kinase 9 protein-coding 192 0.02287
+221294 NT5DC1 5'-nucleotidase domain containing 1 protein-coding 51 0.006074
+221301 CALHM4 calcium homeostasis modulator family member 4 protein-coding 26 0.003096
+221302 ZUP1 zinc finger containing ubiquitin peptidase 1 protein-coding 62 0.007384
+221303 FAM162B family with sequence similarity 162 member B protein-coding 21 0.002501
+221322 TBC1D32 TBC1 domain family member 32 protein-coding 157 0.0187
+221336 BEND6 BEN domain containing 6 protein-coding 53 0.006312
+221357 GSTA5 glutathione S-transferase alpha 5 protein-coding 37 0.004406
+221391 OPN5 opsin 5 protein-coding 65 0.007741
+221393 ADGRF4 adhesion G protein-coupled receptor F4 protein-coding 115 0.0137
+221395 ADGRF5 adhesion G protein-coupled receptor F5 protein-coding 160 0.01905
+221400 TDRD6 tudor domain containing 6 protein-coding 242 0.02882
+221409 SPATS1 spermatogenesis associated serine rich 1 protein-coding 76 0.009051
+221416 C6orf223 chromosome 6 open reading frame 223 protein-coding 13 0.001548
+221421 RSPH9 radial spoke head 9 homolog protein-coding 37 0.004406
+221424 LRRC73 leucine rich repeat containing 73 protein-coding 27 0.003215
+221442 ADCY10P1 adenylate cyclase 10, soluble pseudogene 1 pseudo 25 0.002977
+221443 OARD1 O-acyl-ADP-ribose deacylase 1 protein-coding 19 0.002263
+221458 KIF6 kinesin family member 6 protein-coding 145 0.01727
+221468 TMEM217 transmembrane protein 217 protein-coding 31 0.003692
+221472 FGD2 FYVE, RhoGEF and PH domain containing 2 protein-coding 80 0.009527
+221476 PI16 peptidase inhibitor 16 protein-coding 56 0.006669
+221477 C6orf89 chromosome 6 open reading frame 89 protein-coding 105 0.0125
+221481 ARMC12 armadillo repeat containing 12 protein-coding 43 0.005121
+221491 SMIM29 small integral membrane protein 29 protein-coding 33 0.00393
+221496 LEMD2 LEM domain containing 2 protein-coding 38 0.004525
+221504 ZBTB9 zinc finger and BTB domain containing 9 protein-coding 54 0.006431
+221527 ZBTB12 zinc finger and BTB domain containing 12 protein-coding 48 0.005716
+221545 C6orf136 chromosome 6 open reading frame 136 protein-coding 32 0.003811
+221613 HIST1H2AA histone cluster 1 H2A family member a protein-coding 32 0.003811
+221656 KDM1B lysine demethylase 1B protein-coding 69 0.008217
+221662 RBM24 RNA binding motif protein 24 protein-coding 28 0.003335
+221687 RNF182 ring finger protein 182 protein-coding 34 0.004049
+221692 PHACTR1 phosphatase and actin regulator 1 protein-coding 103 0.01227
+221710 SMIM13 small integral membrane protein 13 protein-coding 6 0.0007145
+221711 SYCP2L synaptonemal complex protein 2 like protein-coding 127 0.01512
+221718 LINC00518 long intergenic non-protein coding RNA 518 ncRNA 25 0.002977
+221749 PXDC1 PX domain containing 1 protein-coding 22 0.00262
+221785 ZSCAN25 zinc finger and SCAN domain containing 25 protein-coding 53 0.006312
+221786 FAM200A family with sequence similarity 200 member A protein-coding 47 0.005597
+221806 VWDE von Willebrand factor D and EGF domains protein-coding 109 0.01298
+221823 PRPS1L1 phosphoribosyl pyrophosphate synthetase 1-like 1 protein-coding 90 0.01072
+221830 TWISTNB TWIST neighbor protein-coding 48 0.005716
+221833 SP8 Sp8 transcription factor protein-coding 92 0.01096
+221895 JAZF1 JAZF zinc finger 1 protein-coding 29 0.003454
+221908 PPP1R35 protein phosphatase 1 regulatory subunit 35 protein-coding 13 0.001548
+221914 GPC2 glypican 2 protein-coding 57 0.006788
+221927 BRAT1 BRCA1 associated ATM activator 1 protein-coding 73 0.008694
+221935 SDK1 sidekick cell adhesion molecule 1 protein-coding 368 0.04383
+221937 FOXK1 forkhead box K1 protein-coding 85 0.01012
+221938 MMD2 monocyte to macrophage differentiation associated 2 protein-coding 52 0.006193
+221955 DAGLB diacylglycerol lipase beta protein-coding 67 0.007979
+221960 CCZ1B CCZ1 homolog B, vacuolar protein trafficking and biogenesis associated protein-coding 42 0.005002
+221981 THSD7A thrombospondin type 1 domain containing 7A protein-coding 319 0.03799
+222008 VSTM2A V-set and transmembrane domain containing 2A protein-coding 62 0.007384
+222068 TMED4 transmembrane p24 trafficking protein 4 protein-coding 19 0.002263
+222166 MTURN maturin, neural progenitor differentiation regulator homolog protein-coding 17 0.002025
+222171 PRR15 proline rich 15 protein-coding 8 0.0009527
+222183 SRRM3 serine/arginine repetitive matrix 3 protein-coding 30 0.003573
+222194 RSBN1L round spermatid basic protein 1 like protein-coding 74 0.008813
+222223 KIAA1324L KIAA1324 like protein-coding 156 0.01858
+222229 LRWD1 leucine rich repeats and WD repeat domain containing 1 protein-coding 55 0.00655
+222234 FAM185A family with sequence similarity 185 member A protein-coding 13 0.001548
+222235 FBXL13 F-box and leucine rich repeat protein 13 protein-coding 99 0.01179
+222236 NAPEPLD N-acyl phosphatidylethanolamine phospholipase D protein-coding 57 0.006788
+222255 ATXN7L1 ataxin 7 like 1 protein-coding 53 0.006312
+222256 CDHR3 cadherin related family member 3 protein-coding 109 0.01298
+222389 BEND7 BEN domain containing 7 protein-coding 58 0.006907
+222484 LNX2 ligand of numb-protein X 2 protein-coding 69 0.008217
+222487 ADGRG3 adhesion G protein-coupled receptor G3 protein-coding 76 0.009051
+222537 HS3ST5 heparan sulfate-glucosamine 3-sulfotransferase 5 protein-coding 81 0.009646
+222545 GPRC6A G protein-coupled receptor class C group 6 member A protein-coding 144 0.01715
+222546 RFX6 regulatory factor X6 protein-coding 168 0.02001
+222553 SLC35F1 solute carrier family 35 member F1 protein-coding 83 0.009884
+222584 FAM83B family with sequence similarity 83 member B protein-coding 182 0.02167
+222611 ADGRF2 adhesion G protein-coupled receptor F2 protein-coding 83 0.009884
+222642 TSPO2 translocator protein 2 protein-coding 21 0.002501
+222643 UNC5CL unc-5 family C-terminal like protein-coding 55 0.00655
+222658 KCTD20 potassium channel tetramerization domain containing 20 protein-coding 54 0.006431
+222659 PXT1 peroxisomal testis enriched protein 1 protein-coding 16 0.001905
+222662 LHFPL5 LHFPL tetraspan subfamily member 5 protein-coding 41 0.004883
+222663 SCUBE3 signal peptide, CUB domain and EGF like domain containing 3 protein-coding 100 0.01191
+222696 ZSCAN23 zinc finger and SCAN domain containing 23 protein-coding 46 0.005478
+222698 NKAPL NFKB activating protein like protein-coding 100 0.01191
+222826 FAM217A family with sequence similarity 217 member A protein-coding 70 0.008336
+222865 TMEM130 transmembrane protein 130 protein-coding 62 0.007384
+222894 FERD3L Fer3 like bHLH transcription factor protein-coding 76 0.009051
+222950 NYAP1 neuronal tyrosine phosphorylated phosphoinositide-3-kinase adaptor 1 protein-coding 109 0.01298
+222962 SLC29A4 solute carrier family 29 member 4 protein-coding 78 0.009289
+222967 RSPH10B radial spoke head 10 homolog B protein-coding 70 0.008336
+223075 CCDC129 coiled-coil domain containing 129 protein-coding 175 0.02084
+223082 ZNRF2 zinc and ring finger 2 protein-coding 9 0.001072
+223117 SEMA3D semaphorin 3D protein-coding 177 0.02108
+225689 MAPK15 mitogen-activated protein kinase 15 protein-coding 74 0.008813
+245711 SPDYA speedy/RINGO cell cycle regulator family member A protein-coding 35 0.004168
+245802 MS4A6E membrane spanning 4-domains A6E protein-coding 31 0.003692
+245806 VGLL2 vestigial like family member 2 protein-coding 26 0.003096
+245812 CNPY4 canopy FGF signaling regulator 4 protein-coding 30 0.003573
+245908 DEFB105A defensin beta 105A protein-coding 2 0.0002382
+245909 DEFB106A defensin beta 106A protein-coding 4 0.0004764
+245910 DEFB107A defensin beta 107A protein-coding 1 0.0001191
+245911 DEFB108B defensin beta 108B protein-coding 10 0.001191
+245913 DEFB110 defensin beta 110 protein-coding 33 0.00393
+245915 DEFB112 defensin beta 112 protein-coding 40 0.004764
+245927 DEFB113 defensin beta 113 protein-coding 26 0.003096
+245928 DEFB114 defensin beta 114 protein-coding 20 0.002382
+245929 DEFB115 defensin beta 115 protein-coding 20 0.002382
+245930 DEFB116 defensin beta 116 protein-coding 28 0.003335
+245932 DEFB119 defensin beta 119 protein-coding 40 0.004764
+245934 DEFB121 defensin beta 121 protein-coding 13 0.001548
+245935 DEFB122 defensin beta 122 (pseudogene) pseudo 4 0.0004764
+245936 DEFB123 defensin beta 123 protein-coding 12 0.001429
+245937 DEFB124 defensin beta 124 protein-coding 11 0.00131
+245938 DEFB125 defensin beta 125 protein-coding 26 0.003096
+245939 DEFB128 defensin beta 128 protein-coding 14 0.001667
+245940 DEFB130A defensin beta 130A protein-coding 1 0.0001191
+245972 ATP6V0D2 ATPase H+ transporting V0 subunit d2 protein-coding 69 0.008217
+245973 ATP6V1C2 ATPase H+ transporting V1 subunit C2 protein-coding 67 0.007979
+246126 TXLNGY taxilin gamma pseudogene, Y-linked pseudo 1 0.0001191
+246175 CNOT6L CCR4-NOT transcription complex subunit 6 like protein-coding 63 0.007503
+246176 GAS2L2 growth arrest specific 2 like 2 protein-coding 123 0.01465
+246181 AKR7L aldo-keto reductase family 7 like (gene/pseudogene) protein-coding 16 0.001905
+246184 CDC26 cell division cycle 26 protein-coding 8 0.0009527
+246213 SLC17A8 solute carrier family 17 member 8 protein-coding 115 0.0137
+246243 RNASEH1 ribonuclease H1 protein-coding 65 0.007741
+246269 AFG1L AFG1 like ATPase protein-coding 48 0.005716
+246329 STAC3 SH3 and cysteine rich domain 3 protein-coding 45 0.005359
+246330 PELI3 pellino E3 ubiquitin protein ligase family member 3 protein-coding 49 0.005835
+246705 LINC00314 long intergenic non-protein coding RNA 314 ncRNA 4 0.0004764
+246721 POLR2J2 RNA polymerase II subunit J2 protein-coding 2 0.0002382
+246744 STH saitohin protein-coding 14 0.001667
+246777 SPESP1 sperm equatorial segment protein 1 protein-coding 53 0.006312
+246778 IL27 interleukin 27 protein-coding 34 0.004049
+252839 TMEM9 transmembrane protein 9 protein-coding 24 0.002858
+252884 ZNF396 zinc finger protein 396 protein-coding 52 0.006193
+252969 NEIL2 nei like DNA glycosylase 2 protein-coding 25 0.002977
+252983 STXBP4 syntaxin binding protein 4 protein-coding 56 0.006669
+252995 FNDC5 fibronectin type III domain containing 5 protein-coding 18 0.002144
+253012 HEPACAM2 HEPACAM family member 2 protein-coding 98 0.01167
+253017 TECRL trans-2,3-enoyl-CoA reductase like protein-coding 137 0.01632
+253018 HCG27 HLA complex group 27 (non-protein coding) ncRNA 7 0.0008336
+253128 LINC00612 long intergenic non-protein coding RNA 612 ncRNA 8 0.0009527
+253143 PRR14L proline rich 14 like protein-coding 113 0.01346
+253152 EPHX4 epoxide hydrolase 4 protein-coding 50 0.005955
+253190 SERHL2 serine hydrolase like 2 protein-coding 22 0.00262
+253260 RICTOR RPTOR independent companion of MTOR complex 2 protein-coding 172 0.02048
+253314 EIF4E1B eukaryotic translation initiation factor 4E family member 1B protein-coding 38 0.004525
+253430 IPMK inositol polyphosphate multikinase protein-coding 48 0.005716
+253461 ZBTB38 zinc finger and BTB domain containing 38 protein-coding 112 0.01334
+253512 SLC25A30 solute carrier family 25 member 30 protein-coding 33 0.00393
+253558 LCLAT1 lysocardiolipin acyltransferase 1 protein-coding 60 0.007145
+253559 CADM2 cell adhesion molecule 2 protein-coding 123 0.01465
+253582 TMEM244 transmembrane protein 244 protein-coding 27 0.003215
+253635 GPATCH11 G-patch domain containing 11 protein-coding 26 0.003096
+253639 ZNF620 zinc finger protein 620 protein-coding 47 0.005597
+253650 ANKRD18A ankyrin repeat domain 18A protein-coding 71 0.008455
+253714 MMS22L MMS22 like, DNA repair protein protein-coding 150 0.01786
+253725 WASHC2C WASH complex subunit 2C protein-coding 96 0.01143
+253738 EBF3 early B cell factor 3 protein-coding 123 0.01465
+253769 WDR27 WD repeat domain 27 protein-coding 76 0.009051
+253782 CERS6 ceramide synthase 6 protein-coding 84 0.01
+253827 MSRB3 methionine sulfoxide reductase B3 protein-coding 35 0.004168
+253832 ZDHHC20 zinc finger DHHC-type containing 20 protein-coding 36 0.004287
+253935 ANGPTL5 angiopoietin like 5 protein-coding 58 0.006907
+253943 YTHDF3 YTH N6-methyladenosine RNA binding protein 3 protein-coding 63 0.007503
+253959 RALGAPA1 Ral GTPase activating protein catalytic alpha subunit 1 protein-coding 180 0.02144
+253970 SFTA3 surfactant associated 3 protein-coding 19 0.002263
+253980 KCTD13 potassium channel tetramerization domain containing 13 protein-coding 33 0.00393
+253982 ASPHD1 aspartate beta-hydroxylase domain containing 1 protein-coding 45 0.005359
+254013 ETFBKMT electron transfer flavoprotein beta subunit lysine methyltransferase protein-coding 27 0.003215
+254042 METAP1D methionyl aminopeptidase type 1D, mitochondrial protein-coding 45 0.005359
+254048 UBN2 ubinuclein 2 protein-coding 124 0.01477
+254050 LRRC43 leucine rich repeat containing 43 protein-coding 99 0.01179
+254065 BRWD3 bromodomain and WD repeat domain containing 3 protein-coding 291 0.03466
+254102 EHBP1L1 EH domain binding protein 1 like 1 protein-coding 105 0.0125
+254122 SNX32 sorting nexin 32 protein-coding 62 0.007384
+254158 CXorf58 chromosome X open reading frame 58 protein-coding 59 0.007026
+254170 FBXO33 F-box protein 33 protein-coding 35 0.004168
+254173 TTLL10 tubulin tyrosine ligase like 10 protein-coding 177 0.02108
+254187 TSGA10IP testis specific 10 interacting protein protein-coding 65 0.007741
+254225 RNF169 ring finger protein 169 protein-coding 55 0.00655
+254228 CALHM5 calcium homeostasis modulator family member 5 protein-coding 45 0.005359
+254240 BPIFC BPI fold containing family C protein-coding 86 0.01024
+254251 LCORL ligand dependent nuclear receptor corepressor like protein-coding 25 0.002977
+254263 CNIH2 cornichon family AMPA receptor auxiliary protein 2 protein-coding 20 0.002382
+254268 AKNAD1 AKNA domain containing 1 protein-coding 113 0.01346
+254272 TBC1D28 TBC1 domain family member 28 protein-coding 26 0.003096
+254295 PHYHD1 phytanoyl-CoA dioxygenase domain containing 1 protein-coding 28 0.003335
+254312 LINC00710 long intergenic non-protein coding RNA 710 ncRNA 9 0.001072
+254359 ZDHHC24 zinc finger DHHC-type containing 24 protein-coding 22 0.00262
+254394 MCM9 minichromosome maintenance 9 homologous recombination repair factor protein-coding 71 0.008455
+254427 PROSER2 proline and serine rich 2 protein-coding 25 0.002977
+254428 SLC41A1 solute carrier family 41 member 1 protein-coding 50 0.005955
+254439 C11orf86 chromosome 11 open reading frame 86 protein-coding 14 0.001667
+254528 MEIOB meiosis specific with OB domains protein-coding 48 0.005716
+254531 LPCAT4 lysophosphatidylcholine acyltransferase 4 protein-coding 58 0.006907
+254552 NUDT8 nudix hydrolase 8 protein-coding 23 0.002739
+254773 LYG2 lysozyme g2 protein-coding 34 0.004049
+254778 C8orf46 chromosome 8 open reading frame 46 protein-coding 37 0.004406
+254783 OR6C74 olfactory receptor family 6 subfamily C member 74 protein-coding 61 0.007264
+254786 OR6C3 olfactory receptor family 6 subfamily C member 3 protein-coding 45 0.005359
+254827 NAALADL2 N-acetylated alpha-linked acidic dipeptidase like 2 protein-coding 131 0.0156
+254863 TMEM256 transmembrane protein 256 protein-coding 7 0.0008336
+254879 OR2T6 olfactory receptor family 2 subfamily T member 6 protein-coding 107 0.01274
+254887 ZDHHC23 zinc finger DHHC-type containing 23 protein-coding 47 0.005597
+254910 LCE5A late cornified envelope 5A protein-coding 35 0.004168
+254950 KRTAP15-1 keratin associated protein 15-1 protein-coding 35 0.004168
+254956 MORN5 MORN repeat containing 5 protein-coding 35 0.004168
+254958 REXO1L1P REXO1 like 1, pseudogene pseudo 23 0.002739
+254973 OR1L4 olfactory receptor family 1 subfamily L member 4 protein-coding 54 0.006431
+255022 CALHM1 calcium homeostasis modulator 1 protein-coding 47 0.005597
+255027 MPV17L MPV17 mitochondrial inner membrane protein like protein-coding 16 0.001905
+255031 LINC00957 long intergenic non-protein coding RNA 957 ncRNA 10 0.001191
+255043 TMEM86B transmembrane protein 86B protein-coding 19 0.002263
+255057 CBARP CACN beta subunit associated regulatory protein protein-coding 50 0.005955
+255061 TAC4 tachykinin 4 protein-coding 130 0.01548
+255082 CASC2 cancer susceptibility 2 (non-protein coding) ncRNA 8 0.0009527
+255101 CFAP65 cilia and flagella associated protein 65 protein-coding 230 0.02739
+255104 TMCO4 transmembrane and coiled-coil domains 4 protein-coding 79 0.009408
+255119 CFAP299 cilia and flagella associated protein 299 protein-coding 41 0.004883
+255189 PLA2G4F phospholipase A2 group IVF protein-coding 85 0.01012
+255220 TXNDC8 thioredoxin domain containing 8 protein-coding 17 0.002025
+255231 MCOLN2 mucolipin 2 protein-coding 65 0.007741
+255239 ANKK1 ankyrin repeat and kinase domain containing 1 protein-coding 94 0.01119
+255252 LRRC57 leucine rich repeat containing 57 protein-coding 34 0.004049
+255275 MYADML2 myeloid associated differentiation marker like 2 protein-coding 15 0.001786
+255324 EPGN epithelial mitogen protein-coding 13 0.001548
+255330 NUP210P1 nucleoporin 210 pseudogene 1 pseudo 33 0.00393
+255349 TMEM211 transmembrane protein 211 protein-coding 14 0.001667
+255374 MBLAC1 metallo-beta-lactamase domain containing 1 protein-coding 18 0.002144
+255394 TCP11L2 t-complex 11 like 2 protein-coding 71 0.008455
+255403 ZNF718 zinc finger protein 718 protein-coding 92 0.01096
+255411 TEX49 testis expressed 49 protein-coding 7 0.0008336
+255426 RASGEF1C RasGEF domain family member 1C protein-coding 63 0.007503
+255488 RNF144B ring finger protein 144B protein-coding 26 0.003096
+255520 ELMOD2 ELMO domain containing 2 protein-coding 31 0.003692
+255626 HIST1H2BA histone cluster 1 H2B family member a protein-coding 23 0.002739
+255631 COL24A1 collagen type XXIV alpha 1 chain protein-coding 236 0.02811
+255649 OOSP1 oocyte secreted protein 1 (pseudogene) pseudo 2 0.0002382
+255725 OR52B2 olfactory receptor family 52 subfamily B member 2 protein-coding 59 0.007026
+255738 PCSK9 proprotein convertase subtilisin/kexin type 9 protein-coding 58 0.006907
+255743 NPNT nephronectin protein-coding 66 0.00786
+255758 TCTEX1D2 Tctex1 domain containing 2 protein-coding 19 0.002263
+255762 PDZD9 PDZ domain containing 9 protein-coding 33 0.00393
+255783 INAFM1 InaF motif containing 1 protein-coding 1 0.0001191
+255798 SMCO1 single-pass membrane protein with coiled-coil domains 1 protein-coding 26 0.003096
+255809 C19orf38 chromosome 19 open reading frame 38 protein-coding 14 0.001667
+255812 SDHAP1 succinate dehydrogenase complex flavoprotein subunit A pseudogene 1 pseudo 102 0.01215
+255877 BCL6B B cell CLL/lymphoma 6B protein-coding 72 0.008574
+255919 CNEP1R1 CTD nuclear envelope phosphatase 1 regulatory subunit 1 protein-coding 11 0.00131
+255926 ADAM5 ADAM metallopeptidase domain 5 (pseudogene) pseudo 14 0.001667
+255928 SYT14 synaptotagmin 14 protein-coding 90 0.01072
+255967 PAN3 PAN3 poly(A) specific ribonuclease subunit protein-coding 89 0.0106
+256006 ANKRD31 ankyrin repeat domain 31 protein-coding 47 0.005597
+256051 ZNF549 zinc finger protein 549 protein-coding 94 0.01119
+256076 COL6A5 collagen type VI alpha 5 chain protein-coding 240 0.02858
+256126 SYCE2 synaptonemal complex central element protein 2 protein-coding 25 0.002977
+256130 TMEM196 transmembrane protein 196 protein-coding 32 0.003811
+256144 OR4C3 olfactory receptor family 4 subfamily C member 3 protein-coding 103 0.01227
+256148 OR4S1 olfactory receptor family 4 subfamily S member 1 protein-coding 60 0.007145
+256158 HMCN2 hemicentin 2 protein-coding 34 0.004049
+256227 STEAP1B STEAP family member 1B protein-coding 45 0.005359
+256236 NAPSB napsin B aspartic peptidase, pseudogene pseudo 82 0.009765
+256281 NUDT14 nudix hydrolase 14 protein-coding 34 0.004049
+256297 PTF1A pancreas associated transcription factor 1a protein-coding 41 0.004883
+256302 NATD1 N-acetyltransferase domain containing 1 protein-coding 7 0.0008336
+256309 CCDC110 coiled-coil domain containing 110 protein-coding 100 0.01191
+256329 LMNTD2 lamin tail domain containing 2 protein-coding 40 0.004764
+256356 GK5 glycerol kinase 5 (putative) protein-coding 47 0.005597
+256364 EML3 echinoderm microtubule associated protein like 3 protein-coding 81 0.009646
+256369 CCDC197 coiled-coil domain containing 197 protein-coding 51 0.006074
+256380 SCML4 Scm polycomb group protein like 4 protein-coding 58 0.006907
+256394 SERPINA11 serpin family A member 11 protein-coding 63 0.007503
+256435 ST6GALNAC3 ST6 N-acetylgalactosaminide alpha-2,6-sialyltransferase 3 protein-coding 104 0.01239
+256471 MFSD8 major facilitator superfamily domain containing 8 protein-coding 70 0.008336
+256472 TMEM151A transmembrane protein 151A protein-coding 35 0.004168
+256536 TCERG1L transcription elongation regulator 1 like protein-coding 90 0.01072
+256586 LYSMD2 LysM domain containing 2 protein-coding 14 0.001667
+256643 BCLAF3 BCLAF1 and THRAP3 family member 3 protein-coding 84 0.01
+256646 NUTM1 NUT midline carcinoma family member 1 protein-coding 150 0.01786
+256691 MAMDC2 MAM domain containing 2 protein-coding 79 0.009408
+256710 GLIPR1L1 GLIPR1 like 1 protein-coding 26 0.003096
+256714 MAP7D2 MAP7 domain containing 2 protein-coding 114 0.01358
+256764 WDR72 WD repeat domain 72 protein-coding 183 0.02179
+256815 C10orf67 chromosome 10 open reading frame 67 protein-coding 17 0.002025
+256892 OR51F1 olfactory receptor family 51 subfamily F member 1 (gene/pseudogene) protein-coding 75 0.008932
+256933 NPB neuropeptide B protein-coding 4 0.0004764
+256949 KANK3 KN motif and ankyrin repeat domains 3 protein-coding 39 0.004645
+256957 HEATR9 HEAT repeat containing 9 protein-coding 76 0.009051
+256979 SUN3 Sad1 and UNC84 domain containing 3 protein-coding 54 0.006431
+256987 SERINC5 serine incorporator 5 protein-coding 44 0.00524
+257000 TINCR TINCR ubiquitin domain containing ncRNA 16 0.001905
+257019 FRMD3 FERM domain containing 3 protein-coding 90 0.01072
+257044 CATSPERE catsper channel auxiliary subunit epsilon protein-coding 100 0.01191
+257062 CATSPERD cation channel sperm associated auxiliary subunit delta protein-coding 122 0.01453
+257068 PLCXD2 phosphatidylinositol specific phospholipase C X domain containing 2 protein-coding 45 0.005359
+257101 ZNF683 zinc finger protein 683 protein-coding 69 0.008217
+257106 ARHGAP30 Rho GTPase activating protein 30 protein-coding 150 0.01786
+257144 GCSAM germinal center associated signaling and motility protein-coding 33 0.00393
+257160 RNF214 ring finger protein 214 protein-coding 76 0.009051
+257169 C9orf43 chromosome 9 open reading frame 43 protein-coding 54 0.006431
+257177 CFAP126 cilia and flagella associated protein 126 protein-coding 20 0.002382
+257194 NEGR1 neuronal growth regulator 1 protein-coding 78 0.009289
+257202 GPX6 glutathione peroxidase 6 protein-coding 46 0.005478
+257218 SHPRH SNF2 histone linker PHD RING helicase protein-coding 198 0.02358
+257236 CCDC96 coiled-coil domain containing 96 protein-coding 59 0.007026
+257240 KLHL34 kelch like family member 34 protein-coding 93 0.01108
+257313 UTS2B urotensin 2B protein-coding 23 0.002739
+257364 SNX33 sorting nexin 33 protein-coding 96 0.01143
+257397 TAB3 TGF-beta activated kinase 1 (MAP3K7) binding protein 3 protein-coding 126 0.01501
+257407 C2orf72 chromosome 2 open reading frame 72 protein-coding 3 0.0003573
+257415 FAM133B family with sequence similarity 133 member B protein-coding 25 0.002977
+257629 ANKS4B ankyrin repeat and sterile alpha motif domain containing 4B protein-coding 55 0.00655
+257641 NPCA1 Nasopharyngeal carcinoma 1 unknown 121 0.01441
+258010 SVIP small VCP interacting protein protein-coding 13 0.001548
+259173 ALS2CL ALS2 C-terminal like protein-coding 87 0.01036
+259197 NCR3 natural cytotoxicity triggering receptor 3 protein-coding 17 0.002025
+259215 LY6G6F lymphocyte antigen 6 family member G6F protein-coding 30 0.003573
+259217 HSPA12A heat shock protein family A (Hsp70) member 12A protein-coding 123 0.01465
+259230 SGMS1 sphingomyelin synthase 1 protein-coding 53 0.006312
+259232 NALCN sodium leak channel, non-selective protein-coding 371 0.04418
+259234 DSCR10 Down syndrome critical region 10 (non-protein coding) ncRNA 37 0.004406
+259236 TMIE transmembrane inner ear protein-coding 11 0.00131
+259239 WFDC11 WAP four-disulfide core domain 11 protein-coding 13 0.001548
+259240 WFDC9 WAP four-disulfide core domain 9 protein-coding 9 0.001072
+259249 MRGPRX1 MAS related GPR family member X1 protein-coding 89 0.0106
+259266 ASPM abnormal spindle microtubule assembly protein-coding 404 0.04811
+259282 BOD1L1 biorientation of chromosomes in cell division 1 like 1 protein-coding 297 0.03537
+259283 MDS2 myelodysplastic syndrome 2 translocation associated protein-coding 19 0.002263
+259285 TAS2R39 taste 2 receptor member 39 protein-coding 44 0.00524
+259286 TAS2R40 taste 2 receptor member 40 protein-coding 45 0.005359
+259287 TAS2R41 taste 2 receptor member 41 protein-coding 68 0.008098
+259289 TAS2R43 taste 2 receptor member 43 protein-coding 20 0.002382
+259290 TAS2R31 taste 2 receptor member 31 protein-coding 34 0.004049
+259292 TAS2R46 taste 2 receptor member 46 protein-coding 32 0.003811
+259293 TAS2R30 taste 2 receptor member 30 protein-coding 37 0.004406
+259294 TAS2R19 taste 2 receptor member 19 protein-coding 39 0.004645
+259295 TAS2R20 taste 2 receptor member 20 protein-coding 44 0.00524
+259296 TAS2R50 taste 2 receptor member 50 protein-coding 42 0.005002
+259307 IL4I1 interleukin 4 induced 1 protein-coding 65 0.007741
+259308 FAM205A family with sequence similarity 205 member A protein-coding 65 0.007741
+260293 CYP4X1 cytochrome P450 family 4 subfamily X member 1 protein-coding 51 0.006074
+260425 MAGI3 membrane associated guanylate kinase, WW and PDZ domain containing 3 protein-coding 138 0.01643
+260429 PRSS33 serine protease 33 protein-coding 17 0.002025
+260434 PYDC1 pyrin domain containing 1 protein-coding 150 0.01786
+260436 FDCSP follicular dendritic cell secreted protein protein-coding 22 0.00262
+261726 TIPRL TOR signaling pathway regulator protein-coding 24 0.002858
+261729 STEAP2 STEAP2 metalloreductase protein-coding 57 0.006788
+261734 NPHP4 nephrocystin 4 protein-coding 142 0.01691
+266553 OFCC1 orofacial cleft 1 candidate 1 protein-coding 19 0.002263
+266629 SEC14L3 SEC14 like lipid binding 3 protein-coding 117 0.01393
+266675 BEST4 bestrophin 4 protein-coding 36 0.004287
+266697 POM121L4P POM121 transmembrane nucleoporin like 4, pseudogene pseudo 25 0.002977
+266722 HS6ST3 heparan sulfate 6-O-sulfotransferase 3 protein-coding 68 0.008098
+266727 MDGA1 MAM domain containing glycosylphosphatidylinositol anchor 1 protein-coding 118 0.01405
+266743 NPAS4 neuronal PAS domain protein 4 protein-coding 149 0.01774
+266747 RGL4 ral guanine nucleotide dissociation stimulator like 4 protein-coding 44 0.00524
+266812 NAP1L5 nucleosome assembly protein 1 like 5 protein-coding 21 0.002501
+266971 PIPSL PIP5K1A and PSMD4-like, pseudogene pseudo 154 0.01834
+266977 ADGRF1 adhesion G protein-coupled receptor F1 protein-coding 102 0.01215
+267002 PGBD2 piggyBac transposable element derived 2 protein-coding 87 0.01036
+267012 DAOA D-amino acid oxidase activator protein-coding 33 0.00393
+267020 ATP5MGL ATP synthase membrane subunit g like protein-coding 9 0.001072
+280636 SELENOH selenoprotein H protein-coding 10 0.001191
+280657 SSX6 SSX family member 6, pseudogene pseudo 16 0.001905
+280658 SSX7 SSX family member 7 protein-coding 42 0.005002
+280660 SSX9 SSX family member 9, pseudogene pseudo 28 0.003335
+280664 WFDC10B WAP four-disulfide core domain 10B protein-coding 8 0.0009527
+282553 AUTS8 Autism, susceptibility to, 8 unknown 172 0.02048
+282616 IFNL2 interferon lambda 2 protein-coding 38 0.004525
+282617 IFNL3 interferon lambda 3 protein-coding 37 0.004406
+282618 IFNL1 interferon lambda 1 protein-coding 20 0.002382
+282679 AQP11 aquaporin 11 protein-coding 21 0.002501
+282763 OR51B5 olfactory receptor family 51 subfamily B member 5 protein-coding 62 0.007384
+282770 OR10AG1 olfactory receptor family 10 subfamily AG member 1 protein-coding 107 0.01274
+282775 OR5J2 olfactory receptor family 5 subfamily J member 2 protein-coding 113 0.01346
+282808 RAB40AL RAB40A like protein-coding 45 0.005359
+282809 POC1B POC1 centriolar protein B protein-coding 47 0.005597
+282890 ZNF311 zinc finger protein 311 protein-coding 70 0.008336
+282966 C10orf53 chromosome 10 open reading frame 53 protein-coding 33 0.00393
+282969 FUOM fucose mutarotase protein-coding 11 0.00131
+282973 JAKMIP3 Janus kinase and microtubule interacting protein 3 protein-coding 110 0.0131
+282974 STK32C serine/threonine kinase 32C protein-coding 49 0.005835
+282980 LINC00700 long intergenic non-protein coding RNA 700 ncRNA 11 0.00131
+282991 BLOC1S2 biogenesis of lysosomal organelles complex 1 subunit 2 protein-coding 17 0.002025
+282996 RBM20 RNA binding motif protein 20 protein-coding 70 0.008336
+283025 LINC01553 long intergenic non-protein coding RNA 1553 ncRNA 8 0.0009527
+283078 MKX mohawk homeobox protein-coding 61 0.007264
+283092 OR4C13 olfactory receptor family 4 subfamily C member 13 protein-coding 112 0.01334
+283093 OR4C12 olfactory receptor family 4 subfamily C member 12 protein-coding 118 0.01405
+283106 CSNK2A3 casein kinase 2 alpha 3 protein-coding 69 0.008217
+283111 OR51V1 olfactory receptor family 51 subfamily V member 1 protein-coding 87 0.01036
+283120 H19 H19, imprinted maternally expressed transcript (non-protein coding) ncRNA 3 0.0003573
+283129 MAJIN membrane anchored junction protein protein-coding 28 0.003335
+283130 SLC25A45 solute carrier family 25 member 45 protein-coding 42 0.005002
+283131 NEAT1 nuclear paraspeckle assembly transcript 1 (non-protein coding) ncRNA 3 0.0003573
+283149 BCL9L B cell CLL/lymphoma 9 like protein-coding 179 0.02132
+283150 FOXR1 forkhead box R1 protein-coding 35 0.004168
+283152 CCDC153 coiled-coil domain containing 153 protein-coding 24 0.002858
+283159 OR8D1 olfactory receptor family 8 subfamily D member 1 protein-coding 83 0.009884
+283160 OR8D2 olfactory receptor family 8 subfamily D member 2 (gene/pseudogene) protein-coding 73 0.008694
+283162 OR8B4 olfactory receptor family 8 subfamily B member 4 (gene/pseudogene) protein-coding 72 0.008574
+283189 OR9G4 olfactory receptor family 9 subfamily G member 4 protein-coding 84 0.01
+283197 LINC00301 long intergenic non-protein coding RNA 301 ncRNA 8 0.0009527
+283208 P4HA3 prolyl 4-hydroxylase subunit alpha 3 protein-coding 61 0.007264
+283209 PGM2L1 phosphoglucomutase 2 like 1 protein-coding 64 0.007622
+283212 KLHL35 kelch like family member 35 protein-coding 30 0.003573
+283219 KCTD21 potassium channel tetramerization domain containing 21 protein-coding 41 0.004883
+283229 CRACR2B calcium release activated channel regulator 2B protein-coding 30 0.003573
+283232 TMEM80 transmembrane protein 80 protein-coding 15 0.001786
+283234 CCDC88B coiled-coil domain containing 88B protein-coding 125 0.01489
+283237 TTC9C tetratricopeptide repeat domain 9C protein-coding 19 0.002263
+283238 SLC22A24 solute carrier family 22 member 24 protein-coding 65 0.007741
+283248 RCOR2 REST corepressor 2 protein-coding 47 0.005597
+283254 HARBI1 harbinger transposase derived 1 protein-coding 36 0.004287
+283284 IGSF22 immunoglobulin superfamily member 22 protein-coding 140 0.01667
+283297 OR10A4 olfactory receptor family 10 subfamily A member 4 protein-coding 64 0.007622
+283298 OLFML1 olfactomedin like 1 protein-coding 50 0.005955
+283310 OTOGL otogelin like protein-coding 319 0.03799
+283316 CD163L1 CD163 molecule like 1 protein-coding 224 0.02668
+283337 ZNF740 zinc finger protein 740 protein-coding 24 0.002858
+283345 RPL13P5 ribosomal protein L13 pseudogene 5 pseudo 9 0.001072
+283349 RASSF3 Ras association domain family member 3 protein-coding 60 0.007145
+283358 B4GALNT3 beta-1,4-N-acetyl-galactosaminyltransferase 3 protein-coding 102 0.01215
+283365 OR6C6 olfactory receptor family 6 subfamily C member 6 protein-coding 49 0.005835
+283373 ANKRD52 ankyrin repeat domain 52 protein-coding 99 0.01179
+283375 SLC39A5 solute carrier family 39 member 5 protein-coding 48 0.005716
+283377 SPRYD4 SPRY domain containing 4 protein-coding 16 0.001905
+283383 ADGRD1 adhesion G protein-coupled receptor D1 protein-coding 150 0.01786
+283385 MORN3 MORN repeat containing 3 protein-coding 39 0.004645
+283403 C12orf80 chromosome 12 open reading frame 80 protein-coding 6 0.0007145
+283416 LINC01465 long intergenic non-protein coding RNA 1465 ncRNA 4 0.0004764
+283417 DPY19L2 dpy-19 like 2 protein-coding 131 0.0156
+283420 CLEC9A C-type lectin domain containing 9A protein-coding 59 0.007026
+283422 LINC01559 long intergenic non-protein coding RNA 1559 ncRNA 28 0.003335
+283431 GAS2L3 growth arrest specific 2 like 3 protein-coding 72 0.008574
+283446 MYO1H myosin IH protein-coding 134 0.01596
+283450 HECTD4 HECT domain E3 ubiquitin protein ligase 4 protein-coding 334 0.03978
+283455 KSR2 kinase suppressor of ras 2 protein-coding 166 0.01977
+283459 GATC glutamyl-tRNA amidotransferase subunit C protein-coding 16 0.001905
+283460 HNF1A-AS1 HNF1A antisense RNA 1 ncRNA 81 0.009646
+283461 C12orf40 chromosome 12 open reading frame 40 protein-coding 127 0.01512
+283463 MUC19 mucin 19, oligomeric protein-coding 4 0.0004764
+283464 GXYLT1 glucoside xylosyltransferase 1 protein-coding 68 0.008098
+283471 TMPRSS12 transmembrane serine protease 12 protein-coding 46 0.005478
+283487 LINC00346 long intergenic non-protein coding RNA 346 ncRNA 8 0.0009527
+283489 CHAMP1 chromosome alignment maintaining phosphoprotein 1 protein-coding 86 0.01024
+283507 SUGT1P3 SUGT1 pseudogene 3 pseudo 17 0.002025
+283514 SIAH3 siah E3 ubiquitin protein ligase family member 3 protein-coding 47 0.005597
+283518 KCNRG potassium channel regulator protein-coding 39 0.004645
+283537 SLC46A3 solute carrier family 46 member 3 protein-coding 71 0.008455
+283547 LINC00639 long intergenic non-protein coding RNA 639 ncRNA 22 0.00262
+283551 LINC01588 long intergenic non-protein coding RNA 1588 ncRNA 14 0.001667
+283554 GPR137C G protein-coupled receptor 137C protein-coding 39 0.004645
+283571 PROX2 prospero homeobox 2 protein-coding 36 0.004287
+283576 ZDHHC22 zinc finger DHHC-type containing 22 protein-coding 26 0.003096
+283578 TMED8 transmembrane p24 trafficking protein family member 8 protein-coding 36 0.004287
+283579 C14orf178 chromosome 14 open reading frame 178 protein-coding 9 0.001072
+283598 C14orf177 chromosome 14 open reading frame 177 protein-coding 22 0.00262
+283600 SLC25A47 solute carrier family 25 member 47 protein-coding 49 0.005835
+283601 LINC00523 long intergenic non-protein coding RNA 523 ncRNA 8 0.0009527
+283629 TSSK4 testis specific serine kinase 4 protein-coding 19 0.002263
+283635 FAM177A1 family with sequence similarity 177 member A1 protein-coding 17 0.002025
+283638 CEP170B centrosomal protein 170B protein-coding 106 0.01262
+283643 TEDC1 tubulin epsilon and delta complex 1 protein-coding 25 0.002977
+283652 SLC24A5 solute carrier family 24 member 5 protein-coding 70 0.008336
+283659 PRTG protogenin protein-coding 172 0.02048
+283673 EWSAT1 Ewing sarcoma associated transcript 1 ncRNA 6 0.0007145
+283677 REC114 REC114 meiotic recombination protein protein-coding 30 0.003573
+283685 GOLGA6L2 golgin A6 family-like 2 protein-coding 47 0.005597
+283687 ST20-AS1 ST20 antisense RNA 1 ncRNA 11 0.00131
+283694 OR4N4 olfactory receptor family 4 subfamily N member 4 protein-coding 136 0.0162
+283726 SAXO2 stabilizer of axonemal microtubules 2 protein-coding 59 0.007026
+283742 FAM98B family with sequence similarity 98 member B protein-coding 33 0.00393
+283748 PLA2G4D phospholipase A2 group IVD protein-coding 74 0.008813
+283755 HERC2P3 hect domain and RLD 2 pseudogene 3 pseudo 286 0.03406
+283767 GOLGA6L1 golgin A6 family-like 1 protein-coding 42 0.005002
+283768 GOLGA8G golgin A8 family member G protein-coding 12 0.001429
+283777 FAM169B family with sequence similarity 169 member B protein-coding 42 0.005002
+283796 GOLGA8IP golgin A8 family member I, pseudogene pseudo 43 0.005121
+283807 FBXL22 F-box and leucine rich repeat protein 22 protein-coding 20 0.002382
+283820 NOMO2 NODAL modulator 2 protein-coding 47 0.005597
+283847 TERB1 telomere repeat binding bouquet formation protein 1 protein-coding 42 0.005002
+283848 CES4A carboxylesterase 4A protein-coding 35 0.004168
+283849 EXOC3L1 exocyst complex component 3 like 1 protein-coding 58 0.006907
+283867 LINC00922 long intergenic non-protein coding RNA 922 ncRNA 44 0.00524
+283869 NPW neuropeptide W protein-coding 4 0.0004764
+283870 BRICD5 BRICHOS domain containing 5 protein-coding 25 0.002977
+283871 PGP phosphoglycolate phosphatase protein-coding 10 0.001191
+283875 LINC00514 long intergenic non-protein coding RNA 514 ncRNA 10 0.001191
+283897 C16orf54 chromosome 16 open reading frame 54 protein-coding 23 0.002739
+283899 INO80E INO80 complex subunit E protein-coding 24 0.002858
+283902 HCCAT5 hepatocellular carcinoma associated transcript 5 (non-protein coding) ncRNA 40 0.004764
+283927 NUDT7 nudix hydrolase 7 protein-coding 50 0.005955
+283933 ZNF843 zinc finger protein 843 protein-coding 25 0.002977
+283948 NHLRC4 NHL repeat containing 4 protein-coding 15 0.001786
+283951 C16orf91 chromosome 16 open reading frame 91 protein-coding 44 0.00524
+283953 TMEM114 transmembrane protein 114 protein-coding 1 0.0001191
+283971 CLEC18C C-type lectin domain family 18 member C protein-coding 23 0.002739
+283982 LINC00469 long intergenic non-protein coding RNA 469 ncRNA 7 0.0008336
+283985 FADS6 fatty acid desaturase 6 protein-coding 27 0.003215
+283987 HID1 HID1 domain containing protein-coding 112 0.01334
+283989 TSEN54 tRNA splicing endonuclease subunit 54 protein-coding 28 0.003335
+283991 UBALD2 UBA like domain containing 2 protein-coding 6 0.0007145
+283994 LINC00868 long intergenic non-protein coding RNA 868 ncRNA 9 0.001072
+283999 TMEM235 transmembrane protein 235 protein-coding 10 0.001191
+284001 CCDC57 coiled-coil domain containing 57 protein-coding 92 0.01096
+284004 HEXDC hexosaminidase D protein-coding 66 0.00786
+284013 VMO1 vitelline membrane outer layer 1 homolog protein-coding 25 0.002977
+284018 C17orf58 chromosome 17 open reading frame 58 protein-coding 13 0.001548
+284021 MILR1 mast cell immunoglobulin like receptor 1 protein-coding 10 0.001191
+284029 LINC00324 long intergenic non-protein coding RNA 324 ncRNA 7 0.0008336
+284034 LINC00670 long intergenic non-protein coding RNA 670 ncRNA 9 0.001072
+284040 CDRT4 CMT1A duplicated region transcript 4 protein-coding 18 0.002144
+284047 CCDC144B coiled-coil domain containing 144B (pseudogene) pseudo 6 0.0007145
+284058 KANSL1 KAT8 regulatory NSL complex subunit 1 protein-coding 228 0.02715
+284067 CFAP97D1 CFAP97 domain containing 1 protein-coding 10 0.001191
+284069 FAM171A2 family with sequence similarity 171 member A2 protein-coding 22 0.00262
+284071 MEIOC meiosis specific with coiled-coil domain protein-coding 88 0.01048
+284076 TTLL6 tubulin tyrosine ligase like 6 protein-coding 91 0.01084
+284083 C17orf47 chromosome 17 open reading frame 47 protein-coding 73 0.008694
+284085 KRT18P55 keratin 18 pseudogene 55 pseudo 4 0.0004764
+284086 NEK8 NIMA related kinase 8 protein-coding 80 0.009527
+284098 PIGW phosphatidylinositol glycan anchor biosynthesis class W protein-coding 48 0.005716
+284099 C17orf78 chromosome 17 open reading frame 78 protein-coding 33 0.00393
+284100 YWHAEP7 tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein epsilon pseudogene 7 pseudo 17 0.002025
+284106 CISD3 CDGSH iron sulfur domain 3 protein-coding 8 0.0009527
+284110 GSDMA gasdermin A protein-coding 56 0.006669
+284111 SLC13A5 solute carrier family 13 member 5 protein-coding 75 0.008932
+284114 TMEM102 transmembrane protein 102 protein-coding 36 0.004287
+284116 KRT42P keratin 42 pseudogene pseudo 7 0.0008336
+284119 CAVIN1 caveolae associated protein 1 protein-coding 58 0.006907
+284123 FAM27E5 family with sequence similarity E5 ncRNA 81 0.009646
+284129 SLC26A11 solute carrier family 26 member 11 protein-coding 74 0.008813
+284131 ENDOV endonuclease V protein-coding 24 0.002858
+284161 GDPD1 glycerophosphodiester phosphodiesterase domain containing 1 protein-coding 46 0.005478
+284184 NDUFAF8 NADH:ubiquinone oxidoreductase complex assembly factor 8 protein-coding 1 0.0001191
+284185 LINC00482 long intergenic non-protein coding RNA 482 ncRNA 33 0.00393
+284186 TMEM105 transmembrane protein 105 protein-coding 22 0.00262
+284194 LGALS9B galectin 9B protein-coding 32 0.003811
+284203 RNASEH1P1 ribonuclease H1 pseudogene 1 pseudo 65 0.007741
+284207 METRNL meteorin like, glial cell differentiation regulator protein-coding 25 0.002977
+284217 LAMA1 laminin subunit alpha 1 protein-coding 436 0.05192
+284233 CYP4F35P cytochrome P450 family 4 subfamily F member 35, pseudogene pseudo 20 0.002382
+284252 KCTD1 potassium channel tetramerization domain containing 1 protein-coding 39 0.004645
+284254 DYNAP dynactin associated protein protein-coding 26 0.003096
+284257 BOD1L2 biorientation of chromosomes in cell division 1 like 2 protein-coding 24 0.002858
+284266 SIGLEC15 sialic acid binding Ig like lectin 15 protein-coding 21 0.002501
+284273 ZADH2 zinc binding alcohol dehydrogenase domain containing 2 protein-coding 38 0.004525
+284274 SMIM21 small integral membrane protein 21 protein-coding 20 0.002382
+284293 HMSD histocompatibility minor serpin domain containing protein-coding 18 0.002144
+284297 SSC5D scavenger receptor cysteine rich family member with 5 domains protein-coding 81 0.009646
+284306 ZNF547 zinc finger protein 547 protein-coding 57 0.006788
+284307 ZIK1 zinc finger protein interacting with K protein 1 protein-coding 79 0.009408
+284309 ZNF776 zinc finger protein 776 protein-coding 58 0.006907
+284312 ZSCAN1 zinc finger and SCAN domain containing 1 protein-coding 106 0.01262
+284323 ZNF780A zinc finger protein 780A protein-coding 98 0.01167
+284325 C19orf54 chromosome 19 open reading frame 54 protein-coding 33 0.00393
+284338 PRR19 proline rich 19 protein-coding 51 0.006074
+284339 TMEM145 transmembrane protein 145 protein-coding 73 0.008694
+284340 CXCL17 C-X-C motif chemokine ligand 17 protein-coding 11 0.00131
+284346 ZNF575 zinc finger protein 575 protein-coding 10 0.001191
+284348 LYPD5 LY6/PLAUR domain containing 5 protein-coding 29 0.003454
+284349 ZNF283 zinc finger protein 283 protein-coding 82 0.009765
+284352 PPP1R37 protein phosphatase 1 regulatory subunit 37 protein-coding 13 0.001548
+284353 NKPD1 NTPase KAP family P-loop domain containing 1 protein-coding 63 0.007503
+284355 TPRX1 tetrapeptide repeat homeobox 1 protein-coding 44 0.00524
+284358 MAMSTR MEF2 activating motif and SAP domain containing transcriptional regulator protein-coding 28 0.003335
+284359 IZUMO1 izumo sperm-egg fusion 1 protein-coding 52 0.006193
+284361 EMC10 ER membrane protein complex subunit 10 protein-coding 20 0.002382
+284366 KLK9 kallikrein related peptidase 9 protein-coding 32 0.003811
+284369 SIGLECL1 SIGLEC family like 1 protein-coding 35 0.004168
+284370 ZNF615 zinc finger protein 615 protein-coding 132 0.01572
+284371 ZNF841 zinc finger protein 841 protein-coding 122 0.01453
+284382 ACTL9 actin like 9 protein-coding 96 0.01143
+284383 OR2Z1 olfactory receptor family 2 subfamily Z member 1 protein-coding 71 0.008455
+284390 ZNF763 zinc finger protein 763 protein-coding 57 0.006788
+284391 ZNF844 zinc finger protein 844 protein-coding 63 0.007503
+284402 SCGB2B2 secretoglobin family 2B member 2 protein-coding 19 0.002263
+284403 WDR62 WD repeat domain 62 protein-coding 142 0.01691
+284406 ZFP82 ZFP82 zinc finger protein protein-coding 86 0.01024
+284415 VSTM1 V-set and transmembrane domain containing 1 protein-coding 55 0.00655
+284417 TMEM150B transmembrane protein 150B protein-coding 20 0.002382
+284418 FAM71E2 family with sequence similarity 71 member E2 protein-coding 66 0.00786
+284422 SMIM24 small integral membrane protein 24 protein-coding 4 0.0004764
+284424 MIR7-3HG MIR7-3 host gene ncRNA 11 0.00131
+284427 SLC25A41 solute carrier family 25 member 41 protein-coding 46 0.005478
+284428 MBD3L5 methyl-CpG binding domain protein 3 like 5 protein-coding 7 0.0008336
+284433 OR10H5 olfactory receptor family 10 subfamily H member 5 protein-coding 57 0.006788
+284434 NWD1 NACHT and WD repeat domain containing 1 protein-coding 167 0.01989
+284439 SLC25A42 solute carrier family 25 member 42 protein-coding 45 0.005359
+284443 ZNF493 zinc finger protein 493 protein-coding 129 0.01536
+284451 ODF3L2 outer dense fiber of sperm tails 3 like 2 protein-coding 38 0.004525
+284459 HKR1 HKR1, GLI-Kruppel zinc finger family member protein-coding 77 0.00917
+284467 FAM19A3 family with sequence similarity 19 member A3, C-C motif chemokine like protein-coding 29 0.003454
+284485 RIIAD1 regulatory subunit of type II PKA R-subunit (RIIa) domain containing 1 protein-coding 11 0.00131
+284486 THEM5 thioesterase superfamily member 5 protein-coding 40 0.004764
+284498 C1orf167 chromosome 1 open reading frame 167 protein-coding 36 0.004287
+284521 OR2L13 olfactory receptor family 2 subfamily L member 13 protein-coding 118 0.01405
+284525 SLC9C2 solute carrier family 9 member C2 (putative) protein-coding 186 0.02215
+284532 OR14A16 olfactory receptor family 14 subfamily A member 16 protein-coding 102 0.01215
+284541 CYP4A22 cytochrome P450 family 4 subfamily A member 22 protein-coding 74 0.008813
+284546 C1orf185 chromosome 1 open reading frame 185 protein-coding 21 0.002501
+284565 NBPF15 NBPF member 15 protein-coding 25 0.002977
+284573 LINC00303 long intergenic non-protein coding RNA 303 ncRNA 29 0.003454
+284593 FAM41C family with sequence similarity 41 member C ncRNA 5 0.0005955
+284611 FAM102B family with sequence similarity 102 member B protein-coding 33 0.00393
+284612 SYPL2 synaptophysin like 2 protein-coding 30 0.003573
+284613 CYB561D1 cytochrome b561 family member D1 protein-coding 16 0.001905
+284615 ANKRD34A ankyrin repeat domain 34A protein-coding 81 0.009646
+284654 RSPO1 R-spondin 1 protein-coding 45 0.005359
+284656 EPHA10 EPH receptor A10 protein-coding 134 0.01596
+284677 SNHG28 small nucleolar RNA host gene 28 ncRNA 13 0.001548
+284680 SPATA46 spermatogenesis associated 46 protein-coding 26 0.003096
+284695 ZNF326 zinc finger protein 326 protein-coding 74 0.008813
+284697 BTBD8 BTB domain containing 8 protein-coding 56 0.006669
+284716 RIMKLA ribosomal modification protein rimK like family member A protein-coding 49 0.005835
+284723 SLC25A34 solute carrier family 25 member 34 protein-coding 28 0.003335
+284729 ESPNP espin pseudogene pseudo 116 0.01381
+284756 C20orf197 chromosome 20 open reading frame 197 protein-coding 20 0.002382
+284759 SIRPB2 signal regulatory protein beta 2 protein-coding 44 0.00524
+284800 FAM182A family with sequence similarity 182 member A ncRNA 18 0.002144
+284802 FRG1BP FSHD region gene 1 family member B, pseudogene pseudo 53 0.006312
+284805 C20orf203 chromosome 20 open reading frame 203 protein-coding 15 0.001786
+284827 KRTAP13-4 keratin associated protein 13-4 protein-coding 48 0.005716
+284904 SEC14L4 SEC14 like lipid binding 4 protein-coding 51 0.006074
+284942 RPL23AP82 ribosomal protein L23a pseudogene 82 pseudo 28 0.003335
+284948 SH2D6 SH2 domain containing 6 protein-coding 19 0.002263
+284958 NT5DC4 5'-nucleotidase domain containing 4 protein-coding 20 0.002382
+284992 CCDC150 coiled-coil domain containing 150 protein-coding 100 0.01191
+284996 RNF149 ring finger protein 149 protein-coding 31 0.003692
+285016 ALKAL2 ALK and LTK ligand 2 protein-coding 8 0.0009527
+285025 CCDC141 coiled-coil domain containing 141 protein-coding 198 0.02358
+285033 STARD7-AS1 STARD7 antisense RNA 1 ncRNA 6 0.0007145
+285051 STPG4 sperm-tail PG-rich repeat containing 4 protein-coding 30 0.003573
+285093 RTP5 receptor transporter protein 5 (putative) protein-coding 64 0.007622
+285126 DNAJC5G DnaJ heat shock protein family (Hsp40) member C5 gamma protein-coding 34 0.004049
+285141 ERICH2 glutamate rich 2 protein-coding 12 0.001429
+285148 IAH1 isoamyl acetate hydrolyzing esterase 1 (putative) protein-coding 15 0.001786
+285154 CYP1B1-AS1 CYP1B1 antisense RNA 1 ncRNA 12 0.001429
+285172 FAM126B family with sequence similarity 126 member B protein-coding 52 0.006193
+285175 UNC80 unc-80 homolog, NALCN channel complex subunit protein-coding 255 0.03037
+285180 RUFY4 RUN and FYVE domain containing 4 protein-coding 51 0.006074
+285189 PLGLA plasminogen-like A (pseudogene) pseudo 36 0.004287
+285190 RGPD4 RANBP2-like and GRIP domain containing 4 protein-coding 241 0.0287
+285193 DUSP28 dual specificity phosphatase 28 protein-coding 51 0.006074
+285195 SLC9A9 solute carrier family 9 member A9 protein-coding 108 0.01286
+285203 EOGT EGF domain specific O-linked N-acetylglucosamine transferase protein-coding 41 0.004883
+285205 LINC00636 long intergenic non-protein coding RNA 636 ncRNA 5 0.0005955
+285220 EPHA6 EPH receptor A6 protein-coding 250 0.02977
+285231 FBXW12 F-box and WD repeat domain containing 12 protein-coding 52 0.006193
+285237 C3orf38 chromosome 3 open reading frame 38 protein-coding 44 0.00524
+285242 HTR3E 5-hydroxytryptamine receptor 3E protein-coding 74 0.008813
+285267 ZNF619 zinc finger protein 619 protein-coding 68 0.008098
+285268 ZNF621 zinc finger protein 621 protein-coding 49 0.005835
+285282 RABL3 RAB, member of RAS oncogene family like 3 protein-coding 31 0.003692
+285311 C3orf56 chromosome 3 open reading frame 56 protein-coding 38 0.004525
+285313 IGSF10 immunoglobulin superfamily member 10 protein-coding 296 0.03525
+285315 C3orf33 chromosome 3 open reading frame 33 protein-coding 31 0.003692
+285326 LINC00692 long intergenic non-protein coding RNA 692 ncRNA 4 0.0004764
+285331 CCDC66 coiled-coil domain containing 66 protein-coding 91 0.01084
+285335 SLC9C1 solute carrier family 9 member C1 protein-coding 162 0.01929
+285343 TCAIM T cell activation inhibitor, mitochondrial protein-coding 55 0.00655
+285346 ZNF852 zinc finger protein 852 protein-coding 67 0.007979
+285349 ZNF660 zinc finger protein 660 protein-coding 53 0.006312
+285362 SUMF1 sulfatase modifying factor 1 protein-coding 38 0.004525
+285367 RPUSD3 RNA pseudouridylate synthase domain containing 3 protein-coding 28 0.003335
+285368 PRRT3 proline rich transmembrane protein 3 protein-coding 57 0.006788
+285381 DPH3 diphthamide biosynthesis 3 protein-coding 10 0.001191
+285382 C3orf70 chromosome 3 open reading frame 70 protein-coding 58 0.006907
+285386 TPRG1 tumor protein p63 regulated 1 protein-coding 37 0.004406
+285429 DCAF4L1 DDB1 and CUL4 associated factor 4 like 1 protein-coding 77 0.00917
+285440 CYP4V2 cytochrome P450 family 4 subfamily V member 2 protein-coding 58 0.006907
+285464 CRIPAK cysteine rich PAK1 inhibitor protein-coding 49 0.005835
+285489 DOK7 docking protein 7 protein-coding 43 0.005121
+285492 LINC00955 long intergenic non-protein coding RNA 955 ncRNA 7 0.0008336
+285498 RNF212 ring finger protein 212 protein-coding 38 0.004525
+285501 LINC01098 long intergenic non-protein coding RNA 1098 ncRNA 32 0.003811
+285513 GPRIN3 GPRIN family member 3 protein-coding 107 0.01274
+285521 COX18 COX18, cytochrome c oxidase assembly factor protein-coding 23 0.002739
+285525 YIPF7 Yip1 domain family member 7 protein-coding 45 0.005359
+285527 FRYL FRY like transcription coactivator protein-coding 244 0.02906
+285533 RNF175 ring finger protein 175 protein-coding 31 0.003692
+285550 FAM200B family with sequence similarity 200 member B protein-coding 56 0.006669
+285555 STPG2 sperm tail PG-rich repeat containing 2 protein-coding 83 0.009884
+285590 SH3PXD2B SH3 and PX domains 2B protein-coding 99 0.01179
+285596 FAM153A family with sequence similarity 153 member A protein-coding 39 0.004645
+285598 ARL10 ADP ribosylation factor like GTPase 10 protein-coding 23 0.002739
+285600 KIAA0825 KIAA0825 protein-coding 109 0.01298
+285601 GPR150 G protein-coupled receptor 150 protein-coding 16 0.001905
+285605 DTWD2 DTW domain containing 2 protein-coding 37 0.004406
+285613 RELL2 RELT like 2 protein-coding 34 0.004049
+285622 NBPF22P NBPF member 22, pseudogene pseudo 98 0.01167
+285636 C5orf51 chromosome 5 open reading frame 51 protein-coding 34 0.004049
+285641 SLC36A3 solute carrier family 36 member 3 protein-coding 51 0.006074
+285643 KIF4B kinesin family member 4B protein-coding 196 0.02334
+285659 OR2V2 olfactory receptor family 2 subfamily V member 2 protein-coding 63 0.007503
+285668 C5orf64 chromosome 5 open reading frame 64 protein-coding 10 0.001191
+285671 RNF180 ring finger protein 180 protein-coding 76 0.009051
+285672 SREK1IP1 SREK1 interacting protein 1 protein-coding 33 0.00393
+285676 ZNF454 zinc finger protein 454 protein-coding 95 0.01131
+285679 C5orf60 chromosome 5 open reading frame 60 protein-coding 28 0.003335
+285704 RGMB repulsive guidance molecule BMP co-receptor b protein-coding 40 0.004764
+285735 LINC00326 long intergenic non-protein coding RNA 326 ncRNA 19 0.002263
+285753 CEP57L1 centrosomal protein 57 like 1 protein-coding 42 0.005002
+285755 PPIL6 peptidylprolyl isomerase like 6 protein-coding 35 0.004168
+285761 DCBLD1 discoidin, CUB and LCCL domain containing 1 protein-coding 69 0.008217
+285782 CAGE1 cancer antigen 1 protein-coding 83 0.009884
+285800 PRR18 proline rich 18 protein-coding 4 0.0004764
+285830 HLA-F-AS1 HLA-F antisense RNA 1 ncRNA 4 0.0004764
+285848 PNPLA1 patatin like phospholipase domain containing 1 protein-coding 72 0.008574
+285852 TREML4 triggering receptor expressed on myeloid cells like 4 protein-coding 30 0.003573
+285855 RPL7L1 ribosomal protein L7 like 1 protein-coding 20 0.002382
+285877 POM121L12 POM121 transmembrane nucleoporin like 12 protein-coding 201 0.02394
+285888 CNPY1 canopy FGF signaling regulator 1 protein-coding 23 0.002739
+285905 INTS4P1 integrator complex subunit 4 pseudogene 1 pseudo 47 0.005597
+285908 LINC00174 long intergenic non-protein coding RNA 174 ncRNA 16 0.001905
+285941 C7orf71 chromosome 7 open reading frame 71 protein-coding 11 0.00131
+285955 SPDYE1 speedy/RINGO cell cycle regulator family member E1 protein-coding 37 0.004406
+285958 SNHG15 small nucleolar RNA host gene 15 ncRNA 5 0.0005955
+285961 SEPT7P9 septin 7 pseudogene 9 pseudo 8 0.0009527
+285965 EPHA1-AS1 EPHA1 antisense RNA 1 ncRNA 3 0.0003573
+285966 TCAF2 TRPM8 channel associated factor 2 protein-coding 43 0.005121
+285971 ZNF775 zinc finger protein 775 protein-coding 53 0.006312
+285973 ATG9B autophagy related 9B protein-coding 96 0.01143
+285989 ZNF789 zinc finger protein 789 protein-coding 50 0.005955
+286006 LSMEM1 leucine rich single-pass membrane protein 1 protein-coding 18 0.002144
+286046 XKR6 XK related 6 protein-coding 74 0.008813
+286053 NSMCE2 NSE2 (MMS21) homolog, SMC5-SMC6 complex SUMO ligase protein-coding 31 0.003692
+286075 ZNF707 zinc finger protein 707 protein-coding 43 0.005121
+286077 FAM83H family with sequence similarity 83 member H protein-coding 125 0.01489
+286097 MICU3 mitochondrial calcium uptake family member 3 protein-coding 75 0.008932
+286101 ZNF252P zinc finger protein 252, pseudogene pseudo 54 0.006431
+286103 ZNF252P-AS1 ZNF252P antisense RNA 1 ncRNA 6 0.0007145
+286122 C8orf31 chromosome 8 open reading frame 31 (putative) ncRNA 24 0.002858
+286128 ZFP41 ZFP41 zinc finger protein protein-coding 34 0.004049
+286133 SCARA5 scavenger receptor class A member 5 protein-coding 66 0.00786
286135 LINC02209 long intergenic non-protein coding RNA 2209 ncRNA 0 0
-286144 TRIQK triple QxxK/R motif containing protein-coding 8 0.0009537
-286148 DPY19L4 dpy-19 like 4 protein-coding 72 0.008584
-286151 FBXO43 F-box protein 43 protein-coding 95 0.01133
-286183 NKAIN3 sodium/potassium transporting ATPase interacting 3 protein-coding 47 0.005603
-286187 PPP1R42 protein phosphatase 1 regulatory subunit 42 protein-coding 46 0.005484
-286204 CRB2 crumbs 2, cell polarity complex component protein-coding 108 0.01288
-286205 SCAI suppressor of cancer cell invasion protein-coding 75 0.008941
-286207 CFAP157 cilia and flagella associated protein 157 protein-coding 35 0.004173
-286223 C9orf47 chromosome 9 open reading frame 47 protein-coding 18 0.002146
-286234 SPATA31E1 SPATA31 subfamily E member 1 protein-coding 190 0.02265
-286256 LCN12 lipocalin 12 protein-coding 19 0.002265
-286257 PAXX PAXX, non-homologous end joining factor protein-coding 17 0.002027
-286262 TPRN taperin protein-coding 46 0.005484
-286319 TUSC1 tumor suppressor candidate 1 protein-coding 8 0.0009537
-286336 FAM78A family with sequence similarity 78 member A protein-coding 40 0.004769
-286343 LURAP1L leucine rich adaptor protein 1 like protein-coding 26 0.0031
-286362 OR13C9 olfactory receptor family 13 subfamily C member 9 protein-coding 59 0.007034
-286365 OR13D1 olfactory receptor family 13 subfamily D member 1 protein-coding 60 0.007153
-286380 FOXD4L3 forkhead box D4 like 3 protein-coding 25 0.00298
-286410 ATP11C ATPase phospholipid transporting 11C protein-coding 150 0.01788
-286411 LINC00632 long intergenic non-protein coding RNA 632 ncRNA 4 0.0004769
-286430 NLRP2B NLR family pyrin domain containing 2B protein-coding 27 0.003219
-286436 H2BFM H2B histone family member M protein-coding 25 0.00298
-286451 YIPF6 Yip1 domain family member 6 protein-coding 37 0.004411
-286464 CFAP47 cilia and flagella associated protein 47 protein-coding 321 0.03827
-286499 FAM133A family with sequence similarity 133 member A protein-coding 68 0.008107
-286514 MAGEB18 MAGE family member B18 protein-coding 94 0.01121
-286527 TMSB15B thymosin beta 15B protein-coding 10 0.001192
-286530 P2RY8 P2Y receptor family member 8 protein-coding 98 0.01168
-286554 BCORP1 BCL6 corepressor pseudogene 1 pseudo 1 0.0001192
-286676 ILDR1 immunoglobulin like domain containing receptor 1 protein-coding 65 0.007749
-286749 STON1-GTF2A1L STON1-GTF2A1L readthrough protein-coding 198 0.02361
-286753 TRARG1 trafficking regulator of GLUT4 (SLC2A4) 1 protein-coding 22 0.002623
-286826 LIN9 lin-9 DREAM MuvB core complex component protein-coding 154 0.01836
-286827 TRIM59 tripartite motif containing 59 protein-coding 49 0.005842
-286828 CSN1S2AP casein alpha s2-like A, pseudogene pseudo 9 0.001073
-286887 KRT6C keratin 6C protein-coding 88 0.01049
-287015 TRIM42 tripartite motif containing 42 protein-coding 143 0.01705
-317649 EIF4E3 eukaryotic translation initiation factor 4E family member 3 protein-coding 17 0.002027
-317662 FAM149B1 family with sequence similarity 149 member B1 protein-coding 33 0.003934
-317671 RFESD Rieske Fe-S domain containing protein-coding 23 0.002742
-317701 VN1R2 vomeronasal 1 receptor 2 protein-coding 98 0.01168
-317703 VN1R4 vomeronasal 1 receptor 4 protein-coding 72 0.008584
-317716 BPIFA4P BPI fold containing family A member 4, pseudogene pseudo 15 0.001788
-317719 KLHL10 kelch like family member 10 protein-coding 67 0.007988
-317749 DHRS4L2 dehydrogenase/reductase 4 like 2 protein-coding 23 0.002742
-317754 POTED POTE ankyrin domain family member D protein-coding 30 0.003577
-317761 C14orf39 chromosome 14 open reading frame 39 protein-coding 100 0.01192
-317762 CCDC85C coiled-coil domain containing 85C protein-coding 8 0.0009537
-317772 HIST2H2AB histone cluster 2 H2A family member b protein-coding 31 0.003696
-317781 DDX51 DEAD-box helicase 51 protein-coding 52 0.006199
-319089 TTC6 tetratricopeptide repeat domain 6 protein-coding 88 0.01049
-319100 TAAR6 trace amine associated receptor 6 protein-coding 75 0.008941
-319101 KRT73 keratin 73 protein-coding 101 0.01204
-319138 BNIP3P1 BCL2 interacting protein 3 pseudogene 1 pseudo 105 0.01252
-326340 ZAR1 zygote arrest 1 protein-coding 17 0.002027
-326342 ADGRE4P adhesion G protein-coupled receptor E4, pseudogene pseudo 68 0.008107
-326624 RAB37 RAB37, member RAS oncogene family protein-coding 47 0.005603
-326625 MMAB methylmalonic aciduria (cobalamin deficiency) cblB type protein-coding 296 0.03529
-327657 SERPINA9 serpin family A member 9 protein-coding 72 0.008584
-333926 PPM1J protein phosphatase, Mg2+/Mn2+ dependent 1J protein-coding 47 0.005603
-333929 SNAI3 snail family transcriptional repressor 3 protein-coding 37 0.004411
-337867 UBAC2 UBA domain containing 2 protein-coding 31 0.003696
-337876 CHSY3 chondroitin sulfate synthase 3 protein-coding 116 0.01383
-337878 KRTAP7-1 keratin associated protein 7-1 (gene/pseudogene) protein-coding 12 0.001431
-337879 KRTAP8-1 keratin associated protein 8-1 protein-coding 15 0.001788
-337880 KRTAP11-1 keratin associated protein 11-1 protein-coding 102 0.01216
-337882 KRTAP19-1 keratin associated protein 19-1 protein-coding 19 0.002265
-337959 KRTAP13-2 keratin associated protein 13-2 protein-coding 44 0.005246
-337960 KRTAP13-3 keratin associated protein 13-3 protein-coding 38 0.00453
-337963 KRTAP23-1 keratin associated protein 23-1 protein-coding 12 0.001431
-337966 KRTAP6-1 keratin associated protein 6-1 protein-coding 25 0.00298
-337967 KRTAP6-2 keratin associated protein 6-2 protein-coding 24 0.002861
-337968 KRTAP6-3 keratin associated protein 6-3 protein-coding 30 0.003577
-337969 KRTAP19-2 keratin associated protein 19-2 protein-coding 10 0.001192
-337970 KRTAP19-3 keratin associated protein 19-3 protein-coding 27 0.003219
-337971 KRTAP19-4 keratin associated protein 19-4 protein-coding 23 0.002742
-337972 KRTAP19-5 keratin associated protein 19-5 protein-coding 32 0.003815
-337973 KRTAP19-6 keratin associated protein 19-6 protein-coding 20 0.002384
-337974 KRTAP19-7 keratin associated protein 19-7 protein-coding 26 0.0031
-337975 KRTAP20-1 keratin associated protein 20-1 protein-coding 20 0.002384
-337976 KRTAP20-2 keratin associated protein 20-2 protein-coding 18 0.002146
-337977 KRTAP21-1 keratin associated protein 21-1 protein-coding 23 0.002742
-337978 KRTAP21-2 keratin associated protein 21-2 protein-coding 28 0.003338
-337979 KRTAP22-1 keratin associated protein 22-1 protein-coding 12 0.001431
-337985 KRTAP20-3 keratin associated protein 20-3 protein-coding 4 0.0004769
-338004 LINC00226 long intergenic non-protein coding RNA 226 ncRNA 1 0.0001192
-338005 LINC00221 long intergenic non-protein coding RNA 221 ncRNA 11 0.001311
-338069 ST7-OT4 ST7 overlapping transcript 4 ncRNA 8 0.0009537
-338094 FAM151A family with sequence similarity 151 member A protein-coding 62 0.007392
-338321 NLRP9 NLR family pyrin domain containing 9 protein-coding 186 0.02217
-338322 NLRP10 NLR family pyrin domain containing 10 protein-coding 136 0.01621
-338323 NLRP14 NLR family pyrin domain containing 14 protein-coding 210 0.02504
-338324 S100A7A S100 calcium binding protein A7A protein-coding 20 0.002384
-338328 GPIHBP1 glycosylphosphatidylinositol anchored high density lipoprotein binding protein 1 protein-coding 21 0.002504
-338339 CLEC4D C-type lectin domain family 4 member D protein-coding 49 0.005842
-338376 IFNE interferon epsilon protein-coding 24 0.002861
-338398 TAS2R60 taste 2 receptor member 60 protein-coding 64 0.00763
-338427 SNORD108 small nucleolar RNA, C/D box 108 snoRNA 6 0.0007153
-338428 SNORD109A small nucleolar RNA, C/D box 109A snoRNA 6 0.0007153
-338429 SNORD109B small nucleolar RNA, C/D box 109B snoRNA 2 0.0002384
-338433 SNORD115-1 small nucleolar RNA, C/D box 115-1 snoRNA 8 0.0009537
-338440 ANO9 anoctamin 9 protein-coding 99 0.0118
-338442 HCAR2 hydroxycarboxylic acid receptor 2 protein-coding 68 0.008107
-338557 FFAR4 free fatty acid receptor 4 protein-coding 48 0.005722
-338567 KCNK18 potassium two pore domain channel subfamily K member 18 protein-coding 80 0.009537
-338588 LINC00705 long intergenic non-protein coding RNA 705 ncRNA 8 0.0009537
-338596 ST8SIA6 ST8 alpha-N-acetyl-neuraminide alpha-2,8-sialyltransferase 6 protein-coding 87 0.01037
-338599 DUPD1 dual specificity phosphatase and pro isomerase domain containing 1 protein-coding 275 0.03278
-338645 LUZP2 leucine zipper protein 2 protein-coding 104 0.0124
-338657 CCDC84 coiled-coil domain containing 84 protein-coding 24 0.002861
-338661 TMEM225 transmembrane protein 225 protein-coding 65 0.007749
-338662 OR8D4 olfactory receptor family 8 subfamily D member 4 protein-coding 68 0.008107
-338674 OR5F1 olfactory receptor family 5 subfamily F member 1 protein-coding 119 0.01419
-338675 OR5AP2 olfactory receptor family 5 subfamily AP member 2 protein-coding 67 0.007988
-338692 ANKRD13D ankyrin repeat domain 13D protein-coding 60 0.007153
-338699 ANKRD42 ankyrin repeat domain 42 protein-coding 57 0.006795
-338707 B4GALNT4 beta-1,4-N-acetyl-galactosaminyltransferase 4 protein-coding 97 0.01156
-338739 CSTF3-DT CSTF3 divergent transcript ncRNA 3 0.0003577
-338751 OR52L1 olfactory receptor family 52 subfamily L member 1 protein-coding 80 0.009537
-338755 OR2AG2 olfactory receptor family 2 subfamily AG member 2 protein-coding 65 0.007749
-338761 C1QL4 complement C1q like 4 protein-coding 17 0.002027
-338773 TMEM119 transmembrane protein 119 protein-coding 46 0.005484
-338785 KRT79 keratin 79 protein-coding 77 0.00918
-338809 C12orf74 chromosome 12 open reading frame 74 protein-coding 29 0.003457
-338811 FAM19A2 family with sequence similarity 19 member A2, C-C motif chemokine like protein-coding 48 0.005722
-338821 SLCO1B7 solute carrier organic anion transporter family member 1B7 (putative) protein-coding 139 0.01657
-338872 C1QTNF9 C1q and TNF related 9 protein-coding 37 0.004411
-338879 RNASE10 ribonuclease A family member 10 (inactive) protein-coding 40 0.004769
-338917 VSX2 visual system homeobox 2 protein-coding 36 0.004292
-338949 TMEM202 transmembrane protein 202 protein-coding 49 0.005842
-339005 WHAMMP3 WAS protein homolog associated with actin, golgi membranes and microtubules pseudogene 3 pseudo 35 0.004173
-339044 PKD1P1 polycystin 1, transient receptor potential channel interacting pseudogene 1 pseudo 22 0.002623
-339105 PRSS53 serine protease 53 protein-coding 36 0.004292
-339122 RAB43 RAB43, member RAS oncogene family protein-coding 70 0.008345
-339123 JMJD8 jumonji domain containing 8 protein-coding 14 0.001669
-339145 FAM92B family with sequence similarity 92 member B protein-coding 43 0.005126
-339168 TMEM95 transmembrane protein 95 protein-coding 16 0.001907
-339175 METTL2A methyltransferase like 2A protein-coding 44 0.005246
-339184 CCDC144NL coiled-coil domain containing 144 family, N-terminal like protein-coding 24 0.002861
-339210 C17orf67 chromosome 17 open reading frame 67 protein-coding 9 0.001073
-339221 ENPP7 ectonucleotide pyrophosphatase/phosphodiesterase 7 protein-coding 66 0.007868
-339229 OXLD1 oxidoreductase like domain containing 1 protein-coding 21 0.002504
-339230 CCDC137 coiled-coil domain containing 137 protein-coding 25 0.00298
-339231 ARL16 ADP ribosylation factor like GTPase 16 protein-coding 16 0.001907
-339241 KRT17P2 keratin 17 pseudogene 2 pseudo 18 0.002146
-339256 NOS2P3 nitric oxide synthase 2 pseudogene 3 pseudo 1 0.0001192
-339263 C17orf51 chromosome 17 open reading frame 51 protein-coding 14 0.001669
-339287 MSL1 male specific lethal 1 homolog protein-coding 38 0.00453
-339291 LRRC30 leucine rich repeat containing 30 protein-coding 72 0.008584
-339302 CPLX4 complexin 4 protein-coding 34 0.004053
-339318 ZNF181 zinc finger protein 181 protein-coding 58 0.006915
-339324 ZNF260 zinc finger protein 260 protein-coding 175 0.02086
-339327 ZNF546 zinc finger protein 546 protein-coding 118 0.01407
-339344 MYPOP Myb related transcription factor, partner of profilin protein-coding 32 0.003815
-339345 NANOS2 nanos C2HC-type zinc finger 2 protein-coding 175 0.02086
-339366 ADAMTSL5 ADAMTS like 5 protein-coding 42 0.005007
-339390 CLEC4G C-type lectin domain family 4 member G protein-coding 32 0.003815
-339398 LINGO4 leucine rich repeat and Ig domain containing 4 protein-coding 73 0.008703
-339403 RXFP4 relaxin family peptide/INSL5 receptor 4 protein-coding 29 0.003457
-339416 ANKRD45 ankyrin repeat domain 45 protein-coding 55 0.006557
-339448 C1orf174 chromosome 1 open reading frame 174 protein-coding 27 0.003219
-339451 KLHL17 kelch like family member 17 protein-coding 60 0.007153
-339453 TMEM240 transmembrane protein 240 protein-coding 8 0.0009537
-339456 TMEM52 transmembrane protein 52 protein-coding 23 0.002742
-339476 ERVMER61-1 endogenous retrovirus group MER61 member 1 other 26 0.0031
-339479 BRINP3 BMP/retinoic acid inducible neural specific 3 protein-coding 332 0.03958
-339483 MTMR9LP myotubularin related protein 9-like, pseudogene pseudo 11 0.001311
-339487 ZBTB8OS zinc finger and BTB domain containing 8 opposite strand protein-coding 17 0.002027
-339488 TFAP2E transcription factor AP-2 epsilon protein-coding 25 0.00298
-339500 ZNF678 zinc finger protein 678 protein-coding 73 0.008703
-339501 PRSS38 serine protease 38 protein-coding 58 0.006915
-339512 CCDC190 coiled-coil domain containing 190 protein-coding 45 0.005365
-339535 LINC01139 long intergenic non-protein coding RNA 1139 ncRNA 11 0.001311
-339541 ARMH1 armadillo-like helical domain containing 1 protein-coding 24 0.002861
-339559 ZFP69 ZFP69 zinc finger protein protein-coding 49 0.005842
-339665 SLC35E4 solute carrier family 35 member E4 protein-coding 33 0.003934
-339669 TEX33 testis expressed 33 protein-coding 36 0.004292
-339674 LINC00634 long intergenic non-protein coding RNA 634 ncRNA 7 0.0008345
-339745 SPOPL speckle type BTB/POZ protein like protein-coding 82 0.009776
-339761 CYP27C1 cytochrome P450 family 27 subfamily C member 1 protein-coding 63 0.007511
-339766 MROH2A maestro heat like repeat family member 2A protein-coding 12 0.001431
-339768 ESPNL espin like protein-coding 85 0.01013
-339778 C2orf70 chromosome 2 open reading frame 70 protein-coding 28 0.003338
-339779 PRR30 proline rich 30 protein-coding 60 0.007153
-339788 LINC00298 long intergenic non-protein coding RNA 298 ncRNA 10 0.001192
-339789 LINC00299 long intergenic non-protein coding RNA 299 ncRNA 19 0.002265
-339804 C2orf74 chromosome 2 open reading frame 74 protein-coding 19 0.002265
-339829 CCDC39 coiled-coil domain containing 39 protein-coding 184 0.02194
-339834 CCDC36 coiled-coil domain containing 36 protein-coding 69 0.008226
-339855 KY kyphoscoliosis peptidase protein-coding 77 0.00918
-339883 C3orf35 chromosome 3 open reading frame 35 protein-coding 27 0.003219
-339896 GADL1 glutamate decarboxylase like 1 protein-coding 106 0.01264
-339906 PRSS42 serine protease 42 protein-coding 33 0.003934
-339942 H1FX-AS1 H1FX antisense RNA 1 ncRNA 1 0.0001192
-339965 CCDC158 coiled-coil domain containing 158 protein-coding 140 0.01669
-339967 TMPRSS11A transmembrane serine protease 11A protein-coding 69 0.008226
-339976 TRIML1 tripartite motif family like 1 protein-coding 119 0.01419
-339977 LRRC66 leucine rich repeat containing 66 protein-coding 167 0.01991
-339983 NAT8L N-acetyltransferase 8 like protein-coding 20 0.002384
-340024 SLC6A19 solute carrier family 6 member 19 protein-coding 114 0.01359
-340061 TMEM173 transmembrane protein 173 protein-coding 45 0.005365
-340069 FAM170A family with sequence similarity 170 member A protein-coding 56 0.006676
-340075 ARSI arylsulfatase family member I protein-coding 82 0.009776
-340094 LINC01020 long intergenic non-protein coding RNA 1020 ncRNA 22 0.002623
-340120 ANKRD34B ankyrin repeat domain 34B protein-coding 77 0.00918
-340146 SLC35D3 solute carrier family 35 member D3 protein-coding 44 0.005246
-340152 ZC3H12D zinc finger CCCH-type containing 12D protein-coding 33 0.003934
-340156 MYLK4 myosin light chain kinase family member 4 protein-coding 57 0.006795
-340168 DPPA5 developmental pluripotency associated 5 protein-coding 29 0.003457
-340204 CLPSL1 colipase like 1 protein-coding 16 0.001907
-340205 TREML1 triggering receptor expressed on myeloid cells like 1 protein-coding 29 0.003457
-340206 TREML3P triggering receptor expressed on myeloid cells like 3, pseudogene pseudo 34 0.004053
-340252 ZNF680 zinc finger protein 680 protein-coding 79 0.009418
-340260 UNCX UNC homeobox protein-coding 26 0.0031
-340267 COL28A1 collagen type XXVIII alpha 1 chain protein-coding 149 0.01776
-340273 ABCB5 ATP binding cassette subfamily B member 5 protein-coding 259 0.03088
-340277 FAM221A family with sequence similarity 221 member A protein-coding 35 0.004173
-340286 FAM183BP acyloxyacyl hydrolase (neutrophil) pseudo 39 0.004649
-340307 CTAGE6 CTAGE family member 6 protein-coding 54 0.006438
-340348 TSPAN33 tetraspanin 33 protein-coding 23 0.002742
-340351 AGBL3 ATP/GTP binding protein like 3 protein-coding 71 0.008464
-340359 KLHL38 kelch like family member 38 protein-coding 98 0.01168
-340371 NRBP2 nuclear receptor binding protein 2 protein-coding 39 0.004649
-340385 ZNF517 zinc finger protein 517 protein-coding 47 0.005603
-340390 WDR97 WD repeat domain 97 protein-coding 27 0.003219
-340393 TMEM249 transmembrane protein 249 protein-coding 4 0.0004769
-340419 RSPO2 R-spondin 2 protein-coding 74 0.008822
-340441 POTEA POTE ankyrin domain family member A protein-coding 119 0.01419
-340481 ZDHHC21 zinc finger DHHC-type containing 21 protein-coding 28 0.003338
-340485 ACER2 alkaline ceramidase 2 protein-coding 29 0.003457
-340526 RTL5 retrotransposon Gag like 5 protein-coding 105 0.01252
-340527 NHSL2 NHS like 2 protein-coding 96 0.01144
-340529 PABPC1L2A poly(A) binding protein cytoplasmic 1 like 2A protein-coding 1 0.0001192
-340533 NEXMIF neurite extension and migration factor protein-coding 272 0.03243
-340542 BEX5 brain expressed X-linked 5 protein-coding 19 0.002265
-340543 TCEAL5 transcription elongation factor A like 5 protein-coding 46 0.005484
-340547 VSIG1 V-set and immunoglobulin domain containing 1 protein-coding 51 0.00608
-340554 ZC3H12B zinc finger CCCH-type containing 12B protein-coding 119 0.01419
-340562 SATL1 spermidine/spermine N1-acetyl transferase like 1 protein-coding 95 0.01133
-340578 DCAF12L2 DDB1 and CUL4 associated factor 12 like 2 protein-coding 191 0.02277
-340591 CA5BP1 carbonic anhydrase 5B pseudogene 1 pseudo 30 0.003577
-340595 RTL4 retrotransposon Gag like 4 protein-coding 71 0.008464
-340596 LHFPL1 LHFPL tetraspan subfamily member 1 protein-coding 40 0.004769
-340602 CXorf67 chromosome X open reading frame 67 protein-coding 95 0.01133
-340654 LIPM lipase family member M protein-coding 28 0.003338
-340665 CYP26C1 cytochrome P450 family 26 subfamily C member 1 protein-coding 28 0.003338
-340706 VWA2 von Willebrand factor A domain containing 2 protein-coding 73 0.008703
-340719 NANOS1 nanos C2HC-type zinc finger 1 protein-coding 268 0.03195
-340745 LRIT2 leucine rich repeat, Ig-like and transmembrane domains 2 protein-coding 83 0.009895
-340784 HMX3 H6 family homeobox 3 protein-coding 35 0.004173
-340811 AKR1C8P aldo-keto reductase family 1 member C8, pseudogene pseudo 20 0.002384
-340895 MALRD1 MAM and LDL receptor class A domain containing 1 protein-coding 36 0.004292
-340980 OR52B6 olfactory receptor family 52 subfamily B member 6 protein-coding 53 0.006319
-340990 OTOG otogelin protein-coding 71 0.008464
-341019 DCDC1 doublecortin domain containing 1 protein-coding 309 0.03684
-341032 C11orf53 chromosome 11 open reading frame 53 protein-coding 30 0.003577
-341116 MS4A10 membrane spanning 4-domains A10 protein-coding 47 0.005603
-341152 OR2AT4 olfactory receptor family 2 subfamily AT member 4 protein-coding 47 0.005603
-341208 HEPHL1 hephaestin like 1 protein-coding 176 0.02098
-341276 OR10A2 olfactory receptor family 10 subfamily A member 2 protein-coding 61 0.007272
-341277 OVCH2 ovochymase 2 (gene/pseudogene) protein-coding 47 0.005603
-341346 SMCO2 single-pass membrane protein with coiled-coil domains 2 protein-coding 27 0.003219
-341350 OVCH1 ovochymase 1 protein-coding 190 0.02265
-341359 SYT10 synaptotagmin 10 protein-coding 116 0.01383
-341392 ACSM4 acyl-CoA synthetase medium chain family member 4 protein-coding 95 0.01133
-341405 ANKRD33 ankyrin repeat domain 33 protein-coding 73 0.008703
-341416 OR6C2 olfactory receptor family 6 subfamily C member 2 protein-coding 44 0.005246
-341418 OR6C4 olfactory receptor family 6 subfamily C member 4 protein-coding 47 0.005603
-341567 H1FNT H1 histone family member N, testis specific protein-coding 33 0.003934
-341568 OR8S1 olfactory receptor family 8 subfamily S member 1 protein-coding 46 0.005484
-341640 FREM2 FRAS1 related extracellular matrix protein 2 protein-coding 380 0.0453
-341676 NEK5 NIMA related kinase 5 protein-coding 107 0.01276
-341799 OR6S1 olfactory receptor family 6 subfamily S member 1 protein-coding 62 0.007392
-341880 SLC35F4 solute carrier family 35 member F4 protein-coding 69 0.008226
-341883 LRRC9 leucine rich repeat containing 9 protein-coding 50 0.005961
-341947 COX8C cytochrome c oxidase subunit 8C protein-coding 9 0.001073
-342035 GLDN gliomedin protein-coding 50 0.005961
-342096 GOLGA6A golgin A6 family member A protein-coding 44 0.005246
-342125 TMC3 transmembrane channel like 3 protein-coding 133 0.01586
-342132 ZNF774 zinc finger protein 774 protein-coding 44 0.005246
-342184 FMN1 formin 1 protein-coding 161 0.01919
-342346 C16orf96 chromosome 16 open reading frame 96 protein-coding 78 0.009299
-342357 ZKSCAN2 zinc finger with KRAB and SCAN domains 2 protein-coding 165 0.01967
-342371 ATXN1L ataxin 1 like protein-coding 34 0.004053
-342372 PKD1L3 polycystin 1 like 3, transient receptor potential channel interacting protein-coding 89 0.01061
-342510 CD300E CD300e molecule protein-coding 37 0.004411
-342527 SMTNL2 smoothelin like 2 protein-coding 41 0.004888
-342538 NACA2 nascent polypeptide associated complex alpha subunit 2 protein-coding 42 0.005007
-342574 KRT27 keratin 27 protein-coding 67 0.007988
-342618 SLFN14 schlafen family member 14 protein-coding 66 0.007868
-342666 LRRC37A11P leucine rich repeat containing 37 member A11, pseudogene pseudo 22 0.002623
-342667 STAC2 SH3 and cysteine rich domain 2 protein-coding 54 0.006438
-342850 ANKRD62 ankyrin repeat domain 62 protein-coding 48 0.005722
-342865 VSTM2B V-set and transmembrane domain containing 2B protein-coding 39 0.004649
-342892 ZNF850 zinc finger protein 850 protein-coding 63 0.007511
-342897 NCCRP1 non-specific cytotoxic cell receptor protein 1 homolog (zebrafish) protein-coding 37 0.004411
-342898 SYCN syncollin protein-coding 14 0.001669
-342900 LEUTX leucine twenty homeobox protein-coding 11 0.001311
-342908 ZNF404 zinc finger protein 404 protein-coding 77 0.00918
-342909 ZNF284 zinc finger protein 284 protein-coding 79 0.009418
-342926 ZNF677 zinc finger protein 677 protein-coding 106 0.01264
-342931 RFPL4A ret finger protein like 4A protein-coding 37 0.004411
-342933 ZSCAN5B zinc finger and SCAN domain containing 5B protein-coding 96 0.01144
-342945 ZSCAN22 zinc finger and SCAN domain containing 22 protein-coding 68 0.008107
-342977 NANOS3 nanos C2HC-type zinc finger 3 protein-coding 185 0.02206
-342979 PALM3 paralemmin 3 protein-coding 35 0.004173
-343035 RD3 retinal degeneration 3 protein-coding 40 0.004769
-343066 AADACL4 arylacetamide deacetylase like 4 protein-coding 75 0.008941
-343068 PRAMEF5 PRAME family member 5 protein-coding 17 0.002027
-343069 HNRNPCL1 heterogeneous nuclear ribonucleoprotein C-like 1 protein-coding 84 0.01001
-343071 PRAMEF10 PRAME family member 10 protein-coding 60 0.007153
-343099 CCDC18 coiled-coil domain containing 18 protein-coding 131 0.01562
-343169 OR6F1 olfactory receptor family 6 subfamily F member 1 protein-coding 123 0.01466
-343170 OR14K1 olfactory receptor family 14 subfamily K member 1 protein-coding 108 0.01288
-343171 OR2W3 olfactory receptor family 2 subfamily W member 3 protein-coding 111 0.01323
-343172 OR2T8 olfactory receptor family 2 subfamily T member 8 protein-coding 87 0.01037
-343173 OR2T3 olfactory receptor family 2 subfamily T member 3 protein-coding 124 0.01478
-343263 MYBPHL myosin binding protein H like protein-coding 29 0.003457
-343406 OR10R2 olfactory receptor family 10 subfamily R member 2 protein-coding 92 0.01097
-343413 FCRL6 Fc receptor like 6 protein-coding 58 0.006915
-343450 KCNT2 potassium sodium-activated channel subfamily T member 2 protein-coding 279 0.03326
-343472 BARHL2 BarH like homeobox 2 protein-coding 75 0.008941
-343521 TCTEX1D4 Tctex1 domain containing 4 protein-coding 14 0.001669
-343563 OR2T29 olfactory receptor family 2 subfamily T member 29 protein-coding 14 0.001669
-343637 RSPO4 R-spondin 4 protein-coding 31 0.003696
-343641 TGM6 transglutaminase 6 protein-coding 139 0.01657
-343702 XKR7 XK related 7 protein-coding 97 0.01156
-343930 MSGN1 mesogenin 1 protein-coding 37 0.004411
-343990 KIAA1211L KIAA1211 like protein-coding 85 0.01013
-344018 FIGLA folliculogenesis specific bHLH transcription factor protein-coding 25 0.00298
-344022 NOTO notochord homeobox protein-coding 19 0.002265
-344148 NCKAP5 NCK associated protein 5 protein-coding 307 0.0366
-344167 FOXI3 forkhead box I3 protein-coding 38 0.00453
-344191 EVX2 even-skipped homeobox 2 protein-coding 67 0.007988
-344387 CDKL4 cyclin dependent kinase like 4 protein-coding 52 0.006199
-344558 SH3RF3 SH3 domain containing ring finger 3 protein-coding 75 0.008941
-344561 GPR148 G protein-coupled receptor 148 protein-coding 56 0.006676
-344657 LRRIQ4 leucine rich repeats and IQ motif containing 4 protein-coding 75 0.008941
-344658 SAMD7 sterile alpha motif domain containing 7 protein-coding 82 0.009776
-344752 AADACL2 arylacetamide deacetylase like 2 protein-coding 84 0.01001
-344758 GPR149 G protein-coupled receptor 149 protein-coding 145 0.01729
-344787 ZNF860 zinc finger protein 860 protein-coding 71 0.008464
-344805 TMPRSS7 transmembrane serine protease 7 protein-coding 94 0.01121
-344807 CD200R1L CD200 receptor 1 like protein-coding 49 0.005842
-344838 PAQR9 progestin and adipoQ receptor family member 9 protein-coding 86 0.01025
-344875 COL6A4P1 collagen type VI alpha 4 pseudogene 1 pseudo 32 0.003815
-344892 RTP2 receptor transporter protein 2 protein-coding 56 0.006676
-344901 OSTN osteocrin protein-coding 27 0.003219
-344905 ATP13A5 ATPase 13A5 protein-coding 167 0.01991
-345062 PRSS48 serine protease 48 protein-coding 36 0.004292
-345079 SOWAHB sosondowah ankyrin repeat domain family member B protein-coding 74 0.008822
-345193 LRIT3 leucine rich repeat, Ig-like and transmembrane domains 3 protein-coding 72 0.008584
-345222 MSANTD1 Myb/SANT DNA binding domain containing 1 protein-coding 17 0.002027
-345274 SLC10A6 solute carrier family 10 member 6 protein-coding 50 0.005961
-345275 HSD17B13 hydroxysteroid 17-beta dehydrogenase 13 protein-coding 29 0.003457
-345456 PFN3 profilin 3 protein-coding 6 0.0007153
-345462 ZNF879 zinc finger protein 879 protein-coding 59 0.007034
-345557 PLCXD3 phosphatidylinositol specific phospholipase C X domain containing 3 protein-coding 95 0.01133
-345611 IRGM immunity related GTPase M protein-coding 9 0.001073
-345630 FBLL1 fibrillarin like 1 protein-coding 26 0.0031
-345643 MCIDAS multiciliate differentiation and DNA synthesis associated cell cycle protein protein-coding 9 0.001073
-345651 ACTBL2 actin, beta like 2 protein-coding 55 0.006557
-345757 FAM174A family with sequence similarity 174 member A protein-coding 28 0.003338
-345778 MTX3 metaxin 3 protein-coding 24 0.002861
-345895 RSPH4A radial spoke head 4 homolog A protein-coding 76 0.009061
-345930 ECT2L epithelial cell transforming 2 like protein-coding 102 0.01216
-346007 EYS eyes shut homolog (Drosophila) protein-coding 366 0.04363
-346157 ZNF391 zinc finger protein 391 protein-coding 52 0.006199
-346171 ZFP57 ZFP57 zinc finger protein protein-coding 93 0.01109
-346288 SEPT14 septin 14 protein-coding 92 0.01097
-346389 MACC1 MACC1, MET transcriptional regulator protein-coding 123 0.01466
-346517 OR6V1 olfactory receptor family 6 subfamily V member 1 protein-coding 44 0.005246
-346525 OR2A12 olfactory receptor family 2 subfamily A member 12 protein-coding 67 0.007988
-346528 OR2A1 olfactory receptor family 2 subfamily A member 1 protein-coding 39 0.004649
-346562 GNAT3 G protein subunit alpha transducin 3 protein-coding 50 0.005961
-346606 MOGAT3 monoacylglycerol O-acyltransferase 3 protein-coding 147 0.01753
-346653 FAM71F2 family with sequence similarity 71 member F2 protein-coding 31 0.003696
-346673 STRA8 stimulated by retinoic acid 8 protein-coding 51 0.00608
-346689 KLRG2 killer cell lectin like receptor G2 protein-coding 27 0.003219
-346702 PRSS51 serine protease 51 protein-coding 10 0.001192
-347051 SLC10A5 solute carrier family 10 member 5 protein-coding 62 0.007392
-347088 ADGRD2 adhesion G protein-coupled receptor D2 protein-coding 55 0.006557
-347127 SPATA31D5P SPATA31 subfamily D member 5, pseudogene pseudo 288 0.03433
-347148 QRFP pyroglutamylated RFamide peptide protein-coding 16 0.001907
-347168 OR1J1 olfactory receptor family 1 subfamily J member 1 protein-coding 48 0.005722
-347169 OR1B1 olfactory receptor family 1 subfamily B member 1 (gene/pseudogene) protein-coding 51 0.00608
-347240 KIF24 kinesin family member 24 protein-coding 101 0.01204
-347252 IGFBPL1 insulin like growth factor binding protein like 1 protein-coding 23 0.002742
-347273 CAVIN4 caveolae associated protein 4 protein-coding 61 0.007272
-347344 ZNF81 zinc finger protein 81 protein-coding 96 0.01144
-347365 ITIH6 inter-alpha-trypsin inhibitor heavy chain family member 6 protein-coding 199 0.02372
-347404 LANCL3 LanC like 3 protein-coding 43 0.005126
-347442 DCAF8L2 DDB1 and CUL4 associated factor 8 like 2 protein-coding 129 0.01538
-347454 SOWAHD sosondowah ankyrin repeat domain family member D protein-coding 28 0.003338
-347468 OR13H1 olfactory receptor family 13 subfamily H member 1 protein-coding 63 0.007511
-347475 CCDC160 coiled-coil domain containing 160 protein-coding 53 0.006319
-347487 CXorf66 chromosome X open reading frame 66 protein-coding 79 0.009418
-347516 DGAT2L6 diacylglycerol O-acyltransferase 2 like 6 protein-coding 65 0.007749
-347517 RAB41 RAB41, member RAS oncogene family protein-coding 25 0.00298
-347527 ARSH arylsulfatase family member H protein-coding 60 0.007153
-347686 SNORD64 small nucleolar RNA, C/D box 64 snoRNA 6 0.0007153
-347688 TUBB8 tubulin beta 8 class VIII protein-coding 80 0.009537
-347689 SOX2-OT SOX2 overlapping transcript ncRNA 2 0.0002384
-347717 SRP68P3 signal recognition particle 68 pseudogene 3 pseudo 11 0.001311
-347730 LRRTM1 leucine rich repeat transmembrane neuronal 1 protein-coding 155 0.01848
-347731 LRRTM3 leucine rich repeat transmembrane neuronal 3 protein-coding 136 0.01621
-347732 CATSPER3 cation channel sperm associated 3 protein-coding 61 0.007272
-347733 TUBB2B tubulin beta 2B class IIb protein-coding 47 0.005603
-347734 SLC35B2 solute carrier family 35 member B2 protein-coding 47 0.005603
-347735 SERINC2 serine incorporator 2 protein-coding 43 0.005126
-347736 NME9 NME/NM23 family member 9 protein-coding 52 0.006199
-347741 OTOP3 otopetrin 3 protein-coding 59 0.007034
-347744 C6orf52 chromosome 6 open reading frame 52 protein-coding 14 0.001669
-347853 TBX10 T-box 10 protein-coding 54 0.006438
-347862 GATD1 glutamine amidotransferase like class 1 domain containing 1 protein-coding 22 0.002623
-347902 AMIGO2 adhesion molecule with Ig like domain 2 protein-coding 58 0.006915
-347918 EP400P1 EP400 pseudogene 1 pseudo 23 0.002742
-348013 TMEM255B transmembrane protein 255B protein-coding 60 0.007153
-348093 RBPMS2 RNA binding protein, mRNA processing factor 2 protein-coding 19 0.002265
-348094 ANKDD1A ankyrin repeat and death domain containing 1A protein-coding 50 0.005961
-348158 ACSM2B acyl-CoA synthetase medium chain family member 2B protein-coding 148 0.01764
-348174 CLEC18A C-type lectin domain family 18 member A protein-coding 21 0.002504
-348180 CTU2 cytosolic thiouridylase subunit 2 protein-coding 46 0.005484
-348235 SKA2 spindle and kinetochore associated complex subunit 2 protein-coding 14 0.001669
-348262 MCRIP1 MAPK regulated corepressor interacting protein 1 protein-coding 6 0.0007153
-348303 SELENOV selenoprotein V protein-coding 25 0.00298
-348327 ZNF530 zinc finger protein 530 protein-coding 74 0.008822
-348378 SHISAL2A shisa like 2A protein-coding 23 0.002742
-348487 FAM131C family with sequence similarity 131 member C protein-coding 22 0.002623
-348645 C22orf34 chromosome 22 open reading frame 34 protein-coding 5 0.0005961
-348654 GEN1 GEN1, Holliday junction 5' flap endonuclease protein-coding 90 0.01073
-348738 C2orf48 chromosome 2 open reading frame 48 protein-coding 18 0.002146
-348793 WDR53 WD repeat domain 53 protein-coding 42 0.005007
-348801 LNP1 leukemia NUP98 fusion partner 1 protein-coding 28 0.003338
-348807 CFAP100 cilia and flagella associated protein 100 protein-coding 92 0.01097
-348825 TPRXL tetrapeptide repeat homeobox like pseudo 6 0.0007153
-348840 ANKRD18DP ankyrin repeat domain 18D, pseudogene pseudo 44 0.005246
-348926 FAM86EP family with sequence similarity 86, member A pseudogene pseudo 67 0.007988
-348932 SLC6A18 solute carrier family 6 member 18 protein-coding 87 0.01037
-348938 NIPAL4 NIPA like domain containing 4 protein-coding 54 0.006438
-348980 HCN1 hyperpolarization activated cyclic nucleotide gated potassium channel 1 protein-coding 348 0.04149
-348995 NUP43 nucleoporin 43 protein-coding 45 0.005365
-349075 ZNF713 zinc finger protein 713 protein-coding 49 0.005842
-349114 LINC00265 long intergenic non-protein coding RNA 265 ncRNA 20 0.002384
-349136 WDR86 WD repeat domain 86 protein-coding 37 0.004411
-349149 GJC3 gap junction protein gamma 3 protein-coding 28 0.003338
-349152 DPY19L2P2 DPY19L2 pseudogene 2 pseudo 105 0.01252
-349565 NMNAT3 nicotinamide nucleotide adenylyltransferase 3 protein-coding 29 0.003457
-349633 PLET1 placenta expressed transcript 1 protein-coding 15 0.001788
-349667 RTN4RL2 reticulon 4 receptor like 2 protein-coding 32 0.003815
-350383 GPR142 G protein-coupled receptor 142 protein-coding 83 0.009895
-352909 DNAAF3 dynein axonemal assembly factor 3 protein-coding 183 0.02182
-352954 CASTOR3 CASTOR family member 3 protein-coding 12 0.001431
-352962 HLA-V major histocompatibility complex, class I, V (pseudogene) pseudo 16 0.001907
-352999 C6orf58 chromosome 6 open reading frame 58 protein-coding 64 0.00763
-353088 ZNF429 zinc finger protein 429 protein-coding 107 0.01276
-353091 RAET1G retinoic acid early transcript 1G protein-coding 30 0.003577
-353116 RILPL1 Rab interacting lysosomal protein like 1 protein-coding 45 0.005365
-353131 LCE1A late cornified envelope 1A protein-coding 29 0.003457
-353132 LCE1B late cornified envelope 1B protein-coding 34 0.004053
-353133 LCE1C late cornified envelope 1C protein-coding 33 0.003934
-353134 LCE1D late cornified envelope 1D protein-coding 25 0.00298
-353135 LCE1E late cornified envelope 1E protein-coding 33 0.003934
-353137 LCE1F late cornified envelope 1F protein-coding 35 0.004173
-353139 LCE2A late cornified envelope 2A protein-coding 28 0.003338
-353140 LCE2C late cornified envelope 2C protein-coding 46 0.005484
-353141 LCE2D late cornified envelope 2D protein-coding 37 0.004411
-353142 LCE3A late cornified envelope 3A protein-coding 17 0.002027
-353143 LCE3B late cornified envelope 3B protein-coding 10 0.001192
-353144 LCE3C late cornified envelope 3C protein-coding 7 0.0008345
-353145 LCE3E late cornified envelope 3E protein-coding 25 0.00298
-353149 TBC1D26 TBC1 domain family member 26 protein-coding 28 0.003338
-353164 TAS2R42 taste 2 receptor member 42 protein-coding 38 0.00453
-353174 ZACN zinc activated ion channel protein-coding 51 0.00608
-353189 SLCO4C1 solute carrier organic anion transporter family member 4C1 protein-coding 120 0.01431
-353219 KAAG1 kidney associated antigen 1 protein-coding 7 0.0008345
-353238 PADI6 peptidyl arginine deiminase 6 protein-coding 100 0.01192
-353274 ZNF445 zinc finger protein 445 protein-coding 112 0.01335
-353288 KRT26 keratin 26 protein-coding 64 0.00763
-353299 RGSL1 regulator of G protein signaling like 1 protein-coding 70 0.008345
-353322 ANKRD37 ankyrin repeat domain 37 protein-coding 17 0.002027
-353323 KRTAP12-2 keratin associated protein 12-2 protein-coding 26 0.0031
-353324 SPATA12 spermatogenesis associated 12 protein-coding 19 0.002265
-353332 KRTAP12-1 keratin associated protein 12-1 protein-coding 13 0.00155
-353333 KRTAP10-10 keratin associated protein 10-10 protein-coding 38 0.00453
-353345 GPR141 G protein-coupled receptor 141 protein-coding 93 0.01109
-353355 ZNF233 zinc finger protein 233 protein-coding 76 0.009061
-353497 POLN DNA polymerase nu protein-coding 90 0.01073
-353500 BMP8A bone morphogenetic protein 8a protein-coding 23 0.002742
-353514 LILRA5 leukocyte immunoglobulin like receptor A5 protein-coding 73 0.008703
-359710 BPIFB3 BPI fold containing family B member 3 protein-coding 63 0.007511
-359787 DPPA3 developmental pluripotency associated 3 protein-coding 39 0.004649
-359845 RFLNB refilin B protein-coding 25 0.00298
-359948 IRF2BP2 interferon regulatory factor 2 binding protein 2 protein-coding 46 0.005484
-360023 ZBTB41 zinc finger and BTB domain containing 41 protein-coding 135 0.01609
-360030 NANOGNB NANOG neighbor homeobox protein-coding 17 0.002027
-360158 CYCSP5 cytochrome c, somatic pseudogene 5 pseudo 39 0.004649
-360163 CYCTP cytochrome c, testis, pseudogene pseudo 8 0.0009537
-360165 NDUFA4P1 NDUFA4, mitochondrial complex associated pseudogene 1 pseudo 13 0.00155
-360200 TMPRSS9 transmembrane serine protease 9 protein-coding 100 0.01192
-360203 GLT6D1 glycosyltransferase 6 domain containing 1 protein-coding 45 0.005365
-360226 PRSS41 serine protease 41 protein-coding 15 0.001788
-373156 GSTK1 glutathione S-transferase kappa 1 protein-coding 35 0.004173
-373159 STK19B serine/threonine kinase 19B (pseudogene) pseudo 42 0.005007
-373509 USP50 ubiquitin specific peptidase 50 protein-coding 28 0.003338
-373856 USP41 ubiquitin specific peptidase 41 protein-coding 36 0.004292
-373863 DND1 DND microRNA-mediated repression inhibitor 1 protein-coding 18 0.002146
-374286 CDRT1 CMT1A duplicated region transcript 1 protein-coding 28 0.003338
-374291 NDUFS7 NADH:ubiquinone oxidoreductase core subunit S7 protein-coding 31 0.003696
-374308 PTCHD3 patched domain containing 3 protein-coding 152 0.01812
-374354 NHLRC2 NHL repeat containing 2 protein-coding 78 0.009299
-374355 CCDC172 coiled-coil domain containing 172 protein-coding 58 0.006915
-374378 GALNT18 polypeptide N-acetylgalactosaminyltransferase 18 protein-coding 169 0.02015
-374383 NCR3LG1 natural killer cell cytotoxicity receptor 3 ligand 1 protein-coding 15 0.001788
-374393 FAM111B family with sequence similarity 111 member B protein-coding 79 0.009418
-374395 TMEM179B transmembrane protein 179B protein-coding 19 0.002265
-374403 TBC1D10C TBC1 domain family member 10C protein-coding 57 0.006795
-374407 DNAJB13 DnaJ heat shock protein family (Hsp40) member B13 protein-coding 48 0.005722
-374454 KRT77 keratin 77 protein-coding 63 0.007511
-374462 PTPRQ protein tyrosine phosphatase, receptor type Q protein-coding 135 0.01609
-374470 C12orf42 chromosome 12 open reading frame 42 protein-coding 70 0.008345
-374569 ASPG asparaginase protein-coding 68 0.008107
-374618 TEX9 testis expressed 9 protein-coding 47 0.005603
-374650 GOLGA6L5P golgin A6 family-like 5, pseudogene pseudo 4 0.0004769
-374654 KIF7 kinesin family member 7 protein-coding 129 0.01538
-374655 ZNF710 zinc finger protein 710 protein-coding 65 0.007749
-374659 HDDC3 HD domain containing 3 protein-coding 12 0.001431
-374666 WASH3P WAS protein family homolog 3 pseudogene pseudo 2 0.0002384
-374677 WASH4P WAS protein family homolog 4 pseudogene pseudo 19 0.002265
-374739 TEPP testis, prostate and placenta expressed protein-coding 36 0.004292
-374768 SPEM1 spermatid maturation 1 protein-coding 57 0.006795
-374786 EFCAB5 EF-hand calcium binding domain 5 protein-coding 166 0.01979
-374819 LRRC37A3 leucine rich repeat containing 37 member A3 protein-coding 138 0.01645
-374860 ANKRD30B ankyrin repeat domain 30B protein-coding 232 0.02766
-374864 CCDC178 coiled-coil domain containing 178 protein-coding 180 0.02146
-374868 ATP9B ATPase phospholipid transporting 9B (putative) protein-coding 106 0.01264
-374872 PEAK3 PEAK family member 3 protein-coding 28 0.003338
-374875 HSD11B1L hydroxysteroid 11-beta dehydrogenase 1 like protein-coding 17 0.002027
-374877 TEX45 testis expressed 45 protein-coding 35 0.004173
-374879 ZNF699 zinc finger protein 699 protein-coding 76 0.009061
-374882 TMEM205 transmembrane protein 205 protein-coding 16 0.001907
-374887 YJEFN3 YjeF N-terminal domain containing 3 protein-coding 29 0.003457
-374897 SBSN suprabasin protein-coding 80 0.009537
-374899 ZNF829 zinc finger protein 829 protein-coding 80 0.009537
-374900 ZNF568 zinc finger protein 568 protein-coding 134 0.01598
-374907 B3GNT8 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 8 protein-coding 39 0.004649
-374918 IGFL1 IGF like family member 1 protein-coding 17 0.002027
-374920 ZSWIM9 zinc finger SWIM-type containing 9 protein-coding 20 0.002384
-374928 ZNF773 zinc finger protein 773 protein-coding 77 0.00918
-374946 DRAXIN dorsal inhibitory axon guidance protein protein-coding 52 0.006199
-374955 SPATA21 spermatogenesis associated 21 protein-coding 41 0.004888
-374969 SVBP small vasohibin binding protein protein-coding 9 0.001073
-374973 TEX38 testis expressed 38 protein-coding 14 0.001669
-374977 MROH7 maestro heat like repeat family member 7 protein-coding 146 0.01741
-374986 MIGA1 mitoguardin 1 protein-coding 83 0.009895
-375033 PEAR1 platelet endothelial aggregation receptor 1 protein-coding 127 0.01514
-375035 SFT2D2 SFT2 domain containing 2 protein-coding 16 0.001907
-375056 MIA3 MIA family member 3, ER export factor protein-coding 189 0.02253
-375057 STUM stum, mechanosensory transduction mediator homolog protein-coding 15 0.001788
-375061 FAM89A family with sequence similarity 89 member A protein-coding 15 0.001788
-375133 PI4KAP2 phosphatidylinositol 4-kinase alpha pseudogene 2 pseudo 21 0.002504
-375189 PFN4 profilin family member 4 protein-coding 15 0.001788
-375190 FAM228B family with sequence similarity 228 member B protein-coding 27 0.003219
-375248 ANKRD36 ankyrin repeat domain 36 protein-coding 140 0.01669
-375260 WASH2P WAS protein family homolog 2 pseudogene pseudo 42 0.005007
-375287 RBM43 RNA binding motif protein 43 protein-coding 56 0.006676
-375295 LINC01116 long intergenic non-protein coding RNA 1116 ncRNA 8 0.0009537
-375298 CERKL ceramide kinase like protein-coding 95 0.01133
-375307 CATIP ciliogenesis associated TTC17 interacting protein protein-coding 41 0.004888
-375316 RBM44 RNA binding motif protein 44 protein-coding 121 0.01443
-375318 AQP12A aquaporin 12A protein-coding 31 0.003696
-375323 LHFPL4 LHFPL tetraspan subfamily member 4 protein-coding 39 0.004649
-375337 TOPAZ1 testis and ovary specific PAZ domain containing 1 protein-coding 93 0.01109
-375341 C3orf62 chromosome 3 open reading frame 62 protein-coding 34 0.004053
-375346 STIMATE STIM activating enhancer protein-coding 23 0.002742
-375387 NRROS negative regulator of reactive oxygen species protein-coding 91 0.01085
-375444 C5orf34 chromosome 5 open reading frame 34 protein-coding 69 0.008226
-375449 MAST4 microtubule associated serine/threonine kinase family member 4 protein-coding 196 0.02337
-375484 SIMC1 SUMO interacting motifs containing 1 protein-coding 44 0.005246
-375519 GJB7 gap junction protein beta 7 protein-coding 22 0.002623
-375567 VWC2 von Willebrand factor C domain containing 2 protein-coding 47 0.005603
-375593 TRIM73 tripartite motif containing 73 protein-coding 16 0.001907
-375607 NAT16 N-acetyltransferase 16 (putative) protein-coding 32 0.003815
-375611 SLC26A5 solute carrier family 26 member 5 protein-coding 107 0.01276
-375612 LHFPL3 LHFPL tetraspan subfamily member 3 protein-coding 90 0.01073
-375616 KCP kielin/chordin-like protein protein-coding 88 0.01049
-375686 SPATC1 spermatogenesis and centriole associated 1 protein-coding 80 0.009537
-375704 ENHO energy homeostasis associated protein-coding 15 0.001788
-375743 PTAR1 protein prenyltransferase alpha subunit repeat containing 1 protein-coding 37 0.004411
-375748 ERCC6L2 ERCC excision repair 6 like 2 protein-coding 120 0.01431
-375757 SWI5 SWI5 homologous recombination repair protein protein-coding 41 0.004888
-375759 C9orf50 chromosome 9 open reading frame 50 protein-coding 35 0.004173
-375775 PNPLA7 patatin like phospholipase domain containing 7 protein-coding 153 0.01824
-375790 AGRN agrin protein-coding 152 0.01812
-375791 CYSRT1 cysteine rich tail 1 protein-coding 12 0.001431
-375940 DMBT1P1 deleted in malignant brain tumors 1 pseudogene 1 pseudo 38 0.00453
-376132 LRRC10 leucine rich repeat containing 10 protein-coding 44 0.005246
-376267 RAB15 RAB15, member RAS oncogene family protein-coding 17 0.002027
-376412 RNF126P1 ring finger protein 126 pseudogene 1 pseudo 43 0.005126
-376497 SLC27A1 solute carrier family 27 member 1 protein-coding 72 0.008584
-376693 RPS10P7 ribosomal protein S10 pseudogene 7 pseudo 19 0.002265
-376940 ZC3H6 zinc finger CCCH-type containing 6 protein-coding 127 0.01514
-377007 KLHL30 kelch like family member 30 protein-coding 57 0.006795
-377047 PRSS45 serine protease 45 protein-coding 24 0.002861
-377630 USP17L2 ubiquitin specific peptidase 17-like family member 2 protein-coding 73 0.008703
-377677 CA13 carbonic anhydrase 13 protein-coding 31 0.003696
-377841 ENTPD8 ectonucleoside triphosphate diphosphohydrolase 8 protein-coding 42 0.005007
-378108 TRIM74 tripartite motif containing 74 protein-coding 17 0.002027
-378708 CENPS centromere protein S protein-coding 9 0.001073
-378807 CATSPER4 cation channel sperm associated 4 protein-coding 54 0.006438
-378832 COL18A1-AS1 COL18A1 antisense RNA 1 ncRNA 24 0.002861
-378884 NHLRC1 NHL repeat containing E3 ubiquitin protein ligase 1 protein-coding 57 0.006795
-378925 RNF148 ring finger protein 148 protein-coding 64 0.00763
-378938 MALAT1 metastasis associated lung adenocarcinoma transcript 1 (non-protein coding) ncRNA 374 0.04459
-378950 RBMY1E RNA binding motif protein, Y-linked, family 1, member E protein-coding 6 0.0007153
-386617 KCTD8 potassium channel tetramerization domain containing 8 protein-coding 142 0.01693
-386618 KCTD4 potassium channel tetramerization domain containing 4 protein-coding 23 0.002742
-386653 IL31 interleukin 31 protein-coding 26 0.0031
-386672 KRTAP10-4 keratin associated protein 10-4 protein-coding 67 0.007988
-386674 KRTAP10-6 keratin associated protein 10-6 protein-coding 45 0.005365
-386675 KRTAP10-7 keratin associated protein 10-7 protein-coding 59 0.007034
-386676 KRTAP10-9 keratin associated protein 10-9 protein-coding 48 0.005722
-386677 KRTAP10-1 keratin associated protein 10-1 protein-coding 33 0.003934
-386678 KRTAP10-11 keratin associated protein 10-11 protein-coding 53 0.006319
-386679 KRTAP10-2 keratin associated protein 10-2 protein-coding 21 0.002504
-386680 KRTAP10-5 keratin associated protein 10-5 protein-coding 46 0.005484
-386681 KRTAP10-8 keratin associated protein 10-8 protein-coding 34 0.004053
-386682 KRTAP10-3 keratin associated protein 10-3 protein-coding 29 0.003457
-386683 KRTAP12-3 keratin associated protein 12-3 protein-coding 19 0.002265
-386684 KRTAP12-4 keratin associated protein 12-4 protein-coding 18 0.002146
-386685 KRTAP10-12 keratin associated protein 10-12 protein-coding 28 0.003338
-386724 AMIGO3 adhesion molecule with Ig like domain 3 protein-coding 72 0.008584
-386746 MRGPRG MAS related GPR family member G protein-coding 6 0.0007153
-386757 SLC6A10P solute carrier family 6 member 10, pseudogene pseudo 78 0.009299
-387032 ZKSCAN4 zinc finger with KRAB and SCAN domains 4 protein-coding 52 0.006199
-387036 GUSBP2 glucuronidase, beta pseudogene 2 pseudo 20 0.002384
-387082 SUMO4 small ubiquitin-like modifier 4 protein-coding 7 0.0008345
-387103 CENPW centromere protein W protein-coding 14 0.001669
-387104 SOGA3 SOGA family member 3 protein-coding 165 0.01967
-387111 LINC00222 long intergenic non-protein coding RNA 222 ncRNA 3 0.0003577
-387119 CEP85L centrosomal protein 85 like protein-coding 105 0.01252
-387129 NPSR1 neuropeptide S receptor 1 protein-coding 74 0.008822
-387254 SLC7A5P2 solute carrier family 7 member 5 pseudogene 2 pseudo 52 0.006199
-387263 C6orf120 chromosome 6 open reading frame 120 protein-coding 16 0.001907
-387264 KRTAP5-1 keratin associated protein 5-1 protein-coding 37 0.004411
-387266 KRTAP5-3 keratin associated protein 5-3 protein-coding 38 0.00453
-387267 KRTAP5-4 keratin associated protein 5-4 protein-coding 34 0.004053
-387273 KRTAP5-10 keratin associated protein 5-10 protein-coding 41 0.004888
-387328 ZNF322P1 zinc finger protein 322 pseudogene 1 pseudo 38 0.00453
-387332 TBPL2 TATA-box binding protein like 2 protein-coding 48 0.005722
-387338 NSUN4 NOP2/Sun RNA methyltransferase family member 4 protein-coding 28 0.003338
-387357 THEMIS thymocyte selection associated protein-coding 137 0.01633
-387496 RASL11A RAS like family 11 member A protein-coding 30 0.003577
-387509 GPR153 G protein-coupled receptor 153 protein-coding 49 0.005842
-387522 TMEM189-UBE2V1 TMEM189-UBE2V1 readthrough protein-coding 19 0.002265
-387590 TPTEP1 TPTE pseudogene 1 pseudo 46 0.005484
-387597 ILDR2 immunoglobulin like domain containing receptor 2 protein-coding 95 0.01133
-387601 SLC22A25 solute carrier family 22 member 25 protein-coding 86 0.01025
-387638 C10orf113 chromosome 10 open reading frame 113 protein-coding 20 0.002384
-387640 SKIDA1 SKI/DACH domain containing 1 protein-coding 78 0.009299
-387644 FAM238C family with sequence similarity 238 member C (non-protein coding) ncRNA 3 0.0003577
-387647 PTCHD3P1 patched domain containing 3 pseudogene 1 pseudo 13 0.00155
-387680 WASHC2A WASH complex subunit 2A protein-coding 21 0.002504
-387694 SH2D4B SH2 domain containing 4B protein-coding 47 0.005603
-387695 C10orf99 chromosome 10 open reading frame 99 protein-coding 13 0.00155
-387700 SLC16A12 solute carrier family 16 member 12 protein-coding 49 0.005842
-387707 CC2D2B coiled-coil and C2 domain containing 2B protein-coding 65 0.007749
-387712 ENO4 enolase 4 protein-coding 26 0.0031
-387715 ARMS2 age-related maculopathy susceptibility 2 protein-coding 11 0.001311
-387718 TEX36 testis expressed 36 protein-coding 27 0.003219
-387733 IFITM5 interferon induced transmembrane protein 5 protein-coding 22 0.002623
-387748 OR56B1 olfactory receptor family 56 subfamily B member 1 protein-coding 63 0.007511
-387751 GVINP1 GTPase, very large interferon inducible pseudogene 1 pseudo 72 0.008584
-387755 INSC INSC, spindle orientation adaptor protein protein-coding 116 0.01383
-387758 FIBIN fin bud initiation factor homolog (zebrafish) protein-coding 26 0.0031
-387763 C11orf96 chromosome 11 open reading frame 96 protein-coding 1 0.0001192
-387775 SLC22A10 solute carrier family 22 member 10 protein-coding 79 0.009418
-387778 SPDYC speedy/RINGO cell cycle regulator family member C protein-coding 48 0.005722
-387787 LIPT2 lipoyl(octanoyl) transferase 2 protein-coding 5 0.0005961
-387804 VSTM5 V-set and transmembrane domain containing 5 protein-coding 11 0.001311
-387836 CLEC2A C-type lectin domain family 2 member A protein-coding 11 0.001311
-387837 CLEC12B C-type lectin domain family 12 member B protein-coding 36 0.004292
-387849 REP15 RAB15 effector protein protein-coding 12 0.001431
-387856 CCDC184 coiled-coil domain containing 184 protein-coding 26 0.0031
-387882 C12orf75 chromosome 12 open reading frame 75 protein-coding 3 0.0003577
-387885 CFAP73 cilia and flagella associated protein 73 protein-coding 98 0.01168
-387890 TMEM233 transmembrane protein 233 protein-coding 8 0.0009537
-387893 KMT5A lysine methyltransferase 5A protein-coding 38 0.00453
-387911 C1QTNF9B C1q and TNF related 9B protein-coding 50 0.005961
-387914 SHISA2 shisa family member 2 protein-coding 37 0.004411
-387921 NHLRC3 NHL repeat containing 3 protein-coding 44 0.005246
-387923 SERP2 stress associated endoplasmic reticulum protein family member 2 protein-coding 8 0.0009537
-387934 FABP5P1 fatty acid binding protein 5 pseudogene 1 pseudo 14 0.001669
-387978 LINC01551 long intergenic non-protein coding RNA 1551 ncRNA 23 0.002742
-387990 TOMM20L translocase of outer mitochondrial membrane 20 like protein-coding 10 0.001192
-388007 SERPINA13P serpin family A member 13, pseudogene pseudo 58 0.006915
-388015 RTL1 retrotransposon Gag like 1 protein-coding 155 0.01848
-388021 TMEM179 transmembrane protein 179 protein-coding 16 0.001907
-388112 NANOGP8 Nanog homeobox retrogene P8 protein-coding 57 0.006795
-388115 CCDC9B coiled-coil domain containing 9B protein-coding 73 0.008703
-388121 TNFAIP8L3 TNF alpha induced protein 8 like 3 protein-coding 27 0.003219
-388125 C2CD4B C2 calcium dependent domain containing 4B protein-coding 4 0.0004769
-388135 C15orf59 chromosome 15 open reading frame 59 protein-coding 49 0.005842
-388152 GOLGA2P7 golgin A2 pseudogene 7 pseudo 1 0.0001192
-388165 UBE2Q2P1 ubiquitin conjugating enzyme E2 Q2 pseudogene 1 pseudo 26 0.0031
-388182 SPATA41 spermatogenesis associated 41 (non-protein coding) ncRNA 13 0.00155
-388199 PRR25 proline rich 25 protein-coding 35 0.004173
-388228 SBK1 SH3 domain binding kinase 1 protein-coding 26 0.0031
-388255 IGHV3OR16-8 immunoglobulin heavy variable 3/OR16-8 (non-functional) other 52 0.006199
-388272 C16orf87 chromosome 16 open reading frame 87 protein-coding 18 0.002146
-388284 C16orf86 chromosome 16 open reading frame 86 protein-coding 24 0.002861
-388323 GLTPD2 glycolipid transfer protein domain containing 2 protein-coding 16 0.001907
-388324 INCA1 inhibitor of CDK, cyclin A1 interacting protein 1 protein-coding 16 0.001907
-388325 SCIMP SLP adaptor and CSK interacting membrane protein protein-coding 11 0.001311
-388327 C17orf100 chromosome 17 open reading frame 100 protein-coding 2 0.0002384
-388333 SPDYE4 speedy/RINGO cell cycle regulator family member E4 protein-coding 35 0.004173
-388335 TMEM220 transmembrane protein 220 protein-coding 9 0.001073
-388336 SHISA6 shisa family member 6 protein-coding 37 0.004411
-388341 LRRC75A leucine rich repeat containing 75A protein-coding 27 0.003219
-388364 TMIGD1 transmembrane and immunoglobulin domain containing 1 protein-coding 36 0.004292
-388372 CCL4L1 C-C motif chemokine ligand 4 like 1 protein-coding 2 0.0002384
-388381 C17orf98 chromosome 17 open reading frame 98 protein-coding 22 0.002623
-388387 LINC00671 long intergenic non-protein coding RNA 671 ncRNA 13 0.00155
-388389 CCDC103 coiled-coil domain containing 103 protein-coding 22 0.002623
-388394 RPRML reprimo like protein-coding 5 0.0005961
-388403 YPEL2 yippee like 2 protein-coding 22 0.002623
-388407 C17orf82 chromosome 17 open reading frame 82 protein-coding 15 0.001788
-388419 BTBD17 BTB domain containing 17 protein-coding 32 0.003815
-388428 PVALEF parvalbumin like EF-hand containing protein-coding 10 0.001192
-388468 POTEC POTE ankyrin domain family member C protein-coding 172 0.02051
-388503 C3P1 complement component 3 precursor pseudogene pseudo 95 0.01133
-388507 ZNF788P zinc finger family member 788, pseudogene protein-coding 55 0.006557
-388512 CLEC17A C-type lectin domain containing 17A protein-coding 65 0.007749
-388523 ZNF728 zinc finger protein 728 protein-coding 87 0.01037
-388524 RPSAP58 ribosomal protein SA pseudogene 58 protein-coding 36 0.004292
-388531 RGS9BP regulator of G protein signaling 9 binding protein protein-coding 109 0.01299
-388533 KRTDAP keratinocyte differentiation associated protein protein-coding 12 0.001431
-388536 ZNF790 zinc finger protein 790 protein-coding 94 0.01121
-388551 CEACAM16 carcinoembryonic antigen related cell adhesion molecule 16 protein-coding 38 0.00453
-388552 BLOC1S3 biogenesis of lysosomal organelles complex 1 subunit 3 protein-coding 4 0.0004769
-388555 IGFL3 IGF like family member 3 protein-coding 15 0.001788
-388558 ZNF808 zinc finger protein 808 protein-coding 132 0.01574
-388559 ZNF888 zinc finger protein 888 protein-coding 8 0.0009537
-388561 ZNF761 zinc finger protein 761 protein-coding 188 0.02241
-388566 ZNF470 zinc finger protein 470 protein-coding 117 0.01395
-388567 ZNF749 zinc finger protein 749 protein-coding 68 0.008107
-388569 ZNF324B zinc finger protein 324B protein-coding 59 0.007034
-388581 C1QTNF12 C1q and TNF related 12 protein-coding 18 0.002146
-388585 HES5 hes family bHLH transcription factor 5 protein-coding 2 0.0002384
-388588 SMIM1 small integral membrane protein 1 (Vel blood group) protein-coding 6 0.0007153
-388591 RNF207 ring finger protein 207 protein-coding 49 0.005842
-388595 TMEM82 transmembrane protein 82 protein-coding 47 0.005603
-388611 CD164L2 CD164 molecule like 2 protein-coding 12 0.001431
-388633 LDLRAD1 low density lipoprotein receptor class A domain containing 1 protein-coding 22 0.002623
-388646 GBP7 guanylate binding protein 7 protein-coding 77 0.00918
-388649 C1orf146 chromosome 1 open reading frame 146 protein-coding 23 0.002742
-388650 FAM69A family with sequence similarity 69 member A protein-coding 37 0.004411
-388662 SLC6A17 solute carrier family 6 member 17 protein-coding 107 0.01276
-388677 NOTCH2NL notch 2 N-terminal like protein-coding 45 0.005365
-388685 LINC01138 long intergenic non-protein coding RNA 1138 ncRNA 3 0.0003577
-388695 LYSMD1 LysM domain containing 1 protein-coding 27 0.003219
-388697 HRNR hornerin protein-coding 372 0.04435
-388698 FLG2 filaggrin family member 2 protein-coding 349 0.04161
-388701 C1orf189 chromosome 1 open reading frame 189 protein-coding 15 0.001788
-388714 FMO6P flavin containing monooxygenase 6 pseudogene pseudo 22 0.002623
-388719 LINC00272 long intergenic non-protein coding RNA 272 ncRNA 6 0.0007153
-388722 C1orf53 chromosome 1 open reading frame 53 protein-coding 13 0.00155
-388730 TMEM81 transmembrane protein 81 protein-coding 34 0.004053
-388743 CAPN8 calpain 8 protein-coding 36 0.004292
-388753 COA6 cytochrome c oxidase assembly factor 6 protein-coding 21 0.002504
-388759 C1orf229 chromosome 1 open reading frame 229 protein-coding 6 0.0007153
-388789 SMIM26 small integral membrane protein 26 protein-coding 3 0.0003577
-388795 EFCAB8 EF-hand calcium binding domain 8 protein-coding 39 0.004649
-388799 FAM209B family with sequence similarity 209 member B protein-coding 43 0.005126
-388815 MIR99AHG mir-99a-let-7c cluster host gene ncRNA 20 0.002384
-388818 KRTAP26-1 keratin associated protein 26-1 protein-coding 46 0.005484
-388886 LRRC75B leucine rich repeat containing 75B protein-coding 26 0.0031
-388910 LINC00207 long intergenic non-protein coding RNA 207 ncRNA 33 0.003934
-388931 MFSD2B major facilitator superfamily domain containing 2B protein-coding 55 0.006557
-388939 C2orf71 chromosome 2 open reading frame 71 protein-coding 168 0.02003
-388946 TMEM247 transmembrane protein 247 protein-coding 16 0.001907
-388948 LINC01118 long intergenic non-protein coding RNA 1118 ncRNA 1 0.0001192
-388951 TSPYL6 TSPY like 6 protein-coding 60 0.007153
-388960 C2orf78 chromosome 2 open reading frame 78 protein-coding 117 0.01395
-388962 BOLA3 bolA family member 3 protein-coding 15 0.001788
-388963 C2orf81 chromosome 2 open reading frame 81 protein-coding 35 0.004173
-388965 FUNDC2P2 FUN14 domain containing 2 pseudogene 2 pseudo 95 0.01133
-388969 C2orf68 chromosome 2 open reading frame 68 protein-coding 20 0.002384
-389015 SLC9A4 solute carrier family 9 member A4 protein-coding 158 0.01884
-389043 LINC01120 long intergenic non-protein coding RNA 1120 ncRNA 1 0.0001192
-389058 SP5 Sp5 transcription factor protein-coding 22 0.002623
-389072 PLEKHM3 pleckstrin homology domain containing M3 protein-coding 85 0.01013
-389073 C2orf80 chromosome 2 open reading frame 80 protein-coding 39 0.004649
-389075 RESP18 regulated endocrine specific protein 18 protein-coding 20 0.002384
-389084 SNORC secondary ossification center associated regulator of chondrocyte maturation protein-coding 3 0.0003577
-389090 OR6B2 olfactory receptor family 6 subfamily B member 2 protein-coding 52 0.006199
-389114 ZNF662 zinc finger protein 662 protein-coding 65 0.007749
-389118 CDHR4 cadherin related family member 4 protein-coding 54 0.006438
-389119 FAM212A family with sequence similarity 212 member A protein-coding 25 0.00298
-389123 IQCF2 IQ motif containing F2 protein-coding 29 0.003457
-389124 IQCF5 IQ motif containing F5 protein-coding 3 0.0003577
-389136 VGLL3 vestigial like family member 3 protein-coding 71 0.008464
-389151 PRR23B proline rich 23B protein-coding 87 0.01037
-389152 PRR23C proline rich 23C protein-coding 41 0.004888
-389158 PLSCR5 phospholipid scramblase family member 5 protein-coding 52 0.006199
-389161 ANKUB1 ankyrin repeat and ubiquitin domain containing 1 protein-coding 39 0.004649
-389170 LEKR1 leucine, glutamate and lysine rich 1 protein-coding 58 0.006915
-389177 TMEM212 transmembrane protein 212 protein-coding 13 0.00155
-389197 C4orf50 chromosome 4 open reading frame 50 protein-coding 57 0.006795
-389203 SMIM20 small integral membrane protein 20 protein-coding 4 0.0004769
-389206 BEND4 BEN domain containing 4 protein-coding 81 0.009657
-389207 GRXCR1 glutaredoxin and cysteine rich domain containing 1 protein-coding 108 0.01288
-389208 TMPRSS11F transmembrane serine protease 11F protein-coding 100 0.01192
-389257 LRRC14B leucine rich repeat containing 14B protein-coding 50 0.005961
-389289 ANXA2R annexin A2 receptor protein-coding 19 0.002265
-389320 TEX43 testis expressed 43 protein-coding 20 0.002384
-389333 PROB1 proline rich basic protein 1 protein-coding 38 0.00453
-389336 C5orf46 chromosome 5 open reading frame 46 protein-coding 11 0.001311
-389337 ARHGEF37 Rho guanine nucleotide exchange factor 37 protein-coding 67 0.007988
-389362 PSMG4 proteasome assembly chaperone 4 protein-coding 8 0.0009537
-389376 SFTA2 surfactant associated 2 protein-coding 6 0.0007153
-389383 CLPSL2 colipase like 2 protein-coding 10 0.001192
-389384 C6orf222 chromosome 6 open reading frame 222 protein-coding 91 0.01085
-389396 GLYATL3 glycine-N-acyltransferase like 3 protein-coding 27 0.003219
-389400 GFRAL GDNF family receptor alpha like protein-coding 118 0.01407
-389421 LIN28B lin-28 homolog B protein-coding 41 0.004888
-389432 SAMD5 sterile alpha motif domain containing 5 protein-coding 11 0.001311
-389434 IYD iodotyrosine deiodinase protein-coding 30 0.003577
-389472 RPS26P32 ribosomal protein S26 pseudogene 32 pseudo 11 0.001311
-389493 NUPR2 nuclear protein 2, transcriptional regulator protein-coding 2 0.0002384
-389524 GTF2IRD2B GTF2I repeat domain containing 2B protein-coding 51 0.00608
-389541 LAMTOR4 late endosomal/lysosomal adaptor, MAPK and MTOR activator 4 protein-coding 13 0.00155
-389549 FEZF1 FEZ family zinc finger 1 protein-coding 74 0.008822
-389558 FAM180A family with sequence similarity 180 member A protein-coding 32 0.003815
-389610 XKR5 XK related 5 protein-coding 54 0.006438
-389634 LINC00937 long intergenic non-protein coding RNA 937 ncRNA 11 0.001311
-389643 NUGGC nuclear GTPase, germinal center associated protein-coding 95 0.01133
-389649 C8orf86 chromosome 8 open reading frame 86 protein-coding 22 0.002623
-389658 ALKAL1 ALK and LTK ligand 1 protein-coding 17 0.002027
-389668 XKR9 XK related 9 protein-coding 65 0.007749
-389676 C8orf87 chromosome 8 open reading frame 87 protein-coding 5 0.0005961
-389677 RBM12B RNA binding motif protein 12B protein-coding 108 0.01288
-389690 MROH5 maestro heat like repeat family member 5 protein-coding 26 0.0031
-389692 MAFA MAF bZIP transcription factor A protein-coding 7 0.0008345
-389715 FAM205BP transmembrane protein C9orf144B pseudogene pseudo 85 0.01013
-389730 SPATA31A6 SPATA31 subfamily A member 6 protein-coding 196 0.02337
-389763 SPATA31D1 SPATA31 subfamily D member 1 protein-coding 316 0.03767
-389766 C9orf153 chromosome 9 open reading frame 153 protein-coding 23 0.002742
-389792 IER5L immediate early response 5 like protein-coding 6 0.0007153
-389799 CFAP77 cilia and flagella associated protein 77 protein-coding 51 0.00608
-389812 LCN15 lipocalin 15 protein-coding 14 0.001669
-389813 AJM1 apical junction component 1 homolog protein-coding 48 0.005722
-389816 LRRC26 leucine rich repeat containing 26 protein-coding 2 0.0002384
-389827 MYMK myomaker, myoblast fusion factor protein-coding 28 0.003338
-389840 MAP3K15 mitogen-activated protein kinase kinase kinase 15 protein-coding 155 0.01848
-389852 SPACA5 sperm acrosome associated 5 protein-coding 8 0.0009537
-389856 USP27X ubiquitin specific peptidase 27, X-linked protein-coding 40 0.004769
-389860 PAGE2B PAGE family member 2B protein-coding 14 0.001669
-389874 ZCCHC13 zinc finger CCHC-type containing 13 protein-coding 37 0.004411
-389898 UBE2NL ubiquitin conjugating enzyme E2 N like (gene/pseudogene) protein-coding 54 0.006438
-389941 C1QL3 complement C1q like 3 protein-coding 31 0.003696
-390010 NKX1-2 NK1 homeobox 2 protein-coding 12 0.001431
-390036 OR52K1 olfactory receptor family 52 subfamily K member 1 protein-coding 65 0.007749
-390037 OR52I1 olfactory receptor family 52 subfamily I member 1 protein-coding 40 0.004769
-390038 OR51D1 olfactory receptor family 51 subfamily D member 1 protein-coding 78 0.009299
-390053 OR52A4P olfactory receptor family 52 subfamily A member 4 pseudogene pseudo 48 0.005722
-390054 OR52A5 olfactory receptor family 52 subfamily A member 5 protein-coding 94 0.01121
-390058 OR51B6 olfactory receptor family 51 subfamily B member 6 protein-coding 68 0.008107
-390059 OR51M1 olfactory receptor family 51 subfamily M member 1 protein-coding 79 0.009418
-390061 OR51Q1 olfactory receptor family 51 subfamily Q member 1 (gene/pseudogene) protein-coding 85 0.01013
-390063 OR51I1 olfactory receptor family 51 subfamily I member 1 protein-coding 54 0.006438
-390064 OR51I2 olfactory receptor family 51 subfamily I member 2 protein-coding 76 0.009061
-390066 OR52D1 olfactory receptor family 52 subfamily D member 1 protein-coding 62 0.007392
-390067 OR52H1 olfactory receptor family 52 subfamily H member 1 protein-coding 54 0.006438
-390072 OR52N4 olfactory receptor family 52 subfamily N member 4 (gene/pseudogene) protein-coding 68 0.008107
-390075 OR52N5 olfactory receptor family 52 subfamily N member 5 protein-coding 60 0.007153
-390077 OR52N2 olfactory receptor family 52 subfamily N member 2 protein-coding 56 0.006676
-390078 OR52E6 olfactory receptor family 52 subfamily E member 6 protein-coding 64 0.00763
-390079 OR52E8 olfactory receptor family 52 subfamily E member 8 protein-coding 75 0.008941
-390081 OR52E4 olfactory receptor family 52 subfamily E member 4 protein-coding 85 0.01013
-390083 OR56A3 olfactory receptor family 56 subfamily A member 3 protein-coding 77 0.00918
-390093 OR10A6 olfactory receptor family 10 subfamily A member 6 (gene/pseudogene) protein-coding 58 0.006915
-390110 ACCSL 1-aminocyclopropane-1-carboxylate synthase homolog (inactive) like protein-coding 92 0.01097
-390113 OR4X1 olfactory receptor family 4 subfamily X member 1 (gene/pseudogene) protein-coding 66 0.007868
-390142 OR5D13 olfactory receptor family 5 subfamily D member 13 (gene/pseudogene) protein-coding 142 0.01693
-390144 OR5D16 olfactory receptor family 5 subfamily D member 16 protein-coding 118 0.01407
-390148 OR5W2 olfactory receptor family 5 subfamily W member 2 protein-coding 123 0.01466
-390151 OR8H2 olfactory receptor family 8 subfamily H member 2 protein-coding 137 0.01633
-390152 OR8H3 olfactory receptor family 8 subfamily H member 3 protein-coding 116 0.01383
-390154 OR5T3 olfactory receptor family 5 subfamily T member 3 protein-coding 125 0.0149
-390155 OR5T1 olfactory receptor family 5 subfamily T member 1 protein-coding 100 0.01192
-390157 OR8K1 olfactory receptor family 8 subfamily K member 1 protein-coding 92 0.01097
-390162 OR5M9 olfactory receptor family 5 subfamily M member 9 protein-coding 84 0.01001
-390167 OR5M10 olfactory receptor family 5 subfamily M member 10 protein-coding 83 0.009895
-390168 OR5M1 olfactory receptor family 5 subfamily M member 1 protein-coding 87 0.01037
-390174 OR9G1 olfactory receptor family 9 subfamily G member 1 protein-coding 93 0.01109
-390181 OR5AK2 olfactory receptor family 5 subfamily AK member 2 protein-coding 52 0.006199
-390190 OR5B2 olfactory receptor family 5 subfamily B member 2 protein-coding 63 0.007511
-390191 OR5B12 olfactory receptor family 5 subfamily B member 12 protein-coding 91 0.01085
-390195 OR5AN1 olfactory receptor family 5 subfamily AN member 1 protein-coding 50 0.005961
-390197 OR4D10 olfactory receptor family 4 subfamily D member 10 protein-coding 85 0.01013
-390199 OR4D9 olfactory receptor family 4 subfamily D member 9 protein-coding 59 0.007034
-390201 OR10V1 olfactory receptor family 10 subfamily V member 1 protein-coding 49 0.005842
-390205 LRRC10B leucine rich repeat containing 10B protein-coding 2 0.0002384
-390212 GPR152 G protein-coupled receptor 152 protein-coding 47 0.005603
-390231 TRIM77 tripartite motif containing 77 protein-coding 52 0.006199
-390243 IZUMO1R IZUMO1 receptor, JUNO protein-coding 30 0.003577
-390245 KDM4E lysine demethylase 4E protein-coding 45 0.005365
-390259 BSX brain specific homeobox protein-coding 56 0.006676
-390260 OR6X1 olfactory receptor family 6 subfamily X member 1 protein-coding 61 0.007272
-390261 OR6M1 olfactory receptor family 6 subfamily M member 1 protein-coding 75 0.008941
-390264 OR10G4 olfactory receptor family 10 subfamily G member 4 protein-coding 79 0.009418
-390265 OR10G7 olfactory receptor family 10 subfamily G member 7 protein-coding 104 0.0124
-390271 OR8B3 olfactory receptor family 8 subfamily B member 3 protein-coding 51 0.00608
-390275 OR8A1 olfactory receptor family 8 subfamily A member 1 protein-coding 59 0.007034
-390321 OR6C1 olfactory receptor family 6 subfamily C member 1 protein-coding 59 0.007034
-390323 OR6C75 olfactory receptor family 6 subfamily C member 75 protein-coding 61 0.007272
-390326 OR6C76 olfactory receptor family 6 subfamily C member 76 protein-coding 46 0.005484
-390327 OR6C70 olfactory receptor family 6 subfamily C member 70 protein-coding 51 0.00608
-390429 OR4N2 olfactory receptor family 4 subfamily N member 2 protein-coding 141 0.01681
-390431 OR4K2 olfactory receptor family 4 subfamily K member 2 protein-coding 123 0.01466
-390433 OR4K13 olfactory receptor family 4 subfamily K member 13 protein-coding 73 0.008703
-390436 OR4K17 olfactory receptor family 4 subfamily K member 17 protein-coding 87 0.01037
-390437 OR4N5 olfactory receptor family 4 subfamily N member 5 protein-coding 79 0.009418
-390439 OR11G2 olfactory receptor family 11 subfamily G member 2 protein-coding 75 0.008941
-390442 OR11H4 olfactory receptor family 11 subfamily H member 4 protein-coding 58 0.006915
-390443 RNASE9 ribonuclease A family member 9 (inactive) protein-coding 36 0.004292
-390445 OR5AU1 olfactory receptor family 5 subfamily AU member 1 protein-coding 45 0.005365
-390502 SERPINA2 serpin family A member 2 (gene/pseudogene) protein-coding 270 0.03219
-390530 IGHV1OR21-1 immunoglobulin heavy variable 1/OR21-1 (non-functional) pseudo 113 0.01347
-390531 IGHV1OR15-9 immunoglobulin heavy variable 1/OR15-9 (non-functional) pseudo 53 0.006319
-390535 GOLGA8EP golgin A8 family member E, pseudogene pseudo 8 0.0009537
-390538 OR4M2 olfactory receptor family 4 subfamily M member 2 protein-coding 143 0.01705
-390594 KBTBD13 kelch repeat and BTB domain containing 13 protein-coding 12 0.001431
-390595 UBAP1L ubiquitin associated protein 1 like protein-coding 15 0.001788
-390598 SKOR1 SKI family transcriptional corepressor 1 protein-coding 81 0.009657
-390616 ANKRD34C ankyrin repeat domain 34C protein-coding 47 0.005603
-390637 GDPGP1 GDP-D-glucose phosphorylase 1 protein-coding 37 0.004411
-390648 OR4F6 olfactory receptor family 4 subfamily F member 6 protein-coding 62 0.007392
-390649 OR4F15 olfactory receptor family 4 subfamily F member 15 protein-coding 55 0.006557
-390664 C1QTNF8 C1q and TNF related 8 protein-coding 15 0.001788
-390667 PTX4 pentraxin 4 protein-coding 58 0.006915
-390748 PABPN1L poly(A) binding protein nuclear 1 like, cytoplasmic protein-coding 25 0.00298
-390790 ARL5C ADP ribosylation factor like GTPase 5C protein-coding 11 0.001311
-390792 KRT39 keratin 39 protein-coding 58 0.006915
-390874 ONECUT3 one cut homeobox 3 protein-coding 17 0.002027
-390882 OR7G2 olfactory receptor family 7 subfamily G member 2 protein-coding 45 0.005365
-390883 OR7G3 olfactory receptor family 7 subfamily G member 3 protein-coding 44 0.005246
-390892 OR7A10 olfactory receptor family 7 subfamily A member 10 protein-coding 50 0.005961
-390916 NUDT19 nudix hydrolase 19 protein-coding 65 0.007749
-390927 ZNF793 zinc finger protein 793 protein-coding 64 0.00763
-390928 ACP7 acid phosphatase 7, tartrate resistant (putative) protein-coding 57 0.006795
-390940 PINLYP phospholipase A2 inhibitor and LY6/PLAUR domain containing protein-coding 4 0.0004769
-390980 ZNF805 zinc finger protein 805 protein-coding 65 0.007749
-390992 HES3 hes family bHLH transcription factor 3 protein-coding 7 0.0008345
-390999 PRAMEF12 PRAME family member 12 protein-coding 97 0.01156
-391003 PRAMEF18 PRAME family member 18 protein-coding 31 0.003696
-391004 PRAMEF17 PRAME family member 17 protein-coding 33 0.003934
-391013 PLA2G2C phospholipase A2 group IIC protein-coding 14 0.001669
-391051 UOX urate oxidase (pseudogene) pseudo 6 0.0007153
-391059 FRRS1 ferric chelate reductase 1 protein-coding 59 0.007034
-391104 VHLL VHL like protein-coding 17 0.002027
-391107 OR10K2 olfactory receptor family 10 subfamily K member 2 protein-coding 97 0.01156
-391109 OR10K1 olfactory receptor family 10 subfamily K member 1 protein-coding 99 0.0118
-391112 OR6Y1 olfactory receptor family 6 subfamily Y member 1 protein-coding 92 0.01097
-391114 OR6K3 olfactory receptor family 6 subfamily K member 3 protein-coding 97 0.01156
-391123 VSIG8 V-set and immunoglobulin domain containing 8 protein-coding 35 0.004173
-391189 OR11L1 olfactory receptor family 11 subfamily L member 1 protein-coding 108 0.01288
-391190 OR2L8 olfactory receptor family 2 subfamily L member 8 (gene/pseudogene) protein-coding 126 0.01502
-391191 OR2AK2 olfactory receptor family 2 subfamily AK member 2 protein-coding 115 0.01371
-391192 OR2L3 olfactory receptor family 2 subfamily L member 3 protein-coding 106 0.01264
-391194 OR2M2 olfactory receptor family 2 subfamily M member 2 protein-coding 127 0.01514
-391195 OR2T33 olfactory receptor family 2 subfamily T member 33 protein-coding 163 0.01943
-391196 OR2M7 olfactory receptor family 2 subfamily M member 7 protein-coding 110 0.01311
-391211 OR2G6 olfactory receptor family 2 subfamily G member 6 protein-coding 132 0.01574
-391253 SPINT4 serine peptidase inhibitor, Kunitz type 4 protein-coding 9 0.001073
-391267 ANKRD20A11P ankyrin repeat domain 20 family member A11, pseudogene pseudo 38 0.00453
-391356 PTRHD1 peptidyl-tRNA hydrolase domain containing 1 protein-coding 14 0.001669
-391365 SULT6B1 sulfotransferase family 6B member 1 protein-coding 46 0.005484
-391475 DYTN dystrotelin protein-coding 97 0.01156
-391634 HSP90AB2P heat shock protein 90 alpha family class B member 2, pseudogene pseudo 65 0.007749
-391712 TRIM61 tripartite motif containing 61 protein-coding 22 0.002623
-391723 HELT helt bHLH transcription factor protein-coding 35 0.004173
-392138 OR2A25 olfactory receptor family 2 subfamily A member 25 protein-coding 68 0.008107
-392255 GDF6 growth differentiation factor 6 protein-coding 77 0.00918
-392307 FAM221B family with sequence similarity 221 member B protein-coding 35 0.004173
-392309 OR13J1 olfactory receptor family 13 subfamily J member 1 protein-coding 34 0.004053
-392360 CTSL3P cathepsin L family member 3, pseudogene pseudo 46 0.005484
-392376 OR13C2 olfactory receptor family 13 subfamily C member 2 protein-coding 66 0.007868
-392390 OR1L6 olfactory receptor family 1 subfamily L member 6 protein-coding 37 0.004411
-392391 OR5C1 olfactory receptor family 5 subfamily C member 1 protein-coding 52 0.006199
-392392 OR1K1 olfactory receptor family 1 subfamily K member 1 protein-coding 47 0.005603
-392399 LCN9 lipocalin 9 protein-coding 27 0.003219
-392459 CXXC1P1 CXXC finger protein 1 pseudogene 1 pseudo 9 0.001073
-392465 GLOD5 glyoxalase domain containing 5 protein-coding 22 0.002623
-392509 ARL13A ADP ribosylation factor like GTPase 13A protein-coding 38 0.00453
-392517 NCBP2L nuclear cap binding protein subunit 2 like protein-coding 24 0.002861
-392617 ELFN1 extracellular leucine rich repeat and fibronectin type III domain containing 1 protein-coding 68 0.008107
-392636 AGMO alkylglycerol monooxygenase protein-coding 120 0.01431
-392862 GRID2IP Grid2 interacting protein protein-coding 58 0.006915
-393046 OR2A5 olfactory receptor family 2 subfamily A member 5 protein-coding 76 0.009061
-394263 MUC21 mucin 21, cell surface associated protein-coding 64 0.00763
-399473 SPRED3 sprouty related EVH1 domain containing 3 protein-coding 25 0.00298
-399474 TMEM200B transmembrane protein 200B protein-coding 18 0.002146
-399512 SLC25A35 solute carrier family 25 member 35 protein-coding 27 0.003219
-399664 MEX3D mex-3 RNA binding family member D protein-coding 31 0.003696
-399665 FAM102A family with sequence similarity 102 member A protein-coding 37 0.004411
-399668 SMIM10L2A small integral membrane protein 10 like 2A protein-coding 12 0.001431
-399669 ZNF321P zinc finger protein 321, pseudogene pseudo 24 0.002861
-399671 HEATR4 HEAT repeat containing 4 protein-coding 95 0.01133
-399687 MYO18A myosin XVIIIA protein-coding 180 0.02146
-399694 SHC4 SHC adaptor protein 4 protein-coding 65 0.007749
-399697 CTXN2 cortexin 2 protein-coding 10 0.001192
-399706 LINC00200 long intergenic non-protein coding RNA 200 ncRNA 17 0.002027
-399726 CASC10 cancer susceptibility 10 protein-coding 8 0.0009537
-399761 BMS1P1 BMS1, ribosome biogenesis factor pseudogene 1 pseudo 9 0.001073
-399814 C10orf120 chromosome 10 open reading frame 120 protein-coding 68 0.008107
-399818 EEF1AKMT2 EEF1A lysine methyltransferase 2 protein-coding 16 0.001907
-399823 FOXI2 forkhead box I2 protein-coding 31 0.003696
-399829 LINC01168 long intergenic non-protein coding RNA 1168 ncRNA 10 0.001192
-399881 HNRNPKP3 heterogeneous nuclear ribonucleoprotein K pseudogene 3 pseudo 60 0.007153
-399888 FAM180B family with sequence similarity 180 member B protein-coding 9 0.001073
-399909 PCNX3 pecanex homolog 3 protein-coding 159 0.01896
-399939 TRIM49D1 tripartite motif containing 49D1 protein-coding 1 0.0001192
-399947 C11orf87 chromosome 11 open reading frame 87 protein-coding 38 0.00453
-399948 COLCA1 colorectal cancer associated 1 protein-coding 16 0.001907
-399949 C11orf88 chromosome 11 open reading frame 88 protein-coding 36 0.004292
-399967 PATE2 prostate and testis expressed 2 protein-coding 10 0.001192
-399968 PATE4 prostate and testis expressed 4 protein-coding 11 0.001311
-399979 SNX19 sorting nexin 19 protein-coding 100 0.01192
-400073 C12orf76 chromosome 12 open reading frame 76 protein-coding 10 0.001192
-400110 ANKRD20A19P ankyrin repeat domain 20 family member A19, pseudogene pseudo 55 0.006557
-400120 SERTM1 serine rich and transmembrane domain containing 1 protein-coding 15 0.001788
-400156 RPS26P47 ribosomal protein S26 pseudogene 47 pseudo 11 0.001311
-400165 ATP11AUN ATP11A upstream neighbor protein-coding 18 0.002146
-400206 DPPA3P2 developmental pluripotency associated 3 pseudogene 2 pseudo 57 0.006795
-400224 PLEKHD1 pleckstrin homology and coiled-coil domain containing D1 protein-coding 40 0.004769
-400258 C14orf180 chromosome 14 open reading frame 180 protein-coding 15 0.001788
-400322 HERC2P2 hect domain and RLD 2 pseudogene 2 pseudo 113 0.01347
-400359 C15orf53 chromosome 15 open reading frame 53 protein-coding 28 0.003338
-400360 C15orf54 chromosome 15 open reading frame 54 (putative) ncRNA 22 0.002623
-400410 ST20 suppressor of tumorigenicity 20 protein-coding 15 0.001788
-400451 FAM174B family with sequence similarity 174 member B protein-coding 13 0.00155
-400500 BCAR4 breast cancer anti-estrogen resistance 4 (non-protein coding) ncRNA 6 0.0007153
-400506 KNOP1 lysine rich nucleolar protein 1 protein-coding 47 0.005603
-400508 CRYM-AS1 CRYM antisense RNA 1 ncRNA 34 0.004053
-400566 C17orf97 chromosome 17 open reading frame 97 protein-coding 34 0.004053
-400569 MED11 mediator complex subunit 11 protein-coding 10 0.001192
-400578 KRT16P2 keratin 16 pseudogene 2 pseudo 34 0.004053
-400581 GRAPL GRB2 related adaptor protein like protein-coding 3 0.0003577
-400591 C17orf102 chromosome 17 open reading frame 102 protein-coding 26 0.0031
-400629 TEX19 testis expressed 19 protein-coding 22 0.002623
-400643 LINC00668 long intergenic non-protein coding RNA 668 ncRNA 7 0.0008345
-400657 LINC00909 long intergenic non-protein coding RNA 909 ncRNA 12 0.001431
-400668 PRSS57 serine protease 57 protein-coding 37 0.004411
-400673 VMAC vimentin type intermediate filament associated coiled-coil protein protein-coding 5 0.0005961
-400709 SIGLEC16 sialic acid binding Ig like lectin 16 (gene/pseudogene) protein-coding 45 0.005365
-400713 ZNF880 zinc finger protein 880 protein-coding 82 0.009776
-400720 ZNF772 zinc finger protein 772 protein-coding 52 0.006199
-400735 PRAMEF4 PRAME family member 4 protein-coding 98 0.01168
-400736 PRAMEF13 PRAME family member 13 protein-coding 11 0.001311
-400745 SH2D5 SH2 domain containing 5 protein-coding 52 0.006199
-400746 NCMAP non-compact myelin associated protein protein-coding 12 0.001431
-400757 C1orf141 chromosome 1 open reading frame 141 protein-coding 66 0.007868
-400759 GBP1P1 guanylate binding protein 1 pseudogene 1 pseudo 39 0.004649
-400765 MIR137HG MIR137 host gene ncRNA 3 0.0003577
-400793 C1orf226 chromosome 1 open reading frame 226 protein-coding 19 0.002265
-400798 C1orf220 chromosome 1 open reading frame 220 (putative) ncRNA 2 0.0002384
-400818 NBPF9 NBPF member 9 protein-coding 63 0.007511
-400823 FAM177B family with sequence similarity 177 member B protein-coding 20 0.002384
-400830 DEFB132 defensin beta 132 protein-coding 9 0.001073
-400831 C20orf202 chromosome 20 open reading frame 202 protein-coding 14 0.001669
-400916 CHCHD10 coiled-coil-helix-coiled-coil-helix domain containing 10 protein-coding 6 0.0007153
-400932 LINC00898 long intergenic non-protein coding RNA 898 ncRNA 10 0.001192
-400935 IL17REL interleukin 17 receptor E like protein-coding 36 0.004292
-400941 LINC00487 long intergenic non-protein coding RNA 487 ncRNA 6 0.0007153
-400950 C2orf91 chromosome 2 open reading frame 91 protein-coding 3 0.0003577
-400952 LINC01121 long intergenic non-protein coding RNA 1121 ncRNA 8 0.0009537
-400954 EML6 echinoderm microtubule associated protein like 6 protein-coding 128 0.01526
-400960 PCBP1-AS1 PCBP1 antisense RNA 1 ncRNA 5 0.0005961
-400961 PAIP2B poly(A) binding protein interacting protein 2B protein-coding 14 0.001669
-400966 RGPD1 RANBP2-like and GRIP domain containing 1 protein-coding 73 0.008703
-400986 ANKRD36C ankyrin repeat domain 36C protein-coding 104 0.0124
-401024 FSIP2 fibrous sheath interacting protein 2 protein-coding 288 0.03433
-401027 C2orf66 chromosome 2 open reading frame 66 protein-coding 21 0.002504
-401036 ASB18 ankyrin repeat and SOCS box containing 18 protein-coding 31 0.003696
-401067 IQCF3 IQ motif containing F3 protein-coding 30 0.003577
-401089 FOXL2NB FOXL2 neighbor protein-coding 19 0.002265
-401115 C4orf48 chromosome 4 open reading frame 48 protein-coding 4 0.0004769
-401124 DTHD1 death domain containing 1 protein-coding 43 0.005126
-401136 TMPRSS11BNL TMPRSS11B N-terminal like, pseudogene pseudo 8 0.0009537
-401137 PRR27 proline rich 27 protein-coding 49 0.005842
-401138 AMTN amelotin protein-coding 28 0.003338
-401145 CCSER1 coiled-coil serine rich protein 1 protein-coding 133 0.01586
-401152 C4orf3 chromosome 4 open reading frame 3 protein-coding 21 0.002504
-401190 RGS7BP regulator of G protein signaling 7 binding protein protein-coding 36 0.004292
-401207 C5orf63 chromosome 5 open reading frame 63 protein-coding 5 0.0005961
-401232 LINC01011 long intergenic non-protein coding RNA 1011 ncRNA 8 0.0009537
-401236 STMND1 stathmin domain containing 1 protein-coding 5 0.0005961
-401237 CASC15 cancer susceptibility 15 (non-protein coding) ncRNA 4 0.0004769
-401247 LINC00243 long intergenic non-protein coding RNA 243 ncRNA 3 0.0003577
-401250 MCCD1 mitochondrial coiled-coil domain 1 protein-coding 14 0.001669
-401251 SAPCD1 suppressor APC domain containing 1 protein-coding 15 0.001788
-401258 RAB44 RAB44, member RAS oncogene family protein-coding 4 0.0004769
-401260 LINC00951 long intergenic non-protein coding RNA 951 ncRNA 16 0.001907
-401262 CRIP3 cysteine rich protein 3 protein-coding 25 0.00298
-401265 KLHL31 kelch like family member 31 protein-coding 75 0.008941
-401285 TCP10L2 t-complex 10 like 2 protein-coding 44 0.005246
-401288 LINC00242 long intergenic non-protein coding RNA 242 ncRNA 23 0.002742
-401303 ZNF815P zinc finger protein 815, pseudogene pseudo 22 0.002623
-401331 RASA4CP RAS p21 protein activator 4C, pseudogene pseudo 24 0.002861
-401335 C7orf65 chromosome 7 open reading frame 65 protein-coding 18 0.002146
-401375 GTF2IRD2P1 GTF2I repeat domain containing 2 pseudogene 1 pseudo 170 0.02027
-401387 LRRD1 leucine rich repeats and death domain containing 1 protein-coding 71 0.008464
-401397 SMIM30 small integral membrane protein 30 protein-coding 1 0.0001192
-401398 POT1-AS1 POT1 antisense RNA 1 ncRNA 16 0.001907
-401399 PRRT4 proline rich transmembrane protein 4 protein-coding 39 0.004649
-401409 RAB19 RAB19, member RAS oncogene family protein-coding 31 0.003696
-401427 OR2A7 olfactory receptor family 2 subfamily A member 7 protein-coding 44 0.005246
-401466 C8orf59 chromosome 8 open reading frame 59 protein-coding 11 0.001311
-401474 SAMD12 sterile alpha motif domain containing 12 protein-coding 32 0.003815
-401494 HACD4 3-hydroxyacyl-CoA dehydratase 4 protein-coding 28 0.003338
-401498 TMEM215 transmembrane protein 215 protein-coding 30 0.003577
-401505 TOMM5 translocase of outer mitochondrial membrane 5 protein-coding 6 0.0007153
-401508 FAM74A4 family with sequence similarity 74 member A4 ncRNA 4 0.0004769
-401535 C9orf170 chromosome 9 open reading frame 170 protein-coding 15 0.001788
-401541 CENPP centromere protein P protein-coding 28 0.003338
-401546 C9orf152 chromosome 9 open reading frame 152 protein-coding 26 0.0031
-401548 SNX30 sorting nexin family member 30 protein-coding 41 0.004888
-401551 WDR38 WD repeat domain 38 protein-coding 31 0.003696
-401562 LCNL1 lipocalin like 1 protein-coding 10 0.001192
-401563 C9orf139 chromosome 9 open reading frame 139 protein-coding 30 0.003577
-401565 FAM166A family with sequence similarity 166 member A protein-coding 51 0.00608
-401577 CD99P1 CD99 molecule pseudogene 1 pseudo 1 0.0001192
-401612 SLC25A53 solute carrier family 25 member 53 protein-coding 40 0.004769
-401613 SERTM2 serine rich and transmembrane domain containing 2 protein-coding 7 0.0008345
-401647 GOLGA7B golgin A7 family member B protein-coding 19 0.002265
-401665 OR51T1 olfactory receptor family 51 subfamily T member 1 protein-coding 75 0.008941
-401666 OR51A4 olfactory receptor family 51 subfamily A member 4 protein-coding 76 0.009061
-401667 OR51A2 olfactory receptor family 51 subfamily A member 2 protein-coding 50 0.005961
-401827 MSLNL mesothelin-like pseudo 95 0.01133
-401898 ZNF833P zinc finger protein 833, pseudogene pseudo 69 0.008226
-401944 LDLRAD2 low density lipoprotein receptor class A domain containing 2 protein-coding 25 0.00298
-401992 OR2T2 olfactory receptor family 2 subfamily T member 2 protein-coding 110 0.01311
-401993 OR2T5 olfactory receptor family 2 subfamily T member 5 protein-coding 24 0.002861
-401994 OR14I1 olfactory receptor family 14 subfamily I member 1 protein-coding 80 0.009537
-402055 SRRD SRR1 domain containing protein-coding 26 0.0031
-402117 VWC2L von Willebrand factor C domain containing protein 2 like protein-coding 56 0.006676
-402135 OR5K2 olfactory receptor family 5 subfamily K member 2 protein-coding 68 0.008107
-402317 OR2A42 olfactory receptor family 2 subfamily A member 42 protein-coding 18 0.002146
-402381 SOHLH1 spermatogenesis and oogenesis specific basic helix-loop-helix 1 protein-coding 37 0.004411
-402415 XKRX XK related, X-linked protein-coding 59 0.007034
-402569 KPNA7 karyopherin subunit alpha 7 protein-coding 46 0.005484
-402573 C7orf61 chromosome 7 open reading frame 61 protein-coding 23 0.002742
-402635 GRIFIN galectin-related inter-fiber protein protein-coding 10 0.001192
-402665 IGLON5 IgLON family member 5 protein-coding 43 0.005126
-402682 UFSP1 UFM1 specific peptidase 1 (inactive) protein-coding 13 0.00155
-402778 IFITM10 interferon induced transmembrane protein 10 protein-coding 8 0.0009537
-403239 OR2T27 olfactory receptor family 2 subfamily T member 27 protein-coding 102 0.01216
-403244 OR2T35 olfactory receptor family 2 subfamily T member 35 protein-coding 20 0.002384
-403253 OR4A47 olfactory receptor family 4 subfamily A member 47 protein-coding 94 0.01121
-403273 OR5H14 olfactory receptor family 5 subfamily H member 14 protein-coding 102 0.01216
-403274 OR5H15 olfactory receptor family 5 subfamily H member 15 protein-coding 85 0.01013
-403277 OR5K3 olfactory receptor family 5 subfamily K member 3 protein-coding 72 0.008584
-403278 OR5K4 olfactory receptor family 5 subfamily K member 4 protein-coding 64 0.00763
-403282 OR6C65 olfactory receptor family 6 subfamily C member 65 protein-coding 52 0.006199
-403284 OR6C68 olfactory receptor family 6 subfamily C member 68 protein-coding 40 0.004769
-403313 PLPP6 phospholipid phosphatase 6 protein-coding 72 0.008584
-403314 APOBEC4 apolipoprotein B mRNA editing enzyme catalytic polypeptide like 4 protein-coding 45 0.005365
-403315 FAM92A1P2 family with sequence similarity 92, member A3 pseudo 57 0.006795
-403339 DEFB133 defensin beta 133 protein-coding 3 0.0003577
-403341 ZBTB34 zinc finger and BTB domain containing 34 protein-coding 47 0.005603
-404037 HAPLN4 hyaluronan and proteoglycan link protein 4 protein-coding 60 0.007153
-404093 CUEDC1 CUE domain containing 1 protein-coding 57 0.006795
-404203 SPINK6 serine peptidase inhibitor, Kazal type 6 protein-coding 8 0.0009537
-404217 CTXN1 cortexin 1 protein-coding 1 0.0001192
-404220 C6orf201 chromosome 6 open reading frame 201 protein-coding 16 0.001907
-404281 YY2 YY2 transcription factor protein-coding 59 0.007034
-404550 C16orf74 chromosome 16 open reading frame 74 protein-coding 5 0.0005961
-404552 SCGB1D4 secretoglobin family 1D member 4 protein-coding 16 0.001907
-404635 NANOGP1 Nanog homeobox pseudogene 1 pseudo 57 0.006795
-404636 FAM45A family with sequence similarity 45 member A protein-coding 34 0.004053
-404672 GTF2H5 general transcription factor IIH subunit 5 protein-coding 5 0.0005961
-404744 NPSR1-AS1 NPSR1 antisense RNA 1 ncRNA 1 0.0001192
-404785 POTEG POTE ankyrin domain family member G protein-coding 187 0.02229
-405753 DUOXA2 dual oxidase maturation factor 2 protein-coding 41 0.004888
-405754 ERVFRD-1 endogenous retrovirus group FRD member 1, envelope protein-coding 45 0.005365
-406881 MIRLET7A1 microRNA let-7a-1 ncRNA 4 0.0004769
-406882 MIRLET7A2 microRNA let-7a-2 ncRNA 7 0.0008345
-406885 MIRLET7C microRNA let-7c ncRNA 4 0.0004769
-406886 MIRLET7D microRNA let-7d ncRNA 1 0.0001192
-406887 MIRLET7E microRNA let-7e ncRNA 4 0.0004769
-406888 MIRLET7F1 microRNA let-7f-1 ncRNA 3 0.0003577
-406892 MIR100 microRNA 100 ncRNA 8 0.0009537
-406893 MIR101-1 microRNA 101-1 ncRNA 4 0.0004769
-406899 MIR106A microRNA 106a ncRNA 3 0.0003577
-406906 MIR122 microRNA 122 ncRNA 3 0.0003577
-406908 MIR124-2 microRNA 124-2 ncRNA 21 0.002504
-406909 MIR124-3 microRNA 124-3 ncRNA 11 0.001311
-406910 MIR125A microRNA 125a ncRNA 1 0.0001192
-406911 MIR125B1 microRNA 125b-1 ncRNA 9 0.001073
-406912 MIR125B2 microRNA 125b-2 ncRNA 6 0.0007153
-406917 MIR129-1 microRNA 129-1 ncRNA 7 0.0008345
-406918 MIR129-2 microRNA 129-2 ncRNA 12 0.001431
-406920 MIR130B microRNA 130b ncRNA 2 0.0002384
-406924 MIR134 microRNA 134 ncRNA 8 0.0009537
-406926 MIR135A2 microRNA 135a-2 ncRNA 6 0.0007153
-406929 MIR138-1 microRNA 138-1 ncRNA 3 0.0003577
-406930 MIR138-2 microRNA 138-2 ncRNA 4 0.0004769
-406935 MIR143 microRNA 143 ncRNA 5 0.0005961
-406937 MIR145 microRNA 145 ncRNA 3 0.0003577
-406938 MIR146A microRNA 146a ncRNA 8 0.0009537
-406939 MIR147A microRNA 147a ncRNA 10 0.001192
-406940 MIR148A microRNA 148a ncRNA 1 0.0001192
-406946 MIR154 microRNA 154 ncRNA 13 0.00155
-406950 MIR16-1 microRNA 16-1 ncRNA 6 0.0007153
-406955 MIR181B1 microRNA 181b-1 ncRNA 11 0.001311
-406958 MIR182 microRNA 182 ncRNA 8 0.0009537
-406959 MIR183 microRNA 183 ncRNA 2 0.0002384
+286144 TRIQK triple QxxK/R motif containing protein-coding 8 0.0009527
+286148 DPY19L4 dpy-19 like 4 protein-coding 72 0.008574
+286151 FBXO43 F-box protein 43 protein-coding 95 0.01131
+286183 NKAIN3 sodium/potassium transporting ATPase interacting 3 protein-coding 47 0.005597
+286187 PPP1R42 protein phosphatase 1 regulatory subunit 42 protein-coding 46 0.005478
+286204 CRB2 crumbs 2, cell polarity complex component protein-coding 108 0.01286
+286205 SCAI suppressor of cancer cell invasion protein-coding 75 0.008932
+286207 CFAP157 cilia and flagella associated protein 157 protein-coding 35 0.004168
+286223 C9orf47 chromosome 9 open reading frame 47 protein-coding 18 0.002144
+286234 SPATA31E1 SPATA31 subfamily E member 1 protein-coding 190 0.02263
+286256 LCN12 lipocalin 12 protein-coding 19 0.002263
+286257 PAXX PAXX, non-homologous end joining factor protein-coding 17 0.002025
+286262 TPRN taperin protein-coding 46 0.005478
+286319 TUSC1 tumor suppressor candidate 1 protein-coding 8 0.0009527
+286336 FAM78A family with sequence similarity 78 member A protein-coding 40 0.004764
+286343 LURAP1L leucine rich adaptor protein 1 like protein-coding 26 0.003096
+286362 OR13C9 olfactory receptor family 13 subfamily C member 9 protein-coding 59 0.007026
+286365 OR13D1 olfactory receptor family 13 subfamily D member 1 protein-coding 60 0.007145
+286380 FOXD4L3 forkhead box D4 like 3 protein-coding 25 0.002977
+286410 ATP11C ATPase phospholipid transporting 11C protein-coding 150 0.01786
+286411 LINC00632 long intergenic non-protein coding RNA 632 ncRNA 4 0.0004764
+286430 NLRP2B NLR family pyrin domain containing 2B protein-coding 27 0.003215
+286436 H2BFM H2B histone family member M protein-coding 25 0.002977
+286451 YIPF6 Yip1 domain family member 6 protein-coding 37 0.004406
+286464 CFAP47 cilia and flagella associated protein 47 protein-coding 321 0.03823
+286499 FAM133A family with sequence similarity 133 member A protein-coding 68 0.008098
+286514 MAGEB18 MAGE family member B18 protein-coding 94 0.01119
+286527 TMSB15B thymosin beta 15B protein-coding 10 0.001191
+286530 P2RY8 P2Y receptor family member 8 protein-coding 98 0.01167
+286554 BCORP1 BCL6 corepressor pseudogene 1 pseudo 1 0.0001191
+286676 ILDR1 immunoglobulin like domain containing receptor 1 protein-coding 65 0.007741
+286749 STON1-GTF2A1L STON1-GTF2A1L readthrough protein-coding 198 0.02358
+286753 TRARG1 trafficking regulator of GLUT4 (SLC2A4) 1 protein-coding 22 0.00262
+286826 LIN9 lin-9 DREAM MuvB core complex component protein-coding 154 0.01834
+286827 TRIM59 tripartite motif containing 59 protein-coding 49 0.005835
+286828 CSN1S2AP casein alpha s2-like A, pseudogene pseudo 9 0.001072
+286887 KRT6C keratin 6C protein-coding 88 0.01048
+287015 TRIM42 tripartite motif containing 42 protein-coding 143 0.01703
+317649 EIF4E3 eukaryotic translation initiation factor 4E family member 3 protein-coding 17 0.002025
+317662 FAM149B1 family with sequence similarity 149 member B1 protein-coding 33 0.00393
+317671 RFESD Rieske Fe-S domain containing protein-coding 23 0.002739
+317701 VN1R2 vomeronasal 1 receptor 2 protein-coding 98 0.01167
+317703 VN1R4 vomeronasal 1 receptor 4 protein-coding 72 0.008574
+317716 BPIFA4P BPI fold containing family A member 4, pseudogene pseudo 15 0.001786
+317719 KLHL10 kelch like family member 10 protein-coding 67 0.007979
+317749 DHRS4L2 dehydrogenase/reductase 4 like 2 protein-coding 23 0.002739
+317754 POTED POTE ankyrin domain family member D protein-coding 30 0.003573
+317761 C14orf39 chromosome 14 open reading frame 39 protein-coding 100 0.01191
+317762 CCDC85C coiled-coil domain containing 85C protein-coding 8 0.0009527
+317772 HIST2H2AB histone cluster 2 H2A family member b protein-coding 31 0.003692
+317781 DDX51 DEAD-box helicase 51 protein-coding 52 0.006193
+319089 TTC6 tetratricopeptide repeat domain 6 protein-coding 88 0.01048
+319100 TAAR6 trace amine associated receptor 6 protein-coding 75 0.008932
+319101 KRT73 keratin 73 protein-coding 101 0.01203
+319138 BNIP3P1 BCL2 interacting protein 3 pseudogene 1 pseudo 105 0.0125
+326340 ZAR1 zygote arrest 1 protein-coding 17 0.002025
+326342 ADGRE4P adhesion G protein-coupled receptor E4, pseudogene pseudo 68 0.008098
+326624 RAB37 RAB37, member RAS oncogene family protein-coding 47 0.005597
+326625 MMAB methylmalonic aciduria (cobalamin deficiency) cblB type protein-coding 296 0.03525
+327657 SERPINA9 serpin family A member 9 protein-coding 72 0.008574
+333926 PPM1J protein phosphatase, Mg2+/Mn2+ dependent 1J protein-coding 47 0.005597
+333929 SNAI3 snail family transcriptional repressor 3 protein-coding 37 0.004406
+337867 UBAC2 UBA domain containing 2 protein-coding 31 0.003692
+337876 CHSY3 chondroitin sulfate synthase 3 protein-coding 116 0.01381
+337878 KRTAP7-1 keratin associated protein 7-1 (gene/pseudogene) protein-coding 12 0.001429
+337879 KRTAP8-1 keratin associated protein 8-1 protein-coding 15 0.001786
+337880 KRTAP11-1 keratin associated protein 11-1 protein-coding 102 0.01215
+337882 KRTAP19-1 keratin associated protein 19-1 protein-coding 19 0.002263
+337959 KRTAP13-2 keratin associated protein 13-2 protein-coding 44 0.00524
+337960 KRTAP13-3 keratin associated protein 13-3 protein-coding 38 0.004525
+337963 KRTAP23-1 keratin associated protein 23-1 protein-coding 12 0.001429
+337966 KRTAP6-1 keratin associated protein 6-1 protein-coding 25 0.002977
+337967 KRTAP6-2 keratin associated protein 6-2 protein-coding 24 0.002858
+337968 KRTAP6-3 keratin associated protein 6-3 protein-coding 30 0.003573
+337969 KRTAP19-2 keratin associated protein 19-2 protein-coding 10 0.001191
+337970 KRTAP19-3 keratin associated protein 19-3 protein-coding 27 0.003215
+337971 KRTAP19-4 keratin associated protein 19-4 protein-coding 23 0.002739
+337972 KRTAP19-5 keratin associated protein 19-5 protein-coding 32 0.003811
+337973 KRTAP19-6 keratin associated protein 19-6 protein-coding 20 0.002382
+337974 KRTAP19-7 keratin associated protein 19-7 protein-coding 26 0.003096
+337975 KRTAP20-1 keratin associated protein 20-1 protein-coding 20 0.002382
+337976 KRTAP20-2 keratin associated protein 20-2 protein-coding 18 0.002144
+337977 KRTAP21-1 keratin associated protein 21-1 protein-coding 23 0.002739
+337978 KRTAP21-2 keratin associated protein 21-2 protein-coding 28 0.003335
+337979 KRTAP22-1 keratin associated protein 22-1 protein-coding 12 0.001429
+337985 KRTAP20-3 keratin associated protein 20-3 protein-coding 4 0.0004764
+338004 LINC00226 long intergenic non-protein coding RNA 226 ncRNA 1 0.0001191
+338005 LINC00221 long intergenic non-protein coding RNA 221 ncRNA 11 0.00131
+338069 ST7-OT4 ST7 overlapping transcript 4 ncRNA 8 0.0009527
+338094 FAM151A family with sequence similarity 151 member A protein-coding 62 0.007384
+338321 NLRP9 NLR family pyrin domain containing 9 protein-coding 186 0.02215
+338322 NLRP10 NLR family pyrin domain containing 10 protein-coding 136 0.0162
+338323 NLRP14 NLR family pyrin domain containing 14 protein-coding 210 0.02501
+338324 S100A7A S100 calcium binding protein A7A protein-coding 20 0.002382
+338328 GPIHBP1 glycosylphosphatidylinositol anchored high density lipoprotein binding protein 1 protein-coding 21 0.002501
+338339 CLEC4D C-type lectin domain family 4 member D protein-coding 49 0.005835
+338376 IFNE interferon epsilon protein-coding 24 0.002858
+338398 TAS2R60 taste 2 receptor member 60 protein-coding 64 0.007622
+338427 SNORD108 small nucleolar RNA, C/D box 108 snoRNA 6 0.0007145
+338428 SNORD109A small nucleolar RNA, C/D box 109A snoRNA 6 0.0007145
+338429 SNORD109B small nucleolar RNA, C/D box 109B snoRNA 2 0.0002382
+338433 SNORD115-1 small nucleolar RNA, C/D box 115-1 snoRNA 8 0.0009527
+338440 ANO9 anoctamin 9 protein-coding 99 0.01179
+338442 HCAR2 hydroxycarboxylic acid receptor 2 protein-coding 68 0.008098
+338557 FFAR4 free fatty acid receptor 4 protein-coding 48 0.005716
+338567 KCNK18 potassium two pore domain channel subfamily K member 18 protein-coding 80 0.009527
+338588 LINC00705 long intergenic non-protein coding RNA 705 ncRNA 8 0.0009527
+338596 ST8SIA6 ST8 alpha-N-acetyl-neuraminide alpha-2,8-sialyltransferase 6 protein-coding 87 0.01036
+338599 DUPD1 dual specificity phosphatase and pro isomerase domain containing 1 protein-coding 275 0.03275
+338645 LUZP2 leucine zipper protein 2 protein-coding 104 0.01239
+338657 CCDC84 coiled-coil domain containing 84 protein-coding 24 0.002858
+338661 TMEM225 transmembrane protein 225 protein-coding 65 0.007741
+338662 OR8D4 olfactory receptor family 8 subfamily D member 4 protein-coding 68 0.008098
+338674 OR5F1 olfactory receptor family 5 subfamily F member 1 protein-coding 119 0.01417
+338675 OR5AP2 olfactory receptor family 5 subfamily AP member 2 protein-coding 67 0.007979
+338692 ANKRD13D ankyrin repeat domain 13D protein-coding 60 0.007145
+338699 ANKRD42 ankyrin repeat domain 42 protein-coding 57 0.006788
+338707 B4GALNT4 beta-1,4-N-acetyl-galactosaminyltransferase 4 protein-coding 97 0.01155
+338739 CSTF3-DT CSTF3 divergent transcript ncRNA 3 0.0003573
+338751 OR52L1 olfactory receptor family 52 subfamily L member 1 protein-coding 80 0.009527
+338755 OR2AG2 olfactory receptor family 2 subfamily AG member 2 protein-coding 65 0.007741
+338761 C1QL4 complement C1q like 4 protein-coding 17 0.002025
+338773 TMEM119 transmembrane protein 119 protein-coding 46 0.005478
+338785 KRT79 keratin 79 protein-coding 77 0.00917
+338809 C12orf74 chromosome 12 open reading frame 74 protein-coding 29 0.003454
+338811 FAM19A2 family with sequence similarity 19 member A2, C-C motif chemokine like protein-coding 48 0.005716
+338821 SLCO1B7 solute carrier organic anion transporter family member 1B7 (putative) protein-coding 139 0.01655
+338872 C1QTNF9 C1q and TNF related 9 protein-coding 37 0.004406
+338879 RNASE10 ribonuclease A family member 10 (inactive) protein-coding 40 0.004764
+338917 VSX2 visual system homeobox 2 protein-coding 36 0.004287
+338949 TMEM202 transmembrane protein 202 protein-coding 49 0.005835
+339005 WHAMMP3 WAS protein homolog associated with actin, golgi membranes and microtubules pseudogene 3 pseudo 35 0.004168
+339044 PKD1P1 polycystin 1, transient receptor potential channel interacting pseudogene 1 pseudo 22 0.00262
+339105 PRSS53 serine protease 53 protein-coding 36 0.004287
+339122 RAB43 RAB43, member RAS oncogene family protein-coding 70 0.008336
+339123 JMJD8 jumonji domain containing 8 protein-coding 14 0.001667
+339145 FAM92B family with sequence similarity 92 member B protein-coding 43 0.005121
+339168 TMEM95 transmembrane protein 95 protein-coding 16 0.001905
+339175 METTL2A methyltransferase like 2A protein-coding 44 0.00524
+339184 CCDC144NL coiled-coil domain containing 144 family, N-terminal like protein-coding 24 0.002858
+339210 C17orf67 chromosome 17 open reading frame 67 protein-coding 9 0.001072
+339221 ENPP7 ectonucleotide pyrophosphatase/phosphodiesterase 7 protein-coding 66 0.00786
+339229 OXLD1 oxidoreductase like domain containing 1 protein-coding 21 0.002501
+339230 CCDC137 coiled-coil domain containing 137 protein-coding 25 0.002977
+339231 ARL16 ADP ribosylation factor like GTPase 16 protein-coding 16 0.001905
+339241 KRT17P2 keratin 17 pseudogene 2 pseudo 18 0.002144
+339256 NOS2P3 nitric oxide synthase 2 pseudogene 3 pseudo 1 0.0001191
+339263 C17orf51 chromosome 17 open reading frame 51 protein-coding 14 0.001667
+339287 MSL1 male specific lethal 1 homolog protein-coding 38 0.004525
+339291 LRRC30 leucine rich repeat containing 30 protein-coding 72 0.008574
+339302 CPLX4 complexin 4 protein-coding 34 0.004049
+339318 ZNF181 zinc finger protein 181 protein-coding 58 0.006907
+339324 ZNF260 zinc finger protein 260 protein-coding 175 0.02084
+339327 ZNF546 zinc finger protein 546 protein-coding 118 0.01405
+339344 MYPOP Myb related transcription factor, partner of profilin protein-coding 32 0.003811
+339345 NANOS2 nanos C2HC-type zinc finger 2 protein-coding 175 0.02084
+339366 ADAMTSL5 ADAMTS like 5 protein-coding 42 0.005002
+339390 CLEC4G C-type lectin domain family 4 member G protein-coding 32 0.003811
+339398 LINGO4 leucine rich repeat and Ig domain containing 4 protein-coding 73 0.008694
+339403 RXFP4 relaxin family peptide/INSL5 receptor 4 protein-coding 29 0.003454
+339416 ANKRD45 ankyrin repeat domain 45 protein-coding 55 0.00655
+339448 C1orf174 chromosome 1 open reading frame 174 protein-coding 27 0.003215
+339451 KLHL17 kelch like family member 17 protein-coding 60 0.007145
+339453 TMEM240 transmembrane protein 240 protein-coding 8 0.0009527
+339456 TMEM52 transmembrane protein 52 protein-coding 23 0.002739
+339476 ERVMER61-1 endogenous retrovirus group MER61 member 1 other 26 0.003096
+339479 BRINP3 BMP/retinoic acid inducible neural specific 3 protein-coding 332 0.03954
+339483 MTMR9LP myotubularin related protein 9-like, pseudogene pseudo 11 0.00131
+339487 ZBTB8OS zinc finger and BTB domain containing 8 opposite strand protein-coding 17 0.002025
+339488 TFAP2E transcription factor AP-2 epsilon protein-coding 25 0.002977
+339500 ZNF678 zinc finger protein 678 protein-coding 73 0.008694
+339501 PRSS38 serine protease 38 protein-coding 58 0.006907
+339512 CCDC190 coiled-coil domain containing 190 protein-coding 45 0.005359
+339535 LINC01139 long intergenic non-protein coding RNA 1139 ncRNA 11 0.00131
+339541 ARMH1 armadillo-like helical domain containing 1 protein-coding 24 0.002858
+339559 ZFP69 ZFP69 zinc finger protein protein-coding 49 0.005835
+339665 SLC35E4 solute carrier family 35 member E4 protein-coding 33 0.00393
+339669 TEX33 testis expressed 33 protein-coding 36 0.004287
+339674 LINC00634 long intergenic non-protein coding RNA 634 ncRNA 7 0.0008336
+339745 SPOPL speckle type BTB/POZ protein like protein-coding 82 0.009765
+339761 CYP27C1 cytochrome P450 family 27 subfamily C member 1 protein-coding 63 0.007503
+339766 MROH2A maestro heat like repeat family member 2A protein-coding 12 0.001429
+339768 ESPNL espin like protein-coding 85 0.01012
+339778 C2orf70 chromosome 2 open reading frame 70 protein-coding 28 0.003335
+339779 PRR30 proline rich 30 protein-coding 60 0.007145
+339788 LINC00298 long intergenic non-protein coding RNA 298 ncRNA 10 0.001191
+339789 LINC00299 long intergenic non-protein coding RNA 299 ncRNA 19 0.002263
+339804 C2orf74 chromosome 2 open reading frame 74 protein-coding 19 0.002263
+339829 CCDC39 coiled-coil domain containing 39 protein-coding 184 0.02191
+339834 CCDC36 coiled-coil domain containing 36 protein-coding 69 0.008217
+339855 KY kyphoscoliosis peptidase protein-coding 77 0.00917
+339883 C3orf35 chromosome 3 open reading frame 35 protein-coding 27 0.003215
+339896 GADL1 glutamate decarboxylase like 1 protein-coding 106 0.01262
+339906 PRSS42 serine protease 42 protein-coding 33 0.00393
+339942 H1FX-AS1 H1FX antisense RNA 1 ncRNA 1 0.0001191
+339965 CCDC158 coiled-coil domain containing 158 protein-coding 140 0.01667
+339967 TMPRSS11A transmembrane serine protease 11A protein-coding 69 0.008217
+339976 TRIML1 tripartite motif family like 1 protein-coding 119 0.01417
+339977 LRRC66 leucine rich repeat containing 66 protein-coding 167 0.01989
+339983 NAT8L N-acetyltransferase 8 like protein-coding 20 0.002382
+340024 SLC6A19 solute carrier family 6 member 19 protein-coding 114 0.01358
+340061 TMEM173 transmembrane protein 173 protein-coding 45 0.005359
+340069 FAM170A family with sequence similarity 170 member A protein-coding 56 0.006669
+340075 ARSI arylsulfatase family member I protein-coding 82 0.009765
+340094 LINC01020 long intergenic non-protein coding RNA 1020 ncRNA 22 0.00262
+340120 ANKRD34B ankyrin repeat domain 34B protein-coding 77 0.00917
+340146 SLC35D3 solute carrier family 35 member D3 protein-coding 44 0.00524
+340152 ZC3H12D zinc finger CCCH-type containing 12D protein-coding 33 0.00393
+340156 MYLK4 myosin light chain kinase family member 4 protein-coding 57 0.006788
+340168 DPPA5 developmental pluripotency associated 5 protein-coding 29 0.003454
+340204 CLPSL1 colipase like 1 protein-coding 16 0.001905
+340205 TREML1 triggering receptor expressed on myeloid cells like 1 protein-coding 29 0.003454
+340206 TREML3P triggering receptor expressed on myeloid cells like 3, pseudogene pseudo 34 0.004049
+340252 ZNF680 zinc finger protein 680 protein-coding 79 0.009408
+340260 UNCX UNC homeobox protein-coding 26 0.003096
+340267 COL28A1 collagen type XXVIII alpha 1 chain protein-coding 149 0.01774
+340273 ABCB5 ATP binding cassette subfamily B member 5 protein-coding 259 0.03084
+340277 FAM221A family with sequence similarity 221 member A protein-coding 35 0.004168
+340286 FAM183BP acyloxyacyl hydrolase (neutrophil) pseudo 39 0.004645
+340307 CTAGE6 CTAGE family member 6 protein-coding 54 0.006431
+340348 TSPAN33 tetraspanin 33 protein-coding 23 0.002739
+340351 AGBL3 ATP/GTP binding protein like 3 protein-coding 71 0.008455
+340359 KLHL38 kelch like family member 38 protein-coding 98 0.01167
+340371 NRBP2 nuclear receptor binding protein 2 protein-coding 39 0.004645
+340385 ZNF517 zinc finger protein 517 protein-coding 47 0.005597
+340390 WDR97 WD repeat domain 97 protein-coding 27 0.003215
+340393 TMEM249 transmembrane protein 249 protein-coding 4 0.0004764
+340419 RSPO2 R-spondin 2 protein-coding 74 0.008813
+340441 POTEA POTE ankyrin domain family member A protein-coding 119 0.01417
+340481 ZDHHC21 zinc finger DHHC-type containing 21 protein-coding 28 0.003335
+340485 ACER2 alkaline ceramidase 2 protein-coding 29 0.003454
+340526 RTL5 retrotransposon Gag like 5 protein-coding 105 0.0125
+340527 NHSL2 NHS like 2 protein-coding 96 0.01143
+340529 PABPC1L2A poly(A) binding protein cytoplasmic 1 like 2A protein-coding 1 0.0001191
+340533 NEXMIF neurite extension and migration factor protein-coding 272 0.03239
+340542 BEX5 brain expressed X-linked 5 protein-coding 19 0.002263
+340543 TCEAL5 transcription elongation factor A like 5 protein-coding 46 0.005478
+340547 VSIG1 V-set and immunoglobulin domain containing 1 protein-coding 51 0.006074
+340554 ZC3H12B zinc finger CCCH-type containing 12B protein-coding 119 0.01417
+340562 SATL1 spermidine/spermine N1-acetyl transferase like 1 protein-coding 95 0.01131
+340578 DCAF12L2 DDB1 and CUL4 associated factor 12 like 2 protein-coding 191 0.02275
+340591 CA5BP1 carbonic anhydrase 5B pseudogene 1 pseudo 30 0.003573
+340595 RTL4 retrotransposon Gag like 4 protein-coding 71 0.008455
+340596 LHFPL1 LHFPL tetraspan subfamily member 1 protein-coding 40 0.004764
+340602 CXorf67 chromosome X open reading frame 67 protein-coding 95 0.01131
+340654 LIPM lipase family member M protein-coding 28 0.003335
+340665 CYP26C1 cytochrome P450 family 26 subfamily C member 1 protein-coding 28 0.003335
+340706 VWA2 von Willebrand factor A domain containing 2 protein-coding 73 0.008694
+340719 NANOS1 nanos C2HC-type zinc finger 1 protein-coding 268 0.03192
+340745 LRIT2 leucine rich repeat, Ig-like and transmembrane domains 2 protein-coding 83 0.009884
+340784 HMX3 H6 family homeobox 3 protein-coding 35 0.004168
+340811 AKR1C8P aldo-keto reductase family 1 member C8, pseudogene pseudo 20 0.002382
+340895 MALRD1 MAM and LDL receptor class A domain containing 1 protein-coding 36 0.004287
+340980 OR52B6 olfactory receptor family 52 subfamily B member 6 protein-coding 53 0.006312
+340990 OTOG otogelin protein-coding 71 0.008455
+341019 DCDC1 doublecortin domain containing 1 protein-coding 309 0.0368
+341032 C11orf53 chromosome 11 open reading frame 53 protein-coding 30 0.003573
+341116 MS4A10 membrane spanning 4-domains A10 protein-coding 47 0.005597
+341152 OR2AT4 olfactory receptor family 2 subfamily AT member 4 protein-coding 47 0.005597
+341208 HEPHL1 hephaestin like 1 protein-coding 176 0.02096
+341276 OR10A2 olfactory receptor family 10 subfamily A member 2 protein-coding 61 0.007264
+341277 OVCH2 ovochymase 2 (gene/pseudogene) protein-coding 47 0.005597
+341346 SMCO2 single-pass membrane protein with coiled-coil domains 2 protein-coding 27 0.003215
+341350 OVCH1 ovochymase 1 protein-coding 190 0.02263
+341359 SYT10 synaptotagmin 10 protein-coding 116 0.01381
+341392 ACSM4 acyl-CoA synthetase medium chain family member 4 protein-coding 95 0.01131
+341405 ANKRD33 ankyrin repeat domain 33 protein-coding 73 0.008694
+341416 OR6C2 olfactory receptor family 6 subfamily C member 2 protein-coding 44 0.00524
+341418 OR6C4 olfactory receptor family 6 subfamily C member 4 protein-coding 47 0.005597
+341567 H1FNT H1 histone family member N, testis specific protein-coding 33 0.00393
+341568 OR8S1 olfactory receptor family 8 subfamily S member 1 protein-coding 46 0.005478
+341640 FREM2 FRAS1 related extracellular matrix protein 2 protein-coding 380 0.04525
+341676 NEK5 NIMA related kinase 5 protein-coding 107 0.01274
+341799 OR6S1 olfactory receptor family 6 subfamily S member 1 protein-coding 62 0.007384
+341880 SLC35F4 solute carrier family 35 member F4 protein-coding 69 0.008217
+341883 LRRC9 leucine rich repeat containing 9 protein-coding 50 0.005955
+341947 COX8C cytochrome c oxidase subunit 8C protein-coding 9 0.001072
+342035 GLDN gliomedin protein-coding 50 0.005955
+342096 GOLGA6A golgin A6 family member A protein-coding 44 0.00524
+342125 TMC3 transmembrane channel like 3 protein-coding 133 0.01584
+342132 ZNF774 zinc finger protein 774 protein-coding 44 0.00524
+342184 FMN1 formin 1 protein-coding 161 0.01917
+342346 C16orf96 chromosome 16 open reading frame 96 protein-coding 78 0.009289
+342357 ZKSCAN2 zinc finger with KRAB and SCAN domains 2 protein-coding 165 0.01965
+342371 ATXN1L ataxin 1 like protein-coding 34 0.004049
+342372 PKD1L3 polycystin 1 like 3, transient receptor potential channel interacting protein-coding 89 0.0106
+342510 CD300E CD300e molecule protein-coding 37 0.004406
+342527 SMTNL2 smoothelin like 2 protein-coding 41 0.004883
+342538 NACA2 nascent polypeptide associated complex alpha subunit 2 protein-coding 42 0.005002
+342574 KRT27 keratin 27 protein-coding 67 0.007979
+342618 SLFN14 schlafen family member 14 protein-coding 66 0.00786
+342666 LRRC37A11P leucine rich repeat containing 37 member A11, pseudogene pseudo 22 0.00262
+342667 STAC2 SH3 and cysteine rich domain 2 protein-coding 54 0.006431
+342850 ANKRD62 ankyrin repeat domain 62 protein-coding 48 0.005716
+342865 VSTM2B V-set and transmembrane domain containing 2B protein-coding 39 0.004645
+342892 ZNF850 zinc finger protein 850 protein-coding 63 0.007503
+342897 NCCRP1 non-specific cytotoxic cell receptor protein 1 homolog (zebrafish) protein-coding 37 0.004406
+342898 SYCN syncollin protein-coding 14 0.001667
+342900 LEUTX leucine twenty homeobox protein-coding 11 0.00131
+342908 ZNF404 zinc finger protein 404 protein-coding 77 0.00917
+342909 ZNF284 zinc finger protein 284 protein-coding 79 0.009408
+342926 ZNF677 zinc finger protein 677 protein-coding 106 0.01262
+342931 RFPL4A ret finger protein like 4A protein-coding 37 0.004406
+342933 ZSCAN5B zinc finger and SCAN domain containing 5B protein-coding 96 0.01143
+342945 ZSCAN22 zinc finger and SCAN domain containing 22 protein-coding 68 0.008098
+342977 NANOS3 nanos C2HC-type zinc finger 3 protein-coding 185 0.02203
+342979 PALM3 paralemmin 3 protein-coding 35 0.004168
+343035 RD3 retinal degeneration 3 protein-coding 40 0.004764
+343066 AADACL4 arylacetamide deacetylase like 4 protein-coding 75 0.008932
+343068 PRAMEF5 PRAME family member 5 protein-coding 17 0.002025
+343069 HNRNPCL1 heterogeneous nuclear ribonucleoprotein C-like 1 protein-coding 84 0.01
+343071 PRAMEF10 PRAME family member 10 protein-coding 60 0.007145
+343099 CCDC18 coiled-coil domain containing 18 protein-coding 131 0.0156
+343169 OR6F1 olfactory receptor family 6 subfamily F member 1 protein-coding 123 0.01465
+343170 OR14K1 olfactory receptor family 14 subfamily K member 1 protein-coding 108 0.01286
+343171 OR2W3 olfactory receptor family 2 subfamily W member 3 protein-coding 111 0.01322
+343172 OR2T8 olfactory receptor family 2 subfamily T member 8 protein-coding 87 0.01036
+343173 OR2T3 olfactory receptor family 2 subfamily T member 3 protein-coding 124 0.01477
+343263 MYBPHL myosin binding protein H like protein-coding 29 0.003454
+343406 OR10R2 olfactory receptor family 10 subfamily R member 2 protein-coding 92 0.01096
+343413 FCRL6 Fc receptor like 6 protein-coding 58 0.006907
+343450 KCNT2 potassium sodium-activated channel subfamily T member 2 protein-coding 279 0.03323
+343472 BARHL2 BarH like homeobox 2 protein-coding 75 0.008932
+343521 TCTEX1D4 Tctex1 domain containing 4 protein-coding 14 0.001667
+343563 OR2T29 olfactory receptor family 2 subfamily T member 29 protein-coding 14 0.001667
+343637 RSPO4 R-spondin 4 protein-coding 31 0.003692
+343641 TGM6 transglutaminase 6 protein-coding 139 0.01655
+343702 XKR7 XK related 7 protein-coding 97 0.01155
+343930 MSGN1 mesogenin 1 protein-coding 37 0.004406
+343990 KIAA1211L KIAA1211 like protein-coding 85 0.01012
+344018 FIGLA folliculogenesis specific bHLH transcription factor protein-coding 25 0.002977
+344022 NOTO notochord homeobox protein-coding 19 0.002263
+344148 NCKAP5 NCK associated protein 5 protein-coding 307 0.03656
+344167 FOXI3 forkhead box I3 protein-coding 38 0.004525
+344191 EVX2 even-skipped homeobox 2 protein-coding 67 0.007979
+344387 CDKL4 cyclin dependent kinase like 4 protein-coding 52 0.006193
+344558 SH3RF3 SH3 domain containing ring finger 3 protein-coding 75 0.008932
+344561 GPR148 G protein-coupled receptor 148 protein-coding 56 0.006669
+344657 LRRIQ4 leucine rich repeats and IQ motif containing 4 protein-coding 75 0.008932
+344658 SAMD7 sterile alpha motif domain containing 7 protein-coding 82 0.009765
+344752 AADACL2 arylacetamide deacetylase like 2 protein-coding 84 0.01
+344758 GPR149 G protein-coupled receptor 149 protein-coding 145 0.01727
+344787 ZNF860 zinc finger protein 860 protein-coding 71 0.008455
+344805 TMPRSS7 transmembrane serine protease 7 protein-coding 94 0.01119
+344807 CD200R1L CD200 receptor 1 like protein-coding 49 0.005835
+344838 PAQR9 progestin and adipoQ receptor family member 9 protein-coding 86 0.01024
+344875 COL6A4P1 collagen type VI alpha 4 pseudogene 1 pseudo 32 0.003811
+344892 RTP2 receptor transporter protein 2 protein-coding 56 0.006669
+344901 OSTN osteocrin protein-coding 27 0.003215
+344905 ATP13A5 ATPase 13A5 protein-coding 167 0.01989
+345062 PRSS48 serine protease 48 protein-coding 36 0.004287
+345079 SOWAHB sosondowah ankyrin repeat domain family member B protein-coding 74 0.008813
+345193 LRIT3 leucine rich repeat, Ig-like and transmembrane domains 3 protein-coding 72 0.008574
+345222 MSANTD1 Myb/SANT DNA binding domain containing 1 protein-coding 17 0.002025
+345274 SLC10A6 solute carrier family 10 member 6 protein-coding 50 0.005955
+345275 HSD17B13 hydroxysteroid 17-beta dehydrogenase 13 protein-coding 29 0.003454
+345456 PFN3 profilin 3 protein-coding 6 0.0007145
+345462 ZNF879 zinc finger protein 879 protein-coding 59 0.007026
+345557 PLCXD3 phosphatidylinositol specific phospholipase C X domain containing 3 protein-coding 95 0.01131
+345611 IRGM immunity related GTPase M protein-coding 9 0.001072
+345630 FBLL1 fibrillarin like 1 protein-coding 26 0.003096
+345643 MCIDAS multiciliate differentiation and DNA synthesis associated cell cycle protein protein-coding 9 0.001072
+345651 ACTBL2 actin, beta like 2 protein-coding 55 0.00655
+345757 FAM174A family with sequence similarity 174 member A protein-coding 28 0.003335
+345778 MTX3 metaxin 3 protein-coding 24 0.002858
+345895 RSPH4A radial spoke head 4 homolog A protein-coding 76 0.009051
+345930 ECT2L epithelial cell transforming 2 like protein-coding 102 0.01215
+346007 EYS eyes shut homolog (Drosophila) protein-coding 366 0.04359
+346157 ZNF391 zinc finger protein 391 protein-coding 52 0.006193
+346171 ZFP57 ZFP57 zinc finger protein protein-coding 93 0.01108
+346288 SEPT14 septin 14 protein-coding 92 0.01096
+346389 MACC1 MACC1, MET transcriptional regulator protein-coding 123 0.01465
+346517 OR6V1 olfactory receptor family 6 subfamily V member 1 protein-coding 44 0.00524
+346525 OR2A12 olfactory receptor family 2 subfamily A member 12 protein-coding 67 0.007979
+346528 OR2A1 olfactory receptor family 2 subfamily A member 1 protein-coding 39 0.004645
+346562 GNAT3 G protein subunit alpha transducin 3 protein-coding 50 0.005955
+346606 MOGAT3 monoacylglycerol O-acyltransferase 3 protein-coding 147 0.01751
+346653 FAM71F2 family with sequence similarity 71 member F2 protein-coding 31 0.003692
+346673 STRA8 stimulated by retinoic acid 8 protein-coding 51 0.006074
+346689 KLRG2 killer cell lectin like receptor G2 protein-coding 27 0.003215
+346702 PRSS51 serine protease 51 protein-coding 10 0.001191
+347051 SLC10A5 solute carrier family 10 member 5 protein-coding 62 0.007384
+347088 ADGRD2 adhesion G protein-coupled receptor D2 protein-coding 55 0.00655
+347127 SPATA31D5P SPATA31 subfamily D member 5, pseudogene pseudo 288 0.0343
+347148 QRFP pyroglutamylated RFamide peptide protein-coding 16 0.001905
+347168 OR1J1 olfactory receptor family 1 subfamily J member 1 protein-coding 48 0.005716
+347169 OR1B1 olfactory receptor family 1 subfamily B member 1 (gene/pseudogene) protein-coding 51 0.006074
+347240 KIF24 kinesin family member 24 protein-coding 101 0.01203
+347252 IGFBPL1 insulin like growth factor binding protein like 1 protein-coding 23 0.002739
+347273 CAVIN4 caveolae associated protein 4 protein-coding 61 0.007264
+347344 ZNF81 zinc finger protein 81 protein-coding 96 0.01143
+347365 ITIH6 inter-alpha-trypsin inhibitor heavy chain family member 6 protein-coding 199 0.0237
+347404 LANCL3 LanC like 3 protein-coding 43 0.005121
+347442 DCAF8L2 DDB1 and CUL4 associated factor 8 like 2 protein-coding 129 0.01536
+347454 SOWAHD sosondowah ankyrin repeat domain family member D protein-coding 28 0.003335
+347468 OR13H1 olfactory receptor family 13 subfamily H member 1 protein-coding 63 0.007503
+347475 CCDC160 coiled-coil domain containing 160 protein-coding 53 0.006312
+347487 CXorf66 chromosome X open reading frame 66 protein-coding 79 0.009408
+347516 DGAT2L6 diacylglycerol O-acyltransferase 2 like 6 protein-coding 65 0.007741
+347517 RAB41 RAB41, member RAS oncogene family protein-coding 25 0.002977
+347527 ARSH arylsulfatase family member H protein-coding 60 0.007145
+347686 SNORD64 small nucleolar RNA, C/D box 64 snoRNA 6 0.0007145
+347688 TUBB8 tubulin beta 8 class VIII protein-coding 80 0.009527
+347689 SOX2-OT SOX2 overlapping transcript ncRNA 2 0.0002382
+347717 SRP68P3 signal recognition particle 68 pseudogene 3 pseudo 11 0.00131
+347730 LRRTM1 leucine rich repeat transmembrane neuronal 1 protein-coding 155 0.01846
+347731 LRRTM3 leucine rich repeat transmembrane neuronal 3 protein-coding 136 0.0162
+347732 CATSPER3 cation channel sperm associated 3 protein-coding 61 0.007264
+347733 TUBB2B tubulin beta 2B class IIb protein-coding 47 0.005597
+347734 SLC35B2 solute carrier family 35 member B2 protein-coding 47 0.005597
+347735 SERINC2 serine incorporator 2 protein-coding 43 0.005121
+347736 NME9 NME/NM23 family member 9 protein-coding 52 0.006193
+347741 OTOP3 otopetrin 3 protein-coding 59 0.007026
+347744 C6orf52 chromosome 6 open reading frame 52 protein-coding 14 0.001667
+347853 TBX10 T-box 10 protein-coding 54 0.006431
+347862 GATD1 glutamine amidotransferase like class 1 domain containing 1 protein-coding 22 0.00262
+347902 AMIGO2 adhesion molecule with Ig like domain 2 protein-coding 58 0.006907
+347918 EP400P1 EP400 pseudogene 1 pseudo 23 0.002739
+348013 TMEM255B transmembrane protein 255B protein-coding 60 0.007145
+348093 RBPMS2 RNA binding protein, mRNA processing factor 2 protein-coding 19 0.002263
+348094 ANKDD1A ankyrin repeat and death domain containing 1A protein-coding 50 0.005955
+348158 ACSM2B acyl-CoA synthetase medium chain family member 2B protein-coding 148 0.01763
+348174 CLEC18A C-type lectin domain family 18 member A protein-coding 21 0.002501
+348180 CTU2 cytosolic thiouridylase subunit 2 protein-coding 46 0.005478
+348235 SKA2 spindle and kinetochore associated complex subunit 2 protein-coding 14 0.001667
+348262 MCRIP1 MAPK regulated corepressor interacting protein 1 protein-coding 6 0.0007145
+348303 SELENOV selenoprotein V protein-coding 25 0.002977
+348327 ZNF530 zinc finger protein 530 protein-coding 74 0.008813
+348378 SHISAL2A shisa like 2A protein-coding 23 0.002739
+348487 FAM131C family with sequence similarity 131 member C protein-coding 22 0.00262
+348645 C22orf34 chromosome 22 open reading frame 34 protein-coding 5 0.0005955
+348654 GEN1 GEN1, Holliday junction 5' flap endonuclease protein-coding 90 0.01072
+348738 C2orf48 chromosome 2 open reading frame 48 protein-coding 18 0.002144
+348793 WDR53 WD repeat domain 53 protein-coding 42 0.005002
+348801 LNP1 leukemia NUP98 fusion partner 1 protein-coding 28 0.003335
+348807 CFAP100 cilia and flagella associated protein 100 protein-coding 92 0.01096
+348825 TPRXL tetrapeptide repeat homeobox like pseudo 6 0.0007145
+348840 ANKRD18DP ankyrin repeat domain 18D, pseudogene pseudo 44 0.00524
+348926 FAM86EP family with sequence similarity 86, member A pseudogene pseudo 67 0.007979
+348932 SLC6A18 solute carrier family 6 member 18 protein-coding 87 0.01036
+348938 NIPAL4 NIPA like domain containing 4 protein-coding 54 0.006431
+348980 HCN1 hyperpolarization activated cyclic nucleotide gated potassium channel 1 protein-coding 348 0.04144
+348995 NUP43 nucleoporin 43 protein-coding 45 0.005359
+349075 ZNF713 zinc finger protein 713 protein-coding 49 0.005835
+349114 LINC00265 long intergenic non-protein coding RNA 265 ncRNA 20 0.002382
+349136 WDR86 WD repeat domain 86 protein-coding 37 0.004406
+349149 GJC3 gap junction protein gamma 3 protein-coding 28 0.003335
+349152 DPY19L2P2 DPY19L2 pseudogene 2 pseudo 105 0.0125
+349565 NMNAT3 nicotinamide nucleotide adenylyltransferase 3 protein-coding 29 0.003454
+349633 PLET1 placenta expressed transcript 1 protein-coding 15 0.001786
+349667 RTN4RL2 reticulon 4 receptor like 2 protein-coding 32 0.003811
+350383 GPR142 G protein-coupled receptor 142 protein-coding 83 0.009884
+352909 DNAAF3 dynein axonemal assembly factor 3 protein-coding 183 0.02179
+352954 CASTOR3 CASTOR family member 3 protein-coding 12 0.001429
+352962 HLA-V major histocompatibility complex, class I, V (pseudogene) pseudo 16 0.001905
+352999 C6orf58 chromosome 6 open reading frame 58 protein-coding 64 0.007622
+353088 ZNF429 zinc finger protein 429 protein-coding 107 0.01274
+353091 RAET1G retinoic acid early transcript 1G protein-coding 30 0.003573
+353116 RILPL1 Rab interacting lysosomal protein like 1 protein-coding 45 0.005359
+353131 LCE1A late cornified envelope 1A protein-coding 29 0.003454
+353132 LCE1B late cornified envelope 1B protein-coding 34 0.004049
+353133 LCE1C late cornified envelope 1C protein-coding 33 0.00393
+353134 LCE1D late cornified envelope 1D protein-coding 25 0.002977
+353135 LCE1E late cornified envelope 1E protein-coding 33 0.00393
+353137 LCE1F late cornified envelope 1F protein-coding 35 0.004168
+353139 LCE2A late cornified envelope 2A protein-coding 28 0.003335
+353140 LCE2C late cornified envelope 2C protein-coding 46 0.005478
+353141 LCE2D late cornified envelope 2D protein-coding 37 0.004406
+353142 LCE3A late cornified envelope 3A protein-coding 17 0.002025
+353143 LCE3B late cornified envelope 3B protein-coding 10 0.001191
+353144 LCE3C late cornified envelope 3C protein-coding 7 0.0008336
+353145 LCE3E late cornified envelope 3E protein-coding 25 0.002977
+353149 TBC1D26 TBC1 domain family member 26 protein-coding 28 0.003335
+353164 TAS2R42 taste 2 receptor member 42 protein-coding 38 0.004525
+353174 ZACN zinc activated ion channel protein-coding 51 0.006074
+353189 SLCO4C1 solute carrier organic anion transporter family member 4C1 protein-coding 120 0.01429
+353219 KAAG1 kidney associated antigen 1 protein-coding 7 0.0008336
+353238 PADI6 peptidyl arginine deiminase 6 protein-coding 100 0.01191
+353274 ZNF445 zinc finger protein 445 protein-coding 112 0.01334
+353288 KRT26 keratin 26 protein-coding 64 0.007622
+353299 RGSL1 regulator of G protein signaling like 1 protein-coding 70 0.008336
+353322 ANKRD37 ankyrin repeat domain 37 protein-coding 17 0.002025
+353323 KRTAP12-2 keratin associated protein 12-2 protein-coding 26 0.003096
+353324 SPATA12 spermatogenesis associated 12 protein-coding 19 0.002263
+353332 KRTAP12-1 keratin associated protein 12-1 protein-coding 13 0.001548
+353333 KRTAP10-10 keratin associated protein 10-10 protein-coding 38 0.004525
+353345 GPR141 G protein-coupled receptor 141 protein-coding 93 0.01108
+353355 ZNF233 zinc finger protein 233 protein-coding 76 0.009051
+353497 POLN DNA polymerase nu protein-coding 90 0.01072
+353500 BMP8A bone morphogenetic protein 8a protein-coding 23 0.002739
+353514 LILRA5 leukocyte immunoglobulin like receptor A5 protein-coding 73 0.008694
+359710 BPIFB3 BPI fold containing family B member 3 protein-coding 63 0.007503
+359787 DPPA3 developmental pluripotency associated 3 protein-coding 39 0.004645
+359845 RFLNB refilin B protein-coding 25 0.002977
+359948 IRF2BP2 interferon regulatory factor 2 binding protein 2 protein-coding 46 0.005478
+360023 ZBTB41 zinc finger and BTB domain containing 41 protein-coding 135 0.01608
+360030 NANOGNB NANOG neighbor homeobox protein-coding 17 0.002025
+360158 CYCSP5 cytochrome c, somatic pseudogene 5 pseudo 39 0.004645
+360163 CYCTP cytochrome c, testis, pseudogene pseudo 8 0.0009527
+360165 NDUFA4P1 NDUFA4, mitochondrial complex associated pseudogene 1 pseudo 13 0.001548
+360200 TMPRSS9 transmembrane serine protease 9 protein-coding 100 0.01191
+360203 GLT6D1 glycosyltransferase 6 domain containing 1 protein-coding 45 0.005359
+360226 PRSS41 serine protease 41 protein-coding 15 0.001786
+373156 GSTK1 glutathione S-transferase kappa 1 protein-coding 35 0.004168
+373159 STK19B serine/threonine kinase 19B (pseudogene) pseudo 42 0.005002
+373509 USP50 ubiquitin specific peptidase 50 protein-coding 28 0.003335
+373856 USP41 ubiquitin specific peptidase 41 protein-coding 36 0.004287
+373863 DND1 DND microRNA-mediated repression inhibitor 1 protein-coding 18 0.002144
+374286 CDRT1 CMT1A duplicated region transcript 1 protein-coding 28 0.003335
+374291 NDUFS7 NADH:ubiquinone oxidoreductase core subunit S7 protein-coding 31 0.003692
+374308 PTCHD3 patched domain containing 3 protein-coding 152 0.0181
+374354 NHLRC2 NHL repeat containing 2 protein-coding 78 0.009289
+374355 CCDC172 coiled-coil domain containing 172 protein-coding 58 0.006907
+374378 GALNT18 polypeptide N-acetylgalactosaminyltransferase 18 protein-coding 169 0.02013
+374383 NCR3LG1 natural killer cell cytotoxicity receptor 3 ligand 1 protein-coding 15 0.001786
+374393 FAM111B family with sequence similarity 111 member B protein-coding 79 0.009408
+374395 TMEM179B transmembrane protein 179B protein-coding 19 0.002263
+374403 TBC1D10C TBC1 domain family member 10C protein-coding 57 0.006788
+374407 DNAJB13 DnaJ heat shock protein family (Hsp40) member B13 protein-coding 48 0.005716
+374454 KRT77 keratin 77 protein-coding 63 0.007503
+374462 PTPRQ protein tyrosine phosphatase, receptor type Q protein-coding 135 0.01608
+374470 C12orf42 chromosome 12 open reading frame 42 protein-coding 70 0.008336
+374569 ASPG asparaginase protein-coding 68 0.008098
+374618 TEX9 testis expressed 9 protein-coding 47 0.005597
+374650 GOLGA6L5P golgin A6 family-like 5, pseudogene pseudo 4 0.0004764
+374654 KIF7 kinesin family member 7 protein-coding 129 0.01536
+374655 ZNF710 zinc finger protein 710 protein-coding 65 0.007741
+374659 HDDC3 HD domain containing 3 protein-coding 12 0.001429
+374666 WASH3P WAS protein family homolog 3 pseudogene pseudo 2 0.0002382
+374677 WASH4P WAS protein family homolog 4 pseudogene pseudo 19 0.002263
+374739 TEPP testis, prostate and placenta expressed protein-coding 36 0.004287
+374768 SPEM1 spermatid maturation 1 protein-coding 57 0.006788
+374786 EFCAB5 EF-hand calcium binding domain 5 protein-coding 166 0.01977
+374819 LRRC37A3 leucine rich repeat containing 37 member A3 protein-coding 138 0.01643
+374860 ANKRD30B ankyrin repeat domain 30B protein-coding 232 0.02763
+374864 CCDC178 coiled-coil domain containing 178 protein-coding 180 0.02144
+374868 ATP9B ATPase phospholipid transporting 9B (putative) protein-coding 106 0.01262
+374872 PEAK3 PEAK family member 3 protein-coding 28 0.003335
+374875 HSD11B1L hydroxysteroid 11-beta dehydrogenase 1 like protein-coding 17 0.002025
+374877 TEX45 testis expressed 45 protein-coding 35 0.004168
+374879 ZNF699 zinc finger protein 699 protein-coding 76 0.009051
+374882 TMEM205 transmembrane protein 205 protein-coding 16 0.001905
+374887 YJEFN3 YjeF N-terminal domain containing 3 protein-coding 29 0.003454
+374897 SBSN suprabasin protein-coding 80 0.009527
+374899 ZNF829 zinc finger protein 829 protein-coding 80 0.009527
+374900 ZNF568 zinc finger protein 568 protein-coding 134 0.01596
+374907 B3GNT8 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 8 protein-coding 39 0.004645
+374918 IGFL1 IGF like family member 1 protein-coding 17 0.002025
+374920 ZSWIM9 zinc finger SWIM-type containing 9 protein-coding 20 0.002382
+374928 ZNF773 zinc finger protein 773 protein-coding 77 0.00917
+374946 DRAXIN dorsal inhibitory axon guidance protein protein-coding 52 0.006193
+374955 SPATA21 spermatogenesis associated 21 protein-coding 41 0.004883
+374969 SVBP small vasohibin binding protein protein-coding 9 0.001072
+374973 TEX38 testis expressed 38 protein-coding 14 0.001667
+374977 MROH7 maestro heat like repeat family member 7 protein-coding 146 0.01739
+374986 MIGA1 mitoguardin 1 protein-coding 83 0.009884
+375033 PEAR1 platelet endothelial aggregation receptor 1 protein-coding 127 0.01512
+375035 SFT2D2 SFT2 domain containing 2 protein-coding 16 0.001905
+375056 MIA3 MIA family member 3, ER export factor protein-coding 189 0.02251
+375057 STUM stum, mechanosensory transduction mediator homolog protein-coding 15 0.001786
+375061 FAM89A family with sequence similarity 89 member A protein-coding 15 0.001786
+375133 PI4KAP2 phosphatidylinositol 4-kinase alpha pseudogene 2 pseudo 21 0.002501
+375189 PFN4 profilin family member 4 protein-coding 15 0.001786
+375190 FAM228B family with sequence similarity 228 member B protein-coding 27 0.003215
+375248 ANKRD36 ankyrin repeat domain 36 protein-coding 140 0.01667
+375260 WASH2P WAS protein family homolog 2 pseudogene pseudo 42 0.005002
+375287 RBM43 RNA binding motif protein 43 protein-coding 56 0.006669
+375295 LINC01116 long intergenic non-protein coding RNA 1116 ncRNA 8 0.0009527
+375298 CERKL ceramide kinase like protein-coding 95 0.01131
+375307 CATIP ciliogenesis associated TTC17 interacting protein protein-coding 41 0.004883
+375316 RBM44 RNA binding motif protein 44 protein-coding 121 0.01441
+375318 AQP12A aquaporin 12A protein-coding 31 0.003692
+375323 LHFPL4 LHFPL tetraspan subfamily member 4 protein-coding 39 0.004645
+375337 TOPAZ1 testis and ovary specific PAZ domain containing 1 protein-coding 93 0.01108
+375341 C3orf62 chromosome 3 open reading frame 62 protein-coding 34 0.004049
+375346 STIMATE STIM activating enhancer protein-coding 23 0.002739
+375387 NRROS negative regulator of reactive oxygen species protein-coding 91 0.01084
+375444 C5orf34 chromosome 5 open reading frame 34 protein-coding 69 0.008217
+375449 MAST4 microtubule associated serine/threonine kinase family member 4 protein-coding 196 0.02334
+375484 SIMC1 SUMO interacting motifs containing 1 protein-coding 44 0.00524
+375519 GJB7 gap junction protein beta 7 protein-coding 22 0.00262
+375567 VWC2 von Willebrand factor C domain containing 2 protein-coding 47 0.005597
+375593 TRIM73 tripartite motif containing 73 protein-coding 16 0.001905
+375607 NAT16 N-acetyltransferase 16 (putative) protein-coding 32 0.003811
+375611 SLC26A5 solute carrier family 26 member 5 protein-coding 107 0.01274
+375612 LHFPL3 LHFPL tetraspan subfamily member 3 protein-coding 90 0.01072
+375616 KCP kielin/chordin-like protein protein-coding 88 0.01048
+375686 SPATC1 spermatogenesis and centriole associated 1 protein-coding 80 0.009527
+375704 ENHO energy homeostasis associated protein-coding 15 0.001786
+375743 PTAR1 protein prenyltransferase alpha subunit repeat containing 1 protein-coding 37 0.004406
+375748 ERCC6L2 ERCC excision repair 6 like 2 protein-coding 120 0.01429
+375757 SWI5 SWI5 homologous recombination repair protein protein-coding 41 0.004883
+375759 C9orf50 chromosome 9 open reading frame 50 protein-coding 35 0.004168
+375775 PNPLA7 patatin like phospholipase domain containing 7 protein-coding 153 0.01822
+375790 AGRN agrin protein-coding 152 0.0181
+375791 CYSRT1 cysteine rich tail 1 protein-coding 12 0.001429
+375940 DMBT1P1 deleted in malignant brain tumors 1 pseudogene 1 pseudo 38 0.004525
+376132 LRRC10 leucine rich repeat containing 10 protein-coding 44 0.00524
+376267 RAB15 RAB15, member RAS oncogene family protein-coding 17 0.002025
+376412 RNF126P1 ring finger protein 126 pseudogene 1 pseudo 43 0.005121
+376497 SLC27A1 solute carrier family 27 member 1 protein-coding 72 0.008574
+376693 RPS10P7 ribosomal protein S10 pseudogene 7 pseudo 19 0.002263
+376940 ZC3H6 zinc finger CCCH-type containing 6 protein-coding 127 0.01512
+377007 KLHL30 kelch like family member 30 protein-coding 57 0.006788
+377047 PRSS45 serine protease 45 protein-coding 24 0.002858
+377630 USP17L2 ubiquitin specific peptidase 17-like family member 2 protein-coding 73 0.008694
+377677 CA13 carbonic anhydrase 13 protein-coding 31 0.003692
+377841 ENTPD8 ectonucleoside triphosphate diphosphohydrolase 8 protein-coding 42 0.005002
+378108 TRIM74 tripartite motif containing 74 protein-coding 17 0.002025
+378708 CENPS centromere protein S protein-coding 9 0.001072
+378807 CATSPER4 cation channel sperm associated 4 protein-coding 54 0.006431
+378832 COL18A1-AS1 COL18A1 antisense RNA 1 ncRNA 24 0.002858
+378884 NHLRC1 NHL repeat containing E3 ubiquitin protein ligase 1 protein-coding 57 0.006788
+378925 RNF148 ring finger protein 148 protein-coding 64 0.007622
+378938 MALAT1 metastasis associated lung adenocarcinoma transcript 1 (non-protein coding) ncRNA 374 0.04454
+378950 RBMY1E RNA binding motif protein, Y-linked, family 1, member E protein-coding 6 0.0007145
+386617 KCTD8 potassium channel tetramerization domain containing 8 protein-coding 142 0.01691
+386618 KCTD4 potassium channel tetramerization domain containing 4 protein-coding 23 0.002739
+386653 IL31 interleukin 31 protein-coding 26 0.003096
+386672 KRTAP10-4 keratin associated protein 10-4 protein-coding 67 0.007979
+386674 KRTAP10-6 keratin associated protein 10-6 protein-coding 45 0.005359
+386675 KRTAP10-7 keratin associated protein 10-7 protein-coding 59 0.007026
+386676 KRTAP10-9 keratin associated protein 10-9 protein-coding 48 0.005716
+386677 KRTAP10-1 keratin associated protein 10-1 protein-coding 33 0.00393
+386678 KRTAP10-11 keratin associated protein 10-11 protein-coding 53 0.006312
+386679 KRTAP10-2 keratin associated protein 10-2 protein-coding 21 0.002501
+386680 KRTAP10-5 keratin associated protein 10-5 protein-coding 46 0.005478
+386681 KRTAP10-8 keratin associated protein 10-8 protein-coding 34 0.004049
+386682 KRTAP10-3 keratin associated protein 10-3 protein-coding 29 0.003454
+386683 KRTAP12-3 keratin associated protein 12-3 protein-coding 19 0.002263
+386684 KRTAP12-4 keratin associated protein 12-4 protein-coding 18 0.002144
+386685 KRTAP10-12 keratin associated protein 10-12 protein-coding 28 0.003335
+386724 AMIGO3 adhesion molecule with Ig like domain 3 protein-coding 72 0.008574
+386746 MRGPRG MAS related GPR family member G protein-coding 6 0.0007145
+386757 SLC6A10P solute carrier family 6 member 10, pseudogene pseudo 78 0.009289
+387032 ZKSCAN4 zinc finger with KRAB and SCAN domains 4 protein-coding 52 0.006193
+387036 GUSBP2 glucuronidase, beta pseudogene 2 pseudo 20 0.002382
+387082 SUMO4 small ubiquitin-like modifier 4 protein-coding 7 0.0008336
+387103 CENPW centromere protein W protein-coding 14 0.001667
+387104 SOGA3 SOGA family member 3 protein-coding 165 0.01965
+387111 LINC00222 long intergenic non-protein coding RNA 222 ncRNA 3 0.0003573
+387119 CEP85L centrosomal protein 85 like protein-coding 105 0.0125
+387129 NPSR1 neuropeptide S receptor 1 protein-coding 74 0.008813
+387254 SLC7A5P2 solute carrier family 7 member 5 pseudogene 2 pseudo 52 0.006193
+387263 C6orf120 chromosome 6 open reading frame 120 protein-coding 16 0.001905
+387264 KRTAP5-1 keratin associated protein 5-1 protein-coding 37 0.004406
+387266 KRTAP5-3 keratin associated protein 5-3 protein-coding 38 0.004525
+387267 KRTAP5-4 keratin associated protein 5-4 protein-coding 34 0.004049
+387273 KRTAP5-10 keratin associated protein 5-10 protein-coding 41 0.004883
+387328 ZNF322P1 zinc finger protein 322 pseudogene 1 pseudo 38 0.004525
+387332 TBPL2 TATA-box binding protein like 2 protein-coding 48 0.005716
+387338 NSUN4 NOP2/Sun RNA methyltransferase family member 4 protein-coding 28 0.003335
+387357 THEMIS thymocyte selection associated protein-coding 137 0.01632
+387496 RASL11A RAS like family 11 member A protein-coding 30 0.003573
+387509 GPR153 G protein-coupled receptor 153 protein-coding 49 0.005835
+387522 TMEM189-UBE2V1 TMEM189-UBE2V1 readthrough protein-coding 19 0.002263
+387590 TPTEP1 TPTE pseudogene 1 pseudo 46 0.005478
+387597 ILDR2 immunoglobulin like domain containing receptor 2 protein-coding 95 0.01131
+387601 SLC22A25 solute carrier family 22 member 25 protein-coding 86 0.01024
+387638 C10orf113 chromosome 10 open reading frame 113 protein-coding 20 0.002382
+387640 SKIDA1 SKI/DACH domain containing 1 protein-coding 78 0.009289
+387644 FAM238C family with sequence similarity 238 member C (non-protein coding) ncRNA 3 0.0003573
+387647 PTCHD3P1 patched domain containing 3 pseudogene 1 pseudo 13 0.001548
+387680 WASHC2A WASH complex subunit 2A protein-coding 21 0.002501
+387694 SH2D4B SH2 domain containing 4B protein-coding 47 0.005597
+387695 C10orf99 chromosome 10 open reading frame 99 protein-coding 13 0.001548
+387700 SLC16A12 solute carrier family 16 member 12 protein-coding 49 0.005835
+387707 CC2D2B coiled-coil and C2 domain containing 2B protein-coding 65 0.007741
+387712 ENO4 enolase 4 protein-coding 26 0.003096
+387715 ARMS2 age-related maculopathy susceptibility 2 protein-coding 11 0.00131
+387718 TEX36 testis expressed 36 protein-coding 27 0.003215
+387733 IFITM5 interferon induced transmembrane protein 5 protein-coding 22 0.00262
+387748 OR56B1 olfactory receptor family 56 subfamily B member 1 protein-coding 63 0.007503
+387751 GVINP1 GTPase, very large interferon inducible pseudogene 1 pseudo 72 0.008574
+387755 INSC INSC, spindle orientation adaptor protein protein-coding 116 0.01381
+387758 FIBIN fin bud initiation factor homolog (zebrafish) protein-coding 26 0.003096
+387763 C11orf96 chromosome 11 open reading frame 96 protein-coding 1 0.0001191
+387775 SLC22A10 solute carrier family 22 member 10 protein-coding 79 0.009408
+387778 SPDYC speedy/RINGO cell cycle regulator family member C protein-coding 48 0.005716
+387787 LIPT2 lipoyl(octanoyl) transferase 2 protein-coding 5 0.0005955
+387804 VSTM5 V-set and transmembrane domain containing 5 protein-coding 11 0.00131
+387836 CLEC2A C-type lectin domain family 2 member A protein-coding 11 0.00131
+387837 CLEC12B C-type lectin domain family 12 member B protein-coding 36 0.004287
+387849 REP15 RAB15 effector protein protein-coding 12 0.001429
+387856 CCDC184 coiled-coil domain containing 184 protein-coding 26 0.003096
+387882 C12orf75 chromosome 12 open reading frame 75 protein-coding 3 0.0003573
+387885 CFAP73 cilia and flagella associated protein 73 protein-coding 98 0.01167
+387890 TMEM233 transmembrane protein 233 protein-coding 8 0.0009527
+387893 KMT5A lysine methyltransferase 5A protein-coding 38 0.004525
+387911 C1QTNF9B C1q and TNF related 9B protein-coding 50 0.005955
+387914 SHISA2 shisa family member 2 protein-coding 37 0.004406
+387921 NHLRC3 NHL repeat containing 3 protein-coding 44 0.00524
+387923 SERP2 stress associated endoplasmic reticulum protein family member 2 protein-coding 8 0.0009527
+387934 FABP5P1 fatty acid binding protein 5 pseudogene 1 pseudo 14 0.001667
+387978 LINC01551 long intergenic non-protein coding RNA 1551 ncRNA 23 0.002739
+387990 TOMM20L translocase of outer mitochondrial membrane 20 like protein-coding 10 0.001191
+388007 SERPINA13P serpin family A member 13, pseudogene pseudo 58 0.006907
+388015 RTL1 retrotransposon Gag like 1 protein-coding 155 0.01846
+388021 TMEM179 transmembrane protein 179 protein-coding 16 0.001905
+388112 NANOGP8 Nanog homeobox retrogene P8 protein-coding 57 0.006788
+388115 CCDC9B coiled-coil domain containing 9B protein-coding 73 0.008694
+388121 TNFAIP8L3 TNF alpha induced protein 8 like 3 protein-coding 27 0.003215
+388125 C2CD4B C2 calcium dependent domain containing 4B protein-coding 4 0.0004764
+388135 C15orf59 chromosome 15 open reading frame 59 protein-coding 49 0.005835
+388152 GOLGA2P7 golgin A2 pseudogene 7 pseudo 1 0.0001191
+388165 UBE2Q2P1 ubiquitin conjugating enzyme E2 Q2 pseudogene 1 pseudo 26 0.003096
+388182 SPATA41 spermatogenesis associated 41 (non-protein coding) ncRNA 13 0.001548
+388199 PRR25 proline rich 25 protein-coding 35 0.004168
+388228 SBK1 SH3 domain binding kinase 1 protein-coding 26 0.003096
+388255 IGHV3OR16-8 immunoglobulin heavy variable 3/OR16-8 (non-functional) other 52 0.006193
+388272 C16orf87 chromosome 16 open reading frame 87 protein-coding 18 0.002144
+388284 C16orf86 chromosome 16 open reading frame 86 protein-coding 24 0.002858
+388323 GLTPD2 glycolipid transfer protein domain containing 2 protein-coding 16 0.001905
+388324 INCA1 inhibitor of CDK, cyclin A1 interacting protein 1 protein-coding 16 0.001905
+388325 SCIMP SLP adaptor and CSK interacting membrane protein protein-coding 11 0.00131
+388327 C17orf100 chromosome 17 open reading frame 100 protein-coding 2 0.0002382
+388333 SPDYE4 speedy/RINGO cell cycle regulator family member E4 protein-coding 35 0.004168
+388335 TMEM220 transmembrane protein 220 protein-coding 9 0.001072
+388336 SHISA6 shisa family member 6 protein-coding 37 0.004406
+388341 LRRC75A leucine rich repeat containing 75A protein-coding 27 0.003215
+388364 TMIGD1 transmembrane and immunoglobulin domain containing 1 protein-coding 36 0.004287
+388372 CCL4L1 C-C motif chemokine ligand 4 like 1 protein-coding 2 0.0002382
+388381 C17orf98 chromosome 17 open reading frame 98 protein-coding 22 0.00262
+388387 LINC00671 long intergenic non-protein coding RNA 671 ncRNA 13 0.001548
+388389 CCDC103 coiled-coil domain containing 103 protein-coding 22 0.00262
+388394 RPRML reprimo like protein-coding 5 0.0005955
+388403 YPEL2 yippee like 2 protein-coding 22 0.00262
+388407 C17orf82 chromosome 17 open reading frame 82 protein-coding 15 0.001786
+388419 BTBD17 BTB domain containing 17 protein-coding 32 0.003811
+388428 PVALEF parvalbumin like EF-hand containing protein-coding 10 0.001191
+388468 POTEC POTE ankyrin domain family member C protein-coding 172 0.02048
+388503 C3P1 complement component 3 precursor pseudogene pseudo 95 0.01131
+388507 ZNF788P zinc finger family member 788, pseudogene protein-coding 55 0.00655
+388512 CLEC17A C-type lectin domain containing 17A protein-coding 65 0.007741
+388523 ZNF728 zinc finger protein 728 protein-coding 87 0.01036
+388524 RPSAP58 ribosomal protein SA pseudogene 58 protein-coding 36 0.004287
+388531 RGS9BP regulator of G protein signaling 9 binding protein protein-coding 109 0.01298
+388533 KRTDAP keratinocyte differentiation associated protein protein-coding 12 0.001429
+388536 ZNF790 zinc finger protein 790 protein-coding 94 0.01119
+388551 CEACAM16 carcinoembryonic antigen related cell adhesion molecule 16 protein-coding 38 0.004525
+388552 BLOC1S3 biogenesis of lysosomal organelles complex 1 subunit 3 protein-coding 4 0.0004764
+388555 IGFL3 IGF like family member 3 protein-coding 15 0.001786
+388558 ZNF808 zinc finger protein 808 protein-coding 132 0.01572
+388559 ZNF888 zinc finger protein 888 protein-coding 8 0.0009527
+388561 ZNF761 zinc finger protein 761 protein-coding 188 0.02239
+388566 ZNF470 zinc finger protein 470 protein-coding 117 0.01393
+388567 ZNF749 zinc finger protein 749 protein-coding 68 0.008098
+388569 ZNF324B zinc finger protein 324B protein-coding 59 0.007026
+388581 C1QTNF12 C1q and TNF related 12 protein-coding 18 0.002144
+388585 HES5 hes family bHLH transcription factor 5 protein-coding 2 0.0002382
+388588 SMIM1 small integral membrane protein 1 (Vel blood group) protein-coding 6 0.0007145
+388591 RNF207 ring finger protein 207 protein-coding 49 0.005835
+388595 TMEM82 transmembrane protein 82 protein-coding 47 0.005597
+388611 CD164L2 CD164 molecule like 2 protein-coding 12 0.001429
+388633 LDLRAD1 low density lipoprotein receptor class A domain containing 1 protein-coding 22 0.00262
+388646 GBP7 guanylate binding protein 7 protein-coding 77 0.00917
+388649 C1orf146 chromosome 1 open reading frame 146 protein-coding 23 0.002739
+388650 FAM69A family with sequence similarity 69 member A protein-coding 37 0.004406
+388662 SLC6A17 solute carrier family 6 member 17 protein-coding 107 0.01274
+388677 NOTCH2NL notch 2 N-terminal like protein-coding 45 0.005359
+388685 LINC01138 long intergenic non-protein coding RNA 1138 ncRNA 3 0.0003573
+388695 LYSMD1 LysM domain containing 1 protein-coding 27 0.003215
+388697 HRNR hornerin protein-coding 372 0.0443
+388698 FLG2 filaggrin family member 2 protein-coding 349 0.04156
+388701 C1orf189 chromosome 1 open reading frame 189 protein-coding 15 0.001786
+388714 FMO6P flavin containing monooxygenase 6 pseudogene pseudo 22 0.00262
+388719 LINC00272 long intergenic non-protein coding RNA 272 ncRNA 6 0.0007145
+388722 C1orf53 chromosome 1 open reading frame 53 protein-coding 13 0.001548
+388730 TMEM81 transmembrane protein 81 protein-coding 34 0.004049
+388743 CAPN8 calpain 8 protein-coding 36 0.004287
+388753 COA6 cytochrome c oxidase assembly factor 6 protein-coding 21 0.002501
+388759 C1orf229 chromosome 1 open reading frame 229 protein-coding 6 0.0007145
+388789 SMIM26 small integral membrane protein 26 protein-coding 3 0.0003573
+388795 EFCAB8 EF-hand calcium binding domain 8 protein-coding 39 0.004645
+388799 FAM209B family with sequence similarity 209 member B protein-coding 43 0.005121
+388815 MIR99AHG mir-99a-let-7c cluster host gene ncRNA 20 0.002382
+388818 KRTAP26-1 keratin associated protein 26-1 protein-coding 46 0.005478
+388886 LRRC75B leucine rich repeat containing 75B protein-coding 26 0.003096
+388910 LINC00207 long intergenic non-protein coding RNA 207 ncRNA 33 0.00393
+388931 MFSD2B major facilitator superfamily domain containing 2B protein-coding 55 0.00655
+388939 C2orf71 chromosome 2 open reading frame 71 protein-coding 168 0.02001
+388946 TMEM247 transmembrane protein 247 protein-coding 16 0.001905
+388948 LINC01118 long intergenic non-protein coding RNA 1118 ncRNA 1 0.0001191
+388951 TSPYL6 TSPY like 6 protein-coding 60 0.007145
+388960 C2orf78 chromosome 2 open reading frame 78 protein-coding 117 0.01393
+388962 BOLA3 bolA family member 3 protein-coding 15 0.001786
+388963 C2orf81 chromosome 2 open reading frame 81 protein-coding 35 0.004168
+388965 FUNDC2P2 FUN14 domain containing 2 pseudogene 2 pseudo 95 0.01131
+388969 C2orf68 chromosome 2 open reading frame 68 protein-coding 20 0.002382
+389015 SLC9A4 solute carrier family 9 member A4 protein-coding 158 0.01882
+389043 LINC01120 long intergenic non-protein coding RNA 1120 ncRNA 1 0.0001191
+389058 SP5 Sp5 transcription factor protein-coding 22 0.00262
+389072 PLEKHM3 pleckstrin homology domain containing M3 protein-coding 85 0.01012
+389073 C2orf80 chromosome 2 open reading frame 80 protein-coding 39 0.004645
+389075 RESP18 regulated endocrine specific protein 18 protein-coding 20 0.002382
+389084 SNORC secondary ossification center associated regulator of chondrocyte maturation protein-coding 3 0.0003573
+389090 OR6B2 olfactory receptor family 6 subfamily B member 2 protein-coding 52 0.006193
+389114 ZNF662 zinc finger protein 662 protein-coding 65 0.007741
+389118 CDHR4 cadherin related family member 4 protein-coding 54 0.006431
+389119 FAM212A family with sequence similarity 212 member A protein-coding 25 0.002977
+389123 IQCF2 IQ motif containing F2 protein-coding 29 0.003454
+389124 IQCF5 IQ motif containing F5 protein-coding 3 0.0003573
+389136 VGLL3 vestigial like family member 3 protein-coding 71 0.008455
+389151 PRR23B proline rich 23B protein-coding 87 0.01036
+389152 PRR23C proline rich 23C protein-coding 41 0.004883
+389158 PLSCR5 phospholipid scramblase family member 5 protein-coding 52 0.006193
+389161 ANKUB1 ankyrin repeat and ubiquitin domain containing 1 protein-coding 39 0.004645
+389170 LEKR1 leucine, glutamate and lysine rich 1 protein-coding 58 0.006907
+389177 TMEM212 transmembrane protein 212 protein-coding 13 0.001548
+389197 C4orf50 chromosome 4 open reading frame 50 protein-coding 57 0.006788
+389203 SMIM20 small integral membrane protein 20 protein-coding 4 0.0004764
+389206 BEND4 BEN domain containing 4 protein-coding 81 0.009646
+389207 GRXCR1 glutaredoxin and cysteine rich domain containing 1 protein-coding 108 0.01286
+389208 TMPRSS11F transmembrane serine protease 11F protein-coding 100 0.01191
+389257 LRRC14B leucine rich repeat containing 14B protein-coding 50 0.005955
+389289 ANXA2R annexin A2 receptor protein-coding 19 0.002263
+389320 TEX43 testis expressed 43 protein-coding 20 0.002382
+389333 PROB1 proline rich basic protein 1 protein-coding 38 0.004525
+389336 C5orf46 chromosome 5 open reading frame 46 protein-coding 11 0.00131
+389337 ARHGEF37 Rho guanine nucleotide exchange factor 37 protein-coding 67 0.007979
+389362 PSMG4 proteasome assembly chaperone 4 protein-coding 8 0.0009527
+389376 SFTA2 surfactant associated 2 protein-coding 6 0.0007145
+389383 CLPSL2 colipase like 2 protein-coding 10 0.001191
+389384 C6orf222 chromosome 6 open reading frame 222 protein-coding 91 0.01084
+389396 GLYATL3 glycine-N-acyltransferase like 3 protein-coding 27 0.003215
+389400 GFRAL GDNF family receptor alpha like protein-coding 118 0.01405
+389421 LIN28B lin-28 homolog B protein-coding 41 0.004883
+389432 SAMD5 sterile alpha motif domain containing 5 protein-coding 11 0.00131
+389434 IYD iodotyrosine deiodinase protein-coding 30 0.003573
+389472 RPS26P32 ribosomal protein S26 pseudogene 32 pseudo 11 0.00131
+389493 NUPR2 nuclear protein 2, transcriptional regulator protein-coding 2 0.0002382
+389524 GTF2IRD2B GTF2I repeat domain containing 2B protein-coding 51 0.006074
+389541 LAMTOR4 late endosomal/lysosomal adaptor, MAPK and MTOR activator 4 protein-coding 13 0.001548
+389549 FEZF1 FEZ family zinc finger 1 protein-coding 74 0.008813
+389558 FAM180A family with sequence similarity 180 member A protein-coding 32 0.003811
+389610 XKR5 XK related 5 protein-coding 54 0.006431
+389634 LINC00937 long intergenic non-protein coding RNA 937 ncRNA 11 0.00131
+389643 NUGGC nuclear GTPase, germinal center associated protein-coding 95 0.01131
+389649 C8orf86 chromosome 8 open reading frame 86 protein-coding 22 0.00262
+389658 ALKAL1 ALK and LTK ligand 1 protein-coding 17 0.002025
+389668 XKR9 XK related 9 protein-coding 65 0.007741
+389676 C8orf87 chromosome 8 open reading frame 87 protein-coding 5 0.0005955
+389677 RBM12B RNA binding motif protein 12B protein-coding 108 0.01286
+389690 MROH5 maestro heat like repeat family member 5 protein-coding 26 0.003096
+389692 MAFA MAF bZIP transcription factor A protein-coding 7 0.0008336
+389715 FAM205BP transmembrane protein C9orf144B pseudogene pseudo 85 0.01012
+389730 SPATA31A6 SPATA31 subfamily A member 6 protein-coding 196 0.02334
+389763 SPATA31D1 SPATA31 subfamily D member 1 protein-coding 316 0.03763
+389766 C9orf153 chromosome 9 open reading frame 153 protein-coding 23 0.002739
+389792 IER5L immediate early response 5 like protein-coding 6 0.0007145
+389799 CFAP77 cilia and flagella associated protein 77 protein-coding 51 0.006074
+389812 LCN15 lipocalin 15 protein-coding 14 0.001667
+389813 AJM1 apical junction component 1 homolog protein-coding 48 0.005716
+389816 LRRC26 leucine rich repeat containing 26 protein-coding 2 0.0002382
+389827 MYMK myomaker, myoblast fusion factor protein-coding 28 0.003335
+389840 MAP3K15 mitogen-activated protein kinase kinase kinase 15 protein-coding 155 0.01846
+389852 SPACA5 sperm acrosome associated 5 protein-coding 8 0.0009527
+389856 USP27X ubiquitin specific peptidase 27, X-linked protein-coding 40 0.004764
+389860 PAGE2B PAGE family member 2B protein-coding 14 0.001667
+389874 ZCCHC13 zinc finger CCHC-type containing 13 protein-coding 37 0.004406
+389898 UBE2NL ubiquitin conjugating enzyme E2 N like (gene/pseudogene) protein-coding 54 0.006431
+389941 C1QL3 complement C1q like 3 protein-coding 31 0.003692
+390010 NKX1-2 NK1 homeobox 2 protein-coding 12 0.001429
+390036 OR52K1 olfactory receptor family 52 subfamily K member 1 protein-coding 65 0.007741
+390037 OR52I1 olfactory receptor family 52 subfamily I member 1 protein-coding 40 0.004764
+390038 OR51D1 olfactory receptor family 51 subfamily D member 1 protein-coding 78 0.009289
+390053 OR52A4P olfactory receptor family 52 subfamily A member 4 pseudogene pseudo 48 0.005716
+390054 OR52A5 olfactory receptor family 52 subfamily A member 5 protein-coding 94 0.01119
+390058 OR51B6 olfactory receptor family 51 subfamily B member 6 protein-coding 68 0.008098
+390059 OR51M1 olfactory receptor family 51 subfamily M member 1 protein-coding 79 0.009408
+390061 OR51Q1 olfactory receptor family 51 subfamily Q member 1 (gene/pseudogene) protein-coding 85 0.01012
+390063 OR51I1 olfactory receptor family 51 subfamily I member 1 protein-coding 54 0.006431
+390064 OR51I2 olfactory receptor family 51 subfamily I member 2 protein-coding 76 0.009051
+390066 OR52D1 olfactory receptor family 52 subfamily D member 1 protein-coding 62 0.007384
+390067 OR52H1 olfactory receptor family 52 subfamily H member 1 protein-coding 54 0.006431
+390072 OR52N4 olfactory receptor family 52 subfamily N member 4 (gene/pseudogene) protein-coding 68 0.008098
+390075 OR52N5 olfactory receptor family 52 subfamily N member 5 protein-coding 60 0.007145
+390077 OR52N2 olfactory receptor family 52 subfamily N member 2 protein-coding 56 0.006669
+390078 OR52E6 olfactory receptor family 52 subfamily E member 6 protein-coding 64 0.007622
+390079 OR52E8 olfactory receptor family 52 subfamily E member 8 protein-coding 75 0.008932
+390081 OR52E4 olfactory receptor family 52 subfamily E member 4 protein-coding 85 0.01012
+390083 OR56A3 olfactory receptor family 56 subfamily A member 3 protein-coding 77 0.00917
+390093 OR10A6 olfactory receptor family 10 subfamily A member 6 (gene/pseudogene) protein-coding 58 0.006907
+390110 ACCSL 1-aminocyclopropane-1-carboxylate synthase homolog (inactive) like protein-coding 92 0.01096
+390113 OR4X1 olfactory receptor family 4 subfamily X member 1 (gene/pseudogene) protein-coding 66 0.00786
+390142 OR5D13 olfactory receptor family 5 subfamily D member 13 (gene/pseudogene) protein-coding 142 0.01691
+390144 OR5D16 olfactory receptor family 5 subfamily D member 16 protein-coding 118 0.01405
+390148 OR5W2 olfactory receptor family 5 subfamily W member 2 protein-coding 123 0.01465
+390151 OR8H2 olfactory receptor family 8 subfamily H member 2 protein-coding 137 0.01632
+390152 OR8H3 olfactory receptor family 8 subfamily H member 3 protein-coding 116 0.01381
+390154 OR5T3 olfactory receptor family 5 subfamily T member 3 protein-coding 125 0.01489
+390155 OR5T1 olfactory receptor family 5 subfamily T member 1 protein-coding 100 0.01191
+390157 OR8K1 olfactory receptor family 8 subfamily K member 1 protein-coding 92 0.01096
+390162 OR5M9 olfactory receptor family 5 subfamily M member 9 protein-coding 84 0.01
+390167 OR5M10 olfactory receptor family 5 subfamily M member 10 protein-coding 83 0.009884
+390168 OR5M1 olfactory receptor family 5 subfamily M member 1 protein-coding 87 0.01036
+390174 OR9G1 olfactory receptor family 9 subfamily G member 1 protein-coding 93 0.01108
+390181 OR5AK2 olfactory receptor family 5 subfamily AK member 2 protein-coding 52 0.006193
+390190 OR5B2 olfactory receptor family 5 subfamily B member 2 protein-coding 63 0.007503
+390191 OR5B12 olfactory receptor family 5 subfamily B member 12 protein-coding 91 0.01084
+390195 OR5AN1 olfactory receptor family 5 subfamily AN member 1 protein-coding 50 0.005955
+390197 OR4D10 olfactory receptor family 4 subfamily D member 10 protein-coding 85 0.01012
+390199 OR4D9 olfactory receptor family 4 subfamily D member 9 protein-coding 59 0.007026
+390201 OR10V1 olfactory receptor family 10 subfamily V member 1 protein-coding 49 0.005835
+390205 LRRC10B leucine rich repeat containing 10B protein-coding 2 0.0002382
+390212 GPR152 G protein-coupled receptor 152 protein-coding 47 0.005597
+390231 TRIM77 tripartite motif containing 77 protein-coding 52 0.006193
+390243 IZUMO1R IZUMO1 receptor, JUNO protein-coding 30 0.003573
+390245 KDM4E lysine demethylase 4E protein-coding 45 0.005359
+390259 BSX brain specific homeobox protein-coding 56 0.006669
+390260 OR6X1 olfactory receptor family 6 subfamily X member 1 protein-coding 61 0.007264
+390261 OR6M1 olfactory receptor family 6 subfamily M member 1 protein-coding 75 0.008932
+390264 OR10G4 olfactory receptor family 10 subfamily G member 4 protein-coding 79 0.009408
+390265 OR10G7 olfactory receptor family 10 subfamily G member 7 protein-coding 104 0.01239
+390271 OR8B3 olfactory receptor family 8 subfamily B member 3 protein-coding 51 0.006074
+390275 OR8A1 olfactory receptor family 8 subfamily A member 1 protein-coding 59 0.007026
+390321 OR6C1 olfactory receptor family 6 subfamily C member 1 protein-coding 59 0.007026
+390323 OR6C75 olfactory receptor family 6 subfamily C member 75 protein-coding 61 0.007264
+390326 OR6C76 olfactory receptor family 6 subfamily C member 76 protein-coding 46 0.005478
+390327 OR6C70 olfactory receptor family 6 subfamily C member 70 protein-coding 51 0.006074
+390429 OR4N2 olfactory receptor family 4 subfamily N member 2 protein-coding 141 0.01679
+390431 OR4K2 olfactory receptor family 4 subfamily K member 2 protein-coding 123 0.01465
+390433 OR4K13 olfactory receptor family 4 subfamily K member 13 protein-coding 73 0.008694
+390436 OR4K17 olfactory receptor family 4 subfamily K member 17 protein-coding 87 0.01036
+390437 OR4N5 olfactory receptor family 4 subfamily N member 5 protein-coding 79 0.009408
+390439 OR11G2 olfactory receptor family 11 subfamily G member 2 protein-coding 75 0.008932
+390442 OR11H4 olfactory receptor family 11 subfamily H member 4 protein-coding 58 0.006907
+390443 RNASE9 ribonuclease A family member 9 (inactive) protein-coding 36 0.004287
+390445 OR5AU1 olfactory receptor family 5 subfamily AU member 1 protein-coding 45 0.005359
+390502 SERPINA2 serpin family A member 2 (gene/pseudogene) protein-coding 270 0.03215
+390530 IGHV1OR21-1 immunoglobulin heavy variable 1/OR21-1 (non-functional) pseudo 113 0.01346
+390531 IGHV1OR15-9 immunoglobulin heavy variable 1/OR15-9 (non-functional) pseudo 53 0.006312
+390535 GOLGA8EP golgin A8 family member E, pseudogene pseudo 8 0.0009527
+390538 OR4M2 olfactory receptor family 4 subfamily M member 2 protein-coding 143 0.01703
+390594 KBTBD13 kelch repeat and BTB domain containing 13 protein-coding 12 0.001429
+390595 UBAP1L ubiquitin associated protein 1 like protein-coding 15 0.001786
+390598 SKOR1 SKI family transcriptional corepressor 1 protein-coding 81 0.009646
+390616 ANKRD34C ankyrin repeat domain 34C protein-coding 47 0.005597
+390637 GDPGP1 GDP-D-glucose phosphorylase 1 protein-coding 37 0.004406
+390648 OR4F6 olfactory receptor family 4 subfamily F member 6 protein-coding 62 0.007384
+390649 OR4F15 olfactory receptor family 4 subfamily F member 15 protein-coding 55 0.00655
+390664 C1QTNF8 C1q and TNF related 8 protein-coding 15 0.001786
+390667 PTX4 pentraxin 4 protein-coding 58 0.006907
+390748 PABPN1L poly(A) binding protein nuclear 1 like, cytoplasmic protein-coding 25 0.002977
+390790 ARL5C ADP ribosylation factor like GTPase 5C protein-coding 11 0.00131
+390792 KRT39 keratin 39 protein-coding 58 0.006907
+390874 ONECUT3 one cut homeobox 3 protein-coding 17 0.002025
+390882 OR7G2 olfactory receptor family 7 subfamily G member 2 protein-coding 45 0.005359
+390883 OR7G3 olfactory receptor family 7 subfamily G member 3 protein-coding 44 0.00524
+390892 OR7A10 olfactory receptor family 7 subfamily A member 10 protein-coding 50 0.005955
+390916 NUDT19 nudix hydrolase 19 protein-coding 65 0.007741
+390927 ZNF793 zinc finger protein 793 protein-coding 64 0.007622
+390928 ACP7 acid phosphatase 7, tartrate resistant (putative) protein-coding 57 0.006788
+390940 PINLYP phospholipase A2 inhibitor and LY6/PLAUR domain containing protein-coding 4 0.0004764
+390980 ZNF805 zinc finger protein 805 protein-coding 65 0.007741
+390992 HES3 hes family bHLH transcription factor 3 protein-coding 7 0.0008336
+390999 PRAMEF12 PRAME family member 12 protein-coding 97 0.01155
+391003 PRAMEF18 PRAME family member 18 protein-coding 31 0.003692
+391004 PRAMEF17 PRAME family member 17 protein-coding 33 0.00393
+391013 PLA2G2C phospholipase A2 group IIC protein-coding 14 0.001667
+391051 UOX urate oxidase (pseudogene) pseudo 6 0.0007145
+391059 FRRS1 ferric chelate reductase 1 protein-coding 59 0.007026
+391104 VHLL VHL like protein-coding 17 0.002025
+391107 OR10K2 olfactory receptor family 10 subfamily K member 2 protein-coding 97 0.01155
+391109 OR10K1 olfactory receptor family 10 subfamily K member 1 protein-coding 99 0.01179
+391112 OR6Y1 olfactory receptor family 6 subfamily Y member 1 protein-coding 92 0.01096
+391114 OR6K3 olfactory receptor family 6 subfamily K member 3 protein-coding 97 0.01155
+391123 VSIG8 V-set and immunoglobulin domain containing 8 protein-coding 35 0.004168
+391189 OR11L1 olfactory receptor family 11 subfamily L member 1 protein-coding 108 0.01286
+391190 OR2L8 olfactory receptor family 2 subfamily L member 8 (gene/pseudogene) protein-coding 126 0.01501
+391191 OR2AK2 olfactory receptor family 2 subfamily AK member 2 protein-coding 115 0.0137
+391192 OR2L3 olfactory receptor family 2 subfamily L member 3 protein-coding 106 0.01262
+391194 OR2M2 olfactory receptor family 2 subfamily M member 2 protein-coding 127 0.01512
+391195 OR2T33 olfactory receptor family 2 subfamily T member 33 protein-coding 163 0.01941
+391196 OR2M7 olfactory receptor family 2 subfamily M member 7 protein-coding 110 0.0131
+391211 OR2G6 olfactory receptor family 2 subfamily G member 6 protein-coding 132 0.01572
+391253 SPINT4 serine peptidase inhibitor, Kunitz type 4 protein-coding 9 0.001072
+391267 ANKRD20A11P ankyrin repeat domain 20 family member A11, pseudogene pseudo 38 0.004525
+391356 PTRHD1 peptidyl-tRNA hydrolase domain containing 1 protein-coding 14 0.001667
+391365 SULT6B1 sulfotransferase family 6B member 1 protein-coding 46 0.005478
+391475 DYTN dystrotelin protein-coding 97 0.01155
+391634 HSP90AB2P heat shock protein 90 alpha family class B member 2, pseudogene pseudo 65 0.007741
+391712 TRIM61 tripartite motif containing 61 protein-coding 22 0.00262
+391723 HELT helt bHLH transcription factor protein-coding 35 0.004168
+392138 OR2A25 olfactory receptor family 2 subfamily A member 25 protein-coding 68 0.008098
+392255 GDF6 growth differentiation factor 6 protein-coding 77 0.00917
+392307 FAM221B family with sequence similarity 221 member B protein-coding 35 0.004168
+392309 OR13J1 olfactory receptor family 13 subfamily J member 1 protein-coding 34 0.004049
+392360 CTSL3P cathepsin L family member 3, pseudogene pseudo 46 0.005478
+392376 OR13C2 olfactory receptor family 13 subfamily C member 2 protein-coding 66 0.00786
+392390 OR1L6 olfactory receptor family 1 subfamily L member 6 protein-coding 37 0.004406
+392391 OR5C1 olfactory receptor family 5 subfamily C member 1 protein-coding 52 0.006193
+392392 OR1K1 olfactory receptor family 1 subfamily K member 1 protein-coding 47 0.005597
+392399 LCN9 lipocalin 9 protein-coding 27 0.003215
+392459 CXXC1P1 CXXC finger protein 1 pseudogene 1 pseudo 9 0.001072
+392465 GLOD5 glyoxalase domain containing 5 protein-coding 22 0.00262
+392509 ARL13A ADP ribosylation factor like GTPase 13A protein-coding 38 0.004525
+392517 NCBP2L nuclear cap binding protein subunit 2 like protein-coding 24 0.002858
+392617 ELFN1 extracellular leucine rich repeat and fibronectin type III domain containing 1 protein-coding 68 0.008098
+392636 AGMO alkylglycerol monooxygenase protein-coding 120 0.01429
+392862 GRID2IP Grid2 interacting protein protein-coding 58 0.006907
+393046 OR2A5 olfactory receptor family 2 subfamily A member 5 protein-coding 76 0.009051
+394263 MUC21 mucin 21, cell surface associated protein-coding 64 0.007622
+399473 SPRED3 sprouty related EVH1 domain containing 3 protein-coding 25 0.002977
+399474 TMEM200B transmembrane protein 200B protein-coding 18 0.002144
+399512 SLC25A35 solute carrier family 25 member 35 protein-coding 27 0.003215
+399664 MEX3D mex-3 RNA binding family member D protein-coding 31 0.003692
+399665 FAM102A family with sequence similarity 102 member A protein-coding 37 0.004406
+399668 SMIM10L2A small integral membrane protein 10 like 2A protein-coding 12 0.001429
+399669 ZNF321P zinc finger protein 321, pseudogene pseudo 24 0.002858
+399671 HEATR4 HEAT repeat containing 4 protein-coding 95 0.01131
+399687 MYO18A myosin XVIIIA protein-coding 180 0.02144
+399694 SHC4 SHC adaptor protein 4 protein-coding 65 0.007741
+399697 CTXN2 cortexin 2 protein-coding 10 0.001191
+399706 LINC00200 long intergenic non-protein coding RNA 200 ncRNA 17 0.002025
+399726 CASC10 cancer susceptibility 10 protein-coding 8 0.0009527
+399761 BMS1P1 BMS1, ribosome biogenesis factor pseudogene 1 pseudo 9 0.001072
+399814 C10orf120 chromosome 10 open reading frame 120 protein-coding 68 0.008098
+399818 EEF1AKMT2 EEF1A lysine methyltransferase 2 protein-coding 16 0.001905
+399823 FOXI2 forkhead box I2 protein-coding 31 0.003692
+399829 LINC01168 long intergenic non-protein coding RNA 1168 ncRNA 10 0.001191
+399881 HNRNPKP3 heterogeneous nuclear ribonucleoprotein K pseudogene 3 pseudo 60 0.007145
+399888 FAM180B family with sequence similarity 180 member B protein-coding 9 0.001072
+399909 PCNX3 pecanex homolog 3 protein-coding 159 0.01894
+399939 TRIM49D1 tripartite motif containing 49D1 protein-coding 1 0.0001191
+399947 C11orf87 chromosome 11 open reading frame 87 protein-coding 38 0.004525
+399948 COLCA1 colorectal cancer associated 1 protein-coding 16 0.001905
+399949 C11orf88 chromosome 11 open reading frame 88 protein-coding 36 0.004287
+399967 PATE2 prostate and testis expressed 2 protein-coding 10 0.001191
+399968 PATE4 prostate and testis expressed 4 protein-coding 11 0.00131
+399979 SNX19 sorting nexin 19 protein-coding 100 0.01191
+400073 C12orf76 chromosome 12 open reading frame 76 protein-coding 10 0.001191
+400110 ANKRD20A19P ankyrin repeat domain 20 family member A19, pseudogene pseudo 55 0.00655
+400120 SERTM1 serine rich and transmembrane domain containing 1 protein-coding 15 0.001786
+400156 RPS26P47 ribosomal protein S26 pseudogene 47 pseudo 11 0.00131
+400165 ATP11AUN ATP11A upstream neighbor protein-coding 18 0.002144
+400206 DPPA3P2 developmental pluripotency associated 3 pseudogene 2 pseudo 57 0.006788
+400224 PLEKHD1 pleckstrin homology and coiled-coil domain containing D1 protein-coding 40 0.004764
+400258 C14orf180 chromosome 14 open reading frame 180 protein-coding 15 0.001786
+400322 HERC2P2 hect domain and RLD 2 pseudogene 2 pseudo 113 0.01346
+400359 C15orf53 chromosome 15 open reading frame 53 protein-coding 28 0.003335
+400360 C15orf54 chromosome 15 open reading frame 54 (putative) ncRNA 22 0.00262
+400410 ST20 suppressor of tumorigenicity 20 protein-coding 15 0.001786
+400451 FAM174B family with sequence similarity 174 member B protein-coding 13 0.001548
+400500 BCAR4 breast cancer anti-estrogen resistance 4 (non-protein coding) ncRNA 6 0.0007145
+400506 KNOP1 lysine rich nucleolar protein 1 protein-coding 47 0.005597
+400508 CRYM-AS1 CRYM antisense RNA 1 ncRNA 34 0.004049
+400566 C17orf97 chromosome 17 open reading frame 97 protein-coding 34 0.004049
+400569 MED11 mediator complex subunit 11 protein-coding 10 0.001191
+400578 KRT16P2 keratin 16 pseudogene 2 pseudo 34 0.004049
+400581 GRAPL GRB2 related adaptor protein like protein-coding 3 0.0003573
+400591 C17orf102 chromosome 17 open reading frame 102 protein-coding 26 0.003096
+400629 TEX19 testis expressed 19 protein-coding 22 0.00262
+400643 LINC00668 long intergenic non-protein coding RNA 668 ncRNA 7 0.0008336
+400657 LINC00909 long intergenic non-protein coding RNA 909 ncRNA 12 0.001429
+400668 PRSS57 serine protease 57 protein-coding 37 0.004406
+400673 VMAC vimentin type intermediate filament associated coiled-coil protein protein-coding 5 0.0005955
+400709 SIGLEC16 sialic acid binding Ig like lectin 16 (gene/pseudogene) protein-coding 45 0.005359
+400713 ZNF880 zinc finger protein 880 protein-coding 82 0.009765
+400720 ZNF772 zinc finger protein 772 protein-coding 52 0.006193
+400735 PRAMEF4 PRAME family member 4 protein-coding 98 0.01167
+400736 PRAMEF13 PRAME family member 13 protein-coding 11 0.00131
+400745 SH2D5 SH2 domain containing 5 protein-coding 52 0.006193
+400746 NCMAP non-compact myelin associated protein protein-coding 12 0.001429
+400757 C1orf141 chromosome 1 open reading frame 141 protein-coding 66 0.00786
+400759 GBP1P1 guanylate binding protein 1 pseudogene 1 pseudo 39 0.004645
+400765 MIR137HG MIR137 host gene ncRNA 3 0.0003573
+400793 C1orf226 chromosome 1 open reading frame 226 protein-coding 19 0.002263
+400798 C1orf220 chromosome 1 open reading frame 220 (putative) ncRNA 2 0.0002382
+400818 NBPF9 NBPF member 9 protein-coding 63 0.007503
+400823 FAM177B family with sequence similarity 177 member B protein-coding 20 0.002382
+400830 DEFB132 defensin beta 132 protein-coding 9 0.001072
+400831 C20orf202 chromosome 20 open reading frame 202 protein-coding 14 0.001667
+400916 CHCHD10 coiled-coil-helix-coiled-coil-helix domain containing 10 protein-coding 6 0.0007145
+400932 LINC00898 long intergenic non-protein coding RNA 898 ncRNA 10 0.001191
+400935 IL17REL interleukin 17 receptor E like protein-coding 36 0.004287
+400941 LINC00487 long intergenic non-protein coding RNA 487 ncRNA 6 0.0007145
+400950 C2orf91 chromosome 2 open reading frame 91 protein-coding 3 0.0003573
+400952 LINC01121 long intergenic non-protein coding RNA 1121 ncRNA 8 0.0009527
+400954 EML6 echinoderm microtubule associated protein like 6 protein-coding 128 0.01524
+400960 PCBP1-AS1 PCBP1 antisense RNA 1 ncRNA 5 0.0005955
+400961 PAIP2B poly(A) binding protein interacting protein 2B protein-coding 14 0.001667
+400966 RGPD1 RANBP2-like and GRIP domain containing 1 protein-coding 73 0.008694
+400986 ANKRD36C ankyrin repeat domain 36C protein-coding 104 0.01239
+401024 FSIP2 fibrous sheath interacting protein 2 protein-coding 288 0.0343
+401027 C2orf66 chromosome 2 open reading frame 66 protein-coding 21 0.002501
+401036 ASB18 ankyrin repeat and SOCS box containing 18 protein-coding 31 0.003692
+401067 IQCF3 IQ motif containing F3 protein-coding 30 0.003573
+401089 FOXL2NB FOXL2 neighbor protein-coding 19 0.002263
+401115 C4orf48 chromosome 4 open reading frame 48 protein-coding 4 0.0004764
+401124 DTHD1 death domain containing 1 protein-coding 43 0.005121
+401136 TMPRSS11BNL TMPRSS11B N-terminal like, pseudogene pseudo 8 0.0009527
+401137 PRR27 proline rich 27 protein-coding 49 0.005835
+401138 AMTN amelotin protein-coding 28 0.003335
+401145 CCSER1 coiled-coil serine rich protein 1 protein-coding 133 0.01584
+401152 C4orf3 chromosome 4 open reading frame 3 protein-coding 21 0.002501
+401190 RGS7BP regulator of G protein signaling 7 binding protein protein-coding 36 0.004287
+401207 C5orf63 chromosome 5 open reading frame 63 protein-coding 5 0.0005955
+401232 LINC01011 long intergenic non-protein coding RNA 1011 ncRNA 8 0.0009527
+401236 STMND1 stathmin domain containing 1 protein-coding 5 0.0005955
+401237 CASC15 cancer susceptibility 15 (non-protein coding) ncRNA 4 0.0004764
+401247 LINC00243 long intergenic non-protein coding RNA 243 ncRNA 3 0.0003573
+401250 MCCD1 mitochondrial coiled-coil domain 1 protein-coding 14 0.001667
+401251 SAPCD1 suppressor APC domain containing 1 protein-coding 15 0.001786
+401258 RAB44 RAB44, member RAS oncogene family protein-coding 4 0.0004764
+401260 LINC00951 long intergenic non-protein coding RNA 951 ncRNA 16 0.001905
+401262 CRIP3 cysteine rich protein 3 protein-coding 25 0.002977
+401265 KLHL31 kelch like family member 31 protein-coding 75 0.008932
+401285 TCP10L2 t-complex 10 like 2 protein-coding 44 0.00524
+401288 LINC00242 long intergenic non-protein coding RNA 242 ncRNA 23 0.002739
+401303 ZNF815P zinc finger protein 815, pseudogene pseudo 22 0.00262
+401331 RASA4CP RAS p21 protein activator 4C, pseudogene pseudo 24 0.002858
+401335 C7orf65 chromosome 7 open reading frame 65 protein-coding 18 0.002144
+401375 GTF2IRD2P1 GTF2I repeat domain containing 2 pseudogene 1 pseudo 170 0.02025
+401387 LRRD1 leucine rich repeats and death domain containing 1 protein-coding 71 0.008455
+401397 SMIM30 small integral membrane protein 30 protein-coding 1 0.0001191
+401398 POT1-AS1 POT1 antisense RNA 1 ncRNA 16 0.001905
+401399 PRRT4 proline rich transmembrane protein 4 protein-coding 39 0.004645
+401409 RAB19 RAB19, member RAS oncogene family protein-coding 31 0.003692
+401427 OR2A7 olfactory receptor family 2 subfamily A member 7 protein-coding 44 0.00524
+401466 C8orf59 chromosome 8 open reading frame 59 protein-coding 11 0.00131
+401474 SAMD12 sterile alpha motif domain containing 12 protein-coding 32 0.003811
+401494 HACD4 3-hydroxyacyl-CoA dehydratase 4 protein-coding 28 0.003335
+401498 TMEM215 transmembrane protein 215 protein-coding 30 0.003573
+401505 TOMM5 translocase of outer mitochondrial membrane 5 protein-coding 6 0.0007145
+401508 FAM74A4 family with sequence similarity 74 member A4 ncRNA 4 0.0004764
+401535 C9orf170 chromosome 9 open reading frame 170 protein-coding 15 0.001786
+401541 CENPP centromere protein P protein-coding 28 0.003335
+401546 C9orf152 chromosome 9 open reading frame 152 protein-coding 26 0.003096
+401548 SNX30 sorting nexin family member 30 protein-coding 41 0.004883
+401551 WDR38 WD repeat domain 38 protein-coding 31 0.003692
+401562 LCNL1 lipocalin like 1 protein-coding 10 0.001191
+401563 C9orf139 chromosome 9 open reading frame 139 protein-coding 30 0.003573
+401565 FAM166A family with sequence similarity 166 member A protein-coding 51 0.006074
+401577 CD99P1 CD99 molecule pseudogene 1 pseudo 1 0.0001191
+401612 SLC25A53 solute carrier family 25 member 53 protein-coding 40 0.004764
+401613 SERTM2 serine rich and transmembrane domain containing 2 protein-coding 7 0.0008336
+401647 GOLGA7B golgin A7 family member B protein-coding 19 0.002263
+401665 OR51T1 olfactory receptor family 51 subfamily T member 1 protein-coding 75 0.008932
+401666 OR51A4 olfactory receptor family 51 subfamily A member 4 protein-coding 76 0.009051
+401667 OR51A2 olfactory receptor family 51 subfamily A member 2 protein-coding 50 0.005955
+401827 MSLNL mesothelin-like pseudo 95 0.01131
+401898 ZNF833P zinc finger protein 833, pseudogene pseudo 69 0.008217
+401944 LDLRAD2 low density lipoprotein receptor class A domain containing 2 protein-coding 25 0.002977
+401992 OR2T2 olfactory receptor family 2 subfamily T member 2 protein-coding 110 0.0131
+401993 OR2T5 olfactory receptor family 2 subfamily T member 5 protein-coding 24 0.002858
+401994 OR14I1 olfactory receptor family 14 subfamily I member 1 protein-coding 80 0.009527
+402055 SRRD SRR1 domain containing protein-coding 26 0.003096
+402117 VWC2L von Willebrand factor C domain containing protein 2 like protein-coding 56 0.006669
+402135 OR5K2 olfactory receptor family 5 subfamily K member 2 protein-coding 68 0.008098
+402317 OR2A42 olfactory receptor family 2 subfamily A member 42 protein-coding 18 0.002144
+402381 SOHLH1 spermatogenesis and oogenesis specific basic helix-loop-helix 1 protein-coding 37 0.004406
+402415 XKRX XK related, X-linked protein-coding 59 0.007026
+402569 KPNA7 karyopherin subunit alpha 7 protein-coding 46 0.005478
+402573 C7orf61 chromosome 7 open reading frame 61 protein-coding 23 0.002739
+402635 GRIFIN galectin-related inter-fiber protein protein-coding 10 0.001191
+402665 IGLON5 IgLON family member 5 protein-coding 43 0.005121
+402682 UFSP1 UFM1 specific peptidase 1 (inactive) protein-coding 13 0.001548
+402778 IFITM10 interferon induced transmembrane protein 10 protein-coding 8 0.0009527
+403239 OR2T27 olfactory receptor family 2 subfamily T member 27 protein-coding 102 0.01215
+403244 OR2T35 olfactory receptor family 2 subfamily T member 35 protein-coding 20 0.002382
+403253 OR4A47 olfactory receptor family 4 subfamily A member 47 protein-coding 94 0.01119
+403273 OR5H14 olfactory receptor family 5 subfamily H member 14 protein-coding 102 0.01215
+403274 OR5H15 olfactory receptor family 5 subfamily H member 15 protein-coding 85 0.01012
+403277 OR5K3 olfactory receptor family 5 subfamily K member 3 protein-coding 72 0.008574
+403278 OR5K4 olfactory receptor family 5 subfamily K member 4 protein-coding 64 0.007622
+403282 OR6C65 olfactory receptor family 6 subfamily C member 65 protein-coding 52 0.006193
+403284 OR6C68 olfactory receptor family 6 subfamily C member 68 protein-coding 40 0.004764
+403313 PLPP6 phospholipid phosphatase 6 protein-coding 72 0.008574
+403314 APOBEC4 apolipoprotein B mRNA editing enzyme catalytic polypeptide like 4 protein-coding 45 0.005359
+403315 FAM92A1P2 family with sequence similarity 92, member A3 pseudo 57 0.006788
+403339 DEFB133 defensin beta 133 protein-coding 3 0.0003573
+403341 ZBTB34 zinc finger and BTB domain containing 34 protein-coding 47 0.005597
+404037 HAPLN4 hyaluronan and proteoglycan link protein 4 protein-coding 60 0.007145
+404093 CUEDC1 CUE domain containing 1 protein-coding 57 0.006788
+404203 SPINK6 serine peptidase inhibitor, Kazal type 6 protein-coding 8 0.0009527
+404217 CTXN1 cortexin 1 protein-coding 1 0.0001191
+404220 C6orf201 chromosome 6 open reading frame 201 protein-coding 16 0.001905
+404281 YY2 YY2 transcription factor protein-coding 59 0.007026
+404550 C16orf74 chromosome 16 open reading frame 74 protein-coding 5 0.0005955
+404552 SCGB1D4 secretoglobin family 1D member 4 protein-coding 16 0.001905
+404635 NANOGP1 Nanog homeobox pseudogene 1 pseudo 57 0.006788
+404636 FAM45A family with sequence similarity 45 member A protein-coding 34 0.004049
+404672 GTF2H5 general transcription factor IIH subunit 5 protein-coding 5 0.0005955
+404744 NPSR1-AS1 NPSR1 antisense RNA 1 ncRNA 1 0.0001191
+404785 POTEG POTE ankyrin domain family member G protein-coding 187 0.02227
+405753 DUOXA2 dual oxidase maturation factor 2 protein-coding 41 0.004883
+405754 ERVFRD-1 endogenous retrovirus group FRD member 1, envelope protein-coding 45 0.005359
+406881 MIRLET7A1 microRNA let-7a-1 ncRNA 4 0.0004764
+406882 MIRLET7A2 microRNA let-7a-2 ncRNA 7 0.0008336
+406885 MIRLET7C microRNA let-7c ncRNA 4 0.0004764
+406886 MIRLET7D microRNA let-7d ncRNA 1 0.0001191
+406887 MIRLET7E microRNA let-7e ncRNA 4 0.0004764
+406888 MIRLET7F1 microRNA let-7f-1 ncRNA 3 0.0003573
+406892 MIR100 microRNA 100 ncRNA 8 0.0009527
+406893 MIR101-1 microRNA 101-1 ncRNA 4 0.0004764
+406899 MIR106A microRNA 106a ncRNA 3 0.0003573
+406906 MIR122 microRNA 122 ncRNA 3 0.0003573
+406908 MIR124-2 microRNA 124-2 ncRNA 21 0.002501
+406909 MIR124-3 microRNA 124-3 ncRNA 11 0.00131
+406910 MIR125A microRNA 125a ncRNA 1 0.0001191
+406911 MIR125B1 microRNA 125b-1 ncRNA 9 0.001072
+406912 MIR125B2 microRNA 125b-2 ncRNA 6 0.0007145
+406917 MIR129-1 microRNA 129-1 ncRNA 7 0.0008336
+406918 MIR129-2 microRNA 129-2 ncRNA 12 0.001429
+406920 MIR130B microRNA 130b ncRNA 2 0.0002382
+406924 MIR134 microRNA 134 ncRNA 8 0.0009527
+406926 MIR135A2 microRNA 135a-2 ncRNA 6 0.0007145
+406929 MIR138-1 microRNA 138-1 ncRNA 3 0.0003573
+406930 MIR138-2 microRNA 138-2 ncRNA 4 0.0004764
+406935 MIR143 microRNA 143 ncRNA 5 0.0005955
+406937 MIR145 microRNA 145 ncRNA 3 0.0003573
+406938 MIR146A microRNA 146a ncRNA 8 0.0009527
+406939 MIR147A microRNA 147a ncRNA 10 0.001191
+406940 MIR148A microRNA 148a ncRNA 1 0.0001191
+406946 MIR154 microRNA 154 ncRNA 13 0.001548
+406950 MIR16-1 microRNA 16-1 ncRNA 6 0.0007145
+406955 MIR181B1 microRNA 181b-1 ncRNA 11 0.00131
+406958 MIR182 microRNA 182 ncRNA 8 0.0009527
+406959 MIR183 microRNA 183 ncRNA 2 0.0002382
406960 MIR184 microRNA 184 ncRNA 0 0
-406963 MIR187 microRNA 187 ncRNA 5 0.0005961
-406968 MIR193A microRNA 193a ncRNA 2 0.0002384
-406972 MIR196A1 microRNA 196a-1 ncRNA 3 0.0003577
-406981 MIR19B2 microRNA 19b-2 ncRNA 6 0.0007153
-406983 MIR200A microRNA 200a ncRNA 8 0.0009537
+406963 MIR187 microRNA 187 ncRNA 5 0.0005955
+406968 MIR193A microRNA 193a ncRNA 2 0.0002382
+406972 MIR196A1 microRNA 196a-1 ncRNA 3 0.0003573
+406981 MIR19B2 microRNA 19b-2 ncRNA 6 0.0007145
+406983 MIR200A microRNA 200a ncRNA 8 0.0009527
406984 MIR200B microRNA 200b ncRNA 0 0
-406989 MIR206 microRNA 206 ncRNA 6 0.0007153
-406995 MIR181A1 microRNA 181a-1 ncRNA 9 0.001073
-406998 MIR216A microRNA 216a ncRNA 7 0.0008345
-406999 MIR217 microRNA 217 ncRNA 5 0.0005961
-407006 MIR221 microRNA 221 ncRNA 10 0.001192
-407007 MIR222 microRNA 222 ncRNA 10 0.001192
-407021 MIR29A microRNA 29a ncRNA 2 0.0002384
-407022 MIR296 microRNA 296 ncRNA 13 0.00155
-407023 MIR299 microRNA 299 ncRNA 6 0.0007153
-407029 MIR30A microRNA 30a ncRNA 6 0.0007153
-407030 MIR30B microRNA 30b ncRNA 2 0.0002384
-407032 MIR30C2 microRNA 30c-2 ncRNA 4 0.0004769
-407033 MIR30D microRNA 30d ncRNA 7 0.0008345
-407035 MIR31 microRNA 31 ncRNA 4 0.0004769
-407040 MIR34A microRNA 34a ncRNA 8 0.0009537
-407044 MIR7-2 microRNA 7-2 ncRNA 7 0.0008345
-407045 MIR7-3 microRNA 7-3 ncRNA 8 0.0009537
-407049 MIR92A2 microRNA 92a-2 ncRNA 1 0.0001192
-407051 MIR9-3 microRNA 9-3 ncRNA 5 0.0005961
-407055 MIR99A microRNA 99a ncRNA 8 0.0009537
-407056 MIR99B microRNA 99b ncRNA 3 0.0003577
-407738 FAM19A1 family with sequence similarity 19 member A1, C-C motif chemokine like protein-coding 38 0.00453
-407975 MIR17HG miR-17-92a-1 cluster host gene ncRNA 36 0.004292
-407977 TNFSF12-TNFSF13 TNFSF12-TNFSF13 readthrough protein-coding 15 0.001788
-408029 C2orf27B chromosome 2 open reading frame 27B protein-coding 5 0.0005961
-408050 NOMO3 NODAL modulator 3 protein-coding 38 0.00453
-408187 SPINK14 serine peptidase inhibitor, Kazal type 14 (putative) protein-coding 15 0.001788
-408263 FNDC9 fibronectin type III domain containing 9 protein-coding 31 0.003696
-414059 TBC1D3B TBC1 domain family member 3B protein-coding 31 0.003696
-414060 TBC1D3C TBC1 domain family member 3C protein-coding 12 0.001431
-414062 CCL3L3 C-C motif chemokine ligand 3 like 3 protein-coding 1 0.0001192
-414149 ACBD7 acyl-CoA binding domain containing 7 protein-coding 16 0.001907
-414152 C10orf105 chromosome 10 open reading frame 105 protein-coding 13 0.00155
-414157 C10orf62 chromosome 10 open reading frame 62 protein-coding 21 0.002504
-414189 AGAP6 ArfGAP with GTPase domain, ankyrin repeat and PH domain 6 protein-coding 79 0.009418
-414194 CCNYL2 cyclin Y-like 2 (pseudogene) pseudo 52 0.006199
-414212 GLUD1P2 glutamate dehydrogenase 1 pseudogene 2 pseudo 6 0.0007153
-414235 PRR26 proline rich 26 protein-coding 7 0.0008345
-414236 C10orf55 chromosome 10 open reading frame 55 protein-coding 5 0.0005961
-414301 DDI1 DNA damage inducible 1 homolog 1 protein-coding 124 0.01478
-414318 C9orf106 chromosome 9 open reading frame 106 (putative) ncRNA 27 0.003219
-414328 IDNK IDNK, gluconokinase protein-coding 13 0.00155
-414332 LCN10 lipocalin 10 protein-coding 15 0.001788
-414763 BMS1P18 BMS1, ribosome biogenesis factor pseudogene 18 pseudo 9 0.001073
-414899 BLID BH3-like motif containing, cell death inducer protein-coding 19 0.002265
-414918 DENND6B DENN domain containing 6B protein-coding 42 0.005007
-414919 C8orf82 chromosome 8 open reading frame 82 protein-coding 14 0.001669
-415116 PIM3 Pim-3 proto-oncogene, serine/threonine kinase protein-coding 25 0.00298
-415117 STX19 syntaxin 19 protein-coding 37 0.004411
-425054 VCX3B variable charge, X-linked 3B protein-coding 27 0.003219
-431704 RGS21 regulator of G protein signaling 21 protein-coding 48 0.005722
-431705 ASTL astacin like metalloendopeptidase protein-coding 79 0.009418
-431707 LHX8 LIM homeobox 8 protein-coding 83 0.009895
-432369 ATP5F1EP2 ATP synthase F1 subunit epsilon pseudogene 2 pseudo 6 0.0007153
-439915 KRTAP5-5 keratin associated protein 5-5 protein-coding 35 0.004173
-439921 MXRA7 matrix remodeling associated 7 protein-coding 7 0.0008345
-439927 LINC01555 long intergenic non-protein coding RNA 1555 ncRNA 7 0.0008345
-439994 LINC00863 long intergenic non-protein coding RNA 863 ncRNA 3 0.0003577
-439996 IFIT1B interferon induced protein with tetratricopeptide repeats 1B protein-coding 45 0.005365
-440021 KRTAP5-2 keratin associated protein 5-2 protein-coding 20 0.002384
-440023 KRTAP5-6 keratin associated protein 5-6 protein-coding 19 0.002265
-440026 TMEM41B transmembrane protein 41B protein-coding 22 0.002623
-440041 TRIM51HP tripartite motif-containing 51H, pseudogene pseudo 151 0.018
-440044 SLC22A20P solute carrier family 22 member 20, pseudogene pseudo 55 0.006557
-440050 KRTAP5-7 keratin associated protein 5-7 protein-coding 17 0.002027
-440051 KRTAP5-11 keratin associated protein 5-11 protein-coding 27 0.003219
-440068 CARD17 caspase recruitment domain family member 17 protein-coding 26 0.0031
-440073 IQSEC3 IQ motif and Sec7 domain 3 protein-coding 138 0.01645
-440077 ZNF705A zinc finger protein 705A protein-coding 49 0.005842
-440078 FAM66C family with sequence similarity 66 member C ncRNA 10 0.001192
-440087 SMCO3 single-pass membrane protein with coiled-coil domains 3 protein-coding 34 0.004053
-440093 H3F3C H3 histone family member 3C protein-coding 36 0.004292
-440097 DBX2 developing brain homeobox 2 protein-coding 49 0.005842
-440107 PLEKHG7 pleckstrin homology and RhoGEF domain containing G7 protein-coding 63 0.007511
-440131 LINC00544 long intergenic non-protein coding RNA 544 ncRNA 7 0.0008345
-440138 ALG11 ALG11, alpha-1,2-mannosyltransferase protein-coding 54 0.006438
-440145 MZT1 mitotic spindle organizing protein 1 protein-coding 10 0.001192
-440153 OR11H12 olfactory receptor family 11 subfamily H member 12 protein-coding 100 0.01192
-440163 RNASE13 ribonuclease A family member 13 (inactive) protein-coding 24 0.002861
-440184 CCDC196 coiled-coil domain containing 196 protein-coding 22 0.002623
-440193 CCDC88C coiled-coil domain containing 88C protein-coding 151 0.018
-440224 CXADRP3 CXADR pseudogene 3 pseudo 136 0.01621
-440248 HERC2P9 hect domain and RLD 2 pseudogene 9 pseudo 34 0.004053
-440253 WHAMMP2 WAS protein homolog associated with actin, golgi membranes and microtubules pseudogene 2 pseudo 16 0.001907
-440270 GOLGA8B golgin A8 family member B protein-coding 91 0.01085
-440275 EIF2AK4 eukaryotic translation initiation factor 2 alpha kinase 4 protein-coding 137 0.01633
-440279 UNC13C unc-13 homolog C protein-coding 410 0.04888
-440307 TTLL13P tubulin tyrosine ligase like 13, pseudogene pseudo 65 0.007749
-440335 SMIM22 small integral membrane protein 22 protein-coding 1 0.0001192
-440345 NPIPB4 nuclear pore complex interacting protein family member B4 protein-coding 28 0.003338
-440348 NPIPB15 nuclear pore complex interacting protein family member B15 protein-coding 48 0.005722
-440350 NPIPB7 nuclear pore complex interacting protein family member B7 pseudo 18 0.002146
-440352 SNX29P2 sorting nexin 29 pseudogene 2 pseudo 35 0.004173
-440387 CTRB2 chymotrypsinogen B2 protein-coding 13 0.00155
-440400 RNASEK ribonuclease K protein-coding 7 0.0008345
-440419 TBC1D3P5 TBC1 domain family member 3 pseudogene 5 pseudo 91 0.01085
-440423 SUZ12P1 SUZ12 polycomb repressive complex 2 subunit pseudogene 1 pseudo 18 0.002146
-440435 GPR179 G protein-coupled receptor 179 protein-coding 240 0.02861
-440452 TBC1D3P2 TBC1 domain family member 3 pseudogene 2 pseudo 71 0.008464
-440456 PLEKHM1P1 pleckstrin homology and RUN domain containing M1 pseudogene 1 pseudo 82 0.009776
-440482 ANKRD20A5P ankyrin repeat domain 20 family member A5, pseudogene pseudo 42 0.005007
-440498 HSBP1L1 heat shock factor binding protein 1 like 1 protein-coding 8 0.0009537
-440503 PLIN5 perilipin 5 protein-coding 43 0.005126
-440515 ZNF506 zinc finger protein 506 protein-coding 59 0.007034
-440519 ZNF724 zinc finger protein 724 protein-coding 91 0.01085
-440533 PSG8 pregnancy specific beta-1-glycoprotein 8 protein-coding 120 0.01431
-440556 LINC00982 long intergenic non-protein coding RNA 982 ncRNA 11 0.001311
-440560 PRAMEF11 PRAME family member 11 protein-coding 84 0.01001
-440561 PRAMEF6 PRAME family member 6 protein-coding 43 0.005126
-440574 MINOS1 mitochondrial inner membrane organizing system 1 protein-coding 4 0.0004769
-440585 FAM183A family with sequence similarity 183 member A protein-coding 9 0.001073
-440590 ZYG11A zyg-11 family member A, cell cycle regulator protein-coding 57 0.006795
-440603 BCL2L15 BCL2 like 15 protein-coding 17 0.002027
-440689 HIST2H2BF histone cluster 2 H2B family member f protein-coding 30 0.003577
-440695 ETV3L ETS variant 3 like protein-coding 51 0.00608
-440699 LRRC52 leucine rich repeat containing 52 protein-coding 53 0.006319
-440712 RHEX regulator of hemoglobinization and erythroid cell expansion protein-coding 26 0.0031
-440730 TRIM67 tripartite motif containing 67 protein-coding 102 0.01216
-440738 MAP1LC3C microtubule associated protein 1 light chain 3 gamma protein-coding 31 0.003696
-440804 RIMBP3B RIMS binding protein 3B protein-coding 14 0.001669
-440822 PIWIL3 piwi like RNA-mediated gene silencing 3 protein-coding 108 0.01288
-440823 MIAT myocardial infarction associated transcript (non-protein coding) ncRNA 12 0.001431
-440836 ODF3B outer dense fiber of sperm tails 3B protein-coding 6 0.0007153
-440854 CAPN14 calpain 14 protein-coding 56 0.006676
-440894 LINC01123 long intergenic non-protein coding RNA 1123 ncRNA 4 0.0004769
-440905 FAR2P1 fatty acyl-CoA reductase 2 pseudogene 1 pseudo 8 0.0009537
-440925 LINC01124 long intergenic non-protein coding RNA 1124 ncRNA 11 0.001311
-440955 TMEM89 transmembrane protein 89 protein-coding 21 0.002504
-440956 IQCF6 IQ motif containing F6 protein-coding 13 0.00155
-440957 SMIM4 small integral membrane protein 4 protein-coding 4 0.0004769
-441024 MTHFD2L methylenetetrahydrofolate dehydrogenase (NADP+ dependent) 2 like protein-coding 48 0.005722
-441027 TMEM150C transmembrane protein 150C protein-coding 36 0.004292
-441054 C4orf47 chromosome 4 open reading frame 47 protein-coding 25 0.00298
-441061 MARCH11 membrane associated ring-CH-type finger 11 protein-coding 70 0.008345
-441108 C5orf56 chromosome 5 open reading frame 56 protein-coding 14 0.001669
-441150 C6orf226 chromosome 6 open reading frame 226 protein-coding 8 0.0009537
-441151 TMEM151B transmembrane protein 151B protein-coding 22 0.002623
-441161 OOEP oocyte expressed protein protein-coding 41 0.004888
-441168 CALHM6 calcium homeostasis modulator family member 6 protein-coding 25 0.00298
-441191 RNF216P1 ring finger protein 216 pseudogene 1 pseudo 17 0.002027
-441194 PMS2CL PMS2 C-terminal like pseudogene pseudo 70 0.008345
-441212 RP9P RP9 pseudogene pseudo 13 0.00155
-441234 ZNF716 zinc finger protein 716 protein-coding 184 0.02194
-441250 TYW1B tRNA-yW synthesizing protein 1 homolog B protein-coding 93 0.01109
-441272 SPDYE3 speedy/RINGO cell cycle regulator family member E3 protein-coding 43 0.005126
-441273 SPDYE2 speedy/RINGO cell cycle regulator family member E2 protein-coding 7 0.0008345
-441282 AKR1B15 aldo-keto reductase family 1 member B15 protein-coding 69 0.008226
-441294 CTAGE15 CTAGE family member 15 protein-coding 22 0.002623
-441308 OR4F21 olfactory receptor family 4 subfamily F member 21 protein-coding 2 0.0002384
-441376 AARD alanine and arginine rich domain containing protein protein-coding 30 0.003577
-441381 LRRC24 leucine rich repeat containing 24 protein-coding 28 0.003338
-441425 ANKRD20A3 ankyrin repeat domain 20 family member A3 protein-coding 6 0.0007153
-441430 ANKRD20A2 ankyrin repeat domain 20 family member A2 protein-coding 17 0.002027
-441452 SPATA31C1 SPATA31 subfamily C member 1 protein-coding 84 0.01001
-441457 NUTM2G NUT family member 2G protein-coding 54 0.006438
-441459 ANKRD18B ankyrin repeat domain 18B protein-coding 30 0.003577
-441476 STPG3 sperm-tail PG-rich repeat containing 3 protein-coding 27 0.003219
-441478 NRARP NOTCH regulated ankyrin repeat protein protein-coding 12 0.001431
-441509 GLRA4 glycine receptor alpha 4 protein-coding 69 0.008226
-441518 RTL8B retrotransposon Gag like 8B protein-coding 22 0.002623
-441519 CT45A3 cancer/testis antigen family 45 member A3 protein-coding 1 0.0001192
-441521 CT45A5 cancer/testis antigen family 45 member A5 protein-coding 28 0.003338
-441525 SPANXN4 SPANX family member N4 protein-coding 13 0.00155
-441531 PGAM4 phosphoglycerate mutase family member 4 protein-coding 55 0.006557
-441549 CDNF cerebral dopamine neurotrophic factor protein-coding 33 0.003934
-441581 FRG2B FSHD region gene 2 family member B protein-coding 53 0.006319
-441608 OR5B3 olfactory receptor family 5 subfamily B member 3 protein-coding 75 0.008941
-441631 TSPAN11 tetraspanin 11 protein-coding 39 0.004649
-441639 OR9K2 olfactory receptor family 9 subfamily K member 2 protein-coding 69 0.008226
-441669 OR4Q3 olfactory receptor family 4 subfamily Q member 3 protein-coding 134 0.01598
-441670 OR4M1 olfactory receptor family 4 subfamily M member 1 protein-coding 137 0.01633
-441818 WBP11P1 WW domain binding protein 11 pseudogene 1 pseudo 145 0.01729
-441864 TARM1 T cell-interacting, activating receptor on myeloid cells 1 protein-coding 17 0.002027
-441869 ANKRD65 ankyrin repeat domain 65 protein-coding 14 0.001669
-441871 PRAMEF7 PRAME family member 7 protein-coding 29 0.003457
-441908 NBPF18P NBPF member 18, pseudogene pseudo 52 0.006199
-441911 OR10J3 olfactory receptor family 10 subfamily J member 3 protein-coding 112 0.01335
-441932 OR2W5 olfactory receptor family 2 subfamily W member 5 (gene/pseudogene) protein-coding 146 0.01741
-441933 OR13G1 olfactory receptor family 13 subfamily G member 1 protein-coding 88 0.01049
-441951 ZFAS1 ZNFX1 antisense RNA 1 ncRNA 4 0.0004769
-442038 SULT1C3 sulfotransferase family 1C member 3 protein-coding 50 0.005961
-442117 GALNTL6 polypeptide N-acetylgalactosaminyltransferase like 6 protein-coding 130 0.0155
-442184 OR2B3 olfactory receptor family 2 subfamily B member 3 protein-coding 59 0.007034
-442186 OR2J3 olfactory receptor family 2 subfamily J member 3 protein-coding 95 0.01133
-442191 OR14J1 olfactory receptor family 14 subfamily J member 1 protein-coding 65 0.007749
-442194 OR10C1 olfactory receptor family 10 subfamily C member 1 (gene/pseudogene) protein-coding 64 0.00763
-442213 PTCHD4 patched domain containing 4 protein-coding 171 0.02039
-442247 RFPL4B ret finger protein like 4B protein-coding 54 0.006438
-442319 ZNF727 zinc finger protein 727 protein-coding 87 0.01037
-442334 ARF1P1 ADP ribosylation factor 1 pseudogene 1 pseudo 35 0.004173
-442361 OR2A2 olfactory receptor family 2 subfamily A member 2 protein-coding 79 0.009418
-442388 SDR16C6P short chain dehydrogenase/reductase family 16C member 6, pseudogene pseudo 15 0.001788
-442425 FOXB2 forkhead box B2 protein-coding 49 0.005842
-442444 FAM47C family with sequence similarity 47 member C protein-coding 313 0.03732
-442524 DPY19L2P3 DPY19L2 pseudogene 3 pseudo 5 0.0005961
-442578 STAG3L3 stromal antigen 3-like 3 (pseudogene) pseudo 14 0.001669
-442582 STAG3L2 stromal antigen 3-like 2 (pseudogene) pseudo 16 0.001907
-442721 LMOD2 leiomodin 2 protein-coding 76 0.009061
-442868 BPY2C basic charge, Y-linked, 2C protein-coding 1 0.0001192
-442890 MIR133B microRNA 133b ncRNA 6 0.0007153
-442891 MIR135B microRNA 135b ncRNA 4 0.0004769
-442897 MIR323A microRNA 323a ncRNA 19 0.002265
-442899 MIR325 microRNA 325 ncRNA 10 0.001192
-442903 MIR331 microRNA 331 ncRNA 4 0.0004769
-442905 MIR337 microRNA 337 ncRNA 7 0.0008345
-442913 MIR376C microRNA 376c ncRNA 3 0.0003577
-442914 MIR369 microRNA 369 ncRNA 20 0.002384
-442915 MIR370 microRNA 370 ncRNA 2 0.0002384
-442916 MIR371A microRNA 371a ncRNA 6 0.0007153
-442917 MIR372 microRNA 372 ncRNA 4 0.0004769
-442919 MIR374A microRNA 374a ncRNA 2 0.0002384
-444882 IGFL4 IGF like family member 4 protein-coding 12 0.001431
-445328 ARHGEF35 Rho guanine nucleotide exchange factor 35 protein-coding 29 0.003457
-445347 TARP TCR gamma alternate reading frame protein protein-coding 23 0.002742
-445372 TRIM6-TRIM34 TRIM6-TRIM34 readthrough protein-coding 14 0.001669
-445571 CBWD3 COBW domain containing 3 protein-coding 13 0.00155
-445577 C9orf129 chromosome 9 open reading frame 129 protein-coding 17 0.002027
-445582 POTEE POTE ankyrin domain family member E protein-coding 202 0.02408
-445815 PALM2-AKAP2 PALM2-AKAP2 readthrough protein-coding 149 0.01776
-448831 FRG2 FSHD region gene 2 protein-coding 8 0.0009537
-448834 KPRP keratinocyte proline rich protein protein-coding 147 0.01753
-448835 LCE6A late cornified envelope 6A protein-coding 11 0.001311
-449520 GGNBP1 gametogenetin binding protein 1 (pseudogene) pseudo 4 0.0004769
-474170 LRRC37A2 leucine rich repeat containing 37 member A2 protein-coding 73 0.008703
-474343 SPIN2B spindlin family member 2B protein-coding 23 0.002742
-474344 GIMAP6 GTPase, IMAP family member 6 protein-coding 72 0.008584
-474354 LRRC18 leucine rich repeat containing 18 protein-coding 57 0.006795
-474382 H2AFB1 H2A histone family member B1 protein-coding 10 0.001192
-492307 PPDPFL pancreatic progenitor cell differentiation and proliferation factor like protein-coding 27 0.003219
-492311 IGIP IgA inducing protein protein-coding 10 0.001192
-493753 COA5 cytochrome c oxidase assembly factor 5 protein-coding 10 0.001192
-493754 GS1-124K5.11 RAB guanine nucleotide exchange factor 1 pseudogene pseudo 4 0.0004769
-493812 HCG11 HLA complex group 11 (non-protein coding) ncRNA 7 0.0008345
-493829 TRIM72 tripartite motif containing 72 protein-coding 58 0.006915
-493856 CISD2 CDGSH iron sulfur domain 2 protein-coding 8 0.0009537
-493860 CCDC73 coiled-coil domain containing 73 protein-coding 164 0.01955
-493861 EID3 EP300 interacting inhibitor of differentiation 3 protein-coding 41 0.004888
-493869 GPX8 glutathione peroxidase 8 (putative) protein-coding 21 0.002504
-493901 RNASE12 ribonuclease A family member 12 (inactive) protein-coding 195 0.02325
-493911 PHOSPHO2 phosphatase, orphan 2 protein-coding 38 0.00453
-493913 PAPPA-AS1 PAPPA antisense RNA 1 ncRNA 82 0.009776
-494115 RBMXL1 RNA binding motif protein, X-linked like 1 protein-coding 70 0.008345
-494118 SPANXN1 SPANX family member N1 protein-coding 30 0.003577
-494119 SPANXN2 SPANX family member N2 protein-coding 75 0.008941
-494143 CHAC2 ChaC cation transport regulator homolog 2 protein-coding 25 0.00298
-494188 FBXO47 F-box protein 47 protein-coding 62 0.007392
-494197 SPANXN5 SPANX family member N5 protein-coding 25 0.00298
-494325 MIR376A1 microRNA 376a-1 ncRNA 7 0.0008345
-494326 MIR377 microRNA 377 ncRNA 10 0.001192
-494328 MIR379 microRNA 379 ncRNA 16 0.001907
-494329 MIR380 microRNA 380 ncRNA 8 0.0009537
-494330 MIR381 microRNA 381 ncRNA 6 0.0007153
-494331 MIR382 microRNA 382 ncRNA 11 0.001311
-494334 MIR422A microRNA 422a ncRNA 7 0.0008345
-494470 RNF165 ring finger protein 165 protein-coding 64 0.00763
-494513 PJVK pejvakin protein-coding 57 0.006795
-494514 TYMSOS TYMS opposite strand protein-coding 1 0.0001192
-494551 WEE2 WEE1 homolog 2 protein-coding 88 0.01049
-497189 TIFAB TIFA inhibitor protein-coding 28 0.003338
-497190 CLEC18B C-type lectin domain family 18 member B protein-coding 65 0.007749
-497634 LINC00293 long intergenic non-protein coding RNA 293 ncRNA 1 0.0001192
-497661 C18orf32 chromosome 18 open reading frame 32 protein-coding 12 0.001431
-503497 MS4A13 membrane spanning 4-domains A13 protein-coding 42 0.005007
-503542 SPRN shadow of prion protein protein-coding 2 0.0002384
-503582 ARGFX arginine-fifty homeobox protein-coding 43 0.005126
-503618 DEFB104B defensin beta 104B protein-coding 1 0.0001192
-503627 TPRX2P tetrapeptide repeat homeobox 2, pseudogene pseudo 3 0.0003577
-503693 LOH12CR2 loss of heterozygosity, 12, chromosomal region 2 (non-protein coding) ncRNA 1 0.0001192
-503834 DPRX divergent-paired related homeobox protein-coding 51 0.00608
-503835 DUXA double homeobox A protein-coding 47 0.005603
-503841 DEFB106B defensin beta 106B protein-coding 15 0.001788
-541466 CT45A1 cancer/testis antigen family 45 member A1 protein-coding 17 0.002027
-541468 LURAP1 leucine rich adaptor protein 1 protein-coding 23 0.002742
-541565 C8orf58 chromosome 8 open reading frame 58 protein-coding 38 0.00453
-541578 CXorf40B chromosome X open reading frame 40B protein-coding 31 0.003696
-548313 SSX4B SSX family member 4B protein-coding 21 0.002504
-548593 SLX1A SLX1 homolog A, structure-specific endonuclease subunit protein-coding 4 0.0004769
-548596 CKMT1A creatine kinase, mitochondrial 1A protein-coding 26 0.0031
-548644 POLR2J3 RNA polymerase II subunit J3 protein-coding 3 0.0003577
-548645 DNAJC25 DnaJ heat shock protein family (Hsp40) member C25 protein-coding 24 0.002861
-550631 CCDC157 coiled-coil domain containing 157 protein-coding 56 0.006676
-552889 ATXN7L3B ataxin 7 like 3B protein-coding 3 0.0003577
-552891 DNAJC25-GNG10 DNAJC25-GNG10 readthrough protein-coding 6 0.0007153
-553115 PEF1 penta-EF-hand domain containing 1 protein-coding 30 0.003577
-553158 PRR5-ARHGAP8 PRR5-ARHGAP8 readthrough protein-coding 12 0.001431
-554202 MIR31HG MIR31 host gene ncRNA 9 0.001073
-554214 MIR450A1 microRNA 450a-1 ncRNA 8 0.0009537
-554226 ANKRD30BL ankyrin repeat domain 30B like protein-coding 31 0.003696
-554235 ASPDH aspartate dehydrogenase domain containing protein-coding 27 0.003219
-554236 DPY19L2P1 DPY19L2 pseudogene 1 pseudo 30 0.003577
-554250 GDF5OS growth differentiation factor 5 opposite strand protein-coding 9 0.001073
-554251 FBXO48 F-box protein 48 protein-coding 29 0.003457
-554279 LINC00862 long intergenic non-protein coding RNA 862 ncRNA 15 0.001788
-574016 CLLU1OS chronic lymphocytic leukemia up-regulated 1 opposite strand protein-coding 19 0.002265
-574028 CLLU1 chronic lymphocytic leukemia up-regulated 1 ncRNA 18 0.002146
-574031 MIR363 microRNA 363 ncRNA 7 0.0008345
-574032 MIR20B microRNA 20b ncRNA 2 0.0002384
-574033 MIR18B microRNA 18b ncRNA 1 0.0001192
-574408 MIR329-1 microRNA 329-1 ncRNA 8 0.0009537
-574409 MIR329-2 microRNA 329-2 ncRNA 10 0.001192
-574410 MIR323B microRNA 323b ncRNA 11 0.001311
-574413 MIR409 microRNA 409 ncRNA 13 0.00155
-574431 C1orf147 chromosome 1 open reading frame 147 protein-coding 1 0.0001192
-574433 MIR412 microRNA 412 ncRNA 11 0.001311
-574434 MIR410 microRNA 410 ncRNA 11 0.001311
-574436 MIR485 microRNA 485 ncRNA 13 0.00155
-574449 MIR492 microRNA 492 ncRNA 9 0.001073
-574450 MIR493 microRNA 493 ncRNA 9 0.001073
-574452 MIR494 microRNA 494 ncRNA 8 0.0009537
-574453 MIR495 microRNA 495 ncRNA 12 0.001431
-574454 MIR496 microRNA 496 ncRNA 10 0.001192
-574455 MIR193B microRNA 193b ncRNA 4 0.0004769
-574458 MIR512-1 microRNA 512-1 ncRNA 9 0.001073
-574459 MIR512-2 microRNA 512-2 ncRNA 9 0.001073
-574460 MIR498 microRNA 498 ncRNA 13 0.00155
-574461 MIR520E microRNA 520e ncRNA 6 0.0007153
-574462 MIR515-1 microRNA 515-1 ncRNA 9 0.001073
-574463 MIR519E microRNA 519e ncRNA 6 0.0007153
-574464 MIR520F microRNA 520f ncRNA 5 0.0005961
-574465 MIR515-2 microRNA 515-2 ncRNA 11 0.001311
-574466 MIR519C microRNA 519c ncRNA 7 0.0008345
-574467 MIR520A microRNA 520a ncRNA 14 0.001669
-574468 MIR526B microRNA 526b ncRNA 7 0.0008345
-574469 MIR519B microRNA 519b ncRNA 13 0.00155
-574470 MIR525 microRNA 525 ncRNA 11 0.001311
-574471 MIR523 microRNA 523 ncRNA 15 0.001788
-574472 MIR518F microRNA 518f ncRNA 12 0.001431
-574473 MIR520B microRNA 520b ncRNA 9 0.001073
-574474 MIR518B microRNA 518b ncRNA 15 0.001788
-574475 MIR526A1 microRNA 526a-1 ncRNA 11 0.001311
-574476 MIR520C microRNA 520c ncRNA 8 0.0009537
-574477 MIR518C microRNA 518c ncRNA 9 0.001073
-574478 MIR524 microRNA 524 ncRNA 16 0.001907
-574479 MIR517A microRNA 517a ncRNA 14 0.001669
-574480 MIR519D microRNA 519d ncRNA 15 0.001788
-574481 MIR521-2 microRNA 521-2 ncRNA 14 0.001669
-574482 MIR520D microRNA 520d ncRNA 11 0.001311
-574483 MIR517B microRNA 517b ncRNA 11 0.001311
-574484 MIR520G microRNA 520g ncRNA 8 0.0009537
-574485 MIR516B2 microRNA 516b-2 ncRNA 8 0.0009537
-574486 MIR526A2 microRNA 526a-2 ncRNA 2 0.0002384
-574487 MIR518E microRNA 518e ncRNA 12 0.001431
-574488 MIR518A1 microRNA 518a-1 ncRNA 19 0.002265
-574489 MIR518D microRNA 518d ncRNA 18 0.002146
-574490 MIR516B1 microRNA 516b-1 ncRNA 9 0.001073
-574491 MIR518A2 microRNA 518a-2 ncRNA 14 0.001669
-574492 MIR517C microRNA 517c ncRNA 10 0.001192
-574493 MIR520H microRNA 520h ncRNA 14 0.001669
-574494 MIR521-1 microRNA 521-1 ncRNA 9 0.001073
-574495 MIR522 microRNA 522 ncRNA 21 0.002504
-574496 MIR519A1 microRNA 519a-1 ncRNA 24 0.002861
-574497 MIR527 microRNA 527 ncRNA 19 0.002265
-574498 MIR516A1 microRNA 516a-1 ncRNA 9 0.001073
-574499 MIR516A2 microRNA 516a-2 ncRNA 11 0.001311
-574500 MIR519A2 microRNA 519a-2 ncRNA 9 0.001073
-574505 MIR450A2 microRNA 450a-2 ncRNA 9 0.001073
-574506 MIR503 microRNA 503 ncRNA 1 0.0001192
-574508 MIR505 microRNA 505 ncRNA 5 0.0005961
-574509 MIR513A1 microRNA 513a-1 ncRNA 13 0.00155
-574510 MIR513A2 microRNA 513a-2 ncRNA 10 0.001192
-574511 MIR506 microRNA 506 ncRNA 16 0.001907
-574512 MIR507 microRNA 507 ncRNA 9 0.001073
-574513 MIR508 microRNA 508 ncRNA 10 0.001192
-574514 MIR509-1 microRNA 509-1 ncRNA 7 0.0008345
-574515 MIR510 microRNA 510 ncRNA 11 0.001311
-574516 MIR514A1 microRNA 514a-1 ncRNA 6 0.0007153
-574517 MIR514A2 microRNA 514a-2 ncRNA 8 0.0009537
-574518 MIR514A3 microRNA 514a-3 ncRNA 5 0.0005961
-574537 UGT2A2 UDP glucuronosyltransferase family 2 member A2 protein-coding 41 0.004888
-594855 CPLX3 complexin 3 protein-coding 24 0.002861
-594857 NPS neuropeptide S protein-coding 29 0.003457
-595135 PGM5P2 phosphoglucomutase 5 pseudogene 2 pseudo 23 0.002742
-606293 KLKP1 kallikrein pseudogene 1 pseudo 15 0.001788
-606495 CYB5RL cytochrome b5 reductase like protein-coding 24 0.002861
-606553 C8orf49 chromosome 8 open reading frame 49 (putative) protein-coding 8 0.0009537
-613209 DEFB135 defensin beta 135 protein-coding 9 0.001073
-613210 DEFB136 defensin beta 136 protein-coding 16 0.001907
-613211 DEFB134 defensin beta 134 protein-coding 5 0.0005961
-613212 CTXN3 cortexin 3 protein-coding 16 0.001907
-613227 HIGD1C HIG1 hypoxia inducible domain family member 1C protein-coding 9 0.001073
-619189 SERINC4 serine incorporator 4 protein-coding 32 0.003815
-619208 FAM229B family with sequence similarity 229 member B protein-coding 9 0.001073
-619279 ZNF704 zinc finger protein 704 protein-coding 61 0.007272
-619373 MBOAT4 membrane bound O-acyltransferase domain containing 4 protein-coding 26 0.0031
-619477 GCCD3 glucocorticoid deficiency 3 unknown 171 0.02039
-619555 MIR487A microRNA 487a ncRNA 8 0.0009537
-641298 SMG1P1 SMG1 pseudogene 1 pseudo 5 0.0005961
-641311 RPL31P11 ribosomal protein L31 pseudogene 11 pseudo 39 0.004649
-641339 ZNF674 zinc finger protein 674 protein-coding 54 0.006438
-641371 ACOT1 acyl-CoA thioesterase 1 protein-coding 20 0.002384
-641372 ACOT6 acyl-CoA thioesterase 6 protein-coding 20 0.002384
-641384 TMEM75 transmembrane protein 75 ncRNA 3 0.0003577
-641455 POTEM POTE ankyrin domain family member M protein-coding 79 0.009418
-641518 LEF1-AS1 LEF1 antisense RNA 1 ncRNA 2 0.0002384
-641649 TMEM91 transmembrane protein 91 protein-coding 29 0.003457
-641654 HEPN1 hepatocellular carcinoma, down-regulated 1 protein-coding 13 0.00155
-641700 ECSCR endothelial cell surface expressed chemotaxis and apoptosis regulator protein-coding 4 0.0004769
-641977 SEPT7P2 septin 7 pseudogene 2 pseudo 30 0.003577
-642273 FAM110C family with sequence similarity 110 member C protein-coding 27 0.003219
-642280 ZNF876P zinc finger protein 876, pseudogene pseudo 66 0.007868
-642402 GOLGA6L17P golgin A6 family-like 17, pseudogene pseudo 1 0.0001192
-642475 MROH6 maestro heat like repeat family member 6 protein-coding 48 0.005722
-642517 AGAP9 ArfGAP with GTPase domain, ankyrin repeat and PH domain 9 protein-coding 3 0.0003577
-642587 MIR205HG MIR205 host gene ncRNA 4 0.0004769
-642597 AKAIN1 A-kinase anchor inhibitor 1 protein-coding 12 0.001431
-642612 TRIM49C tripartite motif containing 49C protein-coding 81 0.009657
-642633 FAM230B family with sequence similarity 230 member B (non-protein coding) ncRNA 44 0.005246
-642636 RAD21L1 RAD21 cohesin complex component like 1 protein-coding 45 0.005365
-642799 NPIPA2 nuclear pore complex interacting protein family member A2 protein-coding 5 0.0005961
-642819 ZNF487 zinc finger protein 487 protein-coding 8 0.0009537
-642843 CPSF4L cleavage and polyadenylation specific factor 4 like protein-coding 11 0.001311
-642938 FAM196A family with sequence similarity 196 member A protein-coding 71 0.008464
-642968 FAM163B family with sequence similarity 163 member B protein-coding 7 0.0008345
-642987 TMEM232 transmembrane protein 232 protein-coding 45 0.005365
-643008 SMIM5 small integral membrane protein 5 protein-coding 1 0.0001192
-643155 SMIM15 small integral membrane protein 15 protein-coding 13 0.00155
-643161 FAM25A family with sequence similarity 25 member A protein-coding 10 0.001192
-643180 CCT6P3 chaperonin containing TCP1 subunit 6 pseudogene 3 pseudo 8 0.0009537
-643224 TUBBP5 tubulin beta pseudogene 5 pseudo 32 0.003815
-643226 GRXCR2 glutaredoxin and cysteine rich domain containing 2 protein-coding 30 0.003577
-643236 TMEM72 transmembrane protein 72 protein-coding 32 0.003815
-643246 MAP1LC3B2 microtubule associated protein 1 light chain 3 beta 2 protein-coding 23 0.002742
-643311 CT47B1 cancer/testis antigen family 47, member B1 protein-coding 109 0.01299
-643314 KIAA0754 KIAA0754 protein-coding 118 0.01407
-643338 C15orf62 chromosome 15 open reading frame 62 protein-coding 5 0.0005961
-643365 LINC00452 long intergenic non-protein coding RNA 452 protein-coding 18 0.002146
-643376 BTBD18 BTB domain containing 18 protein-coding 33 0.003934
-643382 TMEM253 transmembrane protein 253 protein-coding 9 0.001073
-643394 SPINK9 serine peptidase inhibitor, Kazal type 9 protein-coding 11 0.001311
-643414 LIPK lipase family member K protein-coding 38 0.00453
-643418 LIPN lipase family member N protein-coding 38 0.00453
-643641 ZNF862 zinc finger protein 862 protein-coding 121 0.01443
-643650 LINC00842 long intergenic non-protein coding RNA 842 ncRNA 3 0.0003577
-643664 SLC35G6 solute carrier family 35 member G6 protein-coding 29 0.003457
-643677 CCDC168 coiled-coil domain containing 168 protein-coding 132 0.01574
-643680 MS4A4E membrane spanning 4-domains A4E protein-coding 14 0.001669
-643707 GOLGA6L4 golgin A6 family-like 4 protein-coding 9 0.001073
-643803 KRTAP24-1 keratin associated protein 24-1 protein-coding 64 0.00763
-643812 KRTAP27-1 keratin associated protein 27-1 protein-coding 64 0.00763
-643834 PGA3 pepsinogen 3, group I (pepsinogen A) protein-coding 13 0.00155
-643836 ZFP62 ZFP62 zinc finger protein protein-coding 52 0.006199
-643853 TMPPE transmembrane protein with metallophosphoesterase domain protein-coding 32 0.003815
-643854 CTAGE9 CTAGE family member 9 protein-coding 82 0.009776
-643866 CBLN3 cerebellin 3 precursor protein-coding 33 0.003934
-643904 RNF222 ring finger protein 222 protein-coding 4 0.0004769
-643905 PRR21 proline rich 21 protein-coding 28 0.003338
-643955 ZNF733P zinc finger protein 733, pseudogene pseudo 158 0.01884
-643965 TMEM88B transmembrane protein 88B protein-coding 2 0.0002384
-644019 CBWD6 COBW domain containing 6 protein-coding 19 0.002265
-644022 RPL22P19 ribosomal protein L22 pseudogene 19 pseudo 23 0.002742
-644041 C18orf63 chromosome 18 open reading frame 63 protein-coding 12 0.001431
-644054 FAM25C family with sequence similarity 25 member C protein-coding 6 0.0007153
-644096 SDHAF1 succinate dehydrogenase complex assembly factor 1 protein-coding 1 0.0001192
-644128 RPL23AP53 ribosomal protein L23a pseudogene 53 pseudo 28 0.003338
-644139 PIRT phosphoinositide interacting regulator of transient receptor potential channels protein-coding 24 0.002861
-644150 WIPF3 WAS/WASL interacting protein family member 3 protein-coding 32 0.003815
-644168 DRGX dorsal root ganglia homeobox protein-coding 48 0.005722
-644186 SYCE3 synaptonemal complex central element protein 3 protein-coding 7 0.0008345
-644353 ZCCHC18 zinc finger CCHC-type containing 18 protein-coding 31 0.003696
-644414 DEFB131A defensin beta 131A protein-coding 13 0.00155
-644444 TMEM30CP transmembrane protein 30C, pseudogene pseudo 3 0.0003577
-644524 NKX2-4 NK2 homeobox 4 protein-coding 20 0.002384
-644538 SMIM10 small integral membrane protein 10 protein-coding 15 0.001788
-644591 PPIAL4G peptidylprolyl isomerase A like 4G protein-coding 38 0.00453
-644596 SMIM10L2B small integral membrane protein 10 like 2B protein-coding 19 0.002265
-644619 INTS4P2 integrator complex subunit 4 pseudogene 2 pseudo 46 0.005484
-644623 TPTE2P2 transmembrane phosphoinositide 3-phosphatase and tensin homolog 2 pseudogene 2 pseudo 29 0.003457
-644672 CLDN25 claudin 25 protein-coding 43 0.005126
-644809 C15orf56 chromosome 15 open reading frame 56 protein-coding 9 0.001073
-644815 FAM83G family with sequence similarity 83 member G protein-coding 102 0.01216
-644844 PHGR1 proline, histidine and glycine rich 1 protein-coding 12 0.001431
-644890 MEIG1 meiosis/spermiogenesis associated 1 protein-coding 14 0.001669
-644974 ALG1L2 ALG1, chitobiosyldiphosphodolichol beta-mannosyltransferase like 2 protein-coding 2 0.0002384
-644997 PIK3CD-AS1 PIK3CD antisense RNA 1 ncRNA 17 0.002027
-645027 EVPLL envoplakin like protein-coding 24 0.002861
-645037 GAGE2B G antigen 2B protein-coding 9 0.001073
-645051 GAGE13 G antigen 13 protein-coding 2 0.0002384
-645104 CLRN2 clarin 2 protein-coding 43 0.005126
-645121 CCNI2 cyclin I family member 2 protein-coding 17 0.002027
-645142 PPIAL4D peptidylprolyl isomerase A like 4D protein-coding 1 0.0001192
-645191 LINGO3 leucine rich repeat and Ig domain containing 3 protein-coding 40 0.004769
-645206 LINC00693 long intergenic non-protein coding RNA 693 ncRNA 11 0.001311
-645280 SMPD4P1 sphingomyelin phosphodiesterase 4 pseudogene 1 pseudo 18 0.002146
-645323 LINC00461 long intergenic non-protein coding RNA 461 ncRNA 2 0.0002384
-645332 FAM86C2P family with sequence similarity 86, member A pseudogene pseudo 33 0.003934
-645369 TMEM200C transmembrane protein 200C protein-coding 86 0.01025
-645414 PRAMEF19 PRAME family member 19 protein-coding 21 0.002504
-645425 PRAMEF20 PRAME family member 20 protein-coding 14 0.001669
-645426 TMEM191C transmembrane protein 191C protein-coding 3 0.0003577
-645432 ARRDC5 arrestin domain containing 5 protein-coding 37 0.004411
-645455 CEP170P1 centrosomal protein 170 pseudogene 1 pseudo 49 0.005842
-645528 FAM238A family with sequence similarity 238 member A (non-protein coding) ncRNA 11 0.001311
-645700 ZNF890P zinc finger protein 890, pseudogene pseudo 23 0.002742
-645745 MT1HL1 metallothionein 1H like 1 protein-coding 15 0.001788
-645784 ANKRD36BP2 ankyrin repeat domain 36B pseudogene 2 pseudo 116 0.01383
-645811 CCDC154 coiled-coil domain containing 154 protein-coding 35 0.004173
-645840 TXNRD3NB thioredoxin reductase 3 neighbor protein-coding 14 0.001669
-645843 TMEM14EP transmembrane protein 14E, pseudogene pseudo 8 0.0009537
-645922 S100A7L2 S100 calcium binding protein A7 like 2 protein-coding 21 0.002504
-645954 SVILP1 supervillin pseudogene 1 pseudo 30 0.003577
-645996 NAP1L6 nucleosome assembly protein 1 like 6 pseudo 8 0.0009537
-646024 RAET1K retinoic acid early transcript 1K pseudogene pseudo 45 0.005365
-646096 CHEK2P2 checkpoint kinase 2 pseudogene 2 pseudo 144 0.01717
-646113 LINC00643 long intergenic non-protein coding RNA 643 ncRNA 9 0.001073
-646174 C16orf90 chromosome 16 open reading frame 90 protein-coding 26 0.0031
-646282 AZGP1P1 alpha-2-glycoprotein 1, zinc-binding pseudogene 1 pseudo 19 0.002265
-646405 TPTE2P1 transmembrane phosphoinositide 3-phosphatase and tensin homolog 2 pseudogene 1 pseudo 5 0.0005961
-646424 SPINK8 serine peptidase inhibitor, Kazal type 8 (putative) protein-coding 5 0.0005961
-646450 ARIH2OS ariadne RBR E3 ubiquitin protein ligase 2 opposite strand protein-coding 15 0.001788
-646480 FABP9 fatty acid binding protein 9 protein-coding 27 0.003219
-646486 FABP12 fatty acid binding protein 12 protein-coding 23 0.002742
-646498 C3orf84 chromosome 3 open reading frame 84 protein-coding 14 0.001669
-646600 IGF2BP2-AS1 IGF2BP2 antisense RNA 1 ncRNA 19 0.002265
-646603 C4orf51 chromosome 4 open reading frame 51 protein-coding 33 0.003934
-646625 URAD ureidoimidazoline (2-oxo-4-hydroxy-4-carboxy-5-) decarboxylase protein-coding 12 0.001431
-646627 LYPD8 LY6/PLAUR domain containing 8 protein-coding 5 0.0005961
-646643 SBK2 SH3 domain binding kinase family member 2 protein-coding 34 0.004053
-646658 SYNDIG1L synapse differentiation inducing 1 like protein-coding 41 0.004888
-646799 ZAR1L zygote arrest 1 like protein-coding 31 0.003696
-646802 CYP4F62P cytochrome P450 family 4 subfamily F member 62, pseudogene pseudo 3 0.0003577
-646851 FAM227A family with sequence similarity 227 member A protein-coding 34 0.004053
-646892 SH2D7 SH2 domain containing 7 protein-coding 47 0.005603
-646962 HRCT1 histidine rich carboxyl terminus 1 protein-coding 12 0.001431
-646982 LINC00598 long intergenic non-protein coding RNA 598 ncRNA 1 0.0001192
-646996 RAB42P1 RAB42, member RAS oncogene family, pseudogene 1 pseudo 21 0.002504
-647024 C6orf132 chromosome 6 open reading frame 132 protein-coding 2 0.0002384
-647042 GOLGA6L10 golgin A6 family-like 10 protein-coding 10 0.001192
-647060 SPATA31A1 SPATA31 subfamily A member 1 protein-coding 43 0.005126
-647087 STMP1 short transmembrane mitochondrial protein 1 protein-coding 2 0.0002384
-647135 SRGAP2B SLIT-ROBO Rho GTPase activating protein 2B protein-coding 17 0.002027
-647174 SERPINE3 serpin family E member 3 protein-coding 50 0.005961
-647309 GMNC geminin coiled-coil domain containing protein-coding 20 0.002384
-647310 TEX22 testis expressed 22 protein-coding 4 0.0004769
-647589 ANHX anomalous homeobox protein-coding 28 0.003338
-647979 NORAD non-coding RNA activated by DNA damage ncRNA 5 0.0005961
-648691 LL22NC03-63E9.3 uncharacterized LOC648691 ncRNA 4 0.0004769
-648791 PPP1R3G protein phosphatase 1 regulatory subunit 3G protein-coding 12 0.001431
-649179 PRAMENP PRAME N-terminal-like, pseudogene pseudo 20 0.002384
-650368 TSSC2 tumor suppressing subtransferable candidate 2 pseudogene pseudo 64 0.00763
-650655 ABCA17P ATP binding cassette subfamily A member 17, pseudogene pseudo 28 0.003338
-651250 LRRC37A16P leucine rich repeat containing 37 member A16, pseudogene pseudo 2 0.0002384
-651302 ZNF192P1 zinc finger protein 192 pseudogene 1 pseudo 38 0.00453
-652968 CASTOR1 cytosolic arginine sensor for mTORC1 subunit 1 protein-coding 19 0.002265
-652972 LRRC37A5P leucine rich repeat containing 37 member A5, pseudogene pseudo 10 0.001192
-652991 SKOR2 SKI family transcriptional corepressor 2 protein-coding 21 0.002504
-652995 UCA1 urothelial cancer associated 1 (non-protein coding) ncRNA 5 0.0005961
-653073 GOLGA8J golgin A8 family member J protein-coding 5 0.0005961
-653121 ZBTB8A zinc finger and BTB domain containing 8A protein-coding 51 0.00608
-653125 GOLGA8K golgin A8 family member K protein-coding 1 0.0001192
-653140 FAM228A family with sequence similarity 228 member A protein-coding 21 0.002504
-653149 NBPF6 NBPF member 6 protein-coding 20 0.002384
-653166 OR1D4 olfactory receptor family 1 subfamily D member 4 (gene/pseudogene) protein-coding 32 0.003815
-653190 ABCC6P1 ATP binding cassette subfamily C member 6 pseudogene 1 pseudo 35 0.004173
-653234 AGAP10P ArfGAP with GTPase domain, ankyrin repeat and PH domain 10 pseudogene pseudo 1 0.0001192
-653238 GTF2H2B general transcription factor IIH subunit 2B (pseudogene) pseudo 12 0.001431
-653240 KRTAP4-11 keratin associated protein 4-11 protein-coding 39 0.004649
-653247 PRB2 proline rich protein BstNI subfamily 2 protein-coding 111 0.01323
-653268 AGAP7P ArfGAP with GTPase domain, ankyrin repeat and PH domain 7, pseudogene pseudo 79 0.009418
-653308 ASAH2B N-acylsphingosine amidohydrolase 2B protein-coding 12 0.001431
-653316 FAM153C family with sequence similarity 153 member C protein-coding 15 0.001788
-653319 KIAA0895L KIAA0895 like protein-coding 45 0.005365
-653333 FAM86B2 family with sequence similarity 86 member B2 protein-coding 18 0.002146
-653361 NCF1 neutrophil cytosolic factor 1 protein-coding 40 0.004769
-653390 RRN3P2 RRN3 homolog, RNA polymerase I transcription factor pseudogene 2 pseudo 60 0.007153
-653399 GSTTP2 glutathione S-transferase theta pseudogene 2 pseudo 1 0.0001192
-653404 FOXD4L6 forkhead box D4 like 6 protein-coding 14 0.001669
-653423 SPAG11A sperm associated antigen 11A protein-coding 11 0.001311
-653427 FOXD4L5 forkhead box D4 like 5 protein-coding 56 0.006676
-653437 AQP12B aquaporin 12B protein-coding 35 0.004173
-653440 WASH6P WAS protein family homolog 6 pseudogene pseudo 55 0.006557
-653479 MRPL45P2 mitochondrial ribosomal protein L45 pseudogene 2 pseudo 28 0.003338
-653489 RGPD3 RANBP2-like and GRIP domain containing 3 protein-coding 180 0.02146
-653492 PSG10P pregnancy specific beta-1-glycoprotein 10, pseudogene pseudo 109 0.01299
-653499 LGALS7B galectin 7B protein-coding 12 0.001431
-653505 PPIAL4A peptidylprolyl isomerase A like 4A protein-coding 8 0.0009537
-653509 SFTPA1 surfactant protein A1 protein-coding 39 0.004649
-653519 GPR89A G protein-coupled receptor 89A protein-coding 31 0.003696
-653567 TMEM236 transmembrane protein 236 protein-coding 3 0.0003577
-653583 PHLDB3 pleckstrin homology like domain family B member 3 protein-coding 58 0.006915
-653604 HIST2H3D histone cluster 2 H3 family member d protein-coding 28 0.003338
-653606 PRAMEF22 PRAME family member 22 protein-coding 25 0.00298
-653641 GOLGA6C golgin A6 family member C protein-coding 35 0.004173
-653643 GOLGA6D golgin A6 family member D protein-coding 32 0.003815
-653645 TBC1D3P1-DHX40P1 TBC1D3P1-DHX40P1 readthrough, transcribed pseudogene pseudo 9 0.001073
-653689 GSTT2B glutathione S-transferase theta 2B (gene/pseudogene) protein-coding 3 0.0003577
-653784 MZT2A mitotic spindle organizing protein 2A protein-coding 15 0.001788
-653808 ZG16 zymogen granule protein 16 protein-coding 12 0.001431
-653820 FAM72B family with sequence similarity 72 member B protein-coding 11 0.001311
-653857 ACTR3C ARP3 actin related protein 3 homolog C protein-coding 21 0.002504
-654231 OCM oncomodulin protein-coding 19 0.002265
-654254 ZNF732 zinc finger protein 732 protein-coding 72 0.008584
-654346 LGALS9C galectin 9C protein-coding 27 0.003219
-654364 NME1-NME2 NME1-NME2 readthrough protein-coding 13 0.00155
-654412 FAM138B family with sequence similarity 138 member B ncRNA 13 0.00155
-654429 LRTM2 leucine rich repeats and transmembrane domains 2 protein-coding 58 0.006915
-654463 FER1L6 fer-1 like family member 6 protein-coding 268 0.03195
-654502 IQCJ IQ motif containing J protein-coding 14 0.001669
-654780 LOC654780 splicing factor proline/glutamine-rich ncRNA 62 0.007392
-654790 PCP4L1 Purkinje cell protein 4 like 1 protein-coding 8 0.0009537
-654816 NCF1B neutrophil cytosolic factor 1B pseudogene pseudo 15 0.001788
-654835 FAM138C family with sequence similarity 138 member C ncRNA 4 0.0004769
-664612 MIR539 microRNA 539 ncRNA 6 0.0007153
-664613 MIR544A microRNA 544a ncRNA 7 0.0008345
-664614 MIR545 microRNA 545 ncRNA 6 0.0007153
-664616 MIR487B microRNA 487b ncRNA 13 0.00155
-664617 MIR542 microRNA 542 ncRNA 8 0.0009537
-664701 ZNF826P zinc finger protein 826, pseudogene pseudo 12 0.001431
-677779 LINC00488 long intergenic non-protein coding RNA 488 ncRNA 6 0.0007153
-677803 SNORA15 small nucleolar RNA, H/ACA box 15 snoRNA 6 0.0007153
-677807 SNORA22 small nucleolar RNA, H/ACA box 22 snoRNA 6 0.0007153
-677810 SNORA26 small nucleolar RNA, H/ACA box 26 snoRNA 7 0.0008345
-677837 SNORA60 small nucleolar RNA, H/ACA box 60 snoRNA 6 0.0007153
-677839 SNORA71C small nucleolar RNA, H/ACA box 71C snoRNA 3 0.0003577
-677840 SNORA71D small nucleolar RNA, H/ACA box 71D snoRNA 3 0.0003577
-692092 SNORD32B small nucleolar RNA, C/D box 32B snoRNA 3 0.0003577
-692094 MSMP microseminoprotein, prostate associated protein-coding 13 0.00155
-692099 FAM86DP family with sequence similarity 86 member D, pseudogene pseudo 57 0.006795
-692210 SNORD93 small nucleolar RNA, C/D box 93 snoRNA 2 0.0002384
-692312 PPAN-P2RY11 PPAN-P2RY11 readthrough protein-coding 24 0.002861
-693121 MIR411 microRNA 411 ncRNA 9 0.001073
-693122 MIR421 microRNA 421 ncRNA 3 0.0003577
-693125 MIR548A1 microRNA 548a-1 ncRNA 7 0.0008345
-693126 MIR548A2 microRNA 548a-2 ncRNA 5 0.0005961
-693134 MIR550A2 microRNA 550a-2 ncRNA 1 0.0001192
-693136 MIR551B microRNA 551b ncRNA 14 0.001669
-693142 MIR557 microRNA 557 ncRNA 3 0.0003577
-693148 MIR563 microRNA 563 ncRNA 2 0.0002384
-693153 MIR568 microRNA 568 ncRNA 4 0.0004769
-693155 MIR570 microRNA 570 ncRNA 8 0.0009537
-693157 MIR572 microRNA 572 ncRNA 1 0.0001192
-693158 MIR573 microRNA 573 ncRNA 7 0.0008345
-693168 MIR583 microRNA 583 ncRNA 2 0.0002384
-693172 MIR587 microRNA 587 ncRNA 8 0.0009537
-693173 MIR588 microRNA 588 ncRNA 3 0.0003577
-693181 MIR596 microRNA 596 ncRNA 2 0.0002384
-693191 MIR606 microRNA 606 ncRNA 4 0.0004769
-693207 MIR622 microRNA 622 ncRNA 5 0.0005961
-693218 MIR633 microRNA 633 ncRNA 8 0.0009537
-693231 MIR646 microRNA 646 ncRNA 10 0.001192
-723779 MIR651 microRNA 651 ncRNA 3 0.0003577
-723961 INS-IGF2 INS-IGF2 readthrough protein-coding 22 0.002623
-723972 ANP32AP1 acidic nuclear phosphoprotein 32 family member A pseudogene 1 pseudo 75 0.008941
-724024 MIR654 microRNA 654 ncRNA 7 0.0008345
-724025 MIR655 microRNA 655 ncRNA 11 0.001311
-724026 MIR656 microRNA 656 ncRNA 13 0.00155
-727708 SNORD116-19 small nucleolar RNA, C/D box 116-19 snoRNA 9 0.001073
-727758 ROCK1P1 Rho associated coiled-coil containing protein kinase 1 pseudogene 1 pseudo 61 0.007272
-727764 MAFIP MAFF interacting protein (pseudogene) pseudo 43 0.005126
-727800 RNF208 ring finger protein 208 protein-coding 23 0.002742
-727830 SPATA31A3 SPATA31 subfamily A member 3 protein-coding 58 0.006915
-727832 GOLGA6L6 golgin A6 family-like 6 protein-coding 36 0.004292
-727833 IMPDH1P11 inosine monophosphate dehydrogenase 1 pseudogene 11 pseudo 68 0.008107
-727851 RGPD8 RANBP2-like and GRIP domain containing 8 protein-coding 86 0.01025
-727897 MUC5B mucin 5B, oligomeric mucus/gel-forming protein-coding 545 0.06497
-727909 GOLGA8Q golgin A8 family member Q protein-coding 1 0.0001192
-727936 GXYLT2 glucoside xylosyltransferase 2 protein-coding 42 0.005007
-727940 RHOXF2B Rhox homeobox family member 2B protein-coding 24 0.002861
-727956 SDHAP2 succinate dehydrogenase complex flavoprotein subunit A pseudogene 2 pseudo 66 0.007868
-727957 MROH1 maestro heat like repeat family member 1 protein-coding 50 0.005961
-728062 CT47A6 cancer/testis antigen family 47, member A6 protein-coding 3 0.0003577
-728113 ANXA8L1 annexin A8 like 1 protein-coding 19 0.002265
-728116 ZBTB8B zinc finger and BTB domain containing 8B protein-coding 25 0.00298
-728118 NUTM2A NUT family member 2A protein-coding 29 0.003457
-728130 NUTM2D NUT family member 2D protein-coding 22 0.002623
-728194 RSPH10B2 radial spoke head 10 homolog B2 protein-coding 62 0.007392
-728215 FAM155A family with sequence similarity 155 member A protein-coding 99 0.0118
-728218 LINC00864 long intergenic non-protein coding RNA 864 ncRNA 3 0.0003577
-728224 KRTAP4-8 keratin associated protein 4-8 protein-coding 23 0.002742
-728233 PI4KAP1 phosphatidylinositol 4-kinase alpha pseudogene 1 pseudo 32 0.003815
-728239 MAGED4 MAGE family member D4 protein-coding 3 0.0003577
-728262 FAM157A family with sequence similarity 157 member A (non-protein coding) ncRNA 13 0.00155
-728269 MAGEA9B MAGE family member A9B protein-coding 7 0.0008345
-728276 CLEC19A C-type lectin domain containing 19A protein-coding 6 0.0007153
-728294 D2HGDH D-2-hydroxyglutarate dehydrogenase protein-coding 48 0.005722
-728299 KRTAP19-8 keratin associated protein 19-8 protein-coding 19 0.002265
-728310 GOLGA6L7 golgin A6 family like 7 protein-coding 32 0.003815
-728340 GTF2H2C GTF2H2 family member C protein-coding 9 0.001073
-728343 NXF2B nuclear RNA export factor 2B protein-coding 45 0.005365
-728378 POTEF POTE ankyrin domain family member F protein-coding 269 0.03207
-728403 TSPY8 testis specific protein, Y-linked 8 protein-coding 3 0.0003577
-728409 LINC01548 long intergenic non-protein coding RNA 1548 ncRNA 8 0.0009537
-728411 GUSBP1 glucuronidase, beta pseudogene 1 pseudo 30 0.003577
-728418 POM121L7P POM121 transmembrane nucleoporin like 7 pseudogene pseudo 2 0.0002384
-728441 GGT2 gamma-glutamyltransferase 2 protein-coding 5 0.0005961
-728448 PPIEL peptidylprolyl isomerase E like pseudogene pseudo 10 0.001192
-728458 OPN1MW2 opsin 1, medium wave sensitive 2 protein-coding 17 0.002027
-728464 METTL24 methyltransferase like 24 protein-coding 42 0.005007
-728489 DNLZ DNL-type zinc finger protein-coding 13 0.00155
-728492 SERF1B small EDRK-rich factor 1B protein-coding 1 0.0001192
-728495 FAM74A3 family with sequence similarity 74 member A3 ncRNA 45 0.005365
-728537 C2orf92 chromosome 2 open reading frame 92 protein-coding 9 0.001073
-728568 C12orf73 chromosome 12 open reading frame 73 protein-coding 4 0.0004769
-728577 CNTNAP3B contactin associated protein like 3B protein-coding 89 0.01061
-728588 MS4A18 membrane spanning 4-domains A18 protein-coding 1 0.0001192
-728591 CCDC169 coiled-coil domain containing 169 protein-coding 22 0.002623
-728609 SDHAP3 succinate dehydrogenase complex flavoprotein subunit A pseudogene 3 pseudo 11 0.001311
-728621 CCDC30 coiled-coil domain containing 30 protein-coding 100 0.01192
-728642 CDK11A cyclin dependent kinase 11A protein-coding 55 0.006557
-728656 DMRTC1B DMRT like family C1B protein-coding 1 0.0001192
-728661 SLC35E2B solute carrier family 35 member E2B protein-coding 28 0.003338
-728689 EIF3CL eukaryotic translation initiation factor 3 subunit C like protein-coding 4 0.0004769
-728741 NPIPB6 nuclear pore complex interacting protein family member B6 protein-coding 21 0.002504
-728747 ANKRD20A4 ankyrin repeat domain 20 family member A4 protein-coding 54 0.006438
-728780 ANKDD1B ankyrin repeat and death domain containing 1B protein-coding 13 0.00155
-728833 FAM72D family with sequence similarity 72 member D protein-coding 13 0.00155
-728841 NBPF8 NBPF member 8 protein-coding 4 0.0004769
-728858 C12orf71 chromosome 12 open reading frame 71 protein-coding 42 0.005007
-728882 FAM182B family with sequence similarity 182 member B ncRNA 20 0.002384
-728927 ZNF736 zinc finger protein 736 protein-coding 47 0.005603
-728929 ELOA3B elongin A3 family member B protein-coding 22 0.002623
-728957 ZNF705D zinc finger protein 705D protein-coding 8 0.0009537
-728970 PPP1R2P4 protein phosphatase 1 regulatory inhibitor subunit 2 pseudogene 4 pseudo 42 0.005007
-729020 RPEL1 ribulose-5-phosphate-3-epimerase like 1 protein-coding 21 0.002504
-729059 TEX46 testis expressed 46 protein-coding 3 0.0003577
-729085 FAM198A family with sequence similarity 198 member A protein-coding 36 0.004292
-729092 AGAP5 ArfGAP with GTPase domain, ankyrin repeat and PH domain 5 protein-coding 51 0.00608
-729156 GTF2IRD1P1 GTF2I repeat domain containing 1 pseudogene 1 pseudo 31 0.003696
-729171 ANKRD20A8P ankyrin repeat domain 20 family member A8, pseudogene pseudo 93 0.01109
-729177 NBAT1 neuroblastoma associated transcript 1 ncRNA 8 0.0009537
-729201 SPACA5B sperm acrosome associated 5B protein-coding 1 0.0001192
-729230 CCR2 C-C motif chemokine receptor 2 protein-coding 60 0.007153
-729238 SFTPA2 surfactant protein A2 protein-coding 42 0.005007
-729252 KRT16P1 keratin 16 pseudogene 1 pseudo 9 0.001073
-729258 RPS11P6 ribosomal protein S11 pseudogene 6 pseudo 7 0.0008345
-729264 TP53TG3D TP53 target 3D protein-coding 34 0.004053
-729288 ZNF286B zinc finger protein 286B protein-coding 74 0.008822
-729330 OC90 otoconin 90 protein-coding 97 0.01156
-729359 PLIN4 perilipin 4 protein-coding 113 0.01347
-729375 FAM86HP family with sequence similarity 86, member A pseudogene pseudo 25 0.00298
-729396 GAGE12J G antigen 12J protein-coding 4 0.0004769
-729408 GAGE2D G antigen 2D protein-coding 2 0.0002384
-729420 LMO7DN LMO7 downstream neighbor protein-coding 4 0.0004769
-729438 CASTOR2 cytosolic arginine sensor for mTORC1 subunit 2 protein-coding 6 0.0007153
-729440 CCDC61 coiled-coil domain containing 61 protein-coding 38 0.00453
-729442 GAGE12H G antigen 12H protein-coding 6 0.0007153
-729447 GAGE2A G antigen 2A protein-coding 6 0.0007153
-729475 RAD51AP2 RAD51 associated protein 2 protein-coding 173 0.02062
-729515 TMEM242 transmembrane protein 242 protein-coding 23 0.002742
-729522 AACSP1 acetoacetyl-CoA synthetase pseudogene 1 pseudo 27 0.003219
-729528 PRAMEF14 PRAME family member 14 protein-coding 25 0.00298
-729533 FAM72A family with sequence similarity 72 member A protein-coding 9 0.001073
-729627 PRR23A proline rich 23A protein-coding 65 0.007749
-729648 ZNF812P zinc finger protein 812, pseudogene pseudo 70 0.008345
-729659 S100A11P1 S100 calcium binding protein A11 pseudogene 1 pseudo 15 0.001788
-729665 CCDC175 coiled-coil domain containing 175 protein-coding 1 0.0001192
-729668 GOLGA2P6 golgin A2 pseudogene 6 pseudo 1 0.0001192
-729747 ZNF878 zinc finger protein 878 protein-coding 87 0.01037
-729767 CEACAM18 carcinoembryonic antigen related cell adhesion molecule 18 protein-coding 83 0.009895
-729809 DNM1P34 dynamin 1 pseudogene 34 pseudo 26 0.0031
-729830 FAM160A1 family with sequence similarity 160 member A1 protein-coding 56 0.006676
-729852 UMAD1 UBAP1-MVB12-associated (UMA) domain containing 1 protein-coding 6 0.0007153
-729857 RGPD2 RANBP2-like and GRIP domain containing 2 protein-coding 47 0.005603
-729873 TBC1D3 TBC1 domain family member 3 protein-coding 2 0.0002384
-729877 TBC1D3H TBC1 domain family member 3H protein-coding 1 0.0001192
-729920 ISPD isoprenoid synthase domain containing protein-coding 55 0.006557
-729956 SHISA7 shisa family member 7 protein-coding 12 0.001431
-729967 MORN2 MORN repeat containing 2 protein-coding 3 0.0003577
-729991 BORCS8 BLOC-1 related complex subunit 8 protein-coding 3 0.0003577
-729993 SHISA9 shisa family member 9 protein-coding 36 0.004292
-730051 ZNF814 zinc finger protein 814 protein-coding 110 0.01311
-730087 ZNF726 zinc finger protein 726 protein-coding 13 0.00155
-730092 RRN3P1 RRN3 homolog, RNA polymerase I transcription factor pseudogene 1 pseudo 21 0.002504
-730094 MOSMO modulator of smoothened protein-coding 6 0.0007153
-730112 FAM166B family with sequence similarity 166 member B protein-coding 31 0.003696
-730130 TMEM229A transmembrane protein 229A protein-coding 20 0.002384
-730249 ACOD1 aconitate decarboxylase 1 protein-coding 207 0.02468
-730755 KRTAP2-3 keratin associated protein 2-3 protein-coding 4 0.0004769
-731220 RFX8 RFX family member 8, lacking RFX DNA binding domain protein-coding 28 0.003338
-731789 FAM238B family with sequence similarity 238 member B (non-protein coding) ncRNA 18 0.002146
-732253 TDRG1 testis development related 1 protein-coding 12 0.001431
-732275 LINC00917 long intergenic non-protein coding RNA 917 ncRNA 13 0.00155
-751071 CSKMT citrate synthase lysine methyltransferase protein-coding 22 0.002623
-752014 CEMP1 cementum protein 1 protein-coding 37 0.004411
-767561 SNORD113-1 small nucleolar RNA, C/D box 113-1 snoRNA 2 0.0002384
-767562 SNORD113-2 small nucleolar RNA, C/D box 113-2 snoRNA 4 0.0004769
-767563 SNORD113-3 small nucleolar RNA, C/D box 113-3 snoRNA 4 0.0004769
-767564 SNORD113-4 small nucleolar RNA, C/D box 113-4 snoRNA 7 0.0008345
-767565 SNORD113-5 small nucleolar RNA, C/D box 113-5 snoRNA 3 0.0003577
-767566 SNORD113-6 small nucleolar RNA, C/D box 113-6 snoRNA 4 0.0004769
-767567 SNORD113-7 small nucleolar RNA, C/D box 113-7 snoRNA 2 0.0002384
-767568 SNORD113-8 small nucleolar RNA, C/D box 113-8 snoRNA 4 0.0004769
-767569 SNORD113-9 small nucleolar RNA, C/D box 113-9 snoRNA 1 0.0001192
-767577 SNORD114-1 small nucleolar RNA, C/D box 114-1 snoRNA 7 0.0008345
-767578 SNORD114-2 small nucleolar RNA, C/D box 114-2 snoRNA 4 0.0004769
-767579 SNORD114-3 small nucleolar RNA, C/D box 114-3 snoRNA 7 0.0008345
-767580 SNORD114-4 small nucleolar RNA, C/D box 114-4 snoRNA 1 0.0001192
-767581 SNORD114-5 small nucleolar RNA, C/D box 114-5 snoRNA 4 0.0004769
-767582 SNORD114-6 small nucleolar RNA, C/D box 114-6 snoRNA 2 0.0002384
-767583 SNORD114-7 small nucleolar RNA, C/D box 114-7 snoRNA 4 0.0004769
-767585 SNORD114-9 small nucleolar RNA, C/D box 114-9 snoRNA 3 0.0003577
-767589 SNORD114-11 small nucleolar RNA, C/D box 114-11 snoRNA 2 0.0002384
-767590 SNORD114-12 small nucleolar RNA, C/D box 114-12 snoRNA 4 0.0004769
-767591 SNORD114-13 small nucleolar RNA, C/D box 114-13 snoRNA 3 0.0003577
-767592 SNORD114-14 small nucleolar RNA, C/D box 114-14 snoRNA 6 0.0007153
-767593 SNORD114-15 small nucleolar RNA, C/D box 114-15 snoRNA 8 0.0009537
-767594 SNORD114-16 small nucleolar RNA, C/D box 114-16 snoRNA 5 0.0005961
-767595 SNORD114-17 small nucleolar RNA, C/D box 114-17 snoRNA 3 0.0003577
-767596 SNORD114-18 small nucleolar RNA, C/D box 114-18 snoRNA 2 0.0002384
-767597 SNORD114-19 small nucleolar RNA, C/D box 114-19 snoRNA 8 0.0009537
-767598 SNORD114-20 small nucleolar RNA, C/D box 114-20 snoRNA 7 0.0008345
-767599 SNORD114-21 small nucleolar RNA, C/D box 114-21 snoRNA 8 0.0009537
-767600 SNORD114-22 small nucleolar RNA, C/D box 114-22 snoRNA 7 0.0008345
-767603 SNORD114-23 small nucleolar RNA, C/D box 114-23 snoRNA 3 0.0003577
-767604 SNORD114-24 small nucleolar RNA, C/D box 114-24 snoRNA 5 0.0005961
-767605 SNORD114-25 small nucleolar RNA, C/D box 114-25 snoRNA 7 0.0008345
-767606 SNORD114-26 small nucleolar RNA, C/D box 114-26 snoRNA 4 0.0004769
-767608 SNORD114-27 small nucleolar RNA, C/D box 114-27 snoRNA 2 0.0002384
-767609 SNORD114-28 small nucleolar RNA, C/D box 114-28 snoRNA 6 0.0007153
-767610 SNORD114-29 small nucleolar RNA, C/D box 114-29 snoRNA 1 0.0001192
-767611 SNORD114-30 small nucleolar RNA, C/D box 114-30 snoRNA 3 0.0003577
+406989 MIR206 microRNA 206 ncRNA 6 0.0007145
+406995 MIR181A1 microRNA 181a-1 ncRNA 9 0.001072
+406998 MIR216A microRNA 216a ncRNA 7 0.0008336
+406999 MIR217 microRNA 217 ncRNA 5 0.0005955
+407006 MIR221 microRNA 221 ncRNA 10 0.001191
+407007 MIR222 microRNA 222 ncRNA 10 0.001191
+407021 MIR29A microRNA 29a ncRNA 2 0.0002382
+407022 MIR296 microRNA 296 ncRNA 13 0.001548
+407023 MIR299 microRNA 299 ncRNA 6 0.0007145
+407029 MIR30A microRNA 30a ncRNA 6 0.0007145
+407030 MIR30B microRNA 30b ncRNA 2 0.0002382
+407032 MIR30C2 microRNA 30c-2 ncRNA 4 0.0004764
+407033 MIR30D microRNA 30d ncRNA 7 0.0008336
+407035 MIR31 microRNA 31 ncRNA 4 0.0004764
+407040 MIR34A microRNA 34a ncRNA 8 0.0009527
+407044 MIR7-2 microRNA 7-2 ncRNA 7 0.0008336
+407045 MIR7-3 microRNA 7-3 ncRNA 8 0.0009527
+407049 MIR92A2 microRNA 92a-2 ncRNA 1 0.0001191
+407051 MIR9-3 microRNA 9-3 ncRNA 5 0.0005955
+407055 MIR99A microRNA 99a ncRNA 8 0.0009527
+407056 MIR99B microRNA 99b ncRNA 3 0.0003573
+407738 FAM19A1 family with sequence similarity 19 member A1, C-C motif chemokine like protein-coding 38 0.004525
+407975 MIR17HG miR-17-92a-1 cluster host gene ncRNA 36 0.004287
+407977 TNFSF12-TNFSF13 TNFSF12-TNFSF13 readthrough protein-coding 15 0.001786
+408029 C2orf27B chromosome 2 open reading frame 27B protein-coding 5 0.0005955
+408050 NOMO3 NODAL modulator 3 protein-coding 38 0.004525
+408187 SPINK14 serine peptidase inhibitor, Kazal type 14 (putative) protein-coding 15 0.001786
+408263 FNDC9 fibronectin type III domain containing 9 protein-coding 31 0.003692
+414059 TBC1D3B TBC1 domain family member 3B protein-coding 31 0.003692
+414060 TBC1D3C TBC1 domain family member 3C protein-coding 12 0.001429
+414062 CCL3L3 C-C motif chemokine ligand 3 like 3 protein-coding 1 0.0001191
+414149 ACBD7 acyl-CoA binding domain containing 7 protein-coding 16 0.001905
+414152 C10orf105 chromosome 10 open reading frame 105 protein-coding 13 0.001548
+414157 C10orf62 chromosome 10 open reading frame 62 protein-coding 21 0.002501
+414189 AGAP6 ArfGAP with GTPase domain, ankyrin repeat and PH domain 6 protein-coding 79 0.009408
+414194 CCNYL2 cyclin Y-like 2 (pseudogene) pseudo 52 0.006193
+414212 GLUD1P2 glutamate dehydrogenase 1 pseudogene 2 pseudo 6 0.0007145
+414235 PRR26 proline rich 26 protein-coding 7 0.0008336
+414236 C10orf55 chromosome 10 open reading frame 55 protein-coding 5 0.0005955
+414301 DDI1 DNA damage inducible 1 homolog 1 protein-coding 124 0.01477
+414318 C9orf106 chromosome 9 open reading frame 106 (putative) ncRNA 27 0.003215
+414328 IDNK IDNK, gluconokinase protein-coding 13 0.001548
+414332 LCN10 lipocalin 10 protein-coding 15 0.001786
+414763 BMS1P18 BMS1, ribosome biogenesis factor pseudogene 18 pseudo 9 0.001072
+414899 BLID BH3-like motif containing, cell death inducer protein-coding 19 0.002263
+414918 DENND6B DENN domain containing 6B protein-coding 42 0.005002
+414919 C8orf82 chromosome 8 open reading frame 82 protein-coding 14 0.001667
+415116 PIM3 Pim-3 proto-oncogene, serine/threonine kinase protein-coding 25 0.002977
+415117 STX19 syntaxin 19 protein-coding 37 0.004406
+425054 VCX3B variable charge, X-linked 3B protein-coding 27 0.003215
+431704 RGS21 regulator of G protein signaling 21 protein-coding 48 0.005716
+431705 ASTL astacin like metalloendopeptidase protein-coding 79 0.009408
+431707 LHX8 LIM homeobox 8 protein-coding 83 0.009884
+432369 ATP5F1EP2 ATP synthase F1 subunit epsilon pseudogene 2 pseudo 6 0.0007145
+439915 KRTAP5-5 keratin associated protein 5-5 protein-coding 35 0.004168
+439921 MXRA7 matrix remodeling associated 7 protein-coding 7 0.0008336
+439927 LINC01555 long intergenic non-protein coding RNA 1555 ncRNA 7 0.0008336
+439994 LINC00863 long intergenic non-protein coding RNA 863 ncRNA 3 0.0003573
+439996 IFIT1B interferon induced protein with tetratricopeptide repeats 1B protein-coding 45 0.005359
+440021 KRTAP5-2 keratin associated protein 5-2 protein-coding 20 0.002382
+440023 KRTAP5-6 keratin associated protein 5-6 protein-coding 19 0.002263
+440026 TMEM41B transmembrane protein 41B protein-coding 22 0.00262
+440041 TRIM51HP tripartite motif-containing 51H, pseudogene pseudo 151 0.01798
+440044 SLC22A20P solute carrier family 22 member 20, pseudogene pseudo 55 0.00655
+440050 KRTAP5-7 keratin associated protein 5-7 protein-coding 17 0.002025
+440051 KRTAP5-11 keratin associated protein 5-11 protein-coding 27 0.003215
+440068 CARD17 caspase recruitment domain family member 17 protein-coding 26 0.003096
+440073 IQSEC3 IQ motif and Sec7 domain 3 protein-coding 138 0.01643
+440077 ZNF705A zinc finger protein 705A protein-coding 49 0.005835
+440078 FAM66C family with sequence similarity 66 member C ncRNA 10 0.001191
+440087 SMCO3 single-pass membrane protein with coiled-coil domains 3 protein-coding 34 0.004049
+440093 H3F3C H3 histone family member 3C protein-coding 36 0.004287
+440097 DBX2 developing brain homeobox 2 protein-coding 49 0.005835
+440107 PLEKHG7 pleckstrin homology and RhoGEF domain containing G7 protein-coding 63 0.007503
+440131 LINC00544 long intergenic non-protein coding RNA 544 ncRNA 7 0.0008336
+440138 ALG11 ALG11, alpha-1,2-mannosyltransferase protein-coding 54 0.006431
+440145 MZT1 mitotic spindle organizing protein 1 protein-coding 10 0.001191
+440153 OR11H12 olfactory receptor family 11 subfamily H member 12 protein-coding 100 0.01191
+440163 RNASE13 ribonuclease A family member 13 (inactive) protein-coding 24 0.002858
+440184 CCDC196 coiled-coil domain containing 196 protein-coding 22 0.00262
+440193 CCDC88C coiled-coil domain containing 88C protein-coding 151 0.01798
+440224 CXADRP3 CXADR pseudogene 3 pseudo 136 0.0162
+440248 HERC2P9 hect domain and RLD 2 pseudogene 9 pseudo 34 0.004049
+440253 WHAMMP2 WAS protein homolog associated with actin, golgi membranes and microtubules pseudogene 2 pseudo 16 0.001905
+440270 GOLGA8B golgin A8 family member B protein-coding 91 0.01084
+440275 EIF2AK4 eukaryotic translation initiation factor 2 alpha kinase 4 protein-coding 137 0.01632
+440279 UNC13C unc-13 homolog C protein-coding 410 0.04883
+440307 TTLL13P tubulin tyrosine ligase like 13, pseudogene pseudo 65 0.007741
+440335 SMIM22 small integral membrane protein 22 protein-coding 1 0.0001191
+440345 NPIPB4 nuclear pore complex interacting protein family member B4 protein-coding 28 0.003335
+440348 NPIPB15 nuclear pore complex interacting protein family member B15 protein-coding 48 0.005716
+440350 NPIPB7 nuclear pore complex interacting protein family member B7 pseudo 18 0.002144
+440352 SNX29P2 sorting nexin 29 pseudogene 2 pseudo 35 0.004168
+440387 CTRB2 chymotrypsinogen B2 protein-coding 13 0.001548
+440400 RNASEK ribonuclease K protein-coding 7 0.0008336
+440419 TBC1D3P5 TBC1 domain family member 3 pseudogene 5 pseudo 91 0.01084
+440423 SUZ12P1 SUZ12 polycomb repressive complex 2 subunit pseudogene 1 pseudo 18 0.002144
+440435 GPR179 G protein-coupled receptor 179 protein-coding 240 0.02858
+440452 TBC1D3P2 TBC1 domain family member 3 pseudogene 2 pseudo 71 0.008455
+440456 PLEKHM1P1 pleckstrin homology and RUN domain containing M1 pseudogene 1 pseudo 82 0.009765
+440482 ANKRD20A5P ankyrin repeat domain 20 family member A5, pseudogene pseudo 42 0.005002
+440498 HSBP1L1 heat shock factor binding protein 1 like 1 protein-coding 8 0.0009527
+440503 PLIN5 perilipin 5 protein-coding 43 0.005121
+440515 ZNF506 zinc finger protein 506 protein-coding 59 0.007026
+440519 ZNF724 zinc finger protein 724 protein-coding 91 0.01084
+440533 PSG8 pregnancy specific beta-1-glycoprotein 8 protein-coding 120 0.01429
+440556 LINC00982 long intergenic non-protein coding RNA 982 ncRNA 11 0.00131
+440560 PRAMEF11 PRAME family member 11 protein-coding 84 0.01
+440561 PRAMEF6 PRAME family member 6 protein-coding 43 0.005121
+440574 MINOS1 mitochondrial inner membrane organizing system 1 protein-coding 4 0.0004764
+440585 FAM183A family with sequence similarity 183 member A protein-coding 9 0.001072
+440590 ZYG11A zyg-11 family member A, cell cycle regulator protein-coding 57 0.006788
+440603 BCL2L15 BCL2 like 15 protein-coding 17 0.002025
+440689 HIST2H2BF histone cluster 2 H2B family member f protein-coding 30 0.003573
+440695 ETV3L ETS variant 3 like protein-coding 51 0.006074
+440699 LRRC52 leucine rich repeat containing 52 protein-coding 53 0.006312
+440712 RHEX regulator of hemoglobinization and erythroid cell expansion protein-coding 26 0.003096
+440730 TRIM67 tripartite motif containing 67 protein-coding 102 0.01215
+440738 MAP1LC3C microtubule associated protein 1 light chain 3 gamma protein-coding 31 0.003692
+440804 RIMBP3B RIMS binding protein 3B protein-coding 14 0.001667
+440822 PIWIL3 piwi like RNA-mediated gene silencing 3 protein-coding 108 0.01286
+440823 MIAT myocardial infarction associated transcript (non-protein coding) ncRNA 12 0.001429
+440836 ODF3B outer dense fiber of sperm tails 3B protein-coding 6 0.0007145
+440854 CAPN14 calpain 14 protein-coding 56 0.006669
+440894 LINC01123 long intergenic non-protein coding RNA 1123 ncRNA 4 0.0004764
+440905 FAR2P1 fatty acyl-CoA reductase 2 pseudogene 1 pseudo 8 0.0009527
+440925 LINC01124 long intergenic non-protein coding RNA 1124 ncRNA 11 0.00131
+440955 TMEM89 transmembrane protein 89 protein-coding 21 0.002501
+440956 IQCF6 IQ motif containing F6 protein-coding 13 0.001548
+440957 SMIM4 small integral membrane protein 4 protein-coding 4 0.0004764
+441024 MTHFD2L methylenetetrahydrofolate dehydrogenase (NADP+ dependent) 2 like protein-coding 48 0.005716
+441027 TMEM150C transmembrane protein 150C protein-coding 36 0.004287
+441054 C4orf47 chromosome 4 open reading frame 47 protein-coding 25 0.002977
+441061 MARCH11 membrane associated ring-CH-type finger 11 protein-coding 70 0.008336
+441108 C5orf56 chromosome 5 open reading frame 56 protein-coding 14 0.001667
+441150 C6orf226 chromosome 6 open reading frame 226 protein-coding 8 0.0009527
+441151 TMEM151B transmembrane protein 151B protein-coding 22 0.00262
+441161 OOEP oocyte expressed protein protein-coding 41 0.004883
+441168 CALHM6 calcium homeostasis modulator family member 6 protein-coding 25 0.002977
+441191 RNF216P1 ring finger protein 216 pseudogene 1 pseudo 17 0.002025
+441194 PMS2CL PMS2 C-terminal like pseudogene pseudo 70 0.008336
+441212 RP9P RP9 pseudogene pseudo 13 0.001548
+441234 ZNF716 zinc finger protein 716 protein-coding 184 0.02191
+441250 TYW1B tRNA-yW synthesizing protein 1 homolog B protein-coding 93 0.01108
+441272 SPDYE3 speedy/RINGO cell cycle regulator family member E3 protein-coding 43 0.005121
+441273 SPDYE2 speedy/RINGO cell cycle regulator family member E2 protein-coding 7 0.0008336
+441282 AKR1B15 aldo-keto reductase family 1 member B15 protein-coding 69 0.008217
+441294 CTAGE15 CTAGE family member 15 protein-coding 22 0.00262
+441308 OR4F21 olfactory receptor family 4 subfamily F member 21 protein-coding 2 0.0002382
+441376 AARD alanine and arginine rich domain containing protein protein-coding 30 0.003573
+441381 LRRC24 leucine rich repeat containing 24 protein-coding 28 0.003335
+441425 ANKRD20A3 ankyrin repeat domain 20 family member A3 protein-coding 6 0.0007145
+441430 ANKRD20A2 ankyrin repeat domain 20 family member A2 protein-coding 17 0.002025
+441452 SPATA31C1 SPATA31 subfamily C member 1 protein-coding 84 0.01
+441457 NUTM2G NUT family member 2G protein-coding 54 0.006431
+441459 ANKRD18B ankyrin repeat domain 18B protein-coding 30 0.003573
+441476 STPG3 sperm-tail PG-rich repeat containing 3 protein-coding 27 0.003215
+441478 NRARP NOTCH regulated ankyrin repeat protein protein-coding 12 0.001429
+441509 GLRA4 glycine receptor alpha 4 protein-coding 69 0.008217
+441518 RTL8B retrotransposon Gag like 8B protein-coding 22 0.00262
+441519 CT45A3 cancer/testis antigen family 45 member A3 protein-coding 1 0.0001191
+441521 CT45A5 cancer/testis antigen family 45 member A5 protein-coding 28 0.003335
+441525 SPANXN4 SPANX family member N4 protein-coding 13 0.001548
+441531 PGAM4 phosphoglycerate mutase family member 4 protein-coding 55 0.00655
+441549 CDNF cerebral dopamine neurotrophic factor protein-coding 33 0.00393
+441581 FRG2B FSHD region gene 2 family member B protein-coding 53 0.006312
+441608 OR5B3 olfactory receptor family 5 subfamily B member 3 protein-coding 75 0.008932
+441631 TSPAN11 tetraspanin 11 protein-coding 39 0.004645
+441639 OR9K2 olfactory receptor family 9 subfamily K member 2 protein-coding 69 0.008217
+441669 OR4Q3 olfactory receptor family 4 subfamily Q member 3 protein-coding 134 0.01596
+441670 OR4M1 olfactory receptor family 4 subfamily M member 1 protein-coding 137 0.01632
+441818 WBP11P1 WW domain binding protein 11 pseudogene 1 pseudo 145 0.01727
+441864 TARM1 T cell-interacting, activating receptor on myeloid cells 1 protein-coding 17 0.002025
+441869 ANKRD65 ankyrin repeat domain 65 protein-coding 14 0.001667
+441871 PRAMEF7 PRAME family member 7 protein-coding 29 0.003454
+441908 NBPF18P NBPF member 18, pseudogene pseudo 52 0.006193
+441911 OR10J3 olfactory receptor family 10 subfamily J member 3 protein-coding 112 0.01334
+441932 OR2W5 olfactory receptor family 2 subfamily W member 5 (gene/pseudogene) protein-coding 146 0.01739
+441933 OR13G1 olfactory receptor family 13 subfamily G member 1 protein-coding 88 0.01048
+441951 ZFAS1 ZNFX1 antisense RNA 1 ncRNA 4 0.0004764
+442038 SULT1C3 sulfotransferase family 1C member 3 protein-coding 50 0.005955
+442117 GALNTL6 polypeptide N-acetylgalactosaminyltransferase like 6 protein-coding 130 0.01548
+442184 OR2B3 olfactory receptor family 2 subfamily B member 3 protein-coding 59 0.007026
+442186 OR2J3 olfactory receptor family 2 subfamily J member 3 protein-coding 95 0.01131
+442191 OR14J1 olfactory receptor family 14 subfamily J member 1 protein-coding 65 0.007741
+442194 OR10C1 olfactory receptor family 10 subfamily C member 1 (gene/pseudogene) protein-coding 64 0.007622
+442213 PTCHD4 patched domain containing 4 protein-coding 171 0.02036
+442247 RFPL4B ret finger protein like 4B protein-coding 54 0.006431
+442319 ZNF727 zinc finger protein 727 protein-coding 87 0.01036
+442334 ARF1P1 ADP ribosylation factor 1 pseudogene 1 pseudo 35 0.004168
+442361 OR2A2 olfactory receptor family 2 subfamily A member 2 protein-coding 79 0.009408
+442388 SDR16C6P short chain dehydrogenase/reductase family 16C member 6, pseudogene pseudo 15 0.001786
+442425 FOXB2 forkhead box B2 protein-coding 49 0.005835
+442444 FAM47C family with sequence similarity 47 member C protein-coding 313 0.03728
+442524 DPY19L2P3 DPY19L2 pseudogene 3 pseudo 5 0.0005955
+442578 STAG3L3 stromal antigen 3-like 3 (pseudogene) pseudo 14 0.001667
+442582 STAG3L2 stromal antigen 3-like 2 (pseudogene) pseudo 16 0.001905
+442721 LMOD2 leiomodin 2 protein-coding 76 0.009051
+442868 BPY2C basic charge, Y-linked, 2C protein-coding 1 0.0001191
+442890 MIR133B microRNA 133b ncRNA 6 0.0007145
+442891 MIR135B microRNA 135b ncRNA 4 0.0004764
+442897 MIR323A microRNA 323a ncRNA 19 0.002263
+442899 MIR325 microRNA 325 ncRNA 10 0.001191
+442903 MIR331 microRNA 331 ncRNA 4 0.0004764
+442905 MIR337 microRNA 337 ncRNA 7 0.0008336
+442913 MIR376C microRNA 376c ncRNA 3 0.0003573
+442914 MIR369 microRNA 369 ncRNA 20 0.002382
+442915 MIR370 microRNA 370 ncRNA 2 0.0002382
+442916 MIR371A microRNA 371a ncRNA 6 0.0007145
+442917 MIR372 microRNA 372 ncRNA 4 0.0004764
+442919 MIR374A microRNA 374a ncRNA 2 0.0002382
+444882 IGFL4 IGF like family member 4 protein-coding 12 0.001429
+445328 ARHGEF35 Rho guanine nucleotide exchange factor 35 protein-coding 29 0.003454
+445347 TARP TCR gamma alternate reading frame protein protein-coding 23 0.002739
+445372 TRIM6-TRIM34 TRIM6-TRIM34 readthrough protein-coding 14 0.001667
+445571 CBWD3 COBW domain containing 3 protein-coding 13 0.001548
+445577 C9orf129 chromosome 9 open reading frame 129 protein-coding 17 0.002025
+445582 POTEE POTE ankyrin domain family member E protein-coding 202 0.02406
+445815 PALM2-AKAP2 PALM2-AKAP2 readthrough protein-coding 149 0.01774
+448831 FRG2 FSHD region gene 2 protein-coding 8 0.0009527
+448834 KPRP keratinocyte proline rich protein protein-coding 147 0.01751
+448835 LCE6A late cornified envelope 6A protein-coding 11 0.00131
+449520 GGNBP1 gametogenetin binding protein 1 (pseudogene) pseudo 4 0.0004764
+474170 LRRC37A2 leucine rich repeat containing 37 member A2 protein-coding 73 0.008694
+474343 SPIN2B spindlin family member 2B protein-coding 23 0.002739
+474344 GIMAP6 GTPase, IMAP family member 6 protein-coding 72 0.008574
+474354 LRRC18 leucine rich repeat containing 18 protein-coding 57 0.006788
+474382 H2AFB1 H2A histone family member B1 protein-coding 10 0.001191
+492307 PPDPFL pancreatic progenitor cell differentiation and proliferation factor like protein-coding 27 0.003215
+492311 IGIP IgA inducing protein protein-coding 10 0.001191
+493753 COA5 cytochrome c oxidase assembly factor 5 protein-coding 10 0.001191
+493754 GS1-124K5.11 RAB guanine nucleotide exchange factor 1 pseudogene pseudo 4 0.0004764
+493812 HCG11 HLA complex group 11 (non-protein coding) ncRNA 7 0.0008336
+493829 TRIM72 tripartite motif containing 72 protein-coding 58 0.006907
+493856 CISD2 CDGSH iron sulfur domain 2 protein-coding 8 0.0009527
+493860 CCDC73 coiled-coil domain containing 73 protein-coding 164 0.01953
+493861 EID3 EP300 interacting inhibitor of differentiation 3 protein-coding 41 0.004883
+493869 GPX8 glutathione peroxidase 8 (putative) protein-coding 21 0.002501
+493901 RNASE12 ribonuclease A family member 12 (inactive) protein-coding 195 0.02322
+493911 PHOSPHO2 phosphatase, orphan 2 protein-coding 38 0.004525
+493913 PAPPA-AS1 PAPPA antisense RNA 1 ncRNA 82 0.009765
+494115 RBMXL1 RNA binding motif protein, X-linked like 1 protein-coding 70 0.008336
+494118 SPANXN1 SPANX family member N1 protein-coding 30 0.003573
+494119 SPANXN2 SPANX family member N2 protein-coding 75 0.008932
+494143 CHAC2 ChaC cation transport regulator homolog 2 protein-coding 25 0.002977
+494188 FBXO47 F-box protein 47 protein-coding 62 0.007384
+494197 SPANXN5 SPANX family member N5 protein-coding 25 0.002977
+494325 MIR376A1 microRNA 376a-1 ncRNA 7 0.0008336
+494326 MIR377 microRNA 377 ncRNA 10 0.001191
+494328 MIR379 microRNA 379 ncRNA 16 0.001905
+494329 MIR380 microRNA 380 ncRNA 8 0.0009527
+494330 MIR381 microRNA 381 ncRNA 6 0.0007145
+494331 MIR382 microRNA 382 ncRNA 11 0.00131
+494334 MIR422A microRNA 422a ncRNA 7 0.0008336
+494470 RNF165 ring finger protein 165 protein-coding 64 0.007622
+494513 PJVK pejvakin protein-coding 57 0.006788
+494514 TYMSOS TYMS opposite strand protein-coding 1 0.0001191
+494551 WEE2 WEE1 homolog 2 protein-coding 88 0.01048
+497189 TIFAB TIFA inhibitor protein-coding 28 0.003335
+497190 CLEC18B C-type lectin domain family 18 member B protein-coding 65 0.007741
+497634 LINC00293 long intergenic non-protein coding RNA 293 ncRNA 1 0.0001191
+497661 C18orf32 chromosome 18 open reading frame 32 protein-coding 12 0.001429
+503497 MS4A13 membrane spanning 4-domains A13 protein-coding 42 0.005002
+503542 SPRN shadow of prion protein protein-coding 2 0.0002382
+503582 ARGFX arginine-fifty homeobox protein-coding 43 0.005121
+503618 DEFB104B defensin beta 104B protein-coding 1 0.0001191
+503627 TPRX2P tetrapeptide repeat homeobox 2, pseudogene pseudo 3 0.0003573
+503693 LOH12CR2 loss of heterozygosity, 12, chromosomal region 2 (non-protein coding) ncRNA 1 0.0001191
+503834 DPRX divergent-paired related homeobox protein-coding 51 0.006074
+503835 DUXA double homeobox A protein-coding 47 0.005597
+503841 DEFB106B defensin beta 106B protein-coding 15 0.001786
+541466 CT45A1 cancer/testis antigen family 45 member A1 protein-coding 17 0.002025
+541468 LURAP1 leucine rich adaptor protein 1 protein-coding 23 0.002739
+541565 C8orf58 chromosome 8 open reading frame 58 protein-coding 38 0.004525
+541578 CXorf40B chromosome X open reading frame 40B protein-coding 31 0.003692
+548313 SSX4B SSX family member 4B protein-coding 21 0.002501
+548593 SLX1A SLX1 homolog A, structure-specific endonuclease subunit protein-coding 4 0.0004764
+548596 CKMT1A creatine kinase, mitochondrial 1A protein-coding 26 0.003096
+548644 POLR2J3 RNA polymerase II subunit J3 protein-coding 3 0.0003573
+548645 DNAJC25 DnaJ heat shock protein family (Hsp40) member C25 protein-coding 24 0.002858
+550631 CCDC157 coiled-coil domain containing 157 protein-coding 56 0.006669
+552889 ATXN7L3B ataxin 7 like 3B protein-coding 3 0.0003573
+552891 DNAJC25-GNG10 DNAJC25-GNG10 readthrough protein-coding 6 0.0007145
+553115 PEF1 penta-EF-hand domain containing 1 protein-coding 30 0.003573
+553158 PRR5-ARHGAP8 PRR5-ARHGAP8 readthrough protein-coding 12 0.001429
+554202 MIR31HG MIR31 host gene ncRNA 9 0.001072
+554214 MIR450A1 microRNA 450a-1 ncRNA 8 0.0009527
+554226 ANKRD30BL ankyrin repeat domain 30B like protein-coding 31 0.003692
+554235 ASPDH aspartate dehydrogenase domain containing protein-coding 27 0.003215
+554236 DPY19L2P1 DPY19L2 pseudogene 1 pseudo 30 0.003573
+554250 GDF5OS growth differentiation factor 5 opposite strand protein-coding 9 0.001072
+554251 FBXO48 F-box protein 48 protein-coding 29 0.003454
+554279 LINC00862 long intergenic non-protein coding RNA 862 ncRNA 15 0.001786
+574016 CLLU1OS chronic lymphocytic leukemia up-regulated 1 opposite strand protein-coding 19 0.002263
+574028 CLLU1 chronic lymphocytic leukemia up-regulated 1 ncRNA 18 0.002144
+574031 MIR363 microRNA 363 ncRNA 7 0.0008336
+574032 MIR20B microRNA 20b ncRNA 2 0.0002382
+574033 MIR18B microRNA 18b ncRNA 1 0.0001191
+574408 MIR329-1 microRNA 329-1 ncRNA 8 0.0009527
+574409 MIR329-2 microRNA 329-2 ncRNA 10 0.001191
+574410 MIR323B microRNA 323b ncRNA 11 0.00131
+574413 MIR409 microRNA 409 ncRNA 13 0.001548
+574431 C1orf147 chromosome 1 open reading frame 147 protein-coding 1 0.0001191
+574433 MIR412 microRNA 412 ncRNA 11 0.00131
+574434 MIR410 microRNA 410 ncRNA 11 0.00131
+574436 MIR485 microRNA 485 ncRNA 13 0.001548
+574449 MIR492 microRNA 492 ncRNA 9 0.001072
+574450 MIR493 microRNA 493 ncRNA 9 0.001072
+574452 MIR494 microRNA 494 ncRNA 8 0.0009527
+574453 MIR495 microRNA 495 ncRNA 12 0.001429
+574454 MIR496 microRNA 496 ncRNA 10 0.001191
+574455 MIR193B microRNA 193b ncRNA 4 0.0004764
+574458 MIR512-1 microRNA 512-1 ncRNA 9 0.001072
+574459 MIR512-2 microRNA 512-2 ncRNA 9 0.001072
+574460 MIR498 microRNA 498 ncRNA 13 0.001548
+574461 MIR520E microRNA 520e ncRNA 6 0.0007145
+574462 MIR515-1 microRNA 515-1 ncRNA 9 0.001072
+574463 MIR519E microRNA 519e ncRNA 6 0.0007145
+574464 MIR520F microRNA 520f ncRNA 5 0.0005955
+574465 MIR515-2 microRNA 515-2 ncRNA 11 0.00131
+574466 MIR519C microRNA 519c ncRNA 7 0.0008336
+574467 MIR520A microRNA 520a ncRNA 14 0.001667
+574468 MIR526B microRNA 526b ncRNA 7 0.0008336
+574469 MIR519B microRNA 519b ncRNA 13 0.001548
+574470 MIR525 microRNA 525 ncRNA 11 0.00131
+574471 MIR523 microRNA 523 ncRNA 15 0.001786
+574472 MIR518F microRNA 518f ncRNA 12 0.001429
+574473 MIR520B microRNA 520b ncRNA 9 0.001072
+574474 MIR518B microRNA 518b ncRNA 15 0.001786
+574475 MIR526A1 microRNA 526a-1 ncRNA 11 0.00131
+574476 MIR520C microRNA 520c ncRNA 8 0.0009527
+574477 MIR518C microRNA 518c ncRNA 9 0.001072
+574478 MIR524 microRNA 524 ncRNA 16 0.001905
+574479 MIR517A microRNA 517a ncRNA 14 0.001667
+574480 MIR519D microRNA 519d ncRNA 15 0.001786
+574481 MIR521-2 microRNA 521-2 ncRNA 14 0.001667
+574482 MIR520D microRNA 520d ncRNA 11 0.00131
+574483 MIR517B microRNA 517b ncRNA 11 0.00131
+574484 MIR520G microRNA 520g ncRNA 8 0.0009527
+574485 MIR516B2 microRNA 516b-2 ncRNA 8 0.0009527
+574486 MIR526A2 microRNA 526a-2 ncRNA 2 0.0002382
+574487 MIR518E microRNA 518e ncRNA 12 0.001429
+574488 MIR518A1 microRNA 518a-1 ncRNA 19 0.002263
+574489 MIR518D microRNA 518d ncRNA 18 0.002144
+574490 MIR516B1 microRNA 516b-1 ncRNA 9 0.001072
+574491 MIR518A2 microRNA 518a-2 ncRNA 14 0.001667
+574492 MIR517C microRNA 517c ncRNA 10 0.001191
+574493 MIR520H microRNA 520h ncRNA 14 0.001667
+574494 MIR521-1 microRNA 521-1 ncRNA 9 0.001072
+574495 MIR522 microRNA 522 ncRNA 21 0.002501
+574496 MIR519A1 microRNA 519a-1 ncRNA 24 0.002858
+574497 MIR527 microRNA 527 ncRNA 19 0.002263
+574498 MIR516A1 microRNA 516a-1 ncRNA 9 0.001072
+574499 MIR516A2 microRNA 516a-2 ncRNA 11 0.00131
+574500 MIR519A2 microRNA 519a-2 ncRNA 9 0.001072
+574505 MIR450A2 microRNA 450a-2 ncRNA 9 0.001072
+574506 MIR503 microRNA 503 ncRNA 1 0.0001191
+574508 MIR505 microRNA 505 ncRNA 5 0.0005955
+574509 MIR513A1 microRNA 513a-1 ncRNA 13 0.001548
+574510 MIR513A2 microRNA 513a-2 ncRNA 10 0.001191
+574511 MIR506 microRNA 506 ncRNA 16 0.001905
+574512 MIR507 microRNA 507 ncRNA 9 0.001072
+574513 MIR508 microRNA 508 ncRNA 10 0.001191
+574514 MIR509-1 microRNA 509-1 ncRNA 7 0.0008336
+574515 MIR510 microRNA 510 ncRNA 11 0.00131
+574516 MIR514A1 microRNA 514a-1 ncRNA 6 0.0007145
+574517 MIR514A2 microRNA 514a-2 ncRNA 8 0.0009527
+574518 MIR514A3 microRNA 514a-3 ncRNA 5 0.0005955
+574537 UGT2A2 UDP glucuronosyltransferase family 2 member A2 protein-coding 41 0.004883
+594855 CPLX3 complexin 3 protein-coding 24 0.002858
+594857 NPS neuropeptide S protein-coding 29 0.003454
+595135 PGM5P2 phosphoglucomutase 5 pseudogene 2 pseudo 23 0.002739
+606293 KLKP1 kallikrein pseudogene 1 pseudo 15 0.001786
+606495 CYB5RL cytochrome b5 reductase like protein-coding 24 0.002858
+606553 C8orf49 chromosome 8 open reading frame 49 (putative) protein-coding 8 0.0009527
+613209 DEFB135 defensin beta 135 protein-coding 9 0.001072
+613210 DEFB136 defensin beta 136 protein-coding 16 0.001905
+613211 DEFB134 defensin beta 134 protein-coding 5 0.0005955
+613212 CTXN3 cortexin 3 protein-coding 16 0.001905
+613227 HIGD1C HIG1 hypoxia inducible domain family member 1C protein-coding 9 0.001072
+619189 SERINC4 serine incorporator 4 protein-coding 32 0.003811
+619208 FAM229B family with sequence similarity 229 member B protein-coding 9 0.001072
+619279 ZNF704 zinc finger protein 704 protein-coding 61 0.007264
+619373 MBOAT4 membrane bound O-acyltransferase domain containing 4 protein-coding 26 0.003096
+619477 GCCD3 glucocorticoid deficiency 3 unknown 171 0.02036
+619555 MIR487A microRNA 487a ncRNA 8 0.0009527
+641298 SMG1P1 SMG1 pseudogene 1 pseudo 5 0.0005955
+641311 RPL31P11 ribosomal protein L31 pseudogene 11 pseudo 39 0.004645
+641339 ZNF674 zinc finger protein 674 protein-coding 54 0.006431
+641371 ACOT1 acyl-CoA thioesterase 1 protein-coding 20 0.002382
+641372 ACOT6 acyl-CoA thioesterase 6 protein-coding 20 0.002382
+641384 TMEM75 transmembrane protein 75 ncRNA 3 0.0003573
+641455 POTEM POTE ankyrin domain family member M protein-coding 79 0.009408
+641518 LEF1-AS1 LEF1 antisense RNA 1 ncRNA 2 0.0002382
+641649 TMEM91 transmembrane protein 91 protein-coding 29 0.003454
+641654 HEPN1 hepatocellular carcinoma, down-regulated 1 protein-coding 13 0.001548
+641700 ECSCR endothelial cell surface expressed chemotaxis and apoptosis regulator protein-coding 4 0.0004764
+641977 SEPT7P2 septin 7 pseudogene 2 pseudo 30 0.003573
+642273 FAM110C family with sequence similarity 110 member C protein-coding 27 0.003215
+642280 ZNF876P zinc finger protein 876, pseudogene pseudo 66 0.00786
+642402 GOLGA6L17P golgin A6 family-like 17, pseudogene pseudo 1 0.0001191
+642475 MROH6 maestro heat like repeat family member 6 protein-coding 48 0.005716
+642517 AGAP9 ArfGAP with GTPase domain, ankyrin repeat and PH domain 9 protein-coding 3 0.0003573
+642587 MIR205HG MIR205 host gene ncRNA 4 0.0004764
+642597 AKAIN1 A-kinase anchor inhibitor 1 protein-coding 12 0.001429
+642612 TRIM49C tripartite motif containing 49C protein-coding 81 0.009646
+642633 FAM230B family with sequence similarity 230 member B (non-protein coding) ncRNA 44 0.00524
+642636 RAD21L1 RAD21 cohesin complex component like 1 protein-coding 45 0.005359
+642799 NPIPA2 nuclear pore complex interacting protein family member A2 protein-coding 5 0.0005955
+642819 ZNF487 zinc finger protein 487 protein-coding 8 0.0009527
+642843 CPSF4L cleavage and polyadenylation specific factor 4 like protein-coding 11 0.00131
+642938 FAM196A family with sequence similarity 196 member A protein-coding 71 0.008455
+642968 FAM163B family with sequence similarity 163 member B protein-coding 7 0.0008336
+642987 TMEM232 transmembrane protein 232 protein-coding 45 0.005359
+643008 SMIM5 small integral membrane protein 5 protein-coding 1 0.0001191
+643155 SMIM15 small integral membrane protein 15 protein-coding 13 0.001548
+643161 FAM25A family with sequence similarity 25 member A protein-coding 10 0.001191
+643180 CCT6P3 chaperonin containing TCP1 subunit 6 pseudogene 3 pseudo 8 0.0009527
+643224 TUBBP5 tubulin beta pseudogene 5 pseudo 32 0.003811
+643226 GRXCR2 glutaredoxin and cysteine rich domain containing 2 protein-coding 30 0.003573
+643236 TMEM72 transmembrane protein 72 protein-coding 32 0.003811
+643246 MAP1LC3B2 microtubule associated protein 1 light chain 3 beta 2 protein-coding 23 0.002739
+643311 CT47B1 cancer/testis antigen family 47, member B1 protein-coding 109 0.01298
+643314 KIAA0754 KIAA0754 protein-coding 118 0.01405
+643338 C15orf62 chromosome 15 open reading frame 62 protein-coding 5 0.0005955
+643365 LINC00452 long intergenic non-protein coding RNA 452 protein-coding 18 0.002144
+643376 BTBD18 BTB domain containing 18 protein-coding 33 0.00393
+643382 TMEM253 transmembrane protein 253 protein-coding 9 0.001072
+643394 SPINK9 serine peptidase inhibitor, Kazal type 9 protein-coding 11 0.00131
+643414 LIPK lipase family member K protein-coding 38 0.004525
+643418 LIPN lipase family member N protein-coding 38 0.004525
+643641 ZNF862 zinc finger protein 862 protein-coding 121 0.01441
+643650 LINC00842 long intergenic non-protein coding RNA 842 ncRNA 3 0.0003573
+643664 SLC35G6 solute carrier family 35 member G6 protein-coding 29 0.003454
+643677 CCDC168 coiled-coil domain containing 168 protein-coding 132 0.01572
+643680 MS4A4E membrane spanning 4-domains A4E protein-coding 14 0.001667
+643707 GOLGA6L4 golgin A6 family-like 4 protein-coding 9 0.001072
+643803 KRTAP24-1 keratin associated protein 24-1 protein-coding 64 0.007622
+643812 KRTAP27-1 keratin associated protein 27-1 protein-coding 64 0.007622
+643834 PGA3 pepsinogen 3, group I (pepsinogen A) protein-coding 13 0.001548
+643836 ZFP62 ZFP62 zinc finger protein protein-coding 52 0.006193
+643853 TMPPE transmembrane protein with metallophosphoesterase domain protein-coding 32 0.003811
+643854 CTAGE9 CTAGE family member 9 protein-coding 82 0.009765
+643866 CBLN3 cerebellin 3 precursor protein-coding 33 0.00393
+643904 RNF222 ring finger protein 222 protein-coding 4 0.0004764
+643905 PRR21 proline rich 21 protein-coding 28 0.003335
+643955 ZNF733P zinc finger protein 733, pseudogene pseudo 158 0.01882
+643965 TMEM88B transmembrane protein 88B protein-coding 2 0.0002382
+644019 CBWD6 COBW domain containing 6 protein-coding 19 0.002263
+644022 RPL22P19 ribosomal protein L22 pseudogene 19 pseudo 23 0.002739
+644041 C18orf63 chromosome 18 open reading frame 63 protein-coding 12 0.001429
+644054 FAM25C family with sequence similarity 25 member C protein-coding 6 0.0007145
+644096 SDHAF1 succinate dehydrogenase complex assembly factor 1 protein-coding 1 0.0001191
+644128 RPL23AP53 ribosomal protein L23a pseudogene 53 pseudo 28 0.003335
+644139 PIRT phosphoinositide interacting regulator of transient receptor potential channels protein-coding 24 0.002858
+644150 WIPF3 WAS/WASL interacting protein family member 3 protein-coding 32 0.003811
+644168 DRGX dorsal root ganglia homeobox protein-coding 48 0.005716
+644186 SYCE3 synaptonemal complex central element protein 3 protein-coding 7 0.0008336
+644353 ZCCHC18 zinc finger CCHC-type containing 18 protein-coding 31 0.003692
+644414 DEFB131A defensin beta 131A protein-coding 13 0.001548
+644444 TMEM30CP transmembrane protein 30C, pseudogene pseudo 3 0.0003573
+644524 NKX2-4 NK2 homeobox 4 protein-coding 20 0.002382
+644538 SMIM10 small integral membrane protein 10 protein-coding 15 0.001786
+644591 PPIAL4G peptidylprolyl isomerase A like 4G protein-coding 38 0.004525
+644596 SMIM10L2B small integral membrane protein 10 like 2B protein-coding 19 0.002263
+644619 INTS4P2 integrator complex subunit 4 pseudogene 2 pseudo 46 0.005478
+644623 TPTE2P2 transmembrane phosphoinositide 3-phosphatase and tensin homolog 2 pseudogene 2 pseudo 29 0.003454
+644672 CLDN25 claudin 25 protein-coding 43 0.005121
+644809 C15orf56 chromosome 15 open reading frame 56 protein-coding 9 0.001072
+644815 FAM83G family with sequence similarity 83 member G protein-coding 102 0.01215
+644844 PHGR1 proline, histidine and glycine rich 1 protein-coding 12 0.001429
+644890 MEIG1 meiosis/spermiogenesis associated 1 protein-coding 14 0.001667
+644974 ALG1L2 ALG1, chitobiosyldiphosphodolichol beta-mannosyltransferase like 2 protein-coding 2 0.0002382
+644997 PIK3CD-AS1 PIK3CD antisense RNA 1 ncRNA 17 0.002025
+645027 EVPLL envoplakin like protein-coding 24 0.002858
+645037 GAGE2B G antigen 2B protein-coding 9 0.001072
+645051 GAGE13 G antigen 13 protein-coding 2 0.0002382
+645104 CLRN2 clarin 2 protein-coding 43 0.005121
+645121 CCNI2 cyclin I family member 2 protein-coding 17 0.002025
+645142 PPIAL4D peptidylprolyl isomerase A like 4D protein-coding 1 0.0001191
+645191 LINGO3 leucine rich repeat and Ig domain containing 3 protein-coding 40 0.004764
+645206 LINC00693 long intergenic non-protein coding RNA 693 ncRNA 11 0.00131
+645280 SMPD4P1 sphingomyelin phosphodiesterase 4 pseudogene 1 pseudo 18 0.002144
+645323 LINC00461 long intergenic non-protein coding RNA 461 ncRNA 2 0.0002382
+645332 FAM86C2P family with sequence similarity 86, member A pseudogene pseudo 33 0.00393
+645369 TMEM200C transmembrane protein 200C protein-coding 86 0.01024
+645414 PRAMEF19 PRAME family member 19 protein-coding 21 0.002501
+645425 PRAMEF20 PRAME family member 20 protein-coding 14 0.001667
+645426 TMEM191C transmembrane protein 191C protein-coding 3 0.0003573
+645432 ARRDC5 arrestin domain containing 5 protein-coding 37 0.004406
+645455 CEP170P1 centrosomal protein 170 pseudogene 1 pseudo 49 0.005835
+645528 FAM238A family with sequence similarity 238 member A (non-protein coding) ncRNA 11 0.00131
+645700 ZNF890P zinc finger protein 890, pseudogene pseudo 23 0.002739
+645745 MT1HL1 metallothionein 1H like 1 protein-coding 15 0.001786
+645784 ANKRD36BP2 ankyrin repeat domain 36B pseudogene 2 pseudo 116 0.01381
+645811 CCDC154 coiled-coil domain containing 154 protein-coding 35 0.004168
+645840 TXNRD3NB thioredoxin reductase 3 neighbor protein-coding 14 0.001667
+645843 TMEM14EP transmembrane protein 14E, pseudogene pseudo 8 0.0009527
+645922 S100A7L2 S100 calcium binding protein A7 like 2 protein-coding 21 0.002501
+645954 SVILP1 supervillin pseudogene 1 pseudo 30 0.003573
+645996 NAP1L6 nucleosome assembly protein 1 like 6 pseudo 8 0.0009527
+646024 RAET1K retinoic acid early transcript 1K pseudogene pseudo 45 0.005359
+646096 CHEK2P2 checkpoint kinase 2 pseudogene 2 pseudo 144 0.01715
+646113 LINC00643 long intergenic non-protein coding RNA 643 ncRNA 9 0.001072
+646174 C16orf90 chromosome 16 open reading frame 90 protein-coding 26 0.003096
+646282 AZGP1P1 alpha-2-glycoprotein 1, zinc-binding pseudogene 1 pseudo 19 0.002263
+646405 TPTE2P1 transmembrane phosphoinositide 3-phosphatase and tensin homolog 2 pseudogene 1 pseudo 5 0.0005955
+646424 SPINK8 serine peptidase inhibitor, Kazal type 8 (putative) protein-coding 5 0.0005955
+646450 ARIH2OS ariadne RBR E3 ubiquitin protein ligase 2 opposite strand protein-coding 15 0.001786
+646480 FABP9 fatty acid binding protein 9 protein-coding 27 0.003215
+646486 FABP12 fatty acid binding protein 12 protein-coding 23 0.002739
+646498 C3orf84 chromosome 3 open reading frame 84 protein-coding 14 0.001667
+646600 IGF2BP2-AS1 IGF2BP2 antisense RNA 1 ncRNA 19 0.002263
+646603 C4orf51 chromosome 4 open reading frame 51 protein-coding 33 0.00393
+646625 URAD ureidoimidazoline (2-oxo-4-hydroxy-4-carboxy-5-) decarboxylase protein-coding 12 0.001429
+646627 LYPD8 LY6/PLAUR domain containing 8 protein-coding 5 0.0005955
+646643 SBK2 SH3 domain binding kinase family member 2 protein-coding 34 0.004049
+646658 SYNDIG1L synapse differentiation inducing 1 like protein-coding 41 0.004883
+646799 ZAR1L zygote arrest 1 like protein-coding 31 0.003692
+646802 CYP4F62P cytochrome P450 family 4 subfamily F member 62, pseudogene pseudo 3 0.0003573
+646851 FAM227A family with sequence similarity 227 member A protein-coding 34 0.004049
+646892 SH2D7 SH2 domain containing 7 protein-coding 47 0.005597
+646962 HRCT1 histidine rich carboxyl terminus 1 protein-coding 12 0.001429
+646982 LINC00598 long intergenic non-protein coding RNA 598 ncRNA 1 0.0001191
+646996 RAB42P1 RAB42, member RAS oncogene family, pseudogene 1 pseudo 21 0.002501
+647024 C6orf132 chromosome 6 open reading frame 132 protein-coding 2 0.0002382
+647042 GOLGA6L10 golgin A6 family-like 10 protein-coding 10 0.001191
+647060 SPATA31A1 SPATA31 subfamily A member 1 protein-coding 43 0.005121
+647087 STMP1 short transmembrane mitochondrial protein 1 protein-coding 2 0.0002382
+647135 SRGAP2B SLIT-ROBO Rho GTPase activating protein 2B protein-coding 17 0.002025
+647174 SERPINE3 serpin family E member 3 protein-coding 50 0.005955
+647309 GMNC geminin coiled-coil domain containing protein-coding 20 0.002382
+647310 TEX22 testis expressed 22 protein-coding 4 0.0004764
+647589 ANHX anomalous homeobox protein-coding 28 0.003335
+647979 NORAD non-coding RNA activated by DNA damage ncRNA 5 0.0005955
+648691 LL22NC03-63E9.3 uncharacterized LOC648691 ncRNA 4 0.0004764
+648791 PPP1R3G protein phosphatase 1 regulatory subunit 3G protein-coding 12 0.001429
+649179 PRAMENP PRAME N-terminal-like, pseudogene pseudo 20 0.002382
+650368 TSSC2 tumor suppressing subtransferable candidate 2 pseudogene pseudo 64 0.007622
+650655 ABCA17P ATP binding cassette subfamily A member 17, pseudogene pseudo 28 0.003335
+651250 LRRC37A16P leucine rich repeat containing 37 member A16, pseudogene pseudo 2 0.0002382
+651302 ZNF192P1 zinc finger protein 192 pseudogene 1 pseudo 38 0.004525
+652968 CASTOR1 cytosolic arginine sensor for mTORC1 subunit 1 protein-coding 19 0.002263
+652972 LRRC37A5P leucine rich repeat containing 37 member A5, pseudogene pseudo 10 0.001191
+652991 SKOR2 SKI family transcriptional corepressor 2 protein-coding 21 0.002501
+652995 UCA1 urothelial cancer associated 1 (non-protein coding) ncRNA 5 0.0005955
+653073 GOLGA8J golgin A8 family member J protein-coding 5 0.0005955
+653121 ZBTB8A zinc finger and BTB domain containing 8A protein-coding 51 0.006074
+653125 GOLGA8K golgin A8 family member K protein-coding 1 0.0001191
+653140 FAM228A family with sequence similarity 228 member A protein-coding 21 0.002501
+653149 NBPF6 NBPF member 6 protein-coding 20 0.002382
+653166 OR1D4 olfactory receptor family 1 subfamily D member 4 (gene/pseudogene) protein-coding 32 0.003811
+653190 ABCC6P1 ATP binding cassette subfamily C member 6 pseudogene 1 pseudo 35 0.004168
+653234 AGAP10P ArfGAP with GTPase domain, ankyrin repeat and PH domain 10 pseudogene pseudo 1 0.0001191
+653238 GTF2H2B general transcription factor IIH subunit 2B (pseudogene) pseudo 12 0.001429
+653240 KRTAP4-11 keratin associated protein 4-11 protein-coding 39 0.004645
+653247 PRB2 proline rich protein BstNI subfamily 2 protein-coding 111 0.01322
+653268 AGAP7P ArfGAP with GTPase domain, ankyrin repeat and PH domain 7, pseudogene pseudo 79 0.009408
+653308 ASAH2B N-acylsphingosine amidohydrolase 2B protein-coding 12 0.001429
+653316 FAM153C family with sequence similarity 153 member C protein-coding 15 0.001786
+653319 KIAA0895L KIAA0895 like protein-coding 45 0.005359
+653333 FAM86B2 family with sequence similarity 86 member B2 protein-coding 18 0.002144
+653361 NCF1 neutrophil cytosolic factor 1 protein-coding 40 0.004764
+653390 RRN3P2 RRN3 homolog, RNA polymerase I transcription factor pseudogene 2 pseudo 60 0.007145
+653399 GSTTP2 glutathione S-transferase theta pseudogene 2 pseudo 1 0.0001191
+653404 FOXD4L6 forkhead box D4 like 6 protein-coding 14 0.001667
+653423 SPAG11A sperm associated antigen 11A protein-coding 11 0.00131
+653427 FOXD4L5 forkhead box D4 like 5 protein-coding 56 0.006669
+653437 AQP12B aquaporin 12B protein-coding 35 0.004168
+653440 WASH6P WAS protein family homolog 6 pseudogene pseudo 55 0.00655
+653479 MRPL45P2 mitochondrial ribosomal protein L45 pseudogene 2 pseudo 28 0.003335
+653489 RGPD3 RANBP2-like and GRIP domain containing 3 protein-coding 180 0.02144
+653492 PSG10P pregnancy specific beta-1-glycoprotein 10, pseudogene pseudo 109 0.01298
+653499 LGALS7B galectin 7B protein-coding 12 0.001429
+653505 PPIAL4A peptidylprolyl isomerase A like 4A protein-coding 8 0.0009527
+653509 SFTPA1 surfactant protein A1 protein-coding 39 0.004645
+653519 GPR89A G protein-coupled receptor 89A protein-coding 31 0.003692
+653567 TMEM236 transmembrane protein 236 protein-coding 3 0.0003573
+653583 PHLDB3 pleckstrin homology like domain family B member 3 protein-coding 58 0.006907
+653604 HIST2H3D histone cluster 2 H3 family member d protein-coding 28 0.003335
+653606 PRAMEF22 PRAME family member 22 protein-coding 25 0.002977
+653641 GOLGA6C golgin A6 family member C protein-coding 35 0.004168
+653643 GOLGA6D golgin A6 family member D protein-coding 32 0.003811
+653645 TBC1D3P1-DHX40P1 TBC1D3P1-DHX40P1 readthrough, transcribed pseudogene pseudo 9 0.001072
+653689 GSTT2B glutathione S-transferase theta 2B (gene/pseudogene) protein-coding 3 0.0003573
+653784 MZT2A mitotic spindle organizing protein 2A protein-coding 15 0.001786
+653808 ZG16 zymogen granule protein 16 protein-coding 12 0.001429
+653820 FAM72B family with sequence similarity 72 member B protein-coding 11 0.00131
+653857 ACTR3C ARP3 actin related protein 3 homolog C protein-coding 21 0.002501
+654231 OCM oncomodulin protein-coding 19 0.002263
+654254 ZNF732 zinc finger protein 732 protein-coding 72 0.008574
+654346 LGALS9C galectin 9C protein-coding 27 0.003215
+654364 NME1-NME2 NME1-NME2 readthrough protein-coding 13 0.001548
+654412 FAM138B family with sequence similarity 138 member B ncRNA 13 0.001548
+654429 LRTM2 leucine rich repeats and transmembrane domains 2 protein-coding 58 0.006907
+654463 FER1L6 fer-1 like family member 6 protein-coding 268 0.03192
+654502 IQCJ IQ motif containing J protein-coding 14 0.001667
+654780 LOC654780 splicing factor proline/glutamine-rich ncRNA 62 0.007384
+654790 PCP4L1 Purkinje cell protein 4 like 1 protein-coding 8 0.0009527
+654816 NCF1B neutrophil cytosolic factor 1B pseudogene pseudo 15 0.001786
+654835 FAM138C family with sequence similarity 138 member C ncRNA 4 0.0004764
+664612 MIR539 microRNA 539 ncRNA 6 0.0007145
+664613 MIR544A microRNA 544a ncRNA 7 0.0008336
+664614 MIR545 microRNA 545 ncRNA 6 0.0007145
+664616 MIR487B microRNA 487b ncRNA 13 0.001548
+664617 MIR542 microRNA 542 ncRNA 8 0.0009527
+664701 ZNF826P zinc finger protein 826, pseudogene pseudo 12 0.001429
+677779 LINC00488 long intergenic non-protein coding RNA 488 ncRNA 6 0.0007145
+677803 SNORA15 small nucleolar RNA, H/ACA box 15 snoRNA 6 0.0007145
+677807 SNORA22 small nucleolar RNA, H/ACA box 22 snoRNA 6 0.0007145
+677810 SNORA26 small nucleolar RNA, H/ACA box 26 snoRNA 7 0.0008336
+677837 SNORA60 small nucleolar RNA, H/ACA box 60 snoRNA 6 0.0007145
+677839 SNORA71C small nucleolar RNA, H/ACA box 71C snoRNA 3 0.0003573
+677840 SNORA71D small nucleolar RNA, H/ACA box 71D snoRNA 3 0.0003573
+692092 SNORD32B small nucleolar RNA, C/D box 32B snoRNA 3 0.0003573
+692094 MSMP microseminoprotein, prostate associated protein-coding 13 0.001548
+692099 FAM86DP family with sequence similarity 86 member D, pseudogene pseudo 57 0.006788
+692210 SNORD93 small nucleolar RNA, C/D box 93 snoRNA 2 0.0002382
+692312 PPAN-P2RY11 PPAN-P2RY11 readthrough protein-coding 24 0.002858
+693121 MIR411 microRNA 411 ncRNA 9 0.001072
+693122 MIR421 microRNA 421 ncRNA 3 0.0003573
+693125 MIR548A1 microRNA 548a-1 ncRNA 7 0.0008336
+693126 MIR548A2 microRNA 548a-2 ncRNA 5 0.0005955
+693134 MIR550A2 microRNA 550a-2 ncRNA 1 0.0001191
+693136 MIR551B microRNA 551b ncRNA 14 0.001667
+693142 MIR557 microRNA 557 ncRNA 3 0.0003573
+693148 MIR563 microRNA 563 ncRNA 2 0.0002382
+693153 MIR568 microRNA 568 ncRNA 4 0.0004764
+693155 MIR570 microRNA 570 ncRNA 8 0.0009527
+693157 MIR572 microRNA 572 ncRNA 1 0.0001191
+693158 MIR573 microRNA 573 ncRNA 7 0.0008336
+693168 MIR583 microRNA 583 ncRNA 2 0.0002382
+693172 MIR587 microRNA 587 ncRNA 8 0.0009527
+693173 MIR588 microRNA 588 ncRNA 3 0.0003573
+693181 MIR596 microRNA 596 ncRNA 2 0.0002382
+693191 MIR606 microRNA 606 ncRNA 4 0.0004764
+693207 MIR622 microRNA 622 ncRNA 5 0.0005955
+693218 MIR633 microRNA 633 ncRNA 8 0.0009527
+693231 MIR646 microRNA 646 ncRNA 10 0.001191
+723779 MIR651 microRNA 651 ncRNA 3 0.0003573
+723961 INS-IGF2 INS-IGF2 readthrough protein-coding 22 0.00262
+723972 ANP32AP1 acidic nuclear phosphoprotein 32 family member A pseudogene 1 pseudo 75 0.008932
+724024 MIR654 microRNA 654 ncRNA 7 0.0008336
+724025 MIR655 microRNA 655 ncRNA 11 0.00131
+724026 MIR656 microRNA 656 ncRNA 13 0.001548
+727708 SNORD116-19 small nucleolar RNA, C/D box 116-19 snoRNA 9 0.001072
+727758 ROCK1P1 Rho associated coiled-coil containing protein kinase 1 pseudogene 1 pseudo 61 0.007264
+727764 MAFIP MAFF interacting protein (pseudogene) pseudo 43 0.005121
+727800 RNF208 ring finger protein 208 protein-coding 23 0.002739
+727830 SPATA31A3 SPATA31 subfamily A member 3 protein-coding 58 0.006907
+727832 GOLGA6L6 golgin A6 family-like 6 protein-coding 36 0.004287
+727833 IMPDH1P11 inosine monophosphate dehydrogenase 1 pseudogene 11 pseudo 68 0.008098
+727851 RGPD8 RANBP2-like and GRIP domain containing 8 protein-coding 86 0.01024
+727897 MUC5B mucin 5B, oligomeric mucus/gel-forming protein-coding 545 0.0649
+727909 GOLGA8Q golgin A8 family member Q protein-coding 1 0.0001191
+727936 GXYLT2 glucoside xylosyltransferase 2 protein-coding 42 0.005002
+727940 RHOXF2B Rhox homeobox family member 2B protein-coding 24 0.002858
+727956 SDHAP2 succinate dehydrogenase complex flavoprotein subunit A pseudogene 2 pseudo 66 0.00786
+727957 MROH1 maestro heat like repeat family member 1 protein-coding 50 0.005955
+728062 CT47A6 cancer/testis antigen family 47, member A6 protein-coding 3 0.0003573
+728113 ANXA8L1 annexin A8 like 1 protein-coding 19 0.002263
+728116 ZBTB8B zinc finger and BTB domain containing 8B protein-coding 25 0.002977
+728118 NUTM2A NUT family member 2A protein-coding 29 0.003454
+728130 NUTM2D NUT family member 2D protein-coding 22 0.00262
+728194 RSPH10B2 radial spoke head 10 homolog B2 protein-coding 62 0.007384
+728215 FAM155A family with sequence similarity 155 member A protein-coding 99 0.01179
+728218 LINC00864 long intergenic non-protein coding RNA 864 ncRNA 3 0.0003573
+728224 KRTAP4-8 keratin associated protein 4-8 protein-coding 23 0.002739
+728233 PI4KAP1 phosphatidylinositol 4-kinase alpha pseudogene 1 pseudo 32 0.003811
+728239 MAGED4 MAGE family member D4 protein-coding 3 0.0003573
+728262 FAM157A family with sequence similarity 157 member A (non-protein coding) ncRNA 13 0.001548
+728269 MAGEA9B MAGE family member A9B protein-coding 7 0.0008336
+728276 CLEC19A C-type lectin domain containing 19A protein-coding 6 0.0007145
+728294 D2HGDH D-2-hydroxyglutarate dehydrogenase protein-coding 48 0.005716
+728299 KRTAP19-8 keratin associated protein 19-8 protein-coding 19 0.002263
+728310 GOLGA6L7 golgin A6 family like 7 protein-coding 32 0.003811
+728340 GTF2H2C GTF2H2 family member C protein-coding 9 0.001072
+728343 NXF2B nuclear RNA export factor 2B protein-coding 45 0.005359
+728378 POTEF POTE ankyrin domain family member F protein-coding 269 0.03204
+728403 TSPY8 testis specific protein, Y-linked 8 protein-coding 3 0.0003573
+728409 LINC01548 long intergenic non-protein coding RNA 1548 ncRNA 8 0.0009527
+728411 GUSBP1 glucuronidase, beta pseudogene 1 pseudo 30 0.003573
+728418 POM121L7P POM121 transmembrane nucleoporin like 7 pseudogene pseudo 2 0.0002382
+728441 GGT2 gamma-glutamyltransferase 2 protein-coding 5 0.0005955
+728448 PPIEL peptidylprolyl isomerase E like pseudogene pseudo 10 0.001191
+728458 OPN1MW2 opsin 1, medium wave sensitive 2 protein-coding 17 0.002025
+728464 METTL24 methyltransferase like 24 protein-coding 42 0.005002
+728489 DNLZ DNL-type zinc finger protein-coding 13 0.001548
+728492 SERF1B small EDRK-rich factor 1B protein-coding 1 0.0001191
+728495 FAM74A3 family with sequence similarity 74 member A3 ncRNA 45 0.005359
+728537 C2orf92 chromosome 2 open reading frame 92 protein-coding 9 0.001072
+728568 C12orf73 chromosome 12 open reading frame 73 protein-coding 4 0.0004764
+728577 CNTNAP3B contactin associated protein like 3B protein-coding 89 0.0106
+728588 MS4A18 membrane spanning 4-domains A18 protein-coding 1 0.0001191
+728591 CCDC169 coiled-coil domain containing 169 protein-coding 22 0.00262
+728609 SDHAP3 succinate dehydrogenase complex flavoprotein subunit A pseudogene 3 pseudo 11 0.00131
+728621 CCDC30 coiled-coil domain containing 30 protein-coding 100 0.01191
+728642 CDK11A cyclin dependent kinase 11A protein-coding 55 0.00655
+728656 DMRTC1B DMRT like family C1B protein-coding 1 0.0001191
+728661 SLC35E2B solute carrier family 35 member E2B protein-coding 28 0.003335
+728689 EIF3CL eukaryotic translation initiation factor 3 subunit C like protein-coding 4 0.0004764
+728741 NPIPB6 nuclear pore complex interacting protein family member B6 protein-coding 21 0.002501
+728747 ANKRD20A4 ankyrin repeat domain 20 family member A4 protein-coding 54 0.006431
+728780 ANKDD1B ankyrin repeat and death domain containing 1B protein-coding 13 0.001548
+728833 FAM72D family with sequence similarity 72 member D protein-coding 13 0.001548
+728841 NBPF8 NBPF member 8 protein-coding 4 0.0004764
+728858 C12orf71 chromosome 12 open reading frame 71 protein-coding 42 0.005002
+728882 FAM182B family with sequence similarity 182 member B ncRNA 20 0.002382
+728927 ZNF736 zinc finger protein 736 protein-coding 47 0.005597
+728929 ELOA3B elongin A3 family member B protein-coding 22 0.00262
+728957 ZNF705D zinc finger protein 705D protein-coding 8 0.0009527
+728970 PPP1R2P4 protein phosphatase 1 regulatory inhibitor subunit 2 pseudogene 4 pseudo 42 0.005002
+729020 RPEL1 ribulose-5-phosphate-3-epimerase like 1 protein-coding 21 0.002501
+729059 TEX46 testis expressed 46 protein-coding 3 0.0003573
+729085 FAM198A family with sequence similarity 198 member A protein-coding 36 0.004287
+729092 AGAP5 ArfGAP with GTPase domain, ankyrin repeat and PH domain 5 protein-coding 51 0.006074
+729156 GTF2IRD1P1 GTF2I repeat domain containing 1 pseudogene 1 pseudo 31 0.003692
+729171 ANKRD20A8P ankyrin repeat domain 20 family member A8, pseudogene pseudo 93 0.01108
+729177 NBAT1 neuroblastoma associated transcript 1 ncRNA 8 0.0009527
+729201 SPACA5B sperm acrosome associated 5B protein-coding 1 0.0001191
+729230 CCR2 C-C motif chemokine receptor 2 protein-coding 60 0.007145
+729238 SFTPA2 surfactant protein A2 protein-coding 42 0.005002
+729252 KRT16P1 keratin 16 pseudogene 1 pseudo 9 0.001072
+729258 RPS11P6 ribosomal protein S11 pseudogene 6 pseudo 7 0.0008336
+729264 TP53TG3D TP53 target 3D protein-coding 34 0.004049
+729288 ZNF286B zinc finger protein 286B protein-coding 74 0.008813
+729330 OC90 otoconin 90 protein-coding 97 0.01155
+729359 PLIN4 perilipin 4 protein-coding 113 0.01346
+729375 FAM86HP family with sequence similarity 86, member A pseudogene pseudo 25 0.002977
+729396 GAGE12J G antigen 12J protein-coding 4 0.0004764
+729408 GAGE2D G antigen 2D protein-coding 2 0.0002382
+729420 LMO7DN LMO7 downstream neighbor protein-coding 4 0.0004764
+729438 CASTOR2 cytosolic arginine sensor for mTORC1 subunit 2 protein-coding 6 0.0007145
+729440 CCDC61 coiled-coil domain containing 61 protein-coding 38 0.004525
+729442 GAGE12H G antigen 12H protein-coding 6 0.0007145
+729447 GAGE2A G antigen 2A protein-coding 6 0.0007145
+729475 RAD51AP2 RAD51 associated protein 2 protein-coding 173 0.0206
+729515 TMEM242 transmembrane protein 242 protein-coding 23 0.002739
+729522 AACSP1 acetoacetyl-CoA synthetase pseudogene 1 pseudo 27 0.003215
+729528 PRAMEF14 PRAME family member 14 protein-coding 25 0.002977
+729533 FAM72A family with sequence similarity 72 member A protein-coding 9 0.001072
+729627 PRR23A proline rich 23A protein-coding 65 0.007741
+729648 ZNF812P zinc finger protein 812, pseudogene pseudo 70 0.008336
+729659 S100A11P1 S100 calcium binding protein A11 pseudogene 1 pseudo 15 0.001786
+729665 CCDC175 coiled-coil domain containing 175 protein-coding 1 0.0001191
+729668 GOLGA2P6 golgin A2 pseudogene 6 pseudo 1 0.0001191
+729747 ZNF878 zinc finger protein 878 protein-coding 87 0.01036
+729767 CEACAM18 carcinoembryonic antigen related cell adhesion molecule 18 protein-coding 83 0.009884
+729809 DNM1P34 dynamin 1 pseudogene 34 pseudo 26 0.003096
+729830 FAM160A1 family with sequence similarity 160 member A1 protein-coding 56 0.006669
+729852 UMAD1 UBAP1-MVB12-associated (UMA) domain containing 1 protein-coding 6 0.0007145
+729857 RGPD2 RANBP2-like and GRIP domain containing 2 protein-coding 47 0.005597
+729873 TBC1D3 TBC1 domain family member 3 protein-coding 2 0.0002382
+729877 TBC1D3H TBC1 domain family member 3H protein-coding 1 0.0001191
+729920 ISPD isoprenoid synthase domain containing protein-coding 55 0.00655
+729956 SHISA7 shisa family member 7 protein-coding 12 0.001429
+729967 MORN2 MORN repeat containing 2 protein-coding 3 0.0003573
+729991 BORCS8 BLOC-1 related complex subunit 8 protein-coding 3 0.0003573
+729993 SHISA9 shisa family member 9 protein-coding 36 0.004287
+730051 ZNF814 zinc finger protein 814 protein-coding 110 0.0131
+730087 ZNF726 zinc finger protein 726 protein-coding 13 0.001548
+730092 RRN3P1 RRN3 homolog, RNA polymerase I transcription factor pseudogene 1 pseudo 21 0.002501
+730094 MOSMO modulator of smoothened protein-coding 6 0.0007145
+730112 FAM166B family with sequence similarity 166 member B protein-coding 31 0.003692
+730130 TMEM229A transmembrane protein 229A protein-coding 20 0.002382
+730249 ACOD1 aconitate decarboxylase 1 protein-coding 207 0.02465
+730755 KRTAP2-3 keratin associated protein 2-3 protein-coding 4 0.0004764
+731220 RFX8 RFX family member 8, lacking RFX DNA binding domain protein-coding 28 0.003335
+731789 FAM238B family with sequence similarity 238 member B (non-protein coding) ncRNA 18 0.002144
+732253 TDRG1 testis development related 1 protein-coding 12 0.001429
+732275 LINC00917 long intergenic non-protein coding RNA 917 ncRNA 13 0.001548
+751071 CSKMT citrate synthase lysine methyltransferase protein-coding 22 0.00262
+752014 CEMP1 cementum protein 1 protein-coding 37 0.004406
+767561 SNORD113-1 small nucleolar RNA, C/D box 113-1 snoRNA 2 0.0002382
+767562 SNORD113-2 small nucleolar RNA, C/D box 113-2 snoRNA 4 0.0004764
+767563 SNORD113-3 small nucleolar RNA, C/D box 113-3 snoRNA 4 0.0004764
+767564 SNORD113-4 small nucleolar RNA, C/D box 113-4 snoRNA 7 0.0008336
+767565 SNORD113-5 small nucleolar RNA, C/D box 113-5 snoRNA 3 0.0003573
+767566 SNORD113-6 small nucleolar RNA, C/D box 113-6 snoRNA 4 0.0004764
+767567 SNORD113-7 small nucleolar RNA, C/D box 113-7 snoRNA 2 0.0002382
+767568 SNORD113-8 small nucleolar RNA, C/D box 113-8 snoRNA 4 0.0004764
+767569 SNORD113-9 small nucleolar RNA, C/D box 113-9 snoRNA 1 0.0001191
+767577 SNORD114-1 small nucleolar RNA, C/D box 114-1 snoRNA 7 0.0008336
+767578 SNORD114-2 small nucleolar RNA, C/D box 114-2 snoRNA 4 0.0004764
+767579 SNORD114-3 small nucleolar RNA, C/D box 114-3 snoRNA 7 0.0008336
+767580 SNORD114-4 small nucleolar RNA, C/D box 114-4 snoRNA 1 0.0001191
+767581 SNORD114-5 small nucleolar RNA, C/D box 114-5 snoRNA 4 0.0004764
+767582 SNORD114-6 small nucleolar RNA, C/D box 114-6 snoRNA 2 0.0002382
+767583 SNORD114-7 small nucleolar RNA, C/D box 114-7 snoRNA 4 0.0004764
+767585 SNORD114-9 small nucleolar RNA, C/D box 114-9 snoRNA 3 0.0003573
+767589 SNORD114-11 small nucleolar RNA, C/D box 114-11 snoRNA 2 0.0002382
+767590 SNORD114-12 small nucleolar RNA, C/D box 114-12 snoRNA 4 0.0004764
+767591 SNORD114-13 small nucleolar RNA, C/D box 114-13 snoRNA 3 0.0003573
+767592 SNORD114-14 small nucleolar RNA, C/D box 114-14 snoRNA 6 0.0007145
+767593 SNORD114-15 small nucleolar RNA, C/D box 114-15 snoRNA 8 0.0009527
+767594 SNORD114-16 small nucleolar RNA, C/D box 114-16 snoRNA 5 0.0005955
+767595 SNORD114-17 small nucleolar RNA, C/D box 114-17 snoRNA 3 0.0003573
+767596 SNORD114-18 small nucleolar RNA, C/D box 114-18 snoRNA 2 0.0002382
+767597 SNORD114-19 small nucleolar RNA, C/D box 114-19 snoRNA 8 0.0009527
+767598 SNORD114-20 small nucleolar RNA, C/D box 114-20 snoRNA 7 0.0008336
+767599 SNORD114-21 small nucleolar RNA, C/D box 114-21 snoRNA 8 0.0009527
+767600 SNORD114-22 small nucleolar RNA, C/D box 114-22 snoRNA 7 0.0008336
+767603 SNORD114-23 small nucleolar RNA, C/D box 114-23 snoRNA 3 0.0003573
+767604 SNORD114-24 small nucleolar RNA, C/D box 114-24 snoRNA 5 0.0005955
+767605 SNORD114-25 small nucleolar RNA, C/D box 114-25 snoRNA 7 0.0008336
+767606 SNORD114-26 small nucleolar RNA, C/D box 114-26 snoRNA 4 0.0004764
+767608 SNORD114-27 small nucleolar RNA, C/D box 114-27 snoRNA 2 0.0002382
+767609 SNORD114-28 small nucleolar RNA, C/D box 114-28 snoRNA 6 0.0007145
+767610 SNORD114-29 small nucleolar RNA, C/D box 114-29 snoRNA 1 0.0001191
+767611 SNORD114-30 small nucleolar RNA, C/D box 114-30 snoRNA 3 0.0003573
767612 SNORD114-31 small nucleolar RNA, C/D box 114-31 snoRNA 0 0
-768206 PRCD photoreceptor disc component protein-coding 4 0.0004769
-768211 RELL1 RELT like 1 protein-coding 16 0.001907
-768212 MIR758 microRNA 758 ncRNA 13 0.00155
-768219 MIR802 microRNA 802 ncRNA 9 0.001073
-768222 MIR770 microRNA 770 ncRNA 6 0.0007153
-768239 PSAPL1 prosaposin like 1 (gene/pseudogene) protein-coding 48 0.005722
-780776 TVP23A trans-golgi network vesicle protein 23 homolog A protein-coding 20 0.002384
-780851 SNORD3A small nucleolar RNA, C/D box 3A snoRNA 30 0.003577
-780852 SNORD3B-2 small nucleolar RNA, C/D box 3B-2 snoRNA 28 0.003338
-780853 SNORD3C small nucleolar RNA, C/D box 3C snoRNA 1 0.0001192
-780854 SNORD3D small nucleolar RNA, C/D box 3D snoRNA 10 0.001192
-790955 UQCC3 ubiquinol-cytochrome c reductase complex assembly factor 3 protein-coding 4 0.0004769
-100033413 SNORD116-1 small nucleolar RNA, C/D box 116-1 snoRNA 9 0.001073
-100033414 SNORD116-2 small nucleolar RNA, C/D box 116-2 snoRNA 13 0.00155
-100033415 SNORD116-3 small nucleolar RNA, C/D box 116-3 snoRNA 10 0.001192
-100033417 SNORD116-5 small nucleolar RNA, C/D box 116-5 snoRNA 13 0.00155
-100033418 SNORD116-6 small nucleolar RNA, C/D box 116-6 snoRNA 23 0.002742
-100033419 SNORD116-7 small nucleolar RNA, C/D box 116-7 snoRNA 12 0.001431
-100033420 SNORD116-8 small nucleolar RNA, C/D box 116-8 snoRNA 23 0.002742
-100033421 SNORD116-9 small nucleolar RNA, C/D box 116-9 snoRNA 6 0.0007153
-100033422 SNORD116-10 small nucleolar RNA, C/D box 116-10 snoRNA 1 0.0001192
-100033423 SNORD116-11 small nucleolar RNA, C/D box 116-11 snoRNA 13 0.00155
-100033424 SNORD116-12 small nucleolar RNA, C/D box 116-12 snoRNA 13 0.00155
-100033425 SNORD116-13 small nucleolar RNA, C/D box 116-13 snoRNA 11 0.001311
-100033426 SNORD116-14 small nucleolar RNA, C/D box 116-14 snoRNA 9 0.001073
-100033427 SNORD116-15 small nucleolar RNA, C/D box 116-15 snoRNA 13 0.00155
-100033428 SNORD116-16 small nucleolar RNA, C/D box 116-16 snoRNA 13 0.00155
-100033429 SNORD116-17 small nucleolar RNA, C/D box 116-17 snoRNA 5 0.0005961
-100033430 SNORD116-18 small nucleolar RNA, C/D box 116-18 snoRNA 9 0.001073
-100033431 SNORD116-20 small nucleolar RNA, C/D box 116-20 snoRNA 25 0.00298
-100033434 SNORD116-23 small nucleolar RNA, C/D box 116-23 snoRNA 6 0.0007153
-100033435 SNORD116-24 small nucleolar RNA, C/D box 116-24 snoRNA 15 0.001788
-100033436 SNORD116-25 small nucleolar RNA, C/D box 116-25 snoRNA 12 0.001431
-100033437 SNORD115-2 small nucleolar RNA, C/D box 115-2 snoRNA 17 0.002027
-100033438 SNORD116-26 small nucleolar RNA, C/D box 116-26 snoRNA 9 0.001073
-100033439 SNORD116-27 small nucleolar RNA, C/D box 116-27 snoRNA 6 0.0007153
-100033440 SNORD115-3 small nucleolar RNA, C/D box 115-3 snoRNA 8 0.0009537
-100033441 SNORD115-4 small nucleolar RNA, C/D box 115-4 snoRNA 12 0.001431
-100033442 SNORD115-5 small nucleolar RNA, C/D box 115-5 snoRNA 6 0.0007153
-100033443 SNORD115-6 small nucleolar RNA, C/D box 115-6 snoRNA 6 0.0007153
-100033445 SNORD115-8 small nucleolar RNA, C/D box 115-8 snoRNA 16 0.001907
-100033446 SNORD115-9 small nucleolar RNA, C/D box 115-9 snoRNA 1 0.0001192
-100033447 SNORD115-10 small nucleolar RNA, C/D box 115-10 snoRNA 17 0.002027
-100033448 SNORD115-11 small nucleolar RNA, C/D box 115-11 snoRNA 8 0.0009537
-100033449 SNORD115-12 small nucleolar RNA, C/D box 115-12 snoRNA 8 0.0009537
-100033451 SNORD115-14 small nucleolar RNA, C/D box 115-14 snoRNA 14 0.001669
-100033453 SNORD115-15 small nucleolar RNA, C/D box 115-15 snoRNA 8 0.0009537
-100033454 SNORD115-16 small nucleolar RNA, C/D box 115-16 snoRNA 7 0.0008345
-100033455 SNORD115-17 small nucleolar RNA, C/D box 115-17 snoRNA 12 0.001431
-100033456 SNORD115-18 small nucleolar RNA, C/D box 115-18 snoRNA 9 0.001073
-100033458 SNORD115-19 small nucleolar RNA, C/D box 115-19 snoRNA 8 0.0009537
-100033460 SNORD115-20 small nucleolar RNA, C/D box 115-20 snoRNA 11 0.001311
-100033603 SNORD115-21 small nucleolar RNA, C/D box 115-21 snoRNA 18 0.002146
-100033799 SNORD115-22 small nucleolar RNA, C/D box 115-22 snoRNA 8 0.0009537
-100033800 SNORD115-23 small nucleolar RNA, C/D box 115-23 snoRNA 9 0.001073
-100033801 SNORD115-25 small nucleolar RNA, C/D box 115-25 snoRNA 4 0.0004769
-100033803 SNORD115-29 small nucleolar RNA, C/D box 115-29 snoRNA 10 0.001192
-100033804 SNORD115-30 small nucleolar RNA, C/D box 115-30 snoRNA 10 0.001192
-100033805 SNORD115-31 small nucleolar RNA, C/D box 115-31 snoRNA 6 0.0007153
-100033806 SNORD115-32 small nucleolar RNA, C/D box 115-32 snoRNA 13 0.00155
-100033807 SNORD115-33 small nucleolar RNA, C/D box 115-33 snoRNA 12 0.001431
-100033808 SNORD115-34 small nucleolar RNA, C/D box 115-34 snoRNA 5 0.0005961
-100033809 SNORD115-35 small nucleolar RNA, C/D box 115-35 snoRNA 7 0.0008345
-100033810 SNORD115-36 small nucleolar RNA, C/D box 115-36 snoRNA 6 0.0007153
-100033811 SNORD115-37 small nucleolar RNA, C/D box 115-37 snoRNA 6 0.0007153
-100033812 SNORD115-38 small nucleolar RNA, C/D box 115-38 snoRNA 7 0.0008345
-100033813 SNORD115-39 small nucleolar RNA, C/D box 115-39 snoRNA 5 0.0005961
-100033814 SNORD115-40 small nucleolar RNA, C/D box 115-40 snoRNA 11 0.001311
-100033815 SNORD115-41 small nucleolar RNA, C/D box 115-41 snoRNA 10 0.001192
-100033816 SNORD115-42 small nucleolar RNA, C/D box 115-42 snoRNA 8 0.0009537
-100033817 SNORD115-43 small nucleolar RNA, C/D box 115-43 snoRNA 15 0.001788
-100033818 SNORD115-44 small nucleolar RNA, C/D box 115-44 snoRNA 6 0.0007153
-100033821 SNORD116-29 small nucleolar RNA, C/D box 116-29 snoRNA 15 0.001788
-100033822 SNORD115-48 small nucleolar RNA, C/D box 115-48 snoRNA 7 0.0008345
-100034743 PDZK1P1 PDZ domain containing 1 pseudogene 1 pseudo 3 0.0003577
-100036563 SNORD115-24 small nucleolar RNA, C/D box 115-24 snoRNA 6 0.0007153
-100036564 SNORD115-27 small nucleolar RNA, C/D box 115-27 snoRNA 10 0.001192
-100036565 SNORD115-28 small nucleolar RNA, C/D box 115-28 snoRNA 14 0.001669
-100037417 DDTL D-dopachrome tautomerase like protein-coding 6 0.0007153
-100038246 TLX1NB TLX1 neighbor ncRNA 11 0.001311
-100048912 CDKN2B-AS1 CDKN2B antisense RNA 1 ncRNA 7 0.0008345
-100049587 SIGLEC14 sialic acid binding Ig like lectin 14 protein-coding 56 0.006676
-100101267 POM121C POM121 transmembrane nucleoporin C protein-coding 66 0.007868
-100101467 ZSCAN30 zinc finger and SCAN domain containing 30 protein-coding 52 0.006199
-100113407 TMEM170B transmembrane protein 170B protein-coding 18 0.002146
-100124412 FAM138E family with sequence similarity 138 member E ncRNA 8 0.0009537
-100124696 TEC transient erythroblastopenia of childhood unknown 87 0.01037
-100125288 ZGLP1 zinc finger, GATA-like protein 1 protein-coding 21 0.002504
-100125556 FAM86JP family with sequence similarity 86, member A pseudogene pseudo 11 0.001311
-100126296 MIR298 microRNA 298 ncRNA 6 0.0007153
-100126297 MIR300 microRNA 300 ncRNA 6 0.0007153
-100126299 VTRNA2-1 vault RNA 2-1 ncRNA 16 0.001907
-100126301 MIR509-2 microRNA 509-2 ncRNA 9 0.001073
-100126302 MIR450B microRNA 450b ncRNA 2 0.0002384
-100126303 MIR890 microRNA 890 ncRNA 16 0.001907
-100126304 MIR891B microRNA 891b ncRNA 10 0.001192
-100126306 MIR888 microRNA 888 ncRNA 9 0.001073
-100126307 MIR892B microRNA 892b ncRNA 6 0.0007153
-100126308 MIR541 microRNA 541 ncRNA 8 0.0009537
-100126310 MIR876 microRNA 876 ncRNA 5 0.0005961
-100126315 MIR665 microRNA 665 ncRNA 6 0.0007153
-100126316 MIR873 microRNA 873 ncRNA 2 0.0002384
-100126317 MIR374B microRNA 374b ncRNA 1 0.0001192
-100126318 MIR301B microRNA 301b ncRNA 2 0.0002384
-100126319 MIR216B microRNA 216b ncRNA 7 0.0008345
-100126320 MIR920 microRNA 920 ncRNA 10 0.001192
-100126335 MIR543 microRNA 543 ncRNA 23 0.002742
-100126337 MIR509-3 microRNA 509-3 ncRNA 15 0.001788
-100126341 MIR891A microRNA 891a ncRNA 11 0.001311
-100126342 MIR892A microRNA 892a ncRNA 10 0.001192
-100126345 MIR889 microRNA 889 ncRNA 4 0.0004769
-100126354 MIR297 microRNA 297 ncRNA 8 0.0009537
-100126355 MIR365A microRNA 365a ncRNA 5 0.0005961
-100127952 ATF4P4 activating transcription factor 4 pseudogene 4 pseudo 100 0.01192
-100127983 C8orf88 chromosome 8 open reading frame 88 protein-coding 1 0.0001192
-100128252 ZNF667-AS1 ZNF667 antisense RNA 1 (head to head) ncRNA 15 0.001788
-100128264 HTR5A-AS1 HTR5A antisense RNA 1 ncRNA 42 0.005007
-100128327 TRAPPC3L trafficking protein particle complex 3 like protein-coding 21 0.002504
-100128378 LINC00696 long intergenic non-protein coding RNA 696 ncRNA 10 0.001192
-100128496 C20orf78 chromosome 20 open reading frame 78 protein-coding 8 0.0009537
-100128537 MIR29B2CHG MIR29B2 and MIR29C host gene ncRNA 11 0.001311
-100128553 CTAGE4 CTAGE family member 4 protein-coding 25 0.00298
-100128569 C19orf71 chromosome 19 open reading frame 71 protein-coding 13 0.00155
-100128675 HPN-AS1 HPN antisense RNA 1 ncRNA 2 0.0002384
-100128731 OST4 oligosaccharyltransferase complex subunit 4, non-catalytic protein-coding 4 0.0004769
-100128788 SRRM2-AS1 SRRM2 antisense RNA 1 ncRNA 1 0.0001192
-100128890 FAM66B family with sequence similarity 66 member B ncRNA 2 0.0002384
-100128927 ZBTB42 zinc finger and BTB domain containing 42 protein-coding 19 0.002265
-100128946 LINC01310 long intergenic non-protein coding RNA 1310 ncRNA 19 0.002265
-100129128 KHDC1L KH domain containing 1 like protein-coding 15 0.001788
-100129271 C1orf68 chromosome 1 open reading frame 68 protein-coding 15 0.001788
-100129482 ZNF37BP zinc finger protein 37B, pseudogene pseudo 106 0.01264
-100129543 ZNF730 zinc finger protein 730 protein-coding 95 0.01133
-100129583 FAM47E family with sequence similarity 47 member E protein-coding 29 0.003457
-100129696 TFP1 transferrin pseudogene 1 pseudo 2 0.0002384
-100129792 CCDC152 coiled-coil domain containing 152 protein-coding 16 0.001907
-100129794 SLC25A21-AS1 SLC25A21 antisense RNA 1 ncRNA 6 0.0007153
-100129842 ZNF737 zinc finger protein 737 protein-coding 104 0.0124
-100129933 GLYATL1P2 glycine-N-acyltransferase like 1 pseudogene 2 pseudo 8 0.0009537
-100130017 FTLP10 ferritin light chain pseudogene 10 pseudo 11 0.001311
-100130274 CCDC166 coiled-coil domain containing 166 protein-coding 18 0.002146
-100130311 C17orf107 chromosome 17 open reading frame 107 protein-coding 11 0.001311
-100130418 CECR7 cat eye syndrome chromosome region, candidate 7 (non-protein coding) ncRNA 17 0.002027
-100130613 PRR32 proline rich 32 protein-coding 34 0.004053
-100130717 HDHD5-AS1 HDHD5 antisense RNA 1 ncRNA 4 0.0004769
-100130733 LRRC70 leucine rich repeat containing 70 protein-coding 40 0.004769
-100130742 LRRC69 leucine rich repeat containing 69 protein-coding 30 0.003577
-100130771 EFCAB10 EF-hand calcium binding domain 10 protein-coding 7 0.0008345
-100130776 AGAP2-AS1 AGAP2 antisense RNA 1 ncRNA 16 0.001907
-100130889 PSORS1C3 psoriasis susceptibility 1 candidate 3 (non-protein coding) ncRNA 4 0.0004769
-100130890 TSTD3 thiosulfate sulfurtransferase (rhodanese)-like domain containing 3 protein-coding 7 0.0008345
-100130933 SMIM6 small integral membrane protein 6 protein-coding 92 0.01097
-100130934 ZNF663P zinc finger protein 663, pseudogene pseudo 22 0.002623
-100130958 SYCE1L synaptonemal complex central element protein 1 like protein-coding 11 0.001311
-100130988 SPATA48 spermatogenesis associated 48 protein-coding 44 0.005246
-100131089 SRP14-AS1 SRP14 antisense RNA1 (head to head) ncRNA 9 0.001073
-100131137 BSPH1 binder of sperm protein homolog 1 protein-coding 15 0.001788
-100131187 TSTD1 thiosulfate sulfurtransferase like domain containing 1 protein-coding 36 0.004292
-100131211 NEMP2 nuclear envelope integral membrane protein 2 protein-coding 24 0.002861
-100131320 RAB6C-AS1 RAB6C antisense RNA 1 ncRNA 21 0.002504
-100131378 C11orf91 chromosome 11 open reading frame 91 protein-coding 2 0.0002384
-100131390 SP9 Sp9 transcription factor protein-coding 8 0.0009537
-100131439 CD300LD CD300 molecule like family member d protein-coding 23 0.002742
-100131551 LINC00887 long intergenic non-protein coding RNA 887 ncRNA 7 0.0008345
-100131755 ARMCX4 armadillo repeat containing, X-linked 4 protein-coding 10 0.001192
-100131801 PET100 PET100 homolog protein-coding 6 0.0007153
-100131816 UBE2DNL ubiquitin conjugating enzyme E2 D N-terminal like (pseudogene) pseudo 1 0.0001192
-100131827 ZNF717 zinc finger protein 717 protein-coding 32 0.003815
-100131863 RPS18P5 ribosomal protein S18 pseudogene 5 pseudo 20 0.002384
-100131897 FAM196B family with sequence similarity 196 member B protein-coding 52 0.006199
-100131902 KRTAP25-1 keratin associated protein 25-1 protein-coding 19 0.002265
-100131997 FAM27E3 family with sequence similarity 27 member E3 ncRNA 7 0.0008345
-100131998 RRN3P3 RRN3 homolog, RNA polymerase I transcription factor pseudogene 3 pseudo 34 0.004053
-100132169 WASIR2 WASH and IL9R antisense RNA 2 ncRNA 9 0.001073
-100132247 NPIPB5 nuclear pore complex interacting protein family member B5 protein-coding 21 0.002504
-100132288 TEKT4P2 tektin 4 pseudogene 2 pseudo 35 0.004173
-100132386 KRTAP4-9 keratin associated protein 4-9 protein-coding 34 0.004053
-100132396 ZNF705B zinc finger protein 705B protein-coding 9 0.001073
-100132403 FAM157B family with sequence similarity 157 member B (non-protein coding) ncRNA 6 0.0007153
-100132406 NBPF10 NBPF member 10 protein-coding 135 0.01609
-100132476 KRTAP4-7 keratin associated protein 4-7 protein-coding 24 0.002861
-100132565 GOLGA8F golgin A8 family member F protein-coding 13 0.00155
-100132596 XGY2 Xg pseudogene, Y-linked 2 pseudo 36 0.004292
-100132707 PAXIP1-AS2 PAXIP1 antisense RNA 2 ncRNA 6 0.0007153
-100132708 CYP4F30P cytochrome P450 family 4 subfamily F member 30, pseudogene pseudo 6 0.0007153
-100132923 FAM66D family with sequence similarity 66 member D ncRNA 3 0.0003577
-100132948 FAM27C family with sequence similarity 27 member C ncRNA 2 0.0002384
-100133036 FAM95B1 family with sequence similarity 95 member B1 ncRNA 17 0.002027
-100133161 LINC01001 long intergenic non-protein coding RNA 1001 ncRNA 1 0.0001192
-100133163 BCRP7 breakpoint cluster region pseudogene 7 pseudo 38 0.00453
-100133204 C9orf147 chromosome 9 open reading frame 147 protein-coding 2 0.0002384
-100133308 RSU1P2 Ras suppressor protein 1 pseudogene 2 pseudo 44 0.005246
-100133545 MRPL23-AS1 MRPL23 antisense RNA 1 ncRNA 13 0.00155
-100133991 MAP3K14-AS1 MAP3K14 antisense RNA 1 ncRNA 21 0.002504
-100134259 LINC01119 long intergenic non-protein coding RNA 1119 ncRNA 5 0.0005961
-100134934 TEN1 TEN1, CST complex subunit protein-coding 6 0.0007153
-100134938 UPK3BL1 uroplakin 3B like 1 protein-coding 3 0.0003577
-100137047 JMJD7 jumonji domain containing 7 protein-coding 12 0.001431
-100137049 PLA2G4B phospholipase A2 group IVB protein-coding 72 0.008584
-100141515 C17orf99 chromosome 17 open reading frame 99 protein-coding 18 0.002146
-100142659 CTAGE8 CTAGE family member 8 protein-coding 4 0.0004769
-100144596 LINC00029 long intergenic non-protein coding RNA 29 ncRNA 3 0.0003577
-100144748 KLLN killin, p53 regulated DNA replication inhibitor protein-coding 10 0.001192
-100151643 KRTAP20-4 keratin associated protein 20-4 protein-coding 5 0.0005961
-100169851 PATE3 prostate and testis expressed 3 protein-coding 8 0.0009537
-100170229 SRRM5 serine/arginine repetitive matrix 5 protein-coding 52 0.006199
-100170765 ERICH4 glutamate rich 4 protein-coding 9 0.001073
-100170841 EPOP elongin BC and polycomb repressive complex 2 associated protein protein-coding 8 0.0009537
-100188893 TOMM6 translocase of outer mitochondrial membrane 6 protein-coding 9 0.001073
-100188953 LINC00092 long intergenic non-protein coding RNA 92 ncRNA 4 0.0004769
-100190939 TPT1-AS1 TPT1 antisense RNA 1 ncRNA 8 0.0009537
-100190949 C5orf52 chromosome 5 open reading frame 52 protein-coding 23 0.002742
-100191040 C2CD4D C2 calcium dependent domain containing 4D protein-coding 11 0.001311
-100216479 FAR2P2 fatty acyl-CoA reductase 2 pseudogene 2 pseudo 8 0.0009537
-100216544 DNM1P47 dynamin 1 pseudogene 47 pseudo 108 0.01288
-100271702 LINC00940 long intergenic non-protein coding RNA 940 ncRNA 8 0.0009537
-100271715 ARHGEF33 Rho guanine nucleotide exchange factor 33 protein-coding 56 0.006676
-100271849 MEF2B myocyte enhancer factor 2B protein-coding 37 0.004411
-100271874 ZNRF2P2 zinc and ring finger 2 pseudogene 2 pseudo 7 0.0008345
-100271927 RASA4B RAS p21 protein activator 4B protein-coding 12 0.001431
-100272147 CMC4 C-X9-C motif containing 4 protein-coding 13 0.00155
-100272228 LINC00894 long intergenic non-protein coding RNA 894 ncRNA 4 0.0004769
-100287029 DDX11L10 DEAD/H-box helicase 11 like 10 pseudo 11 0.001311
-100287102 DDX11L1 DEAD/H-box helicase 11 like 1 pseudo 11 0.001311
-100287177 EML2-AS1 EML2 antisense RNA 1 ncRNA 2 0.0002384
-100287284 MANSC4 MANSC domain containing 4 protein-coding 29 0.003457
-100287362 PRSS46P serine protease 46, pseudogene pseudo 4 0.0004769
-100287364 USP17L18 ubiquitin specific peptidase 17-like family member 18 protein-coding 2 0.0002384
-100287366 OSTM1-AS1 OSTM1 antisense RNA 1 ncRNA 8 0.0009537
-100287399 POTEB2 POTE ankyrin domain family member B2 protein-coding 46 0.005484
-100287569 LINC00173 long intergenic non-protein coding RNA 173 ncRNA 22 0.002623
-100287639 MTHFD2P1 methylenetetrahydrofolate dehydrogenase (NADP+ dependent) 2, methenyltetrahydrofolate cyclohydrolase pseudogene 1 pseudo 108 0.01288
-100287718 ANKRD66 ankyrin repeat domain 66 protein-coding 12 0.001431
-100287932 TIMM23 translocase of inner mitochondrial membrane 23 protein-coding 10 0.001192
-100288142 NBPF20 NBPF member 20 protein-coding 46 0.005484
-100288332 NPIPA5 nuclear pore complex interacting protein family member A5 protein-coding 19 0.002265
-100288380 ULK4P2 ULK4 pseudogene 2 pseudo 1 0.0001192
-100288413 ERVMER34-1 endogenous retrovirus group MER34 member 1, envelope protein-coding 34 0.004053
-100288486 DDX11L9 DEAD/H-box helicase 11 like 9 pseudo 1 0.0001192
-100288797 TMEM239 transmembrane protein 239 protein-coding 12 0.001431
-100288897 FAR2P3 fatty acyl-CoA reductase 2 pseudogene 3 pseudo 9 0.001073
-100289017 MOXD2P monooxygenase, DBH-like 2, pseudogene pseudo 18 0.002146
-100289255 TMEM238L transmembrane protein 238 like ncRNA 8 0.0009537
-100289635 ZNF605 zinc finger protein 605 protein-coding 21 0.002504
-100289678 ZNF783 zinc finger family member 783 protein-coding 78 0.009299
-100293516 ZNF587B zinc finger protein 587B protein-coding 33 0.003934
-100302112 MIR1284 microRNA 1284 ncRNA 8 0.0009537
-100302114 MIR513C microRNA 513c ncRNA 8 0.0009537
-100302115 MIR1468 microRNA 1468 ncRNA 6 0.0007153
-100302116 MIR1265 microRNA 1265 ncRNA 1 0.0001192
-100302123 MIR1275 microRNA 1275 ncRNA 2 0.0002384
-100302128 MIR1302-3 microRNA 1302-3 ncRNA 25 0.00298
-100302130 MIR1302-4 microRNA 1302-4 ncRNA 2 0.0002384
-100302140 MIR1302-6 microRNA 1302-6 ncRNA 3 0.0003577
-100302148 MIR1263 microRNA 1263 ncRNA 4 0.0004769
-100302157 MIR1185-1 microRNA 1185-1 ncRNA 10 0.001192
-100302161 MIR1205 microRNA 1205 ncRNA 3 0.0003577
-100302164 MIR2113 microRNA 2113 ncRNA 4 0.0004769
-100302168 MIR1257 microRNA 1257 ncRNA 5 0.0005961
-100302169 MIR320D2 microRNA 320d-2 ncRNA 4 0.0004769
-100302175 MIR1207 microRNA 1207 ncRNA 2 0.0002384
-100302177 MIR1269A microRNA 1269a ncRNA 13 0.00155
-100302191 MIR548I4 microRNA 548i-4 ncRNA 6 0.0007153
-100302204 MIR548I1 microRNA 548i-1 ncRNA 5 0.0005961
-100302205 MIR1283-2 microRNA 1283-2 ncRNA 18 0.002146
-100302208 MIR1253 microRNA 1253 ncRNA 1 0.0001192
-100302209 MIR1185-2 microRNA 1185-2 ncRNA 12 0.001431
-100302212 MIR1324 microRNA 1324 ncRNA 27 0.003219
-100302227 MIR1302-1 microRNA 1302-1 ncRNA 1 0.0001192
-100302228 MIR1261 microRNA 1261 ncRNA 5 0.0005961
-100302235 MIR1179 microRNA 1179 ncRNA 6 0.0007153
-100302250 MIR1197 microRNA 1197 ncRNA 10 0.001192
-100302255 MIR1323 microRNA 1323 ncRNA 7 0.0008345
-100302259 MIR1202 microRNA 1202 ncRNA 3 0.0003577
-100302265 MIR1283-1 microRNA 1283-1 ncRNA 14 0.001669
-100302270 MIR1305 microRNA 1305 ncRNA 2 0.0002384
-100302277 MIR548I2 microRNA 548i-2 ncRNA 14 0.001669
-100302281 MIR1208 microRNA 1208 ncRNA 6 0.0007153
-100302284 MIR1303 microRNA 1303 ncRNA 9 0.001073
-100302289 MIR1251 microRNA 1251 ncRNA 10 0.001192
-100302652 GPR75-ASB3 GPR75-ASB3 readthrough protein-coding 1 0.0001192
-100302736 TMED7-TICAM2 TMED7-TICAM2 readthrough protein-coding 41 0.004888
-100303755 PET117 PET117 homolog protein-coding 4 0.0004769
-100309464 OTX2-AS1 OTX2 antisense RNA 1 (head to head) ncRNA 1 0.0001192
-100310812 SPDYE2B speedy/RINGO cell cycle regulator family member E2B protein-coding 1 0.0001192
-100313772 MIR548M microRNA 548m ncRNA 6 0.0007153
-100313774 MIR302E microRNA 302e ncRNA 3 0.0003577
-100313777 MIR670 microRNA 670 ncRNA 1 0.0001192
-100313778 MIR759 microRNA 759 ncRNA 2 0.0002384
-100313779 MIR2117 microRNA 2117 ncRNA 3 0.0003577
-100313822 MIR513B microRNA 513b ncRNA 9 0.001073
-100313824 MIR663B microRNA 663b ncRNA 13 0.00155
-100313839 MIR2114 microRNA 2114 ncRNA 1 0.0001192
-100313884 MIR548H4 microRNA 548h-4 ncRNA 5 0.0005961
-100313938 MIR548G microRNA 548g ncRNA 4 0.0004769
-100316904 SAP25 Sin3A associated protein 25 protein-coding 10 0.001192
-100379661 GRIK1-AS2 GRIK1 antisense RNA 2 ncRNA 3 0.0003577
-100420005 FAR2P4 fatty acyl-CoA reductase 2 pseudogene 4 pseudo 3 0.0003577
-100422823 MIR4300 microRNA 4300 ncRNA 3 0.0003577
-100422843 MIR4293 microRNA 4293 ncRNA 2 0.0002384
-100422844 MIR3118-3 microRNA 3118-3 ncRNA 8 0.0009537
-100422847 MIR514B microRNA 514b ncRNA 5 0.0005961
-100422857 MIR4318 microRNA 4318 ncRNA 2 0.0002384
-100422867 MIR378C microRNA 378c ncRNA 1 0.0001192
-100422878 MIR3168 microRNA 3168 ncRNA 1 0.0001192
-100422883 MIR4325 microRNA 4325 ncRNA 2 0.0002384
-100422887 MIR4280 microRNA 4280 ncRNA 1 0.0001192
-100422898 MIR4255 microRNA 4255 ncRNA 2 0.0002384
-100422920 MIR548X microRNA 548x ncRNA 2 0.0002384
-100422930 MIR4330 microRNA 4330 ncRNA 1 0.0001192
-100422938 MIR3142 microRNA 3142 ncRNA 2 0.0002384
-100422939 MIR3147 microRNA 3147 ncRNA 7 0.0008345
-100422949 MIR3118-2 microRNA 3118-2 ncRNA 3 0.0003577
-100422950 MIR3141 microRNA 3141 ncRNA 1 0.0001192
-100422951 MIR3144 microRNA 3144 ncRNA 2 0.0002384
-100422954 MIR4309 microRNA 4309 ncRNA 1 0.0001192
-100422959 MIR4268 microRNA 4268 ncRNA 1 0.0001192
-100422960 MIR3179-1 microRNA 3179-1 ncRNA 1 0.0001192
-100422964 MIR3150A microRNA 3150a ncRNA 3 0.0003577
-100422966 MIR4277 microRNA 4277 ncRNA 3 0.0003577
-100422973 MIR3169 microRNA 3169 ncRNA 1 0.0001192
-100422988 MIR3156-1 microRNA 3156-1 ncRNA 2 0.0002384
-100422994 MIR4267 microRNA 4267 ncRNA 1 0.0001192
-100422996 MIR4262 microRNA 4262 ncRNA 2 0.0002384
-100423008 MIR3118-1 microRNA 3118-1 ncRNA 4 0.0004769
-100423015 MIR4289 microRNA 4289 ncRNA 1 0.0001192
-100423018 MIR3156-3 microRNA 3156-3 ncRNA 3 0.0003577
-100423021 MIR4298 microRNA 4298 ncRNA 2 0.0002384
-100423026 MIR4299 microRNA 4299 ncRNA 1 0.0001192
-100423035 MIR4313 microRNA 4313 ncRNA 3 0.0003577
-100423038 MIR466 microRNA 466 ncRNA 2 0.0002384
-100423062 IGLL5 immunoglobulin lambda like polypeptide 5 protein-coding 42 0.005007
-100463486 MTRNR2L8 MT-RNR2 like 8 protein-coding 1 0.0001192
-100499227 USP2-AS1 USP2 antisense RNA 1 (head to head) ncRNA 8 0.0009537
-100499405 LINC00987 long intergenic non-protein coding RNA 987 ncRNA 25 0.00298
-100499466 LINC00674 long intergenic non-protein coding RNA 674 ncRNA 4 0.0004769
-100499483 CCDC180 coiled-coil domain containing 180 protein-coding 175 0.02086
-100500802 MIR3685 microRNA 3685 ncRNA 3 0.0003577
-100505381 MMD2 Miyoshi muscular dystrophy 2 unknown 52 0.006199
-100505385 IQCJ-SCHIP1 IQCJ-SCHIP1 readthrough protein-coding 58 0.006915
-100505621 C11orf72 chromosome 11 open reading frame 72 (putative) ncRNA 15 0.001788
-100505741 SPATA1 spermatogenesis associated 1 protein-coding 33 0.003934
-100505876 CEBPZOS CEBPZ opposite strand protein-coding 15 0.001788
-100505879 KIF25-AS1 KIF25 antisense RNA 1 ncRNA 1 0.0001192
-100506012 PPP5D1 PPP5 tetratricopeptide repeat domain containing 1 protein-coding 16 0.001907
-100506084 ARL17B ADP ribosylation factor like GTPase 17B protein-coding 3 0.0003577
-100506144 TMEM35B transmembrane protein 35B protein-coding 2 0.0002384
-100506243 KRBOX1 KRAB box domain containing 1 protein-coding 7 0.0008345
-100506540 SPTY2D1OS SPTY2D1 opposite strand protein-coding 7 0.0008345
-100506581 C16orf95 chromosome 16 open reading frame 95 protein-coding 10 0.001192
-100506658 OCLN occludin protein-coding 49 0.005842
-100506736 SLFN12L schlafen family member 12 like protein-coding 79 0.009418
-100506742 CASP12 caspase 12 (gene/pseudogene) protein-coding 17 0.002027
-100506874 LINC00933 long intergenic non-protein coding RNA 933 ncRNA 14 0.001669
-100506930 LINC00665 long intergenic non-protein coding RNA 665 ncRNA 5 0.0005961
-100506965 PWAR6 Prader Willi/Angelman region RNA 6 ncRNA 9 0.001073
-100507027 MRLN myoregulin protein-coding 20 0.002384
-100507043 TUNAR TCL1 upstream neural differentiation-associated RNA ncRNA 7 0.0008345
-100507203 SMLR1 small leucine rich protein 1 protein-coding 2 0.0002384
-100507206 LINC00943 long intergenic non-protein coding RNA 943 ncRNA 21 0.002504
-100507246 SNHG16 small nucleolar RNA host gene 16 ncRNA 2 0.0002384
-100507261 MIR670HG MIR670 host gene ncRNA 3 0.0003577
-100507321 ERVK13-1 endogenous retrovirus group K13 member 1 ncRNA 32 0.003815
-100507410 C1QTNF1-AS1 C1QTNF1 antisense RNA 1 ncRNA 4 0.0004769
-100507436 MICA MHC class I polypeptide-related sequence A protein-coding 27 0.003219
-100507444 PPP1R2P1 protein phosphatase 1 regulatory inhibitor subunit 2 pseudogene 1 pseudo 32 0.003815
-100507582 BHLHE40-AS1 BHLHE40 antisense RNA 1 ncRNA 5 0.0005961
-100507605 LINC00837 long intergenic non-protein coding RNA 837 ncRNA 5 0.0005961
-100507607 NPIPB9 nuclear pore complex interacting protein family member B9 protein-coding 1 0.0001192
-100526664 LY75-CD302 LY75-CD302 readthrough protein-coding 174 0.02074
-100526693 ARPC4-TTLL3 ARPC4-TTLL3 readthrough protein-coding 2 0.0002384
-100526737 RBM14-RBM4 RBM14-RBM4 readthrough protein-coding 38 0.00453
-100526740 ATP5MF-PTCD1 ATP5MF-PTCD1 readthrough protein-coding 88 0.01049
-100526760 ABHD14A-ACY1 ABHD14A-ACY1 readthrough protein-coding 1 0.0001192
-100526767 RNF103-CHMP3 RNF103-CHMP3 readthrough protein-coding 20 0.002384
-100526771 SMIM35 small integral membrane protein 35 protein-coding 2 0.0002384
-100526772 TMEM110-MUSTN1 TMEM110-MUSTN1 readthrough protein-coding 13 0.00155
-100526773 EPPIN-WFDC6 EPPIN-WFDC6 readthrough protein-coding 6 0.0007153
-100526783 C15orf38-AP3S2 C15orf38-AP3S2 readthrough protein-coding 37 0.004411
-100526835 FPGT-TNNI3K FPGT-TNNI3K readthrough protein-coding 132 0.01574
-100526842 RPL17-C18orf32 RPL17-C18orf32 readthrough protein-coding 9 0.001073
-100527943 TGIF2-RAB5IF TGIF2-RAB5IF readthrough protein-coding 2 0.0002384
-100527978 TMEM56-RWDD3 TMEM56-RWDD3 readthrough protein-coding 1 0.0001192
-100528020 FAM187A family with sequence similarity 187 member A protein-coding 14 0.001669
-100528021 ST20-MTHFS ST20-MTHFS readthrough protein-coding 19 0.002265
-100528030 POC1B-GALNT4 POC1B-GALNT4 readthrough protein-coding 3 0.0003577
-100528064 NEDD8-MDP1 NEDD8-MDP1 readthrough protein-coding 15 0.001788
-100529063 BCL2L2-PABPN1 BCL2L2-PABPN1 readthrough protein-coding 18 0.002146
-100529097 RPL36A-HNRNPH2 RPL36A-HNRNPH2 readthrough protein-coding 16 0.001907
-100529144 CORO7-PAM16 CORO7-PAM16 readthrough protein-coding 6 0.0007153
-100529207 RAD51L3-RFFL RAD51L3-RFFL readthrough ncRNA 13 0.00155
-100529211 TMEM256-PLSCR3 TMEM256-PLSCR3 readthrough (NMD candidate) ncRNA 18 0.002146
-100529241 HSPE1-MOB4 HSPE1-MOB4 readthrough protein-coding 17 0.002027
-100529251 CKLF-CMTM1 CKLF-CMTM1 readthrough protein-coding 1 0.0001192
-100529261 CHURC1-FNTB CHURC1-FNTB readthrough protein-coding 13 0.00155
-100532731 COMMD3-BMI1 COMMD3-BMI1 readthrough protein-coding 11 0.001311
-100532736 MINOS1-NBL1 MINOS1-NBL1 readthrough protein-coding 21 0.002504
-100533181 FXYD6-FXYD2 FXYD6-FXYD2 readthrough protein-coding 2 0.0002384
-100533182 SEC24B-AS1 SEC24B antisense RNA 1 ncRNA 6 0.0007153
-100533184 ARHGAP19-SLIT1 ARHGAP19-SLIT1 readthrough (NMD candidate) ncRNA 2 0.0002384
-100533467 BIVM-ERCC5 BIVM-ERCC5 readthrough protein-coding 150 0.01788
-100533496 TVP23C-CDRT4 TVP23C-CDRT4 readthrough protein-coding 6 0.0007153
-100533952 RBAK-RBAKDN RBAK-RBAKDN readthrough protein-coding 4 0.0004769
-100534592 URGCP-MRPS24 URGCP-MRPS24 readthrough protein-coding 1 0.0001192
-100534599 ISY1-RAB43 ISY1-RAB43 readthrough protein-coding 1 0.0001192
-100616668 TPTE2P5 transmembrane phosphoinositide 3-phosphatase and tensin homolog 2 pseudogene 5 pseudo 4 0.0004769
-100631383 FAM47E-STBD1 FAM47E-STBD1 readthrough protein-coding 28 0.003338
-100652740 PYCARD-AS1 PYCARD antisense RNA 1 ncRNA 4 0.0004769
-100652856 LINC00408 long intergenic non-protein coding RNA 408 ncRNA 2 0.0002384
-100750245 SNAPC5P1 small nuclear RNA activating complex polypeptide 5 pseudogene 1 pseudo 7 0.0008345
-100820829 MYZAP myocardial zonula adherens protein protein-coding 23 0.002742
-100861412 FSBP fibrinogen silencer binding protein protein-coding 16 0.001907
-100861547 LINC00566 long intergenic non-protein coding RNA 566 ncRNA 1 0.0001192
-100873536 RNA5SP283 RNA, 5S ribosomal pseudogene 283 pseudo 3 0.0003577
-100873571 RNA5-8SP2 RNA, 5.8S ribosomal pseudogene 2 pseudo 12 0.001431
-100873790 FHP1 fumarate hydratase pseudogene 1 pseudo 21 0.002504
-100874057 LINC00283 long intergenic non-protein coding RNA 283 ncRNA 58 0.006915
-100874222 RNF219-AS1 RNF219 antisense RNA 1 ncRNA 5 0.0005961
-100874261 LINC00854 long intergenic non-protein coding RNA 854 ncRNA 5 0.0005961
-100874518 ATP8A2P3 ATPase phospholipid transporting 8A2 pseudogene 3 pseudo 1 0.0001192
-100885848 PTGES3L prostaglandin E synthase 3 like protein-coding 12 0.001431
-100885850 PTGES3L-AARSD1 PTGES3L-AARSD1 readthrough protein-coding 15 0.001788
-100887750 MRPS31P5 mitochondrial ribosomal protein S31 pseudogene 5 pseudo 39 0.004649
-100996279 LINC00269 long intergenic non-protein coding RNA 269 ncRNA 5 0.0005961
-100996295 DNAH17-AS1 DNAH17 antisense RNA 1 ncRNA 11 0.001311
-100996307 LIPE-AS1 LIPE antisense RNA 1 ncRNA 3 0.0003577
-100996331 POTEB POTE ankyrin domain family member B protein-coding 9 0.001073
-100996465 LCA10 lung carcinoma-associated 10 ncRNA 16 0.001907
-100996485 C5orf66 chromosome 5 open reading frame 66 protein-coding 9 0.001073
-100996541 FAM157C family with sequence similarity 157 member C (non-protein coding) ncRNA 1 0.0001192
-100996928 C7orf55-LUC7L2 C7orf55-LUC7L2 readthrough protein-coding 6 0.0007153
-100996939 PYURF PIGY upstream reading frame protein-coding 7 0.0008345
-101059918 GOLGA8R golgin A8 family member R protein-coding 1 0.0001192
-101060171 ARMC4P1 armadillo repeat containing 4 pseudogene 1 pseudo 22 0.002623
-101060321 TBC1D3G TBC1 domain family member 3G protein-coding 15 0.001788
-101101776 BMS1P17 BMS1, ribosome biogenesis factor pseudogene 17 pseudo 7 0.0008345
-101290506 LRRFIP1P1 LRR binding FLII interacting protein 1 pseudogene 1 pseudo 12 0.001431
-101927601 GOLGA6L19 golgin A6 family-like 19 protein-coding 4 0.0004769
-101927722 LINC01644 long intergenic non-protein coding RNA 1644 ncRNA 3 0.0003577
-102238594 SPACA6P-AS SPACA6P antisense RNA ncRNA 33 0.003934
-102464831 MIR6080 microRNA 6080 ncRNA 62 0.007392
+768206 PRCD photoreceptor disc component protein-coding 4 0.0004764
+768211 RELL1 RELT like 1 protein-coding 16 0.001905
+768212 MIR758 microRNA 758 ncRNA 13 0.001548
+768219 MIR802 microRNA 802 ncRNA 9 0.001072
+768222 MIR770 microRNA 770 ncRNA 6 0.0007145
+768239 PSAPL1 prosaposin like 1 (gene/pseudogene) protein-coding 48 0.005716
+780776 TVP23A trans-golgi network vesicle protein 23 homolog A protein-coding 20 0.002382
+780851 SNORD3A small nucleolar RNA, C/D box 3A snoRNA 30 0.003573
+780852 SNORD3B-2 small nucleolar RNA, C/D box 3B-2 snoRNA 28 0.003335
+780853 SNORD3C small nucleolar RNA, C/D box 3C snoRNA 1 0.0001191
+780854 SNORD3D small nucleolar RNA, C/D box 3D snoRNA 10 0.001191
+790955 UQCC3 ubiquinol-cytochrome c reductase complex assembly factor 3 protein-coding 4 0.0004764
+100033413 SNORD116-1 small nucleolar RNA, C/D box 116-1 snoRNA 9 0.001072
+100033414 SNORD116-2 small nucleolar RNA, C/D box 116-2 snoRNA 13 0.001548
+100033415 SNORD116-3 small nucleolar RNA, C/D box 116-3 snoRNA 10 0.001191
+100033417 SNORD116-5 small nucleolar RNA, C/D box 116-5 snoRNA 13 0.001548
+100033418 SNORD116-6 small nucleolar RNA, C/D box 116-6 snoRNA 23 0.002739
+100033419 SNORD116-7 small nucleolar RNA, C/D box 116-7 snoRNA 12 0.001429
+100033420 SNORD116-8 small nucleolar RNA, C/D box 116-8 snoRNA 23 0.002739
+100033421 SNORD116-9 small nucleolar RNA, C/D box 116-9 snoRNA 6 0.0007145
+100033422 SNORD116-10 small nucleolar RNA, C/D box 116-10 snoRNA 1 0.0001191
+100033423 SNORD116-11 small nucleolar RNA, C/D box 116-11 snoRNA 13 0.001548
+100033424 SNORD116-12 small nucleolar RNA, C/D box 116-12 snoRNA 13 0.001548
+100033425 SNORD116-13 small nucleolar RNA, C/D box 116-13 snoRNA 11 0.00131
+100033426 SNORD116-14 small nucleolar RNA, C/D box 116-14 snoRNA 9 0.001072
+100033427 SNORD116-15 small nucleolar RNA, C/D box 116-15 snoRNA 13 0.001548
+100033428 SNORD116-16 small nucleolar RNA, C/D box 116-16 snoRNA 13 0.001548
+100033429 SNORD116-17 small nucleolar RNA, C/D box 116-17 snoRNA 5 0.0005955
+100033430 SNORD116-18 small nucleolar RNA, C/D box 116-18 snoRNA 9 0.001072
+100033431 SNORD116-20 small nucleolar RNA, C/D box 116-20 snoRNA 25 0.002977
+100033434 SNORD116-23 small nucleolar RNA, C/D box 116-23 snoRNA 6 0.0007145
+100033435 SNORD116-24 small nucleolar RNA, C/D box 116-24 snoRNA 15 0.001786
+100033436 SNORD116-25 small nucleolar RNA, C/D box 116-25 snoRNA 12 0.001429
+100033437 SNORD115-2 small nucleolar RNA, C/D box 115-2 snoRNA 17 0.002025
+100033438 SNORD116-26 small nucleolar RNA, C/D box 116-26 snoRNA 9 0.001072
+100033439 SNORD116-27 small nucleolar RNA, C/D box 116-27 snoRNA 6 0.0007145
+100033440 SNORD115-3 small nucleolar RNA, C/D box 115-3 snoRNA 8 0.0009527
+100033441 SNORD115-4 small nucleolar RNA, C/D box 115-4 snoRNA 12 0.001429
+100033442 SNORD115-5 small nucleolar RNA, C/D box 115-5 snoRNA 6 0.0007145
+100033443 SNORD115-6 small nucleolar RNA, C/D box 115-6 snoRNA 6 0.0007145
+100033445 SNORD115-8 small nucleolar RNA, C/D box 115-8 snoRNA 16 0.001905
+100033446 SNORD115-9 small nucleolar RNA, C/D box 115-9 snoRNA 1 0.0001191
+100033447 SNORD115-10 small nucleolar RNA, C/D box 115-10 snoRNA 17 0.002025
+100033448 SNORD115-11 small nucleolar RNA, C/D box 115-11 snoRNA 8 0.0009527
+100033449 SNORD115-12 small nucleolar RNA, C/D box 115-12 snoRNA 8 0.0009527
+100033451 SNORD115-14 small nucleolar RNA, C/D box 115-14 snoRNA 14 0.001667
+100033453 SNORD115-15 small nucleolar RNA, C/D box 115-15 snoRNA 8 0.0009527
+100033454 SNORD115-16 small nucleolar RNA, C/D box 115-16 snoRNA 7 0.0008336
+100033455 SNORD115-17 small nucleolar RNA, C/D box 115-17 snoRNA 12 0.001429
+100033456 SNORD115-18 small nucleolar RNA, C/D box 115-18 snoRNA 9 0.001072
+100033458 SNORD115-19 small nucleolar RNA, C/D box 115-19 snoRNA 8 0.0009527
+100033460 SNORD115-20 small nucleolar RNA, C/D box 115-20 snoRNA 11 0.00131
+100033603 SNORD115-21 small nucleolar RNA, C/D box 115-21 snoRNA 18 0.002144
+100033799 SNORD115-22 small nucleolar RNA, C/D box 115-22 snoRNA 8 0.0009527
+100033800 SNORD115-23 small nucleolar RNA, C/D box 115-23 snoRNA 9 0.001072
+100033801 SNORD115-25 small nucleolar RNA, C/D box 115-25 snoRNA 4 0.0004764
+100033803 SNORD115-29 small nucleolar RNA, C/D box 115-29 snoRNA 10 0.001191
+100033804 SNORD115-30 small nucleolar RNA, C/D box 115-30 snoRNA 10 0.001191
+100033805 SNORD115-31 small nucleolar RNA, C/D box 115-31 snoRNA 6 0.0007145
+100033806 SNORD115-32 small nucleolar RNA, C/D box 115-32 snoRNA 13 0.001548
+100033807 SNORD115-33 small nucleolar RNA, C/D box 115-33 snoRNA 12 0.001429
+100033808 SNORD115-34 small nucleolar RNA, C/D box 115-34 snoRNA 5 0.0005955
+100033809 SNORD115-35 small nucleolar RNA, C/D box 115-35 snoRNA 7 0.0008336
+100033810 SNORD115-36 small nucleolar RNA, C/D box 115-36 snoRNA 6 0.0007145
+100033811 SNORD115-37 small nucleolar RNA, C/D box 115-37 snoRNA 6 0.0007145
+100033812 SNORD115-38 small nucleolar RNA, C/D box 115-38 snoRNA 7 0.0008336
+100033813 SNORD115-39 small nucleolar RNA, C/D box 115-39 snoRNA 5 0.0005955
+100033814 SNORD115-40 small nucleolar RNA, C/D box 115-40 snoRNA 11 0.00131
+100033815 SNORD115-41 small nucleolar RNA, C/D box 115-41 snoRNA 10 0.001191
+100033816 SNORD115-42 small nucleolar RNA, C/D box 115-42 snoRNA 8 0.0009527
+100033817 SNORD115-43 small nucleolar RNA, C/D box 115-43 snoRNA 15 0.001786
+100033818 SNORD115-44 small nucleolar RNA, C/D box 115-44 snoRNA 6 0.0007145
+100033821 SNORD116-29 small nucleolar RNA, C/D box 116-29 snoRNA 15 0.001786
+100033822 SNORD115-48 small nucleolar RNA, C/D box 115-48 snoRNA 7 0.0008336
+100034743 PDZK1P1 PDZ domain containing 1 pseudogene 1 pseudo 3 0.0003573
+100036563 SNORD115-24 small nucleolar RNA, C/D box 115-24 snoRNA 6 0.0007145
+100036564 SNORD115-27 small nucleolar RNA, C/D box 115-27 snoRNA 10 0.001191
+100036565 SNORD115-28 small nucleolar RNA, C/D box 115-28 snoRNA 14 0.001667
+100037417 DDTL D-dopachrome tautomerase like protein-coding 6 0.0007145
+100038246 TLX1NB TLX1 neighbor ncRNA 11 0.00131
+100048912 CDKN2B-AS1 CDKN2B antisense RNA 1 ncRNA 7 0.0008336
+100049587 SIGLEC14 sialic acid binding Ig like lectin 14 protein-coding 56 0.006669
+100101267 POM121C POM121 transmembrane nucleoporin C protein-coding 66 0.00786
+100101467 ZSCAN30 zinc finger and SCAN domain containing 30 protein-coding 52 0.006193
+100113407 TMEM170B transmembrane protein 170B protein-coding 18 0.002144
+100124412 FAM138E family with sequence similarity 138 member E ncRNA 8 0.0009527
+100124696 TEC transient erythroblastopenia of childhood unknown 87 0.01036
+100125288 ZGLP1 zinc finger, GATA-like protein 1 protein-coding 21 0.002501
+100125556 FAM86JP family with sequence similarity 86, member A pseudogene pseudo 11 0.00131
+100126296 MIR298 microRNA 298 ncRNA 6 0.0007145
+100126297 MIR300 microRNA 300 ncRNA 6 0.0007145
+100126299 VTRNA2-1 vault RNA 2-1 ncRNA 16 0.001905
+100126301 MIR509-2 microRNA 509-2 ncRNA 9 0.001072
+100126302 MIR450B microRNA 450b ncRNA 2 0.0002382
+100126303 MIR890 microRNA 890 ncRNA 16 0.001905
+100126304 MIR891B microRNA 891b ncRNA 10 0.001191
+100126306 MIR888 microRNA 888 ncRNA 9 0.001072
+100126307 MIR892B microRNA 892b ncRNA 6 0.0007145
+100126308 MIR541 microRNA 541 ncRNA 8 0.0009527
+100126310 MIR876 microRNA 876 ncRNA 5 0.0005955
+100126315 MIR665 microRNA 665 ncRNA 6 0.0007145
+100126316 MIR873 microRNA 873 ncRNA 2 0.0002382
+100126317 MIR374B microRNA 374b ncRNA 1 0.0001191
+100126318 MIR301B microRNA 301b ncRNA 2 0.0002382
+100126319 MIR216B microRNA 216b ncRNA 7 0.0008336
+100126320 MIR920 microRNA 920 ncRNA 10 0.001191
+100126335 MIR543 microRNA 543 ncRNA 23 0.002739
+100126337 MIR509-3 microRNA 509-3 ncRNA 15 0.001786
+100126341 MIR891A microRNA 891a ncRNA 11 0.00131
+100126342 MIR892A microRNA 892a ncRNA 10 0.001191
+100126345 MIR889 microRNA 889 ncRNA 4 0.0004764
+100126354 MIR297 microRNA 297 ncRNA 8 0.0009527
+100126355 MIR365A microRNA 365a ncRNA 5 0.0005955
+100127952 ATF4P4 activating transcription factor 4 pseudogene 4 pseudo 100 0.01191
+100127983 C8orf88 chromosome 8 open reading frame 88 protein-coding 1 0.0001191
+100128252 ZNF667-AS1 ZNF667 antisense RNA 1 (head to head) ncRNA 15 0.001786
+100128264 HTR5A-AS1 HTR5A antisense RNA 1 ncRNA 42 0.005002
+100128327 TRAPPC3L trafficking protein particle complex 3 like protein-coding 21 0.002501
+100128378 LINC00696 long intergenic non-protein coding RNA 696 ncRNA 10 0.001191
+100128496 C20orf78 chromosome 20 open reading frame 78 protein-coding 8 0.0009527
+100128537 MIR29B2CHG MIR29B2 and MIR29C host gene ncRNA 11 0.00131
+100128553 CTAGE4 CTAGE family member 4 protein-coding 25 0.002977
+100128569 C19orf71 chromosome 19 open reading frame 71 protein-coding 13 0.001548
+100128675 HPN-AS1 HPN antisense RNA 1 ncRNA 2 0.0002382
+100128731 OST4 oligosaccharyltransferase complex subunit 4, non-catalytic protein-coding 4 0.0004764
+100128788 SRRM2-AS1 SRRM2 antisense RNA 1 ncRNA 1 0.0001191
+100128890 FAM66B family with sequence similarity 66 member B ncRNA 2 0.0002382
+100128927 ZBTB42 zinc finger and BTB domain containing 42 protein-coding 19 0.002263
+100128946 LINC01310 long intergenic non-protein coding RNA 1310 ncRNA 19 0.002263
+100129128 KHDC1L KH domain containing 1 like protein-coding 15 0.001786
+100129271 C1orf68 chromosome 1 open reading frame 68 protein-coding 15 0.001786
+100129482 ZNF37BP zinc finger protein 37B, pseudogene pseudo 106 0.01262
+100129543 ZNF730 zinc finger protein 730 protein-coding 95 0.01131
+100129583 FAM47E family with sequence similarity 47 member E protein-coding 29 0.003454
+100129696 TFP1 transferrin pseudogene 1 pseudo 2 0.0002382
+100129792 CCDC152 coiled-coil domain containing 152 protein-coding 16 0.001905
+100129794 SLC25A21-AS1 SLC25A21 antisense RNA 1 ncRNA 6 0.0007145
+100129842 ZNF737 zinc finger protein 737 protein-coding 104 0.01239
+100129933 GLYATL1P2 glycine-N-acyltransferase like 1 pseudogene 2 pseudo 8 0.0009527
+100130017 FTLP10 ferritin light chain pseudogene 10 pseudo 11 0.00131
+100130274 CCDC166 coiled-coil domain containing 166 protein-coding 18 0.002144
+100130311 C17orf107 chromosome 17 open reading frame 107 protein-coding 11 0.00131
+100130418 CECR7 cat eye syndrome chromosome region, candidate 7 (non-protein coding) ncRNA 17 0.002025
+100130613 PRR32 proline rich 32 protein-coding 34 0.004049
+100130717 HDHD5-AS1 HDHD5 antisense RNA 1 ncRNA 4 0.0004764
+100130733 LRRC70 leucine rich repeat containing 70 protein-coding 40 0.004764
+100130742 LRRC69 leucine rich repeat containing 69 protein-coding 30 0.003573
+100130771 EFCAB10 EF-hand calcium binding domain 10 protein-coding 7 0.0008336
+100130776 AGAP2-AS1 AGAP2 antisense RNA 1 ncRNA 16 0.001905
+100130889 PSORS1C3 psoriasis susceptibility 1 candidate 3 (non-protein coding) ncRNA 4 0.0004764
+100130890 TSTD3 thiosulfate sulfurtransferase (rhodanese)-like domain containing 3 protein-coding 7 0.0008336
+100130933 SMIM6 small integral membrane protein 6 protein-coding 92 0.01096
+100130934 ZNF663P zinc finger protein 663, pseudogene pseudo 22 0.00262
+100130958 SYCE1L synaptonemal complex central element protein 1 like protein-coding 11 0.00131
+100130988 SPATA48 spermatogenesis associated 48 protein-coding 44 0.00524
+100131089 SRP14-AS1 SRP14 antisense RNA1 (head to head) ncRNA 9 0.001072
+100131137 BSPH1 binder of sperm protein homolog 1 protein-coding 15 0.001786
+100131187 TSTD1 thiosulfate sulfurtransferase like domain containing 1 protein-coding 36 0.004287
+100131211 NEMP2 nuclear envelope integral membrane protein 2 protein-coding 24 0.002858
+100131320 RAB6C-AS1 RAB6C antisense RNA 1 ncRNA 21 0.002501
+100131378 C11orf91 chromosome 11 open reading frame 91 protein-coding 2 0.0002382
+100131390 SP9 Sp9 transcription factor protein-coding 8 0.0009527
+100131439 CD300LD CD300 molecule like family member d protein-coding 23 0.002739
+100131551 LINC00887 long intergenic non-protein coding RNA 887 ncRNA 7 0.0008336
+100131755 ARMCX4 armadillo repeat containing, X-linked 4 protein-coding 10 0.001191
+100131801 PET100 PET100 homolog protein-coding 6 0.0007145
+100131816 UBE2DNL ubiquitin conjugating enzyme E2 D N-terminal like (pseudogene) pseudo 1 0.0001191
+100131827 ZNF717 zinc finger protein 717 protein-coding 32 0.003811
+100131863 RPS18P5 ribosomal protein S18 pseudogene 5 pseudo 20 0.002382
+100131897 FAM196B family with sequence similarity 196 member B protein-coding 52 0.006193
+100131902 KRTAP25-1 keratin associated protein 25-1 protein-coding 19 0.002263
+100131997 FAM27E3 family with sequence similarity 27 member E3 ncRNA 7 0.0008336
+100131998 RRN3P3 RRN3 homolog, RNA polymerase I transcription factor pseudogene 3 pseudo 34 0.004049
+100132169 WASIR2 WASH and IL9R antisense RNA 2 ncRNA 9 0.001072
+100132247 NPIPB5 nuclear pore complex interacting protein family member B5 protein-coding 21 0.002501
+100132288 TEKT4P2 tektin 4 pseudogene 2 pseudo 35 0.004168
+100132386 KRTAP4-9 keratin associated protein 4-9 protein-coding 34 0.004049
+100132396 ZNF705B zinc finger protein 705B protein-coding 9 0.001072
+100132403 FAM157B family with sequence similarity 157 member B (non-protein coding) ncRNA 6 0.0007145
+100132406 NBPF10 NBPF member 10 protein-coding 135 0.01608
+100132476 KRTAP4-7 keratin associated protein 4-7 protein-coding 24 0.002858
+100132565 GOLGA8F golgin A8 family member F protein-coding 13 0.001548
+100132596 XGY2 Xg pseudogene, Y-linked 2 pseudo 36 0.004287
+100132707 PAXIP1-AS2 PAXIP1 antisense RNA 2 ncRNA 6 0.0007145
+100132708 CYP4F30P cytochrome P450 family 4 subfamily F member 30, pseudogene pseudo 6 0.0007145
+100132923 FAM66D family with sequence similarity 66 member D ncRNA 3 0.0003573
+100132948 FAM27C family with sequence similarity 27 member C ncRNA 2 0.0002382
+100133036 FAM95B1 family with sequence similarity 95 member B1 ncRNA 17 0.002025
+100133161 LINC01001 long intergenic non-protein coding RNA 1001 ncRNA 1 0.0001191
+100133163 BCRP7 breakpoint cluster region pseudogene 7 pseudo 38 0.004525
+100133204 C9orf147 chromosome 9 open reading frame 147 protein-coding 2 0.0002382
+100133308 RSU1P2 Ras suppressor protein 1 pseudogene 2 pseudo 44 0.00524
+100133545 MRPL23-AS1 MRPL23 antisense RNA 1 ncRNA 13 0.001548
+100133991 MAP3K14-AS1 MAP3K14 antisense RNA 1 ncRNA 21 0.002501
+100134259 LINC01119 long intergenic non-protein coding RNA 1119 ncRNA 5 0.0005955
+100134934 TEN1 TEN1, CST complex subunit protein-coding 6 0.0007145
+100134938 UPK3BL1 uroplakin 3B like 1 protein-coding 3 0.0003573
+100137047 JMJD7 jumonji domain containing 7 protein-coding 12 0.001429
+100137049 PLA2G4B phospholipase A2 group IVB protein-coding 72 0.008574
+100141515 C17orf99 chromosome 17 open reading frame 99 protein-coding 18 0.002144
+100142659 CTAGE8 CTAGE family member 8 protein-coding 4 0.0004764
+100144596 LINC00029 long intergenic non-protein coding RNA 29 ncRNA 3 0.0003573
+100144748 KLLN killin, p53 regulated DNA replication inhibitor protein-coding 10 0.001191
+100151643 KRTAP20-4 keratin associated protein 20-4 protein-coding 5 0.0005955
+100169851 PATE3 prostate and testis expressed 3 protein-coding 8 0.0009527
+100170229 SRRM5 serine/arginine repetitive matrix 5 protein-coding 52 0.006193
+100170765 ERICH4 glutamate rich 4 protein-coding 9 0.001072
+100170841 EPOP elongin BC and polycomb repressive complex 2 associated protein protein-coding 8 0.0009527
+100188893 TOMM6 translocase of outer mitochondrial membrane 6 protein-coding 9 0.001072
+100188953 LINC00092 long intergenic non-protein coding RNA 92 ncRNA 4 0.0004764
+100190939 TPT1-AS1 TPT1 antisense RNA 1 ncRNA 8 0.0009527
+100190949 C5orf52 chromosome 5 open reading frame 52 protein-coding 23 0.002739
+100191040 C2CD4D C2 calcium dependent domain containing 4D protein-coding 11 0.00131
+100216479 FAR2P2 fatty acyl-CoA reductase 2 pseudogene 2 pseudo 8 0.0009527
+100216544 DNM1P47 dynamin 1 pseudogene 47 pseudo 108 0.01286
+100271702 LINC00940 long intergenic non-protein coding RNA 940 ncRNA 8 0.0009527
+100271715 ARHGEF33 Rho guanine nucleotide exchange factor 33 protein-coding 56 0.006669
+100271849 MEF2B myocyte enhancer factor 2B protein-coding 37 0.004406
+100271874 ZNRF2P2 zinc and ring finger 2 pseudogene 2 pseudo 7 0.0008336
+100271927 RASA4B RAS p21 protein activator 4B protein-coding 12 0.001429
+100272147 CMC4 C-X9-C motif containing 4 protein-coding 13 0.001548
+100272228 LINC00894 long intergenic non-protein coding RNA 894 ncRNA 4 0.0004764
+100287029 DDX11L10 DEAD/H-box helicase 11 like 10 pseudo 11 0.00131
+100287102 DDX11L1 DEAD/H-box helicase 11 like 1 pseudo 11 0.00131
+100287177 EML2-AS1 EML2 antisense RNA 1 ncRNA 2 0.0002382
+100287284 MANSC4 MANSC domain containing 4 protein-coding 29 0.003454
+100287362 PRSS46P serine protease 46, pseudogene pseudo 4 0.0004764
+100287364 USP17L18 ubiquitin specific peptidase 17-like family member 18 protein-coding 2 0.0002382
+100287366 OSTM1-AS1 OSTM1 antisense RNA 1 ncRNA 8 0.0009527
+100287399 POTEB2 POTE ankyrin domain family member B2 protein-coding 46 0.005478
+100287569 LINC00173 long intergenic non-protein coding RNA 173 ncRNA 22 0.00262
+100287639 MTHFD2P1 methylenetetrahydrofolate dehydrogenase (NADP+ dependent) 2, methenyltetrahydrofolate cyclohydrolase pseudogene 1 pseudo 108 0.01286
+100287718 ANKRD66 ankyrin repeat domain 66 protein-coding 12 0.001429
+100287932 TIMM23 translocase of inner mitochondrial membrane 23 protein-coding 10 0.001191
+100288142 NBPF20 NBPF member 20 protein-coding 46 0.005478
+100288332 NPIPA5 nuclear pore complex interacting protein family member A5 protein-coding 19 0.002263
+100288380 ULK4P2 ULK4 pseudogene 2 pseudo 1 0.0001191
+100288413 ERVMER34-1 endogenous retrovirus group MER34 member 1, envelope protein-coding 34 0.004049
+100288486 DDX11L9 DEAD/H-box helicase 11 like 9 pseudo 1 0.0001191
+100288797 TMEM239 transmembrane protein 239 protein-coding 12 0.001429
+100288897 FAR2P3 fatty acyl-CoA reductase 2 pseudogene 3 pseudo 9 0.001072
+100289017 MOXD2P monooxygenase, DBH-like 2, pseudogene pseudo 18 0.002144
+100289255 TMEM238L transmembrane protein 238 like ncRNA 8 0.0009527
+100289635 ZNF605 zinc finger protein 605 protein-coding 21 0.002501
+100289678 ZNF783 zinc finger family member 783 protein-coding 78 0.009289
+100293516 ZNF587B zinc finger protein 587B protein-coding 33 0.00393
+100302112 MIR1284 microRNA 1284 ncRNA 8 0.0009527
+100302114 MIR513C microRNA 513c ncRNA 8 0.0009527
+100302115 MIR1468 microRNA 1468 ncRNA 6 0.0007145
+100302116 MIR1265 microRNA 1265 ncRNA 1 0.0001191
+100302123 MIR1275 microRNA 1275 ncRNA 2 0.0002382
+100302128 MIR1302-3 microRNA 1302-3 ncRNA 25 0.002977
+100302130 MIR1302-4 microRNA 1302-4 ncRNA 2 0.0002382
+100302140 MIR1302-6 microRNA 1302-6 ncRNA 3 0.0003573
+100302148 MIR1263 microRNA 1263 ncRNA 4 0.0004764
+100302157 MIR1185-1 microRNA 1185-1 ncRNA 10 0.001191
+100302161 MIR1205 microRNA 1205 ncRNA 3 0.0003573
+100302164 MIR2113 microRNA 2113 ncRNA 4 0.0004764
+100302168 MIR1257 microRNA 1257 ncRNA 5 0.0005955
+100302169 MIR320D2 microRNA 320d-2 ncRNA 4 0.0004764
+100302175 MIR1207 microRNA 1207 ncRNA 2 0.0002382
+100302177 MIR1269A microRNA 1269a ncRNA 13 0.001548
+100302191 MIR548I4 microRNA 548i-4 ncRNA 6 0.0007145
+100302204 MIR548I1 microRNA 548i-1 ncRNA 5 0.0005955
+100302205 MIR1283-2 microRNA 1283-2 ncRNA 18 0.002144
+100302208 MIR1253 microRNA 1253 ncRNA 1 0.0001191
+100302209 MIR1185-2 microRNA 1185-2 ncRNA 12 0.001429
+100302212 MIR1324 microRNA 1324 ncRNA 27 0.003215
+100302227 MIR1302-1 microRNA 1302-1 ncRNA 1 0.0001191
+100302228 MIR1261 microRNA 1261 ncRNA 5 0.0005955
+100302235 MIR1179 microRNA 1179 ncRNA 6 0.0007145
+100302250 MIR1197 microRNA 1197 ncRNA 10 0.001191
+100302255 MIR1323 microRNA 1323 ncRNA 7 0.0008336
+100302259 MIR1202 microRNA 1202 ncRNA 3 0.0003573
+100302265 MIR1283-1 microRNA 1283-1 ncRNA 14 0.001667
+100302270 MIR1305 microRNA 1305 ncRNA 2 0.0002382
+100302277 MIR548I2 microRNA 548i-2 ncRNA 14 0.001667
+100302281 MIR1208 microRNA 1208 ncRNA 6 0.0007145
+100302284 MIR1303 microRNA 1303 ncRNA 9 0.001072
+100302289 MIR1251 microRNA 1251 ncRNA 10 0.001191
+100302652 GPR75-ASB3 GPR75-ASB3 readthrough protein-coding 1 0.0001191
+100302736 TMED7-TICAM2 TMED7-TICAM2 readthrough protein-coding 41 0.004883
+100303755 PET117 PET117 homolog protein-coding 4 0.0004764
+100309464 OTX2-AS1 OTX2 antisense RNA 1 (head to head) ncRNA 1 0.0001191
+100310812 SPDYE2B speedy/RINGO cell cycle regulator family member E2B protein-coding 1 0.0001191
+100313772 MIR548M microRNA 548m ncRNA 6 0.0007145
+100313774 MIR302E microRNA 302e ncRNA 3 0.0003573
+100313777 MIR670 microRNA 670 ncRNA 1 0.0001191
+100313778 MIR759 microRNA 759 ncRNA 2 0.0002382
+100313779 MIR2117 microRNA 2117 ncRNA 3 0.0003573
+100313822 MIR513B microRNA 513b ncRNA 9 0.001072
+100313824 MIR663B microRNA 663b ncRNA 13 0.001548
+100313839 MIR2114 microRNA 2114 ncRNA 1 0.0001191
+100313884 MIR548H4 microRNA 548h-4 ncRNA 5 0.0005955
+100313938 MIR548G microRNA 548g ncRNA 4 0.0004764
+100316904 SAP25 Sin3A associated protein 25 protein-coding 10 0.001191
+100379661 GRIK1-AS2 GRIK1 antisense RNA 2 ncRNA 3 0.0003573
+100420005 FAR2P4 fatty acyl-CoA reductase 2 pseudogene 4 pseudo 3 0.0003573
+100422823 MIR4300 microRNA 4300 ncRNA 3 0.0003573
+100422843 MIR4293 microRNA 4293 ncRNA 2 0.0002382
+100422844 MIR3118-3 microRNA 3118-3 ncRNA 8 0.0009527
+100422847 MIR514B microRNA 514b ncRNA 5 0.0005955
+100422857 MIR4318 microRNA 4318 ncRNA 2 0.0002382
+100422867 MIR378C microRNA 378c ncRNA 1 0.0001191
+100422878 MIR3168 microRNA 3168 ncRNA 1 0.0001191
+100422883 MIR4325 microRNA 4325 ncRNA 2 0.0002382
+100422887 MIR4280 microRNA 4280 ncRNA 1 0.0001191
+100422898 MIR4255 microRNA 4255 ncRNA 2 0.0002382
+100422920 MIR548X microRNA 548x ncRNA 2 0.0002382
+100422930 MIR4330 microRNA 4330 ncRNA 1 0.0001191
+100422938 MIR3142 microRNA 3142 ncRNA 2 0.0002382
+100422939 MIR3147 microRNA 3147 ncRNA 7 0.0008336
+100422949 MIR3118-2 microRNA 3118-2 ncRNA 3 0.0003573
+100422950 MIR3141 microRNA 3141 ncRNA 1 0.0001191
+100422951 MIR3144 microRNA 3144 ncRNA 2 0.0002382
+100422954 MIR4309 microRNA 4309 ncRNA 1 0.0001191
+100422959 MIR4268 microRNA 4268 ncRNA 1 0.0001191
+100422960 MIR3179-1 microRNA 3179-1 ncRNA 1 0.0001191
+100422964 MIR3150A microRNA 3150a ncRNA 3 0.0003573
+100422966 MIR4277 microRNA 4277 ncRNA 3 0.0003573
+100422973 MIR3169 microRNA 3169 ncRNA 1 0.0001191
+100422988 MIR3156-1 microRNA 3156-1 ncRNA 2 0.0002382
+100422994 MIR4267 microRNA 4267 ncRNA 1 0.0001191
+100422996 MIR4262 microRNA 4262 ncRNA 2 0.0002382
+100423008 MIR3118-1 microRNA 3118-1 ncRNA 4 0.0004764
+100423015 MIR4289 microRNA 4289 ncRNA 1 0.0001191
+100423018 MIR3156-3 microRNA 3156-3 ncRNA 3 0.0003573
+100423021 MIR4298 microRNA 4298 ncRNA 2 0.0002382
+100423026 MIR4299 microRNA 4299 ncRNA 1 0.0001191
+100423035 MIR4313 microRNA 4313 ncRNA 3 0.0003573
+100423038 MIR466 microRNA 466 ncRNA 2 0.0002382
+100423062 IGLL5 immunoglobulin lambda like polypeptide 5 protein-coding 42 0.005002
+100463486 MTRNR2L8 MT-RNR2 like 8 protein-coding 1 0.0001191
+100499227 USP2-AS1 USP2 antisense RNA 1 (head to head) ncRNA 8 0.0009527
+100499405 LINC00987 long intergenic non-protein coding RNA 987 ncRNA 25 0.002977
+100499466 LINC00674 long intergenic non-protein coding RNA 674 ncRNA 4 0.0004764
+100499483 CCDC180 coiled-coil domain containing 180 protein-coding 175 0.02084
+100500802 MIR3685 microRNA 3685 ncRNA 3 0.0003573
+100505381 MMD2 Miyoshi muscular dystrophy 2 unknown 52 0.006193
+100505385 IQCJ-SCHIP1 IQCJ-SCHIP1 readthrough protein-coding 58 0.006907
+100505621 C11orf72 chromosome 11 open reading frame 72 (putative) ncRNA 15 0.001786
+100505741 SPATA1 spermatogenesis associated 1 protein-coding 33 0.00393
+100505876 CEBPZOS CEBPZ opposite strand protein-coding 15 0.001786
+100505879 KIF25-AS1 KIF25 antisense RNA 1 ncRNA 1 0.0001191
+100506012 PPP5D1 PPP5 tetratricopeptide repeat domain containing 1 protein-coding 16 0.001905
+100506084 ARL17B ADP ribosylation factor like GTPase 17B protein-coding 3 0.0003573
+100506144 TMEM35B transmembrane protein 35B protein-coding 2 0.0002382
+100506243 KRBOX1 KRAB box domain containing 1 protein-coding 7 0.0008336
+100506540 SPTY2D1OS SPTY2D1 opposite strand protein-coding 7 0.0008336
+100506581 C16orf95 chromosome 16 open reading frame 95 protein-coding 10 0.001191
+100506658 OCLN occludin protein-coding 49 0.005835
+100506736 SLFN12L schlafen family member 12 like protein-coding 79 0.009408
+100506742 CASP12 caspase 12 (gene/pseudogene) protein-coding 17 0.002025
+100506874 LINC00933 long intergenic non-protein coding RNA 933 ncRNA 14 0.001667
+100506930 LINC00665 long intergenic non-protein coding RNA 665 ncRNA 5 0.0005955
+100506965 PWAR6 Prader Willi/Angelman region RNA 6 ncRNA 9 0.001072
+100507027 MRLN myoregulin protein-coding 20 0.002382
+100507043 TUNAR TCL1 upstream neural differentiation-associated RNA ncRNA 7 0.0008336
+100507203 SMLR1 small leucine rich protein 1 protein-coding 2 0.0002382
+100507206 LINC00943 long intergenic non-protein coding RNA 943 ncRNA 21 0.002501
+100507246 SNHG16 small nucleolar RNA host gene 16 ncRNA 2 0.0002382
+100507261 MIR670HG MIR670 host gene ncRNA 3 0.0003573
+100507321 ERVK13-1 endogenous retrovirus group K13 member 1 ncRNA 32 0.003811
+100507410 C1QTNF1-AS1 C1QTNF1 antisense RNA 1 ncRNA 4 0.0004764
+100507436 MICA MHC class I polypeptide-related sequence A protein-coding 27 0.003215
+100507444 PPP1R2P1 protein phosphatase 1 regulatory inhibitor subunit 2 pseudogene 1 pseudo 32 0.003811
+100507582 BHLHE40-AS1 BHLHE40 antisense RNA 1 ncRNA 5 0.0005955
+100507605 LINC00837 long intergenic non-protein coding RNA 837 ncRNA 5 0.0005955
+100507607 NPIPB9 nuclear pore complex interacting protein family member B9 protein-coding 1 0.0001191
+100526664 LY75-CD302 LY75-CD302 readthrough protein-coding 174 0.02072
+100526693 ARPC4-TTLL3 ARPC4-TTLL3 readthrough protein-coding 2 0.0002382
+100526737 RBM14-RBM4 RBM14-RBM4 readthrough protein-coding 38 0.004525
+100526740 ATP5MF-PTCD1 ATP5MF-PTCD1 readthrough protein-coding 88 0.01048
+100526760 ABHD14A-ACY1 ABHD14A-ACY1 readthrough protein-coding 1 0.0001191
+100526767 RNF103-CHMP3 RNF103-CHMP3 readthrough protein-coding 20 0.002382
+100526771 SMIM35 small integral membrane protein 35 protein-coding 2 0.0002382
+100526772 TMEM110-MUSTN1 TMEM110-MUSTN1 readthrough protein-coding 13 0.001548
+100526773 EPPIN-WFDC6 EPPIN-WFDC6 readthrough protein-coding 6 0.0007145
+100526783 C15orf38-AP3S2 C15orf38-AP3S2 readthrough protein-coding 37 0.004406
+100526835 FPGT-TNNI3K FPGT-TNNI3K readthrough protein-coding 132 0.01572
+100526842 RPL17-C18orf32 RPL17-C18orf32 readthrough protein-coding 9 0.001072
+100527943 TGIF2-RAB5IF TGIF2-RAB5IF readthrough protein-coding 2 0.0002382
+100527978 TMEM56-RWDD3 TMEM56-RWDD3 readthrough protein-coding 1 0.0001191
+100528020 FAM187A family with sequence similarity 187 member A protein-coding 14 0.001667
+100528021 ST20-MTHFS ST20-MTHFS readthrough protein-coding 19 0.002263
+100528030 POC1B-GALNT4 POC1B-GALNT4 readthrough protein-coding 3 0.0003573
+100528064 NEDD8-MDP1 NEDD8-MDP1 readthrough protein-coding 15 0.001786
+100529063 BCL2L2-PABPN1 BCL2L2-PABPN1 readthrough protein-coding 18 0.002144
+100529097 RPL36A-HNRNPH2 RPL36A-HNRNPH2 readthrough protein-coding 16 0.001905
+100529144 CORO7-PAM16 CORO7-PAM16 readthrough protein-coding 6 0.0007145
+100529207 RAD51L3-RFFL RAD51L3-RFFL readthrough ncRNA 13 0.001548
+100529211 TMEM256-PLSCR3 TMEM256-PLSCR3 readthrough (NMD candidate) ncRNA 18 0.002144
+100529241 HSPE1-MOB4 HSPE1-MOB4 readthrough protein-coding 17 0.002025
+100529251 CKLF-CMTM1 CKLF-CMTM1 readthrough protein-coding 1 0.0001191
+100529261 CHURC1-FNTB CHURC1-FNTB readthrough protein-coding 13 0.001548
+100532731 COMMD3-BMI1 COMMD3-BMI1 readthrough protein-coding 11 0.00131
+100532736 MINOS1-NBL1 MINOS1-NBL1 readthrough protein-coding 21 0.002501
+100533181 FXYD6-FXYD2 FXYD6-FXYD2 readthrough protein-coding 2 0.0002382
+100533182 SEC24B-AS1 SEC24B antisense RNA 1 ncRNA 6 0.0007145
+100533184 ARHGAP19-SLIT1 ARHGAP19-SLIT1 readthrough (NMD candidate) ncRNA 2 0.0002382
+100533467 BIVM-ERCC5 BIVM-ERCC5 readthrough protein-coding 150 0.01786
+100533496 TVP23C-CDRT4 TVP23C-CDRT4 readthrough protein-coding 6 0.0007145
+100533952 RBAK-RBAKDN RBAK-RBAKDN readthrough protein-coding 4 0.0004764
+100534592 URGCP-MRPS24 URGCP-MRPS24 readthrough protein-coding 1 0.0001191
+100534599 ISY1-RAB43 ISY1-RAB43 readthrough protein-coding 1 0.0001191
+100616668 TPTE2P5 transmembrane phosphoinositide 3-phosphatase and tensin homolog 2 pseudogene 5 pseudo 4 0.0004764
+100631383 FAM47E-STBD1 FAM47E-STBD1 readthrough protein-coding 28 0.003335
+100652740 PYCARD-AS1 PYCARD antisense RNA 1 ncRNA 4 0.0004764
+100652856 LINC00408 long intergenic non-protein coding RNA 408 ncRNA 2 0.0002382
+100750245 SNAPC5P1 small nuclear RNA activating complex polypeptide 5 pseudogene 1 pseudo 7 0.0008336
+100820829 MYZAP myocardial zonula adherens protein protein-coding 23 0.002739
+100861412 FSBP fibrinogen silencer binding protein protein-coding 16 0.001905
+100861547 LINC00566 long intergenic non-protein coding RNA 566 ncRNA 1 0.0001191
+100873536 RNA5SP283 RNA, 5S ribosomal pseudogene 283 pseudo 3 0.0003573
+100873571 RNA5-8SP2 RNA, 5.8S ribosomal pseudogene 2 pseudo 12 0.001429
+100873790 FHP1 fumarate hydratase pseudogene 1 pseudo 21 0.002501
+100874057 LINC00283 long intergenic non-protein coding RNA 283 ncRNA 58 0.006907
+100874222 RNF219-AS1 RNF219 antisense RNA 1 ncRNA 5 0.0005955
+100874261 LINC00854 long intergenic non-protein coding RNA 854 ncRNA 5 0.0005955
+100874518 ATP8A2P3 ATPase phospholipid transporting 8A2 pseudogene 3 pseudo 1 0.0001191
+100885848 PTGES3L prostaglandin E synthase 3 like protein-coding 12 0.001429
+100885850 PTGES3L-AARSD1 PTGES3L-AARSD1 readthrough protein-coding 15 0.001786
+100887750 MRPS31P5 mitochondrial ribosomal protein S31 pseudogene 5 pseudo 39 0.004645
+100996279 LINC00269 long intergenic non-protein coding RNA 269 ncRNA 5 0.0005955
+100996295 DNAH17-AS1 DNAH17 antisense RNA 1 ncRNA 11 0.00131
+100996307 LIPE-AS1 LIPE antisense RNA 1 ncRNA 3 0.0003573
+100996331 POTEB POTE ankyrin domain family member B protein-coding 9 0.001072
+100996465 LCA10 lung carcinoma-associated 10 ncRNA 16 0.001905
+100996485 C5orf66 chromosome 5 open reading frame 66 protein-coding 9 0.001072
+100996541 FAM157C family with sequence similarity 157 member C (non-protein coding) ncRNA 1 0.0001191
+100996928 C7orf55-LUC7L2 C7orf55-LUC7L2 readthrough protein-coding 6 0.0007145
+100996939 PYURF PIGY upstream reading frame protein-coding 7 0.0008336
+101059918 GOLGA8R golgin A8 family member R protein-coding 1 0.0001191
+101060171 ARMC4P1 armadillo repeat containing 4 pseudogene 1 pseudo 22 0.00262
+101060321 TBC1D3G TBC1 domain family member 3G protein-coding 15 0.001786
+101101776 BMS1P17 BMS1, ribosome biogenesis factor pseudogene 17 pseudo 7 0.0008336
+101290506 LRRFIP1P1 LRR binding FLII interacting protein 1 pseudogene 1 pseudo 12 0.001429
+101927601 GOLGA6L19 golgin A6 family-like 19 protein-coding 4 0.0004764
+101927722 LINC01644 long intergenic non-protein coding RNA 1644 ncRNA 3 0.0003573
+102238594 SPACA6P-AS SPACA6P antisense RNA ncRNA 33 0.00393
+102464831 MIR6080 microRNA 6080 ncRNA 62 0.007384
102466227 MIR7162 microRNA 7162 ncRNA 0 0
-102466515 MIR1199 microRNA 1199 ncRNA 7 0.0008345
-102682016 LINC01159 long intergenic non-protein coding RNA 1159 ncRNA 4 0.0004769
-102723489 LINC00205 long intergenic non-protein coding RNA 205 ncRNA 15 0.001788
-102723508 KANTR KDM5C adjacent transcript ncRNA 32 0.003815
-102724473 GAGE10 G antigen 10 protein-coding 20 0.002384
-102724971 LOC102724971 putative V-set and immunoglobulin domain-containing-like protein IGHV4OR15-8 protein-coding 13 0.00155
-102902672 LINC00843 long intergenic non-protein coding RNA 843 ncRNA 1 0.0001192
-104472715 SNHG14 small nucleolar RNA host gene 14 ncRNA 9 0.001073
-105372481 ERVK3-1 endogenous retrovirus group K3 member 1 ncRNA 8 0.0009537
-105375355 UPK3B uroplakin 3B protein-coding 20 0.002384
-105379427 ZNF73 zinc finger protein 73 pseudo 62 0.007392
-106479339 RN7SL319P RNA, 7SL, cytoplasmic 319, pseudogene pseudo 1 0.0001192
-106479938 RNU6-840P RNA, U6 small nuclear 840, pseudogene pseudo 24 0.002861
-106660612 LINC00680 long intergenic non-protein coding RNA 680 ncRNA 4 0.0004769
-107133494 CYP4F27P cytochrome P450 family 4 subfamily F member 27, pseudogene pseudo 3 0.0003577
-107133516 SMURF2P1 SMAD specific E3 ubiquitin protein ligase 2 pseudogene 1 pseudo 6 0.0007153
-107984923 LOC107984923 eukaryotic translation initiation factor 1A, X-chromosomal protein-coding 44 0.005246
-109731405 PDXDC2P pyridoxal dependent decarboxylase domain containing 2, pseudogene pseudo 82 0.009776
+102466515 MIR1199 microRNA 1199 ncRNA 7 0.0008336
+102682016 LINC01159 long intergenic non-protein coding RNA 1159 ncRNA 4 0.0004764
+102723489 LINC00205 long intergenic non-protein coding RNA 205 ncRNA 15 0.001786
+102723508 KANTR KDM5C adjacent transcript ncRNA 32 0.003811
+102724473 GAGE10 G antigen 10 protein-coding 20 0.002382
+102724971 LOC102724971 putative V-set and immunoglobulin domain-containing-like protein IGHV4OR15-8 protein-coding 13 0.001548
+102902672 LINC00843 long intergenic non-protein coding RNA 843 ncRNA 1 0.0001191
+104472715 SNHG14 small nucleolar RNA host gene 14 ncRNA 9 0.001072
+105372481 ERVK3-1 endogenous retrovirus group K3 member 1 ncRNA 8 0.0009527
+105375355 UPK3B uroplakin 3B protein-coding 20 0.002382
+105379427 ZNF73 zinc finger protein 73 pseudo 62 0.007384
+106479339 RN7SL319P RNA, 7SL, cytoplasmic 319, pseudogene pseudo 1 0.0001191
+106479938 RNU6-840P RNA, U6 small nuclear 840, pseudogene pseudo 24 0.002858
+106660612 LINC00680 long intergenic non-protein coding RNA 680 ncRNA 4 0.0004764
+107133494 CYP4F27P cytochrome P450 family 4 subfamily F member 27, pseudogene pseudo 3 0.0003573
+107133516 SMURF2P1 SMAD specific E3 ubiquitin protein ligase 2 pseudogene 1 pseudo 6 0.0007145
+107984923 LOC107984923 eukaryotic translation initiation factor 1A, X-chromosomal protein-coding 44 0.00524
+109731405 PDXDC2P pyridoxal dependent decarboxylase domain containing 2, pseudogene pseudo 82 0.009765
diff --git a/data/mutation-matrix.tsv.bz2 b/data/mutation-matrix.tsv.bz2
index 2505909..f461624 100644
--- a/data/mutation-matrix.tsv.bz2
+++ b/data/mutation-matrix.tsv.bz2
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:102e97cd6becf8a3d400cc5207de7fc5519457fc08c5f60709fac6c3b1dd19f7
-size 2068111
+oid sha256:20c2bdab36f270ef1a3f13fc383f8f0da08044a7f8c07be46757618b51ddbb29
+size 2068527
diff --git a/data/samples.tsv b/data/samples.tsv
index b247181..0cf785b 100644
--- a/data/samples.tsv
+++ b/data/samples.tsv
@@ -1281,6 +1281,7 @@ TCGA-86-8674-01 TCGA-86-8674 LUAD lung adenocarcinoma 50 Male White Stage IIA L
TCGA-86-A456-01 TCGA-86-A456 LUAD lung adenocarcinoma 78 Female Asian Stage IA Lung Adenocarcinoma 2012 -28533 Alive TUMOR FREE 896 Complete Remission/Response 0 896 0 896 0 896 0 896 0 896 Primary Solid Tumor 328
TCGA-86-A4JF-01 TCGA-86-A4JF LUAD lung adenocarcinoma 56 Male White Stage IIB Lung Adenocarcinoma 2012 -20491 Dead WITH TUMOR 737 Distant Metastasis 436 Complete Remission/Response 1 737 1 737 1 737 1 436 1 436 Primary Solid Tumor 1161
TCGA-86-A4P7-01 TCGA-86-A4P7 LUAD lung adenocarcinoma 63 Female White Stage IB Lung Adenocarcinoma 2012 -23330 Alive TUMOR FREE 415 Complete Remission/Response 0 415 0 415 0 415 0 415 0 415 Primary Solid Tumor 69
+TCGA-86-A4P8-01 TCGA-86-A4P8 LUAD lung adenocarcinoma 59 Female White Stage IIIA Lung Adenocarcinoma 2012 -21738 Alive TUMOR FREE 805 Complete Remission/Response 0 805 0 805 0 805 0 805 0 805 Primary Solid Tumor 0
TCGA-90-7766-01 TCGA-90-7766 LUSC lung squamous cell carcinoma 66 Female White Stage IA Lung Squamous Cell Carcinoma 2011 -24354 Alive WITH TUMOR 289 Locoregional Recurrence 289 Progressive Disease 0 289 0 289 0 289 1 289 Primary Solid Tumor 107
TCGA-90-7767-01 TCGA-90-7767 LUSC lung squamous cell carcinoma 56 Male White Stage IIB Lung Squamous Cell Carcinoma 2011 -20534 Alive TUMOR FREE 89 [Unknown] 0 89 0 89 0 89 0 89 Primary Solid Tumor 98
TCGA-90-7769-01 TCGA-90-7769 LUSC lung squamous cell carcinoma 55 Male White Stage IIB Lung Squamous Cell Carcinoma 2011 -20276 Alive TUMOR FREE 358 Complete Remission/Response 0 358 0 358 0 358 0 358 0 358 Primary Solid Tumor 480
@@ -4602,6 +4603,7 @@ TCGA-E8-A3X7-01 TCGA-E8-A3X7 THCA thyroid carcinoma 57 Female White Stage IVA T
TCGA-E8-A413-01 TCGA-E8-A413 THCA thyroid carcinoma 38 Female Asian Stage I Thyroid Papillary Carcinoma - Classical/usual 2012 -13909 Alive TUMOR FREE 912 R0 0 912 0 912 0 912 0 912 0 912 Primary Solid Tumor 4
TCGA-E8-A414-01 TCGA-E8-A414 THCA thyroid carcinoma 45 Female Asian Stage III Thyroid Papillary Carcinoma - Classical/usual 2012 -16754 Alive TUMOR FREE 958 R0 0 958 0 958 0 958 0 958 0 958 Primary Solid Tumor 6
TCGA-E8-A415-01 TCGA-E8-A415 THCA thyroid carcinoma 39 Female Asian Stage I Thyroid Papillary Carcinoma - Classical/usual 2012 -14288 Alive TUMOR FREE 944 R0 0 944 0 944 0 944 0 944 0 944 Primary Solid Tumor 9
+TCGA-E8-A416-01 TCGA-E8-A416 THCA thyroid carcinoma 51 Female Asian Stage I Thyroid Papillary Carcinoma - Classical/usual 2012 -18932 Alive TUMOR FREE 952 R0 0 952 0 952 0 952 0 952 0 952 Primary Solid Tumor 0
TCGA-E8-A417-01 TCGA-E8-A417 THCA thyroid carcinoma 38 Female Asian Stage I Thyroid Papillary Carcinoma - Classical/usual 2012 -14019 Alive TUMOR FREE 938 R0 0 938 0 938 0 938 0 938 0 938 Primary Solid Tumor 27
TCGA-E8-A418-01 TCGA-E8-A418 THCA thyroid carcinoma 75 Female White Stage IVA Thyroid Papillary Carcinoma - Classical/usual 2011 -27737 Alive TUMOR FREE 92 RX 0 92 0 92 0 92 0 92 Primary Solid Tumor 31
TCGA-E8-A419-01 TCGA-E8-A419 THCA thyroid carcinoma 30 Female White Stage I Thyroid Papillary Carcinoma - Classical/usual 2012 -11306 Alive TUMOR FREE 774 R0 0 774 0 774 0 774 0 774 0 774 Primary Solid Tumor 6
@@ -5299,6 +5301,7 @@ TCGA-FA-A7Q1-01 TCGA-FA-A7Q1 DLBC diffuse large B-cell lymphoma 61 Female Asian
TCGA-FA-A82F-01 TCGA-FA-A82F DLBC diffuse large B-cell lymphoma 48 Female Asian Stage II Diffuse large B-cell lymphoma (DLBCL) NOS (any anatomic site nodal or extranodal) 2013 -17819 Alive TUMOR FREE 427 Complete Remission/Response 0 427 0 427 0 427 0 427 0 427 Primary Solid Tumor 150
TCGA-FA-A86F-01 TCGA-FA-A86F DLBC diffuse large B-cell lymphoma 64 Female White Stage III Diffuse large B-cell lymphoma (DLBCL) NOS (any anatomic site nodal or extranodal) 2013 -23641 Alive WITH TUMOR 553 Other, specify Inguinal, mediastinal, submandibular, hilar 150 Partial Remission/Response 0 553 0 553 0 553 1 150 Primary Solid Tumor 103
TCGA-FB-A4P5-01 TCGA-FB-A4P5 PAAD pancreatic adenocarcinoma 69 Female White Stage IIB Pancreas-Adenocarcinoma Ductal Type G2 2012 -25412 Dead WITH TUMOR 179 [Unknown] 1 179 1 179 1 179 1 179 Primary Solid Tumor 8
+TCGA-FB-A4P6-01 TCGA-FB-A4P6 PAAD pancreatic adenocarcinoma 54 Male White Stage IIB Pancreas-Adenocarcinoma Ductal Type G1 2012 -19904 Alive TUMOR FREE 767 Locoregional Recurrence 620 Complete Remission/Response 0 767 0 767 0 767 1 620 1 620 Primary Solid Tumor 0
TCGA-FB-A545-01 TCGA-FB-A545 PAAD pancreatic adenocarcinoma 72 Female White Stage IIB Pancreas-Adenocarcinoma Ductal Type G2 2012 -26635 Dead TUMOR FREE 732 Pancreatic Cancer Distant Metastasis Liver 378 Complete Remission/Response 1 732 1 732 1 732 1 378 1 378 Primary Solid Tumor 37
TCGA-FB-A5VM-01 TCGA-FB-A5VM PAAD pancreatic adenocarcinoma 74 Male White Stage IB Pancreas-Adenocarcinoma Ductal Type G3 2012 -27362 Dead WITH TUMOR 498 Pancreatic Cancer Distant Metastasis Liver 177 Progressive Disease 1 498 1 498 1 498 1 177 Primary Solid Tumor 46
TCGA-FB-A78T-01 TCGA-FB-A78T PAAD pancreatic adenocarcinoma 71 Female White Stage IIB Pancreas-Adenocarcinoma Ductal Type G2 2013 -26179 Dead 375 Pancreatic Cancer Complete Remission/Response 1 375 1 375 1 375 0 375 0 375 Primary Solid Tumor 41
@@ -5318,6 +5321,7 @@ TCGA-FC-7708-01 TCGA-FC-7708 PRAD prostate adenocarcinoma 52 Male Asian Prosta
TCGA-FC-7961-01 TCGA-FC-7961 PRAD prostate adenocarcinoma 62 Male White Prostate Adenocarcinoma Acinar Type 2011 -22888 Alive TUMOR FREE 469 Complete Remission/Response 0 469 0 469 0 469 0 469 0 469 Primary Solid Tumor 44
TCGA-FC-A4JI-01 TCGA-FC-A4JI PRAD prostate adenocarcinoma 70 Male Prostate Adenocarcinoma Acinar Type 2012 -25931 Alive TUMOR FREE 877 Complete Remission/Response 0 877 0 877 0 877 0 877 0 877 Primary Solid Tumor 25
TCGA-FC-A5OB-01 TCGA-FC-A5OB PRAD prostate adenocarcinoma 53 Male Prostate Adenocarcinoma Acinar Type 2012 -19413 Alive WITH TUMOR 680 [Unknown] 0 680 0 680 0 680 0 680 Primary Solid Tumor 24
+TCGA-FC-A66V-01 TCGA-FC-A66V PRAD prostate adenocarcinoma 74 Male Prostate Adenocarcinoma Acinar Type 2012 -27282 Alive TUMOR FREE 524 Complete Remission/Response 0 524 0 524 0 524 0 524 0 524 Primary Solid Tumor 0
TCGA-FC-A6HD-01 TCGA-FC-A6HD PRAD prostate adenocarcinoma 77 Male Prostate Adenocarcinoma Acinar Type 2013 -28197 Alive TUMOR FREE 789 Complete Remission/Response 0 789 0 789 0 789 0 789 0 789 Primary Solid Tumor 28
TCGA-FC-A8O0-01 TCGA-FC-A8O0 PRAD prostate adenocarcinoma 68 Male Prostate Adenocarcinoma Acinar Type 2013 -25115 Alive TUMOR FREE 616 Complete Remission/Response 0 616 0 616 0 616 0 616 0 616 Primary Solid Tumor 16
TCGA-FD-A3B3-01 TCGA-FD-A3B3 BLCA bladder urothelial carcinoma 74 Female White Stage III Muscle invasive urothelial carcinoma (pT2 or above) High Grade 2011 -27068 Dead TUMOR FREE 974 Complete Remission/Response 1 974 1 974 0 974 0 974 0 974 Primary Solid Tumor 162
@@ -5466,6 +5470,7 @@ TCGA-FP-7829-01 TCGA-FP-7829 STAD stomach adenocarcinoma 69 Male White Stage IIB
TCGA-FP-7916-01 TCGA-FP-7916 STAD stomach adenocarcinoma 77 Male Asian Stage IIIC Stomach, Adenocarcinoma, Diffuse Type G3 2011 -28475 Dead WITH TUMOR 428 Progressive Disease 1 428 1 428 1 428 1 428 Primary Solid Tumor 92
TCGA-FP-7998-01 TCGA-FP-7998 STAD stomach adenocarcinoma 77 Male White Stage IIIC Stomach, Adenocarcinoma, Diffuse Type G3 2011 -28302 Alive TUMOR FREE 678 Complete Remission/Response 0 678 0 678 0 678 0 678 0 678 Primary Solid Tumor 63
TCGA-FP-8099-01 TCGA-FP-8099 STAD stomach adenocarcinoma 79 Male White Stage IIA Stomach, Adenocarcinoma, Not Otherwise Specified (NOS) G2 2011 -29129 Alive TUMOR FREE 519 Complete Remission/Response 0 519 0 519 0 519 0 519 0 519 Primary Solid Tumor 119
+TCGA-FP-8209-01 TCGA-FP-8209 STAD stomach adenocarcinoma 49 Male White Stage IB Stomach, Adenocarcinoma, Diffuse Type G3 2005 -18171 Dead WITH TUMOR 1811 Stomach Cancer Distant Metastasis Other, specify pancreas 1676 Complete Remission/Response 1 1811 1 1811 1 1811 1 1676 1 1676 Primary Solid Tumor 0
TCGA-FP-8210-01 TCGA-FP-8210 STAD stomach adenocarcinoma 48 Male Asian Stage IIIA Stomach, Adenocarcinoma, Diffuse Type G3 2006 -17562 Dead WITH TUMOR 153 Stomach Cancer Progressive Disease 1 153 1 153 1 153 1 153 Primary Solid Tumor 6
TCGA-FP-8211-01 TCGA-FP-8211 STAD stomach adenocarcinoma 62 Male White Stage IIB Stomach, Adenocarcinoma, Not Otherwise Specified (NOS) G2 2011 -22957 Alive TUMOR FREE 413 Complete Remission/Response 0 413 0 413 0 413 0 413 0 413 Primary Solid Tumor 97
TCGA-FP-8631-01 TCGA-FP-8631 STAD stomach adenocarcinoma 68 Male White Stage IIIA Stomach, Intestinal Adenocarcinoma, Not Otherwise Specified (NOS) G2 2012 -24898 Alive TUMOR FREE 17 0 17 0 17 0 17 0 17 Primary Solid Tumor 88
@@ -5653,6 +5658,7 @@ TCGA-G9-6365-01 TCGA-G9-6365 PRAD prostate adenocarcinoma 71 Male White Prosta
TCGA-G9-6366-01 TCGA-G9-6366 PRAD prostate adenocarcinoma 61 Male White Prostate Adenocarcinoma Acinar Type 2009 -22428 Alive 1947 Complete Remission/Response 0 1947 0 1947 0 1947 0 1947 0 1947 Primary Solid Tumor 28
TCGA-G9-6367-01 TCGA-G9-6367 PRAD prostate adenocarcinoma 60 Male White Prostate Adenocarcinoma Acinar Type 2009 -22176 Alive WITH TUMOR 1222 Progressive Disease 0 1222 0 1222 0 1222 0 1222 Primary Solid Tumor 2
TCGA-G9-6369-01 TCGA-G9-6369 PRAD prostate adenocarcinoma 55 Male White Prostate Adenocarcinoma Acinar Type 2009 -20238 Alive TUMOR FREE 1215 Complete Remission/Response 0 1215 0 1215 0 1215 0 1215 0 1215 Primary Solid Tumor 28
+TCGA-G9-6370-01 TCGA-G9-6370 PRAD prostate adenocarcinoma 52 Male White Prostate Adenocarcinoma Acinar Type 2009 -19149 Alive TUMOR FREE 1156 Complete Remission/Response 0 1156 0 1156 0 1156 0 1156 0 1156 Primary Solid Tumor 0
TCGA-G9-6371-01 TCGA-G9-6371 PRAD prostate adenocarcinoma 58 Male White Prostate Adenocarcinoma Acinar Type 2009 -21365 Alive TUMOR FREE 1226 Complete Remission/Response 0 1226 0 1226 0 1226 0 1226 0 1226 Primary Solid Tumor 29
TCGA-G9-6373-01 TCGA-G9-6373 PRAD prostate adenocarcinoma 68 Male White Prostate Adenocarcinoma Acinar Type 2009 -24887 Alive TUMOR FREE 811 Complete Remission/Response 0 811 0 811 0 811 0 811 0 811 Primary Solid Tumor 21
TCGA-G9-6377-01 TCGA-G9-6377 PRAD prostate adenocarcinoma 61 Male White Prostate Adenocarcinoma Acinar Type 2009 -22419 Alive TUMOR FREE 958 Complete Remission/Response 0 958 0 958 0 958 0 958 0 958 Primary Solid Tumor 24
@@ -6133,6 +6139,7 @@ TCGA-IB-AAUR-01 TCGA-IB-AAUR PAAD pancreatic adenocarcinoma 67 Male White Stage
TCGA-IB-AAUS-01 TCGA-IB-AAUS PAAD pancreatic adenocarcinoma 84 Female White Stage IIB Pancreas-Adenocarcinoma Ductal Type G2 2013 -30684 Alive WITH TUMOR 225 0 225 0 225 0 225 0 225 Primary Solid Tumor 5
TCGA-IB-AAUU-01 TCGA-IB-AAUU PAAD pancreatic adenocarcinoma 35 Male White Stage IIB Pancreas-Adenocarcinoma Ductal Type G3 2013 -13127 Alive TUMOR FREE 245 Complete Remission/Response 0 245 0 245 0 245 0 245 0 245 Primary Solid Tumor 44
TCGA-IB-AAUV-01 TCGA-IB-AAUV PAAD pancreatic adenocarcinoma 49 Male White Stage IIB Pancreas-Adenocarcinoma Ductal Type G2 2013 -18059 Alive TUMOR FREE 404 Complete Remission/Response 0 404 0 404 0 404 0 404 0 404 Primary Solid Tumor 2
+TCGA-IB-AAUW-01 TCGA-IB-AAUW PAAD pancreatic adenocarcinoma 63 Female White Stage IIB Pancreas-Adenocarcinoma Ductal Type G3 2013 -23306 Dead WITH TUMOR 230 Locoregional Recurrence Tumor Bed 185 Complete Remission/Response 1 230 1 230 1 230 1 185 1 185 Primary Solid Tumor 0
TCGA-IC-A6RE-01 TCGA-IC-A6RE ESCA esophageal carcinoma 59 Male White Stage IIB Esophagus Adenocarcinoma, NOS G2 2013 -21640 Alive WITH TUMOR 234 Complete Remission/Response 0 234 0 234 0 234 0 234 0 234 Primary Solid Tumor 422
TCGA-IC-A6RF-01 TCGA-IC-A6RF ESCA esophageal carcinoma 69 Female White Stage IA Stage IIB Esophagus Squamous Cell Carcinoma GX 2013 -25417 Alive TUMOR FREE 477 Locoregional Recurrence Other, specify regional lymph nodes 293 Complete Remission/Response 0 477 0 477 0 477 1 293 1 293 Primary Solid Tumor 92
TCGA-IE-A3OV-01 TCGA-IE-A3OV SARC sarcoma 42 Male White Leiomyosarcoma (LMS) 2004 -15607 Dead WITH TUMOR 2448 Distant Metastasis Lung 490 Negative R0 1 2448 1 2448 1 2448 1 490 1 490 Primary Solid Tumor 32
@@ -7899,6 +7906,7 @@ TCGA-W9-A837-01 TCGA-W9-A837 LGG brain lower grade glioma 47 Male White Oligod
TCGA-WA-A7GZ-01 TCGA-WA-A7GZ HNSC head & neck squamous cell carcinoma 58 Male White Stage II Head & Neck Squamous Cell Carcinoma G2 2012 -21207 Dead TUMOR FREE 625 Complete Remission/Response 1 625 1 625 0 625 0 625 0 625 Primary Solid Tumor 190
TCGA-WA-A7H4-01 TCGA-WA-A7H4 HNSC head & neck squamous cell carcinoma 69 Male White Stage II Stage II Head & Neck Squamous Cell Carcinoma G3 2013 -25363 Alive TUMOR FREE 443 Complete Remission/Response 0 443 0 443 0 443 0 443 0 443 Primary Solid Tumor 62
TCGA-WB-A80K-01 TCGA-WB-A80K PCPG pheochromocytoma & paraganglioma 49 Male White Pheochromocytoma 2011 -18033 Alive TUMOR FREE 1255 Distant Metastasis Lymph Node(s) 772 Complete Remission/Response 0 1255 0 1255 0 1255 1 772 1 772 Primary Solid Tumor 14
+TCGA-WB-A80L-01 TCGA-WB-A80L PCPG pheochromocytoma & paraganglioma 30 Female White Pheochromocytoma 2012 -10980 Alive TUMOR FREE 1042 Complete Remission/Response 0 1042 0 1042 0 1042 0 1042 0 1042 Primary Solid Tumor 0
TCGA-WB-A80M-01 TCGA-WB-A80M PCPG pheochromocytoma & paraganglioma 63 Male White Pheochromocytoma 2012 -23163 Alive TUMOR FREE 136 Complete Remission/Response 0 136 0 136 0 136 0 136 0 136 Primary Solid Tumor 8
TCGA-WB-A80N-01 TCGA-WB-A80N PCPG pheochromocytoma & paraganglioma 54 Male White Pheochromocytoma 2012 -19980 Alive TUMOR FREE 144 Complete Remission/Response 0 144 0 144 0 144 0 144 0 144 Primary Solid Tumor 11
TCGA-WB-A80O-01 TCGA-WB-A80O PCPG pheochromocytoma & paraganglioma 83 Female White Pheochromocytoma 2013 -30555 Alive TUMOR FREE 776 Complete Remission/Response 0 776 0 776 0 776 0 776 0 776 Primary Solid Tumor 11
@@ -8226,6 +8234,7 @@ TCGA-YT-A95G-01 TCGA-YT-A95G THYM thymoma 61 Female White I Thymoma; Type B2 2
TCGA-YT-A95H-01 TCGA-YT-A95H THYM thymoma 69 Male White I Thymoma; Type AB 2013 -25376 Alive TUMOR FREE 711 0 711 0 711 0 711 0 711 Primary Solid Tumor 12
TCGA-YU-A90P-01 TCGA-YU-A90P TGCT testicular germ cell tumor 25 Male White Stage IA Stage IA Non-Seminoma; Embryonal Carcinoma 2009 -9144 Alive TUMOR FREE 2069 No Measureable Tumor or Tumor Markers 0 2069 0 2069 0 2069 0 2069 0 2069 Primary Solid Tumor 11
TCGA-YU-A90Q-01 TCGA-YU-A90Q TGCT testicular germ cell tumor 21 Male [Unknown] Stage IB Stage IB Seminoma; NOS 2008 -7846 Alive TUMOR FREE 1964 No Measureable Tumor or Tumor Markers 0 1964 0 1964 0 1964 0 1964 0 1964 Primary Solid Tumor 6
+TCGA-YU-A90S-01 TCGA-YU-A90S TGCT testicular germ cell tumor 26 Male White Stage IA Stage IA Seminoma; NOS 2009 -9531 Alive 971 0 971 0 971 0 971 0 971 Primary Solid Tumor 0
TCGA-YU-A90W-01 TCGA-YU-A90W TGCT testicular germ cell tumor 45 Male White Stage IA Stage IA Seminoma; NOS 2011 -16497 Alive TUMOR FREE 1113 No Measureable Tumor or Tumor Markers 0 1113 0 1113 0 1113 0 1113 0 1113 Primary Solid Tumor 20
TCGA-YU-A90Y-01 TCGA-YU-A90Y TGCT testicular germ cell tumor 23 Male Black Or African American Stage IIIC Stage IIIC Non-Seminoma; Embryonal Carcinoma|Non-Seminoma; Yolk Sac Tumor 2011 -8460 Dead WITH TUMOR 17 Testicular Germ Cell Tumor (TGCT) 1 17 1 17 1 17 1 17 Primary Solid Tumor 14
TCGA-YU-A912-01 TCGA-YU-A912 TGCT testicular germ cell tumor 34 Male Black Or African American Stage IIIC Stage IIIC Seminoma; NOS 2012 -12552 Alive WITH TUMOR 866 Normalization of Tumor Markers, but Residual Tumor Mass 0 866 0 866 0 866 0 866 Primary Solid Tumor 12
diff --git a/data/subset/expression-matrix-all-genes.tsv b/data/subset/expression-matrix-all-genes.tsv
index 5a9f551..97c4d7d 100644
--- a/data/subset/expression-matrix-all-genes.tsv
+++ b/data/subset/expression-matrix-all-genes.tsv
@@ -1,51 +1,51 @@
sample_id 1 100 1000 10000 100009676 10001 10002 10003 100033416 100033431 100033820 100037417 10004 100048912 100049587 10005 10006 10007 10008 10009 100093630 1001 10010 100101266 100101267 100101467 100101490 10011 100113386 100113407 100125288 100125556 100126784 100126791 100126793 100127888 100128164 100128191 100128239 100128285 100128288 100128292 100128385 100128542 100128553 100128569 100128573 100128640 100128731 100128782 100128788 100128822 100128927 100129034 100129075 100129354 100129387 100129396 100129405 100129424 100129482 100129534 100129550 100129583 100129716 100129726 100129792 100129842 10013 100130015 100130086 100130311 100130331 100130418 100130449 100130522 100130557 100130581 100130691 100130717 100130733 100130742 100130771 100130776 100130872 100130889 100130932 100130933 100130958 100130987 100131187 100131193 100131211 100131213 100131434 100131454 100131496 100131551 100131691 100131726 100131814 100131827 100131897 100131998 100132111 100132215 100132247 100132287 100132288 100132341 100132354 100132403 100132406 100132417 100132707 100132724 100132832 100132911 100132923 100132948 100133036 100133161 100133172 100133205 100133234 100133331 100133545 100133612 100133669 100133941 100133957 100133985 100133991 100134229 100134259 100134368 100134713 100134868 100134869 100134934 100134938 10014 100141515 100144603 100144748 10015 100158262 10016 100169750 10017 100170229 100170765 100170841 10018 100188893 100188949 100188953 100188954 10019 100190938 100190939 100190986 100191040 1002 10020 100216545 10023 100233209 10024 100240735 10025 10026 100268168 100270746 100270804 100271715 100271722 100271835 100271836 100271849 100272146 100272147 100272217 100272228 100286844 100287227 100287569 100288380 100288778 100289341 100289635 1003 100302401 100302650 100302692 100302736 100303728 10036 10038 10039 1004 10040 10042 10043 10044 10045 10046 10048 10049 10051 10052 10053 10054 10055 10056 10057 10058 10059 10060 10061 10062 10063 10066 10067 10068 10069 10071 10072 10073 10075 10076 10077 10078 10079 10081 10082 10084 10085 10087 10089 1009 10090 10092 10093 10094 10095 10096 10097 10098 10099 101 1010 10100 10101 10102 10103 10105 10106 10107 10109 10110 10111 10112 10113 10114 10116 1012 10120 10121 10123 10124 10125 10126 10127 10128 10129 1013 10130 10131 10133 10134 10135 10137 10138 10139 10140 10142 10144 10146 10147 10148 10149 10150 10151 10152 10153 10154 10155 10156 10157 10158 10159 10160 10161 10162 10163 10164 10165 10166 10168 10169 1017 10170 10171 10172 10174 10175 10178 10179 1018 10180 10181 10184 10186 10188 10189 1019 10190 10193 10194 10195 10196 10197 10198 10199 102 1020 10200 10201 10203 10204 10205 10206 10207 10208 10209 1021 10210 10211 10212 10213 10216 10217 10218 10219 1022 10220 10221 10223 10224 10225 10226 10227 10228 10229 10230 10231 10232 10233 10234 10235 10236 10237 10238 10239 1024 10240 10241 10242 10243 10244 10245 10247 10248 1025 10250 10251 10252 10253 10254 10256 10257 1026 10260 10261 10262 10263 10265 10266 10267 10268 10269 1027 10270 10272 10273 10274 10276 10277 10278 10279 1028 10280 10282 10283 10284 10285 10286 10287 10288 10289 1029 10290 10291 10293 10294 10295 10296 10297 10298 10299 103 1030 10300 10301 10302 10307 10308 1031 10311 10312 10313 10314 10316 10318 10319 1032 10320 10321 10322 10324 10325 10326 10327 10328 10329 1033 10330 10331 10333 10335 10336 10342 10343 10346 10347 10349 10350 10351 10352 10357 1036 10360 10361 10362 10363 10365 10367 10370 10371 10376 10379 1038 10380 10381 10382 10383 10384 10385 10388 10389 1039 10390 10391 103910 10392 10393 10395 10396 10397 10398 10399 104 1040 10400 10401 10402 10403 10404 10406 10408 10409 1041 10410 10411 10412 10413 10417 10418 10419 10420 10421 10422 10423 10424 10425 10426 10427 10428 1043 10430 10432 10434 10435 10436 10437 10438 10439 10440 10443 10444 10445 10446 10447 10449 1045 10450 10451 10452 10454 10455 10456 10457 10458 10459 10460 10461 10462 10463 10464 10465 10466 10467 10468 10469 1047 10471 10472 10473 10474 10475 10476 10477 10478 10479 10480 10482 10483 10484 10485 10487 10488 10489 10490 10491 10492 10493 10494 10495 10497 10498 10499 105 1050 10500 10501 10505 10507 10509 1051 10512 10513 10514 10516 10517 10518 10519 1052 10520 10521 10522 10523 10524 10525 10526 10527 10528 10529 1053 10531 10533 10534 10535 10536 10537 10538 10539 1054 10540 10541 10542 10544 10548 10549 10550 10551 10552 10553 10554 10555 10556 10557 10558 10559 1056 10560 10561 10562 10563 10564 10565 10566 10567 10568 10569 10570 10572 10573 10574 10575 10576 10577 10578 10579 1058 10580 10581 10585 10586 10587 10588 10589 1059 10591 10592 10594 10595 10597 10598 1060 10600 10602 10603 10605 10606 10607 10608 10609 10610 10611 10612 10613 10614 10615 10616 10617 10618 1062 10620 10621 10622 10623 10625 10626 10627 10628 10629 1063 10631 10632 10633 10634 10635 10636 10637 10638 10640 10641 10643 10644 10645 10650 10651 10652 10653 10654 10656 10657 10658 10659 1066 10661 10663 10664 10666 10667 10668 10669 10670 10671 10672 10673 10675 10677 10678 10681 10682 10683 10687 1069 10691 10692 10693 10694 10695 10699 107 1070 1071 10712 10713 10714 10715 10717 1072 10721 10723 10724 10725 10726 10728 1073 10730 10732 10733 10734 10735 10736 10737 10739 10740 10741 10742 10743 10744 10745 10746 10747 10748 10749 1075 10750 10752 10755 10758 10761 10762 10763 10765 10766 10767 10768 10769 10771 10772 10773 10775 10776 10778 10780 10781 10782 10783 10785 10787 10788 10791 10793 10794 10795 10797 10799 108 10800 10801 10802 10803 10804 10806 10807 10808 10809 10810 10811 10813 10814 10815 10817 10818 10825 10826 10827 10838 1084 10840 10841 10844 10845 10846 10847 10848 10849 10855 10856 10857 10858 10859 10861 10863 10865 10866 10867 10868 10869 10870 10871 10873 10874 10875 1088 10882 10884 10885 10888 1089 10890 10891 10892 10893 10894 10896 10897 10898 10899 109 10900 10901 10902 10903 10904 10905 10906 10907 10908 10910 10911 10912 10913 10914 10915 10916 10917 10919 10920 10921 10922 10923 10924 10926 10927 10928 10929 10930 10933 10934 10935 10936 10938 10939 10940 10942 10943 10944 10945 10946 10947 10948 10949 10950 10951 10952 10953 10954 10955 10956 10957 10959 10960 10961 10962 10963 10964 10965 10966 10969 10970 10971 10972 10973 10974 10975 10978 10979 10980 10981 10982 10983 10984 10985 10987 10988 10989 10990 10991 10992 10993 10994 10998 10999 11000 11001 11004 11006 11007 11009 1101 11010 11011 11013 11014 11015 11016 11017 11018 11019 1102 11020 11021 11022 11024 11025 11026 11027 11030 11031 11033 11034 11035 11037 1104 11040 11041 11043 11044 11045 11046 11047 1105 11051 11052 11054 11056 11057 11059 1106 11060 11062 11063 11064 11065 11066 11067 11068 11069 1107 11070 11072 11073 11076 11077 11078 11079 1108 11080 11082 11083 11091 11092 11093 11094 11095 11096 11097 11098 11099 11100 11101 11102 11103 11104 11107 11108 1111 11112 11113 11116 11117 11118 11119 1112 11120 11123 11124 11126 11127 11128 11129 1113 11130 11131 11132 11133 11135 11136 11137 11138 1114 11140 11142 11143 11144 11145 11146 11147 11148 11149 11151 11152 11153 11154 11155 11156 11157 11158 11159 1116 11160 11161 11162 11163 11164 11165 11167 11168 11169 1117 11170 11171 11173 11174 11176 11177 11178 11179 1118 11180 11182 11183 11184 11185 11186 11187 11188 11189 1119 11190 11191 11193 11194 11196 11198 112 1120 11200 11201 11209 1121 11212 11213 11214 11215 11216 11217 11218 11219 1122 11221 11222 11223 11224 11226 11227 11228 1123 11230 11231 11232 11234 11235 11236 11237 11238 112398 112399 1124 11240 11243 11244 11245 112464 11247 112476 112479 11248 112483 112487 112495 11250 11251 11252 11253 11257 112574 11258 11259 112597 11260 112609 11261 112611 112616 11262 11264 11266 11267 11269 11270 112703 112714 11272 112724 11273 11274 11275 112752 112755 11276 11277 112770 11278 11279 11280 112812 112817 11282 11284 112840 112849 11285 112858 112869 112936 112939 112942 112950 112970 113 1130 113000 113026 11309 1131 11311 113115 11313 113130 11314 113146 11315 113157 11316 113174 113177 113178 113179 11318 113189 11319 1132 11320 113201 11321 11322 113230 113235 113246 11325 113251 11326 113263 113277 113278 11328 11329 1133 11331 11332 11333 11334 11335 11336 11337 11338 11339 11340 113402 11341 113419 11342 11343 11344 113444 11345 113451 113452 113457 11346 113510 113540 1136 113612 113622 113655 113675 113691 113730 113763 113791 1138 113802 113828 113829 113835 113878 1139 1140 114034 114036 114044 114049 114088 1141 114132 114134 114294 114299 1143 114327 1145 114548 114599 1146 114609 114614 114625 114659 1147 114757 114769 114770 114781 114783 114784 114785 114787 114789 114790 114791 114792 114793 114794 114796 114799 114800 114801 114803 114804 114814 114815 114818 114819 114821 114822 114823 114824 114825 114826 114827 114836 114876 114879 114880 114881 114882 114883 114884 114885 114897 114898 114899 114900 114904 114905 114907 114908 114915 114926 114928 114932 114971 114984 114987 114990 114991 115 115004 115019 115024 115098 115106 115110 115111 115123 115196 1152 115201 115207 115209 115265 115273 115286 115290 115294 1153 115330 115350 115352 115353 115361 115362 115399 1154 115416 115426 1155 115509 115548 115557 115560 115572 115584 115650 115677 115701 115703 115704 115708 115727 115752 115761 1158 115811 115817 115825 115827 115908 115939 115948 115950 115992 116 1160 116028 116039 116064 116068 116071 116092 1161 116113 116115 116138 116143 116150 116151 116154 116159 116211 116224 116225 116228 116236 116238 116254 116285 1163 116349 116362 116369 116372 116379 1164 116412 116441 116442 116443 116444 116447 116448 116449 116461 116496 116535 116540 116541 116729 116828 116832 116835 116840 116841 116842 116843 116844 116931 116966 116983 116984 116985 116986 116987 116988 117143 117144 117145 117155 117157 117166 117177 117178 117245 117246 117247 117248 117289 1173 1174 1175 117532 117581 117583 117584 1176 117608 117854 118 1180 1181 1182 1183 1184 118424 118426 118429 118432 118433 118442 118460 118471 118472 118487 118490 118491 1185 1186 118672 1187 118738 118788 118812 118813 118881 118924 118932 118980 118987 119 119016 119032 1191 1192 1193 119369 119385 119391 119392 119395 1195 119504 119559 119587 1196 1197 119710 1198 120 1200 120071 1201 120103 120114 120224 120227 1203 120376 120379 120425 120526 120534 1207 120863 120892 1209 120939 121006 121053 1211 1212 121227 121260 121268 121274 1213 121355 121441 121457 121504 121506 121512 121536 121551 121642 121665 121793 121952 122011 122060 122402 122416 122481 122509 122525 122553 122616 122618 122622 122704 122769 122773 122786 122809 122830 122945 122953 122961 122970 123 1230 123016 123036 123041 123096 123099 123169 1232 123207 123228 123263 123283 1233 123355 1234 1235 123591 1236 123606 123688 1237 123720 123775 1238 123803 123811 123872 123879 123904 123920 124 1240 124044 124045 124056 124093 1241 124152 124220 124221 124222 124245 124359 1244 124401 124402 124411 124446 124454 124460 124491 124512 124540 124565 124583 124599 124602 124637 124641 124739 124751 124783 124790 124801 124808 124817 124842 124857 124923 124925 124930 124935 124936 124944 124961 124975 124976 124989 124995 124997 125 125058 125061 125111 125113 125144 125150 125170 125206 125228 125336 125476 125488 125875 125893 1259 125919 125950 125965 125988 126003 126006 126014 126017 126068 126069 126070 126074 126075 126119 126129 126133 126147 1262 126208 126231 126248 126259 126272 126282 126295 126298 126299 1263 126306 126308 126321 126326 126328 126353 126364 126374 126375 126382 126393 126410 126432 126433 1265 126526 126549 1266 126626 126661 126668 126669 126695 1267 126731 126789 126792 1268 126820 126823 126859 126868 1269 126917 126961 126969 127 1270 127002 127018 1272 127253 127254 127255 127262 127281 127396 127428 127435 127495 127534 127544 127579 127602 127665 127687 1277 127700 127703 127733 1278 127829 127833 127841 127845 127933 127943 128 1280 128061 128077 1281 128153 128178 1282 128209 128218 128229 128239 128240 128272 128308 128312 128338 128344 128346 128387 1284 128434 128439 128486 128497 1285 128553 1286 128611 128637 1287 128710 1288 128853 128854 128866 128869 1289 128977 128989 1290 129049 129080 1291 129138 1292 129285 129293 1293 129303 1294 129401 129450 1295 129530 129531 129563 1296 129607 129642 129685 129787 129790 1298 129804 129807 129831 129880 129881 1299 130 1300 130026 130074 1301 130132 130162 1302 130271 1303 130340 130355 130367 130399 130502 130507 130535 130540 130557 130574 130576 130589 1306 130612 130617 1307 130733 130752 1308 130813 130814 130827 130872 130888 130916 130940 130951 1310 131034 131076 131096 1311 131118 131177 1312 1314 131408 131450 131474 1315 131540 131544 131566 131583 1316 131601 131616 131669 1317 1318 131831 131870 131873 131890 131965 132 132001 132014 132158 132160 132200 132228 132241 132299 132320 132321 132332 132430 1325 1326 132660 132671 1327 132720 132789 132864 132884 1329 132946 132949 132989 133 133015 133121 133308 133383 133396 133418 133522 133584 133619 133686 1337 133746 133874 133923 133957 134 1340 134111 134145 134147 134218 134265 134266 134285 134353 134359 134429 134430 134466 134492 1345 134510 134548 134549 134553 1346 134637 1347 134728 1349 134957 135 1350 1351 135112 135114 135152 135154 1352 135228 135250 135293 135295 1353 135458 1355 1356 135892 1359 135932 136 136051 1361 1362 136227 136288 1363 136306 136332 1364 1365 1366 136647 1368 136853 136895 137075 1371 137209 1373 137392 1374 137492 1375 1376 137682 137695 1378 137835 137872 137886 1379 137902 137964 137994 1380 138050 138065 1381 138151 138162 138199 1382 138241 138307 138311 1384 138428 138429 138474 1385 1386 138639 138649 1387 138716 138724 1388 1389 1390 139065 139231 139285 1393 139322 139324 139341 139596 1396 1397 139716 139728 139735 1398 139818 139886 1399 14 140 1400 140290 140459 140460 140461 140462 140465 140467 140469 140545 140564 140576 140578 140597 140606 140609 140612 140628 140680 140685 140686 140687 140688 140690 140691 140699 1407 140700 140701 140706 140707 140710 140711 140733 140735 140738 140739 140766 140771 140775 1408 140803 140809 140823 140825 140831 140838 140862 140876 140883 140885 140886 140890 140894 140901 140947 141 1410 1414 1415 142 142678 142679 142680 142684 142686 142689 1427 1428 142891 1429 142913 142940 143 143098 1431 143187 1432 143244 143279 143282 143384 1434 143458 1435 143570 1436 143630 143666 143684 143686 143689 1438 143872 143879 143884 143888 1439 143903 143941 1440 144097 1441 144100 144108 144110 144132 144165 144193 144195 144233 144245 144321 144347 144348 144363 144402 144404 144406 144423 144453 144455 144486 1445 144501 144568 144571 144577 144608 144699 144715 144717 144811 144983 145165 145173 1452 145200 145226 145282 1453 145376 145389 1454 145407 145447 145482 145483 1455 145501 145508 145553 145567 1456 1457 145748 145773 145781 145783 145837 145853 145864 145873 1459 145957 146 1460 146050 146057 146059 146177 146183 146198 1462 146206 146212 146223 146225 146227 146279 146330 146395 1464 146433 146434 146439 146456 1465 146540 146542 146547 146556 146562 1466 146664 146691 146705 146712 146713 146722 146723 146754 146760 146771 146779 1468 146802 146845 146850 146853 146857 146862 146880 146894 146909 146923 146956 147007 147011 147015 147040 147081 1471 147111 147138 147166 147172 147179 147184 147339 147372 147381 1474 147407 147463 147495 1475 147525 1476 147645 147650 147657 147658 147660 147685 147686 147687 147694 147699 1477 147700 147727 147746 147798 1478 147804 147807 147808 147837 147841 147872 1479 147906 147912 147923 147929 147947 147948 147949 147965 147968 147991 148022 148046 148103 148113 148137 148156 148189 148198 148203 148206 148213 148223 148229 148252 148254 148266 148268 148281 148304 148327 148345 148362 148398 148413 148418 148423 148479 148523 148534 1486 148641 148696 1487 148709 148713 148741 148789 1488 148808 148811 148867 148898 1489 148932 148979 1490 149041 149069 149076 1491 149111 149134 149175 149233 149297 1493 149345 149371 149420 149428 149465 149466 149473 149478 149483 1495 149603 149628 1497 149837 149840 1499 149951 149986 15 150 1500 150000 150082 150094 150142 150147 150159 150197 150209 150221 150223 150244 150248 150274 150275 150290 150291 1503 150353 150356 150365 150368 150372 150381 150383 150384 150465 150468 150472 150483 150590 1506 150678 150684 150696 150709 150726 150737 150763 150771 150776 150786 1508 150864 1509 150962 151 1510 151009 151011 151050 151056 1511 151126 151174 151188 151194 151195 1512 151230 151242 151246 151254 151258 151295 1513 151306 151313 151354 151393 1514 151449 151473 151477 1515 151507 151516 151525 151531 151534 151556 151613 151636 151648 151651 151742 151790 151827 151835 151887 151888 1519 151903 151963 151987 152 1520 152002 152006 152007 152015 152098 1521 152100 152110 152137 152185 152189 152195 1522 152206 152217 152273 1523 152302 152330 1524 152404 152485 1525 152503 152518 152519 152559 152573 152579 152641 152687 152756 152789 1528 152815 152831 152877 152926 152992 153 153020 153090 153129 153222 153241 153339 153364 153396 1534 153443 153478 1535 153527 153562 153579 1536 153642 153643 153657 153684 1537 153733 153743 153768 153769 153770 153830 154 1540 154007 154043 154075 154091 154141 154197 154214 154215 154313 154467 1545 154661 154664 154743 154761 154790 154791 154796 1548 154807 154810 154822 154865 154881 155006 155038 155054 155060 155061 155066 1551 155185 155368 155370 155382 155400 155435 1556 1558 156 1564 1565 157 1571 1572 157285 1573 157313 157378 157506 157567 157570 157574 1576 157638 157657 157680 157695 157697 1577 157753 157769 157773 157777 157807 157869 157922 157983 158 158038 158046 158055 158056 158067 158135 158158 158160 1582 158219 158228 158234 158248 158293 158326 158358 158376 158381 158399 158401 158405 158427 158431 158471 158572 158584 158586 1586 158747 158787 1588 158800 158801 158830 158866 158880 1589 158931 159 159013 159090 159091 159195 1592 159296 1593 159371 1594 1595 159686 159989 16 160 1600 1601 160140 1602 160287 160298 1603 160335 160364 160365 1604 160418 160419 160428 1605 160518 1606 160622 160760 1608 160851 160857 160897 1609 161 1611 161142 161145 161176 161198 1612 161247 161253 161291 1613 161394 161424 161436 161497 1615 161502 161582 1616 161635 161725 161742 161753 161779 161823 161835 161882 162 162073 1621 1622 162239 162387 162394 162417 162427 162461 162466 162494 162514 162515 162517 162632 162655 162681 1627 1628 1629 162962 162963 162966 162967 162968 162972 162979 162989 162993 162998 163 163033 163049 163050 163051 163059 163071 163081 163087 163115 163126 163131 163154 163175 163183 1632 163223 163227 163255 163259 1633 163351 1634 163486 1635 163590 1636 163688 163702 163732 163747 163782 163786 163859 163882 1639 164 164045 164091 164118 1642 164284 1643 164312 164395 1644 1645 164592 1646 164633 164656 164668 164684 1647 164832 1649 165 1650 165055 165082 165140 165186 1652 165215 1653 165324 1654 1655 165530 165545 1656 165631 165679 1657 165829 1659 165904 165918 166 1660 166012 1662 1663 166336 166348 166378 166379 1665 1666 166614 166647 166785 166793 166815 166824 166929 166968 167127 167153 1672 167227 167359 1674 167410 167465 1675 167555 1676 167681 167691 1677 1678 167838 168374 168448 168451 168455 168474 168507 168537 168544 168620 168667 1687 168850 1690 169200 169270 169436 169522 169611 169714 169792 169834 169841 169981 170082 170261 170302 170371 170384 170392 170393 170394 170463 170487 170506 170575 170591 170622 170685 170689 170690 170691 170692 170954 170958 170959 170960 170961 171017 171022 171023 171024 171169 171177 171389 171392 171423 171425 171546 171558 171568 171586 1716 1717 1718 1719 172 1723 1725 1727 1728 1729 1730 1731 1733 1734 1736 1737 1738 1739 1740 1741 1742 1743 1745 1746 1748 1749 175 1756 1757 1759 176 1760 1762 1763 1768 1769 177 1770 1773 1774 1775 1776 1777 1778 178 1780 1781 1783 1785 1786 1787 1788 1789 1793 1794 1795 1796 1797 1798 18 1800 1801 1802 1803 1806 1808 1809 181 1810 1815 1816 1819 182 1820 1821 1822 1824 1827 1829 183 1831 1832 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 185 1850 1852 1854 1855 1856 1857 1859 1861 1869 187 1870 1871 1874 1875 1876 1877 1879 1880 1889 189 1890 1891 1892 1893 1894 1896 19 1901 1902 1903 1906 1909 191 1910 1911 1912 1915 191585 1917 192111 192286 192669 192670 192683 1933 1936 1937 1938 1939 1942 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1958 195827 195828 1959 196 1960 196047 196051 196074 1961 1962 196264 196294 196383 196385 196394 1964 196403 196410 196441 196463 196483 1965 196500 196513 196527 196528 196549 1967 196740 196743 196792 1968 196872 196883 1969 196951 196968 196996 197021 197131 197135 197187 197257 197258 197259 1973 197320 197322 197335 197342 197358 197370 1974 197407 1975 1977 1978 1979 1981 1982 1983 1984 198437 199 1991 1992 199221 199223 1994 1995 1996 199675 199692 199699 1997 199704 199713 199720 199731 199745 199746 199777 199786 1998 199800 199857 199870 1999 199953 199974 199990 2 20 2000 200008 200010 200014 200030 200035 200058 200081 2001 200132 200162 200172 200185 200186 200197 2002 200205 200232 200312 200315 200316 200350 2004 200403 200407 200420 200424 2005 200539 200558 200576 2006 200634 200728 200734 200765 200810 200844 200845 200879 200894 200895 2009 200916 200931 200933 200942 200958 2010 2011 201134 201158 201161 201163 201164 201176 201191 2012 201229 201232 201254 201255 201266 201283 201292 201294 201299 2013 201305 2014 201456 201475 2015 201501 201514 201562 201595 2016 201625 201626 201627 201633 201651 2017 201725 201780 201798 201799 2018 201895 201931 201965 201973 202 202018 202020 202051 202052 2021 202181 2022 202243 202299 2023 202309 202333 202459 202500 202559 2026 2027 202781 2028 2029 202915 203 2030 203054 203062 203068 203069 203100 203102 203111 203197 203228 203238 203245 203259 203260 203286 2033 203328 2034 203427 2035 203522 203523 203547 2036 2037 203859 2039 204 2040 2041 2042 204219 2043 2047 2048 204801 204851 2049 204962 205 2050 2051 2052 205251 2053 205327 2054 205428 2055 205564 2056 2057 205717 2058 2059 2060 2063 206338 206358 2064 206412 206426 2065 2067 2068 2069 207 2070 207063 2071 2072 2073 2074 2077 2078 2079 208 2081 2091 2098 2099 21 210 2100 2101 2103 2107 2108 2109 211 2110 2113 2114 2115 2116 2117 2118 2119 212 2120 2121 2122 2123 2124 2125 213 2130 2131 2132 2134 2135 2137 2138 2139 214 2140 2145 2146 2147 2149 215 2150 2151 2152 2153 2155 2157 2159 216 2161 2162 2166 2167 2169 217 2170 2171 2175 2176 2177 2178 218 2180 2181 2182 2184 2185 2186 2187 2188 2189 219 2192 219285 219293 2193 219333 219347 219348 2194 219402 2195 219537 219539 219541 2196 219623 219654 219670 219699 2197 219736 219738 219743 219749 219771 219790 219833 219844 219854 219855 219899 2199 219902 219927 219931 219970 219972 219988 22 220 2200 220001 220002 220004 220042 220064 220074 2201 220107 220108 220134 220136 220164 2202 220202 220213 2203 220323 220359 220388 2204 220429 220441 2205 220594 2206 2207 220729 2208 220832 2209 220929 220930 220963 220965 220972 220979 220988 220992 221 2210 221002 221035 221037 221060 221061 221078 221079 221091 221092 221120 221143 221150 221154 221178 221184 221188 2212 221264 221294 2213 221302 221322 221336 221395 2214 221400 221416 221421 221424 221442 221443 221458 221468 221472 221476 221477 221481 221491 221496 2215 221504 221527 221545 221584 221656 221687 221692 2217 221710 221711 221749 221785 221786 2218 221806 221830 221883 221895 2219 221908 221914 221927 221935 221937 221955 221960 221981 222 222068 222161 222166 222171 222183 222194 2222 222223 222229 222234 222235 222236 222255 222256 222389 2224 222484 222487 222537 222553 222584 222642 222643 222658 222662 222663 222696 222698 222699 222865 222901 222950 222962 223 2230 223082 223117 2232 2235 2237 2239 224 2241 2242 2245 2247 225 2250 2252 2254 2256 225689 2258 2259 226 2260 2261 2262 2263 2264 2268 2271 2272 2273 2274 2275 22794 22795 22796 22797 2280 22800 22801 22802 22803 22806 22807 22808 22809 2281 22818 2282 22820 22821 22822 22823 22824 22826 22827 22828 22829 22832 22834 22835 22836 22837 22838 22839 22841 22843 22844 22845 22846 22847 22848 22849 22850 22852 22853 22854 22856 22858 22859 2286 22861 22862 22863 22864 22866 22868 22869 2287 22870 22871 22872 22873 22874 22875 22876 22877 22878 22879 2288 22880 22881 22882 22883 22884 22885 22887 22888 22889 2289 22890 22891 22893 22894 22895 22897 22898 22899 229 22900 22901 22902 22903 22904 22905 22906 22907 22908 22909 22911 22913 22914 22915 22916 22917 22918 22919 22920 22921 22924 22925 22926 22927 22928 22929 22930 22931 22932 22933 22934 22936 22937 22938 22941 22944 22948 22949 22950 22953 22954 22955 2296 2297 22973 22974 22976 22977 22978 22979 2298 22980 22981 22982 22983 22984 22985 22987 22989 2299 22990 22992 22993 22994 22995 22996 22997 22998 23 230 23001 23002 23005 23007 23008 2301 23011 23012 23013 23014 23015 23016 23019 2302 23020 23022 23023 23024 23025 23026 23028 23029 23030 23031 23032 23033 23034 23035 23036 23037 23038 23039 23041 23042 23043 23046 23047 23048 23049 2305 23051 23052 23053 23054 23057 23059 2306 23060 23061 23062 23063 23064 23065 23066 23067 23070 23071 23072 23074 23075 23076 23077 23078 2308 23080 23081 23082 23085 23086 23087 23089 2309 23090 23091 23092 23093 23094 23095 23096 23097 23098 23099 231 2310 23101 23102 23105 23107 23108 23109 23111 23112 23113 23114 23116 23117 23118 23119 2312 23120 23122 23125 23126 23127 23129 2313 23130 23131 23132 23133 23135 23136 23137 23138 23139 2314 23140 23141 23142 23143 23144 23145 23148 23149 2315 23150 23151 23152 23154 23155 23157 23158 2316 23160 23161 23162 23163 23164 23165 23166 23167 23168 23169 2317 23170 23171 23172 23173 23174 23175 23176 23177 23178 23179 2318 23180 23181 23184 23185 23186 23187 23189 2319 23190 23191 23192 23193 23194 23195 23196 23197 23198 23199 23200 23201 23203 23204 23205 23207 23208 23209 2321 23210 23211 23212 23213 23214 23215 23216 23217 23218 23219 2322 23220 23221 23223 23224 23225 23228 23229 2323 23230 23231 23232 23233 23234 23235 23236 23237 23239 2324 23240 23241 23242 23243 23244 23245 23246 23247 23248 23250 23251 23252 23253 23254 23255 23256 23258 23259 2326 23261 23262 23263 23264 23265 23266 23268 23269 2327 23270 23271 23272 23274 23275 23276 23277 23279 2328 23281 23283 23284 23285 23286 23287 23288 2329 23291 23293 23294 23295 23299 2330 23300 23301 23302 23303 23304 23305 23306 23307 23308 23309 2331 23310 23312 23313 23314 23315 23316 23317 23318 2332 23321 23322 23324 23325 23326 23327 23328 23331 23332 23333 23334 23335 23336 23338 23339 2334 23341 23344 23345 23347 23348 23349 2335 23350 23351 23352 23353 23354 23355 23357 23358 23359 23360 23361 23362 23363 23365 23366 23367 23368 23369 23370 23371 23373 23376 23378 23379 23380 23381 23382 23383 23384 23385 23386 23387 23389 2339 23390 23392 23394 23395 23396 23397 23398 23399 23400 23401 23403 23404 23405 23406 23408 23409 23410 23411 23412 23413 23414 23415 23416 23417 23418 2342 23420 23421 23423 23424 23426 23428 23429 23430 23431 23432 23433 23435 23438 23443 23446 23450 23451 23452 23456 23457 2346 23460 23461 23462 23463 23464 23466 23467 23468 23469 23471 23473 23474 23475 23476 23478 23479 2348 23480 23481 23483 23484 23491 23492 23493 23495 23498 23499 2350 23500 23503 23504 23505 23506 23507 23508 23509 23510 23511 23512 23513 23514 23515 23516 23517 23518 2352 23520 23521 23522 23523 23524 23526 23527 23528 23529 2353 23530 23531 23532 23533 23534 23536 23539 2354 23541 23542 23543 23544 23545 23546 23547 23548 23549 2355 23550 23551 23552 23554 23555 23556 23557 23558 23559 2356 23560 23562 23563 23564 23566 23567 23568 23569 2357 23576 2358 23580 23582 23583 23584 23585 23586 23587 23588 23589 2359 23590 23592 23593 23594 23595 23596 23597 23598 23600 23601 23603 23604 23607 23608 23609 23612 23613 23615 23616 23621 23623 23625 23627 23629 23630 23632 23633 23635 23636 23637 23639 23640 23641 23642 23643 23644 23645 23646 23647 23648 23649 23650 23654 23657 23658 23659 23660 23670 23673 23677 23678 23682 23683 23704 23705 23708 23710 23729 23731 23741 23743 23753 23759 23760 23761 23762 23764 23765 23766 23767 23768 23769 23770 23774 23779 23780 23786 23787 23788 238 239 2395 240 241 24137 24138 24139 24140 24141 24142 24144 24145 24146 24147 24148 24149 242 2444 245 245711 245812 245972 245973 246 246175 246176 246181 246182 246184 246243 246269 246329 246330 246721 246777 246778 247 2475 2483 2487 249 2491 2494 2495 2498 25 250 2512 2517 2519 2521 2523 2524 2525 2526 2527 2528 252839 252884 2529 252969 252983 252995 2530 253012 253018 253039 2531 253143 253152 253190 2532 253260 2533 2534 253430 253461 2535 253512 253558 253635 253639 2537 253714 253724 253725 253738 253769 253782 253827 253832 253868 2539 253943 253959 253980 253982 254013 254042 254048 254050 254065 254102 254122 254158 254170 254173 254187 2542 254225 254228 254251 254263 254268 254295 254359 254394 254427 254428 254531 254552 254559 2547 254773 254778 2548 254827 254863 254887 2549 2550 255027 255031 255043 255057 255061 255082 2551 255104 255167 255231 255239 255252 255275 2553 255374 255394 255403 255426 255488 2555 255520 255631 255738 255743 255758 255783 255809 255812 255877 255919 255967 256051 2561 256126 256227 256236 256281 2563 256302 256309 256329 256355 256356 256364 256380 2564 256435 256471 256472 256586 256643 256646 256691 256714 256880 2569 256933 256949 256957 256987 257 2570 257000 257019 257044 257068 2571 257101 257106 257144 257160 257169 257177 257194 257203 257218 257236 257240 257313 257358 257364 257397 257407 257415 25758 25759 25764 25766 25771 25775 25776 25777 25778 25780 25782 25786 25787 25788 25790 25791 25792 25793 25794 25796 25797 25798 25799 2580 25800 25801 258010 25802 25803 25804 25805 25807 25809 2581 25812 25813 25814 25816 25817 25819 2582 25820 25821 25822 25823 25824 25825 25827 25828 25829 2583 25830 25831 25832 25833 25836 25837 25839 2584 25840 25841 25842 25843 25844 25845 25847 25849 2585 25850 25851 25852 25853 25854 25855 25859 25861 25862 25864 25865 25870 25871 25873 25874 25875 25876 25878 25879 2588 25880 25885 25886 25888 2589 25890 25893 25894 25895 25896 25897 25898 259 2590 25900 25901 25902 25903 25904 25906 25907 25909 2591 25911 25912 25913 25914 25915 25917 259173 259197 2592 25920 25921 259215 259217 25923 259230 259236 25924 25925 25926 259266 25927 25928 259282 259283 25929 259290 259294 259295 2593 25930 259307 25932 25934 25936 25937 25938 25939 25940 25941 25942 25943 25945 25946 25948 25949 2595 25950 25953 25956 25957 25959 25960 25961 25962 25963 25966 2597 25970 25972 25973 25974 25976 25977 25978 25979 25980 25981 25983 25984 25987 25988 25989 25992 25994 25996 25998 25999 26 26000 26001 26002 26003 26005 26007 26009 26010 26011 26012 26013 26015 26017 26018 26019 26020 26022 26024 26025 26027 260293 260294 26030 26031 26032 26033 26034 26035 26036 26037 26038 26039 26040 260425 26043 26045 26046 26047 26048 26049 26050 26051 26052 26053 26054 26056 26057 26058 26060 26061 26063 26064 26065 26071 26073 26074 26084 26086 26088 26090 26091 26092 26093 26094 26095 26097 26098 26099 26100 26108 26112 26115 26118 26119 26121 26122 26123 26127 26128 26130 26133 26135 26136 26137 26140 26145 26146 26147 26149 2615 26150 26151 26152 26153 26154 26155 26156 26157 26160 26164 26167 26168 2617 261726 261729 26173 261734 26175 2618 2619 26190 26191 262 2620 26205 26206 26207 2621 26212 2622 26220 26224 26225 26227 26228 26229 2623 26230 26231 26232 26233 26234 26235 2624 26240 26249 2625 26251 26253 26255 26256 26258 26259 26260 26261 26262 26263 26266 26267 26268 26269 2627 26270 26271 26272 26273 26275 26276 26277 26278 26279 2628 26284 26286 26289 2629 26290 26292 26297 2630 26301 2631 2632 2633 26330 2634 2635 26354 26355 2639 2642 2643 2644 26468 26469 2647 26470 26471 26472 2648 2649 26499 2650 26502 26503 26504 26505 26507 26508 26509 2651 26511 26512 26515 26517 26519 26520 26521 26523 26524 26528 2653 26548 2657 26574 26575 26576 26577 26578 26579 26580 26585 26586 26589 2660 26608 2661 26610 2662 2664 2665 266655 266675 266727 266747 266812 2669 266971 267 2670 267002 267004 267020 2671 2672 2673 2674 26747 2675 26750 26751 2676 26762 2677 2678 2679 268 2681 26821 2683 2686 2687 26872 26873 269 2690 26953 26958 26959 2696 26960 2697 26973 26974 26984 26985 26986 26993 26994 26995 26996 26999 27 270 2700 27000 27004 27005 2701 27010 27013 27018 2702 27020 27030 27031 27032 27033 27034 27035 27036 27037 27040 27042 27043 27044 2706 27063 27065 27067 27068 27069 2707 27071 27072 27074 27075 27076 27077 27079 27085 27086 27087 27089 2709 27090 27092 27094 27095 27097 27098 27099 271 2710 27101 27102 27106 27107 27109 27111 27112 27113 27115 27122 27123 27124 27125 27127 27128 27129 2713 27130 27131 27132 27134 27141 27143 27145 27146 27147 27148 27151 27152 27153 27154 27156 27158 27160 27161 27163 27165 27166 2717 27173 27175 27180 27181 27183 27185 27189 2719 27190 27197 27198 272 2720 27202 27229 27230 27232 27233 27235 27236 27237 27238 27239 27240 27241 27242 27243 27244 27245 27246 27247 27248 27249 27250 27252 27253 27254 27257 27258 27284 27285 27286 27287 27289 2729 27291 27292 27293 27294 27297 27299 273 2730 27300 27301 27303 27304 27306 27309 2731 27314 27315 27316 27319 27327 2733 27332 27333 27334 27335 27336 27338 27339 2734 27340 27341 27342 27343 27344 27345 27346 27347 27348 27349 2735 27350 27351 27352 2736 2737 2738 2739 274 27429 2743 27430 27433 27434 27436 27439 2744 27440 27443 27445 2745 2746 2747 275 2752 276 2760 2762 2764 2766 2767 2768 2769 2770 2771 2773 2774 2775 2776 2778 2780 2781 2782 2783 2784 2785 2786 2787 2788 279 2790 2791 2793 2794 2796 2798 2799 28 280 2800 2801 2802 2803 2804 2805 2806 280636 280655 2810 2811 2814 2817 2819 2820 2821 2822 28227 2823 28231 28232 2824 2825 282566 2826 282679 2827 2828 282808 282809 282890 2829 282969 282973 282974 282991 282996 282997 283 283011 283050 283078 283102 283106 283120 283130 283131 283149 283152 283174 283208 283209 283212 283219 283229 283232 283234 283237 283248 283254 283267 283284 283298 2833 283314 283316 283337 283345 283349 283358 283373 283375 283377 283383 283385 283416 283417 283420 283431 283446 283450 283455 283458 283459 283464 283487 283489 283507 283514 283518 283521 283537 283551 283554 283571 283578 283579 283596 283600 283629 283635 283638 283643 283651 283652 283659 283663 283687 283726 283742 283796 2838 283807 283820 283848 283849 283869 283870 283871 283897 283899 283922 283927 283932 283933 283948 283951 283970 283971 283981 283987 283989 283991 284 2840 284001 284004 284009 284013 284018 284021 284023 284029 284040 284047 284058 284069 284071 284076 284083 284086 284098 284099 2841 284100 284106 284110 284111 284114 284119 284129 284131 284161 284184 284185 284186 284194 2842 284207 284232 284233 284252 284266 284273 284276 284297 2843 284306 284307 284309 284323 284325 284338 284340 284346 284348 284349 284353 284358 284361 284367 284370 284371 284390 284391 2844 284403 284406 284415 284417 284422 284427 284434 284439 284440 284441 284443 284459 284467 284486 2845 284565 284578 284593 2846 284611 284612 284613 284615 284618 284654 284656 284677 284695 284697 2847 284716 284723 284729 284739 284749 284756 284759 2848 284802 284805 284836 284837 284900 284904 284942 284992 284996 285 2850 285016 285025 285033 285051 285074 28511 28512 28514 285148 285154 285172 285175 285180 285190 285193 285195 2852 285203 285237 285242 285267 285268 285282 285313 285315 285331 285335 285343 285349 285359 285362 285367 285368 285381 285382 285386 285419 285429 285440 285456 285464 285489 285498 285512 285513 285521 285527 285533 285550 285555 285590 285593 285596 285598 285600 285605 285613 285636 285643 285671 285672 285676 2857 285704 285753 285755 285761 285782 285830 285848 285855 2859 285905 285908 285954 285955 285958 285961 285962 285966 285971 285973 285989 286 286002 286006 286016 286042 286046 286053 286075 286076 286077 286097 286101 286102 286103 286122 286128 286133 286140 286144 286148 286151 286204 286205 286207 286223 286256 286257 286262 286319 286333 286336 286343 286410 286451 286467 2865 286527 286530 286676 2867 2868 286826 286827 2869 286967 287 2870 2872 2873 2874 2875 2876 2877 2878 2879 288 2882 2885 2887 2889 2893 2894 28951 28952 28955 28956 28957 28958 28959 2896 28960 28962 28964 28965 28966 28968 28969 2897 28970 28971 28972 28973 28974 28976 28977 28978 28981 28982 28984 28985 28986 28987 28988 28989 2899 28990 28991 28992 28996 28998 28999 29 290 2900 2901 29015 2902 29028 2903 29035 2905 29057 29058 2906 29062 29063 29066 29068 2907 29070 29071 29072 29074 29078 29079 2908 29080 29081 29082 29083 29085 29086 29087 29088 29089 2909 29090 29091 29092 29093 29094 29095 29097 29098 29099 291 29100 29101 29102 29103 29104 29105 29106 29107 29108 29109 2911 29110 29115 29116 29117 29119 2912 29121 29122 29123 29125 29126 29127 29128 2914 2916 2919 292 2920 2921 2923 2925 2926 293 2931 2932 2934 2935 2936 2937 2941 2944 2946 2947 2948 2949 2950 2952 2953 2954 2956 2957 2958 2959 2960 2961 2962 2963 2965 2966 2967 2968 2969 2970 2971 2972 2974 2975 2976 29760 29761 29763 29765 29766 29767 29774 29775 29777 2978 29780 29781 29785 29789 2979 29796 29797 29798 29799 29800 29801 29802 29803 2982 2983 2984 29841 29842 29843 29844 29850 29851 29855 2987 29880 29881 29882 29883 29886 29887 29888 29889 29890 29893 29894 29895 29896 29899 2990 29901 29902 29903 29904 29906 29907 29909 29911 29914 29915 29916 29919 2992 29920 29922 29923 29924 29925 29926 29927 29928 29929 29931 29933 29934 29935 29937 29940 29941 29942 29944 29945 29946 29948 2995 29950 29951 29952 29954 29956 29957 29958 29959 2996 29960 29964 29965 29966 29967 29968 29969 2997 29970 29978 29979 29980 29982 29984 29985 29986 29988 2999 29990 29992 29993 29994 29995 29997 29998 29999 30 3000 30000 30001 30008 30009 3001 30011 3002 3003 3004 3005 3006 30061 3007 3008 3009 301 3012 3013 3014 3015 3017 302 3020 3021 3028 3029 303 3030 3032 3033 3034 3035 3036 3037 3038 3039 304 3040 3043 3045 3048 3049 305 3052 3053 3054 3055 3059 306 3064 3065 3066 3067 3068 3069 307 3070 3071 3073 3074 3075 3077 308 3081 30811 30812 30815 30817 30818 30819 3082 30827 30832 30833 30834 30835 30836 30837 3084 30844 30845 30846 30849 30850 30851 3087 309 3090 3091 3092 3093 3094 3096 30968 3097 3098 3099 31 310 3101 3104 3105 3106 3107 3108 3109 311 3111 3112 3113 3115 3116 3117 3118 3119 3120 3122 3123 3127 3128 313 3131 3133 3134 3135 3136 3137 3139 314 3140 3141 3142 3145 3146 3148 3149 3150 3151 3155 3156 3157 3159 316 3161 3162 3163 3164 317 3171 3176 317648 317649 317662 317671 3177 317719 317749 317751 317762 317772 317781 3178 318 3181 3182 3183 3184 3185 3187 3188 3189 3190 319085 3191 3192 3196 3198 3199 32 320 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 321 3212 3213 3214 3215 3216 3217 3218 3219 322 3221 3223 323 3234 324 3240 3241 3242 3248 3249 3250 3251 3257 326 3263 326342 3265 3266 326624 326625 3267 3268 3269 327 3270 3274 3275 3276 328 3280 3281 329 3290 3291 3292 3293 3295 3297 3298 3299 330 3300 3301 3303 3304 3305 3306 3308 3309 331 3310 3311 3312 3313 3315 3316 332 3320 3321 3326 3329 333 3336 3337 3338 3339 333926 333929 334 3340 3344 335 3355 3356 3357 3359 3362 3363 3364 3371 3373 3376 337867 337875 337876 338 338069 338094 3382 3383 338321 338328 338339 3384 338440 338442 3385 338557 338596 3386 338651 338657 338692 338699 338707 338758 338773 338799 338811 338872 338879 339005 339105 339122 339123 339145 339175 339201 339210 339229 339230 339231 339263 339287 339290 339318 339324 339327 339344 339366 339390 339398 3394 339403 339416 339448 339451 339453 339456 339483 339487 339488 339500 339524 339541 339559 3396 339665 339674 3397 339745 339761 339768 3398 339804 339829 339834 339855 339883 3399 339942 339965 339977 339983 34 3400 340061 340120 340146 340152 340156 340205 340252 340267 340273 340277 340307 340348 340351 340371 340385 340390 340393 340419 340481 340485 340526 340527 340533 340542 340543 340547 340554 340562 340591 340706 340719 341 341056 341208 341346 3416 341676 3417 3418 3419 3420 342035 3421 342125 342132 342184 3422 3423 342346 342357 342371 342372 3425 342510 342527 342538 3426 3428 342897 3429 342908 342909 342926 342933 342945 342977 342979 343 3430 343035 343099 3431 343171 3433 3434 343413 343450 343477 343505 343521 343637 3437 343990 344 344148 344387 344405 344558 344595 344657 344787 344967 345193 345222 345274 345275 3454 345462 3455 345557 345630 345757 345778 3458 345895 3459 345930 3460 346007 346157 346171 346389 346528 346653 346689 347 347051 347148 347240 347273 347344 347376 347404 347454 3475 347517 3476 347688 347732 347734 347735 347736 347744 347746 347853 347862 3479 347902 347918 348 3480 348013 348093 348094 3481 348110 348174 348180 3482 348235 348254 348262 3483 348327 348378 3485 3486 348645 348654 3487 348738 348793 3488 348801 348807 3489 348926 348938 348995 3490 349075 3491 349114 349136 349149 349152 349196 349565 349667 35 3508 351 3512 3516 352909 352954 352961 353 353088 353091 353116 353174 353189 353274 353322 353324 353345 353355 353376 353497 353500 353514 3543 3549 355 3550 3551 3552 3553 3554 3556 3557 3559 356 3560 3561 3563 3566 3568 3569 357 3570 3572 3574 3575 3576 3577 3579 358 3580 3581 3586 3587 3588 3589 3590 3592 3593 3594 3595 3597 359821 359845 359948 36 360 3600 360023 3601 360132 360200 3603 3604 3606 3607 3608 3609 361 3611 3612 3613 3614 3615 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 363 3631 3632 3633 3635 3636 3638 364 3640 3643 3645 3646 3652 3653 3654 3655 3656 3658 3659 366 3660 3661 3662 3663 3664 3665 3667 3669 367 3671 3672 3673 3674 3675 3676 3678 3679 368 3680 3681 3682 3683 3684 3685 3687 3688 3689 369 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 37 3700 3702 3703 3704 3705 3706 3707 3708 3709 3710 3712 3714 3716 3717 3718 372 3720 3725 3726 3727 3728 373 3730 373156 3732 3735 3737 3738 373863 374 3741 3742 374286 374291 374354 374378 374383 374393 374395 374403 374407 374443 374470 374491 374500 3746 374618 374650 374654 374655 374659 374666 374739 374786 3748 374819 374868 374872 374875 374877 374879 374882 374887 374899 3749 374900 374907 374928 374946 374969 374973 374977 374986 375 3750 375033 375035 375056 375057 375061 375133 375189 375190 3752 375248 375260 375287 375298 3753 375307 375316 375323 375341 375346 375387 375444 375449 375484 3755 375513 375519 3756 375611 375612 375616 375686 375690 3757 375704 375719 375743 375748 375757 375759 375775 375790 375791 3758 3759 3762 376267 3764 376412 376497 3765 3766 376693 3767 3768 3769 376940 377 3770 377007 3772 3773 3775 377677 3778 377841 3779 378 3780 378108 3782 3783 3784 3785 3786 3787 378708 378805 378832 378884 378938 379 3790 379013 3791 3792 3795 3796 3797 3798 3799 38 3800 3801 3804 3805 3809 381 3811 3812 3815 3816 3818 382 3820 3821 3822 3823 3824 3827 3831 3832 3833 3835 3836 3837 3838 3839 384 3840 3841 3842 3843 3845 3846 3848 3856 3858 3860 386593 386724 386757 387 387032 387036 387066 387082 387103 387104 387119 3872 387254 387263 387264 387273 387328 387338 387357 387496 3875 387509 387521 387590 387597 387640 387644 387646 387647 387680 387694 387700 387707 387751 387755 387763 387778 387787 387841 387849 387856 387882 387885 387890 387893 387911 387914 387921 387923 387990 388 388011 388115 388121 388125 388152 388165 388182 388228 388242 388272 388284 388324 388325 388327 388335 388341 388372 388389 388403 388507 388512 388524 388531 388536 388552 388558 388561 388566 388567 388569 388581 388585 388588 388591 388610 388646 388650 388662 388677 388685 388692 388695 388697 388722 388730 388753 388789 388795 388796 388799 388815 388886 388931 388955 388962 388963 388965 388969 389 389072 389084 389114 389118 389119 389125 389136 389170 389203 389206 389289 389293 389332 389333 389337 389362 389432 389458 3895 389524 389538 389541 389610 389634 389643 389668 389677 3897 389705 389741 389791 389792 389799 389813 389816 389840 389856 389898 3899 389941 39 390 3902 390205 390212 390284 3903 3904 390595 390598 390637 390667 3908 3909 390916 390927 390980 391 3910 391059 3911 391123 3912 391267 3913 391322 391356 3914 3915 3916 391634 391712 392 3920 3921 392307 392465 392490 3925 392617 3927 392862 3929 393 3930 3931 3932 3934 3936 3937 3938 3939 394 3945 3949 395 3952 3953 3954 3955 3956 3957 3958 3959 396 3960 3964 3965 397 3972 3976 3977 3978 398 3980 3981 3983 3984 3985 3987 3988 399 3990 3991 3992 3993 399473 399474 3995 399512 3996 399664 399665 399668 399669 399671 399687 399694 399726 399744 399761 3998 399815 399818 399844 399909 399947 399948 399959 399979 400 4000 400027 400043 400073 4001 400120 400224 400242 400322 400410 400451 4005 400506 400508 400566 400569 400581 400657 400673 400696 4007 400709 400710 400713 400720 400745 400746 400752 400759 400793 400798 4008 400818 400823 400831 400916 400927 400931 400935 400954 400961 400966 4010 401010 401027 401093 401105 401115 401124 401127 401145 401152 401172 4012 401207 401232 401237 401251 401253 401262 401265 401288 4013 401303 401331 401375 401387 401397 401399 401409 401427 401431 401466 401474 401491 401494 4015 401505 401541 401546 401548 401551 401562 401563 401565 401588 4016 401612 401647 4017 401720 401827 401898 401944 402 402055 402176 4023 402415 402483 4025 402573 4026 402665 402682 403 4033 403313 403314 403341 4034 4035 4036 4037 4038 4040 404037 404093 4041 404201 404217 404220 404281 4043 4045 404550 4046 404636 404672 4047 404734 4048 4049 405 4050 4051 4052 4053 4054 4055 4056 4057 405754 4058 4059 406 4060 4061 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4074 4076 4077 407738 407835 407975 407977 408 408050 4082 4084 4085 4086 4087 4088 4089 409 4090 4091 4092 4093 4094 4097 4099 41 410 411 4116 4117 4118 412 4121 4122 4123 4124 4125 4126 4128 4129 4130 4131 4133 4134 4135 4137 4139 414 4140 414059 414060 4141 414149 414152 414189 414235 414236 414241 414328 414332 4144 4145 4146 4147 414777 4148 4149 414918 414919 415 4150 415116 415117 4152 4154 4155 4157 4162 4163 4166 4168 4170 4171 4172 4173 4174 4175 4176 4179 4185 4188 4189 419 4190 4191 4192 4193 4194 4199 4200 4201 4204 4205 4207 4208 4209 421 4210 4211 4212 4213 4214 4215 4216 4217 4218 4221 4222 4225 4232 4233 4234 4236 4237 4238 4239 4240 4241 4242 4245 4247 4248 4249 4253 4254 4255 4256 4257 4258 4259 4261 4267 427 4277 4281 4282 4283 4284 4285 4286 4287 4288 4289 4291 4292 4293 4294 4296 4297 4298 4299 43 430 4300 4301 4302 4303 4306 4311 4313 4316 4317 431705 4318 432 4320 4323 432369 4324 4325 4326 4327 4329 433 4330 4331 4332 4335 4336 4337 4338 434 4343 4345 435 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4363 438 43847 439 439921 439927 439931 439965 440 440026 440044 440072 440073 440078 440081 440087 440093 440101 440107 440138 440145 440193 440253 440270 440275 440278 440295 440307 440352 440354 440359 440400 440423 440435 440456 440461 440465 440498 440503 440515 440556 440563 440567 440574 440590 440603 440689 440695 440712 440730 440823 440836 440854 440896 440944 440957 441024 441027 441032 441046 441089 441094 441108 441150 441151 441168 441191 441194 441204 441208 441212 441250 441251 441263 441272 441273 441294 441295 441381 441394 441425 441452 441454 441455 441457 441476 441478 441502 441518 441531 441549 441631 441666 441818 441869 441951 442117 442229 442245 442308 442319 442421 442454 442459 442523 442578 442582 442590 443 4430 4435 4436 4437 4438 4439 444 445 445328 445347 445571 445577 445582 445815 4478 4481 4482 4485 4486 4487 4493 4494 4495 4500 4501 4502 4507 4515 4520 4521 4522 4524 4528 4534 4542 4547 4548 4552 4580 4582 4585 4588 4591 4594 4595 4597 4598 4599 4600 4601 4602 4603 4605 4606 4607 4608 4609 4610 4613 4615 4616 462 4621 4627 4628 4629 463 4635 4636 4637 4638 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4659 466 4660 4661 4664 4665 4666 4668 4669 467 4670 4671 4673 4674 4675 4676 4677 4678 468 4680 4681 4682 4683 4684 4685 4686 4688 4689 4690 4691 4692 4694 4695 4696 4697 4698 47 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 471 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 472 4720 4722 4723 4724 4725 4726 4728 4729 473 4731 4733 4734 4735 4736 4738 4739 4741 474170 474338 474343 474344 474354 474382 4744 4747 475 4750 4751 4752 4753 4756 4758 476 4763 477 4771 4772 4773 4774 4775 4776 4778 4779 478 4780 4781 4782 4783 4784 4790 4791 4792 4793 4794 4795 4796 4798 4799 48 480 4800 4801 4802 4804 4807 4809 481 4810 4811 4814 4815 4817 4818 482 4820 4824 4826 4828 483 4830 4831 4832 4833 4835 4836 4837 4838 4839 4841 4843 4846 4848 4849 4850 4851 4853 4854 4855 4856 486 4860 4861 4862 4863 4864 4867 4869 487 4878 488 4881 4882 4883 4884 4885 489 4891 4893 4897 4898 4899 49 490 4900 4901 4902 4904 4905 4907 491 4913 4914 4915 4916 4917 4919 492 4920 4921 4923 492303 492311 4924 4925 4926 4927 4928 4929 493 4931 4935 493753 493754 4938 493812 493829 493856 493860 493861 493869 4939 493911 4940 494115 494141 494143 4942 4943 494470 494513 494514 494551 4946 4947 4952 4953 4957 4958 4967 4968 4969 497189 497190 497258 4973 4974 4975 4976 497661 498 4982 4983 49854 49855 49856 49861 4987 4998 4999 50 5000 5001 5002 5003 5004 5007 5008 501 5010 5013 5016 5017 5018 5019 5021 5023 5025 5026 5027 5028 5029 5031 5032 5033 5034 503538 503542 5036 503640 503645 503693 5037 5042 5045 5046 5048 50484 50485 50486 50488 5049 5050 50506 50509 5051 50512 50515 5052 5054 5055 5058 506 50614 50615 50618 50619 5062 50624 50626 50628 50636 5064 50640 50649 50650 50651 5066 5069 5071 50717 5073 5074 5079 5080 50801 50804 50807 50808 50809 50810 50813 50814 5082 50832 50840 50846 50848 50852 50853 50854 50855 50856 50859 50861 50862 50865 5087 5089 509 5090 5091 5092 5093 50937 50939 5094 50940 50943 50944 5095 5096 5097 5098 50999 51 51000 51001 51002 51003 51004 51005 51006 51008 51009 5101 51010 51011 51012 51013 51014 51015 51016 51018 51019 51020 51021 51022 51023 51024 51025 51026 51027 51028 51029 51030 51031 51035 51042 51043 51050 51053 51054 51056 51057 51058 5106 51060 51061 51062 51063 51065 51066 51067 51068 51069 51070 51071 51072 51073 51074 51075 51076 51077 51078 51079 5108 51081 51082 51083 51084 51085 51086 51087 51088 51090 51091 51092 51093 51094 51095 51096 51097 51098 51099 5110 51100 51101 51102 51103 51104 51105 51106 51107 51108 51109 5111 51110 51111 51112 51114 51115 51116 51117 51118 51119 51121 51122 51123 51124 51125 51126 51127 51128 51129 51130 51131 51132 51133 51134 51135 51136 51138 51141 51142 51143 51144 51147 51148 51149 51150 51151 51154 51155 51157 5116 51160 51161 51162 51163 51164 51166 51167 51168 51170 51171 51172 51174 51175 51176 51177 5118 51181 51182 51184 51185 51186 51187 51188 5119 51191 51192 51193 51194 51195 51196 51199 51201 51202 51203 51204 51205 51206 51208 51209 51218 5122 51222 51225 51226 51227 51228 51230 51231 51232 51233 51234 51236 51237 51239 51241 51244 51246 51247 51248 51249 5125 51250 51251 51252 51253 51255 51256 51257 51258 51259 51260 51263 51264 51265 51267 51268 5127 51271 51272 51274 51275 51276 51277 51278 51279 5128 51280 51281 51282 51283 51284 51286 51287 5129 51290 51291 51292 51293 51294 51295 51296 51299 513 5130 51300 51301 51303 51304 51305 51306 51307 51308 51309 51310 51311 51312 51313 51314 51315 51316 51317 51318 51319 51320 51321 51322 51324 51326 51329 5133 51330 51332 51333 51334 51335 51337 51338 51339 5134 51340 51341 51343 51347 51348 51351 51352 5136 51360 51361 51362 51363 51364 51365 51366 51367 51368 5137 51371 51372 51373 51374 51375 51377 51379 5138 51380 51382 51384 51385 51386 51388 51389 5139 51390 51393 51397 51398 51399 514 5140 51400 51406 51409 5141 51411 5142 51421 51422 51426 51427 51428 51429 5143 51430 51433 51434 51435 51439 5144 51440 51441 51444 51447 51449 5145 51451 51454 51455 51460 51463 51465 51466 5147 51471 51474 51477 51478 51479 5148 51490 51491 51493 51495 51496 51497 51499 515 5150 51501 51503 51504 51506 51507 5151 51510 51512 51513 51514 51517 5152 51520 51522 51523 51524 51526 51527 51528 51529 5153 51530 51531 51533 51534 51535 51537 51538 5154 51540 51542 51545 51547 51548 5155 51550 51552 51554 51557 51559 5156 51560 51561 51562 51564 51566 51567 51569 5157 51571 51573 51574 51575 5158 51582 51585 51586 51588 5159 51592 51593 51594 51596 51599 516 5160 51601 51602 51603 51604 51605 51606 51608 51611 51614 51616 51617 51619 5162 51621 51622 51626 51629 5163 51631 51633 51634 51635 51637 51639 5164 51642 51643 51645 51646 51647 51649 5165 51650 51651 51652 51654 51655 51657 51659 5166 51660 51661 51663 51665 51667 51668 51669 5167 51673 51676 51678 5168 51684 51686 5169 51690 51691 51692 51693 51696 51699 517 5170 51700 51701 51702 51703 51704 51705 51706 51710 51714 51715 51716 51719 5172 51720 51726 51727 51728 51729 51733 51734 51735 51738 5174 51741 51742 51744 51747 5175 51750 51751 51752 51754 51755 51759 5176 51760 51761 51762 51763 51764 51765 51768 51773 51776 5178 51780 518 51804 51805 51807 51808 51809 51816 5184 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 52 5201 5202 5203 5204 5205 5207 5208 5209 521 5210 5211 5212 5213 5214 5216 5217 5218 522 5223 5224 5225 5226 5228 5229 523 5230 5236 5238 5239 5241 5243 5244 5245 525 5250 5251 5252 5253 5255 5256 5257 526 5260 5261 5264 5265 5266 5269 527 5270 5271 5272 5274 5277 5279 528 5281 5283 5284 5286 5287 5289 529 5290 5291 5292 5293 5294 5295 5296 5297 5298 53 5300 5301 5303 5305 5306 5307 5310 5311 5313 5315 5316 5318 5319 5321 5324 5325 5326 5327 5328 5329 533 5330 5331 5332 5333 53335 53339 5334 53340 53342 53343 53344 53346 53347 53349 5335 53353 53354 5336 5337 53371 53373 5338 5339 534 53405 53407 5341 5342 5345 5346 5347 5349 535 5350 5351 5352 5354 5355 5356 5357 5358 5359 5360 5361 53615 53616 5362 53630 53635 53637 5364 5365 5366 5367 5368 537 5371 5372 5373 5376 5378 5379 538 5380 5382 53820 53822 53826 53827 53829 5383 53831 53833 53834 53836 53838 53840 53841 5387 539 53905 53916 53917 53918 5393 53938 5394 53944 53947 5395 5396 53981 54 540 54014 54020 54033 54039 54058 54059 54065 54067 54069 54084 5409 54093 54097 54102 54103 54106 54107 54108 5411 54112 5412 5413 5414 541468 541471 541473 54148 54149 541565 541578 54165 54187 5420 54205 54206 54207 54209 54210 5422 5423 5424 5425 5426 5427 542767 5428 5429 5430 5431 5432 54328 54329 5433 54331 54332 5434 54344 54345 5435 5436 54360 54361 5437 5438 54386 5439 5440 54407 5441 54413 54414 5442 54429 5443 54431 54432 54433 54434 54435 54436 54437 54438 54439 54440 54441 54442 54443 5445 54453 54454 54455 54456 54457 54458 54460 54461 54462 54463 54464 54465 54466 54467 54468 54469 5447 54470 54471 54472 54475 54476 54477 54478 54480 54482 54487 54491 54492 54494 54495 54496 54497 54498 54499 545 5450 54502 54503 54504 54505 54507 54508 54509 5451 54510 54512 54516 54517 54518 5452 54520 54521 54522 54529 5453 54531 54532 54534 54535 54536 54537 54538 54539 54540 54541 54542 54543 54545 54549 54552 54554 54555 54556 54557 54558 54566 54567 5457 54581 54583 54584 54585 54587 54596 546 5460 54602 54606 54617 54619 5462 54620 54621 54622 54623 54625 54626 54627 54629 5463 5464 5465 54660 54662 54663 54664 54665 5467 54674 54675 54676 54677 5468 54680 54681 54682 5469 547 54700 54704 54707 54708 5471 54716 54718 54726 5473 54732 54733 54734 54737 54739 54741 54742 54749 5475 54751 54752 54753 54754 54756 54757 54758 5476 54760 54762 54764 54765 54768 54776 54778 5478 54780 54784 54785 54788 5479 54790 54793 54795 54796 54797 54798 54799 5480 54800 54801 54802 54805 54806 54807 54808 54809 5481 54810 54811 54812 54813 54814 54815 54816 54819 54820 54821 54822 54823 54825 54826 54827 54828 54829 54830 54831 54832 54834 54836 54838 54839 54840 54841 54842 54843 54845 54847 54849 54850 54851 54852 54853 54854 54855 54856 54857 54858 54859 54861 54862 54863 548644 548645 54865 54866 54867 54868 54869 54870 54872 54873 54874 54875 54876 54877 54878 54879 54880 54881 54882 54883 54884 54885 54887 54888 54890 54891 54892 54893 54894 54896 54897 54898 54899 549 54900 54901 54902 54903 54904 54905 54906 54908 54910 54913 54914 54915 54916 54918 54919 54920 54921 54922 54923 54925 54926 54927 54928 54929 5493 54930 54931 54932 54933 54934 54935 54936 54937 54938 54939 5494 54940 54941 54942 54943 54946 54947 54948 54949 5495 54951 54952 54953 54954 54955 54956 54957 54958 5496 54960 54961 54962 54963 54964 54965 54967 54968 54969 54970 54971 54972 54973 54974 54976 54977 54978 54979 5498 54980 54981 54982 54984 54985 54986 54987 54988 54989 5499 54991 54993 54994 54995 54996 54997 54998 55 550 5500 55000 55001 55002 55003 55004 55005 55006 55007 55008 55009 5501 55010 55011 550112 55012 55013 55014 55015 55016 55017 55018 5502 55020 55022 55023 55024 55026 55027 55028 55030 55031 55032 55033 55034 55035 55036 55037 55038 55039 5504 55040 55041 55048 55049 55051 55052 55054 55055 55056 55057 55061 55062 55063 550631 55064 550643 55065 55066 55068 55069 5507 55070 55071 55072 55073 55074 55075 55076 55080 55081 55082 55083 55084 55086 55088 55089 5509 55090 55092 55093 55094 55095 55096 5510 55100 55101 55102 55103 55105 55106 55108 55109 5511 55110 55111 55112 55113 55114 55116 55119 55120 55122 55124 55125 55127 55128 55129 55130 55131 55132 55133 55135 55137 55138 55139 5514 55140 55142 55143 55144 55145 55146 55147 55148 55149 5515 55150 55151 55152 55153 55154 55156 55157 55159 5516 55160 55161 55163 55164 55165 55166 55167 55168 55170 55171 55172 55173 55174 55175 55176 55177 55178 55179 5518 55180 55181 55182 55183 55184 55186 55187 55188 5519 55190 55191 55192 55193 55194 55195 55196 55197 55198 55199 552 5520 55200 55201 55203 55204 55205 55206 55207 55208 55209 5521 55210 55212 55213 55214 55215 55216 55217 55218 55219 5522 55220 55222 55223 55224 55225 55226 55227 55228 55229 5523 55230 55231 55233 55234 55236 55238 55239 5524 55240 55243 55244 55245 55246 55247 55248 55249 5525 55250 55251 55252 55253 55254 55255 55256 55257 55258 55259 5526 55260 55262 55266 55267 55268 55269 5527 55270 55272 55273 55274 55275 55276 55277 55278 55279 5528 55280 55281 55282 55283 55284 55285 55286 55287 55288 552889 55289 5529 55290 552900 55291 55293 55294 55295 55296 55297 55298 55299 553 5530 55300 55301 55303 55304 55308 5531 55311 553115 55312 55313 55314 55315 553158 55316 55317 55319 5532 55320 55321 55322 55323 55324 55325 55326 55327 55328 55329 5533 55330 55331 55332 55333 55334 55335 55336 55337 55339 5534 55340 55341 55342 55343 55344 55345 55346 55347 55349 55350 55351 55352 55353 55355 55356 55357 55359 5536 55361 55362 55364 55365 55366 55367 5537 55370 55374 55379 5538 55384 55388 554 554203 55421 55422 55423 554235 554236 55425 554251 55432 55435 55437 5544 55449 55450 55454 5546 55466 5547 55471 55472 55486 5549 5550 55500 55501 55502 55503 55504 55505 55506 55507 55508 55509 5551 55510 55512 55515 5552 55520 55521 55526 55527 55529 5553 55532 55534 55536 5554 55540 55544 55545 5555 55552 55553 55556 55558 55559 55561 55565 55567 55568 5557 55571 55572 55573 55576 55577 55578 5558 55582 55585 55588 55589 55591 55592 55593 55596 55599 55600 55601 55602 55603 55604 55605 55607 55608 55609 55610 55611 55612 55613 55614 55615 55616 55617 55619 5562 55620 55621 55622 55623 55624 55625 55626 55627 55628 55629 5563 55630 55631 55632 55633 55634 55635 55636 55638 5564 55640 55643 55644 55646 55647 5565 55650 55651 55652 55653 55654 55655 55656 55657 55658 55659 5566 55660 55661 55662 55663 55664 55665 55666 55667 55668 55669 5567 55670 55671 55672 55676 55677 55679 55680 55681 55683 55684 55686 55687 55689 5569 55690 55691 55692 55693 55695 55696 55697 55698 55699 5570 55700 55701 55702 55703 55704 55705 55706 55707 55709 5571 55711 55713 55714 55715 55716 55717 55718 55719 55720 55721 55722 55723 55726 55727 55728 55729 5573 55731 55732 55733 55734 55735 55737 55738 55739 55740 55741 55742 55743 55744 55745 55746 55748 55749 5575 55750 55751 55752 55753 55754 55755 55756 55757 55758 55759 5576 55760 55761 55762 55763 55764 55765 55766 55768 55769 5577 55770 55771 55773 55775 55776 55777 55778 55779 5578 55780 55781 55783 55784 55785 55786 55787 55788 55789 5579 55790 55791 55793 55794 55795 55796 55798 55799 558 5580 55800 55802 55803 55805 55806 55808 55809 5581 55810 55811 55812 55813 55814 55815 55818 55819 5582 55823 55824 55825 55827 55829 5583 55830 55831 55832 55833 55835 55837 55839 5584 55840 55841 55843 55844 55845 55846 55847 55848 5585 55850 55851 55852 55853 55854 55855 55856 55857 55858 55859 5586 55860 55861 55862 55863 55867 55869 5587 55870 55871 55872 55876 5588 55884 55885 55888 55889 5589 55890 55892 55893 55897 55898 5590 55900 55901 55902 55904 55905 55906 55907 55909 5591 55911 55914 55915 55916 55917 5592 55920 55922 55924 55929 5593 55930 55937 5594 5595 55954 55957 55958 55959 55964 55966 55967 55968 55969 5597 55970 55971 55972 55973 55974 55975 5598 5599 56 5600 56000 56005 56006 5601 5602 5603 56034 5604 5605 56052 5606 56061 56062 56063 5607 5608 5609 56097 56098 56099 5610 56100 56101 56102 56103 56104 56105 56106 56107 56108 56109 5611 56110 56111 56112 56113 56114 5612 56120 56121 56122 56123 56124 56125 56126 56127 56128 56129 5613 56130 56131 56132 56133 56155 5616 56160 56164 56165 56169 56171 56172 5618 56180 56181 56203 56204 5621 5623 5624 56241 56242 56243 56245 5625 56252 56253 56254 56255 56256 56257 56259 56260 56261 56262 56265 56267 5627 56270 56271 56288 5630 56301 5631 56339 5634 56342 5635 5636 5638 5639 5641 56413 5644 5646 56474 56477 56478 56479 5649 5652 56521 5654 56548 566 5660 56603 56605 56606 56616 5662 56623 5663 5664 56647 56648 56649 56650 56652 56654 56655 56658 56659 56660 56666 56670 56672 56673 56674 56675 56681 56683 567 56704 56729 56731 5681 5682 56829 5683 56833 56834 5684 56848 5685 56850 56851 56852 56853 5686 5687 5688 56882 56886 56888 56889 5689 56890 56892 56893 56894 56895 56897 56898 56899 5690 56900 56901 56902 56904 56905 56906 56907 5691 56910 56911 56912 56913 56915 56916 56917 56919 5692 56920 56922 56924 56925 56926 56927 56928 56929 5693 56931 56935 56937 56938 5694 56940 56941 56942 56943 56944 56945 56946 56947 56948 56949 5695 56950 56951 56952 56953 56954 56957 5696 56961 56963 56964 56965 56967 56970 56971 56975 56977 56978 5698 56980 56981 56983 56984 56985 56986 56987 5699 56990 56992 56993 56994 56995 56996 56997 56998 56999 570 5700 57001 57002 57003 57007 5701 57010 57017 57018 57019 5702 57020 57026 57030 57035 57037 57038 5704 57045 57048 5705 57050 57053 5706 57060 57061 57062 5707 5708 57082 57085 57088 57089 5709 57091 57092 57094 57095 57096 57097 57099 571 5710 57101 57102 57103 57104 57105 57106 57107 57109 5711 57111 57116 57117 57118 57120 57121 57122 57124 57125 57126 57128 57129 5713 57130 57132 57134 57136 57139 5714 57140 57142 57143 57146 57147 57148 57149 5715 57150 57153 57154 57156 57157 57159 5716 57161 57162 57165 57167 57168 57169 5717 57171 57175 57176 57178 57179 5718 57180 57181 57182 57184 57185 57186 57187 57188 57189 5719 57190 57191 57192 57194 57198 572 5720 57205 57209 5721 57210 57211 57212 57213 57214 57215 57216 57217 57221 57222 57223 57224 57226 57228 5723 57231 57232 5724 5725 5727 5728 57282 5729 57291 573 5730 5731 5732 57325 57326 5733 57332 57333 57335 57336 57337 57338 5734 57343 57348 5737 5738 57380 57381 5739 57393 57396 5740 574028 574029 57403 57404 574040 57405 57406 57407 57409 57410 57412 57414 57415 57418 57419 5742 5743 5744 57446 57447 57448 57449 5745 57451 57452 57453 57455 57456 57458 57459 5746 57460 57461 57462 57463 57464 57465 57466 57468 57469 5747 57470 57471 57472 57473 57474 57475 57476 57477 57478 57479 57480 57482 57484 57486 57488 57489 57491 57492 57493 57494 57495 57496 57497 57498 575 57501 57502 57504 57505 57506 57507 57508 57509 57510 57511 57513 57514 57515 57520 57521 57522 57523 57524 57526 57528 57529 5753 57530 57531 57532 57533 57534 57535 57536 57537 57538 57539 5754 57540 57541 57542 57544 57545 57546 57547 57549 57551 57552 57553 57554 57555 57556 57558 57559 5756 57560 57561 57562 57563 57565 57567 57568 57569 5757 57570 57571 57572 57573 57574 57576 57577 57578 57579 57580 57582 57583 57584 57585 57587 57589 57590 57591 57592 57593 57594 57595 57596 57597 57599 576 57600 57602 57604 57605 57606 57608 57609 57610 57613 57614 57615 57616 57617 57619 57620 57621 57622 57623 57628 5763 57630 57633 57634 57636 57639 57643 57644 57645 57646 57647 57648 57649 57650 57653 57654 57655 57657 57658 57659 57661 57662 57664 57665 57666 57669 57670 57673 57674 57677 57678 57679 5768 57680 57683 57684 57685 57687 57688 57689 57690 57691 57692 57693 57695 57696 57697 57698 57699 577 5770 57700 57701 57703 57704 57705 57706 57707 57708 5771 57710 57711 57713 57715 57716 57717 57718 57719 57720 57721 57722 57724 57727 57728 57730 57731 57732 57733 5774 5775 57758 57761 57763 5777 5778 57786 57787 57794 57798 57799 578 5780 57801 57804 57805 5781 57819 5782 57820 57821 57822 57823 57826 57827 57828 5783 57830 57834 57835 5784 5786 57862 57863 57864 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 58 580 5800 5801 5802 5805 5806 581 5810 5813 5814 58155 5817 5818 58189 5819 58190 58191 582 5820 5822 5824 5825 5826 5827 5828 5829 583 5830 5831 5832 5833 5834 5836 5837 58472 58473 58475 58476 58477 58478 58480 58484 58485 58486 58487 58488 58489 58490 58491 58492 58493 58494 58496 58497 58499 585 58500 58504 58505 58506 58508 58509 58512 58513 58515 58516 58517 58525 58526 58527 58528 58529 58533 58538 5858 5859 586 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 587 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5896 5898 58986 5899 59 5900 5901 5902 5903 5905 5906 5908 59084 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 59269 5927 59271 59272 59274 59277 5928 59286 5929 593 5930 59307 5931 5932 5933 59335 59338 59339 5934 59340 59341 59342 59343 59344 59345 59348 59349 5935 59350 59352 5936 5937 5939 594 5947 5948 594842 594855 595 5950 595101 595135 5954 5955 5957 5959 596 5961 5962 5965 5966 597 5970 5971 5973 5976 5977 5978 5979 598 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 599 5990 5991 5992 5993 5994 5996 5997 5998 60 6001 6002 6003 6004 6006 6007 6009 6013 6015 6016 6018 6019 602 6023 60312 60313 60314 60343 6035 6036 6037 60370 6038 60385 60386 6039 604 60401 6041 60412 6043 60436 60437 6044 6045 6046 60468 6047 6048 60481 60484 60485 60487 60488 60489 6049 60490 60491 60492 60493 60494 60496 605 6050 60509 6051 60526 60528 60558 60559 60560 60561 6059 60592 606 60625 60626 606495 606551 60672 606724 60673 60674 60675 60676 60677 60678 60680 60681 60682 60684 60685 60686 607 608 6091 6093 6094 6095 6096 6097 610 6100 6102 6103 611 6117 6118 6119 6120 6122 6124 6125 6128 6129 613 6130 613037 6132 6133 6134 6135 6136 6137 6138 6139 6141 6142 6143 6144 6146 6147 6150 6152 6154 6155 6156 6157 6158 6159 6160 6161 6164 6165 6166 6167 6168 6169 617 6170 6171 6173 6175 6176 6181 6182 6183 6184 6185 6187 6188 6189 6191 619189 619190 619207 619208 619279 6193 619373 619383 6194 6195 6196 6197 6198 6199 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6217 6218 622 6222 6223 6224 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6247 6248 6249 6251 6252 6253 6256 6257 6259 6261 6262 6263 627 6271 6272 6273 6274 6275 6276 6277 6279 6280 6281 6282 6283 6284 6285 6286 629 6293 6294 6296 6297 6300 6301 6302 63027 6303 63035 6304 6305 6307 6309 631 6310 6311 6314 6319 632 6320 6322 6324 6326 6327 6328 6329 633 6330 6331 6334 6335 6337 6338 6339 634 6341 6342 6343 6345 6347 6348 6349 635 6351 6352 6357 6358 636 6362 6367 6368 6369 637 6370 6372 6373 6374 6375 6376 638 6382 63826 63827 6383 6385 6386 6387 63874 63875 63876 63877 6388 6389 63891 63892 63893 63894 63895 63897 63898 63899 639 6390 63901 63905 63906 63908 6391 63910 63914 63915 63916 63917 6392 63920 63922 63923 63924 63925 63926 63929 63931 63932 63933 63934 63935 63939 63940 63941 63943 6396 63967 6397 63970 63971 63976 63977 63979 6398 6399 640 6400 64005 6401 6402 6403 6404 6405 64061 64062 64064 64065 64067 64072 64073 64077 64078 64080 64081 64083 64084 64087 64089 64090 64091 64092 64093 64094 64097 64098 641 64101 64105 64108 64110 64112 64114 64115 64116 64118 64121 64122 64123 64127 64129 641298 64130 64131 641311 64132 641339 64135 641367 641371 641372 6414 64145 641455 64146 64147 64149 6415 64151 6416 641638 641649 64167 64168 64170 641700 64172 64174 64175 6418 64180 6419 641977 642 64207 6421 64210 64215 64216 64218 64219 6422 64221 64222 64223 64224 64225 642280 6423 64231 64236 6424 64240 64241 642475 6425 6426 642658 6427 6428 642819 64282 642826 64283 64284 642846 64285 642852 64288 6429 642938 642946 642987 643 6430 643008 643036 6431 643155 64318 64319 6432 64320 643224 64324 643246 643253 64326 64327 64328 6433 643314 64332 64333 643338 643376 643382 643387 6434 64342 64343 64344 64359 643641 643677 643719 64374 64375 64376 643763 643834 643836 643837 643853 643854 64386 643866 64388 6439 643904 64393 64395 64396 64397 64398 64399 644 64400 644019 64403 64407 64409 644096 6441 64410 64411 64412 644128 644139 644150 644165 64417 644172 64418 64419 6442 64420 64421 64422 64423 64425 64426 64427 64428 64429 6443 64430 64431 64432 64434 644353 6444 64446 6445 644511 644538 644591 644596 6446 644619 6447 64478 6448 644809 644815 644873 644890 6449 64493 644936 644974 64499 645 6450 64506 6451 645121 645142 645166 64518 6452 6453 645332 645367 645431 645432 645455 6455 6456 645644 645676 645683 645687 64577 645784 64581 645811 64582 645840 64598 64599 64600 64601 646023 646024 646074 6461 6462 646214 646300 6464 646405 64645 646450 646471 64651 646600 646658 646762 6468 64682 646851 64689 646892 6469 64693 646982 64699 646999 6470 647024 647033 647042 64708 647087 64710 647121 64714 64718 6472 647288 6474 64743 64744 64745 64746 64747 64748 64750 64753 64754 64755 64756 64757 64759 64760 64761 64762 64763 64764 64766 64768 64769 6477 64770 64771 64772 64773 64776 64777 64778 64779 6478 64780 64781 64782 64783 64784 64785 647859 64786 64787 64788 64789 64792 64793 64794 647946 64795 647979 64798 64799 648 6480 64800 64801 64802 64805 6482 6483 64834 64837 64838 64839 6484 64840 64841 64843 64844 64847 64848 64849 64852 64853 64854 64855 64856 64857 64858 64859 64860 64863 64864 64866 6487 648740 648791 6489 64895 64897 649 6490 64900 64901 6491 64919 64921 64922 64924 64925 64926 64927 64928 6493 649330 6494 64940 64943 649446 64946 64949 6495 64951 6496 64960 64963 64965 64968 64969 6497 64975 64976 64978 64979 6498 64981 64983 6499 649946 650 6500 65003 65005 65008 65009 65010 65012 65018 6502 6503 650368 6504 6505 65055 65056 65057 65059 6506 65062 650623 65065 650655 6507 65078 6508 65080 65082 65083 65084 6509 65094 65095 651 6510 65108 65109 65110 65117 6512 65123 65124 65125 651250 6513 651302 6515 6517 6518 6519 652 6520 6521 6522 65220 652276 65243 65244 65249 6525 65250 65251 65258 6526 65260 65263 65264 65265 65266 65267 65268 6527 6528 6529 652966 652968 652995 653 653113 653121 653140 653145 653162 653188 653190 6532 653238 653268 6533 653319 653333 653361 653390 653404 653437 653489 6535 653519 653553 653566 653567 653583 653598 6536 653604 653635 653639 653653 653677 653687 653784 653786 653820 653857 6539 654 6540 6541 6542 654231 654254 6543 654320 654342 654346 654364 654429 654433 654434 654463 654466 6545 6546 6547 654790 6548 654816 654817 6549 6550 6553 6554 6556 6557 6558 6559 656 6560 6563 6565 6566 6567 657 6570 6571 6573 6574 6575 6576 6578 658 6580 6581 6583 6584 6585 6586 659 6590 6591 6594 6595 6596 6597 65975 65977 65979 6598 65980 65981 65982 65983 65985 65986 65987 65988 65989 6599 65990 65991 65992 65993 65996 65997 65998 65999 660 66000 66002 66004 66005 66008 6601 6602 6603 66035 66036 6604 6605 6606 6607 6608 6609 661 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 662 6621 6622 6623 6624 6625 6626 6627 6628 6629 663 6631 6632 6633 6634 6635 6636 6637 6638 664 6640 6641 6642 6643 6645 6646 664618 6647 664701 6648 6649 665 6650 6651 6652 6653 6654 6655 6659 666 6660 6662 6663 6665 6666 6667 6668 667 6670 6671 6672 6674 6675 6676 6678 6683 6687 6688 6689 669 6691 6692 6693 6695 6696 6697 670 6709 671 6710 6711 6712 6713 6714 6715 6716 6717 672 6720 6721 6722 6723 6726 6727 6728 6729 673 6730 6731 6732 6733 6734 6737 6738 6741 6742 6744 6745 6746 6747 6748 6749 675 6752 6753 6760 6764 6767 6768 6769 677 6770 6772 6773 6774 6775 6776 6777 677766 677767 677769 677772 677775 677777 677781 677797 6778 677821 677832 677847 677850 678 6780 6781 6782 6783 6785 6786 678655 6787 6788 6789 6790 6791 6792 6793 6794 6795 6799 6801 6804 6809 6810 6811 6812 6813 6814 6815 6817 6818 6819 682 6820 6821 6827 6829 683 6830 6832 6834 6835 6836 6837 6838 6839 684 6840 6843 6844 6845 6846 6850 6853 6854 6855 6856 6857 686 6861 6865 6866 6867 6868 6869 687 6871 6872 6873 6874 6875 6876 6877 6878 6879 688 6880 6881 6882 6883 6884 6885 6886 6887 6888 689 6890 6891 6892 6894 6895 6897 6899 6900 6901 6902 6903 6904 6905 6907 6908 6909 6911 6913 6915 6916 6917 6919 6920 692086 692094 692099 6921 692148 692223 6923 692312 6924 6925 6926 6927 6929 6932 6934 6935 6936 6938 6939 694 6940 6941 6942 6944 6945 6947 6948 6949 695 6950 6954 696 6988 699 6990 6991 6992 6993 6996 6999 7001 7003 7004 7005 7006 7007 7008 7009 701 7010 7011 7012 7013 7014 7015 7016 7018 7019 7020 7023 7024 7025 7026 7027 7029 7030 7033 7035 7036 7037 7038 7039 7040 7041 7042 7043 7044 7045 7046 7047 7048 7049 705 7050 7051 7052 7053 7056 7057 7058 7059 706 7060 7062 7064 7066 7067 7068 7069 7070 7071 7072 7073 7074 7075 7076 7077 7078 7079 708 7082 7083 7084 7086 7087 7088 7089 7090 7091 7093 7094 7095 7096 7097 7098 7099 71 710 7100 7102 7105 7106 7107 7108 7109 7110 7111 7112 7117 712 7122 7123 7124 7125 7126 7127 7128 713 7130 7132 7133 7134 7136 7137 7138 714 7140 7145 7148 715 7150 7151 7152 7153 7155 7156 7157 7158 7159 716 7161 7162 7163 7164 7165 7166 7167 7168 7169 717 7170 7171 7172 7174 7175 7177 7178 7179 718 7181 7182 7184 7185 7186 7187 7188 7189 719 720 7200 7203 7204 7205 7216 722 7220 7221 7222 7225 7226 7227 723809 723972 724102 7247 7248 7249 725 7251 7253 7257 7259 726 7260 7262 7263 7264 7265 7266 7267 7268 727 7270 7272 7273 7275 7277 727800 727896 727897 727936 727956 727957 728 7280 728024 728039 728118 728130 728190 728194 728233 728239 728262 728264 728294 7283 728323 728340 728358 728378 728392 7284 728411 728448 728464 728489 728554 728568 728591 7286 728606 728609 728613 728621 728635 728640 728642 728643 728656 728689 728723 728743 728747 728758 7288 728819 728833 728855 728882 7289 728963 728989 7290 729020 729082 729085 729092 729096 7291 729156 729171 729176 7292 729230 729234 729238 729288 7293 729338 729359 729375 7294 729438 729440 7295 729515 729533 729540 729582 729597 7296 729603 729614 729633 729678 7297 729747 729786 729799 7298 729830 729873 729877 729920 729956 729967 729991 729993 730 730013 730051 730092 730094 7301 730101 730112 7305 730668 7307 730971 7311 731220 7314 7316 7317 731789 7318 7319 7320 7321 7322 7323 7324 7325 7326 7327 7328 7329 733 7332 7334 7335 7336 7337 734 7341 7342 7343 7345 7347 7348 7349 7351 7352 7353 735301 7355 7357 7358 7360 7368 7371 7372 7373 7374 7375 7376 7378 7379 738 7380 7381 7384 7385 7386 7388 7389 7390 7391 7392 7398 7399 740 7402 7403 7405 7407 7408 7409 7410 7411 7412 7414 7415 7416 7417 7419 7421 7422 7423 7424 7425 7428 7429 7430 7431 7433 7434 7436 7439 744 7442 7443 7444 7447 7448 745 7450 7453 7454 7456 7458 746 7461 7462 7464 7465 7466 7468 7469 747 7471 7473 7474 7475 7476 7477 7479 7480 7481 7482 7483 7484 7485 7486 7490 7494 7499 750 7503 7504 7507 7508 751071 7511 7512 7514 7515 7516 7517 7518 752 7520 752014 7525 7528 7529 753 7531 7532 7533 7534 7535 7536 7538 7539 754 7541 7542 7543 7549 755 7551 7552 7553 7554 7555 7556 7559 7561 7562 7564 7565 7566 7567 7568 7569 757 7570 7571 7572 7574 7576 7579 7580 7581 7582 7584 7586 7587 7589 7592 7593 7594 7596 7597 760 761 762 7620 7621 7625 7626 7627 7629 7633 7634 7637 7638 7639 7643 7644 766 767 7673 7675 767557 767558 7678 767811 767846 768096 768097 7681 768206 768211 7690 7691 7692 7693 7694 7695 7696 7697 7699 770 7700 7701 7702 7703 7704 7705 7706 7707 7709 771 7710 7711 7712 7716 7718 7726 7727 7728 773 7730 7732 7733 7737 7738 7739 774 7741 7743 7745 7746 7748 775 7750 7752 7753 7754 7755 7756 7757 776 7760 7761 7762 7763 7764 7766 7767 7768 7769 777 7770 7771 7772 7773 7775 7776 7779 778 7781 7782 7784 7786 7789 7791 7798 7799 780 7802 7803 7804 7805 780776 7812 7813 7818 782 783 7832 7837 784 7840 7841 7844 7846 7849 785 7850 7851 7852 7855 7857 7862 7866 7867 7869 7871 7873 7874 7879 788 7881 7884 78986 78987 78988 78989 78990 78991 78992 78994 78995 78996 78997 78998 78999 790 79000 79001 79002 79003 79004 79005 79006 79007 79008 79009 79012 79016 79017 79018 79019 79020 79022 79023 79025 79026 79027 79029 7903 79031 79033 79034 79035 79036 79037 79038 79039 79041 79042 79047 79048 7905 79050 79053 79056 79058 79064 79065 79066 79068 79070 79071 79072 79073 79074 79075 79077 79078 79080 79081 79084 79085 79086 79087 79088 79089 79090 79091 79092 79094 79095 790955 79096 79098 79101 79102 79109 7913 79132 79133 79134 79135 79137 79139 79140 79142 79143 79144 79145 79147 79148 79149 7915 79152 79153 79154 79155 79156 79157 79158 79159 7916 79161 79165 79166 79168 79169 7917 79170 79171 79172 79173 79174 79175 79176 79177 79178 7918 79180 79183 79184 79187 79188 7919 79191 7920 7922 79228 7923 79230 79258 79269 79290 793 79315 7936 79363 79364 79365 79366 79368 79369 79370 7940 79400 7941 79411 79412 79413 79414 79415 7942 79441 79442 79443 79446 79447 79465 79469 79541 7955 79567 79568 7957 79570 79571 79572 79573 79575 79576 79577 79581 79582 79583 79585 79586 79587 79590 79591 79594 79595 79596 79598 79600 79602 79603 79605 79607 79608 79609 79611 79612 79613 79616 79618 79621 79622 79623 79624 79625 79626 79627 79628 79629 79630 79631 79632 79633 79634 79635 79637 79639 79640 79641 79642 79643 79644 79645 79646 79647 79648 79649 7965 79650 79651 79652 79654 79656 79657 79658 79659 79660 79661 79663 79664 79665 79666 79667 79668 79669 79670 79671 79672 79673 79674 79675 79676 79677 79680 79682 79683 79684 79685 79689 79690 79691 79692 79693 79694 79695 79696 79697 79699 79701 79703 79705 79706 79707 79709 79710 79711 79712 79713 79714 79716 79717 79718 79719 79720 79722 79723 79724 79725 79726 79728 79729 79730 79731 79733 79734 79735 79736 79738 79739 79741 79742 79744 79745 79746 79747 7975 79750 79751 79752 79753 79754 79755 79758 79759 7976 79760 79762 79763 79767 79768 79770 79772 79774 79776 79777 79778 7978 79780 79781 79782 79783 79784 79786 79788 79789 7979 79791 79792 79794 79796 79797 79798 79800 79801 79802 79803 79805 79807 79809 79810 79811 79812 79813 79814 79815 79816 79817 79818 79819 7982 79820 79822 79823 79825 79827 79828 79829 79830 79831 79832 79833 79834 79836 79837 79838 79839 7984 79840 79841 79842 79843 79844 79845 79846 79847 79848 79849 79850 79852 79853 79854 79856 79857 79858 79861 79862 79863 79864 79865 79866 79867 79868 79869 79870 79871 79872 79873 79874 79875 79876 79877 79879 7988 79882 79883 79884 79885 79886 79887 79888 79890 79891 79892 79893 79894 79895 79896 79897 79898 79899 79901 79902 79903 79905 79906 79908 7991 79912 79913 79915 79917 79918 79921 79922 79923 79924 79925 79927 79929 7993 79930 79931 79932 79933 79934 79935 79937 79939 7994 79940 79943 79944 79946 79947 79948 79949 79954 79955 79956 79957 79958 79959 79960 79961 79963 79966 79968 79969 79970 79971 79973 79974 79977 79979 79980 79982 79983 79986 79987 79989 79990 79991 79992 79993 79998 800 8000 80000 80003 80004 80005 80006 80007 80008 80010 80011 80012 80013 80014 80017 80018 80019 80020 80021 80022 80023 80024 80025 80028 80031 80035 80039 80045 80054 80055 80063 80067 80069 80071 80072 80094 80095 80097 801 80108 80110 80114 80115 80119 80122 80124 80127 80128 80129 8013 80131 80135 80139 80142 80143 80144 80145 80146 80148 80149 80150 80152 80153 80154 80155 80161 80162 80167 80169 80173 80174 80176 80177 80178 80179 80183 80184 80185 8019 80194 80195 80196 80198 80199 80201 80204 80205 80206 80207 80208 80209 8021 80210 80212 80213 80216 80217 80218 80219 80221 80222 80223 80224 80227 80228 80230 80231 80232 80233 80235 80237 80243 80254 80255 80256 80258 80262 80263 80264 80267 8027 80270 80271 80273 80274 80279 8028 8029 80298 8030 80301 80303 80304 80305 80306 80307 80308 8031 80310 80311 80312 80313 80314 80315 80317 80318 80320 80321 80323 80324 80325 80326 80328 80329 80331 80332 80333 80335 80336 80339 8034 80342 80344 80345 80346 80347 80349 80350 80351 80352 8036 8038 80380 80381 8045 805 8050 8061 8065 80700 80705 80709 80714 80723 80724 80725 80726 80727 80728 8073 80731 80736 80737 80740 80741 80742 80745 80746 80755 80757 80758 80759 8076 80760 80762 80764 80765 80772 80774 80775 80776 80777 80778 8078 80781 80789 8079 80790 808 80817 80818 8082 80820 80821 80823 80824 80829 80830 80832 80833 80835 8085 80851 80853 80854 80856 8086 80862 80863 80864 80868 8087 8089 80895 80896 8091 80975 8099 81 8100 81025 81027 81029 81030 81031 81034 81035 81037 8106 811 8110 8111 8115 8120 8123 8125 813 8131 8139 814 8140 8148 81488 81490 81491 81493 815 81501 81502 8153 81532 81533 81537 81539 81542 81543 81544 81545 81550 81552 81553 81554 81555 81556 81557 81558 81559 81562 81563 81565 81566 81567 81569 81570 81571 81572 81573 81575 81576 81577 81578 81579 816 81602 81603 81605 81606 81607 81608 81609 8161 81610 81611 81614 81615 81616 81617 81618 81619 81620 81621 81622 81624 81627 81628 81629 81631 8165 81669 81671 81688 81689 81691 81693 817 8170 81704 81706 8174 8175 8178 81786 81788 81789 81790 81793 81794 81796 818 81831 81839 81844 81846 81847 81848 81849 81853 81854 81855 81856 81857 81858 8187 81873 81875 81876 81887 81888 81889 8189 81890 81892 81893 81894 819 8190 8192 81926 81928 81929 8193 81930 81931 81932 8195 820 8202 8204 8208 8209 821 8214 8216 8218 822 8220 8224 8225 8226 8227 8228 823 8233 8237 8239 824 8241 8242 8243 825 826 8260 8263 8266 8269 8270 8273 8277 828 8288 8289 829 8291 8292 8293 8294 8295 830 8301 8303 8309 831 8310 8312 8313 8314 8315 8317 8318 832 8320 8321 8322 8323 8324 8325 8326 8328 833 8330 8331 8332 8334 8336 8337 8338 8339 83394 834 8340 83401 8341 83416 8342 8343 83439 8344 83440 83442 83443 83444 83448 83449 8345 83450 83451 83452 8346 83460 83461 83463 83464 83468 8347 83473 83475 83478 83479 8348 83480 83481 83483 8349 835 8350 8351 8352 8353 83538 8354 83540 83541 83543 83544 83547 83548 83549 8355 83552 8356 8357 8358 8359 83590 83591 83592 83593 83594 83595 83596 836 8360 83604 83605 83606 83607 83608 8362 8363 83636 83637 83638 8364 83640 83641 83642 83643 83648 8365 83650 83657 83658 8366 83660 83666 83667 8367 83690 83692 83693 83694 83695 83696 83697 83698 83699 837 8370 83700 83706 83707 83714 83715 83716 83719 8372 83723 83729 83732 83733 83734 83737 83742 83743 83744 83746 83752 83756 83758 83759 83786 83787 8379 838 83849 83850 83852 83853 83854 83855 83856 83857 83858 83860 83861 83862 83871 83872 83874 83875 83876 83877 83878 83879 83881 83882 83884 83886 83887 83888 83889 83890 83891 83892 839 83903 83930 83931 83932 83933 83937 83938 83939 8394 83940 83941 83943 8395 83953 83955 83956 83959 8396 8398 83982 83983 83985 83986 83987 83988 83989 8399 83990 83992 83998 83999 840 84000 84002 8402 84033 84034 8404 8405 84054 84056 84057 84058 84059 8406 84060 84061 84062 84063 84064 84065 84067 84068 84069 8407 84070 84071 84072 84073 84074 84078 84079 8408 84080 84081 84083 84084 84085 8409 84099 841 84100 84101 84102 84105 84106 84108 8411 8412 84124 84126 84128 84129 84131 84132 84133 84134 84135 84138 84140 84142 84144 84146 84148 84152 84153 84154 84159 8416 84162 84163 84164 84166 84167 84168 8417 84171 84172 84173 84174 84179 8418 84181 84182 84186 84187 84188 84189 8419 84190 84191 84193 84196 84197 842 8420 84206 84215 84216 84217 84219 84220 84221 84222 84223 84224 84225 84226 84229 84230 84231 84232 84233 84236 84239 84240 84243 84245 84246 84247 84248 84249 8425 84250 84251 84253 84254 84255 84256 84258 84259 84260 84261 84262 84263 84264 84265 84266 84267 84268 84269 8427 84270 84271 84272 84273 84274 84275 84276 84277 84278 84279 8428 84280 84281 84282 84283 84284 84285 84286 84287 84288 84289 84290 84292 84293 84294 84295 84296 84298 84299 843 84300 84301 84302 84303 84304 84305 84306 84307 84309 8431 84310 84311 84312 84313 84314 84315 84316 84317 84318 84319 84320 84321 84324 84326 84327 84328 84329 84330 84331 84332 84333 84334 84335 84336 84337 8434 84340 84342 84343 8435 8436 84364 84365 8437 84376 8438 8439 844 8440 84417 84418 84419 8443 84433 84436 84437 84439 8444 84440 84441 84444 84445 84446 84447 84448 84449 8445 84450 84451 84455 84456 84458 8446 84460 84461 84464 84465 84466 8447 8448 8449 84498 8450 84501 84502 84503 8451 84513 84514 84515 84516 84517 84518 84519 8452 84520 84522 84524 84525 84527 84529 8453 84532 84536 8454 84541 84542 84545 84547 84548 84549 8455 84552 84557 84561 84570 84572 8458 8459 846 8460 84612 84614 84617 84619 8462 84620 84622 84623 84624 84626 84627 84628 84629 8463 84632 84634 84636 8464 84640 84641 84645 84649 84650 84656 84657 84658 84659 84660 84661 84662 84668 84669 8467 84671 84674 84675 84678 84679 8468 84680 84681 84687 84688 84689 84693 84695 84696 84698 84699 847 8470 84700 84701 84705 84706 84707 84708 84709 84717 84720 84722 84725 84726 84727 8473 84733 84734 84735 84740 84747 84749 84750 84752 84759 8476 84765 84766 84769 8477 84771 84775 84787 8479 84790 84791 84792 84793 84795 84798 8480 84803 84804 84807 84808 84809 8481 84811 84812 84814 84815 84816 84817 84818 8482 84820 84823 84824 84826 8483 84830 84832 84833 84836 84837 84838 8484 84842 84844 84848 84851 84852 84858 84859 84861 84864 84865 84866 84868 84869 8487 84870 84871 84872 84874 84875 84876 84878 84879 84881 84883 84885 84886 84888 84890 84891 84892 84893 84894 84895 84896 84897 84898 84899 8490 84900 84901 84902 84904 84905 84908 84909 8491 84910 84911 84912 84913 84914 84915 84916 84918 84919 8492 84920 84922 84923 84924 84925 84926 84928 84929 8493 84930 84932 84933 84934 84936 84937 84938 84939 84940 84941 84942 84944 84945 84946 84947 84948 8495 84950 84951 84952 84953 84954 84955 84957 84958 84959 8496 84960 84961 84962 84964 84967 84968 84969 8497 84971 84973 84975 84976 84978 8498 84981 84983 84984 84985 84986 84987 84988 84989 8499 84991 84992 84993 84996 8500 85001 85002 85007 85009 8501 85012 85013 85014 85015 85019 8502 85021 85025 85026 85027 85028 8503 8504 8505 8506 8507 8508 8509 8510 8512 8514 8515 8516 8517 8518 8519 8520 8521 8522 85235 85236 8525 8526 8527 8528 8529 8530 85300 85301 85302 8531 85313 85315 85319 8532 85320 85329 8533 8534 8535 85352 85358 85359 8536 85360 85363 85364 85365 85366 85369 8537 85376 85377 85378 85379 8539 85395 8540 85403 85406 85407 85409 8541 85413 85414 85415 85417 8542 8543 85437 85439 8544 85440 85441 85442 85444 85449 8545 85450 85451 85453 85455 85456 85457 85458 85459 8546 85460 85461 85462 85463 85464 85465 8547 85474 85476 85477 85478 85479 8548 85480 8549 85495 8550 8551 8552 8553 8554 8555 8556 8557 8558 8559 8560 8562 8563 8564 8565 8566 8567 8568 8569 857 8570 8572 8573 8574 8575 8576 8577 8578 858 85865 86 860 8600 8601 8602 8603 8604 8605 8607 8608 8609 861 8611 8612 8613 8614 8615 862 8620 8621 8622 8623 8624 8625 8626 8629 863 8630 8631 8632 8633 8634 8635 8636 8637 8638 8639 864 8641 8642 8643 8644 8645 8646 8648 8649 865 8650 8651 8654 8655 8658 8659 8660 8661 8662 8663 8664 8665 8666 8667 8668 8669 867 8671 8672 8673 8674 8675 8676 8677 8678 868 8681 8682 8683 8685 8690 8692 8693 8694 8697 8698 87 8701 8702 8703 8704 8705 8706 8707 8708 871 8711 8714 8717 87178 8718 8720 8721 8722 8723 8724 8725 8726 8727 8728 8729 873 8731 8732 8733 8736 8737 8738 874 8740 8741 8742 8743 8744 8745 8747 8748 875 8751 8754 8755 8760 8761 8763 8764 8766 8767 8771 8772 8773 8774 8775 8776 87769 8777 8778 8780 8784 8785 8786 8787 8790 8792 8793 8794 8795 8797 8798 8799 88 8800 8801 8802 8803 8804 8805 8807 8809 881 8811 8812 8813 8814 8815 8816 8817 8818 8819 8820 8821 8822 8824 8825 8826 8828 8829 883 8831 8832 8833 8834 8835 8836 8837 8838 8839 8840 8841 8842 8843 8844 88455 8846 8847 8848 8850 8851 8853 8854 8856 8857 8858 8859 8861 8862 8863 8864 8867 8869 8870 8871 8872 8874 88745 8875 8876 8877 8878 8879 8880 8881 8882 8883 8884 8886 8887 8888 889 8890 8891 8892 8893 8894 8895 8896 8897 8898 8899 89 890 8900 8904 8905 8906 8907 8908 8909 891 8910 8911 8912 89122 8913 8914 8915 8916 892 8924 8925 8926 8927 8928 8930 8932 8933 8934 8935 8936 8938 8939 894 8940 8942 8943 8945 896 8968 8969 8970 8971 8972 8973 8974 8975 8976 89765 89766 89781 89782 89790 89795 89796 89797 898 89801 89822 89832 89837 89839 89845 89846 89848 89849 8985 89853 89857 89858 8986 89866 8987 89870 89874 89876 89884 89886 89887 8989 89890 89891 89894 899 8991 89910 8992 89927 8993 89932 8994 89941 89944 89953 89958 8996 8997 89970 89978 8999 9 90 900 90007 9001 9002 90025 90060 90075 901 90102 90113 90120 90121 9013 90134 90135 90139 9014 90141 9015 9016 90161 9019 90196 902 9020 90203 90204 9021 9022 90226 9023 90231 90233 9024 90246 90249 9025 9026 90268 9027 90271 90273 9028 90288 90293 9031 90313 90317 90321 90324 90326 9033 90332 90333 90338 9034 90342 90353 90355 90362 9037 90378 90379 90381 9039 90390 904 9040 90407 90410 90411 90416 90417 90423 90427 9043 9044 90441 9045 90459 9046 9047 9048 90480 90485 90488 9049 905 9050 90506 90507 9051 9052 90522 90525 90527 90529 9053 9054 9055 90550 90557 9056 9057 90576 90580 90586 90589 90592 90594 9060 9061 90624 90627 9063 90634 90637 90639 9064 90649 9066 90668 90673 90678 9068 9069 90693 9070 90701 9071 90736 9074 9075 9077 90780 9079 90799 908 9080 90806 90809 90826 90835 90843 90850 90853 90861 90864 90865 90871 90874 9088 909 9091 9092 9093 90933 9094 9095 90952 90956 90957 9096 9097 9098 90987 9099 90990 90993 91 9100 9101 91010 91012 9103 91039 9104 91050 91056 91057 9107 9108 911 9110 91107 9111 9112 91120 9113 91133 91137 9114 91147 91151 9117 91179 9118 91181 912 9120 9121 9122 91227 9123 9124 9125 91252 9126 9127 91272 9128 91283 91289 9129 91298 913 9130 91300 91304 9131 91316 91319 9132 9133 9134 9135 91351 91353 91355 9136 91368 91369 91373 9138 9139 91392 914 9140 91404 91408 91409 9141 91419 9143 91433 9144 91442 91445 9145 91450 91452 9146 91461 9147 9148 9149 915 9150 91522 91523 91526 91543 91544 9156 91574 9158 91582 91584 9159 916 91603 91607 91608 91612 91614 91624 91646 91647 91653 9166 91661 91662 91663 91664 9167 9168 91687 91689 9169 91694 91695 917 9170 91703 9172 9173 91734 91746 91748 91749 9175 91750 91752 91754 91768 91775 91782 9179 9180 91801 91807 9181 91828 9183 91833 9184 9185 91851 91860 91862 91869 9187 91875 9188 9189 91893 919 9191 91937 9194 91942 91947 91948 91949 9196 91966 9197 91975 91977 91978 92 920 9200 92002 9201 92014 92017 9202 9203 9204 9205 92070 9208 9209 92092 921 92104 92105 92106 9212 92126 9213 9214 92140 9215 92154 92162 9217 92170 9218 92181 9219 92196 9220 9221 92211 9223 92235 92241 92249 92255 92259 92270 9228 92283 92285 9229 92291 92292 92293 923 9230 92304 92305 9231 92312 9232 92335 92340 92342 92344 92345 9235 92359 9236 92369 92370 9238 92399 924 9240 92400 9241 9242 92421 9244 9245 9246 92482 92483 9249 925 9252 92521 9253 9254 9255 92558 9256 92565 92579 9258 92591 92595 92597 926 9260 92609 9261 92610 9262 9263 9265 92659 9266 92667 9267 92675 92689 92691 9270 92703 92714 92715 9274 92745 9275 9276 9277 9278 92797 92799 928 92806 92815 9282 92822 9283 9284 92840 92856 9289 929 9290 92906 92912 92922 92935 9294 92949 9295 9296 92960 92973 92979 92999 93 930 93010 93034 93035 93058 9306 9308 93081 93082 931 9310 93100 93109 9311 93129 93134 9314 93145 9315 93164 93166 9317 9318 93183 93185 9319 9320 9321 93210 9322 93233 9324 9325 9326 9328 9329 933 9330 9331 9332 93323 9333 9334 93343 93349 9337 9338 93380 9341 9342 93426 9343 93436 9344 93474 9348 93487 9349 93492 9351 93517 9352 9353 9354 9355 93550 93556 9358 93587 93589 93594 9360 9361 93611 9362 93621 93622 93624 93627 9363 9364 93643 9365 93653 93655 93663 93664 9367 9368 9369 9371 9372 9373 9374 9375 9377 9378 9379 9380 9381 9382 9383 9388 9389 939 9390 9391 9392 9394 93953 9397 93973 93974 93978 9398 93986 9399 94 940 9400 94005 94009 9401 94015 9402 94025 9403 94030 94031 94032 94039 9404 94056 94059 9406 94081 94086 9409 94097 941 9410 94101 94103 94104 94107 9411 9412 94120 94121 9413 94134 94137 9414 9415 94158 9416 9419 942 9420 9422 9423 94239 9424 94240 94241 9425 9427 94274 9429 943 9435 9437 9439 944 9440 9441 9442 9443 9444 9445 9446 9447 9448 945 9450 9451 9452 9453 9454 9455 9456 9459 946 9462 9463 9465 9466 9467 9468 9469 947 9470 9472 9473 9474 9475 9476 9477 9479 948 9480 9481 9482 9486 9487 9488 9489 949 9491 9493 9495 9497 9498 9499 95 950 9500 9501 9507 9508 9509 951 9510 9512 9513 9514 9515 9516 9517 9518 9519 952 9520 9521 9522 9524 9525 9526 9527 9528 9529 953 9530 9531 9532 9533 9534 9535 9536 9537 9538 954 9540 9541 9542 9545 9546 9547 955 9550 9551 9552 9553 9554 9555 9556 9557 9559 956 9562 9563 9564 9567 95681 9569 957 9570 9572 9575 9577 9578 958 9580 9581 9582 9583 9584 9585 9586 9587 9588 9589 959 9590 9592 9595 9597 960 9600 9601 9603 9604 9605 9609 961 9610 9611 9612 9616 9617 9618 9619 962 9620 9625 9627 9628 963 9630 9631 9632 9633 9635 9636 9637 9638 9639 9640 9641 9643 9644 9645 96459 9646 9647 9648 9649 965 9650 9651 9652 9653 9654 9655 9656 9657 9658 9659 966 96610 9662 9663 9665 9666 9667 9668 9669 967 9670 9671 9672 9673 9674 9675 96764 9677 9678 9679 968 9681 9682 9683 9684 9685 9686 9687 9688 9689 969 9690 9692 9693 9694 9695 9696 9697 9698 9699 97 970 9700 9701 9702 9703 9704 9705 9706 9708 9709 971 9710 9711 9712 9715 9716 9717 9718 9719 972 9720 9722 9724 9725 9726 9727 9728 973 9730 9731 9732 9733 9734 9735 9736 9737 9738 9739 974 9741 9742 9743 9744 9746 9747 9748 9749 975 9750 9751 9753 9754 9755 9757 9759 976 9760 9761 9762 9764 9765 9766 9767 9768 977 9770 9771 9772 9774 9775 9776 9777 9778 9779 978 9780 9781 9782 9783 9784 9785 9786 9787 9788 9789 9790 9791 9792 9793 9794 9796 9797 9798 98 9801 9802 9804 9805 9806 9807 9808 9810 9811 9812 9813 9814 9815 9816 9817 9818 9819 9820 9821 9823 9824 9825 9826 9827 9828 9829 983 9830 9831 9832 9833 9834 9836 9837 9839 984 9840 9841 9842 9843 9844 9846 9847 9848 9849 9851 9852 9853 9854 9855 9856 9857 9858 9859 9860 9861 9862 9863 9865 9866 9867 9868 9869 987 9870 9871 9873 9874 9875 9877 9878 9879 988 9880 9881 9882 9883 9884 9885 9886 9887 9889 989 9890 9891 9894 9895 9896 9897 9898 9899 990 9900 9901 9902 9903 9904 9905 9906 9907 9908 9909 991 9910 9911 9912 9913 9914 9915 9917 9918 9919 9920 9921 9922 9923 9924 9925 9926 9927 9928 9929 993 9931 9933 9934 9935 9936 9937 9938 9939 994 9940 9941 9942 9943 9945 9946 9948 9949 995 9950 9953 9955 9956 9957 9958 996 9960 9961 9962 9963 9966 9967 9968 9969 997 9970 9972 9973 9975 9976 9978 998 9980 9984 9985 9986 9987 9988 9989 999 9990 9991 9992 9993 9994 9997
-TCGA-19-2620-01 6.5 7.4 12.2 9.78 5.89 8.2 1.91 5.66 7.74 4.46 6.5 7.29 5.01 1.91 7.15 8.66 10.5 10 6.64 9.71 8.76 6.27 9.86 4.27 10.1 9.04 4.15 9.83 4.12 9.56 6.8 5.75 9.02 2.22 3.47 3.62 3.79 5.17 3.21 4.2 6.87 4.69 7.82 0 0 3.47 1.91 5.73 10.7 7.84 2.89 9.19 8.1 12 6.08 0.94 8.15 3.34 6.72 4.96 8.09 5.23 8.15 7.43 3.47 2.89 8.91 8 10.7 6.17 4.83 3.53 1.5 4.52 2.48 3.79 6.63 5.16 4.16 2.7 4.46 0.94 3.46 7.69 2.22 0 5.63 5.09 2.89 4.4 8.23 5.68 6.1 5.58 4.6 4.27 0 0 6.23 0 5.12 4.27 4.96 4.78 1.5 6.48 8.95 8.39 8.65 4.13 0 0 8.5 5.55 7.35 1.91 1.6 3.79 3.58 1.5 5.58 5.78 2.7 1.91 0.94 7.57 4.2 1.91 1.5 9.97 2.32 3.88 3.21 6.04 2.89 0.94 4.46 1.5 3.83 7.74 8.61 10.3 0 1.91 3.88 11.2 0 10.8 0.94 0 5.44 0 6.57 8.04 10.6 0 8.61 2.8 9.41 6.12 7.64 7.24 3.21 9 8.84 6.4 7.06 5.46 5.98 3.47 10.6 9.96 3.34 3.34 5.63 3.21 4.34 6.68 7.61 5.98 5.52 8.71 4.92 5.23 5.12 3.47 3.88 2.48 7.57 7.41 7.82 9.49 3.91 3.34 5.37 0 5.63 8.55 9.18 9.62 7.91 8.15 8.33 9.43 7.85 1.5 8.83 10.7 9.98 9.44 8.18 0 11.4 10.6 9.97 9.6 9.05 10.7 7.5 10.5 8.4 8.14 10.7 10.3 8.51 7.95 2.7 9.55 8.51 12.1 9.72 4.52 9.39 11.7 8.7 7.13 10 10.6 9.65 4.58 11.4 9.8 11.8 11.5 11.2 10.1 11.1 12 8.28 13.7 7.61 1.91 4.2 9.83 9.09 4.63 9.97 12.1 0 11.6 7.59 9.1 6.25 9.85 9.57 10.8 8.13 10.9 11.1 11.7 9.52 9.5 7.25 9.17 10.8 9.92 2.7 12.2 10.8 10.2 12.2 12.9 10.2 9.73 9.19 10.2 9 9.18 10.4 11.4 6.04 3.34 10.8 2.7 11.8 9.55 6.33 11.9 9.58 10.2 3.97 12.2 10.9 9.12 9.79 12.2 3.34 8.83 7.96 8.59 12.7 8.44 4.96 7.79 6.62 11.7 10.4 9.38 9.27 7.82 10.7 11.1 9.99 11.3 11 9.78 10.8 8.64 10 9.7 9.23 9.83 11.1 6.06 9.17 10.4 8.81 8.72 6.71 9.4 11.1 7.4 9.19 8.59 8.8 13.7 10 8.37 12.4 10.1 10.7 1.52 9.48 0 4.34 7.8 8.44 9.65 1.91 6.68 1.91 11.7 10.1 9.95 8.63 7.32 11.9 2.89 8.97 8.21 8.29 11.4 10 11.7 10.9 7 8.16 11 5.3 9.61 9.04 9.06 10.5 8.84 10.5 10.6 6.38 9.92 11.7 9.67 4.63 8.22 11.5 8.62 6.18 10.4 9.82 0.94 8.19 12.7 7.73 10.5 10.9 9.78 8.96 10.8 8.9 10.2 9.37 10.2 0.94 9.28 9.56 8.48 8.88 11.9 8.63 9.79 8.34 5.55 10.3 4.4 10.4 10.9 5.66 11.6 10.4 10.1 12.8 10.2 10.6 12.2 5.3 9.7 5.85 7.08 9.25 8.73 10.3 9.73 9.06 13.4 12 1.91 10.8 8.49 7.96 7.75 0 9.6 5.12 9.31 6.53 10.4 10.1 8.29 6.1 10 0 4.74 10.3 9.71 10.8 4.88 9.78 7.69 1.91 5.88 9.86 8.57 6.33 10.5 7.38 4.74 10.3 9.96 8.76 9.66 9.9 8.33 14.3 9.92 5.61 9.17 11.7 13.5 12.1 8.51 8.02 5.63 4.63 8.08 9.16 11.5 11.6 7.04 7.22 11.1 10.1 14 10.4 14.2 7.9 8.37 8.84 9.47 7.53 6.71 10 4.63 1.5 8.72 6 13.5 9.31 10.8 11.1 6.28 13 10.4 7.83 11.3 10.1 11.5 9.8 10.7 9.13 9.67 10.1 4.27 11.1 9.74 10.3 8.72 8.08 10.6 7.74 11.3 9.79 10.2 11.1 10.1 9.72 11.4 10.1 0 9.46 9.2 9.53 9.75 10.6 10.2 10.8 10.2 8.67 8.12 9.47 1.91 10.6 7.54 8.03 9.41 10.2 6.67 9.66 0.94 8.8 9.39 10.5 11.3 7.36 10.5 10.7 8.05 10.1 11.3 10.8 10.7 10.1 13.1 12.3 9.46 10.8 10.1 13 11.4 12.2 11 8.29 9.61 10.3 8.18 8.44 9.53 7.27 8.5 7.32 11.1 10.6 9.27 8.14 10.3 9.94 10.2 0 7.39 10.3 10.8 8.8 12.6 10.3 10.3 10.2 11.4 10.2 11.8 10.6 11.8 0.94 9.62 9.55 7.67 8.87 7.1 5.3 1.91 8.64 10.8 11.7 11.3 10.6 7.67 10.7 10.7 11.8 0 10.7 8.27 11.6 9.09 8.41 7.17 10.9 9.08 3.47 8.09 7.97 4.58 0.94 9.81 9.61 5.68 11.2 5.49 10.1 9.44 9.92 9.16 11.8 11.4 11.5 12.1 3.06 8.37 4.74 12.1 10.5 10.5 6.06 8.19 8.5 10.9 12.2 9.47 9.22 12.2 0 7.3 10.8 7.43 9.79 7.44 5.9 9.23 11.9 9.7 11.1 9.29 6.99 12 8.37 8.61 10.2 7.5 10.9 9.89 12.1 5.71 6.57 8.09 7.32 8.64 11.2 8.34 10.9 12.4 8.62 8.35 7.83 11 6.46 9.7 6.35 7.2 5.9 7.46 10.4 8.69 6.38 9.56 9.6 7.56 8.73 11.7 7.89 9.89 9.83 11.5 10.6 10.2 2.89 2.7 2.7 10.3 3.69 7.74 9.03 6.75 11.1 10.2 11.2 7.69 12 6.43 7.85 9.12 8.47 10.1 12.1 10.8 6.73 3.47 6.18 10.7 10.7 3.21 8.06 8.46 4.27 8.56 9.95 8.13 11.8 8.42 14.3 4.05 9.58 11.2 10.9 10.8 12.3 11.6 10.4 7.91 6.49 4.86 11.3 1.91 1.91 0.94 5.72 9.2 6.98 9.53 0.94 8.07 8.16 5.52 5.66 12.1 9.4 7.38 9.49 11.3 9.41 0 8.78 13.5 9.61 10.4 9.9 14.9 7.75 10.9 10.1 8.87 9.34 12.6 9.65 7.65 10.2 9.47 11.7 6.67 12.1 9.17 9.91 7.59 5.2 8.51 8.14 6.69 11.6 3.58 13.7 9.29 0 7.42 9.3 9.56 10.3 8.51 11.5 6.33 7.79 10.3 7.92 7.58 10.3 5.88 11.2 8.52 10.7 0 13 4.69 9.84 9.49 6.3 11.8 8.33 9.2 4.88 10.6 11.6 9.8 6.66 4.69 7.6 9.6 6.6 8.74 9.98 10.2 7.05 4.92 8.83 2.7 8.38 0.94 9.81 8.33 8.92 3.06 2.89 12.4 9.42 8.02 9.79 6.62 1.5 10.2 9.68 10.9 10 9.56 8.06 10.3 9.52 10.7 8.68 9.71 9.54 11.1 8.71 0 7.87 0.94 11.3 9.37 11.8 2.7 10.5 10.7 11.2 10.6 11.9 7.79 6.86 11.2 11.1 10.5 2.7 12 1.5 11 7.67 11.2 10.2 6.99 1.91 8.99 11.9 11.7 10.6 8.91 10.3 11.8 9.76 11 10.2 9.48 6.98 11.3 12.9 10.7 11.8 11.1 10.9 9.72 11 8.69 8.19 9.6 9.85 10.3 13 13.4 9.85 8.32 11 7.64 12.3 10.8 8.47 11.4 12.2 5.16 10.5 10.3 11.3 10.6 2.7 11.3 12.2 6.49 10.7 7.87 9.59 8.6 0.94 6.94 9.14 9.24 0 4.63 10.6 8.91 2.89 11.5 5.58 10.4 9.82 10.2 7.73 9.91 8.64 9.92 6.64 3.97 6.21 0 7.27 9.7 13.4 9.71 12.4 5.49 8.49 6.8 7.88 11.9 8.41 9.03 1.91 9.22 10.7 9.03 11.5 10.3 9.99 8.54 12.6 8.91 11.3 10.5 7.48 2.48 7.96 7.36 8.58 11.3 7.89 9.83 10.5 10.4 8.51 9.42 12.1 4.69 9.54 11.2 12.2 8.7 5.73 10.2 9.67 8.46 7.03 9.31 9.33 6.64 8.49 11.7 9.89 12.2 6.97 8.45 8.74 8.06 7.39 9.29 7.02 9.46 9.78 6.61 10 9.33 8.89 10.3 9.16 4.88 9.95 4.58 9.57 7.8 9.77 8.04 6.64 0 9.08 7.42 10.8 3.47 9.77 8.68 7.4 11.7 10.5 10.5 1.91 11.3 7.32 8.94 0 7.57 10.1 9.84 7.06 6.9 8.83 8.82 8.05 7.82 8.86 17.5 10.9 9.59 7 9.75 8.44 9.35 12.2 10.9 6.47 11.8 16 11.2 7.24 6.59 10.5 8.63 9.26 8.6 4.78 11.7 6.99 9.74 6.35 6.9 8.86 3.21 11.4 7.37 9.87 9.15 6.38 8.98 9.67 8.51 11.2 9.76 6.12 5.34 9.27 6.25 8.54 10.3 8.45 10.9 10.9 8.86 7.73 8.33 1.5 6.62 8.65 9.97 4.52 12.2 8.1 5.37 10.2 10.7 10.8 10.9 6.37 9.39 9.12 10.2 8.25 8.7 9.53 10.2 8.67 12.4 10.1 10.4 7.92 7.87 5.55 8.76 7.93 9.47 10.2 8.31 9.62 3.21 4.79 9.64 11 8.11 9.69 9.76 8.77 7.23 10.3 6.12 11.1 7.82 7.33 4.05 8.64 8.72 9.62 9.53 8.35 4.97 0.94 6.64 5.63 11.7 6.08 9.44 8.57 9.2 9.72 8.22 9.19 9.8 5.92 3.21 9 7.29 10.5 8.2 8.04 8.43 9.09 8.59 8.49 11.2 11.3 10 8.8 7.84 8.44 9.6 8.57 11.6 11.7 3.97 10.1 4.4 8.77 7.39 7.88 8.5 11.4 4.2 12.2 7.5 7.86 11.7 5.9 1.5 9.82 7.54 3.79 9.22 12.2 9.7 9.98 7.48 9.31 10.7 11.3 9.35 10.9 9.27 5.49 9.09 12 9.2 1.5 11.4 9.34 10.8 9.64 11.2 10.1 12.9 11.7 5.38 8.69 9.44 11.2 11.1 11.8 11.3 9.67 9.15 12.9 8.92 9.55 2.22 10.4 7.52 7 5.12 10 4.4 8.52 7.86 3.1 2.22 3.58 10.2 5.37 5.2 0 10.9 2.48 8.05 2.22 7.96 7.74 3.58 4.44 10.3 12.5 6.47 4.88 8.15 7.8 7.12 0.94 9.42 3.86 6.85 0 0 5.94 4.63 9.59 8.06 8.65 5.76 7.1 0.94 8.89 9.23 7.73 10.1 7.94 10.4 8.42 8.62 8.99 12.4 8.08 8.33 8.2 5.55 3.58 6.21 10.8 10.7 5.34 8.18 6.78 5.16 10 12.3 2.48 8.88 8.35 2.89 2.7 11.1 9.09 8.1 8.71 10.5 10.4 7.55 10.4 9.66 4.83 8.52 5.88 7.49 4.13 10.7 12.2 8.44 8.88 9.33 10.9 10.3 8.57 5.05 9.39 7.47 8.72 4.74 4.96 9.69 10.3 7.78 4.9 4.96 8.08 8.03 15.1 7.66 12.2 7.38 10.8 4.63 8.7 9.22 9.37 13.6 8.05 0 0 8.49 9.97 5.66 5.76 5.96 8.59 8.84 11.9 7.91 9.14 9.59 7.23 6.33 8.82 2.7 7.64 2.22 9.95 10.4 9.43 6.14 9.85 5.34 0 5.37 9.17 8.08 1.91 5.73 9.83 7.2 8.03 9.17 4.58 5.98 6.74 5.09 10.2 8.55 7.28 9.17 7.76 9.19 7.27 11.4 7.06 9.94 10.4 9.8 8.07 0 9.14 8.26 10.1 7.94 8.51 9.74 0 7.94 7.02 7.24 2.48 11.1 0 7.47 5.37 6.95 9.05 4.69 2.71 7.88 12.7 0 9.93 10.8 6.71 8.97 9.43 0 5.46 6.62 7.52 9.03 9.58 3.79 10.7 2.22 6.79 6.98 10.9 11 10.8 9.62 9.37 10.9 9.03 0 5.85 4.83 0 5.81 10.3 9.34 6.89 9.92 4.83 12.2 6.83 13 9.74 10.3 1.5 2.22 5.92 10.5 9.69 6.52 6.25 13.1 0.94 8.2 10.2 10.2 8.31 9.86 6.73 9.28 0 7.8 7.49 7.73 0 7.38 7.9 5.3 7.01 9.54 11.2 5.71 3.34 9.68 7.55 7.73 9.05 5.34 7.81 6.97 5.52 8.37 7.02 6.78 8.98 18.8 11.7 7.2 1.5 3.47 3.97 6.97 0 10.4 10.1 7.71 5.05 8.89 4.13 7.44 9.38 11.5 13 0.94 9.74 8.73 9.52 5.88 7.27 9.96 7.39 5.52 2.48 8.72 9.17 11.1 3.06 9.14 12.6 6 1.91 6.1 10.8 10.5 7.97 9.3 2.48 7.57 12.9 3.06 8.77 7.99 3.88 6.06 8.75 9.35 4.92 8.41 10.5 2.89 0.94 0.94 11.7 3.47 6.8 3.21 8.02 6.4 9.39 8.5 8.49 8.22 9.59 7.26 6.98 9.21 9.63 9.33 3.06 8.74 8.77 5.37 9.22 7.44 8.93 8.48 8.15 10.3 6.73 8.66 0 7.81 6.16 7.85 9.1 0 7.58 5.66 3.5 4.05 3.06 10.4 4.58 0 8.34 7.43 5.16 8.12 9.55 4.27 6.79 4.92 11.2 0 7.65 8.5 7.94 3.06 5.96 7.67 9.97 0.94 0 10.9 9.87 5.9 2.22 8.61 8.9 8.61 11.2 8.41 5.01 10 8.37 9.47 10.8 9.77 2.89 8.23 9.3 8.86 4.88 6.3 0.94 7.67 9.54 8.98 5.66 8.66 7.1 6.8 10.4 8.62 9.99 10.2 10 8.3 0 9.53 4.05 9.96 9.72 4.63 8.42 8.03 4.62 5.16 12.2 8.57 8.46 0.94 8.08 0 7.39 7.69 3.69 6.2 2.22 6.76 10.9 0 10.2 9.52 0 6.33 6.08 8.19 6 7.8 5.6 8.32 8.83 9.74 7.82 6.79 3.34 8.73 4.88 3.47 0.94 7.81 6.37 6.27 10.2 10.4 8.75 1.5 10.5 9.43 6.78 11.1 1.91 6.64 7.27 6.44 8.38 11.5 0 6.85 6.78 9.72 8.14 5.55 13.8 5.78 6.9 3.34 6.97 0.94 14.3 9.4 7.69 9.2 10.2 2.48 8.24 0.94 0.94 0 9.95 1.91 7.87 0.94 6.08 7.64 9.44 9.44 8.54 5.98 3.79 9.95 9.13 6.4 7.64 7.27 5.02 0 9.15 3.06 2.48 3.21 10.6 11.1 7.62 9.63 7.15 10.9 11.8 4.34 0 3.79 7.41 5.71 11.7 1.91 8.19 9.52 10.7 4.58 6.3 11.9 5.46 9.13 1.91 7 10.7 4.63 9.09 2.7 9.3 9.45 8.28 8.95 12.2 6.93 8.22 5.23 3.79 7.2 5.43 6.57 1.5 10.7 10.9 2.48 8.13 7.57 5.3 11.7 9.56 10.7 8.87 8.52 10.3 5.96 9.01 14.3 8.44 12.7 8.96 3.97 7.99 8.96 8.31 7.82 7.91 9.88 4.05 7.44 8.43 8.26 7.59 9.89 8.73 9.06 4.13 11 8.09 7.76 7.21 8.6 7.76 9.92 0 1.5 9.31 11.8 7.99 10.5 7.91 7.24 8.91 10.6 5.01 6.3 4.88 4.92 7.12 9.92 8.73 1.91 9.04 6.49 0.94 7.88 5.43 8.3 8.51 11.3 9.04 5.85 3.47 3.58 8.26 6.27 9.58 8.49 8.05 3.47 4.74 3.58 8.65 6.2 7.42 0 8.57 2.48 11.4 12.3 9.21 2.22 7.79 11.1 0 8.12 10.2 7.62 11 9.53 8.84 1.91 9.94 10.5 0.94 10.7 0 0.94 8.5 8.5 7.13 5.76 5.94 8.94 1.5 4.61 6.89 9.81 6.18 7.47 4.2 3.88 5.38 6.93 8.55 6.68 13.2 6.41 8.9 9.96 4.88 11.3 5.6 8.12 3.88 11.1 8.12 8.18 8.6 7.25 0 6.62 2.22 7.86 9.66 11.2 11 9.43 2.48 3.79 8.36 11.2 12 7.31 7.68 9.01 9.22 8.98 8.46 1.91 7.24 7.47 6.71 8.93 3.58 9.28 11 9.68 6.87 9.12 10.5 6.47 6.93 10.8 5.1 10.6 7.61 5.76 11.3 11.5 8.98 10.2 8 6.99 7.5 9.8 2.7 8.52 6.92 10.1 0 9 9.59 0.94 0 5.4 7.8 7.57 0.94 11.2 4.2 3.97 14.7 2.7 3.69 6.23 1.5 4.78 8.53 10 5.09 5.23 3.88 9.29 6.14 9.47 7.55 10.1 9.29 7.96 9.28 7.8 8.35 4.2 7.03 8.17 9.98 0 1.91 10.7 5.83 0.94 10.6 2.89 3.88 8.54 7.25 5.73 6.41 7.57 2.48 9.57 11 6.85 3.58 3.34 9.65 8.68 7.6 4.88 10.8 7.45 1.91 10.3 10.7 8.76 3.69 8.75 6.46 6.63 7.06 5.66 8.64 8.29 5.73 11.8 7.31 7.54 2.7 10.1 7.8 7.37 10.8 11.1 9.96 11.4 5.74 10.2 8.5 9.75 3.47 10.2 11.5 0 4.52 4.58 12.3 8.11 7.06 8.08 10.4 8.03 0 8.56 7.57 0.94 0 9.37 3.08 6.95 5.71 9.81 6.38 6.2 6.67 5.52 8.47 4.31 4.92 11.1 6.64 9.58 7.37 2.48 8.86 9.99 5.71 9.22 9.68 5.81 6.47 7.26 6.18 6.98 6.08 12.5 4.4 9.99 2.22 9.26 1.5 7.92 14.4 3.47 0.94 11.9 9.86 6.23 3.34 4.27 3.58 0 5.55 6.49 6.57 9.95 1.91 8.24 10.4 3.47 11.6 7.55 9.72 10 8.16 7.99 9.28 10.2 10.8 9.55 8.06 11.5 3.47 6.18 8.55 6.98 5.2 8.47 7.27 7.44 8.18 9.82 6 8.12 1.5 1.91 8.61 9.29 8.41 8.23 8.1 9.35 6.89 2.89 3.47 7.66 8.12 6.95 5.52 12.2 10.2 9.27 8.03 5.34 5.09 8.18 6.33 3.06 10.1 3.79 8.04 7.29 7.2 4.92 9.18 4.69 7.84 8.3 10.8 8.16 9.78 12.3 0 2.7 2.48 12.1 5.6 7.5 11 8.65 4.78 8.99 6.95 10.3 1.91 5.34 7.98 9.68 9 9.78 7.61 7.14 8.48 4.55 3.06 6.67 6.78 1.5 9.48 1.5 7.62 11.3 8.83 6.85 8.33 5.4 3.88 10.2 12.4 5.49 1.5 11.2 2.48 8.73 1.5 10.6 10.4 10.8 5.46 5.4 0 2.89 14.8 8.34 8.44 4.34 7.21 4.34 11.1 8.52 11.5 8.43 6.06 6.2 5.2 0 2.89 5.9 0 0 7.83 7.21 4.34 4.69 0.94 6.04 0 8.64 4.05 6.25 9.34 5.49 8.8 5.94 8.43 8.99 6.32 16.6 6.3 7.27 7.75 9.43 10.5 7.32 9.41 0 5.09 0.94 1.5 5.58 10.6 4.63 7.28 10.8 5.05 8.22 8.12 4.2 4.63 4.2 6.78 7.76 7.79 4.63 9.05 2.89 9.59 2.7 3.47 7.86 7.23 7.76 7.14 5.78 3.58 0 8.97 9.84 8.54 7.86 6.83 8.71 6.71 6.84 8.79 4.4 10.7 8.86 4.88 7.6 3.58 7.02 9.6 6.52 1.5 8.58 7.97 6.23 9.97 5.12 10.4 7.08 8.09 6.95 7.25 5.05 6.93 0.94 8.67 4.55 8.71 5.78 9.15 9.44 7.55 8.62 9.14 3.97 1.5 11.5 2.7 2.89 7.66 8.76 8.98 7.96 2.48 9.1 7.17 7.95 8.22 4.05 12.3 9.33 0 9.96 7.59 7.51 4.58 9.78 0 6.84 1.5 10.8 8.43 8.27 3.79 0.94 1.5 6.87 5.66 2.89 13.1 11.9 0.94 8.99 5.34 6.23 12.7 9.77 9.95 3.06 5.92 12.3 2.7 5.92 9.11 0.94 3.79 3.79 0 8.18 1.5 6.71 5.94 2.22 7.13 7.86 6.25 6.52 8.27 1.64 9.68 3.21 6.21 7.5 4.27 6.86 3.88 10.2 6 8.62 1.5 4.52 5.3 10.3 7.82 5.01 4.46 9.5 7.8 4.58 5.83 8.48 5.09 14.8 8.02 13.7 6.33 6.04 0 3.97 10 8.71 6.64 0 4.13 4.63 9.33 8.11 8.8 10.2 6.95 6.87 6.57 1.91 4.78 0.94 6.87 1.91 9.41 9.45 6.08 11.6 2.22 7.41 3.97 4.92 3.47 7.15 7.25 1.91 6.88 8.84 9.4 9.55 4.4 3.79 5.81 5.55 8.1 2.89 10.8 2.22 10.6 9.25 6.16 8.27 5.2 9.53 8.58 9.94 10.1 1.5 4.05 2.7 7.31 2.22 10.7 7.69 6.49 4.74 11.4 5.43 8.35 7.98 10.7 8.2 4.96 9.14 10.2 8.07 7.66 8.4 7.06 0.94 9.76 4.4 8.22 3.58 7.12 6 6.57 8.64 7.87 1.5 4.13 9.3 6.79 6.27 6.78 10.4 7.09 8.05 8.39 11.5 7.63 7.9 9.24 7.57 1.5 9.86 10.9 6.35 8.55 9.06 7.69 0 4.05 4.58 10.9 7.87 5.78 4.05 3.58 2.48 10.6 6.21 10.6 8.1 8.16 0.94 8.62 5.78 0.94 5.76 9.43 3.97 7.91 7.69 7.03 6.78 8.35 6.12 4.34 8.83 11 1.91 9.76 9.68 4.65 4.74 9.44 0 7.7 7.26 9.34 9.78 12.2 0 6.66 3.79 10.5 7.54 7.08 10.7 5.12 2.48 10.7 3.88 3.06 8.29 5.4 0 7.79 9.29 4.58 9.1 10.5 9.7 4.83 4.06 0 9.79 7.48 9.7 8.72 8.19 4.13 5.73 10.3 4.4 5.63 4.91 4.78 10.2 2.22 8.77 1.5 0.94 3.47 7.06 7.4 7.15 2.89 3.06 1.91 5.27 5.34 7.34 2.48 10.2 5.37 9.22 5.85 3.88 5.73 1.5 6.32 9.38 5.16 12.4 5.73 2.48 8.55 0.94 8.85 4.88 5.05 2.7 5.3 0 8.56 5.12 6.41 5.73 9.73 7.26 9.69 6 11.7 0.94 0 11 6.64 4.46 10.1 3.47 0 12.4 11.3 4.2 9.28 2.22 5.12 1.5 2.48 11.5 10.4 0.94 3.58 7.91 8.55 1.5 6.96 12.8 9.35 8.3 8.38 8.49 10.8 2.22 6.56 7.59 8.44 10.8 11.2 2.89 9.08 5.76 8.58 9.66 4.05 4.96 3.47 10.8 5.4 8.07 5.9 5.05 11.4 0 6.57 9.88 0 6.3 11.8 1.91 5.66 7.93 5.3 7.9 11.4 9.49 3.47 13.2 8.95 0 7.88 6.21 10.4 3.06 4.2 8.55 5.34 5.81 5.49 9.16 6.02 7.08 10.7 8.46 9.32 6.38 6.71 6.67 8.37 6.96 7.11 6.46 8.92 7.25 3.06 12.8 7.98 7.76 7.63 7.26 6.82 6.04 7.82 6.97 6.43 9.32 8.21 6.3 10.6 2.89 9.94 2.22 8.6 8.04 4.55 9.3 4.74 11.5 4.92 10.8 8.17 8 1.5 6.27 5.3 0 5.76 5.71 9.35 8.71 12.2 11.2 3.88 8.82 0 12.5 7.77 9.03 0.94 7.02 1.91 6.99 2.22 5.3 4.86 1.91 2.22 1.5 11.8 10.6 9.58 12.9 11.8 4.92 2.48 4.2 3.97 8.83 10.2 10.9 7.86 12.6 13.3 0.94 2.22 11.1 2.48 7.11 9.57 4.58 9.55 5.83 6.74 13.2 11.8 2.89 8.33 8 9.28 4.46 7.35 7.41 10.7 10.6 12.1 11 7.1 6.47 6.35 0 7.58 9.12 0 9.62 0.94 8.87 8.57 7.6 11.3 5.52 6.78 4.34 7.83 6.1 7.66 7.07 6.44 9.09 8.35 4.74 9.48 6.14 3.97 0 7.71 6.25 0 5.85 10.5 8.33 3.06 9.15 7.25 4.63 0.94 8.24 9.1 9.77 7.69 6.4 8.41 5.05 5.68 6.46 3.69 6.99 0 0 6.69 9.5 3.58 9.8 6.92 0.94 10.2 8.18 4.96 1.91 5.83 5.01 10.7 6.35 7.27 9.14 8.29 10.2 1.5 10.4 8.28 0 1.91 2.7 7.6 10.8 7.45 11.5 4.52 9.75 8.75 9.54 10.6 11.2 8.9 9.02 7.57 10.6 12 8.54 10.1 6.49 6.2 0 10.3 9.77 9.87 10.2 10.5 9.81 8.58 10.2 10.8 6.16 4.13 2.48 2.89 9.26 10.5 6.9 10.5 8.95 10.9 9.92 4.05 4.05 0.94 7.34 8.15 5.27 8.78 3.88 1.91 10.7 13.3 8.97 8.34 10.7 13.3 11.9 10.3 6.62 7.96 3.88 10.8 8.31 8.88 8.94 9.09 9.03 12.5 4.4 9.94 8.74 7.23 10.2 14.3 14 0 9.49 5.09 0.94 9.6 10.2 5.3 7.66 13 6.28 11.7 1.5 13.3 11.5 5.88 9.51 13.5 7.99 8.88 9.87 8.96 10.2 12.1 4.63 10.7 7.07 8.52 11.3 9.26 3.34 8.82 5.4 9.71 10.3 9.37 11.4 10.4 10.2 7.86 12.6 4.69 8.64 10.2 8.13 8.81 9.11 6.43 6.55 12.8 2.22 8.22 11.6 10.3 7.79 8.23 6.12 12.1 10.9 11.2 9.09 8.99 9.39 11.3 12.8 10.1 12.5 17.1 0 9.42 8.37 10.2 6.49 8.07 10.9 10.6 12.5 13.1 16 9.85 9.91 6.71 4.4 7.74 9.1 10.2 8.73 7.62 8.27 11.8 7.64 11.8 11.3 13.8 12.6 7.6 7.8 9.02 7.89 9.24 6.86 7.74 7.8 3.97 7.58 1.91 6.24 8.02 4.88 8.8 11 11 11.6 8.72 9.84 8.44 10.5 9.65 7.91 11.1 9.02 0 10.1 8.63 6.63 1.84 10.7 3.69 6.41 8.4 5.4 1.5 6.37 5.7 9.02 3.34 5.68 8.76 9.32 6.21 12.6 6.98 8.75 8.77 4.2 7.02 10.7 12.9 8.43 12.3 8.97 8.83 10.8 12.3 14.1 13.2 11.8 2.22 9.29 1.5 8.99 6 6.62 10.7 10.7 6.14 1.5 9.17 3.47 9.81 6.99 0.94 5.98 13.2 7.69 8.36 8.33 1.5 9.41 4.78 7.58 8.31 4.13 8.52 0 9.24 14.5 13.7 7.85 1.5 4.2 9.53 8.96 6.33 6.9 10.8 4.05 6.66 0 2.22 10.4 9.79 5.32 9.4 7.09 0.94 8.16 1.5 5.76 4.27 8.35 5.85 5.46 0 9.2 6.04 5.88 5.6 10.1 10.5 4.4 6.47 10.9 7.74 2.77 0 8.9 3.79 8.57 8.69 9.32 8.35 3.34 9 8.52 7.21 9.88 9.64 8.02 6.9 6.25 9.44 6.89 8.97 7.8 13.1 8.92 4.58 8.81 7.87 8.89 8.88 9.08 8.49 1.91 8.98 3.34 11 5.23 10.1 4.27 6.67 8.19 7.81 9.65 4.2 1.91 9.18 9.17 1.5 0 11.8 7.47 6.98 4.74 6.3 6.49 8.89 8.87 8.97 7.59 7.11 9.67 5.66 5.43 9.13 8.59 4.2 10.9 7.87 4.63 13.6 5.94 8.26 0.94 2.7 1.5 12.1 6.49 8.95 7.86 11.3 1.61 10.1 9.04 6.33 7.52 13.1 10.2 0.94 2.7 2.48 8.04 8.65 4.69 7.58 10.5 8.41 9.14 10.1 6.2 13.1 7.88 7.59 7.03 7.47 10.8 11.1 11.8 7.85 9.61 11.1 11.8 0.94 10.1 0.94 10.1 8.9 8.31 0 11.1 8.15 6.44 8.33 9.01 8.02 10.8 8.19 8.28 8.89 8.96 8.9 10.3 9.21 2.48 9.28 8.35 10.9 10.1 11.1 8.36 2.89 8.39 10.9 2.22 1.5 9.65 9.91 9.04 1.5 12.1 9.52 9.09 10.1 8.2 9.44 6.22 11.1 7.73 10.9 11.1 5.4 10.7 11 3.88 11.8 11.3 5.37 9.19 3.47 11.2 10.3 10.8 9.7 8.08 9.17 10.1 11.4 3.88 6.43 9.42 10.8 1.5 9.17 7.47 7.52 10.7 9.04 0.94 3.47 11.3 8.47 10.9 7.03 9.06 11.1 7.41 9.81 10.7 6.41 10.3 7.78 0 11.7 9.01 3.58 7.13 12.6 3.88 1.91 9.46 4.2 9.77 5.43 9.33 8.84 3.06 0 11.6 7.53 6.77 7.01 7.73 7.21 6.04 3.21 10.6 11.2 9.92 8.45 10.9 10.4 2.48 8.54 7.27 7.79 9.52 9.22 5.4 10.3 8.21 6.06 4.46 11.4 9.11 11.4 5.6 7.51 7.49 2.89 5.46 12.1 8.51 10.1 12.8 7.37 6.57 7.96 8.59 10.6 4.74 4.88 6.14 8.24 7.75 8.4 7.02 8.77 8.93 7.85 0.94 7 10 8.73 6.92 9.37 6.35 9.68 6.04 5.78 7.9 8.58 5.96 4.4 7.41 5.09 4.58 6.41 12.5 3.58 8.2 7.7 8.4 4.96 5.96 1.5 0.94 3.21 0 6.47 0.94 9.57 6.9 2.22 1.5 8.46 7.51 6.91 8.7 8.39 7.59 5.94 11.9 3.97 9.12 7.38 6.3 8.84 9.41 3.69 10.5 7.37 6.02 8.16 11 8.19 7.11 5.3 9.95 9.65 11.2 3.79 10.1 6.6 8.92 6.69 7.45 6.96 7.91 9.97 10.9 4.58 0 1.91 5.43 5.4 8.84 5.98 5.28 7.82 10.3 11.6 5.09 10.3 9.89 4.27 8.03 6.94 8.38 8.21 8.86 9.27 6.49 12 9.84 3.21 10.4 8.76 7.33 9.43 0 8.85 3.47 8.64 1.5 6.74 6.04 10.2 7.6 10.5 9.28 8.69 7.03 0 10.1 6.68 14 4.78 6.46 7.86 11.1 8.14 8.87 6.4 2.22 8.86 6.5 4.83 7.53 10.5 6.89 4.78 5.9 10.7 1.5 0 6.72 10.4 1.5 3.06 5.66 3.58 6.69 7.44 3.21 7.6 9.01 11.8 9.13 7.15 3.47 8.15 9.36 8.76 9.98 10.6 6.2 7.95 8.36 10.3 9.3 0.94 3.88 5.37 8.32 0 6.5 6.55 15.3 11.5 12.6 5.6 11.2 5.46 8.13 10.3 6.3 12.5 7.61 9.49 11.7 7.45 9.43 6.85 12 8.4 6.1 7.07 10.1 1.5 7.93 12.3 9.55 6.73 11.4 0 11.3 10.6 11.5 8.34 7.93 11.1 12.1 9.95 9.57 6.55 10.3 8.94 12.8 8.48 10.1 10.5 8.22 7.62 4.27 9.6 10.9 9.36 9.56 6.53 9.39 6.49 7.46 9.55 10.3 9.15 11.8 9.54 7.59 11.5 9.53 10.6 7.77 9.48 8.69 10.4 10.6 9.71 11.1 10.3 7.71 9 9.6 8.88 9.63 10 10.3 8.5 8.83 9.81 12.4 8.8 9.21 10.2 8.38 9.55 12.3 9.78 8.86 9.38 9.37 7.8 9.03 9.63 6.59 1.5 9.82 7.02 11.5 10.9 9.69 11.8 10.1 11.1 10 9.09 9.71 11.1 4.72 5.46 11.2 0 9.39 11.7 10.6 8.59 10.1 4.13 9.77 10.5 10.8 9.52 10.2 10.8 8.85 12.5 7.82 11 11.2 10.2 5.9 6.68 11.1 8.57 8.95 3.47 8.07 9.26 8.66 8.03 6.94 8.52 8.39 4.96 10 9.53 3.69 11.6 7.27 9.68 7.11 8.32 11.2 0 4.46 0 10 10.4 10.4 7.52 5.05 6.44 4.46 11.5 10.4 13.6 10.8 8.67 9.27 5.63 9.01 3.34 10.3 10.6 10.2 11.1 10.4 8.73 11.4 8.47 12.4 12.2 9.5 8.76 8.84 7.87 10.3 9.35 10.3 10.2 10.4 9.37 11.2 9.12 9.53 11.1 10.5 10.7 9.77 10.1 9.58 8.39 9.3 11.7 10.6 8.48 11.8 12.4 10.4 10.3 8.3 9.06 2.48 9.66 12.3 9.1 9.22 10.6 10.5 8.52 9.3 10.2 10.1 3.97 9.19 10.3 9.31 9.79 8.81 10.1 7.35 8.3 8.86 10.2 7.28 9.02 9.25 10.6 9.61 10.4 10.2 8.47 9.82 12 8.92 10.2 9.36 9 11.2 8.86 7.6 9.63 4.2 10.5 8.9 7.31 10.9 8.84 9.56 11.8 8.76 10.5 11.3 5.92 1.91 8.06 11.7 10.1 10.8 11.4 11.4 8.45 9.91 10.6 7.49 9.57 9.1 9.91 9.88 5.68 10.1 11 10.2 9.97 9.76 8.49 8.89 6.44 11.1 7.71 0 8.85 8.97 11 11.1 10.2 8.48 8.61 14.2 9.03 10.2 11.6 9.62 11 9.76 10.7 9.97 10.4 9.38 10.1 8.48 9.43 7.88 8.84 10.3 9.51 12.5 9.61 6.14 10.6 10.3 9.36 9.67 10.5 9.38 9.27 12.2 10.3 11.5 11.4 11.8 10.7 12.8 10.2 8.94 11.3 10.4 10.2 9.61 8.78 9.43 10.6 13.1 10.6 10.9 13.8 13.3 9.93 8.97 9.77 8.45 8.89 11.6 11.2 9.93 4.63 7.93 9.75 1.5 10.3 9.03 8.8 10.4 8.92 7.14 10.5 7.23 8.03 7.76 9.59 7.72 8.56 9.35 8.14 10.8 11.7 7.79 6.43 12.1 10.8 9.99 10.5 11 7.65 10.2 10 10.5 5.01 8.35 9.31 10.2 8.02 9.65 12.5 10.3 0.94 9.82 8.7 10.1 10.9 11.9 9.01 9.16 9.21 6.14 11.1 10.8 10.7 9.54 9.53 8.66 10.4 9.74 6.08 3.79 9.5 10.3 7.03 9.37 8.98 9.96 6.69 11 10.6 9.47 11.5 9.79 6.25 11.3 9.77 12.2 11.1 8.71 7.61 8.88 9.99 9.13 10.7 8.19 8.88 8.99 11.1 10.1 9.76 5.01 9.41 9.3 10.4 11.6 7.47 10.9 10.1 12.4 8.53 11.8 9.04 11.3 11.1 9.87 9.63 10.7 9.92 11.5 3.69 8.17 10.1 10.4 9.89 10.4 8.05 15.4 10.4 10.1 11.5 11.1 8.98 9.78 9.59 10.3 7.37 10.2 10.5 10.2 11.6 11.8 7.47 11.8 8.5 11.2 10.4 11 10.4 10 8.06 9.79 10.7 10.7 11.9 11.1 9.52 11.8 11.4 11.1 10.5 11 10.4 10.8 10.7 9.69 10.9 6.78 8.37 11.3 10.6 7.42 8.06 8.87 10.8 12.2 8.64 4.4 9.87 8.45 8.79 11 5.88 2.7 7.57 7.57 8.91 10.9 11.6 8.51 10.2 9 1.5 9.78 9.36 0 7.99 7.17 11 11.3 9.02 7.06 11.8 11.7 12.1 10.5 8.14 7.5 9.34 6.77 8.63 11.5 10.5 7.59 8.92 10.8 12.3 10.6 12 9.17 8.82 9.28 11.1 11.1 11 6.16 12.9 9.61 7.91 9.92 5.09 9.83 8.83 0 5.66 12.5 7.04 12.4 9.44 7.15 10.6 9.32 9.88 7.77 10.7 10.7 10.5 9.34 10.9 9.49 8.82 11.2 9.8 9.25 1.5 1.91 11.8 9 10.2 13.3 9.44 9.98 8.01 8.45 13 10.4 8.89 1.5 8.37 9.05 7.76 4.34 8.91 11.6 9.25 9.67 8.2 9.07 1.91 6.53 8.69 9.93 9.44 8.58 7.24 8.88 9.98 9.37 8.93 9.79 13.1 10.7 9.95 8.74 2.22 6 9.95 0.94 8.41 11.8 0.94 8.69 12 3.97 12.7 9.36 8.83 1.5 11.2 7.94 9.82 10.2 10.5 5.9 6.51 9.08 9.32 6.32 9.27 7.03 8.7 9.68 8.52 8.56 12.3 6.77 8.49 11.1 9.71 10.8 9.7 2.22 7.77 12.3 8.71 9.28 0 0.94 2.22 8.4 10.5 9.88 10.3 10.9 4.88 10 10.7 9.82 6.95 10.6 9.9 12.8 10.1 8.5 7.85 3.79 11.6 11 9.52 9.58 8.98 9.32 11.4 10.1 8.94 4.46 9.91 6.92 10.6 9.03 11.1 9.43 11 13.1 4.2 7.29 9.24 9.39 8.59 7.69 9.06 7.67 0 7.2 8.31 7.6 13.2 8.89 3.47 9.95 9.65 12.7 10.5 7.41 3.69 8.11 8.7 9.86 7.64 8.91 9.7 9.13 6.89 7.67 9.03 8.02 7.41 11 11.3 9.35 1.91 2.48 4.05 3.88 8.73 4.63 6.38 0 9.33 3.21 4.46 2.7 4.43 7.51 5.63 6.21 7.85 6.52 5.2 2.22 7.2 9.54 8.99 7.44 8.49 2.48 4.83 15.1 2.7 11.5 0 15.6 9.09 10.4 12.7 4.83 4.13 3.88 6.94 2.7 2.22 11.4 5.63 1.5 9.85 5.98 6.96 10.5 0.94 3.88 7.69 10.8 8.46 5.01 4.51 4.4 9.21 8.29 13.1 4.13 10.7 7.37 7.93 8.36 6.9 6.08 10.5 7.26 2.7 9.15 0.94 6.92 7.81 8.88 8.11 0 9.91 10.3 9.14 9.65 8.96 5.88 6.08 8.66 0.94 6.02 8.74 6.46 0 8.17 0.94 1.5 9.62 8.06 5.71 7.04 7.96 3.69 7.65 8.52 4.83 2.89 10.6 8.39 6.64 8.63 11.5 0 11.5 11.5 5.6 8.55 6.69 10.5 12 7.86 6.87 6.94 8.44 0 6.35 9.29 8.31 3.21 3.34 4.13 8.09 3.97 8.29 5.98 7.81 5.92 5.01 8.4 5.09 6.79 2.7 0 10.9 7.24 8.58 5.34 7.37 7.17 8.81 9.42 7.62 6.02 6.44 3.21 7.47 7.32 6.6 8.64 2.89 4.15 4.96 8.74 9.96 2.22 4.78 8.47 8.75 9.98 7.79 7.77 0 5.76 6.41 3.34 0.94 5.09 8.09 0 7.75 5.46 2.22 6.78 7.5 3.79 4.92 8.42 0 8.31 0 8.36 2.22 7.05 8.59 1.91 7.33 6.49 1.91 3.47 0.94 8.96 8.68 11.3 6.68 8.7 10.7 9.4 8.89 8.11 0.94 8.65 12.3 9.76 9.25 9.76 2.89 4.88 6.53 4.96 9.06 11.3 10.6 2.7 10 7.38 10.1 7.27 10.3 10.8 9.59 8.35 9.77 3.69 10.4 7.5 8.03 7.72 11.1 2.22 9.41 11 5.71 9.65 6.32 8.22 10.2 8.45 9.9 0 11.9 8.86 6.38 10.3 10.4 6.48 6.98 11 7.87 0 9.77 6.02 11.1 8.99 13.7 8.69 9.36 9.9 11.2 8.38 10.5 6.92 7.96 7.37 8.88 9.59 9.6 7.99 9.27 5.27 9.1 3.88 8.5 9.26 11.4 9.85 12.7 9.88 10.1 6 5.96 9.25 9.04 7.52 8.65 6.89 7.25 10.8 8.12 4.25 5.27 7.7 7.3 11.8 9.47 0 11.8 9.93 8.68 8.73 7.91 8.57 8.95 10.4 10.4 5.49 7.52 12 9.26 8.41 10.3 9.93 5.01 0.94 7.51 11.1 9.91 0 8.45 7.73 8.81 5.34 8.51 10.3 8.9 5.92 9.83 2.22 9.65 0.94 8.91 1.5 2.7 5.12 9.91 10.9 6.32 13.8 9.36 9.8 9.97 9.43 8.76 9.51 10.6 10.6 9.98 8.35 11.8 10.3 9.94 8.81 7.84 10 8.27 10.8 11.5 8.8 4.4 9.58 10.9 9.56 16.6 10.9 9.88 7.37 6.99 10.6 9.82 10.2 9.08 9.75 8.1 9.26 1.5 9.42 8.34 9.67 8.33 11.8 9.64 10 12.8 0 11.1 11.4 11.5 10.8 8.87 9.44 9.35 11.3 10.5 12.2 7.8 9.3 10.6 13.1 8.39 12.1 9.88 8.46 5.2 7.19 3.34 8.98 9.92 10.2 6.83 7.76 6.5 8.38 8.71 11 7.6 8.52 8.56 8.45 7.27 8.37 9.01 10.4 7.9 9.96 7.74 10.3 9.27 9.75 10.4 9.43 10.9 10.3 10.1 8.57 7.6 8.68 11.7 8.32 11.1 5.52 10.9 10.1 9.8 11.3 8.56 11.1 7.51 7.98 3.88 10.8 7.39 11.3 10.8 4.92 7.73 10.8 11.6 8.85 10.3 9.58 9.31 9.24 9.66 10.2 11.3 12.3 6.64 3.47 10.5 9.64 8.63 11 6.55 8.24 0 9.09 9.2 5.85 4.13 10.2 11.1 7.76 9.19 8.78 5.6 10 10.3 9.52 7.87 11.1 8.58 8.3 9.71 10.1 10.6 4.05 11.7 5.76 8.73 5.34 9.88 10.3 1.5 10.2 6.69 10.4 10 11.4 0 10.1 0.94 7.53 7.16 8.91 8.27 11.7 7.32 6.94 7.93 7.06 4.92 3.34 8.09 0 4.96 10.4 8.99 8.31 3.86 9.18 8.22 3.97 7.36 10.1 9.38 0 6.83 7.3 8.03 9.75 8.95 8.37 10.3 10.3 0 13 10.3 9.66 9.82 9.6 2.7 8.12 9.17 7.49 6.57 11.4 10.3 10.4 2.9 11.8 8.87 9.73 10.1 9.67 0 5.83 5.52 4.88 9.78 11 11.2 10.6 8.79 11 2.7 2.89 5.6 9.71 9.12 8.09 9.61 4.34 8.55 9.95 6.57 7.71 8.52 9.18 10.4 8.9 9.14 9.27 9.6 8.82 9.47 3.06 3.06 12 9.75 5.49 8.11 6.85 9.01 0 10.4 7.69 9.09 8.48 5.58 9.93 5.2 8.97 4.2 13.5 11.1 10.8 5.52 7.87 2.05 9.49 9.35 7.19 12.6 19.2 5.94 5.96 0 9.25 2.7 9.25 6.12 7.99 4.92 9.18 9.28 0.94 0 8.77 6.73 0 7.21 9.3 0 8.71 9.36 10.2 7.11 8.73 0 7.39 9.08 8.57 10.5 3.47 9.28 15.3 8.18 6.67 7.99 9.57 13 10.5 11.7 9.44 5.71 10.9 9.24 0 5.2 8.53 0 8.58 7.01 5.94 10.8 12.3 4.92 10.6 8.31 8.87 11.4 1.5 9.68 2.7 5.46 8.58 6.94 8.49 10.4 11.1 8.32 6.1 8.5 9.45 9.51 11.2 1.91 4.2 10.5 3.21 9.5 3.06 7.62 7.92 5.09 8.58 11.7 10.7 2.48 8.46 9.4 6.06 9.91 8.79 2.7 2.22 10.2 7.26 10.2 11.6 10.4 8.87 7.59 8.49 6.47 6.21 8.69 12.6 3.47 6.08 11.2 0 8.79 9.8 3.79 7.24 11.2 5.16 2.22 7.94 10.5 6.56 5.63 11.1 9.69 4.34 7.18 9.32 9.35 3.69 10.3 0 6.3 7.77 4.74 9.95 8.15 11.4 10.6 6.59 8.93 11.7 8.8 0 3.34 0 3.97 3.21 8.46 10.3 4.13 8.03 11.2 4.74 8.15 7.2 9.74 2.7 9.53 8.73 1.5 8.2 11.5 11.3 9.58 10.9 8.7 8.89 10.4 10.2 9.95 8.88 10.9 5.43 8.99 9.52 0 5.4 9.07 5.52 8.05 10.6 7.19 8.86 4.34 3.21 10 1.91 7.38 8.03 8.49 8.51 2.7 7.12 6.14 9.12 9.13 7.06 8.76 11.5 2.89 10.1 9.57 10.2 11 0.94 11.6 11.2 7.65 11.1 13.3 8.57 8.08 10.1 8.33 10.9 11 8.96 9.89 9.13 7.21 6.55 7.18 7.23 9.15 7.51 8.33 7.56 11.5 11.5 9.52 8.77 10.3 7.69 8.47 9.58 7.11 9.45 8.71 7.1 6.49 9.68 12.3 9.78 8.96 15.6 1.5 11.3 7.58 11.8 10.1 9.49 12.3 6.82 9.49 13.5 11.2 5.23 12 11 14.8 0 9.33 13.2 12.2 5.41 7.62 8.73 11.1 12.4 2.48 9.89 8.82 4.4 10.4 4.88 1.5 11.9 2.22 8.54 9.52 10.1 10.2 9.91 10.8 9.33 11.5 9.59 3.21 4.83 4.5 1.5 13.4 9.79 9.85 12.8 5.09 8.32 14.2 8.19 10.6 14.3 3.21 3.21 5.92 5.09 7.09 8.4 3.47 9.42 6.46 0 5.4 7.36 8.51 9.86 6.18 5.58 7.85 3.06 4.83 3.58 0 8.63 8.97 7.37 12.8 9.66 3.21 8.52 2.7 9.96 3.69 8.71 4.69 8.6 8.12 7.84 6.64 6.41 8.61 4.41 5.46 1.5 4.34 5.4 9.33 4.2 6.12 3.47 10.8 2.7 7.45 7.06 3.88 2.89 6.53 5.4 4.46 0.94 10 5.55 5.37 4.63 8.17 6.47 9.18 5.6 0.94 4.11 3.88 8.7 1.5 8.37 1.5 9.3 2.22 6.78 0.94 5.52 10 9.47 6.86 0.94 5.9 7.11 6.95 4.8 5.43 8.01 0 0 4.8 9.72 7.19 6.38 3.06 6.06 8.57 3.79 9.99 6.21 4.2 5.43 4.63 2.48 7.71 7.97 6.11 5.05 9.4 7.99 10.3 8.91 7.8 8.45 8.22 1.91 5.3 7.74 5.16 6.89 5.12 6.82 3.79 9.86 7.52 5.49 4.63 1.91 6.33 7.56 0 1.5 0 8.69 3.47 2.48 6.12 12.9 9.15 8.23 6.83 8.24 2.22 0 0 6.84 8.4 4.2 2.89 8.54 0 9.44 4.46 6.92 0.94 6.32 7.59 8.82 7.74 8.87 4.53 0 5.83 7.03 5.85 7.53 5.16 12.3 0.94 8.42 7.5 5.94 7.9 1.5 7.37 7.2 1.5 0.94 3.69 4.34 8.7 8.64 8.17 5.46 7.32 10.1 3.58 2.89 3.21 7.57 3.88 3.69 3.21 7.77 6.27 8.41 5.85 5.64 0 4.34 7.05 8.95 1.91 6.2 6.43 5.73 2.48 5.12 0.94 3.58 6.92 0 7.74 5.16 2.22 3.06 7.85 1.5 7.83 4.27 7.71 10.5 3.34 7.08 3.79 5.76 1.5 7.97 9.61 8.44 9.02 9.45 0.94 8.22 7.98 3.06 6.59 7.07 9.28 7.8 8.31 8.93 0 5.71 10.3 9.46 4.69 6.92 7.01 0 9.13 5.01 5.55 9.03 8.05 7.19 9.9 10.6 3.58 0.94 4.58 9.56 3.47 8.23 5.3 1.5 5.95 5.78 8.43 10.6 4.2 9.15 0 11 3.88 2.89 5.52 4.92 7.18 6.83 10.1 2.7 9.34 8.91 4.13 9.4 9.39 6.93 7.48 8.69 1.91 5.93 0 9.41 6.14 4.05 7.39 2.7 2.22 7.56 0.94 5.37 8.33 8.14 4.44 6.72 5.4 5.58 4.58 4.83 3.79 3.06 7.98 7.25 3.34 5.3 7.47 8.68 3.97 4.96 4.96 8.32 2.89 6.57 9.13 10.4 3.47 11.1 7.78 1.91 3.06 4.27 8.69 9.49 8.4 4.05 7.77 6.46 8.1 7.59 4.05 0 5.58 5.12 0 0.94 6.9 5.9 7.49 8 2.48 12.3 8.77 11.2 11 9.99 6.71 12.2 1.5 10.7 11.9 9.85 8.44 11.4 10.2 11.2 10.9 9.49 12.1 8.84 9.55 9.09 9.34 10 10 12.2 7.87 9.87 10.9 4.74 8.58 4.2 9.77 9.72 8.66 7.7 11 10.3 10.7 9.52 8.96 9.17 8.6 6.76 11.4 9.41 9.95 9.82 10.3 9.22 10.3 7.89 8.86 7.71 12.9 8.84 10.3 12.2 6.57 8.32 10.3 9.2 7.9 8.55 6.73 9.67 8.19 10.1 11 7.6 9.48 7.19 9.53 9.55 12.7 9.46 8.81 10.3 9.31 7.98 9.66 10.3 8.51 9.04 9.95 6.95 10.6 10.3 9.88 9.7 6.59 10.9 8.91 6.12 7.11 8.33 8.77 8.02 9.45 8.79 10.2 10.6 9.94 11.1 9.86 9.45 7.88 9.64 11.6 8.58 8.07 8.77 4.13 9.01 10.7 7.99 10.2 5.88 4.46 8.61 4.05 11.4 3.88 4.69 8.9 10 2.22 3.34 6.92 12.2 6.47 6.57 11.9 4.05 11.2 12.6 10.7 10 14.2 11.3 9.13 9.39 9.64 2.48 9.89 10.4 9.4 9.3 12 9.75 7.1 8.95 9.81 7.04 9.43 9.24 7.97 8 10.8 9.7 9.37 4.78 8.13 8.77 10.9 13.7 10.6 10 0 11.6 10.2 6.25 9.02 8.11 4.05 9.53 11.6 6.97 5.88 8.84 2.22 8.32 8.96 5.6 10.5 6.67 9.98 1.91 5.46 7.65 9.02 8.88 2.89 11.6 7.62 7.98 0 3.79 10.2 8.17 8.59 0 0 9.61 11.8 9.51 2.89 10.2 10.2 8.19 8.42 10.9 9.46 10.4 7.03 10.7 0 9.51 10.4 9.92 7.06 7.92 9.17 9.74 7.58 9.23 0.94 8.52 8.44 8.88 9.09 8.61 10.6 10.9 8.51 9.52 11.5 7.08 8.86 12.9 8.5 8.89 4.58 5.83 7.68 0 10.9 8.78 7.3 7.12 7.57 8.68 8.8 7.64 10 9.25 5.09 11.8 10.3 12.3 7.99 5.3 10.8 0.94 9.16 6.21 12.1 8.97 8.47 12.4 8.89 10.3 11.7 10.4 11.5 8.27 8.46 1.91 9.51 2.7 8.87 0.94 10 7.65 8.65 9.71 7.8 11.9 8.48 2.24 10.7 0 12.4 9.61 11.1 0 0 9.64 1.91 0.94 3.88 11.3 7.8 10.2 1.91 1.91 0 13.2 3.47 0.43 10.8 10.9 5.81 12.6 11.9 14 10.5 9.8 6 12 11.6 10.1 1.5 10.2 2.48 6.95 6.76 11.2 11.6 12.3 12.7 0 1.91 1.91 0.94 8.32 0 10.9 8.4 10.4 6.85 10.6 10.2 10.1 4.2 12.1 12.6 10 3.69 8.54 10.9 10.6 8.75 6.67 14.5 2.89 6.1 11.9 10.7 6.6 9.51 6.4 6.53 9.76 6.12 8.85 7.86 2.89 9.84 5.58 5.98 9.4 9.34 11.2 9.3 9.37 11.3 6.9 10.8 5.96 12.3 11.2 10.4 12 8.72 9.94 10.3 10.8 10.1 10.1 10.7 6.47 8.32 14.1 13.3 13.1 9.79 9.82 9.96 8.66 3.44 11.5 10.7 0.94 8.57 7.28 9.25 4.52 12.8 10.6 8.27 6.48 6.2 9.51 12.3 9.1 5.36 11 2.93 5.23 4.63 7.96 8.97 7.28 8.57 13.1 10.2 9.83 10.3 11.9 9.58 9.41 10.3 10.9 5.81 6 10.3 10.3 9.32 8.37 4.13 10.3 8.68 9.15 8.58 4.68 9.11 2.22 7.82 5.63 8.71 0 9.28 12.4 8.27 13.6 10.7 13.2 11.5 10.9 12.1 11.2 10.9 13.1 1.91 11.8 12.8 2.22 2.89 3.88 9.23 9.17 2.7 2.22 3.34 0.94 4.4 3.47 6.12 5.23 8.35 0.94 11.6 5.09 7.14 2.22 1.91 0.94 7.38 0 1.91 11.8 7.12 6.16 11 2.22 11.2 8.96 9.51 5.88 2.48 7.44 6.87 8.03 9.59 2.48 3.34 6.16 9.58 4.05 6.64 9.06 11.1 10.5 9.98 10.5 5.58 2.89 11.5 11.2 11.4 9.26 12.4 10.2 5.68 4.4 6.42 5.96 11.4 10.3 8.48 8.23 7.74 11.8 10.5 11.1 9.93 6.08 12.1 10.6 13.4 10.4 8.32 7.57 14.2 12.6 12.4 6.6 6.78 14.5 9.68 14.1 12.1 13.4 10.5 12 9.27 10.4 6.2 4.52 14.2 12 9.44 2.89 2.89 2.7 0.94 0.94 0.94 1.5 7.57 14 5.52 11 9.95 2.48 6.57 5.27 1.5 1.48 6.47 9.83 0.94 9.48 1.5 8 0 2.48 7.1 3.21 3.69 2.22 2.8 7.68 9.11 8.33 10.5 6.12 9.23 8.43 5.12 1.5 1.5 6.78 6.69 7.4 10.2 0 8.1 6.94 3.06 8.72 8.96 8.97 8.58 10.8 9.81 8.94 9.58 7.09 7.53 4.69 1.91 0 8.07 1.5 6.37 8.36 7.05 6.41 0 6.57 6.82 6.84 5.2 3.88 4.96 4.63 8.47 6.4 6.47 10.8 8.5 5.58 1.5 12.4 6.87 4.96 2.48 4.13 3.06 12.7 6.23 1.5 5.12 9.3 10.2 12.8 7.41 0.94 0 3.47 5.12 4.52 8.57 7.9 0 8.53 0.94 8.47 2.7 11.6 8.24 5.09 4.47 6.66 6.78 5.09 9.17 3.97 4.34 5.63 8.61 1.5 5.05 5.3 7.76 6 6.89 10.8 1.91 1.94 2.89 7.36 1.5 10.8 11.2 10.9 10.5 9.97 10.2 0.94 4.05 0 9.66 13.2 6.18 7.05 10.6 0.94 8.3 0.94 2.89 5.01 10.1 11.3 0.94 9.31 9.05 5.76 6.14 0.94 6.37 6.1 4.88 1.5 8.32 0 4.88 8.06 2 8.84 8 1.5 5.92 2.22 0 3.21 5.27 9.43 8.27 9.66 8.19 0.94 4.63 7.85 7.09 0 2.48 1.91 4.4 3.79 1.91 3.47 11 6.5 8.69 5.05 5.01 8.93 9.61 0 5.3 11.6 3.79 10.5 2.7 5.23 4.96 4.78 0.94 5.05 0 13.1 1.91 0 5.76 4.13 6.56 0 4.05 4.46 10.5 4.58 10.4 0.94 3.88 10.2 7.14 5.58 2.89 7.42 0.94 11.3 4.78 8.7 7.01 14.9 10.9 5.9 6.57 8.35 8.69 8.17 9.22 8.74 9.83 10.6 4.92 10.7 4.92 5.97 5.37 12.5 12.1 3.79 7.05 10.2 1.91 7.11 14 7 1.91 9.3 6.1 7.64 9.49 14.4 6 11.8 7.48 5.49 2.22 5.83 6.17 7.2 4.83 8.67 8.19 14.9 1.5 9.29 5.01 11 2.7 9.98 7.41 2.76 9.8 0 1.5 9.16 6.46 2.7 1.91 3.47 6.95 4.89 8.05 2.89 0 0 9.44 10.3 10.3 4.46 5.96 8.16 9.02 4.27 2.89 0 3.06 5.27 6.12 8.84 0 1.91 9.09 7.1 9.61 3.21 0.94 9.5 3.21 4.46 13.6 2.48 1.5 3.06 8.84 8.6 3.69 8.86 4.96 0 4.52 1.5 11.2 4.28 9.14 11.4 8.77 3.34 4.88 9.32 5.63 5.96 3.88 7.69 0.94 8.03 9.82 11.5 12.3 15.7 11.3 10.4 7.05 8.62 11 8.01 0 8.5 8.21 6.18 3.88 9.25 2.89 5.2 9.37 7.06 9.28 9.04 9.02 9.6 11.7 10.1 0 0 10.7 3.69 11.9 7.87 10.6 11.3 11.2 8.47 10.1 9.6 6.52 9.76 9.47 3.79 8.38 4.83 6.71 7.74 7.78 6.76 8.16 8.52 9.62 5.2 12.2 6.05 10.7 11.7 4.83 3.69 0 8.28 6.86 8.64 13.5 9.42 12.4 10.4 10.1 6.59 12.6 10.4 10.3 0 4.69 12.9 1.91 5.27 2.22 12 7.85 4.92 10.7 9.51 12.3 6.69 13.1 9.11 10.7 8.13 11.2 8.13 11.5 7.67 5.98 11.4 8.83 12.7 11.6 12 9.38 9.16 10.2 10.3 10.1 11.4 6.21 1.5 6.42 2.48 5.23 8.57 1.91 11.2 5.4 8.46 4.63 5.49 9.9 4.46 1.91 5.52 0.94 1.5 7.94 6.78 6.35 5.34 8.01 8.16 7.68 9.05 0 1.5 7.27 8.01 9.08 5.01 8.96 2.48 5.37 11.3 8.67 4.2 7.15 7.63 1.91 7.17 4.83 8.25 2.48 7.8 9.08 12.9 8.2 7.53 5.09 10.5 7.13 6.4 6.8 1.91 7.77 6.25 7.64 8.65 8.34 5.41 2.22 1.5 4.2 10.5 7.11 7.12 6.89 5.43 8.47 7.45 2.7 6.44 0 5.37 0 8.06 3.07 0.94 7.96 8.7 10.1 1.5 10.7 6.73 8.36 5.46 8.63 11.8 4.29 0 7.39 5.58 9.08 8.39 1.5 11 7.55 12.4 4.2 7.88 3.69 1.5 8.57 12.7 6.14 1.5 1.91 11.1 7.92 6.96 9.82 1.91 7.65 11.6 7.24 5.09 6.82 7.01 7.6 6.89 5.2 6.6 6.94 7.53 0 5.76 12 7.15 6.1 4.4 8.86 3.88 7.65 9.7 10.2 11.5 11.5 10.3 11.8 10.3 1.5 0 0 11.2 0.94 0 8.63 0.94 3.21 10.7 1.91 0 3.15 4.76 1.91 0 11.9 7.23 6.96 9.84 10.9 11.8 10.4 10.6 7.88 11.1 6.06 11.5 11.9 9.59 2.48 3.06 1.5 9.33 0 8.41 7.25 0.94 13.5 7.14 2.48 9.37 2.22 5.34 9.34 5.71 3.88 3.21 9.95 2.89 0.94 4.05 8.5 2.7 5.98 3.47 6.52 10 6.21 6.16 5.2 1.91 5.23 6.87 7.63 0 2.89 3.47 4.46 1.5 9.58 0 3.79 3.58 3.21 8.8 6.21 4.47 1.91 9.15 3.2 6.14 9.2 8.34 2.48 14 5.88 9.53 8.67 1.91 7.85 3.47 3.06 9.11 7.27 7.32 7 6.08 4.82 7.29 7.52 7.13 7.94 10.4 8.9 6.47 3.79 13 3.58 7.42 8.25 7.21 8.03 7.54 5.52 6.84 3.21 3.69 1.91 3.69 6.77 1.52 9.11 7.45 9.14 3.97 7.78 7.59 2.7 5.2 5.88 7.57 9.04 0 8.65 0.94 8.01 7.24 0.94 7.76 7.69 7.12 1.5 9.32 13 8.82 4.27 8.06 0 6.94 6.77 5.58 4.34 8.42 2.48 7.12 6.33 3.79 7.06 9.75 6.72 5.78 2.22 12 8.16 5.71 10.6 2.89 4.27 0.94 2.7 7.05 6.84 4.4 7.96 2.89 9.71 5.23 6.37 2.48 0 7 0 6.64 2.89 8.78 8.6 4.63 4.63 1.62 1.91 9.13 0 5.09 4.2 4.92 0.94 11.1 4.96 8.9 7.52 8.13 10.7 9.38 2.22 10.5 0.94 9.43 0 12.9 2.89 9.09 7.12 11.3 12.9 3.21 0 12 13.3 11.3 0 0 3.21 12.2 8.61 11.7 1.5 1.91 8.82 9.82 9.37 2.22 1.5 9.52 7.92 0 13.2 11.3 14 10 6.37 0 8.14 10.2 11.8 12.2 0 12.8 13.1 12.5 1.91 8.38 10.1 10.8 0.94 8.04 12.3 8.57 6.93 8.08 8.71 11.6 10.9 8.82 8.63 11.1 4.13 6.93 9.36 10.6 7.16 4.74 2.89 9.41 7.52 11.4 8.97 12 8.22 4.96 3.62 11 9.79 5.81 5.34 4.63 11.2 0 7.3 4.34 10.1 4.05 6.82 10.9 11.1 10.8 11.9 8.67 8.35 9.64 8.43 2.22 0 7.03 10.9 4.38 6.87 10.8 7.86 1.5 7.03 8.04 0.94 8.75 6.49 1.5 6.55 3.34 3.47 6.66 7.91 5.63 3.58 6.12 5.58 8.77 2.22 7.27 7.58 3.21 4.58 8.54 4.67 5.46 0 7.88 9.94 6.33 0.94 4.05 3.69 6.1 0 7.18 3.47 3.88 2.22 11.8 3.06 5.51 4.52 6.57 5.51 6.36 0.94 4.46 3.94 2.84 10.2 5.58 7.54 8.3 2.31 9.5 4.74 0 3.06 7 8.85 7.02 4.2 5.66 11.3 8.97 6.46 1.91 10 3.34 5.68 3.69 0.94 6.63 7.45 6.62 9.25 10.4 2.48 0 4.4 4.35 10.6 7.15 2.7 12.3 4.13 9.76 1.91 6.64 7 8.33 3.47 9.65 6.28 7.69 0 8.13 9.74 14.6 9.41 11.7 11.5 9.52 7.33 9.5 9.92 7.29 9.21 4.13 5.3 11.7 11 6.78 9.92 7.86 10.1 11.6 8.96 10.2 2.7 9.46 2.89 4.88 11.6 8.96 12.6 8.68 5.89 8.73 0.94 0.94 10.8 9.64 7.48 8.93 1.5 5.78 7.29 7.11 9.19 4.13 7.97 3.69 9.15 3.34 11.2 12.1 11.8 3.34 7.64 4.83 8.02 7.88 9.4 13 9.03 7.39 10.3 10.6 10.2 10.4 10.6 10.3 6.92 7.8 7.92 10.5 9.53 12.8 10.6 8.59 8.94 8.68 4.52 10.4 8.44 8.13 11.5 10.6 8.67 10.4 9.4 10.9 13.1 12.3 13.8 11.8 14.4 10.2 12.5 8.91 9.98 10.8 6.84 5.23 10.7 9.88 7.07 7.38 1.5 4.04 6.1 7.91 2.7 13.2 5.73 2.95 12.3 8.41 7.85 10.3 7.4 7.54 6.43 12.1 9.06 2.48 9.93 10.7 17.1 8.13 10.7 10.7 11.1 5.05 12.6 9.29 10.4 9.46 9.1 9.31 10.2 10.6 7.72 7.75 10.2 5.37 11.3 11.3 10.6 10.7 9.87 8.5 9.42 10.3 10.7 10.7 7.54 10 10.2 8.5 2.48 8.85 8.33 9.09 9.23 9.27 8.44 9.96 10.2 9.45 0 0.94 11.1 8.06 7.74 9.68 4.88 9.49 8.45 11.7 7.37 8.12 11.3 9.56 9.21 7.09 8.44 9.24 6.28 13.4 10.6 8.74 10.7 7.77 14.2 12.3 5.09 8.71 11.6 2.48 1.5 8.01 7.74 7.92 7.71 11.1 9.59 9.55 3.88 9.19 10.4 10.2 11.6 10.1 8.13 3.34 5.96 10.4 11.5 9.72 8.01 3.88 10.7 7.16 0 0.94 6.57 4.74 4.83 12.2 7.37 8.68 7.37 6.92 9.86 10.4 3.06 7.41 7.91 6.23 9.32 12.7 10.2 10.6 4.92 9.34 8.89 8.62 8.61 9.83 5.55 2.89 9.43 9.92 5.43 9.42 10.2 5.05 5.52 7.93 8.44 0 2.89 11.4 12.6 0 5.48 4.69 9.03 9.95 2.22 2.22 7.32 6.14 5.73 1.5 7.21 3.79 0 1.5 8.51 7.72 6.28 10.1 9.69 5.07 7.19 4.96 5.03 6.77 5.01 10.9 7.76 3.47 7.25 3.34 9.44 5.12 5.78 8.84 5.94 0 8.77 9.67 0 4.27 5.85 2.7 0 4.34 8.41 4.52 1.5 2.22 8.35 6.72 8.03 8.02 9.04 3.88 7.44 9.05 6.56 7.57 7.88 6.28 8.33 6.66 6.4 5.76 8.1 7.65 2.22 4.19 5.27 0.94 0.94 4.83 6.11 1.5 3.21 0 2.22 0.94 2.48 2.48 9 0 9.02 6.33 4.27 9.3 2.7 0 8.2 11.1 0.94 0 1.5 0.94 2.22 5.6 3.97 0.94 5.37 8.53 6.6 1.91 7.85 8.51 8.68 8.9 8.12 0.94 7.75 11.7 7.78 2.89 2.22 8.39 5.63 4.2 8.54 13.6 9.65 8.75 7.94 2.22 8.55 11.8 10.3 8.67 8.06 12.8 14.7 6.25 4.22 8.73 7.64 10.7 8.6 9.07 9.38 9.01 8.55 10.1 9.1 8.47 8.48 1.91 3.97 10.1 9.81 7.96 9.43 8.13 8.54 5.73 10.4 2.89 7.73 7.03 0.94 3.06 6.66 8.9 6.32 7.08 9.71 11.1 0 6.5 12.4 10.7 7.57 9.06 0 8.4 13.7 11.4 0.94 9.74 9.02 9.78 10.5 5.55 11.2 7.17 7.03 7.61 11.8 12 10.2 7.79 9.42 6.95 9.77 9.7 13.2 8.79 10.6 9.29 11.6 6.59 13 8.77 10 11.6 11.7 11.2 11.9 0 10.1 8.59 10 13.8 9.54 9.27 8.02 7.51 8.82 13.2 10.5 10.7 9.95 10.1 11.9 10.8 11.7 9.79 10 9.82 5.85 10.2 10.1 9 9.69 10.6 9.5 10.6 10.6 10.7 9.59 11.1 10.1 11.2 10.6 9.74 11 10.1 9.84 11 10.9 11.4 9.8 11.5 10.1 10.8 9.87 10.7 9.27 8.86 8.2 13.9 12.5 11.1 10.7 6.5 5.79 7.81 6.08 8.48 1.5 0.94 5.55 8.04 9.73 8.08 5.88 7.78 11.9 11.7 10.2 13.6 11 13.7 9.33 8.5 5.58 11.1 8.74 9.37 3.79 12.7 9.87 11.3 10.5 10.2 9.23 13.2 9.44 7.92 11.7 9.77 7.91 8.98 6.47 9.03 9.31 9.38 1.5 8.87 9.5 9.64 11.2 5.05 10.8 11.9 7.64 10.6 10.4 8.38 9.14 2.48 14.9 10.8 6.77 9.06 9.56 11.1 10.5 11.9 9.31 9.89 8.37 11.4 8.43 3.34 8.98 12.5 6.32 6.8 10 9.69 8.88 11.7 11.8 11.2 9.68 8.5 1.5 10.4 4.96 9.97 8.29 11.1 7.37 11.8 6.32 5.05 12.8 5.9 9.14 0 8.06 9.61 5.05 11.2 10.6 13.2 11.2 8.77 3.47 10.1 9.74 6.26 0.94 12.4 10.2 10.8 10.1 7.94 4.78 14.4 10.2 2.7 5.05 4.69 3.58 7.86 2.22 5.05 9.62 12.7 9.29 12.4 8.55 10.2 6.33 12 8.25 3.88 10.2 9.15 6.82 5.49 1.5 8.7 7.27 5.63 8.91 7.78 5.58 8.97 9.5 0 5.46 10.5 8.69 5.55 5.78 5.78 1.91 13.3 11.3 9.85 10.5 9.5 6.27 11.6 8.78 5.23 0 10.1 8.36 9.29 10.6 0 10.5 11.3 13.2 7.48 8.63 9.21 9.13 8.85 2.22 6.86 4.74 8.02 11.4 9.15 7.94 8.76 2.7 0.94 10.5 6 11.5 12.3 5.6 7.04 3.58 11.1 10.2 11.2 0.94 8.22 5.94 8.03 8.77 5.09 4.46 7.8 10.2 13 5.8 6.37 11 0 2.7 6.92 13.8 8.21 10.7 10.6 12.1 10.4 8.45 6.62 12.2 9.06 8.46 3.21 10.7 8.09 9 8.73 13.2 12.7 0 9.06 13.4 5.34 4.02 8.85 7.84 11.4 1.96 9.95 8.58 4.52 11.1 10.6 12.4 10.2 7.58 12.4 5.23 7.55 11.4 9.99 7.15 0.94 9.43 4.88 10.4 9.94 11 12 10.1 10.7 8.78 8.86 0.94 3.54 3.47 10.2 0.94 6.46 11.8 7.32 5.16 11.1 11.4 11.8 9.72 11.3 9.62 10.8 10.1 10.2 8.77 12.4 5.88 1.91 13.3 6.02 3.61 7.98 9.1 10.5 9.93 14.7 11 10.9 8.28 8.06 8.64 7.46 8.09 7.43 9.92 9.23 8.77 12.1 6.59 9.43 10.3 7.23 11.6 8.53 7.2 8.63 8.96 10.1 9.64 6.47 8.39 11.2 7.36 9.78 8.04 9.72 9.78 8.62 10.3 11.2 7.94 9.25 4.74 9.2 4.78 11.5 6.64 7.64 7.67 11 9.2 8.96 8.08 10.1 4.46 7.23 10.2 9.3 10 9.64 8 10.4 8.15 11.1 8.43 9.39 10.1 12.1 11.2 9.98 9.79 0 11.7 7.54 6.08 1.91 10.9 11.3 8.15 10.3 9.27 11.2 8 9.4 10.6 9.6 9.35 11.2 11.9 7.62 8.91 8.86 9.71 9.75 7.27 12.1 11.2 11.6 10.3 8.18 9.62 9.75 11.3 10.5 9.9 9.73 9.06 12.1 7.76 10.1 10.2 9.3 11.3 9.65 3.79 9.55 11.8 9.54 9.3 10.1 11.4 6.97 8.74 7.37 9.76 9.73 11.7 9.55 12 9.87 11.8 7.85 11.8 1.91 9.7 9.61 8.81 9.39 10.8 8.77 8.6 8.46 11.5 7.82 8.01 4.46 9.74 8.31 7.93 7.26 7.74 8.2 10.4 7.6 9.99 8.3 8.42 10.3 10.1 10.8 8.02 11.7 8.23 8.85 9.55 8.74 8.32 8.86 9.92 9.7 10.2 8.5 8.57 8.23 1.91 0.94 4.34 9.48 9.55 9.74 8.44 8.64 7.59 10.9 9.32 8.99 11.4 0.94 10.6 8.65 1.91 6.99 9.91 8.54 12 11.1 10 8.73 8.28 7.83 8.38 6.74 9.83 10 7.64 10.3 10.4 7.98 8.73 9.49 9.14 6.85 5.63 10.7 10.9 10.2 10.2 10.3 8.56 7.14 7.56 9.63 10.4 9.83 12.4 7.68 9.86 9.64 7.49 8.69 9.57 11.8 8.76 8.14 10.3 10.5 7.09 9.86 8.84 11.5 11 8.2 10.1 4.05 6.87 10.1 4.05 9.04 10.1 11.2 9.26 12.9 5.12 9.18 10.8 0.94 9.3 5.43 10.2 9.36 8.68 10.1 11.1 10.9 10.5 5.84 10.8 0.94 10.6 5.01 8.01 3.34 12.3 8.8 8.05 7.85 9.2 9.16 9.44 10.8 10.7 1.5 9.13 2.22 6.55 9.31 3.34 8.48 9.91 6.62 3.88 10.8 8.51 10.4 7.73 10.9 10.1 7.7 11.2 9.12 8.09 7.51 8.57 9.2 10.5 5.92 8.25 11.8 9.12 9.57 4.52 10.3 6.93 8.79 11.3 9.89 11.5 6.47 10.3 9.27 8.09 9.63 7.59 12 10.5 9.95 8.62 8.11 10.4 10.1 5.73 10.1 11.2 9.88 12.7 10.6 9.67 8.74 10.4 9.05 11 10.8 1.5 8.58 4.27 9.26 7.03 3.69 10.4 10.9 9.4 0.94 10.6 8.04 7.16 11.9 3.34 9.21 7.15 10.1 11.8 8.82 10.5 8.65 11.6 7.92 9.01 9.87 10.3 11 11.6 10.2 10.3 5.92 3.47 6.41 9.82 8.76 11.2 11 10.7 8.75 9.48 8.65 10.2 10.8 7.58 8.43 8.56 5.88 10 9.59 7.46 9.92 11 8.06 8.7 8.2 7.86 8.39 9.67 9.49 11.9 4.13 1.91 9.2 10.6 11.4 2.22 9.27 10.5 11.3 9.53 11 6.18 9.93 11.1 9.99 8.56 8.2 12 10.3 10.1 8.35 10.8 9.7 10.6 9.82 11.2 8.51 9.72 10.3 7.15 8.99 9.56 11.7 8.15 10.3 9.33 9.03 12.1 10.2 8.4 8.98 10.6 10.9 9.89 8.88 10.4 8.3 11.2 9.2 8.48 11.1 10.8 10.1 10.7 8.41 9.86 9.6 11.3 10.7 9.45 5.96 8.96 8.31 11.2 8.57 10.9 7.44 7.39 10.4 10.9 7.12 11.9 9.63 10.7 8.15 13.7 6.41 11.4 1.91 6.12 12 8.24 2.9 2.22 9.34 8.09 9.33 9.94 9.78 9.82 11.9 10 8.14 9.03 0 8.57 13.5 8.01 10.5 7.25 11.6 8.76 0 11.1 4.88 8.7 9.61 11.4 7.24 11 2.22 9.16 7.73 2.7 4.74 9.68 9.71 2.89 11.1 9.19 8.34 6.86 10.3 9.47 8.99 10.9 9.17 8.37 3.34 10.3 9.72 2.22 3.69 10.1 8.97 9.98 10.2 10.9 10.9 6.82 6.43 5.98 8.92 9.66 9.92 11.7 12 9.06 8.45 9.56 7.64 9.62 8.96 8.8 8.47 0 0 8.73 5.37 10.7 10.6 9.56 8.14 12.6 4.34 1.91 10.1 11.7 10.7 8.25 12.5 2.22 11.2 11.3 12.6 12.3 10.2 10.7 11.8 9.2 1.5 10.4 7.08 8.65 10.8 13.2 11.3 8.68 9.15 5.27 9.99 4.52 11.3 4.52 12.5 5.12 10.3 10.7 10.2 8.96 11.3 11.5 8.31 9.07 9.39 9.8 7.4 11.8 12 13 8.68 8.26 9.08 7.65 9.15 10.5 8.52 9.13 1.91 10.8 9.11 8.95 10.9 8.29 9.34 9.93 7.7 5.34 12.1 11.1 10.2 11.3 10.1 10.3 0.94 7.63 12.1 11.5 6.68 11.8 10.2 1.16 14.8 8.59 3.06 0.94 6.78 6.59 7.69 9.01 11.2 9.33 8.72 11.1 9.05 8.72 5.23 10.5 4.83 11.2 9.33 7.05 10.6 9.2 8.4 7.69 0 9.74 11.5 9.2 6.21 7.19 8.11 9.3 10.9 10.8 13.2 10.1 6.16 8.93 7.84 4.53 6.04 6.73 6.98 5.68 11.7 5.55 11.3 10.7 16.7 10.7 9.79 4.74 12 9.43 13.1 10.3 11.5 7.24 9.73 5.2 11.4 8.37 12.6 11.7 7 0 3.47 12.3 9.9 8.88 8.16 12.8 8.19 7.06 7.84 6.98 6.4 0 6.99 11.4 9.25 7.85 5.52 4.2 3.34 10.9 0 9.22 7 2.7 4.78 11.5 5.92 9.57 8.82 8.75 8.67 9.16 9.55 7.98 6.89 9.34 11 10.3 5.73 6.64 10.1 7.44 4.4 6.23 6.38 7.46 8.81 3.58 7.32 0.94 5.68 8.88 3.47 2.89 8.9 4.94 10.6 9.12 11 5.96 12.1 10.2 12.6 6.6 7.43 2.31 8.51 9.47 7.83 8.49 8.99 8.88 11.6 11.3 9.51 6.85 10.1 7.57 8.69 7.84 7.98 10.8 8.28 4.34 4.88 9.6 8.44 12.4 10.6 11 7.83 7.09 8.62 10.7 9.7 11.6 8.71 7.57 9.31 10.8 6.52 4.13 9.09 10.3 12.1 10.5 9.82 11.5 10.3 11.6 10.1 9.94 4.34 3.47 10.5 9.25 8.1 9.46 2.38 8.63 8.82 5.63 9.1 8.79 6.83 10.1 11.3 12.9 10.2 7.46 8.93 3.47 3.58 10.5 10.3 10.9 10.1 10.3 9.15 8.27 0 11.2 8.63 10.9 11.5 7.61 9.6 10.9 7.83 10.4 8.74 7.17 10.4 7.97 9.19 7.88 8.51 8.39 10.2 9.28 9.11 12.3 11.1 8.55 3.06 8.64 6.43 8.59 8.98 7.83 4.58 4.45 5.63 8.66 8.05 7.06 7.32 9.16 6.21 9.78 8.73 6.59 9.95 4.88 9.08 10.1 9.03 8.43 7.12 8.2 10.1 10.5 9.97 11.4 8.07 11.1 9.16 7.09 8.67 8.39 10.2 8.46 9.52 8.45 4.74 6.89 0 8.09 11.1 6.14 9.29 10.4 0 10.2 0 10.6 10.1 9.31 6.52 2.22 8.72 8.95 6.91 10.8 9.85 2.48 7.5 7.49 9.48 10.4 8.65 4.2 10.3 8.84 11 9.02 10.6 9.51 9.69 9.36 9.38 5.63 9 10.6 9.13 9.63 12.6 9.98 8.94 8.06 9.2 8.51 2.22 4.05 9.73 3.34 11.5 9.7 4.83 9.33 10.1 9.31 5.23 9.67 2.7 8.5 4.34 10 1.91 9.97 6.49 8.36 10.8 7.63 9.47 9.26 10.1 6.96 10.2 9.08 12.3 8.17 8.45 7.67 9.58 12.8 8.91 8.08 7.72 6.37 7.87 6.57 8.69 8.72 10.4 8.68 7.81 6.67 8.48 5.63 8.95 7.87 8.5 2.22 8.64 9.17 8.75 7.99 10.8 8.62 8.47 9.07 4.2 8.81 6.92 1.5 7 0 9.66 5.2 2.7 0.94 10.1 7.04 3.69 10.1 8.33 8.47 8.99 10.3 10.1 0 6.41 10.9 8.81 7.7 6 8.07 0.94 5.12 9.74 7.79 11.1 9.19 9.53 10.4 7.19 8.84 7.69 8.63 1.5 10.4 9.52 2.89 10.3 9.7 8.7 9.51 7.16 9.7 8.06 8.51 8.43 8.35 8.34 10.2 8.57 11.1 5.43 8.75 9.63 10.9 8.36 8.49 11.2 4.92 8.83 6.62 11.3 9.1 7.94 2.48 8.42 10.8 8.05 9.47 0.94 9.33 7.56 10.4 5.9 6.43 11.5 8.05 10.1 9.38 8.1 10.2 7.43 6.26 8.98 10.6 9.18 11.8 9.65 8.63 9.52 8.63 8.55 6.28 9.34 6.94 9.74 6.62 8.33 9.89 10.8 11.8 7.32 9 5.2 10.6 9 9.39 9.22 10.9 7.73 8.5 9.52 9.59 8.48 7.41 8.98 6.86 11 8.97 9.08 7 9.15 7.47 9.53 0 8.85 8.37 5.63 7.45 11.3 10.7 6.59 9.34 9.56 10.4 1.5 8.45 7.76 7.39 8.63 6.5 9.35 4.88 9.81 6.97 9.6 11.1 7.34 7.21 10.5 7.55 8.91 5.96 10.3 2.7 11.2 13.4 11.1 0 10.3 8.28 11.2 7.9 8.07 7.02 8.58 8.97 11.4 5.88 9.8 8.34 9.18 8.74 9.67 8.84 6.89 9.74 0 6.95 8.93 9.77 9.59 5.05 10.1 7.95 9.32 8.84 11.1 10.4 6.57 2.48 9.36 7.91 10.2 7.18 7.8 10.3 1.5 11.4 8.85 9.09 8.3 10.2 9.08 7.45 8.35 0 7.96 8.95 6.8 4.63 5.43 9.14 1.5 10.6 7.57 11.4 9.49 6.16 7.55 9.73 5.92 10.5 9.22 8.11 9.26 9.39 11.3 6.94 10.1 5.81 6.92 1.91 7.91 9.68 7.19 7.83 8.1 11.4 4.46 9.77 8.43 9.43 9.7 6.14 7.37 6.33 11.1 10.1 10.4 7.65 9.73 8.93 8.08 9.03 8.05 9.83 8.35 10.1 3.58 8.86 8.79 8.68 9.14 4.2 7.83 8.59 7.94 7.73 6.37 2.89 9.07 10.7 9.7 9.66 6.53 10.2 7.52 10 10.4 11.1 8.17 11.7 4.46 8.24 9.4 8.73 9.13 9.09 7.7 8.88 12.3 10.7 10.7 10.5 7.43 5.3 8.09 9.09 9.64 9.38 7.99 8.27 9.38 10.2 5.34 8.5 10.6 8.01 8.29 12.7 7.39 8.88 11 8.03 6.84 10.5 9.86 8.78 8.76 9.82 9.69 7.14 9.36 7.51 0 8.45 10.7 10.8 6.79 2.89 9.7 1.91 9.88 5.71 8.66 11.3 7.62 11.5 8.69 11.2 10.8 8.63 8.34 10.4 8.6 8.45 9.78 7.13 10.2 9.12 9.17 10.1 7.8 8.47 9.44 8.77 9.74 8.38 10.1 8.5 6.9 9.96 3.79 8.3 10.2 9.49 8.42 9.82 11.9 10.6 6.35 5.55 9.73 10.3 3.47 9.59 10.8 10.3 9.71 10.9 8.22 8.66 7.83 10.1 11.3 7.99 6.18 5.34 10.2 7.94 8.23 9.45 3.79 10.1 9.72 11.2 7.36 9.95 7.02 10.9 10.1 8.78 7.22 9.3 7.86 10.1 8.15 9.27 3.21 2.22 8.88 6.32 7.83 0 9.64 11.3 1.5 8.96 8.21 9.72 10.5 8.16 8.81 9.06 6.25 6.87 8.45 8.79 0 11 8.35 2.7 8.84 5.55 10.5 10.9 9.14 10.7 9.52 8.92 12.1 7.72 0 9.54 8.21 7.71 9.27 7.73 5.83 8.91 10.2 9.98 9.42 11.7 9.39 5.12 7.61 8.73 8.22 9.63 8.48 10.1 10.9 5.92 6.07 9.75 9.93 10.7 8.19 9.78 8.54 9.12 9.03 6.25 7.49 9.43 9.8 0.94 5.16 10.4 11.1 6.43 8.01 8.2 0 10.4 9.36 9.97 10.3 9.17 10 9.27 10.8 5.43 7.31 10.8 12 10.6 5.09 0 7.44 8.86 9.63 1.91 5.6 2.48 7.81 4.13 8.2 8.76 8.94 0 8.98 12.1 9.09 10.4 9.45 12.6 7.45 2.22 9.45 9.05 8.82 10 8.58 10.7 3.69 10.4 9.77 5.4 0.94 7.87 6.55 3.79 0 7.75 8.44 10.5 7.4 7.49 9.4 10.4 9.02 3.34 7.53 7.79 8.48 6.63 9.44 9.87 0 1.91 6.43 8.82 7.05 10.1 8.4 1.5 8.59 0 10.4 6.84 9.04 9.01 11.3 0 9.87 9.31 5.83 6.08 10.1 11.9 8.99 9.57 7.03 10.7 8.59 8.19 0 8.59 9.11 9.51 9.43 10.9 8.32 10.9 6.21 8.42 10.9 5.58 0.94 8.21 6.56 10.6 7.07 10.1 10 5.71 9.75 8.14 9.61 11.2 10.2 9.71 10.6 7.57 10.2 7.79 5.52 8.47 8.16 8.46 8.89 5.46 9.47 9.74 10.1 7.64 12 9.05 7.25 7.93 9.72 8.4 10.1 11.7 9.12 11.1 0 8.36 8.76 9.7 6.92 11.6 10.6 9.27 9.28 8.73 8.09 9.93 11.1 9.62 7.73 8.91 12.2 7.91 10.2 9.35 7.4 10.1 8.98 9 9.12 10.6 11.1 9.62 7.98 9.44 7.98 11.5 8.92 9.23 5.98 9.08 10.2 10.5 6.55 10.5 9.87 12 11.3 9.49 7.02 11.5 11.4 7.14 10.7 8.74 10.2 8.14 7.69 5.46 6.95 8.53 9.63 9.09 9.8 9.93 6.68 4.92 7.13 8.5 9.5 6.33 9.17 12.7 9.36 6.21 7.31 8.45 9.92 11.3 10.6 11 11.8 9.09 10.3 8.92 9.34 9.41 10.2 12.2 9.2 9.44 9.39 9.56 11.8 8.49 12.5 9.95 8.2 8.73 9.93 8.13 7.86 8.91 9.64 6.41 10.1 9.99 7.58 7.98 8.8 9.69 8.23 9.44 5.83 9.67 8.1 8.94 8.37 8.76 7.05 11.9 8.65 8.68 9.18 2.7 6.78 9.24 6.87 11.4 5.12 8.72 9.72 7.61 9.58 8.76 8.64 2.89 7.83 4.34 11.2 8.86 7.73 9.16 8.14 7.18 8.98 5.6 6.92 7.59 9.39 1.5 7.51 8.85 8.94 6.92 10.6 11.3 4.13 10.2 9.14 7.1 9.7 9.76 8.42 10.5 10 10.9 8.39 6.91 9.82 8.21 8.78 6.83 9.33 6.18 8.3 11.6 7.82 8.48 7.8 12.1 8.77 9.97 10.7 5.9 9.96 6.87 9.55 8.71 10.2 10.5 9.73 9.69 12.6 10.4 9.47 0.94 8.14 9.25 10.5 8.63 7.44 6.27 7.07 11.6 10.7 6.5 3.21 12.8 8.91 8.55 10.7 5.73 10.5 9.09 10.6 8.15 9.53 10.3 10.9 7.95 9.72 8.57 11.3 7.84 12.3 13.4 9.08 9.88 3.47 10.9 8.27 7.26 9.71 0.94 9.83 6.69 11.5 11.5 8.15 7.78 7.85 11.2 9.91 5.43 9.74 10.5 10.1 10.5 11.4 3.41 7 11 7.6 9.89 8.95 6.8 2.7 8.07 0.94 10.4 10.2 9.93 9.72 5.37 9.21 10.7 11.4 8.97 8.95 9.46 11.2 6.94 8.91 5.96 9.91 8.98 8.81 11.9 7.33 4.69 4.69 8.37 11.9 9.35 4.81 9.35 5.87 3.94 6.44 10.5 4.91 10.1 6.29 6.83 8.08 9.58 2.22 6.3 9.35 6.56 7.1 7.02 9.22 9.03 8.51 7.94 9.51 9.95 6.94 6.72 8.48 2.89 6.6 8.99 3.06 0 0 7.02 11.4 2.22 7.64 10.5 2.48 9.62 13 2.22 2.48 6.8 7.98 8.02 9.7 10.4 10.6 0 10.5 9.86 4.58 10.2 9.27 5.51 9.6 12.7 9.22 9.48 11.7 11.5 11.1 8.38 5.76 9.65 10.3 9.68 8.94 8.39 9.69 9.79 9.89 4.63 10.7 5.7 0 5.73 9.3 2.7 8.81 4.88 5.16 0 7.88 13.8 9.81 0 15.1 5.49 8.56 5.55 10.3 8.92 9.09 11.6 9.07 8.88 6.95 0 13.7 7.22 12.2 7.14 8.82 5.12 4.52 7.06 0 8.79 0.94 11.2 7.06 10.4 9.56 15 7.07 0 9.46 10.3 10.7 9.69 10.7 6.08 10.3 9.81 9.4 10.3 10 11.1 8.1 6.8 9.95 10.7 11.2 10.9 10 10.1 11.4 11.3 8.56 11.1 10.3 11.5 9.91 9.55 11 9.37 11 10.5 8.86 8.73 10.5 8.39 7.47 10.8 10.7 12.4 6.77 9.52 8.39 8.06 9.54 8.85 8.27 12 6.94 9.38 7.43 7.1 10.6 11.2 11.4 10.8 10.9 8.63 6.35 10.4 7.1 10.6 9.59 9.36 9.17 8.78 9.57 8.65 7.88 11.1 10.5 10.6 11.3 9.2 10.2 9.13 7.27 8.42 9.96 9.96 8.2 13.1 3.88 9.9 11.9 10.1 5.9 11.6 6.62 6.49 8.77 7.86 5.09 8.51 9.8 7.06 8.49 10.8 9.45 10.9 6.74 9.2 11.3 9.89 10.1 9.56 9.38 9.29 3.34 8.82 7.72 7.82 11.4 10.3 10.6 5.12 10.8 9.83 9.97 11 10.6 8.95 9.63 8.89 9.44 8.8 11 11.2 8.99 11.5 9 3.88 9.62 10.9 0.96 11.9 10.8 11.7 4.92 9.05 10.7 5.68 11.2 5.58 11.8 0 10.7 3.06 8.27 7.29 9.5 11.1 4.52 8.26 8.49 10.8 5.43 9.19 8.44 9.06 9.53 0.94 0.94 9.14 6.3 10.1 7.99 8.3 8.47 8.21 0 8.93 9.03 11.1 11.1 10.8 11.4 11.6 9.32 11.7 10.4 13.4 8.16 6.95 7.53 10.1 8.74 9.67 7.3 13.3 9.46 7.69 8.25 3.79 10.5 8.85 9.55 9.12 4.96 6.64 10.5 9.5 9 10.5 10.4 11.5 11.7 8.84 8.37 10.5 8.7 10.5 11 6.06 9.47 4.34 10.4 10.6 12.5 5.96 9.35 9.66 9 10.4 10.6 8.98 7.32 9.33 5.88 5.09 9.99 8.76 6.43 9.99 11.1 9.75 7.78 11.9 10.3 10.3 10.3 5.4 8.44 9.9 6.16 5.49 11.7 9.98 9.72 7.35 0 8.93 9.95 13 3.88 2.22 9.11 13.1 0.94 6.99 8.05 8.24 8.48 8.79 7.44 6.23 8.48 13.7 3.06 11.3 9.25 9.54 3.06 4.05 8.75 4.13 0 4.27 10.1 8.77 0 5.2 9.2 9.56 9.47 10.6 7.18 12.9 8.2 9.81 9.49 8.98 6.35 8.82 10.2 15.7 10.2 7.55 7.55 5.98 8.38 8.44 9.88 9.96 9.75 10.4 2.48 8.39 8.47 7.85 7.62 7.01 8.08 9.4 7 7.93 11.2 10.5 12.5 8.96 9.67 7.98 11.5 6.89 8.94 8.7 10.2 10.1 9.38 5.37 8.32 11 7.36 5.71 10.3 11.1 9.7 0.94 10.7 5.05 11.5 9.05 3.34 10.1 9.63 7.94 11.3 9.74 8.5 11.6 9.62 9.08 9.98 10.6 13.7 6.72 10.3 9.75 6.92 8.32 8.98 4.2 4.52 5.49 5.6 8.47 11 11.3 10.3 5.43 7.1 9.98 8.28 9.73 9.74 7.36 8.8 10.5 9.39 9.09 7.94 6.71 3.69 8.34 9.33 10.3 5.6 11.1 11.6 7.21 5.58 11.2 9.53 10.6 6.47 8.54 1.5 9.35 10.8 7.67 13.1 8.84 11.9 9.78 7.79 4.4 5.92 7.87 7.94 9.22 12.8 5.9 10.7 12.3 9.75 9.73 8.42 10.1 9.31 9.82 9.52 8.07 10.6 6.89 9.37 10.4 11.6 9.01 9.69 8.84 9.12 9.28 9.98 11.1 9.47 9.16 8.76 0.94 8.96 9.89 8.19 9.55 8.2 8.08 7.09 6.37 13 8.93 9.79 10.4 11.5 7.76 8.2 6.02 10.7 8.07 8.61 9.55 10.5 5.58 7.5 7.73 10.6 6.28 11.3 11.3 9.44 5.9 10.4 8.33 8.99 9.89 8.92 6.96 11 7.82 9.54 9.34 11 10.7 8.09 6.12 9.06 6.95 9.57 9.4 9.63 6.84 6.62 9.74 8.14 8.24 6.33 11 9.77 9.61 10.1 8.69 9.57 8.7 9.89 7.27 10.4 7.97 9.48 8.36 6.33 9.22 7.08 6.35 8.37 10.2 5.66 9.27 11.6 7.83 10.9 8.98 9.42 9.32 3.47 8.11 8.59 1.91 3.88 6.46 9.01 7.41 8.74 8.91 6.16 8.54 9.87 9.61 9.94 8.73 7.71 10.6 5.46 9.77 11.2 12.6 9.65 10.7 10.4 6.99 5.96 3.21 9.56 8.64 4.4 10.8 2.7 8.5 6.32 5.46 12.2 10.3 9.25 3.34 10.1 8.25 10.8 5.9 10.3 11.8 9.44 7.36 10.1 10.4 9.56 7.78 10.6 4.78 7.09 6.84 4.05 12 8.14 9.57 9.2 8.8 8.12 10.6 9.02 9.11 10 5.68 10.4 11.4 11.1 10.7 4.52 9.22 11.1 10.8 10.3 7.63 10.3 10.7 12.4 11 8.65 8.77 9.75 12.7 10.7 9 8.97 14.1 9.25 12.8 9.96 11.2 12 5.37 10.6 9.76 10.5 7.56 9.8 9.29 7.49 7.06 7.63 10.8 7.47 9.38 9.43 8.96 7.43 8.27 10 11.1 11.1 9.79 6.32 9.72 9.76 8.35 10.5 11 11.6 8.08 9.7 4.4 10.4 0.94 0.94 11 11.3 12.7 11.7 10.1 10.4 8.3 0.94 8.04 10.3 11.5 12.2 9.07 12.1 8.17 10.8 7.98 2.48 8.67 10.1 8.15 12.2 12.8 6.92 6.73 8.01 8.92 12.3 11.6 11.6 5.71 7.79 5.58 8.19 7.77 7.47 10.9 4.88 10.1 9.23 9.9 11.3 12.6 11.6 8.78 10.5 10.4 10.5 11 9.09 9.29 10.8 10.9 9.64 0.94 9.93 6.64 7.37 9.01 6.28 9.58 9.42 9.18 5.9 7.95 6.67 10.8 8.96 7.84 9.43 9.27 3.06 7.55 6.83 12 11.5 8.03 10.1 9.74 6.77 11.6 8.88 6.06 2.22 9.09 10.4 11.1 2.22 3.21 9.73 9.63 2.7 10.8 7.67 9.88 11.7 1.5 12.3 10.6 9.43 9.61 9.56 12 0 4.4 3.21 10.5 4.63 6.59 1.5 11.6 11.2 3.06 7.46 9.03 3.47 12.2 9.35 3.69 5.88 11 8.21 8.85 11.3 10.6 7.5 5.27 11.6 9.69 10.4 9.09 8.01 7.67 8.32 9.75 10.3 2.41 8.75 10.6 9.28 5.68 11.3 9.5 7.77 10.9 9.97 8.7 17.2 8.94 10.4 0.94 8.24 3.06 2.92 10.6 1.5 10.4 9.3 9.17 1.5 8.38 4.58 9.81 10.4 9.6 10.2 12.1 6.23 3.69 6.85 9.52 0 7.62 8.49 12 6.8 7.85 10.7 0.94 7.98 4.34 0 8.93 12.1 7.8 10.5 9.92 11.9 10.6 9.07 8.33 10 6.82 9.63 6.62 9.03 9.62 8.2 3.58 10.6 8.75 11.7 8.74 9.61 8.32 10.3 9.59 10.8 8.66 8.5 10.2 11.3 0.94 8.36 10.9 6.27 7.74 7.88 5.58 9.18 10.2 1.91 5.05 9.26 8.59 7.31 12.2 10.4 9.2 11.7 7.45 9.63 1.5 11.6 10.2 9.72 9.53 8.24 0.94 11.2 7.23 8.49 8.27 2.48 11.1 10.3 7.96 9.32 14 14.2 13.7 11.8 8.83 10.8 12.7 7.15 13.9 8.71 12.4 13.2 11.2 14 14.1 9.53 13.3 8.91 13.6 3.34 12.6 12.2 9.22 12.1 12.5 13 13.4 12.4 13.3 12.6 13.2 13.4 12.1 12.5 11.2 12.5 13.7 12.3 8.37 7.77 13.9 5.43 13.8 13.3 13.2 9.18 9.34 12.4 12.2 12.3 13.7 12 13.9 3.98 1.91 4.69 9.47 7.61 13 2.7 3.47 13.7 9.42 11.4 9.96 9.44 8.63 10.7 13.5 13.3 11.6 13.9 12.4 12.3 13.4 12.4 12.8 13.1 12.6 8.67 12.8 13.2 13.3 12 13.5 12.8 12.2 8.42 8.11 11.7 7.63 11.9 7.04 9.55 11.4 8.73 9.92 8.24 11 1.91 5.58 10.3 9.96 11.3 7.1 10.7 10.2 9.31 8.72 5.01 10.6 6.83 10.7 13 5.37 6.35 8.44 0 13.6 7.41 7.88 12.3 11.6 3.21 11.6 14.2 1.91 9.61 10.6 10.5 1.5 11.6 8.19 11.5 10.3 11 12 7.74 9.6 11 10.2 10.7 3.88 10.6 9.89 8.84 14.3 5.34 6.98 8.39 9.29 7.51 7.31 7.41 2.22 12.3 6.77 1.91 6.04 5.16 2.48 0.94 8.32 3.34 8.51 11.5 3.21 3.34 8.67 8.42 6.09 0.94 7.57 5.98 0 4.78 7.91 4.46 3.69 0 0 9.09 4.52 0 4.13 7.44 0 12 1.5 9 9.16 14.9 11 11.8 12.3 7.44 11.2 8.63 8 8.82 9.69 11.3 9.31 9.19 9.57 8.63 7.51 8.75 6.62 6.35 7.26 10.2 9.52 10.6 8.32 9.23 10.9 6 2.74 8.09 10.8 10.3 10.4 7.26 7.48 5.49 1.91 8.69 2.48 6.66 8.91 7.09 8.44 7.13 10.3 8.45 8.83 8.5 6.38 10.8 4.96 12.8 4.69 9.63 8.51 7.39 10.2 6.46 8.05 0 11.2 6.59 2.22 6.82 0 10 7.41 10.4 9.18 2.22 7.63 11.5 7.5 0 11.2 0 6.14 8.12 10.9 7.27 11 7.61 1.5 5.78 7.73 9.79 7.5 9.15 8.88 8.61 7.62 6.08 6.52 10.4 10.8 12.4 11.1 9.84 9.05 8.82 9.92 8.93 5.4 8.42 4.52 6.84 9.6 0.94 8.78 6.46 8.3 1.5 8.46 2.89 13.7 10.3 4.2 6.33 7.08 7.55 12.4 6.48 9.51 10.1 7.57 5.76 9.39 6.55 6.5 7.97 6.37 9.01 12.4 0 7.65 7.67 9.67 11 11.3 9.33 8.59 7.37 7.38 9.86 6.71 9.92 9.47 10.3 9.4 8.48 4.63 5.94 9.21 9.39 8.85 1.5 0 5.49 2.7 11.4 3.34 11.7 11.9 5.12 8 5.98 5.09 3.34 6.5 8.77 8.28 6.63 10.9 7.58 3.58 5.37 1.51 12.6 7.56 0.94 11.4 10 7.81 11 10.4 9.26 0 10.1 9.81 6.68 9.34 10.4 8.94 10.1 7.18 7.87 7.32 4.96 1.5 5.34 0.94 11 9.22 9.58 10.7 7.77 10.3 0.94 5.78 9.74 8.65 8.91 10.7 0 8.43 7.22 4.2 1.91 5.44 6.6 7.17 2.89 0 7.97 7.46 0.94 11.4 10.4 7.22 9.29 10.6 6.6 8.14 5.09 6.23 8.67 4.69 8.39 9.65 9.33 6.92 8.82 5.63 4.13 7.83 6.99 9.27 9.36 2.22 8.34 6.77 10.1 11.1 8.64 9.32 8.32 9.64 8.55 11.9 10.4 9.31 10 8.66 6.12 7.31 0 2.22 2.7 8.35 3.47 6.44 11.7 2.48 11.1 8 9.65 1.5 2.48 9.09 3.47 11.9 0.94 1.5 0 0.94 10 9.14 7.38 12.2 5.15 1.5 3.06 3.34 11.5 9.25 6.1 4.2 4.71 3.21 0 11.6 6.79 5.52 6.04 0 1.5 4.34 0 8.2 4.27 5.23 6.79 8.68 10.2 0 9.78 0.94 1.5 3.79 8.13 4.52 5.37 1.5 10.8 4.69 10.1 6.05 7.43 10.1 0 4.63 8.59 10.1 8.5 6.46 10.9 1.5 6.52 1.91 0 6.28 6.12 8.79 0 6.93 6.89 9.7 10.9 13.2 2.89 6.84 8.56 10.2 0 8.07 10.8 10.8 9.53 9.78 10.1 10.9 8.45 8.37 7.38 11.5 10.9 8.52 11.4 10.4 8.12 7.78 8.68 9.57 9.47 8.93 10.3 9.84 9.67 10.9 8.77 9.98 8.48 9.03 9.31 8.24 9.03 9.41 9.58 8.96 6.57 10.4 7.88 0.94 10.3 9 9.24 4.88 9.27 8.2 7.69 4.2 10.2 13.3 8.01 4.72 10.3 10.6 4.46 8.82 6.86 7.83 8.96 9.47 11.8 9.53 9.68 10.4 9.34 8.73 9.46 4.78 10.3 11 9.14 8.98 8.94 9.78 10 11.7 11.3 9.73 8.28 6.08 7.99 8.05 9.02 6.2 9.28 3.96 7.12 9.22 7.77 8.13 9.72 4.2 5.52 2.7 6.68 4.05 8.99 1.91 9.47 8.15 6.84 8.89 8.69 7.8 2.7 10.2 6.89 9.66 5.55 6.72 9.96 7.23 9.77 3.47 9.4 9.14 8.74 9.77 9.28 11.6 8.75 9 10 9.17 8.03 9.38 9.09 10.2 1.5 8.13 13.1 8.69 9.37 7.91 12.6 6.89 6.79 12.5 6.68 9.29 1.5 0.94 8.06 8.31 10.9 9.42 9.36 13.8 9.94 5.98 4.13 3.47 14.4 5.81 9.83 8.95 8.99 9.47 8.63 10.5 8.68 9.5 0.94 8.39 12.9 7.91 10.2 10.2 1.5 11.1 7.73 12.6 11.4 12.7 5.16 9.68 5.88 9.89 4 6.93 12.9 2.48 11 10 4.96 4.96 7.89 8.81 8.45 9.07 7.96 9.42 9.28 7.61 8.38 10.8 10.9 4.57 5.88 5.44 2.48 0.94 11.8 2.22 8.53 0 2.22 4.46 7.78 4.2 0 4.63 5.52 4.69 1.5 5.81 3.88 10.3 9.62 4.05 7.2 4.46 2.22 0 7.01 12.5 9.3 1.5 11 2.22 6.99 0 12.3 0 10.2 4.52 8.07 3.88 2.7 8.97 2.48 5.71 1.91 6.97 8.15 4.46 11.1 9.65 2.22 2.48 6.98 8.08 5.16 0 9.14 4.52 4.74 8.09 0 7.73 1.91 8.84 5.78 5.63 9.58 4.83 5.27 3.79 1.91 6.33 0 10.4 2.22 10.6 0 6.25 11.5 11.8 10.1 11.9 9.91 9.3 2.7 0.94 7.88 10.1 11.6 9.36 9.48 9.73 2.22 4.05 8.53 8.9 10.5 6.08 10.7 9.57 7.31 10.6 10.6 9.96 11.4 8.74 8.62 9.75 10.2 9.39 10.2 11.6 11.4 8.6 8.72 5.55 8.2 2.7 10.3 7.83 10.3 10.2 9.49 9.19 4.05 8.52 5.09 1.5 8.21 4.2 10.7 10.7 10.5 11.7 10.7 9.6 7.08 9.18 11 11.1 4.64 10.2 9.75 10.6 7.64 7.32 10.2 11.2 11.3 5.78 5.3 10.5 7.92 9.23 8.71 7.53 8.62 8.9 6.53 12.3 11.8 9.98 7.93 10.7 9.53 9.3 9.87 9.39 11.3 9.28 8.71 9.08 9.07 12.7 10.4 11.7 10 11.4 9.98 9.6 8.95 0 12.3 4.58 14.7 8.94 12.2 8.37 12 9.1 12.3 9.82 10.2 10.3 10.4 7.59 12.6 11.1 7.91 9.33 10.3 9.81 11.9 10.7 8.24 9.89 7.61 9.23 6.47 17 9.3 11.1 9.57 0 9.17 2.22 4.05 6.41 11 16.1 8.33 7.86 13.5 0 6.69 13.9 8.77 9 8.98 8.23 0 13.1 8.27 12 10.9 10.1 9.62 12.4 12.8 9.2 10.1 5.92 10.4 11 8.77 10.1 10.8 8.38 10.7 10.9 9.7 13.3 11.7 11.4 11.8 11.1 11.5 5.49 6.12 0 10.6 11.4 11.7 7.74 7.15 12.7 3.69 11.2 10.9 12.4 2.48 9.4 11 2.89 1.91 3.21 0.94 0.94 2.89 1.91 2.01 9 3.92 2.22 0 3.38 12.2 11.5 5.88 10.9 0 7.55 11 9.18 9.2 8.27 9.34 6.35 3.06 2.89 9.24 10.4 4.58 0.94 7.84 7.82 8.19 10 9.86 10.4 8.3 10.5 8.57 5.81 9.69 4.74 14.4 4.13 9.5 10.4 12.2 6.06 11.4 7.97 10.1 8.16 12.2 9.63 9.46 8.59 8.71 7.21 8.91 11.9 10.3 0 8.96 9.3 8.09 9.87 11.4 8.89 8.62 7.08 2.7 4.74 11.6 9.64 2.89 12 7.86 9.46 8.89 8.39 5.55 12.9 5.76 9.93 12.3 7.39 10.2 9.9 8.66 8.32 8.37 9.31 7.36 0 11.1 12.5 10.9 9.87 11.7 7.9 8.39 9.95 5.63 12.7 8.93 10.7 8.51 10.3 8.5 9.96 8.04 9.44 7.12 6.04 5.16 8.99 10.7 10.1 6.97 0 5.92 8.25 9.28 0.94 0.94 11.4 8 9.89 11.7 7.59 4.4 10.8 6.98 8.82 11.6 8.47 12.2 1.5 11 7.91 8.07 8.13 9.61 9.58 0 10 9 7.05 11.5 2.22 1.91 10.3 6.85 10.2 6.21 10.1 10.7 8.01 4.58 12.5 10.9 5.37 8.87 2.48 5.43 8.91 14.7 5.89 7.46 9.47 0.94 9.39 10.2 1.91 9.42 14 7.89 7.29 7 9.12 9.29 9.5 10.7 7.5 11.5 1.5 7.64 4.69 12.2 4.63 8.26 10.4 10.2 11.7 10.1 4.88 9.8 10.7 0.94 10.5 7.99 8.04 9.8 5.05 10.7 1.91 6.72 9.56 11.4 8.68 9.9 10.6 2.7 10.6 3.79 12.8 8.64 1.91 10.3 9.68 10.2 9.84 9.72 9.54 13.6 13.5 13.1 11.9 10.6 12 6.55 10.8 11.9 7.43 10.6 9.52 9.19 9.73 5.98 12.4 11.9 7.08 8.34 6.56 9.56 16.5 13.2 6.44 12.9 10.9 9.14 10.7 9.42 10.2 9.37 10.6 9.75 15.5 11.5 11.5 6.18 5.4 3.47 10.4 9.43 8.81 12 7.07 11.7 9.59 1.91 1.5 2.48 2.22 11.8 0 12.4 9.37 12.2 10.3 5.85 0 9.26 11.7 8.64 10.4 9.61 11.1 11.7 3.97 5.55 10.4 8.29 11 3.69 12.9 11.1 9.04 9.35 11.8 12.6 8.82 9.18 10.8 0.94 15.5 0 14.8 8.4 10.2 13.4 8.61 7.79 7.32 7.37 8.18 8.99 12.9 5.09 12.1 11.9 10.5 9.92 0 8.41 0.94 5.4 4.92 7.85 9.32 0 3.21 3.28 11 10.2 10.8 0 10.3 3.21 10 11 10.5 9.22 5.34 9.5 9.11 10.1 10.5 11.2 9.14 7.64 8.39 6.02 5.59 9.75 8.64 8.73 2.89 1.91 4.69 7.65 9.3 8.69 13.4 6.12 5.27 5.73 7.04 6.57 2.89 6.95 10.7 2.89 5.81 9.43 9.2 4.34 7.98 3.06 4.88 12.2 12.5 6.96 7.92 2.22 7.4 7.28 7.13 5.42 6.56 1.5 7.49 6.77 6.46 3.21 4.52 9.02 2.89 6.14 13.8 5.66 7.67 2.22 6 0.94 6.16 4.74 8.96 8.86 8.83 0.94 4.34 9.39 4.63 8.14 8.72 5.46 2.89 6.44 3.49 2.89 5.05 5.4 1.91 9.12 1.5 5.4 3.69 1.5 5.27 6.52 0.94 0 6.32 10.1 9.02 2.89 9.32 4.34 3.47 10.2 3.06 7 1.5 9.45 11 2.89 0 3.88 8.78 1.91 8.31 4.27 6.1 7.79 8.87 7.79 7.43 8.36 3.58 8.67 6.44 8.56 11 6.71 0.94 10.3 0.94 10.6 3.47 13.3 0 14.5 16 12.7 0 9.22 10.9 10.2 8.27 11.2 12.2 11.1 8.78 10.5 10.7 10.3 10.6 2.48 10.2 10.8 11.3 9.77 10.2 10.4 10.1 9.9 10.9 11 7.7 0 4.46 8.82 4.83 9.39 6.9 8.94 7.41 8.55 11 10.6 6.84 8.48 9.1 10.4 10.5 10.2 9.86 2.48 10.9 1.91 11.9 11.8 11.6 11.2 10.2 11 8.42 10 12.3 9.91 4.05 10.3 10.6 8.62 8.91 10.5 9.38 7.49 10.3 10.6 11.1 10.7 11.8 11.8 9.91 10.5 3.69 13 10.7 4.92 8.72 9.65 0 12.7 16.4 6.3 6.24 8.49 9.15 7.44 8.72 7.23 7.82 8.7 4.34 12.2 12.8 11 8.13 10.6 12.9 10.3 12.6 8.77 5.4 10.6 10.6 10.5 9.55 9.42 0.94 5.23 8.87 3.79 7.44 6.67 1.5 4.27 4.05 5.78 2.22 2.89 10.5 7.65 1.5 9.43 1.91 3.21 4.05 5.63 8.2 10 4.74 9.47 4.27 11.1 9.85 5.4 8.48 6.94 8.79 12 7.51 10.5 9.79 12.2 10.3 14.4 12.1 11.4 13.4 3.21 12.1 12.2 7.9 13.9 8.64 9.38 8.97 6.93 9.62 9.1 9.27 8.75 6.96 13 7.95 9.18 7.88 8.72 7.67 7.15 8.09 6.09 7.24 7.27 10.5 9.39 8.89 11.2 8.16 8.05 5.34 9.21 8.6 7.27 7.37 9.05 7.5 7.9 7.79 8.97 9.38 8.62 7.12 12.1 9.43 7.03 5.83 6.27 7.26 7.81 8.32 9.43 5.98 2.48 9.91 4.4 7.3 9.14 8.45 6.08 6.93 6.71 6.35 6.8 12.5 4.52 3.97 2.89 2.89 0 7.01 6.18 9.46 8.92 7.01 8.23 8.01 4.52 8.62 5.23 7.98 8.63 10.5 5.34 8.82 8.12 8.78 8.25 10.7 9.56 9.97 8.52 11.5 6.2 8.1 2.7 11 4.88 10.1 8.12 7.79 7.27 8.07 7.82 7.83 8.24 7.82 6.79 5.68 7.92 9.26 9.33 7.28 8.39 8.6 9.96 7.65 7.34 7.69 8.16 11.5 3.47 6.5 9.49 5.34 1.5 12.4 8.85 7.25 8.21 6.73 9.28 5.37 9 7.73 8.87 7.22 7.22 7.48 8.7 2.22 4.34 6.43 6.37 9.33 5.52 12.6 9.47 9.12 15 10.3 11.3 8.94 12.4 7.26 13.1 9.29 10.2 8.38 6.38 11.4 9.65 7.31 8.37 9.77 10.8 15.2 4.2 8.38 5.68 4.96 10.4 7.54 12.4 8.88 8.79 9.62 11.4 9.33 9.22 10.9 13 8.96 6.92 9.82 7.5 9.76 9.79 2.89 4.34 7.91 9.76 9.94 5.43 9.14 7.45 4.74 9.23 10 3.06 10.9 11.4 9.19 9.89 9.02 11.2 10.9 9.35 8.65 6.43 10 8.71 8.59 4.52 8.15 9.46 7.74 0.94 12.7 10.1 7.3 9.52 8.02 10.8 9.24 9.93 11.3 5.43 10.8 10.2 8.6 9.39 10.5 9.13 12.3 8.36 9.27 3.69 8.71 7.83 11.2 9.54 11.5 7 8.02 7.55 10.3 6.74 6.47 9.16 7.37 9.3 8.63 9.23 12.6 10.1 7.83 7.32 9.78 9.01 7.59 4.74 4.69 10 8.03 10.4 2.89 8.46 10.1 11.2 10.8 9.1 7.37 8.46 8.44 11.8 10.2 7.26 9.29 9.94 11.2 9.13 8.6 7.55 6.63 11 9.98 5.65 7.2 9.01 9.08 8.55 9.97 7.83 12.5 7.68 7.12 0 4.94 7.92 11.7 1.5 11.2 7.46 6.79 8.51 7.54 7.5 8.36 9.26 8.6 9.51 8.73 8.18 7.61 11.3 12.2 7.87 10.1 11.3 7.77 7.98 7.59 5.45 8.45 0.94 8.57 0 10.2 6.04 10 11.4 7.94 0 2.7 0 7.76 2.48 5.37 7.69 4.13 0.94 8.53 10.6 9.65 8.44 5.34 9.3 7.5 9.88 4.2 3.79 1.5 2.22 10.9 7.59 9.36 6.72 8.93 10.4 8.28 9.2 8.23 10.2 9.5 9.75 10.3 10.1 12.2 8.87 9.9 8.83 10.3 9.56 8.4 7.31 9.77 11.5 10.1 8.81 8.73 8.65 7.08 10.1 8.39 8.87 6.82 6.12 8.13 8.69 2.48 8.07 6.49 6.62 9.12 8.69 7.41 8.22 8.64 7.76 8.38 9.01 7.17 8.28 8.13 9.08 10.2 8.97 8.96 8.2 1.5 7.99 11.2 8.56 7.45 8.79 10.1 9.73 9.08 10.1 7.22 8.73 6.38 8.7 8.52 7.12 7.66 9.31 10.9 8.89 6.37 7.98 2.89 9.37 9.03 10.2 7.8 2.89 7.85 8.13 8.64 7.87 6.78 10.1 7.86 10.2 5.34 9.05 8.45 9.31 8.38 8.92 5.81 6.23 6.56 10 8.33 5.94 7.23 9.46 7.31 10.4 8.5 9.14 9.01 7.81 7.94 10.2 9.16 10.6 9.64 10.5 1.5 6.69 10.3 7.32 10.1 7.42 6.55 6.41 7.78 3.47 8.45 10.6 7.18 9 9.31 2.48 8.76 7.88 9.27 5.85 0 9.83 2.48 9.16 8.32 8.02 8.54 0.94 7.9 8.26 8.3 8.16 8.23 8.21 4.52 8.92 10.9 4.2 3.58 9.45 8.84 9.87 7.2 9.18 3.97 0 5.37 9.56 7.43 6.5 9.45 10.2 10.4 8.03 9.08 9.07 8.52 9.78 7.91 6.87 2.48 8.11 4.74 8.31 7.87 7.26 10.3 8.45 9.94 2.7 5.2 5.68 9.4 5.16 6.83 9.1 1.5 3.06 8.21 3.21 3.58 9.28 9.02 7.63 6.91 9.57 7.19 10 6.04 9.88 2.48 8.14 2.7 6.5 4.74 6.72 3.97 5.43 7.89 4.83 7.47 8.51 2.89 8.97 2.7 0.94 4.58 9.4 0.94 8.57 3.06 6.41 8.05 6.08 2.48 5.99 9.12 9.21 11.3 13.6 7.08 9.17 6.25 8.59 8.01 9.73 11.2 3.47 8.53 10.2 5.58 9.27 10.1 8.39 6.89 10.9 9.56 8.11 9.68 10.2 9.42 6.12 7 8.2 6.96 9.11 12.1 9 10.5 8.88 6.68 1.5 6.33 7.76 7.3 4.34 5.2 8.62 11.3 6.44 0.94 1.5 3.97 3.47 10.3 7.54 8.04 0.94 11 3.88 9.83 3.21 5.63 10.1 10.3 5.34 7.41 7.55 2.5 9.59 3.06 2.7 8.5 3.58 9.78 12.8 6.37 6.97 9.49 6.32 7.05 14.2 6.98 9.91 8.51 13.2 4.69 5.68 1.91 8.56 7.65 7.82 0 3.21 7.6 5.81 8.79 8.4 4.2 8.98 4.05 11.8 3.34 3.06 9.25 7 8.75 9.19 6.89 5.88 8.13 11.5 10.1 8.69 8.33 10.6 8.69 8.76 9.68 8.47 9.79 10.6 9.18 8.65 8.63 10.7 1.5 1.5 2.22 5.01 9.78 4.46 8.41 2.54 5.16 1.5 0.94 8.72 11 14.3 6.5 8.41 5.05 4.46 5.23 4.46 8.84 7.75 6.71 6.47 5.88 2.89 9.28 8.38 9.59 9.53 7.26 9.33 9.47 9.92 6.9 8.99 10.1 9.23 8.58 9.31 6.56 8.9 6.66 8.78 7.13 7.09 8.8 7.26 4.88 8.38 8.93 7.87 7.42 10.3 9.02 8.52 9.18 9.25 9.4 4.58 10.4 10.7 7.65 8.93 10 9.53 10.5 7.59 10.5 9.94 7.69 4.34 10.7 9.45 8.61 8.9 6.08 7.87 9.88 9.89 10.2 4.34 11.4 9.53 8.38 5.52 6.5 8.75 9.2 9.62 6.66 9.3 7.81 7.44 9.99 8.84 9 9.66 8.88 0 11.3 8.51 7.49 8.76 9.38 9.99 11.9 7.87 8.47 8.77 5.68 8.91 11.3 9.42 7.67 5.05 7.59 8.12 10.7 5.81 7.53 5.16 8.44 4.63 7.34 8.68 1.5 4.58 1.5 11.1 7.79 7.3 11.7 8.65 3.06 6.77 5.49 10.8 6.23 8.19 10 9.98 0 10 5.55 9.04 9.03 5.78 11.3 6.57 14.1 9.22 8.24 9.71 11.4 5.52 8.53 2.48 8.1 8.47 10.6 7.29 12.3 9.09 11.4 3.47 2.22 3.34 0.94 6.57 8.6 7.25 7.6 8.9 7.31 7.91 7.25 4.13 9.63 13.2 7.83 4.27 9.25 7.77 6.87 6.62 11.5 7.43 11.2 10.7 8.95 12.3 10.2 12.7 8.4 10.2 10.2 8.36 9.72 8.22 9.64 11.1 8.89 8.41 8.16 4.46 10.2 9.51 7.86 10.9 10.2 9.61 5.68 8.23 7.54 2.38 10.9 8.83 8.7 9.26 6.73 7.79 13.3 13.2 8.55 3.34 5.96 5.63 3.47 9.18 8.69 7.47 10.5 11.2 13.9 8.65 3.34 0.94 8.82 5.05 10.7 11.6 9.1 6.2 4.58 12.6 11.4 10.6 9.94 3.58 8.59 9.49 1.91 11.2 12.3 9.31 10.8 9.63 10.4 10.6 1.5 6.73 9.52 8.08 9.51 7.6 9.47 9.58 9.58 12 6.8 8.44 9.53 11.6 9.2 9.78 11.4 0 8.77 7.35 9.13 9.39 11.5 9.58 9.14 6.74 9.74 10.5 7.82 10.8 11 9.3 0.94 9.21 10.6 8.39 6.08 10.9 9.63 5.83 0 10.2 14.6 10.6 7.27 4.88 9.48 5.9 8.27 12.5 5.25 12.7 10.2 11.4 10.7 12.4 10.1 5.12 1.5 12.1 1.91 8.7 6.33 3.97 10.7 8.65 4.96 7.99 7.37 9.11 4.34 9.27 3.06 10.9 10.5 7.41 7.42 10.3 10.2 10.5 5.55 9.08 4.45 9.91 6.92 9.92 9.76 5.73 9.44 8.53 12.2 9.55 7.85 8.33 10.7 10.2 9.07 0 9.28 10.4 3.27 10.1 10.2 7.73 9.28 8.21 5.49 6.44 8.32 9.67 0 9.43 9.8 6.55 11 14.4 8.66 9.64 6.5 11 8.45 4.74 9.67 8.58 9.66 9.03 11.3 7.55 12.2 11.3 12.9 10.3 10.7 10.5 10.7 13.2 9.72 8.02 9.63 8.1 7.98 8.37 2.22 9.29 3.21 11.2 10.8 8.86 6.16 9.91 0 10 11.6 12 12.1 7.45 11.7 8.61 8.72 8.77 10.8 9.06 7.12 3.58 12 2.7 9.2 8.94 9.04 9.15 6.67 5.2 1.5 10.2 2.7 0 0 9.29 2.22 7.32 1.5 2.22 9.08 8.2 0 0.94 3.47 0 0 0 8.86 1.5 9.59 11.6 10.5 8.5 6.93 3.21 0 6.41 8.93 8.32 0 8.59 6.51 7.53 9.7 6.95 4.92 6.95 8.6 8.4 8.27 0.94 7.08 3.34 8.06 9.85 9.06 1.5 2.39 0.94 6.02 5.6 0.94 6 5.71 12.5 9.88 6.76 9.1 10.4 0 10.3 0 2.48 0.94 0 9.33 6.71 0 8.07 9.39 6.37 6.58 10.1 0.94 11 9.89 9.69 9.28 7.98 0 1.91 9.77 11.2 10.3 0 8.12 11 8.04 8.06 11 5.3 0.94 5.37 11.4 0 10.4 10.1 8.68 2.48 11.7 12.1 9.74 7.79 8.89 9.75 1.91 7.77 9.1 8.71 7.35 12.1 8.7 8.61 6.79 3.58 8.21 11 5.75 7.09 2.7 7.96 9.65 6.57 10.5 7.63 8.83 6.87 9.08 10.6 3.69 2.22 8.69 9.8 9.16 8.59 0 6.5 4.52 7.41 2.89 3.01 9.24 6.91 8.23 7.73 6.85 6.44 10.2 10.9 6.08 8.05 6.46 10.3 10.3 6.55 8.04 0 4.69 1.5 7.12 3.06 8.98 0.94 3.79 7.59 10.1 6.46 4.46 10.2 11 7.8 8.15 12.1 5.88 10.3 9.99 7.92 9.02 6.95 6.21 0 2.7 0 7.93 11.7 8.67 9.82 5.49 10.6 10.3 4.2 9.27 10.2 0.94 4.88 8.22 0 8.62 8.5 0.94 9.42 10.2 4.88 8.31 15.6 10.4 5.09 9.63 4.63 8.14 8.86 10.6 8.21 11.4 8.43 4.05 10.6 11 9.26 7.46 0.94 13.1 2.48 5.12 0 3.88 6.33 6.85 9.23 10.1 9.21 9.84 5.43 5.86 8.91 9.82 1.5 7.59 6.02 2.22 7.6 8.55 7.59 7.3 9.9 8.76 7.91 6.91 9.03 9.43 7.79 8.42 9.07 8.58 7.71 7.46 7 6.97 4.27 9.88 10.3 11.7 9.88 7.62 9.87 5.9 10.4 9.62 9.48 9.25 7.44 11.8 10.8 5.43 8.97 8.57 3.06 7.5 6.28 10.4 7.05 7.84 9.03 10.8 0 0 6.33 9.48 10.5 9.87 3.79 8.11 5.27 5.73 2.48 8.18 7.01 8.74 6.67 7.58 2.48 9.24 5.37 7.43 5.43 5.66 8.69 10.4 10.7 8.28 7.73 10.2 8.11 8.9 9.21 9.25 10.2 10.7 11.6 12 6.33 8.6 7.56 8.43 8.87 9.93 6.47 8.2 8.6 8.65 8.83 10.5 7.85 9.51 9.73 8.76 9.6 8.39 9.73 8.88 10.6 8.62 8.88 9.24 5.52 9.31 8.2 3.97 8.87 10.4 9.32 8.97 9.15 7.47 9.55 8.52 9.49 7.36 8 9.28 1.5 8.17 10.6 8.3 9.25 6.77 9.13 9.67 7.37 9.54 3.46 8.1 8.04 8.41 8.69 7.39 7.82 9.81 0.94 10.1 8.8 8.6 9.79 8.23 8.45 9.49 10.1 7.03 8.57 9.22 8.77 9.77 9.62 6.32 7.86 9.6 8.51 8.5 0 10.5 8.8 10.4 8.93 10.4 7.48 8.3 9.18 9.67 0 9.73 10.9 9.46 6.74 10.1 5.4 9.35 6.87 9.87 4.69 10.1 4.27 9.69 7.31 8.34 9.87 7.47 6.89 10.3 9.33 10.4 10.6 9.99 10.8 6.87 9.26 7.87 9.9 4.74 7.59 7.12 4.46 8.34 9.48 9.19 7.71 6.9 10.9 0.94 6.39 9.23 9.52 10.5 7.27 8.55 7.62 10.6 8.51 9.98 6.16 9.31 1.5 2.22 5.01 10.6 7.98 9.61 6.28 13.5 8.96 6.71 8.56 10.2 5.49 10.6 6.41 7.34 9.43 8.39 9.27 8.51 10.8 6.28 9.67 6.56 2.48 11.1 7.05 8.18 1.5 10.5 5.49 3.06 10.6 8.7 7.55 7.93 7.55 8.61 2.22 8.45 7.59 7.99 10.8 7.07 8.3 5.6 0.94 6.67 9.75 10.3 5.98 4.46 8.26 11.2 4.69 0 0 3.47 9.32 9.76 8.78 10.3 10.9 7.27 9.21 0 9.19 6.55 1.56 8.14 8.61 11.1 3.69 5.66 7.16 8.99 5.23 6.9 0 10.7 8.61 2.22 4.34 7.85 11.9 9.86 7.32 7.25 10.4 8.93 10.4 4.78 12.3 7.63 11.2 6.37 3.47 11.6 2.49 11.1 9.51 6.93 10.5 7.87 10.7 6.94 1.91 8.72 6.49 5.58 8.35 7.24 9.89 11.6 5.05 8.66 4.58 5.92 9.37 9.35 4.05 5.55 5.58 0.94 8.58 8.91 8.41 7.5 8.52 4.2 7.04 9.43 9.4 10.1 8.91 10 3.58 8.23 4.78 0.94 6.16 9.12 9.74 6.32 8.5 1.5 4.83 8.32 4.74 7.68 5.47 8.19 7.74 8.43 9.21 7 8.73 9.41 9.2 7.16 1.91 5.09 7.2 7.25 10.1 7.69 8.28 10.9 8.54 7.18 8.19 12 8.62 9.84 2.22 10.3 9.34 9.76 9.27 9.64 10.1 8.47 9.45 11.4 7.52 9.88 8.7 4.9 6.67 8.75 9.04 9.51 8.07 7.03 9.65 9.06 9.07 9.57 9.92 9.19 10.2 4.2 5.37 8.82 9.34 8.62 9.12 10.6 9.18 6 8.05 7.23 9.52 8.31 8.18 8.69 9.3 8.59 11.4 5.98 2.89 8.38 4.2 8.75 8.86 9.14 7.44 8.84 10.1 0 9.35 1.91 8.12 7.94 8.73 3.06 7.91 9.33 3.34 6.06 7.55 7.57 9.62 7.31 4.83 8.43 8.79 10.2 9.66 8.57 7.47 11 7.99 0.94 6.67 1.5 9.57 9.04 9.75 3.34 8.65 10.2 11.2 9.95 7.62 11 8.28 7.31 9.13 3.79 7.13 10.3 10.1 8.99 8.02 6.3 11.2 10 8.01 7.79 10.2 8.2 9.38 8.36 7.44 10.6 10.5 9.41 8.46 5.37 1.5 9.28 7.52 3.47 8.71 9.91 9.15 9.69 1.91 12.3 0 8.9 9.94 5.55 9.91 8.14 2.48 3.34 8.95 6.23 8.08 11.2 9.02 11.9 0.94 5.55 2.89 0.94 9.92 9.25 9.48 7.14 9.73 9.03 9.55 9.93 8.38 8.86 9.41 5.4 9.62 12.2 2.7 9.13 9.54 8.98 11.1 6.23 9.81 10 9.79 7.55 5.6 7.52 2.48 8.47 11 4.4 8.17 11.8 10.1 9.75 7.25 10.6 9.06 9 9.26 9.07 11 9.52 9.72 7.05 8.17 10.5 10.9 9.91 7.75 9.88 7.48 10.2 6.25 9.36 8.96 9.57 3.88 4.99 9.9 8.57 4.52 2.22 8.01 4.92 6.72 4.78 8.76 3.93 5.3 11.6 8.15 10.1 7.33 6.08 10.4 7.25 11.3 9.92 8.04 3.88 10.8 11.8 10.1 8.82 9.15 12.5 11.5 6.18 10.8 9.63 9.92 9.59 9.01 7.86 11.2 8.03 9.31 6.79 0 7.31 9.15 9.94 9.32 9.73 9.63 3.79 6.76 9.12 10.5 8.42 12.6 7.85 10.3 4.96 4.88 9.53 9.4 9.97 8.35 9.94 7.98 7.97 6.02 9.7 0.94 8.93 6.14 8.93 10.6 9.89 8.85 3.88 7.23 6 3.69 10.6 8.67 7.16 7.09 8.04 11.6 10.2 10.6 10.2 5.4 6.4 12 10.9 10.9 12.1 11.3 11.2 7.54 10.7 10.9 11.7 11.8 11.6 10.6 10.2 13 10.7 8.52 9.72 11.2 6.8 8.8 10.6 7.42 9.38 14.4 10.8 5.05 7.52 10.9 8.54 9.25 9.7 3.34 12.6 1.53 9.52 8.8 10.2 7.45 9.64 8.3 5.6 11.1 3.34 11.7 8.32 9.12 5.46 11.1 11.7 12.3 9.97 12.5 10.6 8.19 9.11 8.89 9.93 12.4 10.1 8.3 11.1 7.99 9.71 7.8 7.54 4.58 8.87 9.76 7.77 4.34 8.62 2.89 1.5 11 10.8 12.3 0.96 9.97 10.9 12.4 8.81 11.3 8.86 6.96 9.29 10.1 9.67 11.3 9.67 5.97 10.2 5.01 10.5 1.91 1.91 7.45 7.08 8.34 3.69 6.56 6.02 9.96 3.69 8.82 9.56 9.4 6.6 10.1 10.4 10.4 10.4 9.93 2.89 4.83 3.06 0.94 9.82 8.46 4.34 11.1 10.6 2.22 9.99 8.62 4.96 4.92 4.2 10.6 5.55 11.8 10.8 10.1 8.23 9.54 6.3 8.86 8.81 8.96 8.96 9.37 0 3.06 6.55 10 7.73 0.94 9.56 9.96 8.09 5.19 13.2 11.7 8.75 9.85 5.09 2.7 11.9 0.94 8.55 9.4 11.1 8.9 8.71 9.1 10.6 9.03 10.1 9.53 10.6 8.83 5.2 5.34 7.15 13 9.95 8.94 10.2 8.88 9.17 9.12 9.93 11.4 10.7 9.17 9.62 8.52 9.65 9.46 9.85 11.8 10.1 10.1 10 10.3 1.5 7.35 3.47 9.1 10.4 8.7 10.8 10.4 6.04 8.35 9.61 4.63 6.2 9.61 6.35 8.67 7.87 8.77 9.02 10.6 9.71 8.44 8.69 3.38 9.05 9.75 12.2 9.72 10.1 9.23 9.06 10.9 13.1 7.61 5.85 12 9.09 11.1 0 0.94 3.58 10.9 4.58 0.94 8.57 8.35 10.7 7.17 3.21 9.34 8.35 9.7 8.26 10.7 10.9 5.94 8.36 2.22 4.96 3.88 3.21 8.39 6.68 7.93 8.77 11 11.2 6.97 0.94 9.38 5.81 8.58 0 2.34 7.29 1.88 3.58 7.55 0 9.21 9.89 7.66 6.38 8.51 10 11.6 11 0 10.4 8.79 10.3 4.74 9.33 8.83 9.45 9.46 9.35 7.71 4.63 6.04 9.25 10.4 11.9 10.8 3.97 5.34 5.58 7.65 8.82 7.25 6.46 9.38 10.4 10.7 4.4 9.94 6.74 7.51 6.27 5.52 7.45 7.44 10.7 9.99 9.47 8.86 9.1 8.14 10.2 1.91 3.06 5.9 9.86 5.92 8.85 3.69 7.26 8.4 11.8 8.06 0 8 4.2 6.73 4.05 7.84 11.2 9.2 6.83 7.97 9.67 8.5 1.91 3.69 7.62 9.56 5.98 3.21 5.4 9.5 8.56 12.4 8.51 9.24 5.84 10.2 7.43 6.28 9.74 8.94 8.45 11.3 7.54 7.75 6.3 7.95 12.4 9.12 8.97 12.1 9.03 3.88 3.47 3.06 10.4 5.71 10.1 10.2 9.27 5.43 4.34 9.33 6.63 7.23 9.91 7.24 3.74 5.88 10.3 9.33 8.81 7.67 6.67 8.76 9.34 6.56 8.27 0 5.23 8.04 7.91 8.49 11.1 9.54 8.69 7.99 9.5 9.2 7.88 8.52 5.63 8.17 6.63 7.3 9.36 7.15 10.3 7.86 9.75 10.6 8.93 8.23 1.91 2.54 9.97 10.1 8.36 8.68 11.3 4.4 9.14 9.56 7.55 6.23 10.3 9.24 12.4 9.96 9.97 7.77 9.41 6.37 6.59 0.94 9.56 10.4 10 10.6 8.56 6.71 10.1 9.36 8.9 4.69 9.84 5.43 8.6 9.55 9.78 8.29 9.74 10.8 10.5 10.8 10.2 5.73 10.1 9.46 8.53 8.07 7.67 9.9 7.28 0 10.2 12.3 7.79 10.4 7.32 7.77 8.01 9.43 11.4 8.01 8.66 10.2 7.57 7.12 0.94 5.12 5.83 4.63 9.25 2.7 8.89 8.94 7.54 9.93 9.44 5.05 10.1 9.48 8.31 10 9.26 9.24 0 10 10.5 12.1 8.93 8 3.88 3.34 6.57 7.6 10.8 8.26 0 4.52 8.56 8.31 11.8 9.31 10.4 9.46 7.58 2.22 9.25 10.3 10.2 7.31 10 5.88 7.41 7.52 10.8 5.3 9.66 9.97 2.22 10.3 10.9 7.01 9.68 6.59 9.1 2.22 8.85 8.9 6.93 6.2 7.24 9.05 4.74 8.42 10.6 9.44 8.6 9.6 3.47 8.44 7.69 7.04 10.8 3.97 7.22 0 8.28 9.43 9.12 7.28 1.5 10.1 6.76 10.3 13.3 6.87 8.82 10.4 9.59 6.89 0 6.78 6.89 7.83 6.28 4.83 10.5 9.8 5.3 2.89 7.63 3.97 11.1 7.54 9.65 9.71 8.26 10.5 7.76 3.34 10.9 0.94 8.01 9.07 10.2 8.02 5.4 8.08 7.56 9.08 8.37 7.67 9.16 11.1 6.47 2.89 9.41 0 4.27 7.65 10.1 0 7.92 5.16 7.92 8.56 7.17 3.97 7.97 7.93 9.79 5.23 8.44 10.9 6.72 9.59 10.1 10.1 8.82 8.11 8.75 10.2 9.59 3.47 1.5 8.62 8.42 7.61 5.96 10.5 10.7 4.88 11.3 8.7 14.2 5.94 9.69 7.96 12.2 9.14 10.6 1.91 9.62 10.1 7 8.75 4.05 8.78 9.44 6.92 8.11 6.2 5.05 7.92 6.6 6.18 3.21 0.94 7.38 4.05 12.5 0 10.9 10.5 7.74 7.83 9.85 5.2 6.97 8.24 6.99 8.27 1.5 10.9 8.08 11.1 9.48 8.17 4.46 11.7 9.62 5.55 3.79 4.2 9.43 0.94 11.1 8.52 1.91 10 4.27 7.11 11.1 10.1 5.83 10.2 4.63 10.1 6 11.3 8.22 3.88 7.59 9.52 5.09 9.91 10.1 11.2 6.25 9.37 10.2 9.71 5.58 10.3 8.08 9.96 10 7.96 6.63 10.1 9.78 8.74 8.95 9.14 10.7 10.4 11 9.3 9.6 1.91 9.2 13.1 8.59 6.49 9.83 10 12.2 8.78 8.66 9.38 14.7 10.6 4.74 9.44 10.2 8.14 7.51 8.64 6.16 11.4 11.3 7.37 7.19 8.82 11.1 8.11 0 8 0 0 8.02 10.5 8.37 7.04 4.27 0 7.11 9.14 7.23 7.77 9.41 9.34 8.67 13.1 10.2 6.25 3.79 6.32 10.6 8.19 11.2 6.14 10.8 8.04 9.47 9.73 4.27 10.6 8.24 9.4 10.4 8.44 7.74 8.81 6.1 11.1 6.38 4.78 10.8 9.18 7.52 10.3 9.25 9.75 12.2 9.29 2.22 11.2 9.64 11.2 6.25 3.06 11.3 13 0.94 10.3 0 10 5.27 10.8 7.57 6.16 3.06 6.1 6.67 5.68 5.43 9.33 11.4 9.35 7.59 13.3 9.14 9.33 8.97 7.57 9.3 9.88 5.46 6.64 2.26 8.46 9.24 9.55 9.94 8.26 10.9 9.43 8.67 8.99 11.1 10.4 8.36 10.9 10.5 2.89 9.66 0 6 0 2.7 0.94 11 8.36 10.9 5.63 7.96 9.18 10.4 0 5.76 3.34 9.04 8.69 2.7 9.05 10.2 6.06 7.27 12.3 0.94 0 11.7 11.4 5.55 8.26 6.3 8.32 9.06 6.51 10.7 10.1 2.7 8.95 12.2 1.5 9.19 9.58 10.7 9.92 10.2 9.23 9.17 6.84 10.5 10 9.52 3.58 11.5 12.2 2.48 10.9 9.38 8.03 4.69 9.22 11.1 12.1 5.58 6.33 9.19 9.64 0.94 9.87 10.6 2.48 10.9 0 8.69 4.58 8.88 8.01 8.55 7.78 14.3 14.4 10.2 1.91 12.8 6.8 8.23 9.52 11.4 9.44 10.4 6.99 7.7 11.3 0 8.6 8.69 9.53 6.92 9.89 9.61 9.96 9.86 10 10.4 9.22 9.35 9.3 1.5 8.35 12.2 5.43 2.22 9.09 9.25 10.4 5.94 7.95 9.27 10 11.4 6.67 5.58 9.26 9.95 5.49 8.6 13.1 13.2 5.76 10.3 6.3 5.71 9.14 9.18 10.3 10.1 8.41 6.3 11.4 10.1 8.2 7.99 4.78 10.9 8.48 10.3 11.7 9.88 10.1 9.8 12.4 10.7 9.76 7.24 9.87 6.1 8.23 9.06 8.07 6.4 9.19 10.9 10.8 7.53 9.56 6.74 8.6 8.57 11.4 10.4 10.9 10.6 10 8.88 10.1 11.5 10.3 9.9 9.36 6.71 7.73 9.7 10.9 9.83 8.54 9.36 6.96 9.76 10.3 7.16 9.33 11.7 6.33 10.7 11.6 4.52 8.17 11.4 5.3 9.93 8.4 12.2 11 0 12.8 11 6 3.69 14.1 9.44 11.8 6.35 10.7 10 7.94 11.4 8.61 10.3 12 9.88 6.64 10.7 9.06 4.92 4.69 11 8.44 10.2 9.61 6.3 7.83 10.2 1.5 2.89 8.18 11.1 13.5 10.6 10.4 6.38 12.1 9.33 8.36 9.39 9.56 9.2 9.12 8.79 8.72 8.18 8.8 10.2 11 9.74 9.15 9.9 8.8 8.49 12 12.9 7.77 7.02 10.5 10.7 9.45 11.4 7.38 11.3 14.1 11.4 4.34 14.2 10.1 10.9 8.84 8.29 8.48 9.05 10 11.4 6.86 9.71 10.2 9.66 10.2 11.1 7.8 10 12.2 5.78 10.5 9.56 9.75 10.3 9.04 8.65 9.02 10.8 6.35 6.38 5.37 6.04 9.58 9.31 11.3 7.99 8.82 10.3 2.01 11.1 5.12 10.1 10.1 8.96 10.6 9.13 9.3 7.09 8.31 14.4 5.4 6.74 9.35 10.8 9.12 10.3 11.6 1.5 8.59 9.43 10.4 10.1 8.63 7.33 10.8 10.2 9.33 10.2 1.5 12.7 9.84 10.2 4.83 9.78 7.32 9.43 8.32 14.6 7.73 9.77 8.28 8.6 9.17 10.5 9.5 11 8.45 12.4 10.3 9.94 10.2 10.5 7.74 5.73 12.5 13 11.1 11.6 11.4 10.5 11.4 11.3 10.5 11.1 6.55 11.2 9.66 12.7 7.96 11.4 10.9 8.18 5.88 9.93 9.38 8.91 10.9 9.79 11.5 9.75 8.96 10.4 11.9 9.79 10.3 13.1 12.6 12.6 14 11 3.06 11.7 10.1 10.4 12 7.32 10.2 8.25 11.4 9.69 8.69 9.6 10.2 10.4 7.09 9.67 9.93 6 10.3 10.7 7.52 9.24 8.29 9.99 5.71 0 7.74 7.64 11.3 9.72 3.06 7.77 10.1 9.94 10.6 11 9.03 10.3 8.68 8.27 10.4 9.84 8.28 8.33 7.33 10.4 9.75 10.6 7.74 10.1 10.9 10.3 10.6 8.65 12.7 10.4 9.75 9.44 9.52 8.55 9.91 10.9 10.1 11 10.6 9.67 9.72 8.08 7.71 9.12 11.6 6.74 10.1 7.88 10.6 8.1 13.5 9.97 9.21 9.77 11.1 9.04 9.89 11.3 6.44 6.21 11.4 9.63 11.8 10.8 8.86 11.5 8.96 9.3 11.3 9.97 7.62 7.03 9.45 5.83 10.4 4.05 12.6 9.54 9.98 10.8 11.4 11.6 10.8 9.06 9.87 8.5 9.73 10.8 5.4 9.43 6.28 9.66 6.98 5.52 10 10.4 7.49 8.54 10.9 10.6 6.96 8 3.21 10 9.7 9.02 12.9 6.78 4.58 10.1 5.4 7.01 6.12 6.63 9.1 9.84 8.57 11.5 11.3 1.91 0 11.2 9.92 10.5 10.8 4.18 9.78 9.29 9.79 8.11 9.65 12.1 8.45 8.25 7.47 7.52 12.6 10.1 10.4 4.83 9.37 9.76 3.58 11.2 8 7.8
-TCGA-2G-AAG7-01 6.25 7.45 7.36 8.23 7.99 9.47 2.78 5.79 10.3 5.5 7.19 9.01 4.28 1.42 4.66 9.58 9.69 10.8 7.08 8.02 7.79 12 7.66 2.12 10.3 7.39 5.2 9.15 3.88 7.18 5.18 5.34 3.6 0 4.71 1.46 1.81 8.62 1.81 5.18 4.66 5.14 3.35 0 6.97 2.94 1.81 5.98 11.2 5.21 4.01 6.24 8.11 8.53 6.8 3.76 7.21 1.42 7.61 7.24 7.58 5.5 6.16 2.94 2.37 2.37 8.51 9.06 11.2 5.46 1.42 7.63 3.67 4.22 4.28 3.46 5.8 3.46 2.37 1.81 4.71 5.98 6.57 5.77 3.09 1.42 6.58 0 2.94 0 8.85 4.08 7.2 2.78 2.59 3.85 3.46 2.12 2.59 0 0 3.46 0 6.26 3.57 2.94 7.99 8.55 6.6 6.3 1.42 1.42 8.54 4.8 5.84 2.37 3.35 5.79 4.55 2.59 4.15 5.51 0 3.57 1.42 7.57 3.09 2.94 4.08 14.6 4.6 5.11 3.93 6.39 2.37 2.37 4.01 0 2.7 8.2 6.6 10.9 0 2.94 4.15 11.6 0.88 9.19 0 3.57 3.84 0 8.37 9.98 11.4 1.42 4.01 0 10.6 7.55 5.96 7.97 1.81 4.34 8.32 6.47 7.77 3.76 10.5 0.88 10.4 9.39 3.35 4.15 3.23 5.27 2.94 5.48 8.76 5.08 6.63 8.75 3.85 3.09 4.16 2.59 4.51 3.23 9.1 4.56 9.32 9 4.46 2.94 5.81 3.65 5.21 11.3 9.75 6.65 4.01 8.8 9.53 9.35 7.4 9.1 4.75 10.5 13.4 11.8 9.98 11.2 12.5 12.8 11 10.4 9.21 11.7 7.9 11.3 6.78 9.48 11.2 10.2 7.5 7.58 5.94 10.4 9.23 14.2 11.1 3.09 8.93 9.09 10.2 7.52 12.2 8.33 10.7 1.42 10.4 8.69 11.7 11.8 12.3 11.8 12.2 12.8 6.01 11.2 6.68 0.88 6.27 9.92 10.1 1.81 10.4 11.7 2.12 12.4 3.46 10.3 11.1 11.3 8.66 10.9 8.21 10.9 10.7 8.24 9.14 5.86 7.32 11.2 13.5 6.32 4.71 13.8 12 8.62 13.1 11 11.6 5.11 8.94 9.25 10.3 7.91 12.3 10.8 4.15 9.98 7.29 7.93 10.6 12.8 5.27 14.4 7.65 12.3 1.42 12.3 8.66 7.9 11.3 11.4 6.84 11.2 8.53 8.79 12.5 9.56 1.81 8.64 8.86 11.3 10.3 4.4 8.68 8.17 11.2 11.2 8.72 8.74 11.4 11.6 12.4 10.3 10.2 6.35 10.7 9.69 12.4 8.98 11.6 10.4 9.42 8.75 8.2 6.84 11.9 6.95 8.45 10.1 8.28 13.1 11.1 9.74 11.6 12 11.5 5.37 10.2 1.81 4.84 9.55 8.53 9.6 2.37 7.41 4.88 10.7 8.98 10.5 8.95 5.45 5.56 5.18 7.49 8.12 8.6 12.4 10.6 11.2 10.4 7.22 8.39 10.3 3.09 8.42 8.68 10.8 8.97 10.9 10.5 12.1 6.72 9.01 10.7 9.45 8.73 7.53 9.82 7.58 4.96 11.9 9.95 1.81 8.92 5.18 6.09 10.9 11 10.4 8.28 10.7 10.4 10.1 11.2 8.45 8.58 7.69 11 9.99 9.13 11.3 10.4 10.5 8.77 7.37 10.2 2.37 9.23 12 8.85 12.2 10.8 9.86 5.98 10.5 9.8 13.2 5.33 10.3 6.62 7.66 7.7 9.1 5.68 9.83 8.9 11.6 9.86 5.42 9.62 8.91 7.27 6.78 0 10.6 3.35 7.28 3.46 10.6 9.6 7.45 8.58 11.2 3.85 2.94 7.11 9.65 11.4 3.46 8.19 8.31 2.12 4.15 5.5 7.96 6.91 6.9 9.2 7.02 10.5 10.3 7.52 9.27 9.09 7.84 15.1 8.64 4.46 7.93 10.5 12.6 12.8 6.85 8.19 4.92 9.38 9.86 8.5 7.83 11.9 8.11 7.72 9.38 5.94 8.57 10.9 14.3 8.93 7.99 8.45 10.1 6.68 9.7 7.24 9.71 6.03 9.22 3.23 13.8 5.85 10.4 10.7 6.71 10.7 11.7 7.87 10.9 9.97 10.9 9.94 11.8 9.18 9.26 10.4 8.34 11 11.2 10.8 7.33 11.6 11 8.05 8 10.4 8.55 9.74 10.9 8.18 10.1 10.8 2.37 9.51 6.53 12 8.69 8.88 10.8 10 9.6 12.4 11.7 8.5 5.61 9.95 7.47 9.6 10 10.6 5.58 10.9 3.85 10.6 8.64 11 10.4 9.1 11.5 9.77 9.1 8.64 12.2 10.5 10.5 11 5.61 12.4 9.51 11.5 10.8 12 13.1 13.1 11.3 7.55 9.88 11.6 9.09 0 7.93 7.92 10.7 7.92 9.92 11 8.6 8.13 8.47 12 9.9 0.88 8.73 10.2 7.84 7.62 12.8 8.38 11.7 9.35 12.5 10.7 12.2 12.6 7.96 1.42 9.51 9.24 9.1 11.3 11.2 5.61 4.8 10.9 10.4 11.2 10.3 10.2 9.52 9.98 12.2 9.13 1.81 12.3 8.52 10.7 10.7 9.36 8.6 10.9 8.05 7.7 8.4 8.07 2.78 6.62 10.9 11.8 6.19 11.1 7.56 9.75 9.12 10.8 11.1 13.6 13.7 13.4 11 3.93 9.26 10.2 9.61 11.3 8.87 3.85 7.64 8.67 10.5 9.69 8.21 10.5 13.8 4.75 6.61 12.4 8.27 10.7 9.04 8.23 9.84 12.9 10.8 8.47 9 3.23 10.3 6.68 9.93 10.4 11.8 9.41 10.6 12 9.95 11.6 8.35 9.29 9.6 10.4 9.48 11.3 11.3 8.84 10.9 11.1 10.1 4.61 8.24 11.1 9.2 9.59 5.07 10.8 8.99 10.8 12.1 8.67 4.8 9.83 11.9 13.3 9.14 8.28 12.4 11.5 9.07 5.96 3.23 4.28 11.5 2.78 7.95 8.03 5.17 10 8.75 10.9 3.67 7.88 2.94 9.96 8.89 10.5 10.1 7.63 10.2 8.72 1.42 5.42 14 10.6 2.78 10.4 9.33 3.23 9.48 11.8 9.6 7.85 9 13.4 8.89 8.73 11.8 10.3 12.6 14 8.56 11.7 9.09 9.27 8.89 12.6 6.75 3.07 3.35 4.83 9.41 7.38 8.58 0 8.46 9.38 4.22 6.73 12.2 10.4 6.01 1.81 10.4 9.57 2.37 11 13.6 12.4 10.4 10.5 11.7 8.42 9.34 11.9 8.06 9.29 12.2 8.83 7.4 10.1 8.08 8.78 9.38 12.5 9.17 7.41 9.9 5.33 9.88 12.4 9.18 4.22 3.46 12.5 10.4 0 3.57 8.86 9.99 7.52 7.95 8.76 3.67 10.4 7.33 7.22 7.08 9.76 6.63 6.6 8.34 9.68 0 5.48 1.81 10.7 11.2 6.5 11.9 8.89 10.2 6.12 11.8 9.96 4.28 5.56 4.71 3.57 8.39 6.97 11.1 8.56 11.1 6.27 4.45 5.18 7.62 7.74 0 6.87 9.41 10.8 3.76 0 11.9 5.04 8.83 11.4 6.76 2.37 9.94 10.2 10.8 10.3 6.84 9.22 10.6 7.12 10.4 8.52 10.6 10.1 10.9 9.93 0 4.28 1.42 12.6 10.9 11.1 0 11.3 10.1 12.6 9.83 10.7 6.24 10.5 11.8 10.1 9.02 2.78 13.1 3.35 11.6 5.24 9.45 11.4 8.87 6.55 9.84 11.9 12.4 12.5 8.81 9.54 12.2 9.67 12.1 10.4 9.76 10.5 11.1 12 10.4 12.6 11.7 12.2 10.1 13 8.11 6.9 6.85 12 11.7 13.3 12.3 11.6 3.96 10.3 8.52 10.7 11.5 7.03 9.17 10.9 7.86 12.5 10.3 11.6 11.9 7.38 6.46 12.9 4.96 10.2 6.01 9.51 9.78 5.04 11.4 6.58 7.72 2.41 4.15 7.87 10.3 4.96 12.6 8.68 9.07 9.78 9.22 8.72 8.97 9.44 10.5 8.36 1.3 4.44 4.45 3.38 11.9 9.8 7.13 11.8 5.18 6.21 11.4 13.9 8.58 7.97 9.1 5.22 7.56 12.3 10.3 12.3 11.9 10.2 10.5 10.2 10.4 10.7 9.98 7.99 4.08 8.11 12.1 7.7 7.15 8.67 5.92 10.6 9.93 8.83 11.2 4.88 5.18 10 11.2 13.6 7.96 8.82 12 11.2 4.51 5.9 8.29 5.14 6.78 9.44 8.94 7.95 13.2 7.74 10.2 10.6 9.81 5.27 9.44 8.91 10.1 10.5 9.05 11.2 7.46 6.71 11.1 9.15 7.26 10.3 2.59 9.13 10.5 9.79 8.49 11 4.4 8.45 8.72 8.2 0.88 11.4 9.09 6.96 12.3 9.5 12.1 6.65 10.4 8.96 7.35 0 6.91 9.47 9.76 6.39 7.63 3.85 9.07 8.7 7.91 7.65 9.01 10.6 10.2 5.93 10.2 10.3 8.77 12.7 12.4 12.1 5.86 6.4 13.2 8.92 3.85 11.9 7.7 9.78 8.31 1.42 11.9 7.87 9.63 10.1 6.72 8.44 8.91 11.1 5.07 8.67 10.1 7.08 8.5 10 10.1 13 8.19 8.09 9.53 9.09 5.94 9.62 9.71 6.81 10.5 9.34 8.85 9.81 10.6 3.67 10 4.34 11.4 5.81 12.4 9.59 6.36 11.4 8.16 9.08 12.5 7.27 8.89 9.72 9.68 9.33 6.65 10.8 8.56 5.61 5.77 10.3 8.93 7.25 7.2 6.25 6.51 8.23 5.88 9.56 8.4 10.5 2.12 0 9.89 10.4 6.76 9.1 8.81 7.79 8.83 12 5.24 11.2 6.93 8.59 5.04 7.69 8.3 11.2 9.99 9.48 8.86 1.42 5.55 6.79 12.7 8.32 6.89 8.57 6.88 10 7.06 10.5 6.76 6.14 3.23 8.2 2.12 9.88 9.91 9.1 6.1 9 9 8.69 8.71 12.9 9.85 9.26 9.34 8.84 6.94 10.2 9.75 8.64 4.84 9.48 8.29 11.4 10.7 6.54 8.62 12.5 5.63 11.9 8.89 3.67 10.5 6.86 0 10.1 9.6 1.81 8.85 10.4 10.8 9.84 3.93 8.3 12 12.1 11.3 8.54 8.49 6.88 7.53 10.3 9.34 2.94 13.6 11.5 12.3 9.44 13.4 8.2 11.4 12.3 9.36 9.5 9.25 7.08 10.6 9.74 8.68 10.1 9.63 10.2 5.65 8.45 1.42 9.25 7.6 4.22 7.1 7.19 3.76 7.26 7.94 4.4 4.56 3.85 6.51 7.79 10 7.71 10.1 9.17 9.67 5.14 7.82 9.33 3.23 5.38 11.6 4.71 6.59 6.03 7.37 8.28 5.05 6.95 7.42 6.68 4.51 0.88 0.88 5.14 3.35 6.96 7.69 9.13 8.73 4.8 0 8.22 7.83 4.01 10.1 7.11 8.52 10 9.5 4.51 10.7 5.33 5.98 10.1 2.66 7.73 8.91 9.15 7.69 4.22 7.66 5.98 6.92 7.83 10.5 5.48 9.81 8.96 3.09 5.27 8.44 7.36 6.64 6.47 11.3 11 10.6 9.64 7 4.96 6.84 5.77 8.83 3.35 3.57 10 7.36 9.13 10.8 10.2 8.42 9.27 3.09 9.53 9.34 9.01 7.02 0 10.1 10.7 9.94 3.25 1.42 6.35 7.45 11.6 9.2 9.36 8.83 6.5 5.96 8.64 7.96 7.69 12.1 3.85 1.42 1.81 9.49 7.12 6.84 5.18 7.17 9.83 7.29 11.4 8.15 7.79 8.4 8.01 12.1 3.57 3.57 5.45 4.51 9.96 8.55 9.6 9.28 10.3 4.66 2.59 5.58 7.09 7.78 1.42 9.71 10.3 6.75 6.32 8.29 1.42 2.37 9.92 4.08 10 8.24 4.4 10.5 7.49 11.1 8.8 11.8 8.66 11.4 9.9 4.92 5.65 1.81 8.59 9.5 9.39 7.33 8.71 9.34 0 11.5 4.71 7.44 2.37 7.54 0 10.4 4.75 5.86 7.78 3.46 5.01 10.3 4.01 0.88 9.37 9.77 8.36 9.16 8.91 0 4.45 10.2 7.74 9.78 7.93 1.42 8.52 4.34 7.73 4.01 9.24 5.14 10.1 7.31 9.44 8.31 9.16 0 8.84 3.57 2.12 3.57 9.34 9.14 7.38 11.4 9.89 2.59 4.92 13.5 10.3 11.1 0 3.93 3.85 8.92 9.79 6.5 9.26 11.4 4.51 8.02 9.45 6.46 8.17 10.6 7.74 8.22 0.88 6.46 3.76 9.12 5.58 9.14 8.94 6.9 4.94 9.15 10.4 6.8 3.09 5.68 9.32 6.33 8.51 7.24 7.42 3.35 8.08 7.84 11.3 7.49 7.4 11.4 12.4 7.08 0 3.09 7.44 7.34 3.76 9.55 10.2 7.71 7.34 10.8 4.92 7.34 9.35 10.4 10.7 9.51 9.46 7.87 5.75 1.81 6.87 7.86 3.09 1.81 5.5 7.32 8.33 10.7 3.23 4.71 11.5 1.81 0.88 9.56 11.5 9.63 8.39 9.63 7.14 5.98 14.1 6.32 9.15 9.41 5.5 4.61 11.6 11.6 7.54 8.28 10.4 0 0 1.42 7.16 6.39 7.37 4.75 6.1 6.42 9.6 7.08 3.57 5.7 9.75 8.84 2.78 10.3 10.7 9.43 2.78 8.53 8.65 6.62 11.1 7.57 8.69 9.16 2.37 10.8 6.35 10 0.88 8.05 6.4 8.41 8.17 3.76 7.28 6.97 4.33 7.67 5.98 9.61 5.5 5 7 4.61 4.15 8.86 9.76 2.12 7.83 7.94 9.33 0.88 8.34 6.7 6.65 4.45 6.63 8.29 6.36 2.78 2.12 9.94 10.6 4.4 5.42 9.35 9.19 8.6 9.84 10.4 3.57 10.7 8.95 7.16 10.8 10 4.28 4.71 9.31 9.5 7.89 5.98 1.81 7.51 11.6 9.52 4.96 3.85 3.76 7.35 4.75 7.58 8.94 7.28 10.2 8.99 4.34 7.3 3.76 10.7 9.66 0.88 8.79 7.43 3.81 4.08 12.3 8.83 7.91 2.21 8.24 6.89 8 9 1.42 7.31 4.66 7.45 10.9 4.56 8.41 9.49 1.42 5.11 7.56 6.03 3.35 6.51 7.46 4.92 6.93 7.97 11.1 2.12 2.12 8.97 4.66 3.35 3.35 5.83 7.47 7.94 9.63 9.87 8.81 1.81 8.81 9.6 7.83 11 6.82 6.07 7.76 7.24 8.76 9.15 5.42 7.96 9.01 12.8 9.02 7.44 11.7 5.75 5.18 5.3 8.07 8.39 10.6 8.64 9.05 9.28 5.7 2.59 5.81 0.88 0 6.93 9.26 2.78 4.71 0 3.09 8.41 6.75 6.69 9.78 2.94 3.35 9.93 10.9 6.43 7.85 6.65 3 3.09 9.93 0 5.42 3.85 9.96 17 7.21 9.16 5.98 16.6 10.8 9.36 0 4.51 7.96 3.35 11.7 12.3 6.87 8.45 15.7 3.23 7.45 13.5 8.37 8.75 5.68 9.99 10.4 8.37 8.46 0.88 8.86 9.05 6.62 7.03 13.2 4.71 7.47 5.11 2.37 2.12 4.66 4.96 2.59 9.1 7.19 4.61 4.71 4.88 4.8 11.2 8.71 12.5 7.73 7.43 12.1 5.58 6.97 13.4 7.74 13.7 9.53 6.53 13.4 9.1 11.7 9.84 8.4 5.94 2.78 8.24 8.45 9.08 7.11 9.53 9.15 9.1 8.56 9.21 5.53 2.12 7.7 5.68 6.6 10.6 2.37 5.83 6.63 11.5 11.5 5.98 5.33 10.1 6.82 11.9 6.6 6.51 2.59 6.14 5.86 9.77 7.33 0 9.11 6.3 4.34 9.53 10.6 7.25 9.29 10.7 6.45 5.14 5.33 5.5 11.2 7.43 8.59 10.3 8.47 2.12 7.29 2.37 3.76 9.06 4.96 10.7 9.65 0 8.34 13 8.24 2.59 9.47 11.9 4.56 7.37 10.3 6.5 9.86 9.32 7.56 2.12 10.2 6.79 0 9.01 3.76 0 8.92 7.74 8.46 6.07 6.84 8.06 0.88 4.99 6.63 9.15 7.91 6.73 5.97 6.24 3.13 5.7 8 6.53 12.1 6.3 7.2 6.57 8.31 12 1.42 7.9 2.37 6.24 7.4 2.78 4.51 6.22 0 9.54 6.49 7.98 10.6 6.77 11.5 9.43 3.09 0.88 7.28 6.75 11.6 3.23 6.19 7.6 8.96 8.44 9.5 4.4 6.82 8.8 7.15 9.7 6.16 8.77 11.4 9.09 3.23 6.62 8.21 7.89 7.55 11.3 5.88 11.6 8.24 8.41 12.2 10.8 7.72 9.64 3.1 6.96 8.67 8.1 0.88 6.53 5.92 10.4 3.85 9.53 5.38 2.12 0.88 4.61 7.26 8.54 0 10.8 9.72 8.57 10.1 6.5 4.28 9.23 6.89 10.5 10 7.55 7.83 8.02 7.08 9.26 7.91 8.36 7.72 10.7 9.9 7.99 9.97 8.66 8.23 5.36 3.35 3.85 8.74 7.51 1.42 10.9 5.45 4.28 8.8 4.66 9.71 7.72 6.16 7.5 10.9 8.02 0 8.59 7.8 6.68 4.75 6.01 10 8.03 6.9 6.47 11.8 7.15 0.88 10 10.8 8.22 3.46 10.1 8.4 3.23 7.8 2.37 9.81 6.53 10.9 9.88 5.83 8.2 1.42 9.93 6.57 8.26 11.4 12 6.63 11.2 0.88 9.18 8.99 8.12 6.25 10.7 9.93 4.66 5.18 7.7 9.23 6.82 6.64 8.67 9.16 7.98 6.82 5.36 8.26 2.37 0.88 8.92 4.94 3.46 3.46 9.77 4.34 7.15 6.92 7.25 9.27 5.42 3.46 10.8 7.57 10.1 5.21 0.88 9.96 8.91 5.18 9.57 10.1 5.06 8.89 6.75 3.46 7.37 7.91 8.58 2.37 10.2 0.88 11.3 3.35 7.29 6.05 6.79 0 12.7 9.44 5.11 2.37 5.7 1.81 2.78 4.08 6.88 6.33 8.95 2.12 9.11 9.62 6.57 12.5 8.47 9.88 12.1 6.54 4.28 10.4 13.2 7.99 7.74 7.52 9.07 1.42 4.71 8.42 5.96 2.94 5.99 8.06 4.34 8.29 9.97 6.55 6.19 0 0.88 10.7 5 6.33 9.68 6.74 5.39 9.45 2.94 9.12 6.66 8.8 1.42 6.53 9.61 8.27 7.89 9.1 5.88 8.04 1.81 9.24 5.04 10.1 4.45 9.3 5.31 6.82 5.68 11.1 4.71 8.43 6.3 12.1 8.6 6.53 11.8 0 4.84 6.14 11.3 2.94 6.45 10.7 6.9 10.4 7.98 4.9 10.6 6.27 8.28 7.95 9.07 8.7 10.9 7.98 2.59 5.22 5.57 2.12 6.75 8.34 2.37 9.77 2.37 1.81 12.1 9.41 6.1 9.03 0.88 4.01 8.41 12.1 9.8 2.78 10.6 2.12 2.59 0 7.47 4.75 10.6 8.04 7.87 8.26 2.12 10.9 7.51 5.72 5.18 4.8 3.67 10.4 6.88 8.74 8.97 4.55 8.26 3.57 0 3.67 4.66 4.8 0 8.81 0.88 2.37 4.84 0 7.87 2.78 8.75 3.46 10.6 9.38 8.6 9.36 7.57 7.91 7.64 5.7 9.49 4.51 6.98 6.21 8.51 9.96 8.29 9.35 0.88 1.81 4.88 2.59 3.35 6.62 4.28 5.7 11.5 7.83 5.18 8.8 8.29 10.5 2.12 7.07 7.72 7.56 8.63 9.72 7.8 8.77 3.09 5.24 10.2 8.14 5.45 7.23 6.87 6.46 3.23 10.7 7.99 8.99 7.31 6.82 8.95 6.39 5.9 7.42 7.73 9.75 6.3 4.56 6.64 9.79 7.01 9.33 6.01 9.2 10.7 9.61 9.13 8.89 6.43 8.67 7.47 8.3 6.43 7.93 5.33 9.09 2.37 6.58 7.61 9.22 2.94 9.42 10.1 6.95 6.56 6.79 3.76 0 10.7 5.61 0.88 7.64 9.38 11.7 5.88 0 10.2 4.07 5.33 7.4 3.35 11.8 9.23 0 10 10 5.98 3.57 9.18 0 5.9 3.23 6.5 7.55 7.65 1.42 2.94 7.82 7.49 4.56 5.27 12.5 11.1 3.46 9.02 4.08 3.57 13 10.8 11.3 1.42 4.15 12 7.85 5.18 9.25 0 0 2.12 1.42 4.83 1.42 8.31 3.67 1.81 8.13 10.9 5.01 8.05 11.8 2.72 5.07 4.84 8.11 7.38 1.81 6.71 3.57 9.49 9.04 10.2 0 6.55 4.66 9.11 8.92 5.92 2.37 9.11 6.92 2.59 6.83 8.63 5.45 12.9 9.19 12.8 6.95 6.58 4.84 3.57 10.1 8.76 4.71 2.12 4.96 3.23 9.98 8.92 9.41 9.1 7.62 4.71 8.93 5.45 0 1.81 8.63 4.56 8.65 3.35 5 10.7 1.81 7.45 4.22 9.68 7.65 4.56 8.31 0 6.46 5.3 8.33 8.95 8.74 4.66 4.84 0.88 6.53 6.65 11.4 6.46 7.34 9.84 8.92 10.4 7.75 9.06 9.28 10.7 7.74 2.12 1.81 4.92 8.14 2.37 9.47 8.93 5.94 7.06 11 4.08 10.2 9.37 9.35 7.23 5.36 4.01 6.88 7.73 10.2 9.23 9.28 5 8.55 6.46 7.86 2.59 9.47 6.05 4.08 9.27 7.47 4.61 5.3 7.55 7.6 2.59 6.46 9.82 9.46 7.19 8.25 11.8 6.84 7.88 10.3 8.56 7.68 10.3 10.8 7.46 3.76 8.64 6.69 0 1.42 2.78 10.7 8.02 5.58 5.65 4.56 1.81 9.61 4.28 9.45 8.59 7.61 3.35 5.86 9.05 3.67 5.77 0 3.46 8.12 8.24 5.21 5.5 7.72 2.78 4.88 8.73 6.4 0.88 10.7 8.8 2.03 2.12 8.61 2.37 6.84 6.8 6.89 9.16 8.86 0 5.36 5.39 9.77 6.76 7.08 10.3 1.42 2.37 10.6 3.46 2.59 9.22 8.25 3.46 9.92 3.23 9.88 7.86 7.49 9.5 8.82 4.66 0.88 10.3 6.36 8.69 10.8 9.08 1.42 5.53 9.76 4.71 4.22 1.71 8.56 9.59 1.81 11.1 0.88 1.81 3.23 5.48 3.46 5.39 2.94 4.8 0 8.33 4.34 6.36 2.78 9.61 5.63 8.59 3.93 5.33 7.13 2.59 6.4 8.85 6.24 10.2 3.57 6.9 8.79 0 8.4 6.45 0 2.94 3.76 0 4.15 6.35 3.88 4.71 10.4 8.61 8.55 6.14 8.62 7.04 0 7.41 6.05 5.11 10.5 0.88 1.81 12.9 12 4.84 9.52 3.57 5.75 0 0 10.9 6.33 3.23 2.59 8.01 9.65 0 8.51 12.9 7.97 9.1 6.01 9.1 3.57 3.09 4.45 7.88 8.7 10.6 10.4 5.39 8.66 4.4 7.56 10.2 2.37 4.45 9.25 10.4 5.63 8.29 5.3 2.12 11.7 1.42 6.25 11.1 4.34 4.71 10.1 1.42 5.36 7.94 3.67 6.12 11.2 10.1 4.01 11 7.67 6.81 7.2 6.36 10 7.8 4.51 7.92 4.28 4.08 1.42 5.79 6.54 7.92 12.2 6.88 9.64 7.16 7.67 10.4 9.32 6.17 8.08 9.99 9.44 5.45 1.42 13.7 7.55 8.96 8.13 6.84 5.94 8.1 8.76 6.27 4.84 8.81 9.11 6.62 5.36 4.84 9.8 9.72 9.88 6.84 7.04 8.52 0 11.8 4.66 10 8.33 9.78 1.42 7.61 7.59 0.88 5.9 9.04 8.55 9.41 13 11.3 6.27 8.25 2.12 12.8 5.9 8.94 3.76 2.37 6.6 3.67 2.78 3.57 5.43 2.78 5.18 0 9.3 5.45 8.7 12.8 13.2 8.4 3.68 5.75 5.53 10.1 8.07 12.6 8.68 13.6 13.9 2.12 6.5 10.4 3.09 5.45 9.57 4.92 10.9 4.75 8.28 11.3 13.5 5.56 10 10.7 7.31 2.78 8.37 6.45 12.1 9.05 5.61 10.1 6.01 7.41 7.47 1.81 6.17 9.28 7.15 9.04 2.94 10.8 0.88 9.03 2.37 2.78 7.76 2.12 10.2 9.5 6.94 8.04 9.3 4.15 9.81 2.12 8.83 8.78 0.88 6.32 6.64 5.63 2.59 5.07 7.81 7.55 7.66 9.87 5.88 0.88 4.08 9.19 9.9 3.57 7.46 5.7 7.08 5.94 2.78 6.09 2.37 5.99 4.84 0 6.62 8.94 4.4 10.9 5.63 1.42 9.13 7.15 3.93 7.58 5.58 2.59 10 10.1 9.32 9.82 8.19 11.8 1.42 9.07 6.65 2.78 6.01 1.42 10.2 11.9 4.34 10.6 1.81 10.2 7.61 10.5 10.2 12.7 8.36 8.33 8.47 9.19 11.4 10.6 12.3 10.9 5.81 0 4.75 12.7 9.48 11.8 9.53 7.06 11.5 8.91 11.8 2.78 2.12 5.14 3.93 7.44 12.2 5.98 7.46 10.9 9.37 9.5 9.24 1.42 3.35 7.9 4.08 5.61 7.52 2.78 1.81 9.55 13.3 12.1 6.57 10.5 11.2 11.6 12.5 7.79 12.8 16.3 9.73 8.46 8.18 7.53 8.05 8.73 7.2 3.46 9.79 10.4 6.27 5.75 11.8 12.5 0.88 10.3 5.21 4.34 9.81 9.75 10.3 3.57 13.5 7.96 9.26 11.9 4.71 9.26 11.5 8.24 6.43 9.02 6.59 6.96 9.72 5.99 8.6 5.81 10.5 6.72 12.7 8.72 9.91 5.48 7.26 8.06 10.6 10.7 10.9 11.3 11.3 9.78 10.2 7.98 8.48 10.5 11.4 9.05 9.41 9.86 6.17 5.83 11.1 0.88 8.88 11.7 10.5 8.2 11.4 5.39 8.96 7.28 8.32 8.88 5.39 8.76 12.3 6.98 13.6 9.29 16 2.59 10.3 10.2 9.34 7.48 7.75 10.4 12.5 12.5 13.2 15.4 8.99 6.5 6.58 8.01 6.32 8.5 8.47 8.89 5.18 9.91 11.1 8.2 10 7.01 7.42 9.11 6.93 7.7 5.21 8.55 4.84 2.78 2.59 7.19 3.67 9.1 1.42 5.83 8.85 4.28 6.75 12.3 9.86 6.81 9.05 9.24 8.59 11.3 7.83 9.27 10.4 9.95 0.88 10.6 7.23 4.92 4.09 12.8 4.66 6.17 9.18 4.62 2.78 4.75 4.74 10.1 2.37 4.15 9.25 7.66 8.17 14.9 6.89 8.05 9.35 4.88 5.98 9.51 12.2 9.22 12.6 9.32 10.7 12.7 14 14.4 13.1 14.1 2.12 8.11 0.88 8.65 6.55 5.5 11.5 6.1 3.46 2.12 8 1.81 8.42 7.89 13.4 4.61 5.5 8.27 7.37 9.01 2.37 9.4 6.16 7.04 8.12 9.57 9.72 0 9.1 13 8.14 8.29 0 3.85 10.2 9.61 4.34 5.39 11.4 0.88 1.81 3.09 3.57 10.6 9.49 7.53 10.2 6.96 0 7.49 4.01 8.17 2.37 8.27 3.23 1.42 0 8.79 7.73 6.83 6.94 10.3 12.4 8.52 6.01 11.6 7.58 2.52 7.63 8.92 2.37 8.45 5.36 9.28 8.27 4.66 9.47 8.08 4.92 11.2 10 6.84 8.62 9.07 9.58 6.35 8.13 5.92 10.9 6.47 6.46 9.26 9.5 8.13 7.76 10.1 7.97 4.75 9.8 2.37 8.17 4.15 9.92 3.85 3.46 6.68 6.72 10.7 2.59 0 9.72 9.11 5.14 0 11.7 8.37 6.4 4.22 9.53 2.59 8.95 8.59 8.42 7.35 9.82 7.37 5.42 5.61 7.84 6.93 4.66 10.3 6.01 0 16.2 3.46 6.69 4.08 1.42 1.42 13.1 9.05 6.71 8.72 12.4 4.78 7.89 12.1 7.56 8.24 16 9.12 2.37 2.12 6.84 8.14 8.41 6.17 7.69 8.88 7.25 8.59 11.9 6.47 9.5 7.26 10.6 7.26 7.96 11 10.6 11.8 8.04 9.22 11.1 12.9 11.7 6.83 2.78 7.04 7.78 9.67 3.57 10.6 8.19 4.45 13.2 13 9.54 9.22 4.45 7.14 9.81 9 8.5 9.67 9.75 4.84 7.76 9.1 11.1 10.1 10.7 10.4 3.09 7.46 11.6 3.57 2.78 11.7 9.14 10.3 2.37 11.3 4.4 9.03 11 8.39 9.78 8.03 11 7.67 12 11.1 5.11 13 10.1 2.12 8.24 8.72 4.61 9.16 6.92 11.7 10.4 9.68 10.3 7.32 9.91 9.5 11.8 3.57 8.23 12.9 10.9 0.88 9.1 7.6 6.19 5.56 6.03 8.18 0.88 12.9 10 10.7 5.21 9.56 10.7 5.3 5.33 7.37 8.06 9.01 9.82 3.85 9.01 9 10.6 6.43 9 3.23 2.94 5.73 5.68 7.31 7.34 9.83 7.57 4.22 0 10.8 7.8 10.3 9.76 7.99 10.9 8.8 1.42 8.68 11.2 9.31 8.84 7.43 11.5 7.45 8.43 9.86 8.95 12.8 8.09 6.36 11.2 8.08 5.39 6.43 13.5 8.87 11.4 3.23 3.35 8.37 5.14 4.75 8.28 1.81 11.8 12.8 6.27 7.28 8.83 5.53 9.8 6.81 5.11 6.83 6.36 6.3 7.65 10.5 5.79 9.47 9.51 1.42 8.49 10.3 8.15 8.45 11.1 7 7.97 2.12 8.69 8.49 5.79 10.6 5.07 9.35 8.84 3.76 2.94 9.47 1.42 7.36 6.64 8.53 3.46 2.12 2.12 0 3.93 1.81 4.28 0 8.03 6.3 4.15 2.94 6.16 6.03 4.51 9.53 4.43 7.08 5.36 13.5 6.72 5.94 5.75 9.05 8.38 11 4.15 8.7 6.94 9.09 4.34 11.1 8.06 5.04 10.3 9.21 7.88 9.78 7.3 8.37 4.22 9.9 5.7 8.53 7.15 5.04 8.64 9.76 6.45 4.15 3.85 2.78 0.88 9.8 6.42 3.36 5.99 5.68 9.41 2.37 7.3 10.5 1.81 9.27 7.41 8.74 6.68 7.62 5.42 7.89 10.3 8.61 6.4 8.05 10.2 8.65 8.09 6.05 9.85 3.46 10.5 5.65 8.37 7.61 11.1 7.61 10.1 9.56 10.4 3.67 0 10.1 7.35 7.58 5.58 7.65 8.93 11.1 9.03 10.2 6.38 5.11 7.67 10 4.83 6.66 11.6 7.89 2.94 4.61 6.36 5.48 0 5.18 9.23 1.81 6.3 4.51 5.48 4.08 7.23 6.47 7.2 7.96 11.1 7.71 8.24 5.39 9.84 8.82 10.7 10.1 10.7 6.78 9.07 10.7 11.1 2.59 1.42 5.04 1.81 8.61 2.78 9.29 3.57 14.9 12.8 10.4 1.81 10.4 11.3 6.12 11.3 4.96 8.49 9.9 9.85 11.3 10.5 8.34 5.27 11.2 11.8 8.38 0 11.4 3.23 4.88 9.33 11.2 9.01 11.1 1.42 12.3 8.73 11.2 11.2 5.18 11.7 12.2 11.3 6.68 7.84 9.88 8.24 8.68 7.53 11.4 10.7 8.93 6.61 3.23 8.97 8.96 9.95 9.24 5.24 9.92 8.36 9.19 7.36 10.5 9.24 11.1 9.24 8.2 9.38 10.1 10.2 1.81 10.3 7.89 11 11.1 6.24 12.1 9.01 7.42 7.11 12.4 10.7 10.7 8.34 15.1 10.2 6.56 6.22 11.6 7.7 4.92 10.3 7.54 9.91 10 9.38 3.76 11.1 10.1 1.42 7.96 8.5 6.87 0 7.49 4.22 8.78 8.31 10.1 10.2 10.1 11.4 10.6 9.7 8.84 12 4.75 3.46 11.7 0 9.96 12.7 8.51 8.2 7.99 5.42 9.76 6.96 11.1 13.8 10.9 10.5 7.66 9.02 9.58 8.92 11.2 10.6 6.17 8.47 13.2 9.67 10.7 4.84 8.39 8.67 6.27 5.63 1.42 12.2 10.2 3.67 10.4 8.92 2.12 10.8 8.17 8.39 7.17 11.2 12.7 1.81 2.37 0 9.9 11 9.35 10.2 8.47 8.07 5.11 8.39 12.1 9.87 9.31 8.84 7.83 6.82 6.38 4.4 10.2 10.5 11 10.7 9.85 10.5 12.9 8.32 14.2 10.1 9.05 7.21 9.73 2.78 12.6 10.2 10.5 8.58 10.4 9.86 7.84 9.85 10.1 7.7 9.75 11.9 9.32 11.5 6.63 9.55 9.87 9.28 11.8 13 8.93 7.47 9.07 9.37 9.37 9.43 4.4 10.5 11.5 11.1 10.9 10.5 11.4 8.72 10.8 10.7 10.5 3.67 9.65 10.1 11.9 9.37 8.69 8.05 10.1 10.1 11.3 11.1 4.22 9.17 11.8 10 9.7 10.8 8.24 9.52 9.26 11.2 13 7.65 7.9 8.47 11.3 9.57 6.05 9.51 5.5 9.62 11.8 4.6 10.4 10.3 8.07 7.1 8.27 10.2 11.2 9.92 6.56 2.59 10.7 10.3 11.4 6.27 11 7.07 9.68 11.1 8.47 10.5 8.95 7.53 9.61 10 10.8 12.3 10.2 10.9 8.71 7.61 9.72 2.94 9.91 9 0 6.81 8.76 10.7 9.94 9.79 12.7 6.57 15.9 11.9 9.84 9.83 10.4 11.7 11.9 10.1 11.3 10.9 8.44 14 10.9 8.35 8.63 10.2 9.78 9.57 9.68 9.72 9.82 8.77 12.2 8.87 9.62 10.9 10.7 11.2 9.49 8.81 10.6 11.7 11.1 9.94 13.1 8.53 12.9 10.6 10.4 12.5 11 9.94 6.91 9.97 12.9 5.94 11 7.93 3.93 8.57 8.83 10.7 10.5 11.2 11.7 12.9 9.81 7.63 11.1 9.43 2.12 8.9 9.1 11.4 12.3 11.4 6.5 9.55 4.75 8.49 8.69 7.11 7.94 9.99 7.61 6.5 6.45 8.9 8.14 9.44 9.3 10.5 10.7 11.2 7.53 8.92 8.23 10.3 9.91 5.36 8.03 8.86 9.17 8.72 10.4 9.99 8.14 4.75 9.15 9.41 7.15 11.3 11.8 11.2 9.4 10.8 3.35 9.84 10.4 10.3 9.35 10.3 10.2 11.4 11.3 0.88 1.42 10.6 5.7 6.01 8.73 9.77 8.41 3.93 9.76 10.1 10.1 11.2 9.11 7.49 10.5 9.94 8.33 8.73 9.9 5.48 10.2 9.64 10.4 10.6 11.3 10.2 9.76 9.99 5.61 8.51 6.12 10.2 10.6 10.1 9.45 7.6 8.51 11 12.9 9.78 9.94 8.51 11.2 9.15 9.43 7.99 7.44 11.6 10.4 7.7 9.85 11.2 8.98 9.84 8.99 5.72 14.3 12.7 10.3 13.1 11.7 10.1 8.91 9.86 9.99 4.56 10.6 9.45 8.1 10.8 9.61 6.47 13.5 8.78 11.7 10.3 9.47 8.52 9.86 7.72 10.6 10.3 11.8 10.1 10.2 10.2 11.3 11.1 8.33 10.8 10.9 9.66 12.3 11.9 9.6 10.2 11.1 9.3 10.9 10.2 12.6 9.2 9.91 10.6 10.8 8.79 4.01 8.22 11.3 6.76 9.06 4.61 2.12 5.42 7.09 1.42 9.95 12.3 8.99 10.4 7.29 7.4 11.8 11.3 0 9.27 6.77 10.6 12.7 9.45 8.21 11.3 13.5 13.4 8.45 8.01 7.82 5.72 3.76 5.07 5.75 11.8 8 8.23 9.14 11.7 11.2 11.9 9.04 8.67 11.4 11.7 11 10.4 4.22 12.2 11.4 8.53 9.86 5.18 7.89 9.08 1.81 5.94 12.9 7.93 9.19 10.1 5.81 10.5 8.42 8.1 6.5 10.4 10.4 11.3 10.5 11.4 9.58 10.2 11.4 10.8 10.3 0.88 2.78 13.5 10.2 10.5 14.2 9.96 10.2 10.3 6.4 9.64 8.34 9.33 0.88 7.95 11.2 7.97 5.18 6.39 5.43 8.67 10.5 5.21 10.1 0.88 2.12 6.51 10.8 8.02 6.85 7.44 5.63 7.99 7.34 8.76 8.69 11 10.1 9.85 11.5 2.12 3.23 9.09 5.88 7.74 10.2 1.42 6.83 9.58 3.76 11.3 9.8 9.1 4.28 11 8.18 9.26 10 11.8 7.99 7.75 9.88 10.3 10.4 10.4 5.84 9.47 10.4 6.62 5.21 11.7 4.56 11.4 13.8 9.64 12.1 11.9 3.09 9.7 8.73 10.1 8 4.96 0.88 6.9 6.97 11.7 7.47 11.1 9.1 6.8 9.47 10.2 11.1 4.88 11.4 10.1 12.5 9.46 10.6 9.61 3.23 11.5 8.88 10.5 8.57 9.45 10.9 8.89 10.1 8.35 6.12 10.4 7.37 7.91 10.2 12.6 10.5 10.5 11.5 5.27 8.56 9.88 10.9 9.35 7.22 7.22 7.62 3.23 5.56 8.94 4.4 12.3 9.94 9.02 8.18 9.75 12.3 10.7 3.09 6.19 9.15 6.57 4.34 10.9 7.5 9.81 10.4 5.7 7.37 9.86 8.29 6.99 7.28 12.1 11.4 3.67 3.85 5.45 3.95 9.12 3.09 8.27 4.28 8.52 3.35 3.35 3.85 6.91 10.4 7.15 6.46 7 6.26 4.92 0.88 3.57 12.6 10.1 7.35 13 7.85 8.55 13.5 7.51 10.7 9.48 14.8 10.6 9.88 14.1 7.7 6.1 4.84 8.34 1.42 1.81 11.2 3.93 1.42 9.22 6.7 6.71 9.57 0 3.23 6.42 9.48 10.7 4.66 4.45 2.37 8.53 6.6 9.68 6.81 8.19 7.16 6.39 9.2 6.57 8.04 9.91 8.82 2.59 10.8 5.96 7.47 9.45 8.11 7.98 6.62 11.2 10.9 8.36 7.32 7.4 5.9 4.92 10.4 5.33 11.7 9.19 3.23 0 8.13 1.81 5.04 8.75 7.91 5.86 5.22 6.93 2.12 7.72 7.15 6.07 5.75 10.6 9.87 6.72 3.57 13.6 3.46 0.88 10.7 2.12 8.92 8.34 9.09 10.3 7.53 4.64 5.48 6.21 2.12 3.09 10.2 6.16 5.75 5.42 0.88 8.54 1.81 9.55 6.33 5.27 7.91 2.59 6.63 1.81 6.5 5.81 11.6 7.26 7.09 6.84 3.76 7.16 7.56 8.65 9.37 8.41 2.12 5.18 5.83 4.08 9.45 5.61 10.9 3.46 4.08 6.79 8.75 8.44 2.94 5.14 6.5 8.14 5.04 5.81 7.93 5 6.83 8.89 1.81 5.21 3.93 7.9 0.88 8.58 6.24 0.88 7.18 1.81 3.23 5.75 4.84 2.12 7.46 4.75 7.19 4.56 3.67 5.83 1.42 9.45 5.98 3.57 1.42 2.59 8.39 9.42 5.79 7.84 5.75 9.2 10.9 8.93 8.26 1.81 8.64 9.25 9.36 6.62 9.39 5.18 3.23 8.66 5.63 8.77 9.11 11 1.42 9.64 9.24 10.4 7.57 10.9 9.16 8.39 6.96 5.36 5.72 11.5 9.3 9.22 5.81 8.87 1.81 10.8 10.9 8.6 6.93 9.01 9.54 10.8 9.05 9.11 3.29 11.4 9.64 5 9.86 10.5 5.96 8.43 12.1 7.71 6.68 9.69 3.76 10.9 9.63 11 7.36 10.1 10.4 10.6 7.02 10 7.86 8.72 6.53 8.86 10.4 9.79 6.32 10.1 0 7.53 5.79 5.9 10.3 11 10.4 12.9 9.44 8.62 1.42 10.2 10.8 7.83 8.01 11.1 8.75 8.31 9.81 7.37 7.75 9.61 6.12 8.44 10.1 8.81 2.59 9.42 9.45 8.4 10.9 9.96 10.2 8.82 7.3 11.4 8.87 8.11 10.9 9.28 8.76 9.41 10.4 7.9 0.88 9.36 10.4 10.9 0 6.97 9.05 7.93 5.5 4.28 6.29 11.1 10.7 6.32 6.54 10.8 0 10.1 3.93 3.76 4.51 9.18 11 6.56 12.8 7.82 8.61 9.78 9.84 10.6 10.8 10 11.7 7.63 6.21 7.55 10.8 10.4 8.02 7.81 10.4 5.03 11.6 10.4 10.8 5.04 10.3 11.1 8.89 17.6 9.12 9.23 8.29 7.36 6.58 10.6 10.2 8.04 10.1 6.01 10.3 2.78 9.45 7.67 9.18 7 11.6 9.16 10.4 9.22 3.09 10.3 11.8 8.42 11.3 8.53 8.35 10.1 9.51 7.39 9.48 8.19 10 11.2 10.9 9.69 9.9 10.7 9.66 6.19 7.76 5.3 8.57 8.76 9.11 8.31 6.14 2.59 8.13 9.92 10.4 7.28 8.44 7.73 7.2 8.9 2.12 10.7 9.26 8.8 8.7 2.12 9.19 6.62 11.5 10.9 9.17 11 10.6 10.5 9.68 8.55 9.46 12.1 9.01 11.8 1.42 8.15 8.07 9.88 10.2 8.86 9.88 10.3 10.9 5.11 11.6 8.82 11.8 11.4 5.5 7.73 8.44 11.5 11.1 10.7 9.32 9.28 9.37 9.68 9.65 11.6 13.7 10.3 0 7.62 9.04 8.8 9.95 4.66 8.81 3.09 8.5 8.11 10.5 2.78 12.8 12.6 5.5 10.1 8.21 6.27 11.2 13.3 10.3 7.53 12.5 9.09 8.2 12 8.29 10.3 4.01 11.7 6.33 9.54 0 9.54 8.93 0.88 8.07 5.21 8.19 10.4 12.5 1.42 7.81 2.12 8.64 4.92 10.2 9.67 10.4 7.12 5.83 3.46 7.34 6.33 1.42 3.09 3.09 8.33 9.88 8.64 8.86 4.55 9.55 9.89 4.4 7.87 9.64 8.16 6.16 7.02 9.18 4.34 7.27 8.83 9.33 9.16 8.43 0.88 7.89 10.7 9.86 3.85 9.3 7.15 10.1 6.6 8.1 7.07 10.3 8.88 8.49 3.12 7.34 7 12.3 9.89 9.85 4.4 8.24 7.85 7.83 8.3 9.55 10.4 7.2 10.6 10.3 7.48 5.07 8.74 10.7 8.54 9.9 10.7 4.22 9.41 8.66 11.7 7.2 8.48 9.35 11.1 9.33 9.45 8.64 11.1 8.44 12.2 4.96 5.61 5.85 11.3 4.92 7.73 7.79 8.72 0.88 9.67 6.12 10.5 9.14 0 9.5 3.35 7.24 3.76 11.8 12.2 9 2.59 6.63 2.64 7.29 6.71 8.34 10.5 3.23 7.63 5.7 0 9.17 4.22 13.3 6.77 9.03 6.38 7.78 7.9 6.51 0 9.35 8.52 4.34 4.71 5.79 0 9.95 7.79 7.42 7.19 7.77 2.94 5.18 8.72 9.99 10.6 2.59 5.14 14.2 10.8 6.24 8.07 9.32 14.8 10.9 10.8 9.31 9.99 10.3 9.81 0 5.86 11.8 4.15 8.27 6.98 5.86 10.5 13.5 7.89 10.8 8.03 7.3 11.6 3.09 7.87 0 3.57 9.07 6.38 8.11 12.5 12.7 2.94 5.27 9.72 9.07 8.29 11.9 5 4.61 10.2 6.39 10.2 8.79 8.55 9.5 8.39 9.22 6.14 9.57 6.36 6.99 7.41 5.27 9.59 8.75 3.23 1.81 10.3 7.75 12.2 11.9 9.43 9.72 7.75 5.58 5.04 9.42 6.46 9.68 4.22 6.36 10.4 0.88 6.7 4.84 5.36 6.85 11.4 5.65 11 7.39 9.72 7.19 1.49 8.74 9.89 7.96 6.42 8.97 11 2.59 9.81 0.88 8.49 7.6 7.53 11.2 10 12.1 8.57 4.71 1.42 11.1 6.22 1.81 8.14 1.42 2.12 5.86 7.06 10.4 3.23 8.52 11.8 1.42 5 8.3 9.34 10.2 9.78 7.09 6.32 9.41 10.1 9.9 9.93 8.98 9.15 10.1 10.5 11.3 10.2 8.6 7.4 4.4 9.52 10.6 1.81 4.84 6.38 10.7 6.58 9.9 8.54 8.78 10.5 4.22 9.63 4.66 6.91 8.52 9.75 8.08 4.28 8.83 3.09 9.05 12 4.56 9.23 13 1.81 11.7 8.88 12.2 9.56 2.78 12.7 11.3 10.4 12 12.6 10.9 9.99 10.2 8.83 6.95 8.05 10.1 9.85 8.41 7.76 10.3 8.51 8.51 8.86 10.9 8.29 7 12.6 10.5 9.35 3.93 10.5 8.24 8.99 11.5 7.72 11.2 10.3 10.3 7.98 7.64 11.8 8.72 8.27 12.3 2.12 10.4 8.59 10.9 8.56 8.72 11 6.1 9.13 12.5 11.7 7.05 8.02 10.2 13.9 0.88 7.63 13 12.9 6.53 3.46 7.69 10 6.62 0.88 8.31 8.46 3.46 11.1 3.93 0.88 10.9 0.88 4.08 8.71 10.1 11.3 12.4 11.4 10 12.3 10.1 1.42 7.23 4.61 5.48 10.4 3.46 10.1 13.1 7.56 10.1 2.37 8.41 7.86 11.9 3.85 0 3.93 5 8.98 7.16 4.8 7.89 5.65 1.42 6.86 5.61 6.76 9.69 4.71 5.39 5.81 4.22 2.78 3.57 0.88 9.48 13.9 5.24 11.2 9.41 2.37 7.37 6.12 8.29 4.61 6.1 7.42 5.39 8.19 8.11 10.2 6.39 6.65 1.82 7.51 5.21 5.92 6.36 8.88 6.85 8.01 8.59 10.2 2.59 8.7 5.42 3.57 3.23 5.75 6.46 5.24 2.59 9.65 5.18 7.61 6.99 8.79 2.78 9.55 2.16 1.81 0.95 1.42 5.88 1.42 5.63 1.81 8.42 2.37 6.43 0.88 3.46 9.57 10.6 9.37 6.12 4.54 6.33 3.93 6.63 3.76 9.3 0.88 2.59 3.72 9.88 4.84 8.04 6.53 4.16 9.96 4.56 10.1 5.07 5.14 5.33 2.12 3.35 8.24 7.77 1.81 3.85 8.61 9.69 10 8.37 2.37 8.22 8.11 0 3.85 8.61 2.37 5.42 3.57 8.2 2.12 10.7 7.21 5.3 5.14 1.81 7.72 9.08 0 2.12 1.42 8.44 0 6.53 7.14 11.8 9.33 6.71 5.3 8.37 2.59 0 0 9.56 7.35 2.94 2.37 6.94 0.88 6.66 1.81 7.15 1.42 5.32 9.26 8.51 7.8 8.64 7.5 1.42 4.34 6.68 6.97 4.01 6.58 11.7 2.37 7.69 8.24 5.33 8.38 0 10.6 7.77 2.37 3.93 7.58 2.37 1.81 8.07 4.34 7.2 8.4 10.8 4.66 1.42 0 6.76 4.15 4.15 3.09 10.2 7.4 7.96 4.15 6.29 3.23 4.45 3.61 10.2 2.37 4.28 7.63 4.22 2.94 4.51 2.12 0.88 4.61 2.12 8.71 0.88 2.78 4.71 6.96 6.16 6.16 7.87 9.56 8.58 6.05 2.94 9.29 5.56 0 8.31 10.3 7.05 5.7 8.05 1.42 8.82 4.84 3.57 8.22 6.22 5.81 4.45 9 9.08 0 5.86 8.98 8.02 5.24 6.12 8.58 0 8.47 5.99 8.18 8.85 10.7 8.26 9.85 5.81 2.59 2.12 3.46 7.95 0.88 6.92 5.65 3.67 5.04 5.33 8.51 9.46 4.34 7.98 0 10.7 2.12 0 5 6.07 7.86 8.4 9.6 5.42 4.15 7.84 6.09 6.12 8.2 7.04 4.45 8.16 1.81 3.61 2.37 9.96 2.94 4.22 7.53 0 4.3 9.89 0 3.93 5.44 8.62 7.62 6.62 7.79 0 4.08 4.92 4.71 4.8 7.98 8.35 2.59 10.2 5.68 8.57 5.45 3.35 2.59 8.87 5.27 7.6 8.39 9.14 5.48 5.39 7.58 3.09 4.72 1.81 8.3 8.85 7.88 1.42 6.96 6.35 10.7 9 2.94 0 8.2 5.5 5.21 2.59 5.14 6.96 9.91 7.42 0 9.68 10.2 11 11.7 10.7 1.81 12 11.1 9.93 11.7 8.87 9.26 11.9 10.2 11.4 3.09 2.94 9.24 9.13 8.82 8.91 8.8 9.6 7.84 12.8 7.44 10.2 11 5.81 7.5 2.78 10.7 1.42 7.75 6.93 10.8 10.4 10.9 9.89 10.7 7.77 8.11 9.47 7.89 10.6 7.55 11.2 11.2 9.57 5.36 7.86 9.42 4.84 9.76 10.2 6.7 11.6 8.05 4.45 8.74 9.26 5.88 9.92 3.93 10.5 3.09 9.02 10.3 9.46 9.09 7.14 10.5 8.99 11.2 7.87 9 11.7 11.2 9.58 9.82 8.09 9.95 9.54 9.62 8.02 9.23 11.2 8.6 11.2 10.4 10.8 8.93 6.27 8.59 8.75 9.57 8.71 9.85 9.72 8.74 9.03 9.93 12 10 10.3 8.18 10.2 8.68 7.88 8.83 9.79 2.94 9.9 10.3 10.2 11.2 3.35 6.16 9.9 4.08 11.5 2.12 2.12 10.7 10.1 11 3.67 4.8 13.5 3.67 1.42 13.7 5.3 11.4 13.7 10.7 10.4 10.8 12.4 9.92 9.94 7.56 9.59 9.98 7.28 9.36 7.79 13.8 7.77 9.35 9.17 14.2 7.8 10.1 9.09 9.6 9.65 11.6 9.12 9.31 8.32 8.38 9.75 13.1 13.2 10.4 9.26 0 13.1 11.8 3.46 9.33 10.1 0.88 10.6 7.23 2.94 8.7 10.4 7.91 8.82 10.3 13.4 11.1 3.76 10 1.81 1.42 5.9 5.3 9.01 1.42 9.01 7.73 7.74 4.22 7.4 11.4 9.51 8.88 0 3.09 10.3 9.18 8.49 2.94 9.16 11.3 10.3 8.99 11.7 12.2 11.1 7.84 11.8 2.59 11.2 7.96 11.1 7.66 8.34 7.95 10.2 6.3 8.93 3.23 9.37 10 6.77 9.23 8.28 11.6 10 7.65 8.81 11.1 9.14 10.5 13.2 10.2 9.51 4.75 4.88 7.34 2.59 7.32 9.37 8.52 5.07 8 9.7 9.79 4.56 7.83 8.28 2.59 8.68 8.91 11.9 9 2.78 13.3 1.42 10.9 4.8 10.8 10 8.05 11.6 8.15 10.6 8.75 8.93 12 10.1 9.19 6.68 9.45 2.12 8.53 5.18 10.1 6.05 8.33 8.24 7.25 11.9 9.35 0 9.78 3.57 11.1 9.02 9.42 4.01 6.12 8.94 5.42 5.98 3.67 10.7 8.57 8.97 2.37 2.37 3.23 10.8 4.01 1.27 10 12.8 6.19 12.2 11.1 13.6 11.8 9.04 5.39 11.8 10.8 9.74 1.42 10.5 3.85 9.08 10.8 8.21 10.8 9.04 5.39 0 0.88 3.76 1.81 10.6 1.81 12.4 7.8 8.82 8.27 11.6 12.6 13.2 3.09 11.5 14 10 11.4 7.56 10.2 10.2 9.76 4.75 12.8 0 10.1 8.46 8.63 6.65 6.82 4.22 6.58 10.1 5.99 8.86 9.24 7.62 11.9 7.23 6.32 9.93 8.84 9.61 10.1 8.89 11.4 5.53 11.6 6.93 12.2 10.8 10.9 11.3 8.39 11.5 8.35 13.5 12.6 11.8 10.9 5.79 9.07 12.9 12.3 12.8 8.45 8.02 10.5 8.4 4.34 10.7 10.5 9.81 8.8 6.68 9.59 3.76 11.8 10.7 9.86 6.27 5.79 4.75 11.2 8.4 6.35 9.57 1.81 6.29 5.04 5.14 9.37 5.61 8.8 12.8 12.3 13.1 12.8 13.2 8.92 10.7 10.3 14.9 6.89 9.92 10.2 10.2 9.18 8.77 8.88 7.88 7.77 10.2 7.94 4.01 8.61 2.78 8.26 3.35 9.99 0.88 10.4 13.7 7.18 15.1 13.1 14.4 13.6 12.4 13.1 11.8 12.1 14.4 0 13.5 14.6 2.78 6.3 2.37 8.02 6.03 4.28 3.09 2.59 0 5.85 3.93 6.24 5.3 3.57 4.15 8.57 8.11 5.86 1.81 3.46 2.94 4.22 0.88 2.37 8.65 3.85 3.46 9.45 4.01 8.97 2.12 9.67 4.61 8.65 7.13 0 9.04 9.25 8.97 4.01 2.12 9.22 6.38 7.6 8.44 11.5 8.9 5.21 12 3.93 5.58 11.3 12.9 12.3 8.12 11.4 9.27 3.46 7.7 4.52 0.88 11.4 10.9 8.32 1.81 5.7 9.81 12.6 12.7 10.8 6.03 9.08 13.2 14.4 11 6.07 4.88 14.9 13.5 12.9 6.36 10.4 16.6 9.86 16.3 14.3 9.27 12.2 11.7 7.9 12.1 6.19 5.53 11.8 11.3 9.04 7 0.88 0 4.8 6.24 3.57 2.94 10.7 11.5 5.04 12 10 1.42 5.18 8.03 0.9 6.51 8.34 8.47 2.94 3.93 9.42 6.45 4.51 4.22 8.34 0.88 3.09 3.46 2.94 6.71 8.29 7.18 9.43 4.71 7.79 8.36 5.88 1.55 0 4.28 4.28 8.88 9.8 0.88 8.59 7.14 4.4 8.52 10.5 8.99 9.69 9.88 9.03 7.55 9.14 5.14 6.59 5.33 7.82 0 6.55 0 4.96 9.27 8.82 3.85 7.05 6.1 9.3 6.64 5.39 5.62 3.57 7.39 9.38 6.64 2.78 10.5 8.88 6.51 5.04 7.15 7.65 4.8 4.45 0 2.59 10.6 5.27 0 1.81 6.16 10.1 6.94 8.02 2.94 1.81 2.94 3.09 5.56 9.48 5.36 2.12 7.23 3.57 9.98 2.59 8.97 8.62 5.39 2.6 1.81 5.63 6.96 6.55 5 2.59 3.85 7.27 3.76 4.84 4.66 9.41 4.45 6.98 10.2 5.27 0.88 0.88 9.13 1.42 12.9 10.7 10.2 10.4 1.42 10.4 0.88 4.34 5.86 9.26 8.58 4.61 9.1 10.7 2.37 5.81 1.81 6.73 7.93 6.85 9.85 7.39 7.93 6.1 6.86 7.1 2.12 6.24 5.75 10.5 0 7.77 0 8.54 7.51 2.43 7.39 8.32 2.59 4.84 4.61 0.88 0 7.01 8.59 5.61 2.12 4.01 4.08 6.84 6.82 6.24 2.12 7.05 3.46 1.81 3.46 0 2.12 9.95 7.07 8.38 2.12 7.24 7.31 9.42 1.81 4.8 9.68 1.81 10.5 2.78 7.29 11.1 6.35 3.85 1.42 10.4 7.29 0.88 1.81 7.12 4.8 7.37 1.81 5.42 7.51 11.2 1.81 10.4 5.14 1.81 9.84 8.42 2.12 2.78 10.4 0.88 8.9 6.8 6.03 7.55 13.6 11 4.01 11.9 6.03 14 6.32 4.51 8.69 11.5 9.72 1.42 10.4 2.12 7.37 5.63 11.8 10.7 0 9.93 11.7 3.57 8.46 10.1 5.67 2.12 7.8 8.78 3.09 10.9 10.9 6.48 10.7 7.95 3.09 6.59 3.93 1.42 5.7 6.58 8.04 8.51 14.9 9.73 10.8 5.42 7.59 3.46 10.8 7.34 4.08 7.4 0 9.19 10.1 5.19 3.57 2.12 6.17 5.67 1.81 7.14 4.84 0 4.66 7.03 11 8.69 1.42 2.94 8.5 7.08 6.05 4.28 4.08 7.19 6.84 6.46 9.54 0 6.72 10.6 8.14 8.46 2.37 4.15 3.23 1.42 4.22 7.91 4.45 3.23 3.85 7.73 8.46 5.61 7.77 3.67 1.42 3.67 5.18 8.26 2.52 11.2 10.8 9.02 7.14 6.21 7.84 4.56 4.71 2.37 6.46 2.37 4.8 10.5 13.3 14 2.37 10.5 9.11 9.67 9.62 12.2 10.4 5.96 8.72 8.5 4.34 5.86 6.07 0.88 8.26 7.13 2.59 10.2 8.89 9.78 10.1 10.4 9.6 0 3.67 10.1 1.81 12.8 7.24 12.4 11.1 11.1 5.86 11.3 8.43 3.23 8.33 10.3 6.36 7.04 6.58 8.95 9.13 6.62 2.37 10.1 9.44 6.78 7.16 8.6 8.19 10.5 9.64 4.92 9.69 2.94 7.98 7.38 6.07 9.9 7.19 12.7 10.9 10.2 4.96 8.53 12.2 12.4 3.23 4.96 7.2 0 3.09 4.4 11.7 4.08 5.14 10.6 9.4 12.7 4.71 7.31 8.09 9.89 11.9 11.2 10.9 10.7 6.38 8.66 11 13.5 9.88 9.04 10.1 11.3 8.22 7.59 8.42 8.09 12.4 3.23 4.15 9.94 3.57 7.2 8.03 0 9.93 7.92 6.03 4.22 7.19 8.78 5.18 1.81 6.95 1.81 3.35 6.42 4.15 5.79 4.66 9.84 9.1 8.63 8.45 2.12 0.88 8.13 6.83 7.86 1.81 5.96 2.94 5.56 10.4 7.48 6.3 8.36 6.92 5.3 7.31 8.79 8.79 0.88 3.46 8.39 11.8 9.42 8.01 6.14 8.89 1.42 4.4 6.66 2.78 5.11 0.88 7.51 7.42 8.03 4.61 4.28 3.85 3.85 10.7 6.27 8.52 8.74 7.16 6.25 7.28 7.67 7.1 6.97 2.94 2.37 0 9.01 0 7.17 9.25 7.87 1.81 10.2 6.59 8.46 0 2.59 11.7 3.96 1.81 6.14 4.08 12.4 8.25 2.59 7.4 1.42 5.77 4.51 5.88 6.49 1.81 6.81 13.1 4.8 3.23 4.22 3.57 6.4 6.95 6.32 3.85 6.68 12.7 7.92 0 4.75 9.62 5.3 7.5 4.96 5.81 8.86 4.66 0 5.88 10.2 7.78 8.61 5.5 8.96 4.34 8.2 9.97 10.6 8.64 11.2 8.74 10.3 8.1 0.88 0.88 0.88 11.7 0 1.42 8.26 4.71 3.85 11.6 3.76 0.88 2.12 2.12 3.85 3.85 11.2 11 10.6 11.8 11.1 14.2 13.6 10 9.45 11.7 5.45 12 12.4 11.3 0 0.88 13.2 8.63 1.81 7.82 7.91 7.44 13.4 8.11 4.22 9.17 0 10 5.39 7.24 5.04 3.28 9.98 2.37 0 5.21 9.85 3.57 7.55 13.6 8.81 9.93 8.38 2.59 5.79 5.7 4.75 7.34 9.15 0 4.45 0 5.68 2.12 6.42 3.46 6.77 5.45 2.78 3.85 8.94 1.77 2.37 9.47 2.61 7 8.67 5.18 1.42 10.4 1.42 5.14 5.14 3.46 8.58 4.22 3.57 9.89 3.23 8.27 5.11 4.92 2.78 4.92 6.45 8.11 5.24 6.85 9.04 9.2 1.42 14.3 1.42 6.27 8.34 8.58 9.42 8.62 6.69 6.79 6.42 3.35 4.4 6.76 9.83 0.88 6.97 8.41 7.99 0 6.63 8.01 7.21 4.8 5.45 7.68 8.56 0.88 9.38 2.12 4.15 7.15 8.48 8.71 9.27 6.61 2.12 10.3 11.6 8.11 3.67 8.31 0.88 5.53 5.37 6.51 1.81 8.32 9.75 3.46 6.39 1.42 5.07 4.15 8.11 5.27 4.28 11.9 3.76 6.91 10.1 4.51 7.89 0 3.85 9.15 10.5 2.78 6.01 1.42 6.03 1.42 3.67 2.37 8.07 6.42 3.46 6.76 3.23 10.8 8.22 6.66 6.29 0 2.12 7.8 0 3.35 2.59 5.04 0 9.3 7.62 7.9 8.6 7.87 9.26 11.6 5 12 1.81 12.3 0 11.5 3.09 8.97 7.37 13.6 12 8.26 6.7 11.2 11.2 14.2 1.42 0.88 4.08 13.5 7.71 13.5 5.72 2.12 11.5 9.69 7.5 9.74 1.42 12.3 7 0.88 13.5 10.5 14.6 10.8 4.96 3.23 5.34 9.76 9.5 11.1 1.42 8.86 11 12.1 2.12 9.2 8.18 9.96 0 7.77 7.97 11.4 6.85 11.4 7.16 8.94 11.4 10.6 8.55 9.06 5.79 0.88 6.21 10.3 9.3 1.42 9.08 10.6 8.16 11.2 9.34 10.3 9.86 5.24 1.81 9.9 3.09 5.24 7.99 5.72 11.5 3.85 8.04 6.25 10.2 0 2.59 5.7 8.84 11.1 11.9 6.78 5.14 7.1 12.8 3.46 3.35 5 9.2 7.08 8.63 6.38 10.1 0.88 5.63 7.91 0 7.12 5.53 0.88 4.96 2.12 1.81 7.47 8.08 6.58 5.21 4.88 2.59 8.18 3.35 7.28 6.63 0 2.78 8.06 5.72 0.88 2.59 7.01 10.2 10.6 4.01 7.27 0 3.38 0 4.28 0 2.94 1.81 10.2 0 6.19 4.08 4.45 5.3 4.54 3.85 2.37 2.59 4.33 7.6 5.04 6.37 5.56 0.88 8.32 6.63 4.34 7.02 6.46 9.43 5.94 3.46 6.39 9.11 9.68 5.35 2.59 8.9 0 0 2.59 0.88 6.57 9.4 4.01 6.97 10.9 7.58 1.42 5.72 8.16 10.2 8.5 0.88 4.8 4.22 9.93 3.09 2.78 7.37 9.68 4.88 8.88 4.75 7.74 0 8.42 10.8 13 5.24 9.2 12.1 11.5 7.51 7.62 9.96 3.67 7.73 2.73 3.67 10.6 5.72 6.51 8.42 8.55 9.31 10.1 7.62 11.1 2.37 10.2 5 1.42 10.6 9.77 9.61 9.24 2.12 6.62 0.88 5.75 10.6 7.2 12.1 12.6 2.94 5.45 8.07 5.14 9.38 4.4 9.45 6.3 8.59 13.2 13.3 12.6 11.2 0 6.75 7.93 5.84 10.1 9.82 10.7 7.66 10.4 8.02 10.5 9.72 10.4 11.3 9.55 8.68 10.2 3.46 7.8 10.5 3.67 4.15 7.5 8.64 10.9 4.84 2.12 8.65 7.79 9.34 9.46 8.47 11.3 8.22 6.22 8.13 9.88 11.3 5.81 12.7 4.96 4.61 6.35 8.13 10.5 6.32 3.57 12.4 8.98 3.67 6.49 0.88 1.9 6.88 4.01 3.93 12.4 8.5 8.49 9.25 10.1 8.37 9.51 4.96 8.52 9.08 12.7 9.49 0 9.72 8.84 7.53 6.5 11.7 8.63 7.64 2.12 13.2 12.3 12.4 13 12.2 12.7 13.7 9.47 5.92 11.3 8.89 3.46 12.2 12.8 12.3 12.1 10.1 8.51 10.1 10.8 10 9.26 4.62 7.16 10.3 8.28 5.65 6.51 6.33 8.38 9.34 9.48 9.92 6.29 10.9 9.97 5 0 13.5 7.69 9.19 9.77 9.84 9.2 11.2 10.1 8.21 5.75 10.6 9.4 8.35 6.53 8.92 7.18 6.87 12.6 11.6 7.55 10.3 5.83 10.3 9.66 9.25 9.77 12.9 8.23 3.46 8.44 6.21 9.75 11.7 10.5 9.41 10.1 7.47 8.43 9.39 9.07 10.5 10.9 10.6 4.45 3.93 11.3 10.3 8.54 3.57 7.89 11.2 1.81 0 2.37 9.91 5.48 8.08 12.2 3.57 12.5 6.54 7.24 7.78 7.41 3.23 9.01 9.25 6.4 9.41 3.46 9.26 8.85 0 11 10.8 9.16 9.87 9.36 3.46 1.42 8.57 9.93 8.46 9.21 9.15 7.99 7.53 8.94 10.8 0 0.88 10.9 9.04 1.42 5.07 5.07 11.6 9.75 1.81 1.81 3.67 4.88 8.97 4.08 8.19 0 0.88 5.04 9.31 9.86 1.42 8.81 10.8 3.87 6.51 4.03 5.03 6.93 6.47 10.2 8.42 1.81 6.34 1.81 8.6 6.4 4.96 8.98 3.23 3.35 11.5 10.2 11.1 2.37 5.11 3.46 0.88 0 9.23 3.85 1.42 0.88 8.22 8.37 5.89 7.29 12.2 4.66 7.36 5.04 4.15 6.29 7.68 6.68 10.3 7.31 2.37 4.84 7.39 7.85 3.67 5.53 6.3 0 7.53 9.03 1.18 0.88 3.46 1.81 1.42 4.01 3.67 1.81 7.74 1.81 6.76 7.07 3.35 7.8 10.2 5.58 6.25 9.74 0.88 0.88 2.37 1.81 7.41 2.94 7.37 3.85 2.12 7.49 6.7 3.76 3.09 10.9 2.12 13.1 8.78 1.81 7.79 10.1 10.6 9.88 3.35 6.75 5.09 4.01 9.5 13.2 6.75 6.24 7.14 7.43 5.79 12.9 11.6 13.9 8.3 13.6 12.6 9.53 4.4 8.77 10.2 11.9 9.08 11.2 8.59 8.21 3.23 9.95 9.01 9.9 5.72 11.2 2.78 10.1 9.35 9.8 8.51 7.98 10.4 8.31 8.2 6.1 7.09 14.5 7.42 2.78 2.37 10.2 8.92 11.4 9.99 7.65 1.42 6.7 13.8 12.9 8.58 7.79 4.08 7.04 13.9 9.37 3.76 11.8 9.57 11.3 9.89 8.42 9.59 7.53 2.59 9.15 10.7 11.2 11.1 8.68 8.07 5.5 8.74 8.17 14 10.3 9.28 7.2 13.5 5 14.1 5.33 9.2 11.6 12.4 13.7 11.9 4.56 9.39 9.63 10.5 6.21 3.09 10.2 6.72 6.64 8.07 15.3 11 11.1 9.43 9.65 12.8 10.2 12.4 11 9.55 10.2 9.33 11.7 10.8 11.7 9.83 10.3 9.53 12.5 9.97 10.1 9.4 10.2 10.8 11.7 11.4 9.14 10.8 10.9 9.62 11 10.3 11.3 8.59 12.1 10.2 10.1 10.5 12 10.4 11.1 8.28 13.4 13.1 11.4 7.79 7.7 7.5 8.94 5.15 7.29 1.42 0.88 11.4 9.1 9.18 8.19 7.97 8.41 6.17 10.5 10.5 13.8 10.2 4.4 10.4 7.36 2.94 7.72 9.36 9.41 6.62 12.7 9.59 10.4 7.86 6.79 7.76 8.91 8.43 11.7 10.7 9.68 8.19 8.74 10.9 8.61 10 9.28 2.78 10.2 10.4 10.5 10 3.67 11.6 10.1 7.16 11.5 9.08 5.61 9.25 6.59 9.17 11.2 7.15 10.1 7.06 11.4 11.4 13.1 8.64 10.4 8.18 11.8 8.64 11 12.4 14.3 5.14 6.93 10.7 11.2 8.71 10.5 11.4 12 7.94 8.63 0.88 11.7 7.37 6.71 9.15 10.2 6.77 14.5 5.24 2.59 13.4 5.99 7.69 0 4.61 9.89 11.4 9.89 11.5 5.45 12.8 9.4 0.88 9.73 5.48 5.31 6.71 13.8 10.4 7.53 2.59 8.75 3.67 6.07 6.69 4.4 5.83 5.88 8.26 7.64 5.53 5.83 5.14 12.2 9.81 11.9 10.9 11.4 3.57 10.6 9.27 10.2 8.62 10.5 7.72 7.75 1.42 8.94 4.76 6.46 9.56 8.97 6.4 9.35 10.5 0 7.61 11.8 8.76 2.78 4.61 5.21 1.42 13.5 11.8 9.02 11.7 10 5.33 11.1 8.19 9.77 2.78 1.42 3.58 4.61 1.42 0.88 11.1 9.02 13.3 4.8 5.11 9.09 7.37 9.11 0.88 6.21 11.2 10.2 10.5 9.81 9.72 5.81 1.42 0 10.7 3.85 11 5.53 0 2.78 9.25 10.9 8.73 4.61 3.57 7.1 7.24 3.09 5.27 3.57 5.48 7.09 11 14.1 5.96 6.7 13 1.81 2.12 4.66 13.2 8.93 11.5 7.03 11.8 10.8 9.97 4.15 10.8 7.9 10.3 4.01 9.52 8.84 8.92 9.54 14.5 9.86 1.81 11.6 14.4 4.71 4.52 10.6 7.61 11 3.99 8.67 10.8 6.4 8.52 9.35 8.17 8.43 5.79 8.5 6.38 2.94 10.5 11.8 9.49 3.09 4.4 4.1 8.89 10.5 9.55 11.2 10.3 11.2 10.1 9.03 2.37 3.72 0 13.9 2.37 7.78 10.5 6.63 4.84 0.88 10.3 8.81 9.96 11.5 10.4 11.9 10.8 8.13 8.52 14.1 7.95 0.88 14.1 2.37 5.43 6.77 7.88 10.8 10.8 9.86 10.6 10.6 7.95 9.28 9.47 6.95 7.98 7.9 9.73 9.56 9.71 4.96 9.37 9.82 10.4 9.08 10.6 7.31 8.2 8.66 8.23 10.1 11 4.51 8.86 10.5 8.96 11 6.21 9.33 11.3 9.5 11 10.8 9.44 7.53 7.37 10.3 6.46 10.9 6.64 8.37 10.3 11.7 9.51 7.13 7.01 10.4 2.12 10.3 9.75 10.3 10.1 9.36 9.61 11.3 8.63 10.9 8.15 10.5 10.5 11.7 12 10.9 10.3 10.7 5.63 6.63 0.97 8.96 8.58 7.71 7.84 8.37 8.41 11.7 8.54 10.9 9.49 10.4 9.44 11.6 10.5 7.19 8.8 8.46 9.64 9.37 8.36 11.6 10.7 11.1 12.2 8.77 10.3 9.83 9.31 9.39 9.97 9.29 10.6 11.4 8.66 10.1 10.2 9.62 10.3 8.78 3.93 8.31 8.14 8.96 7.93 9.58 9.21 8.18 7.75 6.83 9.81 8.33 13.3 10.5 10.6 8.1 9.64 6.65 11.1 1.42 11 12.8 6.79 11.4 9.51 7.59 9.56 8.72 10.2 6.07 7.58 4.15 8.35 6.35 8.75 8.1 9.74 5.24 8.29 11.5 10.8 10.2 9.68 9.2 11.2 11.4 9.18 10.7 10.6 6.22 9.7 9.87 7.28 6.73 8.94 7.56 12 11.5 9.53 7.66 3.57 2.78 0.88 10.4 6.14 8.8 7.22 7.86 8.34 11.3 10.3 9.09 10.2 0.88 10.8 10.2 6.59 8.99 10.4 9.31 13.1 11.3 10 10.1 9.12 8.42 8.64 5.65 11.7 11.4 9.33 8.17 12.4 6.92 9.06 10.6 10.4 3.25 5.88 9.16 11.8 9.64 10.3 8.91 8.15 7.67 7.45 8.34 8.46 8.49 10.3 6.75 9.93 11.5 5.68 5.7 9.47 9.53 10.5 9.27 10 10.7 7.38 9.08 8.14 5.77 9.96 8.67 10.9 1.81 9.07 10.8 2.94 8.98 10.3 8.28 9.58 8.61 4.92 8.95 8.79 0 8.56 2.94 8.53 10 7.87 10.2 11.2 11.1 10.4 7.09 10.9 4.08 9.58 5.7 6.14 4.45 12.2 7.01 7.42 12.3 11.1 9.82 8.43 9.74 9.11 1.42 7.9 2.37 6.57 10 9.51 9.71 8.74 2.78 3.57 12.4 9.06 9.33 5 11.1 11 9.83 11.6 8.35 9.35 9.04 7.47 6.38 10.2 3.85 11.5 12.1 11.1 9.65 6.42 7.95 8.46 7.96 10.5 8.45 10.7 7.2 9.36 11.2 8.29 8.78 7.38 7.92 10.3 8.42 7.55 10.6 10.7 10.4 8.6 10.7 11.9 10.8 9.92 9.23 7.24 1.42 12.4 10.9 10.9 11 0 10.5 9.38 10 8 4.34 9.58 9.28 8.79 0 10.2 11.6 8.2 10.6 8.77 8.87 9.35 11.4 12.3 10.3 10.5 10.6 11.6 9.81 9.53 9.85 11 10.2 10.6 8 10.3 9.76 3.46 9.36 10.3 8.82 12 11 8.54 8.2 9.87 9.25 9.55 10.3 9.88 9.47 7.59 7.07 10.7 10.7 8.81 10.1 12.1 7.49 9.76 8.78 8.01 8.47 8.23 9.24 10.1 4.84 1.42 8.21 8.86 9.65 7.63 9.29 11.3 8.73 10.3 10.3 9.08 10.6 10.4 10.6 9.69 7.1 13 10.2 11.1 9.28 11 10.7 12.3 10.4 10.4 11.7 10.1 12.3 7.6 12.5 10.7 10.6 9.5 10.2 11 9.12 11.2 9.67 0.88 7.04 12.4 10.3 11.5 8.57 12.5 9.81 11.4 9.25 8.86 8.69 12.3 11.2 8.21 8.61 9.01 10.6 9.89 9.58 11.3 8.88 9.38 9.39 9.82 9.94 7.8 10.4 9.67 8.09 8.09 7.28 10.6 9.58 10.3 8.47 11.8 11 6.82 5 9.14 9.95 7.01 4.75 2.12 10.3 9.52 11.6 9.54 8.36 10.2 12 10.1 6.86 8.82 2.94 5.07 11.4 7.11 9.02 8.67 10.7 9.29 0.88 11 1.81 8.84 11.8 11 9.92 12.8 1.81 9.23 7.6 3.93 3.57 6.76 9.76 2.12 11.6 8.42 10.2 2.59 8.42 8.83 11.4 9.96 10.4 7.72 4.84 9.54 9.64 1.42 7.65 11.2 9.86 8.82 11.6 11.6 12.6 8.06 8.67 5.04 9.52 9.69 10.4 10.7 10.1 8.59 10.3 9.96 7.51 9.46 7.56 9.69 8.88 2.59 0 12 6.5 11.4 10.2 10.5 9.99 11.7 7.4 0 8.98 9.25 11.1 8.37 13.2 5.65 10.2 11.2 14.9 11.9 9.62 11.4 13.2 5.72 0 12.8 8.02 8.64 11.3 14.5 12.6 10 4.71 2.12 3.85 5.33 12.8 5.04 13.2 2.94 9.79 9.93 8.67 10.1 10 11.3 2.94 9.53 8.4 8.28 1.42 10.5 11.2 11.1 5.7 11.3 6.25 8.67 9.02 11.2 7.79 7.71 1.81 10.5 8.09 8.82 11 8.51 10.4 12.8 9.87 3.93 8.56 11.1 10.2 9.92 9.02 9.51 2.12 8.73 9.69 10.7 4.75 10.4 10.1 3.52 15.1 9.59 9.31 0 5.21 8.05 9.04 9.39 9.68 10.3 7.37 11.4 9.14 10.6 8.31 8.74 9.17 10.1 6.07 5.5 4.14 9.19 7.21 6.24 2.12 8.92 11.9 3.67 7.35 7.51 6.46 10.8 9.64 9.8 13.1 4.71 3.46 9.22 7.38 4.16 4.8 2.12 11.8 6.39 9.42 1.81 12.2 10.3 9.42 7.86 9.94 8.06 12.4 10.5 11 10.8 11.6 5.61 7.93 0 11.4 6.19 10.7 7.02 10 1.19 2.78 11.7 10.1 7.78 11.1 9.32 9.03 7.77 7.34 6.17 4.51 6.65 6.32 9.01 11.7 4.15 5.63 3.23 6.42 9.64 3.09 9.42 5.86 0 5.3 12.4 7.53 8.46 7.9 9.16 10.3 8.75 11.5 8.27 10.9 9.35 9.58 11.4 9.1 7.65 11.1 9.36 6.55 6.54 7.38 8.54 8.1 0 10.8 6.7 5.14 8.51 6.12 7.06 6.33 2.21 10.3 9.43 12.3 2.59 8.6 8.76 7.65 5.06 8.08 3.73 10.6 9.48 8.52 9 9.38 10.4 13.8 12.8 11.9 4.22 6.93 3.35 10.2 9.09 10.8 11.3 11.9 8.93 4.14 10.3 8.49 12.9 11.5 11.3 6.12 3.76 10.6 8.88 8.61 11.7 7.29 8.16 10.2 10.5 7.8 2.94 10.1 9.94 9.58 10.4 10.1 11.7 10.3 3.76 6.49 11.5 4.28 9.27 11.7 9.38 9.52 9.81 3.34 6.16 8.36 5.04 10.4 7.15 5.5 10.3 11.5 8.96 7.73 9.52 9.18 3.09 3.76 12.5 10.4 10.2 9.17 5.68 9.17 9.02 1.81 10.5 9.59 11.4 11.8 6.45 9.47 9 9.53 11.3 11.6 9.69 10.3 8.9 10 7.44 8.17 6.79 9.42 10.1 9.85 8.49 10.8 8.23 5.68 10.6 8.27 10.6 10.2 8.72 2.59 8.67 6.79 9.77 9.08 7.97 10.4 5.88 6.32 10.1 9.8 7.08 10.5 7.27 10.5 8.25 8.98 10.9 6.5 8.55 8.21 11.5 9.97 10.7 8.48 12.2 9.11 9.11 10.3 7.55 10.6 8.74 8.26 8.02 9.5 7.08 1.42 7.81 7.08 6.45 8.69 10.4 14.7 11.3 14.8 9.03 11.9 10.7 8.8 12.1 10.5 12.1 6.71 10.2 9.78 6.3 4.8 8.99 7.42 10.7 7.13 3.23 9.78 10.7 10.3 8.98 9.59 6.09 9.39 10.5 7.24 6.5 9.37 7.25 8.28 10.7 11.8 11 8.69 8.32 9.09 10.2 7.19 4.66 10.9 0.88 11.5 10 6.25 9.35 8.29 7.91 3.09 8.47 3.85 11.5 2.94 7.77 3.23 11 9.1 8.2 10.9 7.06 4.61 9.91 9.22 6.03 9.83 9.39 13.2 9.3 9.13 7.51 9.34 13.5 6.32 9.42 8.02 8.58 8.18 6.16 10.5 8.48 9.12 9.93 9.65 6.59 7.27 8.72 9.32 7.31 10.2 6.93 8.93 9.8 8.07 7.97 11.8 7.83 8.31 9.21 9.89 9.81 7.67 0.88 6.55 0 8.75 9.25 4.71 0.88 9.12 8.65 7.24 9.51 6.79 9.44 7.27 7.2 7.06 12.3 2.78 9.82 9.75 7.95 7.63 10 7.12 7.25 11.1 5.04 8.63 9.41 9.33 10.1 6.14 8.6 7.72 10.6 2.78 11.6 8.86 7.8 11.3 9.27 5.63 11.2 8.03 9.56 7.24 9.15 7.37 11.8 10.3 10.7 9.19 9.16 5.88 10.1 11.2 11.3 10.4 10.8 9.4 6.79 8.79 6.25 7.14 7.7 7.56 4.66 8.46 10.6 8.98 9.95 5.92 10.6 10 12.6 9.49 8.96 11.6 7.97 11.5 10.7 9.15 11.3 9.02 6.05 9.06 10 11.4 10.8 9.58 11.4 9.58 10 5.92 3.35 10 8.65 9.71 3.46 10.4 11.1 10.2 11.1 10.6 8.2 6.73 9.34 7 10.4 9.1 11.8 7 9.18 9.04 9.38 9.65 7.53 8.6 8.52 13 8.2 8.42 8.75 10.2 6.96 8.29 0 9.13 9.02 5.27 7.63 9.02 11.3 7.31 9.95 10.7 11.8 0.88 7.87 7.67 6.99 11.1 8.93 9.86 7.99 9.77 2.12 11.4 12 7.34 10.9 12.3 7.38 4.71 6.82 11.5 6.94 11.8 12.8 11.7 5.48 9.31 10.1 10.6 10.3 8.98 8.22 8.5 8.93 12.7 9.79 10.7 7.57 8.52 8.77 8.87 9.49 5.45 10.1 0 9.28 6.07 6.93 10.6 4.15 0.88 9.37 10.1 8.8 9.79 10.2 8.72 4.45 9.67 5.04 11.6 10.8 8.21 9.87 3.76 12 9.3 9.07 8.61 11.2 10.6 10.7 7.55 6.03 3.93 8.18 7.11 5.11 4.28 7.74 7.99 10.6 3.67 11.4 5.72 7.53 8.2 10.7 8.27 7.9 12.2 8.91 7.6 9.44 10.5 5.58 6.7 4.34 7.84 3.57 6.7 9.09 7.85 7.09 8.78 11.7 4.66 10.3 8.04 9.85 9.59 10.1 7.45 6.55 11.1 8.32 11 10.6 10.2 8.62 8.52 10.6 9.42 10.8 8.22 11.1 5 9.84 12 7.5 9.82 3.67 10.8 10.5 9.52 9.54 5.79 6.99 9.92 11.1 10 10.2 10.9 9.93 8.2 10.7 10.3 10.2 9.73 11.8 4.51 8.61 9.38 10.4 12 10.2 10.3 12 10.8 9.99 10.6 8.34 9.52 9.21 9.11 10 10.1 10.1 8.59 8.98 9.75 9.94 6.22 7.63 10.4 9.46 8.64 13 8.15 9.84 10.6 12.2 7.06 10.6 10.2 8.3 9.62 6.8 9.08 8.88 10.9 7.5 0 12.9 9.83 9.07 7.47 6.03 10.5 10.4 10.7 7.14 9.78 10.6 10 11.1 8.33 11.7 6.66 11.2 8.13 9.07 8.08 11.6 8.47 7.15 9.09 9.61 9.53 6.19 6.66 8.11 9.9 8.97 11.4 8.04 9.69 9.15 9.09 8.6 4.15 10.6 10.6 9.43 9.83 11.1 11.3 9.42 9.26 8.02 9.68 10.1 7.24 7.31 11.2 8.28 10.2 11.2 10.2 9.78 10.1 8.74 10.9 9.78 7.9 5.07 7.23 7.53 9.23 8.68 1.81 6.33 10.8 10.6 11.9 10.5 5.77 10.2 10.4 9.87 5.92 9.18 8.09 10.8 9.56 7.49 1.81 7.05 8.85 7.84 3.81 0.88 9.72 11.5 8.26 10.7 8.95 11.4 11.3 6.42 8.4 7.47 4.71 9.61 8.62 9.56 0.88 7.97 9.04 4.71 7.8 3.85 10.8 11.4 8.85 10.6 7.81 9.94 6.62 8.05 6.22 8.93 7.08 9.02 9.91 10.3 6.01 8.46 9.19 10.6 8.4 10.2 9.01 7.3 4.71 7.53 8.77 8.09 9.01 10.1 9.75 4.15 3.93 9.08 11.5 11.8 7.35 11.3 10.8 8.29 11.3 9.51 6.67 9.54 7.54 0 6.4 8.9 14.4 11.1 6.87 7.96 8.55 11.3 10 9.89 9.58 7.15 9.38 8.86 10.3 6.96 7.65 12.7 11.8 12.8 9.93 4.15 8.93 10.2 8.34 4.22 0 3.67 8.28 4.66 8.49 8.81 9.57 4.22 7.93 5.63 8.5 11.2 9.82 10.2 10.5 3.76 10.6 8.24 9.9 11.7 9.5 7.03 5.11 5.58 10.9 7.61 5.42 8.15 5.45 6.19 2.37 5.53 2.78 8.71 5.78 6.78 10.9 10.4 7.21 0 1.42 7.14 12.3 5.06 6.55 11.3 4.4 0.88 7.25 4.34 8.45 9.34 9.87 8.57 7.7 2.59 9.23 9.95 11.4 8.52 12.4 0.88 11.1 9.92 9.52 6.01 11.1 10.6 7.8 9.84 6.81 11.5 10.1 6.75 2.78 7.02 8.63 7.29 8.33 9.33 9.06 9.03 7.83 8.76 10.9 8.72 5.45 7.73 8.42 10.6 7.16 8.19 9.32 6.66 11 10.3 11.1 10.1 9.83 9.87 12.1 7.4 11.5 6.1 9.57 9.32 9.79 9.4 8.49 9.39 6.05 3.67 9.95 8.46 10.3 9.69 10.3 7.24 11.2 7.69 10.7 7.85 10.6 10.8 14.3 10.8 7.93 10.2 7.9 10.6 12.4 11.4 10.6 6.87 8.87 9.83 12.2 9.4 8.83 9.15 9.06 8.64 11.7 8.71 9.28 11.2 8.1 7.13 9.8 10.5 11 9.01 8.76 10.5 5.56 10.8 7.76 10.3 5.79 11.4 9.81 10.5 6.77 10.6 7.85 9.54 8.67 9.86 9.42 10.2 11.6 9.86 9.83 7.79 8.44 7.8 9 9.03 9.42 9.21 9.4 10.1 9.41 11.8 7.56 6.71 9.73 11.1 9.34 9.71 10.9 12 11.3 9.26 5.11 8.52 11 11.6 11.3 9.39 10.1 9.11 9.94 11.2 9.89 9.21 10.1 11.2 11.6 9.83 9.38 8.83 10.8 8.72 11 10.2 8.94 8.51 8.91 10.7 8.77 8.36 9.67 8.49 9.27 9.54 10.3 10.6 9.38 8.5 10.6 9.8 8.73 12.1 10.3 9.11 6.51 8.92 5 7.29 8 9.77 8.6 7.22 9.73 7.24 9.71 8.06 9.09 6.36 6.5 9.91 7.33 9.49 9.61 2.94 8.63 7.14 10.5 9.89 4.92 9.64 7.18 4.45 9.56 2.12 7.54 5.98 9.36 1.42 7.12 11.5 9.93 5.58 10.8 9.42 6.35 8.69 7.27 7.31 9.22 10 7.5 10.1 9.7 12.2 11.4 8.94 10 10 10.6 5.56 8.83 4.34 8.63 11.4 9.6 8.39 7.86 11.5 7.5 10.2 9.47 3.62 11.1 7.21 10.2 8.64 10.2 9.38 10.6 9.53 7.86 9.35 8.49 0.88 6.94 5.3 10.1 9.47 8.31 5.24 8.39 10.3 4.4 7.37 5.56 13.7 9.76 8.61 10.6 2.94 11.4 9.54 9.11 5.18 8.58 9.63 11.6 8.56 12 8.17 13.3 6.12 9.87 11 8.7 9.52 4.34 14.7 8.62 7.67 10.5 3.85 10.6 4.22 11.6 10.6 7.38 7.07 9.06 10.6 8.58 4.28 9.88 10.9 11.1 11.8 9.48 10.2 7.66 9.48 9.26 10.1 9.59 8.51 1.42 7.89 1.42 10.3 9.7 10.1 5 9.16 7.14 10.8 11.4 9.26 10.5 11.8 3.09 7.12 8.29 7.69 10.1 5.04 8.42 4.28 10.2 7.12 5.36 4.66 4.88 3.24 6.28 6.01 4.61 4.01 5.92 9.81 4.75 4.75 3.67 5.45 4.22 9.47 3.67 4.71 3.76 3.57 3.09 2.37 2.78 2.37 1.42 1.81 10.8 2.12 3.23 4.22 6.49 2.94 7.11 9.65 4.96 5.65 0.88 1.42 8.63 4.84 9.84 9.16 0.88 8.19 9.96 0 6.16 10.5 9.27 9.82 1.42 12.1 11.1 3.57 10.7 8.8 5.14 11.2 10.9 4.45 8.61 10.1 10.2 8.9 7.23 11.7 10.7 10.3 8.24 7.77 11.5 9.63 11.9 10.9 10.6 10.3 5.92 4.92 11.2 6.44 0 0.88 10.8 5.88 9.45 4.15 4.56 11.7 4.8 9.61 8.59 0.88 13.4 5.65 7.37 4.4 10.6 6.98 7.91 11.1 8.38 10.3 7.27 1.42 10.4 9.36 8.53 8.73 9.78 5.61 8.64 6.75 1.42 7.03 2.37 9.18 7.73 10.9 11.1 13 6.38 0 9.44 9.57 11.7 11.1 12.7 7.13 9.3 11.9 8.17 12.2 11.4 10.2 9.96 6.59 12.2 12.3 12.2 10.8 11.4 11.5 11.8 12.9 7.8 5.61 10.3 9.74 8.63 10.5 8.98 2.12 12.5 9.89 7.59 11 9.12 10.7 6.17 7.41 11.6 12.7 5.98 7.55 10.2 10 11.4 10.6 10.2 13.1 7 8.45 8.49 7.07 11.4 9.78 9.75 8.22 12.1 9.94 8.09 9.31 8.08 12.5 9 10.4 8.57 9.96 11.7 9.85 8 10.9 8.7 11.3 11.9 7.75 10.3 6.98 6.92 11 9.74 8.6 6.62 9.13 3.23 9.84 7.92 11.5 5.14 9.2 4.75 2.94 6.68 7.37 4.88 9.02 9.62 6.07 8.65 10.4 8.41 8.92 10.3 11 9.58 9.15 10.7 8.95 9.28 8.58 0 10.7 8.98 8.79 11.7 8.57 12.2 1.42 9.23 10.5 11 11.7 10.4 8.59 7.07 7.78 7.8 9.95 12.7 8.87 8.99 12.2 10.1 2.94 11.2 8.72 1.83 12 12.4 13 9.29 10.2 7.91 8.71 12.7 3.35 11.5 1.81 10.7 6.1 9.04 8.48 10 12.4 5.68 9.94 10.6 9.8 1.81 8.04 8.23 9.96 7.76 8.09 8.28 8.45 5.58 10.8 6.29 11.4 10.4 7.77 6.21 8.35 10.3 12 11.6 10.2 11.4 10.4 8.52 12.3 9.53 12 7.98 8.39 8.03 10.8 7.71 9.91 6.79 11.8 10.6 7.65 10.5 5.88 11.8 7.8 11.3 2.78 11.7 7.04 9.66 12.2 8.96 10.9 9.4 11.3 10.8 11.4 8.27 11.3 8.96 9.22 9.21 6.59 11.2 7.78 8.86 11.4 11.4 4.4 9.17 6.97 11.5 8.61 10.6 7.3 6.94 10.6 11.2 9.5 9.69 7.67 7.3 10 10.9 9.24 8.5 10.2 11 8.96 8.95 9.51 9.49 10 4.75 5.07 13.9 12.1 9.7 0.88 2.78 8.65 8.58 4.61 4.51 4.22 9.75 9.83 4.69 6.46 9.88 10.1 7.87 7.89 8.22 5 8.67 8.46 4.84 11.2 13.2 6.33 6.59 5.56 6.97 9.51 0.88 0.88 9.47 9.48 0.88 9.07 7.1 10 8.46 10.6 7.83 10.4 7.85 10.2 2.94 7.61 4.15 4.45 9.54 7.98 11.9 9.15 8.35 4.75 4.61 3.57 10.4 10.2 7.12 9.35 2.94 11.4 9.3 6.36 5.81 7.56 8.8 11.4 4.66 7.03 11.2 12.1 4.71 9.49 10.9 9.03 8.53 4.15 6.5 9.3 11.5 7.38 6.38 5.5 9.44 11.3 9.28 4.8 10.6 9.04 11.8 1.42 8.99 0.88 10.1 8.06 5.78 10.5 12.1 10.5 10.3 9.26 9.55 8.4 11.9 8.79 9.65 8.7 11 7.45 9.49 8.2 10.6 6.65 5.79 0 6.19 3.85 10.7 8.64 12.1 10.4 9.6 4.45 5.53 7.2 8.77 9.45 12.2 6.9 11.4 9.6 7.86 7.8 7.62 6.86 8.68 9.03 9.77 9.12 0.88 10.8 13.4 7.09 5.88 10.8 8.57 8.96 6.38 6.7 3.67 8.51 7.86 3.35 15.1 9.33 4.34 11.6 6.84 5.33 7.55 5.18 5.83 8.11 9.68 3.23 10 9.01 9.72 9.19 8.78 10.8 9.15 10.4 5.39 5.79 10.9 6.51 7.67 10.2 8.15 7.01 11.2 3.67 10.6 9.57 8.77 10.4 9.54 9.7 9.5 9.01 7.34 9.86 8.22 8.08 10.4 7.6 7.93 4.88 12.4 7.98 9.75 11.2 10.7 4.08 6.51 7.37 10.2 11.5 10.9 11.3 10.9 10.4 4.71 7.75 11.8 6.11 8.63 9.94 10.7 8.28 8.35 9.49 9.88 9.72 9.3 10.9 11 7.41 9.4 9.65 11 11.6 10.1 6.47 9.86 5.81 6.3 2.94 9.53 8.15 5.53 10.2 9.7 10.3 8.41 8.47 5.86 2.94 10.5 9.34 9.92 10.5 9.52 5.53 8.15 8.17 9.3 9.97 4.67 8.63 4.75 6.54 7.81 2.59 4.92 8.44 10.4 8.43 8 9.42 10.5 8.49 4.66 6.43 4.34 4.45 7.09 8.24 8.19 8.7 8.25 10.4 6.32 9.78 9.96 9.95 10.4 8.82 10.4 9.97 5.56 8.3 12 12 10.2 13.5 10.6 5.7 8.92 6.57 8.67 9.09 4.4 9.46 0 4.71 9.43 6.42 9.96 9.52 6.5 0.88 8.6 8.1 9.48 6.33 6.76 11.7 9.29 4.71 8.63 9.68 7.79 8.59 5.7 8.73 9.26 5.94 5.94 11.4 7.61 7.4 11.4 7.93 7.45 11.1 9.23 10.8 10.3 5.98 11.8 9.93 10.2 7.7 6.39 11.5 11.2 9.61 9.79 6.78 8.97 12.5 8.9 11.2 11.6 11.5 9.14 11.7 11.7 6.22 6.95 5.48 7.83 8.92 10.8 10.5 6.72 4.56 10.4 9.75 9.46 8.49 8.27 9.86 7.72 7.42 7.76 6.01 7.11 9.56 9.83 8.25 7.11 7.86 11.2 11.1 10.8 9.67 9.08 9.75 9.7 13.4 12.3 10.5 10.8 9.89 6.38 5 10.2 1.42 0.88 12.3 13.2 9.45 12 9.67 9.9 7.17 9.5 8.27 7.87 11.8 10.7 7.59 11.6 8.88 10.6 7.96 1.42 9.16 10.2 8.81 11.5 12.5 7.93 9.64 8.71 9.15 12.8 11.6 12.6 10.1 7.44 6.68 5.88 7.86 9.02 11.9 5.18 11.2 11.1 10.2 10.7 9.11 13.8 11.7 13 11.7 9.92 10.9 7.05 8.62 8.26 9.01 10.2 1.81 8.99 7.53 8.25 11.2 6.84 8.06 6.54 9.05 6.55 3.09 8.28 8.91 8.52 7.97 11.6 4.61 3.85 9.23 8.83 12.8 11.2 9.67 8.65 11.5 9.31 11 8.95 7.72 0.88 8.85 9.35 8.75 0 9.43 10.1 11.7 3.23 9.53 8.27 10.8 13.5 0.88 7.2 11.7 9.91 9.58 7.84 8.94 0 4.5 2.78 9.03 6.14 7.25 1.42 11.6 11.8 1.81 4.01 6.03 2.59 9.41 11.1 6.03 4.51 9.29 8.68 11 12.3 10.8 10.1 7.8 11.5 8.95 10.6 11.5 10.2 10.5 10.2 9.73 10.8 2.81 9.87 9.25 7.07 5.58 0 9.37 7.05 6.53 8.7 8.81 17.2 7.99 8.24 0.88 8.81 4.92 1.81 10.3 1.42 9.07 8.51 9.97 4.28 8.25 2.12 11.2 11.7 10.2 9.52 10.4 3.35 0 6.88 6.21 5.36 8.49 6.92 7.24 7.62 6.05 10.2 0 11.1 5.83 1.42 10.6 12.3 6.83 10.9 10.5 11.4 0.88 9.5 8.39 11.4 8.98 9.14 8.16 10.4 9.78 9.02 5.56 9.92 8.32 10.8 9.77 11.2 8.36 11.7 9.67 10.5 8.92 10.2 11.2 10 0.88 8.96 10.2 6.51 6.7 10.6 4.96 10.3 10.9 4.88 3.46 4.43 9.21 6.32 11.7 9.67 9.91 10.5 6.83 11.2 1.42 9.27 9.96 4.4 6.96 0.88 5.24 8.04 8.59 8.43 8.53 4.96 11.7 11.5 10.2 10.7 14.3 15 14.3 13.3 9.79 10.5 13.1 4 15.3 8.08 14.4 14.2 12.9 13.3 13.9 11.9 13.7 11.1 14.7 4.01 12.8 12.5 9.4 13.7 13.4 13.4 13.7 13.4 13.3 12.7 13.9 13.9 11.9 13.3 11.9 13.1 13.7 12.9 9.01 9.07 13.6 9.01 14.8 14.3 13.1 11.1 9.75 13.2 13.4 14.1 14.2 11.6 14.9 1.82 2.59 0.88 8.74 6.07 13.2 1.42 0.88 14 10.9 9.15 8.12 9.62 9.8 13.5 14.4 13 12.9 14.1 13.9 12.2 13.4 12.5 13.5 13.8 14.1 6.24 14.7 14.5 13.7 12.9 13.5 14.3 11.6 10.9 6.75 14.1 2.94 12.7 7.03 7.28 12.5 10.5 10.9 12.4 10.4 1.81 8.71 10.4 10.3 5.21 8.77 9.09 9.26 10.4 10.4 5.3 5.27 6.55 6.01 11.1 3.93 3.57 8.56 0 9.4 5.45 7.44 11.8 12.8 0.88 9.23 7.5 8.44 6.95 10.9 12 3.67 11.2 9.45 12 9.35 9.15 10.9 6.75 7.94 10.9 9.54 8.73 5.99 7.83 10 9.22 12.3 4.67 7.88 6.14 6.27 5.04 4.22 2.94 7.42 12.7 6.29 8.65 7.34 4.88 11.6 7.38 6.79 7.3 10 10.5 4.75 5.86 9.19 6.42 1.52 5.83 5.81 7.95 5.14 4.01 10.2 5.11 4.84 0.88 1.42 8.12 3.23 3.67 5.68 4.71 2.59 8.94 7.34 10.1 7.22 7.79 9.67 11.2 12.2 10.2 8.88 10.9 4.01 8.25 9.37 9.36 9.12 10.5 12 9.43 5.83 9.03 8.29 6.01 7.52 10.6 7.86 9.67 8.98 7.41 11.2 8.31 2.17 8.29 10 8.96 9.57 6.24 10.9 3.57 2.66 10.3 7.49 8.19 8.73 9.17 9.42 7.49 9.76 7.19 8.83 7.94 8.34 12.1 9.78 11.7 0 9.06 4.28 8.66 9.64 6.7 8.23 2.59 10.1 7.56 3.23 7 0.88 7.34 10.5 10.2 9.8 4.28 10.7 4.01 6.63 5.77 6.89 3.23 7.2 4.28 9.94 3.93 10.2 8.92 0 6.24 6.07 4.22 7.96 6.66 6.17 9.52 5.94 7.88 4.51 10.4 8.68 9.61 7.71 9.6 11 8.49 8.52 7.69 5.21 8.58 6.4 6.03 8.81 2.12 9.84 6.92 6.88 3.57 6.82 0.88 9.46 9.55 5.45 8.69 6.84 9.61 11.6 10.4 10.2 8.17 6.12 7.09 6.84 5.56 4.75 6.33 4.01 11.2 14.1 7.77 7.91 8.04 11.3 11.2 13.6 10.6 7.87 9.73 8.83 8.06 8.97 6.87 10.6 10.5 8.66 11.2 9.44 10.7 8.47 9.38 5.04 0.88 0.88 6.27 9.12 13.4 3.76 12.8 13.4 4.61 9.63 5.82 4.71 10.1 9.7 10.2 10.1 6.3 11.8 2.59 3.67 4.4 1.42 11.7 2.12 0 12.5 9.69 9.33 9.58 12.5 9.45 6.98 12.3 7.69 8.06 10.6 10.2 10.4 10.2 6.85 7.15 7.14 4.08 2.59 3.23 6.29 12.7 9.02 9.07 8.57 10.4 6.87 1.42 6.32 7.97 8.46 8.18 1.42 2.59 8.14 6.21 6.22 8.61 8.28 5.98 5.27 2.37 0 6.16 8.91 2.94 11.1 8.62 5.27 9.21 8.69 6.66 6.16 2.78 6.14 7.91 3.35 8.11 9.54 8.3 7.55 0 7.81 7.96 6.42 4.51 8.24 10.9 4.22 7.01 7.22 11.7 11.2 8.98 11 9.89 8.84 8.72 9.49 9.2 9.4 10.1 9.69 2.94 6.8 1.42 3.23 5.18 4.66 5.24 5.63 10.7 4.22 8.06 3.57 9.07 3.85 8.64 6.29 2.78 11.2 1.42 4.88 1.88 3.09 9.69 6.57 5.72 8.75 5.61 1.42 7.75 3.93 9.42 11.7 5.45 1.81 5.59 0.88 3.46 11.5 6.14 6.43 6.16 2.59 0 0 3.76 6.92 1.42 3.09 7.53 8.17 12.4 0.88 9.41 3.24 5.21 5.75 7.23 4.56 6.25 2.78 12.1 3.23 10 4.67 5.54 9.48 0.88 3.35 7.24 9.58 11.1 6.53 9.05 1.42 1.42 2.37 0 4.45 2.59 10.3 7.86 7.51 6.53 10.3 10.5 13.8 6.07 4.76 8.42 12.6 3.09 2.12 9.69 9.08 9.67 8.94 10.2 8.38 9.23 6.9 8.19 11.1 10.6 7.55 12.2 11.2 8.6 5.96 10 10.4 9.81 8.44 10.5 10.4 10.1 13 9.12 6.71 6.36 10.4 10.7 5.3 8.4 9.52 9.31 12.3 9.08 8.29 9.66 3.35 9.54 10.1 5.98 7.83 9.83 9.85 9.4 4.75 11.3 12.5 8.51 4.34 8.73 12.4 3.09 5.45 6.45 2.12 8.63 9.92 9.47 9.54 8.63 7 7.36 8.84 10.8 3.23 11.1 9.02 9.27 4.56 9.38 8.95 9.04 10.2 10.3 10.3 9.06 7.99 8.37 6.96 9.75 9.34 6.1 0 4.28 4.28 10.1 8.15 9.17 8.01 7.45 7.08 10.7 8.69 9.73 2.37 9.83 9.49 6.03 7.83 10.3 5.14 5.96 8.93 7.67 11.6 5.88 9.47 10.1 5.77 10.6 0.88 10.5 9.63 10.2 9.65 10.9 11.2 9.08 9.2 10.6 8.32 11.6 9.42 10.9 10.6 1.81 5.61 11.9 10.4 10.7 9.11 8.53 9.63 4.5 10.9 7.97 7.26 4.84 3.93 4.51 6.24 10.8 10.1 9 5.75 9.79 3.67 6.47 2.12 6.38 7.45 8.72 9.98 10.9 10.9 8.7 9.45 8.03 10.5 2.59 11.4 13 10.4 9.28 11 4.92 10.7 8.68 13.1 9.06 13.6 4.15 14 6.27 4.4 1.81 9.46 12 3.93 11.6 10.8 6.35 6.3 7.65 9.14 9.68 7.15 11.1 8.26 9.07 9.77 8.79 12 10.4 6.76 8.53 9.18 0.88 8.76 4.66 2.12 7.56 2.12 6.38 5.88 8.61 5.27 3.23 6.17 5.07 3.57 4.01 8.19 3.23 11.1 8.67 3.67 4.71 3.46 0 0 9.5 11.7 10.2 8.27 9.97 2.12 7.65 6.14 8.44 1.42 9.95 7.34 6.88 3.58 1.81 7.94 2.37 8.77 1.81 3.09 5.15 1.81 10.1 9.72 1.42 7.36 7.76 9.01 8.03 2.37 7.38 3.57 4.34 6.25 0 5.22 4.96 6.14 4.8 6.88 10.9 3.23 3.23 4.08 4.89 6.14 0 5.98 0.88 8.49 3.09 4.22 10.4 2.12 3.93 12 8.52 10.6 0 4.28 9.9 11.1 9.32 10.5 7.45 4.61 1.42 5.14 3.35 6.36 7.16 8.8 10.4 1.81 7.31 8.58 11 10.4 12.9 7.3 8.61 10.3 11.1 9.73 10.2 9.57 7.9 10.7 9.5 6.45 8.51 5.45 12.7 7 10.3 9.43 11 8.03 9.19 8.89 3.09 1.81 7.45 0 7.54 9.5 9.83 10.1 11.8 11.7 6.16 10.2 7.81 11.7 0 12.1 11.1 8.5 9.83 7.73 11.9 11.8 12.5 8.37 8.14 3.93 9.43 8.66 8.91 7.51 9.07 5.45 9.31 13.8 12.2 11.6 10.5 12.5 10.6 10.1 12.1 10.9 12.4 11.7 10.7 11.7 11.2 13.3 11.4 8.72 5.94 10 10.8 9.75 8.91 0.88 12.9 7.73 10.9 7.7 10.8 10.4 13.3 8.63 9.27 9.9 8.7 11.9 8.71 3.67 7.31 6.38 10.9 8.37 11.7 9.15 11.1 10.8 9.46 7.98 6.79 9.59 4.92 14.9 10.1 10.2 7.58 8.1 7.85 3.76 11.8 7.4 7.75 14.4 8.49 8.41 12.6 0.88 7.56 13.8 8.38 10.6 9.37 8 2.37 10.6 9.22 11.5 10.7 11.2 12.2 10.6 11.9 9.64 11 8.1 11.2 11.4 11.8 10.2 10.5 7.94 9.25 12.4 11.4 9.05 11.6 11.3 11.6 11.8 12.6 8.22 5.18 0.88 10.5 9.37 12.2 9.01 5.98 11.1 6.75 11.1 10.8 12.1 4.4 8.59 9.79 1.42 2.59 2.37 1.81 1.42 5.39 1.42 2.49 10.9 3.51 2.12 1.81 5.46 11.2 11.8 6.4 10.9 6.43 8.85 8.74 8.41 9.72 8.18 9.72 10.7 4.96 6.58 10.6 10.2 3.93 4.8 9.38 7.08 9.96 9.69 9.5 8.66 10.4 10 9.92 8.68 10.7 4.75 14.4 3.85 8.35 11.1 12.2 6.46 12.2 9.73 9.76 9.24 12.2 9.89 11.3 8.88 9.71 9.19 8.75 8.91 10.4 2.78 7.98 8.57 8.36 5.39 11.3 9.49 7.37 5.61 1.42 2.12 10.1 9.47 2.12 7.37 9.01 11 10 10 8.49 9.98 7.79 11.3 11.4 8.5 9.99 9.57 10.2 9.42 9.27 10.7 4.34 2.12 12.1 13 9.85 9.3 10.1 8.5 10.1 11.5 7.13 7.44 8.84 11.2 9.39 12.8 10.2 9.09 9.49 7.76 5.21 5.61 6.69 6.07 12.5 8 7.28 2.37 4.71 7.74 10.4 0 0 11.3 0 11.5 9.36 7.31 4.61 12.6 9.65 10.2 7.24 9.28 9.76 6.45 9.68 8.87 10 10.5 10.2 10.4 0.88 7.51 12.6 6.12 14.2 1.42 3.35 8.91 11.9 8.32 6.25 10.4 9.92 10.1 6.35 11.4 8.69 11.6 8.97 7.34 3.09 7.53 13.6 11 6.57 8.82 0 13.3 8.59 7.26 8.55 8.18 10.3 3.67 9.81 10 5.18 8.33 11.1 10.2 11.6 3.23 9.15 7.19 11.5 1.81 6.65 9.31 8.58 5.56 8.81 10.2 10.7 10.2 0.88 9.59 7.25 10.1 11.4 4.96 9.47 0.88 6.95 11.8 10.6 9.37 7.91 9.77 4.51 10.6 3.57 8.02 4.45 0 12.3 10.4 11.7 10.4 10.9 8.6 11.3 11.3 11.9 8.98 12.8 11.8 10.7 7.55 14.8 3.76 10.8 8.58 11.6 8.22 5.27 12.1 10.9 5.27 6.75 5.11 7.11 16.1 10.1 3.93 6.03 10.2 9.88 7.97 7.7 10.8 10.3 6.27 12.7 15.7 10 5.81 4.75 3.46 7.31 9.3 8.14 8.31 10.2 6.73 11.7 8.52 5.14 1.81 7.79 10.4 10.4 6.39 10.3 7.53 11.6 11.9 7.18 3.93 13.1 12.2 9.86 11.5 10.8 8.61 11.8 5.42 9.83 11.3 7.76 12.2 2.12 15.1 12.5 11.2 8.07 13.9 13.6 9.1 10.1 12.5 2.59 14.6 7.45 9.74 9.75 9.8 15.3 6.75 8.81 8.22 6.91 6.87 6.79 8.19 7.17 14.3 10.2 11.4 9.01 0 8.22 0 1.42 6.17 11.4 7.51 2.12 4.45 4.69 11.3 8.97 11.2 1.42 10.2 0.88 8.96 10.7 9.77 9 6.9 7.71 10.9 10.4 11.5 10.9 10.3 4.4 9.33 10.7 9.28 9.03 8.03 6.22 6.75 2.78 5.77 7.38 8.75 7 12.5 5.18 5.79 3.93 5.77 7.11 4.75 8.17 8.22 3.67 5.77 7.87 11.1 4.08 9.84 0 5 7.95 12.8 5.88 6.22 2.12 7.01 9.48 7.69 6.42 8.3 0 8.27 7.55 3.76 2.12 6.65 9.6 7.43 0 14.7 3.46 7.76 1.42 6.82 5.07 4.4 7.87 7.36 3.57 11.1 1.81 0 9.92 5.98 11.2 5.81 5.01 4.37 6.14 1.26 2.37 5.21 4.61 5.07 5.58 0 6.66 4.96 1.42 5.48 5.55 2.94 4.28 7.19 11.3 8.41 6.55 10.3 2.94 6.25 11.7 4.96 6.25 2.37 5.33 9.48 7.88 0.88 4.75 10.3 7.51 7.62 2.94 6.03 4.88 7.67 8.12 5.04 7.77 3.85 9.2 6.46 8.24 10.7 6.3 1.42 8.44 0 12.2 0.88 13.7 0.88 14.1 14.3 13.7 2.37 7.15 11.1 9.33 8.51 11.3 12.2 10.2 9.24 12.1 11.4 11 12.1 1.42 10.7 11.6 11.8 10.1 11 8.46 12.2 11.2 12.1 12 8.85 1.81 0.88 9.93 2.59 10.3 5.18 10.5 9.34 9.7 13.8 3.85 9.11 11.3 10.6 12.2 10.1 10.4 12.4 1.42 10.3 2.12 11.3 12.3 11.7 11.2 12.9 10.6 8.8 10.4 11.4 11.2 1.42 10.2 9.86 10.9 8.56 12.2 12.1 8.29 9.68 10.7 9.52 11.8 13.6 11.7 11.2 11.4 7.07 9.3 8.89 6.07 8.63 10.4 7.34 14.3 12.5 6.3 4.3 7.5 4.45 7.72 7.37 10.3 9.46 10 7.16 7.83 11.5 13.2 5.98 8.89 13.5 9.95 10.3 6.03 9.11 9.52 9.65 10.3 9.88 7.77 2.12 8.53 7.24 4.01 0.88 3.85 3.46 4.45 5.24 5.94 3.46 2.94 9.16 10 4.34 11.3 4.71 1.81 14.2 6.1 6.97 10.3 5.04 9.77 3.93 13.7 10.2 8.84 9.74 7.16 8.99 14 6.82 11 11.3 12.9 6.47 14.4 13.3 11.7 14.5 6.47 12.6 8.93 5.92 12.5 8.37 9.33 9.82 6.81 10.2 10.4 5.58 9.47 7.35 13.6 8.42 10 7.94 8.95 8.52 7.46 8.76 6.3 7.48 7.73 9.51 9.84 8.98 10.1 9.02 9.21 6.14 8.59 8.45 8.55 8.46 9.01 7.48 9.14 6.54 7.2 9.05 8.65 6.46 8.56 4.28 9.22 5.92 7.02 8.74 9.38 9.74 9.29 6.5 1.81 10.3 5.3 9.24 12.2 9.65 4.15 3.09 7.25 8.16 4.24 12 7.75 1.42 3.46 2.59 2.59 0 3.85 8.21 9.46 6.9 7.47 9.49 7.67 8.12 6.55 9.76 9.43 6.08 6.57 9.72 8.73 10.9 2.59 12.2 10.1 8.95 8.94 6.03 7.42 7.2 5.39 9.6 7.15 11.9 8.89 7.2 7.35 6.22 6.03 8.76 9.46 7.69 9.53 7.73 7.96 8.25 8.65 7.03 9.55 8.16 11.4 9.91 7.73 10.6 8.58 12.5 11.9 4.4 7.86 5 7.67 11.6 11.8 6.7 7.45 6.7 8.82 4.45 8.9 7.34 9.18 6.75 9.43 8.22 7.68 4.4 6.38 4.08 8.06 7.76 4.88 12.7 10.9 8.99 11.1 6.71 11.9 9.13 10.2 6.34 14.2 8.15 11.6 7.43 6.14 8.31 13.2 8.21 10.8 11.4 8.52 12.4 5.3 4.71 3.57 8.41 8.22 12.8 4.66 10.3 10.2 10.3 8.43 10.2 10.9 12.7 12.8 7.93 3.76 10.5 6.66 8.3 9.47 3.85 5.77 8.44 10.2 8.83 9.22 10.1 5.9 4.75 7.92 12.4 9.06 9.92 10.6 9.61 7.49 10.2 7.17 9.39 10.3 9.69 10.2 9.06 11 9.46 8.34 8.88 9.23 10.4 6.21 12 10.5 8.23 6.72 10.3 10.4 8.94 9.11 10.8 6.24 9.86 11.7 4.84 8.92 10.8 9.27 10.2 10.3 9.3 4.01 10 8.11 10.5 10.6 9.56 8.72 9.88 7.73 10 7.72 9.2 10.2 7.12 9.88 9.57 10.8 10.1 9.89 9.14 8.11 8.77 8.07 8.89 4.22 8.5 8.56 8.02 7.5 5.11 9.64 9.82 11.3 11.9 6.85 6.93 9.59 9.68 10.9 10.9 8.01 10.5 10.4 11.2 9.6 8.96 3.23 6.42 9.1 8.29 4.8 7.72 9.12 7.38 9.22 11 7.78 13.3 8.28 7.34 0.88 6.59 8.14 13 3.23 11.5 9.02 7.46 9.71 6.78 7.91 7.53 6.82 9.32 9.81 9.35 9.53 9.5 11.2 13.4 4.84 9.2 11.9 10.8 6.39 7.96 8.02 9.12 0.88 10.5 0 11.3 5.27 10.5 5.11 7.05 0.88 7.23 5.96 5.3 1.81 7.05 7.28 9.16 1.42 7.74 9.91 7 8.5 7.9 9.22 8.6 10.8 6.58 2.12 3.35 0.88 10.3 9.5 6.12 7.42 9.36 11.4 6.66 6.36 10.2 10 10.3 8 7.84 9.8 11.6 8.99 8.94 9.21 9.38 11 8.23 8.2 8.36 11.7 10.4 6.97 7.61 6.71 7.4 7.56 8.88 9.23 7.04 6.29 8.82 10 7.92 12.1 1.81 5.45 7.34 5 8.04 6.27 9.48 8.14 7.61 8 6.57 8.32 8.03 9.15 9.51 5.88 9.07 7.96 0 9.62 12.8 8.62 8.22 10.3 10.3 8.86 7.7 10.4 7.12 10.2 7.24 8.5 11.5 7.64 7.6 10.1 10.6 7.28 3.1 7.54 7.85 8.4 7.46 9.42 8.58 5.24 9.21 8.78 11.3 8.85 9.97 6.55 7.07 8.18 6.46 8.07 10.6 8.93 10.4 8.2 8.09 5.56 9.56 10.2 7.83 8.17 7.22 9.72 9.16 11.1 9.37 11.2 8.87 6.94 9.11 9.36 9.78 11.8 10.6 10.6 3.93 8.43 9.44 7.88 10.5 9.78 8.08 7.7 9.35 8.06 6.84 10 7.95 8 5.98 1.42 7.14 7.99 5.83 7.92 0 8.91 2.78 9.78 8.93 8.83 6.43 3.46 4.96 8.32 7.62 9.6 7.05 9.14 8.54 8.28 9.32 4.71 8.06 7.2 5.68 8.38 8.84 8.1 8.48 1.81 6.78 10.4 6.87 4.22 7.36 12.3 8.77 8.98 9.27 8.26 8.46 9.07 5.48 10 1.42 8.46 8.34 8.95 8.96 7.24 11.8 8.52 11.3 7.03 3.67 5.48 7.87 8.97 3.85 7.97 0 5.98 6.99 3.23 6.87 9.08 9.18 9.55 7.34 10.5 9.19 10.2 1.42 10.1 4.15 6.09 9.35 9.59 1.42 8.91 4.51 5.79 8.44 6.42 8.45 8.88 0 9.35 9.1 1.42 4.56 6.92 2.37 5.24 0.88 8.44 8.96 3.67 5.92 8.89 8.03 9.79 11.3 5.5 8.95 10.1 5.94 8.53 6.88 10.2 8.63 6.64 9.42 11 6.16 8.28 8.49 10.2 11.9 11.9 7.96 7.44 11.1 10.9 8.41 4.51 7.14 9.12 9.07 6.29 9.28 10.8 10.1 7.2 4.88 0.88 9.91 7.73 8.97 9.6 3.76 9.57 11.4 8.62 13.5 8.33 2.59 5.36 7.31 9 7.24 0.88 10.6 2.37 9.24 4.66 7.92 9.86 10.4 1.42 8.16 9.41 6.44 9.85 8.46 0.88 11.1 4.8 8.28 5.7 7.55 8.2 11.5 6.58 6.2 5.48 8.1 7.64 7.26 8.93 6.19 6.93 6.55 8.56 9.62 8.21 3.23 5.68 8.79 7.83 9.09 7.7 2.12 6.45 4.88 12.1 1.42 2.12 7.67 10.2 6.55 8.9 7.06 0 8.74 10.6 9.54 8.44 9.46 9.12 10.4 8.24 8.95 7.42 7.54 9.36 9.13 8.38 9.76 7.2 2.37 0.88 2.59 6.47 7.52 6.9 9.62 2.17 6.62 3.09 1.42 7.92 9.43 12.9 3.57 9.41 5.9 8.08 10.1 0 9.11 6.13 6.05 4.34 5.11 7.17 9.8 5.94 9.91 10.6 7.47 9.84 11.1 10.1 7.24 10.5 10.2 10.7 8.77 11.1 6.11 8.7 6.81 9.16 8.19 8.69 7.75 9.37 9.41 10.4 5.81 8.23 9.06 10 8.31 8.74 10 8.16 8.59 3.93 11 9.02 4.51 9.17 9.97 11 10.7 8.28 6.94 8.39 5.79 3.23 12.7 9.86 8.72 9.75 11.1 8.38 8.09 9.46 9.85 3.76 10.2 9.96 3.93 5.68 6.36 8.72 9.52 9.23 4.71 9.37 7.6 8.52 9.61 9.07 6.73 8.79 9.97 5.11 10.7 9.76 3.93 7.5 10.6 10.3 10 9.4 9.75 9.76 5.92 9.8 11.5 6.7 9.12 11.9 5.24 8.65 6.81 7.46 6.55 5.75 8.76 4.84 10.5 8.38 3.76 7.51 7.49 10.6 7.32 3.85 11.8 9.42 6.94 10.5 4.45 10.3 6.8 11 11 10.1 3.57 10.3 6.38 8.85 7.16 4.4 11 8.19 13.3 9.77 7.81 9.4 9.86 6.85 9.89 6.32 6.32 8.54 8.09 3.67 12.5 8.83 11.3 2.94 6.1 3.35 0.88 2.78 8.48 7.73 8.13 9.86 6.3 4.84 4.55 6.46 6.01 10.1 8.03 4.15 8.65 10.4 9.45 5.77 11 7.68 12.5 12.1 8.94 13.7 10.1 13.3 8.48 7.75 7.59 5.94 8.64 11.2 11.5 9.75 7.53 5.79 6.46 3.23 11.6 9.86 9.23 8.41 8.11 10.7 4.24 4.08 6.79 0 12.8 10.2 9.39 7.91 9.32 0 12 14.2 6.9 1.81 2.12 11.3 4.08 8.59 9.24 8.43 10.8 12.4 15 3.57 6.05 5.96 6.72 7.74 12.1 12.9 10.3 6.85 4.45 11.9 12.1 9.51 9.07 5.92 6.81 2.94 0 11.5 10.7 8.09 9.5 8.02 10.1 10.8 7.23 7.62 9.2 8.36 10.7 6.29 10.5 9.83 9.88 9.68 9.22 8.15 10.2 8.02 10.4 10.2 12.5 4.88 8.7 7.71 9.03 9.78 7.77 9.74 9.01 6.84 8.55 3.76 5.7 10.2 9.57 11.4 6.76 10.4 10.8 9.07 10.8 12.3 11.1 3.09 2.37 4.75 13.5 9.68 11 6.85 8.77 9.01 10.4 9.8 3.63 10.2 11.4 11.3 10.9 12.4 9.59 6.95 5.04 8.16 2.12 6.91 6.32 5.7 11.7 9.02 2.59 7.92 5.72 8.31 2.37 6.83 3.93 9.14 10.9 9.29 8.04 8.5 8.91 12.1 3.93 10.1 3 8.18 8.52 10.8 9.77 7.79 10.1 10.5 11.4 12.1 7.93 8.85 11.6 9.6 11.3 1.95 8.62 9.27 4.29 10.5 8.9 8 10.5 8.99 9.05 9.58 8.04 8.92 0 10 8.79 9.96 11.6 14 8.33 9.32 6.86 11.8 8.64 6.19 10.4 10.5 10.9 9.63 11.8 8.68 11.7 12.7 8.86 11.1 12.3 12.7 5.07 12.5 10.9 7.11 10.7 5.42 10.5 9.92 1.42 5.24 0 11.7 12.1 12.5 4.45 9.22 2.59 12.8 10.6 10.9 10.7 6.32 8.91 7.09 10.1 11.1 11 10.1 9.86 9.16 12.6 5.56 8.74 8.59 8.38 9.84 8.55 6.57 0 10.5 1.81 3.46 3.57 7.12 4.28 7.2 6.33 4.08 6.09 6.46 3.09 4.92 0.88 3.93 0 0 11.2 3.46 10.4 10.6 10.1 8.1 8.57 2.37 9.33 3.67 9.43 7.24 1.81 9.55 10.7 7.7 7.19 8.27 5.27 5 8.91 6.68 9.21 0.88 7.56 9.99 8.32 6.03 9.84 2.94 3.79 2.78 4.08 5.04 0.88 10.2 7.14 11.3 9.02 7.69 8.86 9.58 2.59 7.55 3.23 3.09 2.12 1.42 8.77 4.51 3.57 6.88 7.9 6.02 9.97 11 0.88 7.37 10.1 10.4 9.66 8.17 0 6.54 8.49 10.9 8.36 0 9.16 8.99 7.72 7.4 6.03 5.65 0 1.42 10.6 0 9.97 8.61 9.88 1.81 10 8.49 9.11 8.06 11.6 8.64 0.88 4.66 8.85 7.16 6.76 9.97 7.79 8.45 7.48 7.37 10.1 8.44 6.16 8.17 5.61 10.2 7.03 7.51 10.8 9.75 10.7 6.21 9.64 10.5 3.09 6.45 7.94 8.66 9.5 10.2 0.88 5.21 7.69 7.4 3.46 6.69 10.6 4.88 9.77 12.2 7.88 6.36 8.24 12.2 6.89 7.63 1.81 4.01 9.96 5.68 10.4 3.35 3.46 1.42 5.11 2.94 4.15 4.15 0.88 7.28 10.2 7.65 8.69 10 9.45 6.36 8.21 8.47 1.81 10.8 11.7 7.97 7.68 4.96 4.34 0 6.99 2.59 8.62 10.9 6.32 7.2 3.93 10.8 11.1 10.3 7.55 7.15 4.51 8.26 5.45 0 8.83 8.05 2.94 8.29 10.6 7.06 8.08 10.6 8.67 1.81 7.22 7.25 9.71 8.43 8.06 8.38 11.3 8.46 9.04 8.89 9.28 8.61 5.92 2.78 12.7 3.35 6.54 9.89 2.12 7.66 7.42 9.9 11.1 7.58 9.93 6.88 4.84 9.45 10.2 0 9.48 5.99 11 7.63 8.1 4.4 9.12 10.1 8.35 9.65 8.99 11.3 9.35 9.79 9.34 9.52 9.46 8.93 7.37 8.47 7.49 6.43 10.8 9.27 10.6 9.1 9.91 7.92 3.93 9.22 6.51 10.6 7.67 6.65 10.3 9.6 6.63 10.5 7.44 4.56 7.37 4.15 10.5 7.75 8.99 7.49 10.3 2.12 4.56 7.42 10.2 10.8 11.9 5.7 8.79 7.61 6.16 5.61 5.14 3.09 9.19 7.49 5.94 5.27 6.64 6.14 5.04 5.24 1.81 7.55 11.6 11.1 8.15 7.94 0.88 9.48 10 8.63 8.92 9.11 9.08 3.35 10.5 8.54 2.94 4.15 7 10.3 9.09 7.77 10.3 8.92 7.34 9.87 8.85 6.3 7.33 9.6 7.78 10 8.93 9.95 7.1 11.3 10.4 8.98 9.83 8.97 7.86 8.43 3.93 8.16 11.7 9.01 4.71 8.99 5.68 8.89 9.73 7.11 10.1 6.01 9.91 0.88 7.49 9.22 8.9 9.57 9.92 9.29 8.46 7.87 9.87 7.45 6.92 7.49 7.95 10.4 9.65 8.6 10.1 1.42 9.81 10 8.84 11.2 7.14 7.73 9.02 9.88 9.64 10.2 9.72 11.3 10.4 9.26 3.85 8.87 7.9 8.44 8.12 4.22 7.67 8.83 10.2 8.22 10.3 8.01 9.35 9.14 10.1 1.42 5.14 10.8 11.2 6.65 9.48 10.7 11.9 5.88 9.81 7.72 8.7 4.08 8 11.1 9.06 7.91 7.5 5.42 10 6.57 10.2 9.89 8.02 9.94 5.18 7.29 9.09 8.6 6.43 6.14 7.87 5.61 9.85 5.92 10.2 9.29 2.78 6.6 2.78 6.8 10.7 8.95 11 7.25 6.83 7.45 10.7 8.63 7.3 9.3 11.8 6.6 5.42 4.01 11.1 7.47 9.72 8.56 5.53 9.69 8.12 9.67 6.91 6.05 11.7 8.45 7.83 9.52 7.86 8.37 10.6 9.81 7.95 6.82 7.47 6.14 8.99 10.3 10.5 0 8.49 8.32 5.24 11.9 9.46 9.5 6.7 9.2 2.12 10.1 8.58 7.67 4.84 11 11.3 7.82 3.35 2.12 8.53 8.87 10.3 4.45 5.11 9.46 11.4 4.71 0.88 0 4.15 11 9.88 10.9 12.1 12.1 7.68 4.96 0.88 12 4.28 1.84 4.84 8.37 9.59 2.94 3.47 6.9 9.57 1.42 3.85 3.35 7.2 5.96 3.93 4.08 9.92 10.9 9.45 7.2 3.46 11.6 9.52 10.8 8.02 12.5 10.5 11.5 10.8 4.61 2.94 3.58 10.6 7.67 8.28 8.08 8.34 8.42 8.05 4.92 9.56 5.11 5.61 9.11 8.71 9.48 14.2 6.1 9.52 5.3 4.51 11.4 10.6 7.37 8.26 7.04 2.78 8.48 10.7 8.12 6.1 4.75 3.93 8.5 10.2 8.07 8.98 7.65 12.5 2.12 7.59 7.92 3.67 6.09 9.11 8.08 5.14 9.42 0.88 10.4 9.98 3.46 6.68 3.93 5.9 8.29 7.63 9.47 8.27 6.49 6.87 7.85 9.39 5.5 6.5 7.94 8.16 7.82 10.2 7.67 7.97 7.49 8.38 8.82 8.89 9.14 9.45 12.5 9.42 9.75 11.2 8.82 9.87 8.62 7.68 7.8 9.86 7.37 11 9.51 8.18 7.31 11.7 7.28 10.8 10.6 5.81 10.1 4.61 9.59 8.14 11.5 10.1 10.5 6.59 8.85 7.95 9.63 7.84 9.11 8.29 9.03 7.53 9.47 10.2 9.05 9.41 8.38 8.44 9.83 8.45 11.4 6.07 6.78 8.98 3.09 8.2 11.2 8.47 8.33 8.98 10.9 6.78 10.9 1.81 7.97 9.91 7.56 6.82 7.47 9.38 2.12 8.27 7.93 7.74 9.12 7.44 8.28 6.25 9.12 8.4 8.74 5.24 6.09 10.5 6.83 0.88 6.07 3.57 9.71 8.58 8.92 3.67 1.42 11.2 10 10.2 5.86 10.4 3.93 6.53 7.06 2.78 8.4 8.83 9.31 9.43 8.13 6.75 10.2 10.8 8.41 6.84 7.96 9.02 8.3 9.49 9.67 8.4 10.4 10.4 7.83 7.58 3.85 7.4 7.13 2.78 9.66 9.87 13.5 10.7 4.92 10.9 1.81 8.56 10.1 8.31 9.04 0.88 2.59 5.04 9.04 8.81 8 12.4 10.6 7.83 2.56 8.74 1.42 7.44 11.8 6.62 7.23 6.82 8.41 9.24 7.6 8.53 7.88 8.74 9.35 3.46 10.3 2.12 4.66 9.67 9.26 9.41 11.3 9.88 10.5 10.6 10.4 6.57 6.27 8.94 3.46 7.85 8.33 3.23 7.42 12.4 10.2 7.46 6.79 9.63 10.1 6.64 8.72 5.92 10.9 8.28 9.38 9.22 4.96 11.2 8.88 6.59 8.25 10.4 7.21 8.62 8.75 6.63 8.54 11.7 4.34 3.35 10.7 6.22 5.04 1.42 8.49 4.4 4.92 2.59 10.5 0 5.33 9.25 8.32 8.06 5.96 0 9.46 8.31 9.17 12.4 10.5 2.9 12.3 11.3 9.37 11.3 8.95 10.7 13.1 7.63 10.2 9.37 9.93 8.51 8.8 7.24 8.76 9.01 10.8 5.58 4.28 3.23 10.3 9.21 8.89 4.75 11.6 2.59 7.19 8.73 10.7 9.97 10.8 10.3 12.1 7.19 5.99 10.5 3.93 9.83 10.6 9.72 3.23 9.08 7.31 7 3.09 5.79 3.93 9.9 10.1 9.62 6.29 6.03 7.87 6.98 5.63 9.67 10.1 2.59 9.04 6.22 10.3 8.9 9.95 10 8.67 8.61 12.6 10.2 9.93 8.6 12.8 13.4 10.1 12 11.6 12.4 12 12.8 11 9.65 5.56 10.9 10.7 7.79 11.3 5.39 8.22 10.6 8.56 8.32 10.9 12.3 0.88 7.31 10.6 7.38 9.04 9.68 3.85 12.9 6.33 10.5 9.38 9.81 5.11 7.78 0 3.67 14.3 7.5 5.24 5.83 11.1 7.31 10.1 11.4 7.22 10.1 12.1 10.4 8.38 9.18 8.7 10.7 9.97 10.1 8.98 11 4.61 8.79 6.24 10.6 0.88 7.3 7.48 6.77 8.04 6.8 0.88 0.88 12.7 9.32 10.2 13.2 9.46 12.3 11.9 6.99 11.6 8.38 5.2 9.43 11.8 9.17 10.8 9.79 4.41 9.66 4.71 9.95 4.8 4.8 6.61 2.94 7.64 5.53 7.24 5.68 10.7 5.11 8.73 8.54 6.54 6.16 8.96 11 11.5 9.68 11.2 3.23 3.67 1.42 5.11 10.8 9.66 2.78 11.7 9.76 4.75 9.03 7.51 8.86 4.56 8 9.29 1.42 13.6 9.07 9.2 5.24 9.56 5.33 11.4 9.82 7.37 8.65 10.5 1.42 0.88 6.05 11.4 9.11 1.81 10.9 9.73 8.83 6.17 10.6 6.75 7.07 8.47 7.18 5.48 10.5 3.57 8.18 10.8 9.55 9.74 8 8.55 7.15 8.5 8.09 10.7 10.3 10.6 2.78 0 7.53 11.5 10.4 11.5 11.5 8.98 11.4 12.2 12.4 11.7 12 10.5 11.1 9.9 10.1 10.2 12.1 10.8 10.9 9.77 10.2 10.8 6.8 11.6 9.74 11.8 8.2 10.6 10.1 10.1 2.12 12.1 9.51 6.72 10.1 9.07 7.02 11.8 9 8.87 11.7 10.9 10.3 8.91 7.31 11.8 9.99 8.89 8.89 7.7 7.34 8.35 8.17 10.6 13.5 9.25 4.8 12.6 9.49 10.8 2.78 2.12 4.61 10.8 0.88 0.88 10 9.86 11.4 5.04 7.4 8.83 8.73 6.19 6.93 10.6 9.08 10.4 6.29 5.18 6.72 5.42 6.94 9.8 6.16 8.39 7.15 11.2 8.59 5.68 0 9.48 5.58 6.81 3.93 3.93 5.5 3.39 0 7.67 4.22 8.62 10.5 7.6 11.3 8.78 10 11.1 7.45 3.35 7.7 10.5 11 6.29 8.99 9.39 7.12 7.89 8.46 8.2 4.34 6.07 9.42 10.7 12.6 6.14 4.22 7.16 9.9 7.28 6.95 9.05 3.23 10.2 11 10.3 1.81 9.34 10.8 9.7 7.87 5.42 7.18 4.56 10.7 8.98 8.47 7.86 8.9 8.25 9.59 3.46 6.55 2.12 10.9 8.46 8.12 1.81 5.58 9.57 9.66 9.02 0 5.33 2.78 5.45 3.09 4.51 12.5 8.98 8.39 8.74 10 7.86 2.37 7.05 8.79 9.71 4.56 2.12 5.96 6.86 7.66 7.21 9.78 10.8 10.9 10.1 8.32 7.28 10.2 9.53 8.82 11.3 7.1 10.8 5.65 7.77 10.9 9.34 9.5 13.7 9.55 6.55 6.78 5.56 10.9 5.18 9.65 9.18 10.6 5.79 5.14 7.52 6.51 10.1 10.6 8.8 5.03 7.24 8.88 8.97 11.5 9.67 7.83 7.73 9.81 7.25 8.79 1.81 7.45 8.42 7.01 9.08 10.2 8.72 7.83 8.91 5.07 8.5 9.39 9.04 10 8.84 6.16 4.45 7.44 4.34 10.3 7.49 12 9.36 6.76 6.65 13.2 2.59 5.5 10.1 7.08 10.2 14.2 5.72 8.18 9.68 8.17 5.48 11.3 10.7 6.27 12.1 9.44 5.7 9.27 9.41 10.6 0 9.5 11.2 11 9.37 10.3 5.08 8.17 10 10.5 6.05 11.2 7.82 8.22 5.27 7.51 9.54 9.67 11.4 10.7 9.41 10.2 4.71 10.8 5.11 6.39 8 8.87 8.61 7.06 2.59 9.96 7.72 9.45 10.6 9.81 8.35 4.28 9.14 10.6 7.31 9.01 8.87 8.41 10.1 0 7.69 2.59 7.6 5.92 6.03 10.5 11.2 8.72 8.73 11.9 2.78 10.2 10.1 7.6 9.83 11 8.08 0 11.1 10.7 10.9 10.4 7.86 6.32 5.63 11.5 6.94 10.7 7.01 0.88 5.68 10.8 9.31 11.1 8.65 10.4 12.1 9.01 6.86 9.25 9.8 10.9 7.57 10.3 8.44 8.87 7.65 10.6 5.21 9.36 7.43 3.23 8.67 10.8 9.79 10.1 7.15 8.08 5.75 9.69 5.04 8.33 4.28 7.08 8.4 10.4 8.42 9.55 9.83 6.39 8.42 6.16 8.71 8.29 8.28 9.68 6.05 6.66 9.13 8.52 8.66 8.87 9.22 8.2 11.9 8.59 11.2 13.4 8.28 8.19 10.9 10.3 7.37 2.37 9.58 3.23 5.58 0.88 5.07 11.1 9.45 8.38 3.47 7.1 2.59 11.1 8.45 8.91 8.99 9.34 7.52 7.9 4.8 10.6 3.46 8.54 9.48 11.1 6.53 6.58 7.47 8.17 10 8.22 8.36 12 10.8 4.96 5.04 9.49 1.42 5.18 7.58 9.18 0 9.12 4.71 7.73 9.29 8.49 7.87 6.1 7.94 9.03 5.3 9.74 9.48 7.51 7.84 11.3 12.1 8.82 8.1 8.6 10.8 9.39 5.33 5.14 7.69 8.52 9.17 11.1 9.62 9.77 4.65 11 8.81 10.1 4.45 11 9.79 11.1 9.48 9.97 1.42 7.76 12.6 8.81 9.93 3.93 7.16 8.33 4.75 8.37 3.93 3.67 7.04 6.47 1.81 5.21 3.76 6.58 5.53 10.5 2.12 8.97 11.2 8.5 10 8.93 5.3 7.4 8.21 8.63 9.21 8.26 11.4 6.1 7.47 12 8.6 5.72 10.8 8.85 4.88 7.56 5.04 9.92 1.42 8.77 6.53 0.88 8.97 7.11 6.07 9.24 9 10.2 10.4 7.3 6.17 2.78 11.7 8.8 3.88 8.12 9.01 6.96 10 11.4 11 5.83 8.33 10 9.87 6.86 10.9 9.1 8.64 9.83 8.43 2.37 10 10.5 8.28 9.32 8.44 8.61 10.4 12.4 10.6 8.66 6.99 10.9 14 7.42 3.76 11.1 7.75 2.94 9.32 10.5 10.4 7.11 9.54 4.45 9.82 10.6 7.68 9.03 8.24 5.18 12.3 11.2 4.61 3.93 8.25 7.09 11 6.78 11.2 1.42 0.88 7.52 9.04 8.36 7.74 0.88 3.67 7.34 9.87 7.9 5.18 7.47 9.53 9.84 10.8 10.6 7.18 2.12 7.04 11.1 8.72 10.9 9.67 12.2 9.68 8.91 11.4 4.92 11.1 8.64 10.1 10.5 10.2 3.23 10.7 8.84 10 9.01 0.88 11.3 9.1 6.58 9.9 7.11 9.76 10.9 8.97 3.63 12.3 10.5 10.4 7.63 3.67 11.7 13.6 1.81 8.91 5.36 10.4 7.18 9.41 1.42 6.43 2.12 6.3 7.05 5.53 8.4 11.3 12.4 8.65 0.88 12.2 8.13 9.05 8.51 3.09 8.66 9.94 3.46 4.63 0 8.79 6.86 8.64 10.4 6.27 9.69 10.3 10.6 9.57 11.4 11.3 5.21 7.65 9.76 3.85 9.72 8.11 5.42 0 5.29 0 11.4 8.11 10.4 5 8.46 10.1 11.4 3.93 4.66 3.93 7.45 7.68 5.27 9.31 9.76 7.15 10.6 8.12 3.23 8.65 11.7 8.28 8.25 7.05 8.71 6.46 11.4 6.31 10.7 9.58 1.81 8.06 9.3 3.09 10.5 9.89 10.6 11.1 9.32 9.81 9.78 4.75 5.24 6.75 9.17 2.37 11.8 11.7 2.59 11.7 8.72 6.75 5.04 8.68 6.97 12.1 8.03 7.29 8.04 8.93 7.64 8.82 10.8 9.49 12.3 3.93 9.97 3.57 9.14 8.86 8.72 7 11 13.2 10.8 2.94 12.6 5.39 5.68 9.95 7.88 8.84 8.84 8.61 8.89 8.09 0.88 9.89 8.62 7.44 9.05 8.38 7.22 8.11 9.05 11 4.96 8.96 10.6 10.8 3.57 9.89 8.43 7.1 3.35 5.24 7.51 9.14 6.92 7.28 9.3 9.66 10.3 11.6 6.55 8.59 9.85 1.42 8.93 10.4 11.7 7.09 10 6.76 8.16 6.77 9.42 11.5 10.4 6.82 2.37 13.5 10.1 8.24 9.01 5.07 11.8 9.21 9.63 10.6 9.75 10.2 10.5 11.2 10.6 8.79 8.41 9.21 8.74 10.1 9.04 6.78 6.63 11.3 10 6.33 9.34 9.69 2.37 9.36 8.56 6.94 9.91 11.5 11.9 10.6 8.92 10.4 8.88 10.6 11.1 9.86 4.45 8.61 9.54 11.2 10.6 7.23 9.88 5.82 10.3 7.53 8.28 10.2 12 6.38 11.2 9.97 6.01 8.85 12.3 9.93 7.95 9.09 12.8 11.1 2.59 12.5 11.5 5.48 1.42 9.59 8.99 13.7 13.1 9.32 7.57 7.13 8.37 6.3 11 12.6 10.7 6.64 11.6 7.01 6.51 8.45 5.51 6.57 0.88 9.31 6.14 9.46 10.9 7.67 4.75 10.4 10.3 5.9 10.9 10.3 6.55 13.4 10.2 7.98 8.44 10.7 9.67 11 6.71 5.86 10 4.34 10.1 9.64 10.6 8.94 11.4 9.48 7.58 9.54 10.8 12.2 9.45 8.74 9.99 9.51 11.1 7.34 12.6 12.9 10.2 5.58 10.4 10.5 9.17 9.44 11.2 8.14 10.6 8.31 9.94 8.26 11.5 10.4 9.56 11.2 9.77 9.33 11.8 12.7 4.34 11.2 9.68 9.57 9.62 9.04 9.93 10.2 11.3 7.09 5.61 7.6 10.9 9.38 9.94 12 10.7 0 8.84 4.8 9.28 6.21 10.1 9.29 8.94 9.26 11.6 6.85 9.05 6.05 13 3.67 5.56 9.99 9.22 10.1 10.1 9.63 5.56 10.7 9.83 8.94 11.3 6.07 11.2 11.7 7.89 9.58 11 5.83 13.7 7.99 7.31 7.79 11.2 6.3 9.28 10.7 13.7 6.71 7.17 8.11 9.14 9.8 11.1 8.69 9.19 6.78 13.7 8.49 7.49 8.64 9.12 7.55 5.98 9.71 8.37 8.07 10.3 12.2 12.2 10.6 10.9 9.79 10.4 7.59 10.4 8.53 13.2 8.8 11.3 11.1 8.67 11 10 8.64 11.3 10.7 8.63 12 10.6 5.21 10.2 11.8 4.8 11.1 10.2 12.6 12.3 8.33 10.1 0 11.1 8.23 9 11.4 7.93 9.68 8.67 10.7 10.7 9.19 9.87 10.9 9.6 11 9.27 11.3 6.87 9.43 4.4 10.4 10.1 9.26 4.94 9.78 3.09 8.88 10.3 8.27 10.7 3.23 9.61 8.35 7.47 7.66 7.55 12.8 6.17 10.3 9.17 9.09 8.76 6.15 6.73 3.85 10.2 9.02 10.6 9.71 11.9 11.1 9.21 8.54 6.43 10.8 11.6 10.7 10.3 9.83 10.8 8.13 11.1 11 11.6 10.9 10.9 11.1 9.97 8.03 7.99 12.1 9.2 9.66 6.92 11.2 8.88 12.1 6.35 10.4 10.6 9.31 7.96 10.4 12.4 3.93 11.5 10.5 5.58 11.2 9.53 10.3 9.93 7.58 10.2 12 10.6 12 7.54 8.61 8.86 10.7 4.71 7.07 10.5 13 11.2 6.69 11.9 10.2 10 10.1 8.29 8 11.5 10.2 9.72 11.3 10.9 10.8 4.61 8.45 7.47 8.29 6.88 12.2 10.6 4.71 7.8 7.04 10.9 8.5 8.83 13.1 9.56 8.63 10.7 2.94 6.14 3.76 4.92 9.89 11 5.86 9.57 11.2 2.37 3.57 12.7 7.77 10.6 11 3.82 12.1 9.48 8.89 5.42 9.89 12.7 8.8 9 10.2 8.57 12.5 10.6 10.9 12.3 8.96 12.2 3.67 10.5 10.1 8.12
-TCGA-2Z-A9J8-01 3.73 7.02 11.8 9.63 7.77 8.64 3.06 3.67 6.16 4.63 6.13 9.99 2.32 1.88 4.42 9.08 10.1 11.3 9.01 9.28 9.64 1.42 9.53 4.81 9.35 8.86 4.41 9.67 3.94 7.7 5.04 6.59 6.83 7.33 2.88 0.75 1.59 7.05 1.42 4.06 6.17 2.88 6.39 2.22 6.01 4.37 2 6.89 12 8.12 5.47 7.19 6.58 11.2 6.26 1.59 8 3.22 5.41 5.97 7.56 6.79 7.7 7.06 3 4.17 4.97 7.97 11.8 4.67 3.97 5.53 2.5 0 1 3.46 5.56 6.4 4.13 3.94 2.81 2 2.81 4.19 7.71 2.22 5.83 7.12 6.17 5.12 9.32 7.34 6.79 7.02 5.17 4.42 2.94 8.16 5.03 0 3.55 4.97 1.59 6.4 4.51 3.81 7.34 7.6 6.72 6.96 0.42 1 9.25 5.65 6.79 1.74 2.59 3.88 4.58 6.61 6.98 4.86 2.74 5.25 0.74 6.87 0.74 4.35 1.74 14.5 4.32 6.15 4.35 5.6 5.41 2 5.2 3.84 3.3 8.41 0 9.21 0.74 4.97 6.48 11.7 0 11.7 0.42 4.48 5.65 3.77 4.93 9.07 11.7 2.12 0.74 4.07 8.55 4.06 7.1 7.15 4.05 7.87 9.46 6.94 5.74 4.46 5.06 6.16 10.7 9.88 4.53 6.92 5.93 3.77 6.83 5.35 7.74 4.71 5.34 9.58 6.53 5.13 5.87 4.47 6.21 2.5 9.11 7.37 9.07 7.7 3.98 5.92 4.59 5.53 5.2 7.86 8.5 10 13.1 10.4 8.28 10.4 6.17 8.66 7.84 9.39 10.4 8.88 3.7 10.5 9.92 9.16 9.93 9.73 12 10.6 5.7 10.7 9.16 9.3 11.8 10.8 8.14 9.53 0 11 9.15 12.3 8.58 2.5 9.1 10.9 8.82 9.03 9.66 9.13 10.3 2.12 7.53 3.97 11.1 11.9 12.4 12.2 12.3 12.2 2 12.7 5.55 1.22 3.46 10.2 10.4 14 10.2 11.3 8.2 11.9 10.3 10.4 6.59 10.2 8.98 9.96 4.68 11 11 10.1 7.35 6.16 9.33 9.29 12.1 6.55 0 12.8 11.6 10.9 13.2 10.8 10.4 8.14 9.47 11.1 10.1 10.7 10.7 10.6 6.64 4 10.2 6.42 9.72 10.1 7.5 11.6 7.41 9.1 13.6 11.8 12.8 9.37 12.3 10.4 1.59 10.2 7.81 8.65 13.6 8.49 3.67 8.43 6.87 10.5 10.7 8.37 8.73 6.65 10.3 10.6 9.84 5.38 8.3 9.33 11.6 9.7 9.76 10.3 11.3 9.16 11.7 8.37 9 11.1 9.12 8.16 7.58 7.36 11 10.4 8.96 12 8.47 13.4 9.1 9.36 11.8 10.1 11.1 1.6 11.1 1.59 4.09 9.16 6.11 10.5 2.59 7.81 5.74 10.6 11.2 9.95 9.21 6.72 8.79 9.33 8.88 3.84 4.89 11 10 10.8 11.3 7.39 8.08 10.7 3.32 9.55 9.06 9.78 11.7 9.35 10.2 9.99 5.52 8.32 7.24 9.31 8 11 12.4 8.63 6.77 9.98 10.6 8.49 6.84 10.2 6.64 10.3 9.65 9.27 9.21 11.1 9.61 9.96 9.63 4.74 8.76 9.83 11 9.61 8.42 11.9 8.28 9.84 7.3 6.66 9.68 7.57 6.32 10.7 5.61 11.1 11.1 10.8 2.89 10.6 11 12.2 5.96 8.84 7.43 7.69 8.4 8.83 7.15 10.2 8.74 12 10.6 2.5 11.8 3.74 5.49 7.09 0 9.99 3.07 8.44 7.91 11.9 9.25 8.69 6.04 11.5 8.29 7 4.97 10.5 11.7 4.55 10.4 7.86 1 1 8.95 9.02 6.4 1.59 8.22 6.05 10.7 9.8 6.71 10.6 10.8 0.42 13 10.2 0.96 10.4 8.51 10.7 12.5 8.56 8.73 4.55 6.43 12 8.94 9.54 13.4 7.41 6.75 9.65 11.2 13.2 9.82 14.9 7.65 9.29 9.25 8.39 9.49 5.68 10.5 10.4 2 6.48 5.47 12.3 10.3 10.8 11 12.2 9.02 10.8 4.68 11.5 9.35 11.1 11.5 10.3 8.98 10 10.5 6.48 11.3 10.3 10.3 7.51 9.33 11.3 8.17 1.74 10.3 9.19 10.9 10.3 6.3 9.56 12.1 0 8.88 10.9 10.6 9.72 11.8 10.1 11.9 9.16 7.02 8.43 7.7 3.46 11.3 7.28 7.29 9.32 9.8 0.42 9.55 7.16 10.1 10.1 10.9 11.3 11.3 11.8 10.4 9.08 8.78 11.8 10.8 11.2 11.1 0 11.7 10.7 10.1 10.7 13.3 11.2 13.2 10.8 8.68 11.6 10.5 8.95 5.43 9.43 9.04 6.04 8.1 10.5 9.64 8.69 6.52 9.95 10.2 9.63 5.21 6.15 11.8 10.4 7.96 12.8 10.1 10.5 10.2 11.4 10.2 11.3 10.8 7.59 0.42 11.9 9.83 9.05 8.06 3.7 9.42 4.77 9.61 9.64 11.2 11.2 11.8 8.45 11.5 11.1 13.1 0.42 11.6 11.4 11.7 9.72 7.81 8.04 10.4 7.9 4.37 7.73 8.15 0 6.23 10.2 10.3 3.84 10.2 9.32 9.43 2.81 9.79 10.9 12.4 11.5 11.8 13.2 3.84 9.54 3.59 7.8 11.8 9.97 1.42 9.87 10.3 9.82 10.5 10.9 7.85 12.3 0.42 7.85 11.3 7.95 9.66 8.03 5.6 10.4 11.3 10.5 11.1 9.53 7.57 11.2 6.71 8.79 10.9 7.24 11.1 9.95 12.6 4.97 6.12 8.16 5.08 8.82 11.5 12 12.9 13.8 8.9 7.8 6.51 12.2 2.12 8.27 6.33 9.89 6.52 7.05 9.68 9.03 3.17 2.5 10.5 5.36 9.88 10.9 13.2 10.3 9.56 11.5 10.8 7.37 0.74 1 5.94 10.4 3.63 8.68 7.89 9.95 11.7 9.27 10.3 5.13 1.74 6.21 8.84 9.86 9.77 2.59 10.5 11 6.14 3.28 7.28 11.7 10.8 3.12 1.59 8.6 3.12 9.33 9.46 8.09 1.22 8.39 14.2 5.09 11.3 11.7 10.7 10.5 12.7 9.76 11.3 7.79 5.86 5.53 10.8 0 3.06 3.63 2.5 10.9 11.1 9.25 0 8.69 9.03 3.94 5.84 12.5 14.1 6.21 8.16 11.2 8.82 0 9.93 7.21 10.3 10.6 8.54 12.7 11 10.7 9.87 8.14 9.74 12.3 9.75 7.58 8.11 9.24 10.3 8.21 11.7 10.7 9.46 5.17 4.91 8.94 7.96 7.73 5.93 3.59 12.3 9.21 1.42 0.42 8.42 9.59 10.6 8.89 8.3 8.33 8.11 8.75 6.53 6.82 8.6 6.48 10.2 8.22 8.56 0.42 14.4 9.21 10.4 9.03 2.74 11.2 7.38 8.39 4.46 11.1 13 3.67 7.21 9.88 7.21 7.31 9.86 10.2 9.53 9.88 6.76 5.16 8.75 0 8.77 0 4.74 9.02 9.58 1.22 1.22 12.6 9.59 9.84 11.2 3.42 1.42 10.7 8.65 11 7.06 1.74 10.6 9.77 9.22 10.9 8.94 9.18 9.91 10.7 8.82 0 7.19 6.64 11.6 9.54 12.3 0 10.7 10.2 11.2 10.7 11.2 8.71 5.93 11.2 10.8 11.1 0.74 11.8 1.88 11.9 3.91 10.5 11 8.3 2 8.62 11.7 12.6 9.67 8.7 9.29 11.9 7.73 10.4 11.1 10.6 8.48 10.1 12.7 10.2 12.1 12.2 12.7 7.34 11.1 8.81 9.22 8.44 9.64 10.1 13.2 12.3 9.14 11.8 11.4 8.04 9.44 11.3 9.04 9.94 11.7 7.56 11.3 9.93 9.81 11.4 3.74 1 11.5 6.66 11.2 8.13 10 8.51 12 5.15 8.59 8.14 0 5.26 9.29 8.67 1 12.4 8.41 10.2 8.98 9.78 8.34 7.95 9.62 9.59 7.49 3.88 5.93 1.22 5.28 12.5 10 7.4 12.9 4.83 7.58 8.05 7.73 9.79 8.14 8.42 0 9.57 11.2 9.55 10.5 10.5 10.2 9.09 11.5 9.77 10.9 10.3 7.73 0.74 7.62 6.25 8.85 8.77 9.38 3.84 10.8 11.3 8.96 8.82 4.96 4.44 10.9 10.8 12.2 10.1 7.6 10.4 9.7 8.04 7.89 10.1 2.22 4.2 8.72 10.3 8.81 12.3 7.14 9.49 9.37 7.28 5.79 10.2 7.77 12.4 7.16 7.57 5.76 9.69 9.06 9.72 8.49 2.66 8.8 2.74 8.3 7.97 8.83 3.12 7.14 0.74 8.45 7.58 10.7 10.9 10 9.28 3.46 12.2 10.4 9.67 2.12 12.5 7.11 8.04 10.9 2.94 9.64 11.1 6.02 6.54 2.59 7.14 7.8 8.79 8.52 4.76 11.6 10.3 8.2 9.95 10.7 8.5 10.3 10 6.97 10.6 8.24 11 7.14 1.74 10.5 9.31 8.26 9.21 3.63 12.5 4.63 9.23 6.53 4.61 8.1 5.45 10.3 0.42 7.95 9.27 6.88 7.35 10 9.47 11.3 10.3 7.25 8.14 9.43 6.59 8.86 10.2 5.92 10.9 9.28 8.72 8.32 8.81 1.73 9.27 6.66 11.5 5 13.6 5.71 5.31 9.05 4.65 8.83 9.95 7.16 9.09 9.39 9.65 5.81 6.06 10.3 11.1 6.08 8.75 9.7 8.38 5.82 9.91 1.22 5.83 8.44 2.22 10.5 8.53 9.94 4.93 4.76 10.2 10.6 9.08 8.33 9.83 6.53 8.22 9.82 2.12 12.3 7.04 10.1 5.68 8.72 7.98 10.9 10 8.84 6.68 0.74 5.26 8.65 10.6 7.86 8.95 9.71 6.77 10.1 8.63 11.1 7.9 8.8 4.25 8.7 11.3 11.9 9.82 8.74 9 9.28 8.85 7.82 10.2 11 9.76 8.22 8.37 8.53 8.32 8.97 11 9.54 1.59 9.44 3.32 10.8 6.26 6.27 13.8 11.8 2.59 11.7 8.38 3.97 11.1 6.33 0 8.72 8.81 2.12 9.19 11.8 9.85 7.23 7.6 9.62 10.5 10.9 10.1 8.56 7.58 7.69 1.42 10.6 10.3 1.59 12.3 8.87 11.3 9.63 11.7 10.2 12.8 11.8 4.22 6.91 8.51 0.42 11.3 10.8 12.7 10.6 9.02 10.5 7.01 9.08 2.5 8.13 8.12 5.54 0 8.1 4.12 9.48 10.3 0.6 6.26 8.94 8.46 2.22 4.37 0.74 11.7 1.22 8.31 3.81 8.45 7.08 0.74 5.16 10.4 9.21 4.57 3.67 9.65 8.95 5.32 2.32 7.49 4.24 5.84 0 0.42 7.16 4.79 8.18 6.61 8.32 4.55 6.19 0 9.02 7.36 0.74 10.2 7.93 7.12 8.67 8.64 5.02 11 6.56 7.92 8.67 4.58 10.1 6.79 9.02 8.32 0 8.73 5.25 7.7 9.73 11.3 0 7.76 8.37 3.2 5.16 10.5 8.89 3.88 7.97 11.1 12.8 11.4 9.19 9.07 0.42 6.66 1.42 8.96 1 7.37 11.4 8.76 10 8.59 10.8 10.3 9.07 6.59 9.56 9.84 9.73 3.94 9.88 9.57 10.7 8.1 5.57 4.37 4.46 7.15 11.4 7.9 10.4 9.63 7.52 4.48 9.11 10.7 10.2 12.5 6.17 0.74 3.59 9.32 8.5 7.9 6.34 9.48 8.96 9.23 10 7.6 9.53 7.82 5.66 4.76 9.01 0.42 8.2 9.74 5.99 8.52 9.07 4.84 9.29 4.93 0 6.54 9.03 5.74 0 4.12 10.1 2.74 6.66 7.71 1.88 0.42 6.68 0 10.2 8.84 8.3 9.11 7.29 10.3 8.28 10.7 7.78 9.35 11.2 6.92 5.76 4.94 8.71 8.06 10.4 9.08 8.27 8.51 6.78 7.55 8.38 4.86 1.22 9.71 0 9.36 6.58 10.1 2.5 4.32 0.42 8.22 2.42 0.42 9.12 7.65 4.68 10.2 9.64 1.22 4.22 5.78 4.81 9.38 9.3 4.91 7.78 5.89 2.32 7.04 9.05 8.4 11 5.07 9.22 9.41 8.17 2.5 9.46 5.24 1.74 2.66 10.5 10.4 6.11 10.8 4.68 4.65 6.6 13.4 11 10.9 1.42 0.42 6.04 11.1 9.81 7.1 9.27 12.9 1.22 7.97 11.1 8.62 11.7 9.08 7.01 9.12 0.42 6.65 4.09 8.62 12.9 8.4 8.84 6.67 6.99 8.12 11.5 5.62 2.22 0.42 11.7 7.37 8.81 7.16 7.01 6.08 7.47 7.8 2.59 7.17 9.14 17.1 13.2 6.34 2.42 5.06 8.52 6.54 0.42 10.1 10.6 8.44 5.6 9.54 4 8.37 9.72 11.1 12.7 8.03 10.5 7.96 2 4.12 8.18 9.25 7.84 6.8 6.34 8.37 9.03 10.7 4.61 12.2 12.5 3.91 3.12 8.84 12.1 10 8.2 9.46 3.37 6.38 13.7 0.42 8.22 10.7 4.48 6.09 9.12 9.22 11.1 8.63 10.4 1.22 1.88 0.42 7.06 8.34 6.75 7.67 7.52 7.08 9.03 8.92 8.15 7.76 10.3 6.3 5.19 6.92 9.05 9.39 4.28 7.49 9.14 6.28 10.7 7.39 9.45 8.14 2.74 9.25 5.02 9.08 1.22 8.75 7.21 8.31 7.91 2.81 7.69 7.35 3.7 6.39 4.35 8.92 6.55 1.42 9.7 5.52 4.77 8.28 10.1 5.8 8.03 1.14 9.39 1 7.48 8 7.53 2.94 6.34 8.25 9.22 1.22 1 7.34 9.8 4.22 12.4 9.28 8.87 7.97 11 10.2 5.24 8.74 9.01 8.48 11.1 9.85 3 0.74 10.1 9.63 7.35 7.1 2.42 8.66 9.47 9 4.83 3.91 3.59 5.91 0.42 7.6 9.5 10.6 9.51 8.5 0 11.8 5.48 10.5 9.87 3.7 8.79 9.64 5.16 7.63 13.2 8.63 9.62 10.2 8.7 1 9 8.22 2 6.77 1.88 6.8 10.5 0.42 10 10.2 1.22 5.99 5.61 8.17 5.44 7.99 7.25 7.65 8.89 0.42 9.94 1.22 4.03 9.4 4.03 4.03 1.22 7.09 7.1 6.59 9.73 10.2 6.88 2.12 9.84 11.2 4.17 11.6 10.1 7.31 7.81 6.48 8.93 4.48 0 6.54 7.58 10.7 7.44 3.22 12.5 6.75 1.74 2.59 5.45 6.53 11.8 5.78 6.44 8.64 4.17 5.29 8.25 2.12 7.27 0.42 6.46 0.74 10.4 0 4.09 7.25 10.2 0 9.01 5.24 3.37 9.67 8.91 6.22 7.44 3.42 2.15 0.74 8.85 2 7.05 3.84 8.99 9.64 7.94 7.61 6.94 10.2 10.3 6.26 2.22 6.88 7.87 7.1 13 0.42 7.71 8.81 8.71 6.05 5.63 11.7 0 6.92 3.46 7.52 11.7 5.06 9.51 1 10.2 8.44 6.04 8.92 13 4.57 7.76 7.45 4.22 9.22 6.19 9.38 3.67 9.58 8.97 4.57 6 6.43 3.91 11.9 9.28 5.7 9.09 8.95 7.03 3.88 3.46 11.1 9.11 7.67 9.34 2.94 4.79 10 5.17 8.96 7.48 3.84 11.7 8.1 9.65 6.31 5.81 7.83 9.14 8.89 7.97 4.28 4.53 1.59 7.37 7.39 6.96 3.74 10.8 1.59 5.25 11.5 1.42 8.13 5.84 3.06 8.59 7.87 8.86 7.23 9.21 2.88 5.85 9.46 8.59 1 9.6 1.74 1.22 11.3 7.63 5.78 9.23 3.63 4.12 7.06 1.74 1.88 8.53 6.83 9.21 7.32 8.04 6.28 5.13 1.74 1.88 8.91 4.06 0.74 9.47 1.22 11.1 12.5 7.63 4.25 8.36 11.7 0 6.63 10.3 5.73 12 9.39 8.73 2.66 10.7 8.17 3.32 10 1 0.42 8.3 7.38 7.92 4.65 10.8 8.43 0.42 1.27 8.18 13.2 6.53 8.73 3.4 7.11 2.54 7.17 7.83 10.4 13.4 4.88 9.23 10.5 7.33 12 4.39 8.05 4.32 7.95 7.37 3.06 6.65 7.19 2.5 7.16 5.46 3.88 10.5 9.1 12.1 9.33 2 2 8.91 11.1 12.3 0.42 8.22 14.6 9.7 7.01 8.12 8.58 7.22 7.71 5.56 9.62 6.59 8.85 11.5 9.22 3.74 6.67 10.4 3.06 7.06 10.4 5.23 12 6.83 6 13 11.7 8.84 8.36 2.37 7.07 9.16 10.2 1.22 7.98 6.55 10.8 1.22 10.2 5.13 3.77 4.28 11.4 2.88 7.39 2.22 11.1 4.39 1 9.06 0.42 4.44 12 10.9 10.6 8.99 11.6 5.21 6.8 8.18 8.65 6.05 10.3 7.66 11.2 9.73 8.86 10.6 7.48 8.78 2.81 6.75 7.58 9.99 1.42 0.42 11 7.08 7.37 11.4 8 0 6.76 7.84 6.99 1.42 7.45 0 5.18 11.5 8.57 0.42 3.22 9.26 8.74 7.22 5.94 10.5 9.37 1.22 10.9 10.7 9.17 9.52 10.3 7.39 1.59 7.24 6.7 8.79 8.08 5.95 9.98 5.32 3.7 0 9.41 10.8 6.13 10.4 11.7 8.21 8.1 3.95 9.26 8.94 9.77 7.35 10.7 10.9 0.74 6.55 6.52 12.3 0 3.91 6.49 9.03 6.64 0 8.18 5.29 3.22 1.42 9.59 4.14 4 6.55 8.17 8.25 8.84 4.2 6.02 7.21 7.35 7.75 11 10.4 9.36 5.59 0.74 9.42 9.61 1.22 13.6 10.9 6.32 6.82 8.82 5.29 5.22 6.29 11.2 6.44 9.98 2 9.24 3.28 7.99 15.8 3.22 1.22 10.8 8.04 7.53 4.65 4 2.32 2.12 4.15 8.62 4.96 13.4 1.74 8.92 12.2 7.78 12 7.86 10.8 11.2 6.81 4.93 9.22 10.9 8.31 8.53 8.96 10.5 3.91 5.97 7.77 7.83 3.37 7.19 8.51 7.46 7.85 9.33 6.24 6.18 3.88 0 8.72 7.43 9.91 9.41 7.34 8.88 10.4 7.78 3.37 7.86 8.27 4.93 1 11.8 9.62 8.87 8.95 2.12 6.32 5.43 3.46 4.35 10.4 8.73 0.42 6.37 7.4 6.58 9.27 5.21 9.27 6.98 11.2 8.79 8.35 12.1 3.22 3.63 6.28 12.1 1 8.29 10.7 8.44 0.42 10.5 5.84 10.3 4.32 5 7.99 8.92 9.21 10.6 8.04 7.75 3.51 6.73 4.74 6.85 4.99 4.44 9.27 3.22 0.74 11.9 8.96 6.24 8.42 0 4.3 9.34 11.3 3.28 3.42 10.4 0.74 1.42 0.42 7.48 0 6.56 5.94 6.06 0.42 5.6 10.3 8.2 8.05 5.24 2.32 5.67 8.13 0 10.2 8.18 6.33 1 5.48 0 3.77 1 0 0.42 11.4 13.9 2.66 4.39 2.59 10.1 0.42 7.6 2.74 4.93 8.75 5.17 8.95 5.39 7.35 9.1 6.34 14 0.42 6.98 11.7 8.5 9.94 9.56 8.96 0 0.74 3.37 2.59 7.65 3.28 5.32 7.83 11.8 6.99 5.12 9.39 2.42 5.65 1.88 6.1 7.2 8.4 1.42 9.85 3.59 10.2 0.42 11.5 8.35 7.75 8.39 7.97 6.7 3.28 0.42 9.62 2.59 9.41 6.59 6 8.54 5.61 6.81 8.06 9.84 8.33 9.59 5.68 6.31 0.74 6.71 8.41 6.04 0 6.12 5.43 4.88 9.21 7.38 3.77 6.83 7.16 5.78 3.59 8.03 9.22 1.42 8.48 1.93 8.12 6.59 7.67 7.5 7.44 9.23 9.13 5.68 2.01 11.7 5.52 1.42 1.42 9.14 10 8.79 4.09 10.6 5.85 8.39 8.15 8.47 9.06 9.41 0 8.74 7.73 3.22 4.2 4.96 0.74 5.71 3.84 6.89 8.6 6.98 4.03 2.66 8.48 7.51 6.86 2.94 13.9 11.6 3.67 8.89 5.94 6.31 12.5 10.6 9.76 0.42 4.99 12.3 1.42 6.54 7.55 0.42 2.12 1.42 4.83 3.3 2.22 9.43 6.53 1 8.17 8.83 6.78 6.79 9.08 1.86 7.09 3.17 5.69 7.19 7.72 8.06 4.35 9.82 4.25 9.04 1 6.3 2.22 10.2 8.85 3 5.34 7.77 8.58 1.74 2.74 8.17 5.67 15 8.85 15.4 8.27 1.22 1.22 6.46 10 10.4 5.57 2 8.99 2.66 7.08 8.73 9.74 13.2 5.94 1 5.56 5.05 3.42 9.79 5.05 3.5 5.08 9.27 6.76 12.4 4.17 7.98 3.63 5.76 7.78 6.29 8.22 2.74 10.6 7.75 9.71 10.4 3.42 7.86 6.42 0 6.19 3 7.25 2 10.8 9.37 7.21 8.41 4.57 10.2 8.16 9.64 6.69 0.42 2.88 6.08 8.6 5.41 11.7 7.86 7.31 7.31 12.4 5.41 8.9 8.89 11.3 6.33 7.32 8.58 3.91 7.9 7.52 11.3 8.1 4.22 7.94 6.31 8.87 5.7 7.24 6.69 4.37 12.2 8.51 1.42 5.91 7.9 7.52 1 8.37 10.5 8.2 8.45 8.49 11.2 7.43 8.16 10.6 8.3 2 12.5 10.8 9.05 4.37 9.73 7.71 6.34 4.3 5.36 11.5 7.07 5.48 5.26 9.63 2.12 10.8 4.09 9.89 8.23 9.36 3.28 6.81 5.32 0 5.99 7.28 5.53 8.17 6.31 5.88 2.32 8.36 5.68 0 8.96 11.2 0.42 9.48 10.4 4.46 6.55 8.48 5.99 6.99 6.69 7.33 9.77 10.7 4.3 1.59 7.99 8.23 8.78 6.75 9.95 1.22 2 10.3 4.25 4.32 7.12 1.74 0.42 8.2 7.55 6.74 8.38 11.1 8.14 5 5.85 3.37 11.6 6.08 9.22 9.52 8.66 9.19 0.74 10.1 6.49 4.96 4.01 10.2 9.86 8.01 10.4 0 7.96 4.74 7.01 7.8 5.86 6.36 5.35 9.06 6.76 7.32 7.28 5.12 10.3 7.96 8.64 5.32 4.79 3.77 1.22 6.35 8.92 6.8 12.7 5.61 7.83 8.31 6.06 7 6.55 2.12 2.12 4.96 0 3.63 5.97 5.96 4.53 9.98 7.55 8.65 4.12 7.52 0 4 10.5 6.57 5.88 9.62 2.12 1.59 11.9 10.7 0 13.4 4.2 1.42 1.42 1.22 12.2 7.49 5 4.37 9.22 9.29 0 7.55 11.4 9.11 7.08 4.76 8.01 8.03 5.45 5.15 7.46 8.47 11.2 11.9 3.74 6.96 1.59 6.65 11.7 2.42 4.2 2 9.54 6.88 8.12 5.58 2.42 11.2 0 7.69 10.2 0.42 4.25 9.7 3.28 6.53 8.42 4.32 7.66 11.5 9.8 2.12 10.9 7.83 1.22 7.89 3.77 10.5 1.59 3.77 0.42 4.03 5.25 0 8.94 4.77 5.9 11.4 9.35 9.55 7.3 7.37 7.36 8.91 6.43 7.45 3.7 9.38 6.21 0.74 12.9 8.72 7.54 8.17 6.78 6.76 0.74 6.74 6.25 1 8.75 8.05 5.79 2.88 7.5 11.2 0.74 6.43 5.08 4.94 8.37 0.74 4.84 5.19 11.3 8.59 8.81 0 3.91 9.48 2 3 6.34 8.18 8.19 11.8 11.7 0 10.4 0.42 12.7 0.42 10.3 11.5 2.5 12.7 15.6 1 14.5 3.67 4.15 4.09 2.94 10.7 7.72 8.29 7.07 12.2 4.88 2.75 7.65 2.12 10.8 4.44 11.3 7.66 12 13.3 1.59 0 11.6 3.28 1.42 10.3 3.17 9.88 0.42 6.46 12.5 12 8.68 10.1 8.71 9.39 1.42 7.28 9.27 11.2 12 8.73 10.2 9.32 6.34 7.71 9.61 10.2 8.75 1 10 6.83 8.84 1.88 1.59 4.68 1.88 6.36 4.06 8.29 2.81 5.73 5.92 7.95 2.5 7.34 3.17 8.67 8.36 2.12 1.59 6.73 5.26 2.12 1.74 8.5 8.29 5.36 10.2 6.61 3.06 1 4.86 8.43 10.3 3.67 6.45 8.08 5.5 1 0.42 3.17 6.15 2 0.42 7.1 8.66 5.35 9.8 6.48 2 9.98 4.35 2.94 5.1 5.5 0.74 9.69 7.24 6.5 9 6.35 10.5 3.74 9.97 5.89 0.74 1.74 6.34 6.98 11.5 9.35 9.73 2.81 10.2 7.86 9.77 9.73 12.4 8.93 7.91 8.45 8.93 13 15.4 11.8 7.6 6.17 9.61 5.88 9.95 9.88 11.4 11 6.93 9.95 6.67 11.8 1 0.42 4.15 1 10.5 7.59 7.59 9.43 4.22 10.5 9.3 5.26 4.06 0 6.41 7.82 6.18 9.49 4.12 4.2 9.93 13 9.8 2.5 10.9 11 11.7 9.86 6.3 7.16 9.67 9.63 8.15 4.12 8.12 8.45 10.7 10.7 12.1 9.1 8.54 10.8 9.06 11.4 5.99 0.42 9.39 3.77 0.42 9.9 10.9 5.05 0.42 12 9.32 11.2 12 12.2 8.86 10.8 8.51 8.44 8.44 7.41 6.5 8.98 8.3 8.99 5.59 11.9 6.33 7.29 10.5 6.88 2.22 6.66 2 9.75 9.03 9.19 10.9 10.1 10 6.77 5.1 4.61 9.47 9.93 7.37 7.93 8.83 3.42 5.99 9.65 6.17 9.83 12.6 11.9 6.93 7.99 7.59 11.1 6.43 9.25 7.71 7.49 2.74 12.9 7.68 8.79 11.3 15.6 0.74 1.74 9.23 10.9 5.93 6.65 8.94 12.6 12.9 14.4 15.9 10.4 11.5 4.61 7.48 6.77 9.9 8.15 2.42 8.45 5.38 10.9 8.2 10.7 11.3 8.32 10.4 7.2 6.91 6.1 10.7 5.35 10.3 5.81 8.41 0 12.2 4.5 6.57 9.12 3.77 7.23 10.3 9.82 12.7 9.42 9.77 8.82 10.5 3 8.44 10.8 9.07 0.74 10.1 6.35 7.69 4.8 12 6.21 4.17 9.58 6.04 2 6.68 2.17 9.09 4 5.53 9.17 9.66 8.15 14.1 5.97 9.52 9.54 5.12 5.71 10.9 12.6 8.18 13 8.97 8.87 11 13.1 13.8 12.2 13.4 0 9.05 0 10.8 7.5 6.29 11 0 1.22 0.74 8.91 0.74 9.41 6.95 0 2.59 10.9 7.34 6.49 7.99 0 8.76 4.55 8.74 5.7 11.9 7.54 0 9.19 12 9.61 8.92 0 7 9.83 8.98 6.26 7.31 9.39 2.32 2.42 7.26 2.66 11 9.11 8.29 8.98 8.19 0 8.62 3.37 8.6 3.59 7.83 0.42 0 1.59 8.95 6.69 5.41 6.25 9.14 5.77 3.32 6.63 9.6 8.94 2.9 6.55 7.65 7.39 7.96 8.96 9.54 11.1 7 7.54 9.22 8.19 10.2 9.85 7.74 7.43 7.41 9.57 6.66 10.2 6.41 8.89 9.24 8.33 8.43 8.35 9.44 8.38 8.07 6.55 3.22 6.12 7.65 8.97 7 9.82 4.06 8.6 8.1 6.6 10.6 8.92 4.17 9.49 9.26 4.72 0.42 12.8 6.9 1.22 4.88 4.84 8.85 9.75 9.94 9.26 7.4 9.65 9.77 6.77 7.31 7.08 7.27 4.12 10.4 9.02 3.7 15.4 6.23 6.32 2.42 0 4.2 9.16 5.91 8.94 11.5 11.5 8.36 9.97 8.51 7.56 7.24 13.8 9.48 3.77 1.22 8.31 7.89 7.46 4.88 7.27 8.4 9.83 9.93 10.7 8.2 10.6 9.32 9.47 5.9 7.1 10.9 13.5 10.2 7.89 11.4 10.6 13.1 6.83 0.74 1 8.58 7.81 6.19 6.29 10.8 3.81 0.42 10.7 10.1 8.94 14.4 8.59 11.1 7.93 8.78 8.23 10.1 8.96 0.42 6.56 8.51 11 12.3 10.6 10.2 0.42 8.28 12.5 2.42 1.74 12.8 10.1 9.45 6.16 11.3 1 10.3 9.86 8.08 10.6 6.46 10.3 5.65 11.4 11.6 6.4 10.9 10.7 6.75 9.91 10.6 2.42 10.8 2.12 11.1 11.2 11.9 10.3 8.95 9.39 10.4 7.65 4.55 5.85 4.03 10.3 3.84 8.73 11 5.31 7.08 7.76 11.8 1.22 12.1 10.1 10.6 1.22 8.7 10.5 1.42 6.29 9.41 6.42 10 7.22 4 8.27 9.31 11.7 9.4 4.63 9.91 2.42 8.73 9.16 16 9.28 7.94 7.75 0 3.63 13.8 10.8 6.42 8.2 9.13 7.69 4.79 7 11.6 10.2 10.2 11.9 9.08 10.4 2.5 9.58 7.6 11 7.77 9.36 6.56 10.6 7.57 4.61 2.12 11.2 10.4 13.8 1.22 3.22 7.77 2.88 4.66 6.75 2.59 6.71 12.9 1.59 7.2 8.68 7.41 10.4 4.61 4 7.46 8.59 7.5 8.32 6.02 7.57 9.61 9.22 0.74 8.66 9.77 8.67 7.85 8.49 7.44 10.5 1.88 5.05 7.72 8.28 5.19 2.12 7.27 4.53 6.81 6.66 7.34 1 8.67 10.4 12.5 4.06 5.9 0.42 3.17 6.55 4.46 2.74 3 9.3 7.32 0 2.22 7.61 7.35 8.32 11.5 3.26 6.91 6.06 11.8 6.15 11.7 7.26 4.22 8.02 9.95 2.94 11 8.02 7.68 1.42 11.9 8.18 7.54 4.97 9.95 8.47 7.99 4.17 9.24 5.43 9.32 6.68 6.63 4.83 7.01 6.9 10.6 5.41 2 1.42 5.22 5.22 9.14 5.65 5.18 6.86 0 11.1 3.37 9.14 9.81 1.42 8.68 7.06 8.36 3.69 9.44 5.43 4.74 12.6 7.32 3.37 9.95 8.47 8.19 9.14 2.81 8.55 0.74 7.5 4.2 8.48 3.94 9.93 7.99 10.7 9.63 10 7.1 3 10.7 8.18 8.67 7.37 4.5 7.85 10.9 7.9 8.68 6.96 2.22 9.69 8.27 6.35 10.5 11.1 8.8 1 0 1 2.74 1.74 11 9.78 3.67 1 5.77 5.89 7.36 9.77 6.86 1.74 6.72 12.4 9.95 9.35 6.59 9.54 10.4 8.34 12.5 11.9 6.24 5.83 8.48 9.81 2.22 2.66 5.12 0.74 5.94 6.62 7.58 3.7 15.3 9.03 8.76 0.74 9.17 12.4 7.05 11.2 8.62 12.1 11.2 6.73 10.1 9.35 9.89 10.8 12.2 10.1 4.22 0 11 3.06 6.07 9.88 11 2.22 12.3 4.99 12.3 10 9.71 9.1 9.6 10.3 11.6 9.2 8.39 6.83 9.58 7.83 8.94 9.95 10.6 11.2 8.15 2.36 2.88 9.46 8.77 8.82 11.7 5.2 8.92 7.13 8.98 1.88 9.03 7.48 8.43 10.7 5.97 10.1 9.54 9.94 2.22 9.92 7.92 11.1 11.5 8.79 12.2 9.97 11.4 9.2 7.16 9.78 10.1 9.51 11.2 9.6 8.04 10.1 11.1 8.98 11.4 9.05 7.57 10 11.6 9.58 3.42 8.79 8.81 2 8.42 10.3 4.89 8.36 8.41 7.74 9.75 9.67 10.5 9.03 9.79 10.9 10 9.09 8.61 11.5 4.85 3.28 11.2 2.66 8.79 11.6 9.84 10.1 8.18 3.32 10.2 9.33 12.2 10.4 10.4 11.2 7.95 9.69 7.55 9.07 11.1 9.79 9.77 7.47 12.3 13.8 9.38 0 8.77 9.46 11.2 1.42 3.17 7.39 8.34 9.41 9.45 5.31 5.08 10.3 10.8 9.94 1 9.41 11.5 0 4.17 0 10.3 11.2 10.4 7.19 6.04 10.2 5.3 10.6 10.6 4.96 10.9 7.14 8.16 9.13 9.18 0 10.2 8.84 9.51 11.5 10.8 9.49 11.5 8.88 12.7 11.4 9.25 6.34 1.22 2.22 9.74 8.96 9.55 9 10.7 8.36 7.91 8 8.61 6.59 9.87 11 9.64 11.4 10.3 6.05 8.22 9.47 11.6 7.02 11.3 11.1 9.89 9.92 1.74 9.39 4.83 9.68 11.5 10.6 9.22 10.4 9.2 4.15 10.1 9.88 10.7 7.97 8.46 9.69 9.42 9.39 9.19 7.81 8.69 9.4 8.67 10.2 5.81 10.2 7.79 9.65 6.63 9.16 9.9 9.23 11.1 9.65 9.28 7.49 9.09 8.47 13.4 8.49 3.33 8.77 1.74 10.9 9.74 1.02 10.8 10.1 9.97 5.91 8.83 9.3 9.56 6.64 7.02 0 9.39 9.42 10.7 3.06 9.11 7.05 9.97 9.83 6.51 9.37 9.91 11.1 8.79 6.16 8.85 12.4 10.2 10 10.1 8.35 9 2 3.91 4.63 1.74 10.3 9.07 10.5 9.25 10.1 8.57 8.84 14.5 9.75 9.81 10.1 9.33 10.8 9.57 10.3 10.4 10.6 10.3 12.8 10.8 9.37 8.03 10.3 10 8.5 9.85 9.08 7.5 10.5 10.7 7.24 9.01 10.3 10.2 9.11 11.5 10.9 12.1 11.7 11.8 10.2 13.4 7.63 8.53 12.5 10.7 10.3 10.2 9.78 7 10.8 12.8 1.88 9.62 6.41 1 8.13 7.79 9.82 9.75 6.87 10.7 11.5 10.2 0.42 9.47 9.83 1.22 10.2 8.5 9.21 12.1 9.72 9.49 9.68 6.55 9.95 12.6 7.12 5.49 8.25 10.3 6.47 3.12 8.63 5.43 8.48 10.5 11.1 10.3 11.7 8.53 7.32 9.1 10.7 11.7 3.42 6.98 8.75 9.03 8.88 9.9 10.3 9.84 10.8 8.45 9.69 9.58 11.9 12 11.3 8.5 9.6 2.32 9.37 9.02 10.4 9.1 8.85 8.55 12.3 10.1 3.17 1 8.97 1.74 6.75 12.3 7.99 9.28 8.63 9.87 9.98 9.7 11.3 9.57 7.62 10.5 9.46 10 10.2 9.45 0 8.53 9.86 8.47 9.75 9.87 8.34 10.1 10.5 10 9.99 0.42 11.1 9.38 10.2 11.5 8.21 9.91 10.6 12.9 10.4 8.46 10.7 10.9 9.36 9.04 8.94 7.89 10.1 10.9 5.32 8.86 11.9 10.5 9.02 8.16 2.94 15.7 10.5 10.3 11.7 9.99 7.64 9.68 8.18 10.5 8.35 9.52 10.1 8.21 11.7 12.5 8.25 12.7 9.1 11.3 9.93 10.8 8.15 9.15 8.09 9.72 8.37 11.2 9.28 10 9.89 11.4 10.9 9.88 10.2 10.1 8.82 11.1 11.2 9.89 10.2 5.1 8.21 11.2 9.45 7.12 8.21 8.99 9.53 12.2 9.27 5.09 10.3 7.74 9.19 11.3 4.25 1.42 1.59 8.97 0.74 9.7 12.2 7.5 11.1 8.22 7.28 8.67 10.1 2 8.25 5.36 11.3 11.4 10 8.43 10.1 11.9 12.5 7.52 8.92 6.54 5.66 1.74 7.11 4.17 10.4 8.01 9.85 8.04 11.9 10.6 12.4 9.42 9.55 12.7 10.4 11.4 12.6 11.3 9.96 10.9 7.86 10.3 5.71 8.62 4.63 0.42 10.4 11.7 5.95 4.6 9.99 0 10.4 8.95 8.85 7.31 10.5 9.88 9.75 9.14 10.7 8.81 8.57 9.78 10.2 9.48 0 1.59 13.9 7.77 10.3 12.8 9.23 9.41 8.41 10.3 8.42 11.3 8.04 10.2 6.86 10.2 8.32 3.67 4.35 8.26 3.37 10.7 1.74 8.84 0.74 3.67 8.64 10.5 11.7 9.08 3.67 8.15 11.8 5.9 9.01 9.74 11.4 11.3 10.1 9.86 4.55 2.89 11 0 8.29 11 0.42 6.46 12.2 1.74 10.2 9.33 9.13 0.74 10.8 10.9 9.26 11.3 11 7.46 7.56 8.67 9.28 5.84 8.54 7.94 9.13 10.4 13.2 6.14 11.7 2.5 11.7 10.9 9.28 10.6 9.65 1.22 7.03 9.12 8.17 9.82 1.59 0.74 1 2.5 9.9 7.35 10.6 9.98 7.07 10.3 10.4 8.73 8.55 10.2 9.97 12 9.88 8.54 8.42 2.66 13.8 11.2 9.73 9.88 8.86 9.87 9.06 9.52 8.34 8.26 9.49 3.67 9.87 9.04 11.8 9.12 11.1 12.4 13.1 9.21 10.8 9.86 9.81 6.9 7.91 8.03 2.12 11.6 1.59 4.22 12.4 9.43 9.56 10.9 11.4 11.7 11.6 0.74 2.01 8.61 10.3 7.63 5.62 8.25 8.74 8.92 2.66 7.66 9.57 8.5 7.55 9.07 11.3 8.94 3.12 7.02 6.28 4.2 7.59 0.42 5.27 0 10.2 5.89 6.08 2.74 6.63 8.53 5.75 6.84 8.12 9.59 1 1.59 3.55 9.51 9.67 5.16 7 3.17 3.28 15.8 9.51 11.3 0 17.4 10.1 11 12.5 3.17 3.5 3.55 7.37 0.74 9.6 11.5 7.02 1.88 8.8 8.37 1 8.71 0 3.94 9.13 11 9.61 1.22 3.44 4.32 9.6 8.65 9.7 4.3 11.3 7.12 9.52 9.48 5.38 6.24 9.19 6.27 4.65 9.95 2.22 6.95 8.84 8.39 6.13 0 14.4 10.8 8.5 7.95 3.94 7.44 6.41 9.09 5.77 6.84 9.42 3.37 0 7.76 0.42 0.42 12.5 7.98 3.17 5.13 2.66 0 10.6 9.47 4.96 8.19 10.4 8.97 7.15 4.59 12.6 0.74 7.36 12 8.35 10.4 8.39 10.4 8.7 9.94 5.81 6.19 2.74 0.74 5.6 9 8.22 4.2 4.28 2.94 7.48 1.42 8.03 6.32 6.26 6.78 1 9.98 0 8.91 6.5 0 7.89 6.88 6.48 4.93 7.15 4.53 7.65 9.61 7.61 0.42 2.59 5.09 8.14 8.85 2.12 8.71 7.25 7.29 7.32 8.13 8.86 3.37 6.01 2.81 8.61 0.42 7.91 7.9 1 10.3 7.66 2.81 0.42 0.74 5.7 0 4.93 6.1 2.66 1.22 6.24 3.42 8.32 1 3.12 8.39 4.42 8.37 5.43 4.42 1 2.59 6.77 6.5 4.86 2.81 0.42 9.67 9.65 3.55 6.45 5.24 8.74 10.4 9.03 9.21 2.12 9.75 10.7 8.88 7.22 10.1 5.41 6.26 6.84 2.12 9.49 10.3 11.4 2.66 10.5 6.77 11.1 7.09 11 10.3 9.12 8.68 4.5 1 11.7 9.34 8.93 7.92 9.92 0.74 10.8 11.1 9.68 2.66 6.68 10.6 10.2 7.93 8.33 1.42 13 10.1 8.32 11.1 9.66 4.03 3.32 11.2 8.42 3.5 9.66 3.06 10.7 8.29 13.7 8.15 9.44 9.08 12.1 8.79 11.1 4.59 9.52 6.77 8.07 9.37 9.89 10.2 9.99 0 7.62 3.84 9.3 9.78 11.8 9.66 13.6 11.8 10.1 5.72 6.19 9.94 8.23 8.57 9.47 5.81 7.77 11.2 9.17 2.66 8.81 7.98 8.37 11.2 8.85 14.6 10.5 8.22 8.82 8.03 7.8 9.26 8.96 3.42 9.83 6.46 8.08 12 9.33 7.36 11.4 10.3 8.64 2.12 8.11 10.6 11.7 0 9.21 8.84 8.66 4.37 4.77 4.09 10.1 6.13 4.35 8.05 9.88 0 9.17 2.22 1.74 3.94 11.7 10.6 7.65 12.9 8.74 9.43 9.94 8.71 8.1 10.7 10.7 10.2 8.87 8.48 8.97 9.16 9.52 9.22 8.22 11 6.14 9.66 10 5.87 5.68 9.81 10.5 9.26 16.6 10.1 9.52 8.81 7.19 8.8 9.18 9.91 10.2 9.75 8.81 9.05 5.88 13 8.18 9.94 5.48 11.6 10.4 9.67 6.19 3.77 10.6 11.9 5.79 11.3 8.73 11.1 9.81 12.4 5.5 12.2 7.17 9.59 10.8 10.4 9.49 13.1 12.1 7.98 2.52 10.3 2.74 8.24 10.5 9.18 2.59 6.88 5.29 9.96 8.67 11.2 0 7.76 8.73 7.68 7.96 1.22 8.88 2.12 8.05 3.97 5.94 7.76 4.28 8.74 9.29 11 11.4 10.9 9.93 9.86 10.9 11 11.4 10.7 12.2 5.59 5.54 7.54 10.4 10.5 8.8 9.85 7.97 8.74 6.39 10.6 7.26 10.7 11.6 3.77 6.75 8.26 10.2 8.57 10.6 8.65 9.67 8.36 8.11 9.76 10.8 12.7 11 4.81 8.27 9.23 9.05 8.09 6.28 7.65 3.42 9.05 9.4 2.59 10.2 10 11.7 6.55 9.48 9 7.23 10.1 10.9 9.71 8.9 11.3 7.63 8.99 10.4 3.91 10.7 5.37 10.4 6.68 8.78 4.35 9.4 8.76 1.42 9.78 5.77 8.56 9.83 8.3 1.88 9.06 0.42 4.01 7.03 7.91 8.65 11.7 7.27 3.7 9.06 7.3 3.67 0 2.74 0 5.77 10.6 9.15 9.59 2 10.1 9.81 2.22 7.75 9.16 9.05 5.82 7.26 5.83 7.52 10.2 9.1 8.99 9.95 9.04 5.52 13.6 10.2 10.4 4.72 11.2 0 8.69 7.95 9.39 7.94 10.6 10.8 10 1.74 11.2 10.5 10.1 10.4 9.32 0 7.73 9 3.63 10.7 11 7.8 9.74 10.8 10.2 4.17 5.56 6.68 9.24 8.74 8.73 10.2 8.18 5.71 10.4 10.1 7.45 8.43 9.45 10.9 9.97 9.48 10.3 8.87 8.13 10.7 7.8 1.22 0.74 10.1 4.81 2.39 7.66 8.74 2.42 11.5 1.42 7.45 8.68 2.32 9.9 5.39 8.91 0.42 10.7 12.6 9.9 3.88 6.69 2.8 6.13 7.34 7.46 11.1 3.46 6.56 5.51 1 9.17 4.25 10.6 5.5 6.66 0.42 8.68 9.42 0 10.8 10.6 13.2 9.01 3.42 7.05 0 11.6 8.28 5.15 6.83 10.1 0 7.49 9.81 8.71 10.6 0.42 8.07 9.42 8.1 6.68 8.12 9.42 13.9 9.47 11.3 9.77 8.94 10.9 9.36 0 0 8.93 3.06 8.67 5.2 8.32 12 11.6 6.93 11.2 9.6 8.08 11.4 3 9.87 1.88 5.82 9.18 6.36 9.01 10.4 12.1 10.8 2.12 5.26 10.1 11 12.2 4.48 4.46 10.2 4.17 8.6 2.42 9.75 7.74 5.73 9.19 7.18 12.2 1.88 6.45 0 5.34 9.54 8.44 4.12 0.74 10.4 8.15 10.3 11.9 8.49 8.98 7.5 5.53 6.6 8.79 6.54 7.41 1.74 5.36 11.2 1.59 8.08 1.22 5.3 8.51 11.9 8.06 6.89 10.5 8.22 3.37 0 4.79 10.1 5.21 7.31 8.91 9.8 7.33 9.37 0.42 6.87 6.75 6.85 11.5 11.1 12 8.46 6.06 6.02 10.9 6.85 0 3.67 0 4.22 3.84 7.59 12.1 2.32 7.76 10.9 2.81 12.4 8.43 10.1 7.48 8.48 4.25 4.67 8.31 12.1 12.3 8.64 8.17 9.27 9.18 10.2 10.2 9.61 9.06 3.46 10.1 10.4 10.1 1.74 2.81 8.53 4.42 6.52 9.44 7.8 8.51 8.15 3.28 9.23 2.88 0.74 10.3 9.63 10.2 4.48 8.71 5.63 9.42 11.9 4.83 9.94 11.8 0.74 10.4 9.52 11.1 8.97 2.74 12.4 10.9 7.33 11.6 12.6 9.51 10.1 10.1 8.66 11.4 7.21 8.42 9.54 8.58 9.22 1 9.21 9.32 9.72 2.66 5.19 8.35 11.1 12.6 9.73 7.95 11.2 7.16 8.78 10.9 4.22 12.3 9.55 0.74 8.67 11.8 11.1 8.4 8.92 12.4 2 10.7 9.99 10.8 7.35 8.52 9.49 6.5 10.4 12.3 10.7 7.46 3.32 10.9 14.4 1.88 5.76 12.2 11.8 0 3.06 3.7 11.6 7.82 1.74 9 10.4 4.2 10.4 4.76 1.59 13.3 8.24 9.33 9.25 10.7 10.6 10.7 11.8 11.1 12.2 10.4 2.81 11.8 3.71 1.88 11.8 12.7 9.59 12.1 4.61 7.07 4.63 7.92 9.87 4.15 1.42 0.42 2.42 8.35 2.94 4.72 4.12 8.95 6.93 0.42 7.67 5.84 7.13 9.02 7.32 5.64 10 4.37 3.28 1.42 1 8.88 9.91 8.87 14.5 10.7 3.67 6.29 2.42 6.72 1 8 9.52 8.23 8.56 8.38 2.22 6.8 7.83 3.6 6.84 5.38 8.81 2 9.45 4.93 5.45 3.77 10.5 11.6 10.1 4.39 4.97 4.94 8.46 3.63 7.16 0.74 9.91 7.21 7.46 5.92 8.6 7.84 8.46 3.4 0.42 2.2 1.59 9.22 3.12 2.88 1 9.03 1.59 6.47 4.09 4 9.66 10.7 6.65 4.48 5.21 6.39 3.67 6.98 3.74 8.25 0.74 1.42 4.83 10.4 9.31 4.69 1.88 4.3 8.44 4.84 8.99 5.66 7.63 6.48 3.5 6.67 7.92 7.57 7.98 4.44 6.97 8.14 8.88 5.25 0.74 8.75 8.56 0.74 5.71 7.74 4.2 6.73 6.19 8 4.48 9.86 4.28 2.66 3 1.42 7.72 8.08 0 3.17 5.31 10.7 3.32 0 8.6 12.4 8.6 8.26 5.06 9.1 1 0 0 3.46 8.35 2.81 4.68 9.67 1 9.82 4.15 5.46 0.74 5.72 7.07 8.75 8.03 9.85 4.45 0.42 5.35 3.97 5.76 2.12 3.46 12.5 1.22 7.54 7.71 6.78 7.33 0.42 5.17 2.66 0.42 6.15 12.4 2.5 3.42 9.24 6.49 6.03 7.04 9.34 2.22 3.84 0 8.05 0 4.61 0 7.53 9.41 8.65 4.99 5.99 0 3.12 4.51 9.44 3.22 0.81 7.5 5.89 2.12 4.3 8.36 2.12 4 0 9.41 0 1 4.97 7.07 2.59 7.32 7.16 10.1 6.34 4.09 2.22 2.59 5.34 0.42 7.29 9.8 7.96 2.88 10.2 2.88 7.92 2.66 4.06 6.86 6.72 6.78 9.12 8.04 8.39 0 6.07 9.51 9.23 0 8.57 8.17 1.59 9.97 5.02 6.16 10.6 8.98 5.03 9.15 2.5 4.15 3.46 4.67 10.6 0 8.3 6.06 1.59 5.1 8.31 9.79 9.77 2.74 9.31 0.74 9.03 1.42 4.59 4.83 5.83 8.59 5.77 9.92 2.12 9.92 8.65 2.59 7.41 8.12 5.54 6.04 5.16 0.74 5.87 4.89 9.79 4.06 5.3 8.16 6.85 3.91 8.09 0.74 6.2 7.83 6.61 3.24 7.28 7.51 0.42 4.57 6.03 5.22 4.7 8.32 7.77 1.88 11.6 6.2 9.47 5.32 4.76 5.1 9.75 7.29 9.05 9.61 9.16 3.59 1 7.93 2.94 3.78 5.44 9.19 8.92 9.67 4.55 7.57 8.44 9.63 8.14 4.96 0.74 5.59 5.89 8.74 1.42 6.5 5.8 6.82 6.13 2.22 10.3 8.8 10.8 11.4 10 9.97 13.4 13.3 13.8 12.4 11.7 8.09 11.9 10.6 10.4 0.74 7.39 8.24 8.49 9.39 10.7 9.13 11.5 13.5 13.1 8.46 8.62 10.5 1.42 7.99 4.88 9.73 0.42 13.2 8.68 11.6 10.8 11.9 10.4 9.72 9 8.29 7.5 6.1 10.1 9.55 10.2 11 9.4 3.28 7.23 9.63 5.89 11.7 10 9.42 11.2 14.9 2 1.42 7.61 4.17 7.1 1.42 9.61 2.81 9.46 12 3.5 9.99 7.96 9.92 10.8 13.2 7.58 9.56 10.5 9.21 7.67 9.2 10.4 8.12 9.31 10.5 6.78 11.3 10.6 9.17 10.4 6.48 11.2 9.77 9.03 7.78 9.44 8.45 10.3 10.2 8.41 10.2 10.5 10.5 10.5 9.8 9.29 8.72 9.2 1 8.08 8.41 8 2 9.36 9.99 8.57 10.2 1.22 1.22 8.78 2 11.6 2.81 7.61 7.82 6.29 0.42 1.22 4.5 12.6 7.32 2.32 13.4 2.5 11 14.1 10.8 10.7 11.3 11.2 12.6 11.7 8.45 2.42 8.53 10.2 10.5 0 13.9 0 6.11 10.3 9.3 6.94 9.92 9.14 8.46 9.58 10.7 7.95 9.27 9.24 7.69 9.62 11.3 12.5 11.7 8.95 0 10.9 10.9 6.83 10.1 9.63 0.74 10.7 6.46 0.74 10.7 8.94 0.42 9.4 9.07 4.76 11.1 3.5 11.4 0 3.55 7.65 8.26 9.51 1.88 11.6 10.2 8.88 2.88 6.43 10.1 7.91 8.68 0.42 2.94 9.56 11.8 9.12 4.28 10.2 10.7 7.83 9.66 10.4 9.18 10.8 6.32 10.7 2.81 9.81 7.89 11.1 7.58 6.14 9.92 9.67 1.22 8.66 3.32 9.2 8.37 7.51 8.68 9.16 9.04 10.6 8.61 7.29 12.3 8.6 9.87 13.1 9.45 8.72 4.77 6.08 8.02 1.59 10.8 9.08 5.24 2.5 4.63 8.47 8.54 11.6 11.5 8.15 0.74 11.8 9.28 13.6 9.63 10.9 11.2 0.74 9.45 6.79 10.8 9.49 8.4 9.77 8.65 10.8 9.12 10.5 11.3 8 7.74 9.87 10 0 8.77 5.42 10.5 7.22 7 9.43 8.82 12.1 8.29 0.76 11.4 0 11.1 8.93 11.1 3.06 6.27 9.72 4.96 6.59 3.12 11.2 11.1 12.1 1.88 0.74 0.74 14 7.52 0 9.19 11.2 10.2 14.7 11.8 12.5 11.3 9.74 7.19 13 12.1 11 0.74 10.8 0 0.74 5.28 6.67 13.1 8.77 8.28 0.42 0.42 0.74 3.28 9.42 1.22 10.8 8.23 9.06 9.67 10.7 9.06 9.67 2.66 12.8 13.2 12.1 4.84 8.37 11.9 11.3 10.6 8.15 13.3 12.5 10.3 3.81 9.35 6.61 9.98 3.55 4.15 9.87 4.77 9.98 8.45 4 10.4 4.97 9.86 9.2 8.04 10.3 9.77 9.1 12.3 5.5 9.64 4.55 12.1 8.61 11 13.4 8.7 11.5 8.59 7.9 10.5 10 11.7 6.9 7.6 15.2 14.7 15 9.97 10.1 11.7 9.36 5.48 12.5 11.7 2.42 9.83 7.37 9.58 6.6 13.4 11.7 9.32 8.16 6.16 8.4 12.3 10.9 7.58 12 5.05 4.32 4.68 8.01 9.61 4.96 9.64 12.3 9.47 10.5 11.6 11.2 10.3 9.55 10.2 10.7 11.6 6.15 11.1 10.3 6.95 8.72 1 9.61 10.3 10 8.35 4.44 3.41 1.59 9.68 0.42 8.89 0 9.14 12.8 8.83 13.6 12.2 13.3 11.8 12.1 11.9 11.3 10.3 13.7 1 12.2 13.1 0 6.01 3.28 8.92 6.22 9.92 7.41 7.63 4.51 9.02 9.54 9.01 0.74 1.59 0.42 7.14 9.07 8.41 6.99 6.73 7.78 9.28 8.43 6.23 9.69 7.35 7.91 8.58 8.77 9.14 1 10.3 10.4 1.88 12.7 0 8.92 9.85 1.42 1 3.55 9.43 2.94 7.1 9.71 11 9.04 8.35 12.7 2.66 4.32 10.9 11.3 11.9 8.82 11.3 9.85 1.42 3.67 5.51 2.74 11.4 10.2 7.25 7.85 7.99 10.3 11.6 13.1 10.8 6.5 6.22 11.6 13.6 10.5 6.84 7.17 14.3 13.4 13.6 10.6 5.7 14.2 10.1 14.5 13.8 1.22 11.9 11.3 9.92 9.94 5.15 3.55 14.8 10.9 7.73 2 1 2 1.88 0.74 0 2.59 8.18 9.12 10.5 11.8 11.4 3.97 2.42 8.36 1.75 5 7.64 9.91 3.55 3.12 3.46 7.43 7.46 2 7.97 3.28 0 1.42 1.12 7.02 8.6 8.72 0 5.02 5.88 8.42 3 1.59 0 7.41 4.29 8.2 11.6 0 8.43 7.4 5.2 9.61 8.85 9.74 8.91 10.1 9.9 7.8 9.6 6.91 7.28 1.88 0 2.32 7.49 1.88 6.6 8.02 5.99 1.59 2.22 4.06 7.05 2 4.37 5.86 2.5 5.83 9.15 5.05 1.22 10.2 8.54 2.32 4.37 10.3 8.56 5.08 1.88 3.97 3.17 9 4.96 1.42 5.86 4.76 11.2 10.3 7.11 2.74 0 4.03 5.53 2.66 7.17 3.67 0 6.58 2.88 10 4.63 10.5 8.11 5.02 1 0 7.32 5.09 3.28 1.22 1.22 2.12 3.06 3.5 2.12 5.06 8.83 4.12 5.93 11.1 2.12 2.34 0 8.55 1 11.8 11.9 9.6 11.1 7.06 10.3 3.37 3.91 4.17 9.08 10.5 2.22 7.84 11 2.12 8.28 0.42 9.31 7.35 14.5 11.1 3.28 13.1 6.23 5.29 1.42 1.42 6.85 2 8.89 0.42 9.51 0 5.95 8.63 0.42 7.83 8.83 3.84 7.12 3.37 1 3.06 2.59 8.67 6.13 8.23 8.15 0.42 6.11 7.93 7.6 0 7.63 2 3.7 2.81 1 1.74 10.5 5.84 9.63 1.59 0.42 8.37 8.87 2.94 2.5 9.85 0.74 10.9 3.94 5.57 1.59 11.1 3.91 3.32 5.26 2.32 3.55 0.74 6.8 1.59 6.85 0 0.74 4.3 9 1.42 10.7 1.42 3.02 11.4 11.1 3.37 5.49 7.03 0.42 10.8 5.3 4.57 6.42 13.5 11.8 3.91 7.56 8.01 4.2 8.36 8.7 8.09 11.3 8.53 1 10.1 2.22 6.16 2.5 6.94 10.5 3.5 8.43 13.1 0.74 7.01 9.75 7.87 2.59 13.8 7.52 0.42 9.14 15 4.9 9.93 6.82 1.74 1.42 7.22 4.04 7.84 5.13 10.9 8.45 15.2 3.22 8.17 6.78 8.34 6.51 11.9 5.99 1.59 8.02 0.92 10.3 8.84 7.13 6.22 2.81 4.77 6.86 4.09 4.72 4.03 0 5.36 9.84 10.6 9.79 0.74 6.45 10.3 5.78 3.37 4.7 3.91 7.08 7.45 5.12 9.59 0 1.42 7.28 8.93 9.27 6.32 3.32 4.89 1.22 3.06 15.4 5.39 2.12 2.81 8.92 9.13 0.74 5.68 1.88 0.42 4.91 2.32 10.5 2.14 6.31 11 9.79 7.93 7.02 9.49 4.63 4.12 1.59 7.6 3.74 10.3 9.77 12.1 12.5 4.57 11.3 8.57 12.2 8.46 11.6 7.41 7.17 8.43 7.93 4.06 3.7 5.84 5.67 8.04 8.25 3.81 8.42 7.9 7.64 9.06 11.1 7.91 8.07 0.42 11.5 0 12.3 7.3 9.99 12.1 11.5 6.15 10 9.73 2.74 9.69 9.72 3.81 8.67 7 6.98 8.3 6.55 8.78 4.7 8.74 8.67 2.32 13.7 7.5 8.97 7.88 11.9 3.77 2.74 8.37 8.58 8.12 10.7 9.1 12.7 10.8 9.48 11 10.4 12.4 11.2 10 8.93 12.4 0.74 5.28 0.74 13 5.61 5.16 12.3 9.5 10.3 0.74 8.34 9.38 9.39 10.2 11.2 6.04 12.7 7.98 6.58 11.7 7.99 12.5 9.71 10.4 11.7 8.05 5.77 12.3 8.42 12 0.42 2.22 6.4 1.42 1.59 1.88 5.15 10.7 6.35 8.02 7.85 6.59 10.7 5.47 5.96 6.2 0.74 2.74 5.54 1 7.43 6.17 5.9 6.83 9.19 8.99 0.42 3.7 7.08 8.27 9.6 3 7.19 2.42 3.59 12.7 6.78 3.81 4.46 6.29 2.59 7.11 0 7.56 2 5.49 9.48 13.5 6.05 4.53 7.94 10.6 0 6.23 5.61 4.22 6.02 1.42 6.77 8.33 9.16 6.93 0 6.81 0.74 1.22 7.64 7.84 5.68 4.72 9.54 7.3 0.42 6.72 0.42 1.59 0.42 5.09 9.23 2.12 6.84 7.3 4.28 6.35 10.3 6.74 9.19 4.2 7.22 12.9 5.1 0.42 5.55 4.79 9.37 7.58 2.42 9.11 0 4.28 4.53 7.28 5.09 6.15 8.43 12.6 4.81 3.94 12.3 13.5 7.14 7.2 6.73 5.93 4.96 12.4 2 2.22 2.22 3.97 6.26 0 5.15 5.53 8.67 6.03 2.81 6.84 11.1 8 7.56 2.88 6.78 1.42 10.7 8.39 8.33 0.42 10.9 12.5 2.74 10.3 1.59 1.88 1.42 11.5 0 1.74 6.36 0 8.23 11.7 4.76 1.22 1.42 1.42 3.42 0.42 9.14 6.33 6.41 9.47 10.7 12.2 10.1 8.89 7.12 10.7 4.86 11.2 11.7 9.36 2.12 0 13.4 9.61 0 8.74 7.46 4.25 13.4 7.3 4.68 10.7 0.42 5.29 6.47 3.22 3.5 3.53 8.73 2.12 0 5.16 8.63 4.03 8.69 13.7 5.86 8.56 2.32 4.2 6.08 4.53 4.65 8.55 8.4 0.42 10.7 1.42 5.49 2.12 4.22 0 5.88 4.99 4.91 1.88 11.4 1.92 4.2 8.73 1.04 7.11 8.44 5.93 2.81 12.5 8.63 10.3 5.57 3.84 8.15 4.77 4.03 8.32 7.54 7.89 7.08 5.05 5.26 6.51 8.37 4.5 5.99 9.02 9.87 4.86 2.5 13.2 3.5 6.85 7.82 7.77 8.38 6.99 6.82 7 2.74 0.42 5.44 8.16 5.76 1.82 7.78 0.42 9.78 1.74 7.7 7.41 6.24 7.34 6.09 9.52 10.1 0 8.9 0 5.42 10.1 4.53 8.99 9.22 6.92 2.5 9.9 13.8 8.5 4.74 6.74 0 3.7 4.66 1.74 5.52 10.1 0 4.61 6.21 12 5.95 8.1 8.32 9.8 1.15 11.9 6.73 6.36 10.3 3.5 3.55 6.15 5.87 9 2.59 2.81 8.41 2.81 9.49 0 4.65 0.42 1.03 7.1 1.59 8.35 2 7.43 9.17 5.66 1.42 0.48 2.74 8.57 1 3.37 0.74 6.28 0 6.79 8.02 9.23 7.02 8.01 10.1 9.51 6.91 12.8 0 13.8 1.42 12.1 0 9.41 10 12.8 12.8 3.32 0 12 13.1 12.5 0.74 6.45 3.37 9.77 2.12 12.8 0.74 1.59 8.95 10.4 6.24 6.17 9.29 9.68 7.93 0 14.2 10.8 15.6 5.03 9.13 0 6.77 10.7 7.17 11.9 10.6 10.5 15.1 12.9 1.59 9.81 9.09 11 0 8.36 8.74 8.68 0 8.69 8.5 11.6 9.99 8.61 7.95 10.5 4.84 10.9 5.83 9.31 9.71 0 2.19 9.43 7.38 9.19 8.43 10.8 8.39 4.25 2.97 9.82 2.81 7.49 6.88 5.83 11.7 1 7.32 4.55 10.7 0 8.73 5.96 11.2 11.4 12.7 8.8 8.14 7.48 8.02 0 0.74 7.42 9.96 6.59 6.54 7.72 8.82 1.42 8.98 9.23 1.34 8.52 6.33 3.28 6.31 3.22 0.42 6.31 7.92 7.89 1 5.21 2.88 7.41 4.86 9.34 8.33 1 1 10.6 4.86 3.59 0 4.17 8.4 7.02 0.42 4.17 1 6.57 0 7.23 2.66 2.32 4.53 12.1 3.06 7.16 5.79 5.97 4.55 6.34 3.42 7.04 4.55 4.93 10.5 5.13 6.52 7.68 1 10.3 0.74 5.68 7.42 5.02 9.43 9.49 3.59 8.04 7.67 10.9 5.06 0.74 10.2 0 0 3 0.42 6.32 8.25 5.42 2.32 7 9.38 0.42 2.12 5.17 11.2 7.88 1.88 5.55 1.59 9.24 1 1.42 9.17 1.59 6.79 8.54 5.73 8.66 0 7.97 9.01 11.5 14.2 10.3 9.13 9.61 2.98 8.5 10.9 6.73 8.46 4.57 4.99 11.8 6.89 5.34 9.33 7.72 8.9 9.05 10.4 11.2 2.59 9.56 5.89 11.9 5.1 7.07 12.6 11.2 4.58 8.8 0 0 12.5 7.15 4.84 11.7 3.63 6.17 5.61 5.29 9.21 4.39 10.3 7.56 11.2 12 11.4 12.6 12.1 1.59 6.12 3.84 8.38 6.02 10.2 11.3 7.59 6.81 8.68 10.3 11.6 10.5 9.21 10 6.87 8.65 5.67 11 10 3.28 5.68 11 10.3 9.27 1.74 12.4 9.66 9.76 9.38 10.9 9.05 12 9.36 11.3 12.2 7.42 10.9 12.1 12.6 6.96 8.08 7.82 11.3 10.2 7.41 4.35 10.7 4.22 2.32 6.06 7.89 1.14 6.49 8.42 1.74 12.6 3.81 0 6.83 9.02 4.42 10.8 7.87 9.34 10.4 11.4 9.3 1 9.92 11 10.4 7.88 9.75 7.82 1.22 2.12 11.9 8.88 9.78 9.43 9.97 8.98 10.5 11.6 1.88 0.42 9.92 0.42 12.3 12.1 8.98 11.9 9.7 9.11 10.7 10.7 9.94 10.4 4.92 9.25 9.21 8.78 2.22 7.97 7.99 9.31 10.1 8.8 7.91 7.89 10.9 9.84 1.22 0 3.5 12.8 9.56 9.96 1 9.43 6.29 7.56 3.12 7.4 10.9 10.1 4.39 6.9 11.8 9.26 8.97 7.73 14.6 10.6 12.8 7.64 11.5 12.3 5.65 8.67 14 10 1.59 9.8 10.4 8.35 7.52 10.2 6.87 9.63 5.89 8.01 11.3 10.3 10.7 11.7 1.88 3.97 9.85 9.54 11.1 7.75 7.41 11.1 7.25 10.4 0 0 3.17 2.81 7.92 12.8 4.86 8.83 1.74 1.42 8.02 9.89 4.48 3.12 8.25 7.3 8.81 3 9.06 10.2 3.91 11.1 6.18 9.39 9.73 10.4 4.93 4.42 9.34 1.74 5.92 10.8 10.9 5.26 3.37 8.46 11.4 1 0.74 11.5 12 5.78 7.39 4.68 8.75 9.69 4 3.77 2.66 4.86 5.87 2 7.18 3.32 2.66 4.44 6.87 9.55 5.55 10.6 10.4 5.47 6.82 4.05 4.33 6.24 5.22 11.6 6.79 0.74 6.89 0.42 9.79 7.85 6.26 8.29 0.74 1.22 8.4 9.88 1 3.12 6.57 1 9.8 2.88 6.27 6.39 1.59 0.74 7.97 8.79 8.07 6.32 12 5.06 6.34 2.74 6.29 8.02 4 7.12 8.18 7.32 6.87 6.08 6.69 7.27 3.55 4 6.89 0.42 6.51 8.58 4.79 4.46 3.84 0 1.42 1.59 1.22 3 4.97 1.22 9.03 6.03 6.05 6.46 2.5 3.28 4.88 10.2 0.42 0.42 2.32 0.74 3.5 2.66 7.43 0.42 5.95 8.94 8.25 3.46 9.05 10.7 0 8.31 8.86 2.32 9.06 14 12.1 10.3 3.12 6.89 6.61 1.74 8.73 13.6 9.88 10.5 10.2 2 5.05 4.89 3.22 1.74 5.05 5.26 9.52 9.8 6.08 7.59 7.16 11.2 9.9 9.09 8.77 8.73 7.71 10.4 10.1 10.3 5.72 2.66 2.12 9.12 10.3 6.93 8.16 10.2 10.3 5.61 8.86 1.22 6.53 6.55 3.5 0.74 0.42 11.3 4.77 6.52 10.1 8 0.42 4.72 14 11.1 6.9 9.14 0.42 8.88 14.1 10.1 4.68 11.8 10.3 10.4 9 11 11.5 6.52 11.2 9.39 10.2 10.2 9.64 8.16 8.13 2 9.61 8.83 14 9.86 11.4 8.6 11.8 5.68 12.2 7.73 6.66 11.7 12.8 9.66 11.5 0 10.7 9.67 10.5 2.43 1 10.1 8.08 7.01 8.45 13.6 9.02 11.8 11.1 10.5 12.3 11.1 12.8 10.9 10.4 10.8 6.99 11.3 11.5 10.6 10.4 11.8 10.5 11.7 11.6 11.1 10.7 11 10.6 12.1 11.2 11 11.5 11.2 9.94 11.7 10.8 11.8 9.86 11 11 11.5 11.3 11.1 9.82 10 8.66 13.2 13.3 11.6 9.85 9.24 7.16 7.66 7.23 7.66 0 1.74 2.81 8.29 10.3 8.86 5.41 6.63 5.8 11.1 12.5 15.2 10.7 5.17 10.6 7.01 3.22 11 8.4 5.64 1.42 12.8 1.88 11.7 11 9.25 9.26 9.81 10.7 8.93 10.3 8.85 8.93 9.24 7.5 9.18 10.1 11.8 0.42 10.2 9.57 9.01 3.17 2.32 11.4 14.1 10.1 10.6 11.9 4.32 10.7 6.99 2.32 10.4 6.18 4 7.8 10.3 12.2 13.9 9.91 11.4 12.4 11.4 11.9 0.42 9.97 12.6 0 8.53 10.4 9.64 9.2 9.83 11.2 7.34 6.96 7.32 14.3 12.2 0.74 10.5 8.44 10.4 7.71 13.3 5.49 1 12.5 9.46 9.4 8.08 1 3.12 6.75 10.4 10.4 12.2 11.3 8.14 1 10.3 6.08 5.79 5.42 12.1 9.72 8.79 1.42 7.49 0 9.09 0.74 0.74 3.42 0 1 3.77 3.63 5.89 8.44 12.6 10.1 12.3 9.38 10.6 5.77 10.7 8.53 7.77 9.82 8.67 10.8 8.45 0 10.1 5.08 6.28 10.1 7.78 6.62 9.51 8.74 0 5.56 8.61 8.04 4.15 6.79 7.95 0.42 13.3 10.7 9.99 12 9.13 0 11.3 10.4 0.42 2.22 6.99 6.88 8.29 1.22 1.74 10.6 10.3 14.3 11.2 6.08 8.02 7.81 7.66 0.42 4.86 6.43 9.03 12.8 9.84 8.97 12.3 8.95 0 10.4 4.3 11.4 2.22 0.42 9.95 7.19 12.2 10.7 5.7 3 9.75 4.42 5.63 2.42 3.84 6.06 7.94 9.1 14.3 3.8 6.26 12 1.22 1.42 6.8 14 7.31 10.5 4.68 11.3 10.6 9.02 9.88 10.7 8.95 9.22 0.42 4.53 8.82 9.41 8.79 13.8 6.83 1 10.1 14.2 4.83 4.57 9.78 7.22 11 3.24 10.1 9.01 4.74 9.39 9.07 2.22 9.28 3.17 12.1 10 9.62 11.8 10.5 7.95 0 5.87 1.42 9.89 9.01 10.8 10.4 6.74 11 9.35 8.59 1.22 3.35 1.22 11.6 3.32 7.73 11.2 6.19 4.91 0 9.02 9.42 11.1 10.8 10.6 12.5 7.9 8.73 11.2 13.4 8.28 2.59 13.2 6.37 4.16 0.74 11.3 11 5.68 11.2 10.8 10.8 9.99 7.73 9.18 7.32 9.06 8.67 10.7 8.46 9.67 1.22 8.54 9.42 9.81 7.58 11.4 9.13 8.12 8.79 8.89 9.83 10.5 7.58 8.79 10.7 7.27 9.45 8.2 9.43 10.1 9.09 10.5 11.1 8.79 9.59 2 7.98 5.94 11.2 6.4 8.13 9.43 10.8 10.2 7.59 6.15 11.5 3.32 9.32 9.86 9.43 8.94 10.1 8.75 10.3 8.88 11.3 7.69 9.74 10.6 12.2 10.9 10.4 10.6 1 12.5 9.58 2.77 5.3 8.47 10.3 9.72 8.92 8.93 11.1 9.34 9.21 10.6 9.01 9.22 9.08 10.6 7.76 8.23 8.68 8.9 9.43 7.31 12 11.9 11.2 10.1 11.8 9.16 10 11.3 10.1 10.7 11.1 8.26 10.8 9.3 9.41 10.4 10.8 10.1 10.8 3.22 9.5 5.63 7.94 8.27 10.4 11.2 7.23 7.94 7.35 9.49 9.31 12.2 9.78 12 9.36 8.37 7.14 11.1 4.17 9.01 10.2 8.78 8.67 11.3 7.89 5.97 8.87 10.3 7.86 7.92 2.66 10.9 7.16 8.29 6.55 6.69 2.22 8.75 4.46 10.1 8.33 9.04 9.47 10.4 10.9 8.17 11.3 7.71 8.23 8.96 8.77 4.2 8.5 9.7 8.81 9.61 8.38 10.2 9.88 0.51 2.32 2.59 10.8 0 9.63 8.04 6.37 9.01 9.59 9.25 10.4 11.5 1 11.1 9.46 2.74 7.37 10.2 8.77 12.3 10.9 10.1 8.89 8.86 8.09 10 1 10.8 10.4 8.84 9.33 11.1 7.05 8.87 10.4 10.4 5.13 3.67 5.77 11 11 11 10.4 8.04 6.24 7.02 7.83 11.3 8.54 10.9 7.45 11.4 10.7 6.55 1.22 10.8 10.5 8.91 8 10.6 10.5 5.26 9.77 9.28 4 11.3 8.64 11.2 6.68 8.88 11 0 9.39 9.23 3.17 9.19 10.4 5.05 10.2 7.02 1.22 9.54 4.2 9.04 9.79 7.96 9.81 10.7 10.9 11.6 6.83 11.4 4.94 12.7 9.65 7.35 4.67 11.5 10.4 6.49 3.88 8.86 9.79 9.63 9.25 9.44 1 7.95 2.59 5.61 9.68 10.2 8.46 7.8 7.32 9.22 10.3 9.72 11.7 2.32 11.3 10.7 8.21 11.6 9.22 9.21 7.37 4.81 8.2 11.2 0.42 7.37 12.7 9.33 9.08 4.28 11.1 6.81 9.11 11.3 10.8 12.7 6.69 10.3 9.92 9.39 6.55 7.35 7.28 10.9 8.06 8.74 7.48 10.7 9.89 1.74 9.65 11.3 10.4 7.81 10.5 10.6 0.42 10.3 8.52 10.8 11.7 1.22 9.93 9.8 8.92 8.81 5.77 9.64 10.1 8.55 6.28 9.34 9.1 7.96 10.7 5.95 8.49 8.73 12.1 11.8 8.72 11.1 9.47 12.2 9.88 8.72 9.94 11.8 11 11.1 10.2 10.7 5.02 6.04 7.07 9.54 7.55 11.2 12 10.1 9.75 9.65 9.74 10.8 10.5 5.62 9.83 8.28 6.34 9.1 10.1 8.82 8.94 8.82 10 9.07 9.14 8.36 8.87 7.99 9.12 11.3 8.71 1.88 8.43 4.64 8.96 3 8.98 10.3 10.1 10.8 9.72 1.42 9.58 10.2 9.95 8.41 9.71 10.5 10.2 11 8.05 6.73 9.57 10.5 10.1 11.6 10.7 10.8 11.9 7.02 10.6 9.78 11.4 7.9 10.7 10.2 9.4 11.8 9.31 0.74 8.47 10.6 11.3 9.82 9.47 12.1 7.68 10.4 7.53 8.5 11.7 11.6 10.8 10.9 9.16 10.8 9.95 11.6 10.2 10.3 7.82 10.4 9.25 11.5 8.86 1.74 9.53 7.11 8.2 8.95 8.08 10.8 8.64 10.2 9.01 12.1 8.36 4.77 4.53 9.75 11.2 9.19 4.51 8.46 9.33 8.64 9.99 10.1 7.85 10.6 13 10.4 6.15 9.12 0.42 8.34 8.45 5.12 9.86 8.18 10.8 8.8 0 11.1 1 8.57 9.97 10.8 7.69 10.5 6.59 13.4 7.4 2.42 13.3 8.56 9.28 4.42 10.8 8.48 8.68 2.43 10.7 8.35 9.93 10.7 7.41 3.59 6.42 9.13 9.23 0 7.35 12.4 8.69 8.59 5.69 10.9 13 4.5 7.18 6.24 8.96 10.3 9.82 12.5 9.65 10.3 8.57 10.2 7.18 9.06 8.96 10 8.42 0 3.5 10.3 4.28 11.2 11.2 9.72 8.7 12.5 4.84 4 9.32 9.81 11.6 6.09 12.7 1 11.2 10.6 14 11.9 9.05 12.1 11.9 5.21 1.22 12.7 5.09 8.81 11.4 13.5 11 7.38 5.93 1.22 11.4 7.93 12.3 5.84 14 4.59 9.39 9.35 7.81 10.1 11.6 11.9 1.74 9.8 10.6 14.5 1.88 10.5 12.8 14.3 7.96 7.67 5.63 7.59 9.88 11.5 8.74 8.59 15.5 10.4 9.03 9.6 12 8.18 9.79 9.95 8 5.39 11.6 11.6 9.58 10.6 10.5 9.68 0.42 9.33 9.24 11.4 0.42 9.63 11.5 8.67 15.7 7.98 8.23 3.32 6.2 7.15 4.77 8.22 6.33 7.33 7.88 10.6 8.62 8.82 9.36 8.53 7.38 10.5 10.8 8.55 2.62 10.9 8.98 6.35 4 9.68 10.4 7.59 7.25 8.43 10.2 8.53 11.7 9.1 12.9 5.2 4.83 9.82 8.1 3.91 10.9 2.66 5.96 0.42 11.6 3.17 10.4 12 0 9.03 9.6 11.2 12.1 10.1 10.9 10.1 11.2 3.55 9.2 9.06 11.5 2.59 12.3 5.43 4.84 3.51 0 11.3 11.2 10.8 10.4 7.97 8.3 8.81 7.77 6.36 6.67 1 0.42 6.55 8.46 6.39 6.46 5.06 4.09 9.35 3.7 9.58 7.82 11.2 5.77 12.3 3.7 8.55 9.12 9.99 8.76 8.75 9.17 9.35 9.92 10.2 2.42 10.1 8.74 7.55 9.96 7.64 4.44 0.74 5.69 8.64 8.75 4.17 7.7 0 0.42 9.33 0 4.28 9.31 2.13 10.3 9.49 10.6 1.59 10.1 7.95 5.35 1.06 8.59 3.75 8.8 7.64 7.68 8.72 9 9.93 8.13 11.4 9.39 5.35 9.14 3.5 8.06 7.76 8.7 10.9 8.94 4.76 4.14 10.1 9.34 11.5 10.8 11 6.48 2 8.42 6.85 8.2 12.1 8.87 4.97 9.91 10.4 4.5 1.22 9.84 9.39 10.5 10.5 10 11.4 11.8 3.67 11.6 9.76 4.03 2.42 10.6 10 9.09 10.2 7.07 8.74 7.26 2.81 9.2 7.78 8.39 8.94 6.78 10.9 10.2 7.59 7.71 2.5 0.74 12.2 11.1 11.6 8.69 10.5 8.98 9.11 0.74 10.4 8.86 10.6 11.8 7.99 10.8 11.3 8.98 10.4 10.1 4.12 10.5 7.51 9.44 7.37 7.64 9.76 9.93 9.48 9.26 9 11.8 9.8 1.88 12.4 8.28 10.6 9.91 6.95 6.19 9.57 5.25 3.32 9.54 7.94 8.1 8.6 5.02 9.53 8.57 7.76 9.74 1.88 8.19 8.97 9.16 8.77 7.25 8.01 6.61 10.9 9.14 9.37 7.86 11.2 9.58 2 9.73 9.04 9.87 7.58 7.06 4.59 6.43 6.44 0.74 8.48 10.9 7.03 9.12 10.2 0.42 10.1 5.34 10.2 11.1 9.53 6.77 4.97 9.3 8 7.75 10.2 11.7 5.98 6.74 7.06 6.81 10.8 11.1 4.94 10.5 9.29 11.2 8.09 9.58 2.74 11.8 9.38 9.25 9.13 8.7 9.81 8.19 9.87 0.42 10.2 9.67 7.55 9.2 8.31 10.3 4.94 9.5 0.42 12 9.71 3.59 9.06 7.5 10.5 6.1 10.1 4.22 9.12 3.97 6.32 1.88 9.88 6.61 9.02 12.8 7.87 8.73 8.5 10.6 9.22 9.67 9.37 12.2 7.72 8.59 7.83 9.61 13.8 8.67 9.38 10.1 10.4 8.36 5.16 8.42 9.56 10.7 8.83 7.8 6.92 7.19 7.81 8.99 8.32 9.62 10.3 8.58 10.7 7.69 7.73 11.1 9.03 7.83 7.69 4.03 9.86 7.11 11.9 7.24 1.74 9.42 3.32 4.32 0.42 10.7 8.52 6.59 10.1 7.5 9.47 10.7 8.26 12 1.59 3.32 10.4 8.59 7.37 10.1 9.59 0 7.65 9.7 1.59 11.5 9.31 11.2 9.69 10.1 10.2 8.25 8.86 3.12 11.5 9.64 9.32 10.2 10.4 6.68 11.3 8.5 9.45 8.37 8.58 9.27 8.67 9.21 10.5 8.95 12.1 8.41 9.04 10.1 11.1 8.7 7.42 11.9 8.17 7.94 5.29 1.42 7.37 9.12 3.37 8.74 10.2 8.79 9.57 0 10.5 7.51 8.96 7.93 10 10.4 9.37 11.2 10.1 7.9 11.6 4.84 10.4 8.53 11.4 10.6 11 10.6 10.6 10.1 8.58 7.9 2 8.6 10.5 8.93 1.88 9.15 10.9 11.4 11.8 6.56 8.62 6.65 10 7.98 10.3 9.66 9.66 8.86 7.59 9.94 8.3 7.34 8.53 8.51 6.12 11.6 8.17 9.95 6.25 8.97 8.62 9.06 0.42 9.59 8.83 8.88 7.83 9.03 10 7.76 9.21 9.9 12.2 5.55 8.85 7.79 9.17 10.7 7.2 11.9 5.84 9.89 10 10.2 11.9 6.95 8.61 10.1 8.65 9.66 10.6 10.3 2.94 11.7 12.2 12 8.39 11 8.26 11.6 9.71 8.44 7.52 9.4 10.3 11.2 6.38 10.2 9.21 7.53 6.54 9.68 8.83 5.55 10.6 1 11.8 10.4 2.59 9.26 7.4 2.12 8.54 9.15 9.9 10.4 9.44 6.55 8.66 9.32 6.98 10.4 7.02 8.31 9.88 7.47 11.9 9.17 9.25 8.49 9.97 9.57 7.74 9.29 2.42 3.59 10.2 7.24 6.12 6.81 9.2 3.97 10 3.37 11.5 7.34 7.28 5.64 9.96 7.62 10.4 9.77 4.42 9.72 10.2 10.5 8.1 3.81 6.26 7.84 1.88 8.28 8.92 9.31 6.84 7.89 10.2 3.06 10.2 8.84 9.72 9.73 8.51 7.69 7.83 9.67 9.95 8.95 7.92 10.2 8.81 6.85 9.92 7.03 9.94 7.8 9.14 1.42 8.34 9.98 8.42 10.3 0 8.71 8.56 9.23 7.93 7.18 5.09 9.17 11.7 10 8.33 5.2 10.8 7.49 10.4 10.1 9.98 9.21 11.7 4.28 8.08 10.1 9.99 8.97 9.54 10.3 8.15 11.7 10.1 10.8 11.5 8.75 5.48 5.89 8.98 9.48 9.46 7.65 8.69 9.92 9.79 5.17 7.39 9.36 9 8.95 13.2 7.31 8.72 9.86 8.61 8.31 10.4 9.8 8.5 9.85 3.59 10.6 7.49 9.51 6.42 12 9.02 10.3 9.66 8.87 1 9.73 7.09 9.3 3.59 9.87 9.72 9.51 11.2 7.55 10.5 3.37 8.32 7.95 8.02 9.39 8.13 9.71 8.12 9.37 9.28 7.43 0.42 8.76 5.8 8.97 9.09 10.4 8.07 9.84 7.22 10.9 10.8 5.41 9.68 10.6 9.93 8.78 9.58 12.3 8.92 7.98 12.1 10.3 10.2 6.84 8.64 9.72 9.84 10.3 10.2 8.85 9.35 8.19 9.54 12.2 8.19 9.45 7.82 8.09 8.7 7.88 9.94 4.39 10.3 10.2 10.6 7.84 10.7 5.38 8.38 9.89 8.46 9.41 8.58 7.94 10 8.24 11.4 5.78 1 9.14 7.42 8.29 1 8.99 11.5 1.42 9.71 8.08 10.5 11 7.89 8.17 7.74 7.92 8.79 10.2 8.95 2.94 10.3 9.04 0 8.52 11.3 9.77 10.9 9.34 9.99 10.3 11 8.04 6.71 6.59 9.57 8.69 8.87 8.76 7.27 3.55 8.44 8.25 10.2 10.1 10.9 9.76 8.21 7.2 7.47 9.11 8.38 10.2 10.8 11.2 5.44 6.78 9.3 10.4 10.4 7.31 10.1 9.62 10.3 7.87 5.59 7.49 11.4 11.9 1.22 8.64 9.17 12.9 5.53 5.86 8.67 1.74 10 9.18 10.7 10.2 12.9 10.8 8.7 10.5 6.44 7.9 11.3 10.8 1.59 4.46 1.42 8.06 8.93 7.9 4.79 7.31 5.93 7.23 4.39 8.38 9.25 10.2 0 10.4 10.5 7.58 10.1 9.99 11.8 8.66 3.22 9.78 5.42 8.75 10.3 8.21 7.32 4.35 10.3 10.9 8.85 3.7 8.32 3 6.77 0.74 4.32 0.42 9.5 7.9 4.28 12 9.34 7.52 1 2.12 8.73 5.78 5.19 9.86 8.29 1 2.42 7.98 10.3 10.6 8.33 8.49 8.45 7.64 2.42 10 5.49 9.93 9.79 11.1 0.74 10.5 9.38 7.09 6.65 10.5 11.2 9.36 10.1 8.12 10.4 8.81 8.31 1.42 9.13 8.79 7.46 10.7 11.6 9.57 10.6 6.99 8.76 11.5 9.03 3.97 8.96 9.97 8.13 7.64 7.59 10.6 10.3 9.81 8.93 10.4 9.82 10.5 9.83 10.6 8.21 10.2 10.4 9.8 8.77 7.72 9.11 7.76 4.32 9.46 7.43 10.5 9.9 11.4 8.93 7.69 10.3 9.15 8.86 11.2 11.4 8.76 11.1 4.42 8.79 8.68 9.22 7.16 10.7 10.8 10.4 9.34 8.1 9.25 11 11.9 10.3 7.35 9.07 10.8 9.89 10.3 8.23 8.22 10.2 5.84 6.84 9.47 10.7 11.3 6.99 8.35 9.36 7.62 11.1 8.89 10 6.17 9.16 9.23 10.8 1.74 11.8 6.03 9.6 10.9 9.06 7.73 9.24 10.5 8.03 9.28 8.52 10.6 4.66 8.62 8.83 11.4 8.65 9.62 9.2 8.44 10.3 5.83 5.92 7.35 9.28 10.2 6.67 10.3 11.9 10 6.28 8.52 8.73 9.87 11.5 10.3 10.4 10.4 9.69 10.8 8.44 9.81 10.2 9.85 14.6 9.86 9.06 9.74 9.49 11.5 9.29 10.2 10.6 8.95 8.76 9.57 9.04 7.29 9.1 10.2 6.51 10.1 9.83 11 10.5 9.41 10.5 7.71 9.47 3.28 9.58 8.49 9.66 8.7 8.68 6.77 10.8 7.85 8.69 9.47 7.86 9.83 3.97 6.68 10.1 4.61 6.68 5.1 8.23 10.4 8.79 8.94 8.14 7.93 8.38 10.2 8.82 4 9.08 8.57 5.8 2.88 0.42 5.66 7.51 8.19 1.22 8.14 9.44 8.92 6.81 9.98 10.9 0 10.9 7.74 11 11 9.66 7.09 9.96 11 10.8 9.92 6.78 10.1 8.2 9.86 7.73 10.7 5.56 8.25 11.8 8.41 9.44 9.37 11 9 10.6 10.1 2.91 10.7 6.39 11.2 6.57 10.3 1 10.1 10.5 7.74 10.2 9.6 14 8.14 7.61 10 10.2 5.64 4.83 8.42 10.6 2.5 7.94 1.22 12.8 12.1 8.41 10.6 6.31 11 7.88 9.71 4.35 10.8 9.75 11.8 7.06 9.65 9.22 11.6 7.43 11.2 9.37 8.08 10.6 3.46 10.6 8.27 5.48 8.16 0.42 8.56 10.9 11.4 9.78 9.25 7.31 10.5 12.7 4.28 6.87 10.1 10.7 12.4 10.1 12 8.64 6.32 9.14 9.47 9.72 8.57 6.86 0.74 6.45 0.42 10.8 9.09 9.44 9.67 9.46 10.3 10.3 11.2 10.6 10.4 10.7 9.54 7.33 8.49 6.88 9.51 3.37 2.5 6.57 8.57 3.73 3.44 3.55 5.62 7.48 3.85 2.81 2.22 3.97 8.85 10.4 4 4.57 4.06 5.69 3.77 9.39 0.42 5.13 8.57 7.76 4.94 7.8 6.59 7.01 6.61 9.72 10.3 5.65 6.15 7.75 6.56 2.32 7.78 9.13 2.12 2.5 0.42 6.37 9.18 7.9 7.86 10.1 3.06 9.24 11.8 1.42 10.9 7.96 7.67 10.9 9.8 8.03 10.2 4.12 9.87 9.45 4.44 10.6 9.79 6.11 8.9 10.6 2.32 9.29 12.1 11.1 10.8 11.9 1.42 0.75 10.1 9.21 9.53 9.11 9.14 9.31 9.08 8.11 10.3 6.34 0.42 1.22 8.95 2.5 9.88 2.88 7.05 11.8 4.96 10.8 4.77 0.42 14.4 7.7 7.37 11.2 10.2 1 8.19 11 8.58 9.7 7.1 0 9.22 8.34 9.11 9.7 8.66 4.83 1.22 8.82 2.81 8.59 0.42 10 2.66 10 10.2 15.4 5.7 0 11.7 10.2 11.2 10.7 11.2 7.68 9.55 11.2 10 11.5 9.73 11.1 7.58 6.83 11.6 11.1 12 10.5 11.3 10.1 10.9 11.1 8.02 5.98 10.4 11.8 7.87 9.63 11.4 8.04 10.2 9.94 6.4 9.31 9.14 8.32 6.88 8.81 11.2 11.8 7.76 9.51 9.49 8.74 9.82 1.22 7.82 12.4 6.29 10.1 2.12 7.93 10.5 11 10.8 9.92 11.8 8.19 8.75 9.24 4.91 11.3 9.22 9.44 8.87 9.83 8.51 9.26 7.5 10.8 9.67 10 11.5 10.3 11 8.42 6.19 11.6 9.79 11.8 0 5.3 4.68 9.54 7.5 10 6.54 11.1 6.71 3.42 9.5 7.88 4.65 8.16 10.4 6.81 7.73 10.7 10.3 11.6 3.7 11.2 9.51 8.67 9.89 9.58 7.87 9.93 2.5 8.16 9.83 7.94 11.8 8.72 11 1.71 11.9 9.94 10.9 11.3 10.8 8.94 0 8.3 8.92 8.42 11.5 10.1 10.2 12 9.99 3.12 9.89 8.31 0 11.5 11.4 12.2 4.46 10.4 7.69 8.71 11.4 4.53 10.9 1.59 8.38 2.12 8.16 8.51 10.2 11.7 2.12 8.14 9.02 11.7 2.32 10.1 8.84 9.03 10.1 0 2.5 8.47 4.09 8.5 7.7 9.66 5.26 5.52 0.42 8.58 9.37 10.9 11.7 11.8 4.55 11.1 8.28 11.5 11.5 13.6 8.17 9.35 8 10.1 10.2 10.4 6.21 10.4 10.4 1.59 7.9 7.45 9.93 8.86 7.4 2.12 0.74 5.86 10.3 10.9 8.34 11.1 11.3 10.5 11.4 10 7.73 9.69 8.77 10.3 7.91 8.24 9.7 3.63 9.25 11 9.66 4.37 8.78 7.52 8.17 10 12.2 8.97 9.55 11.5 8.58 7.65 8.63 7.58 1 9.05 9.78 10.3 5.81 12 11 8.17 9.13 9.33 9.39 9.39 6 5.84 12.5 8.29 9.74 1.22 2.22 10.1 10.4 5.1 3.42 5.68 9.75 11.3 2 7.21 6.44 7.94 6.19 8.22 0.42 6.11 8.46 4.35 5.54 11.1 10 4.06 3.28 13.5 9.42 8.39 0 0.42 10.2 9.21 0 3.84 9.89 10.1 9.1 10.8 8.48 10.4 7.37 9.72 4 7.91 3.84 2.32 9.79 10.3 10.8 6.27 10.7 4.48 3.5 6.41 9.79 9.06 8.65 9.11 6.48 8.6 9.02 9.04 7.08 6.57 10 9.58 1 4.89 11.1 8.98 3.22 9.5 9.64 8.01 10.6 4.28 8.86 9.04 9.49 5.34 6.41 4.46 9.52 11.1 8.38 4.2 9.55 8.24 9.44 0.42 10.2 0 10.7 2.5 2.42 8.99 9.29 9.75 11.7 9.81 8.2 7.77 10.8 7.78 10.3 8.42 11.5 3.59 10.2 9.11 8.07 1.83 1.22 9.65 5.31 4.25 9.75 7.32 10.8 11.6 9.67 7.47 6.32 2.42 10.1 9.43 8.9 0.42 8.25 9.4 6.79 9.37 7.09 5.96 1 7.61 10.1 11.1 0 8.05 11.1 7.5 6.29 11.1 9.39 10.2 7.14 8.79 5.99 8.41 9.48 2.81 13.8 9.17 3.46 8.45 6.61 1.22 3.91 7.77 3.32 8.03 8.79 0 8.53 10.3 8.8 9.83 8.77 9.85 9.29 9.65 4.17 8.74 2.66 2 3.42 10.1 2.5 9.72 9.69 7.82 8.99 9.67 8.02 10.2 9.22 6.69 9.75 0.42 4.7 10.7 8.51 8.11 7.45 5.97 8.81 0 11.3 9.09 7.38 9.49 7.07 10.5 6.75 4.42 10.3 8.53 8.99 10.4 9.67 6.65 6.03 7.87 9.88 6.47 10.5 10.9 10.4 9.7 9.4 9.06 8.99 10.3 9.5 6.29 12.9 7.39 8.34 9.55 11 10.4 7.33 6.77 6.88 2 8.89 1.88 7.88 7.78 8.18 9.68 8.11 8.73 6.74 9.85 2.59 0.42 11.5 8.55 9.28 8.76 10.9 7.09 9.97 9.7 10 8.65 6.97 8.35 6.23 8.62 5.55 7.8 3.77 8.22 11.2 8.58 5.58 9.64 9.98 9.39 4.3 2.94 6.35 11.8 11.1 7.73 3.42 5.15 8.39 9.87 6.89 8.64 9.43 9.26 10.5 8.72 8.81 10 3.59 10.7 11.1 11.4 9.09 10.4 9.42 5.39 1.22 7.11 9.44 9.9 5.17 11 0.42 13.2 6.61 7.68 10.2 9.79 2.07 3.5 7.47 8.8 11.3 6.43 7.46 11.5 10.8 2.81 10.9 10.4 11.5 1.22 8.76 1.74 3.7 5.82 4.2 11 9.2 2.59 10.9 8.23 7.97 10.3 8.96 10.5 8.22 4.77 10.9 11.9 10.9 11 7.16 8.69 11.1 11.7 10.4 9.23 10.1 11.1 10.1 10.2 8.53 10.3 9.2 12 10.2 1.88 11.1 9.54 7.65 9.78 11.3 9.93 7.56 4.63 11.6 9.78 10.5 9.35 7.56 9.53 7.71 6.2 7.98 5.13 5.12 10.6 9.11 9.81 7.9 6.91 10.4 10.8 10.4 8.81 2.42 10.4 9.45 10.3 10.7 10.2 10.2 9.19 8.36 2.22 10.5 2.12 0.74 12.2 6.09 11.3 12.6 10.2 9.96 6.28 4.81 8.28 9.73 10.4 11.9 9.59 11.4 7.05 11.3 7.07 1.42 9.25 10.3 8.26 12.2 12.3 8.68 6.97 8.78 9.24 11.1 11.4 12.1 5.16 8.36 6.04 8.41 7.98 6.85 10.5 7.26 9.83 10.3 11.6 8.74 9.09 12.2 9.81 10.7 10.7 10.1 11.2 10.7 10.1 9.57 9.79 9.69 2 10.1 9.18 6.84 10.7 10.6 11.4 12.2 9.81 5.38 2.81 2.5 9.9 8.75 6 9.6 6.72 13 7.37 11.1 10.9 11.9 8.95 10.6 10.1 8.86 11.2 10.4 5.99 3.7 11.4 9.83 10.3 0.42 8.52 10.2 8.84 0.42 8.03 7.53 9.84 12.2 2.12 3.63 11.1 9.58 10.3 8.95 5.87 0.42 0 0 11.3 13.8 6.98 2.22 12.2 9.4 0 11.5 9.79 4.35 11.5 10.1 4.96 4.32 10.5 8.28 10.9 11.1 9.83 7.84 1 12.6 8.35 10 9.09 6.79 8.36 8.57 9.82 11 0 8.66 9.96 5.8 5.38 0 9.83 5.58 9.46 8.56 11.2 16.6 8.07 10.6 1.22 4.61 0.74 1 10.1 2.66 10 10.2 7.41 5.67 9.14 1.88 9.08 10.2 10.6 10.5 7.79 4.46 1 6.46 10.9 0.42 7.28 7.62 9.5 8.7 8.57 10.7 0 8.51 2.5 0 8.52 11.9 4.09 10.7 11 10.4 1 8.73 7.59 10.7 8.6 9.46 7.58 8.6 9.7 9.41 1.88 10.3 9.77 12.4 9.88 11.5 10.1 11.4 9.97 11.5 8.58 8.54 10.5 11.3 1 8.25 11.5 5.82 6.75 6.68 4.91 9.56 10.5 0.42 0 8.09 9.33 0 12 8.89 9.65 11.5 7.83 9.33 1.22 7.94 9.59 5.52 9.59 2.59 7.73 2.12 7.18 8.48 6.35 1 10.4 8.93 8.85 10 15.6 14.8 14.4 13.8 10.8 10.1 14.4 6.77 14.9 7.91 13.6 13.1 13.5 14.7 14.1 13.1 13.7 11 14.6 3.06 12.1 12.1 10.7 13.5 13.7 13.5 13.7 13.5 13.8 13.9 13.9 14.1 13.4 13.1 11.9 14.1 13.9 12.7 9.78 8.83 13.9 7.98 14.6 14.5 13.2 10.9 10.1 13.4 13 13.7 14 12.4 14.2 3.01 2.66 4.06 7.97 7.24 13.4 2.12 2.32 14.8 10.2 9.42 11.5 8.7 9.17 12.8 13.5 14.1 13 14.6 12.8 12.9 14 12.7 13.5 13.9 14.1 9.13 14.6 14.3 14.1 13.1 14 13.3 13.3 10.5 9.65 13.2 9.09 12.4 6.77 9.42 13.2 10.1 9.79 7.84 11.5 1.59 6.53 10.3 10.6 5.85 5.26 10.4 9.71 9.73 6.08 7.28 6.01 6.97 8.84 11.8 7.78 5.13 8.95 1.74 12.6 4.86 8.15 13.7 13.3 2.22 10.9 3.06 0.42 13.3 10.9 10.9 10.9 8.08 8.69 11.7 10.8 6.93 12.5 7.7 9.46 11.7 10.5 9.8 7.13 9.61 9.95 8.7 10.8 4.47 7.35 7.1 6.19 6.9 0.42 6.05 1.42 9.52 4.39 0.74 4.86 1.42 13.3 0.42 5.09 8.56 9.98 12.1 1 3.94 8.49 6.67 4.88 7.27 6.8 8.13 0 3.71 7.8 3 3.12 0.74 0 8.58 0.74 0.42 5.8 2.59 2.74 12.2 5.19 13 7.14 6.72 11.4 12.5 11.8 7.15 12 11 3.17 8.37 10.1 13.2 10.3 9.93 9.06 8.95 1.22 8.81 8.08 7.17 6.05 10.1 10.2 11.1 7.46 8.2 11.9 4.84 4.06 9.96 9.54 12.8 11.5 8.39 7.36 3.74 4.35 8.42 8.13 8.55 8.88 7.68 8.54 6.07 9.72 7.37 7.73 8.63 7.79 11.4 3.88 9.69 0 8.97 2 7.35 7.22 9.03 8.15 1.42 10.9 8.09 0.74 7.05 5.36 8.73 7.22 6.91 8.61 2.94 11 1.59 2.94 11.6 7.24 0.74 9 10.8 11.1 6.72 11.9 7.84 1.74 4.03 6.49 0.42 4.3 10.4 7.87 4.61 4.83 4.3 7.67 10.7 10.1 12.3 8.79 10.4 11.2 7.9 10.4 6.2 5.08 10.7 6.86 3.42 5.78 2.12 9.97 5.82 9.17 2.5 9.7 3.94 11.7 8.73 4.25 9.74 7.85 8.51 11.1 6.47 9.59 9.64 5.37 9.94 6.17 5.97 4.12 8.29 5.25 8.75 12.7 0.74 8.72 6.44 9.88 9.97 11.6 9.51 10.2 9.15 6.69 9.22 1 7.1 9.5 9.91 8.3 9.45 2.12 2.74 8.97 8.23 7.05 1.22 0.42 6.25 0 11.8 1 11.5 11.8 4.89 8.63 5.73 11.2 10.7 6.92 8.38 9.59 7.38 9.69 0.42 4.61 6.29 2.12 11.8 4.37 1.59 11.6 10.8 8.01 10.3 10.3 9.29 0.74 10.5 8.31 6.21 9.62 10.2 9.47 10 7.59 8.89 6.97 5.06 0.74 5.45 4.68 11 10.6 9.44 2.88 8.04 9.06 1.22 3.46 11.3 6.7 7.35 6.32 4.06 9.23 5.38 5.67 7.62 4.53 7.53 0.42 0 1.59 8.26 8.12 1.22 9.81 10.4 2.22 10.9 9.47 8.14 7.94 4.88 1 7.84 2.32 6.52 5.2 8.65 7.1 0 6.2 5.29 8.01 3.94 9.65 10.4 1.88 8.45 6.7 9.47 11.3 8.49 9.38 9.62 9.93 9 11.9 9.65 8.65 11 8.64 4.03 6.72 0 1.74 4.3 6.65 4.39 5.79 10.4 3.22 7.04 10.8 9.63 1 4.4 9.21 1.22 11.2 3.17 4.94 0 5.37 11.1 6.89 6.72 11.4 1.62 0.42 10.7 1.22 10.9 10.3 7.38 7.44 4.56 1.59 2 11.3 6.73 5.87 6.14 3.67 0 10.5 0.74 6.94 4 5.77 8.26 8.91 10.1 0 10 5.98 1.22 3.37 9.87 4.03 6.24 0 11.2 5.64 10 6.14 6.68 8.43 0.74 2.94 7.49 9.93 9 7.17 9.17 1.42 7.08 3.94 0.42 2.59 3.46 13.5 6.06 6.32 6.88 9.38 11.2 12.7 2.88 0.42 8.45 10.6 4.89 1 11.4 8.63 9.74 9.8 10.2 8.36 8.22 3.42 8.05 11.5 10.2 7.05 11.2 9.85 9.11 7.9 8.91 10.5 7.88 8.61 9.19 8.74 10 11.9 9.32 9.88 9.87 9.49 10.1 8.63 8.89 9.07 7.94 10.1 7.2 9.55 7.38 0.42 9.44 12.7 8.89 6.49 10.7 7.19 8.87 1.74 9.98 13.2 9.23 6.15 9.59 10.1 6.91 9.13 7.57 4.67 11 7.95 9.81 9.54 6.89 9.19 8.15 7.08 9.73 0 10.1 12.5 9.77 7.18 10.2 10.1 8.6 12 8.27 8.33 7.63 8.23 8.53 7.32 9.05 8.81 6.99 4.87 6.67 4.25 7.75 7.62 9.24 7.03 9.19 4.59 5.26 5.58 8.28 11.2 9.94 9.58 6.67 8.69 9.97 4.25 4.03 8.71 7.09 9.37 8.62 6.22 10.4 2.32 10.7 0 9.86 9.92 9.5 9.33 9.8 9.22 10.2 10.5 10 9.24 7.81 10.2 10.3 10.5 3.12 7.9 12.9 9.49 9.75 8.96 4.28 7.8 2.6 10.1 6.28 8.03 6.97 3.17 11 5.02 10.6 8.51 8.21 1 7.5 4.81 7.47 3.77 8.06 4.65 7.38 10.4 9.18 10.4 9.24 8.48 9.5 9.29 2.22 13.7 11.2 7.95 9.4 10.3 6.37 11.8 8.97 11.2 10.3 9.15 4.76 6.39 5.98 10 15 8.36 12.7 0.74 11.6 9.52 6.19 4.48 9.61 9.51 8.5 8.69 6.28 10.7 9.91 8.07 9.63 11.2 10.3 9.26 3.28 5.62 2.12 0 3.28 0 7.08 1.74 0 6.1 6.66 1.42 0.74 6.49 5.47 8.33 1.42 5.52 2 12.9 8.55 4.86 7.4 3.06 2.22 0 7.16 11.7 9.74 9.02 10.8 2.22 6.37 5.16 7.22 1 10.3 6.53 4.89 1.74 3.12 9.93 2.81 4.53 6.81 9.29 5.06 11.3 8.58 7.74 0.42 0.42 0.74 8.14 10.9 3.12 5.25 0 4.76 7.31 2.5 7.58 1.59 6.88 0 0.42 8.72 5.26 5.6 4.09 4.23 2 0.74 7.39 6.76 8.16 3.55 3.28 10.4 4.79 7.01 10.2 8.77 8.06 0.74 0.42 8.84 8.64 9.32 11.7 8.24 0.74 4.89 7.22 7.26 10.4 4.03 5.46 10.2 7.21 2.42 9.62 10.7 8.5 11.1 8.45 8.58 9.44 10.9 8.89 8.02 10.4 9.59 9.91 8.49 8.16 8.44 0.74 10.9 9.02 11 11.7 10.5 9.15 1.22 9.61 10.7 2.32 1 5.59 6.66 11.2 9.61 11.1 10.9 10.3 9.06 8.43 8.19 11.2 1.68 9.68 10.6 10.4 8.26 7.57 11.9 11.2 11.2 6.84 4.2 7.46 7.92 8.12 9.07 7.37 8.41 3.81 5.02 10 11.7 9.98 8.15 11.8 10.5 8.39 10.6 9.74 11.7 11 10.3 10.1 10.1 12.1 10.7 8.66 10.2 11.2 10.8 9.65 10.1 0.42 13.5 4.93 12.9 12.3 11.7 10.1 11.9 9.77 10.8 10 10.2 12.4 11.5 1 11.8 0.42 2.81 9.5 11.7 8.55 11.9 10.1 5.66 10.7 6.7 8.37 7.38 10.5 8.41 11 8.81 1 8.88 5.03 9.78 6.95 10.5 18.4 10.5 9.51 12.8 3.12 8.33 13.7 7.99 5.54 11.9 8.16 4.22 11.1 6.82 10.6 9.66 9.45 10.3 12.1 12.4 9.07 10.7 6.86 10.8 10.9 10.5 9.4 11.8 9.27 9.75 11 10.7 11.3 11.9 12.2 11.6 12.1 11.4 4.42 2.22 0.74 10.7 9.51 12.6 11 2.66 13 2 12.7 10.7 11.5 6.04 8.39 10.4 2.94 1.88 2.88 0.74 0.42 2.42 0.74 3.36 12 3.75 1.74 0 5.16 11.3 11.8 5.57 9.26 1.88 1 11.5 8.98 8.43 8.82 9.53 7.2 3.7 5.46 8.65 10 2.12 8.62 7.51 5.47 11.3 10.2 9.48 7.26 11.2 10.4 8.48 10.3 8.86 11.1 15.3 4.53 10.9 10.8 11.2 6.71 11.7 8.11 10.7 8.02 12.6 9.72 9.67 7.73 8 11.6 6.53 9.41 9.79 3.17 8.3 3.06 2.74 4.48 11.7 3.5 10.4 0 1.42 0 9.46 8.48 1.74 10.5 7.04 9.05 8.89 8.47 7.12 8.31 5.21 10.4 11.6 9.56 10.5 10.9 8.85 8.1 8.35 8.85 3.32 2.59 14.8 13.3 11.3 10.9 12.7 8.99 9.59 10.3 0 2 8.32 10.8 9.38 10.4 8.44 9.93 7.29 6.3 5.08 8.12 2.74 8.39 10.1 9.04 10.3 2.22 12.4 8.92 9.85 1 0.74 11.7 4.94 8.8 7.71 6.54 10.7 9.58 5.84 8.19 8.19 8.54 10.6 0.74 11.6 7.92 7.04 10 9.77 9.69 4.88 13.4 9.8 6.71 11.5 0.42 0.42 11.5 5.98 9.21 5.31 10.8 10.7 7.99 0 13 10.6 8.38 9.07 6.93 3.63 9.61 15.1 6.29 5.44 9.99 1.22 10.7 8.98 8.15 9.91 2.42 8.47 3.77 7.76 9.15 3.06 11.6 9.95 8.71 11 7.23 12.4 1.42 11.2 9.01 8.8 8.94 4.61 4.68 7.87 0 10.6 9.97 0.74 10.6 7.88 9.1 11.8 3.28 11.2 0 8.87 11.8 10.8 9.2 11.3 3.91 2.74 9.58 7 8.92 6.49 4.53 8.06 10.4 10.7 9.23 5.89 5.77 13.1 11.4 8.82 5.75 11.6 10.8 8.62 10.5 14.5 0.42 10.3 3.5 8.7 9 6.97 13.3 11.4 7.63 8.69 8.45 8.08 16.1 15.5 6.71 6.88 11.3 11.7 9.76 11.7 9.91 9.6 6.65 10.3 14.3 11.3 6.93 6.5 4.76 2 10.1 12.8 7.87 11.5 3.59 11.7 9.31 1.74 3.55 0 0.42 11.3 0.42 12.7 5.4 12.8 10.9 6.85 2.66 8.21 11.3 8.46 10.7 9.72 9.2 13.9 3.17 7.88 9.71 10.6 11.6 1.22 13.4 11.8 7.97 9.68 12.6 11.7 12.6 10.8 11.1 5.17 15.3 0.53 13.9 9.07 9.94 14.6 8.37 9 7.63 8.36 7.85 8.44 15.8 0 12.8 10.5 11.9 9.17 2.12 7.36 2.81 9.91 2.88 7.68 9.26 8.12 3.91 3.75 10.9 9.69 10.4 1.74 10.6 0.42 9.87 11.1 10.4 9.82 6.63 11.1 10.9 10.6 10.8 11.7 10.1 9.4 8.1 4.59 7.75 8.86 10.7 8.3 3.97 1.22 5.76 8.11 9.03 7.13 9.04 4.84 5.09 4.89 5.97 6.93 3 7.02 1.58 3.77 3.5 10.3 10.3 4.2 10.3 0 3.32 4.67 12.4 7.22 6.66 5.96 6.94 7.36 7.44 3.46 8.42 1.42 7.97 8.24 7.15 5.02 5.05 8.18 6.11 1 13.9 5.49 7.21 1.74 6.71 0 4.42 3.37 7.79 0.42 9.81 1 2.59 10.2 5.46 8.63 2.88 4.87 3.8 0 2.73 3.17 4.46 5.5 4.97 3.97 0 3.5 3.17 2.81 7.01 5.73 5.03 0 7.77 14.3 8.12 1.22 8.43 3.12 5.72 15.4 5.03 7.02 0 8.87 10.1 1.88 0 4.81 10.3 6.23 8.35 3.59 6.26 1.59 9.35 8.82 10.5 2 9.61 8.51 6.73 7.87 6.8 6.31 2.5 9.85 3 10.3 4.15 13.3 0 14.2 15.2 12.7 0 10.3 10.4 9.69 8.01 10.7 12.5 10.7 9.72 10.5 10.9 11.3 11.1 3.42 11.1 10.9 11.7 9.52 10.6 9.53 11.2 10.1 11.4 13.7 8.08 7.14 3.63 9.17 4.3 10 5.99 9.41 8.82 11.5 10.7 8.14 8.83 9.33 4.67 9.86 9.66 10.7 8.71 0.42 10.7 1 12.5 12.4 12.4 11.5 10.3 10.6 9.12 9.74 11 8.79 4.28 10.7 8.21 8.54 8.68 11.7 10.7 6.98 11.1 9.32 14.5 10.5 13.4 12.5 9.35 12.1 10.1 9.44 10.9 4.79 2.59 8.94 7.69 13.1 15.3 1.42 2.59 10.3 4.5 5.06 8.28 6.94 8.22 9.3 1.59 8.62 10.5 11.3 7.42 9.45 12 10.7 8.77 7.81 3.97 8.03 10.1 10.2 9.33 6.19 1 4.76 10.6 1.22 0 3.55 0 1 0.42 9.15 1 0 9.9 8.41 5.77 10.3 0 2.32 3.55 4.06 7.85 10.8 5.81 9.76 8.03 11.5 9.43 4.79 7.66 8.23 8.51 13.1 8 10.3 10.3 12.9 7.24 13.7 12.2 12 13.5 5.35 11.8 10.3 6.01 13.3 8.75 9.49 8.21 7.32 8.77 9.94 7.66 8.67 7.05 12.3 7.79 9.56 7.36 6.84 8.3 7.18 8.05 6.74 7.49 7.61 9.94 8.99 8.21 10.6 8.06 7.55 5.03 9.4 10.5 10.7 7.21 9.21 8.42 8.07 7.61 8.75 7.73 7.65 6.47 11.1 5.2 2.32 8.11 7.41 8.11 8.74 7.6 9.51 6.86 0.42 9.53 3.81 5.83 5.67 8.63 0 1.74 6.35 5.9 4.57 11.6 6.71 2.42 3.74 0.74 0 2 2.22 7.77 7.98 7.98 8.4 7.85 8.16 7.85 5.73 7.75 8.82 7.08 6.15 10.2 8.34 10.3 5.65 10.4 10.4 10 7.97 13.7 5 7.8 0.74 10.1 6.36 11.6 8.26 7.56 6.12 6.03 1.22 6.85 8.4 8.06 6.7 0 8.69 9.59 8.66 7.67 9.24 3.55 10 7.82 7.69 2.5 8.68 11.4 1.59 7.49 8.51 7.13 6.66 12.2 10.1 7.24 8.11 6.55 8.6 4.7 8.05 7.08 8.09 6.89 6.93 8.28 7.81 1.59 0 6.13 7.86 7.06 6.51 12.5 8.9 8.26 13 9 11.5 7.98 11.7 3.84 13.4 8.32 10.8 4.7 8.65 11 10.9 7.04 8.64 10.4 9.73 10.2 12.7 4.22 4.94 6.6 8.54 9.75 3.59 8.46 10.9 11.9 10.9 10.5 9.89 10.6 12.7 8.44 5.05 9.19 1.22 9.48 10.8 7.35 5.9 6.81 10.3 8.84 5.41 10.5 3.12 6.34 3.91 9.8 2.32 11.3 10.9 9.31 9.98 8.47 10.7 10.2 10.1 8.04 0 9.77 9.6 8.06 6.02 8.87 10.8 8.69 0 14.1 9.95 7.94 6.84 9.15 9.41 8.58 10.2 10.4 6.24 10.5 10.9 5.31 9.83 9.16 9.73 12 8.83 10.4 7.41 9.74 9.26 10.7 9.58 10.5 8.38 10.1 8.5 11.6 6.79 5.96 10 6.76 9.66 9.57 10.5 12.2 11.1 10.1 6.62 9.95 8.95 7.5 4.22 3.74 9.3 9.03 10.2 8.87 9.34 10.6 11.3 10.7 9.24 8.45 9.25 8.31 11.6 11 4.55 9.81 11.5 12.3 9.45 8.16 3.81 6.48 10.5 2 3.88 6.68 9.73 7.21 7.71 9.32 8.62 12.1 9.66 6.92 0.42 4.11 7.67 12.4 9.87 10.8 6 4.7 9.09 8.22 7.81 8.11 10 9.53 9.21 8.9 9.23 0.74 11.2 12.3 10.1 10.4 11.5 9.17 9.46 7.82 4.5 10 0.42 1.42 0 10.5 5.73 9.83 11 8.73 0.74 1.88 0.74 7.4 0.74 4.91 9.78 0.74 5.41 7.85 10.3 7.99 7.97 5.45 10.4 7.79 9.51 5.85 2.94 4.32 3.28 11.3 9.27 6.29 2.59 8.93 11.5 7.33 9.17 8.5 9.36 10.2 9.37 7.26 8.73 11.4 11 11 8.48 9.28 9.01 7.39 6.09 10.8 10.4 10.1 5.99 9.35 7.65 6.7 10.3 6.87 8.54 6.68 6.19 7.73 9.34 12.5 9.87 0.42 6.22 7.56 4.32 8.33 6.29 9.36 2.42 8.41 8.61 5.96 8.9 7.1 9.59 8.59 6.9 9.36 8.76 0.74 8.32 8.95 8.37 8.54 8.9 9.39 9.23 5.5 10.1 7.32 8.68 8.83 8.52 8.94 7.75 8.28 9.43 10.6 8.71 6.22 8.77 7.81 8.82 9.82 9.98 8.68 9.77 8.34 9.35 9.8 8.66 8.06 7.96 8.02 9.78 6.3 7.64 8.87 9.29 7.16 7.44 8.69 8.23 8.52 10 8.6 7.02 8.18 9.46 6.74 10.1 7.47 11.3 8.7 7.58 10.3 9.95 9.65 11.7 10.4 8.94 1.42 7.12 10.4 6.84 9.82 8.45 3.77 8.25 9.39 4.03 6.5 9.74 7.24 9.08 6.97 3.59 5.9 7.54 8.69 9.93 0 8.6 6.32 9.02 8.71 7.01 10.9 1.22 7.49 8.41 7.87 8.42 10.9 10.8 9.18 8.02 9.71 5.58 8.35 6.62 9.25 7.73 7.99 8.87 8.61 2.42 7.76 10.8 9.11 4 8.31 11.1 9 10.6 9.2 9.95 8.43 8.89 7.48 6.18 2.22 8.2 7.76 7.87 8.44 7.73 10.7 7.54 10 9.26 6.9 0.42 9.41 8.34 7.46 9.68 3.12 8.59 6.99 2.81 4.28 8.72 9.37 7.1 6.72 9.61 8.73 8.86 5.65 9.36 1.59 5.66 8.95 8.53 5.58 7.21 2.74 7.12 7.52 6.91 5.05 8.24 9.32 8.14 3.94 1.22 3.74 8.33 3.28 8.21 0 6.76 8.94 6.76 1.42 5.07 9.14 9.33 10.3 3.7 7.97 8.83 7.79 8.74 10.3 10 10 6.25 7.88 9.99 1.22 8.94 9.38 9.63 9.18 10.7 9.39 8.1 8.84 10.5 9.36 6.65 9.46 8.37 7.29 5.78 8.14 9.31 11.3 4.96 5.79 2.32 11.2 9.16 7.73 5.3 7.17 8.64 11.1 8.01 1.42 9.27 8.08 2.94 4.12 9.3 7.4 5.41 10.1 1 10 2.81 8.38 10.9 9.56 6.52 7.99 8.76 2.35 8.99 0 0.74 9.56 4.06 8.58 6.67 9.06 6.6 10.7 9.07 6.12 9.65 5.82 8.37 7.99 11.3 4.55 5.25 0.42 8.21 7.47 8.24 8.66 3.32 5.51 7.57 8.28 8.53 2.32 10.3 2.22 12 3.42 6.19 9.15 8.67 9.11 9.22 6.59 5.05 7.67 10.3 10 9.19 9.73 11.2 8.99 7.48 9.6 8.13 11.2 10.4 9.32 8.47 9.06 8.09 2.5 0.74 2.5 7.28 6.89 5.31 8.5 3.32 4.44 5.29 0 8.39 11 13.5 5.77 7.17 9.41 10.2 2.94 0 9.53 7.49 2.32 5.41 4.37 8.83 9.24 5.67 10.3 9.67 11.7 10.2 10.5 10.3 5.77 11.1 8.88 9.31 8.64 9.73 6.32 10.7 6.62 8.44 9.12 6.66 8.81 4.63 6.37 9.23 5.17 9.09 8.2 9.73 9.37 8.53 8.45 9.03 9.65 9.8 10.3 10 9.48 10.1 10.7 8.49 10.6 8.23 10.1 9.11 9.26 4.2 10.9 9.69 11.3 10 9.11 8.44 10 9.97 10.3 7.29 11.1 9.79 4.99 5.96 1.42 8.65 11 9.67 5.28 9.18 8.29 5.54 9.11 9.56 11.6 9.62 10.2 1.74 10.9 9.12 13.6 9.12 9.98 8.88 10.3 7.86 9.81 8.81 3.12 9.68 11.9 7.15 7.3 4 7.09 8.38 9.76 7.02 6.32 5.67 9.22 6.55 8.86 8.41 2.12 1.88 1.22 10.9 1 5.9 10.9 8.07 3.94 8.28 6.18 10.8 7.91 8.23 11.3 10.8 3.84 9.04 3.63 8.9 5.99 4.55 10.8 9.92 12.5 8.74 8.28 10.1 11.6 7.18 8.16 1.42 3.88 10.9 6.89 6.47 11.4 7.56 9.9 2.12 13.2 7.91 0 4.89 8.72 7.2 8.09 9.69 2.22 7.4 5.24 2.22 9.01 12 8.74 4.94 8.68 7.26 9.54 7.6 11 5.77 11.4 12.6 9.57 12.3 11.4 12.5 7.94 7.76 8.88 8.22 8.28 7.55 9.53 10.7 10.6 5.42 7.82 1.74 10.6 10.3 7.49 10.3 8.48 9.96 5.6 5.35 6.97 2.91 11 8.28 8.71 7.61 0 2.74 10.7 13.5 9.39 2.94 3.12 5.58 3.32 8.1 8.34 5.36 11.1 11.6 14.2 6.96 3.7 0 6.12 3.06 11.8 10.7 10.3 4.89 1.42 9.03 11.8 9.57 9.79 0 7.45 0 1.74 12.4 5.43 8.72 10.5 10.2 12.4 10 0.42 4.63 9.78 7.81 10.3 3.94 10.5 10.1 9.97 2.12 7.4 8.89 9.92 7.06 8.69 8.61 12.3 0 9.21 6.84 8.91 9.03 6.86 8.72 9.52 3.59 10.7 2 6.38 10.2 11 9.92 0 9.08 10.4 8.52 5.87 9.92 10.3 7.82 1.59 6.82 11.4 10.1 6.33 2.74 10 5.87 9.71 9.88 4.15 11.2 10.4 10.2 11.8 11.6 10 4.7 12.4 10.2 1.74 10.4 7.06 3.37 9.72 8.56 3.22 9.03 7.86 9.2 4.39 6.64 4.12 8.45 7.91 9.71 7.81 9.78 8.62 8.84 7.26 10.8 5.18 9.7 8.44 9.93 10.4 7.98 9.32 8.58 12.3 10.4 5.72 11.4 10.8 9.77 10.2 2.34 8.1 9.22 0.42 10.2 9.47 6.38 9.48 0 5.55 3.28 10.5 10.2 0.74 9.18 11.1 6.51 12.1 14 8.42 10.4 7.97 12.8 8.55 0 9.51 8.9 9.78 9.89 13.1 7.41 10.9 11.4 12.6 10.2 10.7 10.2 7.93 13.7 10.3 7.62 9.86 8.62 7.63 9.54 6.8 6.74 1.22 9.88 11.6 10.6 6.85 9.21 1.88 11.2 11.5 13 8.92 9.57 11.5 8.49 9.62 6.94 10.9 9.1 6.35 6.05 11.7 4.76 12.3 10.9 9.35 8.44 9.34 1.42 0 9.39 3.74 0 0 11.4 4.72 8.71 2.5 5.16 4.2 7.99 1.22 1 4.46 0 0.42 0.42 5.5 3.12 9.83 11 10.3 9.51 6.83 3.28 2.42 7.55 10.4 8.15 0.74 9.32 5.86 7.6 8.18 2.74 7.75 6.65 8.91 11.5 7.84 1.42 7.79 8.33 9.48 8.82 9.59 2.22 4.59 1.42 6.74 7.42 0 5.12 7.37 13.4 8.93 6.89 8.44 10.1 2.22 9.87 0.74 3.77 1 0.74 9.6 7.58 1.88 7.54 9.75 4.12 7.66 9.02 0.42 11 9.76 12.3 9.01 8.29 0.74 4.86 9.01 11.1 10 1 8.54 11.7 9.11 5.6 2 9.32 1.22 5.59 11.5 1.22 10.9 10.2 9.06 2.59 7.55 11 8.8 7.12 8.89 10 1.42 0 8.43 9.97 7.9 6.43 8.33 9.19 5.28 9.26 6.81 9.45 5.75 0.42 3.94 7.94 3.81 7.07 10.3 8.37 9.74 5.85 10.1 10.5 0 12.8 8.21 9.01 9.47 9.35 0.42 3.81 5.61 7.71 4.5 3.15 8.74 5.56 7.21 7.39 7.02 7.02 10.5 11.6 4.39 7.49 8.3 10.4 10.5 3.67 4.12 0 5.24 0.42 5.67 2.88 1.59 0.42 2.12 8.45 10.2 9.68 4.17 10.2 8.4 7.6 9.66 10.8 6.47 10.7 10.1 8.46 7.62 8.64 3.97 10.9 6.98 1 5 10.6 8.46 6.27 5.38 9.93 11.7 8.72 10.2 9.11 0 5.15 9.12 1.42 8.3 7.28 2.12 7.82 10.9 7.24 7.49 8.59 9.89 4.17 8.68 4.37 8.4 5.64 3.46 7.56 11.1 7.47 0 9.69 9.19 9.8 6.72 5.46 12.3 5.82 4.17 0 0.74 5.73 6.08 8.79 9.77 9.26 9.35 6.89 5.16 7.83 9.98 1.74 10.5 6.36 1 9.71 8.84 6.05 6.43 9.3 9.48 8.72 7.66 9.69 11.7 7.32 8.26 9.62 8.68 8.06 7.48 6.2 7.75 6.38 9.38 9.4 0.74 9.65 7.91 9.92 8.91 10.3 8.36 10.7 8.53 7.83 9.56 10.4 8.61 9.4 7.97 5.29 8.61 8.38 9.95 7.77 8.47 9.22 10.3 0 0.42 6.36 10.2 12.3 9.04 3.63 8.08 4.63 5.47 8.9 6.59 7.21 9 3.41 6.8 3.7 7.71 5.35 6.77 6.64 6.55 6.73 10.8 11.1 8.59 8.92 4.81 8.21 8.92 10.6 8.76 10.7 9.79 0 9.25 6.92 1.74 5.73 7.85 9.5 10.3 2.94 8.81 8.46 8.39 9.27 11.2 8.31 8.37 10.2 10 9.65 9.52 9.37 9.18 10.5 9.19 9.53 8.99 5.96 9.1 9.67 3.22 8.29 11.6 9.15 5.41 9.72 7.16 9.75 8.75 8.95 9.25 7.48 8.1 0 7.95 9.98 8.03 9.33 6.95 9.34 9.69 8.34 10.2 5.19 9.04 7.88 9.6 9.3 7.39 8.33 9.36 0.42 10.6 9.49 7.41 11.5 8.32 7.66 9.89 9.16 7.05 8.41 9.43 8.55 10.3 9.6 7.16 7.5 7.04 7.85 9.53 0.74 9.73 9.58 10.3 9.38 10.2 7.04 9.83 9.76 9.6 4.25 9.55 10.7 9.99 9.18 9.5 4.25 9.13 3.37 10.2 1 12.2 4.48 10.3 6.48 8.63 9.02 3.84 7.07 9.14 8.57 9.16 10.4 6.49 10.7 6.69 6.67 9.35 9.77 9.44 7.4 8 5.3 8.95 9.73 9.15 7.74 10.3 0 1.22 5.98 9.55 8.66 10.3 4.39 4.3 6.45 10.9 8.64 11 6.73 10.5 6.4 3.7 6.83 11.3 8.32 10 6.96 3.67 8.2 7.65 9.43 9.88 6.62 10.3 4.39 6.12 9.82 7.03 9.06 8.89 11.1 8.11 7.56 11.7 1.59 11.2 7.79 7.22 10.1 7.22 10.2 4.48 9.58 9.85 9.6 2 8.19 1 2.88 7.38 5.63 3.12 11 9.21 5.5 1 2.32 7.35 9.51 9.63 5.56 5.87 8.45 11 3.46 0.74 1.22 2.5 9.86 11.7 8.19 9.99 10.4 5.32 9.3 8.42 8.53 6.34 1.92 9.08 10.2 10.5 3.7 5.64 7.58 5.72 5.6 5.66 2 12.6 10.4 0 1 8.41 9.76 9.13 8.06 4.32 10.5 10.6 6.98 6.17 12.1 9.14 11.5 5.21 4.48 7.07 1.59 11 8.77 7.73 8.83 8.22 10.9 5.38 6.3 8.48 6.01 5.36 7.42 7.37 8.64 12.1 8.52 8.14 6.55 7.18 10.2 9.42 9.8 8.09 5.25 3.77 7.76 9.38 8.03 7.43 8.41 1.22 8.07 10.7 9.42 4.57 8.36 9.95 1.22 8.64 2.94 1.22 7.72 9.7 11.8 7.51 8.21 0 3.32 8.81 2.5 8.23 7.19 9.38 7.94 9.71 8.17 7.66 8.84 8.55 9.42 6.86 1.42 4.32 7.92 8.69 11.2 7.83 8.66 6.39 8.81 9.57 10.1 9.72 9.63 8.49 0 9.43 10.5 3.55 9.19 9.2 10.1 10.2 9.37 9.47 7.06 9.33 9.2 7 6.73 9.59 8.23 9.08 8.36 6.32 9.88 6.8 9.03 3.84 11.4 7.91 10.3 2.74 6.93 8.92 9.29 7.68 9.25 9.71 9.19 0.42 9.02 7.84 8.82 7.99 9.22 8.46 8.81 7.52 9.23 6.34 6.41 9.15 4.17 8.37 8.31 7.08 7.63 9.2 9.19 1.59 10.2 1.22 9.48 8.52 6.26 4.12 8.74 11.6 2.74 7.59 11 7.48 8.31 8.47 4.37 5.32 8.67 8.22 9.79 10.1 0.42 10.3 7.21 2.74 6.65 0.42 6.03 10.3 11.2 1.68 0.74 10.1 10.9 10.1 8.23 10 4.97 8.16 9.54 2.42 3.46 8.36 9.15 10.6 7.36 6.98 11.7 8.27 8.93 8.36 8.35 6.47 8.52 7.9 8.32 4.06 8.34 12.2 7.52 3.06 3.28 6.46 2.22 1.22 8.76 9.88 7.67 9.28 4.44 7.1 1.22 10.7 9.63 6.73 9.1 6.98 6.64 5.68 0 10.6 6.91 11.6 7.7 6.34 0.92 1.42 2.74 3 9.69 2.74 8.14 2.12 8.9 9.78 9.32 8.67 10.1 8.89 10.7 1.22 8.98 1 4.48 9.21 10.1 11.3 10.9 8.55 10.6 9.75 10.4 1 2.59 5.85 0 9.95 9.93 4.65 12.3 9.52 9.93 10.9 9.89 8.89 8.61 4.77 7.61 5.8 10.6 8.82 9.26 9.76 4.22 11 8.59 9.25 8.5 11.1 4.5 9.21 5.79 9.01 10.4 10.1 2.12 6.05 10.7 11.4 6.59 2.94 8.97 1.22 0.42 2.12 9.22 4.06 4.06 10.9 8.09 10.3 6.55 2 11.3 8.89 11.2 10 9.54 8.85 9.78 11.6 9.22 9.31 8.52 9.6 10.8 2 10.2 9.6 9.32 10.2 4.65 6.1 11.6 7.98 9.47 4.93 0 3.12 9.85 9.35 9.06 9.22 10.6 1.88 5.88 8.51 9.51 11.1 11.3 5.75 11 1.22 2.81 9.89 3.7 8.9 9.06 10.3 1.88 9.06 4.28 1.74 7.82 5.36 0 9.39 12.2 10.4 9.37 5.67 5.34 6.83 3.22 6.18 1.88 14.2 10.9 7.92 9.6 10.4 8.99 10.8 6.06 8.39 11.7 10.3 12.6 8.14 11.3 12.1 9.7 11.3 11.8 11.6 12.2 11.2 10.4 9.25 13.1 10.1 11.5 7.65 10.7 5.67 8.37 10.6 8.46 7.79 11.7 11.3 6.69 9.23 10 8.94 9.41 9.57 4.28 11.2 0.75 9.83 8.97 9.16 4.46 9.14 2.12 1 12.1 7.86 13.8 9.57 9.38 3.91 11.1 12.8 11.7 10.3 11 10.1 8.29 9.5 4.76 10.2 14.9 9.61 7.56 12.1 3.63 10.1 8.56 6.45 2.66 11.9 9.18 12 9.25 0.42 2.5 2.12 7.77 10 11.6 5.71 10.3 11.2 12.3 9.53 11.9 8.24 6.92 10.3 10.3 8.99 12 9.09 7.93 9.46 5.35 10.8 2.74 0.74 1.88 5.1 8.9 4.28 9.3 8.46 11.6 7.2 8.92 9.58 3.12 7.08 10.7 11.1 8.71 12.4 8.3 3.28 7.38 0.74 2.59 9.8 8.85 7.76 11.7 10.3 1.22 10.1 7.22 4.06 7.68 1 12.7 7.96 12.1 6.58 12.7 7.09 7.51 5.89 9.98 9.27 5.78 9.65 11.5 0.42 3.06 6.12 9.7 12 2.66 9.25 9.4 7.76 2.95 11.4 8.13 7.64 10.4 2.12 3.32 11.7 3.17 8.46 9.32 7.5 8.33 7.58 8.32 7.35 10.1 5.39 9.98 10.5 9.76 5.5 8.47 7.84 14.4 9.76 10.7 10.8 9.67 9.69 9.34 10.6 11.6 10.3 8.87 9.18 7.74 10.3 9.85 10.3 11 10.3 10 10.3 10.4 1.42 6.45 0.42 10.8 7.09 10.8 11.2 6.86 1.74 8.39 7.7 0.42 8.14 9.99 1.42 8.91 8.76 8.25 9.73 10.7 9.6 7.1 5.46 2.51 9.64 10.7 11.6 11.6 10.6 8.33 5.05 10 10.9 9.02 9.23 12 8.29 9.17 1 3.22 4.48 10.2 10.1 4.65 8.59 8 11.2 6.17 1.22 9.82 7.79 7.39 6.91 8.73 9.77 5.22 5.9 0.42 6.46 3.37 2.74 9.2 6.34 7.31 7.55 10.8 8.2 5.59 0.42 9.63 9.07 8.44 9.51 4.39 7.13 2.92 0 7.77 3.85 7.41 10.9 8.65 5.81 10.8 10.3 12.6 8.74 0.74 11.7 9.88 11 9.89 11.3 6.2 9.3 9.14 9.19 7.6 7.8 7.13 10.8 12.6 11.3 2.42 4.17 5.6 9.2 6.28 9.67 11.2 3 10.1 9.8 9.72 1 8.6 10.5 8.37 6.36 5.41 6.97 5.55 11.8 10.4 9.68 8.91 8.18 8.59 8.48 5.41 0 5.25 9.69 7.16 0.74 1.74 1.88 8.34 11.4 8.86 13.5 5.13 3.06 5.67 6.07 10.1 11.1 9.48 7.81 8.86 9.69 7.31 2.22 5.17 7.72 9.19 5 3.81 6.24 8.51 9.01 11.6 7.41 8.45 4.39 10.5 6.17 6.54 10.5 10.2 8.75 11.9 8.49 7.87 6.67 8.11 11.2 8.81 9.79 13.5 8.98 6 5.68 5.2 10.1 1 10.5 9.91 9.15 7.51 5.7 9.97 5.68 5.99 9.51 7.03 0 6.21 9.55 10.3 7.96 10.5 8.12 9.05 8.57 8.08 8.19 0 6.06 8.3 4.5 9.33 10.7 8.47 6.78 8.06 5.73 8.14 8.07 6.75 2 1 3.94 6.52 9.18 6.74 10.3 6.37 9.55 9.69 11.4 9.07 0.42 15.5 6.47 10.1 6.26 8.87 12.3 1.88 9.11 9.25 8.11 5.56 10.4 9.12 1.22 11.4 9.7 5.93 10.9 9.18 5.58 1.22 10.8 10.4 10.9 9.94 8.72 5.97 9.64 9.66 9.61 1 10.7 5.9 7.58 9.13 8.52 1.74 11.2 10.9 10.4 8.67 9.59 5.52 10.3 8.53 8.18 9.29 7.72 9.82 4.14 3.55 9.61 10.3 9.15 9.93 6.94 6.43 7.24 9.46 11.2 7.31 7.85 8.95 8.42 0.42 0 5.38 3.88 8.27 12.2 10.4 11.1 10.2 7.23 11.1 8.7 1.59 9.36 9.73 8.36 11.6 9.63 8 2.74 10.4 9.88 11.5 12.7 8.97 5.45 0.74 5.65 4.9 9.83 8.85 1.59 7.12 8.97 9.06 9.83 6.77 10.6 9.02 7.96 7.06 8.82 10.6 9.27 6.91 9.62 6.45 3.5 8.18 11.7 5.78 10.2 9.34 0.42 10 11.5 9.5 9.4 0.74 10 5.31 8.69 7.61 5.99 7.56 5.93 8.84 5.03 8.95 10.4 10.6 4.96 9.27 6.89 8.67 7.22 7.98 10.3 9.72 7.62 0 8.86 5.13 9.44 7.39 1.88 9.63 6.9 10.8 14.9 6.71 9.92 10.9 7.98 6.34 3.55 6.6 10.4 8.2 3.46 6.31 10.7 9.84 7.48 6.58 6.38 2.81 11.2 10.2 6.54 9.86 8.26 10.5 7.55 2.12 10.8 8.07 8.61 9.35 9.6 11.4 7.82 10.5 8.64 9.62 9.1 7.81 8.87 11.7 6.81 5.43 9.45 6.53 5.03 7.82 10.7 0 9.23 3.74 8.63 9.86 7.59 0.74 8.42 8.48 9.96 6.08 8.07 2.81 8.12 11 9.37 10.3 8.6 8.02 9.24 11.5 11 5.59 5.3 9.43 9.07 8.79 4.93 9.81 10.9 5.34 11.4 8.29 8.49 5.32 10.6 8.75 11.7 8.96 10.7 0 7.83 10.1 4.39 9.2 2.59 7.49 9.54 6.81 9.81 5.32 2.12 6.31 6.34 7.77 5.87 12.2 7.02 5.84 11.2 2.94 11 8.09 7.54 6.56 9.13 5.32 7.24 7.22 7.61 14.1 9.52 11.4 0 8.64 10.3 9.81 4.28 10 9.05 0.74 12.5 9.04 0.42 9 10.5 7.35 1.22 11.7 6.19 5.47 7.3 8.14 5.77 9.92 12.5 8.52 6.03 11.5 8.27 4.13 7.32 9.89 4.25 8.61 10.1 11.5 8.18 7.24 8.62 8.55 6.45 10.7 9.1 8.84 10.7 8.44 6.7 9.84 9.65 9.94 8.01 9.02 4.74 10.1 11.9 9.92 9.07 4.57 10.3 11.1 8.6 5.17 9.64 8.72 3 9.76 8.58 10.2 12.2 11.1 2.81 9.13 9.98 8.24 8.66 5.61 6 11.2 12.2 8.39 4.77 9.53 9.19 8.19 0 5.3 2.65 5.34 7.08 9.53 7.21 8.48 4.74 1.88 5.85 9.4 6.03 4.53 10.5 10 7.97 9.85 11.4 7.66 2 10.4 10.9 9.54 10.1 7.26 10.9 9.71 8.66 10.2 2.32 10.6 9.59 9.46 10.5 8.32 4.12 9.35 7.17 8.2 6.19 0.74 12.9 10.1 9.28 9.78 8.24 9.28 10.7 9.37 0 11.1 9.77 10.3 6.24 1 11.5 13.9 0 7.93 7.56 11.1 4.53 10.6 1 5.82 0 3.17 7.05 7.94 6.67 10.2 11.9 8.42 0 13 7.85 9.88 10.1 2.22 7.23 9.13 8.22 4.91 2.35 8.18 8.21 9.3 13.1 7.34 10.5 8.43 9.92 9.42 12.3 11.4 0.74 7.95 11.8 3.46 9.68 0 5.16 1.88 6.35 7.26 11.2 8.34 8.66 4.37 8.09 9.23 11.2 2.12 4.44 6.71 8.2 7.23 6.19 9.46 10.1 5.43 6.77 5.37 3.55 0 12.1 3.37 1.74 1.88 5.93 9.06 9.8 7.25 10.2 10.3 1.42 9.34 8.8 2.59 7.95 9.55 10.1 8.97 9.92 11.9 8.54 7.15 6.73 3.22 9.39 0 12.2 7.11 3.12 10.9 8.79 7.6 8.37 9.19 3.37 11.1 4.67 6.37 10.7 8.65 0 3.5 6.39 3.77 6.43 0.74 8.41 4.22 8.99 7.97 7.64 8.26 10 14.9 10.5 4.28 11.5 6.22 7.47 8.06 5.89 9.67 10.5 7.65 7.84 7.96 0.42 8.5 9.03 8.37 6.93 9.16 4.46 6.9 7.88 11.1 8.36 8.22 8.59 9.38 11.9 8.83 8.16 6.49 5.77 7.86 8.51 8.5 7.41 8.65 9.23 9.95 11.8 5.89 6.75 9 3.5 3.67 12.9 11.9 12.9 8.47 3.84 7.78 3.46 8.06 11.4 10.8 10.1 10.6 0 11.2 10.9 9.54 7.32 3.81 11.1 9 10.1 11.2 9.9 11.2 10.2 12.5 10.4 9.07 7.75 9.82 9.81 9.5 8.28 7.25 10 7.48 10.9 8.98 10.7 9.3 5.45 9.94 8.4 15.4 11.2 11.2 11.8 10.5 9.38 11.2 11.6 11.1 10.3 9.41 2.22 8.24 10.1 11.6 9.82 7.92 9.1 11 9.92 9.79 7.9 10.6 11.7 9.28 8.67 11.4 7.17 8.34 11.8 6.13 11.1 8.8 13.5 9.18 2.81 10.9 10.7 7.21 2.66 9.67 9.4 12.5 7.96 10.5 8.72 10.3 9.94 7.86 10.7 10.9 10.7 6.47 11 9.53 6.91 11.4 2.81 1.22 0 9.11 3.28 8.41 10.5 6.84 0.42 8.26 9.64 4.63 9.6 10.7 8.56 12.1 8.23 7.57 9.43 10 9.43 9.92 7.58 9.09 10.1 8.23 10.3 10.1 8.95 8.55 9.4 8.2 8.81 10.2 13.6 9.17 7.56 9.99 10.7 9.64 11.6 6.39 11.5 14.9 10.3 0.74 9.7 10 7.67 9.55 8.66 9.27 9.63 9.17 12.8 8.2 9.4 9.42 9.19 11 10.7 8.12 9.69 11.9 4.42 10.8 9.85 10.4 9.73 9.99 7.4 7.45 10.6 4.25 6.01 9.64 6.22 10.4 9.07 12.3 9.15 0.74 8.77 2.58 11.6 5.63 8.65 8.64 8.6 3.12 9.86 1.88 8.11 4.2 15.1 4.73 4.77 8.95 12.2 9.08 11.9 10.2 2 9.44 9.1 8.79 10.2 7.3 8.25 11 6.99 7.46 9.72 3.81 13.7 9.96 9.67 5.59 12.2 7.26 9.22 7.5 13.6 7.52 8.01 8 9.25 8.91 9.56 8.42 11.1 8.65 13.5 10.1 8.4 9.55 11.2 8.82 7.25 14.3 8.57 9.83 10.6 11 10 10.9 11.1 10.9 10.9 2.12 9.67 7.17 12.7 5.63 11.4 10.3 7.56 5.13 8.54 9.78 10.3 10.9 9.5 10.4 8.96 4.09 9.68 11.6 7.08 10.4 12.2 12.4 11.6 7.77 10.2 1.88 11.2 8.72 10.3 10.2 8.97 9.92 8.01 11.5 10 8.13 10.9 10 9.87 6.39 9.16 10.3 7.37 9.28 10 6.36 10 8.39 1.74 5.99 0.74 9.65 7.4 9.14 9.06 4.12 7.6 8.82 4.7 7.48 9.32 9.88 10 8.59 9.07 10.6 10.4 7.93 7.26 5.77 9.31 9.91 9.22 7.2 10.6 10.5 8.57 5.29 8.81 10.8 11 9.73 11 10.4 9.22 9.29 9.88 9.88 11.3 10.5 10 9.64 7.36 8.42 10.1 10.6 8.77 9.57 11.1 11.1 9.18 11 1.22 7.68 9.55 9.8 7.8 10.2 11.5 1.74 6.61 2.66 8.29 7.6 10 9.71 9.73 7.41 8.75 11.6 9.48 6.15 6.85 6.16 8.26 10.5 4.53 9.36 9.66 10 11.3 11.5 11.9 9.51 8.83 10 9.04 10.8 9.99 4.59 10.1 5.58 9.8 9.33 2.32 8.64 8.06 7.91 7.31 10.5 8.97 4.94 7.76 8.85 10.2 4.79 8.67 12.7 9.32 3.88 10.2 0.74 1 4.03 7.86 9.28 9.99 9.35 14 9.94 11.9 5.56 10.8 9.64 10.3 9.97 3.51 9.91 10.7 9.98 5.96 10.1 11.5 8.89 8.35 5.17 8.33 12 9.45 10.4 9.96 10.9 10.5 4.65 11.2 6.93 9.81
-TCGA-2Z-A9JM-01 5.94 7.24 11.1 9.08 7.32 8.01 3.14 3.97 5.76 3.92 5.83 8.29 6.65 0.57 0 8.41 9.98 10.3 8.22 8.85 9.13 6.86 9.22 5.8 10.1 8.4 3.52 9.7 4.95 7.87 4.49 6.24 5.97 6.83 3.43 1.83 2.29 5.56 1.97 5.49 6.62 3.87 3.67 3.49 7.18 4.46 2.29 5.23 11.3 6.95 3.43 7.46 8.12 11.5 5.37 1.78 6.58 0.57 7.05 6.91 7.81 6.85 8.12 7.65 3.43 3.82 6.21 8.55 10.8 5.66 5.3 7.27 2.14 1.56 0.98 3.06 6.42 6.22 4.22 2.78 3.58 2.67 3.29 6.9 8.14 6.2 6.13 8.71 6.3 5.23 9.37 6.21 6.24 7.02 5.5 5.44 3.67 3.22 5.31 0 4.46 5.83 0.98 5.93 3.53 4.1 7.57 8.52 9.12 5.56 0 0.57 8.99 4.8 7.13 1.78 3.33 4.61 4.94 4.94 4.21 5.53 0 5.44 1.3 7.15 1.97 2.67 3.43 15.4 3.17 5.44 4.14 6.54 4.14 1.56 5.52 3.82 4.06 9.01 9.5 9.72 0 3.97 6.08 11.5 0 10.8 0.57 4.1 5.76 3.36 5.76 9.3 11 3.92 3.49 2.38 9.7 3.72 7.46 6.8 3.31 6.33 9.94 7.18 7.51 5.3 4.52 5.71 10.2 9.52 3.67 6.14 5.76 3.82 5.93 6.13 6.98 5.04 6.21 8.72 4.58 5.68 5.98 4.14 6.67 2.67 9.67 6.21 9.23 8.25 4.14 6.42 4.39 3.98 4.96 7.39 8.23 9.66 11.2 10 7.88 11 7.39 8.95 7.66 9.13 10.8 7.96 5.03 9.53 10.3 9.84 9.48 9.88 8.79 10.9 9.64 11.1 8.94 9.83 11.3 10.4 8.32 8.08 8.97 10.6 8.58 11.9 7.76 4.96 9.44 10.7 8.4 10.3 10.1 7.98 9.98 2.29 8.24 7.29 11.8 11.9 12.8 13.4 11.6 11.9 1.56 12.4 8.66 2.55 4.72 10.2 10.5 13.8 11 11.7 6.46 11.8 8.8 10 5.19 10.1 9.03 10.1 5.32 9.8 11.8 9.77 8.64 8.32 9.12 9.28 11.5 7.01 0.57 12.1 11.4 11 12.7 11.7 10.2 8.22 10.5 10.9 10.5 10.2 10.2 10.4 6.91 1.97 10.2 5.93 9.64 9.73 7.02 11.8 9.18 9.64 14.4 11.6 12.7 9.91 11.9 11.3 0.98 10.4 7.81 8.22 13.4 8.86 5.83 8.24 6.11 10.7 9.36 6.57 7.9 7.99 10.7 10.9 9.35 8.57 9.14 10 11.3 9.09 9.93 9.18 9.84 7.7 11.4 7.44 9.25 10.4 9.62 7.87 7.67 7.53 11.1 9.72 9.73 10.6 8.85 13.8 10.3 8.53 12.3 10.2 10.2 1.58 10.1 4.75 5.41 8.64 8.27 9.58 3.14 6.72 7.09 10.6 11.2 9.54 9.33 6.66 8.16 8.64 9.61 4.85 7.23 10.8 10.4 11.9 10.6 6.78 8.65 11 6.42 8.92 8.41 9.88 10 9.62 10.2 10.5 4.64 7.56 7.97 9.24 2.55 11.5 11.7 7.95 7.77 10.8 10.8 9.22 7.22 4.96 7.13 10.3 9.99 9.61 11.4 10.9 8.72 10.6 9.82 4.55 6.99 9.84 10.2 9.48 8.35 11.5 8.84 8.93 8.81 7.61 9.01 2.29 5.49 11 6.3 10.4 10.5 10.7 2.89 10.6 10 11.9 5.09 9.16 5.98 7.26 8.66 8.23 9.23 8.75 10.2 11.6 10 4.55 12.4 9.27 7.17 8.62 0 9.9 4.49 7.89 7.86 11.8 9.14 8.59 4.25 11.3 9.06 4.77 6.85 9.84 11.1 4.1 10.2 8.98 4.99 5.71 9.59 9.14 6.1 6.42 9.16 7.94 10.7 9.51 8.56 11.2 11.1 2.14 14 10.4 0 9.7 11.2 9.39 12.9 8.32 8.65 4.96 4.96 10.5 8.86 8.47 13.6 8.69 6.79 9.12 8.96 11.6 10.9 14.4 8.09 10.2 9.27 8.75 6.28 4.61 9.49 15 0 8.48 5.01 12.9 9.84 10.3 10.2 12.8 8.95 9.95 5.49 11.1 10.1 11 10.1 10.4 8.65 9.31 9.91 9.41 10.9 9.67 9.82 7.17 9.91 12.4 7.28 6.59 9.77 9.94 10.7 11.1 6.01 10 12.1 0.57 10.2 10.8 10.4 9.8 9.94 10.2 12.7 10.2 8.46 8.94 8.66 8.25 10.3 8.38 8.58 9.75 12.1 0.57 10.1 6.12 10 9.8 10.6 11.1 9.91 12.5 9.97 8.56 8.68 11.3 10.8 10.6 9.59 0.57 12.4 10.1 11.1 10.7 12.1 11.6 13.4 11.1 7.72 10.5 10.1 7.78 4.05 9.77 8.13 7.71 7.95 11.1 10.6 9.67 8.94 10 10.3 12.1 1.3 7.22 11.7 10.8 7.69 13 10 10.3 9.99 11.4 10.4 11.4 10.8 9.42 2.55 11.1 9.73 8.21 8.09 7.51 9.55 5.19 9.34 10 12 11.1 11.8 8.62 11.1 9.74 12.4 0.98 11.6 10.4 11.1 10.4 8.69 8.45 10.4 8.16 3.22 8.21 8.7 0 0 10.7 10 4.69 10.4 13.8 9.54 3.72 9.89 10.8 11.9 11.1 11.7 12.8 5.87 9.86 3.55 9.41 11.5 9.9 0 9.6 9.42 10.5 11.8 10.9 7.8 12.6 0 6.86 10.6 7.58 8.57 8.61 6.74 9.83 10.3 9.91 11.4 9.73 8.27 10.9 7.22 8.93 10.4 6.81 11.3 9.09 12.3 5.05 6.36 8.57 5.3 8.77 11.5 8.8 12.9 14.4 8.85 7.08 10.8 12 2.97 9.55 5.82 9.41 3.72 6.77 9.48 8.54 5.01 9.19 10.9 5.27 9.46 11.7 13.2 10.3 9.27 11.5 10.5 10.5 7.33 1.56 7.35 9.87 4.39 8.19 7.52 8.39 10.8 8.63 10.7 5.17 2.43 5.95 9.15 9.48 9.83 2.88 9.71 11.1 6.22 1.3 5.29 10.7 11.4 5.56 3.49 8.05 5.94 9.43 9.72 8.02 0.98 8.01 14 4.21 12.3 11.8 11.1 11.4 12.5 8.49 11 8.62 4.87 5.7 10.2 2.67 2.6 0.98 4.29 9.95 9.76 9.79 0.98 8.24 8.02 4.72 6.13 13 13.7 6.4 11.2 11.4 8.98 0 9.96 9.29 9.67 10.4 8.94 11.5 8.81 10.6 10.1 7.71 9.45 11.5 9.28 6.8 9.37 8.85 10.3 6.77 11 9.66 8.86 8.01 4.25 9.03 7.61 6.56 7.47 4.01 12.9 8.44 2.88 0 8.86 9.19 10.2 9.2 7.53 8.87 8.6 0 6.62 7.08 8.96 6.14 9.74 7.98 8.63 3.87 8.98 10.2 10.6 8.99 4.94 11.4 9.18 8.5 5.19 10.9 11.6 3.87 7.5 6.83 8.67 8.55 9.4 11 9.42 10.4 7.95 5.95 8.27 0 9.91 0 3.92 8.69 8.91 3.43 5.11 11.4 10.8 9.95 12.1 5.78 1.78 10.4 9.19 11 8.15 6.96 9.5 9.47 8.74 11.3 8.36 9.6 10.1 10.9 8.8 0.57 6.88 7.39 11.5 9.48 11.5 2.67 10.4 9.71 11.2 11.6 11 8.58 7.11 11.1 10.5 9.82 3.14 11.6 2.29 12.2 3.22 10.9 11.1 6.79 0.57 8.79 11.1 12.1 10.4 8.61 10.1 11.6 7.95 10.6 10.7 10.3 7.96 10.3 13.1 10.4 12.2 12.1 12.8 5.42 10.9 8.71 8.63 8.13 10.2 10.9 12.1 12.3 9.37 10.2 11.3 7.74 9.48 12.1 9.52 9.34 11.7 6.47 11.3 9.87 10.2 11.1 5.72 0 11.9 8.02 10.8 7.04 9.81 9 8.82 5.53 9.53 8.44 1.27 4.18 9.13 9.38 0.98 12.7 9.56 10.4 8.48 9.75 8.13 10.1 9.7 10.2 7.66 4.29 7.37 3.82 7.26 12.4 11.6 10.4 12.5 6.54 8 9.79 7.36 9.38 7.81 8.5 0 9.29 11.3 9.14 9.94 10.2 10.8 9.36 11.3 9.77 10.8 10.3 8.61 0.57 8.24 6.26 9.91 9.61 9.49 3.67 11.6 10.6 8.5 8.64 10.1 3.77 11.7 11.5 12.3 7.64 6 11 9.87 7.77 8.08 10.2 3.06 4.42 9.72 10 9.08 12 7.02 9.03 9.08 7.76 4.82 10.3 6.7 12.2 9.7 7.66 10.4 9.55 8.96 10 8.93 6.48 9.71 5.21 8.33 8.43 9.33 0 7.75 1.56 8.91 7.7 11.1 7.6 9.95 9.52 6.64 11.8 10.9 9.33 2.14 12.1 6.45 7.49 10.7 3.06 10.4 10.2 6.3 6.4 3.06 8.56 7.39 9.01 8.49 5.73 10.8 10 7.67 10 9.21 8.54 12.7 9.76 6.57 6 8.25 11.3 7.65 2.88 11.2 9.47 6.25 9.22 10.2 12.1 7.89 9.32 7.59 7.95 8.95 5.69 10.2 0 9.53 9.82 7.29 8.11 10.8 9.48 11.1 10.6 7.61 7.61 9.33 6.95 8.29 9.83 8.08 11.3 9.7 8.81 8.75 8.38 6.04 7.12 8.34 10.5 4.39 13.1 7.82 7.49 9.27 6.6 9.29 10.5 7.65 8.68 8.83 9.43 6.7 6.75 10.4 9.36 8.09 8.66 9.86 8.38 4.99 9.73 2.14 4.96 7.98 2.67 10.7 7.72 10.4 1.97 4.02 10.2 11 9.49 8.79 9.7 9.18 8.07 9.95 4.18 11.6 7.74 9.87 5.87 9.19 8.02 11.1 9.5 9.12 6.44 0.57 6.08 8.82 11.1 8.14 8.52 9.78 5.29 10.4 8.86 10.9 8.77 8.74 3.72 9 10.7 12 9.88 8.15 7.62 9.93 8.59 8.2 9.77 10.3 9.73 9.09 7.82 9.12 8.52 9.07 10.6 10.8 1.78 9.47 5.01 11.3 5.53 8.55 11.2 12.2 3.14 11.7 7.39 5.15 11.1 5.83 2.14 9.87 8.56 0.57 10.2 11.5 9.74 10 7.2 10.3 9.89 11.6 10.2 10 7.37 8.06 6.16 11.6 10.8 0.98 12.3 8.33 12.1 9.49 12.4 10 13.4 11.8 3.67 8.19 8.61 0 11.1 10.7 11.1 10.5 9.7 10.3 7.2 11.2 1.78 9.51 7.67 6.19 0.98 8.04 2.14 8.62 10.7 2.17 7.27 9.41 10.5 3.49 6.48 5.65 11.7 3.49 9.36 4.01 9.57 7.49 1.78 3.4 11.6 8.72 6.09 4.8 10.2 9.2 3.36 1.3 9.25 5.58 6.65 1.3 1.56 6.37 4.52 8.27 7.36 9.03 9.4 7.41 0 9.1 8.63 1.3 10.7 8.25 8.24 9.25 8.25 4.75 10.6 10.1 8.36 8.59 3.06 9.76 6.73 9.44 8.9 1.78 8.61 6.85 5.66 9.49 11.7 2.14 7.57 8.79 5 6.59 9.83 9.24 2.97 9.19 10.5 11 10.1 9.13 10.3 3.72 5.81 2.97 8.3 2.67 6.54 12.2 8.58 8.97 7.35 10.3 10 9.17 5.78 10.8 9.69 10.2 5.03 4.42 10.5 10.7 8.06 7.47 4.29 4.9 7.13 12.4 8.06 11.7 8.72 3.29 7.1 8.74 9.58 10.1 12.9 5.96 2.88 2.43 8.65 7.76 7.29 7.7 10.9 9.36 8.9 10.5 6.47 9.9 7.99 6.64 5.66 2.43 1.97 8.31 11.3 6.72 8.42 9.58 6.19 9.06 5.72 1.56 7.33 9.26 6.4 0 6.01 10.1 4.46 7.01 8.89 4.01 2.14 6.3 4.96 9.58 8.23 7.35 9.87 7.31 10.5 7.7 10.3 7.75 9.79 10.8 1.97 6.4 4.35 8.41 8.09 9.65 9.25 8.93 8.92 6.82 7.2 7.08 6.83 0 7.75 0 7.79 7.15 7.9 4.39 4.87 1.22 9.3 2.55 0.57 8.52 9.62 5.8 9.9 9.83 0.57 5.17 6.97 6.85 10.2 8.95 3.06 9.24 8.51 1.97 6.83 10.4 8.73 11.2 6.91 7.92 10.7 8 4.46 8.57 5.39 2.55 3.36 11.5 9.31 6.07 10.9 3.87 5.87 7.29 12.8 11.2 10.4 1.78 0.98 6.2 9.28 9.41 6.96 7.57 12.7 1.56 7.68 9.73 8.45 10.8 10.2 6.48 9.1 0 6.62 3.22 7.9 9.79 9.2 9.67 6.9 8.33 8.7 12.1 5.39 6.21 1.78 10.8 8.78 9.97 8.73 8.39 7.13 7.23 8.43 3.61 8.82 9.17 15.6 12.9 7.4 2.55 4.99 7.42 7.11 0.57 10.2 11.5 9.5 7.27 9.16 2.67 7.93 9.79 10.4 12.2 8.02 10.2 7.44 1.3 6.94 7.86 9.91 7.82 6.68 9.68 7.97 8.74 10 3.92 12.6 11.5 5.5 3.43 7.58 12.3 10.4 8.73 9.89 3.87 6.52 13.2 2.55 8.54 9.65 3.82 6.09 10.1 9.65 4.67 8.68 10.9 0.98 2.14 0.57 7.62 2.67 7.3 7.85 8.43 6.59 9.08 9.09 8.96 6.12 10.1 6.2 6.26 6.91 8.8 8.83 3.43 8.46 8.45 7.02 11.2 7.6 8.54 8.99 3.14 10.4 8.74 8.51 3.49 8.65 5.9 7.8 7.98 2.43 7.02 7.76 6.36 3.67 5.73 9.3 5.65 0 8.77 5.62 5.17 8.84 9.04 6.18 6.8 2.62 10.3 3.36 9.06 8.48 8.03 2.43 5.23 7.27 9.13 3.06 1.78 7.34 9.64 4.52 5.32 9.89 8.58 7.99 11.4 9.54 5.46 8.63 9.54 8.36 11.3 10 5.36 0.57 9.89 10.1 7.86 7.13 0 8.39 9.65 9.26 5.65 6.78 3.14 5.34 0.98 8.27 11 10.2 10.6 8.69 5.66 11.5 5.83 10.5 10.5 9.59 8.88 9.06 5.7 6.42 13 9.59 10.1 6.22 8.4 0 8.75 8.32 2.78 7.22 4.05 5.98 10.8 3.43 10.7 10 3.49 7.35 5.71 8.12 5.05 7.73 7.23 7.92 8.21 2.29 9.65 2.67 2.88 9.38 4.1 2.29 5.21 6.33 6.62 7.27 9.9 10.2 8.57 1.56 9.98 11.7 6.11 11.3 10.2 8.24 7.55 6.02 9.11 7.18 2.29 8.01 7.53 10.9 7.49 3.29 11.8 5.78 2.29 4.1 6.82 8.31 11.7 6.47 8.39 9.75 5.96 4.46 7.68 1.3 2.88 1.97 9.78 0.57 10.5 0 3.14 7.67 9.21 4.36 7.83 3.77 2.43 10.1 10.8 7.14 7.34 7.76 3.98 5.17 8.62 3.43 6.18 1.3 9.56 11.8 8.99 7.64 7.67 12.3 10.4 3.36 2.14 3.97 7.02 9.15 11.2 0 7.44 9.57 11.8 6.11 6.46 11.8 0 8.04 3.43 6.68 11.1 6.97 9.69 0 9.87 9.01 8.97 8.77 13.2 11.1 8.74 5.65 4.42 8.45 3.77 8.66 5.41 10.1 8.3 4.58 3.82 9.2 5.39 12.3 9.95 8.86 8.7 9.19 7.68 4.52 7.29 11.6 9.16 12.2 9.49 5.49 10.1 9.73 4.36 7.8 7.59 5.47 10.2 8.26 9.19 8.15 6.1 7.23 8.94 9.19 9.07 6.76 7.11 3.14 7.08 8.08 7.22 4.01 6.63 1.56 7.34 11.1 0 4.25 6.71 3.29 11.6 8.41 9.45 5.52 7.75 1.78 5.94 8.89 8.26 1.78 9.17 2.14 2.43 10.3 10.4 5.56 9.68 8.97 5.71 6.83 3.06 4.42 8.89 6.95 9.45 7.39 8.37 6.49 5.8 3.43 1.97 8.13 5.42 1.78 8.79 7.17 11.1 11.7 8.31 3.82 8.29 11 0 7.12 11.9 7.29 12.3 9.8 8.8 0.57 9.48 9.04 2.43 10.2 1.3 0 7.84 8.38 7.31 4.64 8.62 9.22 0.98 2.04 7.27 12.8 7.12 7.98 0 5.96 3.75 7.57 7.64 9.44 13.5 5.61 8.49 9.26 8.73 12.1 2.29 7.27 3.36 6.83 7.43 4.14 6.59 6.62 1.78 8.58 3.43 7.61 9.76 8.61 12.8 8.96 0.98 4.87 8.03 8.04 12.2 1.56 7.53 10.4 9.43 8.16 7.87 9.31 7.35 7.61 5.41 9.36 5.72 8.35 11.5 8.89 6.89 6.44 9.82 5.99 7.73 11.6 5.5 11.6 7.04 6.11 12.8 11.8 9.07 9.07 3.43 6.52 9.36 7.95 1.3 8.64 6.38 10.3 1.3 10.4 5.25 5.71 7.7 11.5 4.55 7.59 0 11.2 5.9 4.9 8.76 0.57 5.82 13.6 13.6 12.2 10 12 5.79 8.77 8.81 8.36 5.47 5.71 7.86 10.8 9.1 9.21 10.3 7.22 8.22 5.82 7 7.64 9.58 1.3 0 11.3 6.66 2.29 11.1 6.73 0 5.27 8.61 5.59 6.82 6.63 0.98 5.53 10.9 8.35 1.56 3.29 9.33 7.86 7 6.74 10.5 9.2 0.98 10.4 10.9 8.38 7.9 8.48 6.67 2.29 6.36 4.67 8.31 7.45 12 12.3 7.54 4.61 2.97 9.65 9.83 5.9 9.98 10.7 9.85 9.04 3.31 9.7 8.42 9.56 6.03 10.6 10.9 0.57 6.91 6.5 11.3 6.08 1.78 7.97 9.46 5.69 3.49 9.12 8.5 2.67 0.57 10.1 3.6 3.22 6.78 8.79 8.7 8.15 5.07 5.82 7.98 7.41 9.14 10.9 10.1 9.02 7.2 0.57 10.3 10.2 2.14 9.97 11.3 6.29 6.33 7.54 3.82 9.03 6.57 12.3 4.52 9.94 0.57 9.88 4.21 8.11 15.6 3.72 1.3 10.7 9.42 6.8 4.14 3.82 3.61 2.97 5.17 8.81 5.53 11.3 0.57 8.63 11.7 7.2 12.4 7.8 10.1 10.9 7.7 5.01 9.69 10.5 7.44 8.65 8.35 11.1 4.46 5.78 7.94 5.66 6.66 8.85 8.05 6.71 7.59 9.24 7.61 7.95 1.56 0 8.66 9.87 10.1 8.99 8.17 6.28 10.5 6.7 3.22 7.95 8.48 4.46 4.39 11.9 8.7 9.13 9.37 5.53 4.64 3.92 3.61 3.87 10.2 10.1 0 5.92 7.07 5.81 9.79 4.85 10.5 8.19 11.1 7.6 7.79 11.6 3.49 3.49 5.71 12.6 4.29 7.61 10.8 5.66 1.3 9.49 6.32 10.3 4.42 5.61 7.84 9.18 8.79 10.5 7.72 6.97 3.71 5.54 3.72 6.63 6.31 6.04 8.96 1.3 0 11.6 8.75 6.19 8.04 2.67 6.37 9.59 12.5 5.93 3.14 9.61 5.3 5.8 0 7.62 0 6.04 7.09 5.3 6.82 6.4 11.2 7.62 8.61 5.44 2.43 4.21 7.09 1.97 10.4 9.14 7.52 1.97 7.32 0 6.82 3.14 0.98 0 10.2 11.4 2.97 6.04 1.56 9.57 0 8.54 0.98 4.36 8.98 4.33 9.34 7.12 8.6 9.82 6.78 13.7 0 8.87 8.09 9.17 9.82 8.59 8.89 2.67 2.67 5.13 1.78 8.2 5.47 7.24 6.79 11.2 6.29 5.66 8.89 1.78 5.94 2.14 3.61 6.67 7.5 3.36 9.28 6.41 8.82 1.3 9.9 7.7 7.06 7.98 7.55 6.17 2.78 0.57 9.25 5.34 8.64 5.8 5.03 7.73 4.39 5.77 7.92 10.5 7.05 9.92 5.29 6.83 2.14 6.51 8.4 5.23 0.57 6.86 5.3 5.11 9.04 7.22 4.1 6.08 6.54 5.42 3.72 6.33 7.65 3.82 7.75 5.69 9.22 5.8 7.84 8.56 8.73 8 8.62 5.01 0.98 12 2.55 1.3 2.55 8.76 11 7.42 0 9.68 6.21 8.44 8.4 8.05 12.3 9.17 0.68 9.56 4.87 3.82 5.32 5.93 2.29 2.78 4.36 7.37 8.23 7.95 3.06 4.56 8.71 8.85 5.53 3.82 13.4 11.2 4.61 9.61 3.61 6.53 11.9 11.1 10.5 0.57 6.69 11.9 0 5.99 7.99 0 0 1.98 1.56 5.66 2.14 9.63 7.41 0.98 7.92 8.56 7.03 7.87 9.29 2.63 6.96 5.41 8.57 8.59 6.85 8.15 3.92 9.47 3.22 9.53 3.36 7.51 3.93 9.88 8.27 3.14 4.25 7.76 7.52 2.97 3.77 8.09 5.62 14.7 8.51 16 6.87 4.21 3.97 7.44 9.1 10.7 6.71 5.17 9.88 4.14 7.44 7.61 8.68 12.8 5.07 1.78 5.41 1.56 2.97 6.7 8.76 3.97 6.14 6.69 6.67 12.1 4.21 5.44 2.67 5.42 6.59 5.51 7.51 5.64 9.61 6.07 8.99 10.1 2.29 5.58 3.87 0 6.71 2.55 8.63 3.72 9.89 10.1 8.13 7.39 6.32 12 9.04 9.63 9.36 0.98 3.14 7.56 7.88 3.29 11.1 7.68 6.66 7.56 13.4 6.28 8.88 8.9 12.6 7.16 7.99 6.98 4.05 7.39 6.75 10.6 7.34 4.18 7.42 7.41 8.25 5.19 6.84 5.21 3.36 10.7 8.03 2.29 5.46 6.84 7 3.22 7.9 10.7 7.78 7.94 8.49 10.5 6.75 7.6 11.6 7.04 5.29 12.6 10.5 8.43 5.62 10.3 7.13 6.59 3.67 5.75 11.6 7.27 5.23 5.94 7.75 1.78 10.4 7.61 9.64 7.86 10.2 5.3 5.39 7.09 0 5.88 1.3 5.85 7.93 10.4 7.89 8.97 8.54 3.94 0 10.3 9.31 0 9.9 10.1 4.22 6.17 8.5 5.52 7.85 6.64 8.91 9.03 10.9 4.85 1.56 8.11 9.75 9 8.9 10.7 0.57 5.03 10.9 4.92 3.61 8.61 5.01 0 8.79 6.41 3.22 8.58 9.67 8.01 3.49 5.61 2.97 11.3 5.49 8.74 8.85 8.67 7.9 0 10.2 5.53 5.11 1.31 8.59 10.1 6.39 10.1 0 5.76 3.36 7.15 7.07 5.77 6.61 5.15 7.05 5.44 6.16 7.37 3.06 9.75 7.11 8.57 4.46 4.94 4.75 0.57 5.27 8.45 5.52 11.9 5.03 7.42 7.57 5.05 6.71 6.66 3.14 4.05 4.05 1.3 6.07 4.46 7.88 4.05 9.51 7.46 9.14 4.75 8.91 0.57 2.88 11.8 6.22 7.08 9.96 2.43 1.56 11.1 11 1.32 12 2.14 4.32 0.98 1.3 11.4 8.36 5.76 3.36 8.9 9.3 1.3 4.8 11.5 8.62 9.04 7.18 8.55 5.47 5.59 6.45 7.3 8.56 11.1 11.3 4.36 7.92 2.67 7.56 10.9 4.87 4.85 2.88 9.9 5.39 7.71 5.68 4.64 10.7 0.57 7.61 9.87 0 3.29 9.41 5.3 5.44 7.49 4.49 7.71 11.8 10.2 5.05 11.6 7.43 3.29 9.2 4.99 11.4 5.86 5.32 0.98 1.78 3.87 0 6.64 4.42 5.92 11.6 9.4 9.15 6.35 6.3 7.68 10.2 5.95 6.56 5.68 9.21 5.92 0.57 13.1 8.71 7.04 7.84 6.87 7.05 2.14 6.56 5.98 3.06 8.43 8.31 4.85 3.67 7.44 11.4 0.57 7.15 5.73 4.19 8.64 0 11.2 4.64 10.7 7.57 8.62 0 7.25 10.2 0.57 4.58 5.72 8.19 8.47 11.8 11 2.14 10.4 0.57 12 1.78 9.65 11.4 6.17 10.4 12.2 0.57 8.29 2.89 4.69 3.49 2.29 9.36 5.23 9.8 13.2 12.3 4.36 1.78 7.92 2.67 9.79 5.03 11 7.61 12 13.9 5.42 0 11.4 4.92 1.3 9.52 1.56 9.85 0.98 5.61 13 11.5 7.92 9.84 9.23 9.1 1.3 7.46 8.49 10.9 11.3 7.51 11.1 8.9 6.42 7.43 8.33 9.12 8.43 0.57 9.63 11.8 9.16 3.72 1.3 6.5 3.87 9.43 4.25 8.75 2.97 6.8 7.13 6.8 2.97 7.93 2.88 9.15 8.8 3.43 2.14 7.52 7.22 2.29 4.18 10.7 8.55 2.99 9.8 6.65 1.97 1.56 8.48 9.04 10.1 4.75 6.38 7.29 4.77 1.78 0 4.32 7.11 3.92 0.57 8.13 9.84 6.85 9.37 7.07 3.14 10.9 4.55 1.78 7.25 4.9 0.57 10.1 7.29 6.13 8.6 5.3 10.4 6.82 10.4 7.58 0 5.15 7 6.39 10.9 8.86 9.36 3.14 9.74 7.87 9.76 9.38 10.8 6.54 8.61 7.78 9.94 12.9 9.09 11.9 6.68 7.6 2.14 6.63 9.94 10.2 12.3 10.8 4.58 10.4 8.28 11.6 1.3 0 3.82 0.98 8.36 7.75 9.37 10.7 3.77 9.37 8.83 5.95 6.22 1.78 6.23 5.36 5.59 9.41 2.55 5.65 10.7 12.9 9.44 2.55 10.4 11.5 11.8 9.43 6.58 8.5 7.21 10.7 8.95 4.55 8.7 8.84 9.71 9.59 11.9 9.91 9.33 11.9 8.76 11.3 7.88 2.29 8.98 3.72 1.97 10.1 10.3 5.23 1.3 12.1 9.11 9.4 11.9 11.3 12.4 11.8 8.9 9.64 7.96 6.48 5.78 9.05 7.59 10.2 6.07 12.1 3.49 8.06 9.78 7.91 6.15 7.94 3.61 9.67 10.2 10.1 10.7 9.46 9.37 6.3 4.8 4.01 8.71 10.1 7.21 8.44 8.9 5.71 7.91 11.5 5.01 11.3 12.9 12.1 7.92 8.09 5.88 10.8 7.56 8.03 7.23 8.62 4.85 12.3 11.2 9.15 11.7 16.1 1.78 7.91 9.21 10.8 6.17 7.86 9.74 11.7 13.1 14.2 15.4 10.2 10.9 5.68 7.65 7.9 9.97 9.64 5.36 4.49 6.69 9.88 9.73 11.2 9.2 9.51 10.3 7.43 5.62 5.25 12.2 5.37 10.8 5.05 8.46 0.57 10.4 4.29 6.51 9.52 3.55 7.52 9.86 10.7 10.8 9.38 9.43 9.12 9.91 4.14 8.83 10.9 9.35 1.78 10.4 7.04 8.16 5.38 11.3 5.23 5.25 10.3 4.71 2.29 6.53 1.06 8.66 4.77 5.3 9.1 9.58 8.07 13.5 5.13 9.36 9.57 4.75 7.71 10.6 12.3 7.93 12.8 8.29 8.96 11.6 12.6 13.6 11.9 13.2 0 9.93 1.3 10.5 7.01 7.49 10.8 0.98 0 6.34 8.19 0 9.89 6.72 0.98 2.97 11 7.27 7.63 7.78 2.88 8.84 3.06 7.87 7.76 13.4 8.67 0 9.45 13.8 9.91 8.98 0.57 6.5 10.6 8.57 5.29 7.64 10.8 0.57 2.29 7.46 4.29 11.3 9.78 7.91 8.83 7.97 1.78 8.78 4.58 7.56 3.06 7.83 1.3 2.29 1.3 8.76 6.38 5.01 5.85 9.05 7.65 7.26 6.62 8.49 7.81 4.05 6.82 6.89 6.22 8.29 7.5 9.62 8.62 3.72 7.67 9.01 6.56 10.2 10 8.61 7.63 6.72 9.77 7.27 10.6 5.92 9.91 9.57 7.2 9.08 9.54 9.65 7.29 9.9 8.42 2.14 7.65 9.93 10.3 5.95 9.5 4.05 3.55 7.17 5.59 9.96 9.3 0.57 8.76 9.28 3.87 0 12.8 7.42 0.98 4.67 6.58 11 8.38 9.43 9.15 6.97 10.2 8.87 6.85 5.88 6.99 9.34 5.03 11.6 8.08 5.25 15.5 8.16 6.82 2.88 0.57 2.14 9.29 6.86 8.67 9.52 11.5 8.99 10.2 9.69 7.36 7.91 13.5 9.69 5.27 2.43 7.77 8.63 7.47 5.17 7.39 8.55 9.69 9.56 10.5 7.83 11.1 8.73 9.82 6.52 7.59 10.2 12.6 11.1 7 11.1 11 12.4 9.8 5.21 0.98 7.38 3.06 8.78 4.05 10.3 3.22 0.57 7.83 10.9 8.37 10.5 9.84 9.29 7.58 9.5 7.85 9.37 8.9 1.3 7.23 8.56 10.6 11.8 10.2 9.9 1.3 8.07 12.7 4.36 1.78 12.4 9.48 9.03 5.68 11.8 3.22 9.08 9.52 7.24 10.5 7.27 10.2 6.37 10.8 11.1 6.29 11.1 10.9 5.49 10.4 10 4.29 11.3 2.29 10.8 10.5 11.6 10.7 8.91 10.4 10.9 6.05 4.14 5.78 4.8 8.15 1.3 10.4 13 7.4 8.4 9.23 10.7 2.43 12.1 10 10.3 2.55 7.92 9.85 3.92 6.17 10.6 6.1 10.3 7.42 0.57 9.29 9.16 10.9 3.55 5.62 9.16 2.97 8.4 5.96 13.3 7.42 8.95 10.1 0.98 0 13.8 11.6 6.36 7.36 8.88 6.82 5.44 7.4 11.4 9.98 10.3 9.99 10.1 10.6 1.3 9.17 7.41 10.1 9.41 9.42 7.76 10.3 6.83 4.29 5.52 10.6 9.96 13 1.3 3.43 7.62 3.14 4.58 8.09 2.67 8.38 13 2.55 8.19 9.25 7.94 10.4 5.07 7.09 5.91 8.09 9.14 8.01 8.51 7.13 9.51 8.7 0.98 10.2 9.81 8.16 9.33 8.76 8.65 10.3 3.36 4.05 7.98 8.14 3.97 2.43 6.23 4.01 6.11 6.27 9.35 2.14 8.48 10.2 11.3 4.01 5.42 4.1 2.55 4.21 9.18 2.14 4.72 10.2 6.96 1.97 0.57 6.52 7.63 7.56 11.3 3.67 6.93 7.02 11.6 5.71 10.8 6.36 5.13 7.76 10.2 3.29 11.2 7.84 6.3 1.56 11.4 8.42 6.73 3.78 10.4 8.43 9.17 6.01 10.5 6.58 9.02 9.33 7.04 5.05 5.21 9.08 10.4 4.46 0.98 2.78 5.66 6.51 8.94 5.36 5.7 8.2 2.29 11.4 2.67 9 10.2 8.7 7.92 7.23 9.15 3.24 8.89 7.43 5.29 12 7.48 2.88 10 9.53 8.3 8.56 3.92 9.42 2.78 9.13 8.36 9.66 6.23 11.1 9.38 10.8 10.5 9.72 7.45 2.43 11 9.32 9.79 7.49 6.15 8.37 10.2 3.97 9.64 7.48 4.46 10.2 8.48 8.13 10.1 10.1 8.19 6.35 1.78 2.55 2.55 1.56 10.1 9.62 1.3 3.49 4.8 4.64 3.77 5.01 6.91 2.78 9.08 10.4 9.09 9.64 4.32 9.88 9.1 8.4 12.1 11.8 4.46 8.8 7.67 8.94 2.88 0 5.58 4.61 6.27 8.33 7.62 5.77 14.4 9.57 9.85 0.57 9.41 11.3 9.44 10.8 7.73 13.9 9.81 8.1 11 6.75 9.76 10.5 12.2 9.15 6.11 0.57 11 3.55 6.79 10.7 9.35 6.68 12.2 3.87 11.8 9.06 10 8.8 7.73 11.1 11.2 9.59 4.25 8.23 10.2 6.8 9.34 9.62 10.6 11.3 9.25 7.85 3.87 8.99 9.64 8.52 10.5 7.13 8.79 6.84 9.2 4.42 9.71 8.26 9.56 11 7.79 10.8 9.49 10.6 1.3 9.82 7.74 10.6 11.2 7.67 11.7 8.73 10.6 8.99 8.67 9.44 9.51 9.08 11.4 9.56 8.15 10.1 12.6 8.49 8.74 9.8 8.85 9.42 11.8 9.47 3.72 9.59 9.33 3.72 9.37 10.1 6.04 2.67 8.89 7.49 9.41 8.96 10.6 10.5 10.2 10.8 9.64 9.21 8.11 12.3 5.92 1.97 10.6 0 9.5 11.7 9.24 10.4 8.32 6.86 9.58 9.4 11.4 10.4 10.3 10.4 7.33 9.8 8.04 8.53 10.8 10 9.37 7.45 12 10.5 9.24 1.3 8.15 10.8 10.4 3.55 4.32 7.05 8.7 10.1 10.5 2.67 3.72 10.8 10.2 10 5.75 10.2 11.7 0 3.55 0 9.96 10.9 10.3 8.93 5.78 10.3 2.43 9.39 10.7 7.07 10.6 7.71 8.56 8.8 9.44 0.98 10.6 8.87 10.7 10.2 11 9.12 11.3 8.69 12.1 12.2 8.85 8.09 5.09 3.06 10.4 9.32 9.84 9.02 10.2 9.27 9.17 8.13 8.96 5.37 10.8 10.2 9.34 11 9.15 6.86 8.58 9.61 10.6 6.98 10.7 10.1 10.8 10.7 3.92 9.39 4.29 9.61 11.3 10.9 9.87 10.6 9.5 7.29 9.59 10.1 10.6 5.05 8.34 10.1 8.54 9.99 8.58 8.65 8.19 8.44 9.55 10.3 7.66 9.49 8.63 10.4 5.91 10 9.89 9.05 10.3 10.2 9.11 8.99 10.1 8.62 12.4 8.85 3.36 9.53 2.29 10.5 10.6 1.3 10.3 9.92 9.65 7.84 8.44 9.96 10 6.97 6.37 0 9.25 10.6 10.6 3.97 10 8.5 9.56 9.97 6.3 8.94 10.6 10.7 9.24 6.56 9.31 12.4 10.4 10.9 9.28 9.86 9.5 2.88 8.82 7.06 0.57 9.96 10.3 10.3 9.36 9.27 9.13 9.41 12.6 9.21 9.96 9.89 9.81 10.4 10.1 10.7 10.5 10.2 9.65 12.6 10 10.1 8.63 9.39 10.2 8.73 10.3 8.53 8.19 9.87 11.1 9.05 8.56 10.2 10.6 8.67 11 10.4 12.9 11.2 11.4 10.3 12.9 7.87 9.12 11.9 10.3 10.1 10.2 9.41 6.06 10.7 12 2.88 10.7 8.13 2.29 8.19 9.1 9.95 9.52 9.58 10.6 11.6 11.1 2.67 9.62 9.58 7.05 9.21 8.92 10.1 12.4 9.7 8.47 9.24 7.52 9.47 12.1 8.37 5.86 9.08 9.5 6.96 1.78 8.25 7.05 7.54 10.8 11.6 9.96 11 7.34 7.57 9.46 10.3 11.6 3.67 7.67 9.45 11 9.24 9.3 10.1 9.81 9.75 9.4 9.27 10 11.4 12.2 10.1 8.98 9.03 7.74 9.28 9.57 10.5 9.82 8.7 8.41 12.3 9.61 7.39 0.57 9.32 0.98 6.41 12.5 8.23 11.1 7.62 9.42 10.9 9.51 11.3 10 7.47 9.72 9.14 10.4 11.1 8.79 3.72 8.59 10.1 7.65 9.97 9.28 7.99 9.08 11.5 10.9 9.54 1.56 10.3 9.16 9.83 10.4 7.4 9.59 11.1 12.8 10.7 9.79 10.2 10.3 9.94 9.9 8.38 7.28 10.4 10.8 7.37 9.14 12.2 10.4 9.25 9.09 3.92 11.8 10.6 10.4 11.9 12.4 8.36 9.45 9 10.2 9.24 10.2 10.4 8.59 10.9 11.9 9.16 12.2 9.64 11.1 10.1 10 8.69 9.37 8.1 9.44 9.19 11.4 9.67 9.99 9.87 11.2 11.7 9.52 10.9 10.2 9.36 10.9 10.9 9.2 10.5 4.61 8.13 11.5 10.1 8.15 8.16 8.49 10.1 12.3 9.65 5.46 10.2 8.45 9.26 10 4.58 2.43 5.23 8.55 1.3 9.44 11.2 8.14 10.7 8.98 7.18 8.15 10.2 3.92 8.16 4.92 11.2 11.4 10.4 6.95 10.2 11.2 12.3 9.15 8.23 7.28 5.11 6.61 8.75 4.18 11.6 8.02 9.19 8.58 12.2 9.99 12.1 9.02 8.92 7.51 10.5 11.3 11.9 7.9 10.5 10.6 7.71 9.93 5.25 9.52 7.1 0.99 9.86 11.9 8.14 7.67 9.7 0.57 9.94 9.03 8.72 8.91 11 10.5 9.98 9.47 11 8.2 7.91 9.45 9.77 8.64 2.43 1.78 13.9 8.65 10.7 12.7 10.6 9.12 7.09 10 9.17 11.2 8.9 8.54 9.25 10.3 7.59 1.3 3.61 8.56 4.46 10.4 1.78 9.08 0 6.62 8.37 10.3 11.2 9.06 2.78 8.42 11.2 9.4 8.33 9.26 11.9 10.6 10.2 9.67 4.05 3.92 11.8 0 7.85 10.8 2.55 8.24 11.2 5.83 10 9.25 9.94 6.3 11.5 8.55 10.1 10.2 11.4 8.53 6.71 8.91 10.1 5.11 8.67 9.3 9.25 10.4 12.5 7.31 12.5 6.63 10.8 11.8 9.03 10.1 10.1 1.97 8.26 9.78 9.25 9.79 0 0 3.06 3.06 10.5 7.25 10.2 9.49 7.21 10.3 9.31 9.5 6.3 10.3 10.7 12.6 10.3 8.44 7.71 7.44 13.6 4.87 9.73 9.94 9.27 9.88 9.84 9.15 8.64 6.61 9.43 6.21 9.24 7.76 11.8 9.2 11 11.5 10.6 9.31 10.9 10.2 10.4 7.82 8.51 7.8 1.3 12.3 5.42 2.55 12.3 9.74 8.38 10.7 10.5 12 11.2 1.78 3.88 7.87 10.7 10 4.42 9.1 9.29 8.75 2.78 7.47 9.35 7.58 8.49 7.7 11.9 8.77 2.29 6.99 5.42 3.61 8.6 6.2 5.63 0.57 10.2 3.87 7.02 2.14 6.33 7.34 6.24 7.07 7.42 7.74 4.92 0.98 9.47 10.4 9.24 7.98 7.56 1.97 2.29 15.2 8.79 10.6 0 16.6 11.5 11.6 12.4 4.69 5.8 8.25 9.25 1.56 10.8 11.3 6.25 4.57 8.76 7.09 2.14 9.6 0.98 5.5 9.08 10.4 9.26 1.3 3.6 4.87 9.25 8.8 8.97 4.25 10.1 7.48 8.95 8.53 4.18 5.86 9.74 6.71 4.14 10.8 2.78 7.98 8.36 8.35 5.23 0 9.84 10.1 8.35 8.5 9.68 6.5 5.94 9.99 6.88 6.51 10.3 1.78 1.3 7.35 1.3 1.78 11.6 7.79 4.77 5.8 3.22 0 9.33 8.83 5.03 9.99 9.57 9.19 8.04 4.85 12.2 0.57 7.14 12.2 5.68 10.1 8.96 8.36 9.51 6.88 7.03 7.28 3.36 1.3 7.06 7.99 9.64 0.57 4.69 2.88 7.81 0 8.17 6.33 6.39 5.86 7.31 9.41 0 7.81 1.3 1.97 10.8 7.7 7.72 5.65 6.88 5.29 7.78 10.3 7 0.98 1.97 2.88 9.98 9.15 3.22 9.55 6.09 6.77 6.77 9.45 9.56 5.88 5.19 4.72 8.49 4.32 7.76 7.64 0 5.73 6.75 2.55 0 3.43 7.63 0.57 4.05 4.82 0.57 1.97 4.82 3.29 7.16 1.56 4.39 9.38 4.67 7.83 3.97 5.76 5.94 0.98 7.3 7.17 1.56 2.43 0.98 9.87 9.38 3.49 6.93 5.15 9.9 10.1 9.51 9.14 0.57 9.94 11.1 8.91 7.78 9.37 5.85 5.69 5.59 4.67 7.49 10.4 11.2 4.42 10.6 9.29 11.5 7.12 11.3 9.95 8.88 8.21 6.78 0.98 11.3 11.6 8.62 8.2 9.11 1.56 9.74 10.8 10.3 2.97 5.29 11.4 9.83 8.19 8.44 0.57 12.7 9.65 7.89 11.1 10.5 2.55 7.15 10.7 7.66 0.57 10.3 3.92 10.5 10.2 11.5 8.74 8.07 9.05 11.3 9.14 10.6 8.59 8.58 5.81 8.66 9.22 9.46 9.3 10.2 0 8.12 3.82 9.27 9.73 12.5 9.51 12.9 11.2 10.1 7.21 8.66 9.33 9.87 8.06 8.87 5.71 7.46 11.2 11.2 3.86 6.93 8.81 7.51 10.5 8.15 3.43 10.5 9.59 9.22 8.84 7.24 8.64 9.2 4.1 9.48 7.83 9.31 11.6 9.63 6.98 11 9.75 9.27 4.9 8.5 10.8 11.4 0 7.37 8.51 8.78 5.21 5.85 3.72 10.2 4.8 6.06 11.8 9.83 0 8.71 1.97 1.56 4.69 10.8 10.5 7.92 13.3 8.87 9.12 8.6 8.63 9.36 10.1 9.65 10 9.92 6.8 10.5 9.91 10.4 8.14 7.68 11 7.64 10.6 10.2 7.98 6.31 9.36 10.1 8.45 16.4 10.8 9.08 8.39 7.42 8.78 9.33 9.6 10.3 10.1 8.67 8.94 5.88 8.79 8.69 9.76 7.5 11.2 9.18 10.3 7.23 13 10.3 11.7 9.56 10.6 9.02 10 9.17 12.1 5.07 11.5 7.53 9.07 10.7 8.68 9.03 12 11.7 9.8 4.48 8.16 3.72 10.5 10.6 10.2 1.56 5.13 8.04 8.52 8.73 11.3 1.78 8.18 8.66 7.45 6.46 1.56 7.89 4.9 7.67 5.17 4.36 6.83 4.94 9.35 9.94 10.4 10.4 10.5 9.77 8.35 10.8 10.5 11.4 10.3 12.3 4.25 5.42 8.59 10.7 11.3 9.25 9.7 8.63 8.41 1.3 10.5 7.62 11.4 11.8 3.55 8.53 9.2 11.4 8.44 10.6 8.48 10.3 8.6 9.07 9.54 11.1 12.2 12.2 3.55 10.1 9.49 9.32 7.88 5.68 9.57 3.67 9.97 9.96 4.18 6.85 10.8 11 7.98 9.62 9.66 2.97 10.4 11.8 9.25 9.58 11.8 7.99 8.74 8.71 5.36 10.3 6.2 10.1 3.77 9.05 5.9 8.75 10.4 0 9.86 8.24 9.18 9.39 9.31 0.98 10.1 0 5.03 6.98 7.58 8.05 11.3 7.93 5.62 8.29 7.02 5.11 0.57 8.97 0.98 5.56 9.88 9.07 8.95 3.58 10.2 8.4 3.14 7.48 9.58 8.29 5.52 8.39 6.35 6.86 9.68 9.11 8.84 9.89 9.83 6 13.2 10.9 9.86 1.3 10.9 0.57 9.33 8.27 10 7.93 11.6 9.24 8.1 0.98 10 10.4 9.94 10.3 9.03 1.97 7.15 8.96 3.49 11.1 11.4 10.9 10.3 11.1 10.7 2.43 7.6 5.93 10.2 9.01 8.94 9.73 8.14 8.38 11.2 8.35 7.32 8.69 9.52 10.7 8.97 9.03 9.51 9.23 8.89 10.9 5.8 1.78 0.57 10.5 4.42 0.78 5.69 9.15 3.55 11.5 0 7.52 8.95 4.32 10.3 4.64 7.52 0 11.2 11.8 9.91 4.96 6.47 4.61 6.3 7.51 7 10.6 3.55 6.41 6.45 0.57 9.08 5.61 10.4 6.96 7.47 4.01 8.34 8.73 0.57 10.8 9.13 12.6 8.75 1.3 7.65 0 11.7 9.06 9.85 7.15 9.81 0 5.62 9.34 9.8 10.5 4.42 8.41 9.92 7.65 4.94 7.88 9.81 13.6 10.1 10.6 10 9.65 11.8 9.07 0 0 10 0.98 8.8 6.09 10.6 11.9 10.6 6.93 10.7 9.19 8.46 11.1 2.29 9.6 0.57 6.73 9.52 6.98 9.08 11.2 12.5 8.83 2.67 4.75 9.72 10.3 12.3 6.88 6.18 11 5.86 7.42 3.61 8.74 8.2 4.99 9.49 5.19 11.7 1.97 8.38 0.98 5.71 10.3 8.56 4.21 1.3 9.65 8.26 9.9 12.5 10.5 8.49 6.79 5.3 7.27 8.73 6.7 9.2 3.29 7.09 11 1.78 8.66 3.67 5.13 7.54 11.4 10 9.05 9.54 9.39 4.29 0 9.58 9.75 5.15 6.36 9.18 9.2 7.25 9.52 1.3 5.87 9.21 7.85 11.1 9.58 12.4 8.68 6.46 8.47 11.4 7.75 1.3 8.65 1.3 5.07 3.61 8.47 11 3.36 7.24 10.8 2.55 8.75 7.52 9.85 9.9 8.59 6.66 5.66 8.76 12.4 11.9 9.5 9.76 8.29 9.16 10.1 10.1 10 7.87 3.67 8.2 9.73 9.45 0.98 6.57 5.3 5.78 5.76 10.1 8.14 8.13 9.45 6.74 10.2 7.32 2.29 7.44 8.45 9.43 3.82 8.34 6.16 9.03 12 3.72 8.7 11.5 2.43 10.2 9.56 10.8 8.75 3.77 12 10.9 7.63 11.1 11.9 9.83 9.46 10.5 9.27 10.8 8.67 8.79 9.44 8.81 9.37 5.21 8.4 8.44 9.93 4.77 7.37 7.62 10.7 13.6 9.66 9.09 10.7 8.19 9.68 10.8 4.49 12.5 9.5 1.3 10.1 10.8 12.4 8.6 9.41 12.7 3.29 11.5 9.23 10.3 7.78 8.21 10.3 7.06 11.1 12.5 10.5 7.54 5.03 10.7 14.8 0.98 8.14 12.8 12.9 2.33 3.61 3.06 11.2 8.2 3.22 8.75 11.1 5.01 10.2 5.03 1.56 13.2 5.66 9.47 9.22 10.7 11.2 10.5 11.7 11 12.1 10.4 2.97 9.01 4.8 2.78 10.5 10.1 9.32 12.8 2.14 6.56 3.14 7.69 10.2 8.38 1.78 2.14 3.36 5.72 3.29 5.64 3.06 9.28 5.61 0.98 8.8 0.57 7.75 9.13 7.05 6.03 9.09 4.72 4.42 1.56 1.78 8.54 10.3 7.21 13.6 10.2 3.49 5.95 2.78 8.28 3.43 7.36 9.41 8.44 9.54 7.25 2.67 5.8 7.94 4.1 6.09 5.42 7.32 5.47 9.63 5.52 7.1 2.67 11.2 10.8 9.58 4.46 5.66 5.42 9.15 4.01 4.39 0 10.2 6.3 8 5.34 8.75 6.07 8.21 5.13 3.14 3.52 2.55 9.58 3.29 3.87 0 8.72 1.3 6.64 3.87 4.39 9.24 10.7 8.03 4.8 4.16 5.92 5.55 5.96 2.97 7.8 1.97 3.49 4.12 10.1 5.93 5.42 0.98 5.77 8.91 6.3 9.81 6.19 7.22 6.78 3.29 3.87 7.54 8.33 4.55 4.14 8.93 9.83 9.78 6.66 2.43 10.3 9.68 0.57 5.82 7.74 5.49 6.92 6.27 8.61 0.57 10.3 4.92 3.55 4.05 2.14 8.46 8.27 0.57 3.87 4.69 10.9 1.3 0 9.05 12.7 9.51 7.64 4.9 9.35 2.67 0 0 2.14 9.6 2.14 4.64 8.94 3.06 9.39 5.46 6.93 0.57 6 4.75 8.14 8.07 9.12 4.38 0.57 5.03 2.78 5.36 2.29 3.22 11.9 3.55 6.69 6.96 6.74 7.42 1.3 5.29 5.36 0.57 4.46 12.1 2.67 0.57 8.24 7.29 5.25 7.6 9.34 2.67 3.43 0 8.86 0.98 4.85 0.57 7.85 8.68 8.46 3.14 5.87 0 3.82 4.97 8.63 2.29 2.55 8.88 6.23 2.29 2.14 8.69 3.72 6.84 0.57 8.86 0 0.57 2.29 7.22 1.3 7.43 5.61 10.8 3.61 0.98 8.32 2.67 4.92 0 6.95 10.7 7.05 4.58 9.85 3.55 8.37 2.14 3.06 6.96 6.82 7.89 8.7 7.83 7.74 0 4.9 9.48 8.81 1.56 7.05 7.71 3.29 9.31 4.01 6.52 10.3 9.11 6.12 9.16 3.82 3.49 3.87 3.43 11.1 1.3 8.17 7.89 7.72 6.18 5.96 9.02 9.88 4.39 8.9 0 8.43 0.98 3.22 5.01 5.55 7.29 6.52 9.23 1.97 7.1 8.65 4.49 8.53 7.45 6.47 7.72 7.21 0.57 5.66 2.97 8.94 5.84 3.36 8.65 1.3 4.28 9.05 0 6.59 6.23 7.89 4.61 8.03 8.27 0.57 6.25 5.59 4.49 3.87 8.01 7.6 2.55 11.5 6.11 9.08 5.76 3.77 4.96 8.44 0.98 7.81 9.36 9.42 2.78 6.55 7.37 4.46 1.3 6.21 9.37 10.3 8.68 1.78 8.06 7.44 9 6.93 1.3 0.57 5.76 7.53 9.08 4.58 6 5.55 6.22 5.96 3.06 6.25 9.09 11.2 11.7 11.1 5.87 13.4 1.56 11 12.9 10.6 8.49 12.1 10.7 10.8 9.32 1.97 8.67 8.97 9.33 10.5 9.07 11.7 14.4 13.7 7.89 9.32 10.8 0 8.18 5.69 10.4 1.3 10.4 8.65 10.9 11.2 11.2 10.1 9.59 8.5 9.05 5.44 6.89 9.5 8.34 9.86 12.1 8.89 0 7.03 9.6 9.07 12.5 9.42 8.9 11.7 13.8 0 4.42 8.8 1.3 6.76 6.53 9.45 3.82 9.12 11.9 5.25 11.3 7.87 9.52 10.5 12.2 8.33 9.13 10.5 10.2 8.29 9.87 9.86 8.65 8.92 10.3 6.51 11.3 10.3 9.42 10.1 6.3 10.3 8.49 3.97 8.19 9.15 8.51 10 10.2 9.67 10.3 10.3 10.2 11.3 9.84 10.3 7.09 8.85 3.67 8.8 9.63 8.78 1.78 9.37 10.7 9.19 9.89 0 0 8.82 4.01 11.4 3.97 3.55 7.76 5.92 0.57 3.67 8.04 12.3 5.99 3.49 13.1 0.57 11.1 13.2 10.5 10.1 12.3 11 9.55 12.2 8.69 8.8 9.76 8.96 9.59 5.32 14.2 10.1 4.18 9.07 8.97 6.43 9.48 8.79 8.22 9 11 9.09 9.19 6.91 7.13 9.28 11.5 13.9 11.4 9.64 5.49 10.7 10.3 7.13 8.98 8.8 0.57 9.96 7.56 2.29 11.1 9.14 0.57 8.69 9.54 8.35 10.2 4.64 11.3 1.56 4.99 7.83 8.57 10.2 3.87 11.9 10.1 9.27 3.29 7.92 11.8 8.29 8.72 0.57 3.55 9.72 11.6 9.55 1.78 9.71 10.3 9.36 11.7 10.9 10.2 11 7.92 10.4 2.14 10.3 7.26 11.1 7.75 7.16 10 8.84 2.97 9.1 5.75 9.44 8.63 8.08 9.59 8.84 9.37 10.4 8.43 7.9 11.9 8.69 9.53 12.4 9.65 7.93 4.8 7.71 7.09 0.57 10.5 9.2 7.53 3.43 10.1 9.42 9.23 8.17 10.1 8.2 1.78 11.2 9.35 13.3 9.02 9.15 11.1 2.55 10.3 6.39 10.6 8.94 7.82 8.82 9.57 9.87 11.4 9.35 10.9 6.49 8.2 8.81 9.39 0 8.86 5.19 11.8 7.94 7 9.34 8.64 12.7 8.44 1.03 11.5 2.29 11.1 8.49 10.6 4.58 6.82 9.32 5.07 6.68 5.66 11.4 6.59 11.4 0 0 0 12.9 3.22 1.2 9.01 10.9 7.11 13.7 11.9 13.6 10.7 10 5.75 12.7 11.8 10.1 3.06 10.7 0.57 2.29 5.92 7.1 12 7.73 7.42 0 0 0.57 3.14 9.06 0 10.8 8.99 10.8 10.3 10.6 11.1 10.5 4.25 12.7 12.6 13.2 4.94 9.09 11.9 11.3 10.8 7.41 12.6 11 8.28 4.8 10.1 7.32 8.85 3.97 6.57 9.78 4.05 10.3 8.36 5.98 10 4.87 6.75 10.3 7.94 11.4 8.87 10.6 12.9 6.32 10.8 6.21 11.7 9.99 10.1 12.1 8.08 11 9.8 9.95 9.64 10.4 11.8 6.94 8.68 15.1 15.5 14.3 11.2 10.8 13.2 10.5 6.11 13.1 12.9 4.58 12.2 5.39 13.4 7.36 14.5 13.7 12.8 8.37 7.6 10.9 12.7 10.9 5.9 11.9 7.14 5.75 4.9 7.42 7.82 5.82 9.53 12 10 10.3 10.9 12 10.9 8.99 9.86 11.1 11.2 5.09 10.8 10.4 7.6 9 4.05 9.49 9.55 9.48 9.16 4.18 7.54 0.57 8.84 4.29 8.93 0 9.87 12.9 8.4 13.9 11.9 12.9 11.9 11.6 12 10.8 10.8 13.2 0.57 12.2 13.1 0 6.79 6.29 10.1 7.09 10.6 8.18 7.29 3.2 6.58 3.29 5.37 5.37 6.3 0.57 9.2 7.77 7.96 6.26 6.43 7.32 8.7 7.01 8.85 9.71 7.62 6.93 8.75 8.44 8.86 0.98 10.3 4.32 6.74 11.1 0 9.07 10.6 1.3 3.43 3.97 9.84 2.88 7.23 10.1 10.5 9.13 9.63 11.3 5.23 4.21 10.5 11.3 11.5 9.61 11.9 10 4.32 7.2 5.8 2.88 10.9 10.7 7.73 6.72 9.95 10.7 10.6 12.3 10.2 6.23 7.56 10.9 13.3 9.91 8.49 8.87 13.6 12.7 14.6 9.47 5.28 14 11 14.2 13.2 1.78 11.7 10.5 10.2 11.6 5.44 6.47 14.2 10.8 8.06 0.98 0 0.57 6.22 4.58 0 4.14 8.49 11.9 9.39 10.7 11.3 2.29 3.97 2.97 2 3.73 10 10.5 5.47 5.17 4.36 9.05 9.5 4.29 8.91 2.97 0 3.87 4.8 8.01 9.28 8.83 1.97 4.9 7.51 9.12 4.42 1.3 0.57 6.45 4.18 7.59 11 0 8.83 7.47 4.9 9.81 9.92 10.2 8.68 10 9.37 7.68 8.75 6.53 7.27 4.67 0.98 1.78 8.98 1.3 6.69 8.28 7.59 3.29 3.14 6.03 7.84 3.33 3.97 6.37 3.61 6.07 9.73 5.82 0 10.9 8.87 5.47 7.27 10.8 8.82 4.72 2.14 2.88 4.18 9.61 3.97 3.49 5.93 3.49 10.5 10.1 8.42 0 0 4.21 6.27 3.14 7.71 3.97 2.29 7.32 3.49 11.8 4.61 10.8 8.33 3.92 1.57 0 6.5 3.77 7.82 3.55 1.78 4.36 2.67 4.05 5.42 4.92 7.46 4.9 7.39 13.4 2.55 1.58 2.97 8.36 2.67 10.2 11 10.8 11.6 8.26 10.7 1.78 4.42 3.97 8.41 10.8 1.97 7.75 10.3 1.56 9.14 0.98 10.3 7.75 11.8 10.5 2.29 11.3 4.25 4.31 5.32 0.57 6.36 0.98 7.33 1.56 9.78 1.3 5.41 8.78 1.38 8.85 9.24 3.92 9.25 3.77 1.3 4.1 4.8 8.59 9.34 8.62 7.3 0.98 5.64 8.7 6.86 1.78 5.85 1.3 2.55 3.14 1.3 1.97 9.81 5.81 8.49 6.97 2.97 8.44 8.75 0 5.9 11.3 2.55 10.2 2.78 4.9 4.42 12.5 3.55 4.75 7.4 5.87 3.43 0 6.48 2.97 6.21 0 0 5.32 10.2 1.56 10.2 2.67 2.97 11.1 12.7 5.96 2.78 7.03 0.57 10.8 6.27 5.88 6.78 15 11.2 4.64 7.02 6.11 8.5 8.18 7.26 8.2 11.8 8.96 0 11.2 5.64 5.55 5.01 9.05 14.4 3.49 7.68 14.1 0.57 6.93 12.1 8.01 0.57 11.7 7.13 1.56 9.32 14.4 5.34 11 7.79 2.97 0 7.74 3.45 8.25 2.29 10.2 8.15 13.8 6.16 8.93 8.08 9.62 6.85 10.8 7.23 1.56 9.7 1.18 11.3 8.47 7.23 4.46 2.78 2.78 6.86 3.16 5.73 6.34 1.3 6.14 8.42 10.9 10.2 2.55 6.42 10.8 7.05 7.09 5.65 3.14 7.31 9.11 6.17 10.3 3.22 1.78 9.22 8.51 8.46 5.17 7.92 8.99 7.38 7.48 16.4 4.25 1.56 2.78 9.62 9.13 1.97 7.53 2.29 0 6.19 9.88 11.5 3.66 6.86 11.5 9.3 9.31 6.84 8.52 5.78 5.09 1.3 8.61 3.29 9.83 10.6 11.2 12.3 5.34 11.2 8.29 12.6 9.68 11.3 7.4 3.61 7.83 7.36 3.97 4.1 4.69 2.88 3.72 8.67 2.29 8.57 9.12 8.46 9.57 11.1 8.51 6.67 2.78 10.4 0.57 11.7 7.08 9.4 11.1 11.3 7.39 9.84 9.36 7.75 9.44 10.3 4.75 10.8 8.1 8.52 8.53 8.18 6.66 9.41 8.78 8.9 2.14 13.5 7.55 9.83 9.36 9.78 5.85 5.09 8.34 9.18 9.05 10.6 10 12.9 11.8 10.2 7.73 11.4 12.4 10.5 9.61 9.15 13.9 0.98 1.3 4.05 13.8 5.74 6.26 11.2 10.8 11.3 3.67 8.94 8.16 9.69 11.2 10.9 8.57 12.5 7.97 9.36 11.1 8.27 11.6 9.87 12 13.1 7.33 5.94 13.2 8.5 11.5 0 3.61 6.21 7.09 2.29 1.78 1.3 11 5.92 8.18 7.44 5.09 10.3 7.61 6.03 6.27 0.98 4.29 6.91 0.57 6.69 6.3 5.74 6.91 8.49 9.28 3.22 2.97 7.4 8.2 8.49 5.75 8.07 2.29 3.49 11.3 2.9 2.43 5.77 5.91 5.8 6.53 0.98 8.22 1.56 8.41 8.35 13.3 6.06 7.21 5.68 10.1 0.98 6.71 7.69 3.49 7.13 1.78 6.7 9.37 8.17 6.96 3.72 7.41 3.72 1.3 7.95 6.53 6.2 4.69 7.12 7.23 0.98 5.92 0 3.22 0 5.13 11 2.29 8.29 9.71 3.97 0.98 9.78 5.91 8.63 5.19 7.83 12.9 4.7 3.67 6.27 6.62 8.82 9.16 3.22 8.97 0 3.36 5.8 6.5 3.87 0.98 8.56 12.5 5.27 4.21 9.55 12.9 7.81 7.02 8.12 6.48 6.05 11.4 3.06 3.43 2.14 5.91 8.8 0 4.99 9.81 8.81 6.73 0.98 6.03 11.4 8.09 8.46 2.88 7.35 1.3 8.77 7.77 7.98 0.57 11.5 11.8 4.1 11.3 0.57 0.57 0 12.4 1.3 0.98 7.24 1.56 7 11.5 8.59 2.55 2.14 0.57 4.67 0 10 5.93 5.61 9.33 10 12.1 9.78 9.27 6.88 10.3 5.82 10.7 11 10.2 2.14 0 15.6 9.81 0.57 9.68 7.08 4.18 13.2 6.83 4.49 9.31 0.57 5.95 10.2 4.18 11.6 2.09 9.2 3.67 1.3 4.94 9.46 4.55 7.81 15.2 7.32 9.46 5.5 3.82 6.8 4.01 6.34 8.58 8.81 0.57 9.3 2.43 6.14 0.57 7.53 0 5.27 5.71 6.1 3.55 12 4.29 1.3 9.41 2.2 9.66 9.51 5.93 1.78 13.4 6.76 10.8 5.47 2.67 8.78 5.39 4.05 8.82 7.08 6.06 6.72 6.26 5.13 7.29 8.67 6.19 6.02 8.83 9.57 6.76 2.43 13.1 3.29 6.33 8.36 7.84 7.64 6.37 5.87 6.68 6.42 0.57 5.41 9.48 8.27 0 6.57 3.14 9.34 2.29 8.56 7.19 3.43 6.75 5.56 8.68 9.94 0 8.82 1.3 3.36 10.1 5.09 8.85 8.72 8.46 1.3 9.38 12.3 7.82 3.77 8.05 1.97 4.99 4.6 4.55 4.77 9.05 0.57 6.02 5.65 9.12 5.72 8.51 8.28 6.27 3.68 12 8.04 7.91 11.3 2.29 5.13 2.97 1.3 7.92 8.6 2.78 6.51 3.82 10.1 4.92 3.14 0.57 6.61 6.73 3.14 7.15 6.04 7.61 9.96 5.17 2.55 0 3.06 9.8 0 3.43 2.88 5.96 0 8.4 11.6 8.98 6.95 8.12 10.3 7.2 4.1 11.9 1.3 14.3 1.3 12.1 3.29 8.86 9.02 12.1 12.9 5.01 5.03 11.7 12 12.6 1.3 4.92 5.58 11.1 5.37 13.1 4.01 0.98 9.77 10.7 7.31 7.34 11.6 11.3 8.84 0.57 12.9 10.7 14.5 5.72 8.16 0.57 8.4 10.3 9.6 11.5 10.3 12.1 14 13.4 3.06 9.14 10.7 11.8 3.14 8.74 9.49 9.19 0 8.53 8.51 11.8 10.8 9.49 7.21 11.7 6.58 12.5 6.45 8.59 11.5 0 8.92 9.65 8.18 9.18 8.5 9.76 8.4 6.89 2.36 10.7 3.55 7.69 6.89 7.28 10.9 2.14 7.22 6.73 10.5 0 7.03 5.44 10.7 11.2 12.6 7.9 8.03 7.35 7.29 0.57 0.98 6.62 9.75 6.48 6.68 8.4 8.09 1.97 9.67 9.71 0.7 8.24 6.83 0 6.51 4.67 0.57 6.53 6.63 6.15 7.44 4.94 2.14 6.58 3.22 10.6 7.72 3.97 4.46 11.2 5.11 3.92 0 4.99 8.6 6.54 1.56 5.15 0 5.18 0 8.18 1.78 2.67 4.67 10.9 2.55 6.8 4.67 6.2 5.03 7.83 2.29 5.78 4.57 2.55 10.1 6.12 7.65 8.21 0.98 10.8 0 6.53 7.25 7.43 9.24 9.91 2.43 7.31 6.41 10.3 4.79 0 9.86 3.87 0.57 3.69 0.98 5.58 10.2 4.25 6.71 9.17 8.24 0.57 3.14 7.55 11.2 7.37 2.14 8.67 2.43 10.2 0 3.61 7.33 1.56 6.73 9.78 7.19 8.02 0 8.34 10.6 11.8 12.1 7.57 7.9 9.28 3.15 9.36 11 5.03 8.93 3.56 3.61 12.1 1.3 7 10.9 8.38 9.46 8.4 9.64 11.3 1.97 9.81 8.45 4.18 8.7 7.32 11.3 12.7 6.47 10.4 2.29 5.98 12.3 6.89 11.7 12.4 5.46 7.33 7 6.99 9.56 5.17 12.6 12.8 11.3 11.9 11.9 11.9 12.2 3.36 5.96 3.82 10.4 7.89 9.96 11.8 8.23 5.91 8.85 10.3 11.1 10.5 10.7 9.83 6.83 9.27 5.58 9.93 9.07 4.46 4.55 10.1 9.52 9.44 4.42 12 9.11 9.6 10.2 10.4 8.12 11.5 9.46 10.3 11 7.73 10 7.9 12.6 6.56 7.01 7.5 11.1 10.3 8.11 5.94 10.9 4.58 3.36 7.69 6.1 4.4 8.25 6.89 4.82 12.3 6.59 1.99 9.8 8.63 5.91 10.6 8.96 9.38 10.2 11.5 10.7 1.78 9.87 11.1 10.4 7.18 12 7.45 2.29 2.14 12.6 8.37 10.4 8.2 9.46 8.34 11.3 11.8 1.78 5.07 10.6 0 11.7 12.6 11.4 11 9.71 6.48 9.22 10.4 10.2 10.3 6.21 8.78 9.67 9.41 4.61 6.62 6.59 9.89 9.89 9.7 8.98 9.62 10.6 9.97 0 0.57 10.1 14 9.73 9.54 5.03 9.24 8.27 9.08 8.59 8.16 11.7 9.59 4.9 5.65 11 11.1 8.98 11.7 11.1 10.1 11.8 8.47 11.3 12.2 7.05 9.43 12.9 4.52 0.57 9.74 10.5 7.98 7.22 10.8 8.34 9.32 5.77 8.47 11.2 10.2 10.7 11.1 9.7 4.69 8.62 11.3 11.9 8.34 7.32 7.61 9.78 14.7 0 0.98 8.01 4.49 9.83 11.9 5.99 11.3 0.98 4.42 8.8 8.65 5.69 4.67 7.3 8.34 9.16 1.3 9.13 9.85 4.75 10.4 8.12 9.92 9.88 9.31 4.67 3.29 9.8 5.36 5.03 11 10.8 4.94 8.45 8.1 10.4 1.3 1.3 10.7 11.9 1.56 6.82 6.09 9.52 9.27 2.88 2.14 3.82 4.52 6.17 3.55 7.96 3.67 2.78 3.67 7.73 8.24 5.49 10.5 9.78 4.44 8 3.95 4.66 5.81 6.02 12.5 7.2 1.3 7.09 1.97 10.4 8.67 7.57 8.36 0.98 0.98 9.51 10.8 2.14 5.65 5.11 1.56 11.5 2.67 5.94 8.79 0.57 0.57 7.52 8.35 7.47 6.83 12.3 3.61 6.27 4.46 6.29 7.59 3.88 6.36 8.93 7.5 8.25 5.46 8.09 5.8 4.18 5.64 7.56 2.67 6.88 8.89 3.77 4.18 2.55 0.98 2.67 3.49 0.98 1.3 4.55 0.98 8.83 6.02 4.46 6.42 5.19 3.87 6.23 10.3 1.56 0.57 2.14 0.98 0 3.55 7.74 0.57 4.69 9.53 7.53 4.29 7.32 10.4 0.57 8.36 8.22 0 9.36 10.7 11.7 9.99 3.43 7.79 5.22 2.55 10.1 13.1 9.89 8.35 9.05 6.61 3.06 9.25 8.11 3.82 2.88 7.51 9.83 9.12 5.64 8.04 8.26 11.3 9.74 9.64 8.02 10 4.18 10.8 9.14 10.3 12.1 0 2.97 9.13 10.1 8.15 8.97 10.7 9.23 6.88 9.27 4.82 6.42 6.19 4.1 1.56 0.98 9.45 7.1 2.29 10.4 9.41 1.3 6.83 14.2 11.1 7.42 8.93 0 7.49 14.8 9.68 2.43 12.9 11.3 10.6 9.21 12.4 11.6 6.78 9.66 8.37 11 10.1 10 8.19 8.75 3.97 9.67 9.29 13.8 10.5 10.8 7.46 11.7 5.41 12.6 4.64 5.88 11.5 12.2 10.6 12.2 0 12.3 9.55 10.6 3.55 3.92 9.34 9.22 8.68 8.39 13.1 8.9 11.8 10.7 10.7 12.9 12 12 11 10.4 10.5 4.75 11.7 10.9 10.2 10.3 12.5 10.1 10.9 11.4 10.9 10 11.3 11.6 12.3 11.2 10.4 11 10.5 9.95 11.5 11 12 9.67 12.2 10.6 11.7 11.1 11.5 8.93 9.89 8.14 13.2 12.9 11.2 9.81 7.09 8.22 7.13 7.17 8 0 1.78 5.5 7.67 10.2 8.49 4.39 8.26 4.18 10.9 13 14.1 10.8 3.14 11.4 8.78 4.39 10.4 8.59 7.68 4.8 13.9 3.06 11.2 11 8.23 8.37 9.43 10.3 10.4 11.3 9.44 9.72 9.09 6.87 9.21 9.86 10.3 0.98 9.1 9.39 10.2 7.52 1.78 11.3 14.3 9.34 9.32 10.5 5.56 9.85 6.56 5.39 10.4 5.32 3.55 7 9.89 11.5 13.8 10.1 10.7 9.26 11.7 12.6 1.78 10.3 12.3 3.14 6.78 10.3 9.78 9.34 9.16 11.7 8.46 7.76 7.55 13.8 10.8 3.61 9.87 7.68 10.1 8.81 12.7 3.72 0.57 12.8 9.65 8.63 7.85 1.3 3.22 10.5 10.2 9.95 9.99 10.9 8.99 2.88 9.99 5.52 5.63 7.32 12.8 10.3 8.93 6.2 8.46 1.3 4.67 3.43 0 4.85 1.56 5.09 3.92 3.87 4.55 8.77 13.1 9.5 12.4 9.59 10.6 4.18 11 8.27 8.62 9.46 9.45 9.66 8.87 0 9.55 5.45 5.27 9.11 7.61 5.15 7.99 8.35 0.57 4.42 9.76 8.1 2.14 6.1 4.99 1.97 13.2 10.5 9.71 12.3 9.27 4.05 13 9.34 2.29 2.29 7.54 6.36 9.51 1.97 0.57 10.4 10.4 13.7 9.67 6.52 7.43 7.75 8.97 1.3 6.26 4.64 8.01 12.6 9.17 8.83 10.6 5.19 1.97 10.7 3.43 10.2 2.55 0.57 7.38 7.05 11.4 8.48 7.68 5.03 9.91 5.56 6.22 3.36 3.61 6.16 7.27 9.27 14.3 4.98 6.75 12 1.56 1.78 6.08 13.9 6.95 10.9 4.49 11.7 9.61 8.96 7.73 11.3 8.12 9.51 3.43 4.29 9.42 10.2 7.31 12.7 9.92 0 10 14.5 3.87 4.01 9.76 8.6 11 4.66 9.47 8.45 4.69 9.86 9.72 2.67 9.27 4.1 11.8 10.3 7.48 11.1 10.2 7.69 1.3 6.02 0.98 9.51 9.09 10.6 11.6 8.17 11.2 8.86 8.12 2.78 4.04 1.56 11.7 3.82 7.5 11.8 7.3 6.53 0 12.3 9.14 10.7 9.16 10.4 12.4 7.85 8.49 10.7 12.8 6.56 0.98 13.4 5.92 2.15 4.52 9.59 10.6 6.79 11.7 9.92 11 9.74 8.27 8.76 7.4 9.15 8.76 10.9 8.82 9.82 2.29 7.68 9.05 10.3 9.15 10.5 8.25 7.87 8.69 9.36 10.7 11 7.23 8.32 11.5 8.33 9.64 8.19 10.2 9.75 9.1 11.2 11.3 8.81 9.33 3.22 7.22 6.15 9.98 5.87 7.86 9.75 10.8 10 7.89 7.22 10.7 2.55 8.86 9.11 9.78 9.76 10.7 7.89 10 8.34 11.1 7.86 9.06 10.7 12.1 10.8 11.1 10.2 3.49 11 10.4 2.34 4.67 8.58 10.6 9.12 9.09 9.04 10.8 8.27 9.41 10.7 9.36 8.86 9.72 10.9 7.68 9.04 8.66 7.82 9.2 7.83 11.7 11.7 11.1 10.2 11.4 9.35 10 9.91 9.36 10.5 10.4 8.76 11.5 8.59 9.44 10.1 9.9 9.62 11 2.78 8.4 9.23 7.65 9.06 9.71 10 7.78 9.48 8.36 8.86 8.91 12.8 9.35 10.4 9.63 7.82 7.97 11.9 3.06 9.71 11.3 8.8 7.67 11 7.18 7.59 8.39 10 6.25 8.07 3.14 9.67 8.61 9.23 6.83 7.71 3.97 9.59 9.41 9.62 8.02 8.77 8.91 9.84 10.4 8.41 11.5 6.99 8.46 8.66 8.14 5.37 7.72 10.2 9.07 9.95 7.34 10.3 8.44 2.29 1.78 2.43 10.3 0.98 9.55 8.35 7 7.06 10.4 9.94 9.76 11 4.1 10.7 8.97 3.06 7.49 9.92 8.76 12.1 10.6 9.79 9.38 5.59 8.31 9.87 0.57 10.3 10.3 8.99 9.37 11.3 7.84 8.87 9.8 10.8 4.56 4.25 7.86 10.6 10.4 10.8 10.2 8.79 6.03 7.13 8.27 10.7 8.7 11.6 7.6 11.4 10.3 7.29 1.78 10.2 10 9.09 9.01 10.2 10 6.42 10.1 10.1 4.36 11.8 7.66 10.3 0.57 8.8 10.4 3.55 9.26 8.7 3.06 8 9.67 7 9.63 8.11 3.29 9.72 5.87 9.37 9.98 7.18 9.29 10.7 10.8 10.8 6.5 12 4.99 12.5 5.98 6.94 3.67 11.5 9.28 9.24 7.39 9.5 9.71 9.63 9.65 9.2 3.43 9.35 0.57 5.65 8.32 10.3 9.02 9.15 8.33 8.24 9.99 9.81 11.7 1.3 10.8 10.6 8.66 11.7 9.13 7.89 8.04 6.46 8.64 10.9 1.56 8.17 12.4 9.16 9.91 4.14 10.6 7.88 8.72 10.9 10.4 13.1 6.24 9.88 9.6 9.33 8.68 8.4 7.2 10.8 9.28 8.25 7.82 10.7 10.7 3.87 9.45 11.3 10.7 10.3 9.59 10.6 1.78 10.5 8.56 10.3 10.5 1.3 9.81 9.79 9.34 7.35 4.9 10.3 11.3 8.67 7.11 10.2 10 7.51 10.9 5.87 8.74 8.23 10.9 10.4 8.37 11.1 9.21 11.7 9.01 8.6 9.83 11.3 11 11.3 9.59 10.3 4.58 7.14 4.85 9.35 8.07 11 11.3 9.17 9.51 9.28 9.1 9.65 10.9 6.67 9.98 7.83 5.77 9.48 10.2 9.79 9.4 11.1 8.7 8.97 8.52 9.11 9.03 8.66 8.79 10.9 4.39 1.56 8.79 9.95 9.94 6.19 8.19 11.1 9.91 9.37 10.5 2.78 9.64 10.9 9.77 8.77 8.92 10.6 9.69 11.1 7.75 10 9.36 11 9.63 11.3 11.3 11.2 12.2 6.81 9.77 9.4 11.8 8.67 10.3 11.2 8.83 12.7 8.8 0.57 9.02 10.6 11.3 11 11.1 12 7.2 11.2 7.01 8.43 10.9 11.1 10.1 10.9 9.12 10.9 9.5 10.8 10.4 10 6 10.5 8.78 11.1 9.53 3.92 9.95 5.65 10.7 9.72 7.15 10.3 7.7 11 8.6 12.1 9.89 8.99 5.3 8.42 9.41 9.19 3.92 8.1 9.68 9.42 9.45 9.77 9.06 10.8 13.2 10.1 6.26 9.38 0.98 9.01 6.55 7.59 9.97 7.86 10.7 7.8 0.57 10.7 2.55 8.42 9.9 11.5 7.91 10.7 4.39 10.9 6.64 4.52 12.6 7.82 9.18 5.69 11.4 9.83 9.53 2.43 10.1 9.23 9.75 10.3 10.2 5.07 6.71 9.52 9.81 0 6.33 11.3 8.14 8.33 5.62 10.9 12.3 4.69 7.79 7.73 8.1 9.7 11.1 11.2 12.2 10.4 9.39 9.84 7.63 9.92 8.28 9.29 9.68 3.29 7.36 10.2 7.08 10.7 10.6 10.2 8.57 13.2 8.77 1.78 9.76 9.73 11.6 6.85 11 0 11.1 12.9 14.3 10.6 9.84 10.2 11.5 5.19 0.57 11.1 5.09 8 10.8 12.8 10.9 7.85 7.45 4.49 12.2 8.74 12.5 5.83 13.6 0.98 9.98 9.66 7.56 8.97 10.4 11.8 1.56 9.34 10.8 13.2 7.02 11.4 12.8 12.9 7.7 8.52 5.32 6.91 9.31 10.7 8.19 8.56 15.3 9.82 9.02 8.64 11.4 7.55 9.96 8.67 9.62 5.78 10.3 10.8 9.9 10.4 10.8 9.68 0.57 8.93 9.98 11.8 0.57 10.2 11.1 6.9 14.7 8.26 7.24 1.56 7.28 7.49 9.17 8.43 8.98 11.9 9.39 11.7 9.28 9.43 7.3 8.72 6.57 10.6 7.48 8.5 0 9.71 8.29 7.67 4.32 8.93 11.5 0.98 7.25 7.93 8.34 8.64 11.5 10 12.6 3.67 5.98 9.43 8.56 4.81 11.8 0.98 5.91 0 11.7 6.36 11.2 10.4 0 10.3 9.37 10.9 9.63 10.2 12.6 10.3 11.3 4.87 8.33 5.94 11.7 4.52 12.3 2.62 5.53 0 1.97 11.9 11.2 9.83 10.2 9.79 8.04 9.21 7.68 6.48 6.41 1.78 1.56 9.93 10.8 7.67 6.51 3.87 3.49 9.33 0.57 9.66 7.64 11.1 6.3 11 5.8 9.39 9.57 9.01 8.69 8.06 10.3 9.14 11 10.7 4.75 9.66 11.6 7.95 8.96 8.15 4.36 4.92 4.52 6.5 7.86 3.29 6.34 0.57 1.97 8.05 4.46 9.41 10 4.34 9.88 9.47 10.8 1.3 9.91 7.17 7.38 6.72 8.17 5.06 8.13 6.55 7.87 8.37 7.92 9.41 9.19 12.9 8.57 4.64 10.3 6.64 7.63 7.57 9.4 11.4 9.22 3.87 4.35 9.73 9.15 11.6 10.8 10.7 5.29 3.43 7.97 7.94 7.64 11.6 9.34 6.53 9.7 10.3 2.78 6.78 9.95 9.63 10.6 11.5 9.58 11.5 11.3 4.05 10.8 10.1 4.9 4.39 10.8 9.44 8.73 10 6.47 10 5.8 4.49 8.99 8.95 7 8.96 7.16 11 10.7 7.51 8.49 1.97 1.3 12.5 10.8 10.9 9.15 11.5 8.95 8.4 0.98 11.2 9.59 10.1 11.9 7.72 10.1 10.9 8.92 10.7 9.7 4.69 11.5 7.78 9.51 8.75 7.72 8.2 9.97 8.71 9.03 8.26 11 9.39 4.18 11.6 8.75 11.2 9.31 9.22 5.58 9.94 5.07 6.29 8.71 8.06 8.79 10.4 5.07 9.65 8 7.15 9.24 1.97 8.71 9.73 8.57 9.26 8.23 9.41 7.76 10.9 9.21 11.3 7.11 11.7 9.57 4.29 9.05 8.82 9.95 8.09 7.21 6.21 5.11 5.05 0 8.25 10.3 7.08 9.04 9.45 3.49 9.94 8.7 10.6 11.5 9.55 7.4 6.76 9.27 9.84 7.12 10.4 11.3 3.14 6.07 6.82 8.08 11.1 9.7 2.78 9.99 9.38 10.8 8.42 9.92 3.82 12.3 9.5 9.32 9.13 8.04 10.3 8.74 9.98 1.56 9.75 9.18 7.8 9.14 7.35 9.53 4.85 9.62 3.55 12.1 8.94 2.67 8.84 9.28 9.21 0.57 10.1 2.97 10.6 2.67 8.65 0.57 9.09 7 8.76 13.5 7.26 7.88 9.27 9.82 8.92 11 8.9 13.3 8.57 9.39 8.85 10.3 13.5 8.56 8.58 10.2 9.39 8.14 4.39 8.83 10.4 10.1 8.43 8.48 7.31 7.82 6.89 8.41 8.21 9.33 9.48 8.25 10.2 7.61 7.67 10.9 8.71 8.31 8.07 3.77 9.5 6.58 9.95 6.8 0 9.81 6.44 6.37 0 10.3 8.04 7.98 10.5 7.71 9.37 10.8 9.53 11 7.95 5.9 10.2 8.47 7.86 9.65 8.43 1.3 6.6 9.8 0.57 10.6 9.2 10 10.2 10 10.5 7.69 8.97 4.21 10.9 9.69 9.95 10 9.42 7.59 11 8.1 8.57 8.11 7.65 7.4 8.72 8.14 9.78 9.19 11 7.25 8.55 10.2 11.3 9.02 7.66 11.4 8.5 9.07 8.46 3.82 6.98 8.84 3.92 8.47 10.3 9.22 9.33 2.14 9.81 6.89 9.12 8.82 9.58 10.9 8.94 11 10.6 8.42 11.1 6.91 10.8 8.12 10.9 11.1 10.3 9.73 10.5 10.4 9.03 8.24 6.73 9.53 11.2 9.86 6.16 9.38 10.8 10.1 11 6.41 8.23 5.05 9.78 8.66 10.1 9.44 9.39 9.32 8.2 9.19 8.27 7.85 7.94 8.15 7.38 11.5 8.93 10.7 6.06 9.81 8.09 8.87 1.3 8.81 8.34 7.95 7.46 10.9 10.5 7.62 9.66 9.34 11.5 4.39 8.68 7.81 8.37 10.5 7.04 11.3 5.49 9.71 8.31 9.39 12 7.91 8.06 10.3 8.31 8.86 9.21 11.3 3.22 11.4 12.4 11.7 7.18 10 8.09 10.8 8.59 7.78 8.92 8.46 9.73 11.2 5.11 9.8 8.13 8 8.03 9.14 8.99 5.87 9.91 0 10.6 10.2 6.34 9.92 6.56 6.92 7.8 9.35 9.75 10.2 9.27 7.32 6.44 9.2 9.18 10.3 7.61 7.82 9.92 3.33 11.4 9.26 9.46 7.91 10.6 9.35 7.68 8.13 4.96 5.21 10.8 7.18 6.65 7.27 8.97 4.92 9.88 5.76 12.6 7.07 6.69 5.46 9.72 7.38 10.8 10.5 5.75 11.1 10.2 10.8 7.17 7.42 5.77 7.98 5.91 7.6 9.4 10.8 6.82 8.1 10.1 3.43 10.3 8.73 10.1 9.33 7.91 6.95 7.14 10.3 9.58 9.51 8.43 10.1 10.1 8.15 9.76 7.78 9.98 7.56 9.37 0.57 8.91 9.15 8.18 9.49 6.55 8.95 8.78 8.18 8.71 6.05 5.07 9.51 12 9.62 8.67 5.82 10.1 7.25 10.9 10.1 9.87 8.68 11.2 4.39 8.27 10 9.77 9.01 8.39 9.59 9.17 11 10.7 10.4 11.2 8.42 5.85 5.9 9.11 9.65 8.61 7.48 7.88 9.63 10 4.82 6.54 9.95 9.24 9.29 12.8 7.77 8.77 10.5 8.33 7.66 10.3 10.4 8.89 9.17 2.55 10.4 8.18 9.43 8.36 11.2 9.55 9.62 10.4 7.9 2.14 8.74 8.61 9.62 3.67 9.03 9.32 8.14 10.9 7.8 10.4 3.29 9.98 7.88 9.26 9.53 7.81 9.73 7.69 9.3 9.3 0.98 0.98 9.46 6.74 9.55 8.79 10.1 8.81 10.3 8.97 10.8 10.6 4.67 8.72 10.3 9.25 8 9.27 12.3 8.97 7.42 11.8 10.6 10 1.78 7.79 10.1 10.1 9.33 10.9 7.86 9.44 7.82 8.95 10.7 8.67 9.65 6.56 9.3 8.46 9.41 9.91 3.49 10.4 9.51 10.4 8.64 10.1 4.29 9.67 10.3 8.77 8.23 8.92 7.28 9.63 8.73 11.3 6.02 3.49 8.8 7 9 0.57 9.47 11.3 3.43 8.59 8.03 10.1 11 6.92 8.25 7.55 7.46 9.13 8.89 8.72 5.05 9.25 8.35 0.98 9.13 9.74 9.52 10.9 9.27 10.7 9.05 10.2 7.94 7.89 6.01 10.2 8.81 8.17 9.62 7.6 8.99 8.59 8.71 10.4 9.67 9.64 9.39 7.92 7.31 7.9 8.41 7.92 10.9 10.6 10.8 4.69 6.35 9.73 10.2 9.86 8.06 10 8.99 10 6.39 5.17 6.82 9.99 10.6 4.29 9.5 10 11.7 4.55 6.8 8.39 2.29 10.3 9.92 9.71 9.24 14.2 10.2 8.9 10.2 6.86 7.82 11.5 11.8 5.29 3.92 2.29 7.66 9.52 7.59 5.81 4.1 5.47 7.7 4.61 8.08 8.6 8.1 0.57 8.97 10 8.33 10.1 10.3 11.2 8.47 2.88 10.1 8.99 8.96 10.6 9.45 7.88 1.78 10.5 10.4 9.51 2.14 7.78 6.04 7.19 0.57 4.49 0.57 10.9 7.17 4.58 10.8 9.64 7.55 1.78 0 7.55 7.72 6.25 10.3 9.16 1.78 3.22 7.68 9.43 10.2 9.38 10.5 9.53 7.55 2.97 8.87 6.2 9.96 8.94 11.3 0 10.6 9.67 6.86 6.18 10.8 10.8 8.13 10.2 8.13 10.6 9.44 8.19 2.55 8.96 8.67 8.16 9.42 10.8 10.3 10.9 5.87 9.41 10.9 8.5 3.22 9.44 9.04 9.34 7.9 8.41 10.1 10.2 9.83 8.35 10.2 11 10.5 9.56 10.5 7.64 10.3 9.43 9.34 8.06 7.25 9.24 7.47 3.43 9.14 8.04 11.6 9.33 11.4 8.28 7.83 10.3 8.18 8.93 10.5 9.82 10.1 11.4 3.61 8.68 9.5 9.46 6.53 10.8 10.4 10.7 10.1 8.29 7.91 11.2 11.9 10 6.59 9.03 10.1 8.47 10.3 9.19 6.83 10.1 8.82 7.71 9.65 10.8 11.6 7.68 8.74 9.12 6.45 11.1 9.77 10.3 5.3 10.5 9.42 10.7 5.71 11.1 7.56 11.2 10.1 9.19 8.24 9.39 10.3 7.01 10.5 7.9 10.3 7.17 8.8 8.71 11.3 9.26 10.4 8.99 9.36 10.4 6.91 6.15 6.11 8.99 10.4 5.87 9.05 12.4 10.3 5.79 9 8.05 10.4 10.8 11.1 10 10.4 10.2 9.79 9.68 10.3 9.55 9.46 14.1 10.1 10.2 10.5 8.57 11.1 12.5 11.5 9.4 8.72 8.59 9.35 8.65 6.71 10 9.78 6.53 9.57 10.3 10 10.9 8.75 11.4 9.16 9.53 2.14 9.13 8.09 9.76 8.16 8.7 7.48 10.2 8.71 8.25 8.56 8.43 9.76 6.51 5.5 10.8 4.1 7.17 6.98 7.78 8.85 8.86 8.79 4.75 8.3 6.66 10.8 9.5 6.07 8.72 8.35 6.46 4.01 0.57 8.03 6.95 9.22 0.57 8.15 9.75 9.16 7.16 9.78 11.5 3.06 10.6 8.15 9.68 10.5 10.2 8.14 10.1 10.1 10.6 9.64 6.62 9.42 6.98 9.86 6.57 9.74 7.16 9.41 11.4 9.19 9.78 8.58 11.8 8.29 10.5 9.97 3.31 9.77 6.42 10 7.59 9.88 6.05 9.78 9.78 10.2 10.1 9.53 9.54 8.39 9.18 9.94 8.34 4.39 6.46 8.18 11.1 3.87 7.09 0 12.6 12.4 7.64 10.2 7.11 10.8 9.65 9.08 6.29 11.2 10.5 11.4 7.91 10.1 9.57 10.8 9.29 11.2 9.84 7.33 10.3 3.22 11.4 7.65 4.77 9.89 3.92 8.65 7.19 11.2 9.69 8.99 7.31 9.75 13.2 6.69 7.86 10.6 11.1 11.2 9.61 11.6 10.3 7.24 10.6 9.89 9.91 9.22 7.09 1.3 8.43 0.57 10.7 9.12 9.61 8.29 9.74 9.94 9.72 11.2 9.63 10.4 9.99 1.97 9.17 7.94 5.99 9.83 4.52 3.14 7.82 7.33 7.79 2.55 2.43 4.76 1.97 3.06 3.36 3.06 2.97 3.29 10.7 8.21 2.29 1.56 2.43 0.98 9.2 1.78 5.87 6.8 5.13 3.61 2.97 5.03 4.92 2.97 3.61 10.4 6.05 3.06 4.29 3.61 2.43 6.01 8.9 0.98 0.98 0 7.23 9.29 4.8 7.85 11 2.29 8.8 11.6 2.14 7.11 6.77 7.44 10.2 7.73 7.42 10.1 3.82 9.89 9.82 5.95 11 10.4 5.34 10.3 10.4 7.65 9.09 10 11.1 10.1 10.5 1.56 0 9.27 9.35 9 9.01 9.49 9.41 8.28 7.4 11 5.64 0 0 8.76 7.77 9.78 2.55 9.9 10.5 6.17 10.2 5.41 0.98 15.2 4.82 8.32 10.2 10.6 4.25 8.45 11.1 9.09 9.84 6.17 2.67 9.06 9.25 9.12 8.71 8.58 5.29 0.57 2.88 1.97 8.6 0.57 10.4 4.21 10.8 9.46 15.4 5.39 3.92 12.2 9.86 10.9 10 11.3 9.11 9.5 10.4 8.45 11 10.1 10.7 6.02 5.27 10.6 10.6 11.7 10.4 10.3 9.93 11.9 11.6 8 10 10.1 10.5 9.25 9.93 10.9 5.01 10.9 10.4 5.15 8.73 10.2 9.38 6.27 9.04 12 11.6 6.8 8.94 9.63 8.27 9.18 6.25 8.14 12.1 6.94 9.32 6.31 7.25 10.7 10.7 10.8 9.05 11.1 8.9 7.46 10.1 6.27 11.8 9.53 9.35 8.86 9.02 8.71 9.24 7.11 10.4 9.94 10.2 11.4 9.69 11 7.04 7.5 11.7 8.63 11.5 0.57 3.55 5.03 9.47 8.12 10.5 4.01 11.7 5.55 4.39 9.93 7.03 4.18 8.23 10 7.07 7.98 10.2 11 10.8 4.67 10.5 10 9.7 11.2 8.99 9.17 11.1 0.98 9.3 8.92 8.31 11.3 7.35 11 1.56 11.9 9.91 10.6 11.1 10.4 8.27 1.56 9.32 9.62 9.14 11 9.84 10.2 12.2 9.26 3.36 9.76 9.38 1.3 11.3 10.6 11.4 3.36 10.7 8.28 8.18 11.3 5.65 10.8 0.57 9.32 3.61 8.37 7.15 8.73 11.4 1.56 8.55 8.92 11.1 7.7 10 9.01 9.42 8.98 5.62 1.78 8.19 5.82 9.45 6.97 9.78 7.64 6.64 1.78 8.97 9.63 10.5 10.9 10.8 7.05 11.8 9.37 11 11.8 12.5 8.23 9.53 7.68 10.8 9.19 10.5 6.81 12.2 10.4 4.01 8.38 5.09 8.99 8.21 8.9 2.29 0 5.36 11 9.86 8.36 11.4 10.6 12 11.2 9.28 8.35 9.38 8.37 10 10.1 8.39 9.71 5.85 9.89 11.2 10.5 4.18 9.11 6.37 9.19 10.3 12.2 10.7 9.31 11.6 9.01 9.79 9.56 8.04 3.67 9.31 8.99 10.6 5.65 11.8 10 8.75 9.82 9.48 9.02 10.4 5.09 6.18 12.3 8.03 10.3 4.9 4.36 9.21 10.9 7.39 2.67 6.04 9.63 12.2 2.73 7.22 7.92 7.56 8.19 8.27 0.98 7.45 7.45 2.43 3.22 12 9.88 5.55 6.62 11.5 8.95 6.67 0 0 10.5 8.96 0.57 4.92 9.5 9.95 9.55 10.9 8.28 12.2 6.91 10.2 4.55 8.79 5.23 1.3 10.6 10.6 10.3 7.74 11.6 2.97 9.22 8.41 9.99 9.2 9.25 9.32 6.86 10 8.96 7.36 6.51 4.42 7.6 8.56 3.14 7.2 10.6 10.3 4.01 9.5 10.3 7.79 10.2 3.55 8.52 8.76 9.59 8.37 5.13 4.32 8.21 12.1 8.65 6.93 10.1 8.85 9.67 0 9.62 0 10.4 4.72 3.82 3.55 8.75 9.16 11.9 9.24 8.51 9.11 10.4 8.46 10.6 8.5 12 3.92 10.4 9.02 9.07 2.17 3.22 6.56 0.57 4.72 9.32 6.67 11.2 10.9 9.38 3.87 5.85 3.36 10.9 9.56 10.7 2.29 8.44 9.32 6.85 9.74 5.92 6.95 3.67 7.35 10.8 11.4 0 9.44 11.3 7.65 5.77 11.3 9.71 10.3 6.64 8.06 6.5 8.35 7.32 2.67 14.4 8.42 3.14 9.02 6.25 1.3 5.76 8.64 3.77 9.15 10.2 0.98 10 10 8.65 9.6 8.56 9.63 9.75 9.41 9.07 8.68 5.49 2.88 7.11 9.9 7.55 8.91 10.6 9.32 9.46 9.71 8.52 10.4 9.17 7.96 9.3 2.88 5.09 10.2 10.2 8.26 8.29 5.32 8.15 0.57 12.4 9.42 5.81 10.5 8.93 9.45 7.86 4.64 10.3 8.35 9.65 11.7 10.1 5.68 7.07 7.84 10 7.71 10.7 11.7 10.1 9.66 10.6 8.77 10.4 10.3 9.84 6.82 12.9 7.36 7.89 8.98 11 10.5 6.92 5.52 6.95 0 8.5 2.14 8.7 7.19 6.76 9.27 7.72 9.1 5.94 10.5 2.88 3.97 11.2 8.51 10 8.83 10.8 8.26 9.92 9.4 9.8 8.78 7.67 7.94 5.72 8.61 6.69 6.8 2.55 8.01 11 7.55 8.73 9.29 10.1 9.48 2.67 4.01 8.1 10.9 10.5 6.87 3.29 7.27 7.53 10.7 7.3 9.17 9.13 9.56 11.3 9.01 8.75 9.66 7.18 10.6 11.3 12 8.8 10.7 9.45 7.65 2.43 6.69 8.87 10 2.97 10.1 0.57 4.61 5.36 6.95 11 9.75 5.17 3.87 8.5 9.94 11.5 7.81 8.76 12.3 8.9 7.04 11.1 11 10.7 0 9.6 1.3 3.29 9.65 2.29 9.81 8.37 3.61 10.9 8.16 7.57 11.2 9.02 10.4 9.3 7.36 11.6 11.5 12.7 10.4 6.1 8.01 10.4 10.8 9.89 8.8 9.23 11.4 9.73 10.4 7.52 11 10.6 12.9 10.3 3.55 10.6 8.63 9.6 11.2 10.8 9.9 9.5 6.64 12 9.47 10.2 9.31 7.66 9.59 7.19 6.16 7.1 5.27 6.11 8.94 8.53 9.23 8.99 6.54 10.1 10.9 11 9.22 2.97 9.4 9.57 10.9 10.4 9.89 11.3 10.1 10.4 3.22 10.1 0.98 0 11.9 7.73 9.96 11.7 9.19 10.3 6.53 2.43 8.91 9.34 9.95 12 10.2 11.1 7.4 11.5 7.34 2.14 9.03 9.78 8.1 11.7 13.6 9.91 6.19 9.34 9.2 11.2 11.6 11.3 4.29 8.26 5.76 7.74 7.6 7.52 10.6 7.5 10.3 11.2 10.6 10.8 10 11.9 9.42 10.5 10.8 10.1 11 9.58 10.2 9.07 9.09 10.2 2.78 10.6 6.98 8.14 9.97 6.94 13 11 9.32 5.76 4.92 4.14 10.3 8.35 6 9.82 8.19 10.7 8.88 11.5 11.4 11.6 7.58 9.81 9.53 9.93 10.8 10 5.9 2.29 11 10 10.4 1.3 8.82 10.7 8.39 0.98 9.79 7.34 9.79 12 1.78 3.22 10.6 10.1 11.4 8.55 8.1 0 0 0 10.9 11.1 6.13 1.56 11.7 9.57 0.57 10.4 10.9 4.67 10.1 10 5.09 6.99 10.7 8.92 9.52 11.2 9.62 7.03 3.49 13.1 9.05 9.6 9.66 6.88 7.52 8.38 10.1 10.3 0 8.76 8.81 8.39 4.36 1.3 10 6.02 11.6 9.61 9.75 17 9.29 11.2 2.43 5.8 0.98 0 10.9 0.98 10.1 9.9 8.21 5.05 9.53 3.22 9.34 11.1 10.9 10.5 12.3 4.75 0.57 7.67 10.1 1.3 8.42 9.66 9.8 7.15 8.27 11.2 0.98 8.78 2.14 0 8.28 11.7 5.09 10.1 10.7 10.5 2.43 8.98 7.97 11.1 7.8 9.18 7.63 8.79 9.19 9.36 3.06 9.73 10 11.8 10 10.8 8.89 11.5 9.18 11 7.72 8.93 10.1 10.6 0 8.67 10.9 4.94 6.82 8.8 6.17 10.1 10.6 2.14 1.78 7.45 8.95 3.49 8.76 9.5 9.38 11 8.07 8.61 0.98 9.1 9.8 5.98 9.38 0.57 8.16 2.14 8.07 8.3 6.99 2.29 10.5 10.3 9.24 8.56 15 14.6 14 13.6 9.65 10.6 13.8 6.49 14.7 7.82 13.4 13.8 13.1 14.5 14.1 12.5 13.6 10.8 15 5.8 12.8 12.1 10.6 13.2 13.8 13.7 13.5 13.8 13.9 13.2 13.6 13.9 12.9 12.6 11.7 13.7 13.7 13.3 8.94 9.11 13.6 6.07 14.7 14.6 14 11.5 9.62 12.8 12.7 13.6 13.8 11.8 13.9 3.23 2.67 6.29 9.04 5.93 12.9 2.55 2.78 14.8 11.2 10.5 10.3 9.27 9.32 12.5 14.3 13.8 12.4 14.3 13.3 12.7 13.6 12.5 12.9 14 13.7 8.77 14.2 14.2 14.2 13.1 13.7 14 13.1 9.52 9.51 12.8 10.2 12 10.1 10.1 13.3 10 9.3 6.9 10.8 4.52 6.38 11 10.7 7.08 6.84 9.06 9.67 9.82 5.77 2.55 3.77 3.62 8.44 11.1 8.78 5.29 10.5 0 15 8.6 9.62 12.8 13.8 4.05 11.1 4.36 5.49 12.6 10.6 11 9.2 7.92 8.99 11 11.1 6.16 12.6 8.24 8.47 11.4 9.34 9.2 5.19 9.31 10.1 8.7 10.6 4.94 8.27 6.59 7.17 4.18 1.3 2.14 2.43 13.1 5.69 1.3 5.96 2.43 12.4 1.3 6.97 7.16 9.7 11.5 4.29 5.46 10.3 5.17 4.06 8.98 5.64 9.16 2.97 6.28 5.73 10.5 6.88 1.56 0 9.18 0 10.7 2.67 7.51 2.78 11.9 7.14 12 8.42 5.94 10.6 14.3 11.9 9.81 9.09 10.1 4.01 9.1 10 12.1 9.83 10 9.39 8.92 4.01 8.92 8.8 6.35 7.7 10.7 9.79 11.4 8.34 8.82 11 6.61 3.5 8.9 10.3 12.9 10.9 6.85 7.52 1.56 2.3 8.99 8.15 7.13 8.35 7.12 9.06 4.39 10.4 7.13 9.44 8.87 7.29 10.7 3.22 11.1 1.97 8.58 2.97 6.66 7.69 11.1 8.46 4.75 10.6 7.76 1.97 7.63 6.19 9.82 8.19 8.24 8.75 5.99 11.2 6.24 4.75 11.7 9.4 0.57 8.7 8.97 10.4 8.62 11.1 6.84 1.78 4.36 7.8 3.72 6.19 9.85 9.22 5.09 4.49 3.67 8.11 9.7 9.97 11.8 10.5 10.6 11.7 8.13 10.2 6.71 5.21 12.2 5.45 5.39 7.54 2.67 10.5 5.66 8.37 1.78 9.43 2.55 12 8.71 4.64 9.87 8.42 8.96 11.4 5.5 9.83 9.87 7.26 7.23 8.12 6.95 4.8 7.52 7.78 9.27 12.6 1.78 7.66 7.5 10.4 9.97 12 10.1 10.9 8.05 7.75 9.05 7.57 8.34 9.87 9.98 9.64 9.39 3.06 1.97 10.7 7.98 5.85 3.43 1.97 8.41 0.57 11.4 2.88 11.4 11.6 5.5 8.21 7.4 9.44 10.5 6.86 9.54 8.2 6.37 10.9 2.29 6.25 5.98 3.36 11.8 5.92 2.29 11.7 10.3 8.45 10.7 10 8.69 2.43 10.4 8 6.94 9.59 10.5 8.83 10.3 7.4 10.3 8.33 5.87 2.14 4.29 4.82 10.5 10.8 9.42 5.65 9.57 10.2 2.55 3.29 10.3 7.65 8.01 7.72 6.72 8.45 6.75 4.55 8.1 6.65 5.23 2.88 0.98 2.14 5.94 6.98 0.98 9.82 9.59 6.89 11.4 9.03 6.69 7.91 6.79 0 8.14 2.29 7.04 6.95 9.16 7.77 0 6.53 7.16 8.38 5.44 9.49 10.2 1.3 8.11 7.55 9.45 10.9 8.49 10.2 9.16 9.68 9.5 10.6 9.28 8.89 10.5 9.38 3.36 7.18 0 2.29 4.25 6.82 5.11 5.59 11.8 3.61 7.04 3.29 10.7 3.61 4.61 8.55 1.78 11.2 2.29 5.03 0 8.85 10.4 5.65 4.96 11 3.1 2.43 9.35 2.88 10.8 8.67 6.86 5.64 4.97 3.72 3.06 10.6 6.15 7.07 5.11 3.97 0 10.7 5.68 7.54 4.21 4.25 7.76 9.86 11.6 0 10.5 5.06 1.3 5.23 9.74 3.67 6.49 0.98 10.8 4.1 9.63 5.47 7.85 8.5 0 3.97 8.58 11 8.24 7.51 10 0.57 7.62 3.77 0 5.81 3.14 12.4 7.59 6.53 7.84 9.61 11.3 11.9 4.32 0.98 7.85 10.6 3.22 0.57 11.7 10.8 9.85 9.47 10.7 8.58 8.93 4.21 7.71 10.8 10.3 7.24 12.1 10.2 10.5 7.14 8.68 11.3 8.51 8.33 10.2 8.49 9.83 10.9 9.15 10.5 8.99 9.18 10.8 7.68 8.71 10.2 9.33 9.18 6.2 9.72 6.58 2.29 9.59 12.8 8.88 7.19 11 7.37 8.1 0 9.83 13.3 8.86 6.58 9.79 10.2 6.69 8.82 8.81 5.21 10.1 8.64 10.8 9.87 8.2 9 8.55 7.2 8.73 1.56 9.82 11.3 9.11 5.65 9.34 10 7.58 11.8 10.3 8.88 7.46 8.87 7.46 7.24 8.12 10.2 8.33 5.81 5.56 3.14 7.53 8.31 10.7 6.27 10.4 6.83 6.13 6.7 9.33 9.28 9.28 9.06 8.12 8.67 9.63 5.03 4.1 10.1 9.15 9.18 7 6.64 10.9 0.98 11.3 2.78 10.8 9.13 9.57 7.71 10.7 10.8 10.8 10.2 11.2 8.32 7.18 10.3 10.6 9.81 3.49 8.89 11.8 9.68 9.91 8.91 6.57 8.09 2.55 11 5.68 10.1 6.3 5.32 10 5.91 10.7 8.87 8.68 0 7.82 5.64 6.01 2.55 9.46 6.47 6.42 9.76 9.53 10.2 8.78 8.02 9.05 9.74 1.56 10.2 11.2 8.03 9.35 10.4 4.14 11.7 8.08 11.3 11.2 8.65 3.77 7.77 5.34 7.27 13 6.75 12.4 1.56 12.6 9.97 5.96 4.1 9.49 9.11 9.4 8.27 6.75 9.83 7.7 7.38 8.89 11.7 9.93 4.07 1.97 6.72 0 0.57 3.29 0.98 6.24 5.64 2.43 5.94 7.57 1.56 0.57 5.62 5.5 6.91 1.3 5.25 5.86 10.5 9.09 3.77 8.45 5.13 1.3 0 6.36 12.2 8.91 10.3 10.3 4.94 7 5.85 5.46 0.57 10.5 7.29 5.25 3.67 3.36 9.25 4.25 4.67 7.44 10.2 7.43 11.2 8.95 7.43 2.14 1.56 3.92 8.28 11.1 4.36 7.28 0 5.34 7.51 1.56 5.83 5.13 7.65 1.78 0.98 10.4 5.52 7.26 4.46 6.33 3.36 0.57 8.53 0.57 7.48 4.1 6.61 10.7 8.17 8.85 7.82 7.1 8.36 0.98 2.78 7.87 9.54 9.42 10.9 9.58 7.01 2.29 9.73 7.5 11.6 3.36 8.39 10.4 11.5 7.16 10.3 10.6 8.92 11.8 8.69 8.02 10.3 11 9.68 8.76 10.6 9.25 9.55 7.7 8.35 8.43 0.98 10.7 8.35 10.1 11.2 10.4 9.14 5.99 8.48 10.5 1.3 2.14 4.25 8.92 11.1 10.4 11.9 11.3 10.9 9.13 8.28 10.6 11.7 1.14 9.36 11.3 10.1 7.82 8.5 10.6 10.1 11.6 8.46 4.61 7.74 7.52 8.72 8.13 7.72 8.73 6.63 5.5 10.2 11.9 10.2 8.4 12.1 10.4 9.4 10.3 9.35 11.6 10.5 9.57 10.7 9.83 11.4 10.5 8.24 8.55 11.3 10.5 9.2 10.2 1.3 11.1 6.75 13.6 10.3 10.8 10.4 10.8 9.24 11.1 9.69 9.88 11.9 10.5 2.14 11.3 0 4.52 10.2 12 9.05 11.7 9.84 6.51 10.4 7.63 8.05 6.17 13.4 8.12 10.9 9.88 2.67 10.1 1.78 11.7 8.49 8.05 16.1 10.8 10 12.9 3.92 6.91 13 8.89 7.41 11.2 7.8 0 11.3 7.26 11.2 10.3 9.68 10.4 11.4 12.3 8.89 9.65 6.29 11.1 10.3 9.54 9.68 11.7 8.35 9.68 10.5 11.2 10.5 11.5 12.1 10.8 11.5 11.2 4.14 3.61 0 10.6 10.3 11.8 12.7 8.19 11.6 2.29 11.1 10.6 12 6.62 10.4 11.1 3.14 3.36 2.55 0.98 0 2.78 1.56 1.44 13 3.41 1.3 0.57 5.17 12 11.8 5.15 8.17 0.98 3.67 10.2 9.59 7.98 8.49 10 6.9 2.43 5.03 9.63 10.2 3.22 4.42 6.83 6.97 10.6 10.1 9.46 8.81 11.2 9.66 8.44 8.31 9.37 10.3 14.7 5.15 10.6 10.8 11.4 7.72 11.7 9.14 10.4 8.7 11.9 9.95 9.86 7.23 9.43 11.5 7.74 10.3 9.64 1.78 10.5 5.61 6.01 4.92 11.9 3.49 8.76 0.57 3.87 0 10.6 8.59 2.43 10.9 7.74 9.21 8.57 8.92 6.42 11 5.34 11.7 11.2 9.58 9.94 10.7 8.71 8.63 6.81 9.14 4.25 2.97 11.6 12.5 11 9.85 13.3 9.4 9.98 10.2 1.78 0.98 9.21 10.5 9.06 10.8 8.09 9.81 7.9 8.09 6.16 1.3 5.46 9.5 9.73 9.55 10.4 2.67 4.75 7.83 9.3 1.97 0.98 11.9 6.89 9.67 7.78 5.75 10.2 10.5 7.3 8.46 8.11 8.41 9.99 2.43 11.9 8.57 7.32 9.98 9.68 10.3 0 10.7 10.2 7.88 11.4 3.61 0.57 10.7 5.23 8.87 5.66 10.8 11.2 8.89 5.44 12.1 10.6 9.2 8.98 6.2 3.61 10.4 14.6 5.24 7.17 9.46 0.57 8.24 8.87 0.98 9.98 0.98 8.5 2.67 7.62 9.27 7.75 11.4 10.1 7.28 10.3 2.67 11.3 4.18 9.49 4.29 10.5 10.1 7.47 6.47 6.99 0.57 11.9 10.3 0 11.5 9.26 8.22 11.2 3.55 11.8 2.78 9.25 11.3 11.3 9.87 11.4 2.14 4.18 9.72 0.98 10 7.16 0.98 9.79 10.9 10.8 9.91 7.38 7.51 12.7 12.9 11.5 2.67 11.4 11.3 7.89 10.4 12.1 1.78 10.4 9.9 9.15 9.03 6.19 12.9 11.1 7.19 9.57 7.5 8.88 16.1 13 6.66 6.27 10.2 10.6 9.72 10.5 9.28 9.43 7.4 9.67 15.2 11.9 7.24 8.47 5.9 1.56 11.4 12 9.44 11.8 9.62 12.2 10.8 2.29 3.77 4.18 1.3 11.6 2.43 12.2 10.5 11.8 10.9 6.51 3.55 7.47 10.9 8.86 10.5 9.47 10.4 11.8 1.78 8.3 9.09 10.1 11.9 0.98 13.6 12.9 9 9.53 12.6 12.6 11.2 10.2 11.2 7.69 16 0.75 13.6 9.04 9.5 14.2 8.59 9.53 7.45 8.47 6.99 9.33 14.5 0.98 12.3 9.88 12.1 8.87 2.43 8.1 2.14 3.49 0.98 8.44 8.67 7.98 3.43 2.59 10.2 9.83 10.3 0.57 10.4 0 9.24 10.8 10.3 9.18 7.53 10.8 9.88 9.73 11.3 10.7 9.15 4.85 8.63 4.01 6.13 8.24 9.73 7.78 3.82 2.14 3.36 6.57 10.4 8.38 10.4 4.49 4.18 6.11 6.32 7.48 3.72 8.33 7.84 3.06 6.42 9.79 10.2 3.77 8.18 3.55 4.1 7.83 12.7 6.05 7.49 4.32 8.58 7.39 7.86 4.31 9.24 2.29 7.92 7.72 7.61 4.46 5.47 9.45 6.17 6.24 12.9 4.21 9 0 6.37 1.97 4.52 3.43 8.02 2.78 9.96 1.56 1.56 9.81 4.61 8.45 5.21 5.58 4.54 2.67 4.63 1.56 3.82 5.17 7.52 5.37 0 4.75 4.05 1.56 6.02 5.23 4.67 0 7.89 11.5 9.13 2.29 7.68 3.06 5.58 11 5.15 7.4 0 9.07 10.7 2.88 0.57 4.01 8.65 5.5 8.54 4.32 8.48 0.57 9.46 8.68 6.3 12.5 8.65 7.15 6.36 7.64 5.01 5.8 3.06 11.2 1.97 10.2 3.36 13.2 0 14.3 15.2 12.3 0 9.65 9.71 9.61 8.33 10.5 11.8 9.94 9.13 10.3 10.1 10.7 11 1.78 11.3 11 11.8 8.97 10.1 9.62 10.5 9.68 11.6 9.52 8.64 8.69 3.36 10.5 4.46 10.1 6.02 9.3 8.95 8.57 10.7 7.16 7.28 8.83 7.93 10.7 10.4 10.9 10 0.57 10.9 1.97 12.4 12.5 12.2 11 11.2 11 9.84 9.61 11.1 8.67 1.78 10.3 10.2 7.79 8.93 11.3 10.7 8.05 10.4 8.94 12.7 10.9 12.7 12.4 10.5 10.7 7.37 8.66 11.3 4.64 4.32 8.92 6.86 14.3 15.6 3.61 4.05 8.89 5.53 2.55 8.15 7.11 7.71 2.78 1.78 10.7 9.69 10.6 8.72 10.5 12.5 10.4 10.1 9.03 7.41 7.64 8.92 9.89 9.6 7.8 2.78 4.46 10.3 1.56 4.1 6.94 0 3.92 2.43 5.05 2.29 1.3 8.54 7.84 0 10.2 0 3.22 2.29 2.78 7.87 10.4 5.34 10.2 5.25 11.4 9.41 4.67 7.32 7.39 9.41 12.4 8.93 10 9.41 12.8 8.49 13.7 12.5 12 13.7 7.46 11.6 10.7 4.9 12.2 8.52 9.33 8 7 8.44 10 7.7 8.49 6.28 11.9 8.06 10.1 7.24 6.66 7.79 6.43 8.34 6.39 7.07 7.61 9.14 9.49 8.54 10.3 8.32 8.02 5.85 9.57 10.3 10.2 6.94 9.13 8.3 8.5 7.39 8.81 9 6.95 6.06 9.13 5.82 5.83 7.12 7.21 7.85 8.5 8.1 9.72 6.44 0 10.1 3.49 5.8 8.35 7.88 0.57 1.56 5.42 5.27 5.59 12 6.32 2.67 3.49 3.95 3.8 0 4.59 10.5 8.3 7.17 8.9 6.94 6.5 7.18 6.76 7.27 8.93 7.32 6.2 8.96 7.6 10.3 7.14 10.1 9.84 9.76 9.01 9.88 3.61 6.97 2.29 10.5 6.19 10.6 7.56 7.08 6.15 6.05 2.55 6.63 8.01 7.64 9.74 0.57 7.6 9.15 7.6 7.67 8.87 4.99 10 7.14 7.87 8.22 8.7 11.3 3.06 8.13 8.75 6.19 4.01 11.8 10.4 6.17 7.66 5.9 8.32 3.97 7.47 6.42 4.18 6.22 7.44 7.77 7.33 3.06 0.57 5.73 7.53 8 5.17 13.3 9.7 9.37 12.9 10.5 10.7 5.09 13 4.32 12.8 8.57 10.8 5.87 6.9 10.5 12.7 9.98 8.86 10.4 9.3 12.6 13.2 4.96 7.1 9.34 11.4 8.25 4.8 8.79 10.5 11 10.9 9.7 9.93 10.7 12.6 8.99 4.69 9.11 1.78 9.73 10.2 8.16 6.46 8.21 9.72 9.6 4.36 10.9 4.1 6.36 9.98 9.93 3.87 10.4 11.1 9.33 10.5 9 8.05 10.5 9.43 9.19 7.3 9.93 10 8.03 5.46 9.15 10.7 8.5 4.32 14.4 11.2 7.7 7.55 8.94 9.98 9.44 10.1 10.5 7.34 10.3 11.3 5.64 9.85 5.73 9.86 12 9.51 9.56 6.93 9.73 9.21 10.4 9.81 9.98 8.54 7.87 7.52 11 5.87 4.99 9.53 7.12 9.43 9.87 9.51 11.8 10.3 10.2 5.61 10.7 8.76 7.64 6.92 4.72 10.3 8.7 10.1 8.64 9.2 9.97 10.7 10 9.51 8.43 8.5 8.74 11.6 10.9 6.98 10.2 10.6 13.6 9.91 8.26 4.21 5.95 9.53 9.33 3.98 7.65 9.74 6.89 8.49 9.98 8.55 12.2 10.1 7.79 0 7.8 8.39 12.2 10.6 10.9 6.84 2.78 9.51 8.13 8.58 7.35 8.68 8.79 10.7 8.95 8.8 3.87 11.8 12 10.8 10.1 11.2 9.78 8.42 7.37 6.35 9.53 1.78 1.78 0 10.9 6.26 9.65 10.5 7.04 2.29 2.55 0.57 8.77 1.57 8.08 9.84 1.56 3.14 7.95 11.4 9.42 8.01 4.46 10.3 7.82 9.94 5.72 2.14 5.41 1.81 10.8 8.29 7.1 3.72 9.56 11.2 7.4 8.64 8.34 9.07 10.4 8.74 7.46 10.4 11.1 10.2 10.9 9.31 9.84 8.86 7.74 5.55 10.8 10.7 10.2 9.64 8.36 7.82 7.03 8.66 7.86 7.77 6 5.13 8.49 9.26 11.7 9.44 0.98 7.45 8.64 5.07 8.73 7.02 8.97 5.19 6.07 8.02 5.96 9.66 8.36 8.11 9.45 8.59 10 7.68 6.07 7.08 9.57 8.21 8.49 10.1 9.75 10.6 7.76 10.1 7.33 8.82 8.74 8.59 8.89 7.19 8.19 9.46 11.1 9.12 6.9 8.9 6.98 8.81 9.72 9.67 8.03 7.67 8.66 9.17 8.98 7.84 6.89 8.47 8.16 9.12 6.75 8.19 8.9 9.04 8.24 7.81 8.41 7.6 8.56 9.39 9.32 8.4 8.57 10.7 7.55 11 7.66 10.7 8.5 7.02 9.16 11.5 10.3 11.4 10.3 10.8 2.67 6.49 10.6 6.47 9.85 8.22 6.23 7.33 8.92 4.8 8.24 9.62 7.86 8.91 6.88 3.59 6.3 6.99 8.7 9.39 0 9.93 0.57 9.11 8.7 7.75 10.2 1.3 9.1 8.21 6.33 8.21 10.5 10.8 9.06 8.28 9.78 4.25 8.53 5.53 9.26 10.3 7.97 8.99 9.1 1.56 8.06 10.7 8.54 4.72 11.1 12.1 8.64 11.1 9.53 9.15 7.92 8.6 7.4 4.94 0.57 9.17 6.52 7.11 7.62 6.74 10.9 7.94 10.2 7.58 5.64 1.3 9.29 6.79 8.06 9.94 2.97 6.6 7.03 4.64 5.41 8.11 9.26 7.45 6.78 9.21 8.07 9.69 5.09 10.8 8 5.11 10 8.17 6.02 6.95 3.29 8.43 6.56 8.51 7.15 8.32 8.75 8.45 4.94 1.3 4.61 8.29 2.97 8.66 2.14 6.11 9.06 7.11 3.22 6.34 10 8.76 10.3 3.22 7.14 9.45 7.98 9.58 8.25 9.25 10 6.18 8.83 9.75 2.29 8.63 9.95 8.84 10.3 10.9 10.3 6.19 9.74 10.5 9.7 6.86 8.14 8.4 6.66 7.26 9.27 9.54 10.9 4.14 6.82 1.3 10.3 8.86 8.31 5.59 7.83 8.23 11.1 7.95 0.98 11 7.99 3.77 4.99 7.37 7.7 2.43 10.9 2.14 9.13 3.49 5.49 10.2 9.64 4.67 7.84 8.39 2.8 9.51 0.57 1.56 9.19 4.14 9.82 4.96 9.61 6.03 11.4 9.59 6.53 9.57 5.05 8.06 8.6 10.2 5.09 6.76 0.57 8.1 8.16 7.39 7.65 7.38 8.69 8.18 8.31 9.24 3.43 10.4 4.72 12.8 0.57 4.58 8.4 8.66 7.49 8.75 7.72 5.27 7.46 10.3 10.1 8.5 9.26 11.5 9.23 8.81 8.73 8.71 12.9 10.9 10.5 8.81 8.91 6.76 2.67 0.57 3.55 6.56 7.07 6.05 8.4 1.56 4.25 4.61 0 7.8 10.4 13.2 6.33 6.61 9.97 8.75 3.43 0 8.94 8.15 4.96 6.29 3.82 8.05 9.06 5.65 10.9 8.96 9.03 9.97 9.96 10.6 7.63 12.7 9.32 8.9 9.98 9.21 6.59 13.1 6.36 9.26 8.41 7.63 9.43 5.03 5.01 9.85 5.56 9.65 7.75 9.87 9.37 9.1 9.31 9.09 9.26 9.94 10.1 9.48 10.8 9.43 10.6 9.05 10.8 7.94 11.1 9.27 8.86 7.53 10 9.61 9.09 9.52 11.6 8.2 9.23 11.1 10.2 4.94 10.8 10.5 6.43 6.91 3.92 8.48 10.1 8.88 5.69 8.71 7.6 5.25 9.1 8.64 10.8 9.83 9.66 4.18 12.3 9.06 10.4 9.15 10.7 9.81 9.33 7.56 9.97 8.23 4.36 9.65 11.8 8.86 6.92 3.72 8.48 7.85 9.27 6.05 6.48 5.44 8.45 6.95 9.72 9.07 4.92 4.32 2.55 11.7 1.3 5.32 11.6 8.86 1.78 8.05 7.46 10.9 7.33 8.51 11.2 9.47 2.43 9.92 2.88 9.49 7.25 4.46 10.6 10.6 12.9 8.51 7.85 9.38 11.2 7.33 9.68 5.59 5.53 10.7 7.15 5.76 12.1 8.21 10.4 2.43 13.1 8.79 0.57 5.03 8.01 7.55 8.24 10.1 4.21 6.99 4.42 2.88 6.7 11.4 8.92 6.14 10 9.17 8.65 7.59 10.8 6.98 11.2 13.2 9.08 12.3 10.7 12 7.65 8.16 8.35 8.26 8.48 6.42 9.92 10.4 10.2 6.34 8.05 1.97 10.9 9.96 8.53 9.94 8.15 10.1 5.42 4.72 8.42 4.51 10.4 7.96 8.85 8.71 5.77 1.78 10.8 13.3 9.13 4.21 4.21 5.62 4.87 8.33 8.14 6.74 11.4 11.5 14.3 4.05 5.19 3.49 5.11 2.55 11.2 11.5 10 4.01 3.97 9.3 12.2 9.51 10.4 1.78 8.31 0.98 4.01 12.1 7.54 9.26 10.1 9.01 12.5 9.71 3.97 6.78 9.26 8.55 11 5.17 11.1 9.09 9.41 8.73 8.08 8.97 9.84 7.33 9.49 9.28 11.8 0 8.27 7 9.25 8.78 7.33 9.12 8.81 3.29 9.67 9.3 7.01 11.4 10.5 9.97 1.78 8.68 10.2 8.6 4.14 9.77 9.93 9.19 0.57 7.93 12.6 10.8 6.35 4.25 10.4 6.33 8.84 10.7 5.43 11.3 11 11.6 11.4 11.7 9.56 5.91 11.8 10.1 0.57 10.3 9.26 1.3 10.5 8.44 3.67 8.68 7.55 9.25 3.92 7.67 2.43 8.94 5.83 9.02 8.88 9.51 9.7 8.53 8.12 9.92 3.97 10.5 8.73 10.3 10.3 6.7 9.46 8.14 12.1 9.65 10.1 11.1 11.2 9.83 9.9 0.57 9.17 9.07 1.62 9.96 9.68 7.34 9.18 0 3.61 5.52 9.75 10.6 4.05 10.1 9.48 5.61 10.6 13.8 8.94 10.5 7.39 12.9 9.04 1.56 8.92 8.7 9.39 8.86 12.8 8.27 10.8 11.1 12.3 10.3 10.5 10.5 8.43 13.3 10.1 8.08 9.86 8.25 8 9.21 0.57 7.89 2.14 10.5 11.3 7.13 7.06 8.95 0.57 11.3 12.2 12.4 9.04 7.64 12 8.09 9.78 7.72 10.7 9.36 7.01 4.77 12.2 5.01 12.5 10.8 8.94 6.78 9.55 3.29 1.3 9.71 0 0 0 8.2 0 6.56 1.78 0.57 6.36 8.64 0 1.3 0.98 2.97 0 0 6.5 0 9.79 12.3 11 8.84 6.55 4.36 0.98 8.01 12.5 7.42 0 9.63 5.63 7.51 8.06 5.34 3.06 7.98 9.05 11.2 8.01 0 7.57 8.2 10.5 6.5 10.3 0.57 0.72 0 3.22 7.75 0 4.05 8.09 13.2 9.5 8.68 9.17 9.67 0.57 10.8 0 0 0 0.57 10.9 7.01 4.64 8.5 7.29 5.14 7.87 9.49 0 10.1 10.8 12.1 9.16 7.91 0 5.52 8.59 12.9 9.61 0 7.93 11.4 9.43 5.95 8.16 3.06 2.14 5.5 12.3 0 10.4 9.7 8.91 1.3 7.23 10.4 8.57 6.48 9.45 9.47 0.98 0.57 9.24 10.3 6.35 6.72 9.26 9.25 7.05 6.46 9.99 10 4.97 0.57 4.67 8.22 4.36 6.98 10.4 8.34 9.52 5.59 10 9.74 2.29 9.65 7.79 9.53 9.89 10.5 0 4.9 5.69 9.07 4.01 1.85 9.3 6.64 7.76 8.79 6.9 7.85 10.7 11.6 5.36 8.41 6.64 5.58 9.73 4.67 4.46 0.57 5.76 0.57 5.46 6.38 1.97 0 0.98 7.17 10.6 8.69 3.55 10.3 9.4 7.04 9.44 12.6 8.27 10.2 10.2 8.35 8.24 8.84 5.42 7.93 6.95 0.57 6.23 11.2 8.53 9.8 5.37 10.6 11.5 9.62 8.3 8.15 0.57 2.88 9.75 0 8.45 8.5 2.29 8.51 11.6 9.59 9.21 8.81 10.2 1.78 8.41 3.36 8.71 3.22 5.34 8.34 10.6 8.65 0 9.07 10.2 9.15 6.95 8.06 13.7 5.44 6.15 0 2.88 6.4 5.66 9.1 10.2 9.86 9.76 5.19 5.66 7.56 10.1 4.01 9.46 6.36 4.14 8.76 8.33 7.74 6.99 9.15 8.69 9.32 7.65 9.18 9.73 7.15 9.05 9.13 8.95 7.46 7.19 6.57 7.32 5.53 8.87 9.62 0.57 9.16 8.7 9.26 6.66 10.3 9.17 10.6 8.93 8.38 9.75 11.2 7.68 8.85 8.08 5.61 8.96 7.47 9.99 8.64 8.38 8.52 10 0 0 7.07 9.89 11.2 9.69 2.88 8.18 6 5.36 7.55 6.92 7.01 8.31 5.7 5.05 5.11 7.8 7.51 8.11 5.32 7.98 7.53 10.8 11.1 8.05 7.55 5.95 7.87 8.91 9.3 8.52 10.3 9.57 2.14 10.5 6.05 4.75 7.2 9.06 10.5 9.98 4.72 7.84 9.11 8.23 10.5 10.1 7.38 9.05 10.1 9.04 10.1 9.1 9.99 8.82 10.3 8.32 9.09 10.2 6.68 8.99 10.1 4.29 8.84 11.5 8.8 7.05 9.61 7.18 9.04 8.9 9.19 10 6.62 7.95 0.57 8.52 10.5 7.99 8.54 5.5 9.29 10.8 8.13 10.3 4.78 9.35 7.89 9.37 9.73 7.07 7.84 9.15 0.57 11.6 10.1 6.7 11.2 8.21 7.57 10.6 9.93 7.24 8.27 8.81 9.19 10.3 9.94 6.42 7.47 7.57 8.08 10.6 3.67 9.98 9.65 9.98 9.91 10 7.43 9.17 8.93 9.11 2.14 9.52 10.7 9.19 8.63 9.71 4.58 9.08 2.14 10.4 3.55 11.6 8.55 9.94 9.27 7.25 8.54 4.1 6.44 9.75 8.3 9.32 11.1 7.6 10.4 8.35 6.86 9.77 9.35 8.66 6.94 7.87 5.58 8.45 9.63 10 7.54 5.86 0 1.56 7.18 9.62 8.66 9.89 8.37 3.97 6.2 10.5 7.89 10.5 7.21 9.75 5.5 5.56 6.95 10.3 7.97 9.64 6.42 6.96 8.04 7.09 9.08 10.4 4.67 10.8 5.19 7.26 10.5 6.47 8.97 8.57 10.8 6.35 9.75 8.55 1.3 11.1 8.52 7.67 6.23 8.64 9.64 3.43 11.2 10.4 10.3 3.14 7.81 2.88 7.15 8.57 5.68 3.29 11.8 9.44 6.29 0.57 1.97 7.44 8.78 10.3 5.91 6.56 8.44 10.9 4.72 4.39 0.57 1.56 9.62 11.3 8.31 9.85 10.5 6.33 8.62 8.15 9.32 4.82 2.05 8.49 10.1 11.4 4.14 6.6 6.95 6.41 4.94 6.66 2.29 11 10.6 0.57 2.55 8.72 8 8.87 5.5 1.97 10.4 9.95 5.81 6.98 11.7 9.09 11 2.43 7.02 4.14 2.43 10.9 8.78 6.02 7.59 7.84 10.1 7.44 6.86 8.57 7.01 2.43 7.01 7.66 8.77 12.8 7.06 8.79 5.09 7.92 9.5 9.6 6.85 7.37 5.98 7.26 8.62 9.63 8.25 6.13 7.43 2.97 8.5 10.5 9.41 5.23 9.13 10.2 3.82 9.08 3.97 2.29 5.95 10.6 11.2 7.19 7.57 0 3.97 8.68 5.77 7.49 6.8 9.52 7.37 9.11 8.46 7.23 8.83 10.1 9.39 6.94 2.78 3.06 8.05 7.73 10.7 8.63 8.39 6.35 8.86 8.88 10.3 10 8.99 9.31 0 8.77 10.2 4.1 9.06 9.73 10.1 9.03 8.3 9.25 7.7 9.14 8.98 6.63 7.02 9.9 9.33 8.96 8.99 6.07 9.83 8.69 8.73 5.86 10.7 8.95 10.1 3.14 6.28 8.76 9.33 7.18 8.09 11 9.5 0.57 8.25 7.96 9.03 7.76 9.04 9.17 8.25 7.38 9.89 5.65 6.52 9.01 4.67 8.3 8.94 7.49 7.88 9.15 8.94 3.14 8.71 2.88 9.36 8.22 7.26 6.75 7.59 12.7 2.49 6.78 10.2 7.72 8.92 10.4 3.82 3.14 9.82 9.51 10.1 8.96 5.36 10.4 7.66 0.98 6.53 0 7.18 10.2 10.7 3.88 1.56 10.4 9.96 9.71 6.37 10.2 5.83 7.76 9.35 0 5.47 8.61 9.27 10.1 7.88 7.24 12 8.63 9.24 7.6 9.1 8.82 9.25 8.39 8.66 5.41 8.12 11.2 8.45 7.07 4.18 9.11 2.67 6.47 8.86 9.48 9.47 8.76 5.86 8.02 0 6.93 9.32 6.94 8.73 7.45 0 6.76 0.57 9.54 8.4 12.5 8.67 7.63 0.84 7.09 0.98 1.3 10 4.1 8.52 4.9 8.85 9.74 10 9.15 8.74 9.61 9.61 0 8.82 5.85 3.97 8.85 10.3 11.1 10.6 6.53 10.5 8.97 10.6 1.97 6.97 7.4 0.57 8.79 10.7 4.42 12.4 8.97 10 10.5 6.54 8.73 9.47 9.33 7.86 5.13 10.6 8.98 10 9.44 4.18 11 8.64 9.54 7.99 10.3 8.11 8.99 7.99 7.57 10.7 9.33 2.78 6.13 9.99 11.8 7.76 5.61 8.4 3.92 0 3.67 9.47 4.79 4.75 11.3 7.65 9.23 6.68 4.1 10.9 8.38 10.6 10.4 9.22 7 10.3 11 10.1 8.48 9.05 9.39 10.8 6.16 10.4 9.81 9.32 9.78 5.27 7.24 11 9.08 8.96 7.84 4.67 2.29 9.54 9.39 9.5 8.44 10.4 1.56 5.64 8.42 10.1 10.6 9.89 3.29 10.1 1.97 4.36 10.2 4.14 7.6 7.88 10.2 2.78 8.13 5.93 0.57 8.93 5.82 0.57 9.37 11.7 10.4 9.48 6.75 8.66 8.29 6.54 7.26 4.46 10.9 10.7 6.61 9.88 9.88 9.66 10.9 6.23 7.22 12 9.8 11.3 8.43 12.2 12.5 6.47 12.1 11.4 11.5 11.7 11.9 10.2 9.41 9.79 10.4 11.8 8.26 11.3 6.36 8.56 10.9 8.22 8.63 11.5 11.4 8.14 8.32 10.6 10.1 8.92 9.35 6.42 11.4 1.33 9.6 8.99 10.1 8.27 8.61 4.58 1.56 12 8.84 10.6 9.68 9.35 6.75 10.9 12.6 10.9 9.77 11.3 9.8 8.11 8.28 6.14 10.9 10.6 9.37 8.3 11.1 4.67 9.93 8.15 4.49 2.97 11.6 10.4 13.2 7.46 2.43 1.97 1.3 7.99 10.3 11.4 10.2 9.93 11.8 12.4 11.4 11.2 8.15 9.55 9.97 10 9.2 11.8 9.09 6.74 8.64 6.44 10.5 4.52 3.29 2.62 7.27 7.72 4.72 7.48 8.27 11.2 6.5 9.18 9.52 3.92 6.46 10.3 11.5 9.6 11.2 9.54 6.18 7.27 2.97 0 9.69 9.22 5.87 11.6 10.4 0.57 10.2 7.41 3.06 6.49 3.67 11.4 5.52 11.9 8.3 12.3 7.32 7.81 6.64 8.66 9.44 7.73 8.55 10.1 0.98 1.78 6.16 9.36 12.2 4.18 8.91 11.7 7.78 2.92 11.9 7.9 7.66 9.11 7.35 3.36 8.73 2.14 8.46 9.86 5.62 9.55 9.28 7.53 7.56 9.63 7.6 9.71 10.1 9.38 7.6 9.62 7.22 13.1 10.8 9.81 10.6 9.17 9.19 9.11 10.4 12.4 9.84 9.84 9.24 8.56 9.22 9.94 10.4 10.4 11.3 10.1 10.2 10.2 0 5.8 2.14 11.2 7.96 10.7 10.8 5.46 0 7.14 9.65 3.61 6.43 10.1 0.98 9.36 8.38 8.57 9.82 10.4 9.61 5.43 5.58 2.33 9.31 10.8 11.2 10.5 11.1 8.37 6.4 9.94 12.3 8.79 6.29 11.8 9.36 10.6 0 0.98 1.56 10.7 4.85 1.3 10.1 7.63 11.8 7 1.3 9.55 8.12 8.94 7.58 9.02 9.3 5.21 7.29 3.14 6.56 5.07 2.14 9.56 8.16 8.99 9.26 12.6 8.33 7.84 3.06 10 8.87 8.73 7.96 2.86 8.45 2.4 1.78 7.88 3.16 7.59 11.3 8.49 5.78 8.74 10.7 11.8 8.39 2.55 11.5 9.52 10.8 9.84 10.2 5.78 9.18 7.53 7.89 7.02 7.91 6.49 9.73 10.2 11.9 3.67 5.83 5.92 8.78 6.09 9.85 10.4 2.55 9.83 9.8 9.67 1.3 9.72 11.1 7.29 5.59 5.27 7.07 2.78 11.9 10.7 8.94 9.22 8.63 8.65 9.79 4.25 0.57 2.55 10.4 5.44 1.97 2.88 6.41 8.22 11.6 8.86 12.4 6.4 4.46 5.87 6.7 7.69 11.7 10.9 6.59 8.27 9.68 8.82 6.02 6.63 8.17 9.18 6.36 2.55 6.39 6.87 9.57 11.5 7.82 8.84 3.22 9.94 6.17 6.24 10.3 9.69 9.28 11.3 8.48 8.27 5.75 8.74 11.2 9.6 9.26 13.2 7.96 7.4 5.71 3.22 10.8 2.29 9.73 10.3 9.21 7.85 6.48 10.2 6.91 6.68 9.68 5.92 3.77 8.19 10.3 10.6 6.57 10.7 8.12 9.56 9.41 7.35 7.92 1.97 5.6 8.05 6.88 9.75 10.3 7.9 8.26 7.12 7.79 8.77 9.22 8.84 8.48 2.55 4.46 6.53 9.82 4.29 11 7.1 9.51 9.48 8.67 8.66 5.23 11.8 5.94 10.4 6.77 9.73 12.5 5.87 8.84 9.43 7.12 6.62 9.76 9.35 3.29 11.5 10.2 6.13 9.74 8.24 5.3 3.22 10.6 10.6 10.5 9.87 9.72 6.38 8.2 10.3 9.05 2.67 10 5.55 8.38 11.3 9.45 5.34 10.9 10.3 9.79 9.59 10 7.64 10.9 8.54 7.87 8.5 7.48 9.66 6.04 7.04 9.85 11.3 9.02 9.92 6.72 7.09 6.12 8.53 11.2 7.61 7.5 8.91 7.73 1.56 0 7.47 6.76 6.4 11.1 10.6 11.1 12.2 6.09 10.9 9.56 1.3 9.25 9.14 7.95 11.5 9.3 8.4 7.18 11.6 10.9 11.8 11.8 10.6 5.25 0.57 5.37 4.03 10.6 8.1 2.14 7.35 9.21 8.65 10.4 8.77 11 9.7 7.51 8.29 8.39 9.85 9.18 7.36 9.57 6.76 6.32 8.09 12.4 5.39 9.94 10.2 2.55 9.87 11.6 8.49 9.37 2.43 9.83 7.11 9.34 9.39 6.91 5.53 6.74 10.1 3.72 9.34 10.2 10.6 2.55 9.91 8.75 8.8 7.98 6.12 9.97 6.27 7.5 0 9.43 6.97 9.15 6.89 3.72 11.1 6.67 10.4 15.3 5.91 10 11.3 8.02 6.49 4.94 8.33 10 7.31 4.29 6.03 11 9.77 7.95 6.21 6.3 3.82 10.9 9.74 7.81 9.91 9.61 9.61 7.31 3.14 10.5 7.59 7.89 8.31 10.2 10.5 4.21 9.95 8.79 9.01 8.93 7.4 9.62 10.3 6.5 7.12 9.13 6.89 4.58 7.71 10.1 0.98 9 3.22 8.33 8.45 8.18 3.14 8.05 8.11 10.7 6.62 8.45 8.81 7.11 10.7 9.97 9.67 9.01 7.46 8.85 11.2 10.9 5.83 6.76 8.18 8.48 8.28 5.5 7.5 10.2 7.27 10.9 8.09 8.2 6.69 10.3 9.08 11.3 8.92 10.6 0.98 9.44 10.4 9.73 8.35 0.57 8.98 8.89 5.55 9.32 6.2 3.61 6.39 5.56 8.49 2.78 9.54 1.97 7.99 11.3 3.43 11 9.81 8.58 6.04 9.75 7.91 6.87 6.91 6.81 13.9 9.2 10.6 0 8.09 11.4 9.51 6.95 9.94 8.66 2.29 7 8.4 3.72 9.03 10 8.28 0 10.2 8 5.59 8.43 8.14 4.85 9.96 11.5 9.37 8.45 11.6 8.02 3.44 7.53 9.68 5.17 9.69 10.2 11.5 7.08 9.3 9.35 9.83 7.27 10.7 9.05 10.2 10.4 7.51 7.65 9.62 9.58 10.4 8.98 9.64 4.18 11.1 10.9 9.82 9.07 4.05 10.8 12.1 8.47 4.36 9.54 9.12 2.78 8.81 7.28 9.81 12.2 10.1 4.1 8.64 9.99 8.48 7.83 7.09 3.97 11 13.3 7.92 5.25 10.7 8.91 8.57 2.88 7.27 1 2.55 8.39 9.04 7.19 8.13 6.6 5.52 5.69 9.46 8.83 4.1 9.72 9.05 8.9 9.81 10.5 6.68 4.25 10 9.85 8.21 10.2 6.19 10.9 8.7 9.52 10.9 3.92 11.4 9.34 9.66 10.4 7.5 7.18 8.88 6.37 10.9 6.58 0.98 12.4 9.44 8.94 9.62 7.63 8.98 11 9.63 2.54 11.3 9.51 10.6 5.19 1.78 11.3 14.2 0 9.68 5.09 9.97 8.21 10.5 0.57 6.66 0.98 5.01 6.14 7.01 6.96 9.33 11.3 9.5 0 12.4 8.13 9.75 9.4 3.87 7.56 9.07 10.2 6.87 2.99 9.48 9.48 8.63 12 8.48 11.4 8.2 9.26 10 11.1 11.6 0.98 9.16 10.8 2.55 10.2 0 6.75 0.98 6.46 1.78 11 7.91 9.15 4.61 8.49 9.27 11.6 2.43 6.36 5.61 10 9.29 5.73 9.79 10.6 6.54 6.46 6.55 5.21 5.41 11.6 3.36 4.49 3.29 6.48 8.66 9.79 7.62 9.46 9.45 1.3 9.35 8.77 2.43 8.71 9.39 10.8 8.41 10 11.3 8.71 8.53 8.02 6.22 9.34 1.56 11.6 7.29 1.97 11.3 7.74 8.46 5.58 9.67 6.86 12 6.78 6.81 10.5 8.37 0 6.23 4.55 4.42 5.96 0.57 8.89 5.95 9.06 7.92 8.13 7.95 10.5 15.6 10.8 3.29 11 6.92 8.94 8.56 7.68 9.4 10.5 6.33 7.12 8.48 2.88 9.42 9.89 8.12 8.9 8.29 2.55 9.7 9.21 10.6 7.58 10.3 9.22 8.65 11 8.56 9.23 7.18 6.62 8.02 9.31 8.49 7.01 7.93 9.93 10.6 11.8 6.33 8.14 7.9 4.39 3.14 11.3 12.3 10.8 9.59 4.1 7.46 6.3 9.8 10.8 11.4 10.1 9.53 0 11.8 10.6 10.2 7.2 3.36 11.5 8.71 9.67 10.8 9.65 11.3 10.2 12 10.1 9.81 6.23 9.83 6.96 8.97 8.19 9.04 9.72 8.96 10.4 9.43 9.54 9.08 4.18 9.38 8.38 10.7 10.9 11.3 12.4 11.2 9.92 9.91 11.6 10.4 9.4 9.91 2.16 8.25 11.2 11.4 9.88 8.55 10.6 7.03 9.64 10.8 6.72 9.94 11.9 9.76 8.29 10.6 6.88 8.24 12.1 6.73 11.3 8.44 12.3 10.3 5.58 12.2 10.6 8.33 0.98 11.2 9.51 12.5 10.3 10 9.21 10.2 10.5 8.67 11.1 11.8 10.3 7.51 10.9 9.41 8.31 11.3 5.21 4.72 0.57 10.3 5.17 7.4 11.1 6.25 0.57 8.87 9.05 5.23 9.91 9.8 7.86 11.3 9.02 10.3 9.04 9.65 9.17 10.1 8.65 8.82 9.15 6.19 9.94 10.3 8.19 8.53 9.65 8.27 7.92 10.8 13.6 9.55 6.39 10.7 10.1 9.04 11.3 6.1 11.1 15.1 9.88 0.98 11 9.74 9.08 9.51 8.04 9.65 9.77 9.96 13 8.32 10.1 9.65 9.68 10.7 11.3 7.14 9.6 11.3 6.96 11.3 9.43 9.86 9.28 9.54 8.91 8.45 11 6.76 7.1 6.06 5.53 10.5 9.27 12.1 9.3 2.88 9.27 5.3 12 5.81 8.94 9.12 8.33 4.67 9.13 2.67 6.75 9.63 16.2 1.95 3.14 9.42 10.8 8.68 11.1 10.2 5.49 9.4 9.66 8.48 10.4 8.75 8.09 10.7 7.48 7.89 9.79 5.36 13.5 10.3 9.02 7.65 11.6 9.12 10.1 9.31 13.6 8.49 8.86 7.15 7.93 9.39 9.83 7.94 10.8 3.61 13.1 11.2 8.74 9.1 10.8 7.53 5.81 13.6 9.44 10.3 11.4 11 10.7 10.6 11.4 10.5 10.7 5.53 9.91 7.91 12.3 6.73 11.6 10.2 7.12 4.29 10.9 9.73 10.3 10.6 9.47 10.3 9.19 6.13 9.93 11.4 6.64 10 13.2 11.6 12.5 10.4 10.2 4.49 11.6 9.28 10.3 11 9.24 10.7 7.52 10.2 9.24 7.99 9.73 9.65 8.75 6.07 9.08 10.2 6.55 9.75 7.86 6.29 10.1 7.65 1.3 5.65 2.97 8.81 6.93 9.66 10.2 5.64 8.03 9.7 7.16 8.46 9.74 9.94 9.64 8.93 9.32 9.3 10.1 8.1 8.49 3.29 9.19 10.3 9.26 6.48 9.96 11.2 7.63 8.53 8.25 10.7 11.1 9.72 10.6 10.2 8.66 9.32 9.86 8.18 11.4 10 9.58 9.43 7.75 8.82 10.3 11.7 9.01 10.4 10.7 10.8 8.89 11.8 2.43 7.71 9.93 9.67 8.96 9.58 11.3 4.8 5.95 5.66 7.7 9.57 9.51 9.88 11 8.28 10.7 10.8 9.83 6.17 6.72 5.29 6.86 10.3 4.46 10 9.67 10.3 11 11.5 12.1 9.72 9.35 10.5 8.65 11.1 11.4 3.55 10.2 5.66 10.1 8.9 5.21 10.2 9.81 8.11 8.32 10.3 10.3 5.98 7.78 7.31 10 6.99 7.11 12.8 8.53 1.97 9.73 1.3 1.3 8.31 11.1 9.59 9.92 8.78 13.3 9.52 6.34 3.72 11.2 9.39 10.4 10.2 3.24 9.4 9.87 10.2 7.12 10 12.3 8.84 8.71 10.2 8.53 12 10.8 10.8 9.69 9.64 10.8 2.43 11.6 7.81 9.69
-TCGA-3K-AAZ8-01 16.4 8.04 11.4 4.75 6.22 8.53 1.43 2.31 0 0 0 11.8 3.4 3.97 2.6 8.73 10.1 8.53 7.05 9.14 9.43 2.31 8.92 0.65 9.26 7.01 2.79 10.5 2.87 9.35 5.07 7.18 0.65 0.65 1.43 0 0.65 7.06 0 2.85 3.68 4.02 0.65 2.6 4.78 3.15 0 3.4 11.5 5.46 3.68 7 9.1 10.6 6.56 0.65 7.55 0 6.98 5.38 6.35 4.21 6.16 6.36 1.93 1.7 9.27 2.31 11.4 7.27 2.13 8.46 0.65 4.45 1.09 5.21 3.64 5.66 2.97 2.85 4.65 1.7 1.87 4.3 8.92 0 4.49 3.74 1.09 2.6 10.6 4.49 6.28 6.29 3.38 3.32 0 1.7 6.95 1.09 2.31 4.81 0 4.37 1.09 4.3 6.11 7.71 7.95 4.72 2.73 0 8.16 1.43 6.3 0.65 1.88 2.31 4.65 1.43 4.02 3.86 0 3.06 0 5.42 0.65 3.06 1.7 9.6 4.33 4.37 2.46 7.5 3.74 1.7 3.92 1.09 2.83 9.22 7.07 11.3 0 5.28 5.15 11.1 0 10.8 0 7.13 5.18 0 8.52 9.26 12.3 2.73 0.65 3.54 10.1 2.31 6.18 4.12 0.65 1.09 11.3 7.09 9.23 4.07 4.56 0 11.1 8.84 2.46 5.15 1.43 1.43 4.29 7.99 6.55 4.25 3.15 9.52 3.48 3.68 3.64 3.92 0 0 8.81 6.64 7.33 8.39 1.09 4.12 3.97 5.49 5.69 8.96 8.62 8.67 3.24 10.4 7.43 12.2 7.35 5.05 7.75 10.3 9.96 7.54 4.49 0 10.3 11.2 9.82 8.27 11 9.07 8.54 9.96 10.5 10.1 11.2 11.5 6.96 9.69 1.43 10.9 8.62 11.8 10.4 3.55 9.67 9.91 7.72 11.3 10.9 2.13 9.23 1.43 3.55 4.16 12.2 11.3 11.1 10.9 10.7 11.2 0.65 10.7 7.3 2.6 2.31 11 10.1 5.9 11.4 11.1 6.3 11.1 9.08 10 3.8 11 7.15 9.28 6.58 10.3 11.3 8.72 7.26 5.1 8.04 9.87 11.2 8.83 4.78 13.9 12.6 12.2 12.8 11.9 9.55 8.07 9.81 12.7 10.5 9.1 10.7 9.18 4.69 1.93 10.9 6.18 6.88 10.2 2.13 12.2 6.5 10.7 4.33 11.1 11.6 6.81 10.2 10.1 0 11.6 12.3 8.16 13.4 7.87 4.69 10.3 2.96 9.46 11 0 8.41 7.08 9.42 10 5.03 5.88 9.47 9.78 10.2 8.91 8.77 8.93 11.7 7.87 11.2 6.76 9.37 9.18 9.08 8.09 7.57 6.36 10.9 8.01 8.32 9.7 8.25 14.1 9.96 8.73 12.2 9.98 10.3 9.37 9.2 0 4.12 8.3 4.54 11.4 1.93 5.34 6.08 10.5 8.03 8.81 8.6 7.64 5.3 0.65 6.95 5.32 6.03 10.9 10.9 10.2 10 6.59 9.14 11.8 0.65 10.3 10.7 10.6 13.6 9.64 10.9 9.68 4.21 8.2 7.46 8.9 0 5.15 10.9 8.79 5.19 10.7 10.9 1.09 6.07 10.8 6.96 10.5 10.1 9.32 11.8 11.5 7.91 9.78 9.84 1.93 1.09 5.36 12.1 8.98 8.27 11.6 8.77 9.58 5.81 5.74 9.65 8.35 3.32 11.4 4.75 11.3 11.2 9.83 4.96 10 9.97 13.6 6.94 9.62 6.27 6.36 9.27 7.19 6.87 10.6 10.7 11.6 9.86 1.93 12.5 8.93 6.56 6.71 0 8.79 0 8.26 5.03 12.4 9.19 7.89 4.78 11.5 0.65 3.32 4.63 8.73 11.7 2.6 9.71 8.15 5.17 6.93 9.32 7.91 5.73 12.5 8.76 1.09 10.8 9.14 7.21 11 10.8 2.31 12.9 11.9 0 9.19 7.52 10.5 11.2 9.8 8.98 1.43 5.91 9.34 9.77 3.55 13.1 7.62 6.66 9.27 6.56 11.9 8.22 14.3 8.36 5.03 10.9 8.74 9 5.05 11.4 0 0 5.75 0 15.8 6.05 10.9 10.1 11.8 3.48 10.6 6.61 10.5 9.37 12.3 11.5 10.3 7.82 10.2 11 8.14 11.1 9.81 10 6.08 9 11.3 8.16 2.73 10.8 9.38 9.28 9.97 3.74 10.1 13.3 0 8.08 5.81 10.5 10.1 12.6 11.6 8.63 10.9 9.79 7.35 8.09 6.84 9.41 7.63 7.71 8.93 12.1 10.2 10.1 8.99 11.1 9.12 10 10.6 9.65 12.2 9.39 9.42 8.05 10.9 10.2 10.6 10.9 1.09 11.6 9.65 10.3 10.4 11.2 11.2 11.6 10.7 7.62 10.4 10.8 8.17 0 13.5 7.26 7.16 8.39 6.71 9.96 11.9 2.73 9.19 10.7 8.64 0 5.91 11.6 12.4 6.04 12.3 8.63 11.1 9.77 12.9 9.69 10.7 10.2 2.13 1.09 10.9 9.21 9.33 9.27 4.72 12.6 5.07 9.72 11.5 10.5 11 10.1 5.54 11.7 11.8 10.1 0 11.5 11.5 11.7 11.4 8.95 8.98 9.14 9.28 3.06 10.4 11.5 0 2.46 9.67 9.83 3.55 11 0 9.73 1.09 10.7 11.2 12.3 11.8 11 11.7 4.37 10.9 2.13 11.1 13.2 9.74 4.07 11 11.5 10.8 10.9 12.4 6.95 12.4 0 7.95 11.4 7.24 9.84 6.75 5.15 10.3 11.7 11 9.91 8.45 6.96 11 7.47 10.5 9.85 9.1 11.4 9.18 12.9 4.45 5.9 7.19 5.95 9.1 11.2 8.39 13.1 11.6 9.43 6.35 4.45 11.4 2.73 8.96 4.63 10.6 3.55 8.02 9.4 9.24 4.49 8.61 10.1 0 9 10.1 5.65 12 8.07 11.1 10.4 6.49 16.7 2.96 6.28 10.1 3.06 9.36 7.72 7.94 10.8 7.45 10.8 2.13 1.93 2.13 7.74 8.93 12.9 0 1.43 10.4 6.28 1.09 6.5 11.5 10.7 1.09 3.97 7.42 4.78 9.59 9.32 7.23 0.65 8.17 13.7 3.15 11.9 10.7 9.08 12.2 12.9 10.8 11.6 7.93 3.92 3.72 9.78 0 1.7 2.31 0.76 9.58 4.25 8.66 0 5.84 7.81 12.4 2.46 12.8 8.6 6.59 0 11.4 8.67 0 9.82 7.96 9.38 10.8 10 11.1 8.75 10.6 9.83 6.98 9.8 11.1 8.77 6.95 5.83 9.07 10.9 7.52 10.3 12.3 9.89 5.05 4.59 7.47 4.52 8.86 0.65 2.13 12.2 10.2 0.65 0 8.11 10.5 10.6 12.6 8.38 8.51 9.06 7.45 9.24 7.33 8.26 4.63 10.3 8.89 8.89 0.65 13.9 13.5 10.7 9.88 2.6 10.8 9.21 8.48 3.15 11.4 13.9 4.72 4.75 8.7 2.73 7.98 10.6 10.7 9.95 10.5 7.08 2.31 6.07 0 7.44 0 4.92 9.18 9.09 1.7 0.65 10.9 8.59 8.32 7.16 3.32 0.65 11.8 8.66 12.4 5.78 1.43 11.1 9.46 5.78 10.3 7.76 8.6 10.6 10.8 9.23 1.11 11.6 1.09 11.7 8.84 11.2 0 10.9 9.37 11 11.3 11.9 10 6.47 8.96 10.7 9.29 1.43 11.2 1.09 12.8 1.43 9.89 11.1 6.66 1.09 8.3 11.2 12.1 10.3 5.77 10.5 11.3 8.18 9.6 11.8 9.41 10.3 10.4 14.2 11.6 12.9 13.9 11.8 4.16 11.7 11.9 10.9 8.71 10.5 10.8 11.4 13.5 9.78 5.12 11.8 8.13 10.3 11.3 9.71 9.47 10.2 3.74 11.1 10.8 10.6 10.9 7.15 13.8 12.2 14.3 12.1 13.3 10.6 9.96 12.8 5.26 5.28 9.23 2.32 8.87 6.63 8.53 0.65 13.2 7.78 8.64 8.66 10.5 7.7 6.4 10.3 9.34 8.78 1.43 3.87 2.85 2.6 8.34 6.48 4.4 11.6 4.56 4.69 8.88 8.48 10.2 9.3 9.68 0 10.2 11.8 8.83 10 9.68 11 8.85 12.8 11.9 10.2 11 7.08 1.43 7.02 4.72 9.26 10.6 9.14 8.29 9.23 10.5 9.11 8.45 8.76 4.56 10.7 12.2 11.3 5.23 6.64 9.48 10 6.52 7.49 10.6 3.15 4.33 9.56 7.33 6.14 11.9 7.11 8.86 8.27 7.62 0 8.11 6.11 11.2 4.21 7.91 9.14 11.1 11.3 11.1 9.38 3.24 10.1 3.62 7.18 8.31 9.41 1.09 7.14 3.4 7.8 8.53 11.6 9.26 9.58 9.27 0 12.5 8.97 9.62 0 10.5 6.32 8.74 0 0.65 9.19 10.6 5.69 6.15 3.32 9.44 8.45 8.39 7.92 10.2 8.92 12.4 8.54 8.44 10.8 9.29 8.44 10.9 5.3 1.7 6.29 10.4 5.32 1.43 9.45 8.24 4.37 9.32 0 10.8 7.22 8.53 6.83 6.17 8.42 2.73 10.7 0 9.44 9.04 7.8 8.3 10.8 9.45 10.7 9.3 8.95 8.98 7.57 10.2 7.62 8.83 4.95 10.6 8.74 7.24 7.24 8.08 2.32 5.93 10.8 10 9.09 13.2 4.07 0 4.56 4.97 7.48 11.3 6.76 8.82 9.06 10.1 4.81 5.6 10.7 4.07 10.7 1.43 11.3 10.4 5.36 4.92 2.85 4.07 8.72 3.62 12.6 8.81 9.69 0.65 6 10 11.2 9.15 9.69 10.1 7.3 5.58 10.6 0.65 12.8 7.13 7.09 5.56 8.36 7.86 10.4 9.76 8.11 5.62 0 5.02 7.08 11.1 10.8 9.04 9.51 7.03 9.46 9.54 11.5 8.92 2.31 1.7 8.34 6.91 12.9 8.96 8.69 9.31 9.87 8.18 9.91 10.9 10.6 7.55 9.93 7.78 6.7 8.69 8.97 5.81 12 1.43 9.57 3.62 10.9 5.81 5.94 7.25 12.6 2.6 12.6 7.3 7.1 10 6.79 0.65 8.24 9.32 0 8.45 10.6 9 7.28 8.51 11.2 10.6 10.8 10.3 5.83 7.56 3.32 0.65 9.98 10.7 1.43 12.2 9.4 11.1 9.05 10.8 10.4 13.1 11.5 3.17 8.36 7.29 0 10.5 10.7 11.5 10.4 9.96 10.8 6.2 5.75 1.43 11.6 7.43 3.74 0 4.84 5.26 10.4 10.7 0.82 7.37 9.51 8.4 1.7 3.48 0 11 0.65 8.62 0 8.57 7.56 1.7 3.35 10.7 1.7 2.46 2.6 7.35 9.26 7.06 2.13 5.53 7.02 3.68 0 1.09 7.16 3.15 8.72 6.11 9.15 8.44 5.74 13.1 8.85 1.93 0 9.95 8.25 12.5 7.47 8.38 5.36 4.87 8.03 7.02 8.83 3.4 2.73 3.24 4.78 8.59 0 5.98 3.74 1.7 8.28 10.6 0.65 8.34 7.63 0 5.78 9.41 5.12 6.54 4.41 8.57 10.8 4.59 8.16 6.91 1.43 6.78 1.7 9.07 1.93 6.47 13.2 8.39 8.89 7.27 10 8.91 9.17 3.15 10.4 8.75 10.2 3.55 0 10.2 11 8.14 6.47 1.43 5.21 7.7 9.86 8.9 7.25 9.06 1.09 1.09 8.97 10.4 9.5 12.7 7.5 1.09 2.31 9.97 9.09 7.03 4.45 10.5 9.94 8.47 10.3 7.72 8.69 3.86 2.13 1.09 4.12 0.65 5.44 5.15 7.1 9.19 9.68 2.96 9.33 3.15 0.65 2.31 11.5 6.53 0 3.92 10.8 1.7 7.76 8.71 1.43 0 6.18 0 8.76 8.98 7.64 8.99 6.88 10.7 8.26 11.9 7.25 10.6 11.1 0.65 5.63 1.43 8.37 8.39 10 6.5 8.54 9.17 10.5 10.3 6.66 7.71 0 2.85 0 6.02 7.17 4.69 1.43 3.48 1.78 10.6 0 0 9.05 6.44 2.31 9.69 10.7 1.09 4.41 8.36 5.07 9.67 10.6 10.8 7.35 14.6 1.09 1.09 9.38 7.89 10.8 5.49 7.21 10.9 9.08 1.09 8.63 4.07 1.7 3.15 8.76 7.82 0.65 10.9 3.15 6.18 5.91 12.9 11 11.3 0 0.65 4.72 10.3 10.3 5.6 1.43 11.7 1.7 7.47 9.15 8.57 9.3 9.66 6.33 8.66 0 6.09 3.32 8.86 14.2 9.48 10.1 6.79 5.64 8.31 11.4 6.68 2.13 0 11.5 2.85 9.51 8.83 8.88 1.43 9.48 9.53 0.65 7.79 11.1 16.4 10.3 6.44 1.09 0 5.51 6.47 0 9.74 11.2 9.96 2.46 9.35 3.62 7.78 9.26 6.47 12.1 2.31 11.9 6.42 1.43 0.65 8.43 9.82 3.97 0.73 7.18 7.28 8.63 10.6 2.31 6.6 12.6 0.65 2.13 8.17 11.4 11 7.09 9.27 3.4 5.45 13 0.65 6.74 7.91 0.65 3.06 8.16 8.06 3.48 10.1 9.48 0 0 0 3.32 1.7 7.88 6.36 9.1 7.1 8.96 7.75 3.55 9.04 10.4 6.71 4.87 7.82 7.98 9.02 1.43 7.72 9.22 9.46 12.1 5.26 7.62 5.61 2.13 8.4 3.92 9.01 0 8.1 5.49 7.43 8.19 3.06 8.83 5.86 5.53 1.7 5.07 8.31 6.15 0.65 8.13 5.44 7.18 11.3 9.78 1.09 6.77 0.31 7.3 14.6 6.69 9.67 7.1 3.15 3.24 7.67 6.96 2.13 0 7.35 9.78 6.36 11.5 8.57 9.83 7.49 12.2 10.1 3.82 8.48 9.6 6.38 13.8 9.89 0.65 1.09 8.69 9.94 5 3.86 0.65 7.18 9.9 7.64 4.6 2.96 0 4.15 1.93 3.97 7.98 9.93 11.1 2.13 0 9.48 4.21 9.96 11.1 15.2 8.49 11.4 5.16 5.56 11.9 9.06 8.57 4.67 8.47 0.65 8.46 12.6 2.73 1.09 6.93 6.38 8.69 0 10.8 10.3 3.32 4.02 0.65 6.54 5.07 6.48 6.87 8.81 9.57 3.62 11.2 3.06 2.13 10.6 3.4 0 2.73 3.97 9.5 7.14 8.84 9.5 8.06 1.09 8.87 10.5 5.44 12 0 7.33 4.66 5.72 9.09 4.81 7.86 6.87 7.12 10.3 8.29 2.6 11.9 6.25 2.6 6.95 8.52 5.65 11.4 6.9 8.11 9.86 1.43 0 8.18 0.65 2.85 1.09 8.34 1.7 7.82 14.3 2.46 6.57 10.1 0 8.31 2.46 2.73 10.7 8.07 8.77 6.55 6.26 1.46 0 8.67 4.66 7.28 5.91 9.2 10.2 6.56 8.82 10 9.72 10.6 1.93 1.09 11.2 6.04 1.43 12.5 0 8.19 9.31 10.5 2.13 7.64 10.3 0 0 3.4 5.54 11.7 5.53 11 0 8.69 0 6.05 9.1 10.6 5.87 8.33 6.03 2.13 2.46 7.04 5.23 4.89 9.4 1.7 2.96 1.09 0.65 0 10.8 8.97 7.72 9.33 8.73 7.31 6.46 6.82 11 9.22 10.3 8.76 6.32 8.62 9.43 4.69 8.04 6.98 4.02 3.4 7.19 9.17 3.24 9.94 2.13 9.13 8.2 6.92 1.7 8.51 9.26 7.06 3.48 4.16 7.32 12.5 1.7 3.97 10.4 0 2.6 4.29 2.31 3.24 6.25 5.63 5.71 0.65 4.41 6.38 9.93 8.26 1.43 9.13 3.68 0.65 10.4 6.97 7.47 9.9 5.56 5.17 0 0.65 0 8.09 6.19 8.24 6.18 7.9 0.65 1.7 0 0 7.93 1.09 0 9.76 0.65 12.6 12.2 8.53 2.6 8.23 11 4.07 5.55 8.19 9.9 11.5 9.94 8.12 5.84 11.7 7.43 0.65 10.2 0.65 0.65 7.52 10.1 6.5 6.43 12.3 6.43 0 0 5.87 9.99 6.22 6.95 1.43 2.46 1.65 6.75 7.37 4.97 13.1 6.59 5.3 7.84 2.31 11.6 1.93 7.56 1.09 7.74 6.36 2.13 9.3 7.45 1.09 6.28 4.02 3.24 10.2 12.9 12 9.85 1.7 0.65 8.51 1.43 12.5 7.47 8.03 12 10.3 6.24 8.34 6.53 6.6 6.57 8.21 9.38 1.7 9.93 12 8.63 6.91 10.9 10.3 5.23 6.95 11.4 1.94 11.3 7.97 6.63 12.1 11.9 9.78 10.1 2.65 7.22 8.12 3.32 0 8.26 2.73 9.86 1.09 9.38 15.4 1.09 2.96 5 1.09 8.03 14.2 11.3 7 0 9.85 0 2.6 9.82 10.2 11.6 10.7 8.75 6.53 6.04 7 8.18 4.89 15.1 6.33 12.2 7.98 8.98 10.5 8.73 8.71 3.06 3.8 10.2 10.6 0 0.65 9.55 2.31 0 9.5 1.43 0 5.91 5.58 5.9 2.31 6.72 0 9.22 12.2 8.19 0.65 3.32 8.64 7.39 6.1 6.38 10.6 9.67 1.09 11.8 10.5 9.66 1.7 7.97 7.67 4.56 6.56 5.36 6.97 7.45 6.71 10.9 5.07 0.65 0 9.27 4.95 4.45 10.6 11.4 4.78 3.68 4.22 8.74 7.58 9.28 5.93 8.42 11.2 0 4.78 4.97 8.35 2.31 1.09 7.9 9.58 2.73 0 7.39 6.45 2.13 0 6.4 3.23 5.7 3.06 7.65 6.85 6.93 5.12 6.16 3.62 3.3 6.37 10.4 10.1 9.39 2.13 0 8.98 11.3 1.43 11.1 10.4 6.38 6.35 7.07 7.39 5.1 0 9.64 0.65 9.38 1.09 8.74 3.24 5.07 7.9 0.65 2.85 11.7 9.74 5.45 1.09 0.65 1.7 0 4.45 10.4 5.05 10.7 1.43 8.43 10.1 6.93 11.2 8.49 10.8 11.2 6.78 6.32 9.81 10.1 4.97 7.58 8.49 8.49 2.6 3.32 7.76 0.65 1.93 4.63 6.34 6.36 7.91 8.12 5 4.25 6.47 0 5.69 4.12 8.21 8.96 6.44 7.37 2.84 11.1 3.06 7.44 6.34 3.24 0.65 10.4 8.82 7.84 7.92 1.93 9.8 0.65 2.6 1.93 10.5 0.65 0 6.8 7.36 4.75 8.38 1.43 8.56 7.08 10.2 8.81 7.8 11.3 0 5.98 6.66 11.4 0.65 7.44 9.7 0.65 2.96 9.79 5.19 10.7 0 4.78 7.61 7.03 8.54 9.13 7.69 1.43 2.15 5.85 8.73 7.41 4.52 3.86 8.26 0.65 0 12.4 8.08 3.92 8.12 0.65 4.37 8.96 6.17 5.15 0 7.39 1.7 2.13 3.06 7.2 0.65 5.84 4.87 6.14 0 5.3 9.88 6.35 8.83 4.12 0 3.97 10.3 0 9.98 8.98 7.03 1.43 3.48 0 2.13 8.81 0 0 11.8 2.31 0.65 4.12 1.43 4.02 0.65 7.35 4.41 3.68 8.21 3.4 9.43 3.48 8.89 8.07 4.12 12.5 10.3 7.99 7.5 8.39 9.12 5.71 8.43 2.73 0 0 1.7 3.32 2.31 3.15 8.43 12.2 6.38 2.6 8.39 1.7 2.13 4.63 1.93 5.51 7.37 4.45 9.44 4.6 8.24 1.93 4.72 7.72 5.56 9.39 8.82 7.94 5.34 2.31 9.17 4.41 9.56 6.05 6.12 8.61 5.56 6.93 9.53 9.77 6.3 9.76 3.92 5.87 4.29 4.49 7.8 5.59 0.65 4.21 2.73 2.46 9.56 7.21 0 6.44 7.08 5.38 0 6.48 8.64 1.43 6.78 6.21 9.38 3.4 7.57 8.85 7.61 10.6 9.28 0.65 0 11.3 3.32 1.09 9.13 8.67 5.77 4.84 1.7 8.91 3.87 2.13 7.83 0 10.9 9.54 0 8.57 11.8 3.8 5.66 9.97 0.65 4.63 4.75 6.72 8.59 8.3 2.85 2.89 0.65 6.49 3.48 3.24 12.6 13.1 4.21 9.48 0.65 3.68 12.2 9.48 9.34 0.65 2.85 11.4 0 4.02 13.6 0 0 2.6 4.02 2.46 2.6 9.27 0 0.65 9.02 10.8 5.44 8.16 9.65 0 7.56 4.02 4.37 6.15 4.75 7.8 1.09 8.91 3.15 9.16 2.46 2.6 2.31 8.89 8.82 0 4.45 4.02 5.12 3.68 2.85 7.72 4.29 12.9 6.89 15.7 7.51 3.4 0.65 4.45 9.12 7.98 2.13 2.73 8.22 5.23 6.64 7.92 8.2 11.8 6.22 3.48 4.21 0 3.32 3.05 6.18 4.49 7.36 4.33 7.94 11.4 3.15 6.95 1.93 0 6.18 5.17 7.24 3.74 9.26 8.02 8.06 12.1 1.7 1.7 5.28 0.65 4.29 0 6.12 2.13 10.2 9.41 4.21 7.71 7.09 10.7 7.59 8.51 6.4 0 3.55 5.9 8.15 3.48 11.3 7.22 8.75 7.16 12.6 2.73 8.74 6.52 10.4 6.61 3.86 3.92 0 0.65 7.6 10.9 6.73 3.48 7.62 4.56 8.23 3.92 6.73 0 3.4 13.6 7.6 12.1 7.11 7.14 7.62 1.09 7.7 9.85 8.52 7.2 8.21 10.2 6.93 7.5 10.2 7.37 0.65 8.35 11.6 9.26 7.06 7.39 6.74 0 1.43 4.56 12.2 5.56 5.03 3.24 8 1.93 7.64 8.55 9.96 8.91 11.1 4.56 7.11 8.48 0 6.91 0 2.13 10.2 8.47 8.57 1.7 5.54 5.54 0 9.49 2.13 7.21 9.83 11.3 0 0 7.53 0 7 6.12 8.94 9.01 11.8 8.43 0.65 7.93 9.12 8.59 6.63 9.61 10.3 12.6 10.5 8.96 13.4 9.07 17.7 0 5.74 11.3 1.7 6.97 9.61 9.95 1.09 4.12 10.1 8.02 5.42 9.15 6.77 6.4 14.5 0.65 9.82 0.65 5.6 7 4.49 8.73 5.75 10.2 0 0 1.7 7.9 2.13 5.88 0 7.75 11.8 5.69 0 6.32 1.93 9.4 0 7.63 4.41 5.58 1.09 0 5.26 7.4 4.59 3.32 3.15 7.09 8.77 8.64 6.82 2.96 0 0 3.48 0 0.65 0 9.5 1.7 9.15 7.38 7.97 3.74 8.71 1.7 1.09 14 6.48 3.92 14.5 1.7 0.65 13.4 11.9 1.93 7.72 4.12 1.7 0.65 0 12.2 3.62 2.31 2.46 4.87 7.81 0 2.85 11.9 8.49 6.31 6.16 6.96 3.55 3.74 5.15 7.51 9.37 10.8 12.3 4.45 5.8 4.21 8.18 9.56 6.84 2.6 8.19 10.2 1.7 8.23 5.36 3.8 9.93 0 0.71 11 0 3.24 7.03 4.95 5.1 7.02 1.93 8.58 11.5 8.92 5.36 11.9 6.67 0.65 9.03 9.86 11.6 7.22 1.09 1.7 0.65 10.7 6.45 2.46 4.25 2.96 6.63 8.02 9.38 5.71 2.13 6.6 3.74 7.48 5.87 4.69 9.64 7.39 0 11.8 8.01 6.27 7.89 4.49 6.72 0.65 6.11 6.11 1.09 8.42 6.41 7.3 5.45 7.29 12.4 0 3.8 4.33 3.92 7.25 2.85 10.2 4.63 10.5 9.42 5.8 2.31 8.66 9.23 1.09 1.43 4.45 9.14 9.72 11.6 10.9 0 7.04 1.09 11.9 0 9.33 1.09 1.43 6.54 15.2 1.7 14.7 2.7 13.5 2.6 2.13 10.8 6.32 8.72 9.02 12.5 3.92 1.43 8.86 2.31 12.9 2.96 10.7 7.05 11.5 12.9 2.6 0 10.5 2.85 0.65 8.28 0 9.69 0 5.69 12.8 11.4 10.1 8.85 8.27 4.07 0 6.93 4.41 10 12.7 3.15 9.57 9.09 6.3 9.38 2.31 7.75 8.33 0.65 9.3 10.8 8.67 0 5.05 0 2.13 6.55 3.86 8.26 0 4.02 5.86 8.03 1.93 5.69 2.96 9.04 9.71 0 2.31 6.43 4.49 2.31 2.85 2.85 8.01 1.43 9.44 3.68 3.86 0 6.75 8.53 7.19 2.73 3.8 6.57 5.83 0 0 1.93 6.17 6.36 0 9.62 9.66 5.63 9.32 6.15 0 10.2 0 0 2.73 5.66 0 8.89 2.46 2.73 8.12 8.84 8.84 0 9.66 5.94 0 0 4.81 4.16 12 9.72 11.2 1.43 10.1 9.28 8.62 13.1 15.7 7.16 7.69 9.98 10.8 12.9 10.1 12.6 8.42 7.27 11.1 1.09 9.88 9.98 11.2 9.8 2.96 3.74 6.27 11.3 1.7 0 0 0 8.67 10.1 11.6 6.63 0 8.58 9.18 5.23 4.75 1.93 5.17 0 4.63 8.68 4.56 7.49 11.8 12.2 8.85 1.7 8.99 9.89 11.4 9.42 2.6 8.16 4.84 10 6.73 1.93 5.36 9.24 10.4 13 0 10.3 9.34 10.9 10 7.89 6.68 0.65 8.84 3.32 0 10.2 7.23 5.32 0.65 9.71 7.59 9.84 5.66 15.7 10.9 12.6 7.74 2.6 7.92 6.33 4.21 8.36 9.2 12.9 7.72 12.3 4.16 9.42 9.86 7.75 11.8 7.93 5.69 9.5 11.3 9.48 10.8 9.8 10.2 6.56 7.82 3.62 7.37 9.59 6.9 7.73 9.98 4.75 6.49 11.1 15.2 14.5 14.7 13.8 6.81 5.84 2.85 9.54 7.66 3.4 5.45 5.65 3.8 11.9 7.34 4.2 10.9 16 0.65 10.6 8.64 10.2 6.42 7.43 5.44 11.7 13.8 13.7 15.5 10.7 12.9 6.11 6.99 1.09 8 6.99 2.85 0.65 8.03 7.93 8.64 9.98 9.59 9.99 11 6.87 6.71 5.53 10.9 3.97 0 2.13 7.98 0 12.8 3.55 6.48 6.19 2.13 6.92 10.4 4.25 12.3 7.02 9.84 9.65 10.7 1.09 7.43 10.5 7.22 1.43 9.99 10.4 8.91 4 11.8 6.34 4.49 8.2 4.42 0 0.65 0 8.08 5.72 7.4 11.7 10.3 8.63 13.5 6.05 9.99 8.57 3.48 5.9 11 12.4 7.84 12.1 8.09 8.15 12.3 14 12.5 12.9 13.6 0 7.52 1.43 11.2 1.43 4.02 10.6 0 0 0.65 8.09 1.7 9.04 6.36 0 1.09 2.73 8.02 7.53 5.17 1.93 8.38 1.93 8.33 7.72 11 7.89 1.09 9.53 16.6 11.1 5.45 1.43 8.36 9.82 9.16 6.38 5.26 10.6 0 1.43 0 2.6 11.9 10.2 1.15 9.42 8.73 1.43 8.79 1.09 8.15 2.31 4.87 0 0.65 1.7 7.55 6.5 4.87 6.11 8.16 4.66 1.7 5.21 8.74 5.34 7.86 4.29 6.99 1.09 6.09 7.47 7.47 10.5 13.4 9.43 8.2 6.74 10.9 8.83 5.63 7.25 9.84 9.66 8.14 6.91 3.24 8.69 8.46 10.8 10.1 10.7 10.7 7.39 8.86 6.63 1.09 11.5 2.85 7.02 3.68 9.6 1.7 3.24 8.05 5.99 9.64 7.26 1.43 8.96 7.97 4.66 5.93 11.6 5.61 1.7 1.09 8.26 1.09 10.9 10.3 7.98 6.82 6.34 9.83 5.49 4.95 2.96 8.85 4.12 10.5 9.2 6.81 13.9 1.93 3.06 1.7 2.85 0 4.59 7.84 7.79 9.65 12.2 9.61 10.2 12.2 8.73 8.01 14.3 8.47 0 0 9.72 8.1 8.18 5.42 7.89 8.53 10.1 9.06 9.83 9.38 12.2 9.28 10.5 4.81 6.1 9.39 5.78 8.99 0.65 4.89 11.7 12.6 9.89 5.32 1.09 4.52 1.43 6.22 0 9.34 1.7 0 9.18 12.2 4.37 16.2 7.96 10.8 8.49 7.81 5.53 6.44 9.47 1.43 7 9 11.7 9.97 9.53 11.5 1.7 7.26 7.81 1.09 0.65 10.9 10.3 10 0 12.4 0 10.2 9.4 7.11 9.93 6.82 10.5 6.16 11 11.7 7.8 11.9 11.3 7.43 8.7 12.8 1.7 10.4 3.24 11 12 13.8 13.5 10.1 8.87 13.3 9.05 5 5.12 9.91 8.3 2.73 8.66 3.15 4.63 5.87 6.37 0.65 20.1 12.1 11.8 10.4 1.7 7.05 8.38 0 1.09 10.1 3.97 9.08 7.01 15.4 7.86 10.3 8.97 3.68 3.48 14.2 12.2 8.15 12 14.8 14.6 7.91 10.5 8.7 2.13 15.3 3.92 4.12 9.47 7.29 5.07 6.88 9.82 14.5 10.4 13.3 12.4 7.69 9.78 1.7 7.87 7.38 12.6 7.97 6.04 4.66 11.3 6.72 5.1 4.72 13.4 9.79 12.1 2.13 2.46 7.75 1.93 1.09 10 1.7 7.15 13.4 0.65 1.93 10.2 7.34 10.9 3.86 3.62 6.51 8.19 5.23 7.9 7.43 6.37 9.32 8.37 0 8.85 9.89 8.41 4.54 7.21 3.48 10.7 4.97 4.75 7.28 7.29 1.7 0 0.65 4.33 3.15 1.43 7.33 2.13 7.36 11.4 11.9 2.46 0 0.65 2.96 7.72 2.73 2.46 0 6.9 6.83 1.43 0 2.46 7.5 5.8 1.09 1.56 7.78 5.85 12 6.15 7.56 2.46 2.46 8.64 9.26 2.6 11.2 9.92 8 0.65 10.8 7.79 7.18 3.55 9.47 7.19 8.93 3.4 7.51 5.51 10.3 4.45 7.05 4.16 1.09 7.18 7.2 4.84 1.7 0.65 4.66 4.25 9.7 1.09 1.72 5.51 2.13 12.2 1.43 9.2 10.8 1.43 8.64 6.53 8.98 3.95 8.35 0.65 4.07 13.1 9.24 0 11.8 7.89 6.77 7.43 0 8.42 2.31 8.19 4.25 8.43 1.43 10.8 2.46 8.95 9.16 7.71 1.93 0 9.51 7.78 7.9 1.7 0.65 7.35 11.3 3.48 9.59 7.11 0 8.27 7.63 6.31 8.75 14.3 8.66 2.85 0 1.43 0 1.43 8.58 10.8 0 0.65 0 0.65 5.4 0.65 6.92 5.81 7.04 11.9 10.4 9.83 2.85 10.8 10.3 8.77 3.92 13.7 4.56 6.9 4.72 6.45 1.7 0 3.62 0 3.15 0 2.31 4.07 12.4 6.46 10.7 0 7.85 12.4 5.17 12 6.65 7.28 6.05 6.08 10.4 5.84 8.81 3.92 11.2 8.24 5.45 0 10.2 2.13 4.02 9.41 14.3 2.73 11.6 3.15 12.2 6.34 10.3 7.04 7.51 10.8 12.7 9.25 6.02 6.36 9.43 6.74 10.6 11.2 8.89 9.61 8.36 1.5 1.43 9.34 6.82 8.45 8.03 7.05 8.47 6.84 7.19 1.09 7.87 9.61 6.59 11.3 6.6 11 8.44 10.8 2.46 9.4 6.28 10.8 11 0.65 11.6 3.24 9.12 9.14 7.25 8.65 9.68 8.83 11.9 10.6 8.04 10.1 8.9 8.27 10.9 8.79 8.05 8.51 10.6 9.26 0.65 8.92 8.85 0 8.11 5.75 6.76 16.1 8.23 2.73 9.03 8.32 10.1 8.98 9 10.9 9.27 9.32 6.38 10.4 5.81 5.12 10.1 0 8.56 9.57 9.82 10.5 9.07 1.43 11.6 9.12 14.1 10.1 9.37 10.4 6.44 11.2 7.65 12.7 11.5 10.3 8.94 7.39 11.9 12.4 8.88 0.65 6.93 8.69 4.33 0.65 3.74 6.67 8.38 10.9 9.87 3.15 2.85 11.7 7.83 9.45 6.72 10.3 11 0 0.65 0 9.95 10.8 9.51 9.04 3.48 2.73 0.65 4.78 12.1 12.5 8.59 7.91 7.54 3.55 8.86 0 9.34 7.11 9.72 9.52 8.23 9.35 11.5 0 11.5 6.95 8.92 2.6 0.65 6.1 9.7 9.63 9.62 9.74 8.93 8.31 8.69 8.58 7.99 3.68 10.2 8.11 9.18 12.1 4.07 7.99 8.73 9.83 10.6 6.32 9.36 6.09 10.6 9.33 1.43 8.22 6.05 8.99 12.5 10.5 10 10.2 9.09 2.85 9.04 11.2 11.1 2.24 8.89 8.62 9.88 8.66 9.81 10.8 7.92 8.6 9.57 9.36 7.56 7.33 9.76 10.1 3.62 10.7 7.59 7.79 9.1 10.2 3.48 8.07 5.31 7.32 6.91 8.79 0 9.85 5.58 10.7 5.68 0.65 5.56 9.42 9.9 6.69 7.93 9.35 10.1 7.82 2.73 0 9.1 10.2 10 4.72 9.4 7.04 10.2 9.16 5.19 9 9.71 5.12 9.12 2.96 8.98 11.6 9.89 9.56 9.28 7.92 9.94 2.46 2.13 2.85 0.65 9.18 12.3 10.4 7.59 9.7 10.6 9.25 11 9.21 8.78 9.43 9.47 10.2 8.79 9.88 11 9.56 10 12 11.1 7.33 8.99 9.51 10.5 8.63 9.59 8.22 6.28 7.25 3.15 10.2 8.21 10.5 9.89 9.25 7.18 11.4 11.9 11.1 10.6 9.74 13.2 5.03 9.06 11.8 10.1 9.97 10.3 9.67 5.83 11.2 11.8 2.31 9.93 5.34 2.13 8.6 8.71 9.17 10.3 2.96 10.8 10.9 10 6.65 8.74 9.57 3.06 8.7 7.13 9.99 10 9.92 9.24 8.27 7.8 7.15 5.8 7.52 4.52 8.68 11.5 7.26 3.24 9.95 7.49 9.49 10 10.5 9.35 10.4 7.29 10.3 8.47 10 9.36 0 6.17 9.1 4.59 5.69 9.97 9.21 6.95 2.85 8.47 8.78 7.8 11.3 11.6 8.61 9.17 7.55 4.52 7.47 8.14 9.51 9.47 8.89 6.99 13.4 9.13 14.3 0.65 9.73 2.6 4.25 9.93 7.47 8.93 9.78 9.91 9.56 9.23 10.8 8.32 12.4 10 10.4 4.37 8.24 9.59 3.55 7 9.4 8.9 9.42 6 7.56 8.14 10.6 8 9.53 9 9.24 9 10.1 8.81 3.97 11.4 9.19 11.1 10 7.46 8.8 9.3 8.93 9.47 8.69 7.9 9.19 9.84 0 9.16 11.4 8.46 8.71 8.41 3.15 16.4 10.3 9.98 11.1 10.4 8.8 9.29 8.41 9.76 1.43 8.77 7.5 7.97 8.78 11.6 7.21 12 9.04 10.8 10.4 9.68 8.54 9.3 8.51 9.16 6.9 11.2 8.48 9.62 10.9 11.9 11.5 9.76 8.78 8.01 7.94 11.2 9.67 8.52 8.86 4.07 8.27 10.8 8.7 9.22 8.64 8.89 9.42 9.04 10.6 5 10.2 8.89 10.1 3.55 3.8 6.05 0 10.5 2.31 9.27 11.8 6.55 5.75 9.02 1.43 5.34 8.94 0 7.1 2.73 8.24 11.4 9.44 8.19 10.7 11.6 11.7 6.88 9.11 5.56 2.31 9.81 10.1 7.65 9.7 11.3 5.3 3.4 9.84 10.6 12.3 8.49 9.63 12.6 10.6 10.9 10.9 0 10.7 11.5 8.38 8.46 8.69 9.96 8.4 1.93 11.7 11 8.2 4.57 9.24 0 9.99 8.75 7.42 7.83 10.8 9.69 9.33 9.3 11.5 9.62 8.83 11.9 9.84 8.21 0 1.7 13.9 8.09 9.6 12.6 9.58 9.45 8.58 3.32 11.4 11.7 8.75 0.65 6.45 9.56 7.1 1.7 9.5 12.3 10.8 9.97 0 8.23 1.09 1.7 8.74 11.1 8.87 11.2 1.7 6.24 8.53 6.86 9.23 9.52 12.5 10.6 11.2 10.1 10.2 1.95 11.6 0 7.75 10.1 0 3.92 11.7 1.09 10.2 9.73 9.34 1.09 10.8 9.84 10.5 10.9 11.7 6.93 8.44 7.91 10.1 3.74 9.25 8.73 8.72 10.3 10.8 1.93 9.94 9.56 10.1 10.8 8.73 8.26 8.02 3.92 6.19 10.1 8.53 9.3 2.6 0 4.37 7.64 9.88 2.85 9.64 8.77 0.65 10.8 4.12 8.6 4.16 10.6 10.5 12.2 9.88 9.25 7.5 5.1 13.7 2.46 9.8 8.81 8.26 10.7 9.2 11.5 9.28 2.6 6.79 3.86 11.6 2.85 11.6 9.48 10.8 10.9 12.8 11.5 10.6 11.5 9.11 7.17 10.1 8.16 1.7 8.73 2.96 2.31 13.2 9.43 1.7 10.6 10.6 12.3 11.6 0.65 3.15 8.81 4.29 6.04 4.97 10.3 9.76 9.13 0.65 8.8 10.6 8.84 7.11 4.81 11.9 9.89 0 6.86 3.97 2.53 6.93 0.65 6.16 2.13 9.32 0.65 7.05 2.31 7.16 7.59 6.52 6.11 7.33 8.91 2.13 7.44 0.65 10.4 9.14 5 9.75 2.13 10.8 15.4 9.19 9.86 0 17.8 11.4 11.4 12 5.44 2.31 1.93 4.07 2.85 7.93 11.6 4.59 2.04 7.04 6.31 11.3 5.53 0.65 3.8 8.31 10.7 9.57 0 6.83 1.09 8.75 6.66 8.35 3.15 9.96 3.4 11 8.99 3.74 5.54 15.1 4.16 3.24 10.9 3.86 6.88 7.26 5.07 3.62 0.65 7.99 10.8 8.35 8.59 3.32 6.02 7.18 8.14 0 5.28 8.96 0.65 0.65 8.24 0.65 0.65 11.8 7.38 3.48 4.44 1.7 0 2.46 8.03 5.19 9.94 7.03 6.28 8.51 2.31 13 0.65 7.19 12.8 7.23 10.2 5.88 6.67 4.45 8.52 4.63 10.7 1.43 0 2.13 9.04 7.79 0 3.62 2.73 7.39 0 7.92 6.79 4.16 4.49 0 8.53 0 7.53 0 11 4.87 5.32 8.43 4.75 7.27 7.25 7.39 8.19 4.66 1.43 2.6 4.07 5.61 9.07 5 8.29 5.03 7.69 1.7 8.06 9.88 4.66 9.07 4.56 8.6 6.52 8.8 5.75 0 2.13 1.09 0 0 4.52 7.46 1.7 8.34 3.24 0 1.09 1.7 4.52 2.46 1.7 3.15 7.81 2.96 7.84 4.21 3.8 2.31 1.09 6.01 4.59 0 2.85 0 9.58 9.74 12.1 5.74 0 11.9 11.3 7.77 9.42 0 8.63 13 7.86 6.69 9.31 5.32 5.15 4.89 2.96 10.3 10.1 12.3 1.43 10.9 3.48 11.9 7.4 10.9 9.4 6.2 7.48 5.91 0.65 11.4 9.51 9.99 6.93 9.64 0.65 10.8 11.6 6.61 2.46 6.69 10.6 9.42 9.25 6.61 3.92 12.7 7.45 1.09 11.6 9.32 9.44 1.43 11.3 7.58 2.6 9.85 7.64 10.9 12.4 13.5 8.81 9.19 8.7 12.6 8.33 9.97 4.45 9.95 5.07 8.23 8.54 9.38 8.65 10.2 0 8.12 2.6 9.25 10.6 12.1 9.09 13.7 12.6 9.19 3.06 6 9.45 8.21 8.79 8.26 7.03 7.54 10.9 4.66 2.13 3.06 7.45 9.39 10.4 7.63 17.7 12.1 8.78 9.81 8.58 4.81 8.92 8.64 1.93 9.63 3.86 7.52 12.6 8.9 6.93 10.3 9.45 9.07 3.86 11 10.7 10.7 1.09 7.05 7.76 9.3 6.17 8.41 3.62 10 5.15 5 1.09 8.35 0 9.1 0 0 3.92 13.6 9.87 5.44 9.56 9.98 9.14 7.2 8.26 7.34 9.59 9.09 9.57 7.71 6.81 6.87 9.26 9.83 6.78 8.1 12.4 6.95 9.23 11.2 6.51 6.86 10.2 8.53 7.81 14.7 9.89 9.03 6.95 8.67 9.31 8.98 9.53 9.16 9.95 8.41 9.83 7.78 11.6 7.6 9.62 7.66 11.4 9.18 11.4 5.32 1.43 9.3 12.1 4.37 10.9 7.92 10.7 8.37 11.8 0.65 10.1 5.42 9.24 11 9.11 9.58 11.2 3.4 9.48 1.93 2.03 3.55 8.06 10 6.57 1.93 1.09 5 9.8 8.8 9.38 0.65 9.19 6.54 7.67 6.05 2.6 8.44 9.96 8.38 7.07 0.65 6.75 3.74 9.62 10.1 8.86 10.1 9.46 9.25 9.04 12.3 10.9 10.9 9.3 13 0 9.99 8.41 10.3 9.81 9.27 10.7 9.52 8.32 0 10.6 7.09 11 11 0.65 8.97 4.63 8.83 10.1 11 7.68 10.5 8.29 9.05 9.01 10.8 12.5 5.66 3.48 7.48 10.5 7.79 6.61 4.16 8.24 1.93 9.15 7.64 3.86 0 11.4 11.7 6.7 6.92 9.38 4.07 10.1 11.9 9.67 5.86 11.7 6.97 8.4 10.4 4.33 9.67 4.02 10.2 8.11 8.75 1.93 8.55 9.91 1.7 9.23 9.49 8.95 9.06 11.6 1.93 10.2 2.73 7.28 6.18 11.3 10.1 11.2 8.46 4.33 9.68 3.06 3.86 1.09 2.6 0 5.34 9.52 8.21 8.43 5.57 10.4 8.21 1.09 6.97 10.8 8.87 8.66 8.92 6.23 8.41 8.99 10.7 8.1 10.2 6.8 3.8 14.1 10.8 10.4 0 11.5 0 7.81 8.9 9.98 4.21 8.56 9.54 10.5 1.12 10.4 8.99 10.5 9.91 10.9 6.73 10.9 9.96 2.31 10.3 11.5 6.29 11.9 9.89 11.1 2.13 10.7 4.16 10 10 7.62 10.9 5.86 7.24 5.6 9.92 7.05 9.18 9.44 11.3 10.2 9.25 9.49 8.67 8.97 11.1 6.34 3.55 0.65 10.8 0.65 2.84 7.07 9.02 1.43 10.9 0.65 6.76 9.82 4.02 10.5 3.06 7.69 0.65 11.5 12.3 7.89 2.46 2.46 2.74 6.23 6.42 8.53 12.2 2.13 7.62 5.96 0 9.34 5.03 10.1 10.1 7.62 5.6 8.76 6.73 0 0 11.8 9.97 4.87 0 6.76 0 12.3 8.59 8.28 8.63 11 0 10.8 8.21 8.37 10.8 1.43 1.7 7.4 7.75 4.97 8.7 10.1 13.9 9.76 10 10.1 4.29 6.64 8.77 0 0.65 9.54 0.65 8.31 6.16 6.92 10.7 5.91 6.02 10.5 8.99 7.4 10.1 2.6 9.52 0.65 4.12 10 6.6 9.52 11.2 13.2 9.5 3.68 1.43 9.75 10 12.3 0 4.33 9.83 6.38 5.56 3.55 7.35 8.15 4.37 9.07 3.15 13.3 1.43 6.64 2.31 3.62 10 9.32 0 0 10.5 9.68 10.5 12.2 9.08 8 6.91 5.32 0 8.18 4.95 6.94 2.13 3.32 10.6 0.65 6.64 1.93 6.03 8.2 10.3 4.25 8.46 11.6 5.65 4.45 0 5.65 7.75 3.68 3.32 9.53 10.6 0.65 9.04 2.31 7.32 7.49 9.82 11.3 8.37 11.9 7.46 2.73 2.31 11.3 4.45 0.65 11.4 0.65 0.65 0 4.81 10.6 7.43 7.44 12.7 10.2 1.93 7.55 9.22 8.06 9.98 3.92 5.56 7.24 5.72 12.1 9.31 8.01 8.58 9.16 10 10.7 9.88 8.02 4.66 0.65 7.49 9.82 3.74 1.43 3.86 3.55 10.6 12.3 8.53 8.3 0.65 0.65 10.1 3.92 1.09 9.78 8.08 9.32 1.09 7.87 2.13 9.14 8.97 3.62 9.87 10.9 2.46 9.99 9.66 10.5 9.72 3.32 11.9 10.9 8.09 11.6 11.6 8.25 10.1 9.39 9.53 0.65 1.7 12.2 6.9 10 9.2 2.73 3.62 10.2 10.8 2.46 3.24 8.62 12.3 9.84 9.27 0 10.3 8.97 8.94 11 2.46 7.31 10.6 7.34 0 10.1 13.7 9.92 9.59 15.5 1.43 11 9.68 10.2 3.32 8.45 10.7 5.07 10.1 12.1 10.4 2.46 5.58 9.92 13.5 2.13 7.72 12 12 0 2.31 6.42 10.8 9.64 1.43 8.81 7.96 3.32 11.3 1.93 0.65 11.7 1.09 7.39 9.25 10.5 10.3 10.4 11.1 14.3 12.9 10.5 2.46 8.83 4.72 2.13 10.3 9.64 7.87 12.6 8.18 7.84 4.72 2.6 7.01 2.13 0 2.31 2.6 8.54 3.86 6.7 0 7.41 1.7 1.7 10 1.43 6.57 9.77 1.93 4.33 15.3 1.43 4.69 2.85 2.31 7.16 9.5 8.58 12.1 8.96 1.09 2.96 3.68 5.15 0.65 9.92 3.48 7.83 7.67 8.02 0.65 5.68 7.15 0 5.44 4.81 7.5 6.77 8.42 3.92 2.85 2.46 9.25 6.26 10.7 3.92 0 3.24 1.09 1.93 1.09 1.7 9.04 1.09 6 4.37 8.46 1.7 8.29 5.79 0 3.51 2.31 9.92 3.24 2.85 0 7.22 0 6.15 4.63 2.6 9.8 10.3 8.57 4.75 0.65 1.09 4.63 6.37 2.73 6.96 1.7 0 3.33 10.8 4.16 6.42 9.67 4.44 9.1 4.97 10.1 3.68 9.28 2.73 2.6 2.6 8.46 8.01 0 2.73 5.12 9.41 8.3 4.29 1.43 8.18 10 0 5.53 8.88 2.13 6.27 6.55 6.72 0 9.14 5.86 2.46 2.31 1.93 8.01 7.68 0 3.15 0 11.5 1.7 13.6 8.1 10.1 8.67 9.2 3.62 8.59 7.82 6.44 0 2.6 6.65 2.31 0.65 5.8 2.13 9.13 0 4.33 0 4.81 2.31 6.89 7.8 7.51 7.45 0 5.15 1.09 3.8 2.31 2.73 12.5 1.7 6.76 6.77 4.95 6.08 0 5.26 2.13 1.09 7.87 0.65 2.85 1.09 10 6.67 4.52 4.07 9.07 0 1.43 0 5.05 0 4.02 0 7.3 6.17 6.6 2.85 6.92 0 4.75 1.93 7.95 0 3.32 1.7 4.52 1.09 6.61 0 0 2.73 0.65 7.59 0 5.36 3.62 8.11 8.49 7.61 3.8 9.67 6.65 0 0 0.65 4.14 0 8.72 10 8.18 6.52 9.26 1.7 7.11 0 3.86 5.86 6.19 5.63 9.78 7.3 7.98 0 5.03 7.94 8.52 4.78 8.02 7 0 9.7 0 5.4 10.1 9.89 5.38 8.99 3.92 7.32 0 1.7 10.8 2.31 7.97 6.82 0.65 4.09 3.62 8.4 8.46 0.65 8.31 0 7.88 3.06 1.09 2.85 4.87 7.55 5.34 9.44 1.43 2.46 8.39 0.65 4.63 9.17 6.86 5.4 7.98 0 6.55 0 10.3 4.63 2.73 7.88 4.25 1.99 8.93 0.65 3.24 7.46 6.44 1.65 5.66 2.31 0 3.97 3.32 3.06 1.09 9.02 7.96 1.7 11.8 5.75 10.3 4.95 1.43 1.43 9.72 0 9.73 9.33 8.85 3.55 0.65 7.19 1.7 0 7.4 9.5 9.25 8.47 0 6.76 10.4 8.94 8.02 0 0.65 0 7.56 0 0 5.05 4.72 3.86 7.11 3.15 3.48 9.62 11 11.8 10.7 11.9 13 13.6 14.3 13 4.81 4.07 11.4 10.6 10.5 0 0 7.7 10 10.7 11.7 10.1 11.5 15.4 13.4 9.95 8.97 8.8 0 7.8 6.34 9 0.65 10.7 8.52 11.5 12.2 11 10.3 9.13 11.2 7.96 6.94 7.72 10.1 4.92 10.5 11.1 9.43 0 7.18 9.96 9.84 10.3 10.3 11.5 6.64 12.9 0.65 2.6 10 1.09 7.68 0.65 9.78 4.21 8.44 11.5 2.13 9.3 6.69 9.43 9.5 13.9 5.66 9.53 10.1 10.6 8.83 9.23 10.4 8.41 8.84 10.7 6.24 10.5 11 9.18 10.5 5.65 11.6 8.7 7.89 8.14 9.51 7.19 9.53 9.62 6.54 9.36 10.4 11.1 11.7 9.42 9.83 7.68 9.89 0 8.33 5.77 6.45 0 9 10.3 5.42 10.2 1.7 1.09 7.91 5.21 10.6 3.8 2.6 6.48 4.77 0 1.09 3.68 12.4 10.7 2.13 14 2.6 10 12.2 10.5 9.39 10.4 11.3 8.17 10.5 10 0 4.33 4.21 6.66 2.6 7.77 0 3.4 9.8 10 5.54 9.49 9.32 7.37 7.57 10.9 8.63 8.87 7.64 7.05 9.86 9.9 12.1 10.8 9.88 0 10.6 9.09 9.68 9.74 10.1 0.65 9.04 7.5 3.06 10.1 10.4 0 10.1 11.1 2.46 9.73 5.6 11.4 0 3.06 7.53 4.07 5.6 4.12 11.8 5.21 4.95 0.65 6.59 0 7 8.73 0 4.21 10.3 12.5 10.2 3.8 10.5 8.55 9.01 9.09 10.5 10 10.2 2.93 11.2 1.43 9.06 5.79 12.9 8.16 6.22 9.46 10.2 3.48 8.88 4.45 9.31 9.63 7.81 9.21 9.09 8.9 10.8 8.33 5.81 12.3 8.56 11 12.9 8.74 8.65 2.73 4.78 7.14 1.09 11.1 7.19 8.95 1.09 4.45 8.2 8.75 13.4 9.01 9.28 1.93 11.9 8.29 14.4 4.52 11.7 11.4 1.93 9.47 6.15 10.9 9.49 4.16 12.2 5.96 8.05 6.47 9.67 11.5 7.87 9.42 11.2 10.4 0 9.58 5.28 10.2 5.32 0.65 7.38 7.38 13.1 7.85 0.67 12.6 0.65 9.75 9.67 6.54 4.56 6.61 9.34 3.15 5.98 5.74 13.6 10.7 11.5 0 2.46 0.65 8.03 6.74 0 8.28 10.4 10.5 12.9 11.6 13 11.8 12.6 5.38 12.9 12.4 11.4 9.6 10.5 0 3.55 6.16 8.28 11.1 8.78 8.72 3.68 0.65 0 1.43 8.88 15.2 10.6 6.49 8.49 1.43 10.7 10.8 10 3.92 13.2 14 12.2 4.45 6.55 11.4 12.3 15.9 9.05 10.7 12.5 2.73 1.43 10.4 4.21 2.31 4.41 4.37 9.79 0.65 8.61 9.36 6.37 10 3.68 2.96 10.8 5.3 9.14 8.67 5.15 8.76 10.2 12.4 5.81 9.94 9.27 10.4 13.4 8.61 11.2 8.72 7.29 4.02 10 12.5 3.86 9.16 16.6 18 17.1 10.9 8.68 12.3 6.88 5.18 10.7 10.5 0 9.2 5.84 9.07 3.32 12.4 12.3 11 6.7 5.91 11.7 14.8 13.8 7.36 13.4 2.6 6.47 5.03 7.61 9.55 8.88 10 11.7 8.8 10.5 11.2 12.4 12.1 12 14 11.3 15 4.49 9.03 10.8 12 7.65 10.9 11.4 7.65 5.03 9.13 4.95 4.49 2.13 10.1 0 10.3 0 9.3 12 8.53 13.6 11.6 13.3 11.5 12.2 11.4 11.3 10.1 13.2 0.65 12.1 12.9 0 1.43 0 11.3 9.67 2.13 2.46 1.09 0 1.43 1.43 6.34 1.93 0.65 8.35 4.12 4.33 2.6 2.13 1.7 1.7 2.13 0 1.43 7.32 0 1.09 9.6 4.56 9.06 18.3 9.54 15.3 10.4 14.5 15.2 9.16 10.9 0 16.1 0 8.62 2.31 9.02 10.9 9.66 11.1 3.86 11.7 2.6 0 9.39 10.4 11.9 9.92 10.8 9.75 9.09 8 5.68 5 13.2 10.8 7.59 7.22 10 11.2 12.1 15.1 11.3 5.42 8.44 11.3 14.7 9.73 5.68 5.23 14.3 13.7 13.9 3.62 4.68 14.8 4.16 15.2 13.5 3.4 12.1 11.6 9.04 10.8 6.08 5.12 13.2 11.7 8.28 17.6 1.09 0 3.55 0.65 0 1.7 8.35 7.01 12.1 10.9 10.4 1.09 2.46 16.5 1.45 0.9 6.79 12 1.93 5.1 0.65 7.15 5.21 2.31 9.11 0 0 4.02 0.91 6.29 7.79 6.47 0.65 3.86 2.85 5.56 3.55 3.06 0.65 6.28 6.1 9.13 11.2 0 7.91 7.55 7.01 9.02 9.18 8.84 7.67 10.4 10.1 8 8.04 6.17 7.7 7.33 1.43 4.07 11.7 0 1.7 8.73 6.87 1.09 6.38 4.81 7.75 0.65 4.56 2.6 6.11 1.7 10.1 5.87 0 7.44 8.64 1.93 6.86 12 7.97 0.65 0 0.65 2.31 7.82 4.16 3.55 0 0.65 10.7 4.49 6.62 0 0.65 1.93 4.87 1.93 8.07 0 0.65 6.61 1.7 11.4 4.16 10.6 9 6.02 2.61 2.73 3.55 2.31 4.89 0.65 1.09 3.4 0.65 2.6 3.92 5.8 6.99 0.65 6.67 17.1 3.97 1.44 0 8.46 0 13.2 13 9.13 10.6 1.09 10 1.09 3.15 0 13.7 10.1 4.78 7.46 9.38 1.09 8.33 0.65 0 7.02 13.7 7.36 0.65 16.1 4.45 3.95 1.7 0.65 7.04 0.65 7.93 9.41 12.2 0 5.78 9.49 0 10.5 13.4 3.24 7.94 3.15 0.65 3.4 3.55 12.2 4.25 16.3 1.09 0.65 4.41 4.41 3.55 0 0 2.31 1.7 2.13 1.09 8.53 11.6 1.09 8.27 4.95 0 9.05 8.43 0.65 1.93 10.8 2.31 9.47 5.45 0.65 1.93 1.09 2.73 1.7 0.65 2.13 4.41 0 4.07 2.85 4.49 0 0.65 3.06 9.23 0 9.57 2.73 5.52 10.9 13.1 0 2.13 1.7 4.12 9.42 11.3 4.37 4.81 18 4.29 3.62 6.78 3.62 9.07 7.15 3.48 8.87 12 8.91 0 11.3 9.89 4.66 2.13 14.3 11.3 0.65 6.66 14.9 0.65 7.15 8.3 4.56 0.65 3.92 6.47 1.09 8.35 11 4.07 10.4 3.92 0.65 3.15 1.7 0 8.48 8.42 11.2 8.82 12.7 5.96 7.41 5.61 7.09 7.77 12.2 5.9 2.02 8.01 0 0 7.46 8.37 0 0 5.56 7.12 5.49 2.73 4.33 0 10.1 8.38 11.1 7.71 0.65 2.31 11 10.6 12 2.85 3.24 6.49 7.8 6.23 10.9 0 1.43 8.86 10.5 8.23 6.59 5.54 6.47 1.43 0 9.18 3.48 1.09 1.43 8.22 10.7 2.13 8.88 0 1.43 4.95 2.6 11.6 1.39 6.95 12.6 12.5 9.96 5.51 8.18 8.4 3.62 8.5 7.43 1.09 4.69 9.89 11.8 11.8 0 10.6 9.06 9.76 6.19 11.8 6.74 5.32 8.35 7.11 1.43 5.6 10.5 10 12.1 8.69 1.43 7.59 9.47 8.68 7.64 9.82 15.6 7.16 1.09 11.8 0 12.1 7.07 3.48 12.5 9.86 9.01 9.22 10.2 14 9.4 11 3.55 8.65 8.96 11.3 11.5 9.54 7.19 4.75 9.79 4.21 4.69 5.63 6 11 9.04 12.1 4.41 2.13 7.5 9.02 6.04 9.08 6.93 12.8 9.44 11.6 6.78 6.24 12.6 11.6 0 6.61 0.65 15.7 16.3 16.1 14.2 16.1 6.07 12.1 9.58 12.5 7.99 7.05 7.94 12 4.47 12.3 6.84 11 6.98 6.53 11.1 8.45 11.1 12.1 12.6 12.2 8.01 2.31 13.1 9.53 11.8 0 3.06 6.33 3.48 1.43 2.73 1.43 11.6 6.25 7.97 1.09 5.07 10.4 6.9 0 3.48 0 0 5.86 0 1.93 4.29 3.97 5.77 9.24 9.2 0 1.93 7.46 6.47 8.57 1.7 6.79 4.45 2.85 13.2 4.76 1.09 4.59 5.55 3.4 3.86 0 7.66 0 7.42 6.95 13.7 4.02 5.69 6.79 12.4 0 7.69 7.64 0 3.06 4.16 5.23 7.78 7.15 5.22 1.09 1.96 0.65 0.65 7.85 8.89 5.71 3.06 6.37 8.17 0.65 7.42 0 3.06 0.65 0 2.48 2.46 7.41 2.13 8.07 5.17 8.94 5.11 8.46 0 8.82 11.9 3.63 0 4.41 3.15 9.22 11.6 1.09 9.67 0 1.09 4.45 5.4 1.09 0 7.28 10.4 4.07 2.6 0.65 0 9.46 5.47 5.86 7.66 1.93 11.3 0.65 2.13 2.13 3.68 5.1 0 0.65 0.65 7.62 6.83 0 8.96 10.2 7.37 8.65 3.32 7.93 2.13 12.1 6.8 3.55 0 10.4 14 3.15 11.2 1.7 1.43 0.65 11.6 0 1.93 3.06 0 10.7 11.4 6.41 1.93 2.31 1.43 3.55 16.9 9.68 5.8 6.43 10.3 10.2 11.4 9.27 9.24 8.88 10.4 4.45 10.1 10.7 8.32 1.7 0 14.3 7.59 0 8.74 7.48 0.65 12.7 6.63 4.02 9.67 0 5.77 3.4 2.46 1.7 2.13 10.2 2.31 0.65 4.66 8.6 4.25 7.44 13.9 6.42 9.78 1.93 0.65 4.75 2.85 5.12 9 9.11 1.7 3.55 1.7 4.37 4.07 7.62 4.78 5.42 4.92 2.73 2.13 5.36 1.48 2.85 8.58 0.65 1.09 8.45 2.31 1.7 13.1 1.09 7.26 3.15 1.7 8.23 1.09 5.63 5.54 2.31 8.04 6.84 5.34 3.8 5.86 10.7 4.92 5.4 4.07 8.41 3.86 1.43 12.4 2.31 7.14 9.22 5.96 6.25 7.3 4.92 6.93 0 2.31 3.74 7.9 6.68 11.2 9.15 1.09 9.71 0 6.29 7.72 2.13 7.68 5.96 9.75 9.5 1.09 8.95 1.09 5.91 9.32 5.38 9.34 8.65 2.6 1.7 8.83 11.9 7.3 5.74 3.32 0 4.12 5.32 4.37 2.73 7.73 0 6.22 5.69 0 3.06 8.15 9.26 8.22 3.2 12.2 7.37 6.77 10.7 0 0.65 5 3.62 6.76 0.65 0.65 4.37 1.09 7.7 0 4.16 0 0 5.28 1.09 8.31 4.02 12.9 9.22 4.72 1.43 0 1.93 6.37 0.65 3.48 2.96 5.21 0 7.04 8.02 8.31 2.46 7.94 9.48 7.42 7.82 9.49 0 9.04 0 8.86 0 8.29 7.68 11.2 13.6 4.49 0 9.9 13.7 11.7 0 1.7 3.74 9.5 7.7 12.3 0.65 12.7 8.25 10.5 8.81 7.11 9.86 9.68 6.99 0.65 13.6 8.89 8.08 12.4 3.24 0 10.9 10 5.53 9.88 4.92 7.04 13.7 13.1 14.1 9.32 8.21 9.64 0 4.07 7.55 9.55 0 9.07 7.15 10.5 8.02 11.4 4.78 12.1 5.15 12.1 4.45 12.4 11 0 2.75 9.29 5.65 8.82 8.23 9.7 1.43 1.7 1.09 11.8 0 7.5 7.9 6.44 11.8 0.65 8.73 4.66 10.2 0 1.43 5.65 10 10.4 13.7 6.29 3.55 5.99 7.73 0 0.65 6.27 8.46 6.6 6.2 6.04 8.06 1.43 4.75 9.51 0.65 6.93 6.61 0 6.77 1.43 3.62 2.73 3.62 2.13 6.33 5.05 3.92 8.36 2.46 10.4 7.52 0 1.09 12.4 3.03 3.32 0 4.89 7.82 6.99 0 5.4 0 5.14 0.65 1.09 1.7 2.46 0 11.2 1.43 6 0 5.21 0 6.8 0 7.73 4.53 6 5.03 5.36 5.87 8.85 0 7.42 0.65 0.65 7.49 4.37 9.73 1.93 1.7 4.37 4.07 9.41 6.21 2.6 9.13 0 0 1.26 1.43 5.42 5.07 3.06 3.8 6.91 5.95 0 4.49 6.62 9.39 8.79 1.09 3.48 2.96 8.94 0 1.43 7.43 1.93 6.79 8.34 4.52 9.4 0 6.73 9.98 13.7 0.65 12.2 3.8 10.6 7.04 7.55 12.5 2.46 3.86 4.02 3.8 11.9 0.65 4.69 8.6 9.81 10.5 13.1 8.8 9.55 3.48 10.7 8.35 11.7 5.44 9.26 12.5 11.4 3.23 2.13 0 4.52 11.1 7.33 8.58 10.6 4.75 3.86 5.3 5.3 9.23 5.1 11 3.24 11.1 0.65 10.4 11.1 12.2 2.31 6.91 5.86 3.68 5.45 9.55 10.2 7.44 5.49 9.26 10.3 9.75 10.6 10.5 9.96 5.03 7.57 0.65 10 8.51 0 3.24 12.3 8.32 9.38 2.13 3.55 8.11 10.7 10.8 10.6 8.39 12.1 8.94 12.3 13.1 3.74 6.54 9.63 11.6 2.85 8.47 1.43 10.9 9.9 7.46 5.68 11.4 1.93 5.94 6.09 7.66 0.65 9.44 7.92 1.93 10.6 5.07 1.72 11.2 7.95 0 9.72 8.03 10.8 0 12.7 11.5 2.31 9.99 11 10.4 7.17 8.61 4.72 2.73 0 12.8 8.23 10.2 8.94 10.1 8.57 10.5 11.9 2.85 4.02 11.2 0 11.6 13.3 11.4 10.4 9.27 8.08 9.06 11.5 9.15 8.97 6.53 6.9 11.2 9.18 3.55 5.88 8.08 4.81 7.75 8.91 9.12 9.17 11.7 9.79 1.7 0.65 9.83 11.5 8.77 9.2 1.43 8.67 7.33 6.77 5.8 6.73 12.8 10.2 2.6 3.15 11.8 5.03 10.8 6.91 14.2 11.6 11.7 6.88 11.1 9.52 7.45 9.49 13.5 10.1 2.13 8.4 5.3 8.44 6.67 10.4 2.6 8.98 5.12 8.57 11.8 8.35 10.3 9.82 4.89 2.96 3.62 11.5 10.6 8.11 7.29 1.09 6.62 0 0.65 0 7.94 15 5.12 9.65 4.37 11.7 1.09 1.09 7.58 10.8 14.6 6.55 8.04 3.86 8.99 0 10.2 10.3 0.65 10.7 4.25 12.8 10.5 10.3 3.4 3.15 9.9 1.09 1.93 13.5 8.27 6.47 7.22 6.89 5.98 0 0 10.6 9.46 0 6.97 7.32 6.35 9.61 1.09 0.65 2.31 1.7 5.65 3.24 7.68 2.6 4.66 3.06 6.73 6.3 5.36 8.62 9.72 4.03 6.76 0 5.38 6.31 0 11.9 6.47 1.43 6.22 2.46 8.54 8.36 11.5 3.92 0.65 0.65 8.62 9.66 4.25 2.85 3.24 1.7 0 2.46 5.9 11.3 0 0 6.2 8.06 7.3 7.62 12.3 0 6.15 3.8 6.59 7.89 3.39 4.63 8.63 5.88 0 5.42 7.27 8.13 1.7 4.17 6.25 0.65 4.81 7.36 3.2 0 0.65 0 0 2.13 1.09 2.6 5.66 0.65 4.92 5.63 5.74 2.31 0 2.85 9.21 9.82 0 0.65 0 0 0 1.43 7.01 0 0 6.34 4.89 1.7 5.9 12.3 3.48 8.16 8.88 1.09 8.65 11.4 14 8.67 3.48 8.05 5 0 9.96 11.6 6.28 7.91 12.9 1.09 3.32 5.61 6.73 1.43 3.48 11.4 13.3 8.23 3.36 7.84 6.44 13.6 10 9.76 8.01 8.19 12 9.07 9.68 10.7 3.62 3.4 1.43 8.63 11.6 7.94 12.9 10.1 14.1 7.14 10.8 1.09 5.72 5.15 0 1.09 0 11.2 9.54 2.73 10.5 12 17 5.86 13.9 10.2 7.38 9.44 1.09 7.85 13.8 10.5 0 12.1 6.78 9.99 8 10.3 5.49 4.37 7.57 4.07 10.9 6.76 7.98 7.68 8.83 0 9.41 8.55 13.5 11 12.2 10.7 12.1 3.68 11.2 2.31 1.7 10.3 11.7 9.86 12.6 0 5.81 9.42 10.1 3.97 0.65 8.6 5.95 6.69 8.26 13.2 5.26 11.5 11 10.3 12.5 10.5 11.2 11.1 10.6 9.77 6.76 10.5 11 10.9 10.3 10.9 9.31 10.6 10.9 11.3 10.3 11.5 11.3 12.7 11.8 9.99 11.9 10.4 8.63 12.4 10.8 12.1 10.6 11.5 11.2 11 12.2 9.79 10.7 10.6 9.26 10.8 13.6 11.4 8.03 0 5.47 7.56 6.49 6.79 0 1.93 1.7 1.09 12.4 7.72 4.69 6.75 4.33 9.38 12.4 13 9.58 1.43 9.72 6.03 1.7 10.7 9.42 4.29 3.55 13 0.65 11.3 10.1 9.82 11.6 11.1 9.96 11.8 11.7 10.3 9.04 10.2 8.41 8.59 9.82 12 0 9.25 10 10.2 8.28 1.09 11.6 12.8 3.06 9.6 10.6 7.31 10.8 6.95 3.48 9.03 4.81 1.93 7 9.18 11.3 12.6 10.1 11.6 11.6 11.7 15.9 1.09 9.82 12.5 3.15 5.73 9.37 9.66 8.46 8.36 10.3 7.1 7.76 3.55 0 9.02 2.96 9.06 6.93 9.72 1.93 12.7 5.61 1.7 12 6.94 4.33 2.31 0.65 1.7 7.81 10.2 9.72 0.65 11.8 7.89 4.12 8.65 4.89 6.58 7.93 12.2 10.1 11.4 10.5 10.5 0 3.15 1.7 3.06 1.43 0 3.62 3.32 1.7 5.58 8.55 14 10.8 11.6 9.77 10.4 9.15 9.67 8.62 6.88 8.71 8.39 11.6 3.62 0 10.4 5.6 2.6 4.75 12.7 5.45 11.8 7.79 0 6.08 12.1 9.09 4.63 4.29 6.63 0.65 12.9 10.2 9.37 10.7 9.19 1.09 11.9 7.88 3.15 1.43 2.96 6.55 1.93 0.65 0 10.7 11.1 13.4 4.89 5.51 8.94 8.04 8.64 0 3.15 3.74 7.39 12 8.55 8.46 11.5 6.66 16.7 11.5 3.15 12.4 4.49 2.13 6.65 0 11.5 3.92 3.06 2.13 9.73 4.45 5.42 0.65 5.86 4.45 8.26 9.95 16.1 8.63 7.72 11.2 0.65 1.09 4.33 15.1 6.97 14.1 11.9 10.9 9.17 8.95 7.14 10.5 6.68 7.36 2.6 12.6 8.91 1.43 4.75 13.4 11.5 0 9.95 13.7 0 3.86 9.56 6.95 11.5 2.9 10.6 9.77 5.32 5.23 9.3 0.65 8.35 3.15 7.03 2.96 6.89 11.8 10.3 8.35 0 5.03 0.65 3.06 7.64 11.6 10.7 4.63 10.9 11.2 7.13 0 1.46 1.43 12.9 4.56 3.92 10.8 7.75 4.21 0 5.84 9.61 10.5 5.15 10.8 12.3 7.69 12.8 11.8 13 6.46 1.7 13 2.13 6.25 0.65 11 11.6 10.1 8.15 11.4 12.3 10.1 9.22 7.95 7.09 9.04 9.11 10.4 8.94 10.2 1.7 7.66 9.65 9.15 9.04 11.4 10.4 8.45 9.27 8.81 8.48 11.2 8.29 8.86 12 8.91 9.42 9.26 9.47 9.18 8.86 10.9 11 9.98 10.7 4.16 9.01 4.95 12.6 4.25 7.44 14.3 10.7 11.7 3.24 5.74 10.5 0 8.15 10.4 11.4 10.8 9.37 8.44 11.5 7.86 10.9 8.66 9.29 10.1 12.4 8.96 10.2 10.2 0 12.1 13.7 2.02 5.86 9.16 8.77 9.43 10.4 10.1 11.8 7.5 9.52 13.1 7.51 8.47 10.7 10.1 2.13 9.41 9.44 7.95 9.22 7.51 12.8 8.78 12.7 10.7 10.3 8.79 9.65 10.9 10.2 10.5 10.1 8.91 11.4 8.68 9.43 10.9 10.2 7.98 10.1 0.65 10.9 12.6 7.32 8.89 9.18 10.8 7.45 7.72 8.45 9.51 9.85 12.5 9.22 11.2 9.2 5.15 7.35 12.6 2.46 9.85 9.77 8.16 9.38 12.3 8.25 11.9 7.75 10.4 7.1 7.71 2.85 12.6 4.95 9.07 7.15 8.27 3.74 8.22 12.6 14.5 8.29 8.65 9.1 5.32 10.1 8.72 11.3 10.5 8.56 9.37 8.58 6.37 5.3 8.58 5.32 9.42 7.13 10.8 9.18 1.93 0 1.09 11.5 5.19 10.1 6.24 8.95 9.42 9.22 8.74 10.5 7.55 1.7 10.5 10.6 3.4 8 10.5 8.2 12.6 11 9.23 8.14 1.93 8.77 8.67 0 11.3 11.2 8.92 10.5 11.1 6.57 8.86 9.26 10.5 3.92 3.74 13.6 9.72 10.5 10.5 10.2 7.07 6.1 5.49 8.78 11.6 7.95 10.8 8.48 11 10.2 3.86 0.65 10.7 6.66 8.55 7.69 10.3 10 7.81 11.2 9.98 4.52 12 8.62 9.88 4.25 10.5 9.97 0 7.42 9.13 1.09 4.16 4.41 2.96 6.28 6.68 0.65 9.25 2.96 8.21 9.13 7.58 8.25 9.48 10.8 11 5.12 11.8 4.81 10.2 4.37 7.35 2.46 11.4 11.3 6.93 3.86 9.06 9.14 9.33 9.92 9.57 1.7 6.17 0 3.15 9.22 8.95 8.94 6.67 1.93 6.6 9.67 8.72 10.9 1.93 11.1 10.4 8.83 10.6 2.96 9.18 7.04 6.59 10.2 10.6 0 7.2 12.3 9.45 10.2 2.46 12.4 6.64 8.68 11.8 9.21 12.2 9.42 9.05 10.3 8.85 5.23 6.52 6.31 9.32 9.23 8.17 5.34 11.3 11.1 4.81 9.41 11.2 9.36 7.04 11.9 6.19 1.09 10.2 8.68 9.54 11 0 8.69 1.09 8.35 7.65 2.73 10.4 10.2 8.91 4.87 8.25 6.48 10.7 10.6 4.12 9.39 9.15 11.1 12.8 7.56 10.8 10 11.4 7.61 8.62 9.71 11.5 11.5 10.9 10.2 10.4 3.48 6.68 6.03 10.1 4.72 10.9 11.5 10.2 8.77 9.65 9.53 9.89 11.5 4.16 9.09 8.17 6.39 9.74 9.05 9.23 8.62 9.75 10.3 8.81 8.2 8.97 8.66 7.57 9.78 11.1 1.93 6.62 7.74 8.33 4.59 3.15 7.63 7.7 5.6 10.7 10.4 3.15 9.1 10.1 9.55 8.33 3.06 11.6 8.8 10.3 8.84 8.87 8.49 10.4 9.49 13.1 12.7 11.3 11.2 6.3 9.81 10.4 11.5 8.11 9.69 9.95 8.14 12 8.65 2.13 8.57 10.3 10.1 9.53 7.82 12.6 8.95 10.3 7.88 8.06 12.8 11.1 10.2 10.8 8.74 10.6 10.3 10.3 11.1 9.79 5.84 9.68 9.63 9.45 9.02 10.7 9.87 7.17 10.6 12.1 7.56 10.2 8.43 11.3 8.61 11.7 11.2 5.4 4.69 7.07 8.12 8.62 4.52 2.46 9.86 8.58 9.22 10.2 8.69 10.3 12.4 9.77 1.09 8.71 0 11.3 6.66 6.3 11.3 7.3 11.1 7.38 10.4 9.85 2.13 8.42 12.2 11.8 8.29 10.5 12.4 11.7 5.99 2.31 12 9.58 9.32 3.4 9.68 8.63 8.89 1.7 11 8.68 9.48 10.8 15.2 6.25 0 7.28 9.65 0 6.23 11.1 7.3 9.01 1.7 10 12 4.21 7.88 7.18 8.94 3.86 9.8 11.5 12.2 9.28 9.11 11.3 8.78 8.8 8.06 9.26 9.89 5.4 1.09 9.14 5.45 10.3 8.82 10.7 7.38 12.1 9.85 8.78 7.68 6.89 11.2 7.04 12.6 1.09 6.86 6.14 13.9 4.37 8.61 11.8 11.7 4.07 0 11.8 5.03 8.2 10.4 12.5 12.7 9.11 3.68 2.13 10.4 12.5 12.5 0 12.7 0 10.5 8.78 6.09 10.9 10.2 8.96 2.13 9.28 13.4 19.6 1.93 11.3 12 6.42 8.08 7.76 6.64 7.36 9.62 10.5 8.4 9.33 10.8 8.85 8.63 8.51 11.2 8.11 9.28 8.79 7.11 2.46 11.8 10.9 10.9 10.1 10.9 10.5 0 9.12 8.62 10.4 0.65 10.4 8.26 12 9.4 8.2 8.62 1.09 2.73 5.26 3.8 7.14 7.53 6.11 5.42 11.3 6.91 8.45 2.13 8.38 1.7 9.5 3.4 4.72 1.76 10.3 3.74 2.6 3.86 8.98 8.75 0 11.1 9.54 10.4 8.93 9.82 9.33 12.8 2.96 3.32 8.84 6.72 11.6 15.5 6.7 5 2.6 11.9 2.96 12.8 10.4 0.65 9.61 9.46 10 11.8 10.9 7.22 8.22 11.8 0.65 8.94 1.09 11.7 3.86 11.2 2.32 1.93 0 1.43 12.1 9.76 10.6 10 6.81 6.95 7.96 7.07 5.83 4.16 1.09 2.31 7.55 8.4 4.66 6.99 0 3.32 10.5 0 9.59 6.78 12.4 3.74 11.9 3.8 9.73 9.29 7.64 8.5 8.28 10.1 7.44 5.91 8.88 3.32 9.87 7.44 8.92 9.87 7.94 1.43 2.31 4.87 7.98 8.96 3.8 7.1 0 3.06 7.5 0 0.65 8.91 2.81 10 9.19 10.2 1.43 9.65 5.58 6.83 0.66 5.87 1.13 9.12 7.42 5.38 8.64 9.25 10.2 7.76 10.9 12.9 0.65 4.16 1.43 7.28 7.69 8.95 12 9.26 5.34 3.06 9.92 9.11 11.5 9.83 11.2 1.09 2.13 9.05 6.66 7.59 11.9 10.4 6.89 10.9 9.72 2.46 7.29 10.4 10 10.7 10.5 10.4 13.5 11.3 3.62 10.1 11.3 1.7 1.43 9.43 10.2 8.5 9.13 7.86 8.88 3.4 6.58 8.88 7.24 1.93 9.02 4.75 11.8 5.72 7.74 8.43 3.68 3.55 11 10.9 12.3 9.58 6.97 9.71 7.49 0.65 8.57 8.83 10.5 14.4 3.24 9.97 11.9 8.83 9.91 8.79 1.7 9.52 6.99 9.35 4.92 7.26 9.11 7.95 9.93 8.21 6.81 12.2 8.71 3.86 9.77 4.29 9.89 10.1 11.1 2.73 6.41 4.75 4.59 10.2 7.15 8.87 8.98 3.4 8.01 8.4 8.14 9.98 0 8.72 6.87 8.52 10.4 9.43 10.4 8.07 11.9 9.75 10.7 6.28 11.2 9.31 1.7 8.32 7.47 10.5 7.14 6.48 2.31 9.96 8.27 1.09 7.14 11 6.64 6.55 5.84 0 8.94 5.03 9.2 11.1 9.26 4.41 3.62 7.63 8.45 6.8 11.3 12.7 1.7 7.62 4.59 6.93 11.7 11.3 0.65 9.33 10.2 10.2 7.68 10.3 2.13 11 10.1 9.62 8.96 7.45 9.72 7.14 9.35 3.55 9.9 4.41 8.08 9.71 7.76 0.65 4.92 8.96 6.28 13.1 3.62 1.7 9.17 12.6 7.76 2.31 8.38 1.09 5.75 2.31 3.48 4.41 2.6 12.1 9.21 12.2 7.8 7.31 11.7 8.35 0.65 10.7 8.08 12.5 9.5 8.4 8.79 10.5 14.1 7.14 6.1 9.33 2.46 8.17 0 8.5 9.69 9.87 7.08 8.26 8.75 8.21 5.45 9.24 6.5 9.59 2.85 8.14 9.72 7.4 9.13 10.7 8.33 7.87 6.64 3.55 9.33 7.02 1.09 6.67 0 9.53 7.17 0 0 8.91 7.72 6.46 10.5 1.93 9.29 9.2 5.6 5.21 0 3.8 10.1 8.62 7.02 2.13 8.93 0 8.95 9.4 0 9.97 8.4 9.2 10.8 6.26 10.1 8.7 10.5 0 11.5 9.99 0 9.96 9 11 8.99 8.93 7.83 9.53 6.23 7.83 8.86 7.92 10.9 8.86 11.6 7.83 8.85 10.7 11.5 7.83 7.33 9.74 9.61 8.6 5.63 13.2 7.62 8.57 3.32 8.87 9.86 7.69 7.3 2.13 9.31 6.61 8.54 8.68 8.96 9.89 8.81 10.3 9.21 8.73 11.1 7.21 11.2 8.31 10.6 9.69 11.4 11.3 9.87 9.71 8.9 7.68 1.93 8.21 11 9.44 0 9.47 11.2 11.1 11.5 8.36 7.57 5.44 9.56 7.02 10.2 9.25 9.54 6.82 7.61 10.1 8.2 7.82 8.44 8.78 8.18 10.9 8.41 8.8 5.93 9.61 7.25 9.21 0 10.2 8.5 7.37 8.77 4.75 10.7 7.62 9.9 9.84 11 0 8.79 7.91 9.09 9.54 5.89 9.98 6.5 9.26 11.8 8.66 11.9 7.31 8.01 10.6 8.6 11.2 9.39 11.4 0 11.8 10.9 10.9 5.77 8.73 9.27 10.8 9.14 7.12 7.74 10.4 10.8 10.6 3.86 11.4 6.73 8.56 4.49 9.68 8.01 3.62 9.44 0 10.7 12.7 9.63 9.09 3.55 1.43 8.39 8.1 8.73 10.4 8.75 6.33 10.7 8.66 5.58 9.47 7.19 8.4 9.72 0 9.47 8.19 10.8 9.67 10.6 9.2 6.62 7.52 4.75 6.82 8.42 7.48 3.92 6.5 4.56 0.65 7.65 1.43 11.6 7.88 6.87 6.66 10 4.56 9.47 8.49 9.48 9.99 4.25 8.99 4.16 7.86 2.6 6.81 12.4 3.68 9.56 5.21 7.75 8.73 9.96 2.13 10.6 8.99 9.74 10.3 10.2 7.45 2.73 11.4 9.39 9.38 8.34 10.1 7.48 8.63 10.1 7.77 8.75 7.32 10.1 0.65 7.41 9.15 7.73 9.24 0 8.37 9.04 8.2 8.32 2.46 0.65 9.65 11.5 8.64 8.02 5.26 10.5 6.05 10.7 10.1 9.45 8.88 11.1 5.21 8.65 9.1 9.17 9.92 9.27 8.62 8.08 9.42 11.4 10.5 12.1 7.87 2.46 5.77 8.62 11 6.69 9.06 8.6 10.5 8.48 3.62 7.47 10.5 9.95 7.32 12.8 7.29 8.92 10.4 7.28 3.4 4.78 9.74 8.37 11 0 9.88 8.86 9.19 5.83 8.25 9.47 9.62 9.3 7.58 1.43 8.22 1.93 9.65 1.43 9.16 5.95 6.87 10.2 7.1 9.49 2.73 9.73 2.73 7.93 4.25 5.76 8.57 7.81 8.5 10.7 1.7 1.93 11.1 6.11 10.5 7.03 9.78 7.23 1.43 8.76 2.46 9.98 3.06 7.03 10.1 8.7 8.58 9.34 11.9 12.4 2.31 12 9.22 8.77 2.13 6.67 10.8 11.8 10.2 9.39 6.54 9.57 8.31 8.78 13.3 8.52 11 1.43 8.19 8.86 8.63 8.85 2.46 12.2 8.53 10.5 7.99 10.7 5 9.89 9.75 11 11 8.84 7.29 11.1 8.63 10.7 1.09 1.43 8.64 6.26 9.36 1.09 9.11 10.2 0 8.81 7.07 11.2 10.1 6.24 8.31 7.44 6.44 8.23 8.96 9.2 0 8.32 10 0 7.33 7.38 10.6 11.4 10.3 11 9.32 11 1.93 7.5 0 10.6 8.5 7.93 9.62 5.86 3.8 8.69 2.13 11.2 9.34 6.72 9.77 8.21 3.92 6.7 8.19 6.09 7.99 9.8 11.7 2.6 7.24 12.2 10.5 10.3 7.9 10.2 8.48 12 8.77 3.92 7.17 9.61 10.4 9.23 3.24 11.1 11 4.56 1.7 8.78 1.43 10 9.8 11.7 9.41 13.9 10.7 8.6 9.92 2.73 9.67 12 9.79 4.45 3.97 1.7 7.53 8.33 4.41 4.66 9.93 0 7.53 4.66 7.53 8.36 9.87 0 9.27 11.1 8.82 10.8 4.16 10.8 7.64 1.09 10.2 5 9.53 9.91 7.77 7.91 0 3.06 10.4 7.02 0.65 7.63 3.48 6.93 0.75 4.52 0 8.77 7.82 2.85 12.2 10.2 3.55 5.5 9.54 8.08 7.86 5.36 10.3 8.49 0 2.46 6.74 3.97 10.3 6.44 8.26 5.12 7.22 0.65 8.71 6.97 9.5 9.93 11.4 0 9.18 7.89 7.3 4.66 11.5 11 6.17 9.44 8.2 11.1 8.35 5.71 0 11.1 8.07 10.1 7 9.15 4.87 9.89 5.42 8.42 10.5 1.09 0 9.05 8.21 8.67 5.75 7.9 9.64 11.3 10.2 8.49 9.41 10.7 8.9 9.37 10.3 7.92 9.51 7.51 8.99 7.88 6.8 7.94 7.42 3.97 8.14 12.2 9.24 7.72 10.7 9.81 8.27 9.02 10.6 9.33 11.1 9.69 7.98 10.6 1.09 8.94 9.22 10.4 6.16 11.7 10.1 10 9.19 7.94 9.59 10.1 11.5 9 5.91 8.82 8.97 8.45 10.5 7.63 6.3 9.93 10.4 7.37 8.34 9.71 9.01 7.24 8.17 8.62 1.09 9.63 5.87 9.03 3.06 9.95 9.7 10.8 1.43 12 5.71 9.06 11.1 9.91 7.83 7.42 10.3 7.02 10 7.76 9.77 3.3 5.75 1.09 10.2 8.69 9.4 9.38 8.92 10.2 6.25 7.41 5.47 8.36 8.28 5.72 8.37 12.2 8.42 6.74 8.17 8.49 10.1 10.7 10.2 10.8 10.2 10.2 5.54 8.76 8.44 8.35 9.39 12.7 9.38 6.76 6.9 8.46 10.2 11.9 11 10 6.36 8.2 8.88 8.36 6.89 4.34 10.4 3.68 8.02 7.84 1.93 11.1 9.35 5.4 3.48 9.95 0.65 8.83 8.05 9.88 6.89 8.72 5.6 9.68 9.59 9.22 8.77 2.73 8.09 1.7 6.31 11.1 3.32 5.4 5.68 8.9 9.13 9.59 9.06 5.86 8.07 1.93 7.14 7.84 0 8.06 5.86 4.12 2.31 0 4.92 7.54 8.68 5.42 6.6 10.1 8.5 4.59 8.7 12 0.65 9.67 8.09 10.4 12.3 10.2 7.56 9.91 10.6 9.95 8.97 5.3 10.3 9.4 8.55 5.74 8.38 5.15 9.22 11.3 7.43 9.37 8.78 11.8 9.82 10.6 10.3 4.78 10 8.21 11.5 8.35 8.21 0.65 8.63 9.85 5.37 11.1 8.84 8.06 8.44 3.48 9.48 9.45 3.62 7.73 4.97 10 0 1.7 1.43 13.9 11.7 8.79 8.34 7.13 10.5 8.75 8.46 4.84 12.2 8.56 10 5.81 9.63 6.77 11.2 7.11 10.5 9.7 7.71 6.64 0.65 9.58 8.13 3.48 9.48 1.09 7.96 12.7 11.1 9.79 9.51 8.14 8.7 6.91 3.06 0.65 10 11.4 10.6 10.1 9.67 11.3 6 9.69 11.4 9.31 7.53 7.41 0 10.2 0 12.4 8.62 9.18 2.31 3.32 7.7 9.65 12.2 10.4 11 10.5 0.65 6.53 8.46 5.3 10.2 0 0 3.15 9.07 1.7 2.13 0.65 1.09 0 1.7 6.15 1.43 1.43 0 10.9 0 1.43 3.09 1.59 0 9.06 0 2.6 4.41 3.24 2.31 1.7 2.13 2.31 2.85 1.09 5.21 2.31 2.85 1.43 2.6 2.31 6.31 8.55 2.13 0 0 1.43 11 9.15 7.17 9.47 0 8.75 10 1.7 13.1 5.77 6.48 9.53 0 9.98 9.82 3.55 10.1 9.77 0 11.3 10.7 3.94 8.5 10.8 3.48 9.05 11.9 11.1 5.17 9.99 0 0.66 10.5 8.82 7.56 10.3 11.8 9.03 7.56 4.81 12.1 5.57 0 0 8.93 0.65 8.81 1.09 8.18 0 6.82 12.4 7.36 1.93 15.1 2.73 10.7 1.93 9.87 6.7 8.29 10.6 10.7 10.5 6.42 0.65 9.09 9.11 7.04 9.02 9.62 2.31 0 8.29 3.74 8.83 0.65 9.96 1.09 11.2 9.35 16.9 2.6 0.65 11.4 9.94 11.2 10.2 11.9 6.81 9.9 11.2 8.52 11.4 10.5 10.9 6.09 0.65 11 11.9 11.8 9.76 10.6 9.81 12.2 12.7 6.42 8.6 11.2 12.1 4.12 10.5 8.95 0 11.8 9.32 6.53 8.78 9.58 8.59 4.52 4.16 12.3 11.2 7.21 7.26 8.16 9.9 8.17 2.13 7.2 13.1 6.16 10.2 0.65 3.92 11.2 11 10.3 9.12 12.1 9.91 9.99 4.59 2.96 12 9.42 10.1 10.2 10.2 6.66 10.2 6.9 10.1 9.63 11.2 11.7 9.47 10.5 4.63 7.39 11.1 9.4 12.6 9.57 1.09 0.65 9.83 5.83 9.77 6.69 11.9 4.56 2.13 11.6 6.83 4.02 8.27 9.97 8.03 7.53 7 10.8 10 1.93 11 11.7 9 9.3 12.4 9 5.47 14.6 10.2 8.53 6.73 11.8 6.38 11.7 0.65 10.9 10.8 10.3 12.5 9.49 10.4 2.13 7.11 8.08 9.38 12.2 8.17 8.42 12.1 9.57 2.85 10.7 9.63 0.65 11.5 11.2 12.7 3.68 9.03 9.27 7.79 12.1 3.62 10.2 0 9.68 5.3 7.33 8.02 9.1 13.1 2.31 7.65 6.99 11 0.65 5.68 9.78 9.83 9.08 0.65 0 8.38 7.99 9.45 3.92 8.61 5.63 5 1.43 9.21 9.53 11.7 11.1 10.5 7.62 12.8 8.86 12.1 11.3 12 8.61 3.48 8.55 9.16 10 9.74 6.54 8.26 10.1 0 7.72 0 9.54 4.21 7.19 2.31 0 3.15 10.4 10.7 9.19 11.5 10.3 9.53 10.9 9.8 7.54 6.69 7.47 8.64 8.17 8.45 9.3 9.28 9.66 11.6 10.2 0 10.2 3.86 6.18 10.4 13.3 6.3 6.55 12.7 5.63 10 7.88 8.84 4.07 9.68 2.6 9.68 0.65 12.8 10.2 10.3 9.6 7.09 8.62 10.7 1.7 3.15 12.5 7.3 10.7 2.13 3.86 5.23 9.55 6.94 4.25 4.95 9.2 11.8 3.55 7.93 7.53 6.27 1.7 6.78 1.09 5.4 7.35 0.65 4.29 9.03 9.75 4.21 5.58 4.63 8.07 4.41 1.09 4.49 8.98 8.58 0 3.15 9.05 11 9.69 11.1 12 11.2 5.54 11 0.65 5.45 3.32 2.85 8.5 12.1 9.76 5.15 5.96 8.81 4.25 2.13 10.2 8.79 6.44 9.09 0 7.73 8.81 9.7 5.83 4.16 9.27 9.05 3.55 4.07 10.5 10.8 2.46 7.76 9.6 6.58 6.89 1.7 5.32 9.06 8.74 6.64 3.55 1.09 9.64 10.6 4.02 3.74 9.81 8.77 3.85 5.44 8.28 0 9.12 1.09 0.65 2.85 8.13 9.72 10 7.1 7.18 9.84 10 8.02 9.05 6.24 12.5 5.05 10.1 3.86 5.28 0.73 2.31 1.09 2.46 5.12 11.8 6.6 10.2 9.46 9.44 1.7 6.93 6.47 5.72 6.53 4.33 2.46 8.41 7.7 8.37 4.37 6.82 5.34 2.31 4.66 6.26 10.6 0.65 7.75 6.43 8.92 5.07 9.93 6.07 9.49 2.13 8.37 0 7.7 8.67 4.78 13.2 8.91 4.87 9.27 1.09 0.65 2.85 5.78 1.09 5.66 7.89 0 9.91 10.3 7.78 9.4 8.01 8.49 9.3 9.86 9.15 7.98 4.95 1.43 8.92 9.06 1.43 8.31 9.99 1.7 9.22 9.42 8.02 9.64 10.9 7.73 9.01 0.65 4.52 9.76 10.4 7.97 8.06 3.24 7.48 0 13.3 7.66 0 9.19 6.03 7 8.09 4.69 9.49 8.77 9.23 10.3 9.08 3.06 4.59 7.17 10.2 7.26 9.79 9.08 9.84 9.66 10.3 9.11 8.57 9.13 2.85 6.15 12.7 6.32 12.7 9.08 9.26 9.95 2.46 3.68 8.21 1.43 6.38 2.13 7.79 7.84 2.13 9.25 7.95 8.45 4.97 10.9 3.97 0 9.28 9.53 6.89 8.36 9.72 6.11 9.69 3.06 8.78 8.31 3.35 7.37 1.93 10.6 8.59 1.7 6 8.55 9.97 8.21 0.65 8.67 9.13 8.26 2.46 4.92 7.87 7.62 10.3 6.9 3.48 11.2 8.25 9.68 6.16 7.87 10.3 9.88 9.65 9.23 8.66 8.99 6.82 11.3 9.07 10.5 10.3 9.19 9.39 2.13 0 5.61 9.6 10.6 3.24 3.06 0.65 12.1 4.26 3.55 10.3 9.54 0 0.65 6.99 7.79 2.6 7.69 6.85 12.7 8.2 11.3 9.91 10.9 9.26 1.7 4.78 3.32 2.73 3.15 0.65 9.06 8.67 2.46 10.4 8.49 7.9 9.26 6.95 10.3 8.02 3.48 13.4 11.6 11.3 8.05 2.46 9.59 12.3 10.7 9.94 10.8 10.1 10.2 9.6 10.6 10.2 10.5 12.3 11.8 13.3 2.6 11.1 2.46 7.37 10.4 11.1 9.3 11.3 4.25 10.5 7.85 9.12 11 7.19 9.39 7.13 6.28 6.76 3.68 4.97 9.27 3.15 8.09 7.53 5.63 11.1 11.1 9.52 9.4 2.73 8.47 9.47 7.47 9.68 10.4 10.1 7.5 9.64 0 9.62 0 1.7 11.5 4.52 11.8 11.3 10.2 9.81 5.84 0 5.1 10.9 9.53 11.4 8.87 10.3 8.48 10.9 8.06 1.43 9.46 10.2 8.44 11.7 12 8.23 8.85 7.59 8.9 11 12.2 12.2 3.86 7.83 5.83 6.2 7.09 6.27 11.6 1.93 9.43 11.1 9.03 10.1 9.61 11.4 10.2 10.1 11.7 9.87 9.98 1.43 10.3 8.71 8.69 9.06 2.96 10.3 3.32 5.99 10.4 6.19 15 10.7 8.39 4.37 1.09 4.02 8.63 8.69 5.05 9.48 7.13 2.46 7.6 6.03 10.7 11.8 8.53 11.2 9.46 10.8 11.5 8.21 3.55 1.43 9.59 6.35 10.4 1.09 2.96 8.65 9.73 0 5.93 7.33 9.9 12.1 2.13 2.46 10.9 7.95 6.18 9.74 5.74 0 0.65 0.65 11.3 17.5 7.43 0 10.9 8.86 0.65 9.6 7.43 1.09 10.4 7.4 4.37 3.68 10.8 10.6 5.65 11.7 8.94 5 1.09 11.5 8.36 10.8 10.4 7.19 8.31 6.96 11.4 11.3 0.52 8.34 9.17 6.74 2.6 0 9.31 4.95 8.18 7.05 9.15 15.8 6.54 9.56 0.65 6.12 6.76 3.25 10.2 0 11.7 8.07 8.02 1.09 10.4 3.15 7.08 11.1 9.68 11 9.81 0.65 0.65 10.8 13.6 0.65 7.06 6.49 10.1 1.09 6.71 10.4 1.09 8.59 0.65 0 4.63 12.8 5.65 9.47 12 11.7 1.09 8.48 8.7 10.7 5.47 8.45 7.4 8.37 9.44 7.99 2.96 9.4 8.35 12.1 9.24 11.2 8.01 11.2 9.07 10.9 7.57 8.83 9.87 9.74 0 7.41 10.6 5.03 6.48 9.54 4.81 10 10.6 1.09 5.19 6.26 10 0 6.73 8.94 8.75 11.9 7.61 8.41 1.09 11 9.32 5.96 9.55 0 11.3 8.55 7.37 7.39 6.3 0 10.4 9.42 8.74 8.36 15.3 13.8 13.4 12.6 10.4 10.1 13.3 5.03 15.1 6.82 14.2 13.8 12.9 14.7 13.5 12.9 13.5 11.3 14.7 2.6 12.5 11.9 10.8 13 13.6 13.8 14.6 13.5 14.4 13.4 13.9 13.9 12.7 13.1 12.1 14 13.9 12.9 9.23 8.91 14 7.57 14.2 14.2 13.6 11.6 10.2 13.3 13.1 13.5 13.7 11.2 14.2 0.65 1.7 4.72 6.52 5.68 13.7 1.43 2.13 13.9 9.01 7.3 11 9.41 10.6 12.1 14 14.1 13.4 14.5 14.2 12.6 14 12.7 13.6 14 13.1 13.4 15.4 14.2 14.3 12.6 13.6 14.2 13.1 10.3 7.29 12.6 3.32 13 4.07 9.74 14.2 10.4 9.42 6.74 10.6 0 7.31 10.3 10.3 4.92 8.16 12.8 10.8 8.84 2.31 1.7 2.31 1.71 3.68 5.93 0 0.65 8.66 0 8.26 3.74 5.99 11.8 8.02 1.7 7.89 3.4 0.65 17.7 11.6 11.3 8.78 2.85 10.2 12 10.2 11 13.2 4.41 4.72 10.9 13.9 12.6 4.95 9.27 8.71 8.28 14.1 6.46 5.75 9.51 7.93 4.95 0 1.93 5 11.5 4.02 1.09 7.22 2.13 6.22 1.43 7.97 11.2 9.82 13 1.09 1.43 7.3 6.08 4.02 8.16 6.34 8.9 4.25 8.49 2.6 5.34 4.72 1.09 1.09 10.5 4.29 0 6.69 0.65 3.55 10.4 1.7 14.5 8.97 5.07 13.4 13.2 12.1 8.76 11 9.43 2.6 9.37 10.2 12.6 10.3 9.54 9.62 9.43 8.2 7.56 7.49 6.2 6.69 11.6 8.79 9.42 8.86 7.42 12.4 11 2.98 9.16 8.4 10.3 11.3 6.04 7.66 2.31 1.43 8.79 6.37 8.12 8.97 7.15 9.32 1.43 9.82 1.43 7.58 9.09 8.45 11.4 1.43 8.99 2.31 10.3 1.43 6.91 5.95 7.02 7.59 3.06 11.9 6.95 1.93 5.28 3.32 7.79 8.42 9.47 8.45 0.65 11.6 1.43 9.79 0 10.9 0 9.01 11.7 12.2 2.13 11.8 6.48 3.32 4.37 5.23 11.2 4.75 5.71 7.15 2.96 2.73 3.55 10 10 9.48 11.9 8.16 8.52 11.9 7.3 11.3 6.91 4.16 7.03 2.74 6.69 4.66 1.09 10.1 5.9 9 1.93 11.5 4.52 16.1 8.98 1.93 9.58 6.69 7.98 9.41 5.08 9.38 9.54 5.47 9.26 0.65 3.8 4.75 6.76 4.78 9.64 11.7 1.7 8.14 7.16 5.12 8.57 11.2 10.1 10.4 10.1 6.33 8.7 2.46 6.04 9.47 10.2 9.31 9.97 2.13 1.7 8.06 7.99 1.09 10 10.3 9.13 0 11.4 2.13 11.4 11.9 4.45 8.43 6.24 9.33 10.5 6.66 6.14 6.88 8.34 10.6 0 3.55 1.43 2.6 11.8 2.13 2.31 11.5 10.2 8.65 10.3 10.5 8.82 0 9.88 7.71 6.35 10.2 9.04 8.12 9.29 3.8 7.78 6.4 5.23 0 3.68 5.1 11.1 10.2 9.25 3.8 8.25 8.75 1.93 2.73 12.2 5.36 8.83 0 0.65 8.73 7.19 3.15 6.23 5.43 5.26 5.44 0 1.43 4.52 6.46 1.43 9.41 9.3 2.73 9.31 8.3 6.81 2.85 3.8 2.46 8.99 0.65 8.43 6.22 7.7 4.02 0 5.32 2.46 7.52 2.6 8.23 9.86 3.55 4.07 5.96 9.37 11.9 9.15 9.41 9.45 10 9.65 5.44 8.46 8.27 9.88 8.66 2.13 3.55 0 0 3.62 2.31 4.41 6.28 12.9 2.46 4.37 5.87 9.08 0 8.09 8.4 2.46 11.4 0 4.25 0.65 5.03 12.9 6.26 0 7.17 0 0 1.7 1.7 9.36 10.4 7.02 0 1.09 1.43 0 10.3 1.43 4.83 4.42 3.55 0 10.7 1.7 4.69 3.62 3.48 8.47 10.4 10.4 0 9.99 9.61 1.93 3.06 10.7 9.52 6.14 0 12.1 0.65 9.2 5.08 4.49 10.5 3.06 2.13 7.68 11.2 7.6 1.43 9.77 0 7.02 4.02 0.65 1.93 3.15 14.4 1.09 5.45 6.07 8.97 10.5 12.9 6.15 1.7 8.11 12.3 4.33 1.43 11.2 10.8 9.72 10.1 10.9 9.36 6.84 1.7 8.5 12.3 10.4 10.6 12.4 8.07 11.3 7.24 9.16 10.2 7.62 8.03 9.8 8.53 7.73 13.1 9.59 9.7 7.67 9.56 10.9 8.26 12.5 7.08 9.87 9.65 6.97 8.88 5.42 1.09 9.37 11.3 10.3 7.87 8.24 7.59 7.54 0 10.7 11.8 8.73 4.49 10.6 15.2 4.49 9.21 7.38 1.09 10.1 9.85 10.1 8.42 9.83 9.27 8.51 7.91 11.1 0.65 9.36 10.2 8.87 12.1 9.85 9.92 6.87 9.31 12.3 7.72 6.48 6.26 8.18 7.14 6.89 2.6 8.83 0.65 11.4 2.96 6.95 7.44 8.51 6.46 8.09 0 4.52 5.61 8.09 0.65 9.44 8.44 6.93 8.3 11.2 4.59 3.68 9.39 7.23 6.62 8.04 5.77 10.1 6.35 11.1 0 10.8 9.58 9.39 10.3 10.3 9.98 10.9 10.8 11 9.61 7.31 10.9 10 10.7 1.09 6.02 12.2 10.2 10.2 9.16 2.85 8.72 3.92 11.8 5.66 7.16 5.26 4.95 9.21 3.06 10.9 8.33 11.2 10.5 6.92 3.4 5.32 3.92 5.1 9.8 1.09 9.91 9.02 9.95 9.1 9.17 9.34 10.1 0 6.79 8.44 7.12 8.88 9.97 5.94 11.1 8.95 10.8 10.3 5.28 0 7.9 7.1 1.09 3.61 3.15 11.5 3.92 12.2 11.2 4.69 5.03 8.08 7.19 8.8 7.07 6.63 10.2 8.61 8.34 9.6 10.8 10.6 8.54 5.3 1.93 1.43 0.65 11.1 0 7.55 0 0.65 5.96 6.89 1.43 0 4.92 2.96 8.89 1.43 7.15 2.96 5.03 7.3 2.31 4.02 5.05 1.09 0 6.18 6.99 9.5 9.14 11.1 2.6 9.43 5.07 5.33 0 10.4 6.31 2.6 1.43 0 8.83 1.7 3.74 6.08 9.51 5.04 6.31 8.52 11 1.09 2.13 0.65 7.41 5.15 2.85 8.04 0 2.6 6.39 0 5.63 1.43 4.66 2.6 2.13 6.63 2.46 4.12 0 1.7 1.09 10.9 4.07 3.86 8.87 0 5.21 9.21 3.24 3.48 11.1 10.3 7.64 0 2.46 9.82 10.4 8.96 12.6 6 1.43 13.9 14 3.24 8.07 2.85 3.55 8.55 9.85 7.66 11.2 10.4 10.5 11.1 0 7.8 9.95 10.5 9.18 8.06 6.17 8.63 8.02 7.65 1.43 8.81 1.09 10.2 8.58 9.95 11.3 11 8.46 2.46 8.65 9.32 2.13 0 8.36 10.6 11.1 8.67 10.1 9.13 11.3 6.38 5.74 4.59 11 2.41 10.2 11.8 10.7 6.63 7.82 9.62 11.2 11 7.41 5.58 8.03 6.47 8.3 7.68 7.97 8.99 1.7 4.84 8.21 11.9 9.67 8.41 11.6 9.44 9.44 11.5 9.4 11.5 11.4 10.4 9.44 9.15 6.76 12.2 9.1 12.5 10.9 10.5 8.19 8.23 0 14.6 2.31 15.1 3.68 8.31 9.67 11.2 11.4 10.8 9.08 8.56 5.88 12.2 6.47 8.86 0 3.62 9.1 9.82 8.72 11.9 9.45 6.39 11.4 6.91 11.6 6.98 11.5 8.09 10.7 7.07 2.96 8.79 1.43 3.15 6.24 1.93 8.61 11.8 11.4 12.3 1.09 4.87 13.5 8.66 12.6 5.71 10.3 5.78 10 6.2 11.1 13.1 10.5 10.6 12.1 11.7 9.59 10.8 7.23 10.9 10.5 10.2 9.05 12.3 9.22 10.1 10.4 10.4 10.4 12.5 12.7 12.2 12.3 11.3 3.8 1.43 0 10.5 9.72 12.8 4.33 0.65 12.6 1.7 13.6 11.5 12.6 6.89 6.76 10.8 3.24 2.46 3.4 1.09 0 2.31 0.65 0.74 11.6 2.71 0.65 1.09 3.68 12.5 12.2 8.69 8.86 4.75 2.13 11.1 7.47 8.17 8.66 8.64 7.71 2.46 1.43 9.24 10.9 3.92 7.67 5.21 5.34 6.94 10.3 10.5 8.3 10.9 8.95 9.3 11.4 9.29 0 13.6 0 10 10.8 11.5 3.62 11.7 9.75 11.1 8.65 12.9 8.6 9.6 8.56 14.4 10.1 7.26 10.8 10.9 2.85 6.19 2.13 0.65 8.45 11.7 0.65 10.3 1.93 1.7 0 9.25 6.46 2.13 11.8 6.76 8.4 8.37 8.01 2.13 9.48 6.61 9.84 10.9 3.06 10.7 10.1 9.5 8.83 6.66 8.48 5.15 1.93 12.1 13.1 12.3 12.2 13.8 9.92 8.7 11 0.65 1.93 9.4 11 9.45 10.9 10.2 9.99 7.93 6.25 5.56 7 5.3 6.28 10.9 9.21 12.4 1.09 3.92 6.42 9.7 0.65 0 11.9 5.57 10.6 7.24 10.8 10.2 9.48 8.39 8.74 8.12 8.88 8.84 2.46 12 7.38 7.87 9.93 9.88 10.9 0 7.78 9.59 4.72 12.2 2.46 0 10.6 3.86 9.84 4.56 11.7 10 7.24 13.1 12.4 9.24 3.8 8.91 5.3 3.06 10.2 15 3.86 4.87 7.76 0 9.57 9.83 3.8 9.16 17.5 8.81 3.4 8.08 8.26 6.03 9.14 8.99 8.08 10.1 4.29 12.5 14.6 10.9 2.73 3.62 8.34 6.19 4.95 6.82 0 13.2 9.18 0 10.4 5.93 10.1 11.3 2.31 11.3 5.32 6.58 10 8.23 9.68 10.3 7.23 0.65 11.7 9.8 8.72 9.54 7.68 9.21 9.79 8.64 10.3 6.8 7.49 11.2 8.72 11.9 2.6 11.2 10.4 8.25 10.5 12.2 0 11.6 9.82 9.79 5.99 2.13 12.1 11.8 6.61 5.47 5.26 5.96 15.1 16.9 7.18 6.23 10.9 10.6 6.24 13.7 9.49 8.3 8.43 11 13.2 10.7 7.59 8.11 2.73 2.6 11.1 11.9 9.93 10.3 0 12.2 10.6 1.93 1.93 1.09 0 9.94 0 10.1 8.42 14.7 10.3 6.33 2.96 6.75 10.6 8.67 10.4 8.27 11.4 15.8 3.06 3.62 10.2 8.87 10.1 0 12.7 12 7.43 15.9 12.4 9.82 10.9 8.86 10.6 4.02 15.9 0 19 7.64 7.73 14.9 7.97 9.7 7.59 7.25 6.61 6.1 18.2 0 13.5 9.61 10.6 7.42 16 2.96 1.43 0 2.46 5.83 3.86 0 3.48 1.09 10 8.8 11.2 13 10.5 1.09 10 11.2 11.4 8.27 6.89 13.8 11.5 10.4 10.7 11.5 8.93 14.1 7.17 4.21 4.96 1.93 9.35 7.81 2.6 0.65 0.65 7.15 9.15 6.79 12 2.85 6.15 6.3 7.35 7.19 2.31 7.97 0.6 1.43 4.66 9.67 9.06 4.02 8 4.16 1.93 4.37 13.1 6.86 3.8 0 8.96 7.29 7.11 0 6.77 2.6 7.05 7.39 4.41 6.47 4.21 9.19 5.78 0 13.6 2.85 8.53 1.43 6.34 0 0.65 3.06 9.33 3.8 7.84 2.31 3.15 10 3.92 8.28 1.93 4.97 4.03 1.09 1.52 2.96 3.92 5.87 5.36 7.1 0 2.46 5.6 0 11 4.63 2.6 0 8.51 13.3 8.73 2.13 7.96 1.7 4.02 11.3 4.16 6.08 1.43 8.18 11.3 0 1.09 1.93 6.97 2.73 7.95 3.24 5.78 0 7.56 8.21 0 11.2 8.81 6.41 5.72 8.91 2.96 9.19 2.6 8.37 0.65 10.8 3.74 13.7 2.96 15.3 14.5 12.8 0.65 10.8 10.4 10.4 7.96 10.4 12.1 9.49 4.59 10.1 10.9 9.35 10.1 12.9 10.5 10.2 11.2 10 10 9.03 11.1 9.91 11.2 1.93 8.59 0 4.59 8.03 3.8 11.1 6.22 9.71 6.8 12.3 12.8 0 8.2 9.97 6.14 9.63 8.57 11.4 8.36 0 11.3 0 12.3 12.8 12.2 11.4 10.4 11.3 10.8 10.4 11.7 8.71 5.96 10.7 6.82 8.47 8.69 12.5 10.4 5.4 11 9.5 6.79 9.23 13 12.4 10.6 9.18 4.72 11.4 6.52 4.59 0 8.2 10.7 10.7 11.6 5.81 1.09 7.71 3.24 4.52 8.8 7.02 7.58 8.32 18.2 10.6 10.8 10.6 6.93 7.81 12.2 10.7 10.3 5.81 7.49 10 10 9.2 9.14 5.49 1.43 6.25 0.65 1.09 0.65 0 0 2.46 4.66 1.09 0 0 9.29 5.63 0.65 13.8 0.65 1.43 0 9.1 8.55 10.6 5.68 9.9 0.65 10.8 9.58 2.46 7.83 6.19 7.38 11.9 8.45 9.86 9.88 11.4 9.13 13.1 11.4 10.3 12.8 7.16 11.8 12.6 4.49 11.9 8.05 9.59 8.41 6.46 9.85 9.81 2.13 8.78 4.51 12.4 6.82 8.16 3.15 4.66 7.96 6.47 8.18 6.15 6 7.63 9.9 9.69 8.04 10.5 7 2.85 1.93 9.99 9.61 8.94 5.94 9.55 8.33 8.83 6.23 8.1 3.48 7.92 7.22 10.3 4.07 5.21 6.93 4.59 8.37 8.06 7.51 10.2 6.66 1.43 7.89 3.32 2.73 7.18 7.76 0.65 1.43 6.16 5.81 4.48 10.4 4.56 0 2.46 1.09 0 3.86 1.93 7.05 8.6 5.19 7.61 6.59 2.31 6.79 3.4 6.31 8.06 3.32 3.62 7.78 7.47 8.4 7.58 10.5 9.91 9.2 9.04 1.43 1.93 7.46 0 9.09 6.99 12 7.83 5.15 1.43 5.75 4.41 6.9 8.85 7.13 5.69 0 7.94 8.27 6.15 7.27 7.26 4.12 8.45 8.56 7.07 0.65 8.64 10.6 2.13 5.28 7.17 3.68 1.43 13.7 9.28 5.36 7.26 5.8 7.71 0 8 5.19 1.7 5.53 7.75 7.28 8.45 0 1.7 1.93 7.37 4.09 5.15 11.1 6.99 7.82 5 9.28 14 1.93 9.76 2.89 12.7 9 11.8 3.86 3.48 8.92 7.21 4.29 8.59 10.8 10.7 8.64 2.6 1.09 5.51 9.14 9.8 10.2 0.65 7.89 11.1 9.77 11.5 8.88 11.4 11.1 11.9 10.3 4.12 9.21 0 10.5 10.5 9.52 7.52 4.52 10.1 9.77 4.41 8.89 0 5.05 4.49 9.67 2.31 12.9 11.7 8.64 10.7 9.12 9.93 11.2 11.2 9.62 0 9.41 9.65 8.52 5.21 8.57 9.87 7.69 0 12.6 9.82 7.85 5.53 8.38 10.2 9.23 8.78 10.7 5.61 9.39 11.4 7.76 10.5 5.34 10.2 12.3 9.5 10.2 6.58 11.4 8.58 10.8 9.21 9.68 7.05 11.1 7.74 11.3 5.98 6.17 10.1 7.75 9.45 9.76 8.78 11.4 11 11.3 2.73 9.75 11 7.72 1.7 10.9 9.52 8.8 4.63 1.7 8.94 9.95 10.5 10.9 9.89 7.74 8.19 8.57 11.7 11.6 5.74 9.65 10.8 12 9.61 8.61 2.13 5.69 12.2 0.65 3.55 9.22 9.14 9.36 8.73 8.39 8.04 12.2 4.3 8.67 0.65 2.83 8.73 13.3 0 11.6 4.68 6.03 11.7 7.59 9.8 8.13 8.57 9.99 9.81 9.29 8.74 3.24 9.27 12.4 2.85 11.5 12.6 9.68 11.2 7.21 0 9.5 0 0 0 11.1 5.9 10.3 2.85 6.69 1.43 0.65 2.31 5.91 0.65 5.19 5.81 0 1.09 9.47 10.6 8.94 7.31 8.09 9.38 8.3 10.2 0 0.65 3.74 1.71 9.81 9.44 7.7 0 9.93 12.2 8.85 9.55 9.28 9.48 9.32 5.47 6.29 9.12 11.7 10.1 12.2 9.33 9.71 8.79 6.76 3.97 8.83 11.8 11.8 6.5 7.21 1.7 7 10.8 6.8 10.2 1.7 3.97 7.92 10.2 2.13 9.09 0 5.19 4.52 1.93 10.2 4.75 9.05 8.05 6.44 7.39 5.69 8.84 10.1 9.1 9.67 1.93 10.2 9.64 0 9.2 9.29 6.35 2.96 10.2 9.95 9.57 7.14 9.47 0 8.65 5.93 2.6 10.8 6.8 6.71 9.09 8.87 8.78 3.41 7.75 0 9.67 9.53 10.4 8.21 0 7.17 9.08 8.92 8.79 7.09 9.67 6.58 9.93 5.51 3.62 8.24 9.01 8.79 9.09 1.43 6.07 8.89 9.53 8.93 6.34 3.97 9.56 6.69 11.1 9.5 10.5 7.65 9.03 8.53 7.83 10.3 10.7 9.34 7.52 1.43 6.69 10.4 6.93 10.7 7.7 2.34 1.93 9.05 2.6 5 11 6.9 6.95 1.09 3.86 7.05 6.74 3.86 12 0 9.97 0.65 9.4 9.11 7.71 10.4 1.43 9.14 7.77 4.07 8.7 12.2 12.4 8.14 7.7 9.84 2.13 9.51 7.51 10.7 7.53 7.45 7.5 1.43 6.25 9.29 13 8.65 1.09 11 12.1 11.7 12.5 8.18 9.41 8.62 10.8 5.34 3.8 1.93 9.38 1.7 6.11 7.55 6.66 10.2 8.52 9.79 11 6.05 7.8 8.73 6.16 5.12 10.4 0 1.09 6.75 3.97 1.93 7.36 7.12 6.66 8.61 8 7.78 7.59 6.77 9.73 0.65 4.12 9.25 8.52 4.07 6.19 3.32 7.13 5.3 4.41 9.02 8.05 0 5.94 1.09 10.1 4.92 8.8 1.93 5.81 0 1.7 9.61 1.7 1.43 5.32 4.75 9.04 10.2 4.12 7.43 8.91 6.85 7.74 8.44 9.77 9.64 5.49 8.71 9.87 1.09 2.13 8.43 8.45 5.4 8.42 9.18 3.24 10 9.95 10.4 5.21 9.59 9.76 6.08 4.75 6.61 9.57 11.2 6.94 4.97 3.15 3.15 8.38 7.96 4.12 8.81 8.71 10.9 7.83 0 9.17 6.1 2.46 5.65 7.4 5.4 0 10.3 1.09 10.1 3.97 6.24 10.4 7.34 0.65 8.41 7.94 1.74 9.34 0 0 9.21 2.96 8.59 5.87 8.67 6.53 8.74 7.74 5.88 2.85 5.34 7.45 5.83 6.27 5.28 5.99 0 8.15 8.01 6.27 0.65 1.43 6.38 2.31 8.57 8.82 0.65 1.43 4.41 12.3 0.65 6.1 4.37 10.8 5.18 8.86 7.19 3.97 7.05 10.4 9.39 8.29 9.19 10 8.07 7.28 9.17 9.07 9.32 4.56 9.95 7.87 7.8 2.85 0 0 4.37 7.52 5.68 8.5 7.36 6.08 5.36 0.65 0 7.04 11.1 12.6 4.69 6.51 5.44 5.49 2.96 0 9.06 6.3 2.31 4.75 6.79 2.85 9.06 2.96 10.2 8.74 1.09 9.67 9.17 12.2 7.7 8.06 9.27 8.91 8.69 9.08 6.09 8.13 6.73 8.61 7.85 5.53 10.8 5.94 5.95 9.1 3.97 7.14 5.96 8.72 9.9 10.7 8.09 9.06 6.9 9.01 9.48 9.11 2.96 9.33 10.2 7.57 10.1 3.06 9.79 10 7.41 4.41 10.5 8.94 11.3 10.3 8.1 8.63 8.24 6.27 10.7 2.73 10.9 10.6 6.64 7.19 1.09 8.38 9.12 7.72 0 10.3 6.35 1.7 10.2 8.31 12.6 9.89 10.1 5.93 12.2 8.98 2.73 8.61 9.13 7.84 6.84 7.49 11.3 7.77 1.93 10.8 12.5 6.16 8.41 2.13 7.28 8.22 10.1 7 7.13 4.37 8.51 7.55 9.26 9.41 2.73 1.43 0.65 10 1.7 3.24 9.9 8.11 8.77 8.31 6.14 13.1 6.55 6.69 11 9.86 6.18 9.63 3.32 9.48 2.6 3.55 10.1 10.1 12.1 9.09 4.21 9.41 11.7 4.52 8.28 3.32 3.92 9.84 8.54 7.04 9.76 6.77 9.84 1.09 2.31 6.9 0 5.42 7.87 7.39 7.05 10.1 6.7 6.51 1.09 1.93 6.49 12.3 9.67 8.08 10.3 7.63 8.83 6.24 10.9 8.11 11.2 15.5 9.89 12.2 9.37 12.7 6.99 7.57 2.13 9.6 7.49 4.63 11.4 10 12.4 2.85 11.8 1.7 9.67 10.1 8.68 10.3 8.06 9.71 4.38 3.15 6.19 4.19 11.3 7.91 8.98 8.63 0 2.6 9.7 13.2 8.76 1.09 4.49 2.96 3.92 9.61 9.02 3.32 12.3 10.7 15.9 4.75 4.45 0.65 0.65 0 11.3 10.5 9.7 4.45 2.85 9.47 12 8.63 8.69 0 2.07 0.65 0.65 12.6 3.68 9.02 10.2 9.11 8.37 9.63 5.44 7.53 9.3 8.8 8.83 3.32 10.8 9.53 9.5 1.72 8.43 8.7 9.13 6.17 10 7.59 12.9 0 8.62 5.07 8.49 8.35 9.12 9.23 9.94 1.7 9.35 2.13 7.86 11.9 9.94 7.65 0.65 8.92 9.75 8.59 5.19 10 9.26 1.43 0 6.6 7.46 9.67 6.83 5.46 9.62 3.4 9.56 10 5.32 10.4 11.6 11.1 11.3 12.3 9.22 5.38 2.85 9.02 0 7.88 1.09 1.7 9.89 9 4.95 7.11 7.39 7.61 2.13 7 0.65 9.33 3.97 7.24 7.64 9.33 9.11 7.54 1.7 10.7 4.32 7.52 4.02 10 11.2 5.87 8.91 9.22 11.9 10.2 10.2 11.3 11.9 11.1 10.1 2.13 10.2 9.89 1.93 10.8 9.22 6.93 10.1 0 2.85 2.13 10.6 9.66 0.65 8.6 10.3 5.26 12.2 14.2 11.4 10.4 10.3 5.6 8.99 3.62 10.6 7.81 10 9.01 11.5 7.04 10.4 11.3 11.8 10.6 10.5 10.4 6.12 12.6 10.4 8.93 10.4 8.3 9.9 7.89 0 8.08 0.65 9.72 10.5 8.48 5.84 8.96 1.93 10.1 10.7 10.8 8.17 10.6 12 8.87 9.79 7.37 11 8.24 4.33 5.12 11.5 4.21 5.78 8.82 7.84 4.41 3.68 0.65 1.7 10.3 1.43 0 1.09 12.3 4.37 9.65 5.15 3.24 4.69 6.17 2.31 0 4.72 2.31 0 0.65 7.23 4.37 9.22 10.4 11.6 9.1 6.28 1.93 0 6.17 7.91 7.31 0 9.57 5.07 7.71 5.71 2.13 5.74 4.59 9.34 5.51 8.84 2.13 8.82 5.15 10.9 7.32 8.11 1.09 4.41 0.65 6.12 1.09 1.43 3.8 6.1 5.07 6.81 9.65 10.6 9.53 0 7.38 0 5.71 1.09 0 10.6 5.78 0.65 7.9 2.13 5.51 9.21 8.41 1.09 5.83 11.7 11.5 8.42 8.29 0 8.18 10.7 10.5 9.73 1.09 8.12 11 12.1 7.61 1.43 5.49 0 2.46 10.5 0 8.29 12.3 9.55 1.43 0.65 11.8 8.63 3.06 7.38 10.9 0 0 12.3 8.94 7.84 6.5 7.56 8.65 3.62 11.7 7.09 10.1 7.88 0.65 11.2 8.98 11.3 7.14 9.77 5.59 10.8 5.45 10.4 11 3.06 10.9 7.7 9.36 9.24 9.5 1.09 5.99 0.65 7.69 0 8.37 10.2 3.8 4.49 8.33 6.76 5.61 11.2 5.45 8.22 9.62 6.77 5.23 5.74 4.84 1.09 0 6.64 0 4.29 4.29 2.31 0 1.43 7.98 8.83 7.91 2.96 8.5 10.1 6.95 10.7 9.38 8.47 11.2 9.57 8.99 7.73 9.51 1.7 6.12 6.73 0 1.09 10.2 7.58 5.07 5.63 10.9 11.7 2.96 5.1 7.78 0 4.33 1.43 1.93 7.64 9.39 0.65 4.33 11.2 4.78 5.78 9.4 10.5 0 6.95 3.86 2.96 8.57 5.65 7.6 11.9 8.66 0.65 9.62 10.2 9.2 7.45 4.72 12.4 4.66 5.21 0 0 7.19 5.99 8.81 10.9 8.31 9.1 5.95 4.29 7.89 10.5 3.24 8.74 3.62 0 9.13 8.61 4.02 7.84 8.92 8.26 9.09 7.81 8.89 9.44 6.88 8.09 10.1 9.85 8.22 6.76 5.42 6.93 5.74 8.23 9.52 1.09 9.17 9.04 7.87 9.69 8.04 9.48 11.3 9.41 7.43 6.02 9.35 9.83 9.03 8.77 5.1 3.86 4.52 8.27 6.63 8.12 6.25 5.74 0 1.43 5.51 11.6 10.4 9.07 0.65 9.19 3.74 4.16 5.3 6.41 6.73 9.85 4.07 2.73 6.22 7.7 6.16 7.86 4.87 2.46 6.32 11.6 11.4 8.55 7.94 0.65 8.87 9.23 8.43 8.31 5.12 10.3 2.6 9.59 5.61 0.65 6.38 4.41 7.86 9.32 0.65 7.51 8.13 7.63 9.09 11.2 4.69 10.5 11.4 8.93 9.57 9.12 9.59 7.44 10.9 9.01 8.6 10.2 10.6 8.29 9.48 3.06 9.33 10.1 7.92 2.73 9.72 7.79 10.6 8.83 9.84 9.16 7.66 8.43 0 8.17 12.6 8.04 7.38 3.68 9.05 10.9 7.43 10.4 5.25 2.73 7.52 8.89 9.45 8.38 6.93 9.7 11.1 10.6 10.2 7.48 11 6.2 8.47 10.3 9.41 6.53 8.68 9.61 10.1 9.37 10.1 6.02 8.34 4.63 8.61 10.2 5.53 10.9 8.89 11.4 10.2 9.87 6.04 9.78 9.72 10.6 1.09 7.7 11.5 9.52 0.65 7.28 3.15 8.57 1.43 6.32 1.09 11 2.31 11.2 5.83 3.06 3.97 3.55 7.15 10.1 3.4 9.81 9.64 3.32 11.8 7.29 6.66 7.84 8.56 7.2 4.49 4.75 4.07 7.98 8.29 9.17 8.07 0 0 0.65 1.77 10.7 9.34 10.2 9.28 1.93 6.45 10.6 7.32 10.3 5.34 8.95 6.19 3.32 1.93 10 8.51 10.2 6.51 4.16 7.26 7.79 9.47 6.15 6.82 10.9 4.25 5.69 11 6.97 6.54 6.76 12.2 5.91 9.89 8.15 2.13 11.8 6.47 11.1 0 8.43 7.03 4.81 9.19 10.2 10.1 4.07 3.4 0 3.06 5.83 3.24 2.31 11.4 8.76 4.49 0 2.13 8.29 8.81 8.01 3.68 11.6 10.2 11.5 3.62 0 3.74 1.09 9.66 5.21 6.73 9.21 9.47 2.31 4.56 11.1 9.08 4.75 0 7.71 10.9 9.67 4.07 2.86 8.2 3.61 3.62 3.92 13 12.9 11.8 0.65 3.55 9.14 13.2 1.09 7.74 1.43 10.9 9.88 4.66 6.35 10.9 7.55 10.1 5 5.1 0.65 0 7.37 9.01 3.92 5.26 7.76 10.9 6.27 2.85 8.9 4.81 5.1 5.72 7.93 9.58 10.5 8.65 8.79 5.65 2.6 10 8.6 9.96 7.48 4.12 4.84 9.85 8.6 8.31 4.21 2.46 4.02 7.79 10.8 10.3 7.31 8.1 8.6 2.31 8.74 4.07 5.93 3.97 10.6 12.2 4.37 2.96 3.4 0 9.27 2.31 6.23 4.53 9.16 7.88 9.23 9.74 7.29 6 5.53 9.14 7.05 1.09 1.09 7.33 6.45 13.2 9.28 7.86 9.07 8.97 10.6 9.79 10.8 10.4 8.34 0 8.35 9.87 2.85 8.71 9.04 9.14 4.29 8.81 9.41 3.24 8.96 7.76 5.42 6.47 9.72 8.52 8.56 7.91 1.7 10.2 4.89 7.25 6.41 9.55 9.92 10.9 1.93 5.69 8.54 9.11 7.1 7.68 10.4 8.8 1.09 7.92 7.97 7.89 9.14 9.72 9.28 9.49 7.63 10.9 1.09 5.3 7.55 0.65 8.37 9.67 7.03 8.05 9.55 9.05 0.65 11.8 1.93 11.2 8.04 5.63 5.81 5.03 8.29 1.43 6.84 10.1 8.92 9.62 10.1 4.66 2.6 8.05 8.84 9.34 9.35 0.65 10.5 7.67 0 3.92 1.43 8.1 9.45 12 2.96 0.65 9.94 10.9 9.81 6.64 9.46 5.32 5.72 10.7 0 12 5.44 7.83 10.2 7.5 7.04 9.8 9.34 8.06 7.24 5.53 7.15 7.4 8.3 8.29 3.06 8.76 13 8.41 4.84 1.09 6.54 3.24 2.13 10.8 9.86 14 9.1 1.09 5.44 0 11.6 8.92 7.39 8.71 7.55 12.4 6.38 1.93 9.01 7.3 6.94 8.74 4.63 1.43 3.06 4.56 0 9.99 5.1 9.48 1.09 10.5 11.7 9.13 6.11 9.32 9.09 9.77 0 8.78 0.65 5.6 9.08 10.3 11.1 10.4 8.58 10.1 8.94 9.65 7.46 8.16 8.42 0 7.5 11.4 3.55 12.5 7.73 9.74 7.11 10.6 8.61 11.7 9.38 2.85 3.74 10.2 8.38 9.24 3.06 6.04 10.9 8.9 8.81 7.09 10.2 4.16 7.43 2.85 7.23 7.32 9.98 1.09 7.18 10.7 2.31 2.31 1.7 8.58 7.9 4.52 4.75 8.9 4.1 3.55 11.7 7.01 9.6 4.75 4.02 11.1 9.18 9.57 10 9.23 7.3 11.6 10.8 9.36 10.2 8.58 9.41 10.8 2.13 9.55 11.4 8.28 9.98 4.71 7.02 8.42 8.73 9.83 4.33 0 0 10.2 8.95 3.97 10.2 9.73 12.5 2.46 8.42 11.7 3.32 10.8 6.04 11 1.43 3.06 9.84 1.09 11.1 9.43 9.5 4.37 7.29 4.25 15.3 8.7 3.55 1.7 8.8 10.7 10.1 9.65 11.6 7.99 6.93 0.65 6.78 4.29 13.7 4.63 10.4 9.35 8.89 8.61 10.4 5.63 3.62 11.8 8.58 13.4 11.8 12.4 12.4 7.63 12.2 11.1 12.4 11.9 11.6 10.5 6.57 8.72 9.94 9.8 8.55 9.68 4.84 9.3 10.4 7.72 8.57 11 10.8 1.43 5.58 9.83 6.73 10.9 9.27 5.36 11.3 5.7 8.02 10.3 9.77 4.33 2.46 2.85 0 9.94 8.08 11.7 9.72 9.75 6.76 11.3 13.1 12.5 9.82 12 10.4 7.33 8.22 7.04 11 12.9 9.47 8.56 12.3 12.5 10.7 9.08 3.15 4.29 7.55 6.71 11.8 2.13 1.43 0.65 0 14 10.6 5.86 10.1 9.54 10.8 12.1 10.1 10.4 7.91 5.54 9.17 9.61 8.96 13 8.86 7.63 8.72 0.65 10.4 4.49 1.7 0.78 7.38 8.26 3.55 6.6 3.32 8.96 5.91 6.91 9.82 6.95 8.14 11.5 11.1 8.58 12.7 9.37 4.25 7.02 0 1.09 9.48 9.02 0.65 11.7 10.1 0.65 9.85 6.22 3.32 3.15 1.7 14.7 7.76 8.36 6.63 10.1 8.96 4.59 3.74 10.2 8.8 10.8 12.6 9.19 0.65 1.43 3.74 10.4 0.65 2.73 6.84 9.55 7.75 4.06 12.6 9.23 3.97 6.63 7.55 8.03 7.3 3.15 9.14 8.51 7.49 8.93 8.32 7.22 8.18 8.84 8.09 9.92 9.63 10.2 7.95 8.86 8.12 15.2 10.9 9.19 9.87 9.98 9.83 11.2 9.92 11.5 11.1 8.5 9.65 9.38 9.05 10.5 11 11.3 10.3 9.72 5.45 10.3 0 5.66 0 10.8 6.47 6.64 11.1 8.16 0 6.74 10.5 2.46 12.6 10.2 0.65 9.53 8.03 8.25 9.95 9.67 9.97 1.92 6.72 2.61 8.69 9.99 10.2 10 8.69 6.74 8.82 9.93 6.86 8.2 8.37 12.3 8.72 9.64 0 5.34 5.91 11 1.43 0 9.69 8.54 10.7 1.43 0.65 9.45 7.22 4.16 3.55 6.38 7.27 3.68 7.88 2.85 0 0 1.43 8.82 6.57 6.52 8.19 12.1 8.73 5.15 2.13 9.09 11.7 11.6 8.44 2.94 4.95 0.65 1.93 8.12 0 7.62 9.41 6.79 6.7 13.4 9.7 11.9 10 0.65 5.63 9.84 10.8 0.65 11.7 3.86 7.64 8.99 7.86 6.27 0 5.21 8.83 11.3 9.81 1.43 6.42 6.32 7.63 6.72 7.33 6.46 0.65 10.4 9.87 9.44 0 10.2 7.02 6.18 5.86 5.19 6.16 0 10.8 9.7 9.04 9.18 7.82 6.79 8.21 1.7 0.65 3.68 10.7 3.89 7.2 0.65 1.09 8.63 10.8 9.33 10.1 8.03 2.46 4.78 1.09 6.52 10.1 6.91 6.84 8.69 9.25 9.25 0.65 6.25 3.06 5.03 3.92 0 7.1 1.93 7.7 7.73 9.06 9.53 3.55 8.88 8.26 3.74 10.3 9.65 8.74 12.2 7.92 7.34 6.02 6.28 10.2 8.49 10.2 12.9 6.09 6.84 5.32 3.32 11 0.65 9.39 10.2 8.1 9.8 4.72 10.7 5.84 2.46 10.5 8.09 0 6.6 9.74 9.87 6.32 8.26 1.93 5.68 8.3 7 8.11 7.71 0 7.79 2.96 11.3 7.44 8.12 8.34 7.46 9.86 9.9 8.09 6.16 0.65 9.41 5.96 6.73 9.9 3.55 9.62 7.58 8.17 12.6 0 7.66 0.65 11.4 2.85 9.93 6.84 8.39 11.8 6 8.78 9.87 6.93 3.15 5.44 10.3 1.93 11.8 10.6 4.97 8.69 8.12 5.75 0 10.6 11.1 11.1 10.1 7.47 5.15 8.27 10.2 8.38 0.65 10.2 3.86 8.36 7.78 9.33 3.06 9.74 10.9 9.12 7.02 8.49 3.06 11.4 11.6 4.16 8.73 6.89 9.17 3.65 4.56 10.1 9.64 9.65 9.86 1.93 6.71 8.43 8.73 11.5 4.16 5.96 8.87 6.4 2.46 0 3.74 2.85 4.72 2.46 7.22 6.45 12.3 6.23 9.63 9.86 3.15 9.66 9.4 7.37 12.3 9.25 7.85 1.93 11.3 10.8 12.3 11.7 8.06 8.31 0.65 4.87 5.65 10.4 9.42 0 7.7 9.26 8.83 9.87 4.49 10.9 8.36 1.7 7.38 8.91 7.7 9.12 0 10.6 6.52 2.13 8.11 11.5 4.81 11.1 9.7 1.43 11 11.3 7.8 8.9 1.7 8.19 6.48 9.42 3.32 5.95 3.62 9.53 8.32 4.37 7.92 10.1 11.1 3.06 9.18 7.76 8.45 5.78 2.6 10.4 10.8 3.62 0 9.32 5 10 5.44 0 10.1 3.15 10.8 11.3 5.56 10.8 10.1 6.59 7.08 3.06 5.83 8.75 1.09 4.95 6.03 9.91 7.61 6.96 7.45 6.65 0 11.1 9.17 4.69 8.58 7.36 6.78 6.77 4.59 7.13 11 8.74 8.47 10.4 9.37 2.6 8.43 7.1 9.35 6.45 7.2 9.45 11.5 5.65 6.58 10 0.65 4.78 8.26 10.7 0 9.51 1.7 8.87 9.71 2.96 1.09 8.93 7.67 8.6 0.65 8.6 1.09 6.28 7.68 9.03 9.34 7.55 7.49 8.81 9.9 10.1 0 6.62 6.57 8.7 7.78 5.23 5.58 8.52 6.34 12 8.2 12 5.72 9.4 10.4 11.6 8.86 9.77 0 10.5 11 2.96 8.75 0.65 6.18 7.82 6.6 9.18 4.72 0 5.19 4.49 0 0 11.2 0.65 7.32 11.9 0.65 10.7 9.24 6.04 6.3 8.83 2.88 7.26 8.49 7.02 15.6 8.92 11 0 7.24 11.1 8.86 6.25 9.16 8.35 0 4.56 8.39 2.6 2.96 12.3 8.05 0 12.7 6.85 5.61 3.97 6.22 1.93 10.2 6.87 4.75 0 8.65 6.31 2.61 8.29 7.38 4.84 8.15 10.5 11.9 7.59 7.19 8.78 7.93 5.68 10.4 8.2 10 7.02 8.44 5.47 8.75 10.2 9.13 8.13 9.86 3.24 9.96 11.8 11.3 9.89 3.92 10.2 7.48 9.18 1.09 9.58 9.1 1.43 10.1 14.1 10.3 7.34 14.5 2.31 8.1 5.05 3.48 7.7 8.79 3.24 10.2 10.3 8.85 4.07 4.78 5.54 7.32 1.09 4.07 1.7 1.43 9.06 10.5 7.02 7.71 5.71 4.72 6.31 11.9 6.3 5.96 9.94 8.67 7.82 12.1 8.46 5.91 2.73 8.94 9.66 8.53 12 4.45 10.5 9.73 11.4 8.3 1.93 10.7 8.57 9.47 10.1 6.95 3.62 7.68 5.84 8.47 5.91 0 8.97 9.86 9.01 9.7 9.04 8.67 10.3 10.9 0.65 11 9.88 10.5 3.68 0 10.6 13.7 0 12.5 0 11.1 4.41 10.3 0.65 7.58 0 6.22 6.28 4.66 6.68 9.31 12.1 9.96 0 12.6 8.6 9.6 8.02 2.13 7.29 10 2.73 4.63 1.72 5.86 9.42 8.71 12.3 0.65 10.6 9.2 9.92 8.64 12.1 10.8 0 5.19 13.3 0 9.5 0 10.2 0.65 5.35 1.43 10.5 6.28 11.2 4.41 9.15 7.84 11.1 0 2.85 0 8.46 7.56 5.42 9.61 8.57 7.19 7.64 8.1 4.59 0.65 11.5 3.15 4.92 8.44 5.91 7.19 10.4 8.28 9.3 10 7.21 10.5 9.96 1.09 8.77 8.69 12.7 8.55 10.2 8.44 8.09 4.95 9.38 1.43 9.04 0.65 9.64 13.1 2.85 11 8.01 5.69 8.36 8.27 8.43 11.2 4.72 9.83 13.3 7.86 0 4.84 8.06 2.6 5.21 0 8.1 3.15 8.1 8.66 7.71 7.57 11.3 12.9 13 2.46 11.6 4.16 5.3 8.19 6.29 9.4 7.82 9.69 2.31 6.04 0 7.23 9.33 8.65 8.19 8.5 1.09 5.05 8.51 10.3 7 7.6 9.76 8.36 3.4 8.87 7.29 7.61 8.68 7.1 8.82 3.62 6.56 7.97 7.88 13 11.9 3.24 5.26 5.72 1.7 0 11.6 12.8 9.7 8.13 7.04 1.09 5.21 7.4 7.47 10.7 10.2 5.05 0 11.8 8.83 10.2 8.06 1.43 9.86 8.38 9.18 11.9 9.78 12 10.1 12.8 9.41 9.07 5.03 9.54 9.4 9.66 6.64 7.7 1.7 8.25 11.7 8.07 8.82 8.97 0.65 5.45 9.64 3.32 11.6 10.5 11.1 10.8 8.85 10.2 10.6 10.6 10.5 10.1 0 9.79 13.1 10.4 10.3 7.6 8.74 10.7 9.82 8.93 5.15 8.94 11.3 7.59 9.92 9.14 5.15 5.78 11.3 5.94 4.84 9.8 13.7 10.3 4.89 9.46 11.4 6.82 3.92 8.58 9.42 14.1 7.37 10.3 9.3 2.6 8.9 4.33 10.1 11.1 10.8 6.45 10.4 5.66 7.3 6.05 3.92 5.23 0.65 7.88 6.54 7.84 11.4 4.87 0 14.4 8.72 4.12 4.95 9.94 4.92 12.3 9.68 9.69 9.26 10.5 9.43 8.37 5.74 7.72 10.4 8.07 9.78 9.07 7.78 7.43 10.3 7.58 7.72 12.2 13.2 9.3 4.56 12.3 9.96 6.75 10.7 5.32 10.6 13 9.97 1.09 8.71 10.5 9.03 8.41 8.18 8.69 9.81 8.87 11.4 8.47 9.48 9.88 10.1 11 9.02 7.1 9.1 11.6 7.43 10.5 9.5 9.71 10.1 10.9 8.19 8.64 10 0.65 4.97 1.93 5.56 12.9 10.3 11.4 9.55 0 4.81 0.65 11.6 5.47 9.02 8.71 9.33 3.68 8.18 3.92 9.77 7.84 14.6 0.65 4.69 9.33 10.6 8.53 10.3 8.44 4.72 9.19 8.74 8.39 9.44 3.32 5.8 9.82 4.78 6.45 9.65 5.19 12.4 8.09 8.39 7.13 10.8 7.32 9.65 5.74 13.6 5.42 3.32 6.27 7.47 5.56 9.93 7.17 10.2 4.25 12.9 7.85 8.65 9.51 9.58 8.54 4.84 12.4 6.81 7.9 10.8 10.8 10.8 10.7 10.9 9.87 9.35 5.87 11 6.35 12 5.56 11.6 10.6 7.77 3.97 11.9 10.2 9.9 10.1 8.42 9.91 8.82 0 10 10.8 8.44 10.4 12.2 12.3 5.3 8.57 10.1 0 11.8 9.93 10.5 10.4 8.45 9.05 7.94 11.6 8.5 9.44 10.7 10.4 3.92 4.49 8.81 10.4 6.24 6.77 4.72 5.65 10.7 7.41 2.13 3.97 2.31 7.65 5.03 6.26 10 4.12 7.96 9.01 4.89 9.62 8.04 8.36 9.97 7.55 7.24 9.01 8.7 8.12 8.24 1.7 9.79 9.15 7.61 6.57 9.94 10.9 6.33 5.77 6.9 11.1 10.9 9.49 9.13 9.46 9.6 8.68 9.76 9.6 11.1 10.5 9.87 10.7 7.11 9.65 7.38 10.8 7.11 9.7 10.1 11 9.14 10.4 0.65 9.73 9.87 9.05 7.88 9.81 11.3 2.96 6.28 2.31 6.53 6.97 10.2 9.38 10 6.91 9.57 10.3 9.77 5.32 6.8 3.32 3.62 9.27 0 2.46 10.3 8.01 11.4 3.68 11.9 11.5 8.37 9.76 7.87 11.9 11.7 3.68 10.7 3.24 9.5 8.58 3.06 8.1 11.6 7.91 7.1 11 9.14 2.31 6.35 9.2 9.36 1.43 8.58 11.6 7.51 3.15 11.1 5.8 4.52 4.52 3.15 8.96 9.85 8.48 11.4 11.6 5.54 1.7 11.3 8.93 9.57 11.4 7.59 10 11.2 9.6 6.15 10.3 11.7 10.2 8.62 6.46 8.11 11.5 8.57 10.1 8.65 6.59 9.5 4.63 11.7 7.13 10.7
+TCGA-25-1319-01 5.7 7.47 11.9 6.15 6.9 8.77 1.77 2.63 2.48 1.07 2.75 7.92 6.78 5.79 4.53 9.11 10.9 11.1 11.6 10.8 9.53 10.9 9.58 2.09 10.1 8.94 4.39 9.86 4.81 7.4 7.7 7.59 5.22 2.42 3.41 -0.35 1.6 6.78 0.77 8.82 5.5 1.85 3.58 0.2 5.43 2.84 1 6.48 11.8 7.37 4.4 6.1 9.38 11 4.77 3.22 6.02 0.53 5.79 6.47 8.28 6.29 8.28 8.36 2.64 2.04 6.63 7.96 11.3 3.89 4.88 4.39 2.29 6.92 3.87 5.28 5.83 5.51 3.18 2.28 3.46 2.5 4.28 6.39 7.77 4.74 6.36 2.29 2.26 4.14 9.56 3.95 6.76 9.45 4.19 2.76 -0.01 2.19 5.56 4.15 3 5.8 0.47 4.9 1.79 2.89 6.98 7.81 8.84 4.61 2.63 0.37 7.71 5.03 7.17 0.86 0.46 4.38 7.31 4.59 3.03 5.88 3.71 4.37 0.26 7.04 2.34 3.03 2.62 14.2 3.38 2.9 6.49 6.31 3.35 1.44 4.43 1.11 4.2 8.7 7.59 10.3 1.55 1.58 5.87 12.1 -1.78 11.7 2.77 3.65 4.2 0.01 6.91 10.2 11.1 1.6 2.1 3.27 8.99 2.93 7.26 5.9 0.88 -0.98 8.55 6.9 6.64 2.85 8.96 5.85 9.53 9.51 3.17 5.21 4.83 2.88 2.28 8.08 7.14 5.61 5.25 7.9 4.52 3.77 4.32 2.02 5.23 0.19 9.15 5.35 9.04 8.68 3.99 4.34 4.21 7.12 6.89 8.6 9.3 7.75 11.6 9.89 8.88 9.71 7.16 7.89 8.9 10.5 10.6 10.7 6.21 13.7 11.5 10.7 9.89 9.57 8.19 11.2 6.15 10.7 9.12 9.09 10.7 11.7 8.19 9.77 -0.54 10.6 8.62 13 8.95 4.32 9.21 10.9 8.81 5.66 11 4.46 10.7 3.11 7.94 8.04 12.8 12.1 12.8 11.6 13 12.6 5.61 12.7 8.94 8.52 5.66 10.1 9.47 12 10.6 12.8 2.07 13 4.57 10.2 9.84 10.5 9.88 10.2 4.79 11.3 11.9 12.3 8.84 6.33 8.71 9.7 11.6 7.41 0.38 13 11.1 11.7 11.4 10.6 10.9 8.43 8.56 10.9 9.42 9.49 11.4 9.74 4.63 12 9.46 6.92 11.1 10.2 6.73 12.2 7.68 7.12 8.31 12.1 10.5 8.18 9.82 12.5 3.81 10.4 7.92 8.28 12 10.6 1.66 8.5 6.77 8.83 10.5 6.63 8.93 7.69 10.8 11.2 9.22 7.75 9.85 10.2 11.9 8.74 10.2 11.2 10.3 8.64 12 7.78 10.1 9.52 8.07 7.96 8.2 7.7 10.8 9.37 9.11 10.2 7.88 13.5 5.49 9.64 12.7 12.5 10.9 3.74 9.87 -0.82 5.6 9.4 10.3 12.4 1.43 11.8 6.78 9.78 10.9 10.2 8.97 7.93 7.25 12.7 9.35 5.54 4.51 12.3 10.4 12.2 10.3 7.39 8.19 10.8 7.2 7.92 8.86 10.4 7.59 9.4 10.2 11.8 6.63 9 6.41 9.44 9.83 9.65 10.2 7.38 5.97 11.7 10.1 4.88 7.14 4.26 5.43 12.4 9.76 9.32 6.55 10.8 10.1 11.2 11.9 6.72 9.6 8.42 10.7 8.62 9.35 11.2 9.85 10 8.25 6.71 10.5 11.6 5.37 11.8 8.08 10.6 10 10.5 2.14 10 11 13.8 8.87 9.32 6.04 6.68 7.68 7.7 8.43 10.7 9.36 12.4 11.2 1.97 11.7 10.2 9.91 7.13 6.28 10.2 5.2 9.12 5.73 11.9 9.01 8.5 7.86 10.6 7.82 4.51 8.01 10.3 11.9 1.5 10.5 7.75 2.28 3.71 3.07 8.36 8.59 3.2 9 0.98 10.9 9.66 6.89 10.8 10.2 6.93 14.8 11.9 -1.91 10.7 10.3 10.3 13.7 10.2 8.65 2.19 6.13 7.75 8.99 8.87 13 7.36 7.44 9.96 7.69 10.6 10.6 14.6 8.84 10.7 8.82 10.2 9.04 9.41 8.79 14.5 -0.68 6.9 6.23 16 9.68 10.8 11.4 7.92 14.1 11.2 8.51 10.8 9.88 10.9 10.6 11.3 8 9.7 9.86 7.84 10.2 10.2 10.5 7.62 8.74 12.2 8.39 3.03 10.7 9.65 11 10.4 11.4 9.77 9.66 2.01 11.5 7.99 10.3 8.92 10.7 11.1 11.8 10.4 9.72 10.4 8.61 3.97 10.6 8.08 9.99 9.56 10.8 3.03 9.01 9.01 10.3 7.71 11.2 11.8 9.95 12 11.5 9.29 9.38 11.9 11 11.2 9.35 4.42 14 10.7 12.6 10.3 12.1 12.1 13.6 11.2 7.52 10.3 13 11.6 6.13 7.87 9.78 6.69 8.46 9.34 11.1 10.2 8.11 10.5 9.56 8.8 1.5 5.24 10.7 9.45 7.34 13.2 8.82 12.9 10.3 11.6 10.6 11.7 11.7 7.66 1.7 11.6 9.61 8.73 11.7 6.63 9 4.59 10.1 10.5 11.9 11.5 10.8 6.63 11.2 10.8 12 6.55 11.2 9.33 11.6 9.63 9.54 9.19 10.9 8.66 9.8 8.15 11 1.63 3.86 10.4 12.8 8.38 10.1 12.6 9.94 3.12 9.76 10.2 12.7 12.4 12.2 13.3 6.14 7.76 8.5 7.81 12.9 9.6 0.29 8.62 8.02 11 10.3 8.93 9.86 11.7 2.18 7.31 11.4 7.75 10.1 8.84 5.86 10.3 11.3 9.92 10.7 7.94 11.7 9.6 8 9.98 11.6 10.2 11.4 9.9 11.9 8.1 6.29 8.93 6.25 9.56 11.2 9.01 12.8 13.5 8.73 10.7 6.51 11.4 2.72 8.62 7.66 8.69 4.55 7.25 9.99 9.11 7.1 3.15 10.5 5.26 9.97 10.8 14.7 10.5 6.22 12.6 11.3 7.34 5.93 2.99 5.15 10.6 3.18 8.23 8.11 5.15 11.9 9.08 11.2 5.89 8.39 5.4 10.1 8.38 10.5 2.28 4.06 11 7.35 1.43 5.62 13 11 2.87 4.11 8.44 2.71 10 11.1 10.8 4.49 9.25 14.5 7.25 10.8 11.8 8.52 11.6 12.9 10 11.6 8.76 8.09 7.26 11.5 5.23 4.02 3.19 2.16 10.2 10.3 11.2 2.53 8.86 8.3 4.36 4.92 10.4 10.6 6.09 9.21 13.1 8.53 4.79 10.1 8.52 11.5 10.8 10.2 12.5 7.64 10.7 11.1 8.69 10.8 10.9 10.3 6.69 9.04 8.66 9.9 6.96 12.2 9.47 7.97 7.06 3.3 8.92 12.8 8.16 1.64 3.93 12.3 8.6 0.82 2.44 9.05 8.76 10.9 8.54 6.65 6.75 8.71 9.37 3.68 6.89 9.55 7.89 10.2 8.96 8.28 0.52 6.23 4.25 11.2 9.19 3.65 12 7.65 8.09 6.68 10.4 12.9 4.54 7.12 4.35 8.67 7.81 9.32 8.93 9.85 11.4 7.2 4.72 6.92 6.73 8.07 -0.57 4.26 8.92 9.89 3.22 0.48 12.2 0.86 9.82 8.54 8.13 0.72 10.1 9.05 11.5 8.84 2.31 10.2 10.9 7.07 10.4 8.39 10.1 10.8 10.1 8.41 3.31 6.1 1.92 11.7 9.88 13.8 2.7 12.1 11 11.7 10.3 12.3 6.47 8.47 11.7 11.6 9.74 0.96 11.9 2.52 12 5.28 9.64 11.2 7.38 5.03 9.94 11.7 11.8 11.9 9.16 10.2 12.3 12 11.6 10.5 11.2 10.4 11.2 12.7 11.4 13 11.3 12.2 7.63 11.9 12.5 8.76 8.55 12.8 12.4 13.4 12.9 9.24 6.41 9.71 8.82 9.93 11.4 9.77 9.11 12.3 4.27 12.1 13.3 11.6 11.5 6.96 7.91 12.9 8.07 12.3 7.05 9.85 9.81 6.32 10.3 8.03 7.48 1.58 1.84 8.46 9.26 5.35 12 6.6 10.1 9.27 11.1 7.43 8.65 8.32 10.2 9.16 2.91 6.98 2.48 5.89 8.53 9.85 5.8 12.2 8.63 8.82 10.6 8.93 8.34 8.62 9.6 6.49 8.96 11.1 8.85 10.4 10.6 9.97 9.88 9.88 9.44 10.7 10.4 7.39 3.75 8.13 10.3 9.8 9.03 8.21 5.79 12.2 10.6 9.35 9.86 8.14 4.99 9.6 11.9 13.4 8.11 8.35 10.7 9.87 9.35 6.86 10.4 5.97 4.73 9.44 10.6 9.3 12.2 7.48 9.07 9.34 9.09 4.65 10.1 7.65 10.5 10.3 8.27 8.37 10.6 10.3 10.1 8.74 8.17 10.1 3.64 8.69 9.03 8.61 2.61 10 0.89 8.11 5.92 8.26 3.36 10.5 9.19 2.56 13.3 10.2 10.7 3.82 9.89 7.48 8.57 4.55 3.36 9.76 10.3 6.25 5.36 3.28 8.09 8.35 9.48 10.1 12.9 9.45 11 7.79 10.3 9.84 8.96 10.7 11.5 8.14 4.68 12.2 11.5 5.7 5.31 11.2 9.4 5.94 8.66 4.37 12.5 7.17 9.13 6.98 5.97 8.37 11.2 11.4 0.65 8.51 10.2 7.94 7.7 9.37 9.83 11.8 9.17 6.5 8.64 8.42 6.01 8.19 9.8 6.71 10.6 8.86 8.7 9.16 8.8 0.54 9.18 7.45 11.9 3.21 13.4 10.6 2.96 6.27 8.89 10.6 11 7.63 8.41 10 13.4 8.72 8.43 9.73 9.23 5.77 6.4 10.2 11.5 5.74 7.23 9.26 5.92 8.4 5.5 9.58 8.02 10.1 0.4 1.32 9.32 10.4 8.2 9.42 10.8 8.19 5.64 11 6.2 10.9 7.11 9.87 5.46 9.03 8.3 10.6 9.29 8.62 6.42 1.19 5.31 6.9 12.1 10.7 9.66 8.68 5.94 10.8 9.3 10.2 8.38 9.09 4.62 10.3 6.35 12.2 8.51 8.54 5.67 7.88 9.18 8.18 10.4 14.6 10.8 9.55 7.59 8.25 7.83 9.57 12.5 10.1 3.82 10.6 7.17 11.7 9.96 7.79 9.96 12.5 3.32 11.2 8.17 4.49 11 5.18 -0.65 8.23 9 0.11 9.47 10.7 10.6 9.29 10 8.35 9.55 11.4 9.9 9.22 7.79 5.97 7.47 11.3 10.7 0.27 12.1 8.62 11.2 9.92 12.3 10.6 12.2 11.6 6.27 7.77 8.5 1.4 11.6 9.7 8.56 10.3 10.2 10.9 6.92 8.09 2.82 11.6 8.05 7.22 1.82 7.68 6.3 7.52 8.63 0.92 4.3 7.39 9.63 5.99 8.7 1.97 11.5 6.41 8.06 -0.21 6.51 9.4 6.58 6.1 10.7 3.55 1.88 4.81 5.52 8.08 5.86 3.3 9.58 3.42 5.73 1.75 -0.31 5.23 5.87 9.7 7.58 9.07 5.8 7.8 3.28 9.69 5.66 3.02 10.8 6.33 8.38 9.25 7.97 8.24 9.67 0.3 5.83 9.4 5.27 6.13 4.65 7.3 10.8 4.02 5.2 5.6 7.45 7.84 10.5 0.67 8.83 7.22 8.61 4.68 9.73 8.38 3.45 8.78 9.21 10.8 9.58 9.39 7.51 3.88 6.03 2.59 6.87 4.32 11.3 11.8 7.61 8.66 5.95 11 9.86 8.36 6.19 9.54 9.94 7.5 5.31 5.14 10 10.9 8.79 4.75 6.54 5.02 6.55 10.4 8.02 11.5 8.61 7.51 4.93 8.48 8.89 10.1 11.2 6.68 -0.11 1.45 10.7 10.7 8.25 6.24 6.53 9.27 9.27 10.6 7.4 9.11 9.28 7.31 5.74 0.1 2.43 6.07 4.14 6.57 9 7.95 6.43 8.9 5.9 2.2 8.31 9.7 8 0.44 9.7 9.85 5.65 7.54 7.74 2.24 7.59 8.25 7.32 10.4 8.8 7.74 9.75 7.51 12.3 7.4 11.9 8.32 10.2 10.9 1.05 11.5 3.57 8.72 8.44 10.9 7.82 7.16 9.56 3.65 10.3 5.63 5.37 0.98 13.7 1.31 10.1 6.02 5.9 7.21 2.81 0.07 8.06 0.04 -0.11 10.3 7.49 5.39 10 8.55 -0.41 3.48 9.36 5.95 9.34 9.89 2.54 10 7.44 4.06 1.48 9.02 8.25 11.3 5.36 8.41 9.37 9.05 2.9 8.69 3.03 1.57 3.58 9.57 9.43 4.57 11.1 5.86 4.39 6.47 13 9.66 10.5 1.88 2.12 6.3 10.5 10.2 6.49 8.6 12 1.13 6.23 9.84 9.15 9.27 11.2 7.2 7.18 0.34 7.24 1.3 8.37 7.2 9.24 9.62 5.45 6.9 9.38 11 6.34 1.06 1.51 8.63 8.61 9.34 6.01 8.69 5.54 6.92 8.53 8.66 7.45 8.6 14.9 13 5.87 2.25 3.85 8.7 7.33 5.61 10.4 10.7 8.26 6.49 10.2 5.23 8.53 9.52 10.7 12.1 8.52 10.1 4.38 0.91 9.38 8.45 9.53 5.28 5.82 5.09 8.23 9.24 15.1 3.05 5.41 11.3 4.78 2.56 7.35 12.4 9.9 9.38 9.18 5.85 7.53 13.2 3.78 9.34 8.52 3.05 8.63 8.31 9.38 4.99 9.02 11.1 1.61 1.92 1.03 11.5 2.57 5.99 7.53 7.15 6.41 8.77 8.53 5.44 6.91 9.86 7.83 5.84 7.51 9.05 9.28 3.87 9.25 8.54 5.7 12.2 8.16 9.16 9.16 1.06 11.7 4.67 9.02 1.68 7.38 6.3 7.7 6.8 2.59 8.99 6.68 4.67 4.67 5.39 5.58 4.51 8.35 7.69 6.49 7.06 8.77 9.48 7.34 7.32 2.95 9.34 -0.05 7.46 7.5 7.33 3.2 6.02 7.69 9.91 0.06 1.01 7.3 9.86 3.71 3.06 7.98 9.15 8.05 10.8 9.05 4.74 8.12 9.5 8.8 10.4 11.2 3.52 5.06 8.95 9.21 6.93 5.2 2.2 7.49 10.5 9.72 4.43 3.22 2.63 6.47 0.55 5.88 8.39 7.97 10.2 8.38 7.08 6.05 4.86 10.6 8.33 5.59 7.75 8.7 3.99 5.08 13.9 9.27 9.25 0.03 9.09 1.46 9.32 8.68 0.12 6.91 3.46 6.58 13.3 2.39 9.08 8.97 3.41 5.26 5.86 7.61 4.58 10.7 7.56 6.86 5.37 5.28 6.49 4.23 5.8 8.59 4.39 2.6 0.81 4.67 8.07 7.1 9.07 9.26 7.32 4.4 9.85 8.9 5.92 10.7 8.06 7.34 6.9 7.14 7.91 6.98 0.95 5.49 7.34 8.82 7.68 8.35 12.1 6.48 5.22 1.95 5.58 9.19 12.3 8.46 6.95 9.51 2.79 7.08 9.14 2.89 1.66 2.11 6.4 3.48 5.68 0.39 3.44 6.83 9.59 5.4 9.05 6.47 4.34 11.3 9.72 7.99 7.8 7.56 4.49 2.94 10.7 5.4 6.58 3.42 10 14.3 9.84 9.35 9.57 13.5 10.7 6.41 0.32 5.46 7.18 2.95 11.7 3.37 8.68 8.1 12.8 8.43 8.9 12.2 -0.09 10.4 4.67 9.67 11.1 9.11 9.46 4.79 9.85 10.6 8.6 8.38 12.2 0.99 7.48 6.92 2.89 2.02 5.81 3.86 3.48 10.5 8.11 4.98 5.16 3.41 4.93 12 10.9 9.91 7.54 7.32 9.44 3 9.31 10.8 8.86 11.4 10 5.7 11.1 8.57 7.17 8.57 8.38 6.4 4.93 8.31 9.7 7.02 9.57 8.48 9.4 9.13 5.85 9.36 7.16 6.45 7.26 8.05 8.84 2.37 2.53 6.15 8.25 11 4.04 6.02 7.38 2.61 6.78 7.69 7.21 7.11 9.88 4.35 7.19 8.94 8.97 2.98 8.51 7.25 9.72 9.72 6.9 4.33 9.22 8.41 5.02 7.86 1.98 5.64 9.05 6.46 8.2 8.13 8.73 4.65 8.03 0.95 2.24 8.64 4.02 7.23 9.66 5.49 9.75 12.3 9.02 4.97 8.29 11.8 2.37 7.62 11.9 9.46 10.6 10.1 9.03 4.29 10.2 7.39 1.91 10.1 0.55 1.73 8.52 7.84 7.48 6.67 5.87 8.41 0.97 1.38 7.08 10.6 7.3 8.87 2.92 6.66 5.15 7.94 8.44 7.19 12 6.64 8.24 8.96 6.97 12.3 4.34 8.27 3.53 8.64 8.18 4.33 6.16 6.92 3.51 8.01 5.4 9.16 10.2 8.99 11.9 8.84 0.82 5.66 9.29 5.97 11.4 1.92 8.29 9.81 9.79 8.05 8.86 2.69 7.08 8.56 8.27 9.2 6.96 9.41 10.5 9.14 4.63 6.54 10.8 4.17 7.04 11.3 6.6 11.4 9.42 5.88 12.3 11.1 9.83 9.84 2.49 7.52 10.1 8.68 1.92 8.97 4.57 9.59 2.31 9.89 12.6 2.44 2.7 8.96 3.11 7.46 4.6 11.2 3.05 5.61 10.4 5.37 5.61 13.1 11.9 11.8 9.05 9.02 6.28 6.2 4 9.31 9.87 5.75 7.61 10.5 9.53 6.99 9.56 7.94 7.75 4.36 4.21 6.43 10.1 4.23 3.96 9.74 4.03 5.1 10.5 8.74 6.21 4.4 7.95 7.59 12.3 7.46 3.07 9.9 8.68 8.08 5.7 6.13 10.6 9.21 6.95 4.1 11.5 8.6 1.57 11.7 9.96 9.21 4.96 7.8 8.28 3.1 6.13 5.32 8.89 6.4 10.2 12 5.29 6.06 5.42 8.62 8.2 7.74 10.9 11.7 8.91 5.49 7.58 9.98 8.38 9.74 6.78 10.1 9.59 7.09 4.09 7.19 11.3 11.4 3.66 7.2 9.88 7.13 0.63 9.91 8.8 3.16 -0.9 10.4 3.46 4.77 7.36 9.48 9.42 6.83 5.48 6.95 8.21 5.13 8.1 10.8 7.52 9.22 5.58 1.09 10.6 9.02 6.35 9.26 10.7 5.24 6.77 7.96 6.16 3.12 7.75 9.44 0.92 10.3 2.02 10.6 2.04 7.78 8.93 4.61 1.83 12.8 9.81 8.87 1.46 1.88 2.46 3.75 2.97 0.58 5.05 9.83 3.61 9.52 10.6 9.85 12 8.47 10.8 10.2 7.97 4.24 10.9 11.9 8.46 11.1 10.5 9.95 6.13 8.43 7.99 6.39 4.76 6.48 6.77 7.09 7.69 7.65 6.61 6.04 1.23 0.15 8.49 7.26 7.84 9.56 8.34 8.82 8.28 3.7 3.62 8.55 7.85 4.92 5.1 12.6 8.8 5.55 8.7 2.49 1.96 -0.29 6.82 3.97 9.89 6.16 5.31 5.72 7.41 4.63 9.42 4.39 8.37 6.12 11.8 7.79 7.13 11.7 1.39 4.29 6.05 12 4.9 7.45 10.8 7.1 2.76 7.86 7.37 10.2 6.3 7.21 6.45 8.59 9.42 10.9 6.45 4.22 3.49 4.18 0.23 6.92 9.14 2.93 8.73 5.23 1.71 12.2 7.83 5.46 8.18 9.36 3.21 8.78 8.35 2.23 0.13 9.3 1.72 4.84 2.38 7.74 2.65 7.63 5.5 6.66 7.65 1.19 12.6 7.31 7.09 3.99 4.4 5.09 9.57 2.55 10.6 8.66 5.57 0.91 5.59 4.11 7.84 3.55 0.95 1.06 9.58 7.29 6.21 4.7 0.42 10.6 1.84 8.86 0.72 9.34 9.46 7.3 9.61 5.8 8.38 7.71 6.3 11.7 3.34 7.17 6.58 8.65 11.4 8.33 9.95 1.98 0.95 3.43 3.23 3.51 9.68 4.96 5.72 12.2 6 5.12 8.2 1.83 7.85 3.91 6.66 6.59 7.86 2.74 10.4 7.47 9.45 0.33 10.1 8.4 6.31 6.68 6.32 10.4 10.4 0.85 10 4.7 8.89 8.13 5.62 9.1 5.73 6.69 9.37 5.95 10.5 7.52 2.92 8.96 5.55 6.45 8.43 5.94 6.12 8.94 6.99 6.86 7.54 3 2.91 6.02 9.33 7.74 3.17 7.11 9.17 5.58 9.3 7.86 8.95 6.29 8.09 9.7 9.11 7.49 8.57 4.85 -1.09 11.4 3.41 0.96 3.85 9.34 10.9 5.34 2.45 9.36 6.96 7.2 10.1 1.19 9 9.42 2.38 11.1 6.17 3.92 3.96 4.14 -0.65 3.16 2.98 7.72 8.81 8.9 10.4 8.62 10.2 9.01 3.94 7.04 13.1 11.8 3.33 7.38 4.11 7.35 14 9.68 10.9 1.87 4.56 12.8 4.25 6.67 8.9 4.11 4.3 2.32 2.36 2.97 0.22 8.21 4.9 1.48 7.74 10.1 7.38 7.37 11.2 1.23 3 3.92 5.33 7.14 3.37 6.94 2.06 11.3 8.35 9.99 5.01 7.51 3.53 9.77 8.8 9.37 5.1 5.84 9.83 4.7 3.81 7.68 7.8 13.2 9.75 13.7 7.22 6.75 1.34 5.99 9.87 9.37 5.95 -0.07 2.71 2.51 9.09 8.35 9.06 9.64 6.51 1.93 8.31 4.53 3.77 2.44 7.98 4.73 7.69 7.85 6.76 11.5 -1.48 7.13 4.36 8.03 7.62 6.1 9.03 2.89 5.07 9.82 8.62 12.4 7.36 6.95 4.03 7.51 5.31 3.92 9.12 4.44 10.6 9.72 7.16 9.56 5.24 10.5 10.1 10.3 9.99 1.05 3.98 5.75 8.68 4.4 10.5 9.4 7.08 7.72 10.9 5.86 8.69 9.31 9.64 7.93 3.54 8.25 7.5 8.07 9.2 9.08 7.38 5.19 7.86 1.35 8.25 0.79 7.45 4.57 2.95 10.5 7.31 1.66 4.01 7.59 7.73 1.08 10 10.8 8.67 7.86 7.83 11 7.88 7.85 10.6 7.85 7.71 11.8 11.6 9.3 11.7 10.5 8.71 9.17 2.57 4.74 10.7 8.18 6.41 5.71 7.15 2.56 9.71 4.61 9.26 8.58 6.96 3.37 9.51 11.2 3.41 7.15 6.74 7.87 8.65 9.06 4.75 7.41 8.41 4.1 -0.53 8.94 11 0.33 9.8 9.14 1.38 6.16 8.1 0.02 7.2 6.2 7.41 9.02 9.57 3.92 1.13 5.17 8.28 8.44 7.78 9.89 2.3 1.22 10.8 2.61 2.25 8.57 6 1.28 6.44 5.97 6.7 9.65 9.37 7.87 6.47 6.18 0.29 14.1 6.5 9.01 4.83 4.53 7.65 2.46 12.4 5.59 7.73 6.86 9.47 9.67 3.38 10.1 1.31 8.5 3.97 5.5 6.32 5.67 7.5 2.64 2.91 6.17 -0.01 7.5 3.71 9.68 5.52 9.52 4.72 5.76 2.42 0.97 4.88 9.49 5.82 9.31 5.43 8.17 8.4 5.86 8.99 7.49 1.19 3.5 4.56 0.39 3.22 6.58 8.12 4.8 10.8 8.26 8.95 4.9 10.6 1.62 -0.41 8.83 5.06 2.2 11 4.27 2.43 11.3 10.8 -0.47 10.3 2.06 8.96 1.42 1.23 11.8 8.77 4.04 3.04 9.72 9.47 -0.03 5.98 13.2 7.58 8 6.93 8.23 5.71 1.93 4.33 8.4 8.2 10.1 11.7 5.18 6.78 3.42 8.26 10.3 4.42 5.2 10.2 8.84 6.57 7.74 5.27 4.06 11.2 3.51 6.68 10.8 1.08 2.37 8.52 2.97 5.47 7.2 3.99 4.79 11.3 9.78 1.32 10.8 8.43 7.07 9.34 6.75 11.2 6.71 7.38 3 0.31 5.79 5.15 4.93 6.15 7.62 12.2 8.7 9.63 7.54 7.61 6.62 8.87 6.24 7.09 4.71 8.3 6.26 0.95 13 7.31 11 11.8 11.8 7.74 3.21 8.01 6.83 5.18 7.85 6.33 5.88 6.31 7.46 9.86 5.77 7.46 6.85 5.91 9.32 3.28 10.7 4.45 10.2 9.02 8.48 0.75 8.52 9.81 1.8 2.96 7.74 9.44 9.53 12.3 11 4.45 9.45 2.43 12.7 0.8 7.94 4.26 6.49 6.57 6.17 0.45 5.82 3.81 6.05 3.21 0.12 8.12 9.03 9.18 11 12.4 7.04 3.48 4.03 6.86 9.17 8.7 11.2 7.97 12.9 13.8 2.05 3.97 11.1 3.56 2.62 9 6.62 10.8 1.97 7.41 12.5 12.4 4.51 9.19 9.12 8.62 1.3 7.74 8.4 11.8 9.79 8.84 10.6 8.7 6.97 6.97 6.51 9.05 9.06 3.44 9.65 0.67 8.87 1.29 8.82 0.83 4.78 5.48 3.91 9.29 3.99 7.86 8.19 6.9 7.73 7.05 3.44 9.06 8.3 1.19 3.9 6.92 9.14 1.5 0.26 7.09 7.94 1.01 8.9 2.6 4.04 0.7 7.69 7.65 8.06 7.02 7.28 7.5 6.82 10.2 3.55 1.97 7.74 -0.11 1.93 8.18 9.59 4.31 9.7 5.3 2.38 9.66 6.46 4.58 3.01 3.27 4.18 9.69 7.7 6.62 8.72 1.78 10.4 1.44 11.2 7.81 1.89 6.14 2.93 7.62 10.9 5.44 9.78 0.47 9.43 7.04 10 11.5 14.2 9.45 7.25 6.87 13.6 11.7 12.2 12.3 7.44 6.28 9.54 1.37 10.1 9.67 10.1 10.1 3.24 11 7.67 11 1.27 -0.05 4.61 2.99 9.58 7.89 3.09 6.21 3.73 8.95 8.82 7.59 7.6 0.56 8.01 7.71 6.22 8.6 3.23 1.93 12.2 12.5 8.88 2.78 11.3 10.9 13.8 12.4 6.16 10.5 8.11 9.23 8.05 2.95 8.41 9.18 10.2 11.2 3.54 9.95 10.3 4.88 7.29 10.5 11.3 0.28 9.92 5.35 -0.98 9.47 9.08 4.77 3.74 12.6 12.7 9.21 12.5 3.91 10.2 13.1 9.05 10.2 8.48 7.78 5.24 9.66 4.55 9.77 6.58 11.2 4.72 5.86 9.9 8.58 2.3 5.57 3.7 10.7 10.3 9.11 11.5 11.2 9.95 9.19 6.36 8.59 9.55 9.91 8.81 9.25 9.18 5.1 6.08 10.3 1.09 9.29 10.6 12.7 7.85 10.2 7.76 8.83 7.78 8.77 9.5 6.12 8.53 12.2 11.8 9.45 11.8 16.4 4.31 1.07 9.57 10.6 8.05 8.68 6.36 12.4 11.7 14.1 14.5 11.2 9.52 7.83 8.74 7.58 8.85 9.84 8.5 4.93 6.27 12.4 8.93 9.4 9.07 5.76 11.2 8.26 8.09 6.86 10 5.78 11 6.72 8.49 -0.4 8.95 4.36 5.8 9.24 4.77 9.22 11.1 10.6 7.59 9.31 8.93 8.44 10.8 6.89 9.09 10.1 9.37 0.95 11.1 6.33 6.7 4.87 12.4 4.45 7.14 8.36 5.45 -0.2 10.6 1.2 7.81 5.34 5.05 6.67 8.78 6.91 13.1 5.99 8.02 9 3.09 6.2 10.3 13.2 8.43 12.6 9.97 7.66 11.4 13.5 14.5 11.9 12.4 3.19 8.05 0.59 11.5 4.55 8.05 11.2 0.15 0.42 3.35 9.7 6.93 9.63 7.89 4.15 3.89 8.12 8 6.81 7.03 3.49 9.44 6.42 7.96 8.88 12.2 9.78 6.37 9.1 12.7 10.2 8.99 1.93 1.14 9.6 8.49 5.3 9.06 12.5 1.12 4.4 7.59 5.27 11.1 10.9 4.79 10.8 6.38 1.81 7.48 4.88 10.9 3.73 8.18 7.34 -0.7 1.69 9.48 6.4 4.77 6.88 9.71 7.31 8.72 7.53 10.2 7.56 6.51 7.52 8.3 5.06 8.98 7.94 8.68 8.68 5.11 9.43 9.21 10.2 10.1 11 9.01 7.38 4.42 10.5 7.52 9.48 2.88 9.89 7.93 6.84 9.4 8.46 9.5 7.44 8.98 7.43 5.23 12.9 0.04 8.4 5.28 9.52 7.74 10.9 7.43 6.87 10.6 0.22 5.86 9.36 10 4.24 1.86 13.1 9.51 4.62 4.75 5.23 11.7 9.34 9.53 9.06 7.78 8.32 8.19 5.08 5.66 7.78 7.64 4.81 10.6 8.15 2.06 15.8 5.77 7.5 2.04 4.7 0.4 9.88 5.1 7.17 8.31 11.9 8.05 8.81 11.4 6.2 6.58 15.7 7.56 0.18 1.54 7.46 8.18 9.53 6.7 7.27 8.05 8.84 7.81 11.1 6.11 10.6 9.02 9.51 7.12 6.73 9.28 10.5 10.6 2.49 5.57 12.1 10.8 11.8 4.7 -0.3 8.12 4.42 9 1 10.8 6.95 7.93 9.31 7.88 10.3 12.2 8.49 7.34 9 7.29 11.2 5.21 10.1 0.93 7.37 8.53 11.7 8.81 10.2 14.8 1.25 8.12 12.6 1.67 0.07 11.6 8.64 7.71 3.03 11.7 6.71 7.85 10.5 8.53 8.96 8.64 9.93 7.08 11.8 11.3 5.94 10.9 10.3 13.4 9.46 10.2 3.75 8.36 4.62 11.3 9.87 9.08 10.1 8.44 8.81 10.2 5.91 3.57 7.77 8.22 7.99 0.24 10.7 8.44 11.3 6.8 8.07 10 1.51 12 10.6 9.81 2.14 9.43 9.83 7.07 12.7 11.1 7.74 10.2 9.09 0.19 9.94 7.78 8.65 3.67 6.58 3.49 1.19 7.09 4.51 9.48 3.66 9.67 7.6 2.7 -0.25 10.3 9.13 7.28 8.2 8.37 9.4 8.16 5.64 10.6 11.1 10.1 11.4 8.24 11.1 4.92 9.3 9.22 9.33 10.9 10.2 6.94 12.5 7.27 5.8 3.36 12.2 8.88 7.47 5.98 3.26 8.29 9.21 4.9 7.84 7.43 8.22 12.9 8.04 7.47 9.26 8.01 11.3 7.24 5.15 7.54 8.12 7.94 8.07 6.27 6.59 9.47 6.71 -0.32 9 10.3 8.46 5.71 8.31 2.86 9.57 6.27 5.93 7.5 9.59 6.04 1.89 6.37 8.06 7.77 2.9 8.9 2.93 9.84 6.51 8.47 3.2 6.03 1.13 2.9 5.88 2.57 3.01 1.93 9.48 6.58 0.16 1.11 6.71 7.9 6.15 9.06 5.3 8.5 6.48 12.2 5.58 8.45 6.95 8.36 8.34 9.1 2.91 10.8 7.98 7.33 5.19 11.4 8.12 7 7.62 9.2 7.4 9.37 2.3 9.79 8.31 8.59 8.4 7.16 7.48 1.84 8.77 10.4 4.51 10.4 5.26 5.55 3.77 8.9 6.04 5.45 6.79 2.88 11.9 3.83 9.47 9.95 3.59 9.36 8.94 8.87 6.94 10.1 8.95 8.89 11.1 8.36 0.92 10.1 9.67 8.32 9.15 6.84 8.98 0.55 8.15 5.16 8.05 6.63 9.53 4.52 9.27 8.96 9.85 5.84 12.6 10.2 5.9 9.28 9.09 3.09 8.51 7 4.62 8.75 6.13 5.01 9.42 7.19 7.19 9.02 12.6 7.77 3.57 0.88 2.69 5.89 -0.3 6.62 10.3 0.03 5.63 5.31 1.86 6.66 4.47 6.43 5.39 8.22 11.2 7.78 8.17 2.82 7.75 9.52 9.81 7.71 10.8 4.51 7.39 8.36 4.07 2.25 0.1 4.43 2.78 5.95 8.48 4.45 1.69 14.9 9.95 3 3.65 9.64 6.55 6.84 10.9 6.64 9.59 7.69 7.91 12.2 7.79 10.2 6.6 12.5 8.28 6.41 -0.04 11.6 1.99 8.37 9.38 11.1 7.22 13.1 1.8 12.2 7.38 8.03 8.84 5.5 11.6 11.4 10.4 -0.38 7.68 10.6 9.16 9.12 6.92 10.3 11.7 8.91 3.62 8.16 9.42 9.13 9.27 10.3 7.03 9.66 6.15 8.49 1.22 9.03 9.16 11.1 9.81 5.26 9.72 9.18 10.7 5.83 10 8.16 10.8 10.5 4.97 11.9 8.04 9.89 9.25 7.62 10.2 9.87 9.07 11.5 10.1 10.1 13.6 13 9.34 5.17 11.3 8.75 10 10.2 10 4.57 8.95 9.03 0.24 9.85 7.16 6.86 1.28 8.28 6.98 8.69 10.1 10.1 10.5 10.6 11.7 10.2 7.88 8.61 11.9 4.47 5.6 10.8 1.72 9.88 12 10.3 9.11 7.84 5.24 11 9.32 10.7 10 10.4 10.6 7.49 9.09 9.33 7.9 11.9 11.1 5.64 7.58 12.9 11.6 9.98 1.18 9.04 11 5.99 1 6.19 11.2 8.41 4.42 10.3 6.91 5.39 9.95 9.17 7.53 8.59 10.4 11.7 6.14 5.07 0.56 9.77 11.7 10 9.3 5.83 10 0.76 8.3 11.9 6.23 9.77 8.63 8.28 7.42 8.68 0.03 9.79 10.2 11.4 13.3 9.33 9.88 11.6 12.5 13.2 10.2 10.2 6.46 6.56 0.95 12.7 10.1 9.67 9.06 10.7 8.61 8.18 7.34 8.7 9.13 11.1 9.96 8.99 11.5 4.57 5.79 8.95 10.7 10.8 10.3 8.1 8.87 10.6 11.4 10.9 9.26 0.97 9.99 11.7 10.7 10.2 9.98 10.2 7.5 11 11 10.9 4.05 8.49 9.97 10.8 9.39 7.92 8.35 7.71 9.46 10.3 11.7 7.33 7.19 12 11 4.88 10.2 10.9 10.1 11.6 11.5 9.45 9.19 8.79 8.19 10.7 9.31 1.24 8.92 5.88 11 9.83 2.44 10.3 9.58 10.4 5.09 8.69 9.46 10.8 6.12 1.52 7.52 9.81 9.1 11.1 5.41 10.5 7.62 10.2 10.6 7.86 11.4 10.3 7.78 9.79 8.01 10 12.3 9.45 10.9 9.44 7.67 8.95 4.64 6.74 9.98 1.8 10.3 9.53 10.8 10.6 9.62 11.1 10.6 13.3 10.2 9.36 9.44 10.4 9.99 10.6 10.7 13.1 10.5 9.21 11.4 10.3 9.59 9.23 10.2 9.07 9.61 9.88 9.74 8.32 10.4 5.55 7.93 9.82 9.82 10.8 9.89 10.2 11.1 12.2 11.7 11 10.8 13.4 6.16 9.14 12.2 10.7 10.6 10.1 9.25 9.74 10.2 12.3 4.25 11 11.3 4.63 9.11 9.18 10.2 9.12 12.1 11 11.9 10.4 1.78 10.1 9.89 1.84 9.38 7.94 10.4 9.84 10.6 6.73 9.18 5.79 7.79 10.4 6.84 6.9 9.58 8.3 8.82 2.21 8.43 10.9 9.32 10.9 9.93 9.9 10.7 5.38 6.41 10.2 11.4 7.17 3.94 7.3 9.13 11.5 5.88 9.83 10.5 9.01 4.25 9.22 9.84 5.97 10.8 12.8 7.74 9.92 9.69 4.97 9.32 10.3 11 9.93 9.33 9.34 10.7 10.3 0.72 2.32 10.2 7.04 6.86 10.5 8.72 9.72 7.63 10.4 10.5 11.6 10.9 8.96 5.41 9.73 9.46 3 8.02 9.25 1.84 9.57 9.97 7.98 12.2 8.91 9.98 8.09 9.79 6.86 8.99 2.32 10.6 9.69 10.8 11.2 7.34 9.41 9.71 13.1 9.99 9.26 9.97 10.5 8.51 10.6 8.75 6.45 8.14 10.4 7.8 10 12.9 8.52 9.77 9.69 2.09 12.8 10.7 10.8 11.7 10.9 7.9 9.71 9.13 10.1 2.19 9.64 10.4 8.24 11.2 10.6 8.92 12.8 11 11.3 9.53 8.75 8.82 9.52 8.14 10.3 10.3 11.5 8.7 9.76 9.69 11.6 11.3 9.46 9.12 10.1 8.87 11 11.2 10.1 10 9.1 9.33 10.6 9.79 9.4 8.15 8.7 9.77 10.4 10.6 5.61 9.86 8.7 10.1 10.2 8.33 1.52 6.61 7.87 1.49 9.86 11.1 7.43 9.81 10.1 4.1 10.9 10.4 7.19 7.24 9.14 12.1 11.8 9.57 7.63 10.9 11.4 12.6 9 8.46 6.7 9.44 3.09 7.93 5.96 11.2 7.75 8.29 5.69 13 10.8 15 10.3 10.2 12.6 12.4 10.9 10.9 13.5 9.36 10.4 7.89 9.26 5.03 8.8 9.58 0.67 4.03 13.1 8.99 6.55 10.1 4.15 11.1 9.46 8.89 9.45 10.6 10.5 10.5 10.5 10.7 9.62 9.6 9.04 10.4 9.97 3.81 1.71 12.8 10.2 11.4 13.2 8.57 10.2 8.51 7.56 10.5 10.3 7.93 11.8 6.86 9.65 7.08 3.29 6.98 6.42 5.06 10.7 -1.26 9.25 -0.65 1.91 8.78 11 10.4 10.5 5.87 8.54 9.43 10.3 10.3 10.4 11.8 11.6 9.65 10.2 1.31 5.22 11.9 8.23 7.88 10.6 0.36 6.75 9.19 3.78 12.6 9.89 11 2.06 12.2 10.8 9.08 10 11.8 9.04 6.68 9.03 10.2 7.46 9.55 9.36 9.23 10.4 7.99 7.03 11.2 5.96 9.99 11.5 9.92 10.9 10.6 5.44 7.52 8.95 9.88 10.2 1.8 -0.56 1.83 4.61 12.5 9.08 10.7 10.8 10.2 9.41 10.7 8.76 5.84 10.1 8.62 11.6 10.2 10.8 8.71 9.52 12.2 10.3 8.91 9.2 8.75 9.6 9.28 11 11.8 6.69 9.68 4.83 9.74 4.85 9.79 6.71 10.7 11.2 2.38 7.25 10 10.6 10.2 8.13 6.44 7.15 1.29 7.27 5.87 1.64 12.3 9.22 9.77 10.1 9.53 12.2 11.4 2.94 1.41 8.21 8.53 8.6 9.77 10.3 8 9.74 8.73 7.4 9.89 7.98 8.02 9.06 11.9 9.8 1.22 5.61 5.17 3.42 8.77 2.67 9.5 0.48 9.03 6.9 4.4 0.42 9.23 8.48 5.93 6.48 7.23 6.65 1.81 2.13 5.31 11.6 9.8 10.1 8.69 5.18 5.92 15.9 7.26 10.7 6.46 15.5 11.1 10 12.6 7.73 4.43 5.82 6.24 2.16 2.83 11.8 6.88 2.07 4.55 6.59 4.27 9.62 0.95 3.35 8.78 11.1 9.28 8.75 3.95 5.45 8.04 7.82 11.6 4.93 9.65 8.2 8.31 9.71 5.69 6.81 14.9 7.44 4.57 10.2 3.46 6.31 8.76 6.92 7.07 -0.01 9.18 10.6 8.13 8.18 2.24 6.39 7.18 8.82 5.52 6.82 9.32 4.53 1.37 9.95 7.15 1.99 9.07 9.94 4.51 5.49 5.05 0.04 9.37 7.67 6.03 5.07 9.89 9.41 6.19 3.52 12.5 3.77 3.04 10.2 6.39 8.39 8.38 8.63 8.78 1.55 5.17 6.37 0.11 0.44 7.17 10.3 9.45 2.13 7.25 2.69 8.13 -0.2 8.89 5.58 8.52 6.86 -0.33 9.7 0.19 7.64 5.31 5.68 11.4 8.1 5.75 6.17 6.43 6.21 8.18 9.48 7.76 4.59 7.57 3.03 4.89 8.64 2.1 8.28 6.98 4.22 4.96 7.83 8.87 3.82 2.76 6.7 8.25 0.11 6.19 7.2 0.99 6.78 4.17 2.34 2.15 1.39 5.22 0.01 9.54 4.25 2.25 3.84 5.84 4.01 5.9 6.8 5.19 8.38 3.26 8.1 2.11 9.89 2.14 3.07 7.15 7.21 0.25 2.79 1.28 8.03 9.02 2.22 6.94 4.57 5.58 9.7 9.24 8.57 0.7 9.62 9.52 9.93 7.13 9.71 2.98 2.44 7.39 8.81 8.96 10.6 10.9 3.48 13.2 8.89 10.6 7.13 10.8 10.7 9.38 8.1 7.18 10.1 11.3 4.93 7.98 8.36 9.29 0.49 10.4 11.1 9.66 3.64 6.41 9.29 10 8.83 8.3 0.18 11.9 13.1 9.11 9.78 11 7.1 0.11 11.2 7.43 5.89 10.3 5.65 10.4 8.47 10.2 8.23 8.78 9.94 12.3 7.78 10.3 6.44 7.56 7.01 8.51 9.73 11.5 5.94 9.71 9.48 8.73 3.94 7.6 10.2 11.1 10.5 12.2 10 9.47 8.63 11.1 10 7.44 8.66 9.97 8.97 8.07 10.5 7.74 8.47 4.83 8.05 9.18 10 8.58 3.02 11.1 5.91 8.83 8.39 8.37 9.98 9.88 3.58 9.92 10.3 9.95 12.7 9.15 8.52 9.96 10.7 6.25 1.04 8.6 10.9 11.2 0.73 10.2 8.47 9.35 3.43 7.63 5.67 11 8.81 6.08 6.45 9.96 2.12 9.79 0.86 1.04 3.14 5 12 11.7 12.2 10.6 10.3 8.84 9.27 10.6 9.89 11.4 11.2 8.42 9.14 11.3 10.1 11 7.44 7.68 12.2 7.71 10.7 11.1 8.6 3.17 10.2 10.2 9.44 16.5 10.5 10.5 8.63 8.95 8.87 9.6 10.8 9.62 10.5 7.28 9.61 9.41 11.3 8.3 9.31 7.13 11.6 9.27 9.68 10.1 3.34 10.9 11.2 3.49 12 9.8 8.93 9.31 11.5 11.1 8.98 7.79 9.56 11.1 10.1 10.2 12.5 11.3 8.58 4.65 7.45 8.91 9.11 9.86 10.5 7.99 1.71 4.46 9.63 8.87 10.4 1.05 8.87 7.1 8 7.9 1.29 9.7 2.21 7.88 7.8 4.26 9 7.09 9.12 10.2 8.65 11.2 11.2 10.3 8.46 7.34 8.49 12.2 9.87 11.4 7.68 6.98 8.13 9.8 10 9.58 10.7 7.38 8.99 0.92 11.5 8.74 12.5 11.6 0.15 7.83 9.24 11.3 9.92 10.4 9.35 10.6 8.55 10.2 9.89 11.4 13 10.7 2.98 9.57 9.04 9.51 8.29 5.26 10.2 6.98 8.94 8.76 3.84 6.39 11.8 11.6 7.71 10.3 9 8.6 9.76 11 10.8 10.4 11.3 8.7 8.95 11.6 10.3 10.4 5.57 10.8 4.24 9.72 7.61 9.91 10.5 2.93 8.88 0.26 9.82 9.31 11 1.25 10.3 -0.26 6.15 4.8 3.92 8.09 11.1 8.45 5.61 8.02 7.91 4.43 0.71 2 3.92 9.08 9.9 9.47 5.08 3.21 10.6 8.31 4.18 8.41 10.6 8.86 8.42 9.08 8.68 8.27 9.24 10.2 8.12 10.7 7.42 3.16 8.82 11.1 9.64 1.5 10.8 0.03 9.27 7.97 9.34 5.75 10.7 9.56 11.3 1.24 10.5 10.9 10.7 11 10.5 0.3 7.41 8.3 8.15 9.67 11.4 7.06 10.8 9.74 9.87 1.71 5.75 7.5 10.9 9.97 10.1 10.2 6.41 7.41 11.5 5.96 7.85 9.58 9.61 9.71 8.88 9.14 9.23 10.8 7.54 9.89 6.03 2.94 3.54 11.5 1.08 1.42 3.2 9.72 2.85 11.7 2.69 9.53 8.49 1.63 9.92 4.73 8.18 4.18 10.7 12.3 10.1 6.16 5.79 1.96 6.37 5.78 7.75 10.5 3.46 8.09 7.94 0.15 8.57 3.67 10.6 3.59 8.14 1.68 9.89 10.1 4.56 -0.42 9.86 7.59 3.14 5.08 7.61 0.15 11.6 8.55 7.51 8.37 5.11 2.66 4.49 9.21 9.31 11.3 2.42 7.11 12.3 8.53 6.45 9.1 10.3 13.7 10.9 10.8 9.6 8.99 10 8.59 0.12 2.83 9.08 5.11 10.1 7.57 8.46 10.5 11.2 7.76 11.2 8.35 8.06 11.7 1.59 8.72 1.04 6.12 8.38 6.71 9.88 10.7 12 5.81 1.55 10.7 12 10.4 11.3 4.23 8.5 10.4 9.75 9.27 7.38 7.81 7.89 7.99 9.7 2.69 11.1 1.36 7.27 11.2 5.22 11.7 9.55 6.47 -0.74 9.39 6.81 11.5 12 8.4 9.58 6.19 5.78 7.63 5.92 4.94 9.06 5.35 6.23 10.6 3.71 7.97 3.03 4.44 7.8 11.3 2.07 10.2 7.13 7.88 8.81 -0.47 5.1 9.81 12 6.74 9.17 9.83 2.93 9.61 1.39 6.26 7.56 6 11.3 8.65 11.6 8.16 6.57 4.51 10.3 6.61 0.74 7.39 1.2 4.03 8.98 7.61 11.5 1.18 7.2 11.9 3.59 4.67 7.65 9.85 7.72 9.57 7.51 4.16 8.75 9.77 10.8 8.6 10.4 8.92 9.72 10.5 10.8 11.2 9.14 6.55 3.63 8.42 10.6 1.59 9.31 6.02 3.42 4.51 9.83 8.42 8.88 10.7 5.32 9.46 3.92 1.59 8.24 8.46 9.69 1 8.98 6.16 9.89 12 4.52 9.74 12.1 0.88 10.1 10.6 11 8.91 3.15 10.9 10.1 8.95 10.5 11.6 9.69 8.44 9.55 9.5 8.15 6.14 10.6 5.09 9.1 8.55 3.73 10.9 6.8 9.75 4.47 7.7 6.14 12.4 10.5 10.3 7 11.2 7.61 7.77 10.2 4.34 8.78 9.02 1.36 5.85 8.2 10.6 8.18 6.12 13.2 5.83 10.9 8.2 10.8 12.4 8.49 9.78 6.63 7.92 13 11.6 4.04 3.92 10.1 14.6 -0.35 6.58 13.4 12.2 3.27 1.6 4.86 11.2 5.12 -0.03 9.04 8.07 4.93 10.8 1.87 -0.48 12.1 2.62 6.65 9.3 10.5 11.3 10.7 11.4 10.2 10.9 10 2.49 10 4.12 0.46 9.14 4.65 10.3 13.3 2.44 8.16 5.64 3.7 9.08 7.69 3.28 2.46 3.59 8.96 2.84 6.59 1.58 8.8 7.26 1.32 6.84 1.81 6.44 9.37 2.97 5.39 7.5 3.16 5 5.71 2.47 9.4 8.51 6.16 11.3 10 4.17 2.51 3.33 10.2 8.7 13.5 5.43 9.21 6.42 8.8 5.52 6.7 7.89 1.71 6.44 6.05 4.86 4.35 9.82 2.95 7.35 8.29 11.5 1.47 8.59 3.61 4.85 3.45 4.46 1.92 6.22 1.34 10.4 7.02 7.54 5.49 8.66 7.13 8.97 4.79 6.04 4.55 2.11 7.92 2.37 7.47 -0.1 7.97 -0.61 6.59 2.57 3.59 8.92 10.5 6.58 6.36 4.26 1.85 3.01 5.12 5.58 8.28 1.62 0.53 3.13 9.59 6.05 5.36 3.09 5.67 9.44 4.35 9.71 4.55 6.26 7.2 4.1 4.9 7.85 7.92 5.64 3.09 10.7 8.91 10.4 3.77 3.95 8.3 8.46 0.65 4.39 8.16 4.16 7.06 5.83 8.37 0.82 10.7 9.2 4.96 3.76 2.96 7.27 8.32 -0.19 1.24 3.98 9.79 3.83 7.1 7.45 10.6 9.86 9.38 5.59 7.65 0.15 -0.35 0.37 5.32 9.7 4.23 3.74 10.1 -0.2 10.6 7.97 7.21 1.04 5.39 7.52 7.89 7.03 8.03 6.09 8.23 5.86 4.03 4.67 3.2 5.07 10.8 3.52 7.57 6.44 7.77 8.41 1.02 7.97 6.55 3.58 3.56 8.08 2.71 10.4 7.43 5.27 6.5 8.08 11.1 3.42 1.27 -0.71 7.87 3.5 2.79 1.71 8.17 2.56 8.31 4.36 6.12 4.49 2.89 4.95 8.17 1.34 3.51 4.85 6.62 1.61 8.07 7.89 0.79 5.57 1.17 9 3.76 3.95 4.72 6.43 4.64 6.39 5.29 9.55 8.54 5.1 4.46 2.02 5.7 -0.4 8.07 11.1 8.27 4.6 10 5 8.48 1.93 5.61 6.26 7.42 7.6 5.16 7.63 9.7 0.02 5.74 8.89 9.4 7.48 7.43 8.38 0.28 9.75 3.77 6.68 10.4 9.02 9.68 9.95 4.76 4.96 2.71 3.51 8.18 2.06 6.7 7.33 10.2 3.52 4.39 8.71 9.24 1.96 8.88 2.17 9.9 2.31 1.24 3.66 5.32 8.07 3.42 9.88 3.29 7.15 9.21 4.82 7.07 8.64 7.62 9 8.15 2.02 2.73 -0.22 10.2 6.03 7.31 8.17 0.58 1.37 7.78 0.42 6.47 6.67 6.67 5.41 6.93 4.85 -0.25 2.79 5.19 -0.56 -1.05 11.1 7.32 2.95 9.48 5.47 8.96 2.62 3.55 3.19 6.67 1 8.09 8.71 9.15 4.44 6.8 7.27 5.89 2.61 6.87 8.29 8.13 9.98 0.75 6.81 9.21 7.3 7.92 0.85 0.87 5.31 5.14 8.8 1.72 6.49 8.17 8.25 6.22 2.74 9.3 9.49 11.7 12 10.1 4.41 12.4 4.18 11 11.5 9.48 7.74 11.7 8.39 10.4 0.44 3.78 9.15 9.9 8.75 9.42 8.72 10.5 8.05 13.3 7.78 8.78 10.8 6.69 7.69 6.28 10.3 1.13 9.01 12.4 11.5 10.6 13 9.73 10.4 9.23 9.72 7.69 8.45 10.4 8.87 9.9 10.1 8.42 5.96 8.41 8.56 5.95 10 10.2 6.31 8.51 8.49 2.71 4.01 10.4 -0.53 11.8 11.4 10.4 3.81 8.82 11.2 5.15 10 7.49 9.67 9.42 12 9.09 10.3 10.7 10.4 9.43 9.3 10.1 9.3 8.87 8.99 8.24 10.2 14.9 10.2 10.3 8.95 10.2 9.86 4.7 8.15 9.43 9.33 10.9 9.67 8.56 10.2 9.76 8.88 12 11.6 9.56 7.8 9.42 0.18 9.03 8.36 8.27 4.05 8.97 10.4 9.6 10.2 0.97 2.65 8.86 4.6 10.3 2.29 5.34 10 7.15 4.98 3.72 1.42 13.9 3 1.02 12.7 3.04 11.4 12.8 10.6 10.6 13 11.5 10.7 10.5 7.75 7.88 9.39 6.94 8.59 4.7 13.5 5.47 5.94 8.95 10.6 7.37 9.7 9.77 9.09 9.26 10.4 8.11 9.59 7.47 7.83 9.64 12.3 13.2 10.5 9 5.74 11.4 11.2 6.5 10.5 8.08 2.09 9.7 5.73 1.85 8.6 10 1.94 7.39 8.25 6.99 11.5 6.42 10.3 -0.22 3.67 8.47 8.67 8.22 3.79 10.6 8.24 10.9 2.02 7.79 4.53 9.27 8.46 3.45 3.73 10.8 11.7 8.69 2.12 9.79 11.4 8.37 8.34 10.6 11.2 11.1 7.28 10.3 3.35 10.6 8.45 10.8 8.47 7.25 7.55 10.9 4.3 9.8 2.3 12.4 9.54 8.39 9.65 9.32 10.2 10.4 9.76 7.99 10.6 8.6 9.38 12.9 7.88 8.78 4.47 4.64 7.95 0.97 9.16 8.71 6.67 5.26 7.97 8.78 9.29 5.66 7.7 7.02 5.03 10.8 9.96 11.6 10.2 5 12.1 0.88 9.21 5.56 8.55 9.54 8.41 13.7 6.94 10 6.1 10.4 11.5 8.77 8.83 6.59 8.39 1.58 8.48 3.35 9.66 6.84 8.19 9.35 8.2 10.7 7.93 2.43 9.87 0.25 14.1 8.86 7.94 3.16 6.56 10.9 4.85 4.92 3.66 13.3 11 11.9 2.82 1.32 0.63 11.7 8.33 1.48 10.5 12.6 9.91 12.7 12.6 14.1 11.7 9.55 6.09 12.7 11.7 10.9 3.74 10.7 1.37 4.5 4.25 7.15 11.5 9.67 7.8 0.64 2.44 -0.48 2.75 9.21 1.2 11.6 7.89 8.81 9.82 11.2 11.7 11.7 6.6 12.9 13.8 10.8 6.41 9.08 10.3 10.9 8.3 6.5 11.9 9.42 10.1 1.99 9.58 6.19 7.62 4.34 3.72 10.8 5.32 8.43 8.71 7.63 10.5 6.12 3.39 9.99 8.96 8.68 10.1 9.73 8.85 5.82 12.1 4.66 11.8 11.3 10.7 12.1 9.27 11.9 10.3 10.7 10.6 11.4 11.6 5.92 8.92 14.3 15.4 13.8 11.6 11.8 10.9 9.84 7.92 13.6 11.8 1.5 11.4 9.66 11.8 6.02 14.6 12.9 11 10.9 6.81 5.49 13 10.2 7.65 10.1 2.1 5.02 4.44 7.18 10.5 6.88 8.39 11.9 11.6 10.5 13.2 13.7 11 11.2 11.5 12.3 6.06 8.78 9.7 9.74 8.2 8.91 -0.34 8.13 7.6 8.92 9 4.23 9.62 0.48 9.22 -0.07 9.79 0.57 9.16 12.9 9.14 14 11.8 13.7 12.5 12.2 12.7 10.8 11.8 13.7 -0.49 12.9 13.3 0.58 2.4 2.08 8.15 7 5.09 1.12 2.47 0.52 4.81 2.77 4.16 -0.12 3.89 -0.56 5.18 11 8.37 7.69 7.23 7.72 10.2 7.86 8.36 8.23 10.3 7.52 8.87 8.46 8.79 10 8.82 4.37 5.98 12.1 2.22 8.83 10.3 -0.32 1.7 2.78 9.31 4.84 4.49 9.4 10.7 8.86 8.34 11.3 2.14 4.35 12.3 10.9 12.2 9.07 11.1 10.2 5.78 8.66 8.25 4.81 11.6 10.5 8.93 6.01 7.24 10.2 13 14.6 12.2 7.35 9.09 11.8 13.7 10.2 6.87 5.45 15 12.4 14 4.65 9.34 14.3 9.68 15.4 12.7 6.79 11.8 13.6 9.69 12.4 7.37 3.81 12.8 10.6 8.35 11.4 5.01 1.35 5.62 12.1 -0.92 2.17 8.2 5.88 6.46 11.3 10.4 4.76 3.43 0.84 1.32 0.61 9.66 11.9 1.93 4.51 0.62 7.04 9.59 6.72 9.58 4.63 0.71 6.75 1.15 7.06 8.49 7.2 10.4 5.01 6.26 7.88 3.7 0.74 3 5.45 4.22 8.92 10.5 4.11 9.09 8.21 4.52 8.8 9.77 9.64 7 11.2 9.3 8.24 8.85 5.29 6.79 -0.11 1.57 4.47 6.94 0.49 8.3 10 6.88 1.91 3.79 5.36 8.43 4.67 4.99 4.16 4.89 7.73 8.86 6.13 2.79 6.74 8.9 0.93 3.64 8.86 6.63 6.32 2.75 5.63 2.41 9.02 5.84 3.09 2.91 7.34 10 12.7 8.76 1.5 -0.02 2.37 5.04 1.51 7.03 8.27 -0.39 7.04 1.5 7.22 2.22 8.82 6.51 4.05 0.96 0.52 7.49 7.41 10.6 4.79 1.42 7.25 4.42 1.94 4.27 4.09 8.71 5.24 6.37 9.49 3.46 0 -0.25 8.82 5.03 12.2 11.4 9.68 11.5 6.32 9.09 0.21 6.21 5.29 10.6 10.2 1.63 7.18 9.95 -0.02 7.68 1.59 1.36 7.02 12.1 12.7 3.15 15 6.37 4.72 5.5 2.45 7.01 3.57 11.9 1.84 11.2 6.22 5.26 9.76 5.94 9.65 12.4 3.03 3.82 3.42 1.08 3.87 7.95 12.2 9.27 6.95 6.07 0.79 4.74 6.2 7.46 2.33 5.99 1.39 1.99 2.5 1.26 3.32 11.3 7.4 8.86 3.73 0.87 8.35 8.72 -0.84 7.32 10.7 2.83 11.4 2.05 6.53 2.82 6.8 2.25 1.01 2.67 7.12 2.44 -0.32 9.11 5.57 6.55 1.05 0.61 5.09 8.57 2.46 11.1 2.98 3.11 10.6 11.5 3.77 5.08 4.04 2.76 9.68 8.13 6.04 6.04 12.9 8.36 4.42 4.35 5.9 7.16 7.13 8.27 7.54 11.4 9.62 0.07 10.7 4.49 5.93 1.63 15 11.5 0.41 8.31 11.1 4.93 8.06 13.8 8.22 5.72 5.67 6.51 3.31 9.95 13.5 6 8.94 6.42 3.26 0.96 3.38 0.28 7.25 5.69 8.12 7.82 14.6 6.58 8.94 7.53 9.27 5.18 10.2 7.36 1.26 7.87 2.98 6.02 9.51 7.2 7.51 2.58 4.18 4.83 3.17 7.15 4.32 0.71 2.12 7.68 11.8 9.46 2.41 6.66 11.2 7.63 9.25 5.32 3.76 7.24 7.88 5.24 9.47 5.79 2.01 6.91 8.88 7.94 3.25 4.1 4.55 2.07 3.48 9.81 5.3 0.27 5.29 8.32 10.8 2.01 8.46 4.25 1.16 5.28 3.6 12.6 4.05 7.73 12.6 8.07 8.72 7.15 8.76 7.1 6.26 1.21 6.93 2.84 7.39 11.1 12.5 13.9 3.67 11.2 8.1 9.13 8.69 12 9.42 8.66 8.6 8 2.59 3.3 5.11 2.23 11.1 7.9 2.77 9.26 7.93 9.14 8.59 12.7 10.5 1.31 3.96 9.9 0.71 12 7.5 7.45 10.5 11.2 7.07 9.76 10.5 5.33 10.5 9.54 3.22 7.74 9.19 6.49 8.58 7.75 8.54 9.4 8.48 7.29 4.55 11.5 7.95 9.52 7.55 2.71 5.61 1.83 6.12 7.81 8.05 10.8 8.1 12 10.5 11.1 5.57 12.2 11.3 13.3 6.92 6.87 9.94 0.03 3.21 3.29 11.5 6.11 4.16 11.3 10.5 9.74 4 9.92 9.13 9.18 9.68 9.92 7.71 11.2 7.61 7.73 11.1 9.8 11.6 12.5 11.6 14.3 7.81 5.16 10.7 8.5 11.5 -1.02 2.97 6.75 4.52 2.62 1.04 1.45 9.29 5.97 7.8 5.19 7.4 10.4 7.88 10.5 6.13 0.09 0.53 6.31 1.06 5.73 3.77 6.96 8.09 6.69 9.32 2.18 2.01 6.47 7.8 9.36 1.38 7.56 0.68 3.95 12 7.45 4.74 5.77 7.37 4.02 6.86 2.83 10.4 1.48 6.08 8.64 13.1 7.77 5.78 5.14 11 3.26 4.14 7.02 2.53 6.46 1.84 6.24 8.72 8.27 5.8 7.07 4.33 1.58 0.68 8.42 8.09 6.93 6.53 8.8 7.89 6.92 6.25 3.1 2.09 0.05 1.5 2.76 0.44 8.17 5.74 5.25 0.06 9.08 5.01 8.62 2.32 6.61 13.2 1.96 1.8 6.07 6.21 9.14 6.9 3.52 12.8 0.91 2.02 6.03 6.22 9.22 0.4 7.6 12.2 4.42 4.79 5.56 8.04 8.88 5.99 6.5 5.24 4.72 12.2 6.54 4.11 4.83 4.89 8.05 -0.4 7.04 5.16 9.44 6.02 -0.41 6.79 10.5 9.96 6.84 3.52 9.01 2.8 5.72 9.05 10.1 7.5 11.1 9.68 8.23 7.27 0.05 1.28 0.69 11.7 1.16 1.41 2.74 1.04 1.34 11.7 2.89 2.1 1.57 0.3 3.18 0.03 10.6 9.8 10.1 10.4 10.8 12.7 12.6 9.55 7.83 11 6.15 10.6 11.6 9.79 2.77 0.56 14.4 9.27 3.14 6.7 7.71 9.27 13.9 7.79 4.66 10.5 0.49 9.21 3.5 4.74 7.13 1.72 8.65 0.78 2.04 5.85 9.39 4.06 5.95 13.2 5.7 10.2 2.23 2.69 5.66 4.32 4.05 8.42 8.82 2.53 1.59 1.8 3.92 -0.43 5.78 2.98 7.23 3.74 5.13 4.92 8.67 7.01 3.14 9.71 1.51 3.15 8.69 4.25 1.74 11.2 4.73 6.95 5.51 4.69 9.48 2.52 1.1 8.13 3.7 6.6 3.68 3.59 4.01 6.31 5.84 6.21 6.51 8.38 10.4 7.72 1.71 13.2 2.83 6.88 8.18 6.21 8.05 7.36 5.76 6.42 5.99 0.95 3.08 7.13 7.21 3.37 8.53 0.64 7.28 1.1 4.76 8.42 -0.27 5.77 5.92 8.77 9.88 1.84 8.78 0.8 6.68 7.53 5 8.82 8.03 8.6 1.74 10.8 12.4 8.43 0.66 5.98 6.86 4.21 4.96 4.62 3.91 9.12 0.65 5.19 6.5 -0.63 5.37 8.85 7.62 4.12 2.03 11.4 5.96 7.88 10.9 1.9 0.76 2.29 9.81 8.64 5.86 5.97 7.98 2.37 9.78 6.74 3.81 -1.2 4.06 7.66 2.55 3.38 3.14 10.8 7.23 6.63 5.75 1.33 2.99 8.62 0.85 2.39 2.11 5.58 -0.03 7.98 10.2 9.33 8.98 7.62 9.9 9.12 7.97 12.3 3.21 9.62 1.32 12.4 0.71 9.68 10.6 12.7 12 5.44 1.67 11.4 13.8 13.1 0.18 5.07 3.9 13.2 4.83 12.6 4.64 0.12 8.45 9.19 4.5 6.07 10.3 10.8 8.35 0.34 14.4 10.1 13 12 3.59 1.71 6.9 10.6 8.11 11.7 3.21 10.8 14.3 12.8 0.76 10 11.8 10.6 0.82 4.51 8.63 9.77 1.96 10.1 7.87 10.7 10.1 10.7 9.89 10.9 4.39 5.65 5.25 10.5 10.5 2.16 3.19 9.29 6.8 10 9.04 10.3 6.66 5.19 3.56 10.8 2.87 5.91 5.99 4.87 11.8 4.28 7.86 7.07 11.8 -0.49 4.98 7.93 9.97 10.9 12.2 7.04 11.9 7.58 11 8.95 4.38 6.22 10.4 5.82 8.19 8.13 9.02 0.27 7.44 8.4 -0.5 8.46 5.76 4.06 8.39 4.33 2.61 6.1 8.17 1.73 6.37 5.86 5.8 8.68 1.53 9.16 7.44 0.19 2.42 8.34 4.95 2.25 -0.32 6.09 3.28 5.91 8.2 6.13 1.05 6.36 -0.26 6.27 5.45 4.65 5.56 11.8 2.66 6.21 5.11 7.69 2.69 7.16 2.53 2.42 6.77 3.66 9.23 6.08 6.8 7.29 6.1 9.69 -0.18 4.75 7.39 4.03 9.25 10.1 4.85 8.68 6.06 10.7 6.57 7.53 9.26 7.91 7.97 1.66 0.88 6.46 7.6 3.57 2.93 8.61 4.74 3.02 4.22 6.85 10.9 7.47 -0.92 6.8 5.81 8.13 3.29 5.18 6.6 2.22 4.72 10.6 5.78 8.69 4.91 7.83 10.1 11.6 2.72 9.46 7.3 9.38 2.14 9.14 9.04 4.39 10.2 3 5.68 10.9 5.29 1.08 9.32 9.67 9.67 11.9 8.91 11.7 3.84 10.8 5.43 6.27 8.9 9.7 10.8 9.83 5.65 5.93 -1.19 3.73 13.9 7.98 8.92 12.9 3.69 7.16 9.47 5.76 9.21 3.94 9.45 11.1 12.6 12.6 11.9 12.6 11.8 0.59 6.27 3.95 3.2 7.13 10.4 10.9 8.76 9.16 10.9 11.5 8.25 11.2 9.45 9.77 7.2 8.21 4.55 8.71 8.66 4.45 3.21 7.35 7.93 9.91 6.74 10.2 7.7 6.79 9.17 9.45 7.87 13.8 10.1 9 7.9 8.97 10 5.63 13.3 10.5 4.39 3.03 11.6 10.5 8.53 5.02 11.3 8.96 0.19 6.57 0.67 4.07 7.99 6.73 7.09 12.5 4.95 2.79 11.7 8.01 5.15 10.5 5.81 7.32 2.42 12 9.26 4.05 10.6 10.8 10.3 7.81 9.54 7.59 6.42 1.2 12.7 11.4 11.9 11 10.2 10.2 11.3 12 6.37 4.75 8.89 1.18 12 12.1 12.8 10 9.01 7.87 9.92 10.6 9.68 9.67 7.05 7.89 10.3 8.19 2.58 12.2 8.69 9.55 9.51 10.6 9.43 7.18 11.1 10.6 4.09 0.62 10.4 8.38 8.43 9.92 7.85 9.95 6.55 11 6.56 6.51 11.5 9.34 6.25 7.42 9.86 6.88 8.64 9.63 10.1 10.3 12.8 9.6 11.2 12.4 7.74 9.7 13.6 7.98 0.7 8.77 8.91 9.09 11.7 9.37 11.1 10.1 6.18 7.12 10.9 9.56 10.8 9.43 2.27 3.56 8.65 11.6 12.9 9.67 6.81 7.55 10.5 11.5 0.63 3.52 6.74 3.97 7.49 11.5 5.93 9.72 2.23 2.75 8.93 8.36 1.84 6.74 8.16 7.31 10.1 3.43 8.97 9.24 0.44 11 10 8.71 8.93 8.74 4.18 4.11 8.46 4.32 6.29 8.71 9.82 4.51 8.28 8.11 10.1 0.92 5.75 13.5 10.4 4.2 3.64 6.26 9.84 9.21 5.67 0.41 8.71 5.47 5.71 1.53 9.22 6.04 2.81 3.22 8.8 8.42 1.68 7.68 9.78 3.92 7.64 2.35 3.9 6.21 5.5 10.8 7.02 4.03 6.95 3.35 9.21 6.67 5.23 8.32 0.29 0.04 5.5 9.83 4.7 7.28 6.26 2.84 9.47 2.99 6.61 6.69 3.75 1.02 8.53 6.98 8.09 3.6 13.3 3.52 8.31 5.19 6.27 7.16 3.29 6.5 7.58 6.15 7.89 5.53 7.39 5.52 2.29 3.85 7.08 -0.95 5.52 8.54 3.95 -0.47 1.94 0.92 1.92 2.93 0.84 1.24 7.07 1.42 9.11 6.12 4.7 4.9 6.4 4.33 9.48 10.5 0.36 0.6 0.58 0.7 3.95 2.85 5.56 1.09 0.74 8.75 5.27 1.07 0.31 8.85 3.52 10.4 8.71 0.22 7.8 9.99 14.1 9.29 1.3 9.05 5.95 1.77 9.45 13.3 10.1 4.55 5.65 5.6 6.4 6.92 8.34 7.89 1.81 7.95 9.54 9.36 5.56 9.55 7.86 10.9 10.7 10.3 8.01 7.72 3.63 10.7 9.69 10.7 14.8 6.41 4.54 10.2 9.92 8.86 9.06 9.66 14.2 10.9 10.1 9.08 8.27 11.3 1.58 0.14 4.06 11.3 10.1 4.16 10.7 7.41 0.85 5.11 14.2 10.1 6.86 9.37 0.73 5.45 14.9 11.3 0.71 10.6 11.5 9.03 8.3 9.81 10.8 8.56 8.13 7.31 13.6 12.9 10.2 9.29 8.48 0.98 10.9 10.8 13.7 9.53 9.7 8.43 12 6.17 12.8 9.45 5.7 11.3 12 11.1 11.6 5.16 8.04 9.16 10.4 10.8 0.38 9.61 7.8 6.77 9.61 14.2 9.13 11.9 10.7 9.37 11.8 10.1 11.8 9.78 9.34 10.4 4.77 10.8 11.4 10 9.71 10.3 9.88 11.7 11.9 10.7 10.3 13.2 10.4 14.8 10.8 10.3 16.3 10.2 8.81 11.3 10.9 11.3 9.49 12 11.1 10.9 11 13.2 9.39 10.1 5.7 13.4 14.3 11.1 9.48 0.49 6.14 8.45 7.24 7.94 2.18 1.7 4.86 0.59 10.3 8.52 9.19 7.41 4.99 11.7 11.2 13.9 10.6 5.49 10.2 8.44 5.63 9.19 9.03 10.2 9.08 13.1 0.32 11.4 11.2 8.8 8.69 12.4 9.98 9.7 11 8.04 8.82 9.2 8.17 9.08 9.64 9.83 0.7 9.55 9.92 12 3.45 3.12 10.6 10.5 6.49 9.33 9.41 6.02 9.54 6.1 6.27 9.46 4.44 1.56 5.92 11.4 11.4 13.6 8.84 9.75 9.01 12.4 7.52 3.03 9.84 15.1 1.54 8.3 10.2 10.3 9.47 8.56 12.1 12.8 8.83 9.95 1.86 10.3 2.37 6.28 7.97 10 8.62 13.6 5.3 2.34 12.5 10.1 8.2 2.31 2.91 5.81 6.85 10.7 11.4 8.82 11.2 8.58 4.83 10.7 7.23 5.29 4.14 14.7 10.7 6.61 9.1 9.29 4.07 7.76 1.72 0.5 7.55 3 9.79 7.42 -0.08 5.23 6.02 11.6 10.1 13.6 9.85 11.1 8.21 13.2 9.61 5.21 10 8.26 11.2 7.27 0.61 9.76 5.63 3.62 9.82 12.8 4.82 12.8 10.2 0.57 6.57 10.3 8.95 2.81 4.4 3.79 1.21 12.9 10.8 9.7 12.8 10.2 2.11 11.7 8.42 5.92 2.06 8.36 6.89 6.49 0.63 1.34 10.4 10.3 13.8 7.03 8.3 7.75 7.47 9.29 0.34 5.33 7.39 9.06 11.3 9.96 8.52 8.4 3.35 1.01 10.2 5.3 11.5 7.46 6.39 6.77 5.02 11.2 8.79 6.5 1.82 9.28 4.75 5.58 4.14 4.74 6.63 8.85 10.6 13.6 5.82 6.48 13.1 -0.07 1.4 5.85 13 7.08 11.2 5.62 11.2 9.58 10.3 6.66 10.9 9.15 9.22 4.44 10.7 9.08 7.22 7.21 12.5 7.86 -0.27 15.4 14 2.06 3.85 9.75 6.78 11 4.58 9.18 7.9 4.35 6.67 9.61 5.97 11.4 6.08 11.8 2.29 6.42 11.9 9.93 7.11 0.64 5.08 0.01 10.1 11.2 10.2 12.1 8 10.7 8.82 9.47 0.38 1.76 1.58 12.3 2.9 6.5 11.3 5.18 5.14 6.51 6.74 9.11 9.01 12.4 12.3 11.9 6.72 9.02 10.5 13.2 8.22 10.6 13.9 9.61 5.46 3.09 8.03 11.1 9.68 9.49 9.87 10.6 9.73 9.05 9 7.92 9.28 7.32 10.8 9.56 9.04 2.58 9.04 8.61 11.1 8.94 10.9 9.6 7.24 9.68 9.74 9.75 11 7.14 8.53 10.6 7.72 9.74 8.36 8.68 10.8 8.59 9.64 10.6 8.4 10.5 6.61 9.09 5.41 11.7 7.23 9.31 8.75 10.9 9.63 7.51 10.7 8.27 4.38 8.94 10.1 10.1 9.65 9.43 8.78 12 8.98 10.6 8.18 9.91 10.6 11.1 11.6 10.9 10.7 3.75 8.29 10.6 6.54 7.6 9.15 6.96 8.12 9.36 9.25 12.3 8.52 10.1 10.4 10.5 9.71 11 11 7.99 8.5 8.21 8.41 9.52 7.75 13.2 11.1 11.3 11.7 11.6 9.83 9.76 9.14 9.43 9.63 10.4 10.2 10.1 8.88 9.91 9.98 10.2 9.79 10.4 9.13 9.13 7.18 9.03 9.24 9.2 10.3 8.04 8.26 8.5 10.2 8.49 12.6 9.93 10.8 10.4 8.97 7.66 11.8 0.2 9.83 10.6 7.94 10.4 10.9 7.15 6.84 8.85 10.6 5.76 7.33 7.58 10.6 7.5 8.23 8.07 7.59 11.1 9.67 9.2 9.49 9.16 9.3 9.63 10.3 10.2 8.45 10.5 10.1 8.73 9.58 9.4 8.51 5.29 8.63 10.8 10.4 10.2 9.21 8.38 1.02 -0.17 2.41 10.2 1.18 7.16 7.39 5.05 9.05 10.7 10.1 9.23 10 0.18 10.4 8.3 3.39 7.05 10 8.86 13.1 11.1 10.4 9.72 8.8 8.49 9.21 10 10.9 10.9 9.92 8.46 10.8 7.47 8.38 9.4 10.1 6.08 5.56 9.41 12.4 10.9 10.2 9.88 8.84 9.07 7.39 7.85 10.6 9.33 10.5 7.65 10.4 10.3 6.88 1.71 11.4 9.28 9.38 7.84 10.7 9.02 7.48 9.86 8.97 5.78 9.78 8.74 11.4 3.87 6.92 11.3 2.89 9.76 10.7 7.92 8.96 6.87 4.71 7.63 8.74 0.85 10.4 4.78 10.1 10.2 8.41 10.2 10.8 11.5 11.5 6.92 11.7 3.85 9.57 4.17 7.19 3.7 11 8.32 7.88 6.93 9.71 10.5 9.02 9.3 8.52 4.76 10.4 8.48 6.43 8.93 9.35 8.93 8.92 9.44 3.44 10.3 9.83 10.5 -0.02 10.7 10.9 8.16 11.4 8.8 9.1 8.38 5.83 8.56 9.97 0.55 8.98 12.3 8.98 9.64 7.85 10.1 7.7 8.96 14.5 9.31 12.4 3.56 11.9 10.1 7.96 7.43 6.52 5.97 9.98 8.63 8.42 6.99 11.1 10.8 4.22 10.2 12 11.2 10.1 10.2 7.39 3.49 11.3 9.36 11.4 11.3 5.13 10 5.18 9.16 6.7 4.15 10.4 10 8.47 1.35 9.35 11.8 8.49 10.7 4.48 8.88 8.49 10.6 10.6 8.84 11.5 9.57 11.8 10.4 8.4 10.1 11.4 11.7 11.7 7.5 11.2 8.58 7.08 8.84 9.03 9.42 11 11.6 10.9 8.61 9.88 9.57 10.1 9.8 6.8 8.83 7.73 5.45 10.7 10.1 8.69 10.7 7.25 8.86 9.47 7.91 8.51 7.91 8.01 8.49 11.2 4.16 7.33 8.5 7.94 9.77 4.45 9.23 11.7 9.36 10.2 9.92 9.13 12.2 11.1 10.2 9 7.7 11.3 8.91 10.3 8.07 9.12 10.3 11.4 11 12.5 12.9 11.2 10.9 7.73 10.8 11 12 9.33 10.2 9.55 9.57 13.2 9.41 1.74 7.69 11 11 9.57 9.29 12.1 9.77 11.3 7.93 8.38 9.79 11.2 11 10.9 10.3 10.5 10.3 11.4 9.17 10.7 5.18 8.72 9.01 11.4 9.74 6.32 9.12 7.76 8.44 9.32 7.75 11.5 8.45 10.7 9.32 11.7 6.51 10.4 3.99 5.72 9.79 9.37 3.65 5.11 9.14 8.99 10.8 8.58 9.41 10.7 13.7 10.2 6.36 8.91 2.09 8.64 11.9 5.54 10.8 11.6 11 9.37 1.1 10.7 1.66 8.47 10.7 10.8 8.39 11.6 1.44 8.98 7.07 1.57 5.57 7.99 9.86 3.58 11.2 8.72 8.02 2.37 9.77 8.92 10.6 10.5 8.99 7.67 0.92 7.91 8.66 0.4 7.51 10.9 13.6 9.75 8.32 11.3 12.4 8.31 7.75 5.78 8.95 8.94 10.2 11.5 8.35 9.14 8.95 10.3 7.09 9 7.91 9.9 9.39 0 0.05 8.76 3.13 11.3 10.8 10.3 8.1 12.2 9.91 0.7 8.6 10.5 10.8 9.07 12.6 2.46 11.6 11.5 13.3 12.5 9.3 11.6 12 5.45 0.2 12.5 5.09 8.17 10.9 13.9 10.7 8.15 5.05 6.39 5.83 3.36 12.6 10.9 13.7 3.84 10.3 9.67 9.88 9.86 9.72 11.5 1.13 9.88 8.78 10.6 1.95 11.1 11.9 8.2 8.44 8.38 7.78 8.18 10.6 10.4 8.87 7.77 5.49 10.1 10.5 9.71 10.8 8.85 9.31 7.99 9.54 5.98 11 11.9 10.3 11.4 10.3 9.38 0.34 11.1 9.17 11 8.67 9.7 9.03 0.86 15.4 9.72 10.7 0.38 9.82 6.73 7.52 10.2 11.8 9.56 8.41 12.4 7.19 8.63 8.35 10.4 9.78 9.76 5.09 8.58 2.99 9.33 7.69 5.84 2.4 9.63 10.5 6.26 8.19 8.07 7.36 9.7 9.9 8.39 11.8 5.83 8.28 10.5 8.87 4.48 3.19 5.32 9.98 10.3 9.45 3.32 11.2 10.7 2.51 11.9 10.1 9.13 11.2 11.2 12.2 8.85 10.5 6.62 8.61 3.22 11.6 3.41 12.6 1.3 6.99 0.5 6.32 11.1 10.9 7.8 9.39 9.48 8.56 8.74 8.73 5.51 5.81 3.47 7.66 9.63 8.96 4.98 6.9 5.48 4.17 10.7 1.16 9.29 8.11 1.75 5.74 12.4 10.5 8.62 8.6 9.3 9.42 9.17 11.2 9.39 8.09 9.67 7.01 10.4 10.6 8.77 10.6 9.52 8.94 1.02 9.24 9.04 8.63 3.73 9.8 0.34 2.24 8.77 8.6 6.22 6.67 7.38 11.7 9.45 11.3 0.82 8.87 6.16 5.83 4.38 6.57 3.82 9.67 10.1 5.69 7.75 9.58 9.55 11.4 11.2 8.31 -0.09 8.43 5.48 8.93 7.84 8.84 11.6 9.66 5.53 3.64 9.21 9.14 12.9 11.6 9.99 7.11 3.81 9.6 7.06 5.53 11 8.96 7.5 9.6 10.1 3.16 3.88 10.2 8.92 10.1 11 9.79 12.3 10.8 7.79 8.75 9.41 3.79 2.37 11.8 10.3 9.16 10.1 4.91 7.3 10.7 5.42 9.72 7.88 7.65 9.38 9.18 11.2 10.6 7.53 9.41 1.31 2.37 11 10.8 11.3 9.33 7.33 9.4 9.28 1.14 10.4 8.77 10.6 10.9 8.13 9.73 10.2 8.14 10.2 9.47 7.73 9.12 7.7 9.39 7.89 10.5 7.99 9.64 8.39 9.5 7.17 11.5 9.19 7.3 11.4 9.32 9.83 9.62 6.18 3.94 6.14 6.54 8.2 8.58 8.33 8.2 7.45 4.29 9.34 9.3 7.94 10.2 1.65 7.57 10.6 8.94 9.63 8.63 9.3 7.61 11.7 8.92 11.7 7.59 10.2 10.5 7.2 9.56 8.74 9.67 8.35 8.03 5.5 7.48 7.79 1.03 7.84 10.7 6.54 10.7 7.47 1.53 10.5 6.8 9.51 10.4 9.26 7.64 8.85 9.58 10.5 7.12 10.2 12.5 7.78 5.55 6.62 6.57 11.5 8.97 2.28 10 9.46 10.4 9.38 10.6 2.91 9.92 10.5 8.3 4.88 8.93 10.1 9.55 10.8 11.2 9.95 8.87 8.11 10.3 8.7 5.09 4.15 9.98 0 11.8 9.38 2.84 9.14 11 8.88 4.62 8.9 1.53 7.85 4.43 8.81 1.35 10.8 9.44 7.18 11.8 5.96 8.87 10.1 10.8 8.45 8.89 9.62 12.8 9.07 7.84 7.38 10.1 12.4 8.45 7.58 7.93 8.15 9.11 4.91 9.6 8.42 10.9 9.36 11.1 8.5 7.98 5.36 9.34 10.4 9.91 2.42 8.58 10.8 7.98 7.98 10.3 8.28 8.9 8.74 9.41 8.38 8.22 1.42 7.04 -0.15 10.2 4.05 5.01 1.43 9.32 8.4 8.89 11.1 7.12 9.64 7.39 10.4 7.83 11.3 6.97 8.18 8.19 8.29 7.08 8.64 6.26 7.98 10.4 8.52 9.15 9.36 9.35 11.6 7.3 8.39 7.7 9.27 2.17 10.4 9.59 9.49 11.4 8.59 8.32 11 7.7 9.56 9.24 7.36 8.2 10.8 11 10.6 7.95 11.2 5.75 9.54 11 12.5 8.34 9.56 8.87 9.68 8.52 9.24 4.91 7.67 8.27 2.32 8.86 11.2 9.58 9.3 -0.21 10.2 8.82 11.2 7.25 10.7 10.9 8.18 13.4 10.2 7.36 11.1 7.03 5.88 8.71 11.5 10.4 10.5 8.18 9.38 9.42 10.1 7.03 6.36 9.24 10.6 11.1 5.09 8.28 9.38 10.3 11.7 8.11 8.95 6.17 10.8 8.45 9.01 9.71 10.2 8.5 8.74 9.08 8.46 9.72 7.06 8.99 6.46 11.8 8.64 9.13 6.18 9.65 7.91 8.56 0.28 10.3 9.45 7.42 7.81 8.17 11.1 7.75 9.88 12.2 10.3 5.61 8.76 9.05 8.87 8.96 2.77 10.3 7.38 8.97 6.79 10.3 12.1 8.89 7.28 11.8 8.89 5.8 3.98 11.3 6.78 12.1 13 11.8 6.24 9.54 9.4 11 9.52 8.95 7.4 11.2 8.03 11.9 8.21 9.54 8.55 8.21 9.42 9.73 8.68 6.32 10.6 -0.58 6.17 8.69 4.16 10.3 8.12 7.96 8.11 9.52 10.8 10 10.2 5.99 4.87 9.43 9.41 10.4 9.02 11.1 10.5 11.3 11.5 9.43 7.77 8.14 11.2 9.97 8.5 7.57 7.14 10.1 8.9 6.67 6.39 6.01 9.61 3.85 9.69 3.41 11.5 5.51 5.85 7.65 10.2 8.08 9.52 9.46 9.04 8.59 11.1 10.9 3.72 6.07 1.54 8.41 4.49 7.42 8.84 8.02 10.3 8.96 10.3 3.43 10.7 9.68 9.38 9.47 8.16 9.21 7.67 12 10.2 10.3 7.34 8.8 8.89 7.89 10.2 10.1 10.2 8.84 9.79 1.12 8.96 10.4 8.67 9.72 6.8 9.01 9.13 8.6 8.49 6.6 6.76 10.1 10.8 8.5 8.46 10.3 9.85 8.04 9.84 10.5 10.1 9.35 11.9 3.35 6.8 10.3 10.1 8.93 12.8 10.4 9.57 11 7.63 10.4 11.2 9.67 9.9 7.63 9.92 10.1 9.14 9.46 9.32 10.1 10.8 6.01 7.55 9.51 7.43 8.18 13 6.91 9.94 10.6 8.22 8.02 10.3 10.8 9.44 8.89 7.41 9.65 7.19 10.4 8.75 1.22 11.6 11.2 10.7 8.27 4.21 9.14 6.25 10.2 5.57 10.7 10.8 8.65 11 8.74 12 3.42 9.95 7.89 9.46 7.62 8.71 9.98 7.91 9.93 10 3.97 9.44 7.53 8.74 8.48 8.38 10.7 9.15 9.62 9.34 9.74 10.5 5.6 11.6 11.3 9.57 8.61 9.59 11.8 7.43 7.8 4.2 10.3 9.05 6.72 7.92 11.1 9.71 10.3 10.6 9.12 8.97 9.82 9.56 11.2 8.98 9.73 8.24 9.01 6.97 8.86 10.2 2.4 8.87 9.25 10.7 8.33 9.84 5.96 9.94 8.91 8.58 7.6 8.53 8.23 10.8 9.65 8.93 4.35 8.86 11 6.68 9.04 1.95 10.2 12.3 4.51 9.4 7.51 9.95 10.5 7.8 7.91 7.85 7.18 8.9 9.57 9.35 3.65 9.6 8.94 2.72 8.58 9.65 9.33 11.7 8.65 11.8 9.79 9.8 8.8 7.86 5.2 9.77 7.86 8.74 10.4 9.23 3.58 10.1 7.99 10.5 9.31 6.16 9.52 7.57 8.17 6.21 8.24 10.9 8.4 10.6 10.8 5.37 4.29 12 10.2 10.9 7.75 10.7 9.46 9.37 7.89 6.65 6.51 9.44 8.33 1.9 7.91 11 12.9 9.33 5.54 9.49 5.9 10.2 10.2 11 9.16 7.31 11.3 7.41 10.6 5.47 8.68 12.2 13.3 3.98 7.98 1.93 7.08 7.89 7.75 4.2 -0.38 -0.08 8.09 4.64 7.57 9.16 7.09 2.33 9.21 6.18 8.3 11.7 7.26 9.78 8.27 0.86 10.2 9.04 9.75 9.78 7.94 6.17 6.72 10.1 10.7 10.6 -0.18 7.95 3.93 5.97 -0.16 5.75 1.52 10.1 7.87 6.43 9.94 9.4 7.6 4.31 2.58 9.47 10.4 5.03 7.2 12.6 1.36 1.02 6.85 6.62 8.65 10 6.66 8.66 7.82 5.62 8.09 6.55 10.3 8.77 11.8 1.98 11.1 10 8.09 7.08 10.9 10.5 8.96 10.6 7.31 11.1 9.75 7.77 4.25 11 8.81 7.95 9.55 9.63 9.29 9.48 6.2 8.71 11.4 7.17 1.7 8.64 7.16 9.61 8.33 7.09 9.87 10.1 12.5 9.59 10.9 11.3 9.78 10 11.2 8.51 11.7 8.7 8.09 8.03 8.43 9.42 8.05 8.3 10.2 7.92 10.1 7.59 11 8.76 8.72 8.08 9.2 9.06 11.2 9.88 9.33 11.6 4.6 9.23 8.58 8.45 7.31 12.8 11 10.7 10.2 7.04 9.1 9.57 12 10 7.13 10.6 8.64 8.26 10.6 8.77 9.05 10.4 9.04 8.02 10.3 11.1 11 9.68 7.23 10.5 5.67 11.3 8.14 9.38 6.44 8.27 10.7 10.2 3.23 11.6 6.05 12.1 9.75 7.81 9.07 9.12 11.3 8.91 11 8.73 10.6 5.07 7.03 2.3 7.29 8.48 10.7 9.65 10 10.2 7.65 6.57 11.8 8.97 9.76 5.58 10.3 12.5 10.1 8 8.44 9.31 10.9 11.3 10.5 9.12 11.5 10.3 10.4 9.69 10.2 9.61 10.7 12.7 10.5 8.41 9.01 9.46 9.95 6.83 11.1 10.4 8.15 7.42 10.1 9.49 9.3 9.93 9.81 5.77 10.3 10.2 8.71 8.85 10.7 9.56 7.51 10.1 7.76 9.51 9.45 9.63 8.65 8.35 7.68 9.66 7.93 9.01 9.01 6.95 7.56 7.22 7.97 10.8 7.7 6 7.22 9.55 8.6 8.33 9.22 4.05 8.11 3.94 9.1 10.4 4.8 10.1 8.11 7.15 4.62 6.74 9.07 8.77 9.65 0.02 7.37 10.3 9.41 5.91 11.4 11.1 6.5 9.81 6.56 7.73 11.2 9.24 8.14 10.7 10.9 11.1 10.8 7.32 9.96 8.48 11.1 4.81 8.6 5.36 9.45 12.2 7.61 8.71 9.78 13.9 12 9.84 11.4 2.68 11.1 8.72 10.5 9.47 10.9 4.31 10.1 10.4 9.32 10.2 8.78 -0.18 10.6 7.19 10.2 10.2 8.17 8.45 7.91 11.4 10.8 6.28 1.82 12.6 11.3 8.82 9.65 3.27 10.4 9.9 10.2 5.86 10.6 11.7 10.7 5.27 9.64 7.73 12.1 7.13 10.5 9.57 8.04 10.2 2.19 12.4 9 5.79 9.99 3.27 8.54 5.69 10.6 10.8 9.08 7.29 10.5 8.16 5.55 6.43 10.4 11.5 10.8 10.2 11.1 10.1 7.43 9.38 10.3 9.38 8.79 8.45 2.1 5.04 2.45 9.84 8.73 8.97 4.91 8.21 8.61 9.29 11 8.77 9.96 11.3 3.49 7.54 7.86 6.62 9.41 2.75 0.84 5.97 9.27 5.14 7.73 3.55 4.2 4.52 2.63 8.37 4.92 7.58 4.73 9.78 3.82 2.6 2.26 2.77 4.05 13.5 0.19 7.55 7.39 7.98 5.91 7.53 7.04 6.94 8.32 5.53 9.94 6.11 4.3 5 9.56 4.03 0.49 8.75 1.62 0.59 5.22 8.06 9.52 2.74 8.31 10.2 0.53 8.77 9.96 2.57 3.53 8.55 7.44 11.6 1.87 2.51 10.8 3.56 10.3 9.68 6.87 10.8 10.2 8.08 8.82 10.6 13.9 9.23 10.2 12.3 9.68 10.2 3.82 0.82 8.9 10.2 9.98 10.6 10.2 9.59 8.56 7.21 11.7 5.39 8.21 6.42 10.1 7.57 8.98 0.97 3.11 11.3 3.39 10.5 4.51 0.87 14.6 2.95 7.48 5.85 11 5.12 6.62 11.5 9.26 10.6 6.78 11.5 10.6 8.98 7.55 9.18 8.66 4.5 -0.21 5.38 3.83 8.4 3.49 10.4 6.42 11.2 10.9 14.8 4.99 0.02 10.3 8.88 11.4 10.2 11.4 8.27 9.73 10.4 8.11 11.1 10.4 9.73 7.88 6.33 11.1 11.5 12 11.3 10.5 10.6 11.8 11.9 8.74 6.67 11 11.6 9.29 10.8 9.89 8.09 12.3 9.73 9.98 9.86 10.4 9.82 6.84 8.99 12 12.1 4.89 9 8.53 8.15 9.96 6.11 8.12 12.7 6.11 10.3 7.94 6.83 9.73 10.4 9.35 9.51 11.6 8.09 6.17 6.75 4.06 11 9.71 10.2 8.11 9.52 8.91 9.74 12.7 10.8 9.58 10.2 11.7 8.47 11.5 4.62 5.26 9.71 9.44 11.5 0.29 7.77 5.89 9.85 8.12 10.9 5.96 10.3 5.25 3.05 9.49 7.81 3.8 8.86 10.3 6.15 7.83 10.9 10 10.5 8.68 10.3 9.96 9.65 8.51 9.61 10.7 10.4 1.29 8.89 8.46 7.78 11.7 7.2 11.2 4.04 10.3 9.44 10.1 11.6 8.69 8.03 1.28 10.7 8.16 9.7 10.9 10.6 8.7 11.8 9.8 3.5 10.3 9.82 0.64 12 11.9 13.2 6.78 11.2 9.11 7.99 12.2 4.78 11.8 7.54 10.7 2.3 8.68 6.81 9.23 11.9 6.21 8.38 8.72 10.2 2.7 6.32 9.06 9.42 10.3 6.05 5.56 9.4 6.94 9.63 7.25 10.2 8.11 7.02 0.24 9.81 9.89 11 10.6 11.8 7.09 11.3 8.82 13.7 10.6 12.2 8.87 7.48 8.4 11.7 10 10.5 6.34 15.7 9.52 6.89 9.75 1.74 10.3 7.63 9.54 3.68 1.29 5.77 11.5 11 9.32 10.6 8.79 12.9 11.6 10.2 8.23 11.1 9.04 9.19 10.3 8.43 10.1 1.55 9.16 11.4 10.7 2.76 8.65 6.88 8.54 9.54 12.3 9.31 8.67 11.8 9.21 7.19 9.32 6.64 9.23 9.37 9.97 8.84 6.1 12.4 11.2 8.43 10.1 7.12 9.17 10.2 6.14 6.58 12.2 7.44 10.7 -0.46 2.24 9.24 10.4 15.2 2.64 5.08 10.4 11.2 4.89 7.38 7.68 9.19 7.84 8.7 2.15 7.37 8.5 2.43 2.63 10.3 9.67 5.61 3.89 5.54 7.82 7.19 0.37 0.83 10.3 9.26 -0.05 6.31 7.7 10 9.6 11.5 5.98 11.5 3.45 9.48 2.47 13.4 5.76 3.46 10.6 8.04 10.4 8.14 0.72 2.51 6.81 7.13 9.16 10.2 6.68 11 8.93 10.8 10.2 7.91 6.5 4.13 7.8 10.6 2.02 4.83 10.1 10.5 3.42 10.4 10.6 11.6 9.09 6.49 7.76 8.11 9.68 9.76 10.8 7.04 9.29 11.2 8.85 4.85 11 9.97 10.1 -0.21 9.74 0.35 11.6 0.83 4.2 4.58 10.5 8.15 11.5 9.8 8.81 9.81 10.7 8.68 10.3 8.06 11.6 6.38 10.3 9.68 11.4 3.66 7.17 3.06 1.38 2.82 10.5 7.92 11.2 10.8 9.56 10 7.86 2.51 6.13 9.12 11.5 2.01 7.44 8.53 9.31 9.28 6.77 7.2 11.8 6.8 10.4 9.37 4.73 8.21 6.2 12.5 6.09 10.9 9.38 12.2 6.82 8.27 10.3 7.71 7.58 5.54 15.2 9.12 4.85 8.01 7 2.97 5.36 8.32 4.81 8.37 9.82 4.32 8.79 10.1 9.44 9.27 9.07 10.6 9.19 10.5 9.05 9.33 3.99 1.77 5.73 10.8 8.69 7.69 10.5 3.81 5.35 10.3 10.6 10.2 9.27 5.69 9.43 5.29 6.3 9.44 9.42 8.61 8.82 6.36 7.52 2.26 13.7 8.35 8.35 11.2 8.18 9.2 5.76 3.23 10.9 9.76 9.76 14 10.7 8.28 7.47 6.7 12.4 5.38 12.1 10.2 11.2 9.56 9.86 9.23 9.67 10.4 8.89 8.18 12.6 7.15 8.26 10.2 11.5 11.2 3.16 6.37 9.58 1.9 8.72 6.2 8.59 6.85 6.27 9.01 8.94 8.96 7.1 10.1 5.68 0.78 10.8 8.93 9.46 9.86 10.2 6.79 9.68 8.12 11.1 10.2 3.76 8.94 3.93 6.87 5.69 7.32 2.28 11.4 11.3 8.61 4.82 10.2 10.7 9.56 4.26 6.1 5.09 3.83 10.4 7.97 8.69 7.2 8.1 10.1 6.42 8.87 8.86 9.52 9.4 8.77 9.77 8.95 5.66 8.58 10.6 10.9 10.3 10.3 9.37 6.86 7.7 6.31 8.74 8.55 7.76 4.47 1.73 5.8 9.35 6.35 11.8 10.2 2.52 1.23 7.8 8.62 7.39 6.56 7.63 14.3 9.32 2.2 7.96 9.81 9.57 0.73 5.16 0.77 7.38 7.34 3.53 11.7 8.06 6.36 8.98 9.41 7.89 10.9 9.25 8 7.97 5.31 10.8 11.9 10.4 10.3 5.99 10.5 11.3 10.1 9.62 8.68 10.2 11 9.55 9.8 7.02 11.1 9.88 11.8 10.1 3.52 10.3 12.2 8.65 10.8 9.93 9.96 10.1 5.72 10.6 10.3 8.76 9.22 7.74 10.7 7.31 5.89 8.34 5.96 5.78 10.6 6.73 8.25 7.61 5.81 11 10.7 10.7 8.45 7.31 11.1 9.31 11.2 10.9 10.5 10.5 10.4 9.63 6.25 10.8 1.12 0.69 12.3 12.2 9.14 12.2 10.7 11.2 6.35 -0.13 8.23 10.4 10.6 14 9.27 13.3 8.34 11.4 7.27 3.46 9.29 9.78 9.09 12.2 12.8 8.27 8.1 8.42 9.41 13.2 13.8 12.3 7.84 9.13 6.8 7.98 6.51 7.68 11.4 6.31 10.9 10.7 9.72 10.4 11.1 12.8 10.1 10.6 11.1 9.98 11.1 10.1 11.6 9.39 9.93 9.78 0.16 10.6 7.04 10.9 10.7 6.79 9.56 10.6 9.84 6.52 3.73 4.6 9.86 8.92 6.2 9.83 8.58 5.49 7.93 7.26 13.3 10.8 9.28 9.73 10.5 10.2 12.4 10.3 6.86 0.06 9.61 9.54 10.3 1.53 6.56 11.4 10.2 2.22 10.1 6.96 10.2 10.4 2.58 8.11 11.3 10 9.42 9.39 12.9 0.44 2.41 0.15 8.48 5.15 4.3 -0.6 11 11.6 0.59 9.67 7.84 4.28 10.2 9.47 4.57 5.09 11.7 9.05 7.84 10.8 10.7 9.22 5.1 12.1 8.29 10.2 9.37 8.64 9.44 8.68 9.63 12.1 1.6 10.2 9.11 6.66 6.65 0.95 11.2 6.95 9.51 7.28 8.74 16.6 9.42 9.11 0.43 7.13 4.63 4.18 10.2 3.5 10.3 10.1 10.8 5.69 9.87 6.73 8.78 11.7 10 8.77 12.8 4.08 0.87 7.15 7.38 -0.13 8.44 8.32 10.8 2.11 7.94 10.3 0.69 11.9 1.65 -0.13 9.54 12.6 4.09 10.9 10.7 10.9 1.87 9.45 7.98 10.6 10.4 8.99 6.65 10.1 8.51 9.31 6.37 9.31 9.13 12 11.2 11 8.5 12.4 9.54 11.3 9.05 8.36 10.8 10.9 1.93 8.88 10.8 6.43 6.5 9.63 4.82 10.3 10.5 0.86 1.19 7.11 9.88 3.53 9.7 10.6 9.7 11.1 8.21 11.6 1.94 11.3 10.1 5.49 5.24 1.57 8.81 2.39 7.72 8.95 9.26 0.69 11.3 10.6 9.16 9.73 14.3 14.1 14.3 13.3 13 10.3 13.8 2.91 14 10.4 13.1 14.1 13.7 13.4 14.6 13.2 13 12 14.7 3.24 13 11.9 9.28 13.7 12.6 14.2 13.4 13.2 13.4 13.3 13.3 14.2 12.1 13.3 11.4 13.7 14.2 12.3 9.29 9.79 14.4 6.15 14.5 13.9 13.2 10.6 8.68 13.4 13.1 13.2 16.4 12.6 16.3 3.08 0.72 5.4 8.85 7.96 13 0.2 -0.78 15.3 8.81 9.25 9.81 9.6 9.83 13.2 14.5 13 13 13.8 13.6 12.4 13.7 11.4 13 12.8 12.6 8.7 15.1 12.7 13 12.4 13.8 13.5 12.3 10.3 9 13.4 9.69 12.5 4.37 9.44 12.7 10 10.3 10.1 10.7 3.63 7.92 9.91 10.3 7.65 7.18 8.91 10.7 10.3 7.84 3.1 2.48 3.3 12.6 13 4.81 2.06 9.51 3.07 11.2 3.53 7.03 10.7 12.7 -0.3 12.4 3.63 2.52 14.3 10.9 10.9 12.2 9.29 4.04 11.4 9.76 11.4 12.2 8.45 8.54 9.31 11.5 10.2 4.72 10.8 10.6 9 12.4 6.93 6.68 6.39 8.27 2.74 6.03 0.79 2.87 11.7 5.11 5.35 5.14 6.73 13.1 -0.23 8.63 7.75 8.28 11.1 0.44 3.49 8.59 7.44 4.92 4.38 7 8.37 2.65 5.8 9.45 3.92 3.26 -0.22 1.47 7.98 3.54 1.45 7.29 0.78 5.07 7.09 5.25 9.69 9.33 8.36 8.28 11.8 11.9 7.39 10.7 9.68 7.63 9.38 10.3 11.1 10.2 9.59 10.3 9.69 3.27 9.03 10.4 7.12 6.82 11 10.2 10.6 8.46 7.44 11.5 5.09 0 9.05 10.6 9.72 10.1 7.81 8.85 2.78 1.98 8.87 8.79 6.72 9.25 9.22 9.06 7.37 10.7 7.72 8.37 8.2 8.24 11.4 8.38 11.1 1.26 9.45 3 8.38 8.3 7.76 8.95 0.19 10.6 6.45 2.42 6.53 3.49 8.86 9.12 9.83 9.09 1.74 13.7 10.4 4.81 10.4 9.39 7.46 8.3 6.44 11.3 5.36 11.2 7.3 6.22 5.26 6.87 0.96 7.76 9.56 8.24 7.28 6.99 6.96 10.3 10.2 10 11.6 7.5 8.73 9.9 9.92 8.57 7.92 5.31 7.69 4.91 4.55 5 2.11 10.8 6.61 10.6 0.98 10.1 0.49 13.1 10.3 4.88 6.48 8.93 9.33 9.93 9.13 9.28 12.2 6.02 6.14 5.78 5.57 5.28 8.39 4.37 10.4 12.9 0.61 8.67 6.94 11.1 10.5 12.6 10.8 8.73 9.21 7.48 10.2 7.35 4.48 10.1 10.1 9.4 11.2 4.35 3.79 9.35 7.1 7.74 4.67 5.32 6.37 0.28 12.8 4.12 12.5 12.7 5.96 7.47 5.85 9.23 8.56 6.07 7.59 8.62 8.58 10.9 0.48 5.33 4.89 1.24 11.5 5.1 0.35 12.4 10.3 8.77 10.7 11.5 9.84 7.13 10.9 7.68 5.61 10.4 9.79 8.23 10.1 8.82 6.77 6.72 6.14 0.47 1.55 6.07 11.9 10 9.88 6.02 8.58 8.67 1.17 5.43 9.42 9.08 8.26 -0.52 2.42 9.03 7.81 5.1 6.9 3.67 6.2 0.92 4.73 -0.52 5.23 8.61 3.08 9.65 9.5 -0.09 10.4 8.91 6.63 6.04 4.44 10 7.05 5 8.2 7.97 8.88 3.13 2.79 4.99 4.05 8.59 2.85 9.07 10.7 0.78 6.68 8.15 10.5 10.1 8.25 11.1 9.77 9.12 9.53 9.48 9.56 9.22 9.74 8.83 3.17 6.23 4.88 7.02 1.37 7.71 5.43 5.23 9.22 8.44 7.42 -0.24 9.47 3.28 3.85 7.73 3.03 10.6 1.15 8.45 0.56 8.71 10.3 7.63 2.64 10.6 2.81 0.63 4.49 4.51 10.8 10.6 7.57 -0.72 4.63 0.6 1.01 10.6 3.84 5.78 4.59 2.8 0.43 3.62 4.43 7.78 4.51 3.89 7.45 9.32 10.3 -0.34 11.2 2.68 2.64 3.29 7.19 3.03 5.89 3 11.3 2.97 10.4 5.3 5.7 9.38 -2.44 5.54 7.78 9.83 9.94 7.06 10.4 -0.38 -0.25 3.46 -0.29 11.8 5.11 10.4 8.18 7.74 6.73 10.4 10.7 13.3 6.01 3.69 8.16 11.4 3.83 2.11 11.3 10.7 9.36 10.7 10.1 8.94 9.4 0.44 8.26 11.3 11.2 8.24 9.88 8.07 10.9 6.59 8.5 9.62 10.5 8.51 11.8 9.76 9.96 11.7 7.81 10.3 7.46 9.44 9.93 8.14 10 7.45 9.58 7.83 6.38 10.4 8.69 -0.55 9.86 9.4 7.91 9.62 10.3 9.04 8.35 6.21 11.3 12.8 10.4 5.64 10.7 13.4 6.06 9.15 8.52 1.42 7.92 9.12 11.3 9.8 5.81 8.77 6.86 7.96 9.8 1.19 10.6 10.7 8.16 6.16 9.12 10.2 8.65 11.6 10.5 7.79 8.68 6.97 7.71 8.58 8.59 9.68 8.33 2.99 6.65 4.3 9.11 8.8 8.18 6.85 8.75 5.43 8.51 4.55 8.38 1.24 10 9.46 5.81 9.81 10 5.61 4.5 8.71 7.1 9.95 6.61 8.18 10.8 4.68 10.3 4.41 12 8.93 9.75 11.5 10.2 10.8 8.45 8.75 10.7 9.13 8.72 13.4 9.74 9.45 1.19 2.46 12.8 10.7 10.8 8.52 8.9 8.54 5.74 11.3 8.3 7.93 3.13 3.77 6.29 5.93 11.3 7.21 7.86 3.21 9.93 6.02 5.66 3.35 9.18 6.09 7.67 9.9 10.2 10.4 7.77 8.57 8.72 12 1.07 9.76 13.6 9.94 8.93 11.1 2.5 12 8.24 11.4 11.1 13.9 4.48 8.24 3.24 6.8 2.19 6.86 11.8 0.65 12.2 10.9 4.42 6.49 9.42 10.8 8.41 7.85 7.88 8.8 11.4 8.51 7.53 12.8 9.5 4.68 5.77 7.59 1.37 1.55 1.35 0.82 7.79 1.18 1.61 5.73 8.93 2.08 7.19 5.76 5.73 0.35 1.04 5.87 2.9 12.3 7.34 6.44 5.25 1.86 1.29 1.67 7.37 9.93 9.97 9.63 12.2 1.95 6.89 5.9 8.59 1.07 9.95 7.61 7.01 3.05 1.69 7.8 2.76 7.61 2.66 8.86 5.91 9.1 10.2 13.1 3.35 3.28 2.07 6.59 5.88 2.71 8.69 -0.35 4.73 7.7 4.75 5.97 1.56 9.2 0.55 5.96 9.04 3.87 5.53 7.93 1.03 3.69 0.77 7.46 8.09 8.49 1.89 6.53 7.95 2.83 10.6 9.53 8.7 9.05 0.47 -0.24 7.6 10.2 8.91 10.1 7.71 10 1.66 2.31 6.78 9.18 1.7 7.82 11.3 12.8 6.49 9.55 9.98 10.2 14 8.5 9.68 11 10.8 9.38 8.31 10.6 10.1 10.6 9.24 13.9 7.54 1.43 12.4 6.18 10.1 10.2 10.1 9.15 6.72 8.81 9.2 3.43 5.55 1.95 5.38 10.5 10.6 12 11.3 11.4 6.28 5.02 9.81 12.6 2.91 10.7 8.33 9.62 7.18 7.52 10.9 12.3 12.1 9.79 5.25 5.06 8.42 8.1 8.96 7.86 8.31 6.74 8.17 11.5 11.2 10.4 8.64 11.8 10.6 8.13 11.2 10.1 11.8 10.5 10.5 10.4 10.4 10.6 10.5 9 11.5 10.8 11.6 9.11 9.22 -0.53 13 6.12 10.7 7.18 10.4 9.3 12.4 9.23 11.1 12.6 9.77 12.4 10.4 5.79 9.33 1.31 3.56 11.8 11.4 10.3 8.93 11.1 8.42 11.5 8.43 9.67 7.64 13.6 9.52 9.75 8.62 2.44 9.05 0.88 11.7 5.9 4.81 13.7 7.71 9.14 13.4 2.12 8.6 12.1 10.1 14.5 8.51 8.78 2.82 10.8 8.45 11.2 11.9 10.5 10.1 12.4 12.1 9.34 10.5 6.21 11.6 11.3 10 10.2 11.6 10.1 10.1 11.6 10.4 11.5 12 12.2 11.5 9.9 11.7 6.36 4.19 0.34 11.5 11.2 11.8 12.2 5.1 13.3 6.02 13.6 11.6 13.2 4.24 8.92 9.18 3.34 -1.68 0.61 1.4 2.02 2.22 2.65 2.93 11.1 2.57 0.25 -0.29 4.72 11.4 12.1 6.12 10.1 4.73 7.13 9.96 8.74 8.99 8.95 9.73 9.79 5.11 3.58 8.56 9.65 1.98 4.69 7.91 7.01 9.52 9.79 10.5 10.5 10.9 9.74 8.51 9.62 9.08 10.2 12.4 5.86 10.7 10.8 11.3 6.87 12.1 9.61 9.81 8.58 12.4 8.94 9.3 8.44 16.1 10.1 7.55 9.84 9.59 3.24 11.6 3.56 1.65 4.01 12 7.91 7.91 3.55 4.51 1.08 8.7 10.1 3.92 8.68 8.7 11.6 10.5 8.92 7.7 10 7.9 10.9 11.6 10.7 10.2 9.88 10.6 9.09 7.45 9.7 2.65 1.49 11.5 13.5 11.6 11.1 12.8 9.19 9.99 11.5 1.64 0.54 7.62 10.8 10.2 11.4 9.33 9.45 9.02 11.2 4.23 6.34 4.74 7.2 10.2 10.2 10.3 2.47 5.25 8.21 11.1 2.74 0.36 11.8 7.02 11 10.4 5.43 4.84 10.6 10.1 8.88 6.68 8.79 9.92 3.09 11.6 8.35 9.11 9.65 11.1 10.4 0.71 9.4 10.1 6.83 12.2 4.98 0.62 9.79 10.5 9.39 5.35 11.1 10.9 9.14 6.23 14.1 10.4 6.92 9.8 8.21 6.17 9.26 13.8 9.04 8.18 8.93 0.84 10.8 9.69 0.35 10.2 4.39 9.41 10.7 8.93 9.44 6.82 9.43 9.79 9.53 10.7 5.95 6.28 3.09 11.3 3.01 5.71 9.22 7.74 9.06 6.62 4.81 11.2 9.98 1.21 9.96 9.53 9.13 10.5 9.33 9.72 2.71 7.18 10.4 8.56 10.7 9.78 9.94 2.76 8.92 0.82 10.7 6.81 14.2 11.3 9.8 10.7 10.7 9.43 7.88 12.3 11.9 9.79 3.67 10.4 11.2 9.94 7.93 12.6 6.4 11.3 8.12 8.82 6.87 1.24 13.5 11.5 7.45 8.07 8.34 7.68 16.3 13.6 8.26 8.68 10.4 8.35 9.65 9.45 10.8 9.79 11.7 11.5 16 10.7 5.59 5.49 4.67 2.34 11.1 12.1 9.4 11.4 5 11.6 8.69 0.56 1.88 5.21 9.78 11.3 3.96 11.4 8.19 10.8 11.4 6.79 2.76 11.9 12.6 9.08 11.3 9.37 10.2 10.4 5.93 7.65 10.8 11.2 11.6 0.73 14 9.97 9.07 11.6 13.5 13.4 9.94 9.24 11.5 9.18 14.8 -0.2 13.7 8.91 10.2 13.8 6.08 8.27 8.27 8.39 7.82 8.27 13.8 -0.07 13.2 10.8 9.87 9.81 0.92 6.23 0.08 0.34 6.93 9.14 9.24 3.34 3.49 4.09 11.3 10.5 11.6 0.43 11 1.19 10.3 11.7 12.8 9.94 4.35 8.36 10.2 10.5 10.6 11.8 9.6 5.64 8.65 9.18 6.41 7.75 6.49 4.92 4.66 11 5.71 9.49 8.89 7.47 9.68 5.52 5.67 5.8 7.26 7.03 4.29 6.47 9.8 4.41 5.41 7.97 10.9 4.69 8.37 2.17 5.18 7.91 12.6 7.35 6.69 5.56 6.99 8.59 7.88 3.68 9.14 2.09 6.2 6.1 9.15 3.84 5.08 9.51 5.37 -0.59 12.6 6.02 7.61 1.07 7.67 1.49 5.46 6.1 7.62 6.76 9.92 1.77 1.27 9.66 5.6 7.69 5.29 4.48 2.88 4.49 1.47 1.31 5.35 8.79 4.5 6.32 0.27 3.99 4.93 2.2 5.78 7.09 6.04 2.03 5.78 11.3 8.49 4.77 8.66 10.2 2.95 11.9 4.13 7.24 -0.02 9.74 12.5 2.3 1.1 4.35 10 6.66 9.05 6.4 4.26 1.01 9.16 6.66 4.77 9.81 1.97 7.96 4.6 8.18 8 7.11 8.66 9.98 0.79 11.2 2.09 13.5 1.79 10.5 15.4 14.2 0.38 10.9 11.7 10.1 8.94 11.4 12.8 11.8 10.7 9.93 11.6 11.8 11.3 1.21 11 11.8 11.8 10.1 10.2 8.88 11.8 11.6 12.2 12.2 7.71 5.72 4.24 14.8 5.98 10 5.38 10.3 8.07 9.95 10.9 9.92 8.3 9.79 7.65 10.8 10.6 10 8.96 2.2 10.7 -0.25 11.6 12.7 11.9 11.5 6.98 11.5 10.1 10.8 12.5 10.1 2.32 11.4 11 9.49 13.7 11.1 9.77 8.46 5.76 9.11 6.5 11.6 13.3 12.1 10.9 10.6 7.57 11.8 11 8.01 -0.11 10.6 1.61 13.2 13.4 3.76 1.92 9.42 4.34 4.68 6.4 8.81 8.11 7.7 1.57 8.42 11.6 12.8 7.46 9.7 12.2 10.8 9.08 7.27 9.75 9.54 10.7 10.6 10.3 4.61 -0.27 1.33 7.31 5.63 10.7 4.88 1.23 0.63 8.22 4.36 4.77 0.39 10.1 7.49 13.1 13.1 6.79 0.42 10.5 6.92 7.88 10.2 6.2 10.3 0.65 12.7 9.42 6.15 7.73 7.2 10.2 13.3 6.86 10.5 10.6 13.1 7.93 12.8 11.8 11.7 14.3 4.97 12.3 9.58 6.32 13.2 8.46 10.2 9.23 8.05 9.95 9.96 6.67 8.1 6.21 12.6 8.29 9.42 7.39 7.26 7.84 6.84 7.63 6.3 8.57 7.94 10.8 9.23 6.74 11.1 8.1 8.31 6.87 9.12 9.96 9 8.53 9.05 8.31 7.88 8.15 8.32 8.83 7.58 6.51 6.4 5.15 8.22 6.6 6.58 7.73 7.72 8.77 10.1 6.71 0.97 10 3.31 6.58 6.99 8.92 -0.05 10.8 6.11 4.91 5.18 11.8 6.16 1.75 2 0.79 -0.6 4.46 2.82 8.68 9.15 5.14 8.93 8.08 7.35 9.22 5.14 6.77 9.63 6.69 5.67 9.51 8.32 11.7 2.23 10.4 10.9 10.4 9.5 8.5 2.77 6.93 3.44 11 7.88 11 8.34 6.91 10.3 5.69 3.6 7.04 9.2 8.82 10.1 5.68 9.21 9.35 8.95 7.78 7.97 5.39 10.1 8.78 7.53 8.64 8.28 12.3 7.35 7.35 9.15 6.71 4.18 11.6 11.1 7.12 7.12 6.07 7.48 7.97 7.61 6.51 8.21 7.01 8.4 8.42 9.49 7.05 1.57 6.13 7.95 8.46 5.65 13 10.1 10 13.9 12.4 11.5 8.09 11.9 4.41 13.3 8.22 10.7 7.9 3.44 11.5 10.5 8.78 9.61 10.9 10.4 14.9 14 3.07 2.98 10.2 12.4 9.27 2.93 9.37 10 9.35 8.55 9.72 10.7 11.1 13.3 10.4 6.15 10 5.55 9.61 9.41 6.03 6.87 8.58 12.1 9.68 7.83 9.42 0.28 4.68 9.58 11.4 7.15 10.3 12.8 8.6 10.4 9.79 5.56 9.02 8.89 10.1 0.05 13.8 10.1 9.19 7.13 8.74 11.3 9.46 5.75 13.8 9.21 7.22 9.6 9.69 11.4 9.81 9.53 10.6 4.37 10 11.2 8.49 9.65 9.42 9.02 11.8 9.14 14.5 7.49 9.34 8.71 11.5 9.54 9.65 6.72 9.15 7.85 10.1 7.85 8.28 10.2 8.63 8.76 9.1 10.4 11.2 11.4 8.28 6.48 10.2 8.69 7.56 6.62 6.74 10.2 8.72 9.97 6.23 8.15 10.3 11.2 11.6 9.32 7.91 9.61 8.6 12.2 13.8 8.55 9.73 10.1 12.1 8.39 7.06 5.21 6.86 10.3 5.9 6.11 9.78 9.52 8.57 9.02 10.2 8.4 13.4 8.65 6.47 0.1 7.25 8.43 13 10.8 10 7.37 7.36 7.88 8.04 8.14 6.86 8.68 9.06 10.1 9.27 8.8 0.97 10.5 12.3 7.91 10.7 11.8 8.85 9.02 7.56 3.92 9.81 1.82 0.28 4.42 11.1 6.46 9.96 12.2 6.54 1.22 4.77 5.86 6.39 3.1 6.5 8.04 7.89 8.62 7.48 10.2 7.4 8.36 4.21 10.6 8.03 9.71 5.24 1.36 4.44 2.66 9.58 8.9 7.55 4.23 9.15 11.2 8.52 12.4 9.7 10.3 9.07 9.08 10.1 9.03 9.66 8.74 10.8 9.08 9.81 10.3 7.91 7.3 9.52 10.6 9.52 6 8.36 6.4 7.14 7.81 7.25 6.5 8.31 4.67 8.18 9.11 6.78 9.5 3.39 5.83 6.98 1.73 11.2 5.25 9.18 1.7 6.55 7.82 7.18 8.41 8.95 7.4 9.18 7 8.56 10 6.46 8.22 11.4 4.94 7.38 9.87 9.14 10.2 6.74 11.1 6.89 9.41 7.15 6.79 5.58 5.21 8.31 9.03 11.2 9.47 3.92 9.35 5.45 8.21 7.33 9.57 8.6 6.09 8.18 8.13 9.12 9.2 8.93 6.75 7.12 9.86 4.87 9.66 9.36 9.95 8.95 8.39 6.79 7.18 8.09 9.5 7.89 7.78 10.2 9.31 8.21 11.3 7.31 10.9 7.47 6.89 8.91 9.48 12.1 11.8 9.89 7.55 2.15 8.18 9.84 7.15 9.79 8.65 8.37 7.86 8.76 8.3 5.93 9.82 8.11 9.03 5.42 1.67 7.62 7.34 8.49 8.21 2.88 8.13 0.36 9.76 8.77 9.7 8.96 5.56 6.8 8.19 7.32 7.59 9.59 9.1 8.24 8.13 10 5.71 7.15 3.42 8.49 7.97 7.41 8.31 8.92 0.05 5.39 11.5 6.73 4.94 8.8 10.8 8.53 9.35 9.37 8.97 7.79 7.93 7.28 7.68 5.83 8.88 8.14 8.58 7.97 6.93 10.2 8.17 10.8 4.9 6.57 5.38 10.1 6.71 6.93 10.2 3.05 6.79 8.06 4.84 3.02 9.2 8.93 8.67 6.54 9.31 8.26 9.05 6.3 12.7 5.74 6.76 9.33 8 5.17 7.15 3.78 6.08 9.08 6.93 6.86 11.3 1.92 7.35 4.65 -0.14 4.25 6.19 2.37 9.45 2.34 7.28 9.24 6.95 0.87 7.51 10.2 7.76 11.4 7.04 8.2 9.7 3.72 8.18 9.7 9.42 9.16 4.7 8.5 10.5 6.6 9.79 8.46 10.2 7.99 10.1 8.05 7.15 10.5 10.7 9.89 6 9.39 9.13 6.6 10 11.4 9.93 10.2 5.36 7.48 0.13 11 8.43 8.15 7.07 5.86 8.3 10.5 6.21 2.48 4.16 8.21 4.1 5.99 8.09 7 3.27 11.1 2.92 8.44 4.59 1.49 12.6 10.3 1.81 6.38 8.23 6.27 9.82 -0.19 7.75 9.93 2.45 10.6 7.28 7.68 7.77 9.81 9.4 6.72 8.33 7.36 8.77 7.67 12 9.38 6.05 9.92 7.28 9.34 7.42 2.15 8.52 5.04 7.62 9.68 8.97 2.72 8 5.13 11.4 6.45 -0.63 9.1 9.9 7.51 9.11 8.08 2.34 8.38 10.4 9.9 8.25 6.95 11.1 9.32 9 10.1 8.1 8.48 11 8.64 9.13 8.75 8.71 -0.95 0.42 7.19 3.89 7.8 9.18 9.78 0.31 5.48 3.73 -1.06 8.22 9.8 13.1 5.79 8.21 3.98 4.98 6.17 6.22 11.6 8.15 5.91 8.8 4.75 7.03 9.97 8.36 9.35 10 9.81 9.94 9.52 10 7.48 11.3 8.72 9.78 10.3 10.5 5.17 9.24 6.77 8.29 9.46 8.51 9.61 6.44 7.16 9.9 5.84 7.55 8.47 10.4 9.41 9.24 9.86 9.54 8.7 10.7 10.3 8.75 6.19 8.5 9.85 9.8 10.8 9.41 10.7 9.29 9.25 7.47 11.5 9.51 8.2 9.84 8.14 7.93 11.3 9.52 10.4 5.17 11.4 9.75 4.87 6.22 7.21 9.06 10 8.92 9.26 9.34 7.95 6.63 9.79 9.14 8.61 8.51 8.99 1.3 11.6 9.84 5.07 8.4 12.7 9.7 7.08 8.63 7.88 9.87 7.41 10.5 11.9 6.92 7.9 7.02 8.68 8.77 8.33 7.23 8.3 5.38 9.02 6.41 8.78 9.2 7.17 2.15 1.24 10.8 3.99 4.01 12.1 8.57 5.85 7.07 5.31 11.4 7.83 8.04 11.1 9.57 0.15 10.5 6.51 9.73 6.99 5.07 10.3 9.89 13.7 9.42 3.33 9.06 11.2 6.9 9.37 4.12 4.28 10.2 3.29 9.49 10.6 8.38 12.9 7.57 11.8 9.03 4.16 4.42 9.26 7.54 8.25 9.36 3.14 5.66 4.82 7.41 8.05 11.9 7.82 4.72 9.65 7.22 8.04 6.73 10.3 6.36 11.9 12.4 10 12.1 9.32 11.8 8.26 10.2 9.23 8.14 9.25 7.45 10.1 11.1 9.83 9.96 8.39 2.13 10.6 10.7 8.1 8.91 8.63 9.74 5.28 7.1 6.58 3.81 11.6 8.82 9.62 7.42 2.07 3.42 12.1 12.6 7.55 3.59 3.73 3 6.43 8.52 8.48 7.76 11.9 12 15.1 2.86 4.23 0.93 3.7 0.52 11.6 11.4 10.1 3.66 0.94 7.73 11.5 9.01 9.03 8.15 7.32 1.19 3.95 12 7.73 8.46 9.25 6.42 11.1 10.1 6.47 8.51 9.44 7.81 10.4 6.1 9.86 10.3 10.1 10.2 9.99 10.5 9.66 9.11 8.88 9.72 10.7 0.66 8.86 6.27 9.44 8.83 7.72 11.4 8.25 2.48 10 1.27 7.27 10.9 10.3 11.4 8.81 10.1 9.83 9.96 9.62 11.3 9.78 3.82 3.95 9.11 9.61 11.4 7.83 2.92 10.3 6.89 10 10.2 6.8 10.7 10 11.3 11.1 12.3 10.1 7.58 4.24 9.52 0.92 8.19 7.77 -0.29 9.84 8.43 2.86 10.1 7.06 8.65 3.39 3.93 4.3 9.38 5.62 10.9 7.94 8.81 9.77 8.44 8.86 10.7 4.69 9.61 6.56 10.4 9.8 6.94 9.8 9.73 11.9 10.5 7.79 8.49 11.1 11.8 9.01 -1.22 9.25 10.2 1.1 9.59 8.39 9 10.2 5.93 7.9 6.72 9.69 10.1 1.06 11.1 9.86 8.33 11.3 13.9 7.28 9.38 5.68 11.5 8.76 0.25 9.61 9.37 9.58 8.68 12.8 8.09 12.1 12.1 11.6 11.1 11.8 11.4 5.87 12.6 9.3 6.68 9.52 7.27 8.51 8.53 1.56 11.8 3.31 11.9 11.8 8.08 6.73 10.2 2.47 11 11.3 10.9 9.41 6.57 12.1 7.62 9.48 10.2 11.5 9.66 8.34 7.25 12.3 2.72 8.26 8.69 9.7 10.8 7.59 2.22 2.35 9.99 4.22 0.47 -0.91 12.1 3.06 10.7 3.97 7.51 7.47 8.47 1.26 5.28 3.45 2.89 -1.17 3.61 7.15 4.7 9.56 11.7 11.1 9.11 6.62 3.22 5.71 7.99 10.8 8.45 0.09 7.43 8.54 8.85 7.73 7.28 8.08 7.76 7.34 5.46 8.79 4.03 7.28 7.97 12.1 10.7 10.5 -0.33 5.61 0.95 7.83 6.87 -0.61 8.51 6.57 10.5 9.54 5.67 8.88 9.8 5.58 7.02 1.6 7.42 2.71 -0.43 9.04 8.05 3.47 7.18 8.34 4.43 8.24 9.67 0.69 9.73 9.12 10.1 9.57 8.42 0.06 4.36 9.99 11.4 10.2 1.05 8.68 8.25 7.04 9.59 2.26 9.27 0.18 3.08 12.1 0.13 7.99 11.9 8.45 2.21 8.11 10 9.52 5.35 9.62 9.58 1.25 1.24 9.64 9.76 9.54 7.24 8.54 8.18 4.26 10.2 7.19 10.6 8.56 1.73 2.33 9.06 4.53 6.34 10.5 8.92 9.23 5.74 9.33 9.58 2.58 4.37 8.9 10 9.93 8.7 0.95 5.69 2.36 8.49 6.55 4.18 8.14 5.52 10.4 8.46 7.31 7.27 9.27 11 8.82 8.31 4.66 5.33 9.7 7.25 8.51 -0.07 6.76 -0.43 2.62 1.71 1.1 2.37 1.21 7.83 10.9 9.78 5.05 9.94 12.1 8.52 7.06 8.48 6.87 10.9 10.8 12.1 8.68 6.67 3.32 0.43 7.2 3.16 6.91 11.1 8.43 8.45 4.63 10.8 11.6 9.82 10.1 9.74 3.54 6.72 9.99 0.14 9.85 10.1 4.03 8.55 9.95 10.4 9.87 11 10.9 1.46 6.99 7.29 8.92 5.67 5.57 8.3 11.5 9.43 -0.06 9.01 9.33 9.44 7.76 5.66 13 2.84 6.6 2.91 2.51 7.18 7.4 10.3 11.7 7.33 9.69 7.1 6.08 8.51 10.4 1.39 10.9 7.35 2.27 7.31 8.12 5.22 6.82 9.04 8.21 8.3 8.07 10.4 9.12 7.7 8.96 9.98 8.32 8.35 6.76 8.39 7.7 5.25 9.8 10.3 8.74 9.04 8.65 9.83 6.81 9.41 7.94 9.63 8.74 9.9 10.6 10.2 4.61 9.93 9.18 4.41 5.12 5.24 10.8 8.16 9.47 9.69 10.1 6.82 5.28 6.04 9.45 10.3 10.2 3.78 10.7 5.71 5.04 3.77 6.76 10.3 8.5 4.33 9.93 4.97 10 6.92 6.06 3.49 6.85 7.26 11.3 11 7.87 8.76 1.05 8.9 8.87 11.4 9.4 10.2 10.9 5.83 10.7 7.09 2.24 6.78 6.63 9.76 9.03 2.37 8.34 9.57 12.8 9.66 10.2 5.92 8.98 9.64 8.27 9.06 9.27 9.47 8.19 10.6 9.53 10.2 10.6 8.87 8.9 8.81 3.1 8.52 10.9 9.5 9.93 9.54 7.88 9.19 9.6 8.37 10.3 6.82 8.87 -0.01 10.9 10.8 9.47 9.46 7.25 9.39 10.4 10 9.8 6.39 6.9 8.32 7.99 10.3 8.73 9.01 9.76 0.1 9.85 10.7 8.18 10.6 7.17 7.94 9.82 9.65 8.64 9.52 9.68 10.9 10.9 8.92 6.17 9.36 6.05 7.03 8.12 7.82 10.2 9.07 10.4 10.2 10.2 7.11 9.7 8.29 10.4 1.11 5.91 10.8 9.88 7 8.46 8.67 8.54 2.75 9.77 11 10.1 6.66 10.7 5.79 8.1 8.36 4 7.47 13.2 7.25 9.3 11.1 6.19 10.8 5.85 9.32 10.1 11.2 8.91 7.74 7.9 5.67 9.85 3.42 8.76 8.38 4.34 1.48 5.76 5.81 10.8 9.48 11.7 8.14 4.86 8.24 10.3 7.27 9.23 8.7 10.1 5.92 5 6.61 11.1 8.78 10.8 7.56 8.19 8.54 7.67 10.2 10.3 5.78 10.4 5.46 7.77 10.4 7.73 8.73 8.39 11.2 8.63 7.31 7.83 2.11 10.1 8.4 9.83 2.62 8.45 8.43 3.45 9.4 8.96 10 4.21 6.88 0.33 7.68 7.62 6.94 4.48 12.4 10.5 9.06 -0.91 2.02 7.57 9.8 10.9 6.56 9.09 8.34 11.5 4.93 0.33 0.6 3.5 10.6 8.6 6.99 10.9 11.1 5.86 8.73 6.49 9.97 5.2 0.91 7.96 9.82 10.1 8.94 4.83 6.34 7.12 2.06 4.28 0.83 11.5 10.6 -0.27 3.79 11.9 10.1 9.27 8.49 3.84 10.3 10 8.91 6.16 13 7.42 12.6 9.72 5.41 1.75 4.15 10.5 9.46 7 7.65 8.58 9.81 7.12 2.62 8.28 6.65 5.3 9.98 6.46 8.63 12.4 7.08 9.39 3.2 6.99 9.01 10.6 4.32 7.14 4.66 4.64 8.15 10.1 8.61 7.38 3.21 0.34 7.79 9.01 9.27 5.62 8.33 10.6 0.31 8.26 8.38 5.13 6.03 9.89 10.2 5.93 8.4 2.13 6.39 8.94 4.77 7.12 5.63 11.4 8.16 8.31 9.97 7.66 8.67 8.44 9 8.15 7.68 1.82 8.19 7.69 10.2 9.22 8.35 8.2 8.54 8.39 9.06 10.6 9.03 8.81 0.51 9.28 10.8 8.12 8.27 9.8 8.59 9.36 8.78 9.97 8.7 9.27 9.85 7.27 8 10.8 8.59 10.1 9.86 6.13 8.43 6.04 8.3 7.44 9.65 7.08 10.5 9.38 6.37 8.21 9.52 7.29 8.74 9.59 9 4.82 8.77 8.67 9.01 11.6 9.62 8.5 9.39 8.42 9.22 1.98 8.56 7.52 1.87 8.52 9.58 8.4 6.75 9.42 10.3 4.46 8.3 3.91 7.4 8.9 7.27 8.34 6.74 10.5 3.83 7.62 8.83 6.98 10.7 7.53 3.5 7.03 10.6 8.85 9.96 8.15 8.32 9.92 5.43 1.1 6.9 11.9 7.6 9.09 9.87 2.6 2.84 10.8 10.8 10 7.76 10.9 5.48 10.2 8.59 0.3 6.32 7.92 9.15 9.21 6.85 8.44 10.8 9.58 9.07 8.17 7.76 7.27 12.1 8.88 9.16 6.75 8.37 11.4 9.02 5.07 1.91 8.06 3.84 2.95 7.87 10.4 15.8 10.8 0.99 8.22 -0.94 13.1 8.87 7.2 8.91 7.43 0.15 4.8 -0.31 6.4 7.27 11.1 9.09 8.58 -0.22 7.69 0.92 0.73 10.4 9.44 8.77 2.34 8.05 9.08 8.05 7.15 9.47 9.99 10 5.68 9.73 3.86 3.85 8.5 7.54 9.97 11.4 8.01 9.57 9.73 11.4 5.43 4.53 4.56 2.31 7.22 11.7 6.45 11.3 11.6 10.4 8.09 9.15 9.3 11.1 2.98 8.33 3.27 11.8 8.16 9.96 9.17 2.63 12.1 9.98 7.53 7.46 10.3 7.72 9.17 9.27 5.82 9.06 9.67 3.49 1.08 10.3 7.92 5.05 3.08 8.99 1.4 5.62 7.21 9.48 4.72 4.16 11.6 8.31 9.36 7.67 5.36 9.15 8.46 10.6 11.3 8.67 4.04 11.7 10.8 9.14 10.1 9.53 9.08 11.3 9.71 9.49 9.97 10.8 9.85 8.18 6.48 7.85 7.84 10.6 6.59 1.03 1.91 10.1 10.2 8.52 7.02 11.6 2.65 6.62 9.56 8.97 10.5 11.2 8.24 10.8 2.6 2.98 9.84 6.05 9.94 10.1 10.6 5.49 7.21 4.94 3.85 9.15 5.6 1.09 9.56 10.7 9.99 9.47 9.15 6.41 7.53 7.16 7.64 6.11 10.6 8.6 5.41 10.2 10.1 9.84 10.4 5.52 6.58 13 5.71 8.98 7.76 12.1 11.6 7.7 11.8 11.7 13.6 13.1 13.2 9.84 8.38 6.05 10.8 11.7 8.96 10.3 5.8 12.2 11.1 9.53 7.71 12.1 12.2 6.45 8.03 11.1 8.65 9.26 10.5 4.57 12.6 4.66 9.06 10.2 10.1 7.2 10.1 0.59 1.1 13.6 6.92 6.63 8.2 10 7.17 11.4 11.9 10.7 10 11.7 12.1 8.67 9 7.99 10.9 11.5 10.7 8.84 10.3 6.69 10.3 7.63 7.85 3.31 9.56 7.88 10.7 4.74 3 6.26 -0.14 7.83 10.1 10 8.87 9.76 12.5 12.5 8.3 11.2 8.7 5.52 8.7 10.2 10.1 10.8 8.96 5.9 9.34 4.86 10.3 3.75 0.15 2.55 7.08 8.36 6.08 4.76 3.34 8.34 5.08 8.97 10.6 2.31 7 10.5 11.2 9.61 11.6 9.31 1.53 5.03 1.92 3.87 10.5 9.53 4.67 12 10.7 8.08 9.82 7.9 4.46 5.34 0.87 9.36 2.41 12.2 8.79 10 7.26 9.61 6.47 9.79 9.08 5.3 9.61 9.49 8.5 2.86 4.72 10.3 1.18 5.71 8.05 10.2 8.43 4.71 13.2 8.38 5.42 10.1 3.39 4.18 10.7 0.95 8.97 11.3 8.16 9.54 7.04 8.06 7.2 9.53 7.89 10.6 9.42 9.86 4.47 4.65 5.67 13.6 12 11 9.86 8.78 9.23 10.2 10.5 11.6 11.3 9.25 10.2 9.7 9.87 10.1 11.3 11.9 10.6 10.1 9.35 10.7 0.93 9.81 10.8 11.5 9.03 9.99 10.1 8.82 3.39 11.4 9.68 4.27 6.13 7.92 3 10.4 9.06 7.74 9.92 10 9.09 7.75 7.26 1.49 10.3 10.7 10.9 9.9 8.4 9.09 7.44 10.2 7.45 8.12 6.68 11.4 9.62 10.3 1.81 4.84 7.99 11.9 1.59 3.26 10.6 8.24 10.1 9.84 3.77 9.08 9.35 5.79 3.22 8.91 9.57 9.96 7.43 4.49 2.55 1.3 3.98 9.05 6.43 7.85 7.73 9.71 7.66 7.17 4.09 9.04 6.97 9.4 2.98 2.01 8.91 1.69 1.11 7 0.45 8.36 11 7.77 9.43 12.1 11.1 11.7 9.11 -0.13 6.18 9.12 9.83 8.16 10.1 8.15 7.98 10.5 7.93 6.71 8.19 7.58 9.98 11 10.2 2.51 7.9 6.63 9.31 7.36 11.5 6.55 2.12 9.66 9.77 9.05 -0.35 9.57 6.1 8.64 6.88 6.74 7.35 4.75 11.5 10.4 8.73 9.09 7.7 8.5 9.24 3.72 2.84 1.56 10.8 6.49 0.5 1.24 5.9 9.07 10.1 8.63 1.5 8.37 3.26 5.08 6.95 5.32 10.8 8.39 7.66 8.3 9.81 8.78 1.65 5.35 8.56 8.52 5.57 6.39 6.16 8.67 9.08 5.35 9.46 11.3 7.15 10.5 9.2 6.62 10 9.53 9.25 11.1 7.51 8.66 6.9 9.48 10.3 8.81 9.85 13.2 5 7.33 5.28 6.1 11.6 5.08 10.6 9.87 8.9 7.39 7.67 9.29 5.43 6.02 11.5 6.75 4.49 9.92 10.3 9.85 9.52 9.41 6.9 8.74 7.85 12.1 9.16 -0.12 6.42 7.93 9.04 7.06 10.7 8.66 7.14 9.46 8.33 7.47 7.46 9.19 6.55 4.3 0.46 6.74 9.37 6.1 9.93 7.41 9.54 9.62 5.24 8.37 7.76 2.02 7.77 11.2 7.07 9.25 11.9 6.72 9.4 9.75 7.68 7.14 9.65 9.57 5.42 12.1 9.87 5.61 10.6 6.11 8.08 0.85 10.1 11.2 10.4 9.94 9.45 6.84 8.56 9.13 10 2.19 10.9 8.65 8.58 4.79 8.69 6.61 10 10.5 9.59 10.6 9.68 5.41 9.98 6.47 8.65 7.23 8.89 8.84 7.48 2.45 10.4 10.1 10.3 10.3 5.65 7.63 7.73 9.16 11 8.36 8.41 9.49 6.24 5.23 0.96 4.95 4.43 5.51 7.9 3.86 9.89 10.5 8.75 9.53 10.3 0.7 9.97 10.1 8.15 8.99 9.97 8.69 2.36 9.56 9.66 10.6 11.8 6.4 5.91 6.13 9.36 6.52 9.54 8.87 0.38 4.11 9.43 8.67 10.6 9.38 9.29 10.3 8.06 6.78 8.68 8.03 11 6.4 10.8 6.86 4.69 7.41 12.1 6.78 9.75 4.57 0.87 9.64 11.5 7.43 9.75 2.09 9.06 4.82 10.2 4.44 6.28 4.07 10.4 10.4 8.09 9.66 11.6 9.06 5.74 9.3 6.91 9.29 10.2 6.3 9.86 3.5 6.52 0.78 8.94 9.38 9.46 7.68 1.81 10.4 7.18 11.7 15.6 8.36 8.99 10.9 12.2 6.42 4.53 8.81 6.93 1.2 1.63 5.88 10.8 10.2 6.68 5.22 7.7 4.12 10.5 9.81 7.82 8.91 8.54 8.5 6.75 5.02 12 2.69 8.66 8.68 10.9 10.1 3.88 7.38 8.94 9.61 6.97 8.08 10.7 9.85 6.28 4.56 10.1 4.03 0.38 7.72 7.75 -0.2 9.78 3.83 7.91 9.42 8.78 3.01 7.21 8.52 10.4 3.79 8.15 5.19 7.49 8.83 11.8 11.6 9.94 7.04 7.99 10.6 9.56 5.8 5.35 10.1 14 7.99 8.57 8.98 11.8 5.48 11.5 8.6 9.22 5.46 9.69 8.54 11.7 9.72 11.1 8.34 9.12 11.4 6.76 9.19 6.6 7.34 9.34 6.01 9.11 5.82 0.49 7.94 7.29 8.81 6.65 4.85 6.95 5.55 11.7 6.59 9.35 10.2 10.4 9.92 10.2 7.98 7.74 8.38 8.21 11 7.82 9.17 3.26 9.44 10.1 8.19 4.92 12.1 9.08 -0.76 3.98 8.78 1.7 6.34 12.6 7.95 -0.37 12.2 7.11 6.58 10.3 8.93 3.28 9.95 9 9.08 7.27 11 5.16 4.06 7.19 9.18 4.64 8.91 9.78 11.2 8.71 9.31 8.55 9.11 2.93 10.6 9.44 9.21 10 8.65 7.64 10.1 10.9 9.1 8.76 8.52 4.17 10.2 12 10.7 9.41 4.26 9.91 13.9 8.28 9.09 10.7 7.77 3.54 9.4 6.25 9.38 13.6 10.9 2.71 10.1 9.7 6.73 8.41 9.75 4.74 11.4 10.8 4.91 5.84 9.08 9.12 9.12 1.27 10.3 1.5 9.11 7 9.85 8.59 6.46 4.93 1.58 5.87 8.23 8.06 6.88 9.74 9.37 7.45 10.7 12 4.72 2.23 7.05 9.98 9.42 11.5 9.47 11.4 8.91 9.95 9.88 8.7 11 8.65 9.95 11.9 9.14 7.18 10.2 6.25 9.5 11.2 5.09 12.1 13.4 8.41 11 8.24 9.29 11.5 9.87 -0.45 12 8.5 10.1 6.55 4.21 11.1 13.2 0.7 10.1 7.58 10.5 6.79 9.9 1 8.04 -0.38 3.85 8.4 5.26 10.1 10.3 10.5 8.8 -0.26 13 8.76 9.2 9.35 4.13 8.63 10.3 3.93 6.19 2.02 8.67 7.87 9.17 11.8 7.16 10.9 9.09 10.6 9.14 11.9 10.3 2.18 7.32 11.4 3.85 9.83 7.66 5.59 0.93 5.08 -0.28 11.4 8.48 10.1 7.99 8.07 9.01 11.6 -0.23 4.03 -0.83 6.36 7.85 4.85 9.55 10.3 6.04 7.73 5.45 3.84 10.4 11.5 3.62 6.45 3.05 6.19 7.81 10.2 5.8 10.7 8.78 3.99 8.68 7.8 3.6 11.3 9.67 11.1 9.29 9.7 9.49 9.36 7.55 6.58 7.98 9.09 0.23 11.3 12.3 4.13 11.3 9.15 7.89 2.82 9.07 6.2 11.7 7.57 9.36 11.4 9.71 4.76 7.42 7.85 6.25 8.02 -0.52 9.67 4.84 8.76 10.1 8.99 7.62 10.5 13.5 9.64 4.1 10.7 6.01 7.1 9.51 8.79 10.2 7.54 9.76 7.63 7.31 -0.08 8.58 6.6 6.7 10.1 9.74 7.18 7.27 9.61 11.2 8.67 11.5 9.89 9.24 1.97 9.67 9.02 6.07 3.03 6.92 8.38 8.36 6.39 7.92 9.11 9.43 11.9 9.04 5.29 8.75 8.27 1.31 9.4 13.6 12.1 6.31 4.88 7.53 5.95 7.74 12 10.4 9.29 3.88 1.73 9.89 10.1 6.13 9.46 4.95 12.1 8.87 10.6 13.2 10.9 9.06 10.7 13.2 10.5 10.2 7.22 8.93 7.68 9.9 8.6 7.29 7.86 8.07 10.8 8.19 10.6 10.3 3.02 12.5 7.43 6.77 11 11 11.5 9.99 9.51 10.4 12.3 10.1 9.61 10.8 3.85 9.26 11.1 8.88 9.77 8.82 9.92 7.22 9.21 8.44 8.03 10.2 11.6 8.19 11.3 11.1 9.01 7.24 12.2 8.22 6.41 9.07 13.9 10.8 3.88 9.86 13.3 7.93 2.27 9.77 9.72 12.2 8.68 10.4 7.82 9.25 12.5 5.88 11.7 12.1 10.8 7.28 11.1 8.11 7.24 11.1 4.99 5.76 7.48 9.39 3.45 8.67 11.4 8.16 0.33 13.2 9.55 6.01 5.69 9.72 8.33 11.8 8.05 8.94 9.2 10.4 7.95 9.48 9.23 7.21 11.6 2.09 10.4 9.66 9.46 9.47 10.7 9.08 9.77 10.4 12.5 9.36 7.92 10.7 10.1 9.07 10.8 6.64 11.8 14.9 11.3 1.73 12.2 10.4 10.5 10.3 8.59 8.43 9.56 9.75 11.4 8.04 11.6 9.65 7.82 11.1 12.1 9.98 10.2 12 6.07 10.6 9.18 8.95 8.57 9.95 8.62 10.4 11.9 2.85 7.5 3.07 8.64 8.6 9.36 12.3 8.71 1.03 9.14 5.03 10.3 7.6 9.99 10.2 9.34 5.58 9.42 1.91 8.38 6.73 16 0.93 6.05 9.34 9.12 8.95 9.56 9.72 2.51 10.4 9.95 7.48 11.1 9.36 8.65 11.1 5.58 8.92 10.5 4.99 13.3 10.5 8.48 5.96 10.7 7.58 9.56 8.45 14 7.72 7.97 7.73 6.88 7.38 9.75 8.7 12.3 6.58 12.3 10.2 5.66 9.58 10.8 9.29 8.33 12 8.35 7.7 11 11.1 11.2 11.3 11.8 9.85 10.9 4.93 8.6 10.4 12.9 5.93 11.9 10.3 8.31 9.52 10.7 11.5 10.7 11 9.86 11.3 10.5 2.78 11 11.4 7.8 10.2 13.1 12.5 9.97 10.7 11.5 4.15 11.3 8.81 8.56 11.2 8.53 10.6 8.8 12.9 9.27 8.72 10.6 10.4 10.2 8.62 9.39 10.5 7.64 12 5.66 9.53 10.6 8.2 7.4 9.28 0.13 8.24 9.75 8.09 10.5 2.66 8.44 10.1 7.91 7.77 14.3 9.63 8.54 8.9 8.53 10.7 8.62 8.08 8.66 6.72 9.29 9.25 9.06 7.67 11 11.1 6.13 6.13 7.89 10.7 10.9 11 10.8 10.7 9.68 10.4 10.2 10.3 11.6 11.2 10.7 10.6 7.89 9.93 7.62 11.4 8.7 10.1 8.75 11.9 8.97 11 4.96 6.36 8.71 9.79 9.67 13 12.7 3.54 8.75 6.82 10.8 10.5 9.23 9.58 9.87 8.29 8.42 11.7 10 11.4 7.63 5.79 9.02 10.6 5.48 8.69 10.6 11.8 11.6 2.95 12.2 9.48 9.95 10.1 11 10.3 11.6 7.86 10.4 7.69 9.98 9.64 0.91 9.64 8.2 8.66 8.16 12.1 10.4 7.22 7.16 5.02 10.6 5.78 9.06 12.3 9.97 7.42 10.2 0.89 2.63 5.79 7.03 9.07 10.4 7.91 11.7 9.55 5.26 4.18 12.5 11.2 10.3 9.55 2.78 10.8 9.09 10.5 6.74 9.73 13.1 9.67 8.74 11.2 8.94 11.9 9.23 10.9 12.8 9.09 10.8 3.85 10.9 8.13 7.68
+TCGA-2G-AAGC-01 6.33 8.6 9.15 8.55 7.3 9.41 1.45 7.21 10.5 6.29 7.44 9.1 3.51 3.4 7.02 8.98 9.9 10.7 7.74 9.08 8.98 11.1 8.45 2.82 10.9 7.54 4.94 9.43 4.78 6.48 5.69 5.35 2.77 0.9 5.88 1.23 2.16 7.49 2.73 5 5.56 4.01 5.99 0 5.6 3.13 0 5.61 10.8 6.37 3.27 6.44 7.77 9.54 6.84 1.84 7.21 3.45 9.09 5.94 8.07 5.1 6.99 3.74 2.63 1.66 7.68 8.39 10.2 4.18 3.27 8.01 2.01 3.71 4.26 3.06 5.97 4.32 3.06 0.52 4.62 5.2 6.47 6.23 3.56 0.9 5.35 2.41 2.98 1.66 7.92 4.41 6.63 4.36 3.28 4.19 3.39 2.16 4.6 1.45 0 6.19 3.27 7.01 3.88 3.81 7.9 8.89 7.52 6.1 2.41 1.84 8.95 5.13 6.2 2.52 2.12 5.63 4.41 3.56 5.48 6.13 2.82 2.73 0.52 7.77 2.29 0.9 3.39 12.8 3.3 4.12 4.29 6.91 2.9 2.16 4.73 3.06 3.72 8.44 6.6 11 2.01 2.98 4.09 11.3 0 9.88 0.88 3.61 4.09 0 9.7 9.33 11.3 4.38 3.13 1.09 10.8 6.64 6.62 7.87 3.15 3.45 8.04 5.84 7.62 5.42 10 1.66 10.6 8.85 3.71 3.56 4.09 4.63 2.73 5.49 8.75 4.65 6.72 7.37 3.85 2.9 4.46 2.91 2.98 1.66 8.9 4.41 9.41 9.78 3.33 2.53 4.95 5.08 4.09 11 10.1 6.55 6.51 9.62 9.77 9.59 8.14 8.91 6.48 10.1 12.3 11.4 10.6 10.8 12 12.3 10.8 10.5 8.63 11.8 7.9 11.4 8.73 8.65 11.1 9.78 8.88 6.47 4.73 10.1 9.01 13.8 11.8 4.55 9.18 9.83 10.1 9.57 10.9 7.89 10.6 2.16 11.2 8.4 11.5 11.9 11.8 12.2 11.9 12.2 6.77 11.6 8.48 4.97 7.07 9.8 9.73 4.26 10.3 12 2.29 12.4 3.2 10.4 11.1 10.7 8.97 11 8.35 9.97 10.8 9.87 8.72 7.92 7.92 10.6 13.2 7.47 3.06 13.4 11.7 9.48 11.9 11 11.7 6.78 9.02 9.5 10.3 9.12 12 10.9 5.81 8.03 7.94 7.33 10.5 12 7.15 14.4 7.56 11.9 2.16 11.5 9.51 8.72 10.8 12 6.91 10.4 8.34 8.77 12.2 9.98 6.11 9.08 8.69 11.3 10.3 5.83 9.5 8.36 11 11.4 9.93 8.14 11 12 11.8 9.53 9.81 7.67 9.95 8.91 12.3 9.13 10.8 10.8 9.4 8.94 8.34 7.67 11.4 7.75 8.67 9.97 8.74 13.3 10.6 9.5 10.8 11.5 10.8 2.16 9.96 0 5.63 9.51 8.68 10.6 2.98 7.46 8.12 11.2 9.73 9.95 8.76 6.52 6.49 3.33 7.38 8.94 8.26 12.3 10.4 11.9 9.84 7.51 8.58 10.4 4.82 8.4 8.83 9.83 9.44 10.5 10.1 12 6.49 9.4 10.7 9.14 8.43 8.54 11 8.43 7.5 11.2 9.37 3.06 7.78 6.34 7.14 10.8 11.2 10.4 8.62 9.73 10.1 10.4 11.2 9.41 8.47 8.58 10.6 9.27 8.88 11.3 9.99 10.4 8.52 9.15 10.1 5.57 9.37 11.9 8.51 11.3 10.5 10.4 6.48 10.4 9.98 13.4 6.72 10.1 6.14 7.33 7.67 9.13 7.17 9.79 9.51 10.5 9.59 4.53 10.5 9.58 7.51 9.13 0 10.2 3.08 7.29 6.73 10.9 9.57 8.02 8.56 10.7 4.47 4.9 8.38 10.5 11.1 3.71 10.3 8.36 2.52 3.93 5.38 8.4 7.02 7.76 9.47 5.91 10.3 10 7.47 9.13 9.86 9.19 15.1 10.7 3.26 9.28 11 13.3 13 8.43 8.43 5.06 8.73 9.7 9.14 5.78 11.5 8.35 8.09 10 7.73 11.1 12.1 14.7 8.92 8.12 8.24 9.7 7.4 9.28 8.48 7.12 4.55 10.3 3.06 13.5 6.92 10.2 10.8 9.18 8.25 11.9 8.34 10.8 9.73 10.8 10.2 11.5 9.35 9.99 9.89 9.03 10.1 11.2 11.6 7.58 11.3 12.4 7.53 7.51 10.3 9.41 9.99 10.7 6.64 9.96 10.7 7.72 9.89 7.42 11.7 9.38 8.98 10.4 10.9 9.97 11.9 11.8 9.63 7.34 9.96 7.3 9.3 9.53 10.4 6.37 10.5 4.99 9.89 8.43 11.2 10.6 9.13 11.8 9.86 9.09 8.11 11.7 11.1 11.1 11.2 5.12 12.8 9.46 11.1 10.6 11.6 12.6 13.4 11.5 7.77 10.7 11.2 10.1 2.16 9.14 8.01 9.12 7.58 10.2 10.7 9.08 7.99 9.28 12.5 10.4 1.45 8.66 9.93 8.72 7.98 13.2 8.49 11.7 9.47 12.9 11 12.3 13 8.21 0.9 9.87 9.81 8.39 10.3 11.2 8.56 7.35 10.3 9.91 11.2 11.4 10.2 10 9.91 11.8 10 6.39 11.7 8.33 10.1 10.5 8.94 8.84 10.8 7.49 7.02 8.18 10.2 3.61 10.1 11.1 12.9 5.89 10.4 8.17 9.74 8.71 10.6 10.6 13 12.9 12.9 11 9.03 9.13 9.81 10.2 10.8 9.34 2.52 8.3 8.43 10.2 10.4 8.87 10.4 14.2 3.56 6.66 12.1 8.41 10.2 9.43 8.22 9.58 13.1 10.4 9.51 9.54 4.7 10.5 6.92 10 11 12.1 10.3 9.59 11.8 10.1 11.3 8.94 8.87 9.7 10.8 10.9 11.5 11.8 9.14 12.1 11.9 10.9 5.33 8.63 10.4 8.94 10.7 5.7 10.9 8.29 10.6 11.8 9.72 5.08 9.44 11.5 12.8 9.42 8.4 12.4 11.5 9.72 8.17 3.39 8.19 11.1 5.29 7.74 7.45 6.38 10.2 9.03 11.5 6.19 6.07 4.5 9.49 8.37 9.85 9.34 9.05 9.21 8.57 0.52 5.24 13.1 10.6 5.88 8.98 8.76 2.98 8.91 10.9 9.38 7.88 8.67 13.6 8.93 9.57 11.6 9.97 12.1 13.7 8.91 11.9 9.03 9.44 7.46 11.8 6.08 4.23 3.61 4.55 10.4 6.37 9.63 0.9 8.6 9.31 4.55 7.1 12.2 12.1 6.66 1.45 10.3 9.08 3.61 11.6 12.8 12.4 10.7 10.4 11.8 9.56 9.89 11.8 8.41 9.24 12.1 8.58 7.88 9.79 8.63 9.48 9.48 11.5 10.1 8.28 9.44 5.76 9.67 11.6 8.14 4.58 4.5 13.1 10.2 1.45 4.05 8.59 10.2 12 8.29 8.73 3.39 10.1 6.31 6.55 7.32 9.18 6.69 7.34 8.32 8.96 0.52 5.49 4.19 10.4 11.2 6.92 11.9 8.99 9.82 6.72 11.3 10.5 3.13 8.14 4.85 5.48 9.11 8.97 12 9.18 10.8 8.1 5.38 5.99 7.48 9.97 0 7.44 9.23 10.8 3.89 3.2 11.4 5.49 8.86 10.7 5.85 1.84 9.44 10.7 10.5 10.2 5.53 8.82 10.8 7.04 10 9.46 10.3 10.1 10.7 9.57 1.45 7.33 2.41 12.6 11 11.7 2.41 11.4 9.87 12.4 9.77 11.4 7.48 9.86 11.9 10.3 9.12 3.76 12.8 3.2 11.5 4.86 10.3 11 9.66 4.97 9.29 11.6 11.9 12.1 10 10.2 12.6 10 12.4 10.2 9.26 10.3 11.1 12.1 10.4 12 11.8 12 8.97 12.7 10.5 7.52 7.49 11.3 11.5 12.9 12.3 11.1 4.23 10.4 8.34 11.2 10.9 7.58 8.87 11.6 6.93 12.8 10.6 11.4 11.8 7.83 6.17 12.7 6.73 10.2 6.47 10.3 9.03 6.91 11.3 9.34 8.15 2.53 4.82 8.55 10.4 6.44 12 8 9.42 9.46 9.77 8.9 8.37 9.36 10.8 8.46 4.12 7.18 7.06 4.75 11.7 10.2 7.63 11.9 6.35 7.58 11.9 12.8 8.57 7.15 9.37 4.59 8.23 11.9 10.2 11.7 11.6 10.8 10.5 10.2 10.7 11.4 9.93 7.73 3.33 9.05 11.3 8.28 7.78 8.51 6.2 11.8 9.76 9.45 11 5.35 5.17 10.5 11.1 13.3 8.54 7.61 11.3 11.5 4.53 6.94 8.24 6.94 6.98 8.9 10.3 8.64 12.5 7.61 9.87 10.3 9.25 5.27 9.6 9.59 9.63 10.6 8.48 12 9.43 9.33 11 9.55 7.2 10.7 2.82 8.73 10.3 9.7 7.74 10.3 2.29 8.6 8.34 9.44 3.85 10.5 9.07 6.79 12.3 9.48 12.8 5.99 9.46 9.18 6.7 1.2 6.15 11.5 9.02 5.97 7.3 4.65 9.31 9.09 7.94 7.49 8.19 11.3 9.71 5.79 11.1 9.98 8.63 13.2 11.8 12.2 5.51 6.67 13 9.47 5.51 11.8 9.54 10.5 8.68 4.8 12.4 7.37 9.92 10.2 5.41 8.99 9.16 11.2 4.47 8.29 10.2 7.26 8.45 10.8 9.8 13 9.19 7.41 9.36 8.06 7.17 9.21 9.78 6.98 11 9.24 9.39 10.3 10.3 2.11 10 7.13 11.4 6.35 13.2 9.55 3.13 11.1 7.7 8.45 12 8.04 8.83 9.39 10.4 9.21 6.42 10.7 10.6 6.93 6.98 10.3 9.17 8.35 7.92 6.8 6.8 8.01 6.01 9.57 8.13 10.1 2.98 2.41 10 10.7 6.82 9.3 9.18 9.14 8.16 11.6 6.2 11.5 6.44 9.01 7.68 7.65 8.67 11.5 9.43 9 7.33 3.27 6.12 7.53 12.3 9.86 7.58 7.98 5.51 10.6 8.04 10.5 7.96 7.48 3.66 8.11 3.2 10.3 9.25 9.35 6.57 9.31 8.97 8.39 9.47 12.5 8.97 9.57 9.64 9.49 8.93 9.95 10.2 9.88 4.7 9.27 7.4 11.3 10.4 8.25 8 12.2 4.86 11.6 8.41 4.29 10 7.59 1.45 9.7 9.17 2.29 8.73 10 10.3 9.93 4.88 9.23 11.7 12.1 11 8.6 8.36 7.68 8.78 10.8 9.71 4.82 13.8 10.9 11.9 9.01 12.6 9 11.9 12.4 8.9 9.25 8.89 5.39 10.2 9.19 9.81 10.3 9.55 9.72 6.4 8.76 4.65 10.4 7.87 5.95 6.79 7.52 4.05 7.35 7.31 5.12 7.21 8.15 7.31 7.23 9.65 7.83 10.6 8.74 9.28 4.6 7.9 9.44 3.39 5.39 11 5.86 4.58 5.77 7.33 8.57 5.05 6.76 7.31 6.63 6.32 0 1.2 6.38 6.45 7.15 7.68 8.92 8.71 6.77 1.45 8.42 7.21 3.8 10.2 6.92 9.12 9.46 9.24 3.51 11 6.25 6.33 10.4 3.6 8.07 9.12 9.22 8.34 5.33 7.67 6.35 7.38 7.01 11.4 4.16 9.8 9.37 3.51 7.79 8.35 7.67 6.27 7.17 11.1 10.8 10.3 9.66 7.02 5.55 5.8 5.75 8.63 5.75 7.12 11.3 8.78 9.17 9.44 10.7 8.55 8.76 3.13 9.03 9.47 8.67 9.1 0.52 10.5 10.9 9.26 5.25 6.51 6.52 7.11 12.8 7.87 10.6 8.74 6.89 6.46 8.63 8.64 9.22 12 5.32 2.01 6.48 9.14 10.3 10.8 5.78 7.96 9.46 8.73 10.8 8.12 8.39 8.41 7.68 11.6 2.41 4.12 6.42 5.89 9.61 8.54 9.68 7.67 9.61 5.36 2.01 4.44 7.47 7.32 0.9 9.94 10 6.29 6.82 8.81 2.29 3.13 9.47 8.05 10.1 8.58 7.09 9.75 7.36 11.4 8.59 11.5 7.86 11.4 10.2 4.01 7.46 2.42 8.58 9.63 9.02 7.99 8.27 8.88 2.82 11 5.25 8.18 2.01 7.25 0 10.1 5.42 6.43 7.02 5.57 4.55 11.4 3.2 0 9.3 9.37 7.46 8.9 9.29 1.2 4.77 9.23 9.3 10.4 9.82 3.61 8.83 5.52 5.77 4.29 9.41 7.59 11 8 9.07 9.78 8.97 2.52 8.38 3.27 3.51 4.19 9.05 9.2 5.99 12 8.77 0.9 7.94 13.5 10.7 10.8 1.2 6.5 4.32 9.2 9.69 6.91 8.39 12.2 4.12 7.23 9.85 6.49 8.72 10.4 8.08 9.34 0 5.51 2.41 9.13 6.83 8.98 8.8 8.53 5.18 9.33 10.2 6.35 3.66 6.69 9.69 5.99 8.71 7.1 7.47 7.7 7.49 7.89 10.1 7.65 7.68 10.8 12.2 7.5 0.9 2.63 7.01 7.14 3.61 10.3 9.87 7.93 6.97 10.4 4.6 7.03 9.95 10.7 11 10.1 9.74 7.6 6.68 5.24 7.27 8.17 3.45 3.13 7.47 7.36 8.3 10.5 3.45 7.04 11 5.45 1.66 8.78 11.5 9.72 8.68 9.27 6.35 6.65 13.9 8.66 9.28 9.34 5.3 3.71 11.3 11.6 7.02 7.26 10.4 0 0.9 1.84 6.61 6.66 7.71 3.8 6.55 6.28 9.47 6.77 6.57 6.44 9.82 8.47 2.9 10.2 10.6 9.6 3.66 8.77 8.42 6.76 12 9.46 8.27 9 3.61 10.9 6.22 9.73 2.73 8.06 6.62 8.28 7.96 5.3 6.99 9.78 5.01 6.95 8.27 9.1 5.17 6.8 7.6 4.97 5.22 8.23 9.31 1.66 7.51 5.98 9.81 0 9.5 6.91 6.62 3.56 5.64 8.24 6.28 3.13 2.01 9.02 10.8 5.59 6.32 8.44 9.12 8.14 9.61 10.3 7 10.3 8.68 8.26 10.8 10.7 5.12 4.32 9.77 9.76 8.33 6.39 1.45 7.82 11.7 9.97 4.84 4.09 3.56 7.93 4.84 7.74 9.69 8.04 10.4 8.93 2.01 8.68 4.73 11.3 9.97 3.89 9.07 8.91 5.59 5 13.4 8.98 8.26 3.12 8.63 6.06 7.78 7.76 1.66 7.48 4.41 7.33 10.9 4.44 8.86 9.14 1.2 6.74 7.33 7.3 5.19 7.74 6.79 5.94 7.05 4.97 10.3 2.82 2.16 9.37 4.53 3.06 2.98 5.84 7.71 8.03 9.66 9.94 9.56 1.84 9.74 9.92 7.33 11 7.16 7.67 8.36 6.77 8.65 9.84 4.5 7.6 7.07 12.4 8.59 7.49 11.8 5.97 5.78 3.89 7.85 8.24 11.1 9.63 9.03 9.54 6.19 4.84 5.59 1.45 1.66 8.53 9.83 3.13 5.63 0 2.9 8.25 8.24 6.84 9.92 3.56 2.52 9.74 10.3 6.44 8.03 6.9 3.19 3.61 10.8 2.01 6.99 3.61 10.1 17.2 6.57 9.51 5.68 16.1 10.2 8.88 0.9 4.86 8.37 3.56 12 10.6 8.33 9.15 16.7 4.47 8.06 13.8 10 7.55 4.63 10.2 9.43 7.61 9.51 1.2 9.28 8.27 7.84 8.37 14 5.3 7.42 4.88 2.82 0.9 5.15 3.51 6.12 9.77 8.78 5.15 7.61 5.74 4.26 11 9.01 13 8.79 7.86 12.5 5.57 7.69 12.8 8.03 13.7 9.05 7.2 14.3 8.69 9.37 9 8.28 5.15 3.39 7.36 8.53 8.13 8.7 7.65 9.15 8.56 7.26 8.99 5.89 2.63 7.39 6.87 6.44 10.9 1.45 4.32 7.93 11.8 7.78 7 6.16 5.02 7.81 10.5 7.01 5.02 3.89 5.6 5.12 9.71 7.3 0.9 8.89 6.85 6.55 9.66 11.1 6.22 8.74 10.8 5.87 4.44 8.2 4.38 10.1 6.22 8.36 10.1 8.76 2.73 6.53 2.98 3.93 8.97 4.82 6.54 9.24 0.9 9.24 12.3 7.79 5.94 9.18 11.1 3.2 7.46 9.77 8.29 10.8 9.12 7.23 2.01 10 8.11 0.9 9.22 4.35 0.52 8.64 7.54 7.76 5.61 7.96 8.62 0.9 4.61 7.35 8.76 8.17 6.97 7 7.02 3.27 7.05 8.68 7.7 12.2 6.85 7.27 7.23 8.86 11.2 3.33 8.71 1.66 9.38 7.77 3.45 6.01 5.98 2.63 9.87 6.87 9.09 10.9 8.23 11.2 9.36 3.27 1.66 8.05 6.37 11 2.52 7 8.19 9.57 8.41 9.73 4.01 8.03 8.12 7.66 10.1 7.2 8.8 11.8 9 4.5 6.77 9.16 6.07 8.12 10.8 6.13 10.8 7.94 9.27 11.7 10.7 8.65 9.32 3.09 6.53 8.91 9.28 0.52 7.48 6.68 10.8 4.05 9.73 7.08 2.52 3.33 5.19 8.92 8.31 0 11.4 10.5 6.99 9.87 6.05 3.76 9.72 6.8 10.8 9.33 7.73 7.69 7.08 7.9 9.56 7.56 6.49 8.67 10.4 9.83 7.85 9.5 8.47 9.49 6.56 3.89 5 9.63 8.18 1.45 11.6 5.69 4.82 10 4.29 9.38 7.74 5.55 8.13 11.4 7.7 0 8.97 8.08 7.15 3.66 6.35 10.2 8.4 7.14 6.77 11.6 7.93 0.9 9.96 11.4 8.57 3.66 8.43 8.37 5.72 7.17 4.63 8.66 7.98 10.8 9.55 6.99 7.62 0.52 10.4 8.68 8.23 11.9 11.8 6.46 11.1 1.93 9.72 8.3 8.23 5.15 10.1 9.54 3.27 5.15 8.87 9.79 7.64 5.47 8.54 9.33 7.85 7.85 7.58 8.64 1.66 0.9 9.43 4.76 4.54 5.12 9.37 5.39 6.94 5.86 7.34 8.8 5.62 4.65 11.2 8.62 9.5 5.49 1.66 10.8 9 6.79 9.6 10.1 5.98 9.04 7.99 5.69 6.3 7.8 9.81 3.2 10.2 1.84 11.6 5.84 7.74 6.63 7.31 0.9 13.8 9.55 5.64 2.01 4.35 2.9 2.29 4.58 7.48 6.42 9.53 0.9 8.82 10.2 6.54 12.2 7.99 10.4 11.8 7.42 4.55 10.2 12.7 8.2 8.81 7.05 10.5 2.98 4.26 8.42 7.29 4.81 7.85 8.29 4.92 8.45 9.81 8.54 6.94 1.2 0.52 10 8.43 7.6 9.7 7.07 6.46 9.84 4.65 9.66 6.91 8.13 1.45 8.14 10.5 8.65 7.25 9.22 8.43 7.42 0 9.13 3.76 11.2 5.06 8.09 5.26 6.71 5.77 11.4 4.5 9.14 6.64 12.3 8.6 7.39 11.9 0.52 3.89 6.77 12.1 3.2 6.44 11.2 7.38 8.32 7.5 5.89 10.8 7.64 8.03 7.84 8.83 8.98 11.2 7.75 3.27 6.44 5.11 1.84 6.53 8.72 2.01 9.47 2.52 4.05 11.6 9.33 6.36 9.1 0.52 5.94 8.85 12.8 8.7 2.73 10.1 1.45 3.39 1.84 7.55 2.01 9.29 7.73 7.19 6.99 2.73 11.2 7.43 6.48 5.02 2.16 2.82 9.97 6.87 9.12 9.31 6.57 7.63 6.38 0 5.79 5.49 2.98 0 8.97 1.45 2.16 6.57 0.52 8.77 2.29 9.04 3.85 10.8 9.69 8.51 9.54 6.88 8.27 8.68 6.21 10.9 5.93 9.07 7.21 9.18 10.3 7.89 9.17 5.12 0.52 4.09 3.2 3.8 8.5 5.33 5.7 11.1 7.68 6.38 8.83 8.14 10.7 2.52 7.66 7.99 7.86 7.82 9.68 7.3 8.49 2.01 6.47 9.52 8.1 6.84 7.8 6.59 6.36 2.9 10.3 9.33 9.01 7.13 6 9.16 6.53 6.26 6.89 6.9 9.14 7.01 4.55 6.19 8.43 6.84 8.99 6.06 8.39 9.77 9.44 8.78 9.02 5.24 7.67 7.39 7.68 6.55 5.93 6.77 8.57 3.13 7.56 8.64 9.38 4.86 9.43 9.82 6.87 6.8 7.34 3.61 0.9 11.3 5.36 0.52 6.66 9.58 10.9 5.33 0 9.78 5.1 5.32 8.07 4.77 11.3 9.58 0 10 9.75 5.77 4.73 9.61 0.52 5.44 7.2 6.47 8.71 7.76 3.33 1.2 6.69 6.68 5.13 4.63 12.9 11.8 6.63 10.1 5.9 6.03 13.1 10.3 10.7 1.45 5.47 12.1 7.14 4.68 9.91 0.9 0 2.98 1.45 3.97 2.01 8.08 5.99 2.01 8.22 10.6 6.23 7.98 11.3 2.52 3.85 5.87 7.65 8.15 1.66 7.48 4.12 9.51 8.76 9.84 1.84 4.96 4.97 9.03 7.94 5.63 3.8 8.31 6.6 4.44 6.97 9.24 5.48 14 9.39 13.8 6.79 5.52 8.62 2.82 9.53 8.42 5.89 0.52 4.75 2.82 10 8.87 9.53 10.3 7.64 4.68 8.84 6.26 0 2.01 8.54 5.42 7.11 4.01 4.77 11.7 2.82 7.22 2.41 9.8 7.95 4.97 7.69 0.9 7.11 6.18 8.53 10.6 7.94 3.97 4.55 0.52 7.78 4.75 11.8 7.68 8.24 9.88 8.35 9.99 8.55 10.9 8.9 11 9.5 0.52 2.29 8.08 7.34 2.29 10 8.83 6.13 6.41 11.8 3.56 9.9 8.49 9.75 6.59 5.65 5.38 5.77 7.85 10.2 9.81 9.69 5.78 8.98 3.85 7.83 4.01 9.88 5.75 7.01 8.74 8 4.73 5.22 8.18 8.16 2.73 8.19 10.7 8.6 7.23 8.6 11.1 6.64 7.95 10.7 8.14 8.84 10.9 10.9 7.29 5.51 10.6 6.27 0 2.01 3.45 11.2 7.89 5.79 5.64 6.88 1.84 10.3 5.15 9.58 8.65 8.2 6.46 6.64 9.14 0.9 5.97 2.41 0 8.91 8.5 4.26 6.9 7.81 4.27 4.38 8.53 8.55 0.52 10.2 9.59 3.67 1.45 8.72 2.74 8.57 5.59 7.04 9.22 9.19 2.95 6.1 5.29 9.14 6.49 7.01 10.7 3.06 2.9 11 3.13 3.45 9.56 7.52 2.41 10.9 3.76 9.7 8.47 10.5 9.88 8.6 5.56 1.2 11.2 6.68 10.1 10.1 8.87 2.86 4.75 10.5 4.41 4.16 2.05 8.85 10.1 3.4 10.9 2.9 2.16 2.98 6.15 3.27 5.64 2.16 4.88 1.84 7.46 3.66 7.02 4.01 9.3 8.91 8.77 2.41 4.88 7.64 2.52 6.88 9.27 6.13 10.3 4.19 5.87 8.66 0 7.78 4.8 6.82 3.89 4.35 1.66 5.45 6.23 4.3 2.9 10.3 7.87 9.03 6.88 8.96 7.92 0.52 8.94 6.98 5.39 10.4 2.01 1.84 12 11.3 4.7 10.1 2.98 7.5 0 1.2 10.9 7.66 5 4.68 9.14 9.49 0.52 7.66 12.2 9.02 9.09 7.03 9.33 3.71 3.93 4.41 7.81 8.76 10.1 10.4 4.65 8.61 5.81 7.49 10.5 2.52 4.29 9.12 10.8 5.08 8.67 4.63 1.66 11.4 1.2 5.84 10.9 6.06 3.33 10.3 2.63 4.82 7.68 2.9 6.7 11.4 10.1 3.13 10.3 7.91 6.23 8.9 6.53 10.6 7.74 7.64 6.61 6.58 2.52 3.2 7.53 6.42 7.96 11.8 6.88 9.55 7.39 7.44 10.3 9.52 5.88 8.26 9.19 9.14 5.24 1.45 14.1 7.89 9.16 8.3 7.47 6.61 8.34 8.11 6.28 5.25 7.82 9.12 6.72 5.41 4.29 9.75 9.64 9.99 7.08 7.45 8.84 2.63 12.1 5.39 10.2 8.48 10.4 2.41 7.85 7.24 0.52 8.06 8.9 9.89 9.32 12.4 10.9 5.81 8.74 4.32 12.5 4.16 9.18 5.13 2.9 6.3 6.04 2.16 4.65 4.63 4.35 6.45 0 10.1 5.12 9.32 11.7 13.1 8.1 3.67 7.47 4.95 10.1 7.54 12 8.3 13 13.8 2.52 5.39 11.5 5.79 2.63 10 5.39 11.2 3.39 8.51 11.8 13.2 5.81 9.63 11.5 7.95 2.01 8.6 6.73 12.3 9.7 6.76 10.9 7.09 7.34 7.65 3.56 6.01 9.34 7.62 9.31 6.38 11.2 1.2 11.4 5.2 4.47 8.07 2.41 11 9.49 7.25 7.98 8.73 4.99 9.41 3.97 8.64 8.62 1.45 7.67 8.48 6.27 1.84 4.86 7.38 8.04 8.61 9.82 6.7 3.66 5.66 8.89 9.32 5.77 7.21 6.27 6.98 4.82 3.97 7.6 2.9 7.1 4.5 0.52 7.08 9.42 3.45 10.7 7.3 1.84 9.17 7.16 4.95 6 5.68 5.22 10.5 9.42 8.72 10 6.64 11.8 1.45 10.4 9.38 1.45 6.91 1.45 10 11.4 3.8 10.7 2.82 10.1 7.88 9.42 9.76 12.2 8.74 8.67 8.52 9.15 11.6 8.59 12.1 9.9 8.03 3.39 6.3 12.2 10.7 11.4 9.84 7.01 11.1 8.27 11.8 1.45 3.71 5.78 3.89 8.07 11.3 6.89 8.11 9.37 9.45 9.07 9.16 0.52 5.33 7.64 3.97 6.03 7.37 4.44 4.38 9.71 13.6 11.9 6.33 10.4 11.2 11.9 12.1 7.65 11.8 15.1 10 9.6 7.51 7.83 7.75 8.96 7.29 7.93 10.2 10.4 8.92 6.98 11.3 12.1 0.52 10.4 4.09 3.71 10.3 11.1 9.78 5.59 13.2 8.96 8.52 11.3 5.96 8.92 12.8 8.46 5.38 8.24 7.05 6.48 9.92 5.78 9.02 7.87 10.6 8.95 11.7 9.66 10.2 3.33 6.85 8.69 10.1 10.8 11.3 11.2 10.7 9.72 9.61 10 9.24 10.2 11 9.31 9.33 9.66 7.18 6.66 11.3 0 10.7 11.1 10.4 8.25 11.2 6.69 10.6 8.35 7.82 9.34 6.96 9.74 12.7 7.51 12.8 10.3 16.7 7.95 9.33 9.99 9.7 7.44 8.44 9.57 12.7 13.4 14.7 16.3 9.43 8.05 7.15 8.11 7.8 9.61 10.5 9.12 5.85 9.57 10.5 9.18 10.4 7.69 7.57 9.92 7.07 7.76 8.1 9.23 7.29 4.68 0.52 7.63 4.41 8.46 3.51 5.58 8.29 5.63 7.47 11.6 9.21 6.71 9.45 9.35 8.26 11.2 8.38 9.73 10.6 9.81 1.45 10.4 7.66 5.51 3.41 12.4 5.12 5.79 9.91 4.21 2.82 6.1 1.96 10.2 4.38 4.9 7.33 8.06 8.15 15 7.67 8.51 8.41 4.09 8.2 9.1 12.8 8.88 13.2 9.95 10.8 12.2 14.1 14.3 12.6 13.8 1.84 9.14 0.52 9.37 7.17 5.78 11.4 5.68 3.89 2.73 8.07 0 9.52 7.4 14.9 3.97 6.51 7.29 7.04 8.13 4.55 9.51 5.91 6.76 8.1 10.7 9.84 0.9 9.23 14.7 9.21 9.09 0 4.6 9.92 9.96 4.75 6.53 11.6 0.9 2.9 3.85 4.58 9.96 9.71 8.95 9.72 8.69 1.32 7.47 7.07 9.04 2.01 9.06 2.01 2.16 0.52 9.43 7.71 6.17 5.39 9.97 12.1 6.86 4.82 11.5 7.65 4.48 6.81 8.55 5.6 7.71 6.41 9.01 8.62 4.26 9.33 8.24 5.44 9.8 10.1 6.87 8.74 9.4 10.4 7.46 8.89 6.56 10.1 6.97 6.88 9.65 9.17 8.32 7.68 9.78 8.92 4.82 9.39 2.9 9.38 2.82 9.3 4.29 4.19 6.46 7.03 10.8 0 1.66 9.56 9.04 8.48 0 11.8 8.83 6.41 6.03 8.72 4.26 7.7 8.64 8.4 6.66 9.98 8.04 5.52 5.96 7.65 7.38 5.33 10.8 7.38 0.52 16.9 4.23 6.96 5.1 2.98 0.52 11.9 7.57 6.93 7.97 12.3 6.27 8.1 11.8 8.05 8.6 15.5 10 8.96 1.45 7.43 8.51 8.48 6.41 7.73 9.09 7.87 8.97 11.9 7.46 10.2 7.93 10.8 7.97 7.7 10.1 10.4 11.7 7.75 8.68 11.4 12.9 9.77 8.86 2.98 9.53 7.9 9.42 3.76 10.8 9.63 5.2 12.3 12.6 7.73 9.81 7.82 7.65 9.56 8.66 8.86 9.68 9.83 5.32 7.38 8.72 12.2 11 10.7 10.4 4.68 8.9 11.7 3.8 0.9 10.6 9.13 9.94 1.84 11.1 5.24 8.91 10.6 7.87 9.72 7.75 10.6 7.83 11.7 11.2 5.8 12.5 9.8 4.38 8.05 9.4 4.75 9.38 5.89 11.9 9.98 10.1 10 7.83 11.3 10.1 10.4 3.33 8.61 12.9 10.2 1.66 9.92 8.37 6.85 7.51 8.6 8.43 8.79 12.8 11.2 10.3 4.95 9.39 11.8 7.93 6.34 9.9 7.97 9.56 10.6 7.59 9.54 8.66 11.1 4.41 8.89 6.74 3.89 6.24 6.73 9.38 6.51 8.24 7.29 4.5 0 11.1 7.86 9.95 9.83 8.56 10.8 8.87 2.73 9.12 11.6 9.56 8.52 9.23 12 6.82 8.41 9.47 9.75 13 10.1 6.45 11.4 8.02 5.29 6.6 14 8.7 11.4 2.82 4.38 8.34 4.23 5.51 8.96 2.63 11.3 12.7 4.41 6.9 7.89 6.85 10.4 7.5 5.76 7.56 7.14 7.93 8.3 10.5 6.47 9.29 9.21 2.01 10.6 10.2 9.47 8.69 11.4 7.58 8.74 1.84 8.49 8.06 6.08 11.5 5.25 8.11 8.38 2.73 4.19 8.62 1.45 8.72 8.77 8.73 3.66 3.27 0.9 1.45 4.32 1.2 6.56 1.84 9.24 6.57 4.29 1.66 6.23 7.13 5.47 9.57 4.86 8.06 5.19 13.2 6.58 7.32 6.58 8.44 7.84 10.4 3.13 9.9 7.38 9.15 4.05 11.9 7.78 5.52 10.2 9.49 8.27 9.14 7.53 9.09 4.47 9.24 5.9 8.04 7.57 4.44 8.82 11.3 6.86 3.33 4.16 3.33 3.56 9.15 4.73 2.75 8.01 5.6 10.1 3.06 7.47 10.5 4.9 9.04 7.22 8.16 5.67 8.34 5.42 8.39 10.9 8.66 6.51 8.59 9.89 8.32 8.23 5.74 10 6.09 9.32 6.91 7.41 7.26 10.9 7.42 10.4 9.93 9.84 5.93 2.01 9.9 7.28 7.77 6.87 7.88 8.75 11.1 8.65 10 6.33 6.4 8.04 9.78 3.59 6.93 11.1 8.31 3.45 3.97 6.15 6.19 1.2 5.94 9.87 1.45 8.04 5.83 4.73 4.47 7.14 7.29 6.52 8.29 10.6 8.4 7.81 5.94 10.3 8.98 10.6 11.5 10.7 6.57 8.73 10.1 10.8 5.27 0 5.59 4.7 8.41 4.12 8.68 2.16 14.6 13.4 12 2.01 10.1 11.2 7.72 10.3 4.53 8.93 9.96 9.59 11.6 11.3 9.69 7.8 12.1 10.6 8 0 11.6 6.26 7.21 9.44 10.4 7.77 11.5 3.39 11.7 9.02 11.5 10.8 7.38 11.6 12.6 10.8 7.95 7.47 9.71 8.4 9.89 7.8 11.9 10.6 8.67 6.54 2.9 8.47 10 9.72 9.26 6.15 9.91 8.27 9.34 6.85 10.6 9.35 10.8 9.05 8.65 9.77 10.2 10.2 2.98 10.2 8.19 10.8 11.2 6.7 12.1 9.16 8.59 7.09 11.7 10.8 10.2 9.15 14.5 10.4 7.76 8.36 12.3 8.32 5.99 10.4 7.96 9.99 10.7 9.83 4.16 10.3 10.1 2.01 9.18 10.2 7.92 2.63 8.57 5.52 9.32 9.05 10.3 10.5 10.3 11.4 9.98 9.6 9.23 11.9 8.18 3.33 12.1 0.9 9.8 12.1 8.76 7.29 7.33 6.47 9.72 7.43 11.5 12.9 11 10.5 7.82 8.86 9.6 8.86 10.9 11.3 5.61 8.19 12.8 9.8 9.92 5.81 8.32 9.21 6.23 5.75 2.41 11.9 10.2 4.05 10.3 10.2 2.98 10.9 9.3 9.13 6.38 11.3 12.7 2.01 3.8 0 10.6 11.3 10.2 9.82 8.43 7.63 6.79 10 11.9 10.4 10.1 8.99 8.6 6.97 6.66 4.68 9.99 10.9 11.6 10.6 9.61 10.2 12.8 7.62 13.5 11.5 8.8 8.76 9.26 3.13 12.5 9.92 10.4 8.75 10.5 9.62 8.41 9.14 10.3 8.9 10.3 12.7 9.35 10.8 7.77 9.36 9.7 10.8 11.9 12.8 8.83 8.22 9.24 9.94 8.52 8.98 5.77 10.5 11.1 11.4 10.8 11.2 11.6 8.78 10.7 10.8 10.2 2.52 9.25 9.9 11.7 10.2 8.34 8.3 9.23 10 11.2 11.2 6.26 9.51 11.7 10 9.31 10.8 8.37 9.39 8.72 11.3 10.3 8.19 8.35 8.53 11.1 10 4.79 10.1 5.33 10.2 11.7 5.76 10.1 10 8.76 7.72 8.61 10.2 10.6 10.6 6.82 4.88 10.6 10.3 11.2 7.47 11.8 8.6 9.53 11.4 9.1 10.5 10.4 8.31 10.2 9.98 11.5 12.5 10.8 11.1 8.95 8.94 10.1 4.26 9.79 7.93 1.2 9.07 9.24 10.5 10.2 9.69 11.4 8.16 14.7 11.7 9.41 10.1 10.8 11.9 12.3 10.3 11.3 11.1 8.78 13.7 11.2 8.3 8.61 10.8 9.82 10 10.3 9.29 9.34 9.89 12.7 9.72 9.32 11.1 10.8 11.5 9.88 9.02 10.7 11.6 11.6 10.4 13.6 8.87 12.5 11.1 10.6 12.2 11.1 9.48 7.37 10.5 12.6 2.16 11.1 8.16 7.2 9.51 9.38 10.5 10.9 12.3 11.6 12.8 10.7 6.22 10.8 10.6 4.05 9.55 9.89 11.3 12.2 10.8 7.49 8.76 6.24 9.07 9.34 7.73 7.25 10.1 8.38 7.94 6.56 9.07 8.05 10.1 9.44 8.88 10.6 11.9 7.83 10.1 8.42 10.2 10.7 5.1 8.65 8.87 9.34 8.82 10.3 10.7 9.57 5.33 8.96 9.79 7.02 11.7 12.4 11.9 9.59 11.1 4.38 9.65 10.1 10.5 9.14 9.69 10.7 11.8 11.3 4.6 2.9 10.2 6.35 6.5 8.77 9.76 9.05 4.84 10 10.8 10.7 11 9.52 7.53 10.7 9.58 8.83 9.6 10 5.06 9.99 10.1 10.9 10.6 9.61 10.5 10.4 10.5 5.93 8.71 7.58 10.3 10.6 9.76 9.94 6.83 9.46 10.6 13.4 9.74 9.79 9.38 10.5 9.42 9.92 8.32 8.68 11.1 10.6 7.7 9.65 11.4 10.2 10.4 9.68 5.27 15.7 12.3 10.6 12.9 11.5 9.77 9.06 9.83 10.6 5.15 10.7 9.36 8.95 10.4 10.3 5.81 13.1 8.36 11.5 10.5 9.86 8.97 9.35 8.08 10.3 10.4 12.2 10.6 10.4 10.9 11.4 11 9.45 11 11.6 9.6 12.2 11.8 10.4 10.3 10 9.29 11.4 11 12.3 9.21 10.2 10.8 12 8.14 4.32 8.45 10.7 7.97 9.17 5.51 2.29 5.94 7.3 1.2 9.82 11.7 8.4 10.5 7.84 6.38 11.8 11 0 9.09 7.31 10 12.5 9.79 8.22 11 12.8 13.1 8.2 9.34 7.58 6.36 3.33 6.29 8.5 11.8 8.13 9.2 9.42 11.8 10.9 12.2 8.96 9.08 10.4 11.7 10.9 10.4 7.16 11.2 11.7 8.53 10.2 5.1 8.15 7.89 2.63 7.13 13 8.53 9.35 10.5 5.52 10.7 8.77 8.79 5.94 10.9 11 11.6 10.9 12.1 9.93 10.4 11.6 10.6 9.76 3.06 1.84 14.1 10 11 14 10.8 10.3 9.77 6.31 10.2 10.2 9.19 2.9 9.01 11.3 7.94 4.32 7.07 5.96 7.99 11.4 4.5 9.36 0.52 6 6.94 10.5 9.38 9.09 5.56 5.97 8.67 7.96 8.34 8.88 10.9 9.79 9.74 11.2 1.2 3.21 10.4 6.67 8.35 9.78 1.45 6.15 9.21 4.82 12.5 9.8 8.96 5.78 10.8 9.77 9.99 10 10.9 9.61 7.8 9.62 9.49 9.86 9.67 6.85 8.7 10.6 8.13 4.41 12.1 6.03 11.7 13.6 9.64 11.1 11.6 7.97 9.87 9.21 9.96 8.74 6.27 0.9 5.15 5.66 11.8 7.3 11.2 9.32 7.73 9.72 8.95 11.8 6.2 11.1 10.7 12.6 9.42 10.4 9.38 4.75 12.3 9.3 9.92 9.08 9.3 11.1 9.32 10.4 9.21 6.86 10.2 6.49 9.35 9.23 12.9 12.3 10.5 11.3 5.56 8.75 10.1 11.3 9.63 7.32 8.17 8.66 3.13 8.82 10.7 5.02 12 10.4 9.4 9.25 10 12.1 10.2 2.82 7.71 9.26 7.62 7.21 10.2 8.98 9.25 9.81 6.99 6.97 10.2 8.34 8.08 8.13 11.9 11.2 3.59 4.58 5.25 3.45 8.36 5.17 8.17 2.98 9.53 1.45 3.85 3.76 6.61 9.5 6.7 6.81 6.79 6.52 4.16 3.85 3.2 12.6 9.99 9.09 13.3 6.77 8.14 13.8 7.69 11 10.9 15.1 10.4 9.88 13.7 6.55 5.33 3.66 8.67 0 2.01 10.8 3.66 5.18 9.61 7.23 8.61 9.9 0.9 3.2 8.19 9.02 10.6 5.76 4.33 5.32 8.87 9.12 10.1 6.89 8.83 9.01 7.61 8.68 5.99 7.56 12.5 8.73 3.33 10.8 7.3 7.32 9.13 8.61 7.95 4.47 10.1 11.8 8.71 7.28 6.59 5.69 6.5 10.4 3.45 11.6 9.96 4.6 0 8.5 0.9 5.52 9.34 8.34 6.41 5.95 6.38 2.29 6.99 6.8 5.35 7.13 9.61 9.66 5.33 4.26 13.6 1.66 1.45 10.7 3.76 8.93 8.1 9.81 9.54 6.23 4.75 6.75 6.11 1.84 3.71 10 7.94 3.61 6.73 3.2 8.58 1.66 9.47 5.99 5.41 8.13 2.16 7.15 2.16 6.87 4.82 10.6 8.77 5.47 7.2 5.77 7.56 7 8.42 9.67 8.61 3.56 3.71 5.36 7.62 8.93 4.65 11.2 3.33 3.29 5.42 8.66 9.39 5.24 5.45 7.53 8.52 3.93 6.87 7.15 4.63 5.91 7.66 3.13 3.56 3.89 7.99 2.16 9.49 6.09 0.9 7.5 1.84 1.84 5.76 4.55 4.55 10.1 4.82 8.63 4.58 3.89 6.02 2.01 9.2 5.04 3.45 1.2 1.2 8.83 8.94 8.4 7.75 5.2 9.04 10.3 8.39 8.28 3.2 8.52 10.9 9.18 7.62 10.2 5.65 3.93 9.04 4.68 9.92 9.49 11.1 3.27 9.41 8.72 10.2 8.27 11.1 9.38 7.88 6.64 8.6 4.19 11.2 11 8.65 6.13 9.16 1.66 10.4 10.8 9.53 7.1 10.1 9.83 10.9 9.07 8.83 3.13 10.9 9.05 5.13 10.2 10.7 5.15 8.14 11.8 9.01 5.06 10.8 3.13 10.5 9.67 10.4 8.2 9.39 9.92 10.6 7.46 9.8 8.9 8.62 6.39 8.64 10.3 10.2 6.35 9.84 3.66 8.01 5.55 6.75 10.1 11.3 10.5 13.3 8.89 8.98 1.66 10.3 11 7.67 7.95 10.9 8.61 8.69 10 7.77 7.69 7.93 6.93 10 10.8 9.17 5.76 10.7 9.71 8.14 10.6 9.51 9.75 8.62 6.91 10.8 8.21 7.87 10.8 9.23 8.27 9.09 10 7.29 4.19 8.66 10.8 11 0 7.16 8.42 7.83 4.05 5.71 7.15 11.3 10.6 7.22 7.21 11.3 1.66 10.3 3.45 3.8 5.27 8.96 10.6 9.85 12.6 7.61 9.62 9.29 9.24 11.1 10.2 9.68 11.8 8.83 6.61 8.71 10.6 10.2 8.36 8.21 10.6 6.6 11.2 11.1 12.3 4.92 10.9 11 8.67 17.7 9.57 8.72 8.18 8.15 7.94 10.8 9.84 8.45 10.2 7.09 10.2 7.65 9.47 8.57 9.06 7.07 11 9.58 10.4 9.19 5.76 10.3 11.8 9.67 11 8.45 8.61 10.3 10.2 7.65 9.72 7.12 9.99 11 10.5 10 10.8 10.8 10.3 6.65 8.9 5.38 8.54 9.91 8.95 8.09 6.81 6.57 8.46 9.35 10.6 6.95 8.48 8.02 7.99 8.87 2.82 10.1 10.4 8.42 9.07 3.66 9.87 5.52 9.69 11 8.89 11.4 10.9 10.4 9.39 8.13 10.2 11.6 8.8 11.8 1.45 7.87 8.95 10.1 10.6 9.09 9.82 9.88 10.8 4.5 11.5 9.12 12.2 11.4 5.1 9.09 9.04 12.8 11 11.2 9.3 9.29 9.85 9.14 10.1 11.6 13.9 10.9 2.98 9.47 9.22 8.46 10.1 5.1 8.79 4.23 9.62 9.11 9.93 3.71 12.9 12.5 7.1 10.1 8.85 7.15 11.3 13 9.84 6.35 12.5 9.06 8.36 11.5 7.2 10.5 7.17 11.9 6.66 9.48 2.9 10.3 9.55 2.82 8.48 4.99 8.76 10.3 11.5 4.77 8.76 0.52 8.38 3.97 8.47 9.65 10.6 7.26 10.4 5.15 8.71 8.26 2.41 5.7 2.73 8.08 9.9 8.34 8.86 5.1 9.52 9.67 7.05 8.6 9.62 8.36 8.77 8.18 9.35 5.97 7.66 8.57 9.02 9.7 9.14 7.15 7.39 10.9 10.2 5.39 9.45 6.89 9.85 6.41 8.25 7.32 9.54 9.12 11.1 2.19 10.1 8.18 12.3 10.3 9.33 5.79 9.43 8.64 7.88 9.05 9.49 10.1 8.98 10.6 11.1 8.02 5.42 9.49 11.1 8.73 10.1 10.6 6.6 8.92 10 11.2 7.6 8.59 9.36 11.4 8.94 9.69 9.28 11.6 8.6 12.1 6.54 4.53 5.76 11.2 3.89 5.37 8.14 8.84 2.9 9.39 7.93 10.4 9.29 1.66 9.41 3.33 7.06 4.84 11.1 12.4 8.77 2.73 7.61 4.65 7.65 8.24 7.72 10.2 2.82 7.23 6.5 1.2 8.98 6.83 12.7 8.89 8.85 7.5 9.31 8.13 6.56 6.41 9.04 9.34 4.82 6.1 6.35 1.2 10.9 8.65 8.03 6.15 7.69 4.73 6.55 9.14 9.43 10.1 3.66 6.24 13.2 10.1 6.52 8.21 9.5 15.6 10.8 11 9.65 9.56 10.6 10 0 3.61 11.3 4.82 8.54 7.48 6.48 9.94 11.2 8.42 10.6 8.45 7.94 11.1 5.94 8.6 1.66 6.18 9.72 8.25 9.72 12.6 12.7 5.02 6.92 8.69 9.71 8.41 11.4 4.84 7.09 9.92 8.18 10.2 8.18 8.27 9.09 8.69 9.69 5.51 9.81 5.45 7.53 6.7 5.53 9.59 9.94 5.65 2.29 10.3 8.22 11.4 11.7 10.1 9.71 7.21 4.88 6.2 9.24 7.48 9.08 6.67 5.63 11 1.66 8.96 6.96 5.66 7.33 12.2 5.95 9.87 8.07 8.77 8.69 0.55 8.92 9.66 8.54 7.21 8.89 10.8 0.52 9.56 0.52 9.25 8.11 7.03 11.3 9.32 12.1 8.39 6.25 4.86 10.6 7.86 2.29 11.4 3.51 2.82 9.36 7.55 10.2 2.52 8.44 11.4 2.16 6.82 8 9.93 10.4 8.99 6.76 7.25 8.68 11 9.73 10.1 9.14 8.98 9.15 10 11 9.76 8.27 7.78 5.93 9.71 10.2 2.16 5.48 6.37 10.8 7.33 10.1 9.26 8.58 8.9 4.01 9.36 7.99 7.16 8.55 9.69 9.24 5.13 8.57 3.13 9.47 12.9 5.42 8.66 12.7 3.56 11.2 9 11.6 9.86 6.18 12.5 10.8 10.3 11.7 12.4 11 10.7 9.7 8.91 6.68 8.36 10.6 8.94 9.4 8.44 9.39 9.23 8.1 9.58 10.3 9.21 7.66 12.3 10.3 9.38 5.71 10.5 8.19 9.05 11.2 6.99 11.3 10.4 10.3 7.38 8.35 12.1 9.02 8.87 13.2 0.52 11.2 7.98 11 9.19 8.86 10.7 7.34 8.64 12.6 11.5 7.64 8.04 10.1 14.1 0.9 6.69 13.1 12.3 7 2.9 7.71 10.4 6.96 0 8.29 8.14 5.24 10.6 5.29 0.52 11.4 0.9 4.71 8.63 10.2 11.1 12 11.4 9.58 11.5 9.82 1.66 8.53 5.44 5.99 9.84 3.97 9.65 12.7 4.88 9.57 3.45 7.71 8.12 9.73 3.06 0.52 3.13 5.35 7.7 6.55 3.2 8.17 5.93 3.13 7.01 4.6 6.78 9.62 6.59 5.15 6.78 3.33 3.39 4.16 2.9 9.91 15.3 6.22 11.9 10.7 2.01 8.08 5.12 9.18 4.16 6.94 6.82 6.9 8.89 8.19 9.49 5.88 6.85 2.41 7.46 8.17 7.02 6.49 9.7 7.25 8.69 9.14 9.99 6.85 8.24 6.99 3.89 3.56 5.35 6.92 6.39 1.66 10 5.13 7 7.01 9.22 4.29 9.6 4.17 1.84 2.34 0.52 6.7 2.01 5.68 2.52 8.24 1.2 6.99 2.63 4.55 9.48 9.96 8.93 5.41 1.91 7.91 5.12 6.24 3.33 9.53 0.9 0 5.07 10.9 5.1 7.63 6.01 4.75 9.55 6.86 9.46 4.77 4.99 5.72 2.16 4.26 8.03 7.92 2.73 4.55 8.18 10 10.4 9.39 3.27 9.05 8.63 2.73 5.3 8.36 4.7 6.42 5.13 8.75 4.65 11.1 8.05 7.09 5.97 1.66 7.92 9.22 0 4.63 1.84 9.25 2.01 6.18 7.72 12.6 9.18 7.71 7.17 8.77 4.47 1.2 1.45 8.99 8.46 3.45 2.41 7.26 1.2 7.85 3.66 5.56 4.58 5.68 9.1 8.88 8.38 8.48 6.91 3.51 4.29 6.28 6.38 2.9 5.91 11.5 2.82 7.99 8.56 5.52 8.64 0.9 9.89 7.65 0.52 5.49 3.45 3.39 0 8.58 4.9 6.57 8.6 10.4 3.8 3.2 1.45 7.99 4.19 3.33 4.92 11 6.64 8.27 6.08 5.76 3.8 5.96 4.27 10.2 3.06 4.33 7.91 4.88 1.45 4.23 2.9 1.84 6.17 2.29 8.47 2.16 4.23 5.75 7.39 5.98 6.72 7.24 9.36 7.17 5.74 0.9 6.5 5.4 0.52 8.47 10.6 7.06 6.84 8.74 2.01 9.29 4.92 4.99 7.93 5.88 6.6 4.53 8.53 9.01 0 6.09 9.18 8.39 6.05 6.13 8.05 0.52 8.53 5.6 7.73 9.07 10.7 8.3 8.97 6.59 3.89 2.82 4.68 7.52 0.52 7.7 4.63 4.19 5.46 7.04 8.68 10.2 4.5 8.16 0.52 10.8 1.2 2.98 6.13 4.41 7.57 6.42 9.45 4.47 3.85 8.21 6.13 5.68 7.91 6.97 3.51 8.55 1.66 4.24 2.01 10.5 5.47 4.92 7.6 0 3.81 10.2 0 3.95 7.01 8.34 10.7 6.73 8.66 0 3.39 4.68 4.01 4.41 8.37 8.85 2.73 11.3 6.48 9.4 6.34 3.56 5.7 9.31 7.44 4.65 8.58 9.91 5.47 6.18 8.17 2.16 4.03 1.66 8.44 8.8 7.8 3.61 8.55 6.8 11 8.22 4.12 2.01 7.38 7.47 4.65 4.47 5.94 8.18 9.9 8.91 2.01 9.98 10.3 11.2 11.7 10.4 2.16 12 10.3 9.86 11.2 8.6 8.04 12.2 9.62 11.8 0.52 3.51 10 8.96 8.81 9.03 9.22 9.68 9.43 13.1 8.18 8.69 11.1 5.95 8.5 4.88 10.9 0.52 8.09 6.9 10.5 10.6 11 9.64 10.3 7.3 8.49 10.3 9.79 9.67 7.85 11 10.9 9.84 4.26 7.71 9.67 5.15 10.5 10.4 6.3 11.8 10.7 4.47 6.2 9.23 5.06 10.6 2.63 10.3 3.8 9.14 10.8 8.68 9.16 7.73 9.98 9.68 11.7 6.98 8.15 11.3 10.1 8.72 9.8 8.77 9.5 8.77 9.83 8.64 10.1 10.7 8.95 11.5 10.3 10.5 8.77 5.51 8.51 8.67 8.91 8.6 10.3 9.63 9.2 9.24 9.48 12.1 10.6 11.3 8.51 9.73 7.79 8.48 8.35 9.43 2.01 9.68 10.8 9.75 10.6 2.73 5.9 10.5 2.63 11.8 5.2 6.02 10.7 10.3 9.35 4.09 5.44 12.8 4.16 2.9 13.3 3.13 11.9 14.7 10.6 10.2 11.6 12.2 10.3 10.1 8.73 9.43 9.61 8.13 8.81 5.15 12.9 7.33 7.8 9.68 13.4 7.97 9.88 9.53 9.41 9.76 11.2 9.15 9.46 9.63 8.75 9.54 12.2 13 10 9.45 0 12.5 11.8 5.96 9.73 9.59 1.2 10.7 6.95 4.16 8.93 10.3 7.18 9.22 10.4 12 10.7 4.5 10.1 1.66 3.33 6.87 5.77 9.41 1.84 9.78 8.7 8.54 7.25 7.88 11.9 9.18 8.6 1.66 7.54 10.3 10.8 8.21 3.71 9.58 11.7 9.91 8.51 11.5 11.8 11.3 8.47 12.3 2.9 10.6 8.05 10.8 7.68 7.88 8.13 9.86 5.17 8.54 5.89 8.93 10.1 7.32 9.61 7.97 10.2 10.4 7.1 10.1 11.2 8.78 9.77 13 10.4 9.04 5.17 7.35 7.65 2.41 8.69 9.59 8.59 4.86 6.13 9.91 9.6 4.88 9.34 8.52 1.66 9.8 8.97 11.5 9.57 2.63 12.3 2.41 10.5 4.84 9.84 10 8.49 10.8 8.78 10.6 8.86 9.54 12.2 9.55 9.07 6.79 9.29 6.18 8.45 7.44 9.5 7.49 7.82 8.84 8.53 12.3 9.15 1.5 9.75 2.82 11 9.93 9.68 6.87 9.22 9.37 9.69 8.95 5.47 12 9.51 10.3 2.82 2.01 1.66 11 4.23 2.09 11.1 12.6 7.02 13.1 11.9 13.8 10.7 8.6 5.91 11.5 10.3 9.2 2.29 10.5 4.53 9.84 8.24 8.26 11.5 10.3 9.33 0.52 1.66 3.76 2.16 9.57 6.04 12.3 8.9 10.1 9.24 12.3 12.3 12.2 2.01 12.2 14 9.24 10.7 9.5 11 10.5 9.81 4.41 12.8 3.71 9.23 8.65 9.54 8.15 5.89 4.09 7.61 9.84 6.43 9.55 9.25 7.99 11.6 7.69 6.7 10.5 8.34 9.64 10.2 9.14 11.3 6.42 12.4 9.06 11.8 9.96 11.3 11.3 8.91 11.9 7.94 12.2 12.5 11.8 10.7 7.9 8.97 13.8 14.4 13.6 9.55 9.79 10.8 8.88 3.98 12 11.1 8.57 11.4 6.15 10.1 2.73 13.3 12.2 9.12 6.86 7.73 5.33 12.5 10.6 7.26 10.9 2.67 5.76 6.67 6.05 8.99 6.84 8.65 12.5 12.4 12.6 12.6 13.2 9.24 10.9 9.97 14.6 6.48 9.45 12.1 9.64 9.32 10.3 7.89 8.67 8.13 9.56 7.53 4.5 8.64 1.84 7.75 3.06 10.1 0.52 10.6 13.8 8.26 14.7 12.7 14.1 13.4 12.3 13.4 10.9 11.8 14.1 0.9 13.1 14.1 3.06 9.39 3.93 8.11 7.01 6.31 5.33 5.06 3.34 7.18 7.12 8.4 7.24 3.93 7.43 9.18 9.34 7.99 5.6 4.55 6.7 6.21 5 6.02 8.95 3.87 6.4 10.3 3.97 8.92 4.41 8.81 6.38 9.72 7.39 0.52 9.22 9.33 8.67 6.59 2.29 9.03 4.84 8.13 8.06 11.2 8.62 6.19 11.5 5.15 5.02 10.9 12.3 12.7 8.64 11.2 9.53 5.56 7.06 7.47 1.45 11.3 11.4 8.01 4.7 8.66 9.84 12.6 12.5 10 5.92 10.4 12.6 14.5 10.7 7.47 6.22 15.4 13.4 12.7 5.72 10 16.2 10.1 15.7 14.2 8.69 11.9 11.7 7.93 12.7 5.77 5.48 13.1 11.7 9.15 11.8 0.9 1.66 5.04 4.58 2.29 3.06 10.9 11.8 6.59 11.9 10.3 3.06 4.47 9.64 0.92 10.5 7.84 9.77 5.56 5.81 7.72 7.25 5.41 6.23 8.54 0.9 5.55 4.41 2.43 7.83 8.59 7.15 9.56 5.06 8.66 8.73 4.23 0.52 3.51 4.9 4.53 9.05 9.79 0 9.61 7.26 4.6 8.39 10.9 9.57 10 10.8 8.89 6.98 9.54 5.13 7.03 5.96 6.31 0 9.36 0.9 4.32 9.6 9.03 4.8 6.78 6.47 8.97 6.77 6.56 5.35 3.89 7.09 9.37 7.19 2.63 10.8 8.85 7.69 4.38 9.34 7.75 4.05 3.93 2.41 3.39 11.6 5.06 1.45 3.27 7.1 9.74 9.03 8.83 3.51 2.01 5.24 2.9 4.23 9.35 5.2 2.29 6.84 3.39 9.53 2.29 8.98 9.34 5.19 3.86 7.86 6.75 8.23 7.85 5.59 2.73 4.09 4.68 2.82 4.97 4.53 8.61 5.13 7.14 11.2 4.41 0 2.01 8.54 2.41 12.5 10.6 10 10.8 4.38 9.99 1.45 4.5 6.16 9.46 9.92 3.85 8.85 10.3 0.9 6.82 2.98 6.78 7.62 9.13 10.9 5.85 11.4 5.93 5.77 7.49 3.66 7.04 4.35 8.97 2.01 8.95 0.9 8.14 8.72 3.93 9.51 10.4 4.77 5.89 3.8 2.16 2.53 7.17 10.4 6.12 5.57 4.58 1.45 6.08 7.16 7.02 3.06 6.42 3.06 2.41 2.63 1.66 2.16 9.94 6.98 8.25 1.45 6.42 6.88 9.38 5.88 3.71 9.75 1.45 10.3 2.9 7.09 10.6 5.76 1.84 2.73 10.5 7.25 1.84 2.01 7.33 5.61 6.65 0 5.45 6.85 10.9 0.9 10 5.39 4.8 9.84 8.78 3.13 3.27 9.92 0 9.31 7.62 8.14 6.8 13.5 11 3.8 11.4 6.68 10.3 6.68 3.76 8.93 11.4 10.3 1.45 10.7 1.66 7.59 4.77 12.4 10.7 0.9 9.29 11.9 4.44 7.96 12.9 6.38 2.52 9.07 8.63 4.41 10.5 11.6 5.73 10.3 7.52 6.23 4.47 4.95 4.09 5.3 4.47 8.57 8.64 14.4 10.2 11 4.41 7.88 5.6 10.8 7.1 3.39 7.63 1.1 9.06 10.5 7.93 2.82 3.71 5.89 6.5 2.43 7.04 6.97 0 7.41 7.85 10.8 9.9 3.85 5.41 8.37 7.95 8.38 6.59 7.12 10.1 10 7.2 9.97 0 6.39 9.45 9.59 9.27 3.2 6.35 7.02 2.52 3.2 8.4 8.79 2.41 5.08 10.4 8.99 6.67 8.76 2.82 1.2 7 6.61 9.01 1.09 10.1 11.1 8.14 8.64 6.83 7.92 6.81 5.02 3.39 8.68 7.22 6.44 11.1 12.8 14.1 1.2 10.7 9.81 9.94 9.89 12.5 10.3 8.59 8.18 8.87 6.95 7.35 5.27 2.16 10.5 7.46 1.66 9.44 8.53 9.73 11.1 10.4 9.65 1.45 3.39 10.2 2.73 13.5 7.53 12.2 10.7 11.3 6.57 11.1 10.5 7.05 8.95 9.72 8.22 7.62 7.67 9.9 9.36 8.47 3.56 10.8 9.89 8.28 7.33 8.94 9.79 11.3 8.66 5.92 9.36 3.61 7.94 10.2 9.19 10.8 9.17 13 11.6 10.4 6.45 8.63 12 12.1 4.82 8.49 7.66 2.41 4.7 4.97 11.5 6.63 8.09 11.1 9.97 11.9 5.51 9.36 9.39 9.75 11.6 10.9 9.96 11.2 8.42 9.33 11.4 13.2 10.4 10.3 10.9 12.1 7.92 7.31 9.72 8.81 11.9 3.27 5.19 10.3 3.45 6.13 8.83 0.16 9.81 7.49 6.43 5.17 7.53 9.31 7.89 0.52 7.43 1.2 6.14 7.01 3.13 6.04 4.84 9.23 8.87 8.02 9.01 1.84 1.2 7.77 6.48 7.89 4.12 6.14 0.52 5.39 9.53 7.35 5.75 8.92 6.67 5.1 7.29 8.01 8.63 0 6.04 8.89 13 7.55 8.45 5.85 10.6 3.51 7 8.34 2.41 5.45 2.9 7.36 8.29 7.28 5.85 3.89 3.06 3.33 9.23 6.7 8.15 8.31 6.85 6.91 8.17 7.33 7.64 7 4.32 1.66 4.05 8.07 1.84 7.99 9.31 6.82 1.45 10.6 7.06 7.66 0 3.61 11.8 3.54 0.52 6.1 3.45 12.8 8.65 4.26 7.82 2.16 5.99 4.97 5.3 7.56 5.84 6.87 12.8 4.75 2.82 3.33 6.13 7.34 7.94 7.92 3.61 7.23 12 8.02 1.2 4.38 7.44 6.02 8.72 4.23 6.03 8.36 4.5 1.2 5.19 10.2 9.33 7.46 4.63 9.75 5.3 7.48 9.74 9.87 8.23 11.8 8.61 9.5 9.29 1.84 3.66 3.2 11.2 3.1 3.02 8.45 3.06 5.1 12 5.55 6.91 4.73 4.18 7.43 5.93 11.1 10.5 10.6 11.4 10.8 14.2 13.4 10.2 9.26 11.1 6.24 11.9 12.7 11.6 1.66 1.2 14.8 8.19 2.82 8.79 7.91 7.36 13.3 7.88 3.71 11.7 0.52 8.97 5.22 7.27 7.09 2.23 9.49 2.52 0.52 4.16 10 6.23 7.47 14.6 9.71 9.92 8.86 2.9 6.63 5.74 5.04 8.22 8.45 1.66 3.71 1.93 7.25 0 7.17 3.66 5.46 6.76 3.85 5.19 8.72 2.79 2.16 9.58 2.93 6.02 8.65 4.86 2.01 10.6 2.16 5.61 5.04 3.51 8.51 4.8 2.98 9.55 3.33 7.86 4.88 5.22 5.81 5.87 7.31 7.87 7.76 6.56 10.2 9.76 1.2 14.3 1.84 6.38 8.04 8.85 9.21 8.92 6.94 7.13 4.29 1.66 4.41 7.66 9.02 0 7.6 7.34 7.62 2.01 7.99 7.77 5.53 4.12 5.89 8.78 8.74 0.9 9.51 1.33 5.04 7.4 8.2 9.17 8.63 5.91 1.84 9.91 11.8 8.18 1.45 7.38 0 6.53 5.43 6.73 0.9 8.84 10 4.8 6.51 2.98 6.46 5.27 7.79 6.46 5.15 12.1 5.74 6.19 10 6.17 7.13 3.51 1.45 10 9.11 3.13 6.7 2.41 8.15 2.16 4.09 1.84 6.88 6.84 2.16 6.74 3.13 9.97 9.51 9.46 5.97 0 2.29 9.22 5.87 3.61 3.61 5.55 0.9 9.71 7.72 7.47 8.76 8.17 9.76 10.8 5.63 11.7 0.53 13.2 0 11 1.84 8.73 8.61 13.9 12.2 7.67 7.48 11.1 10.8 13.9 0.52 0 3.89 13.8 8.08 13.7 4.55 2.63 9.89 11.3 7.08 9.66 0.9 12.9 9.24 1.45 14.2 10.7 15.2 9.83 5.1 8.62 5.46 10.3 9.64 11.8 6.54 10.2 12.6 12.6 5.02 8.88 10.1 11.3 3.85 8.59 9.25 10.6 6.85 11.4 7.4 9.92 10.8 11.2 8.45 10.2 7.05 6.23 5.72 9.44 9.68 1.84 9.05 10.2 7.62 11.6 9.75 10.5 9.3 5.2 2.16 10.6 3.8 6.51 8.21 5.24 11.3 4.01 8.27 7.27 10.2 2.41 3.06 8.42 9.61 10.7 11.9 7.06 6.41 7.47 12.8 2.73 2.16 4.84 9.89 6.34 8.08 8.06 9.67 2.41 7.34 8.07 2.84 6.78 5.3 2.63 6.01 4.5 2.41 8.3 8.28 7.73 3.13 4.19 4.26 7.77 3.06 8.43 8.96 0 2.16 7.93 5.27 2.29 2.29 6.58 8.77 10.1 5.24 7.09 0 6.38 0 6.1 4.19 3.06 2.01 11.2 0.52 6.86 4.55 4.05 5.29 5.22 3.13 4.19 4.31 4.1 7.87 5.19 6.12 6.64 0.52 8.24 7.2 4.44 7.21 5.8 9.89 5.99 2.01 7.99 8.4 9.92 6.73 2.29 9.68 0.52 1.66 3.02 0.9 6 9.58 4.82 7.1 11.7 8.27 0.52 6.28 7.81 9.98 8.83 0 4.12 4.6 10.6 2.73 1.84 7.69 9.23 4.29 8.41 6.95 7.79 0 8.73 10.2 12.9 8.29 9.08 11.6 11.9 6.02 8.26 9.5 3.76 7.6 2.63 5.12 10.9 7.15 5.84 10.8 7.94 8.98 10.1 8.65 11 5.27 10.1 7.51 2.01 10.7 9.66 9.81 9.82 2.01 3.93 6.28 5.86 10.1 7.22 12.2 13.5 4.97 6.36 8.64 6.11 10.6 8.08 12 8.21 9.2 12.4 12.6 12.2 11.7 0.52 6.51 7.72 6.74 9.94 10.7 11.9 8.39 10.3 8.76 10.2 10.6 10.6 10.5 10.2 7.98 9.84 5.53 9.29 10.8 4.77 6.7 8.01 8.34 10.5 5.04 3.2 8.69 8.99 9.54 9.9 9.03 11.6 9.55 7.71 6.32 9.12 11.1 6.7 13 5.2 5.52 8.42 8.67 10.6 8.62 5.12 12.1 8.87 3.8 7.2 2.82 2.16 7.27 4.47 4.44 12.4 8.75 4.69 10.6 9.5 7.29 10.1 5.86 8.92 9.63 12.6 10.1 0.52 9.82 10.3 8.21 7.49 11.5 9.45 7.55 2.63 13.6 12.5 12.6 13.5 12.2 12.2 13.3 11 6.31 11.5 9.07 2.41 11.4 12.2 12.9 12.5 10.5 8.4 9.31 10.3 9.71 9.72 5.16 7.99 10.1 7.94 5.96 9.48 9.56 8.71 9.63 10 10.2 7.41 10.9 9.99 7.22 0.52 13.6 8.74 9.26 10.2 11.4 9.51 12.4 10.8 9.49 7.49 11.4 9.62 8.68 7.48 8.93 8.35 7.33 13.1 11.1 8.78 10.2 8.42 10.4 10.5 9.76 9.86 12.9 11.4 1.84 7.8 7.4 9.46 11.9 10.6 7.91 9.84 8.34 8.23 9.71 10.2 10.9 11.3 8.88 5.94 7.56 11.1 11.6 7.6 4.47 8.45 12.4 6.82 0.9 0 11 6.18 9.92 13.3 3.2 11.9 7.33 7.73 8.06 7.61 7.43 9.77 8.99 7.64 9.46 3.33 8.9 8.54 1.2 11.2 9.85 9.27 9.4 10.2 4.38 3.76 9.12 10 7.36 9.73 9.09 4.8 8.71 8.89 10.8 1.45 1.45 10.5 9.65 1.2 5.73 5.22 10.5 10.3 3.06 0.9 6.76 5.61 9.08 6.82 8.45 1.84 1.45 5.12 8.99 10.5 3.89 7.87 10.4 3.59 7.71 3.49 4.45 6.82 6.86 10.3 8.85 2.29 6.88 1.84 8.96 6.7 3.71 8.9 2.9 2.52 11.2 9.81 10.9 2.98 6.62 3.71 3.51 3.2 9.62 5.84 1.84 1.2 8.35 7.75 5.99 6.61 12.9 4.9 6.84 6.88 5.95 5.95 6.78 8.5 9.84 7.43 3.61 5.2 7.55 6.44 3.06 5.6 5.75 1.84 5.97 6.66 3.91 1.2 3.61 0.52 0.9 4.65 2.82 1.2 7.92 0.9 7.3 7.44 4.6 8.82 9.73 5.17 5.94 10.7 1.2 0.9 1.66 1.66 7.49 1.84 7.25 2.9 1.45 8.02 6.64 4.38 5.75 11.2 3.2 12.3 8.61 2.29 8.15 11.4 10.9 8.39 3.66 7.58 5.81 3.06 10.2 12.9 9.09 6.45 7.57 6.26 6.58 11.8 10 13 5.93 12.4 11.7 10 4.33 9.09 9.55 11.6 9.63 10.8 8.7 9.29 7.31 10.6 8.48 9.5 5.22 10.4 2.63 10.3 9.22 8.92 8.51 7.82 12.7 9.64 8.03 7.26 6.67 13.9 5.72 2.63 1.2 10.8 9.72 11.6 10.3 8.82 4.23 6.53 14.1 13.1 12.4 8.96 6.91 7.1 13.5 11.7 4.8 11.8 9.75 11.2 10.1 9.27 9.43 8.21 4.09 9.56 11.1 11.2 11 8.78 10 4.5 9.09 9.14 13.9 10.4 9.49 9.71 13.5 6.42 13.8 6.22 7.82 11.6 12 13.5 12.4 8.17 9.6 9.01 11.2 9.29 4.44 10.1 8.53 7.71 8.74 14.9 11 10.2 9.49 9.03 12.2 10 12.7 10.5 9.41 9.89 8.59 11.8 10.6 11.6 9.24 10.6 9.33 12.2 10.1 9.95 9.24 10.6 10.4 12.3 10.7 9.17 10.7 10.4 9.57 11.1 10.3 11.2 8.44 11.9 9.87 9.62 10.1 12.3 9.84 10.9 8.49 13.2 13.7 11.1 8.97 8.13 7.21 8.13 5.47 9.22 0.52 1.2 12 10.2 9.3 8.29 9.17 8.06 7.5 10.5 10.3 13.7 10.8 4.05 11.3 8.11 5.89 8.57 9.4 9.41 6.72 13 9.52 10.3 9.27 7.78 8.48 10.1 9.7 12 11.2 9.4 8.73 9.22 10.9 9.96 10.4 9.07 1.2 10.3 9.89 10.6 9.36 2.98 11.7 10.1 8.25 12 9.63 5.73 8.75 9.26 7.51 11.3 7.31 11.6 6.95 11.2 12 13.3 7.67 10.2 7.74 12 6.94 11.1 12.3 13.9 5.98 8.44 10.6 11 8.87 10.7 11.8 11.7 8.14 6.24 4.47 11.6 8.75 7.11 8.93 9.85 6.51 14.2 5.6 2.63 13.2 5.76 8.01 4.5 6.75 8.94 10.6 10 11.4 6.7 12.4 9.38 3.33 10.8 7.16 4.65 4.65 13.7 10.7 7.27 2.29 8.47 4.77 6.6 6.3 4.01 7.72 3.66 8.42 7.25 3.97 4.97 5.9 12.2 9.35 12 11 11.3 6.59 11.3 10.3 8.28 8.4 10.2 10.3 7.68 2.63 9.14 4.56 6.3 9.7 11 5.74 10.9 10.6 0 6.78 12.4 8.36 4.5 5.17 4.5 1.95 13.2 11 8.79 12.2 10.2 2.29 10.6 8.49 9.61 5.32 1.45 4.48 7.34 2.01 0.9 11 8.92 13.2 5.19 5.92 9.33 8.3 9.27 2.52 6.18 11.2 10 10.9 9.25 9.11 6.69 2.16 0.9 10.5 4.19 10.9 9.82 2.01 5.56 8.62 11.5 8.75 5.92 4.88 8.31 6.61 5.76 5.63 3.89 7.25 8.14 11.1 14.6 6.39 7.22 12.6 1.84 3.76 4.7 12.8 9.3 11.6 7.73 12.1 10.7 9.58 5.74 11.2 8.64 9.44 3.8 8.93 8.73 8.66 8.22 14.4 10.2 2.41 10.8 14 5.19 7.5 10.1 8.81 11.3 4.04 9.32 11.1 5.95 8.65 9.16 7.85 9.44 4.58 8.98 7.28 4.58 10.6 10.9 8.91 5.29 3.56 2.9 8.23 11.3 9.69 11.8 10 11.4 9.25 9.47 0.9 4.2 2.29 13.9 4.92 6.68 10.9 4.92 5.6 6.48 9.51 8.97 9.34 11.6 10.2 11.6 10.5 7.94 8.26 13.5 8.65 1.2 13.8 5.17 7.78 6.1 7.75 10.7 10 10.5 10.8 10.9 7.87 9.53 8.76 6.93 7.89 8.36 9.96 9.06 9.56 5.49 9.35 8.84 10.1 8.54 10.4 8.32 7.54 9.97 7.6 9.82 10.6 5.33 8.95 9.81 8.42 10.7 6.57 9.32 10.9 9.31 11.3 10.9 9.59 8.56 8.07 10 6.31 11.8 5.91 8.27 9.13 11.6 9.65 5.95 7.73 10.4 3.85 10.6 9.74 9.75 9.77 9.95 9 11 8.42 10.7 8.18 10.5 10.2 11.8 12.3 11.4 10.6 9.89 6.06 4.82 1.73 7.55 8.74 8.43 8.59 9.54 8.04 11.2 8.47 11 9.65 9.39 8.86 11 10.6 8.03 8.98 7.37 9.23 10.1 7.73 11.3 10.7 11 12.3 9 9.85 8.88 9.75 9.92 10.5 9.52 10.2 10.7 8.61 9.85 10.5 8.96 10.4 9.23 4.26 8.24 8.82 8.54 8.34 10.6 10.2 8.54 8.19 7.88 9.96 8.84 12.5 10.2 10.4 9.29 9.48 6.91 11.3 0.52 11.3 13.2 7.84 10.9 10.5 7.49 9.83 9.14 10.6 7.65 7.92 4.23 9.9 6.35 8.56 8.5 8.06 7.79 10.2 11.5 10.6 10 9.42 9.44 9.55 11.3 8.65 10.8 10.8 7.44 9.47 9.47 7.86 7.47 9.31 7.14 11.8 11.4 9.69 8.04 1.2 4.26 3.13 10.2 8.4 9.16 8.36 7.31 7.22 9.3 9.99 8.66 9.83 2.16 10.4 10.4 6.91 8.14 10.1 9.05 13.4 11 9.06 10.2 9.66 7.79 8.74 3.61 11.8 10.6 8.95 8.14 11.9 7.16 9.39 10.2 10.5 3.9 7.03 9.34 11.2 10.2 10.3 9.95 8.22 7.04 7.42 9.51 9.43 8.86 10.8 6.93 9.94 11.1 6.77 3.76 9.69 8.88 10.7 9.56 9.73 11.9 7.44 9.4 9.37 7.76 9.94 8.6 10.5 3.51 9.52 10.6 3.2 9.65 10.5 8.12 8.6 8.91 6.86 9.56 9.56 3.27 7.91 6.46 9.01 9.58 7.35 9.87 10.8 11.2 10.1 6.7 10.8 7.09 9.49 6.79 6.41 6.41 11.5 7.59 8.16 11.7 9.92 9.86 8.73 10.3 9.11 3.06 8.3 4.73 6.53 8.9 8.98 9.43 9.1 3.33 5.27 12.4 8.56 9.61 3.85 10.7 10.8 9.09 10.6 8.56 8.88 9.49 6.88 7.38 10 4.05 11.7 13.1 10.5 9.3 7.4 6.42 9.12 8.2 10.4 8.99 11.3 8.22 9.01 10.7 8.49 9.46 8.62 8.13 11.3 8.76 7.77 9.84 11 9.98 8.04 10.5 11.5 10.3 10.8 9.36 8.74 4.01 11.9 10.3 11 10.5 2.29 9.61 8.64 9.63 8.12 2.52 9.82 10.7 7.99 3.39 10.9 11.1 7.45 11.2 8.4 9.49 9.3 11.4 12 10.2 10.8 10.5 11.6 10.4 8.69 9.57 10.8 10.3 10.6 8.46 10.3 9.94 6.14 10.4 9.96 7.1 12.2 10.7 8.57 8.16 9.4 9.06 9.6 10.8 8.44 9.6 7.58 6.6 10.2 10.3 9.34 10.1 11 8.15 9.35 9.65 8.4 8.6 8.38 9.18 10.6 3.97 3.06 8.06 10.8 8.25 6.38 8.98 11 9.12 10.2 10.3 7.8 11.2 10.4 10.7 10.2 6.89 12.8 10.1 11.9 9.48 11.3 11.2 12 10.6 10.3 10.9 9.91 11.3 6.89 12.1 10.6 10.4 9.5 10.3 10.7 9.3 11.7 9.24 2.01 6.97 11.8 11 10.5 7.63 12.3 9.37 11.5 9.47 8.65 9.26 11.9 10.8 8.61 8.71 9.01 11 9.46 9.35 11.4 7.81 9.45 9.52 9.77 9.71 10.3 9.9 9.7 7.7 8.01 7.95 10.9 9.65 10.5 8.17 12.2 10.1 6.56 7.62 8.64 10.8 8.15 4.88 0 10.3 8.98 10.6 9.31 8.86 9.93 11.9 10.4 7.76 9.33 4.09 7.84 11.5 7.84 8.95 8.87 11 9.34 2.63 11 2.52 9.22 10.8 10.8 9.33 12.8 3.39 8.53 8.19 2.16 6.07 6.84 9.78 5.89 11.8 8.98 9.68 2.99 9.5 8.42 11.8 10.2 9.8 6.84 5.96 9.71 9.93 2.01 8.7 11.3 9.28 9.61 11.7 11.5 12.2 8.44 8.04 5.01 9.6 9.79 11.3 9.84 9.71 9.02 9.72 8.73 6.7 9.35 8.06 9.12 9.24 0.9 0.52 12.3 5.87 10.9 10.2 10.2 9.51 11.8 8.48 2.41 8.76 12 10.9 10.2 13 3.06 9.86 12.2 15 11.4 8.89 10.9 13.5 4.8 2.9 13.2 10.6 8.71 10.9 14.4 11.8 9.38 8.65 3.61 5.92 5.02 12.9 5.64 13.3 2.82 9.53 9.74 10.9 9.25 9.86 11.8 2.52 9.27 7.75 10.8 1.66 10.7 11.2 11.1 6.64 11.8 5.38 8.24 8.89 11.2 7.8 8 2.41 10.8 9.03 8.67 10.7 8.44 10.9 11.9 9.96 6.63 9.34 10.8 10.8 10.2 9.68 9.78 1.2 9.06 9.87 11 9.04 10.5 9.65 2.14 15 9.64 10.7 1.2 6.96 8.89 9.57 9.78 11.4 9.9 8.42 11.3 9.38 9.94 9.09 8.37 8.03 10.4 6.68 5.99 4.83 9.32 7.53 6.1 6.84 9.08 11.8 3.97 7.43 8.24 7.65 11.2 9.15 10.6 13.7 3.75 4.84 9.37 9.75 5.23 6.81 1.2 11.6 6.35 10.1 5.35 12.7 11.3 9.03 8.2 10.1 7.3 11.7 10.6 11.7 11.2 11.9 5.51 8.79 2.01 11 6.39 10.1 4.14 9.53 1.39 3.61 11.2 10.7 8.15 10.4 11.2 8.99 7.58 7.56 5.7 4.68 5.7 3.13 10.4 11.2 5.94 5.56 5.04 6.72 10.2 3.56 9.16 6.81 5.93 6.13 11.8 6.75 8.01 8.43 9.02 10.3 8.33 11.7 8.95 11.6 9.19 8.21 11.1 10.1 8.31 10.8 9.06 5.15 4.23 7.22 8.07 7.34 2.01 9.96 3.93 5.13 8.73 5.86 7.2 7.12 5.41 10.4 10 12.2 2.82 8.67 9.18 6.95 5.7 7.27 3.16 9.97 9.56 8.86 9.04 8.86 10.2 14.1 12 12.4 5.1 7.68 6.1 9.78 9.31 11.1 11.4 11.7 8.53 3.6 10.4 8.83 13.1 11.8 10.7 5.15 4.55 10.6 9.9 8.81 11.9 7.28 7.87 9.78 10.5 7.38 7.01 10.4 9.55 9.56 9.97 10.2 11.6 10 5.25 7.68 11.2 4.97 10.6 11.3 9.17 9.78 9.84 2.25 7.87 6.78 5.87 10.3 9.48 6.28 9.88 11 9.28 8.87 8.87 9.07 4.41 4.38 12.7 10.1 10.6 8.97 5.27 9.48 8.39 3.06 10.4 9.05 10.6 11.2 6.31 10.3 9.18 10.3 10.9 11.7 9.71 10.3 8.85 10.5 7.85 9.52 7.11 9.38 9.43 9.86 9.56 10.3 8.42 6.4 10.9 7.78 10.5 9.53 9.15 2.98 9.85 6.55 10.8 9.86 8.08 9.81 8.17 6.53 10 9.67 6.68 10.3 6.86 10.3 9.47 8.51 9.5 7.69 8.66 8.44 11.1 9.87 12.1 9.06 12 9.79 9.17 10 7.65 10.6 9.02 8.17 7.3 8.66 7.54 2.41 7.92 9.61 6.89 8.46 10.1 14 10.8 14 9.02 11.7 10.7 8.92 11.2 10.3 11.7 7 10.4 11.4 8.84 6.72 9.03 7.52 10.9 7.61 4.29 10.2 10.9 9.51 9.28 9.93 7.57 9.59 10.2 7.67 6.43 9.37 7.58 8.83 11.4 10.2 10.5 9.68 8.79 8.96 10.8 5.17 5.02 11.3 1.66 12 9.11 5.47 9.75 10.6 8.28 6.39 6.7 2.98 11.1 4.77 8.1 3.27 10.9 8.18 8.62 11.5 6.7 4.01 9.82 9.65 5.2 10.4 9.52 12.7 8.69 9.07 8.26 9.33 13.4 8.23 9.5 7.51 9.09 8.71 3.8 10.3 8.62 9.34 10.2 10.1 6.99 7.99 8.75 9.08 9.4 10.2 6.7 8.88 9.28 8.37 7.71 11.6 8.12 8.49 9.26 9.55 10.3 7.56 2.41 6.49 0 9.03 7.79 4.12 0 9.57 8.36 7.55 9.74 6.8 9.32 7.96 7.65 7.38 12 6.08 9.98 9.36 7.56 7.09 9.61 4.23 8.91 11.1 8.4 8.73 9.28 9.56 10 7.65 8.89 8.81 10.7 3.71 11.1 8.94 8.08 11.3 9.61 6.02 11 8.53 10.2 8.17 8.84 8.27 10.9 10.2 10.6 9.49 8.88 5.87 10.1 11 11.8 10.1 11 9.46 8.71 8.24 7.38 6.85 7.59 7.96 6.32 8.39 10.9 9.37 10.2 4.35 10.7 9.73 12 9.62 9.67 11.7 8.45 11.1 10.2 8.86 11.4 8.49 7.38 8.72 10.7 11 12 9.7 9.54 9.81 9.89 6.41 2.63 10.2 8.26 10.1 6.06 10 10.7 10.1 11.3 11.1 8.25 5.56 9.71 7.83 10.2 9.09 10.4 7.68 9.24 8.92 7.79 9.8 8.05 8.14 8.42 12.4 7.87 8.11 8.56 9.77 6.79 7.86 1.45 9.89 9.22 7.22 8.6 9.7 11.3 8.03 10.3 10.6 11.1 0.9 7.77 7.47 6.6 11 8.83 9.18 7.18 9.7 1.2 11.4 11.7 7.74 10.3 11.6 7.56 5.96 6.32 11.5 8.37 11.3 12.3 12 5.99 9.05 10.1 10.3 10.3 8.43 9.51 9.38 9.02 13 9.24 10.3 7.58 9.37 8.29 8.91 9.79 6.77 10 0.52 8.01 8.3 7.52 10.4 4.35 5.38 8.83 10.3 9.09 9.85 10.2 8.52 4.16 9.95 5.77 11.1 10.8 8.89 9.67 4.92 12.3 9.48 9.24 8.81 11.4 10.3 9.99 7.16 7.22 5.17 8.05 5.81 5.09 4.38 7.94 7.67 9.29 5.19 11.2 5.83 7.02 8.41 10.8 8.82 8.94 12.4 9.02 8.19 9.03 10.7 8.86 7.11 5.79 7.76 2.01 6.7 9.72 9.17 7.44 8.37 11 4.99 9.88 8.83 9.89 9.66 9.65 8.6 6.75 10.9 8.89 11.3 10.1 10.3 8.31 8.86 10.7 9.19 11 8.35 10.7 8.26 9.89 11.6 8.01 9.09 2.9 10.6 11.1 9.07 9.42 6.75 6.29 9.78 11.2 10.5 10 10.9 9.98 8.53 10 11 10.2 9.74 11.6 2.98 8.12 9.22 10.7 11.4 10.5 10.4 11.5 11.1 9.09 10.8 8.12 9.27 8.83 7.8 9.97 9.82 9.67 8.43 9.25 9.47 10.5 7.01 7.54 10 9.76 8.47 13 8.36 10.1 11.3 12.1 7.77 10.9 10.5 7.81 10.1 7.37 8.94 8.26 10.8 8.57 0.52 13.9 9.91 8.92 7 4.73 11 9.95 10.6 7.84 9.15 10.9 9.75 11.1 8.23 12 6.23 11.8 8.33 9.85 8.57 11.2 9.27 6.93 8.86 9.45 7.1 5.55 7.56 7.89 9.66 8.9 11.4 8.32 9.72 9.34 8.45 9.31 3.76 9.65 10.7 9.95 9.03 10.3 11.5 9.44 9.51 8.12 9.91 10.2 7.64 8.06 11.5 10.1 10.1 11.7 10.1 9.52 9.65 8.92 10.4 9.72 8.08 4.7 7.39 6.92 8.73 8.54 2.41 7.68 10.8 10.7 11.1 10.3 6.72 10.3 10.4 11.4 5.6 9.12 8.25 10.7 9.38 8.69 2.63 7.2 9.48 7.29 6.34 2.73 9.5 11.3 7.65 10.4 9.44 10.6 11.2 6.68 9.22 7.06 5.66 9.03 8.69 10.1 0.52 8.61 9.32 7.81 9.55 6.74 10.3 11.1 9 10.7 8.32 9.59 8.03 8.28 6.57 9.64 7.87 9.74 9.75 10.4 6.52 9.06 9.1 10.6 8.64 10.3 9.22 6.04 6.53 8.03 9.19 7.34 9.72 9.89 10.1 4.45 4.5 9.02 11.5 11 9.2 11 10.3 8.26 10.8 9.85 7.22 9.16 7.22 0 8.2 9.12 14.1 10.4 6.83 8.21 8.19 10.9 9.77 9.65 9.3 7.93 10.5 9.3 10.2 7.23 7.64 12.9 11.8 11.6 10.2 3.45 8.55 10.5 8.8 7.64 1.2 5.57 7.89 4.9 8.5 9.05 8.62 4.09 7.76 7.87 8.48 11 10.1 10.4 9.09 4.41 10.3 6.75 9.61 11.3 9.65 7.07 5.22 7.55 10.8 9.24 6.18 8.41 7.43 9.68 9.19 6.53 3.39 10.8 5.99 6.18 10.4 10.5 7.34 2.9 4.77 8.34 11.7 5.62 6.2 11 4.19 2.01 7.81 2.98 8.3 8.97 8.57 8.37 7.79 4.8 9.1 9.56 10.5 9.27 12.5 1.45 10.7 9.77 9.12 6.36 10.6 10.5 8.62 10.1 6.89 10.8 9.82 6.99 1.84 9.86 9.26 9.25 8.37 9.51 8.61 9.9 7.12 8.42 10.9 8.76 5.6 8.49 9.47 9.99 7.73 8.63 9.5 6.15 10.7 9.84 10.6 10.2 10.4 10.2 12.1 8.14 11.8 6.18 9.93 9.19 9.8 9.26 7.85 9.43 8.74 5.13 9.8 9.45 10.4 9.67 10.6 8.56 11.5 7.56 11.1 8.2 9.57 10.4 14.5 10.7 8.47 10.3 8.23 10.2 12.1 11.2 10.4 7.47 8.6 10.4 12.3 9.96 8.95 9.44 8.87 8.76 11.8 9.22 9.03 10.8 8.23 7.23 9.87 10.7 10.9 8.59 8.78 11.1 6.5 10.5 9.14 10.3 5.83 10.8 10.4 10 7.34 11.8 8.06 10.4 10.3 9.48 9.39 10.2 11.5 10.1 10.7 7.94 9.07 7.75 8.84 9.72 9.32 10.5 10.2 10.1 9.49 12.1 7.77 6.95 9.37 11 9.87 10.1 11.2 12.1 11.2 8.39 7.17 9.23 11.2 11.3 11.5 9.61 11.8 9.27 9.7 10.6 9.62 9.54 11.2 11.3 11.1 7.62 9.75 9.33 12 8.22 10.9 10.4 9.12 7.76 9.82 10.2 9.13 8.49 9.61 8.4 9.54 9.21 10.4 10.4 9.37 8.99 9.44 9.38 8.9 12.1 10.3 9.11 7.05 9.04 6.2 8.42 7.87 9.27 8.78 7.45 9.58 7.51 9.24 8.84 8.83 8.45 7.07 9.82 7.25 9.14 9.26 5.66 8.96 4.47 9.56 9.99 4.84 10.2 8.74 4.75 8.63 6.56 8.59 6.89 9.92 3.13 7.34 11.5 10.1 4.5 10.8 9.98 5.74 9.6 9.22 7.08 9.64 9.73 9.26 9.73 9.47 11.8 12.1 8.63 9.47 9.8 10.1 5.25 8.83 6.89 8.76 11.2 9.64 8.1 7.25 11.2 7.43 9.16 9.68 3.29 11.1 6.79 9.77 8.28 10.3 8.09 10.7 9.66 7.65 9.46 8.2 3.66 7.98 6.94 9.97 9.57 8.8 6.6 7.83 10.2 4.5 6.86 3.39 13 10.3 8.7 11.4 4.47 11.1 9.67 8.93 5.69 8.4 10.1 11.2 8.38 10.6 8.84 14 8.24 10.6 10.3 8 9.52 4.47 14.2 8.95 6.28 10.3 4.41 9.77 6.72 11.7 10 7.77 6.77 9.4 11.1 8.45 4.86 9.67 11.1 10.7 11.2 9.79 9.94 6.94 9.17 8.91 9.57 9.77 8.33 2.16 7.81 0.9 10.6 9.6 9.82 6.41 8.55 8.64 10.3 11.3 9.25 10.3 11.5 3.71 7.19 8.16 7.63 10.3 4.67 7.37 5.78 8.97 5.1 4.9 4.26 4.98 2.63 5.71 6.76 3.56 5.68 5.45 10.3 4.38 4.38 4.7 5.51 3.06 9.59 3.33 5.86 6.11 5.45 5.13 5.25 5.75 4.53 5.13 5.78 10.9 4.53 3.56 5.68 7.7 5.1 8.88 9.09 5.51 6.56 2.29 1.66 8.74 4.95 9.22 9.72 1.2 8.26 11.1 0.52 5.97 12.7 9.34 10.4 1.2 10.2 11.3 7.26 10.3 8.92 6 11 10.4 5.18 10.1 10 11.7 9.11 7.68 11.8 9.58 10.5 7.94 5.74 10.4 9.45 10.6 10.6 10.8 10.3 6.43 3.45 11.7 6.69 0.52 2.52 9.41 5.63 9.62 4.5 4.09 10.9 4.8 9.12 7.8 1.45 14.7 7.16 7.24 4.99 10.5 7.64 8.27 11.1 9.38 10.3 6.43 6.04 10.2 9 8.59 9.07 9.75 5.35 5.42 7.05 3.39 7.38 1.66 8.87 7.73 10.8 10.3 14.9 6.97 2.98 9.39 9.43 11.3 11.6 11.9 9.16 8.45 11.3 8.27 11.7 10.4 9.98 9.32 4.9 11.7 12.1 11.9 10.7 11.4 10.4 11.7 12.1 7.99 7.73 10.8 10 8.43 10.2 9.18 2.41 12.2 9.8 7.83 10 9.29 10.9 5.69 8.07 11.5 12.3 6.28 7.79 9.57 9.29 11.6 9.95 10.6 12.5 7.65 8.47 7.72 7.78 11.5 9.67 9.36 8.71 11.8 10.3 7.95 10.1 8.51 12.3 9.15 9.85 8.38 10.2 11 9.53 8.1 10.1 9.1 11 11.7 9.16 10.4 7.22 6.51 10.5 9.39 9.86 5.38 8.58 2.52 9.51 7.98 11.4 6.66 8.96 6.84 6.59 9.06 8.27 4.16 8.43 9.38 7.01 8.31 10.6 9.62 10.1 10.1 11 9.03 9.38 10.2 10.3 8.65 8.92 2.29 10.2 8.55 7.97 12 9.44 11.4 2.63 8.93 10.5 10.6 11.4 10.1 9.08 5.95 8.28 8.06 9.68 12 8.8 9.27 12.3 10.2 3.27 11 8.76 1.69 11.9 12 12.5 9.52 10.2 7.8 8.44 12.6 5.17 11.4 4.12 10.9 5.57 9 8.08 10.1 12 5.39 9.91 10.4 9.54 4.29 8.13 8.27 10.5 9.39 7.79 8.42 8.44 6.1 10.4 6.62 11.3 10.2 7.69 5.24 8.79 10 11.3 11.6 9.75 11.7 10.9 7.99 11.9 9.87 11.3 7.45 8.48 7.97 10.9 7.96 9.91 6.71 12.1 10.2 6.72 10.3 3.2 10.4 7.46 10.5 4.19 11.4 7.13 10.7 12 9.37 10 9.45 11.6 10.9 11.3 8.22 11.7 9.63 9.79 9.43 7.94 11.5 7.96 9.44 11.1 11.4 3.45 8.92 8.78 11.7 8.37 11.1 8.26 7.85 11 11.2 8.86 9.88 7.34 5.85 9.84 10.2 9.46 7.75 10.5 10.5 8.94 9.11 9.69 9.18 9.62 5.04 7.32 13.8 11.1 9.96 0.52 3.76 9.23 9.36 7.16 6.32 7.36 9.99 10.6 4.38 8.04 9.74 10.6 7.8 8.27 7.26 7.53 8.66 9 4.8 11.3 12.8 7.43 6.18 5.76 8.05 9.39 2.82 2.73 9.39 9.24 0.52 8.6 7.44 9.02 8.15 10.5 7.62 10.2 7.05 10.5 7.26 7.85 6.16 5.64 9.46 9.22 11.7 9.19 8.1 6.62 5.45 4.47 10.6 9.83 7.96 9.31 3.97 11 9.5 7.65 5.91 7.4 8.39 11.1 3.2 6.73 11.6 11.8 4.23 10.2 10.4 9.87 8.99 6.2 7.03 8.83 10.5 7.71 8.21 7.03 9.59 11.4 9.15 4.53 10.6 9.88 11.4 0.52 9 1.66 10.2 7.73 5.71 9.22 11 11.3 11 9.17 9.98 9.6 11.5 8.51 9.62 8.84 11 7.09 10.3 8.37 10.4 6.24 6.14 1.66 4.82 4.38 11.5 8.52 12.2 11.3 9.85 6.11 5.6 8 8.94 7.91 12.2 7.77 11.1 9.9 7.86 8.77 7.3 6.8 7.87 9.44 9.86 9.89 1.84 10.9 13.2 7.12 7.22 10.2 8.63 9.83 6.03 7.61 2.82 7.88 10.5 3.27 15 9.17 3.33 11.7 7.37 4.05 8.76 6.06 4.8 8.9 10.6 3.71 9.83 9.91 10.2 9.2 9.32 10.6 9.97 10.3 8.02 6.86 9.15 6.68 8.15 10.1 8.76 8.38 11.8 4.35 10.4 10.3 9.45 10.3 9.44 9.53 9.22 8.29 8.69 10 9.88 8.94 9.89 7.5 8.4 6.49 12.8 9.05 9.89 11.3 10.4 6.32 7.09 8.31 10.3 12.2 10.9 11 10.8 9.74 4.88 7.79 11 6.06 9.23 10.3 10.6 8.53 9.13 8.55 10.2 9.61 9.49 10.6 12.3 7.04 8.78 9.29 11.6 11.6 9.92 6.56 11.1 4.97 7.02 5.53 10.2 8.24 6.09 10.1 9.79 10.3 8.47 8.73 6.85 2.63 10.6 9.33 9.53 10.1 9.9 8.27 8.79 8.75 9.85 10.1 5.22 8.57 7.62 6.94 7.36 5.74 2.98 8.18 11 8.73 8.56 9.33 10.7 8.57 4.99 5.77 5.81 5.33 7.71 7.94 8.02 9.37 7.9 10.4 9.1 9.56 9.21 9.95 10.1 8.67 10.5 10.2 6.26 8.71 12.4 11.8 10.1 12.6 11 4.53 7.32 9.56 9.33 8.84 4.01 9.87 0 2.29 8.44 7.6 10.8 9.83 5.39 2.98 8.75 10.8 10.4 8.76 8.27 12.2 9.33 5.66 9.91 9.54 8.7 7.33 6.04 7.75 9.33 6.66 6.05 10.9 7.81 5.44 11.1 8.92 7.61 10.7 9.42 11 11.1 6.12 11.5 11 9.91 8.28 7.91 11.2 10.7 9.71 9.82 7.02 9.65 12.2 8.87 11.6 11.2 10.9 9.24 13.7 12.5 4.9 8.69 4.9 8.08 9.06 10.5 10.4 9.5 6.01 10.4 9.62 9.93 9.14 8.55 10.1 8.12 7.58 7.69 5.78 6.53 9 9.42 8.8 8.09 7.48 11.1 10.8 11.4 10 8.71 9.66 8.96 13.2 12.2 10.6 10.5 9.18 7.01 5 10.9 2.41 0.9 12.4 14.6 9.46 11.6 10.2 9.9 6.91 9.04 8.13 9.03 11.1 11 7.95 11.6 8.54 10.2 8.5 1.66 9.54 10.6 8.34 11.7 12.2 10.1 9.62 8.34 9.22 13.3 11.5 12.3 10.2 8.31 6.27 6.44 7.98 8.76 12 6.1 10.6 10.8 9.58 12.4 9.95 13.3 11.6 12.4 12 10.4 10.8 6.27 8.26 8.84 9.2 11 1.2 9.65 8.86 8.75 11.2 7.06 8.02 8.44 9.59 7.45 3.97 8.35 8.66 8.88 8.24 11.6 3.85 6.16 9.72 8.31 13.3 10.7 9.68 9.31 11.3 9.11 10.9 8.92 8.14 1.84 9 9.56 9.51 0.9 7.78 10.1 11.2 2.73 9.87 8.39 10.5 12.9 1.45 7.41 11.4 10.7 9.76 7.31 9.93 3.66 4.91 3.67 11.2 6.92 7.38 2.29 11.5 11.3 1.2 4.46 7.4 4.73 10.1 10.7 5.96 6.4 9.75 8.56 9.13 12.4 10.4 11.2 6.59 11.2 9.34 11.2 11.2 9.92 9.67 9.52 10 10.9 2.55 9.63 9.17 7.15 6.02 0.9 9.45 6.91 8.4 10.2 8.98 16.9 8.93 8.77 1.45 8.52 4.41 1.68 10.3 1.2 10 8.96 10.3 4.19 8.9 4.23 10.8 11.9 9.89 9.14 11.2 4.75 1.2 6.96 7.51 4.19 9.01 8.62 7.66 8.26 7.42 10.4 1.2 10.9 6.37 0.52 10.2 12.9 7.2 11.3 7.66 11.2 1.45 9.69 8.55 11.9 9.91 8.97 8.24 9.78 9.21 9.39 5.65 9.71 8.84 10.7 9.53 10.5 8.32 12 10.1 11.1 8.77 9.8 11.5 9.64 1.2 8.83 10.2 6.65 6.44 11 6.78 10 11.6 3.76 4.12 5.2 8.75 5.33 11.8 9.74 10.1 10.3 7.33 11.1 3.39 10.2 10.1 4.58 8 0.52 3.61 8.4 8.19 8.14 7.44 2.41 11.6 11.2 9.31 9.92 15.3 15.4 14.8 13.7 10.9 10.5 13.8 0.99 16.5 11.1 14 14.9 14 14.3 14.2 12.5 13.8 11.6 15.2 4.01 13.3 13.2 9.43 13.8 14.4 14.2 14.6 13.6 14 13.3 14 14.3 13.2 13.7 11.8 13.6 14.2 13.7 8.74 8.54 14.1 8.36 15.1 14.8 13.7 11.6 9.52 13.1 13.5 14.2 14.8 12.6 14.8 2.73 2.63 3.06 6.95 7.51 13.9 2.29 1.66 14.9 10.8 8.88 9.18 9.85 9.73 13.2 15 13.7 13.3 14.4 14.1 12.8 14 12.9 13.7 14 14.5 6.77 15.3 14.6 14.7 13.1 13.6 14.4 12.8 11 7.07 13.8 8.67 13.2 9.76 8.09 12.9 10.8 10.9 12.1 9.88 2.29 8.56 10.6 9.97 6.1 8.53 9.86 9.68 10.2 9.55 4.55 5 6.87 6.05 11.2 4.09 3.33 9.56 1.45 10.2 6.42 8.77 12.5 12.7 1.45 10.3 5.74 9.78 8.42 10.4 11.9 4.39 10.1 9.19 11.7 8.51 9.03 12.3 7.39 7.81 11.3 9.63 9.66 6.03 9.03 9.88 9.2 12.2 5.19 8.58 6.69 6.47 6.62 4.92 3.2 7.85 12.4 6.64 7.91 7.08 4.9 11 2.82 5.89 7.93 10.3 10.2 2.63 6.55 9.62 8.69 5.61 6.3 9.02 11 5.1 4.9 10.1 6.51 7.24 0.52 2.73 8.21 5.74 1.2 8.58 3.13 6.34 8.46 7.56 10.5 7.55 6.64 10.5 11.4 12.3 11.2 9.66 10.4 6.73 8.26 9.64 10.1 9.19 9.64 11.8 9.51 7.27 9.7 8.74 6.12 8.96 10.4 8.64 9.65 9.18 8.15 10.8 8.01 2.53 8.44 10.1 9.58 10.1 7 10.3 4.05 2.89 10.4 7.59 8.41 8.39 8.04 8.79 7.83 10 7.62 9.35 8.3 7.8 11.5 9.54 11.3 1.2 9.47 5.02 8.48 9.33 8.54 7.88 1.66 10.7 9.54 5.12 8.86 4.32 9.09 8.64 9.44 9.66 4.05 10.7 4.65 5.12 6.85 6.97 5.24 5.77 5.27 10.8 4.41 9.74 8.56 1.66 6.04 8.17 6.79 8.59 7.37 8.28 9.41 6.27 7.69 6.59 10.1 8.4 10.9 9.36 9.36 11.2 8.5 8.94 8.08 6.29 9.22 7.54 4.55 8.12 1.66 10.3 6.43 8.47 3.85 7.36 0.52 10 9.91 4.23 7.95 7.51 9.39 10.9 10.4 10.6 9.66 5.97 6.25 7.11 5.7 5.59 7.9 5.27 10.8 13.9 6.03 8.65 7.79 11.4 11 13.4 10.5 8.6 9.58 9.14 9.45 11.9 7.33 10.7 10.2 8.81 10.7 8.15 10.2 9.7 9.66 6.82 0.9 2.29 6.5 6.45 13.1 4.16 12.9 13.1 4.16 9.28 5.09 4.86 7.49 9.63 9.41 9.56 5.72 11.8 4.01 4.5 2.41 3.89 11.7 3.39 1.2 12.1 9.44 9.65 9.99 12 9.08 7.99 12.1 7.63 7.93 10.1 10.1 10.4 10.2 7.59 8.35 8.42 5.06 2.16 3.33 6.1 12.4 8.69 9.37 9.29 11.2 7.68 1.45 3.8 8.4 8.67 8.15 4.6 0.52 8.89 6.35 6.76 7.31 7.54 5.87 7.82 1.84 1.2 6.85 8.9 2.9 11.4 9.06 6.44 8.85 8.19 8.07 8.1 5.2 6.06 7.95 4.84 8.31 9.86 8.56 8.1 0.52 7.64 7.32 6.83 3.56 8.99 10.6 3.76 8.31 7.44 11.7 10.8 9.14 10.3 9.41 9.13 8.66 9.58 9.74 9.51 10.2 10.1 3.85 7.23 1.2 2.29 5 5.22 4.73 4.88 11 3.06 7.34 5.3 9.66 3.13 9.32 6.7 0.52 11.4 1.66 5.51 0 4.55 9.26 5.79 5.17 10.1 6.62 1.45 8.24 5.24 10.3 11.6 4.9 1.84 6.28 1.66 3.71 11.2 5.64 4.12 5.29 3.39 1.2 2.29 4.29 8.21 3.06 4.41 6.97 8.23 11.9 1.84 9.49 4.66 4.9 5.94 8.75 3.8 6.48 3.33 11.5 4.41 10.5 4.81 6.1 9.32 1.66 2.98 7.66 8.88 11 6.64 9.33 1.84 5.17 1.84 0.9 4.09 2.52 10.7 7.95 6.61 7.14 10.4 10.2 13 6.16 4.84 8.46 12.1 2.41 2.52 9.45 9.83 9.85 10.4 9.98 8.49 9.68 7.99 7.77 10.6 10.5 8.75 12.3 11.2 10.2 5.92 9.69 10.7 9.92 8.69 10.4 10.3 10.2 13.2 9.65 8.27 6.99 9.73 10.9 7.68 8.83 10.1 9.77 12.3 9.09 9.23 9.99 0.9 9.64 9.16 6.57 7.91 9.19 10.1 9.77 5.2 10.7 12.7 9.64 5.23 9.02 11.8 2.16 6.88 7.47 3.13 10.6 10.2 9.52 9.33 8.54 7.5 8.27 7.64 11.2 4.16 10.9 9.96 9.79 4.53 9.85 9.77 8.92 10.7 10.5 10.5 8.89 8.64 8.26 7.6 9.49 9.31 6.74 1.41 5.7 6.82 9.27 8.46 10.1 5.69 7.47 6.63 10.5 8.7 9.7 2.16 9.64 9.2 8.57 8.21 10.4 6.81 4.36 9.45 7.38 11.3 5.79 8.97 10.6 6.74 10.3 1.66 10.7 9.63 9.74 9.28 10.6 11.2 9.26 9.31 10.8 7.86 10.6 9.47 10.4 10.5 2.73 8.14 12.1 10.1 10.3 9.17 7.73 8.71 5.06 10.9 8.66 9.43 4.88 6.19 6.45 6.12 10.8 9.26 8.96 5.38 9.39 4.8 6.7 4.19 8.01 7.29 8.24 9.96 10.5 11.2 8.31 8.72 9.27 10.7 0 11.1 12.9 9.84 9.24 10.8 3.66 10.9 8.4 12.9 10 14 4.63 14.7 6.09 7.21 6.34 10.3 12.6 5.25 11.8 10.8 6.99 6.24 8.93 8.72 9.99 8.41 10.4 8.13 9.56 9.93 8.97 12.2 11.4 6.64 7.81 9.01 1.84 8.34 4.01 1.66 7.35 7.27 4.32 5.19 8.5 3.61 3.97 5.69 4.35 3.8 3.39 7.36 3.45 11.9 8.9 5.44 7.34 3.71 1.84 0 8.93 12.4 9.42 7.93 9.61 3.76 8.17 5.15 8.43 1.45 10.4 6.99 5.88 1.84 2.98 8.95 4.75 8.81 1.84 5.83 6.44 3.51 9.97 10.1 1.45 7.43 7.13 9.13 8.44 3.39 7.96 3.76 7.07 6.09 0.52 5.26 4.82 7.95 4.29 5.64 11.2 4.7 5.83 2.98 5.76 5.66 0.9 6.84 0.52 9.05 6.11 3.93 10.1 2.01 5.13 12.6 8.54 10.2 1.45 1.84 9.5 11.3 10.2 10.3 8.52 4.7 1.84 5.35 3.56 7.08 5.52 9.81 10.8 4.55 8.94 9.24 10.9 10.2 12.9 7.29 8.16 10.4 11.4 9.74 9.59 9.88 8.15 10.6 10.4 6.72 7.93 5.93 12.6 6.81 10.2 9.85 10.7 8.76 8.44 8.97 8.23 1.2 7.35 2.01 6.98 9.87 9.95 10.5 11.7 11.6 6.56 10.3 8.85 12.1 2.06 10.9 10.9 8.66 10.1 7.38 11.2 11.4 12.5 10.4 8.73 5.41 9.23 8.69 9.33 7.37 9.79 5.55 6.97 13.9 12.1 11.1 10.3 13 10.7 9.92 11.7 10.6 12.1 11.5 10.7 11.1 10.5 12.9 11.8 7.86 7.2 10.3 11.5 9.5 9.52 0.9 12.3 8.34 10.8 7.82 11.2 10.2 13 8.75 10.3 9.85 9.16 12.6 9.3 4.5 8.85 6.23 10.7 9.27 11.7 9.63 11.2 10.7 8.96 9.91 7.49 9.58 4.77 15.2 9.36 10.5 9.04 6.34 8.12 4.16 12 9.15 7.35 12.1 8.07 8.09 12.7 2.63 8.88 13.6 8.77 11 10.1 7.37 3.56 10.3 10.8 11 11.1 11.3 12 11.7 11.8 9.28 10.4 7.82 11.7 12 11.8 10.2 11.2 8.7 9.45 12.3 11.2 9.58 11.7 11.9 11.4 10.7 12.6 8.61 5.65 2.16 10.3 9.64 12.2 10.2 5.53 12.2 6.72 12.8 11.1 12.2 6.93 9.95 10.6 2.41 0 2.16 1.2 0.9 5.95 0.9 2.47 11 3.45 1.45 1.2 6.58 12.1 11.7 7.48 10.6 9.95 7.85 9 7.95 9.52 8.47 9.97 10.4 5.39 6.75 11 10.1 4.05 4.5 8.5 7.07 9.64 9.12 9.64 7.91 10.1 9.77 9.87 7.66 10.1 4.41 14.3 2.41 8.42 10.9 11.7 7.33 12.5 9.5 9.76 9.39 12.4 10.6 11.4 8.54 11.3 10.6 8.99 9.47 10.4 5.89 9.56 6.77 8.21 3.89 10.9 8.59 7.77 3.93 1.2 5.92 10.5 9.75 5.25 7.31 9.17 10.6 10.6 9.59 8.97 12.1 7.99 10.9 11.4 10.2 10.1 9.01 9.95 9.4 10.2 10.2 4.8 2.01 11.6 13 11.4 10.4 11 9.5 9.76 11.5 8.15 6.43 8.41 10.4 9.09 13.2 9.66 9.12 8.81 9.05 3.45 4.6 6.54 7.56 12.7 7.92 6.92 4.65 5 7.56 10.5 2.82 0 11.2 0 11.7 9.76 10.7 5.42 12.1 9.84 8.91 9.24 9.03 10.2 6.11 10.6 8.65 9.57 10.6 9.98 10.6 1.2 9.26 12.5 7.8 13.2 2.16 4.09 8.27 11.1 8.23 5.02 10.1 9.59 9.93 6.57 11.9 9.3 11.9 9.57 8.38 4.77 8.14 13.3 10.6 8.26 9.09 0 12.8 8.68 7.1 9.4 10.4 10 6.37 9.21 9.99 9.22 9.64 11 9.13 10.2 3.2 9.7 7.08 11.8 3.93 5.68 10.3 9.07 7.92 9.62 12.3 12.1 10.5 0.9 10.2 10.1 10.2 11 5.25 12 1.45 7.13 12.6 10.2 7.81 8.46 7.34 5.15 10.7 4.19 8.92 5.02 0 11.3 10.8 11.2 10.4 11.2 8.2 11.6 11.9 11.9 7.92 12.8 11.4 11 7.88 13.8 3.89 10.3 9.13 11.7 8.65 6.39 12.7 11 7.25 7.74 6.03 8.26 16.7 11.5 5.06 6.74 10.3 9.26 8.31 7.08 10.6 10.1 5.98 12.6 14.6 11.8 6.69 5.51 5.61 6.06 9.76 9.67 9.95 11.9 5.77 11.5 10.9 6.08 3.13 6.64 10.4 12.1 4.26 10.9 7.44 12.3 11.8 7 2.73 13 12.1 10.8 11.2 10.3 10.2 12.3 6.31 8.9 11.7 7.9 11.9 2.01 15.2 12.8 11.9 10.1 13.5 13.6 9.37 10.1 12.3 4.09 15.2 6.9 10.6 9.62 10.1 15 9.36 9.27 8.34 8.9 7.09 8 9.7 7.5 13.8 10.2 10.8 9.5 0 7.69 2.01 1.84 6.59 9.89 9.36 4.32 3.85 5.4 10.8 9.79 10.9 2.73 9.83 2.16 10.2 10.4 9.13 8.63 7.38 8.09 10.7 10.1 11.9 11.7 10.3 6.08 9.38 9.7 8.39 8.65 8.01 5.81 5.99 7.08 5.95 7.58 9.81 7.38 11.3 4.58 5.38 4.75 5.63 6.66 5.8 8.61 7.9 3.93 8.31 8.16 10.8 3.76 8.43 0.52 3.13 8.75 12.5 6.48 6.8 2.29 7.05 9.5 7.04 7.01 8.63 0.52 8.18 7.39 3.93 2.52 6.41 9.79 7.47 1.2 14.6 3.85 7.77 0.52 6.38 4.99 4.01 7.79 8.26 5.91 11 2.63 1.84 10.6 5.08 10.7 5.51 4.09 4.97 7.27 0.96 3.06 4.53 7.54 7 5.08 0 6.93 6.61 0.52 6.15 5.71 3.85 6.69 6.62 11.9 8.31 6.41 9.91 3.51 5.53 12.4 5.39 6.62 1.45 7.91 10.1 7.86 1.45 4.41 10.9 7.52 9.66 4.8 6.52 4.88 6.71 8.19 5.19 8.05 3.93 9.37 6.69 7.8 10.7 6.73 1.66 10.1 0 12 1.45 13.7 0.52 14.2 14.3 13.1 2.73 9.37 10.2 9.41 8.41 11.1 12.5 10.1 8.38 12.1 10.8 10.6 11.6 1.84 10.7 11.3 11.7 10.5 10.9 8.82 11.5 11 12.2 11.5 8.17 5.12 2.9 10.6 4.23 10 4.53 9.64 9.64 10.1 12.9 4.5 9.3 10.9 12.2 11.9 9.82 10 12.7 1.84 10.8 3.61 11.8 12.1 11.4 10.8 12.6 10.4 8.28 10.5 11.1 11.2 1.84 10.3 10 10.1 8.97 12.2 11.1 8.57 10.7 10.3 10.2 11.6 13.6 11.8 11 11.8 7.67 10.2 8.9 6.64 8.15 10.3 8.35 13.3 13.8 5.65 5.7 7.86 4.86 6.98 8.5 9.71 9.2 8.55 11.7 8.61 12.2 14 8.42 10.4 13.2 9.86 9.84 7.13 9.42 9.82 9.38 11.3 10.2 7.97 3.06 9.13 9.77 5.47 3.06 4.26 3.61 5.85 8.57 7.46 6.08 2.63 8.55 10.2 6.48 11.9 3.93 1.84 12.8 6.27 7.29 10.3 5.91 10.1 5.52 13.3 9.83 8.65 9.75 7.06 10.1 13.5 7.05 10.3 11.1 12.5 8.18 14.3 12.6 11.7 14.5 8.16 12.7 9.25 6.52 12 8.31 8.95 9.01 6.66 9.72 10.4 7.92 10.1 7.54 13.2 8.54 9.85 8.25 8.68 8.93 7.76 8.44 6.13 7.55 7.4 8.98 9.56 8.21 9.95 8.87 9.9 6.05 8.35 9.64 8.79 7.86 9.06 9 8.96 6.73 7.46 9.11 8.25 6.91 10.1 5.61 7.77 6.34 7.54 9.14 8.87 9.25 9.29 6.82 1.72 10.6 4.65 8.74 12 9.44 2.52 5.88 6.72 7.92 4.14 11.8 7.78 3.39 4.44 2.41 0.52 6.91 3.13 8.66 9.36 6.31 8.2 9.57 7.7 8.43 6.89 8.51 9.06 6.59 7.22 9.7 8.8 11.1 3.66 12.1 11.1 9.27 9.46 8.46 7.87 7.36 5.97 10.4 6.95 11.5 8.3 7.5 6.79 6.66 5.64 8.38 8.78 7.92 8.91 8.37 8.02 8.17 8.53 7.83 9.4 9.62 11.1 9.01 8.49 9.68 8.43 12.4 11.6 5.22 7.76 5.06 7.86 11.6 11.8 6.86 7.52 6.29 8.4 4.16 8.63 6.89 8.89 6.67 9.59 8.33 8.62 3.61 5.29 4.5 6.76 7.41 4.88 12.6 11.1 9.74 10.6 5.25 11.6 8.07 11.7 5.72 14.3 8.97 11.2 7.33 6.32 10 12.8 9.34 9.83 10.9 8.29 12.8 5.87 5.51 5.66 7.94 9.64 13 5.88 10.5 10.1 10.1 8.59 10.4 10.8 12.5 13 7.78 4.41 10.8 6.31 8.44 9.65 6.45 6.77 8.23 9.83 8.88 9.09 9.83 4.63 4.99 7.75 12.3 8.48 9.87 10.6 9.54 8.44 9.4 6.71 8.93 9.14 9.55 9.31 9.32 10.2 9.65 8.28 7.98 9.31 9.67 5.06 13.5 10.4 8.56 8.4 9.84 10.3 9.02 8.51 11.1 7.22 9.5 11.8 4.7 8.96 10.6 9.98 10.5 10.1 8.79 4.16 9.86 8.35 10.4 11.4 9.34 8.2 10.2 7.5 10.9 7.47 9.56 10.2 7.17 9.51 9.87 11 10.2 9.81 8.94 8.03 9.4 7.54 8.23 4.7 8.06 8.83 8.58 7.74 4.58 9.57 10.4 11.2 11.9 8.46 7.2 8.96 8.2 10.7 11.1 7.76 10.5 10.1 11.2 10.1 8.86 4.55 6.44 8.39 7.17 4.73 8.21 9.81 7.57 9.33 11 8.24 13.4 8.1 7.33 1.45 8.21 9.29 12.7 4.86 10.8 8.58 6.9 9.28 8.54 8.1 7.57 7.33 9.49 10.8 9.38 8.97 8.22 11 13.2 4.58 9.4 11.9 10.2 7.48 7.87 6.94 9.28 2.63 10.2 0.9 10.7 5.77 10.5 6.61 8.01 2.63 5.86 6.11 7.22 1.45 8.42 7.06 8 5.47 7.91 10.4 7.94 8.74 7.1 9.49 8.58 10.4 6.46 2.29 2.52 0.52 9.79 8.96 6.14 6.81 9.54 11.3 8.02 6.81 9.28 9.92 11 7.74 7.05 9.89 11 8.42 8.96 9.1 9.7 10.3 8.3 7.96 7.36 11.9 9.85 7.15 8.01 5.65 7.6 7.49 8.92 8.71 6.67 7.3 8.67 9.88 7.27 12.2 5.52 6.6 7.73 5.81 7.16 7.17 8.83 8.07 9.41 7.54 6.16 8.85 7.58 9.09 8.8 6.18 9.44 8.12 3.06 9.65 12.3 9.34 8.64 9.45 9.67 9.35 7.06 10.4 7.39 9.74 8.63 8.54 11.4 6.53 7.2 10 10.7 8.44 3.56 8.01 7.89 8.77 7.82 9.7 8.92 2.41 9.23 8.74 10.3 9.31 10.4 6.49 7.96 9.02 5.64 8.02 10.5 8.93 10.4 8.05 7.5 5.32 9.52 9.95 8.77 7.48 7.98 9.87 9.24 11.6 8.67 11.5 8.9 7.99 9.25 8.77 9.32 12.1 10.3 11 5.68 8.31 9.7 8.1 9.99 8.9 8.73 7.09 8.87 7.9 8.4 9.25 8.57 7.83 6 0.96 7.43 7.92 7.14 7.47 0.52 9.25 4.09 9.64 9.87 8.79 7.19 5.78 5.77 8.13 8.09 8.9 8.42 8.35 7.56 8.13 9.54 5.7 6.79 8 6.51 7.83 8.31 8.3 7.76 0.52 5.94 9.22 7.58 4.73 8.6 11.5 9.43 9.84 9.41 8.86 8.6 8.78 5.44 9.6 2.29 8.36 9.53 9.11 8.41 7.33 11.6 8.29 11 7.45 5.56 5.41 8.97 9.64 3.76 8.65 1.2 7.78 6.11 4.38 7.95 9.31 9.01 9.62 7.27 9.96 8.35 9.5 3.2 9.81 5.19 6.1 8.07 8.93 3.06 8.13 5.38 6.15 8.95 5.12 8.05 9.64 1.45 9.54 8.39 0.52 4.73 6.97 3.06 5.27 0.52 8 8.79 5.1 6.96 8.52 7.85 8.86 11.2 5.36 8.57 9.86 6.23 8.15 8.13 9.94 9.32 6.71 9.6 10.6 3.56 8.06 8.06 9.61 12.4 11.5 9.06 7.72 10.9 10.7 8.86 6.35 6.93 9.07 8.4 6.98 9.16 11.1 9.93 8.81 5.32 1.2 10.5 8.37 8.8 9.66 3.93 8.58 10.1 8.72 13.4 8.38 5.13 5.47 7.2 8.8 8.08 5.53 10.4 0 9.03 5.51 8.37 10.3 11.2 2.01 9.07 9.09 6.69 10 8.62 0.52 10.2 4.16 9.17 6.32 8.66 8.26 10.8 8.1 6.88 7.38 8.3 7.73 7.45 9.94 6.37 8.31 7.68 8.4 9.67 8.47 4.86 6.87 9.42 7.49 9.55 8.08 3.56 5.04 4.73 12.8 3.66 4.53 8.76 9.59 7.91 8.29 7.25 3.71 8.47 10 9.56 8.43 9.91 9.11 10.5 7.82 9.25 7.87 8.28 9.83 10.1 9.35 9.07 7.15 2.16 2.82 4.26 6.34 8.02 7.38 9.27 2.25 6.43 2.73 0 7.99 9.95 12.8 4.38 10.1 5.8 6.3 9.57 0.9 9.74 6.07 5.06 4.75 6.06 6.8 9.92 8.34 10.2 10.7 10.4 9.35 10.4 10.3 7.84 10 9.69 10.6 9.76 11.4 6.2 8.34 7.17 9.47 8.13 9.16 9.23 9.8 8.29 10.6 7.08 8.59 8.84 10.2 7.97 8.54 10 8.74 7.85 4.53 10.3 9.25 5.97 9.02 10.1 10.9 10.8 8.02 8.16 9.24 7.58 3.2 12.4 8.96 9.43 9.53 11.3 8.51 8.48 9.37 9.29 5.87 11.2 10.6 4.38 5.42 6.47 8.87 9.02 9.34 3.2 9.36 7.99 8.3 9.76 9.24 7.28 9.13 10.5 5.33 11 10.1 5.75 7.35 9.96 10.7 10.3 8.84 10.2 10.4 6.5 10.4 11.8 6.48 8.64 11.5 5.93 8.76 7.98 7.21 6.43 9.32 7.98 5.98 10.1 8.53 4.12 5.83 7.14 10.8 7.73 5.22 12.1 8.45 6.74 10.1 7.84 10.2 6.44 10.7 11.1 9.56 2.41 10.4 6.29 8.65 7.31 6.86 11.3 8.19 12.9 9.26 8.11 9.32 10.2 5.22 10.7 7.49 5.93 9.09 8.18 5.53 12.6 9.61 11.2 2.98 6.05 2.9 4.32 3.51 8.41 7.58 8.1 10.5 6.23 5.25 5.23 7.39 7.55 10.6 8.49 5.44 8.83 10.4 8.55 5.47 10.4 7.91 12.4 12.6 9.76 13 10.2 13.2 8.88 8.84 7.98 7.72 9.42 9.24 12.1 9.91 10.2 7.91 9.16 3.66 11.7 9.8 10.5 9.01 8.64 10.4 5.26 5.35 7.24 2.4 12.4 9.88 8.95 8.42 11 2.73 10.7 13.8 6.76 1.66 3.39 12.4 6.74 7.63 9.57 9.65 10.7 12.2 14.6 5.15 6.44 5.89 5.86 7.52 11.9 12.8 9.4 7 5.38 12.1 12.4 9.76 9.16 5.7 6.78 5.15 3.27 11.5 10.6 8.4 9.17 8.66 10.8 11.1 7.91 8.28 9.41 8.02 10.1 6.74 10.5 9.64 9.86 9.77 9.55 9.62 9.57 8.73 10.3 9.99 12.4 4.23 8.78 7.91 8.98 9.69 7.23 9.5 9.06 7.96 8.48 3.56 6.52 10.3 10.3 11.3 8.36 10.2 11.1 9.57 10.5 11.9 11.1 2.29 4.05 6.32 13 10.4 11.2 6.62 9.31 8.72 9.8 9.82 5.09 10.3 12.3 11.6 11.2 12.3 9.92 6.57 6.69 9.14 1.84 9.67 5.79 4.6 11.4 9.08 3.27 8.45 6.39 8.69 4.16 7.78 7.27 8.89 10.1 9.31 9.03 8.99 8.67 11.4 5.64 9.92 2.32 8.36 8.39 10 10.2 8.26 9.94 10.4 11.4 11.1 7.94 8.13 11.8 9.29 11.4 2.52 8.59 9.26 1.48 10.4 9.08 7.73 10.5 7.68 8.41 8.89 8.08 9.49 4.12 11 9.62 9.37 11.4 14 8.78 9.65 7.13 11.4 9.05 6.11 10.1 9.26 11.1 8.55 11 8.08 10.9 11.8 10.9 10.9 11.9 12.2 6.03 11.8 10.1 7.26 10.1 5.71 9.38 9 3.2 5.6 0 11.9 12.1 12.3 5.85 8.17 1.45 12.1 10.8 11.1 10 6.94 10 7.87 10 11.3 11.2 9.91 9.99 9.18 12.4 7.64 8.68 9.34 9.35 9.76 9.37 5.69 0 9.85 2.16 1.84 2.29 8.52 2.82 8.1 4.05 4.32 7.13 8.27 1.45 4.73 3.06 5.22 0.9 1.66 10.2 3.06 10.5 11.1 10.1 7.83 8.45 3.61 5.76 3.28 8.71 7.95 0.52 9.61 10.2 8.23 7.52 7.62 7.38 5.33 9.18 7.51 8.63 2.41 8.02 10.9 8.3 7.05 10.2 1.2 5.18 1.66 3.97 5.06 0 9.23 8.22 11.1 8.53 7.27 8.84 9.37 3.2 7.38 2.16 3.06 0.52 0.9 9.48 5.1 3.8 9.19 7.94 7.2 9.45 10.6 0 7.36 10.4 10.6 9.65 8.12 0 4.84 8.79 11.2 8.64 0.9 9.13 10.6 8.55 8.39 6.17 6.93 1.84 2.29 10.3 0.52 10.2 10.5 10.4 1.66 11.7 8.85 9.13 7.4 11.2 9.15 0 3.33 9.08 8.61 8.06 10.5 9.64 7.52 6.75 7.54 10.3 8.18 6.79 5.6 4.32 10.2 7.22 7.28 10.7 9.69 10.5 6.48 9.89 9.74 2.98 7.9 7.78 9.46 9.17 9.75 3.2 4.82 6.88 8.09 3.61 7.4 10.1 4.75 9.23 12.3 8.26 5.39 8.33 11.7 8.96 8.2 2.29 3.97 9.86 4.86 10.4 6.82 5.02 2.16 4.75 2.73 4.05 2.73 2.82 8.57 10.3 8.53 8.77 9.32 10.2 7.47 8.5 9.56 2.41 10.7 11.3 8.68 7.55 5.17 5.42 0.52 7.17 2.9 9.39 11.3 7.74 7.65 4.38 10.6 11.1 10.4 9.87 7.2 5.39 8.57 5.38 3.51 8.44 8.51 5.55 8.59 10.7 9.3 9.15 11.3 9.57 3.27 7.36 7.56 9.02 7.97 7.89 8.27 10.9 8.31 6.95 8.53 9.52 8.78 7.17 4.6 12.9 3.61 6.48 9.05 2.01 8.32 7.61 9.46 11.2 7.23 10.4 6.75 5.47 8.88 9.82 1.66 9.92 5.52 8.13 6.78 8.06 5.36 9.14 9.92 8.58 9.43 8.91 10.9 9.44 9.65 9.05 9.49 9.06 8.85 7.91 7.78 8.63 6.44 10.4 9 9.55 8.99 9.54 8.92 4.05 10 7.03 10.5 9.91 7.09 10.5 9.65 6.48 10 7.67 7.52 7.66 5.78 10.4 7.35 9.05 8.42 10.2 7.42 5.48 7.17 9.9 10.4 11.6 6.59 8.74 7.48 8.19 5 6.04 3.39 8.91 7.07 4.23 4.58 7.1 7.26 5.71 4.95 1.2 8.29 11 11.6 7.78 7.9 2.41 9.21 10.2 9.03 8.48 9.53 9.59 2.98 11.6 8.06 5.45 4.75 7.39 10.9 9.12 5.99 9.65 8.51 7.98 9.09 9.22 5.48 8.23 9.72 8.28 10.1 8.42 10.1 7.38 11.7 10 9.97 9.47 8.8 7.49 7.96 4.32 7.55 11.6 8.62 5.35 9.16 6.52 8.64 9.51 7.69 9.66 6.35 9.99 0.52 7.78 9.5 9.49 9.22 10.2 9 8.75 8.74 9.89 7.56 7.13 7.42 7.43 10.1 9.05 8.64 9.07 1.66 10 10.6 9.31 11.2 6.93 7.92 9.55 9.62 9.9 9.67 9.29 10.4 10.3 8.78 4.5 8.76 8.37 8.46 7.67 3.8 8.07 8.56 9.98 9.43 10.2 8.27 9.17 9 9.36 5.63 6.31 10.8 10.8 5.41 10.5 10.3 12.3 6.1 9.54 3.39 8.3 7.01 9.5 10.7 9.13 7.88 5.85 5.38 10.4 7.1 10.7 9.99 6.52 9.86 4.16 7.52 9.42 8.72 7.99 5.86 8.38 5.91 9.17 6.08 10.3 9.51 2.16 6.53 3.89 6.03 10.6 8.69 10.9 6.82 6.8 7.1 10.8 8.8 7.77 9.59 11.8 5.47 4.01 5.64 10.7 7.13 9.85 7.72 7.33 9.72 7.96 9.82 8 5.15 11.4 8.44 7.15 9.38 7.86 8.28 10.8 10.8 7.86 7 6.38 7.19 9.1 10.3 11.2 0.52 8.77 8.33 5.92 11.3 9.64 9.47 8.78 8.5 3.06 8.08 8.61 8.74 4.65 12.1 10.7 9.17 4.23 5.02 7.9 9.1 10.5 5.17 5.92 9.28 11 5.1 1.2 0 3.56 9.9 9.7 10.7 11.8 12.4 7.53 6.44 4.8 11.6 4.99 2.07 7.46 8.3 10.7 2.29 4.8 6.1 9.14 1.66 4.41 4.58 9.39 7.84 4.5 2.9 10.2 10.4 7.23 7.21 4.01 11.2 9.77 10.5 7.8 13 9.72 11.6 11.5 4.01 1.2 2.42 10.1 7.99 8.7 7.73 7.82 10.3 7.83 6.18 9.17 7.01 3.76 8.72 8.54 9.05 14.3 7.01 9.32 6.93 4.95 11.2 10.3 7.09 7.83 6.79 3.93 8.81 9.78 8.91 6.32 4.12 6.36 7.46 10 8.12 9.56 7.68 12.7 2.9 7.78 7.25 7.13 6.52 8.81 9.06 6.01 9.54 0.52 10.1 9.94 3.8 6.92 4.68 7.91 8.83 8.16 9.18 7.73 7.57 9.01 8.57 9.33 8.2 5.69 8.1 7.63 10.2 9.77 8.63 7.98 8.98 8.38 9.08 10.4 9.2 9.4 10.9 9.27 9.87 10 9 9.58 9.19 8.08 7.73 9.69 7.76 10.8 8.61 8.22 7.1 11.3 8.23 10.1 9.83 5.85 9.93 6.44 10.6 7.38 10.9 8.46 10.8 8.84 8.26 8.36 9.88 8.18 8.53 8.77 9.36 7.82 9.86 9.61 9.11 9.89 9.07 8.61 9.32 8.26 11.2 5.8 8.13 8.91 5.96 8.1 10.3 8.32 8.35 7.73 10.7 6.8 10.8 2.52 8.44 10.2 8.27 7.44 9.98 10.2 3.56 8.54 9.15 6.76 8.8 6.36 8.32 7.03 8.82 9.19 8.74 6.84 6.29 10.6 7.66 0 5.06 3.61 9.54 8.57 9.58 3.39 0.9 11 10.1 9.7 4.75 10.3 5.47 8.15 8.21 0.9 7.62 7.39 9.42 9.18 8.19 6.51 9.82 10.1 8.09 6.73 8.11 9.56 9.37 8.35 9.45 8.86 10.7 10.6 8.49 8.31 4.44 9.16 4.01 7.68 8.91 9.96 13.1 10.7 6.41 11.9 1.2 10.3 10.6 8.12 9.81 2.52 1.84 8.03 8.22 9.14 7.61 13 10.1 8.46 2.59 7.98 2.82 4.7 11.7 6.79 8.92 6.46 8.99 9.51 7.68 9.16 8.58 9.8 9.6 3.61 10.6 3.76 5.25 9.81 9.44 9.82 11.2 9.8 10.5 10.1 10.2 6.63 7.33 7.68 2.16 8 9.03 3.06 9.44 11.8 9.92 7.89 6.76 9.92 11.1 6.58 9.33 6.07 10.7 8.63 9.93 9.24 3.66 10.6 9.14 7.85 8.24 10.1 8.81 9.25 9.37 7.43 9.29 11.3 4.01 4.47 10.1 6.57 5.06 3.76 8.42 4.01 5.02 3.39 10.2 2.72 5.3 11.4 8.61 9.1 7.39 3.27 9.75 8.35 10.6 12.3 11 5.08 12.4 11.3 9.5 11.2 9.59 10.7 13 7.65 9.51 9.04 9.32 8.75 8.6 7.13 8.68 8.55 10.3 6.6 4.16 4.12 11.2 10.1 8.98 5.44 11.1 2.63 6.58 9.41 10.2 8.28 10.9 10.9 11.8 7.28 4.68 10.4 5.3 9.22 9.76 9.32 5.92 10.4 6.71 6.65 6.67 6.01 6.83 9.83 10.1 9.81 6.99 9.06 8.05 9.14 5.41 10.6 9.57 5.15 8.96 6.47 10.4 9.13 10.1 10.4 8.76 11 11.8 10.8 9.69 8.25 12.8 13.6 10.1 12.6 11.8 12.2 12.9 12.7 10.9 10.1 5.04 10.5 10.1 7.86 11.2 7.51 7.87 10.5 9.44 8.45 10.8 11.8 3.45 7.38 10.5 7.84 9.65 10.2 6.66 13 7.09 10.3 9.51 10.1 6.17 7.85 3.2 2.01 13.7 7.41 6.18 7.46 10.7 7.66 10.9 11.6 7.63 10.5 11.3 10.1 8.55 9.84 11 10.7 9.39 10.5 9.31 11 5.84 9.07 6.41 9.26 2.98 8.08 8.11 9.52 9.03 7.01 1.2 0.9 12.4 9.49 10.3 12.1 9.4 12.4 12.1 8.88 11.4 8.96 5.84 9.17 11.5 8.92 10.6 8.84 5.49 10.3 6.28 10.5 6.59 2.41 5.62 5.24 7.45 5.08 8.37 7.38 11.5 6.38 8.74 8.54 5.77 5.27 9.09 10.1 10.9 10.3 10.4 5.56 5.75 2.63 4.63 10.7 9.68 3.27 11.1 10.2 5.87 9.23 7.31 7.53 6.48 6.29 9.62 1.66 12.9 10.8 10.8 5.61 8.16 7.45 10.8 9.8 7.58 9.73 10.4 0.52 1.45 8.59 10.8 11.7 5.47 10.3 9.93 9.42 5.28 11 7.78 7.46 8.64 9.69 3.56 11.2 3.39 7.98 10.3 8.79 8.74 8.46 8.5 7.99 9.47 9.18 11.1 10.2 10.3 4.68 2.29 8.62 11.7 10.5 11.2 10.6 9.83 10.3 11.4 11.9 11.6 11.5 10.1 10.3 9.21 9.89 10.6 11.7 11.2 10.7 10.1 9.83 11.1 2.41 11.8 8.6 11.1 7.53 10.2 9.92 9.1 5.22 11.6 8.58 6.44 9.65 8.9 8.1 11.5 8.9 9.2 11.1 11.1 10.6 8.44 6.96 12.2 9.62 9.45 9.58 9.01 8.03 8.4 7.3 10.7 12.3 9.28 6.48 12.2 9.41 10.7 2.29 2.73 6.62 11.3 2.98 2.29 9.99 9.91 11.4 3.71 6.94 9.49 8.31 7.59 7.86 10.2 9.71 9.92 5.36 3.45 6.8 4.92 6.63 9.58 8.16 8.46 7.92 10.7 8.73 7.48 3.27 9.81 6.89 7.6 2.52 5.58 5.38 2.61 3.27 7.98 6 8.59 10.6 6.7 11.1 8.41 9.57 10.8 7.29 2.01 9.13 10.7 10.7 6.87 8.92 9.89 7.13 8.33 8.86 8.46 4.35 6.41 9.14 11.2 12.2 7.41 2.73 6.73 8.27 6.86 9.01 9.83 2.98 10.2 10.4 10.4 1.45 9.47 10.2 9.08 6.86 7.58 6.99 7 10.8 9.11 8.42 9.09 8.78 8.33 11 5.1 3.76 2.41 11.2 8.92 7.48 5.64 4.41 9.45 10.1 9.25 3.33 4.38 3.89 4.73 2.01 5.65 12.1 9.05 8.76 9.14 10 8.29 2.41 6.44 9.13 9.7 6.13 1.45 5.94 7.07 9.31 7.74 9.38 10.4 10.7 9.99 8.49 7.91 10.4 9.57 8.53 11 7.75 10.3 5.15 9.12 11.2 9.76 9.09 13.8 10.2 8.69 8.34 4.09 10.8 5.22 9.94 9.48 10.3 7.81 4.32 7.74 7.85 11.3 10.3 8.37 4.77 7.59 8.32 8.62 11 9.2 7.48 10.1 10.9 7.34 8.66 2.73 7.64 8.72 7.07 8.97 10 8.59 8.06 8.43 6.31 7.72 9.05 8.71 9.92 8.48 5.81 5.35 7.91 4.01 9.82 7.65 12.5 8.8 6.55 6.93 12.3 3.97 6 10.4 8.34 10 13.6 4.38 9.58 9.4 8.45 5.33 9.95 10.4 5.24 11.8 9.3 7.81 9.73 9.38 9.99 1.45 9.18 10.9 10.7 9.87 10.3 5.35 8.56 10 9.77 6.02 10.9 7.59 8.86 5.57 8.25 10.3 10.1 11.6 10.4 9.92 9.7 5.51 10.8 5.69 7.08 8.48 8.25 8.8 6.94 2.16 10.5 7.83 9.59 10.3 9.29 8.18 3.56 8.82 10.5 8.2 8.77 8.32 8.75 10.2 1.2 8.27 4.73 7.87 6.07 6.66 11.9 11.1 8.59 8.57 11.3 3.33 10.5 10.3 7.68 10.2 10.7 8.15 1.66 10.5 10.8 11.2 9.82 8.16 6.7 4.97 11.1 7.43 10.7 9.01 1.2 5.29 10.2 9.32 11.1 8.78 10.9 11.7 8.78 9.46 9.22 10.1 11 6.35 9.78 7.47 8.1 7.92 11.4 5.93 9.68 7.77 1.45 8.87 11.1 10.8 10.2 7.31 8.08 7.98 9.62 5.91 9.56 6.11 9.64 8.56 9.79 8.45 9.74 10.1 7.89 9.15 9.21 9.12 9.53 9.04 9.8 6.6 7.71 7.38 8.94 9.87 9.15 8.69 7.66 12.1 8.26 10.5 13.9 8.02 8.44 11.1 10.1 8.31 6.55 9.95 3.66 5.02 0.9 5.79 11.2 9.89 7.92 4.19 7.15 4.82 11 8.68 8.8 9.88 8.83 7.97 7.96 4.16 10.6 3.33 8.92 9.76 10.9 6.64 7.05 7.76 7.72 9.56 8.44 8.43 12.2 11.3 6.36 7.73 9.69 4.32 3.56 6.97 8.48 1.45 8.63 5.87 7.75 9.09 8.85 7.44 6.24 8.35 10.8 5.85 8.79 9.48 7.67 8.55 11.2 11.3 8.68 8.15 8.99 10.6 9.1 6.13 8 7.19 8.83 8.6 10.9 8.43 9.52 7.31 11.6 8.33 10.2 7.43 10.4 9.54 10.9 10 11.2 0 8.07 12.4 8.75 9.62 4.44 8.84 7.57 6.18 8.28 5.17 3.85 6.75 6.27 3.06 5.61 3.06 8.47 8.01 10.7 1.66 9.5 11.2 9.87 9.96 9.36 5.65 7.31 7.99 8.81 10.7 8.5 11.4 7.19 8.08 11.6 8.64 8.17 11.1 8.83 6.77 8.45 8.54 8.48 4.55 10 6.74 1.2 10.3 9.84 7.18 9.65 9.16 9.49 10.7 7.78 7.48 3.61 11.3 9.67 4.7 7.75 9.94 7.57 10.7 11.2 11.2 7.13 9.41 9.59 9.68 6.78 10.6 9.71 9.77 9.87 8.62 3.51 9.18 10.4 8.43 9.23 9.06 7.76 10.4 11.6 11.1 9.08 6.29 10.4 13.7 7.88 5.66 10.2 8.96 1.84 9.52 9.38 10.2 8.8 10.3 5.3 9.64 10.9 7.91 8.85 9.09 6.36 12.3 11.1 5.06 4.63 8.32 7.82 11 4.88 10.1 1.2 0.52 7.51 8.58 8.92 7.25 3.33 5.33 7.19 9.11 7.81 6.55 7.35 9.76 10.6 9.16 12.1 7.63 5.65 7.07 10.7 8 9.84 9.4 11.9 9.8 9.42 10.9 3.71 10.5 8.82 10.2 10.8 10.6 8.41 10 7.52 11.4 8.8 1.2 11.2 9.14 8.33 10.4 6.51 9.02 10.9 9.2 4.55 12.7 10.6 9.42 8 4.09 11.8 14.3 0.9 9.54 7.23 10 7.52 10.1 2.98 6.7 1.45 2.52 7.86 5.42 8.9 11 12.1 8.78 0.9 12.3 8.45 9.64 8.03 5.25 8.44 9.9 2.82 4.74 1.68 9.27 8.54 8.18 11.2 7.25 9.95 11.1 10.5 9.62 11.2 11.2 6.89 8.04 10 5.64 9.66 7.37 8.18 0.9 8.3 0 11 8.14 10.4 4.73 8.87 9.44 10.9 3.06 5.35 5.59 7.38 8.81 6.69 9.86 10.5 6.71 10.9 8.96 6.17 7.67 11.8 8.54 9.44 5.7 8.33 8.43 10.3 6.62 10.6 10.4 1.45 8.01 9.34 6.19 10.8 9.73 10.9 10.3 9.41 10.3 9.88 6.8 5.84 5.8 9.55 1.45 11.9 10.5 3.39 12.1 8.12 8.6 4.97 9.05 8.66 11.8 8.18 9.68 9.4 9.02 7.08 8.43 10.6 10.9 11.9 4.58 9.68 5.04 8.97 8.67 8.15 7.54 11.1 12.8 10.4 5.13 12.1 5.97 6.48 9.56 8.05 9.15 8.99 8.62 8.61 8.71 4.55 9.43 8.41 6.95 9.13 9.26 7.1 8.49 9.83 11.2 5.63 9.54 10.4 10 3.39 9.88 8.15 8.1 5.6 4.92 8.11 8.58 7.71 7.2 9.71 10.3 10.9 11 7.98 9.92 9.62 2.29 9.15 11.5 11.6 6.44 8.87 7.08 8.72 8.62 10.4 10.9 10.7 4.8 4.29 11.9 10.9 9.65 8.56 7.78 12.2 8.75 9.92 9.94 9.74 10.4 10.8 11.1 10.2 9.84 8.84 9.32 8.98 10.1 8.9 8.2 7.35 9.7 10.8 5.81 8.8 9.5 3.56 9.25 8.53 7.48 11 11.3 11.3 10.6 8.57 10.2 11 10.5 11.2 10.2 6.09 8.28 10.4 10.5 10.6 7.99 9.61 6.64 10.5 7.15 8.39 8.96 11.7 8.08 11.1 9.71 7.03 9.23 12.2 9.65 8.4 9.22 12.5 10.9 3.39 12.9 11.8 7.82 2.16 10.8 9.07 13.4 12 9.3 8.11 7.21 9.58 6.57 11.6 11.8 10.5 6.97 11.8 7.76 8.52 9.04 5.93 8.06 2.16 10.5 5.22 10.5 11.2 7.25 4.38 12.1 10.4 7.31 10.8 10.7 8 12.2 10.8 8.91 8.92 10.4 9.79 10.3 6.53 6.48 10.8 6.17 9.93 10 10.8 9.07 11.1 9.52 8.57 10.4 10.5 11.3 9.52 10.4 10.2 9.24 11 8.35 11.8 12.7 9.85 4.38 11.5 10.7 9.02 9.88 12 7.89 10.1 9.8 11.9 8.7 11.4 10.3 10.3 11.4 10 9.37 11.2 12.2 6.31 11.5 9.59 10.1 9.94 10.2 9.94 10.6 11.8 6.91 6 8.32 10.9 9.83 9.78 12.6 10.4 2.41 9.53 5.6 10 7.5 9.97 9.97 9.18 8.32 11.3 6.05 8.35 7.42 14.7 4.48 5.75 9.87 10.5 9.66 10.1 9.69 6.91 10.2 9.72 9.53 11.3 6.69 10.6 11.3 7.94 8.99 10.4 6.42 12.6 8.15 8.22 8.49 11.7 7.45 10 10 13.4 7.95 7.32 8.18 8.73 9.87 11 8.42 11 8.29 13.2 8.37 8.33 8.87 9.73 7.93 8.25 10.7 9.53 7.68 10.9 11.9 12.1 10.7 10.9 10.6 10.6 8.19 10.7 9.69 13 8.1 11 11 9.02 11.2 9.88 8.41 11.5 11.2 9.1 12.1 10.9 4.75 10.7 11.6 4.7 10.8 10.8 13.1 12 10.3 10.2 0 11.3 8.33 9.68 11.2 8.16 9.98 9.83 10.7 10.5 9.34 10.2 11.3 8.8 10.8 8.86 11 7.03 9.6 4.09 10.3 10.8 9.51 6.22 9.45 5.39 8.39 10.5 9.6 10.2 6.24 9.09 8.83 10 8.76 9.14 12.5 7.54 10.2 9.51 9.25 9.19 7.46 6.88 4.29 10.2 9.01 10.5 9.74 11.1 11.5 7.29 9.17 6.88 10.8 11.5 10.8 10.7 10.1 10.7 8.89 10.7 11 11.7 10.8 11.1 10.8 9.69 9.32 9.06 12.4 9.11 9.49 8.38 11.1 9.63 11.8 6.35 10.2 10.5 9.82 7.89 10.8 12.2 3.06 11.4 9.41 7.1 11.9 10.1 10.7 10.5 7.48 9.92 12.4 10.5 11.7 8.09 7.97 9.09 10.4 5.19 7.98 10.1 12.9 11.4 6.87 11.7 10.4 10.1 9.76 9.08 9.64 11.9 9.4 9.81 11.1 11.1 10.7 4.29 9.85 8.1 8.45 8.51 12.2 11.2 3.89 7.81 7.42 11.3 9.22 8.37 13 8.99 7.99 10.3 4.44 7.59 5.08 6.02 9.85 11.1 7.6 10.4 11.6 3.76 4.58 12.6 9.15 11.2 10.9 3.99 11.9 8.95 8.48 7.17 9.84 12.7 8.8 9 10.5 8.75 12.5 10.1 10.8 12.7 9.32 11.6 2.41 10.9 9.42 9.06
+TCGA-2Z-A9JS-01 6.22 6.8 11.7 9.58 7.06 7.96 2.29 3.93 6.92 3.87 6.65 8.46 3.14 1.85 3.08 8.97 10 9.55 7.92 8.97 8.45 4.29 8.97 5.34 10.4 8.71 4.72 9.64 5.21 7.59 4.97 6.7 5.99 5.99 3.08 1.22 3.7 5.82 1.97 5.63 7.27 3.9 6.86 1.85 6.59 5.59 1.85 5.85 10.8 8.42 3.81 7.9 8.28 11.8 5.85 1.56 7.81 4.72 6.5 4.93 8.05 7.83 8.59 7.4 3.74 4.29 3.9 8.74 10.8 6.12 5.38 8.68 2.55 0 2.09 3.96 6.03 6.89 4.97 2.29 3.03 2.19 3.51 5.35 6.74 4.08 5.42 7.68 7.99 5.4 9.48 6.5 6.97 6.94 5.5 4.63 2.97 5.91 6.31 0 4.87 6.71 3.7 7.08 2.77 4.19 9.25 8.22 8.99 6.81 0 0 9.58 5.34 7.86 1.56 3.03 5.91 3.56 4.84 5.81 3.65 3.14 4.7 0.72 7.18 3.03 2.78 0.41 16.1 3.62 4.51 5.39 6.93 3.34 2.47 4.98 4.59 4.26 7.96 7.47 9.56 0.98 3.24 7.5 11.5 0 11 2.38 3.08 4.54 3.87 5.99 8.98 10.5 1.97 3.93 2.75 8.86 2.55 7.84 8.92 1 8.57 10.3 6.66 5.94 4.29 4.05 6.09 10.2 10.4 6.39 6.47 5.72 4.24 6.73 3.25 8.55 4.8 6.41 8.37 6.33 5.38 5.77 3.64 5.8 2.19 9.51 7.52 9.25 7.73 4.59 6.22 4.9 5.19 5.54 7.38 8.21 9.83 12.5 10.5 8.18 10.6 6.05 9.1 8.6 9.45 10.6 8.25 4.36 9.82 10.4 9.77 9.17 10.3 9.82 10.3 6.19 10.8 8.89 8.7 11.6 10.5 7.78 9.06 6.11 10.2 8.34 12.4 11.7 3.47 9.08 11.8 8.36 11 9.3 10.5 10.1 2.84 7.11 3.47 11.3 11.3 11.7 12.5 11.5 11.9 0.72 12.1 6.45 0.98 4.08 10.2 9.44 13.7 10.6 11.7 7.79 11.7 9.19 10.5 5.2 10.1 9.79 10.2 4.82 11 11.6 12 8.29 8.72 9.63 9.79 11.5 9.11 0 12.9 11.9 10.2 12.4 10.4 10.7 7.49 10.6 10.9 11 10.2 10.4 10.7 5.43 6.36 10.2 5.49 10.9 9.62 6.68 11.8 8.83 8.9 14.1 12.4 13.4 10 10.9 11.8 1.71 10.1 8.4 8.23 12.5 8.71 4.77 8.67 6.9 10.8 9.86 6.34 8.79 7.89 10.1 10.9 8.8 7.29 7.03 9.56 10.4 9.58 9.68 9.31 9.51 7.99 11.6 7.21 8.98 12.2 8.72 7.96 7.47 7.36 10.9 10.1 9.51 10.9 8.61 13.4 11.1 8.85 12 8.86 9.82 0.99 10.3 0.41 4.31 8.78 8.06 10.2 1.2 7.37 4.02 10.9 11.2 9.69 9.57 8.1 9.24 9.61 9.34 4.19 4.33 10.9 9.88 12.4 11.2 7.52 8.51 11.1 7.05 9.39 8.03 9.29 10 8.74 10.1 10.6 5.48 8.58 8.75 9.45 7.93 11.6 13.6 8.56 5.8 10.4 11 10.2 5.7 1.56 5.69 10.5 8.97 9.21 10.4 11.2 9.13 9.35 10.1 4.66 8.3 8.94 10.1 9.75 8.2 11.2 8.9 9.09 7.65 5.31 9.34 6.73 7.07 11.4 5.61 11.2 11.3 10.9 2.86 10.8 10.5 12.2 6.64 9.38 5.91 6.92 8.75 8.28 7.8 10.7 8.63 11.6 10.7 3.9 11.7 2.29 6.36 6.76 0.41 9.97 4.33 8.9 8.13 11.5 9.31 7.99 4.19 10 9.15 3.63 4.47 10.2 11.2 5.04 10.8 9.46 3.19 2.29 7.92 8.48 5.88 8.03 8.41 6.48 10.7 9.52 9.4 11 12.2 2.91 13.5 9.92 0.79 9.81 11.7 9.39 12.9 9.04 8.73 3.47 3.24 11.3 8.9 6.84 12.9 8.32 6.46 8.89 10.9 12.2 11 13.9 9.71 11.2 9.18 8.66 5.51 3.81 10.3 14.4 0 6.07 8.21 10.9 8.94 10.1 11.1 13 12.4 10.5 5.49 11.7 9.99 11.4 10.8 10.6 8.49 9.82 10.5 5.86 10.3 10.1 10 7.05 8.83 10.7 7.6 7.75 10.1 10.3 10.7 10.3 5.65 10.6 12.5 0.41 9.62 10.8 9.88 9.92 9.84 9.78 10.6 9.9 8.17 7.78 7.61 4.53 10.9 8.47 8.06 9.84 10.9 1.39 9.64 5.96 9.12 10.7 10.7 11.2 10.4 12 10.1 8.73 8.76 10.8 10.5 10.9 9.43 0.98 12.5 10 11.5 10.4 12.3 11.7 13 11 8.23 11.1 10 9 0.72 8.07 8.12 6.62 8.78 11.2 10.9 8.38 8.91 10.7 10.4 8.72 2.29 7.83 11.1 9.67 8.28 13.4 9.78 10.3 9.93 12 10.3 11.5 10.7 12 1.2 11.3 9.49 8.15 7.8 9.1 4.89 3.59 9.49 9.69 11.5 10.5 11.1 8.27 11.3 10.3 12.8 3.14 11.4 9.44 11.2 9.35 8.55 7.97 10.8 8.66 4.65 8.52 8.47 2.55 0.72 11 10.5 6.69 10.4 14 9.62 7.02 9.63 10.9 11.7 11.2 11.4 12.4 5.54 10.2 3.38 9.85 10.5 10.1 0.72 9.04 8.64 9.75 11.4 10.2 8.05 13 0 6.77 10.4 7.21 9.82 8.85 5.82 9.94 9.93 10.3 10.8 10.7 7.4 10.9 7.63 9.24 10.9 7.31 11.2 9.44 12.9 4.53 6.35 8.69 4.55 8.35 12 8.97 12.5 14.7 8.42 6.74 5.43 11.7 2.78 8.93 5.27 8.54 4.14 6.65 10 8.39 3.51 9.68 10.4 4.47 9.32 11.4 13.5 10.4 8.55 11.6 11.1 8.92 4.75 1.2 3.55 10.5 2.78 8.17 7.82 8.46 10.9 8.68 10.7 3.24 2.84 4.05 9.04 10.2 9.33 4.24 10.4 11.4 6.63 0.98 6.71 11.8 10.2 4.47 5.82 8.28 3.34 9.93 9.5 8.4 2.54 7.99 13.5 3.19 11.4 12.4 12.7 11.2 12.2 8.34 11.2 9.25 5.02 5.49 10.4 5.5 2.55 0 3.49 10.3 10.3 10.3 0.72 8.52 8.93 5.9 6.07 12.9 15.6 5.45 12.5 11.1 9.15 0 10 8.52 10.3 10.4 9.11 11.8 12 11.2 10.2 7.93 9.59 11.8 9.33 7.7 9.04 9.44 10.5 8.14 11.4 8.18 9.02 6.24 5.22 9.39 6.59 6.17 7.16 1.97 13.1 9.02 4.24 0.41 8.53 9.17 10.7 8.67 7.54 7.63 8.26 0 6.8 6.65 8.87 6.6 9.96 8.78 8.34 0.41 9.79 3.34 10.6 9.19 3.7 11.9 9.54 9.11 3.24 10.7 11.9 3.19 6.37 6.95 7.35 7.46 9.8 11.1 9.47 10.6 5.85 4.84 7.24 0.72 7.41 0 5.56 8.38 9.19 2.38 1.71 11.4 11.5 10.2 11.3 4.05 2.47 10.2 8.69 10.6 6.95 5.44 9.51 9.7 9.23 11.4 9.14 9.52 9.29 11.1 8.61 0 5.39 8.21 11.4 9.3 12.2 0 10.2 9.75 11.4 11.3 11.1 7.8 6.35 11.4 11 10.4 2.91 12 2.09 11.8 3.63 11.3 11.1 7.2 2.47 8.72 11.3 12.1 10.5 8.89 9.74 11.5 9.73 11.1 9.98 10.8 8.69 10.9 13.2 9.98 11.9 12.2 12.1 5.86 11 8.34 7.98 8.48 10 10.9 12.4 12.9 10.6 12.8 10.7 7.85 10.3 11.4 8.89 9.77 11.9 6.87 11.3 9.66 9.91 11.3 3.14 0.98 12.1 6.52 10.9 7.14 9.76 9.68 10.4 5.02 7.56 7.65 0.57 2.47 8.17 9.19 0.41 12.2 10 10.1 8.4 9.76 8.01 11 9.98 9.89 8.1 2.84 5.1 0.98 5.52 12.5 10.7 9.15 13.1 4.21 4.53 9.14 7.52 10.1 8.52 8.64 0.41 8.71 11.2 9.42 11.1 10.2 10.7 9.78 11.8 9.84 10.9 11.1 7.99 2.7 7.79 5.32 8.95 7.12 8.81 3.08 11.8 10.5 8.6 8.73 9.39 4.77 12.2 11.2 12.3 8.73 7.3 11.7 9.78 8.32 8.76 10.1 7.61 9.16 8.96 9.03 9.57 11.8 7.85 8.99 8.86 8.35 5.16 9.77 7.16 12.2 7.98 7.94 5.38 10.5 9.35 9.72 8.75 5.92 9.45 4.53 8.74 8.71 8.63 3.55 7.46 1.2 8.84 7.23 11.3 3.63 9.51 8.8 9 11.5 10.6 10 2.63 12.3 6.01 7.83 8.41 6.78 8.67 9.99 6.82 7.07 3.19 7.82 7.77 9.47 9.22 6.27 11.6 10 8.04 8.89 9.04 7.8 13.3 9.87 7 5.2 5.39 10.8 7.97 2.47 11 9.21 4.24 8.84 7.72 12.3 5.27 9.39 5.88 4.28 8.12 9.7 10.9 0 9.16 10.2 7.39 8.13 10.2 9.88 11.1 11 6.73 7.33 9.51 8.57 8.57 10.4 5.27 10.8 10.1 9.3 9.95 8.48 4.95 9.17 6.54 10.2 8.92 12.1 6.01 8.36 9.07 6.42 8.9 11 7.55 8.59 9.08 9.8 7.59 7.25 9.99 10.5 8.31 7.46 9.44 8.76 5.32 8.97 4.38 6.91 8.7 2.63 9.73 7.79 9.75 4.08 3.03 10.8 11.1 8.99 9.11 9.72 10.5 7.19 9.47 2.47 11.8 7.56 8.83 4.55 9.92 7.91 10.4 9.98 8.93 6.07 0.41 4.89 10.1 11.4 8.2 8.45 9.21 5.98 10.7 8.23 10.7 9.31 9.48 5.8 8.51 10.4 12.6 9.22 8.05 7.44 9.92 8.78 7.9 9.67 10.4 9.88 8.87 8.08 9.36 8.61 8.87 12.6 8.66 1.39 9.4 3.47 11.1 5.53 7.33 12 11.9 1.97 11.1 7.15 4.82 11.1 5.22 0 10.6 8.95 1.85 11.1 12.2 10 9.2 7.81 9.5 9.61 11.4 9.81 7.3 8.43 7.73 6.2 12.2 10.8 1.97 11.8 7.33 11.6 9.31 11.6 10.4 12.6 11.4 3.68 7.85 8.35 0 10.9 10.8 11.7 10.1 9.48 11.1 7.51 10 1.97 9.68 7.78 6.89 2.19 8.45 7.96 8.59 10.3 1.72 6.93 8.08 8.75 4.08 5.38 3.51 11.7 4.59 8.43 3.73 9.97 7.66 1.97 4.51 10.6 7.17 5.21 3.63 9.7 8.72 4 3.24 10.1 5.52 5.67 0 0.72 7.01 2.78 8.39 7 9.29 7.35 5.27 0.41 9.51 8.61 0.72 9.77 8.02 8.08 8.9 8.57 5.19 10.8 11 9.45 8.57 5.71 10.3 7.21 8.72 8.94 4.11 9.04 7.41 7.65 9.15 11.6 1.39 8.01 8.81 5.67 3.99 10.2 8.33 4.4 8.8 10.3 11.2 11.2 9.24 9.04 0.72 10.8 0.98 9.13 1.56 5.75 11.9 7.56 9.46 8.31 10.4 9.8 9.31 7.18 11.6 9.59 10.8 4.99 4.61 9.87 10.3 7.9 8.21 3.19 4.95 7.36 12.7 7.98 12.9 9.13 5.26 5.47 8.57 10.4 10 12.9 5.6 0 1.97 9.26 6.41 4.57 7.31 7.59 9.13 8.85 10.1 7.72 9.86 7.83 7.18 6.07 2.97 0 7.84 11.4 6.34 8.7 9.07 4.24 9.14 4.33 0.72 7.64 9.3 6.3 0.41 6.28 10.3 6.33 6.83 8.28 3.51 1.71 7.39 1.71 9.61 8.95 7.21 9.72 7.36 10.5 7.61 10.2 7.74 10.1 10.7 4.19 5.74 3.03 8.58 7.74 9.77 9.6 8.16 10.1 8.78 7.92 7.78 3.99 0.72 6.32 0 6.85 6.44 8.86 2.29 4.68 4.39 7.29 1.71 0.72 8.44 9.58 4.16 9.24 9.08 0.98 5.37 5.93 4.79 10.1 9.5 3.47 8.98 7.55 2.63 7.93 9.38 8.84 11.1 4.81 8.73 9.9 8.11 3.93 8.51 6.18 3.51 4.08 11.6 9.23 5.8 11.2 3.47 4.16 6.35 13 10.4 9.6 2.47 0 7.5 9.26 8.86 6.64 8.89 13.1 2.63 7.81 10.5 8.45 11.7 9.57 6.38 7.9 0.41 6.64 4.13 8.59 4.61 8.24 9.16 6.56 9.04 9.41 11.1 4.87 5.82 1.71 11.4 9.13 9.48 7.69 8.53 3.77 8.56 9.17 2.63 9.33 9.63 17.1 12.6 5.64 2.63 7.78 7.98 7.25 0 10.3 11.4 8.55 5.67 9.23 3.34 7.87 9.8 10.6 12.6 8.45 10.4 7.33 6.29 6.45 7.77 10.6 7.69 6.99 6.14 8.16 8.78 10.1 4.68 13.1 11.5 3.93 3.87 6.33 11.3 9.73 7.95 9.58 2.78 6.84 13.5 0 7.46 9.77 3.74 7.02 9.38 9.36 3.55 7.19 10.2 0.41 1.2 1.71 8.32 7.34 7.37 8.82 6.71 6.87 8.93 9.13 6.82 7.15 9.68 6.04 5.99 7.57 9.05 9.48 4.49 6.5 8.45 4.74 10.2 6.82 8.62 8.67 1.97 9.7 9.69 8.25 0 8.51 6.64 7.81 8.61 2.19 7.37 6.51 5.07 3.47 4.51 9.87 5.99 0 9.25 6.74 6.89 8.84 9.46 7.91 7.81 3.07 10 0.41 6.55 8.87 8.71 3.63 5.48 7.51 10.3 4.77 3.43 7.98 10.3 4.21 3.7 10.2 8.85 8.7 11.2 10.3 4.31 9.69 9.31 9.13 11.7 10.7 3.81 0.72 10.4 9.53 8.37 8.17 2.47 8.18 9.55 9.54 5.18 7.88 4.02 6.74 0.98 8.31 10.7 10.6 10.2 9.18 5.39 11 7.12 10.8 10.2 0.41 10.3 9.32 4.26 7.28 12.8 8.81 10.4 6.35 8.65 0.41 8.22 7.5 1.71 7.97 4.77 6.71 10.4 4.49 10.2 8.94 3.96 5.66 6.56 8.48 5.74 8.47 6.8 6.9 8.57 2.84 9.4 3.9 4.16 8.47 5.09 3.38 2.38 6.74 6.15 6.89 10.2 9.58 8.61 1.85 9.97 11.4 3.08 10.7 9.18 6.04 7.83 6.28 8.64 7.33 0.72 7.69 8.26 10.5 7.59 3.24 11.9 6.11 5.05 5.16 7.55 8.27 12.6 6.11 6.96 9.34 7.48 6.35 8.11 2.91 6.38 0.41 9.2 0.72 11.3 0 5.34 7.79 9.1 0 9.2 4.99 4.82 10.4 10.1 7.09 7.86 6.31 2.52 3.7 9.43 5.21 5.95 1.39 9.25 11.3 9.05 8.01 8.17 13.1 10.1 2.7 1.71 3.87 8.22 6.96 11.1 0.98 7.81 9.02 8.97 6.42 5.69 12.1 0 9.03 2.84 5.96 10.7 7.29 8.95 0.41 9.21 9.12 7.13 8.53 13.8 10.5 8.51 7.12 4.77 9.16 4.36 10.1 2.97 10.2 9.95 5.45 6.93 8.29 6.89 12.1 9.66 7.8 8.9 9.2 7.54 6.29 7.17 12.2 8.72 11.7 9.82 6.51 6.92 9.34 7.12 7.81 7.82 8.53 12.3 7.75 9.04 7.97 6.1 8.09 8.9 8.93 8.16 9.59 8.07 2.55 6.96 8.33 7.85 6.66 6.36 1.71 7.05 11.9 3.47 4.4 7.32 4.36 12.7 9.9 10.3 5.72 8.44 1.71 5.69 9.34 8.89 3.77 8.8 2.7 0.72 9.81 6.89 6.19 9.08 6.06 4.61 7.35 7.39 4.02 8.82 7.73 9.79 7.64 8.33 6.77 3.87 5.3 8.39 7.56 6 1.39 8.62 5.59 11.2 12.1 8.38 2.38 8.06 11.2 0 7.47 11.5 6.36 12 9.14 8.65 0.72 9.65 7.82 2.29 10.1 1.97 0.41 7.86 7.94 7.35 7.5 8.26 8.47 0.72 1.98 7.54 12.2 6.66 8.26 0.41 7.3 4.13 7.44 7.62 10.7 13.1 6.37 9.01 9.89 8.61 11.1 0.72 7.88 4.42 6.59 7.77 2.38 6.27 7.07 1.85 6.08 2.91 2.84 10.4 8.82 11.7 9.49 0.41 1.97 8.56 9.83 11.4 1.39 8.14 11 9.87 6.26 8.08 7.65 8.07 7.41 6.55 9.89 6.77 8.48 10.9 9.11 6.47 6.49 10.1 9.94 7.41 10.9 6 11 7.18 4.83 12.1 11.4 9.71 9.46 2.12 7.11 9.47 9.87 0.72 9.3 7.04 10.5 0.41 10.9 6.17 4.16 8.97 11.5 1.56 7.78 0 11.7 8.4 4.72 11.7 4.11 4.8 13.7 12.7 12.6 9.5 9.89 5.33 8.02 8.92 8.08 5.9 3.51 7.55 10.9 9.08 9.07 9.9 7.42 8.56 4.59 4.85 8.61 9.82 0.41 0.98 11.1 6.98 1.2 11.8 6.59 0 6.57 8.18 6.58 5.72 6.9 0 5.37 11.2 8.03 3.55 4.45 9.59 8.49 7.8 5.44 11.2 8.91 1.71 10.4 10.7 8.53 8.62 8.98 7.13 0.72 7.19 5.17 7.96 7.57 11.4 12 5.83 3.03 2.47 10.1 11.1 6.76 10.2 11 6.38 9.46 4.37 9.47 8.79 9.08 5.96 9.78 10.2 4.47 6.8 6.41 11.1 2.63 5.99 6.69 10.4 7.53 1.2 9.11 8.34 4.87 1.39 10.4 3.26 4.99 6.73 8.62 8.39 7.82 4.65 5.52 8.85 7.46 8.57 11.4 8.89 8.43 7.19 1.2 10.3 10.7 4.61 10.4 10.3 6.42 7.04 8.06 4.33 5.22 6.78 12.4 4.9 10.3 2.84 10.2 2.47 7.91 15.3 1.71 0.41 10.7 9.74 7.37 2.47 5.04 3.59 2.78 4.26 9.03 5.74 11.7 2.91 9.05 11.5 8.11 11.9 8.1 10.4 10.3 8 5.74 9.76 10.7 7.14 8.05 8.26 9.41 5.59 5.78 8.06 7.76 5.77 5.81 8.09 7.21 7.88 9.19 5.8 7.74 1.56 0 8.22 6.85 10.5 9.76 7.82 7.97 10.6 5.38 2.91 7.73 8.51 4.57 2.97 11.5 8.25 8.69 8.94 8.23 1.85 4.8 3.9 4.75 9.85 9.77 0.41 5.51 6.91 5.57 9.38 4.57 9.68 8.07 10.7 7.87 8.26 11.6 3.08 4.08 6.11 12.5 2.63 7.11 10.6 8.31 2.63 9.66 7.4 10.3 3.08 5.97 7.64 9 8.74 10.8 7.4 6.87 3.55 5.65 3.38 6.37 4.45 5.43 9.13 2.91 0.72 10.9 8.93 7.22 8.19 4.16 4.21 10.8 14.3 2.97 4.61 11 1.97 4.79 1.97 10.1 0.41 6.54 6.43 6.67 7.24 4.21 10.4 8.71 8.7 4.16 2.55 6.44 7.13 1.97 11 8.8 6.39 0.98 4.87 0 7.27 7.11 1.2 1.2 9.18 4.26 4.93 4.77 1.56 10.6 0 8.4 5.16 4.24 9.92 4.48 9.09 7.29 9.15 10.2 6.47 13 1.71 7.22 8.42 9.13 10.7 9.37 9 0 6.77 8.53 2.97 7.82 6.36 3.9 6.67 11.2 6.52 4.93 8.74 1.97 7.6 2.47 6.98 7.67 7.75 2.29 9.59 6.55 10.3 1.71 10.9 7.71 6.65 7.37 7.51 6.78 1.39 0 9.07 3.19 8.74 6.79 5.78 8.55 5.51 6.39 8.08 8.33 8.2 9.5 4.49 7.49 3.7 7.08 8.98 6.09 3.77 7.58 6.82 5.54 9.16 8.63 3.43 6.59 7.04 6.21 2.55 6.58 8.63 1.85 8.43 9.37 9.11 7.03 7.7 8.63 6.58 8.82 8.55 5.4 1.56 11.7 2.19 0.98 2.09 9.25 11.1 8.29 2.78 10.5 6.33 9.16 9.1 6.84 12.4 9.81 1.66 9.29 6.08 4.45 4.93 7.81 0.98 4.11 0.72 7.45 8.56 7.65 2.47 5.07 9.24 8.67 6.14 2.97 13.7 11.4 2.7 9.5 8.46 6.38 12.2 10.7 10.3 1.56 2.19 12.7 0.41 7.94 9.13 0 0.41 3.9 4.02 5.79 2.09 8.86 8.52 1.97 7.78 8.91 7.55 6.79 9.52 2.29 5.69 2.84 8.04 6.86 5.97 7.86 4.24 9.62 3.14 8.76 3.74 7.21 4.02 9.07 7.74 7.74 4.87 6.51 8.08 4.08 4.96 7.9 5.53 14.3 8.48 15.9 6.75 2.19 0 7.43 10.3 10.9 5.34 7.6 10.4 4.02 8.24 8.5 10.2 11.3 4.68 2.7 5.69 4.11 5.19 6.44 6.98 2.63 5.06 9.3 6.34 12.9 4.02 6.44 3.19 6.62 7.19 5.98 7.28 3.47 9.1 7.19 9.25 10.3 1.71 5.79 6.02 0 7.15 2.09 8.2 2.29 10.6 9.28 7.95 8.1 6.8 9.03 8.69 9.94 8.38 0 3.43 5.3 7.63 5.11 11.8 8.23 5.37 7.31 13.6 6.59 8.45 7.78 12 6.55 7.66 8.41 6.27 8.33 9.65 10.5 7.31 5.44 7.85 5.06 7.98 5.12 6.78 5.15 1.56 10.7 8.28 4.57 5.42 7.49 7.47 1.56 8.32 11.5 7.68 8.47 8.53 11.4 7.18 8.07 11.5 7.52 6.56 12.2 10.7 9.53 2.78 8.51 7.97 6.05 4.72 6.76 11.2 7.22 5.22 5.84 6.86 1.2 10.9 6.8 10.1 7.95 11.6 4.49 5.72 5.92 0.41 6.92 1.2 6.63 6.91 8.55 7.91 8.41 8.95 4.84 0.41 9.02 11.1 0.41 9.97 11.2 2.36 7.81 8.95 5.16 5.79 6.43 8.29 8.91 10.3 3.24 1.56 9.73 9.34 8.55 7.16 10.8 0.72 5.65 10.2 3.47 3.7 7.75 1.56 0 9.96 5.71 3.14 8.59 9.95 8.08 3.08 5.8 2.47 12.8 6.6 9.6 8.94 8.56 7.87 0.41 10.4 4.7 5.71 2.05 8.3 10.7 6.31 9.71 2.19 6.13 4.24 8.38 7.82 5.97 6.55 5.64 5.9 5.41 6.5 7.4 5.13 9.93 8.31 8.75 3.55 4.53 4.68 0.98 6.52 9 5.81 11.1 5.22 7.31 7.88 4.63 7.33 6.83 1.2 2.97 4.21 0.41 6.71 5.34 8.46 4.42 9.87 8.16 8.77 4.57 9.43 0.98 0.41 10.5 6.14 5.06 9.98 3.67 3.14 11.8 10.8 1.2 12.4 4.63 2.78 3.43 2.29 11.2 8.93 2.7 1.85 8.82 9.49 0 3.47 12.4 8.56 9.06 4.24 8.65 6.68 6.97 6.69 7.47 8.76 11.1 11.7 4.49 7.57 1.71 6.92 11.9 4.49 4.21 8.27 9.82 6.77 8.14 5.76 4.29 10.9 0 7.52 9.89 0.41 3.96 9.7 3.7 5.61 8.41 4.7 7.38 11.4 11.1 4.51 11 8.58 5.06 9.48 6.37 11.1 4.75 2.97 1.71 0.92 4.24 0 10.3 4.95 6.09 11.5 7.76 9.74 7.01 7.4 7.13 11.2 7.23 7.48 4.65 8.96 6.55 0 13.7 8.1 7.78 8.12 7.2 7.23 3.99 6.77 6.36 4.63 8.45 8.59 5.74 0.98 7.79 11.5 5.6 7.06 6.66 5.5 8.26 0 5.05 5.89 10.7 8.75 8.91 1.2 7.39 9.89 1.39 4.96 5.95 8.43 8.26 11.7 12 5.57 10.8 0.41 12.5 0.98 10.7 12.3 5.49 9.07 12.9 1.2 10.2 3.51 7.1 4.68 2.91 9.82 7.3 8.56 13.6 12.7 5.24 4.24 6.73 1.2 9.35 3.24 10.9 8.1 12.5 13.9 1.97 1.39 11.5 2.29 4.21 9.82 0 10.2 0.72 6.51 12.8 11.8 8.09 9.21 8.85 9.73 1.71 7.81 8.68 11.1 10.9 7.48 11.3 8.64 6.46 7.41 9.04 9.79 8.65 1.39 9.49 13.4 9.69 4.65 1.56 10.1 1.85 7.58 4.65 8.95 2.38 7.7 6.77 7.13 7.31 7.82 3.74 9.26 8.34 2.47 0.41 5.36 5.31 1.71 1.56 9.14 8.89 3.93 9.91 7.31 4.19 1.97 8.22 8.82 10.3 6.57 6.52 7.49 4.99 2.55 0.41 3.93 8.81 0 0.41 7.91 9.22 6.22 9.28 4.92 1.39 10.7 2.55 9.29 9.32 5.7 5.41 9.34 7.93 6.6 8.88 7.74 9.9 4.19 10.8 5.72 0 5.6 5.02 6.66 11.3 8.71 9.41 2.29 9.57 7.98 8.94 9.69 11.6 7.71 8.83 8.2 9.58 13.3 9.87 12 7.1 5.72 5.37 4.29 9.69 10.4 12.2 10.9 5.27 9.72 8.3 11.9 0.41 0.41 3.96 0.41 8.48 7.54 8.61 12.1 3.96 9.39 9.12 5.75 6.68 0.41 6.73 6.68 6.95 9.97 3.96 2.7 10.6 13.3 10 2.09 10.7 12 12.7 9.59 6.82 9.48 8.31 11.2 7.32 7.83 7.93 8.48 9.96 10.6 10.5 10.3 9.26 12.4 8.91 11.4 6.42 0.72 9.07 4.33 0.41 9.74 12.6 4.57 0.98 11.6 9.57 11.1 12.4 11.7 9.85 12.2 9.1 9.49 9.05 7.32 6.22 8.76 6.86 9.74 4.21 12.2 4.24 8.2 9.31 7 1.97 7.4 1.71 9.82 9.67 9.82 10.9 10.7 9.43 6.5 4.11 4.55 8.2 10.2 7.55 8.15 8.99 4.51 4.63 11.7 2.09 10.2 12.7 11.6 5.98 7.86 7.84 10 6.33 7.45 4.72 7.3 3.51 12.1 10.9 9.48 11.5 16.1 2.38 12.1 9.05 9.94 6.32 8.02 9.34 11.3 12.3 14 15.3 10.2 10.3 5.73 7.73 6.64 9.45 12 9.3 5.05 6.59 12.2 9.64 11.9 9.93 10.4 12.1 6.73 6.77 5.85 11.8 3.14 12 5.08 8.5 0.98 10.9 5.25 6.02 9.1 5.06 7.4 10 10.1 9.7 9.33 10.1 9.12 10.2 3.59 8.44 10.8 9.13 1.3 9.56 10.1 7.16 4.83 11.1 6.31 4.21 11.8 6.11 3.9 7.1 2.21 9.34 5.44 6.22 10.2 10.8 8.95 13.4 6.28 9.5 10.3 5.49 7.88 11 12.3 8.68 12.3 8.31 7.9 11.9 12.9 13.7 11.8 12.4 0.41 8.14 0 10.5 7.01 8.04 10.7 1.2 0.41 1.97 8.83 0 9.92 7.5 1.71 3.77 11.2 7.41 6.46 8.23 0.72 9.02 4.92 7.51 7.83 12.9 8.87 0.41 8.87 11.2 11.2 8.87 0 7.48 10.3 9.38 6.11 7.91 11.1 0.72 2.29 8.08 4.87 10.2 9.42 8.67 9.14 8.32 0.41 8.79 0.41 8.14 3.38 7.77 0.98 2.19 2.38 8.79 7.17 5.29 6.19 9.49 4.92 6.45 6.89 9.22 7.7 1.64 6.95 7.15 7.91 8.32 8.3 9.67 8.73 4.13 7.71 8.98 7.75 10.1 10.2 8.33 8.34 6.27 9.65 6.58 10.6 6.47 10.8 9.91 7 8.82 9.12 9.09 7.39 9.68 8.5 3.63 9.12 8.54 8.98 7.12 9.45 3.34 3.63 7.14 7.07 10.6 8.38 2.84 8.91 9.36 3.24 0.72 12.2 7.83 1.97 5.64 4.93 10.8 8.9 9.69 9.17 7.68 10.1 9.06 7.24 5.85 7.82 8.64 5.29 9.92 8.61 1.56 15.7 5.41 5.91 2.38 0.72 1.39 10.3 7.66 8.53 8.48 11.1 8.2 10.2 10.2 7.24 7.71 13.5 9.56 2.91 0.98 6.25 7.94 7.18 5.42 7.59 8.72 8.87 10.1 10.8 6.21 10.8 8.12 10.1 6.22 7.54 10.4 13.1 11 7.35 10.7 10.8 13.4 10 1.71 1.39 9.66 3.51 8.1 3.81 10.4 2.97 5.06 8.65 11.1 9.11 10.5 8.18 10.2 8.16 8.53 7.69 10.2 8.96 0.41 7.41 9.13 11.1 11.6 10.1 9.75 0.98 8.22 13.2 4.53 1.71 11.9 9.31 9.68 7.74 11.5 0 8.97 9.83 8.53 10.3 7.67 9.66 5.72 10.3 11.3 7.07 10.5 10.8 4.68 11.6 10.2 4.36 10.7 1.71 11.1 10.6 11.2 10.5 9.05 9.54 10.9 8.74 3.59 6.49 5.57 8.72 2.29 9.58 12.9 5.06 5.96 6.58 11.4 2.97 11.9 10.2 10.7 4.84 8.81 10.9 3.59 5.44 10.3 7.66 10.4 7.19 1.39 7.92 8.62 10.6 2.09 7.04 8.76 3.51 8.74 6.91 13.8 6.01 7.2 9.31 0.72 0.41 12.6 9.58 4.75 7.91 9.81 6.47 6.04 5.7 10.8 9.96 10.7 9.72 9 11.2 2.09 9.12 7.9 10.1 6.29 9.33 7.55 10.3 7.59 5.31 0.72 10.8 9.45 14.1 2.09 3.08 8.34 4.57 3.55 7.69 5.16 7.42 12.1 4.08 7.88 9.22 8.26 10.8 5.38 6.25 6.16 8.22 6.81 8.4 7.57 8.05 8.76 8.47 1.39 7.51 9.73 8.33 10.8 8.9 8.06 10.4 3.9 3.63 7.87 8.75 7.42 1.56 4.85 3.08 7.22 6.39 9.07 1.39 8.89 9.38 11.3 3.19 5.08 0 2.78 2.38 4.11 3.7 6.76 7.64 7.31 0 1.56 5.32 7.2 8.61 11.2 4.65 7.64 6.51 11.5 5.8 11.5 6.05 6.63 7.8 10.2 2.84 11.7 8.53 7.31 4.84 11.5 7.97 6.95 4.16 10 9.33 8.86 6.67 8.05 7.81 9.13 6.94 6.87 6.64 5.16 7.29 9.47 4.89 2.29 2.78 6.82 6.45 8.91 6.94 6.14 5.81 0.98 11.6 1.71 8.29 10.1 3.43 8.33 7.05 8.79 3.45 9.93 7.62 4.85 12.3 7.68 0.41 9.32 9.31 8.26 9.34 5.51 9.18 3.19 7.82 3.9 8.4 5.68 10.4 9.41 11.5 10.3 9.65 6.23 2.84 11.4 9.33 10.2 7.69 6.96 8.59 10 3.55 9.3 7.3 4.42 10.2 7.84 5.88 10.6 10.3 8.82 2.91 2.91 3.55 0.98 1.71 10.8 9.96 2.84 1.85 5.37 4.84 4.72 12.5 6.45 4.65 8.84 10.6 8.94 9.32 5.33 11 9.83 8.4 12.4 11.7 6.04 8.37 7.86 10.2 0.98 0.41 3.34 5.75 7.94 8.17 6.58 5.15 15.5 11.8 9.13 0.98 9.52 10.9 6.63 10.7 6.94 15.7 10.4 7.04 10.8 9.16 9.7 8.84 11.9 9.55 6.44 0.41 11.6 1.39 7.01 10.7 9.14 6.95 11.6 3.34 11.7 9.48 10.3 9.04 9.22 10.8 10.9 10.1 2.29 8.47 10.4 7.6 8.89 12.8 10.2 11.5 10.3 7.24 5.69 9.17 9.71 8.92 10.6 7.76 9.34 7.95 10.2 7.65 10.6 8.4 9.97 10.3 6.28 11.2 9.43 10.2 1.2 9.74 8.14 10.3 10.6 7.78 11.8 9.53 11.1 9.41 8.45 9.83 9.91 10.3 10.8 9.4 8.35 10.5 13.3 9.11 7.66 9.98 8.36 9.26 6.5 9.73 5.73 9.89 9.65 0.72 9.29 10.3 5.48 4.72 8.28 8.38 9.64 9.59 9.96 10.8 9.7 10.9 9.84 9.5 8.83 11.9 4.65 5.02 10.8 0.98 8.89 11.9 9.62 10.1 8.66 5.68 10.4 9.86 11.6 10.7 10.7 10.6 7.79 9.27 7.94 8.27 11.2 9.85 9.9 7.54 11.5 10.9 9.35 0 7.66 10.7 11.6 0 3.74 6.74 8.74 7.05 10.6 5.54 4.63 11.2 10.2 10.2 5.49 10 11.5 0 1.71 0 10.2 11 10.1 8.62 7.17 10.1 4.49 10.2 10.7 8.45 11.2 7.48 8.45 8.98 10.1 0.72 10.2 8.84 11 10.1 10.1 8.91 12 6.89 12.5 10.7 9.23 9.07 2.91 2.55 10.6 8.87 10.1 8.66 10.5 9.47 9.45 9.4 9.64 6.16 11 10.3 9.92 12 9.66 5.7 8.92 10.3 12 5.98 10.8 11.5 10.6 10.9 3.38 10.3 4.08 9.71 11.6 10.4 10.4 11 9.84 7.24 9.63 9.9 10.5 6.76 8.13 10.2 9.56 10.3 9.55 8.33 8.37 8.77 9.63 10.7 7.32 9.47 9.79 10.6 6.63 10.4 9.71 9.15 10.8 11.1 8.76 9.27 10.3 8.96 12.6 9.4 2.78 8.63 1.56 10.6 11.3 1.98 10.2 10.8 10.1 4.13 9.03 9.97 10.2 7.34 8.61 2.19 9.31 10.6 10.9 3.81 9.8 6.58 9.72 10.9 7.18 9.4 10.4 10.3 9.79 8.72 8.88 13.2 10.6 10.4 9.65 10 8.7 3.51 8.09 6.27 0.72 10.8 10.1 10.7 9.59 9.54 8.7 9.84 13.7 9.38 10 11.2 10 10.8 9.89 9.28 10.8 10.3 9.64 12.9 9.76 10.2 9.08 9.22 11.2 8.71 10.7 9.33 7.99 9.17 10.9 6.8 9.98 10.5 10.7 9.04 10.9 10.6 12.9 11.5 11.4 10.1 13.4 8.1 10.1 12.1 10.5 10 10.9 10.1 7.58 10.3 12.5 2.97 10.6 8.58 2.7 7.89 9.04 9.58 8.76 11.2 10.7 12 10.8 1.56 9.69 9.75 3.08 9.39 9.21 9.66 13.3 9.35 7.73 9.33 6.65 9.58 12.6 8.86 7.2 8.92 10.2 5.02 2.38 8.78 5.45 7.42 10.7 11.3 10.2 11.3 9.43 6.18 10.8 10.7 11.9 2.84 8.36 9.38 11.4 9.5 9.38 10.1 10.4 9.38 9.4 9.73 9.44 12 12.5 10.9 8.76 9.65 5.08 10.5 10.1 10.8 10.6 10.5 8.87 12.3 10.3 2.38 4.51 9.79 1.39 6.9 12.7 8.09 11 7.88 9.82 11.2 9.96 11.9 10.5 7.69 10.4 8.94 9.92 11.1 9.29 3.84 8.65 10 8.04 10.2 10.3 8.02 9.26 10.8 10.9 10.5 0.98 10.3 9.39 10.2 11.2 9.06 9.99 10.1 13.5 10.5 9.82 10.1 10.8 9.67 10.2 8.36 8.08 10.5 10.7 6.69 9.65 11.9 11.8 9.29 9.7 1.85 11.7 10.7 10.6 11.9 12.2 8.24 9.38 9.25 10.3 10.8 9.88 11 8.04 11.4 12.6 8.95 11.9 10.1 11.1 10.3 9.49 8.99 9.51 7.89 9.88 9.46 11.5 9.7 10 10.6 11.7 11.8 9.63 10.9 10 8.81 10.7 11.4 9.79 10.5 5.06 8.36 11.3 10.7 7.94 7.76 8.5 10.2 11.5 9.92 4.79 10.6 8.58 9.09 10.6 4.9 0.98 6.13 9.41 2.29 9.69 12.3 8.2 11 9.09 7.53 7.1 10.2 5.22 8.24 5.37 10.8 11.4 10.2 7.5 9.57 12.1 12.4 6.8 8.47 6.96 3.74 4.16 8.88 7.15 11.6 7.86 10.9 9.34 12.3 10.1 12.3 9.47 9.65 9.49 10.6 11.3 11.3 10.8 10 10.3 8.02 9.91 7 10.2 7.29 0 7.64 12.5 5.95 6.13 9.95 0.41 10.5 9.54 8.64 8.82 11.4 11.3 9.73 9.69 11.2 8.98 9.51 9.82 9.88 8.65 0.98 0.72 13.5 8.8 11 13.4 10.2 9.24 7.61 9.51 9.59 11.9 8.84 8.97 6.13 10.3 8.77 3.77 3.51 8.69 4.66 11 0.98 8.69 1.2 3.29 8.73 10.3 12.3 9.41 3.55 8.54 10.4 9.63 8.69 9.3 11.8 10.8 9.6 9.55 5.54 3.25 11.1 0.72 7.92 11.4 0.41 5.75 11.8 0.98 11.1 9.66 8.79 0.98 11.8 8.69 9.52 11 11.7 6.03 6.64 9.2 9.3 5.08 8.83 8.5 9.39 10.3 15 6.07 11.4 3.19 10.9 11.7 9.16 10.8 9.87 2.29 7.31 10.2 9.35 9.78 3.34 1.2 2.19 4.02 11 7.28 10.1 10.2 8.24 10.1 9.71 8.38 4.57 10.8 10.2 12.4 9.98 8.22 7.18 8.45 14.6 4.47 9.43 10.3 9.24 9.99 9.99 10 7.75 7.2 9.76 3.38 9.96 8.01 11.4 9.18 11.7 12 10.5 8.9 10.5 9.8 10.3 7.85 9.38 8.49 0.98 13.2 6.44 2.29 12.2 9.74 8.71 11.3 10.3 11.9 11.1 1.2 3.14 7.81 11.2 7.71 4.26 8.83 9.67 9 4.38 7.11 9.6 8.04 8.32 7.67 11.8 9.18 3.38 7.19 2.38 3.06 8.35 2.97 5.59 1.39 10 2.55 6.2 0.41 6.74 7.39 6.44 6.12 7.75 8.64 1.85 0.41 3.29 10.7 8.77 3.87 8.42 2.19 4.21 14.6 8.43 11.1 0 14.8 11.2 11 12.7 5.09 4.77 6.33 8.29 0.41 9.88 11.7 6.98 0.87 8.97 8.04 3.29 10.2 1.2 4.57 5.85 11 9.7 0.72 5.88 8.08 9.19 7.18 9.54 4.77 10.5 7.41 10.2 8.5 5.39 6.47 10.5 6.97 4.24 10.7 2.09 8.26 8.87 8.81 5.66 0.41 10.4 10.3 8.7 8.36 8.26 6.64 6.55 9.98 6.84 6.98 10.3 4.65 1.2 7.66 0.41 0.41 10.8 8.72 3.08 5.58 2.78 0.41 8.84 8.33 5.33 8.9 10 8.93 7.57 4.84 12.3 0.72 6.74 13.3 7.42 9.57 9.32 9.61 9 7.96 7.26 6.81 4.42 1.2 7.73 9.43 9.09 1.97 3.9 1.85 8.1 0.98 7.95 5.69 7.03 6.3 6.09 11 6.41 8.17 3.19 0.41 12.7 7.77 6.84 4.11 7.24 4.87 8.35 9.91 7.82 2.38 2.78 0.98 7.28 8.44 1.56 9.77 6.22 6.69 5.93 9.99 9.55 2.38 3.67 3.84 8.37 5.92 7.17 7.91 0.41 6.31 4.72 3.08 0.41 2.7 8.3 0.72 5.77 5.52 1.56 0.72 5.17 4.57 7.37 2.55 2.84 7.99 5.29 7.91 5.36 6.14 4.31 1.97 8.6 6.15 0.98 3.47 0.72 10.1 9.88 3.9 6.55 5.39 9.79 9.39 8.89 8.79 2.63 9.78 11.1 9.52 6.72 9.62 5.3 5.8 5.61 4.11 8.85 10.9 11.2 4.59 10 8.21 10.4 7.58 10.9 10.7 9.09 8.65 3.7 0.41 10.7 10.9 8.31 8.41 9.9 2.97 10.1 10.8 9.97 3.87 5.27 10.6 10.3 8.72 7.88 0.98 12.3 11.2 8.78 10.7 10.8 3.31 6.44 11.1 9.3 2.7 10.4 4.21 11.3 9 11.8 8.78 8.11 9 11.5 9.3 10.6 5.05 8.92 6.52 8.67 9.54 9.93 10.2 9.61 0 8.86 4.02 9.27 9.93 12.8 9.58 12.3 11 9.55 7.88 12.5 8.97 10.6 8.67 9.2 5.2 7.73 10.8 13 6.69 6.87 8.07 7.27 10.6 8.61 6.55 10.3 8.35 9.59 9.67 6.58 8.89 8.43 3.93 9.65 8.23 9.55 11.4 9.28 7.2 10.3 10.2 8.98 1.2 8.88 10.8 11.8 0 9.74 8.43 9.64 4.79 5.09 3.74 10.5 4.51 5.01 12.8 10.2 2.29 9.09 1.71 1.85 4.08 9.25 10.3 6.8 14.1 9.1 9.09 10.2 9.2 8.48 10.4 10 10.3 10.3 8.41 9.47 9.91 9.97 8.5 7.73 10.4 7.74 10.7 10 5.99 7.13 9.4 10.5 9.87 15.8 11.2 9.39 8.47 7.58 8.32 9.02 9.73 9.97 10.5 8.36 8.63 5.72 9.02 8.23 9.39 7.22 11.5 9.46 10.5 7.72 9.21 10.6 11.7 8.17 10.6 9.37 10.6 9.4 12.4 6.15 11.4 8.68 9.48 10.5 8.87 9.23 12.6 11.8 9.29 8.76 9.3 3.43 9.33 10.6 9.2 2.47 6.83 6.19 8.74 8.81 10.9 7.88 8.89 8.8 8.2 7.78 1.2 9.69 2.55 8.46 7.47 7.02 5.75 4.33 8.38 10.2 11.1 10.8 10.9 10.3 8.62 9.65 10.4 11.7 10.1 12 5.34 5.25 8.11 10.7 10.5 9.31 10.2 8.6 8.19 7.75 10.5 7.79 11.2 11.5 3.9 6.69 9.97 12.1 8.31 10.2 8.8 11.1 8.65 9.53 9.82 10.9 12.3 12.2 5.29 10.7 9.08 9.29 7.32 6.49 9.14 3.63 9.53 10.4 5.04 7.78 10.5 11.2 6.22 9.92 9.44 11.1 10.6 11.1 9.47 7.52 12 8.66 8.46 10.4 5.66 10.8 4.26 10.2 4.93 9.05 5.58 8.52 11.6 0 10.6 7.84 9.42 9.48 8.47 2.09 9.49 2.38 5.54 7.32 8.4 8.04 11.5 8.28 6.6 8.42 7.24 7.91 0.72 4.57 0.41 6.51 9.69 9.43 8.18 4.99 10.6 9.5 2.47 7.53 10 8.44 5.42 7.54 6.13 6.65 10.3 10.3 8.64 10.1 9.55 4.02 13.3 10.6 10.2 3.14 10.9 0.72 9.44 8.21 9.46 6.8 11.8 9.83 8.27 1.44 9.57 10.9 9.55 9.82 8.84 1.2 6.9 7.87 3.55 10.7 9.92 12.9 9.92 10.2 10.5 4.19 7.22 5.92 10.2 9.46 9.63 10.2 7.41 5.65 12.2 8.94 7.34 8.61 9.66 10.1 8.69 8.41 9.04 9.68 9.07 10.5 5.19 2.19 0.46 10.4 3.03 2.77 7.16 8.68 1.85 11.6 7.04 7.51 8.99 2.38 10.2 5.24 8.18 0 11.1 11.9 10.1 4.53 7.26 4 6.54 6.92 6.87 11.5 5.05 6.78 6.33 0 9.56 3.63 10.6 11.8 7.36 2.19 8.36 9.39 0.72 10.2 9.98 12.3 8.4 4.02 6.04 0 12.6 9.26 5.17 3.29 9.31 0.72 6.43 9.39 9.35 10.5 4.74 8.51 10.5 7.97 6.34 8.27 9.67 12.7 9.69 11.2 9.44 9.92 11.3 9.68 0.72 0.72 9.11 0.41 8.93 5.15 11.4 11.8 10.8 6.84 11 9.08 9.04 11.2 3.51 9.55 1.56 4.87 8.81 7.15 8.77 10.9 12.1 7.11 5.19 7.17 9.93 9.84 12.4 5.84 4.16 11.2 4.77 8.59 5.15 9.08 7.98 5.33 9.18 6.52 10.8 1.39 7.95 5.43 5.26 10.1 8.6 5.54 0.41 10 8.23 9.78 12 9.5 8.75 7.11 6.64 7.51 9.01 8.1 10.3 1.71 6.87 11.6 0.72 7.52 3.84 5.19 7.96 11.3 7.48 8.97 8.83 7.79 4.4 0 8.46 10.2 6.12 7.21 8.93 9.6 8.09 9.45 0.72 6.66 9.76 8.35 10.3 9.04 12.2 9.41 5.34 5.34 11.7 6.84 1.2 5.73 0.72 2.09 4.57 8.39 11.9 1.97 7.93 10.3 1.56 10.6 7.18 9.87 9.74 8.96 4.55 2.19 8.87 11.9 11.2 9.18 9.56 8.05 9.08 10.3 10.2 9.82 8.11 4.84 8.09 9.34 9.44 0.41 5.85 2.7 5.02 5.42 10 8.34 8.15 9.51 5.53 9.98 2.7 2.09 7.72 9.17 8.83 5.8 8.49 5.67 9 11.6 5.19 8.86 11.4 0.72 10.8 9.56 11 9.87 1.71 11.7 11 6.53 10.9 13.4 9.41 9.46 10.7 9.38 10.7 7.95 8.58 8.74 9.47 9 2.63 8.86 7.88 10 2.97 7.31 6.87 10.9 12.8 9.89 9.12 11.1 7.59 9.77 11 4.29 12.3 9.11 2.38 9.89 9.21 13.7 10.5 9.29 11.8 1.2 10.9 8.89 11.1 7.81 9.09 10.4 5.86 10.5 11.8 11 7.67 1.97 10.9 14.3 1.85 6.73 12.6 12.4 3.3 3.29 2.84 10.5 8.82 0.72 8.23 11.4 3.43 10.4 5.02 2.97 13.7 7.11 7.6 9.71 11.1 11 10.8 12.2 11.4 12.4 9.73 2.97 9.36 6.13 1.2 11.6 9.52 9.7 13.2 3.38 7.09 4.13 8.12 9.56 6.8 1.56 3.47 2.84 6.08 4.49 4.36 3.67 8.54 6.71 0.98 7.47 1.97 7.13 9.72 8.13 5.25 8.52 4.19 4.24 1.85 2.55 9.29 8.79 6.54 14.6 10.3 3.34 6.96 2.91 9.16 3.84 7.57 8.37 8.71 8.11 7.48 4.74 6.37 8.01 5.14 2.97 3.24 7.4 2.63 9.32 4.84 6.75 3.38 11.3 10 8.86 3.77 5.48 4.36 8.5 2.55 4.33 0 10.5 7.59 6.33 5.22 9.23 5.78 8.7 5.31 1.2 3.3 1.85 10.4 3.7 5.12 0.72 8.93 1.56 6.34 1.56 5.47 9.13 10.8 7.18 5.44 4.03 6.93 4.24 6.57 4.84 8.09 2.78 0.41 4.9 10.9 4.53 5.09 1.71 5.94 8.76 4.7 10 6.87 7.94 7.81 4.85 2.7 8.06 8.44 5.01 3.19 8.86 9.47 9.24 1.56 3.67 10.6 9.27 0.41 4.85 7.89 2.97 6.5 5.58 9.25 6.51 10.4 7.46 3.59 4.05 2.47 8.83 8.4 0.41 2.7 5.81 10.2 0 0.41 8.86 13 9.62 9.04 5.81 8.84 0.41 0 0 1.71 10 3.77 3.87 9.27 1.71 9.51 3.99 7.29 1.97 5.82 6.73 8.45 8.29 9.12 3.84 0.98 4.61 4.31 5.97 2.47 3.74 12.6 4.21 7.45 7.59 6.75 8.2 0.41 4.57 6.27 1.85 3.14 10.3 2.55 4.96 7.89 8.05 5.58 8.25 9.67 1.39 1.39 0.72 8.85 0.72 4.89 0.41 7.96 9.23 9.55 4.24 5.96 0 4.77 6.05 8.71 3.38 2.34 9.39 5.8 3.38 4.49 7.49 1.85 4.8 0 8.97 1.56 3.59 3.38 7.63 3.59 7.58 5.24 10.8 6.74 1.2 2.63 0.41 5.19 0 7.49 10.7 7.68 4.79 9.64 2.09 8.64 3.03 3.19 7.67 6.77 6.32 8.21 8.12 7.95 0 5.89 9.87 9.3 2.55 7.15 7.65 3.51 9.58 5.54 6.55 11.1 8.92 7.74 9.34 3.03 2.29 4.08 3.43 11.2 2.78 8.53 7.69 2.7 6.29 5.9 9.17 10.5 3.55 9.15 1.2 9.27 2.09 3.14 5.88 6.06 7.86 6.72 9.46 1.39 7.74 8.52 5.41 6.15 7.88 6.54 8.03 6.96 0.72 5.59 3.08 9.21 4.54 5.41 8.93 2.78 4.26 7.74 0.98 6.68 7.46 7.7 4.02 7.89 7.72 0.72 5.09 5.94 5.92 0.98 7.29 7.97 2.7 11.6 6.22 9.45 5.99 3.87 5.29 8.91 1.2 7.6 9.55 9.84 3.77 5.94 8.12 5.82 0.74 4.33 8.69 9.27 8.46 3.77 6.61 7.99 8.98 7.59 0 1.39 6.21 4.75 9.33 1.56 6.06 5.7 7.24 6.02 3.19 7.02 8.69 10.9 11.7 10.6 6.62 12.7 1.56 12.5 11.9 10.5 8.67 12.2 10.9 10.6 3.24 2.75 8.8 8.87 9.51 9.57 8.8 11.3 13.3 14.3 8.11 8.66 11 0 8.11 6.39 10.1 2.7 10.7 7.98 10.8 11.2 10.3 10 9.06 9 8.93 6.45 5.94 9.43 9.41 10.3 11.5 8.67 0.98 7.11 9.63 8.2 12.3 9.49 7.04 11.1 11.7 2.19 3.19 8.32 2.19 6.66 2.19 10.4 4.16 9.67 11.8 6.43 11.9 7.86 10.2 11.4 11.6 9.62 9.12 10.7 9.56 8.1 9.79 10.1 7.99 8.43 9.66 6.77 11.1 10.1 8.88 10.2 5.99 11 8.8 7.53 7.93 8.74 8.27 8.89 9.93 9.1 9.77 10.4 10.1 10.8 10 9.54 8.74 9.63 2.19 8.39 7.24 8.95 2.7 8.7 10.4 9.98 10.3 0.72 1.39 8.13 2.47 12.1 3.14 4.21 7.3 5.45 0.41 4.11 9.25 12.2 6.89 4.33 13.2 1.2 11.2 12.7 10.4 10.5 12.1 11.5 10.1 12.4 8.89 8.19 8.51 9.05 9 1.2 13.2 11.1 2.29 9.15 8.99 6.96 9.27 8.65 8.29 8.73 10.6 8.65 9.01 7.92 7.52 9.23 12.1 13.2 10.6 9.18 0 11.6 10.3 6.85 10.7 9.37 1.39 10.1 7.93 1.97 11.1 9.02 0 8.47 9.5 5.47 10.1 4.26 10.6 1.39 3.99 8.27 8.86 10.3 2.84 11.5 10 9.69 2.38 7.81 9.52 7.93 7.99 0 1.39 10.4 11.3 9.6 8.21 9.67 10.4 8.46 10 10.8 9.65 11.2 7.35 10.8 1.56 10.1 8.54 12 7.12 6.48 9.73 9.59 0.98 9.14 1.39 9.59 8.84 7.71 9.81 8.28 9.51 10.3 8.48 7.78 11.7 8.7 9.3 12.7 9.91 8.22 4.7 7.56 7.74 0.72 9.75 9.7 7.09 6.62 8.13 9.01 9.12 8.38 9.57 8.92 0.98 10.9 9.71 12.6 9.41 9.33 11.2 0.98 9.98 6.8 10.9 9.55 8.33 8.06 9.97 10.5 11 9.83 11.1 8.48 7.98 8.77 8.93 0 8.58 4.29 11.2 6.22 5.78 9.45 7.59 12.2 7.83 1.02 11.1 1.56 10.8 8.92 11.9 3.7 5.01 8.32 2.29 3.55 3.74 11.7 8.6 12.3 0.41 1.2 0 12.9 5.51 0 8.45 10.4 8.46 13.5 11.5 13.8 10.4 10.1 6.06 12.9 12 9.89 1.71 10.3 0.41 0.72 8.65 6.52 12.1 7.22 7.27 1.56 1.85 2.19 2.47 8.9 0.41 11.2 7.06 8.29 10.1 11 10.3 10.4 6.44 12 13.1 13.3 5.62 7.18 12 11.7 13 7.66 12.5 11.1 11.2 4.13 10.5 5.76 8.6 4.59 3.14 9.75 5.77 9.92 7.89 2.09 9.66 6.37 8.48 9.56 8.77 11.8 9.41 10.2 12.1 5.16 9.76 4.24 12 10.3 10.2 12 8.83 10.8 9.54 11.2 10.9 10.3 12.2 5.12 8.32 16.1 15.6 15.2 9.36 9.7 13.1 9.56 3.16 10.8 10.4 2.47 9.34 4.59 9.43 2.19 11.8 11.2 10.1 5.17 5.02 9.38 12.6 10.7 9.62 13.2 6.2 6.01 3.9 8.38 10.1 5.19 9.1 11.7 9.51 11.1 11.9 12 10.8 9.63 10.9 10.3 9.57 5.09 11.7 10.9 7.3 8.83 2.7 9.42 9.68 10.1 9.41 4.07 7.95 1.39 8.15 5.64 9.15 0 9.25 12.1 8.1 13.8 11.4 12.9 11.5 11.7 12.2 10.8 11.3 13.2 0.72 11.8 13.2 0.41 6.77 5.61 9.66 9.26 10.4 8.21 8.85 6.01 9.55 10.6 10.1 4.68 4.85 0.41 6.92 7.41 8.17 6.1 6.8 7.25 8.82 7.3 8.54 10.5 8.58 7.47 9.49 7.88 9.28 3.7 9.91 3.24 7.06 11.8 1.2 8.79 10.3 0 3.34 1.71 9.14 1.97 7.74 9.29 11 9.75 10.3 11.8 1.39 3.47 11.8 10.9 11.3 11.3 12.3 10.2 0 7.77 5.74 1.2 10.8 10.6 7.76 8.08 8.12 10.7 11.3 13 10.8 6.94 9.31 11 14 10.3 6.87 6.68 14.3 12.4 13.8 8.94 4.4 14.3 11.2 14.2 12.8 6.2 11 11.1 10.1 12.5 5.58 4.33 14.8 11.6 7.51 2.47 0 1.71 2.29 2.55 0.41 3.03 8.09 12.7 7.12 11.1 11.7 3.03 3.87 5.22 1.72 2.21 9.36 9.74 3.24 3.55 0 9.11 7.53 2.09 7.38 5.73 0.41 2.38 3.17 7.5 8.47 9.08 2.38 5.32 4.29 7.42 4.36 0.72 0 6.78 5.83 7.94 11.9 0 9.24 7.89 3.67 9.47 9.36 9.18 9.23 10.2 9.56 7.53 9.25 6.6 6.91 6.07 0 0.72 8 2.47 7.52 8.41 7.36 2.7 3.74 6.65 7.13 3.14 4.89 4.55 4.74 6.4 9.17 5.56 0.72 13.1 9.44 7.89 4.45 12 8.24 5.09 2.09 4.38 2.84 11.7 4.19 2.55 3.29 5.76 10.9 12.2 7.4 0 0 2.09 7.63 3.03 7.8 4.08 0.41 7.09 2.63 11.1 5.15 9.85 8.66 4.45 2.4 0.41 6.64 6.1 7.75 3.93 0.41 6.52 3.24 4.49 6.44 5.25 8.29 5.01 7.31 9.24 2.7 0.99 0.98 8.75 4.51 9.31 10.8 10.6 11.5 3.81 9.99 0.41 4.26 4.66 8.78 11.1 3.43 8.79 11.4 2.09 9.02 0 9.3 6.56 13.1 9.2 0.72 11.9 5.93 5.67 6.33 0.72 6.96 2.63 8.51 0.72 9.5 0.72 5.31 8.37 3.58 8.85 9.26 3.08 10.8 2.84 2.47 4.08 2.47 8.41 9.22 7.18 5.89 0 5.8 8.3 7.01 1.85 7.6 0.41 2.97 2.78 1.39 1.71 11.6 6.51 9.5 3.29 5.21 8.07 9.34 0.41 6.73 10.7 2.7 10.8 2.91 5.49 2.47 12.7 4.31 2.09 7.99 2.55 2.7 0.98 6.85 2.78 7.39 0 0.98 3.81 9.28 3.24 10 3.14 3.29 11 12.4 5.74 5.06 6.97 0 10.6 6.82 6.57 6.61 12.3 11.5 4.84 6.53 5.74 8.82 8.41 7.91 8.23 12 9.13 1.56 10.9 5.48 5.86 3.08 10.2 11.9 2.63 7.48 13.8 1.39 6.89 10 10.2 0 11.9 7.42 0.72 9.41 14.4 6.19 11.2 7.71 3.38 0.41 7.98 3.89 7.94 3.93 9.48 8.46 16.1 7.43 8.47 8.46 9.79 6.48 11.3 7.62 3.08 9.22 0.59 11.9 8.92 6.61 5.15 1.97 4.65 6.32 1.97 6.47 3.9 0.98 5.66 10.6 10.7 9.93 1.71 5.09 10.2 7.15 3.34 1.97 3.03 6.38 5.96 5.19 11.3 2.09 1.97 8.26 7.1 9.5 5.29 2.63 6.46 1.97 2.7 13.8 1.56 2.19 1.97 7.27 9.89 2.09 7.65 2.78 0.72 3.47 6.82 11.5 3.64 6.71 11.4 10.1 7.75 6.23 8.7 3.14 6.25 2.38 6.77 1.2 9.38 10.6 11.4 12.3 4.92 11.5 8.4 12.4 8.79 11.1 7.46 5.39 8.23 7.36 3.96 4.33 6.56 2.63 4.24 9.16 2.19 8.58 8.95 8.51 10.6 11 8.39 6.01 3.55 9.83 0.41 11.4 8.02 9.58 11.1 11.7 6.74 10 8.78 3.19 9.26 10.2 3.08 10 8.2 7.81 9.79 6.23 7.33 4.19 8.25 9.86 4.72 14.3 6.45 9.04 8.44 10.2 3.63 2.84 8.11 7.18 7.68 10.9 8.26 13.2 11.6 10.2 10.9 10.8 11.9 10.4 10.7 8.17 14.8 0 1.2 2.09 13.7 5.8 3.93 11.3 10.3 9.9 1.71 8.51 8.03 9.01 10.8 11.1 7.39 12.7 7.76 8.98 11.4 7.61 11.6 9.96 10.8 13.5 7.87 6.19 12.5 8.52 11.7 0.41 2.91 6.29 2.78 1.39 1.2 0.92 10.3 6.33 9.77 7.82 5.5 9.98 5.2 6.56 5.77 0 2.47 7.16 3.9 7.63 7.01 6.96 7.15 8.64 9.35 2.29 3.93 7.63 7.39 9.18 2.38 8.37 1.39 5.04 11.3 7.03 3.7 6.7 6.68 5.26 7.11 1.71 7.74 2.63 7.85 9.48 13.4 6.77 4.74 6.31 10.3 5.15 6.76 6.66 4.02 6.71 4.65 6.77 9.43 9.39 5.89 1.56 7.94 1.39 1.39 7.52 6.92 5.77 5.54 5.9 7.51 1.56 6.38 0 4.36 0.72 5.31 10.1 2.7 7.56 6.05 1.85 1.97 10.6 6.71 8.84 4.95 7.31 14.7 4.01 0.41 6.97 5.16 8.42 5.51 2.55 9.56 0.41 2.19 6.16 7.86 4.99 1.71 8.97 12.3 4.84 5.82 12 13.2 7.85 7.07 9.78 5.68 4.16 11.5 4.66 1.85 1.2 3.63 6.79 0 5.4 8.3 9.25 6.47 1.56 5.8 11.6 7.35 9.57 3.47 6.64 2.09 6.93 8.42 7.54 0.72 11.7 12.3 3.81 11.4 0.23 0.72 2.19 11.7 0.98 0 7.58 0.41 5.54 12.4 4.74 1.97 0.72 0.98 3.38 0 10.2 6.06 4.92 9.55 10.2 12 9.58 9.33 7.21 10 5.99 10.6 11.2 10.2 2.09 0.98 14.8 9.43 4.13 9.32 7.75 3.43 13.4 7.12 4.49 9.64 0 5.3 10.4 4.57 8.72 2.53 9.74 2.7 1.2 4.9 9.37 2.19 8.17 14 8.45 9.26 8.25 4.29 7.28 4.63 6.75 8.34 9.14 0 11 1.97 4.29 0.72 4.55 0 5.3 3.55 5.49 5.91 10.5 3.31 1.39 9.01 1.81 7.81 9.84 6.54 1.2 12.7 6.37 9.68 4.47 3.7 8.76 5.85 3.81 9.82 8.19 6.98 8.28 6.03 3.59 7.43 7.79 5.6 4.08 9.55 10.7 6.96 3.34 12.5 2.29 6.9 7.81 8.42 8.32 7.75 6.33 7.19 5.16 1.97 4.47 9.21 9.13 0 5.8 4.51 9.49 2.19 8.44 7.66 4.11 6.11 5.66 8.25 9.56 0.98 8.78 1.39 7.06 10.2 4.08 8.05 7.97 8.41 1.2 9.52 12.2 8.44 1.56 8.18 0.41 3.59 4.19 5.27 5.08 9.44 0.72 6.32 6.14 9.94 7.09 8.88 7.68 7.61 2.85 12.2 8.02 5.76 10.6 3.9 1.97 3.08 3.77 8.61 7.95 1.56 6.83 3.9 8.92 4.65 3.96 0 4.29 6.78 1.97 7.75 5.13 7.77 10.4 2.29 0.72 2.7 1.85 7.69 0.41 3.38 3.19 6.47 0 5.89 10.1 8.52 8.17 8.18 9.46 10.6 6.31 13.7 0.72 15.2 1.97 12.6 4.8 8.42 6.85 13.4 13 5.67 0.72 12.5 12.1 11.7 1.56 4.31 3.9 11 9.77 13.5 4.66 0 8.54 10.6 8.16 4.92 12.5 9.09 6.63 0.41 13.7 11.1 13.7 5.68 8.42 2.47 8.8 10.2 11.2 10.8 8.6 11.5 14.6 13 2.29 9.47 8.83 10.4 3.29 9.83 10.3 9.58 0.84 8.8 8.91 12.2 10.3 9.85 7.38 11.3 4.16 12.3 6.54 8.96 11.5 0.98 8.69 8.96 7.71 10.1 8.44 9.34 8.11 7.79 3.27 11.5 3.84 8.11 7.51 9.51 11.3 1.71 7.02 3.84 10.9 0 7.91 3.96 11.1 11.2 12.8 7.98 8.6 7.25 7.53 0 0.98 7.53 9.88 6.06 5.94 8.73 9.26 1.97 9.71 9.12 1.25 8.58 6.34 0 6.06 3.34 4.26 8.02 8.21 7.05 5.65 5.63 1.56 6.62 4.19 11.4 8.57 0.72 1.56 10.7 5.19 5.15 0.72 6.89 9.28 7.56 2.97 4.55 0.41 5.87 0.41 7 0.98 3.34 5.05 11.7 1.71 8.17 5.86 5.94 6.17 7.29 2.84 3.63 5.29 3.95 10.1 6.1 7.1 8.7 0.72 10.3 0.41 6.33 8.27 6.63 8.56 10 4.21 6.95 8.52 9.58 2.89 0.72 10.5 3.87 0 2.03 0.98 5.95 9.34 5.61 3.96 8.56 8.08 1.39 3.74 6.67 11 7.63 2.47 4.61 2.63 10.8 1.39 2.78 7.98 2.63 6.41 10.5 5.8 8.24 0 8.06 9.96 12.2 12.8 8.05 8.84 9.29 0.72 8.86 11.1 7.27 8.46 3.39 3.77 13.1 1.2 4.85 9.04 8.6 9.65 9.36 9.36 10.4 1.39 10.2 5.3 4.08 5.74 9.43 12.7 11.4 4.91 5.17 3.77 4.11 12.6 8.02 4.8 9.96 3.24 5.56 5.22 5.6 8.28 3.38 8.25 14.6 11.1 11.7 11.1 12.3 12.7 5.32 5.6 4.08 8.87 7.57 10.4 12.2 7.88 5.97 8.98 10.4 11.2 10.7 9.34 10.3 8.72 10.6 9.06 8.3 9.7 3.34 4.11 10 10.4 8.73 3.77 13 10 9.7 10.5 10.3 9.29 11.5 9.7 9.88 11.2 8.52 8.96 9.49 13 5.09 9.44 7.48 11.8 10.1 8.31 2.32 10.6 4.4 1.39 7.34 5.74 3.27 9.02 6.55 1.85 12.3 4.9 1.97 9.94 8.88 6.24 9.64 8.68 8.21 8.76 11.9 9.2 0.98 10.1 10.3 10.2 9.27 11.5 7.88 3.19 2.78 12.7 8.71 11 9.2 9.48 8.47 10.8 12.3 2.19 2.38 10.7 1.2 11.7 12.4 11.8 11.9 9.96 5.37 9.1 10 10.6 10.3 6.2 7.2 9.76 9.4 1.97 4.24 5.56 10.3 11.3 10.3 9 9.33 10.2 10.1 0.72 0 9.73 14.2 8.49 10.3 4.75 10 8.26 7.26 5.57 6.98 10.9 9.5 5.09 6.99 11 12.5 8.62 7.57 11 9.26 11.5 6.81 8.38 11.9 5.26 11 11.8 5.37 1.39 10.1 11.3 8.36 6.87 10.9 8.56 9.44 6.76 7.98 11.2 10.8 11 11.7 7.88 2.84 9.35 11.8 12.3 8.66 7.61 6.33 7.95 12.7 1.2 0.72 7.42 2.84 10.3 12 4.47 12.4 2.55 1.71 8.18 9.77 3.9 5.82 7.51 6.03 9.63 2.78 8.88 9.58 1.39 9.77 9.69 10.1 9.87 9.89 5.69 2.47 10.1 7.67 6.25 10.1 10.2 3.67 3.77 7.9 10.7 0 1.85 10.6 10.7 2.7 6.77 7.1 8.89 9.38 5.48 1.2 2.55 5.13 5.22 2.29 8.55 4.65 2.7 4.74 7.99 6.44 6.11 9.96 9.53 5.41 7.98 3.71 6.05 7.33 5.9 11.2 6.69 1.71 8.01 0.72 10.9 7.36 6.28 8.51 0 0.98 8.82 10.5 2.09 4.93 5.24 1.39 11.6 4.26 5.92 7.46 2.38 0.41 8.04 7.16 7.59 8.7 12.4 4.55 6.42 1.97 6.11 7.66 4.49 5.06 8.46 7.38 7.35 6.22 7.35 8.07 3.81 5.37 6.94 0 6.83 9.47 5.68 4.38 3.24 0 2.09 2.38 2.09 2.78 5.2 0.41 8.88 6.69 5.4 7.18 5.61 3.03 3.87 9.88 0.72 0.41 1.2 0 5.41 2.29 6.86 0.72 4.16 9.26 7.62 3.67 7.6 10.6 0 8.91 8.63 0 9.09 11.2 10.8 10.3 1.71 7.53 6.46 2.09 9.52 13.5 7.81 7.9 9.81 7.44 3.34 10.2 8.2 4.84 7.06 7.71 10.9 9.16 6.52 8.82 7.42 11 10.8 9.62 8.08 8.09 1.85 11 9.78 9.96 11.5 2.19 3.34 9.41 9.88 7.58 9.46 9.7 10 4.84 9.19 3.29 7.05 6.01 4.55 1.2 0.72 9.3 6.82 2.19 10 7.65 1.2 7.39 14 11.7 6.12 9.7 0.98 6.64 13.9 9.78 1.56 12.7 12 11.6 8.46 11.6 12.4 5.66 9.75 9.56 10.4 11.5 9.59 7.95 8.86 0 10.7 10 13 10.5 11.2 6.82 11.9 5.26 11.8 6.6 6.82 11.4 12 10.8 11.4 0.41 13.6 9.64 10.6 6.17 4.02 9.52 6.5 6.22 8.47 12.9 8.72 10.9 10 9.64 12.3 11.6 12.6 10.7 9.52 10.2 3.47 10.8 11.2 10.5 9.59 11.5 9.85 10.4 10.8 10.8 9.65 10.5 11 11.6 11.3 10.2 10.7 10.9 10.4 11.2 10.5 11.9 9.76 11.1 9.95 11.1 10.3 11.6 9.84 9.55 7.02 12.9 12.4 10.6 10.1 6.6 7.26 6.94 6.99 6.47 0 1.71 5.19 11.2 9.56 9.19 3.87 8.07 2.09 11.2 12.4 14.6 11.3 2.09 11.7 8.22 4.36 10.5 9.47 7.75 3.08 14.5 1.85 11.7 11.3 8.94 8.68 8.63 10.7 9.62 9.89 8.83 8.76 8.6 7.76 9.41 9.82 10.9 0.41 9.85 9.21 9.97 4.19 1.2 11 13.4 10.5 9.32 10.5 3.67 9.96 6.22 3.03 11 6.59 5.11 7.3 9.84 10.5 12.9 10.3 10.1 9.07 11.6 12.8 2.7 9.4 12.3 2.09 5.44 9.9 9.53 9.04 9.51 12.3 9.17 7.19 10.6 11.7 11.4 1.85 10.2 8.36 10.1 8.31 12.2 5.8 1.2 12.8 10 8.46 8.92 2.19 6.51 6.99 10.1 10.3 7.21 10.8 8.88 1.39 9.94 4.95 5.44 6.29 12.4 10.9 9.19 7.51 8.18 1.97 6.5 4.93 0.72 7.1 1.71 6.26 1.97 2.7 5.09 9.25 13 9.71 12.6 9.57 10.5 4.02 11.3 8.46 6.55 9.5 9.21 10.2 9.61 0 9.06 5.38 3.47 10.3 5.88 5.69 9.84 8.66 0 4.38 9.69 8.36 4.45 6.26 6.16 1.71 12.6 10.4 10.2 13.4 9.76 0 12.3 9.29 0.41 0.98 7.67 7.04 7.3 1.56 1.2 10.4 9.96 13.7 12.1 8 8.96 8.79 8.48 2.09 6.19 4.87 8.23 12.6 9.53 8.5 10.3 4.89 0.41 10.9 3.24 10.6 4.16 0 6.4 8.38 11.2 10.4 8.27 4.13 8.69 5.3 4.79 3.14 4.66 6.52 8.09 10.4 14.7 6.03 7.36 11.1 1.39 2.19 5.99 13.3 6.35 11.4 4.53 12.4 10.9 8.99 4.99 11.7 9.07 8.68 0.41 3.38 10.1 9.38 5.2 12.8 7.87 0 9.53 14.2 4.13 3.63 9.89 6.63 10.7 4.56 9.16 9.07 4.55 10.3 9.53 5.11 8.88 4.19 12.2 9.83 7.8 11.6 10.8 7.64 0.41 6.49 0 9.78 8.56 10.6 11.8 8.51 11 8.65 8.23 4.4 3.87 1.56 12.3 2.09 6.94 10.8 7.84 3.81 0 11.7 9.57 10.3 10.8 10.8 12.1 7.36 9.15 10.4 12.7 6.75 1.2 12.7 6.1 2.85 3.87 10.1 10.3 7.98 11.7 10.6 11 8.96 7.91 7.96 7.3 8.85 8.49 10.9 9.36 9.55 2.63 7.88 8.7 10.4 8.2 11 8.42 7.09 8.85 8.92 10.1 10.7 6.44 7.85 10.7 7.6 9.22 7.95 10.6 9.78 9.56 11.6 10.6 7.93 9.33 1.85 7.23 5.85 10.4 6.12 7.78 8.93 10.7 10.6 7.79 5.97 10.9 0.41 8.16 9.29 9.54 9.33 9.97 7.35 10.1 8.06 11.3 7.65 9.79 10.7 11.7 11 10.8 9.78 0.72 11.4 9.64 4.62 5.64 7.81 10.3 9.3 9.44 9.34 10.7 8.61 9.57 11.2 9.87 9.32 9.98 11.2 7.84 9.06 8.53 8.22 9.34 7.82 11.9 12.7 11.3 11 10.5 9.65 9.62 10.6 9.08 10.2 10.5 8.88 11.5 8.6 10.2 9.67 9.74 9.76 10.8 3.38 8.52 9.18 7.57 8.61 10.1 10.2 7.2 9.05 8.89 9.38 9.15 12.2 9.14 11.2 9.25 9.06 8.08 12.1 5.68 9.08 10.7 8.61 9.41 11 8.15 6.4 8.72 10.2 6.6 7.6 6.55 9.87 6.3 8.77 7.53 8.23 4.26 7.68 7.39 9.1 8.03 8.58 9.03 9.69 10.1 7.58 11.9 7.02 7.95 8.61 8.9 5.57 7.91 10.2 8.98 9.86 6.85 9.85 8.74 4.8 2.09 4.02 10.2 0.41 9.81 6.62 8.39 8.54 9.86 10.1 9.85 13 1.97 10.2 8.77 3.67 6.8 9.75 8.6 12.2 10.5 9.57 8.81 6.06 8.41 8.89 0 10.1 9.72 7.74 9.24 10.4 7.61 8.54 9.68 10.2 5.73 3.34 4.13 11 10.1 10.8 10.5 7.87 6.66 7.99 8.59 11.1 8.31 12.4 8.15 10.8 10.6 6.06 3.51 9.54 9.95 8.99 8.45 10.6 10.3 6.09 10.1 8.45 3.99 11 8.45 10.3 6.69 8.44 11 0.41 9.91 8.66 5.12 7.88 10.7 3.77 10.4 7.53 2.19 9.35 4.29 9.29 10.3 7.23 9.45 11 11 10.6 6.93 10.8 4.93 13.7 5.93 7.16 2.09 11.7 9.43 6.19 6.8 9.34 10 9.69 9.41 8.63 3.99 9.74 0 2.29 8.93 11 9.1 9.48 9.49 7.67 10.5 8.86 11.3 1.71 10.3 9.75 7.98 12.2 9.87 8.4 7.6 4.49 8.52 10.9 0.98 7.5 12.3 9.58 9.59 1.71 10.5 6.25 8.39 10.8 9.83 12.2 4.89 10.4 9.27 9.52 8.15 6.63 5.61 12.2 8.61 8.38 7.94 10.5 10.6 4.61 9.66 10.6 9.81 12.3 9.96 10.3 1.85 10.6 8.48 10.2 11.4 2.97 10.4 10.3 9.56 7.81 3.77 10.4 10.4 8.57 5.58 10.3 10.7 7.53 11.6 4.24 8.6 7.53 10.8 10.9 8.85 11.1 9 11.9 8.5 8.41 9.42 10.8 10.7 11.4 9.1 10.6 4.36 7.01 5.58 9.58 9.69 11.2 11 10.4 9.21 9.44 8.91 10 10.2 4.82 9.72 7.56 6.89 9.97 9.59 9.23 9.18 11.7 8.4 9.12 8.27 8.55 8.79 7.92 8.21 10.6 5.02 2.29 8 2.61 10.3 3.55 8.26 10.8 10.2 9.43 10.4 5.08 9.26 11.3 9.65 8.78 8.5 10.1 9.89 11.1 7.62 7.66 9.7 10.7 10.1 11.2 11.3 10.8 11.8 6.72 9.51 9.69 12.7 9.18 10.1 10.3 8.78 12.5 9.35 1.56 8.49 10.6 12.1 10.9 11.5 11.8 8.61 11.1 7.15 8.14 10.7 10.6 9.72 10.8 8.44 10.1 9.88 10.5 10.2 10.2 6.41 9.71 8.42 11 9.38 4.82 9.62 6.71 8.95 10.6 8.17 10.8 9.07 11 8.08 12.3 7.24 7.51 3.51 7.07 9.43 9.77 3.43 7.95 8.73 8.73 9.27 9.68 8.57 9.88 11.9 11.1 4.51 9.63 1.56 6.21 9.69 4.98 10.2 9.01 10.7 8.21 0.98 11 2.97 8.53 9.97 11.7 7.63 10.5 3.67 11.2 7.67 2.09 12.4 8.39 9.26 3.63 11.4 7.87 9.06 1.71 10.3 10.1 10.2 10.4 7.36 8.57 5.8 9.88 10.1 0.72 5.41 12.4 8.96 9.33 7.3 11.1 12.2 5.82 6.78 7.24 8.65 9.76 8.84 10.9 9.76 10.1 9.56 10.4 7.72 9.93 8.85 9.47 9.45 2.29 0.41 10.4 3.29 10.4 10.6 9.14 8.45 11.9 9.43 3.14 9.9 11.2 10.8 7.72 12.3 0.72 11.2 12.4 13.6 10.8 10.3 11.3 12.5 6.3 0.41 11.3 6.24 8.16 10.9 13.6 11.4 8.05 9.14 0.98 12.9 6.55 12.5 2.38 12.8 2.84 9.95 9.82 7.12 9.51 11.1 11.1 2.78 9.76 9.96 14.1 2.55 10.9 12.3 13.4 7.21 8.52 5.76 7.44 9.11 10.2 8.24 8.73 14.6 10.1 9.58 8.94 11.1 8.26 10.2 8.86 9.1 4.59 11.1 10.8 10.4 10.4 10.8 9.72 0.98 8.39 8.51 12 0.72 11 12.4 6.28 15.5 9.1 8.11 0.98 5.8 7.9 9.32 8.8 8.08 10.9 7.4 10.7 7.9 9.42 10 9.26 7.25 11 7.03 8.21 1.44 9.53 8.25 6.24 1.2 9.08 11.2 3.03 8.31 8.15 8.97 8.8 11.2 10.2 12.9 4.13 4.9 9.58 7.41 4.94 10.6 2.63 6.38 1.56 11.9 1.71 11.7 11.7 0 10.1 9.48 11.2 10.5 10.3 12.4 10.2 11.1 4.29 8.03 7.79 11.2 3.19 13.3 5.49 5.26 0 0.41 12 10.8 9.61 10.3 10.2 8.05 8.28 8.31 6.88 5.89 3.24 0.41 7.24 8.52 6.24 6.64 4.31 3.59 10 3.08 9.35 7.9 10.8 5.97 12.2 4.38 8.14 9.12 9.26 8.29 7.87 9.97 9.49 10.5 10.8 3.43 10.1 9.48 9.33 10.6 10 6.22 5.44 6.09 8.53 8.74 5.78 7.71 0 0.98 9.24 2.09 11.7 9.15 3.85 10.1 9.34 10.8 0.41 10.1 8.68 4.79 7.41 8.11 4.93 8.9 8.3 7.86 8.42 8.77 9.2 8.42 12.4 9.95 2.38 7.95 3.47 7.82 7.46 8.96 11.6 8.46 4.65 4.71 9.92 9.96 12.2 10.7 11 6.14 5.56 8.41 6.8 8.22 11.4 8.77 5.02 9.11 10.3 4.55 3.77 9.18 8.96 11.2 10.1 9.4 11.7 10.7 6.65 12.5 10 5.19 3.99 10.9 9.63 8.55 9.67 8.24 8.94 10.3 2.97 9.24 7.09 7.88 9.31 6.07 11.2 11.6 7.6 8.66 0.98 1.85 11.2 10.1 11.2 9.44 11.1 9.36 8.86 0 11.3 9.63 10.2 11.7 7.46 10.6 10.7 8.73 10.5 9.32 3.84 10.5 7.76 9.74 7.14 6.95 8.98 9.99 8.97 9.01 8.88 11.2 9.38 2.84 11.6 8.56 12.2 9.6 8.2 6.74 9.89 5.26 3.08 8.27 8.01 8.41 11 5.02 9.98 8.42 7.04 9.25 2.97 7.89 9.77 8.68 9.62 8.42 9.76 6.78 10.3 9.4 9.14 7.73 11 10.3 5.45 9.46 8.55 9.48 7.74 7.36 7.16 6.39 6.19 1.56 8.45 10.8 5.87 9.39 10.9 1.39 10.4 7.9 10.4 11 9.73 7.47 6.23 10.2 8.89 7.1 10.3 11.2 5.42 6.65 9.37 7.92 10.3 10.1 3.93 10.2 8.89 10.9 8.57 11.4 2.38 12.9 9.53 9.56 9.07 8.7 10.2 8.23 10.5 3.08 10.3 10 8.05 9.41 7.67 10.1 5.41 10.1 3.59 12.2 9.35 1.97 9.43 6.24 10.7 5.26 9.5 1.85 10.1 3.38 9.48 2.63 11.4 6.5 8.68 13.2 8.34 9.07 9.6 10.4 9.92 10.6 9.57 12.1 8.27 9.02 8.55 10 13.3 8.46 9.15 10.3 8.61 8.43 4.53 9.09 10.8 10.4 8.51 8.49 7.71 7.66 7.21 8.56 7.37 9.43 8.38 8.58 10.1 7.96 8.05 10.8 8.57 7.92 9.23 3.77 9.59 7.2 12.2 7.29 3.87 9.73 1.71 6.77 0 11.1 8.63 8.58 10.4 8.35 9.18 11.7 9.85 11.9 8.14 4.84 10.9 8.72 7.46 9.41 8.86 3.74 6.69 9.99 0.98 10.9 9.02 9.62 10.2 10.1 9.78 7.86 9 2.19 11.1 10 10.4 10.3 9.65 7.1 11.5 7.79 8.99 8.27 8.33 8.5 9.4 8.04 10.5 9.49 11.8 8.11 9.33 10.1 11.4 8.9 7.9 11.5 8.53 8.14 8.53 4.45 7.61 8.93 3.77 8.21 10.7 9.33 9.77 0.72 10.3 7.32 9.04 7.42 10.4 10.9 9.06 11.1 10.1 8.48 11.8 5.51 9.84 8.83 10.2 10.9 10.8 9.71 11.6 9.83 8.76 8.11 5.79 8.99 10.1 9.48 5.35 8.83 10.2 10.7 11 6.69 8.55 6.97 10.8 9.01 9.5 9.33 9.25 9.07 8.31 9.28 8.53 8.2 8.04 9.13 6.17 11.2 8.83 10.9 6.18 9.72 8.28 8.51 0.72 8.74 8.13 9.17 7.53 9.65 10.7 7.03 9.17 8.9 11.7 4.05 8.55 8.09 9.05 9.38 6.69 11.6 5.65 9.26 9.64 9.21 11.6 7.49 7.93 11.1 8.18 8.73 9.13 10.6 2.19 11.3 12.2 12.2 7.47 10.8 8.03 10.5 9.18 8.02 7.71 8.9 8.58 10.7 5.3 9.9 7.9 7.93 6.99 9.66 8.98 6.32 9.69 0.72 8.81 9.58 2.47 10.1 6.18 5.85 8.53 9.66 9.84 10.3 9.75 8.24 4.33 8.97 9.26 10.4 7.1 8.04 9.9 5.7 12.5 9.26 8.58 8.03 10.3 9.37 8.36 8.64 3.24 7.92 10.9 8.03 6.94 7.57 8.5 8.56 11.6 5.34 12.4 7.43 7.07 5.96 9.61 8.71 11.9 10.6 7.07 9.88 10.3 11.1 7.85 7.03 6.05 8.8 1.2 7.56 9.73 10.9 7.1 7.8 10.7 3.19 9.93 8.52 9.99 9.73 8.9 7.33 7.17 10.6 9.87 9.48 7.6 9.83 10.4 8.07 10.2 7.58 9.64 7.29 9.24 0 9 9.33 8.63 9.71 4.31 8.74 8.87 8.73 8.69 8.5 5.27 9.42 11.4 9.56 8.64 5.33 9.99 7.41 11 10.3 10.3 8.83 11.1 4.47 8.11 10.4 9.68 8.96 8.94 9.65 9.74 11.2 10.7 10.5 11.3 8.57 4.82 5.89 9.14 9.49 9.55 8.1 7.96 9.85 9.98 5.97 6.75 9.96 9.06 9.9 12.9 7.57 9.07 10.3 9.47 8.72 10.6 10.9 8.17 8.82 3.03 10.3 7.77 9.47 6.72 11.8 9.07 9.83 9.91 8.14 0.41 9.17 7.93 9.71 4.42 9.53 9.87 8.78 10.8 7.98 10.7 1.97 9.25 7.97 8.94 10.7 7.38 9.65 7.71 9.66 9.59 1.39 1.2 9.84 6.71 8.48 9.18 9.97 9.25 11.2 8.84 10.9 11.1 4.84 9.09 10.4 9.42 8.63 10 12.5 7.89 9.51 10 10.8 10.2 2.97 7.38 9.91 10.4 9.73 11 9.47 9.68 8.1 9.14 10.3 8.66 9.67 7.32 8.72 8.68 8.43 9.8 3.59 10.5 9.34 10.5 8.5 9.86 3.7 10 10.5 8.54 8.94 9.27 7.86 9.73 8.34 10.9 6.94 3.19 9.57 7.34 9.05 0.72 9.6 11 2.29 9.23 8.16 10.2 11.1 7.76 8.45 7.9 7.51 8.45 9.85 8.3 4.63 9.1 9.04 0.41 7.05 11.1 10.3 10.9 8.81 10.5 9.66 10.2 7.93 6.9 4.61 9.82 8.77 8 9.81 7.37 6.36 8.62 8.52 10.4 9.79 9.63 9.72 7.63 7.65 7.79 8.31 8.25 11.2 11.2 10.8 5.2 6.85 9.55 10.3 9.52 5.84 9.67 9.08 9.46 6.84 5.39 7.16 10.2 9.5 0.72 9.7 9.57 12.5 4.11 7.07 9.22 2.47 10.2 9.58 10.3 9.61 12.8 10.8 9.02 10.2 7.14 7.96 11.4 11.8 2.47 3.7 0 7.29 9.74 7.98 1.85 4.59 5.88 8.18 4.42 8.34 8.48 8.42 0 9.44 10.3 7.62 9.99 9.63 12.3 8 2.47 9.46 6.11 9.09 10.8 8.82 7.24 4.4 11.5 9.84 9.54 1.56 8.2 3.9 5.91 0.41 5.2 2.19 8.53 7.48 3.93 10.1 9.68 6.91 2.63 0.98 8.18 9.62 4.89 8.43 9.16 0.41 2.47 8.04 9.89 9.45 9.45 9.21 11.7 8.18 4.08 10.6 6.26 10.2 9.41 11.4 1.56 9.78 9.81 7.08 7.13 10.7 11 7.9 9.46 8.33 10.5 9.11 7.92 0.41 9.1 8.89 8.44 9.95 10.1 10.1 11 5.92 9.39 10.8 6.35 3.51 9.44 8.57 9.75 8.39 6.61 10.3 9.78 9.16 8.39 11 11.5 11.3 9.58 10.6 8.16 10.6 9.9 9.27 8.14 7.61 9.39 7.66 3.03 9.54 7.61 11 9.26 11.4 8.27 7.19 9.99 8.83 9.64 10 9.8 9.51 11.5 7.69 8.48 8.68 8.69 6.79 10.5 10.5 10.6 10.6 8.12 8.29 11 11.9 10.5 7.01 9.35 10.8 9.22 10.4 9.57 7.89 10 9.01 8.29 9.56 11.2 10.8 8.65 7.9 9.69 6.31 11 9.55 10.3 6.01 9.79 9.23 10.9 5.78 11.4 5.8 10.6 10.5 8.37 7.83 9.01 10.3 7.75 10.2 8.82 9.98 4.99 9.09 9.06 11.8 8.49 10.6 9.8 9.62 10.8 7.22 6.02 6.03 8.6 11.1 7.08 9.24 12.9 10.3 6.27 9.9 8.61 10.6 11.6 11 10.3 10.7 10.1 10.2 8.84 9.85 9.6 9.96 14.3 10.2 9.04 9.87 9.22 12.3 13 11.7 9.66 8.72 9.01 9.58 8.45 8.13 9.95 10.1 7.07 9.54 10.9 10.9 10.5 9.01 11.2 7.13 9.52 2.55 9.04 8.41 9.15 8.78 8.67 7.94 11.3 8.67 8.16 9.69 8.29 8.24 7.54 6.74 11.2 4.55 5.74 5.74 8.03 8.58 9.03 9.32 5.73 8.84 4.77 11.1 9.04 5.98 9.22 8.37 6.64 7.18 0.41 5.49 6.91 8.83 1.2 7.87 9.67 9.46 8.05 10 10.9 5.08 10.5 8.33 10.2 10.8 9.97 6.51 10.5 9.87 10.7 9.74 6.82 9.67 7.53 10.4 6.03 9.52 4.59 9.22 11.4 8.79 9.79 8.45 11.3 8.15 9.88 10.6 2.71 9.82 7.22 9.58 8.04 10 6.77 10.1 9.74 10.6 9.88 9.1 10.1 7.95 9.1 10.7 9.33 4.08 6.64 9.07 10.9 1.2 7.64 2.09 12.9 12.6 7.89 10.5 6.03 11.1 9.52 9.4 5.8 12.6 10.6 11.5 8.11 9.22 9.04 11.4 7.53 11.1 8.95 7.7 10.5 5.99 11.1 8 5.71 9.66 1.2 8.87 9.28 11.6 10.5 8.87 7.02 10 13.8 5.2 7.16 9.5 11 10.6 9.46 11.9 9.22 7.45 9.82 9.82 9.79 9.16 7.55 0.41 7.41 0.41 10.4 8.55 9.77 8.67 9.46 9.86 9.79 10.6 10 10.7 11.3 2.63 7.79 8.3 5.36 9.56 4.51 3.96 9.04 7.59 4.38 3.99 4.8 6.44 6.6 4.98 4.11 4.09 5.51 5.58 11.1 5.78 4.33 9.29 6.97 6.54 9.31 2.38 6.63 7.89 6.84 5.88 3.84 8.13 8.63 5.76 4.9 10.4 6.25 7.13 6.25 7.86 2.29 4.59 8.7 0.72 8.15 0.72 7.86 9.04 5.76 7.73 11.1 1.97 8.91 12.1 1.97 10.4 6.82 7.57 10.5 8.87 8.71 10.8 2.19 10.1 11.7 7.01 10.6 10.2 5.63 10.2 10.6 3.55 8.88 11.2 11.4 9.73 10.3 1.71 0.43 9.34 9.12 9.18 8.49 9.8 9.52 9.5 7.73 11.4 6.17 0 0 9.12 9.18 10.1 3.67 11.6 10.7 4.57 11.2 6.8 0.41 15.7 8.08 8.41 9.98 9.99 4.29 8.48 11.1 8.61 10.2 6.93 2.78 8.81 9.03 9.44 7.95 8.93 4.74 0.41 2.97 0 8.49 0.72 10.6 3.9 11.1 10.4 15.2 5.64 0.72 11.4 11 10.9 10.7 11 6.42 9.26 9.7 8.58 10.6 9.97 10.7 6.3 3.03 10.3 10.2 11.6 10.1 10.8 9.87 12.1 11.2 8.05 5.61 10.4 11.8 9.61 9.84 11.3 4.26 10.5 10.4 4.26 8.94 10.1 9.26 6.92 9.62 11.1 11.7 7.99 9.33 9.48 8.08 9.6 8.48 8.79 11.6 5.84 9.82 5.08 7.59 10.3 10.6 10.8 9.22 10.9 8.38 8.37 9.85 5.77 11.1 8.98 9.52 9.2 8.78 5.84 8.94 8.36 10.7 9.4 10.2 11 9.97 11.2 6.66 7.98 11.2 9.57 11.3 0.72 4.87 6.41 9.27 6.9 10.5 5.81 10.9 6.98 1.71 9.01 7.15 4.96 8.35 9.3 6.71 8 10.4 10.2 11.3 4.02 10.2 8.94 9.81 10.6 8.99 9.41 11 3.63 9.02 8.72 7.89 11.5 8.12 10.7 6.44 12.7 9.62 11.4 10.9 11 8.39 1.39 9.36 9.83 9.15 10.6 10.1 9.96 11.9 9.43 2.97 9.66 8.71 1.98 11.5 10.7 11.8 3.7 10.1 8.74 9.35 11.3 3.63 11.2 0 9.35 1.85 8.04 5.94 10.5 10.9 1.85 8.45 8.85 11.3 11.3 9.46 9.31 9.06 8.17 7.28 2.3 8.14 6.18 9.82 6.13 9.24 5.39 5.91 2.91 8.59 9.12 10.9 11.1 10.7 4.19 12.5 9.5 10.9 11.6 12.8 7.86 10.2 8.17 11.2 10.2 9.73 6.64 13.2 10.1 5.37 8.33 4.84 9.5 8.24 9.01 7.36 2.7 5.04 11.5 10 8.47 10.9 10.6 12 11.4 9.6 7.95 9.56 9 10.3 10.8 9.19 10 10.2 10.3 10.6 10.4 4.19 8.6 10.2 9.3 9.73 11.8 10.3 9.18 10.4 9.69 11.3 10.1 7.78 2.29 9.94 9.85 10.4 7.74 11.9 10.4 8.43 9.52 9.3 9.8 10.5 5.99 6.61 12.2 8.24 10.7 0.98 1.97 8.79 10.8 4.21 0.41 8.02 9.72 12.6 1.22 7.03 7.21 8.6 8.36 8.77 2.19 4.87 8.17 2.09 4.8 12.3 10.1 4.82 2.55 12.3 8.71 7.7 2.19 3.29 10.8 9.13 0.41 2.19 8.7 10 10.1 11 8.06 11.5 6.81 9.95 6.36 7.81 3.77 3.29 10.5 10.9 10.7 7.83 9.98 3.87 8.52 8.26 9.33 9.59 8.19 9.23 7.44 10.2 8.99 8.08 7.49 3.7 8.58 9.99 4.02 7.16 10.7 10.3 2.63 9.71 10.5 7.94 11.1 3.7 8.68 9.03 9.76 8.11 3.55 6.29 8.79 12.4 8.79 4.82 10.5 8.51 9.47 1.56 10.8 0 10.8 5.01 3.91 7.19 9.48 9.54 12.2 9.56 9.29 8.87 10.4 8.91 11.2 8.72 12.4 3.34 10.5 8.74 9.06 3.43 1.97 7.49 0.98 6.13 9.38 7.46 11.5 10.8 10.1 4.21 6.77 3.47 11.4 9.89 11.3 2.55 8.53 9.61 7.61 9.92 6.97 7.51 5.09 8.74 11.8 11.4 0.41 10.2 10.9 7.63 6.15 10.4 9.74 10.1 7.49 8.36 6.75 9.15 8.78 2.78 13.5 8.43 5.16 9.23 8.24 2.38 5.62 9.24 6.01 8.96 8.83 0.72 9.45 10.3 9.7 10.1 9.25 10.2 9.69 9.81 9.62 8.39 5.05 2.84 6.69 10.2 9.97 9.85 10.4 8.66 8.7 10.2 7.99 10.1 10.2 7.79 9.35 2.78 5.69 10.1 11.5 7.79 8.15 5.47 7.44 0.72 10.7 9.34 5.42 10.4 9.34 8.72 8.62 5.45 10.5 8.71 9.13 11.5 10.3 5.84 7.23 8 9.71 7.05 10.8 12.2 10 9.54 11 8.64 9.46 10.7 9.51 7.24 13.7 7.48 8.33 9.36 11.7 10.6 7.61 6.19 5.37 1.39 8.59 4.47 8.61 6.98 7.54 9.5 8.14 8.47 5.97 10.4 3.59 4.19 11.6 8.61 9.44 8.8 11.3 6.63 9.59 11 10.1 8.49 7.71 8.18 5.22 8.82 7.41 10.8 2.47 8.18 11.9 8.34 8.83 9.79 10.3 9.7 3.93 4.63 7.79 11.5 11.1 6.41 4.87 7.61 7.61 9.59 5.62 9.54 9.29 9.26 10.9 9.46 8.83 10 6.97 10.1 11.4 11.4 8.59 10.7 9.36 7.34 7.08 5.17 8.56 9.91 4.72 11.6 0.41 8.06 6.84 8.35 11.5 9.92 10.9 3.77 7.17 7.67 11.5 6.39 8.49 12.9 10 5.68 11.1 11.4 11.2 1.97 8.98 0.98 4.65 8.71 2.38 10.2 7.74 3.7 10.8 8.62 8.23 11.2 7.88 10.8 9.18 7.99 11.9 11.4 11.8 11 4.7 9.34 10.9 10.8 10.5 8.78 9.68 10.7 10.9 10 8.79 10.9 9.97 13.2 10.1 2.29 10.4 9.32 6.9 11 10.5 9.4 10.9 4.47 11.2 9.7 10.5 9.22 7.6 10.3 7.2 6.27 7.63 4.08 5.9 8.89 9.76 9.94 9.28 5.64 10.3 10.7 11.3 9.16 2.78 9.35 8.99 10.6 10.6 10.2 11.1 8.49 10 2.91 10.5 1.2 0 12 6.66 9.6 12.1 9.58 9.91 5.9 6.15 7.2 9.58 10 11.6 10.1 11.2 8.11 11.1 7.17 1.97 8.93 9.12 7.99 11.9 13 8.85 6.95 8.53 8.99 11.3 11.2 11.5 4.59 8.36 6.28 9.04 7.56 7.9 10.8 7.6 10.1 11.6 10.8 10.5 9.24 11.4 9.16 10.8 10.7 9.74 10.7 10.2 9.23 8.83 8.8 9.6 0.72 11.3 7.56 8.04 10.1 10 12.3 9.92 9.87 6.5 4.98 2.38 10.6 8.81 6.06 9.69 8.42 11.2 7.9 11 11.8 10.9 8.35 10.7 10.4 8.94 10.7 9.44 6.57 2.91 11 10.6 11.2 0.72 8.79 10.6 8.49 2.78 8.34 7.21 9.95 11.4 2.55 5.17 10.7 9.89 11.1 9.54 5.57 0.72 0 0.98 11.6 15.7 6.6 2.84 12 10.4 0.72 9.23 11.8 2.7 10.8 10 4.99 4.99 10.7 8.24 8.5 11.2 9.68 7.97 1.85 13.4 9.78 9.98 9.18 6.97 7.46 8.41 10.2 10.3 0.86 8.65 9.65 8.22 5.32 0.41 9.43 6.75 5.66 8.04 9.79 16.4 6.98 11.5 3.24 5.54 4.79 3.31 10.3 1.56 9.96 10.1 8.78 5.48 8.78 1.85 9.58 11.4 9.92 10.1 8.31 3.47 0.72 6.86 10.9 0.72 7.67 6.84 9.81 8.98 9.11 10.9 0.41 8.59 1.39 0 8.44 11.7 4.57 10.2 10.4 10.1 1.71 9.28 8.19 10.2 7.32 9.11 7.45 8.78 9.52 9.4 2.84 10.1 9.8 11.9 10.4 10.8 9.05 11.5 9.24 11.2 8.18 8.67 9.9 10.9 0.72 8.69 11.2 6.18 5.68 8.21 4.02 9.4 9.33 0.41 1.85 6.88 8.63 7.24 11.3 9.69 9.63 11.3 7.89 8.83 0.72 8.4 10 6.48 9.83 0.72 7.76 4.95 7.39 8.4 6.74 2.47 11.1 10.1 9.1 9.05 14.7 14.1 13.6 12.7 9.72 10.6 13.1 4.99 14.1 7.01 13.1 13.3 12.2 13.9 13.8 12 12.7 10.2 14.1 1.85 12.4 11.6 9.51 12.3 13.5 12.5 12.7 12.8 12.7 12.5 13.1 13 12 12.4 11 12.8 13 12.4 8.95 7.58 13 6.78 13.4 13.3 12.6 10.7 9.3 12.7 13.3 12.7 13.3 11.7 13.6 4 3.08 3.63 9.29 6.82 12.6 0.98 3.14 14 10.8 10.1 10.1 9.3 8.72 11.7 13.3 13.1 11.8 13.7 13 12.2 12.9 11.3 12.8 13.2 12.4 8.69 13.5 13.4 13.5 12.4 13.1 13.4 12.7 8.44 9.24 12.1 2.55 11.7 10.1 9.17 13.5 10.2 9.69 5.99 10.8 3.77 6.6 10.9 10.3 5.89 7.54 8.91 9.9 10.2 6.51 4.08 6.51 7.02 6.45 12 7.16 2.29 8.16 0.41 13.7 4.4 6.82 12.6 12.7 0.98 10.2 1.56 1.56 13 10.5 10.8 10.2 8.57 5.84 11.1 10.3 6.21 12.6 8.97 8.8 11.1 9.79 9.25 6.68 9.71 9.89 8.86 9.67 4.38 6.48 6.79 7.13 7.35 2.29 5.21 0.41 14.5 5.27 2.78 5.55 3.08 11.8 0.98 6.23 5.16 9.94 11.7 1.71 4.79 8.47 4.96 2.05 7.01 4.74 7.01 0.41 4.45 7.44 7.12 1.97 0.72 0.41 7.53 1.97 10.1 1.97 7.61 0.41 12.1 3.34 11.8 8.52 5.5 12.3 14.7 11.5 10.2 9.7 10.1 1.39 8.83 10.5 12.5 9.94 9.94 9.48 9.25 5.76 9.46 8.15 6.33 4.72 10.5 10.1 11.2 7.99 8.2 11.6 5.49 4.41 9.82 10.5 13.8 11.1 7.51 8.2 1.85 1.25 8.58 8.48 7.45 8.82 6.77 8.06 7.71 10.6 7.73 7.18 8.81 7.17 10.5 4.02 11.9 1.56 9.54 0.41 7.48 7.51 9.26 7.9 0.41 11.4 6.05 2.29 5.53 4.16 7.32 11 8.28 9.3 5.33 13 6.36 3.67 10.2 9.32 0.72 8.96 9.15 10.8 8.57 10.9 6.6 1.85 4.68 5.73 6.11 5.08 10.3 7.19 4.59 3.29 3.87 6.86 10 9.4 11.8 9.58 11.8 10.5 8.65 10.2 6.13 4.36 14.1 7.33 5.29 7.54 2.29 11.2 5.85 8.46 2.97 7.93 2.29 9.91 9.3 3.63 9.65 8.37 8.84 10.8 4.87 10.3 8.82 6.96 6.9 8.26 5.34 3.43 7.54 5.11 10.1 12.3 0 7.52 7.18 10.4 10.5 11.9 10.4 10.5 8.21 7.9 9.45 1.85 6.33 9.91 10.3 9.34 8.98 3.74 9.43 8.3 7.44 6.42 5.16 4.99 8.03 0.41 11.6 2.38 11.4 11.6 5.64 9.37 7.82 10.7 9.44 6.58 10.7 10.6 7.44 10.8 1.85 6.19 6.84 1.85 11.9 5.59 0.98 12 10.2 8.86 11.1 10.2 8.43 5.59 10.7 8.76 6.66 9.58 10.7 9.42 9.56 8.6 10.7 6.67 6.12 2.19 6.01 4.66 10.7 10.1 9.4 5.57 10.5 10.4 1.56 3.29 10.2 7.57 8.4 2.29 2.47 8.77 6.31 5.8 8.19 4.56 5.92 0.72 0.72 2.19 8.51 8.19 2.09 10.3 10.3 2.09 10.8 10.2 6.17 7.06 3.55 0.98 7.97 4.57 7.52 5.2 8.98 7.83 0 7.06 7.19 9.42 4.33 9.46 9.82 1.2 8.91 7.27 9.26 10.9 8.38 9.94 9.59 9.98 9.47 11 9.89 8.47 10.6 9.36 4.68 5.65 0 0.72 3.74 5.01 3.87 4.92 10.4 2.38 8.14 3.99 10.7 2.7 7.43 8.15 2.78 11 2.84 4.38 0.41 9.97 10.3 7.07 3.9 10.4 3.2 1.2 9.08 4.13 11.4 10.2 8 6.06 5.31 1.56 0.98 10.7 7.59 6.74 6.45 2.55 0.41 10.5 4.16 6.11 4.4 4.53 8.32 9.48 10.9 0 10.2 4.32 1.39 5.6 9.97 3.74 6.43 0.98 10.9 4.53 10.1 5.3 8.03 8.25 0.41 2.38 8.08 10.8 8.74 7.98 10.2 2.09 7.35 3.47 0.98 5.33 3.34 12.8 8.81 5.12 7.87 9.48 10.8 12.6 2.09 2.81 8.58 10.2 3.67 0.41 11.3 8.69 9.3 10.1 10.3 8.88 9.4 3.99 7.49 11.9 10.6 7.04 11.8 10.5 9.63 8.13 8.49 12.1 8.98 8.3 10.1 9.32 10 11 10.1 10.2 8.68 9.63 11.6 8.99 8.72 9.17 9.76 9.82 7.14 10.1 7.13 4.42 9.13 12.6 9.71 7.45 10.6 7.31 9.11 1.71 9.44 14.3 8 7.43 9.47 9.25 6.98 8.68 9.36 3.47 9.26 8.85 10.7 9.71 7.93 9.04 9.08 7.45 9.16 0 10.1 11 9.42 1.2 9.4 9.72 7.8 12.7 10.3 8.92 7.11 9.67 7.57 7.87 8.51 9.34 8.18 4.5 8.05 2.47 7.48 8.27 11.1 6.83 10.2 6.15 6.84 4.74 9.1 9.85 9.61 9.25 6.23 8.9 9.08 6.27 3.7 9.35 8.72 9.44 7.85 6.61 10.4 1.97 10.6 0.72 9.72 8.94 9.32 9.7 10.2 10.4 9.63 9.61 10.8 8.04 8.14 9.6 10.1 10.2 4.02 8.5 12 9.4 9.44 8.7 8.76 7.32 2.35 11 6.02 6.93 5.97 1.71 11 4.45 10.8 9.1 8.8 0.72 8.35 6.59 7.23 4.31 6.01 7.25 6.98 9.93 8.72 10.2 8.82 8.2 8.58 9.46 1.39 9.41 10.6 7.68 9.41 10.1 2.47 11.4 9.19 10.9 11.6 9.82 4.55 6.56 6.5 7.68 13.3 10.5 11.3 2.19 12.3 9.85 5.76 5.06 8.88 8.53 9.39 9.05 7.7 9.78 10.1 7.58 8.91 12 10.2 6.01 2.55 7.8 0.98 0 3.96 0.72 6.83 9.41 0 5.76 8.46 1.2 4.26 5.16 5.05 5.99 2.19 6.57 3.47 12.5 9.33 4.99 5.84 3.24 0.41 0.72 7.68 11 9.33 9.02 10.2 2.78 7.31 4.77 5.45 0.72 10.7 7.07 5.17 3.84 3.93 8.97 2.47 4.26 6.08 10 9.01 10.5 8.74 6.42 0.41 2.78 4.96 8.32 10.6 2.29 6.72 0 3.77 7.69 0.72 5.31 5.19 8.5 3.03 2.09 10.7 3.84 4.26 5.33 5.68 4.49 0.41 6.26 6.25 8.46 2.29 8.5 11.7 3.96 9.25 7.15 7.65 9.05 0 5.16 8.69 8.91 9.29 10.8 10.7 2.47 3.93 9.09 5.7 10.5 2.29 3.34 11.1 12.7 3.29 10.8 11.1 9.13 11.9 8.73 8.56 10.5 10.8 9.39 8.41 11 9.21 9.48 8.69 8.98 8.81 1.2 11 8.12 10.1 10.9 10.4 9.37 3.29 8.38 10.4 1.71 4.31 2.63 10.1 11.3 10.5 11 10.6 10.8 9.11 8.57 9.55 11.7 1.7 9.35 11.1 11.8 8.07 7.75 10.6 11.3 11.2 6.15 4.74 7.76 7.5 8.45 8.07 6.97 8.67 5.29 4.42 11.4 11.6 9.3 8.07 11.3 10 9.48 9.71 8.63 10.7 10.1 9.09 9.02 9.07 11.4 10.7 8.56 9.63 11.5 10.6 10 10.2 0.98 12.3 6.16 13 10.4 11.5 10.3 12.5 7.36 10.3 10 10.1 12.5 10.3 1.56 12 0.72 5.08 9.39 11.8 9.19 11.9 10.3 7.28 10.1 7.85 8.41 8.39 14.3 8.45 11.3 7.75 1.56 9.93 0 12 6.8 10.7 17 9.94 9.9 13.2 0 8.05 13.3 9.22 7.5 11.4 8.1 0.41 11.2 7.77 11 10.6 9.96 9.55 11.4 11.6 8.72 9.79 6.89 11.6 10.2 9.98 9.78 11.7 8.4 10.1 10.4 10.2 10.8 11.8 11.9 10.9 11 11.4 4.9 1.39 0.41 10.7 9.83 11.8 12.4 4.26 12.8 1.85 13.2 11.2 12.5 5.52 9.33 11.4 1.56 2.55 3.19 0 0 1.97 0.41 2.74 12.4 4.55 1.39 0.98 4.68 11.4 12.1 6.67 10.4 0.41 3.14 10.5 9.4 8.59 8.18 9.57 6.81 2.7 6.04 9.01 9.92 2.38 4.68 8.41 6.45 10.6 10.1 9.74 8.56 10.9 9.73 8.62 9.33 9.56 8.45 14.8 3.96 10.2 10.7 11.2 7.66 11.7 8.65 9.93 8 11.9 10.4 9.83 7.08 7.22 11.9 7.48 10.8 9.65 1.97 9.94 6.21 4.24 4.63 11.8 1.2 9.51 2.55 2.78 0 10.3 9.37 2.7 9.42 8.09 9.68 8.86 9.15 6.14 8.1 4.87 11.4 11.4 8.76 9.48 9.3 9.2 8.52 7.63 9.43 4.19 3.29 11.6 12.3 11.2 10.7 13.4 9.12 8.87 10.1 0.98 2.19 8.63 9.87 8.72 11.2 8.14 10.9 8.11 6.64 7.36 9.81 3.7 7.04 9.76 9.86 10.3 1.85 5.64 7.76 9.01 1.71 0 11.6 3.91 9.83 7.05 5.93 9.14 10.2 7.07 8.72 7.96 8.05 10.3 1.85 10.9 8 8.17 10 9.44 9.76 0.98 11 10.3 6.59 11.5 0.72 0.98 11 4.29 8.95 5.62 10.8 10.9 8.21 1.39 12.5 10.9 8.89 8.65 5.87 4.9 10.2 14.4 4.49 5.6 10.1 0 8.87 9.69 0.72 9.56 2.19 8.99 3.03 7.33 9.01 4.16 12.2 10.2 7.7 10.4 3.59 11.6 3.81 8.72 4.08 10.2 9.08 4.55 8.33 8.11 0 12.2 10.5 0 11.4 9.23 8.16 11.5 5.06 14.3 2.19 10.5 12.7 10.4 9.88 10.7 4.45 3.67 9 0.41 10.5 7.75 1.56 7.16 11 10.8 9.89 5.96 6.45 12.9 13.2 10 2.91 11 11.5 8.1 11.1 11.9 2.47 9.66 10.1 9.92 8.83 6.11 13.2 11.4 6.76 7.77 8.49 7.64 16 14.7 7.33 5.43 10.6 11.3 9.87 10.5 10.4 9.9 5.19 9.72 14.2 9.7 6.76 6.92 4.26 2.78 11.7 11.1 8.05 9.65 10.1 11.6 8.25 2.29 2.19 6.43 0.98 9.6 0 11.8 8.13 11.7 11.2 6.83 2.97 7.95 11.3 9.05 10.4 10.1 10.4 11.5 1.56 9.88 9.01 9.33 11.9 2.38 13.5 13.8 7.93 5.26 12.7 11 11.4 10.2 11.3 8.58 15.6 1 14.8 8.65 10.1 14.3 8.9 8.85 7.8 7.99 7.54 7.48 16.2 0.41 12.1 10.3 11.5 9.54 0 8.7 1.2 6.65 1.39 6.5 8.51 9.36 3.51 2.61 10.4 9.61 10.8 0.98 10.6 1.39 9.52 11.3 10.2 8.77 5.73 9.99 10.2 9.61 10.6 12.5 9.31 6.81 8 3.55 6.74 8.72 8.6 7.25 3.74 1.85 6.28 7.56 9.85 6.87 9.95 5.02 6.64 6.84 7.49 7.26 3.08 7.62 7.13 3.38 3.29 9.5 10.4 4.79 9.59 0 3.47 9.76 13.1 6.41 7.34 2.38 6.53 8 7.21 2.76 9.23 0.98 8.11 7.66 8.24 3.81 4.96 9.23 5.39 4.08 13.9 4.63 7.31 0 5.82 0.41 4.36 2.63 7.36 4.75 10.2 1.97 1.85 10 4.77 9.06 5.74 6.2 5.74 0.72 2.41 3.08 4.33 4.92 4.42 4.61 1.39 4.61 4.26 2.29 5.83 5.93 3.67 4.38 8.1 11 8.69 2.29 9.16 1.97 4.95 10.6 5.44 8.02 1.2 8.59 10.5 2.63 0 4.61 9.8 7.06 9.36 4.92 8.43 1.85 9.17 8.01 9.15 0.41 8.24 7.8 6.94 8.58 6.27 7.55 2.19 8.64 2.19 11 2.91 12.5 0.41 14.2 14.4 12.6 0.41 9.13 9.95 9.51 8.34 10.4 12.1 9.73 9.18 10.4 11.6 10.8 11.2 1.85 11 10.3 11.8 8.92 10.2 9.38 10.4 9.93 11.7 10 8.05 11.3 3.74 9.08 5.2 9.66 6.17 9.7 9.6 9.44 10.9 7.43 6.32 8.98 6.39 10.1 10.4 10.7 9.35 1.39 10.3 1.56 12 12.4 13.2 11.1 10.6 10.7 9.55 9.24 10.9 9.43 2.19 10.9 11 8.45 8.66 11.1 10.2 6.45 10.8 8.89 13.2 11.6 12.7 12.1 10.4 11 7.07 8.95 11.4 6.31 1.71 9.45 5.71 14.9 14.3 2.7 1.88 10.5 5.63 3.29 8.37 7.08 7.71 6.37 2.47 11.1 10.8 10.7 6.72 9.42 12.3 9.83 10.4 7.17 6.67 7.9 9.4 10.1 9.71 7.15 1.39 5.29 9.81 1.56 3.14 8.79 0.41 3.51 4.26 7.22 5.65 1.85 10.4 8.59 0.98 10.9 0 4.21 0 3.47 7.92 11.8 5.39 10.6 4.42 11.5 9.57 4.36 7.92 7.9 8.13 12.4 8.46 10.1 9.76 12.9 6.67 13.9 12.1 12.1 13.4 4.87 11.8 9.62 6.64 14.7 8.87 9.34 8.44 7.18 9.82 9.84 8.75 8.49 6.95 12 8.07 10.2 7.48 7.49 7.68 7.18 8.24 7.73 7.16 7.9 11 9.27 9.04 10.4 7.51 8.87 6.15 9.29 9.88 10.4 6.97 10 8.9 8.22 8.07 8.31 8.99 7.88 6.93 11 5.81 1.71 7.24 7.63 7.83 8.61 8.24 9.34 7.24 1.39 9.91 4.63 5.59 8.66 8.68 0.72 0.72 6.07 6.42 6.32 12.2 7.17 3.34 4.79 5.18 3.05 0 3.29 9.38 8.58 7.4 8.88 7.85 8.27 7.77 6.59 7.08 8.65 8.01 6.13 8.94 7.95 10.5 4.75 10.3 11.1 10.2 8.69 12.5 3.34 7.86 3.03 10.8 5.53 10.9 8.14 7.5 3.29 6.17 1.71 7.05 7.68 7.52 10 1.2 7.79 8.72 8.61 7.73 8.27 3.29 10.1 8.1 7.88 8.52 8.75 11.1 6.33 8.23 9.31 6.89 5.38 11.9 11.1 6.73 8.16 6.57 8.51 2.97 7.77 7.06 8.08 6.57 8.33 8.5 8.76 0.98 0 6.61 6.22 7.8 5.79 12.6 10.7 9.4 13.7 10.5 11.3 5.22 10.5 3.88 13.1 8.61 10.5 6.23 7.43 10.9 13.1 9.67 9.29 10.5 9.33 12.3 12.9 3.9 2.55 7.96 7.63 8.89 3.93 8.62 10.2 11.8 10.4 10.2 10 11.2 12.1 8.65 4.87 8.99 1.39 10.3 9.73 6.22 6.45 8.57 10.2 9.94 4.99 11.1 4.13 6.06 3.59 10.7 3.55 11.5 10.1 9.62 10.4 8.31 9.01 11 10.1 9.29 2.19 9.8 9.42 8.35 4.42 8.79 10.9 8.31 4.45 15.3 11.1 7.69 6.39 8.61 10.1 9 9.29 10.3 6.6 10.4 10.7 7.46 9.93 7.17 10.1 12.1 8.32 9.32 8.18 9.16 8.41 10.9 9.97 10.9 10.1 8.71 7.37 11.2 6.11 4.45 10.5 7.07 9.26 9.24 9.34 12.5 9.9 10.2 6.48 10.5 9.4 7.98 7.52 4.02 9.72 8.13 9.7 8.47 8.56 10.5 10.7 10.6 9.77 7.7 8.66 8.25 11.7 11.3 6.52 9.84 10.9 12.9 9.81 8.37 7.75 5.87 9.9 7.41 4.83 8.34 9.46 6.3 8.57 10 7.96 12.4 9.29 7.15 0 4.15 8.1 12.3 9.61 10.4 6.05 3.67 9.31 8.48 8.34 7.25 8.73 9.07 9.07 9.79 9.08 2.38 12.8 12.1 11.2 10.2 11.6 9.68 9.07 7.63 4.34 9.91 1.39 1.56 0.72 10.4 7.07 10 10.5 7.7 0 4.05 0 6.25 1.97 7.06 9.89 2.7 5.38 8.25 11.2 8.67 7.74 1.71 11 7.57 10.5 6.26 2.63 5.36 3.44 11.5 8.36 7.06 2.7 9.69 11.9 7.51 8.66 7.99 9.34 9.81 8.49 8.9 9.78 12.7 9.88 10.3 9.48 10.6 9.48 7.93 6.46 11.1 10.4 9.76 8.55 8.95 7.78 7.29 9.6 7.92 8.72 4.75 5.87 7.78 9.3 12.7 9.55 3.19 5.49 9.74 2.68 8.42 4.72 9.3 4.84 8.92 8.53 6.3 9.99 7.96 8.67 10.2 8.79 9.91 7.61 2.29 7.73 10.1 8.17 9.16 9.6 10.3 10.8 4.95 10.5 7.02 8.26 8.14 8.99 9.08 7.38 7.77 9.78 11.6 9.04 6.45 7.95 7.53 8.66 10.4 9.35 9 8.67 8.39 8.64 9.34 8.59 6.52 8.68 8.67 9.84 3.67 7.81 8.63 9.28 8.29 8.14 8.63 7.86 8.56 9.98 9.12 9.01 9.06 10.1 7.52 11.2 8.61 10.5 8.29 6.94 9.3 10.6 10.3 11.6 10.5 9.97 0.41 6.77 11 7.11 10.6 8.36 6.3 7.98 9.19 4.31 7.65 9.67 7.9 8.9 5.04 3.69 5.99 7.37 8.11 8.75 0.72 10.1 1.97 9.11 8.68 8.39 9.67 2.09 8.46 8 6.8 7.79 10.4 10.7 10.2 8.16 10.4 4.45 8.65 8.44 9.66 9.13 7.67 9.5 9.62 3.96 9.18 11.3 9.42 5.68 9.88 10.6 9.43 10.4 9.42 9.23 7.63 8.91 8.21 5.29 0 9.17 5.71 7.66 8.53 7.09 11 7.18 10.3 6.96 6.43 3.08 8.76 6.92 8.27 9.51 2.29 6.6 6.74 3.03 3.38 8.36 9.56 8.12 7.11 9.82 7.53 10.2 6.03 10.1 5.15 6.3 9.5 7.66 7.25 7.29 2.91 7.28 6.22 8.03 6.55 8.79 8.28 8.56 7.26 1.2 4.4 8.08 2.47 9.27 0 6.56 8.46 7.9 2.09 6.29 10.4 8.66 10.5 2.97 7.32 9.18 7.67 9.21 9.34 9.85 10.5 6.17 8.75 9.77 2.38 9.24 10.5 9.24 9.7 10.7 8.9 7.58 9.95 10.4 9.56 6.27 8.57 7.66 6.47 5.83 8.04 9.52 11.2 6.52 7.9 0.41 11 8.06 8.14 5.94 7.46 8.78 10.9 8.63 1.97 9.34 8.72 2.97 5.65 7.2 6.56 4.7 11.6 0.72 9.42 4.24 7.11 11.1 9.78 6.47 7.93 8.64 3.4 9.87 0.41 0 9.05 4.47 11.1 6.28 10.2 6.22 11.1 8.97 6.45 12.1 4.99 8.08 8.32 10.1 5.51 8.86 6.96 8.43 8.44 7.99 9.53 8.97 4.45 8.47 8.28 9.55 4.26 11 5.59 11.9 1.39 6.16 8.83 9.76 8.53 8.78 7.65 3.59 7.26 10.7 10.5 8.33 9.83 10.8 8.84 8.37 8.4 8.53 11 10.8 9.74 8.77 9.92 6.6 3.47 0.41 4.61 5.8 7.87 7.07 8.97 2.13 5.61 3.67 0.72 8.21 9.92 12.5 6.39 7.48 11.7 6.99 1.97 0.41 9.04 8.75 3.59 5.88 3.93 8.42 8.8 5.02 9.86 9.5 10.8 9.48 10.8 9.9 8 11.6 9.59 8.81 9.59 9.59 5.26 11.6 7.06 9.51 8.62 8.01 8.24 4.9 6.57 9.99 5.39 9.65 7.71 10.2 9.13 9.89 8.82 9.15 9.03 9.6 10.5 10.6 10.3 9.59 10.9 9.3 10.9 8.68 10.4 9.11 9 7.63 10.5 9.47 6.99 9.63 12 8.56 9.17 11.5 10 4.11 10.8 10.6 6.58 7.02 3.99 8.76 11.3 9.12 5.64 9.18 8.34 6.1 9.43 9.08 10.6 9.78 9.29 1.97 12.1 9.02 11 9.29 10.2 9.24 10.6 7.79 9.4 8.41 8.7 9.15 12.5 9.97 7.11 5.27 8.67 8.33 9.24 7.14 6.34 6.05 9.99 7.01 8.47 8.2 3.29 5.92 3.19 12.1 3.08 7.18 11.6 9.04 2.48 8.08 5.73 11.3 6.91 8.24 11.4 9.09 2.47 9.95 5.13 9.56 7.19 2.91 11.2 10.4 12.9 9.12 6.01 9.57 11.5 7.13 9.05 4.99 5.02 10.7 8.55 7.32 11.2 8.43 10.4 0.41 12.9 9.3 0.41 4.42 7.84 7.18 8.03 9.75 4.36 6.39 5.03 0.41 9.49 11.5 8.42 4.95 9.32 7.35 8.12 7.39 11.9 6.79 11.1 13.3 9.35 11.6 10.8 12 8.08 8.45 9.26 6.55 8.6 7.02 9.44 11 10.1 1.97 6.61 2.7 10.8 10.2 8.73 10.8 8.53 9.49 5.8 6.57 7.86 3.72 10.2 7.42 8.78 7.05 5.45 1.85 9.92 13.2 9.29 3.47 4.68 5.8 2.63 9.14 8.3 4.53 11 10.9 14.2 3.99 3.74 0.41 6.41 4.9 11.2 12.2 10.4 5.12 0.72 8.73 11.9 9.86 9.64 3.08 7.56 0 2.09 12 7.95 8.91 11.1 8.63 12.4 9.78 6.08 5.27 9.27 8.79 10.2 3.14 10.7 9.57 9.81 8.83 8.28 8.68 10.2 6.25 9.74 9.11 12.5 0 8.1 8.6 9.3 9.19 6.23 9.12 9.71 5.5 10.2 9.42 7.31 11.3 10.2 9.65 3.9 8.91 9.83 8.68 4.68 10.2 10.3 9.65 1.85 8.26 12 10.3 6.82 5.48 10.2 7.25 9.31 10.3 6.07 11.9 11.4 11.4 11.7 11.6 9.68 6.96 11.8 9.51 0.41 10.2 10.4 1.39 9.56 8.57 4.7 7.74 7.67 9.65 4.11 7.66 3.29 9.11 4.77 9.44 9.36 10 9.64 8.99 9.88 9.61 5.29 10.4 9.13 9.68 9.93 6.15 9.18 8.93 11.9 9.52 8.48 11.3 11.2 9.54 8.79 1.59 8.64 8.76 1.76 9.59 8.98 7.5 9.18 0.41 3.93 5.22 9.41 10.4 1.2 10.3 11.5 6.78 11.9 14.1 8.8 10.5 7.58 12.7 8.54 0 8.52 9.42 9.15 9.08 13 7.16 11.2 11.5 12.5 10.2 10.9 10.6 7.34 13.2 9.33 8.12 9.96 8.39 7.41 9.45 1.85 7.32 3.34 10.8 11 7.09 6.01 8.7 1.97 12 12 12.3 9.75 3.03 11.9 8.54 10.4 8.47 10.7 8.74 6.59 4.38 11.8 3.51 13.1 12.9 9.83 8.52 9.49 1.85 0.98 9.12 1.85 0.41 0.41 10.2 1.85 8.04 1.71 3.43 6.04 8.46 0.98 2.38 2.7 2.29 0 0 6.18 1.71 9.41 10.9 10.5 8.21 6.69 3.93 1.56 8.82 11.5 8.11 0 8.99 5.41 6.87 8.79 4.84 4.95 7.97 8.86 10.7 7.58 1.39 7.08 9.44 7.53 8.17 10.4 0.41 2.38 0.41 5.19 8.05 0 3.38 7.97 14 10.4 7.61 9.32 9.86 0.72 9.38 0 1.85 0 0 10.1 6.92 4.95 6.81 8.74 4.94 8.17 8.61 0.72 10.1 9.86 12 9.34 7.28 0 4.55 8.4 11.9 9.89 0.98 7.8 12 8.88 5.66 8.81 5.2 1.56 5.86 11.5 0.41 10.7 9.94 9.37 0.98 7.06 11.3 9.14 6.47 9.12 9.85 1.2 0.72 9.33 9.58 7.48 8.68 7.48 8.9 5.74 6.36 8.51 9.87 5.7 1.85 3.29 8.04 3.38 7.01 10.9 10.2 9.73 5.98 9.98 10.5 2.55 6.3 8.33 9.43 9.53 9.83 0.72 6.16 5.96 8.59 4.82 2.45 9.24 5.6 5.17 8.32 7.28 8.19 9.64 11.8 4.84 8.42 8.04 4.42 9.91 3.03 5.7 0 3.43 0.72 5.17 3.59 4.21 0.41 2.72 7.62 10.4 8.4 3.24 10.4 8.97 7.37 8.97 10.5 6.64 9.86 9.89 8.24 8.51 8.86 6.82 6.5 6.09 0.41 8.64 11.3 8.65 8.72 5.74 10.6 12.5 10.7 8.53 8.44 0.98 4.08 8.56 0 8.99 8.8 3.19 7.49 11.4 9.01 8.88 8.37 10.4 4.05 8.61 2.29 9.45 4.7 2.55 8.14 11.3 8.24 0.41 9.32 9.63 9.48 7.11 7.82 12.7 5.12 5.15 0.41 3.55 6.69 7.18 9.22 10.1 10.4 9.67 5.86 5.07 7.85 9.19 3.47 9.82 6.68 4.53 8.23 9.02 5.82 7.15 9.1 8.69 8.65 7.21 8.68 9.99 7.48 8.91 9.79 9.18 7.61 8.11 6.78 7.56 6.54 9.09 9.91 1.39 8.95 7.97 10.4 5.75 10.9 9.28 10.2 8.62 8.34 11.5 10.7 8.37 9.23 7.95 3.63 7.96 6.15 10.5 8.37 8.13 8.53 10.4 0 0 6.51 9.63 11.1 9.74 3.81 8.84 4.98 5.43 7.34 6.36 7.61 9.35 6.02 6.7 4.29 8.28 7.06 7.08 5.2 9.21 6.27 11.2 10.9 7.47 8.16 6.54 7.69 8.32 9.33 8.29 10.9 10.3 4.61 10.5 6.06 6.21 7.17 7.39 10.7 10.9 5.92 7.86 8.84 8.88 9.24 10.2 7.19 9.16 9.77 9.33 9.64 8.9 9.84 8.4 10.8 8.17 9.11 9.7 6.17 9.4 9.45 5.19 8.78 11.6 9.23 6.42 9.69 7.43 9.68 8.76 8.68 9.73 7.12 8.27 0.98 7.98 10.4 8.26 8.86 6.78 8.89 9.86 8.26 9.59 5.68 10.1 7.62 9.58 8.6 6.7 8.55 9.74 0.72 10.9 10.3 7 11.4 9.53 6.8 9.71 10 6.98 7.63 8.55 8.91 9.38 9.42 6.74 7.98 5.44 7.25 9.49 1.71 10 9 10.2 10.1 9.49 8.02 9.32 9.67 9.27 1.71 10.1 10.8 9 9.17 10.1 4.29 8.81 1.85 10.5 4.96 10.8 7.07 9.97 6.75 9.25 8.82 1.71 6.86 10.1 9.38 9.26 10.7 7.99 10.3 7.29 7.24 9.76 10 9.58 7.33 8.46 6.36 8.44 10.1 10.1 8.45 4.08 0.98 0 9.17 9.77 9.01 10 8.31 3.99 6.97 10.8 8.36 11.2 8.14 10.8 5.8 6.19 8.1 10.4 8.03 9.44 6.56 4.08 8.64 7.29 9.2 9.87 7.35 10.5 4.24 7.32 10.3 6.09 9.28 8.78 11.8 7.13 8.47 8.6 0.98 11.6 7.89 7.72 4.19 8.91 10.5 5.04 10.9 10 10.4 8.45 8.59 4.59 6.44 8.32 5.99 4.19 12.2 9.74 6.17 1.85 1.2 7.42 9.21 10.2 6.98 4.66 7.86 11.6 4.26 0.72 1.56 1.71 9.2 12.4 8.21 10.3 10.8 7.42 7.58 8.55 8.93 6.52 2.23 8.89 9.57 11.5 3.24 4.84 7.12 5.22 6.27 7.06 0.41 10.7 9.52 0.98 2.09 8.34 8.55 9.24 6.55 5.58 10.2 10.8 5.96 7.19 12.3 8.44 11.2 3.63 6.61 4.66 2.3 11.6 8.4 6.98 10 7.16 10.3 8.45 5.27 8.17 5.72 2.47 7.8 7.28 9.42 12 7.48 8.35 6.3 7.65 9.26 9.55 7.22 7.81 6.09 6.5 8.9 9.44 8.23 6.76 5.09 1.39 8.24 9.77 9.54 5.55 8.77 10.3 0.41 8.83 2.63 1.71 7.09 9.72 11.5 7.7 8.41 0.41 4.16 8.3 1.39 8.13 7.06 8.01 8.17 9.14 8.27 7.78 9.29 7 9.54 7.14 2.91 3.59 7.65 8.24 10.7 8.23 8.5 5.02 8.51 9.1 10 10.4 9.04 9.6 0.98 9.2 10.4 4.72 8.98 10.2 10.3 9.38 8.76 7.82 6.53 10 9.43 6.14 7.13 9.92 8.49 9.07 8.72 6.65 9.23 9.81 9.16 5.9 10.5 9.19 10.2 2.09 6.6 8.59 9.04 7.67 9.22 11.1 9.79 3.14 9.58 7.44 8.95 7.32 8.18 9.15 8.66 7.17 10.7 7.47 5.08 8.79 3.84 8.57 8.76 7.78 7.66 8.08 9.39 2.91 7.61 2.38 9.01 8.26 6.59 8.16 9.17 12.5 4.47 7.03 11 7.33 8.22 8.87 3.74 7.02 9.26 7.75 9.64 9.26 4.59 10.3 7.56 1.56 6.54 0 8.18 8.96 10.9 3.5 2.63 10.1 10.1 9.67 8.64 10.3 5.58 8.47 9.39 0.41 3.29 8.56 9.21 10 7.51 7.1 11.8 8.84 8.43 7.82 8.26 7.85 8.59 8.67 9.64 6.15 10.8 11.8 8.86 3.99 4.85 7.45 1.71 1.39 8.69 9.8 6.77 9.35 7.01 6.59 0 8.22 8.54 5.42 8.88 8.6 1.2 5.4 0 9.89 8.85 12.3 8.78 7.98 2.19 6.2 1.71 2.55 9.82 3.96 8.39 2.97 8.52 9.7 9.35 8.83 9.4 9.52 9.99 1.71 8.92 6.38 4.55 9.44 10.2 11.6 10.7 8.1 11.6 9.29 10.3 0.72 3.77 7.43 0 9.06 11.3 4.84 14.2 9.25 9.46 9.9 6.29 9.08 9.77 9.02 8.99 4.26 10.6 8.37 9.82 9.16 4.96 11.1 9.15 9.47 8.08 10.5 8.03 9.13 8.33 7.99 11.8 9.81 2.38 5.62 10.1 13.3 7.58 2.63 8.65 7.71 0.41 2.78 9.02 4.01 4.74 11.8 7.74 9.63 7.37 3.81 11.4 8.63 10.7 10.1 9.08 7.33 9.83 12.8 10.1 9.35 8.86 9.79 10.7 3.84 11.1 10.2 9.29 10.2 4.94 6.82 11.3 8.57 9.29 5.51 0.72 3.59 9.22 9.41 9.87 7.92 10.3 2.19 6.53 11.3 8.98 9.08 10 5.65 10.7 1.2 2.63 10.4 5.93 8.38 8.62 9.57 2.09 9.23 3.51 1.2 8 5.89 0 8.68 11.2 9.55 8.59 5.7 3.74 5.64 6.72 8.7 3.47 10.9 10.8 3.38 9.89 9.59 9.91 11.1 3.43 8.12 11.3 10.3 11 7.55 12.4 11.9 9.61 11.7 11 11.2 11.4 11.5 10.4 9.7 10.4 10.6 11.3 8.44 10.7 6.25 8.32 10.8 8.06 8.6 11.2 10.9 5.26 8.95 10.3 9.3 8.81 9.62 4.36 11.1 5.51 9.91 9.13 10 7.31 9.57 1.2 0.72 12.5 9.06 12.1 10.1 9.09 5.64 12.2 11.8 11.9 9.59 11.4 9.79 7.71 9.9 4.98 11.1 11.8 9.82 8.36 11.8 4.99 10.2 8.08 3.08 4.26 13 10.8 14 7.2 0.41 2.55 0.72 8.98 10.1 12.1 10.2 10.2 11.2 12.5 10.4 11.2 7.31 6.5 9.71 10 9.52 11.4 9.21 6.54 9.35 4.13 10.9 2.29 2.29 2.02 6.69 8.17 3.03 9.41 8.73 11.5 6.98 8.19 9.67 2.55 7.19 10.6 11.5 10.2 11.3 9.26 1.85 7.27 2.47 1.56 9.49 9.26 6.5 11.1 10.5 3.08 9.94 6.38 4.36 6.11 2.38 12.4 6.77 12.2 7.33 12.5 7.31 8.22 4.92 9 9.04 5.31 7.39 9.93 9.83 2.7 2.7 9.72 12.9 2.55 9.84 10.6 7.6 2.88 12.8 8.15 7.2 9.51 11.2 2.63 11.2 1.56 8.9 9.96 8.08 9.3 9.1 8.94 7.44 10.2 7.2 9.42 10.3 9.19 5.33 5.78 9.61 12.8 11.1 10.2 10.6 8.95 9.48 9.06 10.6 12.2 11.3 9.61 9.2 8.37 9.59 9.82 10.5 11 10.3 10.6 11.2 10.4 0 5.75 1.97 11.4 6.93 10.5 10.4 7.18 1.2 6.89 10.2 1.71 4.68 8.65 1.2 9.21 8.32 9.1 9.95 10.7 10 7.55 6.26 1.63 9.29 10.3 10.7 10.8 11.7 8.05 9.61 10.1 13.1 8.69 4.68 11.7 9.62 9.79 0 3.67 3.43 10.4 6.29 3.93 10.1 8.13 11.7 8.97 2.29 9.44 9.1 6.6 6.93 8.83 9.95 5.47 7.14 1.71 5.53 3.9 1.97 8.97 6.19 8.66 9.02 11.8 8.35 5.64 1.71 10.1 9.58 9.08 8.4 3.64 8.78 2.97 0.98 7.1 5.64 8.31 10.8 8.35 6.44 9.49 10.6 11.5 9.74 0 11.8 9.83 11.2 9.98 10.5 4.49 10.2 7.97 9.01 7 9.04 6.32 9.79 10.9 12.1 5.06 3.08 6.33 8.85 6.07 9.62 11.4 6.54 9.72 9.47 10.3 4.85 9.23 11.3 8.02 5.8 5.68 6.88 2.78 12.2 10.7 8.78 9.38 9.32 8.99 9.8 6.8 2.09 1.2 10.3 6.72 1.71 2.78 4.89 8.34 11.6 8.77 9.35 6.59 1.97 6.02 7.06 8.42 11.6 10 7.16 8.82 9.26 7.9 2.78 4.31 8.67 9.72 4.66 4.57 5.68 6.69 9.45 11 8.07 8.43 3.67 9.92 5.9 6.73 9.71 9.77 9.22 12 8.62 7.25 6.31 7.81 11.8 9.24 9.08 12.3 8.44 4.87 3.38 2.38 9.72 4.74 10.6 9.73 9.36 6.78 7.11 10.3 3.87 7.43 9.47 6.63 0.98 8.37 10.6 10.6 7.04 10.9 8.49 7.29 9.56 7.59 8 0.72 6.03 8.65 7.37 11.2 10.3 8.2 8.31 7.29 8.31 7.64 8.65 9.05 8.29 2.09 4.19 6.62 9.72 4.57 10.5 7.21 9.76 9.46 8.86 8.21 2.7 12.9 8.09 10.4 5.58 9.67 12 6.69 9.12 9.1 7.78 7.67 10 9.44 3.29 12.7 10.4 6.04 10.1 9.13 5.21 1.39 11.3 10.2 10.8 10.4 9.64 5.89 9.85 10.2 9.54 5.75 10.2 7.93 8.19 7.6 8.55 3.67 10.7 11 10.2 8.14 9.51 5.66 10.1 8.39 7.89 9.36 7.33 9.64 6.06 3.14 10.2 9.89 8.82 9.61 6.13 8.18 5.5 8.63 11.4 8.2 8.73 9.06 7.75 3.51 0 6.78 7.02 7.16 11.2 9.49 11.6 10.9 6.16 11.2 9.65 2.47 9.11 9.36 7.79 11.4 9.4 7.81 2.84 10.4 10.1 11.1 11.5 10.2 5.49 1.39 4.96 4.61 10.7 8.6 1.56 6.91 8.68 8.44 10.6 6.28 10.3 10.4 7.18 5.25 8.16 11.1 9.49 8.26 8.96 5.99 7.52 7.95 12.2 5.59 10.3 10.9 0 10.5 11.2 9.61 9.63 1.39 9.15 3.93 9.15 8.82 5.86 6.57 6.48 9.86 3.29 8.32 10.1 9.99 7.57 9.42 5.13 8.74 8.57 4.77 10.1 6.47 7.78 0 8.85 7.58 9.24 7.46 2.19 11.1 6.98 10.5 14.3 6.38 9.66 11.3 7.87 6.57 1.56 7.87 8.67 5.85 6.82 5.42 11 10.6 8.07 6.58 6.15 1.71 11.2 10.3 7.89 9.72 9.13 10.4 7.54 4.72 10.6 7.53 8.07 9.26 10.1 10.4 7.02 9.79 9.42 9.19 9.53 7.76 9.93 10.1 6.01 5.21 9.2 6.94 6.42 7.2 11.5 0 9.8 4.99 8.37 8.78 8.08 3.08 7.35 8.53 8.72 6.74 7.69 5.57 7.77 10.9 10.1 10.3 9.07 7.78 9.24 11.6 10.7 6.37 4.59 8.83 8.99 8.27 4.45 8.23 10.4 5.33 11.2 8.37 9.09 5.67 10.7 9.76 11.2 9.37 10.5 1.2 8.49 10.8 8.95 9.25 2.19 6.65 8.72 6.77 9.19 6.42 1.97 6.95 6.73 6.24 2.63 8.89 0.98 5.38 11.2 3.99 11 9.81 8.08 5.33 9.6 8.35 7.08 7.3 7.25 12.1 9.78 11.5 0.72 9.13 10.9 9.27 4.74 10.8 8.96 4.31 9.55 8.59 1.2 9.28 10.4 8.25 1.56 9.01 5.44 4.21 7.95 7.98 6.35 10 10.8 10.1 8.49 11.2 9.13 4.52 7.89 9.87 4.11 9.71 9.69 11.5 7.39 7.29 9.73 10 7.35 11.1 9.12 9.61 10.2 8.85 8.58 9.42 9.42 9.71 8.37 9.52 3.43 10.7 11.3 9.66 9.02 4.33 10.3 11.7 8.89 5.42 9.71 9.49 2.63 9.67 7.08 9.39 12.3 9.8 2.29 8.79 10.2 9.12 8.01 7.17 4.38 11.2 11.6 7.77 6.28 9.76 9.39 8.69 0 7.62 2.38 2.19 7.06 9.09 7.15 8.3 6.04 1.56 6.48 10.4 8.23 3.03 10.5 9.29 10.2 8.76 10.6 7.07 4.05 9.67 9.87 8.77 10.6 6.8 11.1 9.7 9.95 10.6 3.63 10.8 9.27 9.58 9.93 8.82 7.24 9.24 6.36 7.99 6.51 1.2 13.3 9.47 8.06 9.47 7.57 9.54 11 9.47 1.2 11.3 8.83 11.2 6.09 2.29 11.4 12.9 0 8.75 8.04 9.8 9.29 10.8 0 6.97 2.97 3.38 6.03 6.53 6.76 9.21 11.1 9.31 0 12.6 8.56 9.87 9.8 1.85 8.09 8.98 10.8 6.54 2.65 9.12 9.84 8.77 11.2 8.59 12.2 8.61 9.22 10.2 12 10.8 1.56 7.72 10.6 2.38 10.2 0 9.71 0.41 4.51 2.63 10.9 8.89 9.74 3.96 9.16 9.16 11.6 0.41 4.92 7.06 9.15 7.89 4.05 10.2 11.8 6.67 7.21 6.29 4.08 2.38 11.5 5.39 5.66 2.09 6.68 8.38 9.76 7.04 9.63 10 1.85 9.01 8.53 1.56 9.03 9.08 10.9 9.66 9.85 12.9 8.79 8.12 6.61 6.77 9.61 1.39 12.1 5.6 2.91 11 7.98 6.24 5.11 9.85 5.85 12 6.38 6.04 10.5 8.84 2.09 2.7 4.74 2.91 5.67 1.39 9.39 3.74 9.58 7.45 7.89 8.32 10.8 16.2 9.9 2.29 11.1 5.24 6.41 9.01 5.94 9.41 9.62 8.11 7.41 8.56 4.05 10.2 8.96 8.19 8.84 6.54 4.42 10.9 8.28 10.8 8.46 9.65 9.32 9.61 10.9 8.67 9.52 4.51 9.04 7.48 9.14 9.04 6.81 7.87 9.89 10.7 11.9 5.66 9.35 8.71 4.38 3.24 10.5 12.5 12.1 8.78 3.81 8.39 6.68 8.01 12.9 11 10.1 9.72 0 12.7 11.9 10.7 6.96 2.97 12.3 9.05 9.89 10.6 9.86 11.1 10.6 12.2 10.5 10.3 6.84 9.76 6.57 8.54 8.57 6.43 8.78 8.31 10.9 9.05 9.12 8.91 3.99 9.78 8.08 13.3 11.2 10.8 11.1 11 10.1 10.2 11.4 9.8 9.27 10.2 1.71 8.44 11.6 12.6 10.2 8.69 10.2 8.6 10.1 9.53 7.98 10.4 12.6 10.2 8.14 10.8 4.4 8.56 12.2 7.2 12 8.58 12.1 10.3 1.2 12.5 11.1 5.22 1.85 9.68 10.7 12.8 9.29 10.3 9.93 10.7 10.1 8.81 11.7 11.4 10.1 7.29 10.8 8.77 5.67 11.8 2.97 2.78 0.72 8.08 2.47 8.12 11.4 6.36 1.2 7.56 8.96 5.83 10 10.5 7.9 11.6 8.94 9.36 8.85 9.94 9.21 10.7 9.27 8.5 10 8.25 10.3 10.6 8.32 8.85 10.2 8.18 8.05 10.4 13.8 10.1 6.9 10.1 10.8 10 11.2 7.37 11.2 13.8 10.1 0.41 10.7 9.54 9.39 9.77 8.43 9.9 9.63 9.58 12.4 8.29 9.7 10.2 9.22 10.8 11.9 7.4 10.1 11.6 3.74 11.2 9.2 10.4 9.37 9.85 8.65 9.07 11.3 7.47 6.67 6.85 5.36 9.99 9.57 12.7 8.94 1.39 9.76 4.36 12.2 5.96 9.65 9.54 8.57 5.77 9.31 3.43 6.44 5.11 13.6 6.71 3.63 10.2 11.1 9.52 11.5 10.5 2.78 9.47 9.74 9.19 10.2 7.87 8.08 11 7.97 8.7 10.4 3.08 13.8 11.3 9.4 5.33 11 8.62 10.7 9.1 13.7 6.93 8.87 7.43 7.9 9.52 9.95 8.87 10.4 3.93 13.6 10.6 9.46 9.86 11 8.2 5.17 13.4 8.22 6.97 11.6 11.3 11 10.6 11.6 10.9 11.3 2.63 10.4 8.73 12.6 8.26 11.5 11 7.61 4.31 10.5 9.22 10.4 10.3 9.74 10.3 9.35 7.35 9.85 12.1 6.75 9.93 12.8 11.8 12.6 11.8 10.3 4.87 12.2 9.26 10 11.5 9.45 10.1 7.88 10.2 9.56 8.33 10.5 9.7 9.75 5.91 9.35 10.4 7.42 10.4 8.04 5.87 9.56 8.46 1.39 5.09 1.56 9.31 7.11 9.4 9.66 4.66 8.04 9.68 4.53 6.06 8.47 9.4 9.74 9.66 9.77 9.68 9.74 8.04 7.72 4.65 9.46 10.5 9.08 7.59 9.95 11.2 8.8 8.86 9.32 11.1 12.3 9.58 11.2 10.8 9.18 9.21 9.92 9.93 11.5 10.3 9.89 9.45 7.5 8.54 11.4 11.8 9.17 10.7 10.7 10.8 9.62 11.6 1.56 7.44 9.82 10 9.05 9.79 11 5.13 6.08 5.98 9.56 10.8 10.2 9.38 11.4 9.03 9.29 11.7 9.47 5.79 6.78 5.99 7.9 10.2 5.08 10.3 10.2 10.1 11.2 11.3 11.5 10 9.36 10.4 9.48 11.1 11.6 2.63 10.3 5.13 10.7 8.5 1.85 8.25 7.57 8 7.25 10.5 9.43 3.99 7.61 5.04 10.5 5.56 8.88 12.8 9.17 2.19 9.94 1.2 1.56 5.65 11.5 9.08 10.2 9.25 13.8 10.1 7.88 3.24 11.3 9.86 10.9 9.55 2.95 9.82 9.87 9.91 5.41 9.43 12.3 9.61 8.18 5.85 8.29 11.9 10.5 10.6 12.7 10.1 11.5 3.81 11.8 8.06 9.33
TCGA-3S-A8YW-01 4.36 10.3 9.28 10.4 7.45 9.43 1.41 3.91 2.48 1.62 2.42 9.06 7.11 5.41 6.48 9.22 10.8 10.6 4.49 8.72 11.5 10.4 9.59 2.11 8.65 8.34 4.69 9.85 3 5.09 5.5 6.79 1.62 6.7 2.77 4.31 0 8.11 2.36 5.33 4.47 5.23 4.67 0 4.57 4.03 0.5 4.52 11.5 4.25 4.82 5.88 9.38 7.59 6.72 1.17 6.58 0 6.2 6.92 7.89 6.48 6.02 1.61 1.8 2.93 4.01 6.24 9.16 3.88 2.47 4.32 1.8 6.81 2.67 4.1 5.12 6.58 5.24 1.62 4.04 1.8 1.3 9.36 3.08 3.21 6.02 0.87 5.02 3.56 10.9 4.91 7.36 6.39 3.32 4.91 1.62 0.87 5.39 0 0.5 4.87 1.17 5.68 5.13 2.36 6.96 8.04 9.45 6 0 0 7.7 4.49 4.66 2.24 1.8 3.51 2.77 5.21 5.63 5.58 0 4.1 1.17 6.67 5.26 2.11 4.3 9.91 3.23 4.72 4.44 4.67 1.62 2.67 4.87 1.96 4.03 9.73 8.87 10.6 5.36 3.21 6.14 10.6 0 10.6 2.54 4.93 5.39 0.5 8.58 11.2 11.4 3.01 2.93 1.18 10.6 7.13 6.1 4.98 6.4 1.8 7.02 6.96 6.01 3.08 10.7 5.02 10.7 8.35 2.93 5.04 4.17 1.96 6.4 2.24 8.02 5.9 5.29 6.29 4.07 3.4 5.68 2.68 6.74 1.17 8.98 5.55 9.79 7.73 3.67 5.06 3.56 3.36 3.45 10.4 9.26 9.22 3.34 10.2 8.49 9.94 7.03 8.97 5.8 9.83 10.5 10.1 4.38 5.45 11.1 11.5 10.7 8.08 10.3 11.1 3.61 10.5 8.83 9.73 11.1 11.4 7 9.66 1.8 10.9 9.42 12 9.07 3.51 10.7 9.17 9.18 7 10.7 2.77 9.48 8.65 7.14 7.37 12.1 11.8 12.8 11.1 11.8 11.9 5.8 12.3 12.3 2.11 2.67 11.3 11.3 9.75 12.1 12.1 0.5 13.3 2.67 8.67 8.77 10.8 7.3 11 5 11.3 11.6 9.75 7.31 6.84 9.21 10.2 12.6 8.34 0 12.1 13.8 11.1 11.9 10.9 10.5 8.15 10.7 11.4 9.41 9.56 11.1 10.3 4.36 2.67 9.99 7.49 9.83 10.8 3.08 13.4 8.87 6 8.23 11.3 9.58 6.72 10.8 11.3 0.87 8.17 7.64 8.05 13 10.3 7.89 9.46 7.36 10.1 10.2 1.17 9.08 9.05 10.3 10.5 8.03 9.41 9.53 12.1 12.9 9.34 10.6 10.2 9.75 9.51 12.1 7.63 10.1 9.96 8.84 7.86 7.96 6.56 10.8 9.76 9.01 9.14 8.17 14.4 7.56 8.48 11.4 11.7 10.9 2.14 7.98 0 5.35 8.99 6.09 10.7 2.24 5.32 6.79 9.89 12.4 11.4 9.8 7.48 5.78 13.5 9.41 3.4 5.21 11.7 10 11.4 10.7 6.99 8.76 10.7 3.15 10 9.18 9.78 9.74 9.71 10.5 10.7 3.99 8.07 6.56 9.13 9.34 8.55 10.8 8.09 4.23 11.4 10.1 4.17 9.03 7.65 7.44 9.61 12.4 9.62 9.81 12.1 8.19 11.3 10.2 9.81 7.82 8.01 11.3 7.96 8.71 11.3 9.62 9.39 8.31 7.16 9.35 11.6 4.6 11.2 8.4 10.1 10.3 11.7 3.41 10.3 9.21 13.6 10.6 9.78 7.16 8.05 7.64 9.82 7.9 10.3 10.7 11.5 10.7 0.5 12.6 6.55 8.06 7.54 3.56 9.82 0.6 7.03 5.21 10.3 9.28 9.44 8.37 11.7 5.3 5.71 5.55 9.64 11.2 1.62 11.1 8.92 2.24 4.17 2.11 8.92 6.45 1.17 11.6 6.23 11.7 9.6 8.16 10.1 9.06 3.95 15 11.8 0 10.1 9.06 6.65 12.8 9.26 8.87 7.63 4.07 8.43 8.31 4.98 12.7 7.76 7.39 6.74 8.16 10.6 10.2 15.1 7.87 9.24 9.42 9.46 5.19 9.16 8.35 7.83 0 9.36 3.87 13.2 7.98 10.6 9.93 8.47 5.32 11.8 6.47 11.7 11.8 11 11.1 10.1 8.47 9.33 9.99 7.95 10.2 10.8 10.5 8.01 11.4 12.9 8.27 10 10.9 9.47 10.4 11.3 0.5 9.47 6.9 5.06 10.1 9.83 11.2 10.1 10.7 11.6 13.8 11.9 8.71 11.6 8.58 2.47 10.5 8.33 9.44 8.72 9.93 8.63 10.4 7.91 9.87 12.7 10.5 10.9 9.21 11.9 10.5 9.03 7.31 12.2 10.9 10.6 9.08 4.3 11.4 9.23 10.2 10.4 10.4 11.5 10.1 11.4 7.66 8.87 10.7 6.08 6.33 11.1 6.84 6.61 7.44 8.52 11.1 10.3 9.16 9.42 11.3 7.24 2.24 7.33 11.3 11 7.14 12.5 11.2 11.1 10.7 12.1 10.2 11.9 12.8 9.62 1.8 11.7 10.1 9.87 10.2 10.2 13.8 7.63 11.6 10.1 12.3 12.3 10.4 6.98 10.7 10.2 11.6 4.38 10.9 10.9 10.3 8.35 9.25 9.38 10.3 7.24 6.22 7.84 11.2 4.13 9.72 10.5 9.96 5.72 9.53 3.15 9.7 3.08 10.8 11.7 13.5 12.7 12.9 10.8 8.48 11.3 7.61 4.95 10.1 8.36 6.21 9.58 8.42 11.3 12 10.4 9.14 12.3 1.62 7.41 12.2 8.05 9.52 9.3 6.11 9.4 12.7 11.7 10.6 10.7 10.8 10 6.49 10.3 11.1 10.6 11.3 10.5 11.1 8.54 7.03 8.29 7.6 9.66 11.7 10.8 12.6 11.9 9.61 10.8 11.2 12 2.24 10.1 9.32 9.14 2.02 6.62 9.57 9.1 11.3 9.19 11.8 7.68 10.3 11.2 12.8 11.9 4.41 12.3 10.8 7.62 5.19 3.75 5.95 10.2 2.93 8.39 7.15 8.63 10 9.17 10.7 5.57 2.85 5.58 8.72 8.89 9.69 2.77 3.21 9.73 6.97 0 7.36 12.5 10.1 3.99 5.09 8.59 2.93 10.4 10.6 8.86 1.68 8.4 14.4 7.1 10.9 11.1 8.65 12.1 14.1 8.09 11.4 8.15 8.45 3.67 10.1 7.48 4.48 0.5 1.35 9.26 3.83 9.93 1.17 6.94 8.56 1.62 4.67 9.92 13 5.88 2.93 11.6 9.91 2.47 10.1 7.38 10.5 10.4 9.4 10.5 8.21 10 10.6 7.5 9.45 11.4 8.84 6.12 9.26 9.2 7.12 9.44 11 6.26 9.09 6.84 4.55 8.7 11.1 7.9 0 3.21 13.3 8.17 1.41 0 10 10.4 11 11.7 4.91 7.59 9.64 0.5 6.03 6.79 8.84 5.55 6.01 7.98 7.23 0.5 2.36 1.96 11.4 9.62 3.91 12.3 10.7 8.94 6.83 11.8 10.1 0.5 5.71 5.53 8.69 10.3 10.7 10.5 9.63 10.4 7.38 5.16 9.05 8.42 7.69 0 3.08 9.33 10.1 1.17 1.62 11.5 6.94 8.7 6.56 3.7 1.62 10.7 9.39 12.3 9.8 3.01 10.3 10.4 7.95 11.1 7.41 11.2 11.1 10.2 9.18 5.86 8.8 2.85 11.4 9.93 10.8 0 11 9.99 12.8 10.7 11.5 9.78 7.42 9.39 11.1 10.3 0.87 12 2.24 11.9 1.96 10.6 11.6 8.55 9.65 8.39 12.1 11.4 10.8 9.49 10.1 12.2 10.5 10.8 10.3 11.2 8.31 10.3 13 10.6 12.9 11.6 12.8 8.2 12.7 11.9 9.11 9.23 10.2 12.7 11.9 12.2 9.2 11.7 10.6 8.59 6.34 11.2 8.56 7.58 11.8 4.97 12.9 10.3 12.1 11.7 2.36 2.11 13.1 9.48 10.4 7.97 8.72 7.12 5.16 10.1 7.98 10.7 4.28 6.35 8.11 9.94 1.62 11 7.65 10 8.85 9.46 9.35 6.37 8.72 11.8 6.07 1.62 6.22 3.28 4.69 6.98 8.97 7.24 10.5 7.83 6.74 10.8 10.9 8.09 7.72 9.11 0 8.63 12.5 9.22 10.4 10.9 11 9.87 11.7 9.44 10.8 9.73 7.22 0.87 8.96 10.6 10.1 11.2 8.97 7.56 12.1 9.99 10.3 9.32 5.69 6.46 9.88 11.4 13.3 7.51 4.82 10.4 10.8 7.19 7.76 7.07 3.87 4.62 9.18 9.24 5.88 12.2 6.6 8.43 10.1 8.11 3.61 10 8.66 8.96 10.5 6.38 9.53 10.3 9.21 9.56 8.61 6.55 10.2 2.24 7.88 9.18 10.2 1.17 10.9 1.8 9.56 7.09 11.9 3.91 10.9 9.35 1.96 12.6 9.74 10.2 1.17 6.32 6.82 7.1 0 4.13 9.9 9.91 5.55 6.18 4.07 9.66 9.06 8.02 8.8 10.6 10.6 9.43 6.43 8.78 10.5 8.91 9.96 10 8.39 2.58 4.87 11.9 8.54 4.65 11.2 10.8 6.49 8.62 4.36 12.4 5.11 9.1 7.84 3.21 9.83 12.9 10.1 0 8.46 10.7 7.03 8.02 10 9.61 12.2 10 7.84 9.42 9.07 6.47 7.74 9.56 9.69 9.77 9.38 8.84 5.24 8.41 3.83 8.55 9.03 10.7 5.38 14.1 11.7 5.74 6.17 6.98 8.17 9.83 8.49 9.86 8.88 9.6 6.28 5.19 10.5 8.61 7.23 6.25 10.6 9.08 3.79 7.14 7.61 4.76 8.96 2.77 7.14 8.17 10.2 0 1.97 9.05 10.6 8.7 7.77 9.76 7.44 6.03 12 5.96 10.5 6.39 7.48 7.72 8.07 9.32 11 9.39 9.03 7.8 0 4.95 8.24 12.8 11.4 8.96 9.38 6.33 9.69 9.95 10.3 7.62 5.3 1.62 8.76 4.61 11.1 9.99 8.39 6.69 9 9.04 9.09 9.65 10.6 10.1 9.14 7.91 6.98 7.65 11.7 8.53 7.99 7.26 9.79 7.36 10.6 10.9 7.67 11.1 12 4.74 11.6 8.78 7.23 10.7 7.43 0.5 9.75 9.46 5.5 6.86 9.69 10.3 12.6 5.26 9.39 12.1 12.1 10.4 6.89 6.97 6.55 2.47 9.68 9.2 0.5 13.5 10.2 11.9 8.64 11.5 10.4 12.3 12.2 8.13 9.08 9.05 0 10.1 9.56 6.35 9.61 9.33 10.3 4.36 10.1 0 9.69 8.26 5 6.98 6.05 6.4 10.3 9.76 2.05 13 8.18 10.9 7.92 8.54 6.43 10.5 0 9.41 1.8 7.65 8.61 1.62 4.62 10.3 6.63 1.62 0.87 8.31 7.5 3.7 7.27 7.9 3.39 4.33 0 1.17 5.33 3.99 6.56 7.37 8.81 7.72 8.61 2.36 7.82 5.64 5.78 11.2 6.74 9.04 9.49 8.79 2.36 9.52 6.97 4.82 8.88 3.87 6.92 3.83 3.61 9.3 2.58 4.17 4.6 6.4 11.4 10.9 0.5 7.95 7.85 8.46 5.91 9.31 8.38 3.87 8.68 9.52 9.27 5.14 7.79 7.02 2.24 5.5 3.01 6.99 1.62 9.98 11.5 10.3 10.2 5.86 11.2 10.6 9.25 4.78 7.74 6.64 8.26 7.04 3.28 9.42 10.7 9.22 7.36 0.87 6.92 6.47 13.5 9.55 8.75 9.06 0.87 4.1 8.56 8.29 10.2 12.9 5.6 1.17 7.72 9.36 9.36 8.56 10.5 7.25 8.79 8.6 11.1 7.2 8.2 5.52 5.83 6.11 1.41 6 3.51 3.83 5.79 7.86 10.4 3.45 8.53 6.11 1.17 5.63 8.64 7.56 0.5 10.6 11.2 2.58 7.23 7.92 0 0.5 11.1 8.62 8.91 6.92 7.48 10 6.81 9.77 8.06 10.4 8.5 9.6 11 7.28 6.01 2.85 8.15 9.05 8.81 8.94 10.9 8.21 6.57 11.5 5.38 4.6 0.87 7.38 0.5 9.62 7.1 3.01 4.13 3.28 4.17 11.5 1.41 0.5 9.3 9.55 5.02 10.8 9.92 3.91 4.1 7.63 5.81 10.1 10.2 2.93 8.05 3.56 1.17 5.35 11.2 9.82 11.4 8.24 8.04 10.7 8.59 1.62 8.54 5.3 3.51 3.79 10.6 8.07 0.5 12.1 6.07 3.7 6.3 12.4 9.95 10.5 0.5 3.95 4.49 9.77 8.67 5.81 2.93 11.8 1.96 5.82 9.66 1.8 7.48 10.4 8.56 7.73 0.5 7.2 4.44 8.46 3.99 10.1 10.2 7.39 7.76 7.8 12 7.35 0 5.33 8.22 6.46 9.96 9.62 8.78 11.2 8.7 6.97 1.8 8.06 8.88 11.8 12.3 9.16 1.62 4.93 9.95 8.36 5.7 10 11.3 9.74 6.71 10.8 4.82 8.21 10.2 10.4 11 8.7 10.7 7.33 1.62 7.68 8.06 8.55 11.1 5.38 5.63 7.99 9.24 11.6 5.13 8.91 11 2.47 3.34 9.8 11.8 10.9 10.7 9.79 6.09 7.15 12.9 0.87 9.8 7.14 5.35 4.38 8.42 11.1 4.47 11.2 11.3 0.5 0.5 1.17 7.09 1.17 6.85 5.81 7.12 5.73 9.18 9.22 5.5 6.5 10.6 8.6 3.99 7.9 8.29 8.49 3.45 8.13 9.12 6.34 9.97 7.06 8.93 11.2 1.41 10.7 7.17 9.61 0 8.75 5.68 7.85 7.54 2.47 7.79 6.99 4.28 3.79 7.27 8.39 5.09 2.11 8.73 4.67 1.8 8.07 9.85 3.15 6.61 0.43 9.33 2.11 6.89 8.5 6.52 11 12 9.58 8 6.49 0.87 12.2 10.3 4.82 2.58 9.35 10.3 7.63 11.5 10.9 4.22 8.36 10.1 7.98 11.7 10.5 3.56 4.85 8.9 9.83 6.46 3.79 3.4 8.44 10.9 10 5.1 0.5 4.69 6.42 0.5 10.2 8.96 9.22 10.9 6.39 9.29 6.33 5.29 11.2 10.5 2.47 8.68 10.9 6.17 6.4 15.2 8.96 8.54 2.97 8.66 0.87 9.58 8.79 1.41 6.99 2.11 6.21 11.3 6.5 10.8 9.58 3.01 5.64 4.65 5.36 2.85 8.71 5.93 6.66 9.1 4.49 11.4 1.17 1.17 10.1 3.21 1.17 4.3 3.56 7 8.1 9.49 10.1 7.65 6.66 10.8 11.4 4.85 11.3 10 6.34 5.54 4.67 9.5 8.96 0.87 8.24 8.44 11.7 8.35 6.46 10.5 6.81 2.47 1.41 4.13 8.89 12.3 7.66 9.1 9.97 1.17 1.41 8.12 3.15 5.11 1.17 5.63 4.57 5.53 0 2.41 7.52 9.74 5.7 8.82 2.67 3.83 9.63 9.19 4.87 7.8 6.26 1.46 8.45 10.3 5.46 6.41 0 10 13.9 7.48 7.54 1.8 13.3 10.5 5.02 0 5.46 5.69 5.96 11.1 4.23 8.89 6.38 13 6.79 9.23 10.9 0.87 6.35 5.79 9.16 11.3 10.5 10.3 3.01 8.84 1.17 7.39 9.27 11.3 1.41 8.84 3.21 3.21 4.6 3.4 6.5 3.28 8.84 6.45 2.77 1.8 6.26 3.51 12.2 9.87 12.1 8.08 7.66 10.2 2.67 9.34 11.5 8.9 12.3 9.08 4.6 11.5 7.31 11.8 8.63 8.23 5.83 4.36 8.54 10 11.1 10.3 6.06 8.96 9.58 7.81 10 5.33 8.01 7.66 7.58 6.8 4.65 0.87 6.76 4.8 11.8 6.22 5.18 5.69 3.87 2.77 7.86 7.62 5.35 8.54 8.74 6.57 8.89 8.3 0 9.36 5.08 6.05 8.81 8.98 6.13 9.35 9.72 1.62 6.5 8.46 0.5 6.22 7.5 8.48 6.72 9.45 2.67 8.68 2.36 0 8.45 6.13 6.06 8.48 1.62 10.9 11.5 7.97 2.11 9 11.2 0.5 4.62 8.27 10.5 10.9 9.2 8.38 0.5 9.44 8.51 0 8.17 4.87 3.75 7.99 10.1 7.82 8.02 6.9 7.98 0.5 1.45 6.48 10.9 8.59 9.03 0.87 6.47 3.04 6.72 8.55 7.56 13.3 7.01 8.69 9.44 8.37 11.6 6.99 8.25 3.4 9.44 7.89 3.08 8.42 5.92 1.96 8.97 5.64 5.18 9.44 8.95 12.7 8.66 0 3.01 8.22 5.8 11.7 5.04 6.29 9.25 9.8 5.35 8.46 5.99 7.49 7.5 4.85 9.05 1.17 8.95 12.2 8.92 3.4 4.38 9.25 5 7.84 11.3 5.69 11.1 5.69 9.52 11.9 11.7 10.5 9.39 1.68 6.99 8.54 8.28 1.41 8.54 2.58 9.89 2.36 10.9 2.39 2.36 0 3.7 7.02 7.9 0 10.5 0 1.17 10.3 5.19 1.17 10.7 9.18 11 8.89 6.56 5.36 5.93 5.11 8.48 6.59 7.39 5.06 11.6 8.91 9.51 9.95 8.38 9.2 2.36 5.32 3.95 8.74 3.4 4.36 10.6 6.7 5.02 10.4 6.32 1.41 5.06 5.68 5.57 5.93 6.67 0.87 5.3 8.85 8.78 3.28 3.01 9.59 6.88 7.56 6.92 11 9.3 1.41 10.9 10.1 8.77 4.55 7.31 6.93 1.17 4.72 4.41 8.75 6.2 13.5 12.2 4.95 9.1 1.17 8.08 6.15 6.7 10.2 12 5.62 5.56 2.6 10.1 8.38 10.1 8.1 11.1 9.7 7.06 6.31 8.57 11.6 2.77 0 8.47 10.1 6.08 0 7.62 8.43 4.1 0.5 7.52 3.66 4.38 3.21 8.69 8.97 7.09 8.75 8.94 7.27 7.34 4.23 10.2 7.94 9.31 6.56 0.87 9.79 9.21 4.95 9.57 10.6 6.6 7.18 7.4 0.5 9.79 4.26 9.78 0.5 9.64 2.24 9.74 1.41 7.39 9.75 2.58 0.5 12.5 10.3 6.59 2.85 2.58 3.08 2.31 3.56 1.17 7.17 9.12 2.47 9.12 10.2 5.86 12.9 8.9 9.68 11.5 6.93 6.15 10.5 11.6 7.68 6.95 9.08 8.52 1.96 5.24 8.03 5.66 5.32 5.41 5 6.54 8.89 9.29 8.11 5.13 0.5 4.62 9.74 6.69 8.77 9.16 5.54 8.04 6.42 1.8 3.56 8.85 8.76 4.03 4.93 12.2 8.31 4.3 8.64 11 7.69 3.56 7.39 4.2 11.4 9.56 9.65 4.58 8.3 5.82 10.9 6.43 6.23 7.05 12.2 7.67 6.08 11.7 2.47 0.87 6.67 12 2.77 6.85 11.2 6.9 0.87 8.81 5.13 11.2 0 6.81 9.2 5.85 8.94 10.6 8.25 6.35 3.88 4.88 3.15 7.42 9.3 2.58 9.33 3.4 0.87 11.4 8.35 3.7 8.51 0 2.67 8.61 9.44 6.49 1.96 8.81 0.87 2.36 4.13 9.2 0.5 8.78 7.27 4.91 8.4 1.96 11.2 7.86 9.48 6.25 1.17 4.69 10.4 3.01 9.71 9.68 7.86 0.87 4.85 0 6.05 3.45 3.51 0.5 10.6 3.7 3.15 3.45 0 10.2 0 8.95 0.5 9.42 9.65 8.33 10 5.72 9.69 9.87 7.13 11.1 9.06 12.2 8.62 8.47 9.51 9.21 9.39 3.28 5.09 5 3.08 5.68 7.2 9.18 5.42 13.4 7.04 2.36 7.87 3.99 1.62 4.17 7.31 5.18 7.37 6.53 10.3 10.4 8.05 1.17 10.2 8.39 7.47 8.14 7.69 6.36 6.2 1.96 10.1 4.26 8.97 5.86 5.84 6.96 5.82 4.67 8.97 7.13 5.32 9.89 5.52 6.06 4.8 6.2 7.61 6.39 0.87 7.07 5.98 4.55 9.05 3.56 2.24 4.65 6.08 4.78 1.17 8.12 10.8 3.95 6.52 3.24 8.84 4.93 8.21 8.82 8.18 6.53 7.97 1.62 1.17 12.1 0 1.8 6.5 9.63 9.78 5.99 0 8.74 5.99 8.29 7.82 4.52 10.4 8.85 0.92 9.64 2.93 6.54 5.29 8.47 0 4.23 5.43 4.76 8.56 7.86 8.48 1.62 6.29 8.62 2.36 3.56 12.2 12.9 3.95 7.93 0.87 5.9 11.9 10.1 10.3 1.17 3.51 13.4 0 5.53 13.1 1.62 0.5 2.67 3.08 4.48 0 10.3 2.85 0.5 8.57 8.7 5.05 8.66 10.6 1.24 4.87 4.6 9.1 8.53 7.11 7.43 3.34 9.81 7.32 9.18 1.8 7.03 4.36 10.2 8.3 9.87 4.49 8.3 7.03 3.4 5.84 9.71 4.36 13 9.08 13.3 7.46 2.67 4.36 5.73 9.06 8.23 5.7 0.5 0.87 5.76 9.33 8.58 7.84 11.1 6 4.6 6.89 0 0 3.94 8.95 4.13 5.96 10.5 6.89 12.1 0 6.29 2.11 7.6 8.35 5.62 7.52 0 6.45 6.15 7.1 10.9 6.51 2.85 3.79 2.36 3.15 4.47 8.89 3.15 9.51 9.87 7.03 7.45 2.85 10 9.5 8.54 8.08 0 2.85 7.3 8.02 0.5 9.4 8.24 7.8 4.57 11.4 2.58 8.22 11.9 10.5 6.39 5.78 3.08 7.31 5.86 4.8 9.11 7.88 3.56 7.75 3.01 8.76 0.5 7.18 4.3 3.45 10.9 8.1 4.87 6.58 6.75 8.58 1.62 7.85 8.81 7.53 6.12 8.12 9.97 6.76 7.78 12 7.38 8.13 10.4 10.7 7.36 9.05 7.51 6.42 1.41 3.21 3.95 13.1 7.05 4.76 4.67 6.76 2.58 12.5 1.8 9.78 7.99 9.54 4.69 8.27 8.98 0.87 6.26 3.15 2.36 8.4 7.13 3.01 8.87 6.75 4.97 0.5 7.66 7.5 0.5 8.93 10.4 2.24 1.62 5.29 0 6.22 5.96 6.86 7.97 9.04 1.17 2.67 7.92 7.85 3.4 7.41 9.62 0.5 0 11.3 4.2 4.07 8.44 4.98 0 8.31 8.3 8.02 8.88 8.31 9.07 8.08 6.32 0.87 9.86 6.71 9.05 6.52 9.24 5.04 1.41 10.3 5.94 5.86 4.99 3.45 10.7 1.17 10.4 2.58 0 3.21 6.67 5.26 4.65 4.67 5.99 0 4.82 4.2 7.64 2.47 10.1 1.8 7.23 1.41 5.36 2.11 5.04 4.26 7.89 4.62 3.15 4.13 7.98 6.96 1.74 6.21 5.68 3.21 0.87 4.23 2.11 0.5 0 2.82 3.51 11.3 7.4 9.01 5.24 9.14 3.91 9.61 7.66 6.08 5.94 9.14 4.03 5.53 12.4 11.1 0.87 7.59 3.83 2.58 0.5 0 11.5 8.85 2.11 1.41 9.4 10.1 0 9.44 11 3.56 10.9 12.3 10.1 5.59 3.99 5.97 7.09 11.2 11 10.4 5.26 8.97 5.38 7.33 7.75 2.36 6.41 9.36 10.9 3.75 7.64 5.59 3.21 11.1 0.5 6.9 10.8 0.5 2.11 8.29 7.56 5.38 6.32 3.4 8.15 11 7.98 0.87 11.2 6.76 3.51 8.82 6.36 11.8 3.4 3.95 3.75 1.62 7.5 5.66 5.73 5.54 6.42 9.67 7.64 8.93 5.33 6.46 6.94 8.43 5.87 7.21 7.87 9.8 5.6 0.5 11.8 8.46 6.11 7.61 4.23 3.4 1.17 6.11 6.95 2.24 7.57 6.7 7.91 5.46 7.77 11.1 0 5.89 5.06 4.43 9.28 5.23 10.8 4.38 11.5 6.89 6.71 5.27 5.96 7.58 2.36 1.41 6.93 9.36 9.42 12 10.1 0 8.95 1.62 13.4 5.08 10.4 1.41 3.34 2.58 8.52 1.41 10.6 2.32 5 6.02 1.17 11.4 1.41 10.9 11.6 11.9 6.46 3.51 6.58 1.17 10.2 4.74 11.3 7.74 11.4 14 0.87 7.56 11.5 2.93 0.87 7.55 4.69 10.7 1.8 6.71 13.4 12.2 3.4 10.2 10.8 6.61 0 8.03 6.66 11.4 10.8 7.96 10.3 7.94 6.88 8.66 10.9 6.13 7.02 4.07 9.15 6.78 8.51 3.45 2.47 1.41 1.41 8.52 3.21 9.67 0 6.02 7.25 8.03 5.9 6.27 1.17 8.07 8.08 0.5 4.36 6.44 7.32 3.28 5.55 6.72 7.25 10.1 8.23 6.47 2.47 0 9.64 8.98 8.96 1.96 5.69 6.67 4.55 0.87 1.41 2.36 5.9 1.62 3.4 9.08 10 7.75 9.01 5.86 0 10.2 0.87 1.17 0.5 8.49 5.85 9.41 7.52 5.92 8.69 7.04 11 1.41 10.2 9.94 1.41 10.7 6.45 6.64 10.9 6.5 9.81 0.87 9.66 8.77 10.6 9.22 6.85 8.39 7.47 8.14 10.2 11.3 10.1 11 8.15 7.83 1.41 7.34 11.2 9.78 10.3 8.67 8.18 10.2 8.4 11.7 2.36 4.07 3.79 6.1 9.12 7.37 3.4 5.33 4.78 8.99 9.08 7.96 5.39 1.17 6.28 0 6.18 8.25 5.58 3.08 11.4 12.7 8.25 7.51 9.96 10.3 11.6 11.9 6.52 10.1 4.98 10 7.4 5.33 8.58 8.22 10.1 6.05 0.5 9.65 9.26 6.1 6.35 10.3 10.7 0 9.74 7.03 0 10.6 10.6 7.48 3.51 12.3 13.9 8.3 12.2 2.77 11.4 13.5 6.98 9.48 8.86 7.87 7.51 10.7 4.38 11.9 9.53 9.41 7.27 10 8.29 10.7 1.17 9.07 5.45 11.5 10.9 10.1 10 10.7 9.61 9.47 7.88 7.88 8.67 10.4 7.76 9.03 10.9 4.72 7.72 12.4 0 14.2 10.1 12.1 8.06 8.75 2.36 8.16 6.7 6.53 6.03 6.46 7.66 13.3 5.21 9.04 10.8 16.3 1.96 5.88 11.7 10.5 6.27 6.46 6.56 13.3 14.3 15.5 16.5 11.1 11.7 9.81 8.36 4.67 9.53 7.51 2.24 2.36 7.44 10.8 7.82 9.8 8.16 7.4 11.7 5.32 7.48 7.3 7.92 8.32 1.17 4.74 8.56 4.3 7.68 3.7 6.6 9.98 3.75 8.06 10.4 10.2 4.17 9.64 8.58 9.68 11.2 3.4 9.26 9.98 9.75 0.66 11.7 4.8 8.4 6.56 12.3 5.3 6.02 7.5 5.57 4.67 6.76 2.34 8.49 6.31 5.33 4.82 9.05 8.9 14.4 4.23 10.3 11 4.65 6.56 11.8 12.8 9.26 14 9.73 11 10.7 13.3 13.5 11.9 13.9 2.77 7.99 0 9.87 5.02 6.46 11.3 0 1.41 3.15 7.06 1.17 10.1 6.14 0 2.36 7.17 7.23 7.62 7.3 2.11 9.39 7.27 6.82 7.22 12.4 8.86 1.8 10 11.1 8.38 9.8 0.87 1.62 9.47 8.6 5.98 8.4 11 7.27 2.67 7.1 3.28 11.1 10.5 3.74 9.03 10.8 0 7.02 8.31 8.96 3.01 6.21 3.51 4.65 1.8 9.19 6.66 7 6.72 9.81 3.4 10.3 6.82 10 7.27 8.91 6.49 5.04 4.44 6.17 6.51 4.38 11.3 3.15 8.81 8.34 8.14 9.68 10.7 1.96 8.81 9.41 9.6 9.04 10.4 1.8 8.35 8.63 5.24 10.6 9.84 10.7 7.1 9.79 8.92 6.74 12.3 2.58 9.69 6.04 11.2 8.81 8.26 8.05 3.7 8.73 6.91 3.45 8.22 8.29 6 0 12.3 8.32 0.5 3.15 7.59 0.5 8.61 7.85 9.55 8.12 8.52 9.13 6.75 5.21 6.28 8.38 5.69 10.3 8.24 0.87 15.6 3.4 6.56 2.36 5.21 0 10.1 9.04 7.01 5.23 13.4 8.32 8.67 10.8 8.93 9.56 13.9 9.38 1.62 4.82 4.33 9.28 7.69 5.8 8.39 7.33 8.12 8.87 9.66 5.3 8.96 8.32 9.72 6.93 4.76 9.52 10.4 9.26 1.62 7.79 11.7 12.7 8.41 3.83 7.53 8.16 7.8 7.63 0.5 9.48 6.27 8.84 7.11 9.73 6.56 9.84 8.82 9.72 7.57 7.23 8.81 8.84 8.58 0.5 4.2 7.02 12.2 9.19 9.69 10.5 0.87 7.52 12.4 2.47 1.17 11.7 10 8.81 4.87 11.3 5.79 8.78 10.8 7.69 10.5 7.15 10.9 5.14 11.7 11.4 4.91 13.1 10.8 1.62 13.7 8.74 4.49 11.4 8.66 11.5 11.5 11.4 9.8 8.56 9.2 11.2 5.66 3.61 6 9.74 6 0 12.4 8.43 10.3 10.2 10.9 11.1 1.62 12.4 11.1 9.97 1.17 7.72 9.08 2.11 12.2 9.01 5.8 9.89 9.51 1.17 7.94 8.56 7.72 6.13 6.39 7 2.47 6.44 2.24 6.53 8.48 6.04 7.65 0 0.5 11.4 3.01 9.61 9.01 8.14 9.31 8.79 10.5 11.6 9.92 9.15 8.79 9.79 10.7 5.16 9.11 9.46 9.9 10.3 9.5 10.8 11.8 6.17 5.88 2.67 13.2 9.27 9.03 4.03 3.91 8.59 10.1 3.2 5.39 1.62 7.93 13.9 0 8.25 11.4 7.16 10.3 5.94 7.03 7.55 8.87 7.95 6.9 10.3 6.92 9.97 8 3.91 7.77 9.93 8.15 6.97 8.16 10.1 10.8 2.11 8.12 8.29 8.15 6.47 1.41 5.48 7.96 4.82 1.8 7.85 0.5 6.42 6.05 9.32 4.49 5.81 1.62 0.87 2.58 3.51 7.4 0.5 8.95 3.83 0 1.62 6.33 7.53 5.33 6.83 4.79 5.42 6.93 13 7.21 8.16 6.05 8.04 7.02 9.44 2.67 10.3 8.52 7.42 1.96 12.1 9.07 6.91 7.64 9.01 4.49 9.71 6.57 9.08 4.97 9.89 6.59 7.49 6.8 2.77 6.79 10.2 1.8 5.63 1.8 6.69 2.24 9.34 0 2.71 6.6 1.62 10.1 3.45 8.26 10.1 3.56 7.41 8.11 8.45 3.01 9.45 2.24 2.24 11 7.65 0 9.33 7.94 7.32 8.11 3.66 8.39 0.5 8.18 4.74 8.86 2.93 10.2 4.97 9.81 9.12 9.04 1.62 7.09 8.83 8.63 8.49 6.38 2.85 7.58 11 7.71 9.42 6.55 1.96 7.58 7.36 1.17 5.32 12.1 7.99 5.26 0 0 5.99 0 4.41 9.35 1.17 5.65 2.85 1.41 6.89 3.45 8.05 4.87 5.66 10.8 8.68 9.63 6.82 10.8 8.96 11.1 6.4 10.8 5.06 8.65 5.59 9.54 3.75 5.54 6.82 0.5 8.82 6.86 3.21 2.77 15.2 6.74 12.1 0.5 7.53 5.55 7.89 11.4 6.3 10.9 8.21 7.43 11.6 7.26 10.2 5.93 12.6 9.75 7.46 3.4 11.4 4.03 8.42 6 13.4 4.69 12.4 4.26 11.5 7.7 8.28 7.97 9.76 10.5 13.3 9.38 7.19 6.47 10 6.41 7.28 7.46 10.5 10.7 7.58 5.24 1.17 7.9 6.87 8.91 9.02 6 9.52 6.19 7.05 0 8.79 9.4 5.65 10.7 8.49 9.06 9.09 11.2 0 10.7 6.8 10.7 11 3.75 11 4.76 9.8 8.09 8.15 9.52 9.68 8.34 13.7 10.8 8.35 11.6 11.9 8.65 7.47 9.33 8.16 10.3 10.2 9.08 3.56 10.1 9.47 1.96 10.1 9.2 5.64 0.87 7.49 6.03 8.2 9.23 11.7 10.5 10.4 11.6 8.94 10.1 8.02 12.2 6.16 0.5 10.8 0.87 8.55 11.3 10 7.85 9.59 2.58 10.4 6.86 12.1 9.95 9.94 10 6.4 9.39 9.44 8.95 10.7 11.3 0 7.69 12.5 7.92 9.74 8.08 8.18 8.04 9.32 3.75 4.72 11.5 8.02 7.65 10.4 1.17 4.17 11.4 7.47 5.23 4.95 11.7 12 0 1.96 5.7 9.4 11.5 9.85 9.6 7.49 5.04 5.91 4.85 11.2 8.86 8.13 6.41 8.76 6.03 7.1 0.5 10.7 10 10.4 10.5 9.97 10.1 11.6 0.87 12.6 10.6 8.32 5.52 2.85 4.91 11.7 10.4 10.7 8.98 9.08 8.04 7.67 6.09 8 6.96 10.1 10.9 9.79 11.1 4.41 4.87 8.59 11.4 10.9 11.6 8.27 9.08 10.1 9.95 4.36 9.85 2.85 9.13 10.8 12.9 9.89 10.2 9.8 3.51 10.1 10.9 9.89 4.47 7.37 11.3 10.9 10.1 8.14 9.52 7.63 8.53 11.2 10.4 7.38 9.76 8.79 9.53 4.65 9.08 9.13 9.22 10.6 9.41 7.04 7.57 8.44 7.4 8.22 8.97 1.8 10.7 5.23 11.2 3.7 8.94 9.48 8.96 9.76 3.27 8.36 10.5 9.7 6.29 0.5 8.5 8.64 10.4 10.9 5.91 9.23 6.69 10.3 9.99 4.07 9.88 10.6 6.96 8.69 7.28 8.44 12 10.3 12.7 8.54 8.38 10.4 6.42 4.03 8.42 0.87 7.58 10.7 11.6 9.14 8.58 9.35 7.16 12.8 10.8 8.87 9.99 10.3 10.8 10.2 8.53 10.8 10.2 6.49 11.2 11.4 9.37 9.08 10.6 9.64 11 9.02 11 8.64 7.53 5.27 9.33 9.13 10.8 11.1 9.7 8.5 6.89 12.5 11 11.2 10.6 12.9 5.29 8.93 11.3 10.2 11.3 11.2 8.17 6.74 11.1 12.6 3.51 10.8 6.37 4.44 7.43 9.85 10.2 10.6 9.67 11.6 11.9 9.86 0.5 10.3 9.81 2.24 7.18 7.96 11.6 11.4 10.4 7.53 7.53 8.33 7.84 9.06 7.31 4.85 10.2 8.87 8.46 4.97 9.64 6.06 9.16 10.6 4.95 9.45 11.1 6.17 10.2 9.73 10.5 8.94 2.47 7.47 9.1 8.29 10.4 9.29 9.54 9.17 3.01 8.77 8.17 10.1 11 12.1 6.05 9.59 9.47 2.24 7.75 9.11 10.2 11.2 8.91 8.22 12.4 10.2 2.24 0 9.68 6.84 5.53 9.89 8.45 8.61 6.36 9.85 9.13 9.87 11 11.4 2.24 9.26 8.9 7.42 8.97 8.48 1.17 10.5 9.74 10.5 9.73 10 9.85 7.26 10.4 6.34 9.35 0.5 9.16 8.29 9.08 9.21 6.43 9.6 11.2 12.8 10.2 7.37 6.65 10.4 7.53 8.87 8.34 10.4 10.8 10.9 5.79 8.44 10.7 7.58 10.4 8.2 2.67 15 10.8 11.7 11.2 10.6 9.29 8.4 9.11 9.79 0.87 10.4 10.2 7.35 8.61 10.6 4.91 12.5 9.57 11.1 10.3 8.04 8.87 8.47 9.22 8.86 9.05 12 6.95 10.3 9.66 11.1 10.6 9.5 11.2 11 8.96 11.6 11 9.36 9.79 9.6 8.32 11.4 9.25 9.24 9.5 10.1 9.02 9.34 8.7 4.95 10.2 8.29 9.6 7.87 7.7 3.15 7.14 8.05 1.62 9.59 12.3 8.38 12.1 9.37 4.85 9.38 8.98 4.8 7.93 7.27 9.85 12 9.8 7.14 10 12.3 12.2 8.54 8.78 9.14 6.89 4.17 7.76 5.39 10 6.74 7.6 8.42 11.8 9.65 10.4 8.73 9.37 9.68 10.9 10.7 11.5 1.41 9.52 11.8 8.01 9.22 8.59 8.67 5.76 3.79 6.71 10.2 5.16 4 9.49 1.41 10.8 7.27 8.93 7.18 10.5 9.78 10.6 10.3 12 10.1 9.47 9.79 10 8.65 0.87 2.58 15.5 9.31 10.1 13.2 9.56 10.3 6.29 5.43 11.5 8.73 8.61 10.1 6.04 9.07 6.4 2.85 8.99 7.78 6.54 9.81 0.87 8.88 3.7 2.24 7.25 11 10.2 9.18 4.2 7.27 6.52 9.22 8.9 10 11.9 11 9.56 11.5 5.23 3.29 8.96 5.02 8.51 8.6 1.17 7.51 9.61 4.91 12.1 10.3 11.4 0 11 10.4 9.56 10.2 10.1 8.55 7.66 9.15 9.48 8.56 8.8 6.99 8.39 11 8.28 4.23 12 6.76 9.53 10.9 9.53 11.8 9.76 1.17 10.3 8.16 11.3 10.5 3.28 0 2.11 3.91 10.5 8.55 10.2 9.81 5.04 10.6 8.83 11.4 5.91 10.4 10.3 12.3 10.7 10.1 10.1 13.9 12.3 6.41 9.53 8.28 7.97 8.26 9.72 10.6 5.11 9.04 9.04 5.89 11.1 7.28 10.9 8.15 9.92 10.9 2.24 8.75 10.6 10.6 9.45 3.01 9.03 7.31 1.17 2.24 6.74 4.82 12.2 9.96 9.35 9.62 10.3 11.5 10.9 0.5 3.61 9.11 7.95 7.23 9.04 9.93 10.1 9.6 4.13 7.47 9.84 8.9 8.26 8.96 12.3 7.83 10.6 5.63 0.87 3.41 7 1.41 8.7 0 9.42 0.5 4.62 1.41 7.49 8.96 5.7 7.45 7.35 8.27 8.71 3.45 3.7 9.98 9.95 5.19 8.03 4.67 3.34 15.1 8.91 10.4 0 14.6 8.19 8.95 13.5 7.87 6.03 5.5 8.36 2.24 3.01 11.1 4.78 3.55 9.07 7 1.62 7.61 8.81 5.04 8.39 11.2 9.25 2.67 4.72 5.78 8.87 8.08 9.46 4.03 7.56 6.02 7.11 8.86 4.76 5.89 13.8 7.39 4.03 10.8 10.4 7.17 8.52 5.39 4.47 0.5 10.9 9.89 8.3 9.27 6.53 5.98 7.13 7.84 4.03 6.23 10.3 0 0.5 7.47 0.87 3.51 11 8.01 4.67 4.47 3.7 0.5 8.81 8.26 4.67 6.99 8.61 8.81 9.17 6.75 13.1 0.5 0.5 11.5 4.57 9.03 7.25 8.31 7.78 7.35 6.57 6.74 6.17 0 5.59 8.79 10.3 4.67 5.73 5.23 8.58 0.5 8.74 6.5 6.41 6.29 0.87 8.93 0 6.14 5.06 3.51 10.9 8.42 7.34 7.22 6.53 8.75 6.72 9.19 6.52 4.55 5.6 4.17 6.07 10.2 3.95 5.78 5.29 6.09 5.65 6.99 10.8 4.76 8.71 2.67 7.99 0 9.55 6.47 1.17 1.96 8.67 2.77 3.66 8.45 5.63 1.17 4.03 3.95 0 7.66 0.87 3.56 4.41 6.47 4.62 8.48 6.76 8.5 5.48 2.85 3.21 1.41 6.02 5.02 0 0.5 0.5 8.97 8.63 1.17 6.1 10.2 3.99 11.4 10.5 9.13 0 8.99 10.6 8.83 6.26 10.1 3.51 1.8 8.05 4.62 6.81 10.1 10.7 3.87 10.7 9.26 10 7.55 12.4 10.8 8.92 8.16 5.58 3.83 11.9 3.99 9.2 6.94 8.74 0 10.5 10.9 9.24 2.24 8.47 8.29 10.2 8.28 8.59 0 12.7 10.9 6.51 10.9 9.28 1.62 3.66 10.5 8.1 9.78 9.71 6.36 11.1 8.95 11.4 8.68 8.63 9.6 10.9 8.45 9.46 10.4 8.8 4.72 7.68 8.84 9.53 7.95 10.7 4.78 8.21 3.91 8.35 11.2 11.6 9.39 15 9.47 12 2.24 9.25 10.9 9.05 9.43 9.5 8.93 7.69 9.9 3.91 7.26 10.8 8.59 9.91 9.59 7.97 2.77 10.2 6.1 8.8 9.59 8.15 9.29 8.9 6.98 10.7 8.39 9.34 13.1 8.66 8.47 10.6 9.59 5.57 2.77 8.61 10.9 11.5 0 3.56 7.96 8.91 1.17 6.15 4.6 10.7 9.42 5 6.59 9.36 0 9.29 1.17 1.62 3.75 10.6 10.3 10.1 10.1 8.41 9.63 6.57 7.72 8.23 10 10.9 11.1 7.45 4.97 11 9.31 10.4 8.08 7.95 10.9 5.33 9.7 8.15 8.21 6.26 10.6 11 9.39 17 10.5 9.33 7.06 7.92 7.74 10.1 9.21 10.3 10.3 5.62 10.3 3.08 9.77 9.1 10.1 6.28 9.35 9.87 9.25 7.88 5.86 11.4 10.9 8.43 11 9.53 12.1 8.69 11.3 5.06 8.56 7.07 10.6 11 8.56 10.4 11.3 5.9 9.28 3.75 8.33 7.85 8.74 10.8 9.38 2.85 3.79 6.34 8.5 8.06 9.67 1.62 8.55 7.55 6.19 7.14 3.66 8.34 9.73 8.83 5.54 3.83 4.91 6.42 5.66 9.88 7.86 10.6 10.2 9.21 8.79 9.57 8.72 11.1 9.08 12.4 2.11 6.88 8.93 10.6 9.84 8.88 9.7 9.08 9.01 5.35 11.5 8.46 11.5 10.7 3.15 7.02 8.82 10.3 10.1 11.1 8.7 9.71 9.06 8.79 9.33 11.2 13.1 8.96 2.24 8.66 9.99 8.9 9.47 5.96 7.61 4.36 11 9.41 4.2 7.32 11.8 13.4 6.9 9.35 10.2 2.11 10.8 11.1 9.91 8.91 11.5 8.13 7.55 11.2 7.33 9.98 4.6 10.1 2.67 9.42 3.87 6.62 10.3 1.96 8.87 1.62 8.33 9.03 11.8 4.36 9.91 0 4.24 6.04 8.74 10.4 10.2 7.73 3.28 9.27 6.25 7.45 2.77 4.13 2.58 6.35 10.3 9.09 9.37 5.06 10.3 8.52 4.49 6.9 8.78 8.67 6.33 8.88 7.04 7.98 8.37 9.08 9.43 10.5 7.35 1.17 10.2 11.5 8.85 1.62 10.6 0 9.2 8.24 9.57 5.58 9.75 8.81 10 0 9.2 9.49 11.4 10.1 9.61 1.62 8.23 7.04 5.77 10.2 11.2 10.2 13.6 11.5 11.8 2.58 10.5 4.97 10.5 6.97 9.38 9.73 8.62 6.06 8 7.54 7.99 8.7 9.18 11.4 9.98 10 10.3 9.36 6.18 12.1 4.89 3.4 1.34 11.7 1.8 7.61 7.54 9.61 9.37 10.9 9.75 9.6 10.2 0 9.83 4.1 7.8 1.96 10.8 12.5 9.02 5.59 5.8 2.5 6.76 7.16 8.1 10.1 0.5 7.25 6.28 0.5 10 4.47 10.1 3.01 7.76 0 9.47 11 1.62 0 9.03 9.41 4.89 5.02 3.4 0.5 11.1 9.86 8.72 8.1 8.83 1.17 3.91 7.62 8.72 9.52 3.91 3.15 10.7 9.44 5.99 8.24 10.2 15.8 10.6 9.04 10.2 7.98 9.4 9.03 0 3.79 9.75 1.62 9.71 7.27 4.87 11.3 10.6 6.16 11 9.16 6.64 11.2 5.87 8.95 2.24 5.3 10.8 7.14 10.2 11.3 12.2 6.96 1.62 7.09 8.41 10.5 12 10.3 9.36 9.1 10.6 9.27 10.2 8.66 8.83 7.72 10.8 2.58 10.9 9.63 7.7 0.87 6.04 10.6 8.93 1.41 1.62 9.95 6.88 11.6 11.8 11.4 8.53 6.6 6.52 0.5 7.99 3.99 8.6 2.93 11.2 9.69 1.41 8.9 1.17 3.45 7.37 11.7 8.1 9.01 9.28 8.96 6.33 5.71 3.34 9.04 7.36 7.55 9.01 8.77 5.7 9.97 1.17 8.83 8.73 10.7 11.4 8.28 12.3 7.88 4.76 3.83 10.8 4.86 0 2.11 1.8 3.99 3.92 7.7 9.62 2.24 7.9 12 1.41 1.41 8.39 9.99 9.67 9.24 6.64 5.23 7.08 9.1 11.4 9.13 8.82 8.94 9.09 9.92 10.6 11.3 8.12 5.78 3.34 10.2 10.2 0 8.06 7.75 3.34 8.57 9.79 9.29 8.48 7.68 2.47 9.91 7.02 3.34 6.4 9.16 10 3.34 8.69 0 9.97 1.62 4.1 10.3 12.4 2.24 9.44 9.76 11.1 7.41 3.75 11.9 10.3 10.3 12.5 10.7 10.1 10.9 8.81 10.3 1.17 7.44 10.1 9.74 8.67 9.51 0 8.24 9.2 9.82 1.41 8.33 9.71 11.2 10.1 10.2 5.24 10.7 7.84 9.1 10.7 2.47 9.69 9.91 7.4 6.7 7.72 11.2 7.07 6.17 11.7 1.17 10.2 8.38 10 7.12 8.26 9.41 10.9 9.19 11.8 10.3 2.24 7.22 9.26 14.2 1.62 7.13 12.4 11.9 7.23 2.58 11.3 10.3 3.91 1.17 7.81 7.93 5.36 10.3 4.26 0.5 11.3 2.24 6.2 8.26 9.7 11.8 9.72 10.5 10.9 11.6 11.1 2.58 13 1.89 0 12.6 4.72 10.2 12.6 1.17 8.53 2.67 8.02 9.8 6.29 1.17 2.11 5.41 2.77 3.4 6.47 1.96 9.05 6.43 0.5 8.14 3.28 7.21 10.4 5.68 6.69 7.08 4.76 3.15 0 1.8 8.23 9.87 7.43 14 11.2 4.07 8.41 4.95 6.9 5.74 6.73 10.4 8 8.96 8.15 8.09 6.51 7.7 0.87 5.77 5.86 6.95 4.07 10.4 3.61 5.62 9.19 9.98 1.62 9.31 9.19 7.13 4.93 2.85 1.41 2.67 1.41 10.2 4.47 8.21 6.47 8.8 6.61 8.18 3.85 0 1.64 0.5 5.43 1.96 3.99 1.17 8.4 0 7.41 2.67 3.01 8.95 9.47 10.4 5.58 5.21 8.57 6.07 6.16 3.01 8.43 0 0 3.69 11.3 4.44 6.47 8.94 5.34 9.89 5.59 10.4 5.86 6.23 5.83 0.87 6.08 9.67 6.98 0.87 3.7 8.69 10.1 11.8 8.7 0.5 9.38 10.4 1.17 6.26 6.81 5.02 7.12 4.74 8.72 3.51 10.2 7.2 2.36 2.24 2.36 9.39 7.99 0 3.15 0.87 10.4 3.08 1.41 8.9 9.91 6.45 8.95 5.04 9.52 0.5 1.96 3.28 7.52 9 1.8 0 10.7 0.5 10.5 4.98 6.94 3.08 4.83 7.27 7.18 7.03 9.3 5.94 3.21 5.62 7.15 4.74 5.41 4.23 11.6 1.8 5.96 6.53 5.02 3.21 0 8.72 3.7 0 3.91 2.93 1.17 4.78 8.1 6.31 4.67 5.77 9.21 2.85 4.62 0 4.23 0 3.7 0 7.95 1.41 5.92 4.49 6.32 0 7.63 5.72 8.18 1.17 1.8 5.48 3.61 2.36 8.15 7.6 2.58 4.72 1.62 7.39 0 6.35 10.2 6.6 0 6.68 5.94 10.8 5.91 0.5 5.7 7.42 5.17 0.5 8.36 10.8 7.02 6.53 9.26 1.41 7.41 4.07 8.8 6.32 7.12 8.27 5.91 8.81 8.2 2.47 4.62 8.06 8.36 0.87 6.38 7.49 0.87 8.57 1.96 5.32 9.57 9.22 7.18 8.48 3.75 5.54 1.62 2.58 8.6 1.17 7.85 4.49 1.62 4.04 3.79 8.81 9.56 3.95 7.61 1.41 8.79 0.5 2.77 3.15 3.7 5.69 6.74 8.38 2.36 2.36 8.53 0 3.87 8.5 5.96 4.57 7.45 0 3.58 3.45 9.82 5.8 3.83 6.64 1.17 1.62 9.53 0 3.91 7.86 8.11 8.97 5.72 5.7 2.55 3.75 4.3 5.71 5.49 9.29 8.99 3.51 12.4 6.25 9.48 4.41 4.13 4.91 9.01 0.5 6.92 10.1 9.35 3.21 6.05 8.65 4.13 0 6.1 9.57 8.75 7.99 3.34 6.44 7.05 8.65 6.71 1.41 2.85 3.95 6.27 8.41 1.96 6.08 7.92 7.78 6.87 1.62 5.95 9.79 12 11.9 10 9.75 12.3 9.39 6.86 12.5 9.05 7.89 12 9.29 10.4 0 2.58 7.45 9.18 10.6 10.4 9.33 11.1 8.53 13.1 8.65 8.14 11.9 4.65 5.06 3.99 11.3 0.87 9 7.76 10.8 11.3 11.2 9.77 11.2 8.79 8.47 7.57 6.52 9.56 5.71 11.4 11 9.55 0 6.69 10.4 7.42 10.4 10.6 2.58 11.9 7.79 0.87 5.71 10.1 5.04 10.5 0.87 10 4.8 8.32 10.5 7.98 9.63 7.96 10.2 10.3 12.4 7.19 8.08 10 10.2 8.38 9.13 8.93 10.4 9.53 11.3 7.21 9.96 10.7 10.2 10.4 10.1 9.55 9.53 7.07 8.34 9.19 4.74 10.5 9.76 8.58 10.1 9.79 9.69 10.5 9.95 8.41 7.82 9.3 2.67 9.52 10.9 7.88 2.85 9.77 11.2 8.35 9.69 0 3.51 9.35 7.83 11.3 3.15 4.23 10.9 9.16 0.5 0 5.16 12.7 2.85 3.61 13 1.41 11.3 14 10.7 8.99 14.7 12.5 9.7 10.6 8.89 10.7 10.3 8.83 8.79 3.01 14.3 8.78 3.99 10.1 10.7 5.21 9.72 9.24 8.05 9.87 11.6 9.69 10.3 7.87 8.72 9.53 9.98 11.8 11.2 9.88 5.77 11.8 11.1 7.98 9.72 9.53 1.41 9.65 8.67 1.96 6.4 9.54 3.21 10.6 10.2 5.41 11 4.65 10.1 0.5 5.11 6.34 7.31 9.33 4.93 11.7 8.75 7.81 0.5 6.82 5.93 9.83 8.82 10.2 5 10.7 11.9 8.99 1.96 9.53 10.3 8.2 5.99 10.7 10.9 11.1 8.98 11.3 1.41 11 8.9 10.1 8.95 9.79 10.8 12.9 0.87 9.25 5.09 10.3 8.51 7.14 9.87 8.86 8.6 11.7 8.79 9.67 10.9 8.86 9.72 12.3 9.22 7.98 5.82 7.31 6.9 1.41 9.84 9.82 6.79 0 4.3 9.25 8.9 6.72 7.04 8.3 1.41 11.2 9.08 11.1 7.74 1.17 10.5 1.62 9.64 5.34 11.3 8.79 8.28 10 8.78 10.3 6.22 8.61 11.2 7.71 8.79 5.57 8.82 7.56 7.55 6.37 9.96 7.79 8.41 8.81 8.08 13.5 8 0.53 9.13 1.62 11.6 8.44 8.03 4.44 6.88 9.15 8.61 6.45 4.07 13.3 10.6 6.28 5.14 4.78 5.24 12.8 5.83 3.5 11.1 13.2 9.94 13.7 12.5 15.2 10.2 10.6 5.99 12.5 11.1 10.7 3.21 10.7 6.13 3.45 5.82 0 11.9 5.55 2.93 0 0 0 2.36 8.26 2.24 11.2 13.4 8.77 5.42 11 11.5 11.3 0.5 14 13.9 10.4 7.74 7.74 10.8 10.3 10.1 6.15 11.2 1.17 1.8 7.61 8.52 7.47 10.1 5.43 2.85 10.9 2.24 11.4 9.65 4.17 10.7 5.16 0.5 9.29 7.98 7.88 9.07 7.73 10.9 6.54 9.82 5.32 11.2 7.28 11 12.3 10.1 11.5 9.58 12 10.7 11.2 11.3 5.33 10.7 14.9 15.5 14.2 10.7 10.3 11.2 10.8 6.38 12.5 11.6 3.4 10.1 10.2 11.1 7.56 14.2 12.4 10.7 9.48 6.07 12 13.2 11.5 7.25 12 4.36 5.99 3.79 9.15 8.8 8.52 10.3 12.2 12.2 9.69 11.8 12.6 9.95 9.22 8.74 14.2 4.33 8.18 8.07 11.2 11.4 5.79 2.93 8.29 10.6 6.14 8.32 4.57 10.4 0 9.58 0 11 2.47 10.9 13.9 9.82 14.2 12.3 13.9 12.9 12.8 12.3 10.6 11.6 13.5 0 13.3 13.8 0.87 3.99 0.5 6.42 7.04 5.26 4.3 4.76 2.11 1.13 2.24 7.02 0.5 4.44 0 4.82 5.13 4.87 3.7 2.93 2.93 8.09 0.87 4.13 5.06 9.56 9.95 7.27 4.41 7.84 1.17 8.29 2.77 4.69 1.62 0 9.65 10.2 5.98 1.96 0.5 10.7 1.17 3.21 10.5 10.6 6.9 6.46 11 2.11 2.36 10.7 12.4 12.8 10.5 10.7 9.7 2.36 6.19 9.78 1.8 9.84 12.3 7.67 7.53 12.6 11.6 11 12.4 10.5 5.37 8.15 11.8 13 9.22 7.09 4.87 14 12.5 14 4.06 10.3 15.1 9.7 15.4 14.4 3.08 12.4 11.3 9.91 11.3 4.33 7.1 12.4 8.17 7.72 2.47 0 0 4.52 0 0 6.69 8.41 7.71 8.32 11.4 10.2 1.8 5.35 0 0.51 2.99 9.12 12.5 0.5 2.47 1.41 9.86 9.81 11.3 8.13 1.62 0.5 8.04 4.28 8.04 9.83 7.34 7.18 3.66 3.56 8.84 3.01 0 3.83 5.81 6.17 5.76 11.4 0 9.11 8.21 5.54 10.6 11.7 10.9 5.26 11.2 9.37 6.36 7.97 5.68 7.61 7.12 1.41 0 6.86 1.96 3.4 8.73 7.49 1.62 6.56 3.28 7.5 5.47 4.17 6.42 2.77 6.5 10.1 4.14 5.38 7.84 9.02 9.39 6.38 8.48 8.53 1.62 2.24 3.15 1.8 7.97 5.88 3.61 0.5 8.19 9.23 2.77 10.2 2.58 1.17 3.66 2.36 0.5 7.16 7.03 0 6.49 0.87 8.85 1.8 8.01 9.42 5.42 1.42 0.5 5.72 4.1 7.67 4.13 0 0 1.8 3.01 2.47 3.66 7.88 5.72 8.14 9.46 4.07 1.8 4.6 7.91 2.77 10.7 12.3 10.1 11.5 5.41 9.77 0.87 5.08 0 9.68 9.82 2.36 8.39 8.66 1.41 7.71 2.77 6.19 9.02 6.81 13.1 2.67 14.3 4.26 3.87 5.24 1.8 6.12 4.13 1.96 0.5 11.6 0 6.38 10.3 3.66 11.4 12.3 2.36 3.7 3.08 0.87 0.5 0 12.3 9.03 6.49 6.92 1.8 5.3 4.41 5.81 0 1.17 3.34 1.41 0.5 0.87 1.41 10.1 5.53 7.23 0 0 8.11 9.05 2.67 1.8 10.3 1.41 11.6 2.85 3.01 3.79 6.74 0.87 0.87 8.49 8.81 2.24 1.17 6.98 3.61 4.49 0 6.29 5.55 8.59 0.5 10.3 2.85 3.91 10.5 9.08 1.96 4.6 6.37 2.24 11 2.11 5.23 7.77 12.5 12.8 3.87 2.67 6.28 6.66 7 1.8 8.54 11.3 10.4 0.5 10.3 4.47 6.16 4.57 12.1 9.09 0.87 7.94 13.1 3.56 7.36 10.5 5.92 0.5 8.45 7.71 8.73 9.09 11.3 4.44 11 6.81 3.56 0.87 4.89 4.45 8.77 4.55 9.92 9.4 13.2 7.92 8.96 2.58 6.2 6.31 12.3 4.8 1.41 8.03 2.72 3.34 8 6.67 3.51 5.87 5.33 5.11 0.87 6.08 6.84 0 0.87 10.5 11 10.2 5.3 5.66 8.15 5.84 9.43 5.86 3.83 8.25 9.8 6.45 11.1 1.17 7.59 9.66 9.17 4.13 6.33 5 5.16 1.62 6.35 9.03 6.22 3.21 3.95 8.6 9.31 6.66 7.32 5.21 0 6.97 6.2 9.57 2.65 4.93 12.2 8.53 10.2 7.97 8.61 8.5 4.72 1.41 7.05 4.6 7.01 11.8 12.7 13.2 7.44 11 8.71 8.84 9.13 13.1 9.25 8.33 9.11 9.13 0.87 5.73 5.63 2.24 12.5 9.44 2.85 9.78 8.75 9.79 8.35 10.5 7.97 0.5 2.47 10.1 0.5 13.6 6.37 8.43 11.8 10.4 6.66 10 11.9 7.64 10.6 11.2 5.39 9.21 11.4 12.7 7.4 11.1 0.5 9.24 6.73 8.63 5.08 11.1 8.02 10.1 6.8 5.59 3.4 2.11 7.45 7.14 10.4 11.6 7.68 11.7 9.61 10.2 4.41 11.7 12.4 9.9 7.46 7.49 8.39 0.5 1.41 0 12.6 5.49 5.14 11.7 10.6 11 4.62 9.39 7.45 7.26 10.9 11.5 12.6 11.3 7.33 10.2 11.5 8.06 11.9 13.4 11.3 14.8 6.89 5.24 10.5 11.6 12 0.87 2.11 6.14 7.6 0.5 0.87 2.38 10.4 6.22 6.8 4.98 8.05 10.8 6.81 0.5 7.93 4.67 2.47 6.85 0.87 5.94 2.36 4.9 8.35 9.98 9.59 2.58 2.67 6.03 5.49 8.25 2.67 7.96 6.49 1.8 10.1 7.41 1.41 8.31 5.75 7.46 6.99 2.24 8.19 0.5 3.99 7 13.4 5.62 3.66 6.13 10.4 0.5 5.3 7.43 3.15 5.82 0 6.78 9.01 6.95 7.47 1.17 1.62 1.41 0 7.18 6.82 6.38 6.2 7.77 8.67 5.35 5.41 6.9 2.36 2.77 0 4.53 2.11 8.01 9.27 0 1.17 8.19 4.34 8.42 1.17 3.99 11.8 5.16 1.96 3.4 5.38 6.84 6.57 3.4 7.58 1.8 3.08 5.99 6.85 9.84 0 7.45 13.3 4.49 5.46 4.98 1.62 8.52 5.42 7.86 0.87 4.13 11 8.39 3.51 7.81 7.54 9.56 0.5 0.5 6.61 8.62 5.58 0 5.82 10.4 5.91 7.24 3.45 6.96 8.71 5.22 8.63 7.52 0.5 11.5 9.24 3.45 7.83 2.04 5.08 3.61 11.3 2.11 3.56 14.3 2.67 2.67 12.1 3.34 4.41 4.04 2.33 5.39 2.11 10.6 9.95 9.88 11.7 9.64 13.3 11.7 9.17 8.16 9.81 5.59 10.4 11.3 10.7 5.83 0.87 15.2 9.15 9.62 7.67 6.01 2.77 12.9 6.94 4.23 11 0.5 9.5 3.95 2.47 15.9 2.6 8.68 3.45 4.65 3.51 9.78 2.77 7.57 14.3 8.55 11.2 9 0.5 4.26 1.62 3.51 6.86 9.47 3.34 1.41 0.5 4.17 0.87 7.97 0.87 4.51 5.87 3.79 4.38 7.33 3.8 1.17 11.4 2.51 3.56 8.22 3.83 0.87 12.4 1.8 7.88 3.01 1.8 8.97 1.41 6.32 8.46 2.67 7.07 6.16 3.51 3.4 6.58 3.75 5.71 3.51 8.04 7.4 3.08 6.82 13.8 3.91 6.09 8.82 6.98 7.84 5.85 5.71 8.06 8.17 2.36 4.6 8.21 7.84 0.5 6.4 2.47 8.42 0.87 5.78 8.84 0.87 7.68 5.73 9.63 9.71 0 9.81 1.96 6.91 6.91 8.3 9.2 9.13 7.26 0.87 10.6 11.4 7.31 3.01 6 0.87 7.43 3.89 5.53 3.56 9.69 6.55 4.07 5.36 0.5 5.3 4.49 8.2 1.96 2.8 11.6 5.72 6.9 10.7 2.58 1.8 2.58 3.7 8.24 4.44 2.93 7.44 2.24 9.16 0 4.47 2.11 0 6.42 2.11 1.62 3.61 8.15 10.2 9.6 4.2 0 2.47 8.56 2.58 3.34 2.85 5.59 1.41 7.82 7.82 8.84 6.92 7.28 10.4 8.66 7.03 11.8 4.36 11.4 1.96 10.4 3.56 9.53 11.7 10.1 12 5.66 0.5 11.9 10.6 13.4 0.5 1.8 4.07 11.4 4.47 11 4.41 1.17 11.8 10.1 4.41 7.38 7.64 12.1 7.43 4.38 14.5 9.6 14.2 7.52 1.8 1.8 5.13 11.6 6.79 11.3 5.13 14 14.5 13.6 1.96 9.7 13.2 9.48 2.85 4.8 5.49 10.3 3.6 9.67 7.03 8.91 9.41 10.2 7.6 9.82 6.18 2.24 8.8 8.95 10.4 0.87 2.58 9.33 6.04 9.84 8.24 10.9 0.87 5.11 2.89 9.83 2.77 5.32 7.11 5.65 12.1 5.62 8.19 6.55 11.1 0.5 9.74 8.12 10.1 12 13.1 7.85 9.07 8.23 10.5 0 0 6.51 8.87 6.44 10.2 6.88 10 2.47 8.27 8.66 0 8.73 7.01 0.87 9.36 2.24 0.5 6.11 7.65 3.95 0.87 4.52 5.46 7.35 3.75 9.11 6.26 1.62 1.62 8.95 3.37 5.3 9.12 2.47 8.98 8.2 0 5.63 0.5 4.63 0.5 7.57 2.85 3.51 6.38 11.1 1.17 6.05 5.59 4.67 2.24 6.33 0 0 3.11 2.57 4.65 4.76 7.59 6.97 0 9.39 0.87 3.45 5.9 6.69 9.8 8.68 0.87 7.2 6.93 10.6 7.41 4.78 8.33 3.4 0.5 0.52 0.87 4.8 8.35 2.47 6.92 7.96 1.41 5.89 4.23 6.79 11.4 8.52 1.41 10.9 3.91 8.85 1.17 2.36 4.76 5.32 6.6 9.68 11.7 7.59 2.11 6.45 9.68 11 5.21 5.64 9.07 9.51 0.5 9.76 10.5 1.96 7.33 2.77 2.62 10.9 3.51 3.28 9.5 7.62 9.3 10.1 8.09 11.8 4.26 9.44 6.63 1.62 8.88 11.7 12.2 12.6 3 0.87 0 2.77 10 7.1 10.5 14.8 5.09 4.93 8.9 6.33 9.64 4.74 9.4 12.4 9.73 10.9 11.7 12.7 12 0 6.61 6.12 5.99 7.61 10.7 11.2 9.31 10.6 10.3 10.9 10.7 10.7 9.27 9.26 6.96 9.64 1.96 11.1 9.64 0.87 7.8 8.96 7.02 9.54 4.07 4.13 7.11 6.17 9.41 10.9 6.35 11.2 9.86 6.45 1.62 5.74 6.73 7.98 12.2 2.67 5.33 10.3 9.19 10.6 7.89 5.71 12.1 7.54 6.91 6.98 0 4.1 6.73 6.45 4.36 11.3 8.22 3.07 6.45 8.39 1.96 11.4 6.42 10.3 3.7 13.7 12.6 5.92 10.8 10.7 10 7.09 9.05 5.49 5.27 0.87 12.5 11.3 11.9 11.2 11.3 10.9 12.2 11.8 4.49 7.5 7.28 1.41 12.6 12.5 12.9 11 9.67 7.9 10 10.1 9.13 9 6.68 6.23 10.5 6.74 4.41 7.27 11.2 4.95 8.45 8.07 9.31 8 10.6 10.7 9.6 0.5 10.6 9.17 10.5 10.1 8.24 8.48 7.08 9.97 8.42 5.88 11.2 9.93 10.9 5.76 10.3 6.81 9.03 6.49 10.5 10.6 7.87 10.7 10.6 10.4 6.53 7.87 13.4 7.58 2.11 8.71 3.91 8.72 11.2 8.99 8.21 9.57 4.85 7.61 11.1 9.9 11.7 10.7 10.7 10.8 8.9 9.32 12.5 8.67 7.09 6.19 10.5 9.69 0 1.62 7.22 4.07 9.02 12.5 5.04 8.1 0.87 8.8 9.12 6.26 2.67 8.16 8.92 6.85 9.32 1.96 4.9 8.3 0 11 6.11 8.99 10.1 10.5 3.34 2.93 7.75 6.99 6.76 9.44 9.92 4.76 4.1 8.93 12.4 3.75 0.5 10.9 10.1 0 6.09 4.62 9.58 9.03 4.44 0.87 2.58 3.83 8.39 3.45 9.89 4.33 10.5 4.57 9.03 10.9 4.62 8.1 9.59 5.22 7.46 2.61 2.16 8.43 6.98 11.4 8.06 3.08 7.91 2.36 8.23 8.37 0.5 7.8 0 1.17 9.57 9.83 7.62 1.62 6.16 0.5 2.24 1.96 8.05 10.3 4.78 0 7.53 6.63 7.42 8.46 12.7 0.87 7.48 2.85 7.71 6.07 7.9 5.81 7.09 6.31 2.24 4.41 7.16 7.72 1.41 5.5 5.77 1.17 4.3 4.82 3.87 0.5 2.93 0 0.87 4.1 1.41 2.93 9.87 2.11 8.75 6.72 6.32 5.79 4.67 3.75 11.4 12.8 3.7 0.87 1.17 0.5 1.41 0.5 7.33 1.8 1.17 7.33 5.62 1.62 1.17 8.33 1.96 9.71 8.68 0 9.2 10.2 8.29 6.94 3.75 8.38 5.19 1.41 7.44 11.4 8.55 4.07 7 10.4 4.52 9.09 4.89 5.58 3.08 7.83 11.8 10.3 4.42 7.82 9.37 11.5 8.41 10.2 6.23 7.6 4.13 10.3 7.97 11.1 8.42 7.69 1.96 9.37 8.66 9.06 8.75 9.19 14.1 12.2 10.3 7.88 4.55 11.6 3.61 1.96 1.62 14.7 10 4.07 10.5 9.58 0.5 4.33 14.2 9.23 5.73 8.81 0 8.82 14.4 8.21 5.55 12.6 9.7 9.71 7.37 10.2 10.6 5.29 4.72 4.8 10.4 10.3 10.7 9.09 8.04 1.62 9.18 11.1 15.4 9.08 10.3 11.2 13 3.91 14.3 0.5 1.96 12.5 12.2 11.4 13.2 3.4 10.6 9.68 11.1 2.67 9.62 9.62 8.77 8.55 9.36 14.8 9.75 10.4 9.95 9.85 11.3 9.78 11.7 10.2 10.2 9.73 8.6 11.9 11.6 11.2 9.95 10.6 10.3 12.4 10.9 9.87 9.3 10.8 11.4 12.6 11.8 10.2 10.8 10.3 9.35 12 11.1 12.5 9.58 11.5 10.5 11.2 11.4 10.6 10.4 10.3 6 12.4 14.4 11.7 8.44 0.5 7.85 7.86 5.65 6.62 0 0.87 3.01 0.5 10.5 7.74 9.57 7.91 10.1 9.44 9.97 13 10.3 0 9.25 12 3.83 9.15 9.78 10.9 1.41 13.7 7.74 11.8 6.95 8.36 9.55 9.5 10.8 13 13.4 9.96 11.1 9.74 10.7 9.54 9.91 5.88 0 8.75 10.2 10.1 9.58 1.96 11.4 12.5 4.1 10.3 11.7 6.96 10.1 7.79 2.67 8.97 5.06 1.8 7.37 9.77 12.9 14.7 11 10.3 6.61 12.3 10 3.45 11.8 12.9 5.35 8.26 10.9 10.3 7.71 8.73 10.4 12.4 7.09 9.78 10.5 11.4 6.31 3.08 8.33 8.87 6.67 13.8 5.96 0.5 12.6 5.14 5.49 2.24 4.26 0.87 13.1 10.1 10.1 5.04 10.9 8.68 0.87 9.81 4.57 4.55 7.24 13.2 9.92 7.66 5.27 11.6 3.21 7.71 0 4.44 0.87 3.01 7.61 3.28 0.5 5.5 6.22 11.7 8.54 13 10.3 11.3 6.8 10.2 9.93 4.74 9.28 8.5 12.5 7.87 7.66 9.69 5.46 3.79 7.5 13.5 6.22 13.3 8.95 0.5 7.15 9.77 8.22 6.56 5.69 4.83 2.27 14.1 10.2 8.48 11.8 9.68 0 10.8 7.53 0 1.17 1.41 5.69 6.67 7.29 0 9.62 10.3 13.9 7.9 5.64 7.78 8.19 9.92 0 6.71 8.18 8.67 11.8 9.26 8.61 7.21 2.24 0 10.6 6.16 10.5 2.11 5.81 4.72 7.99 11.5 9.8 5.39 3.4 9.22 4.67 2.36 3.21 7.9 6.17 7.22 10.2 14.6 4.07 8.8 13.7 0 0.87 4.95 13.3 8.88 11.2 9.52 11 9.3 9.48 5.11 10.8 8.22 9.99 7.58 7.98 8.42 9.88 8.1 11.2 10.7 5.76 11.3 15.2 4.6 10.9 9.6 9.22 10.2 4.93 10.9 10.8 5.58 9.66 7.93 11.3 9.32 3.87 9.47 4.91 4.47 11.2 11.2 8.7 4.26 7.31 1.17 8.91 8.09 10.2 11 10.6 11.9 8.85 8.03 0 2.28 0.5 13 3.75 7.68 11.4 7.28 6.35 4.3 9.4 9.54 9.19 10.9 10.5 12.4 11.5 6.85 10.7 13.5 7.51 1.17 14.4 1.8 6.32 0.5 8.25 10.7 7.97 9.38 9.04 10.2 7.95 9.46 8.8 7.05 9.09 9.86 11 9.91 8.83 2.11 8.84 8.86 10.9 9.84 9.68 9.22 8.84 9.83 10.4 9.3 11.8 7.75 9.04 10.4 9.74 9.65 9.75 9.8 9.76 9.9 11 12 9.68 10.8 5.33 8.57 6.93 12.4 7.27 8.45 10.7 10.2 10.3 5.35 9.62 9.63 2.85 10.5 9.42 9.72 10.3 9.72 8.9 11.5 8.03 11.4 8.92 9.74 10.9 12.1 11.6 11.6 11.7 8.24 7.46 1.62 2.14 3.01 10.2 6.31 8.69 9.72 9.62 11.7 8.37 10.5 10.3 8.81 8.81 9.97 9.84 7.23 8.88 8.95 7.45 10.1 8.37 12.4 11.4 10.8 12.1 8.59 9.57 10.3 8.3 9.95 11.4 10.4 9.28 9.74 9.04 8.88 10.9 11 9.55 10.5 1.41 8.18 7.74 8.13 8.92 9.55 10.5 8.54 9.83 6.95 9.68 8.37 12.2 9.36 9.78 10.2 8.42 7.36 11.7 0.87 11 12.1 8.48 10.7 12.2 4.67 7.38 8 10.3 5.93 7.22 5.35 8.72 5.93 9.09 8.01 7.34 7.23 9.49 9.85 10.9 9.17 9.54 8.27 8.96 11.3 8.57 11.3 9.66 8.43 8.73 8.33 12.7 3.21 9.06 9.15 11.3 10.5 10.2 9 0.5 0.87 0 10.3 4.55 9.45 7.26 5.23 8.82 11.9 9.32 9.79 8.22 0.5 10.7 10.9 6.1 8.86 10.3 8.72 12.7 10.4 9.32 9.83 3.01 7.62 10.1 2.77 11.3 10.8 8.23 8.12 12.1 8.3 9.04 10.3 11.2 5.16 4.57 7.59 10.2 9.57 10.8 10.2 9.76 6.01 6.1 9.47 9.64 9.94 10 9.24 10.8 11.1 4.85 2.67 10.9 10.1 9.84 8.84 10.7 9.37 6.58 10.5 10.7 9.15 11.5 7.59 10.9 3.21 9.69 9.76 4.17 7.34 9.4 7.43 5.08 6.26 4.26 9.16 7.4 4.3 8.84 10.7 10.6 9.95 7.04 9.46 10.5 11.3 10.8 6.43 12.8 6.29 10.6 4.83 7.43 3.28 11.9 10.6 7.69 5.39 9.37 9.69 9.71 10.7 8.43 2.85 7.84 0 3.34 8.34 9.48 8.77 10 3.87 3.95 11 10.4 10.3 7.07 10.8 10.3 8.58 11.5 4.1 9.19 8.81 5.57 8.92 9.92 1.41 8.88 12.8 9.76 8.94 2.67 8.43 8.15 7.66 10.9 10.8 12.8 5.84 10.9 10.1 8.72 8.88 6.55 7.58 6.66 8.9 7.32 7.23 10.7 8.78 2.67 9.82 13 11.8 8.29 8.41 6.93 0.87 10.4 9.34 10.6 7.83 1.17 10.2 6.32 10 7.42 4.07 8.85 10.2 9.09 1.8 12.2 12.5 8.42 10.4 2.67 9.81 9.19 11.6 11.1 8.67 11.1 10.6 11.5 10.7 9.32 10.3 12.4 11.7 11.4 8.57 10.8 7.84 8.91 9.38 8.85 4.72 11.7 10.5 10.2 9.53 9.72 8.89 9.18 11.4 4.78 8.79 8.26 3.45 9.56 10.8 7.96 9.03 8.8 9.23 8.73 10.6 9.82 9.62 6.51 9.45 12.4 4.23 2.58 9.41 7.84 4.65 8.66 7.84 11.6 9.52 9.28 10.2 8.45 10.5 11 10.3 8.98 9.61 12.8 9.28 11.1 8.56 9.62 8.87 11.7 9.64 10.7 11.1 12.1 10.7 6.97 12 11.3 11 9.38 10.5 10.7 9.51 12.3 7.4 0 7.52 9.68 10.8 9.8 8.89 12.4 9.25 10.7 8.74 8.83 9.63 11.6 11.3 9.66 9.33 9.59 10 10.2 9.72 11 5.35 10.4 10.2 10.6 9.9 7.11 9.36 9.06 9.1 7.96 6.35 10 8.36 10.8 8.44 11.8 5.09 7 3.75 5.82 6.9 9.05 4.93 9.32 10.3 9.2 10.7 9.38 9.02 11.1 13.9 10 9.68 8.89 7.86 10.6 11.2 5.35 11.6 7.38 10.2 7.23 0 11 1.66 8.67 10.1 10.7 9.84 12 4.74 10.3 4.57 1.62 2.11 7.56 9.6 3.28 11.2 9.02 9.39 1.63 10.5 8 10.4 10.2 10.1 2.11 1.62 7.64 9.59 7.84 8.4 12.3 8.94 9.23 1.62 10.5 12.3 7.87 7.9 4.6 8.51 8.21 9.84 9.72 10.7 11.6 8.37 10.6 7.89 8.92 8.56 9.66 9.41 0 1.17 10 4.72 11.6 9.99 11.3 9.1 13.4 10.2 0.5 9.62 10.3 11.9 7.46 13.1 0 11.8 13.8 13.8 10.8 7.76 11.2 13 5.08 0.5 11.5 8.85 8.46 10.5 13 8.91 7.51 2.47 2.77 3.34 2.36 12.8 0.5 14 1.62 9.07 8.97 6.91 8.33 9.67 10.6 1.8 10.1 8.43 8.37 0.5 10.1 13.5 6.58 8.02 7.24 5.19 7.73 9.76 10.6 8.31 8.77 2.93 8.9 7.49 9.52 11 7.51 8.71 8.87 7.96 2.85 7.72 12 10.1 11.2 10.6 10.1 1.41 8.63 9.28 10.1 10.6 10.2 8.9 1.52 15.3 8.85 9.29 2.11 6.31 8.6 6.74 10.1 8.26 10.1 10.1 11 7.78 11 0.87 8.33 11 10.2 5.27 7.87 1.6 9.31 6.78 6.56 3.87 8.23 10.2 2.24 8.22 8.46 7.27 9.65 9.24 9.77 13.8 4.78 4.23 9.82 7.53 5.56 9.47 0.5 10.9 11.6 10.1 3.83 10.3 8.97 0 12.6 11.3 6 10.5 10.4 12.5 11.3 11.9 5.02 9.88 4.33 11.4 8.03 11.2 6.35 11.2 2.21 1.8 10.8 13.1 8.71 11.2 8.21 8.4 8.24 6.78 5.74 4.3 1.62 1.17 10.7 8.84 1.96 6.42 4.33 4.78 9.27 8.74 9.1 8.46 3.4 5.72 12.4 10.9 9.16 10.3 8.82 10.1 8.89 10.8 9.03 8.64 9.56 13.9 10.8 9.01 3.79 9.98 8.37 6.87 1.62 7.21 9.19 8.51 3.34 9.1 1.8 3.83 9 10.6 10.9 8.85 8.36 10.8 10.6 11.2 2.11 8.69 5.46 5.48 5.96 6.85 4.08 8.96 8 7.13 8.39 7.84 10.1 9.85 11.4 9.11 0.5 7.52 6.26 8.96 8.84 10.3 11.4 11.1 7.64 3.59 10.6 7.74 12.3 11.1 10.2 4.2 2.24 10.3 6.66 8.3 11.9 7.75 11.6 9.66 10.9 0.87 9.49 10.1 9.95 10.7 9.86 10.7 11 11.6 4.26 8.42 10.8 2.58 3.15 10.6 8.81 9.37 9.48 3.6 11.4 2.36 5.45 8.98 7.61 5.84 10.4 8.42 9.28 8.96 7.92 9.05 1.96 1.62 12.5 11.4 13 8.57 5.57 8.74 8.62 2.11 8.29 8.13 10.7 10.4 7.45 9.72 11.4 9.66 9.51 9.54 8.19 9.73 7.84 9.68 4.74 10.1 8.03 9.71 9.68 8.67 6.4 11.2 8.76 10.3 11.9 8.51 8.79 8.8 6.46 3.45 10.5 5.62 5 11.1 7.37 8.88 9.64 4.17 9.04 7.53 7.85 9.7 2.24 8.6 8.92 8.54 9.75 8.69 8.55 6.81 10.9 9.06 13.6 6.61 11.4 8.32 7.38 8.69 7.45 10.8 7.02 6.01 4.62 9.12 7.85 2.67 8.87 9.35 7.73 8.13 10.2 1.41 8.6 5.02 9.24 11.2 10.1 7.48 6.47 11 8.2 7.47 10.8 11.9 7.15 4.67 5.3 7.23 11.5 7.29 0.87 8.89 11.3 8.96 7.87 8.94 2.11 9.96 10.1 8.02 4.03 8.9 9.54 8.2 10.5 11.4 10.7 7.33 8.54 9.62 9.36 1.17 3.87 10.1 0.5 11.4 10.7 5.09 8.3 11.2 6.73 11.8 7.4 2.58 7.61 5.57 6.04 2.85 3.15 7.52 9.4 11.1 6.64 8.06 9.72 9.14 5.89 9.98 8.43 12.5 10.2 8.71 8.02 10.3 13.2 8.77 8.46 10 5.02 8.3 7.4 8.91 8.25 8.45 8.34 9.76 7.89 7.5 7.83 9.41 9.37 10.4 3.28 8.54 10.6 7.97 7.34 10.7 8.47 8.75 10.7 6.77 9.36 6.91 1.41 6.88 0 10.7 5.71 4.52 5.38 9.52 7.13 8.83 10.5 7.74 10.1 8.23 10.5 5.45 11.6 7.1 8.44 8.14 7.94 5.35 8.37 6.7 5.78 10.1 2.36 6.94 9.28 8.22 10 7.2 10.2 6.7 11.1 3.66 9.91 9.14 8.61 10.4 9.61 6.38 8.86 7.66 9.21 9.72 6.73 7.37 9.88 9.41 10 9.06 9.64 5.63 8.24 11.1 11.2 8.49 8.53 8.96 10.7 8.67 8.9 2.36 5.64 6.87 4.03 13.2 10.2 9.96 10.3 9.39 10.3 8.15 10.2 9.71 8.93 10.6 8.99 11 10.2 8.76 11.3 6.31 9.06 8.55 10.5 9.63 10.2 9.77 10.4 10.6 9.2 7.42 7.15 10.3 11.1 10.5 0 10.2 10.9 10.5 11.7 4.67 8.19 3.56 9.63 7.94 10.2 10.2 9.55 8.54 9.1 9.89 7.21 8.22 7.87 8.67 7.21 12.4 7.99 9.36 7.97 10 7.55 7.65 0.87 8.82 9.04 8.91 9.18 11.4 11.3 8.77 10.3 9.89 9.9 3.75 8.85 7.44 8.21 11.1 9.39 10.6 5.3 9.45 0 8.74 12.1 8.21 7.17 11.8 8.45 6.07 10.9 11.1 6.19 12 12.7 11 7.02 9.18 8.71 11.5 8.4 8.48 8.2 10.7 10.3 12.5 8.65 10.8 8.2 8.63 7.07 9 9.17 5.91 10.5 0.5 0 6.25 4.38 9.44 7.5 4.23 7.34 9.72 9.34 10.5 8.06 5.39 9.57 9.32 6.12 11 10.1 8.94 9.69 9.1 12.3 10.6 10.5 8.47 11 9.38 9.28 7.28 9.66 9.32 7.6 8.43 5.22 6.64 8.51 9.83 8.22 5.16 10.7 3.28 6.91 7.08 10.3 7.61 9.61 9.04 6.67 10.8 8.52 9.92 5.99 4.13 4.13 6.85 1.41 7.98 9.34 7.93 8.95 7.9 10 0.5 10.6 9.06 10.1 8.9 9.67 8.67 6.69 10.5 8.57 9.92 9.63 11.4 6.88 6.93 11.9 8.51 9.68 8.6 9.79 2.11 9.62 10.8 8.24 8.19 0 8.69 8.7 8.34 8.68 0.5 6.48 10.5 11.6 10.2 8.86 8.99 8.41 7.22 9.31 10.7 9.73 9.61 11.3 3.4 6.2 9.57 10.1 10.1 8.66 11.1 9.65 10.3 7.78 11.2 11.7 8.03 8.93 6.88 8.79 10.2 9.16 7.54 9.08 10.1 10.8 3.79 7.51 10.3 9.44 8.06 12.7 8.16 9.06 10.5 8.36 6.69 9.26 8.93 8.66 9.01 6.02 11 8.74 9.41 7.06 0.5 9.06 11.1 8.91 8.64 0 10.3 10.9 10 5.42 9.59 10.1 7.86 10.6 7.78 10.6 2.47 11.3 7.94 7.9 4.49 10.5 9.53 7.08 9.09 11.7 1.96 2.24 8.16 7.05 9.9 8.53 11.5 8.51 7.25 8.8 4.82 10.7 5.86 8.96 10.5 9.68 7.12 10 12.1 11.6 0.5 8.74 10.2 10.1 6.77 8.15 11.5 10.1 10.8 9.68 6.94 9.17 8.02 9.32 12 8.77 9.61 4.69 8.21 8.02 7.74 11.7 3.99 9.48 10.2 10.3 8.7 11.4 2.11 10.6 9.63 10.5 9.21 8.87 6.73 10 9.34 8.79 0.5 5.68 8.71 6.13 8.07 9.12 9.37 11.4 3.34 8.67 9.94 11.4 10.9 7 11.4 8.39 6.49 8.99 9.11 10.1 0.5 9.62 9.97 0 8.47 9.55 9.64 11.9 9.44 11.8 7.43 6.06 7.51 9.12 5.06 11.1 8.71 9.59 9.87 9.39 3.61 8.26 8.65 9.91 8.79 10.7 10.1 7.94 7.7 8.25 9.13 6.24 8.63 9.47 11.1 3.75 6.59 9.94 10.5 12.6 7.31 9.99 8.49 8.97 9.02 7.51 7.32 8.86 8.42 1.17 2.58 9.55 11.9 9.13 5.08 8.78 8.15 11.1 9.61 10.1 10.4 7.85 10.6 10.4 9.93 7.03 8.68 12.2 10.8 3.45 8.92 3.4 7.29 8.33 8.53 4.55 0.5 4.44 7.53 4.1 7.82 8.68 5.49 5.23 8.99 6.55 8.69 11.9 10.9 10.4 8.19 2.77 9.71 4.36 9.29 10.4 8.08 11.4 3.56 8.1 10.9 11.1 5.36 8.54 7.3 8.7 0.87 5.02 1.62 10.3 8.17 4.07 9.95 10.2 3.7 1.96 0.87 8.61 9.04 5.34 8.68 11.7 0.5 4.69 6.12 5.59 9.99 8.33 8.01 9.95 8.33 6.52 7.98 9.34 10.1 10.5 11.3 0 11.2 9.28 7.67 4.23 11.5 10.4 7.19 11.1 7.29 10.9 9.41 5.85 0 11.3 8.92 7.39 8.23 9.16 8.1 10 5.49 7.78 11.8 10.2 3.47 8.14 8.69 7.68 8.12 8.78 8.99 11.1 10.5 9.65 10.7 10.3 9.95 10.3 11.8 8.69 10.2 6.3 11.3 7.41 7.88 8.8 7.14 7.85 8.64 5.85 10.5 6.38 11.2 9.44 9.92 7.34 9.69 8.51 11.4 9.74 8.96 10.5 1.8 9.7 10.4 11.3 7.12 10.3 11.3 11.2 10.2 8.07 7.55 9.09 12 8.58 7.04 8.49 6.91 8.08 10.4 7.03 7.17 10.7 6.24 7.3 9.41 10.4 10.6 8.71 8.77 10.2 7.74 11.9 7.81 10.6 6.7 9.89 9.83 10.5 1.8 11.8 6.21 11.3 8.06 9.68 9.85 6.7 11.4 8.06 11.1 8.53 11.2 3.7 7.1 7.55 8.01 9.22 9.87 11.1 8.49 10.7 7.05 7.52 9.58 10.3 8.55 4.93 9.27 11.9 9.49 8.69 8.01 10.2 10.8 11.2 11.3 10.2 11.3 9.25 7.08 10.4 9.42 8.69 10.3 12.7 10.2 9.73 9.31 8.78 9.94 6.61 11.2 10.3 9.8 7.46 9.48 9.6 5.83 9.66 9.63 5.45 9.98 9.4 10.2 11.4 8.41 8.57 4.33 8.72 5.96 8.79 9.5 8.33 5.84 9.21 5.66 4.52 8.46 8.81 7.62 10.5 9.87 2.67 6.33 9.01 7.21 4.55 6.35 8.36 8.83 9.44 10 3.51 7.87 6.02 8.99 10 1.62 9.02 6.56 4.23 9.33 5.04 8.34 7.1 9.03 0.5 6.54 10.9 8.45 4.47 10.4 8.92 0 10.1 6.14 5.26 10.9 9.78 10.3 9.39 9.47 11.7 9.78 7.55 10.2 8.45 9.25 5.85 8.94 5.52 9.89 11.1 10.1 10 8.47 11.2 9.33 9.98 9.69 3.58 10.9 5.7 8.76 7.94 10.3 2.24 9.26 9.85 9.92 9.35 8.66 0.87 7.92 8.81 10.1 9.31 8.83 8.38 5.33 10.5 4.93 3.87 1.62 12.8 10.7 8.18 10.3 1.96 11.5 9.28 7.93 4.69 8.98 8.84 11.1 3.4 10.3 9.79 12.5 7.83 9.09 8.97 7.34 8.24 1.62 13.2 9.04 6.52 9.29 4.36 9.13 5.11 10.8 10.1 8.28 7.07 8.82 9.71 4.49 0 10.7 11.1 10.8 9.84 10.4 10.1 5.41 8.5 10.7 8.01 8.59 7.25 1.62 6.39 0 10.5 10.3 8.46 5.96 9.67 5.66 9.82 11.7 9.49 10.8 11.7 0 6.87 8.95 7 10 0 0.5 2.11 9.52 5.59 5.87 0 2.67 2.11 2.11 2.67 2.36 2.1 2.77 9.68 1.96 2.24 2.11 1.8 1.17 10.1 0 3.45 6.05 2.85 2.11 1.8 3.66 3.91 1.41 4.03 9.71 1.41 2.47 2.36 6.88 2.58 8.28 7.08 4.55 2.36 3.95 3.7 10.9 6.02 6.76 9.18 1.41 8.09 10.4 1.17 8.1 7.81 6.37 11.1 0 9.38 10.6 3.21 9.73 8.5 2.36 10.6 10.7 5.2 8.37 10.2 6.98 7.97 5.79 12.5 6.61 10.2 0.87 0 9.61 9.77 9.81 10.7 10.1 10.6 5.53 7.77 12.2 7.92 0 0 8.7 3.83 8.83 5.27 1.96 9.78 7.76 8.91 6.49 0.87 14.8 1.41 8.93 3.83 11.5 5.78 8.14 10.7 7.05 10.9 6.16 11.1 9.75 10.5 8 9.77 8.38 3.56 1.62 5.24 0.5 8.83 0.87 10.1 2.93 11.2 9.87 16 8.08 4.3 10.6 9.01 11.7 9.98 11.4 7.61 10.3 11.1 9.04 12.1 10.4 10.1 7.65 2.11 11.5 12 12.3 12.3 10.4 10.6 12 11.9 8.76 10.2 11.2 12.5 7.64 10.4 9.92 4.13 11.4 9.47 11.1 9.7 10.2 9.83 5.82 10.1 12.4 11.5 5.27 9.73 6.79 10 8.98 5.59 7.41 13.1 6.71 9.27 8.72 7.27 11.3 9.81 10.3 7.71 12.3 10.2 9.12 8.22 8.24 11.3 9.12 10.1 8.79 10.1 8.2 8.39 7.73 10.3 9.84 11.2 11.7 9.66 10.2 7.72 5.92 10.2 9.29 11.9 0.5 8.57 3.87 10.3 4.85 11.1 5.64 8.33 4.47 3.4 10.9 7.42 6.02 8.37 10.8 7.77 8.58 9.67 11.4 9.65 7.7 11.1 9.2 8.89 9.92 11.1 9.19 6.17 0.87 9.89 7.58 7.45 11.7 7.32 10.4 0.87 10.5 9.57 10.2 12.1 10.2 8 1.96 8.35 7.1 8.54 12 7.53 9.32 12.9 9.94 3.15 10.4 7.09 0.87 12.1 11.3 11.7 6.09 10.4 6.34 7.49 12.7 3.28 10.3 0.5 10.2 1.17 9.07 8.6 9.57 12.7 1.41 9.28 8.47 11.3 2.47 8.88 8.28 10.8 9.48 12.3 7.31 9 6.09 9.07 7.43 10.9 8.93 6.7 9.05 9.34 9.29 11.4 10.8 11.3 5.41 10.9 1.96 11.5 10.5 11.5 8.1 11.9 9.15 9.82 9.89 11.8 6.79 11 9.64 4.1 7.85 1.96 10.3 6.82 10.2 3.15 0.87 6.58 10.6 10.9 8.62 11.7 10.4 10.4 10.1 9.92 7.93 8.98 6.7 9.5 9.28 6.56 9.46 0.87 9.52 12.2 10.3 3.95 8.84 5.68 8.47 10.4 13.2 8.63 7.35 12.6 11.7 9.12 8.8 7.72 10 9.83 11 8.68 2.11 11 10.4 8.37 9.6 10.3 8.36 7.96 4.38 4.47 12.8 7.44 10 0.87 3.15 9.8 10.2 7.48 2.36 4.49 9.51 11.9 3.11 8.08 8.77 8.64 7.19 6.25 1.41 6.38 7.11 2.24 2.67 10.4 8.63 4.26 9.24 5.08 7.97 4.41 2.86 1.96 9.74 8.44 0.5 7.34 4.74 11.7 9.99 10.8 4.62 11.1 6.62 11.1 5.08 7.4 13.1 6.05 9.41 9.71 10.2 9.96 0.87 4.78 4.38 6.72 10.1 8.31 7.94 10.2 3.51 12.7 9.52 4.26 2.58 3.7 9.39 9.84 0 4.12 11.3 10.7 5.13 9.16 9.78 7.37 5.09 3.61 4.69 10.1 10.4 9.35 7.28 4.2 7.78 9.41 8.05 3.56 10.4 8.28 9.45 1.17 9.12 0.5 9.1 5.13 4.62 3.66 9.69 10.4 10.6 3.34 8.58 11.3 10.4 7.87 9.97 7.11 10.7 5.57 10.8 7.11 10.3 5.68 5.93 0.5 0 8.72 9.12 6.15 11.4 11 9.8 7.55 6.85 2.36 6.05 8.78 10.7 0 8.23 9.32 7.12 8.69 5.45 6.19 12.1 5.91 8.25 9.44 3.45 8.02 8.88 6.8 7.51 11.4 8.63 10.2 7.6 7.96 8.02 7.84 8.5 2.67 15.1 9.32 7.09 10.2 5.58 1.17 3.01 7.35 0.87 7.08 8.9 0 7.86 9.32 9.51 9.84 7.95 9.96 10.6 10.2 6.01 9.03 1.8 4.07 8.36 9.3 7.92 7.27 10.8 1.17 8.63 9.61 6.93 11 9.06 7.98 9.83 0 5.19 9.47 9.56 9.64 8.27 5.53 8.55 6.51 12.6 8.87 3.28 11.3 11.3 5.88 5.43 4.49 10.2 8.57 10.9 11.5 10.3 7.34 6.8 7.58 11.1 7.55 10.1 10.1 11.2 8.06 8 8.99 11 5.9 5.88 6.78 13 6.6 8.01 8.45 10.4 11.2 7.67 5.08 7.98 5.6 8.51 1.17 9.09 6.45 2.85 9.26 8.37 10.5 6.85 9.87 5.6 3.4 10.4 7.75 8.73 9.41 9.17 8.35 9.41 8.62 9.17 10.3 2.7 7.13 5.39 7.44 5.23 5.45 6.24 7.39 10.9 7.86 3.56 9.43 10.4 8.55 3.4 3.28 7.73 3.66 8.72 7.01 4.57 8.62 8.15 10.6 6.73 7.4 9.6 9.75 9.86 11.5 8.77 8.81 6.43 11.1 12 11.5 10.3 9.58 10.7 0 4.87 6.93 8.63 9.16 2.85 11.8 3.28 4.97 8.59 6.37 10.1 9.75 5.04 2.85 5.91 8.13 2.24 8.03 8.19 12.8 6.92 4.69 7.68 9.71 9.09 6.12 4.57 1.8 4.33 4.07 5.85 9.3 8.52 3.01 10.2 8.62 7.39 9.75 7.93 9.43 13 3.08 11.2 11.9 9.55 9.57 10.3 10.8 10.6 8.1 9.54 8.68 9.78 11.3 8.96 11.3 12.2 11 9.12 10.8 9.24 3.28 10.5 5.96 7.55 8.34 9.74 10.3 6.23 4.62 10.3 9.91 9.98 6.26 9.32 9.84 7.13 6.69 6.22 4.03 5.11 9.58 8.69 8.83 9.32 7.35 10.8 11.5 10.9 10.1 2.24 9.8 8.79 12.4 10.4 10.6 10.8 8.93 8.06 0.87 10.3 0.87 0 12.1 10.7 10 11.5 9.26 9.88 5.93 1.62 7.38 9.71 9.58 11.9 10.4 11.1 8.37 11.7 7.98 6.31 10.1 10.6 8.4 11.6 12.3 10.4 11.2 8.83 8.41 13.1 12.4 11.6 8.63 8.68 7.68 9.21 8.61 8.54 10.4 8.04 11.6 10.7 8.93 10.6 10.3 14.3 10.9 10.9 13.3 9.09 11.9 7.04 7.59 9.39 8.54 9.55 3.75 10.6 4.91 11 10.4 6.22 9.61 9.19 9.16 3.01 3.61 4.1 9.78 8.04 9 11.1 9.54 4.57 9 4.17 11.3 11.1 8.01 11 10 9.62 11.2 9.92 6.23 1.41 11.1 8.85 9.96 1.17 5.46 11.9 8.77 5.38 9.04 7.43 10.6 11.7 1.41 2.47 11.6 9.53 8.91 7.86 5.64 0 0 3.27 12.3 3.83 6.6 0.5 11.8 10.3 0 4.77 12.1 2.24 9.86 9.32 4.87 6.56 11.8 12.1 8.33 12 10.4 5 4.3 10.4 8.36 10.2 10.1 9.02 9.23 9.91 10.5 10.4 0.95 9.23 9.84 7.34 5 0 11.6 5.77 10.4 9.58 9.46 15.9 9.68 11.6 1.41 8.72 6.17 3.51 9.69 1.17 10.6 9.07 7.97 2.93 10.5 3.15 10.3 10.8 11.4 9.82 10.6 4.03 0.87 8.96 7.18 2.58 10.1 7.53 9.36 3.95 8.02 10.3 0 11.5 6.05 0 8.73 12.4 4.41 10.6 9.85 9.72 1.17 8.4 8.34 11.7 10.3 8.91 9.28 9.7 9.72 8.47 2.24 9.58 10.9 12.5 9.24 10 8.67 11.6 9.88 10.8 8.18 7.89 11.1 10.2 1.41 8.79 11.6 5.23 6.99 9.63 5.32 11.3 13.7 0.87 0.87 5.53 8.53 1.17 10.8 8.49 9.43 10.1 8.86 9.53 2.58 10.1 9.04 6.66 6.92 2.67 5.11 5.02 7.69 7.67 6.37 0.5 10.9 10.8 9.07 9.59 15.9 16.1 14.6 14.9 11.3 11.9 14.7 2.17 16.8 8.68 14.2 14.6 14.7 15.3 14.3 14.4 14.8 12.6 16 4.1 13.4 13.6 11.5 13.9 14.4 15.1 15.7 15.2 14.8 14.4 15.1 14.8 14.3 14 12.3 14.6 15.5 14.6 10.3 9.77 15.9 8.32 16.6 16.1 15.3 12.5 11.3 11.7 12.5 15.4 16.1 13.7 15 3.35 2.36 4.98 7.72 5.32 14.5 1.41 2.47 15.4 9.97 7.27 9.89 9.72 10.3 13.8 15 15.3 13.6 15.4 14.8 14 14.4 13.8 15.5 14.6 15.3 8.69 15.7 15.3 14.9 14.7 14.2 15.7 14.4 12.4 11.5 14.4 10.2 14 3.21 10.1 11 9.34 11.2 10.4 11.2 0.5 7.3 10.6 9.19 3.61 7.21 9.36 9.98 9.17 2.24 7.29 6.84 6.43 4.26 9.95 13.1 4.38 8.74 0.87 12.3 7.33 7.38 10.4 13.3 0.87 9.86 3.91 5.88 10.3 10.6 12 7.57 7.34 7.48 11.5 10.6 9.67 11.6 7.55 8.39 10.1 9.01 10.4 2.36 8.41 9.75 8.28 10.5 5.69 7.18 6.17 5.55 8.11 0.5 4.55 1.41 12.2 4.55 1.17 6.1 8.19 12.1 8.3 6.29 7.28 9.6 9.96 2.24 4.62 8.28 5.77 1.96 0.5 6.7 11.7 2.93 3.31 8.05 5.23 3.66 0.5 0 9.05 11.3 5.46 9.1 3.75 4.95 7.12 9.61 12.1 6.42 1.62 8.03 11.2 9.5 9.94 9.57 11.4 3.15 9.46 10.2 10.3 9.64 10.4 10.8 9.48 3.21 9.58 9.66 5.79 6.83 10.6 9.77 10.8 8.91 7.8 11.6 7.9 3.02 7.77 9.51 9.73 10.8 5.93 11.4 1.17 1.61 9.37 7.18 7.79 9.13 6.9 8.68 7.48 10.2 7.04 8.19 9.04 7.91 10.9 5.88 10.9 6.9 9 1.41 8.05 7.93 10 7.69 4.38 9.78 7.47 5.33 8.26 3.83 8.54 11.1 7.97 9.59 5.39 14.1 6.05 9.72 8.86 7.85 5.64 6.83 7.58 10.2 2.47 11.2 6.69 4.82 3.79 7.01 6.04 6.36 7.51 8.03 8.57 7.2 7.61 8.87 9.19 8.35 13 10.5 7.91 12.3 7.47 6.37 6.59 6.01 8.71 5.48 4.93 3.83 2.77 9.56 4.1 11.3 1.8 9.09 1.62 9.53 8.29 3.08 8.66 6.93 9.41 10.7 9.63 8.18 11.8 6.38 10 2.36 8.97 4.91 8.05 4.36 8.12 12.9 0 8.29 5.96 11.3 9.43 12.8 11.3 8.07 9.56 10.2 8.85 3.75 6.02 11.9 11.7 8.72 11.9 2.47 8.7 8.58 7.44 3.87 3.01 2.11 10.4 0.5 12.3 5.21 12.5 12.9 4.07 7.79 6.24 9.64 3.01 8.73 7.64 6.98 9.66 10.6 1.8 5.72 2.36 9.33 12 6.16 1.62 12.3 9.95 9.53 12.1 11.9 9.47 4.23 9.87 6.6 6.95 10.4 9.3 8.35 11.2 2.85 6.69 7.04 4.97 0.87 4.74 5.98 11.3 10.7 8.74 6.6 11.3 7.34 1.8 1.17 10.6 7.57 8.3 0 0.5 8.57 6.45 5.29 6.17 4.58 8.5 0.87 2.24 1.62 3.4 7.43 1.41 9.4 8.74 0 10 8.26 7.38 7.03 2.58 7.17 8.32 3.08 8.34 6.42 8.18 6.48 3.4 0.5 4.82 7.03 2.24 8.95 9.59 1.8 6 8.89 9.47 10.6 9.51 10.8 9.54 11.4 9.37 7.83 8.7 9.82 10.6 8.81 1.17 3.87 6.65 2.93 5.38 3.75 4.52 1.8 13.3 3.45 4.74 0.87 8.28 4.78 7.96 8.76 2.58 11.5 0.87 3.83 0 7.49 9.51 6.16 0.5 10.2 6.8 0.87 6.9 0 9.82 8.86 7.44 0.87 3.24 0.5 0.5 11 3.15 5.21 6.6 4.89 0.5 3.83 2.47 10.6 4.44 1.8 6.66 7.61 9.79 0 10.1 2.11 4.1 4.23 9.42 2.11 5.11 0.87 11.2 0 9.4 5.11 4.23 9.4 0.5 0 7.07 10.8 9.56 6.01 9.23 1.41 0 3.4 0.87 2.77 3.21 10.1 7.99 7.88 6.38 10.1 10.2 12.8 6.26 9.82 9.33 13.4 3.51 3.87 10.4 9.62 10.1 9.93 9.69 6.78 7.79 3.15 8.22 11.3 9.29 9 9.66 10.5 11.6 7.49 9.3 7.93 8.17 8.57 10.1 8.77 7.96 11 10.2 10.4 9.96 9.45 8.62 8.93 9.37 8.14 10.3 9.71 7.49 8.99 10.1 2.11 10.4 10.8 9.08 7.24 8.34 8.61 8.63 5.13 10.9 11.9 8.45 5.49 9.8 8.47 3.95 8.8 7.28 0.5 6.31 8.19 10.1 9.92 4.47 7.71 5.73 7.72 9.71 4.03 10.3 10.8 8.23 7.45 10.9 9.84 8.41 11.2 9.56 7.37 7.34 7.94 7.97 8.4 9.03 7.47 6.26 3.18 4.1 2.36 8.39 9.49 9.21 6.38 9.24 5.8 7.85 5.18 7.36 0.5 8.89 9.55 7.08 8.6 10.9 8.26 4.23 9.47 6.61 10.6 7.89 8.69 11.1 7.69 10.6 1.17 10.4 10.3 9.77 9.8 10.9 10.4 8.55 9.74 11.8 8.48 7.78 9.95 9.54 10.3 0.5 7.62 11.7 10.7 10.9 9.14 11.8 6.09 0 9.33 6.97 8.24 5.06 3.95 4.65 9.9 11.1 8.63 8.51 1.8 9.01 3.45 3.91 7.92 5.78 4.13 3.51 10.1 10.2 10.6 8.21 9.94 11.8 11.4 0 12.2 10.7 8.89 9.28 11.3 0.5 12 9.31 12.1 9.14 11.2 4.95 9.09 5.88 11 1.41 3.08 12.3 0 11 10.9 5.97 4.38 10.1 8.04 9.92 6.53 5.48 9.27 9 8.23 11.1 12.6 11.6 6.62 0 12.6 0 6.42 2.47 0.5 5.29 0.5 0 5.29 6.58 0 12.1 5.87 6.05 0.5 1.41 5.04 3.15 7.94 8.13 4.82 6.28 3.21 1.17 2.67 6.78 10 9.81 9.27 10.3 0 9.05 4.91 8.44 3.7 10.1 6.26 3.34 3.08 0 10.6 0.87 8.59 6.2 4.49 3.35 0.87 10.2 9.66 1.8 1.17 0.87 8.55 7.46 7.32 7.34 0 7.85 7.98 0.87 4.94 2.85 6.77 2.11 5.52 9.5 3.61 4.49 6.67 3.4 5.38 0 9.02 0 8.53 0.87 6.17 7.91 0.87 8.18 10.3 4.23 8.45 0.5 0.87 9.99 10.2 9.62 9.81 7.58 3.45 1.17 4.47 4.86 6.86 2.93 5.27 9.8 6.43 8.18 5.19 10.1 8.81 12.8 6.76 8.13 8.51 11 10.1 6.66 10.3 8.03 14.3 7.72 7.28 9.22 1.96 11 10.1 9.46 10.6 12.1 8.71 3.99 8.42 8.8 2.85 6.81 0.5 3.56 10.9 7.94 11.8 11.4 13.4 5.94 7.68 6.21 12 2.28 10.2 8.35 8.6 10.7 8.23 10.4 10.9 12.5 8.95 6.42 2.58 9.01 8.59 8.01 8.7 9.92 6.47 10.5 9.2 12.5 11.3 9.87 13 10.2 9.06 10.9 11.3 12.5 11.4 11.3 11.5 10.4 10.6 10.1 5.68 8.45 11.6 10.1 7.97 8.25 0.5 13.1 1.17 10.8 6.6 10.7 10.9 11.7 11.1 10.9 10.8 8.25 11.3 7.13 4.57 8.92 1.62 8.73 10 11.3 9.42 11.1 10.1 5.81 11.7 6.49 10.5 6.17 12.7 8.96 10.7 8.17 9 7.88 0.87 11.3 6.68 7.23 10.8 10.2 8.62 11.2 0 6.06 10.6 10.8 10 11.3 10.5 0 9.62 9.93 13.2 11 10.6 10.8 12.1 12.1 9.71 10.1 5.66 11.8 11 9.83 8.39 11.7 9.79 10.3 11.8 10.3 9.72 10.5 12.4 10.1 11.1 12.9 6.94 6.37 2.47 11.7 9.12 11.7 12.8 0 13 9.18 13.1 12.7 12.2 6.82 11.5 9.93 4.33 0 1.17 0.5 1.17 3.99 0.87 1 13.8 3.3 0.5 0.87 5.88 10.9 11.7 8.19 8.22 2.36 6.72 9.91 10.2 7.82 9.09 9.34 9.35 6.42 0 10.1 10.7 3.15 3.45 6.09 7.58 8.88 10.8 10.2 8.39 10.8 9.15 8.61 7.62 9.74 0 13.6 3.28 9.45 11.6 11.7 5.35 12.5 10.1 9.83 9.81 11.5 9.52 11.4 8.43 13.4 8.23 6.82 9.55 8.35 4.74 11.9 5.78 0 5.35 10.5 9.28 6.9 1.41 4.03 1.96 8.67 8.82 0 8.41 8.79 8.97 9.21 9.06 9.07 11.4 7.32 9.87 11.1 11.8 10.1 10.8 9.34 8.84 5.97 8.79 2.85 2.11 12.7 13.8 12.7 10.6 13.2 10.1 11 10.8 2.11 1.62 8.91 11 8.95 14.6 9.61 8.25 8.11 6.79 9.27 3.08 4.33 6.63 10.6 9.58 10 2.58 4.07 7.32 9.91 1.62 0.5 12.1 5.37 10.3 10.4 4.97 5.57 11.2 8.84 8.76 6.32 8.65 10.1 4.72 15.2 8.08 9.14 10.3 10.9 11.4 0 8.48 10.9 6.67 12 0.87 0 8.83 9.49 8.62 5.19 9.99 10.6 9.76 4.85 12 8.77 10.9 9.81 5.84 0.87 7.93 14.4 9.33 5.04 9.2 0.87 8.93 9.4 5.93 8.73 0.5 9.48 9.23 9.82 10.3 3.61 10 10.4 7.88 10.3 7.3 9.1 6.34 11.9 3.4 9.96 11.7 6.93 6.87 7.31 0.5 13.1 8.58 0.5 7.87 4.41 9.78 11.4 6.67 9.4 0.5 7.3 10.2 10.4 9.35 12.6 3.83 0.5 10.9 0 9.28 5.83 0.5 9.57 10.9 10.1 10.7 10.2 7.27 13.5 10.3 9.27 0.5 11.9 10.2 11.8 8.8 12.7 8.26 9.88 7.78 11.6 8.59 6.84 11.7 9.82 8.7 10.1 7.48 6.2 16.4 10.9 8.53 7.35 8.91 9.44 8.55 10.1 9.74 8.42 9.45 11.5 13.5 10.9 6.33 6.26 2.58 4.98 10.5 13.8 10.9 10.8 7.56 11.8 9.68 2.36 1.17 0 6.71 10.8 6.67 8.78 5.33 10.9 11.2 6.77 4.13 12.1 10.8 9.59 9.5 9.74 10.5 10.3 8.62 8.73 11.4 9.45 12 0.5 14.2 10.1 10.4 8.87 13 11.2 8.77 9.05 11.7 5.85 15.5 1.17 8.11 8.65 8.15 14.7 8.49 11.7 9.5 8.53 6.97 6.65 8.57 0.5 14.1 10.2 11.9 4.36 3.79 3.45 1.8 2.11 7.33 10.7 8.27 0 5.11 3.48 11.2 8.96 12.7 1.17 11.1 0 10.5 10.6 4.98 10.4 7.01 8.68 11.6 9.5 11.7 11.1 9.56 6.17 8.36 8.11 7.87 7.53 10.7 8.11 4.87 1.17 4.03 6.53 10.1 8.39 10.1 3.28 4.38 5.36 6.13 7.59 1.62 7.18 4.92 3.15 4.82 10.9 10.8 4.07 7.87 0 2.24 6.33 13.7 5.42 5.98 0 7.95 10 9.51 1.17 10.4 1.96 5.76 5.91 4.8 4.98 4.95 9.59 8.3 0 15 4.41 7.93 0 6.05 0.5 2.36 7.55 7.02 1.17 10.3 0 0.5 9.7 4.13 9.43 6.53 4.33 4.13 8.02 3.92 2.77 4.76 6.75 4.2 4.65 1.17 5.91 11.8 0.5 6.09 6.47 2.11 0 7.97 11.3 8.42 6.36 8.24 2.47 3.66 11.9 4.91 5.73 0.87 8.17 11.9 0 1.62 4.1 10.7 7.1 8.55 3.91 5.35 2.24 8.23 8.68 1.17 1.96 2.77 8.36 6.7 8.17 7.04 6.6 1.41 9.69 2.58 11.7 0.5 14.1 2.11 14.4 15.1 12.2 0 10.8 9.86 9.88 8.32 10.7 12.7 10.7 7.89 10.5 11.1 8.62 12.2 6.14 10.6 11.6 11.6 9.87 10.7 9.91 11.5 9.79 12.2 8.84 8.82 8.54 5 12.6 4.33 9.61 5.46 9.68 6.26 9.23 9.82 8.17 10.6 10.1 5.06 11.7 10 10.6 8.95 3.08 11.9 1.8 12.5 12.3 13.2 11.2 11.4 9.91 9.68 10.9 11 9.34 3.66 11.4 8.29 8.71 9.9 11.9 10.2 9.54 10.3 9.3 8.83 10.9 12.8 12.3 11.6 11.1 9.41 9.96 11.1 6.21 4.78 8.93 6.23 13.1 12 9.18 0 4.62 4.3 2.58 6.87 9.88 9.18 6.82 1.96 4.57 9.84 12.7 7.41 9.08 11.8 11 6.51 7.13 10.1 10.2 9.51 11.4 11.5 3.79 3.34 5.46 8.01 2.77 0.5 4.95 2.47 11.3 4.67 0.87 1.96 0.5 9.16 7.6 1.17 10.7 5.58 0.5 0 7.71 7.61 9.84 6.85 10.7 2.67 12 10.6 5.8 9.97 7.43 9.09 12.9 9.54 10.2 10.6 12.2 8.65 13.1 11.8 11 14.7 7.13 12.6 10.7 4.89 11.7 8.59 10 7.66 6.61 8.47 9.24 6.61 10.1 6.69 12.9 8.18 7.91 6.86 5.52 8.91 6.4 7.65 5.09 6.51 6.85 8.79 9.87 6.52 10.3 8.91 7.84 4.74 10 9.71 9.32 6.92 7.31 7.52 7.16 6 7.89 7.11 7.14 6.61 6.42 3.01 0 2.36 6.39 8.05 6.48 9.54 9.42 6.17 0.5 9.94 2.67 5.88 8.19 7.12 0.5 2.58 5.95 5.53 3.84 10.7 5.86 1.41 2.11 0.87 0 0.87 4.69 8.21 8.54 4.36 8.67 7.68 5.42 6.73 5.78 6.82 9.87 7.89 5.58 9.35 7.9 9.95 0.87 10.6 10.6 8.45 9.41 8.04 5.16 5.93 1.17 10.5 6.17 10.7 8.63 6.03 3.75 4.57 3.56 7.05 8.49 6.97 8 10.8 6.82 8.08 5.32 7.28 9.48 4.23 9.24 7.55 8.09 4.13 9.7 11.9 0.87 5.5 9.02 4.82 4.03 12.9 8.94 5.83 6.33 5.39 8.24 0.5 7.95 5.42 1.17 6.43 7.55 8.46 7.55 6.99 1.62 4.1 8.16 6.96 4.52 11.4 9.14 9.28 12.9 5.65 10.8 6.5 11.6 3.79 12.7 7.02 11.9 7.63 3.51 12 8.69 9.83 9.68 10.6 8.97 13.2 9.46 2.11 5.59 11 10.3 8.14 5.54 8.81 10.8 10.1 6.7 8.95 10.5 11.6 11.8 8.95 3.4 10.7 2.77 8.37 10.4 5.54 6.05 8.57 9.81 10.6 9.16 9.42 0 7.28 7.04 11.7 6.9 10.4 11.7 8.55 11 10.3 7.54 4.38 10.4 10.2 0.5 10.7 10.6 8.78 10 7.19 11.2 10.4 2.67 13.9 9.84 9.23 7.51 8.93 10.3 8.78 10.9 10.4 6.45 9.48 13 6.13 10.1 4.57 9.52 11 11 9.87 7.69 11.6 9.45 10.5 9.91 8.37 6.63 7.75 6.97 11.3 6.97 8.02 11.2 7.16 10.2 11.2 10.3 9.16 10.8 8.77 5.45 10.2 9.83 8.26 5.5 5.96 9.54 9.92 9.55 6.8 10.9 10.7 10.6 10.8 11.4 7.95 9.58 7.37 11.3 11.3 10.2 10.1 10.5 11.2 9.97 8.65 6.88 7.05 9.31 9.16 4.4 8.34 10.6 7.15 9.4 10.2 8.68 12.4 6.95 7.85 0.87 5.63 10.5 12 8.39 11 7.3 5.62 9.2 7.93 9.59 8.91 9.32 9.69 11.7 8.94 8.71 2.77 11 12.4 9.26 9.72 11.2 10.4 9.32 6.87 2.12 8.92 2.11 0 5.8 11.1 5.83 10.3 8.02 7.78 6.64 6.94 9.24 6.07 4.52 8.05 8.06 13.2 6.97 7.48 10.4 9.71 8.13 0.5 9.56 9.04 10.7 3.45 2.11 4.26 2.25 9.39 9.32 7.02 2.93 8.78 9.09 8.01 8.17 8.53 9.79 11.1 8.82 7.7 10.1 10.4 10.1 11.6 9.74 9.28 9.36 7.66 5.46 9.21 11.5 9.59 6.88 7.54 6.77 8.2 7.31 6.93 8.21 4.33 5.78 9.94 10.1 8.9 7.55 0 5.06 7.74 3.21 7.65 6.36 9.44 2.47 4.07 8.46 5.88 9.11 6.5 8.36 10.8 3.28 10.1 9.24 3.21 7.7 9.9 9.57 7.55 9.88 9.03 10.5 6.61 9.57 4.55 9.8 9.33 7.46 8.98 4.69 7.72 9.37 10 9.09 4.65 7.37 5.45 8.45 9.38 9.96 8.15 2.58 8.84 10.4 9.15 8.71 8.92 5.98 7.02 8.78 4.33 7.12 9.04 8.13 8.89 7.22 3.83 6.71 9.03 8.06 8.78 7.51 8.95 9.41 7.28 11.2 8.27 11.6 8.01 6.4 10.1 10.2 10.1 11.6 10.6 10.4 0.5 8.1 11 7.31 9.71 9.53 5.7 7.79 9.35 6.79 8.12 10.2 8.35 8.53 0.87 2.33 6.43 7.55 5.33 9.48 0.5 9.6 1.41 11.1 9.03 7.4 8.82 11.4 7.45 9.35 7.15 9.53 9.54 9.92 10.1 8.36 8.41 3.7 8.38 8 9.04 10.4 7.59 8.05 2.47 0 5.82 12.4 7.97 4.93 4.6 10.9 9.48 12.2 9.46 8.54 9.47 10.2 6.46 7.74 0.87 9.67 8.07 8 7.78 8.05 10.9 8.07 11.2 7.39 6.77 3.21 6.35 7.18 3.7 9.31 5.32 1.96 7.14 4.23 4.33 9.67 8.69 6.83 7.83 9.4 9.07 7.95 4.13 11 0.87 6.94 8.18 8.95 6.42 6.71 4.07 6.82 8.22 4.76 8.82 7.7 0.5 11.9 11.2 0 4.13 7.92 2.85 5.94 1.41 5.83 9.7 5.92 1.8 7.61 8.89 7.98 11.1 7.86 7.49 8.68 9.1 10.2 4.2 9.19 10.5 5.02 8.59 9.55 5.87 8.25 8.33 8.24 5.93 9.46 7.37 7.59 10.7 10.5 10.2 4.33 8.66 8.88 5.92 10.3 8.8 10.8 10.8 5.36 5.5 4.17 10.3 9.27 8.15 7.36 6.05 9.43 9.4 9.99 0.87 8.66 6.25 4.1 6.45 6.83 6.42 1.96 9.8 1.17 10.3 6.79 4.62 10.7 9.98 0.5 8.88 7.99 4.7 9.15 0 1.17 9.98 3.08 7.72 7.51 7.21 8.07 9.52 9.23 7.89 9 8.8 7.49 7.11 6.9 3.01 3.08 11.3 7.59 9.42 7.14 8.7 2.47 7.96 5.33 11.1 9.62 0.87 7.45 1.96 10 7.06 0.5 9.63 10.7 6.26 8.55 7.88 2.93 7.62 10.8 9.02 8.08 5.48 11 9.94 6.98 12.7 8.95 8.07 9.17 10.5 9.55 7.76 6.67 0.87 0.5 5.64 7.4 9.11 8.74 8.44 0.53 6.13 3.15 0.5 7.64 11.4 11.4 3.15 6.75 2.11 4.26 8.11 0 8.17 6.12 4.98 1.62 6.47 5.14 9.48 8.32 10.6 8.65 9.54 10.2 9.63 11 8.16 9.15 8.83 10.2 10.8 10.6 6.05 14.2 6.51 9.76 7.93 8.23 9.05 4.62 8.8 11.3 6 9.56 8.89 9.63 9.59 9.37 10.1 9.87 9.74 2.93 9.97 8.65 4.89 8.96 10.6 9.46 10.1 7.61 8.43 9.31 9.6 2.58 11.6 8.91 8.75 10.7 10.6 8.66 9.93 10.4 9.64 5.41 10.8 10.5 4.78 8.2 0 8.56 8 7.68 2.24 8.29 6.23 5.46 9.29 8.48 10.8 10.9 10.6 1.17 12.3 9.35 2.77 7.35 11.6 9.19 3.91 8.23 10.9 9.82 6.15 11.2 11.1 6.56 6.84 5.88 8.14 8 7.31 4.87 5.57 7.54 7.64 5.69 11.5 7.99 7.37 5.83 4.8 11.5 3.08 4.1 11.2 8.5 3.88 7.2 6.64 10.9 7.44 10.9 12.1 10.2 1.41 9.94 4.3 9.75 7.04 6.36 9.37 9.7 13 9.78 9.16 9.5 11.2 5.27 9.52 6.6 5 11 5.66 6.17 9.6 9.12 10.6 0 8.97 3.34 2.11 3.91 8.77 8.35 8.58 10.7 8 7.62 5.05 4.85 3.4 10.7 9.25 9.92 9.45 11.8 8.9 7.31 9.84 8.07 12.7 11.3 10.2 12.8 10.4 12.6 8.45 8.66 9.42 7.07 9.71 6.49 10.7 10.6 9.21 8.63 10.1 2.93 10.8 10.3 7.2 10.4 7.3 11.2 3.43 5.97 7.07 2.7 10.7 9.9 9.41 8.04 10.8 3.28 11.7 13.1 7.22 2.58 2.36 8.28 7.66 7.18 9.95 6.48 10.8 12.1 14.2 2.93 6 3.61 4.13 2.36 12.7 10.1 11.1 4.95 4.03 11.9 12.9 9.35 9.44 4.23 7.06 0.87 3.15 11.6 6.32 10.2 8.76 6.21 9.95 9.69 3.15 7.34 8.77 7.65 10.3 6.75 10.3 8.87 10.7 5.54 11.2 9.91 9.01 10.3 8.97 8.94 11 9.07 8.81 4.2 10.1 7.98 8.07 9.2 8.34 3.4 8.49 5.89 6.46 12.2 10.3 9.73 10.9 10.2 9.92 9.68 8.83 11.4 10.1 6.06 0 6.6 11.4 12.2 10.4 5.74 10.8 7.3 9.38 9.72 3.68 9.79 11.4 10.7 11.7 11.1 8.65 9.04 8.75 11.5 3.21 7.19 6.17 0.5 11.4 8.91 4.44 10.3 7.08 8.84 6.47 3.61 7.68 9.6 8.95 8.55 7.5 8.5 8.28 6.73 6.18 10.1 3.82 9.22 5.93 10.5 11.3 8.42 10.4 10 11.9 10.6 6.16 9.97 12.2 10.6 10.6 2.92 10.9 9.63 0.83 10.6 9.51 6.64 10.7 1.41 8.11 5.71 8.69 9.83 6.52 10.5 9.59 9.14 12.2 12.7 7.7 9.65 3.51 11.2 9.25 0.87 9.48 7.96 9.92 7.71 13.1 8.06 9.81 10.2 12.4 11 10.6 10.4 7.6 12.8 10.4 7.24 10.2 8.02 8.55 9.17 0 9.47 2.24 11 11.1 7.29 4.98 8.99 4.1 10.6 9.89 11.1 10.5 2.67 10.9 8.41 10.9 3.08 10.8 10.2 7.58 9.15 11.7 3.79 8.21 6.07 11.3 8.23 9.16 3.01 7.75 10.8 2.11 1.62 1.8 10.2 3.99 9.8 3.95 5.13 6.29 9.96 1.62 4.17 4.23 10.9 1.41 1.96 5.43 3.01 10.5 11.8 10.8 10.5 8.29 3.45 3.56 6.51 9.27 7.42 1.17 9.34 9.33 8.41 8.45 5.76 6.11 7.78 11.4 9.68 8.44 2.67 8.12 10.1 9.49 8.67 9.12 0.5 5.85 2.93 5.69 6.05 2.77 8.9 8.77 7.08 8.32 5.72 8.65 8.98 4.38 6.69 2.67 5.68 1.62 1.96 10 7.23 1.62 10.4 8.03 7.34 8.99 10.3 2.67 4.76 9.41 10.6 9.37 8.84 0 4.62 8.47 11 9.8 2.11 9.1 9.32 9.67 4.8 8.54 7.24 0 4.62 11.2 2.67 7.77 11.6 7.96 2.77 6.51 8.94 9.01 6.67 10.7 10.5 0.87 0.5 9.56 10.3 10.5 7.12 8.19 9.14 5.62 9.85 8.22 10 6.75 2.36 4.13 9.41 3.28 6.61 9.35 9.07 10.8 5.13 9.95 9.36 9.79 3.01 8.28 11.6 8.57 9.61 1.8 3.45 3.75 7.67 1.17 4.3 10.5 3.51 5.92 10.3 6.88 6.26 8.02 11.4 3.99 7.87 2.85 3.15 9.61 3.83 9.23 0.5 4.82 1.17 6.05 0 1.17 1.96 1.8 7.94 10.3 8.07 6.67 8.65 9.95 8.32 9.73 9.12 2.67 10.7 10.4 9.75 7.96 7.51 5.3 0.5 8.44 3.56 9.35 11.1 9.66 10.4 5.99 11 11.9 10.4 11.1 7.78 5.04 6.11 0.87 0.5 12.3 10.2 9.46 8.89 10.6 10.5 9.5 9.25 10.8 1.17 5.16 7.8 9.62 9.13 6.8 7.43 9.87 8.03 2.67 9.68 9.52 9.4 7.45 6.22 14.9 5.35 4.23 0 2.24 5.35 5.95 9.71 11.9 8.81 10.3 6.68 5.06 6.62 10.1 0.87 9.35 5.49 0.87 5.72 8.37 5.04 7.95 9.6 7.05 8.55 8.6 10.5 7.83 8.06 7.64 9.99 10 8.26 7.64 6.67 7.78 3.4 8.53 10.6 12 9.66 9.17 9.39 4.17 8.79 7.66 10.2 10 8.67 8.4 9 3.21 10.1 8.28 6.95 5.65 7.56 10.2 7.34 8.82 7.91 10.7 1.62 0.5 7.77 9.89 10.5 9.73 3.51 8.86 7.07 4.78 1.17 7.78 2.93 9.95 3.45 8.83 6.07 9.69 5.7 5.6 4.97 1.96 6.25 13 11.8 8.64 8.06 0.5 8.06 8.93 9.2 8.66 9.25 9.17 2.85 11.5 6.34 3.87 4.87 12.3 8.73 10.4 0 10.2 9.64 9.51 10.5 9.58 11.6 9.08 9.43 7.87 9.72 9.48 10 7.99 11.1 9.27 10.4 11.1 8.42 7.56 8.57 4.38 8.27 11.1 10.1 3.83 10.2 8.83 10.2 8.95 9.25 9.78 5.55 9.31 8.43 8.34 11.2 9.04 8.87 8.5 10.6 10.7 8.75 11.1 5.18 6.2 8.1 9.7 10.9 8.87 7.65 9.8 0 9.59 11.4 8.24 11.2 6.98 8.25 10.2 10.3 9.06 9.25 9.73 11.8 11.3 11.1 4.65 7.49 8.57 8.29 10.3 5.82 10 9.15 10.6 10.5 9.89 4.36 9.58 9.48 8.17 0.87 3.28 11.9 10.7 10.1 8.76 8.08 9.03 1.62 10.3 0.5 9.07 10.9 10.5 6.72 7.76 8.43 4.13 7.65 10.2 5.04 10.1 11.7 4.98 9.77 7.79 6.13 9.86 9.84 9.14 7.03 6.24 4.28 10.4 5.55 9.67 8.46 3.51 6.66 5.13 7.13 9.84 8.29 9.85 9.44 8.96 5.97 10.7 9.05 10.6 8.52 11.1 4.67 5.36 5.16 10.7 7.6 10.3 8.84 5.39 7.29 10.5 9.52 11.6 5.13 10.5 4.98 6.71 10.7 5.59 8.14 9.15 9.39 9.86 7.78 8.3 1.96 10.4 9.31 8.94 0.87 6.78 7.23 4.74 9.68 10.5 8.67 1.62 6.18 0 7.1 7.63 5.87 4.67 11.6 6.42 9.52 6.94 1.62 8.18 8.53 9.5 4.76 10.6 9.63 11.8 3.91 0 2.93 2.36 9.91 7.31 7.65 9.55 10.6 4.93 6 6.56 11.1 6.73 2.56 8.71 9.71 11.2 0.87 4.28 7.65 6.83 3.99 3.66 0.5 10.4 8.59 4.36 4.1 9.12 9.29 7.24 7.52 2.36 11.3 9.73 8.02 4.2 11.7 9.36 10.5 9.86 5.66 0.87 12.1 9.9 8.4 7.75 5.91 8.38 6.41 5.27 6.63 8.44 5.32 3.7 7.41 8.11 10.4 13.2 8.63 8.55 3.83 5.87 12 10.5 3.99 7.72 6.45 5.14 9.1 9.31 9.6 6.22 3.91 7.42 7.69 9.42 8.86 8.14 7.85 12.2 3.08 8.37 3.01 9.82 3.61 11 10.6 6.93 8.37 0 7.26 9.73 0.87 5.86 6.01 8 7.42 7.47 9.04 7.98 7.3 8.43 9.94 8.33 6.15 2.47 9.07 7.02 13.1 10.1 8.43 7.14 10.3 8.4 9.74 10.2 8.4 9.17 0.87 7.51 11 5.18 8.37 10 9.32 6.12 8.49 7.43 8.89 10.2 8.33 7.1 7.45 10.2 10.6 8.44 9.27 2.77 7.01 2.85 7.53 10.3 9.82 5.83 10.8 6 8 8.82 10.3 6.49 7.39 10.4 8.72 1.41 8.33 9.42 8.69 9.23 10.1 9.64 9.74 7.25 9.08 6.61 9.95 9.34 0 7.76 9.13 5.13 9.41 10.8 9.98 11.2 6.77 0.87 8.82 9.79 11.9 11.5 4.91 9.98 1.8 7.49 8.89 8.02 8.91 8.86 4.13 5.11 9.04 8.81 10.3 5.9 1.41 11.1 6.53 6.23 4.44 3.75 9.2 10.7 10.7 2.66 1.96 11.2 10.4 10.5 7.84 9.52 7.83 7.68 8.21 3.99 4.2 6.94 9.63 10.1 6.42 8.64 10.7 9.47 7.88 7.43 8.71 9.39 8.2 7.55 9.05 7.87 7.22 11.1 8.37 8.87 1.8 7.1 3.21 0 9.25 9.31 12.9 10.1 0.87 5.7 2.67 10.7 11.8 8.27 7.63 6.87 0 7.07 0 8.2 9.69 13.4 8.55 6.79 0 4.26 3.01 0 11.2 5.24 10.4 1.96 9.34 9.24 7.06 5.83 8.69 9.83 8.48 1.96 9.08 4.26 2.24 9.78 9.14 8.7 10.9 9.44 9.36 8.92 10.9 1.96 5.82 8.65 4.36 5 8.2 2.67 10.7 10.2 10.7 8.86 9.03 8.42 11.8 0.87 8.56 5.02 9.98 10.6 10.5 4.13 3.45 12.5 9.58 6.35 8.33 9.44 7.84 8.19 9.21 7.26 9.73 11.1 5.65 4.06 9.43 3.83 3.56 1.96 8.68 3.4 2.24 4.47 10.6 2.58 2.47 12.8 8.23 7.47 7.66 3.01 10 8.85 10.1 11.8 8.79 4 11.6 11.4 10.2 11.6 8.26 8.73 11.8 9.23 8.88 10.2 9.57 10.2 4.97 5.59 8.85 7.88 9.49 7.83 6.29 2.77 11.3 9.81 10.3 10.3 11.5 4.89 6.58 11.6 8.16 11 8.99 9.94 10.7 4.76 3.7 9.2 5.06 8.35 8.89 10.6 12.2 8.84 9.79 6.32 6.17 5.6 5.5 9.06 10.9 10.3 9.62 11.9 5.69 10.7 2.77 7.17 2.36 8.01 7.17 2.77 8.85 9.72 9.73 9.95 10.6 7.29 12.3 10 9.24 7.63 12.7 12.9 9.32 14.2 12.4 12.3 13.2 12.1 10.9 7.87 3.34 9.61 11.3 8.55 11 6 8.6 11 8.31 8.91 11 12.6 6.73 8.26 9.16 7.66 9.21 9.28 6.3 10.3 2.89 8.75 10 9.67 7.85 7.66 1.62 0 11.3 8.11 4.74 9.92 10.5 9.01 10.9 12.5 7.85 8.71 10.8 10.4 9.19 7.19 8.11 11.4 12.5 10.4 8.23 11.8 2.93 8.31 8.94 9.69 0.5 9.52 6.56 12.1 8.08 1.41 3.45 0 12.4 11.8 9.83 12 8.94 11.9 12.3 10.6 12.2 9.72 10.5 10.1 9.48 9.7 11.1 9.51 7.56 5.38 5.26 10.9 8.08 3.15 1.68 0.87 7.4 8.57 6.13 7.49 10.8 8.19 9.58 10.2 2.47 5.64 10.1 11 8.89 11.3 8.83 4.91 7.38 1.17 2.47 10.3 9.55 4.87 11.9 9.85 1.17 9.75 7.7 5.71 5.85 2.36 9 1.8 11.6 9.06 7.79 7.17 8.25 4.13 10.1 10.6 6.4 8.32 10.3 6.96 5.04 5.86 9.7 4.47 11.1 12.3 10.7 8.23 5.78 12.4 5.66 7.33 6.24 2.36 3.91 9.59 0.5 8.68 11.3 4.47 8.33 9.06 6.66 6.48 9.71 7.87 11 9.35 9.82 3.61 2.47 11.1 14.2 11.1 10.5 9.78 10.4 9.33 9.92 11 10.3 11.4 8.33 9.92 9.16 9.97 10.2 11.6 9.97 10.5 8.47 9.79 10 0 9.96 3.4 11.6 6.17 10.8 9.65 3.21 3.75 10.2 7.26 2.11 4.52 8.45 0.87 11.4 8.44 6.86 9.52 10.5 9.45 6.22 4.49 3.03 9.2 10.7 9.5 9.52 8.19 8.61 7.01 9.74 13.8 8.86 10.6 11.9 8.81 10.3 2.36 3.75 6.22 12.5 1.8 2.67 7.51 8.48 9.34 3.99 7.75 9.91 6.75 6.74 4.91 9.66 11.2 6.14 5.21 1.8 3.79 0.87 5.06 8.21 6.81 8.29 8.95 8.51 5.72 5.8 1.41 10.3 8.67 6.6 3.45 4.84 7.07 1.98 2.36 8.07 1.8 9.34 10.4 8.07 10.7 9.17 11.1 11.5 5.49 0.87 10.6 7.6 11.8 10.1 8.86 8.68 8.71 3.87 7.41 7.84 2.93 5.79 8.62 9.45 11.7 5.24 6 6.6 8.21 5.36 9.32 5.13 3.28 9.99 9.72 10.1 0.5 10.2 5.84 7.06 7.14 6.19 6.14 8.75 11.2 9.75 9.07 12.2 7.71 8.11 10.8 5.11 4.26 7.3 10.4 6.31 3.28 0 0 9.21 11.4 9.13 1.8 7.19 2.24 9.69 1.62 5.84 10.4 9.92 6.64 8.37 10.3 8.74 2.36 4.76 7.94 8.17 5.13 0 7.5 8.32 4.13 5.29 9.27 9.87 8.48 9.76 8.96 5 11 9.34 9.16 10.2 9.14 9.69 7.03 9.41 10.8 8.64 9.52 13.9 8.41 6.25 8.56 5.45 11.1 0 9.42 11 8.52 9.06 6.33 9.67 9 4.98 9.68 6.78 7.99 7.27 9.03 9.67 10.9 7.91 9.3 7.67 10.1 5.11 8.93 0 4.25 7.77 3.91 8.46 10.2 7.76 5.88 8.04 8.02 8.23 9.25 9.39 4.17 4.3 8.8 6.29 9.63 4.3 9.11 5.53 10.8 10.7 1.21 7.54 2.24 1.62 4.23 11.1 5.41 9.93 12.4 6.32 9.45 10.1 6.75 6.86 9.25 11.5 6.87 13.3 10.7 5.41 9.56 7.18 10.5 1.8 10.4 11.7 11.7 10.1 9.79 5.45 7.66 10.1 9.15 5.35 10.7 4.72 8.31 4.67 9.94 11.3 11.7 10.4 9.25 8.9 11.7 5.08 10.5 0.5 7.97 9.54 9.38 7.99 5.85 2.11 10.6 11.3 10.6 10.9 5.8 6.17 9.25 7.9 10.8 8.2 8.72 7.65 4.93 0 3.83 4.6 4.41 6.71 7.47 7.3 9.76 12.1 7.72 9.54 10.5 1.17 9.85 9.88 8 10.5 10.3 9.39 2.67 10.1 11.2 12.1 10.2 6.8 6.27 4.47 10.7 6.91 9.97 10 0 6.64 9.75 9.05 10.1 5.72 10.8 10.1 7.74 8.08 8.51 6.38 9.79 6.76 10.6 8.2 9.35 9.41 14.4 6.74 9.64 6.62 3.87 9.18 13.7 7.19 9.42 5.52 9.71 6.93 10.9 6.22 5.76 5.49 10.9 9.15 8.88 9.85 11.1 11.3 3.01 9.57 7.88 9.3 8.39 2.24 10.3 5.54 7.38 0.87 10.3 6.11 9.89 6.24 0 7.68 6.77 11.5 14.7 7.72 9.36 11 10 6.84 5.02 8.36 4.57 5.02 0.5 7.57 10.8 9.84 5.69 3.75 5.94 7.43 11 8.72 6.74 10.6 8.38 5.85 8.32 3.28 11.3 8.97 9.54 8.54 11.4 6.17 1.96 8.39 7.39 9.46 8.79 8.49 10.9 10.4 7.16 7.34 10.4 2.67 1.62 7.79 8.14 0 10.3 3.51 8.28 7.89 7.97 0.5 8.33 7.78 8.83 2.77 7.88 3.83 6.98 9.55 9.32 9.77 7.93 7.7 9.25 9.67 9.35 4.03 10.5 7.33 9.32 8.31 9.8 7.66 9.24 6.2 11.9 8.41 10.1 5.43 10.2 10.8 11.9 7.86 12.7 8 8.54 13.1 10.2 7.81 0 6.42 7.02 4.38 8.53 5.58 0.5 5.54 4.2 7.16 0.5 1.17 0 8.16 11 2.85 10.6 11.6 9.29 10.9 10.3 4.89 7.99 8.89 7.93 12.8 7.99 9.93 0.5 6.2 10.8 9.22 8.23 9.63 7.96 1.41 5.81 7.5 5.87 8.37 12.2 7.92 0 10.7 8.26 6.53 7.5 8.96 3.61 10.6 9.66 9.29 6.33 10.7 9.75 3.79 8.46 8.82 5.97 9.38 10.2 12.6 7.57 9.51 9.38 6.49 9.77 10.6 10.3 11 9.86 7.3 1.17 9.67 10.8 9.87 8.78 9.31 9.87 9.47 10.3 10.2 9.01 6.58 10.6 13.3 8.64 7.46 8.87 9.81 3.01 10.5 6.05 11 10.9 9.84 9.23 8.95 8.75 8.6 8.61 9.55 5.14 10.8 11 7.32 3.15 10.3 7.47 7.84 4.44 5.72 1.77 1.96 7.77 8.16 8.65 8.16 9.37 5.35 5.29 11.4 5.54 5.92 9.62 9.58 10.8 6.05 10.5 4.26 3.21 8.22 10.9 8.92 9.36 9.59 11.3 8.72 9.85 9.55 6.53 10.2 9.13 10.3 11.8 8.37 4.78 9.87 7.74 9.63 8.29 6.06 11.4 9.84 10.6 9.97 7.27 8.73 10.4 9.2 1.41 12.4 10.6 10.5 6.33 2.24 10.7 15 0.87 12 7.4 10.7 5.39 10.2 1.17 7.41 0 6.62 8.12 4.89 8.69 10.3 12.1 8.34 0 13.2 9.72 9.2 8.86 3.28 8.34 9.27 1.62 5.01 2.15 8.02 8.39 8.84 11.9 5.83 10.2 8.19 9.04 7.61 10.2 11.7 7.87 6.18 11 5.54 9.93 1.41 3.99 0 6.78 0 11.2 7.32 10.4 2.47 7.54 8.3 10.9 0.5 5.43 6.41 9.78 7.78 4.13 11 11.1 6.75 10.5 8.93 3.4 0.87 11.2 3.28 7.21 3.61 6.53 10.8 8.82 8.38 9.79 10.4 2.85 10.1 7.33 4.85 10.1 9.48 10.8 9.12 9.59 6.14 9.16 8.43 6.21 7.14 9.02 2.24 11.7 8.48 3.08 12.7 8.51 8.3 7.06 7.73 9.51 10.5 6.5 10.1 8.15 9.04 4.89 4.23 1.8 4.1 5.77 1.17 8.25 3.79 8.97 9.26 8.87 7.3 9.52 13.3 11.4 7.55 10.2 4.44 6.71 8.51 5.94 9.83 9.73 6.22 6.36 6.53 0 8.8 9.43 7.42 10.3 11.4 6.38 10.6 8.5 10.9 6.54 9.87 9.28 6.35 3.83 8.59 7.31 5.06 5.04 4.69 8.08 8.7 7.6 8.16 10.2 11.4 11.7 9.1 5.35 7.91 5.65 0.87 10.4 12.2 10.8 9.13 8.65 3.08 6.51 8.43 7.4 10.6 10.2 0.5 0 11.6 9.93 5.72 8.51 6.15 10.9 8.33 9.7 10.8 10.4 11.1 11 11.3 9.9 9.31 6.11 10.4 7.71 9.72 7.11 7.72 9.55 9.67 11.4 2.58 8.15 10 0.5 8.47 9.31 11.5 10.6 11.2 10.9 10.4 9.53 9.16 11.8 10.9 10.2 10.2 5.82 8.91 9.54 9.59 11 7.67 9.47 5.52 9.94 9.86 5.54 9.76 11.4 10.6 9.88 9.84 10.1 7.3 11.9 8.54 6.07 9.12 12.7 10.5 2.47 6.23 12 10.3 3.51 11.8 10.2 11.7 11 9.14 8.53 8.05 10.9 10.8 10.7 12.6 10.1 7.12 12.4 9.99 7.77 9.43 5.68 8.24 2.93 8.69 3.21 8.12 11.5 7.37 3.75 13.5 9.52 7.48 4.17 9.67 9.4 11.7 10.5 7.95 7.24 10.2 9.21 8.85 7.14 8.78 9.43 10.3 9.09 8.77 9.65 7.89 9.46 8.77 8.72 10.4 12.8 12.4 9.14 7.81 10.7 8.37 11.1 5.42 11.6 13.2 9.37 0 9.8 9.51 6.29 9.54 9.38 8.8 9.75 12 11.7 7.88 9.92 10.2 10.6 10.4 11 4.89 10.4 11.1 8.48 10.2 9.56 7.75 10.5 8.99 9.72 8.54 10.6 7.62 7.59 8.06 10.1 9.73 9.84 12.1 9.96 6.38 8.58 0.5 10.2 7.25 7.83 8.96 8.74 7.1 9.5 4.55 8.02 7.32 15.8 0 3.45 8.78 8.79 9.48 9.67 7.65 8.04 9.38 8.61 5.41 11.7 8.51 10.4 10.6 5.02 8.66 10.6 7.18 12.2 9.58 8.62 7.43 10.2 5.57 9.68 6.21 13.5 5.13 3.45 7.04 4.95 7.53 9.84 9.91 8.72 4.6 11.9 5.58 7.57 7.93 11.2 6.9 10.3 12.5 10 9.07 10.4 11 11.8 11 11.3 9.15 9.74 6.51 11.4 8.48 12.3 4.1 11.6 10.5 8.07 8.95 8.98 9.42 11.3 11.9 10.3 10.9 9.37 7.46 10.4 11.2 6.17 10.2 13.2 13.3 9.03 10.4 9.81 0 12.2 8.56 9.81 9.74 9.38 10 8.6 11.6 9.47 7.57 9.71 8.95 6.04 9.26 8.65 9.31 5.65 7.93 1.41 10.8 10.6 8.37 2.85 8.68 3.7 7.59 9.01 8.87 9.95 4.07 8.2 9.43 7.12 8.86 9.28 10.2 7.16 8.38 8.72 8.19 6.83 9.41 8.95 2.24 10.4 9.26 8.66 6.9 9.82 11.7 5.66 5.72 7.69 9.74 10.4 10.6 10.3 9.42 9.06 9.69 10.1 11.3 11.6 10.8 10.2 9.71 8.16 9.31 10.3 10.2 8.55 10.4 6.84 11.6 8.46 10.2 3.56 9.95 11.6 8.93 7.65 10.2 12 7.7 10.1 4.6 8.81 10.7 10.9 11.9 9.78 6.64 9.09 11.4 10.1 10.2 8.23 7.53 3.79 9.89 1.62 10.5 10.6 12 10.7 2.85 12 11.2 8.87 11.5 8.85 9.88 11.7 8 10.4 8.38 9.66 10.1 2.36 9.13 5.93 8.64 8.18 11.6 12.2 3.34 7.07 6.12 9.89 8.04 8.24 12.3 8.46 7.4 10 5.46 8.6 4.23 6.79 10.4 9.69 9.13 12.9 7.74 3.45 0 11.8 9.6 10.2 9.99 4.85 9.6 9.62 9.05 10.8 10.1 12.1 9.67 9.47 11.2 8.13 12.7 8.43 11.1 11.9 8.36 10.8 3.56 10.3 7.31 11.8
-TCGA-46-6026-01 6.67 11.7 6.49 7.87 7.34 7.73 0.65 7.3 6.55 3.17 5.69 7.81 5.91 1.84 3.76 8.67 11.3 9.55 6.99 10.4 9.97 12.2 8.9 5.86 10.2 8.55 5.2 8.8 5.81 6.71 6.84 6.75 3.09 1.59 4.04 1.11 2.05 7.33 2.24 5.39 5.15 5.29 6.35 0.36 4.52 3.12 0.36 6.55 11.2 5.85 3.7 5.85 7.13 8.3 4.54 2.87 7.76 4.35 6.58 7.24 8.92 4.75 9.84 6.34 3.5 2.62 7.77 4.16 11 4.43 4.35 8.19 1.72 0.89 6.64 2.81 4.3 5.42 3.34 0.36 5.07 3.7 4.7 9.15 4.33 3.79 7.26 4.41 0.65 3.64 8.24 4.18 7.74 7.99 5.51 4.09 2.48 2.62 4.42 2.92 2.32 2.97 0.65 5.41 1.28 4.58 8.28 10.2 9.48 6.74 5.71 3.22 8.24 2.4 4.2 1.28 4.69 5.66 5 3.38 8.17 7.86 1.3 4.69 1.1 8.47 2.48 2.48 0.65 19.1 1.78 2.24 4.95 7.37 2.62 2.55 3.76 1.59 4.49 9.5 10.6 12 6.78 4.14 5.67 11.6 0 11.8 3.8 4.2 5.26 2.92 9.46 10.4 11.8 2.68 3.38 2.42 7.45 6.58 9.65 8.35 4.37 3.57 10.3 6.66 8.62 3.08 10.3 0.89 11.3 8.47 4.2 5.8 5.11 4.35 5.03 4.9 8.79 6.85 4.81 8.66 4.18 6.09 4.91 4.98 2.87 0.65 9.73 4.61 9.35 8.4 2.97 3.12 5.8 5.08 4.79 10.1 9.25 7.81 4.56 10.7 9.97 11 6.86 10.7 7.62 11 10.1 11.1 9.12 9.59 11.6 12 11.3 12.6 9.03 11.3 5.76 10.8 8.44 9.38 11.2 10.3 8.42 7.06 2.4 10.9 8.61 12.9 10.3 3.12 9.2 9.62 9.26 6.97 10.9 6.64 9.56 8.39 7.95 10.3 11.6 11.8 11.9 10.8 11.9 12.3 7.73 11.7 8.57 2.48 5.13 10.7 9.74 10.4 9.86 13.1 2.55 12.2 6.11 9.79 9.44 10.7 9.58 10.5 9.98 9.9 11.2 9.95 10.3 6.71 9.37 10.2 12 7.59 2.97 13.3 11.7 10.2 12.8 10.1 10.9 8.21 9.88 10.3 10.3 7.73 11.1 11.7 3.79 2.97 9.74 7.98 9.85 10.5 5.55 13.9 6.72 9.8 6.86 11.7 10.4 10.1 10.9 11.9 4.14 8.93 9.25 8.64 12.8 11.1 5.92 8.06 3.7 11.6 9.84 7.25 8.7 9.6 11.4 11.5 7.92 7.39 11.9 11.4 12.8 9.85 10.4 8.76 11.4 9.73 11.8 6.7 10.5 11.4 7.96 7.72 7.5 8.31 10.5 10.3 10.5 10.2 8.04 14.7 10.2 10.5 12.8 12.7 10.9 4.26 10.1 0.65 3.82 8.61 9.81 9.25 0.36 6.4 7.67 10.3 10.1 9.79 9.11 8.66 5.84 11.9 8.75 4.23 7.01 11.9 11.2 11.8 10.1 8.13 9.05 10.9 4.79 7.73 9.18 10.2 6.41 9.24 9.98 11.3 5.61 7.36 10 9.38 10 11 12.8 7.93 4.83 11.4 9.43 7.12 8.12 5.44 7.07 9.93 10.7 10.9 10.1 10.8 9.99 10.6 11.3 10.6 8.91 7.65 11 7.99 8.68 11.8 10.4 9.66 8.18 5.19 9.78 1.28 7.86 12.3 8.37 9.95 10.9 9.67 6.97 10.3 11.5 12.1 4.74 8.57 6.86 7 8.91 8.17 7.38 9.36 8.51 11.6 11.6 5.69 10.5 8.52 9.04 5.83 1.72 9.69 3.85 8.9 5.14 11.3 8.18 9.13 7.32 10.9 8.73 4.39 7.03 10.8 11.7 5.71 8.07 10.2 5.89 5.39 4.89 8.02 7.65 2.32 10.6 7.26 10.7 9.88 6.27 10.1 10.6 5.16 15 8.63 2.5 8.83 10.1 8 12.8 6.17 7.12 7.92 7.1 8.94 9.48 5.54 13.1 7.81 7.43 7.46 5.94 13.7 10.5 14.9 7.8 9.06 8.64 10.6 6.48 9.08 6.25 10.8 0.65 9.48 8.03 11.5 8.29 9.97 11.8 9.15 7.01 10.8 8.82 11.6 10.1 11.2 9.98 10.4 8.8 10.1 9.92 7.64 10.1 10.5 10.2 9.35 10 11.2 7.57 7.16 9.86 10.2 9.65 11 6.93 10.5 6.96 4.56 9.54 6.76 11 9.42 9.68 10.4 13.2 11.4 10.6 10.3 10.1 4.27 10.1 9.83 9.38 9.75 9.54 10.4 11.1 6.12 9.86 8.07 10.4 11.2 9.61 11 10.9 9.65 9.17 12.5 11 11.2 8.9 4.01 12.1 10.1 10.8 9.38 12 12.7 12.3 10.4 8.32 11.1 10.7 9.48 1.1 10.2 8.95 6.85 7.92 9.17 11 9.46 8.99 9.84 11.4 6.86 2.24 8.96 10.8 7.82 4.45 12.9 9.84 12.3 9.95 13 10.6 12.7 12.4 10.6 7.47 10.8 9.01 9.14 11.8 9.3 7.15 3.76 11.2 10.3 12 11.6 10.1 9.78 9.83 10.5 9.36 9.75 10.5 10.8 11.2 8.92 9.53 8.72 10.4 8.92 6.41 7.96 6.17 4.58 8.24 10.1 10.7 5.45 10.1 10.9 9.88 3.08 9.76 10.5 12.9 12.5 12.7 11.3 5.06 11.7 7.63 7.54 9.72 8.92 0.36 7.25 8.3 10.3 11.4 8.85 9.61 13.2 6.33 7.55 11 9.1 7.91 7.58 4.91 11.5 11.7 10.8 8.85 10.1 9.65 11.1 8.31 10.8 10.9 10.9 11.2 9.91 11.9 9.27 9.14 8.45 5.39 9.32 12.5 9.61 12.3 12.3 9.3 11.4 10.1 11.2 4.99 10.2 8.91 8.76 4.61 6.23 9.24 8.65 9.86 12.4 9.42 5.07 10.4 11.6 14.9 8.97 9.92 12.5 11.3 7.42 10 3.08 4.91 10.2 2.92 8.47 5.96 4.35 9.83 8.89 10.8 4.41 4.71 6.44 9.05 8.14 10.6 7.99 6.36 10.3 8.08 2.97 5.85 10.7 11.7 3.53 7.5 8.07 2.62 9.69 12 9.17 7.51 9.24 14.1 9.72 8.99 12.1 8.74 11.9 13.1 6.26 11.7 9.35 7.72 6.89 11.6 5.18 5.78 3.46 2.75 9.73 6.96 10.1 0 6.97 8.59 5.03 6.07 11.2 9.83 6.25 9.63 13.5 11.1 7.57 11.4 11.8 12.1 10.3 10.7 11.2 8.59 10.4 10.5 7.47 9.58 11.5 8.88 6.85 11.1 7.89 7.39 8.49 11.7 6.63 7.84 7.76 6.47 7.82 11.3 7.92 7 1.95 11.9 8.63 1.1 7.74 8.32 9.07 10.9 10 8.81 5.15 9.53 1.44 5.36 7.72 9.54 6.86 6.6 6.93 8.69 1.28 6.87 5.81 11.3 9.63 8.42 12.2 10.4 9.23 8.53 11.3 12.1 4.91 5.01 4.18 6.21 9.39 7.86 10.3 9.11 11.1 4.83 4.16 4.52 5.57 6.81 0.36 6.51 10.2 9.99 6.9 1.72 11.8 3.42 9.24 9.12 5.26 2.92 9.58 9.7 11.6 10.1 4.18 8.25 10.4 8.38 10.6 8.56 11.1 10.3 11 10.2 0 6.06 9.02 11.1 10.5 11.9 0.36 12.4 9.37 12.8 9.99 12.6 7.94 8.07 10.6 11.5 10.6 3.03 12.2 1.72 11.2 4.72 9.53 10.6 7.5 9.56 8.62 12.3 11.8 11.3 10.3 10.6 12.2 9.42 12.2 10 10.3 9.43 11.1 14.2 11.2 11.9 11.7 12.4 8.31 11.7 7.03 6.76 9.77 10.7 12.5 12.6 12.2 14.2 9.71 10.4 8.62 10.1 10.8 9.38 9.13 12.2 6.7 12.2 10.2 11.7 11.5 3.6 6.63 12.6 5.59 12.2 6.74 9.48 8.77 6.94 10.6 7.96 7.41 1.11 4.31 8.37 9.98 8.22 11.7 6.72 10.8 9.29 8.55 8.35 8.27 8.64 10.2 7.01 1.28 5.37 2.75 2.62 8.78 8.53 7.41 13.1 7.54 10.4 10.4 8.82 7.1 8.79 10.7 4.43 7.74 12.2 8.91 11 11.4 10.5 10.2 10.3 9.34 11.9 9.63 7.76 1.95 9.14 10.8 7.58 10.4 8.22 6.23 13.3 9.98 10.5 10.9 11.6 4.9 9.55 10.8 13.6 7.56 6.56 11.2 10.2 7.87 6.59 8.6 4.09 4.41 8.21 8.73 7.26 13.9 7.86 8.82 8.98 9.48 6.25 10.4 8.91 9.38 10.8 8.08 9.45 6.87 7.08 9.95 9.65 6.86 10.1 3.08 8.47 9.95 9.48 2.68 11.1 1.95 9.11 8.39 10.2 2.32 10.5 10.4 5.48 13.2 8.38 10.8 5.61 8.79 7.11 8.5 8.36 11.5 9.55 10.2 5.18 4.31 5.95 8.38 8.5 9.22 9.23 9.5 10.9 9.3 5.36 9.54 10.2 9.66 13.2 9.81 8.58 4.89 6.28 11.6 9.98 4.25 12.2 9.85 7.09 8.69 8.07 12.5 5.5 9.58 8.66 7.24 9.22 12.3 11.4 1.1 7.84 11.1 7.71 9.14 9.33 9.54 11.3 9.19 8.33 9.96 9.79 7.51 8.64 10.2 7.31 11.8 10.2 7.88 7.29 8.84 4.34 9.05 8.93 11.5 5.47 12.8 10.4 4.84 7.82 6.21 9.51 11.3 7.67 9.54 9.78 9.08 8.41 7.4 12.1 9.06 5.7 4.95 9.69 8.28 6.05 7.17 10.4 6.94 8.51 7.7 8.36 7.55 9.33 0.65 3.64 10.2 10.9 7.53 8.82 9.77 8.05 5.96 12 5.03 11.6 7.45 6.58 7.53 8.4 8.31 10.8 9.37 9.72 8.63 9.37 4.41 7.76 12.5 5.53 9.18 7.12 5.02 10.2 7.87 10.4 9.61 9.07 4.37 9.11 3.3 9.84 9.46 7.97 5.73 8.58 9.59 9.23 9.71 11.8 9.85 9.47 7.22 8.96 9.11 10 9.96 8 7.78 9.36 7.57 10.4 10.6 6.98 11.1 11.7 5.32 12.7 9.35 6.1 11.4 6.35 2.15 8.94 9.51 3.08 8.57 9.36 10.5 12.1 8.44 7.68 10.6 12.7 10.3 6.43 9.01 6.31 8.51 12.5 10.7 5.41 12.6 9.51 11.6 9.02 12 11.5 12.6 12.1 7.59 8.99 8 1.1 10.6 10.3 9.03 9.76 8.57 9.94 7.1 11.3 7.2 9.65 8.26 5.72 5.7 6.24 5.51 7.72 5.37 3.01 8.69 7.13 10.1 7.46 9.31 8.82 9.82 0.36 11 3.72 6.94 7.2 1.44 4.5 10.7 5.94 4.77 2.05 8.46 7.05 4.54 4.41 9.61 7.05 4.35 0.65 0.36 5.33 4.18 7.96 8.14 9.27 8.24 4.89 1.28 8.73 7.17 4.63 11.4 7.9 10.4 9.33 8.38 5.79 11.2 4.06 5.06 9.22 4.57 7.82 7.22 5.95 9.28 4.75 7.02 6.62 7.85 6.51 12 2.05 7.91 9.44 6.9 4.68 8.98 8.66 7.16 8.26 10.1 10.1 7.08 9.46 7.93 2.48 8.65 2.81 8.82 3.6 9.44 12 8.44 8.32 6.87 9.87 9.68 9.46 5.44 7.99 8.48 7.85 7.56 3.67 10.2 11.8 9.25 4.97 3.91 4.27 7.77 11.9 7.65 10.7 7.8 2.05 5.45 8.55 9.09 9.68 13.3 5.23 1.44 2.97 9.77 7.87 6.44 7.15 7.62 8.73 8.79 10.7 7.73 8.53 8.78 6.85 7.36 4.58 5.62 4.04 6.1 7.74 9.18 9.29 5.92 8.37 6.47 5.55 6.26 8.78 10.1 1.28 8.91 10.4 7.17 7.8 7.43 0.89 1.44 8.44 7.95 11.2 7.54 4.72 10.2 6.6 10.9 9.01 12 7.84 10.4 11 7.63 7.52 6.92 7.6 8.95 8.73 9.07 8.3 8.86 4.01 10.2 7.48 5.72 1.28 5.15 1.84 8.87 4.89 3.08 2.97 3.7 5.78 10.9 1.1 1.28 9.53 10.3 5.13 9.05 8.25 2.55 7.13 9.99 7.47 10.6 9.14 2.15 7.73 6.76 6.47 5.24 9.4 9.19 10.8 7.54 8.64 10.2 7.98 3.3 8.89 5.15 2.68 2.24 10.5 9.14 8.53 11.7 6.32 4.81 5.62 13.8 8.87 10.6 1.1 1.84 3.99 9.54 9.33 6.61 4.72 11.4 5.62 9.37 10 6.23 8.09 9.92 8.11 8.2 0.65 5.24 3.03 8.05 5.55 9.56 8.78 7.56 8.37 8.92 11 7.07 2.75 5.57 10.9 6.89 10.5 7.43 9.46 8.59 8 8.43 5.37 9.46 8.69 11.2 13.4 5.83 1.28 8.15 8.62 9.15 3.85 10.9 11.3 8.63 10.9 9.61 3.82 7.68 10.6 11.4 12.2 8.84 10.2 6.11 2.81 6.65 8.14 8.99 7.95 5.45 5.57 8.32 9.57 11 4.59 7.36 10.9 4.27 2.62 8.84 12.1 10.3 11.4 8.21 6.44 8.07 13.4 1.28 8.82 7.73 4.51 4.56 7.87 10.4 8.75 9.55 10.5 2.24 1.84 0.65 8.47 2.32 5.66 6.72 5.77 5.79 8.6 7.84 3.96 4.89 9.14 7.16 3.38 10.9 8.56 8.41 2.68 7.05 7.72 4.77 11.2 5.78 6.98 8.66 2.24 10.2 6.72 8.86 1.84 8.08 3.91 7.53 9.31 2.92 8.17 5.7 4.59 5.23 7.64 8.62 6.07 1.84 9.09 4.87 8.41 8.7 9.58 7.28 7.02 2.74 8.84 1.44 5.79 7.24 7.28 3.6 7.91 9.04 8.64 4.89 0.36 9.37 9.71 3.46 4.9 9.1 8.68 8.43 10.9 9.65 3.48 7.69 9.35 8.67 11.7 10.4 3.34 6.62 8.9 8.91 6.46 5.07 1.84 7.51 11 8.88 6.61 8.44 2.32 6.85 5.03 10.2 8.79 7.41 11 7.99 6.37 8.71 5.87 9.97 9.81 7.95 8.26 10.8 5.81 5.78 13.5 8.4 7.91 3.68 8.45 5.47 8.92 9.17 0.65 8.1 6.16 8.05 12 8.8 10.4 9.89 4.33 8.01 2.4 5.55 6.02 6.42 6.02 6.5 6.92 6.23 9.58 6.73 5.77 8.57 4.11 3.08 1.28 4.16 7.78 8.66 9.81 9.68 8.43 1.1 9.67 9.96 5.47 11.5 10.5 5.03 6.98 7.26 10.6 6.49 7.49 5.96 10.1 13.1 9.01 7.37 10.1 6.64 5.9 1.95 4.79 9.29 11.7 8.39 8.4 7.5 2.62 5.51 6.31 0.65 4.49 1.84 10.8 1.95 7.21 0.36 4.04 8.18 5.77 10.7 7.81 7.89 3.85 10.9 8.67 4.97 7.62 7.32 4.57 6.95 10.2 5.43 7.92 0.36 9.02 13.7 7.13 8.22 7.84 12.9 10.2 7.43 1.28 1.28 7.29 4.94 11.9 8.56 8.43 6.82 12.8 5.24 7.04 12.1 2.15 7.09 2.48 9.79 11 11.8 9.35 4.04 10.9 8.02 5.64 7.93 12.9 7.42 8.72 5.21 3.42 4.69 4.31 7.25 3.22 10.1 11.3 5.77 11.1 3.08 6.18 11.8 10.5 12.1 9.31 8.28 10.4 6.56 7.7 11.2 9.27 11.7 9.27 2.75 11.7 8.14 14.1 7.73 8.55 7.45 4.75 8.11 10.2 7.58 6.12 8.07 10.2 9.41 2.05 10.4 3.64 4.45 7.31 7.54 7.2 9.58 2.55 7.2 6.58 12.5 7.02 4.14 7.36 8.94 7.43 8.1 5.97 6.01 9.7 6.03 5.15 9.52 9.44 4.49 9 7.55 9.85 7.77 7.87 6.08 9.08 10.6 4.14 5.94 13.8 4.93 8.18 7.34 10.4 6.94 7.44 3.22 2.32 4.99 6.36 8.7 8.36 6.75 9.82 5.24 10.4 12.1 9.63 3.42 7.59 12.1 5.79 8.8 9.26 12.6 10.5 10.3 8.21 3.99 9.25 7.73 1.1 8.8 4.39 4.37 7.87 9.03 7.85 7.63 5.78 8.05 0.36 0.82 8.12 10.9 7.62 6.49 0.89 6.78 2.51 7.7 8.84 8.02 11.7 5.36 7.8 7.27 7.22 11 4.09 8.26 3.82 11.2 7.87 0.89 7.81 6.79 2.4 8.06 5.34 7.63 10.5 10.3 12.3 9.35 2.62 4.91 8.77 4.23 11.8 5.02 9.12 9.95 11.5 8.34 8.12 4.63 6.63 7.4 6.09 9.15 1.72 8.26 11.6 9.05 5.54 6.47 9.5 9.09 8.71 10.5 6.75 10.5 8.92 7.12 11 10.9 8.85 9.72 5.67 7.77 8.21 9.96 5.8 9.61 6.77 10.2 2.55 10.5 9.7 1.59 6.13 6.81 6.05 8.28 1.59 11.5 6.13 5.66 13.4 2.24 5.21 11.5 6.51 10.3 8.66 7.67 4.65 7.06 4.18 9.58 6.08 9.77 8.55 11.4 9.46 8.22 8.16 7.63 8.57 5.23 5.38 4.43 8.55 0.65 3.67 10.7 6.23 7.49 10.3 5.04 9.72 4.41 6.64 5.85 10.3 6.82 0 7.71 7.2 6.64 4.8 5.04 10.3 8.4 7.09 5.58 11.8 9.31 3.38 12.3 9.46 8.17 5.66 8.68 8.54 0.89 6.21 2.4 8.64 7.39 8.81 8.24 4.69 11.6 1.84 9.54 10.4 6.49 12.1 11.3 4.27 11.3 4.04 9.31 9.58 9.09 5.24 9.82 10.7 2.81 4.79 4.45 11.8 7.42 8.43 9.7 9.79 2.87 1.44 8.06 5.82 3.57 1.72 8.64 12.5 3.5 3.96 9.17 8.82 7.05 4.43 5.72 9.67 4.36 6.33 10.7 7.88 7.91 8.83 1.28 10.4 10.2 5.42 9.31 9.71 4.54 6.02 8.14 5.57 4.9 7.53 8.66 2.15 9.83 2.55 11.2 2.75 7.1 7.98 2.55 2.97 12.3 9.3 6.83 2.05 4.14 3.73 2.24 5.03 5.71 6.73 7.92 3.57 9.37 10 7.68 12.9 8.97 10.8 11 7.71 6.75 10.4 11.7 6.87 6.86 9.4 8.14 3.34 6.41 9.54 9.13 4.76 5.85 5.4 5.68 8.41 9.55 7.02 7.56 0.65 3.26 9.84 6.84 10.5 10.2 8.22 8.08 5.48 7.04 6.56 7.24 8.39 3.57 6.12 11.1 7.22 7.76 9.17 8.25 3.08 8.06 7.89 5.54 11.1 10.2 11.3 5.06 7.86 4.79 8.49 5.48 7.05 8.04 12.6 8.67 9.29 12.4 0.89 6.42 6.67 12.1 3.76 6.9 12.1 7.21 4.75 7.66 6.53 11.4 8.4 5.85 6.94 7.95 9.07 11.4 8.56 4.97 5.83 6 4.8 6.44 8.92 5.77 9.53 2.05 4.09 12.6 9.39 5.87 9.32 6.56 5.04 8.34 11.7 3.96 3.7 9.06 2.05 4.27 3.34 7.54 4.61 10.1 8.29 6.69 8.22 2.15 11.6 9.31 7.55 6.59 6.93 6.23 10.1 5.68 9.98 9.54 7.93 2.55 4.06 0 8.61 6.93 6.88 0.89 8.6 4.41 6.76 4.18 1.84 7.19 1.59 9.67 2.48 10.1 10 7.49 9.56 6.02 10.1 9.07 7.48 12.2 3.82 10.6 6.82 8.84 10.7 8.7 9.99 2.15 2.32 5.04 2.32 4.71 8.49 12.4 6.9 12.3 4.58 4.41 8.4 3.3 4.68 4.31 2.32 6.17 8.43 4.86 10 8.08 8.79 2.62 9 9.19 5.77 7.63 6.51 6.6 5.42 1.72 10.2 6.16 8.9 2.81 6.59 4.18 1.84 4.83 10.4 10.6 7.78 7.45 7.12 5.98 7.58 6.75 11.3 9.58 0.36 8.37 7.36 8.63 10.3 5.5 9.27 6.09 3.5 2.15 5.62 7.22 9.25 3.03 7.8 4.6 9.16 5.96 8.84 9.91 7.58 5.2 8.15 4.59 0.89 10.4 5.14 3.26 9.05 9.59 10.6 7.59 0.65 9.44 5.86 7.39 7.72 6.53 10.1 9.39 5.65 9.96 4.68 4.72 7.23 8.59 1.72 5.13 3.46 8.46 8.63 8.47 10.7 5.46 5.68 8.87 4.97 7.64 13 11.8 2.75 8.27 5.01 5.41 13.7 10.1 11.7 0 4.58 12.4 0 5.66 10.3 1.72 3.6 4.43 2.32 3.84 3.3 8.99 6.33 5.8 7.82 10.2 7.6 7.29 9.93 4.21 5.24 5.52 8.45 6.49 5.04 7.24 4.45 9.65 7.73 8.54 4.45 5 2.24 9.56 7.8 10.1 5.25 9.01 7.67 3.6 5.4 10.3 4.79 13.9 10.7 12.9 7.61 8.28 6.8 4.51 10.7 8.18 9.11 2.48 4.86 4.9 10 7.8 8.18 10.9 7.68 6.52 8.51 4.43 1.44 6.36 8.62 2.62 8.61 11 4.54 10.4 1.95 10.4 4.18 9.27 7.61 10.8 8.62 0.36 7.46 7 9.5 8.42 6.76 5.85 6.52 4.93 7.39 2.15 8.77 2.92 6.83 9.55 8.41 8.45 7.18 9.78 11.1 10.1 9.52 1.84 3.64 4.95 7.37 6.37 10.5 10.7 6.36 6.6 11.2 5.11 9.56 8.14 10.9 7.51 5.09 2.97 8.16 7.26 7.83 9.51 9.83 5.69 9.63 2.32 8.11 0.89 6.14 3.34 3.26 8.51 8 3.79 4.54 7.57 7.73 6.25 9.42 9.06 7.38 7.6 8.4 10.3 6.56 7.42 10.5 7.51 8.93 8.35 10.9 6.98 5.47 8.19 6.56 6.3 3.53 5.18 11.1 7.78 6.01 5.2 9.86 2.68 10.1 4.95 8.01 9.45 9.07 4.09 9.68 11.5 10.8 9.68 5.84 6.53 9.06 7.37 3.34 10.4 8.37 5.82 7.69 6.77 10.8 4.79 9.02 11.8 3.39 5.7 8.72 0.65 5.9 6.21 8.67 9.39 7.32 1.44 3.03 5.52 8.35 7.85 6.87 11.1 7.1 6.45 10.9 5.73 3.12 7.96 8.55 5.72 8.72 6.56 8.59 7.98 9.78 8.77 8.23 4.86 5.81 9.78 5.41 10.1 7.49 9.01 6.97 3.53 10.4 3.76 5.96 4.22 5.53 10.1 3.22 10.4 2.05 1.95 2.92 4.93 6.34 4.45 5.61 6.43 4.63 5.96 8.04 7.61 5.25 8.89 3.03 9.17 3.82 4.98 2.48 3.64 4.61 8.6 5.24 7 5.4 6.96 8.61 3.6 6.71 5.92 3.22 2.05 4.69 0.65 6.47 4.31 3.94 3.17 11.4 7.15 10.7 5.94 10.4 8.9 6.65 7.46 7.87 7.14 9.73 6.42 4.51 11.5 11 5.96 8 2.62 5.15 1.44 1.72 10.4 7.18 2.92 1.44 10.4 10.5 2.62 10.3 11.4 8.72 11.2 11.5 10.4 3.38 6.43 7.52 8.62 8.57 10 11.6 4.56 4.77 5.19 7.53 8.99 3.53 3.73 9.84 9.91 4.75 8.07 4.51 4.69 11.6 4.56 5.7 11.8 1.72 3.88 9.81 5.25 5.74 6.71 2.75 5.23 11.9 8.9 1.72 11.8 6.98 4.11 7.84 6.57 11.5 6.1 6.77 6.14 5.24 3.22 4.04 7.7 6.96 8.88 11.5 8.19 9.53 7.12 5.45 9.17 10.2 6.1 7.25 5.85 9.83 7.62 4.45 12.8 7.61 8.69 8.95 6.14 1.72 5.99 2.62 2.62 2.05 7.76 8.06 7.15 7.09 3.88 9.1 0.89 8.67 4.16 7.48 8.78 9 11.3 6.36 10 8.14 9.28 2.15 6.96 9.76 4.31 4.04 7.34 9.73 9.67 12.6 10.3 3.42 9.58 3.26 12.9 2.48 9.86 4.31 5.34 1.28 11.6 3.22 12.7 2.84 1.44 3.67 2.24 9.32 9.18 10.4 11 13.2 7.41 4.6 4.06 7.84 9.38 6.76 11.6 7.51 12.4 13.9 3.6 6.64 11.8 2.87 7.35 8.87 7.38 11.2 3.38 9.44 13 12.5 1.59 10.6 9.73 8.26 1.28 8.48 6.04 11.2 9.99 6.22 9.99 7.31 6.59 6.93 6.62 7.82 8.4 5.49 9.49 4.14 9.51 4.93 6.61 0.65 3.08 7.79 2.92 9.18 2.48 8.18 6.83 7.87 4.95 6.86 2.15 8.56 9.02 3.12 3.5 5.37 5.78 0.36 4.81 7.92 8.15 8.54 8.85 5.62 2.87 2.62 9.33 9.15 6.9 7.33 5.46 8.07 4.81 6.26 2.81 2.68 6.9 2.4 6.31 9.66 9.75 5.74 10.7 4.27 1.1 11.3 5.42 3.12 4.04 8.05 5.38 11.6 2.75 8.8 8.26 5.06 11.2 4.71 11.2 8.71 3.34 10.1 3.22 9.06 11.3 5.93 11 1.84 10.1 9.43 10.4 10.3 12.7 8.33 7.76 6.49 10.7 12.4 7.54 11.2 8.42 6.2 2.55 5.61 11.8 9.48 10.3 11.7 4.04 10.6 8.25 10.5 5.6 7.36 7.65 12.3 7.9 10 4.77 7.88 5.66 9.66 9.4 8.11 6.67 0.36 8.13 8.58 7.44 7.44 3.85 4.68 11.8 12.6 8.81 9.05 11.3 10.8 11.3 13 7.46 10.6 9.46 10.4 7.46 7.94 6.44 9.21 9.6 7.42 2.32 9.68 10 6.15 6.33 10.4 10.9 0.36 11.1 4.74 0.36 9.75 11 10.3 5.43 12 12.2 7.54 13 4.69 13.6 16 9.5 7.57 9.47 6.53 7.97 8.49 5.19 11.3 9.43 10 5.74 11 9.78 10.9 1.59 7.24 8.8 10.5 10.5 11.3 12.4 10.2 8.96 9.76 6.53 9.64 10.3 10.4 6.7 8.69 9.82 4.68 6.41 11 3.6 8.8 13.2 11.7 10.7 11 7.66 9.28 7.41 6.69 7.23 9.8 6 12.4 7.12 9.53 10.9 17.4 3.46 7.91 9.98 9.51 7.05 8.51 7.72 12.6 13.6 14.9 16.1 10.3 10.8 9.4 8.65 7.1 11.1 10.5 7.41 5.89 10.6 12 8.72 9.85 9.2 8.93 13.2 5.47 7.41 6.98 9.99 4.89 0.89 5.6 8.83 3.99 7.43 5.5 6.48 7.65 7.16 7.47 10.4 9.41 6.17 10.2 8.87 8.26 10 8.68 7.4 10.6 10.5 1 10.1 7.57 7.49 6.43 13 3.88 6.08 10.8 5.04 0.36 7.05 2.32 8.31 3.12 3.22 5.48 8.13 5.13 13.9 6.65 8.08 10.2 2.92 7.12 8.41 14.4 8.53 13.7 9.36 11.3 10.9 13.9 14.5 11.2 13 1.95 8.08 0.36 8.01 6.9 7.02 11.9 1.59 0 4.69 9.63 1.59 10.4 2.75 5.79 4.97 10.4 7.15 7.07 8.46 3.46 9.26 5.49 6.56 8.59 12.1 9.25 5.24 8.5 12.1 9.13 9.6 1.44 2.92 9.99 9.22 6.52 9.94 11.1 6.78 4.79 8.22 4.16 10.4 10.3 4.82 9.63 8.53 2.24 7.92 3.99 4.69 5.16 8.75 7.73 3.6 3.53 11.5 7.07 6.65 5.94 9.74 8.87 10 6.49 9.23 7.97 7.68 7.99 6.91 6.59 8.59 7.92 8.13 9.96 5.39 11.3 10.4 10.7 10.7 11.2 4.79 7.39 2.48 9.64 8.28 9.73 5.8 13.8 7.23 5.9 9.23 8.51 11.2 8.97 9.62 10.2 3.42 12.2 3.5 7.93 5.6 10.2 1.72 11.1 8 7.46 10.8 4.79 6.29 8.38 9.24 6.17 2.15 12.1 8.55 4.45 4.35 8.54 0 9.59 7.33 8.68 7.39 12 8.14 5.8 5.31 5.35 6.81 5.3 9.81 6.75 2.32 15 1.72 6.27 3.42 5.82 2.81 10 6.69 7.74 6.33 11.8 6.93 7.89 10.9 8.16 8.65 16.2 10.3 2.62 3.03 5.19 8.62 7.86 5.11 8.55 9.73 8.31 8.79 11.5 3.38 10.6 8.54 9.74 8.82 6.83 10.7 10.3 10.9 6.32 8.46 11.1 11.8 10.9 3.76 10.1 9.31 7.47 7.38 1.28 10.9 12 7.66 9.86 12 8.77 9.51 7.23 8.2 8.61 7.35 11.5 9.12 10.9 4.2 6.73 9.88 11.6 7.46 9.36 9.66 3.93 7.68 12.8 4.68 2.32 12.2 9.89 8.23 3.3 10.8 7.17 7.29 11.1 7.63 10.2 8.44 10.5 6.67 10.4 10.8 7.48 13.2 11.2 4.35 9.04 9.13 4.59 9.3 2.24 11.3 10.6 9.01 10.6 7.94 11.4 13.4 7.75 3.99 8.75 9.44 10.3 2.24 9.98 8.05 7.29 5.55 6.62 12.9 3.26 13.1 9.18 11.8 3.67 8.61 10.9 7.4 11.4 13.2 7.28 9.86 9.43 4.87 9.48 8.02 8.38 4.09 12.3 3.5 4.09 7.32 3.67 13.4 7.88 7.12 7.9 4.01 0 10.2 7 9.4 8.98 8.24 9 10.8 6.17 10.1 11.4 11.7 8.19 9.15 11.1 4.69 9.46 10.5 7.66 13.4 6.11 6.31 12.1 7.79 5.81 3.22 12 9.4 12.2 0.65 5.5 8.77 8.95 5.13 7.03 6.55 9.32 13.4 7.46 8.97 10.4 8.26 11 9.88 4.29 6.48 6.88 7.79 7.27 9.52 6.94 9.54 8.27 4.45 7.02 10.5 8.19 7.42 9.07 6.49 9.95 6.68 7.95 8.25 7.68 12.9 2.05 4.45 8.39 7.67 5.15 10.3 3.03 10.8 8.86 8.06 5.7 5.12 3.53 0.36 4.41 1.72 8.07 3.46 7.32 8.87 3.22 0.65 4.5 7.17 6.29 7.49 6.14 7.58 6.35 13.8 6.07 8.6 3.82 8.32 7.26 9.81 3.03 10 9.1 9.01 6.49 12 5.49 6.11 8.56 9.36 6.79 9.87 3.5 7.81 7.4 9.98 6.92 8.47 7.27 8.07 8.2 9.06 4.87 8.97 6.07 7.05 8.75 10.2 5.35 1.73 5.03 4.54 10.6 4.58 8.71 11.1 8.44 9.38 9.36 8.8 4.99 10.9 5.7 4.46 10.6 9.67 8.53 9.19 9.31 7.72 7.44 5.77 8.57 4.23 6.24 4.95 7.72 6.93 10.6 8.29 11.1 9.78 9.51 3.22 10.6 9.63 6.91 8.35 5.96 7.92 8.32 12.1 7.77 9.29 5.45 4.47 8 5.88 8.57 7.34 10.9 9.7 3.53 8.56 3.93 9.81 0.65 7 10.6 0.36 6.9 5.2 1.72 6.76 7.07 8.43 7.72 9.79 9.06 8.74 7 8.71 9.96 8.92 9.87 12.8 8.93 5.37 8.86 8.5 4.67 3.22 1.1 4.74 2.15 9.79 7.24 9.89 6.02 14.7 10.2 10.6 2.4 12.5 8.48 6.89 9.98 5.49 8.45 7.79 10.2 12.3 6.73 9.15 5.21 12.5 9.89 6.69 2.32 11.8 5.66 8.66 8.16 13.7 7.79 12 4.56 12.9 8.52 11 9.49 7.57 10.6 12 10.6 3.96 8.15 11.1 7.54 11.3 8.7 10.6 11.7 8.48 5.65 3.34 7.78 8.43 9.55 10.6 7.06 8.53 7.63 8.55 2.48 10.2 10.8 13.5 9.71 9.1 9.58 8.4 11.7 2.62 9.77 6.93 9.56 10.9 4.16 12.2 8.32 7.29 7.77 11.1 9.99 10.8 8.6 12.2 10.9 8.93 9.59 13 8.68 6.62 10.6 9.26 10.6 9.77 9 7.49 9.75 11 3.42 9.79 7.4 5.92 1.1 6.64 7.32 9.51 9.99 11.1 9.75 10.3 11.4 9.43 9.57 10.1 12.3 3.91 7.55 12.4 1.59 10.9 12 9.4 7.02 7.47 7.76 10 7.45 12.8 9.93 11.5 10.6 9.3 9.92 9.52 9.08 11.4 10.4 5.82 7.78 14.1 8.68 10 6.42 7.67 8.33 6.18 7.84 5.01 11.9 8.63 4.94 11.5 7.24 5.18 10.5 10.1 8.49 8.52 12 11.8 0 7.65 1.28 9.59 11.7 10.4 9.44 8.02 6.25 4.51 8.66 12.1 11.9 10.3 8.12 10.5 6.62 8.38 2.05 9.98 11.9 11.5 10.8 13.4 10.8 11.7 9.08 13.2 12.4 9.9 5.49 6.54 5.33 11.6 10 10.4 8.98 9.55 9.05 6.64 6.67 10.9 8.87 10.4 11.5 9.84 10.7 4.72 7.78 9.29 7.91 12.1 10.9 8.88 11.2 11 11.2 7.29 7.78 6.18 9.95 10.9 11.8 10.9 10.4 11.4 7.78 9.1 11.1 9.71 3.5 8.79 10.9 10.2 11.9 9.37 9.99 8.05 8.59 11.2 10.5 10 10.4 8.57 11.5 5.73 10.5 8.17 8.81 12.6 10.5 9.13 10.2 8.4 8.14 11.8 10.2 7.14 9.45 8.83 10.3 8.63 6.82 10.1 10.4 10.1 6.85 7.73 10 11.2 8.91 7.7 6.26 9.6 10.6 10.9 9.31 10.8 6.49 9.43 10.6 8.06 10.9 10.7 9.28 9.61 8.06 10.4 11.3 10.6 11.6 8.32 9.31 9.74 3.3 5.43 8.37 1.28 9.5 9.7 11.2 9.23 9.33 9.7 10 14.9 10.9 8.82 11.1 11.4 10.3 10.6 8.51 9.75 11 8.21 13.1 12.4 7.65 8.89 11.1 8.7 9.77 10.3 9.39 8.46 7.8 8.57 7.78 9.81 10.4 10.7 9.59 10.5 8.92 11.3 12.8 11.8 9.74 13.6 8.6 10.8 10.7 9.83 10.9 9.34 11.5 6.87 10.3 12.2 7.5 11 7.1 8.06 9.35 9.78 10.3 9.02 9.02 11.8 12.1 9.48 1.95 11 9.89 1.72 8.99 10.2 11.4 12 8.92 5.83 8.42 5.71 8.76 8.85 6.93 8.02 11 9.68 8.2 5.19 10.9 7.91 8.94 9.29 6.83 9.46 11.8 6.89 9.91 9.47 9.58 8.81 6.63 9.93 9.97 8.39 11.2 8.77 10.7 10.4 3.3 8.09 8.95 8.76 11.4 12.4 10.3 11.9 9.87 7.45 9.67 9.67 10.4 10 9.4 8.58 11.4 11.1 6.39 6.48 9.91 7.55 5.83 8.85 8.6 8.72 5.45 9.23 10.9 10.8 9.92 11.1 4.9 9.76 9.18 4.9 8.01 9.15 1.59 10.7 9.3 6.63 12.3 8.79 9.95 8.21 11.7 8.07 8.91 2.62 10.1 9.68 10.4 11 6.97 9.67 10.1 12.5 11.9 8.96 9.95 10.9 11.3 10.2 8.24 8.11 8.13 10.6 7.25 8.9 11.8 9.29 10.4 9.3 8.42 13.8 12.1 10.6 12 11.6 9.81 10.2 8.72 10.4 6.54 11.9 10.2 10.6 8.7 11.5 9.44 11.8 8.51 12 11.4 9.41 9.39 10.2 8.71 11.4 8.95 11.1 8.61 12.2 10.1 11.2 11.1 9.17 11 10.6 8.75 9.7 12.2 8.96 9.95 9.61 8.31 10.8 9.8 11.1 8.49 8.73 9.5 8.96 9.97 3.64 10 9.06 10.1 8.17 5.18 1.95 6.68 7.03 1.44 9.32 12.3 8.14 11.6 7.62 6.96 14.3 10.3 2.81 8.47 9.04 9.75 12.3 9.27 7.91 12.9 12.1 13.2 7.87 8.34 6.92 9.23 4.69 9.4 6.69 10.5 10.4 7.86 8.55 11.3 11.3 11.5 9.27 9.46 7.58 12.8 11.2 10.4 8.07 9.98 12.1 9.27 9.58 8.53 8.31 5.5 2.24 5.89 11.7 5.83 7.42 9.31 4.93 10.6 8.99 9.36 7.94 11.1 10.6 10.6 10.8 11 10.3 8.18 10.6 9.95 11.6 2.24 1.44 14.8 10.7 10.6 14.1 8.58 11.4 7.72 6.57 12.7 11.7 8.04 12.4 6.13 10.1 7.5 4.01 6.97 7.67 7.03 11.4 2.15 8.91 5.5 3.53 8.83 10 12.7 8.75 5.85 6.5 8.01 9.44 10.3 8.96 11.3 10.8 9.28 11.1 1.84 3.3 12.7 7.34 7.88 9.57 2.05 5.4 9.1 3.57 10.6 9.2 9.65 7.49 10.5 10.9 10.2 9.08 11.3 6.63 7 9.81 11.1 7.82 9.93 7.72 8.24 10.7 8.53 5.66 12.2 6.66 9.67 11.5 9.85 9.67 10.2 3.08 10.3 8.82 10.4 10.7 3.22 1.44 7.07 2.97 11 6.56 10.8 10.6 5.69 10.1 9.49 11.9 6.16 10.6 11.6 13.4 10.6 9.88 9.3 13.6 12.9 8.32 9.33 8.46 8.42 8.5 8.89 10.6 8.93 9.11 9.54 4.89 9.08 7.33 10.9 9.04 9.59 10.4 2.48 9.17 11 10.9 9.77 6.54 8.9 8.49 2.32 6.6 6.49 4.33 13.7 10.5 6.52 9.83 9.98 12.2 11.4 4.16 6.75 6.96 6.95 6 10.1 7.18 9.53 10.2 7.4 8.89 11.1 8.3 8.13 7.85 13.5 11.9 3.92 6.85 6.29 5.54 7.36 4.43 8.97 8.1 9.8 6.35 3.57 1.44 6.22 8.67 5.23 5.77 7.55 5.91 5.27 0.36 6.53 10.6 9.73 5.88 9.17 6.27 3.6 14.6 6.83 9.53 4.86 14.9 9.3 8.23 12.5 8.39 6.96 8.49 7.76 2.3 5.58 10.8 5.85 2.32 8.62 7.31 6.48 8.78 1.72 3.85 9.27 11.1 11 5.41 6.2 7.32 10.2 6.55 10.1 5.59 10.2 4.35 8.89 9.74 5.33 4.25 9.14 9.87 3.85 10.6 5.04 8.06 10.7 7.17 7.93 1.59 11.2 10.7 7.86 9.25 4.74 5.87 5.87 9.53 5.58 7.78 10.3 2.87 2.92 7.3 5.96 4.77 9.65 9.46 5.26 5.4 5.98 4.37 8.09 7.47 7.12 9.6 9.52 12.5 7.47 6.47 13.5 4.06 2.32 12.3 5.68 8.96 8.33 9.77 11.5 4.35 4.5 6.14 6.56 2.05 5.41 9.39 7.43 6.13 5.91 6.55 8.86 4.23 8.83 4.23 7.94 2.68 5.06 9.45 2.24 7.74 3.26 11.7 9.55 7.81 8.81 3.5 9.15 6.47 7.84 10.1 3.88 2.92 4.83 8 5.63 8.75 4.8 7.89 2.32 6.03 5.86 9.8 9.59 2.15 7.06 6.22 8.07 3.22 5.03 6.95 4.9 6.27 3.08 2.97 7.02 1.59 7.36 0.65 7.74 6.32 1.44 11.4 2.32 5.48 6.09 6.11 3.34 8.37 6.13 9.1 4.31 6.54 3.96 2.32 9.14 6.59 0 1.28 0.65 9.62 9.77 5.47 6.6 7.14 8.36 10.1 9.85 9.16 1.95 8.38 11.3 8.09 5.51 9.12 5.86 4.47 7.79 7.58 5.31 11 11.9 2.05 10 5.07 10.2 8.13 10.4 11.6 7.6 7.58 7.73 4.98 12.3 10.1 9.37 8.18 8.06 1.95 10.5 11.8 9.18 4.23 6.92 8.75 11 8.6 10.2 0 11.9 9.51 8.9 10.3 11.1 7.05 6.91 11.5 6.88 7.54 11.7 6.26 10.2 9.12 12.3 6.41 9.8 9.82 12.2 9.95 10.1 6.8 7.79 5.33 7.78 9.59 11.6 5.5 10.4 2.24 9.34 6.26 6.69 10.6 10.9 10.7 14.7 8.31 11 6.01 10.4 10.4 9.14 8.16 10.6 8.3 9.23 11.3 7.15 1.44 10.5 8.08 8.59 9.4 7.48 1.28 10.5 8.4 9.6 11.2 7.43 9.47 9.38 7.97 10.3 10.2 8.79 11.8 9.28 8.52 9.86 9.86 8.48 3.42 8.64 10.6 11.7 3.48 7.55 7.53 8.57 5.19 4.69 6.7 10.7 9.09 4.9 7.04 9.79 0.36 9.23 3.38 2.68 4.31 8.56 10.8 7.82 11.8 8.63 8.49 6.85 8.34 7.92 8.98 11.4 11.1 9.59 6.38 11.7 9.88 9.91 7.79 7.97 9.29 8.06 11.5 9.23 8.84 5.22 10.4 10.8 6.34 17 10.5 8.9 6.89 6.84 9.25 8.49 8.64 8.24 10.7 7.92 9.18 10.2 10.1 9.26 9.74 6.42 10.7 9.27 9.93 6.73 2.24 11.4 11.6 8.34 11.4 10.2 9.81 9.19 11.4 8.93 9.71 8.39 9.6 12.2 12.3 10.8 10.6 11.4 10.2 2.75 7.06 8.85 8.64 10.6 7.77 5.96 6.52 5.03 10.4 10.1 8.36 5.44 9.95 7.35 7.94 9.27 1.95 7.91 11.3 9.15 6.89 7.8 7.5 5.56 9.65 10.8 9.33 10.9 11.1 10 9.01 8.84 10.4 11.4 10.7 12.2 6.1 9.85 8.54 11.2 10.6 9.94 9.35 9.42 9 4.69 11.4 9.59 11.1 11 4.52 8.09 9.98 11.6 8.96 10.6 8.83 10.8 9.04 8.31 9.52 11.9 12.5 10.4 3.17 10.8 9.31 9.08 9.04 4.74 7.95 5.11 10.6 9.77 7.66 9.42 12.1 12.5 4.51 9.51 9.12 3.17 10.7 11.2 9.94 7.79 11.5 8.6 7.42 10.8 5.08 10.5 3.91 10.8 3.99 9.54 5.82 10.1 10.6 3.3 7.9 5.81 10.1 9.66 12.2 1.59 10.2 1.84 6.63 4.41 8.96 9.4 9.98 8.65 6.38 7.88 7.3 8.43 2.24 4.11 2.81 5.69 10.1 9.17 8.58 3.48 9.42 8.51 8.32 7.5 10.1 7.6 8.11 8.45 9.27 8.58 9.68 8.62 8.55 9.72 9.22 6.14 6.32 11.3 10.4 1.44 9.81 2.97 9.06 9.13 8.57 5.99 10.3 8.84 8.17 1.44 9.93 7.97 11.6 11.5 10.8 7.21 7.47 8.87 6.14 9.58 10.4 9.94 10.7 11 11.7 3.53 7.27 6.53 12.3 7.83 9.56 9.95 6.99 7.12 11.7 7.34 7.27 10.5 10.2 10.3 8.66 8.46 9.62 10.2 7.54 11.8 0.65 3.91 3.98 11.7 3.42 5.72 7.77 8.92 1.95 10.1 8.35 10.9 8.4 4.84 10.1 4.41 7.93 2.75 12 12.7 8.75 4.11 6.02 2.78 5.93 7 7.43 10.9 2.05 6.81 6.17 0.65 8.57 5.94 11.8 5.03 8.9 5.23 9.12 9.43 5.19 1.72 9.41 7.7 3.08 2.55 4.06 0 13 10.2 7.52 8.75 9.85 1.59 7.96 9.44 9.27 10.4 4.09 8.3 13.2 8.59 1.84 9.15 10.5 15.4 12.2 10.3 9.13 9.29 8.66 9.23 0.36 4.01 9.9 2.24 9.35 7.02 4.43 10.3 11.2 6.21 11.4 7.34 9.73 11.6 1.84 8.82 2.4 3.82 9.69 8.43 9.67 11.2 12.7 9.56 3.26 9.99 9.21 9.34 11.9 9.37 7.11 9.71 7.44 10.2 10.4 7.06 8.2 7.73 10.2 4.43 9.77 9.03 6.92 5.2 7.67 10.2 8.99 6.95 1.72 9.7 7.57 10.4 12.1 9.89 9.8 5.94 8.5 8.48 7.85 3.93 9.87 4.18 8.34 10.2 0.89 6.73 5.55 4.2 7.59 10.8 5.08 6.9 8.84 8.58 6.68 7.72 5.85 9.12 9.7 7.1 9.48 9.99 5.5 9.28 0 8.32 7.39 7.39 10 8.96 10.9 8.59 4.74 2.32 10.2 9.19 0.65 5.66 4.35 2.97 6.87 8.75 10.3 5.85 8.39 12.9 3.3 6.75 8.39 9.48 8.6 9.72 7.06 6.99 7.77 11 10.6 8.9 9.5 8.39 8.41 9.9 11.2 11.4 7.95 7.68 4.8 9.48 9.5 0.89 7.3 7.86 5.78 5.04 11.4 9 8.44 5.09 4.11 10.1 6.73 5.44 8.41 8.34 10.5 1.95 8.6 4.18 9.53 1.72 5.16 11 12.4 2.4 10.1 9.44 11 10.2 2.81 13.6 12.1 9.51 12.3 11.8 9.69 10.7 9.22 9.01 5.59 8.28 9.76 8.56 8.54 8.38 8.21 6.86 7.7 10.6 7.64 8.21 7.86 11 7.57 9.5 4.64 10.1 7.19 9.59 10.1 5.8 10.3 10.5 6.97 8.13 6.42 12 8.63 8.78 12.3 5.8 11.6 8.77 9.48 9.59 8.11 9.34 9 9.03 12.2 10.7 4.87 7.49 8.55 14.7 0.89 7.34 12.6 12.2 4.96 3.08 6.75 10.3 6.87 2.15 7.88 7.2 3.67 12 5.75 4.18 11.4 2.68 8.81 8.26 10.5 12.5 10.4 12.7 10 10.4 10.2 1.72 13.1 4.65 3.3 11.2 3.38 10.9 12.2 7.18 7.92 2.75 6.6 11.1 6.31 6.49 1.84 4.06 3.6 5.45 6.27 4.37 8.87 6.23 3.22 7.87 4.64 7.34 9.55 5.52 7.24 6.72 4.63 4.33 5.06 1.1 9.44 16.2 5.92 13.6 10.8 4.99 6.38 5.73 9.97 3.64 7.89 6.92 7.64 9.59 8.27 10.6 7.06 9.06 4.19 5.62 4.43 5.72 5.85 10.6 2.4 6.68 12.2 11.3 1.44 8.07 5.77 6.49 4.68 6.63 1.72 5.14 5.59 12.3 4.06 5.46 7.17 8.44 5.35 8.53 5.87 6.11 6.14 2.15 7.06 3.46 4.63 1.44 8.05 0 5.44 2.68 4.09 9.17 9.64 7.97 4.79 2.23 2.4 4.31 6 7.34 8.7 1.1 0.89 5.41 11.2 5.74 6.39 6.7 4.26 8.83 5.29 9.06 5.8 5.81 7.15 3.12 6.06 8.51 7.36 1.12 4.41 10.4 10.2 11.8 4.77 3.38 9.81 8.55 1.1 5.49 7.4 1.44 8.1 6.53 7.09 5.23 11.2 8.48 3.96 4.14 2.68 7.48 8.03 0 2.55 0.65 9.69 5.93 7.61 7.98 12.1 6.89 7.9 6.49 8.74 5.59 4.35 7.51 6.05 9.52 4.72 6.84 11.2 2.48 9.69 2.81 7.55 0.65 6.89 2.55 7.33 6.76 10.1 5.79 8.21 5.69 6.22 4.49 5.37 7.67 11.1 1.59 6.52 4.54 2.05 3.96 0.89 8.92 1.95 0.36 2.75 2.15 4.31 7.37 9.29 6.4 5.92 8.68 5.52 4.45 8.27 0.89 8.04 4.27 3.26 2.32 9.21 3.26 8.09 4.09 6.46 1.59 4.56 6.57 9.72 2.05 5.07 5.85 3.53 1.1 8.54 2.15 3.76 5.06 1.1 8.55 3.82 5.51 6.13 8.53 3.76 6.25 7.63 9.75 7.24 2.05 4.16 2.55 5.55 1.84 9.03 11.5 7.38 8.96 8.94 0.36 8.6 2.24 2.81 6.98 6.91 9.75 4.56 8.71 8.36 0.36 4.09 9.34 9.25 6.21 8.11 8.71 0.89 8.04 3.64 7.54 9.07 9.51 6.38 8.63 7 7.86 3.17 3.5 8.21 1.1 8.93 1.28 7.28 4.43 4.68 8.46 10.1 4.54 9.38 0.36 9.46 2.55 8.01 5.76 4.31 7 6.02 10.8 3.76 5.8 8.93 2.24 4.51 8.78 7.43 7.17 8.41 1.44 4.69 4.2 10.4 5.2 4.39 8.34 0.36 3.93 9.94 1.44 6.11 8.2 6.76 8.99 7.18 5.24 0.65 4.27 5.12 3.5 5.39 8.72 8.57 2.97 11.9 6.22 8.62 4.66 2.05 2.87 7.37 8.25 7.87 8.32 9.58 3.26 0.89 8.83 6.79 1.45 2.4 8.25 8.12 7.51 0.89 6.31 7 8.81 7.66 5.16 1.1 7.85 5.19 6.84 2.62 4.23 7.15 8.36 7.8 2.24 5.74 9.47 12.3 12 10.2 6.05 11.9 10.5 9.23 12.3 10.1 8.98 12.1 8.53 10.4 1.28 7.23 9.08 9.35 8.84 8.62 7.71 10.4 8.44 14.1 7.91 8.69 12.1 4.06 8.36 5.3 10.7 0 8.29 7.76 10.6 10.9 12 11.3 10.4 10.5 9.34 6.97 8.28 10.1 8.23 10.2 11 9.01 9.22 7.98 9 7.7 10.2 9.04 5.54 9.76 9.47 3.64 5.74 9.83 6.1 10.2 3.17 10.2 4.16 9.91 11.2 6.96 9.94 7.49 9.98 9.85 10.9 8.11 8.02 10.8 10.6 8.73 10.6 11 8.8 9.55 9.62 8.06 8.07 11.4 9.86 9.64 9.14 10.8 8.39 7.76 7.52 7.76 10.2 9.64 9.44 8.22 9.6 7.87 8.96 10.5 11.8 10.1 5.59 8.82 1.1 9.41 8.58 8.36 3.6 8.01 11.4 10.2 10.1 2.68 3.67 8.95 11 11 2.15 2.05 10.8 9.88 10 1.72 6.04 13 4.39 1.95 13.2 4.99 11.1 12.6 11.1 11.5 13 11.2 9.37 10.1 11.4 2.32 8.78 6.85 7.44 5.88 13.7 1.1 6.79 7.78 11.4 7.38 10.7 9.28 9.85 10.4 12.2 10.1 10.5 5.66 7.27 10.4 9.57 11.5 11.7 8.84 4.83 12.2 10.9 9.95 8.53 10.9 1.72 10.1 7.77 3.46 8.37 10.3 4.04 9.49 10.9 12.9 11 5.48 10.2 1.59 3.73 7.96 7.64 10.3 3.12 10.2 7 5.99 2.97 11 8.79 9.68 8.13 3.38 2.81 11.2 10.7 9.43 4.56 9.23 11.1 8.18 7.56 10.6 11.2 11.6 8.31 11.6 2.32 10.2 9.07 10.4 8.37 6.78 7.61 9.63 3.99 9.25 3.17 11.3 8.61 7.71 9.4 9.45 8.31 10.9 7.48 9.54 11.2 8.35 8.92 13.8 8.98 8.28 4.18 5.86 7.21 2.4 9.07 9.97 7.46 4.11 4.72 8.78 9.67 4.11 7.99 8.06 1.95 9.6 8.84 11 9.03 3.46 11 0.36 9.02 7.64 8.24 9.39 10.4 10.6 7.89 10.3 10.3 9.94 10.9 8.94 9.42 7.5 8.72 6.48 9.12 3.57 10.5 6.56 6.07 9.09 7.87 12.4 8.05 1.11 10.6 3.17 12.7 8.76 9.06 2.62 4.63 7.48 4.89 4.49 4.43 14.1 11.5 9.34 4.29 4.74 2.55 12.5 6.79 2.4 10.1 12 8.48 14.1 11.6 15.9 10.9 8.94 5.77 11.9 10.7 9.53 9.19 9.94 1.59 6.13 7.68 6.1 12.4 8.22 8.95 5.59 7.43 3.42 2.97 8.13 1.1 11.9 7.53 11.4 9.09 10.5 12.3 13.2 3.03 12.8 12.5 12 8.28 7.18 10.5 10 8.62 5.96 11.9 2.15 8.52 4.63 8.42 9.25 6.14 5.29 3.08 10.9 5.16 9.14 10.1 4.89 10.9 6.9 7.09 9.28 7.96 9.71 10 9.93 11.6 6.72 8.78 5.79 10.8 8.99 11.1 11.7 9.53 12.1 9.51 11.6 11.7 10.9 11.5 6.76 9.25 12.8 12.8 12.7 8.35 7.83 11.2 7.54 5.64 10.1 9.74 4.18 9.34 4.51 10.1 5.12 11.6 10.9 9.79 6.07 5.62 6.96 12.2 9.63 7.25 9.28 3.65 4.8 7.34 5.89 8.25 4.79 8.94 12.9 11.4 11.8 11.8 12.4 8.43 10.6 13 14.3 5.04 7.82 8.5 9.83 11.6 9.56 6.79 6.73 8 7.06 8.22 4.72 8.48 0.65 7.23 0.36 8.58 0.36 10.4 13.9 9.63 14.2 11.6 13.7 12.8 12.6 12.9 10.9 12 13.5 0.36 14.2 13.6 2.48 4.11 2.97 8.01 5.79 5.18 5.09 3.91 2.15 3.92 7.48 7.64 2.81 6.69 3.46 8.58 8.09 8.78 3.26 4.93 7.05 9.29 3.82 6.11 8.5 4.79 5.88 9.8 4.06 8.82 6.74 8.81 0.65 10.2 7.22 0.89 9.33 11 0.36 6.73 1.95 10.8 2.24 5.98 9.04 10.3 7.12 6.11 10.9 7.91 5.13 10.7 12.2 11.8 9.63 10.4 9.76 4.94 7.59 7.07 5.66 9.48 10.9 9.58 6.61 7.53 11.4 11.6 14.4 12 5.68 4.01 10.7 13.5 10.5 8.64 5.37 13.1 11.9 13 6.47 10.6 13.3 12.8 15.7 12.7 8.21 10.7 14.6 8.88 12.2 8.12 2.81 12.7 10.4 8.94 2.68 0.89 0.36 3.17 7.42 1.44 9.98 8.14 14.3 6.16 11.4 10.6 3.73 4.83 4.23 0.36 1.43 7.25 11 1.59 2.15 1.1 7.28 9.73 9.68 7.86 3.03 3.42 9.5 0.93 7.19 9.94 7.77 10.4 5.96 6.96 7.24 5.16 0 0.89 4.52 7.38 8.39 10.9 6.77 8.35 8.26 4.25 9.84 10.6 10.3 8.24 11.2 10.6 6.3 8.53 4.31 7.02 9.33 1.1 1.59 6.59 0.36 6.61 9.17 9.09 1.28 6.81 6.16 7.13 5.83 4.95 7.73 4.47 6.1 9.36 5.74 4.27 11 9.8 6.26 8.13 7.77 2.92 6.36 3.93 3.03 4.72 10.3 5.2 4.04 3.17 2.05 8.8 9.45 8.68 6.57 6.11 4.18 4.23 1.59 7.39 5.15 1.72 6.8 2.05 8.57 1.95 11.1 8.52 5.01 3.08 3.12 5.95 5.61 7.71 4.47 5.4 7.29 4.18 5.37 5.34 4.66 7.6 6.53 8.35 8.79 5.31 3.85 3.42 8.72 5.47 10.7 12.3 9.83 11.2 7.19 10.2 0.89 6.14 4.39 9.7 11.3 1.28 8.09 10 0.89 6.97 2.48 5.5 6.53 6.98 11.3 8.27 8.77 5.98 5.62 1.59 0 6.95 7.05 7.32 2.15 7.55 0.36 7.26 9.43 0.36 6.22 6.46 2.48 3.22 2.68 0 3.12 6.08 7.05 6.67 4.41 6.48 0.89 3.82 7.69 6.32 1.72 3.73 2.55 5.63 1.44 5.27 4.91 9.77 6.12 8.2 3.76 5.38 7.97 8.68 0 7.36 11.3 6.75 10.1 4.29 6.03 4.33 8.62 3.42 2.48 8.85 10.6 3.53 0.89 8.38 3.64 6.83 0.36 7.38 4.87 9.2 1.44 11.2 5.5 2.81 11.5 10.8 5.48 5.37 6.96 0.36 11.2 5.37 5.89 7.25 10.5 13.6 6.13 4.87 7.68 6.59 7.22 4.11 8.56 12.8 9.08 0.65 11.3 4.68 1.72 2.48 13.7 10.4 6.3 9.34 13.9 4.35 8.96 13.8 6.92 5.96 8.87 4.93 6.89 10.5 10.4 5.16 10.3 7.8 4.51 5.12 4.49 3.27 10.2 5.2 6.76 8.76 13 9.13 8.97 7.31 8.38 4.72 10.2 7.79 5.36 7.48 1.97 5.58 9.82 7.05 2.32 1.44 3.34 4.68 4.84 7.4 4.01 0.65 1.1 5.71 11.3 10.3 1.1 4.18 9.38 8.88 9.18 4.2 2.15 6.13 7.31 6.05 9.04 3.96 5.01 6.93 6.85 6.93 3.96 4.9 8.36 6.45 4.59 10.8 4.11 1.95 1.72 7.29 9.06 3.96 7.12 5.3 0.89 3.42 7.98 10.5 2.64 8.35 12.8 9.59 14.1 3.22 8.86 5.59 7.58 2.4 7.74 2.97 9 11.8 13.1 13.5 6.24 10.7 8.7 10.6 10.2 12.4 9.76 5.52 8.92 6.84 3.42 5.61 6.29 3.5 5.35 7.51 2.68 10.4 8.91 9.66 7.39 10.3 9.31 5.8 2.68 11.2 2.32 13 7.19 9.65 11.2 14.5 8.03 10.9 8.42 6.47 6.67 10.4 5.39 6.31 11.2 9.28 9.56 6.54 3.22 8.83 8.04 10.5 7.27 11.6 7.55 11.3 8.19 5.36 7.1 1.28 8.3 7.43 8.57 10.9 8.46 13.1 10.1 10.5 6.26 14.4 12.5 12.2 8.28 8.19 10.2 0.65 1.1 3.79 12.2 5.58 4.89 12.2 8.82 9.44 5.35 10.4 7.88 8.1 12.7 9.76 9.76 11.3 7.54 8.52 11.6 10.7 11.3 13.3 11.8 15.8 6.69 8.38 10.1 9.62 11.6 1.95 2.68 6.33 8.36 2.62 4.14 1.1 9.9 7.24 9.26 10.9 7.41 9.68 5.55 6.49 6.82 1.1 3.85 8.69 2.62 5.49 6.02 10 8.46 9.07 10 0.65 1.44 8.44 6.36 9.46 2.48 8.39 2.4 6.33 9.26 7.75 1.28 7.71 3.3 8.86 3.03 6.18 8.87 1.28 5.18 7.85 13.1 7.56 7.92 5.88 10.7 5.04 9.28 8.44 1.59 5.02 2.81 8.93 9.26 5.37 6.06 6.12 5.14 2.15 0.36 8.4 6.68 5.66 6.67 8.32 7.38 11.4 8.54 5.94 6.68 5.52 4.06 8.09 2.24 9.07 6.69 7.58 1.1 8.91 5.89 8.28 1.28 6.37 12.4 4.07 0.36 5.76 3.53 8.06 5.76 1.59 9.88 1.72 2.75 6.51 11.3 5.14 1.28 8.62 12.1 6.72 3.26 7.88 5.35 10.2 6.65 6.46 2.24 4.23 11 7.68 1.95 4.09 6.52 6.18 4.01 4.99 4.71 7.5 3.85 0 7.58 10.9 10.9 11.2 4.41 8.36 2.68 7.4 8.83 10.7 5.9 12.2 8.93 5.85 8.71 0.38 2.24 0.36 12 0.65 2.15 7.08 6.33 2.97 11.8 1.44 1.44 0 1.72 4.37 0.65 10.2 10.3 11.2 11.5 11.2 12.7 11.7 10.4 8.88 11.4 6.53 10.5 12.2 10.4 3.93 8.92 14.7 9.16 9.18 8.93 7.4 6.2 13.2 7.04 7.63 12.2 1.72 8.68 6.57 5.13 16.9 4.38 9.14 2.4 2.62 4.94 9.85 4.27 5.67 12.8 7.7 12.1 13.4 0.89 6.49 4.84 2.24 8.42 9.92 4.09 7.19 1.72 4.86 3.53 5.5 6.05 4.68 6.51 4.51 6.79 9.7 6.28 0.89 10.2 1.79 3.82 9.32 4.35 0.36 12.5 2.05 8.96 4.98 2.32 10.2 5.11 6.2 10.1 4.54 7.03 4.63 4.35 2.81 6.89 5.59 5.9 3.34 6.78 8.82 3.42 1.84 13.6 3.85 4.2 9.01 4.89 7.26 3.26 6.52 8.09 4.58 3.46 4.29 6.97 5.84 0.66 6.82 4.18 9.2 1.59 6.34 8.01 7.92 4.27 5.96 6.62 9.33 7.01 10.5 3.3 1.95 5.89 8.16 7.97 7.15 7.33 1.1 10.1 12.5 8.69 2.62 7.84 6.98 6 4.86 6.89 5.39 7.17 8.08 6.57 4.8 2.15 5.72 7.44 7.6 7.78 3.43 10.9 4.77 6.77 10.6 3.76 3.12 1.95 7.06 9.14 5.91 2.24 6.59 2.15 7.31 5.81 1.1 0.65 4.5 7.68 1.84 4.31 2.97 10.1 10.7 6.96 7.49 0.36 2.24 7.08 0.65 3.42 3.22 4.86 2.87 8.11 11.7 9.29 2.4 9.18 11.1 9.28 6.71 13.1 2.62 13.1 2.81 11.7 0 8.79 12.9 12 13.6 5.32 0.89 11.9 11.9 13.5 1.59 2.4 2.62 13.8 5.57 12.7 4.63 1.28 9.6 11 5.44 10.7 7.85 11 6.84 5.97 14.7 9.66 14.6 9.97 4.25 4.63 7.22 10.1 11 10 2.4 11.3 10.6 13 10.7 9.06 8.38 9.94 1.1 5.99 8.88 10.8 1.37 10.3 8.55 12.6 9.66 12.2 8.53 9.89 5.41 1.1 7.43 9.49 11.5 3.93 6.24 8.39 5.86 10.4 9.97 9.82 6.31 7.02 2.75 12 3.08 6.67 8.88 6.63 12 6.22 9.03 9.43 10.8 2.92 7.19 4.84 10.3 10.6 13.9 8.43 4.86 9.7 10.7 0 0.89 5.83 11.7 6.62 10.1 6.35 9.78 2.97 5.73 7.48 2.32 6.88 7.73 1.28 8.63 1.59 3.85 4.79 5.21 4.89 4.18 5.36 3.08 9.65 3.69 12.3 7.13 3.6 1.84 7.35 4.39 6.76 1.1 9.17 9.23 7.44 7.08 6.25 4.41 6.94 4.11 2.48 5.88 3.73 5.42 10.8 4.27 5.87 4.45 5.99 7.37 7.37 3.5 5.35 6.04 3.25 10.8 4.94 6.53 5.96 0.68 8.69 6.89 1.28 8.88 2.75 9.45 8.48 2.4 7.73 7.77 10.1 7.24 4.14 7.87 6.84 0.89 1.84 0 6.41 9.19 3.38 5.8 8.71 5.24 0.89 3.57 6.1 10.1 8.84 2.24 6.89 5.49 10.6 5.02 3.57 8.43 4.83 4.59 9.35 4.56 7.87 5.57 8.09 9.86 13.6 3.79 9 11.3 10.5 8.35 8.28 9.99 5.18 10.1 4.31 3.67 11.1 8.99 8.24 8.67 9.44 9.83 9.93 8.53 12.2 3.46 9.41 5.01 7 9.74 9.88 10.9 11.8 0 10.3 2.24 6.69 13.2 7.94 11.2 11.3 4.04 4.45 7.66 5.68 7.78 3.76 10.2 11.9 11.5 12.6 11.7 13.2 12.1 0.36 5.65 5.7 0 6.73 10.8 11.3 10.7 9.95 9.69 11.7 11.8 11 9.61 10.3 5.45 8.54 6.15 8.48 9.91 0 8.33 8.8 7.39 9.43 4.56 3.88 6.47 8.51 10.8 10.2 7.32 12.5 8.7 11.3 5.77 8.45 11 8.4 12.1 6.78 7.54 9.61 8.56 10.1 7.23 6.16 12.4 4.58 3.67 8.85 2.32 5.22 7.84 3.73 1.95 11.4 5.06 1.11 9.27 9.52 5.31 10.2 7.08 8.83 5.74 13.1 10.9 4.04 11 11.6 9.46 6.58 9.77 7.54 7.19 0.36 12.3 12.5 12.9 11.8 12.1 11.4 12.6 11.2 7.35 10.2 8.6 4.56 11.3 12.1 12.6 11.4 10.1 6.83 9.1 11.4 10.1 10 8.29 6.38 10.3 8.14 4.23 8.11 8.82 6.85 9.41 9.06 11.3 10.3 11.9 10.5 5.39 1.1 9.5 10.5 10.3 9.52 11.1 7.85 9.45 11.1 8.98 6.07 11 8.91 7.1 8.61 8.35 8.49 4.79 9.55 9.95 8.72 8.96 6.59 10.4 12 7.17 8.98 11.9 8.16 0.89 9.09 6.1 8.64 12.3 9.54 10.2 9.8 5.59 8.58 10.4 10.7 12 10.9 7.52 4.84 9.06 11.2 12 8.53 6.81 9.07 11.5 8.56 6.08 6.71 12.3 6.69 10.6 12.5 5.14 8.61 2.87 7.74 9.35 6.68 3.93 10 7.75 5.27 9.38 4.06 7.61 7.86 0 9.27 7.74 7.95 9.68 9.26 4.14 6 7.35 8.49 8.42 9.5 9.26 3.76 7.45 9.44 12 0.89 9 11.7 11.3 0 6.24 6.02 10.6 10.6 4.49 1.84 2.81 5.34 8.4 3.73 11.6 4.71 5.37 4.41 9.75 10.4 3.96 11.3 10.2 4.47 8.88 4.18 5.7 8.23 6.4 10.1 8.26 4.33 9.87 4.18 9.43 7.93 4.23 5.31 1.59 0.65 8.88 9.72 6.57 3.79 6.75 5.03 1.59 0.89 13 7.18 4.29 4.77 8.11 5.58 6.97 9.13 13.9 5.54 6.59 5.36 3.39 7.32 8.37 2.32 8.21 7.16 2.4 4.27 8.07 7.71 3.73 7.54 5.67 0.65 4.06 7.62 2.72 5.67 5.99 1.72 0.36 0.89 2.05 1.59 8.72 1.1 9.9 5.36 4.31 5.41 5.89 4.09 9.23 12.6 0.65 0 0.65 3.03 0.89 3.82 6.98 1.84 2.05 8.74 6.66 3.34 1.28 11.1 2.68 10.2 8.42 4.2 9.52 9.31 9.17 9.23 1.44 7.42 4.74 1.44 8.06 13.5 7.65 6.19 7.74 9.22 5.74 7.95 6.48 6.5 6.56 9.49 10.8 9.68 4.75 9.14 9.09 10.2 8.72 10.3 7.84 7.2 2.32 10.4 10.2 9.28 9.44 13.4 7.47 9.62 9.46 8.59 9.04 9.04 11.1 9.77 10.8 11.9 5.41 11.3 2.4 3.08 0 12.6 13.3 6.02 10.1 8.88 0.65 6.65 15.3 10.2 10.1 10.5 3.38 5.69 14 9.94 3.53 10 11.3 9.66 10.1 11.1 11.5 7.16 6.84 7.7 12.3 10.7 10.7 9.21 9.24 6.8 10.9 11.6 15 9.66 8.36 9.83 13.3 6.01 12.9 7.37 4.69 11 12.3 12.3 13 8.66 11.1 8.34 10.1 9.25 2.87 9.77 10.1 5.52 9.24 14.3 9.19 10.1 9.15 8.55 10.8 9.59 12.6 10.3 9.66 8.9 8.32 10.7 11.4 10.2 8.54 9.58 8.92 10.7 11.7 10.3 10.5 12.1 9.85 12.2 10.6 9.31 10.4 10.2 10.2 10.8 10.9 11.7 8.28 11.4 10.9 8.92 10.3 11 9.16 11.1 8.83 12.1 14.7 10.7 11.6 0 7.66 7.12 7.3 6.46 4.39 1.59 2.68 6.44 8.05 9 8.64 8.05 9.29 11.4 10.9 14.6 11 4.09 10.1 9 4.06 7.05 9 9.35 1.44 13.8 6.68 12.3 10.9 7.11 10.1 10.3 9.03 10 12.4 9.61 9.01 10.4 9.79 10.6 11.5 10.6 0 11.2 9.96 10.2 9.48 3.3 11.9 9.55 7.41 8.82 8.58 7.22 9.47 4.9 5.83 10.9 5.64 3.5 8.09 14.3 11.3 13.1 8.62 9.94 8.05 12.2 8.24 4.83 11.3 14.1 5.85 7.81 10.3 10.9 8.14 9.79 11.7 12.9 7.85 7.18 3.93 10.7 6 8.37 8.72 11.1 7 13.9 7.5 0.65 12.9 7.55 7.87 6.17 5.04 3.03 8.77 10.9 10.9 9.04 11.3 9.23 2.81 10.5 7.14 4.66 7.21 13 10.1 6.54 5.5 9.03 4.58 12 2.24 3.38 2.32 2.55 9.06 6.44 6.81 6.12 6.13 12.2 11.1 13 10.4 12.3 8.32 11.7 9.32 4.74 9.05 9.26 6.97 8.42 5.45 8.16 6.13 2.81 7.21 7.97 5.49 8.18 9.76 0 4.89 10.2 9.49 7.35 6.64 4.84 1.1 13 10.3 9.41 14.3 10.4 2.55 10.8 8.55 5.23 2.62 2.87 7.43 6.24 1.72 0.36 11.4 10.1 13.4 3.3 8.6 7.01 8.75 10.1 3.17 6.6 9.2 9.76 11.6 9.52 8.89 7 3.46 2.97 10.9 3.93 6.1 4.95 7.56 7.22 8.62 10.8 10.4 6.53 3.6 7.68 5.14 5.11 7.58 4.61 4.61 7.04 10.5 14.5 6.16 8.37 12.8 2.32 3.17 5.66 12.9 8.37 11.6 6.86 11.3 8.8 9.1 5.65 11.6 8.55 10.6 8.16 9.74 7.59 10.6 7.54 13.1 10.6 11.3 11.7 14.2 5.51 4.59 9.27 9.58 11.7 6.23 9.95 10 4.75 10.1 8.9 9.7 8.62 3.93 11 4.58 4.79 10.7 11.4 7.96 5.15 9.52 2.19 6.95 9.89 9.86 12.2 9.89 10.7 9.84 8.28 3.12 3.44 1.28 13.4 2.55 9.91 12.3 5.34 5.08 5.35 9.36 11.1 9.66 11.8 11.5 11.2 7.17 8.32 8.69 13.1 7.16 1.59 14.4 1.59 3.81 4.01 8.34 11.2 8.39 10.7 8.88 10.7 9.06 8.59 8.37 6.82 7.46 8.25 10.3 9.43 9.05 4.81 9.1 8.97 10.8 9.78 10 8.11 6.92 9.01 8.9 10.9 11.3 5.46 8.92 9.31 7.87 10.8 7.82 10.5 10.9 9.05 10.8 11.6 9.18 10.3 6.76 9.06 5.74 10.1 7.67 7.73 8.9 10.7 9.69 6.59 9.37 8.43 2.32 8.71 11.1 10.7 11.1 10 9.06 11.4 8.36 10.7 9.06 9.64 9.71 12.4 12.1 10.9 12.3 11.6 8.22 7.24 4.76 7.3 10 7.29 8.12 10.3 8.86 11.3 7.7 10.4 10.4 9.91 8.93 11 10.9 7.25 8.25 8.21 8.28 10 8.54 12.1 11.2 9.96 12 7.71 9.8 8.96 9.89 9.93 9.59 8.61 9.48 9.61 7.93 10.8 11 10.3 10.2 10 6.92 7.22 7.83 8.3 7.69 10.6 10.1 8.71 8.8 7.96 9.96 8.15 11.8 9.34 10.4 10.2 9.57 6.97 11.4 2.68 10.5 11.5 8.83 10.5 10.9 6.16 8.66 8.7 10.1 7.86 9.18 4.23 9.94 5.94 8.01 8.22 8.87 10.2 8.55 8.91 10.2 8.99 9.43 8.86 10.6 10.9 8.33 10.5 5.56 6.89 10 8.73 11.7 6.38 9.63 7.84 10.8 10.3 8.84 7.18 3.82 5.01 2.55 8.8 4.25 9.29 6.08 7.16 7.67 12.8 10.6 9.41 10.9 2.24 11.2 9.51 6.13 8.27 8.44 8.95 11.4 10.2 9.45 9.45 6.86 7.91 8.66 4.72 10.9 10.3 10.4 9.04 11.1 8.49 8.28 10.2 9.58 4.11 4.35 8.1 11.6 11.4 11.8 11.7 9.38 6.6 7.35 9.81 8.4 10.3 9.78 8.44 9.74 11 3.38 0.36 9.81 8.15 9.02 10.3 9.38 10.3 7.4 10.2 7.34 8.84 9.96 9.69 11.9 3.42 8.18 12.3 5.86 8.29 10.5 7.33 8.02 7.52 4.2 9.26 7.14 3.17 7.22 8.26 10.7 8.58 8.56 10.1 10.8 11.7 11.7 7.67 10.8 3.53 8.02 6.91 6.57 3.79 11.1 8.09 5.66 7.5 10.4 10.4 8.5 10.4 8.68 2.4 11.4 0 3.99 7.71 9.1 9.43 8.87 8.34 5.41 11 8.78 9.8 2.81 10.9 10.6 8.37 11 8.23 7.8 9.87 5.95 10.5 9.43 8.15 10.1 13.7 9.18 9.95 3.7 8.79 6.88 7.52 11.6 9.18 12.2 8.71 10.8 10.3 8.96 7.76 7.45 6.49 10.5 8.11 7.45 7.74 10.5 9.37 5.61 9.73 11 11 8.49 10.2 8.87 5.72 11.3 10.4 11.5 10.9 2.4 10.4 8.7 10.3 7.07 4.31 9.61 9.36 8.75 1.72 11.4 10.4 7.33 10.4 6.14 8.97 8.18 11.4 10.8 9.77 12 10 11.3 10.7 8.93 10.2 11.4 10.5 11.8 8.83 11.9 8.99 4.99 8.95 10.2 5.85 11.5 10.5 6.46 9.25 10.8 7.79 8.62 11.1 4.83 6.89 6.94 5.75 11.2 10.4 8.62 9.61 7.84 8.22 9.49 9.7 10.2 8.21 9.08 7.51 10.8 4.69 7.37 10.2 8.66 11.2 6.67 8 10.6 9.93 10.2 10.7 7.64 10.1 10.4 9.85 9.69 5.5 11.9 9.59 12.7 8.42 9.6 10.2 11.7 10.3 11.7 12.5 10.7 9.51 6.65 11 10.4 11.8 10.1 9.87 10 9.79 13.4 10 0.36 7.25 10.2 10.8 9.96 8.56 12.1 9.49 11.1 8.36 9.01 9.32 10.7 10.7 10.5 9.26 9.32 9.77 11.1 10.2 10.4 5.98 9.15 9.46 11.6 9.71 7.48 8.6 8.57 7.51 8.65 7.6 12.3 9.36 10.3 8.71 11.4 5.72 10.4 4.04 6.33 7.27 10.1 2.62 4.79 9.93 8.8 10.7 9.2 11.3 9.79 13.3 10.2 11.5 8.5 7.74 6.83 11.1 6.99 9.85 7.86 10.6 9.16 5.88 10.3 3.17 7.95 11.8 10.6 8.89 11.8 1.1 9.82 6.95 6.57 3.34 6.98 9.72 5.27 11.9 8.8 9.34 3.08 8.75 9.57 11 10.3 10.4 5.66 4.01 7.62 9.95 0.65 10.7 11 9.34 9.37 3.53 10.9 12.1 8.53 8.57 6.41 8.19 9.25 8.02 10 11.4 8.25 9.49 9.88 8.46 8.46 7.84 9.75 8.87 0.36 0.36 9.44 4.52 10.8 9.23 10.5 9.41 12.8 11 3.12 9.21 10.8 9.52 8.59 11.7 2.24 9.59 10.5 13.5 12.5 7.79 10.4 11.7 3.88 4.01 11.5 8.93 7.78 11 13.3 8.85 8.88 5.82 3.67 3.93 3.17 12 6.74 12.9 2.81 10.8 9.51 10.5 9.49 9.81 10.7 3.12 10.1 7.25 10.1 7.82 8.42 11.5 11.6 9.02 7.01 8.53 7.62 9.24 9.72 8.48 7.82 10.2 10.6 9.44 9.42 11.8 9.3 9.34 10.8 8.79 4.14 8.87 12 10.6 10.5 9.03 10.8 1.28 9.02 9.09 10.5 8.81 11.1 8.75 1.21 14.1 8.4 5.94 1.28 4.91 9.03 8.27 11.5 9.38 11.3 9.81 11.4 8.78 10.8 9.38 10.7 11.6 10.3 4.33 6.97 3.06 9.15 7.65 6.65 2.32 8.61 11.9 3.96 7.52 7.87 10.2 9.71 9.45 10.4 13.3 5.35 5.02 8.21 7.44 4.36 9.15 2.15 10.7 11.3 10.5 4.68 11.3 9.91 2.15 12.3 10 8.14 12.7 10.3 11.6 12 11.8 5.8 7.77 0.36 11.3 8.8 11.8 8.76 9.41 1.37 1.28 12.2 10.2 10.1 10.5 7.85 8.09 8.14 8.3 6.42 5.23 3.73 5.85 10.9 10.8 3.57 6.91 3.7 7.83 8.92 9.97 9.04 5.14 4.11 5.87 9.87 10.7 9.68 8.51 8.89 9.55 9.06 10.7 9.85 11.7 9.45 8.07 9.58 8.91 7.75 10.7 7.09 5.01 5.7 7.45 7.42 6.25 2.81 8.83 2.97 5.85 8.02 7.44 8.73 7.29 4.95 10.5 9.78 11.2 0 10.3 10.2 6.3 5.26 7.24 4.75 8.63 9.46 9.01 9.5 9.76 8.65 10.6 10.9 12.4 4.18 5.8 6.36 9.49 9.54 9.81 11.7 11.2 6.27 4.21 11 9.76 13.2 11.4 10.2 3.73 3.96 9.88 7.05 8.37 12.4 7.37 8.99 10.4 10.4 2.62 6.43 11.2 9.12 9.84 10.1 9.85 13.7 9.94 5.94 8.19 11.3 5.55 6.28 11.4 9.64 9 9.44 5.96 8.5 7.11 6.51 9.19 6.23 6 10.3 10.7 8.41 10.1 9.1 9.22 2.48 3.88 11.6 9.76 9.92 9.46 6.59 10.4 8.86 3.64 10.1 8.68 10.3 11 8.02 10.4 9.88 9.76 10.2 10 8.93 9.69 8.11 10.1 7.82 8.61 7.23 10.6 8.96 9.82 9.72 8.11 9.79 6.77 9.94 10.3 6.84 9.17 7.9 2.4 7.59 7.17 5.55 9.57 8.08 8.5 5.5 8.14 10.4 8.71 8.56 9.39 4.61 8.79 8.03 7.32 10.7 8.2 9.5 7.61 10.8 10.4 15.2 7.65 10.7 12.2 10.8 9.99 9.8 12 7.79 6.62 6.02 9.29 7.08 7.11 8.34 9.17 8.7 9.02 9.35 1.28 10.5 6.89 10.9 10.7 9.43 9.03 5.92 9.93 8.22 8.41 10.6 10.3 10.1 6.04 8.19 7.64 11.4 8.46 3.12 8.66 10.1 10.3 8.9 10.8 2.55 9.97 11.3 7.84 5.2 9.23 8.44 9.79 11.1 10.7 10.4 9.09 8.21 10.9 8.68 3.91 3.3 9.97 0.36 12 9.08 1.44 9.97 8.68 8.27 7.94 7.43 2.15 10.4 4.58 8.12 3.34 9.76 5.87 8.59 11.5 7.29 8.2 10.1 9.94 8.11 10.1 9.48 12.4 9.85 7.8 8.07 10.1 13.2 9.72 9.14 10.1 5.06 7.88 4.72 10.7 9.75 11.2 8.9 10.8 8.5 9.65 5.21 9.57 6.98 9.71 3.93 9.76 10.8 8.04 8.92 12.3 8.84 7.84 10.6 7.62 10.2 8.41 3.26 6.18 0 10.2 6.39 4.77 9.56 9.66 8.65 7.68 10.4 6.6 10.7 9.43 10.1 6.56 12.3 5.53 8.82 9.95 8.73 6.85 8.36 7.85 6.76 10.7 5.96 9.22 8.23 10 11.4 7.77 12 6.71 9.5 4.83 11.2 9.76 10.1 10.7 9.32 6.2 10.9 6.63 10.5 8.89 8.05 10.3 10.3 8.9 10.9 9.39 9.56 6.56 9.81 12 10.9 9.05 10.4 8.8 10.4 7.63 9.08 8.46 7.41 6.64 3.93 9.71 9.77 9.76 10.9 9.77 10.2 8.21 10.7 9.32 9.88 11.7 8.81 10.5 9.79 6.89 10.4 8.77 7.57 9.09 11.9 9.38 11.3 11.2 13.4 9.28 9.57 6.49 5.8 11 8.59 9.61 9.25 10.9 10.1 9.55 10.8 8.62 7.98 4.01 10.9 8.44 8.83 8.98 9.98 7.66 8.56 8.78 7.19 9.14 8.54 7.81 6.52 12.2 7.14 8.31 6.53 10.6 6.75 9.12 8.56 8.98 8.87 7.33 7.9 10.8 11.1 7.01 10.6 8.99 9.6 4.64 8.29 7.49 7.93 9.69 7.39 9.94 6.25 8.38 0.65 11.8 11.8 7.69 8.01 11.9 7 5.33 4.27 10.1 7.18 11.5 13.6 12.1 6.37 10.4 9.88 10.2 9.46 8.56 9.22 7.6 10.1 12.1 7.91 10 8.82 7.97 7.52 8.26 9.03 6.07 9.42 0 2.62 7.43 6.83 11.7 5.32 5.01 7.19 10.2 9.19 10.6 9.53 6.33 6.23 9.71 7.55 10.7 9.63 7.87 10.8 9.32 11.3 9.42 9.8 7.74 10.3 9.41 9.01 8.15 8.43 9.13 9.6 6.97 6.55 5.02 7.5 7 9.36 4.56 10.9 6.78 6.7 4.79 10.1 8.05 9.18 9.16 10.1 6.64 11.4 11.8 6.36 4.91 6.63 9.28 5.5 9.74 8.72 7.53 8.7 8.52 11.2 4.16 9.25 10.7 10.3 8.83 7.45 7.95 4.09 11.5 8.48 10.2 8.36 9.44 8.92 7.17 9.8 9.21 10.2 9.14 10.1 2.92 9.65 10.5 8.92 9.59 6.88 8.94 8.91 8.26 8.87 3.08 4.35 10.2 10.6 9.59 8.98 9.92 10.2 6.74 10.3 9.77 9.68 9.04 11.1 4.8 6.95 9.41 9.84 9.93 9.4 8.87 10.4 10.7 9.19 10.7 8.92 8.46 9.98 7.33 10.9 10.7 8.91 8.8 8.35 10.4 10 6.83 8.56 9.24 7.93 7.53 12.9 8.25 9.32 10.5 9.9 7.12 11.2 11.3 8.1 9.29 7.66 9.77 7.59 10.9 7.3 0 10.5 10.5 10.7 6.69 3.42 10.6 7.86 10.8 6.8 9.05 11.5 8.89 11.4 9.01 11.6 4.14 10.1 8.69 9.47 11 11 9.62 7.34 8.71 9.27 7.74 4.09 8.67 7.99 9.3 10.1 12 9.41 9.69 8.92 8.68 10.6 4.47 8.84 11.9 10.7 7.07 9.8 10.8 8.52 8.4 3.12 10.5 9.5 5.5 9.03 10.7 8.88 10.7 11.2 8.78 9.15 10.9 8.49 10.4 9.8 8.04 5.49 7.86 6.6 8.35 10.4 1.44 9.4 10.5 9.62 10.4 9.94 7.37 10.8 10.3 10.2 7.8 10.4 7.84 11.3 10 8.07 3.57 3.96 9.23 7.7 6.66 8.69 10.1 11.7 2.87 9.15 9.03 11.2 11.3 7.85 8.61 9.83 5.79 9.14 8.89 11.1 0 8.14 9.21 0 6.81 5.42 9.75 11.6 9.05 10.2 7.54 7.79 6.04 8.39 3.39 10.7 8.31 8.8 10.1 8.53 7.27 10.2 8.87 11.3 7.74 9.55 11.2 6.39 6.3 8.21 7.77 7.68 8.28 8.41 10.3 5.62 5.55 7.68 10.9 10.5 6.77 12.7 9.07 9.47 8.07 7.38 8.21 10.7 4.97 5.4 5.36 9.5 12.1 9.88 7.78 9.53 6.27 10.9 10.1 11.3 9.7 7.06 11.1 10.2 9.68 6.56 8.28 12.2 12.4 3.96 9.17 2.15 8.14 9.3 7.08 2.81 1.28 4.37 8.95 4.35 8.74 9.02 6.6 4.2 8.71 7.95 9.37 10.9 10.3 10.6 8.35 3.38 10.4 8.12 15.2 10.8 6.79 8.92 5.18 9.89 10.6 10.4 5.16 7.93 4.87 7.14 8.92 7.41 2.62 9.03 6.98 6.11 10.5 10.4 6.26 3.67 1.59 7.5 10 4.54 5.15 10.4 0 2.4 8.15 10.6 8.95 10.5 8.54 9.55 7.87 7.88 8.19 9.07 10.6 9.7 12.8 2.05 10.5 10.4 9 6.65 10.6 9.91 7.59 10.8 7.85 11 9.21 7.87 6.99 7.51 8.53 9.09 8.77 11.8 6.81 10.9 7.41 7.75 11.6 10.2 3.34 9.04 8.84 10.6 8.26 8.78 11.1 9.4 11.1 9.02 10.1 10.6 9.52 10.3 11.9 8.35 10.3 8.55 9.7 8.46 8.34 8.92 8.83 8.42 9.65 7.93 10.4 8.31 11.9 8.07 8.28 7.52 9.19 8.07 10.7 10.3 9.15 11 5.69 10.3 9.98 10.7 3.08 11.8 11.8 11.5 10.8 8.54 7.55 8.94 12.3 9.49 7.2 9.98 8.39 9.03 9.56 8.9 8.01 10.8 8.47 8.01 9.97 11.3 10.3 7.31 8.7 11.9 4.31 10.5 11 10.8 6.43 7.9 10 9.8 7.62 11.2 8.28 11.2 8.6 8.56 9.37 9.67 10.8 8.17 10.2 8.88 10.7 5.17 8.69 5.02 8.81 9.57 12.7 9.9 9.4 10.8 8.03 8.65 10.8 9.33 8.62 8.4 10 11.8 9.59 8.47 8.46 9.93 10.1 10.5 11.5 9.77 10.5 9.97 10.5 9.37 9.42 7.85 10.1 11.3 11 7.72 9.29 8.53 10.9 7.12 12.2 10.3 9.05 8.85 9.56 9.67 7.86 10.2 11.3 3.82 9.44 10.9 9.98 8.85 9.2 6.96 8.04 9.58 7.53 10.3 8.42 9.25 7.3 6.62 8.65 8.63 9.19 8.53 7.91 8.55 10.7 3.85 6.86 10.2 7.53 7.56 7.95 8.88 7.89 8.16 9.9 6.75 7.42 7.41 9.02 9.42 4.83 9.51 6.2 4.31 11 11.6 7.24 6.89 10 2.15 6.91 10.7 9.15 5.04 12.5 8.71 6.55 9.93 6.73 5.77 10.3 11 9.26 9.96 9.79 11.3 11.4 9.62 9.56 7.82 11 7.25 8.95 3.76 9.82 11 9.67 8.13 7.48 12.7 9.2 9.6 9.68 4.62 10.6 8.32 9.32 8.75 9.16 4.95 9.86 9.34 9.39 9.97 7.75 3.08 8.36 6.82 9.95 9.59 8.74 9.52 7.59 10.2 6.51 6.05 1.72 14.4 8.82 9.07 11.1 6.56 11.7 9.31 8.05 7.94 10.2 10.4 11.5 7.01 10.4 9.79 13.3 8.63 10.2 8.77 9.03 10.5 3.46 13.5 8.91 7.06 9.42 4.77 8.09 4.95 11.4 10.7 8.06 7.16 9.27 10.8 7.52 4.09 10.3 11.7 11 10.5 9.34 10.3 7.06 9.54 9.13 9.2 9.74 8.28 2.32 9.06 6.88 10.4 9.84 8.85 6.46 10.2 7.96 10.2 10.8 8.79 8.84 11.4 2.15 7.98 8.96 7.55 11.2 4.26 3.03 3.76 6.52 2.97 2.97 0.65 2.4 1.59 1.34 2.48 2.4 2.55 1.84 10.1 1.28 2.15 1.84 1.72 1.1 9.46 0 4.89 8.3 3.73 3.5 3.91 5.74 6.32 2.55 3.46 10.8 2.4 3.53 3.26 4.69 3.6 5.77 8 4.95 1.84 5.14 7.02 11.4 6.5 8.85 9.61 1.95 8.53 11 0.65 4.11 6.57 7.96 10.9 1.28 11.8 10.6 2.4 10.5 8.37 8.15 9.61 11.1 5.73 11.2 11.1 9.1 9.18 9.92 12.2 9.11 10.6 7.24 4.47 9.55 8.84 9.53 11.2 10.6 9.56 7.06 7.13 10.2 7.59 1.44 8.14 8.41 5.06 9.65 10.6 5.65 11.3 3.85 8.99 8.53 4.59 14.9 6.72 6.65 7.33 10.2 6.96 7.98 10.4 7.28 10.7 6.26 11.3 11.5 9.4 7.75 7.41 9.55 5.26 3.82 5.65 2.05 9.24 8.53 10.3 8.31 11 9.88 13.5 9.16 0.89 10.2 8.61 11.7 8.87 11.1 7.75 8.5 9.67 8.32 11.4 10.5 9.69 8.12 4.47 10.4 11.4 12 11.3 11.4 11 12.2 12.4 8.69 7.12 10.5 9.51 10 11 8.95 4.39 11 10.2 11.5 9.44 10.2 9.83 5.12 8.76 11.6 11.7 5.51 8.87 8.08 10.5 10.9 10.9 9.77 11.9 6.04 10 8.64 7.47 11.4 10.8 10 9.02 10.6 9.45 8.47 8.91 7.09 11.2 9.15 11.3 7.81 9.42 7.19 9.53 8.49 10.4 8.99 12.2 11.2 9.11 9.72 7.09 4.14 9.61 8.62 9.18 0.36 11.8 5.16 10.2 6.82 11.9 8.18 7.37 6.14 5.12 7.75 8.05 7.38 10.6 10.2 7.69 8.12 10.3 7.6 9.37 7.73 11 7.7 12.1 9.94 9.81 10.3 7.71 2.32 8.74 7.76 6.73 11.4 11.3 10.6 0.65 9.07 11.6 9.46 12.2 8.76 7.91 7.3 9.44 8.24 9.98 11 9.65 10 12.1 9.43 4.47 10.1 8.94 2.33 11.1 11.4 13.5 8.06 9.51 8.4 10.1 12.8 4.2 11.4 2.68 10.7 1.44 8.78 7.84 8.42 11.8 4.25 9.12 8.18 9.76 2.4 8.29 8.38 9.47 9.14 10.8 2.32 8.73 7.91 10.6 9.17 10.7 8.17 6.39 12.1 10.4 10 10.7 12.8 11.6 6.63 12.6 7.62 13.5 10.7 12.3 7.63 10.2 7.91 11 8.43 9.74 8.57 11 10.3 7.27 9.11 8.06 10.7 7.74 12.1 5.55 7.17 7.99 10.4 10.9 8.49 11.1 11 10.4 10.3 9.88 8.84 9.82 9.34 9.79 9.6 8.41 10.7 5.85 9.14 12.5 11.6 3.79 10 5.16 9.9 9.22 9.58 6.94 8.61 9.43 8.47 10.2 8.96 8.07 6.26 9.35 11.2 9.09 6.69 10.4 10.9 10.1 9.97 10.9 8.15 8.87 3.57 5.02 13.4 8.24 10.2 0.89 0.89 11.2 11.7 8.37 4.31 3.79 10.7 11.3 4.67 9.02 10.4 8.51 5.73 8.49 7.76 7.8 9.8 9.63 5.11 12.8 8.92 5.15 4.93 6.41 8.24 6.98 1.59 5.06 10.3 9.24 0 7.27 6.21 10.3 9.99 11 8.71 10.7 7.95 10.1 8.18 7 6.15 9.63 10.9 10.7 10.8 10.8 3.57 9.27 5.75 5.72 11 9.15 8.7 10.5 8.56 10.4 10.6 7.02 5.06 5.83 8.18 10.1 4.74 6.89 10.6 10.9 3.67 9.72 9.93 9.57 7.26 1.95 7 10.7 10.5 9.85 7.28 4.37 7.29 11.1 8.87 7 11.3 8.51 9.89 1.28 9.75 2.32 11.2 6.68 9.85 6.4 9.89 10.3 11.3 8.3 9.18 11.5 12 9.31 9.75 9.82 12 7.96 9.8 9.56 11 4.64 10.6 0.89 4.58 7.73 9.61 13.2 11.6 10.9 11.5 9.58 8.43 5.85 10.4 8.38 12.5 5.44 8.98 10.1 7.89 8.71 7.96 6.46 11.9 8.41 8.49 9.9 1.1 9 10.5 7.59 6.97 10 9.47 10.1 6.8 9.2 3.42 7.59 10.6 4.52 14.8 8.77 4.52 9.31 2.4 3.08 6.69 9.17 2.48 10 9.47 2.05 11.6 10.4 10.3 8.69 8.94 9.76 9.88 10.1 8.95 7.92 6.82 3.42 9.47 9.77 8.16 8.66 11.6 5.21 9.58 10.6 7.96 11.9 9.54 9.03 10.1 0.65 7.59 9.76 9.32 9.82 8.18 7.08 8.76 5.18 13 9.22 7.93 11.9 11.4 9.36 6.08 5.49 10.5 9.93 9.24 11.5 10.7 9.01 6.63 8.75 10.3 7.77 10.9 10.2 11.9 11.3 7.27 8.35 10.1 7.8 8.42 8.15 10.6 6.43 8.55 9.83 10.8 10.7 9.23 5.69 10.6 2.81 9.22 4.79 9.12 7.74 7.1 10.4 8.5 8.9 6.89 11 7.24 3.93 11.1 9.18 9.54 9.21 10.1 6.97 8.26 6.75 9.07 10.4 4.27 7.87 3.64 7.83 8.07 4.11 5.47 9.78 9.7 8.06 7.99 10.1 10.4 9.1 6.3 5.3 5.91 1.72 8.66 7.5 8.62 10.4 8.53 9.86 9.4 8.73 9.97 10.8 9.11 10.1 9.95 9.22 5.45 10 12.5 11.8 10.9 10.4 10.5 4.98 10.3 6.78 9.78 10.1 5.74 11.1 1.44 6.46 8.81 8.59 10.9 9.62 4.87 2.87 7.85 7.93 5.18 5.3 7.1 14.4 8.52 5.45 8.03 11.1 9.03 3.08 6.65 2.15 5.98 5.47 4.77 12.3 8.38 4.61 9.11 10.3 7.12 10.6 8.48 9.65 12.6 4.18 11.4 10.5 8.66 8.41 6.78 9.91 10.2 9.54 8.45 7.44 9.97 12 8.94 11.7 11.8 11.7 9.76 13.5 10.5 2.62 10.1 6.6 6.26 9.03 11.3 10.2 6.93 5.02 10.3 10.6 10.1 10.4 10.2 10.5 7.66 7.62 6.62 5.3 7.88 9.84 9.18 8.77 7.78 6.07 11.2 10.7 10.5 9.36 3.85 11.4 8.51 12.2 10.9 12.1 9.51 10.1 7.23 6.07 9.64 6.18 5.94 12.3 7.22 8.19 11.5 9.47 11.1 6.7 1.72 7.06 8.97 9.9 12.7 9 11.5 9.92 10.5 6.76 4.11 9.13 10.3 8.31 12.2 12.6 7.59 8.84 9.86 9.29 12.5 12.6 11.3 8.9 7.94 5.8 7.1 7.84 8.23 11.1 7.89 9.46 9.62 10.7 10.3 10.8 12.9 11.3 11.3 12.6 9.19 10.8 6.33 8.44 8.83 10 11.3 8.08 9.86 7.84 11.4 10.1 8.04 7.48 7.84 9.14 7.6 3.57 3.53 11.1 8.72 5.69 11.2 7.74 3.93 8.63 9.57 12.3 12.2 8.82 10.1 10.3 9.82 11.3 10.5 8.01 1.1 11.2 9.17 10.4 2.15 10.6 12.3 10.6 6.17 8.81 3.96 10.4 12.3 2.48 11.1 11.8 10.6 10.4 8.49 12.3 1.44 2.34 5.63 9.26 7.27 7.36 1.59 10.4 11.5 0 5.19 9.31 4.59 9.71 10.7 7.09 6.16 11 7.82 8.16 13.3 10.9 8.2 7.08 12 10 10.6 10.1 9.34 10.7 9.79 9.82 11.1 2.92 9.84 9.57 8.07 6.94 1.72 9.91 6.49 8.34 8.76 7.76 15.7 8.45 8.83 1.44 7.25 3.03 3.08 9.59 0.36 10.8 9.42 9.82 2.05 9.39 5.73 9.43 11.6 10.8 9.16 14.5 2.24 0.65 9.2 9 7.96 8.96 5.81 13.3 3.76 6.21 10.7 1.28 11.9 6.25 0 9.46 13.2 8.33 9.5 10.9 11.4 5.29 9.37 8.16 10.6 5.43 10.1 7 9.27 8.88 8.15 5.54 9.53 9.18 12.5 10.5 10.8 8.59 10.8 9.91 10.5 8.18 8.83 11.2 10.2 7.68 10.5 12 5.93 6.27 9.93 4.11 11.6 11.9 4.2 3.5 7.61 9.37 1.84 10.5 10.5 9.52 11.4 7.56 9.39 2.92 11.2 10 5.41 6.87 1.59 6.37 6.81 8.51 7.84 8.98 0.89 12.2 8.15 7.99 9.14 16.1 15.7 14.7 14.5 12 10.9 14.2 6.42 15.6 12.7 14.6 14.4 13.7 13.7 14.5 13.9 14.4 13.2 15.7 4.93 13.4 12.8 8.77 14 14.3 14.4 13.9 15.3 14.2 13.9 14 14.8 13.5 15 10.7 15.5 14 13.4 8.31 9.52 15 8.35 15.8 15.4 15.1 10.7 9.78 13.3 13.7 14.8 14.9 13.2 15.7 3.53 4.83 6.3 8.22 7.24 14.7 1.59 1.59 15.2 10.6 8.71 10.8 9.64 9.83 13.6 14.8 14.8 13.9 15.2 15.9 14.4 13.9 13.7 14.3 14.3 14.3 10.7 16.3 14.5 14.8 14.2 14 15.2 13.4 9.31 10.9 14.2 11.6 12.1 8.32 9.22 12.2 10.9 12.2 11.9 10 1.28 8.06 11.1 9.66 5.26 7.19 9.77 11.1 10.3 11.3 4.83 4.18 10.4 7 9.94 8.82 4.2 8.59 2.62 12.4 8.75 12.4 12.4 13.8 5.86 9.18 3.22 9.56 8.63 10.7 12.4 5.85 7.39 7.78 12 9.71 9.46 12.6 9.42 10.3 11.9 9.91 10.1 7.34 9.32 9.64 9.29 13.2 5.11 7.54 6.14 5.46 5.56 2.4 2.05 2.75 11.6 7.07 6.43 9.1 4.48 10.8 7.76 5.97 5.01 8.57 9.93 1.95 8.03 5.04 5.04 2.55 2.87 4.35 7.67 3.85 6.51 7.43 7.91 4.25 1.59 0 9.68 1.44 4.61 3.67 5.55 5.74 8.02 7.83 13.8 6.11 5.7 9.93 11.7 11.2 6.67 8.15 10.7 5.21 9.89 10.5 11.8 9.51 10.7 10.9 8.83 4.29 9.46 8 6.9 9.17 10.2 8.02 9.9 8.67 9.07 9.86 7.51 5.33 8.83 10.3 10.4 9.97 5.96 11 2.62 1.91 9.99 6.51 8.81 7.98 8.19 9.01 2.81 10.7 9.21 8.82 9.32 8.52 11.4 8.38 10.8 4.45 10.9 3.91 8.83 8.62 6.73 8.18 6.1 10.8 7.1 4.04 6.07 6.4 7.62 11.7 9.76 10.1 5.32 15.4 3.67 6.56 12.2 9.01 6.54 5.21 6.37 12 7.08 10.6 8.1 2.92 5.91 5.73 2.87 6.67 7.42 10.6 9.24 7.44 7.66 4.16 10.2 7.94 11.7 8.49 8.06 11.4 8.34 7.78 6.68 5.88 7.95 7.69 6.76 8.01 1.1 10.3 6.93 6.6 3.6 7 0.36 10.2 9.32 4.71 7.28 7.02 9.34 10.8 9.1 9.37 11.5 8.08 7.05 5.75 5.11 5.08 8.25 4.84 9.59 12.7 0 8.42 7.34 11.8 10.6 12.7 11.4 8.9 8.8 10.1 9.78 6.39 8.08 9.79 10.4 9.22 10.1 0.89 9.03 6.55 9.12 6.59 5.71 3.03 6.69 9.22 12.4 0 12.6 12.8 5.38 8.01 6.74 9.79 4.56 8.94 9.11 7.52 6.31 11.5 2.15 4.16 5.31 4.18 11.5 7.92 1.1 11.7 9.46 9.15 11.5 11.3 8.17 5.34 10.8 6.99 7.12 9.82 9.37 9.51 11 7.18 8.11 8.27 6.63 1.72 4.2 6.39 12.4 9.58 9.21 11.9 9.22 8.19 2.4 3.3 9.54 8.33 8.68 0 0.65 9.06 7.37 5.74 6.33 5.37 6.43 3.03 12.2 4.06 7 9.49 2.32 10.1 7.68 2.24 8.42 8.34 6.4 9.68 2.32 5.79 7.44 7.64 8.37 8.28 9.02 7.94 0 6.74 3.64 8.56 3.34 9.12 9.67 8.43 5.62 7.86 10.3 9.4 10.2 11.1 9.4 10.4 9.32 8.55 8.72 9.5 9.85 9.17 3.57 5.08 6.91 7.67 3.34 3.73 4.91 7.79 13.4 3.12 4.25 4.8 8.1 3.7 8.22 7.6 2.75 10.7 0.89 4.86 0.89 7.67 8.75 4.94 4.84 9.77 1.12 1.28 8.41 4.09 9.28 7.33 6.6 0.65 4.1 1.44 0.89 10.7 3.91 6.94 5.2 4.01 2.62 7.75 5.09 5.61 3.46 2.75 6.98 8.38 10.6 4.09 10.3 2.92 6.17 2.97 8.48 1.1 6.63 2.48 11.3 5.82 9.72 5.88 5.88 8.82 2.97 3.46 7 9.76 10.2 6.85 10.1 1.44 3.17 1.59 1.72 5.38 2.48 9.93 7.88 6.51 7.71 10.5 10.8 12.5 5.08 5.03 9 12.5 1.28 7.16 10.4 9.5 9.14 10.2 10.1 7.42 8.83 7 8.54 10.9 9.46 5.97 9.22 11 6.76 6.9 10 10.2 9.34 9.72 10.7 8.8 11.8 12.2 9.26 10.3 7.98 8.64 10.9 6.89 11.4 10.6 10.2 8.22 7.56 9.88 7.25 0 9.55 11.1 7.94 6.56 8.79 10.3 8.28 4.95 11.8 13.2 7.16 5.55 10.7 11.5 5.87 8.18 6.5 2.4 11.2 8.31 10.5 9.4 6.99 7.45 8.01 8.08 9.86 6.11 11.5 8.51 9.26 6.08 9.53 9.34 9.05 11.8 9.38 10.3 8.37 7.36 8.9 7.6 9.46 9.78 9.47 5.39 5.24 7.81 9.3 6.98 11 7.52 10.4 7.74 8.07 9.27 7.98 2.62 9.26 8.68 8.47 7.7 10.9 7.47 3.59 9.22 5.71 11.3 6.37 8.77 10.4 9.53 10.3 6.07 9.84 9.2 8.98 6.93 10.2 10.4 8 9.6 10.7 9.78 9.39 10.3 9.17 11.4 2.87 6.11 11.9 9.53 10.1 8.73 7.29 10.1 4.79 10.1 9.44 6.43 8.95 3.22 6.14 5.98 10.8 9.16 10.7 5.6 10.6 6.47 7.85 6.11 6.75 7.99 7.82 8.76 8.69 13.2 7.09 11 9.4 11 5.96 12.6 12.7 9.74 9.56 10.2 4.54 11.5 10.1 12 9.33 13.9 3.79 11.8 6.51 6.65 3.72 7.09 13.8 4.61 10.8 9.2 5.7 6.58 9.93 9.86 10.7 9.79 3.73 9.21 7.63 7.43 8.45 12.8 10.3 6.05 4.77 6.64 1.84 3.22 2.48 1.44 7.71 5.43 2.75 4.23 7.42 1.28 8.47 4.64 6.6 1.44 4.25 5.93 5.46 9.35 9.34 0.89 5.66 4.25 3.03 2.62 7.87 14.5 9.18 8.44 10.2 2.4 8.54 4.59 10.2 0.89 11.4 5.71 5.62 5.49 3.03 10.5 1.72 7.95 3.12 2.97 6.12 3.08 11.2 7.92 0.89 0.36 3.85 9.42 9.65 8.68 9.75 2.48 8.63 7.42 0 5.09 4.95 7.8 1.28 6.66 10.5 3.85 3.73 8 4.33 6.26 0.36 8.26 0.89 9.06 3.26 7.55 9.23 3.22 8.69 9.51 7.86 9.09 0 1.72 8.66 9.37 10.4 10.5 8.57 5.7 3.22 4.75 6.13 7.57 5.14 7.56 9.94 12.6 11.8 10.1 10.1 10.6 12.5 6.5 8.21 11 11.9 11.5 10.2 6.67 8.3 7.73 7.66 6.29 8.67 9.23 12.7 6.32 9.93 9.48 10.3 8.59 8.67 9.84 8.33 2.05 7.8 8.68 6.04 10.2 9.15 12.5 11.8 12.8 6.29 9.14 8.02 12.5 2.19 10.3 9.76 8.91 9.54 9.17 10.5 8.51 12.5 6.78 7.53 4.99 8.16 10.8 8.5 7.33 8.94 8.38 8.93 12.1 12.2 12 9.71 12.5 10.2 10.2 11.4 10.4 12.1 11.6 10.1 11.8 10.2 10.9 10.7 8.67 7.22 10.7 10.1 8.93 8.36 2.32 11.6 1.44 11.2 7.21 11.7 9.84 12.2 10.6 11.2 10 8.48 14.1 7.05 7.03 10.7 6.02 10.3 10.2 12.4 10.2 13.9 11.2 7.89 9.18 6.8 9.62 5.91 13.5 11.1 10 7.91 4.37 8.87 4.31 12.7 5.82 8.35 13.2 9.48 8.36 12.5 0.65 7.08 13.1 10.7 10.2 10.6 9.54 5.4 9.78 9.98 11.8 12.2 11.3 10.4 11.6 11.8 8.78 9.84 7.52 11.7 11.2 11.1 9.12 11.6 7.97 9.38 11.7 10.1 14 12.5 12.3 12.1 12.1 13 8.38 5.4 0.89 11.1 10.8 13 11.7 6.14 13.7 6.68 11.6 12.8 13.4 4.27 7.77 9.59 1.28 1.1 0.65 2.05 1.44 4.49 1.84 4.41 12.2 5.12 1.84 0.65 7.01 9.92 11.9 9.67 8.68 9.51 9.1 12.2 7.81 8.49 8.98 10.3 9.2 4.58 3.64 8.77 10.9 6.75 3.53 8.04 8.55 9.2 9.55 10.5 8.92 11.5 9.46 8.73 9.29 10.1 4.45 14.6 9.4 7.95 11.5 12.4 4.83 12.5 9.89 9.09 8.53 11.4 8.91 9.47 8.68 8.59 11.2 8.19 9.59 9.88 2.87 9.29 6.91 0.65 4.68 10.4 7.56 7.07 3.22 5.11 6.87 11.3 9.77 3.85 10.2 9.07 11.1 9.64 9.2 8.81 11.3 8.33 10.3 11 14.7 9.79 10.7 10.4 8.25 7.52 10.5 7.21 0.36 13 13.2 11.2 9.99 10.1 8.49 10.7 12.1 7.13 3.57 9.07 9.62 10.2 11.9 8.59 9.46 9.14 7.62 7.49 5.24 4.31 5.97 10.8 7.64 9.57 2.4 4.51 6.63 9.5 1.95 0.65 11.6 0 10.3 10.2 10.9 4.84 12.8 7.46 8.41 7.12 9.11 10.4 4.61 14.6 8.33 9.83 11.2 10.3 10.7 1.1 8.59 11 5.77 13 7.63 1.1 8.09 9.86 10.4 6.17 11.1 10.5 9.94 3.91 12.9 11 8.65 11.3 4.09 3.5 8.95 13.7 9.88 5.94 8.87 1.1 9.29 9.17 6.74 10.2 7.86 9.19 11.1 9.51 9.89 7.17 10.7 10.8 9.72 10.7 8.26 7.94 6.88 13 4.25 7.98 11.1 7.63 8.07 6.72 3.6 10.6 9.53 5.41 9.49 9.93 10.4 12.1 8.11 10.9 6.35 8.37 9.66 9.87 9.16 10.8 4.16 8.92 10.1 2.32 8.72 6.42 2.48 9.55 9.99 11.1 11.1 9.16 8.31 11.4 10.8 11 3.57 11.2 9.78 12.7 8.53 12.7 9.09 10.1 8.92 11.6 8.3 5.67 12.8 10.8 6.23 7.03 3.76 6.35 16.8 10.4 7.17 8.65 11.1 8.16 7.97 8.42 10.3 9.76 6.07 10.9 13.5 9 8.1 6.34 5.72 5.45 10.8 12.2 9.67 8.98 4.79 11 8.49 3.7 7.06 4.51 9.6 9.05 6.85 10.2 8.97 10.3 10.9 5.98 2.15 12.7 12.2 9.64 11.6 10.5 10.5 9.98 9.44 10.7 10.5 11.4 11.9 4.75 13.8 10.6 11.2 8.55 12.2 14 10.1 10.3 11.6 7.2 15.4 0.46 12 9.4 10 14.6 7.51 7.72 7.97 6.81 8 5.38 11.2 0 12.6 11 11.4 9.75 6.57 6.76 4.95 3.38 5.52 9.22 10.6 4.81 3.93 4.52 11.7 9.5 11.6 1.1 11.3 1.44 9.8 11.3 8.89 9.31 4.11 7.44 9.97 8.98 11.2 11.6 9.69 6.47 8.54 9.6 7.96 9.3 11.6 6.04 4.11 11.2 5.8 8.26 9.83 8.22 10.9 4.29 3.96 5.88 5.89 7.84 5.51 8.58 8.79 6.42 5.96 8.23 10.7 3.6 7.03 1.44 3.03 6.33 12.6 8.28 8.16 2.81 6.14 9.96 8.15 6.27 11.3 1.1 8.79 8.1 6.26 3.38 5.02 9.7 7.69 4.06 14.1 3.5 7.91 4.06 5.48 1.44 4.74 6.7 6.45 5.31 10.9 3.3 1.59 10.1 4.86 9.31 6.7 5.93 6.12 6.46 1.14 5.3 5.52 5.89 3.26 6.39 11.8 5.98 4.45 1.72 5.07 4.93 2.87 3.38 8.27 10 9.13 5.37 9.5 6.31 3.53 11.2 6.47 7.76 2.48 7.58 11.8 0 2.81 1.59 10.5 6.55 8.61 3.3 5.41 7.3 8.33 9.47 3.99 8.66 2.81 7.85 7.07 7.53 9.82 11.3 6.78 8.09 2.75 11.1 0.89 15.5 3.57 10.3 15.5 13.4 6.55 7.1 10.4 9.3 8.71 10.2 12.2 9.93 7.88 11 10.4 9.87 11.8 1.28 10.8 11.1 11.9 9.49 10.7 8.23 11 11.5 12.2 10.1 8.82 3.42 1.84 11.8 4.8 10.8 5.75 10.7 6.5 11.3 10.8 9.11 7.47 10.4 7.49 10.9 11.2 10.3 9.07 2.81 11 1.28 11.3 12.7 12 12.6 11.2 9.36 8.45 9.97 10.6 9.98 3.46 10.2 9.9 9.18 9.54 12.2 10.8 9.69 8.76 9.95 6.98 12.3 14.4 10.8 11.8 10.1 7.18 13.3 9.22 5.16 3.76 9.8 3.38 13.9 12.5 6.83 1.69 6.99 6.15 2.62 7.39 8.47 9.28 8.81 2.24 9.33 11.2 10.9 6.75 8.85 12.1 10.6 9.14 6.24 9.64 12.5 9.86 10.2 9.76 6.83 6 8.05 9.83 6.25 4.69 10.1 2.68 8.51 6.23 9.43 4.51 2.32 8.53 9.3 1.28 11.4 4.33 1.72 4.56 9.03 7.34 9.93 6.38 11.5 5.51 12.5 10.1 6.84 8.38 6.64 8.1 12.5 8.01 9.85 9.92 13.1 7.31 13.4 12.2 11.6 14.6 9.8 12.2 12.3 5.92 11.6 8.36 9.31 8.54 7.11 8.47 10.3 10.4 9.1 7.5 14 8.97 9.35 8.69 7.84 8.66 6.98 9.29 4.83 7.57 7 9.05 9.54 7.32 11 9.02 8.72 4.64 9.78 10.3 10.1 6.56 9.97 8.83 8.93 5.85 7.85 6.62 7.37 5.89 6.61 4.61 2.87 2.05 8.14 9.57 8.37 7.42 8.83 6.87 0 10.7 2.81 7.79 8.06 9.65 2.15 4.59 5.6 8.46 3.79 11.5 6.42 4.39 3.17 2.55 0 6.81 4.9 8.61 11.1 6.02 9.39 4.27 2.92 3.93 2.05 7.02 9.24 7.09 5.55 9.4 8.79 10.7 5.03 10.9 10.6 10.1 9.82 7.77 3.57 6.1 0.36 11 6.23 11.3 8.83 3.57 8.53 5.45 6.03 7.7 8.93 8.56 10.6 6.52 9.13 8.03 9.24 8.24 9.51 7.08 11.2 8.55 8.15 8.3 8.4 12 1.72 4.01 9.33 4.93 7.91 11.7 11 6.28 7.8 5.54 7.79 5.74 7.5 6.59 2.24 6.55 9.96 8.36 7.68 3.26 8.67 5.57 8.69 7.91 5.56 12.3 9.8 10.1 14.4 7.76 12.1 8.24 10.5 3.63 13.6 7.85 10.8 8.52 4.49 11.3 12 9.89 10 11.4 9.76 13.2 7.31 4.43 7.89 9.12 11.8 8.2 4.25 10.1 9.65 9.75 7.42 9.55 10.3 11.9 13.1 8.09 5.45 9.99 3.3 8.19 9.25 8.32 4.98 6.88 9.83 10.1 8.91 9.26 4.2 4.61 9.26 12.4 6.74 10.5 11.9 8.78 9.9 9.9 7.65 7.55 8.54 10.8 2.62 11.8 10.7 8.47 8.75 7.54 9.74 9.6 2.81 14.4 10.4 7.55 7.64 10.1 10.2 9.77 10.2 11.8 5.45 8.64 11.1 6.56 10.4 10 9.1 10.3 10.3 8.75 9.11 9.9 8.03 10.4 9.79 9.03 8.6 7.6 8.38 11.2 7.15 7.92 11.4 7.76 10.1 9.37 10.3 9.84 11.3 8.94 8.56 10.8 8.53 8.35 8.61 7.07 9.85 8.85 10.2 8.37 9.91 10.5 9.7 12.4 6.54 7.92 8.81 8.11 11 10.8 7.11 10.1 10.2 12 9.22 7.97 4.91 6.2 9.32 4.37 7.64 7.83 9.24 7.18 9.88 10 9.3 13.7 7.77 7.85 0.36 5.65 8.66 13.2 7.29 10.8 8.26 6.54 9.05 9.17 7.48 7.98 6.83 9.83 9.57 9.2 9.23 2.32 12.1 13.2 8.52 10.9 13 9.99 8.12 9.07 1.15 9.77 4.04 11.7 2.24 11.7 7 11.3 6.01 6.6 2.55 6.56 2.81 4.74 3.3 5.52 8.67 7.69 6.93 7.01 11.2 8.6 7.71 1.84 8.72 7.58 10.3 6.82 3.17 4.04 5.39 9.29 8.33 7.04 7.66 9.33 11.3 7.92 8.94 8.75 9.64 10.5 8.54 8.24 9.63 10.7 9.37 9.3 9.69 7.38 10.4 9 8.39 8.2 11.3 10.3 8.88 7.68 5.07 7.89 5.33 9.42 8.11 4.95 6.04 8.94 9.52 8.92 9.21 6.76 4.31 7.53 6.08 6.87 5.12 9.19 8.31 6.66 8.14 5.97 9.79 7.39 8.44 9.63 4.94 8.93 8.95 9.32 9.22 10.3 8.97 8.05 9.58 9.87 9.35 6.89 10 6.75 10.1 8.6 8.24 11.9 5.52 8.86 9.97 11.2 9.67 7.64 7.3 7.37 9.13 8.69 10.4 4.01 4.04 7.62 8.35 10.6 9.85 9.38 6.73 7.72 9.73 7.35 7.9 10.1 9.98 9.55 8.91 7.06 5.11 7.85 8.69 9.28 7.88 8.64 9.7 8.02 13.6 9.32 10.2 8.93 7.07 10.2 9.74 9.46 12.6 10.1 9.67 0.36 8.16 11.7 7.6 9.49 9.16 9.96 7.54 9.19 7.71 6.77 10.1 7.79 7.78 5.27 4.3 6.49 4.93 8.08 8.6 4.98 9.07 2.15 10 9.1 8.07 8.63 9.74 7.73 8.86 7.62 7.61 8.14 9.56 9.34 9.67 8.58 4.49 8.14 4.18 6.77 7.77 7.67 9.26 8.83 0.65 6.85 12.4 6.74 1.72 8.76 11.4 8.62 7.75 8.96 8.78 10.1 9.26 7.04 6.89 2.92 9.58 6.93 8.39 9.52 7.29 11.3 9.02 10.2 3.3 4.87 2.32 7.76 7.44 7.49 7.98 3.12 6.79 6.99 6.43 3.85 9.34 9.85 7.66 5.76 10.5 7.5 9.48 5.32 11.5 9.04 5.91 10.5 7.88 6.56 7.77 4.37 7.73 8.89 5.38 8.14 9.27 0.89 9.44 10.6 1.1 5.21 7.86 2.75 7.88 5.15 6.79 8.99 6.39 8.04 8.61 8.51 8.99 11.2 5.13 7.86 9.05 7.77 10.2 6.57 10.3 10.7 5.69 9.37 9.56 6.31 7.47 7.54 7.39 10.7 10.4 8.04 4.2 10.8 11.4 9.49 2.87 7.9 9.94 2.32 7.71 9.89 10.7 11.3 8.15 5.65 3.22 10.7 9.54 9.35 8.05 5.94 8.14 9.97 7.57 1.44 7.96 8.7 4.58 7.66 6.76 6.52 1.44 10.4 4.29 9.58 4.72 3.96 12.2 10.4 2.81 7.85 7.44 5.36 9.02 6.62 8.31 10.2 5.44 11 6.65 7.19 8.74 8.44 8.91 6.91 10.6 8.44 10.2 8.54 11.1 2.92 7.88 11.5 8.29 9.97 7.78 11.1 4.25 6.55 6.54 9.99 10.4 5.4 7.08 3.03 10.9 5.15 2.48 8.78 10.3 7.39 7.77 7.89 2.75 8.16 10.3 10.7 8.48 6.84 9.32 9.88 8.32 9.44 7.08 10.6 8.6 9.74 8.82 7.88 11.9 3.67 3.64 5.93 6.7 11.5 7.27 10 1.86 6.2 2.87 3.17 8.03 10.9 11.8 4.29 7.73 5.45 5.76 7.75 6.07 9.2 7.14 5.3 7.63 7.5 12.1 9.73 9.32 9.43 10 10.6 9.38 9.73 11.2 8.5 5.43 9.19 9.64 11.2 10.3 5.96 11.4 7.06 9.16 7.29 8.52 9.25 6.23 8.6 11.4 4.86 10.3 8.36 9.78 8.68 9.23 8.85 9.19 8.15 5.99 10.6 9.73 9.54 9.09 10.1 11.4 10.5 7.68 7.68 10.6 8.33 8.09 12.7 9.48 8.94 9.45 12.1 7.61 8.85 8.67 9.32 2.87 11.1 11.1 6.99 8.61 2.68 9.93 8.44 11.2 6.61 9.02 9.64 8.17 8.97 9.11 8.28 11.3 9.14 5.82 12.6 10.2 5.3 7.12 11 8.93 9.91 8.12 10.1 9.52 7.81 10.4 11.7 6.5 8.02 6.56 7.45 8.49 7.49 6.67 5.09 7.79 8.9 3.3 10.6 9.69 8.51 8.36 5.71 11.6 4.02 4.41 11.5 10.7 5.18 7.41 5.69 10.5 6.96 10.6 10.6 10.2 6.21 11.1 8.74 10.2 6.08 3.7 11.8 10.7 13.1 9.86 5.13 9.11 10.3 7.41 9.06 8.42 4.68 9.14 7.55 8.24 11.1 9.01 9.88 9.86 9.15 7.5 8.7 5.6 8.73 8 7.71 9.83 4.91 4.49 7.38 9.39 7.53 9.64 8.58 6.89 9.04 10.2 7.72 7.41 9.42 6.48 12.2 10.9 9.43 13 10.6 12.2 8.26 9.74 5.42 7.2 9.17 6.5 10.9 10.5 7.6 8.49 6.98 5.03 11.8 9.94 9.33 9.44 9.22 11 5.99 7.61 8.46 3.28 11.9 9.67 9.82 9.26 10.5 4.04 10.8 15.6 7.56 2.32 4.93 7.32 2.97 9.04 8.85 6.02 12.8 11.8 15.3 1.1 5.65 3.42 6.97 4.94 12.1 11.8 10.4 6.45 3.85 12.9 12.8 9.86 10.2 5.98 4.39 3.3 2.05 12.3 8.24 9.14 8.75 7.1 13.1 9.41 6.07 8.84 8.87 8.22 9.44 5.16 9.49 9.28 9.7 10.2 8.8 9.48 9.9 9.61 9.94 10.4 12.8 3.53 8.06 5.98 9.73 8.77 8.5 10.7 8.39 10.3 9.7 7.23 7.87 10.5 9.3 11.1 10.8 10 9.9 9.7 11.1 10.9 9.51 5.26 0.36 6.76 12.7 12 9.51 4.53 7.65 7.39 8.81 10 5.18 10.2 11.4 11.6 10.9 11.4 8.34 7.34 6.6 9.26 2.87 7.91 10.2 2.4 11.3 10.8 7.37 8.41 6.54 8 3.34 8.14 3.26 10.7 9.43 9.51 6.63 9.46 9.19 7.45 6.46 9.52 4.22 9.02 8.31 10.5 10.4 7.29 9.28 9.76 11.8 11.2 8.35 8.52 11.2 10 8.99 0.98 10.2 9.47 6.3 10.7 9.78 8.97 10.4 7.98 8.66 4.18 8.6 10 0.89 10.7 9.06 7.35 10.1 13.4 9.79 9.77 7.97 12 9.61 6.14 8.26 7.08 9.38 7.64 12.3 7.35 12.2 11.3 11.2 11 11.8 11.6 7.04 11.9 10.1 6.86 10.8 7.09 9.43 9.27 0.36 11 2.24 12.1 11.6 7.74 7.66 8.65 2.87 11.2 9.92 11.4 9.21 3.79 11.8 7.46 10.7 8.44 11.8 10.3 8.62 9.93 11.8 5.35 8.94 7.86 10.6 11.5 5.89 2.62 0.89 9.92 1.59 1.59 1.72 11.5 3.42 10.1 2.81 7.17 9.62 6.13 1.72 7.59 3.3 5.56 2.81 3.34 9.76 5.22 10.4 12.8 11.5 8.86 6.67 5.59 4.99 7.4 9.31 7.27 0.36 8.08 9.51 7.54 6.67 5.14 6.21 6.69 8.49 9.89 8.72 4.74 7.89 9.35 9.43 9.58 10.7 1.28 6.18 2.48 3.76 6.65 1.59 8.01 8.88 8.63 7.64 7.23 9.97 8.69 4.33 7.3 1.44 6.53 1.28 0.36 8.83 6.62 6.15 8.24 6.83 6.16 8.98 9.7 1.72 6.89 8.87 10.6 10.6 9.14 0.36 5.83 8.73 11.1 9.67 2.05 8.74 9.31 9.49 8.23 7.41 6.57 2.4 4.97 11.2 0.65 9.48 8.7 7.66 3.34 8.75 9.64 8.93 3.91 10 9.68 1.95 6.79 10.3 8.12 7.87 9.26 9.41 8.76 6.19 8.2 7.74 10.7 6.64 5.23 5.77 10.7 4.84 6.89 10.6 11.7 9.98 5.07 10.1 9.65 2.32 5.06 7.76 11.4 9.22 9.54 0.36 4.89 7.17 8.1 6.26 4.9 10.2 4.98 9.21 9.56 7.8 7.67 9.14 11.4 7.63 9.63 6.09 1.95 9.68 4.43 10.4 1.44 4.93 1.1 7.27 3.17 11.2 4.18 2.81 6.57 10.7 9.11 7.07 7.7 10.3 8.06 8.72 7.61 5.06 11.6 10.1 8.44 8.11 6.24 4.11 2.05 8.46 2.62 11 11.6 9.68 7.57 6.05 10.5 11.3 10.3 6.85 8.66 4.59 8.35 5.94 1.44 11.7 9.42 11.3 10.6 10.3 8.84 9.16 10.7 10.1 2.87 6.85 7.67 8.67 7.02 12.2 7.82 11 9.6 4.86 8.5 9.15 10.5 7.49 5.78 13.2 5.29 8.23 5.29 5.61 7.4 7.78 9.64 11.1 7.56 9.14 7.88 5.55 9.26 10.3 0 7.78 5.61 3.34 4.87 7.77 5.4 8.83 9.98 9.77 9.26 9.27 10.5 10.1 7.66 9.07 9.15 6.98 8.16 7.68 7.59 8.68 5.48 9.27 9.61 12.2 8.77 9.49 11.4 7.17 10.1 6.9 11.2 7.54 7.7 11.1 10.4 8.48 8.98 7.79 4.94 5.98 7.71 11.4 7.18 9.93 9.93 11.6 7.76 2.97 5.32 9.06 9.31 10.2 5.44 8.71 8.2 8.04 5.18 8.64 4.71 9.15 6.34 8.33 4.31 10.2 6.81 4.31 5.61 6.42 7.3 11.7 10.7 7.81 8.49 6.71 8.07 10.3 10.8 10.7 10.4 11.5 3.88 12.9 7.25 3.12 5.6 7.58 9.13 9.35 4.68 9.17 10.1 10.1 9.46 7.44 6.09 8 9.78 7.79 10.8 8.58 10.2 7.13 12 9.44 9.57 9.18 8.57 7.92 7.72 4.95 7.87 11.6 10.1 5.64 9.39 9.67 9.15 9.22 7.87 9.86 6.3 8.93 7.77 9.22 11.2 9 10.7 8.66 9.24 11.1 6.05 10.9 6.84 9.21 8.79 8.39 9.33 7.3 9.25 9.88 1.1 9.05 10.6 7.54 11.1 7.54 7.65 9.38 10.5 8.87 10.4 9.55 11.5 10.9 9.27 4.41 8.28 6.86 8.93 6.9 6.29 9.07 8.18 9.61 9.58 11.2 4.75 9.4 7.97 10.1 2.05 7.14 11.9 10.2 8.1 9.75 9.47 8.81 2.32 10 6.45 8.45 7.33 9.2 5.16 4.39 7.53 4.49 5.55 9.3 8.91 9.79 11.3 6.57 10.3 5.78 10.6 10.1 10.6 7.91 7.23 8.46 6.55 9.51 6.58 9.68 8.94 3.34 3.5 3.17 5.68 11.3 9.64 11.2 4.99 6.18 5.46 10.8 10.3 8.26 9.8 11.1 4.87 9.12 6.62 10.4 6.46 9.3 7.93 9.61 4.43 9.28 9.29 10.5 4.58 9.81 3.91 9.13 10.4 7.69 9.29 9.11 11 9.14 9.97 8.73 4.56 9.9 9.64 10.8 3.93 7.84 7.92 4.41 9.64 10.7 10.2 5.68 7.6 5.33 5.92 8.85 5.53 3.57 11.4 10.8 7.1 0.89 1.44 8.9 9.01 9.77 7.1 8.34 9.79 11.5 4.75 1.28 6.15 2.24 10.1 9.36 7.68 10.5 10.7 3.57 5.31 2.75 9.4 5.7 2.98 7.45 8.04 11.2 7.35 2.32 6.23 6.45 1.44 5.11 0.36 10.1 6.07 3.03 7.84 11 9.55 7.92 8.88 2.87 11 11.1 8.4 6.08 12.3 7.55 11.7 11.5 5.21 2.55 8.07 9.99 8.92 6.63 7.45 8.53 9.56 3.42 6.57 9.91 3.42 3.7 5.2 9.04 9.78 13.9 4.06 9.04 7.21 7.79 11.7 11.2 8.56 7.99 4.14 5.02 9.78 9.41 9.16 6.3 4.8 6.34 9.53 10.1 7.89 7.19 10.1 11.8 4.25 9.13 5.45 3.57 6.13 9.37 10.2 6.66 8.93 0.36 6.9 9.94 1.59 6.91 5.28 10.1 8.05 8.35 9.97 7.65 8.07 6.55 9.75 7.48 3.7 3.99 8.57 9.39 7.77 7.75 8.21 10.2 9.51 6.77 8.46 9.49 8.97 8.88 5.09 9.5 11.2 8.74 8.39 10 9.93 8.27 10.5 8.49 9.83 10.2 8.97 8.97 7.62 10.4 7.99 9.12 10 3.6 7.55 5.52 9.53 7.22 10.1 10.2 10.4 9.46 7.4 8.99 10.2 6.2 9.27 10.7 9.66 4.9 8.04 9.44 8.62 8.48 8.51 9.54 8.49 6.76 9.93 6.08 5.77 9.15 0 8.55 10.1 8.84 7.74 10.5 10 12.7 7.08 3.82 9.16 9.58 7.58 9.77 7.7 10.1 1.84 7.81 11.1 6.8 8.51 4.75 7.05 7.55 9.62 9.28 10.1 8.73 3.82 11.7 6.35 1.28 5.7 6.99 10.1 9.01 9.25 2.72 0.65 11.2 10.3 9.99 7.23 10.4 5.87 4.86 7.86 1.44 6.85 7.2 8.89 9.27 8.14 8.11 10.8 11.3 7.18 7.17 8.72 9.66 9.88 8.31 9.57 9.58 8.06 11.3 9.52 6.75 4.29 7.77 5.07 5.11 9.31 10.2 10.7 9.53 1.44 8.48 1.59 11.5 11 9.2 9.7 2.62 6.06 4.98 0.36 7.97 9.1 12.9 9.53 8.66 3.66 5.99 3.34 3.22 10.2 4.61 10.2 6.25 8.88 9.98 6.18 8.7 7.87 10 8.35 2.97 10.1 7.95 6.93 11.7 10.7 11.6 11.9 7.99 9.06 9.63 11.4 5.13 7.77 9.29 0.36 6.91 8.82 4.14 8.6 12.4 10.5 9.02 8.29 9.63 8.72 7.32 9.16 4.25 10.6 10.7 10.6 11.4 5.2 12.6 9.49 7.05 8.16 8.98 9.19 10.7 6.28 5.55 9.27 10.1 4.58 4.74 10.5 6.3 6.3 3.57 8.1 6.19 8.52 4.75 9.96 3.14 5.67 11.7 8.73 8.49 7.62 3.99 9.39 8.92 11.3 10.6 10.2 3.6 11.5 10.9 10.6 10.5 9.28 11.7 12.6 10.5 11.9 9.97 10.4 9.09 6.57 6.83 10.8 7.85 11.7 9.95 3.53 4.86 9.98 9.02 7.89 5.46 10.7 6.92 7.34 9.38 6.94 10.1 8.25 9.65 10.5 3.03 4.87 9.87 4.27 8.16 9.34 11.1 13.2 8.49 6.7 6.41 5.61 6.7 3.12 9.24 10.3 9.61 7.39 4.56 8.37 8.64 1.1 9.62 5.64 8.84 5.07 4.97 9.89 9.38 9.72 9.4 10.1 9.58 12.6 11 9.03 9.94 13.5 12.6 9.12 13.5 13 13.3 13.1 12.4 10.8 9.59 6.58 10.4 10.9 8.83 11.5 7.07 10.1 11.2 10.4 11.5 10.2 11.8 8.29 8.93 10.3 8.27 10 9.31 6.62 11.9 6.53 12 9.64 10.8 8.69 9.31 1.95 2.97 12.3 8.05 7.23 8.41 9.87 8.35 10.8 11.7 8.22 9.85 11.2 11.4 8.26 9.54 7.25 11.3 9.38 11 9.72 11.1 6.68 9.37 8.31 4.61 2.05 8.81 6.41 8.23 9.51 9.77 1.59 2.24 9.27 10.4 9.99 13.3 9.99 12 12.4 8.19 11.8 8.02 5.89 8.24 9.97 9.23 11 10.2 7.48 8.86 4.51 11.3 8.01 5.65 2.77 5.45 7.87 6.5 8.07 3.5 10.1 5.34 8.12 9.26 6.18 5.23 8.32 10.1 10.9 9.54 9.32 2.15 4.23 3.17 5.89 9.5 10.2 2.92 11.5 10.3 2.87 9.51 7.24 3.53 5.63 4.58 10.6 1.28 12.7 9.95 8.64 6.77 9.17 5.61 11.4 8.64 6.6 10.5 9.03 6.73 6.09 5.04 10.3 8.05 5.75 10.1 11.2 7.58 6.07 11.8 7.28 9.39 10.1 4.56 5.31 9.16 2.05 9.55 11.8 7.79 7.09 9.28 8.01 7.57 12.4 6.53 10.3 10.7 9.9 4.58 3.85 8.02 11.9 11.8 9.68 10.5 10.1 9.73 10.2 11.5 11.2 11.1 9.32 10.7 8.4 8.56 11.1 11.7 11.3 10.8 10.9 9.71 11.5 1.28 9.78 4.66 12.3 7.77 10.1 9.12 5.29 8.88 10 7.38 5.23 9.38 9.42 4.18 11.4 8.9 7.69 10.5 11.4 10.2 6.72 6.56 4.85 10.3 11.2 11.7 6.93 8.66 8.88 8.89 9.61 13.1 9.67 6.29 11.7 9.75 9.92 2.15 3.3 8.42 13.2 3.6 1.84 9.86 9.09 9.29 8.09 1.1 11.1 8.94 6.13 4.37 10.2 13.5 8.39 4.94 3.34 5.48 1.28 5.67 10.6 6.22 8.48 8.75 10.2 9.12 7.23 3.17 9.47 6.5 7.93 2.97 3.57 6.2 3.38 7.61 7.72 2.75 9.03 10.7 6.96 10.2 7.67 10.1 10.9 6.63 5.64 9.3 10 11.6 9.18 10.2 8.38 8.82 8.82 7.87 7.43 4.41 8.27 9.67 8.81 12.2 7.08 6.84 6.98 9.15 6.49 10.3 11.6 4.86 9.57 10.1 9.3 1.1 9.85 10 8.59 6.04 6.38 7.77 9.76 11.1 9.44 8.52 7.88 9.51 9.04 11.1 7.71 9 4.06 10.6 6.39 4.77 5.02 2.48 8.99 9.91 10.4 1.72 6.31 3.6 7.3 6.16 9.12 10.6 9.73 8.09 9.16 10.7 8.64 3.3 4.29 9.21 5.77 4.01 2.68 6.26 7.22 7.95 6.95 10.2 11.6 9.58 10 7.88 7.39 9.97 10.8 8.76 10.1 7.19 8.48 6.75 10.5 11.3 10.8 11 13.3 8.95 8.4 6.55 10.8 10.9 1.1 9.84 9.64 10.3 9.04 8.2 8.85 7.21 9.68 11.8 8.22 8.19 10.1 9.91 10.2 10.9 9.61 8.35 7.5 10.2 7.61 8.65 3.03 2.02 4.63 3.85 7.47 10.9 7.99 6.66 7.6 6.56 8.25 9.2 9.6 4.41 7.8 5.98 6.56 8.03 3.67 8.87 6.59 10.7 9.71 5.23 7.92 6.82 3.72 4.64 10.9 6.04 10.6 12.4 6.69 9.05 9.44 7.42 6.73 9.63 10.8 7.45 11.9 11.1 6.83 8.94 8.47 10 2.62 9.74 11.6 10.6 9.64 11 7.49 8.17 9.66 9.69 8.9 10.6 8.88 9.57 7.07 10.5 9.26 12.2 9.6 9.74 10.4 10.6 5.6 9.79 4.23 7.76 9.49 10.2 9.64 5.89 1.1 11 8.28 6.37 9.41 2.32 8.79 7.5 7.06 9.98 8.21 6.85 7.43 7.21 9.66 1.59 5.6 4.54 9.61 5.43 5.15 10.5 13 7.37 9.68 11.6 2.55 8.97 10.1 7.25 11.3 9.74 9.16 1.28 10.8 11.9 12.3 9.47 9.43 6.86 4.81 10 7.28 9.86 8.06 0.65 7.62 10.1 7.7 10.3 8.28 10.8 11.3 7.99 5.85 8.68 9.42 9.81 6.42 10.3 7.05 8.66 9.36 13.3 6.13 10.8 8.76 3.34 9.08 12.2 4.8 9.37 9.33 9.48 3.93 10.3 2.48 4.84 5.82 6.5 9.17 8.62 7.6 10.5 10.5 4.16 8.91 6.44 9.07 7.44 6.25 8.55 6.63 5.08 1.97 8.07 10.3 8.72 7.61 1.84 10.6 6.28 11.3 13.7 7.3 8.97 11.8 9.94 8.78 2.75 11.1 1.44 6.05 2.81 6.61 11.2 9.7 8.07 4.85 6.71 1.44 10.1 6.71 9.55 10.3 9.08 8.21 6.96 2.97 10.9 3.67 9.52 8.28 11.7 7.56 6.28 8.89 7.52 8.61 8.95 7.07 11.3 9.57 6.9 5.38 9.74 3.12 4.81 6.47 6.92 3.42 9.53 5.85 8.72 9.63 3.79 5.89 5.54 10 10.5 4.89 8.8 6.9 7.39 8.86 9.99 10.8 8.21 8.74 8.13 10.1 9.59 6.37 6.09 7.54 9.32 8.06 10.3 6.64 10.5 5.62 11.1 8.23 9.66 4.9 9.39 10.1 11.4 8.91 12.1 10.3 10.5 11.9 9.41 7.93 4.37 5.84 6.94 7.57 7.16 6.65 2.81 2.92 2.24 8.46 7.63 1.1 5.92 6.52 12.4 10.8 9.05 11.9 10.7 9.35 10.1 7.53 6.62 8.48 7.41 9.04 8.57 9.26 7.14 10.1 10.5 8.23 8.32 10.8 8.32 3.42 6.74 7.56 12.3 8.08 8.39 7.11 0 10.8 6.51 7.07 7.22 9.27 7.77 10.2 8.1 9.65 8.72 9.08 10.6 6.12 8.88 9.07 8.55 9.64 10.2 10.8 7.71 9.4 9.13 9.03 7.66 11.4 10.2 10.7 9.82 7.89 2.55 9.18 10.5 9.44 8.98 9.63 10.3 9.17 11.6 11.3 9.93 4.86 10.6 14.2 6.49 6.22 10.5 9.15 6.02 10.5 7.72 10.4 11 8.37 4.09 9.11 8.68 6.57 7.76 9.58 5.66 12.1 10.7 6.69 4.97 10.1 8.4 9.97 4.2 7.64 1.84 2.55 8.56 8.7 8.68 7.69 3.34 5.7 4.91 9.9 11.8 5.11 8.39 9.78 11.3 11.8 10.3 7.49 5.03 7.53 10.2 7.78 10.5 10.6 10.8 8.26 10.6 11.9 8.02 12.3 9.26 10.4 11 8.15 5.45 10.4 8.44 9.14 8.47 2.24 10.8 7.24 9.2 10.2 7.03 9.7 10.6 9.3 1.28 12.4 11.1 10.5 6.44 1.84 10.6 14.6 0.65 9.69 6.71 10.8 7.31 10 1.28 7.38 4.2 6.01 7.1 6.04 7.69 10.4 12.4 9.47 3.6 12.2 8.09 8.24 8.22 3.03 7.83 11.1 2.92 5.95 0.38 7.81 6.81 8.06 12.4 7.31 10.5 8.99 9.14 10.5 12 10.8 7 7.38 10.6 4.89 9.89 3.93 5.13 3.38 4.89 2.15 10.9 7.54 10.2 5.75 8.54 8.94 10.2 0.65 7.38 5.54 8.42 8.65 3.85 10.8 11.4 7.23 9.65 7.79 4.45 8.67 11 6.24 8.54 4.97 7.74 7.68 8.75 8.33 10.7 8.97 2.15 10.3 6.73 2.97 10.4 9.76 11.6 9.93 9.37 11 9.38 7.39 7.15 4.84 9.07 3.82 8.83 10.1 2.48 11.8 8.84 5.79 6.33 10 8.25 11.9 11.5 6.93 10.1 9.58 10.1 8.68 3.5 5.45 8.73 0.65 10.4 3.17 9.03 9.63 7.62 6.6 10.8 13.9 11.6 3.73 12.2 5.48 4.35 9.51 8.31 8.7 11.2 7.87 7.63 6.51 1.95 8.97 8.8 10.4 10.6 9.6 5.56 11 8.39 10.7 5.56 8.29 10.9 9.02 8.19 9.52 7.69 7.85 7.04 6.76 7.82 10.1 7 6.68 10.8 7.43 12.1 9.82 4.2 9.99 8.07 1.1 8.5 12.4 11.9 9.18 8.93 5.44 6.82 7.47 9.25 10.1 10.5 4.68 4.71 10.7 11.2 7.18 9.63 5.83 10.4 8.91 9.4 13.8 11.2 9.37 10.8 11.6 9.77 10.4 8.09 12.4 6.94 10.4 9.45 6.9 9.04 10.6 11.2 6.22 8.18 9.79 3.12 10.4 7.68 13.3 11.7 10.5 10.3 9.47 8.31 9.11 11.8 9.32 9.52 11.1 7.7 8.17 10.5 9.73 11.4 5.13 10.2 6.61 10.8 9.55 7.05 8.6 11.1 9.88 9.72 10.6 8.14 9.31 12.4 8.74 6.18 9.35 12.1 11.7 1.59 7.85 12.7 6.48 4.61 14.1 9.5 12.7 10.9 9.15 7.26 7.77 11.5 7.41 10.6 11.3 12 7.39 12.3 8.3 6.75 10.6 6.07 8.53 1.28 8.25 5.83 10.3 12.1 9.73 12.5 8.62 9.41 7.98 8.95 10.7 7.91 12.1 12.2 8.24 8.66 9.97 10.3 9.65 6.35 7.51 9.43 9.2 9.41 9.83 8.89 8.79 11.3 10.7 8.88 8.9 12.5 11.9 8.34 8.6 11.3 9.12 11.3 6.21 12.5 12.7 10.8 6.64 10.4 9.01 8.09 9.73 9.53 8.18 10.3 10.2 10.8 9.46 12.4 9.97 10 10.2 11.9 5.73 10.7 11.9 4.41 10.7 9.22 8.44 9.88 10.6 10.9 9.88 11.5 9.79 6.91 6.73 10.4 11.1 10.5 12.7 10.1 1.59 8.9 0.65 10.1 7.8 8.89 10.2 10.3 6.35 10.7 5.01 9.61 7.43 13.2 4.21 6.39 9.93 9.98 10.4 9.78 8.94 6.11 10.3 9.36 6.95 11.2 5.43 9.36 11.6 6.73 8.87 10.9 5.12 12.9 8.9 9.76 6.32 10.5 8.18 11.6 8.76 13 7.66 6.38 8.95 6.43 9.54 11.1 8.49 11.8 6.87 11.8 9.05 7.22 9.48 11.3 9.22 8.52 11 7.19 9.39 10.8 11.7 12.1 11.9 11.6 9.19 10.3 4.18 9.8 9.92 12.4 5.39 11.5 10.5 7.54 8.63 11.3 9.38 11.3 11.4 11.4 12.4 9.72 8.05 10.7 11.1 6.27 10.2 13 12.8 10.6 8.4 10.2 0 12 9.47 9.38 11 9.44 10.4 8.34 10.7 10.9 10.3 11.7 10.7 9.05 8.72 8.74 10.1 7.21 8.64 7.92 10.7 7.72 8.89 3.46 9.54 3.99 7.44 9.56 7.27 10.3 2.97 9.64 10.7 7.33 8.44 8.47 10.8 5.74 10 9.42 9.68 8.8 7.79 7.15 4.43 10.2 8.06 9.06 8.25 10.5 11.9 5.84 6.76 8.59 10.4 10.8 9.55 10.1 9.29 10.2 9.46 9.89 11.1 11.9 10.3 10.3 10.7 10.2 8.04 10.4 11.4 9.84 10.3 7.92 11.8 10.5 11 4.11 10.5 9.48 8.3 9.08 9.87 11.8 3.08 10.3 7.19 9.63 9.15 10.7 10.3 10.2 8.23 9.77 10.9 10 10.9 7.25 7.1 7.83 10.5 7.29 8.71 10.5 12.7 10.7 6.31 11.7 9.37 9.77 10.4 10.6 9.18 11.5 8.7 11.6 8.47 10.6 9.48 3.5 7.43 7.92 8.54 6.21 11.4 12 10.6 6.42 8.67 10.7 6.56 7.43 11.9 9.04 6.86 9.68 3.42 6.46 3.46 5.76 9.27 10.2 9.4 10.8 9.79 4.94 4.25 11.8 10.4 11.3 11.7 2.11 11 8.84 10 5.39 10.4 11.8 7.84 9.07 9.46 9.5 12.4 9.91 10.9 13.5 10.5 10.9 0.89 12.1 9.52 9.27
-TCGA-4V-A9QL-01 8.15 12.7 10.6 8.01 6.69 8.78 1.94 3.43 1.38 1.53 3.09 8.72 6.02 3.04 7.17 9.43 10 11.2 5.61 9.21 11.5 11.4 8.78 3.55 9.62 8.21 2.75 10.1 3.16 6.85 7 6.13 2.16 0.4 4.17 0 1.82 7.73 2.59 5.65 6.1 4.94 5.67 0.7 3.3 4.95 0.4 5.36 11.6 8.52 4.95 8.04 8.11 9.66 5.97 1.18 7.77 1.36 6.15 5.85 8.22 7.59 7.71 4.78 2.74 3.3 7.05 8.47 10.3 4.17 5.76 4.18 1.68 6.08 7.71 5.44 6.04 5.21 3.2 1.36 5.38 4.73 2.21 5.48 7 0.4 5.61 0.7 5.77 4.17 10.2 4.6 7.66 8.31 5.32 4.22 0 2.16 6 0 1.82 4.55 0.4 6.53 3.79 3.25 6.92 9.54 10.2 5.53 0 0.4 7.58 3.92 6.57 1.36 1.78 3.55 3.81 5.83 6.26 6.63 0.71 4.36 0 7.52 3.77 3.34 0.96 5.72 2.99 4.66 4.24 6.42 2.8 1.82 4.95 2.74 2.79 8.66 8.05 11 3.04 3.47 5.75 10.7 0.7 10.7 1.18 1.18 5.24 0.4 6.17 8.92 11.6 7.69 7.07 0.77 9.44 6.36 7.66 4.24 4.13 7.8 8.3 8.33 7.56 7.05 9.33 3.95 10.9 9.26 2.44 4.6 6.12 3.98 6.98 3.59 6.51 6.17 5.36 8.16 5.04 5.17 5.11 2.93 5.91 1.68 9.54 4.98 8.82 8.95 3.3 4.95 4.98 2.24 5.02 10 8.78 8.66 5.05 8.54 8.47 11 10.2 7.3 6.72 9.63 11 10.9 7.24 8.89 11 11.3 9.82 10.3 9.21 9.86 4.17 10.3 9.26 9.63 11.4 10.6 8.61 8.64 3.7 9.76 9.58 12.4 8.44 6.94 10.7 11.2 9.5 6.76 10.8 2.35 9.87 5.82 9.1 8.26 11.9 12.2 12.2 11.8 11.4 11.7 4.36 12.4 9.08 3.25 6.35 11.4 9.41 3.39 10.2 12.4 1.68 12.3 2.16 9.54 8.77 10.3 6.95 10.2 7.36 10.9 11.7 11.5 7.75 9.78 9.79 9.73 11.2 6.79 1.94 12.2 11.2 11.3 12.6 10.1 10.8 8.29 11.3 9.43 9.84 8.83 10.8 11.1 7.26 8.61 10.5 7.09 10.3 10.1 4.6 13.7 8.28 7.55 0 11.4 11.4 9.39 10.1 12.4 0.4 7.85 8.16 8.52 13.3 9.51 4.68 9.13 7.32 11.6 9.32 6.9 8.74 8.29 11.1 11.7 9.21 9.49 11.4 11.3 11.5 9.18 9.22 9.13 9.22 8.01 10.6 7.98 9.75 9.05 8.6 8.27 7.45 8 11.2 9.32 9.78 9.12 8.86 13.8 11.3 9.19 12.6 11.5 10.1 6.16 9.83 2.26 4.92 8.84 7.98 10.5 2.87 6.43 10.1 11.2 11.4 10.7 8.74 7.03 7.72 1.82 8.22 5.32 10.3 11.8 9.51 11 11.1 6.95 9.08 10.5 3.25 8.72 8.75 9.88 7.58 9.51 11.1 10.8 5.22 9.26 7.83 9.45 8.58 6.45 10.4 8.03 6.81 11.4 11.2 3.66 9.5 11.8 9.43 9.66 11.5 9.73 8.2 11.2 8.77 12.1 10.1 9.78 16.9 9.91 9.78 9.03 9.08 12.3 9.4 9.58 9.72 6.92 10 7.43 5.88 11.7 7.7 10.5 9.84 11.5 3.35 10.2 9.44 12.6 5.37 9.61 7.44 7.05 9.44 7.46 10.3 9.96 11.2 11.4 10.3 6.14 11.1 3.95 10.4 10.9 0 9.48 4.12 8.49 3.66 11.7 9.5 8.36 8.07 10.6 1.82 3.59 6.66 10.3 11.2 4.29 9.87 10.5 3.8 4.34 5.84 8.32 7.78 3.25 9.87 9 11.7 10 9.29 10 9.18 2.44 15.1 11 1.53 9.26 7.58 6.71 13.6 8.94 7.73 6.41 6.38 9.41 9.76 8.54 13 9.04 7.48 7.7 8.14 11.7 13.3 15.5 9.17 8.67 11 9.4 7.28 8.81 8.76 10.6 4.36 11.9 3.98 13.2 8.72 11.1 10.1 7.21 4.89 10.6 6.68 11.6 11.5 11.8 10.3 10.7 9.08 9.53 10.6 11.6 9.75 11.1 9.21 9.38 9.35 11.6 8.41 10.3 9.83 10.4 11.1 11 9.2 9.58 9.98 0.4 10.5 7.24 10.4 10.7 9.78 10.6 8.58 12.4 10.4 11.7 8.94 8.76 9.83 8.45 9.46 9.03 10.8 4.49 10.1 5.9 9.83 9.35 10.9 11.3 7.71 11 10.4 9.17 8.31 12.4 11.6 9.92 9 0.4 12.4 10.1 11.3 10.2 11.2 11.7 12.5 11.6 7.55 8.83 10.3 5.67 6.11 10.5 8.03 7.03 7.01 10.6 11.3 9.27 7.8 9.51 10.3 9.68 1.53 9.73 10.8 11 8.59 13.4 10 10.8 11.2 12.2 9.84 10.7 11.6 10.2 1.82 10.8 9.79 9.31 9.91 8.31 5.38 8.27 10.1 9.8 11.4 13.1 10.6 6.81 10.3 10.2 11.8 4.01 11.4 8.82 11.1 10.4 9.42 8.66 10 8.81 6.77 6.87 9.61 0.96 4.24 8.69 9.96 4.34 11 9.25 10.2 6.77 12.3 11.4 12.8 12.3 11.6 12.2 7.76 10.3 7.99 6.34 11 10.2 5.6 9.19 9.02 11.7 12 9.91 9.45 12.9 1.94 8.06 11.2 8.29 9.59 9.36 5.4 9.82 11.1 10.8 12.4 9 7.25 8.87 7.29 9.96 10.8 9.63 11.7 9.49 11.8 8.2 7.82 8.02 5.79 9.04 10.7 8.97 13 13.5 9 10.4 6.55 12.3 4.04 7.87 7.44 10.3 2.86 8.12 9.76 9.37 2.87 9.07 10.3 5.88 8.67 11.4 13.1 11.2 9.81 12.4 10.3 10.8 8.49 2.05 7.61 11.1 5.29 8.01 7.68 2.93 11.2 8.52 11.1 4.34 3.15 6.45 8.57 8.75 9.52 0.4 6.96 9.8 7.75 1.68 5.09 12 12 3.25 6.72 9.18 4.92 8.86 10.3 8.91 7.77 9.43 14.3 7.19 11.3 11.8 10.7 12.1 12.8 8.62 11.3 8.87 8.19 7.76 11.3 5.43 3.36 2.87 2.02 9.43 7.27 11.2 1.68 7.04 7.6 2.93 3.66 11.6 10.4 9.54 4.83 11.8 10.3 0.4 10.4 9.53 9.9 10.6 9.83 10.7 10.7 10.6 10.7 8.09 9.61 11.4 9.35 6.83 9.89 9.13 8.33 8.16 10.5 9.19 9.88 7.12 4.29 8.02 8.48 6.79 7.28 4.6 14.1 7.88 9.48 11.6 9.3 9.44 10.5 10.8 5.45 9.52 9.23 3.77 8.14 8.08 8.79 4.31 9.77 8.26 7.87 0.96 10.2 4.45 11.2 9.58 5.49 11.7 9.58 8.03 5.73 11.5 11.1 5.23 6.28 4.91 5.96 10.1 9.41 10.1 11.7 10.8 9.84 5.12 7.75 4.31 9.75 0 4.4 8.49 8.93 5.12 2.93 10.8 7.52 8.91 8.55 5.52 0 10.1 9.85 11.2 9.62 4.22 10.5 10.5 5.98 11.9 7.87 10.2 10.9 10.7 9.69 5.18 7.97 8.69 11.4 9.63 12.1 0 11.6 10.3 12 11.1 12.2 7.19 8.06 10.8 10.6 10.1 10.2 12.1 1.36 11 3.2 10.9 10.6 6.95 7.77 9.57 12 11.8 11.2 8.88 10.2 12.8 9.36 10.8 11.2 10.6 7.9 10.6 12.6 11.6 11.5 12.4 13.1 9.32 11.9 8.94 8.05 8.76 10.1 10.7 12.3 12.2 9.24 9.97 10.6 8.33 9.06 11.4 9 10.5 11.8 5.97 11.3 10.3 11.2 10.8 7.09 0.7 13 6.73 10.2 7.57 9.36 9.95 3.77 9.96 7.01 9.72 2.69 6.94 9.16 9.33 5.45 11.4 5.43 9.77 9.34 10.3 8.29 9.22 8.53 10.6 8.61 3.3 5.96 1.36 6.14 10.1 9.59 11.3 11.3 7.67 6.25 9.74 9.18 10.7 7.63 9.91 0 8.55 12 10.1 10.9 10.6 11.3 8.68 10.2 8.89 10.9 10.2 7.2 2.87 9.28 10.3 9.9 9.72 8.96 7.61 13.3 10.6 10.2 9.54 5.79 5.23 11.6 11.6 12.8 8.09 6.71 11 10.4 8.54 8.14 9.31 4.12 6.37 8.83 10.3 7.25 12.5 5.46 8.73 9.01 8.78 6.32 8.88 8.15 9.83 10.9 7.74 12 10.3 9.28 10.7 9.27 5.9 10.1 6.94 8.45 8.45 10.2 0.7 9.96 4.24 10.2 8.99 8.74 2.87 9.85 7.11 5.44 12.5 10.4 10.1 5.18 8.47 7.22 8.06 1.68 3.2 13.4 10.2 4.81 6.82 4.42 9.05 9.13 9.05 9.14 4.01 10.3 10.2 6.71 9.07 10.5 9.55 11.8 12.2 7.41 11 12.6 10.9 6.37 2.67 10.8 8.99 8 8.47 4.36 12.5 6.44 8.73 10.2 7.45 10 11.1 12.7 1.18 9.13 10.6 7.67 8.78 9.93 8.83 11.5 9.33 9.6 9.09 8.65 7.35 8.61 10.1 6.56 10.3 9.17 7.97 7.47 8.65 4.38 8.71 6.43 10.3 5.56 14 7.76 2.05 8.6 6.21 9.8 10.8 7.51 9.14 9.46 9.67 6.18 7.08 11.4 7.39 6.82 6.81 10.3 9.67 5.13 7.55 2.05 7.43 8.2 5.72 10.3 7.91 10.1 0.4 8.12 10.6 11.3 8.94 9.25 10.8 6.71 6.52 10.1 3.8 11.4 6.18 10.6 7.33 8.47 8.72 10.4 9.35 9.76 8.76 0.4 5.21 6.95 11.7 11.8 8.08 8.98 5.56 10.1 10.2 8.95 9.01 4.89 2.99 8.55 0.4 10.9 9.84 8.64 6.68 9.61 8.94 9.6 10.7 10.7 9.46 9.03 8.1 9.08 9.02 9.65 7.95 9.95 6.15 9.72 6.56 12.3 9.98 9.26 6.92 12.5 3.47 12.3 8.49 7.07 10.6 7.35 1.94 10.2 8.89 10.5 9.5 10.1 9.58 10.9 6.21 12.4 11.8 11.6 9.1 7.84 9.57 6.64 4.36 11 10.1 0.96 12 9.93 11.7 9.39 12.1 10.9 13.1 12.4 7.37 9.35 9.01 2.05 10.7 10.2 8.7 11.2 9.57 11 7.96 8.58 0.96 11.2 8.32 6.45 9.03 9.63 5.53 9.2 7.46 2.84 10 8.53 11.6 5.43 8.83 6.89 11.3 5.64 9.22 3.66 8.03 9.18 2.35 3.63 10.5 6.81 0.7 3.34 7.59 7.66 2.26 4.04 9.03 6.39 6.64 1.18 2.35 6.38 4.97 8.3 8.12 8.42 8.94 8.28 1.68 8.15 6.41 1.68 11 4.31 9.41 10.4 8.37 4.2 10 8.18 7.52 8.83 6.7 9.58 3.34 8.51 9.27 8.7 8.32 7.1 3.47 11.3 11.9 2.44 8.54 8.75 1.53 7.95 9.13 11 2.8 9.23 9.36 10.6 7.26 8.48 9.33 4.73 6.9 6.96 7.55 2.87 9.04 11.7 10.2 9.74 8.94 10.9 9.77 9.74 2.52 9.66 8.98 9.54 5.65 3.66 9.45 11.1 9.07 8.32 2.74 6.29 7.33 9.76 8.15 10.4 8.46 4.99 8.57 9.04 6.92 10.1 13.8 6.67 2.59 3.98 9.02 8.77 8.05 7.13 10.4 9.14 9.74 11 6.8 8.55 6.61 6.81 5.96 2.16 2.52 6.5 5.6 9.46 9.26 9.39 6.16 8.95 7.64 4.12 5.08 10 7.89 1.18 6.79 10.9 5.87 7.99 9.82 2.44 6.14 9.23 4.57 9.56 8.85 6.06 9.71 7.13 11.5 8.38 12.2 7.73 9.93 12.1 7.67 9.63 1.36 8.42 9.01 9.62 8.15 6.25 8.38 1.36 9.96 6.91 8.08 2.05 8.9 2.67 9.89 7.3 5.3 7.1 3.47 0.73 10.1 0.4 3.1 8.99 8.83 8.39 10.1 10.2 3.39 5.34 7.8 7.29 10.8 10.3 3.2 9.38 6.82 2.74 2.67 10.5 8.46 11.9 9.4 7.23 10.6 8.35 2.16 7.99 5.18 2.93 7.61 9.06 8.36 2.16 10.6 7.06 6.15 8.38 13.5 10.2 10.9 1.18 2.87 2.67 8.9 9.19 5.99 5.93 12.8 5.84 6.77 8.33 7.35 7.52 10.7 7.36 9.28 0 7.46 3.55 8.64 2.74 9.44 9.91 7.74 6.43 9.06 11.4 6 5.75 3.3 7.9 4.76 9.74 7.86 9.31 6.16 8.79 6.69 4.4 8.28 9.16 13.2 12.5 7.6 3.77 4.62 7.04 8.02 0.7 11.3 11.7 8.71 6.96 10.2 4.17 7.84 10.4 11.2 11.1 10.5 10.1 5.98 4.94 2.16 7.33 9.84 8.09 3.95 9.86 7.65 9.83 11 2.35 6.32 11.3 3.66 3.43 8.33 12.4 11.6 10.5 9.27 5.59 6.29 12.6 6.61 8.41 9.88 3.04 4.47 6.44 9.6 9.93 9.07 10.7 2.44 2.26 1.82 7.83 1.36 4.47 3.8 7.64 6.5 9.3 8.85 9.38 8.09 10.2 8.65 5.43 8.15 8.46 8.72 3.04 9.43 9.6 6.19 10.8 6.38 7.87 8.29 2.74 11 6.36 9.22 1.94 8.64 5.48 8.32 8.62 3.63 9.01 8.18 7.16 5.77 7.2 9.41 3.92 3.3 8.97 6.2 4.22 8.52 9.61 1.36 6.47 4.6 11.4 0.7 7.67 7.97 7.54 3.95 5.78 11.1 7.41 5.12 5.39 9.8 10.4 2.87 3.39 9.87 9.8 7.57 10.9 9.06 7.85 9.14 9.1 8.33 11.7 10.2 4.24 2.16 9.1 9.48 6.71 5.35 2.05 8.6 9.65 9.02 4.71 3.92 3.63 5.84 0 7.58 10.2 9.03 11.3 7.86 0.7 7.58 1.94 10.4 10.4 7.43 6.87 9.65 8.58 6.33 13.7 9.11 8.83 2.7 7.92 1.53 8.61 9.62 4.4 7.37 2.74 7.16 11.5 8.76 10.5 9.81 4.2 6.62 4.91 7.56 5.82 8.87 6.79 8.34 8.85 3.8 10.7 5.65 2.87 10.1 2.74 2.67 9.37 7.1 6.69 6.78 9.42 10.8 8.32 3.34 11.5 10.9 10.7 11.7 3.2 6.92 7.59 6.63 8.55 6.77 4.68 8.46 7.22 11.6 8.87 5.97 11.4 6.02 4.01 8.15 10.5 8.78 11.6 9.07 8.32 10.3 3.04 2.26 7.01 0.96 0.7 4.31 8.35 2.59 7.61 0 1.82 8.06 8.44 2.35 9.16 3.55 3.43 10.8 9.46 5.61 7.38 7.84 2.48 4.24 8.94 3.25 5.34 0.4 9.45 12.9 7.8 8.03 2.59 12.4 10.4 6.88 0 6.88 3.73 3.86 11.5 9.65 7.85 10 11.3 4.42 9.1 12.2 0 4.89 0.4 7.52 10.2 9.52 9.89 2.67 9.61 7.3 8.76 8.35 12.9 7.45 8.28 3.34 5.43 2.44 2.44 4.62 5.83 10 8.89 1.68 2.44 4.51 5.14 11.8 9.3 10.5 9.87 8.94 8.14 6.31 9.45 15 9.42 15.5 9.64 5.37 10.8 8.49 8.16 8.07 7.52 4.36 4.69 8.72 9.5 12 7.54 7.17 9.37 9.73 8.12 7.77 8.88 4.34 7.77 7.91 5.94 9.95 0.96 6.38 8.16 11.4 8.18 4.83 6.29 6.86 4.15 10.7 6.51 5.86 6.02 7.57 6.67 8.74 8.41 2.05 9.03 6.2 5.94 8.31 9.05 5.83 10.5 10 5.01 5.53 12.8 2.44 8.36 5.53 9.29 6.41 9.48 3.1 5.81 1.36 0.96 7.89 3.83 6.38 9.22 2.44 11.5 11.5 7.18 5.45 8.33 11 1.53 7.55 8.5 8.64 11.3 10 8.86 3.8 8.32 8.28 1.82 9.26 1.68 1.82 8.34 8.9 7.9 6.11 7.66 10 0.4 0 7.13 9.76 7.87 7.06 2.99 6.72 4.47 6.65 8.49 8.58 13.7 8.2 7.95 7.35 8.15 10.8 6.56 8.4 3.04 6.33 7.19 1.82 7.1 6.32 0.7 9.82 3.55 10.8 9.8 8.54 11.3 8.85 2.8 1.18 8.64 5.81 11.9 7.85 8 8.21 10.6 7.75 8.47 5.8 7.14 8.31 5.34 8.97 7.71 9.25 11.2 9.68 9.21 7.35 9.3 9.09 7.31 11 6.27 10.8 6.51 10.2 12.2 11.9 7.86 9.39 4.36 6.71 8.09 6.99 0.96 9.46 5.52 9.79 2.87 9.83 1.92 1.82 6.41 1.94 6.82 8.38 1.53 9.96 9.41 1.36 12.7 3.77 1.18 6.75 6.1 9.49 9.57 6.65 4.59 7.13 6.88 8.25 6.32 4.17 7.02 11.6 8.49 9.69 9.01 7.32 8.53 3.39 7.8 7.53 9.37 1.68 2.8 10.6 5.06 5.94 10.2 0.7 3.77 4.68 3.86 4.8 12.1 7.34 1.53 8.27 9.18 8.28 3.63 2.44 9.9 6.76 6.43 6.62 11.1 9.81 0.96 11.2 10.5 8.66 0.4 7.36 6.7 4.73 4.34 3.66 8.74 7.82 11.8 11.1 8.28 7.04 0.4 8.29 9.38 6.78 11.1 11.7 6.69 7.21 3.64 10.1 8.32 9.51 6.99 10.9 11 0 6.04 8.31 11.1 3.47 2.74 8.06 9.2 7.14 0.7 8.13 7.66 2.67 0.4 9.5 4.58 4.17 5.93 9.1 7.92 8.23 6.58 5.69 7.82 4.6 6.17 11.2 9.29 9.66 3.89 1.18 9.43 10.3 6.98 10 10.4 9.71 7 7.37 9.67 10.5 5.91 8.97 1.53 9.68 1.53 9.21 5.32 7.45 11.5 3.15 0.96 11.6 10.3 6.6 1.82 2.26 2.87 2.26 5.7 1.82 5.25 9.63 1.68 8.23 10.2 8.16 11.3 8.51 10.4 10.7 7.04 6.1 9.86 10.9 6.99 10.1 9.4 11 3.83 6.46 8.18 5.81 6.67 7.8 8.89 6.55 8.73 10.2 6.93 9.04 0.7 3.55 9.53 7.09 7.33 8.84 7.16 7.38 8.54 3.55 2.74 8.1 7.85 4.71 5.36 11.2 8.32 8.53 8.52 4.75 5.08 2.8 7.62 4.01 11.8 2.87 0.4 6.23 5.51 4.83 10.7 5.31 8.34 8.19 12 8.27 8.54 12 2.87 0.96 4.88 12.3 1.53 7.86 11.3 6.03 5.38 7.8 5.77 11.1 3.63 8.86 8.18 8.14 8.99 9.91 10.1 7.9 4.58 7.23 2.35 7.42 7.97 1.18 9.59 2.44 2.05 12.2 8.34 4.92 9.5 1.68 4.27 9.68 8.84 10.8 3.3 7.32 3.47 1.53 0 9.67 0 9.42 8.12 5.12 3.73 2.05 10.5 8.3 8.83 6.91 8.66 4.24 7.79 3.3 10.1 9.64 8.39 1.94 6.12 0 4.53 9.06 3.77 0.96 9.34 1.53 1.53 8.11 1.82 9.25 0.4 9.53 6.61 9.18 8.76 6.72 9.1 6.45 8.61 8.79 6.32 14.5 4.31 11.3 6.41 8.68 9.07 8.54 8.67 1.36 0 2.05 2.44 4.73 7.93 8.92 7.14 12.7 7.94 7.37 8.53 4.04 7.92 4.92 7.21 6.41 8.02 4.78 9.64 10.2 10.2 2.05 9.59 8.55 7.3 9.07 8.68 6.24 6.41 0.96 9.54 8 9.91 6.79 5.3 8.61 6.36 6.05 8.47 6.83 6.53 8.02 4.58 7.29 5.09 5.23 7.92 6.36 2.93 7.9 6.51 7.26 10.1 6.45 2.59 6.59 7.41 4.99 2.99 6.48 8.47 5.23 5.76 5.99 9.51 6.05 8.93 9.84 4.76 7.2 7.94 6.16 0.41 12.3 1.18 1.68 6.49 8.85 9.91 4.81 2.44 8.81 6.67 7.79 9.5 2.26 12.2 9.19 0.51 10.6 4.66 4.6 5.93 7.14 1.68 3.51 3.98 5.99 8.23 8.17 3.51 0.4 6.38 7.68 4.55 5.09 12.5 12.4 5.99 9.66 5.16 7.77 12.8 10.3 10.5 1.68 5.9 11.7 0 4.51 9.93 0.96 4.09 3.89 4.55 5.91 4.38 9.21 4.78 5.52 8.36 9.39 5.66 7.26 9.43 1.24 8.84 6.72 6.49 8.42 5.98 8.95 4.55 9.12 7.32 9.17 5.29 5.48 5.27 10.2 8.84 8.71 4.58 8.04 6.45 6.42 6.78 9.01 6.43 12.5 8.97 13.5 7.51 4.34 0 3.83 9.52 9.58 7.47 4.75 3.2 4.69 8.86 8.43 7.81 10.7 5.4 8.34 8.32 2.26 3.95 3.13 6.78 5.68 6.72 7.95 7.51 11.3 0 7.26 1.82 11.1 7.95 7.6 8.51 0.96 6.79 8.42 9.3 10.2 6.92 3.63 4.12 0.4 6.27 0.96 7.93 5.35 9.41 10.8 7.74 6.9 7.16 9.94 8.17 9.86 9.53 1.36 3.66 10.2 7.94 2.05 10.1 7.64 8.27 4.12 11.7 3.04 9.02 8.52 11.6 7.25 9.58 9.07 7.58 4.94 3.51 8.4 7.09 1.18 7.18 2.16 8.05 4.24 8.41 6.24 4.75 9.32 8.15 1.53 5.17 7.61 8.05 4.4 6.46 10.8 7.33 6.75 8.96 10.1 7.28 7.6 10.1 6.72 7.02 11.3 11 7.52 10.4 9.78 7.78 0.4 3.2 5.63 11.3 6.01 5.74 5.55 6.64 3.3 10.2 5.62 10.3 8.14 7.57 7.33 7.24 8.33 1.36 3.66 2.74 4.45 9.24 13 3.89 0.4 7.75 4.81 9.52 9.23 9.81 0 9.39 11.3 7.44 2.67 8.91 0.7 8.2 6.42 9.06 9.08 11.7 0 2.05 5.55 8.64 5.77 8.28 10.5 1.94 4.2 12.1 5.28 4.94 9.04 5.98 0 8.53 1.36 7.94 8.7 9.27 8.41 7.06 3.7 2.52 7.93 5.37 8.88 9.06 12.1 1.82 1.53 9.6 3.2 4.78 2.78 9.07 10.2 3.51 10.1 2.59 3.04 4.81 9.15 5.9 6.14 3.95 6.08 1.68 5.34 6.12 7.49 2.59 10.3 4.38 8.48 3.7 5.25 4.53 1.36 3.89 7.81 5.54 9.53 5.04 7.39 8.12 4.69 6.49 5.82 2.05 3.2 5.17 4.07 4.64 5.3 8.97 5.23 9.67 6.94 9.19 5.25 8.56 4.27 0 12.1 5.18 2.8 9.49 1.36 4.45 11.8 11.5 0 10.2 3.3 7.61 0.7 0 11.3 5.36 4.97 5.62 8.24 8.3 0 3.86 11.2 8.24 11.6 7.94 6.25 2.16 2.93 6.82 7.24 9.38 11.6 11.6 4.97 8.53 5.05 9.16 10.3 5.04 4.98 11.1 9.98 4.15 7.11 5.76 3.51 10.7 0 5.63 11.1 0 5.29 9.61 2.35 4.17 7.19 2.35 8.28 11.8 10.1 2.74 10.6 8.28 3.43 7.37 4.57 11.4 4.83 3.1 4.53 0.5 10.9 2.44 6.85 5.81 6.97 11.3 11.2 8.74 7 6.63 6.93 8.44 7.03 7.66 6.51 9.97 5.93 0.96 12 9.53 6.43 8.51 6.93 7.79 4.57 6.56 6.37 5.49 8.55 8.68 6.58 5.79 8.35 10.8 5.01 7.35 8.05 2.22 10.2 0.96 10.8 4.27 10.7 6.57 7.47 3.63 6.36 6.53 2.16 8.97 6.82 9.08 8.84 12.2 10.3 1.36 10.5 6.71 13 1.94 10.2 2.59 2.16 2.16 7.03 3.47 5.83 3.36 2.05 5.17 3.04 9.21 6.33 9.56 13.1 12.1 5.9 4.43 7.75 4.97 9.66 6.29 11.3 7.76 12.1 13.7 5.93 4.34 11.5 4.51 5.36 8.66 2.74 9.87 3.73 5.56 14.3 12.1 5.29 8.67 10.3 8.55 4.12 7.5 6.88 11.1 10 6.92 9.97 7.77 7.44 6.83 5.8 8.69 8.65 9.26 9.96 2.99 10.5 3.55 6.91 0.4 3.15 9.07 1.94 8.69 4.22 6.33 7.61 7.67 6 7.72 1.68 9.03 8.61 2.87 3.43 9.01 8.78 0.4 7.73 7.25 7.82 3.47 8.06 6.55 3.73 0.96 8.72 9.77 7.5 5.04 5.93 7.72 5.79 2.67 0 4.04 5.98 3.63 1.82 9.93 10.7 5.54 9.45 8.63 2.67 10.9 4.45 5.69 2.99 9.44 5.49 11.6 7.49 6.9 8.87 6.58 10.4 1.94 10.8 10.3 0 7.05 6.56 6.52 10.9 6.73 8.7 11.1 10.5 8.29 10.1 8.4 8.96 8.55 8.42 8.25 10.7 11.9 9.46 11.4 7.55 11.9 0.7 3.1 10.3 9.21 10.4 9.71 8.84 9.73 9.4 10.9 1.82 2.05 2.35 2.74 8.13 7.84 5.96 5.64 4.95 10 9.43 7.32 3.55 0 8.01 2.05 6.72 7.85 6.55 8.6 11.6 12.8 8.11 5.12 10.4 10.6 11.7 11.2 7.27 9.68 7.43 11.2 11.1 4.07 9.06 9.35 9.07 7.52 4.95 9.23 8.29 9.26 8.52 10.7 8.19 2.05 10.1 4.91 2.35 10.3 11.1 6.41 4.49 12 7.74 10.9 10.4 4.66 11.1 12.8 8.66 5.7 9.03 6.81 7.17 9.99 5.18 10.4 9.4 8.88 4.71 7.41 10.8 9.69 4.83 6.24 6.28 11.1 10.5 10.4 10.9 10.8 9.77 9.06 9.73 10.8 7.81 10.8 6.52 8.51 10.4 7.25 8.16 10.4 0 12.2 11.9 11.2 6.29 8.19 8.53 8.9 8.45 7.89 7.33 4.75 10.6 11.7 7.72 9.63 11.6 16.5 1.18 2.44 8.27 10.9 6.08 6.76 8.95 12.6 13.9 14.7 16.1 10.7 11 6.72 7.3 9.62 10.5 11.6 7.11 0 5.68 7.87 9.71 10.8 7.61 8.33 12.8 7.22 7.85 6.85 9.82 9.74 2.8 3.43 7.77 1.18 7.01 2.35 6.72 9.73 5.68 8.08 11 10.3 3.73 9.52 8.16 8.4 10.2 3.66 9.18 9.47 9.31 1.82 10.4 8.73 7.49 6.41 12.3 5.6 7.97 10.2 5.22 6.06 3.25 1.04 9.32 4.15 6.55 4.78 9.12 7.53 13.6 4.89 11.1 9.62 3.89 9.06 10.9 13.2 8.5 13.2 8.89 8.84 12.2 12.8 13.4 12 12.8 2.59 11 3.04 10.3 4.36 5.49 11.5 0.4 1.82 0.7 8.16 2.16 10.3 6.76 1.82 1.18 7.78 8.06 8.48 7.64 6.2 9.62 5.66 7.55 7.78 8.56 9.53 0.96 10.7 12.2 10.4 9.07 0 2.8 10.2 9.81 5.49 6.27 11.4 3.98 1.82 0 4.55 10.8 10.4 4.05 9.22 7.98 2.16 8.44 2.75 9.19 2.99 7.04 6.91 0 1.18 8.74 5.87 6.41 5.91 8.76 9.29 6.81 7.18 10.4 8.52 5.84 5.59 7.93 6.67 6.77 7.84 6.17 9.54 7.66 8.77 9.91 6.79 10.6 10.5 7.19 8.3 9.32 10.3 9.22 10.3 3.39 9.01 7.74 5.65 9.25 9.31 6.96 7.96 9.29 10.6 5.52 9.19 8.37 10.3 5.12 9.48 3.95 3.89 7.16 3.55 9.1 0 1.18 8.4 9.16 6.49 0 11.9 8.41 2.87 3.39 6.19 2.74 7.52 8.86 9.23 7.81 8.52 9.74 6.5 5.58 7.7 8.73 4.36 11.3 7.54 1.82 14 6.78 8.63 2.74 1.82 5.19 9.08 11.1 8.62 9.34 12.1 3.83 8.07 10.7 8.93 8.78 15.2 10.4 0.4 0.96 2.16 9.05 7.92 5.87 8.53 8.83 9.58 7.8 10.2 8.82 10.1 8.49 10.5 8.05 6.76 10.3 8.14 10.7 6.53 10.2 10.9 10.7 11.2 6.5 2.26 10.5 8.93 5.89 0 10.3 8.68 7.4 7.47 10.2 11.5 11.9 8.89 10.2 7.39 8.41 11.7 9.65 9.34 1.68 6.86 8.83 11 6.95 10.2 10.5 2.35 9.92 10.9 4.83 0 5.51 10.2 9.09 0.7 11.6 9.02 8.69 10.3 7.2 10.6 6.8 9.62 7.75 11.4 11.7 4.15 12.6 11.6 5.68 11.2 9.6 4.75 10.1 1.68 10.9 10.1 12.4 9.61 8.22 12.2 11.8 7.65 4.22 4.86 4.47 9.68 0 10.5 8.93 7.86 9.56 9.58 4.2 1.36 12.8 8.94 10.1 1.82 8.1 10.8 9.65 10.8 10.4 4.83 10.4 10 1.18 10.2 9.5 4.8 4.53 8.82 2.8 5.19 7.43 5.62 6.7 2.35 7.33 8.73 8.18 0.4 13.4 5.3 8.02 8.64 8.12 8.68 9.2 7.61 8.54 10.3 8.96 8.06 10.7 10.3 4.66 9.02 9.46 9.1 12.2 8.29 9.2 11.2 5.36 5.02 6.81 10.9 9.93 9.52 2.8 4.58 8.52 4.55 9.45 8.9 0.96 9.75 13.7 10.7 7.75 9.72 8.15 10.6 8.18 6.48 7.32 8.28 7.13 7.02 9.68 7.31 10 7.96 1.82 10.4 9.48 8.95 9.51 8.94 10.6 10.5 5.87 6.61 8.68 7.86 7.39 2.87 8.61 7.63 4.4 2.59 7.49 0.96 8.86 5.49 10.3 6.41 1.94 0 0.7 2.8 9.28 8.24 3.34 9.77 6.51 1.82 2.05 5.73 8.97 8.48 7.33 5.45 6.17 6.85 13.1 5.3 6.8 5.79 6.01 6.28 9.37 4.17 8.36 8.26 5.38 5.52 12.1 8.85 8.05 8.71 9.93 5.67 8.2 6.93 9.8 6.61 9.48 8.34 7.47 6.59 5.87 8.01 9.64 4.01 2.93 3.3 5.56 7.31 9.3 2.44 5.23 7.86 8 11.1 5.04 9.21 11 2.35 8.3 8.31 8.53 5.26 7.81 7.04 5.09 12.3 8.12 2.44 8.99 8.84 7.89 7.98 0 8.49 0.7 9.08 4.89 9.84 7.83 11.3 9.9 10.4 9.41 9.18 3.04 4.99 10.3 8.33 9.11 5.09 3.15 8.29 11 7.74 9.47 6.48 3.3 8.59 7.1 3.26 7.12 11.1 8.43 2.35 0 1.82 5.62 0 6.79 8.77 0 4.29 1.36 5.65 4.04 9.3 7.58 8.03 6.25 10.9 9.28 7.9 7.57 9.95 9.57 10.8 13.9 11.6 3.86 9.52 7.13 7.94 4.98 2.05 5.27 2.87 7.32 5.06 8.98 4.2 13.9 11.8 6.1 0 8.69 4.81 8.73 10.3 8.03 9.32 10.1 8.96 11.3 7.89 9.27 7.63 12.6 8.66 4.15 0 10.5 3.7 9.66 9.65 8.92 6.37 11.9 1.18 11.4 11.4 9.11 9.48 6.38 11.8 12.2 9.47 0.4 7.71 9.6 7.18 9.57 8.55 10.8 11 9.48 2.97 3.73 8.53 8.77 9.32 10.3 7.1 9.11 6.75 5.22 2.26 9.76 8.7 8.74 11 8.45 9.61 8.83 10.1 2.05 9.73 7.88 10.8 11.8 5.22 11.2 7.97 7.59 7.09 8.15 8.74 9.25 9.04 11.9 10 9.52 10.1 13.9 9.22 5.91 9.78 9.14 9.89 10.5 9.79 6.04 10.2 9.45 1.18 9.13 8.44 8.17 2.59 9.49 7.26 10.2 9.38 10.4 9.87 10.2 11.5 9.95 9.07 8.16 12.5 9.21 5.64 11.3 4.73 9.53 11.2 9.91 9.13 8.96 7.09 9.37 8.66 10.8 10.4 10.3 10.1 8.74 10.6 10.2 8.64 11.9 10.8 7.18 8.2 12.1 9.53 9.4 8.28 9.02 9.72 12.3 2.35 6.08 11.2 9.21 5.64 11 5.18 3.63 11.7 10.3 8.72 8.33 10.3 12.1 0 0.96 1.53 10.4 11.3 9.83 9.56 6.83 4.76 1.68 9.59 10.9 6.6 8.75 5.19 8.93 8.77 7.01 0.7 9.65 9.82 10.8 9.4 10.1 9.9 11.7 2.59 12.5 9.14 8.71 7.03 1.68 2.26 11.1 9.85 12.1 8.94 9.63 8.72 8.27 7.04 8.85 10.6 11.1 10.4 9.39 9.96 7.32 8.99 10 12.1 10.9 9.91 8.76 8.71 10.7 10.3 5.16 9.05 3.73 9.76 11.3 12.2 10.3 11.2 9.8 6.43 10.3 10.7 10.5 2.16 7.66 9.84 10.1 9.77 8.43 9.65 6.62 9.06 9.74 9.7 6.1 8.84 11 9.83 9.03 10.3 8.6 8.91 8.74 9.29 6.88 8.88 8.51 8.19 12 8.89 4.56 11.7 6.28 10.8 7.78 1.53 10.2 9.42 10.3 4.43 8.51 11.1 10.1 8.38 2.52 1.36 8.74 10.2 11 5.38 11.1 9.48 9.93 9.86 4.09 9.39 10.2 9.45 9.42 9.44 8.61 11.7 10.3 10.8 8.92 9.65 9.55 7.76 8.41 9.34 0 8.34 9.99 11.1 11 8.86 12.8 7.77 14.1 9.31 8.99 10.5 9.87 11.5 9.79 11.2 9.89 10.3 9.09 13 10.5 9.51 8.57 9.64 9.56 9.72 11.2 9.86 13.7 8.9 8.18 11 8.96 10.6 10.2 9.38 9.43 10.4 12.7 10.8 10.7 11 12.7 9.2 8.76 11.4 10.5 9.61 11.2 9.99 5.76 10.6 11.9 5.38 11.2 7.74 6.44 8.94 9.27 10.7 9.65 7.19 11.2 10.9 10.9 5.09 9.61 9.14 6.28 9.57 10.2 9.19 11.4 11.8 8.6 8.99 9.51 8.8 10.3 6.85 4.6 10.4 8.58 8.43 1.94 9.35 7.71 11.6 10.9 8.71 9.29 10.8 10 8.64 8.59 10.1 8.59 2.8 7.88 9.15 9.12 10.7 9.92 10.5 9.67 6.29 9.11 8.8 9.9 11.9 12.3 9.81 9.65 9.74 4.29 9.99 9.14 10.4 9.57 9.44 8.01 10.5 9.89 2.67 2.05 10.1 8.68 4.83 5.69 8.03 9.74 5.67 9.74 11.6 9.65 10.7 9.62 4.01 10.2 9.45 11.2 10 8.38 2.87 9.11 10.1 8.9 10.3 11.5 9.58 8.11 11.5 4.01 9.54 3.34 9.78 8.96 9.86 8.63 6.66 9.94 9.22 12.4 10.6 7.96 9.29 9.8 8.44 9.99 8.75 8.19 11 11 8.24 8.61 11.2 9.61 9.62 9.78 2.99 14.6 10.7 10.7 11.6 11.5 9.42 8.98 7.44 10 0.96 10.2 9.91 8.67 11 10.7 6.62 11.9 9.19 11.5 11.2 11.5 10.3 8.82 8.74 9.72 10 11.3 7.92 10.5 10.3 11.1 11.2 9.98 10.4 10.6 8.99 11.3 11.1 9.3 10.3 8.85 9.3 11.9 9.98 8.36 9.41 9.14 9.42 11.7 8.67 3.43 9.76 8.77 10.6 10.6 5.64 1.94 6.32 8.13 2.26 9.3 10.8 8.16 10.3 8.73 4.92 8.06 10.1 0.7 8.24 5.78 10.7 12.1 9.52 6.63 9.99 12.1 12.2 7.33 8.54 8.14 1.18 3.15 8.23 10.5 11.4 7.78 8.25 7.73 11.8 10.7 11.5 9.85 9.06 9.8 10.9 10.8 11.3 5.58 10.2 11.3 8.51 9.96 4.6 10.8 5.09 2.67 8.88 11.6 9.23 6.66 9.43 6.85 10.9 8.87 7.18 7.26 10.4 10.3 11.4 9.76 11 11.5 9.23 7.8 10.2 9.47 0 2.67 15.4 9.05 12 13.3 12.3 9.64 5.96 5.19 10.6 9.4 7.61 10.3 9.12 9.11 5.92 4.2 8.5 7.4 8.43 10.2 0.96 8.5 1.82 7.5 8.26 10.3 7.89 11 8.08 7.43 8.23 8.69 8.27 9.56 11.5 10.9 10.6 9.69 0 3.74 11.2 5.67 8.84 10.1 5.31 5.49 6.76 0.4 10.3 10.4 9.15 3.34 11 9.5 10.3 10.3 11.2 7.63 7.44 8.94 9.86 7.94 9.29 8.44 8.78 11.4 8.02 6.68 9.91 7.89 9.8 11 9.81 12.4 8.61 3.34 11.4 9.45 8.92 11 4.92 1.68 1.82 2.93 10.5 10.4 11 10.4 5.45 10.4 10 10.7 6.57 11.4 10.4 13.1 10.3 11.4 9.72 12.1 13 2.52 9.78 9.6 8.62 9.59 9.67 9.51 7.92 7.35 9.56 5.4 9.31 8.52 10.3 8.37 10.3 11.9 6.16 9.54 10.8 10 10.2 3.51 6.85 8.36 0.7 7.5 9.29 4.12 13.5 11.4 6.11 10.8 9.77 12.6 9.84 1.68 3.43 6.85 9.06 9.69 8.75 9.18 9.8 9.32 8.75 8.86 10.1 7.68 8.44 7.98 12.7 9.01 2.8 3.3 6.67 3.59 9.21 0.7 5.45 3.39 10.5 1.68 4.07 1.68 7.74 7.19 5.02 7.11 7.23 9.87 6.15 0.4 3.63 9.82 10.3 9.65 7.47 4.51 5.19 15.1 8.78 11.5 0 15.3 11.2 8.25 13.1 7.61 5.71 2.16 8.88 0.96 1.36 11.2 5.85 6.92 9.19 6.43 7.81 7.77 1.36 5.57 9.63 9.95 9.34 1.36 6.57 8.7 8.94 11.1 10.5 1.94 8.84 7.04 8.26 7.79 4.57 5.37 11.3 7.42 4.38 10.4 6.25 7.88 7.88 8.69 3.89 3.25 11.1 10.2 8.5 8.52 2.35 5.35 5.52 8.94 3.15 5.24 11.4 3.51 0.96 8.03 3.89 2.16 9.07 7.62 4.36 5 5.96 0.7 10.4 8.32 5.64 9.36 8.78 9.66 7.83 2.93 13.2 0.4 3.1 12.5 5.42 9.43 5.62 8.67 7.41 4.01 6.4 7.99 3.15 0 3.92 9.82 8.34 5.1 6.08 6.25 8.25 1.36 8.79 6.88 4.73 5.9 0.4 9.35 0 5.79 2.59 1.36 11.3 8.73 8.85 5.71 7.98 8.47 8.06 9.66 7.78 1.18 5.57 4.55 8.46 10 7.63 8.46 2.93 6.2 4.38 7.38 10.6 7.76 4.76 4.29 8.14 0.7 8.36 7.21 1.36 4.62 8.06 3.92 1.82 2.26 8.14 1.94 3.34 4.73 1.18 5.44 0.96 3.43 7.85 1.94 9.45 11.5 8.41 8.53 3.8 1.36 8.11 3.04 6.36 6.08 0 0.7 5.21 9.61 9.28 1.36 6.74 6.06 8.26 10.4 9.45 9.44 2.87 9.59 11.9 9.64 7.03 8.89 3.73 1.82 6.33 3.3 7.62 11.4 11.2 4.38 10.9 5.55 10.9 8.4 11.6 9.63 8.61 8.27 7.96 1.36 11.5 3.43 9.69 9.1 8.99 2.59 11.2 11.6 10 7.51 5.29 8.98 9.93 8.83 9.55 0.96 13.4 11.1 7.92 11.4 9.92 2.52 4.38 10.4 9.27 4.01 10.5 2.67 11 8.9 10.4 8.09 9.36 9.35 11.8 9.25 10.4 10.2 7.95 6.31 8.41 9.01 9.87 6.53 10.4 3.25 9.81 3.86 9.79 11 11.4 10.5 14.3 9.92 10.8 1.53 10.5 9.39 9.04 8.33 8.96 8.64 7.52 9.62 5.29 6.25 8.88 6.93 8.63 9.27 9.01 0.7 12.3 9.29 9.76 8.08 7.77 9.68 10.2 2.59 9.5 7.61 8.19 11.4 8.99 8.02 10.8 9.38 9.61 6.76 9.51 11.7 11.2 0.7 10.7 6.38 9.7 6.6 4.49 8.29 9.92 9.36 9.02 2.05 9.65 1.36 9 1.53 1.94 5.13 11.4 10.7 6.88 11.2 8.79 9.64 5.74 6.98 8.68 9.66 10.7 11 9.08 7.39 10.3 10.1 11.2 7.73 8.64 10.6 9.92 11 13.1 8.59 5.96 10.1 10.2 10.2 15.4 11.2 9.72 7.25 6.9 7.75 9.23 9.53 8.96 10.3 7.82 9.82 0.4 10.2 8.89 9.66 9.18 10 9.87 9.74 8.3 4.64 11.2 11.8 5.6 10.5 9.1 10.2 9.06 10.2 8.19 9.82 7.44 9.58 10.9 9.75 9.9 11.7 8.64 8.23 9.04 4.07 5.24 10.2 9.88 9.05 3.25 9.1 7.56 8.43 8.8 8.96 8.51 8.41 8.84 7.01 6.61 1.68 8.01 10.7 8.83 8.74 7.76 8.21 5.67 10.7 10.4 8.14 10.1 10.5 9.88 9 8.27 8.7 11.7 9.96 11.4 1.82 9 9.45 12.3 10.1 9.27 9.54 9.43 7.82 2.93 11.7 8.76 12.2 11.3 0 10.2 8.23 10.3 9.69 11.3 8.89 10.1 9.07 8.98 9.38 11.2 13.1 9.84 2.67 9.41 10.7 8.46 9.74 6.29 7.57 4.29 9.65 9.54 6.1 2.74 11.4 11.9 8.65 7.41 9.19 3.15 10.4 10.7 9.51 9.87 12.2 8.84 8.27 10 9.95 10.2 8.13 10.4 8.3 10 6.16 8.94 16.3 1.68 8.97 1.94 10.2 9.29 10.5 4.66 11.1 0.96 7.27 6.58 10.6 8.74 11.3 7.4 6.43 7.02 6.7 9.4 3.39 3.98 2.74 6.14 9.97 8.51 9.9 4.33 8.99 8.67 2.67 7.25 9.6 8.79 4.69 8.34 8.39 7.31 8.54 9.83 8.7 10.7 7.94 3.63 7.57 10.3 10.3 10.8 9.44 0.96 8.85 8.68 8.94 8.32 10.2 9.39 7.95 0.96 8.73 7.81 9.92 10.2 10.1 1.18 8.65 9.57 5.18 10.5 10.9 7.86 7.28 10.3 10.6 0.4 10.4 9.48 10.2 7.45 8.13 10.1 2.52 9.71 9.76 6.03 8.55 8.95 9.48 11.4 8.97 9.51 9.33 9 7.56 11.7 6.23 3.63 6.35 10.8 4.49 2.07 5.94 9.83 2.74 10.8 0.96 9.7 9.34 2.67 9.79 4.27 8.18 4.22 12 12.6 9.67 5.67 7.3 6.66 8.33 7.73 7.48 10.6 1.94 7.78 6.24 0.96 9.27 9.19 9.53 9.21 7.37 6.74 8.21 9.23 7.08 0 8.57 10.5 6.74 5.13 8.08 0 11.2 8.59 13 6.76 7.7 1.18 9.78 9.03 9.3 10.5 2.35 6.81 10.2 8.34 6.82 8.68 10.2 14.2 10.8 10.2 9.49 7.61 11.6 8.77 0.96 2.05 9.13 0.96 9.41 8.72 6.33 11.1 12.4 6.31 10.3 8.69 8.09 11.2 2.16 9.05 1.53 5.57 10.5 11.5 8.57 11.3 12.6 11.1 3.1 8.36 9.19 9.29 11.4 6.29 6.66 9.76 7.53 11.1 6.15 7.88 8.38 6.33 11.1 9.28 10.9 8.33 9.12 1.18 6.5 10.6 9.29 4.99 1.18 9.66 6.13 10.6 11.6 11 8.76 6.56 5.61 1.94 9.04 5.74 9.38 5.21 5.14 10.2 2.67 9.99 4.36 2.44 7.8 10.6 7.33 6.87 9.98 9.1 3.83 0 7.42 8.25 9.91 7.75 9.65 8.9 0.7 9.92 0.96 6.68 8.47 7.15 11 8.24 11 9.04 6.01 6.15 11.6 6.79 0 7.18 0.96 4.04 6.19 8.01 10.2 3.1 7.06 12 5.18 3.55 6.88 9.12 7.57 9.71 6.61 10.2 8.21 8.96 11.4 9.98 10.9 8.21 9.48 10 10.7 11.4 8.35 5.41 2.99 9.63 10.4 0.96 7.19 2.67 6.14 4.73 8.72 8.63 9.02 4.66 1.82 9.36 1.36 6.55 7.15 9.33 9.52 6.59 7.84 7.01 9.29 1.53 3.55 9.32 12.3 0 9.79 9.95 11.2 7.02 5.23 12.6 11.1 10 12.2 12.3 8.81 10.7 9.81 9.83 2.35 8.09 9.45 9.64 8.75 9.23 3.63 7.6 7.19 11 8.94 9.32 8.91 10.9 10.8 10.3 7.72 10.8 9.22 9.87 9.55 4.22 10.2 9.42 0.4 6.88 9.83 10.9 6.73 9.31 12.9 2.67 10.2 11.2 9.69 6.54 8.51 10.2 10.8 8.33 13.3 10.7 7.67 6.59 10.2 14.7 0.4 4.49 12.9 12.5 4.7 1.53 7.53 11.1 9.16 2.26 8.88 11.7 6.7 11.4 5.79 0.4 10.9 5.7 8.56 8.13 9.99 11.3 10.3 11.2 9.53 11 10.8 2.44 11.9 4.22 1.94 12 7.04 9.26 12.2 6.04 11.1 6.33 5.82 8.57 4.58 2.05 3.73 7.42 3.66 2.93 6.52 2.59 7.98 5.58 1.94 7.93 3.3 8.43 9.87 2.74 7.87 6.37 4.15 2.87 3.83 1.18 7.18 9.67 8.84 13 10.7 4.27 5.98 4.47 8.99 2.35 8.01 6.61 9.76 10.9 8.21 6.47 5.99 8.47 3.77 7.93 8.85 6.3 6.31 10.5 3.86 4.78 7.95 9.47 1.18 8.45 4.69 3.83 4.01 7.77 6.52 1.53 0.4 9.91 0.7 6.17 3.7 9.36 3.34 8.7 5.43 1.18 3.59 2.05 8.07 2.67 4.2 1.36 9.42 0.96 7.93 2.8 2.87 8.96 8.23 9.44 6.63 2.53 2.59 5.76 6 2.52 8.21 0 0.4 2.61 10.1 4.57 6.77 3.3 6.71 9.03 8.77 10.4 6.02 6.2 4.99 3.47 6.72 8.66 7.01 2.16 5.28 7.16 9.76 10.4 4.38 2.35 9.86 10.7 1.36 6.25 7.85 4.91 7.38 6.92 9.25 2.71 10.1 8.2 3.15 0 1.68 7.47 7 0 6.38 0.7 9.84 4.34 0.96 8.02 12.5 8.95 8.64 3.34 8.76 1.68 0 0.96 4.66 10.3 1.68 5.47 10.8 3.7 9.72 0.96 6.94 0.4 6.84 7.31 8.78 8.33 8.98 5.09 0 6.87 3.98 5.4 2.74 6.06 12.3 5.08 7.33 7.52 6.04 7.03 1.94 9.16 6.89 0 2.44 9.65 2.52 1.68 9.84 7.75 4.22 7.9 9.9 2.52 3.25 0.4 6.49 1.36 4.2 0 7.77 3.43 8.3 4.73 5.38 0 2.59 6.83 8.58 0.7 4.33 3.43 5.98 0 10.2 4.4 5.62 5.36 0.4 8.11 4.92 5.02 7.91 8.59 0 7.21 4.91 10 8.34 5.04 2.74 5.08 5.37 0.7 9.35 10 7.14 8.96 9.39 7.52 8.36 6.71 5.1 6.27 7.1 8.38 6.6 8.77 8.59 0 4.55 8.4 8.66 3.98 7.63 8.17 0.7 8.44 2.74 6.38 9.77 9.14 6.1 8.98 7.04 6.69 0.7 2.52 8.88 2.74 7.96 5.63 8.34 6.61 5.38 8 9.31 2.74 9.02 0.4 10 1.36 5.08 4.12 5.21 5.79 7.45 9.81 1.82 4.81 8.97 4.91 7.61 8.58 7.1 6.06 6.61 0.4 4.27 0 9.43 7.11 3.66 7.96 0 2.8 9.44 0.4 5.1 7.25 9.43 5.45 7.1 4.36 7.13 3.2 2.74 4.38 3.59 8.43 8.49 2.99 10.7 5.8 8.77 3.92 3.86 6.99 8.45 7.68 7.57 9.01 8.84 6.42 4.75 9.03 2.05 4.15 7.36 10.5 8.67 8.15 3.34 11 7.19 8.16 6.08 3.8 0.4 5.93 9.31 6.18 4.31 6.1 7.18 8.23 8.67 3.86 5.08 10.6 11.6 11.6 10.8 3.39 12.6 2.44 10.3 12.3 9.05 8.41 12.7 9.12 11.2 0.4 3.8 9.43 10.1 9.94 10.1 9.03 10.3 9.47 13.1 8.99 9.01 11.1 10.4 6.93 4.2 10.3 1.82 9.24 8.46 10.9 10.7 11.3 10.3 8.92 7.85 7.67 6.01 10 9.76 9.4 11 12 9.47 0.4 8.05 9.99 6.52 8.49 9.26 5.54 10.7 7.24 1.36 6.18 10.9 4.2 9.42 7.84 9.79 3.95 9.59 11 6.12 9.31 7.32 9.96 10.2 13 5.52 8.35 10.7 9.46 8.65 10.3 10.5 9.19 8.91 10.9 8.22 11.4 11.1 10.7 9.37 8.82 10.6 8.99 8.25 8.64 9.27 8.74 8.97 8.72 9.57 10.1 9.8 9.67 11.8 10.2 9.66 7.76 10.1 2.67 9.42 9.9 9.2 1.53 8.4 10.8 10.1 10.3 0 1.82 9.91 4.36 11.6 6.38 5.47 9.56 10.6 8.07 4.04 7.24 12.8 3.98 4.22 13.1 0.7 11.1 14.2 10.7 9.56 13.2 10.8 8.51 10.2 8.21 2.67 10.9 7.88 9.12 5.22 12.8 6.06 9.51 9.02 10.4 4.51 10.4 9.66 8.02 9.6 11.7 9.05 9.75 7.02 6.81 9.68 10.4 12.8 11.6 10.2 4.29 12.1 9.99 7.7 9.06 9.84 2.52 9.02 7.55 6.01 7.73 10.2 0.7 10.7 11.2 6.74 10.7 5.51 11 1.82 6.92 8.91 7.55 10.1 3.63 12.3 8.44 7.7 0.96 7.32 4.17 8.86 9.69 3.63 7.04 10.1 11.9 9.38 0.7 10.5 10.6 8.42 8.14 10.9 10.1 11.2 7.9 11.6 1.53 10.7 8.8 10.4 9.46 7.56 10.1 9.57 3.3 9.34 6.5 9.04 8.96 7.72 9.36 8.71 9.78 11.3 8.64 7.15 11.7 8.31 9.49 12.9 9.42 8.61 5.25 7.56 6.67 0.7 10.5 9.82 8.26 1.94 7.63 9.58 9.29 6.36 10.9 8.83 1.82 10.7 10.2 10.9 7.56 4.8 10.9 4.75 10 7.29 11.8 8.38 7.85 10.1 9.93 10.2 6.23 10 11 8.05 8.69 8.25 9.52 3.39 8.08 5.24 11 7.48 5.82 8.69 7.51 14.1 9 0 10.5 4.76 10.9 6.96 10.9 6.81 7.52 10.8 6.51 7.24 6.38 12.8 11 10.5 3.77 4.09 3.63 10.4 6.07 1.97 11.5 12.8 9.35 12.4 12.8 14.7 11.1 10.9 4.68 12.4 10.7 11 0.4 10.7 5.57 2.44 4.89 5.17 10.6 9.46 8.7 0.4 0 0.7 1.36 8.5 0 11.8 9.22 11.9 7.19 11.1 12.3 11.1 2.74 12.9 13.3 10.3 7.74 10.6 10.8 10.8 9.55 4.71 12.3 1.82 8.28 3.15 10.3 6.61 12.6 5.3 3.66 11 3.77 10.3 9.95 7.16 10.4 3.63 3.63 9.06 6.42 11.4 9.3 6.48 11.5 7.31 12.8 11.7 9.88 7.27 10.4 12.1 8.44 11.1 9.51 11.3 8.32 8.8 11.2 5.61 9.8 14.7 15.3 14.1 11.1 11.2 12.1 9.84 7.09 13.5 13.7 2.67 11.6 10.2 13.5 11.8 14.5 13.6 13 9.08 8.45 10.3 12.7 10.7 4.98 11.5 5.96 4.45 3.8 7.17 7.97 8.27 8.69 13.6 13.4 9.98 12 14 10.2 9.01 9.04 12.4 10.8 8.75 8.91 10.3 11.2 9.08 3.83 6.41 9.2 9.75 8.37 5.73 7.06 1.53 9.52 0 9.51 0.7 10.1 13.7 9.27 14.3 12 13.9 13 12.3 13 10.8 12.1 13.6 0.7 12.8 13.5 3.86 5.23 8.4 8.42 5.65 9.39 8.6 4.09 1.68 7.05 6.9 7.94 0.4 4.24 0 9.39 6.8 6.12 5.71 3.15 3.66 4.07 0.96 0.96 10.6 3.59 2.99 10.4 5.18 8.41 2.99 9.57 0.4 8.79 1.36 2.05 9.11 10.8 0 3.04 3.8 9.81 1.94 9.67 9.48 10 9.24 5.58 11 5.48 4.86 11.7 12 12 11 11.4 10.2 1.94 4.53 7.51 3.92 10.6 11.4 8.29 6.38 9.52 11.6 11.4 13.4 11.2 6.79 7.28 10.5 14.2 9.98 7.57 8.16 14.2 11.8 13.9 4.77 9.42 13.8 12.2 14.9 12.1 6.95 10.5 11.8 9.61 11.7 6.81 6.72 14.2 10.3 8.01 4.31 5.09 1.68 3.8 1.53 0.4 4.17 7.94 8.14 5.92 10.4 10.8 2.99 4.62 0.4 0 0 7.5 10.3 1.68 6.91 0.96 9.82 9.92 6.46 10.8 4.09 0.4 5.08 2.71 8.19 10.3 7.2 6.17 5.23 6.73 10.1 4.71 2.93 1.18 7.31 5.8 7.58 11.1 1.36 8 8.57 7.37 9.46 10.2 10.6 7.6 11 9.28 7.77 8.83 5.66 8.27 6.28 1.68 4.69 10.5 0.4 4.83 9.55 7.66 4.45 3.86 9.48 7.62 5.4 3.73 4.17 7.59 6.49 8.84 4.89 2.87 10.5 7.97 5.72 6.99 10.6 9.33 3.1 1.36 6.51 2.8 11.4 6.87 0.7 3.39 4.01 9.6 9.4 11.1 0.7 2.93 3.1 5.51 1.82 7.51 6.62 1.18 5.93 1.94 9.18 2.44 9.08 9.85 5.99 3.17 0.4 5.43 3.73 8.5 3.66 0.96 4.34 5.64 3.89 5.18 3.95 8.75 7.31 7.7 6.88 4.04 1.68 0.4 6.51 1.94 9.47 12 10.6 11.2 6.51 10.9 0.4 2.87 3.15 9.43 10.6 5.34 7.84 10.6 0.96 8.68 1.18 6.56 7.92 7 11.1 2.67 10.7 7.29 3.8 6.44 1.53 6.25 3.63 3.2 1.18 9.85 3.7 6.89 9.14 2.87 8.72 9.29 6.06 3.3 2.93 1.18 1.18 1.36 9.62 7.48 5.67 4.22 0 5.74 11.1 6.83 1.36 3.66 2.8 2.8 2.44 1.36 2.35 10.4 7.04 8.97 3.1 5.85 8.36 8.96 3.04 4.22 11.3 3.04 11.1 2.8 3.63 6.38 5.22 2.05 1.53 8.06 11.4 3.47 1.68 7.14 3.43 5.31 0 3.47 5.52 9.11 1.94 11.2 5.61 4.38 9.79 10.5 3.7 3.92 7.29 0.7 11.6 5.84 6.35 6.28 9.93 11.2 6.09 9.24 6.87 9.44 7.59 5.04 8.57 11.2 9.91 0.4 11.8 11 6.51 4.31 13.2 9.82 3.1 7.67 12.7 4.99 7.52 13.3 5.92 1.82 11.9 6.15 3.51 9.02 13.7 5.01 9.51 7.82 7.76 1.36 5.72 3.39 7.59 9.49 8.98 8.65 14.6 10.7 9.28 5.29 8.93 7.41 11.7 6.97 0.4 9.75 0.73 3.59 9.01 5.33 0 1.36 6.73 6.18 3.8 10.4 4.09 9.74 1.18 10.1 11.5 10 0 6.63 10.6 6.96 4.12 3.86 5.83 9.57 11.9 7.48 9.87 1.36 6.12 9.42 7.37 5.54 4.91 6.99 3.73 1.68 3.3 11.8 3.89 5.54 3.2 9.58 10.3 6.22 8.77 2.35 3.66 7.38 3.63 10.4 3.06 10 12.6 8.01 11.8 7.38 8.16 8.25 4.62 3.3 10.7 2.59 7.68 10.6 12.4 13.2 2.59 11.3 8.12 7.98 9.13 12.1 8.81 7.11 8.6 8.72 2.8 0.7 6.32 1.18 8.39 9.31 7.53 9.8 9.01 9.48 10.9 10.8 10.9 4.86 3.39 9.5 1.53 12.6 6.32 8.91 11 12.6 5.83 9.91 11.3 0.96 9.75 11.1 5.73 7.96 10 9.72 10.4 8.71 1.18 12.2 6.81 8.17 5.84 11.2 10.5 9.77 8.55 1.82 6.51 5.76 9.27 11.3 8.18 10.6 7.88 12.3 12.1 10.8 4.2 10.1 11.8 11.3 0.4 9.26 5.66 1.18 0.4 3.8 12.8 6.55 9.36 11.1 10.3 10.2 5.38 10.4 9.53 9.93 10.5 10 12.2 12.2 7.4 9.72 11.1 9.57 9.97 11.7 11.4 12.8 7.64 10.3 11.4 9.61 11.8 5.27 6.2 6.02 2.05 3.92 5.01 1.33 11.2 4.86 9.87 2.26 8.28 10.3 11.2 1.18 7.64 5.19 2.67 7.86 0.96 4.71 3.55 8.76 7.22 8.57 9.98 3.73 2.93 10.2 6.54 8.58 4.53 7.42 2.35 1.94 11.3 6.82 2.67 9.75 6.6 5.35 7.72 1.68 9.17 1.18 4.01 6.93 13.2 6.45 7.26 5.69 10.1 4.66 7.39 7.55 2.87 7.37 0 7.1 9.35 7.35 9.74 3.63 3.43 2.16 0 8.05 6.68 9.51 6.22 8.24 7.82 7.12 7.71 5.12 4.75 0 0 3.22 0.96 9.21 5.81 4.76 1.68 9.41 5.19 8.7 3.04 8.58 13.2 3.98 2.8 7.48 5.61 8.36 6.3 0.4 9.84 1.36 3.25 4.76 5.58 7.92 2.05 7.98 12.1 5.22 2.05 3.83 2.16 6.39 4.55 6.14 5.93 6.16 11.2 4.53 4.32 4.4 8.64 7.98 0 2.26 5.09 8.43 7.11 0.4 5.49 11.4 7.48 4.55 2.44 9.04 3.34 7.01 8.93 7.37 0.96 10.8 9.28 6.55 8.52 1.03 3.34 0.96 11.7 0.4 4.62 5.95 3.04 4.47 11.7 8.8 6.8 5.8 5.78 7.59 0 11 9.84 10.6 11.8 9.75 11.7 10.9 8.97 6.36 10.4 5.35 10.7 11.5 9.1 7.67 4.97 14.1 9.13 6.35 9.27 7.87 2.93 13.7 7.56 4.68 12.2 1.18 8.45 3.47 4.34 12.6 1.8 9.54 0.4 4.49 4.27 8.81 9.1 6.61 11.5 9.42 10.1 7.96 2.05 6.65 2.16 3.66 8.17 8.52 0.4 6.29 2.44 6.8 0.4 7.42 0.4 4.96 6.09 5.21 5.17 8.03 4.24 2.26 10.4 8.04 9.95 8.68 7.52 1.53 11 7.11 8.63 5.67 8.26 8.35 2.44 5.38 9.25 6.92 7.29 7.18 5.87 3.2 7.02 6.79 5.68 6.55 5.87 7.93 7.23 0 14.1 3.34 6.58 8.68 7.76 7.82 7.79 5.93 7.13 9.68 1.82 9.64 8.68 9.44 0.72 9.57 1.18 8.68 2.05 8.97 7.92 2.8 2.26 6.65 8.86 9.97 1.68 8.99 1.94 5.22 8.72 6.37 8.75 8.07 7.31 1.53 10.3 13.3 7.96 1.94 7.4 0.4 7.04 6.96 7.45 4.24 9.29 4.68 8.77 5.14 2.35 6.08 4.89 8.1 5.41 3.15 11.7 8.94 6.78 11.5 3.89 1.94 4.69 4.73 8.36 3.59 4.78 7.53 3.47 8.74 0.96 3.95 5.04 3.65 7.07 0.96 7.55 2.35 9.08 8.48 7.31 4.71 0.91 2.8 11.3 2.67 5.35 3.1 5.56 0.7 6.37 8.36 8.68 7.15 8.05 11.3 9.54 2.52 13.1 7.54 11.9 1.36 12.6 4.47 9.48 7.59 11.7 13.4 5.31 4.31 11.7 11.7 13.7 0.96 0 4.69 14.3 10.4 12.1 4.83 0.7 12.4 11.1 8.02 12.6 2.26 13.6 9.92 4.71 12.1 10.2 13.4 7.87 4.55 2.8 8.14 11.1 8.61 13.5 6.98 11.6 14.1 13.2 3.34 9.5 10.3 13.3 2.8 7.08 10.1 10.9 0 9.01 8.53 9.93 9.46 11.1 5.04 9.75 10.6 5.17 7.87 8.99 8.99 0.7 7.59 10.1 7.8 9.73 8.34 10.6 5.83 5.91 1.36 10.3 2.99 7.91 7.76 5.16 11.2 2.16 8.23 6.44 10.5 0 7.41 11 10.2 10.7 13 9.51 6.2 8 11.3 8.63 0.7 6.94 10.1 7.43 9.52 9.4 8.02 1.36 7.11 8.76 1.18 8.67 6.96 1.36 7.63 4.04 5.14 7.26 8.42 1.53 2.16 6.54 4.36 4.81 5.29 10.1 7.08 2.05 2.05 9.56 4.17 6.26 3.73 6.18 7.68 11.2 0.96 5.65 0.4 5.22 0 5.49 0.7 2.74 3.63 12 2.93 6.33 5.83 6.36 5.87 6.81 0.7 4.45 3.43 4.48 7.32 4.97 8.28 9.74 0 8.66 4.68 1.53 4.81 8.6 9.8 6.15 2.8 8.69 6.77 9.81 7.06 0 9.49 0.4 4.62 3.26 1.68 6.42 7.72 4.83 4.47 7.81 5.64 0 4.07 6.73 10.9 7.89 1.82 6.17 5.05 9.41 1.68 4.53 5.09 1.82 5.58 10.3 9.53 8.34 0 7.7 11.2 12.4 4.15 9.28 9.98 8.94 5.93 9.59 11.4 3.34 6.67 1.18 3.25 11.9 0.4 6.89 11.6 8.65 9.24 10.2 9.48 10.8 5.82 9.93 11.4 0 8.08 11.8 13.9 10.7 7.15 4.53 2.87 5.91 13.6 8.29 8.15 12.4 8.04 6.57 11.5 8.01 8.47 11.2 10.8 10.2 9.19 9.29 11.3 12.2 11.6 1.53 7 6.03 7.85 8.94 9.2 12.6 8.11 9.08 8.93 10.6 10.9 10.9 10.7 10.5 7.61 8.6 3.25 12.1 9.44 1.82 8.67 10.2 8.06 10.3 2.52 12.7 8.23 7.47 9.69 10.9 6.89 11.2 9.97 10.7 5.01 11.1 7.86 6.63 12.5 4.95 6.22 4.34 9.7 10.6 8.11 6.27 10.7 9.02 6.83 7.18 0.4 1.94 6.83 7.75 6.01 12 9.06 2.77 6.87 8.18 5.61 11.3 8.23 8.36 2.52 13.3 10.9 1.68 10.4 11.7 9.23 7.28 10.2 8.45 2.35 1.94 12 11.1 11.8 10.2 11.8 10.6 12.7 11.3 4.73 10.5 9.19 1.18 11.8 12 14 10.7 10.8 8.15 9.24 10.8 10.9 9.81 7.67 8.44 10.6 8.12 3.25 10.2 9.27 8.57 8.58 9.27 9.75 8.94 10.9 10.7 6.19 0.4 9.13 10.2 7.92 10 7.41 8.72 11 10.4 9.09 9.95 12.2 9.45 9.67 4.01 9.04 9.63 9.61 10.6 4.91 9.62 10.2 8.8 13.5 11.1 7.28 9.2 12.8 9 0.7 7.92 6.12 8.78 11.9 10 6.84 9.85 4.6 7.93 11.6 10.4 11.9 10.3 9.18 9.38 8.37 8.54 12 8.63 7.9 9.83 9.89 0.7 0.7 2.52 8.14 5.23 7.23 12.3 5.06 8.73 5.4 7.5 9.53 6.47 4.6 8.62 8.84 8.49 9.6 1.18 8.57 9.47 1.36 11.6 8.41 8.55 10.1 9.99 4.07 4.2 10.8 4.07 4.69 9.96 9.49 5.52 8.05 8.12 10.3 0.7 1.53 10.7 11.1 0.4 6.43 4.57 8.12 9.45 3.8 1.82 9.84 3.98 7.89 2.35 9.16 4.09 0 4.81 8.58 10.1 5.35 8.94 10.2 4.39 7.29 3.16 4.62 7.37 5.14 11.8 8.4 0.4 7.79 5.53 10.5 7.75 4.97 8.67 2.8 0.96 9.2 10.1 0.4 3.55 5.06 0.4 2.99 6.24 6.58 9.22 2.52 1.18 8.17 7.56 7.7 7.48 13 3.63 7.17 3.2 7.94 7.61 3.59 8.25 8.38 7.04 5.95 5.06 8.03 5.92 2.44 5.54 6.42 2.05 4.04 7.07 5.8 3.25 3.66 0 0.7 2.35 1.94 0.7 9.71 0.7 8.12 5.29 4.69 6.1 5.38 2.26 10.9 11.4 1.68 0.7 1.36 0.96 1.94 0.4 7.2 1.53 4.57 8.09 5.78 2.35 1.94 8.68 2.05 9.69 8.07 2.05 8.06 10 9.32 7.54 8.57 7.34 4.25 2.74 10.4 12.5 7.93 7.94 9.44 7.56 5.65 5.67 5.79 3.8 3.15 8.51 9.38 8.88 4.21 8.32 10.3 10.2 9.45 8.96 7.37 10.2 2.16 9.28 8.77 9.93 6.64 4.22 2.05 8.81 9.06 9.15 9.56 8.39 11.1 9.66 9.45 10.4 7.66 10.4 9.31 2.59 0.4 11 8.64 8.98 9.9 10.3 1.94 7.98 14.3 9.84 9.99 9.53 2.93 8.36 14.2 8.7 4.55 11.9 10.8 10.5 10.3 10.3 8.49 6.38 8.61 4.95 11.3 10.7 9.88 8.52 8.71 0.96 9.73 11 14.4 10.2 10.4 7.48 13.4 5.12 13.3 4.64 4.36 12 11 12 13.2 0.4 11.1 9.24 9.25 5.55 3.04 9.66 7.86 9.28 9.04 14.2 11 11.2 10.7 10.5 12 10.4 10.5 10.6 9.97 10 4.47 10.4 10.8 10.1 10.1 11.3 9.92 11.1 10.9 10.4 10.2 11.4 11.3 11.3 11.1 10.1 11.3 9.19 9.52 10.8 10.9 12 9.95 11.6 11.1 11.1 10.6 11.2 9.68 10.6 9.09 13.4 14.5 11.5 10.1 4.38 6.04 7.74 7.45 9.67 0 1.94 4.86 5.8 9.75 8.37 8.06 6.76 6.93 12 9.95 13.1 10.1 9.15 10.3 10.2 3.92 10.9 10.6 10.6 4.36 12.8 7.47 11.2 9.1 7.61 8.33 11.8 12.2 11 12 9.22 9.32 10.2 9.1 9.67 9.83 10.6 1.18 9.63 9.77 10.6 8.79 1.36 12 10.7 7.9 9.14 10.8 5.96 9.84 9.04 7.94 9.95 3.95 3.59 5.69 10.3 10.5 12.5 9.77 10.7 8.86 11.8 8.24 5.52 9.74 13.2 4.27 7.32 10.5 10.8 8.56 12.2 10.6 13.4 8.71 6.9 9.25 9.27 4.01 8.02 7.94 8.76 6.68 13.6 4.81 2.74 11.6 8.72 7.33 2.59 13 3.55 12.9 9.48 9.94 8.63 11.2 9.49 2.16 9.02 6.47 7.37 5.42 12.9 9.11 7.24 1.68 9.95 3.15 5.16 7.61 1.53 2.93 2.05 9.97 2.16 2.05 4.78 8.84 12.7 11.4 13.4 9.63 10.7 6.33 11 9.32 8.74 9.64 9.63 7.71 9.62 0.4 8.86 6.18 6.49 7.03 9.2 5.85 9.66 9.32 0.4 5.77 9.7 9.15 7.29 6.15 5.99 0.4 13.8 11.1 8.95 10.9 10.1 4.95 11.4 8.81 6.34 4.38 3.51 6.66 4.62 1.94 0 9.92 9.82 13.8 2.16 5.6 7.89 8.69 9.77 0 6.86 8.14 8.4 11.6 9.54 8.46 7.05 3.8 0 10.6 5.72 10.3 5.13 0.7 6.24 7.29 11.3 11.9 5.96 7.1 8.47 7.78 2.87 2.16 5.16 6.55 8.26 9.07 13.6 7.42 8.5 12.1 0 1.68 5.19 12.6 7.26 10.4 13.4 11.8 8.63 9.78 5.32 11.6 6.8 10.3 5.87 8.58 9.93 7.52 7.97 12.8 7.26 2.26 10.7 13.6 9.28 7.7 9.94 10.8 10.8 5.63 10.8 9.99 6.3 11.4 8.86 6.1 10.2 5.54 9.75 6.37 5.25 11.1 10.2 6.17 0.7 5.97 1.32 6.96 9.66 10.1 11.9 9.7 10.8 8.93 8.71 1.36 2.88 3.77 10.9 8.67 9.49 12.4 7.05 6.8 8.15 11.9 9.58 9.18 10.6 11.2 11.9 8.85 8.93 9.88 13.4 10.6 1.18 13.8 2.99 6.07 2.26 8.63 10.4 7.23 12.9 9.29 10 8.34 8.17 8.8 7.63 8.34 8.86 10.5 9.32 9.31 6.92 8.75 9.64 9.75 9.31 10.1 9.05 8.8 8.7 8.91 9.38 10.8 6.03 9.14 11.5 8.43 9.04 8.65 9.59 9.56 8.52 10.2 12.4 8.62 9.5 4.68 9.5 6.39 10.3 5.17 8.69 9.05 10.5 10.7 6.36 8.74 10.7 6.93 8.35 9.18 9.92 10.9 8.44 8.41 10.7 8.96 10.6 8.96 9.88 10.9 12.4 11.5 10.4 11.8 1.94 10.1 9.45 3.32 5.14 8.14 6.07 8.23 9.76 9.33 10.2 7.85 9.61 10.2 9.55 8.09 10 10.5 7.47 8.65 8.58 9.33 9.54 7.54 11.8 11.1 9.58 12.2 7.56 9.58 10.7 6.97 9.45 10.4 10.7 9.43 10.3 8.52 10 10.6 9.26 10 10.1 3.73 7.91 6.88 8.4 9.33 9.97 9.39 6.98 9.27 7.55 10.2 8.51 12.4 9.55 9.23 10.3 7.46 8.39 11.9 0.4 10.1 10.9 10.4 10.3 12 7.82 10.2 8.52 10.3 5.95 7.7 3.59 8.93 9.73 9.03 7.52 7.89 12.7 11.3 9.57 10.1 8.81 8.49 9.46 9.96 11.2 9.24 11.5 9.19 9.84 9.27 8.72 8.28 4.47 9.91 8.26 10.3 10.7 9.03 7.63 0.4 0 2.35 10.5 1.18 11.3 9.76 7.74 8.54 9.57 9.73 10.2 10.1 0.4 10.5 9.97 12 7.99 9.99 9.15 12.6 11.7 9.25 9.09 7.63 8.47 8.67 1.53 10.9 10.4 8.19 8.81 11.2 8.72 9.35 9.77 10.7 5.23 9.96 5.02 10.7 10.3 10.9 10.1 9.03 6.5 7.26 10.1 10.1 9.01 12.8 8.57 11.2 10.2 7.85 1.82 9.86 8.66 8.59 9.93 10.6 10.2 8.61 10.3 10.2 6.4 11.4 7.77 10.6 4.15 8.4 9.75 1.53 9.2 10.2 7.06 8.88 9.55 4.69 7.82 8.77 3.25 9.44 8.7 10.2 9.4 6.45 9.5 10.2 11.3 10.6 6.21 12.4 8.16 7.85 4.75 7.18 1.82 11.6 9.3 8.27 10.4 9.6 9.57 9.39 10.8 9.11 3.55 8.3 3.43 5.45 8.21 7.33 9.27 10.2 4.62 4.4 10.4 9.18 10.6 0.7 10.9 11.3 8.08 11.2 8.58 8.02 8.52 8.33 9.29 10.1 0.7 8.82 13.7 8.88 10.3 4.42 7.53 9.63 8.29 11.7 10.5 12.8 6.59 10.1 9.92 9.69 8.12 9.82 6.93 10.6 9.5 7.74 8 11 8.94 2.35 9.65 11.6 10.1 12.1 9.36 7.41 3.95 10.9 9.25 11.4 9.98 1.18 10 7.29 9.53 7.34 2.93 10.8 12.5 9.57 1.68 9.5 13.1 7.87 10.7 6.03 9.69 7.87 11.2 10.5 8.73 10.8 9.71 11.8 10.9 9.54 10.4 12.2 11.3 11.4 8.05 10.7 9.05 6.53 8.78 8.98 9.4 11.2 11.4 11.8 9.16 9.36 8.98 9.31 11 6.85 9.19 8.56 5.38 9.55 10 7.87 9.55 11.6 8.68 8.66 9.93 9.07 9.4 8.12 8.76 11.3 3.2 0.7 7.76 7.93 8.39 4.83 8.2 12.5 9.97 9.96 10.4 11.5 10.2 10.2 10.1 7.39 8.5 11.6 10.2 11.3 8.54 8.83 9.1 12 10.3 12.1 10.4 10.3 11.2 7.45 10.6 9.91 11 8.4 10.3 11.2 9.54 12.2 9.08 0.4 7.77 10.4 11.9 10.2 8.68 11.4 6.74 11.2 7.59 9.29 11.1 11.7 10.8 9.86 9.62 10.1 9.4 11.1 10.4 10.1 7.19 9.41 8.44 10.4 9.4 12.2 9.26 8.99 8.96 9.27 6.39 10.4 8.62 11.3 9.23 12.4 8.61 7.15 6.43 4.83 8.32 10.2 5.07 4.42 10.6 9.2 9.98 10 10.1 10.3 12.8 9.94 5.48 8.81 0.4 9.34 7.46 7.81 10.1 7.94 10.8 6.82 1.53 10.4 6.92 9.78 10.6 10.6 8.96 10.8 4.51 8.68 5.04 3.04 3.55 8.55 9.59 7.87 11.3 10.7 9.6 5.38 10.8 9.13 9.38 11.2 13.5 6.08 5.55 9.43 10.3 3.34 8.83 11.9 8.59 10.1 8.35 11.3 12.1 9.37 7.49 6 8.66 9.95 10.7 9.53 9.67 9.22 8.06 10.9 7.19 8.99 7.72 8.95 9.98 0.7 0.4 9.19 7.42 10.5 10.4 10.2 8.74 13 8.79 1.82 7.61 8.07 11 7.21 11.8 4.31 10.6 11.4 14.5 11.8 8.91 11.9 11.6 8.66 0 11.2 9.89 7.98 10.5 12.6 9.38 6.72 9.93 1.94 6.99 4.07 11.8 2.99 13.1 8.84 10.8 9.93 7.26 9.79 10.4 10.8 2.74 9.65 8.04 8.82 0.4 11.2 12.4 8.39 6.46 8.98 8.61 7.11 9.71 10.2 8.21 8.76 2.05 9.2 10.5 8.76 11.5 7.66 8.89 10.4 10.6 6.97 10.3 12.1 11.1 11.2 10.1 10.8 0.7 9.22 10.2 10.6 0.96 10.7 8.27 1.22 13.2 9.4 7.31 0.96 4.45 7.66 6.24 8.8 8.86 7.2 6.82 11.2 9.86 9.66 6.99 9.28 10.5 10.2 7.49 7 5.56 9.55 7.42 7.18 9.47 9.22 11.5 6.42 7.94 8.53 8.61 9.71 11.1 10.4 13.3 5.29 7.45 9.17 8.83 6.62 7.79 5.44 10.2 3.55 11.1 4.81 10.5 9.74 9.6 11.1 9.65 6.09 11.5 9.06 16.5 10.3 12.2 3.43 12 3.73 12.4 4.84 11.1 4.42 7.49 2.26 3.25 11.8 11.4 9.74 8.99 12.7 7.9 8.91 7.38 6.85 6.09 2.8 4.04 10.1 11 7.74 6.43 4.45 6.83 8.99 0.4 9 6.54 0 6.66 12 9.98 9.71 10.3 8.79 9.78 8.74 10.7 8.84 9.57 9.6 11.7 10.1 10.6 6.21 10.1 7.67 3.39 10.2 8.69 8.07 9.23 3.25 8.79 5.62 1.68 8.8 5.75 11.5 6.58 7.42 10.7 9.78 11.1 7.29 9.71 14.2 7.77 6.64 6.06 3.21 8.77 9.11 8.79 8.93 7.93 9.59 9.44 10.6 10.6 1.36 8.11 2.67 9.13 8.79 10.6 11.4 10.5 6.64 1.18 10.8 9.89 12.5 10.8 10.6 5.12 3.39 9.32 9.77 7.92 12.1 9.34 9.99 10.1 10.6 5.76 7.13 9.78 10 11.1 10.6 9.98 11.6 11.7 4.57 7.76 10.5 2.44 6.83 10.8 9.13 9.44 9.85 6.33 11.8 6.2 4.97 9.23 12.2 7.3 9.53 7.88 9.7 9.07 8.28 9.72 1.18 3.51 11.3 10.9 12.9 9.28 9.48 8.8 8.35 2.26 9.17 8.82 9.81 10.9 8.05 9.85 10.8 8.77 10.3 8.49 8.32 10.1 8.02 10.3 9.16 8.93 8.17 9.68 10.7 8.87 8.75 10.7 8.8 7.24 9.01 7.93 10.2 9.53 6.79 5.44 9.26 4.98 9.18 9.58 7.7 6.61 11.8 4.97 8.98 8.13 7.81 10.1 3.66 9.27 8.2 8.26 9.87 8.03 8 8.87 11.3 10.7 12.2 6.46 11.9 9.24 9.84 8.77 8.27 10.5 8.29 7.23 5.79 4.31 10.3 3.77 8.38 9.59 8.8 9.91 10.9 0.96 9.93 3.76 9.28 11 10.2 6.83 5.39 9.69 8.73 7.64 11.3 10.6 3.15 7.49 4.38 6.93 10.7 7.8 1.82 10.3 9.98 9.49 8.93 10.4 4.53 9.3 9.73 8.91 5.63 8.7 9.78 6.75 9.86 8.93 9.64 8.98 8.35 9.35 7.86 4.17 4.01 9.36 1.82 11.8 6.91 1.82 9.38 10.1 7.65 9.82 8.98 2.74 8.62 3.55 9.63 1.82 6.76 10.4 9.09 10.8 6.72 4.69 9.57 8.18 4.58 10.9 8.95 13 9.67 9.27 8.96 10.5 13.5 8.73 8.47 8.82 7.84 8.66 4.2 8.88 9.64 9.4 8.55 9.33 7.84 7.65 8.1 8.97 8.64 9.64 4.58 8.2 9.74 7.93 7.68 10.8 10.1 8.27 9.46 6.48 9.5 7.05 2.35 7.65 0 9.72 5.46 4.58 0 9.77 7.72 3.73 11.4 7.8 9.46 9.19 9.01 6.97 8.93 6.97 9.96 9.67 8.2 5.91 8.55 0.96 9.26 9.4 0.4 9.93 9.89 9.95 9.86 9.15 9.99 7.54 9.49 0.7 10.5 8.61 5.52 10.7 9.08 7.2 9.74 8.13 9.68 8.11 6.19 8.48 10.1 9.44 10.4 8.96 9.92 5.21 8.8 10.2 11.4 9.06 9.15 10.1 9.59 9.23 7.96 4.58 6.84 8.18 5.54 8.31 9.87 8.69 9.86 11.8 9.72 8.8 10.3 9.08 10 10.7 8.67 10.5 10 8.23 11.2 10.3 10.8 8.53 11.2 9.88 10.3 9.92 9.92 10.2 9.04 8.41 2.93 9.35 10.4 10.3 0.7 9.32 11 10.4 11.3 7.84 8.47 4.75 10.8 6.73 10.4 9.9 9.44 8.76 9.55 8.51 8.21 8.03 8.85 8.85 7.63 11.9 9.02 8.09 7.13 10.2 7.16 8.65 0.7 8.73 9.44 8.05 9.42 7.94 11.7 8.26 9.4 10.4 9.48 1.53 8.85 8.17 9.19 10.1 7.99 10.2 5.52 10.4 3.73 9 12.6 7.67 8.54 11 7.62 6.35 8.28 11.2 3.77 11.3 11.6 11.7 7.23 10.4 8.34 11.8 8.15 8.26 10.2 8.89 9.86 11.6 6.99 10.8 8.3 8.98 8.4 8.99 8.96 5.42 10.1 0 3.15 8.7 8.78 9.86 6.37 6.72 7.51 9.54 9.19 10.4 9.37 4.64 2.87 9.64 5.32 9.96 9.53 8.18 10.6 10.8 10.3 8.93 10.5 8.57 11.2 9.27 8.1 9.34 5.25 8.97 7.41 7.91 6.58 4.27 9.57 8.93 8.3 7.71 11.6 4.91 8.28 7.7 10.3 7.14 8.8 9.91 5.09 9.47 9.7 11.1 7.03 9.51 5.52 7.06 6.16 8.24 9.48 8.26 7.38 8.38 9.85 1.36 11.3 9.59 10.1 9.23 7.68 7.62 6.09 10.6 9.41 10.2 8.53 11.4 8.58 7.84 10.3 9.45 10.3 9.04 10.4 0 9.17 9.24 8.02 8.8 3.95 8.29 6.88 8.46 9.25 0.7 3.92 9.74 11 9.89 8.78 9.53 9.31 8.09 10.2 11.2 10 9.09 11.5 4.55 5.43 10.1 9.64 8.93 8.34 7.94 9.56 11 7.91 9.92 9.18 9.14 8.9 7.1 10.7 10 8.77 8.59 7.54 9.55 10.8 2.8 7.2 10.4 8.85 8.96 13.2 7.91 8.64 10.7 7.51 6.36 9.86 9.73 8.42 9.06 5.64 10.3 9.14 10.1 8.47 1.53 9.91 9.45 9.1 7.57 4.64 9.55 6.51 10.4 8.99 9.14 9.49 6.58 10.8 8.71 10.7 6.48 10 7.22 8.78 11.4 10.2 9.75 7.09 8.65 10.1 1.36 3.92 8.5 8.1 9.38 10 10.5 9.64 12 9.31 6.77 10.3 4.29 8.07 10.7 8.92 6.55 9.67 13.1 10.4 5.68 8.56 9.95 9.85 8.42 7.56 11.4 10 10.1 11 6.14 8.95 8.7 8.62 10.4 8.82 10.2 4.29 8.49 7.93 9.28 8.69 5.62 9.89 10.2 11.1 8.85 11.1 4.97 11.5 9.88 9 7.23 8.41 8.25 11.1 9.58 7.76 2.74 8.82 8.21 5.57 1.5 1.36 9.84 11.6 1.82 8.24 9.13 10.6 11 5.77 9.41 8.91 7.33 8.43 9.07 9.7 0 9.72 9.29 3.39 9.56 6.9 9.78 11.5 10.4 11.8 9.02 9.03 4.84 8.31 2.29 10.4 8.68 8.37 10 8.6 3.92 8.18 10.2 10.2 9.36 9.8 9.42 6.41 7.99 8.42 9.24 7.05 10.4 9.34 10.3 4.99 6.68 10.4 10.8 10.8 9.6 9.58 9.72 8.81 9.13 7.04 7.24 9.91 3.25 0.4 7 9.02 9.36 9.32 5.06 9.57 4.86 10.4 9.41 9.95 8.88 8.6 8.49 11.1 10.8 5.72 9.24 10.9 11.4 11.2 7.61 6.18 8.15 9.47 8.97 7.97 3.55 2.16 7.96 4.04 8.13 7.71 8.06 5.12 8.48 5.66 8.46 11.2 9.26 10.6 7.9 1.68 10.3 7.8 9.75 9.7 9.23 7.66 3.15 9.32 10.2 9.85 2.87 7.12 6.16 8.72 7.03 11.6 0.96 9.84 7.91 5.14 8.62 9.92 6.42 4.03 0.7 9.18 9.84 6.51 4.24 10.2 2.59 3.98 6.91 6.39 9.3 9.28 9.28 10.1 9.38 1.36 8.01 7.94 9.86 9.75 11.7 0.7 11.3 9.7 7.44 4.45 10.8 11 7.1 9.24 8.01 11.4 9.19 7.7 5.53 8.69 9 8.17 8.69 7.21 7.17 10.7 5.81 8.07 11.6 8.89 3.95 7.36 9.1 8.83 8.27 9.46 9.21 8.21 10.2 8.9 9.99 10.5 10.4 10.9 10.5 8.67 11.9 8.33 8.2 7.73 8.09 9.3 8.57 7.68 7.71 9.2 10.5 7.83 12 9.58 8.92 7.23 8.89 8.88 11.2 10.2 10.9 10.3 2.67 9.14 9.98 9.95 7.46 11.1 10.7 10.7 10.4 9.03 8.09 9.89 11.1 9.55 6.93 8.52 10.2 8.22 10.8 8.63 6.15 10.3 10.5 8.37 7.88 10.4 12 8.13 9.24 10.4 9.07 11.4 10.5 10.7 5.49 10.5 10.5 10.7 8.51 10.3 7.39 11.3 11.7 10 8.13 9.3 10.5 6.47 11.2 8.39 9.98 5.81 7.08 9.8 8.37 9.37 9.75 9.6 9.39 9.33 7.58 7.16 10 8.93 8.93 6.06 8.82 12.4 8.94 7.79 8.01 8.87 10.1 11.6 11.2 10.4 9.04 9.2 9.31 9.85 9.63 9.08 10.1 11.2 9.65 11.3 8.44 8.73 10.4 8.09 10.8 10.7 9.5 7.4 9.69 8.37 5.24 9.52 8.94 6.04 8.77 9.81 6.9 11.1 9.25 9.95 7.72 9.43 4.29 9.25 9.11 9.26 7.74 9.04 7.05 9.02 9.49 8.84 8.47 8.66 6.52 7.66 5.87 9.98 7.88 10.2 7.21 8.76 7.29 8.74 9.92 3.7 7.15 6.76 10.8 9.54 3.15 9.3 8.21 4.45 8.82 3.73 8.71 7.76 9.15 1.18 7.5 9.77 8.58 5.39 9.71 10.6 6.31 10.7 9.2 6.28 10.2 9.58 10.5 9.97 9.21 11 9.66 7.87 10.2 8.7 10.2 6.8 10.5 9.74 9.55 11.9 9.75 9.06 8.78 12.1 9.67 9.86 9.26 2.09 10.2 6.27 9.28 8.39 9.88 6.19 9.48 10.3 10.5 9.63 9.14 0 8.31 7.22 9.74 9.64 8.23 8.68 9.47 9.56 3.95 6.72 0.4 13 9.86 8 11 5.58 11.3 10.4 9.4 6.62 8.65 9.86 10.9 7.83 9.17 9.7 11.4 10.3 10.3 9.37 9.23 8.82 4.81 12.3 8.25 6.12 10.7 4.12 10.1 6.65 11.3 10.8 9.41 8.08 10.1 10.2 3.92 2.35 10 11.2 10.4 8.38 10.4 9.34 5.47 10.6 9.35 8.73 9.15 7 1.68 8.46 0 10.7 10.5 9.13 6.64 8.34 9.56 9.73 12.4 9.22 10.1 10.7 2.99 8.38 9.27 7.29 10.5 3.69 3.38 7.13 7.22 4.81 7.64 4.41 4.35 2.52 8.7 4.53 3.43 5.77 7.26 10.6 3.7 5.16 5.4 6.74 2.74 10.2 4.09 3.55 4.34 3.39 2.16 1.82 2.16 2.05 1.18 3.34 10.5 1.94 3.43 1.68 2.52 1.82 0.96 8.87 0.96 2.16 0 4.09 11.6 0.7 7.42 10.3 1.68 8.99 11.1 2.52 7.33 7.19 7.64 11.1 1.53 10.2 10.5 6.84 10.2 8.67 4.91 11.5 10.8 5.74 10.3 10.2 9.85 8.63 7.01 10.6 11 9.25 2.35 5.43 9.97 9.56 11 9.6 9.96 10.3 5.97 7.58 10.5 8.43 1.94 6.89 8.42 4.31 9.65 6.67 1.94 11.2 4.49 9.85 6.35 2.05 15.3 10.9 8.67 8.3 10.3 8.29 8.86 10.3 7.68 10.5 7.02 1.18 9.82 8.63 10.2 9.14 8.81 4.88 3.3 7.88 2.26 9.51 5.23 10.7 7.57 11.2 9.84 15.6 5.36 2.74 11.2 10.3 11.3 10.1 11.6 8.34 9.41 10.8 9.71 11.8 10.4 10.2 7.33 2.44 11.2 11.9 12.1 11.4 10.2 9.83 11.6 12.2 8.2 6.98 9.43 11.3 9.21 11.4 10.2 4.27 11.3 9.88 8.57 8.39 11.1 10.6 6.16 7.42 11.6 11.6 5.87 9.3 7.48 9.38 8.81 4.45 5.97 12.6 7.13 9.26 8.63 7.85 10.6 10.8 10.6 7.93 11.7 9.72 9.58 7.77 4.64 11.6 10.3 10.8 9.05 9.27 7.89 9.03 7.34 10.4 10.3 11.8 11.7 9.58 10.7 7.45 7.62 8.93 8.3 11.5 3.66 8.66 2.35 9.63 10.3 10.9 4.76 9.76 4.12 6.85 10.7 7.81 4.86 8.23 10.5 8.18 8.61 9.98 11.8 10.3 8.75 11 9.08 8.64 10.1 10.2 9.54 4.49 0.7 9.81 8.02 7.69 10.8 8.15 10.7 2.18 9.88 10.5 9.86 11.9 10.2 8.85 3.83 9.87 9.29 9.04 11.2 8.71 9.67 12.1 10.7 4.31 10.3 8.6 1.18 11.9 10.9 11.8 6.47 9.21 8.29 5.64 11.8 4.24 11.4 0.4 12.2 2.59 8.27 8.09 8.95 12.1 2.8 8.65 7.98 10.5 3.04 10.9 8.49 10.2 9.11 10.1 4.92 8.52 7.87 9.74 7.43 9.4 8.9 9.9 4.55 8.71 9.46 10.9 11.5 10.6 8.24 11.4 7.4 11.5 11.3 11.3 8.01 9.44 8.01 9.87 9.4 11 8.11 12.6 9.13 2.52 8.31 1.36 9.64 8.87 9.2 6.25 4.07 6.07 9.91 9.85 9.07 11.2 10.6 10.3 10.8 8.9 7.33 9.1 7.87 10.2 9.97 5.47 9.67 7 9.12 11.8 10.9 3.66 9.12 6.46 10.3 10.4 12.3 7.99 8.68 11.8 10.7 9.12 10.8 8.07 3.86 10.3 9.54 11.5 1.68 11.7 10.2 6.24 9.84 7.88 8.23 9.21 5.21 4.12 12.7 7.72 11.2 2.26 6.49 9.77 10.8 12.7 2.59 8.47 9.59 12.2 7.6 7 8.5 8.52 7.22 9.07 0.96 10.2 8.07 1.53 2.26 10.8 8.98 5.71 4.97 4.97 9.31 7.42 1.18 1.18 9.92 8.94 0.4 8.12 7.14 10.3 9.25 11.2 7.06 12.3 3.98 10.1 8.27 8.34 3.86 3.55 11.1 12.7 10.2 7.93 5.89 8.6 5.48 3.95 10.6 9.29 6.91 10.1 1.36 8.93 10.2 6.25 4.97 4.2 6.85 10 3.25 12.2 9.49 12.5 4.15 10.2 10.2 8.21 7.56 5.16 6.25 8.54 10.7 8.54 3.34 4.66 6.04 11.1 8.18 3.47 9.92 9.21 8.86 0 8.51 2.35 10 9.06 5.46 8.1 10.8 9.15 10.8 7.64 7.8 9.74 9.85 8.22 9.86 8.75 11.8 5.88 10.7 6.26 11.5 4.23 4.49 1.68 2.44 4.2 6.74 6.76 10.8 10.8 9.33 4.89 7.16 11.1 6.63 8.95 12 4.64 8.87 8.72 6.91 7.15 5.3 6.7 9.44 4.73 6.61 10.4 0.4 8.92 9.08 7.42 7.53 9.5 9.09 9.44 5.9 7.31 7.16 9.01 8.51 3.51 15.2 9.32 6.48 9.84 6.18 0.7 5.82 7.17 1.18 6.76 9.92 1.18 8.5 9.84 9.53 8.57 8.68 9.64 10.8 9.64 8.29 8.89 8.85 7.95 10.6 10.2 9.66 5.89 9.84 8.49 11 9.58 11.9 9.07 9.33 7.4 8.9 3.98 7.81 10.2 7.9 9.29 8.7 7.09 8.88 0 13 7.79 6.37 10.8 9.49 6.91 8.12 6.04 9.97 8.41 9.14 11.7 10.4 6.88 6.22 6.94 10.4 6.09 11.1 11.4 10.8 3.92 7.96 9.27 10.7 7.79 9.36 6.86 12.1 6.96 7.87 8.49 10.1 10.6 5.63 4.57 9.58 1.68 7.45 6.12 10.3 7.59 7.09 9.44 8.45 9.06 6.3 8.31 5.1 0.4 10.2 9.13 10.1 9.34 10.5 8.92 9.68 7.89 9.79 11 5.88 8.65 4.29 5.67 8.46 3.2 1.53 7.28 10.6 8.01 8.54 9.85 10.8 8.48 5.46 6.29 8.32 2.05 8.63 7.37 6.17 8.41 8.32 11 11.1 8.53 10.8 10.3 9.76 10.8 9.35 10.1 8.85 10.5 11.9 10.2 10.4 9.82 9.65 6.84 3.77 8.08 9.05 9.85 2.8 10.5 5.32 0.4 6.3 5.65 11 9.78 6.03 11.2 8.38 11.4 6.38 12.3 9.5 13.7 6.6 2.74 9.69 9.27 9.97 0.96 7.58 3.43 3.86 5.46 5.89 9.77 7.44 6.62 11.5 9.04 8.12 10.6 8.62 8.11 12 4.64 10.7 12.6 9.41 9.82 7.44 9.64 10.6 10.1 10.5 8.85 9.71 12.1 9.39 10.6 9.09 10.1 8.97 10.8 9.69 4.29 9.15 5.24 9.22 8.98 9.56 9.61 9.91 5.84 11.5 10.2 10.1 7.67 6.41 9.57 8.07 6.7 7.26 9.01 6.49 9.07 6.8 8.73 9.62 9.03 10.6 11.5 9.94 10.9 5.23 9.95 9.38 9.79 10.2 10.4 9.92 10.1 9.84 3.7 9.95 1.18 0.4 12 8.18 9.67 11.2 9.18 10.7 5.67 0.4 11 9.99 9.97 11.4 9.72 10.7 8.9 9.25 7.77 0.7 10.2 9.94 8.12 11.2 12.6 12.8 7.45 8.89 9.31 12.1 12.1 11.4 8.3 8.62 6.8 7.08 7.73 7.91 11.1 12.9 10.4 10.2 9.8 12.2 10.4 12.4 10.8 11 12.5 9.87 11.1 6.61 4.27 10 9.27 10.1 2.26 10.4 4.64 10.2 9.83 5.09 10.2 9.99 8.98 4.17 2.93 4.83 10 8.46 9.16 10.3 8.04 2.67 8.81 9.89 11.7 11.6 7.97 10.5 10.3 10.6 11.6 9.99 5.99 0.4 8.89 9.8 10.6 0.4 4.47 10.9 9.58 3.86 8.45 8.16 9.46 11.8 0 5.14 12 10.3 8.81 8 9.22 0 1.17 0.96 11.8 4.12 5.92 2.67 11.1 10.4 2.74 5.92 10.4 5.31 9.81 9.05 3.34 5.9 10.9 10.1 9.44 12.3 11.1 5.62 3.77 12.2 8.91 10.2 9.85 8.33 9.06 8.79 10.5 10.7 1.23 9.53 10.1 7.4 4.97 0.4 10.4 8.01 8.46 7.61 8.76 16.9 11.1 12.5 2.67 5.91 2.26 1.36 10.6 2.35 11.4 8.89 8.36 4.83 9.66 4.17 9.6 11 10.5 10.4 11.2 2.74 0.7 6.79 7.29 5.13 8.12 9.5 10.1 7.89 7.96 10.8 0.4 10.1 7.09 0 8.63 12.9 7.66 10.4 10.5 10.6 1.82 9.47 7.46 9.77 10.2 8.94 8.74 8.85 10 8.66 3.43 9.34 10.4 12.4 9.79 11.2 8.33 10.8 9.11 10.8 8.02 8.42 10.1 10.2 1.68 8.37 11.4 4.91 6.85 9.21 8.9 10.2 11.7 0.7 0.4 7.89 9.85 5.22 10.4 9.7 8.96 10.7 9.44 9.92 2.67 10.9 9.53 6.07 9.36 3.2 10 2.74 7.86 7.56 6.68 1.18 11.6 10.8 9.28 8.43 16.1 15.3 15.1 13.9 11.3 11.2 14.7 1.51 15.7 11.9 14.7 15.3 13.8 15.5 14.8 13.6 14.9 12.5 15.2 5.04 13.8 13.1 10.6 14.1 14.4 14.1 14.7 14.6 15.2 14.1 14.9 14.9 14.2 14.1 12.6 14.5 14.8 13.6 8.98 9.55 14.6 7.68 15.2 15.9 14.8 10.6 9.34 12.2 12.3 14.6 15.4 13.2 15.7 2.72 0.96 4.07 8.22 5.6 14.2 0.96 4.01 15.5 10.3 10.2 9.99 9.13 10.2 13.6 15.3 15.2 13.6 15.4 14.8 13.8 14.6 13.4 14.2 14.8 14.6 8.67 15.1 15.1 15 13.7 14.6 15.1 14 9.15 11.2 14 9.84 13.5 5.34 9.97 11.2 8.87 10.9 11 9.75 1.36 5.77 9.26 9.94 6.74 6.55 11.8 10.6 9.95 7.66 8.25 7.84 1.69 9.09 9.95 6.37 3.1 11 4.15 13.1 7.45 6 11.3 12.3 1.36 11 9.28 1.18 11.2 10.5 12.2 6.38 8.47 6.94 12.2 10.2 10.7 13.1 8.82 11.4 11.7 8.97 10.7 2.44 8.84 9.33 8.71 9.57 6.58 7.94 7.1 6.46 6.19 6.14 7.46 5.47 12.4 12.8 2.67 4.29 7.63 7.75 7.47 7.55 2.44 8.53 9.99 3.8 6.33 8.46 6.97 6.04 0.96 6.86 11.8 2.74 9.24 5.87 4.98 7.04 1.82 0.4 9.56 16.4 7.16 5.84 2.93 7.9 8.85 6.58 10.7 8.23 1.18 7.7 10.7 10.8 12.3 9.26 9.98 9.86 9.32 9.97 11 9.67 9.9 10.1 9.39 4.84 8.26 7.51 6.14 7.19 10.5 10.6 10.6 9.4 8.75 10.5 6.52 4.48 8.28 9.91 10.8 10.8 7.29 9.71 2.16 4.29 9.87 5.25 6.81 8.86 7.61 8.41 7.38 11.1 7.33 11.6 8.06 8.01 11.3 6.47 11.1 4.04 8.1 3.98 8.05 7.84 10.4 8.62 7.65 10 11.1 5.27 10.1 6.29 11.5 11.8 10.2 9.57 6.92 11.1 4.01 9.79 4.45 9.52 0 7.25 5.67 10.5 4.84 9.28 7.37 2.05 6.1 7.59 2.74 8.31 9.02 10.5 8.29 7.86 7.1 7.73 10.8 9.45 12 10.7 8.65 10.9 7.53 8.32 8.04 5.54 8.83 5.42 6.41 9.39 2.35 11.2 5.65 9.05 1.18 8.68 0.4 11.2 9.28 4.17 8.4 6.52 8.15 12 9.62 9.34 11.3 8.52 10.6 6.78 7.9 6.61 7.43 6.39 9.72 13 3.2 9.01 7.62 10.7 10.4 12.7 10.4 10.8 8.12 9.29 9.8 4.94 6.93 10.2 10.2 9.18 10.5 4.92 10.7 9.96 9.25 10.2 2.44 0 5.87 3.47 12.4 7.75 12.1 13 5.17 7.76 5.93 9.65 6.17 8.41 8.58 8.74 8.28 11.4 5.59 3.8 2.8 4.1 12.6 7.42 0.4 12.2 9.81 8.1 11.3 11.6 9.69 9.05 10.8 7.03 6.8 9.64 9.04 8.71 10.3 3.7 6.46 10.6 4.83 0.96 5.46 5.89 11.9 9.91 9.72 6.98 12.3 9.39 2.44 3.3 10.2 7.33 8.85 6.85 2.67 9.38 7.2 3.43 5.13 6.56 7.08 3.3 0.96 0.96 5.89 7.52 0 10.1 9.59 7.32 10.5 9 6.84 10.3 5.92 10.8 8.8 2.87 7.61 7.58 8.53 7.47 0 1.18 8.92 7.13 2.59 8.8 10.1 9.94 7.78 9.38 10.2 10.4 9.25 9.83 9.26 9.82 9.58 10.3 9.38 9 10.2 8.4 4.71 3.47 1.53 2.26 4.92 7.57 4.62 4.8 8.73 2.74 2.59 3.47 9.57 5.83 6.13 8.61 4.51 11.7 1.68 5.05 1.22 8.27 10.4 6.04 4.36 11.4 6.99 1.94 7.35 2.05 9.67 8.52 7.73 1.82 3.84 4.15 0.4 11.2 0.7 3.77 6.71 5.18 0 3.51 8.79 7.64 5.14 2.8 7.49 8.54 11.3 0 9.91 2.44 3.1 5.35 9.85 4.17 6.73 3.3 11.5 2.16 9.52 6.53 5 9.19 0.4 1.18 7.49 11.1 8.61 4.94 9.12 1.82 0 1.18 0.4 3.04 3.25 9.78 3.89 6.15 5.93 10.5 10.1 13 7.22 0.96 9.27 10.9 1.68 1.68 11.3 10.4 10.1 9.32 9.71 8.69 7.98 8.73 8.34 11.2 10.1 7.01 11.2 10.8 10.1 4.47 9.46 9.91 9.47 7.73 10.4 9.12 9.17 11.4 9.77 10.2 7.93 10.2 9.33 8.85 9.39 10.3 10.4 9.17 7.57 10.2 8.46 2.74 9.59 9.62 8.84 7.94 9.72 8.31 8.48 4.69 10.9 13 8.91 4.72 11.5 9.47 5.37 8.41 8.42 3.92 9.13 9.86 9.52 9.98 3.77 8.73 7.66 7.16 8.31 0.96 10.4 10.4 8.57 3.39 9.94 9.61 9.16 10.9 10.8 9.53 7.76 7.97 8.04 8.04 9.07 5.73 8.52 2.87 5.1 6.79 7.94 8.12 10.4 3.15 7.17 4.83 7.68 11.4 8.81 0.4 9.24 10 10.7 8.85 10.7 4.89 4.09 11.1 7.57 9.68 7.26 8.24 10.3 12.2 10.4 0 10.4 9.67 10.1 9.7 10.6 11 10.2 10.1 10.7 8.84 6.25 9.95 9.8 10.2 0.96 5.86 12.8 10.4 10.8 9.17 11.1 7.8 2.05 10.9 7 10.6 4.45 8.51 3.43 5.29 11.5 9.8 7.53 1.94 9.8 3.59 2.59 6.01 6.22 9.45 7.32 9.58 9.08 9.8 8.3 9.92 10 11.3 1.18 9.75 11.8 8.62 10.2 10.7 2.8 11.6 7.96 10.9 10.1 8.33 3.51 8.38 8.23 3.59 2.44 7.37 11.5 0.4 10.6 9.87 5.74 3.89 9.08 7.92 9.18 8.67 7.88 9.57 8.91 6.65 8.36 11.3 10.3 1.76 1.94 11.8 0 4.17 9.74 1.18 8.29 1.53 1.18 4.8 7.55 2.16 2.74 5.99 7.25 0.4 1.18 7.44 4.73 7.82 8.49 2.59 7.47 6.08 2.35 4.99 8.23 10 9.09 9.48 10.6 2.59 8.92 5.48 9.17 1.36 11.1 7.7 4.38 4.22 4.4 10.4 2.52 7.8 4.49 3.04 6.42 0.4 9.17 6.87 1.82 3.3 2.67 7.25 8.73 5.17 8.23 0.4 4.64 8.3 0 6.89 5.39 6.71 0.4 4.15 9.7 5.49 5.41 5.39 3.73 4.22 0 6.08 0.7 9.18 4.09 7.54 10.2 8.95 5.93 8.94 7.52 8.03 1.18 3.25 8.99 9.98 10.8 9.84 10.5 7.87 2.59 3.59 4.03 8.33 6.12 12.3 9.78 10.2 8.81 10.4 11.3 9.33 12.1 7.98 7.81 9.78 11.7 10.3 8.66 11.2 9.93 9.55 7.52 5.27 8.43 10 11 7.77 10.8 10.3 10.9 9.89 5.91 9.7 10.1 3.8 4.73 1.53 6.76 12.1 9.68 11.4 11.2 11.4 7.12 7.93 9.43 11.9 4.08 10.3 11 9.72 8.46 8.08 10.7 10.7 12.2 8.22 4.98 3.59 8.45 9.22 8.3 8.49 9.34 8.25 8.44 11.4 13 11.6 9.46 12.3 10.5 9.51 10.9 10.5 12.2 11.7 10.7 10.8 9.94 12.2 8.66 10.1 7.3 12.1 10.4 9.59 8.03 0 12.2 6.05 9.89 7 10.7 10.1 11.9 7.44 12.5 9.9 9.41 11.4 9.66 2.05 8.27 0 7.33 9.77 11.4 9.65 10.3 10.3 8.08 10.5 6.6 9.2 3.95 12.7 9 10.9 10.2 6.32 8.7 5.89 10.5 11.1 4.78 4.2 6.83 7.39 12.4 1.36 8.82 11.7 8.03 9.55 10.2 7.36 0.4 10.3 8.26 12.5 10.8 10.8 10.4 12 12.5 9.53 9.83 5.96 11.4 10.6 9.37 9.94 11 9.38 10.1 11.3 10.4 11.1 10.9 12.5 10.7 11.2 12.5 6.35 3.83 5.93 11.2 11.3 12.5 12 3.15 13.3 3.39 11.6 11.2 11.6 9 11.8 11.2 4.12 1.94 3.83 1.36 1.68 2.35 2.16 1.24 13 2.63 0.7 0 2.87 12.7 11.4 5.98 8.16 0 10.5 10.4 8.84 8.27 7.83 10.1 8.51 3.15 0.7 10.7 11.3 6.76 3.77 4.94 5.88 7.98 10.1 10.5 9.08 11.5 9.6 8.53 8.16 10.1 2.05 13.6 0.4 8.98 10.8 11.9 5.39 11.7 9.13 10.3 9.64 12.4 10.4 10.1 8.86 13.2 10 8.51 12.1 9.35 7.42 12.3 5.19 2.16 6.77 11.4 8.64 8.68 4.29 2.8 1.36 10.1 8.08 4.75 9.63 7.74 8.9 8.37 8.54 7.5 11.7 7.26 10.8 12.1 9.26 10.2 10.2 9.34 9.41 6.04 8.89 4.99 0.96 12 13.8 11.7 11 13 9.2 9.53 10.5 11.1 3.98 9.67 10.9 9.35 13.1 8.57 10.4 8.37 7.61 7.3 2.87 5.96 9.02 10.5 10.7 8.17 2.35 4.12 6.96 9.66 2.26 0 12 7.29 11 10.8 4.84 4.53 11.3 13.7 10.4 9.56 8.56 11.1 4.51 11.8 8.62 9.81 9.9 10.1 10.2 0 7.5 10.6 7.69 11.3 3.43 0.7 10.4 9.51 8.91 6.6 10.2 9.18 8.11 4.29 12.2 9.59 7.85 9.92 5.62 3.43 11.2 13.6 9.11 6.8 8.75 2.44 9.61 9.74 8.23 9.84 4.29 9.01 8.61 9.1 9.23 4.15 10.3 10.9 10.7 10.7 6.28 6.9 4.07 9.89 6.68 6.93 11.2 9.69 5.66 9.48 4.38 13.4 9.67 0.4 10.7 9.93 9.23 10.6 7.51 12.4 0.4 8.73 7.5 7.04 8.59 10 9.8 2.74 10.6 0.96 11.1 8.02 1.82 13.7 11 10.9 10.6 9.84 8.93 10.8 12.3 11 4.47 10.9 9.4 10.1 9.98 12 4.07 9.71 9.9 11.1 10.1 5.18 13.1 11.3 6.48 7.37 4.95 7.3 16.1 11.9 6.64 8.36 9.37 11.5 7.86 9.22 9.92 8.83 9.16 11.4 15.4 12.1 8.7 10.3 4.22 2.35 9.55 12.2 10.2 11.9 3.39 11.7 9.87 3.77 5.02 1.36 3.73 11.7 6.79 12.8 10.3 13.4 10.8 6.44 3.89 11.5 12.1 8.86 11.2 9.77 9.67 13.4 10 9.53 8.86 6.1 11.1 0.4 12.2 10.2 11.2 7.47 12.4 11.8 9.12 9.28 11.1 7.32 16.2 0.7 13 8.77 8.92 14.3 8.39 11.2 7.96 8.97 7.59 8.56 16.6 0.96 12.4 9.2 12.1 9.01 0 7.22 2.05 0.4 5.87 8.7 8.01 0.4 4.42 1.83 10.9 9.77 13.1 1.94 10.6 9.12 9.45 11.8 7.31 9.76 3.77 8.77 10.2 10.5 11.4 11.6 9.23 5.86 9.33 9.06 7.08 8.33 8.97 7.29 3.15 1.68 5.55 8.05 10.2 7.01 8.16 4.78 5.95 5.54 6.7 7.59 2.16 8.65 7.09 0.96 6.28 10.7 10.2 3.77 7.04 4.69 4.62 8.64 12.1 6.67 5.82 0 7.77 8.91 7.74 1.53 5.95 4.71 7.7 7.58 5.53 4.15 4.68 9.5 7.07 3.7 13.1 3.04 9.59 1.94 6.37 0 1.68 6.28 8.98 5.92 9.03 0.4 1.94 10.6 3.83 8.55 6.67 4.84 3.59 7.15 3.32 3.39 3.98 6.61 7.03 5.31 0.4 5.83 7.36 0 7.52 5.96 4.57 0 8.66 11.3 8.18 4.66 8.26 5.01 4.4 10.6 4.86 8.28 0.7 9.52 12.1 1.82 1.18 3.51 11.4 6.36 8.23 3.51 5.77 2.05 7.83 8.48 1.36 7.04 1.53 9.03 7.63 8.52 6.04 6.6 1.36 10.5 1.82 12.3 3.15 14.2 3.98 15.2 15 13.2 6.85 10.9 10.3 10.2 7.99 11.3 12.4 10.5 8.9 10.3 10.9 8.99 11.8 5.76 11.6 10.7 11.5 9.39 10.4 8.2 11.3 10.5 12.7 7.98 8.36 2.59 5.08 12.8 5.51 10.3 6.8 8.86 6.1 8.79 11.6 0.4 8.18 9.57 7.99 10.3 10.6 11.2 8.01 4.27 12 2.16 12.4 11.9 11.8 10.9 11.3 11.1 9.47 10.6 11.8 10.3 1.53 10.9 10.7 9.34 8.87 10.7 11 10.3 9.88 10.1 8.34 9.96 13.1 11.6 10.9 11.4 5.65 10.3 10.8 8.54 0.4 9.32 0 12.2 14.4 6.67 10.2 7.97 5.76 6.7 7.88 9.47 7.99 0.96 3.7 5.79 10.7 12.6 10.7 11.4 12.4 10.8 9.7 8.94 9.07 9.06 8.47 11.2 10.2 4.66 4.42 3.73 10.2 3.92 0 8.6 2.52 8.24 7.24 6.85 4.01 1.68 8.78 7 4.55 11.3 6.51 0.96 12 4.58 8.76 10.9 6.51 10.3 6.67 11.9 10.6 5.01 8.91 7.34 11.6 12.6 9.38 9.39 10.3 12.5 10.6 13.6 10.9 11.5 13.7 12.3 12.7 11.7 6.52 11.6 8.62 9.53 8.73 7.1 10.3 9.47 8.47 9.11 6.57 12.7 7.68 9.13 8.02 7.88 8.39 7.42 7.96 5.96 7.18 7.71 9.7 10.4 7.44 10.6 7.92 7.42 5.08 10.5 9.74 9.62 6.68 7.1 9.05 8.05 6.65 9.58 8.8 8.17 6.72 6.03 3.39 4.94 6.51 7.17 8 8.45 8.8 9.74 7.42 1.68 9.48 2.59 6.8 7.67 8.43 0.4 8.55 6.73 4.17 5.47 11.1 5.31 4.76 3.2 4.64 1.71 3.15 4.41 8.49 8.98 7.09 8.72 8.15 8.1 7.88 6.58 7.36 8.9 10.3 7.03 9.08 8.46 9.75 3.39 10.4 9.99 9.67 9.93 8.06 7.57 7.87 2.26 11 5.61 10.2 8.82 7.54 5.14 7.23 3.43 7.55 9.17 7.69 7.49 6.57 8.37 8.63 5.43 7.19 8.98 10.5 9.56 7.81 8 7.1 9.01 11.3 6.71 1.82 9.3 2.93 2.05 10.9 9.64 6.26 6.86 5.74 8.88 0.96 8.74 6.77 8 7.19 9.22 7.47 7.53 4.29 0.7 3.04 7.92 7.88 5.46 13.3 9.76 9.97 13.5 4.86 9.91 5.67 12.4 4.69 13.3 7.73 10.7 8.14 6.79 12.6 9.38 8.9 8.89 10.4 8.93 12.2 2.44 6.81 9.05 7.54 12.4 7.24 4.49 10.1 9.96 10.9 6.43 9.11 10.9 11.5 12.5 8.86 6.02 10.2 4.57 9.47 11.1 8.72 5.09 8.44 10 10.8 7.15 9.42 1.36 5.54 9.24 10.2 5.74 10.4 12.1 9.07 10.9 9.65 6.58 8.02 9.63 10.5 0.96 10.2 9.67 8.32 9.12 8.23 10.8 8.76 2.8 13.4 10.7 7.82 8.47 8.96 10.4 10.1 9.5 10.9 10.8 10.1 11.5 5.78 9.89 7.18 10.3 11.4 10.1 9.07 7.56 9.94 8.39 9.96 10.4 9.98 7.38 7.15 7.18 11.3 6.59 7.71 9.64 8.02 9.46 9.95 10.3 9.75 11 9.89 5.76 10.3 9.41 8.02 5.42 5.25 10.4 9.01 9.55 3.51 9.26 10.1 10.5 11.4 9.01 7.49 8.97 8.36 11.4 10.2 8.95 10.1 10.1 11.6 9.69 8.67 6.03 6.25 10.1 4.97 6.09 7.08 9.77 10.3 8.89 10.2 9.62 13.1 8.65 8.89 2.67 4.21 9.61 12.5 2.93 11.7 7.19 5.22 10.7 7.61 9.78 8.53 9.36 10.2 11 8.78 8.02 6.44 10.5 13.2 7.54 10.3 11.4 10.1 8.62 7.33 0.79 9.17 4.38 1.18 1.36 11.2 6.25 10.6 9.68 7.95 2.26 3.1 2.16 9.1 2.26 8.65 8.89 12.2 10.4 8.09 11.2 8.63 8.52 8.84 9.32 8.92 11.1 2.59 2.74 1.68 1.18 10.6 8.33 7.53 0.96 8.92 9.1 7.94 9.53 8.65 9.16 9.67 8.76 7.21 10.6 10 10.3 10.3 9.51 10 9.72 8.48 5.25 7.46 10.3 10.7 7.45 8.69 8.68 7.75 6.38 8.04 8.16 7.32 5.05 11.1 9.79 5.51 8.13 6.29 8.9 7.46 2.59 8.28 7.41 9.21 3.73 7.78 7.86 5.83 9.08 8.36 9.32 10.4 4.78 11 7.97 6.64 6.61 9.77 9.25 7.83 9.05 9.6 8.58 10.4 10.1 10.6 8.72 9.47 8.17 8.18 7.67 7.81 9.62 9.71 9.37 5.65 8.42 7.35 8.47 9.3 9.6 8.76 4.89 8.24 9.55 8.6 10.3 9.57 6.93 7.98 9.75 7.74 10.3 8.29 8.65 8.11 7.88 6.66 6.7 8.71 8.82 8.6 8.47 9.6 10.1 7.17 10.7 9.06 9.29 8.65 9.02 9.22 10.3 9.62 11.7 10.2 9.87 3.63 8.32 10.4 7.26 10.3 7.98 5.71 5.87 8.52 7.29 8.45 10.8 8.09 8.06 2.59 0.7 8.36 7.93 8.65 9.6 0.4 10.4 2.26 9.6 9.44 8.09 9.45 11.1 8.13 9.13 6.55 8.53 7.89 9.7 7.92 8.42 10 5.19 8.62 7.11 9.07 10.4 7.69 8.89 8.95 0 4.27 6.72 8.02 4.8 8.65 11.3 9.7 11.8 8.05 8.95 9.14 10.4 6.69 8.23 0.96 9.39 8.56 6.97 8.2 7.11 10.8 9.13 10.5 4.92 4.22 4.04 8.38 6.52 6.04 8.37 1.94 7.54 6.75 5.86 2.05 8.11 9.06 7.6 7.99 10 7.76 9.7 1.68 9.12 1.68 6.39 7.87 7.73 4.45 7.44 4.51 5.46 8.02 5.12 8.47 7.31 0.4 8.44 9.1 0.4 5.67 8.85 1.18 6.28 3.92 6.42 10.2 6.73 7.46 7.86 8.52 8.3 11.2 3.39 8.08 9.2 8.61 9.48 10.1 9.34 10.6 5.96 9.45 9.68 6.04 7.68 9.31 8.6 9.34 10.3 10.4 9.28 10.3 10.4 10.2 6.06 7.54 8.9 7.27 7.92 10.4 9.98 11 4.8 7.55 2.93 10.7 8.58 8.07 6.43 6.09 8.29 11.4 7.43 0.7 8.72 7.26 6.32 8.68 7.13 6.68 4.01 11 1.53 10.1 0.7 7.5 10.4 10.1 1.53 8.32 6.61 3.29 9.36 0.4 2.35 9.23 4.64 9.07 5.66 10.2 7.12 10.2 9.88 6.5 9.97 8.28 7.96 9.28 10.5 6.22 5.45 9.1 7.58 9.21 6.63 0.4 5.89 7.33 5.36 11.8 9.93 2.05 4.91 4.47 11.6 2.52 2.16 7.72 10.4 5.13 8.68 7.61 5.93 7.79 10.9 9.82 8.63 7.04 10.6 8.3 7.43 9.65 8.77 11.2 10.1 9.98 9.93 8.61 7.66 1.36 1.53 2.8 8.13 9.24 8.54 7.93 0.74 5.99 3.2 0.4 8.59 11.4 12.4 5.8 7.74 1.94 5.47 7.57 0 8.57 6.33 7.15 3.89 5.53 3.8 9.77 7.74 10.5 9.3 10.9 10.1 10.2 11.9 7.37 8.43 10.2 9.85 9.02 9.43 8.44 13 5.9 10 8.1 8.16 9.2 7 8.18 8.53 10.5 8.53 8.8 10 9.2 8.86 9.81 9.94 9.62 5.68 9.81 8.87 5.94 9.47 10.1 9.22 10.9 8.35 10.5 9.99 8.29 4.4 10.6 8.38 9.82 8.89 9.46 8.21 9.29 10.6 10.8 6.39 10.6 10.2 7.04 7.01 2.93 9.82 8.45 8.01 3.55 8.81 6.51 5.91 8.91 8.64 7.54 10.1 9.12 5.39 12 9.34 6.29 8.3 9.85 10.3 7.51 8.15 11.1 9.42 7.1 9.23 11.8 7.64 8.61 6.6 8.56 8 6.79 6.19 7.77 10.9 9.69 5.3 9.37 10.3 5.12 2.05 1.82 11.6 4.98 2.67 11.8 8.94 2.52 6.65 10.6 11.1 6.53 9.65 11.1 10.4 3.25 10.2 6.51 9.56 6.68 4.55 9.87 9.55 13.2 8.78 5.14 9.43 11.6 5.57 11.3 6.72 8.28 9.51 6.9 7 10.8 8.9 11.7 8.47 3.92 5.69 4.64 5.93 9.18 8.57 7.67 9.97 6.93 5.24 7.04 7.56 7.05 11.6 9.78 6.27 9.56 11.8 7.86 7.71 10.7 7.49 11.3 13.5 9.79 12.3 9.98 13.4 8.28 8.66 9.21 9.03 8.1 7.43 9.88 10.2 9.96 7.28 10 0.4 10.3 10.2 7.99 9.54 7.43 10.4 5.27 6.48 8.65 4.02 11.4 8.85 10 6.61 7.52 3.77 11.4 12.6 8.56 2.26 4.27 11.4 5.69 6.59 8.35 6.72 11.4 12.2 14.8 3.66 7.76 5.71 8.73 2.35 12.5 10 10.1 3.55 7.86 8.84 12.8 9.86 10.3 4.04 10.2 1.53 0.4 11.3 8.06 10.4 9.27 7.89 11.1 9.45 4.71 7.77 9.28 8.75 10.9 6.39 10.4 9.48 9.91 7.87 9.04 9.59 9.66 9.2 9.39 8.63 10.8 1.53 7.78 8.88 9.37 8.59 9 10.1 9.11 5.53 9.07 5.64 7.53 11.7 10.9 10.8 4.68 9.85 9.24 8.95 7.01 11 9.91 8.25 0.4 7.51 13.4 10.7 10.6 10.5 9.87 6.82 8.75 11.7 4.61 10.6 8.79 11.6 9.86 12.3 9.01 7.72 5.67 8.68 1.36 10.7 4.73 2.59 12.1 10.7 8.41 6.59 7.17 8.87 5.32 7.52 10.8 9.08 8.11 8.92 6.49 8.85 9.25 7.73 7.51 10.2 4.05 9.01 6.19 11.1 10.6 6.57 9.87 9.01 12.5 10.5 8.76 9.19 11.8 10.8 9.65 1.87 9.98 10.4 2.9 10.6 10.4 8 9.79 2.52 7.58 5.71 8.4 9.97 1.18 10.1 9.29 7.63 11.7 13.1 11.3 10.3 9.34 11.4 9.65 0.96 10.2 8.37 11.2 9.26 12.4 9 11.9 11 12.3 11.7 11.9 11.2 7.41 12.9 10.4 8.17 10.6 8.52 9.56 9.64 3.43 8.84 1.68 11.2 11.4 8.65 6.61 9.13 2.99 10.8 10.6 11 11.8 8.14 10.4 8.77 10.6 8.79 11.1 9.35 7.83 9.05 12.8 4.36 9.13 9.52 9.13 7.41 11.6 3.98 2.93 9.7 1.82 2.67 2.35 12 3.25 10.2 5.6 4.4 5.67 9.68 2.52 1.36 2.67 3.25 1.68 2.16 11.2 4.38 10 12.3 11.5 9.52 6.6 3.47 4.57 7 8.4 7.98 1.68 8.9 9.06 9.98 9.3 6.82 5.68 8.03 9.26 8.47 8.49 2.26 7.96 6.9 11.2 9.45 10.6 0.4 5.45 3.15 4.01 4.99 0.96 8.72 8.97 8.48 8.01 6.79 9.35 10.3 2.8 9.2 2.67 4.78 1.82 1.36 10.4 6.98 4.45 11.1 7.69 7.8 9.05 9.76 2.67 7.97 11.7 10.8 9.1 8.57 0 5.34 9.27 11.1 11.1 1.18 8.85 10.1 10.1 13.7 5.93 6.88 1.94 4.53 11.5 0.4 10.3 10 9.89 2.87 9.24 10.3 9.02 4.04 9.47 10.1 0 6.58 9.28 10.2 9.79 11.5 11.3 9.21 9.94 5.98 6.73 10.8 6.01 4.5 1.94 9.05 3.04 6.86 9.44 9.6 10.3 5.41 10.2 9.31 3.2 4.94 9.38 10.6 9.42 10.6 1.68 5.16 1.82 8.42 2.74 4.15 9.55 4.24 10.7 9.65 6.98 4.95 8.86 11.1 4.51 9.73 4.95 5.66 9.84 6.66 10.2 0.96 6.19 1.36 4.92 3.3 3.25 0.96 4.17 7.41 9.56 7.98 6.9 9.21 9.63 6.73 9.71 9.29 5.96 11.1 10.4 8.64 8.84 7.7 2.52 0.96 7.79 1.94 8.43 11.3 9.64 9.52 5.83 10.7 10.9 11.7 7.24 8.46 1.18 4.66 4.58 1.94 11.7 9.1 7.76 6.75 11.2 10.7 10.8 11.2 10.4 0.7 8.48 7.67 8.77 9.76 6.57 8.25 10.6 9.49 7.93 10.1 10.8 10 6.96 3.3 13.6 3.15 4.73 0.7 5.09 7.26 6.33 9.72 10.9 9.78 9.27 6.18 5.9 7.63 10.8 2.16 9.26 5.77 4.8 6.84 8.16 7.78 7.31 7.86 7.98 9.35 8.66 9.58 8.39 8.52 8.11 8.64 8.82 7.6 7.89 7.62 7.99 4.78 9.41 10.7 4.47 10.8 8.57 10.2 2.74 9.69 10.1 10.8 9.28 8.63 10 9.73 6.85 8.87 8.91 9.23 6.07 8.59 9.56 7.66 8.9 8.68 9.55 3.43 3.2 6.94 9.44 10.4 10.2 1.68 8.79 7.3 7.18 5.48 6.35 5.18 9.46 2.68 8.06 4.89 6.11 6.29 5.98 4.2 2.35 8.14 10.8 11.7 8.15 8.32 2.26 8.73 9.33 9.26 9.24 10.2 9.95 7.73 11.1 7.21 2.8 5.02 9.07 8.71 11.5 0.96 8.9 8.69 8.22 9.89 9.78 7.25 9.7 10.5 8.42 9.8 9.34 10.3 8.3 11.8 8.5 9.8 9.33 7.61 9.27 8.88 5.74 8.61 11.9 8.95 5.04 9.7 8.43 9.72 9.16 10.1 8.84 6.32 10 1.18 8.76 11.3 8.71 8.97 7.46 9.59 9.85 8.59 10.8 2.41 6.97 7.65 9.6 9.73 7.5 7.74 10.2 0 11.1 10.2 7.72 10.1 7.8 8.39 10.4 9.74 8.21 8.7 9.11 10.2 10.9 11 2.59 8.19 7.7 9.04 8.09 0.4 9.85 9.16 10.3 9.91 10.8 7.78 9.13 8.91 9.55 4.07 6.77 11.8 10 6.27 9.35 8.91 10 1.94 10.4 6.45 9.08 6.16 10.3 10.8 8.17 8.03 5.09 7.2 7.76 6.1 10.4 11.6 7.8 10.6 8.87 7.44 8.98 10.4 3.86 7.07 7.94 3.2 9.9 8.19 9.93 8.17 2.87 4.98 2.16 3.65 10.2 9.56 10.4 7.3 4.42 6.82 10.3 8.09 9.95 7.91 10 6.48 3.86 5.39 10.6 8.39 9.99 6.93 9.48 8.98 7.58 9.15 11.1 5.95 10.6 5.74 7.12 10.5 7.13 9.28 8.72 9.72 9.23 8.03 4.2 3.55 10.6 7.79 8.45 1.94 7.72 8.3 2.99 10.7 10.8 8.2 3.2 7.69 1.94 4.12 8.23 9.15 4.98 11.8 8.71 12.1 0.96 4.49 8.41 8.99 10.2 5.76 7.2 9.01 11 5.21 0.7 7.03 3.73 9.44 10.8 7.48 8.66 10.6 6.66 6.83 8.12 9.81 3.04 1.26 7.52 9.46 11.2 2.05 4.57 7.18 5.58 2.16 2.67 4.73 11.6 10.3 2.74 6.42 8.56 7.7 10.1 8.2 3.8 12 9.4 8.32 4.47 12.4 8.95 11.2 8.8 7.39 0.4 1.82 10.1 8.56 6.45 8.46 8.58 8.63 8.13 6.4 8.31 6.9 6.2 7.68 8.74 10.5 11 6.36 9.08 6.88 7.6 11.2 10 7.38 6.27 6.13 8.4 9.77 9.17 9.79 6.26 4.83 5.87 7.06 9.44 7.96 8.91 8.56 11.7 3.2 8.46 9.47 2.05 2.8 10.3 11.3 6.35 8.78 0.4 6.52 9.67 3.25 7.43 6.93 10.2 7.53 8.71 8.88 7.49 8.62 8.29 8.81 7.53 3.63 3.59 8.44 7.65 12.5 9.12 9.23 5.1 9.09 8.16 9.26 9.32 8.85 9.38 2.44 9.24 11.4 6.05 9.95 9.53 9.44 7.69 8.79 10.9 6.78 9.67 9.23 7.6 7.78 9.53 7.75 8.42 9.06 5.28 8.62 8.95 8.21 4.6 9.46 7.7 10.5 8.94 5.93 9.6 9.86 7.06 7.96 10.3 8.71 0 8.48 8.07 8.41 9.1 9.66 9.85 10.7 7.83 10.1 8.06 7.29 8.87 0.7 8.46 8.98 6.12 8.41 7.99 10.4 4.92 9.36 0.96 9.28 8.23 8.22 11.8 9.89 9.85 3.43 6.59 9.75 8.12 9 6.91 8.56 5.3 9.94 10.7 9.84 7.76 0 11.1 6.69 0 6.62 3.2 9.8 9.74 9.53 4.2 0.96 11.1 10.7 10.6 7.01 9.72 7.04 6.04 10.1 3.63 8.09 9.32 9.49 10.4 6.31 5.99 10.9 10.1 8.6 8.88 8.57 9.57 9.59 8.37 8.61 7.69 9.31 10.8 9.47 7.57 2.8 9.91 6.47 0 9.7 9.89 12.5 9.98 0.7 10.7 1.94 11.4 11.7 8.64 10.2 3.77 1.94 8.26 0 8.48 7.93 11.9 8.53 8.93 0 11.4 3.3 2.52 10.6 5.54 10.7 9.58 9.81 10.7 8.83 7.9 8.79 10.5 9.42 10.4 9.59 1.82 7.01 9.75 10.8 9.21 10.9 8.54 9.33 8.56 10.2 3.34 9.17 10.3 3.66 4.68 7.49 1.82 11.4 10.6 9.68 7.89 4.97 8.21 9.78 5.67 7.76 3.51 11.2 8.78 10.3 9.31 5.89 12.9 8.65 6.56 8.19 9.58 8.83 8.05 8.99 7.18 9.53 8.64 5.22 3.33 9.19 3.92 4.71 2.8 8.27 2.59 3.89 4.97 9.01 4.8 3.39 10.8 7.65 8.39 7.29 4.68 10.8 8.96 10.8 10.8 9.47 3.92 11 13.6 10.7 10.3 9.25 10 11.6 7.65 8.68 11 9.38 9.69 5.83 7.73 9 7.74 9.67 8.14 1.94 2.99 9.93 9.88 8.87 6.98 10.3 3.47 5.14 11.5 9.6 8.02 10.3 5.01 9.88 4.17 4.57 9.39 4.04 10.7 8.84 11.3 10.9 9.52 12 3.43 8.7 6.04 3.83 9.07 10.3 10.9 8.64 6.73 8.54 9.21 6.86 8.55 3.77 8.67 8.46 4.38 10.3 10.1 10 10.2 9.33 7.93 11.8 9.74 9.16 9.32 12 12.6 6.25 13 12.4 12.4 12.4 12.1 9.9 9.65 6.64 10.1 11.6 8.43 11.1 6.42 9.15 10.2 8.62 9.61 11 11.8 4.07 7.95 9.7 7.06 10.1 9.18 8.96 11.2 2.3 9.48 9.7 8.65 7.82 8.18 3.43 0.7 12.6 8.12 6.42 9.26 8.61 7.59 11.3 13.3 10.3 9.04 11.5 10.4 8.82 9.66 7.7 10.6 10.3 9.61 8.9 11.5 5.8 9.42 8.4 6.84 3.55 10 9.79 8.72 4.36 0.4 1.53 2.93 11.1 9.46 7.71 14.4 9.2 11.4 12.9 11.6 11 7.5 9.11 9.77 9.76 9.16 12.2 10.3 5.89 8.41 5.44 10 7.31 7.42 3.6 9.33 7.81 5.49 6.76 5.08 9.57 6.13 8.71 9.71 1.82 5.93 9.82 10.9 9.55 12 9.23 6.17 6.64 2.44 1.18 10.4 9.55 3.25 12.1 10.4 5.34 10.5 6.99 3.25 6.5 9.51 10.1 3.59 11.2 10.3 11.7 8.49 9.11 5.83 9.75 9.62 9.21 8.21 9.24 0.7 6.93 0.7 10.1 5.48 4.36 10 9.63 8.14 7.65 15.2 9.54 7.19 8.07 3.66 2.16 12.4 1.82 9.44 10.2 6.45 9.55 8.47 7.63 8.86 9.6 6.18 10.8 10.1 9.97 6.24 3.43 9.86 14.2 11.4 10.2 10.8 9.21 9.73 8.72 10.2 10.8 11.1 9.04 9.95 8.96 9.97 10.8 10.9 10.4 10.7 9.87 9.3 10.1 0 9.79 6.56 12.3 8.64 10.7 11 5.38 2.16 10.2 10.7 8.87 6.06 9.52 5.87 9.9 8.61 8.57 9.54 10.5 10.4 7.22 5.18 3.51 9.63 10.6 11.3 8.43 8.78 7.21 9.33 9.99 11.9 9.36 5.67 11.8 9.03 12.3 2.99 3.47 6.27 13.4 2.8 1.53 7.87 8 9.9 3.66 7.86 9.92 6.01 8.87 7.34 9.78 8.64 7.84 7.85 5.52 5.18 3.86 4.51 9.74 10.6 8.9 9.74 9.74 8.87 8.31 3.15 10.4 5.47 6.75 1.94 5.2 4.57 1.61 0.4 8.61 3.59 9.52 11.5 8.08 9.78 8.26 9.59 11.7 6.69 0 10.3 8.73 11.3 5.82 10.1 7.97 8.05 5.55 7.32 7.64 7.17 5.48 8.69 11.2 11.2 9.82 4.78 5.82 8.67 6.33 9.87 8.54 2.05 10.6 10.5 10.3 0 10.1 11.2 7.85 5.79 5.83 7.25 10.8 10.4 10.4 9.47 9.81 8.69 8.5 9.98 7.67 1.36 2.87 10.5 7.98 2.26 2.8 1.94 8.92 10.4 9.16 0 6.21 5.49 4.97 1.36 7.8 11.2 10.2 7.24 8.94 10.8 9.76 1.53 7.3 7.5 8.83 6.7 1.82 8.08 7.08 7.83 8.61 9.85 10.2 7.89 9.96 8.64 3.39 11.2 9.9 9.27 11.1 9.14 8.67 5.62 10.4 9.7 8.73 9.94 13.8 8.84 9.26 7.94 6.95 10.7 3.73 10.2 11.5 8.81 7.67 5.56 10.7 8.97 4.34 9.76 8.76 6.53 8.15 8.56 8.69 9.71 8.2 9.38 7.79 10.2 6.89 8.56 0.4 4.93 7.98 7.9 6.43 11 8.82 7.97 7.56 9.16 8.53 10 8.84 4.66 4.27 5.41 7.74 9.08 3.25 8.96 6.34 10.4 9.51 7.07 8.63 6.21 0.4 3.89 11.2 7.58 9.53 11.7 6.14 9.1 9.39 7.38 5.96 10.8 10.3 2.52 11.8 11.7 5.94 10.6 7.36 9.58 12.7 10.6 11.8 9.97 10.9 9.81 6.02 9.23 9.94 8.79 2.93 9.31 7.69 9.37 8.35 9.49 8.92 8.88 10.4 9.39 10.1 11.4 6.59 10.4 1.82 8.4 8.8 8.85 9.04 5.17 10.4 9.36 8.94 9.74 10.9 5.86 5.19 7.36 7.77 12 7.44 8.32 9.55 7.17 5.16 1.53 9.41 4.07 7.67 5.69 8.25 9.1 12.2 7.04 10.2 10.3 5.49 9.94 9.29 7.42 11.6 10.2 8.75 13.1 10.5 10.3 12.2 9.81 8.3 7.92 3.51 10.1 7.4 10.2 8.62 0.7 7.39 9.24 9.23 9.92 8.54 12.5 9.42 7.36 11.7 8.63 8.16 9.9 7.36 9.94 8.01 5.54 8.28 12.2 5.67 10.3 9.11 4.04 8.44 12.2 11.6 9.07 7.08 10.8 12.2 10.2 9.99 8.01 5.77 7.42 10 7.67 10.2 10.9 11.1 3.98 9.81 13.1 9.22 9.75 4.68 10.3 6.75 7.11 0.7 8.89 9.53 9.23 7.53 2.35 10.3 6.87 11.3 14.2 7.28 10.9 10.6 9.28 7.56 8.71 9.11 6.51 7.35 1.36 6.48 11.1 9.49 5.76 2.67 5.53 0.96 11 9.41 8.45 10.8 8.93 8.2 7.51 4.36 11.1 9.3 8.77 8.44 11.2 7.85 7.27 8.81 5.49 9.28 7.95 7.96 8.76 11.1 6.76 11.2 9.64 0.7 3.63 7.65 8.69 0.96 9.37 6.11 8.79 8.42 7.31 2.99 8.43 8 12.3 5.54 9.06 5.54 7.76 9.03 10.1 10.4 8.63 8.15 8.6 10.3 9.51 3.73 9.68 6.9 9.11 8.79 10.1 8.93 9.55 9.01 10.9 11 11.3 6.08 9.36 10.2 11.7 9.77 11.9 1.94 9.53 10.9 4.81 7.46 3.04 10.9 9.25 4.94 8.83 7.51 8.94 6.61 5.16 3.15 0 4.8 2.67 10.2 12 5.87 11 11.4 6.68 10.3 9.92 6.27 7.67 7.93 7.17 12.8 5.3 9.82 6.8 10.3 10.1 8.33 12.3 10.9 8.65 4.66 8.51 7.31 8.22 5.54 11.3 8.37 0.7 9.39 12.8 6.42 7.38 8.48 6.25 10.1 8.27 9.11 6.32 10.2 8.34 4.39 8.27 9.89 12.8 12 9.86 11.5 8.44 10.4 10 10 7.57 11 9.03 11 8.68 4.4 4.17 9.93 10.2 10.2 9.73 10.1 8.34 10.4 10.9 10.4 10.1 4.17 10.9 11 8.87 6.04 9.49 10.4 0.7 10.5 7.41 9.09 11.7 11.4 7.3 9.27 10.2 9.38 6.35 9.01 4.8 10.9 11.2 7.23 4.29 9.56 9.88 8.88 4.36 9.6 1.53 0.4 7.61 8.49 10.6 8.38 6.2 9.78 6.68 9.55 8.21 4.71 9.78 9.75 7.84 8.49 11.8 6.25 5.16 6.92 10.4 8.14 10.1 7.87 10.9 8.18 9.31 10.3 5.36 11 9.17 9.66 11.4 7.91 4.12 8.55 7.12 8.96 8.54 0.7 9.55 10.7 8.92 10.6 8.13 9.33 10.9 9.92 9.43 11.1 10.8 10.8 5.81 6.44 10.7 14.5 0.4 12.4 7.53 10.7 7.26 10.3 0.4 7.12 0 5.9 6.91 6.38 7.98 9.68 11.2 10.4 3.34 12.9 9.09 9.77 8.66 6.5 8.67 10.2 6.43 5.8 1.71 7.91 7.31 8.06 11.1 3.15 9.92 9.1 9.26 9.03 10.6 10.7 0.4 7.09 10.8 7.3 9.62 12.3 3.73 0.4 8.69 0.4 10.7 6.27 10.9 5.81 9.59 8.08 12.2 0 6.08 0.4 9.65 8.43 6.91 10.2 9.77 7.24 9.49 9.76 10.5 0 11.7 5.16 7.83 2.26 7.91 10.3 9.03 7.41 10.8 9.32 0.96 9.83 9.22 2.8 10.1 9.75 11.6 9.13 10.2 10.1 9.41 8.01 4.92 10.1 8.06 0.96 10.5 10.9 2.99 11.7 8.7 7.94 2.26 9.69 11.6 12.1 6.81 7.74 10.8 8.04 2.26 6.22 6.01 4.22 10.3 1.36 9.07 6.48 9.28 8.82 9.16 8.15 10.9 14.4 11.6 3.39 11 7.31 8.07 8.07 9.65 9.61 11.7 7.77 4.89 9.87 1.36 8.05 9.29 7.64 9.74 11.6 3.7 10.3 10.3 10.4 5.93 8.62 9.23 7.18 3.95 8.73 8.03 8.83 1.53 6.52 9.22 9.35 5.6 7.87 9.89 9.3 11.8 8.27 5.88 7.04 4.99 0.96 9.07 11.7 12.1 7.87 6.41 6.54 8.21 10.8 8.66 10.6 10.5 1.53 0.4 12 8.73 6.28 8.58 8.43 10.3 8.52 9.26 11 9.82 10.2 9.61 12 9.79 9.66 5.64 7.88 6.69 9 8.22 11.5 4.86 9.73 10.5 7.61 10 10.1 6.41 9.35 9.42 7.87 10.8 11.3 11.4 11 9.45 9.66 12.3 10.7 9.91 10.2 2.35 8.38 11 10.2 10.6 8.16 8.55 5.12 9.84 9.38 4.57 9.35 10.9 10.4 6.97 9.96 6.01 7.01 12.2 8.06 6.05 9.17 11.8 10.5 4.66 10.1 12.3 8.9 4.92 10.3 10.1 12.4 9.96 9.96 9.09 4.58 11.2 7.38 10.2 12.1 10.5 7.02 10.6 9.76 10.3 9.9 5.28 8.38 8.61 10.7 4.62 7.95 11.4 6.29 2.52 11.5 9.47 7.26 10.1 10.4 9.46 11.3 11.3 7.91 8.17 10.7 10.4 8.89 6.76 7.52 7.46 8.34 9.37 9.19 7.82 8.78 10.2 8.99 7.59 9.14 13.3 12.2 7.55 9.45 10.8 8.95 11.5 5.54 10.7 13.5 10.4 4.76 9.5 9.27 9.15 9.47 9.22 7.87 9.95 12.9 10.7 8.43 10.5 10.5 9.74 10.4 11.2 4.42 10.6 11.7 8.37 9.87 9.08 8.57 9.32 10.9 10.1 9.19 10.7 4.12 8.42 3.95 8.92 11.2 9.67 11.5 9.75 1.68 8.37 6.36 10.8 6.61 8.99 8.99 8.12 8.84 9.01 3.15 6.61 7.4 16.2 2.44 1.53 9.28 9.97 9.34 10.6 8.58 9.66 9.37 9.79 7.24 10.7 6.1 8.72 10.7 8.64 8.82 10.5 7.93 12.4 10.1 7.98 11.7 11.1 5.94 9.32 7.17 13.6 9.65 6.22 7.31 6.46 8.89 10.3 10.7 10.9 9.54 11.8 7.32 8.48 8.34 11.3 7.7 9.72 11.6 8.87 8.76 11.9 11.2 11.6 11.6 10.5 9.88 10.4 5.93 11.5 9.39 12.8 7.28 12.1 11 8 9.41 9.29 9.71 10.3 10.6 10.5 10.8 10.3 5.08 10.9 11.7 8.21 9.43 12.1 12.2 10.4 13.6 10.4 2.59 11.4 8.41 10.4 11.1 10.4 10.4 8.32 10.9 9.56 8.44 10.5 9.56 9.84 8.81 8.94 9.42 5.59 10.2 6.37 9.98 10.9 7.45 7.36 8.33 5.69 8.11 8.23 7.96 10.7 9.44 8.36 9.65 4.89 9.1 9.52 9.67 5.62 8.67 8.66 10.3 8.26 8.49 8.89 5.45 9.44 9.31 9.02 7.26 10.3 11.3 6.83 7.71 8.5 10.7 10.6 9.82 9.5 9.25 9.38 9.72 10 9.27 11.7 10.7 10.2 9.6 7.55 9.76 8.77 11 8.37 10 7.13 11.2 9.39 11.7 4.12 7.7 10.7 9.78 8.67 9.73 11.3 7.17 8.6 7.68 9.18 9.88 11.2 9.8 10.6 8.09 10.1 10.6 10.1 10.8 7.93 8.06 8.48 9.97 1.68 3.04 9.87 11.5 11 9.84 12.2 11.3 9.63 9.97 8.47 10.1 10.8 7.42 10 8.19 10.1 9.13 5.4 9.29 9.09 7.91 9.41 10.7 11.8 2.16 7.88 5.02 9.75 6.25 8.46 13.6 7.67 7.06 9.24 5.32 8.19 3.15 7.41 9.56 9.75 8.22 11.9 8.81 5.21 1.53 11.9 9.93 10.2 9.94 3.44 9.5 10.3 9.43 10.5 10.8 12.2 8.54 9.08 10.4 8.9 12.5 9.79 10.2 12.1 8.73 11 2.93 11.8 7.71 10.1
-TCGA-55-7570-01 6.11 7.3 5.87 8.28 7.25 9.93 2.17 4.87 8.21 4.94 7.05 8.05 5.57 2.74 2.64 8.69 11.2 9.62 7.94 9.85 8.33 8.9 9.41 2.99 10.2 9.08 4.68 9.14 5.29 8.28 4.3 6.27 3.98 0 3.21 7.53 1.46 7.34 1.21 4.48 6.84 3.14 5.41 0.52 6.44 1.85 0 4.3 11.2 6.6 3.4 6.37 8.85 8.97 6.24 0.9 7.88 2.3 6.78 6.99 7.96 3.14 6.73 4.31 2.99 2.91 4.89 7.12 10.3 5.06 3.72 6.16 4.51 7.13 3.67 3.77 5.87 5.93 4.15 1.85 3.86 2.91 2.48 6.41 4.54 0.9 7.53 4.54 2.53 3.34 8.05 4.54 6.96 7.59 4.47 5.15 2.53 0.9 4.4 0.52 1.46 4.72 2.17 6.46 3.28 4.34 7.46 9.39 8.76 5.75 4.27 2.42 7.87 4.83 5.65 3.98 2.82 4.69 2.78 1.85 4.54 6.43 0 3.21 2.64 7.38 1.85 4.74 0.52 14 3.01 5.49 4.87 8.5 3.98 2.64 4.53 3.21 3.97 8.77 6.15 8.83 0 2.42 5.75 11.2 0.9 11.5 0.52 3.62 4.41 0 8.17 9.72 12.2 2.83 1.67 1.94 8.26 3.62 6.67 7.37 4.51 0.9 8.76 5.85 7.58 4.02 9.31 1.85 9.55 9.65 3.14 4.64 4.27 3.4 4.4 4.23 8.62 4.87 6.02 7.38 4.4 3.62 5.34 3.53 0 1.21 9.5 4.51 9.05 8.38 4.13 3.57 4.1 6.69 5 9.23 9.79 7.83 6.03 9.75 9.57 9.64 6.78 7.45 4.54 10.9 10.5 11.3 5.51 9.88 11.5 11.4 11.3 9.86 11.6 10.9 5.84 10.8 7.36 9.9 10.9 10.7 8.17 9.24 2.53 11.3 9.37 13 8.01 2.99 9.33 10.9 8.96 8.08 11 6.77 8.73 3.77 10.1 4.37 12.1 11.2 12.2 11.8 13.2 13.2 9.95 11.8 7.7 5.97 6.61 9.94 9.91 7.59 10.7 11.7 1.67 11.8 2.64 10.1 9.12 12.2 8.64 10.7 6.11 10 11.8 10.1 11.5 5.23 8.68 9.9 12.6 7.09 2.17 13.8 11.4 9.01 12.4 10.9 11.3 8.24 8.93 9.9 10.8 7.15 11.3 10.1 2.53 3.07 10.1 7.73 10.6 11.2 5.11 13 6.78 7.74 5.85 11.3 9.74 9.24 9.36 12 1.67 10.7 9.62 7.92 13.3 10.3 5.9 8.5 6.52 9.47 11.5 5.04 9.42 7.76 10.3 10.1 8.92 9.27 9.39 11.8 11.4 9.48 9.79 7.31 10.7 8.94 12 8.55 10.5 11.5 8.82 9.76 7.25 7.92 11.6 10.2 9.68 11.2 9.84 13.5 11.4 8.48 11.8 10.9 12.1 4.95 8.6 0 5.2 8.42 7.84 9.77 1.67 6.87 5.97 9.98 10.6 10.2 8.97 8.08 8.63 8.69 8.49 5.44 4.48 12.6 10.7 11.6 10.7 9.53 8.85 10.4 5.79 8.88 8.91 9.95 8.12 9.66 9.55 11.6 5.41 9.72 9.44 9.68 9.13 7.17 10.4 8.58 4.85 11.2 10.2 5.55 6.43 6 6.66 11.1 10.1 9.69 8.32 10.3 9.53 13.4 10.9 5.98 8.77 6.88 10.1 8.75 9.03 11.6 10.1 10.3 8.26 6.64 9.44 9.38 4.37 11.7 7.66 11.2 9.65 10.5 3.52 10.3 12.8 12.7 10 8.8 7.76 7.78 7.63 8.32 7.54 10 10.1 12.7 10.5 4.24 10.2 6.79 6.49 7.24 8.25 10 4.09 7.6 4.48 11.1 9.97 9.01 9.87 11 6.35 7.06 7.83 10.8 11.7 3.14 7.88 8.77 2.74 4.51 5.51 8.66 7.63 4.17 10.6 5.77 10.1 9.95 7.42 9.59 8.82 10.1 14.8 9.55 0.52 9.82 12.5 7.68 12.3 7.74 8.13 4.83 5.28 9.87 9.16 3.72 12.5 7.6 6.73 8.14 7.22 11.2 11.1 13.1 8.6 9.65 8.42 9.71 5.07 8.88 8.47 9.25 1.21 10.5 1.46 11.4 6.98 10.2 11.8 9.87 8.83 11.7 6.15 10.6 8.77 10.3 10.5 10.4 9.38 10.1 10 6.97 9.95 10.6 10.2 6.55 10.1 10.8 8.35 4.48 10.8 9.99 9.23 10.8 5.04 9.99 12.7 8.48 10.5 7.32 11.1 9.22 10.2 10.8 10.6 8.01 9.78 11.3 7.66 4.59 10.8 8.47 9.29 9.96 10.3 6.69 9.22 6.74 10.1 10.1 11.1 10.6 8.4 11.1 10.9 9.21 8.77 11 10.3 11.3 10 5.33 12.7 9.2 10.6 10.5 10.1 12.8 12.3 11.1 8.44 9.19 9.99 8.47 0 6.52 5.74 6.91 8.93 8.83 10.6 9.51 9.69 9.34 11.3 8.84 1.67 8.06 10.4 8.73 6.93 12.6 8.55 10.6 9.91 12.8 10.8 11.8 12.2 11.5 0 10.8 8.7 7.94 9.27 8.04 8.47 6.38 11.5 9.4 11.3 11.7 11 7.22 10.7 11.6 10.5 10.4 11.7 11.3 11 8.9 9.34 9.28 10.2 9.22 4.02 8.46 5.6 2.3 7.74 11 10.3 5.06 9.08 11.2 9.33 6.77 9.68 10.3 12.7 12.5 12.8 10.4 5.74 11.9 8.17 10.9 10 9.14 0 8.36 9.87 10.2 11.2 9.53 10 13.8 7.22 6.77 11.9 8.66 10.7 8.08 4.37 11.3 13 9.75 9.92 9.98 4.62 10.5 6.38 9.99 10.8 9.97 10.4 10.2 12.2 10 8.22 8.52 8.48 8.82 12.9 10.4 11.9 11.8 8.41 11.8 12.2 11.6 2.17 8.9 9.27 7.52 2.3 6.31 11.2 7.8 7.14 8.49 10.7 6.23 9.43 11.7 12.8 9.76 3.98 12.5 11.4 7.82 14.1 0.9 6.59 10.9 4.85 6.88 7.98 9.96 10.7 9.05 11 5.25 4.24 4.33 9.16 8.63 10.7 5.15 5.22 10 7.58 3.46 4.4 13 10.5 6.27 5.11 7.92 2.17 9.8 11 9.44 5.26 8.74 14.3 8.11 12.1 11.4 11 12.1 13.6 9.29 12.4 7.7 9.34 3.66 11.4 4.33 4.8 1.21 2.54 9.92 6.02 9.44 1.85 9.3 8.89 5.61 5.11 11.3 12.1 6.48 11.7 10.7 7.99 2.64 10.7 11.9 10.7 10.2 11 11.5 7.46 11.1 11.5 8.22 8.78 12.6 9.19 6.79 8.41 8.47 8.68 9.48 12.3 6.67 6.97 7.46 5.31 8.52 12.4 8.05 2.17 4.13 12.7 9.29 0.52 3.94 8.28 9.2 11.9 10 9.74 5.31 9.95 13.2 5.57 6.88 9.12 6.98 8.07 7.93 8.55 1.46 1.46 1.46 11.3 10.5 4.3 12.2 8.79 8.86 4.4 11 11.6 1.46 6.04 6.22 5.96 8.14 8.25 9.81 8.94 9.84 5.82 3.52 6.65 0.52 7.85 0 0.9 10.2 10.8 2.91 2.53 13 8.61 11.9 8.23 5.84 3.07 10.1 9.45 11 8.25 7.78 9.67 9.98 6.45 9.73 9.26 9.55 10.9 9.57 10.2 1.45 6.42 7.82 12.6 10.6 11.6 0.9 10.8 10.7 12.2 10.2 12.5 5.6 9.56 10.6 10.3 10.2 2.74 12.5 3.46 12.2 4.87 9.31 10.2 8.39 4.1 8.89 11.4 12.4 11.3 9.83 10.2 11.8 9.32 11.7 10.3 10.1 9.57 10.1 12.8 10.4 13.2 11.3 12.3 11.1 12.7 5.25 8.22 8.11 11.4 12.2 13.6 13.3 10.1 6.08 9.7 8.41 10.6 11.1 8.05 10 11.5 6.88 12.3 10.3 11.5 11.5 6.05 4.17 12.8 6.18 9.29 7.04 9.9 7.51 9.28 10.4 7.53 8.18 0 2.02 7.88 9.85 2.91 12.2 8.32 10.3 9.97 9.08 8.49 6.94 9.37 10.4 8.83 1.21 6.16 4.72 2.99 7.85 10.2 9.98 13.2 6.43 7.77 11 10.2 8.28 6.68 10.1 1.21 10.2 11.7 9.47 11.7 11.3 9.47 9.51 15.1 10.2 11.4 10.2 7.88 1.67 9.13 10.3 8.56 9.69 7.94 8.05 11.7 9.41 8.51 10.8 5.16 5.88 9.02 11.2 12.8 10.3 6.73 10.6 9.79 6.79 5.88 9.04 2.99 7.06 9.36 10.6 8.63 11.9 8.73 8.99 11.7 8.52 2.64 9.99 9.93 9.34 10.4 8.84 10.6 10.3 9.25 9.55 9.42 7.82 10.4 3.57 8.48 9.81 9.19 9.45 11 0.52 8.72 8.04 10.3 1.21 10.5 10.7 11.1 11.6 8.71 10.2 3.52 8.74 8.28 7.31 0.52 6.58 8.97 9.48 5.84 6.14 4.27 8.79 7.63 8.43 8.21 9.71 12.3 11.3 6.9 11.6 10.6 9.84 11.4 9.8 9.59 5.23 5.82 12.6 6.85 7.09 11.7 10.8 6.73 8.9 7 11.3 6.05 10.3 6.45 7.55 8.05 9.61 9.65 3.9 12.1 10.3 8.24 8.94 9.5 11.6 12.4 9.4 7.96 8.78 8.99 7.17 9.54 11.6 6.99 11.6 9.5 8.3 7.46 9.21 1.58 9.69 8.03 12 5.83 11.6 10.5 4.69 6.25 8.91 7.77 11.6 7.63 8.6 10.6 9.44 9.78 9.34 9.72 9.97 8.37 5.57 10.2 8.81 5 7.04 5.85 5.59 9.3 8.63 9.6 9.66 11 0 2.64 10.3 10.5 7.55 8.56 8.66 8.76 7.77 12 1.21 11.9 6.83 8.67 5.3 7.65 8.65 10.9 9.95 8.31 4.93 0.9 6 6.96 12 7.95 8.95 8.35 2.3 9.39 6.45 10.1 5.94 5.41 0 7.77 4.81 10.7 8.88 9.3 6.63 8.53 8.73 7.77 10.2 10.5 9.5 9.72 8.55 9.65 8.22 9.66 8.06 9.05 6.3 9.84 8.1 11 10.8 6.34 9.61 12.6 7.33 10.8 7.76 3.67 10.1 6.08 2.02 9.6 10.1 1.21 9.9 11.7 10.2 10.2 7.83 8.2 9.68 11.5 11 7.82 8.92 5.87 9.37 12.4 10.7 5.75 12.2 10.4 12.1 8.99 12.7 10.1 12.2 12.1 8.42 9.49 8.82 0 11.2 10.3 8.73 9.29 9.83 10.7 4.96 10 2.53 10.2 7.95 7.92 7.44 5.76 6.43 8.97 7.54 3.46 4.64 8.67 8.62 8.07 7.99 9.24 10.6 5.89 8.98 0 8.35 8.29 3.28 5.75 11.8 4.62 8.61 2.17 6.55 8.14 4.31 3.14 8.48 3.64 4.24 0.9 0.52 8.09 3.86 7.98 5.52 10.1 8.28 5.27 0.52 8.92 5.35 4.56 9.89 8.33 8.65 9.46 9.23 5.57 10.5 2.99 6.43 8.82 4.3 7.07 7.22 3.24 7.89 1.46 5.89 5.88 6.1 8.68 10.9 2.42 7.88 8.57 3.28 6.26 8.23 6.9 9.65 7.65 10.8 11.1 8.72 9.01 8.21 2.42 6.3 2.3 8.1 3.67 7.33 12.5 7.16 10.5 7.36 11 10.1 8.57 4.42 8.66 9.92 7.54 7.35 6.52 10.3 10 9.78 4.73 1.21 5.2 5.75 8.75 8.34 9.15 7.89 3.94 4.87 7.89 8.2 8.95 10.3 5.28 1.46 2.99 10.1 7.97 7.56 4.64 6.92 9.08 8.97 9.5 7.72 8.91 7.69 5.64 5.66 2.53 3.14 5.56 4.4 5.44 7.12 9.44 3.72 9.96 5.06 4.13 6 8.16 9.01 1.67 11 9.64 2.42 6.34 8.21 2.64 0.9 8.47 7.23 11.3 8.33 6.3 9.48 7.5 10.7 7.46 11.1 8.01 11.8 10.3 5.93 6.67 3.77 8.26 8.17 11.4 7.72 7.42 8.43 2.64 10.7 6.76 4.48 0 3.62 1.21 10.4 4.85 5.06 6.94 3.07 1.18 10.5 2.42 1.21 9.72 7.56 6.7 9.59 8.93 1.46 5.48 9.61 5.71 10.4 9.46 1.85 9.35 6.28 1.46 1.67 10.2 7.52 11 5.64 8.47 10.2 8.88 1.21 9.21 4.83 1.21 4.62 10.2 9.36 2.02 11.3 7.66 5.64 6.09 12.9 10.5 10.8 2.17 4.76 5.3 10.1 9.18 5.74 4.72 11.9 3.07 8.24 10.6 6.31 7.83 10.2 8.84 8.38 0 7.24 1.21 9.06 6.62 10.1 9.9 7.02 4.85 9.32 10.5 6.91 2.64 5.18 7.33 7.67 9.63 7.25 9.77 7.38 7.93 8.79 10.1 8.32 8.95 12.2 12.9 6.7 3.4 3.21 7.96 7.9 1.46 9.92 11.2 10.3 6.09 9.79 5.44 7.66 9.98 11.9 10.5 10.9 10 8.97 1.67 11.2 7.45 9.12 3.4 5.28 6.48 8.1 8.11 10.4 4.17 7.43 11.1 1.46 3.62 7.9 10.7 9.45 6.34 9.15 4.69 6.57 13.7 0.52 9.57 8.07 3.94 4.83 8.83 9.58 7.69 9.15 9.97 0.52 0 0 6.58 1.85 6.25 5.42 7.3 5.76 9.54 7.85 2.3 6.91 10.4 8.18 4.81 7.77 9.87 10.5 2.64 7.68 8.36 5.69 10.8 6.62 9.37 10.3 1.85 8.86 7.55 10.2 2.17 7.9 6.02 8.19 8.44 3.4 8.17 6.79 5.48 3.86 4.72 10.7 6.5 2.3 7.98 6.43 4.59 8.62 11 3.62 8.9 5.21 9.33 0.92 6.77 8.55 7.82 6.58 6.12 8.42 8.26 3.4 0 9.78 10.7 2.74 12.3 8.8 8.48 9.11 10.7 9.34 4.27 9.33 8.68 9.7 11.3 10.9 3.4 2.64 9.33 9.75 7.69 6.75 2.17 7.24 10.9 10 5.59 1.85 0.9 5.83 3.21 7.18 9.98 8.47 10.6 5.99 3.72 9.63 4.27 10.4 9.92 7.16 8.64 9.64 5.53 5.93 11.2 8.81 6.83 0.9 8 1.67 8.82 9.17 1.21 6.67 2.02 6.61 10.5 2.17 8.43 7.96 2.53 6.02 6.52 5.7 4.13 7.13 6.06 6.37 7.66 5.76 8.72 2.17 1.21 9.02 3.67 2.64 2.3 4.48 6.19 5.18 9.51 8.89 7.42 5.79 9.28 9.84 6.51 10.1 9.41 5.55 5.35 6.1 8.52 6.11 1.21 7.64 5.79 11.8 7.95 4.02 12.3 5.6 5.42 2.64 6.05 9.16 11.5 8.55 8.69 9.22 5.83 2.02 5.71 0 5.42 0.9 9.24 1.67 9.26 1.21 3.33 7.74 9.73 7.35 9.27 1.46 6.16 9.62 8.51 6.26 7.38 9.43 4.96 2.53 8.69 2.99 8.09 0.9 9.92 15.4 6.71 9.22 4.87 14.8 9.83 5.09 0.9 5.8 8.59 2.83 12.3 2.91 8.91 8.53 15.1 5.44 8.24 12.4 1.85 8.08 3.46 9.27 11.3 10.2 8.92 0 9.76 5.71 6.12 8.95 12.6 3.57 7.68 5.55 2.74 4.69 4.96 6.29 4.27 10.2 10.4 4.98 8.59 3.34 2.83 11.7 10.2 12.5 7.93 8.64 11.6 7.02 8.52 10.9 8.56 12 9.03 3.52 13 7.36 7.28 9.02 8.62 10.2 5.89 7.92 9.2 6.43 5.16 8.62 9.57 8.77 8.51 9.27 4.02 2.91 8.09 7.05 6.98 11.2 0.9 9.66 6.14 12.3 8.22 4.62 5.48 8.19 7.1 10.5 9.37 6.35 4.64 4.02 6.08 10.3 8.75 0.52 9.05 0.9 2.99 8.51 10.5 7.8 8.47 9.76 5.66 5.22 4.62 2.99 8.42 7.42 9.3 7.64 8.52 5.94 6.99 0.52 1.46 9.44 6.78 7.16 8.95 2.3 11.1 12.3 8.03 3.21 7.81 11.2 0.9 4.66 7.59 8.64 11.2 8.91 7.13 1.21 10.1 7.29 0.9 9.21 1.21 1.67 8.2 9.01 7.31 6.69 6.44 7.45 0.52 2.6 7.91 9.59 7.64 7.24 1.67 3.28 4.34 8.54 9.07 4.1 12.1 5.96 9.25 10 7 10.5 3.52 8.1 2.17 7.93 8.34 1.21 7.72 6.69 0 7.77 1.21 9.93 10.3 8.7 11.5 8.2 1.46 3.81 8.79 4.59 10.8 3.34 9.1 12.3 10 6.19 6.13 5.57 6.72 6.71 8.16 9.66 2.99 9.12 10.8 8.77 4.3 7.42 10.1 5 9.24 11.7 5.63 10.9 9.12 6.85 11.1 11.5 9.07 9.5 3.9 6.76 8.94 7.77 0.9 10.1 7.33 10.6 2.99 10.7 9.92 0.52 7.78 6.71 4.81 7.73 3.07 10.9 6.76 0.9 10.7 4.51 3.14 12.7 10.4 11.6 9.54 7.58 5.76 6.97 6.32 8.82 5.52 4.62 6.72 10.5 9.44 7.08 9.32 7.55 8.48 3.67 2.53 5.31 8.87 4.33 2.02 12.1 5.83 6.34 11.1 3.81 7.53 6.87 5.64 7.15 7.81 6.94 0 6.92 8.9 5.89 3.14 4.94 9.8 8.9 7.14 5.3 11.2 7.56 2.02 10.9 10.2 9.63 2.17 9.6 7.37 0.52 7.87 3.94 8.93 7.61 9.01 9.81 5.09 2.42 0 10.2 6.5 7.88 10.8 11.7 6.03 6.62 6.22 8.93 9.18 9.15 7.56 10 9.49 3.72 6.37 6.81 11.5 2.53 2.02 8.53 9.27 6.57 3.52 8.94 6.08 2.64 1.46 8.83 5.07 6.14 2.83 9.41 7 6.45 5.07 8.44 8.34 7.79 7.73 10.8 7.2 9.37 6.19 1.67 9.59 8.16 0.9 14.4 10.2 4.44 6.79 8.11 6.41 3.72 7.15 8.59 3.21 10.3 2.42 10.9 1.85 8.76 6.15 0.52 3.4 12.2 8.22 7.98 3.28 2.17 3.77 1.46 4.3 2.17 6.67 10.2 2.74 11 10.9 10.1 12.2 9.18 10.8 12.1 7.68 5.2 11.2 12.1 4.02 7.02 8.5 8.54 1.85 3.81 9 8.23 5.86 5.45 7.15 6.49 8.7 10.4 7.38 5.48 0.52 2.91 9.24 7.48 7.75 9.35 5.89 7.13 6.72 6.7 2.64 7.99 8.57 3.46 6.7 12.6 7.85 5.18 9.17 6.99 1.85 6.56 7.78 3.57 11.4 9.63 0.9 5.39 8.08 5.36 9.82 4.79 8.34 7.52 11.3 8.43 7.31 9.14 4.37 3.4 7.23 11.4 4.06 8.25 11.1 7.28 0.9 8.94 5.76 10 3.62 7.71 6.97 8.22 9.17 11.4 7.19 6.45 5.88 6.22 5.04 7.59 7.41 2.91 8.55 6.58 1.85 11.7 9.61 6.78 9.72 1.21 3.21 8.8 11.8 7.2 1.46 11.4 1.46 9.46 1.85 5.84 0 7.52 2.64 6.19 7.39 3.52 11.6 7.13 7.1 7.58 7.53 3.86 8.48 8.5 8.79 8.43 6.74 2.02 4.85 0 4.59 3.52 2.02 1.67 10.6 4.24 1.85 3.86 0 8.27 1.21 8.5 1.67 10 9.3 8.15 8.83 3.07 6.81 8.63 6.5 11.5 14.4 7.69 9.67 8.19 10.4 9.34 9.81 2.53 1.85 3.07 3.07 2.02 12.7 4.81 5.66 11.2 7.68 4.67 8.46 2.42 2.83 0.9 6.3 6.89 7.52 2.83 9.84 7.95 8.5 2.02 9.41 9.87 8.79 7.05 6.3 5.11 5.09 1.67 9.82 7.02 8.14 6.18 5.15 7.75 3.67 5.76 6.17 6.72 7.72 8.21 6.27 5.85 7.08 6.04 7.34 4.9 3.9 7.54 3.72 6.69 7.81 4.76 3.46 4.98 6.13 5.52 0 7.23 8.46 2.3 8.44 6.75 8.94 5 8.58 9.13 6.77 6.22 9.18 1.85 1.26 12 4.13 1.67 4.98 10.2 11.2 5.91 0.9 9.57 6.31 5.15 7.76 1.67 12 9.65 1.05 9.9 7.26 3.9 4.59 9.72 0 2.83 9.61 7.97 8.92 8.72 5.09 2.3 7.65 7.56 3.62 5.18 12.6 11.2 3.67 8.82 5.97 6.39 13.1 9.03 10.1 0 4.62 13.2 0 4.56 12.1 0 0.9 4.06 1.46 3.6 0.9 9 4.13 0.52 8.14 9.9 7.47 7.61 10.7 2.85 7.71 6.15 7.6 6.89 5.11 7.75 4.27 10.5 8.5 10.1 3.28 7.73 5.45 9.33 8.23 9.49 5.04 8.62 7.75 3.77 3.81 9.08 6.02 13.7 9.79 13.2 7.02 3.34 7.49 5.44 10.3 8.9 2.99 1.85 4.72 1.67 9.64 9.3 9.34 10.5 8.13 3.86 9.58 5.51 1.46 3.17 9.61 3.52 9.35 5.69 5.59 10.5 0.52 6.73 3.62 9.57 9.15 6.04 7.79 1.21 5.15 12.2 9.23 10.6 7.26 2.42 6.62 0 4.37 2.53 9.54 3.21 7.67 9.12 6.48 9.15 5.52 9.51 9.22 9.14 7.68 0.52 2.74 4.74 7.46 4.67 10.1 8.78 7.16 6.9 11.3 3.77 8.85 6.94 10.5 5.87 3.07 2.64 4.72 7.05 9.69 9.93 8.71 3.46 8.99 4.9 8.53 1.46 7.33 3.14 2.74 9.78 7.97 4.3 5.94 7.11 7.34 6.3 9.53 10.4 7.11 6.58 8.07 10.7 6.48 7.69 11.3 7.41 7.22 10.5 10.5 8.35 4.45 8.37 7.7 2.53 2.42 3.21 11.9 7.77 6.38 3.94 3.81 2.02 10.5 3.62 9.29 10.4 7.18 3.46 11 7.74 2.3 8.18 4.81 3.69 9.53 8.77 2.42 2.64 7.41 2.71 4.42 8.35 10 0 10.4 7.87 0.52 3.9 7.83 6.5 6.64 5.55 7.41 9.86 10.7 3.57 3.07 7.74 8.31 5.3 8.07 10.5 5.28 6.07 11.1 3.67 3.9 10.5 2.93 0 8.67 6.84 8.34 10.2 10.4 8.19 7.86 6.65 2.3 9.98 6.8 9.25 7.6 7.05 4.72 0.9 10.7 2.99 4.81 0 5.39 9.48 1.67 10.7 0 0 2.64 4.96 4.42 4.2 3.46 5.36 1.85 5.77 5.74 6.93 1.67 8.66 7.93 8.61 2.99 5.44 3.9 3.62 6.18 8.41 5.3 7.69 4.9 6.73 8.27 1.95 7.49 4.54 3.07 0.9 3.34 0 3.21 3.34 3.13 4.54 10.2 7.84 9.75 5.09 10.1 2.83 1.21 10.1 7.57 5.64 11.8 0.9 0 12.2 10.7 0.9 8.94 4.37 8.09 0.52 0 12.2 8.21 3.14 1.46 9.64 10.3 0 7.23 12.5 7.6 8.14 6.37 8.98 9.85 4.37 5.44 8.97 8.67 10.4 12.1 5 4.74 4.74 7.51 7.53 1.85 3.46 10.7 9.25 5.33 8.33 6.16 5.55 11.7 1.21 7.24 10.8 0.9 2.3 10.4 1.85 5.85 8.21 2.53 8.09 11.2 10.6 5.88 11 7.97 6.84 8.53 4.76 10.7 6.45 2.17 3.4 5.44 5.25 0.52 6.41 5.93 7.98 11.5 6.91 9.24 5.41 5.31 6.52 7.56 5.96 6.8 5.49 8.53 5.09 1.21 11.8 7.73 7.31 6.41 5.61 5.74 7.31 6.78 5.86 3.77 8.07 6.9 5.06 4.2 4.02 9.41 4.13 7.35 4.17 6.22 10.3 2.3 12 5.89 9.85 9.27 9.25 2.42 7.84 6.96 1.85 5.94 9.08 9.63 9.33 12 11.8 1.85 8.97 1.21 12.8 5.52 8.15 4.2 2.17 4.83 15.4 1.67 15.8 2.63 4.24 2.91 0 10.3 5.88 8.08 12.1 13.2 7.72 3.29 3.14 4.06 9.6 6.94 11.8 9.33 13 13.7 0.52 6.43 11.8 3.46 2.17 8.66 2.17 10.3 4.2 7.88 11.9 12.7 2.17 9.88 9.88 7.33 4.45 9.03 6.66 12.4 9.43 4.17 10.6 7.06 6.72 6.54 10.8 7.05 8.82 2.64 9.19 4.56 8.92 2.83 3.67 7.82 3.57 6.48 3.86 9.5 5.83 6.35 7.79 8.12 5.06 8.24 4.24 9.53 8.05 2.02 2.53 6.12 6.29 5.76 0.9 5.31 8.86 9.48 8.35 5.92 2.42 1.21 7.94 9.43 5.95 4.83 5.38 7.55 5.18 3.81 0.9 2.42 7.54 2.17 3.4 9.26 8.51 5.27 10.7 5.02 0.52 9.91 1.85 2.3 5.99 2.02 9.8 9.23 7.74 6.65 9.43 2.42 10.6 1.21 11 7.6 2.3 8.97 1.46 7.72 12.6 7.12 11.4 0.9 10 9.26 10.1 11.5 13.9 8.58 9.27 9.31 9.9 11.4 14.4 11.1 7.39 6.4 1.85 7.05 12.1 11.2 11.2 10.2 6.57 10.2 7.11 11.1 4.02 5.09 5.72 8.02 8.65 5.13 5.92 8.38 4.48 8.54 8.36 9.37 5.15 0.9 6.58 7.11 8.15 8.69 3.67 2.3 9.8 13.8 10.8 6.14 10.9 11.8 11.5 11 6.98 10.4 7.41 10.9 7.43 7.79 7.58 8.53 10.4 6.98 11.2 9.3 10.2 6.88 7.25 10 10 2.02 10.6 1.21 0.9 9.45 11.6 7.77 4.85 11.9 12 8.89 12.7 6.99 9.75 14.7 8.77 4.17 8.49 7.39 5.63 10.2 7.05 11.5 6.33 10.3 9.57 7.58 12.5 7.98 1.21 7.21 1.21 10.8 10.8 10.3 11.4 10.6 9.45 9.61 7.07 7.72 10.8 10.7 8.6 10.2 9.23 5.51 6.75 10.9 0 8.78 9.91 12 8.26 12 4.24 9.04 7.16 7.16 8.15 8.65 7.88 12.2 5.35 9.22 11.1 15.2 2.17 6.94 10.1 9.6 8.46 8.21 10.3 11.3 12.6 13.4 14.1 10.1 9.32 7.77 8.28 5.44 7.57 8.56 5.13 8.56 10.1 9.37 7.7 9.88 9.97 4.37 11.5 8.25 8.84 9.33 11.3 7.29 0.52 5.64 8.33 3.07 8.54 6.14 5.98 7.7 7.79 9.32 11.3 8.93 8.45 9.73 9.87 8.93 11.8 4.56 7.1 10 10.3 0 10.7 7.33 5.64 6.94 12.2 4.81 6.08 10.2 5.77 2.02 6.29 6.75 10.4 3.28 5.3 6.44 8.65 6.97 14.3 6.48 7.85 9.38 4.69 6.13 9.77 11.9 7.98 12.9 10.9 13.2 11.7 13.6 14.3 12.3 14.4 0 6.66 0 10 4.17 4.92 11.1 1.21 3.46 3.4 7.99 1.21 10.6 6.49 1.21 2.64 8.19 6.5 6.4 7.4 0.9 8.68 5.09 8.23 7.74 11.7 8.76 0.52 9.19 13.4 9.06 7.39 1.21 0.9 9.9 8.98 5.7 9.67 11.2 7.22 3.21 0.9 4.17 10.7 9.52 8.2 9.97 7.89 1.46 7.64 2.42 7.67 3.14 7.73 1.46 3.14 2.3 10.8 7.2 6.89 5.15 9.9 9.73 10.3 6.41 10.1 8.01 2.92 6.64 7.05 9.55 8.07 8.73 6.2 8.74 3.07 10.8 7.77 6.78 9.9 10.7 6.99 8.16 7.95 8.47 6.6 9.81 3.77 9.99 6.56 8.12 11.9 10.2 8.79 7.81 9.02 7.46 3.77 12.2 4.1 8.07 6.03 9.28 1.21 6.48 6.29 7.36 10.8 0.52 0 8.74 9.16 5.72 2.64 12.1 8.34 8.59 3.62 6.04 0 8.3 8.18 8.6 6.57 9.14 9.73 6.76 5.06 6.49 6.8 3.34 10.1 8 2.02 15.7 2.74 4.76 3.81 0.52 2.3 10.5 9.17 8.18 7.39 11.7 10.4 8.52 10.3 7.55 7.52 15.1 8.48 4.42 5.2 6.75 8.26 6.99 5.04 8.2 8.6 7.62 8.82 11.3 4.67 10.2 8.6 11.9 5.11 7.11 10.7 9.57 10.2 4.72 8.55 11.4 9.89 8.23 6.4 1.21 5.55 2.83 10.8 0.52 10.6 10.4 1.67 9.1 10.4 4.96 11.8 8.13 6.53 9.97 8.56 8.4 8.56 9.95 0.9 6.5 8.99 12.1 11 9.91 9.78 2.02 8.12 10.7 2.91 2.74 10.7 8.79 8.59 2.74 11.2 3.67 8.71 9.79 8.35 9.93 8.44 9.55 7.02 12.1 10.6 7.37 10.9 10.4 4.79 10 8.63 4.62 9.34 0 11.3 11.1 9.88 10.2 7.55 9.22 11.8 9.49 2.99 7.25 11.7 11.4 0.52 10.3 8.52 6.94 6.5 7.58 10.8 8.93 12.6 9.47 9.85 3.34 9.68 10.4 0 8 12.1 7.51 9.38 9.7 1.46 10.1 9.1 7.71 10.5 8.12 10.5 0.52 6.94 5.3 9.79 6.32 6.92 7.57 4.4 2.42 11 5.46 7.9 9.86 8.35 9.37 7.78 12.9 10.4 11.3 10.8 8.61 8.58 11.1 5.97 9.24 8.14 10.3 10.8 7.17 7.39 10.3 8.12 5.08 4.2 13.7 8.61 11.2 2.42 3.46 8.11 2.64 5.75 8.34 1.67 9.86 12.5 6.86 8.99 9.58 7.7 10.8 9.13 2.02 8.02 8.39 6.43 8.3 10.1 6.58 9.87 8.29 0 8.03 10.9 8.89 8.76 10.2 5.64 9.86 2.91 9.27 8.01 7.29 6.15 1.85 2.02 9.32 4.2 8.1 9.31 2.74 7.57 8.15 7.43 4.1 3.28 1.85 2.53 3.21 1.21 7.31 5.25 8.03 7.12 0.9 1.85 4.98 7.14 6.82 2.74 5.25 7.54 4.9 13 6.72 7.16 5.69 7.78 9.81 10.6 3.4 11.1 8.45 9.31 3.28 11.7 8.29 7.09 8.82 10 10.8 8.6 4.87 8.8 7.16 9.71 7.46 8.53 7.33 7.02 8.56 9.3 3.34 7.28 2.91 3.9 5.23 8.67 4.06 4.83 5.99 3.94 11 2.3 7.62 10.2 3.14 9.06 7.72 8.64 6.01 9.37 3.34 8.02 9.91 9.83 3.21 7.79 8.58 7.99 8.36 0.9 9.66 0.9 6.88 4.4 8.41 6.34 10.6 9.61 11 8.7 8.86 3.94 7.03 10.3 7.32 8.22 8.5 9.38 8.8 11.5 8.2 9.21 6.08 1.46 8.14 7.35 4.47 8.07 11.6 8.91 5.07 7.32 10.1 2.74 0.52 7.13 11 1.46 5.61 4.62 2.42 6.19 3.72 6.26 4.67 9.6 10.9 9.32 8.67 6.99 8.21 11.5 10.7 7.93 12 4.54 6.43 8.87 5.74 2.83 0.52 7.58 8.45 8.45 5.07 7.06 7.03 14.7 13.4 6.54 0.9 5.72 9.34 6.7 10.1 6.01 7.29 8.77 8.5 11.6 7.78 9.74 5.15 12.5 8.46 9.56 0.52 11.7 3.72 5.28 7.8 8.79 7.94 12.4 4.69 12.4 6.94 13.9 9.93 8.58 11.4 12.6 10.5 4.4 7.77 10.2 7.31 10.6 9.42 10.1 10.6 9.86 4.74 5.71 8.34 8.85 9.2 9.51 6.72 9.16 8.53 9.77 1.21 9.77 12.5 9.71 10.1 6.7 11.2 9.24 10.1 0.52 10.4 7.62 11.4 11.2 0.52 11.9 7.66 7.18 10.4 8.97 10.7 9.9 10.1 12 9.67 7.47 7.99 11.4 8.79 6.53 11.4 8.37 10.4 10 10.1 3.28 9.68 10.2 1.67 9.97 7.42 6.49 0 9.06 4.33 9.85 9.84 9.92 8.94 9.85 10.7 9.34 9.13 8.25 11.8 5.46 5.77 11.3 0.52 9.42 12.4 9.32 9.6 8.45 4.62 10.1 10.7 11.9 10.9 10.5 10.8 6.85 8.19 9.22 10.8 10.3 10.7 8.68 8.73 14.1 11.9 9.86 2.99 8 9.28 6.5 1.46 3.46 11.8 9.33 5.46 10.9 6.81 2.64 11.1 9.08 8.5 7.1 11.5 12.4 0 0.9 0 9.71 11.7 9.78 8.42 7.77 8.43 6.48 8.01 11.7 9.55 9.99 9.46 9.14 6.74 9.94 0.52 9.99 11.9 10.8 11.2 10.8 9.04 12.5 6.87 13.9 11.7 10.2 6.21 7.71 2.42 12 10.1 9.1 8.11 10.9 8.84 7.53 7.86 10.1 7.12 10.5 10.8 9.73 11.2 5.25 6.56 10.3 8.8 11.5 11.6 8.79 8.48 10.3 10.8 3.4 8.84 3.07 10.7 10.9 10.7 10.8 9.23 11.7 4.81 10.1 10.2 10.1 8.05 8.87 8.91 11.2 10.2 9 8.7 9.26 8.56 10.7 10.2 8.33 7.78 13.1 10.4 5.48 11.5 7.7 9.74 9.75 11.6 6.81 9.09 6.59 8.03 10.5 9.19 3.4 9.6 6.57 10.4 10.8 6.51 7.35 9.98 9.13 5.86 8.51 9.84 10.8 7.92 6.57 4.69 9.6 9.95 10.9 9.9 11.2 7.04 9.22 10.6 7.59 10.6 10.3 6.73 9.21 4.98 11.1 10.7 10.5 10.7 10 9.02 9.68 5.76 5.7 4.9 0.52 8.55 10.2 9.74 9.52 10.1 8.79 7.67 13.4 11.3 10.3 10.3 9.92 9.97 11.8 9.04 10.1 11.1 8.45 11 10.4 8.53 9.63 11.8 10.8 9.19 9.38 8.39 9.04 8.91 8.3 8.49 9.54 11.5 11.5 10.6 9.85 9.68 10.3 12 11.1 10.6 13.9 6.7 10.7 11.3 11 11.8 11.5 9.45 7.54 9.62 12.7 2.17 10.3 8.96 6.71 9.4 9.05 10.1 9.6 11.9 11.2 12.7 10.3 0.52 10.3 10.2 2.53 8.79 8.73 11.4 11.4 10.3 4.87 8.75 5.07 8.95 11.5 8.19 6.44 10.7 9.27 8.49 4.2 10.7 9.01 7.75 10.1 7.11 9.7 12.2 6.4 10.4 9.42 10.2 10.9 6.92 9.17 9.13 6.16 7.27 10.3 9.4 12.2 3.34 9.37 9.29 8.84 11.3 11.2 7.51 9.61 10.6 5.27 9.15 10.7 10.2 9.21 9.69 8.99 11.4 11.2 6.86 2.02 10.1 9.26 6.92 9.49 7.62 9.24 4.02 9.52 9.82 10.4 10.4 9.11 6.97 10.8 10 8.03 8.91 9.61 2.53 10 9.2 6.75 9.05 10.4 10.6 9.82 10.7 4.79 8.45 0.9 10.4 10.2 9.9 9.53 7.43 10.2 10.3 12.1 10.8 8.68 7.72 12 9.97 9.83 8.95 6.14 7.92 10.8 3.21 9.8 11.4 8.3 9.9 9.54 2.17 15.1 12.2 11 12.3 11.2 8.59 9.27 10.2 10.8 1.46 10.3 9.4 8.93 10.9 11.6 8.92 12.4 8.76 11.7 9.23 9.23 7.1 10.3 7.31 10.9 9.22 11.7 8.79 9.55 10.5 11.5 10.7 9.47 10.7 11.3 9.47 10.8 11.6 9.14 9.36 10.1 8.32 11.3 10.4 8.8 8.75 9.11 10.8 9.84 8.64 5.02 8.69 9.34 9.39 8.57 7.44 0.52 3.4 7.77 0.9 9.82 12.2 8.52 11.4 7.03 6.47 10.4 9.13 0.52 9.44 6.72 10.6 12.3 9.95 8.37 12.1 12.4 13.1 10.1 9.3 6.92 5.36 5.46 7.72 10.8 11.4 7.59 9.92 6.83 12.4 11 11.6 8.72 7.65 10.1 12 11.5 10 7.42 10.9 11.6 8.41 9.6 5.23 7.85 4.24 0.52 5.22 12.2 6.02 8.02 9.73 9.96 10.6 9.58 10.5 9.99 11.4 9.75 10.6 10.1 11.9 9.49 9.62 10.2 10.3 10.5 0 3.98 12.6 9.64 10.7 13.8 9.05 10.5 8.76 6.79 12.3 10.3 8.74 9.39 6.57 10.6 8.24 3.21 9.86 6.66 7.3 10.3 10.9 9.14 4.24 0 9.25 9.64 9.86 9.94 4.76 6.34 10.1 10.4 8.8 9.32 10.9 10.5 9.24 11.9 1.21 2.83 11.6 0.52 7.28 10.1 0.9 5.75 9.32 4.2 9.64 9.65 9.62 3.94 11.1 6.57 9.69 9.15 10.6 7.29 8.08 10.6 10.9 9.12 9.84 9.1 9.86 10.4 11.8 5.64 11.4 6.75 11.7 11.2 8.9 8.02 10.8 2.02 9.21 9.41 9.46 9.38 1.67 1.46 2.83 3.28 11.3 5 11.1 10.2 2.42 10.1 7.74 10.3 6.51 11.1 9.35 12.9 9.85 9.46 9.7 5.59 11.4 12.1 10.3 8.98 8.92 12.7 9.63 12.6 7.65 5.69 10.5 7.47 9.8 6 10.6 8.61 10 12.2 1.85 10.2 10.4 10.8 9.02 7.84 7.92 8.01 2.3 8.76 6.64 3.34 11.6 9.56 8.73 8.85 10.6 12.1 11 2.3 2.54 7.91 6.77 7.24 10.4 7.28 8.86 9.54 3.07 6.16 9.97 8.98 7.57 4.87 12.2 9.75 0.9 8.15 7.66 4.27 7.49 4.02 7.2 1.67 9.48 0.9 4.42 3.81 5.57 9.34 6.01 4.74 6.48 7.6 7.98 1.46 4.54 11 8.61 4.9 8.8 7.1 4.59 15.5 9.62 10.3 3.57 16.1 9.52 11.8 13.2 6.99 6.64 4.87 9.52 0 2.02 11.3 5.72 3.14 8.21 7.64 4.13 10 6.38 4.06 8.96 10.2 10.5 7 4.81 4.42 10.6 7.77 10.3 5.71 11.5 6.03 8.55 11 6.37 5.85 8.66 9.15 3.98 10.6 1.67 7.7 10.6 8.23 7.71 0.9 13.1 10.7 8.88 7.76 6.92 5.71 7.09 9.76 2.91 7.74 9.81 4.76 1.46 9.16 2.74 0 9.23 9.19 6.72 6.29 5.65 1.21 3.86 8.11 6.18 8.18 8.22 8.83 6.14 3.81 13.4 2.17 2.64 11.5 7.11 8.87 8.9 6.58 6.43 4.69 5.43 6.33 5.71 1.21 6.24 10.1 8.18 5.07 3.4 2.3 9.15 4.2 9.15 5.2 6.33 7.52 0.9 8.36 0.52 7.79 4.69 2.99 9.37 6.93 6.39 3.07 6.97 7.04 8.35 9.92 7.64 2.02 2.83 4.02 4.37 8.58 4.37 6.96 4.96 4.87 2.99 9.8 9.56 4.2 4.72 4.64 8.57 3.72 7.26 7.18 0.52 4.62 4.1 2.3 0 2.91 5.16 0 7.74 5.42 1.46 4.17 1.85 1.85 6.52 10.1 4.17 8.13 4.72 8.86 2.17 2.91 9.75 1.67 8.61 5.25 0 0 0.52 8.93 9.13 5.53 7.77 2.83 7.28 10.8 9.38 8.37 0.52 8.8 10.1 9.47 6.7 10.3 5.33 2.17 7.9 4.1 3.94 9.94 11 4.67 9.02 9.91 9.77 6.5 12 11.6 8.9 8.71 8.3 4.37 10.8 13.1 8.87 6.76 9.51 1.67 10.3 11 6.84 6.62 6.44 9.98 11.2 9.36 6.89 0.9 11.8 11.2 6.71 10.5 10.5 8.87 1.46 11.8 7.74 4.56 11.4 5.23 10.7 7.58 9.97 6.6 11.2 10.2 11.4 8.81 9.97 8.32 9.13 5.51 8.57 9.94 10.4 5.65 10.3 6.25 8.03 4.67 7.55 9.56 11.9 10.1 11.5 9.16 9.3 3.07 10.5 10.8 9.87 8.17 11.5 7.59 8.77 11.3 4.92 2.3 6.85 8.04 9.62 9.45 9.11 5.2 11.2 6.03 7.54 10.4 8.18 8.69 9.63 9.52 11 9.79 9.24 12.5 9.22 8.46 9.4 9.73 7.83 2.64 7.19 10.2 11.3 0 7.1 9.88 8.5 3.98 7.41 5.95 11.1 9.63 6.12 5.78 10.7 1.46 9.47 1.85 2.02 5.22 5.07 9.9 6.7 11.3 7.77 9.82 9.74 10.4 8.55 9.71 11 11.9 7.9 3.28 8.84 10.6 10.2 8.92 7.9 11.5 6.29 11.1 9.75 9 6.09 10.3 11.8 9.45 16.3 9.91 9.37 7.23 8.01 8.8 9.98 9.63 7.47 10.2 5.91 10.1 6.38 10.7 8.81 10.2 7.67 10.7 10.1 10.7 7.44 5.97 10.5 11.5 8.6 11.7 10 11 10.3 11.9 7.22 9.73 6 10.5 10.1 8.72 10.2 12.1 8.98 9.34 4.2 8.35 2.17 8.91 8.95 9.75 4.67 0.9 4.69 9.98 9.55 10.1 2.02 9.41 6.19 8.84 8.52 1.85 10.1 7.23 7.57 10.1 1.67 8.99 8.08 8.45 10.8 8.63 12.4 11.2 10 7.35 8.74 9.68 10.8 10.4 10.8 2.99 7.26 6.99 10.4 10.7 9.98 10.3 8.21 8.14 7.12 11.3 9.67 12.3 10.7 2.99 8.64 10.7 10.9 8.9 10.4 9.42 10.9 9.19 10 9.46 10.9 13.2 11 2.42 9.09 9.23 9.09 9.16 4.74 8.91 5.16 9.63 8.51 4.87 1.67 12 12.5 5.13 8.45 8.55 9.84 10.8 11.8 10.2 8.11 12 9.93 8.61 11.6 6.69 10.1 5.13 11.8 6.29 9.32 2.17 9.08 9.65 0.9 9.57 4.83 9.19 10.4 8.69 5.02 10.1 0.52 6.62 4.85 9.49 9.03 10.1 8.29 6.48 7.63 7.56 4.3 0.52 5 3.07 9.88 10.5 7.99 7.54 3.71 9.2 9.26 2.74 7.45 10.2 7.51 7.07 8.23 8.63 7.26 7.88 8.87 9.08 10.3 9.51 3.9 8.41 9.97 10.4 0.52 10.3 0 9.66 7.35 9 5.13 11.1 8.82 8.9 2.11 9.28 7.89 11.2 10.6 8.13 0.52 9.03 8.67 3.4 9.57 10 10 8.4 10.9 10.9 3.4 8.28 9.86 10.3 9.02 8.82 10.4 6.82 8.48 10.8 9.67 7.7 10.2 8.65 10.3 9.34 9.49 9.92 10.5 8.58 11.1 5.23 4.24 4 10.9 2.42 5.04 7.72 8.93 3.62 10.8 10.1 10.5 9.32 1.67 10.2 4.51 6.45 6.24 10.7 12.8 7.93 3.81 4.81 2.4 6.31 7.91 8.53 10.9 2.74 6.72 6.58 1.67 8.89 5.77 11 1.67 8.68 2.53 9.64 8.7 9.1 0 9.38 6.64 3.62 3.34 4.85 0 11.2 9.2 8.96 7.92 9.57 1.21 3.52 8.5 9.6 10 2.83 6.46 9.4 10.2 6.04 8.33 10.8 13.6 9.64 11 8.92 6.23 6.71 9.4 3.57 5.04 10.4 0 8.9 6.52 4.48 10.8 11.4 8.26 11.1 9.02 8.52 11.1 3.46 9.03 2.64 4.1 9.7 8.03 9.35 11.4 12.2 7.83 2.17 1.67 10.1 10.3 12.8 5 4.79 10.1 7.2 11.3 10.3 7.9 8.07 8.01 9.52 0.9 10.4 2.3 8.06 4.56 7.1 10.4 9.68 1.67 2.02 10.1 8.59 11.5 12.3 8.82 9.42 6.67 9.47 7.38 6.53 5.33 10.2 6.43 4.81 10.8 4.17 7.29 5 5.6 7.35 10.7 6.26 8.72 7.34 7.95 5.86 0.56 4.45 9.32 4.33 7.32 8.74 9.94 3.67 9.23 1.67 9.63 7.52 6.26 10.5 11.6 11 8.1 3.77 4.13 10.9 9.11 3.46 5.66 0.52 1.67 1.46 7.14 9.72 2.42 9.27 11.9 1.85 4.1 8.63 9.25 10.3 9.12 4.33 4.51 7.78 12.1 10.7 7.7 8.21 8.82 9.69 10.8 11.5 9.59 8.47 7.21 6.17 11.5 9.32 0.9 3.67 7.64 4.13 7.78 14.3 8.46 8.56 8.46 4.24 9.93 7.52 0.52 11.9 9.65 9.53 3.67 8.06 2.91 8.34 7.27 7.4 9.58 12.3 5.38 10.7 9.48 11.3 9.95 4.64 10.3 11.4 9.77 11.8 12.3 11 9.86 9.75 9.2 6.45 10.6 9.6 8.68 8.34 8.45 5.71 7.35 7.8 9.76 6.2 6.45 7.8 12 9.85 9.09 3.14 9.99 7.11 8.77 11.1 4.1 10.7 9.95 3.34 7.37 8.15 10.9 8.54 5.77 12.9 6.63 10.3 9.54 11.8 9.29 7.93 10.7 6.29 9.62 11.7 11.8 7.26 5.76 9.49 14.2 2.53 5.27 13.6 11.9 4.62 4.02 8.71 11.2 5.31 0.9 8.89 7.8 3.4 10.7 4.79 2.53 12.1 3.72 5.39 8.96 10.4 11.5 10.4 11.3 10.2 12.1 9.84 3.34 13.4 2.39 0.52 11.2 5.07 10.8 13.5 5.38 8.18 0 8.49 11.8 7.69 2.74 0.52 2.99 6.32 4.64 6.25 2.17 9.25 2.64 1.21 6.01 8.9 7.8 10.1 8.52 6.19 7.3 4.56 5.28 8.82 3.9 10 10.9 7.02 12.4 10.9 3.72 8.57 6.72 9.08 4.06 8.2 7.8 6.99 8.05 8.37 8.38 6 7.1 1.46 6.91 5.27 6.81 5.02 9.95 4.9 8.6 7.55 10.6 2.83 8.12 4.42 4.72 4.81 4.3 1.21 6.24 2.83 10.3 7.85 8.08 5.99 9.38 6.9 9.38 5.39 0 4.78 2.91 7.05 1.21 5.94 1.46 9.21 0.52 7.39 0 3.94 10.7 10.2 8.64 4.94 3.78 5.33 4.72 7.28 3.94 9.98 0 3.67 5.46 11 5.31 5.59 4.2 5.34 9.49 5.15 9.84 6.22 6.66 7.41 2.02 3.9 8.42 7.8 0.52 3.77 10.5 9.13 9.05 6.83 2.02 8.26 8.16 2.3 5.69 9.18 2.42 5.92 3.72 7.74 4.98 10.4 7.16 4.24 0.9 2.53 5.82 8.07 0.52 2.83 0 8.99 5.72 7.32 8.3 10.8 8.29 7.88 6.6 8.29 4.2 2.17 0 6.88 6.48 2.53 0.9 6.85 1.21 8.85 1.85 8.26 1.21 4.65 5.6 7.99 7.67 8.02 5.66 7.49 4.45 3.67 5.38 3.9 3.62 11.9 2.83 6.78 6.92 3.52 5.53 0.9 8.2 6.05 0 2.02 6.16 0 1.67 6.56 5.31 7.14 6.41 8.22 0 2.3 1.21 8.16 0 5.13 0.9 8.66 4.1 8.45 4.87 6.9 1.46 4.24 3.29 9.67 3.52 1.56 12 4.24 2.83 7.58 1.46 1.21 4.96 0.9 7.38 0.52 7.24 3.57 7.66 7.62 7.27 7.21 9.97 7.29 0.52 0.9 1.67 5.53 0.52 8.18 10.8 6.41 6.52 8.63 1.85 8.57 3.67 2.99 6.87 6.91 5.42 5.23 8.82 8.04 0 4.13 9.62 8.43 4.54 7.42 7.12 0.9 8.94 2.83 7.54 9.09 8.71 4.74 8.35 4.54 3.28 2.17 5.99 7.99 2.42 8.2 8.22 2.91 4.99 5.02 9.06 10.1 2.42 8.52 0.9 10.2 1.85 3.14 4.33 3.72 6.92 6.73 10.6 5.48 4.98 9.34 1.85 5.42 7.94 8.14 4.98 8.99 0.9 2.87 0 10.6 6.91 5.7 8.51 1.46 3.34 8.76 0 5.07 5.73 8.09 4.8 7.35 4.62 2.53 6.54 5.94 1.85 0.52 8.6 8.36 1.67 12.4 7.57 9.87 6.48 4.17 2.99 8.64 3.94 7.45 8.15 9.78 2.91 1.21 8.04 3.14 2.64 3.81 7.81 7.76 7.91 3.34 6.86 8.03 8.78 8.59 5.64 1.21 4.72 6.43 7.95 2.17 5.77 8.36 8.76 7.1 2.02 6.68 9.38 11.1 11.3 10.5 3.86 11.1 14.9 11 10.8 9.48 8.67 11.8 7.51 9.87 0 2.42 10 8.89 8.92 9.25 9.67 10.2 9.46 12.4 9.35 8.68 10.5 0 7.16 5.25 11.3 1.21 9.49 7.52 10.8 10.8 10.4 9.05 11 10.7 9.06 8.52 8.66 10.2 7.47 10.7 10.6 8.67 5.09 8.02 9.76 7.87 11.3 11.1 5.42 10.5 6.43 0.52 3.21 9.65 3.62 11 2.91 10.3 4.02 9.35 11 7.16 8.3 8.02 9.82 10.3 11.1 8.41 9.64 10.4 10.7 9.27 10.2 8.12 9.78 10.1 10.1 7.84 8.66 9.96 9.84 9.67 10.1 11 9.37 5.94 8.23 9.01 9.71 9.53 9.35 9.29 9.24 9.75 10.5 11.9 11.6 11.3 8.08 9.92 10.2 8.51 6.95 9.2 1.67 10.1 10.4 8.3 12.1 0 2.02 8.84 4.67 11.4 3.4 4.67 10.8 8.96 1.21 0.52 7.83 12.4 7.33 7.33 14.4 1.85 11.6 13.1 10.3 11 12.1 12.3 12.1 11.5 10.8 9.1 9.77 8.84 9.87 4.42 13.5 0 7.13 9.8 10.8 8.31 10.5 9.23 8 9.75 10.4 9.74 9.02 9.57 8.8 9.29 12 12.4 11.7 9.4 2.3 12 11.5 5.33 8.87 9.7 1.21 11.3 6.57 3.77 9.21 9.99 3.14 9.03 9.89 6.24 11.5 6.51 10.5 0.9 3.07 6.79 7.42 8.19 3.34 11.8 8.39 6.88 3.72 7.79 9.91 9.59 7.92 4.02 4.33 11.2 11.2 9.94 2.74 8.9 10.9 8.74 9.54 11 10.8 10.9 7.96 11.7 0.52 10.5 9.69 10.8 8.34 7.58 7.42 9.96 1.85 9.38 4.13 8.81 9.26 7.55 9 8.19 10.1 10.3 7.93 8.7 10.9 8.39 9.7 13.1 9.69 8.94 5.46 5.07 7.75 1.85 9.68 8.83 7.42 0.52 2.83 9.51 8.52 12.4 6.97 7.91 1.21 8.9 9.29 11.8 9.42 1.21 11.3 2.02 9.96 6 8.61 10.3 8.74 9.79 8.84 9.27 5.91 9.92 11.6 9.26 9.49 6.67 8.71 1.46 7.73 4.83 10.2 5.96 2.99 9.87 9.62 10.6 7.69 0.93 8.54 1.67 10.4 11.9 9.09 3.72 5.83 9.89 7.01 4.76 4.62 12.6 8.81 9.55 0.9 2.64 1.46 9.61 4.94 1.93 10.2 12.9 7.96 14.1 12.5 13.6 11 8.71 7.7 12 11 10.1 2.91 10.8 1.85 5.67 7.8 6.57 12.8 8.65 8.7 0.52 0 3.07 5.74 8.99 7.42 11.8 6.94 8.48 10.2 11.6 11.7 12.6 4.3 13.4 13.4 10.2 8.89 7.22 11.9 10.6 9.96 7.73 12.4 6.65 9.5 5.56 8.51 7.19 4.06 4.9 4.92 10.1 3.4 9.63 8.96 5.69 11.7 6.45 1.46 9.96 7.77 9.3 9.21 9.51 10.8 6.71 12.2 6.58 12.3 10.9 11.9 11.6 8.12 10.8 10.2 11.6 12 10.9 12.2 4.94 8.52 14 12.9 12.1 8.92 8.56 11.8 7.8 6.92 9.9 9.52 3.14 9 7.68 8.15 5.04 12.1 10.5 7.74 7.14 5.13 5.69 11.5 8.71 4.64 10.7 3.46 4.96 5.2 6.4 9.96 6.52 10.6 12.6 10.7 12.5 12.4 12.3 9.59 11.3 12 12.9 5 9.12 9.58 9.49 11.8 9.02 8.12 8.23 7.93 6.4 8.59 5.33 9.52 0.9 8.44 2.02 8.94 0 10.3 12.8 8.47 14.8 11.6 13.8 13.1 12.5 12.3 11.6 12 13.6 0.9 12.8 13.8 0.52 6.32 2.42 7.14 4.4 5.89 6.07 5.96 2.8 8.41 2.17 7.62 2.02 1.67 0 6.92 5.85 7.27 4.59 4.67 4.56 7.67 1.46 0 6.98 2.83 3.62 10.5 3.14 8.89 8.91 9.59 11 5.02 7.33 1.46 10 9.65 0.52 1.85 1.67 8.74 1.46 4.94 9.26 11.3 8.5 6.98 10.3 6.77 5.23 10.4 11.5 12.3 9.41 11.3 10.3 7 7.07 6.61 3.34 10 11.3 9.11 6.8 9.05 10.6 11.6 13.3 11 6.15 8.79 11.7 14.1 10.9 6.98 4.94 14.6 12.6 12.4 5.16 10.5 14.9 9.08 15.3 13.9 6.12 11.9 11.2 8.45 11.8 5.25 3.86 13.3 10.3 9.25 0.9 1.46 2.74 5.35 5.77 0 2.83 8.87 9.86 6.99 11.5 10.4 2.3 4.24 0.9 1.21 0.82 10 9.58 2.17 4.06 1.67 7.09 6.11 3.62 8.21 0.52 2.02 3.46 2.58 7.58 9.13 8.57 8.7 4.27 9.12 8.25 3.14 3.09 0 4.69 5.17 8.16 11.1 3.72 10 7.8 2.02 8.87 10.3 7.74 7.77 10.9 8.46 6.24 8.89 5.2 7.05 3.28 0.9 1.67 6.39 1.67 2.91 9.39 7.85 2.53 6.3 5.79 8.28 4.71 5.78 4.81 4.06 6.99 9.21 6.73 4.33 11.1 9.69 7.11 3.94 10.1 5.11 4.45 1.46 2.3 2.53 10.8 3.14 0.52 5.8 8.35 9.59 10.6 8 3.07 5.82 2.99 4.74 1.21 9.59 2.17 0 7.01 2.74 8.84 1.67 8.21 8.22 4.02 3.78 1.21 7.59 6.66 5.13 2.74 1.85 4.51 3.28 4.24 5.16 4.96 8.9 10.1 6.8 8.88 5.2 1.69 0.9 10.3 6.43 12.6 12.7 10.2 10.8 5.41 9.7 0.9 4.9 6.55 11 10.9 0.52 8.89 10.3 7.3 6.9 0.52 5.11 7.58 8.48 8.99 2.02 8.09 3.72 4.46 3.28 2.17 6.51 1.46 6.72 1.46 8.28 0.52 6.85 7.35 0.52 6 5.36 2.3 3.81 5.49 0.9 1.46 7.08 6.85 4.69 4.51 1.46 0 5.48 8.88 5.8 2.17 6.07 3.57 4.06 2.83 0 3.94 11.3 4.24 8.45 4.2 2.02 8.08 9.06 2.99 7.26 10.4 3.21 11.4 3.46 5.65 1.67 8.81 1.21 3.28 2.64 6.25 2.64 0.52 8.03 3.34 7.18 0 0 3.46 11.9 1.46 9.87 3.57 3.21 11.4 10.2 2.74 1.21 8.15 0.9 8.76 10.5 9.16 7.64 11.1 11 4.42 5.53 6.06 6.43 7.64 3.46 8.48 12.8 8.93 0.9 10.3 3.57 6.05 1.85 12.7 11.6 2.17 9.5 12.3 5.55 8.14 14.5 7.65 0 6.45 6.51 2.17 10.4 11.1 6.83 11 7.42 3.57 4.3 2.3 3.57 8.06 2.42 8.14 8.78 15.1 12.6 9.47 6.01 7.81 5.25 11.3 6.12 3.62 7.75 3.1 4.06 9.06 7.46 5.93 1.67 3.07 5.89 3.4 5.65 5.09 0 1.21 6.26 10.5 10.6 1.21 5.56 9.76 5.74 5.18 4.94 5.09 7.45 8.1 6.5 8.67 2.3 6.43 5.83 6.82 7.49 3.52 5.13 9.78 2.74 2.91 10.5 2.02 2.42 3.77 9.4 9.88 4.54 6.34 2.64 0.52 4.67 2.91 11.5 2.15 9.5 12.3 9.49 7.33 3.72 10.1 7.35 7.21 2.99 7.35 3.86 6.74 11 12.7 13 5.99 10.4 9.48 8.75 10.1 10.9 10.1 7.11 8.41 7.21 5.6 8.25 10.3 3.4 7.41 6.46 2.02 8.94 9.03 8.53 7.18 11.5 10 0.52 0.9 8.97 1.21 12.2 8.3 10.9 11.6 12.6 6.49 11.1 9.42 6.45 8.62 9.53 8.04 6.93 8.61 7.58 9.02 9.43 0.9 10.3 10.8 10 1.21 9.63 6.97 10.2 7.15 5.71 6.37 1.67 9.07 7.69 6.63 11.1 8.06 13.6 9.32 10.1 6.14 11.9 11.5 11.7 8.37 6.79 9.74 0 0.9 3.14 12.4 3.72 5.46 12 10.6 10.1 3.72 9.46 7.43 12.5 9.97 10.4 9.08 11 7.7 7.3 12.2 9.89 11.1 11 9.94 12.7 7.52 6.93 9.77 7.42 12.4 5.22 4.02 6.01 9.94 2.83 0.9 0.75 8.4 8.11 5.98 2.99 8.86 9.61 6.04 1.67 6.6 3.86 2.17 9.01 2.17 6.29 5.92 7.7 8.65 8.12 8.78 0 0 6.85 5.97 7.93 3.9 5.85 3.34 4.24 9.27 5.76 3.77 6.46 5.87 5.38 6.72 3.52 8.49 0.52 3.82 9.61 13.3 7 5.39 5.72 10.5 2.53 7.52 7.35 2.17 4.17 2.74 7.82 8.51 6.66 4.22 2.64 1.21 2.91 7.69 5.93 6.8 5.65 7.12 7.11 7.99 1.21 7.17 1.67 0.9 0 1.46 3.28 1.46 7.6 7.81 5.87 0.52 9.58 6.17 8.38 0.52 6.37 11.5 2.43 0 8 2.99 10.8 6.32 1.21 8.04 5.75 10 5.68 5.76 3.86 1.21 8.11 12.4 6.54 2.83 6.64 3.81 5.95 5.68 5.23 7.25 4.48 11.9 2.83 0.9 5.55 7.07 9.48 5.28 3.21 0.9 8.96 6.04 0.52 6.58 11.3 6.27 6.52 4.37 8.04 1.85 7.85 9.07 10.2 3.4 12.9 10.1 3.34 8.74 0 2.42 0 11.6 0 1.46 6.33 1.46 2.53 11.4 4.4 2.3 2.74 1.46 4.92 0 11.4 11.1 10.4 10.9 11.8 13.2 12.2 10.6 10.6 11 7.44 12.2 12 10.2 0.9 1.67 15.8 9.61 0.52 8.76 6.84 2.99 12.8 6.69 4.64 10.1 0.52 8.98 7.61 5.33 9.25 3.63 9.63 3.67 0 5.39 9.26 4.17 5.69 15.4 7.84 10.9 3.72 0 6.6 1.67 5.15 8.09 9.5 1.46 1.46 2.42 4.9 0.52 8.65 1.21 5.9 4.1 4.74 3.86 7.84 3.33 2.17 10.4 2.82 4.62 8.72 5.35 0.9 11 2.64 7.77 9.42 6.37 9.32 5.57 2.02 10.5 3.72 8.31 5.84 5.38 3.34 6.2 5.27 5.38 5.57 6.84 7.76 3.52 2.02 12.1 3.72 5.28 7.49 7.29 8.17 6.97 5.55 5.96 2.02 0 4.85 6.69 8.34 0.53 10.3 4.69 6.97 1.21 7.65 8.07 2.64 5.42 7.27 10.4 9.81 1.85 9.57 2.17 3.21 6.06 6.79 8.6 8.68 6.54 2.02 10.3 11.3 8.6 2.53 4.87 0 4.02 3.58 8.81 3.72 10.1 1.67 4.54 5.59 1.46 3.9 6.1 7.3 4.79 1.02 12.6 6.5 8.04 10.3 4.02 2.02 4.81 2.42 8.83 3.34 1.85 7.56 4.06 7.7 0 2.53 2.02 2.47 5.78 3.81 3.14 3.77 11.4 9.45 6.27 6.74 0.52 3.52 7.43 1.85 2.83 1.21 5.95 0 10.8 9.68 8.89 7.16 7.81 9.17 9.55 7.82 11.6 0 11.5 1.21 10.8 0 9.29 10.4 13.4 13 7.12 1.21 10.4 11.6 11.9 0 2.17 5.69 13.2 4.64 12 2.83 0 10.2 11.2 5.61 7.65 9.69 9.98 6.85 1.21 13.7 11.5 13.7 9.8 4.45 1.85 9.8 11.1 10.3 10.9 3.14 12 13.8 12.7 3.28 9.35 8.66 9.53 0.9 5.98 6.4 9.66 2.32 9.41 8.47 13.9 9.96 9.95 8.05 10.5 5.45 1.67 2.64 10 11.7 1.21 4.78 7.56 7.23 9.23 8.62 10.9 2.99 5.01 3.13 9.68 4.1 7.88 6.86 6.53 12.2 7.06 8.96 8.2 11.1 0.52 3.72 6.91 9.35 11.1 12.5 7.4 3.94 7.22 11.2 0 0.52 6.47 8.51 6.99 9.06 6.85 9.3 2.74 8.54 7.93 0 7.75 5.57 0.9 7.2 2.3 3.21 4.02 7.51 5.44 6.76 5.16 2.02 5.09 3.9 11.8 8.27 0 2.74 8.24 5.2 5.31 1.46 3.98 5.51 8.86 0 6.48 0.52 4.64 0.9 5.68 0.9 2.91 5.41 11.7 1.21 7.08 5.02 4.92 7.33 6.13 0.52 0.52 6.71 2.91 8.66 5.28 6.24 6.59 1.46 9.93 1.46 3.62 7.45 4.54 9.61 8.03 0.52 6.89 8.95 10.3 5.97 8.66 8.24 0 2.02 2.3 0 6.15 8.44 3.34 8.84 8.9 2.74 0.9 2.99 6.15 10.7 8.87 2.17 6.82 5.8 9.92 1.46 2.02 8.03 4.02 4.92 9.79 4.37 7.69 0.52 7.9 9.77 12 4.27 8.75 8.31 11.8 2.42 8.55 11.3 3.77 6.79 3.34 4.85 11.4 6.37 2.91 8.82 8.52 9.93 10 8.54 11.3 2.42 9.9 5.42 11.1 10.2 11 10.8 11.2 2.3 8.38 1.21 4.27 10.2 7.24 12.7 9.56 4.74 6.2 5.7 4.3 8.98 4.24 11.7 10.2 13.1 14.5 11.5 12.1 11.2 0.52 5.84 6.48 4.9 7.36 9.79 11.9 9.3 10.7 9.04 12 9.68 10.8 9.2 10.3 7.27 9.04 9.2 8.98 11.5 0 6.57 9.56 8.88 9.65 4.27 2.83 7.31 12.1 10.6 10.4 9.3 10.5 9.36 7.97 13 9.7 10.8 11.6 11.6 5.89 5.46 7.95 9.76 10.8 6.2 3.94 12 7.06 0.9 7.78 3.4 2.19 8.12 5.25 1.85 12 4.56 2.43 7.84 9.08 8.39 10.2 5.99 9.64 4.48 12.9 11 4.76 10.3 11.5 8.73 8.99 9.49 8.69 7.56 0.9 12.2 11.6 12.3 10.8 10.6 11.4 12.2 13.9 2.83 8.83 9.36 0 11.9 12.9 10.6 11.2 9.73 12.2 10.2 10.2 10.2 9.73 4.71 7.45 10.2 8.23 2.99 7.76 7.49 7.8 8.26 8.63 9.4 8.46 10.4 10 1.85 0.52 12.3 11.5 9.18 10.4 9.4 9.44 9.35 9.93 7.46 6.84 11 9.54 5.53 8.88 9.96 10.2 8.75 11.7 11.2 9.42 10.7 6.22 12.6 10.5 4.76 10.9 12.8 9.25 2.02 9.01 6.09 8.3 12.8 10.5 9.12 8.89 7.67 7.4 10.7 10.6 10.1 10.4 3.9 9.1 7.5 11.4 11.4 7.93 3.57 11 12.4 7.63 0.9 1.46 8.28 5.63 8.54 12.8 6.12 9.62 3.94 4.79 8.5 7.74 4.13 5.95 9.42 5.94 9.42 2.3 7.39 9.11 0.52 10 6.62 8.96 8.97 9.72 3.62 2.02 7.09 7.44 8.49 10.1 9.89 4.24 8.08 9.32 10.9 1.46 1.67 10.1 11.3 0.9 6.01 6.2 10.5 9.73 2.42 0.9 2.53 3.4 8.19 2.99 8.98 0 2.17 5.41 9.9 9.47 4.1 10.2 10.5 5.97 8.54 3.17 4.54 6.77 5.33 11.1 7.26 2.91 7.25 0.52 8.37 7.03 3.28 7.58 1.67 1.85 9.66 10.5 6.73 5.95 4.64 2.02 2.99 1.85 9.59 5.22 2.53 0.52 8.55 5.85 8.46 7.79 11.4 3.21 7.03 6.77 5.04 7.27 4.81 4.33 7.65 7.48 4.4 4.83 9.33 5.8 3.14 4.17 6.8 1.21 6.23 6.67 4.38 2.64 4.3 0 2.74 3.86 3.28 1.21 9.06 2.17 8.58 7.13 4.37 7.12 7.48 4.76 5.46 10.2 1.67 0.52 2.3 3.28 4.64 3.52 7.44 2.53 0 7.28 5.07 3.67 0.9 11.5 4.24 11.3 8.45 2.53 8.84 12.6 7.59 8.92 1.85 8.34 5.35 4.64 8.61 12.2 7.92 6.24 6.58 8.61 5.65 6.8 4.83 3.72 4.67 9 9.72 9.41 5.31 9.3 9.01 11.3 9.56 10.7 7.85 7.7 2.64 9.87 9.31 10 10.6 7.29 5.97 10.2 9.66 8.22 10.1 9.36 8.12 5.52 8.66 8.75 7.7 10.3 0.52 1.21 1.85 11.7 8.78 5.33 8.84 9.49 0.9 3.46 13.8 12 10.2 10.6 0.9 6.02 13.1 10 1.85 11.8 10.7 10.6 11.2 10.7 11.3 7.84 0.9 7.79 10 13.3 10.8 9.73 9.14 3.34 10.2 9.09 13.5 9.58 9.69 8.54 12.6 5.28 13.3 7.46 4.48 11.3 12.5 12.1 12.6 9.18 11.3 8.56 10.3 8.23 5.31 9.58 7.59 6.6 8.8 14.6 8.01 10.7 9.11 8.89 11.9 10.3 12.4 10.1 9.01 9.21 4.72 10.9 10.8 10.9 9.4 10.3 9.98 12.2 11.8 10.4 9 9.31 11.2 11.8 10.5 9.42 11.1 11.1 9.73 11.4 10.7 10.8 8.84 12.1 10.8 9.97 10.2 12.7 9.42 10.5 7.4 13.1 12.4 11.3 11.7 10.6 6.41 8.41 6.56 7.14 0 1.46 8.23 12 8.74 7.21 9.92 8.6 3.9 10.6 10.4 14.8 10.3 3.81 9.99 6.07 3.46 9.11 10.8 9.15 6.93 12.5 2.74 11.6 9.93 8.31 8.6 8.87 9.78 10 9.77 8.47 8.01 8.9 9.75 10.4 9.24 8.48 0 10.5 9.61 10.4 7.91 3.28 11.6 13.7 7.02 9.7 9.07 7.36 9.02 6.38 4.37 10.3 3.86 2.74 8.8 11.4 11.8 13.1 8.15 12.2 9.48 11.7 10 3.52 10.8 13.8 3.34 6.9 10.9 10.1 9.13 9.81 10.2 12.2 8.38 5.79 1.46 10.1 3.46 8.97 8.96 9.56 7.11 13.4 5.71 2.64 13.4 5.25 7.15 4.64 4.76 5.84 10.2 10.4 11.8 7.54 12.4 8.69 1.46 9.87 7.42 4.1 4.42 13.6 11 7.2 0.52 8.19 2.17 8.54 2.53 1.21 5.98 0 6.68 5.98 5.38 6.3 6.43 11.7 9.66 12.4 10.2 11 9.38 9.1 8.94 1.46 8.89 8.84 8.16 9.33 0.52 10.6 4.46 6.83 7.84 7.2 5.6 10.2 9.4 0 7.94 11.3 8.47 1.46 5.38 3.94 1.49 12.3 11.2 9.65 14.7 9.37 6.54 10.9 7.29 6.08 2.17 2.02 4.68 6.14 1.21 0.52 11.3 11.1 13.8 8.03 6.57 7.99 7.69 9.18 2.42 5.78 9.23 9.68 11 8.7 8.94 8.03 4.79 2.02 10.8 4.74 10.6 8.2 7.26 5.02 5.55 11 5.68 4.45 5.2 9.05 7.32 4.24 2.99 6.52 7.77 6.91 11.7 14.3 5.91 8.04 12.5 1.21 1.67 5.61 13.3 8.08 11.5 5.7 12 9.31 9.5 5.04 10.9 9.76 9.64 2.91 7.49 9.3 9.3 7.66 15.3 9.45 1.85 11.1 13.9 0 6.37 9.99 9.46 11.8 6.36 9.07 9.92 5.66 6.35 9.5 4.33 9.46 4.27 10.5 5.52 4.9 11 10.3 9.51 2.64 3.77 1.4 10.4 11.1 10 12.3 10.2 10.8 9.65 8.91 1.85 3.5 1.85 12 2.64 5.35 9.73 7.62 4.56 0.9 8.65 9.1 9.06 10.5 10.3 12.3 7.16 9.37 10.9 13.3 7.48 2.02 13.8 7.19 5.33 2.02 11.2 11.2 9.77 10.3 10.7 10.6 8.58 8.2 9.32 7.95 8.69 7.53 10.5 9.93 10.4 2.17 8.71 9.02 11.3 9.17 10.8 8.81 7.91 10.4 9.96 10.4 11.4 7.73 9.33 10.3 8.47 10.2 8.22 10.1 11 9.34 11.2 10.8 8.89 10.5 6.66 9.42 7.15 11 5.84 7.72 8.5 11 10.6 8.44 7.41 9.95 1.46 9.05 10.2 9.76 9.21 9.83 9.24 9.7 8.35 11.7 9.54 10.1 10.2 10.5 10.8 10.8 10.7 4.72 8.06 5.2 3.83 9.76 10.3 6.67 8.45 9.66 8.63 11.6 7.08 10.5 10.7 8.44 8.31 11.3 11.1 5.8 7.81 9.29 8.76 9.68 8.41 11.7 11.4 11.5 12.3 8.79 10.8 9.3 11.4 9.29 9.27 8.54 10.4 10.4 8.6 10.3 9.68 10.6 10.9 10.8 3.07 8.65 6.8 8.64 8.19 10.5 10.2 8.11 8.86 8.74 9.87 10.4 12.7 9.54 10.3 8.23 9.5 6.08 11.5 5.98 11.2 11.7 7.75 9.81 10.3 6.98 8.2 9.8 9.97 7.3 7.79 4.13 10.7 6.41 9.33 9.14 8.26 10.8 8.63 9.94 9.86 9.92 9.17 7.77 10.4 11.6 7.71 11.6 4.27 8.94 10.1 8.72 7.66 6.2 10.7 9.65 10.8 10.4 9.38 8.3 0.9 4.72 1.85 10.4 6.59 9.82 6.53 6.05 9.28 10 9.81 7.89 8.25 0.52 11 9.82 9.76 9.29 10.2 7.65 10.1 10 9.25 9.55 5 7.31 9.59 6.18 11.1 9.99 10.2 7.9 11.3 7.36 9.45 10.5 10.3 4.55 3.77 2.42 11.9 9.82 10.1 11 8.75 6.14 6.83 9.05 9.97 9.09 10.2 7.3 10.1 10.5 4.37 1.46 10.8 7.06 9.98 8.61 9.64 10.6 7.23 9.17 7.78 8.49 9.89 8.73 10.3 1.67 9.29 10 3.07 8.16 9.62 7.84 5.8 6.6 5.09 9.44 8.1 1.46 9.18 7.36 9.28 9.66 8.54 9.98 10.4 11.8 11.5 6.93 11 5.46 9.19 8.47 6.45 5.59 12.1 10.2 6.91 10.9 10.6 10 9 9.03 8.78 0.52 8.63 0.52 9.46 9.65 10.4 9.79 11 4.33 6.24 10.9 9.72 9.58 1.85 11.4 9.9 9 11.6 8.83 9.78 7.92 4.79 7.74 10.2 7.68 9.73 12.1 10.3 10.3 4.45 9.26 7.54 8.31 10.3 9.13 11.9 7.9 11.5 11.2 7.6 8.46 6.51 8.73 9.21 9.51 7.88 9.02 10.2 10.7 4.54 10.1 11.7 10.9 7.78 9.66 10.5 3.07 11.6 9.43 10.4 11.1 3.46 9.58 8.52 9.25 8.66 6.06 11.2 9.57 9.25 0 10.2 8.47 8.82 10.7 2.42 8.3 8.45 10.9 11.9 10.2 11.7 9.84 11.9 9.31 9.22 9.73 11.9 10.9 11.3 9.96 9.98 8.89 5.66 9.43 8.65 3.4 11.1 10.9 8.55 9.53 8.67 9.35 10.3 10.5 5.39 9.49 7.42 3.86 11.2 10.2 9.57 9.73 7.96 7.66 11.3 7.8 9.78 7.61 9.34 9.37 10.8 3.28 8.73 8.62 9.71 8.31 7.59 9.01 10 9.65 10.4 10.4 7.23 10.4 10.8 10.6 10 3.72 11.6 10.3 10.3 8.05 10.7 10.8 11.6 9.79 10.8 10.9 10.5 10.6 7.22 11.5 10.3 12.3 10.1 9.23 10.4 9.1 12.4 8.89 3.14 7.55 10.3 10.6 10.9 8.64 11.9 10.7 11.4 8.64 9.29 11 11.3 10.8 7.1 10.3 9.62 10.9 10.1 10 10.9 8.21 10.3 10 11 9.51 9.35 9.53 10.5 8.99 8.34 8.11 11.6 9.92 9.71 8.62 11.5 7.9 7.72 4.33 7.69 8.89 8.96 5.51 10.6 9.28 9.53 10.4 8.98 8.76 10.5 12.5 10.1 4.59 8.72 0 10.5 8.4 5.84 9.05 7.02 10.8 9.33 7.46 10.7 2.42 8.38 11.7 10.4 9.49 11.7 0 10.1 7.66 0.52 2.17 8.85 9.39 3.21 11.8 9.29 9.09 3.57 10.1 7.12 10.6 10.5 11.4 7.31 1.85 8.65 9.42 1.85 10 11.5 9.63 10.9 4.4 10.5 12.3 9.26 8.71 5.37 8.76 8.88 9.54 9.65 9.75 8.91 8.91 9.94 7.83 8.71 7.22 9.78 9.35 3.77 0.52 10.5 4.4 11.5 9.89 10.5 9.78 12 11.9 2.02 9.97 9.77 10.5 8.81 11.4 0.9 9.34 9.28 14.2 13.2 7.75 11.3 12.7 4.33 5.35 14.5 6.58 8.5 11.4 13.9 10.2 9 5.79 4.48 5.61 1.67 12.2 3.4 12.9 1.46 9.42 9.31 9.5 9.09 10.4 10.3 4.02 9.4 9.5 12 4.13 10.7 11.5 8.46 6.69 7.85 10.2 8.62 9.84 10.7 9.05 8.66 9.14 9.77 9.08 9.13 11.2 8.66 10.4 9.74 7.25 5.36 8.9 10 10.2 10.6 9.53 8.73 0.52 8.6 9.1 10.7 7.73 10.4 9.11 0.68 15.6 8.62 9.45 2.17 12.5 5.55 9.02 10.6 9.17 9.34 8.39 11.7 7.27 8.91 7.81 6.43 6.87 11.1 4.67 7.32 2.56 9.95 7.71 5.41 3.14 8.61 10.8 5.96 7.84 7.88 8.72 10.2 9.21 8.94 14 3.28 5.6 9.31 7.24 4.87 8.63 2.53 10.8 9.28 10.6 7.78 11.6 9.58 0 11 9.31 11.1 12.5 8.21 9.1 10.5 10.8 4.48 7.45 1.21 10.9 5.77 10.3 7.91 10.2 3.42 4.79 11.7 9.81 8.17 10.7 9.23 8.94 8.14 9.01 5.51 4.51 6.08 0.52 7.79 8.41 3.62 5.89 3.94 5 12.6 1.46 9.87 5.02 2.17 5 11.6 6.37 8.21 8.05 9.82 10.2 8.73 10.9 10.2 8.69 9.52 8.81 11.1 9.73 9.41 10.4 9.56 4.2 2.74 7.06 7.16 8.85 0.9 9.55 2.02 5.25 9.17 10.1 8.55 8.44 4.98 10.6 10.8 11.9 2.17 9.51 9.6 6.26 2.44 8 2.02 9.44 8.68 6.75 8.89 9.76 9.32 9.31 12.4 11.3 0 7.27 6.53 9.43 10.4 9.61 11.4 10.9 8.09 6.11 10.4 8.8 13.2 12 11.2 3.21 3.46 10.4 7.05 9.63 11.2 8.13 6.96 9.68 10.5 2.3 4.59 10.4 8.58 10.3 10.2 10.3 12.8 9.75 5.7 8.35 9.37 3.4 2.42 11.8 9.2 10.1 10.8 2.89 8.41 5.31 4.37 9.94 7.25 5.57 10.1 11.1 12.4 9.88 9.45 9 3.86 3.72 11 10.2 10 11.2 9.24 9.71 8.97 1.67 10.7 9.08 10.6 11.8 7.42 10.7 9.31 7.66 10.5 9 8.99 10.5 8.83 10 8.8 6.26 8.84 10.9 9.37 9.78 8.8 11.9 9.57 8.94 10.8 8.73 6.69 9.52 7.16 1.21 7.88 7.33 7.55 9.53 8.72 10.4 6.02 6.89 9.6 8.81 8.49 10 1.46 8.34 9.04 8.77 9.28 8.86 9.49 7.26 11 8.58 9.98 8.19 10.8 11.2 7.79 10.1 8.37 9.71 8.85 8.12 4.54 8.48 8.36 4.85 8.2 11.4 7.1 8.13 9.74 3.77 10.6 1.67 10.2 11.3 10.1 9.82 3.14 9.35 9.51 7.65 9.93 10.3 4.62 7.74 7.96 6.64 11.4 8.15 3.21 8.8 9.71 10.7 8.99 10.3 2.99 10.4 9.97 7.81 5.07 9.14 8.61 11.5 10.3 13.3 11.5 8.39 8.81 10.4 10 1.67 4.27 9.44 2.02 11.7 9.76 3.52 9.34 7.47 8.61 7.23 10.4 2.91 10.6 2.91 7.01 2.02 9.86 6.86 8.79 11.7 5.63 8.35 10.9 9.05 5.16 9.13 9.63 12.2 10.1 8.46 7.56 9.91 13.9 9.51 9.45 8.73 6.6 8.89 1.21 9.58 9.42 9.58 9.48 9.93 7.6 9.29 6.94 9.62 7.05 9.67 5.53 8.81 10.1 8.98 6.99 10.7 9.39 7.89 9.38 8.26 10.3 6.99 0 6.9 1.67 8.41 8.61 5.38 0.9 10.5 9 8.39 10.7 7.25 8.62 8.64 9.91 9.05 11.2 5.27 9.35 7.58 8.39 8.17 8.98 6.16 11.1 10.3 0.9 9.58 8.14 8.74 9.38 8.43 8.97 7.35 10.1 6.72 11.3 9.64 8.35 10.3 9.99 5.77 11.5 6.67 9.96 9.26 9.11 8.52 9.96 9.14 10.3 8.1 9.67 7.41 10.2 12.1 10.9 9.35 10.5 9.2 12.2 8.57 10.3 3.67 9.15 6.95 6.77 9.4 9.85 8.95 11.7 2.17 11.4 9.03 10.4 9.58 9.27 10.5 8.58 10.9 10.3 8.66 11.4 6.37 8.34 8.9 10.8 10.3 10.3 9.11 11 8.93 10.1 7.02 4.24 9.38 9.43 9.46 0 9.23 11 10.4 11.7 5.56 8.18 5.83 8.92 10.6 9.43 9.92 10.1 9.74 8.66 10.1 7.67 9.49 9.59 9.3 5.76 12.3 8.63 8.44 8.76 9.43 8.11 9.95 1.21 9.93 8.9 6.69 8.22 9.92 10.9 6.01 9.98 8.9 9.87 0.52 7.78 7.53 7.69 10.2 7.06 9.12 6.73 9.55 1.21 10.8 11.8 8.13 8.68 11.3 7.59 5.89 12.7 11.1 5.6 12.3 12.9 12.3 7.06 9.28 9.95 11.1 9.31 8.16 8.33 6.84 8.99 12.1 10.5 9.67 8.21 9.05 7.13 8.85 9.71 4.24 10.1 0.52 0.9 8.02 5.72 11.1 5.02 6.2 9.08 9.45 9.74 10.4 9.25 7.53 6.39 9.21 6.37 11.9 9.52 8.32 10.6 9.33 11.3 9.39 7.27 8.77 11.2 9.68 9.79 8.02 5.74 2.83 8.72 5.94 4.43 4.3 7.41 3.94 10.1 4.17 11.6 5.25 6.96 6.79 9.72 8.42 9.66 11 7.95 7.59 8.83 10.6 10 9.05 4.37 9.92 4.27 7.45 7.95 9.49 8.22 7.81 10.6 4.1 10.2 9.2 9.53 9.27 9.48 8.45 5.79 10.7 9.75 10.5 8.77 9.4 8.4 8.1 10.4 8.39 10.5 8.64 10.9 0.9 8.7 10.7 7.1 8.91 6.1 10.2 9.76 8.43 9.44 3.67 5.69 9.52 11.4 9.27 10.2 10.3 10.7 9.17 10.2 10.2 9.92 10.2 11.4 4.2 8.24 8.13 10.8 9.25 9.71 10.8 10.9 10.2 8.09 11.7 9.7 8.49 10 7.5 9.65 10.1 9.95 8.58 9.44 10.4 10.3 5.55 7.76 9.58 9.1 8.47 12.3 8.23 9.48 10.7 10.4 6.33 10.3 9.98 9.24 10.4 3.57 9.26 8.53 10.4 6.27 0 9.66 11.2 9.23 7.46 1.67 9.68 7.88 8.95 8.19 9.38 11 10 10.3 7.97 11.6 2.91 10.8 8.47 9.69 4.4 11.2 9.95 8.09 10.1 9.52 10.8 3.9 9.9 6.68 6.05 9.05 10.2 8.79 4.1 8.48 6.73 10.4 4.27 10.4 10.1 10.8 8.84 10 11.6 9.68 5.96 5.57 9.75 9.76 7.54 9.07 10.7 10.1 10.2 10.3 9.9 9.34 8.92 9.18 10.9 10.2 2.42 3.94 8.39 8.07 8.48 9.98 3.4 8.76 9.92 11.6 10.2 10.6 4.59 11 10.6 9.85 6.87 9.07 7.32 10.7 9.74 7.94 7.06 3.07 9.92 7.27 4.79 1.21 9.09 12.1 2.99 10.1 10.3 11 11.4 6.99 8.47 6.06 7.26 8.39 8.91 10.4 0 9.85 9.89 1.85 7.51 5.18 10.2 11.3 8.76 10.8 10.8 9.77 8.09 6.94 5.79 9.83 8.38 8.38 9.77 9.34 7.29 10.2 7.5 10.3 8.25 10 9.56 5.76 8.45 6.88 9.55 8.8 9.94 10.6 11.3 4.27 6.01 7.67 11 11.6 7.27 11.7 9.52 9.19 11.6 7.95 6.45 9.81 8.34 2.17 3.94 8.96 12.5 9.88 5.98 7.4 7.87 10.3 9.81 10.3 8.84 8.76 7.95 7.84 10 5.2 7.31 12.5 12 5.95 9.82 3.21 7.77 10.3 7.91 4.69 0.52 0.52 8.11 4.48 9.34 9.82 7.21 1.46 8.27 7.44 9.35 10.9 8.89 11.1 8.11 3.52 10.6 10.2 10.6 11.2 7.81 10.6 1.67 12 11.3 6.77 3.4 8.89 3.77 6.81 1.67 8.17 3.67 13.1 7.12 6.03 9.72 9.65 6.87 3.22 6.08 9.12 10.7 6.02 8.92 10.4 3.21 3.81 6.75 7.81 8.08 9.27 8.32 8.87 7.59 2.91 10.1 8.5 10.8 9.59 12.2 3.07 9.43 10.1 8.38 5.87 10.9 9.73 8.05 10.7 8.15 10.2 9.1 6.97 0 6.7 7.81 9.82 10.1 11 10.4 10.6 7.56 8.77 11.1 10.5 3.4 8.35 9.02 6.33 7.82 7.19 11 9.11 8.98 9.5 10.8 10.8 10.3 8.9 11.6 8.57 10.7 10.4 9.99 9.16 9.65 8.65 7.51 9.85 9.95 5.42 9.34 7.3 10.3 9.03 10.5 7.26 9.39 8.42 10.1 9.67 8.69 10.9 4.48 9.97 9.48 9.1 6.35 9.69 12.2 11.4 10.7 7 7.65 9.7 12.2 9.23 7.94 10.4 10.6 8.86 11.3 9.06 8.91 10.6 7.2 7.94 10.2 10.7 11.1 9.38 9.07 10.4 3.4 10.4 7.62 10.2 5.51 10 9.52 10.6 2.74 12.1 3.9 10.9 8.8 8.68 9.08 10.3 11.5 9.76 9.91 8.46 9.84 2.99 3.62 6.26 8.39 8.52 10.8 9.87 9.41 11.5 7.2 7.69 8.92 10.1 10.2 8.4 10 12.5 9.3 8.88 6.59 8.91 11.2 11.8 11.2 10.3 12.1 10.2 9.07 9.6 10.2 10.3 10.3 11.6 11.4 8.21 9.48 8.83 10.8 2.74 12.4 9.94 8.06 8.02 9.06 10.6 7.71 10.4 9.75 6.46 10.1 9.1 8.12 10.8 9.1 8.43 4.69 9.83 8 10.8 9.09 9.42 7.96 8.5 6.67 8.98 8.43 8.44 9.84 6.05 9.09 6.92 7.76 10 8.26 6.22 9.1 8.77 8.54 8.66 9.93 5.84 8.51 1.21 8.49 9.1 3.98 9.61 6.26 6.21 6.4 4.1 7.79 6.47 9.16 1.46 7.18 9.73 9.73 4.98 10 9.56 3.4 9.5 8.69 8.3 10.3 10.5 7.74 9.12 9.38 11.9 10.1 8.29 9.39 9.88 9.96 6.97 9.26 4.64 10.4 10.9 8.62 9.29 7.78 10.9 7.56 9.57 9.59 5.01 11.3 7.36 10.9 7.33 10.9 6.4 10.7 10.1 9.04 10.9 8.95 4.06 8.81 8.17 10.4 9.79 9.2 6.13 8.31 11.5 6.73 6.6 1.21 12.6 8.64 8.62 9.43 5.72 10.7 9.02 7.25 6.57 9.36 10.6 10.6 7.27 10.2 7.92 12.1 6.66 10.4 9.95 9.36 9.2 4.13 13.3 9.23 4.1 9.58 5.2 9.67 5.46 11.4 10.1 8.52 5.95 9.36 9.51 4.67 8.16 9.93 11.2 11.9 11.8 9.82 11.3 7.57 9.87 10.2 9.37 7.7 8.03 2.74 7.09 0 10.7 9.44 9.15 2.99 11.5 7.41 10.9 10.3 9.74 9.63 11.3 2.74 7.58 8.19 8.36 9.25 2.99 2.53 5.52 9.17 4.4 6.72 3.52 4.37 5.91 3.28 3.34 4.06 4.3 4.33 11.2 4.33 4.13 3.1 2.17 2.91 10.4 1.67 5.23 7.14 7.45 6.05 4.67 5.64 5.46 7.61 4.87 9.62 4.3 5.16 4.56 8.75 3.07 7.02 8.55 3.81 2.02 2.99 3.67 12.4 2.02 8.63 10 2.91 9.49 10.2 0 3.4 8.2 7.3 9.04 0.9 4.69 11.2 4.48 9.72 10.3 3.21 10.2 10.5 5.18 9.77 10.2 7.71 8.99 10.3 11.8 6.71 9.57 0.52 1.21 10.4 10.1 10.3 9.39 9.79 9.29 5.64 7.29 11.9 6.55 3.62 3.21 9.58 3.46 8.94 4.42 4.06 10.5 8.82 9.87 4.74 0 14.6 3.52 7.54 4.45 10.2 7.57 7.27 10.6 9.03 12.1 6.08 6.26 9.88 9.82 8.61 10.6 8.71 2.3 3.14 9.4 2.17 7.94 2.42 9.13 5.41 11.3 10.6 14.5 10.1 1.21 9.86 9.37 11.3 11.1 11.8 7.72 8.87 11.7 8.72 12.4 9.95 10.6 7.67 6.69 11.8 12 12.1 12.1 11.9 11.1 12.8 12.6 8.31 10.6 10.6 10.4 8.13 10.6 9.64 2.42 12.1 9.74 9.82 10.2 9.52 10.2 6.31 7.65 11 12.6 4.74 7.13 9.86 8.71 10.8 6.05 9.91 12.4 7.15 9.18 7.91 6.89 10.8 8.93 9.24 8.95 12.4 7.75 7.36 11.8 8.77 12.4 9.44 10.4 9.43 9.42 8.56 9.63 8.7 10.7 9.23 9.5 11 9.89 10.4 8.42 5.46 10.4 9.2 9.86 0.52 5.16 3.72 9.23 7.75 11.1 5.65 8.02 6.79 3.28 8.18 8.27 4.1 8.9 9.3 6.73 8.64 10.4 8.7 10 8.49 11.1 10.1 9.85 9.45 9.61 9.61 7.08 3.07 10.1 8.37 8.01 11.8 9.14 11.5 3.62 10.1 10.1 10.7 11.6 10.2 8.9 2.64 8.56 8.87 10 10.8 8.95 9.27 12.1 10.2 3.57 11.3 9.24 3.09 11.6 12.4 13 9 9.38 7.59 9.16 12.7 3.98 11.6 2.02 10.3 2.02 5.18 8.7 10.3 12 0.9 8.39 8.57 8.44 2.02 8.33 9.06 9.06 9.51 10.2 7.24 9.02 3.98 10.3 6.81 11 9.07 6.41 5.11 9.21 10.1 11.9 10.6 10.8 5.94 11.4 8.82 10.8 11 11.9 8.27 7.47 8.39 11 9.79 10.9 7.43 11.7 10.3 4.85 10 3.4 10.7 6.69 10.7 7.11 5.38 7.01 9.55 11.1 9.25 10.6 10.8 11.1 10.8 11.1 8.34 10.9 8.87 9.98 9.25 7.91 10.9 4.3 10.2 11.3 11.3 3.28 8.48 6.33 8.34 9.17 10.4 9 8.74 10.5 9.13 9.99 9.09 8.45 13.2 9.64 9.32 9.06 8.22 11.2 11.1 9.35 10.7 9.41 9.65 10.7 5.31 5.59 12.6 8.64 10.6 0.52 2.3 10.1 8.88 7.2 2.17 5.57 9.41 11 2.53 8.16 8.84 9.28 6.71 8.68 2.53 6.44 7.85 7.6 3.9 11.4 10.2 5.88 5.64 4.13 7.76 8.43 2.18 1.67 10.2 8.97 0 8.06 9.31 9 8.94 10.4 8.63 11.5 8.35 8.88 6.99 6.5 13.5 4.4 10.1 6.66 11.2 8.48 4.24 1.21 2.17 1.21 9.62 9.43 5.85 9.51 1.21 8.46 9.96 10.2 5.69 6.78 8.11 10.6 1.21 5.49 11.5 10.7 3.14 10.3 10.1 7.22 8.99 8.38 6.34 9.92 9.65 8.99 9.59 2.42 9.73 11.4 9.78 5.55 11.4 9.57 8.12 0 10.3 1.46 10.9 2.91 4.21 4.72 10.4 9.27 11.5 9.42 10.1 9.8 11.4 9.32 9 7.91 11.9 7.58 10.3 9.16 8.24 4.37 6.04 4.81 1.21 6.27 10.9 7.97 10.7 10.9 10.3 10.3 5.78 4.62 6.23 9.17 13.2 2.02 8.76 9.55 7.5 8.68 7.77 6.37 10.1 7.98 9.74 9.6 0.52 7.77 5.44 7.39 6.08 11.6 9.29 10.4 7.07 8.73 2.17 8.62 7.94 4.81 14.8 9.4 4.64 9.66 5.13 2.91 3.21 6.74 2.74 9.44 8.3 1.21 10.8 10.2 9.82 9.69 8.4 10.1 9.65 9.71 5.74 8.41 4.13 1.21 9.05 8.89 7.93 7.96 10.5 3.81 8.31 10.4 8.6 11 9.32 8.38 10 2.99 6.26 10 10.3 8.87 9.29 4.13 7.58 5.22 13 8.51 2.42 11 8.29 5.8 8.35 8.3 10.9 12 10.2 11.8 9.41 9.31 5.49 8.13 9.9 6.84 9.28 10.2 10.2 7.96 8.63 9.09 9.73 9.34 10.5 8.58 12 6.91 10.5 9.86 11.4 11.4 7.21 6.14 8.4 4.81 8.24 6.5 8.07 7.9 6.52 9.15 9.32 10.6 8.09 12.4 7.16 2.02 10.2 9.65 8.89 10 9.4 5.69 8.74 8.11 9.87 9.12 4.04 7.49 4.54 8.82 6.66 7.46 3.14 6.86 10.3 8.7 5.95 10.1 10.2 8.47 5.42 3.21 6.89 3.07 9.54 8.29 3.9 8.79 7.15 10.3 6.92 9.3 9.94 8.56 10.2 9.51 9.08 10 4.67 9.24 11.1 12.1 10.5 11.5 9.22 6.53 5.28 8.56 10 9.02 1.85 7.61 0 10.7 8.4 7.58 10.3 10.2 3.28 4.45 8.79 8.39 5.53 6.76 11.1 13.3 7.72 7.03 9.82 10.1 7.7 8.14 7.38 3.86 6.81 8.01 3.46 9 9.17 4.81 9.42 9.3 7.49 10.8 10.3 9.96 10.9 6.91 9.69 11.1 8.75 8 7.04 10.8 10.7 10.2 8.81 7.43 9.91 10.2 9.47 10 13 11.4 9.95 11.1 11.5 3.57 11.3 12.3 7.81 9.68 11 10.8 7.48 4.3 10.7 9.88 11.5 7.41 10.8 10 7.47 6.74 7.76 4.92 5.95 9.51 4.37 9.02 7.17 3.98 11.5 10.5 10.5 8.94 2.74 8.84 8.9 11.3 11.6 9.88 9.47 9.07 6.43 5.09 10.3 1.67 0.9 11.4 7.79 9.64 12.1 9.27 10.9 5.27 3.4 6.52 9.49 10.1 11.9 9.22 12.7 9.55 10.3 7.74 3.4 9.45 10 8.91 11.5 12.7 7.92 9.64 8 9.09 12.3 11.4 12 8.73 8.86 6.07 6.89 7.22 7.7 10.4 4.87 10.7 12.1 10.1 12.6 9.5 13.3 11.1 11.8 11.8 10.1 10.8 9.93 8.8 9.86 10.3 9.98 1.46 9.21 6.43 8.83 10.9 6.34 9.38 7.09 9.09 6.89 4.94 5.16 10.4 9.19 5.88 10.6 6.69 2.3 10.4 6.77 12.6 10.6 9.67 9.39 11 9.14 11.9 9.77 7.79 2.42 10.4 11.7 10.2 0.9 9.34 10.4 10.5 0.52 8.49 6.52 10 12.2 0 4.2 11.2 10.4 9.28 8.44 11.9 0.52 3.02 2.42 12.7 3.94 6.29 0.52 11.9 12.2 0 3.81 7.64 3.4 11.1 10.1 5.07 5.41 10.8 7.79 5.71 11 10.1 8.23 3.98 11.8 9 10.9 10.3 9.96 10.2 9.95 9.42 11 1.85 8.14 9.66 6.95 5.71 6.8 10.5 7.74 8.75 8.07 9.16 16.5 6.17 8.4 2.64 7.16 4.4 2.42 11 1.46 9.81 9.89 9.49 4.2 8.25 3.57 9.99 11.6 10.1 10 10.6 3.4 0.52 8.56 8.85 1.85 8.44 7.17 10.3 2.91 6.02 10.3 1.67 9.81 2.53 0.52 9.32 13 8.15 10.7 9.92 11.2 0.9 9.76 8.8 11.2 7.03 10.4 8.53 9.9 9.21 9.16 4.06 10.5 9.53 10.6 10.1 10.7 9.96 11.2 9.76 11.1 8.71 9.31 10.8 10.3 0 8.46 10.4 6.57 7.33 8.9 4.54 10.9 10.4 0.9 1.46 6.58 8.35 0.52 12.1 10.9 9.16 10.7 7.71 10.1 6.67 11.4 9.92 6.13 8.63 0.52 6.66 5.04 8.25 8.66 7.32 0.9 11.6 10.2 9.31 9.97 14.1 14.6 13.8 12.9 10.4 10.6 12.7 5 14.7 10.6 12.5 13.3 11.8 13.1 12.5 12.2 12.5 9.44 13.3 3.94 12.6 10.8 9.44 12.4 12.8 12.8 12.7 12.2 12.3 12.2 12.7 12.4 12.2 12.8 11.8 13.5 13.2 12 9.4 9.16 13 7.35 14.1 13.9 12.7 10.9 9.3 13.5 13.8 12.9 13.5 11.1 13.6 4.23 2.3 5.75 8.04 9.49 12.5 2.3 2.74 13.5 10.3 8.85 10.3 10.4 9.96 12.3 13.6 13 12 13.4 13.5 11.9 12 11 12.4 12.7 13.2 9.16 13.8 12.7 12.6 12.3 12.7 13.4 12.6 9.27 8.86 12.8 2.3 12.1 4.42 8.07 12.8 11.2 10.6 11.2 10.4 0.9 8.23 10.9 9.87 4.42 7.64 9.44 9.98 10.4 3.07 3.98 3.62 6.41 5.22 11.7 5.61 4.42 11.2 1.67 13.3 5.31 8.41 12 13.5 0.9 9.79 4.1 11.1 8.56 11.2 11.2 4.43 8.19 8.31 11.2 7.69 9.5 13.8 8.5 6.75 11.1 10.1 10.9 6.51 10.1 9.85 8.53 14.4 4.57 7.59 8.58 5.44 7.77 2.64 7.52 0.52 13.2 4.69 3.9 5.15 7.35 10.8 9.36 5.91 9.08 9.63 11.2 0 1.67 7.91 6.6 4.93 0.52 6.57 8.26 3.9 4.51 7.46 9.81 4.87 0.9 6.33 9.31 2.42 6.84 4.69 5.45 5.02 8.06 8.02 12.2 8.28 6.95 10.4 11.2 10.7 7.15 11.4 9.58 3.57 10.7 9.26 11.2 8.9 9.77 10.4 9.33 6.65 8.95 8.55 8.75 9.87 10.8 9.16 10.2 8.78 8.44 11.2 7.01 4.48 8.8 9.58 10.1 10.7 6.11 9.37 1.67 1.67 9.66 7.08 7.96 8.41 8.12 8.99 5.22 10.1 8.94 7.77 8.82 7.48 10.8 9.05 11.2 2.74 9.25 4.69 9 8.4 6.5 8.33 2.64 11.4 7.39 6.65 5.77 4.81 7.64 10.5 9.45 10.3 3.4 14 5.55 2.53 6.11 8.38 1.21 6.18 7.16 11.8 8.61 11.8 7.53 3.28 3.98 6.48 3.52 10.8 5.74 7.44 9.09 5.33 7.78 4.76 10.9 8.79 11.3 8.41 10.8 11.2 7.8 8.34 7.36 5.61 10.7 6.08 4.67 7.86 3.52 8.73 6.15 7.63 3.46 8.8 1.85 11.3 8.97 6.07 8.38 6.91 8.55 9.72 10.2 10.3 8.56 5.8 10.1 3.98 3.77 4.67 8.35 4.56 10.1 12.8 0 7.38 6.99 9.85 9.72 13.2 10.3 9.59 9.1 7.9 8.71 3.34 5.74 10.5 9.85 9.32 10 2.91 10.5 7.51 7.79 9.36 0.9 0 7.83 7.27 13 0.52 12.5 12.9 5.89 9.26 6.79 7.07 8.99 8.79 8.44 9.31 9.73 11.6 3.81 4.1 0.52 3.57 11.7 3.46 1.21 11.6 10 9.78 10.5 11.6 8.96 5.99 10.7 8.44 6.52 9.88 10.3 9.88 10.3 7.08 8.17 6.21 5.79 1.85 4.76 6.37 12.1 9.08 9.13 6.63 9.91 8.19 1.67 2.42 9.43 7.92 9.27 0 0 9.07 6.95 4.9 8.03 4.55 7.15 4.54 14.6 0.52 6.64 8.97 3.77 11.3 10.1 4.81 9.19 8.88 8.25 6.39 3.21 2.83 7.1 6.92 10 7.42 9.26 7.36 0 5.49 2.91 9.18 3.52 9.26 9.08 3.77 7.56 8.99 9.82 10.7 8.38 10.9 9.31 9.08 10.2 9.03 9.6 10.5 9.27 9.29 2.91 6.83 0.52 1.21 2.53 5.93 4.24 3.77 12 4.51 6.45 1.46 8.74 3.28 7.01 8.22 3.98 10.9 1.21 5.68 3.34 8.32 9.29 6.42 2.53 9.8 5.08 1.85 5.35 1.85 10.2 9.56 6.18 1.21 4.92 1.46 2.64 10.5 0 6.23 5.54 3.21 0 5.15 6.83 6.25 2.53 4.51 7.9 8.5 10.3 1.85 9.79 2.74 1.46 2.3 9.78 1.85 7.2 3.81 12.6 2.83 10.4 3.07 5.55 8.02 0.9 0.52 8.45 9.75 10.2 6.8 8.93 1.85 5.63 3.77 1.67 5.45 3.52 9.08 7.87 7.72 7.84 10.3 11.3 13.2 3.57 5.76 10 11.6 4.37 5.3 10.2 10.4 9.47 10.6 9.96 8.39 8.67 3.4 8.37 10.9 10.1 9.36 12.2 9.33 9.22 8.16 8.17 10.8 8.81 7.97 10.6 9.4 10 11.3 8.49 9.03 8.28 8.44 10.8 8.44 9.52 8.35 10.4 10.1 7.92 9.97 8.48 3.21 9.61 9.47 6.37 7.55 9.17 10.3 8.22 6.66 11.1 13.2 7.76 8.95 10.9 10.1 2.02 7.84 7.87 0 8.3 8.15 10.8 9.07 6.43 8.41 10.1 6.63 11.3 5.15 11.3 8.79 8.49 7.12 10 9.99 10.3 11.3 11.4 9.04 9 7.92 8.69 7.96 9.79 10.7 6.6 1.21 6.33 4.17 8.82 8.35 9.02 5.71 8.4 3.62 8.39 5.59 9.04 2.53 9.87 8.66 6.57 8.19 10.3 8.44 5.18 9.53 7.48 10.5 7.77 9.04 10.5 9.68 10.6 0 10.9 9.44 9.93 9.76 10.5 10.5 8.39 10.1 10.2 9.08 9.54 9.36 9.7 10.9 3.34 5.74 11.8 9.99 10.5 9.39 7.2 8.02 5.12 9.69 8.55 7.73 4.45 5 5.27 6.01 10.3 8.96 10.4 3.07 9.82 7.2 6.74 5.38 6.2 5.91 8.8 9.91 10.4 9.97 8.5 9.32 9.08 9.83 5.41 15.3 12.9 9.89 9.74 10.7 5.27 11.3 10 12.7 10.2 14.5 2.64 8.32 6.09 5.44 2.02 12.5 13 0.9 11.8 10.6 5.52 7.3 10.7 7.87 10.6 9.01 6.46 8.51 11.1 8.98 8.84 11.4 11.8 4.54 5.11 8.84 0 4.96 3.07 0.9 5.33 1.46 9 4.06 7.85 2.64 2.64 4.83 5.35 2.64 0.9 5.02 3.28 11.2 9.22 1.21 5.68 2.83 0.52 0 7.69 9.75 9.17 8.09 11 2.83 8.06 5.71 6.99 0.52 10.5 7.05 6.97 1.46 1.67 8.53 2.02 9.58 6.34 3.46 10 0.9 12 8.23 0.52 2.64 2.02 9.61 8.5 3.62 8.26 0.52 7.93 7.54 2.64 6.59 4.4 6.58 2.17 2.17 9.83 4.56 4.27 9.32 1.46 6.52 0 7.67 1.67 12.6 1.21 5.56 9.19 2.91 6.23 11.8 7.6 9.37 0.52 3.14 10.1 10.3 11.2 9.94 8.23 4.87 3.62 6.29 2.64 7.55 2.53 10.2 10.5 8.42 6.99 11.4 8.76 10.7 9.69 4.17 8.71 10.5 11.3 10.6 8.12 9.29 8.56 9.13 9.1 9.12 7.64 1.21 11.5 7.68 10.1 10.2 11 8.99 11.9 8.56 9.15 2.91 5.18 6.15 5.49 10.5 10.6 11.2 11.5 11.4 7.06 8.17 6.67 12.1 2.5 10.3 9.62 7.97 8.52 7.81 11 11.3 12.1 6.3 7.94 6.95 8.24 7.49 8.86 7.85 8.66 7.17 6.5 12.5 11.7 10.9 11 12.6 10.6 10.2 11.3 10.5 11.4 11 11.1 10.8 11.1 12.3 12.1 8.11 11.7 11.3 9.74 9.86 10.2 2.02 12.9 6.58 11.5 8.09 10.4 10.1 12.8 10.4 10.5 10.6 9.63 13.4 7.41 4.76 12 0.52 4.64 10.4 11.4 8.94 13 11.2 8.36 8.75 7.56 9.81 7.42 13.8 10.4 10.8 7.39 2.3 9.61 2.53 12.8 6.64 8.56 16.1 10.1 8.94 12.2 0 8.14 13.3 10.2 11.8 10.4 9.62 0.52 10.7 9.53 9.96 12 10.5 10.9 13.1 12.6 9.41 11.3 7.52 11.3 11.7 11.1 10.8 12.2 6.89 10.2 12.3 11.1 10.7 12.8 12.6 11.8 11.2 12.6 7.95 2.99 0 10.2 10.1 12.2 12.6 3.07 11.1 2.99 12.1 10.4 11.8 5.48 7.3 9.72 1.85 1.67 4.59 1.85 0.52 4.54 1.21 3.89 9.78 3.63 1.46 0.9 5.5 10.7 11.7 7.97 9.99 5.04 3.14 9.3 7.15 9.11 8.54 10 10.3 5.53 4.1 8.1 6.8 3.4 6.6 8.22 9.11 10.7 9.4 9.19 9.8 9.47 9.65 9.64 9.96 10.6 3.62 13.3 7.85 9.55 11.3 11 5 10.8 9.85 9.73 7.65 12 8.67 9.15 8.86 7.93 10.3 7.8 9.93 10.3 3.81 11.2 6.7 7.71 8 10.7 10.3 7.63 5.77 2.3 5.46 11.8 10.5 2.83 9.63 6.93 10.1 10.3 8.98 6.23 12.3 7.69 11 10.8 10.8 10.3 9.01 10.2 8.73 8.12 9.79 4.72 1.67 12.4 12.5 11.1 10.6 10.8 9.92 10.1 12.1 7.31 1.21 9.11 10.8 8.83 10.5 9.75 10.3 8.83 11.4 5.22 2.91 4.92 7.29 10.2 7.25 6.81 2.02 4.76 6.37 10.5 0.9 0 11.1 0 11.6 11.1 6.91 4.72 10.7 8.87 10 8.04 9.63 11 0.9 12.2 7.69 9.52 10.7 10.4 10.2 3.34 8.71 10.7 5.59 13.2 0.9 1.85 9.09 10.6 9.71 6.07 10.9 10.4 11 4.79 11.1 10.7 8.91 9.12 7.72 2.74 7.64 14 11 5.78 9.49 0.52 9.65 9.46 7.66 8.87 7.19 10.3 8.71 8.3 9.99 8.3 8.68 10.8 9.23 10.6 10.6 9.53 4.37 12.9 1.85 10.3 9.55 8.08 11.5 8.74 2.64 10.3 9.64 0.9 10.1 9.41 10.2 11.6 5.06 11.5 2.02 7.42 12.1 11.3 8.83 10.9 2.83 5.11 9.86 6.12 9.44 5.74 0 11.1 9.76 10.9 11.6 6.8 7.81 13 11.4 11.8 1.85 12.4 11.4 10.2 8.62 13.1 2.42 8.98 7.62 11 6.08 2.64 12.2 11.8 7.02 7.04 5.48 6.82 16 11.7 6.06 6.12 9.74 7.88 6.34 8.82 10.5 9.53 7.96 11.9 14 10 11.8 6.54 3.28 2.74 9.35 9.68 8.93 10.3 5.46 10.6 9.32 4.9 1.85 5.2 6.54 9.63 0 10.4 7.73 11.5 11.8 6.87 3.07 12.2 11.7 8.41 11.2 10.9 10.1 11.8 5.55 7.68 12 10.3 11.6 1.85 13.6 11.2 10.6 9.3 13.5 13.1 9.99 10.1 12.1 8.28 14.6 1.11 12.3 8.49 9.44 14.5 7.31 8.04 7.98 9.6 6.32 6.75 10.4 3.57 13.6 11.9 7.34 8.09 9.3 6.13 0 1.21 5.36 7.55 5.89 1.46 6.23 4.43 13 9.17 10.1 1.85 10.1 2.83 11.2 11 8.04 10.6 7.64 9.37 10.7 9.36 11.3 11.8 10.2 5.93 8.34 9.71 7.2 5.15 10.6 6.96 6.15 9.51 4.62 6.91 10.2 7.21 11.1 5.96 4.98 5.48 6.25 7.45 2.02 7.79 7.07 5.06 7.35 8.13 10.8 4.3 9.12 0.52 5.64 5.3 12.6 7.55 4.2 1.46 6.23 9.31 8.27 0 9.79 0 7.06 9 6.36 4.1 6.47 9.52 6.2 0.9 13.3 3.98 7.68 0.52 6.04 0.9 0.52 8.86 8.08 3.4 8.96 2.83 0.9 10.2 5.57 9.51 2.91 5.25 5.64 10.2 1.04 3.14 6.61 5.8 5.15 5.79 13.2 5.27 4.9 3.81 3.52 6.17 4.87 0.9 6.61 12.3 9.02 7.11 8.59 3.52 4.48 15 7.05 6.78 2.83 8.75 9.18 3.52 1.67 4.83 10.1 5.91 7.24 2.99 5.97 0 8.82 7.34 11.3 9.2 3.9 7.57 6.37 8.23 7.71 9.35 2.74 8.31 0 11.8 0.52 12.2 1.85 13.4 14.8 13.4 0.52 7.67 10.4 9.74 9.03 10.6 12.6 10.1 6.37 11.4 10.8 10.2 11.6 0.52 10.9 11.8 11.6 10 11.2 11.1 11.7 10.2 11.8 12.9 9.11 3.77 2.02 11.5 4.85 11.1 4.51 9.89 6.44 11.7 11.4 3.57 11.4 10 10.9 10.6 9.46 9.67 6.98 1.85 11 2.17 11.5 11.3 11.4 10.2 11.6 10.1 9.22 10.1 10.1 11 0.52 10.7 10.6 9.25 9.5 12.2 11.1 5.76 9.14 11 8.11 10.9 13 12.2 11.5 13.4 8.3 10.9 9.42 6.36 10.1 9.27 9.16 13.1 12.2 4.87 1.46 5.71 3.77 1.21 7.28 8.89 9.65 10.6 3.94 7.58 10.1 11.8 6.64 9.77 12.6 10.8 8.06 6.84 7.09 9.47 11.3 11.9 10.4 6.57 0.9 5.8 9.98 2.53 0.9 4.54 0 3.62 4.92 4.27 1.21 0 8.49 8.21 2.83 12.7 2.3 3.81 1.39 2.74 7.69 8.75 5.62 10.7 3.07 12.6 8.88 7.64 9.26 6.7 8.33 13.8 7 10.2 10.8 12.9 7.84 14.3 13 11.5 14.4 5.78 12.5 10.6 5.13 13.2 8.25 9.29 9.13 7.35 8.62 10 8.36 9.67 6.88 13 7.91 9.54 6.81 6.99 8.2 6.26 8.34 6.2 6.5 7.49 10.5 9.07 8.2 11.6 8.3 8.66 6.15 9.36 9.81 9.25 4.96 10.2 9.35 8.58 7.43 7.66 7.98 7.33 6.57 4.3 2.64 2.42 4.87 6.76 8.76 8.19 8.2 10 6.12 2.02 10.1 2.53 5.84 7.55 7.76 3.4 8.07 5.58 6.85 4.76 12.4 7.17 2.02 2.99 1.46 0.52 8.49 2.64 8.81 9.62 4.4 8.25 7.39 7.26 6.89 5.42 7.89 8.91 5.96 5.91 9.62 8.33 8.06 3.52 11 10.4 10.3 9.43 7.47 5.23 6.62 2.83 10.3 7.74 10.3 8.18 6.67 4.83 4.9 3.86 7.33 7.92 8.5 8.14 1.21 7.55 7.62 8.61 6.93 8.8 6.96 11.1 8.13 8.64 7.81 8.34 11.4 3.72 5.46 8.49 2.3 3.9 11.3 10.4 5.74 6.82 5.84 7.53 2.91 7.73 5.93 7.53 5.56 7.85 8.75 8.64 3.34 7.62 6.21 8.34 6.34 4.87 11.2 9.88 9.99 11.2 8.59 13.4 10.5 10.6 4.35 13.9 8.9 11.5 5.55 5.02 11.3 10.1 6.63 9.57 10.9 9.87 12.8 6.86 3.21 5.31 9.11 11.1 9.35 11.7 8.71 9.91 9.56 9.05 9.63 11 12.5 12.6 7.33 4.51 10.7 2.83 8.48 10.4 6.4 7.57 5.28 9.19 9.18 7.8 9.75 0.9 6.52 9.22 11.8 7.27 10.7 10.2 9.63 10 9.33 6.55 10.8 8.32 9.94 2.91 9.17 10.7 7.38 7.86 8.26 11.5 10.6 1.85 12.3 10.3 8.55 7.52 9.87 10.4 9.07 9.98 10.1 5.42 8.53 11.5 5.11 9.59 6.92 8.95 10.8 9.02 10.2 6.28 10.4 8.35 10.9 10.9 9.74 6.73 9.22 8.26 11 7.92 9.11 10.8 7.23 10.6 10 10.5 9.78 9.56 9.38 6.5 9.52 7.77 8.22 6.93 7.64 9.86 8.6 8.81 9.12 10 10.7 10.3 12.5 5.75 7.82 9.49 9.33 11.4 11.2 6.47 10.2 9.95 10.7 7.79 8.48 5.63 6.8 8.65 7.4 5.49 6.13 9.23 6.57 9.57 11.1 8.6 12.9 6.96 7.11 0 4.29 8.69 12.7 8.48 10.1 8.58 5.33 9.84 7.93 8.15 7.48 8.24 8.97 11.2 8.8 9.2 2.42 9.99 13 7.45 10.2 11.9 9.57 7.63 6.94 0 9.07 0.52 2.02 1.85 11 5.83 10 7.53 8.44 4.1 5.94 2.91 4.56 1.85 7.31 7.04 5.92 4.54 7.13 9.85 7.71 9.02 3.07 9 7.12 10.1 3.07 3.21 5.94 4.07 9.89 9.14 6.55 7.51 9.32 11.6 9.04 7.46 9.32 10.5 11.5 8.53 7.09 9.61 12.6 8.59 10.7 9.17 9.66 9.51 8.84 7.24 8.35 11 7.1 3.9 8.58 2.64 8.03 9.8 8.54 8.66 8.84 6.08 8.8 9.85 6.81 9.52 7.15 5 7.73 0.9 6.75 5.07 9.78 7.74 6.6 7.88 7.35 9.1 8.45 9.01 8.76 7.86 8.52 8.61 2.17 8.2 11.4 8.72 7.87 10 11.1 9.61 7.1 9.87 3.34 9.95 5.39 7.16 9.43 6.71 7.4 9.99 10.7 8.28 3.21 7.53 9 8.51 8.77 9.62 7.82 5.25 9.68 8.79 9.84 9.16 9.54 5.68 7.81 8.24 6.71 6.38 10 9.94 10.3 10 7.46 7.25 8.87 9.79 8.89 6.98 7.73 9.42 8.88 11.1 9.05 11.3 8.9 7.05 8.16 9.12 10.3 11.6 11.5 10.5 0.52 9.16 9.96 7.36 10.1 8.97 6.53 7.24 9.81 8.65 6.65 9.07 6.69 9.01 9.55 1.85 6.73 6.76 9.5 6.8 0 9.96 2.02 8.61 8.88 8.8 9.37 3.46 6.58 8.78 7.65 8.43 9.23 9.33 8.87 9.66 9.4 6.8 6.83 4.62 6.59 8.37 8.78 9.56 7.49 0.9 6.4 12.3 8.01 2.91 6.99 12.2 9.39 8.83 9.6 9.42 7.67 9.01 6.71 8.76 6.91 8.95 7.55 8.77 8.66 6.6 11.5 7.75 9.99 6.64 6.4 3.98 5.36 6.45 4.9 9.8 2.3 6.98 7.62 4.98 5.85 8.99 9.83 8.76 7.09 9.9 8.6 10 4.69 10.8 9.51 7 8.91 8.3 4.54 6.66 3.07 5.82 7.01 5.16 9.08 8.48 1.21 8.64 6.08 0.52 4.92 7.94 1.21 6.55 9.1 7.13 8.81 8.03 2.02 7.97 8.92 9.26 11.3 4.9 8.19 9.62 6.25 9.66 7.05 9.93 9.31 6.66 8.85 10.4 6.61 8.39 7.59 8.45 11 11.4 8.42 5.02 11.4 9.79 9.89 5.28 8.76 8.97 5.9 5.86 9.85 10.4 10.3 7.47 4.76 1.21 10.2 8.5 8.94 7.76 6.15 8.84 10.9 7.25 0.52 6.38 5.51 2.74 6.14 7.02 7.06 3.4 10.7 2.83 9.43 2.02 7.66 9.97 11.2 1.67 8.36 9.15 3.27 9.55 2.91 4.98 10.3 4.1 10.7 6.36 7.18 7.4 9.93 8.42 6.16 5.66 9.06 8.88 7.93 7.37 3.67 6.14 9.87 9.35 9.62 8.67 9.53 2.91 6.08 7.41 8.65 8.37 4.02 4.69 4.06 12.2 2.02 3.57 9.12 10.3 8.02 8.73 9.03 4.2 8.54 10.8 9.77 8.25 7.4 8.69 10.5 8.03 9.41 9.8 10.1 9.82 9.16 9.14 9.7 4.59 2.42 2.53 5.09 2.02 8.69 7.45 9.48 0.54 6.57 3.77 0 7.89 10.2 13.3 3.14 7.74 5.45 1.85 7.12 0.9 9.09 7.16 4.24 4.72 5.7 7.24 10.1 10.8 9.79 10.4 10.4 9.4 9.75 9.45 7.54 8.69 9.44 10.2 9.47 10.5 7.13 8.65 7.28 9.17 7.91 8.75 8.9 6.2 8.55 9.33 8.81 9.48 7.33 9.48 8.43 9.32 9.75 9.32 8.17 8.22 10.6 9.69 5.13 9.1 10.4 11 9.97 8.61 9.9 9.8 7.18 2.83 12.6 9.61 7.46 9.78 12.4 8.56 8.92 9.13 9.26 3.62 10.9 9.67 6.98 7.51 2.42 9.3 10.6 8.14 3.34 9.36 7.41 5.99 10 9.73 9.57 8.77 10.1 2.17 11.1 9.66 2.53 8.09 10.9 9.1 7.73 8.76 9.93 9.81 7.71 10.4 11.3 6.38 8.08 8.3 7.42 8.62 9.87 6.53 5.98 9.5 9.53 6.94 9.56 7.21 3.77 2.53 3.86 10.7 4.3 4.02 11 9.48 5.64 7.7 5.87 10.9 7.62 9.07 11.4 10.3 0.9 10.8 4.13 9.33 9.52 4.69 11.5 7.93 13.2 9.71 8.96 10.1 9.66 5.57 8.67 5.68 8.04 9.64 4.92 4.62 12.3 9.55 11 2.17 6.79 7.64 6.31 4.87 9.43 8.64 7.27 9.72 5.15 6.64 6.86 5.64 5.59 10.7 8.63 6.2 9.62 9.81 8.79 5.66 11.5 6.98 12 11.4 9.51 12.4 10.7 11.9 7.78 8.81 7.69 10.1 10.2 7.35 11.2 11.1 9.38 6.21 7.51 2.64 12 10.2 10.2 9.41 9.13 10.6 4.49 6.91 5.99 3.96 11.5 9.1 9.09 6.81 3.46 7.56 12.2 13.2 8.29 2.74 4.51 6.83 5.92 8.69 9.29 6.56 12.3 11.9 14.2 2.02 7.29 0.52 7.54 5.98 12.3 11.9 10.9 6.89 2.02 13.9 10.6 10.3 8.44 4.42 5.75 4.42 3.94 11.9 7.11 8.23 9.94 9.14 12.2 11 3.14 7.06 6.6 8.12 11.6 4.76 10.4 9.34 10.4 8.59 7.91 9.17 9.49 6.57 9.81 9.85 13.5 0.9 9.5 6.55 9.28 9.8 8.45 7.92 9.88 4.9 10.8 2.42 7.83 10.8 9.43 12.3 9.01 10.4 10 9.78 9.69 11.9 11 4.81 0.52 10.7 11 11.9 9.31 8.5 8.62 8.23 9.74 9.14 5.04 10.9 10.7 11.2 11.4 11.6 9.07 7.61 2.02 10.1 0.52 7.4 4.17 0.52 10.2 7.67 5 8.05 6.38 9.69 4.64 5.38 3.52 9.58 9.79 10.4 7.95 8.91 9.21 10.2 6.62 11 2.92 9.22 6.67 9.36 10.4 8.47 9.56 9.92 12.1 10.2 7.35 9.75 10.8 7.66 10.4 1.22 8.92 8.55 0.52 9.19 8.01 7.78 10 1.67 8.41 5.88 8.22 10.2 1.85 9.93 8.5 9.11 10.8 13.6 8.19 9.66 7.1 10.7 8.45 0.9 9.48 8.79 10.4 8.37 11.7 7.66 11 11.6 11.5 10.8 11.4 11.9 5.75 12.1 10.1 7.09 10.6 5.96 8.72 9.03 0.9 7.69 0.52 12.2 12.3 8.33 5.23 8.98 0.52 11.2 11.4 11.6 9.8 5.76 11.3 7.81 10.5 12.4 10.3 9.29 9.17 9.25 12.3 3.14 10.7 8.68 9.46 7.62 6.48 4.48 0 9.76 1.85 0 0.52 8.58 2.91 7.88 2.02 3.28 6.94 6.43 2.17 5.23 3.77 8.34 0 0.9 7.55 2.53 10 12 11.1 8.25 7.29 2.53 4.37 4.1 8.72 7.78 0.52 9.54 9.03 7.23 7.7 6.93 5.2 6.13 8.28 5.99 8.16 1.67 8.42 9.92 10.2 7.47 10.5 1.21 4.73 0 4.2 4.37 0.52 9.54 8.63 8.15 9.12 6.42 9.43 8.26 1.21 8.64 2.02 2.99 1.46 0 9.85 7.24 6.52 8.05 7.09 5.32 8.26 9.19 0.52 8.13 9.81 10.2 9.86 8.58 0 3.72 8.24 11.4 9 0 9.31 11.3 8.86 7.35 5.38 5.49 0.9 1.46 11 0 8.26 10.1 7.32 2.17 6.18 11 11.1 7.17 10 9.82 1.67 6.53 10.6 8.39 6.04 7.73 7.97 8.35 4.37 8.41 10.8 9.28 6.86 0.9 4.2 10.3 1.46 7.22 10.8 9.41 9.91 6.32 9.61 10.3 4.45 3.67 8.16 10 10.5 8.99 0.52 5.96 5.11 9.09 9.37 3.45 8.79 7.05 5.96 10.2 8.43 7.44 9.35 9.88 9.92 7.27 4.74 5.2 11.4 4.54 9.43 1.21 3.77 0 5.76 0.9 4.72 0.9 2.3 9.03 10.7 9.15 7.5 9.94 10.4 8.66 8.44 8.63 5.87 11.1 10.8 9.25 10.6 7.16 6.22 0 7.06 2.64 5.69 10.1 8.43 8.56 4.48 10.7 11.2 7.1 8.57 8.61 5.35 7.87 6.32 0.52 13.6 9.42 7.96 10.8 10.4 6.81 6.83 10.4 10.2 2.99 7.73 6.98 8.03 4.3 4.64 8.7 11.5 8.02 0.9 9.5 9.65 8.31 7.08 4.83 13.1 4.13 5.09 0 3.07 6.32 7.2 9.28 10.5 7.86 9.13 6.3 7.03 10.4 9.96 2.3 8.67 6.54 2.53 7.45 7.62 4.9 7.97 9.48 6.5 8.54 7.15 10.4 8.89 7.98 9.15 11.5 9.25 8.3 8.14 7.96 8.13 5.3 10.4 9.94 7.98 8.69 9.95 10.1 5.33 10.1 7.57 10.6 8.69 6.3 11.1 10.1 4.42 9.49 7.8 4.85 5.61 6.72 10.6 6.36 8.58 8.79 10.8 6.27 0.9 6.74 9.82 10.4 10.7 7 9.14 7.37 6.99 1.85 7.07 3.72 8.67 5.85 4.79 5.09 8.3 7.79 3.98 5.95 1.67 8.5 11.5 11.1 8.61 8.61 4.33 7.86 10.3 7.82 9.44 10.1 11.1 4.27 9.22 7.48 5.02 2.91 7.92 10.3 9.12 2.02 9.8 8.98 7.31 10.2 8.6 5.64 9.01 8.06 9.12 10.6 4.85 9.52 7.84 10.8 9.92 9.43 9.54 8.91 7.51 8.15 4.4 8.27 11.1 8.69 6.56 7.06 7.41 9.21 9.89 8.65 9.73 7.11 9.5 1.85 6.54 10.8 8.86 10.5 9.37 9.84 10 7.4 10.4 7.13 7.15 7.73 8.37 9.78 7.72 9.05 8.6 4.3 10.1 9.42 8.49 11 7.88 7.45 9.49 9.34 8.14 9.73 9.7 10.6 10.5 8.75 3.86 9.24 5.99 7.18 8.29 4.9 11.7 9.67 10.1 9.08 9.34 6.76 9.66 9.1 9.78 0.52 7.24 10.2 11.4 8.46 10.8 9.32 8.37 1.67 10 0 9.35 5.82 10.6 5.77 7.04 8.49 3.98 6.57 8.96 9.11 9.97 10.9 6.5 10.5 5.82 6.65 10.3 9.66 10.5 7.43 8.19 6.71 9.16 5.16 9.75 9.1 3.14 1.85 2.02 1.52 10.4 9.55 10.9 8.89 2.53 5.82 11.2 11.8 9.84 9.62 10.6 5.39 3.4 5.61 10.9 8.07 9.38 8.15 8.44 7.71 8.31 10.4 6.94 5.45 10.5 5.16 8.72 10.6 7.08 8.39 9.38 10.5 6.37 7.21 8.7 0.9 9.87 9.9 8.5 0.52 8.33 7.52 4.17 8.87 9.73 8.66 3.14 5.09 0.9 9.2 7.1 6.43 5.51 11.6 9.13 11.5 2.42 2.3 7.51 8.8 10.1 5.28 7.63 9.16 11.2 3.67 2.02 0 2.64 10.3 7.82 7.91 10.3 11.1 6.01 9.47 0.9 10 5.93 0.9 6.74 8.23 10.1 4.06 3.98 6.4 6.31 6.02 6.45 0.52 9.45 9.31 0.9 4.13 8.59 10.8 6.04 7.29 0.52 9.71 9.63 8.36 7.53 12.4 7.55 11.1 10.4 4.74 0 3.07 10.2 8.4 6.88 6.96 7.98 10.3 5.51 7.57 7.91 4.62 3.72 6.7 7.27 9.31 13.1 8.18 9.04 4.51 6.58 9.97 10.3 9.67 8.54 4.37 4.24 8.88 9.98 8.91 6.47 4.64 3.46 8.74 10.6 7.88 8.02 7.22 11.2 3.52 8.6 5.35 4.72 6.58 10.6 9.38 7.73 8.18 0.52 7.38 9.46 3.14 6.37 5.51 10.1 8.38 7.98 9.3 7.63 8.78 7.04 8.56 8.48 4.13 1.46 7.13 7.5 9.08 8.86 7.82 8.9 9.4 11.3 9.08 10.8 10.3 10.3 0.9 8.75 10.8 7.05 8.01 11.1 9.13 7.92 8.53 9.57 8.12 9.91 8.6 8.38 7.61 11.7 8.42 10.1 9.96 5.15 9.26 8.86 8.61 9.77 10.3 10.7 11 3.62 7.65 8.9 10 7.15 8.43 9.94 10.6 6.47 8.35 9.62 9.82 8.94 8.89 10.4 9.5 8.03 8.88 3.86 7.16 9.01 0.9 8.92 10.7 8.39 7.64 6.77 10.5 7.97 10.8 3.28 7.76 9.12 7.77 8.01 7.56 11 2.17 5.85 8.77 6.52 9.44 2.3 5.98 6.07 8.57 7.94 9.63 7.74 6.94 9.78 7.46 3.72 6.6 5.46 9.54 9.09 10.3 3.92 2.02 11.2 10.7 10.5 7.97 10.3 3.21 4.02 7.52 4.1 6.03 8.73 9.02 8.89 7.74 7.95 11.9 10.3 8.56 6.98 8.03 7.67 9.77 8.78 9.72 6.5 10 11.5 8.85 6.3 3.52 8.85 5.69 4.27 9.2 10.1 9.01 10.4 0.52 8.23 0.52 9.74 8.71 5.6 9.85 3.21 6 8.21 0 5.51 7.65 11.3 10 9.37 1.91 7.86 1.85 0.52 10.2 5.48 9.25 5.36 8.81 8.97 7.18 7.35 8.15 9.38 8.89 3.28 9.99 6.3 3.34 9.43 9.56 9.88 10.9 8.11 10.8 9.83 10.8 13.8 9.6 7.27 0 7.8 9.43 5.44 9.46 8.81 10.6 8.77 10.9 9.72 9 3.28 9.04 6.24 10.3 7.44 9.9 11.2 7.43 10.9 9.76 9.12 9.07 9.64 9.31 9.84 8.66 7.47 8.64 11.8 5.3 1.46 10.7 3.46 2.3 3.28 9.01 0.9 8.07 4.45 9.84 0 4.51 10.6 8.88 9.75 7.21 3.57 10.2 9.04 9.46 11.4 10 4.31 11.8 11.4 9.21 10.2 9.32 8.67 11.1 7.27 9.96 9.7 10.5 9.21 6.15 6.5 8.78 8.81 11.3 7.41 5 3.57 10.3 9.53 8.85 3.86 11.4 3.28 6.85 11.2 9.6 10.8 9.56 8.04 11.3 3.14 3.14 10.1 5.66 8.37 9.96 9.39 3.94 9.95 4.96 5.6 4.83 4.82 3.4 10.1 10.3 9.61 6.83 4.96 9.49 9.52 6.57 8.59 4.64 14.8 6.52 7.11 10.2 10 11.2 10.4 6.26 10.1 12.2 10.2 9.53 11.8 13.5 13.1 9.3 12.2 10.4 10.8 11.8 12.6 11.6 9.82 5.39 10.8 10.3 8.19 10.9 5.44 7.77 11.2 8.41 8.54 10.8 12.2 4.74 9.63 10.5 10.3 9.59 9.44 4.69 12.3 2.19 9.73 10.1 10.1 7.77 7.8 8.32 4.2 11.7 7.98 9.42 8.12 10.3 6.6 11.8 11.1 8.91 9.25 11.4 9.7 8.89 9.09 8.69 11.4 12.8 9.65 9.69 10.8 5.31 9.48 7.2 7.6 1.85 9.13 7.68 9.08 6.72 5.7 4.2 0.52 9.86 10.5 13.3 16.6 9.56 11.2 13.1 8.26 12.4 8.9 4.65 9.29 10.6 9.55 10.6 9.28 6.27 8.2 2.99 9.6 4.76 0.52 4.22 3.62 8.81 6.06 7.12 3.9 9.19 7.05 8 8.88 1.21 7.11 8.73 10.5 9.91 11.5 10.9 3.94 4.69 1.67 1.21 10.7 9.59 4.17 11.9 10.1 3.81 9.49 6.72 4.13 5.65 3.14 9.33 8.93 12.1 10.6 9.78 6.21 8.04 5.11 10.7 8.38 7.05 13.9 9.71 1.67 6.33 7.56 9.6 11.6 2.17 7.77 9.46 8.21 6.53 13.3 7.54 7.07 9.84 5.77 1.85 7.06 2.3 8.35 10.1 5.91 8.39 9.39 7.97 7.95 11 8.55 11.4 10.1 10.6 5.48 3.72 7.61 13.2 12.3 11.9 10.1 10.3 10.7 11.5 11.8 11.7 11.4 10.1 10.4 9.29 9.69 10.4 11.3 11 11.1 9.86 11.1 11.4 2.02 10.5 0.9 11.3 8.81 10.4 9.1 8.15 1.67 10.8 9.29 4.69 6.3 9.64 0.9 10.7 8.63 8.64 11.2 10.7 9.83 7.67 7.01 5.93 9.94 10.4 10.2 8.49 10 8.68 8.29 10.1 8.26 8.54 9.82 11.6 9.26 10.2 0.9 2.53 5.68 10.9 1.85 3.9 9.79 9.52 10.8 6.66 0.9 10.1 8.85 6.13 4.54 8.69 9.73 6.37 6.41 4.45 1.85 2.17 7.01 9.35 6.82 6.74 7.5 11.2 7.8 7.3 1.67 9.19 6.31 9.62 5.28 5.56 1.67 2.83 4.33 7 2.42 8.3 10.4 8.83 9.83 8.51 10.3 11.1 6.17 0.9 6.36 10.1 10.3 7.47 8.93 9.34 9.12 6.17 8.64 8.06 5.51 6.16 8.63 9.71 10.3 4.24 5.33 7.11 8.29 6.26 9.33 7 5.48 9.35 10.2 10.2 0 9.83 6.74 8.48 6.67 6.76 8.02 6.06 11.7 9.45 8.52 8.01 7.96 8.21 10.1 5.84 2.53 5.45 10.8 7.01 2.53 2.83 2.3 9.05 10 10 2.42 8.42 2.17 5.39 4.59 3.34 11.7 8.12 7.1 8.43 9.11 8.32 1.85 5.13 8.02 8.48 4.62 0.9 4.92 8.16 4.64 6.14 8.45 8.77 8.64 9.82 6.96 7.4 10.8 9.82 7.29 11 8.81 10 7.91 9.29 11.2 9.88 9.76 12.1 8.42 6.75 6.92 6.57 9.3 3.07 10.2 9.45 9.97 9.47 5.11 9.06 6.92 11.2 8.94 8.38 3.98 7.85 11.3 9.49 11.2 9.83 4.72 8.09 11.3 6.81 7.65 0.52 3.96 7.72 5.18 8.16 11.1 8.24 9.63 8.35 5.69 8.45 8.93 8.49 5.48 11.2 5.2 6 7.98 8.78 10.9 7.82 11.6 11.9 9.08 8.2 4.59 5.38 5.53 10.7 8.07 9.18 13.2 4.17 8.81 9.57 6.87 5.94 9.61 10.1 6.67 12.2 8.71 6.83 9.02 10.2 9.25 2.3 9.41 11.3 11 9.43 8.2 5.93 8.35 9.19 9.89 7.06 10.8 4.67 8.95 5.27 8.74 8.11 9.92 11.2 10.7 8.83 9.03 4.81 10.3 4.69 8.34 8.99 9.32 9.66 5.5 2.3 10.6 8.82 8.6 10.3 5.69 9.09 2.64 6.58 10.6 7.67 7.76 8.42 7.58 8.28 0 4.92 2.91 7.36 7.25 4.51 10.9 9.69 8.52 8.88 10.5 4.83 9.17 10 8.47 9.49 11.2 8.66 1.67 10.4 10.3 10.4 10.6 8.05 9.19 0.52 10.4 8.13 10.8 6.37 0.9 7.66 8.78 8.64 10.6 6.9 9.88 9.72 5.79 7.09 8.69 9.04 10.6 3.57 9.77 7.34 4.45 9.21 11.3 6.56 9.47 7.48 1.67 9.91 11.1 6.87 10.6 4.85 8.32 5.75 9.62 2.17 6.53 4.48 5.28 8.48 9.17 8.97 10.1 11 7.99 9.17 7.11 8.03 9.65 5.8 9.7 6.34 7.95 1.85 7.32 6.25 9.32 7.35 1.46 10.7 7.57 11 14.2 8.31 8.58 11 7.66 8.42 4.02 8.89 2.02 3.72 2.74 6.95 10.8 10 7.71 5.42 7.86 1.21 10.9 6.57 10.8 9.79 8.94 7.79 7.68 3.46 9.67 2.17 9.89 8.75 12.3 6.85 5.89 8.6 8.86 9.32 8.38 8.35 12.2 10.7 7.67 5.28 10 0 4.02 6.8 9.98 2.53 9.32 5.07 8.19 9.64 5.35 4.02 6.11 6.95 9.38 5.52 8.27 4.42 7.44 8.51 10.8 10.4 8.6 7.76 9.11 11 9.14 7.41 8.84 8.19 9.46 7.4 9.95 7.76 10.3 5.63 11.6 7.33 10.9 4.54 10.7 10 11.1 9.43 11.5 1.85 7.89 12.6 2.17 8.76 0 6.71 8.21 6.7 8.57 5.27 1.46 5.53 5.68 8.32 5.82 1.46 0 6 10.7 5.86 9.45 10.9 10.2 9.1 9.58 4.04 8.21 7.45 7.87 8.34 7.68 10.8 2.17 7.9 11.2 8.53 6.99 10.7 8.66 3.07 6.23 9.15 7.29 8.4 8.9 8.05 1.46 8.77 8.18 5.23 8.47 8.44 5.53 10.7 10.8 6.95 5.92 10.6 8.36 4.6 7.23 10.3 8.78 9.6 9.7 11 8 10 9.32 8.94 9.08 10.1 9.89 10 9.47 9.63 6.75 9.86 10.2 8.82 8.64 9.42 6.84 10.3 12.1 10.4 8.68 5.86 9.92 13.2 9.21 2.64 10.5 9.39 2.17 8.69 5.92 9.74 12.6 9.18 3.52 10.1 9.46 7.46 8.17 7.35 8.67 12.1 11.1 4.37 3.21 7.76 7.15 8.22 4.45 8.47 0.52 2.02 7.52 9.87 6.82 8.05 2.17 4.33 6.34 10 8.69 4.3 7.94 8.6 10.2 8.68 10 5.41 4.94 8.83 11.1 10.8 11.8 10.2 12 9.76 8.86 8.74 4.2 10.6 9.76 8.74 11 8.64 4.45 10.1 8.9 9.07 7.5 1.67 11.6 8.66 7.21 10.3 8.91 9.98 10.6 9.27 1.82 12.2 9.37 10.4 7.41 0 11.6 12.2 0.9 9.22 4.2 11.4 6.86 11.2 0 7.46 0 9.64 7.87 3.28 7.75 11.1 11 8.84 0 13.3 9.28 9.52 9.07 2.53 8.3 9.65 7.01 4.61 0.98 9.69 9.97 8.61 10.2 4.64 11.2 9.02 9.81 9.96 11.8 11.4 4.1 4.62 9.53 1.85 9.06 1.28 8.8 0 7.46 0.52 11 8.49 11 3.9 8.31 8.4 10.7 0.52 5.74 6.01 7.44 8.3 4.59 9.45 9.91 6.56 10.2 4.52 5.74 4.1 11.8 2.74 11.1 5.52 6.45 7.56 10.6 5.84 10.6 9.95 0.9 8.14 8.5 3.4 10.5 10.1 10.2 10.2 9.11 8.42 9.39 6.95 6.48 2.53 10.4 2.42 11 9.78 3.28 12.5 8.92 7.06 3.94 9.08 6.12 12 6.64 8.86 9.45 9.25 9.04 5.13 7.72 2.91 7.11 0.52 10.2 2.74 9.85 7.46 8.12 6.62 9.82 12.8 9.89 2.91 12.2 4.9 5.02 9.18 6.63 10 8.1 8.78 7.64 7.02 2.42 8.66 9.26 6.43 8.38 9.72 3.81 7.19 8.66 11 8.05 7.84 10.2 10.9 10.5 9.55 8.51 6.15 7.29 7.01 8.29 7.75 6.13 8 9.19 9.96 11.7 10.2 6.72 8.89 7.09 1.85 8.91 12.8 12.5 7.59 7.88 3.21 7.45 7.44 8.89 10.5 10.9 5.63 7.42 11.4 9.67 11.5 9.59 6.81 11.3 9.53 9.81 10.5 11.2 10.9 9.95 12.2 10.9 10.6 9.54 10.4 10.4 9.5 8.34 6.85 8.46 8.24 11.7 6.79 10.9 9.74 1.21 9.63 7.4 7.78 10.7 11.1 11 10.5 9.39 10.8 11.9 11.4 10.7 11.2 6.16 9.88 10.5 10.2 9.58 7.57 9.54 7.9 10 8.29 8.35 8.98 11.7 6.78 9.85 10.3 6.59 8.46 12 9.24 7.96 9.25 12.3 11.2 1.85 9.36 11 6.78 1.46 10.5 8.92 13.6 10.2 9.46 8.2 6.58 9.62 5.22 10.8 11.6 10.7 7.58 10.7 8.36 6.06 10.6 4.54 3.67 3.52 8.4 6.37 10.9 12.2 9.1 0.9 8.67 8.9 5.96 8.28 10.5 7.53 12.7 11.2 9.74 8.49 10.3 9.08 9.48 6.93 8.61 9.61 3.77 10 11.1 10.6 9.54 11.2 8.94 8.54 9.77 10.7 15.9 8.51 8.58 10.5 9.06 10.3 5.99 12.9 12.9 9.77 0.52 11.1 9.9 8.13 9.95 8.86 8.76 10.6 10.7 10.1 8.1 10.9 9.85 9.92 10.3 11.1 7.69 10.5 12.5 5.95 11.2 9.99 8.92 9.04 10.2 8.37 11 11.5 7.54 7.73 1.21 9.66 9.48 9.61 11.6 9.57 6.35 8.3 4.3 11.2 5.46 8.23 10.2 9.92 7.64 10.7 11.1 8.81 9.02 13.4 3.91 2.17 10.1 9.77 9.35 9.96 11 8.92 9.78 9.78 9.78 11.1 11 10.1 11.7 6.14 9.51 10.5 5.69 12.2 8.66 11.2 6.74 10.5 8.03 9.93 10 12.1 4.51 7.83 7.1 5.72 7.16 9.91 11.1 9.76 5.59 12.5 9.09 7.42 9.55 9.58 8.49 10.2 11.9 7.33 7.23 10.9 12.3 11.3 10.3 11.3 10.7 10.3 7.02 11 6.89 12.7 6.36 11.2 11.1 8.92 10 8.56 10.2 10.9 10.8 10.4 11.2 9.93 3.67 10.2 11.7 6.69 10.9 12.8 12.5 11.5 11.3 9.81 1.67 11.9 9.7 9.65 11 7.85 9.62 9.8 11 10.9 8.86 10.3 10 7 10.9 8.7 10.5 6.87 9.1 8.97 11.1 8.21 9.22 3.07 9.65 6.72 8.95 9.97 8.3 10.8 2.64 8.98 8.91 8.04 6.5 10.4 9.47 6.04 10.4 9.01 9.15 8.57 7.44 7.04 9.06 10.1 8.75 10.3 7.9 10.2 11.2 6.14 6.21 7.56 10.3 11.4 10.3 10.8 10.8 10.2 8.86 11 11.3 11.5 10.7 10.8 10.6 8.59 7.14 9.94 11.7 7.98 9.79 10 11.6 10.3 11.6 3.77 8.97 9.52 9.17 8.85 10 11.7 7.57 10.7 6.46 5.48 10.9 9.7 10.2 10.7 8.02 9.32 12.1 10.1 10.9 8.58 6.41 6.76 10.2 5.48 10.8 11.2 12 11 7.56 11.6 9.4 10.1 10.1 8.49 11.4 11.2 9.3 10.7 8.56 9.9 9.3 4.13 7.84 8.1 10.4 6.66 11.2 11.8 2.53 6.75 6.23 10 8.65 8.55 12.6 9.96 7.16 10.2 3.07 4.3 6.92 4.94 9.88 11.2 9.89 11.5 9.44 2.53 1.21 12.2 10.7 12.3 10.6 3.8 11.7 8.79 8.77 6.34 10.4 12.4 10 8.52 6.12 8.87 12.2 10.4 10.5 13.6 9.73 11.2 4.67 11 9.32 8.18
-TCGA-A2-A3XT-01 7.13 9.16 4.74 11.9 7.38 8.48 1.48 3.82 0.83 0.92 3.01 9.62 5.03 4.43 5.91 8.99 11.9 10.3 7.56 10 8.61 10.5 9.38 1.88 10.1 6.88 5.35 8.59 4.77 7.57 5.12 6.92 5.05 0.67 4.22 3.25 1.13 8.09 0.38 5.78 3.88 3.13 7.22 0.67 5.74 3.52 0.67 5.2 11.6 7.62 3.08 7.46 7.58 10 6.01 2.2 7.43 2.45 8.33 5.49 7.83 4.58 7.48 5.06 2.6 3.62 4.37 5.73 10.5 5.45 4.78 5.63 2.67 5.37 1.48 5.51 5.51 5.03 3.17 2.2 3.99 2.92 2.8 7.04 3.85 0.67 6.11 0.67 2.86 2.74 9.47 4.49 6.14 3.03 6.06 3.73 1.13 2.37 3.34 0 0.67 5.89 1.99 5.73 5.23 4.59 7.02 7.34 6.67 5.7 0.67 1.32 9.87 5.9 5.29 2.45 2.27 5.17 3.96 5.96 7.81 5.13 0.38 2.2 0.67 5.43 1.76 3.13 2.2 15.8 3.8 2.37 3.18 6.56 3.4 2.45 4.75 0.92 4.3 9.29 8.16 10.5 0.92 3.99 4.81 11.4 0 10.5 1.88 4.28 4.64 1.13 5.17 10.4 11.3 3.31 0.67 1.59 10.4 3.85 5.97 6.49 7.7 1.76 8.37 6.94 6.72 4.35 9.15 1.32 10 9.45 3.44 5.32 4.74 3.52 5.8 3.13 8.09 5.09 6.25 9.45 4.64 5.68 3.1 3.14 5.1 1.48 9.75 5.12 9.7 9.58 3.31 4.43 3.44 6.43 4.81 10.3 8.83 9.47 4.55 9.68 8.96 10.6 8.35 7.62 5.03 9.79 11.4 11.6 6.38 11.7 10.3 10.8 10.6 9.86 10 9.92 7.14 11 10.7 9.48 11.6 12.2 8.73 7.3 0.67 11.3 10.3 12.6 10.3 4.28 9.77 11.5 9.96 7.15 11.1 3.76 8.83 2.8 9.47 7.11 12.8 11.9 12.2 12.3 12.4 12.5 6.14 11.3 10.1 1.32 5.32 10.4 9.64 4.86 11.2 10.9 0 11.9 3.27 9.58 9.59 11.4 10 10.9 7.11 10.4 10.8 10.2 8.35 11.2 9.04 9.72 12.8 6.94 4.33 12.2 11.9 11.4 13.9 11.7 10.6 7.09 10.5 10.9 9.75 8.15 11.5 11.6 6.43 3.55 8.48 6.4 8.81 10.5 8.13 12.3 8.2 5.63 9.75 11.4 10.7 8.54 10.6 12 7.21 9.35 9.27 9.21 13.9 9.14 5.58 9.92 6.56 10.7 10.1 2.2 8.93 7.25 10.5 10.6 10.4 8.58 10.8 12 11.4 9.07 8.59 9.45 11.2 9.86 11 8.3 9.94 10.1 9.6 7.48 7.63 8.01 9.85 10.3 7.81 10.5 8.5 12.8 10.8 8.95 11.1 11.8 11.2 7.42 9.6 2.8 3.79 7.96 5.47 9.11 2.53 6.6 7.39 10.8 11.3 11.1 8.42 5.5 6.21 1.13 7.4 5.24 6.37 11.6 10.3 11.9 9.91 7.06 7.62 10.8 0.38 8.68 9.08 9.97 8.47 10.1 9.64 10.8 6.96 8.47 6.47 8.59 9.22 8.45 9.5 9.54 7.6 11.4 10.6 6.75 7.71 9.42 8.49 10.4 8.65 9.72 8.11 11.4 9.85 11.7 10.3 10.1 7.02 7 11.4 8.57 7.98 10.7 9.06 9.29 9.01 8.72 9 11.2 8.4 10.8 8.36 9.44 9.73 10.2 2.93 10.2 9.91 13.5 9.49 8.39 6.32 7.04 8.13 8.38 11 9.74 11.8 11.8 9.51 3.66 11.8 5.18 9 8.67 0 9.38 3.71 7.2 7.47 11.4 8.61 8.33 8.69 10.5 4.64 5.78 6.08 9.96 11.2 3.55 9.56 8.16 5.01 5.84 6.16 8.41 7.29 5.47 9.13 5.57 11.1 9.46 8.14 9.11 10.1 4.12 14.3 10.4 2.2 10.5 11.4 4.49 12.2 8.12 8 6.34 7.71 9.64 9.43 4.49 11.8 8.47 6.42 8.49 7.19 10.9 11.1 15.2 8.92 8.47 8.62 9.2 8.05 8.86 10.4 14.6 0.67 9.29 4.31 13.4 7.28 10.7 11 8.91 8.34 10.7 7.14 10.2 10.4 10.5 9.67 10.7 9.95 9.01 8.56 10.5 10.5 10.7 10.9 7.16 9.95 14 7 5.48 11.7 8.99 9.49 9.76 9.92 9.34 9.69 0 9.83 8.68 10.8 10.4 8.98 11.4 13.9 11.4 9.67 10.9 8.01 7.04 10.4 7.44 9.3 8.91 10.5 6.06 11.1 4.31 9.7 11.4 11.3 10.6 9.2 11.5 9.74 9.65 8.84 12.3 10.9 10.6 9.53 8.87 12.5 10.2 11.5 10.3 11.9 11.6 11.1 10.2 8.42 9.27 11 8.36 5.03 9.07 7.96 8.5 8.25 9.2 11.9 11.2 8.69 9.88 11.2 8.46 3.36 7.39 11.8 10.8 6.89 13.3 9.79 11.4 9.83 12.4 9.22 11.2 12.1 7.14 2.37 12.2 9.54 9.18 10.4 7.42 12 6.98 9.87 10.1 10.3 12.1 10.5 7.48 10.4 11.5 11.8 1.99 11.7 11.4 10.2 11.2 8.22 9.37 10 8.91 5.57 8.95 9.23 6.03 6.19 11.2 10.6 4.17 10.2 7.14 9.13 3.08 9.46 9.81 12.4 12.4 11.9 12.1 3.82 9.65 9.78 8.33 10.3 9.35 0 8.68 9.85 11.5 12.2 10.7 9.59 12.6 0.38 6.42 11.7 8.12 9.77 11.3 5.65 9.47 12.4 10.4 10.7 9.72 8.81 10.3 7.68 9.39 9.69 10.2 10.2 9 11.9 9.64 8.78 8.08 7.31 9.11 11.3 9.44 11.5 12.8 8.98 13 12.9 12 3.73 10.5 8.75 9.69 2.72 7.19 9.99 9.29 4.17 5.52 11.1 6.98 9.12 11.4 12.1 11.2 9.41 11.5 10.9 12 4.72 2.2 6.67 9.37 4.75 7.57 6.75 10.6 10.6 7.88 11.5 9.64 4.62 4.65 9.26 8.81 9.99 3.62 4.26 10.6 6.74 2.2 5.19 12.1 11.1 4.87 8.81 7.74 3.48 11.5 10.7 9.32 2.53 8.72 14.4 8.31 11 10.6 8.57 11.4 12 8.22 12 9.68 8.34 4.23 10.8 10.4 3.94 1.63 3.17 8.85 5.77 9.92 0.38 7.43 9.37 3.96 5.03 11.3 12.1 7.04 6.35 12.2 10 1.13 11.3 13.1 11.3 10.8 10.6 11.4 8.71 11.2 10.6 7.55 8.54 11.9 8.32 6.45 8.95 8.33 9.53 8.82 11.1 8.26 8.75 7.19 5.22 7.76 11.2 7.98 6.31 4.77 13.2 8.74 1.48 0.67 10.1 9.74 11.2 9.96 8.8 7.89 9.9 0 5.48 7.31 8.97 7.56 7.24 7.99 10.8 1.99 2.74 5.25 10.2 9.97 5.83 11.5 8.39 9.3 5.65 11.2 12.4 1.99 9.03 5.1 7.45 9.15 10.5 9.79 9.25 10.7 8.46 6.45 7.05 0 9.45 0.38 2.92 8.43 10.6 3.44 2.92 11.6 5.32 8.35 7.6 6.92 1.99 11.4 9.21 12.5 11.7 3.31 10.2 9.49 9.46 10.3 9.06 9.69 11.2 11.2 9.31 0 7.51 1.76 10.6 10.1 11.1 0 11.1 9.39 11.9 11.2 11.6 7.72 8.96 10.6 10.6 10.3 0.92 12.3 1.88 11.2 3.66 10.7 10.9 9.2 2.37 9.62 11.7 11.4 11.1 10.3 9.6 11.7 9.97 11.6 10.8 10.3 9.41 10.9 11.8 12.1 13 11.8 11.6 7.77 12.6 10.1 8.81 9.96 11.5 11.8 12.1 12.2 10.5 7.22 10.7 8.16 9.59 10.9 9.88 9.46 11.1 4.58 12.4 10.5 10.7 11.9 7 10.4 12.5 10.4 10.6 7.41 9.63 8.01 1.76 10.6 10.2 10.4 1.68 2.53 9.24 9.59 1.63 12.7 10.4 9.21 8.23 9.34 7.69 7.67 8.28 10.9 8.65 2.45 7.3 5.35 4.62 8.14 10.1 9.91 12.2 6.94 6.51 10.9 9.81 8.81 8.91 8.57 0 8.76 12.2 9.05 9.76 11.3 10.9 8.42 11.4 9.94 11 9.49 7.47 3.4 8.23 11.1 8.27 11.1 9.91 5.36 10.5 10.3 7.85 10.6 6.22 6.63 10.3 11.9 12.7 7.99 7.3 10.7 10.4 6.33 6.63 8.32 3.55 7.87 9.78 9.87 6.68 12 6.59 9.14 9.55 9.31 4.22 9.86 8.61 10 10.2 9.22 11.3 10.2 9.1 9.09 9.37 7.61 10.5 3.13 7.71 8.35 9.21 1.32 9.62 3.13 9.25 7.08 12.1 1.13 10.1 10.2 0.67 11.9 9.06 10.3 5.2 7.21 7.98 7.18 2.97 3.91 10.5 9.97 5.98 4.45 3.82 8.8 7.68 9.65 8.78 14.2 11.3 9.3 6.59 8.58 10.4 10.3 11.5 11.3 8.56 13.9 6.13 11.2 8.46 4.49 10.3 10.2 9.1 7.92 9.82 11.4 10.2 9.37 7.81 3.91 10.1 10.9 10.6 0 10.3 10.2 7.41 7.58 9.96 9.43 11.5 9.96 7.64 8.25 7.86 9.04 8.51 10.8 7.16 10.6 9.18 7.69 8.13 8.95 4.67 9.94 9.36 11.4 7.66 13.1 7.31 4.02 5.68 7.31 9.55 11.7 8.03 9.3 9.32 10.4 8.58 7.07 10.5 6.71 4.9 13.8 10.5 10.6 6.72 8.96 2.97 7.18 8.29 4.56 8.82 7.88 10.8 0.67 1.63 10.7 10.9 7.69 9.23 10.1 8.86 7.99 12 2.86 11 5.86 9.49 7.3 8.92 8.7 9.74 8.08 8.56 6.46 0.38 2.81 8.13 12.3 8.84 7.74 7.38 4.19 8.69 9.37 10.7 6.64 6.23 3.08 8.24 0.67 12 8.73 8.76 7.03 9.24 9.37 8.29 9.47 11.9 8.58 10.3 8.59 9.51 10.3 10.2 7.02 10.7 1.48 9.9 7.95 10.2 11.2 9.23 9.04 12.2 5.72 11.9 8.69 3.36 10.5 6.89 0.92 9.94 8.54 0.67 8.72 10.4 10.3 11 5.43 8.79 11.3 11.9 9.56 9.28 8.71 6.87 8.46 10.8 9.91 3.13 13.1 9.86 11.8 9.15 12.4 9.56 12 11.6 8.51 7.97 9.99 9.75 11.7 9.94 9.99 10.8 9.78 9.39 8.39 10.4 2.2 10 6.75 5.63 0.92 6.92 7.33 8.7 9.2 1.63 12.9 8.39 9.24 3.66 9.79 10.1 10.8 3.94 8.25 0 6.83 8.23 1.63 5.74 11.7 6.28 6.8 3.48 6.96 9.68 4.87 1.63 6.47 3.88 6.87 1.13 0.67 7.28 6.41 8 6.55 8.55 8.18 7.32 0.67 8.31 4.96 6.45 9.85 8.22 9.15 8.72 8.58 2.86 10.4 0.67 6.98 8.28 2.67 6.05 7.04 5.05 7.86 8.02 5.53 6 2.67 8.96 11.2 1.32 8.31 8.07 4.68 6.32 9.54 9.96 2.29 6.38 9.65 10.1 8.06 8.86 8.24 2.86 5.39 3.76 8.62 2.97 11.6 12.9 7.25 9.73 6.22 9.76 9.74 9.28 5.36 8.41 9.53 8.96 7.39 10.2 9.57 10.7 7.75 6.58 4.49 7.14 6.03 9 8.01 10.6 8.53 4.1 5.92 8.21 6.83 10.2 11.1 5.88 1.76 3.96 9.16 10.9 12.2 6.65 10.3 9.33 10.2 10.5 7.61 8.72 8.53 3.48 7.9 0.38 1.48 5.09 4.81 9.14 8.77 8.61 5.53 10.7 7.22 2.2 4.02 8.44 7.11 0.67 11.3 10.4 2.6 7.45 8.25 3.79 3.18 8.48 8.16 10.9 8.3 7.63 9.31 6.6 11.1 8.29 11.4 8.01 11.1 10.9 1.13 7 8.05 8.33 9.11 10.9 8.55 7.78 9.28 3.08 11.1 5.34 7.23 3.03 6.29 2.92 10.8 4.69 7.94 5.26 4.47 2.51 9.52 1.13 0.67 10.2 10.7 6.87 8.67 8.63 4.26 4.39 9.94 7.05 9.76 11.2 2.67 8.96 11.1 1.48 5.09 11.1 7.62 11.6 7.11 9.93 11.6 9.31 2.86 11.1 4.43 1.48 6 9.77 11.2 3.13 11 5.13 6.03 8.03 13 11.3 10.4 1.63 4.6 5.62 9.17 9.3 6.79 4.75 11 0.67 9.1 9.12 11 9.23 10.6 5.03 9.05 0.67 7.86 1.32 7.27 0.92 8.91 8.99 7.33 4.33 8.3 11.3 6.36 3.23 5.6 9.28 6.06 8.94 8.01 7.81 6.27 7.69 7.49 2.74 7.55 8.71 11.9 13.2 8.24 0 3.4 8.17 5.86 0.67 10.1 10.4 9.04 8.49 10.3 4.49 6.57 10.5 8.97 11.6 10.5 10.3 8.33 2.37 1.32 8.63 8.56 4.58 1.99 8.4 7.77 9.4 10.8 2.74 6.57 11.3 5.04 1.99 8.91 11.8 10.4 7.52 9.24 4.6 6.99 13.5 3.03 8.64 8.41 1.88 8 6.47 8.75 5.21 9.71 10.7 1.32 0.67 1.13 5.15 3.08 6.15 0.38 6.06 5.14 8.43 6.86 6.62 4.39 9.05 8.59 4.35 8.57 9.09 8.71 1.88 8.22 8.32 6.06 12.2 8.98 6.56 8.73 2.29 9.52 3.76 10.1 1.99 7.83 5.89 8.3 8.76 5.44 7.94 8.8 7.17 4.75 6.92 10.1 6.82 3.91 8.74 4.45 2.8 8.92 9.65 2.1 6.53 1.44 9.66 2.67 9.02 8.61 7.7 4.84 8.06 9.16 6.43 7.89 1.13 10.9 9.36 3.96 3.52 8.27 8.85 6.69 10.9 9.49 7.2 7.99 9.14 8.7 11.9 10.9 7.8 3.31 8.7 9.02 3.13 4.45 0.92 7.1 9.8 8.11 4.28 1.63 0 5.1 0.38 9.2 10.3 7.06 10.2 8.48 4.65 7.44 2.8 9.94 10.1 9.38 9.54 10.5 4.75 4.24 12.1 7.61 7.82 2.44 8.85 3.13 7.46 7.85 1.76 6.9 4.1 6.67 11.4 2.6 10.9 10.4 4.05 8.72 5.78 6.4 5.21 7.2 6.54 7.33 8.87 4.99 9.85 1.99 2.74 10.2 3.08 2.6 3.4 4.83 9.22 6.31 9.14 8.8 8.55 3.59 9.65 11 5.75 11.8 2.2 8.42 5.91 5.48 10.4 6.78 2.53 8.95 6.99 10.1 8.08 4.75 9.87 7.14 5.32 3.69 6.34 9.49 11 10.4 9.19 9.85 3.13 3.18 4.58 0 1.13 0.92 8.88 3.85 7.56 2.74 3.36 8.18 9.38 2.86 9.5 4.65 5 9.97 10 6.31 8.12 8.71 3.43 2.45 10.2 5.85 8.38 3.13 10.3 15.6 6.48 9.17 4.41 14.8 11.2 4.24 1.13 6.9 9.46 4.86 10.4 0.92 9.73 8.56 15 5.75 5.64 13.1 2.2 6.53 2.8 11.4 12 10 11 2.53 9.76 5.87 9.06 8.74 13 6.97 7.6 6.27 3.66 3.08 4.95 6.31 5.22 10.6 5.38 4.19 3.27 1.99 3.48 11.8 9.26 12 7.63 8.71 11.9 3.03 4.49 15.5 9.85 14.1 9.16 5.27 13.3 8.53 6.82 7.45 6.95 8.85 5.43 7.76 8.39 9.04 8.29 8.05 8.82 9.07 8.5 5.94 5.89 1.32 6.81 7.36 4.45 8.79 0.67 8.69 5.94 11.8 9.87 5.57 5.19 5.59 5.43 11.8 7.62 5.93 3.66 4.1 6.08 9.48 7.91 0.67 9.15 3.13 3.91 9.18 11.1 5.79 9.05 10.6 2.74 2.29 8.38 1.99 9.14 6.22 9.29 4.26 8.13 0.67 3.55 1.32 0 8.05 1.48 10.2 9.35 0.92 10.5 13.6 7.65 5.1 8.84 11.8 0.67 7.24 9.52 6.8 12.3 10.6 7.9 2.45 10.3 8.92 1.32 9.18 4.07 0.92 7.95 8.33 7.82 6.16 6.57 8.7 0.38 1.57 8 9.67 7.77 6.98 0.67 4.78 2.64 8.31 7.97 5.96 11.7 7.54 8.03 8.08 5 11.6 6.52 7.75 2.29 6.98 6.97 4.83 8.19 6.49 1.48 7.95 6.91 6.72 10.1 8.88 12 8.97 3.03 1.76 8.08 9.48 11.4 5.18 7.12 4.67 9.65 7.54 9.31 7.68 8.21 7.3 5.89 8.55 3.4 9.31 12.5 8.5 9.62 9.06 9.13 5.5 8.9 10.7 5.18 11.2 8.64 6.97 11.2 12.2 11.6 10.7 3.53 7.04 8.26 10.1 5.05 10.5 5.77 9.58 1.88 8.98 7.29 1.48 6.27 5.37 6.66 7.63 0 9.64 2.45 0.38 8.91 3.94 3.44 13.7 12.2 11.8 9.12 9.12 6.5 6.95 10.3 8.81 4.97 4.19 6.94 11.4 9.14 9.82 10.1 8.74 9.69 7.63 5.31 5.64 9.69 2.37 4.77 12.1 4.49 1.32 12.8 1.13 7.75 6.68 4.35 7.37 10.9 7.05 0.38 8.58 10.4 8.12 5.13 4.51 9.28 7.88 7.9 4.99 10.8 8.78 2.45 11 9.11 8.75 3.96 9.7 8.97 2.74 7.45 3.03 7.83 7.86 10.7 10.2 7.18 4.39 3.91 9.42 8.26 7.31 10.7 11.8 6.16 5.76 4.4 9.5 8.66 8.21 5.25 8.35 10.7 1.13 6.02 7.02 11.7 3.62 1.48 11 10 6.91 5.86 7.43 8.3 3.4 0.92 10.4 3.95 6.25 3.18 8.99 7.87 6.58 5.63 8.47 9.51 4.59 5.7 10.8 7.74 9.45 6.95 1.13 9.98 9.5 6.5 11.3 9.63 5.28 6.57 8.14 5.91 5.57 2.29 12 3.79 9.93 3.18 10.5 6.06 8.09 8.72 3.66 1.48 13.5 9.23 4.92 2.45 1.76 3.55 1.13 4.58 0.67 5.59 10.1 1.63 8.35 10.4 7.9 11.5 8.14 10.2 10.7 7.26 4.02 10.6 12.1 11.2 9.45 8.9 11.2 1.99 3.62 8.4 5.74 7.93 7.42 5.93 6.13 8.11 9.37 9.3 4.83 1.63 0.38 9.27 8.56 8.63 9.65 7.42 7.36 7.7 2.6 4.24 6.56 7.36 5.1 6.46 12.1 6.61 6.8 9.42 5 3.4 1.48 8.8 4.43 11.8 5.03 9.39 3.97 7.15 3.48 10.5 5.45 9.15 8.1 10.9 9.07 7.13 11.6 1.32 1.88 6.65 12.2 3.03 7.17 11.9 4.45 1.48 7.87 5.08 10.7 0.92 7.16 6.97 7.77 7.93 10.7 7.67 9.26 6.28 7.53 2.97 9.07 9.24 9.98 7.86 2.2 2.37 11.8 9.49 6.53 9.82 1.13 4.37 7.77 11.6 5.94 2.37 9.69 0.67 1.88 3.96 7.96 0.38 10.3 7.09 2.8 8.4 1.13 11.6 7.43 7.54 6.54 2.45 3.44 6.97 2.6 9.51 9.27 10.3 2.37 7.29 1.13 5.82 8.33 1.48 0.38 12 2.45 0 7.6 0.67 6.71 0.67 9.66 4.39 9.57 8.29 8.39 8.22 3.85 7.2 8.6 5.32 11.2 2.37 8.9 8.61 8.16 9.12 7.4 8.52 1.48 2.29 3.94 3.59 3.88 7.16 8 5.88 12.9 6.44 6.55 8.55 3.62 3.03 2.53 6.03 6.46 7.04 4.07 9.5 7.7 8.73 1.13 9.23 9.11 6.1 7.8 6.54 4.77 6.81 0 10.1 8.42 9.63 5.99 5.12 6.31 4.07 3.73 7.74 8.3 6.91 10.4 6.56 5.53 6.14 6.22 9.25 5.31 3.44 6.47 7.95 5.35 8.52 6.54 7.49 5.2 6.46 4.77 2.37 7.49 9.84 3.36 9.07 4.1 8.64 6.44 8.54 9.81 7.11 8.27 8.5 4.02 1.14 11.5 3.03 1.32 5 10.8 10.2 9.38 2.2 9.53 6.74 5.69 8.85 4.33 11.5 9.31 0.43 9.35 6.19 5.88 5.15 9.84 1.88 4.22 5.75 9.4 10.2 8.45 4.58 0 7.48 6.89 4.7 2.8 12 13.5 4.87 8.92 3.96 5.13 12.7 10.3 10.7 0.38 7.05 12.2 0 5.01 10.1 5.48 4.71 2.2 2.92 4.58 1.99 9.42 4.96 0.67 7.03 9.6 5.59 6.05 10.9 1.72 7.79 5.59 8.71 9.85 7.15 8.89 4.55 9.67 8.79 9.07 1.88 5.64 3.59 9.53 8.1 10.7 4.47 9.05 6.78 4.39 4.55 9.2 4.62 15.4 7.14 15.5 7.17 6.66 0.67 6.4 9.59 8.06 5.66 5.04 0.92 2.45 8.69 7.55 8.4 12.1 5.98 0 8.82 1.76 1.32 3.08 10.4 4.28 8.81 5.98 4.81 12.2 0 4.92 3.08 7.48 8.68 4.6 8.77 0.38 8.54 9.29 9.21 11 7.7 1.63 6.33 1.32 4.37 0.92 10.7 4.26 8.65 9.37 5.55 8.85 3.23 12.2 8.3 9.73 11 7.78 4.07 5.43 7.7 1.76 9.92 7.97 7.11 4.51 13.6 3.44 9.14 8.3 10.3 6.07 3.18 5.14 3.55 6.03 6.91 7.56 8.64 3.62 8.04 3.18 8.73 1.63 6.28 3.03 5.08 9.51 7.95 3.59 6.82 6.99 7.53 1.63 8.61 10.2 6.64 7.34 7.78 10.3 7.39 7.32 11.7 7.57 4.77 11 9.43 6.89 5.74 10.8 5.93 0 1.48 4.47 11.2 7.17 5.19 5.59 4.37 0.38 9.12 4.05 9.47 7.69 9.95 5.24 6.32 8.99 0.92 6.92 0.38 2.79 9.01 11.3 4.12 10.1 7.44 4.8 0.67 8.74 11.5 0 11.3 9.32 5.65 0.67 8.16 3.44 7.59 5.05 9.05 9.34 11.1 0 5.04 3.66 8.64 4.15 8.08 10.4 1.63 1.13 12.2 5.8 6.26 8.4 3.79 0 9.58 7.62 8.72 9.89 11.2 8.12 7.49 5.19 0.67 10.8 5.96 9.8 8.27 8.89 0 4.22 11.3 4.55 5.52 1.3 5.05 9.66 5.1 10.7 0.38 1.99 5.46 6.23 3.55 5.52 6.36 4.53 0.38 8.81 0.38 7.5 2.97 9.34 4.15 9.87 4.62 5.53 2.37 1.48 5.56 8.32 5.94 6.1 5.1 7.83 8.56 0 7.72 3.66 3.59 0.38 3.94 1.88 2.29 3.82 8.38 4.22 11.9 7.61 10.1 3.03 8.05 0 0 12.1 5.14 6.15 10.2 4.89 5.17 11 11 1.63 9.91 2.37 3.27 0.92 0.38 11.2 8.39 5.89 3.03 10.5 8.64 0.38 6.97 12 4.78 8.15 7.12 9.3 3.69 5.62 4.65 8.16 8.63 10.5 10.5 5.14 8.89 4.81 8.12 9.92 2.37 4.07 10.1 10.4 1.32 8.96 3.08 5.68 10.7 1.63 5.69 11.2 0 3.31 9.43 0.67 5.83 7.52 2.37 5.54 11.5 10.8 2.1 13.2 6.34 7.71 8.55 4.67 9.41 3.4 1.88 2.29 6.09 3.88 2.97 8.06 5.35 6.84 9.44 7.99 8.91 5.73 5.1 7.74 9.31 5.7 7.12 7.64 9.11 5.61 0.67 11.6 7.91 7.85 7.38 5.38 4.74 1.48 6.3 5.52 3.31 7.2 7.03 6.65 4.45 7.87 10.2 1.32 5.51 4.09 5.54 9.77 2.2 11.8 6.38 10.2 9.29 8.35 3.73 7.24 11.5 1.63 5.94 8.27 9.99 10.2 11.4 9.53 0.92 6.83 1.99 12.5 4.62 8.85 0.92 2.29 0.67 6.84 1.32 5.18 1.7 1.48 3.18 2.67 9.45 9.94 7.85 12.5 12.3 6.78 2.74 4.53 2.53 9.73 5.92 11.8 9.56 12.8 13.6 1.48 1.63 11.3 4.7 3.31 8.36 4.8 9.43 4.02 7.64 12.6 12.4 2.2 9.71 9.68 6.7 0.92 6.97 4.93 11.3 10.7 8.36 9.68 7.59 6.16 7.28 5.71 7.21 7.93 0.92 9.29 3.31 9.1 5.94 2.45 1.63 4.6 9.36 4.05 8.88 1.32 4.72 8.75 8.27 5.62 7.92 1.76 9 9.08 2.86 3.44 7.31 6.95 3.13 3.96 8.39 8.55 1.88 9.29 5.87 3.82 2.92 8.07 9.16 7.51 3.31 6.66 7.02 5.48 0.67 0.92 4.17 6.53 2.86 1.13 9.33 10.5 7.47 9.19 7.09 1.88 9.79 2.53 4.75 3.48 6.45 3.94 11.4 7.43 6.92 8.04 3.13 10.5 6.26 10.6 7.78 1.63 11.2 1.32 5.99 11.7 7.66 10.9 2.67 11 8.43 9.56 10.9 11.9 8.17 8.45 7.07 10.6 12.7 9.66 11.5 8.73 7.36 2.53 6.95 12.7 10.7 11.1 10.4 4.28 10 8.39 10.8 1.99 0 5.08 4.53 7.26 8.53 6.63 6.5 5.52 9.1 8.57 7.35 2.1 0.67 6.46 2.1 6.05 9.82 5.13 3.27 11.6 12.2 7.88 4.93 10.3 10.2 11.8 11.8 6.54 10.7 7.85 9.68 9.64 4.78 8.23 9.46 10.7 5.66 4.43 9.1 10.7 6.26 8.19 9.79 11 0.38 10.5 3.23 0.38 9.03 9.33 6.44 7.03 13.2 10.2 9.36 10.8 13.8 10.2 13.2 12.4 7.08 9.82 8.85 5.7 8.94 7.34 11.2 8.56 9.8 6.69 7.93 8.68 9.9 3.52 7.93 7.67 10.9 11.6 9.96 11.4 10 9.07 10.4 9.85 8.45 9.97 9.87 7.94 8.33 9.53 6.48 8.94 11.2 0 13.3 11.2 11.5 9.45 10.6 6.6 8.91 8.39 6.26 8.52 6.34 7.73 12.8 7.25 8.19 11.9 15.5 1.32 3.13 10.1 10.8 7.11 8.4 9.16 12.6 12.8 14.6 16.2 11.4 12.2 9.11 8.64 10.3 9.13 8.71 3.66 6.35 7.52 10.2 8.79 9.37 8.55 6.93 9.9 7.69 8.91 7.34 10.2 5.49 2.92 4.8 7.95 0 6.26 4.75 6.9 8.9 6.83 6.36 11.1 8.06 4.55 9.6 9.33 9.22 10.8 1.99 7.79 9.68 8.5 0.67 10.4 7.29 7.13 4.59 12.8 3.55 7.37 7.31 4.9 2.29 7.03 3.45 8.88 5.47 3.88 5.35 7.85 7.25 13.3 5.36 8.06 10.9 6.38 7.72 9.2 12.9 7.81 12.5 8.38 11.8 11.1 13.5 13.3 11 13 0.38 9.25 1.13 9.28 7.18 6.72 11.6 0.38 1.48 6.63 7.9 3.23 9.3 5.61 3.99 2.37 8.53 6.75 6.85 6.76 3.79 8.61 4.62 8.03 8.03 11.9 9.17 2.97 10.4 13 10.3 10.1 0 3.23 10.2 9.44 4.81 5.88 11.6 8.36 3.66 2.1 3.52 12.1 11 6.24 10.4 9.71 1.76 7.96 7.74 8.11 4.35 8.27 0.67 0.38 2.1 10.4 8.95 6.93 6.21 8.91 7.93 10.9 6.87 8.73 8 1.33 6.54 7.32 3.66 8.63 6.63 5.56 8.97 3.27 9.85 8.78 5.31 11.3 11.3 7.27 7.95 9.4 9.14 7.83 9.02 5.35 11.8 6.27 6.79 11.4 11.2 10.2 8.46 11.7 10.8 4.24 9.71 2.97 10.1 3.13 9.41 3.18 5.15 6.31 7.31 10.3 2.1 1.48 9.62 9.37 5.83 0 12.4 8.23 1.13 3.48 5.93 2.1 9.26 7.86 8.28 7.28 12.1 8.17 4.6 4.37 5.18 8.62 6.04 11.6 6.93 6.76 15.2 5.58 7.36 2.53 1.48 0 7.34 7.02 8.15 9.72 12 9.59 9.94 12.9 7.04 7.79 14.4 9.36 5.12 5.28 1.32 9.37 8.74 6.86 7.82 10.2 9.25 10.2 11.2 7.42 10.6 10.2 9.97 7.87 7.34 11.2 10.7 10.2 4.12 9.05 12.6 10.8 8.41 4.37 1.48 5.31 7.59 7.77 0.38 10.2 12.2 1.63 8.53 11.4 5.96 12.6 8.78 8.32 8.82 8.07 8.45 9.18 9.85 1.32 6.76 9.11 13.6 8.57 10.4 10.6 1.99 9.27 10.4 3.99 0.67 11.3 9.18 7.77 3.88 11.3 0.38 8.75 10.3 7.87 9.34 7.28 10.4 7.5 11.2 11.2 7.31 11.5 9.87 9.97 11.5 9.43 4.05 11.3 0.92 10.9 10.3 10.2 10.8 8.48 11.9 10.7 5.51 2.97 8.01 4.35 7.24 0 8.68 7.89 7.02 8.18 8.82 11.4 3.27 11.8 9.93 10.8 8.41 7.61 10.5 4.43 10.1 9.87 6.75 9.01 9.76 0.67 9.35 12.7 6.57 6.83 6.8 3.79 2.1 9.13 5.45 8.24 10.3 9.28 10.1 11.2 0 11.4 10.8 8.94 9.79 8.41 8.98 8.5 5.1 11.6 11.4 10.1 11.4 9.57 10.9 5.93 9.54 9.25 11.4 12.5 9.84 7.06 11.2 7.61 5.86 4.78 13.9 8.8 11.5 3.18 4.07 8.58 6.65 5.05 7.92 2.53 9.28 13.3 2.86 7.8 10.1 7.29 10.3 8.37 7.02 9.33 8.38 8.94 8.27 10.1 7.25 9.65 8.56 7.73 9.97 10.2 8.72 8.44 10.8 3.59 10.9 2.2 8.68 8.45 6.89 5.46 2.74 5.58 7.97 3.69 3.18 9.58 0.38 9.02 9.81 10.3 4.93 2.37 3.31 0.38 3.52 4.96 2.37 3.73 10.2 7.48 2.2 1.76 7.09 7.84 5.7 2.97 4.88 6.62 5.14 12.2 6.35 8.76 7.25 7.24 8.31 9.25 4.02 11.4 8.36 8.66 4.07 12 9.08 6.52 8.37 8.51 7.75 8.58 5.24 10.6 5.5 9.76 8.52 8.17 6.75 4.64 8.79 12.1 5.44 3.05 5.93 4.93 5.83 8.35 2.37 4.78 8.09 4.72 10.8 3.99 8.96 10.6 5.26 8.93 8.66 8.87 6.93 9.36 1.76 5.4 11.4 8.49 1.48 9.35 8.32 7.07 8.88 4.74 8.65 1.32 7.86 8.99 8.9 3.27 11.5 7.39 10.6 9.49 10 4.58 8.49 9.97 9.59 10.4 3.82 3.96 8.63 11.1 5.64 9.26 6.56 2.53 8.45 7.55 5.93 5.47 12.2 7.9 2.2 0.38 2.2 6.66 1.63 7.51 10.1 0.92 4.8 2.8 2.1 4.28 3.4 5.98 4.55 6.64 11.4 8.79 10.5 2.67 9.49 8.57 11.3 8.34 10.2 4.43 8.92 9.11 5.72 3.82 0.38 7.93 1.13 5.89 6.77 10.1 4.64 14.1 8.85 4.05 0.38 10.1 8.07 9.82 12.7 4.02 8.46 8.47 8.61 10.9 9.64 10.6 8.66 12.7 5.27 8.87 0 11 4.07 6.68 10.6 10.7 4.12 11.1 4.17 12.4 10.3 10.9 8.88 7.67 10.7 11.2 9.83 0.67 6.59 10.8 6.74 9.8 9.05 11.3 11.2 8.12 9.89 3.36 8.24 10.3 8.5 9.77 6.57 9.73 7.36 7.93 1.76 10.4 9.5 10.5 10.2 7.67 8.96 8.2 9.66 3.31 8.99 7.74 9.47 10.9 0.67 11.4 6.32 9.51 8.62 8.17 11.5 8.95 8.02 12.9 10.4 8.2 10.3 11.8 9.24 6.5 10.1 8.31 11.2 10.9 9.76 8.86 9.48 8.93 1.13 9.58 8.31 7.73 1.63 8.75 5.71 9.65 11.4 11.4 9.49 9.96 11.1 9.83 9.8 8.29 11.9 5.28 2.37 11.2 0.38 10.5 11.4 9.71 9.21 9.47 5.9 10 9.94 11 10.9 10.1 10.8 7.24 10.2 9.64 8.78 11.1 10.5 7.37 7.86 11.7 8.7 9.71 0.38 7.63 9.89 10.6 2.29 3.85 11.8 9.06 6.2 10.6 7.36 6.36 11.2 6.74 10.6 3.96 10.3 11.4 0 5.61 2.2 9.62 11.2 10.3 9.98 7.58 8.76 1.32 9.96 11.7 8.37 9.15 7.87 10.2 7.54 9.02 1.32 9.33 8.62 11.3 9.73 9.55 9.49 10.8 0.67 13.3 11.4 9.23 10.9 4.24 8.89 11 10.8 10.2 9.02 10.5 7.96 7.22 6.94 9.25 6.71 10.2 10.7 8.62 11.7 5.73 7.57 8.55 11.1 11 12.2 9.45 10.4 9.99 10.7 4.45 9.05 7.11 10.2 12.3 11.2 9.67 9.97 10.8 4.65 9.95 10.1 10.5 5.99 9.16 9.77 10.2 9.67 8.63 7.78 8.55 10 10 11.7 8.69 8.27 10.8 10.8 5.55 9.68 8.6 8.16 10.2 10.9 8.4 11.8 6.22 8.91 10.6 9.72 3.99 10.6 2.97 9.6 9.55 5.72 8.15 9.64 10 8.1 7.74 9.63 11 7.16 0.97 3.18 9.04 9.78 10.7 4.96 11.9 8.44 10.3 9.48 7.03 9.36 9.35 8.92 9.58 9.32 10.9 11.6 10 10.8 9.65 8.17 8.74 4.41 4.75 8.8 1.63 7.29 11.7 10.4 10.6 10.4 9.11 9.4 15.4 10.9 9.58 9.95 10.7 10.4 11.2 10.9 10.4 11 9.71 12.7 12.6 8.94 8.07 9.45 9.16 10.4 11.1 8.93 8.94 8.42 6.4 9.47 9.11 10.5 11.5 8.48 10.5 11.7 10.3 11.8 11.9 9.24 13.1 6.56 10.2 12.1 10.6 11.2 9.44 10.1 7.43 10.6 12.6 2.1 10.9 7.85 1.76 9.53 9.98 9.65 11 11.5 11.5 12.6 11.2 0.67 11.1 10.4 3.82 7.66 8.44 9.99 11 11.2 9.34 9.43 6.72 8.65 8.43 7.58 6.17 9.51 8.66 6.02 0.67 9.09 7.75 8.95 9.86 11.6 9.6 11.4 5.73 9.65 9.23 10.6 9.94 7.56 9.35 8.97 10.1 7.24 9.4 9.99 9.71 7.54 8.95 9.42 10.9 12.1 11.6 7.73 6.37 10 7.31 8.73 10.5 10.4 9.41 8.84 8.79 11.9 11.1 4.22 2.29 8.84 2.45 6.53 10.3 8.84 9.29 6.38 9.75 9.09 9.55 11.5 9.63 8.72 9.12 9.81 3.88 8.67 9.43 7.68 9.41 10.1 9.49 10.2 8.95 9.15 9.95 12.8 8.42 8.98 2.29 9.84 9.01 11.2 8.58 5.97 9.67 9.79 11.5 9.25 9.78 6.59 9.92 8.7 10 8.07 12.2 9.19 10.4 7.31 8.87 10.6 9.04 9.76 9.58 8.85 15.2 11.1 11 11.9 11.5 8.3 8.87 9.56 10.1 0.67 10.7 9 8.79 8.97 11 7.39 12.5 7.88 12 10 9.72 8.3 10.2 8.03 9.48 10.7 12.4 9.1 10.4 9.81 11.4 11.2 9.44 10.9 11.5 8.62 11.7 11.3 9.31 10.5 9.65 7.99 10.6 10.7 9.53 8.74 8.82 9.53 11.5 9.49 3.91 8.73 8.05 10 10.5 5.04 3.69 4.95 7.22 3.73 9.04 11.2 8.32 12.7 8.33 6.83 8.8 9.86 0 8.76 6.11 10.8 11.8 9.59 7.92 10.4 11.1 12.1 10 10.8 10 6.78 5.73 9.13 8 10.8 9.49 9.83 9.1 10.5 10.4 12.1 9.06 8.23 6.64 11 11.7 10.7 3.13 9.94 11.3 7.44 9.38 3.91 9.49 9.9 1.99 6.23 11.7 7.62 6.99 9.24 0.67 10.1 8.89 10.5 8.77 10.9 9.39 10.3 9.59 10.7 10.3 8.68 12 9.72 10.3 4.84 1.32 13.6 8.21 10.5 13.3 10.3 10.3 8.37 5.29 11.1 10.1 9.36 1.48 8.82 10.3 7.19 4.31 6.99 8.67 11.5 9.42 0.67 8.93 1.88 4.86 6.84 10.8 10.9 9.6 11.6 7.83 7.39 8.65 8.65 9.4 12.6 9.82 9.91 11.5 5.29 1.77 10.3 1.32 7.54 9.35 0 7.78 9.71 4.99 11.7 9.26 8.45 1.48 11 9.67 8.51 9.07 9.34 10.8 9.03 8.91 11.2 7.72 9.87 10.1 9.6 9.85 7.44 6.53 12.8 9.14 10.2 11.5 9.32 8.4 9.28 2.92 9.4 8.36 11.4 10.6 6.21 0 3.03 1.63 11.1 7.11 11 9.52 3.88 8.99 11.5 10.4 6.8 9.89 9.54 12.4 9.54 8.53 9.95 10.7 13.1 7.72 9.67 8.77 8.25 9.74 9.77 10.2 9.05 4.8 10.7 6.99 9.63 5.74 8.61 8.58 9.99 11.6 4.1 8.95 9.35 10.2 8.96 6.42 8.83 8.04 1.63 2.1 6.7 4.41 12.1 10.8 9.71 8.96 9.79 12.3 11.9 3.69 2.67 8.24 9.6 9.44 10.2 8.9 9.4 9.49 4.7 7.35 9.57 9.03 7.27 10.4 11.9 10.5 0 4.72 1.88 4.18 7.44 5.82 6.15 3.27 9.25 2.67 6.13 2.45 6.07 8.5 6.34 7.2 8.71 7.52 1.88 2.53 6.28 10.5 8.75 6.21 9.01 7.4 4.86 15.9 9.62 10.2 0 16.4 10 11.2 12.9 6.28 6.13 7.71 10.1 2.29 4.77 11.9 3.03 5.75 9.32 6.3 3.96 8.5 0.38 4.49 7.99 9.81 9.77 2.29 8.1 7.09 7.72 9.43 8.55 4.8 9.53 6.88 6.3 8.8 5.74 3.4 12.4 8.53 3.13 9.95 4.84 7.32 9.56 7.53 6.75 0.92 12.1 10.2 8.9 9.12 6.04 5.24 6.06 9.15 3.59 7.03 10.9 4.19 0.92 7.86 1.48 1.32 9.64 10.3 5.91 5.75 6.27 1.76 4.83 9.75 7.06 7.79 11.3 10.3 10.1 5.09 13.5 0.92 12.3 11.8 5.4 8.1 9.14 8.32 9.88 7.2 8.64 6.04 4.1 0.92 4.24 8.98 9.1 1.48 8.39 2.37 8.89 5.8 8.57 5.96 5.14 6.11 3.03 8.55 0 6.45 3.62 2.74 7.5 6.4 7.1 5.97 7.17 8.49 6.81 9.06 6.52 2.45 3.31 4.35 7.92 8.81 7.53 7.37 4.69 7.09 3.62 9.56 10.5 5.21 7.64 7.08 7.13 6.45 9.05 6.9 1.63 3.55 7.46 2.45 0.92 5.2 6.43 1.13 5.89 3.94 3.23 10.7 7.14 3.73 4.45 1.32 5.43 10.1 5.18 8.12 4.12 3.76 4.96 3.03 8.47 4.81 7.57 0.92 1.48 9.55 8.83 5.24 6.83 11.8 6.27 10.8 7.87 9.66 0.67 9.37 12 11.3 9.23 10.4 3.99 4.43 8.57 5.74 8.75 10.5 10.1 2.86 10.8 7.94 11.2 6.85 10.8 10 8.52 9.26 7.32 3.66 12.2 11.8 8.37 8.08 8.78 0.38 10.6 12.1 7.95 3.48 7.92 10.1 10.5 7.85 7.9 2.45 12.7 11.4 6.81 10.3 11.4 6.21 2.97 10.9 8.32 5.88 9.62 4.58 9.45 10.1 9.05 10.1 9.27 9.16 11.2 8.3 9.93 7.57 8.79 4.58 8.3 9.17 10.9 4.65 10.6 6.94 9.98 4.96 7.93 9.65 11 9.83 14.2 10.9 8.78 2.37 11.3 11.1 8.76 8.09 10.3 9.63 7.76 10.2 7.81 8.26 9.39 7.33 10.7 11.1 8.32 0 12 8.15 8.94 10.7 10.1 9.25 9.23 10.3 11.7 9.23 6.69 13.2 8.37 6.7 10.4 9.8 9.22 3.59 8.71 10.7 11.3 0 7.12 9.48 8.4 7.25 2.29 8.42 10.7 10.7 6.61 3.76 9.14 0.38 9.42 0.92 0 2.45 6.97 10.8 10.4 12.2 8.55 9.02 8.81 8.94 10.3 11 9.31 10.9 8.17 3.4 10.1 9.94 10.2 8.61 7.86 11 6.43 11 9.11 9.74 4.58 11 11.5 10.5 16.4 10 9.69 7.78 7.54 8.53 9.67 9.67 8.69 10.3 7.17 9.3 10.7 10 8.8 10.7 7.81 10.3 10.2 9.26 6.97 4.58 10.6 10.9 9.37 11.3 8.86 10.4 9.84 11.4 6.53 10.6 6.68 9.55 10.7 10.1 10.2 11.4 7.03 9.51 5.08 4.87 8.88 9.27 9.82 8.93 9.01 1.13 4.99 9.59 9.1 10.2 3.55 9.49 5.82 7.47 7.74 2.2 8.83 0.67 8.24 6.52 0.92 7.14 6.43 10.4 9.82 10 11.2 10.7 10.3 7.8 10.2 9.96 10.6 10.9 10.9 1.63 7.9 9.35 10.6 10.6 9.08 10.3 9.01 9.63 2.6 11.6 8.25 11.7 10.9 1.32 8.5 9.07 9.77 9.71 9.87 8.57 9.53 7.98 8.83 9.37 11.1 13.8 10.2 4.19 9.29 9.36 8.51 9.47 5.73 8.47 6.65 10.3 9.43 6.06 4.55 12 12.1 7.17 9.09 10.4 5.31 10.3 11.9 11.4 7.08 12.2 9.1 7.63 10.8 9.64 10.2 6.74 12.9 5.74 9.1 1.63 7.63 11.5 2.37 9.31 6.87 8.78 9.5 10.4 3.4 10.9 0.67 6.8 4.81 12.3 8.96 9.72 9.08 5.12 8.06 5.08 10.1 2.8 7.08 3.03 6.45 10.2 8.42 9.07 3.77 10.7 9.28 2.53 7.97 10.1 7.98 9.76 9.93 8.7 7.17 8.88 8.33 8.81 9.81 9.09 6.11 7.08 9.64 10.7 2.92 10.5 1.13 9.05 9.11 9.58 7.76 10.6 9.33 11.1 0.69 11.4 9.86 11.3 10.5 9.56 1.13 8.9 8.48 5.28 11.2 9.53 7.27 11 11.8 10.8 4.07 7.07 7.76 10.9 8.24 9.59 9.88 1.32 7.66 10.2 9.65 7.86 8.43 8.98 11.1 10.1 9.18 9.43 9.36 8.18 11.4 4.53 2.37 0 10.1 1.99 6.77 7.57 9.67 6.52 10.9 7.86 9.73 9.06 1.63 10.8 5.43 7.83 2.1 12.4 13 8.08 3.55 4.7 3.86 5.81 8.39 7.71 9.68 2.1 7.95 4.91 1.63 8.5 5.22 10.8 5.69 6.97 4.19 9.47 10.9 1.48 0.38 8.93 7.17 4.31 3.88 6.85 1.32 11.8 6.29 9.14 6.43 9.97 0.38 5.37 9.83 8.46 10 2.6 5.85 9.36 9.62 5.38 8.32 9.24 15.7 10.1 10.3 9.01 8.33 8.7 9.95 2.67 5.83 10.2 1.63 9.96 8.14 5.98 10.7 7.87 8.05 10.5 8.81 8.12 11.8 3.52 7.81 1.13 6.76 9.93 7.8 10.8 10.7 12.2 7.37 0 3.52 8.52 9.07 11.8 2.6 9.06 9.46 7.91 9.73 9.93 6.52 8.58 8.53 8.51 2.86 10.3 6.38 9.63 2.37 7.31 11 10.9 6.19 1.13 10.7 7.69 11.7 12.4 9.85 8.79 6.4 7.35 7.29 7.65 4.78 7.62 4.33 4.8 9.8 6.59 9.01 3.76 4.77 7.41 10.9 9.29 10.4 10.3 8.39 5.09 0.4 6.53 9.29 5.03 4.56 9.24 9.89 2.1 9.35 1.32 7.83 9.64 1.88 11.7 9.77 13.4 7.01 6.73 3.85 10.2 7.84 1.13 6.73 1.76 2.92 2.53 8.68 10.4 4.97 8.92 11.8 1.13 1.88 8.05 8.73 9.23 9.19 4.87 6.34 7.78 10 10 8.4 10.1 8.9 8.35 10.3 10.5 10.4 8.53 7.64 3.31 10.1 10.1 0.92 1.48 7.9 4.89 5.19 9.35 7.5 9.08 4.84 7.86 10.2 9.86 3.36 9.39 8.85 9.77 2.67 8.91 4.56 8.27 5.25 4.58 8.53 11.9 4.77 9.53 9.93 10.7 9.82 4.8 11.5 11.7 9.9 12.1 10.8 9.5 10.4 9.45 8.24 1.13 4.41 9.17 9.18 8.61 9.01 2.1 7.55 9.58 10.5 4.74 8.61 6.3 11.8 10.6 9.51 3.13 9.91 8.38 9.36 10.5 3.66 10.3 10.1 1.88 7.36 9.26 10.7 7.97 6.52 13.7 5.1 11.8 9.28 10.1 7.44 9.09 11.4 8.1 8.1 12.8 10.8 4.8 4.93 9.71 15.2 1.76 8.83 12.8 12.3 4.25 4.41 3.18 11.4 6.82 1.13 8.68 8.46 5.05 9.77 5.73 1.76 11.8 1.32 7.72 8.57 10.5 11.8 11.2 11.4 10.1 9.84 10.7 0.67 11.5 4.67 0.92 10 6.3 9.91 12.9 1.32 9.33 0.38 10 10.6 8.08 3.27 0.38 4.02 4.49 4.26 7.57 2.29 8.14 5.19 1.99 7.08 5.48 9.29 8.7 4.99 5.07 7.52 2.97 6.07 1.99 0.67 9.01 11.6 8.06 13.7 11.3 3.31 3.48 6.4 7.39 8.42 8.54 7.74 7.04 9.72 9.11 8.44 7.08 8.67 1.76 6.26 6.83 7.06 6.88 9.09 4.62 8.23 3.79 10.2 0.92 7.56 5.5 4.45 3.36 3.69 1.63 7.61 5.83 10.1 4.95 7.06 6.34 8.08 9.36 9.18 4.69 0.67 1.73 2.37 8.08 6.6 5.72 0.67 8.72 0 6.64 0 3.31 9.68 9.56 8.44 5.55 3.66 2.37 5.07 8.46 5.71 8.95 0.67 0.67 5.75 11 3.23 6.74 2.45 5.44 9.76 6.32 9.65 5.88 4.26 6.82 3.03 4.35 8.72 7 0.46 5.01 9.3 10.6 10.8 4.65 2.37 8.67 9.72 0.67 7.13 8.87 5.17 6.19 4.93 7.2 3.36 9.06 4.02 2.6 0.92 4.65 5.55 7.36 0 4.05 1.48 10 3.69 0.67 8.25 11.3 9.47 7.1 4.67 8.75 7.48 2.45 0 1.63 9.47 1.48 3.52 9.29 2.1 9.58 0.92 6.43 0.67 4.71 5.4 7.13 6.69 7.53 6.45 2.86 4.87 5.87 4.9 3.88 4.28 11.1 2.86 6.41 6.43 4.67 6.59 1.13 9.1 6.57 1.32 6.05 1.63 1.99 6.17 7.4 5.73 6.39 4.55 8.39 7.77 4.24 0 4.97 5.54 4.17 2.53 11.5 4.15 8.3 3.99 6.89 4.53 4.31 6.72 9.6 3.03 3.44 3.48 4.22 0 4.83 0.92 1.76 7.41 2.29 6.58 0.38 3.31 5.73 7.17 0 8.29 5.96 10.2 7.47 6.71 5.98 2.74 6.28 1.13 7.9 9.68 7.34 6.46 8.94 3.66 7.92 1.76 4.47 6.56 6.97 7.18 4.67 8.53 8.55 0 5.69 9.99 8.42 4.83 5.81 7.91 1.63 8.75 2.2 6.49 8.86 9.32 7.08 8.33 4.28 6.12 0.67 4.78 8.61 0.67 7.67 1.63 4.9 4.97 7.32 9.05 9.19 3.66 8.03 0.38 10.6 2.29 0.92 4.89 2.67 6.16 7.32 8.9 3.69 6.01 8.04 2.6 6.33 8.32 8.19 6.46 8.56 1.32 4.69 2.29 10.3 7.66 4.74 6.61 0.67 3.44 9.42 0.38 4.28 7.55 7.64 7.76 7.04 2.8 3.03 5.56 4.51 5.04 0.92 9.02 7.39 0.38 10.6 2.86 8.02 4.33 2.67 2.8 7.56 3.66 6.81 9.2 9.02 5.48 1.88 6.98 3.27 2 3.69 8.98 8.66 9.45 4.95 8.18 8.06 10.3 7.91 1.63 4.31 3.18 7.31 6.25 3.31 5.79 9.97 8.65 7.92 3.44 6.13 10.7 11.2 11.7 9.52 8.4 12.7 1.63 11.2 12 8.72 6.8 12 10.5 11.3 2.8 5.17 8.03 9.25 9.28 10.5 7.99 8.96 11.1 13.4 9.56 9.41 10.8 3.59 7.11 1.99 11.2 0 8.11 7.49 10.8 10.7 11.3 10.1 10.1 9.59 7.79 9.19 8.06 10.3 9.07 9.21 11.2 9.27 3.44 6.59 9.03 7.9 12.2 9.84 6.35 10.9 10.5 0 5.07 12.8 2.1 11.4 10.2 9.55 3.91 9.8 10.9 5.03 9.07 6.16 9.49 10.8 12.1 6.19 8.76 10.6 11 9.5 9.04 10 9.15 9.22 9.75 6.97 10.1 10.3 7.71 11.4 10.4 10.1 9.26 6.44 7.63 8.77 8.91 8.34 10.8 8.03 9.48 8.29 9.19 11.9 9.72 8.59 7.5 8.45 1.48 9.15 9.52 8.94 1.48 9.47 10.7 8.99 9.21 0 1.88 9.03 2.67 10.5 4.28 4.86 10.3 9.45 0.67 1.76 4.45 13.4 6.08 4.65 13.5 2.29 11.4 14.2 10.6 10.4 12.4 11.6 9.32 9.57 8.31 7.5 7.8 7.62 8.97 4.22 13.6 8.49 3.36 8.36 11.2 6.59 9.87 9.24 8.17 8.69 10.9 8.66 10.2 7.27 7.95 9.26 11.4 12.3 11.2 8.64 3.91 10.8 11.5 6.47 9.6 11.3 3.27 10.6 10.3 3.91 8.98 9.73 1.76 11.1 11.1 7.25 11.3 3.4 10.4 0.67 5.08 7.03 6.8 9.6 1.99 12.9 9.07 7.52 0.67 9.8 9.77 8.09 8.34 0.92 5.62 10.9 13.3 8.37 2.8 9.42 10.4 9.8 9.7 10.5 11.1 11.3 6.35 10.1 0.67 9.94 10.7 10.8 10 10.1 7.36 9.56 3.13 9.45 5.62 10.2 9.92 8.56 9.04 8.34 10.6 11.5 7.71 8.51 11.1 8.99 9.88 13 8.55 9.55 3.59 7.27 7.73 2.29 11.6 9.17 6.72 1.32 5.19 8.33 8.31 5.62 9.53 7.74 1.32 10.6 8.92 13.5 9.54 2.29 11.7 1.13 9.76 5.12 9.5 8.09 8.82 9.86 9.51 9.69 7.71 10 11.3 8.43 8.66 9.29 9.65 5.15 8.8 5.79 11.2 8.81 5.28 8.43 8.41 11.8 7.9 1.79 10.2 1.13 11.6 9.69 9.24 4.89 6.39 11.8 6.18 6.55 5.25 12.6 7.99 8.22 2.6 2.92 3.18 11.1 5.3 1.01 11.1 12.5 8.1 13.8 12.5 13.8 11.4 10.2 6.38 12.7 11.6 10.8 1.99 9.75 4.56 5.63 4.26 1.88 12.3 7.35 6.64 0.38 0 0 2.2 9.14 0.92 12.1 9.77 10.4 7.76 10.5 11.7 11.7 4.35 14.3 13.3 11 6.35 10.1 11 11.5 9.25 6.69 12.2 7.22 3.62 7.82 9.17 8.07 7.41 5.18 3.69 9.67 4.93 9.35 8.86 7.03 10.3 6.66 3.18 10.6 7.02 9.19 9.05 10.3 10.8 6.21 11.7 7.26 11.6 8.88 11 11.6 9.05 11.9 10.1 11.1 10.5 9.96 11 9.51 8.77 15.4 15.4 14.9 11.1 10.7 11 10.1 6.45 13.1 12.7 2.8 12.5 7.39 12.9 7.34 14.6 13.9 12.7 8.49 8.4 7.76 13.2 12.6 8.47 12 5.7 6.66 4.1 7.43 9.74 10 9.95 11.8 11.9 11.3 11.5 12.6 8.95 9.14 9.42 12.6 6.38 8.99 11.3 10.5 9.35 8.38 0.92 8.97 7.45 10.1 7.39 5.24 7.41 0.67 9.23 0.38 9 0.67 10.3 12.3 8.48 14.2 12.1 13.2 12.3 11.8 12.8 11 11.1 13.5 0.38 12.5 13.6 0.38 3.03 1.88 8.5 8.18 4.31 3.72 3.91 1.32 4.12 3.79 4.96 2.1 3.23 0.67 5.62 6.14 5.56 4.86 2.8 4.31 5.68 1.76 2.1 7.36 4.15 5.69 10.8 5.55 8.3 4.93 9.37 1.13 5.29 7.84 0.38 10.4 10.3 0.38 3.36 2.97 9.05 1.76 6.15 9.68 10.6 8.21 6.2 11.4 2.86 6.35 10.9 11.1 11.8 9.86 9.87 10.9 6.56 6.56 6.35 2.53 10.2 10.5 8.75 7.41 9.95 11.5 12.1 14.2 11.7 6.11 11.9 10.8 13.3 10.2 10.3 8.7 14.9 12.9 11.4 4.87 11 13.3 10.7 14.9 13.4 7.52 11.3 11.7 9.73 12.4 8.22 5.42 13.5 11.1 8.98 0.67 0.38 0.38 2.92 12.4 5.64 3.66 8.76 9.91 6.13 12 10.3 2.45 5.28 1.13 0.93 1.49 8.51 12.1 0.67 4.07 2.92 8.13 8.38 5.14 9.38 3.85 3.52 3.52 4.05 7.12 10.4 6.97 10 5.46 9 9.4 2.37 1.13 1.48 4.74 5.87 7.99 10.4 2.37 9.6 6.67 5.77 10 9.89 9.73 7.86 10.3 9.36 7.02 8 5.12 7.75 2.92 2.45 3.62 8.96 0.92 2.67 9.49 9.28 2.45 8.73 5.98 7.68 6.59 6.72 7.31 3.69 7.14 10 7.17 4.53 6.81 8.88 1.88 3.27 9.44 7.99 4.53 2.37 3.13 3.18 9.21 6.09 1.13 5.25 8.01 10.6 9.01 9.21 0 0.38 4.53 5.04 1.76 7.09 3.03 0.38 4.9 2.1 9.48 2.29 8.9 7.67 3.82 3.94 0.38 8.06 4.43 6.1 3.66 2.29 1.48 3.03 3.96 4.89 3.69 9.12 5.5 6.36 11.7 3.44 1.65 0.67 8.45 1.13 10.4 13.6 10.7 11 3.27 11.5 1.32 4.39 5.75 10.5 12.5 0.67 7.39 8.92 0.92 7.9 6.16 1.32 6.45 6.78 13.9 3.52 10.7 4.6 3.85 2.86 1.48 6.41 1.13 2.2 0.38 9.17 0.92 7.84 8.22 4.29 9.36 9.33 4.37 2.74 2.97 1.63 3.48 2.1 9.97 5.61 8.03 5.78 0 1.63 6.46 5.45 0.67 5.88 1.63 4.6 2.67 1.88 0.92 10.1 6.33 9.09 1.32 2.29 7.09 8.46 2.74 3.59 10.8 2.8 10.6 3.18 5.31 4.64 6.62 1.99 2.8 8.38 9.96 3.48 1.13 7.85 4.15 6.19 0 2.1 6.03 10 0.92 9.61 4.7 3.27 10.6 10.7 2.45 3.91 4.31 1.32 10.4 8.05 6.68 6.99 14.4 10.7 6.59 4.43 6.29 9.23 8.82 3.84 7.43 12.4 9.88 0 11.2 2.37 5.72 2.8 6.38 11.2 1.76 10.1 12.7 3.69 7.48 11.6 7.94 0 5.86 6.34 4.96 10.3 11.6 5.76 10.9 6.99 5.1 4.28 4.95 0 7.69 6.71 9.24 8.69 13.4 10.1 8.21 0.92 5.69 6.66 10.2 5.67 4.05 9.18 1.08 2.1 8.37 5.74 3.4 3.08 2.67 6.29 4.92 7.21 6.31 0 0.67 8.1 10.2 10.8 2.53 6.88 9.99 7.77 10.3 7.22 3.13 8.12 9.78 7.58 9.93 0.67 6 5.01 9.73 8.56 4.33 7.55 6.89 0.92 2.67 9.88 5.63 2.8 4.77 10.2 9.6 3.88 7.78 3.79 2.6 6.65 11.1 11.3 2.52 9.22 12.2 8.82 6.69 5.59 10.4 7.98 5.25 1.99 9.23 5.18 8.52 11.9 13.3 13.1 0.38 10.6 7.02 11 12.2 12.1 10.9 9.54 8.85 7.47 3.85 6.89 8.48 2.29 13.5 7.22 1.48 9.37 8.13 8.39 9.09 11.8 9.98 5.28 1.76 10.1 0.92 13.2 7.53 6.54 14.2 10 7.85 10.3 10.9 9.38 9.45 9.36 5.93 8.81 10.6 9.58 6.41 8.99 2.86 12 8.24 9.93 4.19 9.28 8.21 10.8 7.37 2.6 7.04 5.29 8.32 9.17 10.4 10.8 10.4 12.2 12.8 10.1 6.59 11.2 11.9 11.2 5.76 8.91 10 1.48 0.92 0.38 12.2 6.04 6.92 11.9 10.4 9.84 3.13 12.1 7.97 9.79 11.4 10.6 10.4 11.8 9.07 8.9 11.7 9.09 11.8 11.9 11 11.4 7.07 5.98 10.9 9.8 10.7 0.92 4.7 5.66 4.97 1.48 2.67 1.63 10.4 6.3 8.81 3.52 9.33 9.91 7.61 0.67 6.28 0.38 1.13 5.68 2.2 2.67 4.77 6 9.03 8.56 8.99 2.1 1.13 5.41 6.6 8.53 3.44 8.94 2.97 4.24 9.8 5.64 3.08 6.86 5.36 4.87 6.34 1.88 8.03 0.38 3.08 8.37 14.6 4.77 6.49 8.02 11 3.73 9.47 7.61 3.44 5.83 2.97 7.53 8.12 6.68 5.59 5.12 0.67 2.6 0.38 6.72 7.62 8.01 5.99 6.8 8.63 9.17 7.35 0.92 3.52 1.76 1.13 4.85 3.59 7.26 10 8.38 3.36 10 6 7.54 2.86 6.51 11.7 3 0.67 6.28 6.1 8.89 7.93 1.48 9.13 0.92 6.56 6.42 4.15 3.55 0.67 7.91 11.5 5.98 3.91 5.15 9.19 9.95 6.4 7.87 4.53 6.58 12.1 0.67 0.38 4.12 10.2 7.11 0 5.79 0.92 7.97 6.16 0 7.24 10.7 5.41 10.2 3.08 9.08 5.65 8.81 8.68 10.1 3.82 10.9 11.4 4.65 9.33 0 0 0 11.6 0.38 0 7.86 0.38 4.51 12 5.66 1.48 0.92 0.67 3.62 0 9.55 9.54 11.1 11 10.4 12.6 13.5 9.22 6.54 10.4 5.26 10.5 11 8.68 2.86 0.92 12.1 7.83 1.32 9.9 6.43 5.49 13.2 6.62 4.07 8.53 0 9.34 3.59 5.62 8.6 2.9 9.63 3.03 2.1 4.96 9.85 5.19 4.9 11.3 7.14 10.8 5.73 0.67 6.25 3.23 8.68 11 9.06 1.32 1.88 2.37 6.46 0.67 8.02 2.37 4.93 4.81 2.2 2.8 6.08 2.67 2.45 10.7 1.9 3.4 9.03 5.2 1.63 11.3 2.53 9.17 4.33 4.1 9.68 3.66 3.82 8.5 3.55 5.42 5.04 4.78 6.01 4.45 4.56 5.25 6.75 4.28 7.8 6.78 1.99 13.2 5.03 4.72 9.1 7.09 7.91 6.57 5.73 6.61 1.13 0.38 4.35 8.8 7.47 3.44 8.93 6.89 10.1 0.92 6.62 8.78 2.37 6.06 7.59 10.3 9.46 1.63 8.8 1.76 2.2 6.22 6.73 9.62 9.12 5.35 2.45 9.74 12.3 7.23 10.7 4.58 0 4.96 4.56 7.11 4.12 8.29 1.13 6.9 5.92 0 3.76 8.61 7.45 4.22 4.04 11.5 6.97 7.73 10.5 1.48 3.03 3.52 1.63 9.65 4.83 3.18 5.83 2.97 9.23 0.67 3.62 1.48 0.73 6.72 2.29 9.4 4.31 9.51 7.92 5.88 2.29 1.48 2.8 10.1 0.67 4.24 2.1 6.15 0.38 8.17 6.05 9.02 5.49 7.82 10.4 10.4 4.77 12.4 2.3 11.2 0.38 11.2 3.94 9.05 10.6 12.3 12.8 6.25 1.48 11.2 13 13 1.13 0 2.29 12.3 6.03 11.1 2.45 8.36 9.98 11.3 5.15 8.02 8.72 13 9.21 0 13.8 10.1 12.7 9.61 4.93 4.89 6.91 10.7 8.49 12.7 6.44 11.5 14.3 13.6 2.29 8.51 11 12.6 0 7.7 7.36 9.86 0.67 9.42 7.49 10.2 10.9 10.2 8.58 11.7 6.76 1.76 8.29 8.94 11 1.13 4.65 9.64 8.39 9.41 8.79 11.7 5.86 5.64 2.86 9.76 10.3 4.56 6.48 4.67 11.2 6.18 8.28 5.86 11.4 0 4.19 6.13 9.52 11.1 14.1 6.95 5.52 7.15 10.3 0 0.67 5.12 9.82 8.23 8.05 7.23 9.12 1.99 7.15 7.34 0.38 7.99 8.24 3.44 8.38 2.6 0.67 3.85 5.96 2.92 3.13 6.13 5.09 8.26 2.92 8.32 8.9 0.92 1.88 9.54 6.95 5.62 1.99 5.86 5.77 6.85 4.84 6.29 2.6 6.16 0.38 6.59 0.92 2.6 4.17 10.2 1.88 6.74 4.92 5.52 2.6 5.69 0.67 0.92 3.81 4.81 7.68 4.26 7.8 7.7 0.38 8.96 1.63 0.38 7.53 6.46 9.58 8.53 7.16 7.5 8.51 10.7 6.36 3.99 8.7 0.38 1.48 4.41 0.67 6.19 8.98 3.62 5.52 9.45 3.88 0 4.96 6.38 11.1 7.91 0.92 9.71 2.53 9.68 5.68 3.18 7.71 3.18 6.41 8.72 5.69 8.86 0 7.86 10.2 12.8 3.94 9.94 4.53 6.87 4.07 8.44 11.4 2.45 6.56 2.29 4.41 11.4 1.99 4.47 11.6 8.06 9.36 11.3 9.04 10.9 4.43 9.87 8.47 0.92 8.74 10.7 11.1 12.3 4.59 13 1.32 2.67 8.95 7.23 12 12 5.95 8.03 9.17 7.06 11.4 5.95 13.7 8.89 14 13.4 11.6 12.8 10.3 0.92 6.75 5.42 7.5 8.58 9.49 11.8 8.47 9.52 8.47 10.1 10.2 9.64 10.5 9.39 6.4 8.87 2.53 9.08 10.6 0 6.31 10.5 8.73 9.73 1.13 4.17 8.21 8.85 11.3 10.1 7.66 12.3 9.77 5.95 10.7 7.52 9.29 5.98 12.3 4.49 5.8 8.12 10.4 9.06 7.04 3.27 11 5.68 4.15 7.02 2.86 3.87 7.41 5.58 0.38 12.2 8.4 4.74 9.35 8.09 6.1 10.6 8.41 9.39 3.18 12.9 11.9 1.32 9.76 11 10.2 9.39 10.9 8.66 4.33 4.87 12.5 11.6 11.9 12.4 10.5 10.7 12.1 12.1 3.27 7.34 8.7 11.8 11.7 12.9 9.13 10.9 10.1 8.1 10.1 10.1 11.2 10.1 4.16 9.41 10.9 8.07 5.21 6.2 9.75 7.22 9.35 10 9.83 8.42 11.1 11.2 4.87 0.92 6.97 9.77 7.98 9.62 8.55 9.11 8.22 13.7 10.8 7.92 12 10.1 7.01 8.61 9.74 7.98 7.11 15.2 10.9 8.86 11.8 9.52 11.1 11.6 6.46 6.97 13.5 10.8 1.32 8.32 7.9 7.31 11.6 9.99 8.61 8.99 6.67 8.67 11.5 10.1 11.5 9.38 5.03 4.49 5.91 12 11.3 7.85 4.56 8.07 12.1 12.7 3.94 2.53 13.3 4.47 9.63 12.4 5.15 8.65 7.37 4.99 9.31 7.59 3.76 5.59 7.27 8.57 9.36 2.2 7.09 9.02 1.32 9.56 7.67 9.77 10.1 8.71 3.4 3.03 10.5 3.31 5.1 10.4 10.7 5.14 8.58 8.92 10.1 1.63 4.26 11.1 10.4 0.67 4.62 5.08 10.7 8.38 3.69 1.48 2.8 3.85 8.27 1.76 8.86 0.67 0.38 4.6 8.6 8.81 4.07 9.5 10.9 5.29 8.01 2.82 4.97 6.92 4.97 10.9 7.02 1.88 7.97 2.92 9.32 7.05 7.35 6.33 0.67 0.92 10.2 10.8 3.59 3.08 4.99 3.66 10.8 3.4 8.03 8.72 1.88 0.92 7.92 7.65 7.54 5.84 12.1 1.13 6.22 5.83 6.55 6.72 4.17 7.51 8.77 6.76 2.97 5.55 7.43 6.49 3.23 4.42 6.49 0.38 6.3 7.21 2.16 0.67 5.39 0 0.67 4.22 3.79 0.92 9.8 1.48 8.99 5.34 4.02 5 6.43 3.52 5.59 10.1 0 0.67 0.92 0.38 2.2 4.45 7.5 1.63 0.67 8.01 6.6 3.76 3.44 9.08 1.48 9.89 8.39 2.92 8.61 11 11.2 9.54 3.52 8.19 6.51 1.63 8.93 13.4 10.8 6.16 7.11 9.31 5.58 7.19 5.91 3.44 5.69 8.47 11 9.94 6.59 9.02 8.92 10.9 9.21 10 8.97 10 2.45 10.5 8.78 10.7 13.8 3.59 0.38 10.3 9.72 8.38 8.68 9.41 11.4 9.24 8.92 8.45 11.8 11.1 2.6 1.63 5.81 12.6 6.76 3.88 10.7 10.3 4.33 4.47 14.1 9.08 8.71 7.6 1.13 6.76 12.7 11 1.88 12.1 9.55 10.6 9.98 10.6 9.88 6.56 7.75 8.84 11.8 11 9.58 8.23 9.72 0.67 9.67 8.53 13.5 10.8 9.29 10.4 12.5 5.7 13.2 6.46 3.99 11.1 11.4 11 13.2 3.13 11.5 8.91 10.6 4.37 3.08 9.97 9.82 7.9 9.82 14.1 7.04 11.4 9.83 9.17 12.1 10 11 11.2 10.4 9.65 5.22 10.9 10.8 10.8 8.09 11.3 9.09 11.2 11.4 10.6 10.1 11.1 10.3 13.3 10.9 9.17 11.3 10.3 10.1 12.6 11.5 12.4 8.29 11.9 10.2 11 10.1 10.6 9.93 10.1 7.99 12.5 13.4 10.9 8.09 0.67 5.18 6.73 6.43 8.13 0.92 3.08 3.91 0 10.2 7.78 10.9 6.52 6.26 9.72 10.9 13.5 9.46 1.63 9.46 9.8 5.86 9.76 7.86 9.57 2.45 12.6 4.87 10.5 11 9.77 11 13 10.4 11.1 12.2 8.9 10.7 10.1 9.08 9.66 10.1 10.2 2.29 10.2 9.42 10.1 6.72 3.4 11.9 9.2 5.51 10.6 10.6 5.45 9.01 7.06 3.52 10.6 5.19 4.15 6.89 11.1 12.4 14.1 10.2 11.3 9.24 10.8 10.6 2.6 11.4 13 3.27 9.69 10.1 9.91 8.8 11.8 12 10.6 8.66 6.17 3.03 10.8 0.92 9.4 8.6 9.86 5.57 13.5 2.97 0.92 12.5 7.16 5.74 1.48 1.88 3.13 8.86 9.8 10.6 5.76 12 8.41 3.31 9.66 5.71 5.19 5.69 13.8 9.42 7.62 2.29 9.17 3.18 6.49 3.62 2.6 4.43 0 8.09 5.99 6.23 6.8 7.33 11.9 10.6 12.4 9.61 10.5 7.67 12.5 9.86 1.88 9.1 8.75 9.98 9.18 0.67 9.22 5.34 6.03 7.77 10.4 4.95 11.6 9.34 0.38 6.13 12.1 8.86 2.6 6.11 5.43 0 13.4 11.3 10.1 11.1 10.2 4.95 11.8 8.62 4.22 5.34 2.67 5.86 10 1.88 0.67 10.7 9.47 13 8.59 6.95 9.92 8.06 9.18 1.13 6 8.19 8.64 12.6 9 9.01 7.44 3.62 9.56 10.9 8.49 10.1 5.34 6.9 5.08 9.17 11 8.84 5.9 4.65 9.07 6.44 10.8 4.45 7.38 7.3 8.33 9.16 14.8 6.64 6.86 11.6 0 1.13 2.2 12.9 9.14 12.4 10.5 10.8 9.68 8.84 9.58 11.2 8.71 10.1 1.63 9.73 8.3 10.3 9.08 13.5 10.3 0.92 10.2 13.3 0 7.17 10.3 8.84 10.9 4.21 9.55 9.61 4.56 6.85 9.33 8.47 10.2 5.15 11.2 4.22 6.01 11.8 10.4 7.79 3.48 3.69 0.67 8.43 10 10.9 11.9 6.73 11.3 10.7 8.17 1.32 1.86 2.86 12.9 5.2 7.73 10.5 4.77 7 0 9.35 8.54 10.1 10.5 9.57 12.8 8.61 10.3 9.98 12.9 7.8 2.6 12.4 2.29 6.59 1.48 7.62 11 9.3 10.5 10.9 10.4 8.65 10.2 8.54 6.1 8.43 8.25 10.1 8.66 8.89 2.53 9.3 8.66 11.5 8.3 9.84 8.27 7.97 9.73 8.45 11.5 10.8 8.92 7.88 10.9 9.2 9.2 8 9.12 12 9.5 10 10.7 9.96 11.6 6.08 8.82 6.29 11.4 5.92 7.97 9.99 10.2 10 6.82 8.96 10.1 3.69 8.25 9.54 10 9.13 8.02 9.97 11.6 9.63 11.6 7.46 9.34 9.59 12.1 11 10.8 10.6 8.78 8.17 6.61 4.08 5.93 9.62 5.37 7.17 9.59 9.69 12.1 8.49 10.4 11.3 8.67 9.32 11.8 11.5 7.17 9.1 8.72 7.64 9.6 8.31 12.6 10.4 9.58 11.6 8.67 9.32 8.9 10.9 9.56 10.1 8.33 9.88 10.9 8.71 9.14 11.1 9.69 10.9 11.3 4.26 8.48 10.1 7.32 9.12 10.6 11.2 8.07 8.22 8.58 8.55 8.24 12.8 9.64 12.2 8.97 9.63 6.8 11.9 0.38 10.8 12 7.54 10.4 10.5 8.08 10.1 8.85 10.1 6.11 8.1 3.23 8.23 7.35 8.23 8.05 8.08 7.21 10.4 10.1 10.5 10.3 9.81 8.18 7.97 11.4 8.39 11.3 8.03 8.38 10.3 8.08 7.06 7.53 10.3 6.27 9.82 11.2 9.8 8.49 0.38 2.92 0.67 9.19 5.28 8.77 8.54 6.28 7.98 10.8 10 8.72 10.6 0.92 11 9.2 7.41 8.29 9.76 8.09 11.5 9.96 9.28 9.18 5.72 8.53 8.79 5.25 11.7 10.1 10.3 9.35 11.4 8.44 9.08 9.77 10.5 4.05 5.09 3.66 12.4 10.1 10.1 10.1 8.54 5.29 7.78 10.4 9.93 8.45 11.5 7.62 10.3 10.2 7.12 2.2 10.4 10.9 8.68 9.39 9.64 10.7 8.43 9.8 10.1 7.21 10.6 8.68 10.8 2.92 8.31 9.97 0.92 7.99 9.96 5.38 9.14 6.94 7.16 10.5 9.48 3.03 9.17 6.37 9.32 9.76 8.23 9.64 11.2 11.7 11.7 6.09 12 4.72 9.76 7.3 7.11 5.41 11.5 9.7 8.62 7.4 10.6 9.14 10.2 10.2 9.77 1.32 11 1.13 4.84 8.71 9.81 9.72 8.96 5.8 4.49 11.4 8.18 11.1 2.67 10.4 10.6 9.57 11.7 9.43 10.6 8.29 6.6 7.51 9.6 2.2 7.75 12.8 8.5 10.9 4.28 9.21 9.37 7.54 11.1 10 12.5 9.57 9.88 9.55 9.26 10.4 8.26 11.9 9.51 8.82 8 8.29 10.5 10.8 3.66 10.7 12.1 10.7 10.1 9.4 7.18 1.76 10.9 8.72 10.1 9.67 3.08 9.15 4.81 9.12 8.67 4.69 10.8 10.1 8.8 1.76 9.37 9.07 8.06 9.86 5.93 8.85 9.48 10.2 11.4 8.96 12.1 9.33 11.5 9.3 8.89 9.84 11.6 11.8 11 10.1 10.5 10.2 8.35 10.4 9.19 5.51 11.5 11.1 8.91 9.32 9.48 7.27 9.16 11.6 7.3 7.77 7.66 6.7 10.6 9.05 8.34 10.1 6.87 9.42 9.64 8.16 10.5 8.72 8.84 6.42 10.4 5.08 0.67 9.33 9.62 7.67 3.13 8.05 9.89 10.2 9.84 9.88 7.9 10.2 9.84 9.37 8.88 4.74 12.5 10.2 10.3 9.32 10.9 9.84 11.8 10.1 12.1 11.2 11.2 11.2 6.68 11.3 11.1 11.3 8.86 10.7 10.5 9.25 11.9 7.81 0.38 8.43 9.69 11.8 10.7 7.33 11.8 8.18 11.1 8.42 8.98 10.6 11 11.5 9.23 9.2 10.7 9.86 10.4 8.71 10.8 8.34 9.23 10.4 11.1 9.27 9.23 9.06 7.46 10 10.5 7.17 10.7 9 10.8 8.78 11.1 9.26 6.86 6.11 7.61 8.6 8.78 6.05 3.69 9.88 8.66 8.85 7.72 10.2 10.4 11.7 10.3 11.3 8.15 0.38 10.2 8.91 7.24 10.3 6.82 10.4 8.45 0 10.4 3.62 8.48 10.8 11.9 9.79 10.9 0 9.92 7.12 3.88 2.1 5.96 10 4.67 11.5 9.58 10.2 3.13 9.74 9.37 9.78 10.2 11.6 4.89 1.13 9.54 9.66 0.38 10.2 9.66 8.64 9.85 4.81 10.4 12.3 8.61 8.17 7.18 7.97 8.92 11.4 9.64 9.29 8.05 8.74 9.79 8.28 9.35 7.28 9.6 9.08 0 0 9.26 6 11.3 9.18 11.7 8.55 11.1 8.63 2.2 11 11.1 10.5 7.83 12.5 10.4 9.56 12 13.8 11 7.38 11 11.4 5.32 0 11.7 7.75 7.71 10.6 13.4 11.5 7.84 5.56 4.22 4.99 3.91 12.7 7.18 13 2.6 9.3 10 8.61 9.17 9.31 11 6.08 9.31 11.4 10.4 2.8 10.8 11.8 11.3 7.2 7.6 6.16 8.03 10 10.9 8.68 8.41 8.52 9.77 9.84 8.21 10.6 8.64 10.8 9.53 9.79 6.25 10.2 11.3 10.5 11.5 10.1 10.1 0.38 7.86 10.2 11 10 11.4 8.11 0 14.6 8.97 7.09 0 6.06 3.73 7.08 8.67 8.34 10.6 10.8 12.2 9.44 10.7 9.29 8.54 8.2 11 7.74 6.08 4.36 8.61 7.18 7.13 5.32 9.87 10.7 1.32 6.97 8.92 7.41 9.5 9.87 9.11 12.2 4.96 5.92 8.45 9.98 4.82 5.96 7.84 10.5 11.1 9.65 4.8 12 10.2 2.2 11.8 9.34 6.83 11.3 10.1 10.6 11 10.9 2.8 10.7 1.32 10.3 3.79 11.8 11.7 9.45 2.12 3.08 12.6 12.3 10.3 10.2 11.2 8.55 8.58 7.7 6.42 4.58 6.23 0.92 7.66 11.5 5.95 5.89 6.94 6.26 9.43 2.1 10.8 6.6 2.6 6.12 11.5 4.24 8.56 8.79 8.91 8.44 7.73 11.1 9.28 11 9.64 8.89 9.17 11.8 6.8 9.84 9.08 4.56 3.4 8.25 6.27 8.97 1.13 8.99 1.13 1.32 7.93 4.31 4.15 8.41 4.81 10.7 8.37 11.3 0.92 9.23 9.84 10.8 4.25 8.8 1.37 8.96 8.8 7.57 10.4 9.14 10.8 10.4 12.2 9.56 1.88 9.5 5.35 9.08 9.01 9.93 12.3 10.4 7.29 3.55 11.2 10.3 12 11.6 9.03 4.62 5.01 10.1 9.08 6.71 11.2 9.81 7.39 10.4 10.1 3.36 5.17 10.2 8.84 9.31 10.1 10.4 10.6 10.4 3.48 8.14 10.5 3.18 4.89 10.4 9.25 8.84 10.6 5.88 8.79 5.6 8.18 8.95 9.44 7.14 9.67 10.6 9.95 10.3 8.89 9.01 1.48 3.23 10.5 11 11.2 9.45 6.49 9.28 8.27 0.38 10.1 9.13 11.5 11.5 7.94 10.9 10.1 8.07 10.8 7.57 8.2 10.6 7.91 9.39 7.72 10.7 8.09 9.33 8.32 9.65 8.72 11.8 9.55 6.07 11.4 9.78 9.45 9.38 8.4 2.37 8.27 6.03 8.1 9.21 7.58 10.3 8.83 6.08 9.84 8.73 9.01 9.23 2.37 8.88 7.19 8.77 9.71 7.82 8.92 8.32 10.8 9.15 11.8 7.61 11.5 10 4.74 9.8 7.61 11.1 7.57 7.45 5.03 9.63 8 0.92 8.28 11.6 7.33 7.69 9.61 1.76 9.88 4.08 8.14 11.1 10.3 6.69 3.76 9.84 6.92 6.99 9.58 10.7 4.37 5.73 6.87 6.33 11.3 9.76 2.53 8.67 10.1 10.2 8.67 10.9 2.37 10 10.4 7.7 6.76 9.58 8.69 5.98 9.7 4.92 10.2 9.24 8.56 9.2 9.3 7.76 3.94 9.54 0 11.6 10.5 4.86 8.98 10.4 8.85 3.69 6.76 4.64 10.7 3.82 6.98 2.6 10.2 7.86 8.29 12 5.92 5.43 9.03 11 7.31 9.88 8.86 12.8 8.66 8.22 7.88 10 14.2 8.43 8.91 8.61 6.39 8.35 6.65 9.06 9.17 9.79 9.25 8.65 7.17 8.31 6.51 8.78 8.46 9.16 3.36 9.16 10 7.16 8.44 11.4 9.2 7.49 9.45 8.25 10.4 6.94 2.45 5.52 0.38 8.49 7.73 1.32 0 10 8.14 10.8 10 5.07 8.81 8.71 9.54 8.26 11.5 5.56 9.8 8.27 8.3 8.69 8.47 4.35 8.2 10.5 6.83 9.03 8.57 9.14 10.6 7.62 9.65 7.65 11 1.32 11.8 9.74 7.59 10.1 8.6 7.24 9.82 7.45 8.17 8.32 8.24 7.7 9.49 9.18 10.1 8.21 10.5 7.46 10.2 9.61 10.9 8.62 9.74 9.18 8.11 8.92 8.44 4.69 8.3 8.09 4.83 10.2 9.51 8.27 10.6 0.67 12.6 8.86 10.9 11.1 9.76 10.8 8.22 10.6 10.3 7.01 10.4 7.36 7 7.74 11.4 10.2 11.4 10.3 7.76 9.59 9.73 8.08 6.58 8.36 11.4 10 0 8 10.8 10.2 11.5 6.47 7.54 2.8 10.3 7.62 9.57 9.46 9.79 8.24 8.15 9.74 7.95 9.32 9.66 6.74 6.72 12.1 9 9.39 7.4 10.1 7.79 9.44 2.37 9.96 8.37 7.17 8 10.4 10.8 7.62 11.2 9.72 11.7 1.76 9.56 7.18 8.37 11.6 7.39 10.1 5.14 9.07 4.96 10.1 11.9 8.49 8.82 10.8 8.04 6.93 4.86 11.6 3.62 12.2 12.8 11.3 8.18 11.2 9.09 10.8 9.07 8.31 9.31 8.41 10.3 11.7 8.41 9.26 7.14 8.51 8.46 9.15 9.19 6.85 9.94 0.38 5.88 10.9 6.64 9.52 3.52 6.03 7.72 9.59 9.62 9.37 8.7 7.08 7.83 9.59 6.33 10.3 8.25 9.52 9.22 10.1 11.6 10 9.63 6.9 10.9 9.08 8.81 8.78 4.15 9.1 10.7 7.15 3.56 2.45 7.35 3.03 9.87 3.76 11.3 3.31 6.46 8.9 10.2 7.09 10 10.7 6.82 9.82 10.4 11.2 10.3 5.48 2.97 7.66 1.32 8.53 8.33 9.15 8.99 7.45 11.2 3.99 10.3 7.92 8.5 7.86 4.67 8.47 6.38 11.3 9.17 10 7.92 9.98 8.14 8.18 10 8.97 10.6 8.09 9.54 2.6 8.81 11.2 6.69 9.32 0.38 9.33 8.4 7.58 8.16 6.46 7.12 9.99 11 8.38 9.35 10.2 11.8 8.3 9.81 10 8.83 8.56 10.6 5.43 7.86 8.69 10.5 10.9 9.97 11.3 9.07 9.48 11.5 10.6 11 8.89 9.44 6.62 9.94 9.46 8.79 8.26 8.9 9.69 10.7 5.59 8.59 10.7 8.3 8.41 12.4 7.7 9.16 10.7 9.8 6.05 10 10.4 8.84 9.76 2.92 10.6 8.63 9.56 8.58 0.38 9.25 9.32 9.07 8.24 4.93 9.04 8.82 10.1 6.57 9.27 10 9.39 10.7 8.53 10.8 4.45 11 7.22 8.79 5.86 11.3 9.82 8.25 9.41 9.37 10.1 2.86 8.91 6.89 8.27 9.63 11.5 8.21 8.82 8.92 9.03 9.08 5.45 9.84 10.7 9.54 7.14 8.48 12 12.7 8 6.08 9.49 8.6 5.31 8.8 11.7 13 9.37 9.69 9.22 9.12 9.03 8.81 10 10.1 10.2 0.38 8.87 6.51 8.39 9.48 4.7 9.65 9.56 9.8 8.3 10.9 3.44 10.8 9.24 10.6 8.08 9.49 8 10.9 8.31 9.32 2.67 6.12 8.87 7.01 6.69 0.38 8.77 11.3 2.6 8.8 9.49 10.7 10.4 7.79 7.54 7.48 5.68 7.57 8.71 9.07 0 8.97 9.41 4.17 9 6.04 8.81 11 8.55 10.5 9.12 9.43 7.2 8.55 7.29 10.6 8.55 8.6 9.27 8.97 4.67 8.16 7.84 10.7 7.95 10.2 9.25 5.59 2.86 7.39 8.36 7.92 9.94 8.97 10.8 3.88 5.64 9.6 11 9.59 7.89 10.1 9.79 10.9 9.24 7.03 8.18 9.29 8.91 3.4 3.59 9.52 12.6 9.85 5.87 9.05 3.52 10.1 9.64 10.2 9.09 10.2 7.29 8.97 9.59 4.02 7.14 12.8 11.5 5.89 9.37 2.97 8.03 8.44 9.25 5.66 0.38 0 7.26 5.07 10.7 9.32 6.61 0 9.73 7.4 8.8 12.1 10.2 10.8 8.16 3.73 9.67 11.6 9.98 9.48 8.56 8.09 5.15 7.34 11.1 6.43 2.6 8.54 5.2 7.05 0.38 5.27 1.32 11.3 6.26 4.86 11.5 11 7.39 4.2 0.38 7.06 10.6 2.46 7.68 11.2 0.67 0.67 6.62 9.21 9.46 11.6 10.4 10.4 5.79 0 9.06 6.36 10.2 8.91 12 1.32 10.8 8.73 8.34 5.71 12.1 9.73 7.77 9.69 8.97 10.1 9.09 7.82 1.76 9.1 8.6 9.61 8.44 8.49 7.59 11 6.85 8.52 11.5 8.95 3.62 9.13 10.4 9.12 7.47 8.86 9.05 10.3 10.5 9.14 9.65 11.2 9.44 10 11.4 7.71 10.7 2.29 6.35 8.56 8.54 9.17 7.69 10.1 10.3 7.37 8.78 8.41 11.1 8.56 9.26 9.3 9.13 8.72 11.7 8.53 9.68 11 9.97 10.5 11.1 9.9 5.98 10.9 11.2 10.7 9.28 7.45 9.2 10.2 12.3 9.68 7.5 9.64 8.95 8.96 9.26 9.52 8.67 10.3 7.51 7.26 9.46 10.5 11 9.58 10.1 9.96 3.44 11.7 11.5 9.56 5.92 11 9.84 9.68 8.53 13 6.54 11.4 10.5 9.12 8.62 8.99 12 9.82 10.6 8.72 9.39 7.97 6.46 5.73 7.37 8.07 9.4 10.1 8.91 10 6.55 6.87 9.87 9 8.07 4.89 9.36 12.3 8.77 9.03 8.52 9.65 10.7 10.2 11.1 9.89 13.2 9.96 9.64 10.1 9.06 9.4 10.8 12.5 10.1 9.49 9.52 7.9 10.5 0.38 10.8 9.87 7.98 7.77 9.62 9.12 8.25 9.04 10.2 6.26 9.22 9.76 10.4 10.7 9.69 9.72 7.93 8.89 9.28 9.49 8.4 9.83 7.58 7.43 5.47 9.68 9.39 8.11 8.96 7.1 8.28 7.12 9.1 9.63 8.39 7.42 7.22 8.41 6.89 7.76 9.9 6.04 8.39 1.99 9.17 10.1 2.92 9.05 8.75 4.02 8.76 1.63 7.2 7.83 10.1 2.45 5.54 9.94 8.94 2.37 10.1 11.4 1.13 10 8.11 7.6 11 10.8 8.2 9.43 10.1 11.4 10.4 8.23 8.93 8.36 9.27 5.63 11.6 6.61 8.82 11.1 8.64 8.69 9.7 11.9 8.53 9.24 11.4 4.5 10.4 6.81 9.06 7.32 11.2 2.29 10.2 9.52 8.43 10 9.31 1.13 7.98 4.75 11.4 10.7 9.45 5.86 5.15 10.7 3.88 4.8 1.13 12.3 7.76 8.68 8.96 10.3 11.5 9.42 8.55 6.38 9.06 9.91 11.8 5.94 9.39 8.07 13.6 9.13 9.94 9.27 9.71 9.04 3.59 12.5 8.86 4.17 9.21 1.48 9.37 3.59 10.8 9.98 8.23 7.27 10.1 10.2 12 1.99 9.65 10.9 11.6 11.6 10.9 10.5 7.55 9.55 11.1 8.65 8.37 7.41 2.2 9.17 0.92 11.4 9.69 10.4 3.55 10.9 7.86 10.4 11.8 9.23 9.94 10.1 2.1 7.81 8.69 6.3 10.6 3.55 2.6 5.14 9 4.17 8.44 3.66 6.3 3.13 3.55 3.66 5.47 3.66 5.14 9.89 4.43 4.05 1.63 3.76 3.03 10.3 2.29 4.87 6.09 3.96 4.58 3.88 7.08 9.25 4.84 5.36 12.2 6.94 6.87 8.39 10 7.35 3.13 8.64 1.32 8.15 4.72 1.48 10.3 10.1 7.6 9.39 1.32 8.06 12.1 0.38 3.4 9.96 7.06 10.8 0.92 6.24 10.2 4.19 10.2 10.3 7.05 10.6 9.94 5.51 9.36 10 8.82 9.22 10.2 11.9 7.75 8.98 0.67 3.14 10.4 9.7 10.4 10.9 11 8.27 7.94 6.9 11.8 7.37 0 7.81 8.85 4.8 8.38 6.79 4.67 10.4 4.43 10.5 6.03 4.02 15.5 7.83 5.6 6.5 10.1 4.95 9.32 10.4 10.8 9.64 7.69 0 10.1 9.27 10.4 9.7 8.2 5.59 2.74 9.33 3.27 7.76 3.99 9.54 7.11 10.3 9.69 16.3 7.83 3.55 11.4 8.62 11.8 10 11.2 10.2 9.25 10.7 8.27 11.8 9.81 10.3 8.39 2.67 11.5 11.4 12.7 11.7 10.8 10.7 11.3 12.2 7.92 8.77 11.9 11.4 8.98 10.6 7.47 5.67 11.8 10.1 7.8 9.66 9.68 10.6 7.2 9.69 10.9 12.2 5.95 7.38 9.12 9.15 8.45 6.66 8.12 13.2 8.36 9.86 8.84 7.93 11.1 10.2 9.76 8.52 11.5 9.99 8.9 10.9 5.14 10.5 9.68 9.87 8.35 10.4 8.66 9.24 7.72 10.4 9.6 10.7 10.9 10.3 9.94 5.43 8.16 10.9 9.7 11.4 1.13 11 3.55 9.59 5.34 10.1 6.27 9.93 7.05 4.33 9.72 7.78 5.05 8.64 9.55 5.98 8.18 9.63 9.98 9.63 9.13 11.3 11.2 10.2 10.7 13.7 9.47 8.12 2.2 8.17 7.98 7.31 12.4 8.47 11.3 3.73 9.12 10.5 8.47 12.1 8.81 8.89 2.53 9.65 7.91 9.53 10.6 8.69 8.92 11.8 9.89 3.96 9.98 10.6 0 10.4 11.1 12.7 8.75 10.1 7.31 7.75 11.5 6.4 10.9 0.67 10.6 3.69 7.54 8.09 9.6 12.2 2.29 8.82 7.98 10.1 3.55 7.18 8.53 9.49 8.53 10.8 8.41 8.3 6.47 10 5.95 10.8 9.43 8.19 1.13 7.88 9.94 9.98 11.2 10.4 6.83 11.5 3.59 11.3 11.5 12.4 7.55 9.78 8.89 10.3 7.86 10.3 6.47 12.3 10.2 7.29 9.2 2.1 10.5 5.17 9.09 3.73 6.99 7.11 10.2 10.2 8.13 11.3 11.1 10.9 10.2 10.6 8.61 8.53 8.65 9.58 10.3 7.24 10.8 5.39 10 10.9 11.7 3.08 9.74 7.92 9.52 10.3 11.2 7.95 7.05 11.3 8.35 9.71 9.04 7.87 8.74 8.71 6.03 10 8.47 11.4 10.9 8.33 9.97 8.72 8.76 9.68 6.1 7.4 12.6 6.72 9.9 1.63 3.23 10.5 10.6 7.36 2.6 5.81 9.79 10.6 5.6 8.23 10.7 8.71 6.34 7.71 1.32 7.6 7.43 4.17 6.01 10.4 10.3 6.83 6.54 2.53 8.49 8.86 0 5.3 10.2 8.79 0.92 6.99 7.62 9.71 9.32 11.7 7.5 10.3 8.11 8.66 7.27 8.55 3.62 5.13 9.57 11.3 11 8.39 4.1 4.28 6.01 0.92 9.8 8.35 8.01 10.2 1.32 10.1 9.53 8.23 7.24 6.63 8.83 9.76 1.88 8.5 10.1 10.9 2.67 10.4 10.9 7.45 8.23 4.74 6.72 9.57 9.56 10.5 3.85 2.53 8.91 11.2 7.92 5.66 11.1 9.65 6.81 1.99 9.01 0.38 9.69 3.18 4.28 4.47 9.44 9.42 11.1 6.95 8.36 9.57 11 7.78 10.4 10.3 11.5 6.23 10.2 6.02 6.83 5.43 2.67 1.63 0.67 9.56 10.1 7.76 10.8 11.3 9.38 7.88 7.15 4.15 6.72 8.98 11.2 1.13 9.21 9.22 7.97 6.64 5.82 5.29 10.7 7.06 9.11 10.5 0 9.2 6.17 8.39 6.75 9.66 7.78 9.82 5.57 7.47 2.29 7.64 10.8 3.85 14.2 8.8 4.67 9.05 5.53 2.1 4.43 6.54 1.63 8.31 11.8 1.76 11.4 11.6 9.72 9.41 9.54 9.42 10.2 10.2 5.43 8.79 4.35 4.22 11.2 9.3 4.69 8.11 11.6 6.31 9.57 10.2 11.3 8.77 8.16 6.72 8.55 4.22 6.99 10.1 9.52 8.29 9.15 7.74 7.66 4.41 13.5 8.46 4.72 10.8 8.11 5.43 6.21 3.23 12 9.64 10.1 11.4 9.36 8.48 6.81 7.44 10.7 7.64 9.39 10.1 10.5 9.83 7.32 9.23 10.4 8.49 8.09 8.86 12.6 6.47 7.32 8.46 9.98 10.3 4.92 6.03 6.5 2.53 7.55 4.24 9.93 5.52 7.08 9.36 8.66 9.97 7.34 10.5 6.13 1.13 10.5 8.43 8.24 8.44 10.6 8.82 9.2 8.46 9.59 9.09 5.43 7.09 6.34 5.53 6.24 8.07 3.62 9.73 10.6 7.2 5.43 8.71 10.7 8.52 4.51 4.26 6.19 3.55 9.39 7.39 5.4 9.11 7.14 11.1 8.13 9.47 9.03 9.49 9.58 10.1 9.73 10.2 5.17 9.87 11.2 11.4 10.2 10.5 8.57 1.63 4.93 9.49 9.33 9.67 1.76 8.47 3.18 5.98 8.07 7.85 10.9 9.79 5.22 3.27 7.47 10.3 5.73 8.04 8.89 13.7 6.9 2.45 10.8 11.9 10 2.6 5.41 2.92 6.61 7.12 1.99 10.4 8.45 8.93 9.99 8.44 7.94 10.8 7.74 9.92 11.4 9.57 10.4 10.5 11.8 8.3 8.25 10.6 11 10.8 8.33 7.71 9.13 11.2 7.69 10.3 13 10.9 11.2 11.5 11.4 3.23 10.5 10.3 9.68 7.9 10.9 10.4 9.27 7.22 10.1 8.81 10.9 9.49 9.84 9.71 7.21 6.63 7.2 6.08 6.06 9.87 8.42 7.93 6.85 8.22 10.6 10.6 10.5 9.36 3.36 9.89 9.15 9.3 10.9 10.8 10.2 10.7 10.2 3.91 9.82 2.2 0 11.7 8.98 8.67 11.6 10.9 10.8 7.31 1.99 10.3 10.5 9.56 10.9 9.33 11.4 9.74 11.6 9.86 4.31 9.37 11 9.7 11.4 12.5 9.58 9.92 8.71 8.62 13.2 12.5 12.2 9.28 5.37 6.36 5.12 8.06 7.03 11.2 2.86 10.3 10.4 10.3 11.3 11.3 13 10.3 11.1 12.9 9.98 10.8 8.2 9 9.29 9.67 10.1 0.92 9.42 7.26 9.54 10 11.7 9.51 8.41 8.75 6.56 4.05 5.09 8.43 7.68 7.99 10.3 7.55 1.76 10.2 7.54 11.9 11.2 9.83 9.48 10.5 9.97 11.8 8.53 8.49 2.45 9.09 9.28 9.62 2.29 8.67 11.9 9.02 2.37 11.2 7.07 10.5 11.8 0.67 6.02 11 9.77 7.92 7.07 9.68 0.38 3.54 2.44 8.86 6.36 6.3 0.38 11.9 11.2 1.13 5.26 7.41 1.88 10.9 9.37 6.44 13.1 11.3 10.2 11.3 11.6 9.94 7.49 6.96 10.5 9.36 10.2 10.3 8.83 9.37 9.08 10.1 11 0.45 8.34 10.3 6.45 7.01 1.32 12.2 5.83 11 10.2 10.1 16.5 12.2 8.7 1.13 9.98 5.52 1.89 11.1 1.48 9.43 9.1 8.7 2.8 10.8 7.1 9.89 11.3 8.76 11.3 11.2 5.81 1.48 8.54 8.73 2.8 9.69 8.54 9.68 5.1 6.86 9.29 0.67 10.2 2.8 0.92 8.94 12.3 5.71 10.3 9.69 11.1 0 9.63 8.14 9.67 7.52 9.37 8.56 8.56 8.95 9.19 2.74 9.68 7.78 12.2 9.74 12 6.98 10.7 9.21 10.5 8.95 9.28 10.3 9.83 0.92 8.15 10.5 6.25 6.28 10.6 5.34 10 11.5 1.63 1.13 5.55 9.09 3.79 11.2 9.93 9.12 10.1 6.72 9.66 3.23 10.7 9.47 7.13 9.13 1.48 10.2 3.59 7.62 8.29 6.35 0.67 10.9 9.7 8.3 9.33 15.4 15.4 14.9 13.8 11.3 10.4 13.5 5.14 14.2 11.4 14.8 14.1 13.2 14.9 13.9 12.3 13.6 12.2 14.2 3.13 12.7 11.7 9.89 13.4 13.1 12.7 15.2 13.4 13.6 13.9 14 14.2 12.7 13.7 11.4 13.5 13.6 13.6 8.99 9.07 13.4 7.9 15.4 15.4 13.8 12.1 10.2 13 13.2 13.9 15.1 11.9 15.4 3.08 1.63 4.05 6.46 6.53 13.3 1.76 1.99 15.2 10.5 9.61 10 9.91 10.5 12.5 14.9 14 13.4 13.9 14.9 13.8 13.8 12.7 13.6 13.5 14.7 10.7 15.3 14.1 14.2 13.8 13.3 13.9 13.7 9.71 6.35 13.4 4.67 12.9 3.31 9.2 12.8 9.66 10.4 9.7 11.2 0 7.35 10.7 11.6 7.76 6.92 11 9.91 10 6.43 6.33 7.75 1.63 14 11.1 2.92 2.29 10.1 0 11.6 6.83 8.35 13.1 13.6 1.32 11.9 6.61 5.41 12.6 10.9 11.6 2.56 4.77 11.3 11.4 8.44 8.47 12.1 8.52 8.11 11.9 9.3 8.86 6.42 9.59 10 9.62 11.6 5.26 8.1 7.89 6.42 1.76 1.76 1.48 4.39 12.9 5.46 3.55 1.76 3.76 6.82 5.81 7.07 6.51 8.91 11.2 1.99 2.6 9.69 6.22 4.99 0.67 6.86 11.3 5.01 6.08 6.33 10.3 6.35 4.33 2.2 9.88 0.67 1.13 10.2 5.43 3.23 9.32 4.22 12 7.59 3.08 10.5 11.7 12.3 10.7 7.94 10 1.88 8.65 8.84 11.3 9.18 9.36 11.3 8.66 4.93 8.93 8.49 6.13 8.22 11 9.71 9.46 8.03 7.62 11.3 7.58 4.44 7.7 10.1 10.3 10.9 6.85 10.8 5.52 5.58 9.37 8.59 9.18 9.03 7.37 9.41 6.13 10.1 7.7 9.42 9.25 7.77 11.5 7.44 10.3 2.2 9.3 3.23 8.03 9.2 12.6 8.36 2.37 10.6 8.36 8.93 7.39 5.68 9.49 9.38 8.04 8.87 0.67 12.6 4.62 6.09 2.7 7.69 4.28 6.49 5.36 10.7 3.76 10.2 7.41 0.38 6.05 7.87 3.82 8.4 5.49 9.12 9.2 4.33 6.28 10.5 11.1 7.87 11.1 9.37 8.66 12.4 8.99 9.7 8.38 7.58 10.1 6.13 3.4 8.26 2.1 9.53 5.65 11 1.32 9.32 1.13 10.7 9.31 4.26 6.78 6.26 7.65 11 9.57 8.4 10.5 5.8 8.75 4.69 7.29 5.87 7.09 6.49 9.58 12.2 1.48 8.46 7.07 9.27 10.6 12.7 9.97 9.87 10.5 11.2 8.14 10.1 5.92 11.6 10.9 9.15 10.5 4.17 11.6 9.72 9.16 9.49 1.76 0.38 7.61 0 12.5 1.99 12.5 12.5 3.18 7.26 4.87 8.54 8.04 8.45 9.13 8.4 6.83 11.2 1.48 2.86 1.76 3.66 11.2 3.31 1.13 11.3 9.6 8.15 10.6 11.3 8.12 4.99 10.8 6.96 6.05 10.5 9.27 9.22 10.2 6.6 7.75 8.28 6.65 0.92 3.31 5.42 11.6 10.5 9.41 1.32 8.89 9.32 3.18 2.45 9.5 6.26 7.91 1.32 0.67 9.48 7.44 6.09 7.88 6.18 7.77 2.74 0 1.63 6.69 7.96 2.1 10.6 9 1.32 9.95 7.67 8.01 7.26 5.56 3.69 7.62 2.8 9.27 9.25 9.31 7.22 0 5.48 2.09 8.27 4.95 9.49 9.49 1.99 7.73 8.94 10.5 10.8 10.1 10.3 9.12 9.52 9.86 9.84 9.15 10 10.3 9.21 2.74 6.91 0.38 0.67 3.36 7.42 4.75 5 9.94 3.55 5.69 2.37 9.65 4.1 7.76 7.68 0.67 11 2.92 5.25 0.38 7.67 9.82 6.62 1.76 10.5 10.5 1.13 6.42 2.6 11 9.02 7.65 2.53 3.54 1.99 2.53 11.4 3.66 6.11 5.93 2.86 0.67 6.84 7.83 8.15 4.7 3.94 8.02 8.73 10.9 0.67 10.1 2.1 0.92 1.14 9.75 1.63 6.29 3.23 12.6 1.32 9.86 4.77 5.6 8.43 0 1.32 8.54 9.4 9.82 6.3 9.84 1.48 0 2.53 0.38 10.9 3.48 8.97 6 6.01 7.07 9.66 10.7 13.3 4.55 1.76 9.91 11 2.8 6.87 9.98 9.93 9.5 11.5 10.7 9.67 9.32 3.08 9.15 10.7 10.4 7.32 10.8 10.2 9.96 5.37 9.12 11.4 9.35 8.61 10.5 8.02 10.6 11.4 9.25 9.05 7.33 8.96 10.3 7.53 9.57 10.2 11.2 10.5 8.64 10.2 7.71 3.59 9.22 11.7 8.95 9.1 7.98 10.3 8.05 4.83 10.6 12.3 6.77 4.8 10.8 10.2 2.74 10.4 7.38 3.03 10.3 8.73 11.6 10.6 6.6 8.2 9.7 8.07 10.6 1.32 10.3 9.53 8.87 5.83 9.84 10.5 9.21 11.8 11.5 8.18 9.18 9 7.77 7.68 8.75 10.5 7.73 4.51 4.49 6.92 7.86 7.79 9.01 3.66 10.1 9.12 9.72 6.54 8.66 1.48 9.84 8.74 8.48 7.85 10.8 8.62 3.85 9.82 6.49 11.5 7.15 7.82 10.9 9.94 10.4 8.07 10.8 10.3 9.26 9.27 10.5 11.1 9.35 8.75 11.1 8.58 8.45 11.2 10.3 10.3 2.45 4.45 11.4 10.3 10.9 8.23 8.24 9.28 3.99 9.82 7.27 9.44 4.43 5.42 7.84 4.87 10.8 8.23 9.72 6.66 8.12 5.19 5.28 6.03 8.7 7.37 8.56 9.08 9.38 10.7 7.73 9.84 12 10.4 0.92 11.7 12.7 9.01 9.87 10.6 4.67 12.4 9.25 11.9 10.9 11.3 2.67 9.68 3.36 7.71 2.02 3.96 12.1 0 12.4 10.9 5.48 6.21 8.83 9.05 9.37 7.7 6.46 8.99 8.99 9.11 8.62 11.8 9.96 0.88 2.29 8.14 0.38 1.13 2.6 0 6.82 0.38 0.67 5.28 8.37 0.92 6.27 4.78 5.22 0 0 6.54 2.53 9.73 7.6 2.37 8.03 4.19 2.2 3.27 7.42 13 9.22 6.32 10.3 4.92 7.2 5.86 10.3 1.48 10.5 6.03 5.96 1.88 2.1 9.5 4.24 10.1 5.22 5 5.62 0.38 10.6 6.69 0.38 3.27 0.67 9.42 7.87 4.96 7.24 1.13 3.96 8.58 0.36 6.55 2.8 7.78 0.38 1.63 9.34 6.38 6.49 4.47 0.92 3.73 0.92 9.33 1.88 9.13 2.6 4.28 8.5 2.86 6.57 10.6 7.08 7.49 1.48 2.1 10 10 10.2 10.3 7.54 4.47 2.53 4.89 5.57 8.71 4.83 7.9 9.84 9.56 9.14 8.23 12 10.6 12.3 4.28 8.13 9.97 10.4 9.12 7.77 8.9 8.8 8.69 8.69 4.99 7.87 3.03 11.3 7.81 11 11.3 10.9 9.03 5.19 9.36 8.39 2.2 7.8 1.48 7.69 10 8.78 10.4 9.17 12 7.68 7.75 10.2 10.7 0 9.53 9.28 9.1 9.31 9.48 11.2 11.9 11.8 10.2 8.37 2.29 8.08 9.4 9.9 7.27 9.18 6.03 5.79 12.9 11.8 10.6 10.3 12.5 10.6 9.76 11 9.88 11.6 10.6 11.2 10.2 9.66 9.21 9.48 9.29 7.71 11.1 9.7 8.43 9.49 0.38 12.1 2.37 15.1 7.85 9.63 10.9 11.8 10.1 11.1 9.96 9.4 11.6 9.24 5.13 12.4 11.9 2.97 11.5 10.8 9.29 10.7 11 7.36 9.85 7.93 11.4 4.81 14.2 9.42 10.5 10.5 8.84 8.18 2.29 12.2 8.4 7.71 14.2 8.87 8.48 12.1 2.37 5.66 12.7 10.8 11.7 10.8 7.86 2.8 10.7 8.65 12.6 12.2 10.8 11.9 13 12.2 8.86 10.2 6.85 11.4 11.5 11.1 10.7 12.2 8.26 10.4 11.5 10.5 9.98 11.4 13.2 11.9 12.6 12.1 7.68 5.17 1.48 10.2 10.3 12.7 12.9 3.55 12.8 3.36 12.4 10.6 11.8 5.78 10 10.1 3.08 1.88 2.1 1.13 1.13 4.05 2.29 2.79 11 3.52 2.2 0.92 7 11.7 11.4 9.34 8.9 0.38 4.22 10.3 8.64 8.55 9.13 9.76 10.4 4.84 4.41 10.5 10.2 1.13 3.31 8.99 7.05 10.4 9.95 9.92 7.93 11.2 9.75 9.15 8.46 10.4 4.33 12.8 4.19 8.11 11 11.1 6.8 10.6 9.16 9.01 8.12 12.5 9.39 10 9.67 10.5 11.5 7.78 9.62 10.9 1.88 10.6 3.66 5.34 5.62 11.5 2.97 7.93 0.67 3.82 0 12 8.9 4.1 9.19 7.01 9.77 9.87 9.51 8.44 11.7 7.73 10.9 11.4 9.08 9.85 9.01 9.71 8.57 7.52 10 4.77 1.13 12.1 12.6 12.5 11.7 12.7 11.9 8.37 10.7 2.37 3.18 10 10.5 9.38 12.2 10 10.9 9.18 7.23 5.03 6.03 6.11 8.89 10.8 8.15 9.82 2.53 4.9 7.77 10.2 2.67 0.38 11.4 3.21 11 8.87 10.4 4.49 10.7 7.25 9.08 7.73 8.64 10.3 3.59 11.4 8.61 10.7 11.6 10.6 9.94 2.37 9.4 11.6 8.19 13 1.88 0.38 10.1 11 8.76 6.75 10.3 10.9 9.15 6.85 12.5 9.05 7.72 9.03 5.67 2.86 9.12 13.4 10.5 6.93 9.43 2.67 8.97 7.89 4.49 10.6 6.01 8.89 10.3 8.67 8.73 6.02 11 11.9 8.42 10.7 4.39 7.4 9.52 13.6 3.85 8.47 10.1 7.96 5.68 8.64 4.26 11.7 9.67 0 10.1 10.8 9.76 10.4 3.48 11.2 0.67 8.75 12.7 12.2 9.63 12.8 7.69 2.67 11.5 2.6 8.08 7.9 4.02 11.2 10.3 10 10.2 8.26 8.98 12.8 12.2 12.3 3.82 11.2 10.4 11.5 8.92 13.5 2.74 10.5 8.14 10.6 7.81 2.67 13 10.7 7.88 9.4 5.57 8.56 16.2 12 9.8 5.25 8.43 9.61 7.99 7.29 10.1 9.86 8.96 10.9 14.6 12.3 7.6 6.23 7.64 2.29 9.42 12.2 11.1 12.6 8.04 11.7 10.6 2.45 4.07 0.38 3.18 12.3 3.08 10.4 7.42 12.7 11.3 6.49 2.8 11.7 11.6 8.8 11.4 10.1 12.3 13.1 3.55 7.75 10.8 9.5 11.9 1.63 13.7 11.3 11.2 10.3 13.7 13.2 9.29 9.32 12.1 7.4 14.6 0.49 16.4 7.76 9.9 14.2 10.6 9.84 8.12 10.1 7.22 8.96 15.1 0.38 13.9 9.81 11.4 5.95 2.86 6.43 1.13 2.97 5.51 10.6 13 0.38 3.4 4.75 11.4 8.54 10.6 4.69 10.3 1.32 10.8 11.4 6.51 8.12 5.26 9.32 10.4 9.43 10.3 11 9.19 4.8 7.95 8.72 6.75 8.06 9.39 7.41 5.32 12.3 8.08 7.52 9.09 10.3 8.84 3.88 5.5 4.24 5.27 7.17 3.27 8.34 4.2 2.86 6.57 7.37 10.1 3.91 7.01 0 1.88 5.56 12.4 6.25 5.86 0 7.48 8.05 8.39 0.38 7.71 1.13 6.47 7.6 5.13 3.99 5.13 9.31 6.03 1.32 11.7 4.83 9.21 1.32 4.83 1.76 1.88 9.01 6.83 5.28 9.34 1.99 1.88 10 5.07 9.95 9.88 4.68 3.85 6.38 1.14 3.85 6.24 6.45 6.08 7.42 0.92 6.87 8.07 0.38 9.57 5.68 3.4 0.67 7.66 12.1 7.84 8.6 8.64 1.32 5.05 11.2 6.27 7.31 0.67 9.26 11 2.92 2.2 4.75 10.1 7.09 7.31 4.49 4.07 1.76 6.87 8.47 8.05 6.74 0.38 7.6 6.1 7.41 9.79 8.37 0.92 11.3 3.96 11.3 1.32 13.8 1.76 13.8 14.6 13.4 0.67 9.65 10.4 9.09 7.96 10 11.9 10.2 8.7 9.66 11 9.85 11.3 3.99 10.7 11.1 11.5 10.7 10.8 9.51 10.4 11.4 11.6 10.3 7.91 1.99 2.67 10.9 5.52 9.93 5.77 10.2 7.06 10.2 11.4 8.79 10.5 10.1 9.2 10.5 9.89 10.3 10 0 11.3 2.29 12.2 12.1 12 10.4 12 9.85 9.18 10.6 11 11.3 2.37 10.6 10.4 8.78 10.2 12.2 10.8 8.38 10.2 11.1 9.57 10.7 13.4 12.2 10.1 12.2 9.61 11.4 10.3 6.7 6.92 9.77 0.38 12.4 14.2 5.62 3.19 11.1 6.88 5.61 7.75 7.92 9.37 3.88 3.31 6.86 11.2 11.4 8.87 10.4 12.3 10.7 8.89 8.1 8.9 8.72 8.96 10.8 9.34 8.71 1.32 6.6 5.9 2.37 0 5.8 0.67 3.31 3.73 3.18 5.94 1.13 8.82 7.81 2.53 10.8 3.36 2.86 12.7 6.47 7.51 9.73 5.65 9.87 4.41 11.9 9.35 8.02 8.23 6.34 9.92 12.4 8.09 10.1 9.35 12.8 8.69 12.8 12.4 11.6 14.5 7.72 12.4 11 4.24 12.2 8.38 9.76 9.18 7.09 9.18 9.6 4.67 8.17 5.99 12.7 6.6 9.17 6.58 6.82 6.6 5.77 7.36 3.62 6.24 6.7 9.18 8.83 6.61 10.6 7.66 9.02 6.5 9.38 8.89 8.7 7.1 9.84 8.55 7.39 7.31 7.8 6.21 6.97 6.99 7.7 3.93 0 3.48 5.66 8.55 8.77 8.02 9.54 6.15 1.58 9.02 2.1 6.53 6.89 7.17 0 9.56 3.66 7.25 4.82 11.7 7.4 0.92 3.88 3.8 1.4 1.13 3.44 9.47 8.85 5.44 8.45 6.6 6.64 6.61 5.83 7.04 8.65 7.2 5.2 9.23 7.63 7.96 2.45 10.5 11.9 9.66 9.14 11.5 4.47 6.01 1.99 10.4 7.6 10.8 8.52 6.21 5.95 6.35 2.67 6.86 8.88 7.4 10.4 0 7.1 8.46 8.01 7.07 7.37 6.2 9.16 7.56 8.09 5.39 8.85 11.2 3.85 2.74 9.45 1.32 2.92 11.2 11.4 4.28 6.01 4.67 6.77 2.29 6.98 6.04 4.41 5.31 7.24 8.78 8.13 1.48 0.92 6.61 7.6 7 5.81 12.3 8.77 9.95 12.4 4.41 11.1 8.95 13.2 4.23 13.2 8.39 12.5 7.35 4.83 10.2 10.4 8.07 9.04 10.7 9.8 11.8 4.55 4.35 2.86 7.94 11.6 8.43 4.78 9.35 11 10.9 7.14 9.74 10.7 11.2 12.7 8.8 5.03 9.96 0.67 8.67 9.68 5.96 4.92 8.99 10.8 9.89 7.44 9.54 1.76 7.01 12 11.8 8.59 11.3 11.3 8.38 9.66 9.52 10.5 10.9 9.32 9.01 2.1 10.3 11.9 8.01 9.74 8.06 10.3 9.04 1.48 13 9.85 8.28 7.88 9.55 10.7 10 9.73 10.9 6.62 8.25 12.1 6.31 9.96 6.99 9.63 11 9.65 9.69 7.72 10.2 9.03 10.6 9.38 8.45 6.94 10.1 6.46 11.6 6.92 9.2 10.6 7.07 10.3 9.45 10.4 10.9 10.2 9.69 6.22 9.18 8.54 6.6 9.44 7.43 9.47 9.83 8.71 7.4 9.93 10.9 10.5 11.9 8.9 7.87 9.59 8.72 11.4 12.3 9.16 9.45 10.2 11.9 9.57 7.34 5.42 6.22 5.42 2.86 4.5 7.66 10 8.25 9.66 10.2 8.83 13.1 7.88 6.85 0.92 8.06 10.5 12.5 8.56 10.4 8.73 8.17 10.9 8.56 8 8.44 8.03 8.98 11.4 8.93 10.3 2.37 10.8 12 7.4 10.1 12 9.85 6.25 7.51 1.4 10 0.67 0.67 3.73 10.8 5.99 10.2 8.7 5.43 2.53 3.4 3.79 7.92 0.67 9.7 7.2 3.23 4.15 8.12 11.5 9.17 8.24 2.92 8.97 6.27 10.6 5.69 2.1 5.75 2 9.9 8.11 7 1.88 9.72 11.3 10.4 8.54 8.92 10.4 10.8 5.68 6.48 9.94 10.6 11 11.8 8.94 9.6 9.28 7.76 7.32 8.54 10.9 9.17 10.9 7.77 3.52 6.87 6.81 7.14 6.94 5.49 6.21 9.16 10.2 4.02 9.86 0.67 7.44 9.79 6.9 6.8 7.87 9.5 6.84 6.21 7.88 6.48 8.59 7.88 9.62 10 7.22 9.1 10.6 4.69 8.96 9.78 8.52 9.07 9.74 9.31 10.2 7.97 10.2 3.18 8.56 8.76 7.86 8.19 8.12 7.6 9.99 9.17 9.05 4.91 7.36 7.77 9.25 9.02 10.6 7.24 5.2 8.54 8.93 10.3 8.5 8.53 8.86 6.94 9.34 7.13 8.1 9.38 9 10 8.03 6.41 6.24 9.02 9.68 9.52 7.75 8.16 8.69 7.53 12.1 9.35 10.8 8.36 8.22 8.86 10.5 10.3 11.7 10.4 10.7 2.74 9.1 10.9 6.27 8.4 8.29 6.33 4.24 8.99 8.42 7.67 9.04 6.76 8.01 7.72 3.08 8.2 7.2 7.45 10.8 0 10.5 3.03 11.5 8.8 8.1 10.3 7.17 6.69 8.66 6.82 7.78 7.07 10.3 8.6 9.45 9.06 6.68 8.3 6.04 6.26 10.4 7.55 8.84 3.23 0 5.5 10.8 7.8 5.63 10.1 11.3 8.43 9.98 10.4 9.04 8.79 8.51 5.92 7.7 6.92 8.92 11.8 7.16 8.57 6.83 11.3 8.69 9.73 6.76 7.88 2.1 8.72 6.25 4.75 8.71 2.86 5.92 7.66 5.61 7.23 8.51 9.32 8.65 5.7 10.8 8.51 9.72 5.49 9.1 2.37 6.53 8.89 7.69 2.67 7.15 4.83 7.58 8.36 3.91 7.8 8.48 0 7.96 2.45 0.67 5.49 8.82 1.48 6.55 5.78 8.1 9.36 4.93 2.97 7.36 7.65 8.81 10.9 4.22 8.56 9.59 8.06 9.27 6.51 9.4 8.41 6.97 8.08 8.77 6.56 7.28 10.4 7.9 9.32 11 9.27 6.02 10.2 9.79 11.8 7.23 8.85 9.92 6.19 8.59 9.58 11 10.4 4.77 4.31 0.67 8.46 7.19 8.39 6.78 6.9 7.21 10.8 7.43 1.76 9.84 4.49 5.13 5.25 7.4 8.82 2.97 10.8 1.13 8.6 5.77 3.69 11.3 11 3.44 7.33 8.44 4.51 9.33 8 10.1 9.31 5 11.3 5.04 8.17 7.02 7.8 8.52 5.53 7.58 8.95 7.95 8.69 7.61 2.97 5.86 9.88 9.55 9.95 7.27 0.38 6.34 7.21 6.61 8.75 8.55 2.67 7.73 2.67 11.5 4.56 2.1 8.69 8.24 8.21 8 6.92 3.69 8.28 9.26 9.86 7.95 7.55 7.79 9.73 8.64 9.85 9.29 9.28 10.1 10.3 9.05 9.23 5.12 3.69 0.38 6.54 5.68 8.17 4.99 8.66 2.47 4.17 4.1 1.13 7.12 11.3 11.4 4.55 7.34 5.26 6.74 8.48 0.67 10.2 4.84 7.34 5.76 7.57 9.09 9.92 7.51 10 9.66 3.79 10.1 10.4 10.7 8.17 9.14 8.58 9.99 10.3 9.9 6.15 9.14 6.05 8.54 8.33 7.7 10.6 6.54 8.82 10.1 6.93 9.03 9.26 9.54 10 8.72 9.86 10 7.95 0.67 9.9 8.2 5.7 9.3 10.4 9.36 10.2 7.92 9.96 10 9.05 2.1 11.8 8.81 7.97 10.9 11.9 6.92 8.4 9.71 9.86 6.35 11.1 10.6 7.94 8.54 4.05 9.14 9.15 8.79 2.37 8.15 7.32 6.29 10.7 10.1 8.96 9.18 9.65 3.62 11.9 10.3 9.88 9.06 9.7 10.6 10.5 7.99 12.3 9.11 5.73 11.7 11.3 6.54 8.3 5.27 7.09 7.79 8.69 5.15 6.36 8.85 8.66 1.76 10.4 9.37 4.35 4.17 6.54 11.4 4.55 3.03 11.3 8.27 4.02 6.8 9.53 11 6.02 9.86 10.5 10.3 0.67 9.35 3.99 9.21 10.3 6.82 11.7 8.98 13.4 10.5 6.33 9.43 10.9 5.61 9.85 5.68 5.25 8.99 6.51 4.64 11.7 7.67 11.3 1.32 3.48 4.9 0.38 3.59 7.61 7.82 7.68 8.75 7.07 7.9 5.69 8.44 8.91 11.2 8.63 6.03 10.6 9.35 9.24 6.25 9.02 6.09 12.1 11.8 9.52 12.9 9.39 12.3 7.69 9.05 7.22 8.62 8.49 7.23 7.68 11.3 10.6 7.42 9.48 4.53 10.3 11.3 8.33 9.93 8.59 9.24 3.86 5.15 6.87 1.52 11 8.51 9.05 9.14 0.67 8.74 12.5 13.5 6.62 3.06 3.62 9.38 5.47 9.07 10.2 8.18 11.2 11.6 14.1 6.72 6.91 4.1 5.4 2.37 11.7 12.5 9.38 4.67 3.13 11.4 11.1 9.21 8.88 6.62 5.86 4.12 5.87 12 4.37 8.73 8.56 8.51 10.4 9.79 6.88 9.27 8.96 7.88 10.6 6.83 10.4 9.68 10.2 6.25 7.99 10.9 8.58 10.4 9.5 9.06 12.3 5.54 9.28 7.65 9.15 9.23 8.89 9.15 8.19 0.38 8.74 2.45 6.16 10.6 9.38 9.8 10.7 9.82 10.1 9.78 9.96 11.5 10.6 4.1 2.53 7.59 8.71 10.7 8.39 5.51 11.3 7.39 9.36 10.5 5.52 9.24 12.5 11.1 11.2 11.7 9.18 8.11 0.92 9.16 0.92 9.78 11.1 1.99 11.1 9.36 7.3 9.2 7.16 8.86 4.64 6.6 3.13 8.65 6.23 10.1 8.54 8.32 9.59 9.16 7.68 9.9 1.78 9.62 7.18 9.81 9.47 7.83 9.99 11.3 12 10.9 8.3 9.78 10.4 9.36 9.74 3.63 9.25 9.01 10.2 10.8 9.3 10.4 9.69 2.6 8.31 5.12 9.46 9.99 2.1 8.91 9.52 8.93 11.8 14 9.02 10.4 4.89 12.6 8.56 1.63 10.2 8.58 10.7 9.48 12.7 8.27 9.9 10.2 12.7 10.7 11.9 11.8 10.4 11.9 11.5 9.33 12.2 9.62 11.3 10.9 1.13 12.6 1.63 11 11.6 9.77 5.33 8.38 1.13 10.8 10.8 11.4 9.88 6.33 10.8 8.49 10.8 5.72 11.2 9.13 9.9 8.04 12.1 4.26 10.3 8.6 10.1 9.9 6.99 10.2 1.32 10.3 1.88 0.67 1.48 9.08 2.8 8.25 3.85 3.59 4.35 8.55 1.99 2.92 4.15 4.64 1.32 1.63 10.2 2.6 10.6 12.3 11.7 8.31 7.02 3.13 4.55 2.53 10.7 7.2 0.92 8.8 9.98 8.86 8.41 6.92 4.72 5.73 8.64 6.62 10.1 3.03 7.66 10.2 10.7 7.2 9.87 1.63 3.98 1.99 4.75 1.48 0.67 10.4 9.19 10.9 7.66 7.52 8.12 8.89 4.17 9.25 0.92 3.55 2.67 0.92 10.3 7.26 6.25 9.54 7.16 7.08 8.7 9.17 1.32 9.02 10.3 10.7 9.5 8.04 0.67 4.58 8.67 12.7 10.3 1.88 8.23 9.87 10.2 7.35 4.69 5.6 0.67 0 10.8 0.38 9.96 10.5 8.21 1.76 8.8 10.1 7.92 8.75 10.1 8.46 0 0.67 6.11 9.11 8.41 7.66 10.4 8.3 5.73 8.53 9.58 9.18 8.86 3.36 2.53 9.09 2.1 6.47 9.92 9.14 10.1 4.86 10.8 10.8 5.12 8.8 7.95 11 9.74 9.21 1.48 4.89 5.36 7.84 1.32 4.89 10.1 6.1 6.25 9.56 7.77 8.41 10.8 9.91 6.55 8.9 4.77 5.61 10.8 5.34 9.02 0.67 5.24 0.38 5.87 6.51 1.99 0.92 2.74 7.59 10.5 8.06 7.17 8.85 10.6 8.78 10.4 10.9 4.62 10.3 10.7 9.78 8.64 7.77 5 0.67 7.6 2.2 8.24 9.97 8.39 6.95 5.89 10.3 10.3 9.02 7.62 8.11 0 7.6 3.23 0 8.64 8.63 6.55 10.2 9.84 10.8 10.1 10.8 10 1.76 7.81 6.78 6.18 2.1 7.73 8.1 10.4 9.41 0.67 8.05 9.59 9.08 6.07 8.95 15.5 3.94 5.38 7.33 3.08 9.21 7.18 9.39 10.9 7.29 8.86 6 5.26 9.26 10 1.13 8.65 6.07 0.38 8.12 7.89 7.31 6.84 9.13 7.73 8.49 8.74 9.54 7.76 8.53 9.18 7.87 9.48 7.72 6.81 5.66 6.73 7.02 10.5 9.47 11.8 10.2 9.76 9.09 6.35 9.22 8.46 10.1 10.7 7.88 10.1 9.71 5.86 10.4 8.41 5.75 8.35 6.89 9.11 7.42 9.21 9.63 9.56 1.99 1.88 6.56 10.8 9.64 10.3 6.83 8.56 7.77 7.77 2.74 5.82 4.19 9.06 5.85 8.9 4.78 6.92 6.9 7.91 4.99 0.38 11.6 11.5 10.5 7.87 7.84 4.39 7.74 10.7 9.35 8.09 10.9 10.4 2.74 9.7 6.24 5.35 6.65 8.93 9.2 9.47 4.35 9.55 9.37 8.61 11 8.84 8.63 8.04 10.5 8.99 8.53 8.63 9.97 9.01 11.9 9.56 9.92 9.23 8.33 7.96 8.08 5.49 9.32 10.8 8.23 4.83 9.28 8.67 10.3 9.43 8.23 9.81 8.46 7.95 0.67 7.64 10.9 9.28 9.72 9.33 9.78 9.44 7.03 10.5 6.48 4.35 8.39 9.48 8.68 7.15 7.29 9.79 0 10.4 9.03 7.68 9.66 6.85 8.6 10.1 9.44 9.35 10.2 10.1 10.2 9.39 9.92 6.01 8.54 7.25 9.08 10.5 0.38 9.51 8.29 9.97 8.86 10.2 7.31 8.28 7.86 9.76 0.38 6.11 11.4 10.7 4.72 10.1 9.49 10 2.67 10.6 4.02 8.74 8.89 11.2 7.34 6.13 8.16 5.2 10.1 10 9.63 10.4 11.1 6.86 10.9 7.86 6.89 10.4 9.91 10.8 6.85 6.46 5.35 8.4 8.31 9.24 7.77 1.88 4.58 4.77 4.26 10.1 9.95 10.7 8.75 3.31 5.82 11.3 9.29 8.97 8.76 9.78 5.69 5.48 5.89 10.3 6.49 9.79 7.97 5.57 7.12 8.45 9.04 9.92 6.8 11.2 5.71 8.4 9.63 6.19 9.54 10.3 10.3 7.63 7.24 9.32 1.99 10 9.84 9.57 0 6.55 7.83 5.19 11.3 9.96 9.68 3.79 6.56 1.48 10.3 8.53 9.11 4.47 11.9 9.34 7.1 0 2.74 7.2 8.56 10.5 6.1 11.5 9.14 10.7 3.73 2.67 1.88 1.99 9.99 8.32 9.04 10.1 10.4 6.82 7.36 1.99 10.6 6.82 0 7.92 9.01 11.6 5.32 6.81 6.96 7.42 3.27 3.52 2.6 11.1 11.4 1.32 4.6 10.5 8.61 3.85 5.71 1.48 11.1 10.2 9.24 7.02 11.8 7.29 11.8 11.3 7.97 2.53 11.8 9.79 7.97 8.4 6.69 8.77 11.4 6.29 5.26 9.31 7.55 4.96 6.23 7.55 9.34 12.5 7.66 9.85 8.34 7.1 11 10.2 8.89 6.16 5.96 7.6 9.89 10.4 8.76 5.61 4.84 2.92 8.68 8.95 10.2 8.44 7.66 11.7 3.36 8.85 10.7 4.02 7.86 9.82 9.74 5.68 9.67 0 8.32 9.61 3.4 7.74 5.61 6.81 7.92 8.61 10.4 8.07 9.62 9.89 8.88 7.45 4.74 1.99 7.22 8.42 11 10.8 8.58 5.77 9.28 9.04 9.94 13.1 10.2 8.96 0.67 9.29 11.4 8.53 8.58 9.39 9.22 8.52 8.13 9.62 7.27 9.83 8.4 8.82 7.45 10.1 6.79 9.01 9.79 4.28 8.58 4.69 8.22 8.84 8.83 10.7 12.2 7.99 6.4 7.4 10.8 6.56 8.67 10 9.26 1.32 8.21 9.09 7.69 9.89 10.1 9.71 8.11 8.52 9.27 4.47 7.72 8.92 0.67 8.93 10.4 7.46 8.34 9.22 10 7.81 9.85 3.99 9.27 9.77 9.03 9.35 7.28 8.76 1.13 6.06 8.17 6.49 9.95 3.27 5.07 6.86 8.81 9.17 9.12 8.15 4.26 10.7 6.53 5.41 5.52 1.76 8.59 9.04 9.41 2.93 1.48 11.5 10.5 10.6 6.75 10.6 5.83 7.07 8.36 4.6 6.13 8.17 8.12 9.08 8.65 8.79 10.8 10.3 8.17 7.24 8.01 9.05 10.7 8.78 7.95 7.85 8.68 9.69 8.99 5.03 1.13 9.84 5.09 2.92 10.5 9.99 10.8 9.97 2.45 9.35 1.88 8.72 11.5 8.71 10.1 5.39 0 6.98 0 11.4 8.97 11.5 9.08 7.93 1.06 7.66 7.09 3.13 9.72 7.04 9.94 3.31 10.3 9.38 7.83 7.62 7.34 9.29 9.61 3.13 9.46 1.13 4.67 10.5 10.6 9.78 11.7 9.16 9.36 9.6 9.67 5.14 4.53 8.11 5.86 7.99 9.13 5.1 10.3 12.7 9.16 4.24 9.61 11.3 10.4 3.99 9.46 10.6 10.8 9.49 9.89 11.2 4.49 11.8 9.09 8.31 9.06 9.62 9.53 9.68 8.79 8.89 8.79 11.1 4.05 3.96 10.7 5.55 1.32 5.63 9.64 2.86 0.38 7.33 9.88 4.66 4.35 11.2 8.38 7.4 6.08 2.1 9.64 8.69 11.7 10.8 8.67 8.11 12.2 12.6 10.3 11.2 9.26 10.8 11.9 6.89 9.85 11.1 9.86 8.66 6.55 8.1 9.48 7.89 10.8 6.99 3.62 1.32 10.5 9.07 9.31 8.47 11.2 3.52 6.11 11.2 8.63 11.6 9.95 10.3 10.7 3.03 2.97 10.2 3.66 9.1 9.58 10.1 6.43 8.51 5.82 5.92 6.05 6.25 2.2 9.87 12.2 9.88 8.54 8.46 8.9 8.73 5.12 8.75 5.5 7.28 9.06 6.41 10.4 8.76 9.12 10 6.51 5.93 11.8 9.56 8.79 10.8 12.3 13.2 7.68 12 10.7 11.9 12.7 12.6 11.3 9.24 3.13 10.2 11.5 9.2 11 7.98 8.85 9.8 8.18 8.91 12.5 11.4 11.4 9.69 10.8 7.69 10.2 9.06 6.2 12.7 5.36 9.56 10.7 11 8.1 8.3 3.27 0.38 12.4 8.6 8.59 8.52 10.2 7.53 10.4 12.1 9.88 9.65 11.8 10.3 8.74 8.39 8.92 10.6 10.4 9.37 8.87 10.7 3.99 9.29 7.49 9.75 4.8 9.48 9.09 9.35 4.24 2.92 0.92 0 9.31 13.5 11.3 14.1 9.41 12.3 13 10.4 11.5 9.22 6.84 9.57 9.9 8.53 11.3 10.2 6.38 6.72 5.75 9.54 9.24 3.79 8.73 5.29 9.3 5.07 4.97 7.38 10.2 7.63 9.08 9.55 1.32 6.8 10.4 11.3 8.58 13.7 9.46 4.87 5.97 2.8 1.13 8.98 10 5.87 11.7 9.88 3.23 9.49 8.91 5.47 4.62 1.63 8.58 2.2 12.7 12.7 10.6 6.21 8.6 7.83 10.8 8.56 8.55 10.2 9.45 1.48 8.98 5.68 9.89 12.4 3.62 8.52 10.2 7.11 5.49 10.9 7.89 6.39 9.37 4.72 2.67 10.7 3.18 8.56 10.1 7.78 8.64 7.17 7.58 7.38 8.44 9.97 10.9 10.2 9.83 6.16 9.73 10.4 15.3 10 10.3 10.8 10.1 8.93 12.6 11.4 11.3 10.7 9.36 10.7 9.72 8.3 10.4 11.4 11.6 10.3 9.43 9.77 10.4 1.76 9.57 2.45 11.7 8.46 10 10.3 9.12 1.32 10.9 9.27 4.24 9.18 10.2 1.76 9.16 8.76 7.94 10.9 11.2 10.4 4.79 4.55 2.9 9.98 10.5 10.5 10.8 8.74 9.47 7.65 9.56 8.18 8.35 8.05 11.9 8.18 10.3 0.67 4.35 6.19 11.9 2.29 1.76 8.99 10.6 10.7 4.35 10.9 10.5 7.78 8.11 4.28 8.6 11.6 7.31 6.9 1.99 2.72 1.99 7.16 9.36 7.92 8.36 9.14 12.9 8.28 8.49 3.62 11.4 7.49 9.4 0.92 1.43 6.02 3.78 5.56 6.94 3.27 8.48 10.5 8.76 9.34 10.4 8.83 11.7 6.02 0 7.78 11.2 10.6 7.32 9.63 9.54 8.31 10.1 7.34 6.91 1.32 5.54 8.92 9.45 10.2 1.99 6.46 5.49 8.38 6.22 9.14 7.47 3.44 10.2 9.69 8.97 0 9.62 8.05 8.15 5.29 7.23 7.32 3.52 12.8 9.32 8.24 8.82 8.44 8.02 10.9 4.17 1.13 5.66 11.3 6.57 2.45 0.67 3.4 8.95 10.3 8.82 0.67 6.15 4.05 5.83 1.88 10.5 11.8 9.8 6.25 8.71 9.52 8.84 2.97 5.94 8.6 8.64 6.81 0.38 7.73 7.98 5.87 7.08 9.48 9.44 9.18 10.2 9.03 6.59 10.1 9.21 7.86 10.8 8.71 10.3 8.7 9.41 11.4 8.93 8.84 13.5 9.46 8.2 7.31 7.6 10.3 2.29 9.83 9.74 9.13 8.31 3.96 8.87 7.63 9.11 9.8 5.57 0.67 7.14 10.2 9.39 11.8 8.35 8.01 9.73 9.15 6.62 8.94 1.76 2.77 8.11 4.99 8.12 11.5 7.66 7.81 7.34 7.11 8.15 8.91 10.3 4.31 11.4 6.68 6.24 8.2 3.55 9.25 6.67 10.8 9.52 1.46 7.89 1.48 4.07 3.88 11.3 7.05 9.64 12.7 6.21 10 9.26 6.74 5.37 7.72 11.2 7.84 11.6 9.61 6.8 11.5 7.23 10.4 6.48 9.31 11 11.2 9.92 8.72 8.31 8.94 10.9 8.71 4.45 10.4 5.52 7.79 7.34 9.86 7.59 8.52 9.5 10.1 10.2 9.13 7.05 12 6.09 8.56 10.1 9.18 8.92 4.51 6.3 11.8 12.5 9.69 9.55 5.03 8.37 8.16 7.91 10.3 5.73 8.3 8.82 6.7 0.67 0.67 6.94 5.15 6.51 5.13 4.33 10.8 10.1 8.07 10.6 10 3.69 10.1 9.29 9.25 11.9 11.6 8.68 7.7 12.3 10.4 11.4 11.3 7.68 7.15 6.8 10.4 8.45 9.67 8.27 0.38 5.97 10.2 8.21 10.5 9.56 11.2 10.2 4.83 8.47 8.4 9.58 9.97 5.43 10.3 6.64 4.26 8.9 12.8 6.7 9.15 7.38 1.99 10.2 12.4 6.93 9.67 5.03 8 7.03 9.89 3.85 6.67 5.96 9.08 9.04 9.94 8.26 10.4 11.3 5.84 9.78 8.45 8.3 8.71 4.33 9.97 7.32 6.84 0.38 7.9 7.91 9.4 6.74 2.97 11.5 6.96 11.2 14.3 9.46 9.22 10.4 8.49 7.68 4.56 9.74 4.75 3.59 1.99 6.34 10.4 9.65 5.28 4.74 6.6 3.4 10.3 10.2 8.76 10.1 8.45 8.67 6.94 1.13 11.5 4.17 9.31 7.51 10.9 7.91 8.25 8.7 7.12 9.32 8.3 6.5 10.9 10.5 6.56 6.69 10.7 4.15 2.67 7.58 9.44 2.29 9.15 3.08 10.5 9.46 4.19 3.62 7.16 7.52 11.4 9 10.8 5.31 8.62 8.62 10.4 8.84 8.88 7.8 9.23 10.9 10.7 6.06 7.82 6.9 8.49 8.21 8.85 6.72 10 7.83 12.3 8.44 11.7 6.18 10.1 8.75 10.6 9.39 11.2 0 7.63 11.8 4.19 10.2 2.2 9.29 7.67 5.61 7.72 4.86 1.13 5.67 4.49 2.1 2.74 1.88 3.55 8.39 11.1 1.63 9.42 9.74 9.52 10.3 9.36 4.5 8.37 8.69 7.38 12.5 8.66 9.96 1.48 9.22 11.9 8.8 7.12 9.08 9.65 0.67 7.61 8.77 3.59 2.1 10.6 6.26 1.13 10.4 7.6 4.74 7.1 8.94 5.19 10 9.24 11.9 3.88 10 9.52 3.67 7.33 9.14 5.13 9.8 9.85 12.9 9.6 9.18 8.73 10.4 8.38 10.1 9.33 10.5 9.9 9.32 3.69 9.48 10.8 9.6 8.85 10.1 6.93 10.2 11.9 10.7 9.3 6.92 9.75 14.2 9.1 7.4 10.2 9.79 5.38 10.4 8.03 10.7 10.5 11.3 4.49 9.37 9.98 6.64 8.6 8.13 6.81 12.2 11.4 4.58 5.83 8.14 9.27 9.08 1.99 9.33 1.21 0 5.47 8.7 9.87 7.7 4.7 3.91 5.17 9.12 6.86 5.38 7.99 9.03 7.85 9.77 8.96 6.12 3.73 8.96 10.9 9.89 12 8.95 11.2 8.27 8.86 10.3 6.45 9.08 9.04 8.65 11.7 8.41 6.23 9.14 6.53 11.1 8.07 3.73 11.1 9.53 7.56 9.83 7.9 9.62 9.97 9.54 2.09 11 10.6 10.4 7.24 2.8 10.3 13.3 0.38 9.78 6.34 9.92 5.94 10.5 2.45 7.27 0 7.96 6.56 6.23 9.29 10.4 11.6 10.7 0 12 7.94 9.28 7.79 4.87 7.63 9.74 3.69 4.57 0.93 8.9 6.7 9.18 11.8 2.53 10.3 8.99 10.1 8.22 11.1 11.9 0.67 5.7 11.8 1.63 10.2 9.6 4.83 1.32 6.63 0.92 11.3 8.45 11 4.17 9.82 8.42 10.3 2.92 5.24 2.6 9.84 8.96 6.31 9.25 9.48 7.76 9.44 9.05 6.23 13.2 12.3 3.73 10.1 3.94 6.94 9.33 10.8 7.22 10.9 9.47 1.48 10.2 7.77 6.15 10.1 9.38 9.5 9.1 9.5 9.04 7.95 7.44 7.17 7.04 7.71 3.08 11.4 9.95 2.8 11.3 9.23 9.1 8.55 8.53 9.32 11.6 7.34 9.02 9.42 9.42 3.55 5.05 5.27 5.6 8.78 0 9.74 5.21 9.3 9.08 7.6 7.45 10.7 11.8 10.6 5.18 11.1 6.78 7.52 9.17 7.88 10.6 10.6 8.17 8.02 9.91 1.88 9.25 10.1 7.47 9.17 10.4 6.64 10.1 9.93 11 5.01 10.4 10 9.41 2.8 8.65 9.79 10.5 3.36 6.41 7.12 8.32 5.61 8.23 10.2 12.8 11.2 10.7 5.01 8.52 4.78 0.38 9.63 12.2 11.6 6.52 11.3 4.28 8.05 8.99 9.7 10.2 9.22 0.92 0.38 12.3 9.69 5.12 8.12 6.46 10.1 7.7 8.85 11.7 9.46 9.69 9.48 11.8 9.41 9.74 7.84 9.78 7.26 9.45 6.92 8.7 8.1 9.81 11.6 8.31 8.06 9.31 7.64 9.23 8.55 8.73 11 10.4 11.7 8.95 9.65 10.3 12.3 9.42 10.8 9.8 2.92 7.95 10.9 10.1 10.6 7.87 9.32 7.39 9.42 8.47 8.65 9.34 10.5 8.44 9.32 9.8 12.3 9.19 12.2 8.68 5.26 9.63 12.9 11.4 5.18 7.48 11 8.43 1.88 14 9.58 12.2 11.8 10.1 8.37 7.52 12 9.35 10.2 12.1 10.3 6.01 10.2 8.12 9.08 12.6 4.75 4.51 4.19 10.8 4.78 8.52 11 10.6 1.88 10.8 9.26 5.47 10.3 10.9 11.2 12.9 10.6 10.3 8.61 9.46 10.3 8.92 7.46 8.06 9.38 5.29 9.67 10.1 10.8 9.07 11 9.09 5.82 11.5 14.3 13 7.47 9.43 9.93 7.71 10.9 5.62 12 13.1 10.7 1.48 11.8 10.8 10.1 9.43 9.98 9.18 10.2 10.4 12.7 8.1 10.7 9.24 9.72 11.3 12 7.43 9.4 11 6.67 11.6 9.45 9.06 10.2 10.4 9.78 9.97 10.8 0.38 7.22 3.88 9.46 11.5 9.85 11.6 9.38 3.4 9.37 2.53 10.5 7.74 8.39 9.53 9.33 4.15 10.1 5.13 10.4 7.85 15.9 3.58 5.28 8.9 11.2 9.42 10.5 9.49 5.98 9.68 9.57 8.83 10.5 7.12 9.7 11.2 5.55 8.65 9.92 9.48 13 8.88 9.29 7.86 10.6 7.32 9.5 8.09 13.2 6.46 5.31 6.54 7.48 7.33 10.3 9.26 10.4 4.65 12.7 7.28 7.58 8.75 10.5 8.75 9.14 11.3 9.52 9.08 11.1 11.3 11.7 10.5 11 9.29 10.5 3.03 11.2 7.88 11.8 7.31 11.9 9.44 8.55 9.26 10.5 9.33 10 11.8 10.5 12.6 10.1 2.6 10.9 9.95 7.74 10.2 11.6 13.3 10.3 9.89 10.2 0.67 11.1 10.2 10.7 11.4 8.93 9.93 10.4 11.6 9.79 8.39 11.3 10.8 9.12 10.7 9.23 11.4 7.29 9.72 9.27 10.1 10.9 8.08 5.15 10 3.91 9.08 9.55 9.56 9.74 5.12 9.66 8.76 7.83 8.25 9.3 9.35 9.58 8.36 7.78 9.32 9.9 8.62 8.2 3.13 10.6 9.24 10.1 7.05 10.5 10.4 7.07 7.59 7.29 10 11.3 10.3 9.29 9.79 9.81 9.81 9.6 10.5 12.2 10.1 10.3 9.67 7.78 8.26 9.17 11.5 7.32 10.4 7.68 11.5 11.5 11.3 4.51 9.27 10.5 7.84 8.62 11.1 12.5 5.62 8.8 4.37 7.86 10.7 11.2 9.36 9.93 8.11 10.2 11 10.4 11.5 7.77 10.3 5.67 10.2 8.08 11.6 11.5 12.3 11.2 5.64 11.6 11.1 9.39 8.94 10.1 12 11.3 9.7 11.4 8.37 10.2 11.1 5.08 9.49 9.03 7.84 8.45 10.8 13.1 3.73 6.71 8.33 9.93 9.08 8.06 12.2 9.98 7.17 9.07 3.79 4.15 5.79 7.92 9.02 9.84 9.27 12 9.87 1.13 3.31 11.8 10.1 10.1 9.93 3.63 10.6 9.32 9.65 7.5 10.7 12.1 9.52 8.49 7.03 9.05 11.6 9.19 9.48 11.3 10 10.7 4.17 10.9 9.01 10.9
-TCGA-AY-A69D-01 4.73 6.82 4.9 6.75 6.33 8.5 1.05 1.28 2.79 1.28 2.77 9.74 4.26 3.08 1.65 9.5 10.8 10.6 9.91 9.91 9.01 10.8 9.26 1.05 10.1 7.44 5.91 9.4 7.31 7.6 4.85 5.87 1.73 0.77 3.25 4.8 0.77 7.65 0.44 4.2 4.28 3.67 5.19 0.44 7.04 2.89 1.05 3.86 11 7.86 2.82 6.25 7.41 10.7 3.89 1.28 6.55 2.82 7.68 5.53 9.32 4.61 7.33 4.85 3.08 4.28 5.07 4.33 10.1 4.57 3.96 3.8 3.14 0.77 1.28 1.65 5.7 3.63 4.16 0 3.54 1.94 3.09 6.84 5.41 1.28 6.96 4.83 0.77 3.89 7.99 6.62 6.26 6.03 5.36 1.8 3.02 1.05 5.11 0.44 0.44 5.84 0.77 6.45 0.8 3.67 8.01 9.11 2.95 7.3 3.25 2.07 9.46 2.66 5.95 2.19 3.86 4.2 3.82 1.8 6.44 6.16 0.44 1.05 1.65 7.35 3.4 4.28 0.44 15.1 2.59 1.65 4.59 8.38 1.8 2.74 3.79 3.54 4.21 8.21 3.83 9.24 1.65 2.19 4.09 12.4 1.47 11.1 0 0 5.42 0.77 6.52 8.89 10.9 2.66 0.77 2.92 8.55 3.99 6.57 8.08 4.61 2.07 10.7 5.95 7.09 3.93 10.2 0.77 10.5 9.12 2.4 2.07 4.43 2.49 2.4 3.02 8.72 4.99 6.03 6.82 4.31 4.55 4.12 2.2 1.28 0.77 8.38 2.4 8.38 8.1 3.71 3.25 5.45 7.22 3.54 10.3 8.72 7.65 5.73 9.84 9.45 9.05 6.4 9.44 4.83 9.69 10 12.2 5.93 11.4 11.8 12.3 10.6 10.9 9.65 10.8 4.33 10.8 7.9 9.63 11.6 10.6 7.67 6.67 12.3 10.8 8.71 12.9 6.03 2.82 8.98 12.9 8.84 6.39 10.2 7.46 9.73 1.65 9.21 3.67 12.8 12.3 12.1 11.9 13.1 13.5 6.51 12.6 6.86 1.8 5.94 9.15 9.89 12.2 11.5 13.1 5.95 12.7 10.4 10.5 10.5 10.6 9.59 9.73 7.2 10.4 10.9 8.21 9.48 5.59 8.12 9.31 12.8 7.67 0.44 13.1 11.4 10.7 12.6 10.6 11.5 8.35 9.48 10.8 10.4 11 12 11.2 3.63 3.4 9.72 7.36 9.42 11 6 13.7 6.16 7.29 8.84 11.3 11.3 6.56 10.2 12 1.05 9.88 9.67 7.69 12.6 10.6 8.36 8.8 2.58 10.9 10.1 1.47 9.55 7.82 10.1 10.4 9.51 6.94 10.6 10.8 11.8 9.65 9.88 8.9 10.5 8.79 11.7 8.45 10 10.5 8.2 7.96 6.81 6.31 11 11.4 9.04 10.9 9.76 12.6 11.2 9.14 11.7 11.9 11 2.5 10.6 0.44 2.49 9.15 8.03 11.6 13.5 7.71 5.52 10.8 10.6 10.2 8.53 6.96 6.76 9.67 5.96 5.37 6.25 12.1 9.5 12 10.1 8.35 8.71 10.4 1.65 8.82 9.24 9.4 7.96 9.35 9.98 11.1 5.15 9 10.3 9.52 9.56 9.22 12.5 8.04 5.1 11.4 10.3 1.05 5.8 3.54 6.23 10.7 11.3 10.2 7.96 10 10.3 12.7 10.4 5.66 8.51 6.04 11 8.33 8.89 11.2 9.81 9.25 6.9 6.12 9.67 2.82 6.37 11.6 7 10.5 9.33 10.7 3.61 11.5 11.5 12.8 7.3 8.82 6.43 6.11 8.27 8.46 7.61 10.1 10.9 11.5 10.2 3.45 11.9 5.47 7.73 7.55 0 9.69 3.25 7.19 3.71 10.8 9.34 8.51 8.73 10.4 12.3 3.14 8.48 10.3 11.6 4.38 8.06 9.04 4.88 4.67 3.02 8.59 7.63 2.95 9.08 4.06 10.3 9.49 8.28 9.91 8.62 7.96 14.8 8.91 0.17 10 9.05 6.41 14 7.68 7.04 4.17 7.17 9.93 9.12 3.59 12.3 8.1 6.8 8.97 9.5 12.1 10.6 14.9 7.03 10 8.05 9.01 3.45 8.63 7.41 9.52 0.77 7.62 4.26 12.7 7.59 10.6 11.2 9.62 6.82 10.8 6.27 10.4 9.82 10 10.3 10.2 9.61 10.1 8.92 6.43 10.6 10.8 10.3 8.37 9.37 9.51 7.9 5.59 10.8 10 9.67 10.5 4.57 9.46 11.4 12.6 9.51 10.9 11.7 8.87 9.38 10.4 8.2 6 7.66 11.1 8.05 4.36 10.3 8.49 9.49 9.81 10.1 4.28 9.84 5.65 9.43 11 10.8 11.1 9.15 10.7 10.4 8.21 8.23 11.5 10.4 11.8 10.7 0.77 13.4 9.9 10.4 9.79 11.9 12.7 9.13 11 8.82 11.3 10.8 9.09 1.8 11.3 5.53 6.19 7.43 9.55 11.2 9.15 11.2 9.07 11.1 7.38 2.49 6.7 11.3 8.49 6.6 12.8 7.92 11.2 9.32 12.4 10.2 12.2 12 11.2 0.44 11.1 9.42 8.12 9.48 7.01 9.19 4.52 10.5 11.8 11.2 12.6 9.97 7.83 10.1 10.4 11.4 13.5 11.9 10.2 10.7 11.4 8.54 8.62 11.1 9.6 9.25 9 6.87 16.6 5.8 11.8 10.7 1.94 10 1.05 10.2 2.07 10.1 9.02 12.8 12.4 12.5 10.4 4.75 11.1 8.38 11 9.67 7.96 6.13 8.45 8.08 9.62 11.3 9.46 10.7 13.2 10.5 6.51 11.2 8.07 9.56 8.23 3.45 10.2 12.1 9.32 9.77 7.53 4.86 11.2 8.5 10.6 9.74 10.7 11.8 9.48 14 9.82 7.87 8.47 7.21 9.25 12 11 12.3 11.6 7.95 12.7 11.3 11.4 2.66 8.15 8.91 6.44 7.6 6.66 10.2 7.76 8.19 11.1 10.6 5.81 9.52 11.3 14 9.21 7.95 12.2 11.2 11.2 6.84 0 5.34 10.6 2.58 7.75 6.13 7.32 10.4 8.87 10.3 3.3 4.2 8.29 9.57 5.97 11.1 2.29 4.31 9.43 7.71 1.65 3.45 12.1 10.8 5.09 6.23 8.24 3.2 9.84 10.6 9.26 0 9.36 14.7 9.63 11.8 11.7 10.3 11.1 13.1 7.13 12.1 7.78 8.76 3.68 11.3 0.44 1.11 1.05 0 9.51 5.55 10.6 0.44 7.41 9.18 4.12 4.86 12.2 11.1 6.43 5.96 12.1 9.82 3.75 10.9 9.38 11.2 10.6 10.2 11.1 9.36 10.5 11.3 8.65 9.41 11.2 8.13 7.04 8.57 8.65 11.4 8.91 11.9 10.1 6.24 6.99 5.58 8.1 10.4 7.38 3.54 3.08 12.5 10.2 1.65 1.28 8.01 9.55 12.1 11.4 5.83 7.8 10.1 4.65 7.24 6.78 8.96 7.42 9.2 7.64 9.27 2.58 5.85 0.77 11 9.4 4.61 12.2 9.63 9.4 5.81 11.9 11.8 0.77 5.15 7.03 6.11 8.66 10 8.76 9.45 10.1 3.82 3.2 8.89 3.36 7.78 2.07 2.07 9.34 10.1 3.14 0.44 12.1 7.75 8.77 7.37 3.4 3.82 9.83 9.34 11.5 10.5 2.07 8.54 10.3 11.3 10.9 9.37 9.62 9.15 10.7 9.63 1.23 6.36 7.68 12 11 11.4 8 11.2 9.55 11.5 10.1 11.9 7.52 9.11 10.9 10.2 9.92 1.94 11.2 2.19 11.5 5.44 10.3 10.2 8.53 0.77 8.89 11.1 12.7 10.8 7.61 9.36 12.7 9.15 10.4 10.5 10.5 9.47 11.6 12.9 9.55 12.8 12 11.8 5.35 12 4.73 7.73 6.88 10.3 12.2 12.9 12.5 11.3 7.23 10.4 8.27 8.07 10.5 10.1 8.8 11.5 6.14 12.8 9.96 11.2 11.7 4.2 2.07 11.9 6.14 11.3 5.75 10.3 8.18 9.73 10.2 6.18 7.14 4.39 3.96 12.5 9.2 4.02 12.5 8.15 10.3 8.83 8.84 7.24 6.83 8.24 10.6 8.06 1.44 3.94 2.07 2.2 8.31 8.63 11.6 13.2 8.76 6.32 10.6 8.87 7.86 6.03 9.8 0 10.1 11.8 10.7 11.4 11.2 9.91 9.51 12.6 10.3 11.4 10.6 6.62 3.63 9.3 11 8.56 6.53 7.18 6.83 11.6 8.84 7.52 11.2 6.73 3.2 10.9 10.8 12.9 7.27 7.57 11.7 10.9 4.15 6.97 9.87 5.1 5.7 8.91 12.5 8.8 13.5 8.54 10.3 9.63 8.52 6.88 10.6 9.18 9.64 10.9 8.99 10.2 9.52 9.38 9.72 10 7.67 9.76 3.79 8.12 9.93 10.5 4.02 11.1 0 9.15 8.09 10.8 1.94 10.1 7.68 8.78 12.5 8.45 9.38 1.05 6.31 7.24 5.2 9.85 4.2 9.06 9.45 5.65 4.75 2.74 9.33 8.56 7.95 7.29 6.54 10.3 9.73 5.79 11.9 10.5 8.69 11.4 10.3 8.7 2.66 4.15 11.9 7.79 5.67 12.1 10.5 6.05 8.38 1.28 10.8 4.57 9.68 6.03 5.82 8.49 11.8 10.1 3.14 9.24 10.8 7.42 7.56 9.93 10.2 12 11.3 6.32 8.77 7.09 5.41 8.69 9.93 5.57 11.3 10.8 8.65 8.78 8.92 0.9 9.71 8.4 11.6 2.95 13.2 10.9 9.03 7.16 7.2 6.81 11.2 6.84 8.37 10.1 8.96 8.16 6.13 11.1 8.56 9 11.2 9.59 9.1 5 6.58 7.66 7.04 8.62 5.36 8.21 7.75 9.79 1.47 5.14 10.1 10.6 7.56 8.51 9.65 10 6.8 11.2 8.32 11.6 6.25 5.55 5.83 8.91 8.41 9.65 9.54 8.08 5.78 2.07 4.94 9.07 11.4 6.95 8.17 7.08 3.02 9.94 7.37 9.42 9.09 5.85 2.29 7.5 3.45 12.8 10.2 8.22 6.04 8.58 9.7 7.46 10.2 11.2 8.16 8.98 7.45 7.91 8.68 8.5 9.89 9.39 7.93 9.93 8.02 10.6 10.2 6.39 7.56 11.7 4.46 11.2 8.51 3.5 9.93 6.75 1.28 7.96 9.28 6.02 10.5 10.9 9.85 11.8 10.2 8.98 9.77 11.3 10.8 5.31 7.12 5.63 10.1 11.6 11.9 1.28 12.3 9.97 11.4 8.23 12.3 10.4 11.6 12.9 7.61 8.49 8.7 0 10.8 9.68 12.5 8.96 8.86 9.54 6.25 11.4 2.74 10.4 6.94 7.45 2.89 7 3.67 7.38 6.9 1.68 2.07 7.87 8.65 6.26 8.36 8.49 11.3 1.94 11.5 3.79 5.1 8.65 1.05 5.94 10.8 5.13 4.63 2.4 8.44 8.39 4.57 2.4 7.07 1.77 5.69 1.05 1.05 7.04 2.49 7.69 6.6 9.44 7.88 7.3 1.28 9.28 6.11 3.63 11.2 7.92 10.2 9.65 8.17 5.44 10 3.02 5.59 8.51 3.45 10 7.96 8.61 7.82 3.36 7.89 5.2 1.28 8.07 12.9 0 9.25 8.25 2.58 5.23 7.39 9.03 4.93 9.46 9.69 10.1 9.52 9.5 6.43 4.48 6.97 0.44 8.01 3.5 6.82 12.6 6.99 7.98 6.72 9.53 8.64 6.76 5.75 7.29 9.97 8.23 4.67 5.18 8.8 9.95 8.06 8.41 5.32 7.86 5.89 14.5 8.19 10.1 8.41 3.99 2.82 8.86 3.93 9.12 11 3.71 3.93 3.82 9.23 7.14 6.23 3.54 8.82 8.75 10.4 10.1 7.04 9.74 6.2 5.18 2.19 1.47 3.79 9.51 4.55 9.38 7.88 9.59 2.95 8.7 3.5 1.28 5.03 7.47 6.18 0 7.65 8.94 1.05 6.75 7.23 1.28 0 8.08 4.88 10.5 9 8.14 10.6 7.74 11.4 9.32 10.6 7.51 10.4 8.93 2.29 5.5 2.46 8.54 8.99 9.73 8.31 7.32 8.05 3.75 10.1 4.59 3.14 2.66 4.39 2.4 10.7 4.28 3.45 2.58 4.88 0.81 10.3 0.77 0.77 9.57 7.22 6.7 8.28 9.01 0.44 5.23 2.95 5.19 9.9 8.98 3.5 8.82 8.53 3.45 4.15 9.63 8.22 11.3 5.24 9.6 10.3 8.86 0 9.8 4.6 3.08 5.31 9.87 9.48 0.44 10.1 5.15 3.93 6.5 12.5 11.1 10.9 1.28 1.8 7.29 10.6 9.88 7.28 4.15 11.7 2.19 10 11 7.47 9.28 9.2 6.76 9.79 0.44 5.3 0.44 7.75 9.3 10.3 9.45 6.85 2.1 7.96 10 3.45 1.94 5.42 7.35 5.54 9.78 8.92 8.39 10.3 7.95 11 1.28 8.55 8.22 8.17 14.1 5.32 1.47 2.29 3.67 6.89 0.44 10.5 10.2 8.92 4.52 9.84 3.75 5.55 9.74 11.6 10.4 8.41 11 7.25 2.82 10.5 7.22 8.9 5.01 3.01 6.45 7.14 8.23 10.7 3.71 9.06 11.8 1.47 2.07 8.26 11.9 11.2 10.4 5.78 4.46 7.13 13.4 0 9.28 7.65 4.09 3.67 9.35 9.48 3.63 7.96 10.2 0.77 1.05 2.49 5.96 0.77 8.48 2.95 6.04 5.58 8.6 6.8 5.23 3.63 9.22 8.74 3.25 7.03 9.31 9.34 1.94 8.51 7.79 5.75 10.7 5.81 7.31 9.92 2.07 8.81 8.97 9.03 3.25 6.58 4.69 8 7.46 4.91 7.5 5.6 8.21 3.93 6.49 9.26 4.84 3.67 8.13 4.73 2.95 7.81 9.43 0.77 7.37 0 8.38 2.07 6.23 8.13 7.28 9.4 5.44 8.95 6.64 8.01 0.77 9.78 10.7 4.83 5.77 8.39 9.05 7.55 9.33 9.3 4.67 9.26 7.44 9.33 11 12 3.2 2.82 8.81 8.85 8.63 5.03 2.19 5.08 10 8.48 5.92 1.65 1.05 6.47 3.25 7.3 10.2 6.61 9.51 8.54 9.6 8.71 3.75 9.16 9.08 3.63 9.4 8.29 6.24 4.09 12.7 7.28 7.49 2.45 8 0.77 7.35 6.71 0.44 7.41 5.92 4.17 11.7 3.71 9.67 8.84 0.77 4.23 3.08 6.91 4.5 9.41 6.46 6.38 8.02 3.2 10.6 3.25 1.28 10.7 4.98 2.89 3.82 2.89 8.18 6.8 10.3 8.6 7.82 5.25 9.15 9.33 5.46 10.4 12.6 5.42 5.35 8.71 8.78 3.96 0.77 7.26 2.19 12.6 8.77 4.17 11.7 7.05 4.79 2.19 4.33 8.46 10.7 8.54 8 8.25 4.75 1.28 4.02 6.92 5.84 1.8 9.24 2.4 10 4.71 3.81 6.89 8.05 1.8 6.74 0.77 2.19 10.6 10.4 5.57 7.78 7.85 1.84 3.3 10.5 3.71 7.54 2.89 8.55 15 5.25 7.71 5.01 14.5 9.83 4.46 3.79 7.87 9.6 3.59 11.4 2.29 8.67 6.67 14.7 0.44 5.15 12.8 0.44 8.23 2.89 12.4 10.8 8.22 8.73 1.28 9.19 1.28 4.67 7.06 12.7 3.3 7.9 8.1 3.59 3.63 4.48 4.79 4.17 10.5 9.21 5.31 4.75 4.65 4.23 12.4 9.94 12.4 7.86 8.52 11.5 5.31 7.73 11.5 8.33 11.8 8.3 11.9 13.3 6.82 9.46 8.46 8.04 7.76 3.86 7.94 9.01 6.94 6.39 8.19 9.01 8.71 6.73 7.6 3.89 7.72 7.56 7.6 5.54 3.02 8.2 6 4.23 12.1 8.16 6.54 6.24 4.61 6.69 12.6 8.5 5.67 8.33 8.07 6 9.91 8.31 2.19 9.37 7.92 5.34 9.87 9.63 5.74 9.22 8.57 4.96 2.19 10.6 1.47 7.41 7.63 9.42 5.4 8.09 2.74 0.44 1.94 0 8.73 7.5 2.4 9.02 12.7 10.6 12.6 7.79 2.29 9.03 11.5 0.44 8.36 7.59 7.62 13 9.2 5.61 1.94 10.5 6.22 0.44 10.1 1.94 1.47 7.86 9.51 8.81 10.2 8.14 6.04 0.44 0.93 8.35 11 8.16 8.11 0 2.49 2.52 7.31 8.71 8.07 12.8 7.18 6.33 8.66 3.79 11.8 1.65 7.25 2.49 8.22 7.63 1.94 6 7.43 0.44 9.54 8.32 4.69 10.8 9.49 11.9 8.72 1.05 3.08 7.59 5.18 12.5 2.95 8.7 7.14 10.3 6.27 9.29 7.54 8.46 8.19 8.76 10.2 1.28 8.71 11 9.09 7.86 10.8 9.96 4.69 8.71 11.1 5.92 11.5 9.42 5.6 12.1 11.5 11.6 10.1 3.35 6.48 9.15 6.25 1.94 10.6 2.29 9.32 0.44 9.65 3.77 0 6.1 8.31 8.56 7.26 1.94 10.7 0.77 0.44 8.56 0 3.93 14.4 12.7 12.9 9.03 7.3 2.5 6.6 7.79 9.83 5.39 4.33 6.25 12 8.85 8.07 9.31 7.11 8.4 5.25 5.95 3.67 9.14 0.77 1.28 10.4 3.96 7.19 10.2 4.88 2.95 6.56 3.45 7.99 4.73 7.27 1.28 5.52 6.99 6.92 1.65 5.59 10 8.44 8.25 5.74 11.1 8.43 1.28 11.6 9.66 7.78 0.44 9.75 8.71 1.05 7.27 5.22 8.24 7.42 7.97 7.94 5.23 1.65 0 10.1 8.93 8.96 11.6 11.9 4.36 6.59 2.43 9.48 8.44 9.19 6.84 8.55 9.2 2.95 5.76 5.15 11.7 1.8 0.77 9.04 10.2 3.71 0 8.75 6.19 5.44 1.94 11.9 5.08 3.82 1.65 8.46 7 6.66 3.59 9.31 8.41 8.19 5.54 10.4 8.39 8.74 7.59 0.44 10.1 8.28 6.08 11 10.1 4.57 7.79 8.39 4.06 5.1 6.41 7.65 2.49 10.9 1.8 11.3 2.74 6.91 5.63 1.05 1.94 12.5 8.4 5.07 3.02 2.29 4.17 3.96 4.38 6.72 6.41 5.72 1.47 9.23 12.3 9.71 13.2 8.94 11.2 11 7.21 5.91 10.1 12.1 7.81 7.26 7.61 8.48 1.47 2.74 8.12 5.37 8.14 5.2 7.34 5.22 7.33 8.81 7.14 4.95 0 6.39 8.05 6.15 9.58 9.45 5.34 9.05 5.3 3.36 3.59 6.79 6.86 2.66 8.67 12 7.12 6.51 9.1 4.91 1.47 3.54 8.99 3.3 11.1 9.28 0 1.95 6.57 4.12 10.1 5.39 10.2 8.33 11.9 8.13 8.52 12.8 2.19 1.47 5.13 11.7 4.36 6.28 11.6 4.9 0.44 7.81 5.48 10.8 1.47 6.95 6.54 6.21 9.98 11.5 8.2 7.88 7.4 4.18 2.4 6.7 6.53 0.44 8.4 2.58 1.94 11.6 9.26 6.21 8.82 0.77 2.66 8.24 11 5.31 1.47 11.8 2.19 2.95 0.77 2.89 0 8.43 5.31 6.48 10.2 5.25 12.5 4.97 6.12 3.14 1.94 2.4 6.48 1.28 10.5 8.8 5.07 3.3 4.2 5.57 6.48 1.8 0.44 0.44 9.85 1.8 1.28 4.15 1.05 5.03 0.77 9.98 1.05 9.82 9.27 6.38 8.17 4.15 6.69 8.02 5.75 12.3 6.41 8.52 7 7.93 10.2 6.08 8.69 0 2.29 0.77 2.66 5.81 9.67 2.89 7.23 11.7 2.89 3.25 8.71 2.58 2.49 1.8 1.94 8.75 6.8 2.07 9.9 2.95 7.62 0 11.6 9.13 5.72 8.62 7.8 5.87 6.61 0 9.53 5.39 7.61 6.77 6.8 4.31 2.29 5.92 7.82 8.41 9.65 9 5.97 5.15 1.8 7.77 8.56 5.9 0.44 7.13 7.75 3.08 8.27 3.14 3.54 4.91 3.59 1.94 1.05 7.22 8.32 2.19 8.98 5.65 7.94 8.14 7.85 8.31 4.52 9.66 7.76 0.44 2.47 11.3 3.86 0.77 2.82 9.74 11.6 6.75 0.77 9.42 4.89 2.4 8.46 3.25 12 9.71 0.54 8.62 7.37 5.44 3.89 6.66 3.3 3.79 5.3 5.31 9.09 8.51 5.15 0.92 8.4 7.69 4.2 2.82 13.6 11 3.2 7 4.55 5.77 14.2 9.92 11.1 0.44 7.92 13.2 3.08 3.96 10.1 0.77 0.44 0 3.75 10.7 0.44 8.54 6.36 1.8 6.74 9.24 8.53 5.9 10.1 2.19 2.58 3.89 7.79 6.54 5.47 6.16 1.94 9.38 9.44 9.4 0 6.78 3.4 9.13 7.28 7.27 4.36 5.69 7.66 2.49 2.82 9.25 5.87 13.3 9.66 12.7 7.48 3.02 6.89 7.37 10 8.38 4.65 2.66 4.02 1.28 9.03 8.11 8.94 8.89 8.92 4.55 9.19 2.49 1.05 5.95 9.65 4.52 5.49 12.2 6.93 9.07 1.47 7.03 2.82 7.25 7.8 5.88 7.93 0.77 6.84 7.01 8.81 11.3 8.58 1.05 5.67 0.44 4.23 1.28 7.15 3.86 8.07 8.54 8.05 9.74 5.15 12.6 8.49 10.1 7.77 1.47 2.74 3.45 8.69 1.94 10.4 9.36 8.28 6.13 12.1 2.66 8.95 7.39 11.2 6.16 4.06 4.36 3.02 8.87 9.3 11.3 8.78 8.64 8.14 2.07 8.65 1.05 2.49 2.4 1.65 9.49 8.16 2.74 4.5 5.75 7.25 1.47 7.31 11.5 7.92 8.06 8.99 10.8 7.45 8.43 10.4 8.52 2.74 11.3 10.5 9.27 6.72 8.74 7.06 0.44 1.94 4.09 11.6 7.88 5.62 8.16 11.3 2.4 11.1 3.59 9.16 9.82 7.31 5.52 8.45 8.96 3.36 6.7 0.77 1.34 7.8 3.25 3.96 4.41 7.64 1.94 1.65 6.6 9.99 0.77 10.8 7.41 0.44 1.47 7.28 0.77 6.04 4.77 7.38 9.11 8.46 0.77 1.94 2.74 8.13 3.02 7.11 10.9 4.57 1.47 12.4 5.31 6.03 6.68 3.49 2.58 8.54 9.5 8.95 7.69 9.12 8.1 9.14 5.34 1.05 10.7 4.23 9.57 4.09 8.68 9.91 3.82 10.2 3.45 2.74 1.19 9.35 9.5 2.67 9.67 0.44 0.77 4.12 10.7 1.94 5.8 9.19 6.82 0.44 7.87 5.57 7.11 0.77 9.64 5.44 9.65 2.4 4.41 2.4 0.44 7.08 9.06 6.36 10.1 4.55 6.94 9.07 1.05 7.96 3.14 2.66 2.49 4.31 1.28 1.8 3.36 2.43 2.07 11.1 8.49 10 4.5 11.5 3.25 5.62 8.5 7.43 5.42 11.8 1.47 2.07 11.4 12.2 1.28 10.2 2.29 9.62 0.44 3.14 10.6 8.35 2.66 1.28 10.9 9 0.44 6.24 11.2 7.25 9.78 6.05 9.6 1.94 6.47 5.89 8.31 10.2 10 11.6 4.77 6.37 3.79 6.07 7.04 2.74 2.49 10.6 10.4 3.25 9.47 4.15 5.04 10.9 1.05 4.46 10.8 0.77 4.02 9.94 2.66 5.12 5.89 2.89 6.41 11.9 10.2 3.25 12.3 7.28 6.84 6.78 4.33 9.73 7.42 3.08 7.49 2.29 1.94 0.44 5.24 6.08 6.16 8.94 6.2 8.73 7.17 2.19 7.46 8.25 5.66 3.89 7.03 10.2 5.95 0.44 13.1 7.59 8.2 8.18 5.46 2.95 3.25 7.28 6.74 2.49 7.46 8.34 5.09 6.72 1.8 8.92 0.44 7.94 3.71 3.82 9.16 0.44 10.4 6.78 10.8 8.93 9.18 0.44 8.45 3.93 1.65 5.35 8.12 9.92 9.32 11.6 11.1 1.65 7.69 2.49 12.3 1.05 9.01 2.4 2.29 10.2 6.69 1.94 6.2 1.7 3.71 1.65 1.28 9.04 1.47 7.9 11 12.8 6.84 1.95 2.4 2.07 10.7 5.25 11.5 7.98 13 13.5 1.05 8.98 11.6 4.02 2.07 9.65 1.47 10.4 2.95 8.63 12.7 12.8 5.81 9.06 10.3 7.64 2.07 7.87 5.52 12.5 10.2 5.94 10.5 8.2 6.4 7.04 8.52 9.87 10.4 0.44 10 5.23 9.72 1.65 7.78 1.05 3.25 4.75 3.36 9 2.19 5 8.01 7.95 1.94 8.26 3.02 8.78 8.6 2.19 5.22 5.55 4.02 3.08 3.82 4.46 10 7.06 8.16 3.93 1.28 2.66 8.14 9.8 4.98 2.4 7.86 7.77 4.79 3.2 2.19 2.58 7.04 3.5 2.66 9.73 9.45 6.7 10.2 5.04 0.44 10.1 1.8 3.14 4.63 3.4 1.47 9.25 3.45 6.83 8.98 3.71 10.7 4.71 11.2 8.55 6.48 6.57 1.47 7.77 11.5 6.62 10 0.44 8.93 10.3 8.76 11 12.8 9.38 8.33 7.52 10 11.2 9.59 12.8 8.58 6.36 0.44 8.29 11.4 10.7 11.7 11 2.89 11.6 6.23 11.1 1.47 2.07 4.36 4.12 7.3 7.92 4.02 6.61 7.64 9.53 9.34 9.21 6.61 1.05 6.84 1.05 6.16 8.68 2.74 5.55 7.38 13.4 9.3 4.61 11 11.6 12.7 11.9 6.66 10.6 7.29 10.6 7.04 3.14 8.54 8.41 9.8 8.05 11.4 8.9 9.67 5.2 5.29 9.73 11.5 0.44 10.1 2.49 0.77 9.31 11.8 10.3 5.57 12.1 11.2 9.4 13.2 8.76 8.54 13.9 13.7 7.11 7.31 11.3 5.53 9.84 5.19 11.7 7.62 10.3 6.84 8.9 11.4 7.87 1.05 10 3.4 10.4 9.98 8.93 11.6 10.1 9.88 9.8 7.21 9.69 10.4 10.9 7.48 8.3 8.83 4.59 6.92 11.9 3.4 8.9 12.8 11.9 9.72 12.3 7.65 8.51 6.8 5.59 7.3 9.51 7.03 13.1 7.58 6.84 11.5 16.3 4.41 1.65 10.1 10.3 6.13 8.08 5.91 12.6 12.5 14.1 15.9 9.54 10.4 8.44 9.11 7.9 11.7 11.8 3.79 1.8 6.38 7.88 6.73 11.2 9.21 10 13.3 5.68 9.4 7.28 9.55 9.49 1.8 4.15 8.55 2.07 9.41 6.34 6.02 6.71 2.82 6.47 11.3 7.58 9.44 12 9.03 8.12 10.8 3.14 8.21 10.4 9.98 0.44 9.89 6.51 5.26 0.44 12.8 0.77 6.54 11.9 2.4 1.8 6.35 1.73 9.45 2.58 3.54 4.73 9.39 8.78 13.8 5.61 8.88 10.5 4.5 6.32 8.78 12.8 7.61 13.4 9.35 9.11 12.5 14 14 12 13.1 0 6.25 0.44 11.4 4.36 6.37 11.3 0 1.47 0.44 8.39 1.28 11.1 6.94 1.8 2.89 7.4 6.28 7.36 3.71 4.26 9.21 5.61 8.38 7.35 14.4 8.99 1.65 8.35 11.9 11 10.8 0.77 8.02 9.3 9.14 5.31 9.8 10.7 0.77 1.65 2.58 3.02 10.3 9.93 6.84 10 8.6 1.52 6.99 3.86 6.46 3.36 8.15 2.4 0 0 10.9 7.96 5.13 6.34 9.92 9.18 8.94 5.4 10.5 7.52 7.43 5.26 8.42 10 7.51 7.47 6.92 11 5.1 10.2 5.72 11.7 9.95 10.9 6.36 7.23 8.77 8.81 5.8 11.2 4.36 11.1 4.71 7.45 8.74 9.26 9.5 5.79 9.45 8.72 3.5 11.2 3.93 6.85 0 7.87 1.94 7.39 6.93 8.71 12.3 3.75 0.44 10.4 9.51 5.01 4.28 12 8.46 3.14 3.99 7.49 1.28 8.8 8.81 8.48 6.9 12 8.6 6.04 5.07 6.95 6.8 6.11 9.56 8.91 1.65 14.7 3.02 5.16 2.82 0 1.28 7.14 5.59 7.64 6.93 12 10.1 8.3 11.6 8.56 6.52 14.5 9.01 1.47 3.3 3.4 8.12 8.25 4.69 7.8 8.26 8.27 10.2 11.4 6.66 11.9 9.21 10.7 7.79 6.64 9.31 10.5 13.7 3.79 9.85 11.3 9.03 8.81 5.07 0 7.51 4.65 13.1 4.57 10.9 13.7 4.75 8.79 12 5.36 8.23 6.95 6.54 9.16 7.05 9.23 8.83 9.77 1.05 6.23 9.74 12.3 11.7 10 10.7 1.94 9.16 11.9 3.02 1.47 12.8 9.33 9.31 9.41 11.6 2.29 8.98 10.4 7.41 10.8 7.95 10.7 5.52 10.9 11.9 7.23 12.7 11.1 2.74 5 9.93 3.96 11.6 1.28 12 11.4 6.58 10.2 9.14 9.97 13.4 6.62 4.55 8.84 10.6 6.23 2.4 10.8 6.31 11.2 5.45 6.36 12.2 9.48 12.6 9.67 10.7 1.05 8.41 10.1 2.95 7.24 11.2 7.65 8.83 10.2 3.75 8.91 7.65 10.9 5.56 10.4 3.99 4.31 6.19 4.26 10.3 4.41 5.8 9.71 2.4 6.23 13.3 3.82 8.22 9.54 8.83 9.87 8.15 7.1 8.43 11.2 9.3 8.5 9.85 10.9 6.17 9.22 8.99 12.6 9.31 8.14 2.66 11 9.52 4.42 1.47 12.6 9.32 14.2 1.8 2.19 7.56 3.75 5.05 9.6 3.08 9.7 12.3 7.2 7.49 9.49 6.54 10.4 8.7 4.55 6.02 6.9 5.91 5.31 7.2 4.65 9.19 8.22 0.44 7.33 10.9 8.74 7.6 10.7 3.54 9.85 2.49 7.51 7.78 6.32 7.58 3.5 4.36 8.46 2.4 3.82 6.59 1.8 8.87 7.91 9.07 3.2 3.02 0.44 1.28 4.06 1.65 6.79 3.45 6.79 7.92 3.75 0.77 3.93 6.82 5.18 9.32 4.07 8.43 5.29 13.1 7.03 7.21 3.71 2.19 9.03 11 2.66 10.6 7.94 9.45 5.35 12.1 4.06 6.83 9.26 9.75 10 10.3 6.24 8 6.83 9.65 3.79 8.07 6.14 3.25 7.86 7.34 4.79 9.22 1.47 3.02 6 7.66 3.25 3 6.13 0.44 10.6 2.49 7.92 10.3 3.54 8.65 7.85 9.01 5.47 10.8 5.2 3.67 11.5 8.69 3.36 7.57 8.83 5.59 9.47 7.01 9.4 8.35 7.37 2.29 8.51 5.5 10.3 5.56 10.9 8.79 7.09 2.58 2.29 9.98 8.09 6.81 11.1 4.98 9.04 12.8 8.5 8.96 6.29 2.49 9.29 7.83 6.25 8.87 12.1 10.2 3.36 3.02 2.89 7.16 0.77 9.33 11 0 7.73 2.29 0 4.59 0 5.98 2.74 5.97 10.9 9.17 9.49 3.2 8.77 8.19 10.5 11.2 11.2 5.96 6.15 6.16 5.06 1.28 1.05 5.32 2.19 6.35 2.07 6.42 1.28 14.4 8.32 9.71 0.77 8.2 10.7 5.78 11.6 6.74 7.89 12.2 7.01 10.8 9.1 9.99 4.93 11.6 8.05 8.72 9.43 11.8 4.15 5.66 6.62 9.5 3.25 11.7 4.23 12.5 7.95 11.6 9.08 7.49 10.3 11.1 10.5 0.77 7.37 9.3 6.77 10.4 9.18 11.9 11.3 8.35 2.15 3.93 8.4 8.37 10.2 11.4 6.16 9.48 7.31 9.95 2.19 8.95 10.2 10.5 8.92 7.15 10.6 8.27 10.8 1.47 10.3 7.97 10.1 12.1 0.77 11.3 5.72 12.3 9.39 8.56 11.7 9.39 9.84 11.8 9.97 4.27 8.56 12.6 9.05 5.82 10.3 8.8 10.9 10.5 9.85 1.47 9.62 10.4 1.05 8.99 8.99 5.84 8.16 8.39 4.52 9.13 10.3 11.4 9.51 11.2 10.4 9.53 8.98 7.76 12.5 3.96 3.08 11.7 0.77 9.18 12.5 9.86 9.16 9.15 6.1 10.6 7.43 10.4 10.8 10.6 10 6.44 9.9 10.4 8.36 10.7 10.3 8.48 7.94 12.9 9.03 9.24 1.28 8.96 9.42 3.79 4.17 2.95 12.6 9.4 9.08 10.7 7.78 4.52 10.9 5.09 7.87 0.44 11.2 12.1 0.77 4.73 2.66 9.28 11.2 11.5 8.09 7.87 9.4 5.16 7.23 11.4 8.09 9.47 8.3 8.93 8.05 9.79 2.4 10 11.3 11.7 10.3 8.32 8.91 12.8 1.65 13.5 11.1 9.98 6.87 3.4 2.49 11.5 9.83 9.89 9.4 9.94 10 7.53 8.06 9.7 7.97 10.3 10.8 9.91 12.1 10.3 10.8 9.81 8.49 11.6 11.2 9.6 9.69 10.5 11.4 6.16 7.31 8.84 10.1 12.1 10.3 10.8 11 10.4 4.9 10.4 9.93 10.8 4.2 7.98 9.51 10.3 10.2 9.75 8.67 9.87 9.57 10.8 9.52 9.63 8.79 6.17 10.8 7.83 10.8 10.9 9.21 11.7 10.9 8.52 9.69 7.93 9.04 8.97 9.5 3.71 10.5 3.5 10.9 8.34 4.47 6.6 9.28 9.75 8.03 8.45 9.15 10.8 8.43 3.02 13.5 10.3 9.99 11.2 3.5 9.53 6.38 9.61 10.4 7.62 10.2 10.7 8.98 10.4 4.61 10.4 11.8 11.3 10.8 8.61 9.43 9.06 2.49 4.38 6.12 2.19 9.1 9.5 10.9 8.59 9.68 8.46 8.49 13.8 10.8 9.9 10.2 9.95 10.9 11.5 9.52 9.73 10.2 10.7 14.4 11.3 11.3 8.4 10.5 10.2 11 11.2 9.44 9.22 7.15 7.34 8.22 10.2 10.4 11.4 10 8.92 11.5 10.3 12 11.9 10.3 13.3 5.96 10.6 13.2 10.9 11.1 12.2 11.4 7.39 10.7 12.4 1.28 10 7.19 1.05 8.64 9.37 10.9 9.36 10.6 11.1 13 9.26 0.77 11.6 10.2 2.89 11.1 7.59 10 11.8 12.7 7.7 8.75 5.58 10.4 11.9 8.21 6.84 10.4 9.64 9.71 3.4 8.7 5.84 7.55 10.1 9.5 10.5 11.6 6.15 8.7 9.52 10.8 10.4 6.08 9.55 8.84 6.35 7.77 9.13 8.04 8.76 1.8 8.44 10.1 9.29 11.1 11.2 7.29 11.1 10.2 0.77 8.88 9.59 11 9.62 9.23 8.8 12.3 10.8 3.99 2.49 10.3 5.66 6.34 9.55 8.67 10.2 5.34 10.1 9.46 10.6 10.8 9.83 6.57 9.84 9.71 6.27 11.2 9.64 5.01 10.1 10 7 10.1 7.72 10.5 7.64 10.1 12.4 9.63 2.4 10.8 9.08 9.96 12.6 7.51 10.1 10.3 12.3 10.4 8.66 6.5 10.2 10.3 9.98 8.18 7.67 10.8 10.2 2.74 9.48 12.3 8.77 9.39 10.1 1.28 15.3 11.8 11.3 12.6 11.3 9.76 9.61 9.03 10.6 7.99 10.2 10 9.67 7.33 11.2 6.99 13 9.25 11.9 10.9 8.57 7.71 9.58 8.14 10.6 8.49 11.9 10.9 10.5 9.96 11.6 11.1 9.17 10.8 9.5 8.66 11.6 12 10.3 9.62 9.91 9.1 10.6 10.4 9.52 10.3 9.66 10.7 10.3 8.71 3.02 8.56 9.06 8.7 7.79 6.17 2.29 1.94 6.28 0 8.85 12.4 7.59 10.6 9.86 7.58 9.79 10.5 2.82 8.31 6.31 9.05 12.2 10.4 9.7 12.7 12.3 13.1 8.67 9.8 6.8 4.67 3.4 8.5 5.84 10.8 8.15 7.54 4.77 11.5 11.1 11.3 9.7 11.2 10.2 11 10.6 10.1 2.4 10 10.9 8.24 9.8 9.8 8.82 4.65 2.82 3.99 12.2 5.01 7.08 9.07 5.03 11.3 9.25 9.61 6.36 12.7 8.74 10.9 10.1 11.4 9.39 9.65 12.1 11 10.4 0.44 1.94 14.8 9.42 10.9 14.1 9.21 10.3 8.57 6.7 13.7 9.93 8.72 8.37 5.78 10.7 7.8 2.19 11.6 6.22 3.3 10.9 0.77 9.07 1.47 1.47 8.19 11.4 11 10.4 7.96 6.44 8.68 11.3 8.68 8.75 10.2 9.12 10.1 11.1 4.38 5.37 11.6 2.07 7.31 9.42 0 5.32 11.3 2.82 10.4 9.5 8.14 6.89 10.8 7.36 9.25 9.15 10.5 6.68 8.91 10.2 10.9 8.29 9.26 9.45 9.46 10.1 9.94 4.26 11.8 10.3 11.5 11.7 9.71 6.79 11.9 2.07 11 8.97 10.6 9.22 1.47 0 1.94 2.4 10.7 6.27 11.8 9.99 6.26 11 5.15 10.2 3.93 10.7 11.8 10.6 10.2 9.65 9.02 8.81 13.2 8.95 9.63 8.42 8.46 12.2 9.38 11.8 7.91 3.71 10.1 5.52 7.73 8.81 8.01 8.92 10.3 10.6 2.66 8.8 10 10.5 9.13 7.39 9.69 8.12 0 5.74 6.04 3.63 11.4 10.2 9.74 8.46 9.25 11.8 11.2 0 1.85 8.18 8.65 6.36 10.4 7.4 10.9 9.48 2.89 6.33 9.73 8.38 9.34 5.66 12.2 10.3 1.05 8.24 0.44 3.43 6.24 3.82 6.61 1.65 9.34 0 6.31 2.4 7.25 8.31 5.58 5.11 4.9 8.15 1.65 1.05 2.58 10.9 8.89 6.89 6.01 7.97 8.27 13.6 7.61 11.6 0.44 16.2 9.91 10.6 13 6.36 10.5 11.3 11.3 2.4 10.5 10.1 3.75 2.49 7.53 6.45 2.19 9.01 8.9 4.41 9.31 9.35 10.5 6.85 4.55 3.93 9.18 6.86 8.21 8.38 12.3 5.06 5.5 9.07 6.88 7.42 7.32 9.18 3.4 10.2 2.29 7.39 11.4 7.47 9.16 2.4 9.99 10.4 8.98 7.72 3.2 4.48 6.42 9.79 1.47 8.58 10.7 1.05 0 7.91 1.8 0 9.66 9.48 4.86 6.14 2.49 0.44 3.2 7.47 6.08 7.48 9.03 10 6.74 0.44 12.9 1.05 0.77 8.79 7.71 7.66 10.1 9.57 8.55 6.82 4.09 7.23 2.74 0 5.22 9.54 8.46 0 6.7 1.94 8.7 3.3 8.7 4.12 6.23 2.89 1.05 6.36 6.52 7.54 5.09 10.1 10.6 4.9 7.01 2.66 8.54 6.11 7.53 10.3 4.26 4.15 1.47 4.75 5.71 8.45 3.25 7.19 3.99 4.9 1.28 10 9.52 5.61 8.38 4.41 8.18 1.94 6.83 7.85 0 2.19 2.07 2.07 0 1.28 4.28 0 10.2 4.9 4.06 2.4 4.91 2.66 8.41 5.64 1.8 7.67 6.56 8.25 1.65 4.63 5.31 0.77 8.65 3.54 1.94 1.28 0.77 9.37 9.62 9.24 6.83 4.96 7.62 9.9 8.72 8.49 1.8 7.82 11.9 8.68 5.86 10.3 5.67 3.45 7.37 3.71 9.6 11.3 10.7 2.74 9.33 9.21 9.44 8.17 11.5 9.53 9.1 8.39 7.62 9.93 11.3 7.72 7.98 6.42 8.17 0.77 9.96 10.5 8.39 5.66 6.17 10.9 10.3 9 5.79 7.19 13.3 10.8 7.08 10.4 11.1 3.79 0 11.8 8.23 3.93 10.9 6.02 9.87 8.01 10.5 7.66 9.03 10.1 11.2 8.79 10.1 12.3 9.29 2.74 8.87 9.45 11 6.87 9.65 2.89 7.04 5.31 6.14 10.8 10.7 10 13.4 10.8 9.09 1.28 9.87 9.78 8.1 7.87 10.9 8.06 8.96 10.5 5.9 8.89 10.4 7.14 9.84 9.87 9.06 6.13 12 6.37 8.07 9.96 7.98 9.56 8.79 9.05 10.9 11.5 7.85 12.1 7.89 7.61 8.81 10.3 9.46 2.19 8.6 11.3 11.7 1.65 8.04 8 8.07 1.28 7.66 5.93 10.3 10.9 4.91 4.46 10.1 0.44 9.65 1.28 0.44 2.95 4.5 10.1 6.39 11.3 9.28 9.06 6.17 9.63 8.23 10.2 9.33 10.4 6 7.89 6.72 10.5 10.2 7.84 7.37 10.2 7.32 10.8 9.72 9.17 3.96 9.95 10.8 8.84 16.5 9.78 9.07 7.17 7.95 9.59 9.24 10.8 8.64 10.1 7.95 8.69 4.02 9.6 8.37 9.99 6.68 11.6 9.84 10.9 6.42 10.2 10.5 10.8 6.72 11.5 9.19 9.39 9.3 11.1 6.22 10.9 8.03 9.27 10.7 11 10.1 12.4 10.3 9.38 4.18 10.1 7.5 8.43 10.8 9.73 3.2 3.02 4.12 10.7 9.35 10.6 1.65 9.39 7.08 8.86 8.94 3.67 9.69 7.92 7.51 7.93 1.05 6.89 5.93 11.1 10.6 9.61 11.6 11.1 10.5 9.23 8.65 9.26 11.8 5.81 11.1 0.44 7.18 6.47 10.3 10.7 10.3 10.2 9.76 8.63 0.44 11.4 8.68 11.5 10.4 1.94 7.01 8.61 10.7 10.4 10.9 9.17 9.83 8.62 9.59 10.3 11.7 12.9 11.7 3.25 11.4 10.2 9.19 10.7 4.88 8.38 4.28 9.29 9.35 6.93 0.77 11.2 11.5 7.04 8.69 9.12 3.08 10.3 11.6 10.5 8.49 11.8 8 7.9 11.5 3.45 10.6 6.59 11.5 4.15 9.73 3.89 7.75 10.6 0.44 8.33 4.79 9.52 9.92 7.51 3.54 8.04 0.77 7.62 2.19 2.89 9.6 9.89 8.14 6.06 3.67 5.01 4.31 1.05 2.07 2.74 2.89 9.88 8.12 8.97 2.89 10.2 9.13 1.28 6.89 9.19 7.57 9.62 6.51 8.69 7.29 9.01 8.98 8.27 9.01 7.23 3.54 8.83 9.82 9.2 2.49 9.66 6.96 9.74 7.61 7.99 4.67 10.3 9.23 9.38 1.96 9.14 9.97 10.3 10.9 9.1 0.77 9.01 8.83 4.17 10.3 9.86 8.73 8.96 10.9 10.6 5.2 10.5 10.5 9.77 10.1 11.2 9.77 1.94 7.59 11.6 4.55 7.28 9.47 9.86 10.9 8.62 8.59 8.72 9.35 7.9 11.7 4.84 2.74 0.77 10.2 2.07 5.7 3.36 9.43 8.3 9.69 8.72 10.9 8.6 4.9 9.88 2.82 7.3 0 10.8 12.8 7.02 1.8 3.82 3.28 5.09 7.77 7.31 10.3 0.77 7.62 6.28 0.77 8.52 6.2 13.7 5.73 8.12 2.07 8.91 11.4 2.4 4.15 9.01 6.99 2.82 5.31 4.02 1.28 11.5 8.34 7.31 9.12 8.98 0.77 6.73 9.82 9.11 9.96 3.3 4.5 8.52 9.3 4.59 8.28 10.8 14.6 9.87 9.86 9.89 10.5 11.2 9.9 2.74 2.19 10.3 1.65 9.11 5.66 5.88 10.9 10.5 5.61 10.9 8.61 8.6 11.4 3.59 8.98 13.1 3.25 9.37 6.24 10.1 10.4 12.5 10.6 0.77 6.29 9.25 10.3 12.4 6.78 6 10 7.6 11.5 3.79 6.54 8.05 7.64 11.1 2.07 11.6 1.47 7.77 3.02 7.03 9.63 10.3 1.47 0.44 10.2 7.56 11 12.1 8.72 10 6.27 9.84 7.37 10.5 5.04 10.1 7.51 8.36 11.4 1.47 6.49 3.93 4.84 8.38 11.9 7.48 10.8 8.36 10.2 3.96 3.27 6.97 8.88 3.59 5.57 8.35 10.9 1.05 9.16 1.05 8.73 8.43 3.2 11.6 8.67 11.5 6.19 3.93 2.82 10.6 6.13 1.8 5.85 0.44 2.29 1.47 7.45 11.6 2.19 8.98 12.2 0 2.29 8.6 10.1 10.2 9.15 4.17 4.09 6.69 11.3 11.1 9.32 8.72 8.54 9.18 10.2 10.9 11.5 8.83 5.91 3.75 8.53 10.5 9.05 0 7.4 2.95 7.31 10.1 8.2 9 7.6 1.47 10.4 8.66 4.31 9.39 5.24 9.72 3.14 8.77 2.89 9.25 2.74 6 8.79 12.4 3.45 10.2 10.4 10.9 13.2 4.23 12.7 11 10.6 11.7 12.1 10.1 10.1 9.39 8.78 0 2.66 10.3 10.8 10.4 8.4 5.58 5.87 8.32 9.97 5.96 5.29 6.24 11.7 11.1 8.77 5.13 10.7 8.42 9.88 11.4 2.89 10.6 9.49 2.82 8.95 8.92 11.4 8.51 5.44 13.2 0.44 9.54 12.1 10.8 4.28 9.88 9.68 5.01 9.13 10.7 10.9 5.46 5.3 10.8 14.5 0.77 6.21 12.5 11.9 4.04 3.08 6.21 11.1 5.15 0 7.86 6.26 2.66 9.92 4.59 0.77 11.2 7.7 6.71 9.51 11.1 11.8 11.5 12 10.5 11.7 9.19 2.89 11.5 4.33 2.89 9.13 6.52 10.7 14 3.2 6.7 0.44 8.65 8.6 5.2 1.8 0.44 3.02 4.65 4.5 5.68 2.07 9.94 6.37 0.44 5.41 3.08 4.46 8.89 2.19 4.55 9.52 3.08 4.2 5.16 2.66 10.2 9.21 6.49 12.7 9.69 2.58 6.45 3.5 10.2 3.25 7.86 9.97 6.89 10.9 8.45 3.4 5.67 7.71 2.58 5.91 4.9 7.19 6.38 10 4.59 9.08 11 11.6 9.49 8.25 3.59 1.05 2.82 2.82 0.77 8.36 2.58 11 5.85 6.35 6.34 9.25 6.18 9.16 5.24 1.05 3.03 2.95 8.44 2.74 4.75 0.44 7.98 0 6.8 0.44 4.65 9.9 11.9 8.01 6.5 2.13 3.5 6.42 5.6 4.67 9.24 1.47 4.59 3.89 12 3.75 5.65 3.25 3.68 8.41 4.38 9.03 6.98 5.89 7.22 1.47 1.47 7.75 9.73 0.77 4.12 9.8 9.44 10.6 4.5 5.47 8.91 7.39 1.94 3.71 6 2.19 5.84 4.23 6.58 5.32 10 3.14 4.06 2.4 1.47 6.26 7.62 0 3.4 0 9.83 1.28 1.8 8.68 10.2 6.91 5.67 5.07 7.57 4.52 3.02 6.33 4.71 8.55 3.36 6.5 5.58 1.94 9.43 0.77 6.91 2.49 4.37 2.58 8.77 8.7 8.3 4.27 0.77 6.5 5.67 6.78 2.07 4.26 12.1 2.4 7.53 8.19 5.57 4.26 0.77 9.89 2.58 0.77 7.81 7.58 0.44 3.25 5.54 4.12 7.65 7.1 8.44 0.44 1.47 0.44 8.6 0.77 3.25 0 9.28 1.94 8.67 2.95 8.34 1.28 7.71 4.57 9.65 3.82 1.37 8.2 3.89 2.49 5.49 0.77 0.44 3.71 1.28 7.82 0.77 2.19 7.14 7.06 0 6.02 6.78 9.35 7.04 4.33 2.29 1.65 5.34 0.44 8.35 9.96 6.82 8.8 8.84 1.65 9.58 0.77 3.54 7.49 6.09 4.52 2.89 9.25 8.94 1.05 7.09 10.3 9.33 3.54 7.31 8.91 3.08 8.38 1.65 6.61 8.93 8.75 4.98 9.34 7.84 2.58 2.82 4.23 9 0.44 7.72 4.5 2.49 5.44 9.13 8.53 12.3 1.05 7.91 0.77 10.6 2.19 2.4 3.45 4.69 7.92 6.72 9.38 4.59 3.82 8.95 2.95 5.09 10.3 7.35 5.6 9.14 1.94 2.83 3.36 10.4 11.2 4.23 6.37 1.65 4.43 9.23 1.05 3.25 5.51 7.01 2.99 7.53 2.4 0.44 5.36 4.06 3.79 1.47 7.58 7.57 1.65 11.5 3.14 8.64 5.31 3.71 1.47 7.57 4.73 7.61 8.53 9.45 3.14 6.02 8.28 2.49 1.96 5.7 8.97 11.2 8.42 2.82 6.07 9.92 8.99 8.3 7.74 2.49 4.9 5.84 8.6 4.91 4.65 8.34 8.74 7.45 1.28 6.92 10.2 12.1 10.5 9.72 7.04 10.3 13.7 6.89 11 9.54 5.52 11.1 9.69 11 2.07 4.17 7.83 9.15 7.97 10 7.68 9.82 9.96 12.1 8.13 8.65 10.2 1.47 6.54 2.19 11.3 0.44 9.03 7.47 9.84 9.76 10.4 10.6 10.4 9.35 7.55 9.14 6.69 9.84 7.58 10.3 11.3 9.45 3.71 7.79 8.38 6.83 11.3 9.65 3.54 12.8 7.81 0.44 4.38 6.86 6.01 10.5 0.44 9.66 3.4 10.5 11.3 6.83 6.95 7.47 9.46 10.1 10.8 7.48 9.56 10.1 10.1 9.16 9.62 7.7 9.02 9.43 9.62 7.39 10.8 10.1 8.43 9.96 9.73 11.7 7.96 7.49 6.65 9.26 8.96 9.79 10.2 7.79 8.21 9.1 8.94 10.7 10.9 10.5 7.1 9.17 3.08 9.25 8.19 9.25 0.77 9.31 9.79 8.7 10.1 0.77 2.07 8.86 0.44 11.4 2.07 4.12 11.4 10.4 4.09 1.94 9.71 13.7 9.87 10.5 13.4 1.05 11.3 13.6 11.4 11.1 12.1 12.2 11.2 11.2 7.1 0.44 5.56 5.49 8.47 3.71 11.9 8.12 5.93 6.7 11.1 7.58 9.22 8.88 8.78 9.04 11 9.72 9.2 6.98 8.43 8.9 11.4 11.5 10.5 8.93 5.79 10.8 10.7 6.89 8.98 7.92 1.65 11 6.63 1.28 11 9.71 1.05 5.78 9.95 12.2 11.3 4.33 10.2 0 2.95 6.08 6.92 7.66 3.93 12.3 7.64 6.56 10.5 6.16 12 9 8.89 4.67 4.71 10.6 11.4 9.49 3.99 10 10.4 7.56 8.04 11.6 10.4 10.6 6.76 11.2 0.77 10.2 11.7 11.5 7.43 4.12 5.32 10.1 1.05 8.31 3.79 9.98 9.12 7.85 8.36 8.27 10.5 10.9 7.11 8.6 12.9 8.38 9.63 13.5 7.78 8.19 4.09 6.67 8.21 2.07 9.67 7.99 6.49 1.28 1.65 8.96 9.09 5.76 6.05 8.61 0.77 8.98 8.43 11.8 10.9 1.05 11.1 0.44 9.13 4.99 6.11 8.97 7.71 9.65 8.49 10.7 6.68 10 11.8 8.22 8.64 7.53 8.9 4.55 10.8 1.28 11.6 3.82 3.59 10.3 7.91 12.7 9.4 1.72 11 0.77 11.3 10.9 8.19 2.74 4.88 10.4 6.6 3.71 3.3 11 6.4 11.3 1.94 2.49 2.4 9.94 3.08 0 10.5 12.9 7.27 14.1 12.7 13 11.2 8.22 6.83 12.3 10.9 11.6 1.47 10.9 2.29 7.27 9.74 8.16 12.7 9.45 10.3 1.47 0.44 0.44 3.02 9.55 7.83 12.1 6.66 7.95 11.4 10.7 12.8 12 4.43 14.2 13.6 13.1 8.49 7.34 9.77 11.7 8.1 7.64 11.6 6.78 11 2.74 8.23 7.03 3.75 3.82 3.71 9.56 4.73 8.48 9.68 5.81 10.5 7.07 4.12 10.6 6.54 8.63 10.2 6.93 11.4 5.87 9.76 6.72 10.6 7.72 11.2 12.7 9.77 11.4 9.25 11.5 12.8 11 11.2 4.71 8.13 14.4 14.1 14.3 8.33 7.93 12.4 7.13 4.9 9.35 9.24 2.07 8.49 7.59 8.32 4.57 11.3 9.79 7.34 5.78 7.14 4.69 12.5 9.52 7.95 11.4 2.89 4.28 3.36 5.3 9.17 6.38 8.92 13 12.2 11.2 11.8 12.1 8.87 11.8 11.8 12.2 2.66 9.24 7.78 9.61 12.7 11.1 10.1 9.62 7.17 8.92 7.51 2.29 8.93 0.44 7.11 2.49 10.8 0 9.61 13.4 7.53 14.6 13.2 13.3 12.5 13.2 12.9 10.7 11.8 14 1.05 13 13.8 3.25 4.88 5.84 8.44 7.97 8.4 5.29 7.34 6.83 9.53 10.5 10.7 9.28 2.58 9.2 6.17 5.2 8.89 6.31 8.82 9.69 8.15 9.25 11.4 5.63 2.4 1.8 9.34 4.67 9.83 2.07 10.4 0 7.67 3.36 0.44 9.38 9.86 1.05 5.37 2.29 8.38 0.44 5.01 9.37 11.2 9.81 9.55 11.1 2.66 2.58 9.93 12.2 11.6 11.1 10.7 10 2.49 12.2 4.61 4.69 12.2 10.3 8.07 6.56 8.81 10.3 11.7 12.3 10.6 4.41 9.83 12 13.9 10.7 6.34 4.59 15 13.3 11.6 3.89 9.26 14.6 9.75 14.7 14.2 3.89 12.1 12.1 8.11 12.4 2.95 2.74 12.5 10.9 9.39 6.75 3.67 1.28 1.28 2.29 1.28 1.8 8.82 10.5 4.67 12.3 10.4 0 5.84 3.99 1.28 2.5 10.1 8.93 4.17 1.28 0.77 6.23 10.6 5.1 8.27 8.3 4.26 3.08 7.4 6.43 9.17 7.24 5.16 4.31 8.03 8.11 2.95 1.84 0.44 3.67 4.27 9.49 9.59 0.44 8.93 7.26 2.74 7.34 9.06 8.66 6.72 10.7 9.62 7.53 9.19 3.75 7.84 6.27 0.77 1.05 9.57 4.91 3.4 8.87 7.06 1.05 4.52 5.75 7.66 2.69 6.32 2.89 2.07 5.96 8.5 8.36 1.47 12.3 10.6 3.36 3.79 10.6 3.79 3.4 2.49 2.4 3.59 10.7 3.54 1.05 6.07 1.65 9.57 6.93 10.3 0.44 6.14 6.34 3.71 1.05 7.99 2.49 0.44 3.59 4.61 8.56 1.8 7.7 6.69 4.06 3.45 3.2 8.39 6.86 5.19 3.3 2.89 4.43 1.05 4.71 5.91 4.23 7.82 10.4 6.09 6.38 4.63 1.66 0 9.42 5.56 12.6 11.3 10.1 11.7 4.96 10 1.47 7.45 7.9 10.8 10.3 0 6.13 10.1 1.47 7.76 0 3.2 7.03 8.86 8.77 1.94 11.9 4.46 4.15 1.65 1.05 6.89 2.95 4.96 6.62 7.78 0.44 7.27 7.79 4.88 5.91 4.96 1.65 1.94 2.58 3.71 2.58 0.77 6.16 7.9 6.87 6.24 0.77 4.83 7.67 6.13 5.15 6.53 1.28 3.93 0.77 2.4 3.08 9.9 5.31 7.89 1.05 0.77 7.67 9.03 0.77 2.4 11.1 2.4 10.4 4.06 5.22 1.8 10.3 1.47 4.17 0 3.08 2.82 1.47 8.57 3.5 7.72 0 6.32 4.43 10.1 1.05 10.7 3.2 4.27 10.5 12.3 3.4 1.05 2.19 2.58 9.92 4.41 8.93 5.77 8.89 10.4 4.12 3.79 5.04 8.98 7.56 4.52 8.1 12.8 9.85 1.65 8.85 1.8 3.71 1.8 12.6 10.5 0.77 9.69 12.2 4.91 6.86 10.7 5.46 0 5.3 5.48 4.12 10.4 11.2 5.66 11.7 7.65 2.4 0.77 4.26 1.94 6.66 1.8 9.38 8.69 14.4 11.9 8.75 3.59 5.2 5.22 10.1 5.63 1.94 6.88 0 5.79 8.87 7.59 4.36 1.05 4.12 5.52 3.14 7.96 3.75 0.44 11.3 8.81 11.2 9.86 5.4 8.23 8.51 7.62 6.57 5.36 2.19 7.4 8.37 6.11 10.9 0.44 4.65 9.67 6.78 8.94 6.05 6.68 9.47 2.4 3.59 8.19 3.02 1.94 1.94 7.43 9.67 4.63 7.49 4.31 1.47 4.88 3.3 11.7 2.81 7.45 12.9 8.91 6.97 5.25 9.46 7.99 5.36 1.47 7.73 3.08 8.06 10.3 12.8 13.5 0 11 7.98 9.97 11.4 11.1 10.3 5.35 8.81 6.92 0.44 8.09 6.48 0.44 6.44 9.39 3.63 9.61 8.73 8.39 7.75 11.5 10.6 4.63 3.08 9.9 1.05 12.2 7.67 4.87 11.8 14.2 8.84 10.4 10.1 4.15 9.38 10.8 6.41 6.39 10.7 8.13 9.95 8 2.66 9.11 10.4 12 1.05 11.2 8.26 9.84 6.52 8.02 6.33 0.44 8.13 7.25 5.58 11.6 7.48 13.7 8.86 10.4 6.33 13 12.5 11.2 9.66 7.01 8.5 2.4 4.46 1.65 12.6 4.9 5.91 12.1 10.3 11 7.33 9.51 7.28 9.85 13.1 10.7 7.7 11.7 8.92 7.45 11.7 9.41 13.1 12.7 11.2 13.5 7.16 8.18 10.4 9.8 11.7 1.47 3.93 6.85 11.5 2.89 4.36 3.82 10.4 7.63 6.94 8.85 10.2 8.82 5.85 0.44 4.65 1.28 3.96 7.66 1.47 5.31 5.01 6.73 9.78 7.71 8.98 0.44 3.36 5.77 7.47 7.82 3.71 4.52 4.93 4.52 9.28 6.43 0.44 7.13 2.89 8.95 3.86 1.28 7.09 0.44 6.1 8.35 13.8 6.41 6.17 7.1 11.3 3.2 7.35 7.83 1.28 3.96 2.07 7.61 9.01 6.47 5.41 1.47 0.44 2.19 1.28 7.04 6.6 5.63 6.9 8.95 8.75 6.34 6.73 4.81 4.61 0 3.89 3.09 1.94 7.6 6.82 2.19 2.19 10.7 6.99 7.65 0.77 7.57 11.8 3.32 0 6.6 1.65 10.8 4.31 0.44 6.57 2.66 3.36 6.23 6.46 1.65 1.47 6.32 12.3 6.36 2.19 2.89 4.17 9.27 6.9 8.14 8.62 5.09 12.5 1.05 1.28 3.45 11.9 10.7 0 4.17 0.44 7.29 4.93 0.77 2.19 11.6 4.15 7.45 3.59 7.93 1.05 8.95 10.4 7.61 2.4 13.3 9.77 5.06 7.46 0 1.65 0 11.2 0 1.05 5.91 8.89 4.06 11.6 5.25 2.19 1.15 1.18 1.94 1.65 10 10.7 11.1 10.8 11.2 12.5 11.9 10.4 7.05 11.4 6.15 11.8 12.3 10.8 2.49 0.77 15.2 7.85 0 9.07 5.63 2.89 12.6 6.4 5.4 9.06 1.05 8.89 4.36 4.28 6.32 3.07 9.72 6.14 0.44 4.75 8.55 3.96 8.95 14.6 10.5 10.4 2.07 4.55 2.07 2.49 5.77 7.82 8.67 2.07 0.44 1.47 5.75 4.59 8.1 0 4.08 5.6 7.67 3.36 9.67 2.51 2.07 10.3 0.79 6.33 9.69 2.07 0 13.1 1.94 7.43 6.48 5.8 8.91 4.23 1.94 6.11 2.58 6.87 3.36 3.59 3.82 5.42 4.61 9.45 5.19 4.81 8.82 2.89 1.47 13.7 1.28 3.3 8.46 4.52 6.25 6.19 6.84 7.74 5.49 1.47 0.77 5.71 3.02 0 8.28 1.28 8.61 1.94 9.32 7.51 3.5 6.39 6.07 9.29 9.58 1.8 10.2 2.04 0.77 6.56 5.78 9.39 8.67 4.91 1.47 9.24 12.5 8.5 5.45 3.25 0 3.2 2.99 6.55 3.75 8.19 2.74 3.99 5.56 5.34 6.21 9.86 6.8 9.55 1.28 12.1 5.37 6.48 9.7 1.94 2.4 4.02 2.19 9.19 2.74 1.47 5.68 4.09 7.92 0 8.64 6.63 0 6.68 2.4 5.15 1.8 10.7 10.2 4.88 3.45 0.44 2.19 6.71 1.65 2.29 2.29 6.54 0.44 7.82 11.7 10 3.82 8.08 9.59 10.2 6.94 12.4 3.21 12.4 1.65 9.4 3.59 8.65 12.9 12.2 12.1 6.06 0 11 11.3 13.6 4.12 4.41 3.86 12.7 4.09 13.4 3.14 1.28 7.9 13 5.58 7.09 12.1 9.59 7.15 0.77 13.7 11 13.9 12.8 4.48 0 6.73 11.1 11.2 10.6 4.09 14 13.8 12.9 15.2 8.82 11.8 9.18 1.05 10.7 5.46 11.7 3.49 9.65 8.32 12.1 10.2 11.6 8.78 9.64 6.04 0.44 3.4 7.55 12.4 1.05 4.37 6.85 6.93 9.34 9.92 11 4.23 7.72 1.65 10.8 3.02 2.29 6.16 7.17 11 0 7.32 7.41 11.2 1.05 5.5 4.48 10.7 10.7 13.6 7.62 1.94 6.57 12.2 0 0.44 4.17 9.61 6.33 7.38 5.77 8.62 2.29 4.98 7.03 1.97 5.64 6.47 0.44 7.72 1.65 0.77 2.19 4.09 0.77 6.81 3.4 2.07 9.66 5.35 12.4 8.63 3.3 0.77 10.3 4.52 5.77 2.74 5.9 7.58 7.9 3.02 5.44 3.86 7.23 0.44 6.27 0.77 2.66 5.67 10.3 0.44 8.72 6.41 4.38 3.59 5.65 0 0.44 5.43 2.22 9.88 4.59 6.1 5.54 1.05 9.06 2.58 5.54 8.79 2.66 9.03 8.73 0.77 5.99 8.09 10.7 6.88 10.8 10.7 0 0.44 1.94 0 6.07 7.53 3.5 6.06 10.3 3.02 0.77 4.31 6.35 9.52 8.13 0.44 6.35 7.06 10.8 0.77 2.07 9.41 2.74 5.5 8.51 5.97 9.01 2.4 8.5 9.9 14.3 1.94 9.49 12.1 10.5 1.65 8.31 12 1.94 2.89 2.49 4.33 10.8 5.65 2.4 8.55 8.53 8.53 11 8.69 10.7 2.58 10.4 6.52 6.18 10.6 9.42 8.79 11.2 0.5 5.63 0 3.79 8.15 6.75 11.6 9.3 4.26 5.16 10.4 4.9 9.44 3.79 11.6 5.06 11.8 14.8 11.1 12.9 11.7 0.77 6.37 7.83 4.98 8.74 10.8 12.1 11.1 10.3 9.18 9.97 10.2 9.62 9.17 10.8 8.21 9.22 7.94 7.56 10.2 0 7.95 8.52 8.71 9.4 2.58 2.58 7.95 10 10.9 9.86 10.5 10.8 9.36 11 3.02 7.41 7.73 4.65 11.9 3.5 3.63 6.97 10.1 9.73 6.52 5.03 11.8 5.93 0.77 8.07 6.71 3.95 7.64 5.37 2.66 12.5 2.95 0.47 9.05 9.22 4.23 9.52 5.8 7.98 1.28 12.5 11.2 7.29 9.77 11.7 9.21 6.9 10 6.57 5.22 1.65 13.8 11.7 12.4 11.4 11.1 11.3 12.6 14.3 1.65 7.59 8.84 1.65 11.5 12.9 12.3 11.1 10.1 8.3 9.32 10 10.1 9.21 5.05 7.4 11 8.63 3.3 6.3 5.13 7.89 9.16 8.51 9.53 10.1 11.2 9.91 3.36 2.07 11 12.5 8.31 9.2 8.22 9.29 8.74 9.69 7.8 8.43 11.3 9.64 5.18 10.2 9.26 9.03 4.38 7.14 11.6 9.9 11.1 6.73 10.8 10.9 5.1 9.82 12.9 6.76 0.77 9.62 6.68 8.49 13.4 10.7 3.36 9.87 7.48 8.6 10.7 10.5 10.9 11.2 6.33 9.57 10.5 12.8 12.7 8.2 9.68 7.23 11.5 8.4 0.77 1.47 8.63 4.69 11.5 12.2 5.06 11.4 3.59 3.4 7.9 7.48 3.25 5.55 7.12 4.98 9.94 0.77 6.66 9.19 0.77 9.96 8.35 11 9.05 8.18 2.4 2.29 9.18 4.57 5.66 11.5 8.18 2.4 5.47 9.31 11.5 0.44 1.65 10 8.56 3.99 4.35 5.74 9.86 9.4 3.75 1.65 2.66 2.66 8.39 0 7.75 1.05 3.67 5.76 9.26 10.7 2.4 7.49 10 3.88 7.51 3.24 4.96 7.18 5.8 9.73 6.72 2.4 8.76 0.77 7.83 5.97 4.41 8.16 1.47 0.77 10.1 10.7 1.05 10.5 3.6 3.75 1.28 3.08 8.42 4.73 4.48 1.05 9.68 5.94 7.57 5.91 12.7 3.4 7.01 4.93 5.71 5.04 5.68 4.73 7.98 5.97 4.93 6.33 7.02 7.9 4.75 7.87 5.67 2.29 7.1 5.58 0.68 1.8 4.59 0 3.2 1.94 3.25 1.8 11.8 1.8 5.2 6.6 4.38 7.39 2.58 3.02 2.82 11.1 2.66 0 1.05 1.05 0.44 0.77 6.16 2.49 0 7.77 5.9 3.99 0.77 12.2 2.49 10.4 8.96 1.8 8.63 11.6 11.5 10.4 2.19 9.88 7.88 2.82 8.67 10.7 6.51 5.92 4.9 10.6 4.12 4.84 4.43 4.38 1.47 5.78 7.06 5.83 5.19 9.13 8.37 11.2 9.01 10 8.76 7.29 1.47 10.2 9.54 9.28 10.8 9.65 1.65 8.65 9.88 7.73 9.77 9.88 7.7 6.88 9.2 11.9 5.63 11.9 1.28 0.77 0.77 12.9 9.86 6.23 10.9 7.67 3.36 3.54 15.5 8.59 10.4 9.45 1.28 8.39 13.8 10 10.3 12.7 12.5 11 6.74 11.9 11.2 7.92 12.1 8.21 11.4 12.3 10.4 9.21 10.2 2.74 9.66 8.18 13.9 9.52 9.2 11.3 13 5.82 12.6 3.2 3.59 11.3 11.5 11.8 12.4 15.9 12.5 8.18 9.88 6.07 2.74 11.1 6.32 6.45 9.35 14.1 6.24 11 9.99 10.2 11.4 10.4 12.2 10.1 9.39 9.95 5.01 11.7 11.6 10.4 8.89 10.6 10.1 11.7 11.3 10.5 9.93 10.5 10.2 11 10.3 9.55 10.5 11.2 9.53 11.7 10.5 11.8 9.45 11.4 10.8 9.96 9.92 11.4 9.11 9.89 9.12 13.2 13.6 10.4 11.3 2.19 6.52 7.33 7.74 6.36 1.8 1.8 1.47 6.51 9.12 7.39 9.98 9.16 7.23 11.9 10.2 15 10.8 1.47 9.66 5.31 7.38 10.1 9.15 7.21 2.95 11.9 6.65 11.5 10.6 6.49 8.61 10.5 10.8 9.52 10.2 9.67 8.47 8.33 10.3 9.42 10.3 9.89 0 10.7 9.53 9.63 4.02 2.74 10.8 13.5 9.41 10.5 9.34 5.62 9.12 4.61 2.07 11.7 4.52 5.9 5.84 12.1 11.1 12.8 6.94 10.2 8.05 10.5 7.85 5.16 11 13.2 10.6 6.66 10.3 10.8 8.75 12.2 11 10 7.43 7.87 0.77 11.1 2.49 9.69 8.89 9.44 4.26 13.8 3.75 0.44 13.6 4.52 7.54 2.4 2.19 4.77 12.2 11.3 10.7 5 11.4 8.84 0.77 10.2 5.44 4.27 3.4 13.4 10.2 10.2 1.28 8.65 2.29 5.53 1.05 0.44 4.15 0 5.13 6.2 0 4.96 6.96 12.7 8.66 12.9 10.2 11.4 8.87 9.84 9.55 7.92 8.35 8.75 11.5 5.6 0.44 9 4.51 3.79 8.4 7.43 6.2 11.4 9.3 0.44 6.53 9.49 8.64 1.05 3.5 4.2 0 13.3 9.42 10.8 12.3 10.7 0.44 12.2 8.91 0.44 2.66 4.28 3.51 4.77 1.28 1.47 11.4 8.51 13.2 7.92 7.12 9.25 8.18 8.42 2.89 3.2 8.83 9.57 12.1 9.29 8.31 9.33 7.73 2.66 11.1 6.29 11.7 4.43 4.81 6.39 10.1 10.8 8.85 6.52 4.75 9.03 5.76 2.58 6.75 7.72 4.61 5.88 9.15 14 4.24 7.39 12.5 1.94 1.47 2.58 10.8 8.3 11.1 8.88 11.3 8.74 9.07 6.16 12.2 9.28 10 11 8.23 8.78 9.48 5.42 12.4 9.46 0 10.9 14.5 0.44 5.33 10.3 8.62 11.8 0.44 8.31 9.9 8.86 5.23 9.36 5.5 9.65 2.89 11.3 5.93 4.26 10.9 9.89 9.72 4.63 4.48 0.44 9.17 10 11.6 12 5.74 9.94 9.31 9.26 2.29 2.17 2.07 13.2 3.3 10.8 10.1 5.04 4.48 0 6.97 8.96 8.78 9.84 10.1 12.2 7.75 8.76 10.6 13 5.26 2.49 13.1 6.46 5.19 1.8 8.59 10.6 11.5 9.33 10.3 11 9.66 8.08 8.8 6.31 7.86 6.63 10.2 8.13 8.54 2.07 9.19 6.94 12.2 8.36 11.5 9.41 7.51 9.32 7.85 9.7 11.2 7.45 8.3 10.2 7.45 9.72 6.76 10.4 11.4 9.17 10.2 10.4 8.76 11.3 3.2 9.99 6.17 10.5 5.07 6.45 10.1 10.6 9.77 6.19 6.33 10.8 4.5 9.49 10.5 9.52 10.3 9.25 8.76 10.8 10.1 10.8 6.87 9.45 10.3 11.4 11.3 9.92 11.2 3.96 9.54 8.74 1.37 5.29 8.25 5.4 7.98 8.84 8.24 11.5 9 9.61 11.3 8.99 7.91 10.3 11.1 7.28 8.26 7.97 8.99 9.67 8.65 12.4 9.92 10.4 12.7 7.96 9.69 8.82 11.6 8.4 10.3 9.17 9.05 10.8 7.8 9.58 10.1 8.76 9.4 10.6 3.08 9.03 6.67 7.93 7.73 10.9 10.6 8.54 9.05 7.63 9.3 8.71 12.2 10 11.2 7.84 8.22 6.47 11.5 2.82 9.87 11.6 8.16 10.4 9.87 4.73 6.49 9.15 10.6 7.32 8.79 2.29 11 4.33 7.14 7.22 7.78 8.46 7.72 9.08 8.6 10.2 8.7 9.34 9.91 10.6 9.09 11.2 4.79 8.69 9.07 9.46 9.35 10 9.3 8.31 10.1 10.7 8.5 7.71 0.44 0.44 2.4 9.58 12.9 10.1 6.51 4.88 7.7 9.22 10.6 10.2 11.3 0 9.73 8.97 7.24 7.61 9.63 8.83 10.5 10.2 9.58 8.68 4.33 8.18 9.81 2.07 11.1 9.2 8.27 7.9 10.9 7.97 9.18 10.5 9.61 4.34 3.2 7.63 11 10.5 10.3 11.8 8.95 5.6 7.07 9.56 8.48 8.55 13 8.74 9.69 10.2 4.61 1.05 9.6 10 9.37 9.96 9.63 9.73 6.61 10 6.9 8.5 10.8 9.39 9.97 2.82 8.55 11.5 0.44 8.77 9.82 3.14 4.61 5.53 3.89 9.14 9.45 1.28 9.41 9.18 8.89 10.2 8.66 9.51 9.26 11.5 10.6 6.72 11 3.63 9.82 6.81 5.52 4.09 10.7 9.23 5.3 6.95 9.89 10.5 10.8 10.3 9.76 1.47 10.3 2.07 3.67 9.06 10.6 9.35 7.33 2.07 3.86 11.2 8.29 8.85 2.4 11 10 8.24 10.3 9.61 9.55 8.19 4.77 8.53 9.63 1.05 7.49 12.6 9.44 9.77 10.7 8.9 6.84 8.38 10.5 8.93 12.5 9.44 9.94 9.8 8.33 9.62 7.14 7.29 10.2 8.59 8.64 8.61 10.8 10.8 6.85 10.2 11.3 10.3 6.61 9.98 8.17 1.05 11 9.18 10.3 10.1 4.12 8.96 6.19 9.99 7.71 4.67 11.1 8.64 8.27 1.47 12.4 6.02 9.24 10.5 1.47 9.34 9.33 10.9 11.5 9.19 11.7 9.36 11.9 8.81 8.55 9.25 10.8 11.1 11.4 10.2 10.4 9.85 5.82 10.1 8.58 9.17 11.5 10.3 9.65 8.65 10 9.74 9.35 9.95 4.55 7.95 7.56 4.98 10.3 10.1 8.51 8.85 8.36 8.86 9.51 8.65 8.74 9.39 7.79 8.85 11.3 2.95 0 8.55 9.53 7.62 4.28 8.42 10.3 10.2 11.6 10.5 3.02 9.57 10.8 9.58 9.71 2.19 11.5 10.6 10.7 8.91 10.3 9.96 11.9 10 10.1 13.1 9.87 11.9 6.39 11.3 10.8 12.4 10.1 9.27 9.56 8.22 12.7 7.88 2.58 6.88 11.1 11.8 10.5 8.05 11.7 10.7 11.1 8.34 8.63 10.4 11.3 10.6 8.87 9.49 10.4 9.83 10.1 9.54 9.51 7.76 9.17 8.53 11.6 10 8.33 7.12 9.29 7.54 9.26 7.17 11.2 9.46 10.6 7.55 11.4 7.17 6.25 5.03 6.63 6.97 8.76 3.45 11.5 10.5 9.47 10.1 8.19 10.2 10.4 12.2 10.8 6.82 8.42 4.84 13.4 6.54 5.26 8.87 8.2 11 8.27 0.44 11.2 2.89 8.97 11.1 12.2 8.5 11.1 1.47 8.96 8.72 1.47 4.33 7.87 10.3 3.14 11 7.38 11.4 0.44 11.1 8.7 10.7 10.5 8.67 5.09 0.77 8 9.42 1.47 9.88 10.4 9.12 11.8 3.94 11.8 13 3.93 8.26 4.73 9.27 11.1 7.62 9.8 8.46 7.57 9.6 8.31 7.53 8 6.17 9.92 8.45 0 0.44 10 4.41 11.2 10.2 10.3 8.8 11.4 12.2 1.28 12.7 9.88 11 6.83 12.2 0.44 10.6 12.1 14.1 8.06 7.46 10.6 12 4.41 1.05 11.7 5.84 8.72 10.6 13.8 9.89 9.19 6.44 4.09 8.61 5.61 12.3 1.65 13.3 1.94 8.82 10.6 8.26 9.49 10.6 10.7 2.66 9.7 9.76 11.7 9.95 9.79 10.7 9.01 8.03 7.93 6.58 8.35 9.37 9.38 8.04 8.15 13.1 10.2 12.1 8.23 10.3 8.72 10.7 9.8 7.13 5.39 10.8 10.3 11 11 8.73 9.29 1.47 7.26 8.7 11 9.03 11.2 8.42 5.43 14.3 8.79 12.2 0 4.12 4.23 10.1 12.6 9.7 10.2 11.4 10.8 7.06 11.7 12.9 7.61 9.34 10.2 5.29 6.82 3.68 8.93 7.91 3.63 3.79 8.58 12 1.8 8.92 6.67 9.46 9.5 11 8.33 13.5 2.19 10 8.73 7.29 4.84 4.41 4.48 10.6 13.3 10.4 4.75 10.7 10.9 0.44 12.3 9.46 12.3 11.2 11.1 7.74 11.6 10.7 4.33 11.5 3.89 10.3 2.58 11.4 4.66 7.67 2.15 3.2 11 10.9 8.45 10.7 8.37 8.53 7.59 8.65 5.48 4.28 2.82 1.65 6.68 10.3 4.73 6.42 3.63 5.07 10.4 0 9.6 7.02 10.3 5.79 11.6 4.69 8.8 8.28 9.2 9.18 8.23 10.7 9.14 6.11 8.54 6.48 10.4 7.63 9.19 10.1 10.8 5.61 3.67 6.92 6.26 7.35 1.94 8.79 1.05 0.77 8.25 7.55 4.31 7.87 3.85 10.8 8.92 11.7 0.44 9.41 7.26 5.35 2.81 6.98 2.91 8.7 7.24 6.02 8.52 9.63 11.4 10.3 13 11.6 3.3 4.75 3.3 9.78 7.89 10.5 11.2 11.5 7.08 3.75 10.8 9.95 12.2 11.4 10.5 2.82 4.71 9.67 7.17 6.46 11.3 7.71 5.29 9.31 9.11 0.77 7.57 10.9 9.21 9.27 9.61 9.48 11.8 9.81 5.74 9.82 10 4.02 2.29 11.7 8.29 9.27 10 0.44 7.99 4.02 5.89 10.4 7.25 7.44 10.1 11.1 10.8 10 9.14 8.57 2.49 1.94 11.9 9.78 11.4 10.8 9.02 9.81 8.13 1.05 10.2 9.1 9.82 11 7.6 10.6 9.85 8.51 9.87 9.59 8.73 10.3 8.08 10.1 10.2 11.5 6.39 8.39 9.28 9.84 7.85 11.5 10.5 7.28 11.9 9.11 6.27 10.2 7.53 1.8 8.59 5.99 9.27 8.24 8.26 9.52 5.81 5.66 10.6 8.48 7.71 9.64 0.77 8.77 10.2 9.31 9.72 8.89 9.29 7.53 10.8 9.74 10.4 8.64 10.1 10.2 5.66 10.1 7.83 10.2 7.83 6.47 5.12 12.1 9.16 5.34 7.26 9.91 6.97 7.69 8.54 12.9 10.3 4.79 10.8 10.9 9.84 8.4 7.36 10 10.1 9.23 10.7 10.5 9.46 2.58 6.92 7.55 13.1 10.7 2.49 9.62 9.07 10.2 8.99 10.5 3.2 11.2 10.8 8.59 11.7 9.32 9.01 10.7 10.7 2.19 10.4 9.34 8.17 9.71 9.2 4.46 5.56 10.2 1.47 12.2 9.82 1.05 9.96 8.09 8.5 0 9.45 2.95 11.3 2.82 5.3 2.82 9.18 4.41 9 11.5 5.58 5.84 9.45 10.2 3.96 10.5 9.23 12.4 9.37 7.13 7.38 10.3 12.8 9.39 9.39 12.9 5.46 8.02 2.74 9.31 10.2 10.4 9.69 8.81 7.47 9.26 7.46 8.39 8.33 9.9 9.31 9.93 10.5 8.27 8.14 11.3 8.59 8.8 9.95 8.43 9.74 6.75 8.6 6.44 10.6 8.12 6.36 6.38 4.31 10.6 8.08 9.88 9.45 6.26 7.45 8.87 11.2 10.9 11.8 9.48 9.68 8.53 8.09 7.14 9.89 10.8 8.73 10.7 5.72 11.3 7.44 8.79 11.7 11.7 9.36 7.62 10.1 9.96 11.4 8.83 9.38 9.91 9.74 4.79 11.4 5.64 9.59 8.03 8.85 7.57 10.6 9.27 12 8.68 10.5 8.15 9.94 11.5 10.4 9.32 10.8 9.13 13.4 7.48 10.3 7.56 8.6 8.01 4.96 8.55 9.99 7.22 9.92 4.57 11.1 8.83 10.4 7.86 11.1 11.2 9.15 12.2 10.4 7.43 10.9 5.67 7.52 8.06 10.9 10.6 10.8 9.05 8.67 8.96 10 8.58 4.26 9.09 8.44 8.61 0 9.91 9.49 10.1 10.7 5.82 9.07 3.54 9 8.21 10.1 8.83 10.4 8.5 7.81 9.49 5.88 8.23 7.82 7.61 6.84 12 8.11 10.1 7.12 10.5 5.23 9.3 0 8.74 8.14 7.78 7.88 7.9 10.4 8.45 9.84 9.86 9.55 1.28 7.12 6.94 8.11 10.3 6.5 7.48 5.7 8.42 0 9.48 11.8 7.53 7.36 11.2 8.6 7.02 10.1 10.6 6.18 11.7 11.9 12 6.13 9.52 9.05 10.2 8.56 8.11 9.18 7.94 9.91 12.1 9.09 10.5 6.29 8.1 6.54 9.86 9.34 4.61 9.76 6.34 2.19 10.7 8.23 10.6 6.07 3.08 8.71 8.85 11 10.2 8.72 7.32 7.26 10.2 3.93 11.1 9.45 8.19 10.2 5.65 12 8.75 8.64 8.16 10.3 10.3 9.23 7.45 7.49 0.77 10 4.55 4.13 6.59 7.95 2.82 10.7 2.89 11.6 3.59 5.78 7.87 9.95 8.4 9.17 9.75 5.19 8.78 9.54 11.5 6.07 5.92 4.88 10.1 8.04 8.38 8.31 8.39 7.43 8.99 11.2 6.27 9.99 9.13 10.3 8.83 9.56 8.43 4.52 10.7 9.58 9.85 8.76 10.6 8.67 6.92 10.1 8.29 11 8.4 9.84 5.56 9.1 11.1 8.41 8.54 3.89 9.38 9.09 8.19 8.43 5.09 1.28 10.4 11.2 8.99 9.26 10.3 9.75 7.25 9.19 9.85 10 9.62 11.6 4.12 8.81 8.21 9.78 9.63 9.24 10.8 10.6 10.5 11.8 10.9 9.2 9.21 10.4 7.81 10.2 10 8.63 8.75 8.19 9.83 10.1 5.44 6.82 9.96 8.19 7.83 13.2 7.7 8.56 10.5 10.5 6.23 10.5 10.8 8.65 10.6 4.02 10.9 7.59 9.99 6.61 4.38 9.75 9.67 10 6.89 2.07 10.3 10.3 9.81 5.94 10.9 8.17 9.82 10.5 8.23 11.9 1.94 9.75 8.08 8.11 7.39 10.8 9.05 7.74 9.05 9.71 7.78 2.82 8.81 6.11 5.52 10.1 10.7 9.49 3.86 8.28 7.74 9.41 2.95 10.2 10.7 10.2 7.5 9.7 11.9 10.6 7.79 3.99 10.4 9.2 6.76 7.51 10.7 10.5 9.14 10.5 9.93 9.64 9.71 9.23 11.6 9.36 8.59 1.47 8.53 7.6 9.16 12.6 1.47 9.04 10.2 10.9 9.57 9.76 1.28 10.3 10.5 9.12 6.21 9.9 8.52 10.7 8.78 7.91 6.87 6.48 8.58 8.13 9.33 0 9.06 11.4 1.47 9.73 7.29 10.5 11 7.73 8.42 6.65 5.5 8.19 8.45 9.93 0 9.4 9.9 0 6.33 4.63 9.56 10.7 9.55 9.79 10.2 6.25 8.84 7.91 7.51 9.25 8.35 8.58 9.29 9.73 4.02 9.14 5.75 10.5 8.43 10.3 9.13 7.07 6.32 7.56 7.87 8.17 9.02 10.4 10.7 4.53 6.35 7.84 10.9 10.7 6.29 10.9 10.6 10 9.27 7.96 7.31 9.87 6.61 1.8 2.74 8.2 11.3 10.2 6.67 10.8 7.6 11.4 8.79 10.6 8.5 9.68 10.6 9.61 10.7 4.26 7.39 12.3 10.4 6.58 9.4 1.8 7.83 9.54 6.08 3.89 0.44 0.77 8.39 4.79 10.1 9.47 8.13 0.44 8.23 10.2 8.55 10.7 9.91 9.68 7.48 4.36 10.2 5.19 11.8 10.5 6.75 11.5 0.44 7.53 9.65 9.98 4.55 6.32 4.48 4.91 1.05 10.2 1.28 8.42 6.36 7.56 9.34 10.1 6.11 1.74 2.89 8.37 9.96 4.35 5.04 9.1 1.05 2.29 8.17 5.25 8.57 8.8 8.96 9.8 6.42 5.22 11.2 7.88 11 9.02 12.5 1.28 9.39 10 8.48 6.59 10.9 10.5 7.48 10.2 9.24 10.5 9.4 7.6 7.99 8.34 9.58 9.34 10.2 9.97 9.23 11.1 7.06 8.47 10.5 14 5.36 11.2 8.55 7.08 8.1 6.7 11 10.3 9.82 8.68 10.5 9.73 10.3 9.67 11.6 7.68 11.1 6.8 8.27 7.85 9.03 8.84 7.06 8.99 10.9 9.41 10.8 5.85 10.7 9.07 9.31 9.54 9.17 7.36 10.7 8.77 9.85 10.9 3.71 9.69 9.59 9.9 6.06 10 11.9 11.4 10.3 7.98 7.8 10 11.1 10.7 7.92 10.3 11 9.32 10.7 9.1 8.64 10.7 7.57 8.22 10.3 10.3 12.8 8.02 8.32 10.7 7.12 9.5 8.53 9.43 3.2 9.5 10.3 9.7 2.82 12.1 7.42 10.2 10.5 8.58 8.6 6.65 11.6 9.65 10.1 8.14 9.77 9.59 2.29 3.2 9.43 8.81 9.99 9.74 8.85 10.7 7.12 8.42 9.75 9.65 10.1 7.24 9.98 11.6 9.25 9.28 6.99 9.27 10.8 11.2 11.3 9.91 11.4 9.82 10.2 8.7 8.9 9.82 10.7 11.6 11 8.78 6.81 9.09 11.5 6.92 11.7 10.6 8.53 8.68 9.57 9.91 8.59 9.98 10 4.52 9.56 9.5 12 10.4 10.1 6.22 5.71 9.61 8.22 10 8.86 8.7 8.35 7.94 8.86 11.2 8.06 9.37 9.08 9.81 9.86 3.36 8.52 9.5 9.36 6.29 6.42 6.62 8.91 8.1 9.47 7.4 8.57 2.66 8.09 9.95 4.23 9.47 6.08 5.22 11 12.2 6.65 6.87 9.22 2.66 5.68 9.78 10.5 2.49 10.6 9.49 0.77 8.71 8.97 7.89 11.1 9.96 7.21 8.54 10.1 11.9 10.6 9.62 9.27 9 10.5 6.4 9.05 4.52 9.07 11.4 8.57 9.8 8.61 10.6 8.13 9.86 9.52 4.56 11.4 7.58 9.17 8.17 10.7 1.05 10.2 9.15 11.1 10.5 8.82 4.33 8.24 6.82 11.3 9.09 9.12 8.99 3.89 11.3 2.74 2.89 0.44 13.3 9.07 9.13 10.7 0.77 10.9 8.9 8.53 5.32 11.6 11.5 12.1 7.12 11.1 8.63 12.9 10.5 11.1 9.01 7.88 11 5.58 12.6 8.7 4.96 8.99 3.08 10.8 4.33 11.3 10.8 7.02 7.13 10.5 12.1 4.15 2.29 10.2 10.7 11.9 9.97 11.2 11.8 8.2 9.36 9.52 7.01 9.03 8.29 1.65 5.31 1.47 11.2 9.84 10.4 3.75 11.6 8.23 9.84 11.1 9.62 10.8 10.3 2.07 7.75 8.18 8.91 9.94 2.74 2.89 9.24 9.2 3.63 3.59 3.25 2.95 3.17 4.04 4.43 3.08 2.49 3.75 10.8 3.14 1.94 3.14 4.93 5.34 10.2 2.29 5.16 8.19 5.46 5.46 6.9 6.91 8.14 5.36 4.5 9.66 2.66 3.86 3.63 5.12 2.49 2.49 7.71 3.86 1.05 1.65 4.41 11.6 9.98 7.39 8.96 1.47 8.18 8.68 0.44 4.17 5.25 8.14 11.5 0.77 8.16 10.9 1.05 10.4 9.63 5.64 10.2 10.4 4.68 12.6 11.1 8 9.33 7.89 10.5 6.33 9.91 1.47 3.25 8.98 8.75 11.1 9.02 9.34 8.91 8.66 7.68 10.3 7.9 2.19 9.7 9.85 7.1 9.05 1.28 2.49 12.2 7.25 8.89 3.99 0 14.1 4.63 5.63 5.69 9.86 3.96 8.57 10.7 9.19 9.9 7.84 11.7 10 9.33 10.1 9.1 8.43 3.3 1.05 2.74 1.47 7.65 0.44 10 4.59 10.6 9.55 14.9 9.69 0 9.9 9.28 11 10.5 11.2 6.65 8.26 10.4 10.7 11.1 9.77 9.18 9.62 1.28 11 10.9 12.4 11.6 12.2 10.6 12.9 11.7 8.25 10.4 11.2 11 6.41 10.2 8.18 1.28 11.1 9.11 8.62 9.54 10.2 9.8 6.04 8.12 10.8 11.9 4.38 7.67 8.52 9.66 9.79 5.45 9.06 12.2 4.91 9.34 7.86 8.11 11.8 9.61 10.8 10 11.3 9.3 8.42 12.4 6.8 10.6 8.36 10.8 8.53 9.11 8.74 9.93 8.62 10.2 8.39 10.2 11.1 10.4 10.1 4.9 4.43 9.87 9.43 11.2 6.31 5.22 2.19 9.08 5.81 10.4 5.76 7.89 3.08 5.42 9.43 8.75 5.48 8.77 9.22 6.04 7.89 10 9.5 11.3 8.93 10.8 10.3 9.62 10.8 11 8.99 8.41 6.21 8.79 8.19 8.41 11.4 8.12 10.8 1.94 9.91 11.1 9.69 10.9 8.11 7.25 1.94 9.67 8.38 9.35 11.6 8.58 8.51 10.8 9.76 4.12 10.2 8.4 2.6 11.4 11.4 12.8 9.47 8.17 8.36 8.72 11.6 3.99 11.5 7.27 9.39 0 7.45 7.22 9.38 11.3 1.65 8.65 9.63 10.4 2.19 6.2 9.13 9.91 9.93 12.1 6.8 8.19 8.07 10.5 8.62 10.5 9.16 7.21 4.71 8.64 10 11.1 11.1 10.5 6.07 12 8.21 11.8 11.1 12.2 7.39 9.2 8.67 11.4 7.73 9.65 7.06 11.5 10.6 7.03 9.05 0 9.55 6.51 10.2 5.35 5.44 7.65 11.1 10.3 8.84 11.8 9.9 11 10.7 9.7 7.31 10.6 9.69 8.93 10 11.1 10.7 3.63 11.1 11 11.1 1.47 7.73 6.15 7.63 8.96 11.1 7.53 7.97 11.2 8.88 8.52 6.07 8.59 12.9 8.96 9.27 9.48 10.1 12.4 11.3 10.4 9.37 10.4 8.96 10.2 5.71 5.41 13.6 10.9 10.2 7.25 5.81 9.29 11.1 5.26 1.8 6.62 9.73 10.4 4.71 7.24 8.18 7.64 3.59 8.06 1.05 9.76 4.5 4.02 3.25 12.1 9.89 5.15 4.02 1.05 8.43 2.89 0.44 0.77 10.5 8.78 0.77 8.93 8.77 8.87 7.63 10.2 4.09 9.97 6.15 9.49 6.67 6.97 7.8 3.2 9.34 10.5 11.7 9.79 1.28 1.65 1.8 4.93 10.3 8.55 9.08 9.7 0 9.72 10.2 10.8 6.27 6.61 7.41 10.4 1.05 3.36 10.7 9.87 2.89 10.5 6.21 7.2 10.4 4.09 9.56 8.84 11.4 8.82 7.92 3.75 9.5 11.3 8.53 6 11.2 8.95 4.65 1.8 9.46 5.84 10.6 3.3 7.03 3.75 9.12 9.78 12.3 8.81 8.4 10.1 10.8 9.17 9.23 8.23 11.2 5.68 9.46 8 9.95 0.47 7.53 3.5 2.19 9.86 11.6 7.56 11.8 11.4 9.76 10.9 5.82 4.5 6.72 8.12 10.5 3.54 8.46 9.91 8.11 7.5 7.98 6.04 9.05 8.94 9.52 12.1 0 7.11 8.36 7.6 10.5 11.3 9.16 10 5.84 9.08 3.36 7.29 10.9 2.89 15.1 8.46 2.49 10.9 2.58 3.4 1.65 7.43 1.65 9.94 8.44 0.77 10.8 11.2 9.79 10.1 9.11 10.9 9.41 10.2 5.56 7.89 3.3 3.89 8.71 10.7 4.79 9.51 10.2 8.39 9.39 10 7.64 11.2 9.53 4.86 9.45 0 6.65 9.01 11.6 8.7 8.7 4.31 7.09 4.57 11.6 10 0.77 11.1 8.09 7.65 8.97 5.87 11.5 8.8 10.1 12.2 9.81 9.42 4.31 8.09 11.5 8.11 10.2 10.1 10.4 10.7 6.34 8.33 9.45 8.62 9.53 8.96 11.7 7.62 8.32 8.81 12.1 10.8 8.52 6.7 7.15 6.02 9.08 1.47 7.37 6.8 4.84 9.71 10.1 9.43 6.97 10.8 5.71 1.05 10.8 8.89 7.56 9.55 11.5 6.93 10.1 8.22 10 8.47 4.62 4.36 3.86 10.6 5.96 6.92 2.95 7.79 11 8.25 6.95 8.77 10.4 7.04 6.87 2.66 7.42 1.47 11.1 7.67 5.25 10.6 8.29 9.94 6.05 8.83 8.49 9.16 9.73 9.54 9.76 9.74 5.78 9.93 11.5 12 9.72 10.4 9.94 0.44 6.7 6.79 9.67 9.39 2.82 8.04 0.44 8.77 7.04 6.77 11.3 9.43 2.15 3.02 10.7 8.56 12.7 6.34 9.21 13.5 9.92 10.5 10.2 12.3 7.79 1.28 7.59 2.49 7.96 12.6 5.66 6.85 7.86 3.02 11.8 9.22 7.74 10.6 7.76 12.1 12.7 7.54 12 11.3 10.8 7.54 7.45 9.82 10.1 10.5 8.94 7.98 8.83 12.1 8.24 10.1 9.32 12.1 9.48 12.9 7.54 2.82 12.1 7.39 6.91 10 10.9 9.9 9.24 3.4 10.1 9.98 11.2 9.5 11 10.4 7.2 6.56 8.53 3.82 6.94 9.83 8.98 6.76 6.92 5.12 10.4 11.7 11.1 9.63 1.47 9.6 8.09 11.5 11.2 10.4 10.4 10.6 6.89 0.77 10.3 1.65 0 12 6.84 9.15 12.3 9.81 9.29 3.54 3.08 5.34 9.97 10.5 12 10.5 11.5 8.54 9.95 8.9 4.33 8.84 10.1 8.92 11.7 12.9 8.19 5.68 8.16 8.67 12 11.7 12.2 8.65 7.74 5.29 5.8 7.4 7.74 11.4 5.48 10.6 11.1 10.6 11.5 10.9 13 10.6 12.2 11.7 9.67 11.1 6.99 10.3 9.95 10.5 9.97 1.8 9.05 4.38 9.63 10.8 4.93 8.23 5.46 10.3 8.63 3.59 6.58 10.4 9.2 6.07 10.7 6.32 10.5 9.82 8.04 11.6 10.8 9.61 10.4 10.5 9.74 11.8 9.02 8.83 2.29 9.78 10.9 10.1 0.77 3.89 7.93 10 0.77 7.48 7.56 10.1 12.7 1.28 7.99 10.9 9.55 9.68 8.99 5.95 3.79 3.56 2.16 12.2 7.14 5.52 0.77 11.2 10.6 0 6.19 7.84 2.07 8.31 9.47 6.93 5.1 10.7 8.47 5.09 12.2 9.29 8.69 5.75 11.8 9.59 10 9.61 9.62 9.65 9.31 8.54 10.9 0 9.46 9.8 6.1 6.26 0 10.1 7.09 9.41 8.33 10 16.9 7.24 8.63 2.89 7.65 0.44 2.2 10.3 0.44 9.11 8.86 8.74 4.26 10.6 4.38 10.9 11.5 9.45 9.6 8.13 1.65 0.77 8.86 10.9 0.77 7.86 6.31 7.98 2.89 8.94 10.6 1.28 9.41 3.45 0 9.13 12.4 5.01 10.8 10.2 10.4 1.05 8.63 8.65 11.5 5.6 10.3 6.72 9.1 8.74 9.89 3.4 9.16 8.82 10.9 8.3 11.7 8.65 10.7 9.49 11.1 9.33 9.05 10.9 9.87 1.28 9.38 10.6 6.72 7.06 8.93 4.09 9.81 10.8 3.14 2.19 5.21 8.91 0.44 9.19 10.3 9.56 10.3 7.86 10.2 4.57 7.89 9.52 4.71 6.78 0 5.61 2.07 6.76 9.14 7.67 0 10.9 9.31 8.54 10.6 15.3 14.4 14 13.4 10.3 11 14.1 3.67 14.7 8.03 13.7 13.8 13.5 13.9 14.4 12.2 14.5 11.1 13.9 4.06 12.5 11.6 9.73 13.4 13.2 13.2 13.4 13.4 14.4 12.4 14 14.5 12.8 13.7 11.3 13.7 13.8 12.2 9.38 8.69 13.8 8.17 15.1 14.1 13.1 10.7 10.6 13.1 13.3 13.7 14.6 12.1 14.9 4.31 4.86 4.38 4.96 7.47 13.8 2.19 2.29 15.1 11.2 7.15 11.9 9.08 9.55 12.9 14 14.1 12.8 15.1 14.2 12.9 14 12.6 13.3 14.5 14.1 11.1 15 15 13.3 13.6 13.8 14.3 12.7 10.3 9.98 13.4 8.75 12.4 4.73 9.66 13.9 11.3 11.3 12 10.9 0 7.65 10.4 10.5 5.77 6.09 10.9 10.1 10.5 2.58 4.12 2.58 3.77 3.93 11.6 7.34 2.07 7.78 0.44 15 4.23 8.43 13 13.1 0.77 6.89 5.88 11 10.4 10.3 11.6 9.58 4.23 5.96 11.4 8.73 10.3 12.8 9.2 9.23 12.2 10.5 9.53 6.23 9.75 10.3 10.4 13.7 4.45 6.75 9.22 4.71 2.66 2.19 4.38 1.94 10.8 4.81 3.4 6.56 5.3 12.1 7.06 4.12 13.3 9.48 11.3 0.44 2.58 6.13 5.93 4.38 0 5.78 6.25 2.74 2.31 6.78 4.71 6.39 0 7.79 9.84 0.44 3.63 4.63 6.04 1.47 6.41 8.33 13.3 6.66 5.83 8.76 12.2 11.6 8.57 7.96 9.88 3.14 8.98 9.33 12.2 9.18 9.65 9.61 8.17 4.06 7.83 9.36 7.58 9.81 10.9 10.5 9.88 7.53 8.28 11.5 7.84 3.59 8.05 10.2 9.76 10.9 5.95 9.5 3.08 3.54 9.82 9.07 8.16 8.73 7.74 8.34 2.66 10.2 8.05 7.96 8.98 7.32 11.6 8.52 9.29 4.81 10.3 4.26 8.49 9.4 6.03 8.37 4.38 11.3 6.53 3.93 6.59 3.82 6.94 8.52 8.4 10 3.25 13.1 3.02 3.4 10.3 7.76 6.14 6.34 8.8 11.4 5.25 11.8 6.58 8.11 4.2 5.84 2.29 8.37 6.97 6.5 8.95 3.63 8.69 6.88 9.84 9.13 12.4 8.59 11 10.9 7.41 6.47 6.17 6.27 11.2 7.08 5.65 8.68 1.8 9.05 6.21 8.89 2.19 7.79 0 11.7 9.83 4.77 7.79 6.34 8.11 11.1 10.1 9.14 9.22 4.38 10.1 3.14 4.5 3.2 6.95 4.28 8.45 13 1.28 8.23 6.96 8.26 8.75 12.9 10.2 9.26 9.61 6.14 8.9 1.8 5.15 10.7 9.27 9.1 9.71 1.28 5.03 7.45 7.73 5.66 1.47 1.28 9.82 0 12.8 2.49 12.5 12.9 4.23 8.71 6.46 8.66 8.55 9.04 9.56 7.56 8.05 11.2 1.28 2.66 1.8 4.86 11.7 5.87 1.05 12.1 11 8.75 10.3 11.8 8.23 5.57 11.7 7.72 6.58 10.3 9.86 10.2 10.3 8.78 10.4 6.87 6.8 0 5.71 5.46 12.1 9.36 9.3 3.3 6.78 7.34 1.8 0.44 9.41 7.68 8.06 2.29 0 10.2 6.41 6.63 8.42 5.06 4.63 5.27 1.47 1.65 7.57 9.08 2.07 10.7 9.44 4.79 8.09 7.7 7.47 10 3.63 3.96 7.92 1.8 8.6 10.1 9.44 7.41 1.28 0.77 1.8 8.3 1.65 10.5 10.2 2.49 8.88 8.41 10.3 12 9.02 10.8 8.67 8.64 10.2 9.5 9 8.96 10.7 9.65 2.82 6.26 0 0.44 5.04 3.2 4.06 3.4 9.44 2.89 5.48 0.44 9.55 1.28 9.7 9.58 1.28 10.9 1.47 4.95 1.67 7.97 9.89 3.71 1.05 9.97 4.1 0 7.11 1.05 10.4 8.7 6.47 2.49 3.31 1.28 1.28 10.9 1.94 5.73 5.96 4.52 1.47 3.71 5.27 5.86 0.77 4.12 7.31 7.89 10.9 0.44 10.2 1.94 2.95 1.05 10 0 7.06 3.63 11.8 6.24 9.82 3.03 6.73 10.5 0 0 8.48 9.49 10.4 5.26 10.8 1.94 7.8 2.07 0.77 4.26 3.02 9.65 8.65 6.59 6.8 9.94 10 13.3 5.57 4.57 7.42 11.6 3.25 2.19 10.2 9.31 9.74 11 9.36 7 8.17 3.08 8.12 9.95 10.7 9.39 11.6 9.86 8.96 6.2 9.93 10.9 8.58 8.61 9.47 8.8 12 11.2 10.9 8.72 6.96 9.37 11.9 7.49 9.88 10.5 9.76 10.5 8.28 9.69 7.7 6.03 9.61 11.7 6.16 6.92 8.06 9.69 8.73 4.28 10.6 13.5 7.48 4.23 9.51 12.4 1.8 8.99 8.01 1.8 9.26 9.34 10.6 7.98 4.79 9.82 8.03 6.45 11 3.2 10.7 10 10.3 6.34 8.62 9.89 8.42 12.8 8.31 9.11 8.63 8.37 8.21 7.38 8.9 10.8 5.88 2.49 4.65 3.45 8.28 7.5 10.4 4.86 9.89 2.4 9.91 6.68 8.75 9.42 10.5 7.75 6.72 8.15 10.4 5.8 3.99 7.96 7.08 9.59 6.96 8.09 10.6 3.45 10.1 3.63 9.89 8.91 9.91 8.88 10.2 10.4 10.1 8.09 9.78 8.8 11.3 9.31 9.74 10.2 3.5 9 11.8 9.89 10.5 8.71 5.3 9 2.19 9.1 9.41 6.65 4.48 4.31 6.4 6.45 10.8 8.41 10.1 2.89 8.97 6.56 7.7 1.65 5.99 7.03 7.36 9.74 9.15 10.9 8.61 10.7 9.05 9.75 3.45 12.7 12.6 8.77 9.53 10.6 4.36 11.5 10.1 11.6 9.53 11.2 1.28 8.77 4.79 4.63 7.67 9.81 11.9 1.47 11.8 10.4 6.17 6.23 9.38 8.3 11.6 8.12 7.5 8.54 9.36 8.28 8.21 10.7 10.5 11.1 1.28 12 0 0 3.14 1.28 5.31 7.84 5.87 5.15 7.65 0.77 0.77 5.74 5.63 6.42 2.82 7.38 3.93 12.1 9.05 2.74 4.9 4.52 2.89 4.33 8.44 10.1 9.66 7.45 10.1 6.16 6.69 5.31 7.32 0 11.3 6.62 4.79 4.12 2.29 9.21 1.94 7.25 5.25 3.5 4.5 1.28 11.7 3.99 0.77 0.77 1.05 9.25 8.74 7.59 6.47 2.29 8.97 6.97 5.29 5.04 1.47 7.45 0.77 1.65 10.3 4.23 3.93 11.2 7.59 3.86 0.77 5.59 0.44 15.2 1.28 6.59 9.09 3.25 5.71 8.81 5.77 8.97 6.68 3.36 8.84 10.5 9.68 11 8.04 3.89 1.47 8.9 4.29 9.36 2.66 5.97 10.6 9.39 6.03 7.61 10.9 10.4 12.4 2.19 8 10.3 10.6 10.2 7.34 6.23 9.12 10.4 8.8 7.62 5.55 0.77 11.6 6.77 9.84 10.3 10.2 9.44 3.2 9.92 8.69 1.47 4.26 7.45 3.75 10.2 9.98 11.7 10.9 11.3 5.35 7.72 5.6 11.1 3.79 10.3 6.84 9.04 8.91 8.72 10.9 10.7 11.5 5.22 5.72 3.3 6.67 7.45 9.75 7.67 9.48 4.67 3.2 8.59 12.5 11.1 10.1 13 10.8 9.36 10.5 9.78 12.4 10.9 10.7 10.7 10.4 6.92 5.41 7.08 9.45 10.7 10.5 9.57 9.17 0.77 11.5 1.8 11.8 10.3 9.82 11.5 12.6 11.8 11.8 10.3 9.86 12.3 7.92 2.4 12.5 1.94 6.88 9.34 11.8 9.31 12.2 11.3 7.28 9.87 10.1 10.8 5.3 13.3 9.4 10.4 6.82 4.61 8.26 2.74 12.2 6.64 5.57 9.01 9.86 8 13.7 0.77 7.35 14.4 9.94 10.7 11.7 7.95 3.2 12 9.85 11.4 12.7 11 10.4 12.3 11.6 9.25 10.1 7.23 10.6 11.2 13 9.65 11.5 8.81 9.53 11.5 10.6 12 12.4 12.4 12.1 11.4 12.3 8.77 2.58 1.05 9.6 9.22 11.8 14.1 1.8 12.5 1.05 11.5 10 12.2 4.96 8.89 10.3 2.19 1.8 4.02 1.47 1.05 4.43 2.07 3.36 12.4 4.23 1.65 1.65 6.28 13.3 12.4 6.99 9.43 0.44 3.36 8.87 7.72 8.75 7.78 10.6 10.7 4.28 4.95 9.74 11.1 0.44 4.26 9.65 7.73 10.5 9.62 9.09 7.52 10.8 9.49 8.4 10.2 10.2 7.39 13.2 7.58 9.68 10.3 12.3 4.17 11.2 9.94 8.69 7.67 12.5 9.71 10.6 8.96 7.48 10.2 7.23 8.75 9.48 0.77 11.6 3.63 2.07 5.91 11.5 6.29 8.36 2.29 4.43 3.54 10.6 9.45 1.94 8 7.58 10.4 9.33 10.2 6.7 11.3 7.29 10.2 11.5 13.1 10.8 9.45 9.09 7.74 7.24 9.43 4.06 1.94 10.7 13.4 12 10.9 11.5 10.7 9.14 11.8 1.65 2.66 8.45 10.5 8.87 9.99 9.32 9.28 8.51 7.6 3.93 3.02 4.15 9.15 9.6 5.47 10.4 3.3 6.29 7.23 9.06 1.8 0 11.2 0 10.1 8.78 9.32 10.2 11.6 9.81 10.4 7.89 8.56 12 1.05 10.7 7.87 10.1 11.7 9.91 10.6 4.73 8.21 11.6 5.45 13 1.8 0 8.55 10.8 9.17 5.86 10.8 9.9 9.78 8.68 11.8 10.5 8.32 10.1 6.23 1.65 7.72 14.5 10.3 5.46 10.5 2.29 9.02 8.88 3.3 9.32 5.84 10.4 4.38 8.81 9.69 8.37 9.28 11.8 8.64 10 13.7 6.15 3.75 14 10.3 8.46 8.49 7.75 6.27 5.71 2.95 15.6 9.79 0 11.9 6.21 9.44 10.4 5.1 11.3 4.67 8.58 13 9.2 8.06 11.6 2.3 2.49 10.6 1.05 10.1 6.95 0.44 10.3 10.3 10.8 10.4 6.69 6.63 11.1 10.9 10.8 4.65 11.5 10.8 10.6 8.35 12.5 1.65 10.8 10.8 9.46 8.39 3.93 13.1 11.2 4.63 6.91 6.9 11 16.5 9.34 4.2 8.25 12.2 7.37 7.39 7.77 10.7 10.8 4.02 12.1 15.3 8.95 5.09 4.9 3.54 5.48 10 8.41 10.4 9.05 4.55 11.2 8.87 0.77 0.77 0.44 2.29 9.21 0.77 9.54 5.04 10.3 11.8 6.96 2.82 12.6 12.6 9.21 12 10.7 10.3 10.6 2.19 7.8 11.7 9.55 11.4 2.4 13.6 13.2 10.2 8.88 14 14.3 10.8 10.6 12.3 6.86 15.3 1.67 9.06 8.86 10.8 14.5 7.97 9.78 8.39 11.2 7.86 6.12 9.99 0 13.4 11.9 11.8 5.52 9.52 6.81 0.77 1.47 4.36 5.66 5.61 4.95 4.61 5.85 11.5 9.73 11.1 8.19 10 1.47 9.87 10.9 11.4 7.45 9.5 11.7 11 10.2 10.8 11.7 8.55 5.4 8.44 9.87 7.14 4.02 11.6 5.47 4.91 14 7.33 9.32 9.81 6.73 8.53 4.31 3.08 4.2 5.34 7.65 1.47 8.45 3.8 4.88 7.1 8.89 9.71 5.15 9.84 0 4.17 5.25 12.5 6.36 6.27 1.05 6.75 8.49 6.71 0 10.9 0 6.55 4.02 4.61 3.2 5.3 9.66 7.05 0.77 13.6 3.86 8.31 0.44 5.04 0 4.17 6.86 8.49 3.3 8.68 3.02 2.07 10.5 6.1 9.34 2.82 5.8 5.66 4.38 1.07 2.58 5 5.4 3.86 3.45 3.14 4.28 5.57 0.44 4.91 4.73 5.01 0 8.14 12.7 8.06 4.86 9.14 0.44 6.04 12.1 6.61 5.68 1.47 7.74 10.9 2.95 0.44 1.05 10.6 7.62 7.55 3.45 3.4 1.05 7.29 7.68 1.05 6.13 6.11 9.13 7.38 7.49 6.83 7.67 0.77 7.04 0.44 11.3 0.77 12.7 1.65 13.6 14.7 13.2 0.77 9.26 10.7 9.87 9.35 10.9 12.4 10.7 7.01 9.93 10.2 9.9 11 3.08 10.8 11.5 12 9.46 10.5 8.49 10.9 11.5 11.3 5.47 9.32 1.65 2.07 8.72 4.41 10.1 4.41 10.2 7.82 10.3 11.3 10.6 9.83 10.6 8 11.2 8.95 10.6 8.14 0 11.2 0.44 11.1 11.7 11.9 12.2 11.7 8.55 8.47 9.97 11.2 10.5 0.77 9.91 10.4 9.59 8.39 11.8 12.4 5.92 8.72 9.99 7.98 12.4 13.1 13.2 11.2 10.9 11.4 12 9.44 3.67 3.86 10.2 13.3 13.4 11.9 9.76 1.94 6.73 3.79 1.05 6.12 8.27 9.1 9.16 7.48 7.79 10.2 11 5.94 8.86 12.5 10 9.98 6.02 11.7 11.2 10.9 12.1 9.83 9.65 0.77 5.53 9.68 1.28 1.28 7.01 1.47 3.63 9.14 4.95 2.95 0.44 8.28 8.72 3.89 12.1 1.05 2.29 13.6 9.85 7.39 10.1 5.17 11 5.46 12.4 10.5 7.86 8.52 7.54 7.35 13.2 6.43 9.97 10.4 13.5 8.92 13.4 12.6 11.7 14.3 6.6 12.3 12.7 4.86 11.8 8.17 9.03 9.19 6.19 7.79 10.1 8.3 8.43 6.65 12.8 6.29 9.29 6.29 7.8 7.11 7.11 7.48 5.34 6.99 7.55 9.16 9.91 7.19 10.2 7.33 8.19 6.21 8.76 10.4 9.45 6.96 10.8 9.65 7.39 7.95 9.53 3.79 8.34 5.6 9.3 3.45 6.38 8.54 6.93 8.66 8.44 6.69 8.83 6.53 2.25 9.08 4.59 2.95 7.73 9.25 2.19 7.46 4.98 7.99 3.57 11.6 8.12 3.02 3.89 2.19 0.44 1.65 2.19 7.08 9.38 4.02 8.43 3.86 3.3 7.32 3.3 7.54 8.34 3.08 3.25 10.1 8.49 8.15 2.07 11.5 11.3 10.3 8.95 9.64 3.86 6.44 1.65 10.2 7.22 11.1 7.02 5.88 2.74 4.99 5.39 7.99 8.3 8.83 5.13 2.89 7.66 9.16 9 8.02 8.97 6.14 10.8 8.2 9.06 7.38 7.85 11.9 3.02 8.29 8.05 1.94 2.82 11.7 11.1 6.72 8.32 5.74 7.92 4.09 7.71 6.68 2.29 6.47 7.56 7.88 9.41 2.74 1.65 5.77 6.53 5.31 6.29 12.1 11 9.99 12.8 3.5 12.6 9.06 9.99 3.4 13.2 8.14 11.2 5.36 6.28 11.6 10.2 9.26 9.17 10.9 10.4 10.5 7.54 4.15 6.21 11.4 8.91 11.3 4.91 10.1 9.96 9.64 8.67 10.7 9.78 11.9 12.5 7.62 4.02 10 1.05 8.6 9.34 2.95 8.47 7.78 9.88 9.46 7.39 8.59 1.47 3.3 9.7 11.6 6.67 9.13 10.8 8.52 8.91 8.89 4.02 6.91 9.25 9.95 0.44 9.67 10.5 7.88 8.36 7.8 12 9.45 0.77 13.2 7.25 8.06 6.56 9.37 9.6 8.99 10.4 10.2 6.84 9.08 10.5 3.4 10.2 8.04 9.79 11.2 9.41 8.73 7.43 8.7 7.82 10.6 9.59 8.94 6.23 9.51 7.94 10.6 7.14 8.16 10.7 6.19 9.36 9.2 10.9 10.1 9.58 8.75 4.26 9.36 8.4 7.39 5.22 6.85 9.55 8.89 9.62 10.5 9.39 9.8 10.7 12.9 6.96 8.38 9.45 8.23 10.8 10.3 5.09 9.3 10.7 12.5 8.8 7.85 6.31 6.53 9.2 9.78 7.33 8 9.31 4.57 8.39 11.9 8.74 13.4 8.15 7.85 0.77 3.34 8.69 12.7 10.4 11.4 8.44 8.3 9.2 8.78 7.33 8.57 7.28 8.55 11.9 9.28 9.96 3.3 11.4 13 3.08 10.3 11.9 8.61 6.89 7.66 4.05 9.86 1.28 2.49 1.8 10.4 5.66 11 7.87 6.98 4.15 1.65 8.74 5.1 1.05 5.78 5.91 3.96 2.19 7.61 9.14 7.79 8.48 4.57 9.31 6.78 9.65 5.4 2.29 5.1 2.68 8.12 8.83 5.74 1.65 9.66 11.9 9.57 4.59 8.22 10.2 11.2 6.08 6.02 9.92 11 9.84 9.91 8.98 9.14 10 8.84 7.55 7.14 11.2 4.17 6.63 8.65 1.94 6.94 2.95 8.49 7.61 8.02 6.97 8.91 8.92 1.28 9.32 8.76 4.75 6.67 7.34 6.56 5.35 9.95 4.17 8.74 8.25 6.09 7.96 8.02 7.84 8.85 8.15 7.2 8.88 1.05 10 10.4 8.41 6.34 9.58 9.65 8.32 6.61 10.4 2.58 9.42 5.85 4.79 8.97 5.58 7.41 9.43 9.65 8.42 5.28 8.97 9.6 10.6 7.12 8.78 6.65 2.66 9.85 8.82 10.3 9.07 8.99 7.29 7.76 9.77 3.3 6.76 10.2 9.19 9.01 8.79 10.5 4.33 7.99 9.17 7.8 6.67 9.68 8.62 7.19 12 9.58 11.1 8.15 6.53 7.85 9.68 9.69 11.8 10.4 11.2 1.94 8.63 10.3 6.42 9.34 8.52 8.57 7.55 8.86 8.22 7.66 9.49 7.15 7 4.57 3.47 6.29 5.58 4.86 2.4 0.77 10.8 1.05 8.49 8.75 8.05 9.75 1.47 6.81 7.96 6.92 8.79 7.64 10.3 9.76 8.4 8.99 4.33 8.73 3.5 6.23 9.03 7.68 8.48 1.65 9.96 4.09 14.5 8.58 1.28 11 11.5 9.36 10 9.96 8.8 8.56 8.3 6.85 8.69 2.29 9.01 6.99 8.65 9.02 6.88 11 6.91 10.9 9.98 7.21 2.4 9.51 8.4 5.74 8.74 6.61 5.58 7.58 6.39 5.5 8.76 8.96 8.22 5.74 10.1 7.39 9.83 8 10.4 10.9 3.82 10 8.51 3.25 6.53 2.07 4.93 6.23 5.83 6.35 8.28 6 9 2.29 4.33 4.81 7.51 1.65 6.78 5.61 7.54 7.68 4.55 4.69 9.1 8.28 9.03 10.7 2.07 7.64 9.62 6.4 9.48 9.16 9.95 8.54 5.84 8.31 9.94 7.12 8.68 9.72 9.75 12.2 8.25 9.1 3.89 10.7 10.5 9.85 4.63 7.63 8.81 7.29 10.2 8 10 10 8.82 4.84 5.6 5.5 9.63 8.41 7.77 4.73 8.14 9.15 6.2 1.65 8.63 6.99 2.29 5.5 7.19 5.98 4.09 10.4 0.44 9.63 3.14 3.86 10.8 10.4 1.28 7.44 8.28 5.66 9.7 0.44 8.38 9.78 2.07 11.5 6.48 8.68 7.07 8.24 9.23 6.14 6.28 8.48 8.66 8.05 9.95 4.17 7.3 10.2 9.21 9.48 8.42 12.4 2.82 8.17 7.09 8 8.24 2.29 8.93 0.77 11.3 0.44 4.06 8.68 10.7 9.48 9.17 6.16 3.63 8.85 10.1 10.4 8.77 8.25 6.95 9.92 5.6 8.2 9.37 11.6 7.6 9.71 8.94 8.41 7.99 4.15 3.71 6.31 7.78 9.33 8.4 8.72 2.16 4.84 1.94 1.28 6.44 10.5 13.3 3.63 8.53 6.34 10.2 7.67 0.44 9.03 5.46 4.02 5.06 7.79 5.3 9.25 11 11.1 9.49 6.18 10.8 9.74 9.06 10.2 7.48 9.37 9.44 9.12 10.8 6.7 9.11 7.57 9.58 8.83 7.57 8.83 4.96 5.1 10.7 11.9 8.71 7.79 10.8 7.86 8.53 9.77 9.66 6.31 10.3 10.1 10.2 6.24 9.81 10.5 11.2 10.9 6.5 9.4 9.09 7.83 2.4 12.2 9.08 8.78 10 12.9 8.48 8.25 9.76 10.1 3.79 11.1 9.44 9.99 7.32 3.54 8.72 9.67 8.67 1.28 8.33 6.27 3.2 11.4 9.46 8.78 10 9.96 4.12 11.3 9.97 4.28 8.34 11.1 8.03 5.4 7.43 10.3 9.04 7.35 10.5 12.2 6.79 8 4.65 6.45 8.93 9.1 6.21 6.07 7.89 9.03 7.51 9.8 8.32 3.59 4.63 4.88 12 4.43 4.26 11.1 9.05 3.67 8.61 5.93 10.9 7.69 10 10.6 9.71 3.3 10.5 6.21 9.88 6.54 3.2 10.9 10.2 13.1 9.14 5.83 9.3 10.2 6.31 9.97 6.12 3.4 8.4 6.67 5.58 11.7 8.44 11.1 0.77 12.9 7.07 3.4 3.79 7.45 8.34 8.75 8.72 2.19 4.77 1.47 3.08 9.32 10.9 8.04 7.26 8.6 7.17 8.59 7.52 11.2 5.35 11.7 10.4 9.39 11.8 11.3 13.4 7.59 7.75 6.42 9.77 8.35 6 11.5 11 10.5 6 6.24 0 12.2 9.97 11.1 10.1 9.56 9.84 4.48 4.02 6.33 2.69 10.7 8.46 9.35 7.11 9.12 1.65 11.4 15.4 8.31 2.29 5.09 6.99 5.42 6.51 8.79 5.86 11.4 11.4 14.6 5.37 5.44 4.67 0.77 0.77 12 11.6 8.88 6.28 3.63 11.4 11.7 9.08 8.13 4.38 4.48 3.45 1.47 12 2.49 8.65 9.36 8.46 12.8 10.1 5 7.77 9.76 8.35 9.89 4.86 9.86 9.73 9.67 6.19 6.31 10.1 8.8 9.33 9.58 9.24 12.8 3.08 8.71 8.65 8.85 9.04 11.1 9 9.01 6.62 9.73 2.19 6.74 10.7 10.3 10.3 5.2 9.59 9.97 8.94 10.2 10.7 10.8 5.23 1.28 6.12 14.6 11.7 10 7.57 9.1 9.34 8.61 10.2 5.46 9.94 12.3 11.4 11 11.1 8.88 6.49 8.22 10 1.47 8.18 10 3.4 10.8 8.89 5.13 9.52 6.91 8.56 4.57 4.93 4.61 10.2 7.79 11 9.47 9.74 8.73 10.8 4.93 8.99 1.83 8.46 6.44 11 9.47 8.22 10.2 10.3 11.8 10.3 7.31 8.55 11.7 10.1 9.55 2.1 8.6 9.25 2.2 10 8.73 9.12 9.48 1.28 7.99 5.18 10.7 10.4 0 10.4 10.3 8.36 10.2 14.2 6.27 10.3 5.12 9.85 8.55 4.33 9.98 7.99 10.3 7.44 12.8 7.67 9.99 11.8 11.8 11 12 12.2 6.73 13.1 10.2 6.72 10.3 6.21 8.57 9.15 0.77 6.78 0.44 11.8 11.9 7.58 5.91 9.62 1.05 11.6 11.2 11.2 8.01 8.45 13.7 7.52 10.7 12.4 10.4 9.3 8.07 9.16 12.1 5.7 8.18 7.84 9.12 7.89 7.52 4.55 0.44 10 1.28 0.77 0.44 7.96 1.28 6.13 3.14 2.58 7.26 7.99 1.28 1.47 2.49 5.39 0.44 1.05 6.03 1.65 9.78 12.7 10.5 8.21 8.05 6.91 3.4 3.02 10.1 7.87 0.44 8.38 9.43 8.47 7.43 6.28 3.08 2.07 8.49 5.56 7.94 1.28 7.65 11.6 9.73 5.96 10.6 0.44 2.89 0 4.69 2.49 0 9.43 8.9 5.2 7.95 7.59 9.78 8.34 1.47 7.91 1.05 2.49 1.28 1.47 10.1 8.37 6.72 7.43 8.52 4.46 9.57 9.81 1.47 7.11 9.71 10.8 10.4 7.19 0 4.12 9.18 11.9 8.16 0.44 7.45 10.2 9.07 7.65 5.55 3.67 1.05 1.05 10.9 1.05 11 10 8.7 1.94 3.59 9.2 8.57 7.72 9.19 9.53 0.44 1.65 11.3 8.38 5.23 7.24 9.24 8.72 5.96 8.29 9.01 7.47 5.86 1.94 4.17 10.1 1.8 6.52 10.8 9.42 11.1 6.05 9.45 10.2 2.4 4.17 7.15 9.7 10 8.33 5.26 5.03 0.77 8.1 2.07 2.04 9.85 6.63 5.58 9.13 7.3 7.25 8.66 6.85 6.94 8.75 4.79 2.29 9.11 2.89 11.5 0.77 2.89 1.05 3.25 5.19 0.44 0.44 2.19 8.83 11.6 10.3 8.01 9.18 11.3 8.29 9.22 7.69 5.26 11.5 10.4 7.54 7.54 6.3 9.5 6.79 7.1 3.14 9.1 10 7.59 7.42 4.9 9.46 11 5.48 7.12 8.66 6.02 8.29 7.64 11.1 8.82 10.6 5.04 11.2 9.74 7.63 8.05 8.42 9.39 3.89 7.73 7.31 6 5.86 4.17 7.65 11.1 8.88 0 5.59 9.12 10.8 7.64 2.82 14.2 3.71 5.5 2.07 2.4 6.49 7.48 10.9 9.92 6.93 9.17 6.72 5.67 8.76 10 2.4 9.66 6 1.28 8.79 8.86 3.75 7.09 10.6 8.03 9.18 7.38 10.2 8.32 8.6 8.86 10.3 9.33 8.83 7.54 6.59 6.61 6.63 9.93 9.2 12.4 8.3 8.9 10.1 4.71 10.6 6.72 10.6 10.7 7.07 10.3 10.3 4.06 10 8.07 4.02 5.33 5.1 10.8 7.43 8.97 9.47 10.8 9.92 0.77 5.96 9.47 10.2 10.3 5.57 8.35 7.88 5.72 1.05 7.17 2.07 7.43 6.78 6.92 5.06 5.91 5.56 4.77 4.31 0 7.19 11.2 10.4 7.88 8.29 3.25 8.97 9.16 8.27 8.74 9.61 10.1 2.19 10.3 7.89 5.09 5.26 8.46 10.6 8.27 0.44 9.08 8.96 7.15 8.88 10.6 5.16 7.82 9.55 8.92 9.44 7.73 9.75 8.53 10.8 9.9 9.67 8.13 7.62 6.39 7.71 5.55 8.65 11.9 9.27 6.36 7.74 6.65 9.48 8.53 7.38 8.65 7.39 8.9 0 8.12 10.9 8.48 10.4 8.25 9.51 8.95 9.57 9.46 6.98 9.12 7.79 8.83 9.12 8.71 7.88 9.64 3.67 9.13 9.66 7.4 9.69 6.12 7.45 8.63 9.33 7.62 9.26 9.59 9.76 9.92 8.84 6.44 8.2 5.45 7.06 9.69 0 10.5 8.18 10.9 8.27 9.42 6.33 9.74 8.28 9.97 0 6.81 10.6 10 4.59 8.83 9.31 9.31 2.07 10.2 0.77 10.6 11.3 10.6 6.89 4.17 7.84 5.23 6.5 10.3 8.2 11.1 9.76 5.13 10.6 7.03 7.2 10.5 8.63 9.97 6.24 9.81 7.62 8.6 6.56 9.91 8.39 3.63 1.65 1.94 2.55 10.3 9.17 10.4 10.4 1.05 6.82 11.2 8.64 8.86 9.95 10.5 6.08 3.75 4.28 10.9 7.62 9.88 7.75 5.75 7.2 7.07 9.7 8.68 2.95 10.5 7.09 8.9 9.57 6.45 8.14 8.81 10.3 5.79 8.58 9.08 1.28 8.12 9.95 8.84 1.28 5.25 8.1 4.26 8.66 10.3 8.32 6.57 6.79 1.65 7.59 4.06 7.14 3.93 12.6 11.2 8.61 0.44 2.49 6.57 9.8 10.9 5.5 7.24 8.24 11.4 4.67 1.05 0.44 1.65 9.61 7.1 6.23 9.25 11.3 3.5 5.12 1.28 9.61 4.43 0.47 5.5 7.99 10.1 1.28 4.36 6.28 6.48 1.94 4.83 2.89 10.2 10.6 1.8 2.07 8.79 10.1 6.58 8.63 1.47 10.5 10.6 8.96 7.27 12.9 6.99 12.2 8.88 5.13 0 3.51 10.4 8.84 7.23 6.89 8.12 10.6 6.92 8.61 7.77 4.41 1.47 7.42 8.56 7.86 13.2 5.79 8.41 8.96 6.89 11.6 10.1 7.78 10.2 6.69 1.28 10.1 9.92 9.1 5.58 4.15 2.19 8.07 10.1 8.96 8.19 7.59 12.6 4.43 8.63 3.14 6.99 7.42 10.1 9.02 5.41 8.74 0.77 3.36 9.22 3.79 7.78 4.91 9.25 8.58 7 10.2 8.41 4.06 6.25 8.33 7.12 3.36 1.47 6.43 8.27 9.51 8.05 8.95 9.88 9 9.65 9.89 10.1 9.02 9.42 0 7.37 11 5.76 9.88 9.74 9.27 6.93 10.2 9.61 6.23 10.2 9.47 9.37 7.47 10.4 9.28 9.45 10.9 1.8 8.65 6.92 12 8.16 9.96 10.4 11.8 7.99 6.49 8.95 9.36 7.48 8.02 9.83 9.44 7.74 8.23 9.22 8.08 8.33 8.91 7.99 8.02 7 10.1 2.82 8.21 8.44 1.28 8.99 10.1 7.53 6.98 9.87 9.98 12.5 7.19 6.9 8.84 9.03 7.61 5.75 5.72 10 6.96 6.8 9.17 7.06 8.13 3.25 5.03 5.26 9.29 8.57 9.38 7.2 6.04 10.7 7.33 0 5.04 2.66 8.68 9.46 9.97 2.8 2.19 10.8 9.94 9.16 5.04 9.99 4.48 5.56 9.34 1.28 6.48 6.38 7.84 11 7.79 6.34 11.1 9.86 7.29 6.78 9.37 8.33 9.15 8.19 9.25 6.2 12.1 11 8.71 5.18 1.28 6.82 3.63 4.38 8.74 10.1 12.6 10.3 1.8 7.89 1.94 9.3 10.3 6.58 10.8 2.07 5.1 3.75 0.44 7.18 6.66 11.6 9.23 11.8 2.17 7.29 1.28 1.28 10.2 4.17 8.69 5.04 7.46 7.95 7.87 7.17 8.46 9.73 9.57 3.63 9.62 10.3 2.07 9.77 10.2 11.6 11.2 7.43 11 10.4 10.1 8.69 9.48 8.8 0.77 8.78 11.5 2.4 9.23 8.32 9.2 7.6 8.03 9.9 11.1 3.63 8.8 7.09 11.2 8.81 9.06 5.82 6.5 11.9 8.94 7.82 9.37 10.9 8.04 10.5 11.1 8.64 9.64 10.6 2.74 3.14 11 6.86 1.94 1.8 9.46 3.59 9.32 3.59 10 2.95 5.57 12 8.22 9.14 6.53 2.49 10.1 8.76 8.55 10.9 9.17 3.56 11.2 12.2 10.3 9.74 8.62 9.2 12.2 5.65 10.8 9.46 9.44 9.15 5.56 6.92 8.12 9.04 11.2 6.15 5.35 1.05 10.4 9.56 9.08 7.65 11.1 2.19 7.49 10.9 7.77 11.2 8.22 7.6 10.6 4.15 3.59 10.3 3.75 8.58 9.25 9.4 1.65 9.04 8.27 5.16 5.61 4.28 4.57 9.42 10.2 10 6.65 7.47 7.93 7.38 2.58 8.59 4.69 10.2 10.1 5.36 9.7 9.22 10.2 10.5 5.71 7.67 11.9 9.87 9.85 10.1 13 12.5 8.25 12.3 11.4 11.5 11.7 12.2 10.9 9.78 7.4 11 10.5 8.05 11.1 5.04 8.59 10.7 9.16 8.07 11.7 11.3 1.05 8.81 9.39 12.3 10.8 9.79 4.71 12.7 2.68 10.8 10.1 9.62 7.03 6.9 5.3 6.64 11.9 8.08 12.9 8.13 9.99 8.26 11 11.8 6.37 10.3 11.1 11 8.53 8.48 10.8 11.4 8.41 9.38 9.01 10.3 2.82 9.91 6.81 4.91 2.49 10.1 6.72 9.97 6.51 4.55 2.58 0.44 3.99 11 11.1 13.9 10.2 11.6 13.1 10.8 11.7 8.06 9.46 8.95 10.1 8.58 11.9 9.69 6.9 8.08 3.02 9.88 4.5 0 5.15 2.49 8.73 9.61 7.03 6.09 11.6 8.87 8.74 9.3 0 7.59 11.7 11.7 10.1 11.1 10.5 3.71 7.09 1.28 1.28 10.2 9.84 4.06 10.8 10 5.82 9.07 7.03 1.65 7.04 1.65 11.3 4.57 13.3 8.09 8.38 5.81 8.32 5.04 11.2 8.78 8.44 11.2 10.4 0.77 0.77 6.72 10.2 7.3 4.33 8.89 9.54 7.12 6.07 12.1 8.35 6.47 10.2 7.27 11.4 16.7 2.58 7.85 9.94 7.57 5.77 10.3 8.25 6.94 12.8 9.91 10.7 10.5 9.49 3.67 4.5 5.8 13.3 11.1 11.2 10.4 9.6 9.94 11.6 11.5 11.5 11.2 9.63 9.68 8.66 8.7 10.9 11.6 10.4 10.1 10.3 9.64 11.5 1.47 10.8 0 12.2 6.56 11 9.4 9.46 1.28 11.5 5.84 3.79 8.62 9.53 1.28 10.7 10.3 8.57 10.4 11.1 10.4 1.59 3.14 3.19 9.86 9.85 7.44 8.37 10.8 5.18 4.72 10.7 12.7 8.66 5.69 12.5 8.83 10.5 1.28 1.8 3.5 10.2 4.5 0.77 10.6 7.14 10.5 5.39 3.86 10.2 8.08 6.48 4.23 8.49 9.55 8.58 5.35 0.77 4.61 0.44 7.14 9.98 7.5 8.59 7.64 11.6 8.82 6.71 4.91 11 9.76 8.16 9.61 2.07 2.29 3.64 1.28 8.14 7.29 7.8 11.1 6.45 9.82 14.9 10.5 11.3 6 2.07 6.49 10.1 10.7 8.86 10.3 11.3 7.38 11.4 8.86 6 3.14 7.94 9.04 11.4 12.1 0.44 5.7 6.7 8.9 6.05 9.6 6.56 5.7 10.6 9.43 9.9 1.28 10.3 6.98 7.54 6.3 7.94 7.07 8.36 12.4 9.46 9.33 8.75 7.57 8.67 9.34 5.19 3.67 7.32 10.5 8.02 5.81 3.25 1.28 8.64 11.2 9.69 1.05 4.86 3.5 5.46 1.8 1.05 11.8 9.01 7.61 8.83 10.3 6.9 1.28 4.77 7.96 8.1 7.83 0.44 7.09 9.49 3.79 11.5 9.14 9.93 9.2 10.4 7.64 8.39 10.8 10.2 7.59 10.6 7.69 8.85 5.29 8.5 10.1 10 10.6 13.7 8.97 6.01 6.19 4.33 9.8 1.05 9.44 9.19 9.94 7.28 2.66 7.81 5.13 12.7 9.59 7.98 3.78 7.38 11.8 10.1 11.1 10.7 5.87 6.88 11.7 7.83 7.94 0.77 1.05 9.12 4.36 11.2 9.24 9.2 8.45 6.49 5.79 7.06 8.63 7.96 6.8 8.9 6.92 5.29 8.91 1.05 11.6 6.75 9.39 9.09 0.82 6.81 0.77 11.9 3.67 10.2 5.98 9.07 12.6 5 9.44 9.23 6.99 4.91 9.87 10.7 5.57 11.4 8.8 13.3 9.27 6.51 9.45 1.94 8.76 10.8 10.7 10.1 8.64 5.95 7.58 9.49 9.29 8 10.3 4.41 7.52 2.4 8.82 10.6 11.1 10.9 10.1 9.93 8.54 3.3 11.3 1.05 8.99 8.68 8.59 10.2 4.26 3.3 10.4 9.07 8.78 9.84 2.49 9 7.01 9.74 10.5 6.44 4.93 7.3 6.73 1.8 0.77 5.7 3.25 7.41 5.57 3.71 10.1 12.3 8.34 8.33 10.8 1.28 9.79 10.3 8.04 9.8 11.2 8.59 2.95 9.85 10.5 11.7 11 8.54 7.09 3.79 10.1 8.11 9.59 7.88 0.77 8.22 8.85 8 9.65 7.34 11.2 10.9 6.55 6.71 9.24 10.2 9.06 4.23 10.8 7.23 2.49 7.71 13 5.95 9.13 4.33 1.05 10.1 11.1 7.2 9.55 8.47 9.06 5.64 9.11 2.89 7.03 6.65 6.79 8.4 9.44 7.87 9.69 9.76 5.31 11 6.64 8.13 7.39 3.99 9.74 3.14 6.69 1.32 7.91 6.16 8.07 7.8 1.05 11.4 3.89 10.9 15.1 8.52 8.9 11.6 8.67 7.41 3.96 9.18 6.33 5.03 4.5 5.61 10.7 10.4 6.88 7.37 6.72 2.49 10.5 7.71 6.79 10 9.14 7.28 6.63 1.8 11.5 5.96 9.2 8.65 11.3 10.1 3.82 11.1 8.89 9.01 7.38 7.6 12.1 10.4 6.54 5.62 9.68 1.28 2.4 7.65 8.73 2.74 9.31 3.99 8.65 9.74 8.27 2.82 7.22 7.65 8.88 4.48 8.45 2.66 6.97 7.65 9.99 9.62 8.46 8.03 8.01 11.2 10.6 7.23 7.19 7.99 8.81 9.04 9.65 4.65 9.64 7.25 11.5 7.47 9.45 5.32 10.7 8.87 10.3 9.36 11.6 1.94 7.54 11.8 12.3 9.78 3.71 6.69 6.69 7.83 9.03 4.52 0.44 4.75 5.81 1.28 8.19 3.71 5.55 6.76 10.9 0.77 9.6 11.5 9.8 10.2 7.95 2.96 7.25 8.63 8.03 10.8 9.34 10.2 3.3 9.32 11.6 10.2 5.89 8.19 9.34 1.8 6.21 9.31 1.47 9.78 9.3 6.8 1.65 11.4 4.84 7.79 9.33 6.97 9.29 10.1 8.27 9.22 5.89 9.54 10.4 5.01 7.22 8.83 3.54 8.94 10.7 11.8 7.94 9.08 8.94 8.28 4.83 11.4 9.98 9.8 8.87 8.16 2.49 9.26 11.1 10.5 9.08 8.83 4.43 9.59 12.2 10.5 8.22 6.07 11.3 13.9 6.28 5.19 10.6 9.22 3.89 9.95 6.48 9.69 12.2 8.49 2.66 9.2 9.26 5.48 9.34 6.21 8.16 11.7 10 4.93 6.48 8.23 7.19 9.1 4.2 7.89 1.28 1.8 4.83 9.29 8.43 6.99 2.4 6.99 6.34 10.3 9.38 2.82 7.79 9.2 11.8 5.53 10.3 5.26 4.02 8.25 10.2 9.09 10.7 9.34 11.8 9.47 9.46 10.9 3.4 9 8.87 8.88 10.7 9.09 6.55 9.8 8.22 7.08 8.1 0 11.7 8.52 9.46 10.9 7.74 9.59 10.3 9.51 1.66 11.1 9.73 10.4 6.52 2.95 10.7 13.1 0 8.91 7.86 9.6 4.02 10.5 2.66 7.45 0 3.45 7.02 4.46 7.62 10.4 11.2 7.16 0.77 11.8 7.13 9.17 8.34 3.3 7.91 9.66 3.3 4.25 0.45 11.6 8.62 8.01 10.2 7.17 11.6 8.47 10.5 9.15 12.7 11.6 0.44 4.96 10.5 0.44 9.47 5.19 9.74 2.82 5.84 1.8 11 9.45 10 5.4 7.86 8.45 10.5 1.05 6.13 6.79 7.72 8.82 4.86 8.53 10.1 7.23 9.84 5.39 4.96 0 11.2 4.46 8.7 3.14 6.69 8.37 10.7 8.4 10.3 9.97 2.49 8.58 8.23 4.23 9.84 9.26 10.1 9.99 9.33 7.86 9.02 4.9 8.07 3.63 9.97 0.77 12.4 8.17 3.96 12 8.43 5.93 2.66 6.05 6.24 12 8.23 7.23 8.64 9.93 1.28 5.8 3.59 3.02 6.25 0.44 10.1 3.36 9.46 8.21 8.15 7.91 9.08 11.8 10.1 2.95 11.4 3.45 4.48 9.44 6.21 9.19 6.11 1.47 7.14 6.9 1.8 10.4 9.15 9.05 7.28 6.86 1.47 6.53 8.23 11 5.29 7.38 9.78 11.4 1.8 8.48 5.99 5.12 6.72 7.8 7.5 5.61 6.01 7.46 8.63 11.3 11.8 9.96 8.26 9.38 6.69 0 8.97 12 11.5 7.52 7.74 3.3 7.66 7.36 8.78 10.3 9.41 5.66 1.94 11.4 10.5 12.6 8.61 4.83 10.7 8.85 9.95 11.2 10 10.2 10 11.8 10.5 9.65 6.8 9.41 5.4 9.3 7.72 6.44 4.59 11.8 11.3 9.63 9.7 9.57 0.44 10.2 8.17 11 12.7 10.7 11.1 8.68 8.75 9.95 13 10.3 9.92 10.7 3.08 9 11.1 10.8 10.6 8.46 10.8 10.3 9.58 8.28 8.52 8.49 11.7 6.24 8.99 10.7 8.57 9.26 12.7 9.5 8.23 9.36 11.8 10.6 3.59 8.25 12.6 6.51 1.8 12.7 10.9 13.3 11.7 9.88 7.54 7.28 10.6 7.68 11.4 12.2 10.1 7.17 10.9 8.4 6.36 11.2 4.88 8.64 5.91 7.78 7.26 9.57 11.8 7.45 3.71 7.03 9.15 5.92 8.49 10.4 9.51 12.2 12.6 12.1 9.46 10.2 9.19 10.7 9.01 7.81 8.79 4.23 10.7 9.7 9.76 8.98 10.7 9.6 7.23 10.3 12.1 12.4 8.06 9.45 10.7 8.65 11 7.71 11.8 13.4 9.22 0 9.9 10.1 10.8 10.2 10.2 9.76 9.92 10.2 10.7 8.91 10.4 9.73 9.6 11.5 11.1 4.15 10.1 12.2 5.78 11.6 9.22 10.1 8.87 10.4 8.53 10.4 11.5 0.44 6.51 2.4 10.8 10.1 9.32 12.3 10.7 4.23 7.56 1.64 10.4 4.75 10.6 9.22 9.96 3.93 10 1.8 8.75 7.07 12.5 3.66 7.45 10.5 12.6 9.31 8.72 9.66 6.94 9.54 9.18 6.92 11 6.21 10.4 11.3 5.69 8.71 9.88 5.59 12.1 7.99 11.8 6.53 9.17 8.69 10.9 10.1 11.9 6.8 5.13 6.23 5.85 5.01 11.9 9.04 12.4 7.33 14.5 10.3 8.22 9.81 10.4 9.05 9.26 12.3 7.54 9.89 10.5 12.1 10.7 10.4 12.5 10.8 10.3 6.66 12.4 7.97 12.7 8.21 10.7 10.8 8.58 9.86 8.89 9.4 11.1 10.2 9.06 11.9 10.8 2.66 11.1 11.2 5.62 10.7 12.4 12.5 10.5 8.13 9.51 3.02 11.3 8.19 10.1 11.7 8.71 9.47 9.94 10.9 10.8 9.74 9.89 9.51 6.21 10.5 10.1 11.3 8.33 8.59 6.82 11.2 10.8 8.34 2.74 9.99 4.81 7.35 10 7.71 10.4 3.75 9.04 10.1 12.6 7.35 9.36 10.7 6.84 9.67 9.16 9.73 7.7 8.76 9.27 6.06 10.6 9.98 7.96 8.25 10.8 11 6.22 5.99 7.11 10.9 11.8 10.4 11.3 10.1 10.2 8.54 10.2 11.1 12.2 10.3 11.7 10.3 8.95 9.22 10.2 11.7 8.72 10.9 7.44 12 10.4 11.3 6.37 8.05 9.8 9.09 8.54 9.64 12.2 1.8 9.76 5.55 6.67 9.86 7.77 9.46 8.77 8.11 9.19 12.2 10.7 11.1 8.39 4.73 9.64 10.1 10.6 6.59 11 12.4 12.2 9.59 11.6 10.6 9.74 9.56 9.43 11.5 11.6 9.75 11.2 8.88 10.1 10.2 4.23 6.65 7 8.82 7.4 11.4 11.9 3.3 7.6 9.03 11.1 4.28 7.55 13.4 9.14 8.14 9.7 4.06 4.98 1.05 7.83 9.72 10.2 9.54 12.5 9.78 3.79 6 11.6 10.8 11.1 9.91 3.65 10.9 8.19 9.61 4.84 9.53 12.2 10.8 8.46 6.11 8.59 11.9 9.84 9.97 14.2 7.95 12.9 1.65 11.3 9.35 9.02
-TCGA-B0-5102-01 5.77 6.45 11.4 10.3 6.75 8.26 2.53 2.99 5.88 3.34 5.75 8.9 6.18 1.68 6.2 7.87 10.2 11.1 10.4 9.37 9.36 4.77 9.43 4.48 9.97 8.56 2.4 9.77 3.56 8.36 4.74 6.31 5.42 6.91 3.18 3.26 2.1 5.7 2.7 5.89 7.04 2.22 4.85 1.97 6.44 4.45 1.3 7.62 11 6.72 3.49 7.29 8.41 12.4 4.81 0.79 6.73 1.83 6.04 6.82 7.75 5.9 8.52 7.2 4.83 4.3 8.09 9.84 10.7 5.71 6.51 7.58 2.1 0 0.45 3.18 6.16 6.43 4.44 3.29 6.35 0 3.42 6.7 3.54 3.4 4.77 8.09 1.3 3.49 9.02 7.17 7.5 6.57 5.66 3.63 1.97 9.92 6.13 0 2.33 5.87 6.59 5.97 4.47 5.41 8.15 7.39 8.72 6.25 2.1 1.68 8.29 5.97 7.04 1.3 3.42 1.97 2.15 4.43 6.37 4.08 1.07 4.19 0 6.62 2.78 2.1 3.97 17 3.6 3.12 3.86 7.7 2.99 2.62 2.99 1.07 1.57 8.13 8.11 10.5 0 3.18 5.74 11.3 1.5 13 4.03 4.57 4.84 1.3 7.17 9.57 10.8 2.43 2.62 0.5 10.4 4.19 7.21 7.89 3.51 9.06 10.4 7.38 6 4.43 2.43 3.29 10.4 9.7 4.59 5.5 6.39 3.54 6.77 4.47 7.61 4.8 6.1 9.63 6.26 6.38 4.55 4.49 6.54 1.07 8.71 6.92 8.57 11.4 3.9 6.64 5.49 7.69 6.08 8.27 8.45 9.14 12.7 9.81 8.41 10.7 9.24 7.34 7.88 9.4 10.3 9.24 8.61 5.86 10.9 10.7 9.49 8.92 10.2 10.4 8.07 10 9.13 9.7 11.4 9.69 9.68 9.52 1.5 9.16 8.77 12.5 9.67 3.49 8.97 10.5 8.68 8.8 10.1 7.53 10.6 2.7 8.73 3.9 11.4 11.2 11.7 11.1 12 12.4 4.61 12.4 6.44 1.07 6.79 9.9 9.22 11.2 10.5 12.1 6.63 11.4 8.45 10.7 4.43 10.3 9.4 10.3 10.2 10.6 10.8 9.39 8.01 10.1 9.47 9.85 11.9 8.48 0.79 12.9 11.7 11.4 12.7 11.8 10.5 8.07 9.61 12.1 10.2 11.5 11.4 10.2 5.7 3.4 10.6 5.55 10.7 10.3 7.45 12.2 7.52 7.22 12.7 12.6 11.4 10.2 11.2 11.7 1.3 9.58 7.7 8.17 12.6 9.01 4.35 8.62 7.13 10.4 10.6 8.96 8.78 7.22 9.74 10 10.8 9.7 9.89 9.34 10.8 9.12 9.7 10.1 9.25 7.87 10.9 6.64 8.88 10.9 8.09 7.84 7.17 10.3 10.6 11.4 9.74 9.8 8.89 14.4 8.72 8.94 12.1 9.66 9.67 2.03 10.6 0.45 4.81 9.49 7.26 9.64 3.24 6.94 6.92 10.4 9.81 9.47 9.07 8.27 11.3 5.54 9.42 5.89 6.17 10.7 10.2 11.9 11.3 6.25 8.61 11.6 0.79 9.15 8.45 9.3 10.5 9.03 10.1 9.78 5.84 10.5 9.05 9.7 1.97 10.7 12.4 9.19 7.75 9.8 11.3 10.2 9.96 2.33 9.7 10.3 10.5 9.56 8.89 11.4 9.7 11.2 9.18 9.01 8.74 7.8 9.93 9.79 8.61 12.1 9.34 8.92 8.17 7.86 9.37 6.66 5.38 11.3 4.48 11.5 11.3 10.1 2.79 10.8 10.9 12.1 7.22 8.38 7.51 7.01 8.49 8.55 8.87 10.7 9.74 12.1 10.6 5.91 13.6 4.61 7.2 8.23 0 9.77 4.27 9.63 8.65 11.2 9.13 8.84 5.02 10.2 8.52 4.5 8.89 10 11.4 4.54 11.3 7.47 4.61 3.54 4.85 8.58 6.2 1.3 7.52 5.21 10.4 10.1 9.51 11.3 11.4 2.33 13.9 10.1 1.3 7.95 8.28 8.81 11.7 9.45 8.57 3.18 5.34 10.5 8.82 3.4 12.8 8.37 6.95 9.67 8.55 16.1 11 15.8 9.21 9.3 8.29 8.86 6.2 4.59 10.7 9.8 0.79 7.83 7.87 13.6 8.32 11.9 11 8.3 13.9 10.3 5.8 11.3 9.46 11.8 11.5 9.65 8.69 10.4 11.3 7.96 10.6 9.83 10 7.27 9.24 11.7 8.23 6.13 9.61 10.3 10.4 9.58 7.81 10.3 12.4 0 9.44 10.7 10.2 10.1 10.7 10.3 11.8 9.32 7.89 7.12 8.69 5.13 10.8 8.38 7.65 9.41 10.1 2.7 9.56 6.71 9.24 10.2 11.2 10.4 10.9 12.2 10.5 9.64 9.55 11.6 9.92 10.9 10 0.45 12.4 10.6 10.5 10.9 12.5 11.6 13.4 11 7.43 11.2 9.82 8.52 0 9.14 7.3 9.66 8.04 10.9 10.8 8.96 9.18 10.2 9.67 6.25 0 7.2 11.1 11.9 8.4 13.1 9.06 10.5 10.6 11.3 10.4 11.8 10.2 8.62 0.79 10.2 9.6 8.34 8.14 8.87 9.88 5.16 9.53 10.3 11 11.8 10.6 9.52 11.1 11.8 11.6 0 11.9 9.7 11.2 9.73 8.72 8.01 10.5 8.89 2.53 7.03 8.05 0 4.24 10.2 10.4 3.34 10.7 13.1 10.9 3.4 9.94 10.5 12.2 11.5 11 12.4 7.37 9.54 2.33 10 12.8 9.42 0 8.72 9.91 10.6 11.3 10.4 8.38 12.7 0 7.94 10.3 7.79 9.96 8.35 6.4 10.2 11.3 9.88 10.8 9.42 4.1 11 7.51 9.85 10 6.18 11.5 9.73 12.9 4.13 7.18 7.78 4.79 8.45 14.4 8.08 12.5 13.8 7.83 5.78 8.99 11.9 2.85 8.97 5.01 9.66 1.53 6.69 10.1 8.25 4.45 2.92 10.1 5.58 9.38 11.2 12.9 9.88 9.07 11.9 10.6 8.2 6.52 0.79 5.61 10.6 4.59 8.51 8.6 9.55 12.1 8.82 11.4 6.34 2.92 4.54 9.66 9.94 9.8 1.5 10.1 11 6.13 2.22 7.21 12.2 10.8 4.27 5.48 8.67 7.26 8.54 9.52 7.92 7.7 7.8 13.5 3.71 11.9 12.7 11.2 10.9 12.5 10.4 11.6 6.1 5.76 4.94 11.3 2.92 1.97 3.24 1.68 10.3 10.2 9.96 0 7.7 8.56 5.09 5.59 11.8 12.9 8.56 4.85 10.9 8.32 0.79 10.2 10.6 9.73 10.9 8.33 11.5 10.6 11 9.73 7.7 9.78 11.7 9.46 7.82 9.39 9.46 11.3 7.02 11.9 9.24 9.48 6.43 5.04 8.64 8.99 5.98 7.73 4.57 12.4 9.33 0 0.79 8.3 9.35 9.71 9.47 6.83 6.64 8.77 0.79 6.39 6.97 8.98 5.74 10.9 9.43 9.3 2.43 11.4 0.45 10.6 8.9 5.83 11.2 10.4 8.1 4.67 11.1 12.4 4.9 8.14 6.17 5.87 8.33 10.3 11.7 9.06 9.57 7.63 5.59 8.52 0.45 10.5 0 12.2 8.49 8.25 2.99 1.3 11.5 9.76 9.86 10.1 7.47 1.83 10.2 9.35 10.6 9.06 6.61 10.3 9.71 9.48 10.6 8.54 9.61 9.82 10 9.3 0.45 5.89 3.18 11.3 9.76 12.3 0 9.92 10.3 11.1 10.4 11.8 9.53 6.69 11.8 10.9 10.6 2.62 11.9 1.83 11.9 4.59 10.7 10.9 6.97 1.3 8.71 11.8 12.6 10.2 9.13 9.68 11.5 6.03 11.1 10.7 9.19 12.2 10.6 13.1 12 12.3 12.8 11.4 5.79 11.1 8.81 9.36 8.51 9.53 10.6 12.3 13.2 9.51 10.3 10.8 7.79 9.91 11.5 9.19 11.5 12.9 7.29 10.6 10.2 10.3 10.9 7.74 1.07 11.6 7.56 11 6.74 8.79 8.71 10.6 4.54 7.94 9.42 0.55 6.1 9.05 9.11 1.3 12.4 9.76 10.6 9.2 9.98 7.77 10.7 9.49 9.69 7.15 4.35 6.56 0 5.97 10.9 9.96 7.41 12.5 5.69 9.09 7.75 9.21 10.9 9.33 9.42 0.79 9.33 10.6 9.74 11.3 10.3 10.5 8.96 10.8 10.9 10.6 11.3 7.66 1.68 7.34 4.52 8.48 13.8 8.15 7.73 11.5 10.1 9.34 9.2 7.95 4 11.1 11.2 11.8 8.34 13.1 10.6 9.87 7.79 6.9 9.29 8.24 9.08 8.56 12 8.74 12.6 7.15 8.88 8.73 6.94 6.26 9.5 7.78 11.1 11 7.94 7.22 11 9.73 10.7 9.37 4.89 9.13 4.9 8.37 8.38 8.94 1.68 6.88 2.1 7.71 6.51 10.2 8.81 9.83 9.31 4.65 11.7 10.4 10.5 3.06 12.3 6.18 7.32 9.99 4.75 9.64 9.89 6.44 6.92 4.19 9.6 8.07 9.07 8.23 6.58 11.3 9.47 7.14 9.8 9.28 8.73 15 10.7 5.91 6.81 8.77 10.7 6.91 3.93 11.1 9.02 8.68 9.04 8.51 11.1 5.91 9.14 6.89 6.05 8.21 0 10.4 0 7.5 9.7 7.69 8.15 9.11 9.69 10.9 10.4 7.46 6.43 9.74 7.57 9.31 10.7 7.15 11 10.2 9.14 9.29 8.05 4.57 8.76 6.83 10.5 8.05 13.2 7.06 1.07 8.42 6.49 9.44 10.1 7.2 8.61 9.26 9.72 7.36 7.54 10.4 15.2 7.12 7.06 9.24 9.05 7.09 10.2 12 7.03 8.56 5.32 10.8 7.46 9.55 1.5 3.35 10.7 10.9 8.72 9.64 9.85 9.54 7.59 10.3 0.45 11.8 7.54 8.46 5.77 8.31 7.45 10.1 10 8.42 5.45 1.5 4.32 9.9 11.4 8.86 8.1 8.68 6.85 10.3 8.74 9.64 8.87 8.68 4.4 7.95 7.68 11.2 9.34 8.78 6.82 10.2 8.09 8.69 10.4 10.2 10.3 8.88 7.4 8.19 8.24 8.84 9.61 10.1 3.83 8.93 3.24 9.68 5.47 8.3 12.9 11.8 1.83 11.6 7.75 4.52 10.6 5.21 1.07 9.72 8.89 1.07 10.5 12.3 9.69 8.44 7.41 10.7 10.5 12.1 9.5 8.08 7.86 8.06 3.34 11.8 10 1.5 12 9.04 11 8.96 11.5 10.9 13.2 11.8 3.57 8 7.74 1.07 11.4 11.8 13.7 9.59 9.08 11.3 7.5 9.32 2.33 14.3 7.95 6.01 0 8.95 4.1 7.99 9.25 1.88 5.37 8.45 8.89 4.13 5.13 0 11.8 6.19 8.22 1.97 8.66 7.22 2.99 5.05 10.2 8.52 3.12 4.5 9.24 8.33 4.73 0 8.63 5.26 6.19 0 0.45 7.39 4.19 7.69 7.15 8.55 9.66 7.98 0.45 8.77 1.83 3.54 9.76 6.81 7.56 8.13 8.03 6.47 10.5 1.3 6.64 8.37 7.09 9.47 5.75 10.3 8.66 8.14 8.38 6.85 7.42 7.98 12.2 0.45 10.1 8.53 3.07 6.98 10.7 8.25 4.16 8.01 10.7 10.7 10.7 9.23 8.35 3.79 12.3 3.79 9.16 3.06 6.77 12.6 9.33 9.59 9.37 10.6 9.87 8.67 5.41 10.5 10.3 10.6 5.35 1.97 9.98 10.6 8.01 6.94 1.83 5.5 7.48 9.77 8.82 11.6 8.49 11.3 5.19 8.31 12.3 10.2 13.1 8.23 1.83 4.85 8.73 10.6 8.64 3.83 8.71 9.64 9.15 10.7 7.18 10.1 7.54 6 3.12 0.45 1.3 9.4 11.8 7.18 8.55 8.7 5.25 9.77 5.78 1.07 3.86 8.41 7.07 2.62 6.17 10.5 4.75 7.78 8.27 4 6.63 6.46 7.3 10.8 9.71 7.58 8.67 7.57 9.51 7.97 10.8 7.35 9.81 10.5 8.19 9.44 3.47 8.78 7.43 9.65 9.72 6.59 8.97 5.7 8.25 8.19 8.87 1.07 3.61 0 7.84 6.49 11.3 4.83 5.57 7.52 8.91 4.72 0 8.09 9.83 5.72 9.13 9.84 0 6.41 7.16 7.28 9.86 8.91 2.78 7.85 6.16 1.68 6.23 8.11 8.59 11 6.04 8.72 9.83 7.62 0 8.15 5.71 4.3 6.32 11.4 9.07 5.6 10.2 4.75 7.12 7.43 12.6 9.89 10.2 1.07 0.79 5.5 9.64 10.1 7.67 8.06 12.2 1.07 6.78 9.81 9.41 11.8 9.23 5.91 9.2 0 6.75 3.24 8.49 0 8.78 9.25 6.85 6.45 8.12 11.1 4.99 2.53 2.43 10.9 7.66 9.28 7.67 8.79 5.94 6.28 8.57 7.94 7.92 9.61 14.5 12.9 8.06 3.83 5.76 8.41 8.17 0.79 10.4 11.2 9.43 8.21 8.72 3.34 7.98 9.97 11.1 13.4 8.42 9.95 7.88 1.83 1.97 7.48 9.78 6.05 5.67 7.83 7.99 9.19 10.4 3.18 11.6 11.7 3.97 3.58 7.03 11.9 10.4 9.01 9.69 4.07 6.71 13.2 1.07 8.55 10.6 4.87 5.84 9.2 9.84 5.55 8.03 10.7 1.97 3.75 1.83 7.81 2.33 6.29 6.66 6.02 7.4 9.11 8.41 6.76 10.2 9.14 6.53 6.78 8.33 8.89 9.15 3.97 8.33 9.06 7.9 14.8 8.18 8.27 7.05 3.44 8.1 2.62 8.15 0 7.54 7.02 7.94 8.81 3.4 7.34 7.53 5.26 3.18 6.13 9.72 4.16 0.79 8.25 5.62 6.17 8.99 9.96 3.67 7.65 2.68 9.47 0 8.16 8.48 7.3 0.79 6.52 9.28 8.63 2.62 1.83 7.92 9.79 5.02 4.79 9.39 9.03 7.96 11.5 9.88 5.41 9.62 9.06 8.08 12.2 10.1 4.57 2.53 10.4 9.92 6.74 6.4 0.79 8.33 10 9.56 4.8 5.59 2.22 5.56 0 7.28 9.13 10.7 9.71 8.47 0.45 11.4 5.22 10.7 9.93 1.83 9.22 9.77 5.56 6.28 13.5 9.05 9.34 10.2 9.29 2.62 8.31 6.77 2.7 7.33 3.75 7.19 10.7 0.45 10.6 9.91 0 6.83 6.06 8.47 5.54 7.86 5.82 7.81 8.3 3.18 9.12 2.92 2.7 9.6 4.5 2.7 2.33 7.24 7.59 6.63 9.97 9.93 7.43 1.3 11 9.87 8.32 10.9 3.49 11.2 7.98 7.38 9.06 5.49 2.1 8.71 10.2 10.6 7.87 3.86 12.4 5.32 3.06 3.97 7.99 6.59 11.2 7.26 6.05 8.66 2.43 2.53 7.06 1.07 0.79 1.3 8.51 1.07 8.83 0.45 3.49 5.61 9.05 0 8.82 1.83 2.53 9.87 9.35 6.23 6.79 8.97 3.19 0 9.39 1.97 5.69 0 8.07 12.4 7.5 8.41 7.98 12.3 9.73 2.85 1.3 7.34 6.76 5.95 11.9 0 7.07 9.32 11.9 4.57 5.76 14 0.45 8.8 0 5.18 10.4 5.04 8.7 3.29 9.43 8.05 8.86 7.98 13.7 1.07 6.66 5.42 3.18 6.44 2.33 8.3 5.04 10 7.63 4.24 1.83 7.29 5.98 11.3 8.79 9.26 10.3 9.26 10.3 7.44 7.43 11.9 8.84 12.1 9.8 7.8 9.23 8.85 3.24 7.59 7.38 6.29 8.41 8.01 8.78 5.18 7.44 7.47 8.22 9.42 7.33 3.29 8.53 0.45 6.93 7.51 5.64 0.79 6.38 0 7.74 11.6 1.3 5.57 6.17 3.24 10.3 9.33 8.79 6.09 8.51 2.43 6.3 9.89 8.72 1.3 7.58 1.83 0.45 9.85 10.2 7.22 9.43 3.18 5.12 5.21 3.49 2.33 9.48 6.41 8.78 7.05 8.26 6.14 3.4 6.09 0 8.26 4.43 1.3 9.42 3.67 10.8 12.1 8.06 5.38 8.17 11.4 0.45 8.11 10.1 9.23 13.3 9.46 8.56 0.79 9.7 8.42 1.83 9.86 1.07 0.45 7.87 7.99 6.66 6.41 8.47 8.89 0 1.05 7.44 11.6 6.91 8.67 3.9 6.57 2.08 7.15 8.54 9.96 12.7 8.94 8.61 11.7 7.3 11.8 1.3 7.4 2.7 12.9 6.95 2.92 7.31 6.93 0.79 8.18 4.9 7.76 10.6 9.98 11.3 9.08 3.34 1.83 10.3 3.58 12 6.07 7.93 11.9 9.95 10.9 9.77 8.97 8.15 7.89 6.53 9.61 4.38 9.13 11.4 9.3 4.85 8.67 10.6 7.55 5.42 10.7 4.61 11.5 6.55 8.19 13.1 11.4 9.44 8.47 4.63 6.86 8.17 9.68 3.18 9.28 7.36 10.6 0.45 10.6 14.9 1.68 5.58 10.8 5.13 7.17 0 11.4 2.22 2.43 12.6 5.1 3.18 10.9 10.2 6.81 9.1 9.96 4.95 7.76 6.7 8.33 6.13 8.3 7.75 11.3 8.67 8.63 9.11 6.93 8.77 5.73 4.59 6.86 9.2 1.83 6.95 10.4 5.62 1.5 11.6 6.26 4.79 5.68 7.18 6.39 2.99 6.83 0.45 8.54 11 7.74 1.07 3.75 9.78 8.39 7.15 5.86 11 8.99 1.68 11 11.5 9.24 9.22 8.63 7.44 4.63 6.86 5.01 8.81 8.43 9.22 12 7.13 12.4 0.45 10.1 9.1 7.47 11.3 11.5 7.68 7.48 4.46 9.3 8.78 10.1 7.71 9.31 11.4 4.24 5.33 7.81 10.4 0.79 10.3 10 9.82 8.23 0 7.78 7.19 1.3 0.79 9.06 2.75 5.42 6.08 7.96 7.51 7.48 7.62 5.55 7.65 6.16 4.87 11.1 12.2 8.85 5.7 1.07 9.87 10.3 5.41 10 9.68 5.36 6.02 6.8 4.1 8.04 6.65 12.6 5.68 10.3 2.78 9.95 3.9 9.06 14.8 2.78 1.5 10.3 8.93 7.76 2.62 3.86 3.18 2.43 5.21 11.1 5.91 11.6 0.45 9.07 10.7 6.13 11.8 8.54 10.2 10.7 8.39 6.28 9.52 10.3 7.98 8.56 8.78 10.1 4.35 8.31 8.17 5.43 4.43 6.55 8.79 7.03 8.3 11.2 7.13 9.37 1.97 0 7.92 7.37 9.43 9.22 7.78 7.63 7.9 6.88 5.87 7.53 8.12 5.62 1.83 11.3 8.24 9.37 8.15 2.85 2.62 3.9 3.63 4.16 10 8.21 0 5.43 7.02 5.81 9.12 4.87 7.8 8 11.3 9.13 8.67 13.6 1.5 3.49 5.83 11.8 3.49 7.41 10.8 6.95 2.1 9.57 6.98 10.2 5.1 4.81 8.66 10 9.47 10.3 8.34 4.22 6.67 6.08 8.79 7.1 7.07 2.78 9.79 1.5 1.5 11.7 8.6 6.57 8.26 2.1 5.39 9.76 13.1 4.81 3.34 10.8 1.07 3.71 0.79 9.8 0 11.2 6.33 5.38 5.47 3.06 11.3 8.36 9.2 3.97 2.43 5.45 9.87 2.1 10.7 8.24 6.26 1.07 6.67 0 3.97 7.93 0 2.22 9.01 3.44 2.78 4.83 1.3 9.6 0.79 7.83 1.5 3.44 9.66 4.11 9.32 5.34 9.11 9.92 6.73 12 0.45 7.98 7.42 9.61 10.9 9.5 9.21 5.72 1.07 1.83 1.68 8.27 9.6 5.47 6.59 11.7 6.25 5.66 9 2.85 6.4 3.58 7.33 7.62 8.5 3.58 9.19 5.91 10.4 1.68 7.84 7.24 6.58 8.87 7.59 7.05 1.83 0 8.97 6.28 9.82 7.4 6.04 8.49 5.54 6.34 8.41 8.35 8.6 9.04 3.71 7.43 5.45 6.35 8.99 5.62 4.77 6.96 6.93 6.67 9.78 4.83 4.1 6.58 7.75 5.92 3.12 5.42 7.92 2.92 7.09 6.06 8.03 5.79 7.81 8.44 6.98 7.87 9.37 2.62 1.71 11.4 0.79 0.79 1.5 8.15 10.8 7.79 0 9.99 5.31 6.23 8.82 8.54 10.2 9.39 0 9.16 5.13 4.13 3.75 7.41 0.45 4 3.4 6.96 8.14 7.24 2.92 1.07 8.55 7.46 5.47 3.75 12.9 11.6 5.52 9.15 4.74 6.21 12.3 10.5 9.67 1.97 4.74 12.9 1.3 6 9.49 0 0 2.1 0.79 5.12 4.07 9.29 5.9 1.97 8.15 9.36 7.38 6.7 8.83 2.06 6.8 4.89 7.94 7.48 6.8 8.23 4.69 9.26 2.85 9.41 2.92 5.86 3.44 9.14 8.19 3.29 5.92 8.53 7.97 0.79 3.86 7.66 5.13 13.8 8.64 14.6 7.22 4.72 0.79 6.27 10.4 10.4 5.73 4.07 7.53 3.44 8.24 7.64 9.2 11.1 5.81 0 5.68 4.54 3.34 5.33 6.77 4.03 6.99 8.05 5.57 12.2 4.45 7.92 4.43 4 5.29 6.06 7.76 2.99 9.32 8.67 9.78 11.1 1.97 3.29 4.9 0.45 7.26 0.79 8.07 3.34 11.5 8.35 8.76 7.32 3.9 11.2 8.91 10.4 8.39 1.07 4.45 7.88 7.39 1.83 11.7 8.39 6.24 7.01 12.2 3.67 8.59 10.5 12.2 5.94 6.15 7.81 2.85 7.23 3.58 9.97 7.62 3.12 7.44 5.19 8.24 6.1 7.58 6.21 3.75 13.7 8.83 3.12 5.21 8.14 6.94 2.33 7.9 11.2 7.14 9.74 9.37 11.8 8.23 8.82 11.2 7.69 9.77 11.5 11.8 8.78 8.77 9.6 8.19 7.2 3.83 5.43 11.2 7.83 5.99 7.97 5.49 2.7 11.8 7.37 10.9 8.36 8.89 5.38 4.72 6.46 0 4.92 0 5.2 7.49 7.34 5.69 0.45 8.78 6.17 1.07 8.52 9.57 0 9.85 9.99 5.03 5.48 9.38 0.79 8.71 5.81 7.52 8.72 11 1.83 2.78 8.02 8.87 9.13 6.7 10.4 1.3 3.58 10.5 3.71 2.92 8.44 2.33 0 8.23 11.8 6.13 9.58 9.34 8.68 3.12 5.12 2.1 11.9 7.16 10.3 8.36 7.47 9.66 0.45 10.4 1.68 5.22 4.91 4.63 9.38 7.62 10.3 0 6.02 4.45 7.32 7.4 5.71 4.96 3.97 6.99 7 6.25 7.44 4.4 12.7 0 9.38 6.98 4.5 5.74 2.43 6.31 8.41 6.67 12 5.98 8.06 8.71 0.89 7.93 6.93 0 0 5.23 0.45 6.92 6.67 4.58 5.57 9.33 8.25 9.84 4.65 8.58 0 0.79 10.2 6.43 3.97 10.4 3.49 3.29 11.8 10.9 0.45 14.1 3.29 6.5 1.83 1.5 11.3 9 5.27 2.53 8.43 9.7 0 5.33 10.9 9.19 7.53 6.71 8.24 6.51 5.57 6.27 7.62 8.3 11 11.3 3.58 6.98 2.78 10.4 11.6 2.53 2.7 6.02 9.68 5.22 8.06 5.91 4.3 12 0.45 6.19 10.1 0 3.67 10.2 3.54 5.16 8 5.04 7.03 11.3 9.79 2.22 10.5 8.23 1.07 8.27 6.87 11.6 8.92 3.12 2.99 2.7 5.12 1.83 5.53 5.8 7.02 10.8 9.78 8.81 7.67 6.57 7.42 9.16 6.98 7.7 4.24 9.81 7.08 0.79 13 8.51 8.12 8.5 7.19 7.88 5.13 6.77 6.89 4.61 8.5 8.92 6.01 10.3 2.53 11 5.9 7.73 7.69 4.58 9.17 2.1 1.83 4.45 11.2 7.95 11.2 0 6.3 9.11 1.07 4.9 6.02 8.37 8.53 11.6 11.7 3.34 10.1 1.3 12.3 1.83 10.3 4.24 2.62 10.9 12.3 1.83 8.91 2.32 2.99 3.29 4.27 9.68 8.71 9.72 12.2 12.3 3.18 3.18 6.88 1.5 10.2 6.86 11.3 7.74 12.8 12.9 3.18 0 11.7 3.12 0 10.1 1.07 9.49 1.5 6.74 13.4 11.3 8.43 9.5 8.34 8.55 0.79 7.14 9.13 10.7 10.8 7.73 9.56 8.88 5.62 6.57 9.34 9.68 9.4 4.79 10.2 8.14 10.1 4.87 2.1 0.45 5.43 8.91 3.67 7.97 5.52 7.43 6 6.9 5.74 7.41 2.53 9.51 8.13 3.24 1.3 8.29 7.03 3.4 2.78 8.98 9.07 5.87 9.72 4.69 3.06 1.3 10.6 8.85 10.1 5.91 6.28 7.87 5.81 3.18 0 4.1 9 2.85 0 7.29 9.9 5.51 9.5 7.65 1.3 11 4.07 6.14 5.47 4.83 4.9 10.5 8.3 6.93 8.89 7.02 10.4 4.07 10.3 8.72 0.45 0.79 6.84 6.49 11.7 8.26 9.84 2.7 10.4 7.37 9.55 8.85 11.8 7.75 7.94 8.25 10.3 12.7 9.34 12.9 7.44 7.77 3.24 3.44 9.93 9.91 11.2 10.4 5.5 10.1 6.75 11.3 3.29 1.97 4.3 4.74 8.76 9.96 5.87 10.4 9.77 8.97 9.01 4.48 4.22 0 5.91 2.22 5.47 9.72 4.87 3.63 11 12.5 9.07 5.07 10.7 11.4 11.8 8.92 7.5 8.49 5.84 10.4 8.53 7.21 8.34 7.94 9.73 7.45 3.18 10.1 7.78 11.5 7.87 11.2 10.1 0 9.26 4.35 1.83 9.84 11.1 6.5 0 11.7 9.35 10.5 10.6 6.95 12.3 10.5 9.76 7.93 8.06 7.89 7.43 8.19 8.41 15.1 7.27 11.8 5.79 7.73 11.7 8.6 5.8 6.08 0.79 10.2 9.23 9.51 10.9 10.9 9.88 6.49 9.16 3.93 8.06 10 7.02 7.84 8.77 7.89 7.79 11.3 2.92 11 13 11.5 7.94 7.8 8.17 10.6 11 9.6 8.76 10.9 8.55 12.5 10.7 9.13 11 17.4 1.83 1.83 7.71 11.1 5.92 7.4 9.97 12.3 13.1 14 16.2 9.8 11.4 6.83 7.13 4.16 10.4 9.72 4.4 4 4.5 10.9 6.35 11 9.45 12.8 14.2 7.67 5.81 7.69 9.39 6.5 11.2 6.64 8.91 1.97 12.2 3.67 5.65 8.76 3.54 7.49 11.2 9.69 10.8 9.33 9.33 8.16 10.3 2.53 8.48 11.1 9.11 0.54 10.1 11.2 8.68 1.83 12.8 5.99 7.24 9.31 4.86 4.24 4.89 1.4 8.96 3.75 5.29 7.89 9.21 8.43 13.2 5.96 9.1 9.07 4.52 7.48 10.4 13.5 8.43 13.2 8.79 9.95 12.2 12.4 13.6 11.6 12.7 0.45 9.09 0 10.5 8.64 5.59 11 0.79 0.45 0.45 9.34 1.83 10.1 7.38 1.07 2.62 9.78 8.08 7.11 8.57 2.22 9.33 3.79 7.08 7.92 10.8 7.63 0 8.37 13.9 10 9.33 0.79 4.27 9.21 8.45 5.27 7.43 10.3 1.07 3.18 5.82 4.03 10.5 9.27 6.44 9.63 8.08 1.07 8.9 4.13 9.17 2.43 7.99 0.79 6.39 2.78 8.65 6.19 4.94 6.07 9.41 6.03 5.39 7.16 9.53 7.4 2.82 6.88 7.84 1.97 8.23 8.68 8.63 9.27 4.5 8.38 8.85 10.3 10.6 9.57 8.87 8.52 8.23 9.65 7.89 9.72 6.61 10.3 9.11 8.91 8.74 7.98 9.42 7.73 9.1 7.42 2.22 8.47 3.67 9.95 6.5 9.78 4.87 4.4 7.94 6.85 9.62 7.87 1.68 8.35 8.93 5.96 1.97 11.5 7.24 1.83 3.93 4.3 10.6 8.23 9.85 9.09 7.55 11.3 9.33 7.3 6.87 7.93 7.96 4.94 12.6 8.35 7.38 15.8 5.73 9.3 2.62 0.79 1.3 12.3 5.1 9.09 13.5 11.2 8.83 8.02 10.2 6.42 8.22 13.9 8.8 4.35 3.93 8.75 8.62 8.02 5.34 7.25 9.29 9.23 9.68 11.2 5.16 13.7 9.38 9.86 7.77 7.98 11 11.8 9.4 7.62 9.79 10.8 13.1 5.02 6.59 2.1 8.93 4.03 5.88 6.08 10 6.36 1.07 9.47 10.6 6.81 10.8 7.44 9.21 8.72 8.22 9.56 8.4 9.72 4.57 7.82 9.04 10.7 11.3 10.4 9.7 0.79 8.79 11.6 4.38 2.33 10.8 10.4 9.29 1.3 11.6 3.24 10.4 9.74 8.22 10.7 7.54 10.2 9.09 10.9 11.8 7.09 11 11.6 6.92 11 9.79 2.62 10.4 1.07 11.4 10.6 11.6 9.45 9.21 11.7 12.3 6.88 2.99 5.34 3.9 8.56 2.22 9.15 10 8.68 7.79 8.69 9.13 2.99 11.8 9.97 11.2 0 8.09 9.64 1.5 7.92 11.1 5.15 10.1 6.81 0 10.2 9.05 9.72 2.1 4.13 9.06 1.5 13.4 2.85 12.8 6.24 8.32 8.85 6.27 0 11.3 7.98 6.13 5.81 10.1 5.81 5.42 5.45 12.3 10.3 11.2 10 8.11 10.4 1.97 8.65 8.2 9.52 7.13 9.99 8.38 10.2 8.19 4.63 7.34 9.15 10.3 13.1 2.62 5.61 7.95 3.58 6.42 8.22 3.93 10.8 13.2 5.59 7.68 9.29 8.72 10.8 4.96 5.67 6.88 7.94 7.94 7.97 7.9 8.05 9.32 9.54 5.75 9.96 9.96 9.18 9.44 10 4.45 9.53 4.1 4.03 8.47 7.98 3.06 1.68 5.97 3.34 6.39 7.66 11.1 2.33 9.48 9.79 10.4 2.7 6.57 1.07 2.7 5.26 4.85 6.33 3.06 9.47 7.58 1.97 0.79 7.73 7.56 7.99 12.5 5.72 8.4 6.75 12 5.84 9.82 7.51 6.69 8.11 10.2 3.12 10.4 7.47 7.26 1.3 12 7.98 6.81 4.38 9.76 8.18 10.1 4.65 10.2 5.49 8.48 7.85 6.08 3.9 4.27 10.8 11.5 4.85 8.14 5.66 6.28 4.69 8.65 4.19 3.56 7.3 1.5 11.5 2.53 8.45 9.83 3.54 8.08 6.14 8.09 3.89 8.41 6.54 4.87 12.6 7.58 1.83 9.82 8.93 7.91 9.3 5.09 8.64 1.5 9.7 5.92 7.75 2.43 10.1 9.68 10.3 8.89 9.41 6.74 1.97 10.4 8.62 9.43 2.43 5.23 8.42 9.14 8.22 8.31 6.86 3.83 9.57 8.11 6.45 7.49 10.1 8.74 1.97 4.24 4.72 0.45 2.43 10.8 10.1 0 2.62 5.15 5.44 6.83 4.83 7.05 2.99 9.39 10.8 9.07 8.69 10 9.7 9.49 8.68 11.3 12.2 5.52 8.95 8.04 8.35 4.07 0 5.26 0 8.87 4.63 6.02 3.54 16.1 11.3 8.99 2.53 9.45 10.9 7.86 10.1 6.66 13.3 7.6 7.8 10.9 9.29 8.98 10.4 12.3 9.06 5.12 0 10.4 3.67 7.03 10.6 9.68 5.38 11.9 4.1 12.5 9.55 10.5 8.61 7.7 10.5 10.8 9.04 0 7.85 10.4 7.72 11.5 10.2 10.9 11 9.51 3.2 5.62 8.98 9.3 9.24 10.1 7.53 9.25 7.48 8.82 1.3 10.2 9.15 7.29 10.7 8.05 11.1 9 10.4 0.79 9.87 7.95 10.1 10.8 10.5 12.2 9.81 9.01 10.1 8.88 9.03 9.64 9.6 10.9 9.7 9.08 9.98 12.2 9.15 11.8 11.6 8.11 9.14 9.64 9.43 3.58 9.75 9.86 2.85 8.6 9.72 8.99 5.01 9.79 7.7 10.5 10.2 10.2 9.71 9.71 10 9.45 9.06 8.1 11.3 7.16 9.02 10.7 0 11.6 11 9.07 9.77 8.16 6.79 9.46 9.42 11.9 10 10.5 11.1 9.07 10.6 8.37 10.3 9.91 10.3 9.3 7.48 11.4 11.1 9.08 0 8.45 10.6 9.63 6.79 4.4 6.28 8.27 7.81 9.65 6.1 4.54 10.8 8.39 10.5 2.22 9.54 10.9 0.45 4.3 0 10.5 10.9 10.8 8.01 7.4 8.27 2.85 8.65 9.95 9.24 11.2 5.97 8.61 9.86 10.9 0 10.9 8.81 9.87 9.94 10.4 8.53 12.2 5.73 12.4 10.2 11.7 8.68 2.43 1.68 9.67 8.88 10.4 9 9.64 9.34 9.49 8.09 10.3 10.5 10.2 9.63 9.64 11.1 9.04 6.96 9.3 10.2 10.5 6.85 9.84 11.5 10.3 10.2 5.82 9.2 5.49 9.61 12.7 11.3 10.3 10.5 9.37 5.3 9.45 10.1 10.8 0.45 8.84 11.2 9.83 9.83 9.85 8.77 7.49 9.41 8.8 10.4 8.8 7.98 8.9 9.58 5.83 10.1 10.8 8.58 9.44 10.3 9.04 9.46 9.88 8.41 14.8 8.57 2.1 9.99 3.06 10.9 8.88 1.32 11.4 10.2 9.67 6.56 9 10.4 9.99 8.08 6.11 0.45 9.11 10.3 10.5 5.92 11.6 9.35 9.31 10.5 6.13 9.68 10.3 10.1 8.93 7.81 9.32 11.5 10.4 10.5 10.2 9.76 8.79 2.7 8.3 4.83 1.07 10.2 9.09 10.6 8.71 9.46 10.5 8.45 12.7 9.04 10.2 11.5 9.41 10.7 9.93 10.5 10.1 10.4 8.73 12 9.75 8.55 8.75 9.83 10.7 8.7 10.9 9.21 6.59 10.4 4.63 9.88 9.68 10.7 10.2 9.45 11.4 11.2 12 11.5 11.2 9.73 13.3 8.89 8.91 12.6 11.6 9.52 10.4 10.9 7.22 9.84 12.6 2.22 10.2 7.91 3.12 13 8.87 10 8.41 8.67 10.5 10.9 10.8 0.45 8.77 9.35 2.99 8.71 8.25 8.9 11.8 9.04 8.86 9.65 7.34 9.57 12.4 8.42 6.79 8.92 10.1 10.1 4.43 7.52 9.69 8.78 10.4 9.31 9.74 11.1 7.75 7.65 8.84 10.2 13.1 3.93 8.13 9.92 8.54 11 9.75 10.7 10.1 10.1 9.02 9.7 9.73 11.9 12.4 10.4 9.46 9.2 11 8.57 9.8 10.2 8.98 9.76 7.71 11.2 9.54 6.76 3.12 9.58 4.67 6.59 13.5 7.97 9.33 8.68 11 10.8 9.59 11.2 9.87 6.72 11 10.6 12.4 9 9.39 6.83 8.48 9.97 9.01 10.1 7.06 7.63 9.23 11.7 9.61 9.06 0.79 10.7 8.77 10.3 10.1 8.26 10.4 9.89 12.6 11.9 9.55 11.2 10.5 9.78 9.21 8.83 10.3 11 10.8 7.32 8.95 11.6 10.1 8.99 10.3 3.79 13.8 10.8 10.3 10.8 11.2 8.36 9.85 8.79 9.97 6.58 9.79 10.1 5.69 11.3 12.6 8.83 12.9 9.45 11.6 10.2 11.3 8.73 10.3 8.09 9.76 9.85 10.8 9.18 10.6 10.9 11.1 11.8 9.59 11.9 10.1 9.29 11 10.6 8.52 10.6 3.83 8.63 11.5 9.47 7.41 8.28 9.11 9.92 10.9 9.45 4.4 10.3 9.83 9.23 8.79 5.09 1.07 1.07 10.8 0 9.34 11.8 7.03 10.8 9.19 6.05 8.21 10.2 0 7.87 6.35 11.2 11.4 9.98 7.44 10.6 11.9 12 11.8 8.06 6.83 9.7 4.67 9.59 8.3 10.3 8.09 9.21 5.15 12.1 11 13 8.59 8.75 9.11 10.7 11.6 10.5 7.42 10.8 11.4 8 10.6 11.2 12.2 7.5 1.07 9.97 11.5 8.42 8.63 9.72 1.83 10.1 9.21 8.16 5.55 10.8 10.9 9.4 9.63 9.77 9.16 9.76 9.82 10.2 8.83 0 1.3 14.2 9.4 10.7 13.2 9.23 10.1 7.07 6.87 15 11 7.65 9.67 7.62 9.82 7.56 1.68 12.4 8.31 6.73 11 0.45 8.35 0 5.23 9.54 11.1 11.2 10 6.77 8.15 11.7 8.28 8.7 8.66 12.3 10.7 9.25 9.01 5.02 3.24 10.2 0 8.98 11.8 0 6.07 11.4 2.99 9.55 9.97 9.01 1.68 10.9 9.12 9.51 10.5 11.7 8.76 6.39 9.31 9.17 4.4 9.39 8.52 8.92 10.5 12.5 6.71 12.2 4.35 10.7 11.8 8.82 9.68 9.28 2.22 7.36 10.3 9.22 9.97 6.67 0 1.3 2.62 10.4 8.85 10.5 10.3 5.66 9.69 10.3 8.8 7.02 10.1 11.4 12.4 9.7 8.98 7.54 1.3 13.2 7.43 9.62 9.16 9.01 11.2 10.1 10.8 8.45 8.01 9.77 8.06 9.52 8.14 10.8 9.07 11.1 12.8 12.2 9.28 10.3 10.6 9.49 8.81 8.85 8.7 0.79 9.5 4.1 3.54 12.7 9.6 6.85 10.8 10.8 12.3 10.7 3.9 2.93 7.49 8.6 7.07 4.69 10.1 9.41 9.01 2.1 7.45 9.86 7.84 7.75 7.94 11.8 9.36 5.32 4.43 4.61 3.68 8.4 2.62 5.92 0.45 10 0.45 5.51 2.22 6.73 7.29 4.89 6.22 8.68 7.88 7.51 0.79 5.16 9.47 8.8 10.9 8 2.22 8.05 15.9 8.74 11.1 0 16 10.9 10.1 12.3 5.88 3.24 3.93 7.76 1.07 8.67 11.2 6.41 2.74 7.63 7.53 4.03 9.22 0.79 6.2 9.23 11.3 10.1 4.87 5.41 8.21 9.47 9.18 10.1 4.85 11.2 5.71 10.7 8.25 4.61 5.44 10.4 7.13 3.93 10.4 4.67 6.07 9.1 9.79 5.82 0.45 9.29 10.7 8.75 8.24 8.04 6.41 5.82 9.62 5.13 6.9 9.82 0 1.07 8.4 1.07 1.07 12.3 9.04 6.2 6.19 2.33 0.79 7.67 8.58 4.48 6.61 9.5 8.11 8.06 4 12.6 0 4.52 12.2 5.78 9.62 8.22 9.66 8.96 6.6 8.17 5.95 2.53 0 5.81 9.76 8.99 6.54 5.44 4.27 7.23 0 8.03 6.52 7.43 6.68 3.9 10.5 0 7.26 3.97 1.97 10.7 7.23 7.78 4.75 8.5 8.78 8.81 9.73 8.36 0.79 2.99 3.63 7.25 9.23 7.9 10.1 8.11 6.34 5.76 8.47 9.53 4.22 6.38 6.89 8.57 2.62 8.67 8.39 0 2.92 9.21 3.06 3.12 0.79 7.82 0.79 4.9 5.25 2.1 2.1 8.13 2.53 5.35 6.95 5.51 8.79 4.94 8.44 4.35 3.97 8.95 1.68 6.16 4.92 0 2.1 1.5 10.5 9.42 8.15 6.32 4 9.21 9.36 8.35 9.32 2.1 9.65 11.6 9.01 8.81 9.53 5.85 8.97 5.87 1.83 7.52 10.6 11.8 3.24 10.9 9.22 11.3 7.52 10.4 10.5 9.05 8.43 7.93 0.79 10.4 9.8 7.78 7.57 9.86 1.07 10.7 11.2 9.14 5.75 6.08 9.12 10.4 8.77 8.73 0.45 12.3 9.71 8.2 11.1 10.8 5.93 1.3 11.2 6.74 0.79 10.4 2.78 10.3 8.67 11.6 6.17 7.74 9.18 11.7 9.31 11 9.26 9.29 7.43 7.92 9.42 9.84 11.1 9.48 0.45 8.31 3.63 8.78 10.6 11.6 10.2 13.2 10.4 10.3 5.41 9.2 8.91 9.18 8.16 8.4 5.07 8.08 10.5 11.9 2.43 7.26 8.19 7.34 9.86 9.27 5.05 10.5 8.58 8.51 7.97 9.95 8.43 8.7 4.16 9.53 6.17 9.35 11.9 9.59 7.59 10.1 9.26 5.78 3.63 8.91 10.8 11.6 0 10.5 8.22 9.32 3.83 5.91 6.38 9.77 3.86 8.92 1.07 9.93 1.5 9.66 1.68 1.07 4.67 9.58 9.99 8.46 13 9.34 8.76 9.87 8 9.16 9.87 9.92 10.3 9.19 8.51 8.59 9.9 10 8.54 7.24 9.97 7.31 10.4 10.4 9.65 5.87 10.2 10.5 9.21 16.4 10.5 9.26 7.22 5.96 9.86 9.59 9.75 9.71 10.2 6.99 8.97 1.3 9.09 8.43 9.55 7.47 10.3 10.3 10.3 7.96 15 10.6 11.7 6.94 10.7 8.41 9.78 8.87 11.6 6.19 8.81 6.58 9.24 11 9.02 8.93 11.3 11 8.47 5.56 7.56 5.81 8.2 9.61 8.43 6.3 7.51 7.27 8.73 9.45 11.6 1.07 8.02 8.44 5.85 7.46 1.97 9.37 1.3 8.13 7.23 5.93 8.46 5.66 10 10.3 11.2 10.7 10.7 10.2 8.12 9.37 9.97 11.8 10.6 11.9 1.07 4.3 8.18 10.5 10 9.61 10.8 8.85 7.95 8.25 10.3 7.39 11.2 10.5 2.53 8.74 9.56 11.2 8.51 10.5 8.97 10.8 8.77 9.36 9.77 10.7 11.8 11 4.03 8.66 9.7 8.52 8.33 5.96 10.8 2.7 9.26 9.44 8.99 4.45 9.85 12.4 8.57 9.22 8.39 6.52 10.3 10.9 9.42 10.4 11.2 7.03 9.02 9.82 4.57 10.4 6.05 12.3 4.54 8.9 5.62 10.6 10.5 2.43 9.99 12 10.2 10.2 9.17 1.5 9.42 0.79 4.05 7.45 4.83 7.71 13.6 8.17 7.26 9.13 5.97 5.16 0 4.67 0 4.87 10.4 8.64 8.14 3.23 10.2 9.14 1.5 7.56 9.83 8.84 3.63 8.1 5.1 7.89 10.1 9.32 8.3 10.2 8.37 5.33 12.8 10.4 10.7 2.85 10.9 0.45 8.1 8.98 9.08 6.37 11.1 10.7 10.4 1.08 11.5 10.5 9.04 11 8.35 0 7.39 8.64 6.83 11 10.1 11.6 12.2 9.52 9.5 1.3 6.32 6.41 9.93 9.5 8.21 10.7 7.13 9.74 12.2 9 7.41 9.05 9.5 10.2 9.08 9.26 9.79 9.35 9.63 10.3 6.12 1.97 6.3 10.8 0 2.68 10.1 9.62 4 10.6 1.83 7.87 9.03 4.63 10.8 5.05 8.14 1.07 12.2 12.7 9.92 6.28 6.72 2.96 7.61 8.88 6.19 12 5.91 6.43 6.03 0 9.33 4.99 10.8 9.27 7.62 5.3 7.96 8.91 1.3 9.55 8.78 12.8 11.4 2.92 8.39 0 12.6 8.28 8.18 7.4 7.61 0 8.94 8.83 8.72 11 0.79 6.43 10.1 8.01 6 9.05 9.66 13.6 9.25 10.8 9.66 9.54 12.4 9.42 1.07 1.07 8.52 3.06 8.22 9.31 8.71 11.9 12.1 7.7 11.2 8.83 8.81 11.7 1.83 8.79 0.45 6.51 9.57 6.94 8.65 10.7 12.6 6.92 1.5 2.99 10.2 10.3 12.5 2.33 5.26 10.2 7.12 7.22 3.24 9.53 7.72 4.57 9.3 3.75 11.1 1.3 7.78 0.45 6.23 9.99 8.03 4.54 1.83 9.22 8.79 9.72 12 9.75 9.16 6.94 5.7 6.62 7.74 7.5 11 0.79 3.9 11.4 1.07 8.17 4 5.41 7.79 11.1 1.97 0.79 10.2 8.8 6.77 0.49 7.49 9.12 6.62 6.32 8.72 10.3 7.56 8.28 0.45 6.28 9.06 7.81 11.7 9.65 11.3 8.78 6.27 7.23 11.5 7.4 0 4.83 1.83 2.62 1.68 8.34 10.4 2.33 8.36 11.9 3.93 9.09 6.95 9.77 8.2 9.04 4.63 5.69 8.31 11.4 11.8 8.4 8.98 7.89 9.88 10.7 10.5 10.2 8.2 8.97 1.5 8.94 9.14 0 3.86 4.3 3.58 5.61 9.66 7.94 7.9 7.17 6.65 9.99 3.9 3.18 8.18 9.29 8.92 5.15 7.63 4.92 9.22 3.24 5.43 8.89 11.9 5.34 10.2 9.4 11.1 10.2 4.32 12.3 11 7.19 10.9 13 8.67 10.1 10.2 9.73 8.74 8.08 8.79 9.19 9.39 9.14 5.1 9.88 8.14 9.73 4.32 9.57 7.22 11.3 9.79 9.46 7.74 12 7.57 8.86 11.3 3.75 11.7 9.71 7.18 8.21 11.2 13.1 9.75 8.91 12.5 2.43 12.2 7.34 10.5 7.6 9.15 9.95 6.28 10.3 12.7 10.5 7.13 3.93 11.2 14.5 0.79 6.81 12.7 12.3 5.11 2.7 2.43 10.2 8.13 1.07 9.87 11.7 5.15 10.5 3.97 1.3 12.7 3.4 7.99 8.92 10.9 10.2 10.1 12.3 11.5 11.7 10.2 2.85 4.17 4.89 2.62 11.1 7.92 9.31 14.3 3.44 7.62 5.18 10.4 9.31 6.93 2.62 2.62 4.38 5.59 4.67 9.82 2.7 8.66 6.34 1.5 5.04 1.83 6.21 9.46 6.01 6.41 9.87 5.3 2.33 1.97 0.45 8.41 7.31 7.39 14.5 10.1 2.7 5.45 6.44 8.54 1.07 7.59 7.22 7.89 7.75 8.68 1.07 5.98 8.75 3.86 8.77 6.44 8.4 7.01 9.39 4.4 6.54 4.5 9.7 8.19 9.1 2.1 2.22 3.54 8.15 3.58 8.5 1.97 9.69 3.29 6.85 4.67 9.31 5.88 8.54 4.33 0 3.25 3.24 9.49 1.97 4.07 1.3 9.42 0.45 5.6 1.83 4.38 9.75 9.66 7 5.27 4.65 4.77 6.32 6.06 4.03 7.92 2.78 0.79 3.29 9.61 10.1 8.08 0.79 4.19 8.03 6.04 10.1 6.3 7.06 5.89 4 3.29 7.73 7.54 10.9 5.47 9.13 8.43 9.25 7.6 2.7 8.69 9.41 1.97 5.72 7.76 4.65 8.12 6.08 8.68 4.1 10.1 5.12 4.54 4.32 1.3 7.55 7.67 0.79 4.27 5.04 9.78 3.67 0 8.25 12.9 8.8 9.02 4.59 8.64 3.83 0 0 2.53 7.78 2.78 5.19 8.1 0.79 9.97 7.01 5.92 2.1 6.21 7.53 8.88 8.62 8.96 3.3 0 5.81 5.97 5.83 2.99 4.16 11.8 3.29 8.14 8.16 7.61 7.9 2.93 4.27 7.32 0 4.75 10.5 3.24 6.26 9.55 7.56 5.77 8.53 10.1 1.83 3.49 0.45 7.9 0.79 3.06 2.33 7.89 8.1 8.46 4.45 6.28 0 5.56 4.7 8.12 0.79 11.2 9.62 6.28 1.5 5.1 7.19 2.62 5.97 1.5 6.2 2.33 1.3 3.93 7.71 5.49 7.36 6.06 11.1 12.2 4.38 4.96 4.3 4.97 0.45 7.61 10.4 7.77 7.13 9.46 1.97 9.64 4.61 3.83 7.08 6.67 6.81 10.2 8.37 8.42 0 5.19 8.49 9.61 1.5 7.69 7.22 1.5 9.2 4.5 6.76 10 8.16 5.78 9.02 6.75 2.78 4.1 2.7 10.9 2.22 8.62 0.79 2.78 6.65 7.45 8.67 10.1 2.62 9.77 1.3 8.65 2.78 7.45 5.96 6.55 8.19 5.73 9.71 3.24 9.26 9.77 3.63 7.14 8.16 5.68 5.98 7.15 0.45 7.29 3.4 9.12 4.15 5.26 8.2 4.4 3.4 7.55 0 5.71 8.79 6.51 4.19 6.51 8.07 0.45 4.48 3.9 3.06 2.1 7.84 7.13 2.22 9.91 6.1 8.82 5.21 3.67 4.75 8.73 0.79 8.05 9.97 9.88 2.22 2.43 7.77 2.43 2.71 4.45 7.86 7.84 9.87 2.92 7.86 7.83 9.8 8.34 2.78 2.92 5.58 7.55 7.8 2.1 5.35 6.25 7.91 8.24 2.85 9.88 9.42 10.9 10.9 10.4 6.59 11.8 0 17.3 12.9 10.6 7.87 11.8 10.7 11 2.1 8.1 12.5 9.27 9.72 9.18 8.16 10.5 13.8 13.3 7.78 9.69 11 0.45 8.54 5.93 8.51 1.5 11.7 8.78 10.4 11.1 10.9 10.4 9.29 9.53 8.07 5.55 10.9 10.2 9.58 10.3 11.3 8.7 7.79 7.96 9 7.03 14.1 9.1 8.24 10.3 11.3 1.07 3.67 9.34 0 7.6 3.67 10.2 4.13 9.84 11.7 4.59 11.5 7.45 9.99 11.8 12.2 7.18 9.39 10.2 8.62 8.23 9.84 11.8 8.67 9.21 10.3 6.81 10.6 10.4 9.31 10.1 4.67 11.3 8.82 5.73 7.67 10.2 9.08 9.2 9.77 8.54 10.3 10.6 9.74 10.9 10.3 10.1 8.37 9.19 1.5 8.14 8.38 9.21 2.1 8.95 10.4 9.71 9.68 1.5 2.22 9.79 1.83 10.8 3.44 5.78 7.88 5.02 1.07 2.85 4.59 12.5 6.93 4.52 13.7 2.1 10.8 14.6 10.8 10.4 13.1 11.2 8.05 10.3 9.07 9.34 9.97 7.23 9.48 3.12 12.9 11.3 5.29 8.39 9.66 6.44 9.31 8.55 8.41 8 11.4 8.19 8.89 4.61 6.66 8.68 11.1 12.2 11.3 9.23 5.13 10.8 9.91 7.39 9.69 7.96 0.79 10.2 8.68 1.5 10 9.06 0.45 9.08 10.2 5.59 10.6 5.43 10.6 1.83 4.32 8.14 7.96 9.46 4.27 11.2 10.6 10.5 1.83 5.64 5.45 8.4 8.39 0.45 3.79 9.97 11 9.87 1.5 9.54 10.1 8.48 11.8 10.8 9.46 10 6.61 9.86 0 9.89 8.19 11 7.01 6.98 9.08 9.67 3.63 9.18 4.87 9.07 8.72 8.48 9.38 8.71 10.2 9.7 7.23 13.5 12 7.94 9.57 13.2 9.3 7.58 5.39 5.37 7.97 0.79 9.96 8.2 7.79 2.62 6.19 8.54 9.18 9.32 10.6 8.59 0 11.4 8.86 12.3 9.55 9.37 11 3.24 9.7 6 11 9.77 8.01 8.23 9.86 11 8.87 10.4 11.2 7.77 7.97 8.06 9.01 1.07 8.47 6.69 10.4 7.93 2.53 9.06 9.34 13.5 7.91 1.34 10.1 1.3 10.9 10.5 10.9 5.19 7.72 9.55 6.23 7.92 5.39 13.2 11.4 12.1 0 0 0 12.3 1.07 0.41 8.57 11.4 11 12.6 11.4 13.4 10.4 9.78 5.01 12.6 11.9 9.87 2.1 11.2 1.07 2.1 6.55 7.68 11 9.36 9.11 0.79 0.45 0 1.07 9.09 2.99 10.3 8.42 9.72 3.06 10.3 10.5 9.46 2.78 11.5 13.2 14.4 5.3 9.04 11.8 11.9 9.93 8.81 12.9 11.7 9.27 2.33 10 7.23 6.99 4.1 5.22 9.69 5.35 9.44 8.62 5.71 9.83 5.77 4.54 9.77 10.2 11.7 9.71 8.72 11.2 7.03 12 7.12 11.2 9.16 10.8 13.3 8.49 11.1 9.05 11.7 10.6 9.49 11.6 6.23 8.18 15.6 15.8 15.6 10.8 10.6 11.7 10.2 5.85 13.6 12.5 4.63 11.8 8.01 12.6 7.91 14.4 13.4 12.5 8.07 7.63 11.2 13.9 11.7 7.64 12 5.78 5.15 4.35 7.61 9.81 9.58 7.9 12.2 10.5 8.2 11.9 12.4 10.2 9.02 9.92 8.52 8.97 4.45 14 9.98 10.9 8.48 3.67 10.2 7.49 10.2 8.84 5.22 6.61 1.97 9.61 2.62 9.19 0 8.84 12.9 7.71 13.3 11.7 13 11.9 11.8 11.9 11.1 11.5 13.6 1.07 12.2 12.8 0 6.58 5.45 9.05 6.85 8.99 9.31 7.46 4.27 8.96 9.05 9.95 3.29 3.79 1.3 5.43 8.94 8.87 7.56 6.61 8.36 9.12 9.25 6.9 10 5.06 6.7 9.88 9.6 9.59 3.44 12.1 0 4.19 11.5 0 9.67 10.4 1.68 2.62 3.75 9.18 1.83 8.77 9.81 10.4 8.73 8.47 10.6 5.02 10.1 11.7 11 11.8 9.67 11.9 9.96 3.49 10.3 5.59 2.33 10.9 10.6 6.66 9.22 10 11.5 11.1 13 10.5 6.98 8.3 10.8 13.7 10.4 6.82 6.3 13.7 13.1 13.1 7.69 4.33 13.4 10.5 14.9 13 4.45 10.3 11.4 9.74 12.3 4.38 4.07 14.2 11.8 8.75 0.45 4.85 2.22 3.49 0 4.97 3.75 7.98 8.63 9.64 10.7 10.8 4.07 7.05 5.87 2.88 1.14 8.39 11.5 2.92 5.43 0.79 9.97 4.85 3.4 8.74 3.34 2.99 2.62 1.88 6.6 8.19 8.78 5.52 4.75 5.16 8.05 2.78 1.07 1.68 7.86 6.23 8.74 10.8 0 8.65 7.58 3.06 8.85 8.76 9.26 7.3 10.4 9.35 8.82 9.27 7.42 7.45 1.83 0.45 3.12 8.07 0.79 5.18 8.22 6.1 3.29 0 6.85 7.06 2.78 3.63 4.72 3.71 6.3 9.09 6.85 0 9.32 9.28 0.45 6.01 11.7 8.83 5.51 3.4 3.12 2.53 10.8 5.15 4 5.39 0.79 9.71 9.38 8.98 0 0.79 3.9 6.13 1.83 8.18 0.79 0.79 6.34 4.24 11.2 3.29 9.91 8.07 4.35 1.08 3.97 7.05 6.16 7.89 4.19 7.03 7.73 7.01 5.12 5.76 5.49 8.54 1.07 6.83 10.8 2.85 2.11 1.83 8.45 2.62 10.2 12.3 10.3 10.5 2.7 10.3 0 3.18 5.1 9.06 12.3 3.49 7.78 10.7 0.79 8.58 0.79 10.1 5.78 11 10.4 2.1 9.73 5.58 5.93 4.35 0.79 6.8 1.07 4.3 1.07 9.99 0 4.33 8.54 1.3 9.94 11.6 5.19 5.82 2.22 1.07 3.75 2.85 10.2 6.74 7.03 5.45 3.44 5.82 9.97 8.01 0 7.07 2.1 4.43 1.83 2.78 1.83 11.5 6.19 8.97 3.83 4.24 9.5 9.36 3.83 1.5 9.99 1.97 11 3.93 5.29 0.45 11 4.61 4.32 0 6.02 5.16 0.79 6.67 1.83 7.22 0 1.07 5.62 9.38 1.07 11.9 0.45 3.36 10.6 8.5 5.71 2.1 6.86 1.07 10.3 5.91 8.18 5.89 13.2 11 7.16 8.12 5.86 4.22 8.28 12.2 8.15 11.2 9.24 0.45 10.3 2.1 6.5 2.85 9.59 17.1 0.45 7.57 14.8 0.45 7.22 16.9 6.9 0.45 9.9 6.06 0.45 7.77 14.1 4.59 13.1 5.65 4.48 1.07 8.01 0.45 8.44 6.54 10.4 8.19 14.9 10.5 9.73 4.16 6.97 7.67 11.1 8.04 3.28 8.38 0.92 11.5 8.61 8.86 1.07 2.92 5.97 7.72 3.76 6.6 6.16 0 6.05 9.22 11.8 9.07 0.45 5.97 10.4 7.03 4.69 3.67 5.22 8.9 9.09 8.27 10.3 0 7.03 7.58 8.03 9.86 6.3 5.74 6.26 1.07 2.53 15.9 5.81 1.3 4.03 9.52 10.3 1.3 7.36 2.22 2.53 6.31 5.01 12.1 2.72 9.62 11.7 9.77 11.5 7.61 8.46 7.67 6.25 1.3 8.29 4.43 8.67 9.69 10.8 12.3 5.91 11.4 8.94 12.1 9.17 10.8 7.53 11.2 8.4 7.97 5.47 5.49 9.13 1.5 8.64 9.14 1.97 8.73 8.75 8.34 9.5 10.8 9.47 7.39 2.22 13.1 0.45 12.5 6.84 9.43 11.1 11.7 6.94 10 10.4 4.59 9.89 9.95 5.19 8.44 3.24 8.07 7.58 8.56 7.1 4.38 11.2 8.75 5.86 12.1 8.67 11.7 8.39 8.94 6.51 6.88 7.16 9.01 8.07 12.3 8.95 13.2 10.7 10.6 8.07 7.68 11 11.5 4.89 9.35 13 0.45 0.45 3.34 12.9 4.57 6.5 11.8 8.81 11.1 0.79 9.75 9.01 8.71 11.4 10.9 9.73 11.8 8.43 8.28 11.8 8.43 13.2 13.5 12.1 12 9.07 6.45 11.8 7.38 11.9 0.79 4.1 6.97 5.56 5.55 2.7 0 10.6 6.32 9.13 7.51 5.27 9.97 6.71 1.07 6.39 0 2.7 6.83 0 6.98 5.62 6.74 7.32 8.91 8.71 0 2.33 6.31 7.98 9 3.06 7.18 0 4.3 11.5 6.74 4 7.12 6.98 4.54 7.37 1.3 7.78 1.07 4.75 8.64 13.2 5.15 8.01 5.99 10.4 2.22 6.46 8.23 3.63 6.75 3.54 7.26 8.48 8.94 7.61 2.22 6.06 1.5 0.45 6.6 7.17 7.61 4.59 8.76 7.69 1.68 5.85 0.45 3.06 1.07 4.99 5.33 1.97 7.93 3.06 1.68 1.68 10.1 6.15 8.57 4.19 7.05 12.7 3.14 8 9.26 6.29 7.84 7.49 1.3 10.4 0.79 4.5 4.57 6.28 7.09 5.04 8.66 13 6.16 3.71 8.88 12.8 7.84 7.43 11.2 0.79 6.62 11.4 6.22 2.62 4.77 4.3 8.22 0 3.83 0 8.19 7.29 3.49 6.25 13.5 7.08 8.23 3.44 11.3 1.3 11.6 7.35 7.38 0 11.3 12.8 4.45 10.3 3.49 3.12 0 11.5 4.54 2.78 6.83 0 6.2 11.9 5.64 3.49 1.74 3.61 5.92 0 9.66 6.82 5.66 9.46 10.7 12.1 8.68 9.31 12.1 10.3 3.67 10.9 11.8 9.51 1.3 1.68 14.1 8.85 0.79 8.6 6.03 6.39 12.8 7.28 4.92 10.9 0.45 3.97 4.85 3.63 4.9 3.04 8.85 1.07 0.79 4.79 8.66 5.62 7.39 14 5.15 8.99 4.65 3.86 4.54 3.75 3.97 9 8.23 0 10.6 3.24 6.21 1.83 9.65 0 5.85 4.77 5.7 3.79 10.5 4.93 4.48 8.52 2.29 1.68 9.59 7.12 1.3 14.9 6.77 6.36 4.3 5.01 7.93 4.75 1.5 7.11 4 7.18 7.02 5.13 4.83 6.78 9.08 4.74 7.02 8.92 11.2 7.52 1.3 12.7 2.33 6.84 8.68 8.16 8.53 8.3 5.85 7.11 3.06 0.79 7.58 7.28 4.67 0.46 7.59 3.67 7.56 1.07 6.74 7.3 3.71 3.24 5.33 7.8 9.8 0.45 7.58 0 4.61 10.5 2.62 9.41 7.98 6.45 2.85 9.66 12.1 8.7 3.29 7.07 0 6.31 5.07 5.43 5.39 9.25 2.33 5.9 6.67 7.25 5.84 11.1 8.42 6.76 2.39 11.6 7.04 5.88 10.2 1.83 1.68 4.07 5.56 8.53 2.33 2.22 8.53 2.53 10.6 0 4.59 0 2.68 8.35 2.78 9.37 6.37 6.51 8.9 7.27 5.37 0.45 2.53 8.83 1.5 4.13 2.22 4.43 0 3.75 8.78 9.14 6.94 8.54 10.2 11.2 6.46 11.4 0.45 12.6 0.79 12.4 5.54 7.92 5.72 12.2 12.5 5.1 1.68 11.1 12.8 12.6 0.45 2.53 3.34 10.6 5.7 12.9 1.83 1.07 9.06 9.67 7.48 7.55 4.65 11.1 9.02 1.3 15.9 11.1 12.9 7.13 8.94 0.45 8.04 9.35 6.7 11.9 11 13.9 13.2 12.9 3.93 9.16 10 12.1 0.79 9.43 12.2 9.51 0 8.93 8.14 12.3 9.5 8.87 8.06 12.1 6.36 7.18 5.33 9.71 9.21 0.79 8.14 7.98 6.04 9.34 8.39 8.72 8.28 5.35 3.72 10.3 3.44 5.98 6.08 7.5 12.4 1.5 7.8 3.24 9.68 0 7.91 4.57 10.5 11.8 11.8 8.45 6.98 6.99 8.02 0.45 0 7.3 8.86 6.98 7.98 9.73 8.08 2.78 7.7 8.91 4.57 8.26 6.24 7.32 7.3 3.18 2.22 5.88 8.16 7.39 1.83 5.74 4.75 6.23 3.79 10.9 7.37 0.45 3.93 11.2 5.35 6.24 0 7.42 8.92 7.05 0.79 3.67 1.3 6.3 3.9 3.75 2.1 2.1 4.85 12.2 1.3 7.55 5.19 7.13 3.63 5.83 1.3 5.16 6.49 1.77 9.21 5.18 6.94 8.05 2.43 10.5 0.79 5.38 7.61 5.98 8.85 7.45 4.22 7.6 8.03 9.63 5.32 0.45 9.9 0.45 0 3.03 0.45 6.36 6.33 3.75 4.65 10 7.99 0.45 4.61 6.61 9.41 8.02 2.33 7.38 1.68 9.99 0 1.3 7.94 2.43 4.59 9.13 7.72 7.98 0 8.1 8.94 11.6 13.2 11.4 7.63 9.1 4.54 8.54 10.7 7.22 4.85 3.71 4.07 11.6 0.45 5.1 9.55 8.55 8.35 9.46 10.2 11.3 3.63 9.88 7.31 1.5 10.2 8.75 11.5 11 4.9 11.2 1.97 0.79 12.3 6.99 4.1 14 5.61 6.7 8.86 6.53 9.25 5.82 11.7 7.05 12 10.3 11.4 12 12.2 1.3 5.97 4.24 8.04 8.2 11.4 11.2 9.71 6.87 9 10.7 11.3 10.8 9.92 10.7 8.03 9.28 6.7 11.5 9.57 0 5.68 10.3 10.7 8.37 2.22 4.75 9.16 9.31 10.2 10.5 8.77 10.7 10.1 12 11.5 7.44 10 8.64 12 5.71 12.2 7.07 12.1 9.8 7.34 5.71 10 2.99 3.49 6.72 6.19 1.68 8.39 7 0 11.6 5.95 1.9 8.44 8.89 2.99 10.4 7.84 8.76 11.4 11.9 10.6 1.83 10.1 11.7 9.78 7.61 13.4 9.02 1.5 1.07 12.6 9.16 10.2 8.69 10.5 9.34 10.6 11.9 4.92 4.1 11.9 0 11.9 12 9.82 11 8.97 8.13 9.32 10.4 10.9 11 6.66 9.87 10.2 8.52 3.4 8.43 7.51 9.31 9.66 9.93 8.22 7.82 11 9.6 3.79 0.45 9.92 13.9 7.71 9.6 2.7 10.5 2.99 10.2 4.27 8.64 12.3 9.93 7 6.48 11.3 8.39 9.04 11.6 10.1 9.88 10.9 8.1 10.8 11.5 6.32 10.9 13.7 10.2 0.45 9.45 10.1 8.21 6.67 10.7 8.08 8.96 4.24 8.26 10.9 10.5 10.6 11.8 3.97 4.32 8.78 9.19 11.9 8.61 8.24 11.1 8.63 6.79 0 0 6.97 3.75 8.8 11.6 4.27 8.21 4.92 1.68 7.67 8.36 3.06 9.54 7.87 7.79 9.38 0.45 9.18 10.3 2.1 8.98 11 9.22 10.1 10.9 4.32 1.83 10.6 5.13 4.32 10.6 10 5.76 7.39 7.93 9.12 1.07 1.3 10.9 12.6 0 7.47 6.63 9.88 9.53 1.83 0.45 9.86 5.77 5.04 2.43 8.14 0 2.53 4.27 9.31 8.38 6.6 9.65 9.94 4.46 5.84 3.48 5.46 6.42 6.19 11.9 7.39 3.29 7 2.22 10.5 7.29 4.5 8.95 0.45 0.45 9.18 10 2.7 2.43 6.31 0.45 5.7 1.07 6.77 8.13 3.75 0.45 7.52 7.26 7.52 8.45 13.6 5.78 6.36 7.17 6.99 6.61 3.93 8.01 8.41 5.69 7.04 6.3 7.57 7.37 2.92 4.08 6.42 0.79 6.45 9.05 3.98 2.53 3.75 0 1.3 2.85 0.79 3.75 8.82 0 8.84 7 5.77 5.61 5.22 3.4 6.43 10.8 0 0.79 1.07 0.45 1.3 4.1 8.49 0 5.27 7.95 6.12 3.18 9 10.8 1.83 8.52 8.84 2.7 7.8 11.8 11.3 9.73 4.61 8.19 6.58 0.79 10.4 14.2 9.61 8.5 8.08 2.22 5.83 7.12 8.66 6.99 4.52 9.96 11 8.91 6.41 8.33 7.43 11.1 9.23 9.29 8.99 8.54 1.97 10.1 9.76 9.33 10.6 4.3 3.9 8.73 10.3 6.98 8.71 9.52 10.5 7.4 11.3 1.07 6.37 5.21 1.07 0.45 0 10.4 5.35 3.4 10.6 11.2 0.79 6.19 14.2 10.7 10.1 8.95 3.75 8.16 13.6 10.8 2.62 12.7 10.6 10.2 9.18 10.2 10.7 6.36 8.45 9.69 10.6 9.82 9.86 8.47 9.19 1.68 10.8 9.17 14.1 10.7 10.4 10.6 11.7 6.02 12.8 6.9 5.32 10.9 11.6 10.3 12.1 0 10.9 9.23 10 9.87 0 9.22 7.84 7.29 9.41 13.2 9.58 11.5 11.3 10 11.1 11.6 14 11.1 9.82 10.3 3.06 10.8 11.3 10.6 9.91 10.9 9.64 9.46 11.9 11.4 10.1 10.9 11.1 11.3 11.3 11.3 10.5 10 10.7 10.7 10.5 11.7 10.5 11.3 10.2 10.3 11.1 11 9.82 10.7 8.9 12.8 13.2 10.9 10.6 1.14 6.44 7.68 7.09 9.36 0 1.3 2.78 6.59 10.1 8.25 3.18 8.16 5.7 11.2 11.3 13.2 10.9 4.61 10.1 9.16 4.3 11.1 9.7 7.68 2.7 13.2 2.78 11.3 11.2 10 9.64 12.2 10.2 9.92 11.2 9.01 9.84 9.18 6.05 8.96 10 10.3 0 9.04 9.16 9.63 8.65 1.3 11.4 14.5 9.9 11.6 10.4 4.67 9.29 8.63 7.03 10.4 4.77 2.62 12.6 11.4 10.3 13.2 9.6 10.4 10.4 11.4 14.4 1.83 8.73 12.7 4.13 8.77 10.4 9.87 9.34 10.1 10.7 11.7 10.7 7.97 14.1 10.6 4.65 9.28 8.49 11 7.46 14.6 4.77 1.07 12.1 9.28 9.05 9.33 2.33 7.52 8.38 9.66 10.2 10.1 11.2 8.68 2.53 9.3 7.52 5.51 6.59 12.5 10.2 10.6 9.57 7.49 1.68 7.42 2.43 0.45 5.18 0 1.97 5.74 1.5 3.34 10.8 13.5 10.7 12.5 8.87 10.4 7.58 10.9 8.13 6.56 9.68 9.03 9.8 8.39 0 10.4 5.76 4.81 10.7 9.55 5.57 10.1 8.51 0 3.34 10.4 9.12 5.73 5.5 7.54 0.8 12.4 11 9.94 11.7 8.98 0 12.3 8.36 0.79 2.22 12.2 5.8 7.95 2.92 2.1 10.8 10.7 13.6 10 7.44 8.45 8.32 7.83 1.3 5.95 2.85 8.42 13.1 10 8.13 10 4.65 0 11.2 6.53 10.4 5.01 1.5 5.51 3.06 11.8 8.5 3.79 3.58 9.25 5.4 6.83 5.77 5.19 9.07 7.05 11.8 14.9 5.27 6.66 11.6 0.79 2.85 5.55 13 7.1 11.2 12.8 12.1 10.5 9.39 7.22 10.7 8.58 8.18 0.79 8.65 8.66 7.52 6.63 12.4 11.5 0 10.3 13.9 8.29 5.95 10 7.5 11.4 2.92 9.68 9.15 6.02 8.22 9.65 7.54 9.4 4.97 12.9 5.45 6.16 11 10.2 7.71 1.5 5.83 1.59 9.68 9.39 10.8 11.3 8.37 10.9 9.39 8.75 3.54 3.22 2.1 11.2 5.42 8.01 10.9 7.17 5.78 0 11.6 10.3 10.4 8.75 10.4 12 8.22 7.72 10.8 13.3 10.3 2.43 13.7 6.72 3.3 2.43 9.28 10.2 8.82 13.2 11.2 10.7 8.87 8 9.09 7.12 8.83 8.7 9.82 9.4 9.9 0.45 8.09 9.04 9.81 8.27 12.4 8.97 7.67 8.32 9.12 8.85 10.7 6.25 8.44 10.6 7.37 9.32 8.06 10.3 9.26 9.36 11.2 10.9 7.5 9.24 0.79 7.64 5.04 11.1 6.59 7.77 10.5 10.7 11 8.77 8 10.9 0.45 8.49 10.1 9.54 9.85 9.5 7.37 10.1 8.86 11 8.39 9.09 10.2 12 10.1 10.5 10.6 0 11.4 7.56 2.67 6.87 9.16 9.29 9.42 9.96 8.69 11.1 7.83 9.4 10.3 9.08 8.7 9 11.4 8.42 8.74 8.54 8.45 9.06 6.14 11.6 13 11.7 10 9.44 9.43 9.8 11 9.56 10.1 9.99 8.36 11.4 8.59 10 10.1 10.5 10.6 10.3 4.79 9.28 14.7 7.7 8.93 10.7 10.6 7.06 8.53 7.72 9.61 10.5 12.2 9.06 10.8 9.61 9.12 9.74 11.7 3.93 8.93 9.55 9.27 9.11 10.7 7.55 9.28 8.75 11.4 7.47 8.32 5.85 10.1 9.14 8.41 8.04 6.55 6.17 9.44 8.15 8.87 8.25 8.44 9.36 11 11.3 7.68 11.6 8.18 8.08 9.44 9.14 6.66 7.06 9.42 8.64 9.7 7.59 9.7 8.29 5.19 3.49 3.06 9.92 2.62 10 8.54 8.51 9.29 10.2 9.38 9.66 13 1.07 10.8 8.43 5.73 7.04 9.94 8.25 11.7 11.2 10.2 8.41 5.76 9.2 9.78 1.07 10.3 10.4 7.92 9.47 10.8 7.95 8.33 9.83 10.4 5.82 7.53 4.38 11 10.3 11.8 10.5 7.99 7 7.87 8.73 9.39 9.23 11.5 8.14 9.97 11.1 7.28 1.3 9.98 11.3 9.35 8.44 10.9 9.87 9.44 11 9.94 7.34 11.1 8.69 10.2 6 9.56 9.56 7.57 9.27 9.69 5.45 9.13 9.62 6.1 8.28 9.65 2.22 9.71 5.12 9.82 9.81 7.76 9.07 11.4 11.6 10.8 6.88 11.5 4.75 10.3 4.76 6.51 5.76 11.9 9.95 8.46 6.89 8.19 9.05 9.71 9.97 9.65 4.43 8.58 4.96 5.65 9.35 10 7.93 8.67 4.35 10.3 10.2 8.13 10.5 4.35 10.7 9.66 7.64 11.1 9.84 7.85 8.42 7.63 7.97 10.7 1.3 7.43 13.3 8.86 8.78 6.36 9.07 8.41 9.64 10.8 10.5 11.4 5.97 10 9.83 9.13 9.8 8.04 8.59 11.8 9.25 9.41 7.44 11.3 9.76 4.24 9.06 10.6 9.37 9 10.7 10.7 1.5 10.3 8.77 9.52 11.5 1.07 9.66 8.14 8.95 7.02 4.52 11.3 10.3 8.55 8.74 10.6 8.94 8.97 10.5 4.97 8.33 8.18 10.8 11 9.42 10.4 8.79 11.4 9.19 7.83 10.1 11.5 10.5 11.2 10.9 11 4.61 7.3 5.65 9.64 10.7 11.8 11.3 10.6 8.43 9.75 8.69 9.91 9.96 8.17 10.1 7.61 6.42 8.73 9.59 10.9 8.83 9.54 8.05 9.43 9.31 8.22 8.19 9.83 8.87 11.2 7.47 1.5 10.9 5.22 10.3 2.43 8.73 10.8 10.7 10.2 11 6.59 9.33 10.2 9.51 7.93 8.44 11.1 10.3 10.9 8.3 11.2 9.45 10.3 10.3 11.6 10.7 10.2 11.3 7.15 9.4 8.79 11.3 7.95 10.2 9.66 8.6 11.9 10.4 0.45 8.54 9.95 10.6 9.52 9.8 11.4 9.98 10.9 7.64 8.56 11.2 10.8 10.1 11.6 8.76 11.1 8.88 11.4 10.2 9.61 7.35 10.3 8.98 11.2 8.48 8.63 9.59 7.02 11.9 8.46 7.75 11.2 8.44 11.1 8.15 13 4.74 8.58 4.81 8.07 13.8 9.69 4.3 10.2 8.67 8.02 9.46 10.2 9.13 10.4 12.7 10.7 6.18 9.85 0 8.35 9.73 8.41 9.79 8.34 11.3 8.34 1.5 10.7 4.1 9.72 10.6 11 7.62 10.7 8.97 9.58 7.59 1.3 12.1 8.07 9.17 5.5 11.3 12.6 8.56 4.46 11.3 8.89 9.96 10.5 7.61 4.32 1.83 9.38 10.4 0 7.38 10.6 8.7 9.79 8.38 11.4 11.8 3.4 7.52 8.99 8.91 8.07 11.8 10.7 10.8 9.71 8.72 9.12 6.54 9.37 8.84 8.79 8.25 0.45 0.45 9.36 6.64 10.6 11.2 8.77 7.68 12.8 8.47 1.97 7.39 13.3 11 9.46 13 0.79 10.2 13.4 13.7 11.8 8.98 11.2 13.4 4.22 0 10.1 9.74 8.86 12.1 14.1 10.5 8.31 7.35 6.09 9.29 7.72 11.8 5.41 12.9 1.68 10.8 9.98 8.95 12.1 10.6 11 0.79 8.91 10.9 16.2 0 11.9 12.7 13.6 6.96 9.05 9.58 8.14 9.2 11.3 8.23 9.1 13.8 10.5 9.12 8.86 11.9 8.27 11.3 9.38 8.88 6.41 10.7 10.1 10.7 9.94 9.83 10 1.07 8.93 9.76 11.1 1.97 10.6 11.4 9.84 15.6 8.72 8.08 1.3 5.29 4.19 6.07 8.02 7.41 8.85 8.47 10.4 7.92 8.49 9.43 8.34 2.85 10.1 7.05 7.1 1.77 9.54 9.18 6.88 5.27 9.55 10.5 1.83 8.33 8.71 10.4 9.01 9.35 8.96 12.2 3.18 5.65 8.69 9.14 4.27 7.7 5.25 5.22 2.1 11.3 7.99 12.3 13 0 9.59 9.45 9.72 10.8 10.7 10.3 10.2 11.4 6.84 9.85 10.3 11.2 6.26 10.1 3.41 4.45 4.01 4.16 12.4 11 10.3 9.28 10.8 7.62 7.82 8.99 5.43 6.09 3.12 0.45 10.4 10.1 7.22 4.85 3.86 4.16 9.42 0.45 9.16 7.81 10.2 5.81 12.3 5.22 8.68 10.1 9.87 8.52 8.88 9.66 8.79 10.8 10.1 6.63 9.47 9.8 8.86 10.5 7.53 1.3 0.79 5.51 8.28 8.59 4.27 7.63 0.45 0.45 8.51 0 5.3 9.86 2.7 10.4 9.51 10.7 2.33 10.6 9.32 9.1 6.36 7.88 2.1 9.47 8.4 7.19 8.94 8.68 9.78 11.3 11.5 11.5 3.29 8.04 3.18 8.16 7.32 8.51 11 8.3 3.86 4.02 10 10.1 11.9 10.4 11.5 2.62 7.18 8.36 8.4 7.66 11.8 7.93 9.03 9.58 9.79 4.43 1.83 9.91 9.61 10.7 10.1 9.54 12.2 10.3 3.75 11.1 10.2 4.32 4.52 10.9 9.26 8.49 9.49 7.96 10.4 12.9 5.12 10.2 8.3 7.05 8.96 6.11 10.2 9.6 7.42 8.63 1.07 2.53 11.1 9.57 10.8 10.2 11.5 9.86 8.93 1.07 11 8.9 10.1 10.8 8 10.7 11.4 8.66 10.5 9.69 3.06 9.75 7.38 9.33 7.63 11.1 9.31 10.1 8.9 9.17 9.56 10.7 9.14 5.35 11.4 8.39 10.8 9.9 7.6 6.58 6.72 6.83 7.25 8.42 7.17 8.38 7.86 6.52 9.7 8.11 7.55 9.59 2.85 8.67 9.64 8.52 10.7 8.72 10.2 10.6 11 10.1 11.9 7.75 12 10 3.18 8.6 8.82 10.2 8.14 7.95 6.19 4.99 10.7 0 8.86 11.2 5.71 8.98 8.56 3.12 10.8 7.89 10.6 10.7 9.33 7.12 6.47 8.51 8.75 8.3 10.8 11.2 3.34 4.9 6.98 8.32 10.5 9.7 4.61 10.4 9.18 10.8 8.75 9.14 2.62 9.84 9.9 8.33 9.41 7.91 9.82 9.22 10.1 0.79 10.5 8.48 7.45 9.46 8.29 6.44 4.4 10.1 0.79 12.9 9.42 2.1 9.62 9.79 9.26 4.32 10.2 4.16 9.67 3.67 9.21 3.24 8.81 7.92 9.47 11.7 7.05 8.78 9.67 10.3 8.01 10.7 9.26 12.5 8.11 8.82 8.66 10.4 13.2 9.35 8.85 9.47 8.97 7.74 2.99 8.96 9.82 11.3 8.81 7.91 8.74 6.7 7.63 9.55 8.46 9.18 9.02 8.47 10.4 8.31 7.71 10.6 9.53 8.08 8.49 3.44 9.52 7.57 10.4 7.46 5.37 9.77 5.13 6.08 0.45 10.6 7.81 4.3 10.9 7.39 9.08 10.3 9.35 11.7 0 5.1 10.2 8.49 8.02 8.22 10 0.45 7.83 9.38 1.3 12.1 8.48 10.8 9.79 9.45 9.85 8.09 7.38 1.3 11.6 8.55 8.36 9.72 9.23 8.73 10.8 8 9.41 8.46 8.15 7.62 9.65 8.95 11.8 9.59 11.1 8.3 9.29 10.2 12.4 9.18 8.01 10.3 6.36 7.61 6.63 2.62 7.18 9.05 4.22 8.41 10.7 8.6 9.59 0.79 10 7.88 9.35 7.65 10.1 10.1 8.71 10.6 9.59 7.78 11.1 8.88 7.75 8.41 11.2 10.2 11.3 9.68 8.7 10.2 9.1 7.37 3.86 8.69 9.77 9.5 1.07 8.67 9.8 10.9 11.6 6.87 8.54 5.29 9.99 7.77 9.68 9.11 10 8.38 7.64 8.88 8.38 7.59 8.47 8 6.42 11.2 9.81 9.48 5.64 8.53 7.47 9.61 0 8.83 8.88 7.11 7.57 7.64 10 8.68 8.62 9.35 10.9 2.85 7.75 7.47 9.87 10.1 6.06 11.6 6.8 9.75 10.1 10.2 11.6 6.47 9.46 11.1 8.07 8.88 10.7 10.3 2.33 10.8 12.3 12.6 6.32 10.3 7.62 11.2 7.86 7.79 7.77 8.42 9.92 11.7 4.18 10.2 8.86 7.97 8.24 10.1 8.85 5.8 9.68 0.79 6.74 10.8 4.3 9.91 8.04 6.57 7.41 9.38 9.42 10.2 10.4 6.77 2.99 9.08 7.73 9.52 7 7.84 10.4 1.3 11.1 9.38 9 7.89 10.1 9.21 6.27 8.57 1.5 2.1 9.43 7.44 5.34 7.31 9.12 6.71 10.3 3.75 12.2 10.9 7.46 7.43 9.53 8.83 9.68 11.3 9.28 9.07 10.3 10.5 4.32 7.49 6.76 7.94 7.55 7.72 9.65 9.77 7.72 8.56 10.6 3.79 10.5 8.92 10.3 9.81 7.73 7.19 5.88 10.6 9.71 9.28 7.48 9.97 9.94 7.57 10 7.66 8.95 7.69 8.88 1.83 8.24 8.75 8.46 9.67 2.1 8.03 8.44 8.92 7.93 5.81 3.49 9.25 10.7 8.58 8.43 4.48 9.72 7.54 10.8 9.78 10.8 8.79 11.6 2.62 10.8 9.43 9.29 8.53 8.98 8.33 9.19 10.1 9.8 10.5 10.5 8.11 4.57 5.7 9.79 9.78 8.2 8.42 7.84 9.57 8.32 4.48 6.35 9.85 9.03 7.7 12.6 7.95 9.21 9.74 8.85 7.8 11.2 9.78 8.83 9.05 2.43 10.4 7.62 8.81 7.85 10.7 9.49 9.85 9.12 6.94 3.67 8.4 3.12 9.75 5.54 9.88 10.5 7.97 10.7 7.37 9.96 4.5 8.08 8.02 8.97 11.8 8.43 10 8.44 9.48 9.68 1.5 4.4 8.7 7.22 7.23 9.14 10.1 8.77 9.6 8.16 12.1 10.4 4.07 9.16 10.6 9.54 8.14 9.43 11.9 6.69 7.81 12.9 9.75 8.94 3.63 6.45 10 9.53 10.4 10.5 8.45 9.45 9.02 9.91 10.8 8.55 10.9 5.9 8.73 8.37 7.6 10.3 4.35 10.1 8.85 10.8 9.17 10.7 3.24 9.2 10.1 8.31 7.38 9.23 9.24 10.3 8.61 11.7 7.35 8.5 9.62 7.32 7.54 0 9.85 11.6 0 9.16 8.39 9.5 10.6 7.37 8.35 8.28 7.32 9.37 9.65 8.78 5.8 9.85 8.11 1.5 10.2 10.8 9.75 10.6 9.29 10.4 10.1 9.76 8.23 7.66 4.6 9.81 7.74 8.09 9.54 7.2 7.08 8.59 9.28 10.2 10.2 8.59 9.92 8.48 7.18 7.82 8.19 9.39 11.5 10.2 11.1 6 7.99 9.63 10.4 10.5 9.56 9.85 8.9 8.64 7.16 4.59 7.9 10.7 10.1 0.45 10.8 10.2 10.9 4.5 5.26 7.4 3.4 10.2 9.05 9.76 9.68 13.3 10.9 7.85 10.9 5.91 8.16 11.6 12 3.93 3.71 2.1 8.15 9.22 9.28 5.51 1.3 5.87 7.9 4.54 7.35 9.5 9.61 0 9.75 11.7 8.99 9.67 8.43 12.2 8.15 3.34 10.6 6.58 9.27 9.96 8.93 4.97 1.5 10.5 10.1 9.14 1.97 7.8 4.57 8.19 1.68 5.78 0 10.9 7.09 4.87 10.3 10.1 8.37 3.67 0 8.17 7.31 5.35 10.8 6.92 0.79 2.53 7.64 8.5 10.3 9.54 8.98 5.62 8.2 1.3 9.68 6.04 10.4 8.72 11.4 2.33 10.2 9.35 6.68 6.11 10.5 11.8 7.92 9.91 7.97 10.8 9.19 8.03 1.68 9.6 9.01 8.81 8.86 9.48 9.33 10.4 6.64 8.82 10.8 6.93 3.44 8.91 8.47 8.26 7.05 8.57 10.7 9.64 9.3 9.37 10.8 10.5 10.9 9.55 10.2 7.89 10.7 10.1 7.71 7.99 7.99 9.04 8.19 3.18 8.36 2.78 11.2 8.1 11.3 8.73 7.44 9.05 8.25 9.4 11 9.87 9.4 11.2 1.5 8.77 7.71 9.4 7.61 11.2 10.3 9.89 10.1 8.24 8.3 10.4 10.9 10.5 7.05 8.99 10.5 9.54 10.5 8.92 7.75 9.56 9.19 8.31 9 10.2 10.8 6.27 8.24 10.4 4.5 10.8 9.25 9.52 5.43 8.99 10.8 10.7 3.34 10.8 6.13 10.1 9.77 9.06 7.18 9.1 10 6.16 10.3 8.54 10.5 6.32 8.01 6.23 10.7 8.41 10.1 9.24 9.83 10.3 6.19 5.48 6.51 9 10.5 6.33 9.58 12.8 9.95 5.56 8.2 8.12 10.6 11.8 10.3 9.97 9.54 9.68 10.8 8.26 9.63 9.48 9.07 15.4 9.48 8.74 9.34 9.08 11.2 11.3 12.3 9.65 7.4 9.13 9.58 7.68 7.23 9.85 10.5 7.05 9.87 10.8 8.64 11.3 8.77 11.1 8.49 9.49 2.92 9.6 8.59 9.13 8.18 8.45 7.58 9.72 7.38 9.08 9.17 8.55 8.45 7.83 7.32 10.9 3.83 7.28 8.4 7.87 8.21 8.12 9.02 5.62 7.81 5.62 9.94 8.74 5.9 8.57 8.81 7.04 1.68 0.79 7.72 9.31 9.42 1.68 8.51 9.54 9.3 5.83 10.8 11.6 0 11.1 10 9.86 10.2 9.95 9.16 9.87 9.8 10.7 9.55 6.68 9.88 6.96 9.48 4.96 10.7 6.84 9.29 11.2 8.94 9.82 8.6 12.2 9.52 9.96 12 2.87 9.99 6.78 10.1 8.13 10.1 8.16 9.9 9.96 9.99 9.13 9.61 10.9 8.51 9.22 9.8 9.5 3.4 6.44 8.21 10.7 0.45 6.38 1.68 12.9 12.2 8.67 12.2 5.5 10.7 8.42 10.2 6.88 10.3 10.6 10.8 8.04 9.38 7.38 10.7 7.54 11.8 9.56 8.5 9.24 5.12 10.9 8.92 5.54 9.35 1.3 7.66 7.84 12.5 11.1 8.49 7.16 9.9 11 6.35 3.4 10.1 11 10.1 9.57 11.2 7.56 7.17 10.2 8.9 9.81 8.83 8.06 1.3 8.03 0 11.2 9 10.8 7.49 8.73 9.66 10.4 11.1 9.12 10.1 10.7 3.54 7.39 8.32 5.33 9.52 5.35 4.77 11.7 7.79 6.12 7.83 3.93 7.23 5.93 5.01 9.53 4 7.64 5.55 11.3 7.38 6.43 3.86 6.81 6.53 9.69 3.9 9.39 9.42 6.86 6.62 6.91 8.65 8.44 7.37 7.87 9.28 7.16 6.76 6.79 6.63 2.22 2.1 8.81 2.1 0.45 0.45 6.16 11.2 8.12 8.05 10.5 2.33 8.82 11.4 1.68 6.9 8.52 8.13 11.4 8.69 12.2 10.2 5.18 10.3 9.55 6.21 10.9 9.99 5.54 9.52 10.5 2.99 8.83 11.6 11.3 11.5 10.1 2.62 0 10 8.79 9.93 8.41 9.48 9.46 8.78 3.34 12.1 6.86 0 1.3 8.95 7.26 9.76 2.85 6.32 8.77 6.51 14.1 7.05 0.45 14.8 7.69 8.68 9.24 10.1 3.79 8.19 10.9 8.18 9.88 8.44 1.3 10.5 7.97 11 9.03 9.38 3.75 0.79 2.92 3.58 8.32 0 10.3 4.4 11.1 10.1 16 5.09 0.45 10.6 9.56 10.8 10.2 11.3 8.71 8.89 10.2 8.22 10.7 10 10.8 6.32 6.79 9.89 10.9 11 9.96 10.7 10.1 12.1 10.7 7.73 10.3 9.5 11.5 7.93 9.98 10.6 6.63 10.3 10.1 15.1 8.56 9.96 9.19 7 11.3 11 11.5 8.48 9.6 9.32 9.15 9.35 5.78 7.94 11.6 6.32 9.11 6.21 8.96 10.9 11.1 10.2 11.4 10.9 8.63 9.55 9.53 4.35 11 9.84 9.72 8.96 9.14 8.74 9.34 8.31 10.4 9.1 10.3 11 10 11.7 5.19 7.35 11.1 8.53 11.8 0 2.99 4.3 9.45 3.97 10.3 5.61 11.1 6.6 4 10.5 7.28 4.1 8.92 10 7.32 8.72 11 10.9 12.3 2.92 11.1 9.77 8.29 9.55 9.88 8.57 9.97 1.07 9.45 8.26 8.06 11.7 11.6 10.7 2.43 11.5 10.2 10.1 11.3 10.8 8.93 2.43 8.01 9.34 9.14 10.9 10.3 9.58 11.7 9.56 1.97 10.3 7.48 0.79 11.7 10.4 11.7 2.78 9.2 9.25 7.81 11.5 4.45 11.8 2.43 9.24 2.1 7.85 7.45 10 10.5 4.69 8.26 7.85 10.3 4.13 8.41 7.82 9.23 9.65 1.07 1.07 8.67 5.55 8.57 6.83 9.31 10.2 9.23 0 8.11 9.25 10.3 10.3 10.9 6.23 11.1 8.67 11.7 11 12.5 6.9 10.2 7.12 10.3 9.87 9.87 7.31 12.1 9.51 2.99 9.17 1.07 10.5 8.89 9.58 3.83 1.68 6.57 10.6 10.2 7.89 10.5 9.66 10.5 12.7 9.79 7.54 9.55 9.02 10.6 9.48 7.19 9.79 6.13 10.7 10.9 10.7 5.74 9.4 8 9.2 10 12.1 9.72 9.04 11.4 9.39 9.37 9.29 8.71 2.33 9.7 8.3 10.3 6.21 13.2 10.9 8.03 9.88 8.38 8.67 10.1 7.09 6.32 12.3 8.29 11 0.79 3.93 8.57 10.6 5.1 3.29 9.61 9.43 10.8 4.88 6.44 8.3 8.43 7.64 8.96 1.07 7.19 8.83 2.7 5.38 9.74 9.42 8.27 6.13 13.2 10.3 5.48 2.92 5.04 9.59 8.78 0 2.7 9.61 9.86 9.18 10.9 9.23 10.9 7.31 9.85 2.53 7.33 5.58 13.4 9.78 10.6 10.4 7.36 8.58 2.62 4.19 7.39 9.53 9.14 9.69 9.05 6.95 7.88 8.88 7.74 6.94 5.75 9.4 9.59 1.07 5.16 11.3 9.89 2.85 9.83 9.19 8.1 8.93 6.46 9.58 8.54 9.81 8.06 3.29 5.09 8.23 12 7.54 7.37 9.3 10.7 9.74 0 9.87 0.79 10.7 1.83 1.83 4.16 9.46 8.95 11.2 7.79 8.52 9.62 9.87 8.8 9.73 9.8 11.7 7.96 9.8 8.62 7.46 5.97 2.78 9.25 0.79 3.67 7.38 7.97 11.2 10.8 10 5.12 6.75 2.62 12 8.93 9.31 1.07 8.6 9.79 8.43 9.61 5.93 7.25 0.45 7.29 11 11.8 5.16 9.78 11.5 6.73 8.44 10.6 9.27 13.8 7.78 9.43 3.12 8.58 8.87 4.03 13.8 8.78 4.27 10.4 8.6 3.49 5.77 8.62 5.91 9.07 9.75 0.79 8.74 10.2 9.54 9.87 8.97 10.6 10.1 9.39 8.15 8.65 5.3 1.5 6.52 9.13 2.78 9.31 10.3 5.52 8.08 10.1 9.49 10 9.39 8.43 8.82 3.12 6.41 9.89 7.4 8.58 7.75 6.22 9 0 11.7 8.59 3.97 10 9.11 6.9 8.15 4.57 9.64 8.73 8.68 9.59 9.99 7.08 6.42 7.91 10.4 7.78 10.8 11.9 9.61 8.61 10.8 9.06 8.08 8.89 9.1 6.39 12.5 8.36 7.94 9.16 11.1 10.1 7.3 6.66 8.5 4.59 8.32 6.3 8.32 7.2 7.95 9.72 8.9 8.5 6.32 10.1 5.47 1.68 10.2 9.12 8.75 9.02 10.7 7.19 9.68 8.77 9.61 8.64 6.8 8.86 5.84 6.38 8 9.63 2.22 7.77 11.4 8.29 5.39 9.36 9.64 8.65 3.79 4.61 8.1 10.1 10.3 6.75 3.83 11 8 9.87 6.92 9.01 10.2 9.26 10.5 8.96 8.47 10 5.75 10.3 9.54 10.8 9.31 11 9.41 1.83 0.45 8.37 9.41 9.68 6.02 9.08 0 8.25 6.55 6.96 10.9 10.3 10.2 2.78 10.6 9.79 9.97 7.91 9.45 11.4 9.56 2.33 11 9.52 10.6 2.22 9.46 0 5.13 7.71 4.87 10.3 8.06 3.34 9.91 9.16 9.43 10.8 8.03 9.91 7.94 5.07 11.4 12.5 10.5 10.1 6.78 8.84 10.3 10.1 9.54 7.77 9.63 11.1 10.5 9.97 6.47 10.6 8.2 11 10.5 4.92 10.8 8.35 9.74 11 10.6 9.93 8.35 6.06 10.7 9.68 10.5 9.08 7.5 9.18 7.44 6.49 7.47 6.08 5.87 8.77 9.05 8.85 8.02 8.23 11 10.9 10.3 8.91 3.24 10 8.85 9.91 10.3 10.2 10.2 8.25 11.5 4.32 10 1.5 1.07 11.3 8.41 10.3 11.9 9.94 9.68 7.14 0.79 9.11 8.83 9.96 12 9.56 11.6 7.41 10.7 8.49 1.3 8.83 10.2 7.76 11.3 12.8 8.93 4.67 7.65 9.44 11.3 11.9 11.4 4.32 7.83 6.21 7.6 7.47 7.37 10.4 6.01 10.1 9.93 11.3 12.4 9.9 11.3 9.69 10.8 10 10 11.1 9.81 7.17 9.43 10.4 10.2 1.68 11 7.49 8.51 10.6 6.34 11 11.4 9.42 6.29 2.92 8.35 10.8 8.85 6.49 9.72 8.63 11.8 9.08 10.7 11.3 11 8.16 11.3 9.79 7.87 11.1 9.96 5.99 2.22 11.8 11.4 10.6 0.45 7.82 9.92 9.36 0.79 8.87 8.12 9.35 12.2 4.75 3.79 10.8 10.2 10.8 8.56 6.52 0.45 0 0.45 15 9.42 5.41 1.97 11.9 9.89 0.79 10 11 3.24 11 9.09 3.29 6.03 11 9.1 8.83 11.4 10 7.09 2.43 12.3 7.77 10.4 9.55 6.7 8.21 7.82 9.86 10.3 0 8.56 10.2 8.52 5.02 0.45 8.97 6.88 10.2 8.6 9.73 16.4 8.13 10.4 1.3 7.28 0.79 2.78 10.3 1.68 9.73 10.2 9.06 4.59 9.34 5.42 9.47 10.8 10.2 10.3 11 3.24 0.45 7.69 11.4 0 7.71 7.4 10.7 9 8.59 11.4 0 8.48 3.4 0 9.01 11.9 5.73 10.4 11.1 10.4 1.68 9.47 6.86 10.6 9.52 9.24 7.37 8.79 9.58 8.31 2.7 9.9 8.73 11.5 9.69 10.4 8.13 10.5 8.98 11.6 8.08 8.87 10.1 10.6 0.79 7.68 11.2 5.43 7.03 7 4.52 9.41 9.6 1.07 1.07 7.13 9.94 5.82 12.3 9.59 9.53 11.3 7.87 8.13 3.4 7.34 9.82 6.12 10.3 0 9.44 1.3 7.51 9 6.77 1.5 11.1 9.97 9.49 9.69 15.8 15 14.2 13.5 10.8 10.2 14.1 6.07 15.1 11.2 14.7 13.7 13.3 15.1 14.2 13.1 14.1 11.3 14.8 1.07 12.9 12.9 9.54 14.1 14.2 13.5 13.9 13.9 14.1 12.9 13.9 13.6 13.7 13.7 12.7 14 13.7 13.4 8.5 9.01 14.5 5.51 14.5 14.6 13.2 10.3 9.45 13.3 12.5 13.7 14.3 12.9 15.8 3.2 1.5 3.58 6.75 8.01 13.8 2.78 5.57 15.2 9.42 10.1 10.5 9.8 8.99 12.9 14.1 13.7 12.7 15.1 12.6 13.5 15 12.7 13.7 14.2 14.1 6.71 14.9 14.1 14.2 12.8 14.7 14.5 13.7 9.5 9.08 13.7 9.62 12.6 9.31 9.41 12.4 9.99 9.72 6.54 10.4 2.33 5.91 10.3 10.6 6.76 6.94 11.5 9.91 9.84 4.97 4.27 7.56 5.78 10.2 10.8 4.52 5.29 10.4 0 12.2 4.96 6.71 12.9 12 0 10 3.12 0.45 12.7 10.2 10.6 10.1 8.65 8.19 11.6 11.1 8.25 12.4 9.12 8.92 10.7 9.95 9.81 5.27 9.91 9.58 9.12 13.2 4.51 7.47 7.38 9.52 1.07 3.79 1.3 4.45 13.6 8.66 2.33 5.44 5.41 7.81 1.68 6.03 7.86 8.88 11.6 0.45 4.83 9.81 7.92 6.07 13.7 7.94 9.83 4.45 6.81 7.45 8.49 3.79 1.5 0 8.7 1.07 0.79 6.83 2.85 4.22 12.9 1.3 11.5 7.5 3.79 12.5 12.3 11.9 13.7 9.47 10.6 3.06 9.41 9.83 14.4 8.89 10.1 9.33 8.91 7 8.71 7.01 6.68 8.81 10.3 10.1 9.86 7.79 7.71 10.7 5.98 4.89 10.1 9.49 13.5 11.3 9.02 6.54 3.54 1.5 8.13 7.39 8.01 7.71 7.51 8.28 7.73 9.73 6.74 8.8 8.3 7.34 10.3 3.44 11.7 1.3 9.28 4.48 7.01 7.4 8.79 9.02 1.07 11.7 7.16 4.65 7.88 7.72 9.08 11.2 9.55 9.26 2.99 10.2 7.9 5.04 9.46 7.02 0 8.67 9.9 11.2 2.62 10.7 7.62 0 7.72 6.66 1.5 7.81 11.1 7.95 4.03 4.61 4.72 9.18 10.4 10.7 12.2 10.2 10.1 10.3 7.91 10.5 10.5 5.61 10.3 5.64 5.54 5.96 1.83 10.7 5.79 9.48 1.68 9.6 3.67 12.9 9.05 3.54 8.21 6.78 8 11.2 4.76 9.82 10.1 8.78 11.1 7.1 5.26 7.84 8.02 6.17 9.66 12.6 3.71 7.26 6.87 10.3 9.22 11.1 9.85 12 7.42 7.72 9.56 4.24 4.27 9.25 9.96 9.53 9.42 3.9 3.83 10.1 8.19 6.2 2.99 3.44 5.57 0 11.6 1.07 11.3 11.9 5.07 8.19 6.65 11 10.4 5.45 8.78 8.71 7.55 10.7 5.02 3.29 5.32 3.4 12 5.86 2.22 10.9 10.8 8.57 10.8 10.3 8.87 0 11.3 8.17 6.02 8.74 9.76 8.97 9.56 6.19 10.1 7.5 4.65 2.33 5.52 5.33 10.8 11.5 9.33 6.06 6.29 9.78 2.62 2.99 10.7 7.79 8.81 7.63 2.1 9.69 6.41 4.3 8.09 5.21 7.07 5.44 1.3 0.45 7.4 8.31 1.5 10.5 9.66 4.74 10.8 10.3 5.54 6.34 5.86 1.3 8.51 5.01 6.45 9 8.47 6.59 1.07 5.56 3.58 8.4 4 9.4 9.52 6.29 8.34 7.8 9.93 11.7 8.48 9.95 9.39 9.53 9.79 11.5 9.32 8.4 9.67 8.71 3.18 6.64 0 2.53 2.85 8.44 5.05 6.5 11.3 2.92 9.04 4.43 9.76 4.96 5.02 8.6 0.79 11.4 0.79 5.13 0 5.51 10.7 5.98 0.79 11.6 2.37 1.83 6.12 2.62 11.9 9.45 6.9 8.86 4.21 2.22 0.79 10.8 4.61 4.83 5.23 4.35 0 8.32 3.44 7.76 3.67 4.54 8.25 8.96 10.3 0 9.64 7.04 1.07 2.22 10.2 3.54 6.53 0.79 11.5 4.57 9.45 5.21 7.02 9.63 0 2.53 8.33 10.9 8.35 5.69 9.24 0.79 6.58 3.12 0.45 4.32 4.07 12.2 3.63 5.33 7.04 8.87 10.5 12.3 4.27 0.45 8.01 12.3 4.1 3.18 11.3 9.33 9.25 9.84 11.1 8.82 8.32 4.22 7.27 11.5 10.4 7.77 12.3 8.66 9.57 8.33 8.96 11.5 8.65 7.78 9.49 9.3 9.64 12.3 8.65 9.94 9.37 10 11.4 8.13 9.83 8.34 9.01 9.77 6.88 10.5 6.09 0 10 11.9 9.07 6.88 10.1 6.58 7.92 2.53 10 13 8.91 5.29 10.9 12.7 6.25 8.48 7.65 3.34 10.2 9.53 10.3 8.97 5.22 9.62 7.91 7.15 9.15 0.45 10.2 11.3 9.36 2.85 9.23 10.2 8.09 11.1 11.1 9.21 7.29 7 8.61 7.71 8.87 9.73 7.72 4.38 8.9 4.69 7.8 8.38 8.67 6.52 9.39 4.22 5.58 6.65 9.47 9.13 9.79 8.07 7.53 8.89 9.36 5.27 3.12 9.09 7.98 8.2 7.25 6.55 9.83 4.97 10.7 0 9.86 8.89 9.24 10.2 9.92 10.5 9.83 10.6 10.4 9.17 7.71 10 9.98 9.86 2.33 9.33 12.7 9.81 9.4 8.76 4.13 5.8 3.29 11.3 5.7 8.34 3.29 3.34 10.4 4.81 11.4 9.09 8.88 2.99 8.76 5.1 6.13 4.24 8.14 7.26 5.81 9.83 9.11 9.43 10.1 9.25 8.33 9.33 0.45 10.1 10.4 7.35 8.68 10 3.06 10.2 8.75 11.2 10.9 12.8 2.78 12 5.71 10.4 15.1 10 12.5 1.68 11.1 8.86 6.5 3.67 9.49 8.41 9.33 8.78 8.01 9.67 11 6.75 8.43 11.8 9.7 2.64 2.33 3.97 2.78 0.79 7.23 1.07 7.11 0.79 0 6.09 7.25 1.3 0.79 4.5 5.73 6.4 1.07 6.58 3.29 11.9 9.09 1.97 7.07 3.4 0 0 7.21 15 8.99 8.27 10.9 1.97 7.26 5.68 6.19 0.79 10.6 5.32 6.21 1.83 4.79 9.9 3.29 4.3 5.6 10.1 6.47 12.6 10.4 9.12 0.45 3.06 0.45 8.08 7.32 3.49 6.99 0 5.62 7.8 2.62 7.82 0 8.97 2.22 1.5 9.23 4.32 5.51 1.83 4.1 4.3 0.45 6.6 1.07 8.62 2.78 4.74 11 4.35 4.19 10.7 10.1 8.7 0.79 3.93 7.05 8.48 7.87 12.1 10.3 0.45 1.3 5.98 9.13 10.6 1.5 9.17 11.2 2.7 6.74 10.7 10.9 9.7 10.9 7.07 8.42 9.7 10.6 9.49 8.35 11.2 9.61 9.18 8.8 8.41 8.35 7.36 10.7 8.13 12.2 10.3 10.4 9.72 3.29 8.86 9.29 5.32 4.32 0.79 7.93 10.9 10.8 11.2 10 9.85 8.79 7.38 7.86 11.4 2.01 9.82 11.5 10.2 7.55 6.43 10.4 11.2 12 8.8 6.36 6.09 8.74 8.41 8.87 7.98 8.15 5.97 7.32 10.2 11.7 10.2 8.08 10.7 10 9 9.92 9.37 11.6 10.6 9.13 8.93 9.44 10.9 12.6 9.31 8.88 11.1 11 9.25 9.32 2.92 12.2 8.86 12.9 8.89 11.8 10.3 12.2 9.5 11.2 10.3 10.1 10.6 9.44 4.89 11 1.3 4 9.4 11.4 8.55 10.4 10.8 7.23 10.8 7.3 10.3 8.53 15.7 8.34 10.5 9.01 1.68 9.66 0 10.5 7.8 11.6 16.3 10.2 9.31 12.1 0 6.24 13 5.83 7.86 10.2 7.52 0 10.7 6.81 11.1 10.8 9.73 9.1 11.7 12.1 8.91 10 6.47 11.6 10.8 9.32 9.44 11.7 9.54 9.59 10.5 10.9 11.2 12.1 12.4 12.2 12.3 11.5 5.58 6.55 0.45 11 8.93 13.2 11.2 3.44 13 2.33 12.3 10.6 12.3 6.38 9.94 11.7 3.06 3.9 6.21 1.5 1.83 2.22 1.07 3.91 11.8 2.68 1.97 1.3 3.24 11.7 11.9 11 10.7 0 6.81 10.3 8.62 8.24 9.05 9.92 6.09 2.85 4.89 9.73 10.3 4.27 2.99 7.16 4.99 10.5 10.4 9.92 9.38 10.6 9.65 8.32 8.56 9.17 9.72 14.1 0.79 9.62 11.3 11.8 8.13 11.5 8.84 9.98 7.94 12.3 9.57 9.45 7.76 9.83 10.5 7.47 11.3 10.1 4.61 9.75 3.71 4.38 4.96 11.9 1.5 8.78 0.79 4.32 0.45 11.5 8.58 1.3 10.9 6.85 9.81 8.88 8.57 6.62 11.2 5.39 10.2 12.7 6.65 10.6 9.65 9.34 8.57 5.89 9.03 6.75 6.47 11 13.2 11.9 10.2 13.2 8.24 8.23 10.6 1.3 0 8.77 11.1 8.77 10.2 8.24 11.3 6.91 9.95 6.93 6.18 6.86 8.75 10.5 9.17 11.1 1.3 5.3 6.64 9.53 1.83 0.45 10.9 0 9.64 10.2 6.41 9.51 9.78 7.25 9.36 9.25 8.42 11 4.07 13 9.75 12.6 9.72 9.01 9.87 0 13 10.5 7.15 10.6 0 1.5 10.8 4.63 9.77 4.79 10.7 9.33 8.1 1.97 12.4 10.7 8.4 8.28 5.91 2.92 11.5 14.5 4.48 8.58 8.64 0 8.96 9.64 0.45 9.98 8.39 8.64 2.78 8 8.79 8.72 10.8 10.2 8.62 10.7 3.34 11.5 3.29 9.33 5.79 12.6 11.5 8.87 7.3 7.92 0.45 11.7 10.9 0 10.9 8.85 7.92 10.5 3.58 13.6 0.45 9.27 12.9 7.68 8.87 10.4 4.65 4.1 8.85 4.48 10.2 7.26 0.45 12.4 12.1 9.73 10.3 7.71 10 12.8 11.7 13.4 5.07 10.8 10.5 8.56 10.3 11.5 0 7.71 7.23 10.7 7.08 4 12.8 12.7 7.87 8.39 10.8 9.06 15.7 13.7 5.84 7.8 10.6 11.2 9.06 9.36 9.85 9.66 6.67 9.63 14.5 11.9 8.5 7.55 3.67 1.68 10.6 10.8 8.82 12 11 11.8 9.58 2.22 3.24 0 0.45 11.9 0 14.3 6.26 10.1 10.6 6.34 1.3 6.5 10.5 8.73 10.9 9.51 8.64 11.2 2.33 9.25 11.1 6.34 10.9 1.97 14.6 13.5 10 12.2 12.3 12.2 10.9 9.41 10.4 7.34 16.9 0.57 14.7 8.44 9.27 14.4 8.32 8.48 7.3 7.93 7.65 8.21 14.2 0 11.3 9.87 10.7 8.65 0.79 9.08 1.68 1.07 7.23 7.26 8.41 6.62 3.24 1.97 11.1 9.97 10.5 1.07 10.6 2.1 9.13 10.4 11.1 8.84 5.32 10.5 8.7 11.1 11.1 12.4 8.88 6.63 8.3 4.1 6.65 9.86 10.6 8.01 4.16 2.62 2.92 9.04 8.96 9.34 8.44 4.96 5.05 4.57 5.49 6.55 2.53 8.09 3.21 2.85 7.7 9.27 9.49 4.07 8.54 0 2.43 6.21 12.5 7.02 6.73 4.07 7.48 7.85 7.35 0.79 8.22 2.43 10 8.31 6.97 4.54 4.69 8.33 5.94 4.77 13.8 4.3 8 1.3 6.01 0 6.51 3.71 7.35 3.12 9.15 2.92 0.45 9.65 4.52 8.49 3.4 4.85 4.99 2.99 3.29 2.43 4.54 6.03 5.81 5.41 0.45 5.05 6.73 2.1 3.86 4.19 5.09 0.79 7.47 11.3 7.75 1.5 9.04 5.37 4.72 10.3 4.54 6.13 2.99 10.4 10.5 2.22 0.45 4.63 9.96 6.44 8.39 3.93 5.67 1.83 8.74 8.08 11.1 5.97 7.31 8.54 6.95 9.17 6.07 9.38 2.92 10.3 2.22 11.1 4.57 13.5 2.78 14.2 16 12.5 0.45 9.61 10.6 10.7 8.64 11.6 12.6 9.89 8.43 10.2 11.1 10.3 10.8 1.68 11.2 10.8 11.4 9.2 10.7 9.1 11.2 9.44 11.8 5.9 8.59 8.66 2.92 10.1 3.63 10.6 3.58 9.32 8.59 9.58 11.3 8.44 6.86 9.6 8.54 9.59 10.3 11.2 8.68 1.5 11 1.97 12.3 11.8 12.5 11.5 11 10.9 9.35 8.93 11.6 8.94 1.5 10.7 10.5 9.51 9.3 10.1 10.7 7.32 9.92 9.93 14.5 10.8 12.4 13.5 11.4 11.1 8.43 16 11.5 7.08 1.07 7.78 8.72 12.7 17.3 3.06 3.84 10.3 6.04 7.51 7.57 7.05 8.33 0.45 1.83 9.91 13.6 11.9 7.82 10.8 12.7 10.1 10.8 7.36 5.12 8.53 9.51 9.97 9.08 6.16 1.07 4.79 6.81 3.49 0.45 2.22 0 1.83 5.23 2.53 3.9 1.07 10.3 6.05 8.91 11.7 4.38 2.78 13.8 4.87 7.9 10.2 5.13 9.86 1.3 11.4 10.1 4.16 7.4 7.73 8.52 12.4 8.74 10.9 10.6 12.2 10.9 14.2 12.2 12.2 13.6 6.6 11.6 13.2 6.92 14.1 9.12 9.2 9.41 6.88 9.7 9.41 9.1 8.46 6.33 13.2 7.67 9.98 8.15 7.53 8.32 7.1 8.13 7.61 7.47 7.98 10.1 10.3 8.34 10.9 7.52 8.91 5.16 9.89 10.2 10.9 6.3 9.14 8.55 8 8.17 8.84 8.79 8.31 6.96 11.4 5.22 4.43 7.24 7.56 7.96 8.93 8.31 9.31 6.43 0.79 9.59 4.1 7.66 6.7 8.81 0 3.44 6.36 5.56 4.81 12.2 5.67 3.12 3.67 3.24 0 5.38 3.71 9.4 8.45 7.14 8.29 8.29 7.58 8.1 6.44 7.66 8.82 8.35 6.98 8.8 8.38 9.71 6.15 10.5 10.6 10.9 8.28 13.9 6.9 7.32 1.07 10.3 6.05 10.8 8.15 8.34 3.97 7.92 2.85 7.49 8.91 7.47 9.38 0 8.96 9.07 8.83 7.56 8.37 7.2 9.95 7.83 8.07 8.39 8.79 11.4 7.45 8.25 8.86 6.6 6.22 11.4 10.1 6.81 8.3 6.62 8.9 5.71 8.26 7.03 6.41 7.33 8.24 8.03 6.58 3.06 0.45 6.33 8.77 7.65 6.32 11.4 9.85 8.71 12.3 9.52 11.7 4.24 12.1 4.14 13 7.94 10 6.49 7.52 11 10.5 7.63 8.84 10.3 9.63 12 12.4 3.67 6.64 9.04 12.4 10.8 5.12 7.98 9.13 10.1 7.78 9.21 9.58 11.2 12.9 8.91 7.79 9.55 0.79 9.19 10.2 8.61 4.99 8.62 10 9.9 5.51 10.1 1.07 3.67 7.03 9.52 2.33 11.7 11.2 9.25 10.5 8.39 7.66 8.76 9.46 9.8 0 9.57 8.91 8.95 5.1 8.85 9.97 8.07 1.5 13.6 10.3 7.47 10.6 8.66 9.24 9.37 9.55 10.8 6.4 9.7 10.4 5.83 10.7 9.64 10 12.7 8.19 9.36 8.73 8.58 8.3 10 10.2 11.4 8.71 7.47 7.62 11.4 5.55 5.87 9.64 7.22 9.31 8.75 8.69 12.1 11.5 9.75 6.37 10.8 9.43 7.91 3.71 5.57 8.28 8.55 9.24 6.03 9.2 9.83 10.7 11.1 8.41 7.18 8.7 8.22 12.1 11.2 5.85 9.8 10.4 12 8.74 8.41 4.61 5.73 10.1 5.51 4.58 7.52 9.32 7.33 8.73 10.3 7.65 12 9.56 8.13 0.45 6.16 7.54 11.9 4.27 10.6 5.8 3.24 9.31 8.3 8.18 7.77 8.8 9.37 10.8 8.48 8.18 1.07 11.4 12 11.1 9.36 11.3 8.92 9.38 7.64 0 10 0 1.68 0 10.4 6.72 10.6 12.1 6.92 1.5 8.05 1.07 7.7 2.62 7.98 10 0.79 4.77 7.66 10.9 9.73 8.11 5.52 9.37 8.14 10.5 3.86 2.33 4.57 1.98 10.9 8.55 6.5 3.83 9.21 11.7 7.47 8.38 8.08 9.57 9.3 9.03 8.96 9.33 11.8 9.52 9.86 9.63 9.99 9.3 8.42 6.25 9.96 11.2 9.99 10 7.93 8.12 6.78 9.34 7.81 8.68 9.13 5.25 8.65 9.04 13.1 8.18 10.7 6.79 7.54 3.75 8.79 7.9 9.17 4 9.83 7.98 6.77 8.62 7.37 8.31 9.3 9.26 9.54 9.09 1.83 8.17 8.92 7.88 9.68 9.13 8.92 9.48 9.44 9.94 7.51 8.33 8.38 8.35 11.5 7.06 7.12 9.31 10.9 9.54 6.21 8.65 3.93 8.9 9.29 10.4 8.66 10.6 8.39 8.58 9.09 9.03 6.4 7.08 7.81 11 7.57 7.87 8.84 9.48 7.54 9.49 8.69 7.68 7.65 9.51 8.53 7.16 8.94 9.57 6.58 11.2 10.4 9.55 8.37 8.04 7.69 10 10 11.5 9.17 8.9 2.85 7.02 11.1 6.92 9.34 7.89 6.46 7.1 8.39 2.53 7.55 10.1 7.81 8.87 4.07 2.45 10.1 7.78 8.1 7.05 0.45 10.2 2.62 8.13 9.54 7.28 10.4 0.45 9.14 7.62 6.24 8.44 9.59 11.6 9.57 8.13 11.2 5.5 5.83 2.62 9.52 7.13 7.65 9.9 8.1 1.3 7.68 5.77 8.72 4.75 8.31 10.9 9.06 10.7 9.99 9.57 7.73 8.45 7.79 5.19 1.07 8.86 3.06 7.62 9.62 7.23 10.4 10.6 9.48 6.84 6.85 2.1 10.1 6.74 6.19 10.1 0.45 7.18 6.31 5.05 1.07 8.11 8.83 7.39 6.64 9.72 8.07 9.81 6.62 10.2 1.83 7.5 8.9 8.7 4.22 5.78 4.43 5.16 6.88 7.26 5.22 8.22 6.82 10.3 2.53 0.45 5.02 7.69 1.07 9.33 0 5.65 8.74 5.43 1.07 6 9.45 9.35 10.8 6.3 7.29 9.49 7.09 9.31 7.11 11.3 9.94 6.24 8.38 10.1 1.83 8.55 9.82 9.07 9.64 13.5 9.46 8.86 10.4 10.7 9.2 5.94 9.01 7.66 7.08 7.9 10.3 9.42 11.2 5.47 6.47 2.1 8.51 8.69 7.65 5.44 6.98 8.2 11.7 8.18 1.83 10.1 8.78 5.56 5.16 6.58 7.6 2.43 10.6 1.5 9.92 1.5 5.55 11.4 10.1 7.47 7.46 8.65 2.36 9.3 0 0.45 9.05 2.43 9.66 4.57 8.79 5.87 11.1 8.59 5.71 8.32 6.48 6.98 7.92 10.1 5.81 6.18 0 9.2 8.07 8.28 8.98 6.66 5.4 7.12 8.71 9.34 4.16 10.6 4.57 12.5 0.45 3.34 7.58 9.07 6.67 8.81 7.64 4.07 8.1 10.6 10.8 8.54 9.95 10.7 8.37 7.8 9.53 8.41 11.1 10.5 8.78 8.5 8.04 6.34 2.85 1.5 3.49 6.37 7.95 5.29 8.28 2.15 4.92 3.93 1.5 8.71 11.2 13.1 6.67 8.1 9.3 8.33 3.12 0.45 9.53 6.74 4.75 4.63 5.81 7.63 8.55 4.75 9.83 8.91 10 9.41 10.1 9.72 6.36 9.85 9.2 9.13 7.49 9.79 6.89 11.9 6.7 9.23 7.78 6.75 7.78 8.65 4.07 9.14 5.39 8.89 7.27 9.27 9.42 9.68 8.75 8.85 9.5 10.1 10 10.4 9.41 10.1 10.5 9.34 10.6 8 10.2 9.96 8.71 5.18 11.5 9.06 8.42 8.59 9.93 7.93 9.25 10.5 10.8 5.9 10.5 9.83 6.77 7.03 5.78 9.58 10.8 8.91 8.58 9.15 6.39 6.81 9.62 8.98 10.9 9.38 9.7 2.7 11 8.93 12.2 8.33 10.3 10 8.67 7.8 9.12 8.92 7.56 8.47 12.9 10.2 7.85 5.86 8.36 8.67 10.3 6.35 6.69 4.03 7.51 5.71 8 9.29 3.58 3.12 0.45 10.7 0.79 8.6 10.6 7.8 1.07 7.65 6.49 10.5 6.47 7.43 10.7 9.59 3.34 10 2.22 10.1 5.02 6.17 10.3 10.8 12.7 9.1 5.55 9.57 12 6.06 9.25 3.93 8.42 8.47 6.3 7.5 12.3 6.77 10.4 4.87 9.05 5.09 0.45 4.57 8.68 7.46 6.69 9.33 5.57 6.03 6.13 3.34 11.5 13.1 9.05 5.13 9.1 8.37 7.49 8.48 11.4 6.8 10.5 13.7 9.04 11.7 10 13.2 8.11 7.99 9.85 7.05 8.71 7.41 9.36 11 11.5 6.84 9.62 0.79 10.4 9.04 9.11 11.3 9.72 9.41 5.17 4.81 6.62 3.46 11 7.62 8.14 8.71 0.45 2.22 10.8 13.3 8.98 2.85 3.06 5.67 4.38 9.6 8.5 5.52 12 11.2 14.4 4.75 4.87 2.33 2.53 4.13 11.3 11.7 10.4 4.4 2.43 7.5 11.3 10.2 9.8 2.78 4.05 1.07 3.86 11.4 7.07 8.97 10.2 10.3 13.8 10.5 3.18 6.53 10.4 9.01 10.6 5.97 10.6 10.8 9.83 4.58 7.84 8.56 9.97 8.07 9.62 9.27 12.4 0 8.17 7.12 8.07 8.61 10.4 8.78 9.4 6.21 10.5 1.97 8.41 10.7 10.5 10.4 1.3 8.93 10 8.64 5.59 9.73 9.59 7.97 2.78 7.79 11.2 11.2 6.38 4.04 9.17 5.81 9.56 10.3 4.38 11.4 10.3 10.2 11.9 12.1 10.3 5.56 10.5 10.4 0 10.8 8.19 1.68 10.2 8.79 8.87 8.05 8.33 9.61 4.22 5.26 2.33 9.04 11.7 9.13 8.77 9.8 8.68 11.4 0.45 9.4 4.05 10.2 8.77 9.75 9.85 6.59 9.06 8.25 12.2 10.7 8.25 11.4 11.1 9.54 9.1 0 9.83 10.5 1.75 10.5 9.75 6.95 9.54 0 4.38 5.86 8.96 9.81 0.79 9.54 10.3 6.43 11.8 15.3 10.4 10.5 7.66 11.8 9.46 2.7 9.86 9.59 10.2 10.1 11.7 8.64 11.3 11.9 11.6 10.3 11.5 10.9 7.25 13.2 9.45 7.85 10.6 8.51 7.44 9.78 1.07 6.41 2.43 9.61 10.8 10.3 4.58 8.82 3.12 10.3 12.1 12.3 9.43 8.58 12.4 7.62 9.37 4.83 10.4 9.03 5.51 4.72 11.7 6.31 12.2 12.3 9.2 7.12 11.2 0.79 0.45 9.71 2.33 0.79 0 11.4 5.18 8.95 2.22 0.79 5.38 8.9 2.62 1.5 4.07 4.13 0 0 8.99 3.63 10.1 11.2 9.17 8.51 6.85 2.1 0.45 7.27 10.4 8.26 0 9.06 4.97 7.32 9.12 3.58 6.38 6.62 8.49 11.2 7.58 1.5 7.36 7.44 13.2 8.73 9.97 0.45 2.34 1.68 2.7 7.08 0 3.06 7.94 9.44 8.67 7.68 9.37 10.5 0 9.3 0.45 4.69 0.45 0.45 9.44 7.71 4.1 8.23 9.54 6.74 7.34 8.36 0.79 11 10.3 12.1 9.23 8.12 0 5.34 9.76 11.2 10.1 1.83 8.1 11.6 8.94 8.2 4.81 7.27 0 4.57 11.8 0.45 11.1 11.1 8.94 0.79 7.56 11.8 9.41 5.07 9.67 9.59 1.3 0.45 9.28 9.78 9.27 9.4 8.57 9.34 8.63 5.27 8.66 10.1 4.35 1.68 5.54 7.55 6.04 7.41 10.2 10 9.47 6.24 9.98 10.3 2.1 11.1 8.64 9.23 9.92 8.35 1.07 5.22 4.35 8.09 3.18 2.72 8.95 5.91 9.64 6.36 7.33 5.89 9.39 11.4 8.91 7.9 4.54 5.3 11.1 6.58 4.89 0 2.78 2.33 5.12 2.33 4.94 0.45 3.94 8.09 10.8 8.07 3.24 10.2 9.54 6.7 9.09 10.8 7.76 11.6 9.26 8.29 8.24 8.33 3.18 5.67 7.44 1.68 3.71 11.5 8.54 8.12 5.23 10.3 11.3 4.83 9.8 10.5 0 4.81 9.29 0.45 9.17 9.57 2.33 8.9 11 8.81 7.45 12.7 10.3 5.04 9.28 3.06 9.13 5.84 5.21 8.19 11.8 9.88 1.3 9.56 9.78 9.6 7.23 4 12.9 5.56 4.07 1.07 1.5 6.91 6.81 9.85 9.37 9.24 9.61 5.48 5.5 7.4 10.3 2.22 9.47 6.66 2.62 9.1 9.44 5.61 7.22 9.25 8.7 9.34 6.89 9.26 12.9 6.77 8.32 9.22 8.47 7.49 7.48 6.77 7.94 5.02 8.94 9.79 0 10.2 8.53 10.3 6.89 10.4 8.93 10.6 9.33 8.44 11.4 10.2 7.01 8.98 7.94 6.34 6.62 7.54 9.98 7.9 9 8.1 10.1 1.68 0 6.2 9.62 11.2 9.71 3.49 7.33 4.67 4.83 3.79 5.43 5.72 9.31 5.19 3.06 5.48 7.43 6.39 6.25 4.59 0.79 9.07 10.2 11.2 8.24 8.73 3.06 8.29 8.95 8.94 9.59 9.74 10.8 2.62 7.23 6.83 5.64 6.75 8.01 9.78 9.98 0 8.07 8.46 7.47 8.43 11 7.59 9.13 10.4 8.78 9.7 8.61 9.69 7.82 11.5 8.82 9.36 10.1 5.52 8.64 9.23 5.18 8.19 11.7 9.02 6.29 10.7 6.79 9.24 9.04 8.88 9.2 7.5 7.77 0 8.02 11.2 8.51 8.85 5.55 8.66 10 9.04 9.64 4 9.38 7.87 9.06 8.95 6.95 7.84 9.33 0.45 11.1 10.5 7.47 9.84 8.8 6.92 9.1 10.3 6.37 8.55 9.2 9.74 9.43 9.93 5.54 7.85 8.02 7.86 9.3 0.79 11.2 9.18 10.5 9.54 10.2 8.22 9.15 9.02 11.3 1.68 9.61 10.9 9.93 9.89 9.99 3.75 9.6 1.3 11.6 7.08 12.8 7.56 9.9 6.96 8.51 8.64 5.72 6.91 8.83 9.71 8.75 10.3 4.54 10.7 4.69 7.95 9.11 10.3 9.26 6.77 7.22 5.27 9.24 10.3 9.01 7.4 6.94 0.45 2.99 10.6 9.38 7.91 11.1 6.67 4.81 7.3 10.4 9.55 11.3 6.49 10.3 5.96 0.79 5.83 10.7 8.54 9.19 6.19 5.7 8.44 6.29 9.11 9.31 4.79 10.6 5.04 6.23 10.3 7.24 9.77 7.18 10.5 8.55 8.13 7.07 4.27 11 6.72 7.4 0.45 9.6 10.1 3.29 10.4 8.94 10.2 9.3 8.64 0 4.22 9.45 6.7 4.81 11.1 7.83 8.3 9.73 3.83 7.86 9.45 10 5.92 4.32 8.66 11.1 4.4 1.5 0.45 1.5 9.27 10.7 7.86 10.2 10.3 7.24 7.61 8.96 9.27 5.37 0.45 8.27 9.79 11.4 5.22 5.57 6.84 6.04 4.4 5.19 5.43 11 10.6 0.79 7.13 8.8 9.11 11 7.31 11 10.3 9.84 5.54 6.26 11.9 7.17 11.6 5.22 8.71 6.76 1.98 11.3 8.97 5.67 9.65 7.89 10.6 7.98 3.44 7.67 6.74 4.03 8 7.17 9.25 11.2 5.73 8.93 5.91 6.55 9.78 8.38 8.85 6.81 5.68 7.92 7.82 10.1 8.34 5.74 4.74 1.68 7.78 9.44 9.69 5.99 7.87 9.16 2.99 8.44 2.53 3.24 6.45 10.1 11.7 6.65 7.6 0 2.78 8.98 6.99 9.23 6.28 8.49 7.81 10 8.5 7.39 8.92 12.1 9.11 6.6 3.67 1.3 7.54 8.96 10.7 8.48 8.31 5.6 8.78 7.93 8.76 9.23 9.2 9.21 0 8.75 10.2 8.52 8.26 10.3 9.59 7.67 7.96 13.8 5.07 9.63 9.22 6.46 6.44 9.7 8.92 8.74 8.94 7.29 9.98 6.15 8.69 4.75 10.7 8.47 10.1 2.1 5.61 9.13 9.31 8.1 8.53 10.3 9.87 8.81 8.87 7.45 8.84 7.89 8.3 9.2 7.53 7.4 8.99 5.39 4.45 8.35 3.29 8.61 7.24 6.34 7.35 9.95 9.22 1.68 11.6 1.5 9.12 8.1 6.58 4.85 7.42 11.9 3.87 6.76 10.1 7.27 7.95 9.74 6.35 8.59 8.71 8.92 9.81 8.16 0 10.3 7.13 1.83 6.06 0.45 8.25 9.49 10.2 3.51 2.92 10.1 10.9 9.65 7.49 9.71 5.66 4.43 10.9 0 6.98 9.4 9.16 10.7 7.82 6.45 11.8 8.07 8.87 7.87 10.5 6.88 9.86 7 8.78 6.84 8.88 11.5 8.68 2.22 1.07 7.99 5.19 4.54 8.92 9.71 12.4 9.58 5.65 7.59 0.45 10.8 9.14 6.87 9.7 6.88 0 7.58 1.5 10.4 6.91 12.1 7.93 7.52 0.69 0 0.45 2.99 10.1 7.44 8.63 4 10.1 10.2 8.86 10.3 9.19 9.22 10.3 2.1 8.28 2.99 7.1 8.89 10.4 10.8 10.7 7.77 10.8 9.05 10.3 1.3 4.03 6.3 2.62 5.64 10.4 3.58 11.7 10.1 9.76 11.1 7.65 8.57 9.56 5.47 7.82 2.7 11.4 10.6 9.98 6.47 4.4 10.6 8.97 10.1 7.83 10.6 7.69 9.4 5.84 8.57 10.3 9.02 7.44 5.03 9.96 10.7 6.03 4.75 8.91 2.43 5.35 5.5 8.44 4.43 4.81 13.6 7.98 9.63 7.09 2.53 10.4 8.23 10.9 10.2 9.42 9.92 9.98 12.1 10.1 9.29 8.51 11.9 11 6.23 9.91 9.93 9.48 9.85 5.92 8.89 11.7 8.08 9.41 6.59 0.45 2.22 9.26 9.29 9.05 8.43 9.56 2.53 6 9.21 11.5 6.88 11.3 11.8 11.3 3.34 3.71 10.1 7.13 10.1 8.61 10.1 1.07 8.9 4.96 1.07 8.77 4.93 2.99 8.75 12.3 9.28 10.4 6.73 8.39 7.69 4.32 9.81 4.85 12.7 9.91 6.69 10.4 10.5 9.92 11.4 7.33 8.52 11.6 9.19 7.22 8.34 11.7 12.1 8.79 12.2 11.6 11.7 12.3 11.3 10.1 9.72 12.6 9.77 11.5 8.39 10.6 7.04 8.37 10.4 8.59 8.16 12.1 11.1 6.51 9.1 10.7 8.71 8.6 9.76 5.78 11 1.52 10.1 9.15 8.89 7.83 9.75 1.68 0.79 12 8.54 11.8 10.2 8.55 5.29 11.9 11.8 11.5 10.2 11 10.7 7.96 7.96 7.08 10.5 11.7 9.8 8.39 10.7 5.49 10.2 7.75 5.6 2.85 10 10.2 14 8.33 1.83 1.5 1.5 5.58 9.85 11.4 13 9.74 10.9 12 10.6 11.5 8.16 7.39 9.2 10.3 9.24 11.9 9.55 6.93 9.24 4.67 10.5 3.63 0.45 2.82 3.44 8.38 3.75 7.3 5.64 9.73 5.78 8.59 9.64 1.07 7.44 10.1 10.5 10 11.7 9.06 3.83 7.93 1.07 1.3 9.64 8.75 5.25 11 10.8 0.79 9.35 8.56 3.58 7.71 2.53 12.8 6.75 12.2 8.94 12.5 7.98 8.2 6.62 10.1 9.41 7.23 8.73 10.4 1.3 1.68 4.19 10.7 3.63 2.43 12.5 12.1 8.19 4.71 14.2 9.47 7.24 9.05 5.97 2.85 9.06 1.5 8.71 10.2 11.8 9.84 9.55 9.31 8.93 12.5 7.41 9.36 10.9 8.69 5.05 4.69 5.74 13.8 10.8 9.9 10.5 9.56 9.35 8.79 10.3 11.7 10.9 9.34 9.36 8.2 9.71 10.3 9.95 11.6 10.1 10.5 10.3 10.2 1.07 5.78 0.79 10.6 8.83 9.24 10.9 1.68 0.79 7.48 9.66 2.92 7.42 10.4 0.79 8.08 8.51 9.6 9.6 10.1 10 6.33 5.61 1.88 10.2 11.1 11.1 9.29 11.7 7.27 6.4 10.1 10.5 8.36 5.56 11.6 9.21 10.2 0 5.49 5.25 11.5 9.08 3.75 11 8.27 10.7 4.72 0 10.8 8.83 7.61 2.78 8.68 9.14 4.89 6.94 2.1 4.1 2.78 1.68 8.11 6.89 8.71 8.45 10.8 8.38 7.33 5.81 9.43 8.61 9.73 7.56 3.45 8.3 1.77 0.45 7.68 9.01 8.4 10.8 8.39 6.28 7.37 10.1 12.5 7.05 0 7.17 8.97 10.3 10.6 9.83 4.57 12 8.96 8.98 7.88 6.42 5.87 9.46 12.8 10.9 2.62 6.65 6.13 8.1 6.26 10.9 11.5 1.97 9.02 10.5 9.51 0.45 9.48 11.7 8.28 5.67 4.63 7.49 1.3 10.5 10.7 9.41 9.99 8.8 7.94 11.8 3.18 0.45 5.54 10 7.08 2.53 4.24 3.93 8.76 10.8 9.2 13.6 6.47 3.58 4.83 5.64 9.18 10.9 10.3 8.16 9.02 10.1 7.97 3.79 8.66 9.12 9.97 6.45 1.68 6.7 7.54 8.51 10.2 8 8.65 4.36 8.94 6.63 6.16 10.8 9.25 8.47 12.4 9.34 7.01 5.87 8.17 11.6 9.36 9.86 12.9 6.63 7.27 5.85 3.18 10.5 5.66 10.3 10.5 9.47 6.92 5.56 10.4 5.93 4.69 8.45 6.73 1.83 7.29 9.41 9.72 7.6 9.49 7.41 9.35 9.3 7.76 7.82 3.93 5.25 8.62 7.25 9.46 9.94 9.11 9.17 9.06 8.83 8.54 7.97 8.87 4.72 3.29 4.1 8.25 9.13 7.39 9.86 7.15 9.96 9.92 10.6 8.45 0.79 13.9 9.55 9.68 9.85 9.24 11.4 4.3 9.06 8.78 7.23 5.62 11.1 8.8 2.78 12.9 9.91 7.58 10.2 8.73 4.55 1.83 10.2 10.5 10.6 10.6 8.53 5.64 11.3 10.4 9.37 3.12 9.7 5.77 7.84 7.56 8.39 4.19 10.8 11 9.68 9.77 9.8 6.34 9.99 9.33 8.34 8.54 7.98 9.67 5.22 3.49 9.54 10 8.95 9.61 6.78 6.89 7.22 9.32 10.7 7.55 8.82 9.1 8.32 1.68 0.45 6.88 5.49 7.8 11.1 9.92 12.8 11.9 6.49 10.3 9.78 1.68 10.9 9.69 8.52 11.1 9.62 8.11 3.54 10.4 10.5 11.8 11.9 8.45 6.59 3.06 4.72 4.54 10.4 8.28 0 6.58 7.97 8.83 10.6 9.18 10.6 9.13 6.83 8.02 8.85 9.9 9.59 6.53 9.81 6.78 2.43 8.39 11.9 4.22 10.4 9.38 1.5 9.59 10.8 9.4 8.84 2.33 9.28 7.04 8.85 13.2 7.36 5.49 7.43 8.44 3.67 8.48 10.5 10.8 6.25 8.82 8.59 8.16 8.77 4.79 10.8 8.09 6.02 0 9.05 9.2 9.83 7.95 2.99 11.4 7.36 11 14.3 5.78 10.3 11.4 7.6 6.83 5.15 7.84 10.2 5.57 8.31 5.47 11.1 11.2 6.34 6.9 6.34 3.24 10.8 10.5 7.68 8.73 8.75 10.8 7.33 1.5 9.82 7.97 7.93 8.65 10.6 8.28 7.74 9.97 7.22 8.57 8.31 7.59 9.57 11.6 5.71 7.36 9.19 7.46 5.22 8.19 10.1 0 9.39 2.53 9.46 9.69 7.38 6.04 7.57 8.78 10.7 5.07 8.4 4.77 7.09 11.5 10 10.2 8.39 8.01 8.47 11.2 10.1 6.27 6.43 9.27 8.75 7.36 3.83 9.69 10 6.89 11.4 8.51 9.12 6.86 9.89 8.84 11.5 9.79 9.94 0.45 8.84 10.5 7.66 9.04 2.62 8.59 9.82 6.93 9.34 5.1 0 7.09 6.47 0 3.97 12 0 6.84 11.4 0.79 10.8 8.86 6.89 5.44 9.36 6.54 6.1 6.84 7 13 8.8 11.6 2.62 10.4 10.3 9.1 6.53 10.6 8.76 5.37 9.31 8.13 1.3 7.96 11.8 8.97 2.33 11.2 8.95 6.13 7.74 6.49 3.4 9.75 10.8 9.37 6.36 11.3 7.2 3.98 8.23 9.92 6.85 9.22 10.1 11.5 8.64 9.11 8.79 9.05 5.35 10.6 8.64 9.36 10.3 8.4 5.56 9.19 9.44 8.99 7.76 9.44 5.1 10.1 11.7 9.53 9.2 3.75 9.79 10.8 8.1 7.06 10.2 8.91 2.33 9.6 4.38 9.29 13.7 11.1 3.12 8.97 9.44 7.98 7.07 6.64 4.16 10.3 11.5 7.2 5.22 9.68 8.27 8.78 2.1 8.26 1.68 0 7.46 9.55 8.43 8.08 5.3 4.65 6.76 9.35 9.18 3.97 10.8 9.91 9.93 4.4 11.6 6.12 3.63 10.4 11.2 8.17 9.54 6.23 11 8.75 10.1 10.7 4.45 11 9.06 9.59 9.87 7.96 5.59 8.78 6.99 10.2 6.83 0 10.7 9.87 7.85 10.8 9.14 10.2 11.3 10.3 0 11.1 9.06 10.9 5.01 0.45 11.4 14.3 0 10.5 7.29 10.7 6.4 10.6 0 7.05 3.79 2.7 6.83 7.35 5.62 9.17 11.5 9.17 0 12.8 8.3 9.89 8.58 5.8 7.74 9.06 12.5 6.16 1.85 9.22 10.7 9.5 12.4 4.96 11.4 9.18 9.44 9.21 11.5 10.8 0 11.2 10.8 0.79 10.7 7.23 7.18 1.5 7.36 4.87 11 7.78 9.2 4.03 9.02 8.65 10.7 0.45 4.63 0 8.43 10.1 5.84 9.28 10.4 7.25 5.64 6.51 5.01 1.5 11 6.3 6.77 1.97 6.39 8.98 10.1 7.28 9.8 10.5 3.24 8.54 8.12 4.19 8.15 9.55 10.4 9.59 9.94 11 8.49 6.52 6.85 6.28 9.14 1.68 10.8 8.03 2.43 11.3 8.54 7.72 6.08 9.73 4.4 12.4 6.21 8.09 10.3 8.57 2.78 5.56 7.37 3.71 9.08 1.83 8.14 5.47 9.19 7.85 7.6 9.02 10.8 15.7 11.2 4.96 11.1 6.61 8.01 9.14 8.97 9.19 10.8 4.59 6.02 9.07 0.79 9.1 8.94 6.91 7.69 9.04 0.79 8.41 12 10.4 8.62 8.17 9.45 9.16 8.52 7.8 8.75 11.4 2.92 8.36 9.04 8.93 7.24 8.46 8.88 10.6 11.6 4.59 5.74 8.74 4.65 4.9 10.4 12.5 11.2 8.07 9.75 6.02 7.42 8.68 11.7 10.8 9.74 12.6 0 11.8 10.8 12.3 6.4 5.01 11.1 9.27 11.2 10.6 10.1 11 10.8 12.3 10.5 10.9 6.83 9.98 6.95 8.31 8.75 8.92 4.75 10.7 11.2 8.84 9.62 9.7 6.44 10.2 8.59 14.2 10.3 11.3 10.6 10.6 8.83 10.2 11.3 10.2 8.43 10.4 0.46 9.52 10.7 12 10.3 7.72 9.15 6.92 10.4 9.52 7.34 10.1 12.2 10.1 8.59 11.5 5.49 6.62 11.4 6.79 9.99 9.13 12 9.4 4.22 12.1 13.2 7.55 1.68 10.8 9.78 12.4 9.11 11.5 9.12 9.85 11.2 7.57 10.8 11.8 11.1 6.56 8.7 10.6 8.61 11.5 5.66 3.44 2.1 9.89 6.21 8.21 11.5 4.77 0.79 9.34 9.59 7.56 9.33 10.4 6.36 12.4 9.33 8.89 10 9.97 10.4 9.91 7.31 8.1 9.57 8.92 10.5 9.92 7.99 8.97 9.23 8.18 8.77 9.3 14.5 12.2 7.33 10.2 11.6 10.8 10.9 7.11 11.6 14.4 9.18 0 11.4 9.34 9.34 9.02 8.36 9.02 9.43 10.1 12.1 8.18 9.44 9.99 9.52 11.4 9.99 7 9.1 11.4 7.27 10.3 9.28 10.5 9.95 10.1 8.33 9.53 10.5 0 6.52 11.1 4.27 10.1 9.88 12 8.59 2.7 9.73 3.79 12.5 6.34 9.82 9.25 8.31 4.19 9.53 2.22 5.93 6.54 16.1 2.74 3.58 9.89 9.29 9.22 11.8 10.5 4.89 8.86 8.85 8.96 9.85 6.39 7.61 10.9 10.2 8.75 9.7 6.19 13.3 9.79 9.76 6.88 11.6 7.18 10.5 8.89 13.2 8.28 6.26 7.47 9.03 8.87 9.74 8.08 9.89 6.1 13.9 9.46 9.61 9.94 11.2 8.62 5.66 12.3 9.04 9.67 11 10.8 10.9 11 11.2 9.94 10.3 6.82 10.2 8.19 12.7 6.4 11.4 10.5 7.32 3.58 9.6 9.79 9.65 9.85 10 10.3 10.2 4.22 9.85 12 7.02 9.55 13 12.7 11.1 11.7 9.78 3.93 11.6 9.38 11.4 11.2 8.51 11.9 6.47 10.9 9.67 9.07 10.6 10 10.4 6.32 8.44 9.43 6.91 10.8 6.4 6.07 9.74 8.26 2.85 4.97 2.85 8.38 6.04 9.8 8.68 5.55 6.98 8.99 7.87 10.4 8.28 9.57 11.4 9.7 8.78 10.2 10.4 8.05 7.46 4.16 9.2 9.73 8.98 7.02 9.98 10.4 8.73 9.41 7.87 12.1 11.9 9.62 10.7 8.94 9.6 9.35 10.2 9.47 10.8 10.7 9.77 9.28 7.03 9.24 10.8 11.2 8.91 9.8 9.83 10.7 8.58 11.8 4.43 8.6 8.86 9.08 7.69 9.89 10.7 1.83 6.12 6.32 6.44 9.42 10.1 9.04 10 7.27 9.11 11.6 9.31 4.13 6.74 6.58 7.03 10 3.24 8.13 9.5 9.48 11 10.3 11.3 10.2 8.98 9.74 8.85 10.6 10.8 2.7 10.6 3.75 10 8.16 5.45 10.3 9.18 8.2 9.53 10.2 10.1 3.71 7.15 7.29 10.4 3.4 8.61 12.2 7.72 2.43 10.8 1.07 2.78 7.57 8.84 9.08 10.3 8.6 13.5 10.1 8.67 4.24 11.1 9.94 10.8 10.1 2.87 9.97 9.72 9.63 7.64 10.2 12 9.21 8.51 5.59 7.52 12.3 9.95 9.95 11.8 9.79 11.4 2.53 12.8 7.92 9.27
-TCGA-BA-A6DJ-01 5.77 9.11 7.5 6.66 6.42 9.33 2.29 2.41 0 0 0.55 8.53 3.97 4.99 3.34 8.1 11.4 10.2 4.23 8.83 9.42 14.6 9.55 0.52 9.74 6.86 4.39 10.1 2 4.09 4.54 5.63 1.85 0.9 3.34 2.02 1.45 5.37 1.45 3.45 3.34 2.82 5.98 0 7.61 3.81 0.52 3.06 10.8 5.16 2.41 6.01 8.18 9.27 4.5 3.89 5.61 0.52 5.26 9.5 6.39 2.16 7.64 0.9 2.53 2.29 6.2 3.06 9.49 2.67 3.81 6.62 5.59 0 1.66 2.29 3.87 2.91 2.74 0 3.33 1.2 1.36 8.75 3.27 0.9 7.23 1.2 2.16 3.62 4.26 3.89 6.34 6.12 3.31 2.99 1.45 4.2 3.98 7.82 0 1.2 0 4.89 0.52 3.21 6.68 6.85 7.4 6.36 0 0 7.71 2.91 4.52 2.73 2.14 5.03 0 1.45 1.66 4.06 0.52 2.73 2.53 5.56 0 1.45 2.16 14.4 1.77 2.01 4.01 9.72 2.53 1.66 3.51 1.2 3.14 8.48 11.2 10.2 2.63 2.91 3.21 12.1 0.52 11.1 0 0 3.63 0 8.09 9.94 10.8 3.34 0.52 0 9.61 0.9 7.11 4.89 2.41 0 9.51 6.3 6.15 3.51 8.55 1.2 9.82 8.52 2.01 4.16 3.67 0.52 2.29 3.41 8.22 4.27 4.95 7.68 2.99 3.56 2.1 3.07 3.45 0 7.67 4.78 6.83 7.72 3.98 6.24 4.09 7.39 2.16 9.86 8.57 9.59 5.32 9.08 9.26 10.7 7.27 9.82 7.17 10.3 11.8 10.5 6.27 10.7 11.1 11.1 9.36 9.42 8.82 11.3 4.42 11 6.43 8.86 11.4 10.3 8.65 7.73 4.42 10.9 8.47 12.1 10.3 3.93 9.8 8.99 8.81 4.13 9.66 4.75 9.73 6.42 10.1 7.12 12.2 12.1 12.2 12.2 12.6 12.7 8.17 11.2 12.5 0 5.51 9.88 9.92 10.1 13.5 11.9 0.52 12.5 1.45 10 8.58 10.1 9.11 12 10.8 10.1 12 10.2 7.4 7.24 7.96 9.23 11.3 3.97 3.71 13.1 11.2 12.3 12.8 12.4 10.8 7.61 9.5 11 9.41 7.19 11.9 9.76 5.56 0.9 10.2 7.86 7.97 10.5 4.91 12.5 7.31 8.04 12.5 11.3 7.42 10.7 9.88 11.8 0 8.9 7.81 7.99 12.7 9.93 8.28 9.69 3.27 10.5 10.5 2.01 9.29 6.11 10.2 10.3 9.29 8.6 10.4 10.7 11.5 9.84 9.36 8.46 10.1 9.01 11.9 6.87 9.93 10.8 8.52 10.2 7.25 9.35 11.3 12.7 8.81 10.1 7.69 13.4 10.6 9.97 10.8 10.5 11.2 2.54 10.3 0 1.66 9.91 7.23 11.5 2.29 5.16 7.19 12.6 11 10.9 7.86 5.59 4.61 5.83 6.37 3.85 4.91 11.6 9.62 10.8 10.2 8.03 8.83 11.2 1.45 8.1 9.26 9.21 8.11 9.62 11.3 11 3.85 7.97 9.65 8.9 9.64 8.69 14.1 8.21 6.02 11.5 10.2 6.53 5.71 6.52 7.09 10.6 9.88 9.58 11.7 11.2 9.1 13.4 8.89 8.69 7.6 6 12 7.97 8.79 11.2 9.93 9.57 8.64 7.98 9.22 3.51 8.03 11.3 6.65 10.9 10.4 10.8 3.82 9.94 10.6 12.7 10.9 9.52 6.05 5.59 7.96 8.96 8.44 9.88 10.8 11.1 9.12 0 12.5 5.71 8.17 7 1.2 9.39 2.69 6.72 7.19 11.3 9.46 7.86 7.85 10.3 9.84 5.5 5.75 10.2 11.6 0.52 11.9 8.7 3.45 2.73 0.9 7.56 7.27 1.66 10.1 3.62 11.1 9.21 6.75 10.2 10.2 7.36 14.7 11.1 0.52 9.71 12.3 7.34 14.5 10.2 8.98 5.41 4.66 8.66 9.02 3.89 13.7 7.76 7.39 7.08 4.95 16.1 9.48 14.9 8.7 9.57 8.24 9.98 4.8 8.28 7.56 7.37 0 11.3 12.7 15.2 10.3 10.9 11.8 11 5.97 11.1 7.87 10.9 10.1 10.4 10.3 10.5 8.81 10.1 9.6 7.64 10.6 10.1 10.7 9.27 9.64 12.7 8.32 4.45 10.6 9.82 10.4 9.81 2.29 10.8 6.75 0 9.66 9 10.7 9.08 9.49 10.1 12 11.8 9.24 10.1 6.29 4.53 9.74 7.8 8.91 9.37 9.97 13.6 9.4 0.52 9.75 6.93 10.9 10.6 9.37 11.5 9.57 9.5 8.77 12.1 11.2 10.4 10.2 0 13.7 9.89 10.8 10.2 11.8 12.4 9.84 10.9 8.36 9.43 10.5 7.81 2.16 8.1 5.22 8.41 7.9 8.92 13.3 11.3 11.8 8.8 11 7.6 5.74 3.06 11.1 10.6 6.49 12.4 8.94 10.3 10.1 12.1 10 11.9 11.8 7.71 2.63 10.6 9.87 9.14 9.12 7.26 9.43 6.71 10.9 10.9 11.5 12.7 10.2 10.8 10.6 10.3 10.6 5.14 11.7 10.4 10.1 10.7 7.8 8.57 11.1 7.52 4.61 7.56 11.3 0 9.19 9.62 10.1 3.67 11.1 2.16 10.4 3.81 9.88 10.7 12.6 12.2 12.1 12.3 10.4 9.76 7 7.21 9.11 8.31 2.73 8.71 8.38 11.3 11 8.95 9.59 12.5 0 8.27 11.1 8.24 9.74 9.38 5.1 9.15 11.6 9.93 9.71 8.48 8.87 11.6 7.4 10.4 11.2 9.12 11.1 9.4 11.2 8.25 8.94 8.31 8.1 8.61 13 11.5 13.1 12.2 7.94 9.75 10.4 11.4 2.16 10.3 7.86 8.98 0.52 5.92 9.86 8.01 6.13 10.7 10 6.63 9.57 12 13.4 9.78 5.75 11.8 10.9 6.8 2.73 0.9 7.47 10.1 3.85 8.37 7.09 1.88 8.58 9.58 10.4 5.26 5.9 4.23 9.56 9.12 10.9 0 2.53 9.47 8.22 1.85 4.73 12.2 9.69 3.93 5.6 8.05 3.45 10 10.3 9.05 0.52 8.27 14.9 7.14 6.56 11.2 10.1 11.2 12.7 8.83 11.8 8.6 8.13 2.97 10.6 5.63 2.01 0 0.62 8.56 3.21 9.97 3.51 7.11 9.11 2.53 3.67 12.3 12.5 6.38 2.63 12.6 11.5 4.09 11.1 8.08 10.9 10.6 9.86 10.6 11.4 10.2 10.2 8.6 8.75 12 8.76 5.38 8.13 7.35 9.65 8.51 11.9 7.83 8.81 5.24 6.08 7.36 11.2 7.6 2.01 2.01 12.7 10 0 13.5 8.34 9.66 12.8 10.1 3.14 6.58 9.63 0 5.91 6.24 9.03 4.75 5.26 7.97 8.13 2.41 0.52 0 11 10.2 3.34 11.7 11.9 9.73 8.71 10.9 10.8 1.85 5.69 2.41 3.76 9.37 11.7 10.4 9.64 10.1 7.09 4.71 4.05 5.44 8.42 0.52 3.67 8.8 9.9 1.45 3.27 12.7 1.45 10.6 6.6 5.47 0.52 10.3 9.2 10.5 10.1 6.48 9.04 9.23 8.8 11.6 8.01 10.7 9.8 10.1 9.72 1.51 5.47 2.73 11.6 10.3 11.1 0 9.8 8.87 11.8 10.3 12.7 6.35 7.8 10.9 11 9.22 0.9 11.5 3.89 11.2 3.67 11.9 10.7 8.46 0 9.09 11.7 11.9 10.8 7.88 9.71 11.9 10.3 10.9 11.1 9.7 8.72 10.6 12.8 11.3 12.2 11.8 11.8 5.64 12.1 11.3 7.42 5.1 11.2 12.8 13.1 12.5 9.97 11.4 10.2 8.84 8.54 10.6 9.77 8.36 11.3 4.84 11.3 10.1 11.2 11.1 6.61 0 12.4 6.84 10.4 6.42 11.2 9.2 4.99 9.31 7.94 8.95 11.2 0.9 10.3 9.18 2.01 11.9 7.9 9.34 8.89 9.08 7.12 7.91 6.98 10.9 3.06 0.9 6.04 6.9 3.14 6.65 11.9 8.72 12.6 4.89 8.03 10.4 8.43 7.89 7.26 9.77 5.33 8.79 11.8 9.81 10.9 10.9 11 9.37 10.4 9.76 11.3 9.75 6.7 1.85 8.3 9.88 10.1 8.83 8.56 6.12 11.8 10.1 10.6 9.68 8.62 4.56 10.2 11.2 11.9 7.73 7.11 9.82 10.5 6.85 6.47 7.96 0 4.42 8.6 11.4 8.63 12.2 7.19 9.02 10.2 8.85 4.84 10.2 9.41 8.92 8.21 6.79 8.44 11.1 10.2 10.1 9.09 7.15 9.8 3.21 8.14 9.04 9.3 1.2 9.72 2.29 7.79 7.31 12.3 0.9 10.7 8.45 3.06 12.5 8.37 9.18 3.85 5.6 7.61 5.9 0.9 7.42 9.66 9.89 4.53 5.93 0 7.25 8.38 7.98 7.33 8.31 10.1 10 5.55 8.37 10.3 8.25 11.1 9.88 8.49 6.66 2.91 11.4 6.11 4.73 11.4 11 6.03 8.92 2.73 11.3 7.3 9.62 6.41 2.63 9.82 12.9 10.3 0 7.43 8.99 8.69 8.68 9.8 9.68 11.6 9.3 7.71 7.99 6.91 4.93 8.37 9.32 6.71 10.7 9.46 8.32 6.9 8.86 4.27 8.88 10.2 10.5 2.82 14 11.1 3.45 8.65 7.95 7.39 10.6 6.11 9.36 10 10 7.69 5.94 10.4 6.42 3.4 5.97 9.56 10.2 6.66 8.68 6.85 3.81 7.41 3.71 8.55 8.03 9.61 0 1.66 9.48 11.2 7.44 9.41 10.5 8.37 8.71 10.8 4.42 11.2 6.14 6.39 6.01 6.16 8.51 9.55 9.18 9.17 3.57 0 4.69 8.86 11.6 9.73 8.74 8.26 4.33 9.09 9.54 10 5.41 7.85 0.52 7.66 2.5 11.4 9.13 7.72 6.93 8.7 8.59 7.67 9.66 11.3 8.62 10.1 8.08 9.01 10 9.78 11.4 8.54 5.98 9.07 6.81 11.3 9.89 7.19 13.2 11.8 6.91 11.2 8.21 6.16 10.4 5.87 1.45 7.63 9.62 2.01 6.47 9.55 10.6 10.4 3.89 8.09 10.4 11.2 10.1 6.99 6.53 6.62 7.5 11.2 9.9 1.2 11.9 11.5 11.7 8.75 12.2 10.2 11.9 11.7 6.39 9.07 9.16 0 10.3 9.95 10.5 11.2 9.82 10.5 6.89 11.9 0 11.7 7.68 5.58 0.9 5.7 4.71 8.64 7.8 3.29 7.17 7.14 9.67 6.61 7.07 9.14 11.4 0 10.9 0 7.15 8.41 0.9 3.97 10 6.03 0.9 1.66 5.35 9.47 4.71 0 6.89 3.77 8.38 0.52 0 6.24 5.26 7.01 5.9 9.44 8.01 8.68 3.4 8.18 8.58 2.82 10.5 8.98 10.7 8.31 8.52 1.2 11.2 5.93 6.29 8.69 0.52 5.43 6.43 4.39 7.86 0 7.62 4.09 6.07 4.68 10.8 0.9 8.02 7.52 4.44 5.77 8.38 9.03 6.81 6.71 9.9 9.16 9.48 8.68 11.1 5.27 3.34 0.9 10.6 0.52 8.64 12 8.54 7.8 4.91 10.5 9.51 7.73 3.81 8.19 8.64 9.04 9.13 8.37 8.9 10.6 9.13 5.01 0 4.39 6.45 8.53 8.08 8.89 8.37 1.45 1.66 8.38 7.45 9.2 11.8 3.56 0.52 1.85 10.1 10.4 13 4.82 8.69 8.62 9.89 10.2 6.33 9.29 5.19 3.56 9.74 0 1.2 3.85 6.08 6.5 9.26 9.52 4.29 8.35 5.01 3.62 4.42 11.1 8.78 0 7.95 9.8 2.16 6.92 7.24 3.81 0.52 7.8 6.94 9.53 8.39 10.8 9.3 6.91 9.61 8.06 10.7 7.18 10.6 10.1 2.82 6.15 6.29 8.42 10.1 7.96 7.37 7.07 9.25 2.16 10.6 5.19 0.9 0.52 9.04 2.99 10.3 4.23 4.58 2.73 4.16 2.41 10.2 0 2.01 8.25 10 6.2 9.24 8.81 1.2 4.29 7.07 4.56 9.81 9.1 1.66 8.67 8.09 2.63 0 10.1 9.61 11.3 7.36 7.02 11.5 7.77 2.99 6.99 4.45 3.81 2.63 8.92 8.91 0 10.9 5.78 5.34 6.16 13 10.9 11.5 0 6.44 3.21 9.26 10.5 6.61 5.7 11.8 0.52 6.52 9.07 4.36 7.58 10.1 7.2 9.89 0 6.74 0 8.77 2.53 8.71 9.5 6.89 1.21 8.16 10.3 5.03 0.9 4.97 6.92 2.41 9.45 7.97 8.8 10.1 7.18 8.61 0.52 6.91 8.77 9.2 13.6 6.64 0.52 4.2 4.13 7.87 0 9.32 10.3 8.4 7.26 9.46 6.42 6.11 10.3 9.89 11.9 11.7 9.37 6.92 0.52 4.36 7.28 9.1 1.2 3.34 6.79 7.73 7.97 11.2 2.41 5.01 11.3 2.29 0.9 8.1 12.2 12.8 10.4 9.33 5.29 6.87 13 1.45 9.07 9.14 1.85 3.21 8.12 9.61 9.07 8.37 10.8 2.53 0 5.03 3.27 2.41 8.48 2.53 7.25 5.1 9.03 7.5 2.29 6.57 9.87 7.87 4.71 11.2 8.92 9.25 1.85 8.99 8.16 5.22 7.46 7.22 8.07 9.44 2.63 7.73 2.01 9.52 0.9 8.06 5.3 7.97 8.68 3.56 8.28 6.92 6.14 2.63 7.06 9.38 3.34 4.01 8.26 4.33 7.15 8.97 9.68 1.85 10.1 0.61 8.49 0 7.22 8.19 7.31 4.66 4.56 12.1 6.11 0 1.45 9.99 9.98 6.68 4.29 7.36 9.04 7.54 10.2 8.98 4.29 8.49 7.73 6.97 10.4 10.9 3.85 2.63 8.44 9.17 9.37 2.53 0.52 5.34 10.2 9.1 4.5 1.2 0 4.33 0 7.32 8.83 7.89 10.2 3.06 9.05 6.92 1.66 9.85 9.25 0 7.82 8.61 5.77 3.56 13.5 7.08 7.44 5.1 9.88 0.9 9.6 8.4 1.45 5.56 4.13 6.26 10.2 7.52 9.49 9.15 0.9 6.39 2.63 5.16 2.01 8.1 5.88 6.21 9.12 5.41 10.1 1.2 0 8.94 2.41 0 3.62 4.47 7.05 6.97 9.5 8.17 11.1 4.09 10.7 11.7 4.78 10.6 11 5.62 6.8 5.43 8.91 4.13 5.3 6.04 8.27 13 8.91 4.6 10.7 6.25 1.85 0.9 3.85 8.95 11.1 8.55 8.2 8.78 0 2.91 0.9 0.52 0 0.9 12.4 1.45 5.96 0 4.65 7.06 8.24 1.66 8.86 0 0.9 10.6 9.08 4.09 7.21 4.66 2.18 10.8 11.5 3.45 0.9 0 9.53 14.7 6.17 8.02 1.2 13.7 10.1 2.29 0.52 0 7.75 4.2 11.8 2.73 8.35 7.93 14.1 2.29 9.36 13.2 1.2 6.85 1.85 9.01 10.4 8.94 8.71 2.29 8.5 1.66 6.51 7.23 13.2 0.9 6.57 4.39 0.9 0.52 6.25 2.29 4.66 10 9.74 2.63 8.43 1.2 1.2 11.6 8.6 12 7.66 8.67 12.1 0.52 4.09 12.8 8.47 12.9 9.39 3.14 12.4 7.55 14.4 8.11 6.51 5.98 1.66 8.66 7.7 8.24 9.74 10.2 8.27 8.94 3.56 5.41 5.12 6.05 7.29 6.27 4.42 5.97 0.52 7.08 4.33 10.9 7.55 2.99 4.63 4.5 2.63 12.8 6.58 5.5 6.78 6.99 6.2 8.97 7.26 1.2 8.1 6.82 6.33 6.74 8.15 3.81 8.09 11.8 0 1.2 15.7 1.45 8.04 5.58 8.13 3.21 7.32 2.01 1.2 0 0.52 7.39 1.45 5.96 7.52 6.78 11.3 11.8 5.29 3.45 8.44 11.4 1.66 7.82 10.2 10.8 13.4 9.73 6.5 0 10.6 11.2 0 7.99 1.2 1.2 7.6 9.63 7.2 9.43 7.67 7.67 0 1.47 5.84 11.5 7.59 8.46 2.29 4.66 0.9 8.86 8.05 5.91 12.6 8.25 7.83 9.32 7.59 10.6 2.91 7.32 4.36 12 7.33 0.9 7.09 6.22 5.08 9.24 5.68 6.7 10.3 8.5 11.2 8.65 1.66 1.45 8.57 2.29 11.5 3.81 7.02 8.14 9.96 10.3 9.92 8.09 7.12 7.19 8.51 10 0.9 8.44 11.7 10.1 1.45 6.41 9.37 5.43 7.67 11.2 4.45 11.1 8.48 6.3 11.4 11.7 11.3 8.74 1.49 5.93 8.68 11 8.47 8.21 0.52 9.15 2.01 9.19 2.53 0.9 7.27 0.9 8.59 7.21 0.52 10.2 2.41 3.56 7.06 0.9 0.9 13.2 0 10 9.24 6.78 3.51 5.32 5.81 9.12 2.99 7.29 7.2 10.8 9.37 8.3 9.01 7.28 8.02 2.01 3.76 2.99 7.49 0 2.01 10.9 6.63 0.52 10.1 0.52 2.73 5.01 4.66 7.17 12.9 8.96 0 4.65 6.34 7.97 6.36 5.06 9.68 7.74 6.61 6.93 10.5 9.56 2.29 11.1 9.48 8.95 0.52 8.55 7.04 0.52 6.66 1.85 7.79 7.24 10.4 10.7 5.45 3.21 2.16 9.99 8.66 8.31 11.7 10.8 5.84 10.8 0.9 10.3 8.81 8.31 3.21 9.31 8.53 5.68 4.8 7.44 13.9 2.29 1.2 9.51 10.9 2.73 0 5.76 7.03 2.01 0 8.73 4.43 4.83 2.53 8.67 6.77 6.29 3.27 7.17 7.41 4.01 7.86 9.65 7.98 8.82 7.3 0 9.17 8.72 3.81 10.5 9.58 3.28 4.78 7.72 6.6 6.43 0.9 11.7 1.45 9.89 0 9.79 2.99 6.07 8.84 0.52 1.66 11.7 9.3 3.06 4.87 0 3.45 0 2.73 1.2 7.22 9.34 0 8.43 10.2 8.19 11.6 8.87 10.2 12.3 6.17 2.99 10.7 11 7.35 8.6 7.97 9.03 1.66 4.13 7.9 7.14 4.17 6.88 5.37 5.63 7.61 8.64 7.65 6.45 0 11.8 8.89 5.69 6.84 10 8.14 6.9 7.73 2.53 6.2 6.76 6.55 2.29 2.29 10.5 7.27 8.92 8.56 10.6 3.14 1.45 8.76 1.85 10.9 12.8 12 2.63 6.32 3.93 8.42 4.75 8.02 8.3 11.8 8.31 8.15 13.3 3.06 5.48 4.99 11.7 1.85 6.2 12.6 4.42 1.85 6.79 4.01 10.7 0 6.6 6.91 8.5 9.22 10.2 7.79 4.05 8 3.55 0.52 7.16 10.4 0 9.09 1.45 2.63 11.6 8.56 6.25 7.74 0.9 1.45 8.42 9.4 5.75 0 8.72 1.45 3.27 1.2 8.21 0 12.6 3.85 5.01 9.6 2.91 11.7 6.2 6.81 4.01 0.52 1.66 8.9 4.63 11 8.62 5.93 1.2 5.44 0.9 2.29 7.57 0 0.52 9.3 7.31 1.2 3.51 0 5.3 0.52 9.07 0.9 8.22 8.9 6.08 9.24 3.06 8.22 12.5 5.26 12.4 3.21 8.49 7.54 7.68 10.1 7.12 9.79 4.82 2.91 7.16 3.14 7.24 10.5 14.4 1.45 15.3 9.67 6.23 7.08 2.63 1.2 0 1.85 5.19 7.07 5.73 9.3 9.95 7.97 1.66 7.22 8.86 5.34 7.98 7.33 5.47 4.97 0 9.32 4.5 9.09 1.45 5.24 3.51 2.01 2.01 7.76 8.13 6.52 11.3 3.67 5.27 1.66 6.2 7.87 4.73 0 5.1 4.56 2.29 9.21 6.45 2.91 5.24 3.14 1.66 0 10.3 6.28 1.2 7.41 2.33 8.81 2.73 8.74 9.37 3.67 3.14 8.52 6.54 0 11 0 0.9 7.58 9.95 10.3 2.41 0.52 9.6 4.48 6.44 9.98 3.51 11.8 9.22 0.54 8.38 4.42 3.97 0.52 8.42 1.66 5.34 7.53 5.1 8.68 7.32 8 1.66 7.03 7.84 4.84 3.56 13.2 11.4 4.82 8.04 2.16 5.24 12.9 9.34 9.58 1.2 2.73 12.7 0 3.51 12.6 0 0 1.85 1.2 2.16 0.9 8.84 1.66 0.52 7.75 8.68 5.83 7.17 10.9 2.01 5.14 5.21 8.23 6.85 6.73 6.75 1.2 9.76 8.63 8.29 2.29 3.21 3.67 8.53 7.76 11.4 3.76 8.61 5.86 2.41 3.81 7.77 6.08 15.2 7.33 14.8 7.29 0.9 2.16 6.14 11.4 6.11 5.77 6.02 0 0.52 8.91 6.1 9.01 8.42 5.02 2.73 6.32 0.52 0 3.2 10.1 3.71 5.03 8.31 5.95 11.8 0 2.41 0.52 10.7 2.29 6.88 6.99 0 6.14 7.2 8.2 11.1 6.6 1.2 3.06 0 3.85 0 7.94 3.34 9.34 9.78 8.07 8.75 2.82 10.4 8.58 9.52 8.51 0 3.06 7.64 7.17 1.2 10.6 7.43 6.1 2.01 11.5 4.13 8.56 6.03 11.2 6.62 1.2 2.63 0 6.32 8.67 9.6 7.68 7.14 7.93 0 7.96 2.73 2.91 0.52 4.89 9.19 7.39 2.01 4.66 6.33 7.7 2.73 8.15 12 7.58 7.2 7.78 10.6 7.23 7.69 10.7 7.94 4.2 8.83 11.2 7.89 6.11 8.19 6.85 0 1.45 3.21 11.6 6.54 5.78 6.02 11.1 1.2 12.7 10.5 10.7 7.87 7.16 4.29 7.94 7.18 0.9 7.55 1.2 0.52 7.45 2.91 1.85 7.64 7.14 6.07 0 7.54 1.66 0 9.41 11.7 0 2.29 6.72 0 6.8 5.27 8.39 8.58 5.56 0 3.89 2.41 8.71 2.16 5.8 9.94 0 1.85 11.2 5.29 3.21 8.12 1.85 0.52 10.5 6.49 7.64 8.77 9.18 8.17 6.99 4.89 0 11 5.05 8.88 8.83 8.74 3.85 1.66 10.9 1.66 2.99 0 2.73 10.4 1.85 9.61 0.52 0.9 1.2 6.5 2.73 7.1 4.58 3.89 2.01 8.57 4.39 7.55 0.52 8.92 2.91 9.37 1.45 5.24 2.82 6.04 5.08 8.08 5.48 4.36 2.01 5.3 8.11 0 8.15 2.82 2.29 0.9 4.2 0.52 1.45 0.9 1.43 2.29 10.5 7.61 9 4.84 8.48 0.52 0 5.12 5.54 10.8 10.4 2.53 0.52 11.1 11.5 0 8.34 2.82 2.41 0 0 11 6.35 4.58 3.45 11.3 9.92 0 5.05 11.7 4.8 12.2 6.39 10.1 5.32 6.04 5.55 8.07 9.12 10.2 10.9 5.37 9 6.22 6.19 6.81 2.16 3.4 10 11 2.63 8.84 4.53 2.16 10.4 2.82 5.72 11.1 1.85 1.2 9.37 4.97 3.93 6.52 2.82 6.79 11.4 9.46 2.29 11.7 7.04 0 11.2 6.2 10.4 8.13 0 2.53 7.68 2.53 3.4 5.02 3.71 5.64 11.4 7.71 8.16 5.99 0.9 7.44 3.56 4.44 4.26 6.95 10.7 5.32 0 12.2 7.44 7.21 6.57 4.73 3.4 7.76 4.84 5.8 1.45 8.48 4.68 5.41 4.78 1.85 10.3 0 4.66 2.41 9.19 9.11 11.7 11.9 6.16 11.4 8.29 7.02 2.41 8.28 10.1 3.51 2.99 6.97 9.36 8.74 12.1 10.9 0 9.32 3.06 11.9 5.12 9.94 1.85 3.21 0 9.7 2.01 10.4 1.25 3.34 4.13 0 10.5 0.9 8.45 11.6 12.4 6.17 2.91 2.63 3.4 9.65 5.12 11.2 8.33 12.6 13.9 0 7.43 10.9 3.45 1.66 8.66 1.66 10.4 7.16 7.47 12.4 12.1 0.52 9.33 9.44 7.85 0 7.44 5.89 11.8 10.4 5.06 8.92 7.93 6.36 7 6.75 9.8 8.28 3.06 9.57 8.73 9.01 2.82 2.91 0.52 0.9 8.82 3.27 8.78 0.52 4.13 6.58 7.43 3.34 6.7 0.9 7.86 9.01 1.85 1.2 6.53 6.92 0 4.09 10.8 8.59 2.01 8.79 5.1 1.85 2.41 9.04 8.9 6.07 1.45 5.06 1.66 3.21 0 0.52 2.01 6.84 1.2 2.63 8.88 9.06 5.24 9.89 5.44 0 9.81 3.27 7.19 0.9 4.87 0 11.7 3.14 6.96 8.37 2.01 10 2.73 10.2 5.35 3.4 9.78 0.9 4.93 12.6 5.16 11.2 1.45 9.97 8.58 9.98 10.8 13.4 8.76 8.3 7.21 10.3 12.2 11.2 12.5 7.56 6.79 1.2 7.66 11.5 9.92 10.7 9.72 0.52 9.45 8.72 11.6 7.14 4.95 6.13 5.84 8.27 6.92 3.97 6.62 7.4 8.88 9.09 7.86 1.2 1.2 5.56 2.63 4.01 8.66 2.99 6.91 9.92 12.9 8.75 2.01 10.2 11.2 11.6 11.3 5.99 7.25 8.55 10.4 7.55 2.91 6.46 7.5 9.77 5.29 1.45 9.05 9.49 5.1 9.47 9.55 8.12 0.52 10.1 1.66 0.52 9.19 13.1 6.72 2.29 11.7 14 11.1 11.8 2.29 10.5 15.5 7.31 2.29 8.3 13.4 5.44 9.08 5.08 14.2 7.47 10.5 8.73 11.5 13.1 12.8 0.52 7.99 6.53 10.5 11.6 9.57 10.8 10.2 10.6 8.33 4.33 7.5 9.04 11.1 4.73 8.52 8.84 5.58 8.32 12.1 0 14.7 11.1 11.2 12.7 9.93 5.21 10 6.69 7.68 7.49 9.78 9.62 11.9 4.13 7.1 11.8 15.9 1.85 1.66 9.73 9.89 7.21 7.16 6.26 10.9 13.4 13.8 15.8 9.36 11.9 10.6 8.79 6.06 13.2 10.7 9.05 1.45 8.65 11.3 8.48 9.59 9.16 10.3 12.8 7.49 8.19 6.64 11.1 7.77 0.52 3.56 8.33 5.7 7.55 6.37 5.46 8.14 2.16 6.85 10.3 8.3 0.52 9.58 8.84 7.93 11.7 1.2 7.55 10.3 8.7 0.9 9.86 6.52 8.32 5.54 11.8 2.29 5.03 13.3 2.99 0.9 6.04 1.28 9.13 4.39 3.56 5.56 7.74 9.01 14.3 5.92 8.47 8.62 3.81 6.35 10.3 11.8 7.19 12.6 9.91 10.2 11 13.6 13.9 12.1 13.9 0.52 8.14 0 13.6 6.45 4.68 10.6 0 0.9 3.85 7.29 0.9 10.6 2.41 3.62 4.13 9.13 5.74 6.39 2.29 0 9.04 6.33 7.18 7.39 11.9 8.95 0 8.83 10.5 9.53 10.8 0.52 0 9.8 7.8 3.56 10.3 10.8 2.63 2.63 2.63 0.9 10.5 10.1 5.09 9.52 8.21 0.52 7.5 13.3 7.21 3.27 10.1 2.82 0.52 0 9.74 7.22 5.44 6.49 8.15 2.73 9.07 5.99 9.48 5.03 6.89 7.98 7.14 6.94 7.07 6.4 7.24 11.2 3.89 10.3 7.78 4.01 10.2 10.7 3.81 8.35 3.27 9.22 7.43 9.99 2.73 13.5 5.81 5.91 9.64 8.13 9.33 5.03 9.3 8.68 2.29 11.2 3.4 10.9 2.82 10.1 4.36 5.6 7.79 7.22 10.4 4.16 0 9.29 9.56 7.38 1.85 12.6 8.12 0.52 1.45 11.4 0.9 8.98 7.86 8.5 6.87 11.3 7.48 4.61 5.38 6.77 7.53 3.71 9.95 7.31 1.45 15.8 1.66 2.63 3.71 1.2 0 8.74 5.47 6.6 7.63 12.4 10.2 9.69 9.89 8.3 7.65 14.3 8.99 0.9 2.41 0.9 8.49 8.65 5.14 7.38 10.1 8.32 8.65 10.6 5.4 12.3 9.28 9.35 7.29 5.38 9.67 9.17 9.48 1.45 9.13 11.7 12.7 9.85 4.63 10.6 6.57 3.76 8.58 0 9.91 11.3 8.68 8.21 11.8 5.14 8.71 7.37 7.28 7.79 8.32 7.88 8.9 9.43 0.9 5.8 8.1 11.3 6.94 10 9.54 2.01 8.41 11.3 2.41 3.14 10.5 10.6 7.99 12 11.8 4.8 7.33 10.4 7.08 10.2 8.12 11.2 8.08 11.3 10.9 6.75 11.8 10.9 4.01 3.81 9.85 3.67 11 1.66 12 10.6 10.6 10.9 8.52 11.6 14 4.78 3.14 7.93 9.92 8.63 1.45 9.4 8.89 5.77 6.79 7.03 12.4 0.52 12.5 12.4 11.5 0.9 7.37 11.4 0.52 4.47 10.2 7.12 8.39 9.16 0.52 8.87 8.51 11.5 4.63 13.9 4.87 0.52 5.9 0.9 4.5 8.65 7.31 8.26 3.97 0 11.3 3.45 11.3 8.27 8.1 8.52 9.74 10.2 10.2 10.1 11.4 8.97 10.9 9.76 5.64 7.3 9.07 9.12 8.87 10.1 6.54 10.9 8.16 4.05 3.89 12.6 8.94 12 3.06 4.26 8.93 12 3.68 7.48 4.73 11.7 12.9 4.97 5.24 8.97 6.57 10.3 8.7 6.37 6.82 7.16 9.3 7.6 9.07 4.78 9.58 8.33 0.52 8.24 11 8.24 11.7 9.45 2.53 9.83 4.23 7.31 8.45 6.04 8.73 2.41 3.14 7.91 6.55 2.01 10.2 0.52 10.3 4.89 10.4 3.06 2.01 2.63 3.14 8.14 2.16 3.51 2.82 9.26 5.76 1.2 1.2 4.53 7.15 4.8 6.72 0.52 6.53 4.39 12.3 5.5 6.68 4.68 3.27 9.03 10.1 2.41 4.58 7.27 8.71 1.85 11.2 8.55 5.63 8.28 9.74 5.17 9.45 4.58 10.8 5.73 9.18 6.42 7.88 6.74 4.53 7.54 9.7 2.29 1.85 1.45 3.21 5.12 8.02 0.9 5.53 6.92 1.2 10.6 1.2 8.67 10.1 4.16 8.28 6.18 7.89 5.33 9.22 1.85 2.41 8.92 8.61 0.52 9.86 8.48 6.94 8.26 0.52 8.79 2.63 7.77 3.4 8.2 4.33 10.1 7.38 10.2 8.86 8.75 1.2 10.8 9.4 7.63 8 2.53 4.84 7.64 12.1 6.21 8.79 6.74 1.2 7.18 6.85 2.71 4.66 12.4 9.09 4.87 0 0 9.45 0.9 4.71 9.46 0 0 0.52 0.52 3.4 1.85 8.25 4.93 3.71 10.3 8.53 9.43 1.2 9.66 8.89 10.3 9.29 11.4 6.93 6.47 8.45 5.33 2.73 2.29 5.12 2.29 7.39 2.82 1.45 2.01 15.1 8.82 11.8 0.52 9.26 6.47 6.7 10.5 2.01 11.4 11.6 9.26 10.3 8.26 9.06 4.87 12.2 9.88 6.87 7.44 11.2 2.82 6.63 7.39 10.1 6.93 11.6 5.54 11.7 8.06 13.9 8.7 9.86 11 11.9 9.41 3.89 6.61 7.99 5.96 6.83 9.45 10.2 11.6 7.55 1.8 2.16 8.69 7.28 8.03 9.34 6.8 9.74 5.99 8.24 1.66 10.5 7.94 9.86 9.86 10.5 9.49 8.34 9.98 0 9.16 6.73 10.3 11.4 0 11.7 8.83 4.05 4.56 8.31 9.57 9.33 9.18 12.6 9.69 2.89 8.31 13.1 9.25 7.82 10 7.57 9.35 10.5 9.59 7.18 8.96 10.6 0 9.86 8.87 5.03 0 7.35 3.89 8.39 8.53 12.3 10.5 10.6 10.8 9.24 8.09 9.48 11.5 6.44 2.73 10.6 0.52 9.07 11.5 9.43 8.18 7.87 7.88 9.91 6.99 10 9.38 11 11.3 8.18 9.72 8.29 11.3 10.6 10.8 0.52 8 12.7 5.81 10.1 0.9 9.52 8.67 8.25 9.18 3.27 10.1 8.4 3.14 11.1 3.45 4.01 11.1 7.49 8.06 6.24 10.5 11.7 1.2 1.85 0 10 11.7 10.4 8.52 6.66 2.63 0.9 4.53 11.4 9.16 9.27 10.1 11.1 2.53 8.19 1.2 10.1 10.7 11.5 9.59 10 9.8 11.8 0 12.1 12.4 9.97 6.51 2.41 0.52 10.9 9.81 9.22 8.43 9.84 8.99 8.92 7.36 8.54 7.86 10.5 10.4 9.09 10.7 4.82 7.19 9 10 11 10.3 8.96 9.86 10.7 9.92 6.49 8.52 4.47 10.1 11.5 10 10.3 11.1 10.6 2.73 9.78 10.2 11.7 0.9 8.28 11.1 10.1 10.1 8.75 8.74 8.7 9.09 10.8 10.6 6.14 9.41 2.63 10.1 3.76 10.2 7.49 8.93 10.1 9.84 8.08 8.18 4.99 10.3 10.4 9.07 4.36 9.42 4.68 10.3 9.05 5.14 10.5 8.63 8.77 7.96 7.59 9.13 10.5 7.08 3.76 7.51 8.82 9.89 9.67 3.45 9.77 6.55 10.5 10.1 6.75 8.68 10.8 6.88 10.1 9.02 9.59 12.2 9.84 11.6 8.92 9.31 9.71 0.52 3.21 5.51 1.45 10.7 9.89 10.8 10 8.25 8.87 9.67 14.8 10.8 9.18 9.75 9.59 10.8 9.84 9.18 10.8 10.5 8.69 14.4 11.8 7.67 8.94 10.6 9.62 9.57 10.6 8.34 6.25 7.58 9.93 9.06 9.75 10.7 10.6 11.3 10.1 9.76 12 11.3 11.8 9.78 13.1 5.6 9.11 12.2 10.8 11.3 9.96 10.8 6.79 10.7 11.7 2.16 11.2 6.81 1.66 8.53 9.7 9.42 9.78 9.63 11.1 12 9.28 0.52 11.6 9.68 3.21 8.42 8.76 11.1 11.7 9.59 4.91 7.07 7.7 9.25 10.3 7.52 8.06 10.3 8.98 6.28 3.89 9.27 5.98 9.05 9.75 0.9 9.9 11.1 3.45 9.31 8.58 9.4 9.97 3.81 7.27 9.36 9.6 8.55 9.72 9.81 8.37 5.21 8.1 8.43 5.12 11.4 11.4 10.7 9.37 8.2 2.73 7.22 10.9 10 9.19 8.17 9.28 11.8 10.1 4.78 3.21 9.02 5.1 3.85 10 8.57 8.27 5.64 9.94 9.75 10.1 9.73 12.8 2.01 10.4 9.85 1.66 9.61 9.37 1.45 8.45 10.6 7.05 9.89 9.48 9.27 7.73 11.9 6.43 8.49 0 9.79 9.41 9.67 7.46 5.69 9.78 9.88 11.8 10.3 7.88 4.68 10 8.74 9.14 7.9 8.69 9.54 9.74 0.52 8.46 11.7 7.41 9.6 10.7 4.61 13.4 11 10.8 11.5 11.3 8.55 8.5 8.19 10.1 0.9 10.5 9.29 8.29 9.09 11.3 6.63 12.4 9.03 11 10.8 6.94 7.42 8.88 8.19 9.84 8.88 11 9.06 9.95 9.75 11.3 10.8 9.92 10.2 9.92 8.17 11.6 10.3 9.21 9.75 8.79 8.61 11.1 10.9 8.61 10.1 9.88 9.76 11.5 7.83 3.76 9.5 8.09 8.76 11.2 1.85 0 4.99 7.03 0 9.49 11.7 7.39 11 9.49 7.26 12 10.1 0.9 8.95 7.73 8.83 11.9 9.43 7.62 11.6 11.8 12.3 9.32 8.55 6.89 4.09 2.53 7.52 5.51 11.2 7.24 8.56 3.76 9.95 10.2 11.3 8.7 11.5 4.47 10.7 11.1 10.1 0.52 10.9 11.3 7.74 9.23 3.27 8.15 4.75 1.66 3.51 12.6 7 5.49 9.36 1.66 9.86 7.96 8.3 8.25 10.2 9.27 11.4 9.79 10.5 9.25 10.2 11.2 10.2 9.18 5.64 3.27 13.5 7.83 9.82 12.7 9.86 9.64 7.75 9.41 14.4 9.14 8.05 0 6.88 9.79 6.75 1.66 12.2 9.68 5.48 11 0.52 8.77 0.9 1.2 7.47 9.93 11.7 9.96 4.29 2.01 3.67 8.13 8.09 8.58 11.5 9.89 11.3 11.2 3.51 0.9 9.28 9.18 7.66 10.1 1.2 5.81 6.15 5.1 12.1 9.64 8.58 2.73 11.6 11 9.22 8.99 12.5 7.97 7.39 9.41 10.1 8.2 8.3 6.59 10 8.63 7.39 7.19 12.4 7.39 10.4 11.2 9.26 11.2 8.84 7.15 11.6 8.96 10.3 10.2 0.9 0 3.34 3.62 11.1 5.65 10.8 10.8 2.53 9.69 4.26 10.1 6.98 10.2 12.6 11.2 10.7 9.17 8.86 14.4 12.8 9.11 9.12 8.5 7.82 10.9 10.5 9.56 7.58 10.4 9.66 6.88 5.74 3.56 10.6 9.3 10.2 11.1 1.2 8.53 9.76 11.8 9.94 8.29 11.3 8.55 0.9 9.22 8.81 1.45 12.3 9.66 8.01 11.2 10.5 11.5 10.8 0 6.27 7.52 6.55 8.13 8.64 9.69 11 10.8 5.19 7.91 9.99 10.6 6.67 9.22 10.9 9.76 10.6 5.4 6.08 4.26 7.39 3.51 7.22 2.01 9.12 0.9 2.82 1.85 6.44 8.76 5.82 5.69 7.95 10.2 7.57 0.52 8.81 10.3 9.76 2.91 7.06 5.92 2.82 14.7 10 11.2 0.9 14.6 8.54 9.99 12.4 9.05 9.89 9.45 6.94 0.52 6.47 9.2 0.52 4.88 8.07 5.8 0 7.84 0.52 2.16 6.22 11.6 9.5 0 2.94 1.85 9.08 7.34 8.76 5.74 9.35 6.84 8.42 7.85 5.75 3.21 13.6 6.94 1.2 9.83 7.51 6.98 8.91 7.42 7.3 0.52 11 10.1 7.7 7.7 6.45 3.62 5.37 7.77 0 7.32 12.1 0 0.9 8.61 1.2 0.52 8.02 8.71 6.47 5.81 2.99 2.73 3.85 8.23 5.62 9.39 9.48 9.62 7.47 2.16 12.8 0 1.45 11.3 2.01 8.69 6.6 8.54 8.59 1.66 3.42 5.97 5.44 0 2.16 9.14 8.31 0 6.28 2.99 7.96 0.52 8.86 3.89 6.79 4.75 1.66 10 0 7.48 4.29 9.83 9.26 7.16 7.19 4.13 7.44 5.78 7.95 9.3 4.53 0.52 2.53 6.54 5.6 8.3 1.2 8.02 1.2 5.56 2.01 7.84 9.54 3.89 9.26 2.82 7.53 0.52 7.9 6.53 0.9 6.91 0.52 0.9 0.9 1.2 4.47 2.16 6.95 5.24 2.73 9.32 2.73 1.66 6.56 6.54 4.61 8.96 6.29 8.48 3.27 3.21 2.63 1.2 6.83 4.82 0 0 1.2 11.1 9.2 0 6.29 6.39 4.16 9.95 9.35 8.99 1.45 8.21 11.2 8.22 5.59 9.35 5.82 2.41 6.41 5.1 2.53 11.3 10.8 0 9.73 4.42 9.8 7.97 11 12.9 5.99 3.97 5.29 3.06 10.8 10.1 8.46 5.86 6.1 0.9 9.85 10.8 11.2 3.62 8.2 10.3 10.4 8.3 9.97 0.52 12.9 10.7 6.53 10.6 11.6 8.43 0 11 7 5.78 10.3 6.52 10.7 7.48 6.19 8 8.64 10.1 10.9 8.37 9.89 5.47 8.66 4.39 7.19 9.38 11.2 4.99 11.1 4.05 7.57 3.21 8.1 10.7 11.3 9.52 13.6 8.68 9.41 0 10 10.3 9.16 8.22 9.19 8.26 7.46 11.9 3.81 8.65 7.07 7.31 9.14 10.2 7.73 0.9 11.5 6.65 7.74 10.2 8.93 8.97 9.12 8.72 10.3 10.4 7.78 11.6 7.96 9.78 9.23 9.3 11.2 1.66 9.44 11.3 11.9 0.52 7.71 9.51 9.31 3.14 0.52 5.05 10 8.47 5.21 0 9.79 0.52 9.22 0.9 0 3.27 8.35 10.6 6.79 12.4 9.21 7.96 8.31 8.63 10.2 10.3 10.1 10.4 7.99 6.14 11.7 10.1 10.3 9.2 6.72 9.22 6.08 9.97 8.62 8.48 3.71 9.88 10.9 9.76 16.6 9.92 9.2 6.6 6.21 11.8 9.53 10.2 8.43 10.2 5.5 10.1 9.36 11.1 8.23 9.74 4.89 11.7 10.7 10.1 5.44 4.78 10.6 11 7.68 11.2 8.06 9.46 9.15 9.98 8.51 10.8 5.77 8.73 11.3 7.68 9.97 12.2 7.23 8.59 2.91 9.79 2.16 7.47 11.3 9.79 3.14 0.52 4.82 8.67 8.85 9.98 2.01 8.63 7.34 7.32 7.57 3.85 9.14 6.85 7.38 7.41 0 7.74 6.65 9.39 10.1 10.6 10.9 7.67 9.54 7.99 7.96 10.4 11.4 9.62 10.8 1.45 0.52 8.37 10.1 9.56 10.1 10.4 8.86 8.09 1.2 10.8 8.09 11.8 10.4 0 9.45 10.4 10.7 10.4 10.4 8.32 9.05 9.23 8.83 10.6 11.1 13.1 11.1 2.01 7.53 8.43 7.93 9.44 5.81 8.05 4.09 8.79 8.16 3.62 8.41 11.5 12 7.19 6.49 9.05 2.01 10.4 12.1 9.9 6.88 10.9 7.74 8.06 11.2 8.63 10.8 6.65 11.5 0 9.1 1.45 8.39 11.9 0.9 8.14 3.76 9.6 9.7 4.56 2.29 9.65 0 4.46 3.89 9.68 9.87 10.7 7.86 6.6 5.59 4.39 5.83 0.52 6.12 6.13 4.53 9.65 7.59 8.78 2.73 10.6 9 4.16 8.73 9.74 8.29 5.38 9.38 7.76 7.04 9.6 8.72 8.51 11.4 9.09 0.52 5.21 10.1 10.2 2.53 10.3 0 9.42 7.92 8.89 4.99 9.91 8.84 12.8 0.9 11.7 10.5 11.5 9.52 8.56 1.85 9.17 5.32 4.71 9.09 9.73 9.48 9.13 10.7 9.96 4.78 12 8 9.17 7.93 9.74 8.39 1.2 7.25 12 2.91 9 9.27 9.06 10.6 8.93 8.6 9.32 8.56 8.97 11.2 2.73 3.14 0 11.4 1.45 3.39 1.85 10.7 7.69 8.04 9.91 10.5 8.78 0 9.67 2.01 7.66 0.52 11.6 12.6 7.67 3.4 6.49 3.37 5.06 9.32 9.2 10.4 1.45 7.29 7.41 1.45 8.7 5.84 10.4 3.76 7.9 4.13 9.02 8.94 1.66 1.45 9.36 7.62 3.81 6.2 4.82 1.2 13.7 5.05 8.73 7.68 7.89 0.9 5.71 9.35 7.69 10.6 4.05 1.45 12.4 9.41 0.52 7.96 9.55 15 9.93 11.2 9.99 3.93 7.09 10.1 0 6.15 10.3 0.52 8.27 5.05 6.5 9.62 10.6 3.56 11.7 7.37 7.48 11.3 4.78 8.55 0 4.29 9.09 6.98 9.52 10.7 11.8 15.2 2.63 8.46 8.48 10.1 12.1 12.8 10.1 9.4 10.1 8.17 14.3 6.52 8.07 7.24 10.1 2.91 10.8 11.4 8.19 0 2.63 11 9.4 0.52 0 9.75 7.43 10.2 11.1 9.33 9.17 6.99 11 0.52 8.26 3.93 11.7 1.45 7.46 11.2 1.66 8.1 2.99 5.12 8.38 11.1 6.06 7.16 8.14 5.89 1.85 0 5.01 6.56 4.13 4.45 8.56 8.82 1.2 10.1 0.9 9.26 6.77 4.13 11.6 8.95 11.7 8.07 4.01 1.2 10.9 5.01 2.29 2.01 1.45 2.99 0.52 9.73 10.6 5.1 7.16 11.7 1.85 0.9 7.91 9.42 9.77 9.12 3.56 5.43 7.16 12.2 10.9 7.56 9.68 7.98 8.31 9.86 11.5 10.5 8.52 5.01 0.9 9.33 9.92 1.66 0.9 6.89 3.14 7.51 10.3 8.77 8.96 3.89 6.4 9.53 4.87 3.34 9.76 8.61 10.4 5.16 7.85 3.45 9.09 3.34 6.53 9.22 11.4 1.2 9.6 10.4 10.6 8.85 4.09 11.7 10.3 9.52 11.8 11.6 9.07 9.86 10.7 8.35 2.82 3.27 9.06 8.93 9.82 7.96 6.43 9.46 8.67 10.5 4.87 9.05 7.71 11.9 9.57 9.71 2.73 10.7 8.49 8.68 9.96 2.53 11.5 9.73 2.99 0 9.21 12 10.2 5.74 12.8 1.2 13.6 8.26 10.7 6.05 8.43 10.7 12.2 10.1 13.1 11.8 7.5 4.97 10.1 13.4 0.9 2.99 13 12.5 2.45 0.9 7.05 10.9 3.51 0.9 8.77 7.38 4.61 10.6 3.85 3.06 10.9 0 4.89 9.53 11.8 10.5 11.1 11.1 9.93 11.5 10 4.26 16.7 1.59 0.9 11.2 2.01 10.3 12.9 1.2 6.66 0 9.93 9.41 7.12 4.97 0.9 2.53 1.2 5.75 5.99 1.45 7.9 4.58 0.9 8.25 2.16 7.31 10.2 1.85 4.53 6.09 0.9 3.81 3.27 1.85 9.43 11.7 5.56 14.3 11.6 3.76 2.01 3.56 7.71 1.45 8.34 6.06 7.97 9.54 8.05 3.93 6.29 7.95 1.2 5.52 5.63 7.42 5.75 9.28 3.81 6.84 10.1 10.6 0.9 8.35 4.26 3.89 2.82 2.63 2.63 4.16 1.85 9.07 0.52 9.98 5.14 7.75 5.91 8.74 3.23 0 2.62 0 5.51 2.29 3.97 1.85 7.75 0.52 6.04 0.52 2.01 10.2 11.7 8.35 6.22 1.41 0.9 3.4 5.16 0.52 8.85 0 3.93 2.46 9.96 6.1 5.48 0.52 3.22 8.05 7.28 9.4 5.56 5.65 4.47 0.9 1.66 8.63 7.86 0 2.29 4.47 9.21 10.8 3.89 1.2 8.6 7.82 1.2 5.08 6.96 2.99 8.15 5.44 7.58 1.2 9.22 5.85 3.34 0 0.9 6.32 8.11 0 3.21 1.45 9.33 8.88 1.2 9.49 13.6 5.22 6.38 3.62 7.63 3.85 3.67 7.95 2.63 11.6 3.71 1.2 9.92 1.2 9.01 0 4.39 0 4.59 3.45 7.22 7.01 7.66 5.7 8.35 4.93 11.5 5.65 6 4.89 10.6 2.53 3.45 6.6 3.51 1.85 0.52 8.02 2.99 0.9 3.51 1.2 2.73 2.53 7.01 1.66 7.94 3.62 6.82 0.52 4.95 1.2 7.17 0 3.62 0.52 7.55 1.66 7.89 5.14 5.62 2.01 1.2 5.69 8.77 1.45 3.06 0.52 5.16 0.52 3.67 0 7.89 4.42 1.85 7.1 0 4.5 6.57 6.31 0.52 7.99 4.99 11.1 8.32 0 0 2.29 4.72 0 8.09 10.4 7.6 10.7 8.78 0.9 8.05 0.52 5.14 6 4.97 6.9 4.33 8.94 8.73 0 4.91 7.86 8.41 0 4.61 8.78 0 8.56 0.9 6.33 9.38 8.94 5.71 9.16 2.99 7.94 0.9 1.85 7.77 0.9 6.88 4.09 0.9 5.02 5.62 7.03 9.91 3.67 7.81 0.52 10.8 0 0.9 5.08 2.82 6.33 8.09 9 4.82 2.01 10.6 1.2 5.98 9.51 6.71 2.99 9.56 1.66 5.46 4.13 9.86 4.47 3.51 4.71 3.81 1.45 10.5 0 1.2 8.28 5.08 8.55 4.84 4.05 0 4.2 5.24 3.71 2.82 9.4 8.67 4.01 12.9 1.45 7.99 5.76 1.2 2.16 7.26 7.26 7.66 7.37 8.76 3.45 0 6.17 3.06 1.45 1.2 9.04 9.15 10.2 4.2 6.71 7.46 8.36 7.78 2.01 2.29 2.91 5.48 5.86 8.3 7.05 6.89 6.69 7.86 2.29 2.16 9.67 12.1 10.7 9.73 3.06 11.8 6.52 8.3 10.7 8.54 4.75 11.3 6.77 11.2 0 4.66 10.2 8.51 8.45 9.98 8.62 9.32 8.99 14.6 8.22 10 11.2 0 8.04 0.52 10.1 1.45 7.9 6.72 10.8 10.2 10.7 10 9.77 8.81 7.14 6.2 7.72 9.88 6.34 10.9 11.3 10.1 0.52 6.82 9.82 6.85 8.75 10.2 1.66 10.7 9.22 0 3.56 11.2 1.66 10.4 0.52 11.2 2.41 8.57 10.2 6.74 10.2 7.49 9.42 9.09 12.4 4.87 9.17 10.6 9.74 8.14 10.1 10.3 9.21 9.25 9.95 7.53 10.8 10.1 8.61 10.1 8.41 10.6 8.35 0.52 6.2 9.17 11.7 10.4 9.83 9.01 9.19 7.69 9.59 11.2 9.45 9.49 6.81 9.26 0.52 9.05 10.7 10.5 0.52 9.7 10.6 6.39 10.2 0 2.01 10.4 0.9 11.2 3.27 8.85 10 9.06 2.82 0 11.2 13.3 10.3 9.82 13.5 0 11.3 12.8 10.9 11 12.2 11.7 9.36 10.4 6.42 0.52 4.05 4.13 7 2.53 14.5 0.52 2.82 8.6 10.6 6.68 9.27 9.71 7.95 10.3 11.2 9.58 9.88 7.35 8.56 8.98 11.2 11.9 10.6 8.66 2.01 10.9 10.4 8.39 9.5 10.8 1.66 11.4 7.37 3.97 11.3 9.9 3.81 6.42 9.18 11.1 10.9 4.39 10.5 0.9 4.39 4.43 7.06 9.78 1.2 9.52 7.63 6.98 0.52 10.7 9.84 8.6 7.47 1.85 7.07 10.9 12.5 9.51 0 10.1 10.3 8.37 8.23 11.2 11 10.5 7.32 11 0.52 9.94 9.85 10.2 8.45 6.46 8.43 9.4 0 9.32 5.52 9.49 8.74 8.11 8.99 9.22 9.63 10.5 7.57 10.4 11.5 7.69 8.91 12.9 9.38 7.66 2.63 6.68 7.88 0.52 9.41 12 7.1 0.52 0.9 8.84 9.67 7.01 6.55 10.1 1.2 10.5 8.51 11 9.89 0.9 12.4 1.45 9.24 5.68 9.64 10 9.25 10.3 8.16 10.8 8.72 10.2 12.3 8.03 10 11.6 8.43 8.4 9.29 7.52 9.53 6.87 2.16 8.41 7.66 11.9 7.91 0.94 10.8 3.56 10.6 11.6 7.56 4.42 9.63 10.5 9.17 7.13 4.56 11.9 8.68 8.04 2.91 3.14 2.29 16.4 5.27 0 10.1 12.5 7.4 15.1 11.7 14.2 10.6 9.04 10.1 11.8 11.4 9.78 3.45 10.7 4.93 9.15 12.9 6.16 14.7 8.27 7.92 0 0 0 7.63 9.82 0.9 10.4 7.78 8.69 11 11.1 11.8 11.2 4.58 13.6 13.3 11.1 7.72 7.44 10.7 10.8 11.5 7.22 12.9 0 4.05 1.66 10.5 8.2 5.19 2.91 0.9 10.8 0.9 9.38 8.72 8 11.5 5.14 10 12.2 7.75 12.3 9.44 9.02 12.1 4.63 9.53 5.6 12.5 9.51 11.2 12.9 9.79 11.4 10.8 12.2 11.9 10.6 11.6 5.84 8.38 14.8 16.8 15.9 11.2 10.2 12.5 8.67 6.82 13.7 12.3 2.73 12.5 9.63 12.2 7.73 15 14.2 13.2 8.83 5.64 3.97 14.6 13.4 9.57 12.4 5.37 7.69 3.76 7.9 8.95 6.3 9.16 12.2 11.4 10.4 11.2 12.4 9.36 11.6 12.6 12.8 3.62 8.43 10.2 11.8 11.7 8.28 0.52 5.45 9.31 8.23 8.05 4.29 6.37 0 7.41 0 10.7 0 8.51 12.9 9.8 14 12.2 13.3 12.3 12.5 12 11.1 10.8 13.7 0 12.3 13 1.66 6.12 3.21 5.29 5.73 5.48 0.9 3.27 1.45 6.52 4.09 7.21 4.58 2.73 0.52 6.22 3.67 3.45 3.34 2.63 5.17 8.43 2.01 3.06 5.29 6.63 6.08 9.92 6.6 8.48 0.9 9.58 0 5.67 1.2 0 9.84 10 0.52 1.85 3.06 11.2 0.52 4.53 8.63 10.5 7.96 10.2 11.6 0.9 1.85 10.6 11.9 11.4 10.1 11.5 9.99 4.26 7.36 8.11 0 10.7 11.4 7.73 6.71 9.01 10.4 12.6 13.7 11.5 4.29 11.8 11.8 14.9 9.78 8.95 6.47 15 12.8 15 3.89 8.72 14.3 12 15 12.8 5.34 11.1 13.3 8.11 12.2 7.08 3.56 13.6 11.9 11 1.45 0 0 1.2 0.9 0.52 7.62 8.37 15.2 8.87 11.7 10.5 2.29 5.88 0 0.52 2.02 3.89 12.1 1.66 0 2.73 6.43 9.32 12.4 7.37 0 0.52 5.82 1.45 6.63 10.1 7.08 0.52 4.01 6.14 6.19 1.66 0 0.52 4.36 5.77 8.39 10.1 1.45 8.82 6.66 4.29 8.26 10.3 9.03 7.9 10.6 5.43 5.75 7.15 2.16 7.31 8.16 5.77 0.52 7.03 0.52 0.9 8.77 7.41 0.52 5.21 5.27 7.82 3.62 3.21 2.7 1.45 5.83 8.89 6.7 1.66 12 10 8.54 1.2 8.55 7.24 2.73 0.9 0 3.34 9.03 2.99 0 0.9 3.89 9.17 5.59 11.3 0 0.52 3.4 3.4 1.66 5.95 0.52 0 2.41 3.06 6.71 2.01 9.04 6.54 4.26 3.22 0.52 8.08 6.55 3.62 1.2 0 1.2 1.85 6.16 1.85 3.76 7.23 2.63 7.02 6.03 4.36 12.9 4.2 8.95 0.52 9.71 10.9 10.4 10.5 6.71 9.57 0.52 3.81 2.91 11.2 11.4 0.52 6.71 9.97 0.52 8.2 3.27 2.29 9.22 6.47 13.2 7.59 14.3 2.53 2.72 0.9 1.2 6.38 1.66 0.52 0 10.9 0.52 6.42 9.66 5.64 9.49 11.3 2.01 0 5.8 0 2.63 1.45 12.2 5.76 5.26 7.16 0 2.41 7.16 6.1 0.52 5.24 5.01 1.2 1.2 6.36 1.45 10 2.29 8.75 0 0.9 8.8 8.72 5.74 2.41 11.8 2.16 12 1.66 3.62 3.56 8.29 2.01 2.01 3.62 4.01 0.52 1.2 7.09 4.53 5.55 0 4.23 2.53 9.16 2.16 10.3 3.97 2.53 10.5 13.5 1.45 1.45 2.16 0 9.37 3.4 11.6 6.26 7.86 11 4.2 2.16 6.41 9.1 7.31 3.51 8.09 11.7 9.94 0.9 9.59 0 3.21 0.9 10.4 11 1.2 8.12 11.3 4.01 8.28 9.05 4.2 0 13.2 4.99 10.8 8.22 12.2 0.52 11.4 6.36 2.41 0.9 3.76 0 5.62 4.39 7.52 8.66 14.6 7.79 8.47 7.44 5.12 6.39 11.2 1.45 8.51 8.3 0.67 0 7.66 9.38 2.01 2.16 2.16 5.68 3.4 7.42 5.85 0 1.2 9.03 10.9 9.93 12.8 12.6 9.25 10.6 13.6 6.98 5.32 9.16 8.69 6.58 12.3 0.52 10.7 8.47 8.71 7.72 6.04 7.44 13.1 5.65 4.91 9.17 4.01 4.13 3.93 8.76 9.86 10.2 7.32 2.63 3.34 8 9.18 11.6 0 8.55 12.1 6.97 13.7 6.96 7.91 9.32 5.95 0.9 7.76 5.3 11.6 11 12.1 12.5 0 11.3 8.39 11.7 9.97 11.8 9.28 10.1 8.27 8.63 2.16 12.6 7.21 0.52 13.8 9.41 4.2 9.02 8.45 7.93 7.94 10.2 10.7 0 0.9 8.48 1.66 12.8 6.25 3.51 11.4 14.7 10.8 9.95 12.3 4.93 9.69 10.6 6.62 7.05 12.8 11 11 10.7 0.52 8.51 8.35 12.6 3.81 14.8 6.53 12 6.9 1.2 4.63 0 8.51 8.11 6.01 11.6 8.21 14.2 9.79 9.7 5.65 15 12.6 11.2 11.9 7.95 10.8 0 0 1.2 12.7 4.05 6.32 11.2 9.97 11.1 4.5 8.67 7.24 9.13 12.8 8.24 11.3 11.3 8.79 7.67 11.9 10.3 13.5 13.8 11.7 15.5 7.42 7.31 11.2 10.8 11.9 0 2.53 5.96 12.3 0 0 7.65 9.97 6.89 9.78 5.87 8.82 9.7 6.56 1.2 5.84 0.9 0 6.92 1.2 5.5 4.8 4.14 8.42 7.41 8.14 1.2 0.9 4.5 4.63 8.14 1.85 4.58 0 3.76 9.5 5.61 0.9 6.99 1.85 7.43 4.82 1.2 7.6 0 4.54 7.22 13.5 4.36 5.89 7.01 9.86 2.01 9.39 7.17 0.9 4.23 4.87 6.9 8.34 6.8 5.11 1.85 0.9 1.45 0.52 8.13 7.87 4.75 4.58 10.2 7.39 3.89 5.82 4.97 1.45 0 0 5.34 1.2 7.96 2.63 0.9 3.85 9.06 6.42 8.02 0.52 4.75 13.8 10.4 0 6.21 3.45 7.41 5.51 2.16 8.51 0.52 0.52 4.42 2.73 7.7 0 5.51 12.6 4.78 2.16 10.7 0 10.3 6.02 5.85 2.16 5.93 12.4 1.66 1.45 3.14 9.47 5.32 0 0 0.52 6.7 5.83 0 1.66 11.2 10.7 9.01 5.16 6.74 0.9 6.25 9.29 8.87 0.9 12 9.18 3.45 11.7 2.01 4.23 2.41 11.5 0 2.29 4.87 5.26 0.52 12.2 4.42 5.3 5.11 3.01 4.66 0 11.2 9.64 9.51 10.2 10.3 12.4 12 10.2 9.76 10.9 5.26 11 11.5 10.1 0 12.1 11.2 13.5 9.3 8.37 7.12 4.93 13.8 6.23 3.51 11.4 0.9 8.78 4.29 4.23 18.4 1.77 9.21 1.66 0 3.62 9.21 5.03 5.83 11.9 11 11.2 0 0 3.27 0 0 8.51 8.23 1.66 1.45 1.2 4.33 0.9 8.8 0 4.29 6.15 3.67 3.14 11.5 2.57 0 9.46 0 8.12 8.14 1.85 1.2 13.6 4.87 8.37 5.99 2.63 8.53 3.67 3.21 4.84 2.91 7.73 3.14 3.34 1.2 4.33 3.21 2.91 7.89 5.29 7.48 2.82 0.52 13.5 1.2 4.91 8.62 4.66 6.77 2.16 5.76 6.47 1.45 2.91 3.62 6.65 7.3 2.01 7.68 3.21 9.74 1.66 6.29 6.26 2.29 5.06 5.73 9.11 9.19 1.45 9.51 0.52 5.16 8.46 6.61 9.88 8.13 5.16 3.56 8.44 12.8 6.6 0 2.73 2.63 8.13 3.79 6.07 2.73 7.56 0.52 6.07 6.23 0 5.08 9.57 7.23 3.71 2.43 12.7 5.05 5.78 10.2 0.52 2.41 3.21 2.01 7.07 9.65 1.2 5.21 3.4 8.77 0.52 2.99 0.52 0 5.82 4.84 1.85 2.29 5.2 12.3 8.34 2.29 0 2.16 7.91 4.53 2.53 2.01 4.05 0 5.27 14.5 8.61 1.66 7.43 10.9 9.8 6.26 12.1 10.4 12.3 0 11.5 0 8.38 15.8 12.1 13.1 7.3 0.52 11.9 12 12.7 0 0.9 5.81 12 4.53 12.5 2.01 0.9 7.76 9.85 8.13 7.74 13 11.3 8.42 0 15.3 11 12.9 13.3 2.73 0 7.4 10.9 9.83 13.9 3.89 11.5 14.5 13.6 0.52 10 9.66 10.4 3.62 9.69 6.49 9.49 2.9 8.51 8.41 12 10.9 11.9 7.9 10.4 6.77 1.85 7.12 7.27 10.3 3.76 8 9.21 6.27 10.2 8.39 10.2 1.45 5.26 0.9 11.6 6.21 4.16 4.8 4.42 11 2.82 7.91 4.95 10.7 0 0.52 7.42 9.21 10.1 14.6 6.2 5.55 6.52 9.79 0 1.45 4.16 9.15 4.83 5.27 7.41 8.68 3.21 5.73 8.41 0.52 6.96 5.14 5.63 8.43 0 0.52 4.01 3.14 10.2 0.9 2.63 6.68 7.52 0.9 11.4 6.88 0 2.63 7.9 3.93 6.52 0.52 4.99 6.1 8.98 6.93 7.33 0.52 4.27 0.52 6.17 2.16 2.73 1.45 11.7 1.2 7.28 4.71 2.99 3.34 4.16 0 0.52 4.8 2.63 8.09 4.78 6.48 5.16 0.52 8.27 4.39 2.16 8.68 3.07 9.04 5.22 1.66 5.05 6.9 10.5 6.77 0 9.27 0.52 0 2.3 0.9 5.05 7.19 3.27 10.8 10.6 1.66 0 3.34 7.39 10.1 8.42 1.2 4.39 4.97 9 0 1.66 7.41 4.53 4.84 8.3 4.91 8.32 0 7.93 9.42 12 0 5.4 7.36 8.25 1.45 8.04 9.87 2.63 7.2 2.29 3.57 11.2 2.63 9.26 10.9 8.69 8.99 11.4 9.51 11.6 3.4 9.58 6.13 6.09 13 9.62 8.94 11.6 2.51 3.81 0.52 1.45 11.4 7.98 11.9 14.3 4.56 4.47 9.1 3.97 10.6 5.92 11.7 14.5 13.2 8.61 11.4 12.2 11 0 8.14 6.18 5.67 5.93 10.3 11.5 12.4 9.35 9.8 10.6 11.1 9.88 9.58 10 4.95 10.5 0.9 9.82 10.5 0 7.36 9.63 7 10.3 3.14 3.71 6.74 9.84 8.33 9.48 8.67 11.3 9.36 10.6 3.14 6.47 7.94 6.16 13.4 1.85 4.36 9.27 8.11 11.5 7.3 4.66 11.6 2.82 3.51 6.91 0.52 6.72 7.43 4.8 2.63 12.3 4.91 1.29 7.32 7.85 3.76 10.9 5.89 8.47 3.56 11.9 11.2 3.71 11.6 10.9 10.1 6.83 11.5 10.2 2.91 2.29 14.6 10.4 11.4 11.1 10.6 10.5 11.8 11.6 3.21 11.4 8.81 4.73 11.2 12.3 11.2 10.7 8.26 9.55 9.51 10.3 9.35 10.3 6.64 5.76 10.5 9.14 6.47 6.17 6.3 6.33 8.37 8.56 9.63 9.42 10.5 9.94 7.8 0.52 8.65 12.2 8.83 10.2 11.1 9.54 5.06 10.5 6.31 7.16 11.7 9.23 3.51 7.27 9.37 9.2 4.36 6.57 1.45 9.91 10.1 9.68 11.3 10.7 6.99 8.72 12.7 12 0.9 8.52 4.84 8.52 10.9 9.48 3.62 9.19 7.68 8.22 10.9 9.69 10.4 9.85 3.4 6.54 7.98 11.2 11.3 7.67 0.52 7.39 12.4 5.03 4.01 2.01 12 3.06 9.35 13.8 8.22 10 4.2 7.76 8.83 6.21 2.01 9.53 8.62 6.98 10.3 0 7.25 8.96 0 11 5.26 9.26 9.73 8.69 2.91 1.2 7.81 2.73 6.65 10.3 9.32 3.76 8.33 8.53 11.2 0.52 9.14 10.7 11.2 1.66 5.78 5.37 8.92 9.35 3.89 0.52 1.66 1.85 6.44 1.2 10.6 4.45 1.85 4.05 8.81 10.4 4.05 8.98 9.99 4.14 6.6 3.91 2.74 6.87 8.38 11.2 7.06 0.9 8.48 1.45 7.19 8.29 3.45 4.42 0 0.52 10.2 10.1 1.45 1.45 4.2 2.53 7.13 0.52 7.9 8 6.24 0.9 7.19 8.06 7.1 2.63 12.8 0.52 8.08 4.53 6.56 6.24 1.56 7.9 7.87 6.03 1.2 4.39 7.54 5.19 1.66 6.83 4.06 0 8.12 6.76 3.22 2.41 1.2 0 1.66 0 2.29 0.9 9.46 0.9 7.12 7.43 3.14 8.01 1.66 4.53 7.03 11.5 0 0.9 0 0.52 0 0.9 7.86 2.53 0 7.73 5.99 1.66 0 12.8 3.67 9.49 8.79 0 6.95 11.1 14.2 10.6 4.45 7.73 6.39 3.85 8.83 14.1 7.54 6.95 5.7 10.8 6.78 11.5 7.63 4.95 3.14 11.8 15.2 11.6 4.42 9.4 8.68 11.1 9.72 9.11 8.75 7.74 0.52 8.82 8.98 9.67 11.6 3.81 0 9 9.21 7.12 10.8 9.27 13.6 11.2 9.4 4.29 6.11 10.4 1.45 1.85 2.16 13 8.28 3.14 11.8 9.7 0.9 3.62 15.3 10 5.96 8.15 1.2 5.92 14.4 8.74 0.9 12.4 11.3 11.8 11 10.6 10.8 6.99 3.62 7.2 11 10.6 10.1 9.09 8 0.9 11 10.4 13.8 9.15 8.79 12.2 12.5 2.99 11.9 1.2 2.29 11.7 11.7 11.8 13.5 10.8 11.4 8.78 9.77 7.36 1.2 9.96 10.9 6.73 9.8 13.7 5.7 10.7 9.47 8.98 11.2 9.51 12.4 10.2 9.82 10.1 2.73 10.7 9.85 10.1 9.36 10.2 9.08 9.81 10.4 10.3 10.4 10.2 9.66 11.8 10.3 9.08 10.8 9.34 8.48 11.2 10.2 11.4 9.42 11.8 10.2 10.2 10.5 10 9.18 10.3 9.14 12.7 13.5 11.9 11 0.52 6.94 8.24 5.93 6.95 0 0 3.06 10.8 10.3 7.44 7.85 6.63 10.8 9.77 10.1 14.5 9.87 0 9.23 9.16 4.66 9.02 8.45 7.29 4.71 13.4 3.56 12 9.21 8.97 10.2 9.49 11.5 11.6 13.2 9.98 9.28 8.75 9.59 9.82 10.2 9.95 0.52 9.36 8.57 9.46 10.9 2.01 11.5 11.9 7.81 9.55 10.2 4.01 9.16 8 0.52 9.66 7.95 3.21 5.34 12.9 11.5 13.5 8.25 10.2 9.16 11.6 9.88 2.53 10.8 12.7 6.33 6.2 10.2 10.2 8.71 9.69 10.7 9.26 6.17 7.2 5.06 12 3.62 8.5 8.41 10.7 4.99 13.6 2.91 2.29 13.5 5.29 4.26 5.01 1.66 4.13 7.89 10.4 10.8 4.58 11.6 8.46 1.45 10.3 4.87 4.06 3.06 13 9.54 12.3 2.29 8.06 3.85 9.42 1.2 0 1.45 0.52 4.87 5.06 0.9 4.93 6.61 12.5 8.8 12.1 9.73 10.9 7.92 11.2 8.56 5.37 8.36 9.28 11.6 6.84 0 9.13 4.64 4.36 8.67 12.5 4 13.3 9.57 0 6.63 11.6 9.37 4.8 3.93 4.09 0 13.9 10.2 9.21 14.2 10.2 4.09 11.7 8.04 1.2 2.63 1.66 3.58 6.58 1.2 0 10.2 9.44 13.3 5.35 6.64 9.06 7.82 8.98 0 3.34 8.18 7.92 11.3 8.43 8.25 8.38 5.08 0.52 10.6 7.07 10.6 2.29 5.34 4.53 11.4 11.1 9.09 3.81 3.45 8.51 5.12 6.79 6.07 8.22 7.38 7.84 9.64 14.5 6.79 6.51 12.8 0 1.2 1.45 12 10.9 12 9.03 11.8 9.44 7.95 7.34 12.5 9.05 9.5 7.89 10.2 7.85 1.2 9.07 13.2 13.6 14.3 11.5 14 0.52 6.58 10.5 9.95 11 3.18 9.19 10.1 3.34 4.78 9.8 10.8 9.66 2.99 11.1 7.56 1.66 10.3 9.92 9.29 3.34 4.05 0 3.15 9.96 10.9 11.7 9.91 10.6 10.4 9.09 0.52 1.08 0 13 3.76 6.63 9.99 4.23 5.77 0.52 9.52 10.7 8.99 4.5 10.3 11.8 8.2 10.5 7.43 13.3 5.32 0.52 12.9 0.52 6.75 0.52 7.28 9.55 10.5 9.27 10.2 9.55 8.45 8.02 8.19 8.09 7.63 7.32 10.1 8.48 8.88 0 9.71 7.24 11 9.09 10.9 7.95 6.85 9.59 8.09 9.72 10.7 7.24 8.81 10.3 7.92 9.89 4.36 9.57 9.85 9.57 10.2 11.1 9.06 10.8 7.28 9.09 5.75 12.1 5.16 6.58 9.74 10.8 9.89 5.7 6.66 9.51 1.2 8.5 9.78 9.5 10.1 8.85 8.93 10.5 7.51 10.7 8 9.78 10.2 11.1 10.4 10.5 11.6 0 6.56 1.2 0 1.2 9.75 6.92 7.31 9.27 8.19 12.4 7.51 9.93 7.29 8.41 9.23 10.8 11.1 5.38 8.71 8.49 8.95 9.86 7.74 12.1 10.5 11.4 11.8 7.6 9.09 8.97 9.73 8.92 10.4 9.76 10.4 11.6 8.11 9.26 10.8 10.4 9.97 11.8 0.9 8.93 11.1 7.7 9.48 10.5 9.14 7.6 8.39 6.75 9.56 8.55 11.7 9.73 10.2 8.11 10.6 5.76 11.3 0.52 10.6 12.1 8.11 9.67 11.3 4.23 8.26 8.39 10.5 1.85 8.85 2.63 8 5.32 8.04 7.02 6.51 7.78 9.04 9.13 9.33 9.24 8.77 8.29 11.1 11.3 8.69 11.6 9.43 8.35 8.83 8.82 10.9 3.21 10.2 4.56 10.8 10 8.75 6.01 1.66 2.29 0.9 9.34 4.16 9.63 7.3 8.61 7.27 12.7 9.25 8.87 10.7 0 10.5 9.26 6.83 7.64 9.64 8.87 13 11 9.62 9.73 7.51 7.85 10.3 6.83 10.7 10.2 8.42 8.22 10.9 7.31 5.88 9.43 10.1 4.56 4.01 4.23 11 12.2 10.8 11.6 7.75 4.13 5.95 11 10.1 9.14 11 6.75 9.41 10.2 3.45 2.82 9.91 9.97 9.28 8.83 9.96 9.11 6.01 9.41 10.4 8.74 10.6 10 10 3.89 9.91 11.1 0.9 8.48 9.79 3.81 4.8 5.47 5.59 10.3 8.09 1.2 7.74 4.36 9.11 9.91 7.66 10 9.61 11.5 10.7 6.38 11.4 6.74 12.1 5.76 5.69 6.11 11.2 9.6 6.71 4.89 9.47 9.35 10.4 10.7 9.81 2.53 9.62 0.52 2.63 7.95 9.02 9.21 9.7 2.63 3.4 11.3 7.93 9.75 2.01 11.4 9.41 9.09 10.4 8.99 8.93 8.98 5.35 7.77 10.9 1.45 7.93 12.3 10.5 9.94 3.21 8.73 6.77 8.08 10.8 10.6 12 5.8 10.1 9.85 8.55 7.24 6.29 7.89 10.9 7.82 7.69 6.22 10.5 10.5 3.27 9.07 11 10.3 7.64 8.52 8.06 2.41 11.2 9.03 10.8 10.5 1.2 9.37 3.56 9.77 6.79 3.06 9.84 9.81 7.88 0.52 13 9.27 7.63 10.4 3.21 9.29 9.83 11.1 11 8.84 9.92 8.87 11.4 9.74 8.87 9.68 11.6 10 10.7 9.07 12.1 7.64 9.12 8.82 9.21 3.51 10.5 10.4 7.44 8.56 9.73 9.77 9.7 10.4 4.2 8.01 8.43 5.99 10.3 10.4 9.01 9.66 8.96 7.4 9.04 8.89 9.7 9.16 9.67 8.93 11.8 9.66 0.52 7.51 7.78 5.14 8.35 8.21 10.8 6.39 9.51 10.8 5.54 11.2 10.6 9.66 9.15 2.73 11.8 9.23 12.1 8.49 10.6 9.63 11 9.35 11.2 12.3 10.4 10.5 6.33 10.9 9.47 11.1 9.52 10.1 9.4 7.95 11.7 7.78 0 6.43 10.3 12 10.1 7.3 12.1 8.52 10.8 8.41 8.42 11.2 11.2 11.1 9.3 8.97 9.39 9.86 11.5 10.6 9.97 7.36 8.6 9.58 11.4 8.79 7.95 8.47 8.51 4.61 8.31 6.71 10.1 7.7 11 8.92 11.7 5.95 7.37 4.87 6.79 6.84 9.04 3.82 2.16 9.79 8.86 9.6 8.98 10.2 10.8 11.6 9.69 6.09 8.37 7.31 9.98 4.45 3.89 12 6.92 10.6 7.94 0 11.3 2.91 9.26 10.8 11.7 8.41 10.6 2.16 10.3 6.9 0.52 4.01 7.24 9.57 4.82 11 8.36 8.74 1.45 10.6 6.98 10.5 11.1 9.38 3.89 2.29 9.22 9.75 0.52 8.09 10.6 8.96 11.4 0 10.3 12.5 7.09 7.29 5.19 9.22 9.05 8.34 9.52 10.8 8.83 8.15 8.59 6.82 7.89 6.37 9.98 9.3 0.9 1.66 8.76 4.23 10.7 10.7 10.8 8.79 11.7 9.76 1.45 9.39 12 11 8.94 11.7 2.01 10.5 12.1 14.8 11.6 8.25 10.8 13.7 5.56 0 11 11 8.45 10.8 13.7 10.2 8.94 1.66 6.23 4.09 1.2 11.8 1.2 12.9 2.29 9.72 9.83 6.7 7.84 9.81 11.5 1.66 9.36 6.91 9.13 15.9 10.6 11.9 12.4 10.8 8.38 3.71 8.75 8.59 10.5 7.61 7.93 2.73 9.44 8.07 9.45 11.6 8.35 9.07 11.9 10.3 4.45 9.26 11.2 10.2 10.7 9.74 9.46 1.85 7.27 8.75 11 11.8 9.92 8.42 0.88 15.9 9.17 10.6 0 7.42 1.85 7.24 9.76 11.4 14.3 13.2 11.5 6.83 11.6 0.9 10.7 7.73 10.4 4.73 6.81 2.94 8.72 6.54 5.7 4.73 8.96 10.2 0 5.99 7.64 8.54 9.93 9.33 11.6 14.8 1.79 4.45 8.89 7.99 4.02 6.36 0.9 9.43 13.4 10.4 2.01 11.2 9.83 1.2 13.2 10.1 6.14 12.8 11.1 11.4 11.8 10.8 0.52 9.17 1.45 10.8 8.13 11.3 8.15 10.2 0.21 0.9 11.4 12.6 8.89 10.6 9.5 8.07 6.76 7.07 5.11 3.76 0 1.85 4.09 12.5 4.26 5.85 5.62 10.7 9.63 10.3 9.85 7.59 0.52 5.86 11.7 11.9 8.65 9.78 9.81 10 7.4 10.4 9.59 11 8.6 9.34 10.2 11.6 5.4 9.7 7.65 0 3.56 5.91 6.12 7.38 2.01 8.01 0 0 7.62 1.2 3.56 7.69 2.38 11.4 9.67 11.2 1.2 8.69 9.25 5.99 1.82 7.62 2.99 8.87 9.08 8.27 8.67 8.76 10.3 9.43 12.1 13.1 5.05 7.64 7.47 8.56 9.12 10 11.4 9.67 6.91 3.93 10.2 8.71 12.8 11.2 10.2 2.16 1.66 9.29 7.27 7.27 11.1 8.17 5.38 9.82 10.3 4.05 8.82 10.1 8.75 10.1 9.41 10.5 14.3 11.2 2.99 8.58 9.23 2.91 1.85 10.4 9.42 9.54 10.8 7.14 11.1 2.01 7.28 9.67 7.91 6.47 10.6 10.2 7.75 11.2 7.79 8.99 1.85 1.85 10.8 10.3 11.4 9.57 5.29 9.74 8.35 0.52 9.64 8.71 10.4 10.4 3.45 10.2 11.2 8.71 9.53 9.35 6.05 10.7 7.52 9.57 6.47 9.87 6.34 9.62 8.96 8.74 9.84 10.8 8.83 5.05 10.2 10.2 7.22 9.78 10.1 2.01 8.14 5.64 6.22 9.82 7.78 9.14 6.42 6.03 9.21 9.39 6.96 9.62 8.59 9.64 9.91 9.65 8.88 6.88 8.74 8.85 10.3 9.21 14.1 8.86 11 8.92 10.3 8.51 6.52 9.86 7.38 7.68 1.2 8.34 7.16 0.52 7.15 8.78 7.98 7.47 8.67 0.52 9.36 4.68 11.5 10.9 9.86 7.62 3.62 10.1 7.19 7.4 10.8 11.7 9.79 2.29 7.04 5.81 11.8 8.62 0.9 9.69 10 8.94 8.1 12.5 5.48 9.22 10.9 8.02 2.01 8.56 6.83 5.81 10 1.2 9.92 11.1 8.36 10.3 9.14 0.9 4.8 10.4 5.56 12.2 9.85 0.9 9.2 11.8 8.93 9.5 5.74 3.56 12.4 2.53 2.99 2.16 5.58 6.84 8.28 11.9 5.64 6.25 9.82 9.52 1.45 10.2 9 12.7 8.89 7.87 7.73 10.4 13.5 8.71 9.91 10.3 4.13 8.52 0.9 7.9 9.85 9.3 8.95 8.63 6.78 6.8 7.16 8.99 11.9 9.11 0.52 9.09 10.2 7.9 7.6 11 8.12 8.52 10.8 6.91 9.51 6.26 0.9 6.25 0 8.46 6.49 5.24 0.9 9.34 7.53 1.66 9.98 5.27 10 7.92 9.73 7.68 11 4.61 9.72 8.51 7.69 7.9 9.2 5.41 7.64 9.69 6.81 6.76 8.38 10.2 10.2 9.94 12.4 8.09 10.1 0 10.8 8.9 10.7 10.4 9.84 10.3 8.79 7.21 8.66 9.05 8 6.87 9.29 10 10.7 8.78 10.6 6.8 8.15 11.2 10.5 7.51 9.32 9.41 9.14 8.51 9.35 2.82 7.26 7.61 4.16 7.56 9.2 7.26 9.53 0.52 10 8.43 10.5 6.81 9.49 10.7 7.68 11.2 9.35 9.52 10.6 6.79 6.01 8.3 11.5 9.71 10.8 9.27 13.3 9.23 10.1 7.46 7.68 9.4 8.42 10.5 0.9 9.03 10.2 10.1 10.9 5.22 8.96 4.26 9.5 9.87 9.6 9.47 9.48 8.6 8.41 8.79 6.79 8.19 7.31 8.13 6.2 12.2 8.26 11 7.48 9.52 5.78 8.7 0 9.02 8.53 7.37 7.33 12 11.1 8.51 9.82 9.02 10.7 4.53 7.3 6.78 8.56 10 7.74 9.6 5.37 8.76 1.2 9.61 12.1 7.88 5.67 10.6 7.62 2.16 4.05 10.8 5.19 11.7 12.6 11.5 7.55 9.79 9.09 10.8 8.62 7.84 9.02 10.9 9.08 11.2 6.89 10 8.29 7.95 9.71 9.55 8.95 4.73 10.7 0 0 7.86 5.06 9.4 3.21 4.68 8.37 8.41 9.4 10.6 7.75 7.56 10.3 9.11 4.61 9.95 10.6 8.64 9.63 9.24 11.3 9.75 8.75 8.1 10.6 8.82 9.26 7.06 9.98 7.44 9.31 4.53 4.16 5.12 8.14 6.88 8.29 4.8 10.9 2.73 4.61 7.59 10.2 5.6 8.89 9.94 9.85 9.55 9.11 10.5 7.02 3.67 4.95 8.64 4.2 7.85 8.47 9.77 8.37 7.89 10.8 3.06 9.22 8.68 9.89 9.04 8.97 8.21 6.79 10.6 8.97 10.1 8.62 9.8 8.07 6.75 9.93 8.46 10.5 7.84 10.2 1.2 8.66 9.88 6.96 9.04 0 9.07 8.35 7.36 8.17 0.52 1.2 8.41 10.5 9.16 9.26 8.83 10.4 7.35 7.55 9.82 9.56 9.03 12.1 3.56 7.82 9.04 9.86 8.71 9.16 8.71 9.72 10.9 9.25 10.7 9.68 8.55 9.34 7.84 8.89 9.98 6.03 8.07 8.22 10.2 9.96 4.13 6.16 9.91 8.97 7.34 12.5 8.71 8.88 10.5 9.23 4.45 9.55 10.7 7.37 9.93 6.14 10.2 9.18 9.93 6.99 0 10.8 9.69 9.98 6.72 2.82 10.8 2.63 9.2 2.41 7.16 10.4 8.44 12 7.57 11 1.85 10.3 8.12 9.06 9.74 10.2 9.26 7 8.67 9.51 11.1 0.9 6.83 8.27 4.29 8.11 10.3 9.82 3.62 8.65 8.83 8.26 4.58 9.78 10.8 11.8 8.33 10 12.1 10.1 8.36 4.73 9.51 9.63 6.14 8.77 10.5 10.3 10.3 9.18 8.41 8.42 8.73 9.16 10.3 9.39 7.71 1.2 10.1 6.1 9.14 8.98 2.73 6.9 9.44 10.6 9.5 10.9 0.9 9.96 9.43 10.5 6.12 8.85 8.02 10 8.61 8.22 0.52 6.52 8.99 7.54 4.91 11.1 9.23 10.6 0.9 9.7 8.4 10.7 10.6 8.13 8.73 6.98 6.3 8.15 8.64 10.3 0.52 9.8 10 2.16 7.57 7.9 10.1 11.2 8.5 10.9 9.51 8.78 6.06 6.41 4.23 8.63 8.04 8.79 10 8.77 4.26 8.6 8.16 10.3 8.62 9.52 9.25 1.45 5.08 8.93 8.25 9.55 10.4 8.79 10.5 3.85 6.14 10.5 10.5 10.8 7.49 9.9 7.94 9.85 8.47 6.77 7.95 7.88 1.85 8.15 4.05 8.72 11.1 6.84 7.22 11.8 7.31 10.5 11.1 11.6 9.06 7.96 8.82 8.11 10.8 7.22 6.99 12.4 11 4.45 8.38 0.52 6.76 9.29 6.56 6.51 0 0.52 8.1 4.09 10.1 8.98 5.43 0.52 7.2 9.14 9.48 10.7 7.89 9.92 7.71 1.85 9.59 5.48 10.3 9.1 8.42 5.56 2.91 6.66 10.8 7.55 3.97 7.34 5.82 9.54 2.01 4.33 0.52 10.2 6.78 6.46 9.38 9.42 6.54 5.21 0 6.57 9.45 4.02 2.82 9.26 0.9 1.45 6.44 7.1 7.66 9.19 8.17 9.44 6.87 4.2 9.12 7.28 9.91 8.97 12 0.52 10.5 9.12 7.37 5.63 10.9 9.89 8.44 10.8 6.42 10.5 8.95 6.75 0 11.4 9.21 9.64 9.45 9.09 1.2 10.7 6.16 8.09 11.5 12.4 0 9.26 8.32 7.22 7.75 7.62 9.76 10.5 9.94 8.29 9.5 10.4 10.3 9.61 10.8 7.41 10.9 0.9 9.53 7.77 8.07 9.04 7.09 7.59 7.96 6.15 9.19 7.17 10.6 8.2 9.8 7.54 9.08 7.63 10.8 8.72 9.36 10.9 2.41 8.87 8.35 10.6 6.48 10.2 11.5 10.6 9.62 6.73 8.93 10.2 12 9.62 8.04 9.4 8.34 8.22 10.6 7.01 7.75 10.5 5.05 8.06 9.81 9.95 11.6 9 8.03 10 3.67 11.1 7.55 9.46 3.76 9.69 10.2 10.1 3.4 11.3 4.16 14 9.07 8.97 7.8 8.91 10.5 8.48 11 7.97 10.2 5.21 1.85 9.28 9.29 8.99 9.96 9.28 8.36 11.2 5.77 6.29 9.31 9.2 9.39 7.06 9.19 11.9 8.76 6.89 5.59 8.53 10.6 11.1 10.7 9.72 11.7 9.08 9.87 6.46 8.36 9.07 9.77 12.3 10.7 8.23 8.93 8.04 10.5 0.52 11.8 9.86 8.68 8.21 8.28 8.47 7.32 10.1 9.71 3.34 9.49 8.02 11.8 9.78 8.29 8.64 4.61 8.56 6.58 10 8.53 8.07 7.02 7.08 5.03 8.83 8.42 8.82 8.84 9.2 10.2 2.29 7.47 9.33 7.49 5.85 7.62 7.78 7.27 9.2 9.11 4.78 7.96 4.5 9.78 10.4 4.01 9.41 7.18 3.93 11.6 6.16 9.26 6.09 9.3 0.52 5.5 10.1 8.98 2.01 9.88 9.41 0.52 9.41 7.92 5.08 10.4 10.7 9.55 9.5 10.3 11.4 10.1 7.71 9.39 9.22 9.96 6.04 8.9 5.06 10.1 11.7 7.62 9.28 8.77 8.84 7.59 9.42 9.69 4.05 10.7 7.76 8.67 7.2 11.3 1.66 9.75 9.77 7.78 10.2 8.97 0.52 7.99 2.99 9.6 9.62 8.9 8.48 7.9 10.4 0 1.66 0 12.5 7.68 8 10.5 0.9 11.1 9.28 6.08 9.42 9.85 9.9 10.5 3.06 9.79 9.53 11.7 8.03 9.96 8.6 7.97 10.2 4.09 12.9 8.62 5.86 8.92 1.66 4.42 4.99 11.2 10.5 8.24 7.8 9.28 12.1 4.01 3.97 10.2 11.5 11.3 11.5 11.7 10.7 6.57 10.1 9.52 9.14 8.86 8.18 1.66 8.89 0 11 9.08 9.51 5.1 10.1 9.25 10.7 11.2 8.84 11.7 9.6 0.9 7.51 7.92 3.93 10 8.51 0 5.68 9.81 2.87 2.53 0 2.29 4.07 3.53 6.54 3.82 0.84 2.29 10.3 1.37 3.27 0 1.45 2.41 9.5 0 5.16 7.52 4.68 1.45 1.45 4.13 5.35 3.14 4.68 8.99 1.2 2.41 3.34 3.45 1.66 4.8 8.02 3.4 0 11.3 0 9.52 3.51 8.06 8.68 1.45 8.96 14.6 1.85 5.71 6.82 3.06 11.2 0 9.05 10.4 4.89 9.54 8.14 4.5 10.2 10.1 3.61 10.1 13.8 7.24 9.35 7.07 11 5.52 10.3 2.01 0.9 9.27 9.14 10.1 9.95 9.29 9.26 8.82 7.63 11.1 10.1 0 1.2 6.97 2.01 8.57 6.45 3.45 11.9 2.41 11.2 6.8 0 14.2 12.4 6.71 8.65 9.92 4.66 8.3 10.7 8.31 10.4 8.09 11.2 10.6 9.33 8.66 9.36 8.05 3.4 0.52 7.82 2.53 8.86 0 10.1 7.49 11.5 9.67 16.9 6.4 0.52 10.4 9.2 12 10.3 11.8 8.32 8.05 11.6 7.16 12.3 10.2 10.1 7.44 0.52 11.6 12.2 12.3 12.2 10.3 10.7 11.9 12.4 6.27 6.85 10.3 10.5 9.03 10.4 7.98 0.9 12.1 9.81 7.27 9.55 11.1 10.7 4.66 9.01 11.6 11.6 6.83 7.71 8.3 8.61 9.17 8.29 8.85 12.5 4.5 8.75 9.68 4.75 11.1 10.5 8.87 9.81 11.8 9.53 5.27 11.2 9.88 11.6 9.58 10.4 8.86 9.87 7.5 9.65 8.13 9.23 8.57 10.1 12.8 9.31 10.8 6.6 5.08 9.21 8.87 12 0.9 9.7 0.52 10.4 5.03 11.1 8.81 9.34 3.51 5.93 11.5 7.99 4.63 8.4 9.92 7.01 7.42 9.58 11.4 9.98 7.52 10.6 5.77 9.17 9.71 8.18 11.2 5.51 1.66 9.59 7.6 7.03 11.2 11.5 11.2 2.01 9.78 10.8 10.4 11.9 8.84 7.31 2.99 8.43 7.26 9.26 11.3 9.83 10.8 11.8 11.1 3.06 10.3 9.67 1.45 11.7 11.1 13.1 7.35 11 7.25 10.4 12.4 3.85 10.8 4.89 9.97 0.9 7.37 8.22 11.3 11.7 2.53 8.26 9.25 10.4 2.91 8.09 8.05 10.3 10.5 10.6 4.93 8.36 7.1 9.41 9.22 9.18 9.62 7.81 9.27 8.83 9.89 11.9 10.3 11.6 5.24 10.8 2.29 12 9.51 13.2 6.66 9.78 7.58 10.1 9.04 10.8 7.1 11.4 10.7 5.48 8.66 0 9.61 6.32 11.1 4.13 2.29 8.31 10.9 11.1 9.48 11.1 8.64 10.8 11 10.7 6.36 7.92 9.41 9.47 9.26 7.59 10.2 1.2 7.67 11.8 10.5 1.66 8.87 5.4 8.48 9.9 13.1 9.55 6.73 11.9 8.27 6.76 4.95 8.84 11.1 8.52 10.4 10.4 0.52 11.5 10.2 8.72 9.42 8.67 8.18 9.44 2.82 9.1 13 7.51 10.5 0.52 3.51 6.97 11.7 5.52 0.9 3.4 8.81 10.2 2.2 6.81 8.27 7.63 2.73 6.87 0.52 7.58 7.51 2.01 3.67 12.9 8.77 4.91 5.38 2.91 7.72 3.89 0.52 2.53 11 7.25 0 7.24 8.99 9.73 7.6 11 2.01 10.5 7.22 10.2 8.88 9.89 11 13.6 9.59 9.67 10.6 11.7 2.41 11.4 0.52 1.45 9.66 8.72 11.2 9.28 0 3.34 9.82 8.63 3.27 8.31 7.07 10.1 1.45 1.96 11.1 10.4 3.4 10.6 9.47 6.33 6.16 4.13 3.56 9.87 9.76 6.71 3.14 1.45 8.75 11.4 9.76 6.05 9.76 10 9.97 3.85 9.01 1.2 10 3.76 2.02 8.42 8.71 8.75 10.4 7.44 7.96 9.19 10.5 8.41 9.17 7.37 11.4 5.6 9.6 7.85 4.23 0.57 1.85 1.2 0 9.89 8.22 7.27 10.8 11.6 9.64 4.36 5.54 7.7 5.65 7.22 12.5 2.41 8.65 9.24 6.6 6.37 7.01 5.95 9.93 7.19 8.51 10 0 9.75 8.8 7.92 6.7 11.5 8.09 9.32 2.82 8.04 0.9 8.67 8.38 5.64 13.7 8.84 3.45 10.7 1.66 2.16 5.71 5.58 0.52 9.02 8.34 0 9.97 11.2 9.13 9.6 9.81 9.07 10 9.05 7.44 8.39 4.23 5.1 7.61 9.39 6.67 7.57 10.2 1.45 7.96 10.8 6.78 11 9.64 6.65 9.69 0.9 8.98 9.36 9.24 9.26 8.5 2.82 7.3 0 13.1 8.86 0.52 10.1 11.1 7.28 5.78 1.85 9.68 9.09 9.51 12 9.43 7.98 2.29 7.19 9.98 6.56 10.1 10.9 10.8 7.91 9.23 8.22 9.27 8.79 5.68 6.84 12.7 4.42 7.13 8.07 12.2 10.5 5.91 5.58 7.28 2.01 9.06 0 7.05 7.01 2.16 9.24 7.36 9.01 6.7 9.9 4.99 0 11.3 8.54 9.31 9.4 10.1 6.08 9.85 11 9.77 10.3 4.49 5.87 4.56 2.78 6.58 5.29 7.54 8.9 11.4 7.99 4.33 8.81 9.68 7.7 5.24 2.29 7.97 0 10.1 7.81 2.41 10.4 7.61 9.86 7.25 8.31 10.3 9.21 9.09 9.31 11.2 9.79 6.37 10.1 11 11.1 9.23 12.2 9.48 1.45 10.8 8.55 9.65 10.2 2.82 11.8 0 7.88 7.85 8.35 10.7 10.2 5.82 0.9 5.29 9.23 8.38 7.42 10.7 13.2 8.74 8.14 7.94 11.4 7.23 1.66 4.47 2.73 5.01 4.75 1.85 8.71 9.08 3.89 10.6 8.57 8.46 9.96 7.22 10.5 13.4 6.2 11.4 10.3 11.3 7.46 7.54 10.5 9.85 9.36 8.81 7.59 9.02 12.7 8.79 9.61 10.1 10.3 8.47 11.7 12.1 1.45 12.6 3.67 8.32 9.31 9.97 9.83 5.69 4.26 10.7 9.13 9.49 7.52 11 9.47 7.19 6.25 7.57 3.45 4.58 8.38 7.91 7.51 7.19 7.08 10.5 10.8 9.21 9.16 2.29 9.33 9.98 10.7 11 10.2 10.8 9.97 4.82 0.9 10.6 1.66 0 11.8 9.34 8.43 12.2 9.96 10.5 5.82 1.45 6.52 9.55 10.6 11.7 9.56 11.6 8.01 10.3 8.74 6.61 10.7 10.4 8.64 11.8 12.8 11.3 8.52 8.3 8.48 12.1 11.4 12.7 8.21 7.32 6.92 4.82 6.53 5.9 10.9 7.24 10.9 10.1 11.3 10.4 12.3 13 10.4 10.9 12.4 10.3 11.4 0.9 7.69 10.1 9.47 12 1.66 9.42 4.2 12.2 11.1 4.58 7.61 9.08 9.93 7.31 3.21 4.33 10.6 7.92 8.02 10.3 7.66 6.42 9.34 7.67 11.2 11 8.28 10 10.5 7.92 11.2 10.8 7.21 2.01 10.2 9.75 10.2 0.52 4.71 12.1 9.24 9.5 9.84 4.05 8.83 11.6 0.52 5.76 10.9 10.5 10.6 7.09 11 0 4.15 0.9 11 0 7.13 0 11 10.2 0 4.8 6.15 0.9 10.6 9.71 6.98 7.68 11.5 9.92 5.89 10.7 9.39 7.25 5.38 11.9 8.92 11 9.64 8.01 8.71 8.9 9.01 9.91 0.42 7.74 11.1 8.94 5.96 0 10.6 6.5 10.6 10.3 10.4 17.3 9.34 11.2 1.2 7.36 2.29 0 9.45 0 10.1 9.68 9.4 0.52 11.1 3.85 9.11 11.2 9.22 9.2 10.4 2.41 0.9 11.1 6.36 1.2 7.51 6.8 9.58 2.82 7.75 9.38 0.9 9.76 5.01 0 8.76 12.5 6.98 10.6 8.73 10.6 0.52 9.66 7.69 10.1 9.14 10.1 7.68 7.97 8.66 9.5 1.45 9.65 8.96 12.3 8.16 10.6 7.92 11 9.05 11.2 9.37 8.5 10.9 9.04 0.52 7.87 11.7 4.56 8.44 8.52 4.99 10.5 11.2 2.41 0 4.37 8.69 1.45 8.96 9.19 9.32 10.4 6.78 8.24 2.01 10.2 9.79 5.29 7.48 1.85 4.73 6.03 7.82 8.62 7.64 1.45 10.7 9.59 8.51 8.54 15.2 14.4 14.1 12.7 8.88 11.7 14.2 3.14 15.7 10.1 13.2 14.3 12.9 13.9 13.7 11.6 14 10.1 14.4 1.66 12.5 11.3 9.78 12.8 13.8 14.1 13.8 13.1 14.5 13.6 13.9 13.8 13.2 13.3 12.6 13.9 13.3 12.9 7.49 9.31 14.4 7.68 14.4 14.4 13.6 10.3 9.99 12.5 12.4 13.2 14.8 12.2 14.3 1.67 2.82 4.01 4.45 4.05 13.6 1.66 1.66 15.1 11.8 9.59 10.6 12.1 10.4 11.8 14.1 13.8 12 14.4 13.4 13 14.2 12.2 13.6 14.1 14 9.6 14.3 14.3 13.7 13.2 13.6 14.4 12.9 9.89 6.24 12.5 8.75 12.8 5.81 9.85 12.4 10.5 11.2 11.2 11.2 0.52 7.36 11.9 10.1 3.56 7.51 11.4 9.24 9.69 7.61 2.53 3.62 4.35 4.23 8.81 16.6 6.71 9.92 1.2 15.2 16.8 17.4 14.2 15.1 10.3 10.6 7.12 12.5 12.6 9.7 10.7 3.63 1.66 8.59 12 9.55 11.5 14.1 7.89 8.11 11.3 12.1 10 5.12 9.2 8.87 8.95 13.7 5.28 7.23 8.03 4.84 0 3.67 1.66 0 13.1 5.51 1.2 4.73 1.2 10.1 1.66 8.99 10.4 9.18 10.8 1.2 0 9.51 9.48 7.02 0.52 9.11 10.9 7.1 1.44 7.69 8.25 7.9 2.29 3.4 8.92 0 7.4 13.2 9.39 4.68 6.83 7.6 14.7 7.85 4.58 9.09 14.4 11.4 7.71 9.4 10.6 3.4 9.31 9.87 12 9.8 8.65 9.87 8.13 3.71 8.17 8.08 5.87 12.6 10.8 8.91 10.9 9.02 8.18 11.2 5.55 2.16 7.01 9.19 9.68 10.4 5.19 8.64 5.59 0 9.41 7.35 7.14 8.03 7.51 8.1 0.52 9.48 7.14 8.11 7.37 7.55 11.4 7.58 10.2 8.67 10.4 6.36 7.4 7.68 11.1 7.55 2.01 10.6 8.63 4.42 6.56 0.9 8.41 12 7.68 9.59 0.9 15.8 1.2 4.89 11.7 8.48 8.12 5.05 5.87 10.6 2.16 9.95 6.97 2.01 4.39 8.22 6.55 5.06 6.28 6.99 7.63 6.26 7.54 8.95 9.52 9.05 12.6 10.9 9.27 10.7 9.07 3.34 6.65 8.89 11.3 5.65 5.24 6.04 2.82 9.27 4.8 10.8 2.99 7.7 0 12.2 8.94 7.34 8.14 6.24 7.57 11.9 8.81 9.93 10.1 6.41 11.2 3.51 3.93 4.71 6.12 4.63 9.54 13.3 0.52 6.24 6.44 9.72 10.3 12.6 10.2 9.03 8.96 9.59 10.7 7.99 7 9.54 9.56 9.58 10.1 1.85 8.63 8.18 10.6 7.28 0 0 10.5 0 12.1 2.16 12.2 12.4 4.87 9.12 5.77 9.65 4.89 6.81 9.91 5.62 7.25 11.6 0.9 1.2 1.45 2.73 12.3 5.3 0.9 11.6 9.91 8.89 11 10.9 8.47 6.15 10.4 8.93 5.83 9.39 9.87 9.15 10.2 2.99 11.7 7.78 7.41 0 5.16 6.16 11.3 8.78 9.66 0 10.3 7.13 1.66 0.52 9.61 6.82 8.49 0 4.45 8.28 6.78 4.61 9.68 6.48 5.43 0.52 1.2 7.89 4.91 7.72 3.14 9.98 9.61 0 10.1 8.59 7.72 8.2 4.26 3.67 7.88 3.51 8.17 8.49 7.99 6.73 0 2.29 3.89 7.66 4.09 8.23 9.45 1.2 6.19 8.12 9.96 11.8 9.41 9.9 9.07 9.04 9.5 8.98 8.84 9.03 9.53 9 2.41 4.05 0 0.9 5.65 2.91 4.13 3.21 12.9 2.91 5.91 0 7.92 0 11.1 7.52 1.2 10.9 0 5.47 1.2 8.56 10.9 5.17 0.52 9.66 2.05 0.9 4.29 1.45 10.2 8.72 5.63 0.52 2.27 1.2 1.45 11.9 0 2.82 5.32 4.73 6.29 2.63 3.14 7.79 1.45 2.01 7.65 8.27 9.84 9.7 9.79 1.66 2.41 4.02 10.9 0 6.69 0 13 0.52 10.2 3.81 4.88 10.9 0 0.52 4.36 9.69 8.98 3.45 9.87 0 0.52 4.71 0.52 5.68 3.34 9.26 9.31 10.1 5.95 8.31 11 12.2 5.99 1.47 7.52 11.7 5.3 5.34 10.4 9.57 9.51 10.9 9.71 9.68 8.76 2.82 7.83 10.2 9.14 4.66 9.58 10.4 11.1 5.84 9.05 9.6 8.88 11.3 9.75 10.1 9.03 12.4 9.28 9.45 7.56 8.62 10.2 8.06 10.5 9.25 8.74 10.1 7.85 8.81 9.07 1.45 9.59 11.8 6.97 5.74 7.76 8.51 9.15 3.67 9.65 12.4 3.93 3.85 9.46 6.72 0 8.05 7.24 1.45 8.62 8.15 11.6 10.2 5.26 8.32 8.72 9.54 10.2 4.29 10.7 9.8 9.23 1.85 8.66 9.57 8.66 14.6 10.1 9.32 8.38 10.1 6.97 7.59 8.58 13.1 7.14 1.37 2.53 4.01 8.45 8.23 11.3 4.89 8.31 1.66 8.25 9.05 6.98 1.85 9.18 9.11 7.13 8.29 10.9 4.26 6.03 8.94 6.56 9.77 5.17 7.79 9.49 7.29 10.1 0 10.6 8.99 9.29 10.2 9.98 10.9 9.83 9.03 9.73 8.98 8.94 8.84 9.93 9.96 0.9 11.5 12 9.66 10 8.69 4.78 9.38 5.65 10.7 7.93 8.1 3.71 4.66 2.16 4.58 10.7 9.26 9.14 1.45 8.82 3.27 5.76 0 8.98 7.64 7.31 8.7 9.09 11.1 7.97 11.3 8.3 10.3 0.52 12.7 11.8 8.44 8.97 10.8 0 9.83 12.3 11.8 8.93 14.8 3.27 11.9 3.45 6.83 0.52 7.42 13.4 0.9 11 10.2 5.54 4.58 9.9 9.12 12.1 6.54 4.45 8.69 9.6 8.52 8.32 11.9 10.5 5.67 0.52 0.52 0 2.82 2.01 0.52 7.62 5.93 0 3.21 7.36 0.52 12.9 5.24 4.23 0.52 0.9 4.71 3.4 10.1 8.64 0.9 8.7 3.14 2.29 0 6.73 11.8 8.7 11.1 10.5 3.21 9.37 6.2 9.71 1.2 10.1 8.26 4.91 3.56 0.52 8.56 0.52 6.65 5.4 2.29 3.57 3.14 13 4.61 0.9 0.52 1.2 9.44 5.41 8.32 7.72 1.45 9.03 6.33 2.91 3.67 0.52 5.74 0.52 0.9 11.3 6.3 6.34 3.76 3.34 5.44 0 7.97 0 9.72 0.9 6.42 11.6 2.41 5.47 12.9 5.63 8.18 0 1.85 8.01 11.2 12 10.3 7.74 8.02 6 7.8 6.26 7.08 2.01 5.34 9.53 14.7 11 6.36 11.1 8.65 11.7 0.9 7.69 10.1 10.8 9.82 8.91 5.01 9.25 9.89 4.87 9.52 6.88 8.77 11.3 6.72 9.43 9.81 10.6 9.02 4.26 8.38 8.01 1.2 2.53 3.06 13.5 9.84 8.02 10.3 10.9 10.8 5.75 8.51 7.18 11.3 4.09 10.1 3.89 8.88 9.45 7.87 10.6 11.4 11.8 7.39 7.08 3.81 8.72 8.81 8.18 7.55 8.72 8.38 8.05 13.7 11.4 10.4 8.72 12.9 10.4 10.4 11 10.5 11.8 11.7 9.58 10.3 9.97 6.93 9.9 7.26 6.42 10.9 10.1 9.54 9.55 0.52 11.8 2.16 15 6.78 10.4 10.2 11.9 10.2 10.5 9.72 9.69 11.3 10.5 1.45 10.9 1.66 11.6 8.6 10.9 9.3 13.8 11 5.85 10.7 8.46 10.7 3.4 13.3 8.68 9.7 8.15 2.01 12.1 0 12.3 7.31 5.06 9.62 9.22 7.81 12.6 0 7.63 11.8 9.33 12.2 11.3 8.59 0 9.89 8.78 12.6 12.2 10.6 10.8 11.4 11.8 9.91 10.3 6.83 11.3 11.5 10.8 10.3 11.7 10.4 9.13 11.1 10.6 12.3 11.7 11.9 11.4 11 12.2 6.21 3.62 1.2 10.9 11.5 11.1 13.1 4.05 13.4 4.99 13.9 11.9 12.6 6.1 9.3 9.62 1.2 1.2 1.85 0 1.2 2.01 0 0.54 12.2 1.73 0 1.2 5.87 12.9 11.4 8.93 8.95 6.94 7.32 10.6 6.98 8.17 9.17 9.57 8.4 3.85 4.26 10.4 10.5 3.27 1.85 8.65 8.05 9.74 10.4 10.1 10.4 10.8 9.69 8.73 5.6 8.85 0 14.4 11.9 8.05 10.3 11.8 3.93 11.6 9.47 9.18 9.44 12.8 10.1 10.7 8.1 13.4 11.1 5.37 10 9.71 4.23 10.2 3.27 0.52 3.76 12.3 2.16 7.42 1.2 2.73 0.9 9.24 10 0.52 8.88 7.37 9 9.84 8.32 8.09 10.9 6.83 9.89 10.6 13.7 10.5 9.65 9.33 9.17 8.55 10 2.82 0 12 13.6 13.7 12.9 12.8 8.28 9.02 11.8 9.07 0 8.36 10.8 8.76 10.3 8.36 7.64 8.3 7.04 4.47 3.67 3.27 6.66 10.1 8.38 4.09 2.53 4.95 6.33 9.92 1.66 0 11.3 5.46 10.7 9.59 9.68 4.82 11 5.5 8.57 6.82 8 9.36 1.2 12.1 8.22 9.29 10.9 10.6 10.3 3.34 6.58 11.2 4.89 12 0 0 8.3 8.69 9.74 4.33 10.7 10.9 9.61 5.24 11.8 10.5 8.86 10.4 6.19 3.27 9.12 13.8 8.58 4.75 9.13 1.45 7.97 8.82 4.23 10.1 2.99 8.63 11.7 8.72 8.28 3.56 8.18 11.4 8.21 10.8 2.63 7.12 5.6 12.2 3.27 12 12.2 8.6 9.61 8.91 0 14 12.1 1.85 11 5.64 9.86 11.3 14.4 11.6 13 11.6 13.2 9.96 8.03 12.3 2.73 0.9 10 0 8.15 3.45 0.52 10.1 11.5 9.39 10.8 8.37 6.91 12.4 11 12.2 2.16 11.4 11.1 10.8 8.6 13.4 7.65 9.99 7.8 10.1 10.3 3.27 12.6 10.8 5.68 10.7 7.45 5.86 17 12.4 5.56 4.26 8.53 10.5 7.64 8.33 10.3 9.94 5.95 10.1 14.5 10.7 5.54 5.1 10.2 0.52 12.3 12.3 13.2 11.2 7.94 11.9 9.79 2.16 3.76 3.14 11.6 11.1 1.85 8.85 3.67 13.9 11.6 7.8 2.91 10.1 10.8 8.59 10.3 9.15 10.5 13.4 8.44 11.8 9.3 9.64 12 0 13.6 11.2 11.3 9 13.2 14.6 10.5 9.64 11.3 8.35 16.3 0 12.6 7.98 8.97 14.7 9.47 9.88 8.8 7.52 7.5 7.74 7.39 0 12.9 10.4 11.3 4.23 0 3.14 0.9 1.45 6.02 8.73 9.45 0 5.98 4.52 10.7 9.66 9.98 0 10.7 2.01 9.94 10.9 6.84 9.08 10.7 9.67 11.9 9.91 11.6 10.6 9.59 5.22 9.08 7.77 6.57 2.01 13 4.29 6.38 3.97 4.26 7.38 10.1 8.57 11.4 5.37 4.01 5.95 6.15 7.9 0.9 7.22 6.76 1.2 4.75 8.54 10.8 4.29 7.75 1.2 5.9 6.9 12.3 6.57 3.89 0 7.11 9.37 6.59 3.06 10.9 0.9 6.16 2.53 2.29 2.82 5.7 9.19 9.33 0 13.3 0.9 5.54 0 6.13 0 0.52 5.75 7.63 2.63 8.91 0 1.2 10.3 5.44 8.41 2.41 4.55 4.27 7.42 0.94 0 6.47 5.32 2.63 3.21 0 4.5 6.72 0 4.23 3.27 3.27 2.73 7.04 13.4 8.25 3.27 7.72 2.53 3.51 11.8 5.08 5.55 1.2 6.82 10.2 4.13 1.2 3.97 9.54 7.8 8.56 2.99 2.16 2.29 6.62 7.78 0.52 0 0.52 6.11 4.93 8.72 7.32 2.73 1.2 8.98 0.52 12.1 0 13.6 3.4 13.8 16.2 12.8 0 11 10.8 10.4 9.06 11 12.9 10.5 8.34 10.9 10.8 11.1 11.3 1.45 11.1 11.4 12.1 10.4 10.2 8.66 10.2 10.5 11.4 3.67 9.74 2.99 3.27 8.95 3.71 11.1 4.71 9.72 10.2 10.2 10.6 0.52 9.44 10.1 7.93 10.2 9.53 10.8 12.3 5.47 10.3 1.2 11.3 12.6 11.8 10.8 11.3 10.2 8.11 9.72 10.8 9.99 0 10.6 9.3 8.53 8.16 10.9 11.4 6.62 10.9 9.6 6.98 12.1 14.4 12.3 11.3 10.7 11.5 12.5 10.1 10.7 4.87 9.37 0 14.1 13.7 8.62 1.45 7.75 4.01 0.9 5.21 9.27 8.87 11.3 2.63 3.93 9.98 15.7 6.85 9.04 12.8 10.1 9.9 7.05 10.7 10.5 8.6 10.5 9.69 3.56 0 3.93 10.5 0.52 8.84 11 0 6.04 2.53 3.4 7.19 0.9 7.46 7.99 0 11.9 7.69 0.52 0 5.37 8.09 9.69 5.17 11.3 2.29 11.6 9.56 5.68 8.7 7.3 9.63 11.8 6.75 10.7 10.1 12.9 7.11 13.5 12.9 11.6 15.5 7.11 12.2 13.3 6.26 12.4 7.1 9.18 7.9 6 8.05 8.62 1.66 8.91 6.37 12.9 5.3 8.11 3.27 4.45 7.6 6.75 7.24 4.5 5.68 6.13 9.45 9.01 7.14 9.96 6.45 7.73 5.81 7.28 8.58 8.39 7.96 8.14 7.51 7.19 6.79 8.22 3.89 7.26 5.78 11.9 1.45 0.52 2.16 4.63 7.51 7.17 6.05 8.37 5.59 3.61 7.64 1.2 2.41 8.45 5.22 0 0 3.97 5.63 4.61 12.1 4.73 0 2.16 5.41 0.9 6.79 2.41 8.55 9.35 4.2 8.57 5.29 0.9 6.32 2.41 6.54 7.4 7.76 2.16 7.64 8.52 9.53 0 10.7 10.8 9.3 9.95 12.5 1.66 3.89 0 9.5 8 10.8 7 5.9 2.16 2.73 2.41 6.61 7.67 6.94 12.2 0 6.59 8.31 6.81 6.3 7.95 6.04 9.86 8.07 7.88 6.8 8.22 12 0.9 1.66 8.15 0.52 0.9 12.2 9.95 3.41 6.7 5.03 6.91 1.85 6.82 3.56 0.9 5.65 7.46 7.28 7.8 1.2 1.2 6.16 7.31 7.41 4.95 12.9 11 9.51 13.1 3.81 12.5 9.08 10.8 3.79 13.3 8.28 11.3 7.15 2.29 10.3 9.97 9.29 7.86 10.6 8.72 11.5 7.01 0.9 11.8 12.4 8.77 7.27 4.42 9.48 10.8 10.5 10.4 10.7 10.8 11.4 13.2 7.38 3.89 10.6 0 9.12 9.34 0 7.33 7.72 9.73 9.4 7.18 9.21 0 2.29 9.22 10.7 7.74 9.56 11.1 8.7 9.57 9.78 7.24 5.27 10.5 9.54 1.85 10.6 10.7 8.66 7.28 7.7 10.3 9.34 3.21 14.8 10.3 8.74 6.71 8.87 9.81 8.75 9.38 10.7 5.4 9.71 11.1 4.33 9.99 10.6 9.94 11.3 9.08 8.4 9.55 8.57 8.18 9.81 9.25 9.12 5.89 8.54 7.15 10.7 7.49 7.02 10 6.75 10.3 9.63 9.62 10.9 9.56 8.8 3.06 9.52 7.02 7.32 7.33 6.92 10.2 8.21 7.92 12.2 10.6 9.98 11.2 11.8 9.45 7.42 8.84 7.71 9.77 11.3 7.02 10.5 10.7 11.7 8.32 7.82 8.87 7.06 6.04 6.5 8.82 6.55 10.4 8.71 8.69 10.3 8.85 12 7.53 7.66 2.29 6.82 8.66 11.8 5.27 10.8 7.48 6.01 9.88 7.85 7.91 7.59 7.18 8.59 12.3 9.37 8.24 3.62 11.3 12.4 8.31 10.3 12 9.53 8.25 6.98 0.55 10.1 0 3.27 2.16 10.5 5.32 9.74 5.9 4.39 0.9 6.66 4.68 5.93 3.98 7.51 4.53 9.65 11.1 8.11 10.2 8.88 8.45 1.2 9 8.26 9.49 6.61 2.82 5.6 2.42 10.2 7.54 6 2.29 9.24 11.4 7.84 6.91 8.52 9.54 11.3 3.51 6.05 8.89 10.9 8.81 10.1 9.41 9.84 9.44 8.16 6.84 7.68 11.2 10.6 8.61 8.21 1.66 7.6 2.53 8.19 7.98 8.68 5.71 8.24 8.34 9.09 8.72 1.2 5.44 6.83 6.95 7.72 6.22 9.86 2.73 4.58 7.22 4.71 8.24 7.47 8.16 9.52 9.77 8.71 7.46 0 9.87 10.8 8.73 8.33 9.11 11.6 10.4 6.09 10.2 0.9 9.33 8.44 8.12 9.88 5.4 7.66 8.88 9.4 9.16 3.34 8.97 9.11 10.8 8.98 8.75 3.67 0.52 8.55 8 10.1 9.69 8.98 7.08 6.66 9.12 5.12 7.74 8.93 8.01 9.75 7.71 4.23 2.53 8.09 8.69 8.1 8.74 8.4 8.84 7.39 11.3 8.45 10.3 7.74 7.01 9.53 9.12 9.6 11.2 10.3 11.4 0.52 7.8 9.49 5.81 9.48 9.1 7.27 1.2 8.05 6.85 8.54 8.6 7.42 6.94 5.1 1.66 6.23 5.62 9.98 6.52 0 10.7 1.66 10.8 9.23 8.89 8.03 11.1 6.45 8.21 7.24 8.59 3.14 9.68 10.7 8.73 8.8 8.66 7.5 5.93 5.77 9.82 7.62 8.36 6.44 0 7.74 7.98 8.52 0.9 7.69 11.7 9.16 11.2 8.52 8.54 8.62 8.27 5.08 8.13 1.85 9.63 3.14 7.43 6.67 7 11 8.47 10.5 5.55 6.29 5.08 10.6 6.69 1.66 8.53 2.41 5.92 6.33 1.2 8.27 8.77 8.3 7.6 5.98 9.68 7.72 8.5 0.52 11 5.21 5.24 10.9 6.86 5.05 4.95 2.29 5.26 8.33 4.89 6.49 8.19 0 10.2 2.63 0.9 5.12 8.14 0.9 5.81 5.32 5.95 8.35 6.56 2.29 7.66 6.98 8.18 10.7 2.01 7.85 8.85 7.19 8.91 8.54 8.98 8.66 5.87 9.23 9.77 8.48 6.1 8.92 8.95 5.29 11.6 8.43 4.29 10.9 10.4 9.44 5.27 6.54 8.43 5.77 7.54 9.65 9.66 10.1 7.87 3.27 0.52 10 8.71 7.87 7 3.45 7.99 10.4 6.6 0 5.41 2.91 2.53 5.71 7.56 6.54 6.36 9.86 3.89 9.15 2.29 7.24 10.6 9.6 0.52 7.22 7.76 4.54 9.31 0 2.16 9.79 4.2 9.52 7.81 8 7.53 7 8.76 4.63 9.2 8.36 6.73 7.07 10.6 4.45 3.89 9.67 7.47 8.71 7.95 6.42 2.63 7.29 6.05 10 8.48 2.01 9.36 0.9 12.5 5.88 0 8.45 10.9 8.56 8.57 7.31 3.21 8.18 9.99 9.08 7.91 8.82 9.02 9.53 8.49 7.97 8.08 6.43 9.51 9.48 9.13 10 3.34 0 0 6.74 2.99 8.07 5.62 7.78 0 5.22 2.53 0 2.82 10.4 12.8 1.2 3.89 4.13 9.26 6.48 0 8.7 4.98 5.24 3.14 7.92 9.73 9.64 6.52 10.5 9.44 5.45 9.8 9.74 10.8 12.1 3.34 9.73 9.62 10.4 10.6 4.93 9.24 6.41 7.43 8.36 6.72 10.5 4.66 7.19 10.9 5.22 7.9 8.38 9.37 9.47 8.97 9.38 9.32 5.22 2.53 11.1 9.28 9.29 9.19 9.72 9.47 10.3 6.13 9.14 9.51 8.5 3.34 11.8 9.65 8.26 9.01 11.1 7.24 7.79 8.08 10.1 4.47 11.2 8.97 4.26 7.76 0.52 8.55 9.03 10.8 1.2 8.92 5.45 6.59 9.27 9.88 9.04 12.3 10.7 3.51 10.7 9.06 3.85 6.42 10.1 9.47 4.93 7.39 10.6 9.06 4.29 10.1 11.7 4.01 6.79 5.24 5.84 7.99 9.41 4.58 4.66 9.81 7.11 1.45 9.59 9.99 6.45 9.3 3.81 12.1 4.87 3.81 11.6 6.29 3.21 7.44 7.43 10.4 3.4 11.2 11.2 9.76 2.29 10.7 8.62 9.69 8.46 7.88 12.3 9.72 13.2 8.8 12.8 9.36 10.9 3.97 9.32 4.42 6.09 8.39 6.12 2.29 11.3 7.9 10.7 2.16 2.73 5.84 9.06 3.4 7.4 8.36 7.03 8.86 2.53 5.65 5.78 8.54 6.43 11 8.16 10.5 9.53 7.76 7.88 6.28 10.8 6.2 11.2 12.4 9.59 12.7 11.7 12.5 7.46 8.51 6.98 4.93 8.73 4.13 10.7 11.2 11.4 9.24 10.7 0 10.5 9.86 11.1 10.1 7.98 9.37 3.01 4.33 5.98 2 10.8 8.87 8.38 7.89 9.62 0.9 10.9 13.9 6.5 3.14 2.91 7.64 7.7 5.58 10.2 5.99 10.8 11.6 14.6 4.01 11.1 0.52 0.52 0 11.1 12 8.86 5.81 5.21 14.4 12.2 9.18 9.12 1.45 7.07 3.51 1.66 11.7 0.9 9.94 9.47 9.09 11.9 10.7 6.63 7.2 9.28 7.81 9.06 5.85 9.97 10.1 9.41 8.21 7.07 9.62 8.01 9.71 11.4 9.23 11.8 3.06 8.36 3.89 8.79 9.06 7.51 8.77 9.67 1.45 8.59 3.85 7.24 10.9 10.9 10.2 11.4 10 8.9 8.77 9.13 10.6 10.5 2.53 0.52 7.23 9.75 12.2 9.14 5.05 9.49 8.04 7.92 10.1 5.31 10.8 10.1 11.3 10.9 11.5 9.35 5.16 3.81 9.94 0 8.1 11 0 10.7 10 8.92 10.1 6.52 8 2.82 3.89 2.16 9.45 9.86 9.55 7.8 9 8.16 9.97 4.36 8.91 1.47 10.6 6.33 9.96 10.6 1.45 11.4 10.3 12.4 9.89 7.7 9.32 11.2 9.17 9.5 2.04 10.8 9.37 1.85 10 8.96 7.34 10.1 7.03 6.82 2.01 9.27 9.55 5.08 10.4 11.7 7.84 9.97 13.7 7.44 9.99 7.73 11.8 8.43 0.52 7.82 8.24 9.24 8.33 13.3 7.35 10 11 12.9 10.3 11.2 11.1 7.69 13.1 10.2 6 10.1 6.13 8.18 9.51 0.52 5.3 0 10.5 12.2 8.73 2.41 8.02 0.9 10 11.1 12.3 9.87 4.89 12.7 8.88 10.5 5.12 11.3 8.94 7.16 8.85 12.3 5.97 8.4 6.74 10.6 6.35 6.08 3.14 0 10.9 1.2 2.29 2.29 9.35 2.01 10 4.13 4.93 8.33 11 2.01 3.45 2.41 4.13 0.9 2.53 7.22 3.51 10.1 13.5 10.6 8.65 6.18 1.45 6.57 2.53 8.09 7.51 1.85 8.93 7.63 8.39 7.1 6.84 6.59 2.01 8.63 6.2 8.36 1.66 8.16 11.7 9.99 8.66 9.44 0 4.23 2.82 2.91 2.01 1.45 7.78 9.71 10.9 7.23 6.98 9.4 9.67 2.63 7.55 1.85 3.45 1.2 0.52 9.4 5.34 3.97 9.73 6.36 9.85 8.27 9.99 1.66 6.06 10.8 10.9 9.55 8.61 0 5.22 7.95 10.6 9.36 0.9 8.75 9.28 9.12 7.89 8.54 4.13 0 1.2 11 0 6.26 11.9 9.1 1.66 7.77 8.95 8.66 2.16 8.72 8.74 1.45 0 2.82 11.8 6.61 6.7 7.99 8.47 3.34 5.22 9.17 8.91 7.39 1.2 2.29 9.49 2.82 6.68 10.1 10.9 10.5 6.42 9.2 9.67 3.06 1.85 7.9 11.1 8.73 8.75 5.91 2.16 6.27 6.99 0.9 2.74 10.5 6.34 7.27 9.47 7.78 7.85 8.58 10.6 6.42 9.79 5.76 1.66 9.96 2.63 9.18 0.52 7.78 0.9 10.1 0 2.41 0 1.66 7.74 10.9 7.52 6.62 7.99 9.97 8.09 8.77 7.65 2.01 11.1 10.7 8.77 8.29 6.83 2.41 0 7.75 2.82 8.77 9.76 7.18 8.99 3.14 10.1 10.1 4.2 7.04 6.87 1.45 6.7 1.45 0.9 9.94 10.6 9.6 11.7 10.2 8.36 8.49 9.11 9.27 1.85 7.36 6.69 8.89 6.19 9.15 7.54 10.2 7.9 0.9 8.26 9.84 9.26 7.3 8.76 15 3.06 4.09 8.23 2.01 4.78 4.84 10.1 10.2 7.58 9.94 6.89 6.12 8.65 9.7 0.9 8.69 3.56 0.52 5.63 6.74 2.91 7.79 9.86 10.8 9.02 7.95 10.2 7.85 8.17 8.44 7.98 8.78 8.42 7.02 6.21 6.88 3.4 8.99 8.66 1.2 9.03 9.57 10.1 6.92 9.73 6.15 10.8 11.4 6 10.3 9.74 2.63 9.44 7.51 7.17 3.85 4.71 8.9 5.84 9.27 8.69 10.3 9.81 0.9 6.4 9.32 10 9.77 3.45 7.88 7.09 5.01 2.01 7.94 3.14 8.56 4.78 3.67 5.38 6.5 4.5 6.97 4.33 0.52 10.5 12.2 11.1 7.9 6.74 4.82 8.51 9.89 8.36 9.81 8.99 10.3 1.45 12.3 6.81 4.95 6.29 8.86 9.52 9.76 0.52 10.1 8.8 7.87 9.65 10.2 7.36 7.95 8.53 8.51 8.81 8.24 10.4 9.44 10.8 9.36 9.37 8.76 6.65 7.13 7.62 5.8 6.58 12.3 9.95 2.53 8.44 11.4 8.69 9.1 7.89 9.26 4.75 8.61 8.46 7.61 11.9 8.57 9.05 7.47 9.98 9.51 7.98 10.4 6.28 5.38 6.96 9.54 9.69 7.51 6.87 8.42 0 10 9.67 7.42 10.4 7.83 8.23 8.93 9.25 7.65 9 9.2 10.4 10.2 9.09 1.2 7.65 5.67 6.84 8.06 0 9.58 8.49 10.5 9.19 10.3 5.84 9.15 8.27 8.5 2.01 4.78 10.8 10.7 4.8 9.21 8.33 9.17 1.2 10.4 0 8.05 7.39 9.29 6.91 2.82 7.28 4.13 7.81 8.23 6.48 10.3 9.22 4.97 10.3 8.19 5.91 9.02 7.4 7.59 5.82 7.16 5.63 9.76 2.41 8.92 7.52 1.2 4.36 4.13 2.7 9.96 9.14 9.7 7.17 2.29 4.47 10.8 7.81 9.04 7.64 10.5 1.66 13.3 2.82 9.68 7.46 9.77 7.68 10.6 5.96 6.67 9.81 8.47 4.63 10.7 6.35 6.93 10.1 6.38 8.88 9.08 10.4 9.72 5.4 7.06 0 9.46 8.77 9.68 0.9 9.74 6.75 4.29 13 9.29 9.85 2.01 4.73 1.85 7.87 9.07 7.55 3.81 10.9 8.63 10.4 0.9 2.53 6.02 9.35 11.5 7.28 8.3 9.22 10.8 4.82 3.21 11.2 0 9.5 9.04 10.2 10.2 10.7 2.41 9.37 0.52 9.79 5.24 0 6.31 8.65 10.9 1.45 3.9 6.09 6.6 0.52 4.16 2.63 9.57 5.87 0.9 3.27 9.1 9.37 1.85 6.98 1.2 10.3 10 6.93 5.55 11.6 7.31 10.3 8.77 5.48 0 4.98 8.51 6.88 6.65 8.19 8.66 9.44 3.62 5.85 8.33 5.55 4.05 5.51 7.98 8.53 14.4 6.67 8.04 4.75 6.06 10.7 9.8 7.64 7.61 6.06 7.39 7.35 8.72 8.85 7.18 3.62 5.48 7.16 11.9 9.26 11.4 9.06 11.9 3.06 7.6 0.52 5.58 5.3 10.3 9.67 5.68 8.18 0.52 2.41 10.2 3.14 6.04 3.76 9.46 7.73 7.61 9.37 6.95 8.39 8.15 7.51 7.59 3.85 0 6.45 6.42 10.9 9.75 8.45 10.5 9.55 8.54 10.3 9.38 9.09 8.9 0 5.43 10.4 5.16 9.2 9.53 9.42 9.27 6.64 6.68 1.45 9.82 8.8 6.72 6.59 10.4 10.7 8.86 9.22 2.29 8.35 3.14 7.88 4.93 10.5 10.5 10.8 7.7 6.22 7.74 9.81 3.14 8.71 10.9 8.45 3.14 7.77 8.77 8.09 9.12 8.14 9.22 8.45 7.05 9.1 5.8 8.09 7.99 0.52 9.21 9.87 7.47 8.48 9.07 9.56 13.9 2.29 8.12 7.5 9.86 9.7 10.6 8.26 9.9 1.85 6.33 11.1 7.34 8.65 2.53 6.24 3.45 8.95 10.2 9.72 4.91 4.01 10.3 9.54 0 5.19 13.2 7.64 8.94 9.24 2.62 1.85 11 10.4 9.41 5.84 10.2 4.5 4.13 8.22 0.9 4.75 6.23 8.71 10.3 7.18 6.99 9.91 9.75 7.37 7.54 10.9 9.28 8.14 8.71 8.61 8.54 8.25 10.6 8.65 3.56 0.52 7.74 3.89 2.53 9.62 10.3 14.1 10.4 0 6.47 1.45 9.79 9.34 7.07 7.95 2.29 2.16 7.64 0 10.1 6.87 12.6 9.11 6.02 0 6.89 2.16 1.66 10.4 5.16 9.25 8.84 9.31 9 6.27 8.09 9.44 9.07 9.91 3.21 9.71 0.52 3.76 12.5 9.3 10 11 8.05 10.2 10.2 9.48 5.06 5.38 8.6 0.52 6.31 8.15 2.91 13.7 9.46 9.35 10.5 7.85 9.8 12 2.99 7.46 4.16 10.1 11.6 8.58 4.84 4.91 13.4 8.42 7.54 7.37 10.4 5.19 9.68 8.88 9.38 8.43 10.5 3.34 4.71 10.1 3.97 0.9 0.52 10 4.16 6.38 4.91 9.11 2.45 2.91 13.5 8.54 5.35 5.35 1.85 9.75 8.83 10.8 10.9 8.95 4.46 11.9 12.1 9.85 10.5 9.89 13 11.4 11.1 9.85 9.51 9.46 7.46 6.53 6.54 11.8 8.01 9.85 7.5 3.45 8.45 11 8.89 9.07 4.2 10.4 7.24 8 11.1 8.5 10.1 7.64 9.13 10.9 0.52 3.06 9.66 2.63 8.75 10 9.63 13.4 7.49 4.01 4.33 5.3 10.8 1.66 9.7 8.7 10.7 5.51 11.2 5.44 9.76 2.31 6.25 2.16 9.54 7.55 4.45 8.89 9.75 10.3 10.6 8.8 6.01 12.6 8.93 10.5 8.76 13 12.3 9.15 12.7 11 11.6 12.4 12.3 11 9.47 0.9 10.9 11.5 8.18 10.7 7.77 8.79 10.8 8.51 10.6 11.9 11.6 3.45 7.63 10.3 7.78 10.2 9.72 4.99 13.9 0.53 9.13 9.9 10.8 5.08 5.29 1.2 0 13.7 9.52 10 9.41 9.97 9.09 10.9 12.9 6.01 8.97 11.4 10.4 8.95 10.8 9.89 10.9 11.5 10.2 8.85 10.9 2.16 9.92 7.29 8.47 2.91 8.39 6.81 12.5 9.58 3.34 2.01 0.52 6.75 12 11.5 13.1 9.06 11.3 12.1 9.6 12.4 9.44 10.4 9.7 9.93 9.68 11.7 8.72 6.4 4.93 3.45 11.7 6.87 2.63 2.69 3.27 7.5 4.45 7.66 2.53 12.2 8.89 7.9 9.17 2.01 5.8 9.26 9.28 10.2 11.1 7.78 6.07 6.45 1.85 2.16 10.8 10.1 3.62 11.3 10.7 0 10.3 7.32 2.82 8.78 0 12.1 2.63 12.6 11 9.59 7.8 8.9 4.61 10.6 9.35 8.82 9.23 10.3 1.66 2.16 6.91 10.7 1.45 7.74 8.11 10.2 7.7 5.89 12.4 8.34 9.82 9.87 0.52 1.45 7.47 0 8.39 10.5 8.66 7.13 8.89 7.49 9.69 13.9 8.91 10.6 9.6 9.92 3.56 8.43 10.4 13 10.5 10.7 9.99 10.1 9.94 8.91 10.5 11.4 10.6 8.91 9.63 9.26 10.2 9.93 11.1 10.9 10.4 10 9.28 10.6 1.66 9.16 8.94 11.7 6.96 9.69 9.36 2.73 4.61 10.6 5.43 1.45 4.8 9.29 3.14 9.93 10 8.85 10.6 10.6 9.23 0 2.16 2.45 9.46 11.7 9.81 8.95 8.85 8.75 3.67 10.7 11.6 8.82 11.6 11.7 9.54 10.1 2.16 3.06 5.59 11.1 4.05 1.2 11.4 7.08 10.8 2.53 0.9 9.53 6.56 6.68 7.49 11.6 9.03 7.76 5.21 3.4 1.45 0.52 5.32 8.6 6.32 10.4 8.01 10.9 7.17 7.4 6.52 11.6 8.03 5.65 1.45 0.93 0.52 1.86 4.89 7.43 3.15 7.44 10.3 6.29 8.48 4.8 9.57 11.9 5.75 0 7.82 8.49 10.9 0.52 7.89 9.62 9 4.63 8.25 6.47 3.62 6.84 9.77 10.4 11.7 7.57 5.08 6.25 9.82 4.2 9.83 11.7 1.85 10 9.6 9.56 0 9.97 5.77 8.24 5.89 7.05 6.82 8.92 11.6 9.33 8.76 8.4 7.49 7.61 13 10.3 8.74 4.87 10.4 5.68 0.9 1.2 5.7 9.08 10.5 9.6 0 4.42 2.73 6.22 0 6.95 10.8 8.75 5.95 6.92 9.32 7.44 0.52 5.12 8.42 6.89 5.45 1.66 6.01 5.03 4.09 7.15 8.6 9.83 7.56 10.2 8.11 6.36 10.5 10.2 8.62 11.1 7.72 8.48 5.35 7.64 11.5 9.4 9.69 12.8 8.83 7.39 9.33 8.27 10.1 0.9 9.25 10.3 8.87 9.57 2.41 9.24 7.25 10.3 10.1 4.13 8.55 8.44 10.1 8.77 10.2 10.4 2.73 7.55 9.64 5.77 7.99 0.52 1.44 7.61 3.71 7.22 10.3 7.77 8 6.88 6.37 9.17 8.32 10.3 1.2 8.57 4.97 4.5 9.12 2.16 9.65 6.63 9.48 8.74 1.05 6.88 1.2 2.01 3.34 9.72 5.43 8.71 12.3 1.66 8.11 9.45 7.42 5.27 6.41 11.4 7.9 11.6 9.49 5.97 10.2 7.76 9.91 5.47 9.19 10.6 10.3 9.66 9.11 5.52 7.69 8.69 8.65 1.66 10.9 5.21 6.78 8.2 10.6 7.24 10.1 10.6 9.92 8.96 10.1 4.99 10.8 1.85 4.5 10.2 7.24 9.14 4.73 3.56 9.24 10.7 10.2 9.71 2.29 7.74 5.47 9.04 11.5 6.5 4.81 8.83 6.13 0 1.85 2.16 4.68 7.4 3.45 5.01 9.32 12.9 7.07 9.91 10.4 4.95 9.36 10.4 9.62 10.9 9.34 9.04 2.29 10.1 11.8 11.4 9.69 7.05 6.2 1.66 8.98 7.67 10 10.3 0 6.35 9.95 7.8 9.83 9.27 11.7 8.48 4.61 8.28 9.24 9.08 9.98 1.66 10.4 6.25 6.91 7.41 12.1 5.12 9.89 6.11 2.63 9.03 11.7 1.45 9.74 3.27 5.51 8.08 9.7 6.06 7.8 3.71 11.7 7.24 8.1 8.14 9.81 9.94 4.29 10.1 8.63 8.37 8.71 2.73 9.64 8.94 8.94 0.52 8.23 7.41 8.74 6.66 0 9.81 7.06 10.5 15.7 7.33 8.32 10.8 7.67 6.73 5.58 8.76 4.71 4.09 7.43 6.52 10.6 10.4 6.61 6.28 6.95 2.01 10.1 6.52 8.44 9.56 7.67 10.7 7.14 0.52 10.3 7.03 9.02 8.62 11.4 5.89 0.52 7.62 7.8 8.65 7.09 7.15 12 9.42 6.07 7.49 9.89 2.16 4.56 7.75 10.5 0 8.85 3.93 8.08 8.38 5.64 0.52 6.56 6.91 9.22 6.53 8.67 1.85 7.19 9.31 9.45 9.29 8.55 7.88 7.27 11.1 10.6 4.42 6.33 4.5 8.62 8.14 8.88 5.38 10.8 7.06 11.3 4.45 10 5.41 10.1 9.68 12.1 9.69 11.4 4.75 9.43 12.4 1.66 7.87 0 6.66 6.94 5.75 9.06 5.16 0 2.53 2.29 0 0 0 0 7.06 10.7 2.53 9.97 11.4 5.96 10.6 8.94 3.56 6.42 7.63 7.83 13.1 9.09 8.85 4.23 5.64 10.8 10.1 8.91 9.04 9.57 1.45 8.28 8.47 3.4 4.58 12.3 7.38 2.53 8.71 8.56 7.83 10 9.11 3.21 10.5 7.87 5.99 5.59 10.3 9.92 3.15 6.46 9.35 6.12 11.5 9.98 11.6 7.79 10.4 11.3 9.35 4.84 10.8 8.96 10.9 10.1 8.75 2.99 9.67 10 10.9 9.11 9.55 12.3 10.3 11.5 10.3 9.39 5.12 10.7 13.6 6.56 6.47 9.68 9.55 4.63 9.2 7.79 9.97 11.8 11 4.26 9.03 10.4 7.04 7.55 7.26 2.91 11.4 11.6 4.58 1.66 8.8 8.91 6.98 2.16 5.64 2.16 0 6.74 9.56 8.62 7.67 5.45 3.06 5.19 12.2 7.31 4.09 8.36 9.26 12.5 8.16 10.1 5.5 2.73 7.84 11 7 10.4 8.83 10.6 9.3 8.59 10.3 2.63 10.3 9.38 9.34 10.9 9.07 3.97 9.11 4.84 8.39 7.62 6.58 11 9.18 9.03 10.3 7.11 9.52 11.8 9.57 0 11.3 9.63 9.89 5.67 0 11.3 13.7 0.52 9.32 0.9 10.5 3.45 9.86 5.77 4.84 0 4.53 6.93 3.85 7.71 10.6 11.1 8.1 0 12.9 8.47 9.03 7.87 4.26 7.75 9.47 2.16 4.5 0.9 7.95 7.36 9.35 11.7 0.9 9.65 9.56 10.6 8.41 11.5 10.8 0.52 4.5 11.1 3.14 8.63 0 5.58 3.76 6.76 3.14 10.3 8.27 10.4 4.36 7.88 8.48 10.9 0.52 7 0 8.07 7.34 5.34 8.41 10.5 6.13 9.04 5.9 4.82 8.48 11.4 2.82 9.48 8.1 7.24 7.86 9.95 7.24 10.1 9.96 2.16 9.09 7.77 5.85 9.63 9.02 10.5 8.98 10 8.14 9.12 7.24 4.71 0.9 8.9 4.42 12.4 7.97 0.9 11.5 8.34 8.39 4.33 8.34 9.26 10.9 10.2 10.8 7.86 9.8 3.21 4.99 4.71 4.53 12.5 2.63 8.87 2.91 9.47 8.41 8.57 7.68 11 14.5 12 10.3 12.3 3.62 4.42 8.56 7.02 9.61 10.8 5.37 8.33 6.84 1.2 9.15 8.98 5.99 8.85 8.12 0.9 10.7 7.47 10.3 4.99 9.74 9.77 8.97 2.29 8.95 7.02 5.85 4.23 4.93 8.39 4.13 7.29 7.26 9.41 9.43 11.5 9.29 5.69 9.05 5.63 1.66 9.99 11.8 10.6 5.3 8.9 3.71 7.83 6.95 11.2 10.2 10.2 0 0 11.8 10.6 6.42 8.5 5.6 11.8 8.37 9.96 11.2 11.2 10 9.58 11.8 10.6 9.11 6.98 11.8 6.61 9.44 3.39 7.76 10.6 7.5 11.8 8.26 8.97 9.57 0.9 10.6 7.85 14.6 10.5 12.1 11 10.1 8.9 9.48 12.3 10.2 9.4 11 8.11 8.84 10 11.6 10.7 7.22 10.1 6.88 10.2 9.95 8.05 8.65 11.6 10.3 7.87 8.55 9.95 8.38 11.8 8.45 7.84 9.24 12.3 11.5 3.06 7.4 12.4 7.66 1.66 14.3 11 12.3 9.39 9.16 9.06 7.55 12 10.5 10.2 11.5 10.3 6.71 11.6 8.05 7.26 11.6 5.64 5.86 2.82 8.76 2.16 8.41 11.5 5.87 14 13.3 9.7 11.9 8.78 9.64 8.97 12.4 11.8 11.3 8.54 10.5 10.1 8.74 6.42 9.24 9.69 11.1 9.8 9.06 7.7 8.39 9.15 8.54 8.37 9.15 14.1 11.7 7.63 8.68 9.75 6.42 10.6 5.7 11.9 13 9.92 0.52 9.89 9.94 11 8.59 9.52 9.16 9.24 10.2 11.5 7.66 10.1 11.7 9.36 10.8 10.3 3.27 9.95 11.9 6.95 11.5 9.19 8.78 10 10.7 9.04 10.4 11 4.73 8.26 6.63 8.01 10.3 8.87 11.7 8.93 0.9 9.12 3.4 10.2 5.08 8.63 8.69 9.51 3.14 9.66 1.45 8.15 5.65 16.6 1.88 4.33 8.94 8.89 8.51 9.43 9.4 5.22 9.66 9.02 8.26 10.4 9.18 8.52 10.5 3.76 8.04 9.95 4.61 12.8 8.23 10.1 7.26 10.1 7.6 11.7 8.92 13.1 4.75 5.41 4.58 5.17 7.61 10 7.71 11.4 7.59 11.2 7.96 8.05 9.07 11.2 7.36 8.17 12.7 6.96 8.72 9.91 11.1 12.3 10.5 11.1 9.1 9.58 8.87 12.1 6.46 11.9 8.42 10.8 10.5 7.96 8.65 10.2 8.26 10.8 10.3 9.97 11.1 9.87 4.2 10.4 11.1 6.02 9.9 12.5 12.1 10.8 9.02 10.1 0 11.1 9.46 9.04 10.9 7.83 9.19 8.42 10.8 10.3 10.5 8.91 9.93 4.84 9.07 8.54 9.41 6.8 8.82 5.45 10.1 10.4 8.25 3.21 9.98 1.66 7.79 8.7 7.77 9.72 3.71 8.12 10.7 6.69 7.59 7.46 8.85 2.01 6.72 8.11 7.81 8.32 8.42 7.37 1.66 9.36 8.95 9.19 7.36 11.1 10.5 2.16 1.85 6.46 10.7 10.4 9.44 10.3 10 9.87 9.25 9.52 10.1 11.6 10.9 10.7 9.99 7.78 9.29 8.27 11 7.94 10.4 4.8 10.9 9.24 11.3 5.63 10.1 9.6 8.58 7.63 10.2 11.5 0.9 9.44 4.73 7.82 10.4 11.8 9.55 9.55 6.88 9.5 11.4 9.24 10.7 7.63 6.17 3.27 9.95 6.12 5.29 9.42 10.4 11 4.26 11.6 9.45 8.77 8.75 9.04 10.1 12.2 7.79 11.2 8.69 9.47 10.8 2.16 12.3 6.67 7.39 7.6 11.1 12.8 1.66 6.93 4.36 11.8 8.73 7.91 13 9.07 6.18 10.3 4.36 6.9 0 8.82 10.8 10.4 8.99 12.9 9.06 3.67 3.14 11.4 9 10.4 10.2 2.66 10.5 8.91 9.58 10.2 10.4 12.6 7.76 8.43 6.7 9.04 12.1 8.99 12.4 13.2 8.65 12.3 1.2 11.5 8.09 10.9
-TCGA-BJ-A28X-01 6.3 7.18 9.2 10.7 6.78 8.52 1.65 3.55 7.79 4.99 7.65 6.23 6.13 3.8 6.77 8.67 10.6 10.6 7.26 10.3 9.2 10.9 10.2 3.03 9.71 8.96 2.88 9.26 3.51 7.55 6.21 5.25 6.35 3.76 4.07 0.45 2.2 5 3.03 4.91 4.92 3.37 6.48 1.48 5.27 4 0.44 5.04 11.2 7.04 2.2 7.04 8.96 10.4 5.07 1.65 6.15 1.65 6.57 5.43 8.44 6.44 7.52 7.77 2.83 2.75 5.84 8.9 10.2 5.4 4.6 7.13 0.44 3.72 2.3 3.55 5.8 5.53 3.27 1.65 5.89 1.48 2.33 5.73 4.29 0.44 5.62 0.44 1.28 3.03 10.1 5.75 7.06 5.4 6.33 4.32 0.44 3.97 4.7 0.44 4.21 5.4 1.28 5.87 2.41 4.32 8.15 7.71 7.87 7.19 2.08 0.44 9.7 5.93 6.52 1.81 1.98 4.87 1.65 2.3 5.43 4.27 0.78 2.75 1.05 6.58 2.08 2.75 1.65 14.3 2.08 1.95 5.07 6.03 2.75 1.81 4.96 1.95 3.17 8.13 10.3 10.8 1.05 2.3 4.85 11.8 0 10.3 1.65 1.28 4.39 0.78 5.78 10 10.7 4.97 4.62 6.3 10.3 4.72 7.41 7.34 1.28 7.21 8.77 6.22 6.87 5.87 5.36 3.64 9.86 9.66 3.15 4.56 5.38 3.87 5.36 4.96 8.77 6.31 6.3 7.84 4.62 6.12 4.58 2.75 3.09 2.5 8.64 4.89 9.08 10.4 4.07 3.51 6.24 6.52 4.49 8.02 8.72 9.42 9.7 9.6 9.22 10.4 9.53 8.38 9.08 10 9.95 10.2 8.27 11.1 10.9 11.1 9.06 8.67 8.01 10.1 8.02 10.1 8.73 8.57 11.5 10.3 8.96 8.46 0.78 9.69 8.82 12.6 9.95 5.88 9.06 11.6 9.28 7.27 10.1 7.37 11.3 1.81 10.7 9.24 11.7 11.9 12.1 11.6 11.9 12.4 6.59 12.6 8.49 0.78 5.52 8.76 8.63 12 9.64 12.3 1.05 12.3 4.27 10.4 6.61 9.96 10.3 10.6 7.78 10.8 11.3 10.1 8.11 8.4 9.27 9.49 11.2 8.35 1.81 12.6 9.92 11.1 11.9 10.8 10.7 8.71 9.37 9.36 11.3 10.4 10.8 10.7 7.74 7.76 10.1 6.67 11 10.2 10.2 12.2 8.36 8.45 10.6 12.3 11.6 10.5 9.53 12 3.21 9.03 7.62 8.8 12.9 9.01 5.62 8.11 6.91 10.6 9.96 10.8 9.19 7.31 10.9 11.6 9.72 10.2 9.8 9.41 11.2 9.03 10.2 9.42 9.14 8.04 10.7 7.42 9.66 10.6 7.91 7.34 7.68 9.9 10.3 12.2 9.68 10.8 9 12.9 8.82 9.41 12.1 9.58 9.82 3.19 9.49 1.95 5.59 9.19 7.88 12.6 5.42 6.55 9.01 10.9 9.64 10.2 8.58 6.08 8.13 1.28 7.65 7.45 9.11 11.4 9.48 11.5 10.9 7.06 8.56 11 1.95 8.63 8.17 8.73 7.29 8.13 10.5 11.2 5.75 10.5 8.62 9.78 9.32 7.98 12.3 9.61 7.76 10.7 10.3 0.78 8.51 5.48 9.72 10.1 10.5 9.23 9.9 10.5 9.59 10.8 10.8 8.21 8.49 6.82 9.86 9.08 8.54 11.1 9.44 9.45 8.46 7.93 9.76 5.98 6.86 11.7 5.98 10.6 9.94 10.2 2.83 9.4 11.1 12.9 8.9 8.57 6.32 6.97 9 8.83 7.82 9.87 10.6 11.9 10.1 4.04 11.9 3.21 7.43 10 0 9.39 4.1 8.68 6.72 11.7 8.34 8.38 4.99 10.6 10.3 6.23 7.94 10.4 11 3.03 11.7 9.1 6.04 6.96 8.34 8.31 7.43 6.59 8.01 8.21 9.78 9.98 9.18 10.2 10.6 6.63 13.5 11.1 3.17 9.59 9.4 4.04 12.2 10.1 9.34 4.32 4.76 10.1 9.52 6.19 13.3 11.2 6.84 10.6 11.7 11.6 12.3 14.5 9.24 10.6 8.19 9.59 6.95 6.5 11 10.9 0 10.9 5.78 11.8 11.3 10.8 11.9 7.19 8.73 10.1 7.83 10.9 9.13 10.8 10.7 10.6 9.11 10.2 10.2 10.4 10.1 10.2 9.54 8.33 9.03 12.5 8.08 7.18 9.46 10.5 11 10.3 7.94 11.7 10.5 0 9.97 9.24 9.32 9.42 9.42 10.2 12.9 9.87 9.19 9.08 8.73 8.74 10.4 9.07 8.44 9.73 9.74 4.07 9.33 4.13 8.95 9.37 11.1 11.2 9.69 10.8 10.1 8.75 9.02 11.2 11.8 10.6 10.6 2.08 13 10.4 10.9 10.2 12.2 11.9 12.5 10.7 8.32 10.3 9.66 9.6 0 8.5 6.3 7.2 8.04 10.6 11.2 9.6 9.03 9.94 10 9.64 1.65 6.68 10.8 8.61 8.37 13.6 9.83 10 10.3 11.6 10.4 12.3 10.6 11 2.75 10.3 9.8 8.02 8.22 10.1 9.72 6.86 9.76 9.26 11 11.6 10.2 8.18 10.8 10.3 12.2 9.74 11.1 9.34 10.9 10 8.46 8.55 10.9 8.89 4.16 8.55 8.57 1.65 9.91 11.8 11.2 4.89 9.59 16.6 10.7 7.14 9.53 9.38 11.8 11.6 11 15.3 8 9.86 4.16 7.8 10.5 8.67 6.02 8.56 8.58 10.8 10.9 7.86 9.26 12.8 0 7.17 10.5 8.53 9.87 10.7 5.73 10 10 9.46 11 9.15 9.3 10.7 7.11 10.4 10.2 7.87 10.4 9.35 13.1 6.52 7.62 7.79 5.39 9.05 11.3 8.47 13 14.2 7.75 8.02 13.3 11.3 2.9 7.89 6.36 8.68 0.87 7.41 10.3 8.55 5.04 10.1 10.1 6.3 8.72 10.7 13.1 9.46 7.3 11.7 11 10.6 7.35 1.65 8.54 10.5 6.3 7.52 7.8 5.03 10.8 9.18 10.8 7.05 5.32 7.03 9.72 10 9.02 1.28 7.08 10.1 7.43 1.05 4.89 11.6 10.9 5.46 7.72 7.86 6.31 8.01 9.99 8.59 6.13 8.52 13.6 5.48 10.1 12.1 11.4 10.7 12.3 8.99 11.7 8.61 6.56 5.36 11.5 2.67 2.49 1.28 3.92 10.3 9.81 10.4 0.78 7.94 9.6 4.76 4.78 12 13.3 8.05 4.74 10.7 9.26 0 9.97 10.3 10.8 11.4 9.7 12 9.58 11.4 10.7 8.52 8.93 12 9.36 7.89 9.1 9.82 9.31 7.37 12.2 9.75 9.43 7.34 5.34 8.73 8.94 5.78 1.81 6.41 12.8 10.1 1.81 5.27 9.76 8.65 11.7 9.52 8.15 6.82 9 0.44 4.21 7.05 9.38 6.8 9.32 8.59 9.18 2.2 4.32 1.28 10.3 9.54 7.52 12.1 9.17 8.61 6.34 10.3 11.2 3.51 8.47 4.49 8.2 9.01 11.1 10.1 10.3 10.6 7.53 6.26 8.38 5.48 10.8 2.3 2.96 8.33 9.15 6.05 4.24 11.3 7.78 9.57 7.61 6.73 1.95 9.81 8.55 10.9 9.39 6.16 8.94 10.5 8.68 10.6 10 10.2 9.22 10.7 9.21 1.8 5.55 3.83 11.6 9.57 12.4 0 10.5 9.66 11 9.79 11.1 8.16 7.18 11.3 10.6 10.4 2.67 12.3 1.05 11.6 5.66 10.4 10.2 7.06 2.2 9.64 11.8 12.1 10.6 8.89 9.98 11.6 9.71 10.5 10.3 10.1 9.2 11.3 12.8 11.2 12.4 11.6 11.9 7.2 11.1 9.06 7.71 7.45 9.88 10.4 12.1 12.7 10.3 9.62 9.72 7.99 10.2 10.7 8.85 9.85 12.8 6.66 11.4 9.89 10.7 10.5 5.56 3.21 12.5 5.63 10.3 6.37 8.79 8.08 8.69 6.87 8.78 5.57 3.83 3.8 9.65 9.29 3.03 12.1 9.56 10.1 9.11 9.6 7.4 9.52 9.03 9.92 9.22 4.58 6.77 2.5 6.91 11.1 11.5 7.97 12.3 8.62 7.61 8.31 11 9.45 9.18 9.14 0.44 9.09 10.3 9.91 11.1 10.8 9.94 9.25 11.1 10 11.8 10.5 6.78 2.2 9.79 6.25 8.72 11.2 8.94 7.57 11.8 10.2 9.18 9.6 6.87 3.83 10.8 11 13.2 8.87 6.81 10.7 9.28 7.76 6.4 10.1 2.41 7.47 8.93 12.4 9.88 12.5 7.87 8.8 9.25 8.25 6.25 9.65 6.76 9.9 7.08 7.97 9.37 11.4 10.5 10.7 9.5 7.49 9.98 4.42 8.79 8.86 9.1 0.44 8.26 3.94 8.37 6.3 10.5 2.3 9.47 8.03 9.68 11.5 9.83 10.3 3.64 10.6 6.76 7.35 1.48 5.52 11.9 10.3 6.62 6.66 4.29 9.12 7.79 8.91 8.51 13.6 11 10.1 6.26 10.1 9.31 9.73 12.4 10.9 7.16 9.79 9.26 10.9 6.4 5.42 11.7 9.97 8.09 9.06 9.77 12.3 6.91 9.9 9.06 9.39 9.13 7.82 11.3 0 9.36 9.92 8.26 8.56 8.99 10 11.5 10.3 8.54 7.78 9.18 7.26 9.28 10.3 8.16 12.6 10.7 8.91 10.2 8.53 1.05 8.42 7.95 10.4 6.63 12.9 7.55 5.79 8.65 8.13 9.68 11.7 7 9.56 9.3 10.1 8.73 8 10.7 7.08 9.1 7.75 9.73 10.4 6.78 6.17 3.31 6.32 7.63 5.99 9.92 7.32 9.41 1.28 1.48 10.1 10.8 8.23 10.3 9.51 9.16 7.67 10.6 2.59 11.3 6.88 9.04 8.51 8.67 7.81 9.74 9.84 8.03 6.14 1.48 4.79 7.28 11.3 8.25 9.81 8.06 5.54 10.7 7.82 9.91 9.16 8.42 3.03 8.35 2.41 11.8 9.17 8.65 5.55 8.91 8.72 8.57 10.3 10.3 10.2 9.52 7.48 10.2 11 8.04 11.2 10.9 3.03 9.72 4.42 10.6 6.74 8.24 11.4 11.8 4.13 11 7.22 4.76 11 2.67 2.67 8.63 9.26 1.28 10.1 11.9 9.72 10.7 6.45 9.11 10.3 11.3 10.1 9.71 10.3 7.8 5.47 11.1 10.3 1.05 11.4 8.48 10.8 9.21 11.6 10.3 13 11.6 3.72 8.06 8.91 3.97 11.2 10.7 9.36 10.3 9.46 10.9 7.79 9.82 2.5 11.6 8.47 7.59 2.59 7.88 2.75 7.25 8.72 2.59 8.2 7.99 11.3 2.9 6.86 7.05 10.9 5.85 8.28 2.59 8.96 8.62 3.76 3.81 10.2 3.6 2.08 4.62 8.01 8.25 3.55 2.3 8.8 5.44 7.47 0 0 7.39 6.09 9.27 7.5 8.91 8.95 7.83 0 9.27 7.28 2.9 10.8 6.22 8.95 8.9 8.22 4.85 11.7 4.16 7.25 9.42 7.86 8.65 7.27 6.32 8.33 5.08 5.74 6.01 5.89 9.14 12 1.28 8.72 8.27 4.89 8.74 9.12 8.96 4.51 8.74 10.5 11.1 8.44 9.08 9.68 4.94 6.8 0.44 9.17 5.72 8.35 12.7 8.07 8.84 9.15 10.6 9.22 8.19 6.12 10.5 9.38 10.5 6.6 3.6 9.03 8.78 8.07 8.12 10 6.05 7.18 9.82 8.62 12.1 9 4.47 4.51 8.69 6.12 10.9 12.8 5.92 7.46 8.07 9.03 11.6 10.1 5.75 9.94 8.25 9.77 9.68 7.41 10.5 7.59 6.73 5.45 0.44 5.13 7.03 6.04 7.22 8.56 8.3 5.71 9.15 6.6 2.75 5.89 9.28 8.38 1.65 9.25 9.37 1.95 6.7 7.86 1.65 5.75 7.83 5.41 9.89 9.16 8.26 9.22 6.86 11 8.16 10.8 7.78 10.4 10.6 5.32 8.68 3.08 9.02 7.74 9.45 8.37 7.15 10.1 5.1 8.2 5.9 7.15 4.58 6.29 1.95 8.73 4.29 6.5 6.46 4.72 0 9.17 0.44 2.59 9.06 9.98 5.71 8.73 9.14 0 5.62 6.48 7.4 9.41 9.33 2.59 8.59 8.07 4.49 5.93 8.84 10.3 12.3 8.12 8.01 10.2 7.91 4.72 8.41 5.83 3.97 2.08 8.67 8.72 3.21 10.3 4.82 7.31 9.28 12.8 9.6 9.43 0.78 2.96 6.73 10.2 10.3 7.05 7.29 12.4 0.78 6.33 10.1 8.62 7.46 8.99 5.9 9.38 0.44 6.59 2.08 8.05 0.78 8.28 9.12 7.25 7.84 9.19 11 5.82 3.94 1.95 9.89 8.17 9.71 5.87 8.81 7.45 8.15 8.35 5.31 7.75 10.2 16.8 12.8 10.3 2.96 5.49 7.54 7.3 0 11.6 11.3 8.48 9.25 9.72 4.13 7.23 9.9 11.3 12.6 8.01 9.73 7.22 2.2 8.53 7.18 10.2 5.67 5.71 10.1 8.23 9.56 10.5 2.41 12.2 11.1 5.08 2.67 7.37 11.9 10 11.3 9.86 4.89 7.88 13.3 1.95 8.76 9.19 3.87 8.89 8.84 9.69 7.55 7.19 10.4 0.78 1.81 0.44 7.56 4.68 3.97 4.6 6.44 6.96 9.4 8.21 7.82 7.62 8.8 6.94 6.42 9.07 9.07 8.98 2.9 8.06 9.32 6.02 10.2 8.55 9.34 8.82 4.24 11.7 6.26 9.19 3.83 7.97 6.37 7.53 8.33 6.16 7.49 9.15 8.29 2.67 9.42 9.18 4.32 4.29 8.92 6.33 4.37 8.65 9.26 2.59 7.68 2.73 10.5 1.05 9.19 7.45 6.93 1.65 3.6 7.35 9.79 2.08 2.59 8.2 9.98 5.2 3.55 7.81 8.54 8.49 11 9.11 7.84 9.37 8.66 8.1 12 10.4 5.28 4.54 9.21 8.9 6.31 6.07 2.3 7.16 9.64 8.9 4.59 4.4 1.05 5.72 0.78 6.24 9.38 8.56 10.5 8.26 4.13 8.67 8.34 9.92 9.89 8.34 7.72 8.47 7.64 5.22 13.2 8.29 9.02 1.65 8.3 1.65 8 7.68 2.3 7.53 3.37 7.2 10.1 1.28 9.32 8.29 2.83 7.76 6.55 8.29 5.19 7.5 6.19 8.14 7.03 5.86 8.38 3.83 2.08 7.95 5.3 2.5 4.49 6.36 6.8 6.58 9.62 9.02 9.16 4.66 10.7 9.2 7.16 10.5 7.27 7.85 8.59 7.45 8.42 7.75 2.96 8.76 5.43 11.9 7.8 4.64 12.2 6.73 2.96 6.77 10.6 8.53 11.1 8.06 6.72 8.94 6.06 4.27 6.74 1.28 1.05 5.72 9.96 1.05 7.47 0 3.17 7.32 8.6 4.94 9.28 4.07 3.37 10.7 8.8 5.6 7.5 9.14 2.71 2.67 10 4.6 6.42 0 8.59 15.8 7.26 8.76 8.51 15.4 10.1 3.6 0 7.59 8.73 5.24 11.1 0 7.53 8.99 15.8 4.27 7.2 12.9 0.44 9.31 0.78 6.94 10.1 9.16 8.41 0 9.66 8.61 8.98 7.97 13.1 7.36 7.1 5.27 2.83 9.86 7.01 10 7.57 10.4 8.34 4.35 3.15 4.54 5.07 11.7 8.85 11.9 9.23 9.67 11.8 7.78 7.2 11.9 8.7 12.6 10.4 7.15 13.2 8.91 6.63 7.51 7.83 11.9 3.55 8.04 8.72 11.2 7.33 9.81 9.19 9.21 7.08 7.43 7.96 0.78 7.39 8.05 6.45 3.37 0 10.1 7.93 11.5 9.31 6.18 6.42 4.27 7.62 10.2 8.52 5.41 7.56 5.93 5.65 10.4 8.73 3.37 8.76 0.44 0.78 9.67 11.4 5.66 9.75 11.4 5.81 5.1 8.29 1.65 8.85 6.58 9.4 6.85 8.94 5.94 4.42 5.41 5.52 6.87 4 10.5 8.52 2.3 10.7 12.6 8.17 6.5 7.93 11.8 1.05 10.8 11.9 8.84 11.9 9.46 8.29 0.44 9.47 8.48 0.44 9.17 2.5 0.44 7.91 9.23 7.29 8.31 6.67 9.69 0 0.54 7.95 11 7.48 7.48 2.5 6.97 2.26 7.81 8.71 8.16 12.4 8.02 8.46 8.71 7.91 9.94 3.46 8.28 3.26 8.92 7.66 3.6 6.68 6.53 1.65 11.4 3.87 6.89 10.8 8.72 10.5 10.3 3.26 2.67 8.17 9.89 11 8.07 7.59 8.63 10.2 8.02 8.31 6.39 7.35 7.64 7.02 9.46 7.31 8.24 10.3 9.47 6.45 7.62 10.7 6.32 7.04 10.3 5.88 9.96 8.92 7.83 11.7 10.2 10.2 9.73 3.01 6.3 7.73 9.51 3.55 9.71 5.8 9.25 0.44 9.69 8.06 1.05 5.39 5.08 3.64 7.72 1.05 11.4 4.47 2.41 11.9 5.35 2.9 12.8 9.8 11.8 7.89 8.84 4.45 7.01 6.75 8.14 6.26 7.16 7.05 9.79 9.4 9.24 9.13 7.93 8.7 8.22 6.52 7.28 9.76 2.59 4 10.7 3.8 10.5 11.6 6.57 5.82 5.53 5.35 7.68 10.5 7.51 2.5 8 9.26 6.67 5.42 5.42 10.2 9.03 7.43 4.58 11.4 8.33 2.08 11.5 11.3 8.11 5.24 9.04 7.52 6.12 7.24 6.12 8.11 8.48 10.1 11.1 8.3 0.44 1.48 9.99 10.8 7.16 10.8 11.2 6.95 7.56 4.43 9.41 8.74 9.35 5.72 9.77 9.92 7.31 4.62 7.78 10.9 4.29 6.83 8.77 10.2 7.7 2.83 7.71 8.74 2.41 0.44 9.87 3.78 4.64 5.22 8.87 7.39 5.24 6.39 5.62 8.5 5.62 7.91 10.9 9.53 9.55 7.26 0.78 10.2 10.1 3.31 9.14 9.28 3.93 7.07 7.15 8.81 4.27 6.65 10 5.26 10.7 1.05 9.79 6.42 8.66 10.2 2.67 1.81 11.5 8.66 6.47 3.55 2.75 3.51 2.59 4.56 1.65 6.58 9.82 1.05 8.86 12 10.2 11.4 8.71 10.8 9.99 8.23 5.1 10.1 10.5 7.16 9.76 8.63 10.9 3.55 2.67 8.47 7.75 5.96 8.54 8.66 6.93 8.62 9.63 9.71 7.15 0 0 8.25 8.33 9 9.68 8 7.58 10.7 2.41 4.74 7.58 8.18 2.75 5.3 11.8 8.44 7.96 8.29 7.65 8.14 0 4.74 3.94 10.9 9.31 0 4.64 6.6 3.94 9.75 4.74 8.47 7.9 11.2 8.59 8.9 12.2 3.09 2.96 5.94 11.9 2.9 7.25 11 6.91 0.78 8.38 7.03 9.6 2.5 7.48 7.44 8.33 9.05 9.97 7.41 6.23 5.57 4.43 1.81 5.95 9.07 0.78 9.54 1.05 0.78 11.3 8.96 7.11 8.53 0 2.2 9.35 12.1 7.9 1.48 11.5 2.41 8.17 0.44 9.22 1.65 8.56 6.99 6.41 7.87 1.28 12.3 8.06 6.96 4.92 10.8 2.5 8.55 3.09 11 8.5 6.02 0.78 7.59 0 3.09 4.54 0.78 0.44 7.42 1.48 0 6.28 0.78 9.73 1.05 9.05 3.76 5.87 9.33 4.31 8.56 4.85 7.09 9.61 5.34 12.7 0.78 10.5 5.88 9.08 10.1 7.89 9.66 2.2 1.05 10.1 2.96 5.27 7.41 6.87 5.9 11.6 5.59 6.37 8.22 3.46 7.25 2.96 7.59 7.73 8.36 3.64 9.15 5.72 9.26 1.48 10.9 8.2 7.16 8.18 7.41 6.89 2.2 0.78 9.18 6.36 9.06 7.15 6.08 8.9 6.4 6.63 7.84 6.41 8.75 8.85 3.83 6.62 6.93 6.38 8.8 5.47 3.46 7.29 9.33 6.91 9.06 4.94 6.52 6.19 7.23 6.12 2.2 5.59 8.27 3.26 7.95 6.08 8.56 6.62 8.03 9.28 7.83 8.59 8.84 4.13 2.41 11.1 0.78 1.81 4.72 8.89 10.8 6.18 1.28 10.1 6.65 8.07 9.43 2.75 11.8 9.61 0.88 9.55 6 5.99 2.67 8.18 1.81 4.27 7.3 8.68 8.95 9.28 8.63 1.75 8.2 7.65 5.1 3.26 13.2 11.5 6.82 8.95 5.73 6.52 13.7 10.3 9.75 0.44 8.35 12.8 0.44 5.74 8.84 0 0.44 2.67 4.04 4.66 3.83 7.29 3.72 2.5 7.71 9.39 7.18 6.31 8.23 1.36 5.24 7.48 7.85 8.97 5.68 7.16 3.64 9.77 5.17 9.21 2.83 6.86 3.51 8.82 7.94 9.91 5.61 8.28 7.35 3.68 4.92 8.68 5.04 18 8.86 14.2 8.07 2.75 10.5 6.45 10.3 9.61 6.69 3.46 5.57 3.9 8.09 8.21 9.32 12.8 6.36 4.18 6.63 2.3 5.37 4.68 10.6 4.66 5.28 8.62 7.22 11.1 1.28 6.28 2.83 5.55 6.13 5.21 8.74 2.2 6.49 8.32 10.3 11.2 4.35 2.5 5.62 1.28 5.75 1.28 12.4 6.98 10.6 9.45 7.13 8.6 4.58 12.8 7.86 10.5 9.72 1.81 4.68 6.77 6.24 2.08 10.8 8.23 7.85 7.57 12.5 4.27 7.38 9.43 11 7.04 9.06 8.33 3.8 8.06 8.55 10.6 8.09 4.97 7.83 5.42 7.99 3.15 7.28 5.46 5.52 8.28 8.57 1.28 4.87 8.72 8.5 2.83 8.45 11.2 7.99 9.71 9.42 10.8 7.2 7.98 10.3 7.98 6.62 11.1 10.9 9.1 6.51 11.2 7.51 2.67 2.2 4.47 10.2 7.39 6.74 5.16 8.09 0 11.2 5.73 11.2 8.43 6.78 6.6 5.3 8.96 0.44 6.51 3.68 3.86 7.45 11.5 4.94 6.9 8.2 4.35 0.78 7.82 10.6 0 9.88 10.3 2.62 5.47 8.97 0 9.17 6.53 7.62 8.67 9.73 0 2.59 4.32 9 5.34 7.42 10.1 3.26 3.68 11.1 4.8 4.51 9.62 4.98 0 10.2 3.21 5.17 8.69 8.05 8.2 5.08 5.53 0 10.4 5.69 9.82 9.71 8.53 1.81 2.2 10.4 5.59 4 1.61 4.97 9.75 4.18 9.94 1.48 2.41 3.94 7.14 6.3 5.84 8.74 5.42 0 8.52 4.18 7.55 3.72 10.2 4.4 9.84 3.21 5.57 5.58 0 5.2 9.18 6.07 7.2 5.02 8.03 8.59 3.03 8.57 5.53 1.65 2.3 5.14 2.2 6.88 6.34 6.29 4.6 10.7 8.25 9.56 5.45 11.2 3.21 1.48 9.38 6.34 5.61 10.1 4.13 2.41 11.6 10.6 1.28 10.5 3.03 3.87 0.44 0 11.3 8.46 6.45 5.46 12.4 8.92 0 7.69 11.5 8.78 9.89 7.18 8.79 5.42 6.34 6.17 7.91 8.64 10.3 12.2 4.1 9.04 6.36 8.93 9.67 2.75 2.67 11 9.1 5.46 7.93 6.42 2.83 10.5 0.44 6.71 10.5 0.78 3.15 11.2 1.95 5.05 7.3 3.68 5.05 11.4 10.9 4.07 11.3 7.88 7.48 9.9 6.65 10.7 7.94 3.46 3.37 4.16 5.3 2.08 7.26 5.4 6.13 10.6 9.5 9.38 7.38 7.24 7.04 9.32 5.92 8.26 4.07 8.92 6.44 1.05 12.7 6.91 8.45 8.27 7.22 6.77 7.56 7.32 6.49 5.61 8.07 9.13 5.13 5.85 7.39 9.72 6.52 8.84 7.85 5.49 9.54 5.41 13.1 6.56 11.1 8.33 8.7 0.44 9.21 8.15 0.44 4.49 6.89 9.31 9.3 11.8 11.2 3.8 8.8 4.18 12.7 4.82 9.45 1.05 3.26 0 6.32 2.3 6.17 2.26 10.5 4.92 3.76 9.41 11.9 9.79 13 12.2 4.72 3.83 5.28 4.4 8.54 6.73 11.2 7.87 12.9 13.8 4.74 1.65 11.7 7.02 3.42 10.4 1.05 10.2 3.26 7.22 13.2 11.9 3.03 8.66 9.23 9.32 0.44 7.64 8.32 11.1 10 6.51 8.97 7.92 6.98 7.57 5.46 11 9.15 1.28 10.3 3.83 9.88 1.28 5.65 6.2 5.97 6.05 3.94 8.75 3.26 9.15 7.22 6.52 5.45 7.89 3.03 9.01 8.21 2.59 5.04 9.73 6.81 3.6 4.21 8.64 8.64 5.43 9.71 6.78 2.5 0 11.2 9.49 9.67 5.87 6.47 7.56 5.63 13.2 1.65 5.84 7.7 5.63 0.44 8.06 8.37 5.05 10.1 7.97 2.5 10.5 3.46 5.76 4.35 5.61 4.68 11.3 7.8 8.94 9.16 5.32 10.3 6.11 10.8 9.39 1.05 6.18 1.65 7.63 11.7 6.69 10.3 3.15 9.87 9.98 9.24 9.1 10.4 7.57 8.09 6.07 9.47 11.7 9.5 12.2 6.83 8.87 6.74 11.8 10.2 9.91 10.3 10.5 6.71 10.4 9.25 11.3 5.14 2.67 2.2 4.78 9.56 8.69 6.59 6.68 6.44 8.3 8.71 5.63 5.48 2.75 8.44 3.68 6.17 9.76 4.92 7.19 10.7 13.4 9.26 4.7 11 11.6 11.3 10.8 7.26 8.65 5.84 11.1 10.5 10.2 8.84 8.69 9.43 11.2 4.78 9.26 8.44 11.8 9.99 10.5 12.9 1.28 10.2 0.78 1.48 9.61 10.7 6.17 3.26 12.1 10.1 8.47 12.2 8.21 11.8 13.7 9.61 9.07 9.04 8.92 7.92 7.88 8.64 11.9 7.77 10.9 7.86 11.8 13.3 8.99 3.76 7.26 0.44 9.6 10.3 9.65 11 10.9 9.9 7.65 10.8 6.26 9.35 10.2 7.63 8.16 8.66 8.04 9.27 13.7 0 9.85 11.4 11.1 9.77 7.87 5.77 9.95 10.2 8.31 8.69 6.29 9.09 11.7 8.77 9.62 11.5 16.7 0.44 3.15 8.27 9.64 7.19 8.6 8.59 12 12.9 14.1 15.8 10.2 10.8 5.63 7.48 5.48 9.35 9.82 4.91 3.68 6.23 11.3 8.81 10.4 11.9 9.93 12.6 7.31 6.6 9.19 11.9 6.78 3.83 5.58 8.57 0.78 8.04 6.64 5.34 9.64 2.83 7.58 10.6 9.34 10.1 10.2 9.53 8.03 10.3 5.42 8.76 11 9.62 0.44 9.83 11.6 7.64 3.03 12.2 5.07 8.25 10.5 5.03 3.15 5.95 0.47 9.88 5.37 5.91 6.23 9.08 8.23 12.7 6.82 8.68 8.71 2.75 8.85 10.2 13.6 7.7 13.4 9.17 7.34 11.9 12.8 14.3 12.1 12.4 0 9.46 2.96 10.5 5.66 6.86 10.7 0.44 1.48 7.92 8.93 1.65 11.2 7.68 4.42 3.15 7.83 7.28 7.81 8.84 6.72 9.55 4.1 7.48 7.92 9.99 7.72 0.78 7.46 13.7 11.2 9.37 0 3.21 10.3 9.8 6.4 8.99 11.4 0.44 3.15 4.96 2.2 10.6 10.2 6.11 9.47 7.42 1.28 7.96 4.8 8.68 1.48 9.76 0 0.78 1.95 9.65 7.11 5.48 6.04 10.2 10 7.04 7.18 10.3 6.66 4.51 2.9 7.38 10 9.3 7.98 8.33 8.56 4.24 8.48 9.61 8.2 10 10.4 7.71 8.33 6.21 10.5 7.1 9.75 3.87 11.8 8.48 6.77 7.82 7.05 9.05 6.69 9.23 9.19 2.67 10.6 4.99 10.2 2.96 9.46 4.74 10.7 7.56 6.67 10.4 0.44 1.05 8.96 8.77 8.33 1.65 12.6 7.44 1.28 3.76 7.06 2.41 9.98 9.45 8.68 7.73 9.96 9.31 5.96 5.34 7.56 6.9 6.05 12.1 7.64 2.41 13.8 7.52 9.6 1.65 0.44 3.8 10.2 6.36 7.45 7.8 11.7 7.98 11.3 10.8 6.57 7.91 13.5 9.07 4.21 1.48 5.61 8.63 9.18 5.22 7.73 8.57 8.12 10.4 11.8 7.53 12.4 7.2 10.5 8.23 7.15 9.82 10.7 10.6 5.67 9.73 11 11.8 8.28 8.97 0 11.7 6.3 9.49 2.83 11.2 9.23 3.64 6.3 9.75 8.57 10.3 6.59 9.21 8.16 8.21 8.83 9.08 9.27 0 9.45 9.55 11.5 11.4 11.1 9.23 2.5 8.25 12.4 2.5 1.65 10.8 9.81 8.34 4.24 11.8 2.5 8.59 10.1 8.09 10.5 9.08 8.99 8.5 10.7 11.9 7.65 10.9 10.7 8.55 11.4 10.4 4.29 8.73 0.78 11.1 9.7 10.1 10.1 8.26 12.3 10.9 10.1 3.03 7.25 9.8 10.6 0.44 10 9.77 7.52 9 10.4 11.1 1.95 12 9.49 10.7 3.37 8.2 9.73 2.83 7.27 12 7.39 10.6 7.59 0.44 10.7 7.57 9.4 6.41 9.16 8.39 1.28 7.76 5.59 11.6 1.65 10.6 8.72 6.14 0.78 11.3 7.28 5.86 7.98 7.65 8 7.37 2.3 10.5 10.2 10.6 8.78 11.1 11.1 3.37 8.65 8.03 8.75 11.6 10.7 8.09 10 8.01 5.58 6.33 9.67 9.29 10.9 2.59 6.59 7.6 6.84 5.82 10.2 2.41 10.3 12.8 6.13 7.08 8.56 8.12 11.1 6.74 5.87 6.55 7.56 8.25 8.53 10.8 8.12 8.73 8.11 1.28 10.9 10.3 8.78 9.95 12 5.68 10.3 4.8 5.73 8.1 7.31 7.54 2.41 4.68 4.96 5.35 5.13 10.7 0 9.94 10.2 9.13 3.15 3.46 2.59 2.2 4.82 8.26 5.35 4.24 9.65 7.05 7.88 1.05 7.45 8.46 7.09 10.2 7.21 8.47 5.84 12.2 5.52 9.63 7.34 6.46 9.18 10.8 2.75 9.15 7.38 7.87 4.13 11.9 7.93 6.77 5.23 9.93 8.8 9.75 7.94 10.5 7.17 9.57 9.17 7.39 6.77 7.19 10.7 11.3 4.18 2.61 2.83 3.6 7.25 8.98 3.31 6.37 8.53 7.45 11.5 2.08 9.47 9.93 4.6 8.01 6.7 7.56 4.57 9.4 4.96 5.38 11.3 7.74 2.59 9.74 8.54 7.73 8.89 7.59 8.77 1.05 9.06 9.22 7.25 3.37 9.3 9.49 9.81 9.22 9.55 6.59 2.96 10.8 8.52 9.02 9.01 5.87 8.94 10.3 6.93 7.84 6.11 3.87 9.32 7.7 3.73 9.75 10.5 8.98 2.59 0 2.9 6.92 0.78 7.84 10.2 0.44 7.79 5.56 5.69 3.51 5.45 7.94 2.96 5.02 11.5 8.98 9.66 6.51 8.26 8.95 8.53 9.2 12.2 6.37 9.24 7.74 8.66 5.84 0 7.72 4.51 6.29 7.23 7.42 6.56 13.7 9.94 5.36 3.64 9.74 3.83 9.19 9.47 6.17 10.4 8.66 8.45 11.3 11.3 9.22 8.35 12.2 8.85 8.64 0 11 7.48 10.3 10.2 9.92 6.52 11.7 3.6 12.2 10.2 11.2 9.3 6.09 11.1 11.3 10.4 1.05 8.25 9.76 7.75 11.4 9.96 10.3 11.2 9.34 3.23 2.3 8.91 10.2 9.36 10.5 7.51 9.04 7.68 8.52 2.41 9.67 9 10.3 10.2 10.2 11.6 9.22 10.7 5.2 9.58 8.32 9.99 11.2 2.96 12.3 7.36 8.65 9.16 9.94 10.4 10.4 9.49 10.9 9.68 8.74 11 12.3 9.41 7.74 10.2 8.29 10.1 10.6 10 5.61 10.7 10.1 2.2 9.48 9.81 8.84 1.95 10.2 7.15 10.6 9.3 10.2 9.93 11 10.7 10.3 9.2 8.27 11.8 8.12 7.29 10.7 0.44 11.2 11.5 9.79 8.66 7.91 8.27 10.4 8.88 10.3 10 10.7 11.2 7.71 10.3 8.77 10.3 10.6 10.6 7.08 8.02 11.4 9.72 9.59 1.95 8.72 9.96 7.5 1.95 3.21 8.04 8.25 2.9 11.6 8.22 1.65 11.5 8.74 8.65 1.65 9.91 12.2 0 2.2 0 10.9 11.8 10.5 7.54 6.71 9.09 5.23 10.8 10.5 7.87 10.4 8.62 9.24 6.5 9.26 0 10.1 9.53 11.5 10.7 12.2 9.42 12 2.3 12.4 12 9.61 6.63 4.51 1.81 10.5 9.35 9.75 9.46 10.3 9.99 10.5 8.76 10 7.12 11.6 11.1 10.1 11.5 9.49 9 9.71 11.4 11.9 7.36 9.79 11.3 11.1 10.6 8.84 9.39 4.13 10.5 11.8 12.4 10.5 11.7 9.88 6.63 9.71 10.2 10.8 3.26 8.79 11.1 9.88 11.4 9.13 9.92 8.38 9.59 10.1 10.7 7.52 8.78 9.57 10.4 7.73 11.1 8.96 9.02 9.95 10.9 8.65 9.6 9.09 9.21 10.5 9.33 2.9 11.1 5.57 10.4 9.85 0.44 10.7 10.2 9.89 6.67 9.25 9.13 11.2 7.36 6.6 5.08 9.65 10.4 11.4 7.71 12.1 9.68 9.6 10.7 7.66 10.1 9.78 8.74 10.1 7.28 10.2 12 10.6 10.9 9.13 9.07 8.57 3.55 6.73 7.9 1.28 9.75 9.94 10.7 9.75 9.57 10.6 10.2 14.5 9.29 10.2 9.93 9.9 11.7 9.82 10.4 11.9 10.6 9.11 12.9 9.04 9.79 8.96 9.67 10.8 9.97 11.2 9.25 8.71 9.09 6.32 11.4 9.79 11.2 10.5 9.41 10.8 10.9 11.6 11.9 11.4 9.59 13.2 7.81 10.7 12 10.3 10.6 11 10.6 8.19 9.93 12.2 2.9 11.1 8.95 3.51 10.6 8.67 10.2 8.06 11.8 10.9 12 11.3 1.95 10.3 9.76 6.06 14 11.1 9.4 12.6 10.7 8.36 8.86 7.68 9.88 12.3 7.96 7.64 9.07 9.36 7.16 2.08 8.7 8.55 9.78 10.4 9.44 10.4 11.5 5.77 7.64 9.67 11.1 12.4 6.1 8.53 10.3 8.96 4.62 10.1 10.7 9.86 4.51 8.85 9.71 9.1 11.9 11.8 9.94 9.61 10.2 7.22 9.97 10.3 10.9 10.4 9.63 9.43 9.64 10.4 6.2 2.83 9.9 2.96 7.25 10.9 8.67 9.61 6.94 10.2 10.6 9.79 10.8 9.91 6.83 10.6 10.6 6.59 10.7 9.98 4.24 9.35 10.4 8.5 10.2 10.7 9.16 9.66 10.3 6.18 9.47 4.07 10.6 10.2 10.9 11.1 7.19 11 10.4 12.4 10.7 10.9 9.64 10.5 10.2 10.6 9.34 7.8 11 11.1 7.38 9.29 12 10.9 10.8 13 3.94 19 11.1 11 12.1 11.3 8.58 9.56 9.21 10.7 4.6 10.8 9.65 11.5 11.2 12.6 6.71 12.4 10.4 11.9 10.2 11.1 9.52 10.2 8.24 10.1 9.69 11.5 10.3 10.5 10.7 11.9 11 10.5 10.9 10.6 9.84 11.3 11.2 8.5 10.2 6.19 9.23 11 9.64 8.17 8.33 8.39 10.4 12.1 8.49 4.07 9.22 9.59 9.34 9.5 6.78 1.65 5.49 8.15 2.9 8.93 11.5 7.43 11.3 8.96 6.78 10.8 10.3 0 8.68 7.19 10.9 11.6 9.42 8.45 12.2 11.8 12.9 9.22 8.31 6.85 6.48 7.33 8.71 7.05 11.1 8.24 10.1 10.2 11.7 11.3 12.5 9.93 10.1 6.71 10.5 11.6 11.8 7.19 9.61 10.4 8.47 10.3 4.94 10.9 8.33 5.75 7.1 13.5 8.84 8.43 10.1 6.26 10.5 9.9 8.47 9.45 10.4 10.1 10.6 9.97 9.9 9.92 10.2 10.8 10.4 9.11 4.58 1.05 14.5 10.2 10.8 13.8 10.2 10.5 8.02 7.78 12.6 10.5 8.36 1.95 8.79 10.2 7.68 2.83 9.43 9.19 4.92 11.1 3.03 9.35 0.78 6.34 8.93 9.85 10.1 10.8 8.5 7.7 9.42 8.24 8.63 9.13 11.8 11 9.91 9.57 1.05 2.76 11.1 2.2 8.34 10.1 1.81 7.02 10.8 4.44 10.7 10.8 8.44 8.39 11.3 9.37 9.28 10.4 9.85 9.37 5.93 9.44 9.41 5.89 9.19 9.56 9.4 10.7 7.81 8.25 11 12.6 10.5 11.6 9.38 10.4 9.74 2.59 9.13 10.5 8.74 10.1 5.53 0.78 2.67 3.51 11.1 8.87 10.7 11 6.02 8.87 10.7 9.42 7.31 10.5 10.1 12.2 9.93 8.72 8.37 6.8 13.7 7.3 8.83 9.42 8.26 10.6 11.4 9.53 10.3 7.5 10.4 8.04 11.8 8.4 10.7 8.74 11.8 12.2 8.27 8.18 10.6 10 9.78 7.79 9.45 8.33 1.95 9.69 8.75 3.94 12.3 9.63 8.34 10.8 10.4 12.5 10.3 4.32 2.2 7.4 12.1 9.9 6.47 9.57 10 9.7 9.36 7.37 9.92 8.49 7.25 6.06 11.5 9.91 1.28 3.51 6.37 2.98 8.61 3.31 5.57 1.28 10.4 1.65 2.5 0.78 7.48 7.65 5.74 7.04 7.68 6.83 3.41 1.28 8.94 10.5 9.4 8.77 7.93 3.9 5.42 15.6 8.61 11.5 0 15.3 11.5 10.4 12.1 6.78 5.04 4.8 7.65 0 1.65 10.8 6.14 5.99 8.53 7.14 5.13 9.33 0.44 4.6 7.78 10.6 10.1 6.82 4.29 9.14 9.79 10.4 11.5 5.19 11.1 6.63 8.61 8.3 6.45 6.09 10.5 7.28 4.18 10.7 7.1 7.69 9.88 8.9 8.08 0.44 10.4 10.5 8.89 7.93 6.04 5.56 5.45 9.64 4.32 7.86 10.5 2.96 1.28 8.99 2.67 1.95 8.95 9.22 6.58 5.85 2.3 0 8.49 7.32 5.91 8.12 10.9 9.21 6.48 6.75 12.6 0 3.09 11.1 6.98 8.51 7.45 9.11 9.14 5.67 6.22 6.1 4.16 0.78 6.09 9.83 9.34 4.82 6.58 3.15 8.42 1.05 8.49 4.4 6.93 6.72 4.82 10.7 0 7.42 4.56 2.08 13.8 6.92 7.19 5.56 7.67 8.34 7.84 9.92 8.17 11.4 2.08 3.21 10.1 9.31 6.25 9.59 4.76 4.08 5.08 9.37 10.1 6.87 6.58 8.67 8.5 1.05 8.17 7.8 0 6.66 3.76 2.83 0 0.44 7.78 0.78 7.13 4.87 0.78 4.89 9.72 3.64 7.15 1.28 7.57 10.9 6.45 8.84 2.5 3.83 6.18 0.78 8.6 5.49 0.78 1.48 2.67 10.2 9.65 1.81 6.85 4.18 9.01 9.03 9.01 8.74 1.28 9.16 11.8 9.77 8.99 10.1 4.44 2.5 5.68 1.95 9.69 11 12 6.47 9.51 10.7 10.8 7.78 10.6 10.8 9.22 9.44 8.72 0.44 9.93 5.55 7.62 7.32 9.59 1.65 9.6 10.8 9.83 5.17 5.07 10.4 10.6 9.12 8.81 0.44 12.1 9.98 8.25 10.4 10.9 4.68 3.26 11.9 9.28 7.56 11.1 4.24 10.6 7.44 12.5 9.14 9.09 9.59 11.3 8.29 10.2 12.4 8.62 6.76 9.01 9.21 10.1 6.4 9.66 0 7.44 4.42 9.11 10.7 11.7 9.92 12.6 8.95 10.3 3.6 12 9.22 8.76 7.84 8.83 6.41 7.94 10.9 9.93 8.47 8.89 7.97 9.05 10.4 9.28 1.05 11.1 8.15 9.6 9.18 10.3 9.17 8.69 4.21 10.1 10.3 8.02 11.8 8.85 7.68 10 9.85 10.7 5.43 8.91 10.4 11.8 1.28 7.43 8.43 10.7 4.58 5.62 7.92 9.68 6.79 7.35 2.83 10.7 3.51 8.95 0.44 0.44 4.6 8.22 10.7 7.36 11.5 8.78 9.04 8.29 9.39 10.9 9.84 9.94 10.9 9.86 8.24 10.6 10.4 10.8 9.07 8.11 10.5 8.06 11.6 11.7 9.84 4.79 10.2 11.4 8.93 14.8 10.6 9.75 7.21 6.75 10.9 9.55 10.3 8.99 9.97 8.55 9.02 1.05 9.99 8.81 9.67 9.12 10.6 9.37 10.4 9.39 5.85 10 11.1 8.19 11.2 9.8 9.5 9.88 11.8 9.15 9.07 7.44 8.96 10.6 9.87 10 12 11.2 8.41 6.06 7.61 5.47 9.06 9.54 10.3 6.17 2.67 8.36 9.06 9.37 10.8 1.95 8.58 8.82 9.83 8.85 2.83 9.67 5.3 8.05 8.15 3.8 9.7 6.6 8.65 10.9 9.55 11.2 11.1 10.3 8.6 6.53 9.94 11.9 9.39 10.8 1.48 8.23 7.74 10.6 11.4 10 11.2 8.44 8.5 0.44 10.8 8.76 11.7 10.6 4.94 9.94 9.27 11.6 10.2 10.1 9.83 11.3 9.37 9.6 10.2 11.2 12.4 11.5 4.6 10.2 8.7 9.17 9.27 5.53 9.9 4.21 9.42 9.06 5.17 2.96 10.4 11.6 8.42 9.33 8.5 8.37 9.81 11.1 9.6 6.66 10.8 8.87 8.21 9.94 7.5 10.8 8.13 10.5 3.72 9.34 5.96 8.2 12.7 0.44 9.45 3.31 10.3 10.1 9.77 6.41 9.33 1.05 7.2 7.05 7.79 7.67 11.1 8.56 7.06 7.78 8.44 8.37 0.44 5.05 2.08 4.13 10.8 9.01 9.21 2.75 9.43 8.91 1.65 8.27 9.67 8.99 7.59 8.93 7.06 7.77 9.58 9.52 8.55 10.2 8.62 8.01 8.71 9.71 10.5 3.83 10.5 1.65 8.94 9.38 8.78 8.14 10.3 8.94 11.5 1.42 12.4 11.8 10.2 9.68 8.56 1.05 7.97 8 6.81 10.4 10.1 9.98 10.9 9.35 10 5.19 9.33 10.7 9.64 11.7 9.52 9.67 0.44 8.7 12.5 7.32 7.62 9.72 9.77 9.44 8.61 8.64 8.66 9.73 9.26 10.2 3.76 2.2 2.11 9.96 3.31 1.05 5.62 10 2.83 10.8 8.06 8.97 8.82 3.72 9.7 2.96 7.2 5.42 11.3 12.3 9.65 3.64 7.53 5.29 7.51 8.18 7.33 11.3 3.21 7.61 7.44 0 8.71 6.34 11.5 7.93 7.48 9.03 8.59 10.6 1.05 1.05 9.33 9.35 9.04 2.2 8.07 0 12.5 8.94 11 5.46 6.08 0 6.2 9.74 8.91 11.2 3.09 8.54 12.2 9.15 6.64 8.46 10.2 14.3 9.84 11.4 8.89 7.44 10.9 9.74 6.12 2.9 9.34 4.16 9.03 10.1 6.98 11 10.7 7.93 11.3 9.03 9.66 11.2 3.87 10.1 1.28 6.52 9.59 8.76 9.31 10.6 12 6.17 0.44 5.6 9.4 9.82 11.7 8.71 8.13 10.4 9.21 10.5 5.19 8.27 7.38 6.04 10.4 9.92 10 2.75 8.7 6.77 5.47 10.5 9.06 5.16 0.78 9.54 6.98 9.93 11.8 10.8 9.4 7.08 8.42 5.93 7.19 7.21 9.88 5.86 11.6 11.6 2.2 9.7 4.58 4.68 7.85 12.1 4.29 8.52 7.96 8.95 6.42 0 6.58 9.28 11.2 7.62 8.49 10.7 2.75 8.95 0.78 7.62 9.33 7.89 10.3 8.21 11.1 8.19 6.59 4.89 10.9 7.87 0 5.2 0.44 4.94 5.74 9.02 11.5 3.37 7.94 11.9 3.31 4.54 7.72 9.86 8.72 8.94 5.94 7.63 8.97 9.35 11.2 10.1 9.88 9.02 9.02 10.9 10.3 12.7 8.84 8.58 2.59 8.87 9.14 1.95 4.97 7.2 5.52 6.6 9.6 8.49 8.41 10.1 2.75 9.7 7.39 4.6 9.03 9.12 8.9 7.45 7.69 6.41 9.49 3.72 6.9 8.77 12 4.7 10.4 9.78 11.4 9.9 7.27 11.6 10.7 6.54 11.3 12.7 9.16 9.02 10 9.17 4.87 6.29 7.23 8.8 8.98 7.98 4.4 9.09 7.67 10.1 5.69 8.17 5.04 10.8 9.35 9.12 7.46 11.6 7.65 8.93 11.4 5.69 12 8.57 3.72 7.36 9.57 11.7 8.55 7.34 13.6 8.54 10.9 7.48 10.2 7.24 9.03 10.1 7.71 8.03 13.1 10.7 6.34 8.11 11 15.4 0.44 6.15 12.9 11.7 6.03 1.28 5.31 10.7 8.28 3.31 8.44 8.71 5.75 10.8 5.01 2.75 12.5 7.82 8.75 9.01 11.2 11.2 11.6 12 9.51 10.7 9.68 2.75 9.25 6.49 3.37 9.21 5.84 10.2 11.8 5.16 7.25 5.56 7.49 9.73 6.29 3.87 1.48 2.3 5.37 3.42 7.62 1.65 8.75 6.39 4.37 6.93 3.09 5.69 9.84 4.47 7.33 6.88 3.87 6.49 5.14 1.65 8.36 9.79 8.18 14.7 10.9 3.83 7 6.45 9.49 3.09 9.26 6.29 8.44 9.15 8.47 3.9 6.26 7.56 4.19 8.2 7.75 7 7.13 10 3.72 7.61 9.35 10.3 1.81 8.49 8.78 4 4.16 7.65 4 4.62 2.2 10.5 7.71 4.6 4.76 9.63 5.49 9.41 7.26 2.2 2.92 3.76 8.76 2.83 5.84 1.65 9.13 1.28 6.53 0.44 3.94 10.4 10.8 6.2 5.37 2.99 8.53 7.76 5.22 4.32 8.1 2.83 2.75 4.04 11 7.17 6.13 0.78 5.16 8.54 8.12 9.2 6.59 6.41 5.48 3.8 5.26 6.99 8.16 1.05 4.18 8.75 8.38 9.25 7.75 2.41 9.14 8.56 0.44 5.41 7.69 6.17 6.49 7.05 8.64 4.74 10.5 6.91 3.42 0 1.48 7.92 7.04 0 6.94 3.97 9.45 4.42 1.48 7.5 12.8 9.52 8.14 5.49 7.43 4.27 4.97 1.28 3.87 8.48 3.76 5.81 8.59 3.03 9.87 3.21 8.43 2.5 6.15 7.36 8.76 8.76 7.71 4.3 8.12 5.05 6.55 5.93 2.59 4 12.2 3.68 8.06 8.03 6.33 8.31 2.08 5.68 6.91 1.95 4.76 1.95 3.94 3.87 9.16 6.76 6.5 8.53 9.62 1.95 1.28 0 8.96 2.83 2.9 2.96 9.21 7 9.11 4.16 5.51 2.75 7.68 5.8 8.76 3.9 1.05 4.27 5.24 2.2 3.09 4.18 2.9 7.44 0.44 8.57 1.48 1.28 4.04 7.44 0 6.8 3.64 9.98 7.95 2.3 3.72 4.64 4.98 0 8.41 9.45 7.75 7.57 9.29 4.87 9.12 2.75 4.35 7.73 6.54 7.41 7.13 8.63 8.69 0 6.48 9.35 8.99 6.75 7.09 8.62 1.28 8.78 4.82 6.11 10.2 8.56 7.57 9.2 6.39 5.1 1.28 2.3 10.3 1.48 7.74 6.53 4.49 6.09 7.87 8.46 10.3 4.56 8.86 1.05 10 2.3 4.44 5.17 6.41 7.53 5.62 9.85 1.81 8.46 9.03 5.45 7.7 9.74 6.72 6.81 8.22 0 5.69 1.65 9.77 4.74 4.54 7.14 1.81 3.67 7.21 0.78 4.07 7.3 5.26 4.18 6.32 5.05 9.88 4.21 3.46 3.87 3.76 8.16 8.01 2.08 10.1 7.53 8.79 5.28 3.21 6.32 7.77 7.12 7.16 9.61 10.1 2.3 4.68 8.86 1.65 3.09 9.69 8.08 7.68 7.54 4 8.95 8.05 8.8 7.97 1.05 2.08 4.8 9.29 8.51 2.96 7.07 6.19 7.79 8.84 3.21 8.27 9.85 11.8 10.5 9.93 3.21 11.9 0 14.9 11.8 10.3 8.54 11.8 9.93 11.2 0 8.65 10.4 9.16 9.24 9.42 7.7 9.61 10.5 13.2 8.26 9.75 10.7 11.1 8.68 3.76 9.99 0 9.54 7.68 10.8 10.4 10.7 9.81 9.09 8.29 8.97 6.29 9.07 9.62 9 10.3 11.2 8.66 5.14 7.86 9.18 7.45 11.4 8.67 5.55 11.7 9.33 2.83 7.49 11.3 1.65 9.32 7.4 10.1 6.22 9.56 11.1 5.53 8.31 7.61 10.2 10.4 12.1 7.36 9.45 11.2 9.64 7.46 9.87 10.7 8.61 8.65 10.2 7.97 10.5 9.96 10.2 8.96 6.01 11 8.23 8.65 7.62 8.47 6.94 9.04 9.38 8.85 9.62 9.79 9.5 11.2 10 9.92 7.95 9.07 1.81 7.86 7.82 10.6 2.5 9.43 10 10.3 10.3 0.44 2.96 9.81 6.43 11.2 6.09 7.45 8.17 6.67 7.53 2.75 4.58 11.6 7.71 2.5 13.4 2.41 10.9 13.1 10.4 10.6 14.6 11.2 9.37 9.99 8.23 8.9 9.35 8.22 8.91 6.35 13.2 9.85 7.76 8.46 10.1 7.96 9.24 9.37 7.79 9.48 11.1 8.71 9.55 8.12 7.71 9.17 11.7 12.7 10.3 9.1 0 11.2 10.5 9.54 9.98 9.24 1.95 10.8 8.75 4.56 8.03 9.19 0 8.1 9.49 9.08 10.4 3.51 9.98 2.08 5.12 8.61 7.44 9.09 6.96 10.3 9.92 8.5 0.44 7.49 7.4 8.85 8.19 1.65 6.72 10.3 11.3 9.43 0.44 9.32 10.7 9.18 8.59 10.4 10.1 10.8 6.25 10.8 1.28 10.5 6.85 10.8 6.26 5.66 8.21 9.47 2.08 8.72 6.38 9.91 8.93 8.57 9.18 8.78 9.65 10.2 8.28 7.25 10.4 8.32 9.44 12.8 8.77 7.64 3.97 7.83 7.84 0.78 9.27 9.59 7.52 3.03 5.01 8.97 9.06 6.78 9.01 8.71 4.27 11.3 8.95 12.1 9.67 6.53 11.4 3.72 9.34 7.05 9.27 9.04 8.14 6.69 11.3 9.77 6.78 11.1 11.3 7.63 8.64 8.13 8.11 0.78 7.26 6.6 10.3 7.87 6.17 10.5 8.69 11.8 7.72 0.79 10.5 3.37 10.7 9.67 11.2 6.45 8.41 10.5 7.57 8.75 5.94 11.4 8.45 12.7 0.44 0.78 0 14.9 4.32 0 7.96 10.9 7.04 14.1 11.6 13.4 10.1 9.52 6.01 12.1 11.4 9.91 2.2 10.3 0.44 5.6 8.2 4.54 12.7 6.63 8.03 1.65 0.44 0 2.9 8.67 1.05 10.8 9.58 11.1 11.2 11.6 11.7 10.6 2.59 12.2 13.4 11.3 6.68 10.3 11.7 11.7 12.7 7.48 13.1 6.26 4.76 6.02 10.6 7.79 7.49 5.14 6.83 9.95 6.09 8.28 8.43 7.69 10.1 5.99 6.38 10.4 8.06 11.6 9.8 7.46 11.1 10.9 12 6.12 12.3 11 10.7 11.8 9.48 10.3 10.3 11.3 10.7 9.65 11.8 8.34 8.75 15.8 15.8 14.6 12.1 12.2 11.9 11.9 8.97 14.6 14 4.42 12.4 11.2 13 10.2 15.5 13.5 11.8 10.5 8.51 6.98 13.9 11.6 9.79 11.4 4.63 6.56 3.42 8.55 8.87 7.09 8.11 12.4 10.7 8.64 11.7 12.6 10.4 9.91 9.36 11.2 7.3 6.31 9.65 9.93 8.72 9.43 0.78 8.6 8.43 10.4 9.16 5.26 7.72 2.2 7.57 1.05 9.43 0 9.27 12.4 7.15 13.7 10.9 13.2 11.6 12 12.2 11.2 11.6 13.5 0 12.2 13.2 0 4.1 3.97 8.85 6.52 4.89 4.37 3.15 0.78 2.9 2.3 3.09 2.3 3.37 0 6.8 6.59 6.42 5.47 3.26 3.51 4.44 1.28 0 9.8 4.32 2.67 11 5.02 9.34 5.86 9.43 1.05 6.02 11 1.05 8.98 10.8 1.48 3.31 4.85 8.53 0.78 7.31 9 10.7 9.02 8.71 11.1 5.36 4.92 11.3 10.9 11.6 10.3 11 10.6 5.95 5.19 5.13 2.67 11.9 10.6 7.88 5.86 10.3 11.4 11.7 12.7 10.2 6.42 7.08 10.9 14 10.9 7.48 7.6 14.4 12 12.2 6.15 5.22 14 11 14.6 11.9 5.05 10 11.1 9.45 13.1 6.48 5.85 15.9 11.6 9.02 1.95 3.37 1.81 6.39 4.4 0.44 4.1 8.31 11.7 5.63 11.1 10.7 2.67 5.71 1.81 1.28 2.15 8.48 12.7 1.48 5.16 2.3 9.33 7.43 5.43 9.79 4.1 2.2 5.93 3.44 7.13 9.3 8.63 1.95 4.89 9.12 8.51 4.54 0.78 2.08 6.51 4.83 8.98 10.6 2.67 8.25 7.73 4.64 7.97 8.67 8.98 7.37 10.8 9.32 8.14 9.15 6.47 6.6 4.29 2.9 4.94 10 0 2.3 8.88 6.47 2.41 2.96 7.37 7.42 4.16 5.75 6.27 4.37 6.42 8.08 5.05 0 10.1 9.42 2.41 3.42 11.5 8.46 5.22 3.76 5.82 3.31 10.6 5.69 5.04 1.95 7.09 9.74 11.1 10.8 2.59 1.28 5.28 5.28 3.51 9.04 2.96 0.78 7.04 2.83 8.83 3.37 9.78 7.6 5.95 1.28 0.78 7.81 6.78 10.1 7.6 3.72 7.41 4 5.14 5.78 4.35 7.46 5.72 8.55 9.96 4.32 0.79 1.65 9.12 1.81 10.9 10.1 9.53 10.1 5.98 9.84 1.95 5.14 5.83 9.24 12.8 1.28 7.69 10.3 1.05 7.16 1.95 1.81 6.34 11.7 11.6 5.13 9.58 6.95 5.57 6.09 1.05 7.19 2.75 8.64 1.28 9.57 0 6.1 9.36 4.98 9.59 8.93 5.49 6.77 3.09 1.05 2.9 8.59 10.2 8.41 7.33 4.76 0.78 5.23 7.16 6.81 0.44 6.02 2.41 2.5 2.5 2.5 1.81 11.2 6.73 9.17 6.99 3.46 8.2 9.35 5.12 3.09 11.3 4 11.4 3.46 5.32 1.05 8.88 3.15 3.09 4.37 9.54 3.26 0.44 6.54 2.41 7.28 0.44 1.65 4.66 9.4 1.65 11.5 2.41 3.64 10.3 11.4 3.51 1.81 8.53 0.44 10.2 8.48 9.78 5.97 11.1 11.3 6.23 7.33 6.79 9.52 8.65 4.18 7.48 13 9.19 1.48 10.4 2.67 5.75 5.41 8.13 10.1 3.46 7.62 13.8 0.78 7.18 16 6.64 0 11.1 6.05 5.4 9.39 12.4 5.63 10.7 7.22 8.26 1.05 4.62 3.22 6.22 7.77 8.64 8.48 14.2 13.4 9.24 3.87 7.9 7.8 10.1 7.28 4.13 8.29 0.86 7.78 9.1 5.9 2.96 4.18 6.36 7.06 4.66 7.51 5.08 1.05 0.44 9.84 11.2 10.3 2.2 7.45 11.3 9.66 8.54 6.79 6.23 10.4 10.9 7.49 10.9 2.08 4.92 7.13 8.46 10.8 6.29 8.52 7.48 1.28 4.7 12.2 4.64 4.04 4.42 10.6 9.76 1.65 8.63 2.2 3.09 7.22 4.76 11.8 3.13 9.11 11.8 8.78 7.99 8.16 9.35 8.32 6.17 0.44 10.7 5.59 8.85 10.3 11.7 12.4 7.09 11.3 8.98 7.56 9.42 11.6 8.07 8.85 8.07 7.69 2.3 7.25 10.6 1.28 9.85 9.09 1.48 10.2 8.82 9.14 10.8 10.9 9.18 3.6 3.21 10.9 1.05 12.6 8.14 10.6 10 11 8.76 10.4 11.3 7.11 10.1 10.4 9.33 8.65 9.23 8.29 9.67 8.79 4.56 12.2 9.48 12 3.64 14.5 9.83 10.6 8.61 7.94 11.1 3.97 8.05 10.7 9.96 13 9.81 13.3 11.8 10.3 11.9 11 10.9 11.4 10.2 10.2 9.37 1.28 3.97 2.08 12.4 6.69 8.78 11.6 9.49 10.4 1.95 10.3 9.81 10.3 13.3 11.6 8.5 12.2 8.96 9.93 12.1 8.75 11.2 10.8 10.6 12.9 8.71 10.3 11.2 9.94 11.4 3.72 7.03 6.13 4.35 4.35 4.13 2.07 8.96 7.18 9.46 6.03 8.26 9.83 8.88 1.28 7.1 2.67 1.81 7.19 0.78 6.86 6.47 7.12 8.36 7.93 8.86 6.2 3.51 9.15 7.99 9.1 4.1 6.81 0 4.99 10.5 5.66 4.27 6.83 7.18 6.26 7.62 4.32 8.54 0.44 5.85 8.87 13 6.8 7.63 6.09 10.7 3.15 6.94 6.51 2.75 6.64 2.08 7.53 8.21 8.79 6.8 2.5 4.47 2.75 1.48 7.3 7.56 7.94 5.24 9.07 7.74 4.07 6.38 0.78 3.03 2.08 0.44 5.24 2.83 7.72 3.03 3.83 1.28 9.97 6.95 8.85 1.95 8.71 12.3 5.37 3.31 9.94 6.27 9.51 7.56 1.48 9.87 0 4.7 6.44 7.12 6.51 1.81 8.92 12.5 4.21 5.27 12.1 12.8 8.7 8.46 7.76 4.47 6.63 12 2.5 1.95 6.72 10.1 10.1 0 7.37 2.96 7.78 7.01 0.44 6.21 12.5 9.56 7.99 3.68 10.8 4.64 6.52 9.14 8.16 3.6 11.8 10.2 5.43 10.5 1.65 2.59 3.21 11.1 3.18 1.87 7.94 4.64 5.48 11.7 7.03 4.68 4.11 3.99 6.17 0.44 10.1 7.89 7.49 10.4 10.6 11.9 9.79 10 9.42 10.5 6.89 11.3 11.6 9.63 2.2 1.81 13.6 7.76 3.97 9.38 5.89 0.44 13.6 7.14 5.19 11.7 1.28 5.81 8.95 6.28 6.64 1.52 9.02 1.28 0 4.72 8.94 6.68 6.74 13.1 7.86 9.1 7.08 1.65 6.02 3.26 4.94 8.33 9.45 1.05 7.14 5.76 9.08 1.48 6.22 0 4.32 5.49 3.94 3.68 6.87 1.37 8.39 9.67 0.8 10.2 9.93 5.2 0 11.2 5.22 9.54 6.09 5.65 8.07 5.19 3.15 8.36 4.74 6.58 5.1 4.66 6.56 6.68 6.81 8.12 7.31 7.03 10.2 6.4 5.75 13.1 2.5 6.83 8.26 7.69 8.32 8.13 5.48 6.87 0 1.05 6.17 7.83 5.85 1.66 7.87 3.09 8.98 2.5 9.58 7.55 5.9 2.5 5.3 7.78 8.94 1.05 7.48 1.65 5.69 7.96 4.56 8.39 7.13 6.27 1.28 9.7 12.2 9.28 0 7.75 0 5.26 5.2 6.63 3.31 8.64 4.6 6.52 5.37 0.44 4.4 6.29 7.18 5.37 0.44 12.2 8.09 5.89 9.96 2.2 2.9 7.06 4.07 8.84 5.8 2.67 7.06 3.37 7.32 0.44 1.65 0 0 7.43 1.81 7.32 4.54 8.15 8.72 7.71 2.5 0 3.31 9.93 3.09 3.31 0.78 5.82 0 9.09 6.53 7.92 7.55 8.53 10.3 10.4 6.24 11.8 1.05 12.9 1.48 12.2 2.83 8.05 12.2 12.8 12.8 4.87 4.92 11.7 12.6 12.4 1.81 4.51 4.78 10.9 5.17 12.5 4.04 3.46 9.48 9.83 6.79 9.75 9.98 12.9 9.82 1.05 12.9 11.3 12.4 10.1 9.03 1.81 8.85 9.52 8.72 12 6.6 12.9 13.6 11.9 2.75 9.46 10.2 12.9 0.44 8.76 9.21 9.52 0.78 9.08 8.52 12.6 10.7 10.5 8.16 11.3 8.65 3.83 7.02 8.56 9.93 1.28 5 8.62 7.01 9.43 8.1 10.9 8.4 6.25 2.5 10.4 4.92 6.2 7.2 6.19 12.2 2.96 7.65 3.21 10.3 0.78 6.71 10.7 11.1 11.3 13.1 7.92 6.3 8.32 9.14 4.47 2.41 5.16 10.1 5.73 10.1 8.76 8.53 1.81 6.87 8.24 3.63 7.85 6.6 5.12 6.96 3.97 0.44 6.83 8.84 5.39 7.93 4.7 5.93 8.11 4.42 11.9 9.96 1.95 3.03 8.27 4.95 3.21 3.94 6.79 7.71 8.33 3.83 4.47 1.65 4.7 0.44 2.41 3.51 2.67 4.54 11.9 2.08 8.24 5.59 5.6 3.8 5.21 3.03 3.15 6.02 4.96 9.95 5.46 6.98 8.32 0.78 9.49 2.2 3.97 7.12 5.3 8.69 9.45 2.3 8.51 9.6 9.44 4.85 1.28 9.27 0.78 1.95 5.11 0.78 6.06 8.54 5.17 8.45 8.78 5.13 0 3.87 7.08 9.67 7.88 1.28 8.85 7.58 9.96 0.78 2.59 7.44 1.48 3.68 9.68 8.99 8.13 0 8.83 10.3 12.7 10.8 8.57 11.5 9.57 1.95 8.19 10.4 5.28 7.04 2.67 4.95 11.7 5.93 5.22 11 8.8 8.98 9.4 10.2 11.5 6.05 10.3 9.35 0.44 9.95 13.4 12.7 10.5 2.81 8.81 0.78 4.96 11.3 10.9 13.3 11.6 7.97 8.66 11 6.59 11.1 7.55 14.3 12.4 11 13.1 12 12.3 12.2 1.65 5.87 5.67 7.39 8.28 10.2 11.2 8.37 6.85 8.83 11.1 11.2 10.9 9.72 10 7.29 9.72 7.02 10.6 9.61 7.58 4.49 9.95 8.53 8.89 2.3 8.25 8.9 10 10.8 10.6 9.48 11.3 10.3 12.2 6.99 8.33 9.84 10.9 12.7 6.91 4.72 7.21 11.3 10.2 7.28 0 10.8 9.89 3.87 7.05 0.44 6.01 7.53 6.3 8.11 12 6.36 1.5 10.8 8.92 6.32 10.9 8.23 7.19 4.91 11.3 9.33 1.28 10.2 11.8 11.1 7.76 10.7 8.71 4.24 2.59 13.2 9.64 10.9 9.85 10.3 9.48 10.9 12 3.55 7.39 10.4 1.28 11.3 11 11.5 11.1 9.77 6.71 9.52 10.2 10.7 10.6 6.06 10.1 10.7 9.13 4.64 6.24 6.45 9.12 11.8 10.1 9.26 11.2 10.2 9.65 6.49 0 8.2 13.9 7.8 10.1 8.74 9.62 9.78 12.4 7.79 9.01 11.6 9.67 10.3 8.15 9.86 8.01 8.24 13.2 12.6 8.94 10.6 10.4 10.8 12.9 7.34 7.26 9.48 12.7 0.78 8.45 8.73 8.78 9.3 10.5 7.23 9.53 6.91 7.22 10.6 11.6 10.3 12.7 5.27 4.4 8.76 11.6 12.5 9.22 9.76 5.53 12.4 8.06 0.44 1.28 9.56 5.43 9.56 12.2 5.26 10.6 9 4.74 8.14 8.11 4 7.56 7.22 9.42 9.4 1.05 8.77 9.65 1.28 10.1 9.82 9.22 10.2 9.65 3.68 2.83 8.89 6.23 5.14 9.07 10.2 4.29 10.6 8.69 10.5 1.48 0.78 10.4 12.8 0 5.59 5.76 8.64 9.91 2.96 1.48 4 4.58 6.39 3.21 8.95 2.59 2.83 3.37 8.27 9.35 6.4 11 10.1 4 6.86 2.91 6.22 6.77 4.8 11.3 7.51 1.28 8.55 3.26 9.86 7.24 6.24 9.05 4.42 1.05 7.54 9.54 5.36 2.41 4.96 1.28 4.94 0.78 9.25 7.21 2.2 1.65 8.52 7.37 8.28 7.51 13.6 3.6 7.1 8.94 7.16 5.1 3.76 7.88 7.83 6.15 4.62 5.08 7.27 7.22 3.26 5.6 6.07 0.78 5.47 8.15 4.23 3.51 3.51 0.44 2.59 3.15 1.81 2.3 6.92 0 8.17 4.87 4.35 7.22 5.28 2.5 7.19 10.8 2.3 1.28 0 0 4.13 2.5 6.6 0.78 3.03 7.6 6.26 2.67 2.3 10.4 11.1 9.57 8.98 1.48 7.47 11.2 11.9 9.41 5.2 7.72 5.94 1.48 10.5 14.8 9.8 7.8 7.78 8.55 5.24 9.31 8.28 7.48 6.1 9.96 12.1 9.13 4.77 9.01 7.36 10.4 11.1 9.07 9.22 9.89 1.95 10.7 8.91 8.79 11.7 4.68 1.95 9.32 9.45 7.77 8.38 8.93 10.7 8.57 10.1 6.51 7.13 7.73 3.6 2.2 5.4 9.04 7.35 5.45 10.3 9.35 1.48 6.09 14.5 12.3 9.62 10.9 6.49 6.73 13.8 9.88 3.03 12.4 12.4 10.4 10.3 11.4 11.3 7.5 4.84 8.93 11.1 10.6 10.7 9.27 9.6 1.95 10.8 11.4 13.8 10.4 9.96 8.62 11.4 6.91 13 7.49 6.82 11.5 11.7 10.9 12.2 7.64 11.6 9.09 10.2 9.55 5.69 9.76 9.56 8.72 9.29 13.6 9.41 9.99 9.65 9.32 11.6 10.6 11.2 9.57 9.03 9.36 5.36 10 10.5 9.29 8.85 11 8.94 10.9 10.3 10.1 9.13 9.77 10.6 10.9 9.91 9 11.3 9.9 11.3 10.5 9.9 10.7 9.09 11.3 9.03 10.1 9.9 11.7 9.26 10 8.5 13.5 13.6 10.7 11.1 2.95 7 7.14 6.16 9.85 1.05 1.05 6.17 2.67 9.39 8.88 5.39 7.3 11.3 10.2 11.5 14.7 11.3 5.91 10.1 8.57 7.13 10.5 9.38 10.2 5.28 12.8 4.96 11.8 10.2 9.23 8.57 11 10.8 10.6 11.1 8.35 8.92 8.57 7.16 9.96 10.5 10.8 1.65 10.1 9.4 10.1 8.55 1.81 11.3 13.2 6.83 10.9 11.1 5.84 9.32 8.25 7.2 11.2 5.1 2.96 7.4 10.9 9.63 12.1 8.31 9.71 8.05 11.7 9.53 1.05 9.28 12.9 4.8 8.36 10.4 9.85 9.03 9.74 12.7 11.4 9.47 8.23 3.8 11.7 3.09 7.48 9.53 10.3 7.22 13.2 2.08 0.78 12.4 7.33 7.09 4.04 4 4.51 10.7 11 10.1 10.7 11.3 8.89 1.28 9.8 7.53 5.27 1.48 12.3 10 11.4 1.65 6.94 2.3 13.1 6.68 0 5.8 0 7.7 7.49 1.05 3.21 9.19 12.8 10 13.5 9.37 11.3 6.82 11.8 8.83 5.3 9.16 8.89 9.17 8.67 0.44 9.17 4.62 5.14 10.1 10.1 6.05 9.99 9.41 0 4.7 10.3 8.79 6.34 4.18 2.83 0.78 13 10.9 9.87 11.2 9.47 7.74 11.7 8.94 8.14 5.12 3.26 6.61 9.13 2.75 0 10.1 10.1 13.1 9.15 7.4 8.33 9.31 8.77 1.05 6.03 5.46 8.49 11.4 9.14 8.07 8.83 2.9 1.65 10.9 4.8 9.94 7.65 0.44 4.51 5.32 11.4 9.98 5.22 6.1 9.32 7.48 7.09 4.42 8.12 7.94 6.57 9.77 13.5 7.74 7.1 11.3 0.44 1.95 4.29 13.6 7.56 11.9 4.78 11.8 11.4 8.93 7.16 11.1 8.92 8.71 11.3 8.01 9.43 7.67 8.08 12.7 8.81 0 10.8 13 4.07 8.61 11.5 9.14 11.2 4.18 9.28 9.3 4.7 9.83 9.83 7.68 9.95 4.74 13.1 7.56 5.31 11.4 10.3 8.14 7.31 4.62 0.78 8.91 10.1 10.8 12.2 9.9 10.6 8.67 8.82 2.83 2.95 3.68 12.5 6.28 7.72 11.3 5.61 7.2 2.67 10.2 9.88 10.2 11.2 10.7 11.2 10.6 9.64 10.1 12.7 8.54 2.2 13.5 5.39 7.12 2.2 8.59 9.95 10.6 10.9 10.6 10.6 8.97 7.93 7.93 7.24 8.26 7.45 10.6 8.89 9.31 6.47 7.89 8.22 9.81 8.86 11.3 9.44 6.66 8.47 8.83 9.75 10.2 5.85 8.18 11.1 6.03 9.5 7.17 10.1 10.1 9.86 10.5 11.5 7.3 10.1 3.64 7.56 6.32 11.6 6.29 8.37 9.74 10.3 11.2 7.44 8.9 10.8 4.6 7.91 9.81 8.49 9.29 9.8 8.15 9.18 8.27 10.3 8.21 9.94 9.47 11.4 12.1 9.74 10.1 0 9.69 5.96 4.07 1.81 9.28 7.2 8.31 10.7 9.19 11 8.52 9.75 9.85 9.54 9.39 10.6 11.2 9.13 8.13 8.25 8.14 9.84 7.62 12.2 11.3 10.7 10.7 8.59 10.2 9.42 9.29 9.48 9.33 9.81 9 11.2 7.53 9.63 10.2 9.9 9.83 9.72 5.22 9.22 9.42 9.03 9.35 10.4 9.82 8.12 9.42 8.51 9.7 9.5 11.1 9.31 10.7 9.98 10.4 8.1 11.3 0.44 9.05 9.4 8.04 9.72 11 7.43 8.96 8.46 10.6 6.39 8.19 4.85 9.55 7.51 7.99 7.64 7.78 9.3 10.4 10.7 8.3 8.51 8.72 9.74 10.1 10.8 7.93 11.1 8.32 9.3 9.22 8.83 6.2 9.69 10.3 11.2 10.4 7.98 8.14 9.13 1.65 1.95 3.87 9.18 2.3 8.53 8.6 7.53 7.98 10.7 10 9.38 11.1 3.31 10.4 9.21 10.4 6.94 9.52 9.07 12 10.7 9.7 9.24 7.49 8.02 8.78 5.17 9.85 10.3 7.62 9.62 10.5 8.31 9.26 9.17 9.39 5.29 6.06 5.31 11.1 10.3 10.9 10.8 8.04 6.88 7.48 9.66 10.2 9.28 10.8 7.94 8.34 10.4 8.11 3.03 9.4 9.16 9.47 9.17 10.8 10.1 8.99 8.82 9.55 6.34 9.02 8.44 10.2 5.6 9.35 10.7 0 10.2 9.61 5.76 8.69 9.81 7.8 9.96 10.1 3.26 10 8.23 10.1 8.98 7.3 10.4 10.2 11.6 11.1 6.07 11 7.34 11 6.17 4.58 4.47 11.3 8.96 8.38 7.51 9.19 9.58 9.71 9.73 10.4 4.97 9.18 1.05 10.6 9.02 9.5 9.51 11 6.39 7.2 11.3 8.25 10.2 4.78 10.8 10.1 7.07 11.2 8.92 7.67 8.92 8.45 8.24 11.1 3.15 8.93 13.2 8.78 9.89 6.75 9.37 9.01 8.72 10.9 10 11.6 7.51 10 9.37 9.32 9.29 9.17 9.04 10.8 8.88 9.45 7.94 10.3 11 8.47 10.1 11.1 9.92 12 10.3 8.58 5.73 10.7 8.87 10.7 11.8 2.08 9.72 7.44 9.57 7.53 3.72 11.4 10.9 8.04 1.81 11.2 10 7.78 11.4 4.72 9.23 7.11 10.6 11.8 9.28 10.2 8.57 11.1 10.1 8.74 9.93 11.2 10.9 10.9 8.96 10.8 6.13 7.91 6.88 9.1 9.25 10.8 10.9 9.2 8.83 9.34 8.87 9.71 9.76 7.04 8.29 8.2 5.3 9.65 9.96 7.5 9.39 7.74 7.98 9.47 8.99 8.36 8.13 9.18 8.3 11.6 5.34 0 7.99 9.79 7.53 5.7 10.7 11.2 12.2 9.64 10.8 10.3 10.1 11 10.2 8.84 7.91 11.6 10.6 11.1 7.8 11.6 10.3 10.9 10.6 11.4 11.2 9.77 10.3 7.46 10.2 9.65 11.4 8.24 10.1 9.12 8.57 12.2 9.06 1.65 8.07 10 11.8 8.95 8.84 11.3 8.67 11.1 7.91 8.74 10.7 11 10.1 10.8 8.56 10.7 8.77 11.3 9.8 9.87 7.09 9.15 8.1 11.6 9.07 9.31 9.13 7.54 10.9 8.96 7.9 11 8.87 11.3 8.48 13 10.3 7.78 6.43 5.94 9.44 8.8 4.69 2.75 8.04 8.5 9.59 9.18 9.98 10.1 11.8 10.5 5.9 9.23 0 10.1 11.3 9.09 9.8 8.05 11.2 9.77 1.28 11 10.3 9.05 10.2 11.8 8.1 10.8 2.2 8.56 8.73 3.87 2.08 7.64 10.6 6.14 11.6 10.6 8.43 5.39 11 8.99 10.2 10.9 11.3 7.34 3.15 9.92 10.8 0.44 8.19 11 9.8 10.1 6.92 11.4 11.2 7.32 6.56 5.43 8.76 11.2 11.6 10.2 10.5 8.36 8.78 9.46 7.27 8.36 8.28 9.58 8.73 0.44 0 8.78 7.17 10.4 10.5 9.19 8.04 12.5 10.2 1.81 10.2 9.11 9.91 6.89 11.3 4.35 9.88 11.4 13.4 11.2 10 10.2 11.1 5.41 0 11.2 8.56 8.3 11.6 12.3 10.2 8.92 7.46 6.94 7.67 5.71 11.1 2.41 12.4 5.17 11.1 10.4 9.09 9.47 10.7 11.8 2.5 9.29 9.8 15.8 0.78 10.9 10.4 10.7 8.78 9.21 7.47 7.8 9.5 10.8 8 8.4 7.21 10.7 9.49 9.35 11.4 9.17 10.7 9.85 10.4 8.12 11 10.5 11.4 10.9 10.2 8.75 0.78 8.79 10.4 11.3 0 9.75 9.75 0.56 14.1 9.82 6.52 0.44 7.1 8.98 8.25 9.2 10.4 12.3 9.65 10.7 9.83 9.09 9.39 10 7.14 10.9 7.51 7.47 4.43 9.27 8.67 8.18 7.37 9.79 11.1 3.6 7.81 9.89 7.34 9.46 11.4 9.65 12.5 5.57 9.98 8.85 10.3 5 5.94 4.58 6.88 2.75 11.2 6.35 11.4 12.4 4.4 10.7 10.7 8.29 13.6 9.92 10 10.1 10.2 5.77 10.4 1.05 10.9 4.24 11.8 4.21 7.77 2.73 6.09 12.3 11.2 8.82 9.29 11.3 8.32 7.76 8.89 5.18 5.12 2.59 2.5 9.96 11.2 8.46 5.5 5.72 2.5 11.3 3.55 9.26 7.82 1.28 6.27 11.1 11.4 8.75 8.72 9.2 8.66 8.64 10.4 9.33 7.67 9.04 10.6 10.3 9.95 5.87 10.5 9.43 5.98 3.76 5.87 7.64 8.21 3.94 7.16 4.24 4.37 8.07 4.6 10.2 9.03 8.11 10.3 9.6 11.2 2.3 10.9 8.67 8.36 7.33 7.92 2.2 8.25 9.32 7.53 8.5 8.95 9.32 11.5 10.3 10.8 2.9 8.75 7.49 8.29 7.93 8.87 9.88 9.17 5.12 3.46 10.1 9.98 12.7 11 10.5 4.7 4.66 8.57 9.13 7.91 10.9 8.17 7.01 9.06 9.65 4.16 2.9 9.29 8.76 11.1 9.84 9.44 11.6 9.95 4.44 10.8 9.15 3.94 2.9 11.4 9.34 8.14 10.6 6.7 8.43 5.68 4.49 9.79 10.2 7.2 9.35 7.05 10.5 10.4 8.69 9.07 2.59 1.05 11.1 10.2 10.5 10.6 8.78 10.2 8.41 1.48 10.5 8.8 10.8 11 8.33 9.97 10.5 8.06 10.5 10.3 4.64 10.8 8.37 9.7 9.23 9.66 8.02 10.3 8.51 9.95 7.39 10.8 9.63 10.1 11.3 8.33 12.3 9.66 9.35 4.74 9.75 6.36 8.87 7.55 8.14 7.44 9.19 8.51 10.2 8.92 6.22 9.93 4.21 8.24 9.49 8.42 8.61 10 9.02 9.43 10.4 9.35 11 8.84 10.8 9.66 6.79 9.2 8.43 9.62 8.17 7.9 6.76 9.89 7.45 0.44 7.96 10 5.87 9.63 12.3 2.2 11 1.48 9.45 10.1 10 7.33 3.76 8.34 10.4 8.05 10.6 12.5 5.16 6.78 8.03 8.19 11.8 9.75 2.96 10.2 9.02 11 9.25 10.9 8.81 9.64 10.1 9.92 7.45 8.76 10.1 8.84 10.5 3.37 10 10.2 8.04 10 7.82 4.7 5.36 10.3 0.78 11.7 9.69 3.55 10.5 10.1 9.88 2.96 9.69 3.72 9.47 2.96 8.69 0 8.48 11.1 8.31 11.8 4.7 8.2 10.1 10.3 7.88 9.82 9.66 11.6 8.73 8.19 7.49 10.3 13 9.3 8.97 8.84 7.87 8.23 5.93 9.37 10.2 10.5 8.56 8.43 7.87 8.78 7.3 9.3 9.36 9.39 4.94 8.62 10.5 8.74 7.67 10.7 9.51 8 8.48 4.72 10.2 7.3 0.78 7.06 2.67 8.57 9.75 5.32 0 11.7 8.67 10.2 11.1 6.78 8.55 8.73 11.2 8.49 10.4 7.17 10.6 8.27 8.7 4.96 9.03 1.48 10.5 10.2 0.44 10.5 8.75 10.4 9.69 8.92 11.3 7.42 8.62 1.65 11.3 8.86 9.13 10.5 9.62 7.84 11 7.37 9.35 8.93 8.58 7.54 10.2 8.72 11.2 9.01 11.1 8.64 9.53 10 11.1 9.72 8.12 10.2 7.76 8.25 6.79 5.58 9.44 8.44 7.89 8.79 10.2 7.78 10.2 0 10.5 7.25 10.1 7.69 10.2 10.5 9.07 11.9 8.78 7.63 11.2 7.72 6.37 8.4 10.7 9.6 11.2 8.67 13.2 10 8.6 7.48 5.07 9.1 8.44 9.92 2.96 8.75 9.92 10.3 11.3 8.49 8.81 6.02 10.1 11.4 8.57 9.33 9.9 8.15 8.22 9.44 8.49 8.18 8.14 7.8 4.62 11.1 8.37 10.1 6.58 9 7.37 8.09 0 8.25 8.32 7.74 7.43 7.77 10.7 7.84 8.69 10.1 10.4 2.3 8.04 7.95 9.07 9.19 6.67 9.71 6.91 9.23 5.14 10.8 11.8 6.23 8.01 10.6 7.47 7.95 7.85 9.53 6.45 11.1 12.5 12 5.67 8.91 8.15 10.9 9.2 7.94 8.41 9.11 8.72 11.1 5.75 9.95 8.04 8.23 9.04 9.88 9.18 7.31 10.5 0 5.04 9 6.45 10.6 9.71 6.1 7.55 9.15 10.5 10.8 10.1 6.9 4.97 9.69 6.76 9.81 8.05 7.9 10.8 5.36 11.7 9 7.19 8.52 9.91 9.75 7.92 8.44 3.9 7.27 9 7.25 5.59 7.48 8.65 4 10.2 4.54 11.8 6.55 6.98 6.26 10 9.33 9.83 11.7 7.48 10.2 10.4 11.2 7.37 7.85 6.37 9.56 2.83 7.73 8.87 9.19 7.42 8.14 10.5 3.6 10.3 8.73 9.51 9.91 9.27 7.81 7.73 11.2 9.82 9.94 7.24 9.15 8.36 8.06 10.5 8.79 10.6 8.93 9.46 2.83 9.32 9.69 9.07 9.18 4.7 8.5 8.46 8.47 7.35 5.48 4.18 9.36 10.8 9.51 8.89 6.54 9.11 8.15 9.8 10.7 10 8.77 11.3 2.83 7.9 9.88 10.2 9.18 9.07 8.44 9.46 11.3 9.91 10.4 9.94 8.54 6.69 6.72 9.87 9.21 8.64 8.29 7.94 9.32 10.2 5.71 6.77 10 7.89 8.01 12.7 8.27 8.86 10.6 9.53 6.7 10.4 12 8.6 9.06 6.02 10.2 8.27 10.5 6.34 0 10.9 10.6 9.19 7.81 4.37 9.89 6.76 9.05 6.02 9.86 11.3 9.13 11.5 6.81 11.4 5.28 8.44 7.88 10.6 7.34 8.55 9.78 7.67 9.17 9.82 2.08 9.51 8.06 7.47 9.32 7.8 10.1 9.41 9.43 8.8 8.29 9.87 4.13 9.58 10.6 9.94 8.22 9.55 11.6 9.28 8.42 9.01 9.73 9.96 3.83 7.2 10.6 10.4 10.3 10 9.7 9.08 9.43 9.48 10.5 8.13 9.23 5.26 8.69 6.68 8.64 9.13 3.83 10.3 9.83 11 8.35 9.66 8.75 10.8 10 9.33 6.52 8.87 8.57 9.81 9.12 9.2 1.81 8.04 9.25 7.3 3.79 1.28 10 11.3 3.03 9.42 8.26 9.17 11.1 7.47 9.48 8.35 7.32 9.05 9.18 8.88 2.3 10.3 9.09 5.66 10.4 9.34 9.95 10.6 8.9 11.3 9.74 9.07 8.91 8.38 5.65 9.63 8.04 8.16 10.3 9.27 4.66 8.76 8.44 10.1 9.46 9.04 9.49 7.81 6.32 8.82 8.07 8.04 9.78 9.95 10.5 6.25 4.24 9.81 10.6 10.3 9.67 9.6 10.1 9.37 8.12 6.26 7.7 9.48 6.94 0.44 4.24 9.61 10.5 6.22 5.73 11.6 4.68 10.3 11.2 10.1 9.7 9.11 9.87 7.97 10.8 7.04 7.74 10.9 11.9 5.2 5.1 3.46 8.29 9.53 9.13 7.44 0.44 3.09 8.29 4.87 8.52 8.51 9.14 0.44 8.91 10.7 9.78 9.96 8.79 11.4 7.99 3.26 9.4 10.9 9.55 10.6 7.51 7.87 2.41 6.66 9.9 9.15 2.75 6.83 5.6 8.15 1.65 6.36 0.78 11.1 7.13 7.42 9.54 9.37 7.34 2.75 0.44 9.05 9.48 5.08 6 8.98 3.31 2.5 6.85 7.73 9.48 10.5 7.58 9.63 7.88 0 9.79 7.24 9.5 8.59 12.1 2.67 10.5 10.1 6.66 7.67 10.8 10.8 8.62 11.1 7.93 10.9 9.52 8.76 2.83 10.3 8.77 9.46 9.12 8.89 9.61 10.7 6.71 9.04 10.8 5.34 3.97 9.11 7.2 10.2 7.45 10.2 10.6 9.46 9.07 8.65 10.3 10.7 10.4 10.1 10.6 8.4 11.4 7.77 7.97 8.08 8.13 9.45 7.97 5.28 9.15 6.92 9.77 8.54 10.6 9.14 7.87 9.43 8.38 8.82 9.89 10.3 9.62 11.2 9.16 9.29 8.65 7.87 7.32 11 11 10.4 10.2 7.83 8.92 9.86 10.9 10.6 7.93 9.37 9.88 8.75 10.7 9.54 8.26 10.2 8.82 8.31 9.76 10.4 10.7 8.46 8.09 10.3 7.99 11.9 8.97 10 4.87 8.76 10.1 10.4 3.31 11 6.69 11.1 10.3 8.78 7.75 9.51 10.8 7.49 11 8.79 10 6.26 7.74 9.04 9.61 9.36 10.6 9.28 9.9 9.7 7.02 6.16 7.71 8.61 10.1 7.78 10.5 13.1 9.46 7.12 8.18 8.24 9.78 11.4 10.4 9.98 10.4 9.54 10.4 8.62 9.05 9.61 10.2 12.4 10.5 7.69 9.12 9.44 11 8.24 12.3 10.8 8.88 9.22 10.2 8.21 8.02 9.74 10.6 7.42 9.93 9.47 7.98 9.27 9.51 10.2 7.24 9.82 4.94 9.74 8.02 9.01 8.22 8.6 7.39 8.54 8.4 8.93 9.61 10.1 9.91 8.17 7.8 11.4 8.76 9.56 10.4 8.87 9.7 7.98 9.36 6.41 7.77 5.16 10.6 11.5 6.09 9.59 8.4 6.36 6.41 3.87 7.91 7.19 9.68 0.78 8.02 9.54 10.1 3.64 10.3 10.6 0.78 10.7 9.33 8.49 10.6 10 10.2 10.6 10.1 11.9 9.89 7.5 9.86 7.33 10.4 7.19 10.7 7.45 9.17 11.8 9.42 8.37 8.7 11.3 8.46 9.87 10.4 3.9 10.3 7.68 9.12 8.22 10.1 3.55 10.2 10.2 9.33 10.3 9.24 1.28 8.47 7.42 11 8.61 5.47 7.56 8.54 10.6 12.8 6.71 0.78 12.6 11.5 8.46 10.7 2.59 10.9 9.96 9.45 7.39 9.15 11.2 10.9 7.31 9.16 9.1 11.7 9.12 11.2 9.52 7.92 9.8 5.53 11.4 8.45 5.62 9.32 3.26 10.8 4.99 12.3 10.3 8.34 7.06 10.2 11.4 7.16 4.72 9.36 10.5 9.77 9.94 11.6 9.68 7.13 10.6 9.79 8.93 8.59 8.03 0.44 7.99 0.44 10.4 9.6 9.99 7.58 10.7 10.2 10.1 10.5 8.85 10 11.1 3.97 8.42 8.12 5.52 9.54 2.5 3.34 9 8.2 7.72 7.67 5.65 6.86 2.67 5.05 7.91 5.6 6.49 6.33 10.9 6.11 5.42 6.02 7.31 3.73 10.1 1.05 4.87 5.73 5.05 4.56 6.96 5.24 3.31 3.64 4.27 10.7 4.44 4.64 4.58 6.93 2.08 2.41 8.8 1.05 0.78 3.15 6.03 11.1 3.6 7.98 9.99 2.2 10.1 12 0 4.7 8.67 8.35 13.1 1.65 8.15 10.8 6.25 10.4 9.57 5.84 10.8 9.67 5.47 10.9 10.8 8.89 9.07 13.1 10.5 11 9.72 2.75 0.79 9.6 9.6 9.64 8 9.52 9.15 9.03 7.94 11.1 5.7 3.94 2.75 8.81 7.08 9.53 7.72 5.43 11.1 3.31 11 6.15 3.9 15.7 5.87 8.42 5.93 9.89 5.14 8.44 11.1 8.57 9.86 6.72 10.9 10.1 8.06 9.65 8.33 8.97 6.66 0.44 6.33 5.6 8.51 0 10.7 5.36 11.2 9.54 17.1 6.89 4.64 9.31 9.68 10.9 10.5 10.7 9.77 8.64 10.2 7.91 10.9 10.4 10.2 7.71 6.06 10.7 10.7 11.1 11.5 10.9 10.2 12.3 11.4 7.88 11.6 10 11 6.62 10.3 11.2 4.87 10.8 10.4 8.56 8.51 10.6 9.97 6.37 9.43 10.7 11.8 6.41 9.27 8 8.29 9.85 6.64 7.74 11.8 8.15 9.21 8.45 8.39 9.65 10.8 8.97 9.5 10.6 8.17 8.68 10.8 6.23 10.7 9.99 10.1 8.07 8.68 9.57 8.74 8.49 10 9.18 10.2 10.6 9.42 11 6.6 4.68 9.2 9.64 11.5 3.03 6.01 3.9 9.89 7.14 10.6 4.94 10.1 5.69 6.05 10.6 7.85 4.94 8.46 10 7.63 8.49 11 10.7 11.5 5.69 10 11.2 9.74 9.75 9.4 9.64 9.59 0 8.7 7.02 7.41 10.9 8.52 10.7 2.59 9.74 10.3 9.39 11 10.4 7.69 4.44 10.1 9.04 9.26 10.6 10.4 9.78 11.3 9.92 3.8 10.2 8.86 1.28 12.2 10.8 11.8 6.32 10 9.26 7.72 10.8 5.86 11.5 1.05 9.81 3.55 8.41 7.45 10.3 11.1 3.87 8.81 8.37 10.1 8.82 8.04 9.21 9.43 9.68 10.6 2.2 8.93 7.2 10.2 10.1 9.3 9.02 8.92 4 8.14 8.61 10.4 10.6 11.1 9.77 12.5 10.6 11.2 10.6 12 7.65 9.43 8.43 11 9.21 9.85 6.71 12.2 9.27 5.16 8.99 3.64 9.78 7.1 9.92 5.05 4.16 8.15 11.4 9.68 8.26 11 9.54 11.9 11.3 9.01 7.08 11.3 9.52 10.5 11.7 9.88 10.6 8.27 10.3 10.8 11.6 2.96 8.7 8.44 10.3 8.85 12.2 9.4 8.71 11.2 8.89 5.75 9.47 8.08 7.22 9.06 9.63 10.6 7.23 12.1 10.9 7.01 9.96 6.98 7.31 10.7 6.02 7.84 12.1 8.51 10.9 2.3 5.27 8.85 10.7 10.2 0.78 5.92 9.39 12.5 5.61 6.68 8.41 7.85 7.34 9.31 4.58 8.67 8.78 1.81 4.72 10.4 8.98 7.47 6.15 5.14 9.37 8.28 1.81 1.65 10.3 9.38 0 4.62 7.82 8.97 9.02 11.1 7.25 11.6 6.5 7.96 6.44 9.08 7.73 4.32 9.94 9.93 11.3 8.46 3.97 2.3 7.22 5.36 8.81 9.67 10.7 10 0.78 8 9.52 5.83 7.47 5.84 7.4 9.63 2.67 6.01 11.1 10.2 4.13 9.83 9.7 8.41 10.8 6.71 11.2 8.82 9.73 9.17 6.3 5.26 8.42 11.5 9.19 4.42 11.1 12.9 9.06 0 10 0.44 11.4 2.75 1.65 5.92 9.09 8.84 11.4 9.56 8 11.3 10 9.39 9.43 10.5 12.7 8.01 9.23 9.67 10.4 3.84 4.07 2.5 2.41 3.9 9.44 7.89 11.2 10.6 10.7 7.01 6.95 9.04 8.47 9.17 11.1 2.08 8.5 9.15 7.45 8.13 8.15 6.77 7.56 8.76 8.73 9.91 2.9 8.86 7.66 8.32 7.04 11.2 9.85 12 7.65 8.89 9.25 9.73 9.97 7.59 14.2 8.27 9.07 10.5 7.62 3.72 5.78 8.29 3.09 8.02 11.1 1.05 10.1 10.1 9.41 10.3 9.66 10.9 10.1 9.86 7.23 8.9 5.68 1.95 8.71 10.5 7.94 9.43 10.3 9.82 7.78 10.4 11.1 9.88 8.91 7.39 9.59 2.96 8.78 10.1 9.52 9.33 9.8 4.35 8.27 0.44 12.4 9.01 8.18 10.5 9.95 7.34 9.32 3.94 10.4 9.23 9 11.8 10.4 6.62 7.28 7.86 10.4 6.07 11.9 12.1 9.78 8.3 10.8 8.46 8.55 8.92 7.41 6.85 12.7 8.1 8.5 8.98 11.6 10.7 8.27 6.92 9.05 6.83 8.57 5.98 9.14 7.29 7.18 9.63 8.94 8.67 6.93 10.1 8.52 4.56 10.2 9.93 9.16 9.61 10.3 10.1 9.53 8.3 9.96 9.52 6.65 8.69 7 8.08 8.33 5.57 2.41 7.72 11.7 8.52 8.24 10.7 10.2 9.81 5.12 4.24 7.74 2.41 9.66 8.01 7.43 7.7 8.65 11 9.33 8.78 9.08 9.19 10.2 8.26 8.4 10.4 3.76 10.3 11.1 11.4 8.84 10.8 9.52 5.27 6.97 10.1 9.47 9.67 5.77 10.7 1.28 1.05 10.3 7.45 11.4 9.89 7.91 3.15 9.79 12 7.96 8.68 11.1 13 9.91 2.3 10.8 10.5 12.4 1.48 9.24 1.28 6.07 7.43 3.87 9.56 7.92 4.13 10.1 8.95 8.65 10.9 8.58 9.06 7.9 4.18 10.9 11.9 10.7 10.4 4.94 9.12 11.1 10.1 9.8 7.16 9.78 11.8 10.1 9.78 7.91 11 8.78 12.2 9.07 5.12 10.7 9.15 9.26 9.29 9.63 9.97 10.8 6.88 10.6 10.2 10.4 8.4 9.04 9.64 7.54 6.03 7.75 7.18 5.66 9.49 8.93 8.63 8.75 6.97 10.4 10.1 11.4 8.36 3.46 9.31 9.48 10.1 11.2 9.5 8.6 9.47 10.2 5.8 10.5 0.44 1.48 11.6 9.21 8.87 11.6 9.94 11.1 5.32 1.05 7.41 9.7 10.4 12.1 9.04 11.6 8.47 11 11.4 5.84 9.4 9.96 8.07 11.8 12.3 11.1 5.28 7.85 9.44 12 11.3 12.9 5.84 7.55 6.2 6.93 7.52 7.53 11.1 4.82 10.2 10.8 10.4 11.6 10.9 11.5 9.28 11.8 10.7 10.8 10.9 10.7 10.5 9.69 10.2 9.72 1.48 9.9 7.32 10.6 10.2 7.81 9.04 10.8 11.3 7.68 7.05 7.35 10.6 9.6 8.29 10.7 8.49 5.72 8.12 9.24 11.8 10.9 9.12 10.3 10.7 8.99 11.2 9.9 7.3 0.78 9.59 10.6 11.5 3.03 6.46 11.8 9.62 1.65 9.86 8.11 9.98 11.7 1.05 6.91 11.1 10.3 11.5 8.13 7.78 0 1.48 1.65 13.1 4.32 7.39 2.3 11 10.9 1.48 8.1 10.1 5.08 10.9 9.97 7.36 7.87 10.9 8.83 8.3 11.6 10.5 8.66 5.24 12.1 9.77 10.6 8.85 7.68 7.58 8.44 9.23 10.5 0.21 8.57 10.4 6.74 6.02 1.05 10.9 6.94 10.6 8.45 10 16.3 9.21 9.32 5.79 9.52 2.41 1.96 10.2 0.44 10.2 9.34 9.15 3.9 9.13 3.42 11 11.7 9.71 9.37 10.4 5.55 1.65 7.83 8.87 3.42 7.91 8.86 9.7 8.77 9.14 10.4 0 9.39 3.42 0 8.78 12.6 8.48 10.7 10 11 0.44 10.4 8.2 10 9.68 9.58 7.26 8.8 9.64 8.5 2.96 9.71 9.54 11.5 9.58 10.7 6.97 10.3 8.93 11.6 8.68 8.54 10.1 10.4 1.05 7.79 10.8 5.87 5.97 9.27 5.96 9.84 10.9 0.78 1.81 7.32 8.25 2.41 10.8 9.69 9.77 10.8 7.88 10.5 7.19 8.98 10.8 5.91 9.49 3.46 9.68 2.3 7.28 8.66 7.15 0.78 11.1 11 8.01 9.38 15.7 14.8 14.4 13 10.7 11.3 14.2 5.22 14.3 7.89 14 14 13.7 13.7 14.3 12.7 13.6 10.6 14.3 0.78 12.8 11.8 8.93 13.6 13.7 12.5 13.8 13.6 13.3 13.2 13.8 13.8 12.8 13.2 11.9 13.5 13.7 12.1 8.27 8.52 13.9 5.19 14.3 13.8 12.8 8.73 7.99 12.5 13 13.2 14.3 12.6 15.6 2.56 1.65 4.72 7.82 7.56 13.4 1.95 3.09 14.8 11 12.1 11.4 9.35 9 12.5 14.3 14 12.4 14.4 14 12.7 13.9 11.2 13.2 13.5 13.1 8.41 14.4 13.6 13.9 12.3 13.9 14.1 13.2 7.32 5.3 13.1 3.72 12.4 6.88 10.6 12.9 9.91 10.1 8.05 9.47 2.75 7.37 11.9 10.2 7.71 6.87 10.9 10.4 10.5 9.59 5.56 2.59 6.24 12.5 11.8 8.27 2.83 10.8 6.82 15.4 7.8 8.93 12 12.9 1.28 12.2 8.17 1.81 13.1 10.4 10.7 6.24 8.89 6.57 11.8 10.4 7.43 13.9 9.1 10.6 11.4 10 10.4 4.85 10.4 9.75 9.52 9.43 5.33 7.45 7.17 8.26 0.78 6.68 4.92 7.18 13.8 7.59 2.83 3.68 5.66 12.1 6.97 5.27 7.68 8.32 11.1 3.26 9.71 8.83 7.62 5.26 1.28 8.24 10.7 6.95 7.91 8.08 9.06 7.62 3.97 1.05 9.5 2.2 0 8.61 3.8 5.34 11.6 4.58 11.3 8.13 1.65 12.4 13.9 11.9 12.1 10.6 10.2 6.12 9.12 10.2 10.9 9.64 9.81 9.59 9.16 7.44 8.51 10 6.83 11.1 9.98 11.2 10.1 8.32 8.25 10.4 7.62 3.84 8.29 10.5 10.5 10.7 7.59 7.18 4.47 3.31 9.11 7.1 7.04 8.12 7.77 8.02 7.81 10.3 8.2 9.98 8.09 7.39 11.2 5.86 11.3 0.78 10.4 8.15 7.89 7.96 7.75 8.37 7.84 11.7 10.7 8.74 10.6 8.88 10.4 10.4 9.98 9.76 1.95 12.6 7.71 6.37 9.19 9.47 5.65 7.38 6.69 11 5.3 10.6 8.47 0.44 6.23 8.04 5.8 9.46 9.98 9.57 6.88 6.2 6.09 7.56 10.3 9.77 12.5 10.5 9.44 10 8.63 8.63 9.23 7.48 11.2 7.03 4.85 9.29 2.67 9.43 5.91 9.71 3.46 8.31 1.05 12.2 10.3 3.72 6.7 7.32 8.09 11.7 7.02 10 9.74 6.95 11.2 5.3 6.2 6.3 7.48 6.6 9.46 12.6 1.05 8.24 7.25 9.41 9.82 12 10.4 9.65 8.12 10.5 9.92 7.66 6.44 9.66 9.67 9.39 11.1 4.89 13.3 10.5 8.41 11.3 0.44 0 7.27 3.03 11.7 3.26 11.3 12 5.14 8.57 6.73 8.13 8.95 7.78 9.94 8.71 6.77 11.2 3.6 5.54 4.64 8.24 12.3 7.3 0.78 11.8 10.1 9.03 10.5 10.9 8.92 5.48 11.2 8.26 6.11 9.79 9.76 9.45 9.69 7.02 10.5 9.47 5.85 2.3 4.27 5.7 11.3 9.81 9.76 3.97 9.79 9.46 1.81 1.81 10.2 9.46 9.01 0 1.95 9.14 7.3 5.88 6.65 6.1 7.65 5.01 15.7 0.44 8.37 8.5 1.95 11 10 0.78 9.77 9.32 5.86 8.07 6.57 6.84 7.59 6.96 7.31 8.9 8.32 7.5 0.44 3.26 6.34 8.26 3.26 9.24 10.2 2.83 9.08 8.47 10.1 10.3 8.81 10.5 9.18 8.84 9.67 9.9 9.65 8.98 11 8.64 4.47 8.69 1.02 1.48 3.03 6.26 3.21 4.78 10.5 3.55 9.47 3.87 9.92 5.23 8.06 8.31 0.78 10.4 0 5.93 0 6.42 9.64 6.17 5.89 11.5 4.73 1.81 6.16 2.2 10.3 9.54 6.81 4.91 4.32 3.87 2.08 10.7 4.58 5.88 4.52 4.68 1.05 3.76 7.66 8.59 4.13 3.37 7.12 7.7 10.7 0.44 9.85 1.05 2.83 4.37 8.92 2.96 6.9 2.5 11.6 2.9 10.2 5.31 6.6 9.41 0 5.62 7.97 10.5 8.93 6.3 9.96 0.44 0 2.2 1.05 6.66 2.96 9.98 7.54 5.59 7.24 9.6 9.89 12.8 7.53 0.78 8.44 10.3 3.26 4.7 10.6 10.6 9.14 10.7 10.7 8.26 9.77 4.78 7.38 11.2 10.1 9.02 11.2 10.3 9.93 5.82 8.69 12.2 9.33 8.06 10.9 8.99 9.68 11.9 9.12 9.71 7.75 9.55 11.3 8.31 9.08 9.97 10.3 9.34 7.3 10.5 6.92 0.44 10.2 10.2 8.04 7.19 9.47 8.06 8.85 3.94 10 13.4 9.18 5.53 10.4 11.4 6.36 8.49 8.32 5.7 12.2 9.02 10.7 8.73 9.55 9.46 8.13 8.77 9.04 1.28 10.7 10.3 9.41 6.45 9.18 10.2 8.83 12.9 10.4 10.2 7.56 8.66 8.45 8.1 9.36 10.8 8.27 4.3 4.07 6.57 9.22 7.88 11.1 5.69 8.8 6.5 6.53 8.42 9.71 0.78 10.3 9.28 9.19 8.96 9.77 4.21 3.8 10.2 7.69 9.84 7.98 6.44 9.01 6.08 9.35 0 9.44 8.81 8.83 10.6 9.73 10.9 8.12 9.9 9.47 7.73 9.24 8.65 9.38 10.2 2.3 8.05 12.4 8.88 9.86 8.41 6.09 7.27 3.09 11.1 6.43 9.79 4.51 7.36 8.86 5.13 11.1 8.32 11 5.78 8.85 6.02 7.55 3.21 7.77 6.08 5.68 9.12 9.18 10 8.38 9.12 8.48 9.63 0.78 10.1 12.5 8.21 9.68 10.8 2.96 10.7 8.84 12 11.1 9.69 4.32 10.5 3.94 6.52 2.3 6.79 11.5 0.78 10.7 10.1 5.37 5.87 9.76 8.79 8.06 9.95 8.32 9.8 12.6 7.54 7.46 11.8 9.77 2.86 4.13 4.04 1.81 4.07 5.04 0 7.93 0 2.75 5.53 8.36 3.51 2.75 5.42 5.96 5.58 1.48 7.77 3.68 11.3 8.21 2.3 8.34 4.35 2.08 0.44 8.49 7.48 8.81 7.74 10.6 4.92 6.68 4.1 6.32 0.44 10.1 6.15 6.6 3.55 3.03 7.33 1.05 5.5 5.58 8.15 7.05 6.28 8.96 10.9 0.78 2.5 0.78 8.18 8.06 4.64 6.09 0 5.05 7.46 1.05 6.83 2.9 8.44 2.08 2.67 10 6.98 6.94 5.43 1.82 5.93 0.44 8.28 0.44 10.3 4 5.86 10.6 5.93 8.22 8.18 8.71 9.5 3.09 1.95 6.4 10.4 11.3 9.38 11.1 3.51 2.83 7.16 5.31 7.97 8.52 9.99 11.3 10.2 8.2 10.7 11.6 9.63 11.6 7.97 9.28 10.2 10.9 9.63 8.65 10.9 11.3 9.29 8.88 9.32 7.98 1.81 11.3 5.24 10.2 9.98 9.1 9.54 6.48 9.07 8.37 3.97 7.29 2.41 10 10.8 12 11.6 10.3 10.7 7.98 8.7 9.88 11.4 2.13 9.43 8.68 10.4 9 7.78 9.95 10.9 11.6 8.43 6.89 6.64 7.96 8.26 9.04 7.24 8.01 5.34 7.81 9.71 11.3 9.97 8.15 11.1 9.92 9.37 9.89 8.98 11 10.5 9.02 8.93 9.18 12.4 9.35 10.3 11.2 13.6 11.4 10.2 9.62 1.05 11.4 5.65 12.2 8.2 10.9 8.22 12.6 11.7 11.3 10.4 10.4 11.8 8.93 4.78 10.1 0.44 2.96 8.67 11.5 9.32 12 10.8 8.61 11.3 6.95 9.56 6.83 15.1 9.12 10.5 9.61 7.91 9.16 3.83 12.3 9.8 8.91 10 8.33 7.28 13.5 0.78 5.63 12.8 8.53 8.21 9.93 7.28 0.44 10.3 8.07 10.8 11.5 10.2 9.37 11.4 12.3 9.53 10.3 7.87 11.4 11.1 9.51 9.51 12 9.68 9.59 11.2 9.9 11.6 11.5 11.8 12.1 11.8 11.6 6.44 5.19 3.03 11.1 11.4 12.5 12.3 8.43 13.8 2.59 13.8 11.6 12.4 8.52 10.3 11.1 1.28 1.05 2.83 0.78 0.78 0.78 0.78 2.25 12.3 2.92 0.44 0.44 3.39 12.5 11.6 7.36 9.66 0 4.99 11.1 8.87 9.17 8.28 10.6 6.58 2.67 5.54 10.4 9.59 4.1 5.19 7.97 5.97 10.2 9.82 10.2 10 11 9.93 8.9 8.71 9.26 8.31 13.2 6.74 9.49 10.2 11.9 6.68 11.5 8.56 9.53 7.93 12.2 9.81 9.37 7.14 10.5 12.2 9.27 11 9.88 5.55 11.6 4.47 0.78 4.7 11.3 7.91 9.04 1.05 2.08 0 11.5 9.09 4.35 9.91 7.65 10.5 9.25 8.22 7.16 11.8 6.56 10.5 11.5 10.6 9.97 9.72 9.05 8.99 6.8 9.7 6.27 0 11.5 12.9 12.1 10.9 12.4 9.07 8.48 10.5 2.59 1.28 8.43 10.2 9.3 10.8 8.39 9.74 8.14 7.64 3.15 5.61 5.7 8.53 10.4 8.97 10.3 1.81 5.34 8.56 8.89 1.05 0 10.7 6.24 10.4 10.7 11.7 3.37 10.4 10.4 8.72 9.73 8.46 10.6 2.59 11.8 7.89 8.35 10.5 9.55 10.1 2.2 11.4 10.2 9 11.4 1.05 2.08 10.2 7.5 9.43 6.12 10.8 10 8.49 5.4 11.7 11.5 7.05 9.23 7.42 4.58 10.6 14.3 6.95 9.26 10.9 0 8.69 9.27 1.48 9.46 4.99 9.09 3.64 7.85 9.09 8.96 10 10.4 8.47 10.8 8.23 8.37 3.76 9.81 17.9 10.8 10.6 8.93 9.87 10.1 1.05 11.8 11.7 1.05 11.7 8.47 7.59 10.5 5.52 13 0.78 9.73 11.8 11.8 9.24 9.59 8.67 4.04 8.43 2.3 9.88 7.45 7.66 11.2 10.5 11.1 10.4 10.2 9.43 13.6 12.7 12.7 3.09 9.64 11.5 8.27 10.7 12.8 7.51 8 10.2 10.6 8.27 4 13.3 12.1 7.76 8.91 7.68 9.41 16.3 13 7.7 8.63 10.1 10.6 9.28 9.37 10.5 10.5 8.57 10.1 15.3 11.8 6.86 8.92 5.17 3.21 10.6 11.7 10.4 12 6.48 11.5 11.1 5.41 2.59 0 0.78 11.7 2.9 12.1 9.96 12 11.6 6.78 2.5 9.27 12.1 8.6 10.3 10.7 10.8 12.6 4.24 9.02 11.3 11.6 11.2 2.2 12.1 11.1 9.67 9.92 12.7 12.4 10.6 10.1 11.9 5.71 16.4 0 14.1 8.81 10.4 14.7 9.97 8.82 8.07 8.81 7.69 9.03 14.8 1.05 11.8 9.92 10.3 7.88 1.28 7.41 1.95 2.83 7.53 8.16 9.02 0 3.09 1.95 10.9 10.1 10.8 0.78 10.5 13.1 9.74 11.7 7.57 8.85 6.52 9.1 10.4 9.91 10.7 12.9 9.03 7.11 8.85 5.62 7.38 7.8 10.1 6.17 4.66 0 7.48 6.96 10.3 7.78 7.82 4.32 4.47 5.97 6.02 6.76 1.65 8.43 6.69 2.41 7.26 8.38 9.17 5.2 8.75 0 2.2 7.27 11.4 6.28 6.59 1.05 7.21 7.19 6.81 2.41 8.02 4.47 7.18 7.25 6.86 3.83 5.54 9.41 6.65 5.61 13.6 4.78 7.97 2.2 5.02 0 3.03 4.44 8.81 4.92 9.24 2.08 3.31 11.6 5.46 8.56 5.93 5.53 5.19 5.99 1.49 2.3 4.8 6.55 8.89 3.09 1.95 4.66 5.5 1.65 5.31 4.68 6.11 0 7.5 10.5 8.46 3.6 9.79 5.3 4.07 10.2 6.11 6.56 1.05 9.55 10.7 1.05 1.05 3.9 8.95 8.17 8.36 3.83 4.99 0.44 8.06 8.2 4.6 12.4 5.77 8.22 6.78 8.21 7.69 6.59 1.95 10.2 0 10.7 3.8 13 3.31 13.9 14.5 13.2 0.44 10.9 10.6 10.5 8.88 10.7 12.3 10.3 9.07 9.98 10.5 10.7 11.1 1.81 10.8 10.4 11.2 9.25 10.8 9.32 10.9 10.8 11.8 7.08 8.5 0.44 2.41 12.6 4.99 9.87 4.6 9.26 7.86 9.73 10.9 6.03 6.6 8.79 12.2 9.19 10.8 10.7 10.2 1.28 10.6 1.95 11.6 11.4 11.4 9.86 9.99 10.5 9.32 10.1 11.2 9.85 1.48 10.6 12.6 9.84 9.29 10.2 11 9.06 10.4 9.56 9.97 12 12.8 11.2 9.84 10.4 9.01 12 9.98 9.44 1.65 9.8 0 12.7 15.5 5.31 1.76 7.99 5.19 5.98 8.18 7.76 8.83 3.31 3.51 4.1 12.2 14.4 9.1 11.4 12.1 10.2 8.96 9.38 9.35 9.79 9.67 10.4 9.27 7.32 1.95 5.32 9.26 1.05 4.42 4.64 0.78 3.9 4.8 3.15 3.21 2.75 9.21 8.03 1.95 12.5 4.68 2.41 14.2 4.68 8.4 11.1 7.08 10.1 4.92 11.8 9.91 4.78 7.36 6.68 10.4 12.8 7.51 10 10.5 12.9 9.56 13.3 11.2 11.6 13.7 8.82 12.2 11.2 7.34 12.7 8.97 9.01 9.5 6.98 9.01 9.5 7.65 8.65 6.66 12.8 8.75 9.54 8.05 7.88 8.26 7.43 7.5 7.09 7.02 8.25 10.6 9.51 8.05 11.1 7.81 9.03 6.12 9.47 10.3 9.97 6.77 9.61 9.16 7.32 8.14 8.05 8.67 8.28 6.85 6.73 6.46 3.26 6.07 7.3 7.8 9.15 8.4 9.77 7.16 4.74 9.86 4.27 7.04 8.39 8.96 2.75 2.5 6.22 5.23 4.88 11.9 6.05 2.83 5.24 3.37 0.78 2.59 3.68 9.96 8.75 7.65 8.54 8.22 8.02 8.45 6.26 6.98 8.92 9.5 6.45 9.05 8.16 10.1 5.86 10.9 10.2 10.6 8.84 8.1 7.63 7.8 2.9 10.8 6.52 10.5 8.04 8.03 3.94 6.7 2.5 7.46 8.52 7.87 9.62 1.28 8.56 9.04 8.9 7.78 8.53 7.73 10.6 7.76 8.28 8.55 7.59 11.4 7.59 7.08 8.9 6.91 6.6 11.8 10.9 7.19 8.33 6.66 8.71 2.3 8.27 7.26 8.06 7.2 7.3 8.42 8.46 2.75 2.41 6.83 6.58 7.95 5.83 11.9 10.4 10.7 12.8 8.54 11.3 7.51 13 4.97 13.8 9.16 10.7 8.47 5.01 12.1 10.2 9.02 9.52 10.5 9.61 11.7 13.6 5.58 4.16 10.8 12 9.41 6.04 9.39 9.74 11.8 8.62 9.77 10 11.1 12.8 8.4 6.7 9.82 3.37 10 8.73 5.32 5.02 7.62 10.4 9.3 5.19 8.87 0.44 4.51 5.96 10.2 3.6 9.91 10.5 8.65 9.87 8.86 5.98 8.58 8.03 9.87 0 9.38 10.9 8.68 5.95 8.05 9.93 8.11 2.41 14.3 10.5 7.32 9.99 8.29 9.43 9.07 9.24 10.4 6.84 10 10.3 5.12 9.68 8.48 10.4 12.8 7.8 9.49 7.9 8.35 7.81 10.3 10.1 9.92 6.87 7.11 6.85 11.2 7.18 5.73 8.61 7.14 8.47 9.53 9.02 11.7 10.3 9.3 7.24 9.9 7.63 7.21 4.4 4.7 9.85 7.22 9.37 10.1 9.43 9.78 10.6 11.5 8.68 6.68 8.78 7.44 11.8 11 6.98 10.1 10.2 11 9.37 8.07 7.11 5.74 10.1 5.42 5.34 7.73 9.54 7.01 9.27 10.5 8.43 12.6 10.1 7.47 1.48 7.08 7.79 12.4 8 9.77 6.42 4.8 9.06 8.03 6.34 7.84 8.53 8.8 11.8 9.37 8.95 1.48 12.1 12.4 7.15 10.7 11.7 8.6 8.26 7.66 0.45 9.73 4.1 1.05 2.2 10.3 6.49 10.1 12.5 7.59 7.11 2.2 4.32 8.27 2.41 8.06 7.99 2.3 11.4 6.7 10.6 9.5 8.35 9.12 10.9 7.82 9.71 7.14 2.75 4.72 3.37 10.4 7.76 6.61 0.78 9.2 12 8.25 7.97 8.33 9.77 8.72 8.42 8.37 9.5 11.2 9.34 9.51 9.48 9.6 9.24 8.59 7.32 9.55 10.4 10.8 8.53 8.28 8.41 7.25 8.58 8.01 8.11 7.68 6.84 9.43 8.31 3.9 9.85 4.97 7.86 8.5 4.49 7.94 7.82 9.43 7.36 9.09 7.8 6.53 8.13 7.6 9.05 8 7.62 8.87 8.42 0.78 8.78 10.3 8.69 8.15 8.14 10.7 9.41 7.94 10.4 6.63 9.16 9.17 8.92 10.8 6.92 7.81 9.77 10.2 9.05 6.27 9.76 7.89 9.49 9.34 9.51 8.34 2.67 8.14 8.07 9.36 9.59 7.27 6.9 8.45 10 9.95 7.85 8.73 9.51 7.64 9.07 10.1 7.33 8 10.6 8.67 8.61 9.25 9.38 7.25 10.6 9.17 9.7 8.83 7.6 7.89 9.15 10 12 9.88 9.72 3.37 6.77 9.37 7.1 9.85 8.38 8.46 7.6 8.56 5.12 8.25 9.94 7.16 8.56 4.27 3.51 8.88 8.01 10.9 7.12 0.78 8.84 3.03 8.39 9.2 8.25 8.11 8.08 7.85 6.83 6.75 7.61 10.8 8.81 9.8 8 10.7 6.89 5.02 5.55 8.55 8.24 7.62 9.12 10.1 0.44 6.03 12.6 7.87 5.73 7.73 10 9.59 10.4 11.7 8.77 8.01 8.14 8.28 6.83 2.9 8.93 5.7 7.75 8.36 7.13 11.1 9.65 10.3 5.32 7.66 6.2 8.41 6.78 7.38 8.99 1.05 6.84 6.51 5.05 5.99 7.3 9.14 8.04 6.89 10 7.14 10.3 6.57 10.1 6.44 6.81 8.98 7.53 4.07 7.24 5.66 4.13 6.95 6.32 7.71 7.89 0.78 8.78 3.94 0 5.05 12.5 0.78 7.85 1.28 6.72 8.03 7.11 6.42 6.93 8.44 9.04 11.2 5.87 7.8 9.25 7.6 8.8 10.5 9.58 10.1 6.23 8.35 10.5 5.93 8.91 9.04 9.09 9.02 10 9.14 8.55 10.5 10.6 9.72 7.11 7.82 8.16 7.25 7.56 13.1 9.19 10.1 5.6 7.03 1.05 10 8.85 7.43 5.84 6.28 8.02 11.2 6.56 0.44 8.02 7.79 5.04 4.84 7.87 8.58 4.07 11.4 1.28 9.27 5.27 3.87 10.7 10.8 4.97 7.52 7.45 5.64 9.56 2.08 3.15 9.07 4.44 11 6.48 9.19 7.21 11.1 10.2 6.8 11 7.34 7.72 8.67 10.2 5.41 7.54 9.38 8.28 8.36 8.62 2.59 7.97 9.17 6.92 8.3 9.68 1.65 10.6 4.54 12.8 0.44 6.77 9 9.73 8.65 8.84 7.38 6.6 7.86 10.3 10.7 8.87 9.86 10 8.82 8.47 7.98 8.93 10.1 9.68 9.46 9.22 8.11 7.48 2.67 2.08 4.66 4.72 8.54 7.31 8.87 3.59 4.94 4.13 0.78 8.62 8.66 12.7 5.79 8.26 6.87 3.09 5.26 0 9.45 7.88 5.24 7.84 6.09 7.6 9.34 5.32 9.29 9.22 9.83 9.3 10.2 9.88 8 7.16 8.7 9.66 8.31 9.42 6.62 9.01 6.95 10.1 8.57 7.54 8.96 7.9 4.1 8.95 8.37 8.96 8.04 9.91 9.12 9.33 9.35 9.4 8.24 5.99 10.5 10.7 7.36 9.12 11.3 9.73 10.6 8.7 10.2 9.91 9.23 5.4 11 9.38 9.92 9.1 11.7 7.83 8.25 11.2 10.6 7.5 11.6 9.33 5.36 7.88 6.01 9.43 10.3 9.17 3.83 8.64 7.42 8.73 9.86 10.1 8.46 9.77 8.76 5.7 11.3 9.93 8.11 8.59 10.8 11 8.2 7.51 8.94 9.45 7.37 9.37 12.2 8.48 8.24 5.63 7.97 9.24 10.2 6.37 7.46 4.62 8.8 6.08 8.17 9.18 6.97 5.9 3.76 11.2 5.75 4.18 11.9 9.02 2.3 7.84 9.12 11.3 7.08 8.42 10.5 9.54 3.03 11.1 4.24 10.3 8.71 7.86 11 7.79 13.5 8.58 6.3 9.78 10.8 6.74 11 5.23 6.65 8.91 8.38 7.86 10.4 7.12 11.5 4.7 2.08 6.95 3.72 4.99 8.2 7.49 7.44 9.14 2.83 2.5 5.35 8.25 9.78 12.1 8.22 7 8.58 10.1 6.88 6.13 10.4 7.36 10.8 11.2 9.57 11.7 9.78 12.6 8.35 9.65 10.1 6.22 8.86 7.43 10.1 11 11.7 8.95 10.4 1.05 11.4 9.73 9.44 10.4 8.66 9.45 4.87 4.7 6.01 2.65 11.2 8.44 9.22 7.69 9.69 2.59 10.5 13.4 8.57 2.3 4.27 7.2 7.14 9.89 8.45 9.2 11.4 11.6 14.2 4.68 7.55 8.5 7.09 6.26 11.1 11.9 9.43 5.31 5.53 8.37 11.5 10.4 8.76 2.3 7.65 1.48 12.4 11.4 7.45 9.2 9.98 9.37 11.2 10.1 4.13 7.28 9.74 8.66 10.2 9.5 9.94 10 9.76 8.07 9.33 8.73 9.37 9.25 9.83 9.83 12.9 0 7.71 7.74 8.55 9.11 9.42 8.72 8.38 6.24 9.68 8.62 7.52 11.7 10.2 12.2 9.27 9.61 10.4 8.8 5.47 10.7 9.93 9.85 1.28 7.42 11.4 11 7.19 4.95 9.28 4.58 9.13 9.83 4.89 11.2 10.8 11.6 11 12.1 9.23 5.83 1.65 10.6 2.2 10.7 11 1.48 9.74 8.61 5.87 9.11 6.98 9.72 8.06 7.64 4.07 9.19 6.83 8.91 8.69 10.4 10.3 9.79 8.8 10 3.71 10.4 7.7 9.53 9.82 6.47 9.72 8.92 12 9.83 8.87 9.23 11.2 9.07 8.52 0.34 8.86 9.86 2.99 8.97 8.01 8.19 9.41 0.44 6.95 6.67 9.22 9.35 3.64 10.8 11 6.86 10.8 13.8 8.8 10 7.24 12.7 8.76 1.81 9.01 8.85 9.95 8.9 12.4 8.84 11.3 11.9 12.7 10.8 11.7 11.1 8.35 12.8 9.37 6.68 10.1 6.94 8.12 9.36 1.65 9.39 0.44 11.7 11.6 10.2 6.36 8.81 0 11.3 11.4 11.8 10.2 9.1 12.7 8.4 9.78 8.01 10.6 9.23 6.69 6.24 12.2 6.44 12.1 10 10.5 8.4 7.02 0 0 10.1 1.05 0 0 10 1.81 6.83 1.05 3.72 7.93 8.93 0 2.3 1.81 8.91 0 0 7.71 2.75 10.4 12.1 10.2 6.54 7.46 3.83 1.95 7.14 9.76 8.36 0 7.42 6.09 6.15 9.45 8.05 3.9 5.89 6.85 8.15 8.39 0.78 7.61 6.21 12.2 8.02 9.83 0 1.65 0.78 4.76 5.58 0 5.79 7.89 10.3 8.64 8.39 9.74 9.73 1.28 8.83 0.78 0.78 0 0 8.64 7.5 3.31 10.6 9.11 6.79 7.65 9.62 0 8.54 10.6 10.6 9.25 7.84 0.78 2.83 8.99 11.6 10.1 0.44 8.44 10.4 8.08 8.45 7.86 4.89 0.78 2.41 10.9 0 9.49 11.1 8.44 0.78 8.7 9.88 9.58 4.6 9.6 9.6 0.78 0.78 12.2 9.27 7.81 9 9.91 8.47 6.89 3.37 9.44 9.57 6.14 1.28 1.48 8.52 2.75 6.75 10.4 9.57 9.24 6.64 9.81 10.8 4.51 6.67 8.5 9.59 9.46 8.95 1.81 6.87 7.78 8.75 1.28 2.84 7.98 6.12 7.94 8.17 7.83 7.49 8.95 11.3 8.85 9.36 4.62 4.8 9.76 6.24 6.73 1.95 4.94 0.78 3.51 0 1.95 1.95 4 10.6 10.9 8.55 4.87 9.72 10.1 7.19 8.43 11.8 6.96 11 10.1 8.55 8.65 6.94 6.07 5.94 7.23 0.78 9.48 11.2 9.06 7.95 4.04 9.34 10.9 9.43 7.77 9.17 1.05 5.41 8.47 1.65 10.1 8.95 7.79 8.42 10 10.3 10.5 12.2 10.4 1.48 8.28 4.4 7.62 4.51 7.94 8.3 11.3 8.86 2.08 9.8 9.83 9.76 7.37 6.54 13.1 3.68 5.56 2.83 3.21 6.76 7.2 9.31 9.83 7.74 9.66 6.05 6.26 8.62 9.81 3.09 9.11 5.76 4.27 8.2 8.43 7.15 6.86 9.61 9.25 8.72 7.77 9.46 9.2 7.74 8.45 9.18 8.54 7.57 7.57 7.44 8.23 5.92 9.89 9.58 6.84 8.98 8.29 9.64 8.57 11.2 8.78 10.7 10.8 7.47 11.6 10.8 8.62 9.48 8.49 7.6 7.54 9.42 10.8 7.37 8.72 8.62 9.89 4.04 3.09 7.08 10 10.7 10.5 5.07 8.9 6.17 5.81 2.2 8.12 5.93 8.37 7.72 6.06 2.9 7.28 7.64 6.79 6.2 0 9.28 10.8 11 7.93 8.39 11.6 8.63 10.2 8.19 8.69 9.95 10.7 3.15 11.8 7.32 5.98 6.17 8.69 9.82 9.07 1.05 7.85 8.75 7.47 8.48 9.95 4.44 9.33 8.58 9.06 8.96 8.47 9.1 8.32 11.4 9.14 9 9.32 5.86 9.06 8.53 4.27 7.73 11.6 9.46 6.25 9.25 7.49 8.96 9.34 8.39 9.33 7.52 9.28 1.28 7.37 10.2 8.78 9.66 6.36 9.04 9.38 9.51 9.93 6.38 4.47 6.54 8.55 9.08 6.39 8.4 9.2 0.78 9.74 9.72 7.61 9.58 8.67 7.59 8.63 10.1 7.59 7.96 8.2 9.27 9.8 8.49 5.95 8.18 8.63 7.21 7.05 1.48 10.4 8.92 9.49 9.47 10.1 8.12 8.98 8.91 9.84 1.48 9.55 11 9.34 9.49 11.6 5.7 9.95 2.41 10.1 10.1 10.8 9.1 9.92 9.59 9.13 8.72 4.82 6.98 10.1 9.44 8.67 11 4.29 11 7.83 7.69 9.98 10.4 6.77 7.42 8.38 7.23 9.15 10 9.53 7.65 1.81 3.21 3.03 1.86 10 9.55 10.7 6.38 5.1 7.07 10.6 9.68 9.76 7.33 10.1 5.41 4.24 6.44 10.8 7.61 9.39 6.62 11.9 8.47 6.16 9.5 10.1 5.43 10.6 7.34 7.64 9.98 6.02 8.72 8.94 11.2 8.24 7.66 10.8 3.37 10.3 8.24 9.97 0.44 7.81 8.25 4.6 10.6 9.07 9.32 10.6 7.9 2.3 12.1 7.37 6.86 4.4 10.8 8.29 11.7 1.05 6.4 7.61 9.69 10.4 6.04 7.21 7.89 11.1 4.16 2.83 0.78 2.08 9.68 10.2 8.61 10.3 11.3 7.52 9 5.2 9.59 6.87 0 8.46 8.37 11.3 1.28 6.34 6.96 6.71 2.75 5.98 0 12.2 10.4 1.48 6.11 7.54 7.59 9.62 9.07 3.51 9.86 9.72 5.99 5.72 12.4 7.85 12.4 6.52 7.16 1.65 2.75 10.4 8.48 7.17 9.43 7.93 9.95 7.87 6.11 7.81 7.55 4.76 7.99 6.83 8.97 11.1 6.17 8.59 5.22 7.58 9.88 9.1 8.62 7.03 6.22 5.24 8.89 10.1 8.87 5.42 4.51 2.75 6.81 8.76 9.17 8.11 8.22 9.73 8.08 8.24 7.06 5.46 6.62 9.19 10.9 6.27 8.48 0 2.75 8.66 4.84 7.79 6.43 7.6 8.42 9.42 10.4 6.93 9.49 8.99 9.28 7.09 6.57 2.59 8.02 8.45 10.3 8.89 7.83 6.84 8.79 9.02 8.52 10.2 9.4 9.06 0.78 8.67 10.7 6.15 9.45 9.81 10.1 9.32 8.05 12.5 5.71 9.44 8.57 4.92 7.08 9.62 9.14 9.53 10.2 6.36 8.49 10.2 9.19 4.76 9.69 10.5 10.5 4.87 6.87 8.5 9.16 7.69 8.14 11 8.84 5.27 8.31 7.56 9.01 8.07 8.97 9.47 9.44 7.84 9.13 9.87 8.48 8.72 1.05 9.04 8.87 8.36 6.59 10.6 9.9 8.98 10.3 6.15 9.19 8.69 8.17 9.86 7.77 10.9 3.6 7.28 9.53 6.64 8.84 5.79 6.9 5.04 7.95 10.3 9.42 8.78 7.68 10.5 7.43 0 6.2 5.85 9.22 9.47 8.56 2.75 1.81 10.9 10.3 9.84 6.38 10.4 5.78 6.56 9.42 0 7.3 9.08 9.32 10.3 7.65 6.41 11.9 9.54 8.53 7.33 9.44 7.78 9.54 8.7 8.65 7.78 9.24 10.2 9.52 5.39 4.35 9.52 6.45 6.48 8.54 9.98 10.9 9.96 0 8.98 0.44 9.09 9.31 7.83 9.99 7.17 0 8 0.78 7.31 8.15 11.7 9.71 8.5 2.67 9.63 3.68 3.42 9.67 9.34 8.8 5.32 9.08 9.59 8.75 7.51 9.34 9.55 9.94 2.41 9.64 2.41 6.82 9.59 10.7 11.1 11.2 6.19 9.74 9.56 10.3 3.15 6 5.35 3.21 6.12 7.83 2.41 12 10.4 9.73 8.17 5.67 9.43 9.54 6.49 8.49 7.04 11.2 9.71 9.37 9.19 6.32 11.7 9.7 9.08 8.81 10.5 9.2 10.8 9.17 8.91 9.94 9.35 6.96 2.77 9.76 6.48 4.49 4.64 8.93 4.54 3.31 2.41 8.83 4.39 4.44 12.8 9.06 9.16 8.33 2.9 10.4 9.21 11.4 10.4 9.54 6.79 10.7 11.3 10.3 8.63 9.05 12.9 10.9 10.8 8.98 9.61 9.54 9.31 6.86 8.75 12.2 8.15 9.44 8.81 6.19 3.51 9.95 9.81 9.63 8.03 9.11 2.9 6.63 11 10.2 8.24 13.7 6.86 11.2 5.07 3.09 10.2 10.6 9.92 8.82 9.98 6.66 8.67 7.43 8.73 7.28 5.08 8.02 9.2 9.78 9.55 8.22 7.23 8.79 9.38 7.8 9.72 5.05 6.78 10 6.18 10.2 10.2 10.4 10.5 7.25 12.8 11.5 10.5 7.7 9.6 12.7 11.3 7.58 12.3 11.2 11.2 12 12 10.2 10.4 7.36 11.1 11.7 9.13 11.1 7.63 8.06 10.6 9.11 9.19 12.3 11 10.2 8.73 11.1 8.56 9.29 9.35 6.69 11.6 5.43 9.35 10.1 9.17 8.12 9.53 4.16 0.78 11.7 8.02 10.9 8.51 8.81 6.61 12 12.1 9.39 9.72 11.5 10.5 8.54 11.5 9.49 11.5 9.81 10.4 8.82 10.8 6.79 10 6.93 7.14 5.04 10.6 9.47 9.92 4.74 3.68 2.3 1.65 9.88 10.9 11.1 16.8 9.67 11.7 13.2 10.6 11.9 8.5 4.54 9.39 10.7 9.5 11.1 9.64 6.28 9.62 6.04 10.7 5.19 1.65 5.12 5.19 8.32 5.74 7.78 8.06 11 7.31 8.68 9.81 1.28 6.37 9.74 10.5 9.65 11.4 8.86 4.58 7.91 2.2 1.48 9.8 8.95 4.58 11.3 10.8 4.37 9.53 7.18 3.26 7.34 3.94 10.9 4.07 13.4 11.9 11.3 7.24 8.89 7.96 9.35 8.62 7.65 7.14 10.9 1.05 7.5 5.93 9.91 5.14 3.6 9.56 11.3 7.96 5.27 13.3 9.83 7.59 11.5 4.44 3.03 11.8 0 8.42 11 6.01 10.2 9.06 9 11.7 9.59 9.29 9.82 10 8.88 6.87 5.02 8.38 14.2 11.3 10.9 10.5 9.39 9.66 8.39 10.7 11.8 10.9 9.72 9.68 8.5 9.65 9.96 10.4 11.1 10.1 11.1 9.38 10.9 0 6.72 6.03 11.4 9.08 10.3 9.82 4.78 2.41 8.67 9.1 7.63 6.92 10.2 2.83 9.21 8.71 9.7 10 10.9 11 7.05 5.71 2.06 9.77 10.9 10.3 10.1 9.58 7.45 7.72 10.5 12.5 8.41 7.21 11.7 9.34 11.3 0 2.08 3.83 9.38 3.55 3.55 11.2 10 10.6 6.22 0.44 9.86 8.3 8.18 5.93 10.5 11.9 5.89 6.24 4.13 5.19 4.16 4.21 9.17 9.11 9.49 9.03 10.3 9.22 9.3 2.41 9.23 7.44 8.86 0.44 4.6 7.71 2.37 1.28 5.76 1.28 8.5 10.5 7.29 6.95 11.2 10.4 11.9 9.64 0 11.7 10.2 9.95 9.76 9.37 5.97 8.12 8.58 9.05 6.76 7.94 6.3 11.6 11.5 10.4 4.29 5.96 5.94 8.8 6.38 10.8 9.88 2.67 9.43 10.1 9.51 0.44 9.91 9.16 8.26 5.71 6.54 7 5.43 10.9 10.3 9.36 9.56 8.49 7.89 10.3 9.91 0.78 6.53 11 7.44 1.81 4.74 2.67 8.22 10.4 9 1.05 6.23 6.45 1.95 4.49 5.43 11.3 8.69 7.62 9.05 10 8.24 1.48 6.76 9.17 9.82 6.52 0 5.54 7.49 8.5 8.79 7.88 8.66 5.19 9.78 7.13 7.38 9.7 9.64 8.78 11.9 9 8.76 5.5 10.8 11.5 10.2 9.76 13.1 8.52 8.62 6.56 2.83 9.34 4.66 10.7 10.6 9.84 7.55 5.67 9.63 8.11 12.1 8.92 8.34 9.97 8.08 9.56 8.49 7.96 9.14 6.92 9.53 9.88 7.24 7.63 1.28 5.26 8.2 7.68 8.25 10.7 8.59 9.16 7.75 9.04 8.13 8.25 9.56 9.28 6.64 3.9 7.24 8.73 8.35 9.77 7.38 10.2 10 9.29 7.35 2.59 6.63 8.45 10.8 9.03 9.23 11.4 7.25 9.13 9.59 7.99 6.09 10.2 8.6 6.42 10.7 9.42 8.9 9.39 7.33 5.05 6.79 9.92 10.6 10.1 9.57 8.66 6.04 10.8 9.51 8.98 5.04 10.2 5.46 9.1 5.08 8.28 7.23 9.27 10.5 10.5 11 9.91 7.64 10.1 7.45 8.21 8.82 7.71 9.74 7.48 8.11 9.66 9.6 9.01 9.75 7.35 8.74 7.15 8.95 11.2 7.98 8.45 8.93 7.17 3.37 1.65 7.26 4.7 7.06 9.08 6.07 9.67 13.1 7.42 10.1 10.4 1.81 9.73 9.11 8.04 10.3 9.63 8.34 7.64 10.7 10.5 10.6 9.19 9.59 10.4 1.48 7.05 6.09 10.4 9.25 1.05 8.46 8.83 8.28 10 8.73 11.3 9.7 7.76 9.87 8.84 8.99 9.73 5.93 8.88 5.9 4.66 6.72 11.8 5.23 10.7 7.74 1.95 9.91 10.7 6.36 10.1 3.26 8.95 8.63 8.64 8.87 8.8 7.78 8.29 9.61 5.07 8.82 10.1 9.55 7.49 9.6 10.4 8.77 10.3 3.94 10.2 4.64 7.17 1.48 8.4 9.61 9.16 7.61 4.4 11.3 7.76 10.5 14.3 6.44 9.82 11.5 8.75 6.97 7.05 8.14 3.83 4.42 9.09 5.4 11 10 6.45 6.34 7.03 4.18 11.1 8.39 9.68 10.4 8.75 9.5 8.05 1.81 11.6 3.94 8.44 8.96 10.6 7.56 8.73 7.89 8.07 8.74 8.62 7.83 10.3 10.3 6.61 8.78 9.44 6.48 5.14 6.62 9.31 1.05 9.45 3.42 8.28 9.34 8.14 4.16 2.08 8.23 11.5 7.89 8.24 8.31 7.29 9.41 10.6 10.5 9.15 8.79 8.69 11.2 9.59 5.35 8.99 7.45 9.08 8.29 5.87 6.65 11.6 10 11.8 8.56 9.52 5.95 9.9 9.16 11.6 9.35 10.6 9.39 7.85 10.8 4.16 9.27 1.95 9.7 8.98 7.35 8.82 5.26 1.95 6.98 6.77 2.5 0 0.44 4.84 9.22 11.3 1.48 10.3 11.3 7.16 8.9 9.3 7.87 7.99 8.02 7.49 11 8.45 11.3 2.08 8.38 9.63 8.76 8.2 10.5 9.15 3.9 7.1 9.04 10.2 4.18 11.3 7.98 0.78 13.1 9.14 6.59 9.66 7.93 6.88 10.1 8.61 8.87 8.3 10.3 8.73 4.13 7.27 9.73 7.91 9.4 9.67 11.6 8.9 10.7 9.74 10.1 6 11.1 8.62 10.5 9.37 9.16 5.93 9.81 9.82 9.28 8.58 9.22 10.7 9.87 11.9 10.1 9.54 5.58 10.4 13.1 8.47 2.59 10.4 9.53 1.05 9.26 7.47 9.05 13.4 10.6 5.94 9.53 10.1 7.73 7.08 8.52 7.76 11.9 10.6 5.66 4.91 8.81 9.54 8.53 8.3 8.51 1.65 7.57 7.49 9.31 9.57 7.08 2.83 10.7 6.83 6.7 7.81 2.96 9.6 9.66 8.95 7.11 9.81 6.81 5.27 8.84 10.6 8.78 10.2 5.26 11.8 10.1 10.8 10.4 4.91 10.6 9.37 9.04 9.93 8.62 11 9.19 7.08 10.5 6.59 0 10.8 9.34 8.93 10.6 8.62 9.85 11.3 9.46 0.73 10.8 9.19 10.4 5.99 3.03 10.8 13.8 0.78 9.89 6.28 11 9.2 10.7 1.05 7.76 4.4 8.97 6.81 5.57 6.88 10.5 10.7 9.25 1.48 12.3 8.31 9.89 9.18 4.8 8.23 9.36 7.91 4.76 1.82 10.7 9.16 8.51 9.95 5.23 10.7 9.43 9.51 7.73 11.8 9.94 2.41 6.51 10.3 1.65 9.71 5.8 11.2 0.44 9.37 0.78 10.9 8.31 8.94 6.58 8.23 8.99 10.4 3.15 7.34 4.24 8.51 9.33 7.8 9.84 10.3 6.07 7.12 8.39 7.12 9.06 12.2 3.9 9.32 3.97 7.47 9.8 9.54 6.01 10.8 9.23 1.81 9.01 8.12 6.33 9.2 9.75 11.8 9.49 9.55 11.2 9.06 8.52 7.9 9.98 9.83 1.95 11.9 8.21 2.08 11.2 8.45 8.77 5.87 9.88 5.04 11.4 7.56 9.01 10.7 9.07 4.58 3.09 6.85 5.26 10.6 1.81 9.93 6.37 9.76 7.87 8 7.77 10.6 14.1 10.8 6.79 11.8 7.46 8.15 9.89 10.1 9.65 8.95 9.17 8.65 9.8 5.67 9.63 8.85 7.55 9.54 10.4 0.78 8.93 10.9 10.3 8.02 9.84 9.72 9.37 6.6 8.56 7.37 8.87 2.08 8.15 8.36 8.26 6.56 8.46 9.45 8.66 11.3 6.58 6.86 9.22 5.17 1.28 9.6 13.2 12.2 9.17 7.32 6.03 7.5 10.5 9.56 10.7 9.78 1.28 4.32 12.3 10.3 9.74 7.84 7.59 11.4 7.82 10.4 10.5 10.4 10 10 12.7 10.7 12.2 7.16 10.5 8.34 8.85 9.14 9.28 6.44 9.57 10.5 4.84 9.85 10.3 1.65 9.46 7.65 11.4 10.4 11.3 9.66 10.3 8.81 10.5 11.7 9.49 9.19 10.4 6.91 8.86 11.3 9.39 10.8 8.07 10.3 7.05 10.2 10.1 8.2 8.93 11.6 10.3 8.97 10.9 6.8 8.96 12.4 7.89 8.61 8.74 12 10.8 7.18 10.3 10.4 9.2 1.28 13.4 10.1 12.4 10.7 10.2 8.81 9.71 11.9 6.84 11.3 11.4 10 6.73 10 9 9.81 10.4 4.66 5.42 6.64 11.1 6.03 8.39 11.6 4.97 1.48 8.51 9.85 6.7 9.09 10.8 9.35 12 10.5 11.2 9.58 10.8 9.76 10.5 8.39 8.64 7.68 7.62 10.8 10.3 8.14 9.23 9.86 8.55 8.48 11.1 13.7 16 8.21 10.9 11.4 9.18 10.6 7.21 11.5 14.3 10.2 6.72 11.5 9.52 10.1 9.21 9.08 9.69 9.32 10.8 11.6 8.71 10.6 10.4 8.89 10.8 11.1 5.47 10.2 11.5 9.7 10.5 9.12 10 9.44 11.3 7.99 10.4 11.3 6.94 6.78 4.68 6.09 10.4 9.79 12.1 8.61 3.51 9.17 4.27 11.9 7.9 10.1 10.2 9.43 4.8 9.97 3.15 6.48 8.18 16.9 3.98 5.32 10.1 10 9.15 10.1 10.8 10.7 9.92 9.76 8.78 10.5 8.27 8.66 11.8 9.87 8.8 9.75 9.35 12.9 9.67 8.97 9.42 10.5 8.3 10.7 10.3 13.4 9.93 7.32 7.99 8.27 8.46 10.3 8.53 11.2 7.57 12.3 9.3 8.39 9.81 11.7 8.45 7.24 12.6 10.2 9.58 10.9 11.8 10.4 10.8 11 10.4 10.8 6.47 10.9 9.64 12.9 6.75 11.2 10.4 8.53 6.24 8.71 9.58 10.2 10.5 10.3 10.7 10.3 8.74 10.4 11.5 6.35 9.63 12.8 12.3 10.6 13.2 10.3 1.48 11.2 9.22 10.4 11.8 9.21 10.8 7.69 10.7 9.76 8.95 10.9 10.5 11.7 7.54 8.69 10.3 7.64 11 6.51 7.69 10.1 8.81 4.58 5.83 8.19 8.25 6.44 10.1 9.7 7.5 8.5 10.2 8.23 9.37 9.84 10 5.48 9.42 9.08 10.6 9.21 8.69 7.39 2.59 10.5 9.44 10.7 8.09 9.85 10.4 7.63 8.25 7.72 12.1 10.7 9.88 11.3 10.5 10.9 10.4 10.5 9.83 11.9 10.8 10.3 9.96 8.35 10.8 9.91 11.1 8.43 10.1 7.92 11 9.04 11.6 6.71 8.33 8.69 9.85 9.08 10.2 11.6 5.37 6.77 7.8 9.51 12.1 10.2 9.56 10.4 8.77 8.83 11.7 10.3 6.88 8.21 6.11 9.59 10.2 5.41 9.48 10.3 10.4 11.6 6.75 11.8 10.5 9.75 10 8.97 10.8 11.9 4.87 10.6 5.76 10.3 8.93 6.72 10.2 10.2 8.21 9.33 10.6 11.1 6.66 7.4 5.13 10.2 7.86 8.09 12.9 8.29 3.55 10.3 3.42 4.21 4.27 6.59 10 11 8.92 12.7 10.8 1.28 5.75 12 10.4 12 9.2 2.73 10 8.96 11 8.37 9.93 12.4 9.93 8.82 7.55 8 11.8 10.3 10.7 13.8 10.1 11 2.5 11.6 9.02 8.73
-TCGA-BQ-7062-01 5.99 6.47 10.7 9.94 7.86 7.93 2.35 4.29 7.17 4.56 6.47 8.03 4.66 2.75 5.37 9.31 10.1 10.1 8.12 8.69 7.69 3.57 9.07 4.95 9.73 7.81 2.12 9.72 4.58 7.42 3.86 5.94 6 6.11 2.91 1.8 2.96 5.07 0.86 5.62 5.94 2.18 7.66 2.27 7.18 4.42 2.09 5.55 10.9 7.35 4.07 6.53 8.4 11.5 4.36 1.06 6.18 2.96 6.07 5.49 7.74 5.97 8.31 6.08 3.36 2.56 6.14 8.48 10.7 5.46 5.48 7.75 2.63 2.75 0.86 2.96 4.93 6.23 4 1.54 4.15 1.67 2.12 6.01 8.03 3.24 5.4 6.58 6.34 4.22 9.35 5.79 6.58 6.51 5.23 5.8 2.35 5.31 5.02 0 3.92 6.86 1.24 6.78 2.35 3.43 8.45 7.43 9.05 6.58 0.63 1.24 9.59 4.18 7.22 1.4 2.74 4.83 4.04 3.32 5.23 4.59 1.9 4 1.06 6.19 3.76 2.69 1.67 16.4 1.39 3.84 5 6.14 2.56 1.9 4.87 2.09 3.07 8.52 8.11 10.5 0.63 3.11 6.18 11.9 0.35 10.4 1.16 2.96 3.97 4.14 4.47 9.36 10.5 4.02 3.2 1.65 9.92 3.36 7.3 8.09 1.4 5.64 10.8 6.75 6.75 4.76 3.01 5.73 10.3 9.69 3.57 5.48 4.42 3.54 6.29 2.35 8.39 4.46 5.29 8.26 5.3 5.7 6.12 3.64 3.54 1.4 9.36 6.56 8.92 8.17 4.59 7.93 4.49 4.86 4.89 7.73 8.06 10.1 11.9 10.2 8.12 11.1 7.97 8.65 7.53 9.17 10.2 8.27 5.48 10.2 10.1 9.72 8.89 10.6 8.57 10.5 8.19 10.5 9.27 9.33 12 10.6 9.89 8.33 5.71 10.4 8.46 12.6 10 5.52 9.24 11.3 8.45 10.2 9.71 9.38 10.3 3.2 7.61 6.93 11.6 12.1 12.1 12.8 11.5 11.9 3.6 11.9 8.17 1.24 4.27 10.6 10.4 14.1 10.7 12.1 6.46 11.6 8.77 8.96 3.11 10.2 10.1 10.2 5.66 10.8 11.8 11.6 7.46 8.47 9.26 9.54 11.4 9.16 0.86 11.9 11.9 10.9 12.7 10.4 10.6 7.85 10.4 11.7 10.4 10.8 10.3 10.2 7.08 3.81 10.2 5.83 10.1 9.47 8.08 11.8 8.2 8.8 14.3 11.8 12.8 9.24 11.8 12.3 2.27 9.63 7.76 8.18 12.9 8.96 8.36 8.58 6.33 11.3 9.35 8.21 8.13 7.38 10.2 10.9 9.06 8.05 9.32 9.56 10.9 8.88 10.1 10.2 10.2 7.26 11.4 7.31 8.66 11.2 8.79 7.76 8.11 7.6 11.1 10.1 9.39 10.6 8.4 13.7 10.4 8.76 12.3 9.66 9.79 0.63 10.9 4.27 6.3 8.13 8.66 10.7 3.15 6.6 8.31 10.7 10.9 9.54 9.7 8.49 8.37 10.5 9.4 3.57 7.1 10.5 10.1 12.6 10.9 7.21 7.91 11.2 4.16 9.08 7.94 9.93 9.51 8.7 10.1 10.6 5.34 8.47 9.02 9.08 7.69 11.1 14 8.22 8.81 10.8 11 7.99 6.62 5.13 7.22 10.1 9.97 9.43 10.3 11.3 9.12 10 10 5.24 8.24 8.9 10.1 8.8 8.24 11.3 8.89 8.86 8.5 8.2 9.74 8.1 4.95 11.5 6.44 10.8 11.3 10.8 3.02 10.9 10.3 12.3 7.52 9.76 5.63 6.74 8.41 8.3 7.02 9.72 9.4 11.8 10.1 5.87 12.2 9.52 6.95 9.33 0 10 3.76 8.17 8.35 12 9.25 7.76 3.06 10.3 9.4 4.95 7.26 9.7 11.4 2.69 10.7 9.37 3.79 5.33 8.84 8.85 6.44 7.26 7.93 6.53 10.7 9.53 11 11.4 11.9 3.36 14.4 10.2 0 9.79 11.5 10.4 12.9 8.78 8.83 3.2 4.31 11.4 8.92 6.99 13.1 8.14 6.32 9.29 10 13.3 11.3 13.9 8.23 10.2 9.28 8.81 7.62 2.91 10.1 14 0 8.61 7.45 13.2 9.76 9.84 10.2 12.3 11.3 10.2 6.28 11.3 10.2 11.7 10.1 10.4 8.72 9.49 10.3 10 10.5 10.1 9.68 7.51 9.41 12.3 7.54 7.34 9.37 9.7 11 10.9 5.05 9.55 12.1 0.63 9.6 10.9 10 10.1 10.3 10.1 14.8 10.3 8.19 7.92 8.24 8.36 10.5 8.11 8.05 9.35 10.7 1.24 9.97 4.82 8.91 10.4 10.5 11.7 10.2 11.7 9.98 8.46 8.87 10.5 10.4 11 9.62 0.63 12.6 10.1 10.8 10.5 13.1 11.5 14 11 7.69 11 9.89 8.84 1.79 9.73 7.85 7.23 8.3 10.9 10.7 9.2 7.76 9.99 10 11.3 0.63 6.93 11.6 10.8 7.68 12.9 9.68 10.3 10.2 11.6 10.7 11.1 10.5 9.64 1.67 10.9 10.2 8.24 7.94 7.82 8.84 6.48 9.12 9.54 12 10.8 10.9 7.21 11 9.78 13.1 6.28 11.3 9.67 11.1 9.73 8.24 7.82 10.6 8.11 2.42 8.58 7.58 0.35 1.24 10.9 10.2 5.64 10.3 13.7 9.79 3.01 9.73 11.1 11.5 10.9 11.5 12.5 5.67 9.91 1.4 9.84 11.1 10 0 9.41 8.94 10 11.7 9.73 7.8 13 0.35 7.05 10.4 7.63 8.98 9.15 5.07 9.51 9.76 10.6 11.4 10.1 8.63 11.2 7.67 8.72 10.3 6.25 11.2 9.45 13.1 4.29 6.99 8.24 4.46 8.29 11.6 8.13 12.7 14.6 8.17 5.81 7.79 11.5 3.06 9.56 5.63 9.73 6.23 6.75 9.78 8.91 3.7 9.51 11.2 3.84 8.88 10.8 13.4 9.79 8.96 11.3 11.1 10 4.63 0.63 8.87 10.6 5.5 7.94 7.58 7.95 10.9 8.61 10.9 4.72 3.11 4.42 9.66 9.96 9.28 1.67 9.88 10.8 6.78 0.35 5.63 11.2 11.2 4.53 5.61 7.77 7.74 9.46 9.46 8.2 2.96 7.74 13.9 3.36 11.7 11.8 12.5 11.1 12.4 8.41 11 8.22 4.54 6.14 10.6 2.42 1.67 2.27 2.21 10.1 10.3 10.1 0.35 7.96 8.66 4.99 5.2 13.4 14.2 6.35 12 10.9 8.73 0 9.97 9.66 10 10.8 8.76 11.8 11.4 10.7 10.1 7.34 9.31 11.8 8.89 6.96 8.66 8.92 10.2 7.16 11.2 9.56 8.94 5.67 6.03 9.21 7.25 5.49 8.18 4.33 13.1 8.73 5.95 0.63 8.52 8.84 10.6 8.6 8.04 8.05 8.04 0 6.54 7.24 9.17 6.45 10 8.34 8.35 0.86 10.1 7.37 10.8 9.01 5.7 12.3 9.08 8.67 6.84 10.9 11.6 2.91 8.04 7 7.73 8.74 9.91 10.9 9.73 11.3 8.16 6.7 7.78 2.56 9.44 0.35 3.2 8.25 8.5 2.56 2.42 11.4 11.2 9.45 11.8 6.22 2.18 10.3 8.43 10.7 9.1 5.64 8.81 9.53 9.12 11.5 8.75 9.71 9.38 11.1 8.52 0.35 6.64 7.27 11.3 8.96 12.2 1.54 10.7 9.61 11.5 11.2 10.6 8.9 5.72 11.1 10.9 9.82 2.49 11.7 2.35 11.9 3.84 11.4 10.8 7.24 0 8.44 11 12 10.3 8.88 9.96 11.4 8.47 10.6 10 10.6 8.1 10.8 13.4 10.8 12.2 12 12.6 5.3 11.2 7.75 8.05 9.11 9.81 10.6 12.1 12.4 9.72 13.2 10.7 7.34 9.67 11.1 9.03 9.88 12 5.95 11.5 9.37 10.1 11.3 7.87 3.06 12.1 9.2 10.8 6.77 9.74 9.67 9 3.2 9.82 6.88 3.21 2.69 9.13 9.14 2 11.9 8.39 10.9 8.58 9.69 7.29 10.2 9.4 10.4 7.76 5.55 8.35 2.18 9.31 12.4 10.8 9.16 12.4 6.61 8.25 8.85 8.17 9.71 8.08 8.57 0.35 8.87 11.2 9.22 10.4 10.2 10.8 9.31 11.9 10.2 10.8 10.9 7.14 1.24 8.31 3.01 9.39 10.6 9.39 4.89 11.5 11.4 8.69 9.24 9.35 2.75 12.2 11.2 12.5 8.63 3.57 11.3 9.41 8.11 7.79 10.5 4.38 6.13 8.22 9.31 9.36 12.1 7.48 8.98 8.92 7.58 5.05 10.3 6.19 11.4 7.73 7.44 10.5 9.92 9.71 10.2 8.96 7.05 9.16 4.35 8.45 8.7 8.8 0 7.11 3.57 9.19 7.02 10.8 6.93 9.65 9.37 6.64 11.5 10.2 10 1.79 12.3 5.32 8.32 10.5 6.28 10.6 10.2 7.11 5.97 3.2 7.89 7.33 9.11 8.54 7.54 11.1 10 7.22 10.1 9.03 8.3 13.1 9.95 6.18 6.49 8.68 11 7.49 2.75 11.6 9.08 7.16 8.36 15.1 12.6 6.67 8.92 7.91 6.82 8.72 9.55 11.1 0 9.17 10.1 7.14 7.75 9.96 9.44 10.9 10.8 8.37 7.01 9.09 5.67 8.47 10.2 7.09 11.6 10 9.27 9.11 8.04 1.99 8.59 8.77 10.6 4.7 12.4 8.41 7.53 9.43 6.36 8.86 10.4 7.08 8.85 9.23 9.45 7 7.26 10.4 8.09 7.92 8.34 9.92 8.9 5.28 9.56 2.09 5.99 8.24 3.15 9.75 7.29 9.6 1.67 4.14 11 11 8.33 8.87 9.82 10.2 6.2 9.65 4.02 12 7.15 10.8 6.3 9.48 7.28 10.3 9.88 8.68 6.03 1.54 5.39 9.47 11.7 7.6 8.74 8.67 6.38 10.6 9.33 11.2 9.08 8.89 5.07 8.65 10.7 12.8 9.14 8.12 6.64 9.96 8.43 8.48 9.89 10.4 9.32 8.94 7.7 9.51 8.73 9.23 11.5 10.4 1.4 9.29 3.6 11.4 4.87 8.54 13.2 11.8 1.79 11.5 6.82 3.92 10.8 5.23 1.06 9.96 8.63 1.24 10.6 12 9.47 10.2 7.39 10.3 9.88 11.1 9.99 9.29 7.23 8.02 8.22 11.5 10.4 1.06 12 9.19 11.1 9.78 10.9 10.4 13.1 11.6 3.04 7.39 8.44 0 10.9 11.2 11.9 10.8 9.56 10.9 7.33 10.6 0.86 9.9 7.41 6.37 2.35 8.25 4.94 8.68 10.5 2.78 4.98 8.74 10.6 2.18 5.55 6.39 11.8 4.44 8.88 1.54 9.47 7.17 2 3.86 10.4 7.85 5.57 4.83 10.6 8.84 3.91 1.9 8.85 5.03 7.48 0 0.35 6.89 3.95 8 6.93 9.15 10.2 7.79 1.67 9.7 8.24 1.06 10.8 6.81 9.21 9.2 8.06 5.12 10.8 8.87 8.38 8.32 5.53 9.8 6.51 8.29 9.05 5.54 8.28 6.64 6.09 8.85 11.5 1.79 7.61 8.68 4.77 7.43 10.2 9.35 2.86 8.97 10.7 11.1 11.1 9.95 9.35 2.27 10.6 1.54 7.74 3.87 6.8 11.8 6.64 8.36 7.62 10.2 9.72 9.2 6.45 10.7 9.76 11.3 5.21 5.73 9.75 10.3 7.31 7.73 1.9 5.31 6.63 13.4 8.15 11.7 8.9 7.44 6.76 9.26 8.9 9.79 12.1 6.73 2 4.64 8.58 8.62 8.47 6.69 10.6 8.35 8.89 10.2 7.3 10.2 7.13 5.49 6.84 3.43 1.9 7.84 8.26 6.61 8.89 8.9 6.41 8.87 5.95 4.07 7.32 8.97 6.73 0.63 4 10.5 4.18 6.95 8.6 2.35 3.24 6.73 5.86 10.2 8.56 7.27 9.66 6.96 10.6 7.92 10.8 7.31 9.88 10.7 2.35 6.69 5.7 8.68 7.65 9.58 9.59 8.13 9.28 8.06 7.79 6.92 6.56 0.63 3.7 0 6.64 5.64 8.58 4.69 3.95 5.78 8.02 2 0.35 8.28 10.3 4.72 9.05 9.21 0.86 5.3 5.44 6.22 10 9.22 3.64 9.34 5.46 3.6 6.47 9.71 8.97 11.8 7.67 8.71 10.3 7.81 3.73 7.88 2.35 0.86 3.81 11.9 9.09 5.28 11 4.63 6.59 9.02 13.5 10.4 10 0.63 1.54 7.34 9.04 9.03 6.21 8.25 13.1 1.06 8.09 10.2 8.71 11.3 9.7 6.92 9.22 0.35 6.94 2.49 8.15 9.24 8.67 8.98 6.53 6.26 9.52 12.1 4.69 4 2 11.2 8.66 9.76 8.12 8.02 3.32 7.27 8.93 4.66 7.89 9.17 16.8 12.8 7.76 2.42 6.98 7.49 6.66 0.35 10.5 11.4 8.55 6.97 9.14 3.64 7.16 9.95 10.4 13 9.07 10.4 7.09 4.73 4.69 7.33 9.83 6.91 6.07 9.56 8.01 8.55 9.84 4.49 12.7 11.8 5.42 2.09 6.5 11.3 9.81 8.83 10.2 3.15 7.17 13.3 1.9 8.45 9.79 3.79 5.4 10.1 9.62 5.73 7.4 10.7 0 1.24 1.4 7.99 1.79 6.94 7.31 7.04 6.5 8.8 8.75 8.17 6.07 9.6 5.94 5.35 7.34 8.76 8.68 2.96 8.24 8.15 6.37 10.9 8.38 8.42 9.26 3.01 9.34 9.12 8.28 1.9 8.14 6.05 7.99 7.84 5.77 7.32 8.67 6.74 3.4 8.14 9.44 5.29 1.06 9.07 6.06 5.23 9.28 9.37 5.28 7.78 1.57 9.84 1.06 9.1 9.14 8.3 2.35 6.39 7.11 9.74 2.56 0.35 7.77 10.3 5.5 6.11 10.1 9.29 8.29 11.6 10 6.2 9.5 8.99 9 11.1 10.3 5.73 1.54 9.95 9.53 8.28 7.71 2.18 7.8 9.59 9.33 4.49 5.81 2 5.94 0.35 7.42 10.9 10.1 10.2 7.95 5.21 10.4 5.03 10.8 10.8 8.75 9.68 10.2 5.84 7.1 12.4 8.33 10.5 6.78 8.31 0.63 8.22 7.79 2 7.58 3.11 6.63 10.5 3.11 10.3 9.46 2.86 8.06 5.93 7.49 4.36 7.79 6.51 7.79 7.63 3.11 9.38 3.6 2.75 8.9 4.51 2.35 3.79 6.49 6.16 5.77 9.9 9.41 9.49 1.9 10.2 11.1 5.58 11 9.61 8.23 7.83 6.48 8.57 7.26 3.28 7.72 8.13 11.1 8.12 2.75 11.9 6.32 3.06 4.33 7.55 8.41 12.5 6.67 7.9 8.94 6.09 4.87 7.61 1.24 5.86 2.09 9.2 0.35 10.5 0.86 5.41 7.09 9.15 6.13 9.01 1.54 3.54 10.8 10.3 6.34 7.58 7.06 3.78 3.43 9.71 2.8 5.29 0.63 8.77 10.8 8.66 7.21 8.37 11.6 10.5 5.34 2.86 2.35 7.98 7.43 11.4 0.35 7.4 9.43 10.4 5.51 5.95 11.7 0.35 8.46 2.09 4.79 10.7 7.97 9.03 0.63 9.78 8.23 8.53 8.42 13.4 9.83 7.75 7.28 3.76 9.25 4.07 10.3 6.48 10.1 8.29 4.29 3.79 7.81 5.54 12.2 9.69 8.21 8.63 9.93 7.35 5.62 6.87 11.7 8.66 11.6 9.77 7.05 9.06 9.33 4.16 7.51 7.16 7.35 9.99 7.58 9.14 7.07 6.54 7.14 9.01 8.6 7.23 7.84 7.63 4.2 6.67 8.03 7.05 4.72 6.7 0.35 6.06 11.7 0.35 4.44 5.78 2.96 11.5 9.09 9.91 5.24 8.33 5.63 5.19 9.26 8.19 1.9 8.9 2.35 1.4 10.7 9.37 5.51 9.4 7.28 3.95 6.2 10.1 1.9 8.84 6.87 9.06 7.55 8.26 6.14 4.69 3.11 7.05 7.79 6.15 1.54 8.88 3.43 11.1 12.3 8.93 5.49 8.55 11 2.09 7.36 11.2 6.59 13.6 10.2 8.86 3.43 9.68 9.16 2 10.5 1.24 0.86 7.79 7.8 7.58 4.49 9.3 9.79 0.63 2.26 7.5 12.1 6.38 7.08 0.63 6.77 3.34 7.6 7.87 9.92 13.4 5.85 8.16 9.87 8.72 11.2 0 7.28 3.2 7.21 7.09 5.46 5.55 5.95 0.35 8.67 4.89 5.14 10 8.79 12.4 9.29 2.91 3.06 8.51 9.43 11.8 3.43 7.37 11 9.78 7.69 7.82 9.58 7.55 7.45 5.64 9.14 2 7.76 10.6 8.31 5.85 5.54 10.1 5.35 6.59 11 5.29 10.7 7.25 7.04 12.2 11.8 10.1 9.32 2.89 6.39 9.21 8.57 0.35 8.81 6.34 10.1 0.63 10.8 6.14 5.5 10.1 11.2 2.75 7.13 0.86 11.3 5.42 3.97 9.39 1.79 3.76 14.5 13.2 12.9 8.82 11.8 5.11 7.49 8.29 8.47 4.79 3.15 6.97 10.7 9.02 8.32 10.1 6.76 8.09 7.99 6.32 8.53 9.42 1.06 0.86 11.1 6.23 4.25 11.8 5.73 0.63 6.04 7.97 6.07 3.15 6.57 0 5.31 11.2 7.96 1.4 3.87 9.68 8.36 7.28 4.56 11.3 8.74 1.54 10.5 11.2 8.36 8.04 8.83 7.35 4 7.64 5.04 7.71 7.67 11.4 12.1 7.56 2.18 1.9 9.77 10.9 6.17 10.3 11.1 8.8 9.03 5.12 9.51 8.46 9.64 5.95 9.73 10.6 1.06 5.7 7.17 11.1 5.79 6.06 7.71 10.2 7.3 3.15 8.84 9.01 4.73 1.4 10.3 3.18 2.42 4.91 8.55 8.37 7.95 5.37 6.26 8.48 7.38 8.53 11.2 9.32 8.66 6.51 1.54 10.3 10.6 1.79 10.1 10.2 5.85 6.64 7.5 4.51 8.74 6.05 12.6 4.83 9.97 1.79 10.3 5.07 8.31 16.4 4.27 2.09 11 9.32 7.34 3.11 3.47 3.73 2.43 3.57 8.94 5.74 11.2 1.79 8.72 11.6 7.73 12.3 8.14 10.2 10.7 7.25 4.16 9.76 10.2 7.16 10 8.03 10.8 4.25 5.72 7.36 6.73 5.68 7.56 7.79 6.92 8.09 8.9 8.13 6.91 1.67 3.6 8.48 8.47 10.8 9.59 9.05 7.42 10.3 6.57 4.99 7.27 8.57 4.8 3.81 11.8 8.2 9.09 9.37 7.66 3.32 3.76 2.27 4.02 10.6 8.78 0.35 5.53 6.93 5.13 10.1 4.8 10.1 8.02 10.7 8.05 8.11 11.4 2.69 5.59 5.6 12.5 2.86 8.09 10.9 7.31 0.86 8.97 7.14 10.2 1.54 6.32 7.46 9.84 8.81 10.6 7.36 6.28 3.99 5 2.42 6.4 5.32 5.22 9.01 1.67 0.86 11.4 8.33 7.05 8 1.54 7.91 9.94 12.6 6.5 2 11 2.35 7.5 0 10.7 2.18 6.51 7.32 5.46 6.87 5.98 11.4 8.07 8.54 6.18 1.54 5.54 7.42 2.69 11 8.9 6.87 1.4 8.06 0 6.08 5.75 0 0 10.6 7.67 3.4 7.85 1.54 9.6 2.91 7.7 3.92 2.35 9.75 4.26 9.31 5.83 9.08 9.71 6.35 13.8 0.35 9.41 7.25 8.65 10.7 8.76 9.09 4.59 5.9 6.09 2.27 7.34 5.77 5.61 6.2 12.2 6.26 4.63 8.31 2.42 6.05 1.4 5.38 7.25 7.67 2.8 9.4 6.8 9.63 1.4 11.3 7.75 6.62 7.98 7.75 6.25 2.27 0.86 8.61 5.54 9.39 6.54 5.38 8.18 4.79 5.97 8.01 8.25 7.46 10.3 3.84 6.94 3.67 6.71 8.32 5.33 3.87 7.26 5.44 5.69 9.2 6.51 6.33 5.8 6.71 6.03 3.64 6.06 8.07 5.07 8.26 6.88 8.83 5.73 7.54 8.61 6.15 8.59 8.54 3.73 2.42 11.8 3.7 0 2.42 8.14 11.1 8.03 3.47 9.83 5.34 8.87 8.98 6.87 12.2 9.38 0.38 9.77 6.09 6.32 4.87 8.65 2.18 3.54 5.31 7.65 8.55 7.4 2 4.51 9.28 8.32 5.68 2.56 13.6 11.4 6.23 9.38 7.68 6.8 13 10.4 10.2 1.24 7.19 12.2 0 6.61 11 0 0.35 1.79 1.9 4.79 1.67 8.61 7.56 2.69 7.21 8.48 7.67 6.71 9.05 2.38 5.78 5.23 7.46 9.6 5.87 8.18 2.27 9.2 1.54 8.92 3.81 6.64 3.28 9.08 7.36 2.96 4.22 6.79 7.19 4 4.64 7.64 5.03 15.2 8.41 16.9 6.61 3.79 6.2 6.31 9.69 10.3 5.9 3.79 10.2 3.5 8 7.82 9.1 12.9 5.05 1.24 5.25 2.56 3.57 6.97 11.9 3.11 5.67 7.32 5.98 12.7 2.86 5.47 2.8 5.34 5.86 5.76 7.33 6.9 9.45 7.57 9.25 10.6 2.49 5.38 6.43 0.63 6.34 2.42 7.96 4.4 10.4 9.97 8.81 8.14 6.2 12.6 8.58 10 8.98 0.35 2.91 7.55 7.59 3.92 11.4 8.52 6.17 8.02 14.1 6.14 8.75 9.11 12.2 7.57 9.31 8.15 6.93 7.88 8.53 10.5 7.56 3.43 7.42 7.55 8.02 4.61 6.28 3.57 4.36 11.2 8.17 2.49 4.4 7.65 7.44 1.79 9.61 11.3 7.44 8.82 8.63 10.7 6.6 7.72 11.5 7.35 4.58 12.4 10.6 8.93 5.73 9.97 7.74 7.21 3.01 6.23 11.6 7.14 5.68 5.72 7.67 0.35 10.8 8.02 10.4 7.99 11.1 5.86 5.66 7.63 0.35 6.33 0.63 4.93 7.33 9.86 7.35 7.16 8.2 4.23 0.35 8.92 10.9 0.63 9.29 10.3 2.06 6.31 8.74 5.39 7.88 5.64 7.28 8.75 11.6 3.57 1.06 9.61 8.29 8.86 6.96 10.6 1.54 2.75 11.2 3.79 3.01 8.81 3.43 0 9.21 5.23 2.18 8.44 9.73 8.01 2.27 5.4 2.42 11.9 5.95 9.13 8.27 8.8 10.8 0 10.2 3.73 4.56 2.93 7.98 10.4 6.82 9.58 0.63 7.48 3.24 7.69 6.79 6.11 6.78 4.05 6.48 5.6 5.67 6.89 3.6 9.69 6.85 9.34 4.2 4.27 4 0.35 6.2 8.08 5.6 12.5 5.13 7.34 7.96 6.23 7.31 6.6 1.24 0 4.22 1.24 6.27 5.43 6.6 4.51 9.37 8.17 8.77 5.14 9.38 0.35 0.35 12.1 6.06 6.13 9.07 2.27 0 11.8 10.8 0.86 12.4 3.57 5.55 0.86 1.54 11 8.99 3.9 2.42 9.16 9.36 0.35 4.63 12.6 8.8 9.2 6.92 9.22 6.63 6.74 5.86 7.41 8.88 11.1 11.7 4.75 7.98 3.7 7.14 11.3 4 3.5 7.64 9.63 5.73 8.38 5.55 2.49 10.6 0.63 6.94 10.1 0.35 3.67 9.22 4.29 4.98 7.1 3.7 7.06 12.1 10.9 4.18 11 7.9 3.06 9.73 5.36 11.3 3.15 3.87 1.79 1.4 2.63 0.63 5.61 5.12 6.26 11.6 8.64 9.6 6.74 7.08 6.87 10.6 6.76 6.83 3.87 9.65 6.05 0.35 13.5 7.97 7.57 7.45 6.66 5.91 5.9 6.18 5.93 4.46 7.67 8.24 5.66 4.72 7.93 11.8 3.73 6.97 5.85 4.4 8.43 1.24 10.9 5.98 10.5 8.41 9.51 0.63 6.99 9.76 0.35 5.59 5.79 8.61 8.71 12.2 11.7 3.28 10 1.67 12.5 2 10.6 11.5 3.32 8.9 11.8 1.24 9.05 2.91 5.15 3.84 1.79 10 6.09 9.84 10.9 12.4 3.84 3.79 7.45 2.63 9.45 4.53 10.7 7.55 12.1 13.4 4.05 0.63 11.2 5.2 2.63 9.87 1.9 10.2 2.35 7.15 13.2 11.5 6.8 9.05 9.85 9.36 1.06 7.55 8.41 10.9 10.6 8.05 11.1 8.55 6.13 7.02 8.36 9.41 8.37 4.05 9.52 12.7 9.62 3.7 5.88 7.16 4.59 11.1 3.6 8.99 2.75 7.14 6.65 6.29 4.73 6.71 3.43 8.53 8.48 0.86 1.67 8.04 5.64 1.24 2.42 9.63 8.35 2.56 9.68 5.7 2.09 1.4 7.33 8.88 10 6.18 6.09 6.86 4.98 2.49 0 4.95 8.21 2.75 1.06 7.88 9.19 5.6 9.46 6.94 1.9 10.3 4.05 7.38 9.39 4.36 2.8 10.5 7.19 6.27 8.38 6.16 10.3 4.93 10.4 8.79 0 6.27 6.19 6.19 10.6 8.54 9.15 3.06 9.63 7.86 9.13 9.35 11.2 7.39 8.16 8.14 9.77 13.2 8.83 12.3 6.66 7.83 7.93 6.67 9.62 10.2 11.7 10.9 5.12 10.2 7.17 11.9 0.35 0 3.06 3.32 8.57 9.25 8.27 10.8 3.87 9.45 9.34 5.31 5.64 1.06 6.13 3.76 6.82 10.3 2.86 7.37 10.4 13.6 9.75 2.75 10.7 11.9 12.2 9.62 7.21 9.18 6.51 10.8 9.51 4.96 8.54 8.35 9.63 10.8 10.5 9.91 8.98 12.4 8.6 11.5 7.29 1.67 9.21 2.91 1.9 9.96 11.8 5.55 0.35 12.4 9.55 11.4 12 11.9 11.7 12.8 7.99 9.13 9.12 8.9 7.5 8.87 6.99 13 8.94 12.1 6.02 10.3 10.2 7.84 6.27 9.71 0.63 9.31 10.1 10 11.4 10.4 9.46 6.52 4.98 3.32 8.23 10.4 6.92 7.84 9.07 6.19 9.87 11.4 3.36 10.8 12.6 12.1 8.47 8.06 7.94 10.5 8.18 7.73 7.1 8.56 6.18 11.9 11.5 9.52 11.4 15.8 3.5 8.99 9.63 10.5 6.56 8 9.71 11.2 12.5 13.7 15.2 10.3 10.4 5.9 7.56 7.56 10.4 11.1 6.98 4.91 6.98 11.2 9.89 11.5 9.61 9.25 14.8 7.13 6.07 9.7 11.7 8.76 11.8 2.49 8.43 1.67 11.3 5.37 5.57 9.39 4.66 6.68 9.63 10.4 10.6 9.51 10.6 9.4 9.69 4.2 8.92 10.9 9.23 1.61 10.2 8.03 7.82 3.26 11.2 5.66 5.76 11.5 4.9 2.69 6.23 0.37 8.83 4.36 6.2 11.2 10.7 8.66 13.1 5.99 9.97 9.53 4.64 8.11 10.9 12.8 8.68 12.9 8.33 8.24 12.1 13.2 13.7 11.3 12.9 0 9.39 0 10 7.64 7.35 10.7 0.35 0.86 1.4 8.32 0.35 10.4 7.21 3.47 3.24 10.4 7.53 6.65 7.25 2.75 8.79 4.07 7.09 7.53 14.1 8.81 0 9.13 14.4 11.1 9.09 0 6.84 10.4 8.78 5.28 8.15 10.9 2.63 2.63 6 4.36 10.6 10 7.69 9.23 8.4 1.29 8.33 5.34 7.83 4.42 8.12 0.86 1.79 1.4 8.93 7 4.86 5.53 9.21 6.8 6.69 6.69 8.88 7.06 4.07 6.58 7.32 6.77 8.75 8.38 8.6 7.96 4.33 7.92 9.9 6.73 10.1 10.4 7.7 8.06 5.78 10 6.78 11.2 4.29 10.7 9.35 7.51 8.75 8.92 9.53 7.03 9.33 8.54 1.67 8.43 8.39 10.2 5.79 9.45 4.98 6.61 6.9 6.78 10.3 8.53 0 9.2 9.53 6 0.63 12.7 7.17 1.24 4.47 5.5 11.1 8.42 9.59 8.91 6.4 10.4 8.97 6.02 5.37 7.49 8.48 4.27 11.6 8.15 2.75 15.7 6.39 6.53 2.18 0.86 2.18 10.6 6.77 7.9 10.2 11.3 7.69 10.3 10 6.98 7.76 13.7 9.34 7.31 1.24 7.37 8.57 8 5.01 7.77 8.72 8.9 9.36 11.1 6.96 11.7 8.32 10.1 6.58 7.25 10.2 13.1 11.4 6.89 10.8 10.8 12.9 9.38 6.27 1.9 8.54 4.14 7.08 4.85 10.7 4.22 1.4 8.72 11 8.13 11.2 8.14 10.3 7.65 8.88 8.14 10.3 9.45 3.24 6.77 9.62 10.6 11.8 10.2 9.54 1.24 8.41 12.8 3.11 0.63 12 9.52 8.97 6.36 11.8 3.64 8.91 9.72 7.98 10.2 8.07 9.98 6.65 10.2 11.7 7.73 10.4 10.7 7.1 11.3 10.4 4.49 11.1 1.9 10.7 10.5 11.1 11.5 8.81 10.8 11.2 7.15 2.63 6.92 3.6 8.43 5.64 10.3 13.2 8.05 8.28 9.59 11.1 1.67 11.8 9.75 10.1 2.91 8.15 10.5 4.02 8.66 10.1 7 10.5 6.21 0.35 9.56 8.79 11.3 2.96 5.84 7.79 2.18 8.62 5.91 14.1 6.27 8.61 9.66 3.2 0 13.7 11.5 6.14 7.24 9.21 7.05 5.85 7.36 11 9.64 10.2 9.98 9.97 11.1 1.4 8.75 7.52 9.99 9.59 9.27 7.04 10.2 7.76 4.83 2.96 10.7 9.31 13.4 1.06 4.63 7.92 3.28 5.88 8.5 2.18 9.12 12.5 2.35 7.59 8.91 7.73 10.8 5.14 6.52 5.58 7.88 10.3 8.38 7.53 7.41 8.86 8.42 0.35 10.5 10.2 8.08 10.7 9.34 7.71 11 3.54 3.73 7.35 8.29 5.55 2.27 5.68 2.49 6.19 5.32 8.11 0.63 9.01 10.1 12 3.95 4.2 0.86 2.42 5.8 7.39 6.9 8.48 10.4 7.72 4.31 0.63 6.09 7.96 8.56 11.5 5.72 8.05 6.27 11.5 4.75 11.5 5.49 7.03 7.54 10.3 2.56 11 7.32 7.3 3.97 10.9 7.73 6.17 2.18 9.57 9.17 9.23 5.72 10.6 7.32 9 10.7 6.68 5.71 3.57 9.38 9.02 4.7 0.86 0.86 5.7 5.83 8.55 5.71 4.74 8.32 1.67 11.6 1.54 8.84 9.91 2.69 8.03 7.14 9.1 3.19 8.95 7.11 5.66 12.4 7.7 2.75 10.2 8.64 7.39 8.55 3.57 8.74 3.15 7.96 4.83 7.88 4.12 10.2 9.86 10.9 9.76 9.14 7.75 2.56 10.7 9.3 10.3 7.2 5.16 8.41 10.1 7.22 8.82 6.81 2.96 9.67 7.93 4.83 9.88 10 8.83 3.06 2.86 2.86 2.86 0.86 10.1 9.58 0.86 2.42 4.94 2.42 3.81 9.51 6.62 4.91 6.76 11 9.29 8.99 4.42 10.5 9.62 8.18 12 11.6 5.63 8.64 6.86 8.6 4.07 0 4.85 5.6 6.81 7.22 7.83 5.71 15.5 9.79 8.9 0.86 8.89 10.8 10.3 9.67 7.2 15.1 10 7.37 11 6.84 9.46 9.58 12 9.11 6.32 0.35 11 5.96 7.35 11.3 9.36 6.79 12.1 4.29 12.4 9.17 9.97 8.38 8.22 10.9 11.1 9.94 4.22 7.84 10.5 6.92 8.43 11.1 10.7 11.3 9.84 7.11 3.2 8.74 10.2 8.52 10.5 7.62 8.8 7.24 9.63 5.31 9.81 8.54 9.74 10.5 8.6 10.7 9.28 10.8 2.35 9.51 7.43 9.49 11.1 7.85 11.9 8.84 11.3 9.31 8.16 10.5 9.8 10.2 11.2 9.12 8.02 10.3 13.1 9.13 8.53 9.91 8.46 8.94 10.4 9.44 4.53 9.82 9.29 4.53 9.01 10.1 6.95 8.48 9.1 7.81 9.46 9.6 10.3 10.4 10.8 11.4 10.2 8.94 8.68 12.2 7.22 2.09 10.8 0 9.22 11.9 9.33 9.95 8.32 6.38 10 10 11.4 10.2 10.5 10.4 8.06 10.1 7.88 8.72 11.5 9.9 8.77 7.08 11.5 10.9 9.35 0 8.47 10.5 10.7 3.81 4.63 5.08 8.19 10.1 10.2 4.9 5.64 11.4 10 10.6 3.67 9.94 11.6 0.35 2.91 0 10 11.1 10.2 8.32 6.2 10.1 3.73 9.51 10.8 7.35 11 7.89 8.75 9.33 9.59 0.63 10.8 8.81 11.1 10.5 8.6 9.13 12 9.09 12.5 11.6 9.34 9.66 4 2.75 10.2 8.53 9.99 9 10.2 9.07 9.41 8.8 9.19 6.31 11.3 10.4 9.64 11.7 9.67 8.44 8.85 10.2 11.3 5.36 10.9 11.1 10.9 10.9 3.81 9.89 4.53 10 11.7 11.8 10.1 10.7 9.49 6.37 10.2 9.9 10.2 6.75 8.44 10.6 9.01 10.8 9.36 8.97 7.88 8.81 9.19 11 7.52 9.71 9.02 10.5 6.43 10.7 9.74 9.04 10.3 11.1 9.05 8.83 10.2 8.5 12.5 9.45 3.47 9.84 2.18 10.3 10.4 1.54 10 10.5 9.81 8.44 8.7 9.93 10.4 7.13 4.17 0.63 9.88 11.1 10.6 4.07 10.8 8.88 9.94 10.2 7.97 9.57 11 10.3 9.28 8.27 9.12 12.8 10.7 10.5 9.17 10.3 9.26 3.43 7.77 6.22 1.79 11.1 10.3 11.1 9.62 9.18 9.42 9.85 13.7 8.83 9.43 10.8 10.1 10.7 9.52 9.1 10.8 10.3 9.8 13.1 10.1 10.9 8.81 9.11 11 8.68 10.4 8.87 7.75 10 10.6 8.98 9.38 10.4 10.6 8.96 10.6 10.7 13.2 11.1 11.6 10.1 13.1 8.35 9.96 12.1 10.3 9.86 10.7 10.3 7.44 10.4 12.5 3.11 11.1 8.46 0.63 8.63 9.45 9.98 8.25 8.94 11 12 10.7 0.86 10.5 9.49 7.4 9.52 9.4 9.46 13.4 10 9.11 9.16 7.49 9.09 12.1 8.65 6.75 8.61 9.95 8.22 4.91 8.7 6.47 7.98 10.9 11.1 10.4 11 8.32 6.98 10.2 10.8 12.4 2.42 8.09 9.62 11.1 8.43 8.99 10.3 10.2 9.25 9.08 9.15 10.2 11.8 12.4 10.3 8.43 9.54 6.83 9.7 9.8 10.8 10.5 9.59 9.03 12.1 9.94 8.33 4.59 9.62 5.55 6.79 12.3 7.88 10.4 8.26 9.71 10.9 9.8 12.3 10 7.74 10 9.14 9.75 11.5 8.98 3.67 8.7 10.3 8.83 10.1 7.09 8.29 9.52 11.4 11 9.74 1.79 10.8 9.13 9.82 10.9 8.16 10.5 10.6 13.2 10.9 10.5 10.3 10.6 9.11 10.1 8.71 7.24 11 10.8 5.78 9.61 12.7 11.1 9.06 9.65 2.35 11.4 10.7 10.4 12.1 11.5 8.47 9.68 8.99 10.2 10.7 9.67 10.6 8.69 11.1 12.1 7.96 12.1 9.89 11.2 10.5 10.8 8.93 9.23 8.09 9.53 9.25 11.6 9.4 10.4 10.1 11.6 11.3 9.58 11.2 9.3 9.05 10.6 11 10.1 10.7 3.36 7.83 11.3 10.5 7.47 8.37 8.22 10 11.4 9.7 5.37 10.2 8.72 9.15 10.3 4.38 2.42 5.63 9.12 0.63 9.66 12.2 6.76 10.7 8.81 6.95 8.57 10.5 6.89 8.04 5.93 11 11.5 9.91 7.22 9.47 11.8 12.2 7.32 8.03 7.25 3.01 6.56 8.32 4.94 11.5 7.34 10.5 8.9 12.6 10.7 12.3 9.49 9.3 8.97 10.7 10.7 11.8 10.1 9.32 10.4 7.66 10.1 4.56 10.5 8.02 2.09 9.5 12.4 9.89 7.93 10.5 0 10.1 9.46 8.66 9.12 11.1 11 9.97 9.44 11 8.81 8.93 9.52 9.58 8.36 2.75 0.63 13.4 9.52 10.9 13.5 10.8 9.57 7.27 10.5 14.4 11.7 8.11 5.92 9.23 9.91 8.71 2.96 12.9 8.14 4.44 10.5 2.09 9.09 0.63 7.42 8.39 10.6 12.3 9.86 3.28 8.32 10.2 9.48 8.29 9.27 12.5 10.7 9.9 9.37 4.54 2.81 11.5 0.35 7.76 11.2 1.4 5.69 11.2 1.79 10.9 9.51 9.26 8.67 11.7 8.55 9.7 10.4 11.7 8.92 6.22 9.29 9.09 4.22 8.66 9.17 8.92 10.3 13.7 4.36 12.2 5.21 10.7 11.4 9.73 10.9 10.1 0 8.31 9.38 9.22 10.2 0.63 0.35 2 3.54 10.9 7.33 10.4 10.1 7.43 10.3 10 7.77 6.48 10.7 11.8 13.9 9.97 8.39 7.38 8.83 14 2.8 8.83 11.1 8.8 9.6 10 8.79 8.68 7.25 9.48 6.58 8.89 7.07 12 9.62 11.4 11.6 10.7 8.45 10.6 9.67 10.3 7.96 9.67 8.83 2.09 12.4 5.67 1.4 12.6 9.88 8.62 10.6 10.5 12.3 10.9 4.2 2.1 7.64 11 8.34 2.42 9.09 9.2 8.96 1.24 7.97 9.49 8.15 7.31 6.55 11.9 9.11 2.49 7.11 4 2.79 7.71 8.66 5.25 0.86 10.1 0.86 6.6 1.24 6.01 7.25 6.22 7.1 7.92 8.53 2.8 0 10 10.5 8.51 8.15 8.06 2 4.59 15.6 9.18 11 0 17.1 11.8 10.7 12 5.8 4.02 7.6 8.98 0 10.5 11.1 5.84 2.55 8.62 7.55 5.31 9.84 0 4.18 8.54 10.7 9.58 0.63 4.42 6.9 9.16 9.67 9.21 4.76 10.9 7.26 10.4 8.57 5.16 6.38 9.69 6.51 3.9 10.8 2.27 7.23 8.47 8.08 5.77 0 10.4 10 8.12 8.91 7.95 6.92 5.81 9.36 6.34 7.02 10.6 1.06 0 7.71 2 1.4 11.4 8.68 4.35 6.1 3.2 0 9.01 8.68 5.12 8.76 9.71 9.11 7.12 5.54 12.1 0 5.67 12.9 7.31 9.55 9.41 9.21 7.82 8.66 6.96 7.05 3.28 0.35 6.45 8.66 9.1 0.86 5.42 2.96 8.18 0 7.78 5.46 7.71 6 5.63 9.96 0.35 7.5 1.24 0.63 9.81 6.83 7.46 4.75 8.28 6.13 8.42 9.65 7.45 1.9 1.79 1.4 9.3 9.02 1.4 10 5.69 6.13 4.91 9.87 9.31 6.32 4.4 4.12 7.92 4.18 7.33 7.43 0.35 5.77 6.18 1.54 0.35 0.63 8.37 0.63 5.22 4.85 1.79 1.67 7.04 3.54 7.37 2.69 5.24 10.1 5.46 8.3 4.18 5.93 5.59 0.35 8.06 6.26 3.24 1.4 1.54 9.75 9.65 3.57 6.1 4.96 9.93 9.38 9.4 9.16 1.67 9.48 11.9 9.37 8.31 9.64 5.6 5.28 4.8 2.75 7.74 10.8 11.1 3.5 10.3 8.33 11.3 7.26 11.3 10.1 8.74 8.54 7.16 2 10.7 11.7 7.86 8.2 9.36 1.06 9.7 10.5 10 3.43 5.39 10.8 10.1 8.54 8.56 2.42 12.5 11 8.78 11 10.8 3.01 6.19 11 8.12 1.54 10.3 5.55 10.8 8.42 12.4 9.03 7.92 8.76 11.4 8.92 10.8 9.45 8.96 6.25 8.78 9.66 10.1 9.9 9.84 1.24 8.39 3.79 9.45 10 12.2 9.56 12.8 10.3 9.66 7.52 10.5 8.69 9.98 8.26 9.74 5.24 7.31 10.4 11.8 3.81 5.68 8.26 7.46 10.1 8.21 4.25 10.4 9.2 9.5 9.02 6.28 8.94 8.89 5.15 9.5 7.87 9.38 11.6 8.78 7.57 11.4 9.93 9.77 4.82 8.83 10.7 11.4 0 7.21 7.87 9.06 4.47 6.24 5.01 9.85 2.35 6.79 12.7 10.4 1.4 8.63 2.35 1.79 4.47 9.91 11.2 7.77 14 9.43 9.13 10 8.84 9.59 10 10.3 10.3 10.6 8.61 10.9 9.78 9.95 8.52 7.45 10.8 7.48 10.5 10.9 8.36 5.09 9.45 10.2 9.32 16.1 11.3 9.05 8.46 6.86 9.17 9.69 9.99 9.92 10.5 8.95 8.59 6.43 9.55 8.6 9.68 7.57 11.6 8.91 10.3 6.98 12.9 10.8 11.7 9.36 10.7 9.06 10.6 9.37 12.6 6.38 11.1 7.14 9.46 10.5 9.97 9.22 12.3 11.6 9.35 4.8 8.89 4.66 8.71 11.2 9.07 4.05 6.02 7.03 8.59 8.36 11.1 3.81 8.44 9.47 7.95 8.06 0.63 8.6 1.9 8.27 5.67 6.04 9.22 5.04 8.61 9.75 10.9 10.8 11 10.5 9.03 11.2 9.65 11.3 10.7 12.2 4.63 4.14 7.54 10.9 11.1 8.99 10.2 8.6 7.82 5.29 10.6 7.48 11.4 11.4 2.8 9.17 9.32 10.7 8.87 10.3 9.02 10.2 8.97 9.28 9.69 11.1 12.3 11.8 6.46 10.1 9.33 9.37 8.23 5.1 10.1 0.86 8.98 9.16 5.25 7.75 10.7 10.9 7.87 9.4 9.48 9.07 10.2 10.4 9.16 8.08 11.7 8.51 8.6 9.33 5.33 10.5 6.62 9.92 5.08 9.14 5.53 8.41 10.9 0 10.5 7.84 9.62 9.29 8.23 4 9.96 3.73 5.92 7.2 9.2 7.83 11.5 8.3 8.4 8.17 5.32 6.75 0.63 7.95 0 4.99 9.74 9.19 8.88 4.01 10 9.05 2 7.52 9.31 8.5 6.68 7.78 5.56 6.27 9.69 9.84 8.71 10 9.43 11 13.9 10.8 10.1 1.67 10.8 2.18 9.16 7.93 9.43 7.57 11 9.57 8.76 1.19 10.2 10.4 9.64 10.2 9.34 0.63 7.54 8.7 4.07 10.8 10.8 12.2 11.7 10.2 10.1 3.24 7.65 6.4 10 9.83 9.77 10.2 7.54 7.87 11.7 9.24 7.28 8.72 10 10 8.81 8.08 9.05 9.98 9.76 10.2 5.98 1.06 0.39 10.2 2.18 1.31 6 9.48 1.4 11.3 1.67 7.54 8.65 2.27 9.6 4.02 7.67 0.35 11.6 11.6 9.79 3.01 4.49 4.89 6.37 9.14 6.49 11.6 2.63 6.34 6.35 0.63 9.36 6.6 10.8 8.84 7.18 4.51 8.2 8.68 1.54 10.1 9.3 12.4 8.34 1.9 8.31 0 11.9 8.77 10.4 3.76 9.96 2.35 6.77 9.02 8.4 10.6 3.54 8.3 11.2 8.23 5.95 8.31 9.79 13.2 9.65 10.8 9.77 9.91 11.7 9.44 2 1.4 8.57 1.54 9.08 6.82 10.9 11.9 10.9 6.26 10.9 8.61 8.41 11.5 3.54 9.44 1.06 7.52 9 9.33 8.73 11.1 11.9 7.25 3.92 6.23 9.75 9.82 12.4 4.06 6.42 10.4 6.32 8.32 5.2 8.68 7.57 5.07 9.78 4.22 10.6 1.4 7.89 1.06 5.67 9.88 8.49 3.73 1.06 9.18 8.71 9.83 11.7 9.94 8.9 6.76 6.18 7.89 9.42 8.03 9.17 1.9 6.52 11.2 0 9.35 4.44 5.74 7.68 11.3 8.34 9.15 9.45 8.59 5.45 0 6.34 9.85 5.73 6.43 8.99 9.9 7.52 9.53 0.35 6.8 9.11 8.17 10.8 9.02 12 8.53 6.59 9.78 12.2 7.55 0.86 8.09 0.35 2.96 2.18 8.38 12.2 4.63 7.76 10.6 2.09 10.4 7.02 9.59 9.94 9.13 5.25 6.49 8.29 12.1 11.3 9.37 10.1 8.13 8.98 10.2 10.1 10.4 8.36 4.02 8.18 8.93 9.56 0 5.65 4.89 4.93 7.16 9.54 7.88 7.56 8.9 6.88 9.62 4.07 2.56 7.17 8.79 9.34 5.71 8.18 7.45 9.08 11 4.93 8.2 11.2 3.57 10.6 9.51 10.7 10.2 6.03 11.7 11.1 6.92 11 12.7 9.64 9.44 9.87 9.37 10.1 8.51 7.61 8.92 8.97 8.93 4.99 9.36 8.25 10 4.42 7.5 7.6 10.4 12.6 9.55 9.03 11.1 7.85 9.11 10.4 4.46 12.2 9.32 4.29 9.39 10 12.9 9.72 9.69 12.8 2.35 12 8.69 10.4 8.36 8.97 10.1 7.12 10.6 13 10.6 7.9 5.82 10.9 14.8 0 7.06 13 12.4 2.65 2.27 2.8 10.7 9.02 1.4 8.18 10.3 5.79 10.2 4.09 2.75 13.7 5.14 7.89 9.3 11 11.5 11.1 12.5 11.8 12.5 9.81 0.63 9.92 5.38 1.67 11.2 10.6 9.45 13.3 2.75 7.07 5.56 8.68 9.93 7.61 2.35 3.01 3.01 6.03 3.11 5.4 2.18 8.66 4.78 2.69 7.63 2.27 7.43 9.49 8.31 5.76 8.9 3.01 4.25 1.4 3.01 8.84 6.18 7.6 13.9 10.5 3.5 6.18 2.18 8.54 3.67 7.56 8.03 8.15 8.97 7.66 2.09 6.02 8.08 4.97 6.58 6.5 7.94 5.36 9.6 5.84 8.09 4.51 11.4 11.1 9.57 5.35 4.89 4.07 7.43 5.51 4.96 0.86 10.7 7.48 5.65 5.95 9.31 5.79 8.36 4.5 2.63 2.76 1.06 10.1 2.56 3.43 0 8.4 0.86 5.1 2.09 5.01 9.11 10.7 7 3.76 4.22 5.38 4.02 6.14 2 7.53 1.06 2.69 3.87 11.5 3.43 5.21 0.63 5.26 8.68 7.28 9.99 5.98 7.1 7.22 3.54 3.76 8 7.44 5.77 2.69 9.15 9.43 9.6 7.46 2.49 9.82 9.06 0.63 5.66 7.34 5.35 6.12 5.62 8.53 6.27 10.6 4.78 3.54 3.06 0.63 8.42 7.27 0.35 4.49 6.15 10.5 3.11 0.35 8.73 13 9.94 7.97 5.64 7.94 1.24 0 0 1.9 10.1 3.06 3.87 8.99 3.4 9.69 2.75 7.92 2 4.88 6.21 8.18 7.92 8.94 4.35 1.54 5.7 4.87 4.99 2 3.95 12.1 5.68 7.23 7.37 6.1 7.62 1.24 3.76 5.97 0 5.34 11.1 1.9 4.36 8.44 7.29 5.69 7.23 9.19 1.06 1.54 0.35 8.06 1.06 3.95 0 8.01 9.33 9.16 3.84 5.42 0 5.07 4.8 8.23 3.06 1.24 9.35 6.33 2.09 2.75 7.64 2 6.85 1.06 8.36 0.63 1.4 5.54 6.43 2.42 7.26 5.11 10.1 4.05 2 8.13 1.67 4.88 0.86 6.95 10.9 8.04 6.61 9.41 2.18 8.55 3.79 1.54 6.81 6.31 7.49 9.84 7.83 8.28 0 6.23 9.82 9.04 2.69 7.51 8.21 3.11 9.86 5.06 5.98 11.6 9.32 7.95 9.71 3.6 3.47 1.9 2.8 10.6 2 8.31 6.3 1.4 5.87 7.42 8.9 10.2 2.35 8.65 1.4 9.31 1.06 2.49 5.37 6.17 7.71 5.95 9.32 0.86 8.23 8.81 4.02 7.3 7.66 6.03 6.98 7.31 0.63 5.28 2.69 9.24 6.71 4.82 7.59 2.09 4.06 7.2 0.63 5.51 6.65 7.22 1.94 6.14 7.95 0 3.57 5.01 3.32 2.8 7.56 7.91 2.56 11.5 6.46 9.3 5.88 2.35 5.23 8.38 3.5 7.99 9.43 9.26 0.63 2.63 7.48 5.79 1.55 5.56 8.77 10.5 8.24 5.14 8.56 7.24 8.84 7.46 1.24 4.18 4.55 8.36 9.97 3.32 5.76 5.71 6.14 6.19 2.63 7.22 9.65 11.4 11.8 10.7 7.37 13.7 2.56 13.1 12.7 10.7 7.61 12.4 10.2 11.3 8.97 4.31 9.13 9.13 9.63 9.58 8.51 11.5 13.7 14.1 8.65 9.25 11 0 7.86 6.77 9.4 2.56 10.9 7.96 11 11.3 10.6 10.4 9.36 8.33 8.57 5.75 7.23 8.89 8.03 10.2 11.4 8.56 1.24 7.4 9.64 8.38 12.1 9.04 8.55 11.6 14.9 0.86 3.28 9.1 0.86 6.42 5.73 10.2 4.35 9.05 11.4 2.86 10.6 7.74 9.54 11 12.6 8.73 8.6 11.2 9.81 7.9 9.62 10.1 8.52 8.14 9.71 6.93 11.1 10.3 9.03 9.69 5.55 11 8.29 7.59 7.79 8.68 8.1 9.62 9.85 9.05 10.2 10.4 10 11 9.86 9.4 7.64 9.5 2.35 8.33 8.49 8.67 2.96 8.93 10.4 9.47 10.2 0.86 1.4 8.41 4.2 12.1 5.31 5.45 7.56 5.13 0 2 9.25 12.2 8.06 5.59 12.4 0.63 10.9 13 10.6 10.9 12.9 11.3 10.3 12.6 7.65 0.63 8.17 9.14 9.93 5.45 14.1 10.1 7.02 9.02 8.84 6.99 8.93 8.61 8.72 8.84 10.8 8.36 8.53 5.93 7.32 9.09 11.1 13 10.8 9.23 1.67 11.4 10.4 7.14 9.93 8.99 1.79 10.2 7.86 3.7 10.8 9.1 0 8.48 9.61 5.63 9.67 3.5 10.8 0.63 2.8 8.24 7.47 10.4 4.05 11.2 10.6 9.88 2.35 7.71 10.1 8.17 8.42 0.63 5.42 10.6 11.7 8.95 6.64 9.72 10.3 8.96 10.3 10.9 9.52 11.3 6.86 10.3 1.24 9.27 7.36 11.1 7.01 5.64 9.64 9.69 0.86 9.35 5.73 8.87 8.64 8.23 9.66 8.67 9.66 10.6 7.7 7.03 12.1 8.47 9.41 12.8 9.75 7.63 5.43 7.08 7.81 0.86 9.8 9.33 7.64 4.14 7.86 8.45 9.49 7.9 10.6 8.76 1.9 11.1 9.15 12.8 9.06 9.31 11.3 2 9.76 5.2 10.9 9.07 8.02 9.51 9.25 10.4 11.1 9.97 11.2 7.01 8.1 6.66 9.01 0 8.88 6.25 10.3 9 5.46 9.59 7.97 12.2 7.9 1.7 11.6 0.86 10.8 8.6 11 5.81 7.51 9.42 3.73 8.04 6.37 12.5 7.97 11.9 0 1.24 0.35 12.8 3.92 0.98 8.25 10.8 8.42 14 11.4 13.7 10.7 10.6 6.05 12.8 11.8 9.98 1.06 10.2 1.4 4.14 7.11 11.4 12.4 12.4 12 2 6.5 1.24 2.56 8.85 1.06 11.2 9.41 10.4 9.86 11.3 10.4 10.2 7.12 12.2 13 12.9 5.06 9.83 11.7 11.3 10.3 7.82 12.4 11.2 9.85 7.77 10.1 7.36 9.35 3.87 6.79 9.94 5.11 9.59 7.81 7.43 9.53 6.46 7.89 10.1 8.62 12.1 9.6 10.5 12.7 5.64 11.2 6.81 12 9.98 10.1 11.5 8.55 10.6 10.3 10.5 10 10.3 12.1 5.39 8.57 16.1 15.4 15.1 11.3 11.4 13.4 10.6 5.82 12.5 13.2 4.09 12.8 7.6 12.8 4.95 14.6 13.2 11.1 8.88 7.6 10.4 13.3 11.1 9.55 12.4 6.12 5.54 4.35 8.24 8.61 7.14 8.78 11.4 9.68 10.7 10.9 11.6 11.2 9.28 9.98 10.4 10.5 2.8 10.9 10.6 12.7 9.25 1.06 9.05 9 9.88 9.19 3.54 8.39 0.86 7.83 2.42 9.01 0 9.87 12 6.95 13.3 10.9 12.7 11.3 11.3 11.8 10.8 11.1 13 0.86 11.9 13 0 6.02 3.97 9.93 8.04 9.51 8.28 7.73 4.44 8.84 9.22 9.43 5.5 5.11 0.63 8.22 8.36 8.36 6.96 7.07 7.59 9.01 7.79 8.62 10.2 7.7 7.52 8.91 8 9.33 0 10.6 7.48 7.72 12 0 8.26 10.8 1.9 2.42 4.79 9.14 1.06 7.95 9.6 10.4 10.2 10.2 12.3 5.84 4.02 11.4 10.9 11.2 11.5 12.4 9.84 4 5.81 5.44 1.06 10.9 10.9 7.68 7.47 9.33 10.9 11.3 13.4 11.1 6.19 8.32 10.9 13.1 10.2 8.33 8.74 14.2 12.4 14.2 9.29 2.7 14.5 10.8 14.2 12.9 2.86 10.8 11.6 10 12.3 4.64 5.97 14.9 10.8 8.26 1.9 3.36 1.54 6.14 4.33 0 4.91 7.81 11.2 9.91 10.8 11.3 3.15 3.7 3.24 1.24 3.5 8.41 10.8 4.58 5.88 2.18 8.59 8.43 6.17 8.69 5.36 2.18 4.51 3.46 6.8 8.84 8.9 1.67 5.98 7.37 7.78 4.35 1.06 0 5.69 5.04 8.75 11.9 0.35 8.71 7.34 4.51 9.42 9.56 8.23 8.6 10.1 9.41 6.96 8.68 6.3 7.46 6.85 2.18 2.91 8.95 1.24 6.73 8.39 7.01 3.4 3.36 5.96 6.8 2.8 4.33 6.15 3.15 5.94 9.1 4.96 0.35 11.7 9.05 5.3 3.5 11.4 7.82 4.76 0.63 4.29 2.8 11 4.02 2 3.81 5.67 10.3 10.9 8.84 3.11 0 3.47 5.46 2.69 7 2.42 5.54 6.2 4.18 12.1 2.91 10.7 7.91 3.73 1.79 0 6.57 5.69 7.8 4.54 3.84 6.35 3.15 3.79 5.42 5.46 8.17 5.75 7.2 13.6 2.56 2.2 1.67 8.19 1.9 9.92 11.2 10.4 11.6 3.24 11 0 4.18 4.78 8.38 11.4 2.18 8.13 11.3 1.4 8.54 0.63 10.3 6.21 11.7 10.3 1.06 12.9 5.71 5.44 5.52 1.54 6.68 1.4 7.25 0.35 9.32 3.57 4.36 8.7 1.06 8.95 9.4 6.35 8.46 3.28 1.67 3.01 1.06 8.6 9.25 8.25 6.43 1.06 4.82 8.55 7.22 1.24 6.92 2 2.18 2.8 0.86 6.11 10.8 6.07 9.09 6.18 5.95 8.04 8.66 1.06 4.18 10.8 2.75 10.5 3.2 4.99 1.54 12.2 4 2.27 4.8 6.09 2.63 0.86 6.21 1.4 6.92 0 1.24 5.86 8.4 2.35 9.86 3.57 1.67 11 12.7 5.08 3.32 7.36 0.63 10.6 5.71 6.95 6.38 15.1 11.6 5.12 6.26 5.06 6.85 8.73 7.28 8.09 12.2 8.72 1.54 11.1 4.75 5.12 4.58 8.14 11.6 4.42 6.9 14.2 0.35 6.96 11.9 9.77 0 12.8 6.83 3.24 9.32 14.2 5.3 12.9 7.16 3.47 0.63 7.09 2.81 8.3 3.5 10.5 8.48 14.8 9.49 8.76 7.98 9.58 5.71 11.1 7.82 2.35 9.27 0.75 11.8 9.33 7.66 4.72 2.18 3.4 5.94 2.27 5.93 7.34 0 7.26 9.37 10.9 9.99 2.18 7.59 10.4 6.78 5.88 3.36 4.86 9.44 9.5 5.36 10.7 3.01 5.06 9.95 8.23 9.14 5.61 8.81 8.49 2.09 3.15 16 2.42 2.69 4.63 10.3 9.57 1.4 7.13 2.69 0.35 6.61 9.8 10.7 1.42 6.93 12.2 9.99 8 6.04 8.81 6.24 5.86 1.79 9.75 4.33 8.69 10.6 11.3 12 4.8 11.5 8.41 12.8 9.22 11.1 7.89 4.87 8.35 7.37 2.8 4.53 5.24 2.91 5.3 8.74 0.86 8.69 8.97 8.36 11.3 11.2 8.78 6.54 2.18 10.5 0 11 7.21 9.7 11 11.2 7.37 9.88 9.71 4.16 9.98 10.2 6.04 10.3 8.53 8.51 8.84 7.4 8.59 9.21 8.99 8.32 1.9 13.9 7.82 9.23 8.45 9.41 6.43 8.97 7.9 10.3 9.07 10.3 10.8 12.8 12.3 10.1 9.06 10.7 12.1 11.3 9.4 9.49 14 0.63 0.63 4.07 13.3 4.9 7.38 11 10.4 11 1.24 9.97 9.25 9.11 12 11.2 8.16 12.7 7.87 8.47 11.3 8.33 13.7 12.6 12.3 13.8 8.04 5.6 12.4 9.37 11.7 1.06 5.8 6.16 6.53 2.49 4.9 0.35 10.7 6.32 8.55 6.87 3.9 9.93 7.84 7.36 6.42 0.86 1.67 6.21 1.06 6.72 5.6 6.82 7.82 8.44 9.02 2.18 3.11 7.12 6.02 8.98 4.46 7.88 0.86 4.83 10.8 5.16 3.36 6.45 6.5 7.8 6.12 0.86 7.7 1.67 6.74 8.87 13.5 5.84 7.08 6.06 10.2 5.34 6.34 7.74 2.42 5.98 4.78 6.78 8.66 8.14 6.45 5.8 7.16 1.79 1.4 8.15 7.57 8.32 4.18 7.94 7.27 0.63 6.88 0.35 3.36 0.63 5.3 10.7 1.67 8.61 9.91 2.8 2.27 10.1 6.44 8.69 3.4 8.23 14.2 4.19 2.49 7.26 8.82 7.62 7.84 1.79 9.8 0 3.28 5.73 6.68 7.41 5.91 8.69 12.9 3.73 5.11 12 13 7.81 6.73 8.44 7.52 5.55 11.7 1.67 3.67 2.63 6.18 8.1 0 5.42 9.64 8.61 6.47 2.8 4.25 12.1 7.74 9.5 2.96 7.49 1.24 8.62 7.86 7.81 0.86 11.7 12.1 4.46 10.6 0.63 0 1.79 11.7 0.83 0.9 10.1 2.35 5.22 12.2 7.81 1.67 2.36 2.07 5.22 0.86 9.96 4.79 4.66 9.47 10.5 11.7 8.83 8.97 7.6 10.1 5.43 10.4 10.7 10.4 1.54 4.78 15.1 8.8 2.8 8.72 7.9 4.12 13.8 6.35 4.78 9.27 0.35 4.9 10 5.14 8.14 2.04 9.58 3.57 0.35 4.16 9.48 6.75 8.78 13.9 9.56 9.83 9.27 4.69 5.39 3.92 4.33 8.39 8.78 2.49 10.8 1.9 7.82 0.35 9.6 0 4.51 4.82 6.64 4.29 11.4 2.95 3.28 9.58 0.93 7.33 9.54 5.68 0.86 13.8 6.51 9.62 5.47 3.76 8.62 4.86 3.57 9.43 6.93 7.16 7.44 5.5 6.26 6.62 7.7 5.27 9.4 8.8 9.99 6.26 4 12.8 3.06 6.33 8 8.51 7.61 7.04 5.83 6.7 3.97 0.86 4.75 8.35 5.55 0.38 6.16 4.38 9.94 2.69 8.25 7.72 2.18 6.14 5.87 7.74 9.35 0 8.05 0.79 6.47 10 4.29 8.74 7.79 7.5 1.54 9.64 12.3 8.79 1.24 7.17 1.06 4.76 4.99 4.86 5.73 8.8 1.24 6.08 5.4 9.49 6.53 8.01 7.16 6.31 1.3 12 7.64 6.87 10.5 2.27 2.49 3.64 1.4 8.39 8.16 1.67 6.53 3.47 8.69 3.06 3.87 0.35 5.54 6.45 1.06 6.61 7.04 7.91 10.9 5.63 0.63 1.9 2 9.88 0 3.57 2.75 6.46 0.35 7.99 11.2 8.32 7.08 8.18 10.4 8.14 5.63 12.8 0 14.1 0.86 12.9 2.42 8.84 8.63 12.5 12.9 2.49 1.4 12.5 12.2 12.7 1.06 6.21 3.32 11 7.21 13.7 3.95 2.75 9.64 10.4 7.51 8.43 13 11.7 9.4 0.35 13.5 10.9 14.2 6.24 7.96 0 8.23 9.99 9.45 12.4 8.96 12.6 14.5 13.4 7.57 8.58 10.5 11.7 0.35 9.73 10.5 9.37 0 8.68 8.26 11.8 10.1 9.25 7.46 12.3 7.36 9.37 6.79 8.13 11.8 0.63 8.55 9.29 8 9.7 8.18 10.5 9.46 7.31 2.27 10.9 2.09 6.85 7.07 7.15 11 1.24 7.24 4.9 11 0 6.51 5.37 11.2 11.3 12.8 8.06 8.21 7.42 7.16 0 1.06 6.56 7.52 5.06 7.45 8.88 8.68 2.91 9.87 9.38 0.63 7.81 6.42 0.35 6.81 3.79 1.06 8.3 7.44 5.67 6.17 5 2.09 6.05 3.4 11.2 8.27 2.69 2.35 11.1 4.51 5.06 0.35 4.91 9.99 6.74 1.9 4.79 0.63 6.32 1.24 6.69 3.67 1.9 6.19 11.2 1.79 7.43 4.72 6.2 5.2 5.72 2.27 5.4 3.36 2.7 10.9 5.68 6.8 8.22 0.37 9.63 1.4 6.36 9.12 5.54 7.7 9.63 2.81 7.75 7.18 9.23 4.65 0.63 10.2 2.09 1.24 1.69 0.86 5.1 8.87 5.04 4.29 8.7 8.36 0 3.11 6.65 11.1 7.3 1.9 10.1 1.24 10.2 0 2.69 8.44 1.06 4.16 9.53 7.31 7.62 0.63 8.52 10.4 13 13 8.57 6.88 9.43 2.37 9.08 11.2 6.5 9.03 3.32 3.28 12.6 1.54 4.58 11.2 8.24 9.11 9.52 9.77 10.9 3.84 10.4 7.73 5.23 7.83 7.78 11.9 12 5.5 4.72 5.3 6.07 12.6 7.88 10.8 11.1 7.62 7.29 7.49 7.3 9.26 6.87 13.8 13.5 10.4 11.4 11.9 12 12.5 2.42 5.54 3.47 5.55 8.93 10.5 11.9 8.29 5.15 8.83 10.4 11.1 10.5 10.8 9.91 7.52 9.91 7.29 10.7 10.1 1.67 4.59 10.4 10 8.34 3.28 13.3 9.24 9.99 10.3 10.5 8.55 11.7 9.54 10.8 11.3 8.05 9.99 8.46 13.6 5.26 9.98 6.88 11.5 10.1 7.85 5.93 10.6 4.4 3.61 6.41 6.16 3.12 7.94 6.71 4.86 12.1 6.94 1.19 9.39 8.61 4.14 10.3 8.75 8.98 9.96 12.1 11.3 0 10.1 11.4 10.9 7.24 11.6 7.82 2.42 3.28 13.2 8.95 10.8 8.85 9.77 8.37 10.3 11.8 1.4 4.25 10.2 1.06 11.6 12.3 11.3 11.7 9.51 6.77 9.04 10.1 10.7 10.5 6.14 8.47 10.4 9.7 3.24 6.61 6.39 9.28 10.8 10.6 8.73 9.61 10.6 9.9 0.86 0 7.57 13.2 8.62 10 6.03 9.59 8.86 9.53 5.38 8.46 11.8 9.31 6.26 6.97 10.7 11.8 9.19 10.4 11.2 9.16 11.7 8.68 9.85 12.6 6.01 9.51 12.3 6.55 0.86 9.75 11.5 8.31 5.12 10.4 8.35 9.54 6.67 8.22 11.4 11 10.7 11.4 7.38 4.31 8.9 11.2 12.3 9.03 8.08 9.36 9.22 12.9 1.24 0 9.28 2.8 9.82 12.9 5.22 12.3 1.9 2.35 8.87 10.1 5.41 4.7 6.95 7.17 9.68 2.27 8.72 9.51 3.84 9.95 10.7 9.83 10 9.55 5.65 3.95 10.6 6.51 5.1 10.4 10.3 4.18 6.98 7.86 10.1 0.35 1.24 10.9 11.8 1.4 5.56 6.23 8.03 9.39 4.93 1.54 5.13 4.61 5.6 3.24 8.84 3.43 2.8 4.76 8.06 8.82 5.03 8.28 9.38 3.95 6.63 3.72 4.91 6.23 5.62 11.7 6.8 0.35 7.59 2.75 10.2 7.07 5.29 8.37 0 0 8.69 10.3 2.86 4.83 4.56 1.79 11 2.27 7.27 7.81 0.86 0.35 7.72 7.32 6.69 7.16 12.7 3.4 6.43 4.85 5.79 7.33 2.66 6.25 8.33 6.42 7.38 5.29 7 6.91 3.67 4.93 6.73 1.24 7.2 9.02 4.64 3.81 3.84 0 1.79 3.32 2.09 2.56 5.98 1.4 9.12 5.92 4.35 4.98 5.97 3.47 3.92 9.29 2.63 0.35 0.86 0 4.64 2 7.06 1.06 3.4 7.97 6.14 3.84 7.27 9.46 1.06 8.36 8.49 0.35 8.2 10.8 10.6 10.3 6.01 7.14 6.56 1.06 9.37 13.8 9.57 8.59 9.06 7.31 3.95 8.92 7.53 3.24 3.81 7.54 10.2 9 5.77 8.7 7.48 11.2 10.7 9.16 8.25 10.3 4.2 11 9.33 9.83 11.9 2.35 3.57 9.33 9.81 7.52 8.96 10.5 9.83 7.67 9.54 3.73 6.28 4.44 0.63 1.4 0.63 10.6 6.32 2.69 10.8 10.9 1.4 6.26 14.6 11.4 8.87 9.51 0.63 6.87 14.3 10.3 4.98 12.9 12.3 11.5 9.59 11.7 12 7.66 9.92 9.41 11.2 10.9 10 8.41 9.13 2.18 10.3 10.1 13.3 10.5 11.3 12.6 11.6 5.51 11.8 6.57 6.73 11.6 11.9 10 11.4 0.86 14.1 9.52 10.1 5.24 4.76 9.06 9.45 7.96 9.14 12.8 9.39 10.8 10.4 10 11.8 10.9 11.9 10.4 10.1 10.2 4.98 11.4 11.1 10.2 9.54 11.5 9.36 10.4 11.3 10.8 9.41 10.9 11.1 11.6 11.6 9.91 10.5 10.9 10 11.4 10.5 12.1 9.42 11.3 9.92 11.3 10.4 11.7 9.44 9.53 7.82 12.6 12.5 10.7 10.4 7.01 6.51 6.64 6.8 8.45 0 1.54 4.31 11.8 9.76 8.51 2.56 6.83 5.58 10.9 12.7 14.8 11.2 4.18 11.8 8.85 6.26 11 9.78 7.75 3.92 14.7 4.49 11.5 11.3 9.48 8.85 8.99 10.5 10.3 11.3 9.01 9.3 8.53 7.33 8.9 9.81 10.4 3.24 9.46 9.1 10.2 7.03 1.4 11.2 14.4 9.5 9.04 10.8 5.9 9.67 7.77 6.83 10.8 5.82 3.87 6.56 9.74 10.3 12.8 9.88 10.7 9.56 11.9 11.3 2.27 9.5 12.4 2.56 7.08 10.2 9.86 8.89 10.1 12.3 9.32 7.86 10.1 13 11.3 3.4 10.8 8.17 10.1 7.54 11.9 5.56 0.86 13 11.4 8.46 8.95 2.96 4.38 10.2 10.2 9.95 9.02 10.4 8.64 1.54 10.4 5.93 5.26 6.91 12.6 10.7 7.61 7.83 8.3 3.95 5.67 4.29 0.35 5.89 0.35 5.1 4.89 1.4 4.83 9.09 13.3 9.1 12.7 9.44 10.5 8.87 11.2 8.03 9.44 9.02 8.77 10.1 8.38 0 8.99 4.86 4.38 9.25 8.27 4.66 10.1 8.7 0 4.16 9.68 8.64 2.78 5.13 6.19 1.06 13.2 10.4 9.56 12.5 9.27 2.86 12.4 10.1 1.4 3.92 5.36 6.4 9.45 1.4 1.06 10.6 9.93 13.7 9.95 7 8.3 8.54 8.49 1.67 6.04 3.5 7.91 13 9.06 7.65 9.75 4.75 0.63 11 7.01 10.5 4.66 0.35 6.49 7.37 11.3 9.78 7 7.07 9.93 6.52 7.07 3.79 3.92 5.99 7.25 9.58 14.3 6.1 6.44 11.6 0.86 2.35 5.13 13.8 6.71 11.2 4.49 12 10.2 9.05 8.03 11.7 8.96 9.14 2.86 2.63 9.82 8.51 7.06 13.2 9.96 0.35 9.86 14.8 6.12 5.26 10.1 8.45 11.4 1.74 9.23 8.75 5.39 9.8 9.37 3.9 10 4.29 11.9 9.94 7.34 11.2 10.6 7.69 1.9 6.09 0.63 9.47 9.06 10.2 11.8 8.19 11.4 8.67 8.33 2.09 4.38 1.67 12.3 5.88 7.33 10.4 7.62 6.44 0.35 10.7 9.26 10.8 9.4 10.2 11.9 7.47 9.57 10.6 13 5.4 1.06 13.5 5.11 4.33 4.53 10.1 11 8.12 11.6 10.1 11.2 9.7 7.47 7.31 6.91 8.78 9.25 10.9 8.94 9.16 3.15 7.52 9.2 10.1 8.48 10.8 8.5 7.34 8.94 9.19 9.71 10.7 6.35 7.97 10.8 7.89 9.52 7.84 10.2 9.52 9.29 11.2 11 8.02 9.67 1.9 6.79 6.19 10.3 6.09 7.73 9.61 10.7 10.8 8.02 7.71 10.5 2.56 8.4 9.59 9.54 9.58 10 7.48 9.99 7.01 10.8 7.67 9.42 10.7 11.8 10.9 10.7 9.81 2.75 11.4 9.28 5 4.38 8.48 10.7 8.73 9.58 9.01 11.3 8.65 8.93 11 9.39 9.51 9.79 10.9 7.8 8.6 8.5 8.18 9.13 7.88 11.9 12.3 11.1 10.4 10.6 9.58 9.42 10.1 9.48 10.4 10.2 8.42 11 8.22 9.9 9.49 9.63 9.65 10.3 2.69 8.37 5.28 7.66 8.46 10 9.95 7.01 8.85 7.78 8.75 9.09 11.8 9.51 10.3 10 7.5 7.44 12 3.32 8.91 10.7 8.34 8.76 11.3 8.03 7.92 8.77 9.96 5.93 7.62 4.14 9.55 8.09 9.04 7.4 7.38 5.21 9.44 8.2 11 7.95 8.7 9.49 9.51 10 7.87 12.1 7.21 7.8 9.14 8.15 4.73 7.13 10 9.35 9.83 5.88 9.69 8.62 2.09 2 3.06 10 0.86 9.04 8.62 7.17 7.83 10.3 10 9.92 11.9 3.36 10.4 8.97 5.26 7.14 9.41 9.16 12.6 10.5 9.69 8.92 5.87 7.62 8.27 1.4 10.2 10 8.49 9.35 10.6 7.6 8.69 9.28 10.2 4.46 4.29 6.54 11.1 10.5 10.9 10.5 7.96 6.07 7.64 9.3 10.5 8.87 11.7 7.6 10.2 10.7 7.83 3.57 9.62 9.74 8.98 9.01 10.2 9.18 6.29 10.1 11 5.26 11.1 8.68 10.5 5.52 7.98 11.1 0.63 8.97 9.2 4.27 8.5 9.87 6.01 9.9 7.71 2.18 9.13 4.67 9.24 9.79 7.66 9.3 10.6 11 10.6 6.42 11.4 6.29 12.7 7.27 6.68 2.09 11.4 9.89 8.77 7.91 9.03 9.8 10.2 9.89 9.4 2.86 8.24 0 7.34 8.64 9.87 9.09 9.98 8.83 7.73 10.2 9.38 11.8 1.4 10 10.2 7.24 11.8 9.1 8.08 8.47 6.87 7.8 11.4 0.35 8 12.2 9.26 9.22 5.74 10.5 8.68 8.15 10.8 9.78 12.1 7.8 9.89 9.01 9.84 8.48 8.58 8.47 12.7 8.4 8.36 7.68 10.8 10.7 4.75 9.61 10.9 10.5 12.1 9.41 10.5 2.09 10.3 8.17 10.6 11.1 0.63 9.86 10.3 8.85 7.4 4.69 10.4 10.9 8.33 4.75 10.6 10.6 7.16 11.2 8.22 8.77 7.38 10.9 10.6 8.87 11.2 8.87 11.8 9.1 7.76 9.49 11.2 10.4 11.5 9.73 10.5 3.01 5.67 4.18 10.2 8.51 10.8 11.1 9.65 9.23 9.34 8.88 9.55 10.7 7.1 9.2 7.76 5.59 9.82 9.87 8.95 9.22 10.9 8.82 8.81 8.01 8.85 8.72 8.75 8.4 11.1 6.75 0.63 8 8.73 11.1 4.07 8.14 10.9 10.1 9.2 10.2 3.32 9.29 10.9 9.39 8.64 8.19 10.4 9.63 11.1 8.06 9.99 9.45 10.6 9.91 11.2 11.3 11.1 11.9 6.32 9.21 9.55 12.4 8.4 10.3 10.1 8.16 12.3 8.86 1.06 8.16 10.8 11.8 10.2 11 12 7.66 10.6 6.87 8 10.2 10.4 9.46 11.4 8.62 10.6 9.1 10.7 10.5 10 6.58 9.48 7.81 11 9.11 6.58 8.93 6.38 9.53 10.4 7.05 10.5 8.84 10.7 7.48 12.3 9.49 9.01 6.2 7.03 9.21 9.92 3.6 9.26 8.77 8.02 9.01 9.44 9.32 10.2 12.8 11 5.49 9.18 0.35 9.1 9.38 7.78 10.3 7.86 11 7.78 0.63 10.9 2.49 8.3 10.1 11.3 8.33 11.1 4.75 12.1 7.45 3.5 12.6 8.39 9.36 6.31 11.1 9.22 9.24 3.21 10.6 9.83 10.1 10.7 11.7 7.43 4.4 9.63 9.99 0.35 6.42 12.2 9.17 8.38 6.3 11.1 12.3 4.25 7.09 5.73 8.27 9.18 12.5 11.6 11.5 10.1 8.46 8.64 7.66 9.82 8.48 9.24 9.33 2 5.76 10.2 8.08 10.4 10.7 9.32 7.88 12.2 9.14 2.49 10.2 11 10.7 6.9 12.2 0 11.2 12.3 14.1 11 9.8 10.6 12.2 5.06 0 11.1 5.15 7.85 11.5 13.1 11.2 7.7 8.59 5.89 12.3 6.56 12.5 4.25 13.2 0.86 10.4 10.1 7.25 9.15 10.7 11.8 1.24 9.63 10.8 13.4 6.9 11 13.2 13.6 7.28 8.71 6.65 7.49 9.22 10.6 7.9 8.32 16.1 9.6 9.26 8.69 11.5 8.53 10.7 9.94 10.1 6.99 11 11 10.6 10.5 10.6 9.58 0.35 8.07 9.81 11.9 0.86 11.1 11.7 7.68 15.5 8.7 7.22 1.4 7.35 7.52 8.78 8.49 9.13 10.7 9.04 11.2 9.57 9.24 6.82 10 5.77 10.4 8.4 7.31 0 9.17 7.87 7.4 6.12 9.38 10.9 3.73 7.89 8.55 9.08 8.39 11.8 9.98 13.1 4.12 6.5 8.88 9.68 3.58 10.1 2.18 4.36 1.06 12.1 6.29 11.2 11.2 0 10.6 9.26 11.6 10 10.4 11.7 10.9 11.1 4.29 8.54 6.44 11.6 4.36 13.2 3.68 5.78 0.49 2.09 12.3 11.3 9.85 9.63 10.7 7.41 8.06 7.73 5.32 5.4 1.06 2.49 9.89 11.2 7.79 6.15 4.46 3.01 10 3.06 9.55 7.86 11.3 4.86 11.7 4.69 9.01 8.89 8.85 8.35 7.08 10.1 9.19 10.5 9.68 4.56 9.86 12.7 8.6 9.81 8.54 5.07 4.95 5.15 7.56 7.88 4.51 7 1.9 1.9 8.05 3.15 10.2 9.21 4.73 10.3 9.41 10.8 0.35 9.96 8.82 8.14 6.85 7.26 3.42 8.48 7.86 7.77 8.47 8.82 9.38 9.4 11.8 9.54 4.44 10.3 5.01 7.76 7.33 9.17 11.1 9.11 3.9 4.93 10.2 10.2 12.7 10.4 10.9 5.31 4.54 7.93 8.83 7.85 11.9 8.81 6.7 9.19 9.84 2.49 6.32 9.5 9.02 11.3 10.4 9.29 12.1 10.7 5.93 11 9.68 3.7 4.36 10.2 9.39 7.78 10.3 7.14 8.94 6.5 4.14 9.24 9.59 7.44 9.6 4.07 9.95 11.3 7.41 8.67 0 0.86 12.3 10.2 11.6 9.72 11.5 9.68 8.15 0.35 10.9 8.67 9.92 11.6 7.2 10.3 11.1 8.58 10.2 9.95 2.91 10.8 7.25 9.49 8.42 8.39 8.7 9.44 9.05 9.24 7.78 10.9 9.41 4.85 12 8.46 11 8.86 8.61 6.1 10.5 6.69 6.13 8.27 7.96 7.1 10.8 6.67 9.78 8.22 6.7 8.86 3.87 8.5 9.58 8.37 9.47 7.9 9.39 7.87 10.4 9.11 10.9 7.9 10.6 9.98 5.55 9.42 8.68 9.97 7.25 7.47 6.37 3.06 6.91 0.63 7.92 10.4 5.82 9.64 9.56 5.56 10.4 7.25 10.4 10.1 9.71 7.22 5.93 9.67 9.21 7.13 10.3 11.6 6.66 5.48 8.44 8.2 10.1 10.2 3.47 10.4 8.93 10.1 8.53 11.1 2.27 12 9.8 8.65 9.51 8.16 10.8 9.39 10.2 4.4 9.93 9.66 7.93 8.92 6.71 11.2 4.73 9.96 3.64 12.1 8.81 3.01 9.76 9.03 9.93 2.75 9.69 1.54 10.9 2.8 8.43 2.63 10.9 8.15 8.81 13.5 7.26 8.69 9.59 10.4 9.3 10.9 9.53 12.1 7.8 8.59 8.53 10.3 12.9 8.98 9.03 10.2 8.96 8.14 3.28 8.87 10.6 10.9 8.46 8.02 7.87 7.7 7.49 8.56 8.41 9.1 9.17 7.99 10.3 8.02 7.69 11.1 8.4 7.73 9.21 2.63 9.36 6.68 11.5 6.9 4.99 9.69 5.74 5.97 0.35 10.8 8.56 7.68 10.8 7.34 8.88 10.5 9.67 10.7 8.46 7.42 10.6 8.4 7.48 9.87 8.72 2.09 9.26 10.1 0.35 11.6 9.2 10.8 10.1 10.2 10.1 7.54 8.73 4.85 11.2 9.7 9.66 10.6 9.14 7.86 11.4 8.14 8.71 8.32 8.15 7.29 9.49 7.94 10.4 9.43 11.9 7.52 9.19 9.76 11.4 9.01 7.72 10.9 9.14 8.61 8.41 2.91 8.75 8.88 6.1 8.42 10.1 9.16 9.51 2 9.66 6.5 9.44 8.12 8.52 10.7 8.73 11.4 9.73 8.6 11.7 7.92 10.8 8.41 10.7 10.4 10.6 9.07 12.1 9.83 8.94 7.96 5.71 9.29 9.73 9.67 0.86 9.02 10.3 10.6 10.6 7.68 7.98 5.66 10.9 8.66 9.61 9.26 9.32 8.29 7.61 8.97 8.2 7.81 7.78 8.45 5.82 11.1 8.44 11 5.47 9.63 7.88 8.93 0 8.84 7.76 8.47 7.99 9.81 10.6 6.65 9.56 9.32 11.8 4.05 8.44 7.79 8.1 10 6.4 11.5 7.4 9.11 9.86 9.08 11.9 7.63 7.74 10.7 8.44 8.85 9.75 10.7 4.96 11.2 12 11.6 7.15 10.1 7.23 10.9 8.5 7.86 7 8.58 9.38 11 4.7 9.83 7.34 7.5 7.84 9.49 8.42 6.33 9.76 2.18 9.26 11.6 6.18 10 5.86 9.38 7.95 9.3 10.3 9.99 9.54 6.78 5.42 8.74 8.61 10.1 7.51 7.82 10.2 5.84 12.3 9.7 8.27 8.16 10.1 9.25 7.79 8.23 2.75 6.3 10.7 7.16 6.45 7.2 8.63 7.32 10.2 5.19 12.1 6.59 7.07 5.15 9.86 9.03 10.5 10.7 4.51 9.93 10.2 10.5 8.38 7.67 5.28 8.7 5.24 7.5 9.3 10.9 6.96 7.75 10.7 3.81 9.98 8.01 10.3 9.53 7.93 7.19 4.89 10.9 9.61 9.36 7.65 9.86 9.78 7.84 10.6 7.85 9.85 6.98 9.3 1.06 8.27 8.91 8.36 10.2 5.23 8.36 8.29 8.31 8.46 7.92 2.49 9.27 11.2 9.37 8.53 5.23 9.78 7.16 10.4 10.6 10.1 8.36 11 3.84 7.26 10.7 9.36 8.81 8.77 9.52 9.41 11.2 10.9 10.6 11.3 8.52 3.57 5.75 9.39 9.67 8.97 8.3 7.84 9.3 9.51 5.22 6 9.85 8.99 9.46 13 7.77 8.84 10.6 8.8 7.59 10.7 10.9 8.67 8.75 1.9 10.3 7.67 9.75 7.1 10.7 9.69 9.78 10.6 7.88 3.4 9.04 7.51 9.76 4.56 9.48 9.74 8.93 11.2 7.3 10.9 4.96 9.36 7.72 8.97 10.7 7.09 9.4 7.89 9.32 9.12 1.9 0 9.51 7.5 9.17 8.69 9.87 8.62 9.04 8.88 11.4 10.3 3.06 9.13 10.4 9.05 8.79 9.55 12.3 8.21 8.23 11.2 10.5 9.79 0.35 7.59 10 10.2 9.31 10.2 9.31 8.96 8.68 9.07 10.7 8.64 5.25 6.59 9.07 8.63 8.68 10.1 3.6 10.1 9.12 10.4 8.31 9.52 3.2 9.9 10.5 8.65 8.68 8.75 8.05 9.88 8.28 11.2 5.69 5.83 8.87 6.88 9.07 0 9.28 11.6 1.24 8.69 7.97 10.3 10.9 7.23 8.33 7.94 6.99 8.8 9.5 8.21 2.69 9.41 8.97 0 9.2 10.4 9.99 11.1 9.04 10.8 8.99 10.6 7.87 9.73 5.55 9.91 9.03 7.83 9.39 7.16 6.12 8.42 8.67 11 9.19 9.49 9.75 7.79 7.06 7.83 7.96 8.27 11.6 11 10.8 5.41 6.23 9.47 10.1 9.69 8.78 10.2 8.8 10.3 7.95 4.89 7.39 10.6 11.9 1.54 9.24 9.27 12 2.09 6.68 8.91 2.8 10.2 10.5 10.1 9.1 13.3 10.5 8.55 10.3 6.87 8.09 11.1 11.9 3.54 2.27 4.12 7.1 9.31 8.99 6.38 5.5 3.2 7.57 4.54 8.38 8.64 8.05 0.35 8.63 10.1 8.58 9.9 10.1 11.6 7.71 3.01 9.89 8.89 9.1 10.8 8.73 7.03 2.56 9.82 10 9.44 0.86 8.12 4.72 8.61 0.63 5.64 3.28 10.8 6.76 5.49 10.9 9.91 7.21 1.06 0.35 7.53 8.84 6.26 10.4 9.47 0.86 3.2 7.26 9.85 9.91 9.77 8.24 11.3 8.45 4.05 9.78 5.94 9.59 9.4 11.6 0 10.7 9.6 6.78 6.5 10.7 11 8.54 9.79 7.96 10.8 9.21 7.81 1.79 9.1 8.78 8.99 9.72 11 9.46 10.4 5.36 8.62 11 6.65 3.89 9.54 8.58 9.57 7.77 8.64 9.96 9.58 9.21 8.02 10.7 11 10.9 9.83 10.5 7.97 10.7 9.21 9.54 7.75 7.32 9.41 7.25 1.06 9.24 7.98 11.2 9.68 11.5 8.44 7.31 10.4 8.01 9.11 10.2 9.87 9.5 11.7 8.8 8.23 8.08 9.01 6.18 10.9 10.4 10.5 10.6 7.99 7.73 10.6 11.9 10.4 7.21 9.36 10.2 9.35 10.3 9.66 7.29 9.73 8.82 7.41 9.46 11 11.3 7.84 7.53 9.57 6.21 11.2 9.51 9.75 5.53 9.79 9.34 11.4 3.06 11.2 7.06 10.8 10.4 8.74 7.87 9.06 10.3 6.89 10.7 8.39 10.1 6.65 7.97 8.76 11.5 8.98 10.3 9.63 9.16 10.2 6.42 6.55 5.49 8.8 10.8 6.59 9.95 12.7 10.6 5.91 9.47 8.8 10.3 11.6 10.9 10 10.4 10.2 9.86 9.39 9.25 9.28 9.49 14.8 9.79 8.75 9.78 8.84 11.8 13 11.6 9.6 8.68 8.07 9.44 8.1 8.01 9.3 9.67 6.57 9.34 10.4 10.2 10.7 9.17 10.1 7.63 9.65 3.11 9.46 8.13 9.25 8.45 7.83 6.83 10.6 7.82 7.78 8.99 8.44 9.24 7.49 6.2 10.8 2.49 8.49 5.48 7.77 9.2 8.94 8.9 6.18 7.91 6.06 10.8 10 6.1 9.65 8.6 6.13 6.42 0.86 7.98 7.33 9.43 0 7.73 9.36 9.43 6.58 9.99 11.3 1.54 10.8 8.76 10.8 10.7 9.85 8.67 10.4 10.4 10.8 9.89 6.6 9.43 6.99 10.6 6.76 10.4 7.47 9.35 11.7 9.08 9.41 8.24 12.1 8.27 10.2 10.3 3.51 9.55 7.03 9.37 7.45 9.58 7.37 9.86 9.59 10.5 9.65 9.09 10.3 7.9 8.91 10.4 8.87 1.24 5.73 8.23 11.5 1.06 7.32 0.86 12.8 12.7 8.14 10.7 6.06 11.2 9.31 8.53 5.22 12.7 10.7 11.3 7.9 9.69 8.88 11.1 9.56 11.3 8.88 7.62 10.5 4.72 11.3 7.77 5.6 9.47 1.54 8.45 8.44 11.4 10.8 8.69 7.1 9.9 12.6 7.29 9.84 9.94 11 10.6 9.57 11.5 8.59 6.69 9.5 9.49 9.11 9.37 7.32 0.35 7.01 0 10.5 9.1 9.59 7.84 9.07 9.95 9.83 10.7 9.81 10.7 11 6.82 8.08 8.29 6.42 9.92 3.15 3.06 9.74 7.49 4.07 7.01 4.7 7.51 7.84 4.33 4.63 4.68 5.06 6.05 10.6 4.96 6.11 4.47 5.07 5.61 9.04 1.24 5.33 8.91 5.29 5.83 7.78 7.34 7.52 6.57 6.26 10.9 5.03 6.9 5.97 9.4 3.11 5.95 8.82 1.24 1.24 0 6.97 9.45 5.83 7.67 10.4 2 8.8 11.9 1.54 8.35 9.2 7.29 10.8 7.77 9.34 10.6 5.82 10.1 10.5 5.46 10.8 10.3 5.55 9.87 10.8 8.17 8.41 10.7 11 9.87 10.2 1.79 0.35 9.39 9.08 9.24 8.38 9.54 9.31 9.24 8.83 12 5.42 0 1.06 8.56 8.78 9.89 3.15 10.7 11.7 4.89 10.6 5.97 0.35 15.9 7.74 7.81 11.2 10.2 4.86 8.58 11 8.79 9.43 7 1.06 9.65 8.64 9.85 8.39 8.53 5.53 1.54 3.79 2.8 8.33 0.63 10.4 5.1 10.7 9.58 15.6 5.35 0.86 11.8 11.1 10.5 10.2 10.5 8.82 9.59 9.5 9.01 10.3 9.97 10.5 6.74 5.9 10.2 9.98 11.5 10.4 10.6 9.85 11.7 11.1 8.14 9.4 9.98 11.6 8.78 9.78 11.1 6.68 10.6 9.89 6.03 8.26 10.1 9.51 6.5 9.55 11.6 11.5 6 8.99 8.79 8.23 9.25 8.62 8.21 11.8 7.43 9.89 6.02 7.73 10.6 10.5 10.4 9.67 10.9 8.09 7.64 9.61 5.2 11.5 9.69 9.93 8.84 8.26 9.24 9.24 8.2 10 9.38 10.4 11 9.88 11 5.38 6.58 11.4 9.44 11.4 0.63 5.11 5.11 9.23 7.28 10.7 4.35 11.2 6.8 4.12 9.77 7.18 4.29 8.53 9.4 6.4 7.77 10.9 11 11 3.06 10.2 9.79 9.84 10.3 9.73 9.18 11.3 2.18 8.59 7.81 7 11 7.58 10.3 5.13 12.5 10.4 10.8 10.9 10.9 8.77 2 9.22 9.23 8.75 10.8 9.93 10.2 11.6 9.01 2.56 9.35 8.83 2.02 11.5 10.5 12.1 3.32 10.7 8.91 8.68 11.2 5.53 11.3 0.35 9.39 4.02 8.13 7.23 10 11 2.35 8.36 8.77 11.6 10.9 9.37 8.82 9.14 9.01 10.3 1.79 7.74 6.13 9.47 8.58 9.3 7.23 6.06 2.18 8.47 9.33 10.6 11.1 11.2 7.98 12 8.82 11 12.1 12.6 7.76 10.4 7.39 10.8 9.47 10.2 6.7 12.6 9.86 4.94 7.73 5.81 9.38 7.79 9 3.15 2.35 5.63 11.3 9.82 8.43 11.7 10.7 12.1 11.4 8.89 7.38 9.62 8.86 10.3 11 8.74 9.71 8.34 9.62 10.7 10.3 3.11 10.4 8.56 9.73 9.83 11.8 9.9 8.85 10.5 10.1 10.1 9.68 7.92 4.14 9.68 9.29 10.9 6.45 12.1 10.1 8.48 9.4 9.76 8.67 10.1 5.82 7.4 12 8.66 10.4 5.19 4.99 8.57 10.5 8.76 2.18 7.61 9.43 12.5 2.12 7.05 7.39 7.65 7.09 8.87 2.91 8.61 7.89 2.42 5.56 11.8 9.62 5.72 6.03 12.4 8.61 6.98 1.79 0 10.4 9.4 0 3.01 10.2 9.96 9.45 11.1 8.02 11.5 7.26 10 6.34 9.28 7.71 1.4 10.3 11.3 10.6 7.47 11.9 2 9.89 8.28 9.5 9.62 8.41 9.41 6.18 10.6 9.2 8.8 7.12 3.67 9.24 9.58 1.24 5.89 10.5 10.3 3.6 9.75 10.4 7.93 9.83 5.55 8.51 9.37 10.2 8.57 4.54 5.24 8.54 12.1 8.34 3.15 10.5 10.6 9.88 0.63 10.1 0 10.6 3.2 2.67 3.47 8.8 9.35 12.2 8.77 8.82 9.37 10.3 8.44 10.9 9.54 12.5 4.09 10.6 9 8.78 3.35 3.95 7.86 0.63 6.73 8.82 6.96 11.2 11.2 9.66 4.25 6.58 4.33 11.5 9.1 10.5 2.27 8.01 9.28 6.97 9.42 6.76 6.79 3.5 8.34 12 11.2 0.86 9.51 11 7.48 6.09 10.5 9.36 10.3 6.39 8.72 6.32 9.02 7.97 3.6 13.6 8.01 4.05 9.18 7.44 0.35 6.09 9.06 6.9 8.56 10.4 0 9.42 10.3 9.48 9.3 8.9 10.2 10 9.92 8.95 8.74 5.75 3.9 7.65 10.5 8.35 10.4 10.2 7.82 9.17 10.1 8.21 10.8 9.94 8.38 9.08 2.27 6.46 10.3 10.4 8.36 8.02 5 8.14 3.7 11.9 9.8 7.38 10.6 9.16 11.8 8.02 3.28 10.9 8.39 9.45 11.6 10.4 6.06 6.64 7.46 10.3 7.28 11.5 12.3 10.4 9.52 10.4 8.09 9.95 9.66 9.65 6.66 12.9 7.33 7.78 8.78 11.3 10.6 7.61 5.9 6.41 0.35 8.59 3.11 9.11 6.47 6.91 9.02 8.23 8.22 6.64 10.5 5.14 3.36 11.5 8.58 10.2 8.74 11.1 9.17 9.66 9.65 9.96 8.39 7.44 7.8 6.02 9.02 6.78 9.43 2 8.44 11.6 7.69 7.43 9.83 9.76 9.13 4.7 3.95 6.97 10.4 10.7 6.82 6.12 7.11 7.69 10.9 7.97 8.33 9.4 9.25 9.92 9.87 9.11 10.1 5.55 10.4 11.2 12 8.67 10.2 8.94 6.35 3.15 8.82 8.63 9.91 4.66 10.2 0.35 7.68 5.22 7.78 11.4 9.45 6.05 4.14 8.64 10.5 11.1 8.4 8.89 12.3 10.1 7.1 11.3 11 11.2 1.06 6.97 5.52 3.5 8.54 1.79 9.93 7.46 2.8 10.6 8.37 8.33 10.5 8.53 10.1 9.12 7.01 11.5 11.8 12.9 10.7 4.89 8.92 10.6 10.3 9.75 8.84 9.41 11.6 10.5 10.6 7.38 10.4 10.5 12.7 9.85 4.91 10.6 9.46 9.64 11.3 10.8 9.36 10.8 5.74 11.6 9.43 10.1 9.24 7.36 9.65 7.56 5.73 7.61 5.71 5.2 8.97 9.57 9.14 8.95 6.55 9.59 10.9 11.2 9.09 4.46 9.59 9.62 11 10.4 10.1 11.6 9.28 10.6 4.72 10.1 0 1.4 12.2 6.58 9.59 11.7 9.4 10.1 6.94 4.22 8.25 9.21 10.2 12.4 10.8 11.3 8.07 10.8 7.7 2.69 9.29 8.87 8.14 12.1 12.9 10.2 7.34 8.37 8.97 11.4 11.7 11.1 3.87 7.81 6.21 7.69 7.36 7.92 11.3 7.02 9.77 12.1 10.5 10.9 10.2 11.6 8.92 10.8 10.7 9.92 10.8 10.2 9.62 9.03 9.24 11 1.79 11 8.73 8.77 9.6 10.2 12.4 10.5 9.59 6.68 4.91 4.99 10.5 8.8 6.51 10.2 8.38 12.1 8.56 11 11.6 10.7 8.46 11.1 9.93 9.58 10.6 9.39 6.05 1.06 10.7 10.3 11.2 0.63 8.07 10.5 9.03 0.86 9.2 7.25 9.96 11.1 2.96 5.55 10.7 10.2 11.4 9.17 9.11 0.63 1.4 0.35 11.3 14.4 5.48 2.35 11.6 9.8 1.4 10.2 11.2 3.57 10.7 9.96 5.86 7.77 10.9 8.81 9.49 11.2 9.94 8.37 3.73 13.5 9.4 9.79 8.86 6.9 7.5 8.5 10.4 9.89 0.24 9.03 9.57 7.7 5.2 2.35 10.1 5.81 11.6 9.9 9.53 16.8 8.71 11.3 4.33 9.36 2.18 2.18 9.72 1.24 9.8 9.66 8.31 4.29 9.77 3.06 9.57 11.3 10.6 10.2 9.31 2.42 0.86 8.25 10.3 1.54 8.22 8.31 10.7 8.39 8.96 10.8 0 8.82 1.06 0.35 8.55 12.1 4.4 10.2 10.9 10.2 1.79 9.07 8.09 10.7 7.99 9.18 7.34 8.8 9.09 9.27 2.69 9.62 10.8 12.3 10.4 10.3 8.94 11.6 9.1 11 7.82 7.84 9.44 10.5 1.06 8.44 11.2 5.6 6.15 8.52 5.21 10 9.17 0.86 0.35 6.73 9.3 4.38 8.07 9.37 9.17 11 7.65 8.72 2.86 9.22 10 5.55 9.47 2 9.14 2.42 6.64 8.6 6.64 1.54 11.1 10 8.34 8.95 14.6 14.1 13.3 12.8 9.42 10.6 13.2 5.27 14.3 10.1 13.2 13.1 12.6 13.9 14.1 11.6 13 10.3 14.3 1.54 12 11.6 9.61 12.7 13 13.1 12.9 13 13.4 13.1 12.6 13.6 12 12.7 11.1 12.8 13 12.2 8.98 7.48 13.7 6.09 13.9 13.7 13.2 10.9 9.28 13 12.8 12.9 13.4 11.4 13.5 2.77 2.69 5.38 8.45 7.2 12.6 1.67 4.2 13.9 11.3 10.6 10.4 8.99 8.97 11.8 13.4 13.1 11.8 13.9 12.5 12 13.1 11.6 12.5 13.2 12.8 9.3 13.6 13.4 13.3 12.4 12.8 13.2 12 9.14 8.96 12.1 8.6 11.6 10.6 10.2 13.2 10.5 9.24 4.7 10.9 2.91 6.81 11.1 10.4 5.86 6.68 9.63 9.88 10.2 7.58 2.96 4.29 6.41 8.28 11.7 6.56 2.91 9.83 1.24 14.8 3.67 6.8 12.4 13.4 0.86 9.97 2.27 1.4 12.1 10.7 10.7 9.32 8.14 6.55 11.2 11 7.02 12.4 8.88 9.69 11.8 9.38 9.09 4.67 9.83 10.4 9.65 12.2 4.95 7.48 6.56 8.67 5.27 2.86 2.42 2.75 12.2 5.65 2.86 5.39 3.28 13.3 0.35 5.25 7.78 9.5 11.5 2 5.36 10.7 9.78 8.78 9.89 8.66 10.9 2.49 6.79 5.67 13.5 6.48 2.35 0.35 8.22 0 9 1.67 9.53 3.54 12.5 5.48 12.1 8.16 4.95 11 13.8 12.3 10.6 10 9.84 5.14 8.7 10 12.4 10.7 9.74 9.52 9.19 5.89 9.3 8.37 7.19 8.81 10.7 9.33 11 8.31 8.22 11.1 6.47 3.4 9.06 10.4 13.7 11.1 6.7 8.1 1.4 2.61 8.81 7.76 7.52 8.24 6.53 8.06 6.76 11 7.2 9.75 8.78 6.86 11.2 3.5 11.6 1.4 9.33 2.91 7.26 7.05 10.1 7.43 3.15 10.9 7.95 6.6 7.19 7.51 10.2 10.3 8.82 9.2 4.87 12.3 6.11 7.97 11.1 9.84 1.67 8.65 9.17 10.7 10.2 11.1 6.97 1.67 4.64 7.75 3.06 8.25 10.3 9.75 4.29 5.94 3.4 8.28 10 9.89 12.3 10.3 11.1 10.9 8.35 10.4 7.12 5.82 13.7 6.66 5.31 8.02 2.91 10.8 5.17 8.48 2.18 8.47 1.9 12.6 9.36 4.54 10.2 8.3 8.75 11.3 2.97 9.81 8.76 6.43 6.97 7.41 6.31 4.64 7.37 8.68 9.2 12.4 2.42 7.77 6.48 9.84 10.4 11.6 10.2 10.4 7.95 7.38 9.5 8.75 5.1 9.83 10.4 9.3 8.8 2.96 4.87 10 8.34 6.74 4.89 5.46 7.71 0 11.4 2.18 11.2 11.4 5.04 9.37 6.29 9.95 9.84 6.51 9.73 8.68 7.73 10.9 1.24 6.05 5.84 3.6 11.6 3.81 2.49 11.2 9.89 8.26 11.2 10.1 8.47 5.14 10.6 8.76 5.04 9.49 9.97 8.9 9.85 8.23 11.1 8.23 5.72 1.9 4.16 5.22 10.8 10.6 9.58 3.81 10.3 9.9 1.9 2.69 9.98 8.01 8.15 8.18 4.33 8.62 6.85 6.69 9.05 5.22 4.73 3.57 0.35 1.4 8.79 7.72 1.24 10.4 9.82 6.15 10.5 9.45 7.12 7.01 5.11 3.36 7.83 4.27 7.33 6.84 9.1 7.62 0 5.48 6.51 8.57 4 8.55 11 4.05 8.85 7.8 9.75 11.2 8.08 10.4 9.39 10.6 9.51 10.8 9.39 8.64 10.5 8.26 3.7 5.77 1.06 1.54 2.8 6.08 3.84 5.05 12.1 2.86 4.7 6.72 10.9 3.15 7.7 8.05 1.06 11.1 2.09 5.42 0 11.6 10.9 6.09 6.6 11 3.38 0.86 8.29 2.8 10.8 9.72 6.76 5.73 4.77 3.01 2 10.9 8.41 7.2 5.7 3.11 0.35 10.5 5.25 7.69 4.22 3.97 8.09 9.29 10.9 0 10.2 4.07 1.06 5.14 9.83 3.43 6.83 1.67 10.8 2.56 9.52 4.75 6.94 11.5 0.63 2 7.68 10.8 8.6 6.55 10.5 0 7.38 3.5 0 3.11 1.54 12.8 7.75 5.63 6.66 9.45 10.4 12.4 5.22 1.9 8.39 10.5 4.27 1.24 11.7 10.3 9.34 9.82 11.3 8.3 8.92 4.83 7.41 11.8 10.5 6.68 12.1 10.3 9.81 8.26 8.74 11.5 8.62 8.28 10.2 9.07 9.84 11.4 8.52 10.1 8.38 9.67 11.5 8.72 10 10.5 9.75 9.67 7.03 10 5.98 1.06 9.53 12.7 10 7.09 10 7.28 8.35 1.06 10.1 13.7 8.75 6.93 10.3 11 6.34 8.38 8.66 5.22 10.4 9.12 10.8 9.89 8.39 8.9 10.7 7.29 8.49 0.35 9.65 11.2 9.05 6.81 9.52 9.76 7.86 12.8 9.43 8.33 7.2 9.1 7.4 7.39 8.58 10.4 8.6 4.17 6.42 4.56 7.85 8.78 9.96 6.9 9.77 4.91 5.52 7.68 8.86 9.52 9.09 9.69 8.52 8.71 8.77 6.29 2.75 10 8.26 9.86 7.79 5.64 10.4 2.56 10.5 0.35 9.89 8.94 9.21 8.89 10.1 10.7 9.78 9.71 11.1 8.09 8.01 9.61 9.6 10.2 3.6 9.07 11.8 9.23 9.55 8.27 6.39 7.96 1.06 11.4 5.71 9.31 5.62 6.02 10.9 5.21 10.7 9.4 9.1 2.09 7.74 6.31 6.94 2.35 9.75 7.73 6.7 9.68 9.16 9.77 8.26 8.32 8.7 9.29 0.86 10.6 10.7 7.34 9.11 10.3 3.28 11.1 8.76 11.8 11.2 9.06 3.24 10.4 5.86 7.36 13.1 9.28 11.6 4.05 12.1 10.3 6.57 4.31 9.01 8.61 8.92 8.64 7.47 9.94 9.96 7.29 8.77 11.9 10.1 3.66 2.42 7.63 0.35 1.4 3.9 0.63 6.93 6.03 0 6.68 7.97 1.9 2.27 4.85 5.11 6.47 1.9 5.55 2.86 11.8 9.34 3.47 8.92 3.6 0.63 0.35 7.34 11.8 8.93 9.59 9.93 5.58 7.2 4.66 6.33 0 11 7.19 6.11 2.69 3.5 8.49 5.88 3.67 6.5 11.5 8.49 10.9 9.32 6.77 0.63 1.4 5.05 7.67 9.89 5.6 7.27 0.35 3.15 6.15 1.24 5.39 3.95 7.75 4.87 0.63 10.2 6 7.03 5.91 6.67 3.4 0.35 6 4.86 7.5 2.27 6.31 11.3 4.7 10.5 7.31 6.67 8.62 1.4 6.81 8.54 8.72 10.1 10.9 9.45 2.86 2.69 7.39 6.3 10.8 2.86 9 10.7 13.1 5.88 10.2 11.1 9.45 11.7 6.81 8.33 10.6 10.8 9.26 8.48 10.6 9.15 9.71 8.74 7.79 8.76 1.06 11.6 8.05 10.1 10.7 10.4 9.38 3.06 8.54 9.44 1.54 3.32 5.65 8.12 11.2 10.7 11.9 10.9 10.6 8.1 8.54 9.21 11.6 0.58 9.4 11.5 11.2 8.11 7.66 11 10.9 11.1 9.53 5.72 7.53 7.48 8.36 8.54 6.93 8.6 6.42 8.68 10.3 11.3 9.78 7.79 11.7 9.81 9.07 10 8.47 10.8 9.99 8.71 9.2 8.89 12 10.2 8.37 7.92 11.6 10.6 10.2 10.5 1.9 11.7 6.28 13.2 10.8 11.3 10.4 11.9 7.77 10.9 9.99 10.2 12.7 10.9 2.35 12.7 0.86 3.9 10.2 12.3 9.26 12 10 7.21 10.3 6.7 8.07 6.84 14 8.22 11.3 9.97 3.32 9.47 1.4 12 9.41 9.58 16.5 10.2 10.1 13.4 0.86 8.41 13.4 8 7.33 11.3 7.94 0.63 10.7 6.86 11.3 11.1 10.3 9.98 10.9 11.7 8.44 9.45 6.76 11.2 10.1 9.41 9.17 12.1 8.9 9.58 10 9.85 11.1 11.6 11.9 11.1 11.1 11.2 4.05 4.54 0 10.7 10.2 11.9 13.5 6.21 13.5 2 12.1 10.9 12.2 6.77 10.4 11.4 2.56 2.49 5.26 0.35 0.35 2.35 0.35 2.71 12.9 1.95 1.54 0.35 3.83 12.2 12 6.99 9.23 0 3.79 10.4 9.08 9.06 8.3 10 6.82 1.79 6 10.2 10 3.57 5.52 8.1 6.03 10.8 10.2 9.76 8.91 11.1 9.56 8.55 8.35 8.76 9.66 14.6 2.27 10.7 10.7 11.5 6.6 11.9 8.51 10.3 7.91 11.8 9.89 9.56 7.3 9.67 11.4 7.68 10.7 9.49 5.11 10.4 3.01 2 3.92 11.2 1.9 9.59 0.86 3.7 0.35 10.7 8.95 3.2 10.3 7.4 9.48 8.46 8.92 6.14 11.3 5.13 11.4 11.2 9.5 9.39 9.81 8.75 8.35 7.05 9.24 5.04 1.54 11.7 12 11.4 10.6 13.6 8.53 9.45 9.66 2.09 1.06 8.77 9.69 8.64 11 7.77 10.3 7.88 6.53 6.9 8.06 5.27 9.64 9.55 9.56 10.4 2 5.4 8.6 8.9 0.63 0.63 11.8 0.31 9.79 8.43 6.58 10.1 10.2 8.11 8.73 8.46 7.79 10.1 2.35 12.2 7.43 8.14 10.1 9.61 10.4 0.63 11.7 10.4 8.32 11.3 2.49 1.4 11.4 4.09 8.69 4.79 11 11.2 8.72 2.63 12.4 10.7 8.45 8.43 6.68 3.24 9.62 15 3.95 6.93 9.75 0.86 8.47 9.27 0 10.3 3.64 8.38 2.35 7.46 9.23 8.27 12.2 10.3 8.12 10.6 2.18 11.6 1.9 10.2 3.81 10.3 9.97 7.14 6.34 6.57 1.4 10.9 10.3 0.35 11.9 10.3 7.95 11.8 4.46 12.6 1.24 9.32 12.5 10.9 9.62 11.3 4.94 5.85 9.08 2.18 10.7 8.1 0.35 9.77 11.3 10.2 9.58 7.33 7.77 12.5 13.7 12.1 1.54 10.8 11.4 8.47 11.1 12.4 2.86 9.96 9.3 9.72 9.19 4.98 13.4 11.9 7.3 8.85 8.13 8.92 16.5 14.1 7.17 7.08 10 11.3 10.4 10.3 9.94 10.1 6.43 9.64 14.8 11.4 6.53 8.12 5.73 1.4 11.5 12.5 10.5 12.1 8.71 11.8 10.8 4.44 4.61 6.09 4.12 11.7 0.63 12.8 10.5 11.4 10.9 6.61 2.75 5.4 11.5 8.82 10.4 9.68 10.3 11.4 3.6 9.07 9.2 10.4 11.9 1.4 13.7 12.2 8.79 9.43 12.7 12.1 10.8 9.9 11.2 11 15.5 0.45 13.8 8.57 10 13.9 8.53 9.09 7.8 7.96 7.61 9.6 14.4 0.35 12.1 10.2 11.3 8.19 2.86 8.14 3.97 4.2 2.56 9.12 8.81 7.09 2.56 1.93 10.1 9.82 10.9 1.4 10.5 1.67 9.36 11.5 10.5 9.36 4.22 10.4 9.91 9.53 10.6 11.7 9.19 5.6 8.21 3.36 6.91 9.3 9.11 7.46 4.02 2.63 4.56 7.5 10.2 9.71 10.7 4.22 4.69 6.36 6.3 7.25 2.86 7.68 7.31 3.2 5.77 9.5 10.3 4 8.76 0.63 3.4 7.33 13.2 6.31 6.63 3.81 6.41 7.71 7.5 2 9.18 1.4 7.63 6.89 7.34 2 4.78 9.01 5.51 4.36 13.8 3.67 7.88 0.86 4.82 0.63 2.75 2.18 6.52 3.24 10.3 1.9 2.35 9.75 4.96 9.01 4.53 5.4 4.24 2.35 3.24 3.06 3.79 5.48 7.74 4.29 1.4 3.92 4.02 2 5.43 5.25 4.53 1.67 7.44 11.1 8.44 1.06 8.6 1.54 5.41 11.2 5.24 7.49 2 8.41 10.4 1.79 0.63 4.31 9.48 6.59 8.66 4.12 7.84 0.35 8.33 8.17 7.62 12.8 7.85 7.12 6.34 8.35 4.93 6.06 4.47 11.8 1.67 10.5 2 12.8 0 14.1 15.2 12.7 1.24 10.8 9.56 9.52 8.22 10.3 11.9 9.92 9.55 10.1 10.4 10.5 11 2.35 11 10.6 11.7 8.53 10.2 9.43 10.3 10 11.8 9.76 7.96 10.6 3.36 11.5 4.36 9.43 4.76 9.58 9.37 9.03 10.7 8.62 6.04 9.16 8.99 10.3 10.6 11.4 9.04 0.86 10.8 1.24 11.5 13.1 12.8 10.8 10.8 10.8 9.58 9.45 11.2 8.97 1.4 10.7 11.3 8.18 9.12 11.2 10.7 8.69 10.2 8.79 12.1 10.8 12.7 11.8 10.1 10.8 7.85 8.85 11.5 5.79 1.67 9.39 7.69 15.2 15.2 3.15 3.25 9.61 5.22 3.32 7.19 6.93 7.43 5.55 3.06 8.39 11.5 11.1 8.86 10.6 12 9.72 10.4 8.27 7.88 8.14 9.1 9.72 9.67 7.95 3.47 3.81 10.6 1.06 1.4 7.05 0 4.36 4.27 5.35 4.59 2 9.67 7.87 0.86 10.6 1.06 3.2 0 2.35 7.3 11.6 5.03 10.3 6.26 11.3 9.72 3.5 7.36 7.2 9.44 12.3 9.12 10 9.7 12.9 7.58 13.9 11.9 12.2 13.5 8 11.7 14.1 6.12 13.3 8.57 9.55 8.22 6.85 9.42 9.08 8.22 8 6.23 12.4 8.11 9.3 6.98 7.15 7.47 7.04 7.56 7.18 6.45 7.39 9.83 9.08 8.18 10.4 7.1 8.92 6.03 9.05 9.95 10.2 6.98 9.32 8.44 7.69 7.8 7.98 8.23 7.5 6.14 11.6 4.81 1.54 6.6 7.45 7.72 8.35 7.58 9.69 6.39 4.15 9.49 4.02 5.95 7.71 8.42 0 1.67 5.21 6 5.55 11.7 6.06 3.28 4.38 3.7 1.06 5.5 4.64 9.94 8.32 7.17 8.35 7.1 7.56 7.54 5.74 6.83 8.43 7.33 5.9 9.24 7.83 10.4 7.25 9.86 10.5 10.3 9.01 12.1 6.33 6.96 1.79 10.8 5.53 10.9 7.77 7.35 3.4 5.67 2.91 6.31 7.76 7.61 9.28 0.35 7.5 8.81 8.26 7.34 8.1 5.56 9.79 7.31 7.55 7.86 8.67 11.1 4.14 9.34 9.63 6.23 4.58 11.8 11 6.27 7.55 6.04 7.89 0.35 7.4 5.83 7.43 6.16 6.49 8.14 7.84 2.86 0.86 6.49 7.08 8.23 5.37 12.6 10.2 9.66 13.3 10.2 11.3 4.72 12.9 3.78 13.1 8.22 10.4 6.03 6.57 12.8 12.3 9.23 9.15 10.4 9.28 12.9 13 3.67 3.2 8.58 12.2 8.7 3.11 9.51 10.6 11.8 11.1 10.4 9.88 11.1 13 8.75 6.14 8.94 2.35 10.6 9.88 7.18 6.85 7.75 10.2 10 3.95 10.4 5.2 4.87 5.44 10.1 2.69 11.2 10.3 8.95 10.3 8.5 8.81 11.6 9.59 8.91 4.51 10.1 8.54 8.31 3.87 8.21 10.8 8.19 4.12 15.6 10.3 6.84 7.26 8.34 9.9 8.97 9.71 10.1 7.51 10.3 11.1 6.71 10.1 6.21 9.76 11.8 8.88 9.16 8.38 9.48 8.8 10.8 10.1 11.2 9.09 8.14 6.88 11.3 5.83 4.72 10.5 6.9 9.23 9.13 9.3 12.3 9.93 10.1 6.35 10.7 9.36 7.91 5.05 3.4 10.6 8.06 9.73 8.76 8.07 10.7 10.9 10.2 9.34 7.58 8.4 8.27 11.9 11.2 6.32 9.9 10.6 13.6 9.61 8.33 8.09 5.93 9.88 9.25 4.38 8.17 9.45 6.71 8.42 10.4 7.87 12.5 9 7.89 1.24 7.77 7.98 12.4 10.6 10.6 5.98 2.91 8.76 8.07 7.98 7.56 8.4 9.03 10.3 9.04 8.64 2.49 12.7 11.7 11.8 10.2 11.2 9.45 8.85 7.64 3.51 9.53 1.4 1.79 0.63 10.6 6.66 10.6 10.4 7.7 1.9 4.33 1.24 8.04 0.35 9.11 9.25 0.86 4.22 8.05 11.4 9.48 7.71 3.4 11.1 7.91 10.3 5.88 2.42 6.71 2.87 11.7 8.47 6.94 2.69 9.13 11.6 7.23 8.62 8.06 9.31 10.1 8.37 7.7 10.6 12.1 9.51 10.3 9.19 10.2 9.33 7.68 6.64 10.7 11 9.74 9.32 8.24 6.63 6.5 9.93 7.5 8.49 4.64 6.26 8.13 9.49 11.3 9.08 1.06 7.56 8.16 3.73 8.96 6.67 8.93 2.8 8.1 7.99 5.66 9.58 8.39 8.14 10 9.43 9.93 7.51 5.12 7.51 9.83 8.51 8.8 9.04 10.4 10.4 7.81 10.8 7.16 8.49 8.25 8.62 10 6.92 7.96 9.31 10.9 8.7 5.18 8.89 7.61 8.68 10.1 10.4 8.42 8.77 7.88 8.8 8.91 8.33 5.23 7.64 7.51 9.64 7 7.04 9.04 9.13 8.4 7.63 9.41 7.28 8.09 9.45 9.48 7.55 8.64 9.1 7.31 11.2 7.84 9.57 8.04 8.06 9.71 10.4 9.92 11.5 9.9 10.7 0.63 6.08 11 6.32 10.1 8.09 8.13 7.11 8.97 2.18 6.42 9.98 7.54 8.8 5.73 2.26 6.98 6.75 8.66 8.27 0.35 10.4 2.09 9.51 7.99 7.95 10.4 1.4 8.13 7.98 6.06 7.46 10.6 10.8 9.71 7.89 9.7 5.87 8.11 8.72 9.44 8.77 6.77 8.66 9.3 2 7.81 11.4 9.23 5.17 10.5 9.94 9.37 10.4 9.89 8.72 7.76 8.99 7.48 4.2 1.24 9.04 5.34 7.1 7.75 6.97 10.8 8.72 10 7.93 5.93 1.67 9.16 6.72 7.55 9.35 2.49 5.72 6.44 5.12 5.44 8.08 8.94 7.67 7.21 9.5 6.99 9.9 6.12 11 7.38 5.95 9.74 8.07 5.08 6.56 3.4 6.13 7.76 6.98 7.07 8.57 8.1 7.52 4.05 0.35 4.31 7.68 2.8 9.07 2.18 5.91 8.41 7.65 2 6.03 10.5 8.25 10.4 4.7 7.05 8.67 7.81 9.86 8.54 9.63 10.3 5.91 8.36 9.72 2.56 8.66 10.8 8.45 10.2 10.8 9.95 7.66 9.81 10.2 9.55 6.4 8.04 7.95 6.51 7.86 9.88 9.31 11.4 5.16 7.46 0.86 10.2 8.18 7.89 5.25 7.73 8.09 10.7 8.06 1.24 9.95 7.74 4.63 5.26 6.64 7.56 2.63 11.2 1.9 9.56 5.74 4.58 10.8 10.1 5.59 7.4 8.11 3.19 9.83 0.86 0 8.54 5.25 9.73 5.6 9.84 6.04 11.2 9.89 5.38 10.9 5.41 8.08 7.76 9.73 5.24 6.75 2.86 8.55 7.98 7.72 9.24 8.92 8.69 7.38 8.68 9.19 4.22 10.4 4.02 12 3.06 4.47 8.47 9.46 7.78 8.47 7.32 5.06 7.28 10.6 10.9 8.18 9.51 11.4 8.82 8.83 8.33 8.2 11.6 10.5 10.7 8.45 8.94 8.43 3.24 3.11 4.27 5.55 6.68 6.53 8.6 1.52 4.38 4.31 1.79 7.5 10.1 13 5.34 7.11 11 7.46 2 0 9.19 7.89 4.56 6 8.74 7.67 8.65 6.37 10.2 9.02 9.85 9.69 10.6 10.7 8.97 12.8 9.21 8.92 8.8 9 5.04 12.3 6.56 9.54 7.78 6.87 8.46 5.36 6.01 9.51 6.08 9.29 7.81 10.4 9.46 9.78 9.32 8.98 9.06 10.1 9.96 10.1 9.38 9.75 10.7 9.25 10.9 8.06 10.7 8.96 8.75 6.74 10.5 9.59 8.27 9.76 11.4 8.33 8.97 10.7 10.1 5.86 10.8 10.5 7.2 6.26 3.57 8.75 10 9.19 3.92 9.31 7.65 6.04 9.19 9.08 11.3 9.72 9.44 4.16 11.6 9 11.8 8.56 10.3 10.6 9.82 7.26 9.35 8.65 5.17 9.32 12.3 10.1 7.29 5.22 7.88 8.37 10.2 6.31 6.04 5.27 9.64 6.5 8.67 9.21 4.16 3.57 1.9 11.9 1.06 4.73 12 7.74 4.8 7.58 7.97 11.3 6.44 8.68 11.6 9.3 1.67 9.87 4.16 9.57 5.81 5.07 11.3 10.2 13 9.08 6.34 9.05 11.6 6.2 10.4 4.18 5.71 11 7.51 7.11 11.5 7.98 10.4 0.35 13 8.17 0.35 4.44 7.7 6.62 8.08 9.64 2.75 5.62 4.33 2.49 7.51 11.3 8.59 5.92 9.82 8.93 8.2 7.71 11.3 6.61 11.4 13.6 9.37 12.4 11.3 12.8 7.57 8.24 8.48 7.37 8.72 6.51 9.92 11 10.3 6.44 8.38 2.49 11.6 10 8.73 10.5 8.48 10.1 5.24 5.79 7.14 3.58 10.8 7.8 8.39 9.64 3.79 2.49 10.5 13.7 8.61 2.09 3.95 5.34 5.77 8.41 7.98 7.74 11 11.1 14.1 4.82 5.63 0.63 6.27 4.73 11.2 11.4 10.6 5.1 4.85 8.4 11.6 9.72 9.83 2.8 6.58 0.86 4.49 11.6 6.43 9.2 10.5 8.61 12.5 9.36 5.81 6.94 9.24 9.35 10.4 6.06 10.7 9.35 9.46 8.74 9.04 8.83 9.91 7.82 9.93 9.75 11.8 0 8.16 7.76 8.94 8.77 8.68 8.76 9.2 3.28 9.82 8.81 7.16 11.4 10.2 10.5 3.57 8.93 10.5 8.48 3.54 9.74 9.73 8.87 1.4 7.83 12.3 11.1 5.8 4.07 10.3 5.28 8.82 10.6 5.12 11.8 11.4 10.6 11.4 11.3 9.36 6.05 11.9 9.92 0.35 10.7 8.48 0.35 10.1 8.49 3.87 9.47 7.18 9.04 4.35 6.78 3.47 9.2 4.14 9.43 9.45 9.94 9.28 8.9 8.95 9.5 4.87 10.9 9.17 10.1 10.2 6.03 8.78 8.68 12.5 9.62 8.99 11.4 10.9 9.11 8.53 1 8.97 8.65 1.55 9.82 9.01 7.5 8.72 0.63 3.28 5.42 9.27 9.89 4.42 10.2 10.5 5.6 11.2 13.6 9.24 10.4 6.9 13.7 8.92 1.67 8.82 8.9 9.37 8.96 13.5 7.75 11.5 11.3 12.3 10.2 10.9 10.6 9.98 13.6 9.36 7.91 9.99 7.86 7.57 9.63 1.67 7.1 1.67 11.2 11 7.95 6.13 8.56 0.86 11.2 11.5 12.1 10.3 8.45 12.2 8.23 10.5 7.88 11.4 9.21 6.73 3.43 12.1 6.49 12.6 11.4 8.96 7.52 9.3 3.06 2.69 9.16 2.69 0 0 9.78 1.24 7.42 1.4 3.06 6.64 8.83 0.86 1.9 2.49 2.69 0 0.35 6.85 2.35 9.56 11.9 10.8 8.04 6.59 4.02 0.63 7.93 11.5 7.47 0 8.88 4.48 6.55 8.77 4.05 4.31 5.76 8.16 11.1 7.55 0.35 6.72 9.29 9.68 8.87 10.1 1.06 3.26 0 3.43 7.32 0 2.8 8.27 13.4 9.54 8.9 8.91 9.88 0.35 9.85 0 1.4 0 0 10.3 7.46 2.91 9.44 8.51 6.17 7.34 8.78 0.35 10.4 9.95 12 9.19 7.17 0.35 4.42 8.87 12 10.1 0 7.66 11.2 8.78 7.27 7.93 4.85 1.24 5.49 12.2 0.35 10.3 10.1 9.35 0.63 7.19 11.1 9.2 6.29 9.35 10.1 0 1.4 9.56 9.66 7.25 8.07 9.84 9.22 7.03 8.58 9.58 10.5 6.04 1.06 3.64 7.93 3.67 6.61 10.6 9.78 9.69 5.9 9.93 10.3 2.18 11.1 8.08 9.73 9.63 9.95 0.86 5.91 5.83 8.44 2.86 2.05 8.8 5.89 7.8 6.95 7.71 8.18 10.3 11.1 5.88 9.23 7.61 5.16 9.72 4.76 3.73 0.35 9.45 0.35 3.84 5.15 1.67 0 2.42 7.52 10.8 8.31 2.86 9.8 9.73 7.12 9.25 11.9 6.8 10.4 9.97 7.62 8.27 7.45 7.73 7.9 6.92 0.63 8.52 11.4 8.41 8.87 4.76 10.9 12.5 8.96 8.46 8.02 0 3.47 9.5 0 9.13 9.01 2.86 8.7 11.9 8.23 9.45 9.37 10.3 3.6 8.68 1.24 8.92 3.01 4.18 8.01 10.9 8.63 0 8.95 9.84 9.73 6.95 7.76 13.2 4.85 5.07 0.86 1.4 5.75 6.45 9.43 10.7 9.93 9.49 5.41 5.32 7.89 9.51 3.01 9.42 6.33 4.38 8.69 8.43 7.91 6.17 9 8.73 8.59 7.54 8.43 9.91 7.06 8.6 9.72 9.17 7.2 8.58 6.37 7.03 5.76 8.95 9.86 1.06 9.05 7.79 10 6.43 10.7 8.72 10.4 9.42 8.06 11.1 11.3 7.44 8.86 7.29 6.61 7.84 6.54 10.6 7.37 7.92 8.66 9.83 0 0 6.82 9.55 11.3 9.52 4.85 8.75 3.32 5.94 6.84 6.32 6.68 9.23 6.07 0.63 4.4 8.16 8.01 8.33 4.61 7.97 7.97 11.4 11.4 7.48 8.03 5.86 7.66 9.34 9.48 8.17 10.6 10.4 1.06 10.9 6.43 4.14 6.38 8.36 9.85 10.6 4.58 7.41 8.71 8.56 8.94 10.3 8.52 8.98 10.1 8.91 9.17 8.93 9.55 8.56 10.9 8.25 9.01 9.9 5.61 9.66 9.14 3.79 8.74 11.5 9.06 6.47 8.97 7.15 9.34 8.74 8.84 9.77 7.09 8.17 0 8.39 10.3 7.86 8.61 5.83 8.74 10.5 8.27 9.8 5.83 9.66 8.87 9.35 9.16 6.22 8.13 9.67 0.86 10.6 10.2 6.53 11.1 8.78 7.51 9.71 9.96 7 8.04 8.61 8.86 9.78 9.67 6.63 7.73 8.09 7.51 10.2 2.27 10.1 9.12 10 9.91 9.8 7.49 9.06 9.74 9.64 3.95 10.5 10.7 8.13 9.15 9.62 3.73 8.68 4.22 10.5 4.49 11.3 7.72 9.83 8.43 8.47 8.65 4.22 6.41 10.2 8.96 9.41 10.9 7 10.8 7.43 6.93 10.2 9.45 8.97 6.67 8.35 6.5 8.37 8.93 10.2 8.39 3.32 0.35 3.01 7.71 9.62 8.98 9.92 7.27 5.94 6.47 10.5 7.81 11.2 7.23 10.7 5.4 4.91 8.1 10.1 7.98 10 5.79 6.69 8.31 7.24 9.08 10.2 5.5 10.1 5.36 7.11 10.5 5.76 9.32 8.42 11.1 6.89 8.81 9.45 2.27 11.5 7.63 8.37 6.43 8.04 10.9 5.32 10.9 10.1 10.3 6.13 7.65 1.9 4.66 8.08 5.91 4.05 11.8 9.53 7.28 0.35 5.26 7.38 9.19 10.3 6.44 3.36 8.01 11.5 4.59 4.76 1.06 2.27 9.21 12.3 7.54 10.1 10.5 7.04 8.23 7.95 9.69 6.29 0.36 7.57 9.51 11.5 2.09 6.27 6.87 6.12 4.89 6.45 2.86 10.9 10.3 0.63 2.18 8.6 8.78 8.96 7.1 3.57 10.3 9.99 5.85 6.08 12.3 8.94 10.9 3.84 5.97 4.05 4.27 11.2 8.85 6.99 8.71 7.78 10.1 7.14 6.42 8.22 7.49 3.95 6.93 7.26 9.37 12.3 6.87 8.07 5.94 7.98 8.89 9.07 7.53 7.62 6.98 6.43 8.98 9.11 8.05 6.47 6.13 1.4 8.25 9.67 9.75 6.27 7.91 10.1 3.95 8.25 4.47 4.27 6.95 9.65 12.4 6.92 8.02 0 3.36 8.16 1.67 7.22 6.95 9.08 8.36 8.72 8.26 7.14 9.37 9.71 8.98 6.74 1.4 3.15 7.9 7.13 10.8 8.87 8.4 7.9 8.45 8.81 10.4 9.98 8.85 9.42 0 9.79 10.3 5.3 9.21 9.71 10.1 9.25 8.67 10.4 6.97 9.66 9.15 5.45 7.23 9.06 8.25 8.75 8.8 6.43 8.72 8.74 8.84 5.55 10.7 8.73 10.8 2.42 6.75 8.77 9.03 7.08 8.89 11.7 8.97 2.49 9.2 7.47 9.31 7.13 8.71 9.12 8.91 7.16 9.67 5.3 6.95 8.58 3.4 8.43 8.28 7.37 7.63 9.22 9.45 3.32 9.02 1.4 9.53 7.95 7.34 7.63 7.52 12.9 3.11 7.3 10.2 7.23 8.5 9.76 4.46 4.4 9.48 7.9 10.1 9.11 5.46 10.4 7.76 1.4 6.67 0.35 7.62 10 10.6 3.33 2.8 9.84 9.92 9.77 7.02 10.3 5.76 8.02 9.2 0.35 5.52 8.46 8.37 10.5 7.52 6.75 12.4 8.49 8.13 7.87 8.18 7.6 9.06 8.49 9.07 6.78 8.42 11.6 9.05 5.41 3.54 9.7 2.49 5.9 8.7 9.47 9.89 8.88 4.91 8.77 0 7.96 9.16 7.08 8.62 8.03 1.4 8.48 0.63 9.75 7.99 12.4 8.76 8.43 1.82 7.11 1.67 4.02 9.42 4.46 8.45 2.69 8.96 9.87 9.68 9 9.34 9.24 9.45 0.63 8.96 5.62 5.04 9.61 10.3 11 10.4 7.02 10.7 9.91 10.8 3.01 5.82 6.83 2.09 9.68 10.4 4.46 13.1 8.79 9.71 9.63 6.31 8.87 10.2 7.63 7.98 5.55 10.9 9.82 9.8 9.05 2.86 11 9.07 9.9 7.94 10.4 7.67 9.24 8.65 8.16 10.9 9.26 2.69 5.42 10.5 12.2 7.27 6.5 8.32 6.54 0.35 3.81 9.33 4.58 4.14 13.5 8.06 9.48 7.23 4.79 11.2 8.48 10.7 10.1 9.06 7.9 9.84 12.2 10.3 8.71 8.91 8.91 10.6 5.72 9.78 10.7 8.98 9.49 4.89 7.48 10.6 7.86 9.43 6.83 1.06 5.44 9.06 9.5 9.33 7.58 10.4 1.9 6.12 9.17 9.28 8.68 11.2 3.73 10.2 3.9 3.01 9.87 6.6 8.89 7.55 9.75 1.79 8.61 6.64 0.86 8.74 4.96 3.15 8.97 11.8 10.1 9.14 6.86 9.02 8.91 4.6 8.23 6.14 9.42 11.3 7.21 10.2 9.58 9.6 11.2 5.85 7.86 11.6 10 11.3 8.93 12.3 11.6 7.14 11.8 11.1 11.1 11.3 11.6 9.89 9.95 10.7 10.2 11.5 8.1 10.6 7.78 8.2 10.7 9.14 8.23 11.3 11 8.96 8.16 10.8 9.62 8.92 9.33 6.25 11.4 1.56 10 9.51 9.68 8.59 9.39 4.73 1.24 12 9.06 9.81 9.73 8.9 5.66 11.8 12 11.1 10.2 11.4 9.68 7.51 7.69 6.59 11.1 11.1 9.66 8.25 11.7 4.66 9.75 8.13 4.56 3.9 13.1 10.9 13.6 7.97 3.01 1.79 0.35 8.98 10 11.2 12.3 10.5 11.6 12.4 11.2 11.2 8.15 7.52 9.59 10.2 9.17 11.8 9.08 6.37 8.77 5.2 10.5 3.43 1.54 4.14 4.56 7.77 4 8.74 9.69 11.4 7.01 8.66 9.54 3.5 6.93 11 11.3 9.95 11.1 8.85 4.4 6.79 1.79 1.24 9.58 8.64 6.17 11.3 10.4 1.9 10.4 6.12 3.64 6.65 1.67 12.5 6.69 12.1 9.16 12.3 7.72 8.1 7.9 8.96 9.3 6.36 7.73 10.4 6.61 1.67 4.7 9.52 12.1 5.71 8.96 11.5 7.74 3.31 12.7 9.28 7.36 9.53 9.22 3.15 10.4 1.54 8.13 9.95 3.79 9.25 8.85 8.61 8.11 9.72 7.53 9.24 10.1 8.84 6.17 11.3 8.68 13.8 10.9 10.3 10.2 9.03 8.94 8.83 10.2 11.6 10.5 9.13 9.12 8.55 9.42 10.1 9.85 10.6 10.1 10.4 10.2 10.1 0.35 4.24 0.63 11.1 8.6 10.3 10.7 6.36 1.24 6.4 9.29 3.28 5.89 10.1 0.63 9.09 8.28 9.46 9.23 10.8 10.7 6.6 6.86 1.76 9.45 10.4 11.5 9.97 11.1 8.68 8.62 9.9 12.6 8.23 6.98 11.6 9.3 10.4 0 0.86 2.18 11.4 6.77 3.06 9.56 7.89 11.2 6.08 0 9.35 9.22 7.72 5.97 9.18 9.7 4.12 6.22 2.09 4.29 2.96 2.42 9.34 8.37 8.68 9.21 11.5 8.43 9.23 2.56 9.97 8.45 8.84 6.85 2.48 8.41 1.42 0.86 7.43 4.85 7.7 10.8 8.13 6.1 9.39 11 11.6 8.42 0.35 12.4 10.1 11.2 8.83 10.7 4 9.87 8.69 8.5 7.23 8.47 6.03 10.1 10.8 12.3 4.18 3.4 5.63 8.69 5.58 9.9 10.8 3.2 9.94 9.98 10.1 2.91 9.65 11 7.45 4.98 5.37 6.59 2.42 11.6 10.9 8.61 9.54 8.76 8.75 13 6.14 0.35 6.45 10.6 6.14 0.86 2.91 4.18 7.94 11.9 9 9.17 6.23 3.11 5.76 6.47 6.56 11.1 10.1 7.12 8.42 9.84 8.4 7.14 6.48 8.4 8.99 8.27 3.6 5.57 6.85 9.59 12 7.92 8.95 3.08 10 6.35 6.9 9.92 10.1 8.75 11.7 8.85 6.87 5.43 9.3 11.2 9.68 9.24 13 7.91 8.51 6.4 2.69 9.91 5.07 10.1 10.2 9.17 6.76 7 10.6 7.05 6.92 9.58 6.2 2.48 8.38 10.2 10.6 5.88 11 7.07 8.96 9.94 7.16 7.95 1.06 4.95 7.93 6.95 10.9 10.3 7.74 8.51 6.98 8.03 8.05 8.14 8.68 8.99 4.31 4.09 6.64 9.71 6.1 10.3 6.43 9.72 8.63 8 7.74 3.06 13.1 8.44 10.3 7.2 8.89 11.2 5.78 8.73 9.48 7.28 6.95 9.58 9.8 1.54 12.3 10.6 6.36 9.92 8.82 4.48 0.86 11.4 10.4 11 10.3 9.34 5.51 9.44 9.74 8.85 3.32 9.85 5.1 7.86 9.27 8.55 4.44 10.8 10.7 9.94 9.67 9.74 8.49 10.5 8.3 8.21 9.42 7.28 9.33 5.09 5.75 9.99 10.7 8.45 9.45 5.26 7.95 6.78 8.68 11.6 7.25 7.77 9.3 7.29 0.63 0 6.48 6.27 6.82 11.1 9.83 10.4 11.7 6.08 11.2 9.75 3.73 8.89 9.26 7.77 11.6 9.1 7.72 6.58 10.8 10.4 11.4 11.8 9.75 5.49 1.79 3.15 3.2 10.5 8.55 0.63 6.23 9.16 8.18 10.7 8.2 10.7 10.2 6.36 9.09 8 10.6 9.11 6.3 8.67 6.33 7.74 7.75 12.7 5.48 10.1 10.4 1.9 10.3 11.4 9.02 9.48 0.86 9.95 7.47 9.19 9.29 7.44 6.61 7.02 9.23 2.69 9.03 10.2 10.1 3.01 9.71 9.71 8.66 8.95 4.12 9.7 5.6 6.92 0.63 9.47 8.2 9 7.5 3.76 12.3 6.88 10.6 14.6 5.86 9.73 11.4 8.37 6.13 6.2 7.78 9.25 6.78 6.53 5.75 10.7 10.4 8.38 7.34 6.91 4.29 10.8 9.78 8.59 9.77 8.83 9.4 7.11 4.27 10.7 7.48 7.67 8.94 10.1 9.76 7.4 9.47 9.37 9.71 9.46 8.21 9.53 10.4 5.64 7.48 9.17 5.73 6.41 6.15 11.2 0 9.91 3.64 8.32 8.89 7.47 1.67 6.61 8.45 11.5 6.39 8.16 8.02 7.37 11.5 9.81 10.3 8.62 7.33 9.27 11.9 11.2 5.37 7.94 7.46 8.82 8.92 3.06 9.48 10.1 9.8 10.8 8.16 8.65 6.33 10.4 8.81 11.1 8.84 10.3 3.76 8.61 10.3 8.83 9.04 2.35 8.88 8.91 6.14 8.96 6.38 1.79 6.29 6.29 7.49 2.27 10.1 4.05 8.39 11.2 3.97 11.1 9.68 7.73 4.83 9.55 6.78 6.03 7.02 6.73 13.4 9.77 10.9 0 8.86 10.8 8.98 7.27 10.6 8.75 1.9 7.79 8.38 0.63 8.85 10.5 7.85 1.06 11 9.08 5.92 8.3 7.99 6.07 9.48 12.6 9.31 7.71 11.5 8.81 3.67 7.88 9.87 7.08 9.05 9.95 11.6 7.4 9.3 9 9.68 6.31 11.1 8.68 10.2 10.4 8.09 7.69 9.54 9.66 10.1 7.79 9.47 3.79 10.5 11.5 9.49 9.25 4.99 10.7 12.4 7.66 2.91 9.64 9.43 3.24 9.92 7.37 9.61 11.4 11.4 4.09 8.61 9.88 8.52 7.88 6.26 3.7 10.8 12.2 7.34 5.82 10.3 10 9.05 3.24 7.89 0.63 2.18 8.09 8.93 10.6 8.12 5.24 5.76 5.69 9.62 8.84 3.01 10.4 8.82 11.1 8.69 10.9 6.63 2.91 10.4 9.52 8.54 10.6 5.11 10.8 9 10.2 10.5 2 10.4 9.2 9.12 10.1 8.08 9.73 8.98 7.23 9.33 6.28 0.35 13.5 9.59 8.56 9.78 7.51 9.42 11 9.65 0.63 11.1 9.29 11.2 5.05 0.35 11.4 13.5 0.35 9.74 7.23 9.56 8.77 10.4 1.06 6.73 3.06 5.26 5.44 6.24 6.8 9.57 11.4 9.58 0 12.3 8.14 9.9 9.11 3.4 7.83 9.22 10.6 6.01 1.55 9.47 9.55 9.03 11.8 9.69 12.1 8.18 8.81 10 11.3 10.9 0.35 8.39 10.8 2.63 10.1 0.63 8.02 1.4 7.39 5.7 10.8 8.36 9.65 3.6 8.44 9.52 11.2 1.24 5.77 6.43 9.13 8.55 6.98 9.89 11.3 6.75 6.01 7.61 7.27 5.24 11.3 3.81 4.27 2.09 6.48 9.42 9.53 7.04 9.3 9.57 1.79 9.06 8.21 3.2 8.44 8.77 10.9 8.73 9.85 11.9 9.05 8.23 8.31 6.14 9.32 1.9 11.5 7.58 2.91 11.3 7.96 8.25 5.17 9.64 7.25 11.6 7.21 5.99 10.7 8.67 1.24 5.74 6.42 3.24 6.42 0.63 9.22 5.93 9.25 7.53 7.76 7.83 10.7 16.1 10.3 2.8 11.2 7.57 8.2 8.8 7.83 9.15 10.1 7.93 6.95 9.29 6.1 9.52 9.16 8.24 8.26 9.04 2.91 10.2 8.58 10.6 8 10.2 9.01 9.13 11.4 8.51 9.31 6.72 9.28 6.72 8.72 8.49 6.55 7.73 9.66 10.6 12 4.2 8.86 8.22 5.66 1.06 12 11.9 11.6 9.02 7.22 6.05 7.14 11 12.4 10.5 10.5 10 0 12.6 11.1 12.4 7.22 4.46 11.5 8.47 10.2 10.8 9.74 10.9 10.2 12.1 10.4 9.55 7.03 10.2 7.48 8.38 8 8.64 9.43 8.51 10.6 9.18 8.78 9.22 3.2 9.5 8 11 11 10.9 10.8 11 9.25 10.1 11.7 9.41 8.45 9.71 4.25 8.45 11.3 12.4 10.5 8.21 9.46 8.36 9.49 10.4 7.44 10 12.5 9.03 9.05 10.8 5.31 8.54 11.8 6.88 10.4 8.4 12.4 10.1 6.59 12.5 12.7 8.55 0.86 11.1 10.6 11.9 8.46 10.1 9.81 9.94 10.7 8.21 11.5 11.7 10.3 6.84 11.3 9.74 9.34 11.7 4.29 4.27 0.86 10.4 5.54 7.74 11.4 5.07 0.35 7.71 8.84 5.89 9.8 10.4 8.32 11.3 9.27 9.12 8.9 9.96 9.17 10.2 9.12 8.12 9.47 7.49 10 10.1 8.33 8.61 9.84 8.31 8.13 10.9 14.1 11.2 6.67 10.7 10.9 9.62 11 6.68 11.7 14.5 9.9 2.49 11 9.73 9.81 9.71 8.2 9.34 9.3 10.1 13.5 8.23 10 10.3 9.39 10.8 12.2 6.85 9.91 11 9.19 11 9.01 10.2 8.83 10.3 8.77 8.27 11.3 7.1 6.47 6.4 6 10.2 9.08 12.5 8.99 2.27 8.92 3.4 12.5 6.94 9.59 9.95 8.45 4.31 9.27 3.43 6.52 9.65 16.3 4.58 3.36 9.76 11.2 9.84 11.3 10.4 5.55 10.1 9.91 8.55 10.4 7.7 8.05 10.9 7.63 8.32 10.5 5.87 13.3 10.7 9.3 8.17 11.6 8.17 10.4 9.5 14.1 7.97 8.86 6.78 8.44 8.51 10.1 8.26 10.8 6.02 13.4 10.4 9.22 9.32 11.3 7.85 4.29 13.8 8.95 8.68 11.8 11.1 10.5 10.7 11.5 10.5 11.8 3.81 9.93 8.59 12.2 6.71 11.7 10.9 7.51 1.67 9.7 8.98 10 10.4 9.9 10.4 9.56 6.25 10.5 12 6.44 9.68 13.5 11.6 12 11 10.8 2.49 12.2 9.26 10.3 11.5 9.16 10.7 7.52 10.3 9.44 9.16 10.2 9.73 9.25 5.3 9.35 10.6 7.82 10.3 8.1 4.59 10.4 8.19 4.18 3.9 3.28 8.04 6.75 10.2 10.1 6.84 7.74 10 6.82 8.36 10.2 9.74 10.1 8.87 8.88 10 10.2 8.75 7.83 3.95 9.39 10.6 9.45 7.19 10.1 11.3 8 8.52 8.21 11.1 12.1 9.61 10.9 10.5 8.83 9.17 9.74 9.04 11.3 10.2 9.82 9.4 7.3 9.53 10.8 11.3 8.44 10.6 11 10.7 9.22 11.1 1.67 8.2 9.97 9.83 9.25 9.37 11.4 6.19 5.05 6.28 9.35 10.2 10.4 9.69 11.1 9.24 9.34 11.4 10 4.54 7.13 6.12 7.63 9.9 3.73 10.4 9.79 10.5 11.1 11.3 12 10.4 9.39 10.2 8.93 10.8 11.9 2.09 10.3 4.91 10.7 8.13 4.82 9.97 9.04 7.9 9.35 10.5 9.66 4.95 7.87 7.28 11 7.28 7.75 13 8.68 0.63 9.82 2.49 5.46 10 11.3 9.4 9.77 8.41 14.4 9.71 6.76 3.87 11.3 10.1 10.7 9.67 3.61 9.69 9.43 10.1 6.74 9.65 12.2 9.52 7.76 6.71 8.35 11.7 9.7 10.3 10.6 10 11.4 2.91 11.9 7.81 9.61
-TCGA-BR-7704-01 5.6 9.15 4.99 7.1 6.4 8.53 1.12 3.62 0.04 -0.16 1.4 8.56 5.75 4.4 -0.1 9.86 10.2 10.7 12.4 9.32 7.96 6.25 9.78 2.71 9.43 7.62 2.53 9.1 4.24 8.54 5.77 6.65 2.5 0.1 3.33 10.1 0.49 6.81 1.24 3.82 5.49 4.52 5.37 2.43 3.35 3.05 0.98 3.49 11.6 7.89 2.83 6.51 8.83 10.5 5.74 2.7 5.89 0.24 6.43 6.7 8.68 4.13 7.27 7.88 3.25 2.23 4.12 7.93 10.7 4.44 4.87 5.68 1.88 6.89 0.04 1.7 5.34 6.22 3.08 3.86 5.04 3.32 3.01 7.47 5.33 4.39 5.58 7.59 3.82 4.56 7.67 4.09 8.27 3.56 6.21 3.24 0.58 1.05 4.29 -0.07 1.89 4.62 1.43 5.92 2.21 5.17 8.61 10.2 7.26 5.14 6.91 0.91 6.17 5.64 5.27 0.37 1.84 4.86 2.04 3.68 2.17 6.18 0.06 0.18 0.81 8.49 1.19 0.37 2.89 13.7 2.99 4.7 3.94 8.35 4.46 3.27 4.13 0.64 2.17 8.6 7.66 10.2 2.42 4.9 3.67 11.3 0.71 11.9 -1.51 2.76 5.01 1.74 7.36 8.74 11.6 4.99 3.06 1.04 9.68 3.14 8.67 7.88 4.76 0.27 9.67 7.49 6.32 5.33 9.4 3.78 10.2 8.95 2.27 3.3 5.68 1.71 3.9 7.53 7.98 5.64 5.38 9.88 5.68 5.74 4.95 2.21 3.44 -0.09 8.39 5.67 8.45 9.46 3.89 4.75 4.5 3.29 5.19 9.75 9.58 10.1 6.89 8.62 9.81 10.5 9.04 8.2 5.34 10.5 10.3 11.4 7.34 9.28 11.1 11 10.5 8.7 9.3 10.3 7.46 10.1 9.55 10.2 10.9 10.5 10.3 8.17 3.56 11 8.16 12.1 7.98 4.18 9.47 11.8 8.38 7.34 11.6 5.16 9.37 3.07 9.68 4.72 11.9 12.4 12.4 12.7 12.8 13 3.34 11 9.23 1.35 6.81 10 9.76 6.77 10.8 11.2 5.29 12.6 5.11 10.1 9.61 11.4 7.59 8.87 7.36 10.9 10.9 10 9.34 7.6 9.53 9.12 11.5 6.68 2.03 12.8 10.8 11.1 13.1 10.9 10.4 8.48 10.5 10.3 10.3 6.06 10.7 9.98 7.04 2.77 9.84 7.69 9.87 10.1 5.43 12.2 7.44 7.6 12.4 12.1 8.39 8.9 10.7 11.3 1.37 9.44 8.98 7.97 13.1 9.21 3.16 8.25 6.76 11 10.3 5.22 9 7.9 10.6 10.3 9.76 9.22 10.2 10.3 11.4 9.2 8.99 9.2 10.1 8.38 11.1 6.98 10.3 8.85 9.06 9.91 7.32 8.67 11.7 8.3 9.69 9.7 8.9 13.1 8.71 9.01 12.4 11.4 11.6 4.23 9.56 0.22 4.86 9.05 6.92 10.4 2.4 7.28 8.6 10.7 10.9 10.1 8.52 7.03 7.8 6.2 7.24 5.4 7.52 11.6 9.91 11.1 9.2 7.04 9.63 11.1 2.11 8.24 9.83 10.7 10.1 10.2 10.6 10.7 4.67 9.37 9.3 9.81 9.17 9.94 9.88 7.4 7.55 11.1 11.7 6.32 9 6.34 8.54 10.4 10.4 8.99 8.37 10.4 8.26 12.2 9.4 6.19 8.2 6.84 11.4 9.54 9.04 12.3 9.71 9.59 9.3 7.58 9.44 9.49 5.17 11.3 7.8 10.7 9.73 10.5 2.8 10.9 10.4 12.2 7.86 8.17 7.18 5.86 8.69 8.36 9.37 8.86 11.2 12.2 10.1 4.57 11.5 5.6 8.55 8.9 -0.11 10.4 2.56 7.85 6.04 12.1 8.99 7.65 10.2 11 10.5 3.74 8.94 10.7 10.8 1.69 10.2 9.05 3.95 4.15 2.17 8.02 7.27 3.17 8.86 4.62 10.3 8.44 9.67 11.2 8.16 6.2 13.5 11.6 -2.6 8.43 11.4 3.11 13.8 9.54 9.57 6.26 7.45 9.06 9.23 4.07 13.4 8.52 7.3 8.79 8.33 10.8 12.4 14.4 8.09 9.66 8.89 9.76 6.21 9.28 9.86 5.77 1.54 8.74 3.01 15.2 6.95 10.8 11.4 11.9 6.89 9.84 6.41 10.4 10.4 10.7 10.1 9.73 9.29 8.2 9.9 10.2 10.5 10.3 10.4 7.93 9.09 13.8 8.34 5.74 9.34 10.4 10.4 10.4 5.33 9.97 11.1 6.28 9.64 5.86 10.7 10.2 9.32 10.2 9.84 8.28 9.6 11.5 7.25 8.2 9.65 8.41 8.75 9.46 11.1 2.96 9.9 4.33 11.2 8.43 10.9 11.2 7.81 11.8 10.2 9.69 9 11.7 10.9 10.8 9.71 2.13 12.8 10.1 10 10.4 11.4 12.3 11.1 11.6 8.24 9.43 10.5 6.79 6.67 9.29 7.79 7.82 9 10.2 9.3 11.3 6.04 9.08 9.51 8.96 3.09 6.62 10.6 10.2 7.22 12.8 10.1 10.3 9.96 11.6 9.79 11.4 11.9 5.26 1.39 10.2 9.49 8.81 10.5 8.06 15.5 8.96 10.2 10.5 10.4 12.7 10.5 8.36 10.7 10.8 12 12.8 11.6 10.8 10.8 11.8 8.36 9.34 10.7 9.74 9.73 6.27 9.16 4.76 10.9 10.8 9.63 2.69 10.9 4.89 9.87 2.91 10.3 10.2 12.2 12.1 11.4 12.5 10.1 10 9.06 9.45 13.3 9.43 1.18 9.28 8.59 12.1 12.6 11.7 10.5 12.1 7.5 8.01 11.4 7.53 9.27 8.59 6.86 10.8 11.9 9.8 11.4 8.45 7.31 10.1 8.04 8.54 10.4 10.7 12.6 9.53 12 8.61 7.31 9.15 7.45 8.22 11.4 6.87 13.1 12.7 9.22 10.8 10.4 12.1 4.11 10.7 9 9.31 2.89 7.34 9.77 8.93 9.02 8.63 10.1 5.89 9.94 11.5 13.1 10.5 7.88 11.8 10.1 8.87 7.25 2.22 8.1 10.1 5.45 7.45 6.9 10.2 10.3 8.94 10.6 6.83 6.42 6.11 9.89 8.37 11.4 3.19 2.67 11.2 6.88 0.62 2.3 10.8 11.6 6.52 5.33 8.38 4.9 9.41 10.5 10.9 1.7 8.81 14.8 7.53 12.5 10.1 9.49 11.7 12.4 8.49 11.5 9.81 7.6 4.11 11.5 4.35 2.62 0.59 2.37 10.2 6.99 9.35 2.68 7.8 8.1 3.28 4.26 11.1 11.7 9.85 6.25 11.6 10.7 0.2 10.6 9.81 8.55 10.2 10.4 11 8.13 10.9 11.3 8.05 9.48 10.4 9.23 6.98 8.9 8.69 10.8 7 12.3 10.8 9.84 7.28 3.72 8.12 10.8 7.91 3.03 5.2 12.6 8.8 1.71 1.08 8.65 10.3 10.8 13.5 4.63 7.99 9.63 13.3 10.8 8.57 8.43 5.84 5.19 8.75 8.24 2.13 6.8 0.53 10.3 8.05 5.82 11.2 9.35 9.55 5.21 10.8 11.5 1.95 8.03 6.52 7.76 10 11.4 9.8 9.37 9.83 9.28 4.58 9.32 8.35 9.37 -0.57 5 9.38 9.2 3.43 4.5 11.7 6.87 9.17 10.6 5.9 1.27 10.7 8.9 11 9.81 3.47 9.83 9.69 8.86 11 9.15 9.37 10.2 10.6 9.8 0.33 8.96 7.55 11.6 9.97 11.2 6.57 11.4 9.99 11.9 10.4 12.9 8.34 9.52 10.8 10.3 10.5 1.25 11.5 1.72 12.6 3.63 10.9 9.62 6.68 1.33 9.14 11.5 12.1 10.7 9.08 9.9 12.1 8.43 10.6 11.4 10.8 8.51 10 12.2 11.7 11.9 12.1 12.4 6.43 12.3 8.03 8.52 10 10.7 10.6 12.6 12.3 9.92 7.85 10.5 8.7 8.67 11.7 9.05 10.2 10.1 4.76 10.4 10.5 10.9 10.7 5.01 2.79 12.4 7.13 9.74 6.74 10.4 8.34 7.19 9.88 8.74 9.15 3.09 1.71 9.01 8.94 2.68 12.5 9.51 9.8 9.46 9.14 7.28 7.68 8.14 9.77 8.51 3.2 6.92 2.34 4.47 9.69 10.4 12 12.5 9.49 6.15 10.9 10.5 10.2 6.2 9.84 1.11 9.81 12.5 9.59 10.4 10.4 12.2 8.59 10.8 10.3 10.3 9.83 7.94 0.71 9.49 12 9.75 9.52 8.76 8.07 11.6 10 8.87 9.07 10.3 3.63 11.2 11.4 11.8 7.23 7.72 11.1 10.9 8.18 7.61 10.2 5.21 7.46 8.97 11.9 7.64 12.4 6.13 8.58 9.24 8.9 2.45 8.8 8.46 10.8 9.27 8.05 11.3 10.4 10.9 10.4 9.74 5.6 9.88 5.11 8.68 7.85 9.72 7.15 10.9 4.11 9.77 8.69 12.3 2.26 9.39 9.31 12.9 11.7 9.23 9.61 5.92 10.7 7.3 6.71 0.83 4.95 12.1 9.48 4.92 5.85 4.08 10.8 9.09 9.21 8.16 10.1 10.4 11 5.56 9.42 10.1 10.1 11.8 10.8 7.73 6.91 5.78 10.6 7.72 5.32 10.8 10.6 7.98 9.14 4.19 10.7 8.51 9.26 8.73 6.37 9.8 10.3 10 3.46 11.3 11.3 6.76 9.84 9.95 9.83 11.9 9.77 7.95 9.18 8.57 7.59 8.29 10.5 6.39 10.2 10.1 6.14 7.88 8.45 0.49 7.46 6.85 11.2 4.37 13.8 8.56 3.56 6.02 7.95 9.37 11.1 6.67 8.84 9.01 9.27 7.52 10.2 10.8 9.54 9.03 5.89 9.88 9.31 4.33 9.91 3.97 5.42 8.28 3.93 9.88 9.04 10.8 2.42 4.86 9.82 11.1 8.49 9.48 9.73 10.7 8.91 10.5 2.99 10.6 7.09 10 8.34 10.3 8.21 10.1 9.35 10.6 4.82 0.38 8.78 8.32 11.3 9.35 8.79 8.55 5.42 9.21 9.62 8.35 7.43 4.23 0.99 8.42 0.3 11.4 8.81 8.75 7.12 9.24 9.46 8.55 10.9 10.6 9.9 9.58 7.78 9.15 8.28 9.19 9.94 10.4 6.28 9.27 8.13 11 10.4 8.74 7.09 12 7.27 11.8 8.13 5.33 10.2 7.71 1.11 8.79 9.04 1.64 9.78 10.6 9.71 10.2 10.2 8.26 9.65 11 9.08 7.07 8.13 5.9 9.86 11.6 11.1 0.27 11.5 10.6 12.1 9.51 12.1 10.2 12.9 12.1 7.09 9.69 8.79 5.49 11.6 9.96 8.38 10.2 9.93 10.7 6.69 11.8 1.92 10.8 7.36 6.57 2.13 5.96 6.8 8.18 7.94 3.24 7.2 8.35 10.2 6.5 9.15 7.85 10.8 2.6 9.86 0.57 8.41 8.02 2.91 3.75 11.5 3.5 9.1 4.72 7.88 8.7 5.14 -0.49 8.73 3.74 6.47 1.1 0.72 7.84 6.24 7.42 7.51 7.88 9.88 8.82 1.8 8.57 8.02 5.32 9.94 9.42 10.2 8.73 6.49 4.62 9.66 10.1 5.68 8.72 3.06 6.01 5.37 8.78 8.69 2.33 8.3 6.84 4.08 7.5 12 2.56 8.26 8.03 3.93 7.89 7.25 7.67 3.76 9.06 9.95 10.2 6.01 8.24 8.05 5.14 7.68 1.01 8.82 5.58 7.51 12.3 8.12 9.93 6.44 11.4 10.1 10 4.75 8.46 10.1 8.68 7.41 2.44 9.43 10.9 9.18 8.12 2.3 7.57 6.79 8.05 8.23 10 8.42 2.55 3.52 8.05 5.33 10 11.4 7.59 4.61 5.59 9.23 11.4 11.3 6.67 9.41 9.13 8.65 11.3 5.96 8.53 7.1 5.96 5.57 2.01 4.52 5.2 5.95 9.67 8.37 10 4.59 8.06 5.86 2.69 4.35 9.27 8.17 6.34 9.91 9.88 2.07 7.26 8.88 0.07 0.22 9.58 7.73 9.87 8.79 11 10.2 7.11 12 7.81 10.8 8.45 10.7 11.8 3.73 7.82 2.36 8.58 9.65 11 9.12 9.62 8.85 2.11 9.5 8.08 5.78 1.37 5.65 6.74 11.2 5.22 5.86 4.8 5.01 -0.22 9.56 0.11 0.84 9.61 8.35 7.47 9.79 9.02 0.05 5.31 8.06 6.79 10 9.15 4.8 9.57 10.2 0.51 1.46 9.15 8.41 11.5 7.66 7.01 10.3 8.62 3.11 8.16 4.8 3.36 3.7 9.02 9.19 2.41 10.3 5.6 3.88 7.67 12.4 10.7 10.8 4.91 3.59 6.32 10 10.6 6.45 3.85 12.2 0.32 7.83 8.1 7.37 8.97 10 7.06 9.26 -0.14 7.77 0.26 8.01 13.1 9.99 9.94 7.25 6.58 8.81 11.8 5.92 0.59 6.38 8.52 6.47 8.91 8.01 7.7 8.28 6.31 9.36 3.02 8.34 8.59 12.1 13.7 7.82 1.71 2.24 7.84 7.17 0.98 10.9 11.8 10.2 7.38 9.46 3.79 7.85 9.37 11.8 12.5 9.6 10.4 4.88 1.95 11.6 8.65 9.56 9.29 5.03 9.08 8.06 9.14 10.7 1.83 6.2 11.4 3.06 2.97 8.29 12 11.7 8.89 8.86 7.24 5.77 12.2 4.44 9.14 8.91 3.41 5.33 7.85 9.18 7.49 8.35 10.1 3.38 1.35 1.03 6.91 1.53 8.68 6.37 8.63 6.72 8.69 7.46 6.38 8.57 10.7 7.97 5.7 7.24 8.59 8.06 2.83 8.93 9.08 7.22 9.78 8.14 8.21 10.4 2.07 10.3 11.2 8.57 1.85 7.18 4.81 6.99 6.68 5.17 7.63 9.19 8.78 3.07 8.23 8.95 6.1 4.36 7.79 5.2 4.22 9.28 9.76 1.95 8.22 4.86 9.78 -0.05 8.9 8.94 8.74 6.33 4.64 6.6 8.39 8.81 3.59 10.8 10.3 4.2 4.57 8.57 9.5 7.92 11.3 8.69 6.94 9.22 8.97 6.61 11.2 11.1 4.24 3.89 8.41 8.7 1.85 5.46 1.96 7.28 10.3 8.98 5.88 2.71 0.03 6.02 4.57 9.18 9.86 8.41 11.3 7.18 5.44 12.1 4.66 9.38 9.69 6.18 9.41 9.43 5.98 4.19 11.3 6.38 7.26 2.66 8.35 0.65 8.61 8.12 2.99 7.23 3.99 6.52 10.7 2.48 9.88 9.7 4.42 6.58 4.7 7.16 3.95 7.41 6.62 7.93 8.02 4.17 9.51 4.83 0.53 9.83 3.14 1.73 4.04 5.61 8.18 6.9 8.41 9.89 8.51 6.21 10.4 10.4 6.73 10.8 11.6 8.54 7.31 6.96 9.67 8.67 3.53 7.67 2.86 12.8 8.43 3.15 11 5.55 4.43 3.4 5.99 8.87 11.2 7.94 7.87 9.18 3.45 0.46 2.46 0.2 1.34 3.08 9.59 0.07 8.29 3.29 3.22 6.78 8.82 1.78 8.75 6.51 3.39 9.77 11.4 6.49 7.78 8.55 4.96 2 9.08 3.61 1.96 -0.3 9.05 15.5 6.74 8.99 8.92 14.6 10.1 3.52 2.33 8.67 5.27 3.67 10.3 -0.06 8.99 9.03 14.5 5.54 7.94 13.3 1.63 7.83 1.38 9.7 11.3 9.25 9.22 -0.58 9.26 7.34 9.08 7.9 13.2 3.75 8.79 6.34 3.3 3.49 6.83 5.4 6.26 10.9 5.67 4.94 2.08 7.25 0.27 13.2 10.5 12.1 9.89 9.47 11.5 7.37 8.15 12.9 9.61 13.4 9.01 6.38 13 9.1 7.66 9.15 8.16 6.81 5.72 9.99 9.12 7.61 8.83 7.7 9.45 8.74 7.69 7.71 4.92 0.65 7.46 5.86 5.05 12.7 6.4 7.42 7.61 10.9 8.19 5.62 4.39 4.93 6.41 11.7 8.95 6.77 8.01 8.49 8.04 9.86 8.74 0.26 9.59 4.28 6.65 10.1 11.2 9.12 10 9.8 5.45 4.65 4.18 2.94 10.6 5.94 9.93 7.42 8.19 4.22 7.47 1.08 4.32 8.37 7.27 7.45 9.35 9.29 12.3 11.5 8.24 5.48 8.75 11 0.69 6.01 8.29 9 10.8 9.63 8.24 -0.15 9.66 8.77 -0.69 9.41 1.66 0.77 8.17 9.62 7.01 10 9.51 9.09 -0.15 0.78 6.85 10.5 7.76 7.43 2.5 3.81 4.71 9.27 8.6 4.62 13 7.65 8.08 8.45 6.77 12.1 2.99 7.29 0.37 6.83 8.27 3.16 6.1 8.35 1.76 8.93 4.06 7.24 10.2 9.84 11.6 7.82 3.2 2.01 9.51 4.96 12.5 3.32 8.95 11.3 10.6 7.15 8.53 5.3 6.77 7.76 7.06 9.45 1.83 9.43 11.7 8.41 8.28 8.83 9.98 6.71 9.47 11.4 5.04 12.1 7.71 7.74 12.1 12.2 11.8 9.78 3.84 6.68 7.19 6.08 2.26 10.9 7.11 9.15 2.38 9.11 5.21 1.58 5.33 9.08 2.4 7.76 0.58 10.7 3.6 1.23 8.18 1.55 5.17 12.6 10.5 11.3 10 9.1 4.64 7.37 8.3 8.73 5.98 1.94 7.56 11.3 9.64 8.64 8.77 7.76 9.19 4.77 5.25 3.98 9.21 2.24 2.2 11.1 4.17 8.61 10.6 0.03 3.81 5.53 6.86 6 5.86 7.03 1 8.99 11 8.6 1.28 3.15 9.6 7.62 7.75 6.26 10.2 9.85 1.11 11.2 9.88 9.01 2.23 8.88 7.72 2.61 6.08 3.41 9.73 9.36 12.7 11.3 7.41 1.93 0.11 8.52 7.07 8.68 10.6 11.7 6.84 6.9 1.56 9.95 7.54 8.87 4.14 9.56 10.4 1.43 5.56 8 9.29 0.99 4.12 10.1 9.62 7.26 4.84 8.95 6.94 2.22 -0.13 10.9 0.5 4.69 3.51 8.66 9.42 7.81 6.07 7.7 7.85 9.14 7.43 9.99 6.2 9.57 10.6 -0.95 8.55 9.06 1 11.2 11.2 5.01 7.11 8.36 8 5.75 6.86 10.8 3.02 10.6 1.53 10.8 5.42 7.53 8.29 3.01 3.44 11.5 9.31 6.46 3.69 2.33 3.45 0.43 5.75 7.48 4.58 10.2 0.84 9.26 10.6 10.7 11.2 8.84 10.1 10.7 7.06 6.04 10 11.6 5.05 9.63 8.73 10.2 2.31 5.59 8.81 3.27 8.18 7.47 4.56 6.5 8.88 10.5 8.63 6.33 0.4 4.79 9.82 7.38 7.79 8.83 7.65 7.54 4.7 7.27 3.1 7.76 7.61 3.84 9.65 11.4 7.25 6.69 8.91 1.47 2.62 0.26 6.63 2.55 11 8.46 -0.25 5.66 6.21 5.05 9.3 4.03 9.72 8.42 11.3 7.86 7.65 11.7 3.62 3.86 5.46 12.1 3.41 7.88 11.5 4.13 0.3 8.51 4.06 10.7 0.75 6.55 6.81 8.12 9.19 10.9 7.23 2.73 4.57 4.62 1.84 7.01 9.51 1.89 7.97 1.4 9.19 12.5 8.03 3.69 7.84 1.19 4.45 8.57 10.8 7.78 4.69 10.2 2.09 1.39 1.03 5.64 1.6 8.99 7.79 6.07 9.19 5.52 11.6 7.69 9.08 5.75 5.83 3.14 7.75 0.98 9.07 8.85 7.59 8.55 7.89 0.63 0.17 4.79 5.84 1.06 10.6 0.82 0.03 7.89 2.37 7.95 1.45 8.82 0.44 8.87 9.02 7.51 9.58 6.16 8.52 9.01 5.23 14.1 12.2 9.47 6.62 9.09 10 5.74 8.72 1.7 1.84 2.03 2.86 2.74 13.8 7.07 5.82 12.2 8.72 6.69 8.77 1.9 6.69 3.67 6.42 7.62 7.83 6.89 9.8 6.61 9.12 1.12 8.8 9.52 8.33 9.03 7.58 5.78 5.74 0.92 8.98 6.66 8.78 6.18 5.97 6.78 3.57 6.5 8.46 7.83 6.29 9.31 3.77 6.66 4.68 5.54 8.44 5.95 1 7.97 7.58 7.56 9.66 4.5 4.59 6.16 7.28 5.71 2.99 5.9 8.29 4.36 5.8 5.66 9.01 5 8.03 8.88 8.77 9.12 9.25 2.72 -1.15 12.6 5.72 1.38 5.11 8.56 10.5 5.21 2.27 9.52 6.17 4.71 9.03 2.36 12.1 8.53 -0.66 9.63 6.16 3.7 6.08 10.4 1.08 3.42 7.66 6.51 8.43 8.13 3.27 0.08 8.68 8.33 3.33 4.49 12.7 11 7.04 9.11 5.85 8.47 12.8 10.9 11.5 0.01 4.27 12.6 -0.19 4.89 8.81 0.53 -0.26 2.98 1.58 6.14 2.46 10 4.15 1.46 8.42 9.99 7.78 7.87 8.88 3.03 4.01 7.01 7.29 8.86 7.66 8.92 3.54 9.58 7.92 9.99 2.91 7.06 5.64 10.1 9.26 6.72 5.31 8.41 6.55 4.44 4.56 9.1 5.72 14.3 8.72 14.5 7 4.76 6.96 9.35 10.5 9.55 6.19 2.53 2.92 1.16 9.69 9.07 8.88 12.6 7.17 0.18 9.04 1.24 8.38 4.52 10.8 6.42 7.85 4.68 5.1 10.2 -0.93 7.77 2.84 10.1 8.64 5.2 9.08 0.03 8.48 8.33 9.22 11 7.67 2.45 4.56 0.98 4.74 3.28 10.2 5.05 8.33 10.6 6.94 8.2 6.77 12.1 8.35 9.01 9.19 0.21 3.58 8.34 7.58 -0.04 9.92 7.22 8.39 5.36 13.3 3.57 8.64 8.43 11.1 7.33 4.69 5.99 1.02 6.26 5.88 9.85 8.15 3.01 7.97 3.49 7.87 2.19 7.93 1.92 6.34 10 8.69 2.24 7.57 7.17 7.99 7.01 8.42 12.6 7.65 6.99 8.75 10.7 7.37 7.73 11.4 7.49 2.02 12.3 10 8.05 4.02 11.1 7.11 0.39 0.34 4.78 11.8 8.61 5.76 6.18 8.9 2.45 10 4.57 9.83 9.19 8.5 5.61 7.92 8.92 2.89 5.7 6.71 2.69 9.08 7.46 3.92 -0.07 7.57 5.99 3.85 9.26 8.1 0.44 9.92 7.46 2.01 2.92 7.92 0.97 8.72 4.56 7.76 9.01 10.2 -0.15 2.55 5.57 9.33 6.29 8.3 9.62 7.47 2.46 12.3 6.02 6.33 9.79 5.72 0.99 9.67 6.38 8.32 8.83 9.37 8.51 7.95 3.15 0.29 8.77 5.83 8.65 4.96 8.66 6.72 0.6 10.7 3.09 6.25 8.26 6.09 9.17 2.98 10.4 1 0.66 4.49 7.66 5.41 4.97 7 6.54 -0.35 5.7 5.98 7.37 2.93 10 0.72 9 2.67 5.58 2.56 4.17 3.94 8.07 5.98 5.32 4.28 7.69 8.49 1.43 7.31 5.86 1.02 0.57 5.63 3.86 0.8 2.61 1.88 4.18 9.96 7.26 10.7 5.55 7.9 3.34 3.61 8.64 6.56 5.09 12 2.2 -0.34 11.6 10.7 -0.41 9.68 3.36 3.82 0.62 0.31 12.4 7.74 5.16 4.48 8.75 8.85 -0.03 6.15 11.8 7.8 8.87 7.05 7.31 6.39 2.98 6.69 8.36 9.53 10.6 11.8 5.74 7.63 4.34 8.91 8.5 4.62 2.47 10.5 10.1 2.98 6.29 5.74 2.64 11.4 2.58 5.99 11.1 1.19 3.46 9.67 1.98 4.09 5.79 1.92 9.46 11.3 10.2 3.4 11.7 7.77 8.86 7.33 5.81 10.6 5.6 2.89 3.52 2.06 1.76 0.31 6.83 5.33 7.31 10 10.2 7.71 5.98 6.32 7.69 8.68 6.05 6.8 7.54 9 5.89 1.41 11.5 9.04 7.16 7.48 6.6 6.34 3.65 6.36 6.48 5.04 8.9 7.46 4.23 6.6 2.44 10.8 0.3 7.17 5.63 2.04 10.4 3.19 12.1 4.08 10.6 5.88 9.31 2.66 7.29 7.95 2.8 6.41 7.99 8.92 8.4 12.1 10.2 1.99 8.83 3.18 11.7 1.29 8.62 4.53 4.29 5.86 6.26 3.72 7.33 4.79 3.18 5.61 1.16 10.1 2.46 8.83 12.2 12.4 5.97 2.17 6.57 5.74 10.7 5.35 11.4 8.17 12.2 12.8 2.22 5.02 11.2 5.68 3.14 9.03 -0.64 8.9 4.92 6.52 13.6 11.3 7.64 9.7 9.7 6.55 0.51 6.8 5.88 10.8 10.8 5.52 9.58 7.91 7.01 5.41 7.12 7.26 8.76 0.71 9.69 11.5 9.13 2.08 11.5 2.36 3.82 7.28 3.5 8.52 2.07 6.94 7.25 7.95 4.09 8.08 0.6 9.12 8.07 0.57 1.26 10.1 7.04 4.04 3.49 5.92 7.99 5.48 9.16 5.76 3.28 -0.65 9.24 9.25 4.05 3.92 6.86 9.35 4.98 3.76 1.03 1.73 6.26 4.8 2.88 9.7 10 5.87 9.51 7.15 2.05 11.3 1.41 0.95 2.36 2.69 4.15 11.2 7.39 6.42 8.99 4.04 9.88 4.16 11 9.45 4.39 3.25 4.14 7.15 10.4 8.37 10.1 2.22 10.2 9.75 10.8 11.1 11.9 9.6 8.86 7.57 10.1 12.4 13.3 10.9 8.39 9.67 2.68 8.31 11.4 9.84 10.4 9.77 2.82 10.3 6.8 10.4 1.42 -0.89 1.93 3.38 8.7 8.55 6.8 9.38 8.61 8.47 8.19 8.47 6.97 0.67 6.54 -0.44 6.85 9.28 4.36 6.44 11 12.3 8.6 3.42 10.7 10.6 11.8 11 5.95 9.43 8.6 10.5 8.99 4.13 9.06 9.23 10 8.56 7.95 9.48 9.38 8.65 9.12 9.67 9.9 0.35 9.4 2.86 -0.44 9.2 10.8 7.48 2.48 11.3 9.64 8.67 10.7 6.7 11.3 12 8.74 4.85 8.79 7.9 6.12 10.9 6.17 10.1 8.57 10.3 7.48 8.47 10.5 8.65 7.02 7.17 0.13 9.74 10.6 9.6 10.7 9.54 9.79 10.7 9.08 8.49 9.37 10.8 7.01 9.21 9.34 7.04 8.07 11.6 3.95 12 12.3 12.3 9.08 10.4 6.02 10.1 8.44 5.72 10.7 7.5 8.01 13.3 6.81 8.25 11.4 15.6 1.31 5.01 8.55 11 6.51 7 8.94 12.3 12.8 14.2 14.7 9.52 10.2 8.79 8.78 4.5 10.4 9.12 3.45 0.19 9.91 8.48 8.56 9.66 8.5 6.45 9.98 8.47 9.03 7.34 10.7 6.19 -0.7 4.15 7.87 3.57 7.09 1.65 6.84 9.33 2.8 7.93 12.2 7.3 10.6 9.25 8.87 9.29 10.6 2.47 7.73 10.4 9.35 0.96 10.1 6.5 8.67 7.26 12.7 3.64 7.16 10.1 2.35 0.35 4.13 1.66 7.91 6.15 6.44 6.28 8.8 8.8 13.2 4.36 7.96 8.96 3.22 8.05 10.1 11.8 7.3 12.2 8.83 10.8 11.8 12 13.2 11.2 13.5 -0.27 10.2 0.7 11.7 6.57 4.99 10.8 -0.68 3.01 2.66 8.13 0.55 10.2 7.12 2.4 2.17 9.71 8.5 8.04 4.2 4 8.92 4.69 8.39 8.8 12.5 9.11 2.12 9.78 12.8 11.8 8.81 1.13 2.73 10.1 8.07 4.66 9.84 10.6 10.4 2.89 0.47 2.75 11.7 9.74 7.06 10.1 7.4 0.69 9.01 5.72 8.84 2.13 7.66 1.54 6.11 3.96 9.23 6.11 5.27 6.41 8.85 9.2 9.53 6.62 9.95 8.15 3.15 4.41 7.54 2.38 7.86 8.22 7.17 8.71 3.35 8.71 8.6 7.71 10.8 11 7.11 9.09 9.36 8.84 6.88 9.86 5.24 9.93 8.1 6.83 11.6 9.97 9.5 7.88 9.07 9.09 6.94 11.9 7.01 10 1.22 9.11 4.56 3.38 7.02 4.73 9.28 1.71 3.42 9.03 8.83 7.85 3.01 12.5 8.36 2.09 3.22 5.2 1.57 8.06 7.64 9.16 7.11 8.89 9.87 7.04 5.62 5.05 8.99 3.15 11.4 8.23 2.23 13.7 5.93 5.26 3.17 -0.33 0.4 9.45 7.5 8.09 7.54 12 9.65 11 10.1 8.66 8.85 14.5 9.96 3.98 4.83 7.97 8.45 7.84 4.47 7.22 10.1 9.91 9.73 11.1 7.46 10.7 8.26 10.2 6.64 7.46 10.5 11.2 9.16 3.03 8.36 11.3 10.8 8 6.5 -0.3 4.79 7.85 11.9 1.42 9.51 10.2 6.97 3.58 11.4 5.75 11.6 8.87 9.84 9.74 9.2 8.4 8.2 9.32 -0.19 6.48 7.55 10.8 9.11 10.2 10.3 1.08 7.81 11 4.63 1.07 12 9.99 8.24 5.18 11.9 2.81 9.74 9.96 6.6 10.1 7.5 10.1 7.38 11.9 10.4 5 11.8 11.7 4.95 8.21 11.5 5.5 10.8 0.47 10.3 9.28 12.2 9.85 7.63 11.4 12 6.81 4.54 4.45 10.1 9.4 -0.24 10.6 8.37 8.95 8.53 9.25 9.72 2.3 12.7 9.86 9.89 1.59 8.01 10.1 -0.27 2.01 9.94 4.58 9.37 8.88 0.19 9.63 11.7 8.49 7.98 9.27 8.02 5.45 8.14 10.5 9.23 5.95 7.34 9.52 4.57 1.47 12.9 5.84 5.11 9.86 9.01 8.56 7.66 5.91 9.1 11.3 11.4 7.29 9.9 9.83 5.27 9.56 9.14 9.83 12.1 8.87 4.66 10.4 6.41 6.68 5.26 13.4 10.3 12 3.67 3.13 8.63 2.46 5.64 8.44 4.34 9.2 13.5 8.12 8.72 9.98 7.3 10.9 8.71 8.02 9.08 8.69 7.98 6.31 9.46 7.99 10.2 8.03 0.63 9.52 11.2 8.8 8.4 10.2 2.09 10.6 4.12 7.29 8.79 7.33 5.18 1.98 4 8.65 4.01 3.98 9.59 2.41 8.42 10.8 11.1 6.18 2.25 0.55 0.85 3.68 5.96 4.98 2.39 11.3 6.9 4.93 -0.24 6.94 8.02 6.53 7.5 5.97 5.63 3.94 13.1 6.33 10 7.79 5.2 8.34 9.35 3.44 10.4 7.91 6.72 5.72 11.8 7.74 7.8 9.39 9.76 7.73 9.68 7.77 10 7.38 9.7 7.2 7.68 7.24 3.91 9.14 10.6 3.14 10.6 1.41 2.8 7.05 9.69 2.43 3.4 8.03 3.91 11.1 2.24 10.1 10.6 4.62 8.4 7.35 9.46 4.91 9.13 6.6 5.47 12.3 8.76 1.39 10.2 8.53 7.63 8.06 1.57 9.7 0.07 7.93 5.89 9.85 3.4 11.3 9.71 10.3 9.31 9.48 3.3 8.27 9.88 7.75 9.12 9.5 9.36 9.42 12 6.78 9.24 6.7 3.17 9.21 7.41 7.9 8.98 11.1 8.32 3.51 6.49 3.82 3.89 3.05 10.7 9.33 2.11 3.27 -0.37 2.19 3.8 4.1 6.48 3.55 9.24 10.6 9.98 8.99 3.92 8.41 8.58 10.5 7.07 7.14 2.54 7.88 6.32 5.99 4.92 1.13 7.66 2.17 4.8 8.46 4.68 6.22 13.4 9.7 10.9 0.72 8.46 11.7 8.56 10.4 4.06 9.67 9.62 9.53 10.3 9.07 8.83 7.57 13.3 8.55 8.67 0.51 11.2 3.68 6.28 7.4 9.73 8.05 11.8 2.42 11.7 9.58 10.2 9 2.62 11.6 11.4 9.75 -0.38 8.22 9.34 7.54 8.63 9.42 10.2 11.1 8.7 5.96 4.52 9.47 9.81 8.17 9.29 5.67 8.38 8 7.29 1.89 9.14 9.4 8.98 11.1 8.13 10.4 8.91 10.5 0.44 9.38 8.46 11 11.3 0.81 11.4 6.5 10.5 8.76 8.66 9.42 9.58 9.08 11 9.74 7.82 8.3 11.4 8.01 7.23 9.28 9.63 9.66 10 9.92 2.9 8.6 9.48 2.25 9.43 8.97 7.64 5.1 9.63 4.87 9.06 9.47 11.1 9.19 11.5 10.2 9.8 7.61 7.28 13.2 7.16 5.84 10.6 1.41 10.1 12.3 8.46 10.9 8.34 3.76 9.12 10.8 11.7 10.6 9.9 10.5 7.53 9.94 10.7 9.26 10.4 10.4 9.63 8.86 12.8 10.4 9.41 1.34 8.51 10 9.24 1.74 3.24 12.1 8.8 9.13 9.35 8.03 2.78 10.6 9.89 8.67 7.13 8.93 11.9 2.27 3.56 2.22 9.52 11.3 10 9.09 5.85 9.3 6.42 6.39 11 8.92 9.61 8.33 7.95 6.34 7.31 5.32 9.43 9.99 10.4 9.91 10.2 9.21 10.9 4.53 11.7 10.2 8.09 8.06 9.69 1.82 10.4 9.68 8.56 9.77 10.1 9.08 7.22 7.06 10.2 5.96 10.7 11.1 8.9 10.9 6.9 8.71 9.91 10.2 10.6 10.6 9.32 9.8 10.2 11 3.67 9.13 7.5 8.63 10.8 10.5 9.46 10.3 9.48 3.99 9.14 10.7 11.3 1.8 7.65 9.68 9.3 9.64 9.05 8.35 7.29 9.01 8.77 8.77 9.78 8.91 8.04 9.76 6.09 11.2 8.81 8.52 10.5 9.56 8.36 9.73 7.14 8.28 9.27 8.17 3.24 9.86 1.98 9.93 8.87 2.13 7.58 9.5 8.71 6.48 8.26 11.5 10.2 8.21 0.17 8.94 9.29 9.77 9.93 9.84 10.7 8.38 9.49 9.4 6.57 9.74 10.1 7.82 9.15 6.26 11.3 10.4 10.1 10 9.65 9.13 9.89 0.73 4.09 7.47 1.18 8.03 11.3 10.1 8.32 9.04 11.3 9.47 13.2 10.2 9.76 9.85 9.22 10.3 10.2 10.9 11.1 10.2 8.94 11.5 9.81 8.56 8.76 9.62 9.33 9.2 10.8 9.05 8.96 7.62 8.11 9.69 8.72 10.2 10.4 9.54 9.44 9.36 11.9 12.1 10.5 10.7 12.9 6.06 9.31 11.8 10.3 9.84 10.3 9.47 6.18 10.4 12.6 1.14 10.6 7.63 3.85 9.15 9.02 10.3 9.11 11.6 10.6 11.1 10 1.46 10.8 8.76 3.84 11 8.97 8.63 12.2 10.3 6.81 9.09 7.73 9.4 10.7 7.13 5.15 10.5 8.31 10.2 1.7 8.59 8.33 8.28 10.7 9.22 9.11 11.4 7.16 8.6 8.52 9.77 10.7 3.57 8.8 10.3 6.07 7.89 9.51 9.39 10.3 4.48 9.26 9.21 10.8 11.8 10.5 7.67 9.17 8.92 6.24 8.42 8.96 9.92 8.76 8.11 8.08 11.1 9.59 7.68 1.06 10.2 3.46 6.96 9.9 8.57 10.3 4.91 8.89 9.93 9.25 10.3 9.35 7.17 10.4 10.2 5.38 11 8.62 5.96 9.12 9.6 8.53 9.6 9.47 10.1 8.3 11.9 5.31 9.93 1.19 9.8 9.23 10.6 6.54 5.85 11.1 9.62 9.44 10.2 7.57 7.45 10.1 9.2 9.59 8.15 7.31 9.34 9.91 2.37 8.64 10.7 9.28 9.99 10.2 3.04 13.9 10.8 11.1 10.9 11.3 8.69 9.24 9.82 9.96 0.63 9.7 8.39 6.45 7.27 11.9 7.69 11.6 9.6 11.6 10.5 9.56 8.32 10.6 7.72 9.69 8.99 11.4 8.3 9.66 9.97 11.1 10.7 9.36 9.41 10.5 8.58 11.5 10.8 8.74 9.99 9.43 8.92 11.7 10.8 7.75 8.94 9.2 9.51 12.4 9.46 2.69 9.74 9.69 10.2 9.03 4.39 5.16 2.89 7.51 1.19 9.21 10.9 8.21 10.3 8.86 5.95 7.23 9.43 0.68 7.37 7.63 10.6 11.8 8.89 7.03 11.6 11.6 12.4 9.39 8.94 6.69 6.48 4.79 8.45 6.26 10.8 8.67 9.86 9.4 10.3 10.6 11.9 9.18 9.35 9.9 10.7 10.7 10.6 3.81 9.44 11.3 8.58 10.5 6.13 9.73 6.09 5.2 9.19 10.8 7.66 9.82 8.9 1.79 10.3 9.31 8.9 9.16 11.1 9.42 11.2 9.9 11.4 9.73 8.69 12.3 10.1 9.67 0.54 2.26 13.8 9.2 11.9 12.4 10.6 9.61 6.68 6.91 10.9 9.97 9 5.22 7.66 9.8 6.6 1.76 8.53 8.31 10.5 9.99 2.1 8.34 3.19 1.01 9.53 10.8 9.76 11.3 5.84 5.91 5.75 11.9 8.65 9.08 11.1 10.8 10.3 10.4 2.85 2.03 12.2 0.09 7.51 9.89 0.91 6.26 11.9 3.8 10.5 8.65 9.42 6.52 11.9 8.26 9.79 9.74 10.9 8.49 7.51 9.12 11.6 7.9 9.41 9.01 9.85 11 13 5.88 11 8.39 10.6 10.9 9.29 8.34 11.3 3.6 10.2 8.57 9.31 11.1 4.03 0.11 4.18 1.32 10.5 5.9 10.8 10.4 2.44 10.4 6.2 9.77 7.32 10 10.9 11.9 10.3 10 9.14 8.36 13.1 7.43 10.1 8.82 8.36 11.5 9.75 12.1 9.31 4.18 9.36 6.9 7.3 5.99 8.35 8.72 10.3 11.1 3.62 10.6 10.8 10.7 9.82 9.59 9.76 8.33 0.81 7.95 6.17 4.21 12.5 9.74 10.3 11.5 10.1 12.3 11.6 -0.26 2.59 8.52 8.67 9.3 10.4 8.6 9.21 9.64 6.29 7.94 9.66 8.14 7.71 6.84 11.9 9.77 4.53 5.05 0.62 5.61 8.65 1.81 6.57 4.41 10.1 1.26 6.45 1.2 9.89 7.79 5.27 6.44 8.44 6.55 2.21 2.46 5.89 9.48 9.65 8.82 7.26 5.82 5.39 15.2 7.35 11.1 0.69 15.9 10.7 11.2 12.3 7.78 8.96 7.3 9.79 -0.5 4.84 11.5 5.28 6.41 9.23 5.54 5.88 10.2 1.34 5.76 9.46 10.5 9.07 2.61 5.42 7.92 9.45 10.2 9.57 3.5 9.58 5.96 8.1 8.62 5.72 5.74 15.5 8.55 2.87 11 5.46 7.81 9.99 8.14 6.07 1.71 11 9.99 8.28 8.36 9.86 4.63 6.84 9.31 1.63 7.02 11 1.37 -0.37 8.3 2.51 0.43 9.48 7.45 6.29 7.68 5.36 1.29 5.29 9.4 6.22 8.55 8.55 9.53 9.77 4.48 12.9 1.52 1.29 10.8 6.6 9.33 8.26 7.72 8.03 1.74 5.04 7.68 4.07 -0.03 5.78 8.94 9.21 1.46 6.15 2.82 7.59 1.31 9.08 5.76 4.58 5.67 -0.26 7.56 2.08 6.99 4.88 5.6 7.19 6.49 7.97 5.81 7.01 7.9 8.38 9.97 6.81 0.07 5.4 3.43 8.5 10.9 5.61 5.74 3.94 6.04 3.56 9.53 10.2 6.45 8.99 3.94 6.06 8.47 8.64 8.54 -0.37 2.93 9.44 2.37 6.94 2.89 7.54 1.74 6.12 4.38 1.25 1.51 3 2.79 6.81 9.09 7.07 10.1 5.02 8.36 2.31 1.09 5 0.65 6.54 7.12 1.33 0.47 1.1 8.42 9.29 10.4 7.23 3.21 8.66 9.63 7.79 8.76 0.41 10.2 11.5 7.99 7.97 9.32 5.42 2.18 7.17 1.08 9.36 11.3 11 1.61 10.2 6.4 11.6 6.89 11.8 9.4 10.7 8.91 8.86 9.92 11.7 13.1 10.2 8.81 10.5 0.01 10.6 10.8 8.82 6.95 6.01 10.8 8.99 8.47 7.87 1.21 12.5 9.36 4.62 11.1 10.7 4.16 0.11 10.3 6.24 6.54 10.8 6.96 9.94 8.27 9.05 7.11 9.79 9.81 11.6 13.6 9.97 7.86 7.68 7.18 8.27 8.73 10 4.46 11.1 6.04 7.03 3.74 9.91 10.3 12.4 9.49 13.2 10.3 9.58 4.76 10.9 10.2 9.17 8.19 9.98 8.62 7.9 10.7 7.58 2.22 7.56 7.96 8.16 9.79 9.27 3.91 10.7 8.02 9.15 9.04 9.61 8.87 10.2 7.53 10.2 10.1 6.94 11.9 8.79 6.97 10.7 9.53 9.11 5.09 8.78 11.2 11.1 0.45 4.97 8.35 8.39 4.16 3.33 6.02 9.3 9.4 6.97 3.47 10.4 1.16 8.94 1.32 2.29 4.38 8.12 10.3 8.7 11 9.39 9.14 6.67 8.22 9.49 9.48 10.4 9.99 8.39 6.8 9.37 9.82 10.7 6.9 8.5 12.8 6.23 11.7 9.9 9.97 5.36 9.8 9.49 8.09 15.3 10.3 9.71 6.92 6.43 8.55 9.07 10.4 7.21 10.2 7.75 10.1 7.34 9.94 8.63 9.5 8.08 9.92 9.66 10.3 7.81 10 10.4 10.9 7.19 10.8 8.53 10.1 8.32 11.3 5.24 11.1 6.62 7.66 11 11.5 10.1 12.1 9.79 9.43 2.8 7.81 8.75 10.3 8.5 10.3 3.75 2.3 6.51 8.46 9.74 9.24 3.22 9.61 6.13 6.93 6.69 1.89 7.92 6.31 7.14 8.94 0.02 8.16 4.13 6.67 10.9 8.56 10.7 10.5 10.1 8.74 10.6 8.96 11.7 8.15 12.4 0.31 3.03 7.62 10.7 12 9.75 10 9.06 8.31 1.03 10.7 8.09 11.9 10.5 0.82 9.29 6.13 10.8 9.08 10.4 8.36 8.96 8.45 9.72 9.26 11.4 12.3 11 2.12 9.32 9.4 9.49 10.4 5 9.57 7.12 9.41 9.58 7.13 0.78 11.2 11.4 8.69 9.24 10 3.59 9.32 11 9.81 10.4 11.4 8.04 8.75 9.12 6.85 10.2 7.63 10.9 7.2 9.88 3.01 7.3 12.6 1.66 8.94 5.74 9.18 10 7.23 4.62 10.4 0.28 7.84 5.58 10.9 9.33 10.7 7.37 5.34 7.22 5.69 7.22 1.74 5.93 4.05 3.63 8.95 7.48 9.09 3.41 10.3 7.83 1.82 6.69 10.2 8.43 10.8 9.65 9.08 9.06 8.9 9.71 7.35 10 6.82 7.69 12.2 11.2 10.7 0.7 9.38 0.11 8.64 8.79 8.34 6.67 11.7 8.56 11.6 1.15 11.3 10.1 10.8 9.85 8.38 0.85 8.96 7.57 5.03 10.9 11.1 11.5 10.2 11.6 10.7 3.01 9.56 9.76 9.87 8.75 9.23 10.9 3.18 8.14 10.2 5.91 7.68 9.52 9.09 10.1 10 9.05 9.9 9.04 9.1 11.1 4.84 2.48 -0.57 10.8 2.96 1.51 1.13 10.2 11.9 12.2 12.1 10.5 8.01 2.78 9.93 3.95 8.24 0.96 12.1 12.1 9.19 2.61 8.03 4.37 5.72 8.7 6.99 10.7 1.19 7.59 6.23 1.09 9.49 6.73 10.9 4.48 8.47 2.12 8.03 10.6 1.82 0.12 8.31 8.11 3.77 1.96 7.07 0.15 11.6 8.33 9.14 9.71 9.77 -0.12 3.58 8.7 8.71 10.2 2.5 6.57 8.43 10.5 5.79 7.96 9.88 13.7 9.97 10.6 10.3 8.23 9.46 8.25 3.54 7.88 10.7 0.7 9.17 8.17 6.25 11.5 8.12 8.39 10.4 8.21 8.63 10.9 4.78 9.24 2.46 5.76 9.93 8.5 8.25 10.9 11.4 8.49 1.94 5.21 9.46 8.37 10.9 6 6.77 9.68 9.07 11.7 8.2 7.86 7.67 6.77 10 4.05 11.3 0 9.65 4.31 5.35 10.6 9.02 3.13 1.17 9.72 8.89 10.6 12.3 10.2 8.64 6.64 9.29 9.4 9.12 5.45 12 5.89 6.87 9.68 6.63 9.16 6.62 4.4 8.41 11.3 10.1 10.1 7.74 10.3 6.08 -0.47 6.54 8.68 4.59 3.34 9.22 10 4.79 10.3 2.81 7.27 8.55 7.23 12.1 9.58 11.9 8.06 5.97 5.18 11.3 6.26 3.44 4.33 2.74 3.99 1.37 7.72 10.1 2.53 6.36 11.3 2.57 2.02 8.05 9.69 10.3 9.52 4.82 7.56 7.38 11.7 11.8 10.1 8.39 8.35 10.3 10.7 10.7 11 7.4 7.37 5.34 9.9 10.2 4.12 0.84 6.35 3.94 9.01 10.5 7.45 9.3 7.62 6.52 9.32 8.7 3.83 8.31 8.23 10.1 3.04 8.21 5.86 9.26 9.54 4.65 9.53 12.3 5.72 9.6 10.7 10.8 9.43 6.1 11.8 11.3 9.97 11.7 11.2 8.61 10.5 9.53 8.04 8.67 8.72 11 10.8 9.27 9.13 4.94 10 9.71 10.8 5.37 6.34 7.26 11.7 11.5 9.68 3.15 10.6 9.44 8.57 11.3 5.12 9.98 9.9 -0.38 2.13 9.28 11.2 6.45 7.04 12.3 1.22 11.5 11.3 9.74 8.33 8.35 9.98 8.35 7.09 12.6 10.2 3.01 6.36 10.7 15.6 0.59 7.16 12.8 12.1 3.42 2.76 10.6 11.1 6.2 2.45 9.92 8.95 6.62 10.3 5.59 -0.01 11.3 1.01 6.62 9.53 10.7 10.2 10.7 10.4 9.56 11 10.9 2.87 11.7 2.68 1.71 10.3 6.43 9.46 12.4 4.59 8.77 1.62 9.08 8.08 5.25 4.12 1.58 4.21 6.73 5.58 7.61 1.47 8.11 3.26 1.22 9 1.49 6.96 9.11 2.38 6.1 9.67 3.22 4.59 8.71 2.19 7.8 10.4 7.07 13.2 11.4 4.18 8.47 5.57 8.95 6.52 8.15 10.2 9.7 9.18 8.58 6.07 5.67 8.18 3.09 7.54 8.7 5.55 4.37 9.48 4.66 6.95 7.56 9.81 7.57 8.78 4.61 3.25 2.49 3.64 4.01 4.32 0.54 8.84 2.97 5.95 4.66 8.61 5.11 9.15 5.81 1.66 4.12 1.72 8.47 2.68 5.31 1.15 8.57 -0.61 7.4 4.04 3.4 9.71 10.7 8.58 5.01 2.75 2.8 5.53 3.99 1.42 7.37 0.5 1.96 3.58 9.26 3.69 7.11 3.84 5 9.26 7 10 4.88 8.2 3.44 1.36 4.72 8.11 7.44 -0.22 3.55 11.4 10 10.3 5.72 2.63 9.08 8.94 0.55 5.61 8.58 5.07 7.65 6.32 5.94 1.49 9.71 5.06 1.71 1.87 1.67 7.47 7.98 0.28 4.89 0.18 10.7 5.41 9.38 8.07 11.6 7.57 6.69 5.84 8.43 2.06 -0.35 1.4 6.19 9.61 2.66 2.05 5.69 2.99 8.87 0.93 7.98 2.47 5.79 3.31 7.49 8.03 8.71 5.39 8.07 5.55 6.77 4.82 3.02 6 12 2.53 7.72 7.41 5.69 5.88 1.55 8.43 6.12 0.55 6.15 11 0.1 3.34 7.5 6.67 4.1 7.28 9.62 1.49 1.87 -0.71 6.46 0.53 5.51 2.79 9.06 3.59 8.18 3.8 5.95 2.89 9.6 4.84 9.19 0.69 2.8 7.59 3.78 0.26 4.72 1.23 2.56 4.68 6.52 8.31 1.25 2.1 5.51 7.87 9.03 7.31 6.54 10.5 7.49 -1.05 1.57 3.54 4.61 -0.33 8.66 9.78 6.7 8.18 9.7 1.29 8.69 3.73 7.92 6.91 7.45 6.08 4.45 8.5 8.69 0.02 5.25 8.87 8.53 2.18 6.95 7.47 1.53 8.23 1.37 6.85 9.81 9.47 5.2 8.99 6.44 3.56 3.55 4.39 9.96 0 8.72 10.1 1.44 5.59 5.89 9.15 9.35 3.88 8.95 0.27 9.31 2.27 0.66 2.37 4.25 5.94 6.94 10.1 3.32 4.55 9.52 2.44 6.49 8.09 8.22 6.36 9.02 -0.02 6.4 1.29 9.49 10.4 4.39 7.97 1.35 2.09 9.24 0.53 2.95 8.65 8.3 5.58 7.62 5.07 0.69 5.65 4.56 4.88 5.06 8.84 8.21 2.91 11.6 4.67 8.63 4.8 4.27 3.09 8.63 3.68 8.16 8.94 10.1 5.79 2.17 8.33 3.2 5.58 5.86 10.7 10.8 6.63 4.68 8.53 8.79 8.48 7.42 2.51 2.12 3.52 7.38 8.07 3.43 6.22 7.19 7.98 9 3.98 5.26 10.2 11.2 10.9 10.7 4.95 12.6 14 8.66 12.2 9.22 7.6 11.6 7.51 10.6 1.87 4.39 8.51 9.67 8.59 10.2 8.84 10.3 13.3 13.3 9.69 9.53 11.6 0.64 8.02 2.12 10.3 0.56 8.83 9.44 11 10.8 11.1 9.3 9.37 9.63 8.16 7.35 8.91 10.2 8.01 10.1 11.1 9.28 2.45 7.21 9.6 9.33 9.86 9.47 4.12 11.1 7.74 6.63 3.36 8.29 5.57 10.3 6.19 9 2.09 10.2 12.4 6.1 8.49 7.61 9.29 10.5 12.2 5.73 9.99 10.1 11.4 9.11 10.5 8.76 9.56 10.7 10.2 6.71 12 10 9.91 10.2 9.46 10.7 8.4 7.65 7.93 9.64 8.88 9.18 9.55 9.15 9.73 9.49 10.1 11.8 10 11.6 6.57 9.08 9.89 10 10.3 9.29 -0.39 9.4 9.99 9.48 10.7 0.16 4.26 9.64 1.52 10.8 3.28 5.05 10.1 8.97 1.7 0.54 8.56 13.1 9.1 8.28 12.8 2.94 10.6 14.4 10.8 9.23 12.4 11.1 9.92 11.2 8.98 9.36 9.38 11.9 10.2 5.46 14.1 11.4 5.72 8.58 9.99 5.53 9.55 8.78 7.71 9.94 11 9.65 9.17 7.6 6.06 8.77 10.2 13 12.3 9.89 6.42 10.3 10.5 7.8 8.69 9.21 0.46 9.32 7.8 3.81 10.8 9.88 2.79 8.43 10.5 11.4 11.2 5.42 11.3 -0.22 5.65 8.65 8.77 9.85 6.12 11.7 9.45 8.57 2.98 7.61 5.55 8.54 8.75 2.24 6.39 10.3 11.5 9.95 2.1 10 10.8 9.82 10.1 11.5 10.8 10.8 8.09 11.4 1.76 11.2 9.34 10.5 10.1 6.71 6.5 9.61 2.93 10.2 6.68 9.69 9.15 7.41 8.89 9.12 9 10.4 6.67 8.13 12.1 7.65 10.4 12.3 9.12 8.77 5.45 7.45 7.36 2.62 11.1 8.15 9.29 1.32 4.19 9.01 9.9 8.45 9.01 9.29 2.93 11.6 8.16 12.3 8.31 3 11.7 1.84 9.52 7.41 9.15 8.89 7.58 6.41 8.72 9.27 7.15 9.56 11.4 7.38 8.65 9.85 9.95 2.33 9.06 7.72 10.4 6.38 4.99 9.33 9.37 12.6 8.65 2.56 10.8 0.72 10.4 9.29 9.5 6.14 10.1 11.7 9.45 8.44 6.3 13.7 8.66 12.6 0.32 2 0.9 11.1 5.52 0.88 11.7 11.3 6.94 13 12.7 12.8 11.5 9.47 4.41 12 11.3 9.65 1.49 10.5 2.23 5.38 5.57 4.98 10.5 7.05 4.52 0.16 1.08 -0.48 2.28 9.47 1.76 10.7 9.24 10.8 10.1 10.9 12.4 12 3.95 13.4 13.1 12.9 7.11 9.22 9.5 11.8 9.67 7.86 12.5 8.1 7.4 4.09 10.2 7.39 4.64 4.22 3.86 10.3 2.56 9.38 9.84 6.77 10 4.43 3.85 9.12 6.9 10 8.54 10 11.8 7.47 12.7 7.53 11.2 9.19 10.9 11.4 8.12 11.6 9.34 10.9 10.3 9.85 12 7.39 8.68 16 16.8 16.1 12.7 11.6 12.4 11.2 8.2 15 14.2 4.16 11.8 10.4 11.9 11 15.8 15 11.3 8.09 7.12 8.29 13.9 13 7.54 12.6 4.9 6.62 2.66 6.04 7.92 7.29 9.87 13.5 12.5 10.9 11.2 13.3 10.3 10.1 11.3 12.2 4.86 8.82 10.5 10.4 9.74 8.81 8.75 10.2 7.72 9.13 9.22 4.42 8.51 0.56 9.31 0 10.1 -1.39 9.08 12.9 9 14.7 12.5 13.3 12.2 12.9 11.6 11.6 11.2 13.7 -0.38 12.8 13.1 -0.98 6.49 3.48 7.84 6.01 8.53 7.63 6.83 2.81 8.34 3.14 8.63 1.79 4.92 -0.56 6.42 7.53 6.35 5.94 5.66 6.35 7.24 0.96 0.95 8.22 5.25 1.87 10.8 5.64 8.36 3.36 10.5 2.37 5.33 4.57 1.1 10.4 9.78 0.93 0.51 2.64 10.2 2.26 6.59 9.18 10.3 10 6.14 10.3 3.98 3.85 9.88 11.6 12.1 10.8 11.1 10 6.63 10.6 4.87 6.92 10.9 11.2 8.68 8.05 10.4 11.2 11.5 13.2 10.6 6.55 7.99 10.9 13.7 11 7.82 7.5 14.3 12.6 14.2 4.86 9.38 14.4 8.03 14.2 13 10.3 12.1 11.3 10.2 12.1 6.28 5.94 13.1 9.95 8.67 6.65 1.54 3.2 4.53 1.38 -1.4 2.93 7.67 10.4 5.01 11 10.8 2.47 5.36 0.97 1.15 0.61 10.1 10.7 2.26 3.62 2.22 8.53 9.73 3.24 9.47 4.85 -0.1 5.98 2.8 8.71 10.1 8.28 8.87 3.94 8.8 7.58 2.25 1.86 0.8 5.31 5.68 8.22 10.7 1.27 8.2 7.31 4.3 9.16 9.47 7.99 5.67 10.2 8.77 7.71 8.57 5.76 7.53 8.36 1.15 2.59 9.07 0.88 0.98 9.21 7.67 2.1 8 6.64 8.53 2.98 3.23 5.07 5.77 7.02 9 8.23 4.85 10.3 8.77 3.32 4.22 12 6.66 3.2 2.57 2.37 4.25 9.49 5.05 0.56 3.62 4.44 9.84 8.05 8.92 0.14 7.91 5.14 5.59 2.75 7.71 4.18 0.56 9.34 0.97 9.17 2.95 11 8.49 7.73 4.27 4.63 6.29 4.12 5.64 1.96 1.31 6.35 2.56 5.76 7.36 5.13 8.66 7.09 7.22 9.49 4.7 0.96 1.83 7.03 4.3 12.2 11 9.77 11.8 3.26 11.3 0.28 3.61 3.08 10.8 11.3 0.84 6.13 9.19 1.49 7.35 0.57 8.6 5.78 8.31 10.3 3.56 13.6 4.63 4.53 2.96 0.89 6.52 3.61 6.33 1.22 10.8 0.45 7.61 9.22 0.66 7.04 7.93 4.89 2.39 2.41 1.08 2.34 2.95 9.21 9.52 8.24 3.89 1.68 6.09 9.06 4.19 0.18 1.77 1.9 2.85 3.81 1.93 1.97 9.71 5.76 8.38 0.6 2.12 8.35 7.82 4.97 4.25 11.4 3.19 10.8 3.18 4.35 0.51 9.01 1.63 3.95 1.42 6.95 4.03 0.62 8.05 4.54 6.03 -0.06 1.51 6.99 9.17 1.53 11.3 0.81 4.56 10.2 12 2.79 2.75 3.64 5.11 10.5 6.68 9.03 5.86 12 7.04 8.13 5.73 6.26 9.55 7.94 4.4 8.16 11 10 1.1 11 4.58 5.7 4.61 7.53 12.2 0.48 8.75 13.9 4.5 7.22 11.7 4.71 -0.15 8.04 6.07 1.49 9.78 13.4 6.77 11.7 7.74 3.28 0.15 6.44 1.53 8.83 3.84 9.18 8.85 13.1 12.4 9.53 6.07 6.33 6.84 10.8 6.14 3.13 8 0.18 2.8 8.83 5.15 3.42 3.46 5.47 7.43 6.06 8.93 4.75 0.14 8.77 7.36 10.8 10.3 2.77 7.98 10.9 7.29 7.9 7.19 6.6 9.74 11.4 7.07 10.3 0.67 5.88 8 6.77 5.39 6.94 6.07 8.32 2.61 4.09 10.7 7.42 3.15 3.71 9.81 8.96 4.47 6.97 3.59 1.72 7.7 4.56 12.3 3.14 9.63 12.7 9.34 8.95 7.08 8.67 9.93 5.3 1.03 9.03 6.02 8.19 9.81 11.5 12.6 1.38 11.4 9.7 9.82 9.79 10.8 9.69 11 9.22 8 0.06 8.35 11.2 -0.55 11.3 8.79 4.12 9.2 9.54 8.13 9.68 10.7 9.69 6.69 3.87 10.9 -0.12 12.2 6.85 5.43 12.2 12.2 7.51 8.6 12.3 4.59 10.3 10.8 7.51 8.54 8.16 9.4 8.73 9.19 -1.3 9.85 9.01 9.94 1.29 9.37 9.03 10.6 7.85 6.1 5.11 2.01 8.88 10.1 7.42 10.4 9.14 13.1 11.7 9.97 5.63 12.3 12.6 11.1 4.63 8.95 8.91 1.28 1.52 3.42 12.7 5.47 8.07 11.4 10.8 11.4 8.17 8.57 7.73 8.51 11.4 7.81 9.2 11.4 8.5 9.71 10.9 9 11.7 11.6 11.1 12.1 7.56 6.54 12.3 9.97 11.8 0.23 4.9 6.48 9.78 4.31 1.59 1.13 10.4 6.37 6.49 2.41 9.32 11 8.95 1.03 4.98 2.1 0.99 8.43 1.43 1.79 3.48 5.29 7.7 7.91 10.3 0.98 1.05 6.08 5.65 7.86 3.04 6.82 4.18 3.58 10.8 6.56 2.92 6.85 5.9 3.26 6.18 0.45 8.48 1.65 7.15 7.28 13.2 5.04 6.01 4.41 10.2 2.85 7.93 8.02 4.27 7.57 2.37 8.31 9.6 7.47 7.21 0.46 -0.35 5.09 1.71 7.93 7.4 6.96 6.92 6.87 8.46 3.11 7.7 6.47 1.49 0.12 1.39 3.98 2.31 8.63 9.62 9.51 1.57 9.79 4.75 8.66 1.93 8.35 11.6 4.33 2.32 7.74 6.33 10.8 7.5 2.38 9.47 1.22 7.91 4.59 7.14 3.77 1.84 8.2 11.5 5.21 2.71 4.45 2.09 4.13 7.37 6.93 5.44 8.34 11.5 0.87 0.54 6.22 8.75 11.8 0.55 0.29 0.1 8.72 6.8 0.01 6.95 11.3 4.93 6.89 3.07 8.94 2.69 9.74 7.99 7.3 -0.44 12.4 10.7 3.72 9.83 0.99 3.81 2.34 12.5 0.58 1.57 4.77 4.27 4.33 11.7 7.5 3.67 4.38 2.31 6.57 0.03 9.88 9.45 10.6 11.1 10 12.3 11.2 10.2 6.47 10.3 5.85 10.8 11.5 8.87 1.24 2.16 15 9.22 0.28 9.79 6.61 2.55 13.2 7.08 2.4 10.4 -0.05 9.82 5.7 4.9 5.69 4.38 9.14 4.71 0.29 1.6 7.88 6.32 6.79 14.5 8.24 10.6 2.79 -0.04 2.31 2.14 2.64 7.43 6.66 -0.12 2.72 2.25 6.6 2.28 9.42 6.35 7.03 4.66 3.37 3.87 10.3 6.77 3.66 9.2 0.76 6.12 9.58 3.07 2.7 11.4 2.75 6.34 4.82 9.43 7.09 1.74 2.06 8.63 4.54 7.25 4.68 5.09 4.37 6.93 8.91 7.31 2.71 5.97 8.12 5.42 3.74 12.8 2.24 6.69 9.37 7.06 8.22 7.34 5.29 6.15 2.86 2.06 4.32 8.73 10.6 0.99 8.32 4.05 7.08 3.24 8.4 6.65 0.28 5.55 6.34 9.19 11 4.28 10.1 2.05 1.48 9.33 4.61 9.44 9.37 5.48 0.38 10.2 12 6.83 4.78 3.64 -0.42 5.64 5.92 7.1 3.32 9.02 2.62 6.55 5.04 -0.63 5.48 8.3 9.92 7.09 1.95 11.4 5.77 7.38 11 2.35 4.9 5.98 5.05 8.32 6.72 1.23 7.47 6.21 10.2 1.19 5.1 8.42 -0.11 7.87 2.54 4.37 3.73 10.7 8.61 8.98 3.09 -0.43 1.43 9.62 5.63 2.45 1.48 4.76 -0.86 7.07 8.72 8.89 7.38 8.08 10.9 10.3 3.35 10.8 -0.58 11.3 1.91 11.2 4.17 9.05 10 11.1 13.1 5.31 1.36 11.3 12.4 12.6 0.95 5.88 3.5 12.9 5.54 12.5 4.22 2.01 10.2 11.2 6.81 9.2 15.6 12.2 10.2 -0.13 13.5 10.4 10.4 9.77 5.37 0.52 6.29 10.8 11.2 12.8 8.44 12.9 14.4 12.8 11.4 9.34 12.5 12.8 -0.3 8.36 5.43 10.2 3.67 8.51 7.89 12.2 11.2 11 7.48 10.3 8.03 5.05 7.09 8.5 11.6 -1.88 6.42 9.21 10.5 8.01 9.12 11.6 3.22 7.32 1.15 11.1 3.16 2.75 7.97 6.35 11 5.98 8.82 4.08 10.6 0.45 8.08 6.59 10 10.4 12.9 7.35 6.22 6.9 10.7 -0.31 -0.19 5.61 9.2 5.46 7.92 7.82 8.9 2.16 6.93 9.22 3.2 6.97 6.76 7.45 7.99 3.52 2.04 6.62 5.18 7.48 6.66 5.78 5.59 8.85 3.12 10.9 5.96 2.42 5.9 10.8 4.81 4.9 1.4 3.68 4.42 6.9 8.07 4.17 0.25 5.6 0.11 5.04 2.2 2.31 0.81 10.4 1.82 5.48 5 6.45 2.9 8.42 0.03 2.1 6.38 3.25 7.89 5.79 6.15 6.62 0.2 8.15 -0.11 3.73 6.64 3.92 10 8.61 1.75 6.73 8.4 10.8 7.69 10.4 8.93 0.73 1.66 3.02 2.03 6.97 8.67 3.99 9.58 10.3 4.59 -0.51 4.34 8.72 11.3 8.46 1.25 6.63 5.42 9.52 0.02 2.23 7.5 2.61 6.1 8.27 7.09 8.49 1.17 7.84 10.1 11.7 0.76 10.8 8.74 8.93 1.63 9.14 11.8 2.73 4.78 3.05 5.05 11.6 4.81 7.46 11.2 9.1 10.4 9.42 10.1 11.1 6.5 9.71 9.99 6.01 9.68 10.3 10.5 11.5 5.17 8.8 0.32 5.32 11.6 7.79 12.7 13.2 6.81 6.9 8.18 7.06 9.57 7.72 16.8 11.7 11.9 14.2 11.5 11.4 10.9 1.84 6.09 5.39 6.92 8.98 10.5 11.6 8.65 8.76 8.5 10.2 9.25 9.74 10.9 9.83 7.82 9.27 1.18 9.85 9.8 0.67 9.98 10.5 8.36 10.1 5.59 5.82 7.31 10.3 9.58 9.71 7.36 11.4 8.56 10 11.8 7.69 8.6 5.49 11.7 4.85 4.9 8.37 12 9.98 7.87 5.01 10.6 6.96 1.44 7.23 6.43 2.85 7.12 8.22 4.04 11.7 6.59 1.6 8.47 8.86 5.96 10.9 9.18 9.58 10.5 12.2 11.1 1.85 9.8 11.2 9.74 8.42 11.3 6.82 3.1 1.02 12.1 10.4 11.9 10.4 11.4 10.6 12.1 12.6 2.6 8.2 8.81 1.32 11.7 11.8 13.5 9.93 9.36 9.77 9.7 11 10.4 8.59 5.35 8.75 9.97 9.3 4.75 8.31 7.08 6 10.2 9.21 9.25 8.45 11.1 10.5 5.87 -0.21 9.15 10.2 8.59 8.61 8.8 8.7 10.2 10.8 7.59 8.7 11.5 9.91 9.24 5.44 9.93 7.98 10.2 10.4 10.2 10.2 10.9 10.7 12.7 11.3 7.7 10.1 12.9 12.7 0.41 8.71 6.98 8.48 12.4 10.1 5.48 8.92 6.39 8.15 11.7 10.1 10.6 8.88 4.74 12.3 5.99 11.6 11.8 9.05 6.21 10.9 12.2 10.1 0.74 -0.15 10.6 10.4 11.2 12.7 7.13 10.7 3.57 7.71 8.91 6.1 5.48 6.02 7.64 8.25 9.01 2.23 8.85 9.9 0.59 10.8 7.67 8.46 10.4 8.32 3.44 1.04 8.23 3.71 2.41 12.4 10.8 4.74 7.76 8.69 10.6 0.99 1.67 10.6 10.8 2.16 6.19 5.03 9.98 10.2 2.84 2.11 3.24 3.17 7.77 1.51 7.95 1.62 3.94 3.67 9.82 9.63 2.54 6.67 8.76 4.42 7.31 2.07 4.12 6.25 3.74 11.5 7.55 -0.39 7.25 1.59 8.81 7.75 5.25 8.51 6 0.04 8.47 10.2 1.49 6.67 3.49 0.54 1.65 2.52 8.6 9.35 1.25 1.91 8.28 7.46 9.08 7.11 11.2 1.77 6.51 5.44 7.94 7.16 3.56 8.93 8.62 7.01 3.34 5.77 8.6 7 1.65 6.37 6 0.93 4.6 6.35 3.86 0.47 1.02 1.03 0.66 4.93 2.49 2.28 8.61 1.61 6.82 4.12 3.01 6.89 5.94 2.29 5.97 11 0.36 0.6 1.12 0.42 0.03 2.18 6.36 1.09 0.81 7.45 5.02 1.54 2.97 10.5 3.06 9.6 7.8 1.16 9.75 10.4 12.8 7.63 4.72 7.98 4.75 1.37 9.49 12.5 8.07 6.78 7.02 9.69 5.23 7.62 8.41 8.2 3.52 9.06 11.2 8.92 5.86 7.61 9.42 11.6 8.78 10.2 7.69 9.59 1.66 8.93 9.49 9.26 13.1 1.95 13.7 8.7 9.02 8.77 10.1 9.39 9.98 8.57 9.12 8.7 7.35 11.2 2.5 1.08 0.43 10.3 7.61 7.72 10.5 9.75 0.92 6.79 14.6 9.71 10.3 9.28 1.19 6.36 13.1 10.8 7.81 11.6 10.9 9.46 7.89 10.5 11.6 8.13 4.44 5.89 10.9 11.3 10.3 8.9 8.91 1.35 10.3 9.41 13.8 10.5 9.91 8.39 12.2 6.11 12.3 4.25 4.47 11.3 12.1 11.7 13.3 5.1 11.1 10.1 10.5 4.69 2.61 9.7 8.34 9.01 8.67 13.9 7.59 11.5 10.4 10.4 12 11.1 10.9 11.2 9.72 10.9 5.74 10.2 10.8 9.77 10.6 10.7 10.4 11.2 11.4 10.4 9.6 11 10.8 11.7 10.9 10.2 11.6 10.4 10.1 11.1 11.1 11.6 8.66 11.6 11.5 11.8 11.3 11.4 7.71 10.7 7.29 13.4 12.9 11.3 10.5 2.21 6.11 8.65 6.61 9.28 -0.12 3.15 4.63 1.06 10.2 7.49 9.55 9.72 6.34 9.28 11.7 14.5 10 1.67 10.3 7.21 5.15 9.84 8.46 7.16 7.44 11.5 7.71 10.9 8.68 8.57 9.35 11.6 9.29 10.6 11.3 9.95 9.77 8.9 8.98 9.58 9.56 10.1 1.16 9.65 9.38 10.4 4.5 1.15 12.3 13 5.29 11.1 11.2 7.04 9.29 9.88 5.67 10.1 4.95 1.99 5.5 11.6 11.8 12.8 10.1 11.7 10.2 11.4 10.3 5.94 10.5 13.2 3.05 8.15 10.4 9.84 8.81 10.3 9.73 10.9 8.79 9.14 0.7 9.91 3.32 10.7 8.86 9.3 5.82 13.3 3.71 3.4 12.2 6.23 7.29 -0.47 1.21 4.91 10.8 10.1 10.1 8.09 11.8 8.96 0.82 9.39 8.43 5.29 7.75 13.1 9.41 10.8 0.29 8.89 3.2 7.13 1.9 -1.68 6.27 0.52 6.37 4.43 5.69 3.75 8.26 12.9 10.5 12.8 9.76 10.4 6.9 10.4 7.96 7.77 9.82 8.66 10.8 8.52 1.02 9.08 5.72 5.05 8.03 10.7 6.04 11.5 8.86 0.1 6.38 10.8 8.47 0.82 4.02 5.76 0.08 13.2 10.1 8.64 10.8 10.5 3.87 11.8 8.81 4.85 4.94 3.31 4.59 5.68 2.25 4.59 10.3 10.1 12.9 5.9 6.22 7.5 7.2 9.02 1.37 5.02 7.25 9.29 11.9 8.96 8.95 8.34 4.83 8.26 10.9 6.34 10.9 4.81 5.81 5.45 8.92 11.9 6.98 5.24 4.83 9.82 7.95 5.16 1.28 4.4 7.8 7.26 9.59 13.5 5.5 7.59 12.2 -0.38 1.08 4.39 13.3 7.22 10.4 7.52 10.5 9.47 9.07 10 11.1 7.01 11.2 3.68 9.13 8.84 10.2 7.3 13.5 11 0.98 11.1 13.4 0.01 8.16 10.6 9.09 11 6.01 10.2 8.45 7.61 6.6 9.41 3.09 9.96 3.9 9.6 6.56 5.92 10.7 9.9 6.9 4.05 5.15 0.57 5.84 9.71 10.8 11.6 7.41 10.4 10.1 9.42 1.82 2.71 3.53 11.3 6.69 7.03 11.2 8.07 6.81 0.17 13.6 9.6 9.83 9.23 10.4 12.5 8.26 7.82 11.7 13.6 7.59 0.68 13.3 2.31 8.55 0.01 7.41 10.2 10.9 10.5 9.84 10.1 9.16 9.13 9.59 7.29 8.42 8.08 10.9 8.63 9.6 1.58 8.8 9.4 11.9 8.73 10.8 9.32 8.35 8.95 10.4 10.7 11.5 7.8 8.68 11.5 8.62 9.64 8.5 10.9 9.89 9.72 10.9 11.8 9.81 10.7 6.56 9.22 6.62 11.1 4.27 8.15 9.89 11 10.5 5.51 8.31 9.86 3.48 8.29 8.86 10.2 10.1 9.09 9.53 9.94 8.05 10.8 7.7 9.22 10.4 11.8 10.9 10 11.5 -0.34 10.4 11.9 0.36 11.3 9.36 9.19 7.8 9.71 8.89 11.1 8 9.67 11 9.93 8.56 10.2 10.5 7.46 8.22 8.12 8.33 9.86 8.54 11.7 10.6 10.9 13 9.73 9.93 9.37 11 9.55 10 9.78 9.85 11.1 8.51 8.72 11.9 10.3 10 11.4 2.03 9.36 5.86 8.32 9.99 10 10.5 7.97 9.15 8.41 9.08 9.4 11.8 9.78 10.4 8.72 10.6 7.3 11.7 5.93 10.3 11 9.06 8.32 11.1 6.66 10.9 8.98 10 4.45 8.89 2.51 10.3 9.94 8.56 7.04 8.46 7.73 10.8 10.9 11.1 8.94 8.58 9.47 8.68 9.88 8.94 11.7 7.74 9.71 9.02 8.21 7.82 7.49 9.14 6.66 9.74 10.1 8.78 7.47 0.4 11.7 0.11 10.6 2.77 10.9 9.69 7.27 7.67 9.83 10.2 9.26 10.1 2.3 10.2 10.1 10.4 9.03 10.4 8.94 12.3 10.2 11.5 9.55 7.22 9.05 9.85 2.4 10.3 10.7 9.24 9.69 11 9.03 10.2 9.96 10.2 3.8 6.36 5.78 11.5 10.3 10.3 10.7 8.65 6.52 6.9 10.1 9.35 8.51 12 7.41 11.5 9.94 6.35 3.07 11.3 8.29 8.72 9.3 9.95 10.4 8.02 9.91 9.28 7.18 11.3 7.82 10.5 2.93 10.6 9.93 4.04 8.57 9.5 5.3 6.73 6.15 5.65 9.04 9.03 2.29 9.19 6.82 9.09 9.9 7.76 9.42 10.1 10.9 10.9 6.13 11.2 8.5 10.7 4.45 6.28 6.62 10.2 10.7 8.01 10.2 10.2 10.4 10.1 10.1 10.4 3.45 9.99 0.36 5.83 8.54 10.1 9.33 9.17 3.67 7.63 10.1 8.94 10.9 1.58 11.7 10.8 8.84 11.5 8.44 8.43 9.01 5.85 8.38 9.93 2.15 8.18 12.3 9.63 10.7 3.81 10.4 8.6 8.42 11 10.2 13.1 8.4 10.5 10.4 8.15 7.78 9.03 7.74 9.52 8.46 8.14 8.15 10.5 11.2 2.65 8.24 10.9 10.1 8.19 9.85 7.49 1.55 10.7 9.07 11.4 11.1 2.84 9.27 5.52 9.39 8 1.72 11 11.1 10.2 2.07 9.81 8.1 8.07 9.68 4.31 9.8 8.71 10.6 9.86 7.65 12.5 8.76 11.2 8.8 9.94 10.8 12.1 11.1 11.7 8.11 10.3 9.12 9.83 8.81 9.16 4.96 10.6 11.2 9.55 10.3 9.83 8.58 9.05 10.4 5.94 8.87 7.76 6.36 9.94 9.62 10.4 9.72 9.95 8.79 9.36 8.78 8.75 9.1 10 9.03 11.2 4.01 9.76 7.7 8.4 5.37 5.42 8.69 10.6 8.34 10.1 10.9 5.02 10.5 10.5 9.93 10.8 4.5 11.6 10.1 10.9 8.35 11.2 10 11.6 9.22 11.9 12.2 10.7 11.4 7.58 11.5 8.19 12.4 9.87 9.55 10.7 8.24 13.2 9.85 3.32 8.79 10.5 10.6 10.4 8.81 11.7 8.05 11.1 7.91 9.99 10.4 11.7 11 9.82 9.6 10.6 9.69 11 10.5 9.9 7.84 9.62 9.21 11.7 9.62 6.34 9.54 9.39 6.81 9.74 7.56 10.8 8.88 10.7 9.36 12 8.75 13.5 7.03 5.56 8.77 7.99 4.37 6.15 10.2 9.05 10.2 10.1 8.88 10.6 13 9.92 5.21 8.99 0.19 13.2 7.82 7.02 8.93 7.46 10.9 8.8 1.65 10.8 3.08 8.76 11 12.7 8.94 10.6 2.17 9.58 5.8 7.7 6.12 8.19 9.67 5.6 11.8 10.4 10.4 2.62 10.1 8.83 9.8 11.3 11.3 6.15 0.61 9.01 9.23 -0.72 9.16 10.6 9.3 10.7 3.46 10.4 11.8 4.81 8.1 6.51 8.18 9.1 9.96 10.5 9.2 8.96 8.94 9.03 7.92 9.28 6.96 9.73 9.14 1.72 1.3 9.73 6.35 11 10.8 10.6 9.95 12.2 9.06 2.83 9.07 8.93 11.4 7.35 11.5 0.61 7.16 9.01 14.5 9.71 6.63 10.2 10.8 3.69 15.2 11 8.14 8.14 9.96 12.7 9.5 8.18 6.16 3.73 5.98 3.76 12.1 1.83 12.5 0.6 10.1 10.6 9.19 9.98 9.66 11.7 1.85 9.58 10.6 14.2 3.01 11.6 11.6 10.2 6.62 10.4 7.68 7.57 8.9 10.8 9.05 8.76 9.52 9.86 9.74 8.14 11.3 7.25 9.1 9.88 9.1 5.48 10.2 10.9 10.2 9.99 10.3 10.2 0.34 9.87 10 10.4 8.46 10.9 8.79 3.1 13.5 7.87 8.64 7.7 8.94 4.92 6.86 9.75 10.3 10.7 9.98 11.2 9.07 10.5 8.6 8.17 9.54 9.26 5.97 8.79 2.79 8.41 5.44 5.91 6.63 8.07 11.6 0.56 7.05 8.04 6.42 8.86 10.1 9.5 13.3 3.06 8.97 9.84 9.85 5.04 6.26 3.63 9.7 10.6 10.4 6.27 11.3 9.29 2.18 12.3 9.64 10.3 11.4 10.2 9.92 10.2 11.2 0.26 9.63 4.4 11 5.32 10.9 5.07 6.31 1.22 5.64 12 10.4 9.83 10.1 9.94 8.63 8.46 8.62 6.28 5.43 3.17 2.25 7.82 11 7.6 5.33 7.49 4.43 12 1.23 9.67 7.12 9.07 6.33 10.9 4.12 10.7 9.51 8.68 8.63 8.75 9.95 7.5 8.6 9.25 8.46 9.88 10 8.07 8.74 8.97 1.62 5.99 6.68 5.95 8.4 1.66 8.6 5.04 0.28 7.76 10.2 6.38 9.24 5.11 10.5 10.4 11.2 4.05 9.93 9.49 7.8 1.99 8.79 2.57 8.26 7.58 7.24 8.63 7.82 10.6 9.77 11.9 9.45 5.55 7.8 4.61 9.39 8.94 9.48 10.5 9.92 8.01 4.32 8.94 9.11 11.4 10.7 10.5 2.68 4.79 9.51 8.72 9.94 11.8 9.75 7.93 10.8 9.84 3.31 6.67 10.2 9.57 10.3 11.6 10.6 11 11.1 3.67 10.6 9.81 3.02 4.43 10.8 9.43 8.67 9.49 2.34 9.59 4.84 5.52 9.83 9.54 6.75 10.3 10.3 10.8 10.6 7.89 8.58 1.21 0.19 11.8 10.8 11.6 8.67 5.59 9.26 8.35 0.75 9.86 8.93 9.56 11.9 5.27 9.98 10.4 8.65 10.3 8.43 8.52 9.77 8.34 9.96 8.09 10 9.3 9.89 9.18 9.48 9.91 10.9 8.86 8.94 11.3 8.66 9.51 9.55 9.33 1.88 8.22 6.65 8.48 8.58 8.89 9.18 10.4 7.7 9.67 8.34 8.09 9.92 3.33 9.08 7.27 10.4 10.4 8.03 7.68 8.25 11.8 9.57 11.1 6.99 10.7 9.39 4.64 9.64 8.19 9.96 7.93 8.27 4.24 9.8 9.01 7.1 6.86 9.35 7.56 8.44 9.9 0.96 10.9 5.48 9.83 10.8 8.94 7.08 3.72 8.66 9.78 7.44 10.3 11.5 3.73 5.03 5.79 6.45 11.8 9 2.37 10 10.2 10.3 8.64 10.9 2.6 12.3 9.92 8.44 8.99 8.3 9.89 9.09 9.17 1.26 9.95 9.06 8.02 8.85 8.82 0.95 5.26 9.56 1.25 11.9 8.4 4.13 10.6 11.1 6.89 3.59 9.14 5.65 10.6 2.65 5.46 2.35 7.7 6.41 8.78 13.2 7.31 6.46 9.3 9.29 1.37 10.3 7.7 13 10.8 8.62 8.81 10.6 13.4 7.27 9.26 10.9 6.13 8.46 4.99 8.52 9.67 10 8.28 8.97 7.11 8.21 7.4 8.49 8.03 9.63 3.02 7.87 11 7.85 8.39 10.4 8.52 8.46 8.82 8.21 8.55 6.93 3.74 6.82 -0.15 9.14 7.99 7.13 0.47 9.83 8.18 9.73 9.42 4.19 9.07 9.45 9.32 10.3 10.3 5.71 10.1 8.59 9.64 5.88 8.57 9.1 10.4 8.76 1.9 9.58 8.79 9.28 10.1 7.7 8.85 8.26 9.84 6.29 11.1 9.03 9.11 9.71 9.31 7.24 9.91 8.02 10 8.32 7.13 8.09 9.53 8.59 10.1 8.68 9.87 7.48 8.56 11.2 10 9.17 9.31 8.41 10.8 9.1 8.95 4.9 7.73 9.13 7.03 8.46 7.02 7.87 9.18 5.2 9.95 8.56 9.35 9.24 8.98 10.8 8.28 11.5 9.5 7.49 10.2 7.58 11.6 8.69 11.2 10.1 11.1 9.4 10.1 10.1 8.96 8.86 6.94 8.48 9.78 9.75 1.6 8.56 10 9.75 11.7 6.89 9.04 4.38 9.57 10.3 10.7 9.89 9.87 9.45 8.72 9.4 8.47 8.21 7.79 7.84 7.73 12 8.88 10.5 6.42 10.1 7.44 9.46 2 9.44 8.76 7.88 7.92 10 10.2 7.11 11.5 9.43 10.8 4.81 8.01 7.42 9.03 10.5 7.98 10.3 6.42 9.67 1.03 8.59 12.6 8.2 7 11.8 7.55 7.78 11.4 11.2 6.87 12.1 12.4 11.4 5.69 9.42 9.58 11.8 8.58 8.6 9.58 7.67 10 11.5 7.83 9.71 7.14 8.55 7.94 9.43 9.2 6.28 10.7 3.51 0.56 10.4 7.07 10.7 7.37 3.87 8.26 8.57 9.54 10.7 8.69 5.86 6.75 10 8.05 10.1 9.54 8.05 11.3 8.41 11.2 9.31 9.47 7.69 10.5 9.71 7.95 7.2 7.16 3.17 8.46 6.5 4.94 4.69 7.58 2.38 7.12 5.18 11.4 7.52 5.61 6.77 9.93 6.31 9.06 10.3 6.05 10.5 9.37 11.7 7.7 5.67 4.02 8.05 2.24 7.98 8.03 9.73 6.83 8.21 10.2 4 11 9.64 9.69 8.89 7.38 7.39 5.82 10.5 9.16 10.2 8.83 10.3 8.36 8.42 9.76 8.91 10.8 9.56 9.75 6.4 9.2 9.35 7.29 9.45 5.98 9.66 8.91 8.3 8.56 5.49 2.51 9.75 10.5 9.97 8.51 10 9.33 8.25 9.35 10.4 9.59 9.61 11.4 5.46 8.17 9.1 9.3 8.66 9.13 7.94 9.37 10.6 10.5 10.5 10 8.81 9.21 8.06 9.03 9.65 6.54 7.96 8.21 10.2 11.1 2.57 8.31 8.83 8.65 7.86 12.5 7.12 7.64 11.2 8.7 6.69 9.21 9.51 8.11 9.37 3.14 9.99 8.39 9.53 7.95 0.41 10.1 9.18 9.35 8.4 1.63 9.1 10.4 10 6.46 8.85 8.24 7.91 10.1 8.24 10.4 7.32 9.28 7.11 10 6.2 9.27 9.85 7.45 8.89 9.92 11.6 3.32 10.6 7.35 7.08 9.78 9.69 9.79 4.72 8.85 6.74 10.1 3.15 9.02 10.2 9.59 7.74 9.29 12.9 9.68 4.74 5.29 10.5 10.7 6.86 7.56 10.1 9.91 8.55 11.2 6.99 8.58 8.32 8.5 10.2 10.5 5.83 3 8.89 7.16 8.82 9.59 3.52 9.93 9.48 10.9 9.23 9.71 5.29 11 9.46 8.44 8.1 9.34 7.74 10.8 8.14 8.29 7.88 1.91 8.95 7.5 7.86 0.94 9.12 10.9 2.11 8.41 8.68 11 11.2 6.3 8.44 7.26 4.05 7.73 8.74 10.7 0.38 8.75 9.44 1.62 10.3 5.91 9.28 11.4 9.32 10.7 10.9 9.2 8.55 7.45 7.27 9.61 9.27 8.53 10.3 9.09 10.9 9.35 6.02 10 8.68 10.3 9.39 5.87 4.29 8.38 8.64 9.01 10.4 9.92 10.4 4.69 7.35 10.8 10.6 10.8 10.1 9.61 10.4 9.68 10.5 6.25 6.15 9.56 10.2 1.85 6.14 10.2 11.3 10.1 7.1 7.99 2.63 10.3 9.02 10.1 7.18 12.9 7.76 8.8 11 5.44 8.61 11.6 11.6 6.02 8.15 1.93 8.63 8.31 8.54 8.56 -0.86 -0.08 8.26 5.21 7.58 8.33 9.33 -0.27 9.38 12.8 9.17 10.2 6.85 11.2 8.5 2.4 9.88 8.02 10 10.5 9.02 10 0.13 9.73 10.2 7.66 3.41 7.33 5.98 9.09 1.68 11.3 0.16 10.8 6.78 5.01 10.2 9.13 5.68 1.32 0.52 5.1 9.39 5.42 10.2 11.6 2.61 2.61 7.45 7.67 10 10 9.77 8.48 7.81 3.51 8.97 8.05 10.2 9.91 11 2.31 10.6 9.83 7.88 6.3 10.7 10 7.21 9.5 6.59 10.6 9.35 7.17 2.18 9.32 8.45 8.6 9.88 9.59 8.31 11 7.52 8.47 11.4 12.7 1.32 9.11 10.3 7.42 8.4 8.67 11 10.8 10.1 8.59 9.95 10.4 10.3 9.56 11.1 7.19 11.7 2.94 10.8 8.7 8.77 9.05 7.98 8.76 9.55 8.69 8.45 6.36 12 9.65 10.5 10.4 8.42 9.2 10.3 10.1 10.7 11.2 5.53 9.99 9.51 9.6 6.35 11.1 11.2 11.4 8.97 8.13 7.43 10.3 11.1 9.76 6.62 8.51 9.75 8.53 10.5 8.21 6.43 10.2 8.65 8.17 8.32 10.3 12.2 8.68 9.39 8.97 5.14 10.7 9.34 9.74 4.27 9.55 9.72 10.6 1.62 10.7 6.21 10.6 11.2 9.57 6.79 9.8 10.7 7.26 10.4 7.33 9.8 5.18 4.48 4.9 9.87 8.35 10.1 9.04 8.51 9.82 6.67 8.17 10.3 9.32 8.85 5.46 8.68 11.6 9.77 6.32 3.83 8.61 10.1 11.4 11.4 10.2 10.1 10.8 9.75 8.96 9.86 9.24 9.05 11.9 11.2 8.15 9.03 8.14 10.3 8.08 11.6 10.1 9.47 8.12 9.08 9.4 6.12 6.82 9.8 6.68 9.94 8.69 9.89 10.7 8.91 9.68 7.78 9.92 5.63 9.26 8.54 9.68 6.77 7.93 7.2 9.19 9.36 8.83 8.62 7.61 8.19 4.55 7.69 10.3 5.34 8.46 8.94 8.82 8 8.31 9.47 3.18 7.73 -0.34 10 10.6 8.48 9.65 7.97 4.9 9.68 5.06 7.04 7.34 8.85 0.96 6.54 9.41 9.08 5.48 9.35 10.7 5.44 10.3 8.59 8.23 9.15 9.91 8.75 9.65 9.69 10 10.2 8.11 9.84 9.85 9.47 7.39 10.1 7.37 9.59 11.4 8.69 8.92 9.56 12.2 8.29 10.8 8.85 4.02 11.2 5.91 10.8 8.53 10.4 10.9 9.75 9.33 11.5 8.59 10.1 3.84 8.68 4.86 9.07 9.26 9.35 9.5 6.45 10.5 3.48 3.77 1.35 12.9 10.1 7.85 10.6 4.14 9.64 8.93 8.76 6.89 10.7 10.8 11.1 7.27 9.62 10.1 11.7 9.23 10.6 8.94 8.77 8.24 4.26 11.8 8.47 4.21 8.89 2.96 8.11 6.03 11.5 11 10.1 8.22 9.48 9.84 4.45 4 10.4 12.4 11.3 9.17 10.1 10.2 6.64 10.3 10.4 9.65 8.72 7.18 3.91 9.9 -0.16 10.9 9.71 9.79 4.77 11.7 7.16 9.61 11.7 9.35 8.8 9.97 2.28 8 6.89 4.76 9.64 1.1 1.17 3.59 8.55 3.09 3.67 1.15 2.09 2.53 2.03 2.6 2.21 6.45 2.41 10.4 2.87 1.85 -0.6 0.34 2.87 10.5 -0.1 5.84 6.46 4.43 3.48 3.7 6.04 4.26 4.64 4.89 9.94 6.34 4.48 2.54 5.53 1.27 0.95 8.79 4.35 0.31 3.61 0.16 11.5 5.09 8.25 9.57 3.59 8.19 11.2 1.06 7.93 7.86 7.54 10.7 1.66 6.65 9.22 6.19 10.8 10.6 2.02 9.99 10.9 5.66 12.2 10.6 8.3 8.99 8.2 10.8 7.4 9.7 0.93 1.47 10.1 10.3 11.3 9.48 9.11 9.45 5.23 6.81 10.7 5.08 10.8 12.6 9.59 7.67 9.27 2.66 2.99 11.2 4.66 9.93 5.83 0.04 14.6 3.99 8.41 5.07 9.99 6.46 9 10.2 8.7 10.9 8.94 11.2 10.2 7.47 11.6 9.53 8.58 4.71 3.2 6.82 1.79 9.17 0.37 10.2 7.05 11.1 9.73 15.8 4.21 0.02 12.5 9.27 11.7 10.2 11.7 10.5 10 11.7 8.86 11.1 10.4 9.78 7.12 8.48 10.9 11.6 12.8 11.1 10.8 10.6 11.2 12.6 7.98 11.7 10.6 10.7 5.51 11.1 7.61 2.07 11.2 9.65 9.52 9.29 11.3 9.11 4.38 7.55 12.3 11.7 7.33 7.46 10.3 9.39 8.16 6.86 7.27 12.8 7.68 8.45 5.2 7.74 11.1 10.4 11.3 8.84 11.5 8.73 9.45 12.7 6.53 11.5 11 10.2 9.88 9.95 9.31 9.45 7.79 10.9 8.99 10 12.2 9.15 10.2 7.96 7.06 10 8.51 13.2 5 7.69 2.87 7.54 5.51 10.5 6.34 8.59 3.91 4.84 12.5 7.42 3.75 8.66 11 7.42 7.59 9.19 11.8 10.5 9.07 10.8 10.1 9.71 10.6 9.94 9.98 8.23 4.14 9.91 8.32 8.79 10.9 8.43 11.8 1.72 10.3 10.3 9.32 11.6 9.83 9.27 0.79 9.53 9.09 9.47 11.8 9.74 9.63 11.6 9.96 4.46 10.3 10.2 0.07 10.9 11.7 12.1 6.49 9.96 8.71 6.6 11.8 4.6 10.9 1.73 9.8 2.21 7 7.01 8.44 12.1 2.14 7.65 8.28 10.3 2.83 8.09 8.3 9.89 10.1 11.1 5.75 7.66 6.45 9.87 7.04 9.59 10.2 8.74 1.49 9.43 9.82 11.5 10.7 10.4 7.23 12 3.97 11.4 11.9 11.2 7.92 8.3 7.32 10.7 9.81 9.68 8.21 12 9.77 3.55 9.24 2.07 10.3 6.15 8.72 5.7 4.57 7.27 11.2 10.1 9.72 12.1 9.71 10.9 11 9.73 7.94 8.34 7.6 9.26 8.67 8 11.6 4.22 9.98 11.9 11.9 1.87 8.04 7.63 8.55 10.5 12.9 7.73 8.47 12.8 8.81 6.91 6.62 8.8 9.47 9.32 4.92 10.6 6.76 11.5 10.8 9.9 9.99 9.63 8.83 9.87 6.92 7.01 12.4 8.29 9.92 2.96 3.87 9.92 9.71 9.79 5 6.15 9.91 11.4 5.54 7.72 9.77 5.72 5.94 8.74 1.68 8.15 7.66 7.26 5.06 9.95 9.6 6.67 6.47 2.98 8.74 7.13 0.37 0 11.1 10.1 -0.89 9.05 8.58 10.3 9 11.1 6.97 11.8 9.32 9.19 6.36 8.14 4.43 5.71 10.8 12.2 10.1 9.6 2.49 0.59 3.92 1.57 9.76 9.12 6.83 8.92 0.09 10.3 9.49 9.48 4.44 6.43 7.29 8.84 2.21 4.83 10.7 10.1 4.66 9.77 10.7 7.39 8.35 9.99 6.43 8.33 9.75 8.26 7.27 3.53 7.35 10.4 8.41 5.97 10.1 9.58 5.68 -0.21 8.79 0.77 10.3 1.97 4.15 4.65 10.2 8.62 11.8 8.37 8.11 10.6 9.98 9.46 9.39 8.11 11.7 6.22 9.63 7.84 8.59 2.63 2.47 0.23 0.03 8.9 11.1 8.25 11 11 9.34 11.9 5.69 4.46 5.99 8.66 12 4.45 7.71 9.43 6.85 5.44 5.91 5.99 9.67 5.71 10.4 10.2 0.57 7.86 7.06 7.65 6.55 11.4 9.26 8.75 5.58 7.13 2.37 8.49 7.19 2.13 15 8.25 5.89 9.97 6.96 3.68 5.3 7.47 0.49 9.11 9.92 1.7 10.6 10 8.35 9.22 7.82 9.91 9.92 9.31 9.62 8.15 4.61 2.14 6.59 9.46 7.3 7.72 9.75 3.28 7.8 9.89 10.1 8.88 9.11 7.03 8.91 1.44 6.55 8.27 9.91 8.79 9.59 9.38 7.26 -0.04 12.9 8.49 6.69 9.73 9.42 6.74 7.69 3.18 9.71 9.08 9.16 11.9 10.6 8.04 3.11 8.25 11.2 7.92 10.2 10.2 10.1 8.99 8.41 9.65 9.04 8.21 7.87 7.54 12 7.71 8.12 9.54 11.5 10.3 5.23 5.64 7.45 5.77 6.87 1.87 8.17 7.01 6.94 9.01 9.85 9.24 6.47 9.15 7.28 -0.05 10.3 9.1 8.73 9.89 9.96 7.62 9.78 7.97 10.2 9.09 3.81 8.37 4.43 8.81 7.38 5.18 7.05 8.66 11 6.99 5.82 8.77 10.3 8.26 5.89 7.16 8.37 0.98 9.91 6.99 4.86 9.86 8.54 11.1 9.5 8.74 10.1 9.44 10.1 9.72 9.86 9.16 6.98 11.1 11.5 10.9 10.2 11.1 8.95 2.2 6.64 9.76 10.2 10.1 3.47 7.22 0.8 8.31 8.01 4.94 11.6 9.35 4.52 2.38 8.76 10.8 3.5 10 11.2 12.8 6.11 9.75 9 10.6 8.3 1.6 9 0.49 5.08 6.58 2.57 8.03 8.89 2.12 10.3 9.97 8.59 10.6 8.85 10.2 11.3 8.06 10.8 11.9 11.1 9.27 7.42 8.42 9.54 10.2 9.27 8.18 9.86 10.5 9.14 10.1 10.6 10.1 10.1 12.8 7.65 3.07 10.5 10.8 8.9 9.2 10.1 9.73 9.55 5.29 11.6 9.53 10.6 8.02 9.64 10.2 7.47 7 8.47 6.28 6.65 8.57 6.71 7.58 7.22 6.09 10.1 10.8 9.33 9.45 6.79 9.32 9.65 9.68 11.3 10.1 10.4 8.47 8.04 0.67 9.7 2.37 1.11 11.5 8.01 10.2 11.6 9.8 10.9 6.13 0.24 8.46 9.29 9.88 11.3 10.1 11.9 9.19 11.5 8.8 3.13 8.74 9.54 8.61 11.5 12.9 11.2 8.38 9.12 8.87 12.2 11.8 12.2 7.2 7.94 5.55 7.37 7.23 6.72 10.2 6.81 10.9 11 10.5 12.8 11.2 11.8 11.4 10.4 12.1 11.1 10.8 6.69 12 8.48 9.59 9.91 1.91 9.78 5.49 9.3 9.95 7.5 10.6 12.1 8.78 4.76 9.28 5.26 10.5 9.23 7.04 9.66 7.98 0.06 8.6 7.56 11.5 11.3 7.54 8.77 10.5 10.8 12 9.53 7.56 1.5 9.87 10.1 10.4 1.87 5.95 11 8.54 -0.48 9.11 8.01 9.78 12.6 1.42 7.83 10.9 9.21 8.13 8.69 11.6 2.05 2.01 0.7 12 6.43 4.62 0.35 13.2 9.04 -0.24 7.63 7.12 3.63 10.8 9.3 4.87 7.23 10.9 9.45 7.72 10.9 10.2 7.58 3.21 13 9 10.1 9.91 9.65 9.41 8.38 9.67 10.1 -0.16 8.33 10.4 8.52 3.91 0.12 11 7.55 11.3 8.67 10.5 17 9.45 9.77 3.55 8.96 3.41 3.47 10.9 3.33 10.7 8.59 8.17 3.67 10.5 2.99 10.1 11.2 10.1 11 10.5 4.85 1.76 7.67 9.97 0.81 8.69 8.64 8.63 3.3 6.71 9.67 1.58 9.76 2.98 0.42 8.68 12 4.96 10.2 11.1 10.6 0.12 8.8 8.42 10.4 10.2 10.3 7.26 9.21 9.55 9.1 3.73 9.95 8.68 11.2 9.63 10.8 8.74 9.81 9.23 11 8.67 9.11 10.9 10.1 0.08 9.58 10.4 6.87 6.24 9.56 8.54 9.35 9.41 2.11 0.23 4.43 8.57 4.54 9.8 10.3 9.01 10.7 8.57 8.53 6.61 8.32 9.91 5.83 6.92 1.75 8.92 4.88 8.32 9.15 8.89 1.25 10.3 9.53 9.01 9.74 15.1 14 14 13.3 8.36 10.1 14.2 4.2 15 10.4 14.6 14.1 12.9 14.1 14 11.3 14.4 10.8 14.6 3.18 12.8 12.9 10.4 12.9 13.7 12.9 14.3 13.8 14 14 13.9 14.1 12.7 13 11.8 14.4 14.1 12.7 9.63 11.7 13.3 5.43 13.9 13.7 13.8 10.5 9.69 12.3 12.8 13.3 14.9 11.6 15.3 2.77 3.26 5.22 5.62 5.35 13.3 3.52 4.37 14.8 10.3 7.68 10.4 9.04 10.1 13.4 14.2 13.5 12.5 14.7 13.4 12.4 13.8 12.7 13.1 13.9 13.1 8.93 14.7 14.2 14.2 13.2 13.3 14.3 13.3 9.74 7.54 13.2 10.4 11.6 5.42 11.1 13.9 9.5 9.86 11.5 10.8 2.64 5.85 9.85 11.5 6.57 9.36 11.3 10.3 9.76 5.27 3.37 1.69 4.55 4.38 10.4 5.18 5.61 11.5 1.92 14.7 7.21 7.85 13.1 13.8 3.45 8.32 9.67 12.1 13.3 10.6 11.2 7.65 5.23 9.09 10.8 9.15 9.66 12.2 7.7 7.44 11.4 10.7 10.4 4.7 9.23 9.4 8.43 13.1 5.78 8.41 10 6.73 1.65 1.46 2.85 0.67 13 4.05 0.61 6.19 3.42 9.81 3.61 4.94 10.9 9.13 11.9 1.69 1.93 9.29 7.98 -0.33 0.77 9.34 11.5 5.36 9.1 5.56 8.89 6.29 2.01 6.63 10 8.1 7.22 9.46 4.75 6.71 9.41 9.97 13.4 7.88 2.21 10.2 13.3 11.8 10.1 10.1 10.6 2.95 9.72 10.5 11.8 9.21 9.67 9.55 8.69 4.87 7.58 8.63 5.72 9.39 10.5 10.8 11.2 8.38 10.2 10.8 7.68 5.1 8.01 10.6 9.56 11.5 7.13 8.84 2.98 0.48 9.96 8.13 7.55 7.64 7.31 10.2 2.42 11.5 6.94 10.2 9.52 7.55 10.8 8.27 10.6 3.85 8.83 8.44 6.98 8.58 11.2 8.69 5.75 10.6 8.54 7.7 8.77 6.9 9.46 10.5 8.86 9.4 4.38 12.5 6.3 3.39 9.45 9.3 7.44 7.78 8.56 12.1 3.57 10.8 8.82 0.21 6.15 8.62 5.21 11.7 7.38 8.87 7.07 4.35 7.97 8.67 10 8.23 12.1 10.1 8.38 11.1 6.79 9.42 8.6 7.82 10.9 4.22 7.58 7.95 2.19 9.39 6.01 10.3 1.7 9.21 1.43 8.57 8.45 3.81 7.48 7.45 8.49 12.1 10.6 6.66 10.4 7.01 11.3 4.4 6.86 6.73 7.94 5.45 9.77 12.9 1.38 8.2 7.68 7.8 9.19 12.3 8.7 9.62 7.7 9.18 8.25 5.83 6.88 9.89 10.1 9.08 10.2 4.63 10.1 9.69 9.32 9.62 0.98 0.28 8.84 9.05 12.2 3.37 12 12.7 5.2 8.51 7.25 6.66 10.2 8.12 9.71 7.27 8.87 11.3 1.44 4.48 0.1 5.78 11.9 5.12 0.82 12.5 8.22 7.5 10.6 11.6 9.16 6.93 9.88 7.1 6.54 9.01 9.21 8.98 10.4 3.74 8.69 9.15 3.45 -0.03 5.93 6.21 11.6 10.7 9.33 2.93 8.3 8.31 0.75 2.06 9.88 7.73 9 -0.52 14.6 8.83 7.34 4.55 5.85 6.92 6.94 6.6 6.59 -0.52 5.96 7.65 0.38 9.2 8.59 -0.09 10.4 9 8.73 8.34 5.86 5.15 7.98 1.53 7.21 7.64 9.22 7.76 1.88 3.46 5.03 9.42 2.22 9.93 9.92 6.1 7.92 9.29 10.5 11.1 8.54 10.5 9.4 9.22 10.5 9.97 9.05 8.53 10.4 8.53 3.57 6.74 0.6 1.05 2.44 5.28 4.61 3.14 9.73 2.47 5.76 -0.24 9.17 1.17 7.97 8.99 2.77 11.2 0.84 4.82 2.19 5.85 10.8 5.63 0.25 10 7.22 1.18 6.46 2.15 11 8.11 7.65 -0.72 5.63 2.54 1.01 11.4 1.51 4.6 4.95 4.31 0.9 4.52 6.24 8.15 2.27 2.83 7 9.77 11 0.6 10.9 1.81 4.6 1.86 9.81 2.39 4.49 3.75 10.9 0.6 9.67 5.38 4.69 9.02 -1.5 1.51 8.87 9.77 8.65 6.58 9.86 -0.38 5.62 2.97 0.65 10.3 2.53 8.64 9.13 5.89 5.46 10.1 11.2 11.9 7.01 5.56 8.64 10.1 3.66 3.21 10.9 10.3 10.4 9.73 10.4 9.31 7.99 4.27 8.29 10.8 10 8.5 11.7 10.5 10.3 5.46 9.03 9.3 8.49 8.15 10.7 8.83 9.58 11.9 9.26 10.7 9.11 9.18 9.6 8.23 8.79 10.1 9.78 8.6 6.49 8.97 7.47 2.25 9.73 11.2 8.12 7.15 9.31 8.61 8.27 3.81 10.1 13.6 10.4 3.03 10.4 11.1 1.36 8.94 7.68 4.57 8.46 9.69 11 9.58 6.66 8.57 8.81 8.42 9.89 3.53 10.9 10.9 9.08 6.64 9.61 10.5 8.62 12.3 12.4 8.9 8.29 7.71 8.85 7.41 7.45 9.72 7.3 2.44 3.34 6.06 8.26 7.72 9.92 4.93 10.2 2.76 8.51 9.3 8.78 0.87 9.54 8.3 9.09 5.78 10.4 7.72 3.3 10.6 8.43 9.82 9.48 8.93 11.7 4.58 10.9 -0.51 11.1 8.93 9.91 8.54 10.7 10.4 10.7 10.5 10.1 9.8 7.99 10.8 10.8 9.36 2.44 8.89 11.7 10.7 10.3 9.11 5.66 9.15 2.24 9.82 7.89 9.64 3.07 6.65 4.36 4.29 10.1 9.08 10.2 6.29 9.36 3.89 4.54 0.52 6.92 8.2 3.08 9.51 8.84 9.83 8.71 10.2 8.11 9.75 0.24 11.4 12.9 9.6 10.6 10.5 3.98 10.6 8.97 10.8 10.1 9.77 1.98 9.22 7 6.09 3.8 11.8 12.2 0.36 11.2 10 5.24 5.7 9.38 8.84 11.1 7.89 6.19 8.81 7.96 7.66 9.33 10.8 10.4 1.96 -0.38 10.3 2.14 3.06 5.39 0.93 7.3 4.53 1.12 4.99 7.67 1.69 4.18 4.64 5.64 2.94 2.75 5.29 4.31 11 8.71 3.22 7.79 4.36 1.31 5.11 7.17 8.51 8.91 8.52 11 4.29 8.19 4.54 7.13 -0.29 10.9 5.41 5.51 1.95 3.44 9.83 2.13 8.91 6 5.07 6.81 1.42 10.7 5.11 2.46 2.19 0.01 8.49 8.28 4.76 7.12 0.19 6.35 7.86 1.78 7.49 3.03 7.58 0.66 7.61 9.36 5.41 7.04 9.37 12 3.77 -0.35 5.46 -0.48 9.9 1.93 6.22 9.06 3.64 6.34 8.62 9.06 7.59 0.94 4.9 7.94 10.3 10.6 10.8 8.82 2.35 4.24 4.81 7.03 8.61 2.46 7.14 10.6 9.82 7.49 7.01 9.83 9.57 9.67 2.96 8.36 10.3 11.3 10.4 8.44 9.75 7.41 8.76 7.07 11.1 6.94 3.75 10.7 7.63 10.7 10.9 10.9 9.07 6.17 9.02 7.67 1.11 4.34 5.92 7.01 10.1 10.3 11.3 10.6 10.5 6.83 7.96 6.79 11.7 1.91 10.2 8.48 8.46 8.6 9.04 11.4 10.4 12.1 8.6 7.01 12.1 7.35 8.65 8.26 7.85 8.49 4.61 6.08 11.9 11.9 11.2 9.44 13.7 11.7 8.32 11.2 10.4 11.6 11.6 9.84 11 10.5 8.91 7.96 11.3 10.6 10.1 10.1 9.2 8.44 -0.4 11.4 3.38 12.9 9.51 10.7 10.8 10.9 8.47 9.76 9.82 8.84 11.4 10.8 1.86 12 2.49 2.82 11.1 11.4 8.91 8.25 10.6 7.57 11.4 8.82 9.09 7.33 14 9.59 10.2 10.6 6.27 9.54 1.3 10.1 9.12 8.32 8.68 11.5 9.17 12.7 -0.18 8.82 11.6 7.64 10.8 12 9.75 1.3 11 8.31 11.1 12.5 10.6 10.8 11.6 11.8 9.77 9.99 4.45 10.5 11 10.3 9.62 11.7 10.2 9.46 12 10.6 10.3 12.3 12.3 10.8 12.6 12.1 6.85 5.41 -0.13 10.1 10.5 12.8 12.8 4.01 11.7 4.08 13.4 10.5 11.7 7.3 9.21 10.3 2.19 1.75 4.33 0.83 1.48 3.72 2.18 2.81 11.9 3.31 -0.04 0.38 4.27 11.7 11.8 8.61 8.53 5.7 3.82 10.1 8.32 8.69 8.92 10.7 10.3 4.06 1.43 9.58 10.2 3.4 3.91 6.37 9.1 10.2 10.6 9.91 10.5 10.7 9.96 9.03 5.16 9.68 6.55 14 10.1 8.61 10.2 11.4 5.68 11.4 9.4 9.59 9.39 12.2 9.7 10.5 9.36 11.3 9.56 7.81 11.5 10.2 6.45 10.6 4.22 1 11 10.9 8.42 8.03 3.27 3.37 4.09 12.6 8.36 0.96 10.3 7.25 9.89 9.45 10.1 7.62 13.3 6.67 11.1 10.5 11 11.1 10.6 9.32 9.66 7.22 8.96 5.09 1.2 11.8 12.9 13.7 11.8 13.9 9.72 8.82 11.3 8.91 1.22 9.95 11 9.65 10.1 8.95 10 8.33 8.74 5.26 2.98 5.8 7.98 11.1 8.3 8.88 3.95 4.37 6.99 9.81 2.05 0.36 12.2 5.82 9.87 9.29 8.49 8.92 11.1 10.7 9.36 8.65 9.37 9.27 2.95 10.7 8.26 10.1 10.8 10.2 9.99 5.03 8.23 11.1 7.35 12.2 0.78 3.13 10.6 9.52 10.2 6.88 11.5 10.9 8.48 7.41 11.7 9.41 8.69 10.5 6.21 0.25 9.75 14 8.82 6.39 9.47 0.17 9.11 8.72 7 10.1 0.88 9.49 7.47 9.32 8.54 7.5 9.37 11.3 7.35 10.7 10.2 8.62 5.12 10.5 1.88 8.25 10.1 9.19 6.6 8.15 2.49 10.9 10.4 0.38 10.7 8.8 9.28 11.6 3.75 13.8 1.19 10.1 12.4 10.3 8.92 12.4 5.67 2.15 10.2 1.69 10.6 7.19 3.15 12.7 10.2 11.2 10.7 6.17 8.99 13.7 11.5 12.1 1.74 11.2 9.41 11 9.57 11.9 4.04 10.2 9.54 9.49 6.73 3.33 12.7 11.9 6.01 7.93 5.63 7.97 15.1 12.2 5.01 6.53 8.95 9.37 8.99 10.5 9.27 9.64 7.65 11.3 15.2 12.2 7.32 8.05 5.4 3.59 9.91 12.5 11.5 12.6 5.99 11.2 11.3 3.07 5.32 5.82 1.41 12.3 0.53 11.6 7.65 12.1 12.4 7.26 3.18 12.2 10.9 7.95 9.41 8.1 9.12 12.7 6.1 6.9 10.8 6.33 11.7 1.41 12.7 11.7 12.2 11.9 12.7 13.4 9.94 9.94 11.2 7.07 15.5 -0.2 14.4 9.03 9.07 13.7 9.33 10.5 8.63 10.9 6.45 8.45 9.67 3.08 12.4 9.18 7.97 4.95 1.6 6.33 1.02 3.08 6.66 8.51 7.54 2.75 3.86 4.03 11.2 9.82 9.73 1.68 10.1 2.98 9.16 10.5 10.9 10.3 8.26 12.9 11.2 10.2 11 10.5 8.82 6.75 8.8 9.24 7.12 3.28 11 9.22 6.31 9.82 3.94 5.96 9.71 6.7 9.28 3.71 4.51 4.68 4.8 6.48 1.16 8.88 8.91 1.94 7.46 9.48 10.5 4.37 8.11 0.55 3.5 6.35 12 7.56 6.61 1.05 8.44 8.91 7.19 -0.04 8.17 1.09 8.01 8.63 4.4 5.55 6.05 9.94 8.03 1.14 13.4 2.64 9.85 -0.49 7.09 0.47 0.68 7.72 8.37 4.89 8.9 1.32 2.85 10.4 4.84 7.55 4.8 4.7 4.3 6.41 3.63 0.19 3.94 7.72 6.8 6.63 3.89 3.53 8.55 1.42 3.69 5.99 4.88 1.59 8.13 13.9 8.89 6.07 9.18 0.88 4.07 11 4.93 6.45 1.9 7.72 10.3 3.55 1.17 2.88 9.97 4.71 8.15 3.46 4.79 -0.19 9.51 8.41 0.48 6.87 5.33 7.54 7.45 8.04 7.56 9.15 6.48 11.2 1.46 10.7 2.28 13.1 4.27 14.3 14.8 13.8 -0.09 9.86 10.9 9.97 9.73 10.7 11.3 10.5 7.52 10.1 9.55 9.13 11.1 2.22 11.8 11.2 12.2 9.58 9.68 8.85 11.9 10.2 11.6 6.92 9.58 0.84 4.97 12.4 5.04 11.7 6.49 10.1 6.73 11 11.1 7.24 9.18 8.92 8.85 10.1 9.55 10.1 8.92 0.36 11.2 11.6 12.3 12.1 11.6 10.5 10.9 9.86 10 10.2 11.5 10.1 3.44 11.1 9.87 9.2 9.21 10.8 11.7 8.57 11.3 10.5 9.72 10.6 13.2 12.9 11.3 11.9 9.07 12.2 11.4 7.2 8.92 9.39 11.8 13.2 13.9 5.73 4.18 6.64 4.12 3.44 7.49 8.98 9.32 9.91 4.61 12.1 10.1 11.8 9.26 10.6 12.1 10.6 11.5 8.9 9.67 8.86 11.1 11.7 10.4 8.76 2.39 3.62 7.99 2.58 0.59 4.1 0.84 3.95 6.8 5.29 0.65 0.85 8.9 8.03 1 12.1 2.47 2.17 14 3.08 9.02 9.53 5.3 10.1 3.84 11.7 9.75 5.89 9.58 6.75 10.5 12.8 8.31 9.91 10.2 13.5 7.46 13.9 11.6 12.6 14.6 8.88 11.9 11.1 5.77 11.4 8.63 9.83 8.91 7.27 8.37 9.61 7.91 9.43 5.88 12.6 6.84 9.2 7.47 6.54 7.74 6.53 6.28 5.86 7.38 8.39 8.95 7.88 7.57 10.4 7.71 7.95 3.86 10.1 9.89 9.65 7.38 9 8.76 8.5 6.76 7.86 7.94 7.71 6.8 9.75 4.48 5.45 7.27 7.17 8.87 8.39 8.2 9.98 6.91 4.33 9.36 3.3 6.17 8.37 8.18 -0.53 7.6 5.77 4.3 5.09 11.4 6.28 1.13 1.66 3.35 1 0.65 3.52 9.86 9.86 4.72 9.4 6.49 3.15 7.01 6.64 7.58 8.49 7.76 7.12 9.31 8.17 10.2 2.07 10.6 9.83 9.28 9.26 8.74 4.71 7.4 0.67 9.74 7.7 10.9 7.83 7.63 3.6 7.44 1.85 7.28 9.15 7.46 8.59 -0.02 8.37 9.38 6.36 7.73 8.59 6.07 9.99 7.88 8.72 7.81 8.84 10.9 2.74 7.01 8.87 2.75 4.44 11.3 10.6 6.46 7.89 6.19 7.93 2.91 7.61 6.06 5.15 6.66 7.85 7.76 8.04 2.07 7.68 3.46 8.21 6.93 5.35 11.7 8.82 9.04 12 4.67 12 6.82 12.3 5.18 12.5 8.13 11 6.86 4.71 10.8 9.86 7.44 8.16 10.4 10.5 10.6 6.37 2.85 5.02 8.45 10.9 9.75 4.17 9.14 10.3 10.3 6.77 10.1 10.4 11.4 12.4 8.3 4.3 11.3 2.25 9.48 11 4.31 6.01 7.72 9.71 9.4 6.68 9.38 1.53 3.97 10.1 10.4 6.63 11 11.6 8.43 9.13 9.63 8.22 9.29 9.67 9.56 5.9 9.65 11 7.54 9.21 9.05 10.7 8.91 2.79 13.1 10.5 6.89 8.37 9.9 10.1 9.42 9.88 10.7 7.21 9.34 10.9 6.96 10.2 7.88 9.62 11.6 8.64 10.4 7.9 11 9.58 10.4 9.07 8.74 6.79 6.7 8.28 11.4 7.26 8.31 9.88 7.27 10.6 10.4 10.2 11 10.2 10.5 5.56 9.74 9.43 7.47 4.28 7.07 11.8 9.55 8.67 9.7 9.54 10.4 11.1 12.3 8.84 8.65 9.86 9.72 11.8 10.8 7.17 9.81 9.97 13.6 9.25 8.12 7.9 6.33 9.73 8.87 5.28 8.34 10.7 8.37 8.14 9.58 9.86 12.9 8.04 8.14 1.6 6.83 9.02 12.2 10.8 11.2 7.48 5.22 10.6 9.21 8.37 7.71 9.54 8.29 12.7 8.56 9.29 4.06 10.4 13.4 3.65 11 11.7 10.1 8.85 6.78 4.1 9.27 0.08 0.35 0.14 10.8 6.19 9.19 7.21 5.33 5.07 5.73 6.47 9.75 0.15 7.61 7.45 8.32 5.09 8.47 10.6 9.85 8.79 7.19 9.25 7.12 10.1 1.96 1.72 4.43 3.36 10.1 8.79 6.19 3.85 9.3 11.2 8.59 8.5 9.65 9.41 10.7 4.83 5.9 9.59 11 9.88 10.7 8.21 9.33 9.17 8.75 5.44 7.86 10.6 10.8 7.89 7.98 4.07 6.88 4.22 8.95 7.58 4.13 5.63 10.3 9.82 4.71 9.41 4.14 8.22 7.97 5.46 8.64 7.59 7.42 7.25 6.27 7.81 7.32 8.71 8.02 7.88 9.54 5.92 8.96 9.2 1.89 7.66 9.45 8.36 6.6 9.14 10.3 9.95 8.16 9.99 3.75 9.34 6.73 5.04 9.48 5.04 7.68 8.75 8.93 9.4 4.11 8.86 6.99 9.04 8.91 9.52 7.79 4.13 8.89 8.32 9.93 10.8 10.2 8 8.64 9.34 6.05 8.09 8.47 9.2 8.7 9.87 10.1 7.65 8.53 8.86 8.36 9.29 8.16 9.75 7.31 11.1 10.8 9.17 8.86 8.89 8.03 9.71 10.2 10.8 9.08 9.84 2.34 7.75 10.3 6.96 9.81 8.03 5.42 2.15 9.25 7.56 10.5 9.95 7.73 8.08 4.7 2.63 8.38 7.17 8.12 4.37 0.74 9.43 2.71 9.57 9.85 7.69 9.43 -0.02 8.67 8.93 7.41 8.53 10.3 10.2 9.03 8.09 10.2 5.41 9.79 4.52 8.53 9.74 8.09 9.78 2.84 2.28 4.2 12.9 8.27 3.55 9.95 12.1 8.92 11.4 7.64 9.17 8.32 7.95 7.07 7.82 -0.02 8.31 4.37 6.62 8.02 6.33 10.5 8.77 10.7 8.58 5.49 6.64 6.44 7.18 6.58 9.59 4.43 3.67 8.23 5.71 4.62 8.8 9.47 7.61 6.27 8.72 8.74 9.14 2.01 9.43 10.5 7.46 8.06 8.35 6.45 7.18 4.79 8.8 8.2 6.19 8.31 8.88 4.1 8.95 4.32 1.77 6.57 7.48 -0.37 5.88 1.23 6.17 8.76 4.21 3.39 8.75 7.5 10.1 11.1 3.57 7.84 9.42 8.28 9.69 4.69 8.58 9.63 6.28 8.27 9.74 6.64 5.72 10.1 8.82 10.7 10.8 8.63 5.89 10.7 10.5 9.59 6.51 8.01 10.4 6.3 7.32 9.52 9.54 11 6.87 6.05 4.66 6.35 8.64 9.53 6.89 8.53 7.53 11 7.8 0.33 9.6 7.27 5.31 6.07 7.34 8.8 5.28 10.5 0.04 8.88 4.42 2.66 9.98 10.1 2.97 8.34 7.32 3 8.79 -1.31 11.3 9.97 1.92 10.3 4.06 9.01 7.11 9.27 9 7.58 6.06 6.99 8.85 7.68 9.82 5.61 7.07 9.49 9.16 10.2 6.39 9.79 5.9 7.12 4.87 8.72 8.04 0.11 9.03 2.15 12.1 8.1 -0.63 7.34 9.8 7.75 8.95 8.11 5.79 9.38 10.8 9.52 8.74 8.42 9.34 8.88 8.15 10.6 8.97 10.8 10.2 9.24 9.37 8.48 3.74 -0.35 0.53 3.77 6.11 8.4 8.01 8.95 1.53 6.47 1.57 0.69 7.74 11.4 13.2 5.12 7.24 2.87 10.6 7.23 1.62 9.29 6.06 4.76 10 6.52 7.84 9.13 9.87 11.8 9.04 6.84 10.5 10.3 10.2 10.1 9.5 9.89 8.64 8.87 9.82 7.92 10.9 5.77 9.08 8.07 7.93 9.23 6.71 7.96 9.57 6.28 8.38 8.33 9.93 9.94 8.72 9.42 9.53 7.33 10.2 10.2 8.64 4.7 8.82 9.17 10 10.2 7.41 10.6 9.35 7.93 1.72 10.6 9.27 8.31 8.57 12.2 7.63 8.99 9.13 9.97 5.84 10.2 9.58 6.15 7.92 1.4 8.49 9.46 8.95 0.4 8.92 6.88 5.53 9.12 8.61 11.1 9.55 10.2 4.5 11.2 9 3.13 8.55 9.92 10.1 6.49 7.86 10.5 9.31 6.75 9.71 11.2 5.81 7.68 5.27 7.64 7.65 8.92 5.65 8.53 8.45 8.7 7.7 9.45 8.76 10.5 3.95 2.95 11.3 5.23 4.09 11.2 10.4 0.76 7.74 8.25 10.6 8.08 10.4 10.4 8.28 1.09 9.62 7.28 9.96 8.16 6.2 9.59 11.2 13.8 9.32 7.26 9.6 10.6 6.22 10.5 8.4 7.19 9.12 9.02 4.86 11.8 8.22 10.5 1.35 10.2 6.65 3.54 6.19 8.34 8.06 7.77 9.49 3.44 6.89 2.51 8.64 7.22 11.5 9.28 7.16 9.15 10.9 8.47 6.43 11.6 7.09 10.8 12.6 8.88 12.3 11 12.6 8.38 8.62 7.77 9.54 8.8 7.86 10.2 10.3 12.2 9.01 11.2 1.09 10.2 9.58 9 7.56 9.04 10.2 4.68 4.16 7.36 2.05 10.7 9.05 9.75 7.62 7.74 4.63 11.1 13.1 8.72 3.68 5.13 6.53 8.39 6.78 9.36 5.34 11.8 12.6 14.7 4.2 8.09 4.46 6.43 -0.5 10.9 10.9 9.51 3.38 3.86 11.9 12.1 8.9 10.4 3.76 10.2 1.86 3.72 12.3 5.41 9.52 8.98 9.1 8.8 10.3 6.02 9.33 8.64 9.23 11.1 5.27 10.6 9.07 9.12 6.14 7.23 8.71 9.36 9.33 9.48 8.9 13.1 0.73 8.7 7.34 9.71 8.8 8.17 8.94 9.04 4.18 9.41 1.66 8.16 10.1 10.9 10.8 6.15 9.71 10.4 8.97 9.54 11.4 8.85 5.5 0.9 8.62 10.8 10.8 9.42 6.53 11.1 7.73 8.77 10.6 5.5 10.2 9.61 11.7 10.9 11.7 9.21 8.09 8.51 9.26 0.63 8.97 1.18 4.64 11 8.69 7.6 9.46 6.69 9.33 5.24 5.75 4.81 10.6 6.48 9.28 8.59 9.41 9.53 9.89 6.55 11.6 3.24 9.44 7.01 10.2 10.2 7.53 9.95 8.07 12.8 10.8 8.37 9.26 10.7 10.3 10 0.83 9.18 9.97 5.35 9.78 9.9 8.37 9.67 1.3 8.24 5.27 10.7 11.4 0.49 10.2 8.95 7.69 10.1 13.4 9.25 10 7.04 11.8 9.44 -0.87 11.2 9.79 10.5 9.2 12.9 9.7 10.7 11.8 10.7 11 12.2 12 6.05 13.6 10.9 8.61 10.8 8.51 10 9.91 0.77 8.12 -0.01 10.5 12.1 8.76 4.96 9.84 1.45 10.5 11.3 11.6 9.69 4.31 12 9.25 10.6 12.3 10.7 8.83 7.44 9.17 12.6 6.25 8.14 9.09 7.37 9.12 7.54 4.97 -0.16 9.78 0.03 0.65 -0.93 8.26 0.82 8.26 2.91 3.34 7.5 9.82 0.64 5.78 1.26 7.1 -1.18 -0.17 6.9 2.84 9.71 12.9 10.9 8.88 6.05 7.16 4.35 3.82 10.6 8.75 0.26 9.13 9.54 9.68 7.27 7.31 4.33 7.08 9.17 7.22 8.45 1.79 8.61 8.96 12.4 8.3 9.96 -0.9 2.54 0.06 3.18 3.86 1.04 9.52 10 8.06 7.43 8.48 9.39 10.2 1.62 10 1.34 2.54 -0.47 -0.61 10.5 5.87 6.29 10.1 8.88 10.1 8.66 9.92 -1.05 8.52 10.5 12 9.07 8.34 -0.75 4.86 9.1 11.9 10.3 1.03 8.14 11.1 9.81 9.36 6.67 4.77 2.09 0.14 12.5 -0.67 7.32 10.8 7.53 -0.16 5.55 10.2 8.75 6.69 10.1 8.95 1.97 -0.32 11.1 11 6.76 8.53 9.96 9.63 5.71 8.65 9.74 10.2 4.14 2.53 2.01 9.79 1.84 7.41 10.3 8.18 9.66 5.82 10.4 9.19 3.05 6.05 9.25 10.1 9.71 9.18 3.53 7.77 3.76 8.66 1.69 3.57 10.4 7.07 6.45 8.9 8.73 6.44 10.2 8.48 5.84 8.26 3.67 2.73 9.87 5.35 11.8 1.3 1.24 0.12 6.39 5.93 3.52 -0.49 2.36 7.75 9.66 7.88 6.41 9.27 10.4 7.23 9.42 10.2 5.31 10.2 9.41 8.39 8.03 7.42 8.53 4.73 6.19 2.33 6.19 10.3 8.96 9.48 5.44 10 10.9 5.61 6.85 8.52 5.82 5.4 8 3.26 13.2 9.97 3.02 8.97 10.4 6.1 8.09 10.7 10.1 2.05 8.02 7.28 7.14 0.05 5.92 7.68 10.7 9.32 5.78 8.79 10.3 9.38 7.83 6.76 13.4 3.06 7.25 5.3 2.69 6.47 7.05 9.57 9.95 8.72 9.94 5.19 4.67 9.39 11.4 3.76 9.81 5.18 1.35 5.54 8.19 5.66 7.09 9.1 7.08 8.83 7.67 10.4 8.07 8.47 8.83 11 8 7.7 7.16 7.87 7.76 5.57 9.34 9.69 5.34 9.72 9.73 10.9 10.2 8.44 7.65 11 10.8 6.9 10.5 10.4 4.33 9.6 9.22 7.49 6.32 6.86 9.73 7.06 8.81 9.18 10.2 0.52 3.73 5.7 9.28 10.7 10.1 2.57 8.25 6.32 5.02 2.26 7.44 5.06 7.77 4.08 7.59 6.65 6.54 7.05 7.71 3.75 2 8.51 10.9 11.5 9.2 7.55 1.15 9.43 10.1 8.89 9.53 8.83 9.67 3.42 10.4 6.59 5.97 6.66 7.72 9.21 9.33 0.31 8.05 8.45 7.12 10.2 11 5.99 9.56 10.1 9.04 9.72 9.22 9.21 9.26 11.1 8.93 9.02 9.28 7.53 8.7 8.96 5.92 9.04 11.8 8.99 6.75 8.18 7.01 8.66 9.63 9.54 8.7 7.65 9.63 0.53 8.49 11 8.65 10.2 8.61 9.07 10.6 9.16 11.3 3.74 9.16 7.11 9.65 9.57 8.47 7.73 8.89 7.22 11.3 9.23 7.5 9.88 7.97 8.13 9.94 10.6 7.36 9.43 8.74 9.75 9.62 9.87 3.04 7.82 8.06 8.33 9.36 2.38 10.2 9.08 9.99 9.33 10.3 6.7 9.27 8.12 8.77 0.82 7.43 10.7 10.7 8.53 9.84 8.58 9.07 1.4 10.6 4.63 13.1 7.91 10.7 8.6 7.79 7.85 6 6.04 10 7.43 9.74 10.1 5.39 11.5 9.63 7.26 8.69 9.37 7.99 6.32 6.51 5.14 9.2 7.49 9.33 7.91 2.95 1.17 3.63 4.15 9.86 8.64 10.7 9.5 3.37 6.41 11.1 9.72 10.6 9.21 9.29 3.89 5.06 4.42 10.8 8.25 9.67 7.19 8.44 7.51 7.54 9.35 11.6 3.15 10.4 5.92 8.87 9.63 5.46 8.38 9.24 10.7 8.54 9.27 7.43 -0.06 10.6 8.87 9.03 1.16 6.08 9.2 0.81 9.99 10.8 8.54 3.26 6.08 1.37 8.59 7.7 7.65 5.78 11.6 8.85 7.92 2.1 3.87 7.92 8.61 11 5.08 10.5 9.99 10.8 5.07 -0.15 0.12 2.67 10.5 9.35 7.59 9.53 9.97 5.61 6.85 1.01 9.1 4.25 -0.74 7.33 9.46 11.2 5.99 6.67 7.37 7.11 7.43 3.59 8.05 10.1 5.58 0.98 6.14 8.74 10 4.75 7.96 1.72 10.7 9.4 8.72 6.84 11.9 7.91 11.8 7.62 7.33 0.25 2.26 9.4 7.87 5.88 9.07 9.11 9.04 6.05 4.67 8.46 7.11 6.53 7.52 8.18 9.22 11.9 7.79 9.22 8.98 3.89 10.2 10.1 7.47 6.78 5.71 6.53 8.54 10.2 9.37 5.63 4.81 4.08 8.43 9.88 9.86 7.67 8.51 11.7 5.61 8.95 6.31 5.76 3.99 9.58 10.9 6.54 6.77 0.56 7.33 10 4.08 7.34 6.63 6.9 7.26 9.22 8.97 7.16 5.56 9.06 8.47 6.98 7.3 1.51 6.96 8.9 11.3 8.8 7.94 4.36 9.36 10.9 11.1 10.5 8.58 9.22 -1.05 8.86 10.7 7.29 9.84 8.8 9.95 7.17 9.62 12.2 7.43 9.71 8.51 9.15 7.66 10.9 9.27 9.37 10.8 3.2 8.22 7.1 8.78 6.88 9.9 11.4 9.47 3.63 5.92 9.14 9.73 7.84 8.09 10 9.09 0.58 7.45 8.67 9.78 8.82 9.06 8.74 10.1 7.09 10.2 4.18 8.76 7.34 0.31 9.12 10 8.32 8.02 9.53 9.53 11.1 8.02 1.97 9.51 8.66 8.54 8.32 7.53 8.61 7 6.61 10.2 7.84 9.55 3.81 7.07 3.05 9.47 9.81 9.69 6.36 4.65 10.5 6.74 0.52 7.03 4.03 7.68 9.23 10.4 5.08 1.98 11.5 9.8 9.36 5.71 10 5.2 6.63 8.76 1.33 7.32 7.89 9.48 10.3 8.12 7.49 11.9 8.88 9.41 8.2 8.6 8.03 8.76 8.5 8.31 7.34 12.4 10.8 9.25 6.43 1.42 10.2 4.21 5.02 9.74 9.69 13.6 9.85 6.2 8.88 0 10.2 10.4 7.68 9.58 3.2 4.68 8.8 0.64 9.96 8.11 10.7 9.81 11.2 -0.22 7.66 0.74 1.62 9.17 6.13 9.35 4.39 8.87 10.6 9.66 7.95 8.63 10.4 10.2 4.37 8.64 8.71 4.6 9.96 9.9 10.4 11.2 7.1 9.97 9.21 9.91 10.5 10.1 9.14 0.13 6.33 10 1.03 12.7 9.32 10.8 4.35 10.1 8.07 11.4 3.61 8.93 6.64 10.2 8.28 9.16 7.29 6.72 11.7 8.62 7.44 9.14 9.92 6.64 8.42 8.59 8.01 8.44 9.59 6.14 2.71 9.47 4.95 2.49 3.9 7.81 3.81 9.98 4.95 9.11 6.78 4.68 11.6 7.27 9.76 6.89 2.96 10.8 8.6 10.5 10.3 9.26 4.89 10.7 11.2 10 9.22 9.23 9.73 11.6 7.59 11.2 10 9.67 9.56 6.64 7.59 8.93 8.34 10.2 7.82 6.04 1.92 10.4 10.2 8.53 6.28 9.67 7.46 6.27 9.88 9.36 11.6 10.1 7.36 10.7 3.07 5.23 9.75 3.63 11 9.29 10.4 3.41 8.7 6.3 5.26 7.32 4.69 1.27 9.75 11.4 11.5 7.5 9 9.21 10.5 2.77 8.99 3.28 11.9 7.2 6.83 10.4 9.17 10.4 10.2 8.87 7.72 12.5 9.69 9.41 8.7 12.2 12.5 8.14 12.1 11.5 11.5 11.8 12.1 9.99 9.56 7.14 10.3 11.3 8.13 11.6 7.76 9.32 10.2 8.06 8.01 11.7 11.1 5.49 9.2 10.6 10.5 9.85 9.11 7.72 12.7 1.54 8.28 9.41 9.79 8.45 6.94 2.33 0.3 11.9 8.09 11.6 9.68 9.67 9.08 10.9 13 8.97 9.06 11.7 10.1 8.99 9.15 9.74 9.74 9.81 9.11 8.54 11 3.62 10.1 6.18 5.89 4.45 9.43 9.65 10.4 3.59 3.95 0.82 1.46 5.4 10.8 10.5 15.3 9.58 11.1 13.4 11.6 11 9.91 11.5 9.77 9.63 9.27 11.5 9.06 6.71 6.5 6.27 9.36 7.67 1.58 5.19 6 8.19 6.21 6.11 5.96 10.8 6.55 7.24 9.61 1.91 6.26 10.3 11.3 9.79 11.3 10.9 5.93 7 1.79 0.44 9.88 10.5 2.33 13 9.42 6.32 10.9 7.73 4.53 7.55 1.76 10.1 1.98 11 8.81 10.4 7.58 7.8 5.99 9.07 7.43 6.71 8.69 9.85 0.61 1.95 5.93 9.87 10.4 3.11 8.19 9.86 7.58 6.7 11.9 8.22 6.97 9.6 2.77 2.17 11.1 3.96 7.84 9.27 8.39 10.1 9.38 7.26 7.99 11.3 8.47 10.7 10.1 9.26 4.83 5.33 8.76 12.9 11.7 10.1 11 10.4 9.84 10.7 11.2 11.9 9.51 9.7 10.4 8.66 9.41 9.57 12.1 11.1 10.7 10.4 9.57 11.1 2.85 9.2 -0.26 12.4 8.6 10.7 10.3 7.19 0.38 10.8 7.79 2.86 7.99 9.19 2.97 10.1 8.38 8.14 10.2 9.12 8.81 2.34 8.55 3.1 9.25 11.2 10.3 8.82 10.3 7.33 6.56 10.7 9.83 8.9 7.33 11.4 7.82 10.5 0.65 2.41 5.34 11.2 3.07 1.34 9.5 7.96 10.4 7.58 3.11 9.98 7.16 8.55 3.57 8.28 7.25 7.82 5.99 4.66 3.33 1.28 4.67 9.5 8.03 7.96 9.13 11.5 8.85 7.82 6.53 10.7 7.35 8.52 8.24 -0.1 2.42 2.29 2.36 7.29 5.45 8.98 11.9 7.17 9.27 10.4 9.71 11.9 7.23 -0.13 7.32 9.34 10.7 10.4 9.61 11.9 8.07 8.72 6.53 6.97 7.02 6.85 9.66 10.3 10.2 3.26 6.49 6.75 8.42 6.59 10.1 6.82 2.19 10.5 10.9 9.49 3.4 10.2 7.97 7.84 6.3 4.39 8.09 1.63 10.8 10.3 9.21 9.65 9.54 8.56 10.6 9.35 3.28 5.58 10.4 5.39 2.44 2.11 8.47 8.49 11 8.88 2.65 7.64 5.38 7.58 3.35 2.54 11.3 11.3 6.34 8.44 9.37 9.34 1.34 6.7 8.83 8.22 6.41 1.21 7.41 8.09 4.78 8.47 8.95 9.47 6.91 10.1 8.4 3.9 10.5 8.9 9.77 10.6 8.47 8.54 7.43 9.26 9.77 8.8 9.21 13.4 8.79 9.11 8.45 2.96 10.9 1.25 9.07 10.7 9.49 8.25 3.88 9.41 8 9.21 9.65 5.27 -0.37 7.25 10.3 10.2 9.36 10 8.4 9.92 9.22 7.36 8.09 0.82 4.14 8.11 5.39 7.39 9.73 8.65 9.42 6.81 8.08 8.6 8.6 8.4 5.1 11.1 7.39 8.17 9.23 3.77 9.4 7.66 9.69 10.6 0.4 8.94 -0.03 13.2 5.67 10.4 7.26 9.04 12.2 4.59 8.98 9.69 7.23 6.47 8.3 9.26 6.07 11 9.6 6.81 9.09 6.79 9.45 8.05 8.91 11.5 10.1 9.29 9.23 5.91 9.45 9.23 8.64 3.22 9.74 5.79 8.71 7.5 10.1 9.81 10.2 10.6 9.2 10 9.36 5.27 10.9 9.39 8.11 9.02 9.8 9.12 5.52 6.61 8.72 10.1 10 10.2 5.5 6.72 6.9 8.09 10.7 7.25 7.93 9.1 7.8 5.2 -0.16 6.17 3.44 8.76 5.57 5.34 10.9 11.4 6.99 10.2 11.7 2.3 9.5 9.8 9.17 11.3 9.11 8.63 6.63 11.4 11.2 11.5 10.9 9.1 9.5 0.63 8.98 7.71 9.81 9 3.09 8.24 9.76 8.93 9.63 9.77 11.2 10.5 6.31 10.2 8.77 9.03 9.2 5.18 10.8 8.07 5.14 7.8 12.3 5.65 9.91 11.4 2.31 9.89 10.9 10.9 9.76 7.77 9.35 9.13 9.49 4.87 8.53 4.68 7.72 9.61 7.62 9.06 10.5 11.1 6.3 10.6 10.4 9.14 9.75 7.2 10.2 8.13 8.42 -0.34 8 6.54 9.73 7.5 1.02 11.2 6.79 10.2 14.8 6.58 10.5 10.7 8.41 7.01 6.37 10 8.32 3.43 2.35 6.46 10.4 9.15 6.43 4.19 5.88 4.24 10.4 10.6 8.58 10.2 8.86 6.43 7.74 2.67 9.9 7.42 8.81 8.52 12 9.01 5.19 9.74 8.23 8.86 6.58 7.75 10.5 11.5 7.2 8.25 9.67 3.8 2.16 5.52 8.06 -0.2 8.97 2.04 8.67 7.96 5.98 1.83 5.91 8.21 11.9 5.23 9.74 4.57 7.59 7.84 9.93 9.58 8.36 7.84 8.97 11.5 9.58 4.79 8.83 6.69 9.04 7.66 10.7 5.96 9.3 8.24 11.8 8.22 9.62 4.92 10.9 9.39 11.3 9 11.3 9.38 10.9 9.87 4.02 8.91 0.08 8.61 8.43 6.55 9.04 6.21 -0.63 6.11 4.78 1.84 1.76 3.01 1.31 9.44 12 7.64 11 9.97 7.58 10.6 9.13 4.57 7.12 6.81 6.98 12.8 8.89 9.7 0.49 8.03 10.3 9.68 9.51 9.34 8.8 2.04 8.25 9.25 3.1 4.76 12.7 8.9 0.1 10.4 9.65 5.58 7.16 8.1 7.99 9.62 10.1 6.56 2.49 11 8.49 2.65 7.85 9.94 7.15 10.2 10.2 10.9 7.78 10.1 9.39 9.71 6.28 10.5 9.98 10.3 9.16 7.13 3.81 10.5 10 11.7 9.41 10.7 7.03 10.5 11 10 8.34 4.37 10.7 11.4 8.48 6.22 10.2 8.98 3.83 9.8 11.7 9.8 12.5 11.3 4.35 9.55 8.68 7.91 7.95 8.73 5.62 11.7 11.8 7.51 4.8 8.34 8.02 7.44 6.01 6.06 2.9 2.64 6.81 9.14 9 8.77 10.2 7.91 6.64 11.1 7.93 2.37 8.89 8.66 8.86 11 9.87 5.84 3.67 8.1 9.45 8.89 10.2 9.38 10.3 8.18 9.46 10.5 4.25 11 8.26 9.08 10.9 7.19 6.72 8.36 7.4 7.57 8.27 0.26 10.6 10 10.5 9.91 8.7 8.75 10.9 10 0.49 10.4 9.61 10.8 5.63 2.05 10.3 13.7 1.73 10.7 2.86 10.7 1.55 10 4.06 7.91 -0.85 8.12 5.71 5.68 8.59 11.6 10.5 10.6 2.4 12.9 9.31 9.67 7.66 5.41 8.66 9.52 3.89 4.93 -0.03 8.39 10.2 8.5 10.6 5.53 11.3 8.02 9.75 8.39 11.2 10.4 1.28 4.09 10.7 3.64 9.48 10 5.98 -0.19 9.46 0.49 11 6.6 9.91 5.75 9.06 7.73 11.3 1.89 6.34 1.08 8.21 9.34 6.81 9.03 9.65 6.98 10.2 6.26 6.44 0.74 11.2 5.3 10.4 5.72 7.31 9.59 10.8 7.46 10.6 9.19 1.48 9.48 9.43 5.21 9.57 9.93 10.8 8.86 9.92 8.31 8.49 6.4 5.84 6.39 10.4 3.58 11.2 9.14 2.4 10.6 8.39 8.76 4.06 9.19 6.62 11.9 8.41 10.1 9.29 8.58 4.49 7.35 6.23 5.9 8.24 1.56 9.55 5.33 9.4 7.99 8.46 7.83 9.21 13.3 10.5 6.76 11.7 6.56 8.01 8.75 8.9 9.83 8.79 3.9 6.82 8.58 1.81 8.33 9.61 7.11 9.05 9.59 1.25 7.35 9.92 10.4 5.89 9.37 9.87 8.95 3.76 9.44 9.11 6.48 7.61 5.24 7.18 6.33 4.12 6.86 8.98 10.8 12.9 8.83 7.23 8.26 5.5 1.29 9.49 12.7 10.2 7.65 9.32 4.1 7.15 9.59 9.14 11 9.5 9.14 0.23 12.2 9.36 7.13 9 7.5 9.75 9 9.67 11.7 9.58 10.3 9.25 12.5 9.62 10.6 6.22 9.56 7.28 9.64 7.79 9.52 8.25 11.8 11.8 11.6 11 10.5 1.38 11 8.47 9.89 12.4 11.8 12.3 10.2 9.37 10 12.3 10.3 10.2 11.1 1.75 7.8 11.4 10.4 10 7.04 10.4 5.91 9.49 10.3 7.23 9.25 11 10.9 9.27 10.3 9.71 8.17 12.5 8.54 5.29 9.4 10.8 11.1 6.62 7.15 11.5 9.02 1.48 11.8 9.79 12.2 11.8 9.49 8.57 8.01 11.7 8.18 8.74 11.9 10.8 7.78 11.2 9.45 9.26 9.8 4.95 9.95 3.94 10.6 6.82 8.23 10.8 8.04 0.4 10.9 9.14 7.79 10.5 8.76 9.21 12.1 9.38 9.73 9.04 10.2 9.94 9.27 9.19 8.46 8.75 5.78 8.9 10.2 8.96 8.95 9.5 8.57 4.85 9.19 12 16.9 7.82 9.89 9.4 7.95 10.7 6.18 12.9 13.6 9.25 1.16 11.4 9.22 9.01 10.2 9.39 8.13 10.9 10.4 11.8 8.01 9.55 9.69 9.42 11 9.58 2.75 9.74 11.8 7.39 9.8 8.93 8.62 9.5 9.8 8.81 9.46 10.6 6.24 8.43 5.64 9.27 11.3 9.76 11.5 9.29 3.26 6.23 4.03 10.9 6.9 8.34 9.09 9.1 3.79 8.8 6.94 8.23 9.86 17.6 2.08 5.02 9.27 10.4 8.95 10.3 8.4 9.72 9.17 9.39 7.6 10.3 5.58 9.62 10.8 6.1 8.9 9.7 7.95 12.4 6.94 10.2 9.16 9.76 7.63 9.06 8.77 12.6 7.09 10.2 6.96 6.71 7.82 10.1 8.64 10.6 6.93 12.1 10.7 9.18 9.46 10.1 9.2 8.52 12.8 8.91 8.44 10.7 11.5 10.7 10.6 11.9 9.95 10.2 5.63 10.6 8.55 11.6 5.97 11.3 9.89 7.52 9.04 7.83 10.9 10 10.9 9.13 11.3 9.84 3.82 10.2 11 6.69 10.4 11.6 11.4 10.5 10.9 10 0.23 11 9.77 9.46 11.3 9.09 9.89 7.61 11 10.1 7.84 9.77 10.4 6.93 8.71 9.64 10.3 5.86 9.42 6.63 10.9 9.88 8.41 3.04 9.28 5.54 6.96 9.96 8.82 10.2 6.32 8.17 8.93 7.05 8.76 9.73 10.3 5.12 8.85 8.08 9.46 9.15 8.6 9.3 2.02 9.11 10.1 9.1 6.43 10.7 10.5 4.56 7.08 8.47 10.6 10.7 9.34 10.1 9.31 8.81 9.66 10.7 8.49 11.1 10.4 10.8 9.84 7.64 8.93 11.4 11 7.67 10.4 8.03 10.4 9.39 11.4 5.09 7.14 9.75 8.95 8.89 9.87 10.8 3.5 8.81 4.97 6.43 10.3 9.64 9.7 10.4 8.26 10.2 10.6 9.71 10.5 6.77 4.89 8.18 10.2 4.77 9.18 9.02 10.7 11.1 8.32 11.4 9.57 9.09 9.38 7.62 10.1 10.6 7.92 10.2 7.06 8.73 9.34 5.44 9.73 8.29 9.02 8.87 9.73 13 2.02 7.35 6.67 9.62 7.28 7.64 12.7 9.08 8.48 9.88 2.9 5.26 1.87 8.13 9.35 9.81 7.78 12.7 10.5 3.39 4.11 11.1 10.2 9.72 10.3 3.87 9.85 10.3 10 7.99 10.8 12.5 8.14 9.16 11.7 9.33 11.4 10.3 10.1 12.8 8.26 11.3 4.94 11.8 9.04 9.83
-TCGA-BR-A4J4-01 4.74 8.13 6.77 8.18 6.2 8.93 0.59 2.5 4.34 -0.7 3.11 7.34 3.75 2.7 0.3 8.07 10.9 12.3 9.97 10.2 8.96 7.9 10.6 0.75 10.8 7.81 3.56 9.29 4.5 6.07 4.45 5.99 4.39 2.58 3.07 2 2.1 6.56 0.3 4.77 3.14 2.61 4.51 0.61 7.9 4.39 1.55 2.07 10.7 7.28 4.17 5.64 6.16 11.1 5.94 0.93 5.74 2.59 5.58 6.91 7.79 5.4 9.2 5.64 4.01 2.77 6.2 5.66 8.75 3.39 4.45 3.45 1.65 0.72 1.74 1.32 5.89 4.58 3.95 0.38 4.98 1.46 2.72 7.49 3.46 0.98 6.25 7.54 1.1 3.27 7 3.61 6.91 4.72 4.97 3.8 2.8 1.71 6.39 0.11 0.67 4.97 1.43 6.85 1.4 2.97 5.67 6.98 6.42 5.82 0.74 0.37 9.09 3.35 7.54 0.83 2.9 5.97 4.32 5.58 7.4 4.35 -0.88 0.18 1.24 5.9 1.49 3.52 0.48 14.3 2.48 1.31 5.19 5.82 2.73 0.95 4.95 0.64 3.83 8.97 8.69 7.86 4.09 2.21 6.17 11.7 0.41 11.6 1.57 -0.22 4.63 0.42 5.11 9.76 10.6 3.14 1.6 1.15 9.57 2.84 6.95 6.79 1.69 1.3 7.04 7.48 5.54 3.91 7.29 2.35 9.84 10.3 1.84 4.53 4.92 1.05 3.18 6.06 7.51 3.55 4.99 7.44 5.4 5.49 3.47 0.93 1.75 0.34 8.8 4.27 6.01 8.82 3.86 4.27 4.75 8.16 3.41 9.22 8.25 8.44 6.47 10.5 9.99 10.3 7.2 9.13 4.63 9.8 10.8 11.6 7.32 11.2 11.2 10.8 9.41 11.1 7.02 10.8 8.44 10.7 7.71 9.69 12.1 10.2 8.72 8.44 4.6 10.8 8.72 12.2 8.08 2.9 8.96 9.84 9.71 8.63 9.48 6.39 10.4 4.46 10.6 5.44 12 11 12.8 11.6 12.2 13.5 3.66 13.8 7.74 -0.15 7.68 9.06 9.59 12.3 11 12.1 7.36 13.2 8.07 11.2 7.39 10 10.5 11.4 7.21 9.68 11.2 9.13 9.49 6.49 8.9 9.58 12.1 6.97 0.27 12.5 10.7 11.6 13 11.3 11.2 7.54 9.69 11.8 11.7 9.86 11.6 10.7 5.4 3.11 10.9 7.17 9.98 10.6 7.45 11.9 6.87 7.06 12.9 12 8.11 9.16 10.7 11.2 2.99 9.25 9.07 8.21 12.5 9.92 5.99 9.31 4.32 8.1 11.1 2.5 9.42 7.27 9.79 9.81 9.85 8.45 10.2 10.3 11.4 9.67 9.91 9.34 10.2 8.52 12.1 8.27 9.91 11.6 8.99 9.35 6.8 8.65 10.7 12.5 9.88 11.2 8.31 14.2 12.7 9.74 11.1 9.74 10.8 4.72 9.5 3.89 3.51 9.63 7.9 9.89 7.15 7.36 7.78 10.6 9.57 11.2 8.96 7.97 7.47 6.68 5.89 5.58 5.82 11.3 10.4 12.3 10.8 7.53 9.37 11.6 1.9 8.62 8.72 9.04 9.31 9.02 10.6 11 6.5 8.98 9.37 10.3 8.16 10.1 12.8 9.49 6.23 10.5 9.77 1.01 6.81 6.06 6.41 11.3 9.78 9.16 8.87 9.81 9.71 11.5 9.46 5.87 8.33 5.82 8.9 9.24 9.12 11.1 9.97 9.96 7.68 6.99 8.91 7.47 6.77 11.5 5.44 11 8.81 10.3 4.18 10.4 10.9 12.5 9.06 7.98 7.78 6.84 7.45 9.27 7.5 9.9 10.4 11.8 11.1 4.3 11.2 4.27 6.74 8 -0.11 9.14 2.41 8.11 6.5 12.2 9.21 8.8 6.48 11.1 11.1 4.47 9.65 10.4 11.8 4.15 10.8 8.76 5.81 4.66 5.06 8.98 7.27 4.73 9.38 1.99 9.51 10.4 6.15 10.4 7.84 9.05 13.6 10.2 0.34 9.97 9.6 1.14 13 8.83 7.98 3.15 1.93 10.6 10.2 3.78 13.6 8.62 7.76 9.31 9.35 12.4 11.7 13.7 8.18 10 7.47 8.76 5.81 7.83 7.32 2.35 -0.68 8.42 4.87 13.2 8.29 10.5 12.1 8.83 8.95 10.2 5.78 10.3 9.59 9.83 11 9.36 8.95 10.2 10.2 8.48 9.94 10.2 11.2 7.32 8.92 11.7 8.4 6.12 10.2 9.85 10.6 10.2 5.73 11.7 9.89 7.62 8.38 10.2 10.1 9.03 9.61 10.1 10.9 9.91 7.68 9.62 7.3 6.67 9.96 8.81 8.37 9.84 10.1 4.49 9 2.11 9.03 10.3 11 9.63 10 12.1 8.95 9.04 8.9 11.7 10.3 11.5 10.6 0.63 12.7 9.98 10.7 10.1 11.6 11.2 11.7 10.1 8.42 10.7 10.2 9.02 2.04 8.83 5.27 6.76 6.77 9.41 12.4 9.05 11.9 10.1 10.5 9.35 2.85 3.38 11.8 8.58 5.08 13 9.11 10.4 9.81 12.1 10.6 11.5 11 5.11 0.86 10.9 8.57 7.6 8.33 7.28 12.7 7.08 10.6 11.3 11.1 12.3 11.5 11.3 10.6 10.1 11.2 12.1 11.4 10.5 10 11.8 9.14 8.23 11.8 8.21 10.2 9.48 8.24 14.1 7.75 10.8 11.2 2.82 8.82 -1.46 10.6 4 9.76 9.99 12.2 11.9 12.3 12.1 5.85 10.7 6.67 10.4 9.33 8.28 1.92 7.79 10.1 9.8 10.1 8.89 10.2 12.4 7.15 7.32 11.2 8.06 10.4 8.02 3.66 10 11.3 8.99 10 8.96 6.25 12 7.29 10.6 10.7 8.91 11.4 10.1 13.2 8.8 8.46 8.59 6 8.49 12.6 9.94 12.6 11.6 7.47 9.96 12.8 11.8 1.37 8.4 7.9 8.19 0.45 6.78 10.5 6.9 10.5 11.7 10.1 6.41 9.33 11.4 13.7 8.89 4.72 12.1 10.8 8.53 6.67 0.34 5.74 10.6 4.73 6.85 7.55 5.53 10.5 8.54 11.9 6.68 2.65 3.9 9.74 8.36 9.12 -0.58 5.74 9.84 7 1.05 5.16 12 10 4.31 5.08 8.81 2.48 9.37 9.88 9.65 2.16 8.45 13.8 9.05 11.7 11.9 11 11.4 13.5 9.47 12.1 8.86 7.79 3.35 11.4 2.46 2.98 0.59 2.84 9.89 6.29 10.4 2.73 8.9 9.31 0.92 4.27 12.2 12.5 5.62 6.39 11.4 9.76 5.94 11.1 8.25 10.7 10.8 9.76 11.7 8.7 10.8 10.5 8.99 8.85 12.7 9.45 7.92 9.46 8.41 11.2 8.01 12.4 9.42 7.57 7.4 7.06 5.97 11 6.75 4.3 4.98 13 10.1 2.37 6.66 9.28 9.98 13.1 9.97 5.88 7.26 8.7 3.46 7.3 6.21 10 7.27 7 8.87 9.3 1.44 2.73 0.7 9.72 10.4 5.82 11.7 9.43 8.92 5.04 10.5 11.1 1.43 7.4 5.52 10.8 8.07 10.3 10.3 9.14 9.33 6.55 4.3 7.84 1.71 10.5 -0.57 2.84 8.84 9.17 2.84 2.96 12.7 5.76 9.41 7.58 5.88 1.82 9.44 9.6 10.3 10.5 2.08 8.08 9.19 9.29 12.6 10 10.2 9.52 9.39 11 2.91 4.43 6.7 12.2 9.8 10.4 5.47 10.1 10.3 11.4 10.2 11.3 9.03 8.98 11.9 10.7 10.1 1.19 12.9 2.96 12.4 4.24 11.3 10.7 8.62 1.78 8.68 11.9 12.5 10.9 8.46 10.2 11.9 9.76 11.3 10.8 10.6 9.49 11.7 12.7 10.1 13.5 11.6 12.3 7.43 12 8.35 6.72 7.7 10.2 12.1 13.2 13.1 9.77 6.2 10.5 8.13 9.38 10.4 7.78 8.93 11.6 7.09 11.9 9.98 11.7 11.3 3.74 -0.1 11.8 6.04 9.8 6.7 10 7.54 10.8 8.31 7.31 6.47 1.92 3.63 8.54 9.89 2.01 13.5 9.89 10 8.92 8.66 7.51 7.29 7.83 9.91 7.46 4.07 6.32 2.35 2.81 8.61 10.2 11.1 13.1 7.07 8.18 11.1 8.34 9.34 6.27 9.41 0.33 11.1 11.4 10.5 11.7 11 10.5 12.7 14.8 10.7 11.5 9.92 7.99 1.47 8.77 9.02 9.1 9.39 7.3 8.28 12.3 8.87 8.45 10.4 6.56 3.83 10.9 10.4 13 8.02 6.75 10.6 10.4 6.98 6.17 10 4.45 7.53 10 10.3 9.03 12 7.48 8.71 10.3 8.04 3.12 10.4 8.57 10.3 9.17 7.79 10.4 10.5 10.1 10.4 9.28 7.27 9.46 3.71 9.51 9.02 8.28 0.26 9.6 2.34 8.45 6.87 11.3 1.55 10.1 9.35 1.54 11.9 8.06 10 2.04 8.2 7.32 5.12 11.1 5.9 9.59 8.61 7.17 6.47 5.89 7.57 8.63 8.21 7.79 4.81 9.22 10.3 6.06 10.4 9.02 9 12.7 11 8.68 6.9 4.41 11.4 6.61 4.82 11.7 11.5 7.19 9.05 2.75 10.1 5.52 9.8 6.72 7.64 7.51 11.9 9.51 0.22 9.01 10.5 8.08 9.62 9.36 10.2 11.6 10.5 7.42 7.87 8.75 5.86 9.25 10 7.33 12.1 11.1 8.86 9.35 8.63 2.2 9.46 6.92 11.2 4.22 13.1 6.2 7.81 7.5 6.49 7.08 11.2 6.5 9.78 10.2 9.95 6.42 7.98 9.95 9.89 6.91 6.15 8.94 9.9 6.01 7.04 3.54 4.82 8.78 5.51 8.35 8.29 10.1 0.33 1.95 11.1 10.7 9.38 8.94 9.57 10.8 7.33 11.3 2.26 11.6 5.56 6.64 6.9 8.63 8.17 10.2 8.82 7.89 4.84 -0.16 4.56 9.33 11.6 8.44 9.08 8.5 3.56 10.6 7.84 8.45 7.13 6.17 1.58 8.25 9.63 11.6 8.39 8.42 6.31 8.76 8.83 7.02 10.1 11 9.99 9.13 6.12 9.61 9.44 8.21 11.6 9.49 3.97 9.26 6.57 10.2 8.49 6.8 10.5 11 4.72 10.6 8.09 4.28 10.7 5.4 -0.14 8.61 9.61 2.74 9.57 11.6 10.2 11.2 7.99 6.51 8.9 11.8 10.2 7.67 8.46 7.52 8.91 11.5 11.9 2.11 11.2 10.5 11.5 8.57 12.3 9.59 11.6 11.4 5.87 8.39 9.45 4.77 11.2 11 11.9 8.66 9.35 10.8 6.43 11.7 0.41 10.7 7.26 9.13 5.36 6.61 5.42 6.41 7.87 0.55 5.41 8.37 8.96 7.96 5.76 4.19 10.7 2.08 10.3 -0.28 6.05 8.09 1.81 4.8 10.8 2.38 0.67 3.6 9.34 9.71 4.39 3.86 6.75 2.61 6.13 2.04 0.6 5.47 5.68 7.37 7.03 9.56 8.08 7.75 0.08 8.67 5.29 3.7 10.4 7.65 9.7 8.51 8.36 1.63 10.3 8.39 6.83 9.36 3.34 6.68 7.33 9.43 7.49 2.8 5.32 3.79 1.79 7.56 10.8 0.19 9.21 8.96 4.07 6.43 10 7.51 3.45 9.83 11.6 10.5 9.28 9.43 8.05 2.63 7.99 1.54 8.04 4.51 8.25 12.9 7.51 8.58 6.43 9.68 9.34 7.29 6.2 7.15 9 8.01 8.91 2.53 8.05 8.86 8.55 7.79 3.55 6.67 6.58 8.49 8.38 12 8.3 3.87 3.26 7.6 4.91 10.2 11.5 5.48 4.09 5.68 9.82 11 8.38 5.94 7.94 8.43 9.77 9.79 7.46 10.1 7.17 6.1 4.7 0.1 2.84 9.26 5.33 6.03 8.23 8.17 3.82 9.48 4.68 0.77 5.43 8.91 7.86 0.8 10.3 8.65 0.08 6.33 7.74 3.39 2.37 7.56 5.74 11.1 9.59 9.43 9.25 7.88 10.3 7.94 10.1 8.1 11.1 9.16 1.49 7.11 2.82 8.49 8.86 8.47 8.44 6.12 9.64 6.18 9.32 4.59 4.08 1.06 4.71 5.17 10.3 4.3 5.03 3.19 4.04 0.16 9.44 -0.03 1.45 8.93 9.83 7.2 7.79 8.18 0.82 5.24 6.52 5.73 9.2 9.12 2.53 9.34 10 1.8 1.82 7.91 9.75 11.1 6.62 7.96 10.2 8.18 1.86 8.48 4.23 4.41 5.98 10.9 10.8 3.56 10.5 3.23 4.84 6.72 12.9 11.7 10.5 1.71 2.85 6.26 10.6 10.3 6.78 3.82 12 1.74 7.71 10.8 8.98 10.1 8.62 6.24 11.9 0.26 5.75 0.56 8.46 1.45 8.17 9.45 5.92 2.71 6.99 10.6 6.64 0.59 7.35 10.2 7.49 10.5 7.28 8.62 10.1 7.56 10.1 3.07 7.54 9.41 12.5 12.8 7.1 2.17 1.94 9.22 6.93 0.44 9.85 11.1 8.18 9.82 8.71 3.33 6.4 9.35 12.3 12.3 3.95 9.63 5.16 3.58 11 8.36 10 6.37 5.75 8.07 8.26 8.85 10.7 3.57 7.07 11.1 4.41 3.32 8.63 12.2 11.7 10.6 9.68 4.53 7.11 14.1 3.74 10 10.2 4.4 3.96 9.69 10.2 3.74 7.97 11.4 1.76 0.35 1.75 4.29 0.27 6.42 4.68 6.92 6.63 9.94 7.99 5.83 6.78 8.55 7.79 4.95 9.5 9.81 9.35 3.57 6.44 7.74 3.61 7.22 7.54 8.26 11.8 2.54 5.92 8.5 9.44 1.86 8.79 6.67 8.31 7.43 4.85 8.23 8.19 7.08 3.84 5.53 11.1 5.62 3.96 9.27 5.2 3.59 7.91 9.54 0.44 8.02 0.05 8.05 0.93 8.01 7.21 6.91 3.67 5.26 9.04 7.87 1.04 1.37 9.68 10 4.44 6.29 7.52 7.67 8.26 10.8 9.09 5.53 10.3 8.69 8.8 11.3 11.4 2.88 1.93 8.28 8.81 8.87 4.35 2.83 6.83 10.8 9.92 6.53 2.34 0.03 5.29 0.17 7.51 9.89 8.43 9.1 5.04 10.3 9.4 6.05 10.5 9.86 5.36 8.21 8.27 4.57 5.65 12 7.31 7.86 4.12 8.77 2.29 9.31 9.29 0.62 8.52 4.96 7.49 10.3 1.08 8.68 8 2.46 5.01 3.87 6.78 3.29 9.66 5.52 5.7 6.55 5.08 9.35 0.7 0 8.35 5.23 1.84 4.72 3.63 7.14 6.52 9.46 7.67 8.42 3 9.68 10.3 5.54 10.2 12 7.13 5.43 6.99 8.63 8.31 2.77 6.95 4.21 12.1 7.47 2.39 11.7 6.58 3.34 2.3 6.67 8.16 10.9 8.59 6.06 6.99 3.58 0.46 4.73 1.39 1.8 3.22 9.33 1.95 10.2 1.11 3.47 6.57 9.33 4.93 9.44 0.99 0.52 10.1 9.1 5.29 7.16 9.22 1.65 10.5 10.3 3.09 1.03 0.11 8.74 16 7.14 6.58 3.1 15.4 10.4 4 2.97 8.27 9.24 2.02 11.7 2.23 8.41 7.94 15.9 5.35 5.6 13.1 2.81 8.82 2.65 9.35 9.74 8.52 8.02 -0.15 9.59 2.77 7.39 8.08 12.9 3.05 7.17 6.22 2.51 2.13 6.39 5 5.15 10.4 6.53 5.97 4.97 4.23 2.4 12.2 10 12.6 8.91 8.77 12.5 2.76 3.29 11.6 8 12.3 9.03 8.25 13 7.8 8.07 8.21 7.81 9.39 1.73 8.21 8.68 7.41 6.63 8.36 9.77 8.69 6.83 7.69 3.55 0.43 7.28 4.34 5.49 3.55 5.95 7.9 5.13 10.4 9.47 4.9 5.39 3.58 9.85 12.5 9.69 5.84 9.19 5.01 4.54 9.68 8.3 0.43 8.46 1.83 6.96 9.66 11.2 3.21 8.29 9.87 4.29 0.23 13.8 1.61 8.62 7.7 9.17 6.44 8.17 6.35 1.32 3.85 3.66 9.06 1.16 8.28 9.45 9.87 11.1 12.1 9.15 5.1 6.59 11.8 0.63 6.59 7.46 5.97 11.8 9.42 4.99 -0.15 11.1 8.69 -0.69 6.98 0.41 -0.17 6.75 9.36 6.68 8.72 6.25 7.11 -0.15 1.64 7.13 12.8 8.28 8.41 2.07 4.49 -0.31 7.9 8.85 4.31 12.7 7.93 8.04 8.52 4.56 9.96 4.27 8.39 2.52 5.71 7.64 1.65 4.74 7 4.33 7.93 5.45 5.26 10.8 9.33 11.4 8.5 2.75 1.84 8.93 7.98 11.8 3.42 7.88 9.35 10.3 6.64 8.16 7.76 8.26 7.63 7.46 10.4 4.31 8.86 11.1 9.76 0.12 6.04 10.7 5.86 7.33 11.3 4.54 10.9 9.14 5.67 11.7 10.8 10.7 9.27 2.95 5.71 8.6 7.86 2.26 8.94 3.41 10.5 1.73 10.9 4.26 -0.09 6.84 9 8.76 7.72 0.44 12.1 1.7 0.48 9.17 0.45 3.22 13.8 1.7 11.7 9.38 7.17 3.51 7.77 7.16 9.9 6.36 9.5 5.34 11.9 9.33 7.43 9.44 6.76 10.1 5.89 4.32 2.67 9.38 0.73 2.5 11.2 5.59 3.74 11.4 1.22 1.44 7.24 6.85 7.12 6.98 7.94 -0.51 5.88 6.91 6.51 2.02 5.08 9.9 8.62 7.71 6.4 10.8 9.13 1.17 10.8 9.87 8.04 3.7 9.78 8.42 1.95 8.09 3.49 9.06 7.96 12.2 7.79 6.15 3.15 0.94 10.2 8.27 8.43 12.1 11.1 6.38 5 0.45 9.66 9.89 9.74 6.29 8.88 8.79 4.82 5.66 6.66 11.7 1.6 5.59 8.32 9.79 4.43 3.38 6.53 6.8 1.86 0.46 10 -0.05 3.09 3.55 9.38 8.55 5.63 4 9.08 6.47 8.84 11.1 11.4 7.99 9.14 5.75 1.13 9.68 8.98 1.9 10.7 9.56 3.26 6.81 7.47 5.54 4.25 3.47 8.86 4.24 11.1 0.68 9.46 3.13 6.22 8.68 0.57 1.29 11.4 7.86 7.38 2.84 0.82 2.75 0.43 4.3 1.3 6.8 11.1 2.36 9.88 11.8 8.93 12.1 8.44 9.8 10.3 6.99 4.14 10.9 12 4.64 9.3 9.73 9.69 2.57 3.35 8.85 4.69 6.73 6.65 7.13 6.84 9.29 11.2 8.03 6.56 -1.69 4.82 7.9 6.15 9.32 10.3 7.89 5.33 7.22 2.51 3.33 7.23 5.48 1.43 7.33 12.8 6.88 6.08 9.16 6.44 1.62 2.26 11.2 3.56 11.2 12.8 5.87 4.19 7.04 4.95 9.56 5.46 10 7.1 11.7 8.52 8.7 12.8 3.59 9.01 3.47 12 5.49 7.78 11.2 5.32 0.95 8.01 6.55 10.2 0.52 6.37 6.61 6.66 9.82 11.1 8.75 9.5 8.34 1.32 2.14 7.25 9.65 2.24 9.33 0.65 0.49 11.3 9.7 7.44 8.81 1.63 2.63 8.64 12.2 5.14 1.62 9.97 2.83 3.47 2.19 5.4 0.59 8.96 6.16 5.87 8.3 3.4 12.8 7.97 6.09 2.38 0.59 2.04 7.09 1.55 10.5 8.7 6.45 -0.21 5.98 0.08 8.02 3.64 0.95 1.78 9.14 3.46 1.01 5.95 0.28 8.79 0.66 9.29 0.29 8.03 10.1 6.48 8.98 3.27 7.76 8.19 5.7 11.5 0.48 8.48 7.87 9.11 11.1 9.28 9.95 1.94 1.09 3.49 4.4 6.96 6.29 7.96 6.4 12.1 4.62 3.35 6.08 1.36 3.05 1.18 3.03 7.98 8 5.55 9.81 5.22 7.43 0.19 10.8 9.24 7.78 6.39 6.58 6.09 4.92 0.37 9.62 6.37 8.19 4.66 5.95 6.21 3.48 3.88 6.98 6.11 7.99 9.09 2.88 5.25 6.9 7.05 8.5 3.2 2.38 7.22 5.27 4.2 8.04 4.07 3.84 6.17 5.73 3.52 1.69 5.88 5.93 1.65 8.81 4.7 7.46 7.58 8.75 8.1 5.65 5.13 8.34 1.3 -0.32 11 3.74 0.53 3.99 9.81 10.4 4.4 0.39 11.4 3.96 4.07 10.1 0.98 11.5 9.61 -0.66 8.31 4.16 2.55 2.37 9.74 0.74 3.18 5.39 5.26 9.21 7.74 3.71 5.72 8.03 5.89 4.38 2.29 13.4 11.2 5.46 8.28 3.96 6.45 12.9 10.2 10.8 -0.13 5.79 13.8 -0.19 6.29 10.2 0.53 -0.26 1.25 2.36 2.45 0.78 8.06 1.04 0.72 6.96 9.71 8.11 5.74 10.3 1.01 1.33 4.9 7.25 7.05 6.66 6 2.61 10.1 7.45 9.06 3.05 7.6 3.07 9.34 7.44 11.6 3.24 4.52 6.91 3.42 4.07 8.2 4.76 14 10.5 14.1 7.57 0.79 12.2 7.07 10.9 10.4 7.05 2.48 4.28 0.22 8.89 7.96 9.25 13.2 7.98 4.39 7.95 1.92 4.28 5.46 9.57 4.81 5.56 9.4 3.97 9.59 -0.5 5.18 1.79 9.02 7.36 6.34 7.4 3.05 7.13 7.54 7.14 11.8 5.71 5.36 4.93 0.43 4.12 2.29 12 3.65 10.6 8.68 8.8 8.78 2.42 12.9 8.61 9.88 7.71 0.21 2.57 2.22 6.51 1.16 12.1 9.33 6.76 7.02 11.4 3.39 8.96 7.85 11.9 5.78 6 5.97 3.31 4.4 10.3 10.6 8.38 7.28 8.31 3.37 8.08 0.94 3.68 2.13 3.8 10.4 8.68 1.46 1.88 7.14 7.22 3.38 6.3 11.1 9.64 8.28 10.2 11.7 7.51 8.5 11.6 8.79 2.49 11.2 10.8 9.44 2.82 10.3 8.04 0.79 0.77 5.1 10.5 8.43 6.98 6.44 9.97 1.51 12 3.01 10.1 8.05 7.79 4.12 7.09 8.34 1.13 4.54 5.6 0.82 6.79 10 2.96 10.5 6.06 5.23 -0.53 6.63 10.2 0.22 10.7 10.5 2.5 7.57 7.83 0.02 7.96 6.56 7.14 9.39 5.27 5.76 3.49 5.66 9.15 4.55 6.05 9.86 0.66 2.85 11.2 5.02 3.68 7.84 4.57 2.41 10.6 7.72 7.69 8.05 10.6 7.92 7.55 4.64 5.13 11.6 5.19 9.5 4.82 8.33 9.74 2.14 11.5 3.07 2.74 7.24 6.51 10.2 2.15 9.3 0.46 -0.19 3.75 6.95 4.2 5.21 9.84 6.35 0.37 6.45 5.57 7.7 1.42 9.74 3.32 9.93 1.93 5.43 3.6 1.37 6.73 9.44 7.22 9.66 2.77 6.7 8.88 -0.08 7.82 5.49 3.09 1.58 4.68 1.11 2.25 3.33 2.56 4.62 10.3 7.98 10 4.23 9.35 0.06 1.3 6.44 7.78 5.1 11.2 2.66 0.06 11.2 10.9 0.89 9.73 3.31 3.77 1.24 0.76 11.3 10.7 4.58 3.82 10.9 10.4 -0.03 7.45 11.4 8.79 11.2 5.05 9.21 3.99 6.73 2.96 7.98 7.27 11 11.4 3.65 9.51 3.52 7.74 9.63 0.49 2.39 11.1 9.62 5.71 8.77 4.13 3.47 11.1 1.68 8.12 10.1 0.97 1.84 11.1 7 5.09 5.98 4.19 7.43 11.3 10.7 2.72 11.5 7.64 1.64 9.58 3.16 11.8 8.67 2.15 2.85 4.14 1.63 2.89 6.35 5.06 6.58 8.27 5.19 9.59 6.93 3.41 8.86 10.4 4.64 5.17 5.97 9.1 5.84 0.47 12.8 6.8 8.34 8.06 5.83 5.89 2.03 4.8 7.21 3.51 7.32 8.44 6 4.74 1.27 9.46 1.31 7.34 4.5 5.46 9.99 3.49 12.3 6.88 11.3 9.25 6.91 1.16 4.53 4.51 0.88 3.43 7.88 9.76 9.01 11.3 11.7 0.27 8.75 1.8 11.8 4.99 10.6 0.53 3.32 4.15 12.1 1.01 11.7 1.66 2.02 4.27 2.42 11.2 6.73 9.71 11.8 11.4 6.43 2.5 2.75 6.69 9.4 6.23 11.3 8.38 12.7 13.6 4.07 9.26 12.3 5.04 2.3 9.78 0.08 10.6 2.96 8.85 12.9 12 1.07 9.8 8.15 7.95 2.58 8.35 6.69 11.4 10.3 5.53 10.3 8.6 6.35 7.95 11.9 10.6 9.79 4.45 10.2 7.68 9.57 1.72 13.1 0.4 5.03 6.83 3.47 8.52 2.54 6.96 6.64 7.65 3.4 9.91 5.42 8.84 8.2 1.81 3.02 8.3 4.02 0.2 1.98 5.92 9.56 2.27 6.95 5.72 1.65 0.32 8.04 9.42 7.76 7.7 6.08 8.03 4.64 1.2 0.02 2.13 8.52 2.91 2.66 8.48 8.26 4.33 10.5 5.59 2.05 10 3.34 2.96 6.01 2.75 4.17 10.7 9.4 6.89 8.88 5.23 9.96 4.25 10.2 12.3 3.34 7.62 1.07 4.77 11.4 6.7 10.2 -0.01 9.14 9.84 9.3 10.7 13.5 8.2 7.98 6.19 9.01 12.2 11.4 12.5 8.83 6.45 6.74 8.61 10.8 9.93 11.7 11.3 7.54 10.1 6.1 11.3 2.3 1.66 0.55 2.5 9.81 7.36 4.37 6.57 5.46 9.3 8.39 8.23 5.24 0.44 5.78 2.79 6.3 8.25 3.68 2.65 10.2 13.2 11 3.33 12 11.6 11.3 10.8 6.89 8.11 7.46 10.9 8.41 3.77 6.92 6.61 9.7 8.31 3.16 8.63 8.55 5.05 8.81 10.6 11.6 0.21 10.6 2.44 1.3 8.85 13.3 6.79 3.58 11.6 10.4 10.1 14.2 8.98 8.51 13.2 8.32 6.03 5.99 9.6 5.36 8.44 6.79 10.6 6.36 11.7 8.3 6.79 10.7 10.1 2.44 7.85 1.13 9.95 9.24 8.92 12.1 10.1 9.9 8.44 8.95 6.55 9.71 10.2 7.18 9.23 8.18 6.77 6.87 10.7 0.69 10.7 10.8 11.2 8.38 11.1 3.64 8.6 7.92 6.63 8.39 8.02 8.03 12.4 6.98 6.86 11.2 16 5.22 0.12 10 9.76 7.29 6.17 8.77 11.6 12.2 13.4 14.9 9.26 10.6 7.05 7.2 7.73 11.8 10.8 2.1 5.73 6.7 9.98 8.59 10.2 10.2 11.6 11.1 8.42 8.31 6.8 12.8 6.19 2.99 4.05 9.12 -0.16 9.65 6.74 6.42 8.77 2.98 7.66 10.7 9.99 9.3 10.5 9.9 7.31 10.9 1.87 5.94 13.3 10.4 1.64 10.3 7.51 3.96 6.04 12.4 5.06 6.6 11.8 3.81 1.51 3.46 1.99 9.7 5 4.11 3.55 8.04 8.69 13.3 5.66 5.36 9.5 5.08 7.48 8.89 13.6 6.56 13.2 10.4 8.43 11.5 13.7 14 12.4 12.5 -1.78 8.93 -0.24 12 4.67 4.29 10.9 -0.28 3.36 3.98 8.37 0.4 11.4 6.75 2.22 2.39 8.22 5.91 6.11 5.51 3.09 9.59 5.73 7.63 8.3 12.3 8.41 -0.1 7.02 12.5 8.84 10.6 0.59 2.4 9.8 8.35 4.42 8.48 11.5 0.69 3.69 5.67 3.36 10.2 9.23 7.11 8.7 7.94 0.69 7.43 4.26 7.84 3.47 8.82 2.71 1.59 1.17 9.63 7.85 4.27 5.3 9.76 9.83 8.75 5.58 10.6 6.91 0.65 5.72 6.1 9.75 6.49 6.96 7.69 11.5 3.47 10.1 6.26 13.3 9.6 10.4 5.5 9.52 7.17 9.84 7.46 11.1 3.67 10.8 6.22 6.15 9.19 8.98 11.1 7.77 9 9.43 4.68 11.2 3.42 7.43 0.9 8.43 4.69 3.47 7.69 8.29 10.6 5.43 2.14 9.24 8.95 6.14 7.47 12.6 7.71 -0.51 4 9.02 3.03 8.88 6.43 9.41 7.06 11 9.43 6.78 5.04 7.37 7.11 5.69 10.1 9.22 1.03 14.1 5.84 4.54 2.76 1.86 0.4 8.25 6.39 7.55 6.49 11.7 11.4 9.06 9.85 7.03 6.89 13.4 8.96 3.02 2.12 0.91 9.07 8.15 6.86 7.39 8.14 8.01 9.57 11.3 5.86 11.1 8.11 10.7 8.1 6.51 10.6 12 10.9 4.85 9.39 11.1 10.8 12.2 4.67 2.83 5.49 3.49 9.23 5.44 11.1 7.7 8.31 8.62 12.4 4.07 7.97 7.25 9.31 9.07 8.6 10.4 9.33 10.7 -0.19 5.46 8.77 11.5 10.6 10.6 9.11 1.98 9.77 17.7 2.22 0.55 11.6 9.52 8.54 3.87 11.9 2.29 9.23 8.81 7.76 10.6 8.43 10.6 7.36 11.8 10.9 8.53 11 10.9 3.9 7.54 10 4.42 10.1 2.39 11.7 11.5 9.94 10.2 7.94 10.6 11.9 7.81 2.15 7.54 9.36 9.65 5.84 10.3 6.94 11.3 7.74 8.54 12.4 0.39 12 10 10.9 1.07 8 10.4 2.11 2.67 12.3 7.34 8.52 9.14 0.91 9.56 7.1 10.7 7.09 11.7 9.33 2.15 5.95 4.45 11.9 7.35 9.95 8.78 5.85 0.15 11.5 5.77 8.13 8.63 9.42 7.64 7.2 8.11 9.42 11.7 10.8 7.32 11.2 11.7 4.35 8.27 8.49 10.9 10.5 10.6 2.56 10.2 8.31 3.1 4.99 12.5 9.77 13.4 2.37 1.52 8.63 10 5.62 8.45 7.14 9.05 11.6 4.78 2.99 8.81 8.19 10.5 8.97 4.15 3.66 8.01 7.87 6.68 9.52 3.41 9.27 7.78 0.66 8.69 10.7 7.78 8.93 11.9 3.98 9.34 1.43 7.09 8.39 6.55 3.41 1.93 4.99 7.48 3.86 4.5 11.1 1.63 8.88 6.26 9.88 4.49 3.3 2.09 4.09 4.08 4.39 5.89 5.07 9.38 7.41 2.52 0.16 6.1 7.42 4.22 3.2 6.31 7.2 6.41 12.4 5.84 8.96 6.27 2.5 10.1 10.7 2.36 7.75 8.04 9.36 4.44 12 5.12 6.68 6.81 9.67 9.28 6.99 8.26 9.81 6.04 9.77 8.88 8.39 7.15 4.44 8.75 10.6 2.84 7.39 1.87 3.15 3.36 9.87 0.44 7.11 7.13 6.19 11.1 2.63 8.11 9.74 2.83 7.96 6.25 8.28 3.73 10.1 4.92 3.62 10.6 8.21 1.84 7.22 8.57 7.86 9.44 0.07 10.4 3.73 7.37 3.96 7.69 4.67 10.7 7.36 11.1 9.2 9.32 4.77 5.22 10.7 9.17 7.74 8.75 4.36 9.99 11.5 4.91 8.6 6.94 8.63 10.2 8.43 5.31 6.67 10.7 10.3 4.03 0.05 2.38 9.25 2.78 11 9.82 3.11 6.21 1.71 2.95 3.41 2.19 6.44 1.36 3.52 10.4 9.66 9.36 3.31 9.66 8.05 9.86 11.9 11 6.88 6.52 6.62 6.35 5.24 3.36 9.27 5.71 6 1.59 4.36 7.69 14.6 8.83 11.8 3.65 5.54 10.7 7.28 10.1 3.68 10.2 11.9 8.06 11.1 9.12 9.86 10.3 12.7 10.2 9.53 3.29 11.6 12 8.07 7.39 9.89 2.46 12 4.56 12.5 7.51 11.8 9.9 9.87 11.1 10.4 10.2 5.78 7.27 10.4 7.55 11.3 9.48 10.4 11 9.03 2.81 -0.09 8.63 8.94 9.31 10.4 6.93 9.75 8.15 9.97 0.38 11.4 9.22 9.98 8.98 9.68 10.7 9.33 10.5 1.34 10.1 8.61 11.1 11.1 7.18 11.9 6.98 10.6 9.81 8.79 10.5 10.3 9.71 11.3 9.11 5.9 7.07 13.1 8.46 6.38 10.2 7.95 9.68 9.56 10.3 5.57 9.61 9.8 0.17 8.57 8.93 6.84 5.54 8.29 3.85 8.73 9.54 10.5 9.52 10.3 9.86 9.66 8.73 9.33 11.5 6.4 5.86 11.9 0.15 10.4 12.2 8.33 8.49 7.54 5.04 10.6 8.39 11.2 9.46 11.1 11.2 6.22 7.86 8.09 10.1 9.97 10.7 8.5 8.38 12.4 8.53 9.69 1.32 8.87 9.36 9.84 2.49 3.17 10.3 8.62 5.44 10.7 3.98 4.51 10.6 4.83 7.31 1.92 10.4 11.5 -0.33 5.27 -0.27 10.8 11.5 10.7 9.06 7.04 8.05 5.5 9.37 11.1 9.87 9.65 9.67 9.01 9.42 9.74 -0.08 11.4 10.6 10.5 10.5 7.88 8.7 12 2 12.1 11.9 10.3 7.63 2.65 2.43 9.95 9.57 9.55 9.25 11.3 8.59 8.37 8.96 9.22 5.43 10.8 10.5 11.3 11.8 9.79 6.92 9.45 9.52 11.6 9.38 9.14 10.9 10.5 11 4.61 8.85 6.28 11.1 11.5 10.6 11.1 11.5 9.67 4.85 9.31 9.99 11.7 2 8.96 9.82 10.2 10.8 9.94 9.45 9.61 9.84 10.1 9.96 8.66 9.21 4.16 9.59 6.03 11.4 11.2 9.21 11.3 9.83 7.99 9.38 6.03 9.67 8.96 8.7 4.58 11.2 3.38 10.2 7.94 2.03 8.55 10.2 10.1 9.04 9.23 7.39 10.9 7.17 5.78 8.9 9.2 9.73 10.5 3.51 9.62 7.61 10.1 10.9 7.29 9.91 10.5 8.02 9.7 4.87 11.3 11.9 9.95 11.2 9.34 9.73 8.83 0.45 4.79 5.92 3.19 9.48 10.6 10.5 8.63 9.51 9.54 8.37 14.6 10.4 9.9 9.8 10.2 10.8 10.8 10.5 11.2 10.9 10.1 12 10.8 8.42 8.91 11 10.1 9.19 10.8 8.28 8.44 8.27 11.1 8.68 10.4 11.6 10.5 10.1 10.3 10.3 11.6 12.4 11.8 10 13.1 6.52 8.93 13.1 11.2 11.3 10.9 12 7.14 10.4 12.3 3.88 9.67 7.79 3.13 9.17 9.49 10.1 9.1 12.2 10.8 13 10.4 -0.26 11 10.1 3.03 10.4 10 9.7 13.3 8.26 6.13 9.17 5.95 11.8 12.4 8.59 7.19 10 10.1 6.41 0.76 9.56 6.87 7.09 10.4 10.6 9.09 11.9 7.25 7.96 9.36 11.1 12.1 6.26 7.56 10.4 5.62 10.4 9.44 8.64 8.99 7.34 8.18 9.25 6.75 11.5 11.8 8.42 11.8 8.67 6.37 7.94 10.8 9.95 10.1 9.53 8.29 11.4 9.95 4.28 1.77 9.47 5.85 6.29 11.2 8.72 11.4 6.35 11.2 10.4 10.1 10.5 11.7 3.66 10.5 9.66 4.73 11.4 9.29 2.57 9.94 10.4 8.47 9.78 9.91 9.63 10.3 10 6.99 9.22 0.66 10.8 8.8 9.74 10.1 6.88 9.89 11.6 12.3 11.1 9.19 9.32 11.1 12.3 9.11 8.48 10.4 10.1 10.5 6.97 9.13 11.1 10.4 10.5 10.1 2.45 14.8 11.8 10.8 12.2 11.6 7.77 10.5 8.49 10.2 1.07 10.2 9.82 8.83 7.04 12.3 8.83 12.9 9.97 11.6 11.7 8.89 7.58 10.2 8.15 9.71 9.71 10.9 10.5 9.92 10.5 11.5 11.3 8.96 10.8 10.6 9.34 11.8 12.3 8.68 10.1 7.85 9.27 10.4 9.96 7.51 8.25 9.2 10.1 12.3 8.86 3.45 8.56 9.29 9.27 8.05 5.67 1.85 4.83 4.46 2.7 9.37 12.2 7.89 11.4 10.3 2.68 10.2 9.62 3.28 8.43 5.5 9.27 11.3 9.61 9.92 12.7 11.7 12.6 10.2 10 8 9.98 5.57 9.92 6.98 10.7 7.58 7.22 6.6 10.3 10.8 15.1 8.33 8.98 4.36 10.9 12 10.9 8.18 11.1 10.3 9.05 10.1 6.08 7.63 5.81 1.55 4.16 13.1 6.74 7.97 9.5 7.8 11.1 8.56 9.52 4.95 10.7 10.3 11 10.6 8.43 9.35 10.3 12.2 12.1 9.3 4.27 2.69 13 9.26 10.6 13.2 8.92 11.7 8.95 7.05 11.5 10.7 8.64 1.66 6.35 10.8 8.79 3.19 7.43 10.2 7.47 11.2 0.45 9.15 1.19 1.69 8.69 10.4 10.4 10.1 5.38 6.65 11.4 10.5 10.6 8.02 11.8 9.32 9.57 10.3 7.7 1.62 10 2.09 7.71 10.7 2.83 6.24 12.5 2.88 10.6 9.97 9.17 1.32 10.8 8.3 9.01 8.67 9.49 8.29 7.37 10.4 10.6 7.51 7.92 7.1 9.69 10.1 10.7 5.5 12.7 7.89 11.8 11.5 8.49 7.41 12.3 1.6 10.9 8.25 9.81 9.22 3.85 0.16 1.77 4.39 11.4 5.14 10.9 11.1 3.39 9.3 5.99 9.07 6.99 10.4 10.3 11.7 9.09 10 7.68 12.2 13.7 8.05 9.92 9.16 9.34 11.4 10.7 10.7 8.78 8.06 9.9 7.93 5.96 5.63 8.9 9.19 12.7 11.4 2.67 7.83 10.2 10.7 9.68 6.26 9.24 6.45 2.37 10.9 7.97 3.05 11.1 9.94 8.42 11.2 9.85 11.4 10.7 0.15 2.41 8.23 7.72 8.16 8.49 8.97 10.2 8.84 4.48 5.58 9.71 9.6 8.04 4.68 11.7 9.73 4.63 8.16 0.08 3.7 6.74 2.27 6.35 0.36 9.88 2.29 3.21 2.65 6.72 8.53 6.08 5.48 6.63 6.9 3.06 0.95 3.42 9.59 10.1 6.55 4.81 5.51 8.69 13.6 7.44 11.5 -0.25 14.4 10.2 10.9 12.3 8.84 9.5 11.2 9.86 0.22 7.19 7.08 4.56 1.72 7.78 7.39 4.48 10.3 2.12 2.76 6.75 12.1 9.97 2.55 3.59 7.46 9.6 9.8 7.89 5.6 11.9 5.43 9.32 9.91 6.81 6.07 9.87 7.51 3.39 9.76 5.54 6.69 10.7 9.3 8.74 1.96 9.85 11.1 8.62 7.5 8.16 4.35 5.21 10.4 -0.28 8.07 11.2 -0.35 0.03 8.38 1.75 1.81 9.33 9.16 7.56 7.48 2.09 0.45 7.69 7.72 5.87 8.63 10.1 9.94 7.26 3.46 12.5 1.69 4.11 11.4 9.55 7.14 8.7 9.19 6.81 4.48 4.14 5.92 2.86 0.69 5.14 9.54 7.86 2.85 6.66 2.83 9.19 2.27 8.95 3.74 8.17 3.08 -0.4 6.77 2.68 7.17 3.81 8.85 12.4 7.26 6.41 5.38 9.15 8.16 8.79 9.84 4.57 1.63 4.64 2.58 7.95 8.9 3.75 6.3 3.69 7.09 1.55 10.1 9.03 5.58 3.32 4.4 7.98 2.53 8.77 8.01 1.19 4.18 2.78 2.76 -0.36 1.93 5.63 0.01 8.22 3.28 0.94 3.28 5.24 2.93 8.73 7.02 6.53 8.89 6.42 8.3 3.65 4.05 7.55 1.87 8.22 3.47 0.81 7.77 2.35 10.7 10.4 8.55 8.11 5.4 5.13 9.69 6.81 8.54 0.59 9.53 11.3 8.67 7.87 10.1 6.55 6.69 6.8 5.53 8.03 10.9 10.9 3.26 8.99 5.59 11.2 7 10.6 11.8 10.1 8.67 10.2 6.18 10.2 10.2 7.78 6.68 10.4 0.42 9.68 11.2 9.79 6.51 7.96 9.9 11.4 8.91 8.12 0.42 12.3 10.2 3.72 10.5 11.5 3.11 0.51 11.8 8.13 3.35 10.8 6.22 9.29 7.25 11.9 8.95 8.8 10.3 10.8 6.06 11.2 7.19 8.63 3.51 8.12 10.1 11.1 4.65 9.94 3.23 5.6 4.58 6.66 10.3 11.9 9.89 12.6 10.9 10.2 4.08 10.9 9.84 8.21 7.87 9.34 6.5 8.12 11.7 9.79 3.14 10.4 7.97 9.65 10.3 8.61 0.32 12.2 6.51 8.81 9.18 9.86 8.38 8.53 4.89 10.3 10.1 8.96 11.6 9.69 7.85 7.88 9.41 8.94 2.5 8.11 10.8 12.4 -0.1 5.6 9.27 10 0.35 2.2 6.48 10.7 7.71 6.42 4.54 11 0.22 8.67 1.36 0.56 3.77 3.63 9.55 7.49 11.3 8.57 8.55 7.68 8.86 11 10 9.97 10.8 7.2 7.86 10.1 10.4 9.56 9.06 7.42 10.2 5.08 10.5 10.7 9.67 4.21 10.3 11.2 8.52 15.8 8.92 10 6.69 7.11 10.1 9.23 11.4 9.24 9.77 5.84 9.04 8.75 10.2 8.02 10.2 6.83 10.8 9.41 9.73 7.87 9.62 10.2 10.5 7.37 11.3 9.19 9.4 9.65 12.5 7.17 9.26 5.74 8.98 10.8 9.55 10.7 11.7 11.3 9.14 5.51 8.06 5.81 7.89 10.5 11.6 5.24 0.79 5.61 10 9.06 11 3.07 9.11 7.11 9.02 8.84 2.46 9.29 10.2 7.78 8.62 0.86 7.46 6.68 6.99 10.9 10 11.4 10.8 10 7.54 8.66 10.6 11.4 8.77 10.7 2.39 5.26 5.49 9.45 11.1 10 10.8 8.11 7.02 3.05 10.6 8.52 11.2 10.8 2.9 8.51 9.83 11.1 8.03 10.2 9.52 10 9.33 9.08 10.7 11.3 12.9 11.8 3.91 7.4 7.57 9.6 9.9 5.22 9.44 0.11 8.84 9.61 5.64 11.4 10.1 11.5 8.41 7.77 9.23 3.99 9.11 11.6 10.2 10.3 11.4 7.32 8.84 10.6 7.48 11.6 7.17 10.6 4.64 8.98 1.76 8.71 10.8 1.71 8.51 2.62 10.2 10.6 5.04 1.74 8.15 0.14 6.31 3.69 3.96 7.94 11 7.61 4.57 7.43 6.95 5.86 1.57 2.9 3.78 3.86 10.4 9.34 7.74 1.58 10.1 10.2 2.92 7.32 9.49 9.17 9.44 6.02 8.01 7.36 9.09 8.8 9.07 9.28 7.65 3.67 12.5 10.1 10.7 2.05 8.99 0.54 10.1 6.7 7.09 5.38 10.5 8.98 10.8 0.29 11 11.2 9.74 11.5 7.64 1.02 9.26 8.33 4.33 8.25 9.75 10.7 8.3 9.75 11.2 4.34 10.4 7.99 9.66 9.45 10.4 10.9 2.48 8.59 12.4 8.62 8.01 9.69 9.68 9.39 7.84 8.87 8.58 9.24 7.95 10.3 3.79 3.33 -1.11 10.4 2.8 2.32 2.74 10.3 11.2 10.2 13.7 10.5 9.05 3.09 9.56 3.05 7.37 2 11 12.3 8.24 2.38 3.86 3.81 4.69 8.9 7.19 12.1 3.01 7.59 6.85 1.71 8.57 5.53 11.7 5.2 8.11 1.71 8.73 11.6 1.6 7.13 9.3 11.9 6.96 5.84 5.83 0.87 12.2 4.97 8.46 9.03 8.63 0.28 5.37 11 9.11 9.97 3.09 4.93 11.8 10.2 6.05 8.97 10.7 14.6 9.1 11.2 9.66 10.7 8.12 8.95 0.52 2.69 10.7 4.65 8.41 6.59 8.79 10.3 7.81 6.97 11.9 9.47 6.78 12.7 2.7 8.58 7.61 5.31 8.51 6.17 9.14 10.5 12 10.4 6.94 3.89 9.76 9.94 12.2 10.2 8.23 12 6.58 11.9 6.94 6.08 7.53 7.1 10.1 2.51 10.6 9.63 6.79 4.05 4.44 10.1 9.19 0.69 1.31 9.68 8.09 10.6 12.1 8.97 10 6.99 11.3 1.69 8.26 5.99 9.18 4.85 6.38 11.6 0.78 7.96 8.76 5.07 8.07 11 7.91 9.14 10.1 7.11 7.36 -0.47 5.19 9.36 3.16 6.56 7.51 9.77 2.58 9.9 -0.17 7.88 6.24 8.69 10.8 8.33 11.6 7.24 5.11 2.75 10.7 5.76 0.31 6.56 0.43 5.02 2.15 7.26 9.75 2.45 7.85 12.2 1.35 3.29 7.51 10.6 9.13 8.31 3.68 4.66 7.2 12.9 10.6 10.8 8.89 8.25 8.64 11 11.3 10.5 9 7.71 4.66 9.17 9.31 4.31 0.84 9.74 3.3 7.56 11 9.47 8.87 8.84 2.67 11.6 7.67 2.53 9.11 9.22 9.69 3.38 6.43 4.58 9.99 1.42 5.07 8.66 11.5 3.78 10.5 10.1 11.5 11 5.1 11.5 10.5 8.23 11.5 12.2 9.81 9.62 9.94 8.34 0.13 4.1 9.66 11.1 10.1 7.83 4.93 9.85 7.53 9.44 6.05 6.22 5.72 11.2 7.94 7.73 4.6 10.6 8.92 8.12 10.8 4.53 12 9.1 1.15 2.61 10 12.2 8.95 5.12 10.8 0.69 11.1 9.8 11.2 4.2 9.6 10.9 8.82 7.08 11 11.4 5.37 6.83 11.7 14.3 1.03 6.86 12.2 12 2.14 2.15 4.04 11.4 5.91 0.37 7.42 7.79 4.93 9 4.53 1.33 12.9 9.54 4.29 9.87 11.5 12.1 12 13 10.1 11.9 8.95 2.77 13.8 3.88 1.91 7.87 9.46 10.7 13.6 3.23 5.55 3.39 9.93 7.33 4.97 4.01 0.58 2.36 7.02 4.54 6.28 1.2 9.85 2.92 -0.03 6.42 2.39 4.65 10.1 1.6 4.69 7 3.23 3.94 3.15 4.19 9.72 10.6 5.32 13.2 11.4 1.82 7.07 5.94 8.32 1.31 7.33 8.3 8.58 8.33 8.39 1.16 6.55 8.89 2.44 6.35 5.3 7.18 5.09 9.43 4.13 8.02 4.21 10.6 6.75 7.99 6.24 2.99 2.54 3.01 1.08 7.48 0.98 10.3 4.77 7.99 6.03 9.12 3.39 9.06 5.94 0.46 3.61 3.23 8.06 3.7 3 1.51 8.67 -0.2 5.76 0.47 3.96 10.5 11.3 7.02 5.98 0.99 3.52 4.7 6.73 3.04 9.15 0.5 1.61 4.79 10.7 2.72 4.46 0.1 3.66 7.46 4.77 8.38 5.46 5.82 6.02 1.73 2.55 7.62 8.09 0.28 2.5 10.5 8.79 10.4 5.56 1.21 9.11 8.72 0.49 4.34 7.65 5.25 4.72 3.99 8.33 4.38 10.6 2.95 3.73 5.59 0.16 6.6 8.07 0.06 3.99 1.16 8.64 3.58 0.68 7.3 11.4 8.3 8.73 6.62 8.76 3.95 5.04 4.22 4.15 9.32 3.99 2.1 9.03 3.72 9.5 0.39 7.58 3.85 5.7 3.51 8.44 8.52 8.75 4.16 2.03 4.02 5.02 5.42 2.11 1.77 11.3 2.69 5.65 6.05 5.25 5.33 1.04 7.41 4.09 0.4 3.97 10.4 1.81 4.82 7.4 6.1 7.44 6.64 8.9 0.39 0.15 0.49 5.42 0.3 3.51 2.28 10 3.77 7.63 5.16 5.27 2.74 8.87 3.56 9.73 3.2 2.02 4.56 3.17 -0.59 4.75 3.31 3.19 4.31 4.95 6.87 0 4.85 4.39 6.53 1.03 6.21 4.14 10.5 5.93 -0.48 0.06 2.96 5.01 0.68 6.61 9.84 4.69 4.7 9.28 3.12 9.21 2.26 4.74 7.48 5.1 5.22 3.28 9.33 10.3 1.57 5.46 9.07 9.35 3.32 7.03 8.03 1.52 8.73 2.67 5.85 8.62 7.26 3.9 8.91 6.22 4.24 5.29 3 8.67 -0.23 8 7.89 2.96 5.56 6.52 8.82 11.2 3.73 8.23 1.47 9.07 0.31 1.67 3.21 5.59 8.62 2.65 9.45 2.32 5.09 10.4 2.09 6.78 9.1 7.7 4.44 8.94 1.17 6.07 0.5 9.6 10.1 3.92 7.81 0.51 4.32 8.71 -0.41 4.66 8.09 5.56 9.24 7.43 5.07 -0.25 4.68 4.3 1.82 1.5 8.33 7.53 2.25 11.9 4.17 9.62 6.12 3.13 2.94 8.03 3.01 7.27 10.2 10.3 2.95 4.5 9.1 2.58 1.81 1.74 8.1 9.88 5.85 1.72 6.72 10.4 9.25 8.67 5.38 1.6 4.13 5.98 9.87 2.74 5.62 7.46 7.87 7.6 3.61 6.02 8.94 11.6 10.7 8.89 3.74 10.1 13.4 7.75 10.1 10.6 5.88 11.9 7.85 11.4 2.8 7.36 9.35 8.58 8.13 9.08 8.19 10.4 9.97 13.2 7.48 9.9 11.1 1.07 6.09 2.74 10.5 1.4 10.5 7.53 10.1 9.93 9.96 9.72 9.91 9.54 9.1 8.92 6.5 10.1 6.98 10.1 11 9.06 2.65 7.68 8.44 6.41 7.84 9.68 2.24 11.3 6.84 0.99 5.13 8.23 4.7 9.99 3.81 10.2 4.4 8.85 11.2 5.65 9.24 8 10.1 10.8 10.3 7.51 9.47 10.2 10.2 7.54 10.1 10.3 9.87 9.19 10.1 7.38 10 9.71 9.22 9.52 8.48 10.7 8.67 8.08 6 8.99 9.8 9.65 10.3 8.45 8.62 6.59 9.52 10.1 10.3 9.93 7.79 8.88 0.58 8.16 9.38 8.45 1 10.5 10.5 9.63 10.3 1.89 1.83 9.07 0.58 11.9 2.46 7.01 10.1 9.14 1.32 2.29 7.01 12.3 6.12 5.38 13.4 1.93 11.3 12.4 10.3 11 11.8 11.4 10.9 10.3 6.53 0.31 5.67 9.74 9.48 4.41 13.9 2.52 1.88 8.74 10.3 7.11 10.6 9.45 8.93 9.74 11.1 9.67 9.87 7.35 8.76 8.21 11.2 11.8 10.5 9.03 0.46 11 10.1 8.65 9.92 9.26 1.47 11.2 6.91 2.94 11.2 9.06 1.97 9.07 9.09 12 11 4.46 10.4 0.76 4.84 6.04 6.17 6.71 3.64 11.6 9.95 8.35 3.97 8 4.67 9.5 7.25 4.08 5.18 10.9 10.8 9.48 11 9.55 10.7 8.6 10.1 10.5 10.4 9.44 7.3 10.4 1.24 10.2 9.21 10.8 7.47 5.75 4.89 10.1 0.96 8.53 5.43 9.11 7.81 8.67 9.31 9.15 9.47 10.6 7.69 7.91 11.2 7.19 8.8 13.3 8.42 9.03 3.86 5.85 7.28 2.03 8.65 9.15 6.25 1.05 2.77 8.99 9.07 7.43 7.17 8.99 4.12 9.32 9.47 12.3 11.1 2.9 11 1.85 10.2 7.54 6.84 10.3 6.59 11.4 8.72 10.3 6.68 10.1 12.4 8.65 9.07 8.54 8.63 3.26 9.52 5.71 9.74 4.24 2.19 10.1 7.74 11.5 7.64 2.43 8.87 0.18 10.9 11.7 8.87 3.83 9.19 10.5 6.2 6.18 3.96 11.5 10 12.2 1.19 3.19 0.04 12.7 6.24 1.83 9.78 11.9 9.83 14.9 12.1 14.5 9.52 9.08 7.59 11.7 11.6 10.2 2.07 10.2 1.6 5.49 10.9 8.03 13.3 10.4 9.76 0.16 2.06 -0.48 4.25 10.4 1.92 11.1 8.12 9.19 11 10.9 12.6 11.4 2.22 12 13.3 13.5 8.84 8.7 10.7 12.2 12.2 7.55 11 8.57 7.57 2.49 8.48 7.38 4.61 3.59 5.21 9.32 3.41 8.96 9.24 7.16 11.1 5.47 3.37 9.89 6.44 9.67 9.99 10.3 11.4 7.71 10.1 6.45 12.8 8.69 10.7 12 9.52 11.3 10.3 9.61 9.1 10.6 11.2 5.4 7.16 14.5 15.2 14.8 10.9 11.1 11.8 9.18 5.34 12.1 10.3 3.65 10.2 7.39 12.2 6.47 13.5 11 8.22 7.36 6.69 8.34 13.6 11.4 4.61 10.9 0.72 4.48 4.89 8 9.42 6.03 8.29 12.2 11 10.4 12.1 11.8 9.1 11.1 11 11.8 5.79 8.34 10.4 10.8 8.79 10.6 7.56 10.1 7.15 7.42 8.41 3.86 9.11 0.41 6.86 3.04 9.55 -1.22 8.67 13 8.61 14.3 12.1 13.3 12.4 12.9 11.9 11.1 11.2 13.8 1.7 12.1 13.4 3.37 5.3 3.67 7.43 4.73 8.94 4.41 5.56 2.95 3.27 1.63 2.36 2.17 1.03 8.53 5.59 6.02 5.93 5.04 5.04 8.11 4.74 2.73 7.03 6.41 7.82 7.41 9.35 4.07 9.55 3.9 9.45 0.07 11.3 -0.12 2.08 9.95 7.81 0.08 3.04 4.48 9.21 1.92 5.22 8.31 10.8 9.84 8.3 10.5 2.86 3.31 10.5 11 10.8 10.8 11.3 10.5 6.86 9.4 4.58 2.24 11.2 10.6 8.16 5.27 9.44 11.5 12.7 13 11.9 5.54 8.48 11.8 14.2 11.3 7.33 6.9 14.4 12.7 11.8 4.18 8.01 15.5 10.9 15.2 13.5 3.87 11.3 12.4 7.83 13.1 4.33 5.22 14.7 10.6 9.23 1.08 2 5.34 7.69 6.4 -1.4 4.22 9.07 12.4 6.53 11.8 10.4 2.47 5.58 2.55 1.51 2.94 10.1 10.9 2.58 3.31 1.7 8.13 9.77 4.35 7.5 2.98 -0.65 3.36 4.3 6.88 9 8.6 1.44 4.71 8.07 7.5 3.07 -0.09 1.05 4.24 4.41 9.01 9.74 0.42 9.24 8 5.85 7.39 9.39 8.83 6.05 11.2 8.67 7.33 8.58 5.03 6.27 6.68 0.61 0.29 9.97 1.45 2.12 8.17 5.59 1.44 0.78 4.38 8.12 2.52 6.17 4.13 2.94 6.31 8.77 6.32 3.29 10.8 9.39 2.07 1.84 9.82 5.57 1.76 3.18 5.2 1.89 8.68 2.15 0.73 6.05 1.3 9.46 7.13 7.72 0.14 1.18 4.12 4.04 0.66 7.42 4.68 0.59 3.5 4.72 8.37 2.65 8.15 6.88 3.65 2.22 6.25 7.6 8.34 5.3 3.83 3.76 5.71 3.21 6.69 6.34 5.44 7.89 1.75 6.32 8.85 4.42 4.43 1.71 9.7 4.14 11.9 11.6 10.8 10.5 2.75 9.33 6.75 5.51 5.73 10.6 9.89 -0.01 8.43 10.4 1.37 7.82 2.22 2.16 7.54 11.6 11.8 2.35 12.1 4.52 6.08 2.82 1.29 6.91 0.53 9.64 0.28 9.7 2.29 6.33 9.22 0.11 7.63 6.44 3.82 3.72 3.57 1.08 2.82 0.64 9.71 8.45 7.03 9.18 1.67 5.27 6.89 6.31 -0.36 5.19 3.01 2.22 1.41 2.71 1.45 10.8 2.84 9.7 2.89 0.95 5.55 8.65 3.28 1.62 11.7 3.64 11.4 4.75 2.87 -0.04 11.1 2.07 2.99 0.39 7.59 4.9 0.4 7.44 3.34 7.01 -0.06 1.34 4.3 9.12 1 10.6 1.52 1.62 10.2 12.7 2.62 2.24 3.89 -0.77 10.8 9.64 7.15 6.57 10.1 11 4.6 6.63 5.53 11.1 9.04 3.26 7.52 13.2 10.3 3.87 7.91 1.15 2.76 2.29 12 11.8 2.22 8.94 12 2.25 7.89 12 6.24 -0.15 6.72 6.01 4.63 9.81 12.1 6.64 11.1 6.36 2.62 1.16 2.78 1.39 8.31 2.4 10.1 8.56 15 9.62 9.73 4.07 7.23 7.08 10.1 6.43 0.14 6.6 0.63 2.92 8.87 5 2.86 3.31 4.99 4.91 1.87 7.95 3.81 -0.41 7.97 10.7 11.1 9.83 8.02 9.14 10.2 10.3 11.1 6.75 5.63 9.17 9.05 6.03 11.4 -0.27 7.66 4.93 8.11 9.48 7.42 5.96 9.77 2.8 3.97 12.4 4 3.84 2.91 8.37 10.9 3.67 6.23 1.33 0.21 6.13 5.16 11.4 2.12 7.65 11.4 8.17 8.28 8.11 10.5 9.3 5.33 2.33 8.6 5.36 10.9 10.4 11.6 12.2 1.07 10.6 9.45 7.69 8.27 9.57 9.02 8.2 8 7.61 -0.49 8.86 6.73 1.91 10.8 10.3 1.3 9.18 9.41 8.25 9.38 10.8 9.81 5.44 2.62 10.5 -0.12 12.2 8.28 5.8 11.2 13.2 4.7 11.1 11.5 3.73 10.2 9.3 5.64 7.84 10.9 7.67 7.12 7.8 1.53 9.16 10.9 12 0.04 14.6 8.89 9.79 8.52 1.97 6.97 0.65 9.3 8.54 7.81 12.5 8.61 15.1 10.4 9.98 7.43 15.4 12.6 12.7 12.7 7.79 11.3 0.03 7.2 3.48 11.6 4.88 6.63 11.7 9.18 11.2 8.41 9.41 9.14 9.29 12.1 11.1 8.11 12.5 9.84 8.72 12.1 9.18 11.3 11.8 9.8 14.3 7.57 7.87 11.4 11.8 11.3 -0.3 3.43 6.38 8.31 2.03 1.76 1.65 9.09 7.46 8.91 7.16 8.82 8.54 6.37 2.56 6.37 0.01 1.61 7.29 1.09 7.01 3.03 4.96 8.35 8.01 8.87 0.84 3.69 5.69 5.98 8.61 1.39 4.18 0.54 5.97 9.8 6.07 2.25 8.79 4.11 5.87 3.94 2.89 7.57 0.15 4.99 10.2 13.2 5.22 6.67 6.57 10.8 2.25 6.58 5.44 2.48 5.29 5.62 7.76 8.03 6.79 7.64 1.62 -0.35 1.93 0.61 6.53 6.32 5.88 5.74 10.1 8.9 2.8 6.45 0.64 1.87 -0.43 7.9 4.4 2.7 7.28 4.65 1.57 1.9 11.4 7.78 8.75 0.02 6.12 13.3 5.43 1.43 6.73 3.23 9.44 6.8 1.64 7.58 -1.49 2.75 7.05 7.69 4.14 3.11 8.09 13.4 5.68 4.56 11.7 10.7 9.89 8.73 9.24 4.55 7.77 12.1 0.75 0.99 4.64 7.18 8.07 2.3 1.32 0.75 7.57 4.84 -0.83 2.9 13 5.08 6.35 4.92 8.67 3.53 7.29 9.69 6.58 1.52 12.3 8.95 4.64 9.68 1.76 4.96 2.14 11.2 1.23 0.07 5.67 2.47 0.39 12.4 4.99 4.63 4.58 3.7 6.18 3.4 9.9 9.36 8.56 9.35 10.9 12.7 11.4 10.5 8.09 10.8 5.99 12.4 11.6 10.6 2.69 6.6 16.8 10.5 13.3 7.87 5.92 3.94 12.5 4.67 3.54 7.71 1.14 7.81 4.93 4.55 16.4 1.91 9.5 3.43 0.46 1.77 9.41 5.84 4.71 15.2 6.32 10.8 2.56 1.21 3.22 2.31 2.76 7.8 7.94 0.72 5.73 2.31 6.87 4.1 7.55 0.06 5.5 6.72 4.64 3.09 11.6 1.22 2.91 9.57 1.67 4.67 9.3 1.56 0.72 10.4 2.86 7.09 4.53 3.84 8.64 3.08 3.4 5.77 2.22 8.2 3.24 3.72 4.9 4.12 4.57 7.72 6.29 7.23 8.42 4.18 2.84 12 1.22 4.33 7.6 7.47 8.98 4.52 6.55 6.86 0.16 0.55 0.22 6.65 10.4 0.42 8.75 2.93 8.62 2.21 7.89 7.27 2.02 4.66 5.98 8.99 9.45 -0.07 8.31 1.52 4.11 4.73 5.48 8.64 8.45 5.94 2.22 9.09 12.6 8.31 3.09 4.48 0.3 5.5 2.98 8.62 4.13 8.23 3.97 5.63 6.19 -0.63 4.12 6.13 7.6 10.7 3.24 13.5 4.87 4.23 9.92 1.06 1.19 4.85 8 8.76 3.75 1.23 4.82 2.27 8.28 -0.53 3.33 3.01 -0.11 5.07 2.65 5.03 2.46 8.86 10.7 6 1.47 0.96 2.63 8.93 5.17 1.67 2.43 6.76 -0.86 8.01 12.7 5.93 9.57 8.62 9.86 10.4 8.88 11.5 -0.15 13.7 -0.17 11.1 0.23 8.24 13.1 12 12.9 7.06 1.31 11.6 12.7 11.8 0.42 4.34 4.69 10.9 4.21 12.9 0.44 3.54 8.08 11 4.33 7.74 11.3 11 8.86 0.85 15.1 11.7 12.5 10.8 4.62 2.44 8.63 10.4 11.7 12.5 4.94 13.8 13.9 12.3 13.2 9.6 11.1 10.7 0.1 9.07 5.92 9.39 0.56 8.81 8.76 12.7 11.1 10.8 9.08 11.7 6.3 6.02 6.02 7.7 11.3 -0.14 4.63 9.34 6.11 9.63 9.56 12.2 1.95 7.93 0.63 10.6 3.37 2.95 6.29 6.64 11.8 4.35 7.83 4.91 11.1 0.89 4.94 7.38 10.6 11.9 12.9 8.15 8.93 7.86 10.5 -0.31 -0.19 4.36 9.42 6.85 5.03 6.56 8.9 3.12 7.5 7.31 1.58 7.32 4.59 2.89 7.54 3.45 2.02 5.34 4.52 3.41 2.17 2.69 4.11 9.39 5.12 11.8 7.79 3.84 1.72 8.43 5.19 4.72 0.08 7.16 4.02 6.89 1.74 4.33 -0.29 7.06 2.56 2.18 1.42 2.31 2.03 11.6 0.98 8.83 2.55 5.89 3.35 5.63 1.41 1 4.92 2.61 6.81 6.61 5.24 6.59 0.6 8.75 0.06 7.18 8.22 4.48 9.15 9.73 0.57 6.89 10.4 10.7 5.35 6.98 9.38 0.59 0.56 1.51 1.4 6.31 9.69 4.15 8.44 9.58 2.51 -0.51 4.44 7.01 9.66 7.69 1.86 4.96 5.79 9.94 1 2.39 10.8 3.61 3.16 8.44 6.94 8.41 -0.34 8.95 10.1 12.9 1.77 8.86 6.94 9.84 0.08 8.31 11 2.04 2.94 3.19 4.97 11.1 5.24 3.34 9.4 9.43 9.82 9.16 9.39 11.6 4.08 9.4 7.49 9.31 11 10.6 9.43 11.3 3.06 3.59 1.1 0.42 7.88 7.59 13 9.55 4.26 5.99 10.6 4.58 10.7 5.76 12.6 12.5 12.9 13.7 12 12.8 12.2 1.82 5.58 4.53 -2.33 7.03 10.2 11.8 9.95 9.55 9.67 10.5 12.4 10.8 8.33 11.4 7.11 9.48 4.23 9.15 10.3 -0.27 4.46 8.18 8.72 9.77 3.53 2.78 8.65 9.98 11.2 9.44 9.97 10.6 10.7 10.6 9.8 7.93 9.37 8.68 12.3 5.01 3.2 6.57 10.2 10.2 7.01 3.94 11.6 4.28 0.43 6.61 6.6 3.47 7.63 5.91 2.03 11.6 4.68 0.2 12.1 8.75 6.58 10.2 6.68 6.94 8.56 11.7 10.2 4.74 10.1 12.4 10.5 6.65 10.4 7 5.72 0.49 13.4 10.7 11.2 11.1 10.3 10 11.2 12.6 4.1 9 9.91 3.03 11.9 12.3 12.7 12.7 10.3 8.19 10.5 9.82 9.73 10.4 4.97 8.66 9.77 7.25 4.13 7.61 9.5 5.9 10.2 9.41 9.69 9.67 10.7 9.68 5.37 -0.21 11.8 12.3 7.62 10.1 7.97 9.73 9.8 9.83 9.89 7.44 10.8 9.91 5.89 8.11 11.3 10.8 9.16 11.6 10.5 9.9 10.2 8.84 10.8 11.9 7.23 9.28 11.9 11.1 1.25 9.91 9.03 8.21 10.9 10.9 5.14 8.71 7.1 8.1 10.7 11 10.4 10.5 2.88 5.62 10.2 11.3 11.2 7.77 7.68 5.89 11.9 13.3 -0.2 0.69 7.77 4.56 9.48 13.3 6.12 10.9 3.53 3.02 7.52 8.21 1.46 7.71 8.48 7.87 8.69 1.56 6.51 9.32 -0.52 11 7.37 11.1 9.14 9.04 2.55 2.46 7.99 7.32 2.62 9.15 8.69 4.47 7.89 8.86 10.8 1.16 4.02 10.1 9.81 6.27 2.68 5.59 6.22 10.1 4.83 0.6 2.77 1.08 5.79 1.87 9.99 2.64 2.35 4.78 8.6 9.83 3.31 5.67 9.92 4.31 8.48 3.84 5.1 7.57 4.61 10.5 7.19 1.9 8.17 0.27 9.52 6.85 3.82 8.68 1.89 1.24 9.12 9.97 1.43 9 5.32 2.39 5.63 2.9 7.57 7.81 0.97 1.58 7.11 7.55 7.5 4.21 12.1 0.98 7.31 4.76 6.75 5.72 4.01 6.91 9.12 8.07 3.82 7.1 8.29 6.16 3.68 6.43 4.95 1.2 8.26 6.59 0.35 0.25 8.19 0.09 3.74 2.08 3.93 0.08 8.99 0.63 6.34 6.93 3.49 6.57 3.6 3.27 7.49 10.7 0.36 1.31 0.98 -0.13 1.33 0.2 6.53 1.8 0.98 7.86 7.47 4.16 5.35 9.57 1.02 9.81 9.05 0.94 6.93 12.4 7.09 10.5 4.91 9.53 6.6 1.98 9.88 13.3 8.83 4.73 5.95 10.2 4.23 8.83 5.1 5.27 3.42 8.52 9.38 11.5 4.54 8.92 8.19 10.7 8.4 10.2 8.12 8.2 3.17 10.1 8.98 9.19 10.9 6.21 2.99 9.53 9.7 6.64 8.71 8.79 10.1 7.17 8.36 7.54 6.79 9.2 0.42 0.54 -0.51 10.5 6.74 2.9 9.58 8.88 1.57 5.88 14.9 10.2 12.8 10.6 1.45 5.82 13.5 11.8 6.87 11.9 11.8 12 8.02 11.8 12.2 7.15 10.5 8.09 10.6 11.8 11.7 9.75 11.8 7.48 9.74 9.95 14 9.53 8.98 9.55 12.1 5.98 12.5 4.09 5.3 10.8 13 11.3 12.2 14.8 11.1 8.62 10.9 5.16 4.32 10.8 7.65 6.61 9.37 13.6 7.21 10.1 9.38 9.47 12.2 11.4 12.3 10.2 8.78 10.6 13.7 10.6 10.8 10.2 9.05 10.9 10.1 11.1 11.2 11.4 9.88 9.61 9.93 10.6 9.71 9.3 11.1 10.7 10.3 10.4 9.83 10.6 9.43 12 10.2 9.29 10.2 10.2 9.14 9.99 8.15 13.1 12.8 10.8 10.8 1.21 6.25 7.73 6.51 7.86 1.08 0.12 4.03 3.3 8.9 9.17 8.05 6.98 6.01 12.9 7.37 14.9 11.3 5.72 10.5 6.17 5.04 9.43 9.6 7.16 2.05 13.7 2.5 11.8 11.7 9.07 9.17 10.5 10.4 9.76 10.3 8.51 8.85 8.15 8.82 9.59 10.1 10.8 1.61 9.94 10.1 9.57 6.07 0.62 10.9 13.5 9.34 10 10.4 4.93 8.29 7.09 4.03 9.6 4.73 4.47 4.21 12.9 11.4 13.2 7.85 9.1 7.45 11.7 10.1 0.75 9.98 12.4 2.94 7.37 11 9.69 9.37 11.5 12.1 10.8 7.96 5.49 9.66 11.3 3.74 10.6 8.78 10.9 6.64 13.2 6.18 0.06 14.4 6.05 7.46 2.16 2.84 2.93 8.33 11 10.5 4.93 10.9 8.2 -0.12 11.8 5.45 3.98 3.11 12.7 10.7 7.25 0.46 7.43 1.37 5.97 1.53 -0.96 6.3 -0.42 6.85 7.14 4.05 4.1 8.29 11.2 10.4 12.2 9.69 11.3 6.69 11.4 8.39 0.14 9.07 9.1 9.16 7.78 0.18 9.87 5.88 4.61 8.55 10.9 5.95 10.7 8.87 0.5 7.12 8.58 7.82 2.26 2.33 6 2.92 13.2 10.4 10.4 11.6 10.7 4.87 11.2 7.2 6.93 2.44 3.15 5.52 6.27 2.5 1.68 11.3 10.6 13.1 5.86 7.16 9.43 9.47 8.05 2.49 5.01 7.03 8.84 11.9 9.52 9.33 8.85 4.18 1.01 11 5.3 10.7 5.67 5.57 5.55 7.6 10.6 9 7.22 2.85 8.87 4.98 4.85 3.93 7.79 6.43 7.65 11.7 14.6 3.51 6.71 12.2 1.26 2.25 3.44 12.6 8.53 11.8 9.52 11.7 10.5 8.8 6.46 11.7 9.23 8.23 6.55 9.03 8.66 3.7 6.65 12.6 11.7 4.1 11 13.8 3.19 6.75 10.7 7.35 11.5 3.88 8.62 9.22 1.57 6.21 9.46 5.15 9.34 2.33 12.6 7.12 4.64 10.7 10.4 9.1 3.1 4.89 -0.63 5.1 10.3 10.9 11.3 7.83 9.82 8.85 9.87 1.61 2.28 2.15 12.6 3.28 7.65 10 6.79 5.86 0.58 6.65 10.7 7.73 9.71 9.84 11.6 9.47 6.4 10.5 12.4 5.71 1.52 13.5 7.31 5.81 -0.52 8.76 10.5 11.9 9.05 11.1 11.5 8.99 8.41 8.15 7.79 8.03 6.62 10.7 8.64 9.73 3.36 9.31 8.02 11 8.84 12 10.1 6.51 8.05 7.82 10.6 10.4 7.54 8.61 10.2 7.08 10 6.04 10.3 9.81 10.6 10.7 10.4 7.19 9.89 6.11 9.21 6.97 11.3 6.24 6.81 8.1 11.1 9.86 6.18 6.85 11.1 0.66 8.89 10.5 8.65 9.34 9.59 8.54 9.75 8.94 11.4 7.52 9.72 9.6 10.9 11.6 9.77 11.2 0.64 9.11 8.82 2.56 6.35 9.53 10.9 8.97 9.16 7.9 11 7.93 10.2 10.1 9.17 8.44 10.5 11.2 7.24 8.23 8.19 9.97 10.2 8.57 11.9 10.9 12.4 12.4 9.73 10.2 8.59 11.1 9.13 10.2 9.72 9.77 11.9 8.89 10.2 10.6 10.8 10.2 10.9 2.5 9.44 4.66 8.3 9 11 10.1 8.11 8.65 8.92 9.71 9.95 11.9 8.72 7.83 7.67 9.11 6.65 10.4 0.2 9.07 12.6 5.57 8.96 9.32 4.83 6.72 9.69 10.4 3.23 8.07 2.69 10 4.17 7.79 7.59 7.82 6.61 8.9 8.87 8.85 10 9.4 8.41 8.77 11.3 7.8 11.3 5.17 10.7 10 9.17 10.9 8.52 8.69 8.84 10.4 8.98 9.22 8.31 3.32 9.04 4.37 9.2 3.29 10.5 7.97 6.83 8.67 10.5 10.1 9.33 11.3 0.11 10.3 8.42 6.43 7.33 7.84 8.17 10.8 11.2 9.34 9.21 8.58 7.75 10 1.78 10.3 9.82 8.8 8.14 10.1 8.57 7.28 10 10.5 5.1 4.45 4.36 10.5 11.1 10.3 10.7 8.21 5.93 6.04 10 10 10.2 13.1 7.37 9.01 10.6 6.6 1.09 9.29 9.88 9.87 9.51 9.38 8.11 7.45 8.78 8.39 5.53 9.21 9.42 10.1 8.08 8.85 10.7 2.74 10.4 9.36 4.12 6.55 5.44 5.78 8.64 9.8 0.78 8.8 6.92 9.53 9.78 8.69 9.35 10.1 11.4 11 5.04 10.9 3.65 11.8 5.88 4.93 5.36 12.3 9.41 7.32 8.14 9.04 10.2 10.3 9.88 11.1 0.38 9.16 1.2 5.14 9.43 10.9 9.61 8 1.17 5.71 10.9 8.77 9.27 3.46 11.8 10 8.71 9.98 9.93 9.02 8.83 4.88 7.99 12.2 1.27 7.04 11.3 10.1 9.55 6.53 9.16 7.15 8.64 10.5 10.5 12.2 5.36 10.6 9.23 6.99 6.6 7.78 7.18 11.3 10.2 7.4 8.47 10.1 11 3.9 10.6 10.9 10.3 9.58 9.87 9.55 2.01 11.2 9.36 9.68 11.4 1.98 8.79 8.49 9.57 7.86 2.25 10.1 9.02 8.91 0.71 13.1 6.58 8.53 10.3 2.27 9.08 7.99 10.9 12.8 9.35 10.4 10.6 11.8 10.8 8.14 9.81 11.6 10.6 11.2 10.2 12.2 7.49 8.37 9.06 8.35 3.66 10.5 11 8.88 9.32 9.53 10 10.3 9.63 5.5 8.64 8.68 4.42 10.4 10.1 8.72 9.42 9.98 8.28 9.37 7.96 9.05 8.58 6.97 8.45 12.2 9.22 0.73 9.94 9.98 6.13 4.12 8.06 10.9 8.42 10.1 11.3 5.52 10.6 10.8 10.5 10.9 1.78 12.5 10.1 11.3 8.24 11 11.1 10.7 9.74 9.29 11.9 9.24 10.7 7.02 11.3 9.6 10.9 10.5 9.87 10.8 8.41 11.6 7.73 0.58 8.12 8.89 10.3 9.55 10.5 11.4 8.81 11.6 7.84 9.57 9.47 11.2 10.2 9.38 8.61 11.1 10 10.3 9.69 10.4 7.65 9.64 9.11 11.7 9.38 3.33 8.83 7.98 7.37 8.39 6.92 11.3 7.96 11.4 8.42 12.4 6.08 6.18 6.7 6.16 8.81 8.4 2.8 0.89 9.23 9.53 9.59 9.34 9.78 10.9 11.7 10.3 3.7 9.54 12.5 12.2 9.36 6.98 8.56 8.13 12.2 9.35 1.82 11.4 3.28 8.87 11.7 12.7 8.74 10.6 1.06 9.08 8.5 1.39 10.7 7.24 10.8 5.06 12.2 9.7 8.94 1.95 11.9 8.28 10.8 11.4 10.5 2.73 1.64 10.4 8.26 0 9.77 12.6 10.1 10.3 5.17 11.2 11.9 3.94 6.44 4.08 8.98 12.1 8.91 10.5 8.18 8.44 8.7 6.54 7.88 6.7 8.45 10.2 7.88 0.98 0.77 8.89 3.96 10.6 10.3 9.87 9.82 12.1 11.7 1.78 11.3 12.4 10.9 6.87 10.7 1.61 10.1 12.9 13.9 7.49 7.74 10.7 13.1 6.28 4.57 10.8 6.06 9.34 11.7 14.1 10.2 8.27 7.88 4.5 8.09 3.12 11.9 2.38 13.4 4.85 9.67 10.6 5.12 8.68 10.8 11.2 2.67 8.46 8.7 11.6 8.12 11.1 11.9 10.2 8.8 8.26 6.26 8.5 9.54 10.7 9.2 8.18 8.82 11.2 10.4 9.21 11.1 9.61 10.7 9.81 8.4 6.45 11.5 11.5 10.4 10.3 9.49 9.02 0.74 8.57 10.3 11.4 9.58 9.96 9.64 3.75 15.7 8.52 9.39 0.38 8.13 4.41 6.48 10.1 12.4 10.8 8.76 10.9 7.98 11 9.51 6.59 7.15 10.9 5.57 7.66 5.78 9.59 6.31 6.11 4.48 8.89 10.9 0.42 8.28 9.09 10.9 9.81 9.2 8.43 13.6 2.25 6.53 9.38 8.66 3.23 7.99 1.89 8.31 12.1 11 8.04 10.6 9.97 4.54 12.2 10 12.3 12.8 11.6 8.99 11.9 10.1 6.64 10.8 6.64 10.4 4.16 10.9 9.04 10.2 0.45 1.67 11.5 11.6 7.12 9.94 9.56 8.35 7.29 8.97 5.42 6.03 0.04 0.65 7.43 12.4 5.83 5.27 5.81 6.46 8.59 10.6 9.62 7.68 9.46 6.31 11.3 5.69 8.08 7.59 9.51 9.26 8.65 9.29 10.7 6.76 10.6 9.3 10.3 9.18 10.7 9.99 10.7 2.08 4.12 5.05 7.83 8.12 3.86 8.56 0.85 2.43 8.37 1.58 5.04 9.14 2.79 11.2 9.71 11.7 2.27 10.7 6.12 6.13 2.08 7.73 3.86 8.19 8.68 6.17 8.01 10.2 10.8 9.18 12.6 10.3 5.65 7.32 3.36 8.81 8.56 8.91 10.6 10.2 6.19 3.59 10.4 10.6 12.6 11.2 10.8 3.93 4.53 9.56 8.24 6.4 10.4 7.79 5.65 9.37 9.23 3.7 4.26 10.3 8.44 10.4 10.4 9.46 11.8 10.3 4.59 10.3 9.41 3.84 2.72 11.3 9.8 9.58 11.2 2.98 8.66 5.39 4.41 10.3 8.05 6.37 10.6 9.64 11.2 10.3 8.54 8.06 2.14 0.6 11.7 10.7 10.9 9.49 9.93 10.8 8.81 0.22 11 10.2 11.5 11 4.52 10.7 10.6 7.95 10.9 9.88 6.2 10.3 8.08 9.56 6.91 7.6 6.44 10.1 8.2 9.8 8.23 11.6 10.5 6.61 11.9 9.24 10.5 9.99 6.71 0.92 6.02 6.24 7.93 7.56 7.71 9.61 7.61 7.4 9.89 9.41 6.28 9.67 4.01 8.81 10 10.3 8.08 9.76 9.22 6.83 9.72 8.87 11.7 9.14 10.9 9 4.53 10.7 8.35 9.14 8.09 7.46 5.59 9.94 7.42 -0.09 8.38 10.5 6.42 8.22 8.71 3.18 11.6 3.23 11.9 10.5 9.74 7.98 3.77 9.47 10.5 8.46 9.97 12.6 7.23 3.15 8.52 5.33 12.1 9.78 3.14 10.5 8.84 12.2 9.12 10.3 4.43 10.8 9.53 10.7 8.01 9.12 8.78 10.2 10.4 0.26 11 10.3 8.42 10.6 8.61 2.46 4.66 9.81 0.72 12.3 11.3 3.74 10 10 8.38 3.69 6.99 4.63 10.6 3.02 5.77 3.89 5.28 6.45 8.34 12.4 5.15 7.25 9.56 10.2 3.32 9.94 10.3 12.9 9.22 7.87 6.63 10.2 13.1 8.16 8.81 10.7 7.68 9.67 2.76 9.55 7.91 10.9 9.45 8.38 7.65 8.49 7 9.13 11.9 10.1 8.54 9.48 11.1 9.01 7.58 11.2 9.12 9.04 9.81 6.61 9.95 7.06 1.52 7.14 -0.15 9.15 8.2 7.21 0.24 12.5 9.2 8.86 10.4 7.24 10.3 8.45 10.5 9.77 11.3 8.16 7.24 8.58 8.43 5.29 9.01 7.6 7.25 9.6 2.44 9.85 8.01 9.31 10.2 11.4 9.34 8.89 10.3 6.01 10.9 9.47 10.5 9.28 9.94 6.71 11 5.78 10.9 8.13 9.35 7.59 9.69 9.82 11.4 8.66 11.1 6.98 9.64 10.7 11.3 9.39 9.26 9.82 10.6 6.76 8.71 5.15 6.77 7.21 5.69 8.48 10.4 8.14 10.4 2.33 10.6 7.56 7.9 9.84 9.52 11.5 9.38 12.1 10.3 7.81 10.9 6.15 5.54 8.52 11.6 10.3 10.6 8.66 6.04 9.19 8.96 8.47 9.93 9.5 6.16 9.35 0.09 8.58 10.1 10.6 12.1 7.01 9.33 4.69 9.27 7.95 9.43 9.59 10.6 9.51 7.84 10.5 6.85 8.01 9.12 8.44 4.78 11.6 7.16 10.3 8.05 9.02 6.34 10 0.28 9.09 8.2 8.57 6.9 11.2 9.62 8.16 9.01 9.14 10.8 1.14 6.22 7.46 8.49 10.9 6.89 9.6 4.44 8.81 1.47 10.4 11.4 6.7 7.35 10.9 6.98 8.05 8.8 9.02 7.17 10.8 12.9 12 5.14 10.2 8.72 10.8 8.43 8.2 8.67 8.45 8.74 11.4 7.76 9.49 7.43 8.56 8.76 10.2 9.3 6.18 10.2 4.25 1.98 9.79 5.43 10.4 8.27 4.67 9.36 9.07 9.69 10.9 10.2 7.95 8.46 10.3 6.33 9.93 9.2 7.2 11.5 9.37 12.7 8.72 7.96 8.54 9.49 9.26 8.99 7.04 8.87 8.12 6.6 6.27 4.07 8.23 8.91 2.56 7.91 3.56 12.6 6.13 6.21 8.32 9.66 9.16 9.96 11.7 7.75 8.24 10.1 10.8 7.04 5.36 8.35 9.45 3.74 5.9 8.1 9.29 6.96 8.35 10.7 3.17 9.85 8.75 9.3 9.1 10.4 8.97 7.36 10.6 9.32 10.2 7.78 9.81 8.73 7.52 9.75 8.27 11.3 8.72 9.23 4.49 9.26 10 8.72 7.55 0.16 9.36 9.22 8.79 7.3 3.3 1.19 9.35 10.4 9.71 9.98 8.94 10.1 7.89 11.1 9.75 9.72 9.39 11.7 2.84 9.88 7.84 10.6 7.5 9.19 9.24 10.1 11.4 9.84 11.4 11.1 8.13 8.42 6.01 10.1 9.58 5.97 8.55 7.94 10.3 9.8 7.38 6.83 10.4 7.76 5.89 12.3 9.1 9.37 10.1 12.3 6.82 10.6 9.93 9.24 10.4 3.87 11.6 7.22 9.68 6.14 9.83 10.2 10 10.4 6.5 4.17 10 8.4 9.8 6.91 10.1 10.7 9.66 10.8 7.56 10.2 5.7 7.96 7.64 9.75 6.88 10.3 9.58 7.71 9.21 9.54 4.21 2.7 9.48 7.96 3.73 9.48 10.8 10 5.57 7.42 6.19 10.1 4.16 10.7 11.5 10.8 8.86 9.58 12.3 9.79 7.23 2.97 10.2 9.93 2.2 7.95 10.4 9.83 9.91 11.8 8.84 9.57 10 9.42 10.2 9.06 6.07 2.37 9.01 7.29 8.94 12.2 2.09 7.66 9.9 10.8 8.76 10.6 3.73 10.3 10.4 9.71 6.98 9.17 9.2 10.2 8.55 9.22 2.45 1.67 9.82 8.29 7.95 9.85 9.52 12.6 0.72 9.75 8.65 9.98 10.8 8.16 8.9 7.19 3.46 9.13 9.22 9.68 0.38 9.72 11.1 1.87 8.64 7.89 9.26 10.7 7.2 9.89 10.8 9.36 9.54 8.25 4.96 8.31 8.85 9.13 9.21 8.86 2.7 9.51 5.7 10.3 7.82 10.1 10.5 3.11 9.75 5.99 7.29 10.6 11.6 10.6 11.5 3.45 4.96 8.61 10.2 11.2 7.58 11.2 10.5 10.1 8 6.58 8.51 9.36 8.75 2.42 3.58 9.24 11.9 7.83 3.95 10.6 6.84 10.5 10.6 11.7 10.6 8.73 11 7.85 10.6 6.12 5.93 12.1 11.1 4.92 7.24 0.53 8.46 9.55 6.43 6.18 0.34 1.3 8.3 4.22 8.74 9.53 8.65 2.69 9.19 9.51 9.26 10.2 7.3 10.5 7.64 3.12 10.6 9.04 10.1 11.7 8.26 5.66 8.21 8.01 10.2 6.97 3.65 9.33 3.54 7.49 2.31 7.62 1.14 10.3 7.25 8.56 9.08 9.11 5.97 1.62 0.95 8.12 7.66 3.53 8.41 9.75 0.93 2.45 7.79 5.63 8.78 6.1 7.45 9.2 7.1 6.58 11.1 7.38 10.5 8.39 12.7 2.05 9.17 8.6 8.13 7.78 11.1 9.99 8.24 11.7 8.1 10.2 9.88 7.35 0.35 10.2 9.29 8.6 10.7 10.7 4.28 10.3 7.48 9.54 10.6 11.6 1.87 10.1 8.12 6.35 8.88 8.34 11.1 9.9 8.75 8.65 11.1 10.9 10.1 10.1 10.7 7.99 10.3 5.59 9.31 8.49 9.21 8.95 5.37 6.56 9.84 7.18 10.2 7.38 10.6 7.91 9.26 8.82 9.21 9.51 9.39 9.52 9.29 11.5 3.85 9.86 8.16 8.89 4.8 10.4 12.1 10.6 10.6 6.86 8.71 10.8 12 11.3 7.75 10.4 11.4 9.69 11.2 8.8 8.68 10.5 8.1 8.65 10.8 10.6 10.8 9.27 7.86 11.1 4.36 10.8 7.45 8.87 3.38 8.81 10.1 9.44 2.2 12 7.04 11.4 10.2 7.92 8.47 12.2 10.6 8.56 10.1 7.73 10.1 7.29 3.21 6.89 10.8 9.54 9.76 8.73 10.1 10.5 6.32 6.56 8.71 9.84 10.5 7.81 9.8 13.4 9.9 7.08 8.33 8.9 9.58 11.8 11.2 10.1 11.7 9.62 10.1 7.78 10.2 9.61 10 12.4 11.2 9.22 6.93 9.65 11.5 0.77 13.1 10.2 8.5 9.58 9.28 9.28 7.68 10.1 10.1 4.96 10.9 8.67 12.1 9 8.18 6.92 6.44 9.66 6.92 10.1 8.03 8.86 8.73 7.21 7.37 10.7 7.84 8.83 10.7 10.1 11.4 3.7 7.73 10.9 8.44 7.86 7.69 6.12 7.89 7.08 9.14 6.65 8.74 2.62 9.55 9.82 2.51 8.54 7.91 3.82 8.85 8.75 7.29 7.62 8.83 0.02 6.61 9.62 10.4 2.21 10.5 9.15 4.75 9.72 7.96 8.11 10.7 10.8 7.94 8.88 9.26 12.1 10.9 7.3 9.31 9.13 11.2 7.17 8.3 6.18 8.78 10.4 7.61 7.98 9.44 10.2 6.47 9.23 10.7 3.29 10.9 7.78 9.23 10.2 11.1 1.27 10.6 9.67 10.4 10.6 9.06 0.23 8.51 6.01 10.7 9.79 8.45 11.8 7.39 11.5 3.24 3.91 2.33 12.2 8.9 9.05 10.1 1.29 11.2 8.63 8.84 5.69 9.47 10.8 11.4 7.7 9.53 9.37 12.2 8.45 11.4 9.32 8.75 11.1 6.29 11.7 9 6.43 8.42 6.08 9.78 4.78 11.7 9.83 6.98 6.17 11 10.7 2.86 2.97 10.6 11.1 11.5 10.9 12.3 11.6 8.31 10.2 9.84 9.26 8.21 8.89 2.1 5.87 0.56 10.8 9.47 10.1 5.12 11.1 9 11.5 10.3 9.07 11.3 10.1 6.61 6.69 8.04 6.74 9.02 3.39 1.32 6.47 9.28 5.69 4.01 6.14 7.7 4.59 4.22 5.65 3.94 4.24 6.71 11.8 6.4 5.08 2.02 3.35 3.91 10.3 1.9 4.16 8.48 4.81 4.31 4.68 6.22 7.05 6.2 4.35 9.85 1.94 4.31 3.34 4.31 1.4 8.59 7.12 6.42 0.48 4.12 4 10.6 4.25 7.94 8.65 2.89 9.2 9.56 1.11 2.7 5.55 8.16 11.4 0.77 9.25 10.8 4.55 10.9 9.87 5.88 9.82 9.93 5.2 10.7 12.8 8.26 8.97 7.78 11.8 6.99 10.9 0.97 -0.36 9.13 8.37 9.77 8.6 9.85 9.5 9.55 7.08 12.4 7.39 2.36 11.3 8.99 2.48 9.28 3.31 5.18 11.3 6.39 9.59 4.61 0.04 14.8 4.46 5.62 9.14 10.3 5.26 8.97 11.3 9.32 10.6 9.59 13.5 9.94 8.8 6.89 9.81 8.07 3.78 1.81 2.99 7.67 8.37 -0.18 10.5 3.8 11.2 9.93 17 3.28 1.41 9.63 9.19 11.8 10.9 11.7 8.47 8.28 10.8 7.59 12.6 10.2 10.1 7.01 1.86 11.5 11.2 12.3 11.7 11.6 9.98 13.6 12 8.48 8.55 9.62 11.4 5.55 10.2 8.75 4.95 11.2 10.8 7.45 9.24 10.5 9.98 6.88 7.12 11.2 11.5 5.21 8.1 10.3 7.55 9.98 5.97 8.41 11.2 6.14 9.67 3 7.05 10.9 9.61 10.2 10.5 10.7 8.46 8.83 14.3 8.22 10.6 9.1 10.7 9.03 9.38 8.27 10.1 8.48 10.1 7.86 9.73 12 9.37 11.1 7.74 4.1 9.99 9.55 11.7 1.43 7.08 3.67 8.41 7.31 11.1 6.78 8.39 4.02 4.14 10.4 8.13 6.05 8.93 9.79 7.03 8.03 10.6 10.8 10.9 6.6 9.45 9.55 10.2 10.5 8.58 8.56 7.42 9.22 9.5 8.51 7.92 12.7 7.87 11.1 -0.2 9.54 10.7 9.83 11 7.62 7.75 2.56 8.68 9.47 8.66 10.8 9.06 8.18 11.7 10.1 2.85 10.5 8.82 0.22 11.4 11.8 12.8 8.03 8.67 7.62 11.1 11.8 3.68 11.2 3.9 9.37 1.69 7.62 8.19 10.6 11.5 4.47 8.07 11.1 10.1 7.15 5.56 8.66 9.46 8.64 10.9 1.8 8.71 5.35 10.6 8.89 10.1 8.67 7.47 4.58 8.22 10.5 11.4 10.8 10.7 6.6 11.4 1.39 10.9 10.9 12.7 7.38 11.1 8.33 10.9 8.88 10.1 6.49 12.1 11.2 1.45 9.65 -0.01 10.2 8.47 9.66 3.01 4.06 8.1 11.5 11.3 9.5 10.8 9.48 10.9 10.8 11.1 7.93 9.63 9.8 9.9 8.5 9.67 11.1 4.59 10.6 11 10.3 1.88 7.94 7.12 10.2 9.06 11.9 9.59 8.88 11.6 9.56 11.7 6.02 8.39 10.7 8.86 6.89 10.6 8.46 11.7 11.6 9.68 8.48 10 9.72 10.1 3.32 9.47 12.4 8.84 10.9 0.26 3.36 8.24 10.9 5.19 1.63 3.87 9.06 10.3 6.41 7.31 8.56 8.73 4.92 6.82 2.63 8.21 8.11 3.37 5.82 13.2 9.75 6.44 5.19 7.76 8.32 10.4 1.08 2.83 11.1 9.97 -0.89 6.78 7.25 8.76 9 10.4 5.72 10.9 4.69 8.8 6.84 8.81 7.09 5.74 9.83 10.1 11.2 7.62 2.79 6.1 2.89 6.41 9.56 8.96 8.32 9.4 6.24 9.94 10.2 11.2 3.31 8.9 8.18 9.97 0.44 3.81 11.4 9.06 4.21 10.6 6.34 8.37 9.8 5.48 6.68 9.88 9.8 10.2 10.3 4.44 7.57 11.8 8.54 7.38 10.4 10.8 6.65 0.77 9.92 0.24 11.2 2.34 1.24 3.73 9.06 9.8 11.4 7.68 10 9.76 10.4 9.07 9.65 8.18 12.3 6.71 10.2 9.92 7.05 0.47 3.93 3.01 4.28 9.09 10.1 7.63 11.6 10.5 10.6 3.84 6.65 5.08 7.77 5.94 8.46 0.27 9.28 9.1 7.65 7.76 7.34 6.54 8.75 8.23 9.6 11.6 0.35 7.39 10.7 7.22 7.69 12 9.84 10.2 4.94 8.83 1.85 8.42 7.32 5.22 13.9 8.87 2.81 9.82 4.34 1.78 2.77 8.05 3.17 11.2 9.04 1.33 11.1 10.9 8.79 9.57 9.58 11.1 10.3 9.62 5.02 8.77 4.85 2.45 7.02 8.61 5.36 9.45 10.3 5.4 9.19 10.2 9.63 11.4 9.25 8.13 10.6 0.91 7.1 9.67 11.3 9.19 8.54 3.25 6.89 0.68 11.2 10.8 3.11 10.9 9.25 7.59 8.82 2.94 10.3 9.17 9.47 12.2 9.64 8.51 2.34 8.62 10.1 6.21 10.1 10.6 10.2 9.68 8.2 8.23 9.2 8.69 3.41 7.2 12.6 6.9 9.22 9.5 10.6 10.7 5.43 7.01 9.09 1.05 9.22 3.65 7.11 5.46 4.09 9.67 8.95 9.32 7.49 9.6 5.18 2.03 10.7 9.89 8.84 9.92 10.2 6.95 9.72 10.1 10.6 9.35 5.53 7.33 5.26 9.93 6.16 6.68 5.35 7.42 12.4 9.62 5.55 9.85 9.97 8.35 5.92 4.46 7.29 2.5 11.4 7.83 3.89 4.74 8.63 9.57 7.78 10 9.03 8.45 11 8.81 10.2 10.5 3.67 10.1 11.1 12 8.74 11.4 9.43 1.82 6.47 8.71 10.3 8.78 3.4 5.96 1.26 9.83 8.63 8.29 10.9 10.2 4.54 2.45 9.78 10.3 5.02 6.94 9.17 13.9 8.93 10.6 10.1 12.3 9.3 1.92 4.24 1.14 6.83 5.72 9.44 10 8.39 3.94 9.95 8.86 8.01 11.2 8.12 12.4 13.1 5.73 11.3 10.3 11.7 8.52 6.36 9.8 10.3 10.7 8.89 7.63 9.53 12.6 8.9 9.61 9.89 12 9.17 12.2 8.5 4.63 11.3 8.75 8.11 10.6 11.1 10.1 9.76 4.57 10.1 9.13 10.4 9.59 11.9 10.9 6.38 6.03 8.7 5.94 4.96 8.59 7.43 9.01 7.71 4.99 11 10.5 11.2 8.38 1.57 9.21 8.59 11.2 11.8 9.9 9.43 10.6 6.41 1.12 10.7 0.29 0.26 10.7 8.79 10.1 12.2 9.89 10.1 4.64 1.48 5.89 9.49 9.82 12.5 9.39 11.8 7.57 10.1 8.6 6.71 9.38 9.48 8.32 12.3 13.9 11.4 6.89 7.53 9.11 11.8 10.9 13 7.24 5.85 5.98 6.82 7.26 5.92 9.96 5.47 11.3 11 11.3 13 11.7 12.8 10.2 11.5 11.8 10.8 11.5 2.38 8.85 9.33 10.1 11.2 0.88 10.4 7.65 11.1 11.1 6.83 9.46 8.94 10.2 7.63 3.74 5.37 11.4 9.89 6.62 10.5 6.54 11.4 10.9 10.7 12.2 11.3 9.04 9.25 10.6 9.57 11.5 11.6 7.45 4.21 11.7 11 10.5 0.76 4.8 12.4 10.8 6.08 9.77 6.59 10.2 11.4 0.89 3.58 10.9 9.49 10.7 5.3 6.71 1.17 1.3 1.13 12.6 1.96 4.19 2.48 12.4 11.1 0.74 8.12 9.76 3.61 8.86 9.49 6.47 6.34 10.6 8.56 5.81 11.5 9.88 9.18 2.57 13.6 9.8 10.2 9.91 8.93 9.49 9 9.13 9.94 -0.16 7.96 9.9 7.77 6.54 0.84 9.86 7.64 10.8 12 11.1 16.8 8.43 9.21 2.24 9.43 1.01 3.43 10.7 2.81 9.1 10.1 9.17 3.07 9.64 4.5 9.96 11.4 9.63 8.52 9.6 3.7 1.24 8.17 8.71 0.85 7.69 7.95 9.41 3.48 8.86 10.6 2.05 9.59 2.29 -0.13 9.08 12.3 5.07 10.4 9.35 9.05 0.56 9.32 8.24 10.8 8.21 11.1 7.07 8.84 9.64 9.64 3.29 10.8 10.3 11.3 8.89 11.2 8.64 10.6 10.4 11.6 9.46 9.68 11 10.1 -0.07 8.75 10.5 6.05 5.76 7.03 5.05 10.1 10 1.59 2.12 5.28 8.34 2.09 9.37 10.7 10 10.8 7.53 8.83 3.87 7.98 11 5.22 7.14 0.24 1.11 1.82 8.54 10.3 7.63 0.89 11.4 9.92 9.36 9.9 14.1 14.6 13.4 13.3 10 10.8 13.8 -0.23 14.2 8.93 12.6 12.8 11.7 13.3 12.8 11.4 13 9.84 13.7 3.06 12 11.9 8.99 12.8 13.2 13.1 12.9 13.1 12.9 11.8 13.3 12.3 12.8 13.4 11.4 13.1 13.2 12.4 7.62 9.65 13.5 4.24 14.8 14.2 12.8 9.81 8.57 12.7 13.2 12.5 13.8 11.9 13.6 2.85 4.79 5.72 5.37 5.38 13 2.35 4.76 14.5 9.93 8.13 11.7 9.49 9.64 12.1 13.6 12.7 11.9 13.5 14.1 12.3 13.3 11.4 13.1 13.1 13.6 9.27 13.9 13.6 13.4 12.9 13.5 13.4 12 9.61 8.71 13.2 7.24 12.1 5.93 8.95 13.4 10.4 10.8 10.7 9.83 2.34 6.76 11.8 10.7 6.55 7.69 10.9 9.16 10.7 3.79 8.85 2.81 2.77 3.62 11.4 13.8 3.31 8.53 0.71 14.6 9.16 9.72 13.8 13.8 2.6 7.61 7.77 6.48 11.8 9.72 11 7.77 5.17 5.75 11.1 10.4 10.2 13.6 8.01 7.26 10.9 11.3 9.48 6.52 9.72 9.93 8.71 14.4 3.93 6.67 8.38 4.11 1.98 4.39 2.42 1.29 13 4.98 0.65 6.1 4.61 5.53 2.06 3.13 9.07 9.46 12.2 2.34 3.35 9.31 5.86 2.61 1.2 7.97 10 3.25 7.92 7.14 6.22 7.56 0.5 2.19 9.12 1.2 5.62 9.97 5.43 2.86 8.87 7.93 13.7 7 5.51 9.31 12.8 12.1 7.68 10.6 9.44 4.08 8.39 9.88 12.8 8.93 9.88 10.4 8.52 5.84 8.81 9.94 6.21 8.77 9.65 10.8 10.5 7.98 8.74 10.5 5.75 1.26 8.03 10 9.26 11.4 7.56 7.41 3.46 2.79 8.9 8.91 8.22 8.41 7.7 7.75 3.42 9.39 7.1 7.65 8.55 6.17 10.1 8.34 11.1 2.4 10.3 6.88 7.43 9.53 9.15 7.99 3.7 11.5 7.23 9.39 7.79 7.14 7.61 9.19 8.77 9.73 0.58 13.2 2.86 2.37 9.25 8.03 5.5 6.41 7.02 11.3 4.44 11.3 7.87 -0.63 5.44 7.93 2.21 9.51 9.09 7.26 7.54 3.66 7.93 8.89 10.9 9.6 12.4 9.37 7.64 10.8 8.57 4.54 8.65 5.59 13.3 4.14 4.95 8.62 2.84 10 6.67 9.53 2.39 7.18 0.49 11.2 8.68 5.04 6.98 6.79 8.7 11.5 8.87 9.96 9.39 5.78 11.3 4.88 5.18 5.57 6.92 4.16 8.48 12.8 2.51 6.76 6.91 10.5 10.1 12 9.85 10.1 8.35 9.72 6.5 7.14 4.28 10.3 8.75 9.59 10.3 1.9 12.4 9.4 9.83 10.5 4.24 0.71 8.51 3.27 11.7 2.1 11.6 12.3 5.01 9.34 6.97 9.06 8.13 6.83 9.88 8.79 6.63 11.1 1.55 5.49 5.05 4.31 11.2 4.15 1.07 11.8 11.4 9.31 10.1 10.8 8.47 0.23 10.8 8.83 6.75 10.2 11 9.7 9.85 8.91 10.7 7.78 5.39 0.64 7.08 5.67 11.6 10.6 9.1 5.91 8.63 8.28 2.09 1.99 9.04 7.9 8.7 2.02 2.21 9.82 6.25 5.37 9.8 5.3 6.08 4.22 0.58 1.86 8.52 8.94 2.09 10.5 10.4 3.37 8.71 9.3 8.05 8.04 5.84 3.71 6.98 2.14 8.85 9.56 9.28 7.42 0.37 2.47 3.69 8.5 -0.04 6.89 8.49 6.28 9.48 8.74 9.45 11.3 8.48 11.4 8.65 8.54 9.3 10.4 9.89 9.94 8.95 9.84 1.88 7.06 0.05 1.67 3.08 5.03 5.81 2.01 11.2 4.05 5.86 -0.24 9.7 0.06 9.81 8.38 0.57 10.5 -0.41 4.82 0.08 6.34 9.27 6.01 0.68 9.92 7.76 1.04 5.4 1.98 10.1 9.27 5.55 3.68 3.27 2.71 1.73 11.4 1.97 6.24 5.04 4.19 1.66 2.83 4.62 6.98 1.92 3.13 3.71 6.89 9.94 2.04 9.47 1.45 6.35 2.02 10.5 1.99 6.07 1.6 12.3 0.55 10.3 2.56 4.46 8.25 1.07 0.26 8.52 10.1 9.2 7.29 8.93 -0.38 -0.25 4.4 2.33 8.85 2.7 10.2 9.36 6.37 6.84 9.4 10.9 12.6 4.31 0.16 6.94 11.7 3.69 4.17 9.57 9.26 8.72 11 10.8 8.78 10.2 3.95 7.8 10.3 9.8 7.43 11.1 10.4 10.5 8.5 8.86 10.4 9.23 9.02 10.4 8.53 10.2 11.9 8.92 7.33 8.18 8.86 12.4 8.2 10 9.86 10.6 10.5 8.08 10.4 7.63 4.79 10.5 11.7 7.37 4.96 9.08 8.16 8.7 5.41 9.89 13.7 7.26 5.45 10.2 8.14 3.73 8.11 8.06 3.3 8.55 8.58 10.9 9.51 4.19 9.7 6.29 6.41 10.7 0.99 10.8 11.4 9.53 3.13 8.46 9.61 8.89 13.1 8.49 7.88 7.85 8.52 7.28 7.52 10.7 10.7 7.13 0.58 4.1 4.94 9.11 8.62 10.5 7 9.81 2.5 8.84 8.68 9.65 8.27 10.1 7.09 7.21 9.78 9.53 4.7 4.72 8.2 8.36 9.31 7.66 7.97 9.7 3.66 9.92 -0.33 9.31 9.35 9.36 8.92 9.4 10.2 9.27 9.16 9.85 8.14 11.5 8.79 9.93 9.38 3.7 10.6 12.3 9.82 9.76 9.16 4.78 8.44 0.74 8.69 9.02 8.13 3 4.6 11.7 4.81 11 7.69 10.8 2.97 9.66 5.44 8.04 5.63 6.17 3.46 5.05 9.98 10.1 11.1 9.47 8.74 7.5 9.1 3.42 11.8 12.2 9.27 8.79 10.9 3.75 10.5 8.53 11.7 7.96 11.9 1.05 8.42 6.16 9.69 6.86 6.69 12.1 2.44 11.6 9.09 6.63 3.33 11.5 8.42 11.8 5.72 5.24 9.46 10.3 8.08 6.71 12.1 9.64 7.26 1.7 6.69 1.29 1.19 4.05 2.37 4.94 5.57 0.27 4.58 8.79 1.38 11.5 4.85 5.78 0.59 0.09 5.99 3.38 10.3 7.59 2.35 5.45 3.38 2.85 0.32 7.97 7.08 9.78 8.77 11 3.04 6.6 5.26 9.21 0.69 9.53 5.89 5.48 1.11 1.21 8.9 0.31 7.03 5.79 1.78 7.39 1.14 12 7.07 0.95 0.42 2.01 8.62 5.92 8.23 4.93 -0.35 9.75 7.54 0.9 4.09 2.97 8.03 0.91 1.69 12.1 2.88 4.51 7.47 0.39 3.95 0.37 5.87 -0.08 10.4 1.4 5.14 8.12 4.88 5.29 11 6.71 9.17 0.4 3.81 8.49 10.6 8.65 9.95 8.18 4.32 1.63 5.15 5.2 9.36 0.63 8.23 11.8 7.48 7.46 7.99 11.2 7.12 11.2 7.79 8.75 11.3 10.6 9.27 8.25 8.42 9.16 11.3 6.19 7.41 6.4 1.97 10.8 6.74 9.76 10.6 9.87 8.6 6.41 7.67 8.69 2.55 4.35 5.8 5.58 10.3 10 11.9 11.6 11.4 6.67 8.65 6.27 12 2.55 9.74 6.33 8.89 8.85 6.11 10.5 10.1 12.3 7.73 5.84 1.83 8.1 7.14 9.49 8 8.88 4.82 5.51 9.69 10.8 9.68 9.4 12 11.3 9.22 10.4 10.4 11.4 11.2 10.3 11.1 10.1 7.75 7.31 5.47 8.98 11.3 9.75 10.3 9.96 2.43 11.8 5.9 13.2 10.2 11.1 10.3 12.7 10 11.8 10.6 10.1 12.5 10 2.57 12 2.68 5.02 7.88 12.4 9.13 11.9 10.7 7.1 11 9.21 9.43 3.9 14.4 9.4 10.1 8.29 4.11 11.2 1.44 12.4 8.48 10.1 17.4 10.7 7.92 12.7 0.23 6.87 13.7 10.8 10.1 12.9 8.02 2.23 11.5 8.83 11.5 11.8 10.1 8.88 12.3 11.8 9.59 10.4 7.14 11.6 11.3 11 10.7 11.8 9.48 10.4 11.1 11 12.6 12 11.6 12.3 10.6 11.7 7.8 3.75 -0.13 11.1 10.1 12.3 12.5 4.49 12.6 4.1 13.7 11.6 12.9 7.33 7.92 10.7 2.75 3.8 3.99 0.28 1.68 2.64 2.33 3.49 12.3 2.24 0.61 0.26 5.82 12 11.9 8.71 9.46 8.26 4.31 9.71 7.28 9.36 9.81 10.8 9.03 6.04 5.23 9.41 9.71 1.14 5.52 8.09 7.24 11 9.41 9.37 7.84 10.1 10.2 8.22 8.77 9.25 7.61 13 8.53 9.21 10.7 11.5 5.24 11.6 9.18 9.64 8.61 13.5 9.22 10.1 7.7 11.1 11.2 6.71 9.41 10.1 4.29 11.5 3.13 5.26 2.84 13.1 1.98 7.81 -0.66 4.35 1.34 10.9 8.88 2.71 9.53 7.42 10.1 9.15 9.47 7.54 13 7.01 9.7 11.1 12.1 10.4 8.57 9.08 8.35 8.82 8.51 4.84 1.38 11.7 13.3 13 11.4 12.7 9.88 8.93 11.2 3.35 0.69 7.7 11.1 8.23 10.3 8.25 9.44 8.31 6.08 6.24 6.54 4.41 9.69 9.41 7.17 4.66 3.78 5.2 5.1 9.85 2.21 1.74 11.5 0.73 9.77 9.47 9.08 8.77 10.2 7.11 9.36 9.02 8.25 11.1 2.17 11.4 7.04 8.31 11.1 9.45 10.5 10.1 9.54 10.6 6.48 12 0.23 0.55 8.34 8.31 11 5.78 10.1 10.5 9.39 7.04 11.1 10.6 8.38 9.97 6.73 1.09 7.78 15.7 8.28 6.96 10.6 1.05 8.37 8.89 -0.48 9.75 1.72 10.4 8.76 7.74 9.73 6.44 11.2 11.5 8.88 9.9 0.81 10.4 6.45 13.4 4.93 5.09 8.95 8.22 7.03 7.86 2.62 11.6 12.5 2.75 11.4 8.93 8.84 11.3 8.74 12.6 0.91 8.02 14.1 12.3 8.46 10.5 9.73 4.22 9.19 -0.14 8.81 4.24 0.73 10.9 11.1 10.3 10.7 5.89 8.06 12.6 11.5 10.9 0.81 11.1 11.3 10.2 10.4 11.6 2.15 9.8 7.73 10.5 10.1 3.49 13.1 12.9 6.77 7.24 7.03 7.9 15.8 12.8 6.22 9.73 11.2 7.39 7.47 7.35 10.6 10.2 7.1 11.6 15.4 11 4.83 4.48 3.41 0.85 11 11.7 9.62 11.2 13 11.1 9.6 1.06 4.21 5.66 8.88 10.8 3.08 12.4 8.05 11.8 12.6 7.89 3.12 11.3 11.1 9.21 10.9 10.1 9.87 12.1 3.57 6.97 10.7 5 11.9 1.29 13.1 13 11.8 8.68 13.4 13.3 10.6 9.94 11.9 7.09 15.9 -0.2 12.8 9.58 9.1 14.4 7.53 9.29 7.84 8.85 7.88 8.01 10.5 -0.07 12.3 10.5 11.3 5.13 0.09 5.21 0.79 1.71 5.6 7.15 7.45 8.04 5.47 3.64 11.4 10.2 10 5.95 10.8 2.4 9.87 11.8 11.5 8.36 9.12 9.39 10.6 9.91 11.1 11.9 9.03 8.41 8.78 6.62 5.48 4.34 11.4 4.27 5.52 2.04 6.35 9.77 9.15 8.2 7.4 4.64 3.32 5.63 6.36 7.82 1.1 6.63 9.4 2.31 8.05 7.64 10.1 4.33 9.38 1.39 4.14 5.72 11.7 5.88 3.1 2.74 6.12 9.02 7.56 -0.04 11 3.38 5.32 4.16 5.76 1.66 7.43 8.45 10.1 -0.59 12.5 2.13 6.66 5.78 5.5 -0.07 0.85 5.62 7.72 0.39 8.92 2.44 1.07 9.78 5.44 9.27 5.19 5.7 5.13 5.15 3.04 6.67 5.17 6.55 4.75 5.03 0.77 4.55 5.65 1.4 7.8 5.12 4.28 -0.58 6.3 13.2 8.88 5.39 8.62 1.72 6.01 11.8 5.6 5.33 1.88 8.27 10.3 2.23 1.03 0.71 10.2 7.58 8.07 3.38 3.43 0.65 8.3 7.38 0.51 7.67 4.53 7.76 6.84 8.6 8.81 6.37 4.45 9.21 1.15 11.1 1.3 12.5 1.65 13.8 15.2 12.4 -0.09 9.33 10.5 10.3 9.82 10.7 12.5 9.88 7.07 10.8 10.4 11.4 10.9 1.7 11 11.8 12 9.41 11.5 9.33 11.1 10 11 5.6 8.86 4.39 1.98 10.9 3.14 10.6 3.59 10.4 10.1 11 10.9 11 7.69 9.67 10.3 9.34 9.23 9.99 8.48 -0.58 9.51 0.16 10.9 11.5 11.6 10.4 11.1 8.84 8.52 9.68 10.1 10.3 3.53 9.85 9.99 9.12 9.27 11 11.2 7.1 11.8 9.48 8.62 13.1 13.8 13.2 11.3 11.1 11.3 11.2 8.82 6.16 1.02 10.1 10.5 13.2 12.6 4.22 5.92 6.62 5.6 3.44 6.42 7.74 8.73 7.7 2.34 11.6 10.9 13.8 7.1 9.89 12.4 10.7 10.5 8.64 12.2 9.68 9.09 10.7 9.17 8.68 -0.35 1.17 7.71 -0.34 2.03 5.7 0.05 5.77 0.7 5.26 1.41 -0.09 9.16 8.73 3.68 10.8 0.6 3.28 -0.28 9.62 8.3 10.3 4.76 10.8 2.6 12.1 9.12 7.34 8.39 8.48 8.46 12.7 6.76 10.8 10.3 13.6 7.81 13.3 12.9 11.6 14.5 6.64 11.9 11.2 6.8 12.2 8.39 8.39 8.49 6.58 7.73 9.75 8.65 8.48 7.28 12.8 4.62 11.1 4.99 7.32 8.67 6.61 7.93 6.08 7.21 5.27 10.2 9.66 8.32 11.2 6.88 9.81 6.2 7.21 10.4 10.4 6.66 9.9 8.77 7.73 7.48 7.67 6.05 8.43 7.41 11.2 4.59 0.38 7.61 7.29 8.4 8.23 5.69 7.84 7.92 2.6 8.76 2.1 5.73 8.04 8.99 0.45 1.4 6.38 8.05 2.39 12.3 7.69 0.91 1.03 1.87 -0.6 1.49 3.27 9.62 9.84 6.92 7.21 5.38 4.04 8.23 3.49 6.81 8.36 4.55 3.48 9.07 8.38 8.93 3.02 11 9.83 10.7 8.15 13.3 4.64 7.04 0.53 10.6 7.5 11.2 7.09 6.13 2.92 4.37 2.42 7.13 7.92 7.63 5.98 1.81 7.15 9.89 6.99 7.42 9.84 7.45 10.9 8.11 7.92 3.88 7.68 11.7 2.12 8.3 7.84 5.95 5.98 12.2 11.2 7.77 7.94 6.04 8.39 4.49 8.01 7.09 3.81 6.87 7.71 8.21 8.92 3.89 -0.47 6.83 6.89 6.09 3.15 13 10.3 9.09 13.5 4.65 11.7 6.85 11.2 3.64 13 10.1 10.6 5.3 4.67 11.3 10.4 8.81 8.92 10.3 11.2 10.6 8.07 4.76 6.03 11.5 9.26 11.1 6.64 8.24 8.53 9.49 10.9 10.7 9.71 11.3 13.2 7.22 4.96 10.6 3.3 8.46 8.75 2.22 5.9 8.01 9.48 8.51 6.78 9.66 1.2 4.01 9.94 9.97 5 9.28 9.45 8.9 9.11 8.75 5.79 8.09 9.29 9.31 0.05 10.2 11.1 6.78 7.65 7.9 11.7 9.57 1.78 14.7 10.6 8.08 7.96 8.96 9.59 9.98 9.55 9.94 5.93 9.87 10.8 1.82 8.71 8.53 10.1 12.1 8.3 9.51 11.8 8.42 7.62 11.3 9.48 9.98 6.48 9.94 7.54 10.7 7.14 6.98 9.39 6.99 9.1 8.67 10.8 10.2 10.5 9 7.68 9.54 7.9 6.98 7.44 6.82 9.62 7.13 9.04 10.5 10.1 9.78 10.7 11.9 9.26 8.01 9.68 8.14 10.8 11.2 6.23 8.79 10.9 10.6 8.93 8.47 9.31 7.27 6 9.38 4.14 7.15 9.57 5.37 9.84 9.8 7.34 12.3 9.66 6.81 1.94 5.25 7.78 11.7 8.67 9.47 6.72 7.64 9.37 8.34 7.29 7.1 6.34 7.25 10.1 9.54 8.96 2.62 10.3 11.7 3.81 10.2 11.8 7.96 6.62 8.12 0.15 10.3 1.64 2.71 0.14 9.59 5.11 10.5 8.59 6.86 3.93 5.09 6.22 7.23 -0.4 6.83 5.87 3.33 5.43 8.02 9.88 7 8.71 3.34 9.55 7.37 8.75 8.34 3.38 6.18 1.44 8.25 8.58 6.69 1.63 9.07 12.8 8.05 5.02 7.9 10.2 9.92 5.34 7.48 9.34 8.91 8.72 9.56 8.88 9.09 9.52 9.08 7.09 5.4 11.3 5.3 3.82 9.06 3.28 7.54 4.02 9.68 8.02 4.5 5.78 9.05 8.74 1.4 9.84 3.47 6.48 6.38 8.61 7.13 6.79 10.3 3.21 7.16 7.04 5.66 9.51 7.7 8.4 8.96 9.37 8.26 9.69 1.22 8.48 10.7 8.98 8.23 9 10.3 10.2 6.57 10.2 3.07 9.92 9.27 6.1 9.91 5.06 8.26 10.3 9.3 9.44 3.4 9.04 9.86 10.4 8.41 10.1 8.02 4.54 8.57 8.68 10.2 8.58 9.03 7.54 7.63 9.05 6.72 9.19 9.9 9.79 9.24 8.37 9.71 6.41 7.55 9.97 8.16 8.26 9.11 9.56 7.94 11.3 10.5 9.63 7.3 6.85 8.56 8.69 10.2 12.2 10.9 10.5 1.82 8.69 9.73 6.38 9.05 9.21 8.34 6.28 8.11 6.59 6.48 8.63 8.11 6.46 4.87 1.75 7.27 6.09 7.43 6.91 0.59 10.3 2.84 9.38 9.89 8.13 8.93 4.25 6.57 7.8 8 8.02 9.39 8.55 8.64 8.39 9.86 6.28 9.07 6.14 7.86 10.5 6.92 8.83 3.93 1.02 6.12 12.7 8.34 3.21 10.5 11.6 8.88 10 9.96 9.73 8.01 8.93 6.02 6.96 1.68 8.05 4.39 8.03 8.65 6.33 12 8.2 10.4 8.49 7.58 6.04 11.1 7.8 2.69 10 6.42 6.03 6.72 2.19 6.54 9.59 9.44 9.3 6.07 10.8 7.45 10.4 7.16 10.5 10.8 5.89 10.7 8.38 4.59 6.97 4.35 6.03 7.28 7.27 7.47 9.06 6.12 10.4 2.7 2.82 3.64 7.15 0.59 7.47 1.27 4.3 7.96 4.51 3.22 8.03 9.44 9.27 10.4 3.17 8.22 9.77 6.13 8.53 7.8 10.4 8.92 6.13 9.09 10.1 5.99 6.95 5.97 10.6 10.4 8.07 7.83 5.08 10.6 10.9 8.95 7.33 7.72 7.75 5.97 8.81 9.8 9.76 10.3 10 4.34 8.06 6.14 7.81 7.82 7.7 2.49 7.87 8.54 7.34 0.98 3.37 2.94 3.84 4.43 8.41 7.21 4.75 11 1.46 8.39 2.5 3.36 11.2 10.6 0.74 7.38 7.64 2.88 8.41 -1.31 4.83 9.57 4.12 12.3 5.6 8.72 7.7 9.81 9.42 5.67 6.03 8.11 7.41 7.76 10.4 2.68 8.42 9.92 8.86 9.1 9.04 9.93 3.83 8.26 7.63 9.38 9.17 -0.2 9.66 0.93 13.3 1.83 0.57 8.79 9.79 9.32 9.1 8 5.05 8.71 10.2 11 6.42 7.4 9.36 10.2 6.86 9.72 9.27 12 6.41 10.5 9.19 9.05 4.56 2.39 2.66 5.98 6.21 8.96 6.04 9.56 1.33 5.16 1.04 1.16 5.02 9.68 12.6 5.45 5.53 7.9 10.2 5.33 -0.46 9.66 6.14 3.46 5.85 6.14 7.57 8.75 8.11 9.92 8.65 4.84 8.88 10.5 9.33 8.48 9.49 8.18 10.4 9.84 10.5 5.31 8.36 7.12 8.13 9.26 7.28 9.87 6.27 5.48 9.92 5.94 10.5 8.38 9.63 8.22 9.21 9.95 8.78 4.12 10.7 10.3 10.5 6.5 9.61 10.7 9.98 10.7 7.87 8.84 9.69 8.86 2.89 12 9.73 9.17 9.48 11.8 9.06 8.38 7.91 9.61 5.67 11.4 9.38 6.06 6.39 3.76 9.19 10.6 10.8 5.81 8.9 6.48 6.78 9.8 9.23 9.59 10.1 9.79 4.46 10.8 9.72 4.59 8.43 11.9 9.58 5.75 7.73 8.98 9.51 4.43 9.12 12.2 6.9 8.18 5.13 6.17 8.35 9.67 5.99 7.11 7.6 8.67 8.42 8.92 7.82 4.11 4.05 2.51 11.3 3.51 4.75 10.7 7.64 0.5 8.6 6.72 10.2 6.62 9.69 11.4 10.1 0.15 10.8 4.33 10.8 9.4 7.08 8.69 9.05 13.6 9.57 5.5 9.76 10.3 5.88 9.43 4.16 4.77 8.94 7.26 3.24 13 8.21 10.6 4.15 11.2 7.8 3.39 3.14 6.05 8.2 6.57 8.68 1.96 5.1 2.28 9.64 7.48 11.8 7.92 10.1 7.97 7.57 7.44 7.09 11.3 5.59 10.7 10.9 9.18 11.9 12.7 12.3 9.15 8.71 9.01 9.71 6.79 4.34 9.58 11.6 12.4 7.2 9.46 -0.17 11.4 9.65 9.36 9.95 9.52 9.63 5.64 4.91 5.59 1.74 12.3 8.11 8.45 7.91 8.98 2.06 11.6 13.7 8.11 4.84 3.4 7.06 5.18 6.88 9.39 8.09 11.2 11.7 13.7 3.43 7.31 2.34 0.19 2.75 12 12.4 9.1 5.78 3.63 13.1 12.3 10.6 8.36 3.03 7.78 3.19 2.87 11.9 3.16 8.35 10.2 10.8 12.5 10.7 3.74 5.73 9.84 8.58 11.1 4.46 10 10.2 10.8 5.34 6.07 9.5 8.83 9.05 9.47 10 12.4 0.18 8.36 5.99 9.57 8.68 8.07 7.97 9.23 3.9 9.22 1.71 7.19 11 10.8 9.59 10.8 9.83 10.5 9.81 9.28 10.6 10.6 3.72 1.03 7.07 8.78 12.1 8.44 6.41 7.85 7.76 9.24 10.2 4.92 11.6 11.3 9.97 11.9 11.2 9.31 5.48 7.17 9.31 3.85 8.97 7.14 -0.36 9.89 9.1 3.28 8.71 6.61 9.57 5.8 5.57 4.13 10.1 5.63 10.1 9.49 9.66 9.17 9.62 6.71 10.2 3.41 10.3 7.21 9.72 9.05 6.94 10.9 9.79 12 9.3 6.63 9.85 10.4 8.79 9.27 0.62 8.82 9.7 1.46 9.07 7.77 8.1 9.97 3.66 7.69 4.2 9.55 10.8 -0.06 12.1 11.4 8.72 9.89 14.1 7.26 9.22 6.55 10.4 8.34 -0.87 8.08 8.15 9.71 7.37 13 8.06 10.3 11.5 13 10 10.9 11.3 6.41 12.8 9.52 6.13 9.65 6.16 7.73 9.31 -0.18 5.27 1.37 11.3 12.1 7.66 4.07 8.9 0.8 11.2 12.3 12.8 9.93 3.93 13 8.3 9.27 6.62 9.82 9.95 8.85 7.92 11.6 4.37 9.72 8.38 11.3 8.67 6.88 0.84 1.4 9.05 3.11 -1.17 -1.68 11.6 1.2 9.89 1.69 4.6 8.88 10.7 -0.24 3.8 2.66 5.12 -1.2 2.24 6.68 3.85 10.6 11.9 9.92 6.16 8.05 5.98 3.38 4.03 8.51 8.78 0.06 8.12 6.24 7.35 5.71 7 8.51 2.8 8.17 6.58 8.41 1.03 7.42 10.8 10.8 9.66 10.6 -1.05 4.92 -0.75 5.95 1.57 -0.98 7.28 9.12 6.3 9.1 6.23 9.83 8.74 2.67 8.12 -0.54 4.37 -1.01 -1.55 9.41 6.29 5.48 8.4 9.71 6.04 7.9 9.3 1.58 9.13 9.43 11.7 9.22 8.2 0.79 4.02 8.03 11.4 8.4 0.64 6.87 11 8.49 7.75 4.71 7.52 2.26 0.14 11.5 0.09 9.65 11.7 10.4 1.35 5.81 9.09 8.33 6.94 9.46 9.07 1.28 1.52 8.16 10.8 7.11 8.35 7.94 7.56 5.01 3.65 9.77 8.05 5.98 1.02 3.57 8.72 3.18 5.77 11.2 7.97 9.65 7.33 9.53 10.8 1.39 5.27 7.93 11.8 9.91 9.53 3.88 6.16 1.55 7.95 -0.39 3.08 9.07 5.52 6.99 6.86 9.03 7.71 8.62 7.76 7.7 8.3 8.91 3.15 9.9 3.43 9.66 -1.19 3.19 -0.02 4.84 0.35 0.96 0.23 1.47 6.25 10.9 9.27 6.46 10 10.2 8.32 8.14 8.42 3.45 11.1 10.8 7.7 9.14 8.28 7.12 2.42 7.34 2.73 8.34 10.2 7.05 8.74 4.43 9.39 10.7 5.54 8.74 8.53 6.48 7.84 4.88 1.75 9.19 10.5 3.26 11.3 9.03 5.45 7.44 11.5 10.3 2.46 8.08 5.76 7.55 2.27 5.58 7.68 11.7 8.28 0.92 9 8.89 10.2 7.79 5.63 14.2 2.59 5.01 1.23 0.61 5.99 5.21 9.34 10.1 7.39 10.3 6.65 5.1 8.8 9.34 1.8 9.99 3.57 3.06 10.2 8.02 5.19 8.25 10.5 8.25 9.23 6.78 9.92 8.89 8.84 9.46 8.73 8.05 8.72 7.29 6.55 7.03 7.82 10 7.82 7.38 8.12 9.16 10.5 6.34 10.6 8.05 10.4 10.2 6.71 10.5 11.5 5.36 9.53 7.77 6.07 4.7 6.21 10.1 8.18 8.8 9.55 11.2 4.79 1.07 7.11 10.2 10.3 9.77 5.71 6.9 6.7 5.43 0.75 6.72 4.51 8.68 5.97 2.23 4.63 7.4 7.58 7.12 5.89 2.56 7.93 11.4 10.5 7.84 8.84 6.83 8.96 10.2 4.98 9.96 9.57 8.93 2.08 10 7.88 5.53 5.93 6.81 10.8 9.37 0.75 8.5 8.06 6.89 9.63 11.5 6.58 8.84 7.84 10.3 9.35 8.1 9.89 8.27 10.7 10.1 9.27 9.17 6.76 6.71 7.65 6.04 7.09 12 10.5 5.21 8.09 7.7 9.09 9.42 7.78 9.78 6.84 8.27 6.89 6.45 11.9 8.8 9.06 7.33 10.3 15.4 9.21 8.93 5.82 9.8 6.96 7.72 9.86 7.43 8.54 8.05 0.6 10.4 9.26 7.3 10.8 7.18 7.1 8.56 8.96 7.24 8.18 8.93 10.5 10.2 8.34 4.84 7.83 6.21 6.57 8.43 0.47 11.2 8.46 9.86 9.97 9.5 7.54 9.18 8.33 9.96 1.98 7.92 10.8 9.41 8 10.8 7.42 9.77 1.35 10.2 4.75 11.2 6.84 10.4 6.73 4.11 6.48 5.42 6.89 9.45 7.02 9.55 9.45 4.29 10.9 5.2 6.38 11.1 8.94 10.4 7.12 5.94 7.7 9.34 5.18 8.86 7.82 3.08 3.25 2.31 4.36 9.6 9.92 10.5 6.95 2.8 7.76 11.1 10 9.46 9.35 10.9 3.22 4.94 1.94 10.9 7.84 8.74 8.02 8.02 7.12 8.8 9.92 8.31 3.77 11.1 5.85 8.63 9.86 4.91 9.81 8.74 8.57 5.48 7.64 9.68 0.66 9.88 8.29 8.54 3.83 7.24 9.26 4.22 9.07 9.09 8.26 5.04 6.61 1.06 10.8 4.53 7.83 4 12.8 8.84 8.17 -1.38 4.17 7.39 10.3 11.4 7.35 9.52 8.44 11.3 3.01 2.04 9.31 3.26 9.62 7.53 8.96 10.4 11.2 4.61 9.4 1.18 9.66 7.08 -0.74 5.91 8.1 11.1 0.16 5.6 5.8 6.09 0.94 1.83 3.23 10.4 7.54 0.14 2.92 7.54 9.25 2.35 8.91 2.43 10.2 10 6.53 7.44 12.1 6.28 10.7 8.88 5.02 0.9 3.6 10.4 8.66 7.7 7.32 7.89 10.9 4.56 4.39 7.83 6.68 1.16 7.28 7.55 8.18 13.1 7.03 8.89 7.9 5.17 9.54 10.4 7.04 8.63 3.56 4.42 7.48 9.64 8.72 5.47 4.45 2.7 8.24 11.4 7.35 6.48 8.23 11.3 4.25 8.19 8.08 11.1 7.21 10.3 8.9 5.85 7.37 -0.95 7.03 9.52 1.79 7.86 6.15 8.19 9.59 8.02 6.88 6.54 4.96 8.16 9.87 7.56 7.51 0.26 6.46 6.57 10.1 8.68 7.32 8.52 8.89 9.72 9.93 10.6 10.7 9.5 -1.05 7.69 10.3 4.48 9.31 10.5 9.47 7.56 9.3 10.6 7.21 9.82 8.83 6.96 6.66 9.2 8.82 9.47 9.89 3.84 8.98 4.04 10.8 2.74 10 11.2 11.5 10.5 6.83 7.99 10 7.51 10.2 10.4 9.3 1.79 8.4 8.37 9.11 8.68 8.3 8.56 9.12 8.24 9.24 2.27 7.83 9.42 1.5 9.44 9.44 8.23 5.5 9.58 9.38 11.7 7.15 4.33 8.03 8.7 8.53 10.1 8.33 10.5 1.85 6.94 12 7.18 8.5 1.35 4.79 5.74 8.75 8.75 9.93 7.63 6.7 9.79 9.28 0.38 5.75 6.2 7.82 9.87 8.82 2.43 1.77 11.2 10.5 9.67 6.02 10.7 4.55 5.47 8.15 0.54 7.8 6.82 9.16 8.93 8.76 6.66 11.6 9.48 9.05 7.47 6.99 7.21 10.3 8.56 9.2 8 11.9 9.74 8.44 5.5 0.57 7 3.17 6.64 7.42 10.2 11.1 10.1 8.39 8.43 0.26 11.4 9.52 7.79 8.53 7.27 7.68 5.81 0.1 7.4 8.17 11.2 9.66 9.32 0.19 7.36 1.5 -0.1 10.5 5.91 9.87 5.27 8.13 8.56 7.75 7.32 9.49 9.72 11.1 1.19 9.04 9.68 3.47 11.2 9.58 11.6 11 7.17 11.3 9.17 10.4 2.57 3.36 8.23 1.33 9.94 10.2 4.26 13.7 11.6 10.3 10.1 7.4 10.2 11 -0.19 8.65 6.74 10.8 8.44 9.19 7.12 2.43 12.8 9.47 8.44 9.2 10.9 6.68 10.5 8.43 6.14 9.62 10.5 1.57 4.16 10.9 4.87 2.04 3.85 10.3 2.98 3 7.67 9.12 0.57 3.91 11.7 9.16 9.59 7.22 4.67 9.61 8.43 10.6 11.9 8.81 3.47 10.8 11.4 9.93 8.94 9.28 9.02 11.7 6.79 11.1 8.2 9.49 8.91 6.19 6.98 7.87 9.11 10.7 7.22 4.13 1.39 9.77 9.26 8.14 5.46 10.2 2.79 5.28 11.4 10.2 10.1 9.5 7.76 11.3 5.1 3.21 11 2.95 7.24 8.69 9.38 12.9 8.4 4.66 4.06 5.97 4.25 2.02 10 9.53 9.57 5.85 7.68 9.84 7.92 3.99 8.39 3.5 11.9 9.47 5.56 9.83 10.6 11.6 11.1 5.98 10 12.1 10.2 10.7 7.07 13.1 12.3 8 11.9 10.8 10.9 11.8 12 11.2 9.48 10.9 10.2 11.4 8.31 11.2 6.06 7.51 11.3 9.39 8.91 11.8 11.8 4.09 8.61 9.5 10.5 9.74 9.97 4.83 13.2 2.91 11.5 9.11 9.87 5.84 6 3.27 0.08 12.2 8.26 12.4 7.93 9.66 6.08 11.3 12.3 7.12 10.8 11.2 10.3 9.34 10.4 9.3 10.6 11.1 9.65 8.46 9.72 8.07 9.86 7.17 6.44 3.76 12.1 7.37 12.6 6.21 3.39 0.6 0.58 5.23 11.5 12.7 12.2 9.86 11.3 13.7 9.73 13 9.09 5.46 9.1 10.8 10.1 10.8 9.6 4.21 7.75 4.37 11.7 5.66 -0.33 2.8 3.46 8.57 8.35 9.52 3.75 12.4 7.94 7.54 9.41 5.22 7.33 10.4 10 9.85 11.6 10.3 5.67 8.22 1.96 0.75 10.7 10.1 2.56 10.9 10.7 2.75 9.94 6.48 4.37 9.94 1.24 10.9 3.03 13.5 9.48 10.1 7.04 7.95 6.17 10.8 8.68 7.22 8.31 10.6 0.78 3.01 6.7 10.1 3.48 5.88 9.12 9.85 8.24 6.02 11.3 8.61 7.24 9.92 2.59 9.23 9.68 2.4 7.64 10.2 6.58 7.83 8.64 9.08 6.06 9.96 9.48 9.95 10.1 9.45 6.5 8.07 7.16 12.9 12.1 9.65 9.83 9.28 10.1 9.81 11.2 12.6 10.9 10.1 8.7 8.43 9.51 10.5 11.8 10.9 10.5 10.2 9.92 11.2 1.91 9.1 1.29 11.4 7.56 10.8 9.57 4.41 2.22 9.72 6.54 3.42 8.17 9.77 1.51 9.79 11.2 10 9.93 10.3 10.3 4.56 4.93 2.85 10.2 10.8 10.5 9.76 10.4 8.57 3.45 11 10.9 8.35 8.68 11.8 9.31 10.2 0.58 3.21 5.92 9.95 4.6 0.81 11.6 8.7 10.9 7.05 2.35 10.2 8.95 7.89 4.75 8.72 9.25 6.41 4.56 2.75 2.24 0.54 5.35 9.38 6.68 8.33 7.36 11.8 8.28 8.94 3.77 10.5 8.56 6.73 8.63 0.37 4.48 1.87 2.83 6.34 3.52 9.12 10.7 7.99 8.75 9.04 10.3 11.2 6.08 1.07 6.58 9.82 10.1 8.33 8.32 9.71 6.61 9.05 8.85 6.1 3.81 7.52 11.2 11.1 11.6 2.6 5.27 5.57 8.89 7 9.74 10.9 1.22 9.64 9.35 8.87 1.73 9.44 7.65 8.77 6.84 6.93 6.81 3.4 11.9 10 9.07 9.4 7.31 8.84 9.87 5.6 2.25 4.86 9.53 7.18 2.71 1.59 1.45 8.92 11.1 9.52 0.16 5.84 4.48 5.43 1.38 4.04 11.8 7.34 7.64 6.31 10 6.62 2.37 4.78 9.78 6.5 6.93 4 5.23 9.23 4.88 8.75 8.46 8.58 7.57 9.09 6.54 7.9 9.47 11.5 8.25 11.7 8.15 8.03 6.48 7.84 12.1 10.4 8.93 11.5 9.31 7.52 6.25 2.45 8.95 1.65 11.5 9.46 9.71 6.54 4.09 6.84 5.7 11.1 8.24 4.25 4.47 6.46 10.8 9.53 10.1 10.3 4.68 8.6 10.2 7.53 8.18 0.28 2.92 8.68 4.85 8.25 9.28 8.38 8.51 8.06 7.69 9.26 9.67 8.88 8.53 4.51 3.57 5.49 9.28 5.13 11.5 8.41 9.68 9.36 3.51 7.35 1.8 13.2 2.88 10.2 7.04 9.49 13.2 3.82 8.77 9.01 8.6 3.89 7.6 10.2 7.65 11.6 8.66 7.71 9.81 8.69 7.5 7.79 10 10.3 9.94 9.78 7.95 4.96 8.27 10.2 9.22 3.7 10.8 6.02 7.46 5.62 8.62 8.4 12.1 11 10.7 9.5 9.42 6.34 10.9 1.86 7.05 8.64 9.05 9.7 4.91 6.81 9.93 10.3 10.1 9.42 6.65 8.82 7.55 9.82 10.7 7.94 5.65 7.78 6.81 1.59 0.25 6.64 2.47 10.2 9.69 8.52 9.26 12.9 7.99 8.81 11.2 7.19 9.76 10.2 9.76 9.93 9.37 9.31 6.43 10.2 10.7 11.4 9.81 7.21 6 1.82 8.97 7.42 10.5 8.76 0.38 6.05 7.98 8.48 10.7 6.42 9.88 9.42 4.2 8 9.42 9.73 9.95 2.93 9.38 6.73 3.82 8.35 13.3 5.96 9.63 5.02 3.47 9.72 11.4 10.6 10.4 2.72 7.9 6.66 8.95 3.29 6.86 5.72 5.86 7.17 7.08 8.7 9.5 9.68 6.12 9.39 8.13 8.44 8.75 3.8 10.3 4.58 9.8 -0.34 8.21 7.17 9.28 8.41 0.97 11.2 5.51 10.5 13.9 7.06 8.55 12.2 7.75 6.17 5.75 9.24 7.4 7.39 3.04 5.84 10.9 10.5 7.74 7.21 7.25 2.92 10.9 8.37 9.01 9.48 7.76 8.52 8.43 2.98 9.84 6.77 9.26 8.54 11.7 9.01 7.72 11.3 10 8.07 10.3 8.16 11.1 10.8 6.68 6.66 8.95 4.71 4.45 7.73 8.77 0.52 8.89 3.54 7.78 9.28 6.26 2.28 5.32 8.26 9.87 4.15 8.13 4.26 8.64 8.11 9.64 10.4 9.18 8.52 7.86 12 9.41 7.38 6.04 6.83 9.03 7.47 7.54 6.16 12 6.62 12.1 9.5 7.6 4.96 10.6 8.87 11.9 9.36 10.9 7.38 7.52 11.3 3.17 8.45 0.8 7.62 6.52 8.08 9.26 3.57 0.76 3.67 5.74 0.06 -0.15 4.64 6.96 6.67 10.3 -0.07 9.8 11.4 6.41 8.96 9.92 4.18 7.25 7.86 7.38 12.4 9.08 11.7 0.74 9.34 10.1 9.54 7.15 10.4 10.1 0.21 7.15 9.94 3.78 12.1 11.3 7.62 2.57 10.7 7.95 7.41 9.7 8.07 1.9 10.6 9.95 5.39 7.55 9.59 10.2 5.08 6.49 9.05 5.47 10.3 9.29 11.7 7.9 9.78 10.5 9.83 4.77 10.2 9.22 10.4 6.96 8.8 3.69 9.77 9.72 10.2 8.55 8.46 7.81 10.1 12 9.42 7.87 6.13 9.91 13.2 7.47 1.94 10.2 8.51 2.74 8.22 7.88 9.05 13.3 10.1 4.04 9.63 8.17 5.91 7.93 6.85 5.15 11.8 11.3 4.64 3.09 9.57 8.35 7.44 3.07 5.33 2.81 2.36 7.64 10 7.91 7.5 7.77 6.96 6.47 10.7 7.86 4.39 7.77 10.2 9.08 6.28 9.36 4.97 4.4 10.7 10.9 8.16 9.31 7.01 11.8 10.2 15 10.1 3.51 10.2 9.58 9.7 10.4 9.87 5.95 9.62 8.89 8.66 6.69 2.11 13.3 8.42 8.92 10 5.79 9.72 10.3 9.59 -0.23 11.3 8.78 10.7 5.45 -0.18 11.5 13.2 0.23 7.61 3.22 10.3 7.19 10.3 2.28 6.29 0.13 9.01 8.01 3.68 7.55 11.6 10.8 5.1 4.7 12 8.21 9.68 8.12 4.16 8.16 9.83 3.77 4.71 2.37 9.35 10.3 8.67 12.3 6.72 11.4 9.18 10.9 7.66 12.2 11.3 3.4 3.7 10.7 1.3 9.89 2.43 8.47 0.53 6 1.53 10.3 8.48 9.2 2.61 8.36 8.26 11 1.26 7.11 3.19 7.75 8.09 5.37 8.92 10.6 7.26 7.74 5.78 5.41 5.12 12.3 3.48 8.86 4.17 7.68 8.55 10.4 6.96 10.6 10.4 1.53 8.59 8.38 4.99 9.6 9.65 12.2 9.23 9.59 10.8 9.35 6.04 8.57 3.43 10.5 2.51 12.2 8.82 1.54 11.7 8.78 8.02 5.54 7.9 7.95 12.2 6.53 9.91 9.57 10 1.5 5.02 8.05 3.64 6.72 2.66 9.97 3.99 9.61 7.77 8.78 7.8 9.61 14.6 11.4 5.37 12.2 7.62 6.49 9.67 7.9 9.36 6.99 3.84 7.7 8.01 2.73 10 8.7 9.64 6.7 7.7 3.41 7.52 9 10.6 7.25 7.76 9.85 10.2 7 8.71 4.81 6.91 12.2 3.5 8.15 5.35 6.19 8.27 8.79 9.02 11.8 9.25 7.52 8.93 3.4 2.7 8.29 12.9 10.8 8.63 8.58 4.67 8.34 7.75 8.73 10.8 9.57 7.41 3.19 11.6 11.5 10.6 9.03 5.85 11.8 8.73 9.8 10.7 11.4 10.1 10.3 12.4 10.5 10.5 8.06 10.4 8.97 8.86 6.07 7.66 8.61 10.7 12.2 8.57 8.1 10 0.74 10.3 7.49 8.3 12 11.6 11.7 9.55 9.25 10.5 11.8 9.89 9.11 10.6 1.71 10.4 10.6 11 10.3 9.07 8.83 8.39 10.7 8.94 8.65 9.5 12.1 8.84 9.33 10.7 6.85 9.09 12.1 9.12 10.9 8.98 11.7 10.7 3.08 8.94 11.3 7.65 3.36 13.3 10.7 12.8 10.5 10 7.33 4.82 11.7 9.47 11.7 12.2 11.4 8.14 10.3 6.96 7.41 10.9 9.6 4.28 0.41 9.5 4.89 9.35 11.5 5.97 7.78 9.46 10 6.61 7.52 10.4 8.8 12.2 11.1 11.1 9.89 11.3 8.81 11.2 9.92 9.64 9.42 5.61 10.7 11.2 9.73 9.14 9.13 9.97 7.45 9.92 13.6 11.2 8.42 11.2 10.3 9.16 10.7 6.46 12.7 14.5 9.59 5.78 9.07 9.82 9.68 9.33 10.6 9.71 11.8 9.48 11.3 7.78 10.6 9.97 8.9 11.8 10.2 6.32 9.43 12.8 6.61 11.8 9.51 9.14 9.35 10.3 6.96 9.35 11.2 1.37 6.69 3.04 8.45 9.69 9.94 11.2 8.81 2.2 6.93 5.08 10.4 5.94 9.14 10.5 9.06 3.6 10.1 0.41 7.45 6.78 15.3 4.53 6.18 10.5 11 8.85 10.2 10.8 6.7 9.19 8.55 7.56 10.8 9.04 9.44 11.1 5.93 8.88 9.47 5.86 12.8 8.88 10.8 7.11 10.4 9.62 11.7 9.49 12.2 6.49 5.09 6.42 5.69 5.41 10.2 7.84 11.4 8.97 13 7.17 7.58 9.98 11.7 8.48 9.77 12.7 8.16 9.7 10.9 12 11.1 10.6 11.7 10.5 10.1 7.53 11.8 6.78 12.6 5.67 10.2 10.2 8.54 8.4 7.62 10.3 11 10.6 9.44 11.3 10 7.32 9.58 11.6 6.71 10.5 11.9 11.1 8.42 8.08 9.28 0.66 11.1 9.29 9.55 12 8.56 10.3 8.58 10.3 10.5 10 9.57 10.9 7.06 9.03 10.1 10.1 7.18 8.7 2.34 9.53 10.7 8.62 2.13 8.81 4.61 6.37 9.8 9.01 9.24 3.89 8.84 10.3 10.8 7.64 10.3 9.12 4.98 10.4 9.15 8.86 9.61 8.77 8.24 6.47 10.3 10.9 10.2 8.11 9.47 10.6 5.14 5.48 7.79 11.6 11.4 9.54 11.3 10.2 10.5 9.58 10.8 10.1 12.2 10.6 11.2 10.4 9.05 8.97 9.75 12 7.63 11.3 9.83 12 9.22 12 5.98 8.11 8.73 8.66 8.15 10 11.3 5.05 10 4.71 7.08 10.2 9.27 9.45 10.1 6.27 9.48 12.1 9.35 8.23 8.45 4.25 9.09 10.7 7.99 6.69 10.5 10.5 12 9.35 12.1 8.37 8.81 9.16 9.07 11.3 10.6 7.49 11.3 7.21 10.8 10.3 3.4 9.24 8.61 9.05 7.27 10.4 9.56 2.13 7.22 6.05 9.36 7.79 8.01 12.7 8.59 5.7 10.2 2.26 4.28 2.04 11 10.3 11.2 9.69 12.7 10.1 3.75 8.31 11.7 9.83 11.5 9.46 2.44 10.5 8.98 9.16 7.22 10.1 11.9 10.1 9.02 5.5 8.85 11.3 9.9 10.9 13.5 9.24 12.9 2.18 11.9 8.14 8.78
-TCGA-BS-A0TE-01 4.81 9.28 6.09 6.64 7.17 9.16 1.05 2.4 4.2 1.48 4.49 8.88 3.69 3.97 -0.56 9.94 10.3 11.6 7.13 8.49 8.46 9.69 9.7 1.99 10.1 7.53 4.58 10.3 3.71 6.83 5.45 6.87 1.02 -0.29 3.28 3.5 0.19 8.44 1.38 3.95 3.85 3.25 6.67 -0.8 6.36 2.82 1.82 3.76 11.9 5.23 3.62 6.11 9.33 10.2 5.7 2.43 5.5 1.75 5.72 5.75 7.53 4.11 6.11 5.74 3.39 -0.02 5.69 7.21 7.69 4.42 3.2 4.66 0.01 5.12 5.21 3.52 3.28 4.87 3.49 -0.61 4.29 4.05 3.37 7.55 3.16 2.35 6.96 6.28 0.5 3.63 8.78 4.05 7.11 6.73 2.94 3.61 -0.07 1.72 3.55 -0.62 1.46 1.14 1.03 4.79 0.83 4.67 7.67 9.24 3.87 4.78 2.63 3.01 6.68 4.11 6.36 1.51 2.83 3.95 3.69 5.29 5.24 6.53 1.01 1.15 1.38 7.74 1.51 2.48 1.41 14.2 2.75 4.59 3.25 8.09 -0.2 1.48 4.79 3.04 2.98 9.11 6.64 8.65 1.13 4.27 1.96 11.3 0.25 10.9 -0.4 5.13 3.76 2.93 8.96 9.1 12.2 2.39 -0.53 -0.18 8.94 3.79 6.41 6.23 0.88 -0.68 10.7 6.86 6.72 3.13 10.1 3.08 10.3 9.39 2.8 3.91 2.79 2.95 3.66 3.36 7.52 0.61 5.74 8.03 3.71 2.17 4.13 3.25 1.27 2.21 8.7 5.01 8.77 8.67 3.96 3.1 4.88 5.88 3.09 9.88 8.74 8.23 5.38 8.94 9.44 10.7 7.78 9.35 4.11 9.32 11.1 11.8 8.08 10.9 11.1 11.3 10.9 9.96 12.2 10.7 5 11.4 7.28 10.2 11.7 10.4 8.41 8.62 6.96 10.5 9.51 11.6 7.09 1.76 9.63 12.3 9.11 8.32 10.2 5.08 9.09 3.53 8.44 5.44 11.7 11.9 13 13.1 12.8 13.2 5.24 13.3 6.8 1.72 5.28 10.4 10.5 10.2 10.9 11.5 6.95 11.9 9.72 10.1 10.7 11.1 8.58 9.99 6.76 10.6 11.4 10.2 10.7 7.72 8.7 9.04 12.4 6.89 1.96 13.2 11.6 9.8 12.8 12 10.9 8.13 9.76 9.31 10 9.38 11.5 9.2 5.91 5.17 8.95 7.13 10.4 10.6 4.7 13.1 8.91 6.65 11.1 11 10.5 8.13 11.4 11.1 0.77 10.5 9.02 7.82 14.3 10.3 4.27 8.64 6.7 11.5 10.6 1.47 8.12 6.7 9.29 9.34 10 7.23 10.1 10.9 12.2 9.74 9.71 8.69 12.4 8.24 11.4 7.76 10.2 10.2 9.73 9.1 7.93 8.13 11.7 10.4 9.14 10.2 7.72 12.7 10.4 8.39 12.2 11.7 11.2 1.52 9.61 -0.64 3.96 9.91 8.25 11.6 6.34 6.7 5.9 10.8 11.5 9.81 8.56 6.06 4.61 8.77 8.58 3.75 4.7 11.1 10.4 10.9 11.2 7.5 8.52 11.2 4.1 8.58 9.11 10.4 9.14 10.6 10.3 10.8 5.83 9.7 8.96 9.72 8.95 9.42 10 8.44 5.26 11.4 10.6 1.22 7.53 9.34 8.19 10.5 10.6 9.18 8.15 10.7 9.07 11.5 9.84 5.22 8.94 5.52 11.7 9.55 9.08 11.4 9.8 9.6 9.6 6.14 9.55 10 5.64 11.3 7.35 10.9 9.99 10.1 4.1 10.9 10.3 12.3 10 8.79 7.61 7.43 7.22 8.33 7.67 9.48 10.6 11.9 9.92 2.36 11.9 8.57 7.26 6.47 -0.07 9.88 5.12 5.99 6.07 10.7 9.43 8.57 9.17 11.2 11.6 5.14 6.62 9.69 12.2 2.93 7.62 8.09 2.19 4.11 3.03 8.54 8.39 -0.3 10.5 6.69 10.6 9.7 6.34 10.1 7.84 9.45 14.8 10.6 2.02 10 10.4 7.71 13.4 7.16 7.08 5.11 6.68 8.92 9.14 3.92 13.2 7.88 7.04 7.64 7.63 12.7 10.6 15.1 7.3 10 7.95 9.45 6.44 9.07 8.54 11.3 -0.3 7.6 2.78 13.7 7.52 11.3 10.6 9.36 5.48 10.1 6.43 10.4 9.84 10.8 10.3 10.2 8.67 8.69 9.47 8.02 11 10.8 11 8.67 10.6 12.5 7.51 5.43 9.82 9.2 9.75 11 8.38 10.2 10.4 10.6 9.98 5.59 11.4 9.21 10.2 10.9 10.2 8.73 9.45 11.1 7.9 5.13 9.52 8.02 9.22 9.84 12 5.12 10.4 6.3 10.4 6.68 10.3 11 8.35 11.8 10.2 9.28 8.39 11.5 9.64 11 9.38 5.69 12.3 9.66 10.2 9.99 11.2 11.8 11.1 11.1 7.42 10.4 10.6 8.06 -0.34 9.42 5.5 7.61 9.06 8.84 12.4 10.7 10.3 8.84 11.1 9.17 3.72 10 12.2 9.31 6.83 12.3 9.25 10.9 9.46 11.9 10.5 11.9 12.1 8.12 -0.55 10.9 9.36 8.38 10.3 10.2 12.7 5.91 10.3 11.1 11.3 11.9 9.82 11.3 10.6 11.2 10.9 14.6 12.8 11.8 10.9 12 9.3 8.52 10.4 8.95 4.43 8.34 8.85 15.5 8.33 10.5 10.5 -0.06 10.4 4.57 9.83 5.08 10.7 10.9 13.2 12.5 12.2 11.5 7.06 11.1 8.93 7.96 10.2 9.52 0.27 9.76 9.68 10.7 11.7 11.4 9.54 12 1.91 7.14 11.6 7.2 9.53 9.06 5.16 10.2 12 10.3 9.36 10.2 6.76 11.6 6.78 11.1 10.3 10.2 12.4 9.78 12.1 8.91 9.41 8.28 7.59 8.51 10.2 11.1 11.9 8.99 7.61 10.5 8.65 11.8 1.73 9.49 9.12 8.76 4.43 6.64 9.87 8.53 9.48 11.4 10.4 4.97 10.2 12 13.6 9.44 5.06 11.9 10.4 6.71 13.6 -0.4 6.32 10.3 1.68 7.32 7.03 8.81 10.3 9.86 10.1 4.32 4.86 4.74 9.07 9.45 10.7 8.56 8.28 9.82 7.11 1.01 3.66 12.3 11.8 4.01 4.58 8.21 3.34 10 11 9.48 2.95 7.94 14.8 8.66 11.4 10.6 10.4 12.2 13.5 8.49 11.4 8.24 8.68 4.26 10.8 5.28 1.86 1.69 3.17 10 5.45 9.57 1.14 8.11 8.39 -0.23 3.62 11.4 11.5 6.61 2.22 12 9.53 4.18 10.7 8.99 9.86 10.4 9.5 11.6 7.6 9.85 10.6 7.83 9.09 11.7 8.73 7.06 8.69 8.18 10.4 9.24 12 10.3 6.92 7.4 4.75 8.6 11.9 7.96 4.45 2.37 12.3 10 -0.17 2.74 7.86 9.55 11.6 12.3 6.69 6.87 9.07 12.7 7.38 7.27 8.51 4.69 5.23 8.45 8.25 0.97 4.04 1.75 10.2 9.39 4.23 11.6 8.5 9.6 6.99 11.4 11.4 -0.64 5.5 5.2 11.1 9.49 9.06 9.38 8.87 9.97 6.71 3.8 7.07 0.63 6.64 0.98 3.02 9.21 9.66 -0.03 -0.07 12.9 7.34 8.42 8.75 5.61 2.47 11 9.94 11.3 9.32 8.3 10.1 9.72 9.06 11.4 8.34 9.44 10.2 10.3 9.75 4.29 7.76 4.29 12.3 10.3 10.9 3.62 11 10 11.6 11.4 11.9 7.01 9.93 10.5 10.3 9.42 1.65 11.9 2.26 11.7 3.04 9.9 10.2 8.2 0.82 9.01 11.3 12.8 10.6 9.23 9.79 12.3 9.59 10.4 11.2 11.2 9.93 10.7 12.7 10.2 13.5 12.5 13.1 9.55 12.4 8.38 8.06 8.9 10.8 12 13 12.5 9.55 5.23 10.9 7.55 7.88 12.2 8.11 11.1 10.5 2.94 11.6 11 11 11.8 4.75 5.12 12.3 7.23 10.9 6.87 10.6 8.48 9.51 10.1 6.27 7.54 1.94 1.29 7.1 8.97 2.68 13.5 10.1 9.94 9.75 9.93 8.66 6.01 9.18 9.97 7.61 2.02 5.19 3.45 3.43 10.2 9.58 11.3 13.7 4.45 6.03 11.4 8.4 9.33 6.05 8.66 4.48 10.8 12.3 9.94 10.9 10.5 10.7 9.43 13.5 10.3 10.4 9.62 8.16 -0.24 8.89 11.6 9.24 8.66 8.76 5.34 11.2 10.1 8.32 10.1 8.72 4.15 10.4 10.9 11.8 8.95 7.15 10.6 10.3 5.69 5.05 9.83 0.87 7.26 9.52 10.6 7.46 12.2 7.24 9.1 9.98 7.77 0.19 9.37 8.62 11.5 9.91 8.46 9 9.04 7.8 9.74 8.14 7.66 9.23 1.99 8.34 8.48 8.52 11.1 10.4 -0.83 9.03 8.86 11.9 6.58 10 9.14 13.3 12.2 9.13 9.14 4.53 10.7 7.65 7.01 6.42 6.6 9.65 9.23 4.97 5.58 3.01 9.83 8.17 8.38 8.09 9.19 11.2 10.8 6.24 10.4 10.2 9.64 11.2 10.4 8.13 3.95 4.82 11.7 5.91 6.95 11.4 9.55 7.04 8.87 0.01 10.8 7.02 9.33 5.91 4.32 8.38 12 9.73 6.68 9.81 10.1 5.91 8.28 10.8 9.41 11.3 9.5 8.41 9.13 7.8 3.88 8.08 10.9 4.95 10.6 9.02 7.37 8.62 8.04 1.94 8.52 7.27 11.7 3.19 13.7 10.4 5.15 5.82 7.21 8.77 10.7 6.03 8.82 10.3 9.33 9.92 6.97 10.6 9.25 8.36 10.2 9.93 9.54 5.05 6.85 6.48 5.68 8.36 3.37 9.66 8.63 9.95 -0.32 2.92 10.4 10.7 8.62 8.14 9.24 8.29 8.11 11.8 4.47 12.2 6.45 8.93 5.52 9.65 7.87 9.96 9.49 9.92 6.67 -0.33 4.42 8.28 11.7 9.85 7.49 8.05 4.07 9.23 8.36 10.6 5.39 2.67 -0.2 8.5 2.24 12.6 9.65 8.26 5.82 9.65 9.22 8.25 10 11.2 9.93 9.88 8.02 8.03 7.2 9.33 8.96 8.37 5.27 9.07 7.86 12.1 10.3 5.22 8.25 12 5.28 11.9 8.47 2.71 11.2 6.03 -0.5 9.4 9.13 5.51 10.9 11.2 10.1 10.3 8.57 9.2 11.2 10.6 10.5 7.4 7.71 3.13 9.7 11.9 10.7 1.75 12.5 10.7 12.1 9.41 12.7 9.96 12.7 11.8 8.72 9.44 9.07 -0.43 11.2 10.4 8.4 10.2 9.41 10.3 5.09 12.1 1 9.48 6.85 5.14 4 5.45 6.45 9.88 9.33 3.78 4.95 9 7.71 8.75 7.63 8.51 11.5 5.81 11.6 4.49 8.8 8.49 1.17 3.6 11.9 7.4 7.45 2.54 7.79 8.59 4.58 2.82 7.66 5.73 2.79 -0.67 2.32 6.9 3.01 8.02 6.45 8.89 7.89 6.04 -0.47 8.55 7.59 3.88 11.4 9.21 8.88 9 7.53 3.85 9.08 6.9 5.52 8.58 1.45 7.75 5.65 7.06 7.8 2.69 5.92 4.58 5.88 8.72 10.2 -0.6 8.92 7.86 4.15 5.52 7.65 7.4 4.54 7.2 9.79 10.8 9.17 8.44 7.45 3.71 5.64 0.61 7.61 5.4 7.83 12.2 8.81 9.28 5.9 10.1 9.26 8.96 3.56 8.21 9.23 8.47 4.11 2.78 9.74 11.2 8.66 6.86 -0.75 6.19 6.12 9.46 7.77 9.68 8.52 4.95 4.45 8.15 7.86 9.99 9.59 6.04 0 -0.13 9.77 8.98 6.33 5.48 7.82 9.42 8.86 10.2 6.57 9.22 7.86 3.67 6.4 4.75 3.43 9.22 2.14 6.89 7.23 9.28 2.18 9.03 3.71 3.23 6.49 7.82 6.62 5.86 8.46 9.64 3.25 6.42 7.53 7.06 3.54 8.31 8.86 10.4 8.69 8.94 10.4 7.57 12 8.06 11.8 7.84 10.2 11.4 3.44 7.17 2.89 8 9 10.3 8.86 8.7 8.16 2.84 10 6.01 4.86 0.88 6.25 -0.03 10.8 2.08 5.82 5.59 2.96 3.63 10.5 1.1 -0.62 9.78 9.53 6.53 9.6 9.81 -0.37 4.53 9.84 5.33 9.11 8.3 4.35 9.3 12.3 4.22 4.74 8.73 8.42 10.3 4.92 8.17 10.7 7.94 -0.63 8.34 4.9 1.98 3.55 10 9.43 -0.38 10 5.61 1.66 3.94 13.1 11.4 11 -0.11 4.11 4.94 10.4 10.6 6.5 6.96 11.2 1.06 9.12 10.3 8.07 7.83 9.91 7.59 8.98 0 7.3 -0.35 7.93 6.82 9.94 9.41 7.61 5.53 7.29 10.8 5.35 2.93 6.15 8.8 6.79 9.04 8.55 8.9 4.65 6.32 9.38 4.85 7.22 8.21 13.2 14.1 6.06 -0.69 3 8.97 7.11 0.74 9.1 10.7 10.1 6.27 8.68 3.08 7.38 10.3 11.5 12 10.4 11.5 7.6 -0.07 9.65 7.6 9.18 7.8 4.42 5.42 7.71 8.35 10.4 4.49 5.46 11.7 2.98 3.65 8.82 11.3 11.4 8.9 8.44 6.01 5.96 12.9 2.24 9.11 8.78 2.87 4.88 9.28 9.5 3.01 9.4 10.6 2.28 -0.34 2.63 6.1 1.35 5.19 5.72 7.8 5.72 8.71 7.26 4.14 6.05 10.5 8.2 2.38 7.53 8.75 8.73 1.08 8.54 8.12 5.75 9.09 6.18 8.04 10.9 1.84 8.22 9.88 9.8 1.05 8.36 4.94 7.58 7.07 3.12 8.84 6.36 6.97 5.55 5.94 9.61 7.36 1.65 8.7 4.32 3 8.65 10.3 1.95 7.01 -0.12 9.44 3.27 6.16 8.94 7.62 6.2 4.66 5.03 7.28 4.26 -0.51 10.7 10.5 2.47 11.1 7.33 8.64 7.99 10.8 9.24 4.33 8.87 7.93 7.29 11.3 10.8 1.43 1.99 8.4 9.97 7.96 5.02 -0.31 7.47 10.6 8.95 4.61 -0.54 -0.54 6.27 4.52 8.45 9.96 8.08 10.3 3.94 7 8.19 2.59 10 9.36 6.82 7.99 8.48 6.04 3.66 13.2 7.35 7.12 2.7 7.83 -0.68 8.7 8.54 2.23 7.71 2.57 5.92 11.5 2.38 10.1 9.49 2.55 5.57 4.7 5.71 4.09 8.15 7.46 7.47 8.15 6.21 9.87 2.9 1.04 9.52 3.95 -0.24 2.36 4.9 7.39 5.88 8.7 8.38 7.27 2.92 9.81 10.2 6.38 11.2 12.4 5.59 6.71 6.72 9.16 6.34 -0.22 5.86 7.54 13 8.98 3.38 10.5 4.32 3.79 1.77 4.9 9.17 11.5 7.98 9.13 9.13 -0.38 3.01 4.13 2.53 1.5 -0.67 9.27 2.27 8.94 3.38 2.89 7.64 4.39 8.5 8.62 1.54 3 10.2 10.2 5.93 7.6 5.42 0.07 -0.17 8.86 1.18 7.22 -0.34 8.9 14.7 6.74 7.62 4.65 13.6 9.58 7.7 3.67 10 6.2 3.15 11.5 2.71 8.48 7.43 13.3 2.57 6.3 12.7 -0.09 8.05 2.15 9.59 11.4 8.63 9.51 2.29 9.5 7.85 6.4 8.32 13.1 7.3 7.34 6.56 1.43 3.28 4.79 4.56 3.73 10.4 6.21 4.04 1.09 4.3 4.57 12.7 10.9 10.8 9.09 8.91 10.3 7.69 7.56 11.4 8.97 11.7 8.32 8.89 10.8 8.4 7.94 8.86 8 6.57 2.17 8.54 9 5.85 7.77 8.18 9.99 8.7 6.12 7.66 5.04 1.63 6.98 7.28 7.12 6.31 7.57 4.98 5.19 10.9 2.36 4.22 4.19 2.79 7.76 10.6 10.3 5.86 7.48 6.33 6.26 9.31 7.92 -0.27 9.16 4.42 5.86 10.6 9.71 8.44 9.07 8.55 7.84 4 4.24 4.23 8.61 7.39 7.04 5.29 8.18 3.61 7.66 -0.2 3 9.62 2.74 7.86 9.62 9.15 12.9 11.7 9.33 3.08 8.07 11 2.97 7.88 7.01 7.99 10.7 9.71 7.46 1.32 10.3 7.13 2.05 9.13 1.5 -0.6 8.02 8.5 7.66 9.31 9.98 7.31 -0.48 2.22 5.91 10.1 7.97 8.43 1.39 3.47 2.6 6.57 8.65 4.55 13.1 8.13 7.77 7.88 5.56 11.7 4.08 6.74 0.84 10.2 7.43 -0.32 6.19 7.13 0.62 9.71 5.67 5.2 10.6 9.4 12.4 8.85 -0.35 3.09 8.85 4.25 12.3 5.19 8.42 11.6 10.1 6.61 9.82 5.7 7.23 7.59 7.57 9.86 -0.25 9.48 11.8 9.4 7.62 9.35 9.86 5.26 8 11.3 4.75 11.3 7.82 7.83 12.3 12.2 11.3 9.54 1.41 6.39 8.38 6.15 -0.13 9.55 4.62 9.94 1.67 10.5 13 -0.81 3.38 6.03 6.7 8.18 0.9 11.7 8.31 1.85 11.8 3.17 4.64 14.2 12.6 12.7 9.65 8.82 6.09 7.95 8.9 8.78 5.38 6.67 7.94 10.7 10.6 6.26 9.47 8.36 9.84 3.11 2.8 3.19 9.24 -0.89 2.18 11.2 5.42 3.23 10.1 5.26 8.54 5.33 7.2 7.36 7.19 7.3 -0.54 8.19 9.52 8.07 3.79 2.35 9.44 8.2 6.68 5.15 10.1 8.83 -0.65 11.1 9.56 7.71 -0.31 9.01 6.39 -0.54 7.01 1.52 9.37 6.97 12.8 11.8 4.16 4.5 0.71 8.94 6.34 7.38 12 11.9 3.73 8.43 1.51 9.42 8.76 8.91 8.99 10.2 10.2 1.56 6.63 7.72 10 3.89 1.13 9.81 8.59 5.89 2.82 9.23 6.1 -0.19 0.93 10 4.68 2.62 3.13 8.53 9.07 6.66 6.26 9.61 6.77 7.92 4.33 9.56 10.5 9.98 5.08 0.61 9.12 7.98 5.59 13.5 11.3 5.63 6.28 8.01 6.09 4.2 7.39 9.85 2.68 10.2 0.87 10.5 1.32 8.51 5.77 0.56 3.41 11.3 8.1 7.12 3.23 1.5 3.67 -0.42 5.21 6.13 5.12 10 -0.51 9.16 10.7 8.08 12.1 8.47 10.4 11.9 6.97 4.51 9.85 12.4 7.47 8.17 8.2 7.7 -0.16 2.88 7.84 4.45 4.67 4.85 7.61 5.68 7.29 10.9 6.46 4.75 -0.91 3.55 9.38 5.38 8.16 9.46 6.85 4.62 5.8 5.72 4.15 6.68 7.65 3.82 9.42 12 8.11 9.06 9.47 6.47 3.16 2.45 8.39 2.57 11.4 8.13 1.65 3.43 7.21 5.42 10.3 4.6 10.3 6.95 11.6 8.18 7.45 12.7 3.11 3.49 5.5 11 2.71 8.09 10.6 5.07 -1.04 9.11 4.17 10.5 2.5 6.54 7.36 6.88 9.55 11.3 6.91 8.05 6.6 5.13 6.63 7.26 7.27 4.29 8.52 6.36 1.13 12.2 9.01 5.14 9.1 0.85 2.53 7.38 8.94 5.34 1.62 10.3 1.05 -0.02 0.94 6.48 -0.26 8.47 5.73 3.59 8.12 5.25 11.5 6.77 6.9 4.59 1.41 2.78 8.09 3.48 9.05 8.25 7.42 0.19 3.97 -0.48 4.51 4.45 -0.49 -0.41 11.3 -0.61 1.29 3.37 1.82 5.03 -0.22 7.97 -0.91 9.43 8.83 6.53 9.27 4.53 8.38 9.21 3.54 12.7 5.08 7.51 9.63 8.19 9.64 7.78 8.47 -0.54 2.7 2.87 2.56 5.79 8.88 6.06 5.03 12.5 9.01 4.58 8.38 0.41 4.34 -0.52 5.69 5.93 6.86 4.73 9.94 7.21 8.37 2.75 10.6 8.89 8.16 8.65 6.95 5.58 4.69 1.48 9.37 5.21 8.08 5.77 5.47 8.06 4.79 4.68 8.08 6.14 6.95 9.49 5.67 5.4 6.58 5.69 7.73 6.02 3.45 7.27 7.68 6.89 9.57 7.64 5.17 5.23 6.33 5.53 -0.46 6.13 7.98 2.2 6.87 8.39 8.76 5.63 8.03 9.5 5.94 9.11 9 2.18 -0.37 11.6 4.91 1.07 3.25 9.11 10.4 5.23 1.13 9.34 4.24 5.32 7.82 1.83 10.8 8.98 -0.79 8.61 6.15 6.87 3.12 9.57 1.64 2.55 3.86 7.36 7.94 7.9 3.92 0.72 9.01 8.69 2.95 2.83 13.2 11.4 3.17 9.1 5.96 6.53 12.1 10.7 10.6 -0.55 5.84 12.8 2.09 5.69 10.3 1.17 1.19 1.83 1.56 5.75 1.41 9.65 5.73 1.66 8.03 9.67 7.64 6.59 9.57 2.42 3.76 3.89 8.74 6.17 6.99 7.83 4.11 9.36 8.14 9.06 0.51 8.17 4.88 9.72 7.95 11.3 4.6 7.91 7.29 3.47 7.14 8.9 6.87 15.1 9.14 14.5 7.35 5.74 6.14 6.76 9.74 9.19 3.8 -0.52 -0.53 0.45 8.14 9.99 9.33 12.1 7.68 6.25 8.68 2 3.75 4.67 8.6 4.8 6.68 7.28 6.15 10.2 -0.62 7.28 2.31 10.9 8.07 4.35 7.74 -0.32 9.16 7.27 8.12 11.5 7.52 0.85 6.51 2.2 3.88 1.11 8.62 3.16 7.91 9.75 7.88 8.53 8.08 10.7 8.17 8.39 8.11 2.55 1.94 5.97 7.88 2.11 9.52 8.88 8.13 7.93 11.8 1.08 8.65 7.22 10.7 7.45 6.47 2.64 3.3 6.84 8.71 10.3 8.06 6.29 7.93 1.65 7.79 2 6.96 2.85 3.11 10.6 8.52 5.35 4.21 5.61 7.26 3.94 6.64 9.9 8.87 6.68 8.9 11.4 6.76 7.82 11.9 7.86 5.75 11.9 10.9 9.4 6.02 7.66 7.29 -1.02 2.22 4.17 12.9 7.88 5.04 7.64 9.86 2.21 10.3 -0.34 8.68 8.57 8.31 4.79 8.38 9.46 0.68 4.23 1.32 1.33 9.06 6.47 4.27 1.65 8.1 4.66 1.51 8.47 6.16 1.11 10.5 7.45 2.5 3.15 6.81 1.34 6.29 4.21 6.12 9.29 11.2 1.44 3.91 9.01 9.29 7.36 7.16 9.88 4.54 -0.19 10.9 3.82 3.72 8.69 1.75 -1.04 10.5 8.79 9.27 8.79 11.3 8.4 9.48 7.59 0.97 10.3 7.12 8.96 8.87 8.05 8.07 4.77 10.7 2.11 3.66 5.03 5.08 8.65 4.12 9.91 0.9 1.58 2.96 5.22 4.78 4.97 7.87 4.52 -0.55 7.55 5.09 6.78 2.93 10.5 4.82 8.39 4.06 5.68 3 -0.21 4.98 7.38 5.5 7.59 4.49 7.49 7.43 1.8 6.94 4.89 3.18 -0.46 4.32 -0.97 0.16 3.51 3.35 1.9 9.63 7.71 9.32 6.23 9.48 7.52 0.35 9 7.68 5.11 12.2 1.44 -0.53 12.3 10.3 -0.04 8.84 3.18 7.78 -0.73 -0.19 11.7 8.28 2.97 2.2 10.5 9.9 0.55 8.21 12.2 7.99 9.25 7.74 8.52 5.85 2.8 5.4 8.46 8.64 10.5 11.2 5.02 6.49 2.81 8.22 8.99 2.16 5.09 10.6 9.89 3.66 7.77 5.1 2.54 11.1 -0.79 6.91 10.9 -0.31 2.64 9.28 5.14 4.45 7.21 3.55 7.35 11.4 10.2 1.94 11.8 7.16 8.68 6.9 4.76 10.3 8.7 3.26 4.72 2.31 3.85 1.06 5.7 4.28 7.73 11.6 7.08 9 4.23 4.92 7.4 8.18 4.13 6.4 6.47 8.99 5.34 -0.72 12.2 7.85 6.27 7.38 5.47 6.34 5.47 6.47 5.43 2.25 7.77 7.64 6.05 5.26 8.08 10.6 -0.69 6.96 4.51 2.2 9.59 -0.66 10.3 4.68 10.7 7.47 9.39 -0.73 7.65 7.16 1.4 4.58 7.85 8.14 8.6 11.8 10.8 1.92 8.62 -0.69 11.8 -0.22 9.01 3.18 2.34 11.2 14.3 2.06 14 5.95 2.06 3.16 1.54 8.81 5.46 10.2 10.7 13.2 7.4 -0.3 3.49 3.88 10.3 8.3 11.3 8.4 12.4 12.4 1.2 2.92 11 2.7 9.04 8.52 -0.56 9.33 2.6 6.79 13.3 11.7 4.65 9.23 9.48 6.79 1.71 7.75 6.48 11 10.8 4.63 8.95 8.22 5.68 7.16 8.79 8.28 9.39 1.19 8.85 7.57 9.17 1.95 4.25 -0.09 1.24 4.94 3.69 9.47 9.07 5.71 6.96 7.1 0.18 8.44 2.73 8.75 8.33 -0.47 4.56 6.58 8.8 4.08 -0.15 8.24 8.53 7.53 7.72 4.82 1.33 2 8.87 9.94 7.92 3.82 5.39 7.02 4.22 4.48 3.54 2.28 6.52 2.49 2.22 8.38 10.1 4.89 9.8 5.29 -0.31 9.67 4.84 1.71 3.7 3.5 0.11 9.93 7.69 6.88 8.4 2.62 10.4 5.94 10.2 8.08 1.99 9.06 -0.57 7.43 12.6 6.37 9.19 -0.07 9.99 9.49 10.5 11.2 12.4 9.67 7.93 7.8 10 12.1 14.4 12.4 8.01 6.19 -0.49 9.23 10.9 10.4 11.2 10.1 4.01 10.3 7.44 10.5 3.31 5.43 4.73 7.98 8.44 5.03 4.03 7.58 5.34 8.74 8.63 7.68 4.44 -0.25 5.27 2.01 7.31 8.65 2.54 2.07 11.4 12.4 9.07 5.77 10.5 10.9 11.8 11.1 6.15 9.65 8.17 9.12 5.62 6.18 8.5 9 10.4 6.69 5.23 8.94 9.68 9.05 5.42 9.96 11.1 1.48 9.83 2.71 -0.07 9.75 10.3 8.32 -0.39 11.9 10.3 9.37 12.3 6.93 8.5 13.3 8.34 4.75 9.07 8.41 6.91 10.9 6.87 10.6 7.4 10.9 9.75 9.27 10.1 8.52 7.42 8.73 2.95 10.2 10.2 9.28 11.4 9.65 9.47 9.96 7.96 8.84 9.3 10.5 8.5 9.02 9.07 6.48 6 11.7 3.95 10.4 11.9 11.8 9.03 11.8 5.28 8.36 7.19 6.33 8.32 8.18 7.71 13.6 6.24 8.01 11.3 15.6 1.43 10.4 10.5 11.8 6.26 6.35 10.5 12.1 13.1 13.8 15.5 9.71 10.6 7.36 8.13 9.58 9.89 8.48 6.24 -0.6 9.16 8.62 5.38 9.66 9.47 8.46 11.2 7.25 8.36 5.12 11.2 4.92 6.98 2.99 8.25 4.04 9.36 4.61 6.33 8.95 3.93 7.99 12.2 9.21 12.1 8.93 10 9.25 10.6 4.73 7.96 10.4 9.3 -0.38 10.1 6.55 6.34 5.63 13.1 3.38 5.5 10.4 5.32 -0.2 5.73 -0.09 9.48 1.19 3.54 7.07 9.26 8.78 13.3 5.25 8.65 8.89 1.92 5.92 9.19 12.8 8.16 12.8 9.58 11.7 11.6 13.6 13.9 11.4 14.2 0.03 7.09 -0.33 11.5 6.03 5.34 10.9 3.27 2.9 3.18 7.59 1.84 10.1 6.51 3.25 -0.13 8.45 7.55 6.82 7.15 -0.09 8.45 5.2 7.58 7 13.4 9.46 -0.5 9.55 11.8 10 9.57 -0.35 4.71 8.8 7.69 5.41 9.26 10.5 4.18 1.73 3.43 1.56 11.4 9.48 6.37 9.77 7.65 -0.46 7.76 5.61 8.17 1.25 8.28 4.16 4.56 0.72 9.69 7.1 4.61 5.56 8.36 8.47 10.7 6.38 10.2 6.85 5.39 4.96 8.03 10.5 8.48 8.28 7.69 11.4 4.14 9.65 7.77 11.2 10.1 10.7 5.32 8.42 9.89 9.16 6.26 10.1 4.12 9.37 4.47 7.63 9.85 9.19 9.31 6.71 9.37 7.08 3.78 10.2 0.03 8.59 3.38 8.04 1.41 5.01 6.99 7.72 10.3 0.86 2.94 9.51 8.89 6.05 9.87 11.7 8.45 6.04 3.91 5.49 6.05 9.1 7.62 9.27 7.19 8.56 8.45 5.38 5.56 6.81 8.09 4.16 11 8.85 -0.13 15 3.04 3.39 1.87 2 -0.26 8.42 6.32 7.1 6.32 12.2 11.8 9.65 11.6 8.82 6.75 14.7 10.1 2.25 1.57 7.89 8.55 7.29 4.99 7.71 7.74 8.8 8.59 10.1 6.04 12.1 9.01 10.4 7.08 6.28 9.83 11.6 8.85 7.12 10.8 11.7 12.1 9.65 3.14 -0.33 4.65 2.39 9.6 2.6 9.54 8.84 5.67 8.61 11.5 5.44 11.6 5.12 10 9.04 7.73 9.96 9.65 9.96 -0.45 7.94 8.72 11.8 10.8 10.2 10.4 5.2 9.34 11.5 2.84 1.44 12.1 9.69 8.79 6.04 11.6 0.03 9.16 9.74 7.13 9.46 7.25 10.5 6.52 11.5 10.7 5.2 11.8 10.7 7.75 8.82 9.74 4.93 10.8 -0.38 11.7 11 11.2 11.4 8.61 9.88 12.6 8.17 4.02 4.98 10.4 9.39 0.78 9.97 7.19 10.8 6.83 6.56 10.9 3.42 12.3 10.6 10.1 1.14 7.74 11.1 2.23 8.9 10.9 5.98 8.21 9.53 4.68 9.12 8.12 11.2 8.51 9.78 9.06 6.48 6.5 5.87 16.2 9.56 4.88 8.31 2.68 6.97 12.8 3.62 7.99 9.09 8.25 9.05 8.01 10.2 7.91 11.9 9.15 9.49 10.2 9.56 5.08 9.55 9.08 9.96 11.3 8.4 4.76 11 7.61 3.97 4.05 11.7 9.25 9.78 2.73 3.39 7.36 3.37 4.71 7.39 2.27 8.19 13.2 6.69 7.74 9.07 6 10.3 8.08 6.06 6.54 7.95 4.64 7.26 8.5 5.12 9.87 7.61 -0.41 7.5 10.5 7.6 6.59 7.99 5.29 10 3.62 8.09 7.96 7.61 5.39 2.33 4.97 9.35 3.46 4.36 7.37 1.49 6.28 9.9 9.48 3.97 1.71 1.5 2.31 3.23 2.19 6.06 1.51 7.95 7.14 2.31 -0.38 5.09 6.6 4.54 4.95 4.61 5.3 2.19 12.6 6.34 8.63 5.52 7.22 9 9.55 1.61 8.73 7.64 8.23 5 11.1 3.68 5.89 8.89 9.11 7.12 9.89 7.64 8.28 5.92 9.38 5.82 7.27 4.22 5.39 7.8 8.56 0.42 4.31 2.72 6.01 0.85 9.67 3.93 3.26 4.86 1.37 10.9 3.96 9.19 10.5 4.13 8.44 7.06 9.63 4.8 8.24 2.02 0.84 12.6 8.69 2.76 9.33 8.54 7.53 8.9 6.54 9.36 6.85 7.91 3.49 8.9 5.88 11.3 7.32 10.7 9.29 10.3 5.15 8.64 10.6 7.3 8.48 9.78 8.08 9.2 12.4 8.96 9.74 6.58 8.36 9.27 7.94 7.07 8.42 11 9.01 3.34 2.12 1.74 5.84 3.98 9.56 9.74 3.28 2.37 -0.51 1.23 6.55 5.43 7.16 5.15 10.7 10.2 9.32 9 2.6 8.82 9.72 10.6 7.27 12.1 4.55 6.21 7.98 6.59 3.69 1.56 4.83 3.23 8.75 6.73 5.67 5.51 15.3 9.31 9.19 3.05 7.52 12.3 6.2 10.5 2.74 7.06 10.6 8.78 10.1 7.51 9.11 4.31 12.5 8.26 7.48 -0.13 11.1 2.4 7.37 6.76 10.6 7.14 12.6 3.6 12.3 7.25 10.8 9.14 8.15 11.1 12.2 9.2 2.42 7.06 9.36 7.61 10.4 10.5 10.9 12.1 7.05 6.29 5.27 9.28 8.2 8.54 9.04 6.61 9.02 6.5 9.01 -0.32 9.42 10.7 10.6 10.7 6.29 9.56 8.45 9.3 -0.76 9.59 7.38 10.7 11.5 -0.95 11.4 7.28 9.91 9.12 7.82 10.8 9.26 8.88 13 9.29 7.18 7.26 11.9 6.79 5.81 10.1 8.35 9.04 10.2 8.68 3.57 10.3 9.17 -0.15 8.87 8.65 6.51 7.62 7.86 2.47 8.82 10.7 10.4 9.68 11.1 10.8 9.34 8.62 6.82 12.7 4.6 6.31 11.6 -0.63 9.12 12.2 7.86 9 8.56 6.19 9.62 8.14 12 10.1 10.7 10.3 6.71 10.2 10 10.2 10.4 10.3 8.1 8.19 13.1 11.8 9.53 2.93 8.35 8.86 5.32 4.84 2.23 12.2 9.17 4.37 10.8 6.54 1.63 10.6 8.47 7.28 6.52 10.4 11.4 -0.61 2.5 -0.24 8.76 11 10.6 8.75 7.1 10.1 2.52 6.28 11.3 8.52 9.05 7.7 8.46 9.07 9.44 1.94 10.3 9.97 10.1 9.97 8.36 9.23 11.6 7.23 12.2 9.57 9.4 7.58 8.31 -0.58 10.6 9.68 8.99 9.06 9.99 8.46 7.42 6.85 8.8 5.84 10.3 11.2 9.09 11.9 7.67 6.85 9.16 9.31 10.2 11.7 9.41 7.89 9.44 10.7 6.46 7.81 7.84 10.3 11.4 9.89 9.91 9.9 10.7 7.31 9.5 10 11 3.85 8.79 9.42 10.1 8.73 8.23 8.43 9.03 8.09 10.2 9.75 6.93 8.83 11.7 10.3 4.2 9.71 8.94 8.78 10.8 10.1 8.8 9.17 7.11 7.53 11.3 9.08 4.05 10 4.9 11.1 9.84 5.04 8.08 8.99 9.12 7.1 7.42 9.76 9.94 9.18 2.37 7.93 8.91 9.87 9.79 3.2 9.9 7.22 9.38 9.56 5.55 9.09 9.64 10.8 9.68 6.36 10.5 11.1 9.62 10.7 9.47 8.19 9.5 3.99 4.15 8.45 0.56 9.13 10.5 9.86 9.02 9.64 9.17 7.33 11.5 10.5 9.66 8.87 8.73 9.79 11.2 8.04 10.9 10.4 9.18 12.3 11.6 8.96 8.6 10.3 9.34 9.04 10.3 7.84 8.9 7.2 6.86 8.44 8.42 10.8 10.6 9.18 9.35 8.58 10.2 11.9 11.6 9.95 13 6.13 8.75 12.3 11.1 10.8 11.2 11.7 6.08 10.6 12.5 2.47 10.1 7.56 2.14 9.82 8.96 9.41 10.6 10.7 10.6 11.2 10.1 4.15 10.6 9.72 2.9 9.57 8.12 10.5 10.3 10.9 6.98 7.86 5.92 9.28 12 7.64 5.78 10.2 8.25 9.4 4.19 8.96 6.76 8.35 9.84 9.97 9.24 11.5 7.9 10.3 8.26 9.89 10.5 3.69 7.13 8.36 6.32 6.18 9.65 8.66 9.3 1.69 8.58 9.27 8.88 10.5 11 8.56 10.3 9.55 3.07 8.42 8.99 10.3 8.88 9.12 8.54 11.5 9.78 2.29 1.38 9.28 5.91 6.07 10.8 6.38 10.9 4.14 9.89 8.98 9.74 10.6 8.62 3.81 9.95 10.2 5.93 11.9 10.1 4.15 9.72 9.32 7.98 9.17 8.03 9.71 9.41 11.6 8.19 8.68 1.65 9.92 8.37 8.92 10.3 6.92 10.1 9.98 11.7 10.9 8.46 7.97 10.1 11.4 8.52 8.04 6.78 9.71 10.2 2.73 9.11 11.2 8.27 9.38 9.02 0.95 14.2 11 10.5 11.2 10.7 8.58 9.28 8.96 9.96 3.73 9.18 9.47 8.31 9.47 11 7.86 12.5 8.62 11.3 10 8.95 7.43 9.49 8.17 9.55 8.86 11.4 10.1 9.56 10.4 11.2 11 8.93 10.1 11 8.45 10.6 11 9.26 10.2 9.73 8.79 11.4 9.9 8.94 8.93 9.44 10.1 12.2 8.18 4.65 9.12 8.58 8.84 9.31 -0.14 3.76 6.55 7.67 -0.28 9.13 11.7 8.13 12.1 8.51 6.24 8.82 9.37 2.04 8.28 5.1 10.2 11.8 10 7.9 12.1 11.9 11.9 8.16 8.37 7.69 6.48 2.97 7.22 7.9 11.5 8.39 9.67 8.2 10.6 10.1 12.3 8.56 10.1 10.6 10.8 12 10.3 3.29 10.1 11.7 7.62 11.3 5.99 8.17 5.05 0.78 4.58 10.7 5.41 6.05 8.89 7.13 10.5 9.49 9.65 7.66 11.4 8.92 10.8 9.93 11.5 9.32 7.84 12.6 10.9 10 -0.52 3.29 14.2 9.01 11.1 12.8 9.68 9.8 7.2 7.44 11.7 9.34 9.08 11.3 7.75 10.4 6.61 2.35 7.58 8.83 9.95 9.94 1.01 8.81 3.49 2.97 8.08 11.3 10.2 9.57 6.55 6.73 9.3 10.9 9.14 8.94 11.1 10.1 9.74 10.5 -0.02 5.89 11.5 2.93 7.99 9.47 -0.9 4.95 11.6 1.26 9.95 9.04 10.1 2.1 11.2 8.18 10.4 9.24 10.9 6.8 7.76 9.02 11.3 9.66 8.39 8.21 8.92 9.84 11.8 5.18 11.1 7.64 11.8 11.7 8.95 7.6 10.3 1.22 9.51 8.97 10.4 9.87 2.59 0.42 0.92 0.97 10.8 5.99 11 10.1 6.01 10.6 7.93 9.54 4.7 10.4 9.76 13.3 10.3 9.29 9.42 4.93 13.5 11.4 10.8 8.64 8.22 11.2 9.63 11.4 8.68 5.56 9.46 8.53 6.23 4.86 9.91 9.03 9.91 11.3 9.23 10.1 10.8 10.4 8.91 7.88 8.75 8.53 1.23 9.68 7.3 5.33 12.6 10.1 9.9 9.28 10.8 12.7 11.4 -0.36 2.09 8.34 6.25 6.3 9.51 8.5 9.62 9.11 5.5 7.38 9.18 7.47 6.74 7.59 11.8 9.96 5.47 7.1 -0.27 4.2 7.67 1.76 7.31 5.82 9.12 -0.52 4.78 1.91 6.57 8.93 5.81 5.1 7.28 8.6 0.27 1.54 3.8 10.3 8.97 7.63 8.51 6.15 8.61 16.6 10.6 11 4.58 18.1 10.2 11.2 12.4 7.85 10.7 3.24 9.43 -4.08 3.14 10.9 4.78 0 10.1 6.79 4.84 9.76 7.48 3.42 8.14 9.58 9.2 4.28 4.49 7.15 9.36 7.48 8.12 4.89 9.55 8.16 7.14 9.72 6.38 6.63 11.8 8.51 3.08 9.35 0.04 5.15 9.85 6.82 7.63 -0.67 13.1 10.4 8.3 7.22 8.56 4.34 5.53 9.68 4.55 6.42 9.19 1.92 -0.41 8.02 0.54 -0.11 9.52 8.04 6.22 6 6.65 2.2 4.9 8.59 4.71 9.25 8.29 10.8 8.52 5.09 12.7 2.62 1.67 11.6 7.92 9.8 9.46 8.69 7.49 7.26 6.67 6.43 5.15 -0.63 5.46 8.98 9.26 -0.59 6.79 2.48 9.27 1.25 9.24 5.31 6.39 6.19 0.41 7.41 2.46 6.93 1.09 9.75 11.3 6.44 7.2 4.09 7.12 6.86 7.82 8.68 5.91 1.77 -0.65 6.05 6 10.1 6.96 6.65 4.39 5.47 5.17 9.39 9.45 3.67 5.07 4.54 7.65 7.42 8.92 7.08 -0.13 1.39 6.71 1.75 2.62 1.02 5.06 -0.25 7.15 3.36 -0.72 5.41 1.72 -0.22 7.45 6.63 4.88 6.92 5.53 7.77 3.94 4.41 4.95 -0.29 5.78 6.65 0.1 -0.34 -0.48 9.6 8.1 10.5 7.33 3.04 9.4 11 9.2 8.87 -0.06 8.37 10.6 7.61 7.55 9.37 4.43 1.4 8.67 5.55 5.34 10.8 10.8 2.32 10.6 11.7 11.9 6.38 11 9.57 8.94 9.38 6.56 7.08 11.7 9.07 9.15 7.01 8.96 0.96 10.4 10.9 7.55 6.11 6.63 11 10.4 8.19 6.5 4.52 12.6 10.1 4.98 10.9 10.5 8.59 6.49 10.8 6.34 3.04 10.2 8.19 10.5 9.5 11.8 7.43 9.57 10.2 12.2 8.06 10.3 8.15 9.34 4.56 8.06 8.9 10.1 6.46 10.8 6.56 6.99 2.78 8.74 10.3 11.9 9.98 13.4 10.2 10.4 4.47 9.85 11 10 7.6 9.83 8.72 8.02 10.5 4.52 2.41 7.27 7.84 8.88 9.24 7.94 8.86 10.8 5.65 8.47 9.24 9.34 9.2 8.81 5.39 10.2 11.1 8.56 12 8.48 7.51 10.7 9.56 7.61 3.18 8.29 10.6 11.2 0.84 5.91 8.7 8.72 3.2 4.74 4.16 9.83 9.61 5.73 5.75 8.35 1.16 9.36 1.46 -0.73 4.44 10.3 10.6 6.3 11.1 8.15 8.93 7.54 8.8 9.58 10 10.3 10.1 6.86 5.15 10.4 10.4 9.89 7.96 7.05 12.1 4.3 9.66 10.4 8.59 5.67 10.4 11.3 8.3 16.6 9.78 9.43 6.76 7.86 9.45 10.2 11.3 8.71 10.5 4.99 8.96 3.76 12.1 7.96 10.6 6.84 11.2 9.53 10 7.95 11.2 10.4 11.5 7.59 11.8 8.8 10.6 8.94 12.1 4.9 10 5.93 10 10.9 10.3 9.18 12.3 8.98 10.2 3.82 9.26 4.56 8.1 9.29 10.2 3.62 3.72 3.61 9.59 8.89 10.1 3.27 8.62 5.59 8.16 7.34 1.45 8.04 9.69 7.07 8.79 5.53 6.21 4.45 7.89 10.2 8.88 10.4 10.3 9.98 8.79 9.8 10.2 11.2 9.48 11.5 2.39 7.71 7.58 10.1 12.1 9.17 9.62 8.82 6.45 -0.39 10.7 7.87 11.8 11 3.52 8.48 8.49 9.2 9.02 10.9 8.51 10 8.95 9.02 9.69 11.2 12.9 11.7 2.95 6.8 9.05 9 10 3.99 8.68 7.1 8.9 7.13 2.82 2.65 12.2 12.1 5.37 8.23 9.7 8.72 10.3 12.6 9.89 10.7 12 7.53 7.68 10.7 5.02 9.94 4.15 11.3 8.59 9.62 3.09 7.62 7.34 0.51 8.39 5.12 8.5 10 11.8 2.99 10.2 -1.24 6.4 5.29 9.01 9.69 9.68 7.27 6.41 4.02 7.44 4.19 -0.77 2.4 3.07 6.45 10.3 8.71 9.01 4.07 10.7 9.77 2.23 7.19 9.03 8.22 9.9 9.57 8.09 6.63 7.87 9.11 8.61 9 6.37 3.26 11.4 10.6 9.95 5.77 10.3 -0.42 9.69 8.09 8.86 3.84 10.5 8.7 9.45 -0.5 9.15 6.74 11.1 11.3 8.87 2.29 9.6 9.73 5.5 10.1 10.9 11.1 11.8 11.3 11.2 3.81 10.3 9.04 9.51 8.91 10.3 10.6 7.72 8.28 10.3 9.15 7.11 9.05 9.44 11 9.27 9.39 9.71 9.53 8.24 11 4.76 2.29 -1.18 10.2 4.09 4.03 6.17 9.39 10 11.4 7.37 9.67 9.04 1.24 10.9 4.46 8.16 2 10.8 12.2 8.74 1.09 3.83 3.08 3.51 9.72 7.11 10.7 2.39 6.1 5.99 1.13 8.78 3.77 12.2 5.56 7.63 2.21 8.03 10.5 1.01 4.18 10.4 10.3 6.02 0.66 3.68 -0.44 12 8.92 7.93 10.4 9.75 -0.48 3.41 8.16 8.82 10.2 2.16 5.69 8.95 10.3 5.16 8.29 10.2 15.1 9.44 10.4 10 10.9 7.97 8.84 1.05 4.32 10.6 2.9 8.9 7.14 4.66 10.7 10.3 7.2 11 7.43 6.5 11.4 0.13 8.36 3.02 4.54 10.2 6.04 8.57 11.4 12.5 9.55 -0.29 3.84 10 9.3 12 8.04 4.91 9.88 10.4 13.4 6.34 9.16 8.45 7.08 9.61 1.97 12.2 -0.46 9.43 6.39 5.5 10.3 9.06 1.5 1.53 9.85 7.76 11.3 13.2 9.62 9.28 7.03 11.5 7.68 7.76 4.05 8.21 2.04 7.53 10.6 0.73 5.88 4.51 4.87 7.6 11.6 4.7 11.3 8.12 7.11 3.83 0.22 6.13 7.39 5.61 5.42 9.04 10.3 4.55 9.78 -0.57 8.63 7.56 7.14 12.4 10.7 11.6 7.74 4.11 2.81 10.4 4.52 4.83 3.07 1.84 3.06 1.95 6.6 10.7 -0.24 8.57 12 2.8 4.28 8.92 9.6 10.6 8.63 6.24 5.61 7.49 13 11.2 8.56 8.58 8.46 10.1 10.3 11.2 10.4 7.08 10 4.61 10.4 9.77 2.14 1.24 6.55 1.49 8.17 14 7.69 9.68 10.1 5.88 10.3 5.69 2.36 11.9 8.92 9.56 3.32 8.34 1.29 8.8 6.49 5.92 9.52 11.6 3.15 9.32 9.85 10.9 9.81 2.89 12 9.95 10.1 11.6 11.4 9.42 11.8 9.61 8.95 5.63 7.36 11.3 10.2 9.52 9.38 6.73 5.89 9.19 10.8 5.76 2.59 7.26 12.3 11.3 9.3 5.47 10.4 9.25 9.11 11.6 6.55 10.1 9.98 1.39 8.78 8.75 11.6 7.58 3.59 11.8 1.29 10.6 10.4 10.1 6.71 7.72 10.1 9.68 8.79 11.9 10.4 6.13 6.98 9.91 15 1.93 6.1 12.5 12.9 3.78 1.87 9.27 11.6 4.84 -2.2 9.3 8.13 2.71 11.1 2.85 -0.4 12.1 1.51 3.93 8.73 10.5 10.7 10.4 10.7 11.3 12 10.5 1 12.7 -0.26 -0.11 11.4 6.57 10.7 13.4 3.16 8.49 0.07 8.68 9.22 5.43 1.74 -0.67 1.68 6.47 5.55 7.53 1.27 9.75 1.52 -0.8 8.11 4.91 7.48 9.53 3.59 5.69 10.6 3.51 1.54 5.61 2.11 9 14.6 6.88 10.9 10.4 4.68 4.74 5.93 9.79 4.65 6.96 8.95 6.74 8.57 8.44 8.66 6.1 7 2.51 7.12 6.14 5.98 4.3 9.26 5.75 7.59 8.68 10.3 9.24 9.76 4.36 4.28 3.74 3.85 -0.26 5.75 1.8 9.75 7.35 6.62 6.41 9.09 4.09 8.59 4.3 -0.31 3.99 -0.27 7.27 -0.51 5.78 1.36 8.13 -0.23 5.83 -0.38 1.95 9.49 10.6 9.18 6.23 1.91 4.64 4.44 4.37 2.75 9.09 -0.79 -0.25 4.28 10.7 2.13 5.19 7.1 3.63 9.2 4.28 9.98 2.66 6.61 5.19 0.24 3.08 7.92 7.21 1.16 2.1 11.6 9.71 10 4.96 -0.43 8 7.03 0.98 4.46 8.5 2.15 6.55 3.93 6.09 4.02 9.32 6.49 5.86 6.11 -0.53 5.4 8.12 0.08 3.25 -1.06 10.5 1.47 1.72 8.4 10.8 7.66 5.52 5.77 8 5.22 1.61 1.82 3.29 7.98 2.01 0.4 9.4 1.1 9.48 1.26 7.24 1.72 4.5 2.16 7.05 7.33 7.88 6.03 6.27 5.35 5.46 4.87 4.71 6.39 12.3 1.44 6.98 6.41 5.06 6.47 1.77 8.62 6.06 1.09 6.69 10.9 3.65 3.97 6.98 5.18 6.5 5.57 8.4 1.18 0.65 -0.12 7 2.04 4.29 2.04 8.66 7.07 7.47 4.05 4.11 2.93 7.51 1.86 8.9 2.49 -0.43 9.35 2.52 -0.48 2.17 0.94 -0.23 2.66 -0.73 6.09 -0.61 4.51 5.1 5.98 2.81 7.84 5.65 10.4 9.65 1.53 -0.1 1.87 3.79 -0.56 7.15 10.3 6.65 7.57 9.23 -0.34 8.73 5.75 4.24 6.98 5.93 3.46 6.81 8.51 9.21 1.17 1.53 8.5 9.37 9.34 8.03 7.54 1.1 8.42 -0.05 6.08 9.61 9.89 5.81 9.37 4.35 2.28 4.46 0.11 8.56 0.95 7.69 6.75 3.14 4 6.05 9.23 9.61 -0.31 7.61 1.3 9.92 -0.43 1.86 0.01 4.38 8.07 8.19 9.75 3.86 3.28 9.12 1.19 3.92 8.32 7.54 4.27 7.91 -0.64 4.32 2.05 11.3 10.9 2.78 6.26 1.48 4.02 8.92 0.21 4.75 6.89 6.84 4.46 6.63 4.98 -0.1 4.74 3.85 4.38 1.65 8.71 7.89 -0.52 12.4 2.23 9.27 5.85 2.36 3.78 8.67 -0.31 7.95 9.44 9.79 3.79 -0.28 7.69 3.69 1.34 3.81 9.79 9.48 6.91 4.35 6.51 9.52 8.06 8.15 2.01 -0.32 3.87 5.62 8.49 4.45 5.3 7.65 8.79 6.98 3.06 7.4 10.5 12.1 11.2 10.3 6.13 12.3 15 10.5 12.6 8.26 6.96 11.5 9.82 10.4 2.8 4.35 7.95 9.58 8.38 9.46 8.78 10.4 8.71 12.8 9.7 8.49 10.8 2.01 8.45 2.7 12.4 1.21 8.37 6.23 11.4 11.6 11.3 10.3 10.9 11.2 7.57 7.47 7.71 9.84 6.24 10.6 11.4 9.89 5.16 8 9.75 6.96 10.4 10.7 6.06 11 9.01 2.47 2.12 6.66 4.9 10.8 0.91 9.27 1.91 8.16 12.9 7.74 7.83 7.88 9.09 9.21 12.2 6.21 9.24 10.2 10.7 8.73 9.61 9.59 9.49 9.98 9.28 8.19 10.2 10.4 9.18 11.2 9.66 10.9 8.45 6.55 7.01 10.1 9.03 9.82 9.64 9.34 9.77 8.73 10.7 12 10.1 10.2 7.5 9.03 10.5 9.29 10.2 8.74 -0.36 10.1 9.8 8.97 10.1 -0.49 1.42 9.56 2.52 11.1 2.1 4.42 10.3 9.48 3.63 -0.67 9.47 12.9 3.48 9.35 14.4 1.08 11.1 14.1 10.8 10.1 13.7 11.3 12.3 11.5 9.65 5.09 7.67 9.76 9.61 2.81 14.4 7.1 4.19 8.44 9.96 5.51 10.5 9.05 8.64 11.1 11.2 9.27 9.59 8.01 7.66 9.27 11.7 12.8 12.1 9.32 4.41 10.8 11 7.7 8.86 10.4 -1 11 7.41 3.24 10.3 9.96 1.34 9.04 11.1 11.7 11.4 3.68 11.6 1.92 3.87 5.75 7.21 9.15 3.74 12.3 6.79 6.19 8.76 8.21 9.19 8.88 8.61 -0.37 4.23 10.2 11.5 9.93 5.3 9.31 11.4 9.73 9.07 11.4 10.5 10.8 7.1 11.5 -1.43 9.93 9.5 10.8 8.23 7.07 9.08 10.3 1.81 9.36 4.68 8.3 9.41 7.44 8.9 8.72 10.4 10.6 7.05 10.4 11.9 8.83 11 13.2 9.48 8.71 1.79 4.08 7.3 2.43 9.62 7.79 8.73 2.87 4.04 8.25 9.38 11.6 6.56 9.06 1.45 11.1 8.6 11.9 9.08 4.95 11.1 -0.39 10.1 6.03 9.39 8.48 8.11 11.8 8.32 9.37 7.08 9.44 11.2 9.16 8.51 9.34 9.15 2.21 9.15 4.98 9.7 5.39 5.14 8.64 8.72 11.8 8.43 3.49 10.1 -0.26 10.4 11.9 8.65 4.29 7.23 11.1 7.08 6.36 8.15 13.5 10.7 12.8 0.02 3.26 0.07 13.4 5.34 0.05 11 12.7 9.06 14.8 12.5 13.4 11 9.39 7.41 12.4 11.5 9.94 4.1 11.4 -0.62 4.06 4.84 3.59 13.3 6.61 5.66 -0.93 -0.38 -0.65 4.63 8.82 0.81 11 7.05 8.03 9.53 10.4 12.4 11.1 -0.27 13.6 13.5 12.4 8.14 6.7 7.84 12.1 11.1 7.49 11.7 11.2 4.19 2.35 9.02 6.63 6.6 4.13 8.65 9.53 1.37 9.09 9.99 4.21 10.4 5.09 2.66 10.2 7.69 10.4 8.37 9.87 11.8 7.76 9.28 6.53 11.2 9.82 11.4 12.2 8.1 11.5 8.84 10.7 11.1 10.1 11.1 5.04 8.28 14.9 14.7 13.7 10.6 9.43 12.2 6.88 4.39 10.7 10.1 2.32 8.59 6.91 10.8 5.17 12.6 11.6 9.74 8.89 5.02 3.8 13.4 11.3 7.67 11.6 5.78 7.3 3.43 6.87 9.03 6.71 9.49 13.1 11.6 12.6 11.9 12.8 9.98 10.4 10.3 14 6.4 9.99 16.5 10.1 10.2 9.91 9.78 9.78 7.04 7.67 7.71 3.57 9.56 -0.64 8.91 -0.43 9.64 -0.65 8.69 12.9 7.27 14.2 12.9 13.4 12.1 12.2 11.4 10.3 11.4 13.6 1.15 12.7 13 -0.53 8.72 6.94 8.26 4.97 8.14 8.44 6.99 5.3 9.22 5.86 11.1 9.12 5.97 7.87 7.67 9.11 8.76 8.55 8.75 9.22 9.82 8.95 9.92 7.12 7.16 8.13 8.49 7.95 8.84 3.7 10 4.88 6.77 6.76 1.58 9.73 10.1 1.7 3.31 -0.28 9.44 1.12 5.13 9.66 11 10.3 5.32 11.2 4.31 5.04 9.89 11.8 11.6 11.3 11.3 9.24 3.72 8.1 7.04 2.58 11.1 11.9 7.4 5.53 10.4 11.4 11.9 14.3 12.3 5.5 11.5 12.3 14.1 9.97 5.89 4.08 13.4 13.5 14.4 4.92 10.9 14.1 9.18 16.2 14.5 9.62 12.3 11.9 8.83 11.8 6.05 3.49 12.6 11.2 9.25 6.62 1.37 -0.02 5.69 7.39 1.13 1.18 9.36 9.44 5.44 11.6 11 2.6 3.8 1.37 -0.36 1.71 10.2 10.7 1.01 -0.1 -0.58 6.71 9.91 0.07 8.07 2.68 2.26 4.87 4.47 6.04 8.75 7.67 7.7 4.8 6.95 6.33 3.45 3.2 3.15 4.35 5.11 8.71 10.8 2.33 9.4 6.75 3.57 8.31 9.04 8.7 7.43 10.3 8.16 6.76 9.06 3.23 7.21 6.95 -0.88 -0.19 8.82 0.16 -0.25 9.27 6.85 1.02 7.15 5.38 8.44 4.37 4.74 4.13 2.08 6.35 9 7.37 3.41 11.5 9.58 4.24 4.35 10.5 3.4 2.63 1.31 -0.58 3.26 9.58 4.59 -0.54 4.63 4.62 8.94 7.39 6.98 0.73 3.48 4.27 3.11 0.8 8.86 3.39 -0.63 7.86 4.14 9.82 2.14 7.95 7.1 -0.56 1.78 1.35 7.35 6.64 5.63 2.43 -0.27 5.17 1.99 10.4 4.57 4.39 9.33 7.12 6.61 9.88 4.65 1.76 2.54 8.76 5.59 13.1 12.6 10.4 11.2 3.86 10 -0.6 6.08 3.65 9.93 11.2 1.4 6.65 8.66 2.65 6.04 -0.43 5.12 7.15 9.71 9.3 6.86 13.1 2.61 2.92 3.75 1.8 6.55 1.06 10.2 -0.28 10.3 -0.37 6.08 8.85 -0.93 7.44 8.17 -0.39 5.21 4.12 -0.69 1.23 5.43 8.88 7.4 7.24 4.83 -0.25 4.5 8.19 6.44 3.83 6.74 3.39 -0.14 0.7 -0.71 2.53 10.4 5.92 8.29 1.44 6.68 8.27 8.89 2.23 4.88 10.9 2.64 11.7 3.31 5.29 1.72 11 0.55 3.1 4.56 6.87 4.88 1.85 8.13 1.57 5.98 0.73 0.15 5 10.5 -0.74 9.96 3.24 3.02 11.8 12 2.64 -0.48 7 2.37 9.77 8.51 11 6.64 10.9 10.6 5.13 8.27 6 8.82 7.82 2.88 9.2 11 9.79 1.78 10.1 2.47 4.81 2.69 13.3 12.2 -0.44 8.71 11.5 -0.47 7.71 13.2 5.82 0.95 6.61 6.02 2.56 9.93 11.6 5.28 9.02 8.28 2.85 2.39 2.07 3.09 7.09 7.3 9.17 8.14 13.7 9.14 7.72 6.6 7.15 5.38 12 5.47 3.39 7.34 1.27 6.97 8.64 7.96 4.13 1.32 5.21 6.8 1.17 7.13 4.62 -1.06 9.07 5.47 10.9 9.96 0.07 4.9 9.46 6.58 8.83 4.96 4.18 8.64 8.94 6.68 9.89 -0.91 3.42 7.61 7.54 7.38 5.59 3.83 8.99 1.11 -0.43 9.44 2 3.04 2.34 7.09 10.5 4.25 5.73 3.76 2 4.97 4.89 12.6 3.04 9.06 12.1 8.53 10.5 4.87 8.89 8.65 6.5 1.11 7.07 2.24 9.4 10.5 11.6 12.6 1.24 10.6 9.14 9.34 11.6 11.6 9.41 8.76 8.22 7.66 3.85 5.57 6.5 1.04 7.64 8.98 1.56 8.01 8.69 7.39 7.23 9.33 10.3 4.65 1.65 10.1 1.09 13.3 7 9.56 11.6 11.8 8.02 9.97 10.8 4.64 9.72 10.5 5.03 7.91 8.28 10.1 8.46 10 2.18 10.8 8.92 9.87 3.46 11.1 6.69 11.1 8.06 8.67 4.39 0.32 7.61 7.48 6.02 10.9 7.03 12.3 9.07 9.64 3.69 11.6 12.6 11.9 9.55 6.7 9.5 -0.76 8.66 2.05 12.1 3.38 5.36 11.8 11 11.3 8.5 8.66 6.46 9.17 11.4 11.2 8.87 11.4 7.61 7.66 11.9 8.15 11.2 11.4 11.1 13.3 7.12 4.46 11.9 9.1 12.3 -0.38 1.66 7.27 5.36 3.79 2.43 2.25 10.9 6.22 6.48 5.05 7.93 10.4 5.35 2.24 6.89 1.74 0.51 6.34 1.5 5.41 3.84 5.03 7.74 8.66 8.55 -0.5 1.38 6.66 5.41 8.51 -0.01 5.98 4.38 3.98 11.6 3.13 2.02 6.34 5.9 7.58 5.87 1.21 8.08 1.18 2.38 7.75 13.5 4.96 5.71 5.33 10 4.96 7.1 7.11 3.46 4.81 1.98 5.98 8.55 7.17 6.48 -0.57 1.84 1.91 6.25 6.13 7.51 5.77 6.82 5.76 8.52 7.08 6.63 1.6 3.06 -0.36 5.15 4.51 -0.19 7.6 9.7 6.79 0.73 8.9 5.05 8.45 0.67 5.39 11.3 2.57 -0.5 5.81 3.69 10.7 5.32 -0.53 7.69 -0.54 1.74 5.28 9.01 4.46 -0.53 6.93 12.7 2.91 2.08 5.37 -0.22 8.53 8.09 5.69 9.21 4.59 12.4 6.24 0.39 2.98 9.82 7.05 3.88 2.25 5.72 8.78 5.36 -0.44 5.85 8.78 8.11 7.11 3.01 8.12 -0.4 7.8 9.15 8.65 3.01 11.7 9.68 4.49 9.57 -0.33 2.89 -0.48 12.5 -0.71 -0.45 3.06 6.48 1.74 11.3 5.95 2.02 1.76 2.25 5.14 1.6 9.65 10.5 10.8 10.9 10.8 12.4 11.7 9.86 8.22 11.5 4.05 11.4 11.3 10.5 -0.68 -0.64 16.8 8.11 0.73 8.53 6.66 2.64 13 6.71 4.4 8.53 -0.39 8.9 6.26 3.67 6.82 1.85 9.3 4.95 -0.69 4.75 8.86 2.86 9.02 16.1 8.09 11.3 1.7 -0.2 2.87 2.06 3.89 7.62 0.27 0 -0.25 1.89 5.07 1.66 7.67 -0.44 5.28 6.34 5.3 5.05 12.2 0.54 1.49 10 1.63 5.69 9.18 4.58 0 10.3 1.64 6.38 4.79 6.46 9.34 3.6 3.72 9.04 2.74 7.15 3.47 3.11 3.13 5.05 7.46 6.84 5.02 6.58 7.93 6.91 1 13.6 2.91 5.73 8.2 7.39 7.8 6.61 5.62 5.82 6.71 1.35 4.78 7.85 12.4 -0.43 9.51 8.04 7.56 2.73 7.76 7.49 2.37 5.6 5.08 9.85 10.1 0.74 9.1 1.46 3.31 7.68 7.75 9.67 9.38 6.64 0.58 10.1 12.7 7.33 2.06 2.6 3.62 4.26 4.51 5.47 4.55 9.9 0.04 5.24 6.22 5.12 2.47 7.69 8.54 5.13 3.99 11.2 4.87 7.61 11.5 3.12 2.54 2.87 3.41 8.59 6.2 1.94 6.85 2.89 8.8 3.24 3.78 1.88 3.32 5.84 3.05 6.22 4.3 9.46 9.54 7.28 7.78 -0.27 3.49 7.23 3.04 2.26 -0.56 6.5 -0.46 6.05 10.7 9.31 7.06 7.98 10.4 8.83 8.38 11.7 1.57 12.7 1.15 10.4 2.77 9.49 11.7 11.3 12.9 6.03 -0.69 11 11 13.1 -0.3 -0.04 4 12.2 6.06 12.9 2.61 4.25 8.18 11.3 5.19 6.55 13.9 11.6 7.67 1.51 14.3 10.4 13.7 10.8 4.33 -0.93 5.23 10.7 12 11.4 6.51 12.2 14.7 12.7 12.7 9.61 10.9 10.1 1.64 9.01 6.52 9.62 -0.45 9.01 7.54 12 10.8 10.2 7.82 10.5 5.62 -0.86 6.95 9.38 11.2 -0.46 5.07 8.25 8.12 9.38 8.27 11.2 4.42 6.92 0.86 9.47 1.22 4.57 7.12 5.47 11.5 4.98 7.77 7.58 10.2 -0.06 8.1 5.67 8.85 11.2 12.4 7 9.23 6.77 11.3 4.26 1.11 4.19 8.48 6 10.5 7.52 8.63 1.74 6.89 7.75 1.28 5.71 5.35 2.11 7.93 3.61 -0.43 4.37 6.06 5.52 8.55 3.23 1.14 7.87 2.91 11 6.51 1.04 3.49 11.3 4.12 6.64 4.5 2.48 8.63 7.1 3.97 6.2 -0.47 6.32 1.6 5.77 1.01 1.61 6.4 10.8 -0.2 7.09 6.34 5.05 3.38 6.59 2.95 6.06 4.7 5.96 7.46 4.92 8.15 4.4 1.19 10.3 2.66 4.92 7.43 5.13 10.2 9.4 -0.61 8.4 6.79 11.3 6.6 9.07 8.29 0.92 -0.72 -0.03 -0.83 4.47 8.08 3.1 8.22 9.36 3.61 0.53 3.93 7.82 10.4 7.94 0.53 6.55 5.01 9.92 0.69 1.71 7.58 2.2 4.39 7.85 4.9 8.28 1.42 7.18 10.6 12 2.22 9.03 9.08 9.24 2.74 7.6 11.2 2.98 6.62 2.22 3.32 10.6 7.03 6.01 8.68 8.26 8.96 9.27 9.66 11.5 3.73 9.71 7.25 10.2 9.6 8.6 9.27 12.6 -1.14 6.97 -0.72 2.22 9.79 7.79 12.1 13.1 5.05 4.56 7.71 5.56 11 4.99 15 11.8 13 14.6 11.9 12.1 11 -0.32 6.5 4.71 6.02 8.37 10.5 12.1 10.1 9.5 8.77 10.2 10.4 9.43 10.2 10.6 7.78 7.8 4.11 7.01 10.3 -0.14 8.18 11 9.01 9.27 3.14 4.27 9.27 9.72 10.2 9.88 8.24 10.6 8.82 8.81 6.67 7.62 9.03 9.62 11.9 5.06 5.16 6.78 10.8 10.1 4.32 2.22 12 6.47 -0.02 6.36 6.96 -0.66 6.79 5.26 2.84 11.3 6.5 1.51 10.8 8.8 4.45 10 7.85 9.7 11.6 12.5 12.8 7.1 9.35 11.7 9.59 8.15 9.99 5.98 6.67 -0.22 12.2 11.4 11.8 11.8 12.1 10.9 12.5 11.9 4.75 10 9.52 1.11 11.8 13.4 13.6 11.2 8.99 12 9.52 11.4 9.4 9.2 4.55 7.23 10.1 7.92 -0.23 8.07 8.74 7.9 8.81 7.46 8.5 8.32 10.8 10.1 5.67 1.21 11.4 11.7 9.14 9.67 9.57 9.36 9.04 10.2 8.07 6.58 11.7 9.69 6.51 6.02 10.2 9.81 9.24 10.5 12.6 10.7 11.1 6.6 12 11.9 8.45 8.85 13 8.41 -0.15 8.6 7.47 7.95 11.8 10.8 9.81 5 5.55 7.09 10.8 9.69 10.5 9.87 9.06 7.74 8.35 10.3 11.1 7.42 4.21 3.89 11.2 12 -0.22 2.95 7.43 8.1 11.7 12.2 6.56 11.5 1.51 5.47 7.83 6.22 4.44 4.11 8.56 4.87 8.76 -0.33 7.04 10.1 0.75 10.6 8.4 11.1 10.1 9.27 2.53 -0.32 7.18 7.01 5.31 11.1 10.2 3.68 6.45 8.41 10.6 -0.62 0.7 10.8 10.7 1.59 7.01 5.16 12.2 9.79 3.78 1.24 3.62 2.53 7.42 -0.22 8.6 1.41 1.69 2.69 9.24 9.15 2.74 7.09 10 4.76 7.46 3.57 3.93 5.72 5.01 11.4 7.09 1.45 6.16 -0.44 8.16 7.67 5.95 8.55 -0.02 -0.17 9.91 10.6 6.35 8.85 4.39 -1.15 3.44 2.22 6.71 7.53 3.32 -0.31 7.2 7.75 6.96 4.69 12.3 -0.27 6.99 6.84 5.29 6.73 5.85 5.24 8.89 7.17 3.36 7.61 8.65 6.34 3.1 7.05 6.63 1.94 6.51 5.96 -0.6 2.22 4.24 -0.3 3.45 3.15 3.04 2.82 10.7 2.87 6.71 6.25 1.99 6.75 3.28 4.18 8.08 12.1 -0.2 1.81 1.64 -0.78 0.86 1.71 7.98 2.38 0.66 7.23 6.32 3.38 1.87 10.5 3.05 9.84 9.24 -0.4 8.11 13.5 11.6 9.35 1.79 8.02 6.43 3.23 9.26 11.1 7.59 8.86 6.27 9.92 6.82 5.14 7.11 5.98 1.18 8.66 9.39 9.79 4.8 8.12 9.99 10.9 9.21 10.5 7.13 6.79 5.95 8.46 9.33 10.3 13.2 6.18 3.86 8.9 9.24 7.75 9.72 9.63 11.2 10.5 8.65 9.5 6.82 12.4 1.01 -0.7 -0.34 10.7 8.11 3.38 10.2 9.35 0.92 3.35 14 10.4 8.57 9.45 1.9 6.35 13.4 9.11 8.99 12.5 10 10.8 6.66 10.1 11.3 8.06 9.41 5.61 10.1 11.5 10.1 8.5 8.52 1.89 10.1 9.68 14 10.4 10.2 10.2 11.8 5.13 13 2.81 2.87 11.4 12.6 11.6 13.2 11.7 12 8.88 11 4.9 -0.33 9.98 6.29 6.07 8.52 14.1 7.21 10.3 11.1 10.1 12.3 11.2 11.4 10.7 10.3 10.2 6.43 11.4 11.3 10.1 9.95 11.4 9.67 12 12.1 11.7 10 11.3 11.3 12.6 10.7 10.2 11 10.9 9.03 11 11.2 11.7 9.48 11.5 11.1 11.5 11.2 10.9 9.81 9.92 8.24 13.2 13.2 10.4 8.84 9.29 6.04 8.1 5.69 6.43 -0.23 1.95 8.16 8.13 10 7.22 9.3 7.55 6.51 10.3 12.1 13.8 9.12 0.65 9.79 7.67 3.92 9.09 8.43 9.13 2.97 12.1 8.88 11.1 9.35 8.5 9.11 9.22 9.65 10.7 10.2 9.6 10.4 9.67 9.79 8.42 9.35 9.84 -0.78 9.42 9.12 10.1 3.82 1.53 11.3 12.7 8.3 10.4 10.1 4.33 9.05 7.34 5.63 9.34 5.42 3.44 7.42 11.3 11.8 12.9 9.54 11.8 10.7 11.1 10.2 0.86 10.9 12.7 8.62 8.31 10.1 10.2 9.47 9.19 10.1 11.5 7.72 8.62 1.38 10.7 4.75 8.71 8.09 9.66 6.38 14.1 1.51 1.57 13.1 4.59 6.68 -0.57 6.74 7.3 13 10.4 10.8 10.2 11.2 7.99 3.65 9.96 6.95 4.98 3.75 13.4 9.74 9.8 -0.4 9.23 0.88 3.29 3.38 1.97 3.63 -0.47 6.9 4.75 0.07 7.22 7.12 12.7 9.85 12.2 9.95 11.3 7.42 10.1 8.46 3.65 9.24 8.53 11.5 4.86 -0.93 9.91 5.85 6.89 8.66 11.3 6.07 12.6 8.54 1.67 7.35 11.3 7.97 -0.39 3.14 3.06 1.04 13.8 10.8 9.03 11.9 9.76 2.53 11.8 8.42 1.47 2.34 1.81 1.7 6.56 -1.05 2.85 11.1 10.1 13.3 10.7 7.12 8.37 7.06 9.18 2.33 5.54 7.56 9.66 11.8 9.36 9.49 7.34 7.57 4 10.3 4.85 10.7 4.93 6.44 0.2 9.53 11.7 6.09 6.74 2.79 10 8.07 2.73 3.42 6.54 7.6 6.73 10.2 14.4 3.62 7.08 13.2 0.91 -0.37 4.46 12.6 8.98 11.6 9.1 10.8 9.18 9.28 8.21 11.2 7.53 10.8 8.82 7.42 9.65 8.63 7.59 13.7 7.98 -0.57 11.4 13.9 1.21 5.24 9.83 8.61 11.8 4.5 9.62 9.62 7 8.32 9.11 4.99 9.27 5.74 12 4.2 2.85 10.3 10.4 8.97 4.74 4.3 -0.53 8.11 9.94 9.95 11.3 9.42 10.9 8.69 8.32 2.15 3.17 1.83 12.3 3.91 9.84 11.2 8.17 4.05 2.04 10.2 8.77 9.43 8.83 11.1 12.4 9.13 7.91 11.8 13.3 6.86 -0.56 13.2 2.55 6.37 1.92 7.34 11.3 11.3 11.2 10.8 10.7 8.22 9.31 9.13 7.21 7.96 8.32 11.3 8.94 9.66 7.72 9 9.02 11.6 9.42 11.4 10.2 8.71 8.44 8.4 9.94 11.5 7.39 8.61 10.8 8.78 10.4 2.89 9.66 10.3 9.84 10.7 11.1 9.32 10.1 5.92 9.42 6.75 10.5 5.53 7.18 10.8 10.7 10.4 6.51 7.33 10.4 2.65 9.46 10.6 10.7 9.98 10.2 9.89 10.9 8.03 11.1 7.58 9.83 10.8 11.8 11.8 10.4 10.5 6.78 8.19 8.27 -0.4 8.9 9.38 8.96 8.26 9.46 8.73 11 8.6 9.39 10.1 9 8.67 10.1 10.2 7.02 8.84 8.25 8.14 9.48 7.23 11.7 10.6 11.1 12.4 10.3 9.17 9.22 10.9 10.2 10.4 9.43 9.73 11.3 9.48 9.81 11.1 10.2 10.8 11.6 3.39 10.3 9.08 7.32 8.38 9.91 9.23 8.36 8.53 8.69 9 9.09 13.4 9.42 11 7.74 9.32 6.23 11.6 2.62 10.8 11.9 7.26 8.91 11.2 6.22 10.2 8.76 10.5 6.97 7.91 2.79 11.3 8.48 9.42 8.07 7.3 7.57 8.67 10.6 10.1 9.17 9.6 8.5 9.57 11.9 8.67 11.2 7.26 7.81 9.59 9.02 9.46 8.62 8.15 9.69 10.7 11.3 9.28 8.06 1.98 13.8 2.5 10.2 10.2 9.14 6.86 5.04 8.67 10.5 9.71 8.91 9.27 2.26 10.8 10.6 6.17 8.94 10.2 8.25 13.1 10 10.2 9.76 6.15 7.68 11.4 3.88 11.3 10.3 7.87 8.93 11.6 7.94 8.9 10.8 10.2 3.54 4.43 -0.35 11.7 10.3 10.7 10.7 8 6.64 5.99 8.68 9.12 8.49 12.1 6.14 9.59 10.9 4.1 3.45 10.5 7.62 9.99 9.28 9.63 10.9 7.37 10.9 7.81 5.02 11.5 9.06 10.8 2.07 10.9 10.7 -0.36 8.02 10.5 7.13 4.77 8.16 0.4 9.26 10.5 -0.55 7.43 9.66 8.89 10.3 8.44 8.69 9.42 10.8 11.5 5.73 11.8 5.74 10.6 4.24 4.78 3.53 12.2 10.9 6.06 6.57 10.1 10.2 9.9 10 9.08 2.9 8.58 2.04 4.95 8.24 10.1 8.64 6.92 5.02 7.71 10.6 9.63 11 2.38 11.5 10.4 9.72 11.8 8.61 8.51 8.57 4.44 7.33 10.4 2.44 7.84 12.2 10.1 9.64 6.86 9.2 6.74 8.83 11 9.36 12.7 7.87 10.9 9.97 7.9 9.25 6.39 6.47 9.03 9.71 8.38 8.77 10.9 10.4 6.58 9.13 11.8 10.6 8.72 9.52 8.64 4.13 10.7 9.01 9.97 10.7 3.5 8.76 9.73 8.45 7.9 3.37 10.3 8.93 8.3 -0.43 12.2 11.3 7.89 9.63 1.36 9.72 9.77 10.3 12.3 8.84 11.4 9.55 11.9 9.2 9.25 9.56 11.4 11 11.7 9.35 10.3 9.78 8.59 9 9.39 8.44 11.6 10.7 10.4 9.42 9.96 9.13 9.19 10.6 1.33 9.93 7.08 4.82 10.2 9.8 10.3 9.24 10.7 9.25 9.9 8.34 8.88 9.33 9.06 9.04 11 6.88 5.97 7.58 8.14 8.64 3.97 8 10.3 8.93 10.1 10.8 8.99 10.5 11 9.15 9.66 4.13 12 9.17 11.6 8.41 10.6 9.11 11.4 9.42 11.3 12.7 11.2 10.8 7.33 11.4 9.12 12.7 9.78 10.3 11.1 8.92 12.8 8.73 6.17 8.76 10.3 9.69 10.8 8.38 12.6 8.54 11.2 8.86 8.87 10.3 11.2 10.7 8.91 9.1 10.4 10.4 10.5 10.1 9.41 7.63 10.3 9.56 11.3 9.48 8.34 8.43 9.58 10.1 8.63 6.53 10.5 8.49 11.3 8.74 12 7.56 10.9 4.68 7 7.93 7.81 5.17 3.57 9.8 9.63 10.5 9.22 8.36 10.8 13.6 9.38 7.14 8.61 4.6 10.1 9.06 6.35 8.6 7.37 11.1 8.79 7.67 10.5 2.42 8.87 11.8 12.6 8.87 11.4 2.7 10.6 7.34 1.62 5.64 6.62 8.71 1.6 10.6 9.38 9.72 1.87 11.1 7.61 10.1 10.7 9.44 7.57 -0.14 8.61 9.11 1.37 8.84 11.1 8.53 10.6 6.19 11.2 12.4 7.83 8.04 5.89 8.81 10.6 7.92 9.96 8.23 9.03 9.26 9.15 7.41 8.97 7.18 10.7 9.13 1.67 -1.47 9.75 4.42 11.8 11.1 10.2 9.71 12 11.7 1.72 8.91 9.58 11 8.53 11.4 -0.96 10.4 11.3 14.2 12.1 7.32 10.7 12.3 5.42 4.96 12.5 6.99 9.08 11.4 12.5 9.6 8.65 7.96 6.86 7.12 2.92 12.1 2.97 13.6 -0.62 9.65 9.81 8.52 7.85 9.79 11.7 -0.57 9.27 9.84 14.6 8.3 12 11.6 7.51 6.98 7.71 9.65 7.93 8.96 10.9 8.09 8.63 11.9 9.73 9.64 7.85 11.8 8.28 10.4 11.1 7.5 4.19 10.1 11.1 10.5 9.84 10.6 9.28 -0.48 8.22 9.07 10.3 8.71 8.94 8.16 2.76 15 8.51 10.4 2.57 8.21 4.35 5.23 10.5 9.08 8.38 9.81 11.6 5.85 10.5 7.78 7.32 7.33 10.1 5.2 7.52 2.63 9.55 7.63 6.09 3.95 7.94 9.46 6.18 7.45 7.18 8.87 9.16 10.5 9.42 12.9 2.22 5.32 8.97 7.05 5.37 5.17 2.8 10.3 11.1 10.1 2.14 12.2 11 -0.47 11.6 9.51 11.5 11.6 11.7 11.9 9.99 11.2 3.35 8.53 7.47 11.5 5.38 10.7 4.46 8.1 2.14 1.27 11.7 11 8.6 10.2 8.1 8.39 8.74 9.08 6.37 3.87 5.55 2.35 6.46 10.8 3.21 6.26 4.34 4 8.38 4.05 9.96 6.7 10.6 5.14 12 5.4 8.48 9.08 9.01 9.11 8.6 10.5 9.16 8.78 9.6 8.38 10.8 10.4 7.51 8.98 10.8 2.65 3.09 7.31 7.51 8.99 1.01 9.02 2 2.16 7.74 9.67 10.4 7.55 4.27 10.8 11 10.2 -0.69 9.71 9.2 6.1 2.73 8.75 1.89 8.68 7.45 7.5 7.92 9.32 11.3 9.94 13.3 11.2 6.89 7.32 2.53 8.53 9.33 9.82 12 10.1 7.92 5.98 10 9.51 12 10.5 10.6 1.98 4.04 10.4 7.21 9.4 12.1 7.83 6.78 9.99 9.62 1.99 5.63 11.5 9.56 9.6 11.2 10.6 11.6 10.8 3.1 8.6 10.1 4.95 3.18 11.2 9.48 8.76 9.53 3.29 8.49 4.71 3.33 10 7.3 6.19 10.5 11.2 11.6 8.95 8.2 8.59 2.93 1.05 12.4 10.1 11.1 9.18 10.1 9.12 8.24 0.02 10.5 9.08 10.3 12.4 7.22 9.77 10.5 9.02 10.6 9.44 8.67 11.1 7.98 9.92 9.47 9.08 7.42 9.45 9.18 8.98 9.62 7.75 8.71 5.53 11.6 8.73 8.96 9.63 6.57 2.7 10.1 4.18 7.46 10.1 7.96 9.6 6.18 3.18 8.83 7.49 6.67 9.96 1.16 8.69 8.41 9.51 9.08 8.9 8.59 8.13 11.2 9.05 10.9 7.33 11.1 9.12 6.24 8.89 7 10.4 8.19 8.29 5.84 9.19 8.71 2.08 8.03 9.97 6.57 8.34 9.39 3.43 9.32 2.74 10.2 11.9 9.28 8.13 1.23 9.54 10.3 7.66 10.1 11.1 3.49 -0.18 6.8 6.42 12 9.22 3.39 9.49 9.68 10.9 8.11 9.6 2.73 11.1 10.5 7.74 9.7 8.62 9.93 11.8 9.78 12.2 10.3 8.62 8.29 10.1 8.85 2.85 3.5 9.59 2.54 12.7 9.64 4.49 8.53 9.66 8.02 5.17 8.54 -0.29 11.4 3.11 5.55 1.85 7.55 5.73 9.47 13.7 4.82 8.39 8.8 9.1 5.09 9.82 8.88 13.4 9.38 9.3 7.94 10.2 14.2 8.14 10.2 10.2 5.08 8.83 1.56 7.87 10.6 9.79 8.63 8.67 8.33 8.49 7.6 8.63 8.8 10.5 8.79 8.42 10.4 7.19 8.35 11.1 8.83 8.81 8.78 7.96 9.52 6.55 9.38 6.62 -0.27 8.08 8.9 5.62 1.19 9.31 8.19 9.28 9.76 6.69 8.92 8.67 10.4 9.28 12.3 8.34 9.54 8.25 7.44 6.61 10.1 8.98 7.78 8.81 3.31 10.3 8.84 8.97 10.7 7.2 10.2 7.35 9.11 6.98 11.9 8.95 8.74 9.75 9.27 6.73 10.5 7.19 9.44 7.79 7.93 7.9 9.01 8.9 10.5 7.65 10.4 7.34 9.43 10.9 11.1 9.51 10.2 9.11 8.82 9.62 8.32 6.96 6.85 6.18 3.79 8.69 9.23 8.05 10.1 7.24 9.47 9.05 9.9 10.7 9.7 10.7 8.52 11.5 10.8 7.82 10.3 6.72 7.33 7.88 11 11 11.5 10.3 10.2 9.42 9.62 7.74 6.91 9.01 8.9 10.3 0.85 9.6 11.6 9.25 11.7 6.87 8.99 4.51 8.9 8.59 10.1 9.53 10.1 8.53 8.06 9.36 5.74 8.24 8.57 8.4 6.1 12.5 8.52 9.76 7.21 9.2 7.81 9.94 -0.53 9.72 8.61 5.86 8.1 10.1 10.9 8.63 11.3 9.77 11.1 6.6 7.26 7.05 7.41 11.5 8.34 10.1 5.8 9.21 -0.61 9.53 12.3 8.26 8.1 10.9 7.69 7.42 10.5 11.7 8.35 12.5 12.7 11.6 5.87 9.49 9.05 11 8.44 8.47 8.9 8.01 10.7 12.5 9.04 10.6 7.29 7.71 8.25 9.26 8.25 3.56 9.86 4.78 7.07 10.7 6.54 9.7 5.84 3.98 8.41 8.71 9.32 10.4 9.76 6.99 7.24 9.3 5.85 10.7 9.03 8.54 9.75 10.2 11.2 9.5 7.97 7.8 11 9.56 9.8 6.66 8.77 2 8.44 5.12 5.05 6.85 7.67 5.02 6.99 5.17 11.9 6.07 6.8 7.77 9.79 6.81 8.85 9.98 6.33 9.54 9.86 9.1 7.92 5.07 5.32 8.32 8.16 8.55 8.67 9.59 7.6 8.26 10.5 3.63 10.7 8.58 9.93 8.19 9.15 7.77 3.44 10.6 9.6 9.89 9.25 10.6 7.8 8.04 9.9 9.2 9.98 8.55 8.88 4.71 8.22 9.96 7.88 9.24 3.12 9.93 8.63 8.16 9.08 4.51 7 8.97 10.8 10.2 9.44 10.2 9.53 7.85 10.3 9.83 9.85 9.23 12.1 4.86 8.69 8.9 9.91 8.72 10.3 10.2 9.92 11.3 10.1 11.2 10.1 8.44 10.2 6.87 9.26 11.1 9.02 8.86 8.28 11.5 10.8 1.95 6.83 10.2 8.68 8.35 12.5 7.54 8.31 10.2 8.94 5.81 9.86 9.52 7.67 9.61 3.64 9.21 8.34 9.98 6.9 0.56 9.59 9.75 10.1 8.11 1.61 10.5 11 9.84 6.22 9.55 9.76 7.81 10.9 7.43 10.7 2.25 10.3 7.9 7.73 7.09 10.6 9.45 8.65 9.44 9.01 9.83 5.38 8.98 7.58 6.69 9.35 10.7 10.4 3.87 8.43 6.92 9.66 3.45 9.91 10.3 9.54 8.66 9.61 12.1 10 4.74 5.52 10.1 10.9 7.12 8.34 10 10.5 9.33 9.86 8.1 9.4 9.01 9.1 11.6 10.1 8.88 2.49 8.47 7.29 9.42 9.67 3.52 7.86 9.75 10.7 10.1 10.3 2.92 9.92 9.63 8.87 5.69 9 8.25 11.1 8.97 9.41 2.71 7.89 9.84 6.73 8.96 2.37 8.84 11.4 2.08 9.03 8.77 11.4 10.6 7.5 8.17 6.93 5.6 8.39 8.15 10.6 -0.14 9.6 9.35 0.83 7.92 7.63 9.85 11.4 9.57 10.8 10.6 9.31 9.16 6.97 6.87 9.01 9.08 8.52 8.92 7.51 6.99 9.82 7.32 10.9 8.7 11 9.35 2.7 8.06 8.1 8.31 8.31 10 9.62 10.3 3.22 4.08 9.13 10.7 10.8 6.85 10.5 9.71 10.1 11.9 6.1 6.04 10.1 9.04 4.59 3.74 9.89 12.6 10.5 5.27 8.56 8.28 10.5 9.3 11.1 8.83 7.69 10.1 8.25 10.2 5.7 8.73 12.1 11.6 3.65 8.51 4.23 9.29 8.62 7.94 4.53 0.7 3.62 7.81 3.9 7.65 9.14 8.63 0.92 7.62 11.6 7.77 10.5 8.53 10.4 8.27 2.98 10.2 6.3 10.2 11 8.54 11.6 0.96 7.68 11.4 9.08 1.25 7.11 6.54 7.12 0.84 10.3 -0.34 8.97 5.49 6.37 8.81 10 8.05 1.18 2.34 8.14 10.9 5.43 8.7 10.8 2.32 2.74 7.35 4.73 9.78 9.01 8.87 8.6 7.55 4.14 9.53 8.64 11 9.48 11.7 -0.68 9.56 9.37 8.78 5.58 10.6 10.1 5.95 10.5 6.36 9.08 9.65 6.04 2.71 8.95 8.66 8.11 9.88 9.78 8.96 9.51 6.87 9.27 11.4 10.4 3.76 9.35 10.3 7.84 8.17 5.52 11.6 11.3 9.73 9.1 9.77 10.5 10.4 9.78 11.7 7.32 11.4 7.86 10.1 7.83 8.2 9.44 6.98 8.77 10.3 9.68 10.1 5.5 11.3 8.94 9.56 8.54 8.51 8.63 11.4 11.4 9.05 11.2 9.29 10.8 9.08 9.32 6.06 10.7 11.3 10.5 9.95 7.23 8 10.5 11 9.46 6.38 10 10.2 9.59 10.3 7.94 8.62 10.6 7.33 7.44 10.2 10.2 11.5 8.76 8.73 10.2 2.05 11 6.36 8.81 4.44 10.1 10.4 10.2 5.19 11.1 8.43 10.4 8.82 8.79 8.38 8.72 10.7 9.15 10.2 7.49 10.5 8.2 1.6 3.11 10.2 8.61 8.98 9.44 8.82 10.2 6.29 6.72 10.4 10.7 8.79 6.25 9.27 11.2 10 7.69 6.63 9.44 10 11 11.1 9.62 11 10.4 9.54 8.94 10.2 9.47 9.4 11.2 10.4 8.78 9.96 8.93 10.9 7.62 11.4 9.52 9.56 8.32 7.99 9.88 6.8 8.95 9.92 6.18 8.79 8.66 10.6 11.2 8.72 8.21 5.34 9.07 6.77 9.77 8.42 9.44 6.63 7.27 7.04 9.06 7.63 9.13 8.65 9.1 9.77 6.79 8.01 9.7 9.14 5.13 7.36 9.25 8.92 8.29 9.35 4.57 9.03 3.07 8.42 10.9 2.65 8.75 6.96 4.7 6.87 7.89 9.36 6.82 8.89 1.86 7 9.57 9.5 3.94 10.1 10.3 8.05 9.52 7.62 8.94 9.95 10.5 8.03 9.59 10.4 11.2 10.4 7.15 9.01 9.77 10.7 7.35 8.76 4.84 9.21 11.4 8.8 8.96 8.03 11.5 8.56 10.8 9.22 2.11 11.3 6.6 10.4 7.83 9.9 7.84 10 9.25 11.2 9.51 9.92 3.93 8.01 6.81 9.21 9.65 10.2 9.05 6.38 11.3 2.43 3.61 -0.44 13.2 10.1 8.91 10.7 2.56 11.1 8.86 7.59 5.13 10.9 10.7 11.8 7.03 10 9.72 12.4 6.92 11.1 9.51 8.72 8.58 4.13 12.7 7.98 4.92 8.68 5.05 10.2 4.54 11.8 11.1 9.26 6.71 9.56 11.2 6.02 -0.51 10.7 11.4 12.4 11.1 10.9 12 7.13 10.6 10.6 9.12 8.01 6.12 0.8 9.26 -0.73 11 9.3 10 3.04 12 8.2 10.3 11.5 10.1 11.1 10.2 4.01 7.37 8.19 7.93 9.67 2.19 -0.16 4.7 9.92 6.28 7.47 2.91 4.58 6.26 3.68 7.27 5.22 5.88 5.41 10.4 5.05 5.33 2.81 3.69 4.97 9.9 0.98 5.78 7.5 7.88 6.37 6.17 7.23 6.86 7.44 5.12 9.72 6.86 6.53 6.94 8.14 0.64 3.82 8.93 4.6 -0.33 2.38 4.46 10.1 7.29 7.72 8.99 -0.05 8.67 11.4 0.22 8.57 9.29 7.42 10.5 0.65 9.82 9.54 2.83 9.64 9.87 4.23 10.7 10.6 5.26 9.55 10.1 8.62 6.75 10.1 12.2 7.43 9.49 4.09 2.68 8.98 8.79 10.4 10.2 9.28 8.91 7.08 7.67 10.7 4.71 8.21 9.23 10.2 6.03 8.76 -0.47 2.44 12.3 8.62 10.5 4.3 -0.59 14.6 9.09 7.09 4.76 10.7 7.16 7.29 10.8 8.35 10.6 8.07 12.3 9.97 8.69 10.3 10.2 8.14 1.28 1.37 9.54 5.96 8.56 1 10.4 6.12 10.6 10 15.2 9.04 0.87 11.1 9.05 11.6 9.41 11.9 7.14 9.29 11.5 8.58 12.2 9.58 10.9 8.41 3.27 11.3 11 12.3 10.5 11.3 10.9 12.6 11.8 7.69 12.2 10.1 11.2 6.33 10.4 8.48 3.74 11.8 9.8 7.51 10.1 9.97 10.8 7.33 8.64 12 11.8 5.18 7.64 9.7 9.58 8.82 6.49 7.17 12.3 6.92 9.71 8.7 6.55 12.3 10.4 9.93 9.12 11.8 8.86 8.61 10.6 7.42 11.8 8.72 10.4 9.64 9.96 7.96 9.81 7.58 10.8 9.39 10.3 11.3 8.79 10.9 8.19 6.31 10.9 8.92 11.9 7.29 6.35 3.14 5.44 7.26 10.6 5.05 7.22 5.03 4.97 10.4 7.5 2.41 8.57 9.95 6.14 8.81 9.98 11.1 11.2 9.01 11.2 11.1 8.98 10.8 10.3 8.44 7.65 3.94 9.28 8.93 8.15 11.3 8.24 11.4 1.32 10.3 9.91 10.1 11.5 9.4 8.66 7.54 8.06 9.16 9.04 11.7 8.45 9.46 11.7 9.02 2.17 10.3 10.6 1.18 10.9 11.4 12.8 7.38 10.3 8.18 8.96 11.6 2.34 11.8 2.18 9.54 2.16 6.31 8.23 9.94 11.4 1.81 8.36 8.67 10 0.28 8.99 9.06 9.22 9.67 11.7 6.68 8.45 5.39 9.68 5.03 10 9.33 7.28 7.47 8.88 11.2 10.9 11 10.7 6.05 12.2 8.55 11.4 11.9 11.9 7.5 9.93 7.65 10.8 8.5 10.2 7.22 12.7 10.8 5.47 8.98 2.78 9.7 8.38 8.88 4.19 6.96 7.93 10.6 10.5 9.24 11.5 10.5 9.98 11.5 10.1 8.45 9.15 7.82 9.65 9.01 8.54 9.64 1.78 10.4 11.5 11.3 2.51 9.11 5.2 8.06 9.72 11.8 7.74 7.07 12.1 9.62 9.21 7.97 8.48 7.42 9.53 8.16 9.87 8.28 12.3 11.2 9.84 9.61 10.3 10.8 9.96 5.41 3.99 13.1 7.78 8.68 4.62 2.4 9.44 10.4 9.1 2.72 7.28 9.76 10.5 4.15 8.07 9.43 7.97 6.05 7.75 3.2 4.48 6.55 4.62 0.69 10.5 9.52 6.27 4.66 3.25 7.4 9.36 0.1 1.39 10.6 9.22 0.78 8.92 7.91 9.97 8.5 10.8 7.88 12 7.25 9.73 5.85 5.9 7.81 7.09 10.8 9.06 10.3 8.87 3.24 1.84 3.83 1.62 9.96 8.91 9.3 8.68 0.08 10.1 10.2 9.6 5.14 5.89 7.61 9.76 3.32 2.82 11.2 10 1.59 10.6 8.68 6.56 7.85 3.22 5.71 7.94 9.77 9.42 7.5 2.59 9.47 11.6 8.3 1.48 10.1 8.26 7 2.3 8.76 4.89 9.89 3.66 5 4.55 10.7 10.5 11.3 7.15 8.2 12.3 11.6 8.61 9.62 7.07 10.8 4.95 9.52 9.12 9.8 1.13 4.01 4.19 0.98 7.79 11.2 6.92 10.7 9.87 9.58 12 5.86 3.49 6.21 7.87 11.3 4.79 8.68 9.7 7.5 7.99 6.58 6.97 9.21 6.63 11.1 9.94 -0.18 8.78 7.21 6.53 4.5 12.1 8.77 11.6 7.47 8.57 6.51 7.76 8.02 0 15.3 8.55 4.17 10.3 5.62 5.83 4.99 6.13 4.89 9.96 8.33 3.98 10.4 10.2 8.04 9.19 7.64 10.3 9.93 9.24 6.68 7.37 4.06 1.19 8.28 8.89 8.72 8.33 9.26 4.51 7.81 9.44 7.27 10.5 8.67 7.92 9.52 5.64 7.14 9.86 10.8 8.74 8.92 6.73 8.5 0.07 13.3 9.27 1.2 10.3 8.25 5.04 6.83 2.65 9.85 8.68 10.2 12.1 9.37 9.5 4.17 6.17 10.6 7.11 8.56 9.69 9.96 9.98 9.6 8.92 9.54 8.57 8.48 7.92 12.6 7.08 7.92 9.04 10 10.1 7.12 5.52 6.76 2.37 8.28 3.62 7.68 7.58 5.23 9.42 9.82 9.73 6.61 10.4 4.95 -0.49 10 7.97 8.36 9.25 9.77 5.02 9.65 8.61 9.63 9.62 3.05 7.57 2.3 10 7.06 8.31 3.18 6.66 10.6 7.92 5.75 8.49 10.2 7.31 3.52 6.92 6.16 -0.1 9.54 6.76 3.3 12.2 8.15 10.7 6.77 8.89 9.02 8.96 11 9.96 10.2 9.57 6.01 11.1 12 11.7 11.1 11 9.27 0.81 4.62 6.18 9.01 10.2 2.4 7.91 -0.2 11.2 9.08 6.26 10.4 9.45 1.01 1.36 8.05 7.88 2.86 6.95 7.14 12.8 7.25 10.1 8.75 10.3 6.52 7.62 9.39 2.17 5.94 5.15 7.04 8.34 8.66 1.13 10.7 9.36 8.15 10.8 7.64 10.7 10.5 6.09 11.5 11.8 11.6 7.84 7.75 9.55 9.7 10.2 8.19 7.92 10.2 11.3 8.46 10.2 12.1 11.2 9.34 11.6 8.7 3.88 11.8 9.51 5.9 11.1 11.6 10 8.49 3.76 10.9 9.08 9.08 9.15 10.1 9.7 7.11 6.26 7.68 5.3 4.63 9.46 6.7 7.81 7.22 4.03 10.7 10.6 9.93 8.87 5.89 9.37 8.91 11.7 10.7 10.2 9.48 10.2 7.79 1.48 10 0.87 0.3 12.2 9.18 9.14 12 10.6 10.5 6.5 5.65 8.61 8.62 10.2 11.7 10.2 11.3 9.34 10.5 9.34 5.83 9.13 9.75 8.86 11.2 13.5 9.04 8.7 8.19 9.25 12.4 12.4 11.9 8.65 7.63 5.16 6.53 7.28 6.4 10.5 5.44 10.9 11.5 10.9 10.8 9.71 13.1 11.3 11.4 11.6 9.37 11.2 8.05 10.5 9.08 8.91 10.9 1.92 9.46 8.63 10.2 11 4.98 9.77 9.12 8.53 5.53 2.94 5.52 9.58 7.72 6.59 9.72 6.71 8.33 9.15 9.15 11.6 10.9 8.53 8.67 9.82 10.7 12.2 9.88 8.01 1.87 10.2 9.74 8.85 -0.08 6.95 10.1 10.1 4.27 8.19 6.73 9.42 10.8 2.86 4.46 10.8 9.92 9.63 7.41 8.56 8.5 -0.17 4.11 11.9 5.33 6.11 1.79 12.2 9.9 -0.24 9.11 5.5 2.53 9.71 8.97 5.38 5.08 10.7 9.44 5.15 11.3 10.1 6.72 5.46 12.1 7.59 9.64 10.8 9.01 10.1 9.8 9.63 10.5 0.05 8.43 9.28 8.25 5.76 1.63 9.9 6.65 8.32 8.02 9.24 17.1 8.25 8.1 -0.31 7.46 1.32 1.64 10.8 -0.27 9.97 8.99 8.31 2.36 10.8 4.67 8.92 10.9 11 9.88 9.14 3.09 0.62 8.89 10.6 -0.33 8.78 5.71 9.16 3.69 7.07 10.6 -0.03 9.64 3.61 -1.68 8.52 12.3 5.02 10.4 10.7 11.3 -0.95 8.92 7.52 11.5 8.14 8.94 8.79 9.75 9.16 9.66 1.41 9.6 9.44 11.8 9.89 11 7.3 10.4 8.94 11.2 8.03 9.77 11 11 -0.31 8.41 10.5 5.45 6.9 9.16 4.63 10.2 10.1 -0.1 -0.07 4 8.94 4.55 12.5 9.74 9.04 11.1 7.63 9.18 0.82 11.2 9.69 5.93 6.27 1.86 4.14 6.29 8.06 8.44 6.98 1.92 10.8 9.96 9.61 10.9 15 15.4 13.8 13.9 11.1 10.9 13.9 5.13 15.7 10.1 13.3 13.9 13.8 14.2 13.9 12.6 14.3 11.8 14.6 2.79 12.6 11.8 10.3 14.3 13 12.9 14.2 13.9 14.4 13.8 13.9 14.1 12.7 13.9 11.3 14 14.1 12.7 9.57 8.44 14.1 6.78 15.2 15.2 14 10.9 10.4 13.6 13.8 14.3 14.5 12.2 15.1 3.25 4.66 -0.29 6.36 6.18 13.4 1.43 0.81 15 10.8 7.82 12.1 9.61 10 13.8 14.2 14.2 13 14.4 13.5 12.8 13.9 12.9 13.2 14 14.1 8.95 14.8 14.4 14.7 13.7 14.1 14.2 13 10.1 8.12 13.1 7.41 12.3 3.71 10.6 14.1 10.2 10.6 13 10.8 -0.41 6.59 11 10.2 3.93 8.39 10.7 9.68 10 5.45 1.42 2.95 3.01 4.5 10.7 6.28 4.02 8.84 0.58 14.6 4.87 8.16 14.6 13.9 1.24 8.58 2.73 11.7 13 10.9 10.7 9.04 7.04 9.92 11.8 10.2 9.74 12.7 8.39 6.59 11.3 11 9.62 5.77 8.69 9.82 8.78 13.8 5.01 6.87 8.25 6.25 7.69 -0.04 6.69 0.83 12.3 1.69 3.24 7.79 6.6 10.9 5.99 4.48 11 9.17 11.4 0.78 2.18 8.66 6.14 4.22 4.82 5.09 9.58 5.06 5.08 7.15 7.73 6.13 -0.12 1.18 10.5 0.11 5.24 6.1 5.61 1.84 8.24 8.43 12.6 5.67 4.71 8.15 14 11.8 8.24 10.2 10.7 2.95 9.45 9.47 11.6 9.53 9.83 9.78 8.3 2.21 7.65 10.6 7.64 8.02 11.2 9.69 11 8.32 8.38 11 8.28 2.37 7.72 9.5 9.85 11.4 6.77 9.45 2.01 6.25 9.38 8.95 7.26 8.19 6.8 8.72 5.58 10.3 7.66 7.26 10.4 8.09 11.4 7.02 10 1.98 7.78 3.85 7.41 8.8 9.23 7.8 0.63 10.5 4.87 5.79 7.43 5.57 7.84 9.38 8 8.6 3.17 12.6 2.13 0.83 11.1 8.75 3.86 6.04 10.2 11.8 2.99 11.5 8.27 -0.14 4.06 5.47 6.18 7.37 7.49 6.21 8.91 -0.41 8.77 7.16 10.8 8.03 12.9 9.85 8.64 11.2 6.75 9.37 7.87 5.72 10.3 4.59 5.93 8.03 1.36 9.64 5.52 9.48 3.18 8.73 -0.48 11.6 8.32 4.65 7.85 7.01 7.93 12.9 10.1 8.83 11.2 4.51 10.8 2.01 3.09 4.75 7.76 3.55 9.18 12.8 -0.54 7.43 6.74 9.57 9.58 12.1 9.98 9.87 8.44 6.27 8.38 7.82 5.96 10.4 10.5 9.32 10.2 5.21 4.69 7.27 9.56 8.3 -0.58 -0.59 8.82 1 12.3 -1.91 11.7 12.7 4.58 8.57 5.22 9.35 10.1 7.66 8.88 7.29 8.01 10.8 -0.34 3.27 -0.34 2.6 10.6 4.21 -0.3 11.6 11.6 8.88 10.6 11.2 7.86 6.25 11 7.91 6.34 9.62 10.1 9.47 9.69 4.5 8.76 6.22 5.8 1.17 6.9 5.99 11.5 10.4 9.29 5.21 10.1 7.04 1.03 1.86 10.9 7.52 7.62 -0.18 -0.45 9.53 6.62 5.55 7.64 4.37 6.78 2.04 -0.79 -0.38 4.77 8.85 1.93 9.88 8.77 4.93 8.35 8 7.3 8.54 3.59 2.37 7.93 1.14 9.28 10 9.1 7.54 -0.62 5.92 3.65 8.41 5.03 9.72 9.35 0.98 7.02 7.88 10.4 10.8 8.77 11 9.41 9.21 9.86 8.74 8.72 9.27 10.3 8.62 1.64 3.77 -0.03 -0.85 3.38 3.75 5.71 3.36 8.74 2.41 8.69 1 9.76 3.58 7.52 9.24 1.32 11.7 -0.26 6.92 1.79 6.99 11.6 4.94 1.26 10.1 1.81 2.1 7.56 1.73 9.41 8.63 6.57 2.39 4.81 0.96 1.74 11.5 -0.43 4.29 4.79 3.2 1.11 -0.39 2.82 4.87 2.14 1.15 6.56 9.33 10.2 -0.23 9.72 -0.43 3.17 3.17 9.41 1.59 7.13 -0.23 11.4 1.84 8.94 4.84 3.15 9.16 1.97 -0.83 9.01 9.17 9.41 5.3 9.73 3.06 5.59 3.84 -0.15 6.08 3.16 10.1 8.65 7.46 6.06 10 10.9 11.9 6.77 2.49 7.94 11.9 3.48 6.02 10.1 9.16 9.32 9.6 10.4 9.53 7.78 3.34 6.81 10.4 9.59 8.88 12 9.97 10.7 6.63 9.11 10.2 8.27 7.64 10.3 8.71 9.64 12.1 7.88 9.4 7.61 9.72 10.6 8.12 9.53 9.07 9.87 9.99 7.59 9.38 8.47 3.25 9 9.18 7.06 7.22 10 8.91 7.85 4.38 10.6 12.3 10.3 4.42 9.94 10.7 2.49 8.19 7.09 0.05 8.58 9.66 11.3 9.33 6.54 7.95 8.09 6.67 11.4 2.6 10.1 10.7 9.51 2.88 9.33 9.94 7.66 12 12.3 9.95 8.03 7.24 7.6 7.7 8.74 11.1 5.18 -0.07 4.8 2.91 8.67 8.38 9.5 5.09 9.2 6.5 9.04 7.39 9.02 6.47 10.5 8.66 6.55 6.3 11.5 7.74 4.37 10.2 8.2 10.6 7.3 9.57 10.6 7.03 11.2 4.23 11.2 10 9.96 9.32 11 9.81 10.1 10.7 10.8 9.35 9.76 10.4 10.6 10.4 -0.31 6.84 11.8 10.7 9 9.42 7.48 8.61 5.59 9.5 8.36 6.6 5.84 3.83 6.74 3.88 10.7 9.35 9.84 5.12 8.99 2.71 6.19 4.48 6.85 7.89 6.88 10.1 10.3 10.5 8.58 10.1 9.04 9.78 4.54 12.7 12.7 8.16 8.57 10.2 -0.08 10.3 9.82 11.6 9.38 11.4 -0.63 8.79 4.26 4.69 7.97 6.41 12.8 -0.45 12.8 10.8 5.8 6.66 10.1 8.28 10.1 7.81 7.79 8.82 8.91 8.28 9.4 11 10.1 7.74 1.11 8.83 -0.75 8.11 2.23 1.08 6.59 4.61 4.35 5.33 7.65 1.41 1.74 5.94 5.5 6.83 3.81 6.38 3.13 10.4 7.7 4.37 4.52 3.07 0.44 3.2 7.36 9.84 9.46 10.2 10.4 1.61 7.71 6.59 9.19 0.4 10 8.08 5.67 3.54 1.3 10.3 1.36 9.05 6.41 5.57 5.97 1.11 11.2 11.2 -0.64 3.94 6.09 7.65 8.36 5.67 9.26 1.16 1.71 6.54 3.34 5.33 1.77 5.59 -0.35 2.25 11.3 2.73 3 8.51 4.08 4.27 -0.33 6.82 -0.81 10.6 -0.6 5.33 8.82 3.08 4.81 10.6 6.54 8.7 4.66 4.87 9.36 10.6 9.87 11.5 7.54 8.54 2.57 7.4 3.73 7.98 0.85 6.96 10.6 9.9 5.35 7.35 8.83 9.69 9.09 3.69 7.92 10.2 11.5 9.78 7.26 9.4 9.25 9.7 8.22 7.88 7.58 5.49 11 7.35 9.68 11.2 11 9.49 3.9 8.73 9.15 -0.27 0.1 7.67 6.62 10.2 9.78 11.2 10.8 11.6 7.59 8.17 7.96 11.1 3.19 11.2 9.48 8.52 9.04 8.55 10.6 10.8 11.5 6.56 7.37 9.51 7.64 8.45 9.73 9.04 7.83 7.34 6.34 9.46 11.4 11.4 10 13.8 11.2 8.44 11.7 10.4 11.5 11.2 9.6 11.3 10.8 11.3 9.38 8.79 7.58 10.8 10.2 8.81 9.97 1.6 12.5 1.3 11.6 7.08 11.4 10.5 11.1 10.7 8.01 9.85 8.8 11.3 10.8 4.27 11.7 -0.76 4.13 10.4 11.4 8.64 10.9 10.4 7.28 10.7 8.65 9.5 8.53 13.4 9.36 9.95 7.64 4.85 8.96 1.2 12.7 6.82 8.64 13.2 11.6 8.53 12.1 -0.51 7.01 12.6 9.75 10.7 12.2 8.06 -0.26 11.7 9.11 11.1 11.9 11.1 11.1 11.6 12.5 9.54 9.93 7.59 10.4 10.7 11.4 9.96 11.7 8.55 9.01 11.9 11.6 10.8 11.4 12.1 12.3 11.7 12.3 7.4 4.22 3.4 10.7 9.62 12.2 13.3 -0.54 12.7 2.96 12.7 10.3 11.8 4.73 7.53 9.12 1.95 2.03 2.38 0.83 -0.67 2.92 -0.94 2.83 11.6 1.86 -0.49 1.53 4.17 12.3 12 7.64 9.06 6.83 6.04 9.55 4.97 8.29 8.98 10 11 5.13 1.69 10 9.7 1.62 5.09 6.78 9.77 10.2 9.53 8.71 9.45 11.1 9.31 9.28 8.22 9.79 2.63 14.5 10.1 9.86 9.89 11.1 6.64 10.8 9.06 9.18 8.75 12.6 9.26 9.74 8.62 12 9.93 5.92 8.14 9.44 0.87 9.51 7.59 6.1 9.13 11.4 8.9 7.82 6.63 3.09 1.32 10.8 9.3 5.91 8.48 7.36 8.32 9.53 9.39 7.42 11.2 6.93 11.6 11.3 12 11.2 10.1 9.91 8.61 6.95 8.65 4.24 -0.27 12.9 13.7 12 11.6 13.4 8.78 10.4 12.3 1.05 -0.18 8.57 11 10.1 10.2 8.61 10.3 7.65 7.33 5.63 2.65 5.67 7.27 11.7 7.23 9.46 2.57 3.66 7.67 10.4 0.84 -0.75 11.8 -2.1 10.5 8.56 7.41 9.91 11.1 9.89 9.5 7.54 8.79 10.5 3.14 11.1 8.3 10.2 9.8 9.69 10.2 4.63 8.4 11.9 4.5 12.2 -0.81 3 9.37 10.1 9.19 4.04 11.6 9.96 9.92 0.06 12.1 9.83 9.35 10.5 5.74 2.13 7.07 14.4 9.97 5.57 9.79 -0.68 9.4 8.33 5.56 9.63 7.15 9.38 7.53 8.9 9.68 9.49 9.68 11 8.77 9.96 11.8 10.9 8.64 13.5 1.99 8.44 10.5 7.85 5.33 9.14 1.48 10.5 9.47 -0.33 9.65 7.44 10.3 11.4 2.9 11.6 4.96 6.58 10.1 8.59 7.42 12 4.68 3.33 10.5 6.77 9 7.48 -0.84 10.3 10.4 9.85 10.2 5.23 8.12 12.8 11.2 9.46 -0.41 11.6 11.2 11.7 8.12 15.6 3.28 9.4 9.75 10.2 4.93 4.83 12.1 11.9 6.63 5.69 6.87 5.79 15.7 10.8 5.41 9.09 10.1 8.48 7.27 9.09 9.54 9.18 7.76 12 14.7 9.86 7.04 6.07 2.61 3.16 9.9 10.8 9.03 9.98 4.18 11.7 9.29 6.32 0.83 7.83 9.6 9.84 1.91 9.28 7.2 10.7 11.8 7.43 4.38 11.6 11 9.24 10.5 10.1 9.21 11.1 6.82 8.55 12.8 8.85 12 -0.16 14.3 11.6 11.7 8.58 12.9 13.2 10.4 9.13 10.8 6.38 15.4 -0.23 11 9.13 8.92 14.9 7.26 9.18 8.13 8.61 6.08 6.36 10.5 1.15 13 9.04 9.5 4.48 4.7 5.15 -0.74 1.53 4.51 9.85 7.88 7.04 4.83 4.54 11.8 8.26 9.6 6.53 10.1 0.75 9.41 9.9 10.6 9.62 10.1 11 11.8 10.8 10.9 11 9.2 9.22 8.19 9.36 6.39 4.57 12.1 7.98 6.07 6.38 5.91 7.24 9.76 6.95 9.86 3.49 4.88 3.53 4.46 7.31 2.15 8.02 5.34 3.8 5.56 8.46 10.8 3.89 8.92 -0.09 3.44 6.78 12.7 6.97 3.91 -0.56 8.84 9.84 8.21 -0.39 9.21 -0.36 6.53 6.68 5.07 4.17 6.13 8.72 6.73 1.02 13.7 4.94 8.03 2.52 5.6 -0.57 2.83 8.19 8.97 2.99 9.07 2.35 0.17 10 6.58 10.5 2.29 4.33 2.97 5 2.75 3.21 5.76 4.93 5.05 5.33 4.28 4.9 5.8 -0.34 6.53 5.5 3.86 2.98 7.76 13.5 8.49 7.18 8.98 1.02 4.86 15.5 4.6 5.63 -0.65 7.03 10.2 2.54 0.84 -0.25 10.6 5.53 5.67 0.88 4.79 2.35 8.42 7.98 5.89 3.39 6.37 7.84 5 7.8 9.42 9.13 2.31 9.02 -0.44 11.2 3.1 13 -0.41 13.9 14.8 13.2 2.49 9.78 10.4 10.6 8.09 10.8 11.9 9.59 7.84 10.3 10.5 10.3 11.3 4.97 11.9 11.5 12.7 10.7 10.6 10.2 11.8 10.3 11.4 11.7 9.18 4.48 1.2 11 2.88 11.1 4.64 10.2 7.09 12.8 11.1 7.67 9.48 10.2 8.08 10.6 9.8 10.2 10.3 3.33 11.1 4.79 12.5 12.6 11.4 10.6 11.8 9.88 8.85 9.23 10.2 9.82 0.23 10.5 9.04 8.68 8.62 10.8 12 6.21 10.3 10.1 6.59 10.3 12.7 13.7 11 12.2 8.86 12.2 10.2 6.13 11.4 9.05 12.5 13.5 12.4 6.97 4.44 6.43 1.96 2.91 6.73 8.61 8.91 7.83 3.03 9.37 10.9 11.5 6.83 8.8 12.9 10.2 10.6 6.38 9.97 9.17 9.94 11.1 10 8.13 -0.45 4.67 9.66 2.49 2.12 5 2.56 6.22 4.1 2.75 1.61 1.93 7.62 8.51 5.35 13.1 9.65 2.28 11.6 9.25 6.99 8.45 6.13 10.4 -0.3 12.3 10.1 7.71 8.93 7.56 8.54 13.2 7.68 10.4 10.5 13 6.9 13.7 12.9 11.8 15 4.87 12.1 11.5 5.98 12.5 8.11 9.77 8.82 7.01 6.89 9.76 7.05 8.32 5.92 13.2 7.43 9.39 7.31 6.51 8.11 4.69 7.42 5.61 6.9 6.76 9.22 8.71 7.29 10.5 7.33 8.66 5.43 8.92 8.59 8.59 7.44 9.47 8.28 8.38 6.84 7.49 7.69 6.44 4.59 10.4 3.37 5.46 6.44 7.31 8.6 6.94 6.9 8.97 5.52 1.34 8.47 2.45 6.78 6.8 8.12 1.75 9.34 4.2 5.52 5.09 12.1 6.29 1.6 1.83 2.23 1.9 -0.17 3.04 8.4 8.68 3.91 8.24 6.31 5.57 6.74 5.68 8.55 8.46 8.74 5.32 9.55 8.04 9.89 -0.48 10.8 10.1 9.68 8.84 8.99 1.75 6.23 1.46 8.98 6.97 10.9 7.65 6 7.22 5.43 0.25 6.87 8.15 7.71 6.72 5.4 7.6 8.37 6.69 7.37 8.49 5.91 9.98 7.66 7.64 7.43 8.56 11.3 6.34 6.22 8.52 4.83 6.62 11.7 11.1 6.18 6.06 4.75 6.97 3.38 7.58 5.6 7.07 5.68 7.47 7.44 7.07 1.65 4.2 5.92 8.96 6.52 3.94 12 9.15 9.01 12.7 10.4 12.6 7.51 10.9 2.52 12.6 8.19 11.1 6.67 2.69 10.4 10.4 8.58 8.71 11.2 10.3 11.4 5.71 7.49 7.96 11.5 9.84 10.2 12.1 8.46 10.8 10.2 7.26 9.66 10.7 11.2 12.9 8.42 4.02 10.3 3.05 8.61 10.3 6.18 7.32 8.52 10.6 9.82 8.22 9.86 4.07 6.34 9.01 10.9 7.34 10 10.9 8.31 9.22 8.62 7.12 10.4 8.26 9.04 5.56 9.65 11.4 7.1 9.76 8.69 11.8 9.94 3.2 11.7 5.9 9.05 10 9.32 10 9.56 11 10.8 5.49 9.35 11.3 5.97 10.5 9.3 8.55 12.1 10.6 10.2 8.85 9.22 9.54 11 9.37 8.64 6.76 8.98 7.49 10.8 7.43 8.77 10 6.26 10.3 10.4 10.2 11.3 10 11.2 5.05 9.25 7.89 7.47 6.59 9.46 11.1 9.76 9.86 7.77 9.47 10.7 10.2 11.9 6.77 8.5 9.35 8.59 11.3 11.2 7.13 10 10.6 12.5 8.63 7.69 5.64 6.57 8.96 9.39 6.21 8.19 9.63 6.92 9.07 10.5 9.07 13.1 8.95 7.46 -0.2 3.45 8.29 12.6 11.1 10.9 8.32 5.51 10.9 8.24 7.32 7.61 7.64 8.79 12.4 9.68 8.86 7.01 10.2 12.1 1.88 10.5 12.1 10.1 7.38 6.35 3.33 9.29 -0.61 4.31 2.96 10.8 5.17 9.64 7.08 7.94 2.35 5.58 8.31 5.37 1.71 6.73 6.67 8.51 3.75 7.59 9.72 8.16 7.92 3.26 9.19 7.02 10.7 5.69 4.41 3.29 -0.29 9.82 9.58 4.93 5.65 9.78 12.2 8.59 8.25 8.64 9.2 11.6 3.85 6.98 8.83 11.6 8.85 10.3 8.94 9.42 9.34 8 6.53 8.75 11.4 9.57 5.68 8.44 3.2 6.52 6.99 7.63 7.7 8.47 6.52 9.25 9.8 8.76 9.16 5.75 5.49 7.06 2.35 8.05 5.95 8.87 4.48 4.5 7.86 6.96 9.08 8.59 7.99 8.64 8.99 8.31 8.71 2.35 7.93 10.5 9.24 6.54 10.7 10.6 8.92 7.07 10.1 1.8 10.2 7.89 5.96 11 4.48 7.18 9.73 9.41 9.08 3.55 7.99 8.92 9.27 8.25 9.35 7.38 5.44 8.83 9.14 9.41 9.33 9.95 6.9 7.15 8.61 4.64 6.77 9.62 9.26 9.01 8.66 10 6.85 8.2 8.86 8.67 7.84 8.84 9.33 6.93 11.8 8.01 10.5 8.2 6.86 8.36 9.27 11.1 11.8 10.6 10.8 -0.43 7.78 10.7 6.19 8.95 7.97 6.5 6.53 8.77 7.96 8.46 8.88 7.49 7.77 7.12 -0.42 7.43 6.38 8.8 7.4 -0.42 10.3 2.31 10.2 9.87 7.28 7.53 2.01 6.59 8.28 7.86 9.24 8.77 10.2 10.1 9.04 10 5.89 8.93 5.46 7.71 9.43 8.43 7.35 2.66 7.02 3.51 12.8 7.62 0.98 9.61 11.6 8.75 11.3 9.42 8.6 8.95 8.15 5.22 8.64 3.06 8.99 5.57 7.86 8.58 7.66 10.6 7.95 9.82 9.56 7.41 7.14 9.72 7.03 3.69 10 2.48 6.07 7.41 5.31 4.45 8.72 9.1 7.79 5.8 9.26 8.77 9.9 6.71 10.5 11.5 2.83 9.5 8.86 3.42 5.54 3.01 5.42 7.29 5.23 9.05 8.42 6.2 10.5 2.27 12.3 2.53 7.73 2.77 7.02 2.76 6.66 8.29 6.97 3.44 8.42 8.44 8.29 10.5 7.91 7.91 9.57 8.56 9.6 6.88 9.39 8.74 8.09 8.56 9.95 4.15 7.06 9.09 8.7 11.8 9.79 8.55 3.68 10.3 9.58 9.3 4.31 7.45 10 6.3 6.07 9.33 9.79 11.1 8.09 3.61 7.98 11.3 9.41 8.34 7.41 7.01 7.92 9.7 8.34 -0.49 9.51 6.09 4.04 6.35 8.69 7.1 2.52 9.89 2.36 9.73 1.29 2.62 10.4 10.1 1.88 7.7 8.04 3.19 9.49 4.5 9.57 10.1 1.73 11.7 3.58 8.34 7.15 9 9.46 6.54 4.8 8.76 8.54 6.4 9.69 2.89 6.2 10.2 8.37 9.74 7.98 10.3 7.3 7.67 7.73 8.88 9.01 -0.55 9.64 4.24 11 2.83 4.03 6.88 10.6 9.33 9.12 7.56 2.13 8.43 10.3 9.76 7.65 8.12 7.42 9.35 7.95 10 10.3 9.63 10.5 10.3 9.6 8.93 3.2 -0.07 2.67 5.71 6.05 8.1 7.18 8.53 3.52 5.71 0.08 0.91 6.7 11.1 13.2 1.88 7.37 2.74 9.41 6.99 -0.4 9.29 5.81 5.46 4.14 4.52 7.28 9.43 8.48 11.4 9.36 7.47 10.1 9.75 9.73 9.54 8.75 8.61 9.89 10.1 10.6 5.67 9.16 6.68 9.34 7.31 8.27 9.69 6.01 8.53 9.77 2.47 8.47 9.17 9.36 9.01 8.58 9.64 9.02 4.61 9.61 10 8.66 4.11 9.09 10 10.7 10.4 8.11 9.29 9.6 8.35 3.06 12.3 10 7.46 8.93 12.5 7.62 7.94 10.2 10.3 3.1 10.6 9.82 5.75 9.1 1.27 8.59 10.1 8.21 3.7 8.97 6.55 5.93 10 8.46 10.6 10 9.9 3.73 10.1 8.36 3.55 7.88 10.5 8.63 7.65 7.98 11 9.51 8.75 10.1 11.2 6.71 7.14 5.9 6.34 7.17 8.33 5.33 6.59 8 9.27 8.51 9.92 8.18 7.57 5.48 7.01 11.7 4.54 3.79 11.5 9.3 4 7.35 5.28 10.4 6.72 11 11 9.87 -0.61 9.56 3.42 9.43 7.81 2.72 10.8 9.55 13.2 9.79 8.83 9.07 10.6 5.24 9.36 4.02 7.23 9.07 8.22 5.05 11.8 8.03 11.3 3.03 12.2 8.33 1.12 5.57 8.45 7.75 8.01 9.03 4.23 7.05 2.04 2.33 7.85 11.4 10.2 6.85 9.28 9.7 8.91 6.76 11.9 6.18 11.6 11.4 9.51 13.1 10.2 12.5 7.76 8.11 7.61 8.63 7.97 5.34 10.5 10.4 10.8 5.71 7.02 -0.17 11.2 8.89 9.52 9.7 9.04 10.4 4.67 6.83 7.11 1.55 11.3 8.41 9.49 5.09 10.2 1.08 12.2 13.4 7.11 2.26 4.46 7.21 4.37 8.38 9.32 3.71 11.6 11.7 14.7 1.73 4.9 2.03 6.28 1.87 12.3 11.7 10.2 5.51 2.36 14.1 11.3 9.84 9.61 3.04 3.01 -0.17 3.43 12.6 5.55 8.75 9.44 8.37 12 9.86 4.68 6.97 8.6 7.99 10.7 2.82 10.9 10 10.2 5.57 7.94 8.98 9.42 8.77 8.69 9.25 11.6 4.37 9.14 6.13 9.62 8.57 6.86 8.58 8.66 3.89 9.69 4.59 6.78 10.5 10.4 11.4 8.52 9.34 9.41 9.49 9.6 10.8 10.5 7.5 -0.35 7.47 12.1 10.7 10.1 7.67 9.48 8.21 8.89 10.6 3.51 10.9 10.4 10.1 11.9 11 9.41 6.07 3.63 11.2 0.91 8.1 7.39 2.02 11 8.59 7.07 7.74 7.19 9.14 3.22 5.03 4.69 8.89 8.84 9.33 8.6 8.37 7.99 9.53 5.62 10.2 3.2 9.17 6.34 10.4 11.1 7.37 9.7 9.08 12.3 9.88 7.73 10.5 11.3 9.81 10.2 1.28 8.54 10 4.9 10.3 9.01 8.16 9.97 3.34 8.41 6.64 10.4 10.7 -0.55 10.7 9.58 8.6 10.8 14.1 11.3 10.3 8.09 9.67 9.4 0.57 10.2 10.3 9.47 9.27 11.8 8.25 9.71 11.7 10.9 10.7 11.8 11.6 5.74 13 11.1 6.93 9.55 7.23 9.19 9.64 -0.4 7.62 0.8 11.1 12 8 2.13 10.1 -0.46 10.9 11 11.2 9.1 6.77 12.7 7.96 9.82 7.94 10.2 9.48 8.38 9.44 12.4 2.47 8.69 7.89 9.25 7.01 6.54 5.42 0.97 10.8 1.24 1.51 -0.13 9.43 3.3 8.47 3.56 4.1 5.14 7.77 1.11 4.42 2.75 3.72 -0.25 1.76 7.28 2.57 10.5 12.7 10.8 7.46 6.91 3.35 1.68 4.42 10.8 7.14 -0.46 8.64 10.1 9.15 7.68 7.67 7.03 4.95 8.79 6.72 7.45 0.61 8.14 8.43 10.4 8.49 10.7 -0.53 5.85 -0.47 1.83 4.9 0.86 8.53 10.3 9.31 7.67 7.51 8.78 9.02 -0.31 7.96 1.33 3.51 -0.31 -0.64 11.1 6.44 6.13 6.83 9.06 5.9 9.31 9.74 -0.78 6.83 10.7 10.9 9.35 8.63 0.33 3.89 8.65 11.4 8.66 2 8.95 10.9 9.88 7.93 9.85 6.09 -0.37 1.02 11.9 -0.88 7.33 10.9 9.69 2.98 6.51 10.5 8.72 6.86 10 9.56 2.15 1.61 11.1 9.2 7.25 7.92 7.72 8.83 6.07 9.31 8.25 8.38 6.93 4.98 7.24 8.91 4.52 7.35 10.4 8.44 10.1 5.72 9.84 9.77 -0.45 5.78 7.37 9.58 10.3 9.02 4.38 3.92 4.9 7.52 2.29 2.9 10.6 6.94 6.5 9.46 7.65 6.55 10.7 10.6 5.5 8.13 3.21 5.38 10.8 4.26 10.3 1.26 4.58 1.87 3.58 -0.26 -0.28 -0.33 1.77 7.84 9.56 9.35 6.81 9.92 10.2 7.39 9.76 8.1 4.86 10.9 9.55 8.24 8.11 6.94 8.07 3.24 8.03 2.38 8.05 9.76 7.46 8.73 2.67 10.4 10.6 6.05 9.08 8.06 8.53 6.85 5.89 6.99 9.55 9.15 8.99 10.9 10.8 7.64 7.67 10 9.41 3.77 6.85 7.66 7.58 7.01 5.58 8.34 10.9 7.34 8.01 8.76 10.1 9.37 7.74 6.14 14.2 3.35 5.56 6.43 2.57 5.53 6.38 9.2 10.1 8.07 8.96 5.25 6.29 8.92 9.82 2.17 9.95 6.84 5.1 9.47 8.57 3.78 7.62 8.84 7.85 9.19 8.2 10.4 7.78 8.49 8.61 8.15 8.72 8.84 7.54 7.48 6.98 6.31 9.26 8.85 7.71 9.27 9.84 9.07 7.46 8.77 7.01 11.3 8.71 6.8 10.2 9.81 4.46 9.61 7.76 5.76 5.05 4.17 9.99 7.95 8.78 9.28 9.78 6.55 1.01 6.32 10.6 9.94 10 3.14 8.67 6.15 5.23 2.16 7.07 3.29 8.18 5.13 7.94 4.9 7.2 4.94 6.64 4.4 2.45 7.85 11.6 11.4 8.42 8.32 5.6 9.41 10.1 8.56 9.39 9.23 10.5 -0.45 9.68 8.06 4.74 2.77 7.11 10.7 8.81 3.65 9.09 8.04 7.8 10.9 9.87 2.98 8.12 9.27 8.9 9.27 4.72 10.3 7.73 10.8 10.2 9.26 9.21 8.82 7.67 8.96 4.1 8.99 11.7 8.91 7.95 8.92 7.55 8.94 9.66 8.35 10.2 5.8 8.57 1.08 7.85 10.6 8.81 8.94 9.33 9.73 9.99 8.37 11.4 5.77 8.82 7.34 9.28 9.56 8.62 7.27 9.18 6.89 11.1 9.79 7.63 10.6 7.35 8.69 10.2 9.93 7.49 9.91 8.34 11.4 10.3 9.41 4.64 8.42 5.87 7.47 10 -0.93 10.1 9.2 10.3 6.99 10.8 6.08 9.7 8.26 10.5 0.99 5.35 10.5 10.8 7.82 9.39 8.41 9.44 1.74 10.3 -0.62 12.4 6.42 11 6.03 5.64 4.76 5.38 6.1 10.3 6 9.63 10.2 5.17 10.5 4.17 6.36 9.68 7.25 7.95 6.6 6.93 5.7 8.87 4.82 8.88 7.88 1.74 -0.18 2.12 6.27 9.44 8.56 10.4 8.92 1.44 6.77 10.5 10.1 10.9 9.74 10 5.53 5.17 4.77 10.7 8.06 10.7 7.05 6.59 6.97 8.69 9.28 10 4.57 11.1 5.12 8.58 10.4 5.63 7.62 10.2 9.89 5.76 11 8.68 -0.67 9.84 9.24 7.88 1.14 7.64 8.74 1.65 9.65 10.3 7.64 5.53 5.58 -0.21 6.37 7.17 9.58 6.23 11.8 10.1 7.65 5.84 2.11 6.45 9.08 10.4 3.8 9.34 9.8 10.9 4.3 -0.21 -0.18 1.31 9.96 9.74 8.81 9.3 10.6 6.36 8.39 -0.29 9.4 4.52 0.06 7.73 9.35 10.5 2.68 3.52 7.49 5.67 4.63 4.37 6.29 9.04 7.66 -0.83 3.09 8.62 10.3 7.5 8.16 -0.27 10.5 9.78 8.85 6.98 11.6 8.84 9.91 9.06 6.49 0.59 1.48 9.39 8.29 8.48 7.63 8.23 9.73 5.92 2.39 8.77 4.02 4.88 6.75 7.96 8.57 13.2 6.43 9.4 7.39 1.13 11.2 10.6 10.2 8.25 4.96 5.3 7.2 8.8 8.2 5.45 4.04 3.24 7.36 10.4 8.24 8.07 8.07 12 -0.13 8.8 4.58 3.32 4.21 10.4 10.4 6.21 7.06 -0.92 7.16 9.88 2.91 6.88 4.2 7.94 8.32 8.11 10.1 7.53 8.28 7.09 8.7 7.6 4.41 2.24 6.76 7.34 10.3 10.1 7.96 6.81 8.77 10.4 11.2 10.1 9.67 8.94 -0.72 9.28 9.85 7.09 8.65 6.53 9.48 5.86 8.79 11.7 7.51 9.7 8.11 9.69 7.65 11.5 9 8.82 10.6 3.9 9.52 4.53 8.28 7.98 10.3 11.1 10.9 5.23 7.37 8.88 9.63 7.58 8.56 9.96 9.63 7.79 7.34 8.34 8.5 9.62 9.51 9.41 9.41 7.31 9.14 2.58 8.74 8.29 -0.54 8.27 9.36 7.89 7.84 9.4 8.86 4.23 7.87 3.83 9.13 9.65 7.1 9.56 7.5 8.97 3.4 6.79 9.04 6.97 9.26 6.22 5.17 3.85 9.37 9.21 10.4 6.16 6.73 10.4 6.1 3.54 6.3 0.88 7.86 9.65 10.3 4.28 3.75 10.5 10.2 10.8 6.66 9.21 3.74 7.52 8.03 1.04 9.05 6.68 8.69 10.5 7 8.53 11 8.99 9.26 7.35 9.55 6.97 9.15 8.35 8.3 6.48 11.7 11.4 7.91 3.32 -0.74 6.27 4.02 3.34 9.42 8.99 12.1 10.5 -0.76 6.86 -0.57 5.52 10.2 6.82 9.53 1.35 6.56 6.51 3.58 6.77 7.24 11.6 9.17 7.95 -0.74 8.56 1.82 2.05 10.5 5.05 9.27 2.96 8.4 11 7.87 6.98 8.33 10.3 9.74 3.02 8.83 11 3.56 9.57 9.5 10.9 10.9 7.67 10.2 9.51 10.4 5.02 6.97 9.31 -0.43 7.29 10.7 2.41 10.6 10.3 10.4 8.21 11.8 8.25 11.1 1.86 8.64 5.36 11.1 8.9 9.24 5.79 9.36 11.3 8.68 6.71 8.24 10.3 8.63 8.88 8.18 7.71 7.66 11.3 6.43 3.77 10.1 7.64 1.69 3.15 8.39 2.48 7.25 5.24 9.23 -0.09 3.79 12.3 8.66 8.57 6.98 3.07 9.49 8.21 9.78 11.1 9.83 4.68 12.3 11.7 9.85 9.74 8.2 8.97 11.3 8.53 10.2 10.5 9.93 8.94 4.89 6.62 8.95 8.98 10.9 6.61 1.67 5.24 10.1 8.84 9.25 4.83 10.7 0.99 4.56 9.45 9.51 11.7 8.37 11.3 10.6 3.3 2.55 9.95 3.64 9.02 9.65 10.5 5.49 8.38 7.64 3.91 5.37 3.73 -0.01 9.6 10.3 10.8 9.06 8.6 6.42 8.34 7.06 8.31 4.38 15.2 8.56 10.1 10.1 9.85 10.3 10.3 6.97 7.43 12.7 10.1 9.83 5.23 12.1 13.2 8.14 11.9 11.3 11.4 12.6 12.7 11.3 8.82 9.72 10.3 11.3 7.41 11 4.52 8.62 10.1 8.6 8.21 11.1 12.2 4.53 7.51 10.5 11.4 10.8 10.1 5.11 11.6 3.04 10.6 10.1 10.1 8.49 8.42 4.44 -0.52 12.8 8.43 10.9 7.89 10.6 6.63 10.8 12.2 8.25 9.69 11.8 9.7 8.35 9.18 6.91 10.6 12.9 9.05 8.12 12.2 3.58 9.18 6.91 8.86 2.08 10.4 8.81 10.6 6.69 3.54 -0.3 0.96 11.1 10.8 11.6 12.6 10.2 11.3 13.3 10.2 12.3 10.2 6.65 8.8 10.6 9.22 11.8 8.76 5.39 6.58 3.46 10.1 6.71 -0.88 2.18 4.25 8.17 7.49 4.71 4.45 11.1 7.65 8.18 9.15 0.84 7.55 10.1 11.6 8.64 10.6 9.96 3 6.91 0.87 0.72 10.2 9.74 4.02 12.3 9.31 2.83 10.4 7.58 2.27 7.41 -0.25 10.1 5.57 12.3 7.26 10.6 4.98 8.18 3.87 10.9 9.75 6.18 10.4 9.28 1.32 0.95 6.43 10.2 3.93 1.49 8.12 9.24 8.01 7.16 10.6 7.85 5.9 9.65 7.41 4.01 7.87 1.05 8.06 9.19 6.08 6.95 9.71 7.52 6.39 10.8 9.23 10.6 9.66 10.9 3.08 4.6 8.07 15.9 10.8 10.3 9.75 9.73 9.34 10.9 11.3 12.6 10.4 9.83 9.78 8.65 9.55 10.4 12.2 10.7 11.9 10.1 10.2 9.64 1.42 10.3 3.88 11.2 7.61 10 9.74 9.21 -0.16 12.1 8.87 3.09 9.54 9.33 4.59 10.8 8.99 7.68 10.5 10.1 9.06 -0.49 5.88 4.8 9.65 10.6 9.51 8.95 10.9 6.8 7.41 9.82 8.12 8.64 11.3 11.7 8.04 12.2 -0.48 0.2 2.23 11.7 7.27 -0.57 10.8 9.57 11 7.91 0.67 9 7.74 5.87 4.7 8.62 7.58 7.54 5.01 1.95 5.57 2.4 5.51 10.3 7.31 8.57 6.34 11.8 7.24 5.18 5.16 9.69 8.31 7.72 9.64 1.39 5.55 1.53 1.34 6.6 -0.27 7.99 11.7 7.63 9.55 9.39 10.1 12.7 6.85 -0.44 7.11 9.55 10.1 9.42 10.1 10.9 8.63 9.54 7.71 7.62 4.31 8.28 9.14 10.2 11 4.02 5.51 6.56 8.58 5.9 8.56 6.82 8.73 10.1 9.74 9.39 4.99 10.1 6.77 7.24 6.67 6.27 6.87 5.04 11.2 11 9.61 8.81 8.89 9.17 10.5 6.15 3.33 1.78 11.2 5.83 5.91 3.45 5.69 8.93 10.5 9.23 -0.62 7.42 2.91 7.91 3.61 6.9 11.7 8.51 7.06 8.27 9.87 9.3 1.64 6.36 8.53 8.42 5.49 -0.18 5.37 9.88 6.65 6.43 8.91 9.8 8.81 9.37 7.45 5.05 10.9 10.8 8.89 10.6 9.46 10 7.74 9.55 9.63 8.62 9.43 13.8 9.56 6.17 7.15 6.34 11 4.54 10.1 10.1 9.25 7.72 5.73 9.66 7.57 13.1 9.39 7.87 3.34 7.57 10.1 10 11.2 11 8.83 8.1 9.59 7.54 8.39 0.6 3.05 7.69 3.17 6.15 9.74 9.08 7.32 7.57 5.04 9.52 9.38 9.07 1.32 10.3 5.51 4.47 8.9 1.89 10.1 7.68 10 10.4 2.16 7.19 5.01 6.1 4.18 10.2 7.21 8.01 13.5 4.54 8.44 8.59 6.96 5.15 9.7 9.92 3.32 11.4 8.48 7.73 9.12 6.36 9.39 0.69 9.55 10.7 10.8 9.63 8.67 4.89 8.54 10.3 9.26 4.36 10.4 4.79 6.71 7.25 8.97 11 10.8 10.7 10.1 8.51 9.23 3.84 11 3.23 6.73 9.02 9.96 8.97 6.77 2.17 9.05 9.32 9.45 10 5.44 7.15 6.75 6.72 10.6 7.07 6.79 8.42 5.95 8.21 -0.37 4.83 2.11 8.91 8.33 7.88 11.2 12.4 7.58 9.26 10.2 -0.84 10.2 9.9 8.56 11.2 8.72 9.05 1.39 10.3 11.8 10.9 10.4 7.69 7.35 2.47 10.5 8.08 9.43 8.04 -1.13 6.18 9.69 10.6 9.6 8.84 11 9.81 4.68 8.36 9.79 7.88 9.09 7.33 10.3 7.84 6.68 8.09 12.4 6.83 9.56 7.08 1.9 9.22 10.6 9.6 8.98 8.14 8.55 6.6 8.69 3.28 7.98 2.85 7.82 8.44 8.84 9.49 10 10.6 2.61 9.26 7.84 8.04 9.74 6.31 9.2 6.16 7.6 -0.58 8.49 5.02 10 7.27 3.02 12.3 7.71 11.7 14.6 7.76 9.68 10.9 8.79 8.22 2.97 9.74 8.24 5.21 2.71 6.52 10 9 7.07 6.37 6.52 4.67 9.8 9.46 8.9 10.6 9.75 9.85 7.13 3.06 9.11 3.28 8.71 8.1 11.1 7.92 -0.06 11.3 9.27 10.1 7.71 7.32 10.5 11.6 5.71 5.79 9.55 -0.71 1.8 8.41 7.39 2.22 8.87 3.58 7.66 9.21 7.61 3.85 3.2 7.28 8.7 5.76 8.9 2.81 7.41 7.24 9.88 9.44 8.09 7.68 8.03 11.1 9.71 5.37 6.69 7.53 8.52 7.47 10.6 4.01 9.64 5.75 11.6 8.22 8.67 5.51 10.8 9.42 11.8 9.58 11.3 5.34 8.76 11.7 1.58 8.11 -0.59 6.38 7.89 5.94 9.62 3.88 -0.33 4.9 4.62 5.89 6.61 2.41 2.21 7.33 10.6 -0.45 9.9 10.5 8.17 11.2 8.06 5.51 6.75 6.74 7.04 12.2 9.52 11.4 2.2 8.13 12 9.36 7.1 9.21 8.81 -0.51 6.02 9.79 1.49 11.3 10.7 8.63 -0.23 12.1 7.59 4.91 8.88 8.78 4.92 10.6 9.54 2.93 4.51 10.6 9.11 3.18 7.71 9.14 6.09 9.83 10.5 10.9 8.77 8.79 8.82 8.8 8.72 9.92 10 9.06 10.1 8.59 3.1 9.87 10.5 10.5 8.62 10.2 3.55 11 11.7 10.7 8.27 5.38 10.9 12.7 7.7 5.69 10.5 8.38 4.46 7.99 8.89 10.4 12.8 9.71 3.42 8.95 9.13 7.15 8.49 7.83 4.71 10.2 11.8 5.91 3.53 8.3 7.26 7.85 2.95 10.4 2.71 7.2 6.88 9.37 7.47 8.17 6 3.78 5.24 11.4 8.97 2.13 9.15 8.82 8.57 9.73 10.1 4.7 3.47 7.16 11.1 8.52 9.55 10.1 11.1 8.68 9.27 10.6 5.17 9.86 9 8.87 10.3 7.78 3.16 9.46 7.44 7.24 7.93 -0.48 11.3 9.71 8.92 10.1 6.96 8.87 10.4 10.1 -0.96 11.2 10.1 10.1 6.24 3.85 10.7 13.2 1.02 9.91 0.9 10.8 2.5 10.2 1.01 6.39 -0.54 3.24 7.11 3.6 8.71 10.5 11.7 8.91 -0.74 12.4 7.87 9.52 8.32 3.33 7.5 10.2 4.28 4 1.08 9.63 9.5 9.17 11 2.9 10.7 7.34 9.44 9.12 11.2 11.6 6.26 6.69 10.5 4.2 9.2 10.5 6.12 1.48 6.66 -0.52 11.5 7.49 10.1 3.09 7.01 8.04 11.3 -0.19 5.26 4.44 8.57 7.79 4.85 8.52 9.36 7.77 10.6 6.22 3.54 5.18 11.4 4.3 9.23 6.81 6.65 7.32 11.6 7.8 9.99 10.9 3.47 9.38 9.49 3.4 9.87 9.79 10.8 8.63 9.81 7.64 9.51 5.89 6.21 4.03 9.97 -0.07 11.7 11 3.73 11.4 9.29 6.7 2.42 8.81 5.2 12.4 7.49 6.51 8.46 8.16 5.85 7.6 10.1 3.93 6.38 -0.43 8.41 3.61 8.43 7.97 8.6 7.7 8.62 12.3 11.2 1.41 10.9 3.37 5.05 8.64 6.41 9.36 7.86 6.05 8.44 6.23 -0.46 8.13 8.88 6.54 9.75 8.21 3.24 7.62 9.3 10.8 4.87 7.14 9.56 9.29 3.11 9.38 8.8 4.67 9.78 4 7.47 7.98 5.83 8.18 8.32 11.9 12.4 9.83 6 7.71 7.52 -0.45 10.5 12.1 10.6 9 8.26 1.24 6 7.57 7.83 10.6 9.52 8.13 5.42 11.8 9.67 13.1 8.84 4.7 10.1 8.87 10.3 11.4 10.1 11.4 9.93 12 9.58 9.54 7.59 9.68 10 10.3 7.71 6.43 7.83 12.1 11.7 10.1 10.3 9.5 2.31 11.3 8.32 7.53 11.9 11.2 12 9.74 8.75 10.7 12.6 10.6 10 10.3 4.06 5.07 10.3 11.1 9.97 7.94 10.5 5.94 9.9 9 6.78 9.62 10.7 10.4 7.92 10.4 9.82 9.45 11.4 8.99 7.8 10.3 12 9.81 3.47 9.06 11.2 6.64 3.35 12.3 9.52 13.8 10.6 10.1 7.25 7.69 10.8 8.81 10.4 11.5 11 6.23 11 8.91 6.79 10.2 7 6.81 3.44 8.43 3.7 9.31 11.1 7.87 -0.53 12.1 9.01 5.85 10.2 9.95 8.62 12.1 10 8.98 9.19 10.1 9.1 9.1 7.88 8.25 10.4 2.31 9.67 10.3 9.69 8.56 10.1 9.22 8.43 10.4 11.3 13 7.08 10.1 9.59 8.92 9.97 5.43 11.5 14.3 9.28 1.05 10.1 8.72 8.63 10.3 9.49 8.92 10.3 9.53 11.7 7.87 9.9 9.53 9.18 11.6 9.62 7.39 9.98 12.5 5.26 11.3 9.47 8.43 9.53 9.02 7.7 10.3 10.3 7.44 6.56 3.25 10 10.3 9.37 11.1 9.28 7.01 6.47 5.03 10.2 4.34 8.12 9.07 8.73 4.45 10.1 4.76 10 6.94 15.1 3.98 2.9 8.9 10.8 8.46 8.71 9.42 5.86 9.35 9.13 6.01 10.5 7.85 9.4 10.7 4.94 7.91 9.52 4.61 12.3 7.57 9.8 6.54 11.1 8.32 10 8.46 12.8 4.22 5.01 6.38 5.35 8.49 9.86 8.39 11.8 6.53 12.7 10.4 8.12 9.76 9.65 8.09 10.7 12.9 6.97 8.21 10.7 11.1 10.7 10.9 12.1 9.3 9.8 7.37 10.6 7.93 12.2 5.72 11.1 9.87 7.74 8.95 8.33 9.61 9.88 11.3 10 11.1 10.2 4.32 9.91 11 5.53 11.1 12.9 11.8 11.7 9.51 10.1 0.89 11.4 8.27 10.2 10.9 7.7 9.32 8.41 8.96 9.75 8.29 11.3 10.3 6.2 10.3 10.1 9.88 6.26 8.19 5.4 10.7 9.81 8.6 3.64 9.91 3.21 7.78 10.2 6.44 9.75 3.5 7.95 8.69 10.6 6.84 7.85 9.93 7.35 8.97 7.73 6.21 8.67 8.2 8.11 7.52 8.8 8.66 8.34 6.54 9.87 10.5 5.52 5.54 7.17 9.88 11.6 9.23 10.6 9.67 9.57 8.2 10.4 9.06 10.7 10.1 9.95 10.7 8.27 8.23 9.39 11.4 7.13 9.87 7.69 11.1 10.3 11.6 5.04 7.9 9.79 8.33 7.74 10.5 11.3 2.63 9.7 7.14 5.52 10.1 9.33 9.8 9.15 7.52 10.3 10.9 9.44 10.9 8.18 5.39 8.61 10.1 9.11 6.96 9.62 12.2 11.1 9.36 12 9.86 8.98 8.27 7.95 10.2 11.1 8.16 10.1 8.97 8.88 9.29 5.93 6.3 8.72 8.88 7.32 10.4 12 1.13 7 8.31 9.94 5.2 7.48 12.3 9.19 8.49 9.69 1.94 2.78 2.97 7.69 9.6 10 9.48 12.6 8.99 6.96 4.5 11 9.46 9.68 10.9 3.04 10.3 9.11 8.36 6.94 10.1 12.5 9.68 8.57 5.98 8.84 10.7 8.81 10.8 12.7 9.16 11.8 1.82 11.6 8.05 10.6
-TCGA-C8-A1HE-01 6.36 6.1 5.05 8.31 6.15 8.18 4.07 2.89 5.93 3.58 6.42 7.01 4.44 2.89 0 8.57 10.7 10.1 6.79 10.6 7.93 8.4 10 2.61 9.49 8.27 4.19 9.42 4.14 8.1 5 5.48 5.12 5.38 3.62 0 2.08 5.68 2.99 3.85 5.15 3.38 5.87 0.62 7.54 1.88 0.85 4.4 11.3 6.85 4.32 6.64 9.34 11.6 6.25 0.62 5.44 2.08 7.35 5.57 8.36 6.45 7.36 7.33 3.13 2.08 5.14 9.92 9.73 3.9 5.73 6.91 1.38 3.65 5.61 5.82 5.47 5.64 2.82 0.85 4.72 1.23 1.84 7.76 6.63 0 5.91 1.38 0 2.99 10.9 5 6.65 4.65 5.78 2.84 1.05 3.48 4.1 0 4.26 5.04 2.33 5.32 2.33 2.08 6.15 8.05 7.54 6 0.34 1.77 11.4 5.46 6.52 1.23 2.78 3.74 1.98 1.05 3.98 5.31 1.65 2.54 0.62 6.83 0.34 1.98 3.04 14.2 3.23 2.73 5.05 7.48 2.47 1.38 4.18 1.98 2.28 7.4 7.73 10 0.62 2.16 4.4 12.7 0.34 10.9 2.25 1.38 5.55 0.34 4.77 10.9 10.8 1.52 0 4.99 9.63 7.76 6.27 7.53 3.71 0.62 8.93 5.77 7.17 3.79 6.7 1.88 10.1 10.7 3.38 4.55 3.48 3.68 4.9 3.43 8.71 4.21 5.16 7.47 4.8 5.53 4.79 2.61 4.55 0.62 7.49 4.73 9.28 9.74 3.18 2.61 5.54 6.92 5.92 8.69 8.94 9.25 6.2 11.4 10.3 10.2 7.72 7.73 5.3 10.4 11 11.6 7.64 11.5 11 10.7 9.68 10.8 7.88 10.4 7.12 10.2 9.19 8.98 11.5 10.7 6.88 9.3 1.23 9.99 9.08 13.2 6.94 2.54 8.31 11.3 8.81 6.54 9.27 7.81 10.7 1.52 10.5 5.74 11.4 11.6 12.1 10.9 12.2 12.9 6.31 11.7 7.71 1.38 6.55 8.86 8.89 11 10.5 12.1 0 11.9 3.34 11.3 8.66 10.1 10.7 11.5 8.45 10.6 11.2 8.55 7.22 9 9.5 9.59 12 10.7 0.85 12.5 10.3 9.62 11.9 10.3 10.8 7.95 8.41 11.8 12.7 8.45 11.2 10.9 4.98 4.22 10.2 6.4 10.6 10.7 8.7 12.1 7.03 7.83 9.96 12.3 11.9 9.28 10.6 11.2 0.34 8.68 9.09 9.81 13 9.46 3.52 8.19 6.77 10.6 10.8 1.88 8.49 5.94 10.5 11.4 9.9 8.73 10.4 8.9 10.6 9.44 9.85 9.24 9.3 8.55 11.3 8.33 10.1 10.9 8.59 8.07 8.24 9.35 9.54 8.92 9.77 12.4 9.08 13 7.49 9.71 11.9 9.26 10.2 5.6 10.8 1.05 4.44 9.62 6.45 10.6 3.34 8.05 5.81 10.7 9.87 10.6 8.89 7.4 7.43 2.94 7.59 7.75 4.94 11.4 9.1 11.6 10.8 7.07 8.15 11.3 0.34 7.67 9.12 8.75 8.48 8.34 10.1 10.7 5.66 8.94 6.89 10.6 8.99 6.44 9.38 9.61 7.01 11.2 9.99 10.9 8.95 6.08 7.64 11.4 10.6 9.39 7.29 9.92 10.5 10.7 9.58 9.6 9.2 6.23 9.73 9.02 8.68 11.6 9.31 9.67 7.92 5.85 9.61 6.05 7.19 11.9 6.5 10.9 9.97 9.98 1.99 10.6 11.4 13.9 8.83 7.75 7.03 6.55 8.25 8.58 6.45 9.69 9.91 12.4 10.9 1.98 11 3.74 6.61 7.69 2.08 9.12 5.52 8.24 5.66 11.6 8.01 8.57 6.75 10.5 3.74 7.23 8.03 10.5 11.5 2.61 9.5 8.67 4.26 5.87 6.91 9.05 6.52 4.75 7.37 0.62 10.7 9.9 8 10.4 10.7 3.04 13.4 11.1 2.66 10.2 7.28 5.31 12 8.32 7.35 7.91 3.55 9.27 10.5 5.27 12.4 8.16 6.05 8.92 6.64 11.1 11 14.1 8.3 10.9 7.74 11 6.68 6.72 8.44 12.7 1.65 10.2 6.77 12.9 9.1 10.8 11.2 8.42 8.83 10.7 9.24 10.2 8.68 10.4 10.7 10.3 9.45 9.99 8.86 6.77 10.1 10.2 11.6 7.58 8.55 11.1 7.84 9.43 10.4 10.6 10.8 9.64 9.13 9.63 8.59 0 9.56 12.9 9.09 9.36 10.5 10.8 11.4 10.5 7.54 9.24 7.73 5.24 10.8 9.19 8.5 10.4 9.85 6.94 8.16 9.07 8.53 12.2 10.6 10.9 10.1 11.1 7.28 9.51 6.81 11.1 11.3 11.6 10 1.05 13.1 10.7 11.1 10.3 11.6 12.1 11.5 10.4 8.37 10.9 9.72 10.7 1.88 9.14 6.56 7.08 8.45 9.29 11.7 9.22 12.1 10.7 9.9 8.96 1.88 4.3 11.6 7.36 8.42 13.8 8.82 10.4 9.86 11.6 10.3 12 10.8 12.1 0.62 10.6 9.57 8 8.7 7.39 8.23 7.53 9.41 10 10.9 11 10.1 7.42 11.5 9.25 12.7 14.6 11.2 9.57 10.4 9.27 8.54 8.36 11.2 10.5 2.84 11.3 9.1 5.5 3.87 11.7 11.7 3.62 10.3 7.79 10.7 2.54 9.37 8.96 12.1 11.8 11.6 10.8 1.88 10.4 5.92 9.6 10.9 9.15 0.34 9.02 8.89 9.62 10.5 6.31 9.99 12.9 0.34 7.13 10.9 9.01 10.4 9.75 3.65 10.4 11.8 9.33 10.2 9.22 11 12.4 9.56 10.4 10.7 8.8 10.4 10.1 13.4 7.93 7.09 7.88 4.44 9.49 10.7 8.85 11.8 13.6 7.52 10.7 13.9 10.7 3.41 9.4 7.01 8.81 2.47 6.72 10.6 9.27 2.84 2.08 10.6 4.02 9.35 10.7 13.4 10.1 7.97 12 11 8.32 4.97 1.65 4.75 10.5 4.9 8.26 8.2 4.32 10.8 9.16 11.1 5.96 4.68 5.34 10.5 8.41 8.97 0.34 6.98 10.7 7.24 1.65 6.39 11.9 10.2 6.04 7.81 8.12 2.54 9.47 10.4 9.06 1.88 8.34 13.4 6.99 10.6 12.4 10 10.3 12.5 7.56 12.2 8.11 6.47 3.79 11.8 5.02 2.16 2.54 3.69 10.2 9.53 9.79 0.62 8.32 9.74 4.14 4.81 11 9.48 6.45 6.53 10.4 9.97 5.04 11 9.26 12.4 11.3 10.4 12.7 12.1 12.1 10.7 8.89 9.15 11.9 9.44 8.2 9.15 8.44 10.2 6.93 12.3 12.3 7.33 7.96 5.6 9.32 10.6 6.57 6.12 6.91 12.6 10.5 0.62 0.62 9.62 8.94 11.9 11.9 5.49 7.68 9.17 0 7.52 6.53 11.3 7.26 11.3 9.41 9.69 1.23 2.4 1.05 10.4 9.65 6.24 12.1 9.77 8.48 5.37 10.2 11.6 3.68 6.95 4.77 7.63 9.51 8 11.1 9.4 10.8 5.57 4.92 8.13 4.36 9.1 0 1.98 12.6 10.1 1.65 1.88 12.1 2.99 8.02 7.51 4.28 2.47 9.66 8.21 11.8 9.39 3.04 9.25 10.7 8.61 10.3 10.3 10.5 8.99 9.42 9.31 3.13 8 1.05 12.2 9.54 14.2 0 10.9 10.2 10.9 9.66 12 8.09 7.41 11.5 10.3 9.7 0.85 11.8 2.25 12.3 4.82 9.99 9.86 7.22 6.89 8.89 12 11.9 10.3 9.2 9.49 11.2 6.93 11.3 10.2 9.99 9.74 12 12.8 10 12.9 12 11.5 6.98 11.6 9.74 9.63 7.91 10.4 11.3 12.5 13.2 10.6 10.5 10.1 8.32 9.26 10.6 8.11 8.4 13 7.49 11.2 10.3 10.7 11.5 2.67 3.55 12.3 7.92 9.43 5.92 9.83 7.74 8.17 8.22 8.38 5.7 1.08 11.7 8.4 9.36 3.13 12.6 10.6 11.1 9.4 8.62 7.67 7.93 8.9 9.99 8.99 4 4.83 0.62 6.75 10.5 12.7 7.45 13.5 8.4 7.42 8.68 7.66 8.92 9.26 8.71 8.32 8.65 9.92 11.4 10.8 10.8 9.16 9.58 12.8 12.2 11.2 9.72 7.18 1.38 9.88 7.57 8.19 9.16 9.81 9.3 12.3 10.2 8.51 10.4 5.59 4.9 10 11.6 12.9 8.39 7.79 11 9.26 8.35 6.14 9.9 3.41 6.82 8.66 13.1 7.78 12.4 8.8 8.96 9.86 8.16 5.26 9.77 6.77 10.2 8.69 8.79 8.37 9.21 8.59 9.3 8.85 6.64 9.61 3.85 9.61 9.3 8.76 0.85 9.14 2.89 7.42 6.94 9.64 2.99 9.83 10.5 0.85 10.9 9.19 10.6 3.98 11.1 6.97 7.19 0.34 5.64 8.95 9.71 7.23 6.33 4.18 7.78 6.89 9.45 9.13 8.15 11.5 9.51 5.94 9.53 9.53 9.23 12 9.81 8.05 9.49 5.33 11.2 6.22 5.6 11.8 10.8 7.61 8.59 6.04 11.5 4.09 10.1 6.07 6.05 8.89 9.66 11.2 0.34 8.91 9.4 8.27 8.06 9.38 11.4 11.8 11 8.29 7.73 9.09 5.29 9.79 10.7 9.98 11.3 10.9 9.36 8.44 9.09 0.86 9.01 8.49 10.9 5.1 11.8 12 10.9 9.22 6.65 9.54 11.7 6.9 9.4 9.63 10.2 8.29 7.87 12 10.2 7.82 8.72 9.44 10.4 5.83 6.1 3.74 6.23 9.17 5.76 8.85 8.08 9.54 1.23 1.88 10.4 10.9 8.5 9.58 9.6 8.55 7.83 10.7 3.52 11.8 7.83 7.5 5.97 10.7 8.02 9.56 8.94 7.62 5.01 1.38 4.75 8.08 11 9.02 7.68 8.56 4.62 10.4 8.6 9.77 9.16 7.66 2.25 7.4 2.99 10.2 8.44 8.35 5.53 9.02 9.31 8.28 10.8 10.3 9.79 9.76 7.5 8.51 11.2 8.31 9.14 9.5 2.67 10.9 5.26 9.53 7.82 7.07 8.54 11.5 4.7 10.9 7.43 5.05 11.3 4.18 0.34 9 9.85 1.77 10.8 11.9 9.76 9.25 8.17 10.3 10.4 11.7 11 7.41 9.51 7.32 9.2 10.8 10 2.16 11.1 7.37 10.4 9.67 12.1 10.2 12.6 11.2 5.87 8.08 9.31 1.77 11.4 10.2 8.92 9.89 8.38 9.95 7.25 9.56 1.23 10 8.19 6.88 1.38 7.28 7.47 7.64 8.6 0.54 4.81 6.92 9.93 2.4 5.66 8.22 11 6.4 9.04 2.61 7.22 8.1 2.54 4.42 10.1 5.66 4.74 2.16 6.23 8.89 5.46 0.62 8.92 3.76 6.11 0.85 0.34 7.66 2.94 9.14 7.25 9.37 6.94 6.66 7.67 9.27 5.76 4.3 11.3 6.9 7.96 8.8 7.88 2.54 8.76 0.62 7.94 9.32 4.28 6.78 8.35 7.65 8.91 8.11 5.39 5.66 6.05 8.96 10.8 0.85 9.15 8.35 4.87 5.35 10.1 9.6 8.84 8.18 9.61 10.2 9.48 9.13 7.59 4.47 9.03 1.05 8.83 4.09 9.56 11.9 7.08 9.3 8.6 11 9.36 8.47 7.43 7.14 9.74 9.67 5.92 1.38 9.01 8.55 7.84 6.15 1.98 6.92 7.64 6.61 8.95 10.5 9.66 3.98 4.32 8.36 5.68 11.7 12.1 6.06 2.08 3.52 9.56 8.49 6.87 7.66 10.2 7.83 9.66 9.22 7.83 10.3 8.07 6.53 7.83 0.85 1.52 10.8 4.45 7.84 8.5 7.74 4.74 10 5.14 0.85 5.48 9.5 8.06 1.88 9.75 8.81 3.41 6.3 6.75 2.4 2.67 6.87 6.31 10.6 9.51 6.18 8.81 6.97 11.2 8.23 10.3 8.08 10.1 11.5 0.85 8.07 3 9.08 7.95 11.2 8.72 7.24 9.8 6.55 8.85 5.9 5.6 2.99 4.64 1.38 8.6 4.4 6.43 4.24 3.52 0 8.31 0 0 9.21 12.2 4.74 8.44 8.75 0.62 5.09 7.42 6.23 9.56 9.58 3.68 8.34 11.2 5.06 3.13 8.88 9.61 10.6 5.21 9.29 9.61 8.8 0 8.28 5.18 2.08 3.13 8.17 9.33 7.16 9.89 2.89 6.67 7.4 12.6 9.66 10.2 1.05 2.84 6.92 10.2 9.46 7.21 8.22 12.4 1.88 7.49 10.4 5.35 7.62 9.42 7.03 8.98 0 6.03 1.05 7.36 0 7.86 9.22 6.14 7.67 7.85 10.3 5.22 1.88 1.77 8.21 7.63 9.37 6.7 8.4 6.76 10.1 8.27 4.6 7.49 9.72 12.5 12.7 7.4 0.62 5.42 8.96 6.86 0.34 11 11.1 8.71 8.06 9.79 4.16 6.51 9.39 10.2 12.1 7.04 10.3 5.78 5.14 7.74 8.1 10.4 2.67 5.91 6.2 8.28 9.67 10.6 3.65 7.01 11.5 4.86 2.67 6.74 10.7 9.48 7.03 8.68 3.26 7.77 13.8 2.16 9.76 8.14 5.25 9.86 8.09 9.52 5.35 7.77 10.3 1.38 1.05 2.54 2.79 2.47 5.66 3.62 6.37 6.35 9.53 8.68 7.93 7.78 8.81 7.62 6.41 11 9.55 9.42 4.8 8.77 8.43 9.41 8.39 7.49 9.93 13 2.25 9.76 10.9 10.5 2.73 7.68 5.9 7.31 7.55 4.6 6.86 7.03 5.87 3.65 5.14 8.83 5.29 2.73 8.74 6.28 6.64 8.23 9.51 6.23 6.97 0.23 9.67 1.38 7.04 6.35 6.37 1.23 4.78 6.83 9.31 10.9 0.34 8.9 8.76 7.5 2.73 7.44 7.89 9.34 11.1 9.69 5.05 8.31 8.68 9.45 10.8 11.6 3.65 1.23 10.6 8.86 7.08 6.6 2.16 7.08 10.1 9.24 6.38 3.04 0.62 5.19 1.23 6.25 9.66 8.74 9.59 8.64 10 6.78 4.09 9.61 9.14 7.46 8.29 9.49 3.95 7.11 11.7 8.35 8.6 1.52 7.78 2.54 6.8 9.35 0 8.63 2.84 7.69 10.4 1.38 8.76 8.5 5.73 6.35 8.23 8.57 6.41 8.49 6.61 8.07 7.13 5.11 8.27 1.98 2.89 7.53 5.5 2.16 0.62 4.75 7.42 7.12 8.78 8.59 7.32 1.38 10.1 8.79 6.72 9.74 8.95 6.73 6.08 7.99 8.47 6.31 7.82 7.79 5.61 10.4 7.94 1.88 12.8 7.81 3.95 2.84 6.97 8.24 11.3 8.29 7.17 8.61 3.41 1.98 7.35 3.09 3.82 1.23 7.46 0.62 9.27 0.85 3.18 5.8 8.58 5.38 9.07 7.74 3.26 10.3 10.2 6.01 8.02 9.22 2.45 1.23 8.8 5.13 7.58 4.6 7.8 15.8 8.51 9.06 9.15 15.4 10.4 1.52 0.85 7.2 10.1 4.82 10.8 2.47 8.7 7.51 15.3 7.01 10.1 12.5 4.3 9.32 3.04 8.87 11.1 8.42 8.47 0 11.2 7.68 7.12 8.32 12 2.73 7.41 6.36 2.08 1.77 6.31 3.38 3.98 10.5 10.8 6.44 7.4 6.17 5.7 12.2 8.9 12.1 9.2 9.32 12.6 6.32 9.03 11.7 8.84 12.1 9.48 2.54 13.5 8.5 6.4 8.31 8.06 9.16 2.25 7.99 9 9.52 8.04 10.9 8.89 8.8 3.87 9.77 6.92 3.65 7.97 8.3 7.43 2.84 1.05 11.1 5.97 10.8 11.3 6.04 7.12 1.23 8.72 12.8 7.54 6.63 1.38 4.02 6.08 10.9 9.07 1.38 7.99 8.79 7.95 8.67 10.5 5.47 8.45 9.36 4.59 5.35 9.12 3.41 8.7 6.98 8.87 8.74 8.31 4.07 6.09 0.34 0.85 7.54 1.65 10.2 10.6 0.34 10.3 13.9 7.94 3.26 8.03 12.7 0.34 7.49 9.13 6.38 11 8.85 7.71 0 10.5 9.02 0.85 9.68 2.94 0.62 8.62 8.8 7.39 9.23 6.12 9.33 0.85 0.81 7.61 9.71 7 7.87 1.05 4.65 0 6.43 9.11 7.25 11 11.7 8.64 10 5.5 10.4 1.98 8.62 3.9 4.57 7.73 3.34 5.26 6.13 0.34 9.99 3.79 8.45 11.7 10.3 11.2 9.21 1.65 2.61 8.7 6.56 11.4 4.32 8.27 11.3 10.8 7.41 8.74 2.4 7.69 8.27 5.16 9.78 3.85 8.38 12.8 9.2 9.92 12.8 10.6 5.17 5.23 10.5 5.42 10.4 8.84 5.85 11.6 11 8.65 10.4 2.01 5.92 8.02 9.33 4.52 5.97 1.38 9.16 0.34 10.1 12.2 0.85 5.59 4.6 5.33 7.97 0 12.5 1.65 0.62 10.2 1.23 5.68 11.8 8.32 10.8 8.27 8.45 3.95 6.5 4.73 8.17 5.93 4.75 5.78 10.3 9.73 9.21 10 8.67 8.6 3.04 4.62 7.46 10.4 0.34 4.32 10.8 7.06 0.62 11 7.89 6.91 4.84 8.06 7.93 13 6.88 0 5.61 10.6 7.21 4.73 5.4 10.6 9.66 7.13 4.97 11.6 8.3 1.23 11.5 11 8.06 4.09 10.1 6.71 1.98 7.97 5.71 9.49 8.59 11.6 11.1 5.96 1.98 2.08 10.3 7.54 7.38 11.2 11.3 7.83 7.18 4.24 9.38 8.97 10.2 5.26 8.81 9.56 12 3.76 7.42 11.5 2.16 2.99 10.4 10.5 7.67 0.34 8.99 7.28 3.87 1.23 10.5 3.77 3.81 4.85 9.14 7.33 4.18 5.53 6.68 8.89 4.03 6.32 10.3 5.65 9.23 6.15 0.62 10.8 10.3 1.52 10 8.89 3.46 7.27 7.52 6.91 6.21 5.06 9.54 4.16 11 1.52 9.83 1.88 7.52 6.98 3.45 1.65 12.7 7.38 6.4 1.38 2.16 3.9 0.62 3.41 7.8 7.38 9.23 1.05 9.68 11.2 8.89 11.7 8.98 10.3 9.94 8.84 2.61 11.2 11.2 10.1 9.22 9.74 10 2.94 3.52 8.07 8.4 3.9 6.7 6.58 7.28 8.53 9.59 7.11 6.56 7.29 0 8.07 9.43 9.25 10.8 9.6 6.53 8.77 4.55 3.34 8.41 8.64 6.21 4.49 12.4 8.27 6.33 8.12 7.83 2.25 2.33 5.94 3.34 9.76 6.56 1.38 4.16 7.39 4.49 9.66 4.18 7.52 7.08 10.9 8.48 8.36 13.3 2.61 1.52 8.1 11.6 6.09 7.52 10.7 6.26 3.3 8.96 8.8 9.21 0.34 6.51 7.59 7.33 9.53 10.3 6.45 5.91 8.66 3.91 6.7 6.43 6.34 2.99 8.1 0.85 0 11.2 9.71 7.33 8.81 2.84 4.05 9.05 12.4 2.67 3.38 9.73 0.85 3.45 2.94 8.34 1.05 8.45 4.94 6.45 8.57 1.52 11.7 8.38 7.12 4.84 7.66 5.97 6.37 1.38 10.4 8.22 6.02 0 5.81 0 7.53 9.15 0.85 0.62 9.34 0.85 2.08 4.5 1.05 6.23 0.85 8.21 1.98 6.98 11 5.53 9.03 3.93 8.1 9.07 5.86 13.1 1.52 7.1 7.07 8.98 11 8.31 9.15 1.88 1.23 5.46 1.98 3.71 6.99 5.33 4.32 10.4 4.5 4.54 9.36 2.54 4.09 3.26 7.69 8.54 8.59 1.98 9.71 5.58 8.78 2.54 11.7 8.87 7.03 7.27 6.56 6.77 3.58 0.62 9.44 5.77 9.45 8.07 6.5 9.18 6.17 6.45 7.79 6.26 9.77 9.04 3.22 6.93 7.02 6.81 9.16 5.61 6.54 8.59 7.41 8.28 8.9 5.94 4.02 6.76 7.82 6.84 4.45 6.82 12.1 2.33 9.79 3.05 8.44 2.08 8.19 9 7.26 9.54 9.27 3.09 2.7 10.8 3.98 1.23 3.82 10.1 11.3 5.11 1.38 10.5 6.65 7.49 8.78 3.52 11.4 10 0 8.91 6.65 6.12 3.55 8.74 0.34 3.68 3.26 8.64 9.64 9.07 11 6.38 8.78 8.75 3.41 2.54 13.5 11.2 4.09 8.23 5.15 6.16 13.9 10.1 9.59 0 8.18 13.7 0.85 7.01 7.87 1.23 0.85 2.61 2.25 4.78 2.54 7.86 4.24 0.85 7.86 10.8 7.5 6.43 8.46 1.35 6.85 4.18 8.94 6.87 5.5 7.11 3.04 9.15 7.02 9.5 2.89 6.78 2.16 9.39 8.54 11.7 5.66 8.28 8.81 3.76 3.34 7.54 6.14 13.8 9.07 15.8 7.95 3.04 0 2.84 10.2 8.07 5.71 3.34 7.62 1.05 7.95 7.72 8.3 11.1 7.02 0.34 8.07 1.98 3.48 3.27 11 2.89 8.87 5.58 5.67 9.88 0 7.39 2.4 5.57 2.73 5.17 7.95 1.52 5.78 8.07 10.4 11.7 5.97 3.85 5.55 0.62 4.65 0.34 10.5 2.61 9.32 8.46 7.35 9.57 5.12 10.4 7.48 10.2 7.61 1.05 5.27 1.65 7.53 9.79 9.82 10.2 8.57 7.44 11.4 3.55 7.52 10.7 10.8 6.94 6.1 8.87 0.85 8.87 7.98 10.1 8.37 5.04 6.68 1.52 8.8 1.05 7.95 0.85 5.07 11.5 9.07 4.71 4.4 6 8.39 1.23 6.93 9.57 8.42 9.33 9.28 11.5 7.49 8.2 11.5 8.5 7.36 9.07 10.8 9.32 5.79 9.64 6.99 3.22 4.63 6.21 10.4 7.28 6.43 5.92 8.18 0.85 8.67 4.28 11.4 9.22 5.35 4.07 5.27 10.4 0 5.5 3.68 6.21 7.21 9.51 4.81 0.85 7.78 5.38 0.34 7.51 10.6 4.81 10.4 9.26 3.91 4.28 8.25 4.22 7.86 7.12 7.48 8.75 10.1 0.85 3.52 4.28 8.86 6.36 6.42 9.68 14.3 5.28 10.4 2.84 2.33 10.2 2.5 0 9.55 6.32 7.03 8.02 7.84 8.9 7.66 6.02 0 12.1 6.45 10.5 8.21 7.41 3.55 0.62 10.3 4.2 4.57 2.35 8.59 9.75 5.11 9.42 0 4.18 4.3 6.02 7.65 6 10.1 6.63 1.52 7.09 0.34 7.72 4.16 10.7 4.98 9.89 3.09 4.86 5.15 0.34 6.95 9.72 7.42 6.32 4.97 8.33 9.37 0.86 8.78 6.3 3.09 0 4.34 0.62 6.26 6.53 8.73 5.39 11 7.62 10.1 4.45 10.6 4.77 0 8.25 3.55 3.62 10.6 2.4 1.88 10.7 10.6 1.52 11 3.13 11.6 1.38 1.52 11.3 9.44 2.99 4.16 10.5 9.82 0.34 7.7 12.2 7.21 9.33 5.49 8.72 3.18 4.7 5.54 8.38 8.53 11 11.9 5.03 8.78 3.9 8.11 8.25 2.54 4.93 10.4 9.13 7.73 8.44 4.71 3.38 10.8 1.23 7.07 11.2 0.34 2.84 9.35 1.38 5.11 7.71 7.98 7.47 11.6 11.3 1.77 11.9 7.54 8.02 9.54 5.91 11.1 3.3 1.38 8 1.05 1.52 1.23 5.05 5.36 4.98 10.3 8.35 10.3 8.17 7.48 7.4 9.43 6.86 8.31 6.73 9.01 6.87 1.38 13.5 6.57 8.64 8.75 7.31 7.62 2.99 7.62 6.83 4.85 8.05 9.05 3.65 4.28 7.82 9.85 5.78 8.81 7.21 4.89 9.26 1.77 12.7 6.27 9.73 9.65 10.1 1.38 6.95 10 1.38 7.21 7.85 9.89 10.1 12.4 11.2 0.62 8.06 0 12.9 3.04 8.85 0.34 5.51 0 4.12 1.98 3.85 1.86 7.95 1.98 1.77 7.06 10.7 8.03 13.1 11.7 5.77 3.34 2.25 2.08 8.93 7.26 11.2 7.69 13 13.6 1.88 3.41 11.8 2.99 6.87 10.4 1.23 10.7 1.38 8.15 12.4 12.4 2.61 8.68 7.09 10.6 0.85 7.91 6.74 11.9 10.2 5.39 8.08 8.73 7.08 7.04 5.61 8.81 9.83 1.77 10.6 3.95 10.4 4.62 2.79 0.85 5.3 6.65 5.71 8.44 2.4 7.75 6.47 6.56 8.65 10.7 2.08 9.26 7.1 3.58 4.8 7.47 8.75 1.65 2.08 6.96 9.71 2.25 6.41 6.89 4.05 0.62 9.4 8.21 6.18 4.45 6.72 8.99 6.31 0.62 2.4 3.18 8 1.23 0 8.21 8.71 4.44 10.2 5.61 1.65 10.3 3.68 10.7 7.38 5.1 2.73 9.54 8.9 8.19 9.79 4.52 10.5 0.85 10.4 8.78 2.25 9.52 0.62 8.75 12.1 6.56 10.6 1.05 9.79 10.2 9.36 9.54 14.8 8.39 7.26 5.83 9.57 11.1 11 11.3 6.96 5.43 8 7.92 10.2 9.43 10.7 10.8 4.78 10.9 8.4 10.9 6.29 5 3.52 3.34 8.53 7 7.69 6.82 6.04 8.43 8.51 7.48 5.64 1.98 4.63 3.58 5.77 8.31 3.62 3.22 11.1 13.4 10.7 5.71 11.6 11.1 11 10.8 6.36 9.12 5.92 11.3 8.43 3.52 10.2 7.97 9.52 11.9 3.65 9.51 8.97 5.49 8.56 9.96 10.8 0.85 10.6 2.4 0 9.2 11 5.89 3.74 12.2 7.69 9.21 11.4 7.86 11.2 15 10.3 6.25 9.47 6.9 7.89 8.63 8.09 10.6 6.41 10.6 11.9 10.3 10.6 8.28 4.02 8.16 0.62 9.44 8.97 8.88 11.1 11.1 10.1 6.93 9.47 5.64 8.85 8.95 6.75 8.23 8.8 6.75 6.2 12.2 0 9.91 10.9 11 10.2 10.5 4.55 9.72 8.35 8.44 9.76 6.74 8.79 11.5 7.6 9.26 10.5 16.4 1.98 10.4 8.6 9.54 7.7 8.62 8.09 11.3 11.7 13.7 15.3 10.1 12 7.56 8.74 7.51 8.78 9.25 6.51 8.2 5.48 11.7 8.78 9.81 10.9 6.76 9.9 6.9 7.59 6.92 12.2 9.53 3.62 6.1 9.02 1.38 8.6 5.05 6.54 8.56 5.26 7.98 11.1 9.68 2.67 9.94 9.6 8.6 10.8 1.88 9.09 11.3 10.9 2.75 10.1 8.08 6.28 4.48 12.5 4.05 7.35 7.38 5.95 1.05 6.8 1.34 10.7 1.52 4.54 6.73 7.8 6.98 12.8 5.36 7.81 9.26 3.09 6.27 10.1 12.9 7.62 13.1 9.48 8.8 12 13 14.5 12.4 11.9 0 7.84 0.34 10.2 5.14 7.07 10.9 0 1.38 2.4 9.61 1.98 11.9 7.84 4.36 2.16 9.67 6.61 6.22 9.72 1.88 9.6 2.99 8.47 7.58 11.9 7.31 11.2 8.14 13.1 10.2 9.22 1.23 2.99 9.45 9.58 5.49 9.52 11.1 6.79 3.45 2.25 2.61 10.9 10.2 3.97 9.61 6.66 0.51 8.06 2.36 8.01 2.73 9.32 0.85 0.85 3.09 9.8 7.52 5.2 4.59 9.99 9.46 8.27 5.36 11.2 6.42 1.88 4.49 8.78 9.62 7.81 8.24 7.33 9.5 3.82 9.36 8.44 8.02 9.92 10.8 5.78 8.32 4.32 9.2 6.62 8.43 3.18 11.1 7.56 5.26 8.66 8.1 11.4 7.21 8.96 7.08 3.55 12.4 3.22 7.36 5.56 9.07 5.43 10 7.58 8.53 11.7 2.47 2.33 9.79 9.89 4.52 0 11.9 7.08 1.52 4.26 8.27 2.89 11.2 8.57 8.44 7.2 8.36 10.5 7.09 5.17 7.11 7.7 5.91 11.1 10.6 1.38 12.7 7.04 11.5 3.13 1.05 0 8.78 5.62 8.48 7.01 12.8 8.96 9.08 10.7 6.65 7.09 13.7 9.01 3.3 1.88 0.62 11 7.14 6.24 7.6 8.28 7.34 5.75 12 10.2 10.8 8.66 10.1 5.57 7.16 9.82 11.2 10.1 4.62 8.57 10.6 10.6 8.42 5.56 1.05 6.83 4.18 6.95 0.34 11.3 9.27 6.1 3.87 10.1 4.36 12.2 7.12 11.3 8.97 6.89 7.14 8.36 9.21 0.62 6.48 10.5 12.4 10.1 10.7 9.59 1.65 7.43 13.4 2.16 1.77 13.9 9.76 8.38 1.23 11.7 2.61 9.03 10.2 8.67 10.8 9.13 9.36 7.84 10.8 11 7.9 10.2 10.4 16 10.6 10.8 1.65 8.27 1.23 11.6 9.6 8.28 10.5 8.37 10.3 9.49 7.56 3.58 8.5 5.58 8.13 0.34 10.7 9.21 7.92 7.77 8.29 9.79 2.47 12 9.77 10.5 5.2 8.1 9.21 1.65 6.05 12.3 7.27 9.72 7.92 0.62 10.6 7.86 9.31 9.2 9.07 4.12 9.42 8.31 4.63 7.69 6.68 9.4 10.3 7.29 0 9.98 6.05 5.28 6.32 7.9 8.61 6.94 1.52 8.96 12.4 8.49 10.7 9.7 11.4 4.24 9.3 8.13 9.27 10.8 10.3 4.16 9.83 8.48 6.14 5.12 12.6 9.9 10 1.77 3.22 7.97 7.07 9.84 9.35 2.89 10.7 11.8 6.91 7.5 9.24 8.64 10.2 7.12 4.93 7.15 8.25 9.73 8.28 9.88 7.04 8.86 7.37 6.25 8.28 10.1 8.97 7.82 12.2 1.52 9.58 4.68 6.42 8.07 9 4.59 2.4 7.61 5.49 6.13 4.9 9.25 0 8.31 11 9.05 4 3.48 0 2.73 6.16 4.89 7.22 3.85 8.59 7 0.62 0 6.9 7.39 5.68 5.52 5.27 9.24 5.49 12.1 7.66 7.05 6.87 5.12 10 11 1.98 7.29 8.27 7.82 4.18 11.7 8.28 7.71 6.91 9.99 9.71 7.91 4.09 9.71 7.8 10 6.86 7.63 7.05 3.26 9.32 11.3 1.38 2.47 1.77 4.98 5.78 9.08 4.62 4.33 5.52 5.85 11.9 0.85 9.51 9.69 5.32 8.64 7.11 7.76 5.34 9.75 1.88 5.36 10.6 8.51 0.34 8.8 8.52 8.19 9.48 1.38 8.58 1.88 8.02 1.52 7.3 2.89 9.45 8.74 8.31 8.69 9.59 6.35 12.6 10.1 8.37 9.8 9.55 4.77 9.63 11.8 9.36 7.98 7.1 4.6 9.44 8.43 5.76 6.33 10.5 9.88 0.85 0 3.18 5.9 0 5.1 10.9 3.13 8.61 6.91 1.88 5.58 5.06 5.42 1.05 4.94 12.3 7.91 10.2 4.54 7.34 8.77 9.34 12 9.99 5.29 8.31 7.83 7.39 2.4 0.34 6.5 2.4 4.34 6.28 7.37 6.36 14.2 9.18 9.35 0 10.1 3.55 7.07 10.4 5.12 8.03 10.3 8.04 11.7 9.44 10.8 7.12 11.3 5.99 9.96 0.34 11.6 3.82 9.27 8.19 8.64 5.59 12.3 3.3 12.9 8.42 8.31 9.14 4.63 10.1 10.9 10.9 0.62 8.56 10.8 8.89 12.1 11.4 9.93 10.7 8.74 2.15 2.33 8.97 8.97 9.06 10.5 8.45 9.05 9.38 8.92 9.77 11.1 10.2 9.96 8.96 7.54 11.3 9.44 10.6 2.16 9.48 9.25 10.2 10.5 1.88 13 6.51 11.2 10.2 8.83 9.13 10.2 8.93 13.5 10.2 7.6 10.4 12 8.85 10.9 11.1 8.61 10.7 9.69 9.89 5.59 10.1 10.4 2.25 8.59 8.11 7.8 0.34 9.49 9.58 10.1 9.44 10.5 10.3 11.2 10.7 10.7 9.51 9.48 11 4.7 6.37 11.1 0.34 10.7 11.2 9.86 8.87 8.25 8.76 11.6 6.55 11.2 9.98 11 11.4 7.04 9.82 8.48 11.1 10.6 10.9 10.4 8.26 11.8 10.6 9.65 1.52 9.27 10 5.82 1.98 3.22 9.52 9.82 8.65 10.1 7.25 4.05 10.2 7.89 9.25 3.76 9.88 12.1 1.38 0.85 8.76 10.4 11.9 10.4 7.44 6.45 11.4 6.45 11.7 10.5 4.85 11.1 9.87 8.89 3.3 10.2 0 9.98 10.6 11 10.6 8.16 8.95 11.7 5.29 12.9 11.9 10.6 9.54 2.4 1.88 10.5 9.77 11.5 8.31 11.6 9.89 7.15 8.37 10.1 10.1 10.5 11.2 10.7 13.1 9.96 5.93 10.4 10.3 12.2 9.29 9 9.75 10.9 11.1 4.12 8.86 4.89 11 11.9 10.9 11.3 11.5 9.82 7.61 10.1 10.3 10.7 2.89 10.4 11.1 9.8 10.7 10.4 8.43 8.95 9.52 9.95 10.8 7.89 8.64 9.19 11.4 9.38 11.5 9.52 9.93 11.4 9.65 9.54 9.65 6.73 9.24 8.74 10.3 0.85 9.79 5.85 10.5 8.08 0.34 10.8 10.1 9.72 8.54 10.3 8.24 10.9 6.76 3.45 0.34 10.6 10.1 11.9 3.65 11.4 8.12 9.41 10.7 7.86 10.7 9.93 8.04 10.5 8.43 10.6 11.8 10.7 10.5 9.63 8.92 9 4.45 5.7 4.63 1.38 9.85 9.94 10.7 9.97 10.2 10.4 14 12.6 10 10.4 9.17 9.63 10.3 10.5 9.28 11.6 11.4 9.94 14.2 10.6 12.2 9.4 9.71 9.59 8.25 11.7 9.4 8.61 7.68 6.44 8.29 9.91 10.8 10.7 10.4 9.86 10.2 10.9 12.4 12 9.52 13.3 9.94 10.2 12.9 11.2 11.7 11.4 8.72 8.22 9.61 12.6 1.52 9.45 8.29 3.87 10 8.34 10.2 7.85 12.7 10.6 12.8 9.39 2.08 10.4 11 3.45 8.48 9.25 9.72 11.7 11.7 7.52 9 4.93 8.87 7.94 8.69 7.83 9.18 8.23 6.86 5.86 8.21 7.67 9.23 9.6 11.1 10.7 11.8 9.04 5.71 9.93 11.6 9.13 4.95 7.45 10.3 8.76 6.57 10.3 10.8 9.52 5.84 8.57 10.6 10.5 11 11.4 8.6 10.5 10.2 7.46 10.1 10.1 11.5 9.56 9.29 9.22 10.2 10.3 4.34 4 10.2 3.38 7.18 10.2 7.13 9.37 7.49 10.4 10.5 9.94 10.4 9.24 11.1 10.6 9.31 4.4 11.9 10.7 2.84 9.2 10.7 7.33 9.89 12.8 9.98 9.59 10.7 5.92 9.49 1.88 11 7.99 10.1 7.26 8.55 11.9 10.3 12.2 10.2 11.2 9.16 10.3 7.96 10.1 9.13 7.9 10.6 11.2 3.79 9.95 11.3 9.56 9.84 11.4 1.77 15.9 11.1 10.6 11.8 11 8.14 10.3 8.94 11.2 2.99 10.3 10.1 13.3 10.2 12.5 7.87 12.3 10.2 12.3 10 10.6 8.22 10.8 8.52 10.4 9.79 11.1 9.66 10.3 11 12.6 11.3 10.1 12.2 10.4 9.05 11.9 12.1 9.4 10.3 7.67 8.93 10.7 9.47 8.24 9.04 8.61 11.5 10.1 8.78 4.63 9.56 10.1 10.2 7.05 6.22 0.62 1.52 7.65 2.47 9.51 12.1 7.41 12.1 9.69 8.22 12.3 11.2 2.73 8.91 5.8 9.37 11.7 9.91 10.2 12.2 11.2 13.3 8.74 8.92 7.26 5.3 6.55 8.12 6.8 10.8 8.59 8.26 9.27 11.8 11.8 12 10.2 9.13 6.65 10.8 11.1 10.4 1.88 9.42 10.2 7.81 9.96 6.03 9.62 5.65 1.52 4.84 13.5 5.18 8.15 10.3 0.85 11 10.4 9.08 10.5 11.2 10.2 10.6 10.4 9.59 9.94 10.3 10.4 11 9.33 0.34 0.34 13.1 10.9 10.9 14 8.3 10.7 10.5 6.98 10.4 10.9 7.04 0.85 6.98 10.6 8.16 2.89 7.05 11.8 7.43 10.9 3.82 9.02 1.98 4.09 8.32 10.6 10.7 10.8 9.07 7.58 8.72 11.6 9.43 9.42 11.3 10.7 9.85 9.98 2.25 1.25 10.7 1.38 8.54 9.79 0.85 6.89 11.5 0.85 10.8 10.3 9.33 8.37 11.3 11.1 9.04 10.4 9.07 7.49 5.94 9.49 9.83 5.46 9.35 8.48 7.08 11.4 9.1 6.85 10.4 8.68 11.6 11.9 9.6 7.64 11 0.85 8.05 9.08 10.3 9.42 5.37 0.34 0.34 3.34 11.3 10.1 10.5 10.9 9.22 8.56 9.58 8.2 5.89 9.7 8.64 11.3 11.1 9.42 8.53 7.78 12.8 7.36 8.83 8.68 9.04 9.76 10.1 12.6 8.36 7.22 8.44 10.9 9.64 6.77 9.62 8.71 11.2 11.4 4.7 8.65 10.5 10.4 9.84 7.88 7.01 8.34 0.62 6.24 7.38 3.74 11.2 9.76 8.85 9.29 10.7 11.7 10.8 0.62 2.61 7.41 9.39 8.72 8.41 9.46 10.4 9.27 8.83 6.89 10.4 8.15 5.64 5.83 11.4 10 0 6.92 6.37 3.6 7.89 2.79 4.99 4.5 10.3 2.33 5.07 1.88 7.34 7.59 5.64 5.33 7.61 8.41 3.26 1.88 7.92 10.4 8.68 8.01 7.37 5.83 5.46 15.4 8.21 10.9 0 14 10.9 9.92 11.7 6.5 8.06 1.23 6.19 0 1.05 11.6 6.95 2.54 8.92 8.07 3.79 11.2 5.89 3.65 8.89 10 10.8 2.61 7.49 7.13 9.65 8.91 8.15 4.38 11.5 7.68 8.25 9.11 6.9 6.39 11.9 7.47 4.75 11.1 5.33 7.19 12.5 9.16 8.58 0 9.63 11.1 9.8 7.86 4.36 6.68 5.39 10.1 3.95 8.29 8.82 1.77 1.23 8.07 1.23 0.34 8.07 9.72 6.83 6.06 4.86 1.88 10.1 8.24 6.88 8.28 9.71 7.96 7.05 7.36 12.8 1.23 3.09 11.5 8.61 8.5 8.14 10.5 8.6 7.63 6.26 4.68 2.73 0.62 5.8 10.2 9.14 1.98 4.14 3.68 8.39 1.38 9.04 4.9 8.02 7.56 0 11.1 1.38 8.85 6.12 2.16 12.5 7.26 7.13 3.93 7.2 7.77 8.29 10.5 8.32 3.13 3.34 2.67 7.9 7.53 5.85 8.56 5.44 6.05 1.05 10.1 9.38 3.52 3.52 5.29 7.75 0.85 6.18 8.85 0.85 6.3 4.18 2.08 0 0.34 5.24 0 8.07 2.84 0.85 7.69 4.42 3.68 4.09 8.56 2.89 8.08 5.56 8.07 3.38 6.1 6.23 1.52 9.09 7.27 0 0 1.38 9.93 10.2 7.23 6.99 7.18 7.98 9.34 8.65 8.59 1.05 9.38 10.9 10.1 7.84 11 5.29 2.33 6.49 6.2 5.91 10.6 11.2 3.48 9.51 6.59 9.23 7.71 10.9 15.9 8.09 9.34 8.38 12.3 9.99 10.1 8.32 8.41 9.48 0.34 9.98 11.5 7.46 5.28 6.49 8.68 11.2 9.05 7.58 6.34 10.6 9.54 8.5 10.6 11.2 4.4 0.85 12 10.3 6.74 11.6 6.53 9.66 7.33 10.2 4.59 9.14 9.93 11.5 8.27 10.5 7.58 8.5 6.39 7.63 9.62 10.7 5.3 9.54 5.76 8.72 4.9 8.73 10.2 12.1 9.8 12.1 10.1 9.53 6.59 12.1 9.58 8.26 7.69 9.57 7.58 8.14 11 7.97 7.76 8.48 8.2 9.89 11.7 9.32 3.58 11.1 6.38 9.64 6.62 9.59 9.89 8.19 4.45 10.8 7.85 7.95 12.6 9.25 7.84 9.52 10.4 7.71 1.88 6.93 10.1 11.9 0 7.41 9.47 9.86 1.38 6.38 7.96 10.2 8.88 6.47 4.05 11.1 0 9.64 1.65 0.34 3.74 9.51 10.8 5.43 11.5 8.81 9.72 8.34 9.71 9.56 10.2 9.71 11.5 8.83 4.44 11.3 10.1 9.98 8.29 8.18 9.75 7.12 10.8 10.1 9.11 5.64 11 11.8 10.1 14.6 9.26 9.66 7.47 7.5 10.5 10 10.4 9.11 10.3 7.46 8.92 10.8 11.6 7.95 9.23 9.2 11.9 8.87 11.2 7.42 1.65 10 11.1 6.1 11.5 10.2 9.9 10.7 9.87 7.67 8.89 7.12 9.2 10.4 13 10.5 12.5 10 8.33 4.74 4.74 10.8 7.47 10.2 7.67 6.17 6.21 4.94 10.8 9.91 10.4 0 8.09 9.39 11.5 9.02 2.79 10.3 8.61 8.15 7.85 2.4 6.65 5.34 12.1 11.2 9.89 11.8 11.5 11.4 8.86 8.65 10.1 11.8 8.36 11.1 4.89 8.1 7.12 10.2 10.6 10.2 11.7 8.43 8.5 2.16 10.8 9.21 10.9 10.2 3.18 7.63 10.5 10.3 9.76 9.38 9.71 10.4 8.81 10.3 11 11 12.5 9.05 4.65 8.92 9.03 9.98 8.27 6.22 9.4 5.23 8.47 8.88 5.3 7.78 10.3 11.7 8.11 9.66 8.74 5.24 9.38 10.6 10.5 11 10.8 7.62 8.91 10.8 7.53 11.1 5.73 9.59 3.09 8.8 3.26 7.31 10.1 0.85 8.69 3.65 11.2 9.68 9.95 2.79 8.95 0 5.96 4.93 6.74 8.17 12 8.93 7.98 7.64 6.73 14.7 0.34 1.52 1.05 7.55 10.3 9.56 9.45 3.23 9.41 9.11 2.61 7.22 10.5 8.45 6.53 7.8 7.52 8.57 10.2 9.11 8.14 10.3 7.79 3.93 11.1 10 10.2 10.3 11 0.85 10.7 7.98 9 6.56 11.4 8.67 8.44 0.85 10.4 7.17 10.9 11.6 8.66 0 7.6 6.97 5.76 11.4 9.49 10.6 10.1 9.31 9.72 5.68 8.21 10.3 8.68 10.1 11 10.3 1.98 8.56 12.5 8.92 7.23 11 9.91 9.11 8.8 8.7 8.3 10.2 8.16 10.1 3.09 2.67 0 10.3 1.77 3 3.48 9.62 1.05 11.1 9.21 9.34 8.16 1.05 9.92 6.87 8.08 3.04 11.5 12.9 9.73 1.98 6.54 2.73 6.97 8.33 7.38 11.2 1.52 7.41 6.93 0.34 8.25 3.13 12.3 14 7.81 3.87 9.84 10.6 1.98 0.62 9.69 8.68 4.47 3.95 6.19 0 13 8.9 8.72 7.1 8.21 0 6.01 9.81 8.89 11.7 6.25 8.58 10.8 8.92 6.62 8.82 10.8 14.2 9.51 11.5 9.44 10.8 10.2 10.4 1.88 1.65 9.58 0.85 9.96 7.72 6.1 10.7 10.5 8.45 12 9.49 8.09 11.7 0.62 9.46 2.4 5.4 8.92 5.46 9.8 10.4 12.1 8.07 0.34 4.57 10.4 10.1 12 2.4 8.54 10.2 6.02 13.6 10.3 7.47 7.43 6.77 11.7 8 11.8 2.47 8.06 10.6 6.95 10.1 9.44 7.53 0.62 9.22 9.14 10.7 12.2 8.88 9.96 7.06 3.97 5.86 6.4 5.75 9.72 6.33 9.64 12.4 0.85 7.48 4.14 6.13 8.2 11.1 3.22 10.6 7.59 7.75 6.32 4.22 5.34 10.1 5.24 6.66 8.69 11.2 0.85 9.33 0 6.96 9.19 7 10.3 10.1 11.6 8.7 5.62 6.84 9.66 6.8 0 6.89 2.61 2.4 9.67 7.82 11.2 7.8 8.7 12.3 3.22 4.4 7.34 10.6 9.09 8.93 3.74 3.58 7.93 9.79 11.2 9.44 8.98 9.64 9.55 11.6 10.9 13.3 8.92 7.86 5.02 9.08 9.66 0.62 5.33 8.23 3.34 8.33 10.3 8.98 8.33 8.25 1.38 10.1 4.81 6.1 8.43 9.29 9.15 4.67 7.93 5.38 9.29 1.23 8.9 9.23 11.8 3.76 10.7 10.5 12.1 9.68 4.67 11.1 10.9 6.66 11.8 11.4 9.54 8.71 9.72 8.79 4.93 4.4 9.68 11.6 9.54 8.15 4.3 9.27 7.71 10.2 5.61 10.3 6.15 11.7 6.4 9.52 5.81 10.6 8.59 8.72 9.88 4.47 8.63 8.52 5.61 10 10.9 12.7 9.53 6.03 15.9 0.85 10.9 8.77 10.8 8.48 8.95 10.5 8.06 6.65 12.4 11.2 4.88 4.97 10.5 14.6 0.85 7.74 13 11.9 2.28 2.4 1.88 10.2 6.71 0.34 8.57 8.01 3.98 9.55 4.44 3.74 12.2 3.87 5.6 10.1 11.6 11.1 12.3 13.3 9.95 10.9 10 2.25 8.61 2.54 1.98 10.2 5.76 11.2 12.3 2.4 6.42 2.73 2.89 7.03 5.89 4.36 1.38 2.54 5.78 1.38 6.95 2.08 9.13 6.59 1.52 4.09 6.84 5.68 9.7 5.46 6.82 8.9 3.34 4.62 2.99 5.23 8.94 10.1 7.83 13.4 10.5 5.34 6.38 6.78 8.37 6.16 9.38 10.7 8.96 6.62 8.54 2.89 6.87 6.62 5.68 7.22 4.26 6.72 4.49 10.3 4.18 8.12 8.99 10.2 1.38 8.21 4.65 4.36 2.89 2.61 3.26 5.52 0.62 11 6.91 6.19 5.16 9.35 7.03 9.92 6.54 1.05 3.06 3.09 9.42 1.98 6.12 0.85 9.26 0.34 5.79 0 3.87 9.81 9.78 6.48 6.45 3.49 5.11 4.45 4.89 6.32 8.51 0 0.62 4.69 10.5 2.08 4.81 2.25 3.96 8.1 4.99 8.92 5.54 6.55 6.6 4.52 5.81 7.08 8.35 0.37 3.93 11.8 8.48 8.92 4.94 1.65 9.02 7.41 1.05 4.09 9.33 3.87 7.02 7.47 8.43 6.43 10.7 3.48 3.3 1.05 2.89 7.13 7.71 0.85 4 0.62 9.83 0.34 0 7.81 10.8 8.57 8.03 6.73 7.57 1.98 1.05 6.59 2.79 7.51 4.09 5.12 9.47 2.16 9.92 4.09 7.86 1.52 6.43 5.71 9.47 9.3 9.19 5.87 8.69 4.93 5.76 6.68 1.98 4.54 11.3 2.67 8.65 8.27 7.49 9.26 2.25 6.8 7.25 1.52 2.79 1.77 0.85 5.28 7.97 7.14 6.69 9.05 10.1 1.23 1.52 0 9.12 0.34 3.41 2.33 10.6 3.45 7.7 2.94 6.1 3.62 5.86 4.88 9.37 4.4 4.3 7.18 3.38 2.33 3.71 2.16 2.67 5.68 0.34 8.8 0.85 1.23 5.73 7 0 6.72 3.34 10.3 7.35 3.09 1.05 2.33 5.62 0.62 7.6 9.2 7.49 7.52 9.2 1.65 9.63 0.85 2.94 8.14 7.01 5.89 4.99 8.19 9.19 0 7.77 10 10.4 5.33 6.15 9.24 1.38 9.18 4.2 6.26 10.6 8.39 8.68 9.19 5.34 12.2 1.05 3.22 9.72 0.62 7.68 7.4 3.71 4.2 6.91 8.34 10.9 2.67 8.68 0.85 10.2 3.71 1.65 4.65 7.56 8.64 4.67 10.1 2.4 6.38 9.12 3.38 7.37 9.84 7.16 7.02 8.1 0.85 4.37 0.62 10.3 3.27 5.39 7.33 1.23 3.58 7.17 0.34 6.51 7.85 4.93 2.86 6.32 2.54 1.05 3.76 4.62 4.45 3.3 8.04 7.78 0.85 10.2 3.38 9.96 5.86 3.09 4.2 7.81 3.48 6.46 9.1 10.1 3.9 2.67 8.79 5.47 3.45 5.62 7.97 9.54 7.91 3.18 6.8 9.92 8.02 9.19 2.84 1.65 4.16 6.04 8.85 4.26 6.26 7.72 7.81 8.16 1.88 6.99 8.77 12.1 10.5 9.8 6.15 11.1 2.94 8.48 10.9 11.5 5.94 12.1 10.4 10.4 3.85 5.2 8.84 9.03 8.83 10.2 7.82 10.1 10.7 12.6 7.82 9.54 10.3 4.12 7 2.08 11.6 2.47 8.85 7.7 11.4 10.5 9.85 9.64 9.73 9.39 8.42 8.18 7.64 9.69 9.33 8.85 10.7 8.17 8.39 8.52 8.92 7.01 10.6 9.54 4.16 10.8 7.61 4.36 3.68 9.25 2.54 10.2 4.28 10.4 2.54 8.46 11.2 3.58 8.64 7.57 10.4 11 12.2 8.62 9.51 11.6 9.81 7.2 10.1 9.6 8.33 8.65 10.3 6.99 9.51 9.9 9.48 9.5 7.67 11.8 7.68 2.08 6.33 8.75 9.1 9.39 7.89 8.28 9.24 7.41 8.36 10.7 10.4 9.47 8.63 8.17 0.85 7.8 10.1 8.69 2.4 10.1 9.89 10.5 10.7 0.34 2.4 8.46 4.34 10.1 3.38 3.68 9.6 7.6 10.1 1.05 1.38 12.1 1.88 0.34 14.1 7.46 11.4 11.8 10.7 11.2 12.3 12.2 10.5 10.2 8 1.23 9.26 11.1 9.28 1.38 11.9 0 7.27 9.46 10.8 8.68 9.14 9.43 8.63 9.16 10.7 8.67 9.68 6.02 8.28 8.64 11.6 12.9 11.1 9.12 2.79 11.2 10.8 8.76 9.72 9.18 2.08 10.7 7.53 2.33 9.47 8.68 0.62 8.24 9.05 5.94 11.2 4.5 10.6 0.34 3.45 7.93 7.42 8.49 2.25 10.8 9.84 7.59 2.25 11 6.57 9.17 7.54 0.62 3.13 10.7 10.1 9.43 3.04 9.38 11 7.37 7.77 10.2 9.91 10.8 5.82 9.91 1.77 10.8 8.8 11.2 7.07 5.24 8.05 10.1 1.05 8.9 2.99 9.62 8.92 8.86 9.31 8.31 10.2 11 8.71 8.79 10.2 8.87 9.82 12.9 8.83 9.28 4.47 5.35 7.92 0.62 10.4 9.01 7.1 2.84 1.77 9.19 10.1 5.35 7.11 8.39 3.58 10.4 9.16 13.3 11.2 3.68 11.1 1.88 9.33 7.08 7.89 9.92 6.88 3.13 9.41 9.94 6.18 10.9 12 7.99 8.69 8.53 8.6 1.23 8.14 4 10.5 6.67 7.14 10.7 10.1 11.5 8.22 0.65 10.6 2.54 10.5 9.25 9.5 3.38 5.37 9.35 2.08 5.88 2.73 13.2 8.9 11.6 3.26 2.61 0.34 9.68 5.44 3.15 8.22 11.3 9.97 13.7 12.8 13.3 10.3 8.87 6.15 12.2 11.9 11 0.34 9.91 1.05 4.81 5.37 1.96 12.1 5.87 6.29 0 0 0 1.98 8.48 0.85 10.7 7.38 8.67 8.71 11.1 11.6 10.8 2.25 12.4 14.2 10.6 7.66 8.61 10.8 11.4 9.4 8.76 11.8 6.85 7.43 2.61 9.56 6.19 6.84 4.22 5.71 9.08 5.57 7.47 8.14 3.09 10.7 5.57 3.04 10.4 8.13 10.5 10.3 9.31 10.9 8.47 12.7 5.79 10.4 11.1 11.1 11 9.37 10.2 8.74 12.5 11.8 11.8 12.1 4.09 7.93 12.3 13.3 13.9 9.27 9.56 11.9 8.48 4.45 12.1 11 1.65 10 8.9 9.65 6.47 13 10.9 8.42 6.51 6.36 5.49 11.5 8.82 3.49 9.47 2.89 3.3 2.89 8.94 10.2 5.52 7.69 12.4 10.2 10.3 12.1 12 9.82 10.7 10.7 9.74 6.16 7.17 9.77 9.44 8.01 9.45 7.24 10.5 7.97 10.1 9.45 4.92 7.86 1.38 7.88 1.65 8.83 0.34 8.47 12.2 8.84 13.8 11 13.6 11.6 12.8 11.6 12.3 10.9 14 0 12.5 13.8 3.62 2.84 1.65 9.46 6.53 3.65 3.58 3.58 1.52 4.68 3.79 7.01 3.3 1.98 6.45 4.52 10.8 9.78 7.68 4.52 6.25 6.53 2.16 3.76 9.36 6.81 7.75 11.8 7.01 10.1 1.98 9.14 0.85 2.73 10.4 1.05 9.27 10.7 0 10.8 2.54 7.7 1.05 6.27 8.64 10.8 8.67 6.27 11.5 3.34 6.08 10.6 10.2 11.4 10.9 10.6 10.1 3.71 6.47 5.88 1.98 11.9 10.1 7.97 6.18 7.2 10.9 11.9 13.6 11.5 6.9 9.12 12.2 14.6 11.1 8.37 6.56 14.5 12.9 11.8 4.26 7.13 15.2 12.1 14.8 12.3 6.65 10.6 11.8 9.18 12.7 8.3 3.82 13.7 12 7.38 0.62 2.54 0.34 4.99 0.62 0.34 4.22 8.2 11.8 4.59 11.5 10.7 3.3 5.92 1.05 0.63 0 10.9 10 0.62 3.09 0.34 7.07 7.71 4.6 7.93 3.38 8.79 2.67 6.34 5.99 8.99 8.97 8.31 3.48 8.69 8.32 3.13 2.74 1.05 6.07 3.9 6.97 10.2 0.85 8.88 8.06 3.62 7.99 8.28 8.5 5.66 11.2 8.1 8.58 10.1 7.01 7.19 7.78 0 3.65 7.63 0.34 2.54 8.32 5.96 1.38 1.98 6.84 7.02 4.02 7.82 5.11 3.48 7.4 8.65 5.25 0.34 6.59 11.3 0.34 1.23 10.3 6.61 5.6 3.62 1.38 2.08 8.25 4.55 6.41 1.05 2.61 10.6 6.11 8.96 0 0.62 2.61 3.87 1.38 9.5 5.71 2.25 6.9 4.77 8.18 2.79 8.63 7.24 3.18 1.25 0.62 8.03 7.95 9.08 7.26 5.55 6.22 4.09 5.03 3.79 5.22 7.68 10.8 7.59 10.2 2.54 1.79 1.23 10.1 6.78 12.7 11.4 9.64 9.85 5.91 9.64 2.67 4.98 7.94 9.96 11.7 1.23 7.67 9.76 0.85 8.58 0.85 0.62 4.42 7.61 10.5 4.94 10 5.66 6.15 4.32 0.85 7.14 3.22 4.97 0.34 9.24 1.05 5.96 9.76 3.59 10.1 11.1 3.38 3.3 2.08 1.77 1.65 1.38 10.1 9.35 7.16 9.21 0 2.16 6.48 8.66 1.23 8.29 1.98 2.61 0 2.94 0.85 11.1 6.63 7.59 4.44 5.02 8.61 9.74 0.34 3.74 10.8 5.43 10.9 4.6 5.48 1.52 8.49 2.16 3.48 1.05 9.96 2.4 0.62 7.97 1.98 8.28 0 0.85 3.26 8.22 1.52 10.8 3.68 5.33 10.2 10.8 1.88 4.63 6.62 0.62 9.78 7.89 9.34 6.94 11.4 12.6 4.28 5.52 5.02 10.4 8.43 2.16 6.64 11.5 9.19 1.88 9.86 5.96 6.46 4.38 10.7 10.8 2.08 8.63 14.1 2.08 7.5 14.4 5.17 0 5.99 7.03 1.05 10.1 11.8 7.26 10.1 7.69 3.09 5.24 1.52 2.84 7 5.52 7.75 8.18 14.2 9.48 9.1 7.03 6.02 3.34 9.46 8.81 2.58 7.36 0 2.54 10 5.23 2.33 3.98 5.36 6.18 6.35 7.57 3.04 0.34 0.34 6.92 11.2 11.4 2.84 7.09 10.6 6.5 8.04 2.99 3.45 8.65 7.44 6.45 9.58 0.62 1.52 8.94 7.24 13.2 2.54 5.92 2.67 4.67 3.82 10.9 3.71 2.08 2.84 8.07 9.47 2.73 6.92 3.82 1.23 4.24 1.38 12.5 2.03 7.47 12.7 11.2 10.8 4.34 11.5 6.55 4.71 0.34 8.28 1.05 7.03 10.2 11.9 12.2 1.52 11.2 7.4 7.03 9.99 11.2 8.45 4.55 8.26 7.27 1.77 8.23 9.57 1.23 7.81 7.49 5.62 9.15 9.08 8.46 8.76 11 10.5 3.09 0.85 11.3 0.34 11.7 8.88 8.13 10.2 11.1 6.27 10.5 9.79 3.38 9.6 8.77 4.34 7.72 10.9 8.95 9.2 7.71 10.3 10.4 9.25 9.32 1.77 11.3 8.18 10.7 6.55 5.76 7.29 2.54 7.55 8.33 8.88 12.5 8.06 13.6 9.99 10.5 7.29 12 10.7 12.1 11.7 5.7 9.42 0 9.82 3.9 12.1 6.62 5.31 11.6 8.97 10.9 4.47 10.1 10.8 11.9 10.6 11.5 8.87 12.1 9.04 6.7 12.2 10.1 10.9 10.1 10.1 13.2 8.99 11.1 10.9 10.3 10.6 0 3.68 6.17 8.58 3.38 3.04 2.2 9.03 8.14 7.5 5.83 9.58 10.4 5.51 0 7.62 0.34 1.05 7.42 2.61 7.08 3.34 5.59 7.97 7.66 8.09 0.62 2.47 4.59 7.91 8.51 2.16 6.15 3.09 5.21 10.4 5.67 5.62 6.93 8.05 6.01 7.62 2.16 7.41 0 3.62 9.99 13.3 6.05 7.41 6.42 11.7 4.42 4.74 7.65 2.79 5.05 7.59 7.81 7.79 9 6.16 4.82 2.84 1.38 0.85 7.77 8.27 6.71 5.65 9.4 7.24 3.93 5.94 0 7.01 4.38 1.05 3.82 0.85 6.52 4.94 4.47 0.85 10.2 7.07 8.35 1.38 8.38 11.6 4.13 0.62 6.27 4.68 10.2 6.81 0.34 9.23 0 3.55 6.41 9 3.74 1.05 8.8 12.6 3.48 2.4 4 0.85 8.51 5.43 10.9 6.08 6.34 12.6 1.98 1.65 4.8 5.72 7.86 0.62 4.89 0.85 7.57 5.94 0 5.53 11.2 6.19 11 2.99 9.93 2.4 5.9 9.29 8.72 4.85 12.6 9.19 11 6.84 0.34 0.85 0 11.2 0 0.62 7.79 1.05 1.65 12 4.18 0.85 1.86 0.66 3.22 0 10.3 9.46 8.52 10.1 11 12.4 10.6 10.1 7.65 11 6.22 11.1 11.7 10.4 2.25 0 14.1 8.28 0 8.73 6.98 2.16 13.4 7.36 5.55 8.22 1.05 6.29 4.74 3.87 9.22 0.9 10.2 1.88 1.98 5.78 9.83 4.22 6.18 13.9 6.84 8.82 3.76 2.08 2.73 4.36 5.05 8.43 9.26 0.34 2.79 2.16 6.2 2.08 6.44 0 4.3 4.28 4.16 2.89 5.46 1.88 3.22 9.45 1.51 6.17 10 6.28 1.05 13.2 1.88 7.46 8.79 2.33 6.88 3.09 4.62 8.85 2.84 5.81 3.58 4.32 3.98 4.82 4.68 6.54 5.88 7.49 10.8 8.21 3.76 12.2 2.16 7.55 8.81 7.93 9.62 6.74 6.31 7.31 0.34 1.23 5.94 6.7 5.26 0 8.15 2.16 9.91 1.52 7.5 8.61 0.85 4.2 5.38 8.33 9.03 0.85 7.27 2.28 3.76 7.71 3.79 7.51 7.54 6.78 2.16 9.42 12.7 7.33 0.62 7.93 1.98 4.16 5.04 6.86 4.88 6.48 0.62 3.9 6 1.05 5.53 9.38 6.51 5.39 1.23 12.9 7.42 4.19 9.57 3.18 1.52 2.16 0.34 9.02 4.45 1.65 6.81 1.23 7.54 6.35 4.16 6.99 2.27 6.76 3.09 12.1 1.98 9.13 8.15 3.85 3.71 1.96 2.33 8.51 0.34 2.08 0.34 6.49 0 9.11 8.43 8.98 7.9 8.52 9.5 10.4 7.36 10.7 1.65 11.4 1.05 12.9 0 7.86 9.27 10.9 12.9 5.17 0.85 12 12.6 12.1 4.55 2.08 3.76 10.4 4.6 13.3 2.89 3.9 7.47 8.8 4.84 5.83 6.07 10.3 8.23 1.05 13.3 9.52 9.28 9.57 5.68 3.18 7.77 10.2 11.1 11 2.79 12 12.9 11.9 0.62 11.7 10.5 12.9 0 5.06 9.7 9.28 0.34 10.1 8.64 11.6 9.53 11 8.75 11.2 9.32 1.52 8.35 7.89 10.1 0.62 4.4 8.05 8.78 9.2 8.34 12.1 3.79 7.22 1.88 10.2 3.93 2.67 7.18 6.16 12 3.79 8.51 6.88 10.3 0.34 2.99 6.68 11.3 11.9 12 8.37 8.83 7.52 9.59 0.34 2.33 4.73 9.83 5.53 11 7.67 8.81 1.52 7.97 8.11 1.05 7.15 6.91 3.62 7.51 2.16 1.38 7.81 7.9 1.38 4.82 4.93 3.38 10.1 5.78 10.9 8.98 3.58 1.23 8.62 3.67 4.86 1.52 5.15 6.15 8.48 10.4 4.71 0.85 5.58 0.62 4.6 1.88 2.61 2.33 10.6 1.52 8.62 6.8 6.63 4.12 3.47 0.85 1.38 4.48 4.13 9.15 5.78 6.01 8.26 1.05 9.43 1.65 5.48 9.19 4.62 8.74 9.68 1.65 9.85 8.94 9.52 6.26 10.6 9.67 1.88 0.34 1.53 1.05 6.04 9.17 3.09 4.18 8.89 3.18 1.05 4.4 6.33 8.44 8.35 0.62 9.35 3.98 9.53 0.34 1.65 9.6 2.16 3.62 10.3 5.83 8.95 0.85 8.49 9.33 12.5 8.76 9.26 5.67 10.8 1.98 8.71 10.9 4.42 7.79 3.62 5.14 11 4.26 7.08 8.85 8.7 9.27 9.3 10.8 10.8 2.67 10.8 3.76 0.85 9.35 11.8 11.4 10.4 3.66 17.5 0.85 1.77 12.9 8.66 13.1 11.9 4.07 6.87 6.88 5.42 8.68 4.36 9.97 13.6 11.7 12.1 11.6 13.2 12.4 1.05 5.18 2.99 0 9.33 9.4 10.6 9.13 6.87 10 10.3 10.9 10.3 8.89 10.9 6.18 8.83 4.18 8.46 7.82 4.12 7.67 9.92 7.55 8.74 6.1 1.05 9.23 8.63 10.2 9.96 11 10.9 11.2 8.54 10.3 8.23 9.04 6.27 12.4 5 12.4 4.9 12.3 10.1 6.29 5.15 10.5 5.24 3.22 6.71 0.85 2.16 8.19 7.08 2.08 12.5 1.77 0.87 8.09 8.88 10 10.3 8.29 7.56 4.98 11.2 9.81 0.62 9.6 11.5 8.08 4.78 10.2 10.8 4 0.62 13.3 9.37 11.1 10.6 9.72 9.99 10.6 14 1.98 8.96 9.43 0.85 11.3 11.6 9.75 11.2 10.1 8.14 8.57 10.3 10.5 9.85 4.98 8.92 11 8.12 2.61 7.56 6.75 9.8 11.7 9.17 9.79 8.16 11 10.2 5.1 0 9.47 7.65 8.05 10.1 8.14 10.7 8.97 9.94 7.35 6.74 10.9 9.56 4.45 8.78 11.1 10.3 8.77 17.3 11.6 9.78 10.7 7.54 10.1 14.4 5.7 6.07 10.9 7.97 0.85 9.37 8.74 9.09 10.6 11.1 8.42 10.2 7.41 7.2 10.2 10.9 10.5 11.7 1.77 3.62 9.83 11.5 11.3 9 6.06 6.95 12.5 6.68 0.85 3.65 6.85 1.65 12.2 12.3 4.74 8.37 6.82 7.64 7.76 9.83 1.52 7.06 8.28 7.27 8.89 0.62 8.17 8.63 0.62 10.3 7.19 8.98 9.14 9.55 3.93 0.85 7.8 9.23 5.53 8.97 9.76 2.94 4.63 8.54 9.62 2.08 0.85 10.7 9.86 0.34 5 6.21 8.49 10.1 1.05 1.65 1.88 5.04 5.58 3.22 7.83 6.06 0.34 4.5 8.47 10.8 4.12 8.48 10.7 5.36 5.23 2.81 4.81 6.73 3.45 10.3 7.11 1.77 7.89 1.23 9.15 6.97 7.34 9.4 0.85 1.23 8.15 9.74 6.44 3.9 6.26 3.09 2.33 1.77 6.83 7.43 2.08 0 7.94 7.15 7.9 10.8 12.4 3.55 6.38 5.53 6.49 5.91 3.18 6.09 7.88 6.81 5.27 4.71 6.2 7.7 2.79 6.42 6.43 1.23 7.95 7.78 3.52 3.09 1.98 0 1.98 3.74 1.38 1.52 7.92 1.38 5.73 6.02 4.74 4.63 6.37 3.71 6.22 9.4 1.98 0.62 1.38 0.34 5.66 3.74 6.57 1.05 1.52 6.97 5.85 3.38 1.65 10.1 4.2 10.2 9.95 0.85 7.1 13.3 8.57 9.64 2.4 9.2 7.46 1.52 9.36 11.9 10.1 7.37 5.91 9.19 5.61 6.92 5.37 2.67 2.25 7.24 9.51 8.96 4.8 8.97 6.38 10.6 8.23 9.76 8.7 8.15 0.85 10.4 10.3 9.31 14.6 4 0.62 9.82 10.2 6.95 7.03 7.48 12 8.66 8.79 12.1 6.06 7.35 0.34 0 1.38 7.87 8.3 7.63 10.6 8.59 2.47 3.87 14.4 11.1 10.2 9.69 0.62 6.54 13.5 10.8 1.05 12.8 11.3 9.56 9.23 10.7 13.1 7.74 2.33 9.05 10.6 10.9 10.5 9.18 9.98 5.46 9.93 9.43 13.6 10.2 9.69 6.62 11.8 6.5 11.7 6.93 5.29 11.6 11.5 10.7 11.9 14.1 10.3 8.96 11.5 6.53 9.13 10.4 7.49 6.32 9.32 13.4 7.15 10.4 10.1 9.45 11.7 11 12.8 9.95 8.92 9.48 4.07 10 11.3 9.33 9.48 10.3 9.55 11.2 10.8 10.3 9.17 9.29 9.91 10.5 10 8.76 10.8 10.8 10.1 11.5 10.1 10.2 8.86 10.6 10.2 9.63 10.2 11.5 9.4 10.4 9.26 13.4 13 10.8 11.9 2.27 7.51 7.47 6.92 9.5 1.52 0 5.52 2.16 9.85 8.43 8.56 7.59 8.12 11.6 11.4 14.6 11.7 5.31 9.16 7.81 6.29 11.8 9.09 9.38 4.55 12.6 5.65 11.4 8.75 10.2 7.73 12.4 11.1 9.2 10.7 8.08 8.2 7.82 7.27 9.88 10.6 9.47 4.63 10.6 9.41 10.2 7.38 1.77 11.4 13.2 7.01 10.9 11.3 6.13 9.71 4.99 5.07 11.2 9.53 3.26 4.84 9.09 10.2 12.2 9.19 10.1 8.54 11.2 9.45 0.85 9.26 12.9 2.61 6.87 10.7 10.1 9.66 8.83 13.1 11.9 8.72 6.78 0.85 8.84 4.9 10.4 8.9 9.32 7.09 12.8 2.08 0.34 12.7 6.37 6.63 4.07 2.54 4.5 10.5 10.6 10.2 5.49 11.4 8.57 0.34 9.22 4.95 5.01 1.05 11.5 11.3 7.48 3.76 7.45 1.52 8.25 4.94 0 4.75 0 9.68 7.38 1.38 5.11 8.68 12.1 12.1 13.7 9.45 11.6 8.56 11.2 10 6.43 9.36 8.61 10.2 7.47 2.73 9.1 4.63 3.22 10.3 11.8 7.44 11.7 9.41 0 5.94 12.4 8.55 4.24 4.4 1.98 1.05 13 10.5 10.2 8.67 10.6 7.13 11 8.06 7.16 1.77 1.23 6.62 8.75 1.52 0 11 10 12.7 6.81 9.06 9.15 8.73 8.83 1.38 5.98 6.28 8.97 11.3 9.37 9 9.81 5.84 4.7 11.7 5.49 10.7 7.26 4.93 6.16 8.85 10.8 7.67 7.67 1.98 10.4 4.31 6.25 3.82 7.92 5.52 0 10.1 14 6.76 5.57 11.5 0.34 1.38 4.9 12.8 7.67 10.8 10.6 11.8 9.9 9.33 5.04 10.9 8.84 10.1 1.77 8.25 9.13 8.21 6.39 12.8 9.15 4.65 11.2 13.3 0.85 5.54 10.5 8.76 11.7 3.35 9.2 9.06 4.05 8.5 10 4.22 11.4 5.6 12.3 5.58 4.44 11.6 10.7 8.5 0.85 5.48 0 9.37 9.93 9.88 11.4 10.3 10.6 9.04 9.14 2.08 2.68 3.52 12.9 3.55 7.66 9.53 5.43 4.99 2.08 7.94 10.7 10.3 13.6 9.94 11.4 9.14 9.29 10.6 12.9 9.47 1.88 13.2 5.64 4.98 2.16 9.29 10.8 11.2 9.66 11.3 11 9.78 7.96 8.37 7.22 9.16 7.1 9.64 9.13 9.69 2.79 8.39 7.64 10.8 8.69 11.9 8.62 7.52 9 8.91 9.6 10.6 7.28 8.1 10.3 6.23 9.72 7.72 9.91 10.2 10.1 10.5 9.96 7.36 11.5 8.08 8.06 6.06 11.6 6.71 8.3 9.94 10.4 10.7 8.56 9.18 9.84 4.02 8.38 10.1 8.34 8.91 8.77 8.49 9.09 8.84 10.9 7.25 9.75 10.3 10.9 13.7 10.1 10.4 1.05 9.48 3.45 3.79 3.71 10.2 5.51 9.07 9.74 9.72 12 9.5 9.33 10.5 9.46 10.1 10.5 11.4 6.02 7.43 8.73 7.24 10.9 7.72 12.4 10.6 11 10.7 7.21 10.8 9.45 10.4 9.37 9.22 9.93 9.01 10.7 8.1 9.3 9.94 9.75 9.96 10.2 4.24 10.2 4.59 9.01 9.77 11.1 12.6 8.17 9.61 8.94 10.2 9.44 11.6 10.4 10.2 9.42 10.6 8.01 11.3 0.85 8.78 10.2 8.29 9.44 10.6 7.95 8.11 9.03 11.7 3.04 8.75 5.61 7.97 5.14 7.29 7.78 7.78 8.02 8.57 9.21 9.89 9.35 8.79 9.93 8.66 10.7 8.78 10.2 7.35 7.86 8.61 9.61 8.72 6.51 10.7 7.41 10 9.47 8.39 8.75 2.89 1.65 4.63 9.43 2.33 7.44 7.19 6.63 8.08 10.3 10.9 9.98 12.2 1.65 10.1 9.01 5.61 7 9.98 9.03 11.6 11.4 9.89 9.56 6.45 8.03 8.57 2.33 10.1 10.1 8.1 9.29 10.4 8.31 8.98 9.94 9.51 4.95 4.89 3.68 10.9 10.6 11.2 11.4 7.85 7.08 7.68 8.53 10.1 10.3 13.4 8.11 8.43 10.4 8.03 0.85 9.44 9.79 9.65 8.96 10.9 7.92 8.45 8.71 8.83 6.25 8.97 8.87 10.1 4.22 9.04 10.6 0.62 10.4 9.99 6.09 9.89 9.42 5.12 8.56 13.2 1.98 10.5 5.04 9.78 10.3 8.54 9.5 10.4 11.8 10.8 7.03 9.95 3.3 8.51 7.83 5.37 5.64 11.7 9.52 6.81 7.45 9.71 10.6 9.85 9.75 10 1.05 11.6 0.85 5.61 9.4 10.7 9.79 11 8.86 4 12.1 8.22 10.2 3.9 10.4 10.4 7.84 10.9 8.4 8.62 8.35 6.43 10.1 11 0.34 8.51 12.7 8.23 9.82 5.66 9.97 6.98 9.32 10.8 9.46 11.8 5.71 10.5 9.37 9.12 10.9 6.97 11.8 10.1 9.14 9.6 10.3 10.5 11.4 2.61 11.8 11.4 10.2 9.19 10.7 6.9 1.23 10.8 8.46 11.1 12 0.62 9.03 6.28 9.75 9.34 4.75 10.7 13 8.64 2.89 12.1 9.65 8.93 11.1 2.79 9.26 7.37 11.1 12.7 9.63 10.7 8.66 11.4 8.56 7.95 9.05 10.6 11.6 10.9 9.02 11 7.64 4.57 8.84 9 6.92 11.3 10.7 9.89 8.88 9.62 9.33 9.7 9.6 6.02 8.37 8.67 6.94 10.2 9.94 8.25 8.79 7.68 8.37 9.73 8 8.32 7.77 9.16 8.76 12 4.85 0 7.4 9.5 5.89 2.25 7.7 10.6 11.9 10.1 10.9 7.18 10.1 11.2 10.2 8.89 8.38 11.9 10.7 10.8 8.49 11.5 10.7 10.7 10.5 10.9 11.2 9.47 9.93 6.91 10.3 10.2 12.6 8.66 10.6 8.93 9 12 10.1 1.77 8.35 10.6 9.86 9.64 9.34 10.8 8.52 11.2 7.64 8.66 10.7 11.5 10.2 9.93 8.5 11.4 8.8 11.3 8.22 9.5 8.52 9.22 8.22 11.5 8.81 7.71 9.63 7.22 8.79 9.05 7.87 11.7 7.91 10.8 8.71 13.2 12.3 6.97 3.62 3.45 7.4 9.55 6.4 5.96 7.93 8.59 9.71 8.11 10.1 10 12.3 10.6 7.35 9.74 1.65 8.53 7.96 8.19 11 8.9 11.7 8.05 0.34 11.6 3.68 8.59 10 11.9 8.75 11.1 1.38 8.71 9.16 1.77 10.2 8.45 11.4 3.26 11.1 9.55 8.77 4 10.7 9.31 10.8 10.6 10.6 8.49 4.67 9.21 10.1 2.73 10.3 10.7 10.3 12.1 7.08 11.8 11.3 8.84 6.82 4.73 9.58 11.7 9.31 10 8.16 8.49 9.79 8.86 8.44 8.39 8.7 10.4 7.88 0 0 8.98 3.41 10.6 10.3 9.16 7.29 11.9 12 1.98 8.48 11.5 10.3 7.52 11.2 3.45 8.74 8.6 12.6 9.6 8.95 10.4 11.2 3.85 0.62 10.5 6.25 9.49 11.4 12.4 10.8 9.86 6.74 8.24 6.51 4.18 10.9 7.85 12.2 4.68 10.3 10.8 8.95 9.46 11.7 11.1 1.52 9 8.95 13.7 0.34 10.8 10.8 8.67 7.19 7.41 8.68 7.75 10.1 10.7 8.16 9 7.54 11.2 10.1 9.26 11.3 8.93 10.4 7.46 7.55 6.93 12.7 10.9 11.7 11.4 10.5 8.5 0 8.14 9.43 11.2 10.2 9.36 8.23 1.51 14.4 9.36 9.67 0 5.2 3.68 6.43 9.22 11.8 9.83 8.21 11.1 7.57 9.61 8.9 8.7 4.07 10.9 8.95 7.85 0.84 9.67 8.53 7.48 3.34 9.97 10.2 1.65 4.6 7.87 7.9 9.74 9.88 9.92 12.1 5.53 6.27 9.4 8.37 5.84 4.75 6.57 7.56 12 10.2 6.07 10.8 8.24 4.09 10.4 8.98 9.63 10.2 9.51 8.37 9.17 9.23 5.75 9.59 2.33 10.9 5.58 11.3 8.5 8.04 0.79 1.38 12.6 10.2 8.64 9.93 12.1 8.56 8.08 9.67 6.43 5.69 6.32 0.62 7.65 10.8 6.7 6.71 4.57 2.61 8.74 5.43 9.61 8.28 0 5.71 11.2 4.81 8.95 8.44 8.52 8.11 8.47 9.98 10.4 8.3 9.84 9.63 10.9 10.2 8.77 11.4 10.2 3.93 2.47 6.45 7.45 8.49 3.74 7.86 1.65 1.05 8.34 7.27 4.7 8.99 3.23 10.7 9.09 11 1.52 11.4 9.9 7.39 4.08 7.5 1.36 8.3 8.06 7.33 9.19 9.44 11 11 10.9 9.62 2.4 8.76 4.88 9.2 9.68 7.89 10.4 9.77 6.72 5.54 9.69 9.77 13.5 11.5 9.8 2.61 4.09 8.96 7.44 8.78 10.3 8.22 6.25 8.46 9.95 3.52 7.67 9.49 8.61 10 9.33 9.75 11.3 10.8 5.03 10.4 8.99 2.99 1.23 11.7 10.8 7.4 9.91 5.81 8.07 3.98 5.87 10.3 7.9 7.22 8.88 8.44 11.3 11.2 9.01 8.56 2.4 1.23 11.5 9.84 9.94 10.7 10.2 10.1 8.63 0.34 10.9 10.4 11.2 10 8.6 9.87 10.7 7.89 10.1 9.6 5.71 10.2 8.14 9.65 7.64 9.23 7.44 9.57 8.81 11 5.51 12.1 10.2 4.54 12 9.12 7.63 11 7.36 5.28 4.73 6.91 8.25 7.67 8.25 8.55 8.2 5.74 9.84 9.12 8.02 9.68 2.08 8.29 8.51 8.8 8.17 10.5 9.84 8.06 10.1 8.89 10.9 8.73 10.2 10.8 5.76 9.61 8.7 9.5 7.77 6.62 7.94 9.73 7.65 0 8.24 8.75 5.15 10.6 9.75 4.16 11.7 0.34 9.66 10.4 10 6.79 3.9 8.3 8.91 8.25 10.5 11.3 3.26 8.32 8.99 7.13 11.5 7.71 2.4 9.42 8.48 10.4 9.76 9.94 3.3 9.56 9.69 10.1 7.59 9.06 10.1 11.2 10.9 1.88 10.6 10.1 7.53 10.5 8.76 4.55 4.7 9.63 0 11.4 8.04 2.67 10.5 9.76 9.59 7.44 6.21 5.68 10 1.52 6.84 0.85 9.5 5.51 7.14 10.9 6.74 7.81 10.1 10.6 6.3 8.87 10 11.7 9.09 7.68 7.5 10.5 12.7 10.2 9.44 10.1 7.54 8.21 3.87 9.41 9.79 10.5 8.9 8.51 6.87 8.96 8.38 9.11 9.89 9.14 3.68 9.47 11.8 9.04 7.85 10.5 10.2 9.02 9.95 6.84 10.6 7.51 0 7.81 0 9.2 10 6.06 0 9.58 9.32 10.2 11.4 6.62 9.34 6.75 11.4 11.9 11.8 10.8 8.27 8.34 7.88 8.02 9.34 7.03 11.3 11 0.34 9.61 8.54 9.83 9.79 5.6 9.64 8.28 9.43 2.33 11.8 8.79 9.33 11 9.93 8.03 12.1 5.87 9.42 8.53 9.29 8.35 11 8.42 11.7 8.7 11.8 9.01 10.1 10.3 11.2 9.6 9.14 10.3 9.38 7.68 10.6 9.96 8.48 8.68 3.68 8.14 10.6 8.37 10.9 0 11.8 7.71 9.8 6.41 10.2 10.4 9.9 12.3 9.88 6.59 10.9 6.32 5.37 8.99 11.1 9.45 11.5 8.43 10.7 9.36 9.38 6.99 6.31 9.46 9.29 9.34 4.46 7.7 9.79 11.2 11.8 8.15 9.79 5.63 9.22 8.34 9.29 9.4 10.5 7.63 7.65 10.9 9.11 8.15 8.57 7.05 5.62 11 9.22 10.6 6.37 8.6 8.32 10 0.34 8.49 7.55 9.11 7.89 9.23 10.4 7.62 8.26 9.87 11.2 7.27 8.33 8.32 8.28 9.48 6.37 9.25 7.71 9.03 4.57 10.7 11.6 7.06 8.37 10.6 7.98 8.11 3.65 9.4 6.08 11.3 12.9 12.5 7.15 11.2 8.02 10.5 10.3 8.43 7.89 8.21 8.96 11.6 6.96 9.7 8.28 7.93 7.55 10 9.41 6.46 10.4 0.34 4.28 9.62 5.76 10.9 3.3 5.91 8.77 9.62 9.85 11.3 9.47 6.76 7.25 10.1 8.25 10 7.86 8.63 10.5 10.2 11.6 10.6 7.08 8.26 10.4 10.5 8.78 7.74 3.58 11 9.78 7.29 6.62 7.23 8.36 6.08 8.4 4.7 11.8 8.54 7.33 5.91 9.91 7.1 10.7 10.7 7.37 9.57 9.22 10.3 7.63 5.4 1.88 10.7 2.16 8.44 8.7 7.2 7.78 8.79 10.6 3.9 10.5 8.97 9.45 10.3 11.8 9.76 7.07 11.6 10.4 9.47 7.9 8.82 9.29 7.22 9.74 7.9 10.3 8.69 9.01 1.65 8.96 10.6 7.48 9.91 1.38 8.65 8.31 9.33 7.68 2.89 0.85 9.23 10.9 9.58 9.14 7.19 9.91 8.15 9.34 10.4 11 9.05 12 4.05 7.03 9.9 10.2 9.47 9.43 9.66 9.51 11 9.15 11 10.5 9.92 8.06 7.22 10.2 9.09 8.68 8.4 8.33 10 9.99 6.78 6.96 10.3 8.29 8.06 12.3 7.84 9.07 10.1 10.1 7.77 10.6 10.8 8.78 9.04 3.76 10 8.28 11.2 8.81 0 10.5 10.2 10.1 7.7 4.34 10.6 8.04 9.21 4.7 11.8 10.3 10.1 11.6 8.22 11.7 4.09 8.09 7.26 9.96 6.82 9.52 9.35 8.04 9.76 10.6 5.24 3.79 8.1 8.3 9.78 8.48 10.6 9.83 9.4 8.45 9.68 9.98 5.37 9.97 10.8 9.96 7.43 9.28 12.1 10.1 7.51 3.18 9.68 10.2 4.62 7.18 11.6 11.9 12.5 10.4 10.2 9.31 9.45 9.59 10.2 7.98 9.86 6.57 8.66 6.38 8.64 9.52 2.94 9.5 9.73 11 8.69 10.1 3.68 11 9.93 9.77 7.68 9.03 9.33 10.2 8.74 9.17 4.73 2.25 9.76 7.92 7.25 5.91 10.2 11.5 3.98 9.87 8.05 9.43 11.5 9.28 8.16 8.02 7.2 8.99 8.97 9.1 0 8.36 9.41 0 8.85 9.32 8.97 10.4 8.77 10.2 8.72 8.7 9.22 9.61 5.52 9.47 7.65 7.15 10.7 9.48 2.94 9.74 6.85 10.2 8.87 9.34 9.55 6.61 7.15 7.53 8.17 8.85 7.8 10.6 11.9 4.34 5.48 8.68 10.5 10.4 7.23 10.5 10.9 9.13 7.43 6.61 6.5 9.7 9.56 2.08 9.46 9.46 9.06 7.52 7.82 9.71 7.13 9.85 9.81 10.6 10.2 9.9 8.37 7.76 11.2 3.85 7.42 11.6 12.8 4.73 6.66 1.98 8.78 9.6 9.37 3.3 0 0.34 8.63 5.29 8.05 10.4 8.3 0 10.2 9.07 9.31 10.9 11 11.1 7.73 3.68 9.3 8.99 9.82 11.6 7.02 5.33 4.02 8.78 9.77 9.29 2.33 8.27 2.99 5.26 0 7.34 0.62 9.29 6.39 4.98 10.6 9.9 5.94 1.77 0 9.51 8.38 4.3 8.29 7.99 2.79 1.88 8.56 3.76 8.96 10.6 7.4 8.98 7.11 2.25 11.6 8.01 10.2 8.1 11.6 1.77 9.93 10.4 7.5 8.15 11 10.9 9.12 10.8 8.53 10.4 9.55 7.27 0 9.71 8.58 7.95 10.1 8.83 9.83 10.8 6.87 9.74 10.7 4.5 2.08 10.4 7.4 9.65 7.43 8.54 9.83 9.35 8.19 9.05 10.7 10.8 9.62 10.1 10.7 8.12 11.5 8.21 7.56 8.57 8.73 9.06 7.97 7.54 8.23 9.37 9.8 5.95 10.7 8.95 7.53 8.77 8.79 9.15 10.2 9.66 9.96 11.6 11.1 10 8.92 8.01 7.34 11.3 11.5 10.3 10.5 8.21 8.78 9.76 10.7 11.1 7.94 9.67 8.18 9.64 11.2 9.52 8.89 10.5 7.62 8.73 10.6 11.7 10.3 10.9 7.39 9.78 4.5 11.5 9.51 9.03 4.32 8.82 10.3 8.74 5.24 12.1 10.1 10.3 9.74 8.35 8.52 8.38 11.3 8.78 9.58 9.33 10.4 5.69 5.51 6.34 8.07 8.36 10.4 9.69 10.4 10.4 7.55 6.38 8.55 8.99 10.2 8.65 10.6 12.7 10.1 8.28 9.61 8.85 9.29 11.1 9.93 10.3 12.6 9.45 11.1 8.66 8.83 10.3 10.7 11.7 11.2 7.27 9.01 9.69 10.2 0.85 12.5 10.8 9.14 9.3 11.1 8.6 8.84 10.6 10.9 8.42 10.2 10.7 6.72 10.5 9.84 10.1 11.7 10.6 5.66 10.3 8.97 10 8.79 8.6 9.72 6.16 9.07 9.48 9.12 5.23 9.52 8.65 8.42 10.4 5.99 6.1 7.37 9.39 10.9 7.2 10.1 4.16 8.86 4.63 9.96 11.2 3.76 9.68 7.96 4.99 5.56 2.99 10.4 8.4 9.78 2.33 7.31 9.6 10.1 5.07 10.7 10.7 0.34 10.1 7.74 7.87 11.4 10.1 10.3 10.4 10.7 12 9.99 7.42 10.3 6.95 10.2 4.89 10.6 6.25 9.22 11.9 8.79 6.13 9.09 10.8 7.64 10.3 10.9 2.8 10.8 7.67 9.61 8.33 11.1 1.05 10.5 10 10.7 9.19 8.36 0.34 8.46 5.87 12.4 9.43 7.55 4.89 3.52 10.6 3.74 7.32 0.62 11.8 10.1 9.28 11.3 3.34 10.7 9.13 10.1 6.57 9.19 11.8 10.8 4.82 9.43 8.85 12.4 7.36 11.8 8.96 8.89 9.72 6.18 11.7 8.35 4 8.9 2.08 11.5 5.61 11.8 10.2 8.3 7.05 10.9 13.3 4.44 2.54 9.36 10.3 10 10.7 11.7 9.74 6.99 10.9 10.8 9.24 8.18 8.42 0.34 6.05 0.34 10.4 9.22 10.7 5.81 10.6 8.72 9.77 9.98 9.14 9.38 11 3.48 7.39 8.48 6.61 9.15 2.52 2.4 5.44 9.3 3.98 4.86 2.61 3.45 2.25 4.09 7.85 4.82 2.75 3.3 11.7 3.18 4.4 3.13 3.93 2.73 9.88 1.38 4.09 5.96 5.62 4.09 3.22 5.29 5.15 4.3 4.3 7.33 3.38 5.22 5.12 7.88 4.85 1.05 8.51 1.23 3.55 5.33 7.83 10.1 12.4 8.06 9.47 2.4 11.7 9.45 0.34 5.17 7.47 8.86 12.1 1.05 10.6 10.9 3.45 10.9 9.53 9.27 9.92 9.46 5.44 10.3 10.4 7.36 9.59 8.14 10.8 9.62 7.91 0.85 1.89 9.99 9.35 10.2 6.82 9.67 9.12 5.75 8.2 10.8 5.11 0 0.62 10 4.12 9.99 9.05 3.98 12.2 10.8 11.7 5.03 2.67 15.2 5.37 10.2 6.35 9.5 3.87 7.67 11.4 9.01 10.7 5.39 2.79 9.61 8.04 10.7 8.62 8.96 7.86 0.85 5.75 2.94 8.24 1.05 11 5.73 11.7 10 14.2 4.7 0.85 9.91 8.1 10.9 10.1 10.8 6.79 8.93 10 7.99 11 9.73 10 8.84 4.81 10.8 11 10.2 12 11.6 10.1 12.6 11.3 8.66 8.97 10.7 11.2 6.28 10.3 9.75 8.28 10.4 10.9 6.92 9.16 9.96 8.04 6.53 9.58 10.7 11.7 6.36 10.1 8.99 8.43 9.84 9.18 8.58 11.8 8.48 9.22 8.08 8.48 9.71 10.5 9.12 10.2 10.5 6.43 7.33 13 4.55 10.3 9.02 9.86 7.36 8.79 9.91 8.99 9.66 10.2 8.82 10.1 10.5 8.83 11.1 5.87 6.01 9.95 11 9.73 0 6.19 6.46 9.84 7.32 10.4 5.18 8.47 4 3.3 7.82 8.7 3.95 8.57 9.55 7.03 8.71 11.5 8.54 9.72 7.63 9.95 11 10.4 9.31 9.58 8.87 7.24 0 9.09 7.08 7.48 11.8 7.97 10.8 6.24 8.88 10 8.74 10.6 10.5 7.26 2.4 9.28 9.46 9.73 10.6 10.2 8.48 11.2 9.61 3.09 10.4 8.7 0.35 12 11.2 12.1 7.79 9.34 8.08 9.56 11.3 4.3 11.4 6.97 9.32 4.14 9.41 6.63 9.2 11.6 3.9 8.77 8.26 11.4 4.26 7.5 8.79 8.78 10.5 11.5 4.59 9.31 5.54 10.4 6.87 9.77 8.01 8.67 3.93 8 9.18 9.6 10.7 10.3 9.02 12.5 7.7 11.4 10 13.1 7.15 10.2 10.2 11.4 8.56 9.5 6.56 12.3 9.87 10.2 9.05 2.08 9.98 7.25 7.91 3.22 4.26 6.97 11.4 10.3 8.88 10.9 9.49 12.6 11.3 9.8 7.72 10.4 9.84 9.77 9.56 10.4 10.7 6.68 11.3 10.9 12 4.22 8.2 7.78 10.1 9.2 11.7 7.99 8.35 10.7 8.56 5.39 9.17 7.68 7.15 8.75 11 8.89 11.5 13.2 11.7 7.47 10.2 7.56 7.85 11 7.1 6.63 12.3 6.41 11.4 1.52 9.14 9.45 10.8 5.98 0 4.44 9.51 11.5 9.91 6.47 7.73 8.49 7.81 9.46 2.89 6.85 9.29 1.38 4.2 11.8 9.77 7 4.22 4.36 9.17 8.34 0.34 0.85 10.6 9.64 0 6.1 7.33 9.41 8.87 10.7 8.15 11.3 7.83 8.58 9.26 8.58 3.45 4.44 10.6 10.4 11.8 7.04 3.3 7.36 7.11 4.84 8.55 9.92 8.1 10.8 5.06 9.58 9.21 7.44 7.31 5.62 8.07 9.91 0.62 5.1 11.5 10.2 4.92 10.8 9.17 8.88 8.47 4.07 9.16 7.97 10 7.73 6.95 4.38 8.68 11.4 9.13 4.45 11.5 10.7 8.76 0.34 11.4 3.55 11.5 3.98 6.79 6.23 10.6 8.79 10.8 9.07 8.32 11.8 10.2 10.1 9.41 9.04 13.2 8.08 9.16 8.2 9.69 4.28 5.26 1.98 3.76 8.37 10.1 8.08 11.7 10.8 10.6 14.3 7.06 6.45 7.36 9.38 10.1 2.33 9.29 10 9.07 8.24 7.13 7.45 9.68 9.53 10.3 9.5 0.34 8.27 7.79 7.5 6.46 11.8 9.13 10.2 8.07 8.37 3.13 7.44 11.2 5.41 13.3 8.93 3.68 9.31 8.29 3.04 2.99 8.52 2.4 6.33 12.5 0 11.7 10.5 9.27 9.81 9.75 10.5 9.81 10.8 7.82 9.44 3.52 4.82 7.21 10.5 9.44 8.3 10.1 7.31 8.04 11.1 9.51 11 9.12 10.8 9.59 4.2 7.85 9.62 12.6 8.03 10 6.3 8.13 0.34 10.2 10.1 10.7 10.8 8.26 7.41 4.38 2.4 11.3 8.97 8.87 12 10.9 6.99 7.81 7.49 10.4 6.3 10.9 11.6 9.73 9.69 9.49 9 8.37 10.4 9.02 6.56 12.3 8.92 8.88 9.38 12.9 11.6 5.56 7.32 8.42 3.93 8.76 5.89 9.82 6.03 7.27 9.9 9.94 8.83 7.65 11.5 6.02 2.16 10.7 9.85 8.43 9.37 9.78 7.58 9.46 7.81 11 8.49 3.88 8.51 5.64 7.08 5.6 6.66 6.01 8 11.8 8.14 5.26 9.99 10.7 9.53 6.38 6.6 7.91 0.62 10.5 7.67 15.6 9.36 8.79 10 6.5 9.53 9.67 9.18 10.3 8.61 8.15 10.3 5.05 10.4 11.3 11.7 8.99 11.2 8.22 1.98 5.16 7.18 10.9 9.41 6.38 10.6 1.23 7.74 7.71 7.24 11.1 10.8 7.32 3.41 9.74 9.37 6.15 5.37 9.22 14.1 9.56 2.73 10.3 10.4 9.41 1.77 10.3 1.88 6.76 6.33 2.73 9.66 7.32 2.33 8.32 9.51 8.63 11 7.99 8.75 9.65 4.45 12.5 11.3 10.2 10.5 6.21 9.22 11.7 11.9 9 7.93 10.1 10.9 9.56 9.86 10.8 11.8 8.84 11.5 11.9 2.61 11.5 8.47 12.7 10.4 10.6 9.97 8.02 5.07 10.2 9.77 10.1 8.41 9.35 9.97 6.98 6.2 8.65 7.08 4.24 10.8 7.93 9.62 8.31 4.62 10.7 10 12 8.21 0.34 10.1 8.99 7.82 11.2 9.95 7.91 9.52 6.43 4.49 10.4 0.34 0.85 11.6 7.83 10.1 12 10.8 11.6 6.69 0.62 7.19 9.54 10.8 12.4 9.44 11.9 8.8 11.1 9.6 8.66 8.74 9.8 9.21 11.8 12.4 9.5 7.16 7.75 9.62 12.5 10.7 12.7 6.85 7.93 7.34 8.34 7.9 7.18 11.2 5.14 10.4 9.69 10.6 11.8 10.6 11.4 9.28 12.5 10.7 10.6 11.4 12.1 9.19 10.3 9.09 8.95 0.34 11.8 8.37 10.3 10.6 7.23 9.14 12.1 10.1 7.64 3.38 6.93 10.8 9.65 8.94 11.2 8.32 1.65 9.11 13 11.8 11 10.2 9.78 10.7 9.36 12 10.1 7.36 1.23 9.84 9.54 11.6 1.88 7.38 10.8 9.78 4.16 9.2 8.82 10.8 11.2 0 5.5 11.4 9.44 9.3 9.04 8.39 0.34 1.25 0 12.8 4.02 7.33 1.05 10.9 10.4 0.34 3.87 10.6 4.2 9.8 9.99 8.26 4.86 11 7.84 5.16 11.5 10.4 9.67 11.7 11.2 9.51 10.8 9.25 8.25 8.03 8.51 8.92 10.4 0.72 9.16 9.97 6.84 5.87 0 10.7 6.35 9.88 7.17 9.97 15.6 10.1 9.73 1.23 9.15 4.36 1.88 9.77 0.85 9 10.1 9.88 3.38 10.2 4.5 10.5 11.9 9.52 8.85 8.72 4.05 0.62 6.63 11.7 0.62 7.38 7.65 10.4 5.35 9.68 10.6 0.85 8.92 2.47 0 9.75 13.1 5.61 10.9 9.62 13.4 0 10.4 7.8 10.7 7.55 10.5 7.1 9.17 8.64 8.66 1.65 9.42 8.91 11.1 9.11 11.4 8.63 10.5 9.97 10.4 9.54 9.09 9.68 11.2 1.23 8.21 10.9 6.68 5.91 7.18 4 9.54 9.91 0.34 1.65 5.25 8.91 2.84 11.4 9.35 9.5 11.1 8.08 10.7 2.54 8.65 10.3 5.1 8.43 1.65 10 1.38 6.84 9.05 8.31 0.34 11.3 9.55 8.6 10 14.8 13.9 13.6 12.7 9.97 10.5 13.6 4.88 13.7 10.4 13.4 12.9 12.8 12.2 13.8 11.8 12.9 9.85 13.6 2.08 12.1 11.7 8.57 12.7 13.1 12.2 12.9 12.6 12.3 12.7 12.9 13.5 12.3 12.7 11.1 12.7 13.1 11.8 8.01 8.72 13.9 6.22 13.8 14 12.3 8.63 8.49 12.7 13.1 12.7 13.6 12 14.8 3.12 2.94 3.26 7.56 8.75 12.5 1.98 1.23 14 9.7 8.54 8.77 9.79 8.21 11.7 13.5 12.9 12.1 13.8 13 12.2 13.1 11.1 12.7 12.4 12.5 9.88 14.1 12.4 12.8 11.2 13.1 13.6 12 9.17 6.84 12.5 1.23 11.8 2.99 8.74 12.1 11 11.2 9.41 9.83 0 8.43 11.5 10.1 8.65 8.99 10.8 10 10.5 4.94 4.55 2.79 2.17 9.57 12.4 4.6 1.98 9.04 0.34 11.4 3.9 5.49 10.2 12.6 0 10.5 3.9 9.6 15.2 10.8 10.4 3.8 9.88 4.81 11.7 10 10.2 11.7 8.65 7.26 9.22 8.87 9.69 6.05 10.3 10.1 10 13 5.76 6.61 4.62 6 5.15 4.02 4.26 3.85 13 7.06 1.98 4.5 2.25 11.9 3.04 5.59 10.4 9.23 12.4 2.16 3.38 7.34 5.66 5.3 0.62 5.8 7.92 1.38 6.18 6.53 4.82 5.84 0.34 0 9.15 2.4 1.05 5.67 0.85 1.88 7.98 8.61 11.9 9.16 3.87 9.05 12.6 11.6 10.1 10.1 10.1 5.45 9.43 10.2 10.8 9.62 10.4 9.84 9.31 6.82 9.12 10.5 7.21 7.99 9.7 10.5 9.91 7.25 8.3 11.4 5.84 2.63 8.61 10.7 9.71 10.2 7.53 7.27 7.83 3.98 9.06 8.94 7.83 9.23 7.99 8.41 6.59 10.3 7.67 8.18 10.1 7.57 11 6.89 10.2 2.84 10.2 3.9 7.81 8.2 8.04 8.65 2.25 12.4 6.73 7.56 7.52 7.1 9.14 11.5 8.68 10.3 0 12.4 6.01 5 7.62 8.63 8.37 8.06 7.36 12 11.6 12.7 8.12 3.98 5.56 7.15 2.79 11.3 10.5 7.6 6.98 5.9 6.21 6.43 10.2 10.2 11 8.34 9.14 9.95 8.56 8.71 8.95 9.24 8.35 7.11 4.18 8.06 1.77 9.73 6.62 10.1 2.94 9.87 1.77 12.4 9.78 4 6.44 7.91 8.43 10.8 7.85 10.9 7.67 6.28 9.36 3.82 4.34 5.85 7.68 5.33 9.2 12.6 0.62 9.27 7.34 9.89 10.3 12.1 10.1 10.7 9.01 10.8 10 8.51 4.7 10.7 9.21 9.4 10.1 3.65 12.8 9.12 8.44 10.2 1.38 0 7.52 0.62 12.4 0 11.3 12.4 5.84 9.03 6.71 9.45 9.34 6.79 9.94 7.47 7.61 9.98 6.42 4.77 4.05 2.47 11.7 3.18 0 12.2 10.8 8.73 10.1 11 8.95 6.86 11.3 7.28 6.06 10.2 10.2 9.49 9.69 6.38 9.08 6.34 5.29 2.16 2.84 4.78 11.4 8.92 10.2 1.52 7.64 9.05 1.65 1.77 9.82 8.2 9.8 1.23 0.34 10.2 7.08 5.18 9.19 4.2 6.97 3.87 0.62 0 6.89 9.23 2.89 11.2 10.7 0.85 8.99 9.37 6.34 7.04 4.88 6.4 7.31 2.79 7.89 7.78 9.3 7.76 0.62 3.41 2.61 8.3 2.33 9.37 9.47 2.25 7.88 8.6 9.72 10.4 8.33 11.1 9.06 8.78 9.96 8.86 9.88 9.26 9.12 9.05 2.25 7.5 0.34 1.38 1.88 5.04 4.74 3.09 9.45 3.76 5.11 5.21 9.81 3.09 6.94 9.35 0.62 10 0.34 2.94 0 6.61 10.1 5.64 3.34 13.9 7.11 0 5.86 5.46 9.23 9.2 6.99 1.05 5.61 1.23 2.16 10.5 2.99 5.87 5 2.25 0 3.18 2.54 7.06 1.52 2.54 5.64 8.27 9.9 0 9.93 1.23 1.88 2.79 9.11 2.08 6.63 0.85 11.6 3.38 10.3 4.57 5.54 9.22 0 0.85 7.46 10.4 9.43 7.03 10.4 0.62 0.34 3.71 0 8.49 3.13 9.81 8.17 5.41 5.64 9.33 10.3 13.3 5.56 0.34 7.89 10.2 4.34 5.17 9.51 10.5 8.98 11.8 11 9.9 8.51 4.38 8.72 11.3 10.8 7.53 11.2 10.1 9.72 5.13 9.25 11.6 8.75 8.82 10.5 9.28 9.6 11.4 8 8.92 8.04 9.98 11.2 7.4 11.5 8.94 9.11 8.17 7.33 10.5 6.86 1.52 10.2 10.4 8.05 7.51 9.76 8.35 9.1 3.34 11.1 13.6 9.82 7.07 11.7 10.9 7.25 9.67 8.11 4.9 11.7 7.28 10.8 9.13 5.13 9.76 8.56 7.61 10.2 0 11.3 10.3 10.4 4.45 9 10.3 9.52 11.5 10.7 7.89 7.87 6.82 9.06 7.27 10.2 10.6 6.53 1.65 2.54 4.38 9.13 8.08 8.16 6.3 8.47 6.47 8.19 5.45 11.4 1.65 10.9 9.08 6.48 8.41 9.25 6.98 4.2 8.95 6.99 8.7 6.51 6.61 9.19 8.02 9.25 0.85 9.74 8.97 8.76 8.04 9.07 10.4 8.56 9.52 9.33 9.68 9.69 8.7 9.62 10.2 2.33 3.13 13 8.76 9.81 8.17 4.52 7.8 3.09 9.99 7.14 7.98 4.55 3.52 8.35 9.96 11.4 7.61 11.2 8.76 9.08 4.84 8.02 3.22 7.54 6.15 7.05 9.25 9.14 10.3 9.54 10.4 8.65 9.48 1.05 11.2 12.5 8.13 9.37 11.1 2.47 11.4 9.31 12.4 10.3 10.9 3.76 7.96 2.47 4.34 1.65 9.72 11 0 10.2 9.99 5.85 5.91 9.7 7.42 9.12 9.71 8.51 9.26 8.87 7.9 8.02 11.6 9.94 11.3 2.84 9.5 2.47 1.38 5.25 1.05 8.49 1.38 0 5.13 8.61 0.62 4.88 3.85 7.53 0.85 8.54 6.59 3.26 9.93 7.11 5.02 5.58 2.99 1.05 0 8.94 9.26 10.1 7.35 10.9 1.65 7.8 4.84 8.94 0.34 9.45 5.31 6.22 1.88 2.89 7.4 2.33 5.22 4.78 4.05 4.71 0 10 10 1.38 1.52 1.88 6.46 6.99 8.12 5.14 1.65 8.88 6.33 1.88 6.2 8.02 7.75 1.52 4.59 10.9 4.05 3.34 6.68 0.86 4.16 0 6.62 2.4 11.2 2.4 5.15 9 5.52 5.14 8.67 8.5 8.47 0 2.67 7.09 10.2 10.2 9.62 9.62 13.9 0.34 2.84 8.12 9.97 1.23 9.39 11.8 9.29 7.69 8.84 12.5 10.8 11.2 1.77 8.97 9.96 10.3 9.04 8.06 10.4 8.33 10.1 7.41 5.57 7.88 2.08 12 6.64 9.84 9.48 9.56 8.88 7.66 8.81 7.92 4.18 5.3 1.88 5.45 10.4 11 11.8 10.4 11.2 7.24 8.91 9.26 11.7 2.99 10.1 8.28 9.87 8.16 8.26 10.9 10.9 11.6 8.28 6.07 0.85 7.27 8.72 9.56 7.72 8.25 4.85 7.04 8.71 11.1 9.86 8.42 10.6 9.84 8.96 9.72 8.82 10.8 10.9 9.77 9.18 9.34 10.8 9.71 8.53 7.37 11.6 10.5 8.97 10.1 0.34 11.8 5.85 10.9 6.41 12.2 8.32 13.2 10.7 11.5 10.5 10.4 11.8 10.3 4.26 11.6 4.59 2.73 9.49 12.2 9.45 12.5 11.9 7.94 11.1 8.7 11.8 4.93 15 9.39 9.28 8.06 2.54 8.9 0.62 12.3 7.24 9.26 11.8 10.4 8.2 13.3 0 5.49 13.2 10.2 9.49 9.81 6.51 3.26 10.5 9.01 12.8 12.1 9.24 8.71 13.1 12.2 9.65 10.7 8.19 11.1 11.7 10 11.1 11.4 8.73 10.4 11.1 9.98 12.3 11.9 12.8 12 11.6 11.7 7.84 6.75 0 11 10.2 12.4 11.3 3.93 13.4 2.33 12.5 11.4 13.2 4.32 9.49 10.5 1.98 1.05 1.52 2.08 1.77 1.65 0.85 2.55 11.7 2.29 1.05 1.38 4.45 11.4 11.9 11.1 9.38 0 3.58 10.6 8.2 9.97 9.11 10.2 7.37 2.67 6.17 9.26 9.36 3.74 5.82 9.45 6.48 10.2 9.08 10.4 8.35 11.4 10.4 9.31 9.57 9.07 2.4 12.8 7.25 10 10.4 11.4 5.67 11.8 8.87 9.62 7.39 12.2 9.2 8.94 7.36 11.9 10.5 7.74 10.8 10 2.25 8.35 3.82 4.4 4.18 12.2 13.6 9.61 0 4.09 0 9.76 9.84 3.38 10.1 7.59 10.7 9.98 8.38 5.38 11.7 7.33 10.1 9.95 7.27 10.4 9.67 8.99 8.43 8.27 9.66 5.57 1.38 11.5 13.6 10.2 9.39 12.4 10.7 8.45 10.7 7.69 6.82 7.41 10.4 8.7 10.1 8.56 10.6 8.07 6.83 5.13 6.32 4.99 7.54 11.1 8.18 10.1 2.47 5.16 7.31 9.1 1.98 0.34 10.6 7.17 10.3 9.98 11.1 5.04 10.3 7 9.28 9.19 8.37 11.3 1.52 11.3 8.35 8.76 10.7 9.95 10 2.89 8.36 9.81 7.3 11.6 0 0 10.7 8.58 9.89 5.53 10.7 10.9 8.74 3.55 12.2 10.6 7.49 9.6 5.15 4.36 9.05 15 8.17 8.34 10.5 0.34 9.31 8.88 1.05 9.66 4.18 9.48 11.4 7.24 9.64 7.14 12.3 10.8 8.19 10.2 14.2 7.3 3.45 10.8 3.34 5.63 9.72 8.21 7.46 10.5 3.13 10.6 9.95 0.34 10.5 7.9 8.29 10.1 2.4 9.93 1.38 9.05 13.3 11.9 9.15 9.76 9.35 2.16 8.4 7.06 8.92 9.59 6.1 10.6 9.52 10.6 10.7 10.1 8.65 13.4 12.3 13.5 7.7 10.6 11.3 9.24 9.3 11 0.85 10.3 9.47 11.8 6.63 2.61 12.7 12.6 7.89 8.09 7.92 8.4 15.3 11.6 9.28 6.81 9.26 8.79 9.6 8.24 10.5 11.5 5.51 10.7 14.2 9.53 5.92 8.43 3.09 1.98 10.6 9.85 8.29 10.4 7.35 11.2 8.58 2.89 2.25 4.28 8.98 10.3 1.38 11.1 8.18 10.8 11.7 6.8 2.08 11.3 12.8 9.38 10.8 11.3 10.3 11.4 6.73 10.6 12.5 11.7 10.9 4.77 12.3 13.2 9.27 10.1 13.1 13.4 9.99 10.6 12.5 6.01 15.2 1.51 13 8.24 10.5 14.2 7.15 8.61 7.59 10.7 7.93 8.12 16.5 3.3 12.9 11.7 10.3 6.45 0.34 5.26 1.77 4.73 5.96 7.01 14.3 0.62 3.34 2.15 11.2 9.94 10.3 3.3 10.7 1.52 10.7 12.2 7.58 8.73 6.83 9.07 10.8 9.95 10.8 13.7 9.25 8.06 9.11 7.56 7.45 7.4 9.17 6.8 4.67 13.4 6.98 7.21 8.94 6.5 8.96 4.81 3.87 5.64 6.33 7.29 2.08 7.99 4.69 5.48 6.19 8.29 9.7 5.74 8.56 0 4.54 4.71 11.5 6.52 6.01 2.54 5.37 8.31 6.37 3.78 10.2 7.38 8 9.39 7.92 3.98 5.55 8.5 5.26 4.92 13.3 3.9 6.94 0.85 5.2 0.34 3.82 4.22 5.91 4.67 9.09 3.04 2.94 9.15 5.5 9.1 8.92 6.36 5.69 4.94 0 1.52 5.06 6.14 5.37 6.59 2.89 5.4 4.09 0.62 7.26 5.57 2.08 0 7.54 11 7.97 4.3 9.69 2.08 4.62 10.5 4.18 5.37 0.62 9.25 10.2 2.25 1.05 4.16 8.42 7.14 7.93 4.57 6.47 1.05 8.27 7.57 6.65 7.7 4.28 9.79 2.94 8.33 6.82 7.17 2.33 8.97 1.88 10.2 3.9 12.4 1.65 13.9 15.1 13.4 1.05 10.2 10.4 9.99 8.46 10.6 12.4 10.2 6.53 10.6 10.2 11.3 10.5 1.23 11 10.8 11.4 9.52 11.9 9.98 11.2 11.6 11.7 6.01 9.06 0.34 3.13 11.6 4.49 9.87 5.7 10.2 9.85 10.7 11.2 2.33 8.29 9.64 10.3 9.75 11 10 5.9 0.62 9.81 3.68 10.8 11.2 11.6 10.4 10 9.99 9.74 9.99 11 10.5 2.84 10.7 11.8 10.6 9.73 10.5 10.7 7.14 9.99 9.48 7.49 11.5 12.9 11.9 10.2 10.7 9.55 11 9.78 6.81 1.23 10.1 0.34 13.1 13 9.62 8.83 7.17 6.18 4.81 7.91 7.66 11.4 4.28 1.38 3.45 11.4 11.1 6.89 9.61 12 10 7.64 8.03 11 10.4 11 11 8.95 7.68 0.85 5.52 10.5 0.62 0 7.86 0.85 1.65 3.76 3.41 3.62 2.16 9.1 8.83 1.05 16.7 4.93 2.08 14.4 1.52 8.26 10.3 5.87 9.87 1.38 12.3 10.1 6.19 7.73 7.5 8.51 13.2 6.41 9.81 10.6 13.3 10.3 13.7 11.9 12 13.6 4.74 12.2 10.4 6.21 12.7 8.61 9.16 10.5 7.75 7.96 9.81 4.97 8.78 6.66 12.7 7.9 10.1 8.64 8.47 8.33 7.64 8.68 6.63 8.21 8.59 11 9.17 7.31 11.6 7.67 9.69 6.66 9.77 11.2 9.68 7.47 11.4 9.77 8.2 8.98 7.94 10.4 8.78 6.55 12.1 2.76 0 6.99 7.26 8.25 8.83 8.52 9.54 7.2 1.19 10 5.52 7.55 6.86 10.7 1.38 10.2 6.18 6.15 3.52 11.8 6.03 1.77 3.93 0.62 0.34 0 2.08 9.17 9.29 7.23 7.9 8.74 8.48 8.51 6.67 8.77 9.06 6.68 7.1 9.62 8.86 10.2 2.67 11.4 9.4 11.2 8.3 14.3 6.94 7.84 2.4 11.2 6.09 10.8 8.27 7.65 3.34 6.84 2.16 8.23 8.03 8.79 11.4 1.05 8.47 9.6 9.51 7.87 8.79 8.84 11.4 7.85 7.72 8.3 7.57 11.7 9.59 9.88 9.21 7 2.99 11.6 11.3 7.09 8.57 7.23 8.58 1.52 8.69 7.87 6.93 7.52 7.34 8.89 9.19 6.02 1.05 6.38 6.83 7.99 6.44 11 9.66 10.6 13.3 9.77 11 5.13 11.6 3.56 13.7 8.72 11.6 6.92 4.3 12.8 11 9.6 10.4 10.5 11.3 11.6 6.93 4.81 2.94 7.06 10.9 5.85 4.3 9.14 9.34 10.2 8.55 10.8 10.1 11.7 12.4 8.53 5.29 9.96 1.23 10 9.61 1.77 7.06 8.7 9.97 9.12 6.02 8.96 0.62 5.83 6.79 10.2 4.78 9.98 10.2 8.75 9.4 9.03 7.79 8.23 8.45 9.99 1.05 8.71 11.4 8.59 6.59 8.61 10.8 8.48 0.34 15.3 10.7 8.15 7.98 8.69 9.68 9.07 9.5 9.81 5.61 10 10 5.76 9.89 9.9 10.6 12.7 8.25 9.81 8.63 8.39 7.88 9.74 9.9 10.4 6.09 7.53 8.22 11.1 7.48 6.45 9.73 7.45 8.49 9.01 9.35 10.5 10.8 9.39 7.49 9.64 8.57 6.86 8.82 5.12 8.9 7.71 9.16 8.87 8.05 9.09 10.6 11.5 8.93 6.85 9.36 8 11.6 11 6.45 9.71 10.9 12 8.36 7.36 5.36 5.27 7.8 6.5 3.99 7.93 8.96 5.33 8.8 10.4 7.72 12.7 8.21 6.55 0 4.6 7.38 11.8 10.3 9.75 6.64 5.92 9.57 8.61 6.65 7.88 8.72 8.06 9.47 9.3 10 0 10.6 12.6 10.8 10.7 11.9 8.32 8.15 8.26 5.75 11.2 0.62 0.85 1.52 9.7 5.38 10.4 9.63 7.67 1.52 0.34 5.94 6.47 4.42 5.67 8.37 2.25 1.52 8.05 10.4 7.99 9.22 2.99 11.1 8.14 9.53 2.4 3.04 7.07 1.88 9.92 8.51 7.15 5.55 10 11.1 8.7 7.82 8.25 10.7 9.53 4.98 5.49 8.78 10.8 9.32 10.6 9.67 9.14 9.82 9.04 8.44 10.3 11.3 11 4.26 7.91 6.07 6.86 6.93 8.2 7.47 4.8 7.56 8.89 9.07 6.2 12.1 3.85 6.33 8.42 4.07 7.97 6.56 9.83 3.74 7.69 8.98 7.26 8.86 7.58 9.19 9.68 4.97 8.06 10.1 2.73 10.8 10.4 9.26 5.61 8.33 8.86 8.41 7.26 10.6 6.05 9.81 6.12 8.88 10.8 7.57 6.92 10.7 10.8 11.3 4.87 9.05 9.19 10.4 7.8 9.81 9.26 3.26 8.75 8.07 10 9.54 7.23 6.06 7.17 10.4 9.66 7.99 9.53 10.2 7.64 9.11 4.28 6.23 8.49 10.1 8.39 8.61 8.75 8.69 7.12 10.6 9.31 9.84 8.2 6.57 8.41 8.87 11 11.9 11.4 9.21 1.05 7.4 9.65 7.18 8.56 8.85 8.79 7.1 8.28 6.38 7.05 9.86 7.54 8.44 4.05 3.75 8.35 7.75 7 6.3 1.23 8.04 7.34 8.61 8.93 7.91 11.5 8.71 8.33 7.34 5.71 8.33 10.1 9.12 8.98 8.3 10.7 6.18 8.73 7.5 7.96 8.9 8.14 6.67 8.13 9.66 4.88 10.7 6.83 6.5 11.7 10.1 8.23 9.88 8.98 8.71 8.25 7.56 7.47 6.94 3.55 8.84 6.45 9.63 8.22 7.58 11.5 9.19 10.7 5.32 7.49 6.5 6.68 11.3 8.78 9.26 6.59 6.25 6.78 8.12 6.67 8.82 9.45 8.58 6.37 10.6 7.56 9.91 4 10.8 10 5.31 9.62 7.24 5.96 7.04 5.82 6.89 6.13 8.1 5.63 8.77 0.62 6.99 1.88 0 4.07 6.92 0.85 9.39 5.13 6.6 7.76 6.9 1.88 7.55 9.52 9.03 11.1 2.73 8.55 9.94 8.05 8.73 12.9 10.3 10.1 6.13 8.39 10.8 6.31 6.9 9.48 8.9 9.31 12.3 8.14 8.33 10.8 10.7 9.38 6.43 8.38 8.01 7.75 7.18 14.6 9.2 10 5.52 6.73 0.62 8.84 8.98 7.64 6.65 5.68 7.45 11.8 7.04 0.85 7.64 9.06 3.74 6.28 8.44 6.87 1.23 12.1 4.05 9.53 6.3 4.14 11 11.4 7.1 7.43 7.82 2.84 9.29 6.77 8.41 9.44 3.48 11.4 5.24 7.01 7.01 8.93 10.8 7.2 7.66 7.96 8.3 7.95 9.3 6.28 7.55 11 8.75 8.69 9.19 3.62 9.04 7.9 7.71 9.25 9.46 0.85 5.81 2.08 11.8 5.49 5.95 7.95 10.1 8.65 9.54 7.59 3.74 9.09 9.75 11.3 9.31 7.53 10.1 9.33 7.87 9.75 10.2 8.81 9.87 9.48 8.88 6.92 7.02 3.41 3.45 5.43 5.46 7.01 5.06 9.24 2.49 7.34 5.87 1.77 9.33 9.94 12.5 6.25 8.41 6.44 2.79 3.52 2.33 10 10.1 6.9 11 4.73 9.32 9.61 9.9 8.71 9.68 6.36 9.7 9.35 8.22 7.47 9.72 7.7 9.62 7.37 9.44 4.54 10.3 6.71 10.4 8.7 7.16 8.59 7.3 5.73 9.42 5.5 8.85 8.71 10.3 8.9 11.1 9.72 8.74 8.32 0.34 10.8 11 6.53 8.67 11.8 10.1 11.1 9.19 9.22 9.75 10 7.67 11.6 9.75 9.48 10.1 11.4 8.41 8.94 9.44 10.6 5.72 11.9 9.51 7.18 7.66 6.34 9.8 10.6 8.67 6.87 9.25 8.91 8.06 11.9 9.26 8.98 10.5 9.28 9.91 11 8.98 4.34 8.78 11.8 9.28 12.1 8.07 8.98 9.33 5.91 10.1 12.3 8.36 8.41 6.31 8.44 9.61 10.6 6.79 7.85 7.74 9.55 4.57 7.65 8.37 2.73 3.79 2.99 10.2 4.32 4.2 11.6 8.6 3.95 9.28 6.85 11.3 7.78 8.41 10.7 10.3 1.77 9.6 5.17 11.3 9.75 4.65 11.1 8.76 13.8 9.69 2.61 9.8 10.4 5.87 8.95 2.4 4.81 9.25 9.66 6.04 10.1 8.56 12.5 6.12 12.2 4.9 2.67 5.5 7.81 7.69 7.6 9.11 5.02 4.45 4.2 9.02 7.42 12.2 8.14 6.38 8.87 6.93 7.58 6.7 9.48 6.71 10.8 11.2 9.65 11.2 9.88 12.1 7.32 10.2 8.75 7.21 7.75 7.58 11.8 11.7 10.4 6.69 9.03 1.05 11.2 9.51 10.2 11.8 10.1 9.48 4.99 7.73 6.42 1.61 11.4 8.43 8.87 6.8 2.4 2.47 11.2 13 9.14 3.37 4.4 5.33 5.45 11.9 8.53 9.24 11 10.8 14.5 2.61 7.26 0.85 4.75 5.31 11.5 11.8 9.43 5.66 3.52 8.36 10.9 10.5 8.65 2.08 8.02 1.88 2.84 11.2 6.55 8.47 10.5 7.15 13.6 10.7 4.95 6.96 10.4 8.87 10.4 5.46 9.45 10.4 10.1 5.75 8.19 8.83 10.1 11.3 9.68 10.9 12.5 0.34 8.06 6.53 9.25 9.49 8.9 8.45 8.91 5.67 9.87 4.71 7.67 11.4 9.95 9.63 11.3 10 10.5 9.39 7.25 10.2 10 3.65 1.77 10.8 8.89 10.8 6.3 8.79 9.18 6.85 9.41 9.43 4.81 10 10.9 10.6 10.9 11.9 9.62 7.03 0 7.55 2.84 10.4 3.68 0.34 9.72 8.54 3.62 7.37 8.42 9.22 5.35 7.2 0.34 9.04 5.73 10.5 8.24 9.89 9.68 9.63 9.25 9.67 3.86 10.2 8.3 9.7 9.51 9.33 9.49 10.2 12.5 9.7 8.57 9.18 10.8 8.39 9.14 0 8.88 9.95 4.12 9.18 8.09 7.98 8.92 1.23 6.41 7.3 9.39 9.85 3.55 10.5 11.5 7.81 10.5 14.2 9.39 9.75 4.2 12.2 8.49 2.47 8.29 8.8 9.24 9.91 12.2 8.5 10.2 12.3 12.7 10.2 11.5 11.3 5.65 12.7 8.92 6.23 9.7 8.09 8.54 8.92 0 7.15 0.85 11.8 12 8.3 5.28 9.15 0.34 11.1 10.9 11.5 9.35 9.48 12.4 9.79 9.14 8.57 10.6 9.58 7.16 6.57 11.6 4.62 10.3 9.91 7.12 8.41 9.15 0.34 0.34 9.91 1.88 0.34 0 11.7 1.23 8.33 3.22 5.06 5.06 8.5 0.62 1.23 2.4 3.26 0.34 2.16 8.42 2.99 10.4 10.8 9.94 6.75 8.05 0.34 3.55 8.38 9.15 9.19 0.62 7.46 6.81 6.76 9.84 7.65 8.19 5.65 6.26 6.94 9.47 0.34 7.36 7.36 10.5 10.8 10 0.34 4.91 0.34 5.88 3.95 0 7.49 9.1 7.67 9.53 5.61 10.3 9.21 1.05 7.88 0.34 2.94 0.34 0.34 8.56 7.53 2.33 9.66 10.2 6.44 7.07 8.98 1.52 7.88 8.96 11.3 9.68 7.1 0 4.63 8.3 10.8 9.69 0.85 8.46 11.2 8.2 7.39 8.45 7.17 0 5.45 10.7 0.34 9.32 11.7 7.93 2.54 6.39 9.73 9.2 7.63 9.32 9.86 0 1.98 9.3 8.81 8.57 8.62 7.52 8.47 6.05 7.43 9.47 9.19 6.52 3.85 1.52 8.62 5.85 6.17 10.8 8.63 9.46 6.71 10 12.1 3.04 8.05 8.91 9.5 9.78 7.65 1.05 5.15 1.23 8.74 3.79 1.22 7.81 5.96 7.55 7.05 8.63 8.39 9.18 10.2 9.28 9.32 3.95 3.9 9.9 4.55 6.7 0 6.38 0 4.36 0.62 1.65 1.52 3.05 8.09 10.1 8.8 5.07 8.85 10.3 8.38 8.63 8.69 5.97 11.1 11 7.99 8.46 6.82 5.74 0 6.3 1.38 6.97 10.9 8.6 7.12 4.6 8.82 10.8 6.47 8.36 9.44 5.55 6.56 5.02 1.52 7.64 10.5 9.49 6.5 9.59 7.87 6.84 12.2 10.8 1.52 8.23 3.34 7.29 4.5 6.93 8.19 11.5 8.66 3.26 9.58 9.12 9.57 8.22 4.52 13.6 3.26 5.92 0.34 5.09 5.78 8.57 9.74 10.7 6.62 9.89 6.13 7.32 8.69 9.57 2.25 9.39 6.21 2.47 6.71 9.62 5.16 7.14 10.1 10.5 8.44 8.61 9.54 8.62 8.22 8.9 7.06 9.15 8.51 6.78 6.23 7.95 8.23 10.2 9.19 10.9 8.78 8.17 10.6 10.4 11.2 9.31 10.6 8.3 7.13 11.7 10 6.1 9.77 9.26 4.14 9.12 7.79 10.9 7.46 9.07 8.68 11 12.3 2.47 6.83 9.62 10.5 10.3 5.2 8.12 4.22 5.63 3.68 5.98 7.17 8.25 7.68 6.8 3.85 8.91 8.23 5.73 6.09 0.62 8.24 10.6 10.3 7.34 9.18 9.27 8.39 8.76 8.7 8.41 11.1 10.9 1.38 9.05 7.86 6.27 8.66 8.67 9.85 8.43 2.25 7.91 8.42 7.98 8.69 11.1 6 8.65 8.5 9.76 9.23 8.54 9.31 8.04 11.1 9.58 9.36 9.42 6.79 8.5 8.41 4.85 8.58 11.4 9.33 4.82 9.54 9.37 9.87 9.21 8.65 9.85 7.85 8.96 0 7.35 10.1 9.17 9.89 7.06 9.5 9.62 6.89 10 7.37 4.45 6.57 8.4 9.09 6.69 8.53 9.26 0 9.36 9.66 7.29 9.93 7.96 7.59 9.07 9.83 7.06 8.28 8.73 9.66 9.81 8.93 6.02 8.35 6 7.29 7.7 3.52 9.66 8.42 9.61 9.24 9.58 7.38 9.72 8.41 10.2 0.34 6.49 11 9.75 7.8 9.84 6.4 9.34 3.98 9.22 4.28 9.42 10 10.6 6.55 8.77 7.51 5.03 6.18 9.49 7.6 8.47 10.1 7.32 11.1 6.29 7.99 9.13 10.4 4.67 7.44 6.89 7.94 9.23 9.52 9.05 7.86 1.65 3.87 3.22 5.17 9.73 10.8 11.3 7 3.22 7.42 11.7 10.2 9.75 7.85 10.3 5.1 7.1 5.03 11.4 8.27 9.47 7.52 6.86 8.16 6.08 9.75 10.9 6.12 10.6 5.42 8.58 10 6.92 9.39 8.89 11.1 7.06 8.28 10 1.98 9.81 9.32 9.45 0 6.87 10.6 6.16 8.41 8.05 8.65 7.38 8.4 2.33 10.1 7.43 7.89 3.41 11.4 9.34 9.9 1.23 3.38 6.74 10.4 10.7 4.18 7.63 8.91 11.5 3.26 1.77 1.88 2.89 9.57 8.51 7.36 10.3 11.8 8.29 6.97 0.62 9.32 7.42 0.36 7.76 8.87 10.2 1.23 9.84 8.06 7.73 4.22 4.8 0.34 11.7 9.94 5.12 2.94 7.97 8.24 6.77 8.73 2.4 9.16 10.4 7.04 5.09 12.1 6.11 11.8 5.43 5.05 0.34 3 9.5 9.27 6.7 8.26 7.79 8.59 7.84 8.49 7.95 7.08 2.33 8.22 6.87 7.91 11.1 8.1 9.01 4.65 7.67 9.07 9.65 4.52 7.49 4.6 4.12 8.07 10.1 8.13 7.48 4.36 1.88 6.98 9.59 10.2 5.82 7.85 9.41 2.99 8.27 11.7 3.45 6.86 9.11 10.7 3.34 7.77 0 1.23 8.94 1.65 7.88 7.25 7.2 8.66 9.15 9.37 7.08 10.8 8.54 8.76 7.13 4.88 4.5 8.23 8.69 9.6 8.35 8.15 5.84 8.17 7.94 8.92 10.8 10 9.35 0 9 10.8 8.07 8.22 10.3 9.24 9.75 9.32 11.3 5.34 9.98 8.7 6.23 7.61 9.67 7.75 10.4 11.7 6.01 7.73 3.55 11.3 8.26 8.91 9.47 11.2 3.26 7.12 8.53 9.92 7.81 8.86 10.3 9.78 3.58 8.27 8.49 9.11 8.39 9 9.57 8.12 7.75 9.56 2.08 9.08 8.92 0 8.83 9.17 8.36 6.21 10.7 10.1 8.56 11 7.39 7.98 8.74 6.19 8.77 6.2 10.6 3.46 7.92 8.43 6.69 8.75 2.67 4.05 6.21 8.31 7.68 9.75 8.6 2.08 10.3 6.51 3.98 6.75 3.58 8.91 9.25 8.71 2.97 2.47 10.3 10.4 9.89 6.21 10.6 4.63 7.56 8.95 1.05 7.37 9.72 9.17 9.92 7.77 9.23 11.6 9.85 8.29 6.8 8.23 6.37 13 8.53 9.19 6.2 10.9 10.8 9.49 4.14 1.65 6.91 6.45 5.86 8.02 10.9 11.8 10.6 2.54 9.16 0.34 10.2 8.61 7.68 10.1 6.06 1.05 5.15 0 8.59 7.42 9.17 9.68 8.01 3.09 7.05 11.4 3.87 10.1 9.59 9.43 4.62 8.21 9.18 7.46 7.08 8.41 8.68 10.1 1.38 9.81 10.1 6.04 8.65 9.8 11.5 11.5 6.4 10.7 10.3 10.8 6.08 5.3 5.86 0.34 7.41 9.1 5.29 10.2 8.81 9.86 9.23 6.87 9.87 9.55 4.52 9.27 6.76 11.5 8.51 9.32 6.84 3.9 12.3 11.5 9.84 8.94 10.4 8.82 8.98 8.92 5.76 9.29 10.9 2.4 2.84 11 5.62 5.89 3.18 10.5 1.88 3.18 4.63 9.07 4.38 4.77 13.9 9.39 7.97 7.02 1.05 8.59 8.69 11.2 10.8 8.81 8.64 9.82 10.2 10.8 8.2 8.63 9.41 10.7 8.7 8.84 9.99 9.84 9.5 5.41 6.68 7.79 8.69 10.2 7.83 2.4 0.62 9.75 10.1 9.12 8.36 9.71 5.2 5.78 11.7 9.54 9.76 9.91 12.2 11.5 5.1 3.13 10.4 8.21 9.04 7.67 9.51 8 8.03 7.28 6.55 8.19 3.85 5.07 9.35 9.69 9.26 8.52 8.28 8.91 6.99 3.67 9.3 4.36 6.94 6.05 10.3 11.2 10.4 9.39 11.1 3.9 7.36 12.1 10.9 8.76 7.21 12.6 11.3 7.49 12.1 10.9 10.7 12.2 11.8 10.8 9.32 9.48 11 11.3 9.33 10.4 5.93 7.57 11.5 9.02 8.71 12.4 11.2 1.77 7.5 10.1 9.91 9.25 9.85 3.68 12.2 1.4 8.59 10.6 9.41 7.56 9.26 1.98 1.77 11.3 10.2 7.95 7.8 9.35 4.62 11.5 11.4 10.7 10.2 11.2 10.8 8.11 8.45 7.55 11.7 7.12 9.46 8.59 10.7 4.63 10.4 6.74 7.98 2.25 10.3 8.85 13.1 2.4 3.82 3.18 1.65 7.52 12 10.4 12.2 9.73 10.7 14.1 9.73 12.6 8.27 4.47 9 10.7 9.2 12.2 10 6.22 9.62 6.19 9.95 5.74 0.62 6.32 5.87 9.62 4.16 3.76 5.5 9.61 6.53 8.1 10.5 0.85 8.92 11.1 10.6 10.2 11.6 9.84 2.4 4.42 2.89 0 10.3 9.17 3.98 10.8 10.9 3.65 9.97 7.4 3.98 9.77 0.34 9.19 2.33 13.2 9.24 10.4 7.17 8.65 6.86 10.1 8.48 7.85 7.24 9.49 7.16 6.08 7.61 9.79 6.44 4.28 8 9.88 8.48 7.17 12.2 10.1 5.75 9.9 4.57 1.38 10 4.65 8.38 10.6 5.5 9.72 10.2 9.25 6.71 10.3 10.4 9.88 10.4 9.33 4.63 4.55 7.03 13 11.6 11.2 10.7 8.9 8.82 10.2 10.9 12.1 11 9.97 9.76 9.08 9.22 11 10.3 12 9.89 11.1 9.1 11.3 0.85 7.31 1.88 11.1 7.99 11 9.49 7.52 3.04 9.27 11 7.07 10.9 10.4 2.67 9.81 9.22 9.63 10.7 10.8 11.2 6.91 6.18 1.75 10 9.91 8.91 8.9 8.23 5.31 5.77 10.4 8.35 7.91 5.68 11.7 10.8 10 0.62 1.98 4.97 10 2.25 5.76 9.95 9.44 12 8.36 5.99 9.9 9.4 7.23 12.8 10.3 10.7 5.27 5.76 3.9 4.88 1.88 4.36 8.26 11.3 5.9 8.27 9.55 8.97 6.82 1.38 8.86 6.65 8.62 0 3.9 7.63 3.5 2.47 5.94 0.62 9.03 10.2 8.72 8.51 12.9 10.8 11.6 7.35 0.34 7.52 10.9 9.69 9.52 8.98 6.92 7.87 8.79 8.86 6.65 2.61 13.7 10.1 10.6 11.1 2.16 5.52 3.95 8.91 7.57 12.6 10.4 1.05 9.02 9.47 8.68 0.34 9.88 7.96 8.51 7.13 7.08 7.36 8.25 12.1 9.96 9.16 8.45 8.54 8.48 9.02 4.77 1.98 4.22 9.79 7.63 1.88 7.11 9.02 8.33 10.2 9.21 3.04 6.79 2.84 6.12 7.2 4.92 11.6 8.53 8.16 9.52 9.95 7.35 2.89 5.57 9.79 9.9 6.54 5.41 4.73 9.6 9.49 8.74 8.1 8.34 6.24 10.5 6.92 7.88 9.18 9.53 9.2 11.3 9.04 7.79 5.17 8.72 10.7 9.69 9.39 12.5 8.51 4.74 4 4.26 8.4 3.95 11.4 9.13 10.3 8.01 7.67 8.66 4.36 12.4 8.36 6.38 2.73 7.06 11.3 8.8 9.49 8.76 5.26 8.43 9.25 8.53 7.51 0.85 6.33 9 7.98 10.1 11.2 8.51 9.2 7.82 8.12 7.9 7.66 7.97 7.44 12.2 3.85 6.57 8.99 5.14 10 9.16 10.2 9.06 0.69 7.74 0 0.73 5.38 11.3 7.75 9.06 11.8 1.65 10.1 8.84 8.24 5.96 9.75 8.84 3.52 12 9.04 7.04 9.08 7.87 6.65 3.74 10 9.56 10.2 9.33 9.31 5.53 8.95 10.1 9.19 5.46 11.1 5.07 9.09 5.6 8 11.2 10.3 10.5 10.9 9.78 9.9 6.48 10.7 5.39 9.71 8.16 7.93 10 5.12 4.38 10.6 8.59 8.5 10.1 7.63 9.51 3.95 9.73 10.4 8.32 7.58 9.49 6.97 0.85 1.52 5.22 9.92 7.41 9.58 5.7 7.5 11.8 7.77 9.19 11.1 1.65 9.83 9.83 7.23 10.2 10.5 8.73 4.65 9.54 10.1 10.2 10.1 8 5.98 1.52 7.87 8.08 13.1 8.29 0 5.93 8.11 8.34 10.4 7.53 10.2 9.93 6.84 6.83 9.18 11.6 9.95 5.41 8.68 6.51 3.58 6.49 12.3 6.49 10.7 9.55 0.85 9.91 10.6 5.13 10.4 7.7 9.09 4.95 8.09 2.61 7.23 7.06 9.12 8.73 6.91 7.93 10.2 9.15 6.73 9.18 6.59 8.45 8.14 3.93 10.6 3.18 6.96 1.81 8.43 7.93 9.06 8.47 4.12 11.3 8.71 10.3 13 7.8 9.71 11.9 9.06 6.13 3.85 8.58 3.22 5.53 1.65 5.58 11.1 10.5 5.85 6.72 7.43 2.89 11.2 9.26 9.1 10.2 8.63 9.56 7.77 0.85 11.7 2.08 8.58 9.69 11.8 11.8 7.22 7.85 8.27 9.07 9.63 7.9 10.8 10.2 7.34 5.07 9.88 1.05 3.62 6.89 8.83 0 9.89 3.41 9.5 9.57 6.13 4.52 3.93 7.09 9.42 3.38 7.75 9 7.78 9.33 11.3 10.5 9.17 8.88 8.64 12.6 9.87 5.69 5.93 9.01 9.46 8.03 6.43 7.23 9.7 6.32 11.8 9.47 8.36 3.58 10.2 8.85 11.2 10.2 10.9 2.79 7.9 11.4 3.09 9.92 3.68 7.72 9.31 9 8.78 5.71 3.45 7.26 6.5 2.73 10.4 10.5 3.04 6.51 10.7 6.95 9.32 12 8.66 7.4 9.11 6.66 8.64 8.97 6.75 8.3 8.13 11.8 2.61 9.93 9.45 9.03 3.38 9.31 10.1 1.52 5.88 8.92 4.02 1.05 10.8 7.28 0.85 8.82 6.36 8.73 8.94 8.87 9.73 10.4 9.23 8.17 8.58 10.4 7.3 4.43 7.24 10.5 4.47 8.98 8.94 11.9 8.88 8.53 8.6 8.8 5.99 10.5 8.89 9.45 7.36 11.1 3.45 9.34 10.4 9.81 7.88 8.5 4.98 9.75 13.1 10 8.53 6.09 10.2 12.7 7.25 1.38 10.8 7.81 1.65 8.72 11.5 9.17 11.1 9.21 3.13 9.4 10.7 5.35 7.65 7.2 8.15 12 10.4 6.63 5.94 7.95 8.24 8.9 1.52 5.54 2.84 1.05 6.49 10.5 8.17 6.21 3.45 4.9 6.89 5.13 7.61 3.62 9.22 10.2 10.4 6.32 9.82 6.61 4.57 8.88 10.9 9.9 10.6 7 12.5 11 10.1 9 3.76 9.4 9.36 9.32 9.89 9.57 7.77 9.41 4.74 8.28 7.11 0.85 10.5 9.38 7.6 10.9 9.62 9.27 10.3 10.8 0.52 10.9 8.77 10.4 6.27 2.08 10.5 13.1 0 10.6 7.84 9.88 7.75 10.6 2.47 8.8 0 9.73 7.78 5.24 7.36 10.8 9.94 8 0 12.7 9.08 10.6 10.1 3.3 8 8.97 4.42 3.82 2.18 9.65 10.5 8.91 12.6 5.14 11.3 8.05 10.1 8.38 12.8 10.1 2.16 5.21 10.4 3.74 9.98 4.39 3.76 0.34 5.06 0.62 11 8.73 10.2 3.41 6.58 9.37 10.2 0 4.74 2.67 7.37 8.1 5.13 9.1 10.9 7.49 7.09 6.72 4.77 7.34 11.7 2.84 10.6 3.04 7.38 9.18 11.3 6.17 10.5 9.62 1.05 8.59 9.23 5.11 8.99 9.31 10.7 9.29 9.52 11.8 9.51 7.76 9.6 6.59 10.3 1.38 11 10.2 1.77 11.5 8.19 7.64 5.28 10.1 9.07 11.6 9.8 7.49 12.1 9.53 1.05 2.08 6.95 2.94 5.61 0 10.9 5.65 8.86 7.9 7.64 7.98 10 13.4 9.97 3.79 10.7 5.76 7.31 11.1 8 10.9 8.2 7.83 5.62 9.84 1.52 9.7 8.55 6.97 8.73 9.76 3.45 8.02 9.97 10.5 4.85 7.17 9.63 8.81 3.34 9.29 7.07 9.21 1.05 3.68 8.55 9.55 5.87 8.39 8.9 10.6 11.3 8.43 10.2 10.9 8.6 1.88 9.51 13.4 12.7 7.47 8.06 4.67 8.3 7.82 8.52 10.4 9.97 0.85 0.34 12 12.3 6 7.63 3.3 11.3 7.6 11 11.1 10.6 10.5 10.5 13.3 10.5 9.76 8.4 10.8 6.27 8.63 9.25 7.02 8.09 11.8 10.8 6.94 6.51 9.99 1.52 11 7.59 14.5 10.8 11.6 9.92 8.93 9.12 11.5 12 9.75 9.55 10.5 8.68 9.45 10.2 9.33 10.5 8.6 9.62 9.73 10.4 8.71 9.35 9.52 11.9 6.76 10.8 11.5 2.03 9.64 12.4 8.49 5.67 9.33 11.7 10.7 3.45 8.99 9.56 7.79 2.25 12.9 8.34 12.4 8.26 10.7 6.73 8.41 10.5 7.19 12.1 11.6 10.1 7.19 10.3 10.6 7.58 13.3 6.78 5.52 2.54 9.1 8.79 9.49 12.1 9.31 8.07 11 9.77 5.89 9.43 10.5 9.03 12.8 10.8 10.7 9.95 11.4 8.5 11.1 9.32 7.67 8.51 7.91 11.1 9.45 7.92 9.31 10 8.21 8.5 11.6 13.2 11.2 8 9.3 11.6 9 10 7.71 11.8 13.4 9.85 2.4 10.3 10.5 11.7 9.31 9.57 9.83 10.2 8.85 10.7 8.98 11.1 10.9 8.74 11.2 11.2 10.7 9.02 12.8 5.9 11.2 9.52 8.99 9.43 11.1 7.5 9.86 11.1 0.34 6.23 1.98 7.44 10 9.29 11.9 9.11 1.77 9.39 1.52 11.1 5.36 9.84 9.72 9.36 3.87 10.6 2.33 6.93 8.12 14.3 4.74 7.59 11 11.2 9.29 9.02 10.5 4.71 10.3 9.35 8.65 10.5 6.58 8.82 11.9 6.5 9.97 9.44 4.88 13.3 9.57 11.7 5.11 11.3 9.1 11.2 8.84 12.8 6.43 7.78 8.7 7.06 8.05 10.2 8.07 7.42 4.16 12.9 7.27 8.43 10.7 11.4 8.73 7.86 12.6 8.33 10 10.6 12.3 11.2 10.7 11.2 11.2 10.7 4.62 10.4 8.4 13.2 5.34 11.1 9.13 8.95 7.76 11.1 9.52 10.2 9.7 10.8 11.7 10.8 2.94 10.5 11 7.12 10.6 13.1 12.5 9.13 7.42 10.3 1.98 11.3 8.32 10.2 12.5 9.69 10.5 8.54 10.7 10.4 9.1 10.4 11.1 10.6 8.16 9.36 11 7.11 10.2 5.73 8.98 11.2 9.23 1.98 7.37 2.33 9.02 7.4 8.7 9.46 2.84 9.31 9.25 8.18 8.04 8.34 10.9 6.77 9.08 9.51 10.4 8.82 8.71 8.93 0.85 11.4 9.54 9.89 7.89 10.4 10.6 6.2 10.6 8.95 12.5 11.3 10.5 12.5 9.67 10.6 9.75 11.2 10.2 12.6 11.4 10.7 10.5 7.73 9.71 10.7 10.7 9.2 10.4 8.52 11.6 9.54 11.5 4.4 8.58 8.82 9.71 9.7 11.1 12.2 4.09 8.1 5.72 9.18 10.4 8.82 9.07 10.6 9.55 8.67 11.9 9.22 7.91 8.15 3.82 8.85 10 8.48 11.6 11.5 10.4 12.8 6.28 12.2 10.9 9.48 9.49 8.86 11.2 10.7 7.53 10.2 5.87 10.8 8.99 4 9.35 9.7 8.92 7.53 11.4 8.47 3.45 6.98 7.51 10.2 7.4 8.24 12.5 8.56 6.15 11.3 1.52 2.79 4 7.06 9.79 10.6 9.5 11.3 9.27 6.44 4.16 12.3 10.8 11.4 8.62 3.49 10.7 8.28 10.8 6.76 9.64 12.2 11.6 8.7 4.63 8.08 11.4 10.2 10.8 13.2 9.22 11.7 3.26 11.7 9.45 8.62
-TCGA-CN-4734-01 4.98 9.14 5.1 7.85 6.18 9.59 0.55 2.08 0 1.51 1.17 7.78 4.54 2.23 5.7 7.66 11.3 10.1 5.56 9.52 7.71 15.7 9.75 0.55 9.83 7.32 3.91 9.46 2.6 4.57 2.76 6.71 3.12 0.95 2.23 3.36 0.55 6.82 2.49 2.71 1.73 2.71 6.66 0.55 5.21 2.71 0 1.92 11.1 5.36 2.61 4.62 7.29 8.78 6.17 1.26 4.18 0.95 6.46 9.06 5.14 1.92 7.69 0 3.15 0.95 5.71 3.75 9.34 2.55 2.23 6.21 5.97 4.14 1.51 3.29 2.73 3.29 3.97 0 2.61 0.95 1.84 9.1 3.29 0.95 6.08 0 1.26 0.95 6.77 4.22 8.1 6.55 1.51 1.73 1.73 3.22 4.46 7.86 0 2.49 2.99 5.05 1.72 2.99 7.13 6.3 7.08 4.89 0 0 9.21 4.73 6.18 1.73 2.17 4.39 3.28 2.08 1.51 4.58 0 1.92 2.23 5.57 0 1.73 2.37 13.5 2.11 2.99 3.29 8.58 2.9 0 3.7 0 2.98 7.81 8.26 8.48 3.22 3.22 5.14 12.8 0 11.1 2.1 0.55 2.25 0.55 7.29 9.64 10.3 3.36 1.26 0 9.75 2.23 6.45 6.95 1.73 1.51 8.97 4.59 6.24 4.45 8.89 0 9.99 8.68 1.73 2.81 1.51 0 3.42 3.18 8.19 4.34 3.98 7.02 3.07 2.37 1.99 1.95 1.26 0.95 7.01 4.39 4.65 8.94 3.71 4.18 4.62 7.59 2.37 9.35 8.89 8.67 7.25 9.2 9.47 10.4 7.83 9.59 6.8 9.55 10.8 11.4 8.3 10.8 11.1 11.4 10.6 9.72 7.04 11.5 6.78 11.2 7.22 7.75 11.9 10.2 8.51 8.29 2.81 11.1 7.98 13.2 8.48 2.81 9.12 11.1 8.16 7.09 10.1 7.45 9.63 7.71 9.38 7.35 12.5 12.3 12.4 13.1 13.3 13.6 8.06 11 9.82 0.95 4.18 9.35 9.26 8.1 12.9 12.5 1.26 13.5 0 10.3 10 10.1 11.2 11.5 10.4 10.1 12.1 10.8 7.84 8.2 7.96 8.43 11.3 6.02 2.37 13.2 10.8 12.1 12.7 11.3 11.2 7.28 9.93 9.91 10 7.26 12.2 9.49 4.57 0.55 9.86 7.38 8.96 10.2 8.42 12.9 6.88 8.83 12.4 11.4 9.12 10.4 10.4 12.6 1.51 9.46 8.59 8.21 12.4 10.1 7.25 9.61 3.15 10.7 11.1 2.23 8.66 4.82 9.13 10.2 9.78 8.4 10 10.5 11.5 9.83 10.1 8.56 10.5 9.64 12 8.11 9.21 11.7 7.78 8.78 7.58 8.46 11.1 12.8 9.15 10.5 7.74 13 11.6 9.99 10.9 11.1 11.1 1.84 10.1 0 2.61 8.94 6.79 10.7 2.61 2.81 8.24 12.4 10.6 11.1 7.58 4.85 6.47 2.99 6.77 6.5 4.65 11.6 9.51 11.6 10.3 8.14 8.21 11.4 0.55 9.73 8.42 8.74 7.32 8.92 10.1 11.1 5.52 8.97 7.19 9.57 9.67 9.07 13.7 8.82 7.14 10.9 9.78 6.67 6.26 6.37 7.27 10.3 10.3 9.28 9.86 10.7 9.5 12 10.4 9.87 7.36 4.22 12.1 7.52 8.48 10.6 9.31 8.86 8.12 7.79 8.8 3.29 4.57 11.8 6.97 10.9 10.3 10.5 3.7 10.1 10.5 13.7 9.77 9.06 6.26 4.86 6.92 9.04 7.81 10 10.7 11 10.5 2.23 12.2 6.47 7.9 8.84 0.55 8.09 0.55 6.32 8.43 11 8.72 8.5 9.1 10.4 9.57 6.68 7.82 10 11.7 2.23 11.7 7.97 2.61 3.42 3.15 7.89 7.54 1.51 8.23 1.92 9.51 9.1 7.6 8.85 8.8 6.28 16.1 11.4 2 9.3 12.9 6.98 14.5 10.6 7.9 2.99 1.92 8.41 8.7 3.07 13.6 7.9 6.71 9.12 6.28 16.1 10.4 14.4 8.02 10.5 7.77 9.91 5.38 8.86 7.58 3.7 0 8.47 11.6 13.8 8.88 10.3 11.9 10.6 8.81 11.3 7.33 10.4 9.94 10.4 9.75 10.2 9.18 10.6 8.97 8.3 10.5 10.6 10.8 7.79 10.2 12.5 6.91 5.49 10.1 9.15 9.84 9.66 3.8 9.81 7.48 0 9.71 10.2 10.2 9.15 9.66 10.4 13.7 11.8 8.84 10.7 6.86 6.23 10.4 7.46 8.27 9.76 9.01 8.28 9.32 0.55 8.81 7.26 9.98 10.1 9.94 11 10.1 8.84 9.54 11.8 10.2 10.7 11.3 0.55 14.4 9.98 11 10.9 11 12.6 11.1 10.3 8.58 10.9 10.8 10.2 1.26 9.32 5.27 7.44 8.55 8.97 12.9 10.1 10.3 9.41 10.7 8.13 3.29 6.81 10.7 10.3 5.18 12.4 8.49 9.96 9.85 12.5 10.8 12 12 9.8 0.55 11.4 10.1 8.42 9.22 7.71 10 6.49 11 10.4 12.6 11.7 9.95 10.4 10.9 11 11.5 8.18 12.4 11.8 10 10.6 7.61 7.99 10.6 7.59 4.87 8.32 10.6 0.55 8.61 10.6 11.3 4.22 10.7 4.22 9.44 2.99 10.2 10.4 12.8 12.4 12.9 12.3 9.44 10.7 7.23 6.31 9.6 7.29 5.02 8.03 8.18 11.7 11.4 7.9 10.1 13.1 1.26 7.17 11.5 7.56 9.61 8.79 3.98 9.18 11.6 10.2 10.2 8.19 9.63 12.2 7.14 10.9 10.2 9.72 10.8 9.53 11.9 9.05 7.57 7.2 8.49 8.83 11.4 12.4 12.8 12.2 7.55 10.6 12.6 11.2 0 10.6 8.29 8.08 1.54 4.14 11.4 7.39 8.78 10.5 11.1 4.45 9.49 12 13.1 10 3.98 12 11.1 8.39 5.23 0 8.7 10.9 5.25 8.13 7.48 2.99 12.3 9.41 10.8 7.18 4.32 3.65 9.7 9.02 9.74 0.55 3.85 9.68 8.48 0 3.48 12.2 9.64 2.99 4.91 7.74 3.48 9.67 9.92 8.93 0 8.19 15.2 8.11 8.08 11.3 10.1 10.5 12.9 8.99 12 7.85 8.37 3.63 11.1 2.71 0.55 0.55 1.75 8.38 4.87 10 2.49 6.73 9.81 3.42 3.15 12.4 12.3 6.36 3.7 12.5 11.2 5.18 11 9.3 12 11.2 10.2 11.1 12.2 10.1 10.3 8.27 9.24 12.3 8.14 6.52 8.45 8.7 8.5 8.85 12.4 7.75 9.32 5.46 6.81 5.55 11.1 6.96 1.73 4.51 13.4 10.6 0 13.6 8.19 9.21 11.9 11 5 5.33 9.25 0.95 2.23 4.85 9.97 6.46 4.82 8.82 7.86 2.61 6.93 0.55 10.4 10.4 5.3 12.3 11.8 8.72 7.86 11.2 10.5 1.51 6.58 3.75 5.65 8.23 12 10.2 8.6 10.1 7.34 5.33 4.29 5.53 9.57 0 2.08 8.99 10.3 1.51 3.65 12.9 3.85 10.7 5.6 6.26 0.55 10.3 8.59 10.2 10.3 5.97 10.2 9.19 9.57 11.5 9.68 11.4 9.03 10.4 9.87 0.95 4.02 5.75 12.2 10.2 10.9 0.55 9.58 9.56 11.1 9.89 11.8 7.09 7.78 11 11.5 9.73 0.55 11 3.22 10.8 4.22 11 10.5 8.55 2.81 9.24 11.4 12.2 10.8 8.17 9.6 11.5 9.93 10.3 10.5 10.1 9.49 11.2 12.9 10.6 13.4 11.7 11.7 5.93 12 11.1 7.59 6.7 10.8 13.1 13.5 13.1 11.4 11.6 9.87 8.43 8.52 10.9 8.45 9.7 12 5.83 12.4 10.3 11.9 10.6 7.25 2.37 12.4 6.61 10.6 4.98 11.1 9.01 5.27 9.83 8.25 7.78 10.1 1.26 11.6 8.92 2.37 12.1 9.11 10.7 8.04 9.07 6.68 8.28 6.75 11.3 6.11 2.37 6.88 4.96 4.18 7.33 12.1 5.96 12.9 5.55 7.14 10.4 8.55 7.55 8.17 9.43 1.26 8.66 11.3 9.71 10.9 10.9 10.2 9.74 11.7 10.3 11.4 10.4 5.75 2.08 8.25 9.86 8.83 6.62 7.59 7.76 12.2 9.73 9.76 9.86 7.04 3.8 10 11.3 12.4 8.16 7.27 10.4 10.3 6.11 3.7 7.87 2.9 6.2 8.01 11.3 9.3 12.6 8.16 8.91 10 8.48 5.87 11.1 8.88 8.33 10.3 7.62 9.56 10.3 10.3 9.95 7.84 8.26 9.55 3.48 7.82 10.2 8.15 1.92 9.91 2.49 6.72 7.63 11.5 1.73 11 8.28 1.51 12.1 8.16 9.37 4.18 5.52 7.5 6.34 1.73 4.91 10.4 8.96 5.88 6.47 0.95 7.13 8.17 7.59 6.33 7.52 11 9.79 4.69 8.48 10.1 8.3 12.5 9.63 10 6.94 5.14 12 7.21 3.9 12.3 11.5 8.49 7.86 5.88 10.8 6.84 10.3 7.26 4.82 9.22 13.6 10.2 0 5.32 9.67 9.38 8.52 10.1 10.4 12.5 9.07 7.43 7.47 7.42 2.99 8.92 10.4 7.26 11.3 10.3 8.72 8.64 8.72 2.02 8.27 8.66 10.7 2.81 12.8 12.8 5.81 8.42 8.42 7.44 10.9 4.89 9.24 10.5 10.2 8.34 6.49 10 8.61 5 6.71 9.2 10.6 7.26 8.87 8.02 3.85 8.08 3.6 7.69 8.19 9.86 0 1.73 9.69 11 7.29 9.4 10.7 9.48 6.64 11.6 2.23 11.5 5.38 6.77 8.55 6.53 7.49 9.7 9.56 8.72 4.07 0.55 3.11 7.34 11.4 10.2 8.72 8.02 5.12 9.95 7.9 9.49 7.32 8.89 0.55 7.41 1.98 10.9 8.86 8.58 6.78 8.91 8.5 6.58 9.88 10.8 7.78 9.98 7.58 11.1 9.57 8.66 9.68 9.99 6.32 9.25 6.63 10.8 9.59 7.19 15.2 11.5 6.45 11.1 8.07 1.51 10.5 5.96 0 8.06 9.11 1.26 7.67 9.79 10.4 10.3 2.23 5.89 9.73 10.9 10.6 6.7 6.94 7.47 7.2 12.2 10.2 0.95 12.2 11 11.1 8.08 10.9 10.5 11.7 12.2 6.63 8.44 8.9 0 10.5 10.3 10.8 10.3 9.4 9.28 5.46 12.7 0 12.6 7.45 5.66 1.51 6.09 5.23 8.26 7.52 0.79 7.14 8.22 9.51 5.68 7.89 10.1 11.3 1.73 10.1 3.29 7.29 7.73 0.95 3.5 9.51 1.51 0.55 1.26 7.02 8.47 3.34 1.26 6.18 3.13 8.28 0 1.26 6.8 3.94 8 5.76 9.19 7.17 7.54 0.55 9.14 7.38 5.53 10.3 8.78 10.5 9.04 8.9 0.55 9.96 2.99 5.38 8.17 0 7.38 6.81 5.67 6.76 0.95 7.62 3.36 0.55 3.42 9.87 0.55 8.37 7.8 8.16 7.19 8.54 9.02 6.98 5.41 10.9 8.92 9.46 9.14 9.78 5.87 4.22 0 11.1 2.71 6.92 11.8 6.35 8.06 6.32 9.85 9.17 7.73 4.25 7.62 10.2 9.44 8.63 6.52 8.93 10.4 8.3 3.86 0 4.59 5.21 6.32 8.5 10.5 7.78 1.92 3.48 7.58 6.44 9.04 10.6 5 0.55 3.54 9.88 11.1 12.8 4.59 7.92 7.58 9.64 10.1 6.76 9.56 6.11 3.54 11.2 0 1.73 4.45 6.77 4.98 8.97 8.99 5.3 8.28 4.96 3.36 2.37 9.53 9.88 0 8.67 9.54 1.51 6.17 6.83 2.37 0.95 7.47 9.79 10.1 8.86 9.39 8.53 6.32 9.46 8.06 10.2 7.26 10.4 10 1.26 6.6 9.73 8.7 7.89 8.5 8.59 6.73 9.06 3.07 9.55 5.12 1.73 1.26 7.61 3.9 9.2 4.25 5.59 4.32 4.06 0.55 9.19 0 3.22 9.01 11.1 7.47 8.23 8.6 0 3.7 8.81 6.17 9.15 9.03 0 8.45 7.6 3.94 0 10 10 11.3 8.89 8.46 11.1 7.37 2.61 7.22 4.02 3.7 1.26 8.95 9.17 1.26 10.7 5.23 7.4 8.21 13.9 10.4 11.6 0 6.99 5.23 10.1 10.3 4.87 7.91 12.3 1.92 6.58 11 6.59 8.28 9.63 7.45 9.89 0 6.12 0.55 8.46 0 8.25 8.58 6.41 3.82 7.71 9.97 5 0 3.7 8.45 5.02 7.53 7.65 7.2 9.92 6.44 9.55 1.92 5.96 7.93 8.29 13.2 7.17 0.55 4.29 6.92 7.64 1.51 9.52 8.97 7.73 7.5 8.75 5.56 6.24 9.65 9.52 12.1 10.6 9.26 7.34 1.73 4.14 4.35 8.7 2.9 3.82 8.12 7.25 7.95 10.9 3.22 7.56 11.8 8.91 0.95 7.92 12.4 13.1 10.3 9.69 4.7 7.5 13.9 1.51 9.6 9.76 3.48 7.04 9.13 9.67 10.3 7.09 11.6 2.71 0.55 5.72 4.02 3.7 7.04 1.51 5.6 5.37 9.58 7.73 5.21 6.61 9.93 8.65 3.94 12.1 9.78 9.95 1.51 8.85 8.4 6.41 7.84 7.82 8.69 9.9 3.7 7.17 2.08 9.51 1.26 7.22 5.52 7.76 7.11 5.21 7.93 8.34 6.7 3.07 7.68 9.49 2.9 5.23 7.8 4.14 7.5 8.9 9.13 1.51 9.26 1.05 8.49 0.55 8.12 7.2 5.92 2.37 1.26 12.6 5.6 1.73 1.26 9.19 9.93 7.31 3.7 6.23 7.71 7.72 9.9 8.14 6.23 8.8 7.64 6.62 9.54 11.5 3.54 4.02 8.04 9.98 8.81 3.07 1.51 5.91 9.96 9.23 3.36 1.26 0 4.48 0.55 6.01 9.77 7.82 9.63 4.73 9.06 7.26 2.49 9.55 9.81 1.26 8.35 7.72 7.7 4.67 12.1 6.66 6.62 5.48 8.57 1.73 8.29 9.11 0.95 5.77 5.28 6.87 10.1 3.6 9.03 8.92 0 6.43 4.45 4.1 2.61 9.04 6.02 6.2 8.59 5.89 9.97 1.26 1.26 8.53 1.92 1.51 3.22 3.54 8.31 7.73 9.27 7.3 8.78 3.29 11.1 11.2 6.18 10.5 8.61 6.65 5.75 6.12 7.77 5.14 4.57 6.07 9.36 13.5 8.14 2.37 10.8 7.13 3.07 0.95 5.88 8.7 11.8 8.5 8.11 8.73 1.92 4.1 0.55 0.95 5.98 0.55 12.6 0.55 6.91 0 3.75 5.97 7.35 11 5.96 1.26 1.26 11.1 8.57 4.22 7.26 5.98 1.26 9.25 10.8 1.51 4.35 0 8.97 17 5.83 7.85 2.9 16.3 9.54 1.26 0 0.55 10.1 4.39 11.5 3.6 8.16 8.25 16.6 1.92 9.9 13.9 0.55 5.76 1.26 9.28 10.5 9.4 7.93 1.73 8.89 2.08 6.79 7.25 13.5 1.51 6.06 5.62 0 1.73 5.98 3.42 6.09 9.58 9.57 5.25 8.26 1.26 2.71 11.6 8.8 13.6 7.36 8.58 13 1.51 4.06 14.1 7.93 14.2 9.55 5.53 14.5 6.32 12.9 8.35 7.03 8.12 1.51 7.17 8.99 7.38 9.56 10.2 8.36 8.57 4.65 4.54 5.9 1.51 7.91 6.22 5.02 4.75 0 7.69 4.06 11.1 9.63 5.12 4.45 3.54 4.35 13.4 8.45 5.18 8.94 6.31 4.02 9.64 8.13 0 6.73 4.82 7.17 7.36 10.9 3.48 8.55 10.5 0.95 2.71 15.2 0.55 8.57 4.7 5.7 4.35 7.54 0.95 2.08 0 0 6.9 0 6.71 7.61 3.36 11.9 12.5 5.77 4.59 7.89 11.8 0.55 8.59 9.18 9.72 13.3 8.68 6.41 0 10.6 10.2 0.55 7.78 4.06 0 7.58 9.76 7.55 9.78 6.87 7.66 0 0.65 5.11 11 8.02 7.39 1.73 5.92 1.51 8.32 8.27 7.82 11.4 7.87 5.92 10.3 5.06 10.1 3.42 7.65 3.85 11.8 6.58 1.92 7.26 5.43 6.92 9.03 6.41 8.21 10.9 7.86 10.9 8.16 1.51 3.07 7.97 3.8 11.5 4.57 6.89 7.35 9.83 9.29 10.1 6.12 7.34 7.19 8.79 10.2 0.95 8.07 10.6 9.85 0.55 5.52 9.41 5.32 6.86 10.4 4.7 10.4 9.57 6.69 10.8 10.9 11.2 8.57 2.53 5.52 8 11.8 9.16 8.07 1.26 8.32 1.51 9.76 5.42 0 8.84 0.55 8.29 7.11 0 11.1 2.61 1.26 8.63 0.55 0.55 12.5 1.26 7.4 8.34 8.38 4.35 5.08 6.6 8.79 3.15 9.41 7.11 10.1 9.6 6.39 9.46 6.87 8.28 3.29 5.12 3.85 8.64 1.26 3.6 11.4 7.85 0.55 11.2 0.55 4.18 6.22 3.29 8.6 13.2 7.33 0 4.74 7.12 7.08 6 6.13 9.98 8.64 7.16 5.93 11.4 9.1 0.55 10.9 9.76 8.18 0.95 8.22 8.08 0.55 7.11 2.49 7.55 6.98 10.8 10.7 6.03 2.37 1.26 10.8 8.45 8.49 11.8 11 5.6 5.72 0.95 9.19 8.77 9.17 5.2 9.11 6.92 7.94 4.67 7.59 14.2 2.23 0 7.78 10.8 3.65 0.55 4.48 6.41 2.08 0.55 7.74 4.16 5.28 3.22 8.59 6.33 6.88 4.29 8.31 8.65 5.4 1.92 9.65 7.83 9.7 6.73 0 10.2 8.71 7.62 11.2 9.7 2.91 5.99 7.53 5.81 6.66 2.23 12.2 2.23 9.67 0.55 10.6 4.85 7.1 9.67 1.51 2.23 12 9.04 4.7 1.73 0.95 2.9 0 8.56 0.55 7.99 5.1 0.95 8.85 10.5 8.53 12.6 8.72 11 12.7 7.1 2.37 10.7 11.8 8.15 9.27 8.93 10.3 1.26 3.6 7.08 9.11 3.54 7.38 6.84 4.94 8.1 10.1 8.53 6.58 0 7.48 8.14 6.41 8.38 10.1 6.6 5.53 8.67 1.26 3.29 7.74 7.73 2.08 3.75 11.2 6.94 9.37 8.71 10.4 3.7 2.08 8.79 2.08 11.1 10.7 14.3 2.81 7.6 4.14 9.43 4.82 8.23 8.76 11.3 8.33 8.39 13.9 2.9 7.98 5.84 11.3 2.37 6.41 10.8 5.18 1.26 7.44 6.31 10.1 0.55 6.87 6.45 9.02 9.3 10.7 8.1 3.42 6.93 3.91 0.95 5.93 9.29 0.55 9.29 0.55 3.6 11.3 8.36 6.58 7.53 0 1.92 8.74 11 5.67 0 9.79 0.55 2.37 0.55 6.16 0 12.2 4.32 5.7 9.07 1.92 12.3 5.93 7 3.65 1.51 0.55 11.2 3.85 10.9 7.54 5.27 0 5.51 0 2.99 5.81 1.51 0 8.97 6.77 1.51 4.25 0.55 6.23 0.55 7.57 0.55 8.81 8.63 6.05 8.82 2.08 6.96 12.1 4.89 12.2 4.54 8.68 9.01 7.87 10.8 6.85 9.24 3.7 2.71 9.19 3.36 8.54 10.7 12.2 3.85 15.9 8.98 3.8 6.98 2.08 1.51 0 1.51 5.67 8.35 4.02 9.38 9.6 6.82 0 5 9.34 4.91 7.33 6.88 2.99 5.3 0 9.38 4.98 8.13 4.18 5.02 4.85 2.71 3.48 7.08 5.17 7.46 10.2 3.42 4.59 1.73 6.98 7.77 4.78 1.26 4.42 7.17 2.61 8.36 6.03 2.61 5.04 4.06 3.54 2.23 10.1 6.3 2.08 9.15 3.03 7.4 3.36 7.82 8.63 3.9 3.07 8.17 3.94 0 11 0.95 0 5.63 10.6 10.1 1.92 1.26 9.85 1.62 4.45 9.43 3.65 12.1 10.1 0 8.05 4.57 3.07 0.95 8.41 2.81 5.3 7.71 5.4 9.27 7.55 8.93 0.55 6.59 6.65 3.7 3.36 13.6 11.9 6.08 8.57 3.94 5.32 13.4 9.3 9.66 0.55 4.57 14.4 0 3.9 13 0 0 2.23 0 2.99 1.26 7.87 2.37 0 6.95 9.08 7.53 6.76 10.6 0.58 4.18 5.14 8.27 7.9 5.75 6.05 2.08 10.2 8.71 9.19 1.73 3.29 2.61 8.79 8.08 12.3 3.15 8.26 6.64 5.7 5.21 6.62 7.03 16.1 7.98 13.6 6.47 0.95 2.81 3.8 11.3 7.2 5.51 5.97 0.95 0.95 8.47 6.65 11 9.75 3.48 3.54 8.35 0 0 2.61 10.9 3.07 5.25 10.2 6.07 12.2 0 4.22 0 9.31 6.31 3.75 6.71 0 6.16 7.55 7.68 12 7.17 0.95 6.41 0.55 3.65 0 9.3 4.14 8.73 8.68 7.86 9.68 1.73 10.9 8.9 10.1 9.9 0 1.73 8.45 6.9 2.37 10.3 7.85 3.65 3.7 11.8 1.26 7.64 8.17 11.4 5.32 1.92 5.79 0.95 7.65 9.66 10.2 7.78 8.99 8.06 0 9.26 3.54 3.07 1.26 5.38 8.29 7.4 0 2.23 6.86 7.29 2.08 7.39 11.8 7.96 7.31 8.46 10.7 6.94 7.31 10.9 8.09 3.8 9.77 10.2 9.11 5.21 10.2 6.29 0 0 3.9 11.3 6.54 6.87 5.32 10.4 0 12.1 8.99 10.9 7.53 7.6 4.67 6.44 8.2 0.55 7.91 5.49 2.24 7.69 4.67 1.92 6.2 7.46 8.43 0 5.86 4.06 0 9.55 11.9 0.55 2.9 6.53 0 7.53 4.87 6.33 8.98 6.16 2.08 3.36 0.55 7.4 2.81 3.7 10.3 0.55 0.95 11.4 2.81 1.92 8.95 1.73 0 11.3 7.74 9.36 9.11 8.84 9.3 8.36 5.05 0 9.73 5.89 10.4 9.21 8.16 1.92 1.26 11 3.15 2.61 0.76 2.81 11.3 2.61 9.97 0.55 0 2.23 4.18 2.81 5.83 4.57 3.48 1.73 9.71 3.48 6.34 2.49 8.85 3.48 10.3 2.37 3.29 1.92 3.6 5.32 8.31 4.54 5.98 2.23 7.2 8.15 0.55 7.67 1.73 1.92 0 3.22 0.95 1.73 3.6 1.83 2.37 10.3 8.11 8.26 4.85 8.52 0.95 0 6.49 5.4 9.7 10.3 1.73 0 11.3 11.4 0.55 9.37 2.61 3.42 0 0 11.5 8.37 4.91 2.71 9.76 11.9 0 10.7 11.7 6.16 12.1 6 10.6 5.62 7.18 5.4 8.91 9.48 10.7 11.1 4.7 10.4 5.52 7.47 8.44 1.26 2.08 11.5 9.91 3.22 9.37 9.65 1.51 11.1 0.55 5.1 10.4 0 1.73 9.67 4.32 4.48 5.62 2.61 6.16 12.5 11.1 2.37 10.9 7.4 0.55 11.5 8.47 10.4 6.12 2.71 3.36 9.26 1.92 3.07 3.36 3.15 7.5 9.49 7.42 9.23 5.59 2.23 4.39 5.48 4.37 5 5.98 8.64 5.74 1.26 12.2 5.8 7.1 6.87 3.6 2.49 6.01 3.6 3.85 1.73 7.68 6.75 3.6 4.8 0.95 9.02 1.26 4.89 2.49 9.65 9.23 12.7 12.4 8.8 11.1 9.67 8.52 0 9.3 4.78 3.75 4.54 7.15 9.32 8.67 12.7 11.7 1.26 9.19 2.61 12.8 4.78 10.3 3.9 1.92 0 9.57 0.95 10.6 2.79 2.37 3.65 0.55 9.66 0.55 6.57 12.4 12.5 6.2 3.71 0.95 3.36 8.84 5.88 11.5 8.14 13.2 13.2 1.26 7.56 12 4.51 2.49 9.44 1.26 10.6 6.89 9.07 12.2 12.2 0.55 8.89 9.03 9.5 0.55 7.82 6.41 11.8 10.2 4.35 8.86 7.65 5.55 6.64 6.44 9.66 8.63 3.15 9.6 10.1 9.46 1.51 2.99 0 5.58 6.3 4.14 9.68 0 6 6.15 7.16 4.06 6.26 3.15 7.7 8.69 2.9 3.42 6.92 6.02 0.95 2.23 10.8 8.77 2.9 9.87 4.87 0 2.08 9.25 8.95 7.65 2.08 4.73 3.36 4.1 0 0.55 3.42 7.96 1.51 1.73 8.1 7.91 2.9 10.7 6.16 0.55 9.43 1.51 6.88 0.55 4.45 1.51 11.2 4.06 7.17 8.15 1.73 10.4 2.99 10.2 7.71 1.92 11 2.49 3.85 12.4 4.32 9.81 2.81 10.3 8.26 9.14 9.67 13.3 8.21 7.5 7.34 9.16 12.3 11.2 13.3 8.26 7.05 0.95 9.16 11.2 9.78 10.5 10.5 1.26 9.9 6.43 12.8 6.19 2.81 4.42 7.6 8.56 7.22 5.32 7.03 8.16 7.38 8.7 7.14 1.26 0 4.48 3.6 5.38 9.86 2.08 8.09 9.4 13.9 10.1 2.71 10.7 11.4 11.6 11.5 6.76 7.48 8.96 10.5 9.14 3.29 6.86 6.24 9.8 6.65 0.95 8.33 8.97 7.73 9.88 10.7 9.42 0 10.7 2.49 1.73 9.5 13 6.36 3.65 11.9 15.4 10.6 11.7 2.49 10.8 17.2 8.75 3.29 7.53 11.9 5.71 9.3 6.79 14 6.76 10.7 8.2 11.4 11.3 12.6 3.07 5.95 5 9.56 11 8.72 11.4 10.3 9.76 8.09 7.2 8.44 8.87 10.6 5.71 7.35 8.22 6.55 8.6 11.8 0 14.5 10.1 11.2 12.6 10.6 4.94 10.2 7.88 7.8 8.24 8.68 10 12 6 7.45 11.1 15.9 3.07 2.9 10.4 8.78 7.58 8.26 6.86 11.2 13 13.1 15.6 9.35 10.3 9.07 7.97 6.41 12.3 11.5 4.75 1.73 7.39 12.7 8.41 9.75 10.1 11.6 14.1 7.54 7.97 7.97 11.2 9.23 3.22 5.1 8 6.73 9.23 7.19 5.41 8.07 3.75 6.66 9.98 7.11 1.51 9.28 10.6 7.99 12.6 1.26 5.65 11.8 10.2 0.55 10.5 7.58 7.68 0.95 12 4.1 8.53 9.7 2.81 1.92 4.22 2.46 9.76 3.54 3.22 6.2 7.77 9.18 14.2 5.52 8.41 8.04 4.29 7.32 9.09 11.7 6.15 12.8 9.46 11.7 12.2 14.8 14.9 11.2 13.9 0 8.11 0 14.2 6.43 4.18 10.7 0.55 1.73 3.65 7.96 1.26 11 4.78 7.59 3.6 7.98 6.09 6.03 3.42 1.51 9.11 4.65 7.66 7.61 10.5 8.59 0.95 7.92 11.9 8.45 10.7 0.55 1.73 9.91 7.37 2.81 10.4 11.2 1.73 2.23 3.8 2.23 10.1 9.3 5.44 9.61 7.76 0 6.65 12.1 7.64 2.81 10.8 2.81 1.51 1.26 10.9 8.19 3.98 6.55 9.04 5.6 7.1 5.43 9.15 6.06 8.01 6.57 6.27 7.26 6.7 7.5 9.08 11.5 4.22 10.3 6.44 7.04 9.45 11.1 6.83 7.66 4.94 9.31 5.99 9.87 4.1 12.7 4.67 7.89 8.66 7.34 8.92 5.87 8.54 10.3 3.29 12.1 2.49 10.5 1.51 9.61 8.8 5.3 7 8.36 11.4 3.22 1.92 9.42 9.62 8.3 0.55 12.6 7.61 1.51 1.73 11.1 1.26 9.09 8.11 8.16 6.8 12.9 7.87 4.25 4.8 6.16 7.24 3.22 11.2 7.16 0 16.7 2.81 3.22 4.42 0 0 9.82 3.98 4.54 8.55 12.2 9.59 9.28 9.65 8.57 5.74 15.1 9.13 1.73 0.95 0.55 9.04 6.36 5.8 7.26 9.31 8.4 8.5 11.7 5.27 12.2 10 9.41 5.84 5.45 9.77 9.73 9.66 1.26 9.25 11.3 12 10.4 5.1 11 8.51 4.22 6.1 0 10.9 11.7 8.22 9.58 11.9 8.4 9.01 6.98 6.66 8.38 8.53 8.7 9.05 9.9 3.22 5.51 9.33 11.6 7.97 10.8 9.83 0.55 10.3 11.6 0.55 2.49 11.4 9.9 8.13 11.9 12.1 1.51 8.08 9.69 8.1 9.59 8.57 9.58 9.77 11.4 11.5 6.71 11 10.9 5.79 5.9 9.14 3.7 10 0 12 10.4 10.6 9.73 8.17 12.1 13.8 6.7 1.92 9.63 7.76 7.49 0.55 10.4 8.31 7.83 7.33 8.14 12.7 4.89 12.1 11.4 12.1 0.55 6.77 12.7 1.51 3.7 9.5 8.34 8.35 8.77 1.51 10.1 9.37 11.1 8.09 10.7 6.72 1.26 6.19 3.85 6.37 9.46 8.7 7.02 2.99 0 12.1 5.48 13.5 8.79 8.25 8.99 8.84 6.6 11.7 10.3 10 8.49 10.7 10.6 5.74 7.02 9.64 9.59 9.7 10.8 1.73 10.6 8.41 5.35 3.8 12.2 8.41 13.6 4.39 3.42 7.99 13.6 4.35 9.11 4.29 10.8 12.3 2.08 7.38 9.24 7.06 10.5 5.63 6.6 6.89 7.33 9.6 8.03 10.4 4.94 8.43 8.12 1.26 10.1 11.1 8.63 10.9 11.4 2.9 10 2.37 7.52 7.17 5.9 7.85 3.85 3.75 8.16 2.08 3.07 10.2 0 7.78 6.51 9.76 1.51 1.92 4.32 2.81 8.45 4.73 3.48 5.14 9.07 6.38 0.55 1.92 6.38 7.36 4.54 6.52 4.96 7.76 4.5 11.9 5.37 7.07 5.79 3.9 9.59 10.3 1.26 6.14 7.17 8.79 3.8 11.4 8.33 6.19 8.3 9.17 7.91 8.44 5.83 10.6 4.06 8.82 7.51 8.09 5.38 6.54 8.84 10.6 2.61 3.85 0.95 1.26 0.55 7.6 0.55 4.4 7.37 2.23 11.2 1.26 8.4 9.43 5.33 7.78 4.62 6.93 6.07 10.4 2.49 5.08 8.98 8.55 0 9.12 8.31 6.94 8.75 0.95 8.9 0.95 7.48 4.25 6.26 1.73 9.2 7.32 11.2 8.69 9.37 3.22 10 9.4 7.89 7.1 3.48 4.54 7.75 11.5 8.27 8.47 5.33 1.51 7.53 7.4 1.87 4.65 11.4 9.57 4.7 0 2.23 11.2 0.95 2.49 10.6 0.55 1.51 2.71 1.92 3.48 2.99 7.32 3.15 3.6 11 8.92 9.12 4.8 9.71 9.15 10.5 7.51 10.3 7.96 7.15 8.22 4.88 5.14 0.95 3.54 0.95 9.84 0.95 2.49 1.73 15.7 9.41 11.2 0 9.04 4.57 7.22 10.5 3.7 7.88 10.9 8.8 10.7 9.91 8.98 6.02 12.6 9.21 8.1 6.41 11.1 6.38 7.34 7.34 9.96 4.91 12.4 5.7 12.3 7.95 12.3 8.65 11.1 10.7 11.9 10.2 7.47 6.02 9.07 5.02 8.47 10.4 9.72 11.5 8.09 0.98 4.65 8.94 9.15 8.85 10.2 6.88 10.1 6.85 9.28 1.73 10.4 8.09 9.33 9.3 10.4 9.84 8.78 10.6 1.26 10.3 6.7 10.3 11.4 0.95 12.4 7.27 4.39 5.38 8.15 11 9.71 9.63 12.5 9.84 4.33 9.58 13.6 9.96 8.76 10 7.59 7.99 11 10.1 4.48 9.13 10.6 0 9.27 7.93 6.8 0 7.47 5.86 8.64 9.63 11.1 10.4 10.6 10.7 9.61 9.13 9.92 11.4 7.38 5.76 10.5 0.55 10.6 11.9 10.4 8.1 7.93 7.45 10.6 6.93 10 9.68 11.1 11 7.77 9.98 8.28 11.6 11 10.8 6.53 7.78 13 8.91 9.56 0 8.99 8.14 7.95 6.41 2.23 11.3 8.29 1.26 10.2 6.04 3.85 10.3 5.16 8.98 3.48 11 11.4 2.49 4.18 0 11.4 11.8 10.4 7.49 6.83 6.01 2.81 6.64 11.2 10.2 10.4 11.1 11.3 3.6 9.29 0 10.6 9.47 11.3 10.5 6.5 9.56 12.9 1.51 12.4 12.7 10 7.65 2.37 3.85 11.1 9.24 9.24 8.75 9.9 9.45 8.3 7.65 9.3 6.78 10.7 11.5 10.4 10.8 6.21 7.82 9.36 10.3 11.9 11.3 9.31 11.6 10.9 10.7 5.93 8.21 5.87 10.6 11.8 9.73 10.7 11.1 11.2 3.6 10.7 10.4 11.3 4.57 9.62 10.7 10.6 11.6 8.83 10.4 9.42 9.84 10.4 12.5 8.22 10.1 9.73 10.4 6.45 10.5 7.95 9.5 10.2 11.5 8.29 8.71 6.45 9.56 10.3 9.39 4.94 10.6 2.71 10.3 9.27 5.66 10.8 10.3 9.57 8.18 8.15 7.27 11.1 6.22 7.58 6.72 9.48 10.5 10.2 4.06 10.5 7.98 9.54 10.3 8.38 9.72 10.6 8.63 9.22 7.07 9.81 12.6 10.9 11.8 8.41 9.39 9.81 1.51 4.73 5.46 2.08 10.7 9.6 10.9 9.73 8.86 9.42 9.98 16 10.6 9.41 9.28 9.64 10.9 11 9.8 11.7 10.1 10.6 14.6 11.5 8.4 8.9 11 9.97 7.93 11.1 8.6 7.18 9.1 9.45 10.5 10.1 10.7 10.6 11.5 10.2 12.1 12.4 11.2 12.5 9.05 13.4 7.15 9.88 12.4 11 11.5 9.84 11.8 7.9 10.1 12.3 2.37 11.7 8.5 2.23 9.48 8.99 10.3 9.74 10.5 11.8 12.8 9.97 0.55 12 9.99 4.29 9.12 8.17 10.3 12.4 10.6 7.37 7.48 7.59 9.8 9.67 7.98 9.88 9.88 9.1 6.04 4.54 9.25 7.36 10.7 9.83 1.51 9.48 11.4 5.79 9.78 8.64 10.4 9.44 4.18 6.84 9.6 9.12 8.58 10.6 9.64 9.68 7.16 6.95 8.98 5.65 11.3 11.7 9.8 9.67 10.2 4.91 8.7 10.2 10.5 10 7.9 9.63 11.7 10.5 4.18 0.55 9.64 2.37 5.1 9.45 8.35 8.53 5.1 9.87 10.3 10.7 10.2 12.4 3.65 11 9.29 3.42 11.2 10.2 1.92 9.68 10.6 7.18 10.2 10.2 9.36 8.63 11.7 7.37 8.47 0.95 10.5 9.03 9.66 6.89 6.72 10.4 11 12.2 9.97 9.54 7.01 10.6 9.14 9.59 8.97 7.73 9.58 10.3 2.81 9.2 13.1 9.02 10.2 10.9 5.48 14.7 10.6 12 12 10.6 8.23 9.69 9.28 11 3.22 9.49 8.78 8.08 7.94 12.6 6.29 12.8 9.65 11.3 10.2 7.85 6.51 9.55 7.85 10.1 9.44 11.4 8.61 9.73 10.3 11.4 11.4 10.1 11.7 10.8 8.19 11.2 11.2 9.76 10.1 9.02 8.47 11.2 11.2 7.92 9.53 9.12 11.3 11.6 7.83 3.36 8.43 8.17 8.51 10.6 4.1 0.95 4.8 6.72 0 10.5 11 6.41 11.7 9.48 8.18 11.4 9.95 1.26 9.6 7.05 8.96 11.9 9.36 8.17 12.4 12.2 12.6 10.4 8.96 6.98 7.34 4.06 7.64 5.32 11.7 6.14 9.16 4.85 11.7 9.98 12.1 8.79 10.6 5.08 11.2 10.9 9.61 0.95 10.7 11.1 7.14 9.82 4.87 7.42 5.74 1.26 3.7 13.4 6.64 8.11 11.3 5.77 10.8 8.77 8.82 9.26 10.8 9.49 11.2 9.67 8.59 9.21 10.3 11.2 10.6 9.37 3.15 2.61 13 8.76 10.5 13.2 9.69 10.3 8.6 9.28 15.3 10.2 7.21 3.15 7.66 10.7 8.19 0.55 12.8 9.33 1.92 11.2 0.55 9.03 0.95 4.65 7.29 10.2 12.3 10.6 4.73 5.08 4.85 9.84 9.34 8.16 10.5 8.51 10.1 10.8 1.92 0.56 7.65 9.42 7.64 10.2 0.95 7.35 6.47 5.51 11.6 9.44 9.24 1.92 11.4 12 8.33 9.08 11.3 9.96 7.15 10.3 10.4 7.56 8.42 7.82 9.72 8 7.87 7.23 13.5 5 10.1 10.8 9.01 10.4 9.67 5.84 10.7 9.42 10.3 9.67 0 0.55 1.26 2.9 11.3 7.56 11 10.4 0.95 9.58 5.55 8.25 6.02 9.98 11.4 11.2 10.1 8.15 9.37 15.4 13.2 8.89 8.33 8.6 8.38 10.4 10.3 10.8 8.26 12.1 9.64 7.01 7.68 5.06 8.27 9.29 10.3 10.2 2.99 8.34 9.86 11.3 8.99 4.22 8.96 9.1 0.55 9.63 9.79 0 12.2 9.46 8.13 11.3 10.6 11.6 11 0.55 6 6.95 7.69 8.68 9.58 9.67 10.6 10.1 5.86 6.74 10.2 11.2 5.28 9.34 10.7 9.5 9.87 6.07 2.71 3.03 7.54 2.49 7.14 1.73 9.81 0.95 1.26 2.08 5.27 8.41 5.79 5.57 7.09 6.46 3.36 2.08 5.8 10.9 9.05 4.02 7.03 6.82 5.08 13.7 8.73 11.1 0.55 13.9 8.17 10.5 12.3 9.2 9.96 9.34 7.7 0.95 5.56 9.26 2.08 4.98 8.9 7.02 2.23 8.51 0.55 1.73 6.96 11.1 10.5 0.55 2.59 5.41 9.23 9.29 8.95 7.3 10.6 6.33 8.75 8.78 6.01 2.61 13.4 7.94 2.08 10 6.2 5.63 9.7 8.3 9.08 0 10.7 11.3 8.15 6.93 3.07 4.73 5.06 8.12 0.95 8.72 11.9 0.95 0.95 8.6 0.95 1.92 7.89 9.18 8.01 5.5 2.9 4.48 2.61 8.06 6.18 8.76 9.58 9.32 7.31 4.91 13 0.95 0.95 11.4 2.08 7.97 5.95 9.87 6.66 0 3.77 5.08 1.92 0 2.81 8.47 8.23 0 5.53 3.65 8.41 0 8.85 4.35 7.14 4.22 0.55 10.6 0 7.27 5.3 8.03 10.1 6.95 6.38 4.29 5.6 6.67 7.83 9.22 4.85 0 2.08 3.54 6.45 6.86 1.92 7.35 1.51 3.96 1.92 8.59 9.32 5.2 7.59 4.22 7.63 0 7.48 6.55 1.26 4.35 2.71 0.95 0.95 0 5.14 0.95 9.29 4.06 0 8.96 3.36 0 6.26 2.81 7.34 9.59 6.44 8.19 3.22 3.65 3.29 0.55 7.84 4.94 0.55 1.26 1.73 10 9.52 1.26 5.28 6.07 5.04 9.18 9.95 8.9 1.92 8.04 12 9.32 6.88 10.1 6.75 1.73 6.58 3.36 7.34 10.7 10.9 0.55 9.88 5.9 9.41 7.71 10.8 12.4 7.15 4.29 6.6 1.51 10.7 7.83 7.76 6.09 6.74 1.26 10.1 10.8 9.36 5.4 9.43 10.4 10.4 9.11 9.81 0.55 12.1 11.2 6.53 10.4 11 6.24 0 12.2 8.31 8.58 10.8 1.26 10.7 7.67 7.99 7.02 9.3 9.83 10.8 7.47 9.48 7.42 8.48 2.99 8.58 9.41 11.4 3.42 10.4 5.97 5.72 3.65 7.03 11 11.2 9.01 12.8 8.56 8.95 0.55 10.9 10.1 8.2 7.34 10.5 7.89 7.35 10.7 4.57 2.23 6.78 6.76 9.54 10.4 8.16 1.26 12 6.43 7.14 10.2 10 9.09 8.24 7.01 10.1 10.7 8.05 11.6 8.45 9.2 9.29 9.33 10.6 3.54 9.97 10.6 12.7 0 7 10.6 9.45 2.81 1.51 6.93 10.1 10 6.18 1.92 9.96 0 9.58 0 0 2.08 6.8 11.2 7.98 12.2 8.15 8.36 9.65 9.58 11.8 10.9 10.5 10.5 8.98 4.67 12.1 9.8 9.02 9.93 6.08 8.33 4.31 8.86 9.04 9.36 3.54 11.1 11.2 9.96 17.6 7.59 8.35 6.25 6.77 11.4 9.89 10.2 7.89 10.3 5.28 9.05 5.51 11.2 7.82 8.84 5.62 11.7 9.74 10.4 7.18 7.66 10.6 11.2 9.5 11.4 8.83 9.36 9.43 11 7.47 8.76 3.7 9.41 10.3 8.14 10 13.3 9.15 8.51 5.47 9.29 6.17 4.7 11.9 9.77 4.25 0 6.68 9.23 8.91 11.2 2.23 7.27 8.93 8.26 9.49 3.9 9.92 8.73 6.96 8.12 0.55 9.04 7.55 9.62 9.92 10.5 11.7 10.6 10.3 7.68 7.29 9.77 11.3 9.38 11 0.95 2.08 8.08 9.79 9.1 9.93 11 8.81 8.44 0.95 10.7 7.24 12.3 10.1 2.99 9.78 10.5 10 9.78 10.1 8.82 9.41 9.39 8.75 10.4 11.4 13.5 11.1 2.99 6.55 8.57 8.07 9.65 5.51 9.01 4.02 7.82 7.74 5.4 11 11.6 11.7 7.73 6.96 8.48 3.07 9.73 12 10 7.83 11.5 8.18 7.76 11.1 8.84 10.5 7.28 12.1 0.55 8.94 0.95 8.14 10.6 0 8.08 2.99 9.6 8.94 7.51 3.15 7.95 1.26 5.6 3.54 4.65 9.4 10.9 8.24 5.6 6.92 5.76 6.48 0.55 5.93 5.98 4.48 9.91 8.92 8.37 1.92 11.1 8.9 2.37 7.54 7.95 8.44 5.02 9.68 7.83 7.37 9.36 7.34 8.7 11.2 9.83 4.22 5.33 10 9.94 5.51 10.5 0 9.24 7.18 8.33 6.05 9.27 9.87 13.9 0.83 11.6 10.8 10.5 10.2 7.89 0.95 10.1 5.53 5.28 9.37 9.69 6.26 7.66 10.9 9.3 3.7 12.3 9.24 9.05 8.41 9.56 8.36 0.95 7.75 12.4 3.8 8.08 9.58 8.65 9.64 8.81 9.15 9.62 9.9 8.91 11.3 2.37 2.81 0 10.8 2.08 2.85 3.15 10.4 4.22 7.68 11 10.7 8.07 0 9.82 0.55 7.69 1.73 11.2 12.9 7.68 1.51 7.09 2.91 6.16 8.48 8.82 11.4 1.51 6.47 7.27 1.51 7.55 6.26 10.9 5.1 7.42 4.78 9.39 8.4 2.71 0.95 9.49 5.43 1.51 3.9 6.43 0 14 5.04 8.3 7.86 7.48 0.55 5.4 10.4 8.78 9.97 3.54 3.6 13.7 9.98 1.73 8.62 10 15.4 9.1 11.2 9.25 5.25 9.39 10.2 0.95 6.47 8.79 1.26 7.83 5.58 6.68 10.7 9.09 5.04 11.2 8.47 7.26 11.4 4.51 7.38 0.55 5.3 8.42 7.1 9.12 10.5 12.4 16 2.49 10.5 8.92 9.62 12.1 11.7 9.33 9.53 11.3 9.36 15.3 6 7.65 7.05 10.4 3.9 10.4 11.3 7.56 3.85 2.71 10.4 9.35 0 1.51 9.47 6.14 10 11 8.33 9.27 7.42 11.3 1.73 5.7 6.16 11.1 3.07 5.52 12 1.51 8.45 3.15 4.96 8.47 10.9 4.22 3.07 8.69 7.94 4.51 0.58 6.36 6.92 3.54 5.48 8.33 8.82 0.95 9.33 0.55 9.42 7.92 4.8 11.6 8.35 11.5 7.01 5.33 4.18 10.7 6.2 0 5.06 1.73 2.99 1.73 9.83 10.2 5.67 8.42 12.5 0.95 2.08 7.92 9.72 8.34 8.8 3.75 6.13 7.16 11.1 10.4 8.54 9.83 8.06 8.82 10 11.4 10.3 8.48 7.59 0.95 9.46 9.06 1.51 0 8.75 2.81 5.87 9.24 8.35 8.85 4.35 4.02 8.83 7.17 4.96 8.1 8.86 9.86 5.4 7.78 4.18 9 9.11 6.6 9.08 11.3 3.29 9.85 9.86 10.5 9.97 5.86 11.4 10 8.7 11.7 12.4 10.4 10.1 10.6 8.25 0 3.22 7.29 9.4 9.3 7.58 6.84 9.63 9.18 9.51 5.27 9.86 6.46 11.4 8.86 9.22 2.37 10.5 8.14 8.79 10.5 3.65 10.6 9.14 2.71 4.1 7.55 11.5 10.1 4.31 12.2 0.55 13.4 7.97 11.6 6.75 9.03 10.7 11.7 10.7 13.1 12.3 2.61 6.57 9.84 13.6 0.95 2.81 13.4 12.6 2.26 0.95 6.05 11 4.02 0 7.83 7.84 4.8 9.96 4.02 5.46 12 0.95 2.9 9.04 10.9 12.1 11.4 10.8 10.2 12.1 9.19 3.42 17.3 2.89 0.95 13 2.08 11 13.8 1.26 7.33 1.51 7.51 8.05 7.37 8.16 0.55 2.61 2.23 3.7 7.18 0.95 7.96 4.62 4.94 6.55 1.73 6.22 10.2 0.55 3.22 7.29 1.51 2.08 2.61 2.71 10.1 9.87 5.04 10.9 12.2 3.42 2.99 5.7 7.5 2.49 8.4 3.75 6.03 7.69 8.12 3.6 6.27 7.95 0 7.09 6.78 6.56 6.49 9.52 3.15 8.49 9.7 11.1 0 8.92 4.02 2.37 3.42 3.85 3.94 7.05 4.73 10.4 1.92 9.29 6.08 8.92 7.54 9.07 1.75 0.95 2.44 1.51 6.23 3.98 3.22 2.71 8.37 0 4.1 1.26 3.7 10 12 8.07 4.73 0.73 3.42 2.49 4.6 4.7 8.71 0 4.32 2.49 10.8 5.23 5.46 0 1.26 7.97 7.26 8.69 4.91 5.27 5.18 2.9 2.49 7.31 5.51 0 2.49 4.7 8.33 9.64 5.28 0.55 6.64 6.83 0 5.3 6.62 2.9 5.98 4.54 7.46 2.61 9.62 2.99 2.61 0 1.92 5.93 8.09 0 3.42 1.92 8.93 9.42 2.08 8.41 14.1 5.28 6.38 3.36 6.64 3.8 2.08 5.33 2.81 11 3.6 1.26 9.84 1.51 8.86 1.26 8.2 0.55 5.16 4.67 8.2 7.55 7.41 3.91 8.37 4.65 11.1 5.6 7.25 3.94 11.5 3.15 5.32 6.8 3.9 3.6 0.95 8.17 4.54 1.51 4.22 0 1.51 4.67 6.08 2.37 9.53 3.7 6.11 0 7.39 0 7.05 0 2.49 1.92 8.9 2.71 8.65 4.22 4.11 2.37 1.92 2.69 8.63 1.92 2.37 0 3.22 0 1.92 0.55 5.12 5.77 2.61 6.41 0 4.18 7.1 4.32 1.51 7.32 3.9 10.7 9.01 0 0 3.8 5.12 1.51 6.34 10.1 7.16 9.68 8.73 0 9.19 1.26 3.07 6.35 4.7 7.85 3.29 9.61 8.97 0 5.93 8.42 8.87 2.9 5.66 6.44 0 8.54 1.92 6.15 9.5 8.63 5.14 9.29 5.52 6.68 0.55 2.49 7.64 0 7.03 0.95 2.49 4.09 7.5 7.64 10.7 1.26 6.86 0 10.6 0.55 0.55 4.22 4.06 7.4 5.79 9.41 5.93 3.36 9.43 0.95 6.36 9.18 6.55 1.73 10.4 1.51 3.18 5.49 9.92 3.48 5.33 5.4 0.55 2.71 8.51 0 3.42 10.9 4.8 5.09 4.22 6.89 0 3.36 5.08 2.71 0.95 8.35 7.1 1.26 13.4 0.95 8.58 6.27 0 1.73 7.87 5.35 7.11 7.89 8.91 3.42 5.45 6.27 2.08 2.09 0 7.91 6.77 7.79 3.48 7.6 9.04 8.75 8.51 4.65 2.08 4.13 6.46 4.45 5.38 5.52 6.96 7.79 8.1 0.55 4.7 9.83 12.1 10.4 9.41 1.92 11.4 7.24 9.07 10.3 9.4 7.09 11.4 7.99 10.8 0 5.1 8.73 8.97 8.87 9.27 8.34 9.25 10.3 14.2 8.37 9.49 11.1 0 7.69 1.92 10.5 0 7.06 5.6 10.2 10.2 10.3 9.97 9.91 8.79 6.71 5.71 7.98 9.82 6.89 10.3 12.3 9.13 0.55 6.8 8.77 2.81 11.2 9.96 2.08 11.8 10.1 0 4.32 9.95 1.26 10.6 1.73 10.4 2.08 7.76 10.1 6.78 10.3 6.98 9.87 9.73 12.1 6.12 8.21 10.6 9.33 7.32 9.55 11.1 8.52 8.67 10.6 7.12 9.52 9.92 7.69 10.5 8.2 11.1 8.04 5.27 6.1 8.51 10.2 11.1 9.74 8.29 9.46 6.57 9.08 10.6 9.98 9.2 7.29 9.07 0.55 8.18 10.3 9.28 0 9.7 10 8.3 9.61 0 2.08 9.75 0.95 11.2 2.81 8.72 11.5 9.75 1.51 0.55 8.41 13.5 7.28 6.87 13.2 0.55 11 12.9 10.7 11 12.4 12.1 10 10.7 5.66 7.23 6.56 6.11 7.83 4.67 15.1 7.31 6.17 9.03 10.2 8.94 8.98 9.56 8.24 10.6 11 8.75 9.88 6.46 9.26 8.83 11 11.3 9.14 8.63 2.08 11.9 10.8 8.7 9.97 9.89 0 11.7 7.8 1.92 10.5 9.42 3.36 7.39 9.16 9.96 10.7 4.18 10.1 0 1.73 5.04 6.35 9.53 1.26 8.97 8.92 7.4 1.51 10.6 10.7 9.5 6.81 0 7.45 11 12.5 9.01 0 9.12 10.6 8.37 8.29 11.1 10.6 11.1 6.33 10.6 0 9.72 10.2 9.64 7.4 5.14 4.8 10.2 0 8.92 5.97 8.44 9 9.22 9.14 8.4 10.6 10.8 7.96 9.32 12.5 8.46 9.59 13.4 9.15 8.16 4.02 7.55 8.38 0 9.07 12.1 5.8 0 1.73 8.56 8.71 7.77 7.44 9.68 2.61 9.62 9.14 11.7 10.4 2.08 11.9 2.23 8.82 2.5 8 10.7 9.19 9.68 9.09 11.7 7.4 11.3 12.1 8.14 9.23 11.3 8.89 9.4 7.73 8 7.43 7.73 3.15 9.26 8.04 10.6 7.77 0.58 10.3 2.08 10.8 12.6 8.45 5.27 8.84 8.99 9.5 5.1 4.25 12.4 7.41 9.62 1.73 0.95 0.95 16.6 3.15 2.09 10.8 12.3 7.74 15.7 10.2 14 10.8 8.39 10.5 12.7 10.9 9.33 3.15 10.9 5.67 7.49 10.9 5.46 15.3 9.15 9.07 0 0.95 0 7.08 9.36 0.95 11.7 8.68 9.53 11.6 11.7 12.1 11 4.87 13.1 14.1 11.1 7.97 9.37 10.4 11.1 11.3 7.61 13.2 0.95 4.82 1.73 10.1 8.6 3.22 3.15 4.59 9.67 3.98 9.24 8.59 8.34 10.6 6.56 10.3 11.7 7.83 11.9 9.68 7.82 13 5.23 10.8 6.2 14 9.02 11 12.3 10 12.1 10.7 12.6 12.2 11.2 12.2 6.97 7.38 15.4 16.8 15.9 10 10.1 11.8 8.53 6.56 13.1 12.1 2.37 10.7 10.3 10.7 9.05 14.5 13.3 11.1 10.3 7.33 4.48 14.9 12 8.56 12.1 4.62 5.89 2.37 9.65 9.06 6.57 8.89 12 11.4 10.2 10.9 12.7 9.66 11.4 9.75 12.3 5.28 8.75 9.21 11.1 10.6 9.86 0.55 6.73 9.26 9.33 8.11 3.98 4.22 0 9.04 0 11.4 0.55 8.33 12 8.48 13.3 11.7 13.6 11.9 12.8 12.3 11 11.1 13.6 0.95 12.4 13.3 0.95 5.95 0.95 6.38 6.39 5.46 1.26 2.49 1.73 1.26 1.92 6.07 4.02 1.26 0.55 6.91 3.48 3.6 2.49 0.55 2.08 6.53 0.55 5.04 6.58 5.49 4.78 9.71 5.51 9.62 3.22 9.41 0.95 6.17 0.95 0.95 9.81 9.33 0 1.51 1.73 10.7 0.55 4.42 8.76 11 8.05 9.31 11.9 1.92 4.51 10.3 11.4 11.8 9.93 11.4 9.92 4.02 5.25 8.26 1.26 10.6 11.2 7.72 3.27 8.68 11.1 12.6 11.9 10.3 4.42 9.67 12.4 14.2 10.6 6.68 5.35 15.7 12.3 13.7 4.72 9.43 14.7 12.8 14.7 12.5 3.15 9.67 12.3 6.74 12.7 4.94 4.18 13.3 13 9.75 2.71 2.81 1.26 2.71 2.71 0 9.23 8.01 13.9 7.23 11.8 10.6 2.23 6.53 3.48 0 4.15 4.18 12.6 0.55 1.51 3.29 6.81 7.82 11.1 8.22 2.61 2.08 3.94 1.03 5.23 8.85 6.34 2.61 3.22 7.58 5.74 2.37 0 7.7 4.8 5.8 8.09 9.81 1.51 8.28 5.58 3.15 7.26 9.36 7.86 8.83 10.6 8.14 5.45 5.75 3.65 6.44 8.22 1.92 0.55 8.13 0 1.92 8.7 5.63 1.92 2.9 3.42 7.06 3.15 5.35 3.41 1.26 5.89 8.35 6.87 0.55 10.6 9.46 9.07 0.55 9.23 4.54 1.92 3.15 0.95 1.51 10.4 2.08 0 1.73 1.51 9.19 6.2 10.5 0 0 5.35 4.89 1.51 3.8 1.26 1.92 2.49 1.73 7.92 1.51 8.19 5.96 2.08 1.52 0 8.13 8.05 5.48 5.02 0.55 2.08 2.81 4.35 2.61 3.15 6.94 4.67 6.91 7.08 5.25 12.5 3.7 9.93 0 10.4 12.4 10.5 10.1 6.86 9.64 0 3.36 6.84 9.75 12 0 7.48 10.4 0 6.45 4.82 1.26 8.94 10.2 13.3 6.88 14.7 3.15 4.91 2.49 1.26 6.64 0.55 0.95 0 10.5 1.51 5.86 10.9 0.95 9.25 11 2.9 1.92 6.21 0 2.23 0.55 12.3 6.37 5.16 9.22 0 2.99 7.12 6.11 0.55 6.01 5.08 1.26 0.95 8.89 0.55 10.1 3.07 9.02 0 0.55 8.54 8.56 4.78 1.73 11.6 1.73 11.4 0.95 3.48 3.65 9 0.95 2.37 2.81 4.85 0.55 0.55 8.2 4.18 7.38 0 4.96 3.22 8.13 0.95 9.77 0.95 2.49 10.2 12.9 1.26 1.73 1.92 0 8.59 3.85 8.36 6.36 9.54 12.1 5.48 3.98 4.59 9.79 8.97 2.71 7.39 12.5 10.3 0 9.14 0.95 4.65 2.37 10.1 10.8 0 8.44 11.6 1.26 7.5 10.5 4.57 0 12.2 4.7 12.4 8.8 11 3.42 12 5.75 2.9 0.95 2.23 1.26 4.67 2.71 7.83 8.23 13.8 8.9 9.54 8.33 5.4 7.04 11.3 2.49 7.39 8.21 0 1.92 8.98 9.21 2.49 4.32 2.49 6.7 2.5 7.46 5.23 0.55 0.95 9.55 10.9 9.7 10.4 9.69 10.2 11.3 13.1 7.5 6.07 10.1 9.61 6.64 12.1 1.26 6.99 9.69 9.65 10.5 6.43 8.84 10.5 7.71 7.33 10.7 5.23 5.2 4.48 9.58 10.2 6.38 6.03 1.73 3.15 8.72 5.86 11.9 2.66 9.32 11.7 7.05 15.5 7.75 8.61 9.49 6.81 0.95 8.59 7.1 9.56 10.7 11.9 12.5 1.26 11.4 9.02 10.8 11.3 12 10.1 11.6 8.02 7.74 0.55 10.1 3.07 0.55 13.1 9.33 1.51 9.03 8.56 8.16 9.23 9.81 9.36 1.51 1.51 9.65 2.71 12.3 7.59 4.54 12 14.3 8.8 10.4 11.3 6.06 10 9.67 7.68 8.11 12.4 10.7 9.38 9.89 3.15 10.3 10.2 11.4 3.8 13.7 8.76 12.2 7.61 1.92 6.6 0.95 9.43 9.31 7.94 12.3 8.89 14.4 11 10.1 6.69 14.5 12.4 11.8 7.66 8.3 9.81 0 1.51 2.37 12 4.39 7.85 12 9.89 10.4 3.94 10.2 8.15 10.2 12.4 6.83 10.4 11.9 9.44 8.21 12.3 10.8 12.8 13.1 10.5 16.2 7.63 7.51 10.2 12 12 0 4.85 5.86 10.2 1.51 2.71 5.21 9.31 8.36 9.18 5.93 9.52 9.87 6.95 0 7.22 0.95 0.55 5.41 0.95 4.94 4.06 6.04 9.72 7.11 7.38 2.08 0 5.12 4.22 8.75 3.29 4.06 0 6.41 9.33 3.7 3.07 6.3 4.37 6.95 5.53 2.99 7.57 0 2.99 8.11 13.3 4.8 6.93 7.33 9.95 2.23 8.85 5.68 0.95 2.81 4.48 5.12 6.42 7.2 5.22 1.51 0 1.73 0 6.7 8.34 6.58 5.06 11.8 6.72 2.61 5.33 0 0.55 0 0 5.77 1.26 7.42 2.23 0.55 0.55 8.86 7.08 7.73 0.55 4.14 13.5 9.71 1.26 7.89 7.83 7.17 6.64 1.26 7.26 0 2.81 3.7 2.81 7.57 0 6.78 13.6 5.02 3.98 9.34 0 9.48 7.13 8.68 0.55 5.87 12.2 2.08 0 5.02 6.79 6.2 0.95 1.26 1.26 6.66 3.85 0 3.07 10.1 9.7 6.87 5.23 9.04 1.51 6.29 9.59 8.4 2.23 12.6 8.79 5.14 9.86 2.08 6.24 4.14 11.5 1.26 3.07 7.02 4.73 0.55 12.9 6.47 4.62 4.59 4.33 6.64 0 12 10.2 10 10.1 11.1 12.8 12.4 10.7 9.78 11.6 6.18 11.4 12.1 10.3 1.51 9.03 12.3 11.8 10.5 6.63 6.41 2.99 13.7 6.14 3.85 8.4 0.55 8.28 5.08 5.6 18.6 2.91 9.43 0 0 4.22 8.61 6.28 5.1 12.2 11 11.4 3.07 0 5.59 0.55 2.37 9.12 8.79 3.48 0.95 1.26 7.1 2.71 7.05 0 4.45 5.1 4.51 2.49 10.8 2.6 1.51 10.2 0 3.94 7.95 2.37 0.55 12.3 5.49 8.37 4.62 3.22 8.73 3.75 4.02 4.91 1.26 7.64 3.15 2.37 3.15 4.45 3.48 4.18 7.45 5.8 7.62 3.75 1.26 13.8 2.49 3.6 7.71 5.06 5.28 4.14 6.17 6.82 0.55 1.92 1.26 5.06 7.7 3.37 8.75 2.49 8.46 0.55 8 7.1 5.41 5.33 4.67 8.03 7.75 0.95 7.21 0.55 4.54 5.43 5.18 10.2 8.04 5.53 3.29 8.2 12.8 8.56 0 3.7 2.81 7.99 3.02 7.95 2.49 7.21 1.51 5.28 5.99 0.55 7.13 10.7 6.87 4.1 1.19 13.3 3.8 7.44 8.9 0.95 1.73 4.94 0.55 8.27 7.05 1.26 5.58 0.55 7.2 0 3.29 0.95 0 5.46 5.08 3.94 0.95 6.61 12.1 8.8 2.37 0.55 2.9 8.6 2.61 1.73 1.73 5.23 0.55 7.79 13.5 8.53 2.49 7.75 10.9 10.7 8.84 11.4 4.18 12.2 0 11.4 0 8.08 13.4 12.4 13.2 6.81 2.08 12.3 12.3 12.9 0 0.55 4.25 11.6 4.65 12.8 1.92 1.51 7.85 10.3 5.62 8.64 11.5 13.7 9.25 0.95 16.1 11.8 12.7 12.7 4.35 0.55 5.9 11.4 9.15 14.3 3.65 11.9 14.4 13.5 0.55 9.68 9.44 11.4 0.55 5.63 5.63 9.76 0 9.3 8.99 12.8 10.9 12.3 9.97 10.7 7.14 4.62 3.42 10.4 8.85 3.65 6.94 8.98 5.84 10.4 8.32 10.3 1.92 4.12 0.95 11.7 2.08 4.42 5.62 4.59 12.1 0 7.13 4.02 11.1 1.26 2.23 6.81 11.3 10.9 14.4 6.14 4.32 5.95 10.8 0 1.92 2.23 6.32 3.79 5.56 6.62 8.63 1.51 4.89 7.77 2.05 6.74 4.59 5.81 8.81 1.26 0.55 5.02 4.22 10.3 1.73 2.61 5.48 6.75 0.95 10.6 7.23 0 3.54 7.69 2.61 6.88 1.73 4.35 2.61 8.29 6.09 6.92 0.55 4.94 0.55 5.35 2.81 2.61 2.08 11.9 0.55 9.4 2.08 2.9 3.15 3.36 0 0 2.49 3.65 9.01 3.9 5.89 4.96 0 8.5 2.99 3.42 6.71 2.49 8.63 3.94 2.71 6.43 8.73 10.7 6.65 0.95 9.63 0 0.55 2.26 0 4.73 7.8 3.48 10.6 11.4 1.51 0.55 3.36 7.03 9.55 8.47 1.26 5.55 4.78 9.11 0 0.55 9.61 3.75 4.39 8 5.52 9.09 0 7.84 8.54 13.8 0.55 6.58 8.64 8.92 2.23 7.54 10.1 3.29 4.91 2.37 4.49 10.8 5.81 8.14 9.74 8.45 8.82 10.7 10.4 11.6 4.67 10.2 6.14 6.31 12.1 10.7 8.4 12.4 2.9 4.02 0.55 2.37 10.1 7.18 12.6 13.9 6.35 4.91 7.92 4.96 9.97 6.06 12.5 14.3 13.1 8.7 12.1 13.2 10.9 0 8.32 4.29 6.45 6.76 10.1 11.7 11.8 8.94 9.5 10.9 9.59 10.1 9.12 10.2 4.73 8.41 3.36 11.5 9.37 1.26 5.2 10.1 8.87 8.79 3.54 3.22 8.22 10.5 8.76 9.24 10.1 11.3 9.42 8.08 5.89 8.42 9.22 9.7 13.8 2.08 1.26 8.68 8.92 11.8 6.45 4.7 11.8 2.99 3.07 5 1.73 4.96 7.13 5.1 1.92 11.8 5.72 0 7.16 7.59 4.25 11 5.49 7.76 2.49 12.4 10.2 5.75 10.7 12.2 10.3 5.7 11.5 11.1 4.8 0.55 13.8 10.6 10.9 12 11.1 10.7 11.5 10.9 1.92 10.9 8.06 2.99 11.3 12.4 10.7 11.6 8.65 10.3 9.65 9.91 9.46 10.2 4.95 7.59 10.1 6.55 6.1 6.68 7.3 5.97 9.52 9.28 9.71 9.28 10.9 9.68 5.67 0.55 8.64 11 8.87 9.97 10.9 10.4 7.29 10.5 6.83 7.05 12.1 10.4 5.33 8.56 9.79 10.9 7.99 7.52 3.9 9.17 10.2 9.33 11.1 11.3 8.5 8.31 12.9 13 0.55 8.69 5.87 8.79 12.5 10.2 5.38 9.31 8.94 7.74 10.5 10.5 10.2 10.8 3.15 4.45 8.98 11.2 10.7 7.23 2.37 7.72 12.7 4.14 3.6 2.49 11.5 2.61 10.8 14.1 8.03 7.99 5.59 7.42 8.97 6.91 1.51 9.14 8.94 7.61 9.85 0.55 7.17 8.68 0 10.8 5.88 9.47 9.42 9.22 2.9 1.26 8.14 3.7 5 9.54 9.54 2.49 8.78 7.84 11.2 0.95 5.59 10.8 10.4 0 5.36 5.53 8.87 8.56 3.42 0.55 2.99 0.95 6.43 0.55 10.6 2.23 0 4.85 8.19 10.4 3.07 5.35 10.7 4.4 5.58 3.7 4.14 5.63 9.44 10.5 5.59 0 6.66 0 6.55 7.21 0.55 5.21 0 1.26 8.97 9.66 1.26 1.51 3.73 5.45 5.66 2.08 7.77 7.24 3.15 0.95 5.96 5.59 6.58 4.35 12.7 1.73 8 3.9 5.56 5.53 2.71 7.87 8.27 6.02 0.55 5 5.77 4.75 2.08 4.83 4.72 0.55 5.48 5.52 2.61 3.15 0 0 0 0.55 2.37 0 10.1 1.73 6.47 7.81 2.49 8.6 1.51 5.68 6.64 10.3 0 0.95 0.95 1.26 0 1.26 7.91 2.23 0 5.99 4.54 1.73 1.26 12.9 1.92 9.64 8.79 0 6.56 11.8 11.5 10.3 5.18 7.88 7.4 4.96 8.93 15.2 8.74 7.2 2.71 9.97 5.06 10.1 5.46 3.7 3.42 11.1 14.2 8.67 1.83 10.9 8.14 12.3 10.1 9.56 9.03 8.67 1.26 9.44 8.91 9.04 11.2 2.99 1.92 8.75 8.77 6.51 8.65 9.57 13.3 11.2 8.61 6.16 5.8 10.8 0.55 1.51 1.51 12.1 9.25 2.23 11.2 7.49 0.55 3.15 15.9 11.1 7.06 9.79 0.95 6.34 15 10.4 1.26 13.1 12 11.3 11.4 9.72 11.1 8.18 1.92 9.19 11.6 11.9 11 8.87 8.5 0 10.8 9.93 14 10.2 9.3 11.4 12.8 5.8 12.3 1.26 3.29 11.7 11.6 10.7 11.8 12.2 12.1 8.73 11 3.98 3.15 10.4 9.47 7.32 9.08 14.1 6.58 9.81 8.39 8.73 10.6 8.29 12 9.67 8.43 9.3 2.61 11 10.4 9.68 8.76 10 9.22 11 10.2 9.52 9.68 9.39 10.4 11 9.73 9.93 10 10.7 9.31 10.8 9.69 10.7 8.59 11.1 9.44 9.94 9.94 10.3 9.32 10.2 9.16 12.6 13.1 11.7 9.09 0.55 6.01 7.93 5.48 8.51 0.55 0.55 3.29 11.7 10.1 8.09 8.19 5.3 12.2 9.67 10 14.5 10.8 1.92 10 7.59 6.66 8.06 9.59 8.16 5.79 13.4 5.04 12.3 10.7 9.1 9.48 10 11.3 10.6 12.2 8.89 8.33 7.65 9.18 9.42 10.6 10.6 0.95 9.29 8.58 9.68 6.02 1.26 10.9 9.68 7.93 10.9 9.91 4.82 9.27 8.47 2.61 9.55 7.07 2.81 6.27 12.9 11.3 13.2 8.07 8.92 9.06 11.6 11.4 4.06 10.8 12.5 4.02 6.51 10.7 10.4 8.94 11.7 12.5 13.3 7.37 5.8 3.15 13.2 3.85 8.46 8.57 11.4 3.94 13.4 4.42 0.55 14.5 5.38 6.44 1.26 1.73 5.3 8.98 9.81 11.5 5.6 11.9 8.29 0.55 10.4 5.41 4.07 2.08 13.3 10.2 9.67 1.73 7.32 3.85 5.87 0 0.55 4.39 0 6.7 7.55 1.26 4.45 6.93 11.9 9.03 12.3 9.95 11.6 8.15 12.1 8.7 4.35 7.18 8.2 11.8 7.48 0 8.95 4.11 3.98 9.76 13.4 4.18 14.5 9.9 0 6.43 10.7 8.52 3.7 1.51 3.15 0 13.4 10.4 9.58 12.8 9.69 5.35 12.2 7.11 2.37 4.57 1.26 2.97 10.7 0.95 0 11.1 9.04 13.1 5.93 7.03 8.55 9.66 8.64 1.73 4.45 8.62 8.66 11.2 8.41 8.74 8.37 4.62 1.26 10.7 6.6 10.5 2.61 5.14 2.23 10.6 11 10.2 3.6 3.48 8.02 4.33 7.99 7.02 8.91 8.75 5.7 10.8 15.1 5.1 5.1 12.5 0 1.26 2.99 11.4 11.2 13.8 6.07 12.3 9.63 9.25 6.1 12 10.4 8.64 7.26 11.9 8.16 3.22 10.3 13.1 13.3 12.1 11 14.4 0 7.71 10.2 9.48 11.9 0.95 8.47 10.4 1.51 5.88 9.5 10.3 9.63 3.22 11.8 8.99 1.26 10.4 10.1 8.96 6.03 1.92 0 3.92 10.5 11.3 11.7 10.3 11.4 9.12 8.42 0.55 2.23 1.73 13.1 5.08 6.92 8.95 4.14 5.97 0 6.7 9.93 9.37 6.72 9.67 11.3 8.35 10.4 8.05 13.6 6.43 3.29 13.8 0 7.82 2.61 6.42 9.93 9.82 10.9 10.1 10.3 8.62 8.26 7.64 7.24 8.24 6.74 9.64 8.19 8.7 0.55 9.75 7.36 10.2 8.37 11.1 8.32 7.2 9.01 8.33 8.72 10.7 6.31 8.15 10.5 6.56 10.1 4.22 10.1 9.93 9.97 10 9.81 8.32 11.1 7.5 9.01 6.06 12.1 5.21 6.08 10 10.5 9.98 5.75 7.72 8.92 2.61 9.22 10.7 8.51 10.4 9.89 9.12 9.93 6.81 10.6 7.36 10.6 9.77 10.9 11.7 10.4 10.7 0.95 7.84 0 1.42 0 9.8 4.14 6.93 9.71 7.43 12.1 7.87 9.63 8.56 8.34 9.35 10.5 11.2 5.98 8.32 8.64 8.11 10 7.66 12.3 10.1 11.7 11.4 6.31 9.44 9.01 10 9.93 9.79 9.08 9.85 11.2 8.23 9.84 10.7 9.27 9.95 11.2 0.95 9.4 9.77 7.61 8.98 11.2 9.63 7.11 9.04 7.57 9.57 8.36 11.5 9.89 10.5 7.29 9.98 3.72 11.6 0 10.2 11.8 7.04 9.29 11.1 4.87 6.53 8.46 11.2 3.22 8.38 1.73 7.89 5.04 7.22 6.95 6.44 8.11 8.85 10.2 8.64 9.03 8.71 7.56 9.64 10.3 7.6 11.7 8.47 7.72 9.23 9.33 10.2 4.48 11 6.01 10.5 10.2 8.56 5.3 0 1.26 1.51 9.13 5.21 10.2 7.98 9 7.11 13.3 9.32 9.08 10.8 0 10.3 9.63 6.53 7.22 10 8.17 13.3 10.3 9.82 9.36 8.22 6.66 8.96 3.48 10.8 9.63 7.35 8.67 11.2 5.25 9.88 9.25 9.99 3.5 5.23 3.85 10.6 12.3 10.3 11.5 6.42 3.42 5.87 10.1 10.1 9.74 10.3 6.99 8.69 9.79 6.15 3.65 9.01 9.06 9.78 8.89 10.3 8.78 7.65 8.98 10.4 6.33 10.1 10.9 10.5 6.5 8.7 10.9 1.26 7.88 9.65 4.1 5.84 6.01 7.1 9.39 9.09 0 7.68 5.23 9.08 9.49 7.99 10.1 9.61 11.1 10.3 4.67 10.7 6.78 10.6 6.92 3.75 5.16 11.2 8.97 7.1 6.78 9.03 9.09 10.4 10.6 9.81 1.51 9.36 0 4.02 9.2 9.51 9.04 10.1 1.26 3.42 12.1 8.31 9.64 4.62 10.9 7.98 8.1 10.3 8.52 9.02 9.09 6.47 6.77 12 1.92 6.85 12 10.3 9.11 6.37 8.99 8.73 8.17 10.5 9.39 11.7 6.44 10.6 9.42 7.98 7.87 7.4 8.73 9.44 8.27 8.43 6.93 10.8 10.4 0.95 9.53 11.7 10.4 7.5 9 8.59 2.08 11.1 8.09 10.2 10.9 1.92 8.79 4.18 8.7 8.12 3.15 10.3 9.33 7.75 0 14.3 6.31 7.23 11.6 3.7 9.04 8.97 11.2 10.5 9.34 10.6 9.23 11.7 9.14 8.67 8.93 10.8 9.86 10.8 8.74 11.7 8.76 8.69 9 9.12 3.98 11.1 9.89 7.21 8.54 8.61 10 10.4 9.97 4.18 8.7 7.49 5.67 10.5 10.1 8.48 9.2 8.26 6.95 9.44 7.93 8.9 8.24 8.52 9.32 12.1 8.71 0 8.33 9.82 4.91 6.25 8.23 10.4 7.4 9.54 10.3 5.04 10.6 10.7 8.98 8.5 3.6 11.9 9.71 11.4 8.69 11.9 9.84 10.8 10 9.27 11.9 9.03 10.1 5.72 10.8 9.67 11.3 9.42 10.8 8.97 8.16 11.7 8.14 0 5.73 9.81 12.2 9.31 6.49 11.8 9.44 10.6 7.86 8.07 11.6 11.7 10.1 9.84 8.41 9.42 9.97 11.1 9.36 9.6 7.89 9.17 7.66 11.6 8.84 8.34 9.3 7.98 4.91 7.32 6.21 10.7 8.58 11 7.81 11.9 6.16 10.2 5.27 6.65 7.68 9.6 3.66 0.95 8.81 8.04 9.82 9.2 10.2 10.6 11.7 10.6 7.99 7.37 7.76 10.9 6.55 5.04 12.2 4.35 11.4 8.97 1.73 11.9 2.81 8.39 11 11.4 8.06 11.4 0.95 11.1 8.63 1.26 2.81 6.91 9.36 5.55 9.29 8.89 8.21 2.61 10.6 6.84 11.1 9.83 10.2 2.61 2.49 8.97 9.45 0 9.06 12.2 9.17 11.4 4.06 10.9 12 6.15 7.17 3.7 8.9 9.4 9.84 9.79 11.7 8.77 7.71 7.8 6.57 8.04 7.22 9.84 8.96 0 0.55 9.04 5.02 10.1 10.1 9.95 7.79 11.9 10.4 1.73 8.75 11.1 9.83 7.91 12.3 6.31 10.4 12.2 14.6 11.8 7.74 10.3 13.9 2.9 1.73 11.3 11.2 8.59 11.6 15 11.1 9.29 3.8 3.75 5.2 3.6 11.6 2.08 13.8 4.82 8.19 9.83 8.25 7.74 10.3 12.7 2.08 7.63 7.22 9.96 16.5 11 12.2 8.08 10.4 8.74 4.85 8.81 8.55 10.5 7.77 8.55 3.54 9.78 9.33 8.69 11 9.49 9.2 10.8 10.5 7.66 9.79 11.3 10.8 10.9 10.4 8.84 1.92 7.31 9.32 11.5 12.2 10.1 8.66 1.5 16.8 9.1 10.9 0.95 7.32 7.2 6.73 10.2 9.61 11.5 11.2 11 7.43 11.4 3.15 11.4 8.04 10.2 5.74 7.68 1.24 9.07 7.22 5.92 5.87 10.1 10.3 0.55 5.83 8.05 10.6 9.72 9.56 10.4 15.2 1.9 5.91 8.84 8.63 3.63 5.46 0 10.5 12.8 9.82 3.98 12.4 11.4 1.73 13.2 10.3 6.66 13.5 11.6 10.6 11.8 10.9 1.26 9.99 7.08 9.7 8.67 10.8 8.03 9.2 0.91 1.26 11.3 13.2 8.68 10.3 9.49 7.24 6.28 8.56 4.97 3.65 0 1.26 5.25 12.3 5.74 4.1 5.71 11.7 8.33 10.7 9.9 8.48 0.55 3.9 11.2 12.1 8.16 9.5 9.33 9.04 7.89 10.7 10.3 8.85 8.78 10.4 11.6 11.8 6.4 9.56 8.65 0.95 2.9 5.21 6.64 5.38 0.55 7.8 1.26 0 6.65 2.81 5.38 7.94 4.96 10.8 9.66 10.3 0.95 8.75 7.25 6.87 2.65 7.17 0.55 9.01 8.68 7.8 8.48 9.47 9.61 9.96 11.4 10.9 8.65 7.77 9.26 8.66 8.07 9.51 11 10.2 7.71 0.55 10.6 9.01 13.2 10.9 9.98 3.42 2.61 9.04 8.34 8.6 11.3 6.49 5.98 9.13 10.3 4.67 8.8 9.29 8.03 9.66 8.82 9.42 13.6 11.1 3.15 9.73 9.18 1.51 2.08 10.8 9.14 8.61 10.6 7.24 10.3 3.7 9.03 10 8.64 4.51 10.8 11.2 8.65 11.3 8.45 9.08 1.92 0.95 10.7 9.39 11.1 9.95 5.41 10.7 7.66 0.95 10.1 9.35 9.47 10.4 4.06 9.6 11.6 8.38 9.78 9.72 6.58 10.7 7.49 9.37 7.21 10.4 5.77 9.95 8.5 9.13 8.22 10.9 9.59 6.58 10 8.88 9.44 9.86 8.84 2.08 8.63 6.84 8.26 9.17 7.56 9.39 7.26 5.79 9.23 9.24 5.99 9.38 8.8 8.87 8.9 8.28 7.96 8.28 9.25 9.34 9.96 8.55 11.3 10.2 10.3 9.56 8.82 10.5 6.31 9.76 7.02 7.21 3.22 8.83 7.26 0 6.66 9.72 6.4 6.49 9.12 2.37 10.1 3.56 11 10.8 9.72 7.68 2.37 8.95 7.84 7.65 10.4 12 11.6 2.99 9.1 4.91 11.2 9.53 2.08 9.34 8.87 9.44 8.35 12.3 5.38 8.64 10.3 8.65 3.75 8.64 6.25 5.88 10.6 1.51 10 10.4 8.58 9.95 8.73 0 3.98 10.8 3.94 12.1 9.17 3.15 8.86 11 9.91 10.1 6.06 3.48 12.4 2.49 4.45 0.95 7.36 8.36 7.33 11.4 3.36 6.45 9.75 10.3 2.23 9.28 9.65 12.5 7.75 7.17 7.67 9.35 13.5 9.96 10.6 10.5 6.72 8.4 0.95 7.62 10.4 8.31 9.67 8.67 7.46 7.08 7.01 9.12 13.2 9.25 2.71 10 9.89 9.07 5.96 11.4 8.02 8.08 10.2 7.41 9.2 6.57 1.92 6.69 0.55 8.41 8.22 2.9 1.26 10.8 8.86 8.32 10.8 5.76 10 7.6 10.6 7.77 12.4 5.87 9.75 7.97 6.97 10.7 9.61 1.26 8.73 9.78 5.14 6.92 8.59 10.2 9.69 10.2 8.77 6.74 9.39 0 11.2 9.3 9.99 10.6 9.64 9.89 9.31 7.69 8.78 9.21 9.13 8.11 9.57 9.92 9.59 7.81 10.7 8.42 9.56 11.2 10.6 9.29 9.69 9.08 9.21 8.45 9.79 2.37 8.05 6.18 5.83 8.04 8.65 7.39 10.4 0.55 11.2 8.09 8.73 5.65 10.4 10.5 8.73 11.3 9.65 8.84 11.7 6.68 5.86 7.86 11.8 9.33 11.9 8.93 13 9.9 8.98 6.86 7.41 8.99 5.99 10.3 1.51 8.48 9.58 10.8 11.1 6.27 8.58 3.22 9.47 9.25 9.59 9.11 9.13 8.59 8.65 8.22 7.78 7.55 6.27 7.69 5.87 11.8 7.51 10.3 7.18 8.59 4.77 8.74 0 8.69 7.86 6.68 7.32 11.1 10.8 8.29 9.39 8.69 11.9 3.8 6.05 7.2 8.44 10.2 8.41 9.27 5.49 9.16 2.08 10.7 12.4 7.03 5.77 11.3 7.25 3.9 4.42 9.83 7.45 11.6 12.8 11.8 9.31 10.2 8.63 10.9 7.74 7.37 7.68 11.8 8.94 12 7.91 9.6 7.55 8.34 10.4 10.2 8.14 5.98 10.8 0 0 8.43 4.96 9.95 2.37 4.32 8.8 8.42 9.94 11.1 8.65 8.13 9.52 8.86 3.75 9.83 10.6 8.16 10.1 10.3 11.4 9.57 7.29 8.63 10.1 9.31 9.33 5.51 10.6 6.68 8.46 4.06 3.36 3.42 8.45 4.73 9.67 3.98 10.9 3.6 5.74 7.38 10.6 6.86 9.17 10 9.21 10.6 9 9.15 8.16 4.73 4.54 9.11 6.37 7.04 7.58 9.63 7.4 7.17 10.8 3.07 9.52 8.77 10 10.1 8.46 7.94 7.34 9.94 9.11 9.91 8.05 8.91 7.01 6.92 10.2 8 9.77 6.43 10.1 3.22 8.68 10.6 7.3 9.2 0 9.18 7.96 8.3 8.22 1.92 2.08 8.37 10.8 10.2 9.11 9.45 9.73 7.77 8.83 9.63 10.2 9.06 11.9 2.99 7.32 9.04 9.64 8.68 9.7 9.71 10.2 11.3 9.84 11.6 10.2 8.84 10 7.03 9.31 9.33 7.84 8.58 8.22 10.4 10.2 6.37 6.19 9.47 7.94 8.23 13.1 8.69 8.75 10.1 9.74 4.54 8.59 11.4 7.62 10.5 2.9 10.4 7.81 10.9 6.66 0.55 9.93 10.2 9.64 7.31 6.88 11.2 4.82 8.69 4.65 8.78 10.5 10.4 12.1 5.83 11.2 4.7 10 8.26 9.41 7.45 10.7 8.67 7.02 10.1 9.18 11.6 2.61 7.26 7.55 4.67 7.93 10.8 9.03 2.81 8.32 9.81 10.5 3.6 10.5 11.6 11.5 9.1 9.99 11.8 9.85 9.7 5.7 9.11 10.1 6.59 7.91 10.5 9.8 9.66 8.35 10.3 8.41 9.24 9.77 10.1 8.49 3.48 0.95 8.41 5.08 8.29 10.1 3.8 5.93 9.85 11.1 9.61 9.98 1.73 8.68 10.7 11.6 6.99 8.47 8.45 10.1 8.77 8.77 0.95 4.54 8.99 7.46 1.75 11.1 8.88 12 0.55 10.8 8.42 9.24 10.9 8.78 8.95 7.33 6.57 8.18 8.63 9.18 0 9.71 10.2 3.85 8.54 8.69 9.97 11.2 7.44 10.7 8.89 9.5 7.02 6.59 5.1 7.88 8.26 8.25 10.3 9.36 3.94 8.65 6.8 10.6 8.88 10.3 9.1 6.29 3.36 8.73 8.14 8.66 9.93 10.6 12.2 2.49 5.44 8.96 10.4 10.8 7.91 10.2 8.64 9.89 10.5 6.32 8.6 8.3 2.37 5.28 4.73 8.57 11.4 8.67 6.47 11.5 7.02 10.4 10.2 11.2 9.39 8.66 9.38 7.46 10.2 5.79 6.76 12.9 11.4 4.42 8.5 2.61 6.19 9.18 7.26 7.16 0 1.26 7.51 4.85 9.08 8.45 6.17 1.92 7.92 9.16 9.32 10.6 8.95 10.2 6.77 2.23 9.93 6.6 10.5 9.36 8.19 4.25 4.67 7.98 10.5 8.14 4.42 7.67 4.94 9.61 2.81 5 0 10.5 6.39 7.32 9.6 10.3 6.75 2.82 0 7.82 8.57 1.4 2.49 9.47 1.26 0.95 7.34 9.54 8.25 6.53 7.52 9.54 6.51 4.45 10.8 8.01 9.9 8.12 12 1.26 11.3 9.11 7.95 5.35 10.2 9.64 10.2 10.9 5.92 9.88 9.25 6.35 0 12.2 8.87 9.72 10.1 10.3 1.92 8.51 7.16 8.7 11.4 13.1 2.23 9.71 8.07 6.44 7.56 9.01 9.78 10.6 9.18 9.12 9.89 9.65 10 9.78 10.8 8.66 9.82 1.73 8.96 8.3 8.62 8.86 6.43 8.5 10 3.07 9.76 7.22 11.1 8.85 9.23 7.98 9.25 8.15 10 9 8.87 11.3 11 9.99 6.97 9.9 6.73 10.6 11.4 9.91 10.4 6.4 8.65 9.56 11.9 10.7 8.57 10.3 10.1 9.69 11 7.34 8.38 10.3 6.26 8.08 10.9 9.92 11 9.6 6.98 10.5 4.35 11.4 8.86 8.3 4.89 9.17 10.1 10.1 3.42 11.6 4.96 13 8.36 8.22 9.22 9.8 11.2 9.49 10.9 8.02 10.7 5.89 1.51 9.12 9.26 10 9.94 9.42 9.06 11.2 5.72 6.26 9.49 10 10.6 8.28 10.6 12.4 9.54 7.89 6.92 9.04 10.4 11.4 10.3 9.52 12.8 9.24 10.4 7.14 8.24 9.09 10.1 13.5 10.5 8.06 9.02 9.04 11.1 0.55 11.8 9.82 9.16 7.54 8.07 9.04 9.22 10.3 9.61 4.02 10 7.99 11.1 10.3 8.88 5.76 5.66 10.1 8.54 9.78 9.43 7.99 7.18 7.41 4.96 8.45 7.88 8.94 9.8 9.32 10.6 3.36 7.11 8.96 8.06 7.52 8.12 8.34 8.89 8.43 8.74 7.17 7.74 4.22 10.1 10.3 4.7 9.87 8.45 2.99 10 6.86 9.85 6.8 10.3 0 6.29 9.75 9.69 1.73 10.1 9.09 0 9.59 9.14 5.82 10.4 9.89 10.6 8.99 10.3 12.4 11.5 7.35 8.84 9.2 10.2 4.78 9.87 5.92 9 11.4 8.55 8.62 9.13 9.12 6.96 9.57 9.91 3.8 10.7 8.33 9.23 8.95 10.7 1.26 10 10.9 8.39 9.75 8.01 0 7.56 4.82 10.4 8.99 9.33 8.94 7.13 12.3 1.51 3.42 0 11.8 6.89 8.55 11.4 0.55 11.4 9.16 6.02 8.56 9.17 10.4 10.2 7.84 9.76 8.72 13.2 7.97 10.5 8.68 8.29 10.4 5.67 12.6 8.5 6.76 8.19 4.59 4.43 3.65 12.1 10.6 8.35 6.99 10.8 12.9 4.14 3.94 10.1 11.4 10.7 12.5 12.5 10.5 7.04 9.99 9.01 8.89 8.79 7.99 1.73 7.65 1.26 10.7 8.04 9.3 2.61 12 8.23 10.7 10.9 9.53 10.5 10.2 1.51 6.79 7.77 4.85 9.46 11.1 1.51 8.33 10.5 4.75 3.85 3.7 8.76 4.69 4.62 8.54 5.18 3.62 5.92 11 4.06 5.79 2.27 3.28 4.76 9.56 0.95 4.14 8.31 5.3 2.9 3.29 5.43 7.26 6.44 3.8 9.45 2.49 3.65 3.22 4.96 0.55 7.3 7.88 3.36 2.61 10.8 1.26 9.57 4.25 7.05 8.52 1.26 8.22 13.9 0 3.98 7.38 4.22 12.1 0.95 7.64 11.5 6.07 9.76 9.2 6.26 9.87 9.98 3.3 9.49 13 8.55 8.83 6.47 10.8 5.9 10.3 1.73 0 9.58 9.5 9.86 8.88 9.29 9.2 8.36 7.66 11.2 10.8 1.26 0.95 7.86 4.78 9.08 5.48 4.18 11 2.81 11.3 6.67 0 14.6 9.49 5.7 10.2 10 4.73 7.52 11.8 8.07 9.7 8.18 11.8 9.9 8.45 6.92 9.8 8.13 4.1 0.95 2.08 4.22 8.93 1.73 10.3 5.76 11.2 9.08 16.6 5.74 0.55 10 9.96 11.3 11.4 11.2 9.49 7.55 11.5 7.4 11.6 9.62 9.93 8.16 0.95 11.6 12.1 12 12.6 11.2 10.3 12.1 11.4 6.6 7.73 10.2 11.3 7.22 10.4 7.25 0.95 12 9.38 12.8 9.21 9.95 10.1 4.94 8.51 10.9 11.5 5.95 8.58 8.35 7.81 9.17 6.41 9.02 11.7 5.08 8.6 10.3 5.76 11.6 10.1 8.83 9.93 11.8 9.05 6.18 10.7 11.5 11.2 8.9 10.3 8.43 9.11 9.07 9.25 8.65 9.35 7.59 9.72 11.5 9.79 10 6.64 3.48 9.21 9.04 12.2 1.73 7.64 0.95 9.07 6.2 11.5 11.1 8.89 6.04 3.98 11.3 8.69 6.06 8.3 9.37 7.09 6.89 10.5 10.6 10.4 7.85 10.2 7.78 9.99 8.88 6.98 11.3 7.19 1.51 9.2 6 6.6 11.2 10.7 11 0.95 9.56 9.76 10.3 11.7 9.78 6.66 3.29 6.87 7.62 9.1 11.1 10.1 11.3 11.4 9.57 1.51 10.1 8.41 0.55 11.9 12 13.6 9.22 11.3 8.05 10.7 11.9 6.09 10.3 4.39 10.3 0.95 7.96 8.63 10.4 11.1 4.18 9.43 9.79 9.07 4.73 6.38 8.62 9.49 10.2 12.1 1.51 8.57 6.71 9.74 9.96 10.3 10.2 8.65 5.46 7.93 9.28 11.4 10.8 11.1 5.93 10.9 1.92 12 10.9 13.2 7.79 9.86 7.81 10.7 7.66 11 5.83 12.3 10.3 7.58 8.66 0 9.82 5.08 9.53 4.18 2.99 8.07 12 11.2 8.87 10.7 9.11 11.4 10.7 10.3 5.1 8.37 10.1 8.71 9.8 8.07 9.71 1.26 8.79 11.5 11.6 0.55 8.5 6.76 9.69 8.72 12.5 11.7 6.12 12.3 7.17 10 5.75 8.49 8.52 8.14 6.54 10.5 4.7 11.3 11.2 10.1 9.24 9.92 8.18 9.64 2.61 9.01 13.1 6.47 11.1 0 3.22 6.23 10.8 5.1 0 4.54 8.27 9.51 5.12 7 9.12 7.35 3.75 7.37 0 8.71 7.99 3.07 5.27 13.6 8.67 6.34 5.43 2.81 7.15 5.76 1.51 4.1 11.3 8.5 0 7.36 9.8 9.16 8.45 10.7 3.44 10.3 3.8 9.83 6.6 11.3 8.26 12.5 9.54 8.77 11.4 11.2 2.37 12.7 2.08 1.26 9.43 8.66 11.8 9.73 0 5.18 9.17 10.7 3.9 8.31 7.59 10.1 2.08 4.15 11.6 10.3 0.95 10.5 9.13 7.25 8.39 5.48 6.72 9.78 10.2 8.76 3.22 3.75 8.89 11.1 8.79 6.29 10.7 10.9 8.78 4.8 10.1 2.49 11.1 2.23 2.49 5.02 9.2 8.78 10.6 7.5 8.68 10.9 10.9 9 9.14 9.06 11.5 7.56 10.1 9.74 7.9 0 2.99 1.26 3.36 11 8.92 7.2 11.2 11.7 10.6 5.7 6.16 8.19 7.12 6.78 12 1.26 8.77 9.46 7 5.8 7.08 6.53 9.94 9.98 9.04 10.3 0 8.23 6.62 7 6.85 12.3 8.1 10.4 3.98 8.78 1.73 8.57 11.1 5.48 13.7 9.44 3.75 10.9 3.29 3.48 5.27 5.46 2.08 9.56 9.87 0 10.4 10.9 9.31 9.48 10.7 10.8 10.5 9.27 5.8 8.76 4.1 1.92 7.58 8.9 5.77 10 9.45 4.02 9.4 10.9 8.71 12.5 9.22 8.17 10.2 0.55 8.3 10.2 7.71 9.42 8.29 4.1 8.06 0 12 8.68 2.49 11.4 11.7 5.86 6.13 1.73 10.1 9.15 9.87 11.9 9.25 8.7 2.71 7.27 9 4.94 9.57 10.8 10.5 6.56 8.23 7.59 8.67 8.93 5.51 7.61 13.6 4.22 7.87 9 11.7 11.6 7.58 5.21 7.95 3.7 8.57 0 8 6.09 3.6 9.53 8.72 9.03 7.5 9.83 6.29 1.26 10.9 8.93 9.11 9.11 10.4 8.04 8.84 11.6 9.97 9.24 4.63 4.75 6.37 2.37 5.4 6.67 8.68 7.6 11.7 8.19 6.04 9.85 9.81 6.7 3.85 1.26 7.96 0.55 9.6 8.17 4.57 9.02 7.23 9.78 8.36 8.6 10.2 9.01 8.58 9.27 11.3 9.83 5.84 10.2 11.4 12.2 9.22 11.4 9.03 0.55 11.5 10.5 9.83 9.29 2.08 10.9 0.55 8.91 7.54 8.48 10.7 10.8 5.21 0.55 7.94 10.4 10.3 7.99 9.75 13.7 9.92 6.01 9.13 10.9 8.48 3.8 4.91 1.92 7.45 5.75 1.51 8.74 8.56 2.81 9.52 8.37 8.76 11.1 6.71 11.3 14.4 6.2 10.7 10.9 10.2 7.88 6.23 9.92 9.97 9.9 8.89 7.17 9.54 12.1 8.08 9.53 8.67 10.9 7.98 12.2 13.8 2.08 12.5 3.8 7.99 9.14 10.5 9.68 6.32 4.87 10.8 8.73 8.65 8.06 9.34 9.98 5.3 5.83 7.5 5.45 5.09 8.68 9.32 7.14 7.5 6.09 10.7 10.8 11 8.77 1.92 10 8.58 10.5 11.1 10.6 10.3 8.95 5.65 1.26 11.2 2.08 0 11.5 9.68 9.1 12.2 10.6 9.5 5.51 2.61 6.99 8.83 10.4 12.2 9.17 12 7.58 9.47 8.38 8.06 10.7 9.31 8.7 11.7 12.3 12.1 4.67 6.72 8.51 12.6 11.2 12.5 8.41 7.54 7.15 4.1 6.87 6.8 11.2 6.24 10.9 10.5 11.6 11.7 10.3 13.7 10.3 11.4 12.4 9.97 11.6 1.26 8.21 10.6 9.97 12.4 1.92 9.04 5.86 12.4 11.2 5.48 7.99 9.12 9.93 7.51 3.8 5.95 11 8.84 8.65 11.5 8.12 6.84 9.1 8.29 11 10.7 9.28 9.29 10.1 7.18 10.7 9.95 8.65 1.26 9.84 10.7 9.62 1.51 6.53 11.4 9.98 9.45 10.9 4.73 9.6 12.8 3.15 5.02 10.9 10.4 10.8 5.97 13.1 0 3.16 0.55 11.8 1.51 5.4 1.51 10.8 9.4 1.26 4.17 7.67 2.9 11.4 10.7 7.93 6.7 11.3 9.24 6.48 10.9 9.71 9.38 5.37 10.8 9.19 10.5 9.33 8.19 8.55 9.54 8.63 9.61 3.14 7.86 11.2 7.33 6.44 0 10.1 5.21 10.5 9.58 9.93 17.8 9.12 11.2 2.37 7.68 2.71 0.55 8.78 0.55 9.45 9.24 9.74 0.55 9.94 3.15 9.15 11.2 9.04 9.32 10.8 2.08 0 8.77 8.09 0.55 7.57 7.65 9.66 4.45 8.67 10.6 0.95 7.67 6.94 0 8.57 12.2 4.8 10.5 8.22 10.1 0 9.36 6.73 10.2 9.21 10.2 7.22 8.82 8.91 8.91 3.07 9.58 9.03 12.9 7.65 11.2 9.02 11.4 9.9 11.3 8.91 8.88 11.3 10 0.55 7.26 11.4 5.27 7.8 8.05 4.18 10.3 9.03 2.37 0.95 2.81 8.88 1.26 10.2 9.57 9.47 10.2 6.62 8.5 2.99 11.9 10.6 4.06 8.12 1.51 4.48 2.9 5.99 9.38 7 0.95 11.1 9.37 7.96 9.97 14.8 14 13.4 12.9 9.51 11.2 13.2 4.42 15.1 7.63 12.7 13.5 12.3 13.3 13.1 11 13.2 9.46 13.6 1.73 11.8 10.8 9.26 12.3 12.5 13.4 13.3 12.6 13.5 12.8 13.3 13.2 12.2 13 12.5 12.9 13.1 12.2 8.56 8.3 14.2 7.51 14.7 14.2 13.5 10.4 9.58 12.9 13.2 13 14.1 11.7 13.9 1.26 3.15 4.06 4.51 5.43 13.3 2.23 0.95 15.2 10.8 8.14 10.9 9.32 10.7 11.5 13.6 13.6 11.3 13.8 13.3 12.4 13.5 12 13.2 13.7 13.4 10.4 13.9 13.4 13.5 12.2 12.8 13.8 11.9 10.2 5.6 12.1 7.91 12.9 5.3 10.2 12.4 11.5 11.5 12 10.3 0 8.55 12.2 10.6 8.3 6.87 11.8 9.06 10.1 7.5 2.08 3.75 4.22 2.37 10 16.7 6.46 10.4 0 13.4 16.3 17.1 14.3 15 8.59 8.72 7.2 9.06 13.3 10.3 10.8 2.78 4.59 7.14 12.2 9.94 11.8 12.4 7.69 7.68 11.5 10.3 9.39 6.74 10.1 9.66 9.58 12.4 3.08 6.91 6.86 5.51 2.81 1.73 2.71 0 12.4 4.8 1.92 6.86 3.7 10.2 3.48 12 9.76 9.28 10.7 1.92 2.37 8.76 6.8 4.91 0 8.21 11.7 6.89 2.37 8.42 7.91 8.86 1.73 2.99 8.37 0.55 5.02 10.9 8.48 3.9 7.51 8.34 15 6.87 2.99 8.97 13 11.7 7.47 9.81 10.2 4.14 9.2 9.65 11.1 9.59 9.48 10 9.27 5.4 9.04 9.19 6.52 11.7 10.3 10.4 10.1 8.45 7.15 10.9 5.83 1.94 7.26 9.34 9.03 9.78 5.04 8.45 5.71 0.55 9.72 8.33 7.75 8.01 7.22 7.97 2.9 9.67 7.81 8.55 6.58 7.58 11.5 8.66 10.5 7.52 11 4.73 7.56 8.32 10.9 6.94 1.73 11.7 11.1 6.86 7.02 5.38 9.64 11.9 7.5 9.7 0.95 16.1 2.08 6.74 11.3 7.85 9.33 5.38 5.59 10.6 3.8 10.2 8.19 0.95 4.48 7.99 4.48 4.02 5.92 7.59 7.84 5.16 6.62 8.35 8.99 7.93 13 10.6 8.51 10.6 9.83 3.75 7.66 9.2 10.4 4.44 3.75 7.85 0.55 9.7 5.14 11.6 5.06 7.8 0 12.3 9.55 7.3 7.89 5.45 7.64 11.6 10.1 10.3 9.04 4.9 7.68 2.61 5.06 5.21 5.95 4.02 9.97 12.5 0 6.04 4.98 10.5 9.67 12.2 10.7 9.16 8.13 10.9 9.56 10.8 4.89 9.73 9.39 10 10.4 1.26 9.72 9.1 10 6.46 0 0 8.96 0 12.3 1.51 12 12.2 4.51 8.63 3.98 8.81 4.14 6.66 9.83 6.05 7.53 10.7 1.73 4.75 1.51 2.49 11.7 4.75 0.55 11.3 10 9.08 10.8 10.9 8.44 4.48 11.5 8.42 3.7 9.46 9.99 9.81 9.79 6.63 10.8 7.91 5.49 0 5.12 5.58 11.6 8.79 9.62 1.51 11.5 6.77 0.55 1.26 9.86 7.44 8.22 0.55 1.26 8.27 6.41 7.01 6.99 7.08 5.65 2.99 6.55 7.11 7.6 7.59 3.22 10.6 11 2.08 9.66 8.37 6.47 7.46 4.48 3.6 7.05 5.72 8.04 9.78 8.17 7.5 0 4.78 1.92 7.19 3.07 8.6 9.32 2.37 7.12 7.38 9.51 11.6 9.47 10.3 8.79 8.31 9.11 9.45 9.08 8.6 9.14 8.84 2.37 6.65 1.45 0 4.06 4.02 4.8 2.08 12.9 4.02 4.75 0.55 7.74 0 11.2 7.68 0 10.7 1.51 6.29 0.95 8.64 10.5 3.42 1.51 10.1 1.95 0.95 6.16 0 10.7 8.62 5.77 1.26 1.85 0.95 0 11.7 0.55 5.2 4 3.48 7.56 2.08 3.07 10.1 0 2.9 7.64 7.37 8.97 5.41 9.54 0.95 1.51 0.95 10.4 0 7.81 0 12.1 1.26 10.1 3.54 4.41 10.8 1.26 0.55 5.55 9.63 9.92 1.92 9.67 0.95 0 4.7 1.51 5.59 3.7 8.47 10 9.93 5.4 8.83 11 12.8 4.91 1.51 6.72 11.9 4.45 6.55 9.77 10 9 10.7 11 9.12 8.23 2.99 7.28 10.5 9.08 5.32 10.5 10.8 11.6 6.74 8.95 10.9 8.45 11.1 9.17 8.69 8.15 12.1 7.26 7.32 6.83 8.94 11.1 7.28 11.2 9.8 9.28 9.78 8.32 9.38 8.7 0 9.21 11.5 6.52 4.75 7.75 8.8 8.27 0.55 9.93 12.4 4.06 3.65 9.61 8.63 1.26 7.83 7.14 1.92 9.66 8.69 12.1 9.92 4.75 9.62 7.62 7.36 11.5 3.22 11.4 9.73 9.86 3.9 8.25 9.4 8.72 13.9 10.6 9.23 8.7 9.3 7.74 7.32 9.71 13.1 6.29 0 3.85 5.08 8.53 8.61 10.8 4.82 8.93 0.95 8.81 10.1 7.52 0 9.79 8.94 7.8 7.94 9.63 2.61 5.7 8.72 5.35 9.13 5.45 7.3 8.65 6.6 9.64 0 9.93 8.98 8.77 9.04 9.81 10.8 8.8 8.92 9.34 7.94 10.3 7.96 9.27 10.2 2.37 8.61 11.9 9.54 9.73 8.49 5.6 8.05 3.11 10.6 9.15 9.29 4.06 6.12 4.62 2.49 10.4 8.39 9.99 2.99 9.53 4.85 8.43 0 7.5 6.55 7.02 9.09 9.38 12.3 7.46 11.4 8.6 9.68 1.26 12.2 11.3 7.54 8.3 10.2 0.95 10.5 12.1 13.2 8.9 15 0 8.51 2.08 7.66 0 5.92 12.5 1.51 10.9 9.81 4.8 5.49 9.51 8.4 11.1 7.77 4.82 8.14 9.72 8.58 8.62 12.1 9.84 4.02 0 2.9 1.26 0 3.07 0 7.5 3.98 0 5.12 7.29 2.99 13.2 4.8 3.8 0 1.26 2.9 3.75 9.88 6.95 1.73 6.7 2.71 2.23 0 7.53 10.6 8.57 9.29 10.3 2.49 7.74 5.32 9.7 0 8.85 7.98 6.02 3.42 0.55 8.9 1.51 7.07 5.53 4.1 4.85 0 12.6 5.02 0 0 0 8.1 6.29 7.26 8.6 1.26 8.01 4.59 8.76 5.12 2.61 7.68 1.73 2.49 12 4.82 4.91 2.99 2.61 1.92 0 7.66 0 9.27 2.61 5.97 10.5 1.26 6.76 11.9 8.56 8.43 0 4.65 6.91 10.7 12.4 10.2 9.31 5.21 1.51 3.75 4.91 7.11 2.49 7.9 11.2 14.9 10.6 6.9 11.1 7.42 11.7 0.55 7.42 9.89 10.6 9.39 7.44 5.71 8.71 11.2 5.28 9.57 7.08 4.14 11.7 5.89 9.67 9.94 10.1 8.75 1.51 8.13 7.76 3.48 1.73 4.22 10.9 10.4 9.35 10.6 11.5 10.8 4.32 9.49 6.03 10.8 1.84 9.66 6.41 8.89 9.53 7.91 10.3 11.7 11 8.22 6.55 2.61 9.19 8.36 9.57 7.73 7.71 6.24 7.39 14.3 11.4 10.4 8.16 12.1 9.72 10.1 10.6 9.91 11.2 10.6 8.81 10.3 9.55 7.41 11.1 7.42 7.22 10.8 9.9 10.8 9.97 0 11.1 1.51 13.5 6.55 11.4 10.3 12.9 9.57 11.8 10.4 10.2 10 9.6 3.65 10.8 1.26 11 7.19 11.9 9.15 14 10.8 7.05 11.3 8.33 10 4.14 14.8 8.25 9.66 8.62 4.22 9.76 0.95 12 8.68 6.99 9.97 8.81 7.98 12.4 0 8 12.7 11 11.5 10.2 9.57 0 9.52 9.17 11.7 12.3 11.1 11 10.8 11.6 9.29 10.8 7.4 11.3 11.8 10.8 10.1 12.1 10.3 9.48 10.5 10.1 11.7 12.3 11.6 12.4 11.1 12.2 7.96 3.8 0.95 11.1 10.6 11 13.7 4.51 13.8 6.22 15 12.8 13.4 7.47 9.65 10.2 0.55 0.55 1.51 0 1.26 2.37 0.95 1.82 12.8 0.92 1.92 0 5.57 11.3 11.4 7.75 8.98 5.12 2.9 11.5 6.22 8.72 8.58 10.2 9.25 4.18 6.18 9.37 10.1 2.99 1.51 9.55 6.44 9.77 9.54 9.37 8.64 10.8 9.33 9.84 4.82 6.85 0 13.9 12.3 7.33 9.73 12.2 4.96 11.7 8.8 8.42 8.2 12.9 8.8 8.86 8.26 12.8 10.8 5.35 9.23 9.74 4.25 10.9 3.29 2.08 2.37 11.8 2.23 7.41 0.95 2.23 0 11.1 10.9 1.51 8.9 7.07 9.46 10.2 7.97 7.31 11 7.26 10.1 10.8 12.9 10 9.32 9.04 8.65 8.48 9.94 4.32 0.55 11.3 13.1 14.2 12.7 12.9 8.36 9.14 12 6.96 2.23 8.19 10.1 8.25 10.2 8.59 8.55 7.7 7.32 4.96 6.57 4.29 7.3 9.99 6.41 4.65 2.99 6.16 6.46 9.68 1.92 0 10.4 3.76 11.3 10.3 8.53 4.32 10.6 7.22 8.36 8.36 8.1 10.3 1.51 12.7 6.63 9.88 10.8 9.4 10.3 7.3 7.99 10.9 6.5 12 0.55 0 7.98 9.94 10.4 3.36 10.9 10.3 10.5 7.23 11.5 10.2 9.78 9.54 4.62 2.08 10.2 15 9.25 6.8 10.4 0 8.1 8.88 3.29 9.88 3.7 8.96 11.1 7.72 8.22 5.37 8.48 11.6 6.8 10.6 2.71 7.57 2.08 12.2 2.71 11.7 11.4 8.93 7.73 9.43 0 15.4 10.9 3.65 11.4 7.07 9.35 10.8 14.9 9.02 10.5 12.5 13 12.8 7.8 11.9 5.7 2.37 10.2 1.26 7.62 5.21 0 10.1 11.6 9.23 10.6 10.8 7.81 11.1 11.7 10.9 1.26 11.3 11.9 10.7 7.97 13 2.81 9.38 5.66 10.8 10.4 1.73 14.1 10.9 8.09 9.12 9.27 7.75 17.2 12.4 6.18 7.17 8.18 9.08 8.59 5.66 10.1 9.96 3.02 11.1 14.4 10.9 5.65 5.3 6.8 0.55 11.9 11.3 12.1 11.4 7.4 12.6 10.5 0 1.92 3.7 10.6 11.2 0 10.3 6.2 12.4 11.5 7.67 1.26 11.6 11.1 9.11 10.5 9.49 9.78 13.7 8.92 9.9 11 9.64 11.8 0.95 14.8 10.6 10.2 9.82 13.6 14.8 9.91 9.91 11.3 9.13 15.7 1.24 12.3 8.51 9.92 14.8 8.84 8.59 9.48 7.49 7.85 8.79 8.54 0 13.1 10.8 10.9 5.84 1.51 3.6 0 2.61 7.2 7.19 11 0 5.87 3.25 10.9 9.47 10.2 0 10.3 1.92 9.61 11.8 6.74 9.31 9.54 8.91 11.7 9.87 10.8 11 9.81 4.25 7.71 8.82 7.07 4.54 14.5 3.36 7.25 2.23 6.47 5.91 9.24 8.88 12.4 5.12 4.02 3.54 5.97 6.78 0.55 6.06 6.22 2.23 5.23 7.87 10.3 3.42 7.83 0 5.14 5.6 11.7 5.06 3.48 2.49 6.8 8.44 6.12 3.22 10.6 0.55 5.12 3.85 3.15 3.9 5.18 8.43 7.92 1.51 13.2 1.26 5.65 0 5.53 0.55 0.55 6.2 7.09 2.23 9.49 1.26 0.55 10.1 7.55 9.86 2.9 3.93 3.67 6.8 1.62 0 6.48 7.12 5.35 2.49 5.98 2.71 6.02 1.26 4.57 2.71 3.54 3.54 7.01 12.5 8.73 4.32 8.04 4.14 4.18 10.7 5.28 4.45 1.73 7.25 9.88 0 0 4.35 10.3 9.6 7.45 2.81 4.73 1.51 6.66 7.85 0 0.95 0.95 5.56 3.15 6.86 8.8 3.85 2.08 9.42 1.26 10.5 1.51 13.2 0.55 13.8 16.2 13.5 0 10.8 10.6 9 7.86 10.8 12.6 9.97 8.64 10.6 10.2 10.3 10.9 0.95 10.8 11.5 11.8 10.2 10.4 8.65 10.1 10.8 11.2 5.49 9.97 2.61 0.95 9.76 2.61 10.5 1.73 10 9.09 9.92 11.1 0.95 8.94 10 8.99 10.1 9.99 10.5 12.2 1.51 10.2 0 10.9 12.1 11.8 10.5 10.2 10 8.84 9.19 10.6 10.3 0 10.3 10.6 8.88 8.69 12.2 11.2 7.28 9.81 9.67 7.91 12.9 14.8 12.6 10.8 11.5 11.4 10.9 9.3 7.96 2.37 8.92 1.26 13.1 14.2 6.37 0.95 10.1 4.51 0 6.57 9.11 9.3 11.1 3.48 3.75 11.6 15.8 7.67 10.1 12.7 9.68 8.86 7.69 9.09 10.8 8.66 11.3 9.24 5.35 0 2.37 10.7 2.23 3.15 10.7 0 6.07 4.1 5.08 5.43 0.55 7.57 8.89 1.92 11.6 8.69 0.95 2.56 4.51 6.72 9.28 5.62 11.2 2.08 11.9 8.93 6.14 8.74 7.17 9.8 13 4.37 11.2 10.5 13.4 7.46 13.8 12.8 11.7 16 7.15 12.4 13 4.87 11.8 7.44 8.93 8.75 5.8 6.99 7.9 3.22 8.33 6.54 13 3.48 8.49 4.35 4.1 7.54 6.57 7.41 4.51 3.9 5.93 8.67 8.24 6.32 10.4 5.97 5.53 6.51 6.37 8.6 8.21 7.7 10.1 7.6 6.8 7.65 7.11 4.78 7.5 7.28 12.8 1.51 0.95 2.23 6.68 7.13 7.24 6.24 8.32 6.39 0.95 7.33 2.08 4.18 7.73 4.82 0 2.23 3.85 7.01 1.68 12.8 5.14 1.73 2.08 2.08 2.08 4.8 1.26 8.75 8.69 4.1 8 6.63 3.8 6.27 2.81 6.17 7.49 6.34 3.22 9.07 8.74 8.51 1.73 10.5 11.7 9.67 8.83 12.8 3.48 5.81 0 9.58 7.51 11.4 6.66 5.52 2.23 3.24 1.92 6.62 7.65 7.15 13.9 0.95 6.58 7.58 7.86 5.96 7.02 6.9 10.2 7.85 7.36 5.28 7.62 11.9 1.26 2.71 8.33 3.07 5.56 10.7 10.3 3.8 6.68 5.41 7.26 0.95 7.12 5.06 3.42 5.59 6.56 8.33 8.9 2.23 0.55 8.06 6.83 6.35 5.96 12.8 11.5 10.2 12.7 3.8 12.4 7.68 11.7 3.88 13.7 8.49 10.6 5.21 3.07 10.4 10.8 8.69 8.54 10.4 8.53 12.8 7.08 1.92 11 12.9 10.3 10.3 3.07 9.24 10.4 10.6 5.49 10.5 10.9 11.6 12.9 7.75 2.81 10.1 1.26 8.64 9.07 2.99 8.38 8.7 9.77 8.43 7.4 9.36 0 2.23 8.38 11.1 6.35 9.82 10.1 8.48 8.82 8.59 5.32 1.92 8.01 9.27 0.95 9.5 10.2 8.4 7.4 7.82 11 9.96 0 15.9 10.2 7.93 8.03 8.77 9.21 8.14 9.51 10.4 5.76 10.4 11.3 1.51 9.33 10.2 8.91 11.6 9.18 9.04 10.8 7.66 7.36 11.3 9.33 9.72 6.91 7.89 6.41 11 6.99 7.45 9.18 6.86 9.79 9.06 9.89 8.65 9.34 8.46 8.03 8.59 5.79 7.31 8.04 5.74 8.56 7.83 7.64 11.5 8.47 10.6 11 11.6 9.44 6.37 9.67 6.58 10.8 11 5.28 9.74 10 12 8.69 8.11 9.3 6.54 6.63 2.99 8.31 4.98 9.48 7.79 9.09 11.4 7.6 12.7 6.29 6.47 2.61 7.22 7.32 12.1 2.9 10.3 7.76 4.75 9.87 7.67 7.31 7.23 7.73 7.63 11.4 10.6 8.73 4.14 11.2 12.3 7.73 9.53 11.6 9.04 8.56 6.99 0.57 10.7 0.55 0 6.11 10.1 6.24 9.88 7.85 3.85 1.26 6.74 5.45 6.56 5.93 8.02 5.51 5.62 9.24 8.59 10 8.55 7.98 1.26 10.7 7.77 9.39 7.91 2.9 3.98 1.52 9.98 8.08 6.26 2.99 9.38 11.9 7.37 5.08 7.94 9.87 10.9 3.65 5.77 9.18 11.4 9.56 9.66 10.2 10 9.76 8.48 7.97 7.28 11.2 9.82 8.4 7.99 2.71 7.32 3.65 7.19 9.3 8.36 7.62 7.99 8.22 1.73 8.99 4.98 6.08 8.21 6.16 6.47 5.87 9.9 2.61 7.03 7.65 5.25 7.53 7.38 8.11 8.15 8.98 9.12 8.69 1.92 9.88 10.1 9.14 8.05 9.32 11 10.4 7.22 10.5 1.92 9.32 8.5 6.56 10.8 2.49 7.32 8.7 8.98 9.7 0.55 8.88 7.78 10.5 11 9.53 6.28 2.9 8.25 7.83 9.54 9.31 8.52 7.05 6.13 8.79 7.15 9.22 8.94 8.32 9.49 8.39 6.78 3.9 8.82 9.4 8.46 8.92 9.46 8.08 8.61 12.2 10 11.5 7.63 7.64 9.46 8.17 9.75 11.9 10.7 11.2 1.51 7.32 8.58 5.52 9.19 8.6 7.72 2.23 8.19 8.63 7.42 8.52 6.5 8.04 6.32 1.26 7.49 6.04 9.77 3.8 0 9.01 2.08 11 8.76 8.24 7.67 12.2 5.86 7.65 7.94 7.98 5.68 8.91 9.22 8.36 9.09 8.91 6.6 8.36 4.94 8.88 6.9 7.68 2.49 0 5.65 6.67 8.43 1.51 6.13 10.6 9.03 11.3 9.85 9.48 7.73 8.32 5.77 8.97 1.73 9.72 4.42 8.02 6.94 7.08 10.8 9.43 10.4 4.02 8.49 2.9 8.68 6.16 3.65 8.97 1.73 6.32 5.7 1.73 8.86 9.79 7.9 8.18 5.33 10.5 7.33 10.1 2.08 12 4.02 5.63 10 7.87 3.07 5.99 2.61 2.81 9.05 3.7 7.31 7.45 0 10.9 3.48 0 3.07 7.84 0 6 5.23 6.07 8.44 7.66 3.36 7.85 8.25 7.72 10.7 2.81 8.14 8.95 7.83 8.47 8.77 9.03 7.55 6.87 8.45 10.4 7.41 4.57 9.13 7.04 7.36 11.2 9.95 4.78 10.8 10.2 9.23 6 6.42 7.58 4.96 7.77 9.45 9.57 9.64 6.64 4.57 1.51 9.16 9.06 7.85 7.26 3.85 7.22 9.36 6.41 0.95 4.32 3.42 2.9 5.8 7.58 6.52 7.84 10.4 3.8 9.2 4.32 6.88 10.9 11.3 0.95 6.25 8.46 3.62 9.86 0.95 1.73 9.5 3.9 11.3 4.59 7.38 7.34 7.91 9.28 4.85 7.58 8.45 5.91 5.59 11.1 2.23 6.32 10.7 7.83 8.39 8.21 3.98 4.7 8 6.84 9.22 9.19 1.92 9.11 1.26 12.4 5.08 0.55 8.54 11.6 9.17 8.44 7.46 4.89 7.72 9.81 10.3 8.32 8.87 9.36 9.96 7.36 8.96 7.69 5.82 7.95 10.1 8.76 9.2 4.82 1.92 1.73 8.68 3.6 8.2 3.65 8.32 0.98 6.52 3.07 0.95 3.7 9.92 13.8 1.26 6.66 7.11 7.72 5.96 0 10.1 6.3 4.14 4.1 8.51 9.08 9.4 6.54 9.46 9.16 5.98 9.6 9.41 10.2 11.3 3.85 9 9.78 9.54 11 3.36 7.99 6.25 8.51 4.1 6.68 10.2 6.31 5.83 10.8 5.49 7.35 8.78 9.16 9.83 9.92 9.72 8.51 4.52 5 10.4 10.2 7.8 9.15 10.3 9.79 10.4 6.47 9.59 8.89 8.57 1.51 12.2 9.27 8.03 8.94 11.4 7.9 8.27 8.13 9.79 5.18 11.1 9.09 5.62 6.32 4.54 8.3 9.3 10.9 1.92 9.01 5.51 7.19 9.94 10.2 8.11 12 10.1 4.67 10 9.15 4.02 6.26 10.6 9.59 5.58 6.96 9.91 8.92 3.36 9.08 12.9 4.51 7.23 5.71 5.55 8.55 10.1 5.35 2.99 9 6.77 5.82 9.19 7.66 8.49 9.56 3.9 11.9 5.45 2.81 11.8 4.42 1.73 7.39 7.35 10.1 3.05 11.5 11 10.1 1.73 11 7.58 10 10.9 9.33 11.5 7.86 12.9 8.84 11.2 9.69 10.5 4.67 9.72 2.23 4.91 9.36 6.3 3.9 11.6 5.46 10.5 0.55 3.48 5.74 7.64 4.18 6.17 7.22 6.73 8.83 2.71 4.7 4.84 6.55 8.01 10.9 6.93 9.48 9.37 7.68 6.99 5.93 10.6 5.14 11.9 12.7 9.74 12 11.6 12.9 7.31 9.92 8.27 5.37 9.01 5.48 9.9 11.6 12.4 9.91 11.2 1.26 12.3 9.53 10.3 11.4 9.8 9.75 2.83 3.8 3.2 0.96 11 8.68 8.73 7.45 8.96 1.26 11.9 14.1 6.62 2.71 2.9 5.52 8.08 7.7 9.76 8.02 10.9 11.2 15 3.65 11.2 3.94 0.55 1.73 11.1 12.4 9.78 7.38 5.12 13.8 11.6 8.84 8.19 1.73 6.4 4.73 2.99 11.8 1.26 8.72 9.45 9.79 12.6 11.3 6.47 7.14 9.35 7.73 9.51 6.59 9.83 10.1 9.74 8.06 6.47 9.03 8.36 9.52 11.1 9.31 12.6 1.26 8.75 5.02 8.28 8.91 8.99 7.75 9.1 0 8.32 0 5.87 9.85 10.1 9.73 11.7 9.76 9.7 8.3 10.1 10.4 9.9 2.49 2.23 7.1 10.2 12.2 8.66 3.79 9.07 8.36 8.77 9.65 3.55 10.3 9.55 9.04 9.98 10.8 8.97 5.18 3.07 11 0 9.81 10.5 0.55 10.7 9.13 8.67 9.04 6.31 8.72 3.22 4.82 3.7 9.47 11.1 10.8 9.42 9.65 8.24 9.39 4.48 8.72 1.53 10.8 4.98 9.29 10.1 2.9 10.2 10.1 12.7 10 6.41 9.58 11.2 8.44 9.4 1.05 9.74 8.25 0 9.84 8.39 7.03 9.98 5.28 8.2 3.85 8.09 8.8 4.06 10.8 12.2 8.17 9.6 14 7.66 9.7 8.05 12.9 8.24 0.95 8.55 8.64 8.81 8.17 14 6.44 9.73 11.9 13.1 10.4 11.7 11.8 6.45 13.2 9.92 6.72 9.66 6.85 5.93 9.82 0.55 3.94 0 11.6 12.8 9.23 2.61 8.05 0 10.8 10.8 12.2 9.5 6.04 12.9 9.28 9.58 6.94 11.1 9.26 7.44 8.12 12.5 5.3 8.95 7.81 10.6 7.38 4.73 1.26 0.55 10.3 0 0.95 0.55 9 1.73 8.5 2.9 3.22 9.72 10.6 1.51 2.99 2.49 5.3 0 0.55 7.02 3.54 9.92 14.3 10.4 8.06 8.09 2.23 3.94 1.92 7.65 7.3 0 7.98 8.87 7.65 7.85 7.69 6.32 2.61 8.46 6.61 8.08 0 7.69 12.6 11 8.28 9.82 0 3.85 0 3.7 0.95 0 8.07 9.39 8.53 8.26 6.24 9.12 8.34 1.26 7.66 0.55 2.61 0.55 0.55 8.7 5.93 1.92 10 6.62 9.54 8.1 9.65 0 6.92 10.4 10.8 9.65 7.66 0 4.32 8.21 10.5 9.07 0.55 8.22 8.94 8.28 7.97 8.18 5.2 0.55 0 10.4 0 8.95 12.2 8.93 1.26 3.94 8.81 8.42 2.08 9.44 9.49 0.55 0.95 4.06 11.3 6.97 7.77 8.89 6.88 3.54 8.26 10.1 7.42 6.14 1.92 0.95 9.09 1.26 6.55 10.4 9.9 10.1 6.59 9.42 10.5 2.37 2.71 7.24 10.4 8.58 9.03 2.61 4.02 2.99 6.76 1.92 2.25 9.09 5.28 6.73 5.06 7.51 7.84 8.16 10.2 9.64 9.51 4.06 0.95 10.3 3.48 8.93 0.55 9.79 0.95 8.42 0 1.73 0 0.95 7.34 11.5 7.56 7.24 8.65 10.2 8.1 8.37 8.07 2.71 11 10.5 7.28 7.26 5.2 2.81 0 7.77 3.85 7.46 10.7 6.41 8.76 2.9 9.99 10.5 7.78 8.49 6.71 0.55 8.29 2.99 2.71 11.6 11.2 10.2 12.4 10.1 6.4 9.46 10.4 9.56 2.23 8.47 5.7 8.7 7.31 6.28 6.81 11.1 7.24 0.95 8.54 9.7 8.76 7.83 8.02 15.4 3.54 4.1 0 2.08 3.98 7.25 9.68 10.3 4.85 9.12 5.9 6.97 9.05 9.29 1.26 9.97 3.94 2.61 8 7.58 4.35 6.97 10.7 8.18 8.23 8.06 9.77 7.5 8.27 8.4 8.48 9.25 8.44 7.52 5.41 6.58 5.12 9.43 7.63 2.49 8.08 8.6 10.6 4.65 9.94 5.9 10.7 11.7 5.82 11.2 9.89 4.67 9.41 6.97 7.83 4.65 5.3 9.32 7.6 9.24 9.35 10.4 4.06 1.51 6.4 8.63 10.2 10.4 7.14 7.33 5.81 5.08 1.26 8.5 2.37 8.54 5.95 6.03 4.22 8.98 5.41 5.18 6.09 0 9.01 12 10.7 7.9 7.5 3.07 8.26 9.73 8.16 9.46 9.63 11.4 0.95 11 7.01 5.25 4.59 8.36 9.35 9.51 0.55 9.53 8.4 6.96 9.2 9.71 3.9 7.74 7.56 8.54 7.47 8.63 9.95 8.32 11.1 8.47 8.74 9.2 5.43 5.93 7.49 4.18 7.25 12.5 10.5 3.07 8.45 12.2 8.41 8.98 7.91 9.19 4.25 7.93 8.75 6.47 12.4 8.8 8.99 8.44 9.87 8.43 8.57 9.45 8.01 3.85 5.95 8.25 9.39 7.32 6.84 8.27 0 9.63 9.16 8.04 10.4 7.84 7.74 8.55 9.13 7.65 8.52 8.15 10.3 10.1 8.41 2.08 8.81 6.28 6.73 7.06 0 9.91 8.43 10.3 8.92 9.98 5.82 9.43 8.39 9.26 1.92 6.53 11.1 9.82 8.98 10.7 7.77 9.73 1.26 9.88 0 7.82 7.51 9.6 7.51 4.75 7.68 5.48 8.85 9.03 8.16 10.3 9.18 3.29 9.86 6.1 6.18 10.2 7.32 7.29 5.77 7.26 7.59 9.78 2.81 8.41 8.33 0.95 5.56 6.9 2.13 10.1 9.7 10.2 5.37 2.71 4.7 10.9 7.54 8.52 7.92 11.2 5.38 11.6 2.23 10.7 6.94 9.72 6.81 8.36 6.28 6.91 10 8.11 5.33 10.8 7.31 6.78 9.8 5.89 9.26 9.83 10.7 10.2 5.32 7.17 0.95 9.15 9.53 9.4 0 6.86 6.03 5.67 13.7 8.47 9.2 5.55 3.85 0.95 8.89 8.35 9.48 3.29 11.6 8.99 10.9 0 4.39 6.06 9.9 11.2 6.53 5.08 8.93 11.3 2.99 3.7 10.7 0.55 8.49 7.16 10.1 10.7 11.4 4.02 9.99 0.55 9.92 7.74 0 5.45 8.36 11.5 0.55 4.11 6.27 6.94 0 4.75 0 9.93 5.49 0 4.32 7.96 8.59 2.99 6.26 0.95 9.72 10.9 8.12 6.16 12.5 6.52 10.4 8.95 5.58 0 12.6 10 7.67 7.46 8.73 8.44 9.93 3.07 6.45 7.76 6.2 2.49 4.06 6.78 8.07 16.1 6.21 8.68 6.59 2.9 9.8 9.39 7.25 7.5 5.87 6.3 6.39 8.26 8.52 7.4 4.54 5.37 7.4 11.3 9.46 8.7 6.51 12.3 3.65 7.39 2.61 6.63 7.21 9.26 8.72 6.58 7.58 0 2.61 9.81 2.08 5.25 3.9 9.09 8.87 8.01 9.23 6.62 4.73 8.86 7.72 7.47 2.37 0 6.72 5.16 11.3 8.79 8 9.73 8.71 6.89 10.3 10.2 9.86 8.76 0 5.02 10.1 6.54 7.75 9.89 8.82 8.98 6.84 8.72 4.78 9.75 8.45 8.01 6.84 9.85 9.79 8.5 10.6 3.36 8.94 3.75 8.3 5.32 10.1 11.1 11.2 6.2 7.27 7.54 9.71 4.48 8.94 11.4 8.96 1.51 7.58 8.75 8.92 8.45 8.26 8.64 8.08 7.25 8.93 4.18 6.4 7.97 0 8.61 9.3 7.77 7.75 9.63 9.09 13.4 4.02 7.13 7.72 9.39 8.09 9.99 9.46 11.1 0 7 11.5 6.08 8.27 2.49 6.02 4.25 8.65 6.65 10.4 5.35 2.71 10.1 7.56 2.61 5.08 13.4 8.46 8.6 8.71 1.43 2.71 10.2 9.88 9.4 5.35 9.69 4.98 5.06 7.69 1.26 5.97 6.68 8.22 10.1 7.36 8.15 9.99 9.88 6.89 5.52 10.9 6.7 9.22 8.08 8.71 7.86 9.49 10.1 8.28 4.57 0.55 7.81 3.7 5.65 8.77 9.98 11.9 9.84 0 8.99 1.26 9.87 9.41 6.37 8.23 3.22 0.55 7.88 0 9 6.37 13.2 8.99 6.83 2.09 7.09 2.49 1.73 10.5 5.45 9.66 8.51 8.48 8.93 7.09 8.17 9.41 8.88 9.36 2.61 10.1 1.51 4.89 12.5 8.91 10.6 11.3 6.92 10.8 10.8 10.2 5.65 6.9 7.71 0.95 7.19 6.91 2.61 13.5 9.57 9.21 11.3 6.72 9.2 12 1.26 7.92 4.29 10.4 12.2 8.79 5.86 5.23 13.7 9.45 8.4 7.65 10.9 7.26 10.1 8.04 9.96 9.66 11.2 4.14 4.68 10.6 5.1 1.26 1.73 10.1 4.62 3.36 4.59 8.93 1.96 3.36 13.3 8.66 7.29 6.25 0 8.55 8.29 10.5 11.4 8.76 4.54 12.2 11.8 9.69 9.17 9.3 13.2 11.6 9.69 10.5 9.5 9.27 8.57 6.17 6.99 10.8 7.83 10.6 8.58 3.42 8.76 10.6 9.12 8.99 5.76 10.6 7.61 9.07 10.9 8.06 8.97 8.93 8.5 11.4 4.48 2.08 10 3.94 8.13 9.45 9.19 13.8 8.39 5.53 5.38 6.09 9.18 3.85 10 8.37 9.57 5.49 11.4 7.81 9.43 3.63 8.76 1.73 8.96 6.24 5.25 9.89 9.42 10.2 11.8 7.35 6.91 13.2 10.6 10.7 7.29 13.2 12.5 9.47 12.7 10.7 11 12.1 12.6 10.7 10.4 1.26 10.7 11.5 7.81 10.3 9.37 8.12 10.4 8.32 10.2 11.9 11.9 5.49 7.87 9.9 8.61 9.76 9.44 5.91 14.9 1.27 8.71 9.61 11.1 7.12 7.33 1.51 0.55 12.6 7.25 7.31 9.29 9.82 7.48 11.1 11.5 6.77 9.06 11.8 9.89 8.77 9.35 9.51 11.8 11 9.75 9.02 11.4 3.8 10.5 7.2 8.81 4.29 8.41 7.61 12.8 5.58 5.1 6.28 0.55 6.32 12.5 12.3 13.9 9.47 11.5 12.1 8.98 12.1 8.77 7.95 9.53 9.75 9.45 11.6 8.98 6.82 6 5.04 12 9.2 0.95 2.23 4.73 7.86 5.67 7.6 4.1 11.8 9.9 8.55 9.06 1.26 6.03 9.29 10.3 10 10.6 8.43 5.18 7.06 1.92 1.73 11.1 8.79 6.78 11 11.4 0 9.17 6.73 1.26 8.9 0 11.9 3.48 13.7 11.5 11.3 5.46 7.36 7.53 11.2 8.73 7.01 10 10.6 1.26 5.8 8.77 10.5 0 7.12 8.99 10.5 7.99 5.33 11.7 8.92 8.74 10 1.26 0 10.2 0 8.68 10.6 8.97 7.04 10.3 8.08 7.56 11.7 9.48 10.3 9.97 9.88 5.02 5.27 10.2 12.4 12 11.1 9.96 10.3 9.38 9.39 10.7 11 11.3 9.05 9.32 8.96 11 10.6 10.6 12.4 9.97 10.2 10.4 10.5 1.73 10.1 9.26 10.8 7.18 11.7 10.4 3.65 8.4 11.2 7.45 1.26 6.88 9.03 5.18 10.8 9.71 8.96 10.1 10.8 10.1 3.16 1.73 2.44 8.69 11.2 9.94 9.26 9.84 7.65 3.48 10.4 12.8 8.69 10.1 12.3 9.12 10.1 1.26 2.49 4.45 10.8 3.65 2.37 12.2 8.63 10.4 1.26 2.08 9.87 8.51 7.51 9.03 11.3 10.8 7 4.73 3.7 4.54 0 6.1 9.22 9.29 6.1 6.88 10.4 7.25 7.32 6.77 11.7 8.47 7.56 4.22 3.45 0 2.06 7.53 7.39 3.9 8.65 9.77 5.49 9.61 6.28 11.1 11.4 5.67 0 9.06 9.22 10.4 2.23 6.89 8.78 8.4 7.75 8.75 6.73 1.26 7.15 9.92 11 11.1 5.66 5.79 5.68 9.2 3.15 9.26 9.14 0 10.4 9.36 8.46 0 10.4 7.84 8.78 6.12 6.44 6.08 7.7 12.3 9.78 8.49 8.2 7.35 7.27 11.4 8.91 7.52 6.38 10.2 7.07 0.55 1.26 2.99 8.87 10.7 9.68 0.55 3.65 5.97 3.85 0.55 6.96 11 8.77 6.87 7.64 9.93 6.9 0.55 5.98 5.71 6.07 6 1.51 4.87 5.96 5.04 8.15 8.37 9.24 8.29 9.82 7.04 8.27 9.42 9.66 7.41 11.7 7.9 8.7 5.43 7.93 11.4 9.89 9.5 12.2 9.7 7.91 8.48 6.92 9.59 1.26 9.58 9.24 9.11 9.03 3.22 7.26 8.64 12.1 9.78 3.85 9.39 8.46 10.3 8.54 10.9 9.46 3.07 8.31 9.9 4.35 8.01 0 2.9 7.44 4.06 8.5 10.6 7.77 8.24 7.21 6.3 7.02 7.21 10.7 3.65 7.29 3.98 4.14 9.02 2.08 9.8 6.44 10.8 8.93 0.59 6.37 0 2.9 3.7 9.25 6.25 7.78 12.4 1.26 7.85 9.82 8.07 1.92 8.92 10.3 8.23 11.7 7.82 5.95 9.79 7.56 9.67 6.83 9.08 10.3 9.94 8.85 8.15 4.06 8.54 9.81 9.18 4.89 10.8 4.29 6.8 8.92 8.75 8.51 10.2 10.7 10.1 9.88 9.99 5.88 10.7 2.23 5.6 9.47 6.93 9.64 3.85 5.32 9.52 9.12 10.1 9.4 3.07 9.34 7.72 9.6 12 6.34 4.13 9.06 7.21 0.55 0 2.81 7.86 6.47 3.15 2.71 10.6 12.5 8.49 9.5 10.6 2.9 9.06 10 9.12 11.2 9.31 9.08 5.02 9.27 10.5 11 9.14 5.6 6.85 0 9.89 8.34 10.1 10.8 0 5.28 8.73 7.25 9.74 9.08 11.3 8.83 3.22 9.12 8.8 9.59 9.49 2.61 9.52 6.55 4.82 7.33 11.4 5.86 9.9 4.14 2.37 9.35 11.4 3.8 10.1 2.71 6.02 8.08 9.42 4.7 7.33 6.52 11.8 6.17 8.1 8.11 9.65 9.22 4.89 10.3 9.2 7.52 10.4 3.7 10.4 7.73 8.41 0.95 7.88 7.07 8.74 6.45 1.73 12.9 7.8 10.3 15.1 7.24 8.36 12 8.39 5.27 7.29 8.12 4.73 5.58 10.1 5.08 10.3 12.3 7.39 5.84 7.28 2.49 11.4 6.28 8.22 9.99 8.04 10.4 8.15 0 10 5.96 8.88 8.94 11.5 4.62 0.55 6.09 8.07 9.37 8.22 8.57 12.3 10.7 6.11 7.36 9.74 2.9 5.92 7 11.1 1.92 8.62 2.99 7.81 9.81 2.61 1.73 6.2 7.01 10.2 6.01 8.67 4.14 8.83 10.9 10.1 9.24 8.32 7.46 8.2 12.6 10.5 5.33 7.31 6.37 9.05 7.94 8.87 6.58 10.9 6.56 12.7 8.89 8.82 4.25 10.4 9.08 11.6 9.53 11.4 4.94 8.86 11.9 5.04 7.04 0 8.1 7.05 7.42 7.71 4.48 1.51 3.48 4.06 0.55 1.26 0.95 0.55 8.17 10.4 1.51 8.75 11.1 5.62 10.4 9.25 3.85 6.35 6.76 7.38 11.9 8.44 8.61 4.91 5.74 10.3 9.14 8.55 10.1 8.7 0 7.38 9.37 5.28 2.37 13 6.78 2.08 9.84 9.64 6.21 9.45 8.03 2.61 9.87 6.95 4.78 5.1 9.12 11.2 2.82 6.66 8.88 7.6 11.2 9.31 11.7 7.57 10.6 10.6 9.08 3.54 9.66 9.04 10.1 10 9.88 3.6 10.2 9.55 10 7.4 8.96 11.8 10 11.9 9.69 9.25 6.24 10.7 13.8 7.18 5.23 10.5 8.27 3.29 7.37 7.19 9.47 12.4 10.5 3.85 9.24 10.4 6.28 7.25 7.71 4.29 10.5 10.8 4.59 1.51 8.32 8.5 7.28 0.55 6.18 1.92 1.92 5.59 9.33 8.58 7.13 3.9 1.73 5.53 9.95 7.98 1.51 7.86 9.85 12.8 8.24 10.1 6.05 2.99 8.2 10.5 8.09 10.8 8.63 12.6 10.5 8.59 9.92 0.95 8.26 9.44 8.79 10.3 9.23 3.98 9.43 3.98 9.59 7.1 6.9 10.4 9.16 9.58 10.2 6.32 9.6 11.3 9.71 1.26 11.6 9.32 10 5.89 0 12.4 12.9 0.95 8.28 8.87 10.1 6.72 10.5 3.6 5.88 0 3.6 7.99 3.75 7.18 9.83 11 5.95 0 12.5 5.79 9.4 8.18 4.67 7.37 7.83 4.14 3.61 1.52 8.61 8.63 8.68 12.2 2.61 10.5 9.6 8.89 7.42 12.3 10.3 0.55 3.6 11.3 3.8 9.03 0.27 10.2 0.55 7.62 1.51 10.3 8.68 10.5 2.9 7.87 8.19 9.8 3.8 6.89 2.61 9.24 8.63 6.38 8.31 10.4 5.21 7.53 6.01 6.47 6.68 11 4.65 8.95 6.66 7.15 9.47 9.82 6.26 9.72 10.7 0 8.1 8.76 6.44 9.96 7.73 9.6 7.91 9 7.88 9.92 7.25 5.86 4.7 8.81 4.25 12 9.81 2.49 12.1 7.49 8.33 7.32 9.6 9.63 11.5 10.2 10.5 9.15 9.56 4.98 4.8 5.97 4.87 8.48 3.6 9.14 4.7 9.1 7.73 8.29 7.11 10.7 13.3 11.7 9.98 12.4 5.2 5.33 8.76 7.73 9.14 10.3 10 8.72 8.61 3.8 9.78 8.61 5.83 8.73 8.52 1.51 10.7 8.99 10.7 6.81 9.52 9.68 10.1 3.48 9.06 3.94 7.13 4.67 3.6 7.88 5 6.19 6.61 8.12 7.38 11.7 9.74 6.66 9.76 6.86 0.95 8.92 12.3 10.9 5.23 9.37 4.75 10.2 7.92 9.65 9.4 9.58 0.55 1.26 11.4 11.2 4.42 8.1 6.95 11.6 7.47 9.84 11.2 11.5 8.01 9.96 11.5 10.9 10.1 8.64 11.8 7.35 8.47 4.59 7.79 10.4 8.76 11.9 7.06 9.13 8.73 0.55 11.8 7.84 12.1 9.94 10.7 10.9 9.39 8.07 9.91 12.5 10.6 9.24 10.6 8.54 8.84 10.8 10.2 10.8 7.39 9.46 9.04 9.98 10.9 9.7 8.89 12.4 9.29 7.86 9.11 8.99 9.1 11.1 9.13 6.58 9.03 12 10.8 3.6 7.83 11.5 8.29 2.37 15.1 10.6 12.6 9.13 9.52 8.2 6.77 12.4 11.2 11.3 12.2 10 6.3 10.1 8.41 8.04 12 4.39 3.6 5.16 9.57 2.61 9.72 11.8 4.25 15.5 12.6 9.56 10 9.31 10.6 9.63 12.2 11.5 10.9 9.05 10.5 9.73 8.76 4.94 8.44 9.8 10.7 11 9.14 9.41 8.57 9.57 7.65 8.7 10.4 14 13.4 7.66 8.61 10.4 7.09 9.98 5.86 11.4 13.3 10.2 2.37 10.5 9.72 9.97 9.14 10.2 9.51 9.33 10.7 11.4 7.74 10.5 11.8 8.26 11 10.6 4.1 9.8 12.3 6.99 11.8 9.88 9.53 9.48 11.1 8.39 9.98 11.2 6.95 5.68 4.98 9.15 10.1 8.81 12.4 8.04 1.51 7.96 2.23 10.6 5.62 8.65 10.3 9.31 5.41 10.2 3.07 8.57 6.47 15.9 1.51 2.23 9.48 9.61 9.03 9.03 9.5 5.77 9.61 9.45 9.08 10.6 7.35 9.17 11.3 3.9 8.69 9.7 5.18 12 7.13 11.7 7.7 9.5 8.26 11.4 10.2 13 6.21 6.83 4.78 6.87 6.41 10.1 9.55 10.4 5.98 13.2 6.47 9.1 9.87 12.4 7.69 8.81 12.3 8.9 8.97 9.96 11.3 12.5 10.8 11.3 9.71 10.3 9.88 13.1 9.38 12.1 10 11.2 11 9.2 10.6 11 7.6 10.9 11.3 10.7 11.5 10.4 4.14 10.5 11.1 5.79 10.2 12.9 11.8 11.5 9.84 10.6 0 11.1 9.4 9.08 11.3 7.38 10.6 9.05 10.8 10.5 11 9.82 10.2 6.33 9.9 8.27 9.88 8.87 9.18 4.91 10.2 11 8.73 4.44 10.3 3.6 6.83 9.16 9.28 9.4 5.56 8.12 10.4 7.78 7.77 8.71 9.44 3.85 8.05 7.97 8.94 7.89 8.06 7.76 2.23 10.3 8.84 9.25 7.59 10.7 10.6 3.98 5.76 7.2 11.5 10.8 9.84 10.9 11 11 9.33 9.84 10.8 11.2 11.8 10.3 9.95 8.24 10.6 9.72 11.1 6.88 10.2 6.6 11.2 9.74 11.5 6.92 8.35 9.3 9.97 7.76 11 12 2.61 9.61 6 7.14 10.7 11.1 10.4 8.77 6.47 9.75 11.7 9.45 11 8.72 7.91 4.85 9.44 7.7 5.33 10.2 11.6 11.9 4.14 12.1 9.77 9.29 8.72 10.8 9.86 12.8 8.26 10.9 8.49 9.98 11.2 4.39 12.6 7.02 8.02 8.19 10.6 12.8 1.73 7.18 5.28 10.9 8.03 7.44 13.7 10.2 6.34 10.6 5.45 5.67 2.81 7.26 11.6 10.8 9.12 12.8 9.73 3.9 4.59 12.1 9.62 11.2 9.3 2.78 11.1 8.1 10.5 9.6 10.2 12.8 9.24 8.05 6.23 8.12 11.4 8.4 12.4 14.2 10.4 13 0.55 12 8.39 9.99
-TCGA-CN-5370-01 4.41 9.1 8.62 8.67 6.45 8.92 0.92 3.13 3.75 1.48 0.5 7.38 5.2 3.75 6.35 8.09 11 10.4 7.81 9.7 8.01 13.7 9.94 0.38 10 7.02 4.63 9.72 2.98 6.79 3.3 5.82 3.39 1.13 2.91 2 0.67 5.49 1.31 3.02 3.27 1.88 7.6 0 6 2.52 0 2.86 10.5 5.23 1.88 4.47 7.45 9.82 6.02 1.13 4.36 0.38 5.94 8.86 6.05 2.86 6.85 2.48 2.45 1.13 6.5 5.33 9.58 2.37 4.98 5.57 5.6 3.08 2.6 1.88 3.09 3.27 3.61 0 4.45 1.48 1.47 8.35 3.81 0.67 6.08 0 3.02 3.43 8.73 3.84 7.89 5.89 2.33 2.28 1.13 1.99 3.29 5.9 0.38 4.19 3.27 5 1.48 1.99 5.5 6.41 6.91 5.05 0 1.31 9.15 6.54 6 2.67 3.26 4.6 0 1.88 1.13 3.35 0 2.45 1.62 5.23 1.13 1.48 2.97 13.4 1.24 2.28 3.17 6.87 2.97 1.62 3.82 0.38 2.3 7.47 10.7 10.1 0.67 2.8 3.62 11.9 0 10.2 0.88 4.39 3.31 0.38 7.02 10.2 10.4 3.22 1.62 0 10.6 3.69 6.9 5.21 2.19 1.48 10.2 4.68 6.1 4.28 8.64 0.92 9.35 9.45 1.99 3.22 2.45 3.27 2.6 4.05 8.27 4.43 4.7 7.14 2.52 2.37 3.21 1.62 2.6 1.48 7.06 3.96 7.83 10.1 3.74 5.78 4.21 7.49 2.86 8.82 8.63 8.67 6.95 8.03 8.9 10.2 8.63 8.57 6.53 9.95 10.7 11.4 8.56 8.92 11.2 11 9.45 9.84 8.61 11 8.83 11.2 8.42 8.36 11.2 10.6 9.33 7.85 2.09 11.2 8.47 13.1 10 2.91 8.93 10.4 8.57 9.1 9.83 8.94 9.91 6.59 11.3 8.63 12.1 11.7 11.6 12.4 12.9 13.3 8.69 11.4 10.5 2.52 6.69 9.76 9.15 7.79 11.8 12.3 2.52 12.5 3.96 10.6 10.4 10.3 10.7 11.1 10.4 9.96 11.7 10.9 8.39 8.68 7.07 9.13 11.9 7.48 5.99 13.5 11.2 11.9 12.3 12.3 11 7.99 9.51 10.2 10.3 8.72 12.3 9.13 5.97 4.28 10.8 7.37 9.21 10.6 9.51 12.9 8.56 7.75 10.8 11.6 9.85 9.9 10.7 12.2 1.62 10.1 9.09 7.78 12.3 9.89 7.13 9.9 4.23 10.1 10.3 4.01 9.22 4.81 9.54 10.3 11 9.6 9.85 10.1 11.1 9.62 9.5 8.33 10.3 8.77 11.7 8.56 9.78 11.6 7.81 9.27 7.69 9.26 11.2 10.9 8.91 10.2 8.44 12.8 11.7 10.3 11.6 10.1 11.1 7.72 10.2 5.01 3.27 9.12 7 11.1 2.52 4.68 7.22 11.7 11.1 10.7 7.07 5.9 8.59 9.11 6.2 8.74 6.13 11.9 9.69 11.3 10.3 8.47 8.68 11.3 0.92 8.55 8.71 9.05 8.18 9.15 10.1 11 5.73 9.71 8.69 9.8 9.11 9.23 12.5 8.83 8.51 11 10.4 5.16 7.33 7.38 8.12 10.9 10.2 8.99 11.1 10.3 10 11.6 10.4 8.73 7.01 6.89 11.8 8.25 8.39 10.9 9.87 9.82 9.14 9.52 9.45 9.77 8.14 11.5 7.01 10.7 10 10.3 2.81 9.93 10.6 13.8 11.6 9.38 5.83 6.61 7.5 8.98 8.23 9.95 11 11 9.56 2.28 12.4 7.34 6.71 8.96 0.92 9.71 10.9 6.56 8.01 11 9.26 8.14 8.39 10.1 7.79 6.46 7.89 9.84 11.6 2.09 12.1 7.64 2.67 6.05 7.67 8.77 7.93 4.84 9.53 2.19 9.55 9.62 8.15 9.69 10.5 6 14.6 11.1 3.02 9.48 11.9 5.81 13.2 8.65 8.3 3.22 5.25 8.91 9.5 6.88 12.8 8.88 6.95 9.57 7.51 15.2 11.2 14.2 9.51 9.72 8.24 10.4 7.77 9.06 8.47 10.1 0 11.3 13 14.7 8.6 10.7 12 10.5 10.2 11 7.61 10.6 9.96 10.4 10.4 10.4 9.43 10.3 9.6 7.95 10.2 10.4 11.2 8.59 9.7 13.1 7.95 7.47 10 9.84 10.2 9.79 4.88 10.6 8.64 0 9.55 9.98 10.2 8.78 9.83 10.2 13.4 10.2 9.17 10.3 9.5 7.34 9.93 8.43 8.74 10 9.61 11.4 9.04 2.19 9.22 8.39 10.2 10.3 9.74 10.5 9.61 8.47 9.39 11.7 10.4 10.7 11.4 0.67 13.4 11.4 10.7 10 11.6 12.6 11.8 10.3 8.84 11 10.2 10.3 2.86 9.17 8.08 8.96 8.26 9.92 12 11 11.9 9.6 11.4 9.93 2.6 6.75 10.2 11.4 7.54 12.3 8.52 10.1 9.39 12.3 10.4 12.5 11.6 9.5 3.27 11.3 9.77 8.46 8.62 9.33 9.58 7.1 10.6 10.1 10.9 12 9.77 9.58 10.7 10.8 11.2 5.2 11.4 9.83 10.3 9.23 8.87 8.12 10.8 8.4 4.98 8.35 12 10.4 9 10.7 11.2 2.6 10.5 6.38 10 5.82 9.64 10.2 12.6 12.1 11.8 11.9 8.46 10.4 8.03 8.6 10.8 8.83 0 7.95 7.95 10.8 11 8.47 10 13.3 1.76 6.94 10.9 7.69 10 10 6.35 9.41 11.7 10.5 10.1 9.52 9.06 11.6 7.04 10.1 10.2 9.95 11 9.7 12.5 9.43 7.42 8.16 7.86 8.93 12.4 11.7 12.4 13 7.78 11.1 14.6 10.5 1.13 8.97 8.51 8.05 3.13 6.12 10.8 7.4 9.97 10.7 10.3 5.29 9.44 11.6 12.9 9.22 6.03 11.9 11.1 9.46 5.1 0.92 7.65 10.6 5.45 7.66 7 4.71 11.3 8.12 11.1 8.35 3.99 4.19 9.62 9.25 9.68 2.19 6.05 9.28 8.21 1.31 3.39 11.8 10.1 6.05 6.4 7.41 4.9 9.35 10 9.54 2.97 8.26 14.2 8.25 9.95 11.4 10.9 11 12.5 9.73 12 8.31 8.48 5.04 11.2 5.4 1.13 1.31 2.55 8.78 6.49 10.3 4.21 7.44 9.99 2.37 2.8 12.1 14 7 5.74 10.7 10.7 5.11 10.3 11.2 12.3 10.2 10.1 11.5 11.9 10.3 10.7 8.04 8.89 11.5 8.43 6.59 7.94 8.34 9.77 7.78 12.2 9.83 9.24 7 7.29 7.8 11.2 7.86 6.54 6.08 12.8 10.6 0.38 12.2 8.31 9.45 12.4 9.8 7.1 4.78 9.7 0.67 4.37 6.23 9.31 7.32 6.96 8.79 8.49 2.97 7.78 0.38 10.5 9.92 6.73 12.1 10.9 9.18 8.46 10.7 11.2 3.22 9.02 2.45 7.79 9.59 11 11 9.08 10.3 7.48 6.85 6.59 6.15 11.3 1.13 4.54 8.84 10.7 2.09 5.01 12.4 6.3 10.2 6.57 8.36 1.62 11.1 9.35 10.3 10.5 6.64 9.12 9.95 8.97 11.5 9.69 10.4 8.95 10.3 9.65 1.35 5.83 6.12 12 10.5 11.9 0 10.6 9.5 11.4 9.8 11.6 7.99 8.43 11.2 11.2 9.42 7.69 11.2 3.69 11.4 4.47 11 10.7 8.08 1.13 9.23 11.5 11.7 11.2 8.57 10.1 11.9 9.67 11.2 10.2 10.3 9.92 11.3 12.8 11.4 12.4 11.5 11.3 9.86 12 11.5 7.52 7.47 11 12.7 13.2 12.6 11.5 9.38 9.27 8.38 9.93 10.8 9.22 9.51 11.7 4.34 12 10.4 11 11.3 7.84 3.75 12.5 7.9 9.37 4.68 10.6 9.37 5.41 10.2 9.44 8.06 9.94 1.76 11 9.2 2.91 12.4 8.65 10.3 9.28 9.04 6.43 8.43 6.83 10.9 8 5.06 8.2 7.03 5.9 8.14 12.3 6.77 12.3 8.29 8.2 10.4 8.98 8.25 8.82 9.84 0.67 8.73 11.4 10.3 11.2 10.6 10.6 9.4 11.3 10.6 10.8 10.3 6.44 5.17 9.25 9.72 8.17 9.82 8.28 7.18 12 9.67 9.7 10.2 5.8 3.69 9.45 11.1 12.9 9.39 8.36 10.1 10.3 5.84 3.47 8.05 3.55 7.96 8.72 12 9.12 12.4 8.29 8.54 9.51 8.58 6.06 10.2 8.12 9.29 9.58 8.07 11.4 10.6 9.99 10.9 9.1 7.93 9.81 2.73 8.53 9.67 8.73 1.76 9.57 2.37 7.26 7.25 10.2 1.13 10.4 8.88 9.98 11.3 9.02 9.98 2.37 7.21 7.63 6.4 0.67 8.16 11 9.65 5.79 6.53 8.78 9.17 8.32 7.07 6.81 10.5 10.6 9.53 4.16 9.07 10.2 8.72 14.1 10.1 9.02 9.08 6.47 11.5 8.5 5.91 11.7 11.2 7.96 8.63 5.97 11.2 7.61 9.95 7.26 6.58 8.63 12.5 10.3 0 7.45 9.5 8.87 8.72 9.18 10.7 11.9 8.9 7.62 7.45 7.3 3.47 8.96 9.63 7.91 11.6 10.7 9.19 10.3 9.16 2.54 8.54 9.3 11.1 1.88 12.7 10.2 7.63 9.1 9.17 8.94 11 6.8 9.85 9.66 9.89 8.49 6.72 10.1 10.7 6.82 10.1 9.35 10.3 8.87 8.27 7.22 3.08 7.21 4.01 8.08 8.49 9.51 0.67 1.62 9.51 10.9 7.17 9.75 10.4 10.5 8.26 11 3.65 11.1 5.68 8.17 7.36 8.53 7.93 9.79 9.6 8.67 3.03 0.38 5.42 8.41 11.6 10.5 8.97 7.58 4.71 10 8.69 10.8 7.65 7.74 1.31 7.22 2.28 10.9 8.93 8.36 6.88 9.17 8.7 7.75 9.57 10.4 7.94 9.78 7.94 10.7 9.54 9.17 10.3 11.6 6.85 9.42 7.13 10.9 9.61 9.26 12.4 11.5 7.11 10.6 7.79 4.9 10.4 4.85 0.92 8.49 8.84 1.48 9.61 10.6 9.98 9.65 4.14 9.33 9.42 11.2 10.7 10.5 6.88 8.05 7.06 12.1 10.2 0.92 11.7 10.4 11.1 8.32 11.8 10.3 12.1 11.8 6.62 8.63 9.19 3.69 10.7 10.4 10.4 10.5 9.61 10.2 6.4 10.2 0.38 11.9 7.3 6.82 3.58 7.67 6.11 7.89 6.82 1.34 7.63 7.53 9.5 5.17 7.4 6.92 11.2 3.51 10.8 4.14 9.89 7.7 1.99 4.52 10.5 6.88 2.09 5.05 7.02 9.19 7.6 2.09 5.71 4.26 7.98 0.92 5.81 6.79 4.01 7.87 6.26 9.65 8.26 8.06 1.62 8.32 6.52 6.88 10.3 8.61 9.09 8.48 8.47 1.13 11.3 2.19 5.21 8.83 4.54 7.5 6.98 5.43 6.98 2.37 8.54 4.14 1.13 6.16 9.88 0.67 8.95 7.98 4.74 6.63 9.3 8.93 7.42 7.46 10.8 9.95 9.1 9.42 10.4 5.96 6.86 1.13 10.3 5.2 11.5 12.6 7.28 7.89 7.28 10.2 8.97 8.13 3.9 8.74 9.46 9.31 8.89 4.65 9.15 9.51 7.87 4.84 1.13 6.34 5.3 9.82 8.06 11.8 7.25 8.16 5.99 7.98 7.33 10.1 10.4 6.25 1.31 5 9.93 11.1 12.2 4.63 8.8 8.3 10.2 9.87 6.91 9.91 7.71 4.91 9.33 0 2.37 5.64 8.15 6.01 8.47 9.18 6.61 8.22 7.3 11.8 4.19 9.43 8.83 1.62 11 9.73 1.99 6.23 7.71 2.52 7.46 7.65 8.05 10.8 9.32 9.02 9.07 7.27 9.77 8.22 10.8 7.29 10.7 10.4 2.91 8.45 8.35 8.22 8.69 9 7.77 8.26 9.36 0.67 9.86 5.02 4.16 0.67 8.7 6.15 9.6 4.01 6.23 3.55 4.75 1.72 9.68 1.31 1.31 8.99 10.4 7.63 8.47 8.04 8.69 3.65 4.95 7.4 9.25 9.23 1.13 8.45 8.78 3.47 2.67 9.13 10 11.5 7.85 7.4 10.9 7.62 2.8 7.73 2.86 4.3 3.43 8.57 9.38 2.52 10.4 6.34 7.57 8.68 13 9.96 10.8 0.92 6.94 5.8 9.3 10.3 6.24 8.59 12.1 3.72 7.2 9.86 7.52 7.55 9.47 6.48 9.67 0.38 6.6 0.38 8.49 4.79 8.57 8.61 6.89 1.33 8.63 10.9 5.87 0.67 5.78 10.1 5.92 9.01 7.85 7.44 9.1 6.88 9.2 5.5 6.17 8.61 11.1 12.8 9.03 0.67 2.52 7.5 6.4 0 10.4 9.9 8.6 9.24 9.03 5.99 6.05 9.58 11.1 12.4 10.7 9.38 7.84 5.18 8.57 5.49 9.11 2.91 3.55 8.35 8.22 8.35 11.3 2.45 7.19 11.4 7.31 0.67 7.49 12.4 12.1 9.57 9.81 5.48 7.36 13.4 3.39 9.37 9.34 2.45 3.84 8.4 9.99 9.32 7.43 10.4 2.52 1.88 4.87 4.5 3.17 6.25 2.67 6.22 5 9.51 6.69 7.03 6.48 9.35 8.03 4.16 11.7 9.04 9.33 1.48 8.86 8.05 5.99 9.16 9.62 8.22 9.35 3.51 7.67 7.28 9.49 3.51 7.12 5.39 7.43 8.11 5.52 7.57 8.76 6.93 4.76 6.73 8.85 3.69 5.56 8.14 5.05 7.21 8.8 9.62 1.76 7.66 1.34 10.7 1.48 10.2 7.43 6.14 3.55 2.91 9.33 6.58 4.12 1.13 9.94 10.3 6.39 5.21 7.6 8.9 7.72 9.93 8.63 7.07 9.29 7.86 7.73 10.8 10.8 5.17 4.56 8.94 8.97 8.33 5.25 1.76 5.94 10.1 9.13 3.24 1.99 0.92 5.06 0.38 7.37 10.6 6.87 10.4 5.69 8.13 8.81 2.86 9.71 10.8 7.69 8.61 7.86 8.13 4.23 12.6 7.2 7.66 3.04 9.25 2.52 8.1 9.06 0.38 5.78 5.38 6.73 10.2 2.71 8.72 7.94 0.38 7.5 4.93 5.74 3.27 6.69 5.14 5.79 8.14 6.38 9.91 1.48 0.38 8.74 3.27 1.31 3.58 4.14 7.39 5.74 8.55 8.33 9.53 6.06 10.6 10.2 6.1 9.91 7.75 8.48 7.67 6.54 7.61 10.4 6.43 6.67 7.96 12.1 8.55 4.71 11.9 5.97 3.96 4.19 7.9 8.39 11.7 9.23 8 8.45 3.84 3.02 2.19 1.99 6.39 0.67 10.7 2.19 7.41 1.48 4.16 6.74 7.99 8.12 8.75 2.19 1.31 10.5 8.71 5.18 7.18 8.89 6.24 7.81 11.1 2.28 5.41 0.38 9.38 18.3 5.28 8.56 5.38 17.5 9.59 1.31 0 2.28 9.49 4.19 11.1 4.48 8.2 9.04 17.9 3.02 9.68 14.4 3.62 6.48 0 9.13 10.5 9.33 8.52 2.67 9.17 5.48 8.1 7.38 14.3 4.73 6 5.57 0.38 4.58 7.27 6.34 5.5 10.1 10.2 4.71 10.1 2.86 3.13 11.6 8.83 15 7.48 8.27 14.3 2.86 5.68 15.2 8.26 15 9.09 6.13 15.6 8.13 13.5 8.58 8.07 9.71 2.6 8.13 8.22 9.27 10.9 9.96 9.03 8.65 5.1 5.3 8.64 2.45 7.51 6.05 4.73 5.47 0 9.66 4.7 11.2 11.7 6.35 3.47 4.04 6.16 14.2 6.55 5.16 7.84 5.87 4.7 10.3 8.34 0.67 8.43 6.53 6.32 8.24 11.8 5.23 8.3 12 2.19 1.62 14.3 0.92 8.66 7.48 6.06 5.42 7.54 1.99 2.52 3.51 0.38 7.42 0.38 9.4 7.61 3.72 10.7 12.8 8.34 5.04 8.04 11.7 1.48 8.79 10.9 8.52 12.6 9.35 6.39 0.38 10.8 10.6 0.67 8.67 6.43 0.67 7.77 9.23 6.63 8.81 6.4 8.64 0.38 1.88 5.17 10.3 8.12 7.77 2.45 7.43 1.97 8.4 8.67 5.76 11.7 8.18 7.92 9.83 7.83 9.91 3.65 7.89 3.02 11.8 7.14 2.86 6.71 5.87 3.47 10.6 6.59 8.73 11.1 9.5 9.95 9.36 2.8 3.02 7.81 5.47 10.9 6.32 6.46 8.62 10.3 9.75 9.65 7.4 7.84 7.94 8.52 10.7 3.75 8.04 10.3 9.63 1.62 6.94 10.2 7.07 6.97 10.4 4.13 10.1 9.35 6.48 10.8 10.7 12.2 9.6 2.22 5.29 9.2 11.3 7.6 8.16 2.09 8.94 0.92 9.64 6.46 2.19 7.44 4.34 8.24 7.63 0 10.8 3.47 1.62 9.98 3.13 1.31 11.6 0.92 9.02 8.34 9.29 8.44 5.9 6.16 9.31 5.14 5.99 6.9 10.9 8.85 7.11 8.9 7.32 8.23 7.58 4.84 5.41 9.09 2.52 7.66 10.6 5.78 1.99 10.7 1.76 4.41 5.81 3.55 8.56 11.4 7.47 0.38 5.58 8.65 6.59 5.32 6.19 10.1 9.09 7.32 5.7 11.5 9.44 2.52 11.5 10 9.12 4.75 8.88 8.14 2.8 6.62 4.63 8.04 7.46 8.81 9.83 7.14 5.68 2.09 10.4 9.04 9.56 10.8 10.7 8.08 6.77 4.15 9.48 8.64 8.83 5.31 9.36 8.78 6 4.19 7.11 13.2 5.41 1.62 9.56 10.6 5.34 0.38 6.61 7.03 1.76 0 8.71 4.56 4.63 3.17 8.64 6.46 5.77 5.64 7.44 8.83 5.05 8.78 10.3 7.51 9.36 9.21 1.13 10.5 9.14 6.08 10.9 9.35 4.31 6.53 7.85 6.51 7.46 3.55 11.9 4.07 10.2 0.92 10.3 4.73 8.52 11.6 3.55 0.92 12.2 9.16 4.43 1.48 2.45 3.35 3.22 2.19 1.99 7.3 9.62 0.38 9.2 11.1 8.71 11.7 8.62 10.7 12 7.49 3.39 11.4 12 8.72 10.9 8.11 12.2 3.02 3.51 8.2 9.29 4.97 7.66 7.99 5.12 7.98 10 10 7.95 0.92 8.02 8.84 8.84 8.38 10.4 9.04 5.72 8.84 4.45 5.49 5.85 7.38 1.48 7.07 10.9 7.24 8.71 8.62 9.48 5.7 6.43 8.43 2.09 10.7 11.3 10.9 3.13 6.24 3.62 9 4.19 8.42 9.17 11.4 8.1 8.66 13.2 1.99 7.73 5.24 11.2 2.19 7.16 10.5 6.87 2.6 6.47 6.39 10 1.76 7.2 6.53 9.03 9.75 10.4 7.42 3.27 7.58 4.15 0 6.14 9.7 2.45 8.99 3.58 3.58 11.3 8.82 6.96 8.2 0 2.86 8.83 13.5 5.9 1.88 9.55 2.09 3.31 0.38 6.43 1.31 11.5 6.82 5.94 8.53 2.09 11.4 6.53 6.71 5.23 2.52 1.76 9.49 2.86 10.4 8.01 4.93 0 7.84 0 4.04 5.07 0.67 0 8.21 4.94 0.67 6.17 0.38 7.55 7.83 8.05 3.08 9.07 8.69 5.99 9 2.45 8.91 11.1 4.41 12.6 5.11 8.13 9.44 8.08 10.7 7.17 9.22 7.43 1.76 8.58 2.91 6.44 11.4 11.7 3.13 13.6 9.22 4.12 7.79 1.99 3.51 0 3.02 6.15 7.58 4.3 9.22 8.87 6.48 1.76 7.65 9.27 6.45 7.07 6.45 3.84 4.87 0.38 9.11 6.39 9.02 5.06 5.18 6.38 3.93 4.6 6.44 5.72 8.34 9.14 3.08 5.65 5.6 6.31 7.22 4.45 1.62 5.72 7.22 4.39 7.9 4.97 5.64 5.28 5.16 3.96 3.81 7.3 7 2.86 8.63 4.58 8.1 3.43 8.4 9.15 6.84 5.55 9.19 6.35 0.38 11.1 1.99 0 7.93 9.56 10.3 7.14 1.31 10.4 3.59 5.17 9.27 5.3 12.2 9.7 0 9.61 6.94 4.04 0.92 5.04 0.67 3.08 7.62 7.86 9.17 7.99 7.94 1.48 6.08 7.29 4.66 2.37 13.1 11.2 5.74 8.92 4.65 5.81 13.6 9.18 10 0.67 7.86 13.3 1.31 3.72 11.7 1.48 1.13 0.92 0.67 4.06 1.31 7.88 0.92 0.92 6.89 9.17 6.34 6.93 11 0.73 1.76 4.85 8.2 8.67 4.58 6.03 1.99 10.3 9.2 8.84 2.09 3.13 3.69 8.08 7.28 11.9 3.72 9.39 6.6 5.71 6.25 7.3 6.98 15.2 7.12 14.6 7.08 2.09 1.88 5.59 10.9 7.51 7.47 6.71 4.21 1.13 8.85 6.63 9.36 11.1 5.4 3.02 9.04 0.67 4.43 0.67 12 5.05 5.53 6.03 6.68 12.4 0.38 6.26 0.67 9.98 4.16 9.33 7.46 0 7.52 8.06 8.17 12.5 6.91 0.38 5.46 1.13 4.6 1.62 12.4 4.3 10 8.71 7.69 11 3.51 12 8.88 10.9 10.3 0.38 2.52 6.43 6.63 1.76 10.3 8.01 6.04 5.95 12.4 3.27 7.66 9.17 11.4 5.95 5.78 7.24 4.63 8.27 8.85 10.6 8.08 7.48 8.69 1.76 8.91 3.31 6.18 1.31 4.95 8.63 7.38 2.67 2.52 8.37 7.54 4.7 8.3 11.2 8.66 8.48 8.63 11.2 7.39 7.87 10.2 8.37 6.7 11.4 10.9 8.17 4.28 11.8 7.11 0 0.92 3.43 11.5 7.1 6.43 6.36 9.63 0.67 11.4 7.45 10.7 8.72 8.29 4.6 8.62 6.53 7.82 8.38 2.8 3.13 6.81 10.5 3.58 4.14 8.92 6.43 2.28 6.27 7.72 0.38 10 11.7 1.89 2.09 7.14 0.38 9.1 4.61 6.77 8.86 7.28 5.34 6.06 2.86 8.37 2.97 5.73 9.63 1.99 0 11.8 2.28 2.28 9.27 7.67 0 9.29 7.78 7.43 9.45 9.27 9.02 6.57 2.45 1.76 9.34 6.05 10 7.08 7.34 2.6 2.28 11.1 3.31 3.84 2.34 5 10.4 2.19 9.81 0.38 0.38 2.28 4.26 3.81 6.93 7.62 4.19 2.67 8.82 0.92 6.43 1.31 8.67 4.45 10.4 4.14 4.04 3.51 3.58 5.87 8.74 4.43 9.94 3.27 6.4 7.8 1.13 8.53 1.99 4.41 0 3.22 0.38 4.14 4.41 3.13 4.26 10.4 8.06 8.88 5.31 8.95 4.48 0.92 7.57 5.69 10.1 9.86 3.31 0.92 11.6 11.6 2.09 11.4 1.62 5.16 0.67 0.67 10.7 7.31 6.45 4.6 9.6 10.3 0 9.87 11.5 7.22 10.5 6.87 9.61 6.96 6.62 5.28 9.42 9.11 10.5 11.2 5.11 9.12 6.1 8.76 9.91 5.05 1.76 9.12 9.8 3.39 9.01 4.65 1.48 11.3 2.37 5.11 10.5 2.19 2.45 10.7 2.8 4.23 6.66 3.55 6.63 11.6 10.8 2.37 11 8.19 1.76 11.8 7.17 10.5 7.11 4.41 3.9 5.42 1.88 2.52 4.23 4.16 6.79 10.5 7.89 9.52 5.78 3.31 5.4 6.6 4.67 7.47 6.06 9.23 4.34 0.67 12.1 6.8 6.92 6.67 4.32 4.34 6.67 5.58 5.11 2.8 7.6 6.83 3.55 5.81 1.76 9.36 1.76 5.7 2.8 8.66 9.32 10 13.8 7.06 10.6 9.33 9.82 0 8.66 8.78 1.99 8.98 7.94 9.61 9.02 12.5 11.3 1.48 10.2 2.19 12.5 6.65 7.91 3.99 1.88 0.38 10.5 2.09 9.91 0.97 1.99 3.62 0.38 10.5 3.55 8.32 14.3 12.6 7.1 3.13 3.39 3.27 8.51 7.35 11.6 8.54 13 13.3 1.31 7.06 11.4 4.14 5.78 9.5 3.13 10.4 9.78 8.43 11.1 12.2 3.96 9.11 8.78 9.49 5.67 8.09 6.48 11.7 9.68 5.38 9.04 7.7 6.13 7.52 6.21 9.4 8.99 2.67 9.83 6.81 10.3 3.81 13.9 1.48 6.36 8.41 4.16 9.5 2.6 6.61 6.19 7.62 8.05 7.57 2.52 8.7 9.24 1.88 4.75 8.34 6.65 1.31 4.7 10.6 8.55 3.99 9.44 4.37 1.31 1.62 9.59 9.04 8.33 3.69 5.43 5.11 3.99 2.6 2.73 4.87 8.34 3.99 2.28 8.16 8.01 4.3 10.2 7.15 1.13 9.48 5.07 8.03 4.56 6.16 5.21 11.8 5.34 6.74 8.35 2.52 10 2.19 10.6 12 1.48 10.8 1.88 5.1 12.6 5.98 10.4 1.48 9.83 8.39 9.14 9.52 13.6 7.96 8.22 7.38 9.03 11.7 12 12.6 7.93 6.75 1.13 10.9 11.3 9.91 10.9 10.1 2.6 8.87 7.41 11.4 6.59 5.47 6.17 7.02 8.97 9.32 5.45 8.89 7.41 9.98 9.09 7.26 2.37 1.48 4.07 4.07 4.97 9.07 4.3 7.59 9.82 13.4 9.98 4.81 10.2 11.4 11.4 11.4 6.93 8.85 8.32 10.5 9.87 3.39 7.6 7.76 9.56 8.19 1.13 9.14 9.89 8.82 10.4 10.8 11.2 0.92 10.8 3.51 0.38 9.65 12.9 6.7 5.18 12 13.3 9.81 11.7 7.43 10.2 15.4 9.44 6.67 8.3 11.4 6.58 8.26 8.61 13.4 8.33 10.9 7.6 9.71 11.9 11.8 4.9 6.41 6.61 9.46 10.1 9.98 11.2 10.5 9.92 8.08 9.6 7.75 9.48 11 6.95 8.58 8.77 7.85 9.54 12.1 0 12.4 10.8 11 11.8 10.1 5.76 11.5 9 9.06 9.48 8.81 9.83 11.8 8.18 8.23 11.7 15.7 1.13 10.1 10.1 9.64 7.67 8.08 7.72 10.7 12.9 13.2 14.9 9.65 11 8.73 8.05 8.46 11.8 11.1 6.13 5.68 6.25 11.8 8.68 10.1 9.29 12.1 14.1 7.53 7.89 9.43 12.1 9.12 5.04 6.22 8.31 5.09 8.15 6.51 4.82 8.79 3.22 6.28 10.4 8.07 5.53 9.42 10.6 8.38 11.3 3.58 7.61 11.2 9.2 1.76 10.5 8.54 6.61 3.48 11.9 4.14 7.46 11.7 3.52 2.09 8.59 2.67 9.49 3.08 4.41 5.57 7.74 9.57 14.3 5.89 8.04 8.29 5.05 6.95 8.47 11.7 7.03 12.4 9.33 9.55 11.6 14 14.5 12 13.2 0 9.87 4.7 10.9 6.69 4.39 10.4 0 2.73 5.31 7.39 0.67 11.1 5.53 7.12 2.67 8.16 6.41 6.46 5.07 1.88 9.37 4.5 6.97 7.91 10.3 9.24 0.67 8.5 13.4 8.43 10.8 0.38 2.37 9.66 7.87 4.34 9.57 11.3 5.71 3.96 4.68 1.48 10.1 9.94 5.4 9.97 7.36 0.8 6.75 9.55 7.38 1.62 10.4 0.67 3.65 1.62 9.96 7.83 9.54 6.23 9.33 9.92 8.48 5.58 9.65 5.8 6.9 4.61 6.51 6.7 7.93 6.76 8.59 9.49 4.75 9.96 9.88 6.25 9.64 10.6 6.46 8.2 5.3 9.68 6.91 10.2 4.79 12.1 5.33 6.17 8.47 7.49 9.5 5.97 8.93 9.62 3.35 11.1 3.51 9.76 0.38 9.93 7.77 7.55 7.32 8.84 10.8 0.38 0.92 9.13 9.33 7.37 1.62 13.1 7.95 0.92 2.91 10.1 4.23 8.77 8.7 8.55 6.53 11.7 8.13 4.58 5.28 7.7 7.01 3.02 12 6.59 2.67 15.7 5.23 11.1 4.47 0.92 0 8.97 8.72 4.94 8.56 11.4 9.38 9.45 10 7.09 6.71 14.6 8.02 2.52 3.65 3.65 9.65 8.36 5.15 7.86 10.2 9.43 9.38 10.9 6.66 12.7 9.96 9.97 7.61 6.3 10.1 10.1 10.8 6.19 6.47 11.5 12.8 10.1 8.1 9.06 8.11 5.51 9.84 0 11 10.1 8.46 9.93 11.4 8.87 10.3 7.54 6.8 9.33 8.58 8.26 7.52 9.62 0 5.17 9.49 11.8 9.02 10.8 8.46 4.32 9.55 11.3 1.88 2.28 10.4 9.41 8.87 9.91 11.7 5.07 8.45 10.2 8.35 10.1 9.08 10.6 8.76 10.7 11.1 7.42 11.1 10.8 7.16 6.38 9.74 2.52 10.1 2.28 11.9 10.1 9.69 10.3 8.18 11.6 12.6 7.41 1.31 8.75 8.84 9.31 1.13 10.2 10.3 8.03 8.38 9.13 11.6 2.37 11.9 11.8 11.8 3.51 8.12 10.5 4.07 6.73 10.9 7.85 8.54 8.98 0 11.3 8.6 10.1 10.2 12.4 7.73 2.45 8.1 4.23 8.34 6.66 11.9 7.26 8.81 0 11.9 8.44 12 8.83 8.26 8.49 8.89 6.22 11.3 10.6 11.3 8.84 9.7 10.5 6.07 7.13 11 9.6 11.9 11.4 4.41 10.2 8.22 3.55 5.63 12.4 8.56 12.6 4.47 3.72 8.13 13.4 6.69 9.55 2.67 10.6 11.9 3.62 6.77 8.46 7.34 10.5 6.11 5.9 6.79 6.99 9.89 8.24 12.5 5.73 9.21 8.61 2.19 11.1 11.2 8.78 9.7 13 3.27 9.85 4.34 8.28 7.58 6.71 8.52 3.69 5.5 7.47 2.52 4.43 11.6 0 9.11 6.77 9.89 2.73 3.69 4.58 3.02 8.72 6.82 3.08 4.85 10.3 6.31 1.13 2.52 7.96 7.82 4.93 3.78 7.04 7.7 4.56 12 5.95 8.15 7.81 8.98 9.53 10.2 1.31 7.45 6.74 8.99 5.38 11.6 8.3 6.65 8.36 9.57 8.16 9.43 6.14 11.9 5.82 9.26 8.14 7.54 6.89 7.74 9.99 12.6 3.75 1.88 1.88 2.37 2.19 7.73 3.72 4.17 8.66 9.77 10.9 0.67 8.01 9.74 8.07 8.06 6.87 7.73 3.87 9.84 3.43 5.45 11.2 8.92 2.52 9.76 8.39 7.14 8.76 0.92 9.18 1.31 8.26 7.72 7.57 3.75 9.71 9.11 10.8 8.95 9.91 5.95 11.9 9.62 8.53 8.81 5.43 6.15 8.63 9.73 7.71 8.61 5.77 3.93 8.36 7.85 3.12 5.17 10.5 9.29 5.92 0.92 2.97 9.68 0 2.97 10.5 0.92 3.08 4.5 3.13 3.31 4.61 7.54 2.45 5.24 10.9 8.68 9.36 7.46 8.9 9.02 9.71 7.94 11.2 7.82 8.4 8.61 7.03 3.81 3.17 7.71 2.67 10.5 4.7 6.56 4.43 15 9.82 10.6 0.67 9.81 7.19 8.29 10 2.91 11.6 11 10.3 11 11 9.27 8.36 12.3 9.25 9.67 5.55 11.4 5.73 8.13 9.48 10.1 6.23 11.3 6.05 12.4 9.3 12.2 9.22 8.89 10.8 11.9 10.4 8.18 7.47 9.26 5.64 10.4 9.93 10.5 11.2 8.86 2.76 2.67 8.57 10 8.99 10.3 7.25 9.45 7.5 8.94 2.37 10.9 8.8 7.48 9.32 9.98 10.8 8.85 9.87 1.48 9.43 7.46 10.1 11.5 2.91 12.4 8.6 7.27 7.29 8.84 10.9 9.9 9.6 12.2 9.55 5.72 10.1 13.2 8.57 8.9 10.4 8.29 8.85 11.5 9.63 6.11 9.23 10.6 1.62 9.11 8.95 8.14 2.67 8.88 5.97 8.81 9.4 11.7 10.2 10.1 10.6 9.63 8.58 9.48 11.3 5.69 7.26 10.7 1.31 11.9 12 10.2 8.02 8.4 8.22 10.4 7.12 10.5 9.61 11.1 11.3 7.35 9.6 9.07 11.6 10.8 10.7 8.95 8.17 12.7 10 9.75 0 9.21 9.19 9.22 6.99 2.91 11.3 8.84 2.28 11.4 5.05 2.09 11 7.9 8.4 2.28 11.1 11.6 0.67 2.8 2.19 11.1 12.5 10.8 7.89 7.08 7.2 1.99 10.2 11.3 9.48 10.3 9.88 10.3 5.56 9.39 1.48 10.2 10.5 11.8 9.9 7.12 8.7 12.2 1.99 12.8 12.8 9.89 9.35 2.73 3.47 11.1 9.41 9.39 8.12 10.4 9.08 8.67 8.18 9.9 9.61 10.7 10.1 9.62 11.3 7.75 7.54 9.96 9.99 11.5 10.7 9.39 10.8 10.5 10.5 7.38 7.87 4.19 10.5 11.7 10.2 10.6 11.5 11.1 6.83 10.2 10.7 11.2 5.44 8.96 11.2 10.4 11.5 9.59 10.2 8.92 10.1 11 11 7.53 8.3 9.94 10.6 7.72 11.1 9.03 9.29 9.9 11.1 8.89 9.17 7.15 9.3 11 9.74 4.49 10.3 3.9 10.4 6.62 9.04 10.5 9.11 8.62 7.91 8.35 7.1 11.3 6.54 10.3 8.42 9.69 9.89 10.2 4.85 11.6 9.08 9.85 10.5 8.03 9.71 10.6 9.89 10.1 7.46 10.2 12.5 10.7 11.5 8.88 9.76 9.76 1.48 6.82 6.39 1.76 10.2 9.12 10.8 9.84 9.09 10.2 9.7 15.6 10.7 9.77 8.73 9.5 11.1 11.1 12.2 11.6 10.3 9.83 13.3 10.4 8.55 9.1 10.4 10.3 8.9 10.8 8.99 6.1 10 12.2 10.2 9.65 10.6 10.8 10.9 10.9 11.5 12.2 11.6 12.1 8.61 13.2 8.19 10.5 12.2 10.8 11.5 10.1 10.8 8.23 10.4 11.8 1.62 11.3 8.64 2.6 11 9.21 9.79 9.96 12.5 11.6 12.7 10 0.67 10.7 10.2 3.87 10.2 8.6 10.8 11.2 9.48 7.63 6.89 7.03 9.39 10.8 7.76 8.93 9.61 9.01 7.76 4.37 8.42 8.37 9.34 9.97 7.32 9.73 11.5 6.34 9.22 8.82 10.3 10.6 5.78 6.88 9.98 9.54 8.87 10.2 10.8 9.12 8.58 7.9 9.83 7.82 10.9 11.4 9.94 9.2 9.96 8.88 8.9 11.2 10.3 9.81 8.69 9.14 12.1 11 6.61 2.28 9.63 4.37 5.14 9.86 8.9 8.33 5.29 10.3 10.2 10.2 10.4 11.7 4.76 10.7 10 5 8.68 9.81 2.8 9.66 10.7 8.4 9.78 11.1 9.4 9.6 11.3 7.6 8.86 2.19 10.8 9.82 10.3 9.02 7.36 10.6 11.1 12.4 9.02 10.4 8.57 10.6 9.61 9.55 8.99 9.52 10.2 10.6 3.51 9.19 12 9.87 10.7 11.1 7.82 17.2 11.3 10.8 12.3 10.7 8.3 9.19 8.69 11.1 5.83 9.65 9.2 8.52 10.1 11.8 6.03 12.8 9.12 11.6 10 9.67 7.32 9.8 8.38 10.5 10.2 11.7 9.06 9.71 10.1 11.7 10.4 9.79 11.4 10.7 8.73 11.8 11.1 9.5 10.1 9.41 8.45 11 10.9 8.24 8.69 9.09 10.9 12.4 6.9 3.75 8.16 8.7 8.55 11.1 6.65 1.76 2.8 7.27 0.92 9.28 12.4 7 10.8 9.98 7.35 11.7 11.8 0 9.13 7.83 10.6 11.8 9.7 8.3 11.5 12.3 12.7 11.8 8.51 7.24 5.46 7.04 7.27 7.38 11.3 7.28 8.19 6.23 10.7 10.9 12.8 8.94 9.46 7.91 10.8 10.6 9.92 2.86 10.1 10.4 7.78 9 3.43 7.87 7.21 2.37 5.6 12.6 9.63 8.75 10.6 7.59 10.7 8.82 8.99 8.14 10.9 9.55 11.4 10.1 11.2 10.4 10.2 11.1 10.3 9.81 4.95 3.22 12.9 9.04 10 13.3 9.65 10.2 9.68 8.02 14.4 10.2 8.54 2.8 8.48 10.6 7.89 1.88 12.1 9.51 6.87 10.8 2.52 9.17 0 4.98 8.11 10.3 12.5 10.3 6.33 6.44 6.41 9.05 8.45 8.58 11 9.01 10.1 10.9 2.8 0.92 9.5 8.75 8.25 10.3 2.09 8.98 8.03 6.55 10.9 9.48 8.34 2.45 11.8 13 9.17 8.81 11.6 11.3 7.43 9.37 10.4 7.8 9.16 9.55 9.62 8.77 8.07 7.38 12.5 6.2 10.6 11.1 9.57 11.3 9.88 6.46 10 10 10 9.85 3.93 1.13 2.86 1.88 11.5 7.24 11.1 10.7 3.84 9.51 6.59 8.83 7.08 10.7 11.8 12.4 9.81 9.08 8.5 13.3 12.5 8.98 9 9.62 8.34 11.3 10.6 10.2 8.33 10.9 10.3 7.95 7.9 6.05 10.2 8.47 10.8 11.2 5.6 8.14 9.47 10.9 9.27 5.02 9.22 8.86 1.62 8.96 9.94 1.13 11.7 9.1 7.21 11.1 9.94 11.7 10.6 1.76 5.89 7.6 9.13 8.61 9.24 10.8 9.72 10.4 7.51 6.17 9.56 10.7 5.97 9.16 11.4 9.96 8.78 6.78 5.74 1.93 7.56 4.91 7.81 3.81 9.75 3.13 2.19 2.8 5.65 8.49 5.68 10.2 7.47 8.88 3.47 3.69 9.62 11.3 9.09 6.84 8.56 6.89 6.03 14.2 9.58 11.3 7.2 15.9 9.5 10.4 12.4 7.59 7.42 7.05 8.12 0 3.87 10.5 2.91 5.29 7.38 6.64 4.71 8.79 0 1.13 7.52 10.6 9.68 3.39 3.08 8.65 10 11.1 9.74 7.93 10.5 7.88 9.35 8.7 6.7 4.34 14.5 8.52 2.09 10.6 7.07 5.84 10.3 9.05 8.88 2.86 11.4 11.3 7.8 7.81 5.45 4.5 5.16 9.11 1.99 8.39 11.6 2.67 1.13 8.4 1.13 0.92 7.77 9.89 7.62 5.96 2.8 3.55 7.84 8.08 5.97 10.5 9.83 9.16 6.73 4.3 12.2 0.38 3.08 11.3 3.96 8.28 6.77 9.47 6.94 2.52 5.36 5.8 4.58 1.31 3.72 9.34 8.8 2.45 6.83 4.61 8.07 5.93 9.02 4.04 7.51 5.31 3.62 10.7 0.92 7.14 7.2 9.06 10.4 5.51 7.17 5.84 6.86 8.52 8.31 9.66 5.15 3.35 1.99 4.73 7.53 7.79 3.51 8.64 3.13 2.55 2.8 8.39 9.58 4.61 7.53 5.22 7.93 1.48 8.12 6.85 0 8.19 2.91 1.31 2.52 2.09 6.35 0 8.36 4.34 0.92 8.5 4.76 1.88 5.15 3.22 5.82 10.1 6.15 8.14 2.86 2.67 6.66 0.38 8.29 4.52 2.52 1.13 1.62 10.2 9.77 2.28 5.68 8.44 7.09 9.56 8.57 8.2 1.31 7.59 11 9.31 8.14 10.2 4.68 1.31 7.13 3.35 6.01 11.2 10.2 1.48 9.08 8.84 10.1 7.34 10.8 11.3 8.48 5.26 7.25 1.76 9.66 6.18 7.76 5.4 9.22 0 9.16 10.1 10.1 5.88 8.8 9.09 10.5 8.71 10.8 0.7 11.3 10.2 5.97 9.67 10.7 7.17 0.92 11.6 8.73 4.48 11 3.65 10.2 8.4 8.99 8 8.86 10.2 10.8 8.07 9.36 8.3 8 3.69 8.53 9.88 11.5 5.09 11.1 2.45 6.39 3.87 7.31 10.6 11.4 10 12 8.77 8.6 0.92 13.6 10.7 9.68 7.64 10.7 7.93 7.38 11.4 9.3 3.08 6.03 7.78 9.55 10.4 8.63 0.67 12.1 7.68 8.33 10.4 11.7 9.15 9.06 7.17 10.4 10.3 7.35 11.5 8.98 8.77 9.45 8.9 8.75 2.37 9.7 10.7 11.8 0.38 8.93 10.4 9.82 3.55 4.04 8.29 9.94 9.53 7.4 1.76 10.6 0.67 10.1 0.38 0.38 2.86 6.23 10.7 9.09 12.9 8.88 8.81 9.27 9.6 12.3 10.5 9.87 10.7 9.61 6.16 11.5 10.5 9.76 8.66 7.2 9.86 5.2 9.51 10.1 10.3 4.14 11.1 10.9 9.18 16.4 9.16 8.83 6.8 6.75 10.8 9.59 9.51 8.8 10 6 9.09 9.05 11.9 7.94 9.03 8.07 10.6 9.83 10.6 7.93 7.27 10.4 11.1 9.88 11.2 9.56 8.36 10 12.6 10.2 9.41 5.51 8.65 10 10.4 10.4 12.1 9 8.63 6.58 10.3 4.94 7.2 10.3 9.69 5.57 2.73 6.4 9.26 9.12 10.9 1.48 8.34 8.49 7.96 9.26 4.21 9.95 8.98 7.51 7.99 2.28 8.28 7.18 10.4 10.3 10.3 11.5 10.2 10.2 7.85 7.79 11.6 11.5 9.33 11.2 3.96 4.81 7.24 8.99 9.8 9.57 10.5 8.99 8.6 2.67 10.4 8.57 12.2 10.7 3.87 9.63 10.8 10.6 10.2 10.1 9.34 9.98 9.15 9.24 10.6 11.2 13.4 10.9 3.31 6.77 8.49 7.88 9.91 4.12 10.1 2.73 8.47 7.61 6.57 8.73 11.6 11.9 8.3 7.79 8.85 4.76 10.6 11.4 9.85 8.61 11.8 7.43 7.82 11.1 9.57 10.6 7.01 11.2 1.76 9.06 3.31 7.77 11.4 0.67 8.3 2.97 10.4 10.2 10.3 4.61 9.32 1.48 6.66 4.5 10.3 8.68 11 8.14 6.63 6.94 6.41 7.57 1.48 5.82 5.97 6.18 10 8.25 7.46 2.19 10.2 8.59 3.31 8.49 9.28 8.47 7.38 9.6 8.3 6.76 8.84 8.52 8.11 10.5 9.81 3.58 7.55 10.3 9.93 5.46 10.5 0 9.51 7.16 8.41 7.39 10.3 9.82 13.2 0.67 11.4 9.87 10.7 10 7.66 0.38 9.12 5.4 6.69 9.81 9.15 8.61 9.78 10.1 9.32 4.19 10.9 9.57 9.13 9.16 9.73 8.64 1.62 8.87 12.7 6.4 8.08 9.74 8.99 9.5 7.97 8.59 8.59 10.2 9.78 10.9 2.45 3.81 1.31 10.8 4.01 6.36 6.27 10.5 7.14 9.8 11.4 11.1 8.24 0.67 9.67 1.48 7.64 4.19 11.2 12.7 8.46 3.22 8.38 3.2 6.51 8.96 8.85 10.6 2.19 6.87 7.72 1.13 8.15 6.85 11.2 7.59 8.12 5.46 9.31 8.61 3.35 0.38 9.82 6.49 2.19 1.31 7.67 0.38 13.5 7.39 10.3 8.6 7.04 0.38 6.64 10.4 8.84 10.8 1.31 5.38 13.9 9.68 3.43 8.22 9.75 14.8 9.08 11.3 8.54 6.83 8.33 10.6 6.41 7.5 9.84 0.92 8.42 7.61 6.28 9.99 11 7.43 11.2 8.57 8.56 11.6 5.31 8 0 6.71 8.65 7.25 9.69 11 12.5 14.2 10.3 8.21 9.5 9.73 11.8 10.8 9.19 9.98 11.2 9.43 13.5 6.44 7.6 7.28 11.8 2.91 10.2 9.93 8.93 5.83 4.28 10.2 9.47 0.67 0.92 10.3 6.93 10.3 11.4 9.06 9.67 6.37 8.69 6.59 6.83 6.93 11.1 6.35 4.91 11.8 1.76 9.68 10.4 4.9 7.9 11.1 3.51 5.69 9.02 8.94 7.54 1.52 6.96 7.31 4.39 5.56 8.96 9.98 1.62 9.22 0.92 8.95 8.98 3.47 10.7 8.92 11.8 7.35 7.05 5.99 10.7 7.57 0.92 6.93 1.99 5.8 2.52 9.43 10.9 4.88 8.33 11.5 0.92 3.78 7.93 9.8 7.86 8.95 5.33 6.24 7.61 11.6 10.4 8.88 10.1 8.83 8.25 10.3 11.3 11.5 8.91 8.7 5.16 8.94 8.98 1.31 1.13 9.15 4.21 6.45 10.4 8.41 8.94 6.23 5.57 9.44 9.92 6.55 10.3 8.81 9.86 5.69 7.63 5.2 9.21 9.71 7.22 9.22 11.4 4.66 9.77 9.91 11.1 10.1 5.62 11.1 10.6 8.46 11.8 12.4 9.78 9.24 9.94 8.51 6.05 6.24 8.69 9.69 9.44 7.27 4.63 8.55 7.99 9.58 6.02 10 6.36 11.2 10.8 8.96 4.12 10.9 8.4 8.51 11.2 4.9 10.9 8.82 4.3 3.02 9.49 11 9.5 4.39 12.9 3.02 12.8 8.16 10.7 7.61 8.67 11.3 10.4 10.5 12.9 12.1 5.35 6.44 10.4 13.8 0 4.04 13.1 12.3 1.88 0.92 5.87 10.9 5.02 0.38 9.06 8.58 5.54 10.3 1.62 3.84 12.2 2.28 3.05 8.9 11.2 11 11.4 11.3 10.1 11.3 9.54 4.12 15.5 2.12 1.99 11.6 5.99 10.9 12.9 3.62 7.84 2.73 5.72 9.59 8.47 7.79 1.13 2.73 4.37 5.68 8.4 0.92 7.6 4.39 2.52 6.29 3.13 6.58 9.97 4.52 4.6 5.96 2.37 2.86 4.81 2.8 9.77 13.6 6.01 12.3 11.1 3.17 2.8 7.38 9.19 5.01 9.13 6.62 7.2 8.07 8.04 5.07 6.18 8.45 1.76 8.33 6.91 6.59 8.21 9.34 3.93 7.94 7.14 11 0 7.68 6.58 3.75 3.02 2.97 2.09 6.41 1.99 9.87 2.28 8.88 6.08 8.61 7.43 9.53 3.92 1.13 1.55 0 9.03 2.91 4.66 1.62 8.42 0.38 4.32 0 2.28 9.79 11.2 7.84 5.89 0.88 4.58 3.27 4.68 1.31 8.78 0 3.13 2.25 9.75 6.16 6.19 3.69 2.1 8.11 6.74 9.11 5.43 5.42 4.07 3.13 3.75 7.61 6.33 0.43 1.48 5.88 8.42 10 7.02 0.67 6.94 7.1 0.38 5.41 7.37 5.01 7.59 5.38 8.32 1.88 9.94 4.81 2.67 0 1.13 6.22 7.99 0 3.81 1.76 8.8 8.68 5.93 7.87 13.3 6.93 6.82 4.16 6.79 1.31 2.52 5.92 3.72 9.71 4.6 0 10.3 1.76 8.45 2.09 8.41 1.88 4.52 5.06 7.92 7.64 7.48 5.5 6.91 4.45 7.71 5.79 3.72 4.66 11.4 2.19 5.78 6.4 3.62 5.4 1.48 8.26 4.56 1.13 6.03 0.92 2.37 4.39 6.63 3.35 8.91 4.43 6.69 2.52 5.66 0.38 6.98 0.67 1.88 4.01 8.87 7.49 8.17 3.72 3.56 3.02 4.04 3.53 8.98 2.86 3.47 2.28 4.12 0 3.9 0.38 0.92 7.08 1.76 6.42 0.67 1.48 5.5 5.46 0.38 5.69 4.04 10.8 10.2 1.48 0.67 4.93 5.05 0.38 7.69 9.88 7.46 10.3 8.81 1.31 9.9 0.38 4.54 6.96 4.95 8 5.79 9.32 8.67 0.92 5.86 8.15 8.98 5.43 5.82 7.05 0.92 8.57 2.67 6.71 8.73 8.64 5.26 9.25 5.67 6.33 1.31 2.86 7.82 0.38 6.02 4.16 3.78 3.67 7.95 7.46 10.4 3.17 7.11 0.38 11.6 1.62 0 6.37 4.48 7.51 7.25 9.68 5.76 5.14 9.29 3.08 8.92 8.68 6.67 3.27 10.7 2.73 4.36 6.05 10.1 6.22 3.9 7.32 1.31 1.64 8.48 0 3.17 9.06 5.7 4.98 4.52 7.52 1.36 2.86 5.11 2.19 2.37 8.57 8.48 1.13 12.4 4.5 8.23 5.75 0.38 4.82 7.79 6.7 7.29 8.6 10.1 2.6 3.69 7.04 2.97 1.76 0.92 7.97 8.04 9.15 4.28 8.3 7.31 9.13 8.29 2.73 4.73 3.41 7.29 5.92 6.06 5.83 7.78 8.15 8.7 1.62 7.54 9.84 12.1 10.6 10.1 4.68 12.2 9.45 10.1 10.7 8.84 8.03 11.6 9.37 11.5 0 4.79 10.1 8.96 9.05 9.08 8.77 9.08 11.2 14.2 8.31 10.3 10.9 2.28 7.37 1.88 10.7 1.13 8.81 7.14 10.3 10.1 9.36 10.1 9.41 8.24 7.11 6.9 8.49 9.2 8.65 10.7 11.6 9.23 2.19 7.18 9.24 7.28 11 9.43 3.69 11.1 10.6 1.76 3.39 10.9 2.19 10.8 2.19 10.6 4.43 8 10.2 6.96 10.6 7.23 9.75 9.75 12.2 6.19 8.71 10.7 9.87 7.96 9.78 11.3 8.53 9.12 9.36 8.06 9.56 9.57 8.12 10.2 8.11 11 7.96 3.62 5.84 8.74 8.84 9.09 9.72 8.68 9.62 8.9 9.51 11 10.3 9.75 6.73 9.27 1.62 8.64 9.96 9.9 0.92 9.61 9.89 9.07 9.69 2.6 4.09 9.84 0 11.5 3.02 9.42 10.1 8.96 6.51 1.13 10.7 12.9 10.2 7.84 13.4 1.48 11.1 13.1 10.3 10.5 13.2 12 9.11 10 7.1 1.13 7.43 9.07 8.21 4.75 14.7 0.38 6.69 8.28 10.7 8.06 8.97 9.23 8.47 8.64 10.4 9.29 10.1 7.17 8.47 8.94 11.4 11.8 10.5 9.07 2.28 11.1 10.4 8.07 9.97 9.95 7.31 11.3 8.55 3.22 9.77 9.31 3.31 8.77 8.73 7.83 10.4 2.6 9.46 0 4.32 5.43 6.33 9.05 1.88 9.17 10.6 8.84 3.9 10.5 9.53 9.13 7.58 0 7.71 10.9 11.4 9.18 1.13 9.03 9.64 8.69 9.3 10.9 10.6 10.3 7.03 11.1 9.41 9.82 10 10.5 7.24 7.05 7.61 9.6 3.22 8.72 4.9 8.06 8.84 8.34 9.32 8.55 10.2 10.2 7.77 8.77 11.2 8.41 8.95 13.3 9.21 8.06 4.65 7.34 8.69 0 9.08 12.1 8 1.88 1.88 8.85 9.15 7.67 7.87 9.31 4.12 9.79 8.49 11.2 10.7 3.47 11.6 2.09 9.16 4.01 9.18 9.83 9.28 8.75 9.77 10.6 8.66 11.4 12.1 7.94 9.15 11.1 8.15 7.9 8.02 5.61 8.61 8.1 4.45 9.32 9.32 11.3 8.12 1.52 9.49 1.31 10.2 11.7 9.96 4.82 8 10.3 8.24 6.33 5.01 12.4 8.72 11.7 2.67 3.62 3.22 13.9 4.14 1.4 9.72 12.2 7.98 14.1 11.3 13.5 10.7 8.03 9.11 12.1 11.2 9.07 7.12 10.6 4.85 8.63 11.4 7.94 13.8 8.83 9.38 0 1.76 0.38 7.25 9.52 0.67 11.6 10.1 10.4 9.95 11.4 11.5 11.1 4.19 12.9 13.4 11.1 7.53 10.2 11.1 11.6 11.3 8.06 12.7 0.38 5.34 3.43 9.89 9.74 4.82 3.47 6.47 9.49 4.07 8.71 8.54 10.1 10.8 6.04 9.14 11.1 9.3 12.3 9.98 9.43 12.2 6.91 11.3 8.02 13.1 9.54 11.3 11.5 10.1 12.8 10.8 12.3 11.9 10.6 11.4 8.27 8.01 15.8 16.4 15.4 10.6 10.8 11.5 9.32 5.78 13.3 12.2 3.75 11.9 9.51 12.4 9.08 14.6 13.1 10.7 10.2 9.01 4.61 14.2 12.4 8.89 13.2 2.73 6.44 3.31 8.12 8.34 7.79 8.84 12.2 11.6 10.2 11 13 8.46 10.7 10.2 12.7 7.74 8.4 10.1 10.3 11.2 9.37 0.92 8.72 8.71 10.6 7.79 4.68 7.58 0.38 8.06 0.92 10.1 0.67 8.09 12.3 9.29 13.9 11.8 13.2 12 12.7 12.2 11.1 11.1 13.6 0 12.3 13.4 0.92 7.01 3.78 7.43 6.44 6.03 2.62 2.45 1.88 0 3.02 6.5 3.69 1.76 2.28 7.59 5.72 6 3.78 3.27 3.58 6.14 0.92 5.05 7.73 4.86 3.89 10.7 6.53 9.76 6.09 8.69 1.76 6.72 2.86 0.38 9.69 10.2 0.67 0.67 3.17 10.2 0.38 4.76 8.09 10.9 8.29 9.5 11 8.27 7.02 10.7 11.2 11.4 10.3 11.1 10.5 5.8 6.08 6.81 1.48 11.2 11.1 7.48 5.38 9.09 9.86 13.2 14.3 11.6 3.99 9.65 12.1 14.5 10.4 8.84 6.89 14.9 12.6 14.4 7.56 8.67 14.7 11.9 14.9 13.1 4.7 10.6 11.8 8.08 14.2 6.01 4.6 13.4 12.2 9.94 0.67 2.73 2.37 3.35 1.99 1.48 9.17 8.25 13.7 6.82 11.8 10.8 3.93 7.29 2.97 0.95 1.52 5.77 12.4 0.38 5.23 3.43 7.94 7.32 10.4 8.06 3.31 3.84 5.61 0.61 5.75 9.94 7.48 5.22 3.9 8.78 4.26 2.28 3.17 3.75 4.81 5.59 8.44 10.1 0.38 8.46 5.89 4.47 7.33 9.15 7.9 8.33 10.5 7.23 5.82 7.87 3.87 7.32 6.88 5.36 1.31 9.35 0.38 2.86 9.18 6.62 2.6 1.88 5.1 7.08 4.79 5.43 5.92 1.76 6.26 7.9 6.07 0.38 10.5 10.2 7.02 3.47 9.01 7.08 2.28 3.39 5.29 1.13 10.4 2.73 0.92 2.67 3.55 10.2 7.16 10.7 0 0.38 4.95 5.87 1.88 7.09 1.31 0.67 4.76 2.8 8.14 1.62 7.88 6.48 2.37 1.13 3.08 7.48 7.99 6.77 6.64 2.6 1.31 2.37 5.51 3.58 3.43 7.75 6.19 7 9.11 4.48 11.6 3.08 9.51 0.67 10.9 11.5 10.2 10.2 7.6 9.88 0.92 3.75 6.8 9.95 11.1 1.13 6.4 10.6 1.31 7.56 5.64 6.79 8.55 9.5 13.5 11.4 14 3.75 4.65 3.93 1.88 6.39 1.31 4.07 0.67 10.9 0.67 6.75 10.3 0.67 11.8 12.8 3.72 3.81 6.45 0.92 0.38 3.9 13.1 6.23 5.78 8.15 0 3.58 8.21 6.91 0.92 5.71 4.75 0 0 6.65 1.48 10.6 3.58 9.16 2.97 0.92 7.91 8.95 4.3 1.99 12.2 2.73 11.6 1.48 5.18 4.71 8.33 2.28 1.99 5.01 10.1 1.31 0.38 8.06 8.5 6.88 0.38 4.3 4.34 9.49 1.62 9.83 2.8 2.67 10.5 12.7 1.62 1.13 4.23 0 9.43 8.73 10.8 6.84 12.7 11.4 6.32 5.4 6.35 10.8 8.23 2.79 8.09 12.8 9.52 2.09 9.97 0 5.77 2.67 11 11.3 2.19 8.16 13.6 4.04 7.49 12.4 4.41 0 10.5 3.87 11.5 9.1 12.8 5.24 12.2 6.15 4.63 1.48 2.52 0.92 6.65 3.96 8.41 8.72 14.6 8.78 9.6 3.35 7.24 4.16 10.9 4.39 8.76 8.37 0.78 2.6 8.74 7.27 1.48 5.11 2.52 7.62 2.19 7.82 6.99 0 0.67 9.54 11 9.68 10.7 11.7 12 11.3 10.8 8.45 5.11 9.63 9.78 7.66 11.9 1.13 10.7 9.76 8.87 10.1 6.14 9.35 11.4 5.22 6.25 11.7 7.71 4.04 6.27 9.95 9.8 6.68 7.45 3.62 1.48 7.67 8.49 11.6 0 9.57 11.9 7.59 14.4 7.53 9.16 9.51 6.32 0 9.67 6.64 9.38 10.7 11.9 12.2 0.38 11 9.59 10.8 10.9 11.7 9.59 9.01 8.63 7.58 3.08 11.7 8.14 0 13.1 9.21 0.67 9.55 8.56 8.78 9.64 10.9 9.73 2.86 1.76 10 2.45 12.5 7.01 6.52 11.9 13.9 9.5 10.3 11.4 7.85 10.2 10.1 6.75 8.68 12.2 11.6 10.2 9.5 4.37 11.5 10.6 11.5 3.08 14.5 9.81 12.7 9.52 5.39 8.24 2.45 7.86 9.8 9.04 12.8 8.99 14.1 12.2 10.3 8.04 14.5 11.7 11.7 12.6 8.86 9.7 0.38 0 4.04 11.9 7.55 7.22 11.3 9.68 10.4 3.47 9.48 9.22 10.7 12.2 9.66 11 12.3 9.69 9.11 11.9 10.2 13.6 13 10.2 14.5 8.63 8.83 10.8 11.8 11.9 2.09 5.04 6.3 9.62 3.35 5.57 4.36 9.05 7.66 9.54 5.73 8.48 9.42 7 1.48 6.81 0.38 1.13 6.74 1.88 4.52 3.22 7.15 9.04 6.6 6.89 1.76 1.62 6.04 5.49 7.83 4.41 4.75 0 4.78 8.63 4.51 2.67 7.36 4.99 7.21 6.24 2.97 8.13 0 3.35 8.41 13.2 6.95 7.56 6.69 10.6 3.35 8.74 5.43 0.92 3.17 5.59 4.93 7.37 7.36 5.92 2.19 1.13 1.13 0 5.96 8.18 7.7 4.71 9.97 7 6.74 6.23 3.69 2.67 0 0.38 6.65 2.73 6.87 2.6 2.6 2.09 9.75 7.51 8.08 0.38 5.25 14 8.99 1.48 8.21 6.23 8.45 8.11 1.13 7.9 0.38 3.51 4.63 5.15 8.14 0 7.4 12.6 4.5 6.94 8.84 1.13 9.62 6.75 7.77 0.92 6.6 12.6 2.09 0.38 5.74 8.68 7.19 0 3.9 6.16 7.05 5.23 0 5.36 9.46 10.2 8.44 5.07 9.97 1.48 5.23 9.61 9 2.37 12.3 8.9 4.73 10.4 1.88 4.82 0.67 11.1 0.38 1.76 7.63 3.13 0.67 11.9 4.07 4.7 3.78 1.48 5.12 0.67 10.8 10.4 10 10.3 11 12.8 11.9 11.2 7.83 11.4 6.29 12 12.1 10.5 0.67 15.3 11.3 14.2 11.2 7.22 5.74 3.69 13.4 6.57 3.47 10.3 2.45 8.76 6.32 5.95 16.8 2.09 9.66 0.67 0 3.62 9.42 5.45 5.76 11.5 9.59 10.7 4.47 2.09 4.81 2.6 3.08 8.57 9.03 2.91 3.96 2.37 7.04 1.13 8.55 0 4.86 5.04 5 4.04 9.6 2.33 4.14 9.81 1.59 7.12 8.75 3.35 0 11.8 4.32 8.69 7.59 5.58 7.89 2.6 2.67 5.42 3.13 7.31 4.3 2.97 5.46 5.32 5.28 3.9 7.56 5.5 8.72 5.7 2.97 12.7 1.48 4.94 7.99 5.41 7.43 5.33 5.65 6.44 5.86 3.51 2.67 6.55 7.35 2.3 9.01 4.39 9.27 1.99 7.53 7.27 4.88 4.34 4.73 8.18 8.44 0 8.16 0.8 3.17 5.52 6.1 9.64 8.01 4.72 3.84 8.82 12 7.99 0 5.07 1.76 6.47 9.53 10 1.31 8.3 0.92 6.27 5.71 0 7.26 9.6 6.81 6.18 0.92 13 4.76 6.54 9.24 2.09 2.45 3.31 4.68 8.92 7.93 1.99 6.07 1.48 8.79 0.92 2.37 1.13 1.17 6.35 4.01 5.1 1.48 9.72 11.6 9.66 2.97 0.71 2.52 10.5 3.13 2.19 2.19 4.66 0 10.1 13.4 8.48 3.35 7.92 10.7 11.8 7.91 11.8 7.67 13.2 0 11.9 0.38 7.74 13.5 13 13.2 7.02 2.67 12 12.8 11.7 1.13 0.38 5.75 12.1 5.98 12.8 1.48 6.94 9.24 11.2 6.49 8.29 11.4 12.8 10.1 0 14.8 11.4 12.6 11.3 5.98 1.88 9.06 10.5 10.2 12.5 4.87 11.6 14.6 12.8 0.92 10.1 10.9 11.8 1.13 8.27 8.18 9.87 0.92 8.82 8.88 11.8 10.9 11 9.6 11.5 7.37 6.55 6.73 10.1 8.76 2.67 6.68 10.8 5.53 10.8 8.09 10.6 2.37 4.14 1.76 12 5.04 5.79 6.36 4.73 11.8 2.09 7.73 4.65 10.9 4.5 2.86 7.23 10.3 10.4 13 5.95 5.84 6.04 11.1 0.38 0.67 3.27 7.46 4.37 7.21 8.13 8.08 1.62 4.28 7.81 1.55 6.08 4.7 2.8 8.57 4.14 0.38 5.14 6.49 9.04 3.78 1.13 7.29 7.72 1.62 11.4 7.98 0 2.86 8.1 1.76 4.58 1.62 5.12 7.47 7.76 4.16 7.39 0.38 4.52 0 4.26 1.99 2.8 2.8 11.1 0.67 8.94 4.93 3.22 4.43 2.95 1.13 0.67 6.97 3.98 8.43 4.47 6.67 5.98 1.13 8.86 5.18 2.8 7.95 2.8 8.68 8.64 2.97 9.2 10.5 10.1 6.42 2.73 9.14 0 0 1.92 0.38 4.54 9.45 3.58 7.02 11.7 4.16 0.38 3.17 8.04 9.62 7.88 0.67 7.75 5.29 8.96 0 2.67 8.65 3.9 4.04 8.45 7.24 8.58 0 8.58 9.49 13.6 1.76 7.73 9.04 9.03 2.19 7.91 10.8 3.17 4.88 1.62 4.63 11.5 6.39 8.4 10.3 8.7 8.6 10.3 9.75 11.2 4.84 10.4 7.69 3.47 12.4 13 9.9 11.9 3.55 9.2 1.76 2.67 12.5 7.67 14 14.7 5.43 7.65 9.52 6.31 11.3 5.71 13.2 13.5 11.5 9.34 12 12.8 11.4 0.38 7.34 3.39 7.87 8.24 10.4 13 11.1 9.1 9.78 10.4 10.5 10.2 10 10.6 5.09 9.39 4.37 11.2 9.68 1.76 6.42 9.5 9.41 9.49 2.91 6.59 8.33 11 8.77 9.16 10.2 11.4 9.93 6.96 8.53 9.74 11.3 8.46 13.4 4.91 7.26 8.32 9.64 10.5 5.78 3.13 11.3 4.41 3.78 5.64 1.62 5.72 7.2 4.68 2.87 11.8 5.16 1.69 9.77 8.3 6.62 10.5 5.86 8.42 5.29 11.8 10.2 2.52 9.99 11.9 10.4 6.71 11.9 10.9 6.18 0 14 11.1 11.2 12.4 10.2 10.5 11.9 11.5 2.37 9.77 9.2 4.04 11.1 12.1 12.3 10.7 8.74 10.1 9.7 9.96 9.83 10.4 4.23 10.3 10.6 6.44 7.68 6.82 7.12 8.65 10.3 9.51 9.85 10 10.4 9.59 6.98 0 10.2 11.6 8.11 9.63 10.9 10.4 10.2 10.9 7.9 7.88 12.3 9.99 5.78 8.44 9.81 9.74 7.38 10.4 11.8 8.84 9.35 9.35 11.9 11 8.47 9.55 11.5 11.1 1.48 8.3 7.59 9.22 12.5 10.5 5.14 9.45 8.78 7.67 10.7 10.4 10 10.8 7.4 5.11 8.31 11 11.3 8.63 4.79 10.3 13.6 9.96 4.23 0 11.8 4.45 12.4 14.4 7.45 8.61 6.65 6.41 9.31 6.56 4.39 9.17 8.1 9.11 9.47 0.92 9.84 9.36 0.67 11.5 7.84 8.82 9.36 9.17 2.52 6.85 9.11 6.36 6.18 8.98 9.35 6.89 10.6 8.68 11.2 0.92 7.35 10.1 10.5 0.92 3.65 5.7 8.04 9.5 2.67 0 4.09 2.28 6.59 1.62 10.1 0.38 1.48 5.28 9.44 10.3 3.84 5.57 10.6 4.06 5.78 1.72 3.02 7.38 9.22 10.9 6.15 1.13 7.07 2.52 7.28 6.73 5.34 6.76 1.13 0.92 9.18 9.53 1.31 0.38 5.98 3.02 6.99 2.19 6.85 7.38 4.66 0.67 5.96 5.87 7.37 6.21 12.8 2.45 7.99 5.15 6.05 4.91 2.25 9.26 8.07 6.63 2.09 4.82 6.86 5.43 2.37 6.24 5.48 0.67 6.5 7 1.72 1.99 0.67 0.38 1.48 0.92 0.92 0 10 0.92 8.28 6.68 2.6 8.7 3.39 5.14 6.19 9.81 2.09 0.67 1.62 1.88 1.48 1.48 7.45 2.73 0.38 5.97 4.3 1.88 2.37 12.9 1.88 10.2 9.51 0.67 6.14 12.6 11.2 9.63 3.02 7.86 7.05 4.93 10.3 14.2 10.3 6.38 4.37 8.39 6.1 11.9 6.38 7.07 7.76 11.4 14.2 11.6 3.94 9.82 8.25 11.1 8.99 9.59 8.53 9.82 1.48 9.92 10.1 8.88 9.97 9.18 1.31 9.43 9.13 7.23 9.12 8.19 14 12.1 9.69 5.36 7.32 10.8 11.2 0.38 10.8 12.6 9.11 4.16 11 9.91 0.92 8.66 14.1 12.1 9.33 9.84 5.23 5.42 13.5 10.6 1.13 12.5 11.8 10.9 10.7 8.17 9.8 8.13 3.51 8.76 11.2 11.9 10.8 8.99 9.14 1.13 11 9.88 13.4 9.92 9.38 11.1 12 7.15 12.4 6.36 5.11 11.2 11.3 11.7 11.7 10.2 11.7 8.9 11.3 8.55 3.51 10.3 9.93 8.3 10.2 13.7 8.01 9.76 9.29 8.27 10.5 9.68 12.1 8.99 8.28 9.32 12.4 10.3 9.86 9.03 8.37 10.1 9.29 10.3 10 9.82 10.1 9.03 10.1 11.1 10.1 8.81 10.8 10.1 9.49 10.6 9.77 11.5 9.45 11.2 9.85 10.7 9.7 10.8 8.8 9.66 9.86 12.4 12.7 10.8 10.3 4.53 4.95 8.01 6.3 9.63 1.31 0.38 4.28 8.69 9.89 8.06 8.47 7.08 8.85 10.6 10.5 14.7 10.8 8.59 9.34 8.1 6.76 9.88 9.58 8.92 5.09 13.6 3.75 11.7 10.4 9.68 10.2 10.1 11 10.9 12.7 8.83 9.48 7.69 9.08 9.22 10.7 10.6 1.31 9.53 8.8 10.2 9.41 2.28 10.7 11.2 7.94 11.9 9.97 6.12 8.77 7.76 4.93 9.41 6.01 3.43 6.95 12.3 10.9 12.6 8.71 9.33 8.17 12 11.4 1.48 10.6 12.8 4.14 8.65 10.2 10.2 9.12 11 12.3 12.4 9.71 7.09 1.99 10.8 2.37 9.54 8.84 10.5 5.36 13.2 8.21 0.92 13.7 7.32 8.55 4.09 3.55 6.77 9.03 10.4 11.6 7.68 11.9 8.4 1.13 10.9 6.18 3.98 2.37 13.4 10.2 10.8 2.52 7.28 3.75 8.03 2.09 0.67 6.77 0 10.1 8.4 2.6 4.73 7.22 12.6 9.77 12.8 10 11.6 9.39 11.7 8.98 6.53 8.03 8.31 12.4 7.74 6.41 9.2 4.93 4.45 10.1 13.4 3.65 14 9.73 0 6.42 10.8 8.92 7.17 1.76 1.62 0.67 13.1 10.4 9.65 9.94 10.1 7.47 11.6 7.66 6.16 5.11 2.37 3.71 10.6 1.13 0 10.6 9.15 12.8 6 7.91 8.92 8.19 8.41 0.38 5.46 8.5 9.7 10.6 8.85 8.77 7.43 4.26 3.65 11.1 8.93 10.2 5.41 5.01 2.8 9.95 10.8 8.91 3.93 4.32 8.55 6.32 7.27 7 8.26 9.92 6.92 11 14.3 5.08 6.07 11.7 0 1.13 2.28 11.4 10.7 12.1 7.87 12 9.88 8.57 10 12.2 9.38 8.65 8.25 12.2 8.31 5.62 9.97 13.3 13 9.89 11 13.5 0.38 8.3 10.4 9.64 11.8 3.07 9.19 10.4 3.51 7.06 10 9.5 9.8 4.07 11.8 9.37 4.56 10.4 10.2 8.94 6.03 5.74 0 4.84 11.1 11.3 11.6 9.55 10.5 9.02 9.17 0.38 1.24 3.87 12.4 4.56 7.32 10.1 3.93 7.22 4.73 7.7 10.1 9.28 8.61 10.2 11.4 7.97 10.5 8.48 13.1 6.96 1.62 12.8 3.31 8.43 3.58 7.59 9.78 10.3 11.4 11.1 10.1 7.98 8.56 8.24 7.23 8 8.28 10.1 8.74 9.2 5.7 9.09 7.7 10.8 8.81 11.6 8.62 7.1 9.47 8.18 9.64 10.4 7.01 8.24 9.97 7.4 10.3 6.56 10.2 10.3 9.36 10.2 10.6 8.49 10.7 9.86 8.94 6.4 12.5 5.51 7.28 9.18 10.7 10.1 7.14 8.84 9.19 1.48 8.92 10.4 9.33 9.53 9.26 8.93 9.52 8.05 10.6 8.46 10.1 9.21 10.2 10.4 9.94 10.9 2.45 8.17 2.73 3.19 0.92 9.8 6.04 7.35 10.1 7.9 11.9 8.08 9.72 9.47 8.96 9.13 10.8 11.6 7.08 8.31 7.55 8.57 10.1 6.74 11.9 9.96 10.8 11.5 8.24 10.9 9.16 10 9.47 9.76 8.94 9.91 10.9 7.63 9.93 10.2 9.57 10.3 10.6 4.85 9.2 8.79 8.14 9.6 10.8 9.71 7.19 7.88 7.95 9.33 9.01 11.2 10 10.6 8.11 11.5 6.05 11.4 0 10.3 11.4 7.03 10.1 10.5 5.64 8.41 8.77 11.2 4.91 8.94 2.37 9.35 6.19 8.33 7.36 6.85 8.27 10.1 11.8 8.74 9.66 8.7 8.43 10.6 10.3 7.81 11.5 10.4 8.15 8.99 9.38 10.1 7.45 11 7.49 10.2 10.1 8.62 6.6 2.91 1.13 2.67 9.49 5.83 8.74 9.28 8.96 6.74 11.4 10.1 9.29 11.6 0.67 10.1 9.71 6.47 7.1 9.38 8.13 12.3 11.1 9.45 9.44 9.25 7.04 10.1 5.29 10.6 9.92 7.49 8.42 10.3 7.84 9.45 9.72 9.44 3.89 5.69 6.58 11.1 11.7 10.6 11.2 7.25 3.51 6.43 11.3 9.95 9.42 11.4 6.21 8.71 10.3 8.59 3.51 9.74 9.57 9.95 9.23 9.68 8.62 8.91 8.65 10.8 6.78 9.12 9.45 9.75 6.27 9.52 10.4 2.28 9.13 10.3 4.6 9.08 7.67 8.05 8.17 11.2 1.48 8.5 7.01 9.47 9.44 8.09 9.88 9.06 11.6 10.6 5.22 10.8 6.39 11.4 5.95 5.14 5.95 11 8.84 9.64 9.46 9.19 9.75 9.82 9.56 10.2 1.88 9.69 1.13 5.06 9.09 9.07 9.6 11.3 1.31 4.76 11.8 8.43 9.21 3.99 11.1 8.4 8.39 10.2 9.07 9.16 9.34 7.97 6.23 10.3 3.35 6.94 11.5 10.2 9.23 7.11 8.95 9.33 8.37 9.86 8.98 11.3 6.63 10.8 9.49 7.12 8.47 8.38 9.74 11.1 7.98 8.9 7.47 10.9 10.5 2.28 10.2 11 9.92 8.51 9.13 8.29 3.02 11.1 9.13 9.53 11.1 1.99 8.56 6.56 9.16 8.42 3.69 10.5 9.7 7.9 2.8 12.5 8.74 6.49 11.7 3.55 9.24 8.98 10.6 10.5 9.55 10.6 8.76 11.4 10.3 8.55 9.59 10.8 10.1 11 8.45 11.8 8.44 8.77 9.23 8.66 5.38 11.3 10.2 8.66 8.42 9.15 9.08 9.65 9.48 6.69 8.58 7.77 4.48 10.7 9.76 8.56 9.55 8.66 6.85 9.74 8.29 8.33 8.11 9.09 8.54 11.6 6.79 0 7.81 11 6 5.12 8.35 11 9.74 9.66 10.7 8.47 11.2 10.1 9.73 9.42 3.99 11.9 9.62 10.7 7.95 12.6 10.2 10.9 10.1 10.2 11.6 9.88 10.6 6.21 10.3 9.84 11.7 9.29 10.5 9.23 8.21 11.8 9.09 0.38 7.4 10 11.4 9.22 7.43 11.5 9.67 10.9 8.88 8.46 11.1 10.9 10.4 9.47 9.1 9.62 9.55 10.9 9.65 9.52 7.4 8.29 8.07 11.4 9.11 8.81 8.82 8.14 9.37 8.86 7.96 10.9 8.15 11.2 8.29 11.1 6.91 8.64 7 7.36 10.3 9.68 4.41 1.48 8.63 8.24 9.69 8.99 10.6 9.93 11.2 10.4 7.77 8.52 6.98 10.1 8.27 7.73 11.8 6.2 10.7 8.79 0.67 11.8 3.01 8.9 10.7 11.8 8.36 11 1.31 10.6 8.62 1.88 8.64 7.57 10.1 5.16 10.2 10.2 8.36 4.09 11.3 7.5 10.7 10.4 12 5.28 2.8 10.1 9.79 0 9.09 9.97 10.5 11.4 5.28 11.3 11.6 8.1 7.67 5.3 9.23 10 10.8 10.1 11.2 8.41 8.36 9.03 6.88 8.49 6.75 9.6 9.08 1.13 0.92 10.1 5.51 10.3 10.1 9.82 8.3 11.1 9.47 1.76 9.02 11.8 9.69 8.86 11.7 4.93 10.4 11.6 14.3 11.8 9.05 9.98 13 6.43 0 11.8 9.33 8.89 11.2 13.9 11.4 9.71 6.75 4.56 5.71 5.29 11.6 5.72 12.6 4.76 9.26 9.9 7.9 8.43 9.96 11.1 4.43 8.84 7.35 12.1 15 9.97 11.8 10 9.6 10.2 6.13 8.38 9.23 10.9 7.77 7.87 7.02 10.5 9.29 9 10.5 9.11 9.69 11 10.3 7.83 11.1 10.5 10.3 10.8 10.5 8.55 2.45 6.87 9.7 11.3 9.97 10.7 9.47 2.7 15.8 9.07 9.41 0 8.54 7.78 9.12 9.89 11.5 13 10.8 11.4 8.55 11.1 5.12 9.66 9.14 10.4 7.67 5.88 4.16 8.52 7.82 7.39 5.18 9.39 10.6 3.02 7.54 9.05 9.73 9.83 9.84 10.5 14.3 3.17 7.22 8.9 10 2.75 7.05 6.08 10 12.4 10.1 6.44 12.4 11.9 5.1 12.1 9.9 7.19 12.5 11.9 13.4 12.3 10.3 4.75 10.6 1.62 10.4 7.88 10.3 7.59 9.3 0.46 2.09 11.8 12.6 8.26 10.3 11 7.62 6.95 8.84 4.53 3.58 1.13 1.99 7.61 12.3 7.78 4.34 6.99 10 7.37 9.39 10.5 8.16 0.92 4.58 10.7 10.7 8.32 8.43 9.77 9.01 7.78 10.9 9.59 8.5 8.62 11.5 10.6 10.7 6.74 10.3 7.74 4.04 4.09 5.36 6.04 6.79 0.67 8.02 0.67 1.99 7.07 3.78 5.49 7.28 4.54 11.1 10 10.6 2.28 9.7 7.48 7.91 4.88 7.85 1.86 8.51 10 7.52 8.48 9.4 9.85 10.9 11.7 11 6.2 8.78 8.86 9.36 8.15 10 11.1 9.93 7.04 3.94 9.86 8.32 13.5 10.9 10.3 3.87 5.71 9.59 8.39 8.62 10.8 6.74 7.86 8.85 9.64 5.24 8.64 9.31 8.17 10.2 9.54 9.81 13.8 10.7 2.97 8.23 8.72 1.31 3.22 11.1 9.54 9.07 11.4 3.34 9.84 8.84 7.88 10.3 9.59 6.15 10.5 10.9 9.57 11.8 8.68 9.12 1.62 1.13 10.6 9.37 11.3 9.93 7.7 10.8 7.78 1.13 10.9 9.22 9.8 11 6.59 9.76 10.5 8.69 10.2 9.79 8.07 11.1 8.08 8.96 8.4 10.4 5.52 10.1 9.23 9.51 8.15 10.9 9.68 7.09 10.3 9.12 11.1 9.73 11.5 2.97 8.22 6.84 8.88 8.42 7.78 9.43 8.38 7.25 9.54 9.25 6.38 9.6 7.72 8.71 9.5 8.76 7.57 8.33 8.84 9.17 10.1 8.57 12.6 9.69 9.84 9.54 8.5 9.87 6.74 9.41 7.76 8.45 4.7 8.39 8.84 2.8 7.12 10.2 6.84 8.22 10.3 3.17 10.6 3.62 11.3 10.8 9.75 7.65 2.8 9.46 7.94 8.14 10.3 12.7 10.8 5.99 8.79 6.18 11.3 8.95 2.6 9.71 9.49 9.88 8.84 11 5.38 9.34 10.4 8.73 5.73 9.43 7.1 8.46 10.9 2.8 10.2 11 8.64 10 9.22 4.04 5.14 10.6 2.91 12 9.32 4.85 9.6 11.7 9.59 8.62 7.47 4.76 11.6 1.99 5.81 1.76 7.24 9.79 7.39 12.3 0.92 5.87 9.81 10.7 3.39 9.92 9.6 12 8.52 7.7 8.14 10.2 13.2 9.53 8.68 9.13 8.72 7.88 3.51 8.37 10.6 9.76 9.89 8.62 7.24 7.3 5.3 8.86 12.3 9.5 4.12 8.76 10.1 8.88 8.04 10.8 8.76 8.62 9.81 8.1 10 7.13 1.13 6.52 0 8.5 10.8 4.6 5.95 10.2 8.72 7.16 10.8 5.84 10.3 8.11 10.1 8.47 11.4 7.2 9.61 7.98 7.63 7.88 9.72 6.75 7.89 10 7.28 7.77 8.2 9.8 9.27 9.24 11.7 7.66 9.57 3.17 11.3 9.33 9.4 10.4 9.25 9.18 10.1 7.65 9.23 9.57 8.74 7.67 9.4 9.86 10.9 8.5 10.7 7.74 9.83 11.2 11.4 8.48 9.73 9.18 8.9 8.25 9.59 5.81 7.97 7.36 5.71 8.35 9.69 7.54 10.1 5.64 11.1 9 10 7.3 9.68 10.5 7.98 11.5 9.58 8.23 11.1 7.39 6.04 8.31 11.5 9.85 11.7 8.17 13 8.79 9.28 6.91 7.75 8.93 8.8 10.2 5.46 8.65 9.49 10.4 10.9 7.05 8.95 3.65 9.6 9.57 9.31 8.85 9.73 8.97 8.61 8.84 7.72 8.31 6.78 8.18 5.8 11.4 7.49 10.6 7.08 8.92 5.54 8.17 0.38 9.21 8.22 6.03 7.81 11.4 10.6 8.1 9.7 8.82 10.9 4.3 7.05 7.31 7.76 9.79 6.55 10.1 5.1 8.84 3.81 9.66 12.5 7.09 6.41 10.6 7.17 5.23 4.79 10.1 8.11 11.4 12.9 11.3 7.95 9.43 9.07 10.9 8.53 8.11 7.81 11.9 8.37 11.6 6.82 9.67 7.75 8.3 8.73 10.2 8.37 8.23 10.2 0 5.59 8.13 6.27 10.2 4.65 9.24 8.77 8.89 9.56 10.8 9.12 8.11 8.35 9.86 3.69 10 10.1 8.43 10 8.28 11.5 9.58 7.63 8.18 9.7 8.74 9.25 6.22 8.5 7.42 9.55 4.37 3.51 4.48 8.53 5.81 10.4 5.3 11.2 6.88 5.83 7.2 10.4 6.97 9.64 10.5 11.9 9.73 8.93 9.58 9.73 6.7 5.09 9.54 6.62 7.8 8.19 9.82 7.78 7.64 11.2 4.12 9.32 9.21 9.65 9.66 8.79 7.96 7.52 10.8 9.42 10.1 7.86 9.17 7.44 7.85 9.93 9.17 10 7.88 10 4.04 9.05 10.6 7.74 9.12 1.88 9.57 8.02 8.73 8.46 6.28 3.35 8.74 11.8 8.72 8.91 9.68 10 7.9 8.41 10.4 9.83 9.17 11.9 2.45 8.38 8.73 9.98 9.11 10.3 9.32 10.2 9.96 9.4 11.3 9.85 10.7 9.89 7.67 9.54 9.22 7.82 8.41 8.12 9.55 9.19 5.84 6.48 9.49 8.2 7.44 12.4 8.06 8.99 10.5 10.4 5.43 9.78 10.8 8.03 9.62 7.54 9.94 7.35 10.5 7.46 0 10 9.35 9.55 7.4 6.63 9.54 7.18 9.06 7.47 8.97 11 9.41 11.4 7.23 11.1 8.09 10.3 8.18 9.52 10.5 9.96 9.03 7.21 8.88 9.66 10.9 3.47 7.37 8.6 7.9 8.44 10.9 9.04 8.91 8.53 10.3 8.88 3.65 10.7 11.3 11.3 9.38 10 11.8 10.3 10.2 5.1 8.98 8.98 7.55 8.17 10.5 9.63 9.76 9.24 10 8.74 9.55 9.61 10.5 8.92 6.1 0.67 8.45 5.99 8.8 8.86 2.37 7.5 9.58 10.6 10 9.82 4.71 9.85 10.2 10.9 6.2 8.94 8.31 10.2 9.18 9.54 1.31 5.29 9.76 7.16 3.88 8.77 9.6 10.8 0.67 10.1 8.29 9.86 11.4 8.32 8.83 6.58 6.2 9.2 9.43 9.67 0.67 10.8 9.65 2.6 9.86 8.84 10.4 11.1 8.07 10.9 9.32 9.6 7.43 7.86 3.24 8.86 8.23 8.7 10.1 9.62 4.66 9.4 7.73 10.3 8.93 8.67 9.62 7.03 5.48 7.76 7.98 9.91 10.5 9.47 10.8 4.3 5.29 9.75 10.3 10.9 9.32 10 8.83 9.84 9.18 6.83 8.3 8.83 4.14 2.52 6.01 8.82 12.4 8.67 7.15 10.8 6.97 10.4 10.6 11.1 9.08 10.1 9.75 7.35 10.5 6.3 7.49 12.1 12.3 5.11 9.1 3.65 6.93 9.76 8.17 6.38 0 0.38 8.33 5.05 9.64 8.97 6.97 1.31 7.62 8.58 9.99 10.4 9.58 11 7.25 2.6 9.76 8.61 10.3 9.55 8.53 6.2 6.7 8.78 9.83 8.97 1.88 7.41 5.55 8.9 1.62 5.28 0 11.6 5.51 6.1 9.55 9.67 7.88 2.71 2.09 7.26 9.7 4.57 4.14 9.12 2.09 2.8 5.8 5.87 8.15 9.67 8.13 8.93 6.53 2.28 10.9 7.44 10.1 8.45 12.2 4.61 10.5 9.78 8.06 5.84 10.7 10.2 9.65 10.6 5.11 10.5 8.98 6.38 0.92 11.5 8.61 10.9 9.61 9.1 4.14 9.59 7.63 8.87 10.9 11.1 2.67 9.34 7.74 9.23 7.7 9.62 10.5 8.53 8.72 9.29 9.39 10.4 10.5 9.94 10.8 8.5 11.1 7.17 8.63 8.92 9.3 8.6 7.59 8.96 10.1 6.66 8.79 9.09 10.3 8.52 9.62 8.59 9.22 7.41 10.3 9.53 9.06 11.4 6.33 9.95 7.28 8.93 6.61 10.6 11.6 10.8 10.3 6.93 9.69 9.93 11.5 10.4 8.04 9.64 10.2 8.52 10.7 8.44 8.53 10.4 7.63 7.87 10.1 10.2 11 8.64 7.46 11 7.58 12.2 9.46 8.39 4.79 9.62 10.3 10.6 4.82 11.3 6.23 12.5 9.71 8.07 9.09 10.1 11.1 9.18 11.1 7.85 9.88 6.92 3.27 10.7 8.73 8.79 10.3 9.07 9.76 11.4 5.48 6.15 8.76 9.41 9.88 8.36 11.2 12.2 9.76 7.89 6.21 9.08 10.5 11.6 10.7 9.74 12.5 9.43 10.6 9.04 9.12 9.19 10.3 12.4 10.6 8.62 9.08 9.27 11.4 8.08 11.9 10.3 7.72 8.87 8.98 8.65 8.79 9.52 9.83 5.18 9.85 8.72 11.2 9.61 9.06 6.55 7.14 10.1 8.01 10.2 8.85 8.69 7.85 7.27 6.23 8.9 7.61 9.19 9.55 8.93 10.2 5.07 8.05 9.74 8.12 8.06 9.02 9.38 8.26 8.59 9.45 6.72 7.92 5.71 11.8 9.86 4.91 9.73 9.23 4.01 9.66 5.9 8.29 7.99 9.65 1.31 6.04 10.2 10.1 2.73 10.7 10.2 0 9.59 9.74 5.79 10.3 9.76 9.55 9.45 9.76 11.7 11.3 8.02 9.29 9.52 10.4 5.57 10.3 6.63 9.14 10.9 7.75 9.58 10.1 9.93 7.32 9.26 10.1 2.78 10.8 8.37 7.92 8.45 11.1 2.19 10.3 10 9.54 10.3 8.59 1.76 7.9 6.37 10.6 10.2 7.34 6.8 8.65 10.9 2.73 4.54 0.92 11.9 7.84 8.39 9.76 2.28 10.3 8.59 7.57 9.82 9.27 10.9 11 6.64 10.1 7.92 13.7 9.22 10.8 8.64 8.58 10.4 6.98 12.7 8.75 6.13 9.15 2.97 6.79 4.58 11.2 10.3 7.11 6.86 10.1 12.9 4.58 6.32 9.38 11.3 10.9 11.6 12.2 10.1 7.41 10.2 9.34 9.11 9.13 8.46 1.99 7.01 1.76 10.4 8.74 10 6.85 9.91 9.06 10.7 10.4 9.41 10.9 10.4 2.97 6.92 7.76 5.42 9.34 5.13 2.18 7.24 11.2 5.87 8.58 2.86 7.15 7.79 5.3 6.75 5.66 6.79 4.98 11 3.39 5.82 5.02 5 5.29 10.5 0.92 6.01 7.79 5.57 5.62 4.95 6.07 5.73 4.9 5.93 9.04 4.87 5.29 4.23 6.17 2.73 7.59 8.36 3.69 8.9 8.96 1.76 10.4 7.6 8.61 9.12 8.52 8.73 13.2 1.13 6.42 11 5.22 11.3 2.28 7.09 10.8 4.7 10.2 8.84 6.84 10.2 10.2 3.81 9.98 11.5 9.95 8.45 9.35 10.7 8.16 10.2 0.67 1.48 9.86 9.12 9.84 8.81 8.83 9.22 8.68 7.01 12.4 7.6 0 6.85 7.63 6.18 8.6 5.37 6.36 10.6 4.78 13 6.5 3.78 15.3 9.38 7.2 9.54 9.79 4.84 7.91 11 8.85 10.3 9.66 10.2 10.3 9.32 8.03 9.26 8.35 6.1 1.48 6.28 5.57 7.92 0.38 10.1 6.16 11.4 8.81 16.4 7.96 3.27 10 9.69 11.4 11.2 11.2 10.2 8 10.9 7.71 11.5 10 9.93 8.06 1.62 11.3 11.4 12 12.1 11.4 10.3 12.4 11.6 7.23 8.66 10.3 10.5 7.79 10.2 7.9 1.62 11.7 9.91 11.7 9.7 9.66 10.2 5.33 9.45 11 12 7.02 8.15 8.81 8.65 9.75 6.83 9.51 12 7.5 9.05 8.39 7.95 10.7 9.54 8.64 9.77 11.3 8.51 7.45 11.6 9.5 11.3 9.13 10.4 8.46 9.59 10.7 9.56 9.17 9.32 8.08 9.8 11.5 9.62 10.8 7.71 3.96 9.53 9.46 11.4 3.9 7.77 0.67 9.49 7.43 10.7 8.21 9.77 6.34 5.29 10.6 8.17 4.93 8.14 9.71 6.99 7.13 11 10.9 10.6 8.11 9.6 7.39 10.1 9.99 9.87 10.2 9.51 1.13 9.08 7.07 7.24 11.4 10.4 11.4 2.95 9.52 9.83 9.85 11.5 9.77 7.27 4.04 7.81 8.18 9.39 10.9 10.6 10.9 11.2 9.58 3.13 9.87 8.1 1.14 11.7 11.3 13 8.71 10.4 8.39 10.5 11.9 6.56 11 3.78 10.1 1.13 8.56 8.36 11.3 11.2 3.69 8.96 8.99 10.4 5.82 7.47 8.2 9.95 10.4 10.6 1.63 8.53 6.96 10.4 8.47 10.2 11.2 9.8 1.99 8.18 9.38 11.6 10.4 10.8 7.53 11 2.6 11.5 10.1 12.8 7.53 8.76 7.98 10.6 7.11 10.2 6.01 11.1 10.6 6.99 9.53 7.6 9.77 7.17 10.1 4.5 5.09 7.01 11.9 11.2 9.03 11.3 8.49 11.5 10.8 10.4 6.2 9.57 9.88 8.58 9.41 8.94 10.4 5.36 9.93 11.3 11.4 1.13 8.98 8 9.64 8.83 12.1 10.1 7.06 11.3 8.6 8.33 8.12 8.7 9.27 8.95 10.8 10.5 5.16 11.3 10.8 9.39 9.51 8.72 7.86 10.2 4.09 9.01 12.7 7.8 10.9 1.31 4.3 7.62 10.8 7.55 1.76 7.35 8.94 10.8 7.9 6.12 10.5 8.9 5.57 7.98 2.8 8.95 8.06 3.22 7.52 13 9.38 7.63 6.05 3.87 8.04 8.68 0.67 1.13 10.6 7.8 0.38 7.18 8.2 8.88 7.69 10.9 4.47 10.4 4.82 8.82 9.51 12.2 9.76 11.8 9.92 10.7 11.4 9.69 4.85 12.5 5.91 1.99 9.25 9.01 9.3 9.54 0.92 6.23 9.73 8.64 5.52 8.46 8.23 10.1 1.48 5.38 11.2 10.3 2.91 10.9 9.77 7.03 8.44 6.33 8.3 9.62 10.3 8.73 5.06 5.01 9.01 11.1 9.64 6.85 10.8 12.1 8.75 3.69 10.3 0.38 11.1 2.52 3.13 7.31 9.34 8.83 11.2 8.91 8.35 9.4 11.2 9.6 9.11 9.98 12 8.04 9.83 9.13 9.61 1.83 5.49 1.62 2.09 8.73 7.88 7.53 11.7 10.9 10.5 5.09 6.08 9.99 9.42 8.28 12.4 1.62 8.76 9 7.06 8.1 7.27 6.66 8.91 9.48 9.35 9.53 0.38 9.17 8.73 7.74 8.34 11.1 8.45 11.5 6.23 8.78 1.13 8.38 9.89 5.65 13.3 9.12 5.7 9.64 4.16 2.8 5.43 5.52 2.37 9.43 10.4 2.67 10.4 11.2 9.55 9.98 11.2 10.4 10.1 9.58 6.4 8.98 4.5 4.16 8.47 9.64 6.39 9.47 9.99 3.17 9.01 10.7 9.47 10.9 9.65 8.9 9.51 1.62 9.36 10.3 9.02 9.46 9.22 5.39 8.3 0 12.4 9.53 6.28 10.7 11.8 6.38 6.15 4.16 10.2 9.51 10.2 12 9.95 8.58 4.73 6.66 10 5.83 10.6 11.3 10.5 8.11 9.56 8.4 8.67 8.33 8.06 7.85 13.2 5.53 8.4 8.54 11.8 11.2 7.36 6.11 8.97 4.81 8.93 3.08 8.09 7.59 5.77 9.12 8.51 8.96 7.85 9.67 5.91 2.86 10.9 9.35 9.6 9.56 11.1 8.65 9.09 10.8 10.3 9.76 5.78 6.21 6.86 6.38 6.37 6.95 6.23 7.23 11.4 8.46 7.33 9.63 9.68 7.77 3.17 3.08 6.33 0.67 9.65 7.77 5.97 9.37 7.04 10.7 8.64 8.63 9.84 8.74 9.02 9.38 10.3 9.82 6.39 9.94 10.3 11.8 8.6 12 8.2 1.13 9.03 9.18 10.3 9.37 2.09 10.6 0 7.59 7.25 8.77 10.9 10.1 7.45 1.88 9.27 11.4 7.54 7.71 10.4 13.7 9.74 5.37 9.75 11 9.81 4.61 6.01 12.6 6.78 7.5 2.97 9.08 8 8.56 9.77 8.99 8.64 11 8.36 10.6 12.6 5.73 11.2 10.4 10.9 8.84 6.27 9.96 10.2 9.89 9.17 7.48 9.45 12.6 8.55 9.87 8.54 11.1 8.45 12.3 12.1 7.67 11.1 5.34 10.4 9.35 10.5 9.8 7.7 6.72 11 9.44 9.49 8.2 9.38 9.81 6.27 5.07 7.99 7.49 4.23 9.34 9.39 7.54 7.31 6.76 10.8 10.6 10.7 8.57 4.23 8.91 8.54 10.5 10.9 9.58 10.1 9.61 7.98 8.67 11.1 1.99 0.38 11.7 11.7 9.12 11.9 10.6 9.78 4.58 4.43 8.67 9.07 10.2 11.6 8.74 12.2 8.57 10.3 9.04 7.43 9.34 9.97 8.51 11.7 12.3 10.3 6.68 8.67 8.84 12.4 10.9 12.5 8.05 7.2 5.7 6.05 6.93 6.02 10.6 4.9 10.8 10.3 11 11.2 10.4 12.8 9.48 11.7 11.5 10.8 11.1 4.68 6.88 9.4 10.6 11.2 5.5 9.54 7.08 11.2 11 9.99 9.43 9.24 10.2 7.51 6.89 7.04 11.6 8.88 9.29 11 7.3 6.02 9.66 8.66 11.3 9.7 9.13 9.89 9.93 7.81 11.3 10.1 8.39 0 9.99 10.3 10.3 1.88 7.64 11.8 9.62 7.61 11.1 5.82 9.41 11.8 1.62 6.91 11.3 11.1 10.2 7.37 11.2 0 3.24 0.38 11.6 3.51 5.84 1.99 11.3 10.2 0.38 5.38 7.63 4.28 10.6 10.4 7.62 7.77 11.1 9.56 7.85 11.1 10.1 9.02 7.1 11.2 9.73 10.4 9.54 8.95 8.84 8.84 9.05 10.1 1.57 8.14 10 7.92 7.05 0 10 5.54 11.5 10.3 10.2 17.3 9.38 9.77 2.91 9.57 1.99 2.45 9.59 0.38 9.6 9.8 9.78 2.67 10.3 2.67 10.6 11.4 8.9 9.19 11.9 6.08 2.6 9.33 7.22 5.39 7.91 9.21 10.3 6.1 8.31 10.3 0 9.08 3.55 0 9.45 12.3 7.53 10.5 8.36 10.8 0.92 9.9 8.1 10.2 8.74 10.3 6.31 9.52 8.5 8.96 2.6 9.5 9.08 12.1 9.13 10.7 8.14 11.5 9.27 11.4 8.99 9.2 11.2 10.1 1.62 7.95 11.2 5.22 7.98 9 5.44 9.69 9.77 2.67 3.13 4.57 9.13 1.48 11.8 9.88 10 10.6 6.91 9.11 2.91 11.4 10.6 4.71 8.58 2.37 7.07 3.65 6.88 9.36 7.42 1.48 11.6 9.77 7.95 9.29 14.1 13.8 13.6 12.2 9.75 10.5 12.8 0 14.9 7.21 12.5 13.7 12.6 13.3 13 9.97 13.2 8.9 13.7 1.31 12 10.8 8.67 12.1 12.9 13 13.5 12.4 13.8 12.4 13.2 12.7 12 12.6 11.3 13.2 12.5 11.8 7.68 7.41 13.3 6.26 13.7 13.6 12.9 9.98 9.18 12.7 13.1 12.6 14.7 11.4 13.8 1.88 2.91 3.93 5.94 7.85 12.9 0.67 1.13 14.7 11 9.12 10.8 9.9 10.5 11.2 13.4 13.2 10.8 13.6 12.9 12.2 13.2 11 12.1 13 13.1 8.85 13.6 13.3 13.3 11.9 13.1 13.3 11.5 9.66 5.97 11.5 5.61 11.6 10.8 9.44 12.9 10.6 11.3 10.8 9.74 0 8.91 11.6 10.7 7.11 7.58 11.7 9.62 9.91 10.8 3.17 4.97 2.55 9.01 10.2 13.6 5.07 10.4 0.38 13 14.9 15.8 13 14.3 7.61 8.85 7.55 11.8 13.2 9.96 10.8 3.85 6.15 7.08 11.1 9.59 10.9 12.7 8.95 8.72 10.7 10 9.5 6.87 10.1 9.44 9.5 13.8 5.12 8.39 7.39 7.67 2.19 4.73 4.26 7.44 14 8.18 6.45 5.77 6.19 9.64 5.29 6.53 7.6 9.75 11 4.94 8.39 10.6 8.64 6.03 0.67 8.74 10.8 7.87 7.59 7.59 11.3 7.2 3.43 3.55 8.68 0.38 7.53 10.9 8.55 4.66 9.11 5.07 13.9 6.99 2.19 9.91 12.2 11.9 10.6 9.61 10.2 6.69 9.05 9.44 10.8 9.63 9.79 10.2 8.98 7.01 8.62 7.25 6.85 10.8 10.7 9.57 9.74 8.87 7.65 10.7 6.6 2.89 7.88 9.96 9.17 10.2 5.64 8.9 7.5 3.55 9.05 7.48 6.2 7.7 7.82 8.05 4.14 9.69 8.47 9.44 7.54 7.21 11.1 8.85 10.8 7.53 10.2 4.94 7.79 8.93 9.97 7.34 2.73 11.5 9.38 10.2 9.1 7.6 9.76 11.1 8.76 10.1 1.48 15.4 4.47 6.85 10.5 9.3 7.82 5.58 6.28 11 7.42 10.7 8.49 0.67 5.09 8.85 4.71 8.32 7.07 8.19 7.93 5.92 6.85 8.61 9.05 8.39 12.1 10.7 9.38 10.4 9.29 5.24 9.43 9.38 11.5 4.76 5.31 8.49 1.88 9.67 5.75 12 3.84 7.55 0 13.3 9.43 7.68 7.46 5.16 7.79 10.9 9.96 10.5 10 7.46 7.79 4.21 6.62 6.33 6.03 5.37 11 12.8 1.88 6.97 5.64 9.97 10.2 12.5 10.4 9.07 8.59 9.98 9.67 12.1 5.16 9.6 9.72 9.4 10.9 3.27 13.2 10.9 8.69 10.7 0.38 0 9.82 3.35 12.4 2.09 11.8 12.2 4.28 9 5.23 8.97 5.84 6.96 9.21 6.68 7.33 11.2 2.8 4.98 0.67 3.75 11.1 5.41 1.88 11.1 10.2 9.66 10.6 11.1 8.24 0.67 11.2 9.09 5.39 9.33 9.84 10.2 9.45 7.45 10.9 8.03 5.92 0.92 1.62 5.51 11.5 8.98 9.82 2.45 11.8 6.89 0.92 1.13 9.38 7.45 8.97 0.92 3.02 8.41 6.99 6.75 8.2 7.55 5.44 3.78 0.92 6.99 6.28 8.65 3.9 11.3 9.72 4.41 9.57 8.32 7.1 8.22 7.46 5.77 7.19 5.2 7.18 8.37 9.02 6.35 0 4.66 2.6 7.54 3.99 8.27 9.6 7.13 8.76 8.39 10 10.9 9.2 10.2 9.02 8.69 9.16 9.73 9.53 8.63 9.23 9.43 1.99 9.27 0.67 6.59 4.68 5.94 4.37 3.62 12.1 4.75 5.64 1.76 8.87 0 10.4 7.62 0 10.3 0.92 6.16 1.64 8.85 9.17 6.34 3.31 10.6 2.91 1.31 6.06 1.48 10.4 9.23 5.78 0.38 2.74 1.31 1.62 11.1 0.38 4.78 4.09 3.27 4.07 2.6 2.8 9.56 1.31 3.51 6.77 7.93 9.82 7.65 9.83 0.92 2.86 2.8 9.95 1.76 7.79 0.92 12.4 1.76 10.4 3.82 4.54 10.5 0 0.38 6.31 8.73 9.91 1.88 9.54 0.92 0.67 5.29 1.48 5.02 4.32 9.32 7.99 9.1 4.61 8.59 10.6 12.8 6.12 4.09 7.74 11.1 4.93 7.28 10.1 10.1 8.8 11 11 8.81 8.9 4.32 7.88 10.2 9.64 6.97 11.7 9.23 11.5 7.6 8.75 10.8 9.06 10.5 9.87 9.43 8.57 12.2 8.3 8.32 6.04 8.67 11.8 8.06 9.58 9.65 8.75 9.18 8.03 9.7 7.8 0.38 9.68 11 6.8 6.08 7.51 9.46 8.93 3.87 10.3 12.4 7.32 3.72 10.2 9.76 1.88 7.73 7.38 6.18 10.5 9.8 11 10.3 6.47 8.93 9.1 10 10 4.23 11.1 8.45 9.43 8.19 8.46 9.76 9.25 13 10.2 9.62 8.55 8.84 7.99 7.83 9.16 11.6 7.5 1.4 3.84 6.62 9.05 7.89 11 4.52 7.7 2.73 9.17 8.73 8.26 0.38 9.88 8.63 8.07 8.59 9.47 3.81 5.95 9.88 7.26 9.53 5.78 7.68 9.3 7.09 9.97 2.45 9.91 8.74 9.34 9.28 9.84 11.1 8.33 8.02 9.58 7.94 9.74 8.29 9.24 10.1 0.92 8.71 11.8 10 10 8.68 7.99 8.5 3.61 10.8 9.46 9.32 3.55 5.92 7.56 5.57 10.6 8.55 9.5 3.02 8.97 6.03 7.26 0.92 10.9 4.09 6.96 8.7 9.53 12.1 8.21 10.9 8.69 9.16 0.92 11.8 11.3 8.68 8.61 10.4 3.69 9.56 11.1 12.5 9.38 14.8 2.28 10.9 4.84 8.38 2.03 7.22 12.9 0.92 11.2 10.4 5.46 5.55 9.52 9.08 10.2 8.31 6.1 8.37 10.1 8.84 8.36 12.1 10.6 4.57 2.45 5.12 0 3.02 3.08 0.92 6.51 6.58 3.75 5.58 7.65 2.8 12.9 4.43 4.82 0 1.62 6.91 2.28 10.4 7.13 0.92 7.52 3.58 0.67 0.67 7.98 11.1 8.77 10.2 11 4.14 8.64 5.55 9.12 1.76 9.16 8.07 6.27 2.52 0 8.6 2.67 6.96 4.82 5.02 5.72 1.31 12.5 8.29 0.67 1.76 0.67 7.89 6.58 8.53 6.6 1.31 5.86 4.9 4.34 4.84 4.43 9.08 4.82 5.06 11.1 5.46 5.76 5.74 2.73 2.8 0.67 8.5 0 9.57 2.8 5.8 10.6 3.55 6.52 12.9 8.87 8.25 0.38 5.06 7.67 10.5 10.8 9.69 10.2 7.68 2.67 8.89 6.12 7.56 3.08 9.46 11.1 12.6 11.2 10.4 11.7 9.83 11.3 1.62 7.94 10.4 10.2 9.39 8.12 6.94 9.2 10.4 7.64 9.21 7.1 9.15 11.8 6.34 9.86 9.81 9.83 8.84 6.84 8.92 8.93 4.39 4.97 1.88 12.1 10.6 9.57 10.8 10.6 10.7 5.3 8.12 7.19 11 2.41 10.9 8.74 9.11 8.29 7.6 10.7 11.4 11.1 10.9 8.36 3.99 8.85 8.19 9.04 7.66 8.55 6.96 8.99 13.9 11.2 10.2 8.17 12.1 9.91 10 10.5 9.63 10.8 10.1 8.88 9.34 9.27 8.98 11 7.97 8.69 10.9 10.7 10.3 10.6 1.13 11.3 3.35 14.1 8.54 10.5 10 12.6 9.84 10.7 10.4 9.7 10.9 8.41 3.99 10.3 3.58 11.2 9.38 11.3 9.29 12.9 11.2 7.59 11.4 7.84 10.4 4.88 16.2 9.06 9.77 10.2 4.7 9.51 0.67 11.8 8.37 8.08 13.4 8.54 7.46 12.8 3.13 9.88 12.9 11.1 10.7 10.8 9.69 1.13 10.1 8.6 11.9 11.2 10.4 11.2 11 11.3 9.57 10.5 7.17 11.1 11.6 11 10.1 11.6 9.96 9.77 11.2 10.4 11.8 12.2 11.7 11.8 10.6 12.2 8 5.82 2.09 10.9 11.4 10.9 12 5.64 13.3 5.47 15 12.4 13 6.88 9.8 9.94 1.88 0 1.62 0 0 1.31 0 1.04 11.8 0.43 0.67 0.38 4.85 12.6 11.6 10.5 10.3 3.39 8.41 10.9 6.81 8.92 9.54 10.5 9.96 4.81 6.4 10.7 9.69 3.69 4.09 9.13 6.56 9.94 9.63 9.84 9.59 10.2 9.93 9.59 6.51 7.71 0.92 13.2 9.28 8.31 9.79 11.9 6.84 11.9 8.93 9.06 8.59 12.7 9.77 9.55 8.48 12.5 11.8 5.92 10.2 10.2 2.91 9.9 5.74 1.31 3.9 11.8 5.52 7.67 1.48 2.97 0.38 10.8 10.6 4.43 9.9 7.35 9.69 10.1 8.63 8.46 11.9 7.3 10.4 11.2 12.3 10.4 9.27 9.22 8.9 8.47 9.94 5.18 1.62 11.9 12.8 13.3 12.8 13 8.88 8.62 11.6 5.56 0.67 7.51 10.2 8.49 9.85 8.5 9.43 8.49 8.34 3.58 7.89 5.49 8.82 10.3 6.89 8.26 2.09 6.97 7.25 9.84 0.38 0 10.6 0 11.2 11.3 8.46 3.55 10.2 8.47 9.16 9.56 8.17 10.8 2.19 11.6 7.82 9.35 10.4 9.48 10.1 5.74 9.54 11.7 7.93 12.4 0.92 0.38 8.3 9.82 9.6 3.51 10.3 10.1 9.58 10 10.7 10.9 9.36 10.2 6.25 3.65 8.8 14.1 8.96 8.15 10 0.92 8.91 8.73 4.04 11 3.84 9.78 11.1 8.85 9.3 6.02 9.49 11.3 7.75 10.7 3.27 8.83 4.5 12 4.65 10.7 11.3 9.02 8.44 10.7 1.13 15.1 11.2 2.37 11.9 8.39 9.18 11.1 12 12.5 5.89 12.5 14.1 12.9 8.68 10.3 13.1 9.49 8.9 3.02 8.35 7.87 1.99 11.9 12.1 9.4 10.7 9.67 9.48 12.6 13.1 13.2 4.47 11.4 11.3 10.5 8.97 13.2 5.62 9.71 6.33 10.5 9.28 5.64 14.8 11.2 9.05 10.3 8.63 9.59 16.3 13.2 7.03 9.57 9.73 9.28 9.38 7.32 9.96 10.4 8.79 11.1 14.4 13 7.05 6.77 9.99 9.06 11.5 11.2 12.7 13.5 8.93 12.1 11.3 10 10.1 1.76 10.9 13.6 11.4 11.5 9.64 13.9 11.7 7.93 1.99 12.2 11.1 9.55 10.5 10.2 10.1 14.6 8.55 10.7 10.2 10.1 12 1.99 13.5 12.7 12.7 11.3 13.2 13.5 9.23 10.4 11.8 8.5 15.5 0.78 13.7 7.78 9.68 14.5 9.48 9.33 8.79 7.38 7.74 9.99 11.8 0.67 12.7 11.1 10.6 8.92 0.92 5.84 1.13 3.17 7.54 8.77 9.64 1.13 6.62 3.79 11.2 9.66 10.6 1.48 10.5 1.62 10.2 11 8.27 8.88 9.11 8.44 11.6 10.1 10.9 11.4 9.54 5.59 8.53 9.32 13 6.83 12.2 5.8 6.51 4.3 8.69 7.11 9.73 9.82 10.8 5.81 4.19 5.38 5.74 6.85 1.31 5.99 7.53 3.31 5.16 6.52 10.1 4.76 7.89 8.72 5.94 6.4 12 5.87 3.96 1.88 6.65 7.9 6.26 4.14 9.74 0.38 5.05 4.65 3.35 3.78 5.04 8.78 6.69 0.38 13.5 1.62 6.38 0 5 0.67 3.27 5.72 7.99 2.73 9.17 1.48 1.13 9.72 6.6 8.9 5.84 4.7 3.58 8.12 0.79 0 6.26 7.43 6.83 3.65 1.48 5.28 6.88 0.38 7.98 4.88 3.72 4.63 6.92 12.1 8.7 4.73 8.72 2.91 3.58 11.3 4.48 4.76 1.76 7.83 10.2 1.13 2.09 3.81 9.96 8.31 7.34 1.31 5.29 1.13 7.02 7.24 1.31 7.86 1.76 5.61 4.09 7.12 7.35 4.43 1.48 10.6 0.92 10.5 1.31 12.3 2.67 13.9 15.3 12.9 1.48 10.5 10.7 10.3 9.2 11 12.6 10.4 8.88 10.8 10.2 10.6 10.8 1.31 10.3 10.7 11.5 10.7 10.2 9.11 9.9 10.6 11.4 10.2 9.67 5.81 3.27 10.4 6.34 9.46 3.39 9.86 9.73 10.6 11.3 2.67 9.26 9.88 10.7 10.2 10.8 10.2 10.6 3.78 10.4 0.67 10.9 11.8 10.9 10.1 10.3 10 8.6 9.54 10.8 10.6 1.31 10.4 11.2 9.06 9.31 11.5 11 8.5 11.3 9.87 10.2 12.4 15.5 12.3 9.96 10.6 10.5 11.4 9.5 9.95 2.73 9.43 1.48 13.3 14.4 7.29 2.18 10.5 5.5 3.47 6.41 8.9 9.14 9.86 4.32 4.21 13.1 13.8 8.62 11.2 12.5 9.57 9.9 9 10 9.54 8.95 10.6 9.27 6.66 0.38 2.91 11.2 4.82 7.84 7.47 1.13 3.31 8.65 5.96 3.75 2.28 7.41 7.54 3.39 10.9 8.66 0 0.28 6.28 7.67 9.51 5.9 10.7 5.65 12.2 9.23 6.81 8.61 7.23 10.2 12.2 6.98 11.2 10.6 13 8.03 13.9 13.1 11.7 15 6.94 12.4 13.4 5.57 12.3 7.6 8.9 9.24 6.44 7.72 8.35 4.54 8.68 6.44 13 6.26 8.96 4.7 5.78 7.82 6.86 7.17 4.61 5.08 6.69 8.8 9.51 7.4 10.4 7.14 6.7 6.44 7.98 9.53 8.9 7.22 9.19 8.18 7.15 7.8 6.55 5.99 7.39 6.5 10.9 7.42 0.67 3.55 6.09 7.2 7.73 7.12 8.48 6.54 2.09 7.89 3.08 5.28 7.56 6 0 3.51 4.94 5.17 4.4 12.3 5.84 1.48 1.76 1.99 1.62 4.68 1.88 8.88 9.24 5.21 8.16 7.81 4.68 6.3 3.17 7.46 7.85 6.67 5.7 8.7 8.69 9.64 4.5 10.7 11 10 9.06 11.9 4.68 5.84 1.62 9.91 6.82 10.8 7.08 7.1 3.27 3.51 4.19 6.71 7.83 7.26 11 1.31 7.3 7.59 8.26 6.54 7.43 7.82 10.6 8.09 7.44 6.23 7.69 11.6 3.39 3.75 8.58 3.58 5.52 11.7 10.7 5.04 6.51 5.45 6.61 1.99 7.36 5.72 4.12 5.67 6.64 8.1 9.79 1.48 3.31 6.65 6.87 7.18 5.21 12.9 11.4 10.2 12.7 4.5 12.8 8.63 13 3.94 13.7 8.97 10.9 8.76 3.96 11.8 12.1 8.15 9.3 10.9 8.6 11.8 4.63 4.43 8.84 11.2 10.1 8.32 7.14 9.3 10.1 10.4 8.22 10.4 10.4 11.6 12.9 7.86 4.87 9.97 6.45 9.11 8.93 3.39 7.1 7.41 9.73 8.88 6.91 9.56 1.13 1.76 9.59 11.1 6.96 9.89 9.95 8.86 9.05 9.01 6.27 7.04 8.53 9.56 1.13 9.29 10.1 8.73 6.3 7.83 9.75 9.11 1.13 14.9 10.1 7.67 9.18 8.56 9.68 8.75 9.08 9.7 5.74 9.32 11.2 6.97 9.67 10.4 9.75 11.5 9.06 10 9.57 7.94 7.97 10.3 9.59 9.94 7.87 7.11 7.68 10.9 7.3 8.08 9.79 6.95 9.02 9.35 10.3 9.35 8.98 8.65 6.82 9.28 5.84 7.19 7.73 5.48 8.99 8.08 8.38 9.97 9.54 9.97 10.6 12.3 9.27 6.63 9.82 7.92 10.5 11.2 6.25 10 10.7 11.5 8.89 7.94 9.88 6.51 8.24 6.01 7.5 7.12 9.78 8.34 8.59 10.8 7.53 12.9 7.7 7.16 1.88 8.08 8.44 12.1 5.43 10.4 7.9 3.65 8.74 7.57 7.14 7.22 7.59 8 11.8 9.7 8.92 3.58 11.3 12 8.22 9.86 11.8 10.1 7.13 6.01 0.7 10 0.38 2.86 1.13 10.1 5.67 9.99 8.89 5.25 1.13 5.53 4.75 7.78 4.39 9.13 6.8 10 9.3 7.66 10.2 8.77 8.34 6.13 10.4 7.25 9.36 6.45 3.62 6.17 3.48 11 9.23 6.75 4.82 9.54 11.6 7.77 7.86 8.11 10.2 10.9 6.67 6.08 9.82 11.1 9.12 9.04 9.57 9.83 9.86 8.75 7.65 7.7 11.1 8.82 8.82 7.96 4.01 6.91 4.98 7.59 8.99 9.44 6.36 8.65 8.59 9.06 9.64 6.1 7.58 9.24 7.39 6.75 7.26 9.17 4.3 8.34 7.77 4.73 7.72 7.13 7.77 8.49 8.73 8.07 9.26 4.04 9.4 10.9 7.94 9.01 9.51 10.9 10.4 8.5 10.6 3.58 9.52 8.48 8.36 9 4.76 7.74 9 9.69 9.46 2.74 10.3 8.02 10.4 9.37 8.85 6.8 5.31 8.55 7.75 9.67 8.31 9.28 7.53 6.15 9.28 8.77 9.68 9.28 8.9 9.21 9.01 7.81 3.99 8.36 9.67 8.31 7.9 9.07 8.82 8.81 11.9 9.36 10.9 8.78 8.34 8.09 8.43 9.4 11.5 9.83 10.2 1.31 8.3 9.31 5.97 9.65 8.13 7.69 4.01 9.09 7.28 7.69 9.05 7.36 7.85 6.57 1.48 8.72 6.44 10 7.33 0 9.51 5.09 10.2 9.55 8.36 9.34 10.5 6.72 7.96 5.73 8.13 7.4 9.54 9.84 8.12 9.71 8.54 7.96 7.9 6.06 8.62 7.59 9.03 4.84 0 6.18 10.4 8.33 2.67 7.86 10.7 9.58 10.7 8.9 8.73 8.11 8.32 5.3 8.84 0 8.97 6.53 8.19 7.76 7.16 10.7 9.71 10.3 6.63 8.64 2.52 10.8 6.65 3.96 8.82 2.91 7.68 6.45 3.9 9.08 9.47 8.58 8.8 6.13 10.5 7.32 10.2 5.18 10.6 3.55 6.87 9.75 7.38 2.28 5.64 4.61 3.02 8.09 4.71 7.79 8.06 0 9.93 3.08 0 3.27 7.03 1.31 6.29 3.9 5.81 8.02 6.78 3.9 8.14 7.33 8.37 10.8 4.78 8.32 9.23 6.6 8.62 9.96 9.36 8.33 5.7 8.61 10.4 8.65 6.33 8.23 8.92 10.2 10.7 9.9 5.07 11.1 10.1 9.05 7.28 6.54 8.01 5.49 8.5 11.3 9.54 10 5.11 4.47 0.92 8.36 8.23 8.04 7.78 3.9 8.05 10.2 6.22 0.38 3.62 5.31 4.5 6.07 6.32 8.18 6.15 10.3 8.51 8.16 3.35 5.01 10.1 10.8 2.37 7.42 8.09 4.37 9.85 1.31 3.72 9.93 3.02 11.4 2.37 7.57 7.21 8.37 9.47 5.65 9.44 7.97 6.73 6.33 11.1 3.08 7.54 10.3 8.09 8.53 8.39 8.59 5.26 8.43 6.92 8.75 8 2.19 9.13 2.37 13.5 5.78 2.28 8.31 10.4 8.29 8.51 7.66 4.34 8.08 9.56 9.82 8.42 9.18 9.18 9.76 8.74 8.75 7.95 6.62 9.55 9.72 9.05 9.65 5.94 0.38 0 7.33 4.34 8.04 4.65 8.67 1.78 5.42 2.73 0.67 5.14 9.76 13.1 3.13 7.37 8.34 6.3 6.51 0 10.3 6.21 5.21 5.95 8.6 8.69 9.54 7.33 9.94 10.2 7.74 9.47 9.98 9.83 11.4 5.46 8.98 9.71 8.84 10.9 3.22 7.92 6.64 8.71 8.56 7.46 10.7 7.6 7.64 10.2 7.51 7.64 7.51 10.1 9.15 8.77 9.14 8.62 6.71 2.45 10.5 10.2 9.28 9.07 10.4 10.3 10.9 7.56 9.32 9.09 8.7 2.09 12.2 9.59 8.17 9.26 10.6 7.3 8.39 9.26 10.2 7.12 11.6 9.68 5.24 6.75 6.27 8.35 9.84 10.8 3.78 9.35 5.52 6.42 10.2 9.4 8.98 10.7 9.98 3.72 10.2 9.63 4.54 6.07 10.5 10.7 6.34 7.96 9.06 9.31 3.69 9.63 12.5 6.77 8.38 6.13 5.58 8.6 10.1 5.44 4.71 8.7 7.75 3.58 9.09 9.42 7.36 8.31 3.35 11.5 6.57 3.65 11.5 6.6 2.28 6.95 7.03 10.5 5.09 9.04 10.6 9.38 2.28 10.9 8.08 10.2 11.7 9.44 11.8 8.95 12.8 9.41 9.85 9.49 10 4.47 9.95 3.08 7.41 7.88 4.71 2.97 12.2 8.09 11.1 3.31 4.43 3.39 7.37 3.51 7.19 7.85 7.02 8.83 3.75 5.01 5.18 9.88 8.82 11.1 7.18 8.92 9.23 8.87 7.71 5.79 10.5 6.36 11.5 12.7 9.44 12.1 11.5 12.4 7.55 9.47 9.03 6.89 8.93 5.64 9.74 11.3 11.8 6.96 9.96 2.28 11.3 9.75 10.3 11.3 9.43 9.25 3.24 3.84 5.41 2.55 11.2 8.36 8.07 8.45 10.7 2.19 11.2 13.4 7.29 2.35 3.02 7.72 7.02 8.46 9.55 9.86 11.1 11.4 14.5 4.16 10.4 4.63 6.84 2.97 11.3 12.8 9.34 6.13 5.64 14.2 11.4 9.72 8.74 2.86 8.01 6.77 2.45 11.7 6.08 8.88 9.69 9.41 12.2 11 6.27 7.76 9.54 8.25 9.55 7.7 9.93 10.6 9.38 9.45 8.03 9.02 8.58 9.43 10.8 9.41 12.4 5.32 9.46 3.78 8.74 9.34 9.62 7.63 9.2 4.61 8.73 6.81 7.04 11.4 10.1 10.4 10.7 9.66 9.81 8.51 9.68 11.2 10.1 5.81 0.38 7.43 10.6 11.5 9.27 4.34 10.2 8.52 8.6 10.2 2.69 10.8 9.86 9.38 10.6 11.6 8.95 5.11 2.52 10.6 1.76 9.85 10.4 0.67 10.3 9.26 6.37 8.92 6.63 8.33 5.1 6.63 5.32 9.72 9.85 10.3 9.1 10.1 8.97 10.4 4.34 9.64 2.22 9.7 5.81 9.89 10 7.03 10.1 9.82 12.7 9.94 8.51 8.97 11.2 8.27 8.91 1.19 9.97 9.15 4.56 8.91 8.03 7.28 10.3 5 8.22 4.91 8.24 9.29 1.99 11.2 11.4 7.81 10.2 14.4 7.2 9.16 8.16 12.4 8.19 0.67 8.15 8.82 9.43 7.12 12.7 7.01 11 12.2 12.4 10.4 11.4 11.7 7.7 12.4 9.68 7.14 10 6.81 8.56 10.1 1.76 5.14 0.92 11.5 12.5 10.8 5.21 8.63 1.13 10.8 11.2 12.4 10.5 4.37 12.8 9.18 9.93 8.01 10.9 9.24 7.87 8.06 12.6 5.02 10.5 9.13 10.9 8.86 6.41 2.45 0 10.1 2.28 1.88 1.76 10.2 2.45 9.55 3.75 4.26 7.78 10.6 1.31 4.94 2.67 4.43 0.67 0.92 9.17 3.13 10.2 12.6 10.4 8.34 7.73 5.62 4.12 2.8 8.07 8.17 1.76 8.19 8.61 7.67 8.1 8.69 6.21 2.73 7.46 7.52 8.32 2.8 7.32 10.2 11.7 9.77 10.1 0.67 5.03 2.37 3.84 2.8 1.13 8.45 9.3 8.68 7.88 7.43 9.85 8.94 2.91 8.9 2.45 3.84 1.13 0 9.13 5.78 2.28 9.88 7.4 9.7 8.52 9.8 1.31 8.37 10 10.6 9.51 7.6 0 4.28 8.7 10.7 9.03 1.48 8.36 9.5 7.69 8.79 5.83 5.6 0.67 1.48 10.5 0.38 8.41 12.2 9.17 1.88 8.9 9.72 8.76 5.02 9.23 9.45 0 3.02 8.02 11.2 7.7 8.82 9.88 7.71 5.01 9.29 11.4 9.39 5.97 4.04 3.02 9.62 2.37 6.28 10.5 11 10.3 6.85 9.1 10.2 4.82 3.9 8.03 11.2 9.08 8.94 6.19 6.95 5.43 7.75 0.92 1.27 8.98 6.08 10.7 9.46 8.17 7.41 8.89 10.5 9.93 8.88 5.86 5.05 9.83 5.01 9.32 0 5.9 0.38 9.14 0.38 3.39 0 2.67 7.91 10.8 7.64 7.15 9.59 10.2 8.25 8.2 9.78 4.68 11.2 10.2 8.19 8.09 6.51 5.09 0.92 7.68 2.67 7.22 10.6 6.31 8.68 2.73 10.4 10.6 8.75 8.19 7.83 1.13 7.47 5.09 0.92 10.3 10.6 9.11 10.8 10.3 10.1 10.3 12.3 10.2 1.31 8.35 6.28 7.98 6.4 9.38 7.69 10.9 7.9 1.76 8.5 9.67 9.05 7.94 7.52 13.9 1.62 4.78 5.92 0.38 4.3 6.95 10 10.5 7.23 9.44 6.73 6.87 9.6 9.11 1.76 9.57 5.95 1.31 8.02 7.35 5.77 7.7 9.93 10.2 8.38 7.46 10.2 6.88 8.36 8.72 7.76 8.75 8.73 8.05 6.07 7.15 5.2 9.91 8.36 2.67 8.56 8.95 10.6 7.03 10.6 6.74 10.2 11.2 6.5 12.3 10.1 7.96 9.91 7.43 7.01 6.45 6.33 10.1 7.76 8.85 9.13 10.2 5.49 1.13 6.05 9.15 10.3 9.89 6.32 7.67 5.2 6.56 1.62 7.8 2.45 8.55 5.97 6.43 2.8 8.88 5.51 6.79 4.12 0.38 9.62 12.1 11.1 7.9 7.96 2.73 8.64 10.2 7.7 9.15 9.19 11.3 2.67 9.4 7.39 6.18 4.9 7.52 9.7 9.99 1.48 9.44 8.83 6.72 8.9 10.1 4.43 7.79 7.74 8.15 8.35 7.9 9.94 8.1 10.3 9.38 9.04 8.33 6.25 7.38 7.52 4.45 7.67 12.4 9.65 5.44 8.37 10.5 8.88 9.61 7.59 9.59 5.88 7.94 6.11 6.66 10.4 9.02 9.44 8 9.04 9.18 10.1 9.19 8.11 4.82 6.71 8.34 8.97 7.48 7.04 8.4 0 10.1 9.1 8.61 9.99 7.14 7.68 8.7 9.45 8.08 9.08 8.5 10.4 9.31 8.49 4.37 8.12 7.41 6.58 6.69 1.13 9.99 8.4 9.89 9.03 9.13 8.74 9.45 8.48 9.2 0.38 7.78 10.8 10.1 8.17 10.2 8.55 9.88 8.05 10.1 3.13 8.74 8.15 9.68 9.48 5.44 8.17 6.49 7.93 8.03 9.27 9.79 10.4 5.01 10.6 8.94 6.96 9.84 8.32 7.24 6.6 7.93 7.75 10.1 3.9 9.29 8.36 1.62 7.17 6.36 2.03 10.2 9.61 10.5 7.15 3.22 4.95 11.2 8.57 8.71 8.23 10.2 6.02 11.1 5.05 9.95 7.06 9.12 7.37 9.61 6.79 7.31 10 9.02 4.26 10.8 6.97 7.11 9.85 6.97 8.98 8.91 11.1 8.94 6.09 8.28 3.93 9.82 9.27 9.12 0.38 8.71 6.74 4.71 12.9 9.06 9.18 6.79 5.76 2.19 10.4 8.42 10.6 5.06 11.7 9.38 11 0 4.19 6.59 9.77 11.3 5.18 10.3 9.44 10.4 2.73 3.02 9.59 2.73 9.29 10.7 10.2 10.2 11.5 5.44 9.34 5.59 9.66 7.11 1.35 6.9 8.93 11.3 0.38 5.2 6.38 7.7 0.67 3.84 2.19 10.1 8.82 8.67 5.16 7.78 9.34 5.87 8.34 1.99 9.54 11.3 8.17 6.44 12.3 7.46 10.3 7.1 6.63 0.38 7.33 8.99 7.63 6.72 8.76 8.21 10.2 4.26 7.69 7.46 7.46 4.52 5.06 6.28 8.25 13.9 5.49 8.91 5.31 4.71 9.87 9.48 6.34 8.01 5.76 6.01 7.48 8.52 8.46 6.47 6.77 3.65 6.84 10.7 8.73 8.68 8.74 11.5 3.51 7.19 9.21 7.74 7.45 9.32 9.4 4.6 8.55 0 4.85 8.62 3.69 5.74 4.58 9.5 8.69 7.78 9.89 6.9 7.86 9.55 6.91 7.79 5.87 2.97 6.86 6.21 11 9.16 7.77 9.76 8.85 8.72 9.85 10.2 9.78 8.93 0 7.65 10.6 6.68 8.95 9.89 8.84 9.78 7.99 10.4 3.58 9.61 8.68 9.14 6.99 9.8 9 9.1 10.4 3.51 9.39 5.52 8.62 5.02 10.6 11 11 7.46 6.69 7.83 9.4 5.78 9.32 10.4 8.98 4.85 7.84 9.34 8.73 8.81 8.76 8.84 8.76 7.77 8.47 8.91 7.08 8.04 0.38 8.86 9.73 7.67 7.79 8.82 9.8 12.5 6.98 7.23 7.44 10.1 9.51 9.36 9.13 11.3 0.67 7.59 11.3 6.48 8.42 4.63 7.66 6.82 7.84 7.82 9.4 7.09 4.84 9.76 8.22 1.13 4.9 12.2 8.48 8.37 8.68 2.64 2.67 10.8 9.92 9.08 5.04 10.8 4.39 3.55 8.22 0.38 6.41 8.06 8.28 8.9 7.34 7.76 10.6 9.84 8 7.18 9.86 7.56 9.75 9.23 8.93 8.23 10.4 9.55 9.15 6.75 1.99 9.34 4.7 5.51 8.92 10.1 13.6 10.2 1.48 9.8 2.37 9.5 9.68 7.37 9.15 5.36 2.28 7.44 0.38 10.1 5.36 13.1 9.55 8.2 1.57 8.25 1.88 3.75 10.7 6.83 9.07 8.1 9.01 8.48 8.34 8.77 9.79 9.03 9.37 5.34 9.89 5.8 4.78 11.3 8.68 10.2 11.1 7.17 10.9 9.88 9.98 6.47 7.36 8.05 2.91 7.34 7.87 2.45 13.1 9.36 9.08 10.1 8.17 10.1 12.6 3.9 8.6 6.76 10.2 10.8 8.96 7.08 7.81 12.9 9.19 8.41 8.15 10.6 9.42 10.1 8.84 9.13 10.1 10.7 5.72 3.46 10.4 6.45 1.62 2.09 9.86 6.25 5.81 3.02 8.89 1.19 1.99 13.1 8.76 7.51 6.82 10.3 9.49 8.58 10.9 10.8 8.85 5.95 11.5 11.6 10.2 9.69 9.7 13.1 11.3 10.1 10.3 9.11 9.6 8.03 7.7 8.47 11.6 8.23 10.4 9.57 5.05 7.44 10.7 9.23 9.39 7.99 10.2 8.29 8.44 11.6 8.82 7.79 10.4 9.13 11.3 5.76 1.88 10.1 3.78 9.27 9.62 9.14 13.4 8.13 6.23 4.45 5.54 11.6 5.09 9.79 10.1 9.72 6.6 11.1 9.16 9.63 7.24 9.91 3.81 10.5 7.26 7.37 10.1 9.61 10.8 10.9 8.18 7.65 12.1 9.21 9.53 9.37 13.1 12.4 9.37 11.6 10.8 10.8 12.1 12 10.9 10.1 3.08 11.1 10.8 8.01 10.3 8.84 8.05 10.4 9.09 8.91 12.4 11.2 8.33 8.48 10.1 8.22 8.97 10.1 5.85 14.1 4.77 8.73 10.1 10.7 7.29 8.67 2.19 2.09 14.1 9.27 10.6 8.82 10.5 7.08 11.4 11.7 9.2 9.62 11.6 10.2 9.09 10.3 10.6 11.5 11.1 10.1 9.3 10.8 8.14 9.85 6.6 7.3 4.61 9.81 8.77 12.8 7.89 7.59 3.02 1.13 7.77 11.6 11.7 13 9.38 11.9 12.8 9.04 11.5 9.47 8.06 9.62 10.2 9.82 11.5 9.45 5.32 8.85 7.2 10.9 7.17 0.92 3.29 3.22 8.03 6.47 6.28 4.98 9.89 7.32 7.72 8.96 11.5 5.81 9.7 10.3 10.3 11.9 10.2 4.34 7.33 5.02 1.13 10.7 9.3 4.58 11.1 10.5 3.93 9.78 7.29 4.12 8.04 0 10.7 3.96 13 10.8 12.4 6.39 8.09 8.34 10.5 9.2 7.57 10 11.1 7.03 7.44 8.98 10.5 4.37 9.7 9.19 9.97 8.01 7 11.8 8.75 8.47 10.4 5.49 0.67 11 0.38 8.11 10.5 8.61 8.99 8.2 8.44 8.02 12.2 9.03 10.4 10.1 9.61 5.9 4.39 9.98 13.7 11.7 11.3 10.3 9.6 9.68 10.2 11.1 11.7 10.8 9.02 9.56 9.14 9.6 9.94 10.7 11.6 10 9.74 10.4 10.3 3.31 10.3 7.07 12.1 8.43 10.3 9.82 6.91 2.67 11.2 8.14 1.88 7.86 9.11 5.97 10.2 9.3 9.21 10.4 10.9 10.1 4.37 3.55 0.45 9.62 10.5 10.1 9.18 9.61 8.85 5.32 10.7 11.6 7.54 9.56 11.4 9.42 10.8 1.62 2.86 5.15 11.2 3.13 1.99 11.1 9.41 11 1.76 0 8.52 6.64 10 6.66 11.6 10.1 7.42 5.91 4.54 5.11 2.52 6.28 9.31 8.16 8.62 7.22 10.8 7.85 7.92 7.68 11.2 8.37 8.49 3.22 2.49 1.88 1.53 3.27 7.11 4.12 8.77 9.8 5.24 9.88 7.5 9.98 11.4 7.33 0.92 9.45 9.41 10.3 3.31 7.9 7.55 8.97 8.01 8.98 6.31 1.76 5.85 10.1 10.6 11 6.73 6.15 6.42 9.4 4.81 10 11.1 0.92 10.3 9.92 9.36 0 9.95 9.23 8.58 5.61 7.31 6.39 8.67 12.4 9.48 8.65 9.48 8.41 7.84 12.5 9.6 7.12 8.1 10.3 6.83 0.92 2.73 3.13 8.69 10.1 9.82 1.76 4.01 4.37 3.58 0.92 7.45 11.5 8.76 6.35 7.97 9.64 7.45 2.8 6.71 7.06 7.93 6.67 0.67 5.09 7.15 6.47 8.85 8.17 9.13 8.41 9.64 7.69 7.69 9.8 9.51 8.67 12 7.55 8.73 4.52 8.49 10.9 9.78 9.42 12.1 8.17 8.93 8.05 6.95 8.87 2.6 10.4 9.99 9.36 9.44 1.99 8.53 7.22 9.45 9.47 6.73 8.73 7.98 10.1 8.92 10.2 9.14 4.87 9.86 9.78 5.46 7.22 2.52 2.39 6.87 4.47 9.6 10.8 8.12 9.22 7.12 7.57 7.86 7.38 9.79 3.93 8.53 4.26 4.09 9.21 7.24 9.93 7.17 10.1 8.54 1.4 7.05 5.69 0.38 5.57 10 8.13 8.14 12.4 4.91 8.44 8.98 7.73 4.14 9.63 10.5 6.5 11.7 8.99 10.2 10.1 8.52 9.86 7.94 9.11 10.5 10.2 9.33 8.85 4.85 9.37 8.41 9.42 5.87 11 4.39 8.05 7.36 7.73 9.84 10.3 11.2 10.3 10.3 9.6 6.85 10.3 2.73 7.79 9.09 7.61 9.66 4.12 5.39 9.82 10.1 10.3 9.87 3.13 9.36 5.54 9.79 11.3 7.37 7.03 8.33 7.91 1.62 0 5.4 5.78 7.36 6.05 3.17 11.3 12.3 7.82 9.98 10.8 3.9 9.5 10.1 9.16 10.2 9.41 8.95 5.48 9.92 10.1 10.3 9.71 5.64 6.94 4.14 9.54 7.69 10.7 10.6 0 4.3 9.38 7.53 10.3 7.87 11 8.79 5.36 8.96 9.06 8.98 9.86 2.97 9.75 5.52 4.09 7.29 11.8 5.28 9.47 6.92 0.92 9.77 11.1 6.52 9.77 5.7 8.23 7.48 9.11 6.12 8.03 6.81 12.2 7.21 8.43 8.39 9.76 9.15 5.7 9.87 8.88 7.84 10.2 5.76 9.73 8.03 9.94 1.99 8.23 8.89 8.7 7.08 3.58 11.1 7.46 10.6 14.7 7.69 7.97 11.6 7.27 4.95 6.37 7.08 5.75 8.55 4.85 5.35 10.4 10.5 6.84 5.65 7.34 3.65 10.3 7.48 9.86 9.24 7.71 11.3 7.68 3.39 10.5 5.39 8.9 8.31 11.3 7.7 8.01 7.55 8.49 8.75 7.34 7.86 12.1 10.9 5.46 7.41 9.54 3.31 5.07 6.88 9.43 0 8.25 4.43 8.09 8.99 6.76 5.8 5.37 7.9 11.4 6.84 8.54 7.89 7.71 9.78 10.6 9.66 8.46 7.95 7.67 11.3 9.83 6.45 7.76 6.85 9.47 7.43 9.77 7.4 11.6 7.4 12.3 7.17 10.6 5.4 10.4 9.06 11.8 9.68 11.3 5.81 8.77 12.4 8.73 8.02 7.54 8.76 8.78 7.07 8.09 2.73 0.38 4.76 5.1 2.6 2.28 1.48 3.43 7.63 10.3 0.38 9.17 10.8 7.26 10 8.85 4.68 6.11 7.83 7.67 12.4 6.87 9.91 3.55 7.1 10.7 8.95 8 9.77 9.78 3.72 10.8 9.1 4.54 4.07 12.3 7.3 1.76 9.99 8.33 7.46 9.88 9.12 3.39 9.89 7.98 5.17 4.76 9.31 8.67 4.16 6.55 9.69 6.12 11.5 9.55 11.6 8.34 10.8 10.5 9.81 4.48 9.87 9.14 10.2 9.25 9.56 4.19 9.7 9.77 9.27 7.97 8.97 11.7 10 12.1 10.3 8.55 6.18 10.7 12.4 8.05 5.97 11 8.54 1.99 8.55 6.29 9.75 12.4 12.7 3.84 9.3 10.1 7.08 8.17 8.59 6.54 10.9 10.8 4.95 2.19 7.41 8.53 7.75 2.86 8.58 0.92 3.13 6.56 8.99 9.18 8.02 4.71 3.84 5.27 10.3 8.23 1.99 8.35 8.46 11.2 8.8 11.2 6.22 4.04 8.79 10.6 7.41 10.1 9.04 11.7 9.73 8.86 9.94 1.76 9.53 9 8.72 10.2 9.88 4.39 9.77 6.21 12.6 7.04 5.01 11.6 8.58 9.04 10.2 7.35 9.84 11.3 9.09 1.75 11.6 9.12 10.3 5.81 0.38 11.3 12.8 0.67 9.37 8.81 9.97 7.27 10.2 2.67 6.57 0 7.88 6.81 5.65 7.89 10.2 10.4 8.2 0 12.4 7.78 9.54 7.89 4.7 7.82 8.93 5.78 3.02 1.48 9.8 7.95 8.9 10.5 2.8 10.6 9.26 10.9 8.51 12.2 9.96 3.02 5.63 10.4 5.84 9.27 0.46 8.16 0 7.3 0.38 10.5 8.78 11.1 2.19 8.33 8.8 10.3 3.39 7.44 4.01 7.97 9.59 6.81 8.26 10.9 5.11 9.05 7.67 5.91 3.96 11.5 4.12 10.1 3.81 6.36 9.04 9.95 6.54 10 10.5 0 8.55 9.43 7.56 9.83 8.79 10.2 8.39 9.24 9.46 9.33 6.69 6.93 5.18 9.29 4.43 11.1 10.1 3.08 11.1 8.78 9.52 7.99 9.1 9.48 11.2 9.29 11.5 9.01 9.46 3.55 5.22 7 5.64 10.6 3.31 9.43 5.74 9.72 7.43 8.28 6.97 11.8 14.2 11 9.93 12.1 6.5 7.24 9.13 8.14 9.05 9.27 8.55 8.8 9.34 3.17 10.1 7.95 6.86 9.64 9.56 3.13 10.4 10 10.1 8.88 10.2 9.77 10.6 1.31 8.77 6.6 9.32 7.68 4.21 8.5 6.65 5.09 7.2 8.72 10.7 11.7 9.91 6.55 9.62 4.87 9.09 8.61 12.8 11.9 8.21 10.7 6.05 11.4 9.03 11 10.1 10.3 3.99 0.67 12.4 10.6 6.29 8.49 7.84 11.4 8.07 10.8 10.1 10.5 10.4 10 12 10.1 10.7 8.45 11.7 8.27 8.76 6.22 8.4 9.83 10.2 10.7 4.58 8.58 9.57 2.73 9.6 7.68 12.7 10.4 11.3 10.8 9.8 8.68 10.3 12.3 9.48 10.2 10.5 7.94 8.97 11.2 11.2 10.4 7.62 9.08 7.47 9.93 10.3 8.96 9.17 11.8 9.46 8.95 10 8.41 7.94 11.4 9.42 7.78 8.79 12.3 11.1 3.81 9 11.9 8.28 1.76 14.1 10.8 12.9 9.57 9.36 8.29 6.34 12.2 10.2 11.3 12.1 9.99 6.92 11.1 10.1 8.52 10.9 5.88 7.04 3.39 10.7 4.81 9.87 11.7 5.84 14.1 13 9.67 9.45 8.4 10.2 9.36 12.2 12.2 11.6 9.49 10.8 9.94 10 5.79 8.13 10.4 8.4 11 9.95 8.78 9.3 9.64 7.82 8.46 11.6 13.5 12.4 8.24 9.66 10.5 6.71 10.2 5.69 12.2 13 10.1 1.76 11.2 9.68 10.2 9.54 10.2 8.88 9.54 10.1 13.9 7.82 10.7 11.4 9.16 11.4 10.9 6.12 10.4 12.9 8.22 11.6 9.14 9.45 9.48 10.6 8.08 10.6 11.4 6.75 6.07 6.85 8.88 9.34 9.7 12.6 8.69 2.52 8.2 3.13 10.5 6.8 9.62 9.69 9.37 4.79 10.2 3.22 8.79 7.95 16.1 2.09 5.07 9.95 9.67 9.18 9.63 9.77 5.69 9.78 9.63 9.25 10.5 8.07 8.74 11.1 5.53 8.58 9.95 6.03 13 8.42 9.81 7.88 9.66 8.64 11.8 10.1 13.1 7.32 6.69 6 8.09 8.5 10.3 8.12 10.3 7.33 12 7.38 9.27 10.1 11.5 8.17 9.57 12.4 9.3 9.14 10.2 11.5 11.7 10.8 11.1 9.26 9.66 8.38 12.2 9.28 12.6 7.3 11 10.8 8.46 9.7 11.3 9.12 11.4 11.4 10.4 11.8 10.7 3.87 10.3 11.2 6.6 10.2 12.3 11.9 11.5 9.62 10.2 0 11.3 8.92 9.49 11.7 6.93 10.4 9.17 10.2 10.8 10.2 9.63 11.1 9.3 9.91 8.65 10.2 9.39 10.3 7.66 9.76 11.1 8.58 4.39 9.75 2.91 7.13 8.99 10.3 9.6 5.79 8.67 9.93 8.93 9.66 9.46 9.83 7.02 8.17 8.07 8.56 9.92 8.09 7.01 2.52 10.5 8.4 10.4 8.01 10.4 10.7 5.14 8.44 6.5 11.9 11.3 9.82 10.5 10.1 10.9 9.96 10.3 10.7 11.6 10.8 10.6 10.3 8.09 11.1 10.8 11.7 6.76 10.1 8 11.3 8.95 11.8 7.54 10.3 9.38 9.51 8.36 10.9 11.9 5.88 9.47 7.79 8.27 11.9 11.1 10.4 9.14 7.71 9.63 11.6 10.1 11.1 8.19 6.96 5.84 9.85 7.72 5.97 10.2 11.7 11.7 6.19 11.7 10.3 9.33 7.99 9.09 10.4 12.1 9.13 10.3 8.41 10.4 11.5 5.29 11.7 9.05 7.88 9 10.7 13.1 1.76 6.84 5.53 10.8 9.96 7.09 13 9.58 7.11 10.4 6.34 8.45 5.97 8.32 10.4 11.1 8.92 12.6 9.5 2.37 5.86 11.9 10.4 11.1 9.1 2.75 11.1 9.05 10.3 9.39 9.39 12.5 9.17 8.56 5.46 9.49 11.4 9.16 11.8 12.8 9.36 12.6 1.13 10.9 9.11 9.67
-TCGA-CV-6942-01 5.56 9.3 4.69 8.62 6.13 9.58 2.16 3.32 3.11 3.1 1.51 7.46 5.76 4.4 5.5 8.34 10.4 9.81 7.04 9.34 8.13 13.5 9.91 1.25 9.71 7.33 4.08 10 4.51 5.85 5.84 7.39 2.98 0 3.51 2.73 1.91 6.32 2.71 3.51 4.84 3.67 7.65 1.62 6.71 3.32 0 2.71 10.7 6.71 3.22 5.07 7.78 10 6.85 2.16 5.8 0.76 5.61 9.56 7.73 3.51 7.8 2.27 3.82 1.62 5.04 5.76 10 2.69 4.77 5.96 5.26 4.57 1.91 1.62 4.75 5.09 3.51 0.76 5.65 2.85 2.06 10.1 4.08 0 7.06 0.76 1.62 3.1 8.17 3.42 7.78 6.51 3.97 3.67 1.25 2.55 6.07 6.51 0 2.36 1.91 5.72 0.76 3.67 7.46 7.29 6.65 5.31 0 0.76 8.11 4.81 5.55 2.71 3.21 4.61 2.1 3.22 2.71 5.12 1.91 2.85 2.71 6.19 0.76 0.76 4.3 11.9 2.56 4.02 3.75 7.48 3.67 0 3.42 1.62 2.08 7.8 4.35 9.93 4.35 2.71 4.81 11.9 1.25 10.6 2.36 0.76 4.59 0 7.84 9.48 11 4.19 1.91 0.79 10.2 4.57 7.03 7.05 2.36 2.16 8.29 6 5.88 5.81 10 1.91 10.3 9.58 2.36 3.59 4.28 2.85 5.31 3.53 7.83 7.82 4.44 8.59 3.82 3.75 3.17 0 3.82 1.25 8.6 4.94 6.51 10.2 3.82 4.4 3.82 6.16 3.42 10.3 9.91 8.22 6.8 8.03 9.42 10.4 9.42 8.98 6.73 9.8 10.9 11.3 8.05 10 11.4 11.4 10.2 10.1 6.68 10.9 8.57 11.2 9.39 8.59 11.1 10.6 9.28 9.07 5.69 11.8 9.1 12.5 8.77 5.23 9.84 8.92 8.83 7.51 10.9 7.09 9.3 3.1 11 7.03 12 12.3 12.1 12.9 12.8 12.9 7.06 11.1 9.7 2.85 7.52 10.4 9.89 8.68 11.4 11.9 2.55 12.8 1.62 10.1 11 10.4 8.89 10.8 10.6 9.91 12.1 11.6 7.78 7.57 8.21 9.33 11.3 7.42 0.76 12.6 11 10.9 12.6 11.2 10.8 7.76 9.96 9.49 9.82 7.73 11.9 9.78 7.21 4.3 10.8 8.14 9.2 10.2 8.15 13.5 8.69 7.2 9.36 11.4 9.44 9.6 9.78 12 2.55 8.92 8.34 8.9 13 9.7 6.83 10.8 5.23 11 10.4 4.35 8.23 6.68 9.91 10.3 10.1 10.4 10.6 11.3 11.8 9.61 9.31 8.59 10.7 8.51 11.3 7.94 10.2 10.7 8.34 9.75 7.31 9.62 11.8 10.3 9.12 9.85 8.17 13.4 11.7 9.18 11.7 11.8 11 5.25 10.4 4.14 4.08 9.75 7.01 10.5 2.16 5.81 8.12 12.2 10.6 10.5 8 6.56 7.81 6.91 6.6 5.83 6.76 11.9 10.3 11.1 9.81 7.14 8.82 10.9 0 8.66 9.5 9.8 9.44 9.93 10.6 10.8 4.73 8.43 8.14 9.31 9.44 8.4 11.8 8.44 8.5 11.9 9.95 6.68 8.54 8.21 10.1 10.3 10.1 9.7 11.8 11 9.37 11.4 9.73 9.25 7.63 6.73 11.3 8.37 9.14 11.2 9.66 9.88 9.14 9.31 9.29 10.4 8.09 11.6 7.52 10.7 10.5 11 4.14 10.3 10.4 13.3 9.65 9.56 6.79 6.25 7.67 9.3 9.26 9.48 10.5 10.9 9.04 2.98 11.8 8.09 7.68 9.22 12.6 9.89 2.73 7.35 7.61 11.1 9.29 8.39 10.3 10.8 7.78 6.64 7.81 10.4 11.6 3.89 11.2 8.15 4.49 5.41 6.89 7.91 7.89 4.53 9.68 4.19 11 9.31 8.87 9.85 9.62 8.28 15.1 12.3 1.39 9.07 11.4 6.65 14 10.1 8.7 5.07 4.91 9.25 8.55 5.83 13.5 8.52 7.54 9.57 7.69 13.9 11.3 15 9.28 8.1 8.56 9.62 5.29 9.63 8.56 9.93 0.76 10.7 7.08 14.4 9.73 10.7 10.7 11.1 9.31 11.1 6.64 10.9 10.3 10.8 9.97 9.92 9.18 9.81 9.34 8.99 10.4 10.1 10.6 8.81 9.39 12.6 7.82 8 10.2 9.47 10.2 10.6 5.21 10.3 8.46 0 9.71 10.1 11.6 9.82 10.3 10.7 12.4 11.4 9.53 11.6 7.61 6.45 9.77 8.16 9.54 9.07 10.3 9.59 9.82 3.32 10 7.86 10.4 10.8 9.25 11.8 10 9.22 9.23 11.4 10.7 10.3 10.9 1.62 13.3 9.78 10.4 10.9 12.1 12.6 11.4 11.1 8.37 8.77 10.6 8.43 0.76 9.16 6.46 8.71 8.37 9.59 12.2 10.8 11 9.26 11.2 9.54 4.25 4.87 10.8 9.29 7.65 12.5 8.31 10.8 11 12 9.91 11.2 12.4 8.17 2.85 10.4 9.96 9.78 10.6 8.45 9.8 8.1 10.5 10.6 11.5 12.6 9.52 9.72 11.1 11.1 11.3 8.92 11.9 10.2 10.4 11 9.44 7.93 10.5 7.71 3.67 7.23 11.3 4.65 9.92 10.1 10.2 4.25 11.1 6.67 10.2 3.89 11.1 11.3 12.9 12 11.9 12.2 10.6 9.94 8.38 7.5 10.6 8.81 7.04 9 9.1 12.1 11.6 8.78 10.3 12.7 4.3 7.82 12 8 9.86 9.54 5.67 9.15 11.3 10.6 10.9 8.23 9.67 10.9 7.32 10.3 10.1 10.1 11.5 9.39 11.9 9.23 7.81 8.22 7.76 9.37 12.8 10.9 13.2 13.2 8.36 11.5 12.5 11 1.62 10.9 8.46 10.2 2.41 6.02 10.5 7.8 6.21 9.71 10.7 6.71 9.71 11.8 12.7 9.43 6 12.1 10.7 9.61 5.36 2.36 8.38 10.2 5.15 8.32 7.07 5.83 10.7 8.6 11 7 1.91 4.77 9.35 9.31 11.2 1.91 5.48 9.56 8.01 1.62 4.08 12.1 10.5 5.43 5.21 7.96 4.19 9.86 10.1 8.37 2.98 8.66 15.7 8.55 8.8 11.3 10.4 11.8 12.4 9.4 11.1 9.17 9.23 3.64 10.8 6.37 1.96 2.98 2.97 8.71 6.95 10.2 5.5 7.52 9.33 4.35 5.07 11.9 12.1 8.03 6.48 12 10.6 7.18 10.9 9.85 10.4 10.3 9.77 10.8 11.1 10 10.6 8.23 9.32 11.9 8.49 6.63 9.4 8.6 9.43 7.91 11.7 8.58 9.78 7.09 5.56 8.65 10.8 8.02 3.51 5.8 13.2 10 0 11.8 8.45 9.99 12.2 9.1 6.7 4.4 9.76 0 4.53 6.99 9.51 5.18 7.55 8.83 9 4.53 6.9 1.91 11 9.56 6.38 12.1 12.1 9.84 8.22 11.6 10.8 5.12 8.26 3.32 7.22 9.82 11 10.8 9.14 9.66 7.97 6 6.49 3.82 10.1 0.76 4.53 9.12 9.81 3.51 4.57 11.9 6.28 9.73 6.44 7.05 2.55 12.1 9.18 10.7 10.8 5.18 10.3 9.87 7.75 11.9 9.1 10.4 8.94 10.7 9.92 5.46 6.25 3.1 12.1 10.3 11.4 0 10.8 9.89 11.7 11 12.2 8.07 9.01 10.7 11 9.24 1.62 11.2 3.32 11.2 4.65 10.9 10.5 7.84 3.32 9.51 11.1 12.2 10.9 7.57 10.6 12.1 8.68 10.5 10.9 10 9.22 10.6 13.1 10.9 12.1 12 11.3 5.65 12.2 11.7 8.1 7.23 11.3 12.7 12.9 13.3 10.4 9.04 9.94 8.37 8.9 11.2 8.86 9.23 11.3 6.59 11.4 10.8 11.2 10.7 7.57 2.16 13.2 7.18 10.5 5.66 10.7 9.81 5.95 10.3 9.94 8.94 9.38 4.3 10.9 8.97 1.62 12.5 8.91 10.2 9.01 9.69 7.82 8.43 8.54 10.9 6.36 4.35 7.72 8.18 4.84 8.49 12 7.25 12.9 7.39 8.59 10.8 11.7 9.56 7.71 9.58 1.25 8.46 12.5 9.7 11.3 11 11.7 9.43 11.1 10.2 10.9 10.4 7.07 2.71 9.34 11.2 9.21 9.56 8.37 7.57 12.3 9.73 10.3 10.4 7.94 4.53 10.4 11 12.2 8.3 6.7 10.6 10.8 5.88 5.36 8.26 2.98 7.66 8.65 12.6 9.18 12.8 7.12 8.96 9.5 8.84 5.81 9.91 8.53 9.1 9.73 7.86 10.3 11.6 10.4 11.2 9.03 7.18 9.82 5.41 8.05 9 9.39 1.91 10.2 3.67 8.06 8.69 11.6 1.62 10.9 9.04 2.71 12 9.28 9.75 1.25 7.65 7.72 7.65 1.62 5.8 11.1 9.92 5.93 7.28 4.08 9.98 8.65 7.96 7.29 6.92 9.36 11.1 5.66 9.34 9.7 8.9 12.9 9.56 9.51 8.24 7.37 11 7.59 6.91 11.4 11.3 8.56 8.52 10.2 10.8 7.46 10.2 8.47 6.4 9.22 12.4 9.96 0.76 7.41 9.61 8.79 8.74 10.3 9.94 12.1 8.47 8.12 8.22 7.25 4.65 7.42 9.34 7.96 11.6 9.72 8.26 9.49 9.38 2.73 8.32 8.45 11.3 3.75 13.8 11.2 5.9 9.07 8.74 9.13 10.9 6.37 9 9.76 9.86 7.57 7.79 10.6 9.27 5.61 7.25 10.1 10.2 7.33 9.75 6.51 4.53 7.94 4.65 8.53 9.66 10.6 0 3.32 9.53 11.4 8.64 9.57 10 10.1 8.74 10.6 4.77 11.3 6.2 8.12 7.79 8.5 8.66 10.5 9.19 10.2 2.71 2.16 10.5 6.98 11.7 9.98 8.34 8.86 5.21 9.81 8.99 10 7.92 5.67 2.16 8.22 4.02 10.9 9.22 8.42 8.05 9.5 8.78 8.88 9.61 11.6 9.2 9.76 7.98 10.5 9.63 10.2 9.76 10.2 3.67 9.34 8.05 10.9 10.7 8.07 13.3 11.8 7.4 12 7.71 4.91 10.9 5.23 2.36 8.81 8.91 0 8.68 10.4 10.2 9.98 4.73 7.4 10.2 11.6 10.3 7.24 8.56 7.16 7.66 11.9 10.2 2.85 11.9 10.8 11.5 8.2 12.3 10.1 12.2 12.4 7.2 8.99 9.11 1.25 10.8 10.5 10.6 10.4 9.68 9.85 6.43 11.2 0.76 12.7 7.33 6.7 3.42 6.66 5.65 8.17 6.87 2.79 7.41 6.34 8.98 5.18 7.44 8.85 11.5 4.4 10.5 1.62 7.2 8.4 2.85 4.37 10.6 6.7 1.91 3.67 6.57 8.95 4.63 1.25 7.11 3.17 7.31 0 0.76 6.81 6.06 7.78 6.76 9.26 9.29 8.13 3.51 7.75 7.69 5.45 10.5 10 8.66 8.69 8.86 0 11.1 7.65 6.12 8.35 3.82 6.67 6.81 4.87 8.06 2.98 6.73 5 5.12 5.43 10.9 0.76 8.3 7.85 5 8.19 8.47 9.28 6.39 7.7 10.6 9.89 9.49 8.97 10.7 5.38 5.8 0.76 10.6 4.14 8.58 11.4 7.52 7.62 6.57 9.86 9.47 9.1 4.69 8.22 8.89 9.36 8.68 4.02 9.81 10.9 8.72 5.51 3.32 5.54 6.63 8.6 8.05 11 7.46 4.02 4.77 8.66 8.43 9.97 11.9 6.9 4.77 5.88 9.78 11.3 12.6 4.57 8.77 8.57 10.9 10.8 7.06 9.38 7.15 5.18 9.14 1.25 4.49 6.75 6.82 7.44 9.55 10.4 6.28 8.83 5.78 2.98 4.4 8.89 8.77 0.76 10.3 10.6 0.76 7.24 7.99 6 0 8.11 9.28 10.3 9.13 8.95 9.65 7.76 10 8.69 10.8 7.94 10.6 9.75 2.55 8.98 6.58 8.41 9.88 8.6 8 7.3 9.21 0.76 10.6 6.1 4.4 0.76 7.7 0.76 10.2 4.97 6.29 5.43 4.3 1.62 10.3 1.91 2.16 9.35 10.8 7.99 9.02 9.17 1.25 5.48 5.43 8.07 10.2 9.66 2.98 8.77 6.98 3.22 1.25 9.93 8.71 11 7.48 8.1 10.7 8.13 4.44 6.12 4.4 5.07 4.69 7.16 9.2 2.55 11 4.84 8.58 9.03 13.4 10.2 11.3 1.62 6.53 4.44 9.37 10.9 6.13 7.16 12.2 2.16 6.6 8.85 5.7 7.49 9.97 6.93 9.77 0 7.19 1.25 8.66 0.76 9.85 9.54 7.28 3.42 8.34 10.9 5.36 1.25 7.51 9.89 4.4 8.9 9.04 8.18 7.98 7.18 8.95 4.4 7.42 8.18 11.5 13.5 8.53 0.76 5.12 7.94 8.85 0 10.4 10.8 8.77 9.45 9.03 5.8 7.36 9.87 9.88 11.7 10.5 9.83 7.23 2.16 1.91 6.06 9.23 3.75 3.42 8.14 7.7 8.24 11.1 3.1 7.33 11.6 3.42 3.22 8.34 11.6 13.1 10.5 9.18 5.92 6.6 12.9 3.51 9.48 9.64 2.16 3.42 8.11 9.45 8.64 8.94 10.5 3.42 1.25 3.32 4.77 3.59 5.67 2.36 7.96 6.36 9.86 6.88 6.16 5.67 10.7 9.18 4.65 11.6 9.67 9.42 1.91 10.3 8.83 6.52 8.55 8.76 8.52 7.73 3.59 8.31 4.14 9.79 3.42 8.67 4.94 7.92 8.51 5.21 8.02 8.27 6.19 3.82 7.74 8.23 4.19 5.34 8.47 4.4 5.09 9.51 10.1 4.65 7.62 2.23 10.5 0.76 9.53 7.95 7.39 1.91 3.51 10.9 7.49 15.8 0.76 10.1 10.2 5.78 5 8.18 9.26 8.15 10.1 8.89 6.87 8.89 8.21 7.2 11.4 10.6 3.67 5.63 8.7 10.1 8.03 4.87 2.55 7.01 10.6 9.3 5.04 2.98 2.16 6.49 2.55 8.2 9.57 8.07 11.1 5.56 6.65 9.18 2.97 9.9 10.2 7.33 8.6 8.78 7.47 4.73 12 7.44 7.72 4.81 8.83 3.1 8.29 8.27 1.91 6.1 4.4 6.92 10.9 5.31 10.3 9.42 1.25 6.77 4.65 6.41 3.82 8.3 6.95 7.01 8.75 6.1 10.4 2.71 1.25 9.94 3.59 1.91 2.36 5.23 8.29 6.88 9.04 8.67 8.82 7.28 11.2 10.9 7.01 10.8 9.68 8.04 7.12 6.55 9.05 6.86 4.14 6.82 8.19 12.7 9.59 3.96 10.8 6.59 4.25 3.51 7.46 8.76 11.3 8.92 8.3 9.3 3.89 1.62 2.98 1.91 5.15 3.22 11.7 2.55 5.85 0 4.08 7.43 8.33 6.4 9.01 1.62 1.62 10.5 9.53 5.97 7.62 8.7 2.42 6.57 10.4 3.32 2.55 0 9.23 16.6 5.8 8.61 3.75 15.8 10.1 2.85 0 1.62 8.01 5.61 10.5 4.25 8.3 9.49 16.1 4.08 9.21 14.2 2.71 5.36 2.55 9.97 11.1 8.28 9.5 0 9.15 3.32 7.47 8.35 14.5 3.51 7.05 4.35 2.16 4.61 7.44 7.41 6.28 10 10.9 3.96 10.1 2.71 3.22 11.6 9.26 13.9 8.15 9.02 12.9 4.25 4.97 13.9 8.9 14.1 8.85 6.06 14.4 7.29 13.2 8.64 7.67 8.66 3.51 8.16 8.88 8.72 10.2 8.84 8.96 9.36 3.22 6.79 6.76 0.76 7.61 5.68 4.3 6.17 0 9.06 5.74 11.2 9.87 5.85 5.29 4.57 6.74 13.1 7.22 5.38 4.65 4.87 5.41 9.41 8.3 0.76 8.16 6.37 8.15 8.13 11.7 5.07 8.74 11.6 4.3 1.25 16.2 1.91 8.87 6.03 7.65 6.55 8.38 2.55 2.98 2.71 0 7.9 3.1 9.02 8.08 8.26 12.1 12.3 7.19 5.5 8.25 10.9 1.25 8.3 10.8 8.44 11.7 9.58 7.11 0.76 10.1 10.5 3.1 8.9 4.49 1.25 8.27 9.41 7.33 8.92 6.79 8.76 0 2.07 6.04 11.2 8.39 7.52 2.36 4.02 3.31 7.46 8.29 5.56 12.7 8.5 7.37 8.25 5.85 10.5 6.32 6.82 3.67 10.1 6.69 3.42 6.64 6.45 6.63 9.4 5.92 8.05 10.7 8.63 11.1 8.74 3.42 5.52 9.43 4.87 12.1 6.38 6.94 9.76 10.1 9.67 8.92 8.91 7.73 8.12 8.41 10.3 2.98 8.04 11.3 9.94 3.32 7.03 9.88 6.48 7.48 11 2.85 11 8.28 8 11.4 11.3 10.4 8.62 3.54 5.9 8.67 11.2 5.15 7.55 3.1 8.99 2.85 9.46 7.19 0 9.93 3.22 8.39 7.47 0 11 2.55 2.16 11 3.51 2.71 8.13 4.61 6.71 8.62 9.86 5.45 7.15 5.21 8.39 4.44 4.69 7.74 9.34 8.57 8.49 8.87 8.23 8.07 6.27 5.12 4.81 8.3 0.76 6.09 10.4 6.07 5.45 10.1 0.76 5.48 5.43 4.19 6.78 10.9 8.03 0.76 6.31 10.4 6.83 5.26 5.48 9.7 8.28 7 7.37 11.1 8.92 4.08 11.2 9.86 8.63 2.98 8.56 7.79 1.62 6.32 3.82 8.44 7.84 13.5 12.2 6.86 3.82 0.76 9.82 9.31 5.78 11.2 10.7 5.38 6.88 3.75 9.75 8.7 9.05 4.81 9.9 9.14 7.39 4.4 7.85 13 4.57 4.61 9.15 10.8 4.77 0 6.49 7.18 1.25 1.25 8.02 4.75 5.8 4.19 8.4 5.5 6.55 6.16 7.56 8.48 4.67 4.44 10 7.01 9.84 7.62 2.55 9.66 9.87 4.08 10.7 10.1 3.42 6.68 7.75 7.96 7.61 3.59 11.7 3.22 10.2 1.62 10.2 5.54 8.05 7.68 2.98 2.36 11.7 9.3 5.59 0 2.85 2.85 0 4.35 4.3 6.64 8.49 2.16 8.61 10.3 7.88 11.9 8.56 10.1 12.8 7.4 4.08 10.8 11.7 9.31 9.51 8.43 10.5 2.71 3.1 8.11 7.58 4.77 7.49 6.78 5.04 8.29 10.1 9.95 7.26 0 6.54 9.28 8.58 6.36 9.07 7.25 7.35 8.6 3.22 5.09 7.08 7.84 1.91 5.38 10.5 7.55 8.4 8.92 10.2 4.4 2.71 8.12 3.1 11.1 7.62 10.4 4.14 6.69 4.81 8.53 4.53 8.4 7.76 11.8 8.05 8.31 12.7 2.71 2.98 6.01 12 3.82 7.51 11.4 5.63 2.36 7.11 5.54 10.2 0 8.58 7.73 9.37 9.25 10.1 8.31 3.82 5.86 4.26 0.76 6.72 9.86 0.76 9.33 3.22 2.85 12 8.81 6.07 8.26 1.25 3.42 8.86 12.1 7.09 1.62 8.81 2.85 6.16 2.16 5.59 1.25 12.4 6.82 5.83 4.65 2.16 11.6 7.18 7.56 5.41 5.07 2.98 9.96 6.57 11.2 8.96 5.7 1.91 6.91 0 2.55 9.42 1.25 0 9.15 6.45 2.16 5.97 1.91 7.78 3.59 8.54 3.59 10 8.58 7.54 8.59 2.85 8.25 9.87 4.61 13 5.21 9.92 8.08 8.1 9.76 7.16 9.19 7.49 2.55 5.21 2.71 7.9 11.9 11.1 2.85 12.4 6.65 5.23 8.5 3.51 4.61 1.25 3.82 6.66 7.97 5.21 9.39 9.58 7.91 3.89 6.88 9.49 6.38 7.51 7.94 4.94 5.48 1.25 9.15 5.81 9.25 5.07 5.93 6.29 3.96 4.91 7.71 8.02 7.64 9.86 3.67 5.78 4.94 6.17 8.24 3.59 2.55 6.52 7.62 2.55 8.88 7.05 4.4 5.56 5.18 4.57 2.36 6.77 7.53 2.16 7.5 4.87 8.17 2.71 8.49 9.41 5.18 5.85 9 8.26 1.62 12 2.55 2.71 5.31 9.62 10.1 5.36 2.85 9.91 4.83 5.15 9.58 7.36 12.5 9.67 0 9.83 6.57 5.63 2.55 8.59 1.62 5.23 7.82 6.45 8.67 8.15 5.12 1.25 5.52 6.13 4.35 4.35 12.9 11.5 6.44 8.51 2.98 6.31 12.7 9.45 10.2 1.62 6.74 12.7 0 3.89 11.9 0 2.55 1.25 1.25 4.02 4.08 9.38 1.91 2.98 8.24 9.41 6.99 8.26 10.4 2.01 4.14 8.39 7.87 8.35 6.1 7.8 2.36 9.98 8.66 9.58 1.62 3.29 5.36 9.41 8.16 12.1 4.35 8.76 6.47 4.57 5.23 8.35 4.97 15 8.93 14 7.31 1.62 1.91 3.1 10.5 7.17 6.37 7.54 3.67 0.76 9.16 6.67 8.94 10.8 3.51 4.19 8.92 0 3.1 1.87 11.3 4.94 6.13 6.12 5.5 11.2 0 6.59 3.1 12 3.75 4.4 6.32 0 6.4 7.73 8.43 11.9 7.92 2.98 5.29 0 4.73 1.62 10.5 5.09 9.57 10.3 7.67 8.46 6.21 11.8 8.53 9.52 9.87 3.22 3.1 8.65 7.42 3.51 10.8 7.82 6.24 3.59 12.9 2.98 8.15 9.28 11.4 6.78 4.44 5.5 2.36 7.09 5.83 10.4 7.65 5.41 7.26 2.36 8.65 3.32 6.61 1.62 6.04 7.69 7.12 3.42 4.53 7.8 6.67 4.25 8.14 11.2 8.16 8.11 8.7 10.7 6.86 7.5 10.3 8.17 7.13 11.1 10.9 7.44 6.03 10.7 7.89 0 1.25 3.51 12.2 7.59 5.85 6.15 10.3 1.91 11.2 9.18 10.8 8.28 7.61 5.92 6.81 8.03 0 7.66 2.16 2.15 8.18 8.42 5.43 6.23 7.54 5.84 1.91 7.18 6.15 0.76 9.43 10.9 1.25 1.91 7.34 4.83 9.04 5.54 8.49 8.8 6.95 0 2.36 2.36 8.85 4.44 6.13 10.1 1.62 2.98 12.1 4.65 4.08 9.57 4.44 2.98 9.94 7.03 8.67 9.65 9.4 8.44 7.28 3.59 0 9.2 6.38 9.64 6.96 7.93 1.25 1.25 10.7 3.1 3.67 2.45 5.31 9.65 1.91 10.7 0.76 1.62 2.55 5.31 2.85 6.78 3.59 4.08 1.62 7.36 4.87 6.99 2.36 8.73 4.81 10.3 3.67 4.87 2.85 4.35 4.57 8.25 5.12 6.39 3.42 5.54 7.69 0.76 7.45 4.3 4.08 0 4.49 1.25 4.14 4.77 3.95 4.69 10.4 7.63 8.97 4.91 8.03 2.55 4.61 7.99 5.98 8.34 10.9 5.52 0 11.8 11.8 3.22 10.2 1.91 5.21 1.25 0 11.8 6.99 6.27 4.57 9.55 10.1 0 8.5 10.7 8.56 11.8 7.52 9.29 4.73 6.24 4.81 7.84 9.66 10.2 11.2 5.85 9.35 6.4 9.13 9.18 4.73 4.35 9.39 10.9 3.1 7.88 6.38 4.08 11.6 2.85 5.89 11.3 0 3.32 10.2 6.23 4.35 7.06 2.98 6.79 12 11.1 2.55 11 7.58 4.02 10.5 5.81 10.9 6.21 3.59 4.49 5.31 3.42 5.07 4.49 5.26 7.14 10.5 8.03 8.92 6.32 3.96 6.67 6.2 5.45 6.14 7.28 9.84 5.83 2.16 12.4 7.5 7.39 7.28 5.21 3.89 7.59 6.38 6.32 3.32 8.31 7.33 6.58 6.61 3.1 9.67 2.36 6.81 3.57 6.84 8.62 10.2 12.9 6.72 10.2 8.12 9.37 1.25 8.05 8.66 0.76 5.12 8.28 9.47 8.98 12.8 10.7 1.91 9.21 3.1 12.3 7.25 9.8 2.55 3.22 0 9.25 2.98 8.74 3.41 3.1 4.19 1.25 9.79 3.22 8.45 13.3 12.5 6.82 3.82 4.08 4.65 9.36 7.19 11.6 8.19 12.9 13.5 1.25 4.84 11 5.61 2.98 8.91 2.16 10.2 6.74 7.19 12.6 12 3.51 9.06 9.47 8.78 0.76 8.25 6.16 11.5 10.6 5.98 8.47 7.31 6.71 6.33 7.35 9.04 8.91 2.16 9.92 8.65 9.35 4.08 5.81 1.62 5.09 6.68 4.02 9.12 1.91 5.83 6.37 7.09 6.09 7.58 2.55 8.78 9.36 3.1 4.87 8.61 6.2 5.67 3.51 9.76 8.35 6 9.47 5 1.62 3.22 10.3 9.35 8.22 2.16 5.45 5.38 4.77 2.71 2.16 4.73 7.39 3.51 3.67 8.71 9.13 4.84 9.84 7.14 1.25 9.87 3.22 5 3.32 5.29 3.89 12.4 5.54 6.92 8.6 3.42 10.2 2.16 10.7 8.82 2.36 9.44 3.59 4.94 12.1 5.07 11.1 2.71 11 9.27 10 6.84 12.8 8.19 8.8 7.37 9.71 12.7 11.2 12.6 6.91 8.02 2.36 10.7 11.5 9.15 10.1 9.69 3.22 8.36 7.32 11.5 8.15 6.15 8.19 6.43 8.68 8.85 5.78 7.41 7.16 9.36 9.11 7.77 0.76 2.98 6.68 3.59 5.72 8.66 4.19 8.07 10.2 13.5 9.24 3.1 9.53 11 11.7 11.7 6.28 8.3 8.26 10.6 9.72 2.16 7.65 7.77 9.18 7.49 4.35 8.9 9.57 7.69 10.4 10.9 12.1 0 10.6 1.25 3.32 9.95 12.8 7.07 3.1 11.7 11.1 9.88 11.1 4.61 11.3 14.9 8.73 5.04 9.15 8.87 6.64 10.1 7.59 11.7 7.62 10.5 7.65 10.5 11.1 11.7 3.42 7.03 1.25 10.8 10.9 9.72 11.2 10.7 10.1 9.39 9.25 7.91 9.32 11.3 5.81 8.37 9.03 8.64 8.49 12.3 1.91 13.9 11.2 11.2 11.6 9.97 5.23 10.3 9.11 8.05 9 8.76 10.3 11.2 7.56 8.25 11.4 15.5 3.59 3.1 9.25 10.3 6.53 7.54 8.78 11.2 14.3 13.3 15.4 9.87 11.1 6.54 7.9 6.55 12.4 10.8 4.19 4.4 6.63 11.3 8.66 10.2 8.67 10.3 11.4 8.59 8.46 7.69 12 7.66 3.42 5.69 7.66 1.91 8.21 4.4 5.4 8.97 2.98 6.66 11 8.36 4.25 9.18 10.3 9.57 11.7 3.75 6.61 11.1 9.15 2.71 10.4 8.28 6.94 2.33 12.1 3.89 8.08 10.8 2.71 2.16 5.36 1.7 9.26 5.26 4.69 4.02 7.57 9.06 14 6.15 9.21 8.93 4.73 7.67 9.7 11.8 7.44 12.3 8.63 10 11.3 13.5 13.8 12.5 14.2 0 9.27 2.16 10.5 6.23 4.97 10.5 3.59 2.55 4.87 7.8 3.89 10.4 6.21 6.06 2.98 6.48 6.1 7.79 5.31 4.91 9.02 4.49 8.2 7.44 7.22 9.27 0 8.33 13.5 8.58 11 1.62 3.51 10.3 7.96 4.65 8.75 11.3 6.69 3.82 2.85 2.71 11.3 10.3 4.32 9.51 7.8 0.76 7.11 9.02 8.5 3.32 9.64 4.44 4.4 1.25 9.97 7.35 4.49 6.16 8.78 9.54 5.23 6.13 9.84 6.56 8.53 7.27 6.68 4.14 7.35 7.49 9.42 10 3.42 9.24 8.79 6.39 10.3 10.6 6.1 8.51 5.95 9.26 7.03 9.34 4.14 11.9 6.38 6.57 9.56 8.89 8.96 5.43 9.48 9.18 1.62 11.4 4.02 12.5 2.36 10 3.59 6 7.32 7.36 10.3 2.16 1.91 8.89 9.57 8.58 3.22 11.7 9 1.25 1.25 10 3.51 8.86 7.91 8.09 6.96 11.5 7.69 4.73 5.69 6.73 7.72 4.08 12.1 7.13 3.42 16.2 4.69 6.07 4.49 1.91 0 7.8 4.65 5.69 8.28 11.9 7.02 9.35 10.4 8.61 7.79 15.1 9.38 3.59 2.55 2.36 8.7 7.29 5.34 8.25 9.05 8.56 9.05 10.9 6.09 12.6 9.54 9.05 7.16 6.45 10.2 9.16 10.4 4.35 7.48 11.2 12.7 9.97 6.03 9.41 8.69 4.44 8.26 0 10.3 10.2 8.18 9.23 11.7 6.09 9.74 6.21 5.48 8.8 8.88 8.45 7.84 9.43 2.16 5.93 8.97 11.2 9.06 10.5 8.78 1.62 8.99 10.8 2.36 2.85 9.2 10.1 8.9 5.93 12.7 3.59 8.75 10.2 8.15 9.88 8.35 10.6 9.29 11.9 11.3 7.09 12.1 10.8 6.46 6.91 9.83 5 10.4 1.25 11.7 10.4 11.3 9.95 8.23 11.8 12.9 7.66 3.22 7.57 8.55 8.44 0.76 10.3 9.84 8.04 8.18 9.59 11.2 0 13.1 12.2 11.7 1.25 8.35 10.8 3.42 6.03 10.4 6.09 8.58 9.3 0 11.1 9.51 11.1 9.39 12.6 6.64 1.91 7.11 3.82 7.95 8.49 9.1 6.04 6.93 0 10.9 7.01 11.6 9.48 8.45 9.05 8.66 8.05 10.1 11.1 11.6 9.33 10.7 10.2 5.93 7.41 9.47 9.14 12.4 11.2 5.15 11.3 7.62 3.67 5.67 12.1 9.13 11.9 5.04 4.53 8.09 12.2 5.52 9.5 3.22 10.2 13.2 4.08 6.54 8.94 7.19 10.3 7.03 5.92 7.36 7.11 8.87 8.03 11.2 5.67 9.05 8.5 4.87 10.6 10.9 8.11 8.37 12.1 4.19 10.8 3.32 8.63 7.65 5.82 7.68 2.85 4.91 8.9 3.51 4.57 11 0 9.26 8.28 9.73 3.32 2.71 4.84 1.91 7.79 3.89 4.69 6.85 9.83 6.84 5.54 1.91 6.62 7.5 4.65 9.33 6.81 7.48 5.44 12.5 5.74 7.91 6.55 5.5 9.36 10.2 2.16 8.31 6.73 7.46 5.59 11.8 9.66 6.81 9.12 9.16 7.73 9.83 7.28 10.9 5.83 9.43 8.57 7.77 5.98 6.15 9.81 11 4.44 2.71 1.25 2.98 4.65 8.44 4.25 4.66 8.33 7.79 11.1 2.55 8.66 10.2 6.73 8.15 6.38 7.82 6.39 9.56 3.89 5.26 10.8 8.5 1.62 10.6 8.85 7.26 8.39 1.25 8.9 0 7.69 6.53 8.23 4.69 10.4 9.64 11.1 9.07 8.37 5.74 7.33 8.86 7.63 8.12 4.02 6.86 8.15 11.6 6.73 9.01 5.83 0.76 7.97 7.44 3.51 5.43 11.9 8.54 6.82 0.76 3.42 8.91 0 5.1 9.94 2.36 2.16 3.22 2.71 3.75 4.53 8.13 3.75 4.49 10.1 8.36 9.25 5.65 8.93 8.53 10.5 6.69 11 6.52 8.28 8.39 7.15 5.38 2.71 7.24 1.62 9.87 2.71 4.08 5.45 15.2 9.91 12 0.76 9.16 7.2 8.73 10.6 4.35 8.82 11.6 9.78 10.8 9.95 8.78 7.61 12.6 8.85 8.82 4.84 10.8 6.92 7.59 8.59 10.8 6.61 11.5 5.92 12.2 9.1 11.4 9.12 8.12 10.8 12.5 10 0 7.51 9.51 5.81 9.36 9.45 10.4 11.5 8.6 2.89 2.36 9.19 9.42 8.76 9.84 6.45 9.22 6.87 7.79 2.71 10.6 8.68 8.58 10.4 10 10.6 9.01 10.3 2.71 9.13 7.56 11.1 11.8 2.36 11.8 8.63 8 6.74 8.49 10.2 8.98 9.25 12.2 9.74 5.93 9.66 13.9 8.04 9.6 9.96 7.78 8.98 11.6 9.95 6 9.08 9.8 2.55 8.79 9.43 8.69 3.59 9.13 5.54 8.02 8.89 11.1 10 10.7 10.3 9.33 8.32 8.81 12.1 7.32 7.49 10.5 0.76 11.4 11.5 9.89 7.81 6.34 7.92 10 8.07 10.6 9.52 10.8 10.6 8.84 9.84 8.41 12 10.4 10.9 6.85 7.44 13.2 7.76 9.66 0 8.82 9.16 8.58 8.33 4.69 11.7 8.42 3.59 10.4 6.4 3.51 11.4 8 8.08 4.19 10.5 12.1 0.76 3.42 2.55 10.8 12.6 10.4 8.95 7.67 4.87 1.62 8.06 11.6 6.74 9.2 9.36 10.7 4.02 8.2 1.25 10.2 9.41 11.1 9.66 8.98 10.1 11.6 1.62 12.8 11.6 9.95 8.3 4.77 0 11 10.1 9.39 8.5 10 9 9.43 7.43 9.31 7.83 10.2 10.2 9.26 10.5 6.44 8.34 9.66 10.4 11.3 11.6 9.47 9.58 10.6 10.3 7.22 7.94 4.94 10.2 11.8 10.2 10.3 11 10.6 4.97 10 10.3 11 4.14 8.46 10.3 10.2 10.7 8.82 9.19 8.39 9.3 11 10.8 7.82 8.94 5.83 9.89 7.51 10.4 8.66 9.66 10.4 9.72 8.27 8.69 7.46 8.9 10.4 8.78 4.53 10.4 6.84 10.2 8.71 4.63 8.95 9.5 9.08 7.84 8.22 9.63 10.7 7.83 3.36 6.67 9.5 9.91 10.1 4.91 11.5 9.36 9.76 10.2 7.03 9.14 10.1 8.9 9.87 7.73 10.2 12.6 10.5 11.5 9.11 9.21 10.3 1.62 5.26 6.77 1.62 10.5 9.25 11.1 9.58 9.01 9.82 9.84 16.5 10.2 9.18 9.4 9.59 11.1 10.9 10.4 10.6 10.6 8.78 13.7 11.7 8.02 8.97 9.53 9.85 9.25 10.6 8.95 7.8 9.41 8.02 10.3 9.47 10.8 9.91 10.6 10.7 10.9 11.9 11.3 11.4 9.96 13.2 8.15 9.59 12.2 10.9 11.2 9.58 10.4 6.75 10.3 12.3 3.42 11.4 8.7 2.55 10.5 9.52 10.6 10.5 11.7 11.6 12.1 10.4 2.36 10.8 9.98 5.12 9.13 9.29 10.7 12.5 9.27 7.57 7.31 8.37 8.3 10.9 6.99 7.73 10.5 8.39 7.44 2.85 8.64 8.5 10.1 10.8 6.74 9.99 11.4 4.69 9.73 8.89 10.2 9.96 5.31 8.02 10.3 8.46 8.87 10.4 9.86 8.77 6.95 8.29 9.32 7.69 11.5 11.7 9.29 9.25 8.94 7.96 7.92 10.7 10.6 9.27 8.91 8.31 11.9 9.96 6.78 3.22 9.75 4.97 4.69 8.89 8.24 9.2 6.47 9.19 10.2 9.8 10.3 11.6 5.92 10.6 9.52 5.04 9.02 9.72 1.62 8.93 10.6 7.8 10.2 10.7 9.08 8.77 12.1 7.29 9.13 4.94 10.1 9.39 10.1 8.55 6.48 10.2 10.3 12.1 9.06 9.08 8.11 10.3 9.41 9.59 8.33 8.08 10.6 10.5 5.31 8.32 12.2 9.67 10.2 10.4 5.9 14.8 11.2 11.2 11.7 11 9.37 8.99 9 10.4 3.75 9.84 9.55 8.11 9.43 11.3 6.49 12.8 9.74 11.1 10.3 10.1 8.5 9.54 7.45 10.1 10.1 11.4 9.14 10.3 10.1 11.4 10.7 9.85 11.1 10 8.88 11.1 10.7 9.25 10.5 9.96 9.2 11.4 10.7 7.88 8.91 9.42 11.1 12.6 8.6 3.96 8.63 8.43 8.74 11 5.95 1.91 5.92 7.18 1.91 9.11 11.7 8.12 11 8.87 7.18 13.2 10 1.25 9.08 8.12 10.1 11.8 9.81 7.58 11.8 12.1 12.3 11.8 8.02 7.21 5.76 6.91 7.62 7.71 11.4 7.23 8.63 6.62 11.9 10.4 12.2 8.63 9.71 6.72 10.9 10.9 10.4 7.14 10.6 11.7 7.33 8.91 6.44 9.01 6.77 4.97 5.78 12.2 8.39 8.24 9.93 4.44 10.4 9.04 8.08 7.2 10.7 9.91 11.2 9.86 10.6 9.37 9.94 10.7 9.73 9.99 4.65 2.16 13 9.04 10.5 13.3 10.3 9.99 8.31 9.2 12.6 9.31 8.41 2.16 8.35 9.85 7.5 0.76 10.8 9.28 5.65 11.4 1.62 8.84 1.91 3.22 7.74 10.5 11.1 10.5 4.81 5.07 6.94 9.07 7.96 8.68 11 9.47 10.6 9.78 3.22 3.42 9.36 8.04 8.41 10.4 4.08 8.11 7.75 6.74 10.8 9.39 8.66 3.59 11.3 10.8 9.96 9.33 11.8 9.81 7.34 9.05 10.1 8.75 9.4 9.48 10.2 9.85 9.61 6.62 12 7.85 10.4 10.8 9.27 11.1 9.44 2.55 11 9.91 10.3 10.3 3.51 1.62 3.75 2.98 10.9 6.57 11.6 10.3 2.98 10.6 6.91 10.3 7.61 10.6 11.1 12.4 9.52 9.08 9.15 13 13.3 9.72 9.63 9.44 8.39 10.5 9.98 11.5 8.58 9.21 9.74 7.67 8.43 6.09 9.39 8.13 10.2 11.1 4.02 9.71 10.1 11.1 9.5 7.56 8.85 8.74 1.91 9.57 11.2 1.91 13 9.69 8 11.6 10.8 11.7 10.8 1.25 2.18 7.98 8.16 8.5 9.63 10.4 10.3 10.5 7.2 7.12 10.3 9.48 6.98 11.8 11.9 9.91 3.51 6.31 3.67 3.92 8.24 6.38 7.42 2.55 9.57 5.67 3.59 3.67 6.07 8.78 5.78 6.85 8.78 9.56 1.91 3.51 5.54 10.7 9.09 7.75 9.1 6.53 6.31 14.8 10.2 11.2 4.14 15.6 9.44 10.9 12.6 7.81 7.94 5.56 7.16 2.36 5.8 10.2 2.71 5.8 7.95 6.56 3.89 9.51 1.91 4.08 7.84 10.2 9.53 3.59 4.25 9.51 9.57 9.95 10.1 5 10.9 7.84 8.74 8.79 6.13 3.96 13.9 8.86 2.36 10.4 6.55 6.78 9.53 8.62 7.46 0.76 11.1 10.8 7.67 8.25 4.77 5.07 6.21 8.35 2.36 7.41 11.2 2.98 0.76 8.41 2.55 2.71 7.88 8.27 7.46 5.74 3.89 5.38 6.01 9.08 5.56 6.99 9.26 9.65 6.93 5.38 13 0 1.91 11.2 4.35 8.64 6.2 8.55 8.13 3.59 4.73 7.1 3.1 0.76 2.85 9.26 8.45 1.25 6.37 2.85 7.98 0 8.75 5.29 6.38 4.69 2.85 9.43 1.25 7.56 4.87 10.1 10.1 8.12 7.9 5.8 7.35 8.35 8.27 9.33 6.77 2.71 2.16 5.15 7.23 8.9 4.02 7.87 2.36 4.17 3.51 8.45 9.86 5.04 7.39 5.38 8.15 3.51 8.5 6.75 2.71 5.21 2.55 1.25 0 0.76 7.23 2.16 6.9 5.59 1.62 8.67 3.82 2.36 6.06 6.04 5.78 10.3 5.5 7.94 3.51 1.91 6.12 0.76 7.14 4.02 2.85 1.91 1.91 10.3 9.29 1.25 6.41 6.94 7.38 10.5 8.32 9.39 1.62 8.53 11.8 8.89 8.27 9.85 5.67 3.67 7.51 4.97 7.09 11.7 10.9 2.16 10.4 7.5 10.1 7.57 11 10.8 8.2 6.69 8.02 6.32 10.5 5.63 9.31 7.06 9.13 1.62 10.4 10.9 10 5.54 7.59 9.64 10.1 8.45 8.7 2.98 12.6 10.5 6.41 10.6 11.4 7.29 0.76 11.2 7.92 5.23 10.4 3.59 10.4 7.82 10.1 6.49 9.25 9.76 11.1 8.29 10.2 9.12 8.61 4.25 8.28 9.12 10.2 4.73 13.2 4.94 8.09 3.75 7.53 10.9 11.4 9.56 13.7 9.3 9.13 3.22 12.7 10.7 9.2 7.31 9.71 8.09 7.98 10.7 8.7 3.89 7.45 7.98 9.37 10.4 7.86 2.36 12.2 7.9 8.43 10.3 10.9 9.61 8.83 9.31 10.5 10.3 7.51 11.7 8.68 7.63 9.14 9.79 10.1 4.44 8.98 11.4 11.5 1.62 7.88 9.48 9.89 3.96 5.23 8.33 10 10.4 7.2 5.15 9.8 2.55 9.53 0 0 3.51 6.03 10.4 8.65 12.1 8.47 9.21 8.64 8.86 10.5 9.96 9.8 10.6 8.65 5.34 11.2 10 10.1 8.88 7.79 9.32 6.54 10.5 10.2 10.3 4.49 10.4 10.8 9.38 17 9.49 8.76 6.8 7.09 10.1 9.17 10 8.87 10.1 6.58 10.3 7.93 12.7 7.56 9.22 7.72 10.4 9.41 10 7.59 4.97 10.8 10.8 7.02 11.2 8.52 9.76 9.32 11.9 9.47 10.1 6.32 9.7 10.9 8.99 9.38 11.7 8.12 9.12 5.43 7.6 6.79 7.33 11 9.86 4.97 2.16 6.53 9.37 8.81 10.6 1.91 8.34 8.95 8.3 7.69 4.87 9.23 8.43 7.73 7.65 4.08 9.41 6.2 9.73 10.3 10.4 10.4 10.1 9.78 8.38 8.45 10.5 11.3 9.83 11.4 2.71 3.75 6.99 10 10 9.75 10.2 9.62 9.02 2.36 11 7.96 12.5 10.8 2.98 10.1 10.9 10.3 9.65 11.2 8.92 9.64 9 8.69 9.77 11.1 13.3 11.6 3.89 7.62 8.93 8.48 10.4 5.29 9.76 6.25 8.72 8.24 6.81 5.04 11.6 12.2 8.07 8.03 9.46 3.89 10.2 11.7 10.3 8.2 11.8 8.01 8.08 10.9 10.2 10.4 7.21 10.9 2.55 9.62 3.1 8.75 11.3 2.36 7.76 4.91 9.77 9.81 8.72 5.48 9.17 2.16 6.61 5.23 6.24 9.9 10.3 7.67 8.03 7.07 6.12 7.3 0 7.37 7.3 4.69 10.2 8.65 7.57 2.48 10.5 8.25 3.1 8.12 9.13 7.79 6.1 8.88 8.81 7.8 8.43 8.22 8.09 10.3 9.6 7.06 7.7 10.8 10.1 2.85 9.99 0.76 9.25 7.2 8.6 7.11 10 9.38 13.8 1.91 12.1 10.1 10.4 9.95 8.57 0.76 8.48 5.56 7.02 9.75 10.1 7.41 8.92 11.3 10.2 3.51 12.6 8.63 9.53 8.27 8.42 8.62 2.55 8.62 12.6 5.87 7.66 9.21 8.3 10.1 8.97 9.76 8.74 9.63 9.35 11.5 3.22 3.59 0.8 11.3 2.98 2.76 3.32 10.4 3.51 10.2 10.8 10.7 9.11 3.22 9.78 1.25 7.66 5.63 11.1 12 8.39 2.36 8.65 4.05 6.15 9.89 9.29 11 2.85 7.11 7.35 0 8.93 6.52 10.2 6.36 7.79 5.8 9.17 9.19 3.82 3.1 8.84 7.9 3.51 4.4 7.96 0 12.5 6.93 10.5 8.68 8.22 1.62 7.41 10.3 8.7 9.91 3.42 6.27 12.8 9.53 3.32 8.09 9.7 14.9 9.65 10.7 9.76 6.71 8.9 10.3 4.61 4.57 10.4 2.36 8.31 8.17 5.95 9.81 10.5 7.91 12.1 8.38 8.29 11.3 6.41 7.73 1.25 6.06 9.35 8.17 9.01 11.5 12.2 13.2 2.85 9.53 8.07 9.42 11.7 11.8 8.47 9.27 10.5 10.7 12.6 6.76 8.32 8.02 10.7 3.82 10.9 10.9 8.7 6.9 4.08 10.1 9.59 2.71 1.25 10.2 7.74 10.8 11.8 9.68 9.17 7.09 6.64 4.3 7.84 7.14 11.3 6.06 4.77 10.8 1.62 10.3 4.19 5.81 8.3 11.1 4.02 5.07 9.6 7.9 5.45 0.78 7.48 7.14 5.31 5.76 9.38 9.26 2.36 10.2 2.71 8.74 8.49 2.55 11.3 8.68 11.7 8.08 5.81 4.14 11.1 7.24 0.76 6.67 2.16 2.71 3.22 8.14 10.8 3.89 7.62 11.9 3.22 3.67 8.03 9.07 8.58 9.52 5.65 6.75 7.34 12.3 11.2 7.99 9.26 8.82 9.04 10.6 11.1 10.9 8.43 8.8 3.51 8.84 10.2 0.76 0.76 8.27 1.91 5.26 10.3 8.66 9.12 7.71 4.08 9.38 7.56 5.41 8.6 9.6 10.2 6.1 7.84 4.87 9.01 6.04 7.33 8.26 11.8 4.49 10.1 9.9 10.7 9.7 6.33 12.1 10.8 9.54 12.8 12.5 9.87 10.5 9.87 8.78 3.1 5.15 9.25 8.93 9.18 8.18 5.78 9.4 8.96 9.96 5.61 9.93 7.53 12.1 10.3 9.75 4.02 10.2 8.53 8.26 10.5 4.81 11.2 9.57 4.44 4.44 9.11 11.7 9.4 5.52 12.9 5.09 12.6 8.43 10.3 6.7 8.7 11 11.2 9.76 12.9 11.7 4.91 6.74 10 14.5 1.25 4.49 13 12.3 5.6 1.91 9.37 11.2 7.55 0 8.78 9.18 5.9 10.6 4.61 2.55 11.7 1.62 5.12 9.16 10.8 11.2 10.9 11.1 9.92 11.6 9.64 3.89 16.4 4.65 2.16 12 5.45 10.2 13 2.36 8.49 2.98 7.57 9.47 8.81 7.42 2.55 3.42 3.42 4.97 8.19 2.55 7.72 5.21 3.67 6.82 2.71 7.97 10 3.1 5.36 7.03 2.85 4.35 4.25 1.91 8.79 14.3 6.48 12.8 11 2.71 3.82 6.44 8.77 2.16 9.26 7.52 7.55 9.1 8.01 3.59 6.15 7.96 3.1 7.75 7.56 6.68 8.1 9.57 3.51 7.45 8.52 10.9 1.25 8.26 6.23 3.51 2.71 3.96 4.08 4.49 0.76 9.22 2.71 9.89 5.18 8.18 6.88 8.99 3.53 1.62 2.31 0.76 7.11 3.1 4.44 3.22 8.61 0 6.03 1.25 4.19 10.2 12 10.1 5.41 0.72 3.89 5.48 5.37 4.3 8.48 0 2.85 3.82 10.2 6.03 6.89 0.76 4.78 9.03 8.32 10.1 5.12 6.57 5.48 3.32 4.81 8.33 7.24 0.76 1.62 8.78 9.31 10.7 6.52 2.36 8.57 9.23 1.25 6.6 7.36 4.53 6.94 6.01 7.73 2.36 9.77 5.5 3.32 2.16 0.76 7.13 8.72 1.25 5.21 0 9.98 6.34 2.36 8.18 14.2 7.02 8.07 3.42 7.97 2.98 4.44 8.41 4.44 9.36 4.14 1.25 9.38 2.36 8.65 1.91 8 1.25 5.16 4.94 8.33 7.59 8.43 5.94 7.33 5.45 7.02 5.45 4.49 4.65 9.46 4.53 5.81 7.22 4.53 5.09 2.16 9.34 4.35 0.76 4.84 2.55 1.91 4.84 7.79 4.08 7.65 5.63 8.14 2.36 4.02 0.76 7.3 3.32 4.02 3.22 8.7 4.14 8.6 4.3 5.08 3.96 3.1 3.84 9.46 0.76 3.59 3.22 5.26 1.25 3.22 1.91 2.55 6.27 1.62 6.8 3.82 4.44 5.5 6.22 1.62 7.48 6.17 10.8 8.85 0 0.76 3.82 5.14 3.32 7.23 10.2 7.33 10 8.98 0 8.62 0 4.08 6.39 5.93 6.71 6.01 9.35 8.89 4.69 5.56 8.73 8.74 5.98 4.65 7.51 0 8.38 2.16 6.56 9.05 9.64 5.29 9.28 6.78 5.76 0.76 1.91 8.5 1.25 7.93 2.36 3.1 5.48 7.04 7.92 10.5 3.67 7.39 0 10.8 1.62 0 4.44 4.69 6.91 7.39 9.5 5.72 5.43 10.2 0.76 6.86 10.3 7.42 3.89 10.3 2.98 5.27 1.91 9.82 5.74 4.97 7.81 2.36 3.59 9.59 0 4.49 8.88 6.06 4.05 5.7 8.11 2.55 3.75 5.54 2.16 4.14 8.9 8.64 2.71 13 4.53 9.01 5.74 1.91 2.85 8.42 7.65 8.29 8.59 9.87 4.3 2.98 7.33 1.62 2.71 0 9.21 8.74 8.33 5.59 8.13 9.09 8.57 7.44 2.85 3.89 2.98 8.3 4.69 6.78 6.66 7.56 8.42 9.01 2.55 6.81 10.7 11.3 11.5 10.7 3.67 12 5.97 10.2 11.6 7.82 7.65 11.6 8.89 11.7 2.16 6.15 9.98 9.33 9.19 9.97 9.1 9.64 10.7 13.9 8.74 10.1 11.9 2.36 7.63 3.59 10.9 2.36 7.12 8.35 10.4 10.8 10.8 10 9.45 9.18 7.18 6.2 9.56 9.99 8.19 11 11.6 9.62 3.42 7.47 9.55 6.52 10.7 9.8 4.57 11 10.7 1.91 4.19 10.5 2.55 10.8 3.96 10.3 5.21 8.82 10.5 6.54 10.3 7.9 10.1 9.37 12.5 5.8 8.58 10.6 10.7 8.32 10 10.8 9.52 10.2 10.2 7.2 10.3 10.6 8.24 10.9 9.04 11.1 8.17 5.67 7.51 9.54 9.2 9.96 9.77 9.45 11.2 7.42 9.97 11.2 10.1 9.27 6.79 9.69 2.16 9.38 10.2 10.4 1.25 9.15 10.9 8.8 9.86 0.76 4.19 9.72 2.16 11.6 4.25 8.61 10.4 11 2.16 2.55 9.94 13.1 7.03 6.78 13.1 1.62 10.6 13.4 10.7 10.7 13 11.7 8.85 10.5 7.92 7.98 8.3 5.67 9.21 4.73 14 8.21 6.39 9.37 10.7 7.14 9.65 9.38 8.13 9.24 11.2 9.48 9.02 9.02 8.14 9.43 10.3 11.7 10.9 10.2 3.82 11.2 10.2 7.78 9.14 10.7 1.62 11.3 7.64 4.4 11.6 10.1 3.89 8.77 10.9 10.7 10.9 5.31 10.5 3.51 4.69 5.66 8.07 9.98 3.96 8.99 9.94 8.65 3.59 7.24 10.1 9.17 8.65 0 7.51 10.5 12.2 9.43 1.91 9.89 9.92 9.09 8.86 11.7 10.8 10.8 7.82 11.3 0.76 10.2 11.8 10.6 9.12 6.57 6.56 9.95 1.91 9.82 6.31 8.2 9.23 8.13 9.21 8.18 9.31 10.7 8.15 7.44 11.9 8.37 9.73 13.4 9.59 8.27 5.67 7.32 7.81 0 10.3 10.7 8 2.16 1.91 9.37 10.2 6.7 8.71 9.6 4.69 10.6 9.51 11.1 9.82 2.55 11.8 2.36 9.85 5.07 8.93 10 7.92 8.8 10.1 10.9 9.1 10.1 11.5 8.03 9.24 12.3 9.21 5.43 8.63 8.34 9.92 8.01 3.22 8.72 8.89 12.1 8.64 2.89 10.5 2.55 10.6 10.9 9.13 6.37 9.74 9.64 9.65 6.95 5.85 11.9 9.8 11.7 4.14 4.14 3.51 14.1 6.04 2.85 10.1 12 8.75 15 11.9 14 11.2 8.21 9.7 12.3 11.1 9.97 2.98 11.1 4.3 8.03 11.2 3.8 14.4 6.26 7.04 2.36 0 0 7.96 9.33 2.71 11.3 9.65 10.7 9.68 11.3 11.1 11.2 7.16 13.4 13.9 11.6 8.29 9.82 10.9 11.2 12.2 6.85 13.7 0.76 5.56 4.3 10.1 9.32 5.5 4.02 5.41 10.2 4.25 9.36 9.43 9.39 11.1 4.97 9.68 10.6 9.1 12.8 9.36 8.74 12.3 6.95 11.3 7.24 12.3 9.4 11.3 12.1 9.77 11.5 10.2 11.3 10.2 10.4 11.8 8.05 7.94 16.1 16.8 16.1 11 10.4 12.2 9.69 8.35 13 12.4 2.16 12 8.26 11.8 7.49 14.6 14.2 12.8 8.9 7.89 6.34 14.4 12.5 8.65 12.7 5.94 6.34 3.59 7.84 8.9 7.71 9.24 12.7 11.6 10.2 11.2 13 8.75 11.1 12 12.5 7.42 8.63 9.68 11.5 10.3 8.48 1.25 8.22 8.46 8.89 8.4 5.23 5.18 0.76 9.03 0 11.2 1.62 9 12.9 8.29 14.5 12.4 13.5 12.3 12.7 12.1 10.6 11.6 13.7 2.71 12.8 13.6 0 6.03 3.51 7.39 6.94 5.59 1.25 2.85 1.25 6.93 4.69 6.55 3.1 2.16 0 8.05 4.4 5.74 4.14 3.51 3.42 7.65 0 2.36 7.97 6.85 4.69 10.4 6.48 9.56 3.59 10.2 2.98 6.63 4.19 0 10.3 10.6 0.76 2.16 3.22 10.6 1.62 6.51 9.34 10.4 9.24 8.97 10.5 1.62 5.63 11 12.1 12.1 10.3 11.7 9.64 6.83 7.11 6.79 0.76 10.6 11.7 8.38 7 9.04 10.6 12.4 13.9 11.6 5.41 11.9 11.8 14.2 10.4 8.44 6.4 14.9 12.3 15.4 5.5 9.97 15.1 11.2 15.1 12.9 4.69 11.7 12 8.92 13.6 6.95 5.31 12.8 12 9.17 0.76 2.85 1.62 3.42 1.91 0.76 7.8 8.31 16.2 8.56 11.1 10.4 2.55 6.84 2.16 0.77 5.34 6.19 11.3 2.98 4.77 5.23 8.76 7.26 9.07 9.79 1.91 1.91 5.48 1.68 6.61 10.8 7.42 2.55 4.65 8.96 7.2 0.76 1.43 2.85 4.65 6.53 7.87 10.7 4.84 7.56 6.64 4.87 8.39 10.5 8.47 8.96 10.4 7.17 6.89 8.34 5.07 7.65 6.99 4.77 2.36 9 2.36 2.36 8.96 7.22 2.36 2.55 5.83 7.98 4.19 5 5.04 2.98 7.09 9.3 7.16 3.1 10.7 9.73 8.96 1.62 10.1 8 4.14 2.55 2.36 2.16 11 4.14 0 2.55 1.91 9.56 8.07 10.4 1.25 0 5.26 4.14 2.16 7.06 1.25 1.91 5.04 3.75 8.39 3.32 8.88 7.55 3.96 3.11 0.76 5.76 5.07 6.45 5.45 2.36 5.41 2.85 6.64 4.65 3.22 8.64 5.41 6.99 9.86 5.29 10.3 4.19 8.78 1.25 10.4 11.3 10.6 10.6 5.98 10.5 1.25 3.1 4.19 9.91 11.5 2.98 7.11 10.3 0.76 8.14 5.04 3.51 9.03 8.07 13.4 4.94 15 4.19 4.87 3.89 2.55 6.82 1.62 5.41 1.91 11.8 1.91 7.14 11.3 2.16 11.3 13.1 5.59 4.14 5.7 2.16 1.91 2.55 13.5 7.34 6.49 5.78 1.91 3.1 8.38 6.53 1.25 5.95 4.97 2.36 2.71 3.67 3.32 10.7 4.4 9.5 2.85 0 8.34 9.38 5.65 3.75 11.2 2.16 11.3 2.16 4.84 5.41 6.39 2.36 3.59 1.62 9.37 1.25 0.76 7.39 2.85 6.1 0 3.59 4.57 9.25 0.76 10.2 3.67 2.71 10.1 13.1 2.98 1.25 4.25 0 9.04 7.79 10.3 7.05 11.6 11.2 6.55 4.97 6.6 11.1 8.01 3.82 8.67 12.3 10.6 1.62 10.7 0 6.06 3.22 11.6 13.2 1.25 9.21 13 4.53 8.24 12.9 5.5 0 13.2 6.17 9.87 8.79 12.5 4.69 11.9 7.12 5.21 2.98 3.82 0 4.73 4.19 8.35 8.07 15 12.9 9.59 7 6.3 7.24 11.1 4.19 7.41 8.47 2.17 3.51 8.74 5.66 3.96 3.82 2.85 7.48 4.65 8.08 7.22 0.76 0.76 9.18 11.4 9.13 6.44 10.7 11 9.47 11.1 8.01 6.34 10.3 10.5 7.92 11.5 5.36 8.79 8.73 8.45 9.14 4.57 8.35 12.2 7.63 6.12 12.5 7.24 3.67 5.29 10.6 9.94 9.36 7.18 2.85 2.71 7.73 5.78 11.3 4.4 10.1 11.5 7.87 11.8 6.94 8.68 9.23 6.32 1.62 9.63 6.72 8.95 11.1 11.7 12.9 1.91 11 9.18 11.5 11.6 11.5 9.82 11 8.22 7.96 1.91 9.79 8.07 1.25 12.3 9.62 3.1 9.59 9.51 8.5 9.5 10.3 9.89 2.98 2.85 10.5 2.16 12.6 6.63 6.45 12 14.2 7.93 9.93 12.3 8.75 9.76 10.7 9.63 7.97 10.7 10.7 11.1 11.4 3.1 10.6 9.91 10.6 5.87 14.6 8.95 12.6 8.11 3.1 7.67 4.14 8.97 9.98 8.1 10.7 9.98 13.5 11.5 10.5 7.19 15.7 12.2 11.5 11.1 8.8 9.97 1.25 0.76 3.42 11.5 6 7.71 11.2 10.8 11.7 5.54 9.7 8.99 10.1 12.2 8.45 12.3 12.1 10.2 9.65 11.6 10.1 13 12.5 11.1 14.8 7.75 7.96 11.1 11.6 12.5 0 6.85 6.75 8.81 4.25 2.36 4.67 10 7.1 9.56 4.08 9.19 9.74 8.11 0 6.16 1.91 2.55 7.09 2.36 5.18 4.87 5.97 8.2 7.44 8.91 2.55 3.1 5.48 4.77 7.99 3.51 5 0 4.69 9.55 5.25 2.98 6.96 5.07 6.12 6.83 2.98 8.08 0.76 6.24 7.86 13.4 6 8.24 6.68 10.7 3.51 9.51 7.77 1.62 4.61 5.23 7.35 8.77 7.66 5.67 2.85 0.76 4.08 2.85 7.16 7.63 7.8 5.21 9.28 6.01 3.82 7.33 0 1.91 0 1.91 4.19 3.51 7.49 5.26 0.76 1.62 9.55 6.26 8.16 0.76 6.25 13.3 4.65 2.55 7.59 4.73 8.13 8.35 2.71 8.46 0 4.69 5.04 4.4 4.84 0.76 7.41 12.4 5.72 3.32 9.8 2.36 9.6 5.12 8.62 3.67 6.57 12.1 2.71 0 7.7 8.53 7.12 0 3.22 2.98 7.13 5.97 2.55 5.97 11.6 10.6 6.96 4.53 9.95 2.55 6.58 8.94 8.58 2.36 11.3 9.2 4.81 11.2 4.25 6.95 6.07 11.9 5.14 5.17 8.24 3.59 2.98 12.8 5.63 3.42 6.33 4.94 7.08 1.25 11.3 10.7 11 11.7 10.4 12.7 12.6 10.1 7.65 11.3 5.9 11.2 11.2 10.2 1.25 7.02 10.7 9.23 9.2 8.94 6.97 3.51 13.3 6.91 4.49 11 0 9.72 5.15 5.36 17.9 3.95 9.06 3.1 0 4.91 8.86 5.41 5.7 11.3 9.7 11.2 4.94 0.76 4.53 1.25 1.91 8.33 7.92 2.16 3.82 3.1 6.99 2.16 7.67 0.76 4.19 5.56 4.91 4.02 11.9 2.19 2.71 9.9 0.76 8.79 8.14 3.32 1.91 13.1 7.23 6.82 5.98 4.02 8.1 3.67 3.67 5.54 4.19 7.64 5.18 4.08 4.89 4.53 5.95 4.77 8.28 5.83 8.33 5.12 4.19 13.9 2.98 4.69 8.99 6.07 7.16 4.53 5.23 6.72 2.55 4.08 3.67 5.88 7.32 1.25 9.02 5.23 8.12 2.36 8.3 6.31 2.16 5.65 5.26 9.19 8.86 1.25 8.62 2.16 3.96 8.27 6.68 9.79 9.04 6.86 2.36 8.75 12.8 7.77 1.25 4.73 1.91 7.98 4.64 8.41 1.91 8.4 2.85 5.98 5.59 0 6.72 8.55 8.14 5.43 2.55 13.2 6.23 6.3 10 1.91 3.22 6.91 4.14 8.16 6.61 1.91 6.23 2.71 8.83 0 2.85 4.57 0.78 6.34 4.44 4.91 3.22 6.45 11.2 9.55 2.85 1.62 2.85 9.03 5.63 2.98 2.36 4.08 0 8.46 13.8 8.68 3.82 8.43 10.8 11.5 5.87 12.4 2.71 12.5 0.76 11.7 0.76 8.5 14.6 12.8 12.7 7.32 2.55 11.9 12.3 12.9 2.85 2.16 5.88 12.1 6.09 12.7 2.36 3.32 9.51 10.3 8.07 8.93 10.4 12.3 10.2 2.55 14.2 11.4 12.4 12.2 6.21 1.25 8.28 11.1 11 14 7.01 13.1 14.9 13.7 2.71 9.53 10.8 12.2 4.08 6.24 8.38 10.8 1.13 8.97 7.74 10.6 10.9 11.4 8.8 11.3 8.5 3.51 6.75 8.24 8.23 1.62 7.46 8.34 6.81 10.1 8.79 10.3 2.71 5.75 3.53 11.3 4.08 4.25 5.88 5.65 11.4 0 8.24 5.48 11.2 5.07 5.12 7.31 10 10.2 14.9 6.15 5.23 6.07 11.1 0 4.3 4.25 9.84 5.81 7.33 8.43 8.79 2.55 4.3 8.72 1.92 6.37 5.8 5.43 8.03 1.91 0.76 5.43 5.9 9.01 5.36 3.59 6.94 9.12 2.55 9.12 7.17 2.71 3.51 8.82 3.64 5.97 1.25 5.09 6.61 7.88 7.21 7.26 1.91 5.48 1.91 3.75 4.61 3.22 2.55 11.1 2.71 7.87 3.67 3.89 4.19 4.88 3.42 0 4.57 2.71 8.39 4.77 6.17 7.16 1.91 9.15 4.94 1.91 7.38 2.55 9.62 5.41 3.59 6.98 8.9 10 8.3 4.65 9 0.76 1.62 3.95 1.25 5 8.92 4.02 9.5 11.6 3.42 0.76 3.42 7.63 11.1 8.3 1.91 7.54 5.21 9.6 6.91 3.1 8.17 2.98 4.49 8.31 7.46 8.98 0 8.12 9.34 12.7 3.32 7.57 6.48 8.47 2.2 8.8 8.62 2.85 4.61 2.71 3.82 11.6 5.85 9.43 11 8.05 9.83 10.8 9.72 10.3 4.97 9.79 7.59 2.71 13.4 12.2 9.82 11.3 4.61 14 3.67 5.36 11.8 7.86 13.1 14.4 7.38 7.8 9.3 6.48 10.2 7.45 15.8 11.9 11.5 8.97 11.4 11.8 11 2.98 8.17 5.5 5.65 7.79 10.3 12.2 9.93 9.34 9.96 10.1 10.9 9.73 10.3 10.1 6.29 9.41 4.65 10.6 9.67 0 6.64 10.5 8.95 10.5 2.36 5.78 8.27 11 8.58 10 9.36 11.8 8.81 9.65 6.75 8.45 10.4 7.06 12.8 4.14 6.51 9.38 9.8 11.9 7.24 5.22 11.4 3.1 3.51 6.89 0.76 5.74 7.9 5.9 4.4 11.7 6.94 3.15 10 8.61 5.59 10.9 7.26 9.23 5.41 12.6 10.9 3.67 10.1 12.1 9.46 7.72 11.5 10.8 5.07 1.25 13.1 11.1 12 11.8 11.8 10.8 12.8 11.4 4.25 11.7 9.55 5 11.2 12 11.1 10.3 9.54 6.39 8.63 10.7 9.96 10.3 7.46 9.37 10.8 8.26 6.13 7.52 7.5 6.72 9.8 9.69 9.55 9.28 11.3 10.1 7.69 0 9.6 11 9.3 9.5 10.7 9.89 9.3 11.2 7.42 8.54 12.2 10.4 6.87 6.98 9.23 9.93 6.7 11.3 6.48 8.99 10 9.27 12.6 10.7 7.92 9.49 12.3 13 3.59 7.96 7.5 9.69 13 10.1 5 10.1 6.94 8.31 11.4 10 10.7 10 5.61 7.09 8.06 10.5 11.4 7.8 5.88 9.2 13.5 8.29 3.75 1.25 12.7 4.84 11.2 13.9 8.69 8.25 6.27 8.46 9.37 6.47 3.89 10.2 8.43 8.13 9.37 2.16 8.29 9.76 0.76 11 8.05 8.81 10.1 9.14 3.67 2.98 9.04 3.89 6.9 9.84 9.68 4.69 9.56 8.18 11.1 1.91 3.59 10.8 10.3 0.76 6 6.07 9.4 8.78 4.49 2.16 4.3 2.36 7.56 0 10.5 4.4 2.98 3.89 9.18 9.57 3.32 7.91 10.4 3.83 8.07 3.28 4.31 7.18 8.25 11.1 6.62 0.76 7.3 1.91 7.63 6.75 4.73 6.78 2.85 1.62 8.97 9.9 2.71 3.67 5.45 2.98 6.9 3.89 8.47 8.89 2.36 3.1 7.45 6.29 7.56 6.15 12.7 3.42 7.58 6.46 6.92 5.56 3.89 7.18 8.82 6.89 2.85 4.91 7.79 5 4.81 5.9 5.77 0 6.59 7.82 3.51 1.91 0 1.62 1.91 3.89 2.36 0 8.54 1.25 7.41 6.12 4.08 9.69 3.51 4.77 5.15 9.97 0 0 2.16 0.76 0 3.32 8.35 2.98 0 7.2 5.56 3.96 1.25 12.4 2.71 9.74 8.6 1.62 7.52 11.7 10.8 10.1 5.78 7.31 6.38 3.89 10.1 14.6 8.91 5.76 5.36 9.67 6.41 12.3 7.39 6.34 4.3 11.6 15.3 10.5 4.5 8.73 9.84 12.1 8.9 9.46 8.39 9.51 0 9.8 9.04 10.1 9.67 4.49 2.36 9 9.21 7.79 11.1 9.31 13.6 11 8.75 4.53 8.1 12.1 2.55 2.55 1.25 11.8 8.56 4.49 11.8 9.43 0.76 6.4 16.1 11.1 10.6 9.58 2.36 6.57 14.3 10.6 2.71 12.5 11.8 11.2 11 7.76 9.38 8.87 6 8.02 11.7 11.3 10.5 9.16 9.73 1.62 10.6 10 13.7 10.2 9.89 9.99 12.5 6.25 12.4 3.67 4.44 11.1 11 11.9 13.3 8.3 12.2 9.66 11.1 5.18 3.51 9.74 9.81 8.81 9.21 14.5 7.67 10.6 9.91 9.55 10.9 10 11.5 10.8 8.99 10.3 5.43 10.6 10.6 9.79 9.44 10.7 9.44 10.5 11.1 10.1 10.2 10.6 11.2 12.4 10.7 9.85 11.8 9.63 9.64 10.8 10.6 10.6 9.48 11.2 10.3 10.1 10.3 10.6 9.68 10.7 9.38 12.9 12.9 11.8 9.95 2.36 6.9 8.7 5.73 9.44 1.25 3.1 4.08 11.8 10.4 7.54 8.78 6.68 10.7 8.61 10.3 14.3 10.4 5.21 10.6 8.72 6.39 9.72 9.48 9.14 4.61 13.1 5.59 11.4 10.5 8.67 9.28 10.5 10.1 10.9 12 9.7 8.95 9.11 10.3 9.16 9.93 9.35 2.71 9.13 9.1 9.99 8.92 3.75 11.5 11.8 7.94 11.3 9.91 6.69 8.7 9.62 4.53 10.2 6.88 4.77 7.3 13 11.9 13.5 8.77 9.5 9.62 11.9 9.88 1.25 11.3 12.8 3.22 8.71 10.4 10.9 8.99 10.5 11 11.7 8.92 7.03 3.42 11.7 5.04 7.39 8.44 9.54 5.04 13 5.93 1.25 13.2 7.54 6.45 3.22 3.75 6.95 10.9 9.34 11 8.68 11.7 8.74 3.96 9.98 6.83 4.66 2.55 13.7 9.91 10.7 4.77 8.38 4.61 7.88 3.75 0 5.26 0 7.66 7.91 0 5.26 7.19 12.8 9.88 11.8 9.86 10.5 7.77 11.5 8.72 4.19 8.07 8.93 11.6 7.08 1.25 8.8 5.29 4.94 9.8 12.9 4.77 13.4 9.42 1.91 5.98 10.6 9.28 4.19 2.71 3.51 0 13.6 10.4 9.37 11.2 10.2 6.97 11.6 8.5 6.81 4.84 2.85 3.2 5.78 1.62 0.76 10.5 9.04 12.6 5.97 6.63 8.81 7.94 8.42 1.62 5.21 9.13 8.84 11.4 8.58 8.6 7.47 2.71 0.76 10.3 7.48 10.5 5.38 5.56 4.97 8.99 11.7 9.14 4.81 7.45 8.94 6.24 7.14 6.51 6.54 7.48 7.38 9.6 14.5 6.08 6.94 12.6 2.55 1.62 2.55 11.7 10.7 12 9.28 11.6 9.2 8.86 8.72 11.5 8.26 9.91 8.71 11.2 7.75 5.74 9.35 13.3 13.5 7.75 12.1 13.6 0.76 8.11 9.62 10.3 11.4 1.67 9.61 10.1 3.96 8.18 9.3 10.2 10 3.51 11.5 8.15 3.51 10.5 10.3 8.47 5.97 4.49 2.16 4.25 10.4 11.1 11.7 8 10.9 10 9.18 1.25 3.33 3.32 12.2 5.59 7.04 9.44 5 7.14 0 10.6 9.74 9.4 8.86 10.2 11.3 8.51 11.6 8.74 13.4 6.45 1.25 13.5 2.85 8.2 2.85 7.26 9.89 9.23 11.1 10.3 9.7 8.69 9.3 8.84 7.64 8.79 8.18 10.3 8.77 9.69 3.1 9.17 8.81 10.4 9.45 11.1 8.86 8.17 9.54 9.39 10.4 11 7.48 8.22 10.6 7.9 10.2 5.56 10.2 10.3 9.27 10.3 11.4 9.01 10.6 9.49 9.65 5.97 11.8 5.29 6.56 9.53 10.9 11.2 6.68 8.59 9.68 3.42 8.93 9.33 10.1 10.6 9.7 9.33 10.4 10.2 10.2 8.42 10.3 10.6 10.5 10.4 10.7 11.2 0 8.05 2.71 1.62 0.76 9.54 5.92 7.28 9.55 8.24 11.5 7.81 10.1 7.77 8.74 9.19 10.7 11.4 6.88 8.43 8.25 8.36 9.92 7.75 12 10.4 11.3 12.2 8.46 8.87 9.87 9.96 10 10.6 9.79 10.1 10.9 7.71 9.38 10.9 9.47 9.61 10.6 2.16 9.42 7.98 8.19 9.22 10.6 9.61 7.68 8.58 7.5 8.72 8.33 11.8 10.2 10.1 8.12 10.6 5.88 11.7 2.71 10.9 12 7.87 10.1 11.4 6.47 9.18 8.98 10.5 3.67 8.76 3.75 8.6 6.12 8.54 7.2 7.13 7.73 10.6 10.5 10 8.63 8.6 8.66 10.2 10.7 8.81 11.8 8.89 8.72 9.06 8.92 8.44 6.9 10.9 7.28 10.1 10.5 9.35 5.74 2.85 0 1.62 10.1 6.72 9.45 8.65 9.44 7.78 10.3 9.45 9.36 11.6 0 10.8 10.1 11.5 7.35 10.5 9.09 12.5 10.7 9.96 9.53 7.9 7.66 9.88 1.91 11.1 10.7 7.97 8.61 11.6 8.41 9.54 9.58 10.3 4.41 5.83 4.4 11.6 10.7 10.3 10.8 7.58 3.51 6.23 10.6 9.91 9.39 10.7 7.71 9.37 10.4 6.29 3.89 9.06 9.36 9.56 9.34 10.3 9.69 8.64 10.2 11.7 6.71 10.5 9.7 10.2 4.53 10.9 11.1 2.71 9.02 9.9 5 6.67 7.28 7.28 8.66 10.5 1.91 9.4 5.95 9.91 9.74 8.16 9.66 9.96 10.9 10.8 6.21 11.3 6.95 12 7.56 5.61 6.46 11 9 8.42 7.3 9.62 9.46 10.4 10.6 10.4 1.62 7.26 2.16 4.94 8.31 8.83 9.09 10.4 1.91 6.24 11.3 8.92 9.81 3.1 11.2 8.51 8.16 10.9 9.15 9.31 8.71 7.92 7.53 10.3 1.91 7.42 12.2 10.4 9.94 5.92 8.85 9.13 8.1 11.2 8.94 12.4 7.17 9.45 10.2 7.56 8.85 8.6 9.56 10.7 8.45 8.65 7.7 10.9 10.7 3.67 9.46 11.2 10.3 8.41 8.8 8.55 1.62 10.9 8.55 10.2 10.5 2.98 9.15 6.19 9.75 7.45 3.22 11.2 10.9 8.91 0 12.8 6.72 7.59 10.7 4.44 9.95 9.85 11 10.9 9.18 10.8 8.64 11.4 10.2 8.53 9.49 11.5 10.5 10.9 9.29 10.7 9.54 9.22 9.82 8.69 6.07 10.8 10.6 8.18 9.97 9.53 9.03 9.89 10.9 6.06 9.11 8.28 5.54 10.2 10.1 9.33 9.38 8.49 8.27 8.9 8.62 8.83 8.81 9.21 10.1 11.1 8.52 1.25 8.02 10.4 5.69 4.91 9.06 11.5 8.91 9.84 10.5 7.85 11.4 10 10.1 9.35 4.69 11.8 10.4 12 8.27 12.5 9.73 11.5 9.67 10.5 12.2 10 10.9 6.17 11.5 9.7 11.3 9.24 10.3 9.37 8.48 12.1 8.92 0 6.68 10.3 11.7 10.1 7.69 12.3 9.62 10.7 8.8 9.08 10.6 11.7 10.9 9.99 8.25 9.85 9.98 10.9 10.2 9.96 7.71 9.25 9.22 11.3 9.59 7.44 9.79 9.31 7.24 8.66 7.83 10.4 8.88 10.8 9.37 11.5 6.23 12.2 5.36 6.93 9.66 9.3 4.52 4.02 9.82 9.22 10.1 9.73 10.4 10.3 12.2 9.87 6.29 8.08 6.91 9.85 8.37 8.11 11.8 7.18 10.8 8.65 0.76 11.9 3.75 9.28 11 11.2 8.78 11 3.59 10.6 7.69 3.22 5.29 7.81 9.49 6.12 11.1 11.1 9.55 3.42 10.6 6.74 10.3 10.9 10.8 4.53 4.35 9.54 9.87 1.25 7.72 9.33 9.95 10.9 5.52 10.7 12.2 6.51 8.03 5.48 9.46 9.16 11.3 10.4 9.87 9.25 7.92 8.67 7.03 8.72 6.83 9.46 9.28 0 0 9.28 6.76 10.8 10.8 10.5 8.79 12.1 9.02 2.55 8.75 10.7 10.8 8.6 12.1 6.99 10.1 11.3 15 10.5 8.25 10.7 13 3.96 0 10.8 9 8.65 10.5 13.4 9.7 8.63 7.18 4.35 7.05 4.25 12.4 3.89 13.1 3.82 10.1 10.1 8.36 8.66 9.73 10.8 1.91 9.78 7.63 10.2 8.77 10.4 11.2 13.5 8.93 9.61 6.81 8.15 9.31 10.4 7.25 8.24 13.4 9.33 9.22 8.44 11.3 8.39 9.25 10.8 9.97 8.16 9.8 11.1 10.6 10.8 10.4 9.52 3.32 7.85 9.51 10.8 9.77 10.7 8.85 2.47 16.1 9.08 9.63 0 7.02 5.54 7.39 9.24 9.67 13.2 10.7 10.9 8.79 11 6.58 9.92 8.31 10.5 7.11 4.94 0 8.4 8.06 6.2 6.36 9.35 10.6 1.25 4.4 9.78 8.43 9.09 9.81 10.2 15.4 3.22 6.58 9.15 11 4.2 6 4.3 11.3 11.8 9.88 5.34 12 10.2 4.94 13.5 10.1 6.12 12.7 12 11.4 12.7 11.6 2.16 10.2 2.55 11.4 9.06 10.2 8.1 8.93 2.75 6.65 11.7 13.3 9.34 11.1 10.5 7.99 7.64 7.75 5.85 4.35 1.62 3.1 7.23 12.8 6.78 5.76 5.83 10.9 8.85 10 9.96 7.3 0.76 5.09 11.5 10.9 8.68 9.14 9.49 9.78 8.35 11.1 9.43 10.2 9.24 11.6 10.6 11.3 6.04 9.72 7.6 0.76 5.45 6.6 8 7.56 0.76 8.18 2.36 0 8.13 4.08 6.01 8.04 6.64 11 10.5 11.4 2.85 9.28 7.78 7.28 4.36 7.93 2.61 9.02 9.08 8.24 8.65 8.52 10.4 11 11.5 9.79 7.72 8.12 7.59 9.07 7.54 10.8 11.8 10.7 8.57 3.82 9.77 8.77 13 10.3 10.4 3.22 4.44 9.33 9.14 8.45 11.9 7.69 8.08 10.1 9.91 4.69 8.15 9.95 9.04 10.1 10 10.2 13.5 10.3 4.57 8.03 9.39 1.62 2.16 10.8 9.32 9.06 10.7 5.8 9.54 5.18 7.3 9.98 9.72 5.48 10.2 12.1 7.77 10.8 8.04 8.96 3.22 3.1 11.2 10.2 11.4 9.99 7.06 10.5 8.44 0.76 9.95 8.63 9.65 10.7 5.41 10.1 9.85 8.89 10.2 9.52 6.86 11 8.11 9.74 7.46 9.64 6.07 9.62 9.4 8.83 9.09 10.9 9.13 10.4 9.78 7.96 8.75 9.93 8.99 2.85 8.01 7.06 8.88 9.91 7.94 9.85 8.13 8.73 8.98 8.83 6.57 10 9.62 9.65 8.64 8.89 9.52 7.48 9.09 9.45 10.9 9.48 12.4 8.51 10.3 9.15 10 9.58 6.72 9.97 7.57 8.67 4.25 7.88 8.46 0.76 7.7 9.18 7.92 8.23 10.1 2.98 10.2 3.22 10.8 11.3 9.97 7.63 4.46 9.61 7.11 8.38 10.8 12 9.2 4.08 7.03 7.2 11.9 8.97 2.98 9.92 10.6 9.4 8.72 11.1 5.09 9.52 10.2 9.01 5.48 8.85 7.48 8.14 10.2 2.55 9.76 10.8 8.48 8.99 7.98 3.51 5.74 10.4 3.42 12.3 9.22 3.1 9.15 12.7 9.04 10.4 6.96 4.87 11.7 3.1 6.43 2.85 7.7 8.95 7.46 11.8 4.14 5.61 9.6 11.3 3.67 10.6 9.05 12.9 9.45 8.53 8.2 10.4 13.8 8.76 8.9 9.94 8.01 7.9 3.42 8.11 9.78 9.33 8.97 8.79 7.46 7.49 7.04 8.4 11.9 9.6 4.91 9.05 9.71 8.69 7.82 11.5 8.58 8.37 10.7 8.38 9.78 6.82 2.55 6.6 2.85 8.78 9.55 5.23 1.91 10.1 8.15 6.27 10.5 5.43 9.27 7.82 9.44 7.95 10.8 6.7 10.1 8.78 7.44 7.71 9.38 4.44 11.2 9.73 6.4 8.37 8.3 10.2 10.3 9.57 10.5 7.69 10.3 0.76 11.4 9.15 8.34 10.1 9.64 10.4 8.59 7.99 8.67 8.72 8.49 7.48 9.19 9.16 10.4 8.52 9.68 6.95 8.85 10.9 11.4 8.7 9.7 9.42 8.95 8.41 8.51 5.8 7.07 7.09 8.65 8.32 9.05 7.63 9.21 1.91 10.1 8.14 9.75 7.05 9.01 10.5 8.29 11.2 9.32 9.09 11 9.71 7.74 8.48 10.6 9.7 11.5 9.4 10.3 9.67 9.29 7.11 6.73 9.08 8.77 9.91 1.62 9.65 10.7 10.3 11.4 6.92 8.61 4.25 9.67 10.2 9.84 10.1 9.69 9.43 8.74 8.85 8.32 7.74 7.39 8.45 6.34 11.8 8.18 11.7 8.01 9.3 6.26 8.78 1.91 9.43 8.26 6.83 7.16 11.3 11.3 8.43 10.8 9.58 11.4 5.36 7.64 7.36 8.83 10.5 7.39 9.75 5.07 9.48 2.85 9.56 13.3 7.95 6.81 10.6 7.54 5.34 6.04 10.9 5 12.1 12.7 11.4 6.12 9.63 9.14 10.2 8.08 8.35 8.67 10.2 9.77 11.5 7.94 10.3 7.11 8.72 10 9.57 9.42 6.34 10.9 0.76 2.85 8.82 7.33 10.1 6.51 5.04 8.37 8.87 9.35 10.2 8.81 7.96 8.3 9.57 5.23 9.9 11.7 8.24 9.96 9.53 11.1 10.1 8.89 8.98 10.5 9.45 9.95 6.83 8.16 6.39 9.46 6.48 3.51 3.75 8.44 7.85 8.86 5.83 11.3 5.56 5.93 7.19 11 6.53 8.88 10.8 8.75 10.2 9.08 10.3 8.58 6.67 4.94 8.28 6.81 7.36 8.49 8.19 7.93 8.11 10.7 3.96 10.5 9.56 9.99 9.57 8.79 7.95 6.93 10.5 9.51 9.8 8.81 9.63 7.48 7.99 10.4 9.47 10.1 8.2 9.83 2.55 8.82 10 7.3 9.13 2.16 9.49 8.11 8.7 9.04 3.59 1.62 8.65 11.1 9.04 9.58 10 10.5 7.61 9.09 10.7 10.5 8.56 12.1 3.67 7.62 8.5 9.3 9.74 9.68 9.03 10.4 10.1 8.9 11.2 10.1 8.81 10.6 8.48 9.53 9.82 6.61 8.39 8.3 10.3 9.47 4.97 6.47 9.5 8.46 8.23 13 8.35 8.73 11 9.65 5.23 9.52 10.2 8.15 8.58 4.08 9.53 9.05 9.92 7.65 0.76 10.3 9.06 9.57 7.94 5.36 9.7 4.08 9.61 4.57 8.24 10.7 8.23 11.1 7.27 11.1 4.97 10.1 7.76 8.52 12.1 10.4 8.54 6.89 8.88 9.33 10.1 3.32 7.64 7.82 7.87 8.21 10.1 8.83 5.18 8.85 9.5 9.9 5.5 10.1 10.6 10.1 8.57 10.1 12.5 9.92 8.92 4.81 9.34 9.51 6.82 8.01 10.9 10 9.15 9.41 8.78 8.42 9.14 8.95 10.9 10 6.4 0 8.82 7.07 8.91 9.81 3.51 7.28 9.64 11.1 9.65 10.3 4.14 9.81 10.2 9.7 6.46 9.2 8.28 10.6 9.22 8.96 1.62 6 8.94 7.22 5.87 8.87 8.78 10.4 4.19 10 7.86 10.9 10.5 6.91 9.9 6.84 6.39 9 8.21 9.98 0 9.8 10.2 0 9.59 8.2 10.3 11.6 8.96 11 9.1 9.63 7.16 7.6 5.09 9.03 8.74 8.68 10.2 9.81 5.36 8.94 7.94 10.4 8.49 8.75 9.4 4.3 4.3 8.38 7.3 10.4 10.4 9.85 11.1 3.96 5.87 10.6 10.7 10.7 9.28 10 8.17 10.4 8.4 7.84 7.5 8.82 4.97 3.82 5.15 9.82 11.4 10.1 6.77 11.4 5.98 10.5 10.5 10.5 9.32 9.15 8.67 7.75 10.8 6.94 8 12.4 11.6 6.07 8.5 4.91 7.62 9.53 7.46 7.2 0 0 7.93 4.44 8.89 8.86 6.99 1.25 8.54 9.8 9.55 11.1 6.84 11.1 7.3 3.1 10.1 9.13 9.77 9.94 8.97 5.98 3.32 8.19 10.7 9.46 2.98 7.36 6.34 10.6 1.91 5.04 0.76 11.5 6.75 6.28 8.79 9.79 7.51 4.44 0 7.32 9.81 4.97 4.19 9.08 0 2.85 6.76 4.77 8.32 9.25 9.67 8.65 7.35 4.14 10.1 8.45 9.6 8.89 12.2 1.25 10.4 9.28 8.12 5.52 10.7 10.4 8.26 10.1 5.92 10.8 9.3 7.07 2.98 10.7 8.42 10.1 9.79 9.3 5.5 10.1 7.32 7.99 11.4 10.9 3.1 9.11 9.07 9.05 7.31 9.35 10.3 9.43 10.5 8.98 9.81 10.2 10.5 9.5 11.2 8.17 10.8 3.82 9.39 8.8 9.25 8.89 7.54 9 7.5 6.36 8.73 7.89 11.4 9.39 10.3 8.38 9.61 7.79 10.5 9.25 9.34 11.6 9.74 9.67 8.28 10.2 6.88 11 11.2 10.9 10.1 7.63 9.77 10 11.8 9.44 8.03 9 10.3 8.57 11.3 8.14 7.74 10.2 8.58 7.92 9.58 10.1 11.9 8.19 8.16 10.3 4.81 13.2 9.29 9.57 5.61 10.2 10.5 10.9 4.19 10.8 4.14 12.8 9.34 9.49 8.42 10 11 8.24 10.8 7.67 9.94 6.04 3.22 9.31 8.58 8.3 9.68 8.92 9.36 10.8 5.52 6.81 10.1 9.92 10.1 7.92 10.4 12.2 8.97 7.85 5.36 8.76 10.7 11.2 11 9.35 12.1 9.37 10.1 8.13 9.03 9.54 9.87 11.7 10.8 8.98 9.53 8.76 10.5 3.75 11.6 10.1 8.21 8.02 8.77 9.15 7.09 10.1 10.3 5 8.88 8.58 10.2 8.96 8.77 7.2 7.39 9.75 7.38 9.84 9.13 8.84 7.08 8.19 6.78 8.88 8.5 9.2 8.73 8.9 10 4.49 6.84 9.53 9.2 8.6 9.3 8.45 7.69 9.1 9.13 5.74 7.68 4.35 9.96 10.2 4.35 8.85 8.18 4.4 11.1 5.7 9.84 7.03 9.44 0 6.09 10.1 9.41 2.55 9.62 10.2 2.55 9.23 9.64 5.71 10.1 10.4 9.86 9.34 9.83 11.2 10.3 8.04 9.65 10.1 9.39 7.47 10.5 6.91 9.82 11.4 7.99 9.2 10.7 10.2 8.74 9.8 9.84 3.8 8.46 7.16 9.59 8.3 9.93 1.62 9.7 10.7 8.28 10.4 8.06 1.91 8.46 6.25 9.99 8.61 7.89 6.78 8.23 10.5 3.75 4.4 1.25 12.8 8.03 8.2 10.5 1.62 11.2 9.25 7.21 9.92 9.06 10.4 10.5 5.65 9.89 8.82 12.8 9.03 10.7 9.03 8.29 9.6 6.25 12.3 8.45 6.78 9.55 2.16 7.07 5.61 11.3 10.5 8.45 8.34 9.37 13.4 5.5 5 10.5 11.7 10.9 11.5 11.3 10.5 6.74 10.2 9.65 8.94 9.22 7.89 0.76 9.24 2.36 11 9.55 9.76 4.73 8.08 10.1 10.8 11.4 9.16 11.1 10.2 2.16 6.49 8.03 5.52 10.1 8.03 1.92 6.53 10.5 5.75 5.12 3.51 8.19 3.32 4.28 5.31 4.97 4.92 4.65 10.7 4.78 5.04 2.75 3.1 3.51 11.1 2.16 5.18 7.01 4.61 4.14 3.42 5.45 5.83 3.42 4.49 9.04 2.98 5 3.22 4.25 3.51 1.62 9.03 3.59 7.79 11.2 1.91 10.1 6.4 7.81 8.71 1.62 9.39 13.2 0 7.25 7.28 6.06 10.8 1.25 6.24 10.4 6.53 9.8 8.77 6.36 10.9 11.1 4.32 9.59 11.9 8.85 8.66 8.3 10.9 7.66 8.81 1.25 1.65 9.99 9.67 10.3 9.92 9.21 9.09 8.55 6.58 11.9 8.13 0.76 1.62 7.91 7.75 9.03 7.52 6.04 9.96 4.19 12.5 6.79 1.25 14.9 10 6.83 5.9 10.1 7.53 8.79 10.8 8.17 10.6 7.51 5.98 10.2 9.02 9.09 10.1 8.43 4.84 1.25 7.55 4.69 8.54 1.62 9.36 6.41 11.4 9.39 16.8 4.57 0.76 11.2 9.85 11 11.1 11.4 10 8.57 11.8 8.09 11.8 10.1 10.2 8.35 2.55 11.4 12.7 12.7 11.6 11.1 10.6 12 12.2 7.53 8.31 10.4 9.83 8.52 10.5 7.73 3.32 11.9 9.89 8.29 9.35 9.8 10.5 5.43 8.53 12.3 12.1 6.81 8.1 8.79 9.31 8.97 6.98 8.22 12.7 8.08 8.35 9.53 7.36 11.8 10.2 9.37 9.61 11.8 9.62 7.14 11.6 9.06 11.9 9.73 10.1 8.79 10.4 9.93 9.84 9.17 9.77 9.13 10.6 12.1 9.95 10.8 7.28 4.73 9.66 8.88 12.4 2.55 9.4 2.71 10.2 7.76 11 8.65 10 4.25 5.87 12.2 7.42 5.04 8.54 10.4 7.55 7.39 10.3 11.8 10.5 8.57 10.6 8.78 9.78 10.3 9.04 10.7 7.9 1.25 10.5 7.8 8.26 11 11 11.6 3.32 10.1 10.2 10.2 12.4 9.73 7.75 3.1 7.74 8.08 9.34 11.7 10.4 10.8 12.3 9.18 3.59 10.5 8.76 1.64 12 11.6 12.5 7.81 10.9 8.77 9.13 12.3 5.83 10.8 6.46 9.91 2.16 7.99 9.3 10.3 12 3.89 8.49 8.4 9.53 5.74 7.32 8.44 9.5 10 8.13 5.41 8.44 6.54 10.4 9.02 10.3 10.3 9.18 6.07 8.58 10.1 11.5 11.2 11 6.61 11.2 4.14 11.8 11.3 12.7 7.26 8.7 8.05 10.1 8.27 10.9 6.34 11.3 10.3 7.11 9.45 0.76 9.58 6.95 9.57 5.43 4.3 7.65 11.6 11 9.79 10.4 9.39 11.2 10.6 10.5 6.27 9.21 9.79 8.95 9.25 7.25 10.3 4.65 8.86 11.4 11.3 1.91 9.03 7.25 9.59 9.54 13.2 10.1 6.47 12.9 8.23 7.03 8.05 8.53 9.24 9.38 8.05 10.7 6.17 11.2 10.4 9.24 9.53 8.61 7.94 9.56 5.43 7.87 12.9 6.9 11.1 0 5.29 8.52 10.6 7.59 0.76 4.57 8.75 10.8 5.81 7.03 9.58 7.94 5.29 8 2.55 8.16 8.29 3.42 6.13 13 9.01 7.81 6.43 4.61 8.29 8.33 1.62 2.16 10.7 9.15 0 8.38 8.03 10 7.59 11.4 3.89 10.9 4.87 10.2 7.28 10.3 9.31 13 9.55 10 10.6 10.4 4.53 10.9 5.59 2.16 10.1 9.32 9.35 9.77 3.89 6.29 10.1 8.07 4.19 8.91 7.81 10.3 1.62 5.35 11 10.3 6.07 10 10 7.64 7.71 5.43 7.71 9.68 10.3 8.65 5.67 4.73 8.51 11.4 9.48 6.03 10.5 11.4 8.64 0.76 9.92 3.32 10.7 3.82 1.25 5.38 9.23 9 11.4 8.67 8.27 9.85 10.5 8.82 9.8 9.41 11.7 7.6 10.2 9.16 7.95 1.82 4.94 1.25 3.1 8.57 6.81 7.12 10.9 10.1 10.2 9.8 5.45 6.61 6.85 6.56 12.7 2.55 8.64 9.14 6.93 7.42 6.45 7.23 9.44 7.9 8.63 11.1 0.76 9.57 7.16 8.12 7.52 11 8.4 10.1 5.04 7.59 3.96 8.83 9.23 6.17 14.5 9.63 5.36 10.3 4.44 2.16 6.68 6.39 1.25 8.74 10.5 0.76 10 10.8 9.09 8.74 10.4 10.3 10.6 9.5 6.72 9.02 4.77 4.57 8.81 9.45 6.4 8.4 10.2 4.49 8.61 10.5 9.81 10.9 9.37 6.71 8.45 1.62 9.16 9.56 8.08 9.44 9.34 5.67 8.38 0 13.8 8.84 4.87 10.4 10.8 7.34 5.34 2.55 10.1 8.65 10.2 11.9 10.1 8.8 5.04 7.11 10.1 5.99 9.69 10.9 10.2 7.03 9.93 8.35 9.37 7.27 6.85 7.7 12.7 5.93 7.78 8.61 11.2 11.3 7.23 6.06 7.57 4.81 8.38 3.51 8.51 7.2 4.84 9.32 7.79 8.85 7.89 9.39 9.23 3.22 11 9.01 10.1 9.52 9.67 8.68 9.43 10.1 10.2 10.1 5.8 7.51 6.66 3.98 7.03 5.38 8.16 7.72 11.2 7.99 6.43 8.52 10.2 7.6 4.91 4.3 6.97 1.91 8.64 8.03 5.54 8.67 7.75 10.5 9.39 8.87 9.94 9.59 9.12 9.68 9.79 10 5.31 10.7 10.5 11.2 9.74 11.4 9.3 1.91 7.42 11.1 9.83 10 2.36 9.99 1.25 4.19 7.89 7.75 10.6 10.2 7.84 2.16 9.54 11.1 7.92 9.17 9.93 13 8.81 5.98 9.54 11.3 9.11 1.62 6.97 3.32 5.31 5.98 2.85 10.3 8.2 4.14 10.5 8.83 8.63 11 8.35 10.3 12 5.31 11 11.3 10.5 9.19 7.04 9.93 9.83 9.14 9.62 7.87 9.43 13 8.82 9.23 9.5 10.6 9.34 12.2 13.3 3.75 11.9 6.52 9.33 9.06 10.4 9.25 8.05 5.61 11.6 8.98 9.38 8.11 9.01 9.64 6.23 5.93 7.55 7.09 6.58 8.95 8.23 7.87 7.78 8.6 10.9 11.3 10.2 9.28 2.16 9.48 8.9 9.8 11.3 10.8 9.62 9.71 7.86 2.55 11.1 3.1 1.91 11.4 9.42 8.53 11.7 10 10 5 2.55 8.17 9.37 10.2 11.3 9.17 10.8 8.72 10.6 9.44 6.24 9.78 10.2 8.7 11.7 12.7 11.3 7.38 9.45 8.74 12.4 12.5 12.3 9.04 7.85 7.09 6.87 7.29 6.01 11 5 11.3 10.3 11 11.6 11.3 13.1 10.9 10.8 12.7 11 11.4 4.44 7.03 9.65 9.68 11.2 1.91 10.4 6.67 11.4 10.4 8.82 8.94 10.7 9.97 6.81 6.29 6.47 10.7 8.9 8.58 10.3 7.15 6.38 9.48 8.65 11.2 10.9 8.07 9.96 10.7 7.93 11.4 10 8.11 1.62 9.59 10 10.2 1.25 7.34 11.3 9.01 5.31 10.2 6.27 9.23 12.5 3.89 4.91 11.8 10.8 10.7 7.19 12.7 0 2.73 2.16 10.9 1.62 6.7 2.36 10.4 9.86 1.91 4.9 7.98 4.49 10.2 10.2 7.09 8.57 11 9.64 7.56 11.4 9.89 7.4 6.74 11.1 9.23 10.6 10.3 8.99 9.64 9.22 9.42 10.2 4.66 7.89 10.5 8.97 5.76 0 10.1 6.01 10.2 9.08 10.2 17.7 9.44 10.1 3.89 8.77 2.85 2.86 9.76 0.76 10.2 9.1 8.76 1.62 10.8 3.22 9.89 10.8 10.1 9.8 11.1 2.55 0 9.3 8.18 3.32 7.92 8.52 9.09 4.87 7.87 10 0.76 9.78 3.22 0.76 8.76 12.6 6.97 10.5 9.24 10.5 1.62 9.96 8.04 10 9.84 9.81 7.43 9.35 9.58 9.07 2.55 9.2 8.48 12.3 8.3 10.8 8.53 11.1 9.5 11.5 8.28 8.58 11.2 10.2 0.76 8.32 10.9 4.87 8.46 9.6 6.01 9.94 10 4.94 1.25 5.23 9.78 4.19 10.4 9.21 8.85 10.5 7.99 8.77 7.5 9.13 10.2 4.87 8.16 1.91 5.92 6.07 7.78 9.04 7.54 1.91 10.8 9.45 9.25 9.02 14.6 14.4 14 12.8 10 11.1 13.5 4.57 15.9 10 13.2 14.2 13.2 14 13.9 10.2 14.1 10 14.4 1.62 12.3 11.1 9.32 12.7 13 13.8 13.9 12.5 14.5 12.6 13.7 14.1 13 13.3 12.7 13.7 13.3 12.9 8.27 8.46 13.8 7.06 14.2 14.3 12.9 11.3 9.74 12.8 13.1 13.7 13.8 12 15.2 2.71 5.07 4.87 5.18 6.21 13.6 2.36 3.42 14.9 11 9.34 10.3 9.6 10.9 11.9 13.7 14 11.7 14.4 13 12.1 14.1 12 13.4 14 14.1 8.16 13.9 14.3 14.3 12.9 13.8 14 11.8 9.59 6.34 12.3 8.14 12.6 8.9 10.2 12.8 9.92 10.4 11.2 10.7 0 7.37 11.4 10.5 6.37 7.97 12 9.57 10.2 8.18 4.44 5.23 0.86 7.55 8.86 16.1 9.24 11 1.25 13.8 14.1 14.3 14.5 14.8 6.53 10.1 6.98 5.07 10.4 10.1 11.6 4.66 5.87 8.59 11.7 9.14 10.2 12.9 7.61 8.27 11.4 10.2 9.21 7.04 9.79 8.8 9.09 12.8 4.3 7.5 7.64 6.66 2.98 2.85 4.19 3.1 13.6 5.67 2.55 4.08 4.19 7.78 4.94 5.23 8.19 8.81 10.8 1.25 4.25 9.72 9.42 6.49 2.55 9.66 12.1 7.85 7.54 7.07 10.9 8.64 3.59 4.53 9.14 3.67 6.85 11.2 10.4 5.81 11.6 7.3 14.2 8.14 0.76 9.75 12.9 11.9 10.4 9.23 10.2 2.36 9.77 9.63 11.6 9.29 9.81 9.71 9.32 6.44 8.92 6.59 6.3 10.3 10.5 10.1 10.5 8.69 7.95 10.6 7.89 1.91 7.61 9.57 9.04 10.2 5.63 9.98 5.34 3.1 9.92 7.57 7.19 8.24 6.79 8.29 3.82 10.3 7.25 9.77 7.73 8.47 11.6 8.31 11.1 7.19 10.6 4.81 8.05 8.65 11.8 7.81 5.65 12.2 9.94 9.37 8.88 8.23 10.1 10.4 8.4 9.31 2.71 14.2 4.4 6.2 11.5 9.4 6 6.29 6.47 10.7 4.49 10.4 8.11 0 5.04 9.34 6.17 7.81 7.84 8.57 8.64 6.55 7.93 9.05 9.15 8.09 11.4 11 9.37 11.3 8.14 6.28 9.35 7.86 10.3 6.01 6.31 8.31 3.1 9.92 5.63 11.5 2.71 8.96 1.25 10.8 9.39 7.41 7.85 5.49 8.26 12.6 9.8 9.88 9.79 7.97 8.92 4.25 5.76 6.78 6.4 5.9 10.6 13 1.62 7.09 6.31 9.12 10.4 12.6 10.4 9.27 8.13 9.7 9.34 9.98 6.03 10.4 10.2 9.31 10 1.25 12.5 9.65 9.61 10.6 2.36 0 8.55 2.55 12.4 3.1 12.5 12.7 4.57 9.39 6.17 9.04 5.45 8.05 9.7 7.83 7.44 11.2 2.16 4.53 1.25 6.04 12.4 1.91 1.25 11.9 10.5 8.74 11 11.5 8.85 4.25 11.1 8.13 5.74 9.42 9.35 9.38 10.1 6.89 9.54 8.9 4.19 2.16 4.25 6.38 11.6 9.41 9.74 4.19 11.3 7.23 1.91 2.71 10.2 7.53 8.62 1.91 1.62 8.11 6.32 6.16 8.56 7.76 5.52 4.53 2.36 4.02 6.86 6.88 2.98 10.3 9.01 1.25 10.5 8.01 5.78 8.17 6.23 5.31 7.84 5.48 7.44 7.99 8.22 6.51 3.1 3.67 3.67 8.2 6.44 8.57 9.9 2.36 7.33 7.76 10.1 12.6 8.97 9.71 8.88 9.45 9.34 9.8 9.37 8.2 9.72 9.05 2.98 6.93 1.91 0.76 5.07 5.72 4.97 4.02 11.3 3.96 6.17 0.76 9.48 0.76 9.56 8.87 0 11.2 0.76 6.89 0 11.1 11 4.19 2.55 10.8 3.64 2.55 4.81 0.76 10.5 9.28 6.1 4.73 4.59 3.67 0 11.6 0.76 5.65 4.04 4.19 3.1 2.55 8.16 10.1 2.16 3.89 7.3 8.29 10.5 5.12 10.2 2.36 3.32 3.68 9.64 2.55 7.05 2.16 12.4 3.1 10.2 3.75 4.08 10 1.62 0.76 5.87 9.87 9.02 3.96 10 0 0 4.53 2.16 4.69 4.94 9.92 7.9 9.8 6.7 9.34 10.4 13.3 5.76 1.99 7.89 11.3 4.44 7.03 10.7 10.5 10.3 10.4 10.5 9.07 9.01 4.14 7.49 10.9 9.35 4.91 11.5 9.9 11.8 6.19 9.69 11.1 8.37 9.79 10 9.8 9.46 11.8 8.8 9.06 7.46 8.49 11.1 8.47 9.76 9.74 9.37 10.2 8.41 9.83 9.11 2.85 9.78 9.78 8.66 7.67 8.04 8.59 8.7 0 9.83 12.3 7.07 4.84 9.66 11.2 2.71 8.28 7.11 3.22 9.49 9.58 11.2 10.8 6.21 8.01 8.81 8.46 10.7 4.77 11.1 10.5 9.3 5.29 9.02 10.4 8.13 13 10.6 9.83 9.18 8.98 7.64 7.81 9.18 12 7.86 0 3.75 6.75 8.1 8.53 11.5 4.3 8.1 3.22 8.5 9.38 8.71 0.76 9.54 8.88 8.68 8.41 10.8 4.61 5.61 9.99 7.38 9.77 5.93 8.7 9.11 6.81 10.9 2.16 11 9.49 9.46 9.82 11.2 10.7 9.39 9.88 10.4 8.79 8.73 9.13 10 10.1 2.71 9.05 11.3 11.3 10.5 8.47 6.77 8.78 3.87 10.8 7.82 9.21 4.02 6.68 5.18 4.61 10.7 9.84 10.1 4.81 9.59 5.83 6.41 2.98 9.57 5.87 7.5 9.53 8.98 10.9 7.36 11.7 9.04 10.8 4.77 12.7 10.8 8.75 8.9 10.2 2.85 10.3 10.5 11.9 9.34 13.2 3.59 10 3.1 7.81 3.14 8.17 13.5 2.36 11 10.5 5.09 4.94 9.8 8.69 11.6 7.67 6.56 8.45 9.49 8.19 9.4 11.9 10.4 3.86 2.85 6.27 2.85 4.19 2.71 0.76 6.54 2.55 1.25 5.43 7.51 0.76 13.1 5.41 5.97 0 0.76 5.9 3.59 11.2 7.92 0.76 8.53 4.44 2.16 0.76 6.6 10.9 9.24 11.1 10.4 3.22 8.08 5.83 8.85 1.25 10.2 7.64 6.04 4.35 1.62 10.3 2.85 8.52 3.59 4.73 7.66 1.25 12.1 6.91 2.36 0.76 1.25 8.08 6.19 10.7 8.32 1.25 3.59 6.15 1.62 4.77 2.85 7.83 3.59 1.62 11.2 6.21 7.13 3.1 2.16 4.81 0 7.95 0 11.1 1.62 6.19 10.8 4.25 7.12 12.2 10.4 8.14 0.76 4.81 8.83 10.5 10.7 10.9 10.8 7.19 6.12 8.82 6.99 7.86 3.32 8.89 11 12.3 11.4 8.79 11.7 8.47 11.9 2.55 8.07 10.2 11.4 10.1 8.73 7.5 8.14 9.96 6.96 5.92 7.59 10.2 10.4 7.5 9.84 9.97 11.1 8.97 5.04 8.75 6 4.91 4.3 1.62 6.68 10.1 9.84 10.9 11.3 11.2 5.38 7.99 6.69 11.4 3.25 10.9 9.41 9.07 8.33 7.94 11.1 12.1 11.8 9.57 7.13 3.82 8.43 9.22 8.14 7.39 8.7 7.5 7.03 13.9 12 11.2 9.01 13 10.3 10.2 11.3 10.6 12 11.5 9.6 11 10.1 9.3 10.3 9.1 8.4 11 10.3 10.2 9.9 1.62 12.2 3.32 12.9 8.59 10.2 10.7 12.2 9.56 9.96 9.95 9.87 10.4 9.35 3.75 9.61 6.77 11.5 10.4 11.3 9.81 14.1 10.9 7.49 12.1 8.37 10.5 7.35 14.8 8.48 10.3 9.77 5.38 11.4 2.16 10.8 9.14 8.13 10.5 8.89 8.11 12.8 1.25 7.73 12.6 10.5 11.7 11.2 9.41 0 10.4 9.05 11.2 12.2 11.1 12.1 11.5 12 9.9 10.8 6.13 11.6 11 10.2 10.4 11.7 10.1 9.67 11.2 11 11.8 12.1 11.8 11.7 12.5 12.1 8.03 5.48 3.96 10.3 10.8 11.1 10.6 5.52 12.7 3.51 14.1 12.2 12 7.04 9.71 10.2 2.71 1.62 2.16 0 0.76 2.85 0 2.38 12.2 1.81 0 0 4.79 11.4 11.4 9.34 9.58 2.36 4.3 9.99 6.99 8.07 9.28 10.2 10.3 4.97 5.09 10.2 9.91 4.57 2.85 8.02 7.77 9.23 10.7 10.2 9.1 10.9 9.88 9.89 7.18 9.31 3.1 14 6.91 8.1 10.2 12.1 6.09 11.9 9.02 9.73 9.59 12.7 9.95 10.2 9.54 13.2 10.2 7.42 10.4 9.76 5.07 10.3 3.51 2.55 5 11.7 3.75 7.7 3.32 3.42 0 10.4 9.35 5.41 9.55 7.46 9.24 9.73 8.61 7.82 12 7.29 10.7 10.4 11.5 11 9.2 9.05 9.18 7.36 9.39 5.92 1.62 11.4 13.3 13.8 12.9 13.5 8.61 9.48 11.3 8.23 2.71 8.81 10.7 8.99 10.6 9.18 8.93 8.32 8.28 5.7 5.87 5.9 8.38 10.6 7.55 7.16 2.16 4.65 7.95 10.5 0.76 0 11.4 0.54 10.6 11.1 8.61 4.84 11.4 8.62 8.88 9.37 8.85 10.2 2.36 10.9 7.98 10 10.6 10.3 10.3 10.5 9.31 12.2 8.02 12.4 2.36 1.91 8.57 9.33 7.74 5.21 10.6 10.8 8.93 6.17 9.92 10 9.49 9.77 4.14 3.22 9.59 13.8 9.44 8.44 10 1.62 8.85 9.44 4.14 10.1 8.86 8.97 11.3 9.16 8.24 6.32 9.69 11.4 6.94 10.8 7.3 8.88 2.98 11.4 3.75 10 11.5 9.23 9.67 10.6 1.91 15.7 11.1 4.44 12.7 8.13 9.66 10.5 8.57 11.2 5.48 10.7 13.5 12 8.55 11.9 10.5 4.02 10.1 2.71 8.71 5.5 2.36 11.6 11.5 9.94 10.8 8.53 9.84 12.9 12.6 13.3 3.67 11.2 11 12.2 8.94 12.7 4.44 9.89 7.35 9.61 9.69 4.91 13.3 11.3 8.12 9.53 6.99 8.76 16.8 13.3 6.72 8.24 9.5 9.81 8.67 6.47 10.2 9.88 7.09 11 14.8 12.2 7.98 7.88 6.12 2.55 11.1 11 10.8 12.6 8.58 11.7 11 1.25 4.97 3.42 11.1 12.3 2.98 11.3 9.47 13.6 11 7.3 3.1 11.4 11 8.82 9.2 9.3 9.68 13.5 8.76 10.2 9.39 9.7 11.9 1.62 13.8 10.9 10.6 10.5 13.3 14.5 10.1 9.68 11.7 10.5 15.6 0.94 11.9 8.34 9.5 14 9.06 9.48 8.85 8.28 7.95 8.88 11.9 0 13.6 10.9 11.5 5.98 0.76 4.97 1.91 1.62 7.57 7.57 9.1 2.16 5.59 4.72 11 9.33 10.8 0.76 9.93 4.65 9.46 10.2 7.92 9.35 8.4 8.92 11.9 10.1 11.3 11.1 10 5.41 8.62 9.61 6.97 5.65 12.6 4.4 5.93 13 5.09 6.99 9.4 8.75 11.5 4.73 5.21 4.77 5.04 6.13 1.62 7.81 5.45 3.96 7.03 8.8 11 4.14 8.31 2.36 5.87 7.17 12.3 6.94 4.69 0 8.06 9.93 6.69 0.76 10.5 2.16 6.54 5.23 2.98 3.82 5.45 8.92 9.62 1.62 13.8 2.71 7.3 0 5.92 1.25 0.76 7.42 7.83 4.19 8.81 1.25 0.76 9.83 5.93 8.82 5.18 5.24 4.29 8.61 1.51 1.62 6.24 7.12 6.91 4.44 0.76 4.73 7.21 0 6.59 4.57 4.57 1.25 8.01 13 8.55 5.54 7.88 4.08 4.35 10.4 5.54 5.65 1.62 7.81 10.7 1.25 1.62 4.77 10 7.57 7.83 3.42 3.42 2.85 7.54 7.87 3.1 7.71 0.76 7.57 4.49 7.9 8.66 6.62 2.16 10.4 2.85 12 0.76 13.6 2.71 13.7 16 13.3 0.76 10.2 10.4 10.4 8.92 10.9 11.8 10.1 8.74 10.5 10.9 9.76 11.3 0.76 11.5 10.8 11.8 10.9 10.1 9.04 10.8 10.6 11.7 5.41 9.53 0 2.55 10.9 4.4 11.2 4.08 9.45 7.45 11 11.3 2.98 9.08 9.65 10.1 10.4 9.15 10.8 10.5 1.91 11.3 2.16 11.8 12.4 11.5 10.6 10.4 10.4 9.73 10.2 11.2 10.4 0 10.6 10.8 9.44 8.5 11.5 11.7 8.54 11.4 9.72 9.63 12.3 13.5 12.4 10.6 10.1 10.7 9.81 10.2 10.4 2.55 9.34 0 13.9 15.3 8.55 1.91 9.19 5.76 4.35 6.82 10 9.23 10.1 3.42 3.42 12.8 14.8 8.86 11.1 12.5 10.2 10 8.36 9.85 9.54 9 11.2 9.74 6.21 2.16 5.52 10.7 2.55 9.21 10.2 1.25 4.35 2.98 6.16 4.53 2.71 8.08 8 1.62 13.2 8.59 2.16 12.9 3.1 7.85 9.82 5.46 10.5 4.35 11.6 10 6.97 9.93 7.48 10.1 12.1 6.79 10.7 10.8 13.1 8.36 13.5 12.4 12.2 15.3 8.07 12.5 12.1 6.41 12.2 8.11 9.67 9.48 6.83 8.33 8.82 4.87 9.15 7 13 6.12 8.86 5.69 6.85 8.56 6.93 7.66 5 6.38 7.07 9.05 9.59 7.75 10 7.52 7.98 5.48 8.7 8.55 8.66 7.45 8.83 7.8 7.69 7.61 7.57 6.62 7.94 6.69 10.3 2.85 0 3.1 6.91 7.09 7.49 6.53 9.11 6.1 3.93 8.52 3.22 5.18 8.7 6.57 2.36 3.22 6.45 5.97 4.4 11.8 5.87 1.91 4.25 2.36 1.62 5.21 3.1 10.1 8.94 4.69 8.59 7.06 4.87 7.32 4.14 6.64 8.56 6.78 3.89 8.53 8.37 9.78 3.22 10.9 10.8 9.88 9.62 11.6 5.31 7.2 2.55 10 7.29 11.5 8.02 7.24 5.52 4.65 5 7.61 8.49 7.38 11.1 2.36 7.75 8.01 7.89 6.75 7.59 7.66 9.5 8.67 7.46 6.44 8.6 11.9 3.42 3.42 9.34 2.71 5.7 11.4 9.87 5.82 7.6 5.92 8.06 2.85 7.93 6.15 3.1 6.72 7.23 7.57 7.85 2.55 3.1 6.12 8.48 7.06 4.84 13.4 10.7 9.88 12.6 5.12 12.2 8.4 12.3 5.07 13.3 8.42 11.2 6.73 4.44 11.2 12 8.61 8.84 10.7 9.1 11.6 5.34 3.82 8.32 11.1 9.96 7.56 6.1 9.66 10 10 7.7 10.3 10.5 11.6 13 7.68 5.52 10.8 4.08 7.85 9.2 5.36 6.83 7.56 9.97 9.65 8.11 9.78 3.22 2.16 10.6 11.3 7.59 10.2 11.3 8.85 9.6 9.9 5.63 4.77 9.03 9.81 3.42 10.2 10.1 8.31 8.36 7.73 10.2 9.5 2.36 14.9 10.6 7.45 8.63 9.27 10 8.96 9.98 11.1 6.69 10.1 11.5 4.3 9.84 10.2 9.37 11.8 9.84 10.4 8.9 9.76 8.19 10.4 9.28 9.71 7.19 7.98 7.54 11.9 7 7.88 10.2 7.29 11.2 9.69 9.8 9.55 9.84 9.64 5.92 9.58 7.45 8.31 6.48 7.06 9.67 8.97 8.37 10.5 9.05 10.2 10.9 12.2 8.77 7.19 9.2 7.86 10.6 11.4 5.85 10.1 10.4 11.8 9.3 8.4 11 7.76 6.32 4.87 4.73 6.54 10.2 8.68 8.89 10.5 9.11 12.9 8.1 8.37 4.69 7.81 8.79 12.1 4.84 11.3 8.13 5.61 10.7 7.87 7.8 8.1 7.38 8.45 11.9 9.65 9.11 4.19 11.9 12.8 8.3 9.89 12 10.4 8.48 7.68 1.32 9.62 1.62 2.16 1.91 10.9 5.45 9.67 8.71 5.88 6.4 5.76 5.09 7.73 3.1 9.03 5.74 5.76 9.09 8.49 10.6 8.82 8.96 3.89 9.63 7.94 10.5 7.14 3.82 3.89 3.6 10.8 8.38 6.62 1.62 9.04 11.1 7.46 7.44 8.63 9.87 11.3 5.52 5.15 9.86 11.5 9.11 10.2 9.23 10 9.54 8.16 7.21 7.92 10.8 10.2 7.78 7.57 4.14 7.99 5.18 7.94 8.69 8.18 5.59 8.93 9.71 9.04 8.72 4.35 7.09 8.34 6.54 7.65 7.52 9.2 4.19 8.21 8.01 5.15 8.88 7.72 9.54 9.15 9.19 8.62 8.34 2.98 8.21 10.1 8.31 8.82 10.1 11.4 10.6 8.21 10.4 4.44 9.31 8.69 7.41 8.71 5.04 7.64 9.22 9.4 9.72 1.91 8.52 7.58 9.54 8.71 10.1 7.44 3.32 8.55 8.77 10.1 9.44 9.32 7.62 6.66 9.54 7.9 7.45 8.92 8.61 8.72 9.17 6.81 4.02 9.43 9.04 9.07 9.6 9.12 9.27 7.87 12.2 8.43 10.8 8.79 8.25 8.85 9.33 9.51 11.2 9.79 10.7 2.36 7.23 9.74 5.95 9.67 9.03 6.73 3.51 9.08 6.88 7.8 9.77 7.49 7.61 4.35 1.91 9.05 6.95 9.12 4.81 5.56 9.75 4.02 9.76 9.22 8.38 8.31 7.86 6.71 8.76 5.7 8.87 7.89 10.3 10.3 8.75 10.3 7.87 6.71 7.92 6.21 9.3 7.81 8.35 4.44 3.32 6.68 7.8 8.2 1.91 8.19 11.7 9.56 12.2 8.44 8.3 8.84 8.91 5.87 9.07 2.98 9.75 4.84 7.49 7.25 7.21 10.8 9.95 10.2 5.81 6.98 3.59 10.9 6.98 4.53 8.87 1.62 6.43 6.53 3.96 7.5 9.65 8.58 8.06 7.06 9.52 8.1 10.1 3.22 10.5 4.81 6.83 9.86 7.82 4.19 6.21 5.15 4.53 7.66 4.77 6.68 8.34 4.02 10.1 3.42 1.25 4.25 7.83 1.25 7 3.89 5.87 8.43 4.44 4.57 8.48 8.23 8.62 11.7 4.77 8.19 9.17 7.35 9 9.85 9.57 8.39 5.74 8.86 11.1 6.92 5.78 8.9 8.15 7.67 11.2 10.6 6.28 11 10.6 9.36 6.52 6.01 9.24 6.41 7.77 10.2 10.4 10.3 6.91 3.89 2.16 8.47 8.31 8.39 7.68 4.77 7.08 11.3 6.8 2.16 6.52 3.75 5.38 5.7 6.69 8.61 6.39 10.2 4.25 8.93 3.32 6.83 10.4 9.65 2.55 7.66 7.8 2.9 9.42 0 6.88 9.93 3.42 9.76 6.28 8.09 7.34 8.35 8.81 6.34 8.65 8.69 6.89 6.8 10.6 3.59 7.1 10.3 7.7 9.01 7.64 6.25 5.07 7.49 6.24 9.15 9.19 4.02 7.95 3.96 12.8 3.75 2.55 8.47 9.62 8.47 8.84 7.73 6.09 9.06 10.4 9.84 7.92 8.78 9.36 9.17 8.71 9.43 7.55 7.65 9.52 9.46 8.78 9.43 5.52 0 0.76 5.54 3.22 8.51 4.49 8.81 1.91 5.97 2.85 2.55 5.67 11.2 13.6 2.71 6.28 7.47 8.9 7.8 0.76 9.7 6.1 5.54 5.36 8.08 8.53 9.8 6.79 10.5 9.67 4.94 10.7 9.5 10.4 10.2 5.8 10.2 9.83 10.3 10.3 5.18 9.11 6.15 8.19 8.23 8.18 9.71 7.84 8.05 11 7.16 8.46 7.84 9.53 8.89 7.7 9.79 10.1 6.24 2.98 10.1 9.77 8.63 9.94 9.91 9.55 10.7 6.6 10.4 9.59 8.49 2.85 11.7 9.42 8.75 9.25 9.25 7.69 7.77 9.65 9.21 6.32 11.1 9.84 5.67 6.32 5.61 8.71 9.18 9.66 1.25 9.05 5.81 6.89 9.85 8.69 8.82 10.2 9.39 4.69 10.9 8.71 4.94 7 10.9 10.7 7.13 7.63 10.1 8.36 8.02 9.99 11.7 6.54 7.71 5.97 6.09 7.76 9.5 5 3.59 7.17 7.36 3.96 9.89 9.46 9.23 8.25 3.82 11.6 6.55 3.32 11.1 7.21 2.36 7.6 7.46 10.8 4.81 10.3 10.9 9.57 3.96 10.5 5.38 9.83 9.85 9.91 12.8 8.69 12.6 10.8 11.7 8.99 10.5 4.25 10.3 5.15 5.93 8.87 6.09 6.2 12.3 7.04 10.8 2.71 6.03 5.34 3.75 3.59 7.88 8.18 7.3 9.77 3.89 4.44 5.93 9.65 7.67 10.9 8.46 9.6 9.63 9.46 7.98 6.83 10.9 6.74 11.5 13.2 9.51 12.6 10.9 12.4 7.27 9.11 8.28 6.88 8.86 6 9.78 10.8 12.6 9.35 10.9 2.98 11.1 9.81 9.52 10.1 8.78 10.1 4.4 4.69 6.26 2.1 11.2 8.9 9.38 8.52 8.61 3.75 11.7 14.3 7.06 3.32 3.82 7.58 8.4 8.08 9.46 8.93 11.3 12.7 14.8 4.69 11.1 6 2.85 2.98 11.2 12.2 10.4 6.07 4.53 14.1 12 9.89 8.62 1.25 8.23 5.15 4.49 12.1 3.89 9.05 9.25 9.28 11.4 11.2 4.02 7.67 9.24 8.14 10.6 7.35 10.2 10.2 9.87 7.28 8.49 9.19 8.97 10.3 9.95 9.08 13.3 1.62 8.19 4.25 8.45 9.18 8.37 9.19 9.02 4.44 8.79 2.36 7 10.8 10.4 10.8 8.86 10.2 9.54 8.98 10.4 11 9.77 3.59 0.76 7.03 11.8 11.5 11 4.78 9.13 8.32 8.46 10.3 4.79 10.5 9.92 10.8 10.8 12 9.19 5.59 3.32 10.1 1.25 10.1 10.3 2.16 11.6 9.58 8.02 9.9 6.93 7.73 6 6.95 4.57 9.45 9.93 10.3 8.48 8.77 8.69 9.26 5.43 9.75 3.13 10.3 6.58 9.77 11.1 4.4 10.2 9.48 13.7 10.7 9.15 8.99 11.7 10 10.4 0 10.9 9.28 3.71 9.73 8.6 7.95 10.2 6.37 8.47 4.87 8.48 9.97 2.36 10.7 10.2 8.92 10.1 13.8 8.44 10.2 7.55 12.7 9.69 1.91 10.1 9.15 9.79 8.63 13 8.22 11 11.6 13 10.9 11.8 11.8 7.86 13.4 10.6 7.33 10.3 6.88 8.35 10.1 0.76 6.56 1.25 11 12.2 10.2 5.05 8.9 2.36 10.6 11.1 11.6 10.2 5.04 12.6 7.99 10.5 7.59 11.1 9.16 8.02 9.62 12.7 6.54 10.4 9.06 10.3 8.42 6.32 1.91 2.55 9.85 1.91 2.85 1.62 9.21 3.82 10.2 4.3 5.78 9.14 9.71 3.59 2.71 2.55 9.89 2.71 2.16 9.57 4.19 10.3 13.4 10.6 8.06 7.26 3.59 4.87 2.98 8.39 7.98 2.71 8.71 9 8.51 7.79 8.16 7.44 4.25 8.43 7.72 8.53 2.98 7.06 8.67 12.1 8.92 10.3 0 5.38 2.36 3.82 2.36 1.25 9.2 9.88 7.92 8.06 7.55 9.19 9.69 4.84 9.3 4.44 3.32 2.55 0.76 9.77 5.81 2.98 9.98 6.78 9.11 9.5 9.51 0.76 8.45 11.7 11.4 9.52 8.35 0 5.5 9.01 10.8 10.1 2.36 8.79 10.1 9.19 9.74 6.86 5.72 2.16 0 11.2 1.25 8.74 11.9 8.68 3.1 6.85 9.57 8.47 4.25 9.79 8.78 1.25 2.16 8.18 10.8 6.91 8.7 10.1 7.95 4.81 4.87 10.3 9.47 5.89 0.76 3.42 9.72 4.77 6.69 10.1 10.7 10.7 6.68 9.77 9.42 5.97 4.65 8.85 10.5 8.81 9.69 4.65 6.29 2.55 7.87 2.16 3.63 9.57 6.07 8.23 9.77 7.74 7.71 8.94 10.6 8.73 9.35 3.32 3.59 9.39 6.29 10.2 2.55 7.44 0 5.56 0.76 3.32 1.62 1.62 7.01 10.8 8 7.56 9.07 9.7 7.95 9.2 9.54 3.75 10.9 10 8.57 7.64 6.16 6.23 2.71 8.1 3.1 6.85 10.7 7.18 10 3.75 10.4 10.9 6.73 8.62 7.98 0.76 7.93 4.3 2.16 11.3 10.5 7.87 10.3 9.93 8.76 9.8 12.3 10 1.62 7.93 7.85 8.93 5.23 8.61 7.68 10.7 8.73 1.25 7.98 9.96 8.82 8.09 7 15.1 4.3 5.31 7.31 2.98 5.43 6.81 9.91 10.5 7.79 9.92 6.23 5.31 8.88 10 3.1 9.87 4.97 2.55 7.16 7.79 5.26 7.98 9.65 10.2 8.87 8.04 10.4 8.23 8.39 8.23 8.67 9.08 8.63 8.44 6.15 6.97 3.59 9.62 9.52 7.61 9.12 9.14 10.8 2.71 10.2 7.57 11.3 11.6 7.04 11.7 9.86 6.1 8.87 8.13 7.53 6.37 8.13 9.57 6.73 8.86 9.73 9.99 8.76 3.51 5.65 9.74 10.7 9.87 4.61 7.33 6.75 5.87 3.59 7.39 1.62 9.08 2.3 7.44 3.59 7.64 5.59 6.36 4.97 1.91 10.1 11.9 11.7 7.92 8.33 3.67 9.05 10.4 9.11 10.3 9.15 10.6 3.22 10.9 7.3 6.86 6.44 8.86 9.36 10 1.62 8.79 8.65 7.72 9.96 9.06 5.18 8.66 8.62 8.75 8.85 8.73 10.3 9.25 10.9 8.98 8.33 8.07 6.37 6.99 8.2 4.69 8.17 11.8 8.56 6.46 8.94 9.68 9.6 9.92 8.86 9.61 5.63 9.21 7.06 7.99 11.1 9.17 9.3 7.95 9.66 9.47 9.61 10.6 6.14 4.91 6.74 9.37 9.67 7.71 6.28 8.35 0 10.7 9.57 8.39 10.3 7.41 7.73 9.82 9.68 7.52 9.79 8.87 11.2 9.87 10 3.59 8.2 7.43 7.87 7.63 0 9.93 9.83 10.8 9.28 10.8 7.66 9.05 8.58 8.71 5.15 8.11 11 10.3 5.72 9.83 8.03 10 3.1 10.1 3.32 8.4 8.16 9.77 8.19 5.38 7.66 6.07 7.81 8.72 8.11 9.6 9.73 5.15 11.1 6.55 6.97 9.63 8.3 7.42 6.76 7.74 5.92 9.94 5.88 9.07 8.67 2.16 5.87 3.75 1.31 10.2 9.36 10.2 7.31 4.08 6.21 10.6 8.7 9.45 8.29 10.4 5.29 7.35 4.44 10.4 8.03 9.98 7.69 9.37 7.85 7.45 8.9 9.08 5 10.7 7.37 7.09 10.4 7.35 8.74 8.27 10.4 9.21 6.75 7.89 2.16 9.93 9.49 9.17 0 7.67 5.41 4.35 13.1 9.76 9.18 4.65 5.31 4.14 10.3 9.27 9.55 4.97 11.4 9.15 11.1 0 4.84 7.17 9.37 11 7.01 6.7 9.34 10.8 5.41 4.44 6.13 2.55 9.5 9.64 10.2 9.71 10.7 5.48 9.21 3.82 9.8 5.95 0 8.52 8.95 11.5 2.36 5.07 6.82 7.49 2.98 3.82 2.16 11.2 7.81 3.67 5.5 8.76 8.29 4.02 6.12 2.16 10.5 9.27 8.54 5.92 12.2 7.28 11.1 9.03 6.85 1.62 3.51 9.27 7.81 5.8 8.52 8.6 9.19 5.92 6.66 8.96 6.87 5.09 5.36 6.93 9.13 14.5 7.01 8.61 5.78 6.16 11.1 9.43 5.81 7.11 5.98 6.07 8.04 8.94 8.28 6.54 5.09 4.53 7.93 11.2 9.03 8.35 7.94 12.2 8.33 7.63 5.36 6.78 6.48 9.96 9.27 5.56 8.5 0 3.22 9.86 5.21 6.86 4.62 10.3 7.96 8.37 9.69 7.16 6.75 9.07 7.28 8.4 5.21 0.76 6.48 6.09 11.6 9.71 8 9.99 8.23 8.63 10.7 10.2 9.51 8.98 2.16 6.68 10.3 6.03 9.02 9.65 9.03 7.86 7.54 10.6 4.94 9.66 8.9 7.6 7.11 9.72 9.82 8.83 9.95 3.75 8.95 6.15 8.58 4.94 10.9 11 10.6 6.19 7.11 8.89 9.7 5.48 8.38 11.1 9.36 3.51 7.7 8.47 9.41 8.8 8.69 9.12 9.21 7.52 9.62 5.21 8.36 8.1 0.76 8.5 9.82 7.81 8.78 7.98 9.59 13.3 7.63 5.88 8.87 9.38 8.05 10.2 8.12 10.5 2.16 6.38 12.2 7.26 9.18 3.82 9.23 3.51 9.01 9.4 10.3 6.37 2.55 10.6 7.96 0 5.12 12.3 8.67 8.6 9.05 2.16 3.96 10.4 9.86 10.2 5.78 9.39 4.57 5.5 8.72 1.25 6.75 8.46 8.73 10.1 7.54 6.67 10.7 9.84 8.33 7.03 9.81 8.71 9.43 8.8 8.53 8 10.1 10.1 8.71 5.15 1.62 8.72 5.81 5.7 9.48 9.74 13.1 10.4 2.36 9.24 3.51 10.8 10 7.05 9.22 3.67 1.62 8.91 3.59 10 7.09 12.7 9.23 7.49 2.38 7.59 2.36 3.82 10.4 7.36 9.52 9.98 9.31 10.2 7.96 8.79 8.5 9.34 9.54 4.3 9.67 4.84 6.67 12.5 9.76 9.91 11.1 8.29 10.6 9.62 9.94 5.23 7.17 9.05 1.25 6.99 6.9 2.16 14.5 10.1 9.62 11.7 7.9 9 11.6 4.97 7.98 6.91 10.8 10.3 9.33 7.07 7.22 12.9 8.92 8.11 7.74 10.5 8.27 9.84 9.01 8.03 9.53 10.1 5.31 2.55 9.76 5.78 1.25 4.3 9.28 5.43 8.22 4.57 9 0.94 4.02 11.9 8.39 7.56 6.4 3.51 10.3 7.98 12 11 9.43 6.45 11.5 11.7 9.99 10.3 9.57 14.8 11.9 10.1 10.3 9.46 9.27 8.36 6.33 8.39 12.6 8.32 10.2 8.85 4.61 8.54 10.5 9.43 9.2 7.06 10.8 7.32 7.25 11.4 8.99 9.47 9.75 8.1 10.1 5.23 2.98 9.68 5.26 9.74 10.4 10.6 13.3 8.43 6.65 6.78 6.81 11.2 4.14 9.89 9.66 10.8 7.16 10.9 8.75 9.96 4.08 9.37 5.36 7.73 7.76 6.71 9.67 9.04 10.4 10.7 8.78 8.08 12.9 8.96 8.78 7.42 12.8 12.6 8.55 12.7 10.3 12 12.4 12.3 11.1 9.7 4.25 10.1 11.4 8.38 10.2 8.44 8.66 10.7 9.57 8.88 11.9 11.4 5.61 7.3 10.8 8.44 9.71 9.75 6.6 14.6 2.41 8.65 9.83 10.6 7.61 6.28 2.98 0 12.9 9.12 9.87 9.09 9.69 8.26 11.2 12.4 8.71 9.34 11.8 10.2 8.44 11 9.83 11.2 12 9.51 8.81 11.6 4.57 10.2 6.6 9.93 4.14 9.29 8.58 12.4 7.35 5.38 5 0 6.24 11.9 11.1 18.6 9.65 12.1 12.2 9.95 11.5 9.37 8.6 9.25 10.5 9.29 11.8 9.47 6.51 7.7 6.31 10.1 7.94 2.85 3.96 3.96 8.08 5.85 6.63 5.56 10.1 6.51 7.26 9.28 2.36 5.8 9.51 10.4 9.1 10.6 8.74 5.87 6.63 2.71 0 11.1 9.3 4.87 12.9 10.8 3.59 10.7 6.83 2.98 7.71 0.76 11.1 3.82 12.9 10.6 11.3 7.09 8.18 7.67 10.5 9.66 7.81 9.62 10.7 2.71 6.57 8.6 10.5 7.98 8.32 8.22 10.6 8.56 7.09 11.4 8.61 8.66 9.88 5.36 1.62 9.07 1.25 8.42 10.7 8.86 8.74 9.5 8.06 9.12 11 9.65 10 9.91 9.92 5.7 5.67 10.1 12.6 11 11.4 10.1 9.38 9.84 9.73 10.9 11.3 10.9 9.14 9.88 9.28 9.6 10 10.8 11.4 10.7 10.1 9.31 10.5 3.32 10.2 2.55 12.1 8.43 11.7 10.3 5.45 5.59 12.1 6.81 2.36 6.67 9.16 3.59 10.4 9.26 8.76 10.6 10.8 10 4.46 4.44 2.73 9.48 11.2 9.99 8.66 8.95 8.84 4.77 10.5 12.7 8.99 10.4 11.7 9.31 10.3 3.42 3.75 6.15 11.5 4.19 4.02 11.8 7.69 10.5 2.55 1.62 9.54 6.95 8.25 7.52 11.7 9.12 7.89 5.88 2.16 2.71 2.36 6.07 9.29 8.23 8.04 7.7 11.5 7.64 9.35 7.91 11.8 7.6 6.7 2.16 1.25 3.75 1.66 5.43 7.97 4.35 8.39 10.3 5.95 10.3 7.25 9.84 11.1 7.3 2.16 9.49 9.76 11.1 5.04 8.56 8.12 7.95 7.15 8.11 6.49 2.36 6.27 9.7 9.57 11.2 4.02 6.62 6.28 8.91 6.27 9.07 10.3 1.62 10.8 9.75 10 0 11 8.7 8.94 7.19 6.88 6.95 5.18 12.3 9.18 8.98 9.58 8.07 7.92 12.2 3.75 7.98 5.59 10.6 6.61 0.76 4.02 6.34 9.11 10.3 9.18 1.91 5.26 5.76 5.26 1.91 7.6 11.1 9.33 6.74 8.14 10.3 8.24 2.36 7.09 8.04 8.07 7.06 2.55 5.76 6.99 6.56 9.51 8.81 10.4 8.92 10.1 7.8 6 10.6 9.07 8.55 11.1 8.07 9.18 5.9 8.57 10.9 9.54 9.69 13.1 8.4 9.14 8.6 7.11 10.7 2.16 9.84 9.91 9.37 7.84 2.36 8.63 7.8 8.05 10.1 5.52 9.5 7.73 9.46 9.1 10.9 10.4 4.19 9.17 9.84 6.39 7.7 1.25 2.71 7.79 5.43 8.7 11 8.8 9.37 6.91 7 8.03 8.3 10.3 4.44 9.41 4.02 5.56 9.08 4.49 9.04 6.47 9.28 10.1 6.82 7.29 0.76 2.55 4.4 10.2 8.29 8.86 12.5 2.36 8.48 9.58 7.3 4.44 8.25 10.6 9.1 11.4 9.52 10.5 9.78 7.13 11.1 2.98 9.52 12.6 10.3 9.69 8.59 4.94 9.68 9.14 8.95 7.51 9.87 5.09 8.79 3.75 9.62 8.65 9.66 11 9.97 10.3 9.79 6.94 11 3.75 7.02 9.64 7.39 9.22 4.32 5.36 9.43 10.7 10.8 11.1 4.3 8.12 3.75 9.43 11.3 6.67 6.17 9.31 7.99 1.25 0 5.07 4.91 8.24 5.18 5.26 10 14.1 7.39 9.81 10.8 3.22 8.95 10.2 9 11.7 9.86 8.62 4.35 9.09 11.8 11.3 9.89 7.85 11.1 1.25 10.3 8.12 10.4 9.94 0 5.56 9.47 8.51 10.1 9.19 12.1 8.86 6.04 9.11 9.32 9.26 9.54 3.1 10.6 7.62 5 8.52 11.8 6.51 9.74 6.84 2.36 8.73 11.8 5.95 9.92 3.82 7.42 8.55 9.26 7.39 9.17 6.39 11.2 8.17 8.83 8.82 11 10.3 5.88 9.55 9.63 8.12 10.2 4.94 10.9 7.59 8.81 0.76 8.29 9.42 9.39 7.33 3.59 11 7.46 10.2 15.6 8.03 8.75 11.2 7.32 6.95 6.57 9.04 5.72 2.85 6.23 5.26 10.6 11.1 6.36 4.53 7.28 3.67 10.9 7.05 9.55 9.4 8.36 9.93 7.96 2.55 10.1 4.65 7.95 8.93 11.6 6.72 8.03 8.44 7.86 8.84 7.26 7.69 11 10.8 6.25 7.83 9.59 3.1 4.4 7.91 9.62 0.76 8.52 4.77 8.24 8.78 6.54 4.19 5.48 7.35 10.7 5.41 9.34 6.09 7.39 10.2 9.79 9.54 8.4 7.83 8.39 11.9 10.5 4.81 8 5.97 9.85 7.46 10.6 7.84 10.6 8.38 12.2 7.26 10.2 5.09 10.1 9.93 11.8 8.77 11.3 6.77 9.92 12 9.34 8.22 0.76 9.06 6.99 6.24 8.67 2.98 1.25 4.4 5.56 2.85 2.16 0.76 2.85 8.44 11.1 7.26 9.47 10.9 6.03 11.5 9.15 5.24 6.9 8.17 6.94 11.1 6.58 10.2 2.85 6.89 10.9 9.08 9.71 9.46 9.21 0 8.22 6.47 6.04 6.45 12.3 7.79 0.76 8.47 9.69 7.69 10.1 9.22 4.19 9.92 8.04 7.03 6.34 9.4 8.47 2.56 7.23 8.8 7.27 12.3 10.4 12.1 8.25 11 10.8 10.2 4.77 10.6 9.65 10.8 9.58 8.82 2.98 10.1 10.1 10.7 8.61 10.2 12.5 10.8 11.3 11 9.33 5.18 11.2 12.6 7.62 2.71 10.4 9.01 2.16 9.05 6.65 10.4 11.6 11.1 5.09 8.82 10.6 8.08 6.98 8.45 7.33 11.3 11.1 5.04 1.91 8 8.76 7.77 7.32 6.52 1.25 4.14 6.47 8.6 9.19 8.07 5.18 7.63 6.49 11.1 8.58 3.51 8.64 8.99 10.2 8.16 10.8 5.92 4.08 7.72 11 7.56 10.2 9.67 11.5 9.81 8.97 9.91 3.75 10.6 9.24 9.12 10.7 8.56 7.28 8.97 5.23 10.3 8.84 3.59 9.98 9.9 10.2 9.94 7.94 9.28 11.3 9.9 0 11.6 10.1 10.7 5.87 0 11.8 13.6 2.36 10 7.57 10 7.05 9.74 5.18 5.83 2.36 8.07 6.44 5 7.82 10.4 10.9 8.36 0 11.9 7.56 8.85 7.23 4.94 7.52 9.67 4.53 4.75 1.26 9.4 8.19 8.61 10.6 4.3 10.3 8.47 10 8.7 11.4 10.5 3.42 6.03 11.3 2.36 9.35 5.87 8.97 2.36 9.32 2.71 10.9 7.5 10.6 4.19 7.55 8.45 10.6 3.89 7.42 4.08 8.82 9.55 6.67 9.18 10.4 6.47 10.9 6.86 6.12 6.85 11.7 5.23 10.6 7.51 7.3 9.03 10.6 6.3 10.2 9.98 3.1 9.95 8.23 6.6 10.1 9.15 10.4 9 9.7 9.58 8.84 8.33 6.68 3.59 8.62 4.65 10.2 8.56 3.67 11.2 8.06 9.07 5.65 9.44 10.9 11.7 10.1 10.5 10.4 9.22 6.37 4.69 6.59 6.07 9.59 4.19 9.03 5.23 8.75 8.35 8.6 7.42 11.4 13.6 11.6 9.65 12.2 6.32 6.67 9.28 9.15 9.49 11.5 6.77 7.51 9.01 4.35 9.67 8.36 6.1 10.7 9.7 3.1 11.1 10.5 10.7 6.88 9.98 9.68 9.32 2.16 8.72 6.46 7.53 1.62 6.46 8.25 6.16 6.21 7.45 8.93 8.88 12.1 10.3 7.61 9.18 6.66 1.62 8.62 11.4 10.5 5.63 10 4.91 10.2 9.04 10.3 10.2 9.93 0 1.62 12.2 10.1 4.19 8.41 8.52 10.3 8.13 10.2 11.5 9.72 9.97 9.81 11.9 10.4 11.1 7.02 11.3 6.51 9.23 6.3 9.18 9.77 9.3 10.8 5.18 8.58 10 3.32 10.3 8.19 15.2 10.8 11.4 11.4 10.7 8.63 9.91 12.3 10.5 9.47 10.6 8.1 8.75 11.2 11.7 10.7 7.91 9.49 6.93 9.97 8.89 7.63 8.94 12 9.85 8.88 8.94 7.97 7.79 11.6 9.71 9.42 9.27 11.9 11 4.35 9.23 11.8 9.5 2.71 15.9 9.44 12.6 8.67 9.31 8.71 6.86 11.9 12.5 10.6 12 10.6 7.2 10.7 8.82 8.94 11.7 5.31 7.2 2.55 10.4 4.87 9.09 11.3 5.54 13.9 13.6 9.43 9.61 8.97 10.2 8.53 12.3 11.5 10.8 9.09 9.75 10.2 8.95 5.69 8.67 10.2 10.3 10.2 9.54 7.89 9 10.2 8.38 7.45 10.5 13 17 7.74 9.02 10.2 7.59 10.7 6.04 12.4 13.2 10.1 2.55 11.3 9.59 10.4 9.37 9.8 8.24 10.3 10.9 12.2 8.33 10.2 11.2 9.3 10.6 10.4 5.12 10.6 12.3 7.49 11.1 9.71 9.42 9.74 10.8 8.84 11.1 10.8 1.62 7.11 5.7 9.69 10.1 8.89 12 9.13 2.36 8.57 2.71 12 6.66 9.15 9.6 8.32 4.84 10.2 1.62 9.15 7.45 16.3 3.1 5.26 9.33 9.38 9.04 9.3 9.3 10.4 8.96 9.38 9.03 10 7.91 9.71 10.9 6.39 8.8 10.6 8.47 12.5 8.23 9 8.73 10 8.03 11.1 10.1 12.9 7.57 6.44 5.65 7.96 7.8 10.6 8.66 11.3 8.54 11.7 7.78 8.87 9.56 11.5 7.65 10.2 12.1 9.17 9.22 10.2 11.6 12 10.7 10.9 8.68 9.9 8.97 12.5 9.18 12.2 8 11.4 10.9 8.82 10.2 10.8 8.89 11.1 11.3 10 11.4 10.4 4.3 10.5 11 6.01 10.2 12.4 11.5 11 10.3 9.98 1.25 11.6 9.38 9.27 11 8.35 10.5 8.23 10.7 9.92 8.91 9.46 10.5 7.36 10.1 8.74 10.4 6.85 9.76 4.57 10.8 10.5 8.35 5.6 9.81 7.65 7.67 9.33 10.3 10.2 5.65 8.68 9.63 8.12 9.01 8.75 9.23 5.41 7.45 7.83 9.11 8.74 8.05 7.48 2.55 10 8.58 9.42 7.69 10.9 11 4.94 6.4 7.54 11.2 10.5 9.8 9.56 10.3 10.4 9.51 10.3 9.77 11.8 11.4 10.5 10.2 8.33 10.5 9.16 11.4 8.33 9.64 7.55 10.9 9.47 11.4 7.74 9.12 10.3 9.63 7.84 10.1 11.8 4.57 10 6.21 8.66 11.3 10.5 9.71 9.97 7.09 9.65 10.6 10 11.9 8.48 7.12 6.49 10.1 7.11 6.17 9.73 11.5 11.3 5.74 11.5 10.7 9.1 8.32 8.75 10.5 11.8 9.13 11.1 8.03 10.2 11.8 6.04 10.9 8.78 7.56 9.13 11.2 12.3 2.36 7.51 6.72 10.9 8.3 7.88 12.6 9.27 7.5 10.6 5.29 8.84 3.89 6.27 10.4 10.9 8.74 12.7 9.26 3.32 4.57 12 9.58 10.4 9.89 3.36 10.5 10.7 9.79 10.2 10.8 12.3 8.85 8.7 8.55 10 12.2 9.64 11.9 12.1 8.99 12.1 1.91 11.8 8.85 11.9
-TCGA-DD-AACK-01 15.8 6.3 11.4 6.44 5.72 8.74 1.75 2.45 7.01 4.64 6.05 10.8 4.14 5.29 0 8.93 9.69 9.18 7.88 10.2 9.25 0.61 10 1.86 9.44 7.68 3.91 9.73 2.46 8.8 5.17 5.03 5.08 3.28 3.93 0.34 1.21 6.79 0.34 3.15 4.63 3.68 2.38 2.82 4.74 2.87 1.37 3.98 11.5 7.87 4.48 5.7 7.87 11.6 5.28 0.34 7.07 2.52 6.25 5.8 6.72 3.77 5.64 6.41 3.07 2.45 8.57 6.57 11.5 7.3 2.76 7.54 1.86 2.59 0 2.71 5.54 4.99 3.75 1.86 5.09 2.38 2.03 4.67 8.95 0.34 4.88 6.17 1.37 2.06 9.2 4.3 7.12 6.26 4.39 1.86 1.64 2.52 4.85 0.34 0.34 5.18 0.34 4.61 4.26 4.03 7.1 6.46 5.72 6.51 1.96 0 8.84 3.9 5.94 1.75 1.88 3.39 0.34 3.77 2.14 2.63 0 3.02 1.04 5.28 2.59 3.11 0 11.9 3.43 4.8 2.14 5.96 2.06 0.84 3.93 2.71 3.3 8.07 8 10.3 0.61 3.65 5.19 11.7 0 10.6 0.34 7.59 4.53 1.51 7.87 8.97 11.3 2.97 0.84 3.09 10.7 3.53 6.49 6.72 2.06 0.34 11.1 5.55 8.24 3.56 6.54 0.84 10.4 9.27 2.14 4.22 3.56 1.96 4.58 8.19 7.48 3.97 3.65 8.39 4.46 4.28 4.58 2.31 0 0.34 8.33 4.07 9.17 10.3 3.29 3.43 3.43 7.04 4.18 8.82 8.31 8.67 6.31 10.9 8.22 11.9 8.09 4.07 4.91 9.23 9.83 9.8 6.95 11.8 10.8 10.9 10.2 8.76 11.8 9.97 10.3 10.1 10.1 10 11.4 10.9 7.6 9.35 0.34 10.6 8.38 12.2 6 3.28 9.35 10 8.56 8.91 10.1 5.16 9.59 2.59 6.64 3.15 11.7 11.3 12.4 11.5 11.3 12.3 1.86 10.7 6.53 1.75 3.11 10.3 10.7 5.85 12.7 11.7 6.96 11.5 10.1 10.6 7.7 10.8 8.61 10 8.13 10.7 11.1 7.66 8.22 5.12 7.71 8.95 12.1 10.2 0.84 13.4 12.6 12.2 13.3 12.2 10.1 8.76 9.76 11.9 10.1 9.86 11.3 9.98 5.24 1.64 11.7 6.25 9.04 10.3 5.47 12.1 6.42 9.5 10.2 11.5 11.9 7.96 11.9 9.66 2.31 12.5 11.6 8.33 13.3 8.92 3.15 10.6 5.75 11 12 8.72 8.53 8.05 9.93 10.3 6.75 8.47 8.53 9.74 11.8 9.44 8.96 9.29 11.4 8.28 11.1 8.52 9.97 10.3 8.42 8.72 7.9 9.26 10.2 10 8.92 10.6 7.94 13.6 9.69 9.12 11.5 9.69 10.8 12.5 9.93 0 3.62 8.38 4.97 11.6 0.61 6.67 5.68 9.89 8.08 8.41 8.54 7.45 6.56 0 6.47 4.3 5.78 11.2 10.9 10 11.5 7.58 9.57 11.4 1.51 10.9 10.6 10.1 11.5 9.55 10.8 10.5 5.3 8.82 8.59 9.38 0.84 4.07 11.3 9.7 6.13 10.9 10.5 0.61 8.01 10.9 7.03 10.9 10.4 9.12 5.58 10.8 8.88 9.37 8.99 2.31 0.34 3.46 13.3 9.52 8.17 11.5 8.83 9.73 5.96 6.09 9.72 9.69 1.64 11.4 5.77 11.1 11.5 9.72 3.89 9.71 10.5 12.2 8.43 9.09 6.93 6.74 8.29 7.21 7.75 10.1 10.3 11.7 10.6 2.65 12.9 7.67 7.75 6.52 0 9.36 1.54 7.25 6.94 13 8.82 9.22 7.46 11.2 4.3 5.13 6.59 9.36 12.5 4.11 9.96 7.95 6.2 5.97 7.83 8.78 6.99 11.7 8.82 6.65 9.87 9.48 6.62 11.3 9.42 2.59 13.7 9.56 0.49 9.61 7.52 6.43 12.4 8.31 8.11 2.23 5.82 9.25 9.9 4.02 13.2 7.07 7.09 10.3 8.26 10.4 9.12 14.4 7.36 1.21 11.1 8.13 10 7.57 9.86 3.11 0 4.84 0.34 15 6.83 11.1 11.2 12.7 3.07 10.2 6.72 10.5 9 11.2 11.8 10.3 8.63 10.9 9.69 6.95 10.1 9.83 10.4 7.75 9.17 11.4 8.52 4.34 10.7 9.71 9.72 9.17 3.49 10.2 13.6 0.34 8.66 7.9 10.8 9.28 12 10.8 9.53 10.8 8.53 8.84 8.35 4.91 10.1 8.39 8.02 8.82 10.9 10.6 10.1 0.34 10.1 9.52 9.48 10.4 8.51 12.2 9.68 8.96 8.58 11.7 10.6 10.7 11.6 0.61 12.5 10.1 10.6 9.88 11.5 12 11.3 10.6 8.4 10.5 10.4 9.9 2.06 13.1 7.2 8.17 2.31 6.47 9.91 11.3 1.37 9.76 10.8 6.71 8.74 3.56 11.6 10.9 6.69 12.7 9.12 10.8 9.92 12.8 10.1 11.5 11.3 1.86 0.61 10.9 9.22 8.97 8.41 4.37 14 6.65 9.97 11.3 11.5 11.6 10.5 6.35 11 12 10.8 1.64 11.2 12.3 10.7 12 8.63 8.35 9.27 8.85 2.52 9.37 10.3 1.86 0.34 10.9 9.81 1.75 9.59 2.23 9.99 1.37 9.44 10.7 12.7 12 12.3 11.4 4.28 10.1 5.45 10.5 12.3 9.58 3.85 11.6 10.4 10.4 10.8 10.3 8.6 12.3 0.61 6.97 11.2 8.05 9.97 7.56 3.56 10.2 12.1 10.1 10.6 5.75 3.59 11.5 6.66 11.4 9.63 9.23 12.2 9.26 13.6 7.25 7.22 7.6 5.93 8.66 10.3 11.7 12.8 12.6 8.72 8.38 4.79 11.4 2.71 8.14 6.64 9.43 3.74 7.5 9.94 8.71 9.88 1.86 10.9 1.86 9.45 9.87 5.81 10.6 8 10.5 11.1 6.48 18.4 0 4.81 10.1 3.24 8.7 7.36 10.9 11.2 9.08 10.6 3.2 3.56 5.58 8.34 8.45 13.2 0 1.86 9.71 6 0.34 6.93 11.8 9.55 1.86 4.94 7.74 5.08 8.71 9.46 7.86 1.37 8.21 14.1 5.99 11.7 11.3 9.71 10.9 12.5 11.3 11.5 7.83 5.91 4.19 10.4 0.61 0 2.14 0.94 9.78 5.27 9.24 0.34 7.95 8.48 11.2 4.09 12.5 11.2 6.67 0 10.7 9.03 0 10 9.63 9.29 10.4 10 11.6 9.85 10.4 10.6 7.75 9.6 11.7 9.18 7.03 7.75 9.25 11.6 7.24 11.3 12.5 10.1 5.03 5.06 9.08 6.04 7.65 0 3.11 12.6 10.9 0.34 0.34 7.98 10.5 10.4 13.5 8.35 7.76 9.32 10.3 4.22 6.27 9.46 5.78 10.2 8.99 9.33 0.34 15.1 12.8 10.3 11.1 4.84 10.8 8.19 8.36 3.28 11.2 13.6 2.97 5.32 10.2 3.9 8.77 8.19 10.7 9.36 10.3 5.73 4.22 6.74 0 7.94 0 0.61 9.21 10 0 1.64 11.5 8.98 9.1 7.59 5.67 1.75 12 8.94 11.5 7.61 1.21 10.8 9.3 7.94 10.8 9.32 9.63 9.77 10.3 9.37 1.73 9.48 3.35 11.8 9.42 11.6 0 9.57 9.52 11 10.7 11.9 10.1 7.09 9.33 10.2 10.2 1.86 11.4 1.64 13.6 5.56 9.91 11.1 7.24 1.51 8.65 11.8 12.4 10.8 7.13 9.88 11.6 8.11 9.2 11.7 9.46 10.7 10.9 14 11.6 14.1 13.2 13.2 4.5 11.1 6.45 10.7 7.9 10.6 12 11.7 13.1 10.7 5.5 10.8 8.67 10.5 11 10.1 10.1 11.3 6.03 11.9 10.2 11.2 11.3 6.46 14.8 12.4 9.19 11.3 11.8 10.9 9.84 12.8 7.29 6.42 7.28 0.72 6.8 7.85 8.56 0.34 13.3 10.2 9.11 8.85 9.67 8.37 7.66 8.99 10.1 8.48 1.75 5.05 0 3.77 10.2 7.83 3.54 11.4 4.26 4.34 8.84 8.18 9.62 8.73 8.82 0.61 10.9 11.2 9.36 10.4 10.2 11.2 9.02 13.8 11.3 10.3 10.3 7.06 0.61 8.14 7.19 9.05 11 9.58 8.39 9.59 10.5 8.45 9.13 4.94 2.92 10.3 11.3 11.8 8.41 7.45 10.3 10.3 5.09 5.67 10.8 2.45 7.96 9.21 7.35 7.8 11.8 7.94 9.26 9.72 7.7 1.64 9.18 6.87 11.7 7.5 8.07 6.96 9.51 8.8 11.4 8.13 5.29 9.86 2.71 7.06 9.2 9.06 1.51 8.66 2.45 7.78 6.99 11.8 9.58 10.3 9.65 0 11.8 8.91 9.2 0.61 10.9 6.94 8.24 0.34 3.62 8.64 10.5 7.23 6.09 2.23 8.56 7.96 7.91 7.37 14.2 11.2 12.1 9.2 8.87 10.7 8.32 9.53 9.61 7.05 3.71 7.53 11.3 7.36 3.71 10.3 9.39 7.07 9.25 1.51 11.3 9.1 8.84 5.79 3.22 9.02 0.61 10.4 0 10.5 8.42 7.61 8.62 10.2 10.3 10.9 10 7.84 6.92 7.86 11.2 8.65 10.8 5.19 10.6 10 7.58 9.28 8.75 1.21 7.91 9.79 10.8 9.93 13 4.95 0.34 7.85 4.6 8.01 11.6 6.59 11 9.06 9.62 5.89 5.46 10 5.95 10.1 3.59 9.43 10.2 5.49 7.8 7.47 3.85 8.59 3.02 11.6 8.3 9.72 0.34 6.34 11.4 10.8 8.82 9.84 9.7 8.94 8.31 11.4 1.64 12.8 6.98 7.6 6.25 9.19 7.34 9.19 9.98 7.91 6.23 0.61 4.52 7.32 11.4 8.84 9.01 9.1 5.71 9.39 6.17 11 9.04 4.18 0.61 8.27 10 13.3 9.35 8.18 9.75 9.63 8.78 8.09 10.6 10.8 8.25 10.4 8.17 7.06 8.81 8.26 4.92 12.5 4.51 9 4.48 11.2 7.73 6.6 3.11 7.86 4.26 11.8 7.54 3.43 10.3 5.56 0.34 8.24 9.53 1.04 9.52 11.1 9.22 7.24 7.05 10.8 10.3 11.2 11.2 7.11 6.59 4.61 8.54 10.4 9.76 2.59 12.4 8.98 11 9.48 11.3 9.94 12.7 11.6 5.5 8.63 7.54 0.34 11.3 10.5 12.2 10.2 9.4 10.4 4.28 5.62 1.21 12.3 7.5 5.54 0 8.57 3.77 9.4 10.4 0.4 3.82 8.67 9.03 1.21 3.71 0 10.9 5.37 8.15 0 8.77 8.14 1.21 4.4 10.4 2.82 1.04 2.76 7.69 9.8 8.61 2.23 6.65 5.43 4.46 0 0 8 2.97 9.2 5.69 9.28 8.86 5.75 11.8 7.52 0.84 4.39 11.5 5.52 11.3 8.44 8.7 4.66 6.91 0.34 7.25 8.77 4.3 3.95 5.66 10.4 8.5 0.61 8.46 4.69 6.88 4.76 10.5 0.34 8.26 7.98 1.21 4.72 9.49 6.76 6.42 4.81 10.1 11.4 5.35 8.81 7.17 2.52 8.02 1.51 7.63 1.75 6.01 13.4 7.94 10.3 7.95 10.7 9.55 5.09 4.66 10.1 8.28 10.2 3.53 0.61 9.77 10.2 8.13 6.99 0 4.63 6.61 6.58 9.15 8.81 9.28 3.59 2.71 8.64 9.75 9.29 11.7 8.5 0.34 0 9.52 9.05 6.54 3.49 9.47 9.4 8.75 9.65 7.26 9.36 4.96 1.75 1.86 7.88 0.34 5.99 7.05 6.21 8.35 9.74 3.28 9.45 3.56 1.21 4.41 10.4 7.33 0 5.39 9.85 2.87 6.67 7.79 0.34 0.84 7.26 5.05 10 9.44 6.51 9.03 6.43 9.96 7.9 10.8 7.78 10.6 11.5 0.61 7.91 1.96 8.73 8.41 9.19 8.47 8.87 9.03 10.8 9.03 5.79 7.45 2.71 9.52 0 9.19 6.91 6.28 2.52 4.16 0 10 0.34 0 8.7 6.98 2.52 9.46 9.74 0.84 4.73 2.71 6.81 8.95 8.76 12.4 7.99 14 0.34 0.84 8.11 8.11 11.1 6.99 6.84 10.7 8.76 0.61 8.46 5.04 1.86 4.95 9.14 9.06 0 10.6 5.65 5.4 5.23 12.5 10.6 10.9 1.51 0 5.87 11.4 10.1 5.8 6.95 12.1 0.34 6.54 9.84 8.72 10.2 8.15 7.09 10.5 0 5.37 1.04 8.44 14.5 9.21 9.55 7.09 6.44 8.24 11.9 6.83 0.84 0 12.2 5.7 9.34 8.41 8.44 1.86 9.25 9.44 2.65 7.61 11.2 16.1 12 6.33 2.14 2.06 4.53 6.52 0 10 11.4 9.59 4.91 9.11 2.76 7.78 9.27 9.74 13.3 0.84 10.8 6.71 2.97 11.8 8.38 9.92 6.15 2.87 8.33 7.84 8.83 10.8 3.71 7.65 12.1 1.21 2.59 7.9 11.7 10.1 8.85 9.63 3.62 6.05 13.4 2.92 8.31 9.83 2.65 2.92 9.16 8.38 4.58 10.2 10.5 1.21 0.61 0.84 7.53 1.96 6.53 6.39 7.16 7.06 9.47 6.93 5.23 8.76 9.58 6.87 4.84 8.12 8.59 9.18 3.2 7.87 8.66 8.93 13.8 6.39 8.66 8.46 1.51 8.71 0.84 9.8 1.51 8 5.85 8.11 7.28 3.74 9.28 5.64 4.88 2.59 4.02 8.96 5.79 2.23 8.17 6.13 8.7 9.54 9.76 0.61 8.3 1.29 7.88 14.6 6.36 8.74 6.03 4.34 1.51 6.31 6.47 1.51 1.04 7.87 10 3.07 13 7.88 9.35 7.71 10.7 10.2 3.94 8.85 8.95 6.73 12.6 9.98 5.67 2.76 8.76 9.61 5.72 4.91 0.34 7.5 9.7 7.92 4.29 2.06 0 4.81 0.61 3.32 10.7 9.38 10.4 3.93 0 7.1 5.45 10.2 10.9 15.8 8.35 11.2 5.13 6.91 12.1 7.54 8.18 2.66 9 2.71 8.44 11.3 3.24 2.87 5.93 6.55 8.86 0.34 9.95 9.47 0.84 4.05 5.27 7.48 5.19 7.03 7.15 8.4 8.41 5.64 7.71 2.23 0.61 10.2 3.8 1.51 1.64 4.58 9.64 6 9.32 9.08 8.41 0.84 8.71 9.96 6.94 11.2 0 6.06 5.16 6.31 8.54 4.74 10.8 8.35 6.11 8.82 7.47 3.2 12 5.11 3.85 4.6 7.88 5.83 10.9 7.33 6.57 8.36 0.34 0 6.35 2.06 5.4 0.61 8.33 0.84 8.45 15.5 2.79 5.45 9.7 0 9.14 1.96 3.28 10.7 6.49 7.44 7.56 4.5 1.24 1.04 8.17 3.11 6.15 3.49 9.17 11.1 6.35 7.26 9.07 11 10.8 1.96 1.21 11.4 7.83 1.64 12.2 0 8.73 9.37 11.3 0.84 6.89 13 0 1.75 3.9 9.7 11.1 1.86 9.74 0 9.54 1.37 6.03 8.14 12.8 0.34 8.6 6.3 3.53 8.33 8.36 7.92 3.71 9.93 2.71 4.41 0.84 0.61 0.34 11 9.46 9.18 8.43 8.12 9.42 1.64 4.07 9.72 8.75 10.7 9.22 6.61 10.3 9.93 6.74 8.74 7.65 3.32 2.45 7.98 9.18 3.68 6.81 3.32 9.03 8.91 6.21 3.85 7.55 3.02 7.48 6.2 5.62 6.54 13.5 0.61 3.53 10.8 0.34 4.92 4.28 2.76 2.45 7.74 6.88 5.84 1.21 6.29 6.29 9.97 8.3 1.04 9.87 3.02 0 11.2 8.6 7.57 9.86 3.49 4.3 1.86 2.14 0 7.59 5.97 8.02 6.14 8.3 1.86 1.75 1.21 0 8.42 1.04 0 9.6 0.61 13 12.8 7.38 3.07 8.7 12.1 4.3 7.33 9.85 6.9 11.6 9.56 7.92 10.2 11.9 8.56 1.21 10.1 0.61 0 7.83 9.9 6.92 7.75 11.6 7.1 0.84 2.13 6.64 11.4 6.84 7.49 1.04 4.95 1.64 7.17 8.84 2.52 12.8 8.9 7.23 9.06 2.23 11.1 1.04 7.66 2.06 9.23 6.76 1.96 10.7 7.45 0.34 6.69 5.26 7.17 10.8 13.1 12.2 8.85 3.46 0.34 8.12 1.37 11.8 2.59 7.95 12.3 10.2 8.26 8.88 6.27 6.63 6.93 9.37 9.93 1.64 9.09 11.8 9.24 8.42 11.7 10.9 5.39 7.58 11.3 1.97 11.3 7.3 7.02 12.3 11.3 10.5 10.2 2.8 6.54 8.46 10.7 2.31 8.35 3.93 10.5 1.37 10.9 15.8 1.64 0 6.47 5.63 7.2 13.7 12.9 1.04 0.34 10.8 0.34 1.64 5.56 9.12 10.4 9.8 11.3 6 6.2 7.92 9.41 5.72 13.2 6.74 12.8 10.1 7.84 12 7.99 8.11 2.38 3.28 10.4 9.26 0 3.82 11.6 3.68 0 10.3 2.76 0 6.05 4.48 7.72 1.21 7.18 0 6.13 12.2 7.55 2.14 4 9 8.88 6.2 5.8 10.6 9.44 1.21 10.9 10.5 8.71 0 8.61 2.65 2.59 7.61 5.63 7.23 7.77 6.71 9.43 5.16 0.84 0 10.2 5.75 6.54 11 11.7 5.81 5.32 7.58 8.76 8.4 9.63 5.87 8.99 10 4.16 5.2 4.41 11.3 8.42 0 6.34 9.45 3.62 0.61 6.5 5.92 1.51 1.04 7.77 3.92 2.23 4.92 8.82 7.61 5.93 6.19 6.23 4.93 5.4 6.15 10.6 10.7 9.36 4.91 0 9.25 11.1 0.84 13.9 10.2 6.09 6.61 8.22 7.52 3.02 1.75 11 1.37 9.67 1.21 8.91 1.86 7.21 7.12 1.37 0.84 11.6 8.2 6.48 0.34 0.61 3.15 0.34 4.07 7.64 5.72 13.2 1.64 8.85 10.8 9.12 11.8 8.5 10.3 11.5 6.94 4.63 10.2 10.7 5.29 8.69 9.02 8.77 2.38 3.82 8.12 5.25 2.87 4.89 8.03 6.09 7.84 9.4 5.79 4.22 6.9 0.34 7.66 5.36 9 9.47 6.06 7.57 3.57 11.4 3.2 7.31 7.72 3.53 0.34 11.3 9.36 8.32 8.26 3.24 3.59 1.37 5.36 2.76 10.6 3.65 0 5.32 7.77 5.46 8.61 5.48 9.15 9.27 10.8 8.99 6.79 11.7 3.65 8.1 6.1 11.4 0.34 7.78 9.94 1.25 2.06 9.66 5.53 10.4 0.34 5.34 6.22 6.59 9.88 9.71 8.51 3.56 2.56 4.87 3.11 6.96 4.91 2.38 8.86 5.41 0.61 11.5 8.45 5.47 8.31 0 4.32 8.07 4.93 4.18 0.34 8.16 0.84 2.14 0.34 2.06 0 8.36 4.74 5.11 0.61 4.51 11 7.07 7.87 3.9 2.59 3.46 8.24 0.84 9.38 8.38 6.32 0.34 4.55 0 1.86 4.61 0 0 11.6 2.71 0.84 4.83 0 4.32 1.21 7.56 0.61 5.91 8.01 5.44 9.2 3.02 7.39 8.05 1.51 12.4 11.2 6.96 11.7 7.88 9.46 8.65 8.48 0 0 0.61 2.38 7.21 5.28 8.45 8.4 12.6 9.19 2.52 8.01 2.38 1.75 3.2 5.51 7.03 7.42 3.98 9.18 2.97 7.56 0.84 4.37 8.49 6.31 8.04 7.45 8.21 4.41 0 9.41 4.18 9.42 6.42 5.81 9.87 5.88 5.82 8.04 10.3 7.02 9.53 4.22 5.77 1.04 5.64 8.45 5.27 0.34 5.33 3.28 6.13 9.3 4.64 1.51 5.64 5.46 4.6 1.51 6.7 8.24 1.21 7.31 2.25 8.17 4.72 8 7.97 7.41 11.6 10.4 0.61 0.61 11.6 4.48 1.04 6.94 8.55 6.52 3.59 1.04 10.2 4.76 1.96 8.13 0 9.71 9.76 0 8.66 9.89 2.52 4.95 9.66 1.04 3.62 4.22 8.05 8.69 7.55 2.97 3.43 6.99 6.27 5.7 4.61 13.2 11.4 3.65 9.85 2.06 4.26 12.6 9.56 9.49 0 3.88 12.3 0.61 4.63 11.1 0 0 2.06 4.73 3.27 1.21 8.32 0 2.76 8.82 10 5.76 7.15 10.8 2.22 6.32 2.87 4.95 4.97 5.56 7.2 1.75 9.82 6.29 8.91 1.64 3.28 3.28 8.98 8.38 0.61 5.59 3.49 6.44 4.18 3.56 7.57 5.63 15 6.29 15.2 8.58 4.24 0 4.99 10.5 8.11 3.65 0 7.45 1.04 6.75 8.44 9.4 10.9 7.86 7.14 6.53 1.04 4.51 3.66 5.57 2.87 1.64 5.42 8.28 11.8 3.07 7.09 1.86 1.21 7.02 4.99 7.39 8.24 9.66 7.79 9.06 11.6 4.09 0 6.02 0.34 4.34 0.61 5.26 2.31 10.7 9.42 4.66 9.25 2.59 10.5 6.58 8.82 6.67 3.71 2.71 5.11 8.58 5.69 11.4 7.43 9.62 2.45 12.9 1.75 7.81 7.95 11.1 6.05 3.82 4.58 0.34 1.86 8.93 11 7.98 5.85 8.1 0.61 8.72 3.77 6.74 1.21 2.52 13.4 8.48 11.2 5.12 6.28 8.01 0.84 7.52 9.19 9.41 7.82 8.33 10.8 7.66 8.11 8.88 7.88 0.61 8.45 10.4 9.21 5.87 8 6.55 0 2.38 4.73 11.8 3.46 4.55 4.83 8.12 2.06 9.11 7.65 10.1 8.28 9.05 3.15 9.36 7.8 0.61 7.37 5.95 1.52 8.51 6.61 7.48 0.34 6.31 3.26 0.61 8.36 7.05 10.4 9.86 8.53 1.37 1.51 6.97 0 7.76 4.58 7 9.27 11.6 12.7 2.38 3.82 8.02 7.38 6.31 9.22 8.01 12.1 10.6 10.6 14.5 8.73 16.6 0 8.58 11.4 6.21 7.17 10.7 8.57 6.43 5.93 10.6 9.1 5.62 8.95 4.93 7.71 12.8 3.88 10.2 1.64 6.6 2.58 3.68 9.24 1.37 10.2 0 0 3.43 11.3 0.34 6.67 7.01 7.31 12.4 7.09 0 6.59 1.04 9.47 0.34 8.34 4.51 5.16 4.05 0 5.67 8.88 5.99 3.56 4.37 6.61 9.85 8.38 8.46 3.11 4.76 0.34 5.14 0 1.37 3.71 8.09 2.23 9.59 7.4 8.31 3.88 6.39 6.78 0 14.3 8.9 4.37 13.2 1.21 0 12.8 11.8 4.28 8.7 3.49 3.71 0.61 1.04 11.9 4.55 2.52 2.14 7.8 9.66 0 3.88 12.2 9.62 6.61 6.38 8.98 5.95 5.38 5.96 8.94 8.64 11 12.4 4.09 6.03 3.8 9.2 10.1 4.53 0.84 8.85 9.72 2.23 8.12 5.75 2.38 10.9 1.04 0.6 10.6 0.34 1.21 8.68 3.32 5.75 7.83 1.64 8.5 11.9 9.99 4.45 12.9 7.84 0.84 8.05 10.4 10.9 6.38 2.06 1.04 5.56 9.59 3.62 5.6 3.62 4.14 8 7.09 10.4 5.47 2.31 6.73 4.51 5.48 6.83 2.45 8.63 5.57 4.2 11.4 7.02 7 8.03 5 6.63 1.51 5.97 5.69 2.23 8.17 7.3 5.4 6.48 7.8 11.7 5.39 5.21 4.53 6.51 8.36 0.34 5.79 5.39 10.9 8.71 7.5 0.34 7.68 9.89 1.86 0 6.74 9.55 9.33 11.3 11.2 1.21 8.46 0 12.6 0 9.47 0.34 2.14 11 15.5 1.51 13.3 2.46 12.2 2.71 1.04 10.3 4.05 9.42 7.75 12.7 5.15 2.52 7.96 1.51 12.1 5.01 11.1 7.38 12.2 13.5 2.45 0 11.2 3.2 0.61 9.25 0.61 9.36 1.75 6.61 12.1 11.7 10.1 9.12 7.88 8.09 0.61 8.65 5.95 10.8 13.1 4.22 9.55 9.33 6.39 9.3 5.81 9.28 8.85 3.39 9.47 11.7 8.99 0.34 1.64 0 3.68 4.73 3.8 7.69 2.92 4.24 5.28 8.35 4 6.74 3.56 9.11 8.6 0.34 2.38 7.42 5.13 4.66 1.75 4.22 8.54 1.48 9.84 5.51 1.96 0.84 7.96 8.71 6.6 1.64 4.8 7.15 5.39 4 0 3.53 6.19 7.93 2.45 8.23 8.57 3.49 9.61 6.34 0.34 10.3 0 1.86 8.37 3.56 0.34 10.2 3.18 3.85 8.54 7 9.59 0 9.96 7.41 0 0 6.84 5.12 12.2 9.52 11.5 0.34 9.78 9.97 9.41 13.9 16.2 8.85 7.6 10.3 9.97 12.7 5.87 12.6 9 6.3 13.1 1.21 10.6 11.4 11.6 9.86 5.38 4.37 6.42 12.1 1.64 0 0.34 4.37 10.5 10.9 11.4 4.26 4.76 7.78 8.31 6.02 5.46 3.88 4.94 0 4.55 8.51 4 6.66 10.7 12.3 9.93 3.11 10.1 10.2 11.7 10.1 5.34 8.08 5.27 9.82 7.07 1.51 5.4 8.54 10.7 14.1 1.51 9.98 9.9 10.7 10.5 10.2 7.8 0.34 9.47 2.87 0 9.73 9.28 6.79 0 10.4 8.53 10.9 10.2 16.5 10.7 12.9 7.46 9.72 7.18 7.25 8.54 8.76 8.77 12.2 4.56 12.2 3.32 9.31 12.6 8.24 10.3 8.85 4.16 10.2 9.94 9.36 10.4 9.49 10.4 7.55 8.76 5.12 8.82 9.98 6.86 8.58 9.28 6.06 6.16 11.5 14.6 11.7 14.3 14.1 6.38 7.94 5.27 12 9.5 3.46 7.24 4.87 6.85 12.4 9.19 5.94 11.8 16.2 2.14 10.9 10.1 10.3 6.43 7.67 6.7 12.5 12.8 13.8 15.8 10.2 11.7 4.83 6.93 0.84 8.9 9.11 3.02 8.43 8.22 7.43 4.18 10.3 11.6 9.51 12.2 7.26 7.82 4.84 11.2 3.65 0.34 0 9.17 0 12.8 5.59 6.19 8.33 3.02 7.01 10.2 5.55 13.3 9.1 10.5 8.64 10.8 1.04 7.7 11.8 8.52 2.73 11 8.53 8.28 3.29 12.1 5.48 7.26 9.42 4.05 1.86 0 0.67 8.95 4.34 6.36 11.4 9.35 7 14.1 5.12 9.89 8.56 4.24 5.76 10.3 12.2 7.54 12.7 8.55 9.46 12.3 14.1 13.4 11.9 13.7 0 7.62 0 10.8 2.82 5 10.4 0.34 0.61 0.34 8.28 0.61 9.89 6.47 0 1.96 4.11 6.65 6.39 2.92 1.75 8.76 3.82 8.81 6.63 10.6 6.75 2.65 7.98 16.4 11.3 5.99 0.61 8.41 10 8.3 5.2 3.28 11.3 0 2.38 1.04 3.53 11.2 9.36 2.27 9.71 8.22 0 8.51 2.15 5.64 2.76 6.84 0 2.31 1.64 8.52 6.94 5.09 5.62 9.06 5.99 3.02 5.65 10.2 5.86 5.5 4.5 7.69 6.2 7.37 8.73 5.08 12.3 10.9 8.47 7.67 9.28 10.1 9.47 6.43 7.86 9.31 9.96 6.17 8.21 3.71 9.43 6.97 12.4 9.67 9.07 10.8 6.33 7.09 6.29 1.21 11 2.31 7.06 1.21 9.86 2.14 2.52 7.83 7.83 10.6 0.61 5.9 10.1 8.57 4.16 7.96 11.9 7.1 0.34 3.35 8.14 0 10.5 10.4 8.6 7.37 9.79 9.58 5.2 6.1 4.22 8.85 2.59 10.2 9.59 10.8 13.9 1.21 7.4 2.97 0 0 4.92 9.58 7.12 10.6 11.6 10.2 10.2 10.7 8.23 7.36 13.7 9.46 0.34 0.34 8.53 8.33 8.37 5.03 7.48 8.34 9.31 2.59 10.5 9.46 12.8 9.54 10.2 4.32 6.21 9.57 7.69 10.1 8.55 10.5 11.9 12.8 9.6 5.23 0 5.64 4.36 4.63 6.5 10.4 2.82 8.07 11 10.1 3.28 16.2 7.97 11.6 8.17 7.95 8.19 8.51 9.6 6.47 7.43 9.69 11.7 10.8 10.7 10.9 1.96 8.08 11.7 2.92 0.84 11.2 8.94 9.44 0 11.4 0 9.44 9.75 7.64 10.7 7.32 10.7 7.6 11 11.7 7.88 11.3 11.7 3.11 5.28 12.3 1.21 10.7 1.37 11.3 13.6 14.1 13 11.3 10.2 12.3 8.23 5.48 5.94 9.38 9.58 1.04 8.42 4.03 7.56 5.67 6.56 8.53 20.7 12.4 10.8 10.4 0 8.12 9.95 0.34 3.15 11.7 5.28 8.59 7.5 15.5 8.57 10.2 9.26 8.31 3.59 13.6 12 8.69 12.3 15.6 13.9 5.93 9.27 4.93 0.84 15.4 4.26 4.8 8.83 9.62 7.17 5.37 13.2 15.4 12.5 15.4 12.8 8.81 9.67 2.82 8.42 7.34 13.8 6.95 7.57 2.59 10.3 7.69 6.83 5.04 15.5 9.78 12.9 2.14 2.06 7.78 3.46 3.08 10.1 2.23 8.69 13.1 1.96 1.21 9.53 6.65 10.9 4.05 2.92 7.23 8.14 5.59 8.39 5.06 4.5 9.24 8 0.34 9.05 10.5 9.16 3.64 8.78 8.78 10.4 5 5.31 7.59 7.33 1.51 1.37 2.23 5.94 3.32 1.86 3.28 2.23 7 12.4 12.7 4.34 0.84 0 3.32 6.97 2.45 7.15 0 7.69 6.39 0.34 0.61 4.24 7.53 6.18 0.61 6.47 8.08 7.23 12.4 5.89 7.38 5.29 1.64 9.32 9.9 1.96 11.1 9.53 9.19 0.84 11.2 8.62 7.08 6.16 9.69 9.08 7.75 3.32 8.22 5.76 9.86 1.86 7.63 4.2 0 9.67 8.51 3.2 9.32 1.75 1.04 2.76 9.2 2.45 5.23 6.32 1.64 11.3 1.96 8.7 9.64 2.31 7.66 5.81 8.49 4.21 8.4 1.04 2.76 12.6 9.65 0 12.2 7.87 7.08 8.79 0 8.64 2.92 8.88 1.86 7.98 1.75 9.72 1.37 8.71 8.45 9.01 6.3 0 9.7 8.25 7.09 7.56 0.61 7.48 13.7 2.38 8.76 6.89 1.64 8.44 7.27 4.56 8.85 14.3 9.06 3.02 0 1.75 0 3.11 9.43 10.4 0.34 1.51 0.34 1.86 6.88 0.34 6.51 2.97 5.07 11.7 10.6 9.64 2.31 9.62 10.2 9.97 6.93 13.7 6.36 7.86 6.34 3.68 2.59 0 2.45 2.76 3.8 0 4.91 8.36 13 6.75 11.5 5.8 0.84 11.8 5.99 12.2 7.39 8.96 5.94 8.02 10.4 8.71 8.97 5.32 11.8 9.58 4 0 11 3.59 5.61 8.2 14.4 3.2 12.1 4.05 12.7 7.03 11.7 8.16 8.83 10 11.9 9.76 7 6.64 9.59 5.49 10.8 11.3 9.47 10.6 8.12 2.11 4.14 9.88 8.62 8.86 9.04 7.38 8.83 7.3 8.44 0 7.85 8.74 5.5 10.8 9.72 12.2 8.59 10.4 0 10.4 6.12 10.6 11.2 0.34 12.8 5.62 10.2 8.81 6.67 9.93 10.1 9.14 11.5 9.76 7.56 10.1 8.58 8.24 11.8 9.37 7.84 8.82 12 8.93 0.61 10.2 10.1 1.96 8.26 6.86 7.69 16.3 8.36 5.74 9.33 8.34 10.1 8.45 9.29 10.9 9.6 9.65 6.47 10.9 3.74 5.64 10.3 0 10.7 9.83 9.06 9.98 9.2 2.23 10.3 9.17 13.7 9.92 9.94 10.7 6.1 9.95 8.2 11.8 11.7 10.1 10 7.8 12.2 15.1 9.64 0.34 8.16 9.06 4.79 1.04 2.14 9.26 8.18 10.1 9.97 4.16 3.77 10.9 7.52 6.69 4.74 10.4 11.2 0.34 0 0 9.77 11.2 9.92 8.01 6.1 8.89 0.61 7.02 10.9 11.7 9.13 7.73 7.53 3.46 8.91 0.84 10.5 8.4 10.7 9.79 9.65 9.1 11.6 0.61 12.3 9.05 10.7 1.21 0.61 6.11 9.71 9.24 9.61 9.31 9.73 9.03 9.22 8.14 8.51 5.64 9.27 10.2 10.2 12.2 7.29 4.98 8.84 9.38 10.7 8.33 8.76 6.39 11.1 9.37 2.14 7.78 5.96 9.65 11.4 10.2 10.6 10.5 10.4 3.07 10.2 10.5 11.5 6.02 10.2 9.6 10.2 9.05 10.3 10 8.06 9.28 9.73 9.75 8.93 9.29 12.8 10.2 4.6 9.85 8.76 8.09 9.71 9.33 5.08 8.44 7.31 8.47 8.59 8.97 2.65 11 6.25 11 4.43 1.21 6.28 9.04 9.29 5.97 8.33 8.27 10.4 7.65 3.89 3.59 8.98 9.47 10.2 2.59 10.5 7.53 10.8 9.13 7.18 9.73 9.84 5.97 9.49 6.18 9.36 12 9.95 10.1 10.3 9.24 9.15 1.37 2.71 3.46 1.04 9.62 9.3 10.7 8.43 10.2 9.87 9.68 11.2 10.1 9.12 8.91 8.95 10.2 9.52 10.2 11.1 10.1 11 12.7 10.7 5.82 8.86 9.57 10.5 10.7 9.76 8.29 6.83 8.36 6.28 9.44 8.8 10.8 10.1 9.27 8.07 11.9 10.9 12 11.1 9.7 13.7 7.94 9.91 12.3 10.5 10.6 10.8 10 6.33 11.4 12.3 5.51 10.3 6.83 1.04 10 8.62 9.52 10 5.11 10.4 11.4 10.2 0.84 8.55 9.03 1.86 10.1 8.35 10.9 10.2 11 8.15 7.92 6.08 9.97 9.08 7.61 6.1 9.04 10.7 9.21 1.51 9.94 8.6 10.2 9.74 10.8 9.88 11 6.59 9.38 8.42 9.6 10.5 1.21 6.92 9.27 3.61 5.56 10.1 9.93 8.53 6.84 7.66 9.55 8.75 11.2 11.3 10.8 9.13 8.78 4.28 8.21 9.06 9.91 9.53 9.16 7.8 13.1 9.68 13 0.84 10.2 4.28 5.82 10.5 7.63 7.94 9.37 9.9 9.44 8.41 11.3 9 12.6 10.2 10.4 6.66 10.8 9.37 7.82 8.83 9.6 8.66 9.16 4.87 8.38 8.96 11.1 9.17 9.96 8.61 9.95 9.43 10.3 9.24 5.98 10.7 10.8 11.4 9.68 9.08 8.92 9.86 9.75 9.65 9.04 5.67 8.06 9.8 0 9.93 11.9 9.38 9.72 9.43 1.04 18.2 10.3 10.5 11.7 10.3 8.25 8.41 8.45 10.8 0.34 9.26 9.02 9.08 9.73 12.4 7.43 12.6 8.94 11.5 10.3 11.4 8.17 10.5 8.89 9.27 8.7 12 8.05 9.49 10.4 11.4 10.7 9.94 9.91 10.2 8.71 11.1 10.5 9.6 8.78 6.69 8.47 10.3 8.49 8.48 8.66 8.65 10.7 9.04 9.75 5.99 9.79 8.47 10 3.65 4.72 1.64 1.04 10.5 0 9.42 12 6.8 8.75 8.48 1.21 6.83 9.46 0 8.21 3.93 9.86 11.5 9.67 9.48 10.8 11.6 12.4 8.15 9.58 5.34 7.96 10.4 10.8 7.41 9.96 9.98 5.88 4.02 9.9 10.6 12.8 9.54 9.39 13.3 10.7 11.4 11 0.34 10.6 11.1 8.58 10.1 9.94 8.62 8.15 0.34 11.2 11.7 7.07 7.39 9.46 0 10.1 8.3 8.52 10.1 11.5 9.02 9.72 9.56 10.8 8.58 8.29 14.3 9.95 8.91 0 1.21 13.7 8.59 9.78 12.8 8.63 9.48 8.99 6.81 10.7 11.9 10.5 0 5.97 9.95 7.45 3.02 9.14 10.4 6.71 10.3 0.34 9.34 0.34 1.75 8.67 10.7 8.86 10.9 5.07 6.55 9.55 6.85 8.88 8.83 11.9 10.3 10.7 10 8 0.86 9.49 0.84 7.62 10.5 0.34 4.09 12.3 0.84 9.81 9.62 9.23 10.2 10.1 8.86 9.88 10.4 10.7 7.47 7.51 9.47 9.89 6.38 9.11 7.72 8.75 10.1 11.8 2.52 11.5 6.58 10.5 10.8 9.09 8.41 9.61 2.23 6.2 10.6 7.69 8.52 3.24 0.61 5.17 6.15 10.6 3.2 9.98 9.29 2.52 9.49 4.67 8.54 8.85 10.3 9.82 11.4 9.73 9.06 8.39 1.75 13.3 10.8 9.29 9.09 8.19 12.2 9.05 11.1 9.19 1.96 9.15 6.4 10.6 9.1 10.8 9.58 11.1 11.3 13.1 9.65 10.3 11 8.86 4.93 9.93 7.91 1.64 8.17 2.97 4.2 12.4 9.03 1.96 11 10.8 11.2 12.1 0.34 3.07 9.01 5.7 5.49 7.71 9.23 8.66 8.95 0 8.81 10.2 8.71 7.92 6.29 11.7 9.37 0 6.82 6.75 2.86 7.28 2.38 6.28 0.34 9.37 0 7.89 1.86 7.78 8.31 6.31 5.41 5.24 6.24 1.21 5.94 1.96 10.2 9.57 6.84 10.1 4.36 10.2 15.7 9.55 10.1 1.21 18.5 11.6 12.2 11.8 5.67 2.87 1.75 6.49 2.59 7.52 10.5 4.76 2.04 8.67 7.31 5.32 5.5 0 3.43 8.69 10.8 9.36 2.87 1.75 3.71 9.51 6.83 8.6 5.16 10.9 3.28 11 8.88 5.57 5.58 9.02 6.97 4.24 10.7 3.46 6.06 8.54 6.35 6.43 0 10.5 10.9 8.02 7.75 0.84 6.5 7.2 8.6 0.84 7.16 9.97 0.34 1.04 8.14 0.61 1.04 12.3 7.68 4.87 5.62 1.64 0.34 8.54 8.35 6.01 10.2 6.07 5.94 10.5 1.51 12.5 2.14 6 11.9 6.78 10 7.65 8.03 5.32 8.96 4.01 7.92 1.86 0.61 3.82 9.24 8.77 7.91 3.2 1.21 7.64 0 8.39 5.17 6.52 5.79 0 8.93 8.36 8.24 7.79 11.7 7.43 4.48 7.07 3.8 6.17 8.37 7.85 8.32 5.74 0.34 5.49 6.17 4.72 8.68 6.49 8.29 5.89 7.12 1.21 7.92 9.22 4.48 8.78 5.24 8.43 1.51 9.11 6.7 0 2.82 0.34 1.37 0.34 4.37 7.07 0.34 8.29 3.35 1.21 1.75 2.92 2.14 6.69 0 3.53 7.5 1.75 7.92 4.84 4.05 0.61 1.37 7.37 5.78 0 3.35 0.34 10.1 10.4 12.5 6.69 2.06 11.6 10.7 7.83 9.25 0.61 8.92 12.3 7.51 8.35 9.67 5.69 1.37 5.07 1.04 10.6 10 10.9 0 10 7.3 11.3 7.11 11.1 9.16 8.69 7.61 6.36 1.04 11.1 10.5 9.15 6.43 7.71 0.34 10.9 11.2 6.83 2.31 7.2 11.2 10.2 9.2 7.17 2.31 12 7.18 2.14 11.2 9.57 6.92 2.14 11.2 7.92 5.08 10.1 7.8 10.4 10.5 14.3 9.54 9.76 9.17 12 7.59 10.2 6.62 9.61 5.48 8.75 8.87 10.1 8.26 9.96 0.61 5.64 3.59 8.59 9.28 12 9.39 12.8 12.4 10.6 0.61 6.01 9.85 7.81 8.48 10.3 7.71 7.62 11.3 3.07 0 2.59 8.84 9.12 10 8.19 17.7 12.8 8.79 9.17 8.77 8.12 9.11 8.63 2.97 10.1 4.58 7.03 12.5 8.63 7.31 10.4 10.1 9.07 2.38 11.1 10.3 11.5 0 4.79 8.47 10 2.06 8.67 5.39 9.9 8.3 5.88 0.84 9.55 1.37 8.87 0.84 0.34 2.82 13.1 10.8 6.38 10.1 9.56 9.23 7.27 8.93 8.58 10.5 9.86 10 7.74 7.89 7.14 9.71 9.06 7.87 8.03 12.6 6.55 9.68 10.6 8.68 7.65 10 9.24 6.22 16 9.22 9.76 7.9 9.29 9.69 9.15 10.2 9.38 10.1 9.15 9.24 12.1 13.8 7.81 9.5 7 11.9 9.81 11.4 4.55 2.14 9.24 11.5 1.37 11.5 8.41 12.3 9.58 11.9 1.04 9.7 4.48 9.72 10.7 10.4 9.95 11.8 10.5 9.19 3.8 2.1 7.08 7.72 9.91 6.9 0 6.76 4.32 9.89 9.13 10.1 0 9.34 8.15 8.17 6.67 1.64 8.88 8.98 7.37 9.07 0.61 6.91 3.95 9.38 10.3 6.96 10.7 10.1 9.78 10.4 11.4 10.6 11.5 7.75 12.7 0 9.51 5.48 9.89 10.8 9.37 9.95 8.47 8.43 0.84 10.4 7.42 11.4 10.4 0.34 9.13 5.32 9.33 8.36 10.7 8.4 10.2 8.67 8.48 9.54 11.2 12.7 9.71 4.02 7.73 10.2 8.71 7.18 4.73 8.53 0.84 9.63 7.69 5.75 0.61 10.4 11.7 7.48 7.67 9.9 3.46 9.81 11.5 9.91 9.77 11.4 4.45 7.9 10.6 3.39 10.3 4.14 11.1 8.73 8.88 1.51 8.03 10.9 0.61 8.54 3.88 9.1 9.31 11.6 0 9.8 0 4.73 5.77 7.41 9.76 11 8.97 4.73 9 5.39 3.9 0.84 2.71 0.61 10 10.5 9.33 9.57 3.55 9.8 9.72 1.64 8.74 9.15 9.73 8.62 7.53 6.47 8.32 9.26 10.6 8.39 9.34 7.47 0.84 15.9 10.5 10.4 0 11.1 0.34 8.68 7.77 9.34 5.18 8.86 12 10.1 0.61 10.5 9.68 10.9 10.8 10.6 6.13 10.4 9.88 4.09 10.5 10.8 1.21 11.8 9.89 10.1 4.34 9.51 5.4 9.32 10.4 7.78 10.5 1.75 7.71 8.04 9.47 7.48 9.55 9.73 10.4 9.44 9.3 9.83 9.11 8.79 11.1 8.03 4.14 0 10.5 1.04 2.17 9.89 9.2 8.74 9.87 2.65 9.21 9.7 0.34 9.75 4.92 7.97 1.86 10.5 12.8 7.47 2.76 6.15 2.63 7.92 5.86 7.4 12.5 0.61 6.48 6.27 0.84 9.03 3.8 11.4 11.3 7.92 6.07 8.35 5.4 0.34 4.32 12.7 10.6 5.64 4.98 7.08 0 12.6 8.94 7.24 10.5 10.3 0 10.7 9.04 8.18 10.5 1.21 6.47 9.16 8.84 4.2 8.37 10.5 14.3 9.6 10.4 10.6 5.11 9.57 9.19 0 0.34 9.27 2.82 7.26 8.51 6.59 10.4 7.02 7.57 10.9 8.9 7.77 10.7 1.37 10 2.14 4.66 9.37 6.38 9.11 10.6 13 11.4 4.53 2.14 9.32 10.2 13.3 1.75 3.32 9.33 3.28 6.82 2.06 8.42 8.41 5.18 9.57 2.14 12.8 2.52 7.33 0 4.05 10.2 9.3 0.34 0.61 10.9 10.6 9.4 12.2 9.17 8.99 7.17 9.09 2.45 8.41 4.92 7.48 4.11 1.64 11.9 0.34 7.16 4.8 7.38 8.07 10.9 1.64 6.49 11.2 7.93 6.44 0 6.4 8 3.49 6.17 8.64 9.8 0.61 9.13 1.37 6.45 7.19 9.54 11 8.11 11.7 7.87 4.18 4.37 10.2 5.6 0 12.2 2.59 2.23 0.34 5.29 11.3 2.82 7.33 12.1 7.88 3.43 7.75 9.72 8.89 9.08 4.77 4.73 6.78 9.44 11.5 9.35 7.49 8.28 9.15 11 11.2 10.7 8.47 7.76 0.84 9.2 9.55 6.16 0 6.09 2.97 9.81 11.8 7.84 8.58 0 0 9.97 2.38 1.64 11.1 9.15 9.63 1.96 8.15 1.37 9.13 11.9 5.33 9.62 11 1.21 9.98 9.44 11.2 10.7 2.92 11.5 10.4 7.7 12.1 11.8 10 9.43 9.19 8.92 0.34 3.85 12.7 5.33 10 9.01 3.07 4.88 9.94 10.1 2.31 3.46 6.64 11.5 10.4 9.72 0.84 10.5 9.05 8.36 12 2.71 7.44 10.4 8.14 0 10.9 14.9 11.9 10.2 14.7 1.86 10.8 8.86 10.7 4.51 8.69 9.84 4.97 9.72 12.8 10.9 7.53 7.83 10.2 13.7 2.76 3.39 11.7 11.4 1.24 2.23 1.37 11.5 4.43 0 8.81 8.83 3.43 9.93 3.53 0.84 12.8 1.64 6.11 9.48 11 11.5 11.6 11.7 13.8 13.3 10.5 0.61 7.97 3.85 0.61 7.38 12.5 8.79 13.3 8.45 7.17 1.37 1.37 6.69 3.82 0 1.21 2.65 8.03 3.8 7.16 1.04 8.69 2.06 0 10.8 2.45 4.67 10 3.35 5.48 14.2 2.38 4.18 1.51 3.32 8.1 12.4 8.53 12.6 10.3 1.51 1.86 4.41 6.26 1.04 9.88 6.31 6.98 7.98 8.1 0.61 6.6 7.55 0.84 5.32 4.55 7.95 8.99 9.03 3.56 7.79 0.61 9.33 12 10 12.1 1.37 4.69 2.38 2.71 5.21 0.34 9.46 2.14 6.56 6.8 10 8.27 9.27 6.17 0.34 1.71 3.46 10.8 3.39 4.6 0.61 7.24 0 6.16 13.6 2.52 10.6 10.3 6.29 3.77 2 2.71 3.43 6.13 2.52 7.54 2.06 0.34 2.74 10.1 6.64 6.41 7.63 4.06 9.19 4.36 9.19 5.36 8.77 5.74 3.28 1.51 8.46 7.98 0.9 2.38 6.04 8.63 9.29 7.18 2.87 8.37 8.87 0.61 4.76 8.57 2.76 3.49 5.45 6.45 5.16 9.24 3.59 3.15 2.45 1.75 8.46 7.81 0.34 2.06 0 11 0 12.9 7.76 10.5 8.12 7.8 6 8.96 4.92 4.93 0 2.14 6.4 2.45 0.84 7.1 1.86 10.4 0.34 3.15 1.64 4.63 2.76 8.11 7.76 8.03 3.33 4.6 4.32 2.76 4.77 0 2.87 12 1.04 6.75 7.11 4.7 1.96 1.21 6.29 2.31 0.61 7.71 1.04 3.02 0 10.9 6.49 6.17 6.36 8.02 0.84 3.49 0.84 7.78 0.34 3.28 1.75 7.41 6.86 6.89 3.53 7.02 0 1.75 1.98 8.52 1.75 6.09 1.96 5.89 2.52 9.74 0.34 0.84 2.52 0.34 7.78 0.34 6.57 2.14 6.4 7.55 5.98 4.3 10 8.2 0 0 2.06 5.2 0.34 8.67 10.1 8.38 5.76 9.72 0.84 7.97 0.61 1.64 6.58 6.27 5.77 9.64 8.23 8.23 0 5.25 8.7 9.05 1.75 7.39 7.17 0.34 10.3 2.97 5.85 10.2 9.58 4.02 10.2 4.98 6.38 3.07 3.28 11 0.34 7.29 2.82 0.34 5 6.33 9.6 9.05 1.21 8.33 0.61 7.41 1.96 3.39 1.86 2.82 7.9 5.51 9.6 1.96 7.14 9.11 0.84 6.23 8.47 6.94 3.11 8.39 2.82 6.01 0.34 9.9 3.23 4.76 7.4 3.46 3.07 6.86 0.34 3.77 5.97 5.5 2.27 6.55 1.21 0 4.56 4.36 3.85 1.21 8.68 6.78 0.61 11.4 8.11 8.87 5.55 2.97 0.84 7.46 0 8.85 10.1 9.09 4.07 0.61 6.93 2.06 1.87 5.92 8.66 9.37 8.39 0.84 6.11 10.4 9.35 8.45 4.73 0.84 1.86 6.69 5.21 2.14 5.36 5.73 5.21 7.63 4.61 3.07 8.89 11.9 11.2 9.97 10.6 12.7 14.4 14 12.4 3.71 7.91 11.4 10.3 10.8 0.34 2.58 8.41 8.98 9.72 10.4 9.59 10.9 14.9 12.7 10.3 9.89 9.13 0 7.73 1.21 9.76 0.34 11.3 7.88 11.6 11.5 10.6 10.7 9.81 10.6 7.06 7.82 7.43 10.1 8.09 10.4 10.5 9.36 0 7.4 8.95 7.98 10.6 9.92 11 7.26 14 0.61 1.04 11.2 0.34 10 0 9.69 2.76 8.87 12.2 3.11 8.7 7.32 10.1 9.61 13.3 6.39 9.84 10.6 10.3 9.14 9.85 10.5 9.22 9.08 9.29 6.62 10.2 10.3 9.15 10.3 6.99 11.7 9.33 8.81 7.68 9.77 8.82 10.4 9.39 8.2 9.69 10.8 11.1 10.3 9.53 10.2 7.99 9.47 0 8.06 6.5 7.25 1.04 9.92 10 6.47 9.94 1.37 4 8.4 1.04 10.9 3.35 3.39 8.18 7.24 0 1.21 4.41 12.9 9.5 2.14 14 1.75 10.8 12.1 10.2 10.2 11.3 11.6 12.4 11.2 8.33 9.44 8.66 8.8 9.73 2.31 7.51 10.8 4.02 10.5 10.1 7.25 9.09 9.52 7.93 9.28 10.7 8.62 9.83 7.19 8.64 9.11 11.6 12.1 11.4 9.11 0 10.6 9.63 8.64 9.72 8.29 0.61 12 7.66 1.21 10.4 9.84 0 6.57 9.81 4.81 11 4.66 11 0 3.11 7.19 3.65 8.04 3.65 11.8 6.77 7.07 7.44 7.48 2.38 7.83 7.29 0.84 3.59 10.3 11.5 10 12.5 10.3 10.6 8.16 10.8 9.99 10.8 10.2 5.52 10.8 1.04 9.68 7 12 8.13 8.1 7.09 9.46 1.04 9.2 3.68 9.07 9.03 9.22 8.8 9.14 9.22 10.4 7.63 6.5 12 8.95 10.7 13.5 8.7 8.36 3.24 4.46 7.2 0.61 9.62 7.05 6.97 0.61 7.46 8.31 8.13 13.3 7.6 8.22 0 11.3 9.1 13.8 6.11 10.8 11.1 0.34 9.46 5.72 10.2 9.33 4.5 12.4 8.36 8.09 8.54 10.8 11.9 8.25 9.29 9.86 9.63 0 9.65 4.39 9.51 5.16 2.45 8.43 7.67 11.9 8.31 0.87 12.6 0.34 9.83 10.3 6.35 3.62 4.8 9.81 3.32 4.8 3.32 13.3 10.6 12.1 0 2.06 1.04 9.02 4 1.03 9.08 11.7 8.4 13.6 11.6 13.1 11.2 11 6.14 13.6 13.2 12.7 9.8 10.6 0.84 1.21 5.11 6.55 12.1 7.39 7.54 0 0.34 0 2.45 9.12 14.5 10.8 6.93 8.56 2.06 10.9 10.9 10 3.46 13.1 14 11.8 6.7 7.17 11.8 12.4 14.8 9.06 13.2 12.3 2.45 0.84 10.3 5.6 1.21 2.76 4.37 9.48 1.37 8.8 9.01 6.7 10.8 4.05 8.36 10.4 6.13 9.18 9.7 6.47 9.56 10.3 13.1 6.47 11.3 9.89 11.1 13.1 8.82 11.8 9.09 9.71 4.89 11.2 12.2 4.87 7.82 14.5 13.8 14.4 9.06 8.09 11.5 6.95 2.83 10.3 9.87 1.04 9.64 4.77 9 3.28 11.7 11.4 10.9 0 6.27 11.9 12.5 11.1 6.37 11.4 3.76 4.48 5.71 7.92 9.43 7.79 9.72 12.3 10.1 5.31 11.4 11.3 12.7 12.6 15.3 10.5 14.7 7.95 10.1 10.1 8.75 8.7 10.9 10.7 7.21 5.08 9.23 4.48 3.66 1.64 9.49 0.61 9.72 0.61 8.69 12.2 9.04 13.9 11.7 13.2 11.9 12.8 11.6 11.3 10.5 13.8 0.61 12.1 13 0 1.37 1.37 12.9 8.23 6.28 3.87 4.83 2.09 3.16 3.49 8.7 3.2 0 7.79 2.65 4.87 5.01 3.9 3.88 3.35 2.87 0.61 0 7.63 1.75 2.1 9.41 3.56 8.78 17.8 9.93 15.6 11.9 13.7 13.1 9.13 11 0.84 15.3 2.31 8.54 1.37 7.48 12.6 10.7 11.4 5.08 11.9 4.83 1.51 8.83 10.5 11.8 10.2 10.7 10.2 12.8 6.29 5.21 5.44 13.9 10.6 7.73 6.3 9.95 10.6 11.9 13 9.37 4.97 6.87 11.8 14.9 10.5 5.4 2.97 14.2 13.8 12.5 3.78 6.52 14.3 8.58 14.4 14.3 1.04 12.1 11 8.79 11.8 3.74 3.95 14.1 11.6 9.3 17.7 2.23 1.51 5.24 0.84 0 2.38 7.98 6.82 12.4 11.4 10.8 1.75 6.3 17.6 0.34 0.73 9.57 12.1 2.23 6.46 0.61 7.96 4.2 3.32 9.12 1.21 0.34 4.07 2.59 6.82 8 6.94 0 4.24 3.62 7.03 1.51 2.17 1.51 6.29 5.77 9.32 10.7 0 8.5 6.51 5.22 8.42 9.06 8.41 7.92 10.3 10 8.15 7.97 6.37 6.7 6.34 1.64 5.55 8.67 0.34 1.86 8.12 5.37 0.34 2.71 6.08 7.65 2.23 3.9 4.41 4.5 6.64 9.47 4.53 0.61 9 9.05 1.86 3.49 11.2 8.47 3.29 1.21 0 2.65 8.51 4.28 4.73 1.96 1.04 11.9 4.87 7.69 0 0 2.45 5.04 0.34 7.99 0.34 0.61 7.23 1.51 10.1 3.28 10.4 7.35 4.51 2.55 0.84 6.94 4.95 4.91 4.48 0.34 1.51 0 1.86 5.9 5.73 6.82 2.97 7.43 16.2 3.65 1.24 1.21 9.49 0 14.3 13.4 9.85 10.7 4.07 10 0.61 3.65 2.14 13 10.3 2.06 7.48 9.39 3.15 7.07 1.04 1.04 7.65 14 8.69 0.34 11.8 4.02 4.24 2.45 1.37 7.27 0.61 9.08 6.33 9.48 0.34 6.76 8.41 0 10 8.85 3.02 5.85 4.64 0.61 2.65 0 10.2 5.5 15.4 5.39 0 4.8 5.18 2.87 0.34 1.04 1.75 1.64 2.06 2.92 10.7 11.9 2.97 9.45 0.84 5.01 8.65 8.49 1.21 3.15 11.2 2.59 10.4 5.52 0 0 2.65 1.21 1.64 0.34 3.82 5.05 0.61 5.82 2.45 5.62 0.34 1.51 2.31 9.15 1.86 9.43 1.51 3.38 10.9 11.8 1.64 0.84 8.24 4.26 10.5 8.21 6.97 8.14 16.8 5.48 5.65 7.95 5.01 8.13 7.36 3.23 8.56 12.6 8.82 0.61 10.6 6.4 6.01 0.84 12.8 10.7 1.64 7.83 14.6 1.96 7.09 8.81 6.21 0 4.53 6.05 0.34 8.84 11.5 4.29 10.3 6.27 0.34 2.87 1.64 0 5.61 6.17 12 8.55 12.9 3.02 7.83 2.38 6.16 5.35 11.6 6.56 0.87 8.21 0.43 9.66 9.02 8.08 0.84 1.04 2.52 5.57 4.16 5.93 3.77 0 3.9 9.31 10.9 9.42 0 3.71 11 9.94 10.8 3.49 2.92 6.81 7.35 7.13 10.7 0.34 1.04 8.48 9.07 10.4 5.56 5.4 8.04 2.14 1.51 10.4 3.56 1.04 1.86 7.65 10.5 0.84 8.43 1.75 0.34 4.81 2.82 11.7 3.09 7.53 12 12.8 9.27 6.08 9.94 8.65 4.02 2.31 7.17 8.76 8.43 9.87 11.4 12.1 1.64 11.2 9.11 8.85 6.45 11 7.61 3.07 8.38 7.21 1.64 7.91 9.61 11.4 9.96 9.27 2.59 8.15 9.13 8.57 8.28 10.1 14.3 7.57 1.04 12.1 0 11.9 7.74 10.2 11.9 11.3 10.7 10.2 10.4 14.3 9.64 9.91 2.38 7.45 9.36 9.41 10.4 7.81 8.09 3.15 11.3 8.28 1.21 6.87 7.16 11.2 9.71 13 5.69 1.64 6.82 8.89 7.36 11.8 7.56 13.4 8.98 10.3 8.49 5.95 12.5 11.8 5.18 8.24 1.04 15.4 16.9 13.9 15 16.1 5.36 12.2 9.97 11.3 6.88 7.75 7.87 12.3 7.14 13.2 7.69 11.8 7.06 6.76 12.1 8.16 11.6 11.3 11.7 11.8 8.48 2.97 12.3 8.39 11.7 0 2.65 6.46 3.07 1.75 1.75 7.28 10.7 6.5 10.1 3.43 7.65 10.2 7 0.34 5.57 0 0 6.12 0.34 3.93 4.66 7.04 8.24 9.23 8.49 0 0.61 6.65 6.13 8.72 1.04 5.56 0.34 4.39 12.4 6.37 1.64 5.18 2.87 2.31 6.53 0.84 7.88 0.84 2.45 8.65 13.5 3.8 6.31 6.62 11.6 1.96 7.36 7.44 3.15 5.22 0.84 5.84 8.41 7.7 5.23 3.77 0.62 1.37 0 7.66 8.38 5.82 4.89 7.88 7.52 0.61 5.93 0.34 2.45 1.37 0 2.23 1.64 7.41 0.34 7.63 8.34 9.25 6.48 9.02 0 7.46 12.1 2.35 0.34 6.47 4.93 9.93 9.95 3.43 7.28 0.61 1.64 6.22 5.05 3.62 0.34 7.32 11.4 4.92 2.45 3.24 0.61 8.42 6.71 6.36 6.83 4.55 12.9 2.23 3.28 3.85 3.59 6.29 0 1.96 0.34 6.59 5.67 0 8.05 10.5 7.97 4.74 4.34 9.25 0.34 11.7 7.79 5.75 0 10.8 13.5 2.97 10.5 0 0.61 0 10.9 1.37 0 6.15 0 10.6 11.4 4.84 1.64 0.84 0.84 2.23 15.3 9.78 7.14 7.92 9.77 10.7 11.9 10.8 10.2 6.89 10.6 4.39 10.9 11.2 9.1 0.84 0 15.1 8.8 0 8.58 7.24 0 12.9 6.76 3.56 11.2 1.04 6.62 3.21 4.32 5.54 2.13 10.8 1.64 1.21 3.74 9.26 4.16 5.73 14.4 4.14 9.86 1.04 4.92 6.41 0.61 4.18 8.36 9.58 0.61 9.67 1.51 4.7 3.2 6.71 4.99 4.46 4.43 6.09 2.65 5.99 1.75 3.11 9.72 2.11 1.75 10.3 4.92 1.51 14.6 2.14 8.14 2.06 2.87 7.24 4.02 3.56 2.59 1.96 7.42 6.11 4.39 3.32 6.33 9.91 2.65 6.47 3.9 9.86 3.77 0 12.7 1.75 7.26 8.31 5.81 7.86 6.39 5.77 6.63 1.37 3.28 4.24 7.82 9.44 11.7 9.47 2.31 8.84 1.75 7.28 7.21 2.06 7.55 5.8 9.26 9.68 0.34 8.18 0.34 4.07 8.69 4.69 7.87 8.84 2.97 5.55 9 12.3 8.11 5.08 6.41 0.34 4.85 5.14 6.59 3.85 9.43 0.61 4.37 6.66 0.61 4.43 8.11 8.26 9.8 0.34 12.4 6.37 7.04 9.85 0.61 0.61 9.38 6.4 8.02 3.2 2.52 6.83 3.35 9.32 0 3.07 0.61 0.67 6.77 1.86 8.52 3.88 12.8 11.6 5.08 2.31 0.61 2.65 6.95 1.86 4.14 1.96 6.46 0 4.41 9.37 9.23 4.32 8.24 9.51 10.1 8.8 10.2 0.34 10.5 0.84 12.5 2.76 8.1 8.85 11.5 13.4 5.08 1.64 11 13.2 12 1.75 5.21 4.53 9.29 7.7 12.9 0.34 14.7 8.33 11.7 9.95 6.39 13.2 9.58 7.5 0 13.9 10.3 9.59 12.4 5.17 0 10.5 11 5.89 10.2 2.38 7.82 12.6 12.4 14.1 10 8.33 10.2 0 8.95 4.14 9.23 0 8.75 8.19 10.8 6.92 10.3 7.41 12.6 5.79 11.2 4.05 13.6 9.93 0 2.91 9.22 6.74 9.22 7.83 10.9 2.31 2.06 2.23 12 1.21 6.71 7.38 6.29 12.7 0.84 8.41 2.23 10.8 0 7.29 4.3 10.6 11.6 12.9 6.71 3.98 7.02 9.33 0 1.21 4.64 9.79 5.26 5.5 7.19 7.81 1.04 6.84 8.57 0.84 7.12 6.03 0.34 6.89 2.65 0.61 0.84 6.85 0.34 7.81 4.09 1.04 8.5 3.49 10.6 7.39 0 2.31 11.7 3.55 3.02 0.34 8.19 8.65 9.07 0 4.89 0 3.64 0.34 1.37 1.37 2.76 1.21 11.4 0.84 6.38 4.09 4.2 1.75 5.63 0 5.75 5.71 5.7 7.72 4.85 4.57 7.63 0 9.01 0.34 0.34 6.89 4.76 9.13 3.53 0.61 4.89 6.63 10.7 5.28 3.71 9.22 0.34 0 0.87 0.84 5.37 3.28 1.51 2.92 9.25 5.89 0 4.3 6.68 8.43 7.89 1.21 7 3.15 8.92 0 1.04 7.74 4.53 5.43 8.51 5.72 10.2 0 7.56 9.14 14.4 0.34 11.1 3.62 10.7 7.73 8.29 12.3 2.52 1.86 3.16 4.07 11.4 0.34 1.86 7.87 9.88 9.54 12.8 10 10.9 2.65 9.85 6.54 11.8 6.93 7.15 12 12.2 3.48 4.16 0.34 4.16 10.2 7.33 3.68 7.12 3.77 4.3 5.61 5.21 9.77 3.77 14.4 3.15 13.1 2.65 11.1 11.9 11.8 0.34 6.61 5.46 5.83 5.93 10.6 12.2 7.61 7.37 9.41 10 10.4 10.4 9.49 10.1 5.96 8.23 3.98 9.35 9.34 0 2.38 10.8 9.53 9.7 1.37 2.59 8.49 11.6 11.2 11 9.56 11.6 9.26 12.5 12.8 5.57 8.59 11 12.2 3.32 7.58 3.93 10.4 10 5.94 3.95 11.9 1.64 3.43 6.69 5.75 1.37 9.09 8.18 0.84 12.1 4.36 0.65 9.81 7.96 0.84 9.77 5.91 9.81 12.1 11.9 10.3 0 10.1 11 9.58 4.67 11.1 9.19 0 0 13.1 9.55 10.6 9.89 10.4 10.1 11 12.4 1.21 4.8 10.9 0.61 12 12.9 10.9 12.2 9.11 11.4 9.62 9.91 8.9 9.84 6.33 8.33 9.77 8.29 2.38 6.47 7.82 5.47 8.95 8.9 8.83 8.19 11.2 10.2 1.51 0.34 10.1 10.9 9.16 9.57 2.06 9.68 1.21 8.49 1.37 6.88 12.4 10.9 4 5.47 11.7 8.86 10.4 8.03 14.9 11.8 10.7 5.87 11.5 11.3 6.71 8.78 12.3 8.05 2.71 9.4 5.72 7.89 9.54 10.6 3.2 10 5 7.58 11.9 9.57 10.4 10.8 2.31 2.59 4.43 11.5 10.8 8.17 7.15 9.81 9.41 7.46 0.34 0 5.47 14.6 7.36 10.2 4.77 12.3 1.37 1.75 7.56 11.2 14.5 3.95 8.11 5.06 8.79 0.61 9.95 10.1 1.51 10.9 7.17 12.4 9.88 9.86 4.48 0.84 10.3 1.04 4.02 12.8 9.1 10.1 7.38 8.15 6.77 0 0 10.3 7.92 0.34 6.08 7.11 5.32 10.2 1.96 1.64 1.86 1.04 5.96 3.28 7.86 1.04 4.32 4.16 7.81 6.42 4.88 8.73 10.7 4.79 6.33 4.29 4.82 7.2 4.3 11.7 5.94 0 6.59 1.51 8.35 7.46 10.1 7.03 0.84 1.37 8.89 10.1 6.01 2.52 3.65 0.61 0 2.82 5.08 7.82 0.34 0 7.62 7.83 6.78 8.05 12.5 3.46 6.32 5.2 5.73 6.02 2.98 5.07 8.55 6.41 1.64 6.61 6.55 5.32 2.31 4.24 6.38 0.61 4.64 5.41 2.59 1.04 0.34 0.34 1.37 0.34 3.24 2.45 7.28 1.04 5.37 5.85 5.96 1.21 5.16 3.28 3.53 9.17 2.97 0.34 2.31 0.84 0.84 0.61 7.21 1.04 0 6.75 5.31 2.71 3.56 12.7 0.84 9.02 8.6 0.61 8.14 12.9 13.9 9 2.14 9.27 6.34 2.06 10.7 12.7 7.86 9.94 13.4 2.38 4.55 12.4 10.4 12.4 8.5 11 13.8 10.1 5.11 7.99 6.43 13.1 8.45 10.5 8.62 7.48 12.6 9.6 10.2 9.75 1.64 3.32 0.34 8.78 12 7.61 11.7 12.2 9.69 9.8 9.48 4.32 5.35 6.64 0 1.04 1.86 10.7 9.59 3.35 10.4 9.74 15.5 5.61 14.6 9.97 7.19 9.92 2.71 7.35 13.1 11 3.56 12.1 10 9.67 8.96 10.6 10.2 9.42 10.3 5.87 10.5 7.63 9.79 8.47 8.3 0 9.96 9.16 14.2 10.5 10.9 9.8 12.2 4.37 12.2 7.2 1.04 11.3 12 10.8 12.8 0 6.57 9.18 10.3 2.27 0.61 9.46 7.62 6.28 8.75 13.8 5.07 10.9 10.7 9.01 12 10.1 12.5 10.5 9.86 9.95 10.9 10.8 11.7 10.4 9.92 10.7 9.82 11.3 10.9 10.3 10.3 10.7 11.3 11.5 10.8 10.1 11.6 11.4 9.85 12.4 10.8 12.9 9.37 11.1 10.3 10.7 12.2 9.48 9.9 10.3 11.1 11.7 13.3 10.9 10.9 0.34 5.78 7.55 7 7.97 0 0.61 2.71 0 10.5 7.79 6.86 8.46 7.84 9.47 11.5 14.1 10.3 3.77 9.28 6.14 4.67 10.8 9.42 6.68 1.51 12.3 1.86 11.3 10.2 10.9 9.98 10.3 10.4 10.9 11.2 9.94 8.97 8.43 7.59 9.19 10.5 12.2 0 8.71 9.71 10.1 5.61 0.61 11.3 12.8 3.32 11.8 12.3 8.32 10.1 4.98 5 9.82 7.47 2.06 6.8 7.82 11.6 12.8 8.72 9.15 10 11.5 14.2 2.65 10.2 13 4.72 7.91 10.6 9.32 8.65 8.78 10.9 10.4 9.52 7.61 3.39 9.93 3.59 9.38 8.01 10.2 2.23 13.1 5.31 2.23 13.6 7.81 10.6 5.14 0.34 2.31 6.72 11 10.6 5.99 11.9 7.66 3.49 10.4 5.05 5.13 6.6 13.5 9.74 11.6 9.94 8.67 0.61 1.37 0 3.49 0.61 0.34 2.76 4 1.96 5.73 8.4 13 10.6 11.8 10.2 11 6.87 11.3 8.33 6.02 9.13 8.16 9.75 4.34 1.21 10.8 5.09 5.47 5.86 9.51 6.91 10.2 9.21 0.34 6.59 11 7.97 6.04 3.8 6.05 0.34 13.1 10.6 9.44 11.8 9.84 0 11.9 8.91 0 1.64 2.31 4.56 3.11 1.04 1.04 10.5 10.6 14 8.62 3.8 8.49 8.14 7.7 1.21 3.02 6.33 7.69 11.8 8.43 8.85 12.2 7.68 16.6 11.8 4.76 11.3 3.71 4.02 8.48 0.34 12 4.72 3.32 1.51 10.4 4.07 6.17 3.32 6.88 4.51 6.8 11 16.2 8.37 7.46 11.9 0.34 0 4.7 15.6 8.21 13.4 12.4 11 10.1 8.55 10.4 10.4 8.26 7.54 2.45 10.8 8.72 1.64 4.76 13.9 13.7 0.34 9.63 14.2 1.21 2.92 10.1 6.39 11.3 2.11 9.28 8.82 4.58 6.67 9.51 0.34 6.7 2.23 8.2 1.37 6.29 11.7 9.89 8.13 0 5.06 0.41 4.44 8.76 11.9 11.2 6.15 10.6 11.2 8.04 1.37 2.37 2.38 11.7 3.68 4.46 9.35 6.61 4.61 0.34 4.64 9.23 10.3 5.23 10.5 12.3 9.02 12.8 12 13.6 6.33 2.06 13.5 7.04 5.36 1.21 10.8 12.1 10.7 9.38 12.7 12.9 9.44 8.59 9.38 7.47 9.4 8.96 10.4 8.73 9.53 5.13 8.46 9.91 10.1 8.94 12 10.7 7.26 9.3 8.93 8.5 11.3 7.2 8.84 11.6 8.52 10.6 8.35 10.2 9.11 9.42 10.7 11 8.38 10.4 0.61 9.6 5.69 11.4 5.08 8.48 13.4 11 11.3 4.16 6.53 11.3 7.78 8.4 10.3 10.3 9.43 10.6 9.56 11.1 9.23 11.2 8.85 9.62 9.88 11.6 11.8 10.3 10.6 0 11.9 13.3 0.89 0.84 10.8 4.76 10 10.4 9.43 11.5 8.59 9.4 12.3 7.75 8.85 10.3 10.8 6.78 8.33 9.9 8.73 9.34 8.08 12.3 9.21 13.1 10.9 10.8 9.37 10.1 11.9 10.3 10.8 10.5 9.36 10.9 8.94 9.43 10.5 10.8 10.5 11.5 0 10.8 9.1 7.25 8.83 9.73 10.8 7.9 8.55 9.8 9.1 10.3 12.2 9.35 11.7 8.08 5.45 6.92 11.5 2.52 10.1 9.86 7.03 8.92 11 5.62 8.82 8.06 10.7 8.13 7.58 2.82 12.3 4.77 8.84 6.8 8.23 5.55 8.3 11 13.1 8.45 9.37 9.42 6.31 10.8 8.67 10.8 7.97 8.64 8.63 8.7 6.05 5.59 8.87 9.04 9.84 9.03 10.1 9.56 0.61 0.34 0 10.8 0.84 9.65 7.09 8.74 8.76 9.81 9.27 9.83 8.81 0.61 10.9 10.1 1.75 7.84 9.67 8.32 12 10.8 9.3 9.58 7.1 8.39 7.67 2.87 11.3 10.9 7.7 9.61 11.2 6.54 9.05 10.1 10.2 4.23 4.89 13.3 9.35 10.7 11 10.8 7.84 5.52 5.78 9.39 12.2 9.28 12.5 7.9 10.3 10.2 4.41 2.52 10.7 10 9.36 7.56 10.7 9.31 8.71 10.4 8.25 5.54 11.1 8.53 10.2 6 10.6 10.3 4.2 8.47 9.34 3.07 5.09 3.07 3.59 7.99 8.61 1.21 9.36 2.06 8.47 10.1 7.63 9.47 9.12 10.9 10.8 5.86 12.3 3.88 11 3.93 6.22 4.5 10.2 10.9 7.25 4.53 9.64 9.38 9.82 10.1 10.4 1.04 8.16 0 4.2 10.1 10.8 9.39 10.2 3.62 10.6 9.83 9.64 10.5 1.64 11.2 10.6 8.34 10.3 8.94 8.73 7.27 7.2 10.4 10.1 0.61 6.86 12.4 9.59 9.58 5.26 12 7.25 8.23 11 9.47 12.5 10.6 9.62 9.82 8.81 5.27 6.36 6.76 8.68 8.78 8.82 6.02 10.5 11.1 5.07 9.97 11.9 10.3 8.69 12.1 6.41 0.61 10.1 8.66 10.1 11.4 1.64 8.34 4 8.74 8.64 5.38 10.6 7.87 7.96 7.54 10.4 6.76 10.3 10.5 3.2 9.12 9.16 11.5 12.6 8.24 10.5 10.5 12 7.26 8.55 9.65 11.4 10.1 10.6 9.44 10.5 6.39 5.29 7.93 8.58 7.55 10.7 11 10.3 9.01 9.01 9.39 9.59 10.9 5.18 8.82 7.96 6.44 9.68 9.82 9.67 7.96 6.99 10.8 9.85 7.88 8.6 8.37 8.31 8.74 11.7 2.65 1.75 10.4 7.01 6.57 2.52 8.57 8.27 10.4 10.2 11.2 4.22 9.06 10.6 9.82 9.37 2.14 11.7 9.78 10.3 8.42 10.7 9.68 10.7 9.66 11.7 12.7 11 11.4 6.64 10.7 9.54 11.5 8.37 9.83 9.92 9.39 12 8.63 0.34 7.9 11.4 10.2 8.94 7.27 11.9 8.28 10.3 7.96 8.3 12.4 11.2 10.5 10.6 8.86 11.6 10.1 10.8 10.4 9.72 6.79 10.1 9.79 9.89 9.29 10.7 9.07 7.77 10.7 11.6 7.12 10.6 7.81 10.7 8.37 12.9 10.8 6.64 3.15 7.73 7.82 8.56 4.62 6.26 9.32 8.43 9.74 8.94 8.99 10.8 12.2 10.4 5.16 9.17 5.96 11.6 6.75 7.8 10.4 7.92 10.9 7.26 12.4 10.7 2.06 8.33 11.4 12.7 7.84 10.6 12.6 12 7.44 1.04 12.1 8.09 9.28 3.28 10.2 9.96 8.35 4.78 11.5 8.42 10.2 10.6 13.8 8.39 1.04 8.6 9.04 0 6.18 11.6 8.4 9.94 2.97 10.3 12.6 4.74 8.29 6.25 8.94 5.27 9.5 11.5 11.5 10.2 9.18 10.4 8.06 8.23 8.49 10.3 8.49 0.34 0.84 9.93 4.53 11.1 9.1 9.72 7.72 11.8 10.8 9.39 7.57 7.52 11.2 5.81 12.5 0 8.34 6.77 13.6 6.22 8.8 11.7 12.2 4.72 1.21 12.4 7.57 8.59 11.3 12.7 12.7 10.2 5.71 1.51 11.2 12.3 12.3 2.65 13.8 0.61 9.25 9.15 5.71 10.7 10.6 10.9 1.86 9.2 12.8 19.9 0.84 10.3 11.9 9.7 9.57 8.61 6.03 7.44 9.46 10.9 7.91 8.93 12.3 10.2 9.9 9.06 11.1 7.71 9.48 9.83 6.49 5.03 11.9 11.6 11.1 10.1 11.2 9.51 1.37 8.94 8.63 10.3 0 10.3 8.82 12.8 9.78 8.15 9.48 2.65 3.02 6.72 6.2 8.46 7.39 7.67 6.34 11.7 6.84 8.53 3.32 7.82 1.75 9 5.3 7.14 3.69 10.8 4.83 4.83 3.77 9.47 9.48 5 10.5 8.05 9.62 9.34 11.2 8.09 12.1 1.99 4.53 9.37 6.31 12 14.6 9.75 6.76 1.96 11.2 3.02 12.6 11.6 0 8.76 10.1 9.96 12.9 9.67 7.4 8.51 11.5 0.61 9.67 6.33 10.8 4.07 12 3.41 2.92 0.47 0 11.6 9.78 10 10.7 6.88 8.2 7.98 6.95 6.41 3.8 0.34 0.61 8.12 9.03 4.8 4.89 2.52 2.38 10.3 0 10.4 6.94 12.8 4.83 11.4 5.14 8.59 8.77 9.1 9.31 8.72 9.3 7.89 5.9 8.78 6.21 9.92 7.43 10.3 9.82 9.09 0 0.84 5.34 8.61 8.54 2.06 7.27 3.11 0 8.04 11.4 0.84 9.35 2.42 10.5 9.03 11 7.15 9.97 6.45 9.24 2.86 7.98 2.51 9.49 7.73 6.31 8.19 9.11 10.3 10.3 11.6 5.22 0.34 6.45 2.65 7.79 8.52 8.83 11.7 10 6.44 3.4 10.5 8.52 11.4 10.7 10.6 2.14 4.16 9.23 7.3 5.99 12.3 8.8 7.5 10.6 10.3 2.38 1.21 9.69 8.65 10.1 10.1 10.1 12.8 11.1 2.38 11.5 11.3 2.71 2.87 10.7 10.1 9.18 10.4 0.91 9.78 6.91 5.93 9.4 6.82 4.67 9.52 7.85 12.4 6.98 7.89 8.38 2.23 2.06 10.8 10.1 12 9.6 5.39 9.68 8.22 0 8.95 8.15 10.9 13.9 7.41 10.3 12.2 8.76 9.87 9.21 3.49 10.7 8.26 9.22 5.42 8.45 8.2 9.18 9.03 9.12 5.29 12 9.51 4.43 10.8 4.95 9.18 9.71 9.85 3.35 5.41 4.91 5.34 9.07 7.97 8.83 8.87 3.35 9.15 9.22 6.89 9.98 0 5.5 7.99 9.12 8.89 9.15 9.81 8.62 11 8.77 11.9 7.92 10.5 9.9 1.64 8.71 8.15 10.4 7.29 6.69 1.86 10.9 8.81 0.34 7.41 11.3 6.28 8.57 5.48 0.34 9.75 2.93 9.82 11.1 9.24 4.16 1.37 7.59 10.5 8.28 10.9 12.1 2.65 7.36 6.03 6.53 11.7 11.6 2.06 9.56 9.96 10.9 8.18 9.02 1.64 11.9 9.62 10.1 9.37 8.45 9.33 8.88 9.85 1.75 10.3 6.33 7.44 9.92 8.79 0 4.5 9.89 0 12.8 4.32 1.75 9.3 9.78 8.94 0.84 10.3 0.61 8.5 2.52 4.18 1.37 3.2 10.4 8.51 12.6 6.22 7.01 10.4 9.95 4.41 10.3 8.79 12.5 9.14 7.79 8.52 10.9 14.4 8.06 8.63 8.84 3.88 8.08 0 8.48 9.76 9.92 8.8 8.33 7.94 7.41 6.22 8.79 7.17 10.2 8.39 8.36 10.3 7.85 9.11 10.7 9.15 8 7.37 4.73 10.2 6.59 7.92 6.47 0.34 8.79 7.46 3.71 0 10.3 8.32 4.66 10.4 2.45 8.91 9.51 8.77 6.62 0.34 3.88 9.66 8.76 7.63 3.02 9.37 0 6.98 9.17 0 10.7 8.59 9.78 10.1 6.61 9.67 8.87 9.94 0.34 11.7 10.2 2.65 10.3 9.4 10.7 9.54 8.74 8.99 10.1 7.65 7.12 9.46 8.56 10.8 8.34 13 8.26 8.59 10.8 11 8.42 7.96 10.2 9.6 9.69 6 12.3 7.93 8.87 2.71 8.08 9.48 7.7 8.96 0.84 10.1 7.27 9.18 5.53 9.05 10.1 9.29 12 9.12 8.79 11.2 7.52 9.94 7.99 11.1 9.81 11.8 10.3 9.7 8.5 9.99 7.33 1.86 8.44 9.95 9.53 5.96 8.25 10.5 10.9 12.3 8.69 8.99 5.33 10.1 9.62 10.7 9.72 10.5 8.25 7.06 9.88 7.52 8.51 8.48 9.01 6.54 11.4 8.41 9.18 6.4 9.12 8.69 8.25 1.37 10.4 8.52 7.54 8.29 6.8 10.1 8.15 9.22 9.9 11 4.97 8.55 8.1 8.24 10.4 7.57 8.32 5.96 9.45 11.8 10 12.1 6.38 8.17 10.3 9.11 10.6 5.89 10.3 3.68 12 11.6 11.1 6.17 10 8.96 10.7 9.59 8.78 7.21 8.02 10.1 11.4 6.51 10.6 7.95 7.92 4.3 9.91 8.32 4.16 9.8 0.34 7.75 12 9.89 8.86 0.61 3.65 9.11 8.68 8.54 10.9 8.94 7.07 9.43 9.34 4.72 10.9 7.11 7.47 9.44 1.37 9.5 8.62 9.27 8.17 9.97 9.22 7.82 6.84 6.71 5.18 9.93 7.49 3.2 6.67 7.45 0 8.24 1.86 11.5 10.8 6.99 7.09 9.67 4.94 9.35 9.59 10.9 9.64 5.75 10.1 3.56 8.9 6.6 7.51 12 4.64 9.28 5.51 6.85 7.79 10.1 4.2 10.4 8.72 9.3 9.58 9.54 7.41 4.97 11.2 9.81 8.71 8.24 10.2 7.25 6.96 9.9 8.02 9.84 8 9.58 6.66 8.12 9.77 8.15 9.4 0 8.73 9.93 8.66 7.62 6.03 1.21 9.25 11.2 10.4 8.76 7.63 10.3 7.71 9.85 9.83 9.56 9.25 11.3 4.55 9.12 8.63 10.3 9.03 9.1 9.75 8.6 11 11.8 11.4 12.3 8.29 5.59 6.23 8.86 10.2 8.56 8.25 8.58 10.3 10.2 4.61 6.62 10.7 9.28 8.21 12.2 7 9 10.5 8.52 3.74 5.98 11.1 8.56 11.5 1.37 10.2 8.18 9.71 5.98 9.57 9.79 9.92 9.32 7.59 3.49 9.13 7.19 8.91 5.24 8.87 7.95 8.84 11 6.85 10.8 2.14 9.11 7.13 9.3 5.22 7.98 9.02 7.69 8 9.9 1.21 2.23 9.89 6.61 10.7 4.89 10.4 9 0 7.94 5.38 10.6 3.11 8.62 10.2 9.7 9.39 9.89 11.5 12.2 5.39 11.8 9.94 10.5 7.42 6.53 10 11.1 10.1 9.63 8.37 8.86 8.86 8.54 12 8.65 10.6 0.84 8.09 8.27 8.74 11.1 2.14 11.6 9.11 10.2 8.6 10.5 3.82 9.76 9.64 9.57 11 9.18 7.86 9.55 8.59 10.6 0.34 1.04 8.69 7.35 9.78 4.2 8.96 12.1 0.34 9.13 8.4 10.1 10.6 7.06 8.69 7.39 5.18 7.67 8.92 9.13 0 9.51 10 0.84 8.54 8.13 10.3 11.5 10.1 9.74 10.2 10.4 7.52 8.08 0 10.2 8.11 8.82 9.57 7.72 5.15 9.24 2.82 10.3 9.08 9.66 10.1 8.79 4.98 8.22 8.85 7.89 8.56 10.1 11.5 5.41 6.27 11.2 10.5 10.8 8.12 10.1 9.16 12.8 9.54 5.92 7.12 9.95 11 9.22 3.39 10 10 6.89 5.47 8.13 0.61 10.2 10.4 10.9 10.1 14.3 11.2 8.58 10.2 2.65 8.66 12.5 10.6 4.3 6.38 1.51 7.31 8.34 8.19 4.05 8.78 0 8.12 4.83 8.2 9.28 9.88 0 9.06 11.6 8.3 10.2 4.53 11.3 8.44 2.59 9.35 4.5 9.92 10.4 6.75 8.22 1.04 5.22 10.6 8.43 3.11 8.63 4.02 5.9 0.34 3.98 0.34 8.91 7.37 3.9 12.3 9.79 6.58 5.12 8.88 8.92 7.31 4.09 9.17 6.98 0 1.04 7.25 4.98 10.2 8.04 7.55 6.28 6.09 1.51 8.64 7.51 10.2 10.9 12.1 1.37 9.1 8.91 7.2 5.36 10.3 11 7.14 10.6 9.04 10.5 9.48 6.67 0 9.84 8.55 9.65 7.75 10.3 3.59 9.53 6.56 8.61 10.4 7.99 2.97 9.25 7.84 9.16 7.18 7.09 10.8 11.3 10.2 8.94 9.78 10.6 9.11 9.89 10.3 8.22 10.3 0.34 6.69 8.85 7.75 7.59 8.31 7.05 9.44 10.4 9.88 9.55 10.5 8.55 8.45 9.13 10.3 8.7 10.5 9.14 8.14 11.1 2.14 8.58 8.2 9.98 6.21 12 10.8 10 9.48 7.35 8.75 10.2 11.4 9.95 6.69 9.11 9.46 9.29 10.2 8.81 7.74 10.4 8.81 7.04 9.79 9.95 9.04 6.92 8.83 8.85 2.59 9.59 8.09 8.32 3.85 9.15 9.71 10.9 1.86 12 9.45 9.47 11.7 8.92 9.44 9.73 10.6 8.29 9.91 8 10.2 4.46 5.75 0 10.3 9.06 10.2 9.65 9.8 10.3 6.1 6.35 7.18 9.13 8.85 7.33 8.9 12.1 8.97 6.96 8.2 7.95 9.48 10.6 10.4 10.5 11.1 9.78 8.99 9.46 8.76 9.33 9.68 12.5 10.1 9.4 9.6 9.25 11 10.6 11.7 11.5 8.21 8.49 8.69 9.12 8.09 9.34 11.1 4.05 9.1 8.51 6.79 10.3 9.17 5.63 6.15 9.88 4.63 9.49 8 8.11 6.08 8.1 6.18 9.19 8.87 9.26 9.13 4.6 9.35 2.76 7.01 11 6.04 5.31 7.53 8.35 8.31 9.29 9.21 8.97 8.35 0.84 7.7 8.73 0 8.65 6.46 4.92 1.37 1.86 5.07 7.95 8.1 5.95 7.37 9.69 8.95 4.69 9.89 11.4 0 9.7 7.67 10.9 11.1 10.7 7.77 10.6 10.7 11.2 9.38 7.24 9.63 8.7 8.5 6.42 9.33 5.51 8.53 11.4 7.62 9.53 7.71 10.8 8.35 9.98 10.7 4.48 10.9 8.47 10.3 7.58 10.2 0 9.9 9.84 7.49 11.8 9.2 11.8 8.4 4.81 9.51 9.74 7.29 7.94 3.46 11 1.04 6.27 5 13.2 11.3 8.09 9.6 5.34 10.7 8.86 9.18 7.06 13 9.42 10.6 7.38 10.1 8.62 11.5 7.02 10.8 9.02 8.54 7.78 2.65 10.2 8.33 7.55 9.33 0.34 9.37 12.8 11.8 9.42 9 7.66 9.86 9.79 1.51 0.84 10.2 10.8 11.4 11 10.8 11.2 6.13 10.1 10.5 8.58 7.58 7.61 1.21 6.31 0 12 8.6 9.59 2.45 3.82 8.96 10.1 11.3 9.91 10.8 10.3 3.56 7.25 8.49 3.24 9.66 0.84 0.34 3.65 7.77 6.53 1.96 2.38 5.46 2.97 2.87 7.18 0.84 2.45 2.96 11.9 3.8 6.11 2.99 5.04 4 9.29 1.04 4.09 6.38 6.45 4.69 3.56 4.46 3.88 4.5 3.28 5.62 3.9 4.36 5.74 3.49 1.75 6.48 8.89 0.61 7.65 1.86 0.84 11 9.81 6.92 9.1 0.84 9.73 7.13 0 13.4 4.84 6.95 10.3 0.34 5.28 10.1 2.14 10.2 10.2 1.04 10.2 9.91 4.11 8.64 11 6.3 8.8 12.6 10.8 5.97 10 0 0.61 9.99 9.2 9.81 9.55 10.1 8.99 8.18 5.88 10.6 4.97 0 8.84 8.79 4.45 8.76 0.34 10.5 0.84 7.57 9.77 6.21 0 14.8 2.59 9.39 9.19 10.7 5.19 8.16 10.5 8.71 10.6 2.97 0 9.08 9.49 7.88 8.63 8.28 3.24 0 10.6 2.06 8.44 0.34 10.1 3.02 11.5 9.68 15.6 3.8 0 11 9.63 11.6 10.1 11.4 6.98 9.1 11.3 9.76 11.3 10.3 10.9 7.43 0.84 11.7 11.4 11.8 9.89 11.4 10.1 12.6 11.8 7.62 11.5 10.2 12.2 8.44 9.95 9.71 5.61 11.6 9.79 8.91 9.33 9.28 8.4 5.27 5.26 11.2 11.5 6.91 7.57 8.53 9.36 9.2 4.05 8.46 12 7.87 10.1 2.23 5.45 11.6 10.8 9.73 9.44 11.3 9.2 10.2 7.43 6.59 11.2 9.05 10.1 8.99 10.1 6.2 10 7.47 10.4 9.26 10.1 11.7 9.72 10.6 6.7 5.72 10.9 9.65 10.9 6.62 4.22 1.51 7.34 4.34 10.2 7.3 10.7 5.48 2.06 9 7.56 1.96 8.26 9.6 7.4 7.85 9.51 10.2 10.2 5.12 10.6 11.9 8.85 9.42 11.8 8.11 8.39 14.1 9.45 8.11 7.32 12.1 8.61 11.5 1.21 10.8 10.3 10.1 11.7 10.1 10 1.21 7.77 7.55 9.37 11.2 6.77 7.99 11.4 10.2 2.71 10.6 9.01 0.61 11.4 11.5 11.9 6.92 7.63 8.44 9.61 11.5 4.53 10.8 3.82 9.75 3.53 7.57 8.99 10.8 11.9 3.82 8.18 8.28 10.6 3.85 6.76 10.1 9.86 9.74 0.34 0.34 8.93 7.13 9.94 5.32 10.3 8.14 8.12 2.92 8.46 9.19 11.1 10.9 11 5.97 13.2 8.6 11.5 11.1 13.1 8.23 3.65 8.17 9.66 10.2 10.6 6.85 8.67 9.42 0.84 7.92 3.46 9.37 4.39 8.34 2.52 3.39 3.68 10 10.5 9.66 11 10.5 9.93 10.6 9.73 7.38 6.8 8.51 8.77 7.92 9.03 9.65 8.07 10.2 11.1 10.4 3.28 9.31 4.73 7.94 9.23 12.3 7.93 7.63 12.1 6.23 11.4 7.29 9.34 6.45 8.8 2.92 9.07 0.61 13.2 10.8 10.1 10.2 7.27 8.68 10.5 2.87 4.07 12.6 7.21 10.4 1.86 2.06 8.09 10.3 1.04 0.34 3.8 9.07 10.5 4 8.56 7.09 7.1 2.52 8.13 1.21 4.99 7.22 1.37 6.67 10.8 9.25 6.57 4.79 7.01 7.93 1.21 1.37 1.21 9.76 9.31 0 5.97 10.4 5.2 8.93 11.6 10.8 10.8 2.38 9.94 0.34 6.11 2.65 1.86 8.76 12.4 10.8 6.76 3.32 6.8 5.24 0.34 9.53 8.33 8.04 9.23 8.21 5.45 8.92 11.1 6.57 5.53 8.89 9.84 3.32 2.59 10.2 9.57 1.86 8.36 9.96 7.37 8.14 3.11 7.05 8.85 8.71 8.17 1.21 0 9.91 10.6 5.71 4.73 9.66 9.5 5.55 2.14 8.91 0.34 10.2 1.04 1.51 10.5 8.26 9.46 10.6 6.69 8.08 12.2 9.86 8.67 10 7.62 12.3 7.4 9.84 6.9 8.42 0 1.21 0 5.72 1.37 11.2 6.45 10.9 10.2 10 3.88 5.66 4.26 6.48 8.12 6.29 0.34 8.19 8.75 7.38 7.14 8.07 5.35 7.31 7.09 6.71 10.8 0 5.46 6.64 7.88 7.73 10.8 7.88 10.4 1.64 8.99 0 8.05 9.5 6.02 13.2 8.92 3.59 10.1 2.71 1.64 5.54 6.1 2.06 7.6 8.99 0.61 10.4 10.4 7.99 10.5 8.9 9.62 9.17 9.54 5.83 8.54 3.28 0.61 8.02 9.41 1.04 8.91 9.64 2.06 9.69 9.97 9.1 10.5 9.83 6.82 9.05 1.04 5.04 10.1 10 8.42 8.11 3.02 7.6 0 13.4 8.12 0.34 10.4 7.74 4.26 8.26 3.11 10 8.51 9.2 11.1 9.21 5.77 5.86 6.44 9.43 6.69 10 9.08 10.8 10.3 9.33 8.95 9.85 9.62 3.65 6.59 11.9 6.62 14 9.75 7.4 9.93 3.53 5.64 4.09 2.82 7.86 0.34 7.51 7.21 5.66 9.14 8.02 9.65 6.07 11.3 4.76 0.61 9.83 9.75 9.62 8.96 10 5.25 9.9 4.14 9.6 8.3 3.51 7.75 4.26 10.5 5.32 6.8 5.33 7.53 10.8 8.62 1.37 9.23 9.28 8.81 1.86 2.65 6.27 8.88 11 7.13 3.95 12.5 8.37 9.77 6.3 8.46 10 9.27 10.1 9.11 7.77 9.29 6.28 11.8 11.1 12.4 8.78 11 10.2 1.04 2.23 5.91 10.4 9.04 3.77 3.59 0 12.8 4.78 4.53 9.69 9.24 1.64 1.75 8.82 8.2 9.09 5.79 7.15 13.3 9.54 9.19 10.4 10.8 9.02 0 5.68 0.84 4.18 3.24 1.64 4.09 9.13 1.51 10.7 8.23 8.3 9.99 7.69 10.9 7.87 2.14 12.4 11.9 10.1 8.65 5.45 8.71 11.7 12 9.36 10.7 9.64 10.4 8.69 10.7 2.97 10.8 11.7 10.1 11.5 2.59 11.5 2.23 7.98 10.6 11.8 9.77 9.8 4.26 10.8 8.5 9.87 11 7.1 10.2 6.01 5.81 7.75 6.27 4.87 8.98 4.2 8.6 6.79 3.88 11.5 10.8 9.91 8.86 1.75 8.66 9.68 8.76 10.2 10.2 11.6 8.99 10 1.21 9.5 0.84 4.87 11.8 6.64 11.1 12.2 10.5 9.09 4.66 4.79 5.88 10.2 10.5 11.6 8.42 11.9 7.14 10.9 8.6 0.61 8.73 10.6 7.88 12 12.1 7.74 8.49 7.89 9 11.4 11.7 12.9 5.93 7.34 5.38 5.73 7.04 6.42 11.4 3.53 9.75 11.4 9.68 11.6 9.03 12.5 9.89 10.8 11.2 10.7 11.2 1.21 10.4 9.76 9.69 8.54 2.31 9.76 5.86 6.43 10.6 6.8 13.9 9.59 8.67 5.4 2.97 5.28 10.2 8.82 5.27 9.8 5.49 6.2 7.96 8.53 11.3 11.3 8.86 11 9.76 10.8 11 9.11 5.97 1.96 10 6.81 10.4 1.04 4.3 11.2 9.67 0 7.46 6.79 9.5 11.9 2.87 5.32 10.6 8.9 7.34 10.4 8.23 4.7 0 0.84 12.4 16.4 5.47 0 11.7 9.14 0 10.1 7.15 2.23 11.4 9.41 5.47 3.59 11 9.67 5.78 11.5 9.33 7.32 2.45 12.1 8.7 10.9 9.03 8.18 8.43 8.84 10.7 10.9 0.94 8.06 8.79 5.99 4.14 0.34 10.1 5.68 8.8 6.45 11.3 15.8 6.84 10.4 0.34 6.59 3.71 1.65 10.3 0.61 10.2 8.09 8.43 0 9.76 2.52 6.88 11.4 9.47 10.4 8.85 1.51 0 8.95 12.2 0.34 6.81 6.97 10.4 6.86 7.09 9.53 0.61 8.72 0.61 0 7.98 12 8.03 9.91 10.8 12 0.84 8.55 8.98 11.1 5.6 9.47 7.24 8.99 9.23 9.35 1.75 10.4 9.63 11.7 8.19 10.6 8.19 10.9 10 11.7 8.26 8.68 11.1 10.5 0.61 7.88 10.5 5.92 6.11 8.43 3.65 9.78 10.7 0 7.3 7.83 9.6 0 7.73 9.5 9.72 11.5 7.17 8.58 0 12 9.98 5.22 9.75 0 11.3 0.34 6.94 8.65 7.33 1.04 10.4 8.42 8.92 9.02 15.2 14.8 14 14 10.3 10.2 13.6 1.09 14.4 11.1 13.7 13.8 13.1 14.2 14 12.4 13.3 10.6 14.4 2.87 11.7 12.2 10.2 13.3 13.3 13.5 13.7 13.3 13.3 13.3 13.7 13.9 13.1 12.9 12.1 13.8 13.3 12.6 9.33 7.76 13.4 7.54 15.2 14.4 13.2 11.2 9.6 13.4 13.4 13 13.7 11.8 13.8 2.06 2.76 4.51 6.66 6.26 13.4 3.15 2.71 14.8 8.72 8.05 11.8 9.27 10.2 12.9 14.1 14.1 12.3 14.1 13.5 12.7 13.6 11.9 13.2 13.8 13.9 12.3 14.6 13.7 13.5 12.5 13.5 13.8 13.1 10.2 8.53 12.8 9.37 12.4 4.32 8.33 14.5 10.8 10.1 9.66 11.2 0.84 8.02 11.6 10.7 7.63 5.63 11.9 9.92 9.52 3.35 3.15 2.87 1.05 5.05 11.7 2.92 2.52 8.11 0 8.74 3.65 6.03 11.5 9.74 0 9.74 1.75 2.76 16.3 10.5 10.8 11 3.35 5.45 11.9 11.1 10.4 13.1 7.62 8.28 10.6 14.1 12.8 5.8 8.62 10 8.69 18.6 4.98 5.57 9.52 6.21 1.37 0.34 1.21 3.02 10.3 6.25 0 6.85 5.3 7.84 2.87 6.47 11.5 9.92 13.1 0.34 2.76 6.01 6.07 4.84 10.5 6.12 7.03 0.84 8.29 6.2 3.56 2.31 0.84 1.04 10.7 0.84 3.2 3.98 2.38 1.86 10.1 0.34 14.3 7.69 6.79 12.9 13.6 11.5 7.12 11 9.73 1.96 8.7 9.5 12.6 11.1 9.57 9.51 8.8 8.28 7.38 10.3 6.67 6.56 11.8 9.91 9.95 7.89 7.7 11.8 11 2.39 8.08 9.25 9.64 11.6 6.03 7.63 1.64 8.54 8.58 8.4 8.32 8.65 7.01 8.64 1.75 9.44 3.11 7.34 9.06 7.32 11.8 5.53 10.1 0 9.81 2.38 6.64 7.71 6.5 7.71 5.32 12.2 6.4 2.92 5.13 2.31 7.01 9.97 8.88 9.05 3.39 12.6 1.04 7.09 0 9.95 0 9.63 11 12.1 0.84 12.2 6.9 0 3.93 5.71 10.8 7.34 7.44 6.83 5.18 3.59 5.96 6.41 9.49 9.74 12.7 7.87 10.1 11.5 7.89 10.5 8.68 6.32 8.15 4.67 5.42 4.95 2.38 8.92 6.44 8.91 2.06 11.3 5.15 15.7 9.03 4.28 8.51 6.11 7.67 9.18 7.9 9.62 8.99 5.49 9.86 4.3 4.11 6.32 7.7 3.9 10.2 12.5 0 7.64 6.45 6.45 9.26 11.7 9.98 10.8 9.99 3.88 8.54 0.61 6.32 9.97 9.98 9.5 10.3 1.51 0.34 8.68 9.64 4.7 10.1 10.8 4.55 0 11.8 1.21 11.4 12 4.05 8.6 6.11 9.2 11.5 7.01 7.39 6.15 8.67 9.93 0.61 6.97 3.39 0.84 12 2.76 3.07 11.8 10.4 8.93 9.85 10.8 8.77 0 9.81 8.09 6.21 9.44 9.49 8.96 9.82 6.18 8.67 6.02 4.92 1.21 3.49 5.07 11.2 10.6 9.23 2.52 7 7.73 1.96 2.45 11.8 6.57 8.81 0 0.84 8.36 6.75 5.05 6.23 4.72 4.69 8.35 0.34 0.34 7.35 7.91 2.31 9.89 9.58 0 8.59 9.5 7.64 5.23 4.37 0 8.09 0 8.52 7.45 8.52 7.2 0.84 0.34 2.06 7.61 3.62 7.51 10.1 0.84 7.15 6.48 9.43 11.5 9.25 9.95 10.3 9.25 9.49 6.45 8.4 9.56 10.3 8.82 1.64 1.37 0 0.61 3.68 4.36 4.64 2.14 11.1 2.71 6.64 7.74 9.1 0 8.26 8.9 0.61 11 0.84 4.53 0 0.34 11.4 5.97 0.34 10.1 1.09 1.37 4.05 0.34 9.86 10.4 6.03 3.02 0 1.04 1.86 10.6 0 5.03 4.12 2.92 0 12 0.34 5.55 3.59 3.02 8.12 8.84 9.78 0 9.76 9.17 1.86 0.84 10.7 11.4 5.91 0.34 12 3.74 9.89 4.35 5.39 10.2 0 0.61 7.01 10.3 8.96 1.96 10 0.34 6.91 4.69 3.02 7.43 0.84 13.1 0.34 6.27 6.35 8.63 10.4 12.7 6.64 4 7.94 13.3 3.95 2.52 12.3 10.9 9.67 10.4 10.6 9.01 7.31 1.75 5.82 11.9 11.2 9.55 12.7 9.64 9.87 5.94 8.54 10.6 7.6 7.86 10.5 8.57 8.84 12.1 8.76 9.4 8.81 9.14 11.2 8.01 10.7 8.49 9.65 10 7.14 8.99 6.9 0 10.4 11.9 8.71 7.63 7.56 7.38 8.05 2.71 11.5 12.5 8.75 6.97 10.8 14.7 2.45 8.93 7.4 2.71 11.3 9.9 10.6 8.49 11.8 8.76 8.65 5.52 11.4 3.62 10 11 9.88 11.7 9.95 9.66 7.74 8.86 10.8 8.26 7.56 6.87 8.18 6.91 8.62 3.35 8.22 2.12 3.82 3.32 7.47 8.72 9.97 7.11 7.64 2.14 6.44 4.92 8.5 7.96 10.3 8.76 6.72 8.75 10.8 4.09 3.88 9.69 6.96 5.75 6.55 6.46 10.4 0.34 10.2 0 11.1 9.71 9.31 8.79 10.4 9.9 10.2 10.1 10.9 8.62 7.37 10.7 10.3 10.3 2.06 8.15 12.2 9.92 9.73 8.9 3.24 8.29 2.74 12.3 7.68 7.09 4.61 4.39 8.65 2.65 10.1 8.22 11.5 10.9 7.13 2.06 7.41 0.84 7.32 7.12 0.61 10.5 10.3 10.7 10.5 10.7 9.71 9.3 0 7.68 9.36 8.02 9.2 10.4 1.86 10.5 10.4 11.8 9.79 6.18 2.06 8.38 4.93 5.34 11.2 7.71 12.8 0 12.1 10.7 5.53 5.05 9.08 6.89 9.69 7.3 6.38 10.1 8.8 8.63 9.01 10.6 9.92 4.91 5.61 3.93 1.21 0.84 11.2 0.61 6.28 0.84 0.34 4.02 6.83 0.61 0.34 5.44 4.11 8.9 0 6.89 5.72 5.51 6.66 2.52 5.22 4.2 1.96 0 7.44 5.5 9.39 7.59 11.1 2.31 8.07 5.69 5.49 0.34 9.18 7.1 4.36 0.61 0 8.95 2.45 5.53 8.22 11.4 4.14 6.25 8.87 12.9 1.04 1.21 1.37 7.7 5.74 5.68 7.6 0 8.17 6.48 0 4.88 0.34 5.24 1.64 6.66 7.16 3.39 3.43 0 0.84 2.06 9.66 3.9 7.24 9.48 0.84 1.96 10.1 3.82 3.32 11.2 11 7.96 0 1.04 10.1 10.6 10.6 12.3 6.37 0.34 11.6 12.6 3.99 8.21 2.06 6.97 9.92 8.88 5.17 11.1 10.7 10.3 11.1 0 8.19 9.58 10.2 8.6 7.63 8.31 8.32 8.35 8.94 8.29 8.6 0.34 10.8 7.99 9.7 10.9 10.4 8.75 0.84 8.89 9.79 2.97 2.06 9.24 5.64 11.1 9.69 10.6 10.1 10.7 6.64 7.78 5.25 10.9 2.2 9.95 10.6 10.7 7.74 8.03 9.71 9.7 10.8 7.07 4.6 2.52 6.95 7.86 8.25 7.75 8.95 4.05 5.44 9.31 11.6 9.77 8.62 11.9 10.1 9.8 11 9.89 11 11.3 9.89 10.7 9.93 12.6 11.9 8.87 11.8 11.2 10.3 8.83 8.69 0.61 13.9 3.98 15.4 5.72 10 9.94 11.9 11.9 11.6 9.38 8.91 8.23 11 7.42 9.89 0.61 2.76 8.78 10.7 8.52 11.5 10.1 5.78 10.6 7.88 10.4 6.94 13.6 8.58 10.7 7.39 0.84 8.24 0 3.32 6 4.39 15.9 11.3 10.2 12.6 0 5.68 14.1 10.4 12.4 9.69 8.62 9.64 8.61 7.57 13 12.9 9.64 10 12 12 9.9 11 6.94 10.7 11.3 10.4 8.67 12.6 9.16 9.71 11.1 10.7 11.4 12.4 11.8 12.3 11.9 11.5 6 8.28 0.61 10.6 9.97 12.6 11.8 0.84 12.6 1.86 12.1 10.7 12.3 5.97 8.36 10.4 2.65 2.59 5.32 1.21 0.61 2.76 0.34 2.59 11.8 2.82 0.84 1.04 4.54 11.1 12.9 9.18 9.56 8.64 1.75 11.3 7.19 8.83 8.06 9.5 7.93 2.45 3.11 8.83 10.2 3.65 10.2 7.05 4.71 9.21 9.7 10 5.59 10.6 9.69 9.93 11.7 10 9.63 13.9 0 11.2 10.5 11.5 4.16 11.8 10 10.8 8.35 13.9 8.68 9.7 8.2 11.3 9.45 6.68 9.39 9.91 2.45 6.8 3.35 1.51 3.46 11.1 8.8 10.5 0.34 1.64 0.34 10.6 8.14 0.84 11.9 6.77 9.18 8.62 8.69 4.14 10.1 6.8 9.78 11 7.3 10.8 10.2 9.02 7.69 7.91 9.02 5.17 1.21 13.9 13 10.1 10.2 12.9 9.1 9.12 11.8 0.34 1.37 8.88 10.9 8.59 10.7 9.15 10.1 7.96 7.39 3.35 10 5.32 6.8 10.2 8.37 11.5 0.84 4.48 7.11 9.57 0.34 0.34 11.3 4.01 11 8.74 11.1 10.7 9.31 9.47 9.03 8.69 9.25 9.65 4.36 12.1 4.16 8.01 10.2 9.34 10.8 0 8.9 9.88 5.27 12 0.34 0 9.81 7.15 9.41 5.06 10.7 9.21 8.87 13 12.3 9.87 5.96 9.03 6.51 3.24 9.54 15.5 7.19 6.7 9.01 0 8.74 9.42 3.62 9.25 17.6 9.69 0.84 7.92 8.33 7.66 9.77 9.12 7.36 10.2 3.35 11.9 13.9 11.7 1.04 3.9 8.07 7.37 6.39 7.28 0 11.7 10.7 0 11.7 9.05 9.07 10.6 2.71 13.1 8.15 7.73 12.1 6.22 7.52 8.94 6.35 2.38 11.1 9.01 7.01 9.44 12.9 10.5 10.7 9.53 10.3 4.88 9.6 11.9 9.39 11.2 1.04 12 10.9 8.95 10.3 14.3 0.84 10.9 7.87 7.67 6 1.37 12.7 11.9 5.7 5.6 7.47 7.85 14.9 15.7 5.08 7.94 11.3 9.37 8.37 12.4 9.6 9.8 9.39 11.2 13.7 10.2 8.62 7.19 2.82 0.84 10.6 9.21 10.8 10.4 2.31 11.7 9.42 6.12 3.53 0 0.61 10.3 0.61 11 7.94 14.2 11 7.08 3.07 9.88 11.5 9.32 10.8 8.53 9.55 16 4.7 3.82 11 10.6 10.6 0.61 13.2 11.8 8.73 13.9 12.2 10.7 10.7 10.2 11.1 0 16.3 4.65 18.2 9.46 8.75 15.4 6.73 8.99 7.74 7.01 7.14 6.86 17.6 0.34 12.9 10.3 10.5 8.15 14.6 3.39 1.86 6.8 4.7 5.99 6.2 0.34 3.53 2.76 10.7 9.02 10.6 12.6 10.4 2.06 9.8 12.1 10.6 8.94 8.86 13.5 11.2 10 10.8 11.2 9.13 13.2 7.35 6.75 4.41 0.84 11.3 7.7 4.72 1.51 0.61 7.38 8.9 6.43 11.8 3.9 3.9 4.58 5.55 7.33 1.04 7.64 2.88 2.14 5.36 9.59 10.3 4.93 7.64 0 3.24 7.1 12.9 5.49 3.74 0.34 7.08 8.69 7.69 0.34 8.26 0 6.81 5.21 2.97 5.28 5.22 8.2 5.99 0.34 13.5 2.76 7.43 1.04 6.37 0 0.34 4.45 8.54 4.39 8.29 2.45 3.49 10.2 4.77 8.72 1.75 5.01 4.37 1.64 2.19 2.14 4.69 4.18 4.88 5.26 0.34 3.15 6.25 2.76 10.8 4.07 1.86 0 7.53 13.9 9.41 4 8.62 2.71 4.7 15.1 6.02 5.85 0.84 8.01 10.7 1.51 0.61 3.93 9.58 1.21 7.27 2.59 5.79 0.61 7.75 7.53 0.34 4.72 7.52 8.01 7.44 8.63 3.68 6.74 3.32 8.33 0.34 10.9 2.45 13.2 3.39 14.5 14.6 12.6 1.04 10.6 10.1 10.1 8.36 10.4 12.4 10.1 7.56 10.2 10.6 10.3 10.6 13 10.8 11 11.4 9.64 10.6 9.41 11 10.5 11.6 1.75 9.14 0 4.2 8.42 4.11 10.7 5.25 10.3 7.49 13.6 13 1.04 9.02 9.9 6.23 10.6 8.81 10.8 7.32 0 10.9 4.79 11.7 12.7 12.2 11.3 10.6 12 10 9.41 11 8.86 5.27 11.4 10.6 8.59 8.99 11.8 10.4 6 11.8 9.32 5.91 10.2 13.6 13.2 10.3 11.7 6.44 11.7 6.57 7.13 0.34 9.11 9.45 10.5 12.7 4.53 0.34 2.65 4.67 2.23 9.04 7.37 7.99 8.07 17.2 9.09 10.7 10.7 6.37 8.16 12.2 10.7 6.35 6.47 7.93 9.81 9.74 10.2 9.01 6.91 0.61 5.94 9.37 1.21 0.34 1.64 0 2.23 3.8 1.96 0.34 2.31 9.01 7.69 1.21 14.1 5.74 1.51 0.34 9.26 7.8 10.1 4.87 10 13 11.4 9.04 4.8 7.9 6.53 7.3 12.4 8.45 10.4 10.5 12.1 8.61 13.2 12.1 11.2 12.7 6.17 11.9 11.6 2.38 11.9 8.08 9.59 8.85 6.48 8.62 9.65 2.87 8.46 5.42 13.1 7.76 8.96 3.9 6.34 7.35 6.5 7.67 6.02 6.49 7.16 8.81 9.19 7.87 10.8 7.58 7.09 5.36 8.12 9.67 9.24 6.59 9.88 7.9 8.18 6.98 8.28 6.5 7.14 5.83 9.03 2.23 1.04 6.42 5.56 7.33 7.76 7.85 9.89 7.24 1.72 8.84 3.68 3.53 7.05 8.92 0 0.61 5.37 5.94 3.57 10.8 5.33 0.34 2.87 1.04 1.04 4.89 2.52 7.72 8.28 4.32 7.25 7 3.2 6.69 2.45 7 8.47 3.15 2.38 8.66 7.9 7.64 7.62 10.3 9.76 9.61 8.88 9.86 4.11 6.83 0 9.11 6.69 11.3 7.45 6.44 1.21 4.53 1.51 6.69 8.72 6.29 5.48 0 7.39 9.02 7.44 7.17 8.04 5.52 9.56 7.73 7.28 2.06 8.09 11 2.92 7.32 6.81 3.59 2.52 12.2 9.63 5.31 7.09 5.54 7.32 3.35 7.26 5.44 7.29 6.03 8.13 7.27 9.82 0 0 5.26 5.66 5.42 5.46 11.5 7.95 8.48 8.98 9.33 13.9 3.35 10.3 2.96 13.3 9.38 11.3 3.9 5.12 8.58 9.96 5.49 8.63 11.1 10.9 9.68 6.47 1.86 9.25 7.31 9.34 10.8 2.06 8.43 11.6 9.61 7.72 9.59 11.3 11.1 12.6 11.1 5.23 9.71 0.34 9.72 10.5 10 5.52 5.56 10.8 8.96 5.64 9.04 0.34 3.32 4.93 10 3.39 11.2 11.2 8.36 9.8 8.26 7.45 7.95 9.82 9.12 0 9.47 10 7.96 6.37 7.86 11 8.81 0 12.9 9.24 8.37 6.82 8.39 10.1 8.52 9.52 10.5 5.33 9.21 11.8 6 9.4 7.53 10.2 12.1 9.56 10.6 7.49 10.6 8.73 11 8.57 9.76 8.27 12.5 8.21 10.9 6.72 5.98 9.28 7.33 9.61 9.31 9.53 10.6 10.3 9.49 3.71 9.26 8.86 7.34 3.56 6.45 9.31 8.95 6.4 3.71 8.84 10.2 10.8 10.9 8.51 8.01 8.82 8 11.2 11.4 5.72 10.4 9.75 7.89 9.17 8.46 3.28 5.87 11.8 0.34 3.53 7.93 9.09 7.85 8.45 10.1 7.88 11.8 4.87 7.52 0 4.45 7.79 12.5 2.76 11.2 5.28 5.33 10.1 7.91 8.13 7.61 8.91 8.88 8.17 9.49 8.89 3.74 9.85 12.3 8.6 10.8 12.8 9.2 9.72 7.12 0 10.2 0.34 1.21 0 10.3 5.03 10.1 5.85 7.71 0.84 0.61 5.2 5.76 0.34 5.94 7.19 1.37 1.37 7.94 10.4 5.95 7.69 8.21 10.6 7.83 9.69 0.84 1.64 3.85 4.11 10 9.85 7.64 0 9.14 12.4 7.62 8.99 8.7 9.18 8.92 8.33 4.37 8.91 11.2 10.1 11.3 9.28 10.3 8.97 7.76 5.56 9.41 13.6 10.8 3.71 7.89 0.61 6.41 13 7.59 9.4 3.28 5.52 8.09 9.16 2.65 10.2 0 5.16 6.5 3.56 9.73 6.35 9.3 8.16 7.78 8.72 5.49 8.14 9.88 8.02 8.84 6.57 9.19 8.94 0.34 10.1 10.3 8.34 7.99 9.39 10.1 9.56 7.16 10.5 1.64 8.7 7.33 3.93 12.8 6.36 6.71 9.43 8.69 8.2 4.6 7.85 1.37 10.4 9.34 8.89 8.15 2.31 8.43 9.67 9.63 8.42 8.45 8.89 6.57 9.38 8.03 5.98 8.75 8.7 8.88 9.66 2.14 7.32 8.31 10.1 8.9 7.62 4.26 8.5 6.3 11 9.38 10.6 7.23 7.26 9.01 9.1 10.4 10.8 9.87 8.55 2.38 7.62 9.85 6.79 10.2 8.33 4.42 0.84 9.44 6.21 5.81 10 7.64 8.66 6.97 1.04 8.48 6.74 8.78 11.7 0 9.57 1.37 10.1 8.45 8.28 9.79 1.51 8.49 7.47 6.06 8.53 12.2 10.9 7.33 8 10.3 6.13 8.65 8.24 10.2 7.24 7.99 8.78 3.24 6.17 8.96 13.1 7.37 1.64 10.6 11.8 10.9 11.1 9 9.42 8.74 8.42 6.48 5.35 7.81 8.94 7.49 7.63 7.75 7.12 10.8 9.15 10.2 11.6 7.62 7.07 7.56 6.96 4.95 9.88 0.61 4.26 5.94 4.18 0.34 8.65 7.94 7.44 9.38 8.96 8.51 8.54 7.75 9.84 6.78 6.02 8.32 8.2 4.43 6.54 5.67 4.7 5.91 6.11 7.65 7.76 1.96 7.39 1.86 7.37 3.82 7.43 1.51 3.93 0.34 5.42 9 2.82 5.24 6.69 6.4 9.21 10.8 4.87 7.65 8.92 7.48 8.33 7.99 9.99 9.29 5.72 8.07 10.4 1.75 3.02 8.9 9.67 5.65 8.65 7.17 7.42 10.1 10.4 9.36 6.4 9.34 8.1 5.94 5.58 8.07 9.49 10.7 6.78 3.39 1.75 9.64 9.4 7.43 5.6 7.64 8.53 10.7 7.93 0 9.26 5.11 4.14 4.51 9.84 5.99 1.37 11.5 1.04 9.66 8.45 6.88 10.4 9.51 2.76 8.03 8.56 2.2 8.82 0 0.61 9.27 0.84 10.2 4.41 7.26 7.24 8.98 5.7 5.32 4.64 7.09 7.18 6.31 11.1 5.7 8.92 0 7.32 8.36 7.76 1.37 1.96 4.74 6.66 8.51 8.35 1.86 3.24 0.84 13 1.04 6.21 6.71 11.3 8.88 8.98 7.12 3.98 7.73 10.2 9.22 8.67 9.6 9.5 9.24 7.46 9.57 8.45 10.7 5.54 9.12 8.63 7.89 4.11 1.75 2.82 4.2 7.1 7.59 7.69 8.42 5.07 6.23 4.22 0.61 7.36 10.5 12 3.82 6.42 7.27 6.6 4.66 0.34 9.3 6.26 3.02 6.43 5.65 7.08 9.38 5.64 10.1 9.18 7.77 10.1 9.63 11.8 9.33 5.07 8.85 9.27 7.52 9.92 6.77 9.25 6.83 8.74 8.04 6.31 10.2 7.32 6.33 9.53 3.43 8.74 8.24 9.9 9.05 10.6 9.17 8.91 4.25 10.9 9.84 9.5 3.07 9.64 10.8 8.84 10.5 5.85 9.46 10.6 8.78 2.45 11.3 9.88 10.5 10.6 8.97 8.97 9.3 6.82 9.55 3.07 10.7 9.84 5.25 7.16 4.16 8.68 10.2 7.91 0 10.6 6.34 3.49 11 8.2 11.1 9.87 10.8 5.13 11.2 9.15 4.45 9.53 9.74 8.37 6.3 8.32 9.63 8.2 2.82 10.3 13.8 6.24 8.08 4.34 7.25 8.04 10.8 7.03 7.07 3.43 7.92 7.86 10.5 8.41 2.59 1.64 0 9.83 0.61 2.65 10.6 8.57 9.6 8.67 5.68 11.3 6.67 8.07 11.6 9.93 5.21 9.93 1.51 9.52 4.7 2.87 10.7 10.4 12.8 9.99 4.18 9.62 11.2 4.07 8.75 2.97 4.6 11.1 8.25 6.69 11.3 5.65 9.95 4.41 3.32 6.25 0.61 5.31 7.55 6.97 7.53 9.73 1.37 5.94 1.04 0.61 3.43 12 8.51 8.04 9.14 6.57 9.09 5.26 11.4 6.65 11.3 14.1 9.46 12.5 9.88 12.2 7.86 7.93 3.32 9.22 7.9 7.18 11.7 10.6 12 6.03 10.5 1.21 10.6 9.16 8.48 11.5 8.91 9.78 3.92 3.49 5.67 1.81 10.9 9.04 9.16 9.25 2.92 2.14 10.8 13.4 8.96 2.23 2.76 3.85 2.82 11.5 9.32 3.39 11.2 11.3 15.7 5.57 3.56 0.84 0 4.41 11.5 11.5 9.5 4.81 1.51 9.12 11.9 8.96 8.87 0.84 2.64 0 1.51 12.8 5.2 8.77 10.4 9.7 6.2 10.1 7.63 6.09 9.73 7.98 9.6 4.48 10.5 10.2 9.31 3.62 7.92 8.51 8.9 8.75 9.64 8.56 12.8 0 9 5.6 9.26 8.29 9.22 8.51 9.8 6.64 10.2 0.84 7.41 11.2 10.5 9.18 3.95 9.45 9.51 9.12 7.15 10.3 9.39 1.51 0.34 6.29 7.91 10.5 7.67 5.47 8.67 5.5 8.99 9.48 4.45 10.6 11.6 10.1 11.4 10.4 9.99 6.6 9.23 9.87 0.84 7.2 0 0.84 10.2 8.87 3.49 7.41 7.51 9.25 2.23 7.74 0.34 8.86 6.08 7.33 8.42 9.68 8.81 9.8 1.96 10.2 3.37 7.86 3.65 8.92 9.98 1.96 9.54 8.71 11.7 10.1 10.4 11.1 11.5 10.2 9.89 0.05 9.62 9.38 1.26 10.2 8.2 7.63 10.1 1.04 5.65 2.06 10.8 10.3 0 9.43 10.5 6.64 12.5 14.4 8.54 10.4 7.03 8.05 8.46 1.96 9.73 8.53 9.78 9.09 11.8 6.76 9.61 11.8 11.6 10.4 10.6 11.1 7.29 12.1 10.1 8.16 9.72 7.81 8.37 8.27 0.84 6.76 1.04 9.89 11.2 11 5.35 8.29 0.84 10.2 10.9 11.7 8.68 11.4 12.1 9.95 9.61 8.5 11 9.35 7.18 6.79 11.8 2.38 6.57 9.46 8.01 2.92 4.45 0.84 0 10.5 1.64 0 0.34 10.7 2.31 8.28 2.82 2.76 3.43 7.62 1.51 1.21 4.22 0 0 1.21 6.57 3.9 9.58 9.91 11.2 8.68 6.82 6.1 0.34 5.39 7.98 8.52 0 8.52 6.57 7.46 7.14 5.29 8.51 5.07 8.37 7.16 8.79 1.51 9.13 5.18 11.4 7.72 8.65 0.34 2.65 0.84 4.79 2.38 0.34 6.22 7.07 6.68 7.18 9.54 11.5 10.2 0 8.02 0.61 3.9 1.75 0.34 10.4 6.22 2.87 6.87 9.63 7.09 8.28 9.96 0 9.12 10.3 12 8.99 7.87 0.34 4.3 10.7 10.4 8.98 1.37 9.15 11.5 10.3 8.12 1.04 4.43 0.61 0.34 10.7 0.84 10.8 11.3 9.03 1.04 4.37 10.4 7.85 8.51 8.06 9.11 0.34 0.34 11.3 10.1 7.34 7.48 7.63 8.05 5.07 9.42 7.45 8.48 9.56 1.37 12.6 9.08 11.9 6.64 10.3 6 9.79 5.57 9.95 11.8 2.82 11.4 7.84 9.45 8.83 8.63 0.34 3.59 0 7.92 1.04 6.26 9.18 5.29 8.54 7.58 6.84 5.82 11.2 6.01 9.49 8.53 8.16 5.21 9.51 6.25 3.8 0 6.47 0.34 3.02 5.89 2.38 0.34 2.14 8.79 9.72 8.39 4.46 6.03 11 7.2 9.85 10.9 8.22 10.9 9.74 8.26 7.86 8.62 1.04 10.1 7.96 1.21 0.34 10.1 9.37 5.04 5.36 10.5 9.28 2.92 7.7 7.57 0 5.67 2.59 2.38 8.04 9 1.51 6.59 10.6 4.34 6.23 11.1 10.1 1.04 8.13 4.85 4.53 9.92 3.15 7.36 11.8 6.51 0 9.34 9.58 9.91 7.95 1.96 13.2 4.94 4.24 0 0.61 6.49 7.36 8.42 10.9 7.54 8.69 6.54 5.15 8.39 9.92 2.82 10.3 5.49 0.61 10.2 8.76 2.97 8.15 9.69 9.84 8.31 7.24 9.32 11 7.81 8.1 10.1 9.89 8.55 7 5.59 6.83 6.44 9.44 9.24 1.51 9.01 9.15 8.29 9.56 10.2 8.01 11.3 8.46 7.35 7.6 9.65 11.4 9.69 8.77 4.77 4.5 4.69 9.29 6.77 8.55 8.14 6.78 0 2.38 6.69 10.9 10.4 9.82 3.56 8.12 4.55 3.98 2.65 6.31 6.18 9.24 6.44 4.05 4.74 6.72 5.79 7.08 5.85 3.15 6.8 11.7 10.3 8.85 8.68 0 9.49 9.37 9.18 9.13 6.23 9.97 1.51 8.04 6.12 4.2 3.68 4.84 8.49 8.85 0.34 8.32 7.41 6.94 8.73 12.3 2.97 9.69 9.78 9.43 9.31 8.49 9.36 8.28 10.2 9.22 9.3 10.4 9.28 8.4 9.13 4.36 9.23 10.9 8.28 6.06 5.65 6.63 9.46 9.38 9.44 9.76 6.44 7.89 0 7.41 12.6 8.23 8.7 7.26 9.73 9.74 8.69 9.74 6.93 7.31 6.83 8.88 9.63 7.56 7.74 9.83 10.3 9.79 9.97 6.88 10.4 6.19 8.42 9.31 9.01 7.08 8.68 8.53 9.78 9.35 8.74 5.27 7.43 5.63 7.53 10.6 6.47 10.4 8.7 10.3 9.37 9.57 4.56 10.8 9.1 9.22 7.9 9.04 11 9.79 1.21 9.3 5.38 8.26 1.21 7.2 0.84 10.7 3.11 11 6.19 5.18 8.28 3.53 6.46 9.46 5.13 9.48 8.83 2.87 12.8 4.95 6.78 8.14 7.92 7.76 5.74 4.73 6.6 8.25 7.9 8.71 8 0.61 0.84 0.84 1.7 9.9 9.25 10.1 8.23 2.06 5.85 11.1 9.93 9.84 7.23 8.92 4.34 0 3.32 10.5 8.23 10.7 6.81 5.16 6.38 7.38 9.27 9.12 5.41 11.3 6.3 7.21 10.4 7.23 7.66 9.11 12.2 7.23 8.77 9.39 0 11.5 7.73 10.6 0.84 8.84 7.9 4.81 9.27 9.62 10.1 0.61 3.07 0.34 1.37 3.43 4.67 1.86 11.3 6.25 6.2 0 1.64 6.21 9.68 9.56 4.14 12.4 10.2 11.7 2.97 0.84 3.65 1.21 9.43 5.85 9.04 10.2 11 3.56 8.21 11.5 9.47 5.93 0.35 8.74 10.4 9.3 2.06 3.88 8.1 4.4 4.43 4.02 12.7 13.4 10.2 10.6 4.91 8.63 11.6 1.21 8.48 1.21 10.3 9.86 6.79 5.96 11.2 7.11 10.8 7.72 5.75 5.15 9.36 8.58 10 6.62 5.45 8.16 10.9 6.2 3.56 9.06 4.67 1.75 5.48 7.43 8.62 11.2 7.82 8.11 6.36 7.61 9.73 8.94 9.08 8.01 3.35 1.96 10.1 8.62 8.29 5.11 1.37 6.74 8.51 10.9 10.8 9.06 7.77 8.93 3.74 9.16 1.86 8.22 5.77 10.7 11.4 5.55 4.36 1.21 2.14 9.63 2.92 6.77 6.1 8.86 7.83 8.49 10.1 7.53 7.21 6.45 9.73 6.71 0.84 1.37 7.51 6.5 11 9.47 7.44 7.93 9.11 11.1 9.75 10.2 10.7 8.57 0 8.04 10.1 6.03 8.68 9.94 9.89 5.3 9.03 11.6 5.52 9.09 7.55 7.09 6.59 10.1 9.16 9.52 8.84 1.64 9.33 6.71 8.47 7.53 9.74 9.98 11.5 0.84 6.86 7.82 8.98 7.16 7.24 10.2 9.17 0.34 7.97 7.64 7.96 8.63 9.73 8.95 9.02 7.93 9.82 3.62 3.59 7.84 2.52 8.62 9.78 7.66 6.85 10.1 9 0.34 11.6 2.23 10.2 8.41 6 4.76 5.26 9.24 4.5 6.84 10.8 7.9 9.09 10.2 5.17 1.21 7.61 7.81 9.45 8.1 0 10 7.66 4.48 4.45 0.61 7.51 9.54 10.1 2.59 3.15 9.99 10.7 9.66 6.36 9.93 4.84 4.7 10.1 0.34 12.5 5.09 8.42 10.4 7.25 7.4 10.6 9.07 8.8 6.93 9.16 6.08 8.46 9.13 8.9 5.52 10.4 13.2 8.36 3.53 0.34 6.73 5.54 2.76 10.9 10.5 10.5 9.24 1.04 5.52 0 11.7 9.09 8.11 8.81 8.56 12.6 4.64 0 10.4 5.75 10.4 8.81 5.84 2.64 0.61 7.56 1.21 9.96 7.01 9.9 3.07 10.1 10.1 9.27 6.48 10.1 9.61 10.6 1.37 8.67 3.68 3.24 8.84 9.59 11.2 11 8.1 11.3 10.2 10 6.54 0 7.31 0 8.18 9.57 4.55 12.8 9.34 9.84 7.89 10.6 9.34 9.46 0.84 6.93 1.37 10.6 8.76 9.21 4.28 7.03 11.9 8.93 8.19 7.89 9.97 4.73 8.82 3.32 7.95 7.72 11.2 5.03 6.72 11.3 2.52 3.46 2.87 8.98 6.4 10.1 3.02 9.84 3.08 3.39 12.4 7.62 10.3 5.85 1.75 11 8.71 9.75 10.9 8.52 8.53 12 10.8 9.07 9.87 9 9.57 11.3 3.07 9.67 10.1 8.45 9.52 4.22 8.19 9.79 8.77 9.34 4.43 6.08 0.61 10.7 9.06 5.04 10.1 9.68 11.7 5.59 8.31 11.4 3.32 11.8 7.33 12 2.23 2.59 9.83 2.82 9.48 9.11 8.95 1.64 6.98 3.59 13.6 8.35 3.28 1.37 9.54 9.23 9.94 8.94 12.5 9.39 6.18 2.76 8.15 2.38 14.5 2.59 9.89 9.77 9.86 9.46 10.8 6.33 7.33 11.9 9.94 14.4 11.2 13.2 12.3 6.33 12 11.1 11.9 11.4 12.1 10.9 7.98 9.87 10.9 10.5 8.17 10.4 6.99 8.63 10.6 7.96 7.84 11.1 11.5 1.04 7.6 10.6 9.3 11.3 9.83 4 12.6 3.52 9.03 9.43 10.4 4.36 5.44 2.14 0.84 10.6 7.38 13.5 8.88 9.93 5.8 11.3 12.9 11.1 10.3 11.8 9.98 8.26 9.54 9.01 11.1 14.4 9.76 9 11.9 10.1 10.2 9.07 5.27 7.84 8.19 7.61 9.93 0.84 0.84 2.71 0.84 12.1 11 9.5 6.42 9.77 11.9 13 9.75 10.8 8.09 5.03 9.24 10.5 9.16 12.3 8.97 8.78 11.1 3.15 11.1 4 3.02 1.23 4.92 8.8 4.61 10.2 5.42 11.4 6.67 8.09 9.26 1.21 9.09 11.4 11.6 9.03 12.8 10.5 3.24 8.3 0.34 2.06 9.64 9.36 3.28 11.4 10.4 1.21 10.1 7.34 4.14 5.93 1.21 14.3 8.8 9.77 7.81 11.2 7.63 6.99 4.53 9.76 8.69 9.04 11.4 9.9 1.21 0.34 3.68 9.88 1.04 2.92 7.17 9.63 7.96 5.39 12.2 9.32 5.61 6.81 2.76 10.3 6.92 8.52 8.63 8.76 7.78 9.53 8.69 7.43 8.84 11 8.09 10.2 9.55 9.42 8.98 11.8 6.18 15.6 11 10.2 10.2 9.79 9.7 11.2 10.6 11.6 10.7 8.88 9.89 9.4 9.41 10.1 10.7 10.9 10.2 9.32 8.25 10.1 0 8.1 0 10.6 6.63 7.58 11.9 9.76 0.61 9.01 9.26 0.34 6.4 9.94 0 9.38 8.56 8.32 10.8 10.5 9.72 8.26 6.22 1.82 9.36 10.1 6.42 9.56 9.7 7.43 8.44 10.9 7.16 8.34 10.9 12.1 8.71 9.29 0 4 3.68 10.6 1.51 0 9.55 9.02 10.8 6.21 0 9.32 7.1 6.18 7.82 7.67 10.3 5.05 5.55 2.45 1.21 0.61 2.83 8.27 5.47 5.05 7.87 11.4 8.54 5.72 4.73 9.1 12.1 12.2 8.94 1.78 6.56 2.26 2.97 7.13 2.82 8.63 9.28 9.67 7.46 11.8 10.7 11.7 8.09 0.61 2.92 10.4 10.5 1.04 11.2 3.65 6.76 9.05 8.4 7.73 0.34 7.72 9.74 11.6 10.3 0 5.61 5.87 8.58 6.38 8.37 9.83 2.52 10.1 10.1 9.15 0.34 9.51 8.32 7.29 5.11 5.88 6.36 0.34 11 10.6 9.41 8.63 7.39 7.38 8.91 0.61 1.04 1.21 11.2 5.65 0 2.45 3.85 8.45 11.1 9.39 12.1 7.18 3.53 3.8 5.39 6.58 10.7 8.16 7.14 7.61 9.15 6.92 2.45 6.58 8.13 5.86 5.07 0.34 6.24 2.92 7.69 9.35 8.35 8.7 5.78 9.18 6.86 6 10.1 9.55 9.45 12.2 8.1 8.81 5.83 7.35 10.5 9.65 9.74 12.8 7.92 6.35 5.07 4.14 9.62 2.14 11.4 9.53 9.53 9.48 4.6 10.9 5.11 0 10.5 9.72 0 6.15 10.1 10.3 8.78 8.5 2.82 6.67 8.68 7.57 7.86 6.53 3.88 8.06 3.32 10.9 9.08 8.69 8.81 7.78 8.99 10 7.86 6.59 3.24 11.7 3.9 5.85 9.21 2.31 11.5 7.16 9.38 11.5 3.48 7.88 1.04 13.2 4.41 9.74 7.67 8.41 12.1 4.94 8.69 9.62 7.35 3.56 8.29 10.1 1.75 10.9 9.41 6.23 9.62 9.12 6.75 1.04 9.52 10.7 11.8 9.67 8.7 5.14 9.6 9.5 8.92 0.84 10.6 7.17 7.9 7.54 7.69 2.71 10.9 11 9.92 8.4 8.69 3.02 11.3 12.4 6.53 8.71 7.42 9.54 6.3 2.65 10.5 7.43 8.89 9.79 6.74 7.19 8.62 9.15 11.3 5.49 7.26 8.56 6.49 0.34 0 7.41 4.66 5.79 6.9 7.73 7.41 11.9 7.8 9.54 10.2 0.84 9.78 9.38 8.36 11.3 9.36 9.48 2.06 10.9 9.69 12.1 12.1 8.22 2.31 0.61 7.54 6.61 10.2 8.05 0.84 6.47 9 8.6 10.1 5.51 10.3 7.98 3.11 6.93 9.23 8.84 9.26 1.37 10 7.6 1.21 8.37 11.8 5.29 10.6 3.06 1.21 10.2 10.7 6.53 9.06 1.86 9.47 5.72 9.26 1.75 7.2 6.53 5.27 8.26 6.35 9.02 9.9 10.5 0.84 9.81 6.92 8.38 6.71 5.08 10 9.69 5.35 0 8.98 4.74 9.5 6.76 0.61 10.6 6.92 10.9 12.4 6.22 9.88 11 8.87 5.67 3.71 5.52 9.51 1.96 1.21 6.61 10.1 9.1 6.92 7.16 7.5 1.04 11.4 9.05 4.69 9.89 7.13 8.23 7.22 1.37 8.24 10.4 8.77 8.29 11.1 8.24 0.34 8.2 8.09 9.41 7.71 6.96 10.6 11 6.09 5.29 9.32 0 7.8 8.14 11.2 0.61 8.78 2.87 8.01 10.2 6.29 1.37 7.35 8.23 8.97 0.61 8.23 2.71 6.81 7.35 9.05 9.31 8.32 7.73 8.41 10.8 10.1 1.51 6.01 8 8.67 8.48 6.92 8.31 9.34 5.36 12.2 8.6 11.8 5.58 9.5 10.1 12.1 9.01 10.5 0 9.89 11.6 0.84 9.04 0 7.13 8.35 7.9 9.24 5.33 0.61 5.44 4.98 1.04 0 11.6 0 6.36 11.2 1.75 10.7 10.1 6.33 7.56 8.81 4.67 7.28 8.02 7.38 14.4 8.09 11.2 1.04 7.17 10.5 9.26 5.67 7.83 8.64 0 10.8 7.8 0 6.53 10.4 8.67 0.61 13.2 5.24 4.72 5.76 7.95 1.75 10.4 9.6 4.87 1.04 8.91 8.57 3.26 7.45 9.3 3.02 8.13 9.92 11.2 9.06 7.09 8.9 7.64 3.74 9.24 8.92 9.66 8.99 9.35 6.16 8.94 9.79 9.51 7.78 8.37 2.76 9.8 12.1 10.3 8.76 5.04 9.49 9.21 8.49 0.84 9.63 8.5 2.23 9.52 13.4 10.5 8.41 12.8 2.14 8.86 8.8 4.48 8.88 7.49 6.4 10.7 10.4 7.9 3.98 8.8 6.9 7.19 0.34 4.16 1.37 2.06 9.3 10.2 7 8.77 5.52 1.64 5.74 11.2 5.77 5.76 11.1 9.33 4.55 11.8 9.31 5.52 1.21 9.27 10.3 9.4 10.5 6.29 11.2 9.36 10.7 7.98 2.06 9.6 9.12 8.99 10.2 7.65 2.38 8.86 7.52 8.37 6.26 0 10.4 8.31 9 9.46 7.95 8.29 9.75 10.6 0 11.1 10 10.2 6.13 0 11.2 13.6 0 12.2 7.77 11 2.52 10.9 2.23 7.29 1.51 9.48 8.09 4.05 6.66 10.2 12.6 7.77 1.04 13 7.86 9.78 8.51 2.06 6.99 9.21 4.14 4.31 0.34 7.42 9.03 8.54 12.6 3.07 10.4 8.89 9.86 7.82 12.2 11.3 1.04 6.5 13.6 1.75 9.76 0 9.62 0.34 5.25 0 11.2 7.05 10.5 3.43 9.58 7.94 10.3 0 4.05 5.64 9.21 8.22 4.79 9.64 8.56 6.57 7.76 6.12 4.28 0 11.8 4.64 5.6 2.87 5.89 7.46 10.4 7.2 10.4 10.5 5.5 9.67 10.3 3.15 8.12 9.15 12.9 8.52 10 10 7.88 3.24 8.65 2.23 9.88 2.06 11.2 14.6 2.45 11 8.14 6.08 8.11 8.4 9.77 11.6 4.56 7.45 12.8 7.89 0.34 5.21 9.23 2.31 5.64 0.34 8.93 3.82 8.7 7.94 7.69 7.41 11.4 13.4 12.8 1.96 11.7 4.5 5.06 9.23 6.08 8.78 6.97 8.13 6.77 7.82 0 8.34 9.35 7.6 6.16 9.44 0 6.2 10.4 10.6 7.3 7.43 9.39 10.1 1.96 8.35 8.48 11.7 10.9 5.89 8.59 4.32 6.71 8.06 8.07 13.5 12.3 6.54 4.87 8.19 2.59 0 13.2 12.9 12.2 8.43 9.15 2.23 5.4 6.65 9.37 11.2 10 4.79 0 12.5 8.87 10.1 8.44 5.83 9.91 8.13 9.03 10.8 9.94 11.6 10.3 12.9 9.56 9 7.23 9.94 9.5 8.84 7.82 7.29 3.77 9.7 12.6 6.49 10.2 9.06 5.08 5.57 8.8 0 11.3 11.5 11.1 9.91 8.79 10.9 11 10.7 11.5 10.1 0.61 10.3 12 10.2 9.72 6.75 7.7 11 10.7 8.48 7.09 9.39 11.5 8.56 9.85 10.2 5.87 8.07 11.7 7.6 6 8.88 13.1 10.4 5.08 8.32 11.3 5.72 3.68 12.4 8.6 13.5 5.56 10.3 8.61 1.04 9.46 4.95 10.6 10.8 9.82 8.21 10.4 7.19 6.66 7.59 4.02 6.59 0 7.99 4.56 8.49 11.9 1.64 0.84 10.7 9.08 4.77 6.05 9.86 6.7 12.3 9.74 9.22 9.74 10.8 9.56 9.45 5.85 8.3 10.3 8.36 10.7 10.3 10.5 8.32 9.66 8.65 7.88 11.2 13.1 8.8 6.32 12.1 10.1 8.51 10.5 6.33 11.3 14.3 9.81 0.61 7.55 11.1 8.5 9.3 8.64 9.35 9.86 7.95 11.3 8.49 10 9.61 8.98 11.5 9.25 6.48 9.15 12.1 6.12 10.7 9.8 10.1 9.5 10.9 7.93 8.58 10.3 0.34 5.35 1.75 6.93 11.5 10.1 10.7 8.82 0 4.63 1.51 11.8 4.24 8.87 8.06 9.76 3.11 9.2 4.56 8.98 6.82 13.9 3.62 5.65 10.2 10.7 8.23 10.2 9.86 1.75 9.62 8.54 9.34 10.5 4.14 8.57 10.5 5.03 7.57 9.67 5.06 12.6 7.21 8.51 6.11 10.8 8.49 10 9.56 14 4.69 3.98 5.67 8.81 5.75 9.87 7.28 8.02 3.65 13 7.43 7.06 9.74 8.93 8.82 7.04 13.4 7.34 9.56 10.4 10.9 10.3 11.1 11.2 10.4 9.91 9.46 11.4 7.52 12.3 3.9 11.1 10.7 8.46 7.27 11.6 10.2 10.2 10.5 9.1 10.5 9.04 2.52 9.46 10.8 7.69 10.9 12.1 12.2 7.67 8.28 9.33 0 10.9 9.63 11.2 11.2 7.55 10 7.85 11.4 10.2 9.05 9.86 10.4 4.85 7.64 8.81 9.9 6.68 8.21 9.18 8.07 10.4 7.69 3.02 6.78 0.34 8.01 7.17 7.48 9.25 3.9 7.92 8.75 6.4 9.91 9.16 8.59 10.1 8.56 7.47 9.69 9.54 8.32 7.71 1.86 9.44 9.07 8.74 6.44 10.5 10.7 6.02 5.75 7.45 11.6 11.8 9.58 9.92 9.15 11.2 8.87 11.1 10.4 11.2 10.5 9.92 10.2 7.59 9.54 10.1 11.1 7.96 9.76 10.2 10.9 9.09 10.6 5.66 9.09 9.16 8.74 7.74 10.2 11.3 4.81 8.24 4.39 5.48 6.24 9.72 10.5 9.52 6.56 9.82 11.3 9.35 7.86 7.57 2.45 3.39 9.72 0.34 1.75 10.2 9.09 12.1 5.27 12.3 11.1 8.55 9.82 8.55 12.6 12.6 6.1 10.2 6.5 9.6 9.37 3.65 9.06 12 9.04 7.44 10.7 9.66 1.04 7.21 9.96 9.71 1.86 7.73 11.9 7.68 6.26 10.9 6.94 5.4 4.41 4.55 10.2 10.3 8.52 12.3 10.9 10.5 5 11.7 9.18 10.2 10.9 9.42 10.2 9.69 9.5 5.86 9.59 12.3 9.55 8.47 4.32 7.21 11.6 8.72 10.4 12.6 7.89 10.8 3.11 11.4 7.65 10.1
-TCGA-DE-A4MB-01 7.73 6.96 6.8 10.8 7.69 8.4 2.06 2.39 6.54 4.12 6.61 8.54 5.71 4.69 6.52 8.43 10.5 10.8 8.13 9.71 9.4 10.5 10 3.32 10.1 8.79 2.1 9.59 2.54 7.16 5.09 4.45 6.91 6.79 3.07 1.05 2.39 5.16 2.88 5.21 4.47 3.6 6.36 0 5.52 3.78 0 4.91 11.3 7.28 3.72 6.9 9.6 9.48 4.25 1.04 6.34 1.64 6.92 5.42 7.49 5.62 7.5 7.36 3.4 1.87 4.56 8.87 10.2 5.57 4.17 8.75 2.23 3.4 1.37 2.23 5.1 6.09 3.32 1.37 5.65 1.87 1.5 5.53 6.27 0 6 0 6.3 3.07 11.9 5.77 6.3 5.1 5.91 2.98 1.04 7.59 3.76 1.64 4.47 4.94 0 5.97 4.03 5.33 7.54 7.9 6.28 6.27 4.63 0.61 9.04 5.49 5.59 2.06 2.84 4.21 0 3.47 2.39 4.91 1.37 2.88 0.61 6.59 2.06 0.61 0 15.3 2.63 3.16 4.72 6.26 2.65 1.37 4.75 1.37 2.62 8.33 9.6 10.8 0.61 4.03 4.72 11.8 0 10.9 1.04 2.39 4.08 1.04 5.19 9.21 10.8 3.47 6.07 5.66 9.59 3.07 7.19 6.59 3.99 4.78 8.67 6.32 6.7 2.06 5.42 2.06 10.7 9.5 3.32 4.78 3.83 2.53 5.31 6.2 7.87 4.52 6.04 7.94 4.17 5.35 3.84 3.08 1.64 2.39 9.1 4.96 8.59 10.4 3.72 6.29 6.11 5.09 4.51 8.24 8.37 9.16 10.6 9.97 8.92 10.5 8.54 9.12 9.86 10 9.53 9.95 7.55 11.5 10.9 11.2 9.27 8.43 6.88 10.1 7.47 10.3 7.98 9.18 11.5 11.2 7.76 8.11 0.61 9.79 9.13 12.4 10.3 4.6 9.52 11.2 9.19 6.14 10.1 7.55 10.8 3.07 9.92 8.97 12.4 11.8 11.8 12.1 11.4 12.3 5.33 12.5 8.45 1.04 6.64 9.56 8.84 12.6 9.58 11.8 1.64 12.2 3.32 9.95 6.08 9.58 9.76 10.1 9.06 11.1 11.2 8.32 8.22 6.14 9.15 9.04 11 8.13 2.23 12.8 10.4 10.1 12 11.6 10.6 9.07 9.54 9.69 10.8 10.2 10.7 10.4 7.64 7.32 9.53 6.61 10.8 9.73 8.83 12.4 8.67 8.29 12.6 12.2 11.7 9.27 9.77 11.7 1.04 9.56 8.19 8.45 13.1 8.66 5.72 7.9 6.72 10.6 9.89 11.2 9.08 6.76 10.2 10.9 9.46 9.27 9.3 9.68 11.1 9.05 9.9 9.16 9.1 8.01 10.8 6.79 9.15 10.7 7.88 7.27 7.7 9.61 10.2 13.5 8.82 11 8.35 13.3 7.38 9.14 12.3 9.36 9.93 3.09 9.17 1.04 2.98 8.65 7.05 12.5 4.4 5.91 5.56 11.1 10.8 10.8 8.72 5.98 8.3 0.61 7.46 7.67 6.48 11.4 9.76 11.1 10.3 6.97 8 10.4 1.37 9.1 7.44 8.5 7.16 8.39 10.1 10.9 5.64 10.4 9.05 9.47 9.96 6.16 12.9 8.93 6.96 11.7 10.7 2.23 8.56 6.89 9.1 10.2 10.6 9.41 10.5 11.2 8.99 10.4 10.1 6.11 9.29 6.73 10.1 8.63 8.48 11 9.17 9.26 8.43 7.11 9.67 9.15 6.73 11.9 5.15 10.3 10.5 10.5 1.04 10.2 11.2 13.3 8.77 8.76 6.49 6.84 8.85 8.31 7.26 9.55 11.6 12.1 9.74 2.23 11.9 3.72 7.02 7.19 0 9.17 3.43 8.6 6.52 11.5 8.61 7.87 4.51 10.5 10.1 2.77 7.59 9.92 10.8 1.37 10.9 9.9 3.4 3.4 7.6 8.75 7.08 4.36 8.44 7.28 10.3 9.45 9.08 10.2 10.6 7.19 13.5 10.3 2.7 10.5 10.7 4.63 11.7 8.78 8.25 3.16 3.47 9.68 8.97 5.52 13.3 10.2 6.65 10.2 11 11 12.7 14.3 8.55 10.4 8.94 10.4 5.38 6.05 10.5 11.9 0 11.2 7.13 11.4 11.8 10.3 11.8 7.73 8.33 9.98 7.13 10.9 8.69 11 10.8 10.4 8.97 9.85 10 8.8 10.5 9.86 9.27 9.03 9.3 12.2 7.9 4.69 10.4 10.3 10.3 10.3 6.11 11.6 11.1 0 9.37 7.62 9.51 9.33 9.26 11.2 11.4 10.9 8.77 8.51 8.7 6.13 10.7 9 7.97 9.8 10.5 5.01 8.9 1.64 8.8 9.83 11.1 11.4 9.25 10.8 10.1 8.68 8.94 11 11.2 11.1 11 1.64 12.9 10.3 11.4 10.2 12.6 12 12.4 11 8.78 10.3 9.61 9.15 0 8.24 6.34 8.45 8.02 8.95 11.6 10.7 7.72 9.56 10.5 9.23 0.61 5.95 11.3 11.9 7.83 13.2 9.96 10.3 10.5 11.8 10 12 10.2 10.7 0.61 10.5 9.69 8.53 8.21 10.8 6.22 6 9.78 9.06 11.3 10.8 10.3 8.04 10.8 10.1 12.1 9.72 11.4 9.26 11.1 10 7.94 8.24 10.3 8.24 3.47 9.45 7.67 1.64 5.68 11.2 11 2.98 10.3 16.9 10.4 4.99 10.2 9.88 11.8 11.7 10.8 15.4 8.62 10.6 3.72 8.16 10 8.44 5.57 8.74 8.97 11.8 11.3 8.81 7.93 12.7 1.64 6.93 10.1 8.46 9.7 10.1 5.91 10.4 9.77 10 10.8 8.77 8.02 11.2 7.17 10.7 10.2 6.84 10.6 9.33 13 5.82 6.53 7.99 5.4 9.59 11.8 8.85 12.8 13.7 8.79 8.74 12.8 11.2 2.98 9.42 5.84 8.42 0 8.39 10.1 8.39 3.72 10.2 10.1 7.34 9.13 10.5 13.7 10.7 6.21 11.8 10.7 9.83 7.01 0 5.12 10.2 3.32 7.88 7.77 3.56 10.7 9.43 10.4 4.83 4.36 4.25 9.56 10.3 8.96 1.37 6.01 10.2 7.74 1.37 5.01 11.6 10.5 5.6 8.24 7.24 4.75 8.44 10.2 8.31 4.11 8.1 13.9 4.21 11.6 11.5 11 11.3 12.2 9.73 11.5 8.39 6.14 3.44 11.2 4.17 2.23 1.64 1.37 11.3 8.41 11.2 0.61 7.85 9.18 3.4 4.08 12.4 13.3 6.27 5.44 11.9 9.46 0 9.39 10.1 11.4 12.1 9.71 12 9.55 11.3 10.5 7.32 8.9 11.8 8.64 6.9 9.24 9.78 8.54 7.19 12.4 8.22 8.27 6.89 6.32 8.03 8.81 5.75 2.06 4.44 12.9 10.1 0 3.53 10.2 7.88 10.8 9.82 8.2 7.77 8.49 0.61 4.89 7.69 8.69 5.72 8 7.96 8.81 0.61 3.24 2.77 10.7 9.61 7.35 11.9 10.3 8.29 5.84 10.7 11.5 3.24 6.95 5.29 5.72 9.09 10.5 10.4 9.38 10.5 7.14 6.98 8.37 2.98 9.02 5.12 5.62 8.87 8.95 2.53 3.07 11.5 6.63 9.35 8.37 6.05 2.88 10.5 8.62 12 8.53 8.03 9.12 9.75 9.17 10.4 9.42 9.59 9.47 11.2 9.13 1.37 6.98 0.61 11.3 9.44 12.3 2.39 10.8 9.73 11.2 10.5 11.5 8.35 6.82 10.6 10.8 10.2 2.77 12 1.87 11.7 5.33 10.7 10 6.69 0.61 8.64 11.6 12.5 10.3 8.09 10.1 12 10.6 9.82 9.76 10.2 9.4 11.1 12.8 11.4 12.7 12.1 11.7 8.37 11 6.99 7.89 7.36 9.97 10.7 12.4 12.7 10.3 9.61 10.1 7.62 10.3 10.9 8.63 8.85 12.7 6.29 11.4 9.31 10.5 10.4 3.94 2.77 12.7 5.68 10.6 6.65 8.63 8.51 7.8 6.31 8.3 9.61 5.96 5.88 8.99 9 1.64 12.1 9.99 9.69 8.49 9.69 6.56 9.59 9.33 9.39 9.72 2.65 6.92 1.64 6.88 11.3 11.1 8.28 12.4 9.25 6.66 8.4 8.38 9.71 9.29 9.53 0 8.42 10.9 9.66 10.8 10.5 10.2 8.81 10.8 9.43 11.2 10.6 7.03 1.04 8.38 6.43 8.43 11.6 9.05 7.06 11.4 10.5 9.07 8.98 8.05 4.4 11.4 11.4 13.5 8.55 7.88 10.6 8.84 7.19 5.9 9.71 2.23 8.29 8.29 12.4 9.87 12.6 7.68 8.63 8.73 8.27 5.85 9.43 6.25 9.97 7.09 7.82 9.75 10.2 9.06 9.67 8.84 6.91 10.2 2.88 8.87 8.54 9.4 0.61 7.8 3.24 8.5 6.95 11.1 0.61 9.52 7.28 9.31 11.6 9.74 10.5 2.23 10.7 6.41 7.12 2.53 4.6 9.98 10.1 6.35 6.24 4.12 10.8 7.71 8.82 8.54 15.3 10.4 9.8 6.47 11 9.27 9.23 12 10.2 6.11 11.9 12 10.9 7.22 5.82 11.4 9.86 9.22 8.66 5.64 12.8 6.3 9.53 6.55 7.63 8.61 9.97 11.5 0.61 9.43 9.1 8.05 8.43 9.6 9.97 11.1 10.1 9.26 7.78 8.42 7.2 8.93 10.3 7.86 12.9 10.3 8.28 8.22 8.19 1.05 9.21 8.94 10.6 3.72 12.2 6.93 6.65 9.13 7.67 10.5 11.7 6.8 9.15 8.92 10.4 8.35 7.18 10.6 5.85 7.57 7.21 11 10.6 6.64 7.84 4.36 6.27 7.32 4.08 9.6 7.12 9.86 1.04 1.64 10 10.4 8.69 10.3 9.8 9.39 7.95 10.4 1.64 11.7 6.98 8.66 4.99 8.88 8.47 9.87 9.72 7.96 6.58 0.61 5.6 7.57 11.4 8.97 10.7 8.35 6.23 10 7.95 10.8 8.17 8.18 1.37 8.81 3.24 11.8 10 8.19 5.89 9.37 8.93 8.4 10.2 11.1 10.2 9.21 7.38 8.86 11.2 8.78 11.8 9.82 4.75 10.2 4.03 10.8 6.34 6.91 11 11.8 4.36 11.5 7.31 5.01 10.9 6.59 0.61 8.77 9.37 2.06 9.49 12.1 9.74 11.3 7.7 8.53 10.7 11.1 9.92 9.84 9.83 7.56 5.47 11 9.45 2.06 11.5 8.95 10.8 9.43 11.3 10.6 13 11.5 3.15 8.15 8.91 2.06 10.8 10.4 10.9 10.5 9.5 11.1 7 10.6 2.53 12.1 7.94 7.33 2.65 6.23 2.39 8.4 9.14 0 9.69 7.95 11 3.6 5.31 7.83 10.4 3.78 9.59 2.39 8.88 8.44 4.03 3.67 10.3 3.6 2.98 4.08 8.6 7.73 4.43 2.06 8.35 4.93 8.35 0 0 7.02 4.29 8.95 6.42 8.81 9.2 6.02 2.23 9.42 8.54 5.21 11.4 5.93 9.06 8.99 8.3 3.16 11.3 3.88 6.24 8.62 6.32 8.64 6.2 4.47 8.92 3.53 5.86 6.04 5.15 10.7 12.2 1.04 8.57 8.05 4.71 4.44 8.59 9.02 3.32 8.82 10.2 10.6 9 8.67 11.1 2.77 7.58 1.04 8.95 4.51 8.3 12.6 8.06 9.23 8.99 10.2 9.48 8.83 4.96 11.9 8.35 10.7 6.09 6.78 9.03 10.1 8.13 7.13 10.3 4.25 7.08 11.4 8.9 11.5 8.39 2.88 3.32 8.52 4.03 10.1 13 5.4 0.61 3.16 9.71 8.07 6.55 5.33 12 8.46 8.76 10.6 7.19 11 6.57 5.98 6.98 0 0 7.82 5.42 7.29 9.3 8.79 5.84 8.7 5.93 2.39 6.41 9.98 8.51 0.61 9.83 10 5.78 7.5 8.22 1.64 4.12 7.4 4.33 9.63 8.72 5.71 9.09 6.4 11.9 7.95 10.6 7.22 10.4 10.1 4.4 8.4 2.2 7.8 7.21 10.3 8.64 7.63 9.99 5.35 8.62 7.31 7.1 3.07 5.14 5.25 7.35 6.84 6.16 4.54 2.77 0 9.79 2.06 0 9.62 11.1 5.12 9.85 9.36 0 4.89 5.54 7.63 9.45 10.2 1.37 8.16 10.3 5.17 6.21 9.56 9.58 12.6 6.13 8.71 10.4 8.38 7.03 9.16 6.05 2.06 0 9.18 8.43 0.61 10.1 6.58 8.05 6.38 12.9 10.2 9.98 0.61 3.16 6.01 10.3 10 6.67 7.96 12.5 0.61 6.8 9.67 8.63 7.6 9.86 6.63 7.87 0 6.16 0 8.64 1.04 8.16 9.18 7.33 6.9 8.78 11.5 5.82 3.6 0.61 8.65 7.53 9.48 7.29 8.55 6.88 8.9 8.59 3.66 7.67 9.86 17.4 13.1 10.4 1.37 3.88 8.57 7.15 0.61 10.6 11.2 8.14 7.67 10.4 4.78 6.7 9.88 11.2 12.6 7.53 9.87 7.54 3.4 8.24 7.04 10.1 4.99 5.03 9.12 7.97 8.87 10 2.39 12.9 11.5 3.6 2.23 7.4 12.4 10.7 10.5 9.48 2.06 7.25 13.5 2.23 8.38 8.3 3.24 7.9 8.85 9.84 5.99 7.44 10.4 0 0 1.04 7.59 5.23 5.8 3.07 5.42 5.8 9.45 8.66 6.7 7.97 9.1 7.01 5.91 8.46 8.76 8.56 2.23 8.61 9.68 5.54 8.76 6.52 8.95 7.57 4.75 12.7 6.87 8.96 3.72 7.54 5.95 7.57 7.97 4.78 7.32 6.28 7.02 3.72 6.52 8.72 4.57 4.51 8.72 5.95 4.03 8.33 9.18 3.83 8.59 2.52 9.67 1.87 7.44 8.7 7.2 1.37 3.32 8.03 9.36 3.72 1.04 8.31 9.87 4.03 2.53 8.11 9.37 8.23 11.5 8.98 6.37 9.15 8.89 8.11 12.2 10.8 3.66 0.61 8.51 9.5 6.77 6 2.06 7.05 9.57 8.7 4.84 3.07 0.61 5.23 0 6.11 9.84 8 10.7 7.53 8.01 7.42 8.93 9.46 10.1 5.12 7.74 8.52 5.39 7.37 13.2 8.31 10.1 1.05 8.06 2.53 8.3 6.39 1.64 6.61 2.39 6.84 11 1.64 9.61 9.34 3.24 8.64 5.29 7.42 4.6 6.78 6.09 8.71 9.12 5.19 9.32 2.77 0.61 8.86 4.08 2.23 1.64 6.69 6.18 5.8 9.52 9.56 9.97 2.39 10.1 9.6 7.04 10.7 6.04 7.14 9.71 6.95 8.41 6.13 0 8.98 2.98 12.6 8.36 2.06 12.4 7.41 3.72 6.82 10.8 9.01 11 8.38 8.11 9.32 2.39 2.65 8.56 0.61 2.39 0.61 9.65 1.87 6.29 3.4 2.23 7.72 8.68 3.4 8.82 2.53 2.39 10.8 8.99 4.72 6.69 7.4 2.93 5.06 9.44 4.69 7.47 0 9.75 16.1 7.07 8.31 8.22 15.1 11.1 3.53 0.61 8.94 8.76 8.7 10.7 1.64 7.58 9.19 15.1 5.12 4.96 13.2 0 9.19 1.37 8.61 11.7 9.02 9.93 0 9.32 8.37 8.32 8.88 13.7 9.44 7.29 5.88 1.64 10.2 5.15 10.3 3.94 9.87 7.5 3.4 2.39 5.21 4.69 11.9 8.89 12.3 9.3 9.67 11.7 6.87 6.08 12.3 9.12 13.3 10.4 6.1 13.1 9.09 7.22 6.88 7.46 12 2.98 7.5 8.93 11.7 7.17 9.75 8.8 9.07 6.61 8.35 8.72 0 7.33 8.08 6.3 2.65 2.06 9.61 8.01 11.2 10.3 4.78 6.91 3.78 6.39 11 8.83 5.89 8.2 3.47 5.4 10.2 8.58 1.04 9.28 0 0 9.26 10.7 5.78 10.2 11.7 4.47 4.66 9.02 0 8.03 6.7 9.01 6.57 8.47 5.71 7.11 0.61 7.82 6.96 1.04 11.3 8.48 2.06 10.7 13.2 8.74 3.07 7.64 11.8 1.37 10.2 11.6 10.6 12.9 9.46 7.96 1.04 9.09 8 0 9.58 2.53 0.61 7.58 9.69 6.94 8.07 6.82 9.18 0 1.29 7.23 10.9 7.14 7.04 2.39 7.58 2.67 7.53 8.52 4.63 12.4 7.8 8.21 8.95 7.69 10.8 1.04 7.45 3.16 9.52 7.89 2.53 5.64 7.29 0.61 11.3 2.39 6.86 10.8 9.02 10.6 10.3 2.53 4.54 7.92 11.5 11.1 10.4 7.97 9.12 11.3 7.79 7.64 6.3 6.82 7.17 6 9.21 6.8 8.59 10.1 9.02 5.25 8.6 10.4 5.94 6.11 10.1 5.85 9.97 8.44 5.96 11.8 11.2 10.8 9.98 2.91 6.47 7.31 9.05 6.7 8.87 5.94 9.55 1.64 9.35 2.61 3.4 4.86 2.77 3.94 7.38 2.39 12.5 6.58 1.87 12.3 7.99 2.06 13.5 12 12.9 8.52 9.07 4.26 6.32 8.12 7.91 4.94 4.17 6.78 9.56 9.54 9.21 8.95 7.82 8.77 6.16 5.7 7.16 9.56 1.37 5.68 10.4 4.69 2.39 12.2 0.61 0.61 5.77 5.12 7.01 12.6 6.05 2.06 7.03 9.15 7.05 5.31 4.72 9.73 8.73 7.2 5.27 11.1 8.1 0 11.1 11.1 8.71 6.57 8.79 6.47 4.03 7.16 6.06 7.95 7.84 10.5 12.4 8.02 0 1.04 9.8 10.5 6.63 10.3 11.3 5.03 6.94 3.72 8.73 8.38 9.14 6.52 9.71 10.6 8.14 4.86 4.99 12.3 3.88 2.65 10.7 10.7 7.28 1.04 7.24 8.69 2.65 0.61 9.94 3.82 2.45 3.88 9.38 7.28 7.26 6.35 5.33 8.53 5.37 7.69 10.9 9.78 9.54 8.81 0 9.47 9.91 2.88 9.4 9.88 5.17 6.04 6.67 7.42 4.66 5.47 10.1 4.54 10.5 0 9.79 3.47 8.25 11.8 2.65 2.23 11.6 9.48 5.33 2.77 2.65 2.88 2.65 3.66 0.61 6.43 9.69 0.61 8.78 12.5 10.2 11.5 8.4 10.7 10.1 7.96 5.99 10.1 10.6 6.9 9.59 8.46 10.5 3.88 2.39 7.58 5.29 4.4 7.62 7.78 6.7 8.27 9.23 9.04 5.9 0 3.32 8.53 8.04 9.34 9.41 6.9 6.64 10.6 1.87 5.77 7.1 7.93 1.64 6.61 11.9 8.53 7.64 8.24 7.87 7.31 0 4.57 3.98 10.4 10.2 1.04 3.32 6.92 2.06 9.51 4.4 8.66 7.84 11.1 8.61 8.71 12.2 2.06 3.24 6.02 12.2 1.37 7.23 11.2 6.33 1.37 8.93 6.42 10.3 1.04 5.91 7.78 8.07 8.56 9.79 7.23 8.07 4.47 5.2 1.87 6.43 8.67 3.88 9.09 0.61 1.64 11.4 8.18 6.18 8.11 0.61 2.88 8.68 11.2 3.24 0.61 11.7 1.87 6.98 0 9.51 1.64 9.41 7.54 5.75 9.03 1.87 13.7 7.7 7.91 4.17 10.9 3.24 7.49 2.88 11.1 8.3 6.43 0.61 7.77 0 4.21 4.08 1.04 0 8.82 2.39 0.61 5.38 1.37 10.2 1.04 8.81 2.23 5.56 9.29 4.12 8.53 4.21 7.05 9.43 5.46 12.9 1.37 8.49 4.94 8.78 9.85 7.16 9.54 1.37 0 12.4 2.39 3.24 7.22 6.98 6.15 12.1 4.4 6.98 8.07 2.77 6.37 2.39 7.41 6.93 7.62 4.91 8.81 4.12 9.2 1.37 11.5 7.97 5.27 8.92 7.62 7.5 3.88 0 9.47 6.64 10.1 6.41 5.75 8.34 5.98 6.05 7.95 6.92 8.29 9.7 3.47 6.61 8.14 6.74 8.02 5.75 2.98 6.66 8.78 6.15 8.67 4.25 5.42 6.05 6.74 5.51 0.61 6.49 8.52 2.65 8.62 6.09 8.57 6.15 7.39 9.69 8.52 9.4 8.96 4.47 2.06 11.7 0.61 1.04 3.53 9.41 10.7 7.05 4.86 10 6.1 8.57 8.78 3.88 12.9 9.52 0 9.43 5.94 6.73 0 9.46 1.04 4.89 5.57 9.81 9.46 9.59 8.51 2.23 8.67 8.31 5.78 3.4 13.5 12.4 2.53 8.52 4.94 6.06 13.8 10.5 9.77 0.61 7.74 12.6 0.61 5.59 11.9 0 0 2.06 4.51 3.24 3.98 8.19 4.69 1.04 7.3 8.7 6.73 6.51 8.18 1.95 6.68 4.99 8.16 9.14 5.74 7.2 3.72 9.55 4.91 8.86 1.37 6.24 2.06 9.08 8.26 11.2 4.99 8.64 6.85 4.51 3.66 8.64 4.91 18 7.85 15.1 8.03 2.98 12.2 5.23 10 9.42 6.45 5.84 2.06 3.66 8.24 8.04 9.3 12.7 5.15 2.65 5.56 2.88 3.32 3.16 9.77 5.23 4.4 8.9 7.11 10.4 0 6.33 1.87 3.94 3.32 4.27 8.07 2.39 7.74 6.01 9.02 10.6 3.32 2.98 5.56 0.61 5.57 3.07 12.4 3.4 10.1 9.4 7.51 8.43 5.25 12.6 7.9 10.1 9.43 0.61 4.36 5.8 6.91 0 10.4 8.23 7.95 7.6 12 4.51 7.61 9.33 10.9 6.54 7.62 4.51 1.37 7.49 8.45 10.5 7.84 4.81 7.85 1.87 8.14 3.66 6.86 3.6 1.87 7.98 8.07 1.87 5.03 7.99 7.38 2.23 8.42 10.4 7.02 8.99 8.77 10.6 6.89 8.14 9.91 8.07 4.25 11.8 10.8 9 7.67 10.3 6.99 2.53 3.07 4.81 10.5 6.16 6.75 4.89 7.88 0.61 11.3 6.54 10.8 7.74 6.67 2.39 4.6 9.21 0 6.64 1.87 3.37 6.66 11.3 4.33 7.33 7.98 2.94 1.04 8.18 9.79 3.83 9.64 9.98 0 5.67 8.08 0 8.19 6.01 7.67 8.92 10.2 1.37 3.16 5.54 8.74 5.31 8.05 9.76 2.77 3.07 11.1 5.12 4.33 9.15 5.44 0 10.2 2.65 4.6 8.38 8.93 7.56 5.03 6.36 3.53 11.3 5.12 9.31 9.86 8.17 2.98 0.61 10.1 5.15 3.78 2.72 3.98 9.04 4.69 9.93 0.61 2.06 3.66 5.98 5.01 4.96 8.04 4.81 2.98 8.78 5.35 6.92 0.61 9.66 2.53 9.51 4.75 6.01 4.83 0 5.37 8.12 4.6 6.23 4.69 8.2 8.14 3.53 8.3 5.49 4.51 1.87 4.25 0.61 7.09 5.35 7.91 5.47 11.2 7.56 9.45 4.57 11.1 5.37 0 8.91 6.22 7.11 10.4 4.08 3.24 11.6 11.4 1.04 9.09 2.77 2.98 0.61 0 11.2 8.27 6.8 3.4 12.6 8.75 0.61 6.64 11.8 7.87 8.63 7.93 8.57 5.44 5.37 5.89 7.92 8.67 10.3 12.5 5.03 8.87 5.6 9.45 8.5 2.39 3.16 11.7 9.61 5.44 8 5.64 4.33 10.4 1.04 6.87 10.2 1.04 3.72 11 2.88 4.63 7.06 3.78 7.01 11.6 11 2.77 11.7 8 7.18 9.09 8.2 10.4 6.91 2.98 3.07 2.53 6.99 2.65 5.01 3.94 5.21 11.1 10.2 8.95 6.81 6.57 6.8 8.5 5.58 7.25 4.08 8.81 6.19 1.37 12.7 8.5 7.81 7.63 6.73 6.82 8.43 6.96 5.77 3.53 8.11 8 6.29 5.21 8.17 10.6 5.27 7.88 7.11 5.2 9.02 3.07 11.8 7.55 11 9.15 8.86 0.61 9.08 8.4 0.61 6.48 5.96 10 9.81 12 11.1 2.98 9.02 0 12.7 4.36 9.17 5.08 2.65 0 3.24 2.06 3.4 3.68 11.2 5.4 1.37 9.74 12.7 9.21 12.4 12.2 3.53 2.98 4.08 2.65 9.74 6.06 11 7.77 12.7 13.4 5.35 0.61 11.2 2.23 2.98 10 2.39 9.83 5.1 6.52 13.6 11.9 2.98 8.53 8.84 8.91 0 7.11 7.73 10.7 9.72 6.65 8.25 7.37 6.68 7.03 2.23 10.8 8.62 0 10.2 4.72 9.06 3.6 4.33 2.65 4.81 8.88 3.98 8.72 4.44 9.18 6.71 6.37 2.65 6.51 0.61 8.71 9.21 2.65 3.47 7.35 7.45 0.61 2.88 8.97 8.14 3.07 9.53 6.02 2.23 0.61 10.9 8.17 9.74 2.65 4.89 6.87 4.66 12.4 8.12 3.78 7.83 4.78 2.88 9.52 9.98 6.35 9.31 6.38 1.87 10.4 4.33 5.42 4.66 6.09 2.98 10.7 6.66 8.36 8.84 5.89 10.2 6.5 10.4 8.02 0 8.35 1.64 7.22 11.6 6.63 10.6 2.06 9.77 9.42 9.19 9.79 11.6 7.35 7.94 6.44 9.48 12 9.47 12.1 6.1 5.6 10.5 10.4 10.4 10 10.6 10.7 6.29 10.4 9.47 11.2 2.98 1.37 2.53 5.77 9.72 9.94 6.23 6.13 7.64 8.22 9.72 5.42 3.98 0 9.27 1.87 5.4 9.37 4.4 3.88 10.5 13 9.14 4.75 10.7 11.3 11.4 10.3 7.24 8.34 6.3 10.9 8.49 10.5 8.93 8.57 9.48 10.9 1.87 9.4 8.28 12.7 9.63 10.2 12.4 2.53 10 2.65 0 9.52 10.5 5.94 2.39 12.4 9.69 9.34 12.1 11.2 12.3 14.5 10.1 10.7 8.99 10.9 7.26 8.29 7.44 14.2 7.29 11 9.34 12.7 13.5 8.79 2.23 9.25 0.61 9.6 11.4 9.85 11 10.4 9.19 7.67 10 6.07 9.26 10 7.2 7.85 9.3 7.34 8.65 13.6 3.16 9.69 11.6 11.1 12.6 8.11 7.69 8.86 10.5 7.06 8.42 7.4 9.21 11.5 10.1 9.1 11.3 16.8 1.87 1.87 8.3 9.85 6.43 7.99 8.6 11.6 13.3 14.1 16.2 10.7 11.1 6.94 8.71 6.27 9.76 9.81 5.51 6.61 6.72 11.7 8.25 10.5 11.5 9.57 13.1 6.83 5.67 8.84 10.8 8.42 3.72 5.74 8.4 2.53 7.94 6.59 5.73 9.02 3.6 7.2 10.7 9.47 9.75 9.44 9.7 8.48 10.3 4.83 8.35 11 9.32 1.87 9.74 11 8.26 4.46 12.1 4.4 7.65 11.1 4.25 3.07 6.05 1.11 9.54 2.98 4.72 7.58 9.83 7.69 12.8 7.31 9 9.51 3.83 5.74 10.4 13.3 7.99 13.2 8.85 7.69 11.5 13 14.1 10.8 12.5 2.06 9.12 7.34 11.1 6.01 6.32 10.8 0 2.98 9.13 8.35 1.64 10.9 7.14 5.29 5.54 6.67 7.12 7.31 8.22 0.61 9.11 2.77 7.82 8.12 12.1 7.95 1.87 10.1 13.2 11.1 8.75 0.61 3.16 10.4 9.61 7.13 11 11.1 1.04 2.65 6.99 2.06 11.5 10.9 6.08 9.72 7.21 1.37 8.13 6.43 7.52 2.39 9.48 0.61 0.61 0.61 9.09 6.82 4.29 5.38 9.5 10 8.21 7.57 10.8 6.45 3.57 3.83 7.13 10.3 8.97 7.06 7.66 8.03 3.16 8.18 9.95 7.64 10.5 10.5 7.21 8.16 4.25 9.8 5.81 10.2 4.33 12.8 8.47 7.09 7.77 7.8 9.99 5.57 9.18 8.23 3.4 11.1 2.98 10.4 1.37 9.63 3.66 11.2 7.9 6.84 10.1 0 0.61 9.19 8.61 5.77 0.61 13.1 7.36 1.37 3.72 6.68 2.23 10.5 9.36 8.92 7.12 10 8.65 4.6 5.93 7.33 7.26 4.75 11.9 7.32 3.4 14 5.31 10.1 1.64 0 2.06 10.8 7.22 7.37 8.05 12.4 8.51 11.7 10.7 7.18 8.26 13.4 9.08 2.06 2.23 3.32 6.84 8.72 5.42 7.39 8.49 8.26 10.5 11.2 5.93 12.4 7.31 9.69 6.97 7.13 9.64 10.7 10 5.37 10.2 11.1 11.8 8.27 7.39 0.61 11.5 6.55 9.52 0 10.7 10.4 7.44 7.21 8.93 8.13 11.8 7.88 9.39 8.12 8.19 8.96 9.14 9.16 0 9.52 9.17 12.2 11.4 10.8 10.3 1.04 7.74 12.7 1.04 2.23 10.8 10.3 8.95 5.75 12.1 4.17 8.24 9.69 7.59 10 8.72 10.6 8.24 10.4 12.1 6.42 11 10.6 8.92 10.9 10.1 3.72 9.55 0.61 11.2 9.94 10.1 10.1 7.72 11.2 10.9 10.5 1.87 7.33 8.45 10.8 0 9.85 9.35 9.83 7.5 8.46 11.5 9.19 12 9.69 10.5 3.66 7.81 9.66 1.04 5.98 11.7 6.61 10.2 7.43 3.53 9.77 8.61 8.52 6.72 9.34 7.74 1.64 8.13 1.64 10.3 5.33 7.88 8.98 4.66 0 11.6 7.47 4.29 6.9 6.4 7.28 7.51 3.16 10.5 11 10.5 9.73 10.8 10.4 2.23 8.21 7.75 8.72 10.8 8.79 7.88 10.1 7.71 5.13 6.27 10.6 8.89 10.7 0 4.54 7.75 7.34 4.25 9.29 2.06 10.8 12.7 5.59 7.72 8.54 8 11 5.71 5.8 5.84 7.03 7.22 7.52 10.5 8.14 8.81 7.86 1.04 9.04 9.95 8.87 9 11.2 4.29 9.59 3.94 5.17 7.95 7.34 7.12 1.64 5.01 4.29 4.47 4.29 8.56 1.37 10 10.7 9.11 3.94 2.53 3.07 1.04 4.72 7.67 4.54 2.06 9.18 5.98 1.64 0.61 7.44 8.34 7.51 10.2 5.5 7.89 5.35 12.1 4.54 9.6 7.24 5.91 9.25 10.2 2.77 7.78 6.84 7.61 2.53 11.9 7.84 6.78 4.63 10 8.1 10.2 3.53 10.2 6.73 9.83 7.34 7.26 6.52 7.09 10.7 9.47 3.6 3.16 1.37 3.4 4.81 8.32 2.53 6.85 7.43 5.06 11.3 2.23 9.75 10 3.72 7.14 6.38 8.1 4.87 9.86 5.96 4.29 10.9 7.63 1.37 9.61 7.98 7.31 7.98 5.46 8.48 3.07 8.73 10 8.22 2.39 9.97 6.7 9.53 8.7 9.19 5.51 4.63 10.9 8.18 8.75 11 5.08 8.46 10.2 5.59 8.94 6.21 3.07 8.93 7.22 3.61 9.86 11.2 8.78 4.08 0 3.72 6 1.64 8.73 9.98 0 8.89 3.66 2.39 3.53 4.47 7.16 2.06 4.91 12.5 8.72 9.99 2.65 8.32 8.67 8.08 8.58 12.1 6.81 9.37 7.07 8 2.06 1.04 6.8 1.37 6.22 6.88 4.4 6.24 14.4 10.9 4.99 1.37 8.4 3.47 8.61 10.4 5.94 8.95 8.08 8.57 11.1 11.1 9.76 6.25 12.1 8.87 8.36 0 10.9 4.96 9.41 10.7 9.91 5.31 11.7 4.33 12.5 9.61 11.8 8.66 7.26 10.8 11.4 10 0 7.34 9.32 7.3 11.8 10.8 9.75 11.8 8.74 1.4 2.23 8.34 9.28 8.93 10.4 7.42 9.03 7.02 8.16 1.64 9.95 8.47 10.6 10.3 10.3 11.2 8.95 10.6 4.03 9.42 7.16 9.77 11.4 3.72 12.2 6.28 8.88 9.51 9.64 10.2 10.2 9.39 10.7 9.71 8.66 10.9 12.6 9.04 6.98 10 8.53 10.7 11.1 9.57 5.47 11.6 9.9 0.61 9.47 9.18 8.38 5.93 8.88 6.86 10.2 9.46 11 10.3 11.1 11.1 9.91 8.27 7.78 12 3.66 5.35 10.5 0.61 11.2 11.7 10.4 8.55 8.39 6.24 10.7 8.55 10.2 9.99 10.3 11.2 6.09 10.6 8.57 9.51 10.9 10.6 6.6 7.41 11.6 9.23 9.52 0 7.66 9.79 8.07 3.16 4.03 8.5 7.41 2.77 11.2 9.11 2.98 11.8 8.74 7.61 2.39 9.63 11.6 1.04 1.04 0 10.2 11.4 10.6 8.31 4.99 9.01 5.31 10.7 10.4 4.94 10.1 8.04 9.3 5.59 8.87 0 10.2 9.21 11.2 10.4 11.5 9.03 11.7 0.61 12.1 12.8 9.45 7.59 3.24 0 10.3 10 10.1 9.26 9.87 9.69 10.8 8.42 9.54 7.69 11.5 11 9.72 11.7 9.5 6.09 9.51 10 10.7 7.37 9.77 11.5 10.8 10.4 12.1 8.94 4.6 10.1 11.9 11.4 10.3 10.4 10 7.77 10.2 9.53 10.2 1.04 8.86 11.1 9.56 10.4 9.24 10.1 8.23 9.55 10.1 10.5 7.26 8.95 9.39 10.3 6.38 10.4 8.4 9.15 10.6 10.5 8.95 9.19 8.98 8.47 9.57 9.06 3.94 10.2 2.77 10.4 9.29 2.65 10.5 9.86 9.94 5.56 8.47 9.42 10.8 7.01 5.89 8.17 9.46 10.8 11.7 8.37 12 8.25 10.6 10.2 6.78 9.82 10.5 7.86 9.25 8.12 10.2 12.5 10.1 11 9.07 8.66 9.51 3.16 7.57 6.63 0.61 10 10.2 11.3 10.4 9.51 8.47 9.48 14.9 9.05 10 10.2 10.1 12.2 9.52 9.6 11.7 10.4 9.05 12.8 9 10.7 8.78 9.5 10.6 8.9 10.7 8.59 11.8 8.58 6.96 11.4 9.49 11.2 10.5 9.48 11 11.5 11.4 11.7 11.6 9.8 13.1 7.76 9.33 11.6 9.95 10.6 11.4 10.2 7.75 9.6 12.1 1.87 11 8.56 1.64 10.9 8.64 10 8.6 12.1 10.6 12.1 11 1.37 10.1 10.4 2.88 12.9 11.5 9.69 12 9.52 6.04 8.49 6.11 8.38 10.7 7.94 6.96 8.75 9.27 5.84 9.65 8.71 8.81 9.35 10.8 9.3 10.2 11.2 4.99 7.37 9.68 11.7 12.7 5.31 8.35 9.64 8.82 4.36 10.1 10.2 9.63 1.04 9.11 9.6 9.17 11.3 11.7 9.23 9.33 9.13 3.24 9.75 10.9 10.6 10.6 9.4 9.29 10.1 9.5 4.47 5.84 9.22 1.87 6.81 11.3 8.03 9.34 7.09 10.2 10.3 9.5 11.9 9.44 6.04 10.5 11.1 6.43 10.7 9.28 1.37 8.3 9.49 7.74 10.3 10.9 9.05 9.84 9.71 7.05 9.36 0.61 10.2 9.74 10.9 11 7.08 11.4 9.79 12.2 10.4 10.3 9.79 10.5 10 10.1 9.42 6.94 10.8 10.9 5.51 8.87 12.1 9.07 9.61 12.5 2.06 20.5 10.7 10.4 11.6 11 8.96 9.06 8.73 10.1 3.72 10.4 9.77 12.2 11.8 12.4 6.61 12.4 10.6 11.7 10.3 11.4 10.2 10 8.53 9.63 9.72 12 10.2 10.2 10.2 12.4 10.9 10.3 10.1 10.2 9.2 10.4 10.8 8.48 11.1 6 8.57 11.3 9.89 7.47 8.82 7.49 9.82 11.5 8.21 3.32 9.41 9.1 8.65 9.7 6.25 1.87 5.67 7.58 4.72 8.72 11.8 7.52 11.4 8.03 5.57 10.9 10.2 0 8.37 7.4 11.1 11.6 9.26 8.57 11.7 11.9 12.6 9.18 8.69 7.91 7.17 5.77 8.08 8.22 11.2 8.97 9.82 10.5 11.8 10.9 11.9 9.53 10.8 6.94 10.6 11.4 11.9 10.8 9.51 10.4 8.09 10.2 7.05 11 9.26 1.64 6.25 13 7.36 7.79 9.55 2.06 10.4 9.38 8.93 9.72 10.3 9.74 10.1 9.99 11.3 9.94 9.48 11.4 10.2 8.74 2.98 0 14.1 9.81 10.9 13.6 9.93 10.4 7.45 8.37 14.1 10.4 7.96 1.04 7.95 9.59 7.83 3.16 12.2 9.24 4.6 10.8 2.65 9.37 2.65 2.88 8.77 9.78 11.6 10.4 9 7.1 8.21 9.27 8.37 10 12.5 11.1 10.2 9.53 1.64 2.78 11.7 3.4 7.89 10.1 2.06 8.79 11.5 7.66 11.1 10.6 8.67 8.76 11.1 8.19 8.88 10.6 9.81 8.72 5.15 8.97 9.04 5.08 8.88 10.3 9.6 10.8 8.61 8.51 11.1 12.3 10.4 10.9 8.75 11.4 9.42 3.98 8.5 10.5 9.45 10.2 3.88 0 4.12 4.03 11.1 8.9 10.5 9.92 5.6 9.62 11.4 8.25 5.9 10.3 10.9 13.4 9.93 8.14 7.95 7.16 13.8 6.38 8.76 9.03 7.79 9.93 11.6 9.41 11.1 8.26 10.2 8.68 12.1 7.93 10.5 8.75 11.2 12 3.16 9.04 10.6 9.84 9.63 7.81 9.65 7.82 2.06 9.05 6.23 2.39 12.8 9.85 8.28 9.22 10.5 12.8 10.5 7.01 2.23 6.7 13.1 10.3 6.06 9.67 10.6 9.69 8.85 8.06 9.57 8.41 6.6 7.51 11.8 9.56 0 4.12 6.64 2.61 7.61 4.57 5.85 0 10.1 2.23 2.65 0.61 5.95 7.83 5.81 6.58 8.07 9.53 6.28 0.61 12.6 10.2 9.01 7.79 8.74 2.88 4.21 16.5 9.78 11.1 0 15.4 12.2 10.6 12.2 6.79 6.11 6.52 7.12 0 3.16 12.1 5.29 4.47 8.93 7.09 4.6 8.69 0.61 4.33 8 10.3 9.41 7.85 3.3 6.97 9.27 7.6 10.8 4.96 11.2 5.46 7.78 8.75 5.42 6.51 11 6.52 2.88 10.7 5.19 6.98 9.91 8.41 8.05 0 10.6 10.3 8.47 8.33 7.95 4.99 4.78 8.79 4.51 6.91 10.8 1.04 1.04 8.71 1.04 5.77 9 8.6 6.06 6.66 2.98 0 8.1 8.56 5.8 8.81 12.1 8.73 7.23 8.14 12.7 0 3.88 11.4 6.52 8.95 7.28 8.51 8.56 5.96 6.17 6.22 6.19 0.61 5.44 9.29 9.37 5.91 5.52 2.06 8.04 0.61 8.2 5.51 5.74 6.34 4.57 10.5 0 7.28 3.98 4.69 13.4 6.97 7.64 4.86 6.61 8.4 7.17 9.61 7.54 11.5 1.64 1.64 7.92 9.52 7.15 8.6 4.21 5.5 5.29 8.65 10.3 2.39 6.68 8.37 8.36 0.61 7.91 7.64 0 6.17 3.07 2.06 0.61 2.88 7.65 0 6.68 4.69 1.37 4.29 9.21 4.12 5.67 3.07 3.78 9.32 5.06 8.4 1.37 4.47 4.75 1.04 7.68 5.9 1.64 0.61 3.16 10.4 9.08 2.53 6.75 4.91 9.12 9.17 9.19 9.07 1.04 8.83 11.5 9.96 8.03 10.7 5.27 3.83 5.19 3.4 10.6 10.6 11.8 7.63 10.2 11.1 11 7.63 11.4 10.9 9.41 9.8 8.83 2.98 10.6 4.89 8.38 7.61 9.24 2.23 9.53 11 8.33 6.34 6.1 11 10.5 8.65 9.85 0.61 12.7 9.44 7.74 10.4 11.4 4.9 1.37 11.4 9.39 7.95 10.7 5.33 10.7 8.26 12 9.46 9.33 9.42 11.3 8.74 9.87 12.6 8.56 5.93 8.91 9.22 9.81 5.99 9.5 0.61 7.22 3.32 9.82 11.1 11.9 9.71 12.6 10.4 10 5.12 13 9.34 8.98 7.58 8.5 6.5 6.84 10.9 9.69 9.17 9.81 7.91 8.99 9.84 8.9 5.95 12 7.36 9.69 9.42 9.54 8.91 8.99 5.33 10.8 10.9 8.2 12.7 9.08 6.47 10.8 9.67 11.2 2.06 9.02 10.1 11.8 1.04 6.45 8.02 10.6 4.75 3.16 6.43 9.18 6.86 6.55 0 9.78 3.83 8.73 1.04 1.37 4.29 9.43 11.2 9.8 11.3 8.2 9.23 8.23 9.13 9.25 9.81 10.3 10.7 9.84 7.39 10.9 9.98 10.7 9.32 7.72 10.5 6.53 11 11.8 9.71 4.71 9.87 11.7 8.2 15.4 10.6 9.44 6.83 6.86 11.5 9.33 10.7 8.97 9.7 7.94 8.4 0 9.35 8.11 10 8.98 10.8 9.31 10.2 7.86 7.86 10.6 11.1 5.91 11.5 9.42 9.77 9.36 11.7 8.22 8.41 6.94 9.02 9.91 8.97 9.32 12.4 12.1 8.56 4.81 6.71 5.72 8.9 10.3 9.82 4.86 2.06 5.44 8.69 9.27 10.4 2.65 8.53 7.57 9.76 7.88 2.39 9.16 4.91 8.07 7.91 1.87 7.8 6.51 9.71 10.6 9.87 10.8 10.7 10.2 8.44 7.61 11 11.6 9.83 11 1.04 8.68 7.96 10.8 11.5 9.62 11.7 9.25 8.06 0.61 11.2 7.92 11.7 10.6 4.83 8.19 9.82 11.2 9.87 10.2 9.2 9.98 8.92 9.89 9.59 11.2 12.3 11.1 3.88 10.2 9.72 9.23 8.32 3.83 9.87 2.88 8.89 8.5 6.75 4.29 10.7 11.3 6.39 9.13 8.56 4.25 10.1 11.2 10 5.74 11.6 9.24 8.03 9.69 7.67 9.81 6.36 10.6 3.83 9.63 5.95 8.65 13.1 1.64 9.68 5.08 9.83 9.63 8.86 1.64 9.71 0.61 5.93 7.54 9.35 7.92 11.1 8.26 6.17 8.05 7.83 8.36 0 5.15 3.98 3.07 10.8 8.63 8.76 2.06 9.58 8.79 0.61 8.56 9.33 8.65 8.58 8.09 6.01 8.28 9.34 9.5 8.23 10.3 7.76 1.64 7.14 9.68 10.4 2.06 11.5 0 9.3 9.04 9.65 7.25 10.5 9.03 9.82 2.07 10.4 7.04 10 9.7 8.65 1.87 7.15 8.52 4.78 10.1 10.3 11.4 10.2 10 10.2 3.98 9.63 9.41 9.22 11.9 9.41 9.1 1.04 9.58 12.4 7.17 7.05 9.64 9.51 9.65 8.96 8.43 8.44 9.46 9.34 10.9 5.1 2.98 1.69 10.2 0.61 1.9 6.9 9.25 1.37 11.1 8.37 8.64 8.78 2.06 9.7 2.06 6.84 4.03 11.4 12.1 9.05 4.08 4.63 2.33 7.74 8.56 7.7 11.7 3.94 7.54 7.24 0 8.46 3.88 11.9 4.29 7.29 5.98 8.8 10.9 1.04 0 8.96 8.86 10.4 0.61 7.04 0 12.9 9.58 10.2 4.44 7.75 0.61 5.37 9.73 9.22 10.7 2.53 8.44 10.9 7.98 5.57 7.93 9.85 13.9 9.77 11.5 8.28 8.06 10.8 10.2 0.61 3.07 8.98 0 9.55 10.1 7.22 10.7 10.8 8.84 11.2 8.65 8.82 10.8 3.24 10 1.04 5.37 9.73 6.32 9.69 10.6 12.1 7.46 2.06 3.94 9.4 10.3 11.6 8.73 7.14 10.3 8.34 10.9 5.23 8.49 7.03 4.21 9.97 9.24 10.4 2.88 8.24 5.46 5.25 10.8 9.68 3.47 1.37 9.97 7.01 10.2 11.6 10.6 9.1 7.12 7.96 7.69 7.5 6.07 9.16 6.99 12.5 11.7 1.37 7.18 6.47 4.36 7.05 12.4 3.83 10.1 8.03 8.42 6.28 0 5.44 9.07 8.96 7.59 8.92 10.7 3.4 9.05 0 7.67 8.92 7.44 10.2 7.7 12 8.37 6.18 0.61 11.1 8.07 3.72 3.07 1.37 2.77 4.83 8.09 11.3 5.8 7.78 12.1 3.16 3.07 8.06 9.99 9.5 9.11 5.03 3.07 8.91 10.6 11.5 9.62 10.8 9.73 8.93 10.7 10.1 12.1 9.26 8.3 2.88 9.01 9.33 1.64 3.66 7.39 4.47 8.28 9.56 8.14 8.64 9.78 6.22 9.59 3.6 3.66 9.21 8.57 9.22 6.84 7.73 6.39 9.12 1.04 5.99 9.09 11.6 4.25 9.84 8.8 10.8 9.69 3.47 11.7 10.8 7.5 11.3 12.2 8.85 9.4 10.3 9.17 7.44 7.15 6.26 9.14 8.2 8.2 2.88 8.42 7.64 10 5.23 7.57 7.02 10.3 9.19 8.86 6.9 11.4 7.26 8.9 11.4 4.57 12.6 8.38 2.39 7.57 8.92 11.3 8.01 8.64 13.9 7.59 10.3 8.36 10.1 6.07 9.28 10 8.53 8.79 13.1 10.4 4.25 10.3 10.4 16.1 1.04 8.48 13 12.3 4.86 0 4.6 10.9 7.85 2.77 9 8.82 5.57 11 4.72 2.06 12.2 7.44 8.35 7.84 10.7 11.2 11.5 11.9 9.97 10.9 10.3 2.53 10.3 2.24 2.06 10.1 6.73 10.2 12.5 4.63 7.38 5.35 7.69 9.91 5.6 5.1 0.61 3.72 4.21 5.68 8.64 2.65 8.22 6.15 1.04 6.8 2.77 6.43 9.44 4.47 6.71 6.81 3.16 6.84 4.89 2.53 8.05 10.6 7.81 15.1 11.1 3.4 6.61 5.64 9.66 5.29 9.55 8.94 8.65 8.49 8.11 2.23 5.89 7.39 5.85 6.56 6.26 5.33 2.98 9.63 4.6 7.18 7.49 9.99 2.39 8.6 9.88 2.88 4.57 5.21 1.64 3.98 1.04 9.86 8.47 5.78 4.86 9.52 5.91 8.84 6.26 0 2.39 0.61 8.74 3.16 5.35 0 8.67 0 6.26 2.39 2.88 10.3 11.7 7.46 5.7 2.43 6.88 1.87 6.11 3.24 8.05 0 0 4.35 10.5 8.01 7.04 1.64 5.8 9.23 4.96 9.5 5.44 5.99 4.17 3.4 3.32 7.02 8.07 0.61 4.08 8.16 8.64 9.55 4.89 0 9.09 8.6 0 4.99 7.89 5.47 6.29 7.11 8.44 2.23 9.89 6.25 2.39 0 0 7.66 6.73 0 1.87 3.78 9.86 5.35 1.87 8.21 12.8 9.8 7.74 4.17 8.11 3.72 5.91 0 4.6 10.3 2.39 2.23 8.28 5.35 8.96 5.1 8.5 1.04 5.02 6.3 8.1 7.78 7.63 5.03 8.69 6.35 5.38 4.91 0.61 3.72 12.6 2.88 7.79 7.67 6.19 7.61 1.64 5.4 6.4 2.88 4.33 4.03 2.06 1.87 8.69 6.98 6.39 7.72 9.34 1.64 3.16 0 8.92 1.04 3.07 1.04 8.73 7.84 8.3 5.46 6.2 0 8.88 6.49 7.99 2.98 2.53 4.08 4.21 2.77 3.24 0.61 2.39 7.25 0 6.88 1.04 2.88 2.88 7.24 0 6.38 2.65 10 8.54 3.47 3.16 2.88 4.37 0.61 7.44 9.37 7.86 7.66 9.66 4.33 8.15 2.77 3.88 7.48 6.49 5.08 6.78 9.04 8.4 0 6 9.21 8.88 4.12 7.27 7.69 1.87 8.54 4.29 6.46 10.5 9.05 8.94 9.16 6.07 4.25 0.61 1.87 10.1 0 7.97 6.9 7.8 5.22 6.65 8.44 9.33 3.83 8.45 1.04 10.8 1.87 0.61 5.15 5.74 7.43 5.99 9.77 1.37 8.14 8.91 5.21 5.37 9.34 6.76 6.64 8.06 0 5.14 1.04 9.59 4 2.77 6.99 2.23 3.16 6.02 1.04 3.88 5.8 5.64 3.53 6.05 3.16 9.9 4.03 3.07 4.57 5.25 8.31 7.61 2.23 11.3 7.01 8.36 5.51 2.77 6.06 7.6 3.07 7.67 9.31 9.97 2.06 2.39 7.79 1.37 2.77 10.5 8.05 7.49 8.36 3.78 6.65 8.56 7.92 8.07 0.61 2.77 4.43 7.91 8.2 3.53 6.86 6.01 7.33 8.34 2.39 6.19 9.18 12.2 11 9.98 6.29 12.5 0.61 14.8 12.6 9.68 8.42 11.7 10.1 10.6 1.37 7.88 9.57 9.4 9.49 9.94 8.03 9.72 11.2 13.6 8.35 9.93 10.8 8.74 8.51 1.64 10.4 0.61 9.49 7.44 11.2 10.1 10.9 9.83 9.12 8.56 9.09 7.57 8.81 9.57 8.8 10.1 11.3 7.97 8.41 7.26 9.09 8.28 11.8 8.65 5.75 11.7 10.4 0.61 9.15 10.3 1.37 9.57 4.83 10 8.24 9.35 11.3 6.02 8.09 7.25 9.54 9.96 13.1 8.07 9.15 10.9 9.68 7.2 9.78 10.2 8.27 8.82 10.3 7.13 10.3 10.3 10 9.02 6.84 11.2 7.73 8.92 8.21 8.18 7.56 9.42 10.1 8.97 9.01 10 9.53 11.2 10.1 9.81 7.05 9.13 2.23 8.05 8.58 10.5 2.06 9.11 9.88 9.81 10.2 0 2.23 8.54 7.52 11.1 3.72 7.52 7.93 5.85 4.08 3.4 8.31 11.5 10.8 6.58 13.5 2.88 10.8 13.5 10.6 10.6 14 11.4 9.86 10.3 8.68 0.61 7.65 8.71 9.55 3.53 13 11.3 4.94 8.53 9.9 7.88 9.14 9.01 7.15 9.71 11.2 8.76 8.8 4.94 7.62 9.18 12 12.5 10 9.12 0 11.6 10.7 8.97 9.57 9.9 1.87 10.7 7.95 4.12 8.38 8.98 0 7.69 9.84 8.22 10.4 3.32 9.87 3.4 4.86 7.92 8.33 9.92 1.87 10.9 8.96 8.26 1.87 7.96 7.61 8.55 8.12 2.39 3.53 10 12.1 9.59 1.87 8.86 10.5 9.43 7.78 10.8 9.99 10.9 5.34 11 2.23 9.74 7.11 11 6.62 4.51 9.21 9.74 1.04 8.64 3.83 10.4 8.44 8.15 8.56 8.39 9.48 11.2 8.75 6.31 11.6 9.71 9.5 13 8.44 7.43 4.29 7.65 7.93 0 10.5 9.3 7.67 1.04 3.4 8.59 9.15 7.17 7.75 9.33 5.75 11.2 8.69 13.2 9.78 2.39 11.4 1.87 9.02 6.44 10.2 9.18 8.74 4.44 10.8 10.4 7.41 11.2 10.9 7.88 8.42 9 9.07 1.64 7.12 3.07 10.3 7.5 4.17 10.1 9.07 13.1 8.32 1.07 10.9 3.98 10.5 9.72 11.5 2.23 4.4 9.22 3.53 3.47 1.87 12 9.66 11.4 2.39 3.16 0.61 14.1 5.21 0 9.6 10.8 7.89 14.1 12.3 13.6 9.76 9.78 6.3 11.9 11.5 9.9 2.06 10.4 9.22 6.71 8.53 5.42 12.6 9.29 8.42 0 0 0 2.77 8.5 2.98 11 9.59 9.95 10.8 11.5 11.6 10.5 2.06 12.9 13.7 10.8 5.59 8.95 11.5 11.7 12.4 7.76 12.9 6.96 5.31 4.17 10.4 7.16 7.93 4.21 4.12 9.79 4.78 8.89 8.08 4.44 9.99 5.06 4.63 10.5 7.19 11.9 9.64 8 11.7 11.6 11.7 6.78 13.5 10.7 10.7 11.9 9.07 10.6 10.2 11.7 12.4 9.71 12 9.07 9.2 14.9 15.5 14.5 11.2 11.8 12.4 10.2 6.15 13.2 13 2.39 11.8 9.25 12.2 10.7 14.7 13.2 10.7 8.81 5.98 5.57 13 10.8 7.73 11.3 5.82 5.85 3.24 9.12 9.42 7.51 8.78 12.4 10.9 8.49 11.6 12.8 10.2 9.4 9.78 10.9 3.47 5.56 9.11 9.69 12.3 8.7 1.04 8.21 8.84 9.22 9.18 4.4 7.97 0 8.03 1.04 9.72 0 9.25 12.3 6.01 13.4 11.3 13 11.7 11.8 11.8 11.4 11 13.3 0 12.3 13.4 0.61 2.39 1.64 8.18 5.9 3.32 3.4 1.37 0 1.64 0.61 3.4 1.04 4.17 0.61 5.27 5.74 4.99 4.63 4.51 3.94 2.65 0 0 9.26 3.66 3.32 10.4 5.88 8.99 8.34 9.93 3.4 4.96 11.5 1.64 9.54 11 0 5.25 4.29 8.54 0 4.03 8.97 10.9 8.82 8.8 11.5 5.27 3.72 11.1 10.9 11.6 11.6 10.5 10.1 4.86 6.13 5.84 0 11.9 10.9 8.15 7.25 10.5 11.4 11 12.5 10.6 5.95 7.24 11.2 13.8 10.9 8.82 6.62 14 12.1 12.7 7.14 5.58 13.6 11.3 14.4 12 5.23 9.74 11 10 13.2 6.47 4.89 15.8 11.4 8.25 6.41 3.72 1.64 3.6 6.27 1.04 3.16 7.96 11.9 5.15 10.5 10.3 2.88 5.86 3.94 0 0 8.45 12.7 1.04 5.6 2.39 8.81 7.49 6.52 8.47 3.32 0.61 6.86 4.6 7.52 9.39 8.83 2.06 5.54 8.29 7.82 4.33 0 0 5.77 4.66 9.05 10.7 1.04 7.74 7.55 3.07 8.29 8.24 8.91 6.07 10.7 9.56 7.04 8.58 5.91 7.03 2.65 2.06 4.99 7.61 1.04 2.88 8.33 6.96 3.24 1.37 7.23 7.37 3.72 6.36 4.81 3.66 6.29 8.21 6.18 0 11.8 9.07 1.37 6.73 11.9 8.24 2.88 3.07 5.82 4.12 11.4 5.91 4.78 1.87 5.86 9.49 11.6 11.2 0.61 3.4 4.29 4.66 2.23 9.13 2.06 0.61 6.88 2.65 6.81 2.88 9.95 7.72 4.69 0.62 1.87 7.63 6.2 9.93 7.59 3.94 7.06 4.29 4.89 6.47 4.81 7.32 6.9 8.38 9.96 4.47 0.62 1.04 9.44 1.37 10.7 10.5 9.63 10.2 9.49 10.3 0.61 5.95 6 9.26 12.6 2.39 7.6 9.65 1.04 7.49 4.17 0.61 6.49 11.8 11.3 3.66 9.19 5.91 4.4 4.6 0.61 6.84 2.06 9.7 1.87 8.71 0.61 5.08 8.15 6.37 8.16 8.8 5.46 4.51 3.83 1.37 3.53 8.24 9.06 9.16 7.05 3.32 1.37 5.71 6.5 6.05 1.64 6.44 2.23 1.87 3.98 3.24 2.88 10.7 6.73 8.59 3.53 4.6 8.92 9.11 0 2.53 11.3 4.4 11.3 2.98 4.36 0 9.81 2.65 2.06 6.05 9.56 3.6 0.61 6.24 3.07 6.22 0 3.66 3.4 9 0 11.2 3.72 2.39 10.5 12.1 2.53 2.06 7.7 0.61 10.4 8.47 8.6 7.24 11.8 10.7 6.53 7.42 6.23 9.47 8.78 3.24 8.12 12.8 9.16 0 10.8 5.57 5.01 3.98 8.89 11.8 2.53 6.67 14.3 1.37 6.75 13.1 7.04 0 12.7 6.56 5.49 9.51 12.5 5.68 11.5 8 9.38 0 4.4 3.07 5.25 7.32 8.99 8.53 14.2 9.33 8.81 5.19 7.62 6.53 10.4 6.25 7.69 8.1 0 6.52 8.55 5.68 2.77 3.24 5.19 6.12 3.66 7.47 5.31 0 0 9.64 11.3 9.44 4.63 8 11 9.91 10.7 7.26 1.64 7.99 8.41 7.7 11.1 0 8.77 7.48 6.38 10 5.72 6.2 10.8 1.37 4.12 12.1 2.23 1.37 2.06 9.1 9.12 4.25 8.44 1.04 1.37 4.63 2.06 11.6 1.17 8.22 12.5 9.1 7.68 8.42 10 7.77 4.75 0.61 7.2 5.1 7.35 10.6 12.5 12.5 7.39 11.2 8.99 7.19 9.42 11.8 8.62 4.89 8.11 8.35 2.98 8.9 10.4 3.47 5.6 9.24 3.07 10.2 9.07 8.67 8.46 11.2 9.19 2.77 2.39 11.2 1.64 12.4 7.97 9.74 9.65 10.7 8.96 9.99 9.38 8.59 9.23 10.9 6.79 8.63 10.8 8.63 7.85 8.18 3.24 12.6 8.93 10.6 2.88 14.7 7.62 11.1 8.03 7.84 9.77 1.64 7.32 8.22 9.89 13 9.65 13.3 11.8 10.7 11.7 10.9 11.2 11.2 10.8 9.96 8.86 3.53 3.72 2.39 13.2 6.61 5.25 11.4 9.83 11.6 4.21 10.5 9.2 10.2 13.4 11.8 9.5 12.3 7.6 8.06 12.1 8.36 13 13.2 12.5 13.1 8.69 10.4 10.9 9.46 11.2 0.61 3.72 6.43 7.62 4.36 2.65 0.72 9.9 7.19 9.8 4.29 6.78 10.2 7.29 0 6.66 0.61 1.64 6.31 1.04 7.23 5.38 8.45 9.4 8.33 8.57 7.26 1.87 10.4 6.86 9.07 4.25 7.77 0.61 4.17 11.1 4.5 3.53 5.62 6.47 7.3 6.91 2.77 7.8 0 6.94 8.66 14.1 6.89 6.52 6.08 11 1.64 7.68 7.39 2.98 4.94 0 6.98 8.84 8.68 4.96 3.07 4.99 1.37 1.37 7 7.69 7.8 5.94 9.73 7.59 1.37 5.49 0.61 3.24 3.16 0 8.15 1.87 7.93 1.64 1.64 1.37 8.65 5.63 8.82 0 8.59 13.8 5.28 5.49 10.1 6.67 9.28 8 2.23 10.1 0.61 4.89 6.38 8.37 6.84 0.61 8.77 12.7 4.03 7.75 12.2 12.4 9.78 9.15 6.55 5.12 7.34 12 1.04 1.04 5.42 10 10.9 0 8.4 1.04 7.59 7.53 0.61 5.65 12.5 9.82 8.21 3.6 9.81 1.04 5.82 8.53 7.33 4.25 11.9 10.1 4.69 10.7 0.61 1.87 0.61 11.2 1.04 0.61 6.81 3.47 2.53 11.9 3.98 4.33 2.65 1.04 3.24 3.07 10.5 8 7.1 10.7 10.8 11.5 9.88 9.65 9.05 10.1 6.2 11 11.4 9.63 1.37 0.61 14.1 8.24 5.62 9.28 6.85 1.04 13.8 6.5 4.63 11.7 0.61 5.12 8.49 4.54 9.44 0.67 8.68 2.88 1.37 4.66 8.58 2.23 4.36 13.5 7.65 9.49 8.1 1.04 5.42 3.16 5.06 8.13 8.62 2.65 5.74 5.49 4.4 2.23 9.06 0 4.29 5.29 2.88 4.29 8.1 2.69 9.11 9.78 0 8.4 9.64 3.83 1.04 12.9 2.77 10.3 6.47 5.95 8.44 4.47 2.98 7.89 6.52 6.29 4.99 3.88 4.66 6.61 6.88 7.8 5.88 8.22 9.58 6.54 1.04 12.5 0 6.49 7.71 7.92 7.52 7.29 5.64 7.21 2.88 0.61 7.65 7.88 5.08 0 6.64 2.39 9.43 2.39 10.1 8.35 4.12 6 5.65 8.44 8.99 0.61 8.2 0 6.16 8.12 4.6 8.38 7.44 8.52 1.37 9.29 12.5 8.72 2.06 7.57 1.04 4.69 4.36 6.66 4.21 8.76 1.64 4.33 4.47 0.61 4.91 6.26 7.61 4.6 1.04 11.7 7.74 5.83 9.87 2.39 3.07 1.04 4.6 8.2 7.57 1.37 6.43 2.23 9.01 0 4.69 0 1.1 6.9 1.64 4.21 0 8.77 9.48 4.78 4.21 0.61 2.39 9.1 1.87 3.72 2.77 5.85 0 7.16 6.44 8.13 6.94 8.31 10.1 10.5 4.86 13 1.64 12.2 0.61 12.3 3.83 8.75 13.9 13.5 13.3 4.03 0.61 12.2 12.4 11.9 1.04 4.25 5.06 10.4 5.9 12.5 4.78 0 9.66 9.6 6.6 5.88 11.9 12.4 8.66 0.61 13.3 11.2 11.9 10.1 8.5 0 7.76 10 7.63 12.3 2.98 12.9 13.3 12.7 2.23 9.86 9.82 12.2 0.61 9.06 9.58 9.29 1.04 8.86 8.65 11.5 10.9 10.3 7.79 10.5 6 3.83 7.39 8.85 10.7 2.65 4.41 8.92 8.16 9.91 9.61 10.2 9.21 4.6 1.16 9.8 1.37 7.39 6.96 5.94 12.3 2.65 8.13 6.33 10.8 0 5.89 10.4 10.8 11.5 14.4 8.26 5.25 7.88 8.46 2.23 0 4.96 9.85 6.67 9.91 7.62 8.16 0.61 6.9 8.27 2.21 7.04 6.28 0 7.64 2.39 0 7.49 8.42 4.29 8.57 4.91 3.53 8.93 2.98 12 10.2 0.61 1.37 8.97 4.96 3.66 0 7.42 5.77 7.35 2.77 4.25 0 5.17 0.61 6.48 0.61 1.64 4.69 11.5 1.64 7.37 3.47 6.24 3.32 5.1 2.77 1.64 4.72 3.71 9.74 3.88 7.23 8.26 0.61 9.22 3.53 2.65 7.05 4.63 8.44 9.82 1.37 6.9 11.2 9.4 5.34 0 8.56 1.04 0 3.66 0.61 6.16 9.3 2.77 8.09 9.56 5.74 0 2.77 7.01 9.13 7.65 0.61 10.4 6.42 9.83 1.37 1.64 6.9 2.65 5.35 9.64 5.65 8.24 0 7.83 10.6 12.5 9.52 8.62 11.5 9.61 1.87 8.65 10.8 4.57 9.05 1.04 4.41 12.1 4.47 5.7 9.73 8.95 8.95 9.86 9.91 11.4 3.47 10.9 8.59 0.61 12.4 13.8 13.8 11 5.76 4.51 0 4.63 11 10.8 12.2 10.7 3.24 5.7 10.5 5.56 11 3.83 14.3 13.4 12.8 12.6 11.7 12.2 12 0 6.01 4.33 7.31 7.4 10.6 10.8 9.1 6.7 9.34 11.2 10.4 10.6 9.44 9.81 8.74 9.45 6.8 10.3 9.51 3.72 4.57 10.4 8.7 8.41 3.24 8.81 9.58 8.58 10.6 11.3 8.48 11.6 9.97 12.1 4.66 7.63 9.67 10.8 12.8 7.27 3.53 8.9 11.5 10.2 7.12 2.34 10.8 8.92 0.61 7.03 0.61 6.99 6.9 6.25 9.25 12.3 6.15 1.07 10.6 8.66 7.77 10.2 8.52 8.12 3.83 11.5 10.9 0 10.1 11.2 10.4 8.2 11.4 9.11 5.88 0.61 13.8 9.31 10.2 9.67 9.77 8.96 10.1 12.8 1.64 6.78 9.92 1.04 11.5 11.4 12 10.8 10.3 6.73 9.16 10.4 10.5 10 5.21 10.1 11.9 9.73 4.6 4.78 7.64 8.85 12 9.5 8.71 10.7 10.1 9.93 4.03 0 8.55 13.6 8.24 9.4 8.57 9.21 8.1 12.9 7.88 7.56 11.4 9.68 8.37 7.83 10.1 7.04 8.42 11.5 12.8 8.86 11.4 9.69 11 13.9 6.62 7.47 12.6 7.06 1.04 8.59 8.9 8.18 8.49 10.2 7.67 9.7 6.54 7.57 11.5 10.7 10.6 12 3.53 2.53 8.16 11.8 12.3 8.51 9.11 6.11 11.7 8.91 2.65 1.04 11.2 5.82 9.59 12.5 4.89 12.4 7.45 4.12 8.99 7.84 3.88 7.35 7.62 8.62 9.52 1.37 8.08 9.41 1.04 9.79 10.2 10.1 10.7 9.57 3.98 2.77 8.77 7.27 6.41 9.73 10.4 4.17 11.1 8.05 10.3 0.61 0 10.3 12.4 0 5.89 4.86 8.1 10.1 2.23 0.61 8.22 4.69 5.08 1.87 8.95 2.23 0 4.17 8.86 7.86 5.17 9.74 9.89 4.55 6.38 1.8 4.02 5.73 5.33 11.4 7.67 0 8.86 3.53 9.79 6.85 6.99 8.5 2.06 0 7.8 9.41 5.62 2.23 6.3 2.39 6.43 1.37 7.25 8.16 0 1.04 8.49 8.33 8.44 6.86 13.5 0 6.48 8.24 5.82 7.01 3.73 5.17 7.46 5.91 4.12 5.35 7.15 7.3 2.53 5.18 5.91 0 5.29 8.03 5.04 2.65 1.04 0.61 1.37 3.4 0.61 1.87 6.97 1.04 8.56 5.17 4.57 6.52 4.83 3.16 5.89 10.4 2.77 0 1.37 0.61 4.47 3.6 6.5 1.04 0.61 7.11 6.46 2.39 2.39 10.9 13.8 9.33 9 0 7.41 11.2 11 9.57 3.07 6.68 5.72 1.37 9.6 14.4 9.24 8.37 7.78 9.15 6 10.3 8.22 8.56 5.56 10.9 12.5 9.16 4.49 8.57 7.14 10.4 11.3 9.07 9.12 9.05 0.61 11.4 8.82 9.79 13.6 5.46 0 9.2 9.43 7.8 9.04 8.75 10.5 6.44 9.74 4.72 6.11 6.52 5.84 1.37 9.24 9.96 5.75 4.12 10.1 12.2 4.29 4.21 14.7 12.6 8.72 10.6 7.87 6.4 14 9.6 1.87 13.2 12.7 10.8 9.71 11.2 11.8 7.22 5.42 8.33 10.7 10.7 10.3 8.84 9.9 3.78 10.5 11.5 13.6 10.5 9.94 12 11.9 5.51 12.8 7.62 7.65 11.4 11.7 10.2 11.6 8.47 11 9.13 10.3 9.96 4.78 8.8 9.56 8.34 8.81 13.3 8.95 9.61 9.76 9.58 11.4 10.7 11.2 9.41 9.18 8.57 4.36 9.91 10.3 9.92 9.17 11.3 8.94 11.2 10.3 9.99 9.09 10.2 10.7 11.3 10.4 9.78 11.7 10.2 9.87 11.4 10.2 11.3 9.26 11.2 10.2 10.9 9.95 11.6 9.27 9.92 9.18 13.3 13.6 10.8 11.1 2.65 7.08 7.3 6.38 8.2 0 2.06 4.75 2.65 8.97 8.62 6.08 7.25 11.6 10 11.8 14.7 11.4 4.96 10.2 8.17 6.4 9.94 8.22 10.7 5.12 12.5 1.37 11.4 11 9.9 8.97 11.2 10.4 10.5 12 8.97 8.86 9.11 7.96 9.23 10.2 11.1 1.37 9.59 8.86 9.42 8.65 1.87 11.2 14.7 7.66 11.2 10.7 6.1 10.2 5.35 5.95 10.8 4.25 2.39 9.13 11.3 9.98 12.4 9.82 10.1 8.01 11 10.6 0.61 9.28 12.7 6.54 8.32 10 10.1 8.62 9.25 12.1 11.8 9.83 8.48 1.64 11.7 3.24 8.18 8.98 9.6 7.54 13 1.64 0.61 12.6 7.69 6.32 6.13 2.77 7.04 8.88 11.3 10.1 9.64 11.1 8.45 2.77 9.67 8.37 5.72 0.61 12.5 10 10.4 1.37 7.7 2.88 12.3 6.28 1.04 5.06 0 7.27 9.35 1.04 3.66 9.37 12.9 9.95 13.4 9.06 11.2 9.51 12.6 9.49 4.78 8.77 9.11 7.54 7.21 0.61 9.23 4.54 4.89 9.82 8.04 6.11 8.87 8.65 0.61 3.98 10.3 8.94 7.29 3.47 2.88 0 13.4 11 9.9 11.1 8.84 6.88 11.9 9.49 7.33 2.39 2.06 6.26 10.5 0.61 0.61 10.2 10 13.1 7.91 6.91 8.31 9.17 8.68 0.61 5.8 4.6 8.36 11.5 8.97 7.57 10.2 6.77 5.54 10.9 7.85 10.3 5.35 2.77 3.94 6.8 11.2 9.93 5.21 4.29 8.85 4.3 5.17 4.66 8.96 8.51 6.96 9.74 14.2 7.37 6.09 11.2 0.61 1.04 3.78 14.1 7.19 12.5 3.32 11.5 11.3 8.86 10.2 11.2 8.82 9.24 12.9 9.33 9.38 9.26 7.59 13.2 11.4 4.36 11.1 13 4.21 6.52 11.4 8.42 11.1 4.05 9.43 9.01 5.59 9.89 9.53 7.55 9.08 5.21 12.9 6.4 4.94 12.1 10.1 8.03 0 4.17 0.61 8.95 9.91 10.6 11.9 10.1 10.9 8.44 7.92 1.37 3.37 4.4 13.2 2.06 6.58 11.2 5.95 7.17 2.53 10.1 10.2 10 12 11.1 11.3 9.68 10.2 10.2 12.9 7.95 1.87 13.4 4.08 6.59 2.53 8.98 10.4 10.8 11.6 10.8 10.7 9.09 7.71 7.54 7 8.4 8.3 10.7 8.77 9.28 4.4 7.89 8.25 10.2 8.63 11.3 9.29 7.92 9.19 8.4 10.3 10.4 6.48 8.14 11.3 7.14 9.46 8.36 9.95 10.7 9.47 10.4 11.5 9.14 11.5 4.81 7.05 5.44 10.6 5.94 7.79 10.1 9.86 10.9 6.47 7.75 10.7 3.4 8.01 9.72 9.01 9.72 9.64 8.44 10.1 8.66 10.2 8.65 9.54 9.96 11.5 11.9 9.71 9.84 0 9.33 6.42 5.18 3.47 8.85 7.92 7.77 10.4 9.73 11.8 7.85 10 11 9.51 9.44 10.4 11.2 8.66 8.47 8.27 7.38 9.43 7.63 12.9 11.5 10.7 10.3 8.29 9.81 9.93 9.81 9.4 8.46 9.47 8.91 11.5 7.53 9.41 10.2 9.81 9 9.81 6.42 9.08 12.6 8.15 9.02 10.6 10.6 7.79 8.6 8.04 9.73 9.06 11.7 9.33 11.1 9.49 9.9 7.91 11.8 3.53 8.92 9.91 8.98 9.76 11.3 7.64 8.85 8.22 10.5 6.77 7.69 4.47 9.38 8.21 8.64 7.37 7.38 7.36 9.21 10.6 9.02 8.33 8.78 9.13 9.59 10.4 8.04 11.2 7.92 9.61 9.15 8.71 6.61 9.04 9.33 10.8 10.4 7.57 8.13 10.2 1.64 2.06 3.07 9.28 3.24 9.87 7.93 7.24 8.21 10.6 9.73 9.23 10.9 3.07 10.4 9.41 4.89 7.39 9.34 8.63 12.4 9.81 9.72 8.9 7.15 7.42 8.88 6.31 10 10.6 8.07 10.3 10.4 7.56 8.54 8.94 9.25 4.73 5.71 4.54 11.7 10.3 10.9 10.2 7.65 6.73 6.7 10.4 9.96 8.94 10.1 8.09 10.3 9.96 4.78 3.16 9.58 10.1 9.78 9.19 10.7 11.3 8.75 8.71 8.93 5.72 10.1 8 9.93 5.77 7.81 10.4 0 8.82 9.44 5.81 8.39 8.96 6.72 9.9 10.1 2.65 9.7 7.68 9.92 8.78 7.28 10.3 9.71 11.2 11.4 5.96 11.6 3.88 11.6 7.29 6.05 4.54 11.4 9.22 7.86 7.5 8.98 9.1 10.2 10.1 9.94 2.39 9.26 2.39 10.3 9.14 9.7 9.19 10.6 6.76 4.51 11 8.51 10.1 5.25 10.6 10.3 6.52 11.1 8.67 7.6 7.86 8.01 8.37 11.1 1.04 8.51 13 8.7 9.46 5.81 9.7 8.37 8.93 11 9.91 11.8 5.19 10.1 9.59 9.06 10.2 7.41 8.54 10.7 8.77 9.18 7.76 10.1 10.6 9.01 10.9 11.3 10 10.9 9.95 8.67 9.37 10.7 8.38 10.4 11.9 2.39 9.67 8.78 9.22 6.89 4.33 11 9.52 8 1.37 11.3 9.7 8.66 11.4 3.4 8.38 7.01 10.6 11.6 8.98 10.2 8.4 11.1 8.92 8.58 9.41 11.4 11.8 10.8 8.88 10.9 5.96 7.01 7.29 9.21 10 10.9 11.1 10.5 8.59 8.73 9.01 9.45 10.2 7.06 7.97 7.2 5.27 9.14 9.69 7.76 9.08 8.18 8.34 9.02 9.32 8.13 8.92 9.12 8.39 11.2 4.66 0.61 8.24 7.23 6.99 4.66 11.1 11.1 12.5 9.19 10.4 10.1 9.59 10.7 9.74 8.45 7.54 11.5 9.61 11.3 7.86 10.9 10.1 10.7 10.4 11.8 11.9 9.84 10.3 6.62 9.94 10.1 11.6 8.09 10.2 9.36 8.27 12.4 9.03 2.06 7.82 9.93 11.4 9.39 8.88 11.6 8.02 11 7.64 8.53 10.3 11 9.98 10.7 8.53 11 8 11.1 10.3 9.67 7.28 8.86 7.67 11.5 9.34 11.3 8.79 6.96 11.5 8.95 7.48 10.9 8.72 11 8.85 12.9 11.3 8.14 3.4 5.57 9.61 8.39 6.59 3.32 8.96 8.37 9.8 9.38 9.27 9.98 11.9 10.3 6.27 9.05 0 9 10.4 8.24 10.7 7.5 11.4 9.54 1.87 10.7 10.6 8.55 10.4 11.8 7.78 10.5 2.53 8.33 7.03 1.87 2.06 8.08 10.8 3.66 10.9 10.6 8.91 4.36 9.87 9.36 9.71 9.77 10.4 6.65 3.47 8.98 10.6 0 7.8 11.7 9.31 11.1 6.49 11.2 11.1 6.82 6.69 5.75 8.28 11.7 9.75 10.5 12.1 8.2 8.62 9.61 8.32 9.31 7.16 9.73 8.92 0 0.61 9.02 6.8 9.97 10.4 10.2 7.73 12.4 11.4 0 11.3 10.8 10.1 7.19 11.7 1.87 10.2 12.1 13.5 11.1 9.83 10.1 11.3 4.17 0 11.2 8.25 7.72 11.9 12.2 10.4 8.92 6.31 7.86 5.15 3.47 11.2 2.06 12.6 9.6 11.2 9.94 9.15 9.25 10.8 12 0.61 9.88 10.2 16.1 5.21 11 11.7 9.35 8.58 9.24 7.42 8.31 9.62 10.6 7.6 8.01 11.3 10.4 9.21 8.76 11.6 8.34 10.7 9.61 8.7 6.18 11.3 10.9 11.2 11.7 9.89 9.71 0 8.22 10.1 11.4 3.07 10.2 9.16 1.28 14.8 8.68 5.67 0 6.9 8.03 6.44 9.37 9.16 13.3 10.8 11 8.61 9.73 8.01 10.6 5.85 11 6.42 7.32 3.19 8.77 8.7 7.52 2.65 9.57 10.5 2.77 7.49 8.31 7.16 9.31 11.7 9.6 12.7 4.12 9.37 8.76 8.93 3.82 6.24 2.53 6.31 1.87 11.4 6.58 11.3 12.8 2.39 10.9 10.2 9.09 13.6 9.57 9 10.2 10.7 4.78 11.2 0 11.5 4.21 11.7 3.98 8.4 2.48 3.4 12.3 11.8 8.42 9.23 11.6 8.05 7.83 8.39 4.44 4.86 3.53 0 8.6 11.7 6.86 5.9 5.17 3.16 11.5 4.17 9.11 7.55 1.64 5.88 11.1 12.8 9.26 9.09 8.98 8.54 8 10.2 8.68 7.58 8.58 9.59 10.3 10.5 4.25 9.94 9.83 5.85 2.23 6.25 7.53 7.82 2.65 7.08 6.23 3.94 7.65 2.88 8.57 8.54 3.32 9.33 9.4 10.7 2.23 10.7 8.94 7.41 7.26 8.57 1.53 7.68 8.33 7.82 8.43 8.17 9.14 11.2 10.3 11.4 1.64 7.69 8.84 7.66 7.31 9.68 10.1 8.43 3.24 4.33 9.82 9.43 12.8 10.7 10.5 4.75 5.17 8.17 7.75 7.75 11.2 9.47 7.36 9.22 9.17 3.66 4.17 9.46 9.47 10.9 10 9.46 10.5 10.6 2.65 11.1 10 2.39 3.78 11.2 9.71 7.95 10.4 5.75 8.94 6.26 5.17 9.39 7.91 6.51 9.34 7.31 10.7 10.5 8.24 9.02 1.04 0.61 11.4 10.8 10.9 10.3 8.72 9.52 7.98 0.61 9.62 8.21 11.3 11.8 8.17 9.68 10.8 8.14 10.1 9.86 3.98 11.2 7.71 9.63 7.55 10.3 8.33 10.2 8.4 9.72 7.96 11.1 9.09 5.1 11.9 8.28 10.5 9.66 9.98 5.25 9.83 5.78 9.45 8.56 7.46 7.65 7.26 4.12 9.24 8.97 6.5 9.15 2.06 9.13 8.61 7.74 8.81 10.7 8.63 8.81 10.8 8.92 11.8 7.7 10.6 10.4 4.69 9.02 8.06 9.31 7.23 7.11 6.91 9.4 8.99 0 8.18 10.6 6.49 9.23 12.8 0.61 10.5 0 9.68 10.1 9.61 7.49 4.4 9.32 10.4 8.42 11 12.2 6 5.98 7.05 7.39 11.7 9.45 2.88 9.02 9.05 10.8 8.78 11.5 4.57 9.69 10.4 10.5 7.9 8.19 10.2 9.1 9.77 2.23 9.95 10.4 8.41 9.77 7.17 3.6 4.44 9.82 4.83 11.6 9.45 0.61 9.99 7.33 9.47 0.61 8.51 4.66 8.88 1.04 8.21 0.61 7.98 12.4 8.59 11.9 5.93 6.78 9.85 9.53 7.72 10.5 9.31 11.6 8.58 8.85 8.28 10.6 13 8.71 9.28 9.96 6.45 8.07 4.47 8.64 10.2 9.93 7.77 7.54 8.07 8.1 6.77 9.18 7.69 8.24 3.24 8.44 10.3 8.21 8.47 11.1 8.94 7.36 7.92 4.54 8.97 7.06 1.04 6.57 1.04 9.4 9.69 6.42 0.61 10.9 8.53 9.94 11.2 6.67 8.09 8.23 11.2 9.81 10.7 4.51 10.7 8.25 7.8 4.72 9.2 1.37 9.02 10.9 0 10.2 8.55 9.84 10.3 9.16 10.8 6.51 9.71 1.04 11.6 8.56 10.3 10.6 9.43 7.75 10.7 7 8.72 8.43 8.56 7.8 10 7.91 10.7 8.28 10.7 8.69 9.12 10.5 11.1 9.15 7.64 9.77 8.06 8.61 7.23 4.99 9.26 7.66 2.65 8.99 10.4 7.23 9.95 0 10.2 6.54 10.5 6.27 10 10.3 8.55 11.7 9.3 7.01 10.9 7.94 5.78 7.71 10.8 9.39 11.7 8.76 12.9 10.1 8.07 8.03 5.71 8.62 10.7 10.1 4.95 9.04 10.2 10.2 11 7.34 8.29 6.35 9.92 11.3 8.31 9.03 9.72 7.78 8.33 10.1 8.98 7.5 7.49 6.91 6.15 11.2 8.58 10.7 6.56 9.3 8.91 8.66 1.37 8.08 8.16 8.88 7.28 8.59 10.7 7.68 9.13 9.54 10.9 1.04 8.72 7.04 8.74 9.57 5.72 10.6 6.24 9.04 4.57 10.7 11.8 7.11 7.42 10.6 6.99 8.03 10.3 10.4 6.13 10.7 13.1 11.7 6.89 8.51 7.85 11 9.1 7.23 7.47 9.03 9.57 10.7 5.15 9.91 6.96 7.7 8.55 8.95 8.53 5.15 10.2 0 1.64 9.63 4.66 10.1 8.58 5.19 7.57 8.59 10.2 10.4 9.94 6.9 6.22 8.22 5.85 9.28 8.2 8.01 11.2 6.45 12 9.37 9.19 8.25 10.4 9.76 7.52 8.16 4.89 9 9.21 6.95 6.23 6.82 9.09 2.06 9.09 3.53 11.7 5.21 7.08 5.91 9.94 7.7 9.42 11.5 6.53 9.1 10.4 10.3 7.23 8.25 6.69 9.15 3.24 7.66 8.76 8.61 7.7 7.44 10.9 3.72 11.4 9.05 9.45 9.26 8.7 8.59 7.09 11.1 9.39 9.69 7.64 9.01 8.82 8.04 10.4 8.61 9.62 8.54 9.84 2.23 8.66 10.1 8.28 9.46 4.03 7.89 8.86 8.32 7.22 5.03 3.66 9.2 11 9.28 8.78 6.13 8.96 7.75 9.77 10.4 9.81 8.38 11.4 3.66 7.39 10.2 9.75 10.1 8.64 9 8.95 11.7 10.1 10.5 10.2 8.2 6.84 6.26 9.35 8.9 8.21 7.9 8.05 9.34 9.93 4.78 6.86 10.2 7.64 7.63 12.9 8.58 8.27 10.4 8.81 6.7 9.79 11 8.37 8.62 8.44 10 8.27 10.6 7.94 0 8.88 11 9.38 7.96 5.25 10.1 6.56 10.6 5.42 10.3 11 8.37 11.5 6.86 11 4.94 9.49 7.68 9.97 6.96 7.74 9.07 7.18 8.72 9.44 0 10.3 7.72 7.8 11.6 7.53 9.67 8.99 8.7 9.03 8.86 9.38 4.08 9.29 10.5 9.48 7.67 9.71 11.1 9.85 7.73 9.34 9.32 9.68 3.6 6.9 11.3 11.2 10.1 10.1 8.97 9.35 9.13 9.26 11.2 8.43 9.92 5.37 8.9 6.95 9.05 9.04 3.4 10.7 9.86 10.8 8.42 9.89 7.3 10.6 10.6 9.48 7.24 8.87 8.14 9.69 8.4 7.41 1.64 6.11 9.24 7.03 5.45 1.87 9.69 10.9 1.04 9.05 7.97 9.39 11 7.36 9.28 9.51 6.86 9.2 8.84 9.56 2.65 10.1 9.36 5.44 8.53 8.99 9.93 10.8 9.56 11.3 9.4 9.43 8.96 7.26 5.74 9.65 8.28 8.19 10.5 8.28 4.63 9.41 8.83 9.86 9.14 9.49 9.34 8.13 5.54 8.61 8.52 7.67 9.33 9.53 10.4 5.23 7.15 9.49 10.5 10.3 8.12 9.15 9.19 9.43 7.51 5.4 7.47 9.42 6.54 1.64 4.17 9.41 10.9 4.83 6.19 11.3 3.6 10.5 10.9 10.2 9.47 10.3 10.6 8.81 10.1 6.86 7.59 11.1 11.8 5.35 5.01 3.16 8.28 9.06 9.58 4.17 0.61 2.23 8.2 3.53 9.59 8.32 8.75 0 8.55 11.4 9.54 10.8 8.85 10.2 7.33 2.06 9.74 8.66 9.42 10.4 8.17 8.01 1.04 7.47 9.7 8.77 3.88 6.88 6.36 6.15 6.88 3.78 0 11.4 7.42 6.8 9.33 9.47 7.19 2.53 0 9.22 9.26 5.57 5.68 8.5 0 2.77 6.1 7.65 8.87 11.1 7.51 10.5 7.71 0 9.66 6.34 9.37 8.34 11.8 0.61 9.92 9.59 6.06 5.85 11.3 10.9 7.97 10.9 7.92 10.9 8.92 7.71 2.06 9.56 8.23 9.65 9.24 9.13 9.73 10.5 6.39 8.46 11.2 5.44 3.24 8.09 7.03 9.88 7.66 8.79 10.8 10 9.08 8.61 9.83 10.9 9.99 10.3 10.6 8.33 11 8.11 9.48 8.09 7.48 9.54 7.07 5.23 8.33 7.83 10 8.82 10.6 9.51 7.47 10.2 8.07 8.32 10.3 10.4 10 11.1 10.5 8.6 9.19 9.11 6.68 11.3 11 10.3 9.68 8.33 8.75 9.84 11.1 10.4 7.04 9.15 8.71 8.94 10.2 8.46 7.76 10.2 8.52 8.44 9.47 9.93 10.8 8.28 7.62 9.49 7.94 12.2 8.4 9.57 4.36 9.15 9.85 10.6 2.65 11.8 6.9 12 10.8 8.93 7.67 9.24 11.4 6.8 10.8 8.54 9.73 7.85 7.3 9.01 9.37 8.77 10.2 9.56 9.27 9.44 7.59 5.49 7.57 8.24 9.91 6.9 9.82 13.2 9.72 7.5 9.13 7.96 9.72 11.2 10.6 9.55 11.6 9.37 10.3 8.92 8.83 9.32 10.7 12.5 9.91 7.45 9.06 9.05 11.2 8.94 12.5 9.94 8.45 8.74 11.1 8.13 7.73 9.74 10.2 6.61 9.54 9.87 9.93 10.2 8.92 9.6 6.57 9.67 4.12 9.45 7.47 8.74 8.05 8.54 7.05 8.16 8.5 8.41 9.1 10.6 9.38 7.63 7.5 11.2 8.21 6.93 9.56 7.57 10.5 7.93 9.03 6.13 7.32 2.23 9.63 11.7 5.89 9.27 7.59 6.27 5.1 2.53 6.7 7.07 9.58 1.04 7.47 9.23 10.1 2.23 10.1 10.4 0 10.4 7.96 8.95 11.1 9.78 9.67 9.65 10.2 11.3 9.29 6.52 9.52 6.89 10.3 4.51 10.7 5.98 8.81 11.7 9.36 8.29 9.6 11.7 8.72 10.2 10.4 2.55 10.1 7.64 9 7.66 10.8 4.54 9.81 10.2 9.28 9.9 8.91 1.04 8.43 7.31 11.4 9.34 5.67 6.34 7.29 10.8 13.1 5.33 0 12.7 12 8.11 10.9 6.17 10.8 9.22 8.34 6.18 9.04 10.9 10.7 7.59 9.41 8.57 11.6 8.91 11.2 9.82 7.79 9.59 4.66 11.1 8.26 4.83 9.46 1.87 10.1 4.89 12.4 10.5 8.11 6.75 9.88 11 6.18 3.78 9.09 10.7 10.2 10.5 11.5 9.63 6.85 11.1 10.8 8.71 9.2 8.07 0 7.25 0.61 10.5 8.93 10.2 7.44 11.2 9.62 10.2 11.2 9.15 10.1 11.1 2.65 9.02 8.15 4.36 9.94 5.3 5.47 8.86 8.09 7.95 6.47 2.53 7.54 3.4 3.32 8.21 5.37 7.86 7.41 11.1 2.98 3.83 2.65 4.54 2.88 9.88 0.61 5.77 6.94 5.64 5.03 3.98 5.06 4.69 4.4 4.94 9.76 6.98 5.67 4.36 7.63 1.37 1.37 8.45 0.61 0 4.25 5.4 11.3 5.15 7.77 9.78 2.06 9.21 12.4 1.04 3.24 10.4 7.55 13.3 0.61 9.32 10.5 3.83 9.29 9.66 5.15 10.7 9.47 5.21 11.2 10.5 7.77 8.63 13.1 10.4 11.2 9.77 3.4 0 9.17 9.17 9.71 8.75 9.39 8.88 9.09 8.42 10.5 5.92 8.37 5.1 8.52 9.32 9.51 5.56 1.87 12.5 3.24 11 8.29 7.76 15.9 6.22 8.72 6.24 9.79 4.78 8.02 10.7 9.24 9.44 5.38 11.8 9.79 7.09 10.5 8.89 8.95 6.19 1.64 5.03 4.08 9.1 0.61 10.8 5.74 10.9 9.56 16.5 8.13 7.8 10.2 8.99 10.9 9.9 10.5 8.47 9.18 10.1 8.91 10.6 10.3 10.1 7.79 6.75 10.5 10.7 11.3 11.9 10.7 10.1 12.2 11.2 7.15 12.1 11.3 11.4 6.51 10.3 10.5 5.46 10.8 10 9.13 8.64 10.2 10.6 6.47 9.69 10.8 11.2 6.04 8.88 8.24 8.02 9.47 6.46 7.32 12.5 8.84 9.2 9.41 7.8 10.4 11 9.51 9.54 10.6 8.85 8.85 10.9 5.99 10.9 9.61 10.2 7.98 8.5 8.62 8.59 7.55 9.9 9.56 10.8 9.96 10.1 11 6.46 3.4 9.29 10.2 11 0.61 5.46 3.78 9.63 6.04 10.4 4.94 11.5 5.4 3.72 9.26 7.37 4.08 8.02 9.74 6.98 7.59 10.8 10 10.9 5.29 10.1 11.1 9.95 9.63 9.31 10.3 10.7 2.39 8.82 5.42 6.99 11.3 9.57 10.5 3.32 9.66 10.3 8.93 11.2 10.5 7.68 3.24 9.8 8.89 9.1 10.9 10.2 10.1 11.5 9.53 2.39 10.1 9.1 1.04 12.3 10.8 11.9 5.29 10.5 8.14 7.43 10.8 5.01 11.4 0 9.48 2.39 7.9 7.79 9.94 11.9 1.64 8.04 8.2 11.4 8.36 8.79 9.45 8.33 9.08 11.6 2.77 8.55 5.74 9.95 11.2 8.84 9.66 8.62 4.33 8.19 8.76 10.2 11 11.3 9.85 12.3 11.2 11.4 11 11.9 8.01 8.88 8.72 11.1 9.5 9.73 6 12.4 9.13 4.89 9.17 7.65 9.72 6.02 11.3 6.96 3.94 6 10.5 9.54 7.6 11.6 9.29 11.9 11.5 9.17 6.78 12.5 9.24 10.3 11.4 9.08 9.78 9.37 9.76 10.8 11.8 4.29 8.89 8.87 9.84 9.7 11.7 8.65 8.09 10.5 8.99 3.72 9.11 8.5 6.93 8.7 10.4 10.5 6.47 12.2 10.3 6.73 9.82 6.53 6.73 10.8 5.68 6.57 12.4 7.1 10.8 0.61 3.16 8.25 10.8 5.74 2.65 4.47 8.84 13.3 6.58 7.69 8.75 7.26 7.04 8.81 4.21 7.17 8.15 1.37 1.37 10.6 8.6 6.89 5.44 6.41 8.42 7.45 0 1.04 10.2 9.53 0 4.47 7.55 9.31 9.6 11.5 7.2 12.2 5.75 9.25 5.27 8.03 9.68 5.31 10.3 9.32 10.6 8.95 4.17 4.03 5.52 5.46 9.54 9.27 11.4 10.7 0.61 9.19 9.05 5.86 7.32 6.47 8 9.38 1.64 5.63 11.1 10.4 3.78 9.3 9.71 7.71 9.81 6.21 10.6 9.09 10.5 9.62 5.75 3.72 8.3 11.4 9.04 4.21 11.1 12.3 8.89 0 9.48 3.66 10.9 2.39 2.53 5.06 9.07 8.88 11.2 8.5 7.48 10.9 9.88 9.43 10.6 10.3 12.5 7.81 9.62 9.03 9.72 3.27 3.78 2.77 2.88 3.98 9.82 7.94 10.8 10.2 10.7 3.4 6.44 10.1 8.16 9 10.7 2.23 8.27 8.91 6.94 7.89 8.23 5.99 8.53 7.97 9.25 9.69 4.33 9.09 7.56 8.71 5.67 11.5 9.77 12.3 6.27 8.59 9.16 10.3 10.4 7.06 14.1 8.15 10.2 10.8 6.9 2.39 4.66 8.05 2.77 7.29 10.6 0.61 10.2 10.1 9.09 10.4 8.8 10.4 10.1 11 5.91 8.34 4.54 2.53 9.71 9.9 10.1 8.66 10 9.02 7.94 10.5 10.8 9.49 8.01 7.41 9.51 1.04 8.34 10.4 10.2 9.15 9.11 4.25 7.92 1.37 12.3 9.04 7.9 10.5 9.85 7.08 9.38 4.47 10.9 8.86 8.89 12.2 10.4 5.47 5.72 8.02 10.7 6.38 11.4 12.4 10.2 10 11.4 8.35 9.31 9.14 6.76 7.63 11.5 7.77 7.85 8.63 13.2 10.5 8.22 5.29 9.23 8.75 8.44 4.63 8.37 7.06 6.77 9.07 8.55 7.85 6.06 10.5 6.67 3.66 9.91 9.35 9.33 8.98 10.2 8.07 9.68 8.3 9.86 9.23 7.59 8.21 4.57 7.12 8.15 7.4 2.23 8.7 11 8.07 8 10.2 9.01 9.03 3.88 4.36 8.39 1.04 8.93 7.91 6.28 7.15 8.59 10.4 6.66 8.24 9.63 9.35 9.75 8.91 7.77 10.3 6.91 10.3 11.1 11.6 9.11 10.8 8.73 3.98 8.01 6.04 9.02 9.59 5.03 10.7 1.37 0.61 11.5 7.68 11 9.83 7.49 2.53 9.79 9.36 6.2 5.67 11.2 13.1 10.4 3.07 10.1 9.96 12.2 4.4 9.05 2.53 5.47 6.48 4.72 9.14 8.22 6.65 10.4 9.93 8.73 10.9 8.28 9.36 8.25 5.31 11.2 11.8 11.7 10.3 4.12 8.77 12 10.4 9.56 6.41 9.71 12.3 9.97 9.47 7.57 11 9.71 12.7 8.98 3.53 10.6 9.81 9.31 9.64 9.2 9.98 12.6 6.53 10.7 9.87 10.1 8.18 9.7 9.2 7.35 6.01 6.55 6.37 5.08 10.3 8.34 8.17 8.41 8.35 10.2 11.2 11.1 8.61 4.17 9.09 9.08 10.1 10.9 10.1 9.62 9.44 10.6 7.39 10 0 0.61 11.5 9.22 8.06 11.5 10 11.2 6.14 0 6.04 11 10.5 12 8.95 11.5 8.56 11.7 11.5 4.78 10 9.73 8.74 12 12.3 9.97 5.19 7.35 8.99 11.6 11.4 12.1 4.91 7.19 6.75 6.68 6.93 7.15 11.2 3.78 9.74 11.4 10.4 12.4 10.3 11.5 9.48 11.3 10.7 10.6 10.8 10.8 10.4 9.93 9.72 10.1 1.64 10.7 6.25 10.8 9.92 5.96 8.03 9.49 11.9 6.69 9.78 6.87 10.3 9.21 8.08 10.1 9.2 5.12 8.96 7.26 11.8 10.8 9.08 10.5 10.1 9.14 11.1 10 6.49 0 9.46 9.69 11.2 4.63 5.77 11.5 9.43 1.87 10.9 7.24 10.4 12.4 1.04 6.66 10.5 9.62 11.1 8.58 8.08 0 1.64 0.61 13.4 6.3 5.81 1.04 10.5 11 0 6.69 10.1 6.37 10.6 9.38 7.44 7.36 11.2 9.58 9.54 11.7 10.2 7.96 7.55 12.6 9.07 9.97 8.61 7.43 7.14 9.65 9.56 10.7 0 9.74 10.2 8.12 5.21 0.61 11.2 6.67 10.2 10.1 10.2 16.6 8.39 9.47 0.61 11.8 3.24 1.04 10.4 1.64 10.5 9.93 8.58 2.98 10.9 1.87 10.4 11.4 9.78 9.69 9.06 6.28 2.23 8.97 8.59 2.23 7.72 6.98 9.91 7.79 9.43 10.7 0 8.43 2.39 0 9.22 12.2 5.47 10.3 10.4 11.2 1.64 9.84 8.49 10.1 7.61 9.36 7.44 8.32 9.49 7.98 3.16 9.26 9.36 12.1 9.74 11.7 7.55 10.6 8.51 11.1 7.98 8.17 10 10.5 2.53 7.51 10.8 4.86 6.47 9.12 4.54 10 11.3 1.04 2.39 6.22 8.76 1.04 10.9 9.71 9.49 10.9 7.83 11.1 1.37 8.51 10.3 6.45 9.12 2.23 10.2 1.04 7.3 8.5 6.95 1.04 11 9.92 8.03 9.18 15.6 14.8 14 12.6 10.1 11.6 13.4 5.6 14.6 10.9 13.9 13.8 12.9 14.3 14.2 12.3 13.6 10.7 14.1 2.06 12.6 11.7 9.62 13.5 13.4 12.2 13.4 13.4 13.9 13.1 13.5 13.6 12.7 12.9 11.5 13.4 13.7 12 8.1 8.29 13.8 6.19 14.4 14.2 13.2 9.49 8.57 12.9 13.2 13 14 12.3 15.8 2.08 1.64 5.35 8.15 7.04 13.3 1.64 2.65 14.7 10.5 12.3 11.2 8.92 9.4 12.1 14.1 14.1 12.1 14.1 13.8 12.4 13.7 12.1 12.8 13.4 12.8 8.75 13.7 13.4 13.9 12.2 13.6 13.8 12.7 9.07 10.6 12.9 9.34 12.1 9.7 10.9 13.6 10.5 10 7.74 10.1 2.77 6.64 11.7 10.3 7.43 6.31 10.6 10.1 10.4 9.88 3.32 4.08 4.66 14.6 12.3 9.86 4.72 15.2 9.24 16.3 8.84 11.4 12.8 13.8 0.61 13.1 9.5 3.98 12.9 10.7 10.7 5.35 8.58 5.61 11.6 10.6 7.36 14 9.4 10.4 11.7 10.3 9.81 4.69 10.1 9.88 9.34 9.9 5.68 8.48 6.41 8.79 3.6 7.18 1.64 7.59 13.6 7.67 0 4.66 4.81 13 5.1 5.7 6.88 8.39 11.2 1.64 10.4 9.96 7.63 4.42 1.37 7.15 7.68 5.82 6.2 8.44 8.74 9.09 5.65 2.77 9.36 0 1.87 3.6 7.14 0.61 11.7 4.54 12.4 8.05 1.04 11.6 14.6 11.3 9.69 9.4 10.1 3.16 8.89 9.94 10.7 9.73 9.68 9.53 8.94 6.86 8.16 10.1 6.55 11.6 10 10.1 9.99 8.3 7.3 11.2 7.79 3.55 7.97 10.3 10.7 10.5 6.83 8.02 3.72 1.94 9.26 7.53 6.94 8.7 7.72 8.57 7.15 10.7 7.61 8.45 8.2 7.64 11.3 4.94 11.2 0 10 4.83 7.27 7.42 6.67 8.28 1.04 11.2 12.6 8.36 8.32 6.43 9.78 10.7 9.84 9.35 2.65 12.1 6.56 5.42 10.5 10.3 5.98 7.66 6.68 11.3 4.57 10.9 8.44 0 6.35 7.7 3.88 8.73 9.34 8.31 5.29 3.94 5.03 5.85 11 9.83 12.5 10.1 8.48 10.3 8.36 9.01 9.13 6.58 10.4 6.74 5.88 8.49 2.06 9.59 5.74 9.02 2.88 8.1 1.04 11.2 9.79 3.53 8.47 7.52 8.2 12.3 6.16 9.79 9.4 7.46 10.2 4.89 6.9 6.16 6.88 6.01 9.42 11.8 0 7.74 6.45 9.09 11.1 11.9 10.2 9.34 8.79 11.3 10.1 5.71 5.78 10.5 9.95 8.95 11.3 5.6 12.2 9.21 8.45 9.96 1.04 0 8.37 2.23 11.6 6.26 11.7 12 5.64 8.15 5.27 6.61 8.42 5.9 10.1 8.04 7.2 10.9 2.98 3.6 3.47 2.06 12.1 8.05 1.04 11.6 10.1 8.55 11 10.8 8.91 6.13 10.6 7.79 5.9 10.3 9.99 9.16 9.66 6.13 10.8 7.44 6.09 0 3.94 5.37 10.9 9.73 9.66 3.88 10.3 8.55 1.37 2.06 10.5 9.1 8.57 2.39 2.06 8.46 6.82 5.27 7.05 5.28 6.86 3.47 14.4 1.04 8.18 8.14 2.23 10.5 9.86 0.61 9.47 9.31 6.32 8.16 5.86 8.17 7.86 8.25 7.88 9.12 8.2 7 0 2.77 5.51 9.06 4.69 9.26 9.88 3.47 8.43 7.04 9.99 12.3 8.57 10.5 8.93 8.95 9.08 9.4 9.19 8.79 10.3 8.48 2.53 6.86 0 0.61 3.07 5.81 3.24 4.33 10.5 3.88 9.26 1.64 10.6 5.54 8.13 8.5 0.61 10.5 1.37 5.88 0 5.08 9.52 5.93 5.64 11.3 3.63 1.04 5.49 2.06 9.91 9.36 6.82 6.47 4.29 1.87 2.06 11.1 1.64 3.88 6 4.03 0.61 3.32 3.4 8.51 4.08 4.36 7.19 8.23 10.6 2.77 9.51 0.61 2.77 2.65 9.19 1.64 6.59 1.87 12.5 2.39 10.1 4.94 6.5 10.8 1.87 6.98 9.85 10.6 8.74 5.91 9.71 0 0 3.07 0 5.38 3.6 10.5 7.84 5.54 6.53 9.29 9.96 13.6 6.91 0 8.02 10.3 3.66 3.83 10.9 10.1 8.88 11.3 10.6 9.38 9.27 3.07 10.1 11.3 10 9.13 10.6 10.5 9.48 6.46 9.07 12.7 9.06 7.4 10.8 8.73 8.9 12 9.18 9.65 7.73 9.72 11.6 8.17 8.59 9.3 9.98 9.32 6.78 10.1 6.45 0.61 9.9 11.2 8.84 6.33 9.32 8.07 7.89 3.72 9.57 13.2 7.7 4.86 9.79 10.6 5.8 9.03 8 3.6 11.7 9.3 10.5 9.44 9.88 9.86 8.26 8.58 8.88 0.61 10.8 10.8 9.21 6.47 9.22 10.5 8.67 13.1 10.1 10.4 7.35 7.83 8.59 7.47 8.59 10.8 8.57 4.8 4.47 3.66 8.35 7.42 11.3 5.44 8.73 4.4 5.9 3.98 9.46 0.61 10.1 9.3 7.09 8.69 9.7 3.72 3.32 10.2 7.78 10.6 7.7 6.63 9.45 5.47 9.69 0 9.54 9.02 8.7 10.5 9.58 11.3 8.48 10.2 10.2 8.17 9.42 9.58 8.87 10.4 3.07 9.47 12.3 9.11 10.9 8.2 6.07 7.24 2.47 11.2 5.72 9.23 4.44 4.89 8.51 4.96 10.9 8.27 11.7 3.07 8.84 5.17 6.46 3.24 7.5 9.18 5.23 8.65 9.18 10.3 8.38 8.95 9.41 9.62 0.61 10.2 12.9 7.59 9.75 10.5 2.39 10.9 8.46 11.8 11 10.1 4.21 11.2 4.08 3.98 2.53 5.21 11.8 0 11.2 10.1 4.75 4.96 9.89 9.51 9.2 9.51 7.84 9.43 11.3 7.4 8.59 11.7 9.54 0.61 4.51 1.87 1.37 3.94 5.52 0 8.54 0 0 6.3 8.58 5.78 5.38 4.69 4.89 5.52 1.87 4.78 4.78 10.6 8.3 4.69 5.67 3.53 1.04 0 8.03 7.37 9.54 7.63 10.3 5.37 7.47 4.51 5.93 1.04 10.1 6.36 6.19 2.77 2.06 9.76 2.23 4.51 5.49 8.62 5.39 4.33 9.72 12.6 1.04 2.53 0 7.94 7.79 3.66 5.89 0 4.44 6.46 0.61 6.28 3.94 7.7 1.87 2.39 10.3 4.12 2.88 6.15 2.88 4.6 1.64 9.76 0.61 9.9 1.04 7.14 10.5 4.78 7.2 8.19 8.33 9.64 0.61 4.91 6.71 11.2 11.6 10.9 10.5 4.51 3.72 4.21 5.35 8.35 9.84 10.7 11.5 12.1 7.21 10.5 11.2 9.68 12.2 8.21 9.61 9.56 11.1 10.1 8.05 11.4 11.2 9.04 8.81 9.7 8.19 1.37 11.3 7.74 10.1 10.3 9.89 9.86 6.32 9.44 8.55 4.21 9.27 0 10.6 11.1 11.7 11.8 10.1 10.8 8.79 8.2 10.4 11.2 2.25 8.83 7.61 10.2 8.76 8.07 10.4 11.2 11.7 6.7 7.56 6.15 8.57 9.15 9.3 7.55 7.74 6.08 7.65 10.3 11.8 10.1 7.9 11.2 9.61 9.14 9.89 9.13 10.8 10.1 9.96 8.76 9.08 12.2 8.42 10.9 11.1 13.4 10.9 10.1 9.92 0 11.4 3.47 12.7 9.71 10.6 9.45 12.5 11.2 11.3 9.79 10.4 11.7 8.2 2.23 10.2 0 3.07 8.96 10.9 9.52 11.5 10.6 8.42 10.4 6.86 11 6.01 15.1 9.25 10.7 9.73 3.24 9.32 5.74 13.3 9.03 9.35 9.9 8.78 7.63 13.1 1.04 6.65 12.1 8.59 8.22 10.2 7.85 2.06 10.4 6.83 13.2 11.5 10.2 10 12.1 12.2 9.34 10.2 7.66 11.3 11 9.64 9.27 12 8.09 10.3 10.9 9.81 11 11.7 12.2 11.6 11.6 11.5 5.91 5.51 3.07 11 12.1 12.5 13.1 8.25 15.2 1.37 12.1 10.9 12.2 7.05 9.84 10.9 2.23 0 2.53 1.04 0.61 1.87 1.64 1.51 12.2 2.54 0 0 3.77 12.1 12 10.3 9.59 0.61 4.94 11.3 9.1 9.09 8.53 9.45 6.04 3.47 5.03 9.35 10.6 2.39 6.18 7.74 5.52 9.89 9.87 10.2 9.9 11.7 9.88 8.37 9.16 8.77 8.29 13.7 8.05 9.24 10.1 12.2 6.67 11.5 8.37 9.24 7.64 11.9 9.33 8.99 7.23 8.55 12.2 9.1 11.2 10.1 1.04 10.3 5.42 1.87 4.6 11.2 10.9 8.45 1.04 2.53 0 11.2 8.79 4.4 10.4 7.5 10 8.93 8.25 6.07 12.1 5.37 10.8 11.1 11.3 9.82 10.3 8.68 8.47 6.99 9.62 5.96 0 11.8 12.7 11.3 10.1 12.5 9.53 8.43 10.7 2.88 1.87 8.39 10.3 8.88 11.3 9.16 9.53 7.95 8.41 5.57 6.1 6.3 8.22 10.2 9.17 11 1.04 5.12 8.82 8.92 0.61 0 11.4 0 10.5 9.74 12.1 1.87 10.6 7.71 9.42 9.03 8.54 10.2 2.53 11.4 7.46 7.84 10.4 10.4 10.1 5.29 11.2 9.91 7.28 11.5 1.04 0 10.1 7.37 9.33 5.21 10.5 10 8.39 3.16 12.1 11.9 7.48 9.44 7.02 3.53 10.3 14.6 6.12 8.29 10.2 0 8.57 9.37 1.37 9.87 6.33 8.8 3.88 6.98 8.47 8.87 9.22 10.3 8.38 11.2 3.94 7.62 3.47 10.1 18.3 11 11.1 9.8 7.83 9.27 0.61 11.8 11.6 0.61 10.5 8.03 8.07 11 7.17 12.4 3.66 10.2 13.3 11.2 9.41 11 9.58 4.96 9.47 1.64 8.99 6.87 8.98 11.6 10.1 10.4 10.1 9.53 9.61 13.9 12.2 14 3.47 9.94 11.5 8.51 10.6 12.9 8.78 7.64 11.1 10.6 6.79 4.36 13.2 12.2 6.32 9.03 5.94 8.31 16.6 11.3 7.58 7.61 9.7 10.5 9.37 10.2 10.2 10.3 7.62 10 15 11.3 8.95 9.02 5.47 4.72 10.7 11.6 9.86 10.8 6.71 12 10.2 7.47 3.98 0 2.39 10.3 0 11.8 8.98 10.9 11.7 6.98 3.07 9.15 12 8.18 10 10.6 12.3 11.2 5.03 9.39 11.6 11.2 11 2.06 12.4 11.5 10.1 8.7 13.1 12.3 11.1 9.74 12.1 5.54 16.2 0 14.7 8.31 9.87 14.8 8.99 8.31 7.35 6.73 6.98 8.37 16.4 1.87 12.6 10.1 11.1 7.01 2.77 7.06 1.04 1.04 7.58 6.47 8.77 1.04 3.24 1.64 10.9 8.97 11.4 0 10.5 13 10.8 12 8.16 8.9 9.07 9.78 10.9 9.91 10.6 12.7 8.77 6.04 7.5 4.86 6.94 6.95 10.4 7.91 4.33 3.16 7.77 6.67 10.8 9.4 9.26 4.29 4.29 5.75 6.49 7.17 0 8.84 4.69 1.87 5.78 9.09 9.27 3.94 8.57 0.61 3.07 7.31 11.8 6.81 6.29 0 7.78 8.38 7.08 2.17 9.44 4.25 6.98 7.08 6.45 2.65 5.08 8.35 6.01 4.36 14.1 6.06 6.75 0 5.12 0.61 4.08 3.88 10.2 2.65 9.15 1.37 1.87 11.7 4.6 7.98 5.46 4.87 4.43 5.91 4.1 0.61 4.29 6.73 6.2 4.21 8.42 3.53 6.7 1.37 5.54 3.4 4.36 0 8.02 9.85 7.61 1.64 9.63 2.53 4.12 10.3 6.25 6.72 1.04 8.63 10.7 1.37 0.61 4.12 7.86 7.82 8.35 3.07 5.25 0.61 8.25 8.76 3.83 7.84 6.46 7.81 6.28 7.61 8.6 5.27 0.61 10.1 1.64 10.5 3.83 12.9 3.24 13.7 14.9 13.6 1.04 10.4 11 10.3 8.64 10.9 12.2 10.3 9.1 9.76 10.3 10.7 11.3 2.23 10.7 10.3 11.1 9.15 10.8 9.83 11.1 10.7 11.7 5.94 8.43 1.37 3.6 12.5 3.47 9.72 4.94 9.68 7.23 9.57 10.7 6.4 7.14 8.66 11 9.25 10.4 11.4 10.4 2.53 11.5 0 11.5 11.8 11.3 10 10.1 10.5 9.51 10.2 11.3 9.69 2.06 10.3 12.2 9.59 8.89 11.1 11.6 7.16 9.43 9.43 8.27 12.4 12.7 11.4 10.2 9.79 9.75 12.7 10.6 9.83 3.4 9.47 0 12.9 15.9 3.98 1.64 8.94 6.24 4.66 7.59 7.2 8.57 3.24 6.2 4.91 11.7 13 7.89 10.8 12.4 9.98 8.03 8.13 9.49 10.5 10.3 10.7 9.94 7.86 1.04 5.01 9.25 1.37 2.88 5.82 0 1.87 2.77 3.16 4.94 2.88 9.29 7.63 4.21 11.8 5.01 1.37 13.7 5.27 7.94 10.7 5.47 10.1 3.16 11.5 9.91 4.03 7.73 6.67 9.63 12.7 7.07 9.88 10.4 12.8 9.09 13.4 11.5 11.9 14.2 5.6 12.1 13.9 5.99 13 8.31 9.44 8.98 6.22 9.47 8.98 7.06 8.56 6.63 12.8 8.5 9.13 7.36 7.04 8 6.57 7.37 6.98 6.61 7.75 11 8.8 7.24 10.7 7.59 8.46 5.4 9.31 10 9.29 6.47 8.66 8.26 7.26 7.81 9.12 8.56 7.61 6.65 8.65 6.71 2.06 5.56 7.12 7.7 8.59 7 9.8 5.78 2.39 9.23 3.88 6.4 8.54 8.51 4.51 0.61 5.62 5.23 5.2 11.9 5.88 1.04 4.17 1.87 1.04 0.61 2.77 9.52 8.79 7.15 8.2 7.71 7.59 7.64 5.44 6.8 8.57 8.88 6.08 8.86 7.59 10.5 6.13 10.6 9.54 10.2 9.03 8.65 7.32 7.3 1.64 10.4 7.14 10.3 7.7 7.13 3.94 5.8 2.88 6.99 8.13 7.39 9.99 3.53 7.88 8.12 8.29 7.31 8.04 7.14 10.2 7.06 7.67 8.47 8.48 11.3 7 7.33 9.38 5.91 5.78 11.5 11.2 6.54 7.66 5.74 8.28 2.98 7.41 6.46 7.16 6.3 6.95 7.82 9.09 2.23 3.4 5.85 5.97 8.6 5.57 12.6 9.83 10.6 13.2 8.59 11.9 7.46 12.2 4.11 13.6 9.15 11.3 8.45 4.81 12.9 10.2 9.53 9.33 10.4 9.6 11.2 14 3.72 5.38 10.7 10 9.22 4.83 9.49 10 12.1 9.03 9.74 10.1 10.8 12.8 7.77 5.72 9.91 1.37 9.5 9.66 4.33 3.47 7.77 10.9 9.6 4.78 8.58 2.23 5.8 7.49 10.2 3.53 10.6 10.8 8.15 10 9.18 7.66 9.38 9.68 9.72 1.64 9.97 9.86 8.13 5.25 8.22 9.95 7.75 2.65 13.7 9.75 7.42 9.67 8.68 9.34 8.74 9.37 10.3 5.37 10.4 11.2 4.44 10.1 7.82 9.66 12.7 9.02 9.33 8.45 9.36 8.35 10.6 9.52 9.77 6.21 8.32 6.81 10.9 6.46 4.4 8.9 6.98 8.54 9 9.12 12.4 9.84 9.21 6.5 9.68 7.88 6.9 3.83 4.51 10.7 7.78 10.2 11.9 9.04 9.59 9.83 11.5 8.33 6.41 8.64 7.61 11.8 11.1 7.14 10.2 11.4 12.8 9 8.5 7.85 5.17 9.77 5.56 4.43 9.51 9.52 6.58 9.44 10.1 8.5 12.7 10.3 7.51 0.61 5.7 9.03 12.7 10.2 10.8 6.24 4.21 9.29 7.55 8.92 7.85 8.53 8.51 12.9 8.97 8.71 1.04 11.8 12.3 8.51 10.5 11.7 8.76 8.99 6.98 0 9.44 4.81 0.61 2.88 10.5 7.2 9.93 12.1 7.53 0.61 1.37 2.23 8.35 3.78 6.97 8.11 2.06 10.1 8.1 10.5 9.64 7.7 8.66 10.5 8.54 9.96 6.48 2.23 5.44 3.67 9.72 7.81 6.64 0 8.58 11.4 8.09 8.72 8.08 10.5 9.67 8.42 8.92 9.47 11.3 10.1 10.4 9 9.28 9.12 8.23 6.39 9.11 10.1 10.6 10.9 7.58 7.63 7.1 8.37 7.78 7.9 7.7 5.78 9.3 8.23 4.63 9.9 3.4 6.82 7.68 4.44 7.92 6.86 9.41 7.83 8.3 7.33 6.75 8.05 8.44 8.21 9.13 7.89 9.67 8.41 2.06 8.8 10.3 8.36 7.7 8.56 10.9 9.27 8.51 10.8 6.49 9.04 9.46 8.48 11.2 7.53 7.2 9.2 10 8.23 5.61 8.97 8.65 8.05 9.47 9.3 8.1 2.88 7.84 8.62 8.84 9.6 7.24 6.42 8.59 9.1 12 6.08 8.46 9.02 8.15 8.73 10.5 6.6 8.06 10.6 9.2 8.36 8.04 9.36 7.29 10.5 9.06 10.2 8.98 8.03 7.75 9.71 10.1 11.8 9.75 10.4 1.37 6.57 9.82 6.73 9.55 7.93 8.64 7.35 8.37 4.96 9.29 10.4 6.64 8.15 2.77 3.66 8.67 8.02 11.3 8.41 1.37 9.93 3.07 8.8 8.89 7.99 7.96 2.98 8.54 8.07 6.16 7.42 11.8 9.4 10.6 7.94 10.5 6.57 6.91 5.6 8.58 9.49 7.04 8.53 9.86 0.61 4.57 13.4 9.1 5.27 6.98 10 9.56 10.6 10.9 8.86 8.07 8.5 8.09 5.91 5.12 8.61 5.59 7.84 7.73 6.06 10.7 9.8 9.68 3.6 7.45 5.62 8.3 6.76 6.77 9.46 0 6.36 6.68 4.63 5.99 6.88 8.58 7.48 7.05 9.61 6.51 9.7 7.63 10.4 4.57 6.74 9.45 7.04 2.88 6.35 5.29 2.53 7.67 5.54 8.14 7.41 0.61 8.92 3.07 0 4.81 12.9 1.37 7.51 0 7.32 8.29 6.57 4.25 5.67 8.67 8.58 10.9 6.59 7.35 8.87 7.41 9.42 10.5 9.55 9.98 5.54 8.22 10.2 8.25 8.67 8.81 8.88 8.8 10.9 8.71 7.97 10.4 10.6 10.8 5.64 7.5 8.2 7.06 7.09 12.5 9.06 9.92 5.77 6.75 0 10.4 8.8 6.98 5.25 8.01 8.17 11.1 6.73 1.04 7.1 7.66 5.12 4.47 8.24 7.37 1.64 11.1 2.23 9.46 6.73 3.4 11 9.86 4.12 7.39 7.3 3.95 9.78 2.53 4.54 9.02 5.01 11 7.39 7.98 6.57 10.5 8.94 6.31 12.4 6.88 7.66 8.16 10.1 5.74 6.24 9.25 8.36 8.06 8.25 3.94 7.18 6.26 6.62 10.2 9.6 1.37 9.92 3.4 13 0 5.72 9.27 9.65 8.63 8.91 7.57 3.24 6.96 9.94 10.4 8.62 9.3 9.35 8.5 9.02 7.87 8.77 10.4 9.96 9.48 9.18 7.78 5.94 1.37 0.61 5.46 6.51 8.59 6.52 8.09 1.69 3.94 3.66 0 8.14 10.8 12.8 5.9 7.87 5.29 4.66 3.6 0 8.99 7.55 5.59 7.65 8.93 7.28 9.05 7.04 9.33 8.7 7.51 9.18 10.1 10.1 9.01 7.76 8.19 9.39 8.6 9.27 6.61 9.83 6.84 9.42 8.26 6.75 8.67 7.3 5.03 9.26 6.28 8.18 7.48 9.22 9.44 9.76 9.06 9.5 8.92 8.42 10.3 10.3 8.53 9.18 11.4 9.35 9.72 8.72 10.9 9.78 9.13 3.53 10.9 9.54 9.47 9.87 12.1 7.66 8.83 11.4 10.6 6.14 12.4 9.93 6.32 7.23 5.29 9.22 9.62 9.53 3.47 7.75 6.92 8.31 10.3 10.1 9.33 10.8 8.48 5.21 11.6 9.47 8.13 8.87 10.6 10.8 8.22 6.13 9.89 9.05 3.88 10.6 12 8.93 8.2 4.96 7.93 8.46 9.98 5.75 5.9 6.05 8.89 5.21 8.3 8.98 6.64 8 7.61 11.3 4.17 3.88 11.6 9.45 2.39 8.11 5.51 11.1 6.57 8.66 10.6 9.54 1.87 10.8 3.07 10.2 9.18 6.91 11.2 8.71 13.5 8.72 7.54 9.64 12 7.08 9.64 4.08 8.22 9.18 9.39 7.25 10.8 8.37 11.4 4.12 4.54 7.39 5.52 4.6 7.83 7.49 7.37 9.32 6.26 5.71 4.22 8.75 9.09 12.4 8.83 5.35 9.63 7.67 7.29 6.59 10.3 7.22 11.1 12.3 9.53 12.2 9.67 12.4 7.73 8.97 9.78 5.94 8.34 6.44 10.6 11 10.1 8.1 7.64 1.04 11.1 9.56 8.51 10.9 8.6 9.41 4.38 4.03 6.32 2.02 11.1 7.73 9.17 6.86 9.85 1.64 10.6 13.8 8.75 3.23 3.6 5.49 2.65 9.85 8.74 8.63 12.1 11.4 14.3 3.6 7.55 1.87 7.5 5.23 11.1 12 9.97 4.44 1.04 9.37 11.2 10.1 8.55 2.06 8.21 2.98 11.3 11.6 7.89 8.81 9.99 9.28 10.6 9.74 3.47 6.47 9.44 8.53 9.42 9.95 10.1 9.72 9.95 6.24 8.32 9.7 8.83 10.2 10.1 9.86 11.6 0 7.53 6.9 7.95 8.95 11.3 8.95 8.37 6 9.59 9.41 7.07 12.1 9.42 11.1 10.9 9.39 11.5 8.33 5.35 11.8 9.93 8.92 0 7.24 10.4 11.1 7.7 4.97 9.64 5.08 9.54 10.1 4.96 10.9 10.4 11.4 11.6 11.8 8.08 6.1 0.61 10.4 2.06 9.04 10.7 0 10.1 9.09 5.4 8.75 7.55 9.68 3.6 6.69 2.23 8.83 6.64 8.95 8.11 9.97 10.1 10.1 10.4 10.2 4.05 10.2 7.09 10.4 10.4 6.44 9.58 9.19 12.3 9.74 9.45 8.62 11.3 9.14 8.73 0.87 8.64 9.83 3.47 9.69 9.28 8.62 9.6 0 6.76 5.99 8.87 8.89 6.56 9.98 10.7 6.94 10.5 14 11.9 9.99 6.89 13.4 8.76 2.06 9.54 9.42 9.88 8.45 12.9 8.33 11.5 11.7 13.4 10.6 11.6 10.7 8.47 13.1 9.63 7.47 10.5 7.56 9.15 9.15 0 9.94 0.61 11.7 11.5 9.65 6.1 8.46 1.04 11.1 11.5 11.8 10.6 9.16 12.4 8.84 10 7.65 10.7 8.91 5.88 5.38 12.1 1.87 12.8 9.61 10.9 9.01 7.29 0 1.04 9.9 2.06 0.61 0.61 9.69 2.39 9.13 2.77 3.16 8.28 7.58 1.04 2.06 2.53 5.23 0 0.61 7.27 3.47 10 12.6 10.2 9.39 6.56 1.87 2.23 6.5 10.3 7.86 0 8.47 5.91 7.04 9.36 6.92 4.81 4.44 8.13 7.83 8.5 0 7.16 8.93 12.2 8.02 9.22 0 2.77 0 4.94 4.72 1.04 6.05 8.98 9.27 8.56 9.33 9.16 8.65 1.87 9.16 0.61 1.37 1.04 0.61 9.56 6.7 1.04 11.2 8.95 7.51 7.51 8.81 1.04 8.34 10.9 10.3 9 7.51 0.61 3.47 8.73 12 10.2 0.61 8.05 9.35 9.03 8 8.56 5.6 1.37 2.39 10.9 0 8.78 10.9 8.75 2.06 8.17 9.96 9.19 3.72 9.71 9.95 1.37 0.61 11.6 8.88 8.17 8.51 8.91 9.06 6.14 8.66 10.5 9.87 4.53 2.53 0.61 7.78 3.94 6.75 10.3 9.26 9.73 5.74 9.57 10.9 3.47 3.6 7.74 9.78 9.18 9.36 2.06 4.17 9.26 7.66 1.04 3.49 9.09 6.11 8.22 8.55 7.15 7.48 9.7 11.7 7.93 9.96 3.94 1.64 9.59 5.94 4.81 0 5.49 0 3.16 0 0.61 2.23 4.51 10 11.2 8.2 3.66 9.7 10.2 7.57 9.15 12.8 7.25 10.9 11.1 8.86 8.69 7.45 3.94 2.65 7.36 1.64 9.58 10.9 8.74 8.57 5.19 9.75 11.1 7.33 7.08 8.92 0 4.21 5.84 0 8.66 8.68 8.25 9.35 10.4 10.6 11 11.2 9.99 2.06 8.33 4.21 7.91 1.87 6.2 7.84 11.5 8.85 1.87 9.81 9.79 9.94 7.01 7.94 13.5 3.4 5.06 1.64 3.47 4.4 6.9 9 10.3 8.39 9.7 5.8 5.91 8.19 9.83 3.72 7.66 5.64 3.07 8.1 8.26 7.47 7.24 9.49 9.27 8.73 8.31 8.9 8.4 6.49 8.17 9.47 9.66 7.51 7.05 6.98 7.98 5.75 9.37 9.38 6.18 9.33 8.18 9.13 9.53 10.5 8.63 10.8 9.41 7.47 10.7 10.4 6.86 9.38 7.82 3.88 8.47 8.49 10.2 7.27 8.39 8.47 9.62 2.53 0.61 6.77 10.2 10.5 10.3 4.57 8.6 5.37 4.96 1.64 7.88 5.81 9.08 6.3 7.2 4.47 6.81 6.39 7.44 6.11 0.61 8.44 10.9 11.1 7.84 8.29 11.2 7.97 10.2 9.04 8.59 9.47 11 3.47 11.8 6.55 7.3 4.25 8.84 9.44 9.54 0.61 7.87 8.3 7.81 8.56 9.29 4.96 9.66 9.89 8.15 8.7 8.91 9.2 7.64 10.8 8.97 9.05 9.04 5.49 9.09 9.14 3.4 7.98 11.6 9.19 4.12 9.09 10.2 9.89 9.12 8.98 8.82 8.49 9.17 1.37 7.46 10.3 7.89 9.51 6.17 8.49 9.85 9.04 10.8 5.42 4.17 7.32 9.74 8.98 6.75 8.01 10.8 1.64 11.1 9.44 7.79 9.27 8.58 8.16 9.27 10.4 6.64 7.64 9.41 10.2 9.61 9.26 6.96 7.68 6.92 8.34 7.96 0.61 9.71 8.83 10.4 9.42 9.75 7.46 8.6 9 9.23 0.61 9.11 10.8 8.87 10.6 11.4 5.74 9.41 1.87 10.2 10.8 11.7 10.4 10.5 6.39 8.02 7.33 5.06 7.88 10.3 8.58 9.17 11.8 4.08 11 8.28 7.36 8.86 9.98 7.58 6.73 7.47 5.85 8.84 9.17 9.35 7.63 2.88 3.4 2.23 0.64 9.91 9.19 10.2 6.53 4.12 6.37 10.7 9.45 10.8 6.69 9.56 4.72 5.68 5.51 10.6 7.22 9.15 5.81 12.8 7.15 6.42 8.89 9.19 5.27 10.3 5.35 7.5 10.6 5.99 8.22 8.57 11.2 8.28 7.08 11.2 2.39 10.6 7.75 9.51 0 7.75 8.16 5.84 10.8 9.55 8.75 8.74 6.68 0 10.7 7.95 7.44 4.08 11.8 7.49 12.1 3.32 1.37 7.21 9.54 9.76 5.17 10.4 8.34 11.6 3.53 2.65 0 2.23 9.86 10.4 7.58 10.2 11 6.78 8.79 4.6 8.94 7.37 0 8.25 8.55 11.5 0.61 6.33 6.28 6.19 1.87 5.03 1.37 11.3 10.4 1.64 6.64 8.07 6.86 10 8.65 2.53 10.6 9.99 6.32 5.4 11.5 8.78 12 5.82 6.93 0.61 3.16 9.8 8.54 6.33 10.3 8.09 10.6 6.9 4.36 8 5.35 1.37 7.36 7.06 9.06 11.3 7.17 8.48 5.71 7.7 9.79 8.42 7.33 6.47 6.88 6.52 8.55 9.82 8.58 4.72 4.21 2.06 7.12 9.12 10 8.04 7.89 10.3 3.94 7.56 8.38 4.81 6.31 9.44 11.6 6.29 9.41 0 4.21 8.13 5.64 7.21 5.46 7.82 7.69 9.46 10.4 7.05 9.15 8.45 8.81 6.66 4.4 3.16 7.66 7.35 10.8 8.82 8.4 8.29 8.12 9 8.27 10.9 9.36 8.79 0.61 8.84 10.4 6.98 9.05 9.82 9.33 8.79 8.88 12.6 6.39 9.13 8.33 5.24 6.72 9.26 8.38 9.32 9.95 5.59 8.32 10.7 9.05 4.25 9.72 10.4 11.3 4.36 6.38 8.85 9.38 7.13 8.32 11.3 8.07 4.44 7.81 7.58 8.75 7.85 9.29 10.2 9.82 6.93 9.59 10.2 7.03 8.48 2.88 8.8 8.74 7.38 7.55 10.1 9.47 9.03 10.3 6.97 9.82 8.03 8.38 11.2 7.19 10.4 2.23 6.65 9.04 7.34 8.91 4.63 6.23 7.6 8.44 9.16 9.19 8.87 8.64 10.5 7.81 0 5.4 7.53 10.2 9.78 10.2 5.11 2.23 10.7 10.4 9.6 6.93 10.5 5.74 6.93 9.3 0.61 5.15 9.66 9.43 9.85 7.29 5.91 11.5 9.52 8.29 7.3 9.7 8.11 9.53 8.47 8.55 6.93 8.66 10.3 9.13 5.15 5.12 8.5 6.07 4.81 8.66 9.15 9.22 9.75 0 8.1 0 9.58 9.46 7.32 9.91 7.02 0.61 6.49 1.64 5.56 7.91 11.9 9.27 6.35 1.64 9.06 0.61 2.53 9.41 11.8 9.36 4.6 9.52 10.3 10.7 8.25 8.96 8.91 9.09 4.83 9.14 0.61 6.93 9.55 10.6 10.6 11.3 7.04 9.65 9.72 10 3.24 5.03 6.22 2.53 6.78 7.31 2.65 10.7 10.1 9.58 8.08 5.75 9.37 9.85 7.78 7.64 5.59 10.9 10.6 9.48 9.17 7.62 12.6 9.35 9.22 8.35 10.6 8.32 10.9 9.75 8.82 9.51 9.47 5.75 4.29 9.81 6.18 3.32 3.4 9.62 3.53 2.98 3.32 9.04 3.85 4.6 14.1 8.67 7.03 8.16 2.53 10.1 9.36 12.1 10.2 9.43 6.2 10.7 11.2 9.72 8.92 8.81 11.1 11.2 12 9.03 9.95 9.84 9.43 5.42 8.8 11.1 7.97 9.4 8.71 4.69 0 10 9.44 9.07 7.95 9.36 3.4 6.48 11.2 10.6 6.35 13.7 7.62 11.2 3.07 1.64 9.85 12.4 10.2 8.81 10.1 5.1 7.9 4.83 8.03 3.78 4.29 8.1 9.13 9.74 8.74 8.77 6.3 9.03 7.05 4.86 9.21 3.66 6.79 9.97 6.21 9.69 9.86 10.3 9.95 9.84 12.9 11.5 10.2 8.09 9.44 12.4 11.4 8.13 12.4 11.4 11.8 12 12.4 9.93 9.73 6.22 10.9 11.6 9.59 10.9 8.53 7.74 11 9.05 8.9 13.1 11.1 10.6 8.4 11.2 8.24 9.71 8.76 6.89 11.9 5.41 9.1 10.7 9.65 8.81 9.31 1.64 0 11.9 8.05 11.1 9.44 8.72 5.8 11.7 11.4 8.49 9.63 11.2 10.5 7.97 11 8.34 11.4 9.37 10.3 8.53 11.5 5.72 9.66 7.08 6.53 2.23 11.3 9.77 8.99 5.19 3.07 1.37 1.04 8.08 12.3 11.1 13.2 9.21 11.4 13.1 10.6 11.9 9.09 6.44 9.22 10.5 9.41 11.1 9.25 5.53 8.89 5.44 10.4 6.1 1.37 4.46 2.06 8.13 5.19 7.47 8.27 11 7.15 8.22 10.6 1.37 6.53 10.5 10.3 9.33 11.9 9.49 3.4 7.56 2.77 1.87 9.72 8.83 4.4 11.3 10.3 4.66 8.97 8.16 2.88 6.81 2.06 11.5 3.07 13.2 12.3 11.7 7.04 8.21 6.01 9.65 8.63 8.08 6.19 10.6 0.61 7.46 7.14 9.76 7.34 4.47 9.35 11 7.78 6.26 12.8 9.71 5.08 11.3 4.33 2.39 12.8 0.61 8.65 10.5 6.41 10 8.89 8.89 12.3 10.6 9.01 9.6 9.7 9.1 3.98 4.83 9.47 14.3 10.8 10.7 10.3 9.4 9.77 8.22 10.4 11.9 10.9 9.35 10.2 8.65 9.25 9.59 10.6 10.9 9.78 10.5 9.25 10.6 1.04 6.69 7.1 11.3 8.46 10 9.93 3.88 3.88 8.11 7.74 8.55 7.38 9.59 6.26 8.77 8.69 9.46 10.2 10.6 10.2 6.82 5.47 2.1 9.96 10.7 10.9 11.1 8.27 7.28 7.53 10.3 12.3 8.01 7.03 12.1 8.7 11.2 0 1.04 3.83 10.9 2.88 1.37 10.9 10.4 10.8 6.36 0 9.61 7.92 7.11 4.69 10.8 11.8 6.26 7.26 3.72 4.69 3.24 3.32 9.13 7.01 9.11 8.4 10.3 8.04 6.71 5.46 9.85 8.7 9.66 2.77 3.15 7.63 2.61 1.37 8.04 1.37 7.82 10.4 6.82 6.04 12.5 10.4 11.7 8.48 0 10.7 9.7 10.3 9.35 8.9 5.52 9.38 10.1 8.9 6.93 7.9 5.81 11.4 11.4 11.8 3.47 8.21 5.15 9.05 5.19 10.3 10 2.77 8.77 9.94 9.52 0 9.61 8.81 8.33 5.59 6.73 6.82 7.41 11.2 9.7 9.48 8.98 9.34 7.71 12.2 10.3 1.04 9.41 11.5 6.78 3.07 3.07 2.06 8.08 10.3 8.88 0 6.23 1.87 4.96 4.17 4.44 10.8 9.59 7.18 8.36 9.97 8.5 1.87 7.34 8.08 9.04 5.74 0.61 5.29 6.57 8.46 8.36 9.12 9.33 5.57 9.69 7.02 6.26 10.4 9.94 8.53 11.9 8.26 8.85 5.42 10.1 11.4 9.27 9.82 12.9 8.34 8.13 4.72 4.03 9.72 4.4 10.5 10.7 9.35 7.04 6.36 10.1 6.06 12.6 9.34 8.6 10.4 8.27 9.97 8.22 8.35 8.87 8.81 9.08 9.16 6.76 8.44 2.06 4.54 7.79 7.2 7.86 10.9 8.02 8.21 7.83 8.61 6.91 7.71 10.9 8.55 8.37 1.64 7.03 8.23 6.22 9.64 7.16 9.98 10.2 8.86 6.76 0 7.36 8.57 11.6 8.04 8.68 11.4 7.22 9.58 9.55 7.72 7.06 10.2 9.31 7.13 10.2 9.81 6.75 9.38 7.23 6.49 9.34 10.6 10.9 9.92 9.77 8.57 6.22 11.7 9.1 8.69 4.57 10.1 5.19 8.82 5.42 8.93 9.54 9.35 10.6 10 10.9 9.98 5.74 10.2 7.74 8.4 9.5 7.34 9.9 8.61 7.41 8.69 10.2 8.33 9.97 7.01 8.22 6.8 8.57 11.3 7.5 6.56 9.04 7.75 0 0 6.58 5.08 6.35 9.28 6.08 11.4 12.2 7.09 10.3 10.1 0 9.41 8.55 7.45 10.9 9.68 8.43 7.67 10.6 11 11.5 9.31 9.77 8.33 1.37 6.98 5.79 10.1 8.67 0.61 9.22 8.92 8.29 9.97 8.04 10.9 9.22 7.09 6.75 8.12 8.51 9.51 6.3 8.84 6.11 4.57 6.88 11.9 5.01 10.4 5.48 2.65 9.91 11.7 5.47 9.81 3.24 8.69 4.63 9.16 7.39 7.38 5.65 8.42 9.66 5.33 8.41 10.8 9.94 8.12 9.35 6.75 8.23 10.1 4.78 9.72 3.24 5.94 0.61 8.43 9.42 9.16 6.76 4.25 11.8 6.82 10.6 13.9 6.64 9.81 11 8.99 6.46 2.65 7.74 1.37 4.75 10.5 5.67 10.4 9.63 6.51 6.45 6.32 2.88 10.4 7.81 8.81 9.89 8.65 10.2 7.55 1.37 12.9 1.37 8.2 8.82 10.4 7.96 5.75 7.47 8.11 8.73 8.64 7.11 10.1 9.74 5.8 5.12 9.96 2.06 2.88 6.51 9.86 0.61 9.72 3.4 8.08 8.92 7.8 2.53 7.47 8.19 10.5 7.5 8.38 9.1 7.46 9.43 10.1 10.6 8.62 8.76 8.93 11.4 9.52 5.46 5.93 7.47 9.11 7.65 5.86 5.94 12.4 8.07 11.7 9.14 9.86 5.96 9.34 9.15 11.8 9.1 10.4 8.31 7.58 10.2 1.04 9.21 0.61 7.08 8.9 7.47 8.5 5.42 2.39 6.66 6.24 4.94 0 1.87 1.37 5.51 12.3 2.88 10.3 11.5 7.91 10.9 9.19 7.89 8.63 8.43 7.72 10.1 9.13 11.2 2.23 8.02 9.52 7.64 5.94 10.5 7.98 2.77 6.22 8.82 8.95 6.37 10.2 7.91 1.04 12.1 4.51 4.86 9.25 8.58 5.17 9.99 9.06 8.95 7.93 10.7 8.36 4.47 7.48 9.56 2.98 10.7 9.92 12.6 8.7 9.78 7.96 9.53 6.22 11.3 8.36 10.6 9.71 9.17 7.04 10.1 10.3 9.68 7.6 10.4 10 10.2 11.9 10.4 10.2 3.98 10.9 13 8.02 2.39 10.3 8.89 2.39 9.44 8.14 9.22 14.1 10.2 3.83 9.38 9.96 7.6 6.78 7.96 7.01 11.7 10.6 5.85 5.37 9.24 9.88 8.07 0 9.27 1.15 2.77 7.71 8.86 9.23 6.79 2.77 1.04 5.53 10.3 7.95 2.65 9.41 8.86 9.34 6.85 9.15 6.73 5.65 8.09 10.3 9.12 11.6 5.67 11.6 9.79 11.2 10.7 5.12 10.9 9.14 8.66 9.07 7.61 6.43 8.8 6.52 9.47 5.91 0.61 11.4 9.83 6.86 10.2 8.85 9.65 11.3 9.51 0.61 10.8 9.5 10.5 5.74 1.37 10.9 13.4 0.61 10.6 6.28 10.5 7.52 10.3 0 7.02 3.16 9 6.58 5.74 5.94 10.1 11.4 8.91 0.61 12.6 7.93 9.8 9.09 3.88 8.11 9.49 6.85 5.78 1.05 10.5 9.96 8.13 9.16 5.51 10.5 9.2 9.45 7.61 11.9 10.2 0 6.44 10.3 2.39 9.47 8.93 10.8 1.04 6.47 0.61 10.9 8.17 8.78 8.28 7.44 8.89 11.1 1.37 6 2.23 8.75 8.65 4.29 9.97 10.4 5.56 6.97 8.53 3.32 2.65 12 3.83 8.78 5.42 6.14 8.33 9.88 6.73 10.3 8.92 0.61 9.43 8.49 6.09 9.05 9.5 11 9.13 9.04 10.2 8.74 8.61 7.23 8.35 9.7 2.53 11.5 8.22 2.23 10.9 7.83 7.84 5.62 9.65 5.49 11.4 6.8 7.63 9.68 9.1 4.21 5.77 6.36 4.72 11.2 0 9.36 4.12 9.42 8.15 7.41 7.64 10.2 13.8 10.6 2.88 11.5 6.68 7.9 9.6 7.94 10.2 10.2 9.34 9.47 7.96 1.87 10.4 9.12 6.79 8.61 10.8 2.23 9.73 10.7 10.2 7.76 11 9.53 8.84 11.6 8.1 7.1 8.46 2.65 7.46 8.56 8.3 6.28 8.68 9.14 9.29 11.2 6.2 6.28 8.24 3.66 0 9.96 12.9 12.8 10.2 10.7 5.03 7.78 8.62 10.8 10.5 9.9 0.61 3.53 12.2 9.92 10.8 7.2 2.53 11.1 7.66 10.5 10.5 10.2 10.1 10.1 12.6 10.9 11.6 7.24 11.6 8.23 8.49 8.9 8.51 6.56 9.87 10.6 4.57 8.98 9.61 2.39 9.55 8.63 12.2 10.2 10.4 9.62 10.2 8.76 10.2 12.1 9.67 9.67 10.4 8.13 8.3 11.5 10.8 10.8 7.85 10.8 6.64 9.54 10.5 7.77 9.39 11.9 10.3 9.45 11 6.39 8.46 11.8 7.69 9.81 8.71 12.8 11.1 2.23 9.06 11.5 7.82 1.37 13.9 10.8 13.1 10.7 10.2 9.17 9.84 11.6 8.03 10.9 12.1 9.87 5.85 10.2 9.48 7.04 10.1 6.51 5.1 7.87 9.56 4.99 8.42 11.7 5.82 4.47 8.26 9.79 5.8 8.99 10.6 9.97 12 10.4 11.8 9.21 10.3 9.64 9.92 7.4 8.33 7.72 8.8 10.4 10.6 7.65 8.91 9.9 8.65 8.76 11.3 13.8 11.4 6.77 10.1 10.5 8.76 10.8 6.71 11 14.3 10.2 3.66 11.6 10.1 10.3 8.7 8.29 9.99 8.73 10.9 11.4 8.57 10.2 10.2 9.26 11 10.9 3.78 10.2 11.3 8.18 10.6 9.17 9.69 9.38 11.4 8.64 9.21 11 7.3 6.78 7.14 5.98 10.3 9.39 12.1 8.91 1.64 8.55 2.39 10.9 5.12 9.69 10.5 9.25 4.17 9.58 2.23 6.37 8.15 16.4 2.06 5.99 9.79 10 8.98 9.81 10.3 4.63 9.7 9.54 7.28 10.2 8.38 7.8 11.4 9.76 8.44 9.9 4.83 12.8 9.88 9.05 6.77 9.85 7.86 10.6 9.76 13.4 6.77 7.49 7.12 7.61 8.09 10.3 8.23 11 5.38 12.2 10.3 7.33 9.45 11.4 8.74 6.86 12.7 8.65 9.55 11.2 11.5 10.3 10.6 10.8 10.4 10.5 5.91 11.3 9.31 12.8 6.32 11.4 10.3 8.33 5.94 8.7 9.49 10 10.3 10.7 10.4 10.1 10.5 10.1 11 6.48 9.63 12.8 13.3 10.7 11.4 10.4 0.61 11.2 9.4 10.2 11.7 9.44 10.3 8.04 10.8 9.85 9.12 10.9 9.85 11.2 7.48 8.5 11 7.69 11.4 6.27 7.69 9.08 8.01 2.88 5.29 1.04 8.47 6.08 8.81 9.73 4.03 7.82 10.3 7.63 8.53 9.65 9.62 6.51 8.68 8.72 10.3 9.28 8.72 7.01 2.65 10.7 9.41 11.3 7.33 9.87 10.5 7.67 8.38 7.28 12.2 10.8 10.3 11 10 11.1 9.85 10.1 9.68 12.2 10.8 10.1 9.56 7.47 9.53 8.47 11.3 8.23 9.92 7.28 11.7 8.61 11.3 5.95 7.59 9.58 10.1 9.08 10.1 12.2 0.61 6.53 9.1 8.62 12.6 10.2 9.46 10.6 7.41 9.34 11.5 10.6 7.14 8.25 6.75 9.89 9.88 3.4 8.05 10.9 9.83 11.2 7.09 11.7 10.4 9.14 9.53 8.55 11.2 11.7 5.15 10.7 5.77 9.35 8.63 5.68 9.79 9.72 8 6.62 11.1 11.6 6.89 7.06 4.44 9.9 8.6 8.52 13.3 8.05 3.53 10.4 2.88 4.12 2.65 6.79 9.69 10.8 8.87 13 10.3 1.04 4.44 11.8 10 11.6 9.8 3.7 9.75 8.99 10.4 7.35 9.8 12.5 10.2 8.31 5.54 7.54 12 9.65 10.8 14.1 9.18 10.4 4.17 12 8.32 9.26
-TCGA-DS-A1OA-01 5.04 9.11 4.91 7.65 7.66 9.16 1.1 3.05 5.21 3.35 4.35 8.73 5.22 6.65 0 9.49 11.4 10.2 6.2 9.17 9.44 12 9.75 2.02 9.17 8.2 4.93 9.62 5.75 6.56 4.13 7.38 6.76 4.77 4.27 3.69 0.82 7.45 1.34 4.73 4.21 4.83 4.36 1.1 7.74 3.23 0 5.77 11.8 7.03 4.06 7.44 9.25 8.83 4.67 4.73 7.9 2.98 6.17 5.1 8.49 3.99 7.87 3.93 3.17 4.06 6.26 4.91 10.2 5.59 5.4 5.64 0 5.85 4.65 2.27 5.57 5.32 5.63 0 5.25 1.88 0.91 9.06 4.09 0.82 6.09 2.02 3.99 3.68 9.34 4.15 6.76 7 6.13 5.31 2.6 3.5 4.47 4.38 0.47 4.73 1.1 4.66 3.23 6.48 4.96 9.24 7.78 5.67 1.1 2.58 8.22 5.98 5.85 2.38 2.89 4.96 3.56 4.15 4.94 7.17 0.82 2.58 0 7.94 1.88 2.27 0.47 13.3 1.5 2.02 3.35 7.97 3.81 3.11 4.69 1.1 5.68 8.61 10.1 10.5 2.91 3.64 5 11.8 0 10.7 2.15 6.96 5.08 0.47 8.07 9.98 11.2 3.5 2.83 2.32 8.44 5.23 6.52 5.08 5.28 0 9.1 6.94 7.65 4.24 8.88 2.91 9.67 9.3 2.83 4.24 5.72 6.97 4.75 2.94 5.64 5.31 5.21 8.31 4.85 5.46 4.02 3.56 0 1.1 9.17 6.17 8.05 7.48 3.45 4.44 4.48 5.44 4.56 10.5 9.69 10.2 3.5 9.03 9.3 10.3 7.47 10.3 7.1 10.6 11.1 12.4 6.2 10.8 11.2 11.3 9.72 12.8 10.2 9.94 5.58 10.2 8.46 9.75 11.3 10 8.98 9.33 0.47 9.7 9.63 11.8 11.4 3.64 9.57 10.7 9.55 6.26 9.89 3.59 9.54 8.38 9.34 7.14 12.4 11.9 12.4 12.1 12.1 12.9 6.35 11.8 10.4 2.38 7.86 9.94 9.28 10.6 10 11.9 5.29 13.1 1.88 9.73 9.68 11.4 8.27 11.4 8.55 10.8 11.1 9.4 9.39 9.39 8.87 9.11 12 7.18 1.34 13.2 10.7 11.3 12 11.1 10.6 8.01 10.8 10.1 9.84 7.96 10.9 9.81 6.1 2.38 9.91 7.58 9.81 10.8 6.96 12.5 7.59 6.89 10.1 11.6 7.93 11.6 10.2 11.7 1.1 9.27 8.32 8.56 13.7 10.6 4.69 8.92 4.67 10.7 9.9 1.72 8.78 7.76 10.5 10.6 9.58 8.58 10.5 10.7 11.6 9.02 9.3 9.8 10.6 8.65 11.1 7.25 9.98 10.9 8.56 9.23 8.01 7.59 11 12.9 9.01 10.3 8.12 12.9 10 9.27 11.7 10.5 10.4 2.62 10.4 0.47 4.3 8.85 7.04 10.9 0.82 6.86 7.89 10.6 10.9 11 8.79 7.76 6.41 12.2 6.64 4.87 6 11.8 9.69 10.8 10.4 7.14 8.74 11 4.15 8.72 8.42 9.7 8.61 9.72 10.4 10.8 4.38 7.93 8.1 9.37 9.53 6.85 13.4 9.34 7.54 10.8 10.3 9.57 8.01 7.35 7.01 10.1 10.4 9.57 9.58 10.3 10.8 12.3 10.2 10.2 8.11 7.3 11.2 8.86 9.05 11.6 9.73 10.3 9.04 6.09 9.4 12.8 9.27 10.8 7.95 10.4 9.67 10.5 3.45 10.1 10.1 12.2 11.9 8.49 6.99 7.81 8.24 8.98 10.8 9.44 11 11.7 10 3.35 11.6 6.13 9.01 8.61 0 8.78 1.54 7.75 5.75 11.5 9.1 7.52 8.44 10.1 9.87 5.18 8.03 10.8 11.8 4.53 11.4 9.59 3.17 5.1 4.12 7.88 8.23 4.09 9.4 6.44 10.8 9.62 7.83 9.94 8.02 6.89 14 11.4 0.12 9.2 8.26 4.65 13.3 9.96 8.33 11.8 4.96 8.15 9.23 4.46 13.5 8.94 7.19 7.42 7.13 14.5 11.5 13.9 7.15 10.1 7.95 10.8 4.71 9.45 7.19 12.3 1.72 8.52 4.89 12.3 8.37 10.5 11.3 9.69 7.23 10.1 8.2 10.3 10.8 10.6 10.4 10.2 9.45 9.29 10.2 9.35 10.5 10 10.7 7.31 9.74 12.6 8.03 5.22 9.62 10.1 10.5 10.2 7.01 11.3 7.73 0.47 9.66 9.87 10.5 9.53 7.92 10.5 14 10.9 9.02 11 6.74 6.94 10 8.49 9.63 9.48 10.2 7.13 9.7 2.75 9.61 8.41 10.4 11 9.15 11.6 9.96 8.92 8.98 11.2 10.6 10.9 9.83 0.82 12.6 9.47 9.58 10.2 11.6 12.1 11.2 10.9 8.25 10.2 10.6 7.92 0.82 10.5 6.94 6.44 7.11 9.53 13.8 12.4 11 9.12 10.1 8.73 3.35 6.38 12.8 12 5.58 13 9.94 10.3 10.2 11.2 9.78 11.4 12.3 11 2.38 10.1 9.9 8.47 10.6 7.97 12.2 8.5 10.2 10.7 11.3 12.6 10.6 8.56 10.7 10.3 11.3 10.3 11.8 10.1 9.73 10.7 9.59 8.43 10.9 8.73 5.76 8.68 9.42 9.42 7.5 11.1 10.5 5.41 10.6 2.27 9.92 4.24 10.7 10.2 11.9 12.2 11.1 11.9 7.18 11.1 8.55 8.01 9.55 8.64 0.47 8.63 9.26 10.8 12 9.4 10.6 12 8.69 7.8 10.7 8.94 10.2 10.1 6.19 9.71 11.2 9.94 9.83 9.22 9.61 11 7.78 10.5 9.74 9.83 11.8 9.7 11.3 9.16 7.77 9.29 6.71 8.73 11.7 11.3 12.7 12.7 8.84 10.9 10.7 11.7 2.67 8.99 8.85 9.86 3.91 6.81 9.98 8.45 6.93 10.5 10 4.85 9.89 11.1 13.4 9.99 5.84 12 10.5 8.27 6.85 1.54 7.93 10.5 4.77 7.45 7.1 8.16 10.6 9.52 10.3 5.53 7.62 5.44 9.96 10.1 11 3.05 2.75 9.85 7.07 0.82 4.69 11.7 10.4 4.67 3.64 8.52 1.34 9.57 10.3 9.37 1.97 8.26 13.8 9.3 9.21 11.1 9.83 10.8 12.2 8.47 11.3 9.23 9.32 5.43 10.8 8.55 0.47 0 1.72 10.1 6.47 10.8 0.82 7.81 8.46 3.45 5.16 12.1 12.6 6.38 11.1 12.5 9.32 4.36 10.9 10.2 10.3 9.61 9.93 11.2 10.3 10.2 10.8 8.47 9.14 12.4 8.87 6.86 9.05 8.32 8.09 8.09 12.2 6.85 10.6 7.63 5.84 8.26 10.6 6.53 3.05 3.72 11.8 8.76 0.47 7.57 8.49 9.88 10.7 10.3 7.23 7.22 8.71 0 5.97 7.01 8.82 4.62 6.08 8.22 7.33 3.11 4.67 0.82 10.2 9.74 4.77 11.6 11.7 8.89 6.68 10.9 11.1 0.47 6.62 5.45 9.91 8.67 11.3 9.53 9.22 10.3 7.44 2.83 6.43 9.51 9.23 0.47 5.77 8.5 9.21 2.58 2.75 13.2 7.51 9.51 7.76 3.4 1.88 9.95 9.34 11.2 10.8 2.38 9.05 9.77 8.4 12.2 8.18 10.3 9.83 10.4 9.25 4.68 6.79 8.1 11.6 10.3 10.4 0 10.5 9.66 11.6 10.8 11.1 8.07 8.25 11.1 10.7 9.77 1.72 12.5 2.38 10.9 5.26 10.3 10.2 7.91 1.1 9.05 11.4 11.4 10.7 8.8 9.86 12.3 10.7 10.4 10.7 10.1 8.37 11.2 12.3 10.7 11.9 11.7 12.2 6.63 11.3 8.77 7.82 9.58 10.4 11 13.3 12.2 10.2 11 10.3 8.07 8.58 11.3 8.48 7.66 10.9 6.74 11 10.3 10.4 10.8 4.51 3.17 12.1 7.74 9.97 6.97 10.1 9.03 8.39 10.1 8.27 9.43 1.63 3.4 8.55 9.01 2.27 12.2 7.93 9.45 9.19 9.51 7.76 8.71 7.96 10.5 8.12 2.98 6.67 1.1 3.35 10.1 11 8.68 12.9 8.19 8.86 10.8 9.73 7.14 8.31 9.37 2.58 8.95 11.9 9.49 11.3 10.6 11 8.85 11 10.1 10.9 9.82 7.49 6.78 9.27 11.5 9.05 9.23 8.57 4.98 11.6 9.8 8.39 11.1 7.88 5.33 11.8 11.5 12.2 8.07 5.97 11.3 10.3 6.61 5.5 8.54 4.09 5.48 9.13 11.2 8.57 12.5 6.66 8.97 9.72 8.32 5.83 9.19 8.9 10.1 9.57 7.59 10.2 11.4 10.1 11 9.03 6.89 10.3 3.59 7.31 8.17 9.98 0.82 4.81 0 8.57 8.39 11.1 1.1 9.64 10.6 1.34 11.8 8.47 9.14 5.89 7.61 7.27 7.58 0.82 4.24 10.3 10.1 4.46 5.8 2.02 9.01 8.65 7.78 7.6 10.2 10.1 10.4 6.53 9.56 9.89 9.05 11.2 11.2 9.11 4.12 5.05 10.3 7.06 4.06 11.2 10.6 5.95 8.53 5.28 11.6 7.45 10.2 7.59 6.52 9.65 12.2 10.3 0 7.83 10.4 7.53 8.67 9.56 9.09 11.7 9.88 8.11 8.61 8.29 6.56 8.43 10 5.79 11.9 10 8.21 6.91 8.56 3.09 8.56 8.63 11.5 4.81 14 8.44 8.28 7.55 6.49 9.1 10.6 6.34 9.17 10.7 9.61 7.85 6.88 10.8 10.7 5.33 6.46 10 9.3 6.22 8.31 6.85 5.9 8.53 7.03 8.2 7.59 9.52 0.82 1.1 9.38 10.5 9.12 8.77 10 9.54 7.12 11.2 5.06 12.1 6.04 7.22 6.98 9.28 8.44 9.65 9.36 9.93 6.3 0 4.01 8.23 11.3 8.09 9.17 8.29 4.65 9.24 10.1 10.1 8.04 7.3 2.02 8.55 5.21 11.6 9.32 8.26 6.63 8.77 9.11 8.37 9.81 10.2 9.58 9.68 7.75 10.1 8.64 8.84 10.1 8.99 1.1 9.93 7.15 10.6 9.88 7.19 12.1 11.8 3.77 11.5 7.89 5.13 9.97 6.49 1.72 9.26 8.85 3.35 8.45 10.7 10.7 11.1 7.5 7.61 10.2 11.2 9.83 6.88 7.88 6.32 9.59 10.3 11 1.34 11.5 9.69 11.8 9.08 12.3 9.65 12.1 11.8 8.75 9.29 8.59 3.72 10.4 10.5 7.75 10.7 9.36 10.3 6.89 11.9 1.34 9.52 7.78 6.31 2.02 6.52 4.89 7.53 7.35 2.37 12.3 7.36 11.2 7.61 9.66 6.36 10.9 1.72 10.3 0 7.43 8.37 2.15 4.84 10.5 3.29 2.58 2.27 5.81 9.08 4.21 2.83 7.83 3.44 5.51 0 0.82 6.68 5.56 8.67 6.42 9 7.5 7.85 0.82 8.22 8.06 3.11 10.5 7.96 8.62 9 9.24 1.54 9.02 0.47 5.18 9.01 4.78 6.86 6.36 6.53 8.85 1.72 5.16 6.11 3.23 8.78 11.4 3.77 8.25 8.35 4.6 6.86 7.73 7.48 6.29 8.56 9.77 10.2 9.01 9.42 7.38 3.17 7.78 4.02 8.27 4.3 8.2 12 8.32 9.41 6.31 11.2 9.8 8.71 3.68 8.29 6 8.4 7.23 8.57 8.92 10.9 9.15 7.69 1.1 5.77 7.09 11 8.16 9.87 8.92 3.35 4.6 8.79 7.08 10.2 12.2 5.97 2.58 2.58 9.56 12.3 11.7 6.19 8.23 8.9 9.62 10.9 5.96 9.87 7.77 6.2 8.94 1.88 4.06 4.33 4.71 7.83 8.58 8.95 2.91 9.55 6.4 4.71 4.6 9.64 8.52 0.47 11 9.89 2.15 7.12 7.93 0 2.83 9.66 8.08 10.5 8.01 8.07 10.5 7.14 9.7 7.65 10.8 7.84 10.3 11.1 4.27 6.41 5.02 8.46 9.74 9.14 8.39 7.59 9.16 2.38 10.4 5.61 5.54 1.34 5.14 5.51 9.83 6.19 3.35 3.68 4.62 1.17 8.59 0.47 0.47 9.54 9.05 7.65 9.42 9.62 0.82 5.54 8.41 6.4 9.8 8.95 3.4 8.17 6.52 3.55 2.02 9.99 11.4 10.9 7 7.89 10.9 8.1 3.55 7.61 6.52 3.55 3.77 8.91 9.63 3.17 10.2 5.1 4.15 7.89 13.7 9.92 10.8 1.72 4.09 1.1 9.81 10.3 6.98 6.98 11.5 6.14 7.51 9.58 6.16 7.62 10.1 6.86 8.56 0.47 6.54 4.87 8.53 0.82 9.21 9.67 7.19 3.17 8.18 10.6 6.04 0 7.27 7.83 5.76 9.02 9.72 8.54 9.61 7.81 7.58 4.21 7.59 8.15 9.88 13 7.61 2.58 5.1 7.85 7.19 1.34 10.9 11.3 8.9 5.76 10.2 4.18 7.26 9.99 11.3 11.6 9.1 9.77 6.56 4.79 8.19 7.85 8.97 7.56 4.67 7.9 8.2 8.54 10.6 4.36 6.15 11.2 3.64 1.88 6.85 12 12 8.5 8.7 7.62 7.61 12.4 1.1 9.42 8.1 3.77 4.18 8.32 10.1 9.77 8.89 10.8 0 0 0.47 4.71 1.1 9.62 5.05 7.52 6.69 9.56 7.19 6.01 7.51 9.63 8.38 5.82 11.5 9.24 8.28 1.88 9.45 8.58 6.69 7.57 7.14 8.07 9.74 2.02 9.26 5.72 9.99 1.1 8.95 6.12 7.79 7.29 4.06 8.35 8.13 6.1 3.84 6.99 10.1 5.55 3.59 8.89 3.45 5.29 9.02 9.49 0.47 6.68 0 9.24 0 7.58 7.5 6.67 6.4 4.21 8.9 6.92 6.2 1.1 10.1 10.1 3.17 2.48 8.33 9.05 8.06 10.6 8.78 6.08 8.59 8.72 6.32 10.6 9.53 2.83 2.91 7.95 9.41 8.2 4.65 1.88 6.81 10.3 9.34 6.35 1.72 0 5.63 0 6.89 8.36 8.16 10.8 8.19 9.77 7.58 5.23 9.76 9.15 4.36 5.25 8.93 8.74 5.63 12.6 8.04 7.77 3.29 8.13 1.1 8.36 8.21 0.82 7.37 5.28 6.53 10.3 7.62 9.74 9.81 5.46 7.06 6.27 6.6 2.02 8.52 6.22 6.75 9.03 6.78 10.7 2.91 2.27 9.54 3.35 1.88 4.18 5.18 6.78 8 9.41 9.44 8.86 6.37 9.51 10.1 4.33 10.9 10.4 6.76 6.97 5.32 9.76 8.11 4.21 8.32 8.43 12.2 8.79 4.74 11.2 6.52 3.72 2.02 5.5 9.1 11.3 8.39 8.13 9.67 3.45 0.47 4.38 0 6.22 1.54 10.5 4.67 7.69 0.82 2.6 7.41 8.68 8.24 8.22 0 1.88 10.7 9.98 5.84 7.54 8.61 3.92 9.37 11.4 5.86 3.92 1.54 9.33 14.3 6.26 8.03 2.48 13.6 9.83 5.86 2.27 4.79 6.66 4.91 13.2 1.34 8.35 7.99 14 0.82 8.55 11.3 0.82 8.17 1.72 10.1 9.91 10.2 9.27 1.88 9.4 1.34 7.42 7.71 11.5 3.55 8.18 5.16 4.15 1.88 6.8 4.58 5.5 10.3 6.83 4.48 2.83 3.35 4.3 13.2 10.5 10.8 8.54 8.46 10.8 1.88 2.91 10.5 8.43 11.8 9.89 4.51 12.3 7.56 12 8 7.62 7.03 3.23 8.92 8.58 9.45 9.12 10.7 9 9.93 5.43 8.59 4.46 7.34 7.49 6.43 5.05 7.63 0.82 9.23 5.33 10.7 6.7 4.53 6.61 3.23 8.78 10.8 8.66 5.8 8.71 3.84 7.83 9.07 8.27 0 9.92 6.56 7.63 9.15 9 5.58 9.92 10.2 3.68 3.96 5.69 2.38 9.58 6.51 9.39 5.43 8.23 0.82 2.38 0 0 9.18 2.83 11.4 9.48 7.95 11.2 11.5 9.03 4.67 8.34 11 2.15 9.57 9.37 8.27 11.2 10.1 8.27 0 9.94 8.55 1.1 9.65 2.98 0.82 8.22 9.28 7.16 8.25 7.25 9.11 0 2.63 7.68 10.1 8.11 8.55 1.54 4.36 3.27 8.16 9.46 7.89 12.7 8.69 8.29 7.73 7.35 11.5 1.1 7.18 4.67 10.2 7.56 6.08 6.3 6.8 1.54 9.97 4.43 4.62 10.1 8.55 11.3 9.69 1.88 2.15 7.26 5.74 11.8 4.3 7.5 6.27 10.3 9.1 10 7.06 8.28 7.61 8.31 10.2 1.88 8.87 11.2 9.55 4.15 8.25 9.93 5.41 7.76 10.8 3.64 11.1 8.6 6.35 11.7 11.4 10.9 9.04 2.3 6.46 8.31 9.73 8.29 9.05 3.23 9.25 1.72 9.62 5.6 1.88 3.68 3.5 8.66 7.6 0 10.3 2.38 3.81 8.65 4.43 0.82 13.6 8.48 12.4 9.38 9.65 5.53 6.98 8.6 9.72 6.42 8.63 5.55 9.74 9.42 9.14 9.2 7.84 8.93 4.46 7.87 6.4 8.63 3.96 1.54 10.4 5.4 1.88 10.6 4.41 0 5.44 5.11 6.83 11.5 8.06 0 5.51 9.11 8 5.29 3.59 9.75 7.39 7.31 7.26 10.6 9.41 2.02 11.4 9.54 7.93 0.82 8.23 7.52 2.38 5.75 4.48 8.32 7.08 10.9 11.6 6.69 1.54 0.47 9.09 6.89 9.01 10.8 11.2 5.74 5.9 1.88 10.1 9.35 9.13 2.83 9.4 9.99 0.82 5.36 6.47 13.6 4.79 4.73 8.81 9.8 4.36 0.47 7.68 5.43 4.43 1.34 8.99 4.6 5.02 3.59 8.53 8.65 8.12 5.13 6.9 7.84 5.94 5.39 9.84 9.53 8.79 4.38 1.54 9.12 8.84 5.01 11.2 10.6 5.94 6.72 8.66 6.28 7.91 5.23 8.94 2.38 10.3 1.1 10.6 4.94 7.78 9.4 2.83 2.27 11.5 9.88 5.81 3.81 0.82 3.4 3.17 4.91 2.75 6.15 9.32 0.47 8.12 10.8 10.6 11.3 8.79 9.98 11 7.15 5.44 10.6 12.3 4.93 7.91 8.81 9.52 3.23 6.01 8.86 5.65 4.06 7.25 6.32 6.07 8.15 9.73 7.93 8.07 1.34 0 9.23 6.51 9.48 9.19 7.72 6.46 7.11 4.98 1.54 7 8.58 0.82 4.18 11.4 7.32 9.33 7.74 4.83 2.02 0 8.86 5 11.7 10.4 10.8 4.38 6.1 4.67 9.19 6.1 7.69 8.71 11.4 7.24 8.56 12.5 2.15 4.09 6.38 11.3 4.12 7.46 11.1 5.03 1.1 7.5 5.5 10.9 1.54 7.34 7.68 6.61 9.6 11 8.66 7.79 7.17 4.82 2.48 7.31 10.8 5.29 8.68 2.27 2.91 11.5 9.43 6.2 8.99 0.47 3.96 8.96 11.1 6.44 0.82 9.14 1.34 3.29 1.1 7.89 0.82 7.22 7.12 5.93 10.6 2.02 12.2 6.85 8.11 5.97 1.54 2.15 10.9 2.02 10.8 9.03 5.96 1.1 6.6 0 4.41 2.48 6.17 0 9.76 1.88 1.72 5.18 1.88 10 1.88 9.24 1.1 9 8.79 7.76 9.01 5.39 8.25 10.7 5.23 12.6 4.96 8.99 8.18 8.08 9.72 7.73 9.87 1.88 0 9.85 2.38 5.65 8.28 13.3 5.75 14.4 7.97 4.91 8 3.59 2.02 2.67 2.15 6.51 7.97 6.7 9.8 8.87 8.85 0 10 8.83 8.2 8.78 7.38 5.6 5.5 0 9.64 7.86 8.86 6.08 5.97 5.22 2.15 2.48 8.74 7.34 7.02 9.68 5.01 6.6 5.37 5.64 8.49 4.94 0.47 7.95 7.56 7.11 8.85 4.51 3.55 6.05 4.51 2.83 1.72 8.74 8.91 2.67 7.06 5.85 8.54 5.35 8.47 9.96 6.99 7.86 8.31 1.54 1.34 11.7 4.27 0.82 10.6 9.24 10.5 10.4 0.82 9.69 6.29 8.31 9.52 3.11 12.7 9.28 0 9.65 4.33 3.5 2.48 8.54 2.02 2.98 6.39 6.55 8.38 9 8.7 2.15 8 7.98 3.4 2.91 13 11.1 5.57 8.54 2.48 7.3 12.3 9.85 10.8 1.72 6.51 13.7 0.47 3.5 12.3 0 1.72 0.82 2.02 3.15 1.54 9.4 1.1 1.1 7.99 9.03 6.67 6.85 9.99 2.24 5.13 6.22 9.09 7.48 6.79 7.43 4.12 9.1 7.57 9.02 3.72 6.47 3.68 9.3 8.68 12.4 4.15 8.22 6.83 2.67 6.29 8.75 5 15.2 8.79 14.6 9.3 1.72 3.72 5.37 10.3 8.21 6.06 0.82 2.48 1.54 9.62 7.64 8.74 11.2 5.58 0 8.04 3.84 1.54 5.41 10.8 3.05 4.71 12.6 7.43 10.4 0.82 6.59 2.38 9.42 2.67 4.94 7.25 0 8.17 6.5 9.63 11.8 7.14 1.1 6.44 0 5.7 0.82 11 4.83 9.16 10.4 7.56 7.95 4.65 11.6 9.27 9.59 8.87 1.88 3.64 8.31 7.11 1.1 10.7 9.49 6.18 7.72 12.1 2.48 9.68 7.29 10.5 7.08 4.89 4.3 2.02 6.86 8.24 10.5 7.89 5.19 7.63 3.29 8.02 2.15 7.12 1.1 5.43 9.52 8.04 4.41 4.85 5.62 8.45 4.12 7.89 11.3 7.82 7.37 8.65 10.5 7.56 8.09 11.2 8.05 2.02 12.1 11.1 8.35 6.66 9.8 6.32 0.47 3.5 5.86 11.5 6.8 5.56 6.47 11.1 1.34 10.9 9 10.9 8.49 8.72 5.25 7.64 8.59 0.47 6.79 1.54 1.1 7.97 9.22 2.98 10.2 8.12 4.08 0.82 7.78 6.34 1.34 9.7 10.3 3.43 1.34 7.58 0.47 7.35 6.15 6.83 8.4 9.3 1.34 2.67 6.12 8.97 3.64 6.75 10.3 8.71 1.88 11.4 5.05 7.63 6.5 4.06 2.02 8.85 6.52 7.69 9.95 11.3 8.35 8.29 0.82 0 9.53 5.33 9.03 4.65 8.7 6.98 3.29 10.6 2.27 5.46 1.77 5.13 10.4 4.3 9.46 3.96 3.11 4.24 7.56 3.4 6.02 7.24 5.69 2.27 7 6.03 7.62 1.88 10.3 3.81 9.77 2.15 5.68 2.27 6.73 5.58 8.75 5.69 5.22 4.51 6.89 7.49 0 8.06 4.46 3.55 0 4.81 1.34 3.4 3.4 3.08 4.71 10.9 7.29 9.56 5.62 9.67 5.9 3.92 8.37 6.59 7.79 10.8 2.91 0 11.7 10.9 0 8.8 1.72 3.68 1.1 0.47 11 8.47 6.5 4.18 11.2 9.93 0 6.51 11.4 5.69 10.8 6.32 8.83 3.59 5.73 5.64 8.21 9.64 9.7 10.8 3.59 8.97 2.75 7.47 9.27 3.99 4.06 10.6 10.3 3.72 7.32 5.32 4.41 11 1.54 6.24 10.5 1.1 3.59 9.44 0.47 5.83 8.27 2.38 7.41 10.9 11.6 3.29 11.7 7.85 1.1 9.1 7.1 10.5 6.91 2.75 8.06 3.64 4.81 4.65 6.46 5.9 9.09 10.8 9.63 9.8 6.45 2.75 8.18 8.63 5.8 7.21 6.83 9.36 6.65 1.72 9.72 8.04 7.21 7.81 6.1 6.38 6.16 7.02 6.09 3.05 8.62 7.62 4.24 6.34 7.85 10.2 1.54 7.32 4.46 9.09 9.69 10.9 11.6 6.12 10.9 7.33 7.07 1.1 6.89 9.38 3.99 5.14 8.63 9.1 8.66 11.5 10.9 0.47 9.07 1.88 11.7 3.72 10.8 1.1 2.91 0 11.2 2.15 13.1 1.77 2.48 4.24 3.45 12.8 3.4 9.01 12.4 12.4 6.51 4.46 7.14 6.29 9.66 4.75 11.7 9.18 12.2 13.3 3.72 7.5 11.2 4.48 10.2 9.29 0.82 9.95 3.96 7.3 13.6 11.7 3.59 8.69 9.81 7.05 3.59 8.29 5.98 11.5 10.1 4.67 9.06 8.49 6.55 7.68 8.14 9.18 8.5 0.47 9.67 10.3 9.61 2.15 10 0 2.98 9.27 3.29 9.15 3.05 6.5 6.69 6.42 5 7.48 0.82 8.44 8.42 1.1 1.72 7.7 6.56 2.98 2.27 6.29 8.48 4.82 7.21 6.55 2.58 0.82 11.2 8.7 6.94 3.23 6.05 7.51 4.43 1.88 1.1 3.23 6.77 0.47 2.98 9.41 9.96 8.04 10.1 6.66 1.54 10.2 4.02 0.82 4.15 7.8 1.34 10.8 8.09 7.69 8.03 4.38 10.3 4.36 11 9.33 3.72 13.6 1.88 7.1 12 6.36 11.1 2.58 9.29 9.11 9.68 10.3 14.2 9.97 8.82 7.26 10 11.3 10.8 11.9 6.47 7.86 0.47 8.85 10.8 9.52 10.3 11.7 3.55 10.1 6.49 10.8 0.82 0.47 2.02 8.93 8.46 6.12 4.77 9.86 4.12 9.15 8.7 7.92 2.02 1.1 5.93 2.58 5.45 9.13 2.67 7.38 10.8 12.6 9.43 3.4 10.3 11.3 11.7 11.5 6.33 10.1 7.36 10.3 8.1 5.13 7.27 8.29 9.46 9.01 3.64 8.56 9.1 5.73 9.69 9.81 10.7 0 10.8 3.55 1.34 9.24 13.2 6.02 4.02 11.5 11.5 8.87 12.1 4.24 11.1 14.8 8.7 3.68 9.82 8.23 7.11 10.1 7.3 11.9 7.04 9.92 6.78 10 9.31 11.8 2.48 7.49 1.34 12.2 10.5 9.51 12.2 10.8 9.69 10.8 6.68 9.1 9.05 10.6 5.79 9.32 9.36 5.65 7.94 12.2 0 13.5 11.2 11 12 10.6 4.21 9.51 7.13 7.33 7.61 8.6 8.45 12.3 5.21 8.39 10.8 15.4 3.84 2.58 9.03 10.5 6.32 7.62 10.1 12.2 13 13.7 14.7 9.91 11.6 9.23 8.58 9.25 11.9 8.93 3.59 3.64 10.5 11.6 9.76 9.17 9.21 9.46 11.7 6.07 9.55 7.99 11.7 6.04 5.25 6.15 8.03 0 9.18 4.48 6.14 8.82 0.82 6.7 10.5 8.81 3.4 9.46 7.84 8.38 10.6 4.53 8.04 9.99 9.19 0.78 10.4 6.77 8 2.57 11.8 3.4 6.17 12.9 4.82 1.54 6.4 2.45 9 5.29 4.15 8.44 8.08 8.01 13.4 5.64 8.6 9.25 3.84 7.18 9.76 13.3 7.28 12.1 9.44 11 11.2 13.6 13.8 11.8 13.4 2.02 8.82 0 12.8 4.33 5.56 10.8 0.47 1.72 1.1 7.62 1.88 10.8 6.72 4.18 4.3 10.3 6.26 7.27 4.6 1.88 9.95 5.18 7.42 8.04 13.8 8.73 5.31 9.14 12 9.44 10 0 1.1 9.89 7.94 5 10.2 10.7 8.89 2.58 6.63 2.27 10.7 9.8 6.59 9.71 7.11 1.37 8.22 9.55 7.2 3.96 8.58 0.82 0.47 0 9.84 7.17 4.53 6.55 8.89 8.92 10 7.38 9.82 7.53 8.82 6.06 7.42 8.14 8.94 8.2 5.66 9.98 10 9.77 9.19 11.6 10.2 10.6 4.24 8.63 4.87 8.97 5.68 10.5 3.64 12.7 5.28 6.62 9.35 8.88 9.39 6.79 9.66 9.9 4.21 13.1 3.59 8.79 1.1 10.1 3.11 10.4 7.87 6.77 9.78 1.54 0.47 8.44 9.82 7.26 4.48 12 8.6 2.15 2.38 9.59 5.03 8.86 7.84 9.46 7.56 11.3 8.46 5.7 5.21 5.81 8.89 5.37 10.3 7.92 1.88 14.3 4.3 6.42 2.15 0 0.82 10.8 6.08 8.25 6.22 12.3 11.1 9.44 8.85 7.96 8.08 13.9 9.11 4.98 1.54 5.8 8.76 9.35 5.7 8.2 8.15 8.25 9.16 10.7 6.49 13.3 9.69 9.41 7.64 6.57 9.92 12.1 9.43 3.64 8.37 11.7 13.1 11.1 5.03 10.6 9.72 1.34 9.32 0.82 10.2 10.9 8.92 7.85 11 7.88 11 8.55 9.49 8.4 6.74 10 8.41 10.1 0.47 4.96 9.61 11.3 7.36 10.4 11 0.82 8.58 12 1.1 0.82 11.5 9.04 8.03 4.33 11.6 4.21 7.14 10.1 7.29 10.1 7.85 10.2 6.89 11 10.9 5.05 11.8 10.2 11.5 9.1 10.3 2.98 10.8 2.02 11.6 10.9 10.5 9.97 8.21 10.7 13.2 7.13 4.6 5.94 7.62 7.45 0.47 10.1 8.21 11.3 7.84 8.7 12.8 0.82 12.6 10.9 10.3 1.1 7.51 9.02 1.34 12.2 10.6 6.71 9.27 10.2 0 9.3 8.02 8.81 6.11 11.8 6.39 1.88 7.27 3.17 11.6 8.4 7.6 9.8 12.5 0 11.5 6.44 14.2 9.65 8.45 9.54 8.84 9.68 11.1 10.8 9.14 7.92 9.73 10 5.31 8.32 9.98 9.56 13 10.8 6.69 10.5 7 6.53 4.89 11.8 9.34 12 4.15 5.31 8.14 12.6 4.91 8.2 3.29 11.3 12.9 6.72 7.95 8.96 7.46 10.5 10.3 4.71 6.72 8.18 10.2 7.18 9.65 5.58 8.32 7.79 0.47 9.06 10.8 8.14 12.8 9.65 3.88 10.3 3.84 8.09 7.93 7.35 2.75 2.48 2.38 8.54 2.48 1.54 10.9 0.47 8.93 8.28 9.7 4.43 4.58 0 1.72 8.75 4.89 7.25 3.35 9.56 7.56 1.54 6.1 6.8 7.73 5.36 6.53 3.53 6.03 6.05 13.2 5.32 8.52 6.61 3.4 7.92 9.69 0.47 6.91 7.99 7.23 5.26 11.8 8.32 6.4 8.38 9.43 5.74 10.3 7.7 9.28 7.31 9.01 7.19 7.29 6.52 4.43 6.76 10.4 1.88 8.13 1.1 4.53 6.04 9.21 0.82 5.76 8.73 3.84 10.8 0.82 8.7 10.3 2.67 8.06 7.72 8.77 3.7 8.15 5.77 1.88 10.4 8.81 0 8.78 8.72 7.64 8.75 4.02 9.04 7.31 7.28 4.56 8.69 5.68 9.91 5.51 10.9 8.67 9.6 2.83 11.3 9.48 8.51 8.53 7.99 9.25 8.55 12.6 6.36 8.55 6.51 1.72 8.35 7.11 1.54 5.75 11.6 9.84 2.58 0.47 1.34 7.8 0 3.81 9.94 0.82 2.38 4.15 1.72 4.94 5.32 7.21 5.32 3.81 9.9 8.07 9.55 2.02 8.86 8.78 10.6 6.96 11.2 5.33 8.58 7.89 6.27 4.71 0 7.78 2.67 9.73 3.29 3.92 3.96 14.2 8.4 10.5 0.47 8.49 6.1 7.74 10.1 3.96 9.24 10.5 9.17 10.5 8.05 8.76 7.23 12.9 8.58 8.44 14.2 11 3.68 9.94 7.27 9.56 8.78 11.5 3.72 12.2 7.72 9.9 9.31 9.84 11.2 11.5 9.76 0 7.99 9.64 6.55 7.16 10.7 10.1 10.8 7.84 2.68 0 8.85 8.5 9.12 9.84 7.7 9.03 7.53 8.14 2.38 9.8 8.46 9.47 10.5 9.96 9.58 8.82 10.2 0.47 9.38 7.71 10.2 11 0 11.5 8.63 10.2 5.76 10.8 8.58 9.88 8.92 11.2 9.83 8.39 8.99 11.9 8.35 8.9 9.81 8.68 9.54 9.98 9.64 8.05 9.7 9.75 1.1 8.82 8.71 5.6 1.54 8.34 5.54 9.66 9.09 11.7 10.3 10.8 10.8 9.27 9.64 8.53 12.7 6.51 6.24 11.5 0 8.59 12.3 8.59 7.65 8.55 8.27 9.95 6.96 10.1 9.76 10.3 10.9 7.33 9.35 9.14 9.95 10.6 10.6 4.6 8.13 12 9.59 10.5 0.82 8.72 8.67 9.37 7.8 4.48 11.5 9.12 6.75 11.3 3.64 4.81 10.7 9.38 8 6.93 9.64 11.7 0.47 1.1 0 9.57 11.4 9.69 8.9 8.15 9 1.88 9.03 10.6 9.5 9.52 9.38 10.5 1.1 8.07 3.72 10.3 10.3 10.7 9.36 11.7 9.51 11.7 2.83 12.2 11.9 10.1 7.36 1.88 2.02 11.2 9.66 9.4 7.95 10.2 8.98 8.09 6.73 9.47 8.15 10.6 11 9.3 10.5 8.47 6.61 9.63 9.59 11.2 10.7 8.99 9.66 10.6 11.3 5.05 8.17 6.6 10.3 11.5 10.5 10.1 10.5 9.52 6.42 9.15 9.96 10.9 1.88 7.46 9.83 9.86 11 8.93 9.8 7.63 8.99 10.4 9.98 8.52 9.16 5.77 10.3 5.11 9.98 9.29 9.6 9.82 9.7 8.33 9.37 7.69 8.67 10.1 8.9 4.6 10.3 8.15 10.3 9.17 4.5 9.32 9.36 10.2 7.01 8.23 7.55 10.8 5.18 8.49 8.38 9.55 9.53 10.4 3.68 10.3 7.79 9.21 10 6.32 9.03 9.78 7.36 9.86 10.4 10 11.6 9.78 11.8 9.53 8.94 9.2 2.58 4.58 7.27 0.82 10.3 9.83 10.5 9.21 9.12 9.5 8.59 13 10.6 9.89 9.74 9.84 10.6 10.9 9.62 10.5 11 8.41 12.8 10.7 8.94 8.8 11.3 9.53 8.9 10.9 8.64 8.77 8.21 8.2 9.18 9.61 10.8 10.7 10.2 9.26 9.3 11.2 11.4 11.9 10.1 12.9 6.51 9.43 12.2 10.4 11.8 10 11.2 6.12 9.92 12.2 3.59 10.5 7.22 0.82 9.19 8.59 10.4 9.35 11.5 10.2 11.7 10.3 7.67 12 9.27 4.53 9.7 8.76 9.19 12 11 5.54 8.7 9.04 9.7 10.5 7.48 7.11 11.1 8.76 7.86 2.02 9.41 6.01 8.18 10.1 8.14 10.1 11.1 3.99 7.99 8.91 9.95 8.79 4.83 7.42 9.81 10.1 6.38 9.93 8.83 9.48 4.43 9.74 9.14 9 10.6 11.5 10.6 9.05 10.7 5.41 8.56 10.2 10.7 9.13 8.64 8.55 11.3 10.4 7.34 1.1 9.51 4.18 5.55 8.94 8.29 7.38 7.69 10.2 9.68 9.24 9.91 12 3.99 9.84 11.2 3.29 10.3 9.15 1.34 9.4 10.2 7.37 9.98 8.6 10.1 8.48 10.4 7.75 10.5 0.82 11.2 9.11 10.3 10.1 6.48 9.81 9.47 11.5 10.2 9.96 7.15 10.5 9.11 9.54 8.83 9.05 9.11 10.9 9.56 8.58 10.3 8.57 10.3 10.8 2.48 14.1 11.7 10.6 11.5 11.3 9.49 9.95 7.93 10 2.15 10.5 9.7 9.43 9.18 11.7 6.52 11.9 9.94 12.5 10.2 8.82 7.92 9.67 7.7 9.61 9.87 10.9 9.19 9.98 9.47 11.2 10.4 8.88 10.3 10.7 8.61 11.4 11.7 8.82 9.86 9.48 9.17 10.9 10.4 9.67 9.43 9.37 10.6 10.8 8.52 3.77 8.88 8.18 9.41 9.37 5.33 4.24 2.15 7.27 0 9.65 10.7 8.84 11.1 8.92 7.08 10.4 9.78 2.38 8.93 7.04 10.1 11.9 9.48 7.8 11.6 11.7 12.6 8.4 8.78 6.83 2.91 4.33 8.69 8.74 11.8 7.34 6.56 5.57 11.6 10.1 11.7 9.01 9.91 6.11 10.4 11.8 10.4 1.34 9.82 10.3 7.72 9.61 4.36 9.86 6.22 4.48 8.19 11.3 6.44 5.68 9.53 2.75 9.68 9 9.34 11.2 11 9.39 11.2 10.2 11.4 10.3 10 8.27 10.4 9.09 0.47 1.72 13.9 8.91 9.78 13 10.1 11 6.55 8 11.7 9.37 8.49 0.82 7.07 10.2 7.09 6.56 9.31 9.55 7.45 10.8 0.82 8.36 2.83 2.83 7.59 10.5 11.8 10.7 4.41 6.88 7.85 10.1 8.95 9.59 11.2 10 9.95 10.2 3.5 1.72 10.6 7.26 7.92 9.75 0 6.03 7.47 2.15 11.6 10 9.58 4.36 11.6 8.97 8.91 9.61 11.2 8.49 7.17 9.17 11.6 8.55 9.26 8.57 9.37 9.72 7.41 5.56 11.4 8.37 10.6 11.5 9.41 11.9 10.5 0.82 10.2 9.49 10.5 10 2.27 1.1 1.1 2.83 10.8 8.72 10.9 10.8 6.3 9.98 5.49 10.5 6.7 10.1 10.8 11.4 9.94 9.82 9.6 14.4 13.7 7.83 9.98 8.65 8.28 7.88 9.91 9.81 8.35 9.25 10.3 5.72 6.64 4.85 9.4 8.38 10.1 11.2 3.35 9.06 10.1 10.7 9.52 8.76 10.5 8.17 0.47 8.48 4.73 2.98 12 9.92 7.05 11.7 9.97 12 10.7 3.5 8.6 7.65 8.8 8.24 9.23 9.22 10.3 10.3 7.93 7.81 9.78 8.86 6.7 6.26 11.9 8.74 6.4 6.38 4.94 4.09 8.03 3.77 7.69 5.1 9.63 1.72 4.67 0.82 7.22 8.73 5 6.32 7.74 8.66 2.58 1.34 10.2 10.7 9.56 8.22 5.92 6.12 4.33 14.5 7.72 10.5 3.29 15.1 9.93 10.2 12.7 7.36 9.77 10.6 6.15 0 8.5 9.87 4.89 4.77 7.22 5.11 4.02 8.05 0.82 4.38 8.79 10.7 9.66 1.34 5.53 7.83 9.56 10.3 8.63 4.51 10 6.56 7.24 9.68 6.28 6.32 10.3 9.03 1.88 10.1 7.01 7.57 8.66 8.37 6.61 0.47 9.94 10 8.39 7.64 6.14 5.05 5.11 9.47 1.54 6.95 11.5 0.82 1.72 7.59 3.81 0.47 8.92 8.51 4.85 6.43 6.76 1.1 9.38 7.72 5 7.82 9.07 12 7.9 10.2 12.6 0.47 1.34 10.2 6.47 8.74 9.25 8.49 7.67 2.83 6.71 6.32 4.46 0 5.14 9.52 9.76 1.88 5.63 5.39 9.42 0.82 8.75 5.16 5.79 6.03 0.47 11.1 0.47 7.3 3.64 9.79 10.9 8.1 8.47 5.73 8.79 7.43 7.76 9.84 3.92 0 6.05 4.36 8.16 8.69 2.58 7.97 2.27 6.63 4.85 9.28 10.1 5.37 11.2 2.83 8.4 3.64 9.38 6.87 3.23 4.41 6.33 2.38 3.81 5.83 8.02 0.82 6.19 5.55 1.1 8.6 4.15 3.64 6.28 2.02 7.27 9.79 7.43 8.29 3.35 2.58 5.5 1.72 7.25 6.12 0.47 1.1 1.54 10.4 9.27 0.47 7.08 6.14 7.69 10.6 9.2 8.6 1.1 9.06 11.1 8.7 6.6 9.57 5.13 3.55 7.45 10.4 4.43 10.9 10.9 2.58 10.1 7.15 10.5 7.51 10.9 9.91 9.17 8.71 9.33 6.81 11.6 8.06 8.1 6.89 8.22 0.82 9.57 10.7 10.6 6.75 6.08 10.3 10.6 8.14 8.93 0.47 12.3 10.2 3.35 10.5 10.3 3 0 11 8.16 6.68 10.4 4.67 10.7 8.28 10.5 6.56 8.85 9.86 11.1 8.21 10.8 7.97 9.07 6.34 7.64 9.86 10.7 4.48 9.75 1.72 5.76 3.99 7.33 10.7 11 10.5 12.9 8.94 9.48 1.1 11.5 9.81 8.19 7.81 8.62 8.37 8.21 10.3 8.01 1.34 10.1 7.43 9.23 11.3 8.36 0 10.5 7.4 8.77 9.73 8.16 9.28 8.8 6.17 10 9.95 7.76 11.7 9.12 8.66 10.4 9.69 11.5 4.24 8.45 11.1 11.4 0.47 4.98 8.21 9.37 6.56 2.91 5.95 9.77 9.67 6.4 5.11 9.93 1.1 8.22 0 1.1 4.15 4.71 10.2 8.97 11.6 9.64 9.16 7.58 8.37 11.3 9.81 10.1 11 8.92 5.46 11.1 10.4 10.6 9.08 7.47 9.91 6.47 10.8 10.7 9.27 4.43 9.91 11.5 9.92 15.4 10 9.4 6.92 6.51 10.4 9.35 10.4 9.47 10.2 6.96 9.66 12.8 10.6 8.29 10.9 6.97 11.4 10.5 9.74 7.38 4.85 10.5 11.2 8.62 11 9.01 9.79 9.26 10.8 9.51 9.31 7.63 9.39 11.1 9.85 9.93 11.5 7.99 8.94 2.48 8.09 10.2 8.52 9.76 10.3 4.21 0 6.19 8.76 8.81 10.1 1.72 9.92 8.06 9.08 7.93 1.54 8.96 3.64 7.31 4.91 0.47 7.18 3.88 9.37 10.3 8.7 10.6 9.98 10.4 9.05 7.18 10.8 11.6 9.35 10.9 1.34 5.82 6.05 9.68 11.6 9.34 9.82 9.09 7.3 1.1 11.4 8.07 11.7 10.8 1.1 9.96 8.64 10.7 10 10.7 8.65 8.75 8.67 9.09 9.86 11.1 13 11.1 4.09 9.29 9.25 8.74 10.3 6.46 8.36 6.85 8.47 9.31 4.51 8.22 11 11 6.69 9.44 9.76 4.27 10.3 11.5 9.76 8.47 11.2 7.81 7.94 10.6 9.27 11 6.89 10.5 2.58 9.73 4.85 8.28 10.3 1.88 9.16 3.05 9.68 9.11 11.7 3.45 8.89 0.47 5.26 5.01 8.85 9.42 10.7 7.5 8.17 4.58 6.37 8.22 2.15 4.62 3.29 3.99 10.7 7.86 8.86 4.49 10.7 9.25 4.51 7.28 9.23 8.98 6.95 9.24 8.14 7.62 9.07 9.01 9.14 10.2 7.58 6.36 10.6 9.96 10.1 0.47 10.1 0 9.57 7.76 8.92 6.96 9.91 9.12 12.4 1.5 12.6 10.8 11.1 11 9.08 0.47 9.88 9.38 5.01 10.9 10.1 9.7 12.4 11.4 10.1 3.84 9.7 7.36 9.79 7.78 9.26 9.42 1.54 7.32 12.5 8.08 8.34 9.85 9.13 10.6 8.61 8.78 9.59 9.53 8.97 11.5 5.18 3.59 1.6 9.79 3.55 4.11 5.63 11 11.8 10.4 10 9.89 9.45 1.1 9.35 4.36 8.16 2.98 11.2 11.9 8.66 3.81 5.62 4.43 7.1 8.03 7.25 10.6 1.54 7.32 5.89 0.47 8.63 5.83 10.2 5.28 7.7 2.02 8.59 11.6 2.67 0.47 9.14 5.89 2.02 6.73 6.8 1.34 12.7 9.5 8.75 8.75 9.26 0 5.06 9.59 9.37 10.9 3.88 4.51 11.3 8.32 3.68 9.1 9.69 15.1 9.94 10.6 9.86 7.22 7.69 8.38 2.83 0 9.94 0.47 9.01 6.12 5.11 10.5 10.5 6.83 11.4 8.08 8.95 12 3.77 8.64 1.54 5.53 9.44 7.73 9.03 10.3 11.5 10.2 2.27 6.93 9.52 9.96 11.8 11.4 8.99 9.65 9.88 10 13.3 6.79 8.5 7.85 9.97 3.55 10.8 10.3 8.67 8.56 6.89 10.6 9.09 2.27 2.98 8.65 7.82 10.4 11.8 10.5 9.75 6.83 11.4 4.06 8.7 4.67 8.58 3.11 7.13 10.3 8.65 7.75 5.41 4.38 7.22 11.7 6.38 10.2 9.48 7.32 3.55 0 4.62 8.79 5.86 7.08 8.85 9.16 0 9.9 0 7.36 9.03 6.74 11 8.74 11.5 7.79 5.18 5.1 10.4 5.97 0.47 2.27 2.02 3.23 0.47 8.93 9.98 3.23 7.81 12.7 2.91 2.27 8.99 9.89 10.3 9.12 3.64 6.42 7.67 10.2 11.3 8.72 9.73 8.26 8.4 10.8 10.8 11.7 8.39 5.91 6.34 9.66 10.3 1.54 2.15 8.5 2.83 7.3 10.9 8.57 9.16 7.12 4.85 9.73 7.87 4.12 8.27 8.93 9.68 2.67 8.78 5 8.94 3.35 4.62 9.24 11.4 5.6 9.85 9.98 10.8 9.43 4.94 11.7 10.6 10.5 11.5 11.3 8.71 9.76 9.93 8.64 4.98 4.43 8.69 9 9.53 8.31 4.48 8.05 7.94 10 5.39 8.32 7.86 11.3 8.58 9.53 4.94 11 8.46 8.86 11.7 3.96 9.67 9.1 8.03 9.31 8.3 11.8 8.01 6.9 14.7 5.72 12.8 8.44 9.22 4.83 8.54 9.46 11.3 10.2 12.2 11.3 6.22 5.28 9.89 15.1 1.1 4.3 12.3 12.1 3.24 2.48 11.1 11.2 5.32 1.1 9.24 7.56 5.21 10.7 6.03 2.38 10.6 7.13 7.66 9.45 11.3 10.3 10.8 11.7 10.3 11.2 10.2 0.82 14.8 4.79 0.47 11.6 2.91 10.8 11.8 3.11 8.02 3.05 5.51 11 4.09 3.81 2.38 6.11 2.98 4.24 5.68 1.34 8.44 6.13 1.1 7.72 1.54 6.74 10.3 4.91 4.93 6.78 4.27 5.25 5.65 1.1 8.85 8.88 6.32 14.2 10.7 5.48 3.4 6.53 7.5 8.37 7.94 9.81 8.65 9.54 7.78 5.29 6.49 7.71 1.72 6.42 6.82 7.27 3.72 9.69 3.68 6.09 8.02 9.77 1.1 8.31 3.5 4.62 4.41 4.27 3.84 3.92 2.15 9.52 3.59 5.55 4.38 7.96 5.44 7.93 4.59 0.82 3.44 1.88 7.39 2.83 6.48 0.47 8.02 0.47 6.56 0.47 4.12 9.71 10.8 9.52 5.14 1.23 2.58 5.05 6.5 2.27 8.49 0 1.1 6.2 9.05 5.99 6.45 3.81 5.33 9.26 5.98 9.21 4.94 6.53 6.4 2.38 2.27 8.06 7.65 0.82 1.34 7.72 9.55 10.6 4.91 1.34 8.13 8.85 1.34 6.4 8.01 4.12 8.2 6.34 7.73 4.96 9.98 4.3 4.41 1.1 1.54 6.76 8.21 0 4.33 1.34 9.57 2.83 1.1 8.57 11.7 7.8 7.06 3.4 8.43 0.47 1.1 0 5.99 10.8 1.34 3.45 10.6 1.88 9.63 2.15 6.97 2.27 5.45 3.72 7.07 7.7 8.65 5.84 13.4 5.54 8.46 4.58 6.1 6.45 11.2 1.72 6.11 7.58 6.05 6.43 2.02 8.38 3.81 0 3.29 2.83 5.18 6.9 7.47 5.29 5.74 6.66 8.65 1.34 3.81 2.02 6.4 6.21 4.36 0.47 8.26 4.18 8.58 4.3 6.27 4.21 4.15 5.38 9.44 0.47 2.02 3.5 4.43 0 6.74 1.1 2.91 4.98 4.75 8.12 0.47 5.9 5.93 7.43 0 6.76 6.24 10.2 6.06 1.1 3.17 2.58 4.7 1.54 7.34 10.5 6.68 5.19 9.89 2.48 9.11 1.72 6.05 6.34 7.02 6.94 3.23 9.38 8.67 1.1 5.39 9 9.82 6.55 5.43 8.04 1.54 9.11 1.1 6.08 9.51 8.83 6.74 9.31 6.9 6.69 0.47 2.38 7.97 0.82 7.56 4.48 8.87 6.21 5.78 8.19 9.97 3.11 8.22 1.34 10.4 1.34 1.1 5.25 3.99 7.23 8.1 9.44 3.45 4.12 9.12 1.88 6.16 8.92 6.78 3.23 10.2 2.58 6.4 2.38 9.32 7.5 2.91 6.96 0.47 3.61 9.1 0 5.43 7.49 6.59 7.75 6.94 3.99 0.82 3.92 4.56 4.27 4.94 8.65 7.96 3.4 11.9 3.96 8.64 5.43 3.17 2.48 7.07 1.34 7.6 8.56 9.71 3.17 1.1 8.01 3.05 1.72 2.27 9.43 8.5 7.84 3.35 7.17 7.04 7.98 7.01 4.43 0.82 3.9 6.5 9.28 6.15 6.35 8.14 8.19 8.12 3.68 6.17 9.94 11.8 10.8 10.2 6.71 12.6 12.5 7.99 11.9 10.5 7.03 11.3 6.92 10.3 0.82 3.55 10.7 8.67 8.64 9.84 8.03 10.3 10.1 13 8.72 9.25 10.2 0.47 8.38 1.88 10.9 0.82 8.4 7.18 11.1 10.3 10.9 10.9 9.67 10.1 8.04 5.95 7.5 9.34 6.94 10.1 11.7 9.21 0.47 8.37 9.22 8.44 9.16 9.42 3.5 10.3 7.22 0 3.96 9.99 2.27 11 1.88 9.43 5.22 9.29 11.6 8.65 9.96 7.87 9.62 11.3 10.2 3.59 9.16 10.8 10.6 7.42 10.7 10.2 9.33 9.28 9.85 8.28 10.5 10.5 9.52 9.97 9.03 11.2 8.87 0 8.02 9.17 9.89 9.93 9.98 8.29 9.68 8.7 10 11.7 9.76 9.05 7.38 9.27 0.82 10.2 9.89 8.45 0.47 9.72 10.3 8.44 10.6 0.47 2.58 8.76 0.82 11.4 3.59 6.2 10.1 10.3 2.27 0.82 7.38 12.8 3.88 2.38 13.9 1.34 10.8 12.5 10.1 11.1 14.2 11.1 9.11 11.4 7.62 10.6 9.94 8.08 9.14 4.77 13.2 5.97 8.27 9.17 11.4 5.86 10.7 9.25 9.04 9.71 10.7 9.51 9.57 5.16 7.65 9.17 10.5 12.4 11.1 9.11 3.92 10.4 11.3 8.45 9.81 10.9 1.34 11.7 8.97 2.91 8.6 9.74 0.47 6.72 10.4 10.2 10.1 3.99 10.7 0.82 3.64 7.09 6.87 9.06 3.45 10.2 7.98 6.47 1.72 11.7 8.38 9.37 8.65 0.82 6.18 10.3 11.9 9.26 2.02 10 10.9 8.62 8.22 11.6 10.6 11.3 8.47 10.5 0 10.5 10.3 10.4 8.64 6.78 8.62 9.69 2.15 8.92 6.09 10.3 8.67 7.62 8.88 9.02 10.1 10.8 7.05 8.38 10.8 9.15 9.44 12.9 8.84 8.65 4.33 6.73 7.47 0 9.7 10.4 9.12 2.27 3.68 9.33 9.32 7.39 7.83 8.86 6.78 11 8.11 11.1 9.84 2.02 12.3 1.1 9.88 8.42 9.13 9.11 7.5 11.2 8.54 9.38 8.07 9.7 11.5 9.62 8.6 10 9.5 9.21 8.47 7.67 10.3 6.68 3.77 9.03 8.23 12.6 8.35 1.91 10.1 2.58 10.8 9.99 8.88 5.1 8.44 9.69 8.04 7.23 5.81 12.9 9.42 10.3 3.88 5.21 4.65 15 3.59 1.67 11.4 13 7.85 15.9 12.6 14 10.6 9.75 7.67 12.3 11.6 10.1 2.38 10.5 2.38 5.11 9.56 2.02 14.4 5.32 4.15 0 0 0 3.72 9.18 1.1 10.7 8.55 10.7 9.84 10.3 11.9 11.1 3.11 12.7 13.1 11.3 8.62 8.53 11.1 10.7 10.4 5.46 12.1 2.67 5.64 2.83 9.66 6.75 3.99 5.31 2.91 10.1 1.54 9.59 9.13 4.94 10.8 4.56 7.29 10.7 8.27 11 10.3 9.11 11.7 7.18 10.1 7.36 10.8 9.03 11.3 11.6 9.23 11.1 10.2 11.9 11.8 10.5 11.5 6.94 8.58 15.5 16.2 14.8 11.1 10.8 12.7 9.28 6.48 13.5 12.4 2.91 11.2 9.66 11.7 9 14.6 12.2 10.7 10.2 6.68 8.17 13.9 13.1 9.42 12 4.71 5.79 2.67 7.98 9.06 5.89 9.03 13.2 13 11.1 12 12.9 9.99 9.95 10.9 11.8 3.88 9.24 9.24 9.94 8.98 8.38 2.91 7.87 8.42 8.96 8.85 3.88 8.12 0.47 7.51 0.82 10.2 2.27 8.74 12.9 9.12 14.5 12.7 13.3 12.9 12.6 12.4 10.7 11.8 13.8 1.1 12.7 13.1 1.54 6.71 5.57 7.51 8.59 7.86 6.89 8.03 3.8 8.88 9.86 9.46 8.09 4.33 7.64 6.34 9.32 9.4 7.87 4.81 6.5 9.34 2.67 4.71 7.17 4.84 6.4 8.62 7.99 9.13 3.88 9.42 1.88 9.82 0.47 0 9.69 9.91 0.47 2.27 2.02 10.3 0.47 5.81 9.48 10.4 9.25 8.61 10.9 2.58 2.48 10.8 11.4 11.7 12.2 11.2 9.68 6.3 8.55 5.74 3.59 11.2 10.6 7.69 7.74 8.37 11.6 11.5 13.6 10.7 5.46 11.1 11 13.5 10.2 8.83 7.79 12.9 12.2 16.3 5.12 9.02 13.8 12.2 13.9 12 7.02 11.2 11.9 8.53 11.8 7.29 3.59 13.1 10.8 9.19 0.82 0.82 1.1 4.98 0.47 0.47 7.53 7.95 10.7 7.47 11.5 10.7 2.75 4.12 0.47 1.34 0.86 9.09 10.8 2.38 2.58 1.34 7.22 8.85 10.1 8.78 3.45 0.82 4.98 2.62 7.69 9.85 6.75 4.79 4.56 7.71 7.58 3.35 0.83 0 5.21 5.27 7.72 10.3 2.58 8.71 7.02 4.12 9.39 9.8 9.34 5.76 10.8 9.12 7.04 8.58 4.98 7.5 8.64 0 1.34 8.09 1.1 1.88 9.22 7.57 3.11 4.06 7.33 8.33 6.57 4.36 4.67 2.27 6.5 8.72 6.95 3.64 13.8 8.76 8.82 2.58 10.1 9.53 4.7 0 1.1 3.05 10.2 5.06 0.47 0.47 1.54 9.09 7.26 9.31 4.85 3.5 3.92 5.55 1.54 8.11 6.15 1.34 6.39 4.02 9.44 1.34 9.13 7.48 3.96 2.16 0.82 7.24 5.65 5.08 1.88 1.54 3.72 2.98 2.91 4.06 3.77 7.49 2.27 7.58 11.5 4.6 4.15 4.33 8.09 0.82 10.3 12.7 10.3 11.7 5.9 9.98 1.54 4.27 4.65 10.3 11.9 0.82 6.48 10 0 8.56 0 1.34 6.69 7.79 12.8 11.1 12.3 3.35 4.53 2.58 1.34 6.91 2.75 2.15 0.82 9.33 0 7.11 9.28 0 7.88 6.83 4.91 2.83 3.68 0.82 1.88 0 9.93 8.48 8.4 4.02 1.1 6.51 5.4 5.67 1.72 6.39 1.1 2.27 1.72 6.95 2.48 10.4 2.98 8.85 3.35 1.34 7.96 9.06 4.75 2.15 11.7 3.81 11.2 2.75 3.88 3.84 11 1.88 1.54 7.25 6.89 3.81 1.72 7.98 2.98 6.22 0 5.03 4.65 9.75 1.1 9.8 4.27 2.91 10 11.8 2.58 0 6.32 0.47 10 7.79 8.14 6.89 13.6 11.8 4.18 4.73 7.26 7.61 8.46 2.48 7.91 11.3 10.2 2.67 9.54 6.34 7 3.4 9.51 11.9 2.38 10.7 13.7 5.72 8.7 11.6 7.55 0 7.59 6.27 8.35 9.31 12.6 4.91 11.3 7.28 5.26 1.54 3.92 1.54 8.72 2.27 8.59 8.39 13 12.2 8.23 3.11 7.19 7.75 10.7 3.4 7.4 7.6 0.66 2.48 8.4 7.21 2.75 2.02 2.98 7 1.72 7.06 3.64 0.47 3.45 9.15 11.2 10.3 5.63 6.12 8.87 9.88 12.4 6.36 5.66 8.97 10.2 6.33 11.2 2.15 4.41 8.02 4.79 7.02 6.86 5.43 7.14 0.82 6.15 9.94 6.69 3.11 1.88 8.85 10.3 5.1 6.72 2.67 4.12 6.23 6.61 10.3 2.43 8.33 12.3 7.24 16.4 8.11 8.29 9.37 4.3 0 9.3 4.43 9.89 10.4 11.6 12.7 3.17 11 9.37 9.35 10.1 11.6 9.02 11.8 7.99 8.89 2.67 6.55 5.21 0.82 12 11.6 4.33 8.5 8.58 8.85 9.57 10.3 10.7 2.27 2.38 9.86 0.47 12.1 6.78 9.39 11.6 12.8 7.19 10.5 12.8 4.69 11.1 10.4 7.29 11.2 11.4 9.4 9.5 9.97 1.72 10.7 7.72 12 3.59 10.6 7.95 9.65 6.55 3.35 4.36 1.88 8.3 8.88 7.07 11.3 8.69 12.4 11 9.37 3.35 13 13.2 11.2 11.3 8.59 12.3 0.82 0 3.92 12.3 5.96 7.18 11.3 11 10.2 7.55 8.92 9.2 8.8 11.7 10.1 8.25 11.3 10.1 8.76 11.2 9.46 12.9 13.2 11.6 14.7 7.51 7.04 11.6 12.6 11.9 1.1 4.73 6.32 4.02 1.88 2.48 4.56 10.1 6.19 5.61 4.33 9.68 9.97 7.75 1.34 7.06 0 0.47 6.83 0 5.67 6.36 6.58 8.31 9 9.67 1.1 1.34 7.14 5.31 8.01 2.48 6.7 3.45 3.77 10.2 5.44 0.47 7.4 3.64 8.49 4.3 2.58 8.28 0.82 3.93 7.49 13 5.63 4.75 6.07 10.1 1.34 6.56 6.64 3.99 6.48 5.45 7.01 8.24 6.89 6.21 0.47 0.82 3.81 6.76 7.58 7.06 6.04 7.13 9.46 7.94 7.4 6.67 0.82 1.1 2.75 0 9.89 2.02 8.69 4.65 5.66 1.88 9.78 6.1 8.65 1.72 5 12.3 9 0.47 8.37 4.06 9.6 5.8 0.47 8.11 0.47 4.81 5.78 4.09 7.48 1.1 7.9 12 5.44 2.67 7.9 0.47 9.88 7.85 7.56 1.1 8.23 11.9 1.88 3.84 5.16 7.57 4.81 0 1.1 7.64 8.93 4.69 0 6.61 11.2 11.2 7.03 3.45 7.03 3.81 9 8.82 8.84 2.83 11.5 7.99 3.84 9.31 2.38 3.96 0 11.8 0.47 0.82 4.21 5.77 0.82 12.4 6.42 4.46 3.28 3.18 4.96 0 10.4 10.4 10.4 11.2 10.9 12.1 11 9.88 8.8 11.2 5.29 10.5 11 9.78 1.1 10.3 12.8 13.2 17.5 9.64 7.36 1.34 13.2 6.88 4.36 11.2 1.1 12.7 4.75 4.15 16.1 1.02 9.05 0.82 0 3.92 8.86 6.27 5.81 11.9 8.91 12.4 2.27 0 3.92 1.72 3.4 8.05 7.08 2.02 0 1.1 6.4 1.1 8.77 0.82 4.29 5.26 4.67 10 8.79 4.76 1.1 10.2 0.79 6.72 9.26 4.48 0.47 10.3 2.75 10.4 7.41 6.09 9.54 5.43 6.12 8.19 4.71 6.44 5.81 3.4 4.48 6.99 5.94 5.21 6.74 6.59 8.63 3.55 0.82 13.1 3.68 6.72 8.7 7.37 8.05 5.5 5.5 7.14 1.54 5 3.11 9.2 6.59 1.72 7.58 2.67 10 1.54 8.64 7.5 3.64 5.8 5.19 8.8 9.72 1.1 9.35 2.74 5.1 7.12 5.97 8.66 8.54 6.42 1.1 9.98 12.5 7.69 2.15 4.3 1.1 7.6 5.16 7.62 5 8.9 1.72 7.24 4.85 0.82 5.82 9.47 8.34 2.75 2.22 11.5 5.79 6.42 10.1 4.91 2.38 4.18 3.68 8.44 4.15 1.72 6.76 4.06 10.1 0 5.39 5.86 0.5 6.55 0.47 3.88 1.1 10.2 12.3 7.23 2.91 0.47 3.17 8.61 2.98 2.02 4.51 6.41 3.68 7.31 9.47 8.78 3.5 8.47 10.4 9.14 7.05 12.8 5.39 11.1 2.38 10.7 0.47 9.72 12.2 10.1 12.5 5.06 0.47 11.3 11.7 13 1.34 2.67 3.4 12.5 4.73 11.7 3.55 0.47 10.7 9.96 6.82 8.2 11.6 11.2 8.85 0 13.2 10.9 11.5 11.3 4.12 0.82 7.08 10.2 7.06 11.5 4.62 13.5 12.4 12 3.17 9.03 10.1 11.5 3.05 6.48 5.9 10.9 0 8.16 8.23 12.6 10 11.4 7.11 10.2 7.01 2.27 7.82 9.69 11.2 1.34 6.8 6.71 7.61 10.2 9.84 10.9 3.29 6.45 0.82 10.1 4.73 4.3 6.61 5.37 11.1 0.82 7.66 8.55 10.3 0.47 7.18 6.98 10.2 10.4 13 7.46 4.12 7.48 11.2 0 1.34 6.07 10.3 6.85 5.25 9.96 8.63 2.38 7.06 8.57 1.1 7.82 6.83 5.75 8.03 3.5 1.1 2.58 3.05 2.67 2.75 4.98 6.72 7.22 2.67 10.9 6.47 0 2.48 9.26 4.25 5.77 0.47 5.98 7.16 6.47 0.47 5.4 0.47 6.78 0.82 7.35 5.86 2.67 2.15 11.2 1.1 6.51 5 4.85 1.72 4.86 0.82 0.47 5.29 3.84 7.24 5.28 7.48 6.4 0 10 2.83 2.91 8.47 5.72 9.39 8.98 4.77 6.64 9.5 10.6 7.82 2.15 9.66 2.98 0.82 1.59 0 5.57 9.63 3.72 4.87 8.13 1.88 1.34 4.41 6.78 10.6 8.07 1.34 4.06 5.46 9.98 0 1.34 6.88 1.54 4.93 9.24 9.45 8.73 0 8.03 10.2 12.9 0 7.46 5.85 8.88 1.34 8.49 9.31 3.35 7.1 0.82 3.91 10.6 3.5 7.06 9.93 8.93 8.92 9.92 8.13 11.4 4.41 9.63 9.06 9.49 9.1 10.8 10.5 11.1 4.77 3.59 1.34 3.55 9.25 8.15 12 12.2 6.05 6.36 10.2 6.45 10.6 6.62 12.7 15.8 12.8 10.9 11.3 12 11.1 0 5.86 6.03 7.65 6.5 9.52 12.6 11.1 9.35 9.55 10.8 12.3 10.2 9.7 9.45 8.28 10 1.1 10.2 9.19 0 8.15 8.74 7.71 10.4 2.38 5.31 8.08 7.8 10.2 10.2 7.71 11 8.51 10.7 6.21 6.68 7.53 3.72 12.3 4.75 4.41 9 9.63 10.6 7.36 4.48 11.4 5.43 5.23 7.49 1.1 6.21 7.44 6.12 1.54 11.8 5.64 1.25 9.11 8.39 6.83 10.7 7.04 8.64 1.54 12.3 11 7.81 10.2 11.8 9.97 6.5 9.16 10.4 7.61 0.82 12.9 12.3 12.2 11.8 12 11.1 12.8 12.2 2.91 9.59 8.81 2.27 12.6 11.6 12.6 11.5 9.39 5.55 9.24 10.7 9.81 10.1 6.85 7.48 9.57 8.44 1.54 11.2 8.18 6.12 10.1 9.02 9.92 10.3 10.8 10 4.53 0 9.94 10.8 8.48 10.3 10.2 9.26 9.44 10.2 8.3 6.82 11.3 9.88 10.7 5.97 10 8.03 9.23 12.3 4.81 10.9 9.39 9.69 11.2 11.2 8.15 9.79 12.5 12.7 1.34 7.91 7.26 9.05 11.4 9.89 9.88 9.94 7.12 8.34 10.5 10.3 10.6 10.3 4.91 6.59 8.22 10.8 11.8 8.72 9.59 3.84 12.3 10.6 1.54 0.82 10.5 3.4 10.8 12.7 5.21 8.82 3.29 4.46 8.56 6.84 2.83 5.41 8.11 7.58 9.21 0 5.49 9.2 0.82 11 6.85 9.53 9.59 9.55 3.64 1.34 7.58 6.33 5.26 10 10.3 3.92 7.92 9.41 10.2 1.1 2.38 11 10.2 0 6.34 5.13 10.4 9.71 3.84 2.27 4.01 2.58 8.3 3.77 9.29 2.15 4.56 4.38 9.38 10.7 3.35 10.2 9.88 4.93 9.28 4.23 4.15 6.02 5.84 10.7 7.48 2.27 8.05 2.91 8.18 8.29 2.02 6.02 1.1 0.47 9.13 10.5 5.25 4.24 5.12 1.54 1.88 1.54 9.24 9.06 10.6 2.48 8.32 6.78 7.06 7.18 12.4 1.54 7.2 4.89 6.71 6.88 3.77 8.32 7.67 6.96 3.05 5.22 7.57 6.56 3.77 6.54 5.74 0.47 7.72 8.1 5.84 2.48 2.83 0.82 2.02 0.82 2.38 0.82 10.8 1.34 8.03 5.16 4.18 4.79 1.1 3.35 9.77 12.1 0.82 0 0.82 0 0.82 3.96 6.94 2.15 0.82 7.47 5.93 3.5 1.34 10.3 2.91 10.8 8.81 0 7.74 11 10.3 10.3 3.96 9.43 5.36 0.82 8.53 12.9 8.13 7.11 7.55 9.75 5.9 9.8 7.05 7.03 4.48 12.4 11.5 9.86 5.46 8.86 9.2 11.4 9.4 10.5 8.19 8.63 2.27 9.15 8.54 9.43 11.8 13.4 0.82 9.1 9.28 8.61 9.61 9.38 10.9 8.83 10.1 7.54 6.72 11.6 0.82 1.34 0 11.3 9.55 6.32 10.9 9.05 1.34 5.89 14.1 8.05 11.6 8.44 0.47 7.07 13.9 10.7 1.72 11.6 11.3 11.2 10.8 11.2 10.4 7.46 1.72 7.42 10.8 10.6 10.3 9.44 10.5 0.47 10.8 10.1 13.8 10 9.01 9.81 12.3 5.16 12.4 3.96 5.45 11.9 12 12.3 12.9 12 12.4 9.18 10.3 5.95 7.5 10 9.3 7.82 11.7 13.9 7.79 10.5 10.1 9.47 11.3 10.6 11 10.6 9.62 9.63 4.09 10.3 10.6 9.99 9.75 10.6 9.84 10.2 11.7 11.2 9.86 10.6 10.7 11.2 10.1 9.63 10.8 10 9.59 10.8 10.6 10.9 8.97 11.4 10.3 10.3 10.4 11.1 8.83 9.54 8.51 12.9 13.5 11.2 9.31 2.02 6.37 7.58 6.4 7.78 0 1.54 3.4 0 9.37 8.13 8.62 7.86 5.36 11 10 15.1 10.7 3.17 9.39 6.5 3.64 10.4 8.48 8.68 3.55 12.4 4.18 13.5 8.18 7.97 9.28 10.4 11.2 10.9 11.5 9.93 9.19 9.05 9.84 9.64 10.6 9.18 1.1 8.99 9.76 10.3 4.65 1.34 11.7 12.6 9.29 9.09 9.77 6.36 9.03 7.68 3.64 10.8 7.36 4.12 8.31 13.4 11.1 13 9.58 8.77 9.31 11.3 9.87 2.58 9.6 12.4 3.11 7.27 10.2 10.2 8.71 10.7 11.2 12.6 6.71 6.42 2.58 10.2 5.31 9.32 9.05 10.7 5.81 12.9 3.92 1.1 12.8 5.55 5.9 4.21 4.02 5.14 8.65 10.4 10.4 5.18 11.3 8.56 0.82 8.86 5.28 5.4 5.86 12.7 9.68 6.82 1.88 8.17 1.88 8.47 3.11 1.88 2.15 0 6.65 4.48 2.38 6.44 8.11 12 9.24 12.5 9.63 10.7 7.84 11.8 8.79 6.8 9.08 9.03 10.4 8.26 0 9.78 5.38 4.87 8.11 10.5 5.19 11.2 9.55 0.47 7.54 9.01 8.73 6.09 4.51 5.43 2.02 13.3 10.5 8.9 10.1 9.94 5.08 11 8.23 5.5 3.92 1.1 5.24 7.98 1.72 0 11.2 9.9 12.9 3.77 6.66 9.2 9.24 9.72 1.54 5.51 8.25 8.7 11.1 8.69 8.47 8.64 4.21 0 10.3 7.26 5.88 7.02 8.08 5.21 9.57 11.1 9.17 5.1 5.61 7.8 5.69 4.46 8.67 9.18 7.02 8.44 9.19 13.9 4.83 6.59 12.2 0 2.02 3.88 11.7 8.31 11.8 7.08 11.5 9.55 9.08 7.22 12.2 7.75 9.98 10.5 7.2 8.52 9.62 7.36 13.1 9.36 11.6 10.2 13.2 0 6.67 11.4 9.76 11.5 2.16 9.37 9.34 3.64 7.02 9.74 10.4 9.62 3.59 11 4.3 2.75 10.3 10.1 8.72 2.58 8.1 1.54 4.26 9.45 10.8 12.4 10.3 10.7 9.75 9.04 2.48 2.85 2.48 13.1 4.94 10.8 10.8 7.32 5.94 0.47 7.82 10.9 9.41 10.4 10.2 11.4 8.76 8.03 9.28 13 7.07 0.47 12.9 0.82 6.84 0 8.22 10.4 10.9 8.96 9.42 9.68 8.64 8.3 9.04 7.56 8.22 8.25 11.1 8.73 9.54 2.27 9.17 7.51 11.6 9.14 10.7 9.02 7.01 8.94 9.04 9.56 10.8 7.22 8.93 10.5 7.96 9.91 8.64 10.4 10.1 9.81 10.7 11.4 8.62 11.2 4.65 10 5.61 11.2 7.45 7.72 10.3 10.7 10.1 7.35 7.48 9.88 1.34 8.19 10.2 9.31 9.71 10.2 9.6 10 7.52 10.4 8.29 9.79 10.1 11.6 11.1 10.2 11.4 0.82 7.7 2.27 1.6 7.6 9.47 9.39 8.65 8.6 9.36 11.5 8.46 9.31 9.32 9.37 9.73 10.3 11.8 9.02 8.92 8.19 8.38 10.1 7.23 12.4 11.4 11 13.7 8.64 9.34 10.5 8.92 9.37 9.5 9.89 9.62 10.9 8.93 10.6 10.7 10.8 10.4 12.1 6.18 8.98 10.4 9.77 9.52 9.85 10.6 7.96 8.7 7.74 9.31 8.85 12.1 9.56 9.37 9.38 9.92 6.89 11.6 0 10.3 10.9 8.17 9.87 10.9 5.23 7.12 8.99 9.81 5.06 8.87 2.48 8.89 6.79 8.06 7.82 7.11 7.81 10.1 8.87 9.77 9.28 8.89 9.23 10.5 11.3 8.9 11.2 7.52 9.35 9.55 8.75 12.6 9.13 9.79 9.25 10.1 11.6 8.7 7.66 0.82 0.47 1.34 9.79 4.73 10.6 8.06 7.57 8.1 12.6 10.1 9.18 10 2.02 11.5 9.02 9.31 7.1 10 8.96 12.6 10.3 9.74 9.47 7.01 7.75 9.29 5.57 10.5 10.2 7.83 8.85 11.2 7.1 9.14 9.52 9.68 5 4.83 4.21 11 10.9 10.1 11.4 8.58 6.41 7.28 11.7 9.75 9.28 10.5 7.45 10.4 10.2 6.14 1.54 9.74 10.2 9.55 8.91 10.4 8.21 5.98 9.7 10.6 5.89 10.7 8.94 11.2 1.88 9.02 10.9 1.54 8.93 9.23 5.79 5.98 6.82 5.83 10.2 8.43 2.38 9.66 10.3 9.34 9.42 8.39 9.71 9.78 11.1 11.4 6.33 11.1 5.51 10.9 7.09 6.08 4.24 12.1 11.5 7.55 7.24 9.45 9.99 10.2 10.2 9.66 1.54 8.35 2.58 5.19 7.6 9.1 9.01 7.19 2.83 7.26 10.8 8.97 10.1 0 11.1 11.1 7.83 12 9.29 9.09 8.51 4.58 8.25 10.3 3.68 7.52 12.2 9.74 9.87 3.5 9.51 7.65 7.72 11 9.39 12.9 5.18 9.63 9.59 8.81 6.74 7.83 7.37 11.4 9.08 8.21 8.43 10.8 9.57 6.53 9.23 10.9 10.3 7.8 8.39 8.85 1.34 10.8 9.36 10.9 9.34 2.48 9.18 7.04 10.1 8.64 2.27 10.5 10.1 9.25 4.81 11.3 10.5 7.78 10.3 3.5 9.59 8.67 10.2 11.1 9.95 11.3 9.41 11.4 9.02 9.26 10.2 11.6 10.5 11.6 9.86 11.8 8.6 9.9 9.39 9.55 7.76 11.1 11.6 9.8 9 10.6 9.26 9.02 10.7 5.79 8.43 7.91 6.16 10.3 10 9.05 9.42 7.87 7.91 9.51 8.31 9.32 8.43 7.02 8.53 11.6 8.4 0.47 6.92 8.17 6.03 5.36 8.37 10.9 8.68 9.42 10.7 6.38 10.5 10.3 10.6 9.55 5.56 11.4 10 11.1 8.6 9.79 10 11.1 10.2 10.5 11.9 9.79 10.3 6.58 10.7 9.09 11.9 10 9.79 9.96 7.99 12.4 9.09 0.82 7.7 10.5 11.1 9.74 8.62 11.3 8.09 11.3 8.52 8.73 9.5 11 11.4 8.52 8.93 10.3 9.77 12.3 10.1 9.52 7.9 9.74 8.32 11.3 9.69 4.53 9.56 9.42 4.62 8.98 6.92 10.2 7.92 11 9.08 11.5 6.3 8.71 6.55 5 8.58 8.59 3.67 0.47 10 9.68 11 8.84 10.1 10.5 12.1 9.81 9.25 8.03 2.15 9.91 6.11 6.12 10.5 7.36 11.2 9.02 1.1 10.9 2.75 9.05 11.9 11.8 8.31 10.9 1.34 10.1 6.47 3.05 0.82 7.44 9.5 4.79 11.2 9.17 10.2 3.55 10.8 7.69 9.81 11 10.2 8.01 0 9.11 9.18 1.1 9.11 10.3 9.06 9.22 4.21 10.4 11.5 8.3 7.76 4.86 7.84 10.6 10.8 10.2 10.1 8.79 9.49 7.69 7.76 8.94 7.56 11 9.04 0 0 8.75 4.06 11.5 10.2 10.5 9.34 11.9 11.5 3.29 9.4 8.77 10.8 7.92 11.1 0.82 9.75 11.4 13.7 10.5 7.09 10.7 11.9 6.94 0.82 12.5 7.81 8.37 11.3 12.2 9.32 7.67 6.44 5.65 4.87 2.38 11 6.1 12.6 1.54 10.1 10.6 7.53 8.61 9.84 10.8 2.67 9.45 7.82 9.36 14.3 10.9 11.4 8.19 9.63 9.88 5.87 8.63 9.17 10.1 8.35 7.96 5.58 9.32 9.61 8.8 11.3 8.99 10.6 12.5 8.69 5.43 8.32 10.6 10.1 10.1 9.74 10 0.47 8.34 8.67 10.2 13.2 9.92 8.91 1.35 15.1 8.77 5.22 0.47 7.5 6.45 7.51 10.4 12.5 11.9 9.95 11.3 8.07 10.4 4.96 8.86 10.2 10.6 4.93 6.21 3.68 9.01 7.29 7.01 5.63 8.78 11 0.47 7.49 7.4 10.1 10 9.49 10.2 13.6 2.83 5.99 9.22 8.8 3.5 5.94 2.15 9.5 13.7 9.19 7.44 10.4 10.8 2.58 12.5 9.95 8.94 12.2 11.8 10.9 11.9 10.8 3.45 10.8 5.25 10.7 10.1 11.9 7.87 9.92 2.45 3.96 11.4 11.9 9.13 9.62 9.34 8.74 8.01 7.39 5.9 4.21 7.14 1.54 8.8 10.8 6.8 5.56 5 13.1 7.96 12.4 8.93 7.59 1.72 6.22 11.6 11.2 9.51 9.56 8.56 9.6 8.81 11 10.1 10.8 8.71 9.96 10.6 10.5 7.5 10.3 10.1 3.77 3.29 7.28 8.02 8.35 2.67 9.72 0.47 1.1 8.16 7.36 5.03 8.92 4.06 11.2 10.4 11.2 1.1 9.49 5.81 6.66 5.54 7.99 5.24 8.48 9.19 8.13 8.63 9.61 10.5 10.3 11.7 10.1 0 8.05 4.02 9.3 8.82 10.8 11.3 10.7 8.62 3.4 10.7 8.87 11.5 10.7 10.1 2.27 3.64 9.01 7.83 7.56 11.3 8.22 6.67 9.58 10.3 3.29 8.62 10.8 9.4 10.3 10.6 10.4 12.3 10 2.58 8.05 9.7 4.15 2.67 10.2 9.22 9.34 9.5 7.1 10.3 3.11 7.16 9.57 8.4 5.36 10.2 11.1 9.29 11.8 9.66 9.34 1.1 1.1 10.5 10.5 11.5 9.28 4.33 11 9.83 0.47 10.6 9.61 10.8 11.2 7.47 9.73 10.9 8.04 9.71 9.36 7.72 9.7 8.54 10.1 7.76 11.2 7.56 10.1 8.4 10.2 6.81 10.7 9.9 7.86 10.7 10.5 7.92 9.03 8.54 5.91 7.27 5.06 6.57 8.97 7.69 9.14 7.73 5.37 9.47 8.06 6.57 9.3 5.45 8.82 9.28 8.87 9.89 7.79 8.85 6.38 10.8 9.68 12.2 8.03 10.4 8.39 3.05 9.02 8.55 10.1 8.33 6.78 3.55 7.13 6.64 6.15 8.47 9.55 6.7 8.4 10.1 0.82 9.79 4.18 11 10.7 10.2 7.46 3.4 9.45 9.24 8.28 10.6 11.9 11.4 6.21 7.04 6.32 12.2 9.25 3.23 9.52 10.1 9.59 8.13 10.3 4.09 9.7 10.6 11 4.94 8.54 9.87 10 9.77 0.47 9.48 10 8.05 9.93 8.44 1.34 4.93 10.8 0 12 9.95 2.58 8.83 11.5 8.13 10.6 7.11 3.05 9.87 3.23 5.93 2.27 8.44 6.54 9.23 12.5 4.02 8.93 9.65 9.04 2.67 10.5 9.46 12.7 9.57 8.54 7.99 10.3 13.8 9.72 9.9 10.1 6.81 8.44 3.35 8.89 10 10.4 8.92 8.79 7.52 6.85 5.33 8.74 12.1 9.14 8.63 6.38 10.9 8.44 7.18 10.7 9.2 8.46 9.68 7.95 10 6.38 0 6.93 0.82 8.7 8.6 5.98 7.05 10.4 8.31 9.62 10.2 7.09 9.34 8.38 10.5 8.42 11.7 9.42 9.69 8.93 8.53 4.43 8.83 9.04 8.77 9.52 3.45 8.75 9.18 9.14 10.8 9.47 11 7.7 8.88 2.38 11.4 8.72 11.4 10.6 9.05 9.39 10.1 8.7 9.06 8.46 8.08 8.93 9.04 8.86 10.8 8.77 10.3 6.8 9.48 10.2 10.8 9.47 10.5 9.07 7.26 8.57 10.5 3.23 6.89 8.07 5.37 8.26 9.38 8.29 10.3 5.54 10.4 9.81 9.72 10.8 8.64 10.8 8.36 11.5 9.31 8.18 10.8 6.38 7.84 7.74 10.8 9.74 10.8 9.02 13.1 10.2 9.73 7.42 9.58 9.44 9.42 10.1 0.82 8.6 11.3 10 11 6.57 8.99 5.11 10.1 9.1 9.43 9.03 10.3 8.93 8.58 9.15 8.35 8.36 8.77 8.04 9.31 12.5 7.95 10.9 7.94 9.82 7.14 9.9 0.47 8.16 8.9 6.77 7.88 12.3 10.8 7.89 10.1 8.98 10.6 2.67 7.71 7.59 8.55 11.1 7.41 9.76 5.63 9.48 3.35 10.4 11.8 8.22 7.1 11.5 7.87 7.39 4.81 10.6 9.11 11.7 13.7 11.6 8.69 9.08 9.12 10.6 7.99 8.96 9.66 8.7 9.48 11.1 8.09 10.5 8.16 8.47 10.1 9.85 9.22 5.81 10.1 0 1.72 8.19 4.48 10.5 4.12 6.76 7.89 8.76 10.3 9.51 9.74 6.65 8.25 10.1 3.23 9.96 10.3 8.06 10.4 9.75 10.8 9.42 9.47 7.85 10.8 8.98 10.8 8.74 10.5 11 9.35 7.44 5.07 6.91 8.39 4.51 8.29 3.72 11.2 3.45 6.97 8.12 10.2 7.56 9.79 10.5 10.9 9.28 8.96 11.3 6.37 4.58 2.38 7.89 2.98 9.7 8.66 9.77 7.61 8.4 10.2 3.81 10.5 8.89 9.77 8.66 8.53 7.68 4.73 10.6 9.56 10.2 8.59 9.96 7.92 7.41 9.11 8.72 10.7 10.2 9.53 1.1 8.91 9.62 7.52 8.89 2.15 8.82 8.47 8.94 8.17 1.54 5.18 9.53 11.4 8.97 10.1 9.2 9.99 7.24 9.29 10.3 10.3 8.92 11.8 4.62 7.93 9.12 10 8.83 9.24 9.13 9.83 11 9.99 10.8 9.64 8.39 10.4 7.61 10.2 9.55 8.51 9.18 8.22 10.2 10.1 3.88 6.48 10.8 7.66 8.96 12.1 8.62 8.28 10.9 8.86 6.85 10.9 10.7 7.55 9.42 5.06 9.63 8.79 10.3 8.54 0.47 9.09 9.6 8.97 7.5 1.54 10.2 9.2 8.92 5.05 9.23 10.5 7.56 12 7.93 11.3 8.7 9.79 7.74 8.36 7.05 11.4 9.43 5.66 8.83 9.35 3.11 3.23 8.33 7.67 8.75 8.75 9.91 10.9 5.1 8.94 8.95 9.73 3.72 9.01 10.7 11.3 7.89 9.62 11.5 10.1 3.4 5.21 10.1 10.3 6.63 7.95 10.6 10.6 9.36 10.3 8.79 8.87 9.24 9.16 11.3 9.98 5.21 2.27 9.26 7.32 8.98 10.5 3.29 9.14 9.88 10.8 9.93 10.9 3.23 10.2 9.32 11.3 6.44 8.53 8.16 9.79 9.23 9.07 1.72 3.29 9.17 7.13 8.74 9.51 9.29 10.7 2.67 8.99 8.26 9.44 10.8 7.16 8.82 7.5 5.54 8.94 8.71 10 0 9.98 9.93 0.82 8.69 8.74 9.6 11.2 9.09 11.1 9.03 6.78 7.64 7.29 5.3 8.69 8.54 8.81 9.4 9.5 3.92 8.84 7.7 11.2 9.17 9.68 9.43 6.77 8 7.88 8.65 7.34 9.71 9.4 10.5 5.45 6.96 9.92 10.2 10.5 8.45 10.9 9.46 10.3 8.3 8.21 6.64 9.07 7.41 1.72 3.4 9.07 11.3 8.7 7.24 11.3 8.08 10.4 10.4 9.8 9.52 8.11 9.17 9.5 10.9 7 8.37 10.9 11.7 5.22 8.55 2.67 7.57 8.92 8.31 5.95 0 0 7.9 3.72 9.5 9.7 7.2 0.82 9.07 8.27 8.3 10.4 10.6 10.4 8.12 3.05 10.6 9.9 9.87 9.68 8.45 7.56 2.38 5.06 11.2 9.86 1.72 7.36 4.67 7.36 1.45 5.23 1.54 10.1 7.39 3.81 9.76 10.3 6.4 0.47 0.47 8.48 9.71 4.36 7.96 10.7 0 2.48 6.74 4.41 8.77 9.48 8.08 10.3 7.42 1.88 7.45 8.76 9.95 9.54 11.8 1.34 10.8 9.67 8.01 5.4 10.7 10.2 7.02 9.78 7.33 10.2 9.51 7.86 0 10 8.99 9.84 10.6 9.5 2.48 9.96 6.37 8.98 10.7 11.2 3.72 9.19 7.44 9.6 8.61 8.14 10.6 11.2 9.88 9.31 9.69 9.95 10.3 9.16 11.2 8.09 10.7 2.38 9.32 8.39 8.18 9.29 7.79 7.88 9.95 5.67 8.83 7.61 11.1 8.84 9.08 8.27 8.85 8.54 11.2 9.03 8.68 10.7 7.35 9.33 9.2 10.5 7.34 10.5 11.2 11.4 10.3 7.8 8.68 9.5 11.2 9.59 6.98 9.91 8.8 7.99 10.8 8 8.26 10.2 7.71 8.15 9.12 10.1 11.2 10.3 8.16 10.6 7.76 11.3 8.06 9.24 5.76 9.59 9.85 10.3 2.98 10.8 5.35 11.6 10.2 9.04 7.95 9.72 10.9 8.44 10.7 7.91 10.1 4.53 3.45 5.81 10.3 8.33 9.89 8.88 9.46 10.4 6.88 6.52 10.8 9.24 9.75 6.24 8.92 11.6 8.98 8.35 7.41 8.92 10.1 11.1 10.7 9.76 10.4 9.99 9.26 9.46 9.56 9.6 9.7 11.6 10.5 7.48 9.71 8.61 10.7 6.09 11.7 10.2 8.78 7.76 9.39 8.58 7 10 9.62 5.67 10.2 9.41 11.9 10.2 8.96 10.2 7.04 9.5 5.75 10.2 8.73 8.15 7.55 7.52 9.02 8.31 8.19 8.43 8 8.83 9.87 3.72 6.27 9.66 7.71 7.26 7.11 8.89 7.35 8.46 9.25 4.79 8.08 7.75 9.71 11.6 3.11 8.99 7.15 4.71 10.5 9.36 9.58 7.92 8.8 0.47 5.4 9.51 9.35 2.15 10.3 10.2 0.47 9.89 8.22 7.34 10.2 10.8 9.91 9.95 10 10.7 9.98 8.6 9.7 9.75 11.3 8.15 10.2 6.39 9.65 11.8 8.88 8.36 8.41 9.36 8.49 10.1 9.18 4.02 10.5 7.49 9.28 8.42 11.6 2.67 10.9 9.86 12.1 10.2 9.39 1.72 8.49 5.77 10.3 9.6 8.53 10.2 6.86 10.6 6.19 5.13 0.82 12.1 8.73 9.17 9.71 5.6 11.4 9.57 8.71 7.93 10.9 10.5 11.8 4.3 10 9.09 12.1 8.25 11.1 8.79 9.03 9.98 3.55 13 8.27 6.45 9.32 6.47 10.4 5.32 11.3 9.87 8.29 7.32 9.41 10.2 8.78 2.02 10.1 11.8 12.3 11.4 11.8 11.4 7.29 10.6 10.3 9.03 8.88 7.96 2.67 8.63 4.75 10.7 9.56 9.38 9.02 10.3 8.36 11 11 8.8 10.4 9.54 2.38 7.67 8.41 5.8 9.93 2.65 1.34 3.5 9.15 2.98 2.58 1.54 3.68 0.47 1.72 2.75 4.42 2.58 3.45 10 2.27 2.97 1.1 2.02 2.15 9.71 0.82 5.44 8.69 5.03 4.36 2.83 6.6 7.42 3.77 5.1 9.76 2.48 8.6 3.99 5.11 0.47 3.4 9 5.73 0 8.85 1.54 8.43 4.58 7.84 9.35 2.02 9.91 11.3 1.34 5.18 6.35 6.99 11.4 0 10.8 9.8 3.81 9.69 9.46 7.29 10.3 10.7 4.69 12 13.1 8.1 9.33 10.7 11.9 8.31 10.6 2.02 0 8.9 9.17 10.8 9.47 9.74 9 6.71 7.87 10.9 7.01 0 8.08 8.02 5.97 8.98 1.54 2.48 11.3 3.35 10.2 7.76 0 14.1 9.43 7.3 5.33 9.99 6.69 8.97 11 7.94 10.3 7.17 13.1 11.4 8.6 8.01 9.72 8.56 4.58 2.48 4.24 2.58 9.03 0 10.1 5.88 10.8 9.71 17.4 7.58 0 10.6 9.31 11.3 9.68 11.4 9.14 8.92 10.9 8.29 12.4 10.4 10.9 8.12 3.5 11.1 11.2 12.6 11.7 10.3 10.9 11.8 11.8 7.91 11.8 10.3 10.8 7.69 11.4 9.26 2.15 11.3 10.1 7.1 8.51 11.2 10.3 7.56 8.51 11.4 11.4 7.22 8.43 8.49 9.39 9.38 6.44 7.8 12.2 6.08 8.91 10.2 8.35 10.3 10.1 9.47 8.43 10.9 9.06 8.28 12.7 8.99 11.1 9.73 11.3 9.19 9.2 8.49 10.2 8.32 10 9.68 10.5 11.6 9.27 10.4 7.99 6.44 10.2 8.84 12.3 0 10.5 3.45 10.5 5.79 10.8 6.53 10.3 5.61 5.87 12.1 7.92 4.77 9.48 10.6 6.59 8.93 10.4 11.8 10.6 9.16 10.6 9.82 9.68 10.1 9.11 10.3 5.6 0.47 8.99 8.21 7.98 10.8 14.2 11 4.18 10.4 11.5 9.71 11.7 9.74 7.02 3.29 9.03 8.64 9.27 10.9 9.99 10.1 11.8 9.58 3.55 10.1 10 0.82 11.1 10.9 12.6 8.19 10.8 9.16 8.49 11.2 3.72 11.8 5.63 9.85 2.38 5.61 8.81 10.2 11.7 2.98 8.74 8.34 11.1 2.91 8.29 8.41 9.69 10.2 11.9 5.49 8.63 7.14 10.2 9.25 10.2 7.49 6.86 5.86 8.33 10.2 11 10.4 11.1 6.89 11.6 3.05 11.2 10.9 13 7.42 10 8.16 11.3 8.45 9.91 7.32 12.4 10.6 6.18 9.14 0 9.93 8.31 11 4.93 4.96 8.69 11.4 10.2 9.6 10.9 8.84 10.8 10.9 9.57 7.04 7.42 9.76 10.3 9.51 8.41 10.1 9.53 11.2 11.3 10.4 1.72 9.02 5.62 7.91 9.66 12.7 9.35 7.69 12.3 10.1 8.93 8.04 8.03 6.19 9.45 10.7 11.4 6.27 11.2 11.2 9.54 9.69 9.69 8.63 9.76 5.44 6.36 12.7 7.61 10.4 1.72 3.29 9.21 12.6 8.47 4.96 6.16 9.85 10.6 5.44 6.74 8.81 7.47 6.84 8.96 3.35 6.5 8.23 4.79 1.34 12.6 8.89 5.58 5.48 4.73 9.06 7.13 1.15 0.82 11.4 8.71 0 7.94 8.47 9.83 8.85 10.5 6.27 10.7 7.94 9.93 6.93 7.21 7.52 10.6 10.7 11.7 11.2 10.7 3.35 1.88 3.4 2.58 9.66 9.42 9.44 9.72 0 6.29 10.7 7.91 6.08 8.95 6.52 9.82 3.05 4.3 10.7 10.2 4.18 10.2 10.4 7.29 8.08 3.5 6.98 10.6 9.81 9.51 5.35 2.75 7 11.5 9.71 4.98 10.4 10.5 9.27 5.14 9.13 0 10.7 2.91 5.02 2.58 10.4 8.87 11.3 4.27 7.89 11.8 10 8.68 8.39 8.76 11.6 7.13 9.02 8.25 10.1 2.9 2.58 2.15 0.47 10.5 10.8 7.98 10.9 11 10.1 6.78 6.26 8.57 6.45 8.62 11 3.96 8.35 9.29 7.57 7.39 5.36 7.01 8.65 6.36 9.61 9.37 1.1 9.31 5.19 7.39 7.06 11.4 10 10.8 4.69 7.63 1.88 7.74 10.5 4.27 15.3 8.66 3.68 9.61 3.45 0.82 3.88 8.37 2.38 9.75 8.88 1.72 9.95 11.1 9.27 9.21 8.84 11.1 9.36 9.59 9.81 9.18 4.53 3.5 6.58 9.58 7.24 7.38 9.35 5.7 7.67 10.8 7.49 10.6 8.6 6.91 10.2 0.47 6.17 10.3 7.73 9.17 9.02 6.47 8.22 0 12.7 8.42 8.41 10 12.1 8.84 8.25 4.3 10.6 9.07 8.71 12.6 9.98 9 5.41 7.18 9.51 7.33 10.3 10.8 10.2 9.06 9.13 9.15 8.83 7.56 5.18 6.95 12.6 7.07 7.06 8.12 10.9 10.4 7.1 6.24 7.8 0.82 9.43 3.35 7.86 5.72 5.19 9.51 9.32 9.18 7.38 8.98 6.34 0.82 10.9 7.6 7.83 9.34 10.1 7.5 9.21 8.58 9.94 10.3 4.31 7.53 4.38 5.12 6.08 6.55 1.72 8.63 10.9 8.13 4.18 9.22 9.95 8.03 4.65 3.23 8.17 0 9.43 6.79 6.19 9.57 8.61 10.7 7.73 8.91 9.35 9.38 10.3 9.98 10.8 10.1 9.94 10.9 11.2 10.9 9.56 11.2 9.56 3.05 9.73 9.36 9.7 10 3.68 12.2 1.1 8.14 7.49 7.25 11.6 9.79 4.94 2.83 8.15 9.99 4.38 8.79 7.57 13.3 5.76 8.37 8.39 11.3 6.96 1.72 5.01 2.02 6.96 5.64 2.48 11.2 8.64 1.72 10.8 9.39 8.16 11.1 8.44 9.52 13.5 6.14 11.4 11.6 11.1 8.31 6.26 9.29 9.8 9.61 8.92 8.35 9.67 10.7 9.02 9.34 9.74 9.91 9 11.3 10.3 2.02 11.8 4.65 7.63 10.9 10.9 10.4 6.8 4.89 10.6 9.79 10.7 7.92 10.9 10.5 6.16 6.44 7.49 5.45 5.16 9.12 6.47 8.44 8.09 5.82 10.6 10.7 10.6 9.41 3.64 9.42 10.1 9.85 10.9 10.3 10.6 9.55 9.62 2.48 10.6 1.54 0.47 11.9 6.96 8.79 12.5 9.98 10.5 5.08 0.47 6.59 9.45 10.6 12 9.85 12.1 8.87 11.3 9.63 7.67 9.73 9.58 8.27 11.2 13.5 9.61 8.55 9.03 8.93 12.2 11.9 12.2 9.61 7.78 7.06 8.52 7.04 6.71 11.2 7.27 11.2 9.92 10.6 13.2 11.4 12.3 10.8 10.7 11.9 10.6 10.7 2.75 8.45 9.9 9.23 11.4 1.54 9.06 10 11.6 10.4 10.2 9.91 9.96 9.1 7.01 3.55 4.71 10.8 8.66 7.13 9.83 10.2 6.07 10.2 9.58 11.8 11.2 8.17 10.2 10.1 9.91 11.5 10.3 9.35 1.88 10.8 9.78 10.9 0.82 10.1 11.9 9.81 5.16 9.96 5.06 9.85 11.3 2.02 4.94 10.8 11.1 9.88 8.01 10.9 0 1.34 1.88 10.9 2.83 6.36 0.47 11.1 10.8 1.1 4.29 9.2 4.3 9.41 9.96 8 6.66 10.8 10 7.9 11.5 9.56 7.01 1.72 11.9 8.45 10.3 10.4 9.2 10.6 9.68 9.16 9.55 0.47 8.21 10.4 7.93 5.4 0 10.6 6.73 11 8.8 9.33 16.6 9.44 11.3 2.02 8.71 1.88 1.88 10.9 1.54 10.6 9.27 8.89 4.24 11.4 7.93 9.63 11.6 9.61 9.51 9.34 4.83 1.54 11 8.2 0.47 8.52 7.4 11.5 2.58 8.43 10.6 1.1 9.29 8.64 0 9.15 12.3 5.16 10.1 10 10.2 0.47 9.23 8.57 9.77 8.86 9.24 9.12 9.36 9.69 8.66 4.09 9.38 8.95 12 9.85 10 5.54 10.2 9.3 11.5 8.79 8.23 11 10.3 0.82 9.04 11 5.51 6.1 8.96 4.69 10.1 10.9 1.54 0.47 5.86 9.77 0.82 10.2 9.37 9.61 10.3 8.28 8.87 5.76 11.9 9.71 6.12 9.8 7.72 7.37 2.58 7.61 8.26 6.64 0.82 11.4 10.9 9.64 9.5 14.8 15.3 14 13.1 10.6 11.5 14 5.23 15.1 11.1 13.5 14 13.4 14.3 14 12.6 13.8 11.3 14.3 3.11 12.8 11.9 10.2 13.8 13.1 12.8 13.8 14 14.3 13.4 13.6 14 12.9 13.8 11.7 13.8 13.6 12.1 8.89 8.58 13.6 7.38 14.7 15.2 13.2 10.5 9.43 13.3 13 13.8 14.4 12.4 14.5 4.59 3.96 4.53 6.32 7.25 13.6 1.1 3.11 15.2 10.7 8.45 10 9.56 9.66 13.8 14.5 13.9 12.6 14.5 13.6 13 13.7 12.5 13.2 13.9 14.2 9.23 14.7 14.2 14 13.9 13.6 14.4 13.1 9.59 9.47 13.9 7.44 12.2 8.77 10.3 12.5 10.2 11.9 11.9 9.28 1.34 6.85 11.8 10.8 6.27 7.34 11.5 9.95 10.8 10.1 4.53 8.46 3.87 4.67 11.3 14.2 5.79 9.64 0 13.4 13.5 14 13.6 15.2 3.64 10.2 7.62 12.4 11.2 10.4 11.2 4.8 6.51 6.78 11.4 9.48 10.1 14.4 7.49 9.48 11.3 11 10.1 5 9.47 9.15 9.66 14.2 5.11 7.61 8.13 5.37 8.39 0.82 3.88 0.47 12.8 4.02 2.27 2.58 7.17 12.2 9.57 4.96 10.9 8.66 11.6 2.75 4.43 8.64 6.46 4.36 0.82 7.5 10.6 4.48 6.55 4.87 8.51 8.24 0.82 0 10.4 0.47 3.59 9.19 2.75 5.31 12.6 9.03 15.2 7.54 4.27 8.47 14.4 10.6 8.68 10.5 10.3 2.83 9.13 9.61 11.1 9.44 10.2 9.24 8.76 3.11 8.55 10 7.14 10.4 10.6 10.4 11.5 8.08 8.77 10.4 6.58 1.36 7.71 10.1 9.61 11.4 6.56 10 4.96 0.51 9.48 8.23 6.74 8.3 7.5 8.63 4.09 10.8 7.85 8.63 9.06 7.66 10.9 7.67 10.7 3.59 9.1 3.5 8.87 9.03 10.7 8.25 3.35 10.6 7.72 4.98 7.88 6.1 8.9 12 8.91 8.95 3.68 15.9 3.5 5.1 11.8 8.43 6.36 6.74 6.71 10.9 4.96 10.4 9.14 5.83 6.19 7.49 4.41 8.23 9.71 8.03 8.91 10.2 9.17 9.08 11.1 8.71 13.3 11 7.87 10.8 7.77 7.79 7.01 9.43 11.7 4.4 6.98 6.72 1.1 9.22 5.33 9.82 2.27 7.43 0.47 10.5 9.19 3.59 7.73 5.67 8.26 11.6 9.42 8.91 10.4 5.5 11.1 4.81 9.32 4.53 7.48 4.91 8.62 13.3 0.82 7.68 7.06 9.52 10.3 12.4 10 9.27 7.82 9.75 9.3 9.57 5.11 10.4 9.63 9.45 11.2 4.46 12.7 9.35 10.2 11.9 0.47 0 9.45 0.47 12.2 3.17 12.5 12.7 4.51 7.92 5.17 9.42 0.82 8.47 10.1 7.33 7.53 11.7 1.72 5.53 2.38 4.3 12.3 8.55 2.91 11.9 10.6 8.1 10.8 11.9 9.29 8.64 11 6.93 6.46 9.83 9.67 9.29 10.3 4.89 9.28 7.6 8.67 1.34 6.14 6.42 12.1 9.22 9.39 3.35 11.1 8.74 3.05 2.75 8.76 7.43 8.53 1.54 1.54 9.34 6.65 5.37 9.23 7.4 5.66 3.88 3.11 2.75 5.84 7.91 1.88 10.6 9.47 0.82 10.2 9.69 7.67 8.4 5.19 2.48 8.45 4.73 7.96 9.97 9.07 7.38 0 2.91 5.22 7.85 2.83 9.09 9.71 3.72 7.08 8.5 10.8 10 8.98 10.5 9.23 9.27 9.84 9.02 8.61 8.88 10.2 9.19 3.5 6.28 0 1.34 2.38 5.26 4.21 4.09 11.1 3.35 3.05 2.27 8.72 5.06 7.65 8.18 0.47 10.8 1.54 6.53 2.85 6.59 10.1 5.33 2.02 10.3 3.05 0.47 5.8 2.27 11.3 7.86 2.02 0.82 2.5 2.91 2.15 11.7 0.82 4.83 5.27 3.05 3.59 1.88 6.06 7.31 0.82 1.88 7.25 8.65 10.7 3.88 10.8 1.1 4.02 5.08 10.3 0.47 6.64 4.51 10.3 2.27 10 5.15 6.17 8.89 0.47 0.47 7.17 9.82 8.67 4.15 9.69 0.47 0 2.83 1.1 8.78 3.59 9.62 8.91 6.6 8.13 9.72 10.3 12.8 5.8 3.17 7.81 10.8 4.71 6.16 10.3 9.02 9.91 10.2 10.9 8.86 8.15 5.5 6.49 10.5 9.93 8 9.18 10.8 10.6 7.51 8.78 9.5 9.13 10.1 10.3 9.14 10.6 11.5 8.97 10.8 8.39 10.1 10.5 8.38 10.7 9.08 9.46 9.51 6.87 9.44 9.13 1.72 9.78 12.2 7.22 7.95 8.38 8.95 8.22 6.49 10.4 13.4 6.95 5.48 9.73 9.13 2.02 8.75 7.88 3.59 10.2 7.99 11.1 8.99 5.95 8.74 9.4 9.3 9.28 2.67 10.5 9.27 9.65 3.96 9.33 9.82 9.23 13.6 10.5 9.26 8.6 8.5 7.51 8.5 9.04 11.1 7.23 4.26 6.04 5.63 9.36 7.87 10.4 5.23 9.42 7.24 8.78 6.88 7.64 1.72 9.32 9.49 8 9.26 10.3 8.2 3.45 9.97 7.52 10.8 6.5 9.52 10.9 8.24 10.3 0 10.6 9.82 9.11 9.58 9.9 10.1 9.61 9.65 10 8.21 10.2 9.93 9.52 9.66 2.38 10.5 11.4 10.1 10.1 8.68 10.9 8.41 1.97 9.37 7.29 8.37 3.4 6.03 6.8 6.5 10.9 8.79 9.8 2.27 9.11 3.45 5.97 5.37 9 7.88 6.44 8.93 8.43 10.8 8.28 9.24 8.82 10.2 7.71 13.1 11.4 9.31 9.25 10.7 1.88 10.4 10.2 11.7 9.9 13.1 4.73 8.22 4.83 6.57 2.27 3.84 11.8 0 10.9 9.96 5.39 5 9.39 9.24 9.53 7.41 5 9.29 10.1 7.78 8.28 11.3 9.82 4.06 4.38 9.45 0.47 3.29 3.55 1.1 8.59 8.14 0 5.6 8.54 0.82 12.8 4.71 4.93 0 1.34 6.35 3.88 9.41 8.74 2.83 7.64 3.59 3.11 0.47 6.56 8.84 8.82 10.9 10.6 2.27 9.06 5.57 9.1 2.15 10.6 6.36 4.53 4.21 1.1 10.1 1.72 8.26 5.18 5.51 5.76 0.47 10.9 5.01 0.82 1.34 1.34 8.5 7.22 4.51 7.78 0.82 7.54 6.45 3.17 6.35 0.82 7.26 0.47 12.1 9.74 5.25 5.13 5.26 2.67 3.45 1.34 6.51 0 8.29 1.54 7.51 9.67 2.48 8.17 7.02 7.33 8.38 0 1.54 5.45 9.67 10.7 9.91 10.7 4.56 1.72 6.85 5.25 7.53 2.02 5.81 10.7 14.9 9.27 8 11 10.9 11.8 3.35 7.96 10.2 10.8 9.49 7.25 6.94 7.67 9.79 5.85 6.93 7.7 4.93 11.3 8.07 9.69 10.5 10.3 8.66 5.68 8.66 8.83 2.27 2.27 8.9 12.3 10.1 9.63 11 10 10.6 6.47 8.2 6.51 11.4 1.69 10.8 8.91 8.59 8.61 7.74 10.3 11.4 11.9 7.08 5.37 3.17 7.35 8.42 8.16 7.82 8.47 4.24 10 11.1 12 10.6 9.92 13.1 10.8 10.4 10.6 10.4 11.5 11.3 9.6 10.3 10.5 10.7 6.75 8.98 6.16 12 10 9.62 8.2 0.82 12.1 2.67 12.3 9.31 11.2 10.1 11.7 9.33 10.5 10.8 9.41 11.1 10.2 2.15 9.93 1.54 9.33 8.61 11.8 9.08 12.7 10.6 7.46 10.9 8.85 9.35 6.86 13.6 10.2 10 9.14 3.88 10.2 0 13.7 7.69 8.97 11.3 8.73 7.56 12.3 0.47 6.48 11.4 11.1 12 12.3 10.5 0.82 10.9 9.32 13.2 12.1 10.5 10.1 11.6 12.7 9.48 10.1 6.94 11 10.8 10.2 9.52 11.7 9.98 9.54 10.8 10.6 11.4 11.5 11.7 11.1 11.7 12 8.08 2.98 0 10.7 10.9 11.4 13 2.48 14 3.45 13.3 11 11.8 5.92 10.3 9.99 5.13 3.55 3.55 1.72 3.55 2.83 0.82 2.77 11.7 3.65 2.58 1.1 4.44 12.9 11.9 6.94 8.98 0.82 6.33 10.4 8.54 8.2 8.73 10.7 9.15 3.35 2.27 8.97 10.7 4.58 2.75 8.23 6.82 8.75 9.97 9.79 8.55 11 10.6 9 6.85 8.15 4.41 12.7 10.3 8.61 10.3 11.1 5.37 11.1 9.15 9.51 8.73 11.6 9.77 9.82 8.47 11.8 10.8 7.51 9.54 9.34 4.21 10.6 4.3 1.88 4.98 12 7.66 8.07 0 4.67 0 10.4 10.4 4.33 8.1 8 9.59 9.39 9.53 7.58 13.2 6.83 10.6 11.3 13.7 10.3 10.2 9.55 9.52 6.95 9.13 4.36 0 12.6 13.5 13.7 12.4 12.6 9.52 9.04 10.9 3.88 1.1 9.09 10.2 9.22 10.7 8.13 9.72 8.35 6.52 9.21 2.67 4.06 7.74 10.7 8.64 10.2 4.06 4.3 7.56 9.86 4.85 1.54 11.5 0 10.3 9.64 7.77 3.84 10.7 8.24 8.89 8.24 7.85 10.4 2.02 12.8 8.93 11.1 10.9 9.83 9.99 8.67 8.38 10.7 6.69 11.8 5.75 1.34 8.84 8.75 9.64 5.55 10.8 11.2 8.87 3.68 11.9 9.84 8.55 10.8 6.1 1.54 9.9 13.8 10.1 6.26 9.53 2.91 8.68 8.65 3.05 9.63 7.53 8.06 10.7 8.59 9.43 6.45 9.43 11.6 8.87 9.73 3.5 6.79 8.65 12.3 5.86 10.5 10.9 9.35 8.09 8.7 7.47 10.7 11.1 0.82 9.38 6.52 8.92 10.8 11.3 11.7 0.47 13.6 12.2 10.5 8.46 11.8 8.03 4.91 9.82 2.58 8.31 7.5 0 9.98 10.1 10.8 10.6 9.8 7.15 11.4 11.8 11.7 1.72 10.7 11.8 11.7 8.55 13 5.19 8.86 9.88 10.5 9.46 3.68 12.1 11.4 7.05 8.04 7.57 7.07 15.7 12.2 8.08 8.64 10.5 8.35 8.36 7.99 9.99 9.72 7.46 11.2 15 11.5 7.38 5.55 5.11 5.18 10.4 13.7 10.5 11.7 5.35 11.6 9.62 4.65 3.59 2.67 8.62 11.3 6.82 10.2 7.55 12.1 11.5 7.17 3.81 11.9 11.5 8.72 10.7 10.1 9.55 12.1 8.65 10.3 11.6 10.6 12.1 1.54 13 11.1 12 11.8 12.8 14.1 9.49 9.58 11.6 6.25 15.8 0 12 8.37 9.99 13.7 8.52 9.9 8.27 7.8 6.56 7.71 10.5 1.1 12 8.76 11.4 6.17 0.82 5.19 0 1.1 4.67 8.54 8.97 0 4.06 4.38 10.6 9.54 10.4 0.47 10.6 2.15 9.11 10 7.71 10.3 9.46 8.91 10.7 9.79 10.6 11.1 8.86 7.38 9.11 9.29 7.59 5.01 12.4 6.6 3.77 2.58 5.64 8.74 9.98 6.96 8.39 3.55 4.3 5.01 5.57 7.06 0 7.93 5.72 5.23 7.67 9.32 10.6 3.5 7.24 0 1.88 7.71 11.9 6.78 3.81 1.1 7.01 9.86 6.93 1.1 9.76 1.34 6.22 6.15 4.53 3.11 5.1 9.32 7.05 0.82 13.3 2.75 7.45 2.15 5 1.54 4.24 6.87 8.25 2.27 8.99 1.34 1.1 9.38 5.16 9.87 3.84 5.15 4.66 5.74 3.16 2.15 7.17 6.51 6.03 3.4 0.82 4.53 6.36 1.54 4.02 7.12 2.75 0 8.35 12.2 8.69 6.34 8.12 2.15 4.77 10.2 5 8 0.47 8.58 10.6 4.09 0.47 3.84 11.2 7.68 8.53 3.68 6.52 1.1 8.99 8.18 0.82 7.53 1.34 6.67 4.43 8.14 9.46 6.68 1.34 10.1 3.05 11.5 2.02 13.5 0.47 12.6 15.2 12.3 0 10.9 10.7 10.5 9.26 10.8 12.4 10.8 8.93 10.4 10.2 10.1 11 2.15 10.8 10.9 12.1 10.3 11 8.73 11.1 10.5 11.2 5.48 9.03 13.2 5.01 10.8 4.46 10.5 4.21 9.53 8.37 9.17 11.4 6.71 9.24 10.3 7.71 10.6 10.8 10.7 9.59 6.01 10.6 1.34 11.2 12.1 11 10.3 11.3 9.78 9.18 9.96 11.7 10.6 1.88 10.4 10.2 9.08 8.61 9.99 11.2 7.66 9.43 9.51 9.1 11.4 12.7 11.9 11.1 10.9 10 11.5 10.2 6.13 2.83 9.54 0 13.7 13.1 7.02 5.84 9.43 4.21 9.9 6.84 9.2 9.95 12 1.34 8.88 10 13.8 7.25 9.92 12.2 10.7 7.62 7.63 10.7 9.95 9.01 11.6 10.1 7.05 2.58 2.02 11.3 2.67 7.49 10.1 0.47 4.36 7.3 8.13 2.75 1.1 8.06 7.77 4.93 11.5 6.21 3.17 10.5 7.85 8.39 9.72 5.88 10.4 2.02 12.7 10.4 6.71 9.32 7.45 9.27 12.8 8.01 10.4 10.9 13.4 8.1 13.3 12.1 11.8 14.2 7.46 11.4 11.7 5.99 12.2 9.04 9.45 8.34 6.72 8.01 9.2 7.94 8.74 5.99 13.7 7.31 9.1 5.18 6.72 8.48 7.15 8.02 6.23 6.38 7.35 9.11 8.98 8.06 10.2 7.57 8.53 5.66 8.65 9.88 9.24 7.57 8.56 7.86 7.24 7.77 8.59 5.18 7.12 6.36 9.08 5.08 0 5.37 6.1 7.49 7.78 7.99 9.62 6.98 2.38 8.51 2.75 4.02 5.1 7.86 1.1 0.82 4.75 5.77 5.64 12.1 4.55 0.82 2.48 3.41 3.09 8.03 2.83 8.99 9.45 4.73 9.89 4.41 4.24 7.5 5.31 7.75 8.35 8.37 5.96 8.65 8.29 9.97 1.34 10.9 9.84 10.2 9.17 12.4 3.55 7.2 3.45 9.52 6.3 10.9 7.23 6.63 6.29 6.52 2.58 7.16 8.49 7.35 12.1 0.82 7.19 8.17 7.26 7.27 7.82 6.32 10.3 7.8 8.09 6.5 8.69 11.3 4.12 6.55 8.9 5.36 4.18 11.5 10.7 6.23 7.41 5.32 7.88 1.88 7.76 6.68 2.83 6.34 7.49 8 6.84 3.55 3.17 5.86 7.54 6.02 4.24 12.2 9.57 9.66 13.2 3.11 10.9 8.38 11.9 4.42 13.4 7.83 10.7 7.27 4.12 10.9 8.89 9.56 9.1 10.1 9.4 10.5 5.51 3.11 4.15 12.4 10.2 7.21 1.88 9.4 10.3 9.81 8.88 10.5 10.2 11.1 13.4 7.62 5.25 11.3 3.05 9.18 9.96 6.98 5.8 9.26 10.1 9.67 8.08 10.1 2.02 5.28 8.19 11.2 7.71 10.1 11.8 8.92 9.48 9.35 8.15 9.17 9.25 9.73 0.82 10 11.2 8.2 9 8.35 11 9.13 3.35 15.1 10.6 10.1 7.54 8.72 9.7 8.44 9.56 10.4 6.19 10.7 10.7 6.68 10.3 10.6 9.7 11.5 9.13 8.85 9.91 9.05 8.77 10.7 9 9.11 7.41 8.17 7.04 11.8 6.73 8.04 9.5 7.06 8.92 9.48 10.6 11.1 10.1 9.08 4.85 9.91 8.3 7.37 7.88 8.42 10.2 8.54 8.39 11.2 9.28 10.2 10.9 12.7 9.17 8.08 8.6 8.4 10.9 10.7 7.58 9.41 9.95 12.3 8.79 8.33 10.2 7.07 9.39 7.92 8.28 7.77 10.5 7.83 9.3 10.8 8.73 12 8.97 7.64 1.1 5.21 9.23 11.9 8.78 11 8.1 8.73 9.45 8.65 8.16 8 7.78 9.03 12.3 9.95 9.14 2.83 11.5 12.5 10.2 10.1 11.3 9.65 8.71 6.96 3 9.78 1.1 9.11 0.47 10.7 5.22 10.8 10.8 7.1 4.02 3.55 5.9 7.73 0.47 8.22 5.72 4.87 6.71 7.98 10.3 8.81 8.59 3.29 9.93 7.54 10.2 5.57 3.68 5.82 2.58 9.84 8.15 6.42 1.34 8.82 11.8 8.09 8.62 8.32 9.7 10.2 8.73 5.94 8.81 10.6 8.53 10.1 9.21 9 9.81 8.08 6.53 7.53 11.1 7.48 5.23 8.13 5.22 8.04 3.64 8.33 7.49 4.18 5.79 9.73 8.74 7.85 8.99 2.67 6.91 9.04 6.17 8.15 7.39 9.44 3.11 5.76 8.75 5.49 8.1 7.31 9.24 9.78 6.87 8.9 9.85 3.64 8.51 9.86 8.98 4.89 9.33 9.81 10.7 7.35 9.94 3.72 9.24 8.23 6.88 9.61 7.06 8.71 9.95 9.69 9.48 4.85 8.69 9.08 10.1 9.16 10.8 5.14 1.1 8.18 8.47 11 8.62 11.5 7.11 7.89 9.77 9.84 8.33 9.63 8.43 8.83 8.29 8.56 4.75 8.19 8.95 8.41 9.67 9.41 9.55 7.33 11.3 9.02 9.52 8.17 7.85 9.09 9.74 10.2 12.5 10.5 10.1 2.48 7.55 10.2 7.26 9.62 9.62 8.07 6.61 7.94 9.03 7.11 9.75 7.5 7.98 6.51 2.29 6.58 7.06 10.8 8.68 0 10.7 2.58 9.21 9.56 8.11 8.77 11.5 7.54 8.21 3.23 8.46 8.52 10 9.66 10.7 9.52 4.93 8.22 5.08 7.84 10 7.6 8.85 9.05 0 6.67 14.1 7.68 2.38 8.44 12.1 8.52 10.9 8.42 8.57 8.24 8.29 7.4 8.43 0.82 8.93 4.62 7.98 7.14 7.17 11.3 7.99 10.3 6.11 7.44 3.11 8.66 7.55 3.4 9.17 2.27 4.43 7.38 5.48 4.81 8.27 8.87 7.78 6.36 9.95 8.76 9.32 3.81 10.2 3.68 4.06 10.5 8.22 4.21 6.35 2.67 3.88 6.62 3.92 8.29 7.71 0.47 10.5 10.9 0 5.01 6.81 1.54 7.9 3.05 5.89 8.96 4.09 2.58 7.65 7.95 7.98 10.9 10.9 7.61 9.15 7.82 9.12 8.96 9.75 9.76 4.94 8.92 9.75 7.05 4.43 9.02 9.34 11.4 8.79 9.33 4.46 11.1 10.4 10.1 5.67 7.37 9.36 6.44 6.95 11.3 10.2 10.3 7.32 4.75 0.82 10.6 9.17 8.72 7.69 5.58 8.27 10.6 7.39 0.47 8.66 4.06 5.31 6.55 7.55 7.35 2.91 10 1.54 9.29 1.34 6.93 10.2 9.95 2.15 7.32 7.67 4.82 9.06 0.47 5.78 10.5 3.88 11.7 5.93 7.89 7.04 8.87 9.31 6.55 10.9 9.9 7.4 7.86 8.47 3.11 5.72 10.9 8.04 10.6 7.79 8.92 2.83 7.91 6.12 10.3 8.89 2.15 8.74 2.58 11.5 8.81 0.47 7.51 10.3 7.79 9.17 7.57 4.73 9.02 10.6 10.6 8.38 5.86 9.73 8.9 8.8 9.62 8.99 9.57 9.23 9.75 10.2 8.85 9.03 2.91 2.83 6.02 5.82 8.98 8.16 8.65 0 6.84 4.36 0.47 7.53 11.2 12.9 3.17 4.79 3.45 3.55 7.7 0.82 9.12 6.2 5.19 4.77 5.55 9.18 9.69 8.35 9.87 9.76 4.06 10.4 9.23 10.3 9.76 6.49 9.87 9.92 10.6 10.1 5.49 9.99 6.45 8.47 7.62 7.14 9.73 5.49 8.07 10.9 5.67 8.08 8.5 9.98 9.44 10.3 9.01 9.54 8.51 6.4 11 10.2 7.38 9.27 10.9 9.77 10.3 7.38 9.49 9.75 9.64 1.88 12.4 9.43 8.3 9.44 11.7 7.29 8.53 9.02 10.4 4.91 11.1 9.51 7.27 8.03 2.15 9.72 9.1 9.01 4.69 8.78 7.39 6.24 9.39 8.49 9.23 11.3 9.51 3.59 11.3 9.1 2.91 6.65 11 9.66 6.21 7.99 10 8.9 8.02 9.5 12.9 6.12 7.35 3.81 6.39 7.82 8.63 5.08 6 7.41 8.93 7.53 8.98 9.52 8.06 8.58 6.2 12.1 5.96 3.64 12 9.44 5.28 7.31 7.45 10.7 7.11 11.5 10.8 10 2.91 10.2 9.38 9.84 7.95 6.42 9.26 10.4 13.6 9.35 8.59 9.12 10.6 5.99 9.12 4.67 8.39 8.79 8.14 5.08 9.71 7.96 11 2.58 9.97 4.02 6.62 4.27 7.98 8.49 7.36 8.94 3.96 7.87 4.84 8.08 5.78 10.7 8.9 9.36 9.31 9.46 7.22 6.49 10.7 6.3 10.7 9.87 9.17 11.8 11.7 11.8 8.78 9.09 8.86 8.1 7.27 6.51 9.11 11 11.5 9.73 10.4 2.58 10.6 9.58 9.44 10.2 8.35 9.53 4.55 4.79 6.7 0 11.3 9.16 9.4 8.1 5.13 2.15 12 13.7 6.8 5.29 4.67 8.51 6.79 8.61 9.18 6.96 10.5 12 14.1 3.05 9.65 2.27 5.64 3.59 12 11 8.6 6.93 5.99 10.9 12.6 10.2 8.3 2.83 8.62 3.29 3.81 12.3 6.11 9.58 9.24 7.17 12.1 10.2 4.91 6.74 9.37 8.09 10.4 7 9.72 9.44 10.4 6.91 7.5 9.55 8.44 10.9 9.68 9.01 11.5 0 8.17 7.13 9.85 8.91 7.51 9.01 8.89 4.3 8.98 2.02 6.94 11.1 10.5 14 12.4 9.97 9.23 9.14 10.2 11.1 10.6 4.27 0.82 7.06 9.96 12.3 10.2 6.72 10.7 7.71 8.25 10.2 4.51 10.1 10.3 11.8 11.5 11.7 8.8 7.29 7.19 9.45 0 8.77 9.93 0.82 10.7 8.86 9.48 9.64 6.96 8.95 4.6 5.8 3.05 10.1 9.29 9.73 7.76 9.41 9 6.82 5.32 9.83 2.77 9.42 6.89 9.5 10.1 4.85 11.1 9.14 12 9.8 8.25 9.13 11.2 9.41 9.36 1.87 10.5 9.22 3.77 9.9 9.63 9.09 9.97 0.47 7.51 6.19 9.13 10.6 1.72 10.8 10.7 8.86 10.4 13 8.3 9.43 3.4 13.1 9.24 1.54 8.32 7.78 9.38 7.94 12.7 8 10.4 11 12.6 10.5 10.9 11.2 7.94 13.2 9.9 8.26 10.3 7.93 9.29 9.89 1.1 8.53 0.82 11 12.2 7.09 4.67 9.13 2.83 9.96 11.1 11.8 9.49 3.77 12.7 9.23 9.63 7.3 10.8 9.08 9.11 9.33 12.5 4.69 9.24 8.27 11.8 7.77 6.38 2.98 0 10.6 1.34 2.91 2.67 9.18 3.45 8.51 3.64 2.15 9.96 10.3 2.48 5.7 3.29 6.45 1.54 3.64 8.4 3.29 10.3 11.9 10.4 8.92 6.25 4.83 4.79 3.45 9.93 7.97 2.38 9.26 8.37 8.87 7.39 7.34 5.45 7.35 9.25 6.96 9.02 2.67 7.8 8.43 9.46 8.93 10.8 2.38 4.67 0 4.91 3.05 2.83 9.23 11.3 9.33 7.46 7.6 9.06 9.68 3.96 8.69 0 4.79 3.72 2.48 10.4 6.36 6.95 10.8 8.49 11.3 9.6 10.6 1.54 7.8 10.2 10.9 9.28 8.23 0 4.33 8.48 11.3 9.2 2.67 9.29 10.4 9.04 7.51 3.72 5.14 0 0 11.6 2.27 8.11 11.9 8.98 3.81 3.99 8.82 8.48 6.53 10.1 8.71 0 2.02 9.09 10.5 8.79 7.9 8.75 8.82 5.84 9.8 8.65 10.7 7.17 2.38 3.72 9.23 2.58 6.63 10.5 9.28 9.72 5.91 9.63 9.13 3.88 5.45 8.24 10.5 9.37 8.85 2.15 4.98 2.27 8.08 0.82 3.04 9.71 4.41 5.82 9.01 7.18 7.35 9.29 10.3 6.73 9.7 5.36 2.75 9.69 3.84 9.26 0.82 6.5 1.72 9.62 0.47 0.82 0.47 0.82 7.6 10.2 8.41 7 8.74 9.43 7.6 8.75 9.09 4.81 11.4 9.91 8.54 8.57 6.04 5.91 1.1 7.56 1.88 10.6 10 7.66 9.3 5.16 9.84 10.3 5.91 6.03 8.65 4.09 7.48 4.91 0.47 10.5 10.7 9.59 11.2 10.2 8.03 8.09 11.3 10.1 3.4 7.86 7.92 7.91 6.85 4.98 7.64 10.6 8.46 1.34 8.64 9.76 8.85 7.93 9.02 13.2 3.05 4.18 6.61 1.72 4.85 6.03 10 10.7 8.47 9.62 5.48 6.96 8.2 9.82 2.15 9.66 5.68 4.27 5.21 8.41 5.49 8.33 9.55 8.8 9.08 8.16 9.79 9.04 8.29 8.62 7.41 8.88 7.99 7.51 7.86 6.82 4.87 9.85 9.57 6.7 9.18 8.63 10.8 8.11 10 8.16 10.5 11.1 6.46 11.2 9.71 8.68 8.76 8.39 6.44 8.18 9.79 10.2 6.55 8.91 9.09 11.5 2.58 1.72 6.17 10.4 10.2 10.4 3.4 8.22 5.75 7.88 0.47 8.18 3.4 8.39 2.02 7.71 5.8 7.73 6.71 7.01 5.67 0.47 9.14 11.5 10.9 8.2 7.77 5.64 8.97 10.2 9.32 9.1 8.86 11.2 1.54 10.6 7.48 6.03 4.27 8.66 9.46 9.13 0.82 8.73 8.63 8.19 10.2 9.81 6.66 8.72 9.32 8.6 9.46 8.61 9.68 8.87 10.6 10.1 9.26 9.19 7.11 7.75 7.97 5.05 8.24 12.3 10 9.07 9.1 10.1 9.16 8.91 8.74 9.49 4.93 8.73 9.95 8.13 11.1 8.11 9.24 9.03 8.85 10.1 9.49 10.7 5.43 9.51 8.02 8.68 9.45 7.76 7.54 8.55 0.47 9.74 9.33 8.14 10.5 7.67 7.76 9.42 9.87 8.02 9.67 9.11 12.4 10.2 9.2 4.02 7.98 6.63 7.85 8.25 0.82 10.6 9.17 9.92 9.57 10.2 6.09 8.82 8.33 9.36 0.47 5.86 10.9 9.83 10.1 9.75 9.02 8.75 1.72 10.9 4.24 9.08 7.71 9.78 7.26 4.21 7.58 4.83 6.56 9.11 7.4 10.3 10.8 2.98 10.1 8.45 7.09 9.85 8.96 7.87 6.99 6.32 5.76 9.71 6.95 8.9 7.89 2.38 0.82 5.97 4.1 9.84 8.3 10.3 8.43 3.55 6.35 10.6 9.28 9.09 9.47 10.1 6.21 9.18 4.02 10.6 7.79 9.72 7.54 8.81 8.19 9.23 9.64 9.2 5.84 10.6 5.21 10.1 10.1 5.86 9.24 9.24 11 8.91 9.06 9.19 0 10.2 9.11 9.75 0 10 8.03 4.24 11 10.4 9.21 6.67 6.74 0.82 6.69 7.05 6.42 4.21 11.2 9.46 10.1 1.88 3.92 6.42 9.04 11.5 6.51 8.17 9.01 10.8 5.64 0 5.8 1.1 10.7 9.93 8.55 9.55 10.5 4.02 8.09 0.82 10 6.05 3.79 8.65 9.4 10.3 2.38 5.05 7.24 5.92 4.02 3.64 1.1 8.35 6.63 0.82 2.75 8.9 8.84 8.03 9.1 2.67 10.7 9.77 7.34 5.64 11.3 8.14 10.8 7.64 5.84 1.1 6.8 9.12 7.32 6.66 9.54 8.03 9.45 7.3 3.29 8.37 5.8 2.67 6.94 8.42 9.7 12.5 7.58 9.11 6.24 6.01 10.9 10.3 4.96 6.57 5.89 7.98 8.23 9.43 9.16 5.11 3.77 4.91 7.49 10.3 9.96 9.95 9.33 11.9 4.62 8.68 6.64 3.88 5.13 10.1 10 7.33 7.42 1.1 7.85 10.1 3.45 6.92 5.08 9.53 7.95 8.64 10.3 7.43 8.2 8.36 8.65 7.89 5.98 0.82 7.51 7.09 10.5 9.17 8.08 8.77 8.69 7.78 10.8 9.82 9.41 8.81 0.82 8.64 10.3 4.24 9.37 9.78 9.55 7.98 8.34 8.72 6.26 10.3 8.32 8.73 7.56 9.93 11.7 10 10 3.45 7.78 6.53 8.63 6.39 9.94 10.8 10.7 10.2 7.03 8.81 9.65 6.95 8.91 9.6 9.38 1.1 7.96 9.41 8.73 8.33 8.38 10.2 9.95 7.42 9.45 4.62 7.04 8.62 1.1 8.7 9.47 8.04 8.12 9.75 9.79 12.6 5.82 3.45 8.54 8.92 8.9 11.3 6.35 9.93 0.82 6.63 9.35 8.44 8.62 3.68 5.48 6.12 9.24 9.32 9.63 6.66 2.15 10.6 7.68 0.82 7.56 12 8.37 9.19 9.05 4.74 1.72 10.8 10.5 10.2 7.15 9.95 5.37 5.72 8.71 0 5.51 8.44 9.11 10.2 7.59 6.88 10.5 9.63 8.33 7.81 8.11 9.14 9.3 8.6 8.46 7.06 9.63 10.4 8.89 6.04 0.82 7.97 3.77 3.99 8.54 9.53 11.1 10.3 0 9.03 2.83 9.92 9.57 7.35 7.93 6.35 1.1 7.29 0.82 5.21 8.09 12.5 9.33 8.2 1.54 8.55 0.82 0.47 10.3 4.98 9.65 6.03 7.33 9.77 7.48 7.2 8.94 9.77 9.27 2.58 9.52 9.38 3.88 10.9 9.61 10.7 11 7.23 10.3 9.21 10.1 5.16 6.58 9.32 0.47 4.77 9.67 2.91 15.2 11.1 9.83 9.81 9.6 8.33 10.6 3.11 8.75 5.97 11.1 11 9.06 6.12 5.64 12.4 8.41 6.99 8.85 10.1 8.92 10.1 8.9 7.95 8.21 10.4 4.18 3.11 10.6 5.7 2.02 4.51 9.02 4.77 2.75 8.63 8.97 4.25 4.12 14.5 8.67 7.63 7.86 2.75 10.2 8.8 9.49 10.3 9.01 4.77 11.3 12.6 9.88 10.2 9.11 9.99 11.2 10.4 9.78 9.55 9.52 9.03 5.73 6.76 10.8 8.24 11.1 8.75 3.64 5.68 9.61 9.21 9.39 6.86 10.9 5.55 6.78 11.7 9.71 11.3 9.47 9.83 10.4 2.48 2.58 10 3.45 7.81 9.4 10.2 12.6 8.43 8.1 7.53 6.35 4.43 2.27 9.38 10 10.4 8.46 7.99 8.04 9.75 1.72 7.76 3.05 11.2 5.5 6.99 10.5 10.2 10.8 10.4 7.36 7.73 12.7 9.85 8.83 8.48 12.4 11.7 7.62 12 11.3 11.1 11.8 11.8 11.3 9.65 5.01 10.6 12.1 8.13 11.2 8.07 8.93 10.5 7.52 10.1 12.4 11.5 6.41 8.57 10.6 8.56 9.86 10.1 5.96 11.8 1.57 10.9 9.34 10.5 9 7.81 2.83 0 11.7 8.59 7.04 10.1 10.2 9.12 11 12.4 7.33 9.77 11.4 9.67 9.25 6.61 9.32 10.7 11.8 9.36 8.46 10.8 4.58 9.8 6.97 9.56 3.29 9.15 8.47 14.4 5.72 3.77 3.11 1.54 9.27 11.6 10.6 16.2 10.2 11.9 12.5 10.9 12.5 8.85 8.79 9.58 10.6 9.19 11.4 10.1 6.88 6.24 4.33 11.7 8.73 4.71 2.58 3.84 8.09 4.98 6.5 5.03 11 7.28 7.95 9.69 0 6.01 9.76 10.4 9.96 10.9 9.93 4.96 5.32 1.54 4.3 10.2 10.7 4.15 11.7 10.4 3.99 9.93 8.2 4.77 8.89 1.88 10.9 1.54 12.8 10.1 8.77 8 8.59 6.07 11.2 9.42 8.74 10.2 9.9 1.54 3.92 6.49 10.1 0.47 8.45 9.43 10.2 7.59 7.06 13.4 8.42 8.22 11.1 6.17 1.54 8.87 1.88 8.78 9.66 3.17 10.7 10.8 8.1 7.51 11.3 8.47 10.2 9.6 9.26 4.67 5.06 9.93 13.1 11.4 9.9 10.3 9.04 9.45 10.3 10.5 11.8 10.1 9.85 9.91 8.51 9.09 11.1 12 10.6 10.8 10.4 9.27 10.2 1.1 10.1 0.82 12.2 7.89 10.5 9.79 5.25 4.73 10.4 6.81 1.54 6.95 9.07 2.48 10.9 9 9.27 9.9 11.1 10.2 4.58 4.12 3.4 10.6 12.2 9.54 8.44 9.75 8.41 5.81 10.3 8.87 8.59 10.1 11.6 10.1 10.3 2.38 3.55 6.22 13 1.1 0.82 9.73 7.62 11.5 4.6 1.88 10.3 7.75 7.43 3.29 10.3 10.1 8.55 6.01 3.29 2.38 2.38 6.04 8.99 7.5 9.28 9.61 9.54 6.57 7.41 5.56 10.5 8.17 8.24 6.96 2.11 6.62 2.56 2.02 7.32 1.54 7.73 11.2 7.11 8.62 9.1 10.1 11.8 6.44 0.82 8.25 9.2 10.7 7.89 8.74 10.1 9.29 6.47 7.91 8.24 1.72 6.75 9.75 9.77 11.4 6.79 5.1 5.86 9.23 4.21 10.2 9.06 4.51 10.7 10.2 9.71 0 11 5.98 9.37 6.66 6.14 7.22 8.87 10.5 10.2 8.92 8.05 8.76 8.45 10.7 10.8 4.48 7.46 10.1 6.66 3.05 6.32 2.38 8.5 9.78 8.97 1.34 7.02 2.48 5.96 1.1 7.09 10.9 9.58 6.6 8.44 9.82 7.86 2.27 5.03 8.64 8.64 6.11 0 7.54 8.05 4.71 5.89 9.82 9.96 8.88 10.3 7.98 5.35 10.1 10.7 8.65 11.1 8.45 9.34 6.05 9.84 10.1 10.1 8.76 13.3 8.78 7.59 6.94 6.19 10.2 1.1 8.39 10.4 9.54 9.41 4.67 9.29 7.09 10.6 9.66 7.09 10.4 6.93 9.61 9.64 11.8 9.64 6.76 8.4 9.82 7.5 8.3 0.82 4.53 8.49 4.27 6.93 10.9 8.09 6.68 8.51 8.55 8.66 8.6 11.3 2.38 7.74 6.71 6.74 8.95 3.84 9.94 7.44 10.1 9.7 1.13 7.81 0.47 2.27 3.29 10.4 7.04 9.3 12.1 4.51 8.73 9.73 7.45 5.96 9.03 9.41 7.14 12 10.2 9.21 9.39 6.48 9.69 7.27 8.24 10.8 10.2 9.84 8.92 6.47 7.58 9.66 9.65 2.67 10 5.69 8.36 5.21 9.88 7.67 10.9 10.4 10.2 9.76 9.97 5.55 10.6 2.75 7.27 8.66 8.59 8.97 5.14 5.74 9.44 10.8 10.2 9.98 6.19 7.24 7.22 8.45 10.6 6.87 7.12 8.32 7.23 0.47 0 5.51 4.24 7.9 3.4 3.45 11.9 12.8 7.53 9.24 11.1 0.82 9.34 10.1 8.29 10.7 9.67 8.96 5.86 11 11.2 11.9 9.03 8.35 9.14 2.75 10.4 9.46 9.44 8.36 0 5.19 9.08 8.41 9.04 8.54 11.1 10.7 6.79 9.29 8.97 9.32 10.2 5.55 9.91 6.86 6.71 9.83 12.4 6.8 9.87 9.47 3.29 9.07 11.2 9.61 9.64 3.96 8.45 8.14 9.19 5.45 7.55 4.73 8.65 9.53 8.44 8.95 9.92 10.2 2.67 9.29 8.99 8.82 8.74 3.5 10.4 4.36 8.56 0 8.34 7.67 9.41 7.38 1.34 9.56 7.75 11.2 14.3 7.56 10.1 10.8 9.67 7.15 4.96 8.86 5.81 2.27 0.47 6.24 11.3 9.8 5.56 5.54 7.39 3.68 10.2 6.43 8.52 9.9 8.54 9.27 7.44 0.82 9.5 8.37 8.99 8.54 11.6 7.17 6.75 9.53 8.17 9.13 8.33 6.84 10.5 9.67 6.58 7.04 9.84 0.47 3.17 7.12 7.38 0 8.78 3.96 8.08 9.23 8.67 1.54 7.74 8.57 10.1 5.81 8.44 5.11 6.87 8.24 9.58 9.14 8.73 8.07 8.55 11.8 10.5 4.02 8.14 6.77 8.8 8.38 9.87 4.77 10 6.33 11.2 9.52 10.4 5.19 10.5 9.16 11.9 9.73 11.8 9.64 8.71 11.6 3.5 7.5 0 7.62 8.12 5.76 8.98 6.43 1.72 5.77 2.15 0.47 3.84 0 1.1 8.47 11 1.1 10.2 11.8 7.03 10.2 9.05 3.01 7.03 8.06 6.98 12.8 8.93 10.2 1.54 9.06 10.3 9.62 7.71 9.8 8.91 0.82 7.36 9.59 3.17 8.87 11.8 7.89 1.88 12.9 8.82 7.65 9.99 9.46 4.62 10.5 10.2 8.12 6.46 9.58 9.23 3.89 6.9 8.87 6.6 10.4 9.59 11.3 9.09 9.81 9.89 8.81 6.7 10.8 10.9 10.2 10.2 8.73 3.35 11 10.6 10.7 9.03 9.96 9.84 10.1 11.6 9.72 9.2 3.59 10.6 14.8 8.01 6.45 10.1 9.71 2.67 8.87 7.05 9.3 11.5 10.1 3.55 9.42 10 7.75 7.09 7.55 4.75 11.7 11.7 6.83 2.91 9.22 9.02 8.44 4.48 9.14 1.54 3.5 7.18 9.41 8.55 8.24 4.73 5.45 5.58 11.2 9.96 2.48 8.64 9.81 9.8 7.02 9.63 6.54 3.23 8.04 11.1 7.76 9.2 9.17 10.8 9 9.97 12.2 4.58 10.4 9.96 9.13 11.4 7.95 4.18 9.28 7.69 8.58 8.76 10.1 12.4 9.49 8.91 10.5 7.54 8.66 11.2 9.72 0 10.7 9.49 10.3 5.79 1.54 10.7 13.2 0.82 9.91 8.03 10.5 5 10.1 6.33 6.32 0 7.07 7.42 5.29 7.91 10.2 10.8 8.16 0.47 12.7 9.71 9.43 8.71 4.71 8.01 9.08 2.27 5.77 1.11 8.69 9.27 8.64 12.6 1.72 10.5 8.88 9.64 8.09 11.2 11.7 4.24 6.57 10.4 1.54 8.98 6.83 6.15 1.1 7.51 0.47 10.6 6.69 11.5 4.02 7.62 8.82 10.9 1.88 6.63 5.94 9.38 7.63 5.16 9.66 9.81 6.85 10.1 5.54 6.01 11.7 11.4 4.15 9.85 7.32 6.98 8.64 9.32 7.81 10.2 9.87 2.48 8.77 8.34 5.18 9.83 9.76 10.4 10.1 10.2 6.71 9.28 7.17 8.57 7.65 8.32 6.61 11.8 8.41 2.58 11.3 9.3 8.18 5.97 9.29 11.3 12.2 8.71 9.52 9.69 9.62 2.98 5.19 4.71 4.6 7.03 1.1 8.97 4.06 8.85 8.28 8.53 7.34 10.6 14.3 10.2 9.22 9.73 5.69 6.82 8.5 7.84 9.42 9.4 10.2 7.17 7.82 0.82 9.95 9.13 6.81 7.9 9.04 2.38 7.22 8.38 10.4 3.92 8.86 9.91 9.5 2.27 8.56 6.9 8.54 6.26 6.24 8.13 5.48 6.31 8.31 8.94 9.2 12.2 10.1 6.32 8.54 3.4 2.15 9.75 12 10.2 5.55 7.41 2.75 6.32 8.13 8.71 10.3 9.42 1.1 5.63 12.2 9.58 9.29 8.11 6.92 10.3 7.79 9.92 11.5 10.8 10.6 9.5 12.3 10.1 9.24 7.06 11.6 7.08 9.06 7.86 8.24 9.12 10.2 11.4 6.22 10.8 9.85 1.88 11 8.68 11.8 10.9 11.4 11 9.92 9.61 9.64 12.5 9.83 8.29 10.8 7.94 7.88 10.3 11.1 10.1 7.11 10.6 7.07 9.36 10.1 7.52 9.69 11.4 10.7 10.1 9.96 6.58 8.52 12.6 9.25 4.46 8.59 11.4 10.8 5.92 8.73 12.1 8.08 2.75 12.3 9.86 11.8 10 9.09 9.5 4.36 11.9 7.79 10.3 11.2 11.3 7.51 10.8 9.93 8.44 11.3 5.66 7.5 2.38 9.71 4.67 8.68 11.1 5.22 12.2 10.2 9.61 6.49 8.8 10.5 9.04 11.8 11.2 9.12 8.68 10.2 9.75 8.98 8.28 9.79 9.71 10.6 9.42 9.62 8.3 9.03 9.5 9.78 7.99 9.18 13.1 15.1 7.63 8.06 10.3 8.11 10.7 6.46 11.4 13.4 9.25 3.45 9.93 9.2 7.91 9.83 8.92 10.4 9.6 10.4 11.4 8.68 9.89 10.6 9.64 11.5 10.9 8.27 10.6 11.7 7.43 11 8.95 8.57 9.89 10.5 9.38 8.58 10.6 8.07 7.75 5.89 9.42 9.86 9.92 11.4 8.71 2.02 7.7 2.02 10.4 6.4 8.67 9.73 9.58 7.87 10.5 3.4 8.16 5.73 15.8 3.25 3.4 9.3 9.11 8.81 9.08 9.2 8.28 9.68 8.76 6.67 10.3 7.31 10 11.7 6.24 8.56 9.78 6.32 13.3 8.18 11 7.81 10 7.12 11 8.8 12.6 6.08 5.64 6.46 5.67 7.62 10.2 8.02 9.14 5.89 10.8 8.46 8.73 9.5 11.2 7.9 11 12.4 8.16 8.7 9.73 11.1 11.3 10.4 12.3 9.37 10 4.38 11.5 8.59 12.2 6.91 11.3 10.5 7.72 8.71 12 10.2 10.2 10.6 10.4 10.9 9.98 4.81 10.4 11.2 8.06 9.59 12.3 11.8 10.8 9.24 9.64 0.47 11.1 9.24 9.61 11.3 9.13 9.65 7.82 11.5 9.86 9.01 9.01 10.1 7.24 9.72 9.4 9.71 6.55 9.76 2.83 11.3 10.4 8.07 3.23 10 5.41 9.1 10.4 7.98 10.4 4.58 7.88 9.11 7.21 7.28 8.44 9.8 4.77 9.76 7.99 9.45 8.78 7.8 7.85 5.33 9.85 9.63 8.78 6.78 10.2 10.4 6.64 7.68 7.74 10.2 11.2 9.73 10.2 10.1 9.24 9.82 10.3 10.3 11.6 10.8 10.4 9.54 7.59 9.05 8.55 10.5 8.07 11.2 6.7 10.9 9.11 11.7 3.05 7.98 9.93 8.87 8.41 9.75 11.2 2.48 9.79 7.63 9.09 10.5 10.7 8.86 10.6 7.38 9.62 11 9.88 10.1 7.4 7.1 4.83 11 3.11 6.52 10.3 11.4 10.9 2.75 11.5 9.32 8.87 9.95 9.34 10.5 11.8 7.54 10.8 8.72 9.5 9.83 5 10.9 8.07 8.51 8.05 11.4 11.6 2.15 7.34 5.9 10.4 7.16 7.67 12.6 9.34 7.36 10.2 5.35 9.12 4.98 9.3 9.89 9.56 9.59 12.2 8.82 4.09 2.83 11.4 9.71 10.3 9.76 3.55 10 8.89 10.4 12.2 10.8 12.5 9.57 8.89 9.08 8.84 12.5 10 12.3 12.9 12.2 12.2 3.88 11.4 9.13 10
-TCGA-E7-A7DU-01 4.91 5.5 3.42 6.65 6.92 8.26 2.18 4.29 0 0 2.62 9.47 5.73 0 1.47 9.62 10.6 10.9 6.94 8.94 9.5 9.58 9.26 3.92 10 8.15 3.9 9.47 4.45 5.63 5.66 7.38 0 0.91 3.3 0 0 6.7 0.91 6.26 5.8 4.08 1.47 0 6.31 4.78 2.65 4.91 11.8 6.2 2.18 6.07 8.72 7.19 5.47 1.87 7.45 0.91 6.35 6.64 8.31 4.58 8.27 4.64 3.01 3.42 3.23 9.65 10.2 5.72 5.95 3.16 3.01 1.47 8.11 2.18 6.62 5.66 3.42 2.44 3.83 2.65 2.58 8.14 2.84 2.44 7.06 6.2 4.87 4.78 10.9 3.01 6.25 7.48 6.53 2.18 1.87 5.22 6.96 4.91 0.91 3.16 0.91 6.46 2.18 4.23 7.92 8.48 9.35 5.25 4.29 0.91 6.03 2.44 5.2 2.84 2.8 4 3.79 1.47 2.84 4.91 1.47 4.29 0.91 7.54 5.68 4 1.47 12.4 2.51 1.87 5.28 5.47 2.44 2.84 5.66 2.84 4.38 9.77 10.9 9.96 0.91 3.53 5.85 11.6 0 11 1.47 5.07 6.62 0 8.72 9.63 11.7 2.18 0 0.97 7.49 3.53 7.68 6.72 2.85 1.47 7.21 7.77 8.12 2.18 8.4 4.63 10.7 8.52 0 6.51 5.18 3.3 4.29 6.07 8.1 6.93 6.36 9.15 4.08 6.3 3.02 3.43 0 0 11.7 3.83 8.54 8.67 3.01 4.95 5.18 5.26 4.41 10.2 8.55 9.23 6.09 8.93 8.72 9.79 7.55 11.1 3.74 9.69 10.8 10.2 6.76 11.9 11.2 11.4 9.77 10.9 9.25 10.9 4.83 10.7 8.84 9.9 11.9 10.9 7.67 8.32 4.63 10.7 9.25 11.9 12.1 3.01 9.55 9.88 9.91 4.41 11 3.64 8.91 3.64 6.55 7.6 12.4 12.5 13.3 13 11.4 11.7 3.01 12.6 11.8 3.74 5.63 10.8 9.62 8.88 10.9 11.3 0 13.5 4.15 10.1 8.89 10.2 6.2 10.4 6.98 10.4 11.8 7.22 8.25 3.74 9.97 9.41 11.1 10.2 0 12.2 11.4 10.2 14.1 10.7 9.7 7.61 10.4 11.3 9.84 10.1 9.98 10.6 2.65 1.47 10.7 6.67 9.6 9.57 1.87 13.8 8.36 8.51 4.78 11.8 11 8.99 10.8 10.7 1.47 9.38 8.11 8.65 14.6 9.34 3.16 7.24 6.68 9.18 8.88 1.47 6.58 8.84 11.7 11.3 9.61 8.07 12.2 10.6 11.3 7.77 9.45 9.07 10.9 7.11 11.4 4.58 10.3 11.8 9.27 8.92 7.54 6.14 12.2 11.8 9.91 10.6 8.44 13.5 8.37 7.68 12.4 10.7 10.3 3.33 10.6 0 3.64 8.88 8.39 11.7 0.91 7.37 8.74 10.6 12.9 10.8 8.86 8.16 7.39 1.47 7.78 4.91 5.07 10.9 9.84 11.6 10.2 7.41 9.2 10.5 1.87 7.49 8.27 10.5 7.66 10 9.83 10.7 5.66 8.23 7.88 8.88 11.3 10.1 12.1 7.94 3.01 11.6 11.2 6.58 8.21 6.47 8.46 10.2 9.76 9.95 7.67 11.4 8.16 12.5 9.72 11 8.54 7.13 10.1 8.85 8.56 12.5 9.43 9.31 8.94 3.16 8.92 3.64 3.16 11 7.58 10.7 10.1 11.6 3.17 11.8 10.1 12.5 4.58 9.7 6.3 5.76 8.14 7.91 7.53 9.43 12.3 10.5 9.42 2.44 11.4 8.06 8.33 5.03 4.78 9.84 3.31 7.96 2.65 11.8 9.27 8.39 6.16 11 11.3 2.65 7.17 11.5 11.2 3.3 7.99 9.71 7.5 6.05 4.73 8.11 7.65 2.44 9.64 1.47 11.7 9.58 7.19 9.88 10 4.41 14.5 10.8 0 9.31 10.4 6.23 13.1 7.62 6.94 5 0 9.78 9.11 4 14.2 8.79 6.68 7.56 4.83 13.7 10.6 14.7 7.09 9.06 9.02 9.69 2.44 8.6 8.49 11.3 0.91 9.26 2.44 11.4 10.3 10.7 9.97 8.92 6.41 9.44 5.73 11.5 8.98 11.7 9.88 10.8 8.51 9.46 10.5 6.31 11.7 10.4 10.3 6.95 9.45 8.81 6.97 3.3 9.69 10.5 10.4 10.8 1.87 9.81 8.3 6.13 11.3 10.1 11.5 10.2 7.72 10.3 7.85 10.5 9.43 10.6 7.43 4.08 9.94 9.32 9.71 9.17 12 5.35 10.1 4.41 10.8 8.97 10.4 11.8 9.34 11.9 10.7 8.89 9.08 11.1 11.4 9.41 8.48 1.47 12.8 9.12 11.3 10.4 11.2 11.9 12.4 11.2 8.2 8.04 11 5.99 0 12.1 7.55 8.19 7.19 8.42 13.3 10.5 10.5 9.19 10.3 8.05 0 7.23 12.8 10.5 8.83 13.4 9.1 11 9.81 11.2 9.57 9.98 11.2 7.01 0 11.6 10.2 8.75 9.58 7.57 3.3 9.77 10.4 10.9 11.6 11.1 11.3 9.74 10.5 9.86 11.1 13.1 12 9.52 10.8 11 9.34 8.91 9.51 9.35 6.03 8.76 10 0.91 2.44 9.66 10.8 3.92 11.5 0 9.36 4.08 11 10.7 12.2 11.1 11.4 11.6 5.03 9.14 5.85 5.8 9.69 7.98 0.91 9.73 8.06 11.2 11.6 9.55 7.52 11.8 10.8 8.17 11.8 7.17 9.27 7.12 7.38 9.68 11.7 10.7 11.3 8.36 8.13 10.1 6.9 10.1 11.5 9.5 11.8 9.04 11.6 7.69 8.31 7.53 4.15 8.99 12.1 10.2 13 13.5 8.94 9.56 3.3 11.4 4.15 9.6 6.49 8.04 2.18 6.5 8.84 9.66 2.65 5.18 10.2 2.18 10.3 11.2 14.8 10.5 4.29 11.9 10.4 4.53 4 0 2.84 10.2 2.44 7.7 5.87 5.91 10 7.83 9.49 4.08 3.16 4.87 8.21 9.32 11.1 2.18 3.16 10.1 6.81 1.47 6.01 12.4 11.2 2.65 3.83 8.12 0.91 10.6 10.2 8.5 0 8.59 14.9 7.34 10.2 11.6 10.6 11.9 12.3 5.71 10.7 8.18 6.7 2.69 8.77 8.98 4.29 0 0 8.4 6.14 11.1 2.18 8.25 6.93 3.64 5.93 11.4 10.8 6.21 4.22 13.5 9.55 3.83 10.6 8.13 11.5 10.8 9.04 11 7.61 10.5 10.5 6.14 9.36 11.5 8.6 7.54 9.84 7.93 5.63 8.28 11.3 4 10.1 7.1 4.15 7.3 7.83 7.52 0.91 3.01 13.6 7.56 0 10.4 8.76 9.13 12.5 10.8 6.26 7.77 9.04 4.15 4.95 7.26 8.38 4.22 4.47 7.23 8.44 0 10.1 0 10.9 9.22 10.1 12 12.7 9.48 0.91 12 12 1.47 3.53 6.35 6.78 8.37 7.51 9.25 9.3 10.8 5.38 1.47 8.46 3.3 6.9 0.91 2.84 8.62 9.11 1.87 1.47 11.8 0.91 8.41 9.88 4.73 0.91 10.4 9.25 11.7 9.2 7.09 9.41 9.77 7.68 13.2 8.02 10.5 10.1 11.1 10.1 0 4.47 3.42 11.4 10.1 11.7 0 11.4 8.97 12.2 12.1 10.6 7.48 7.58 9.96 10.8 9.86 0.91 11.7 0.91 11.1 2.65 10.1 10.2 7.2 2.65 9.59 9.92 13.1 10.7 9.2 11.1 12.4 8.62 10.5 10.2 10.8 8.47 10.3 13.1 10.2 12.3 12.5 12.2 8.78 11.9 9.03 6.98 8.45 10.6 11.2 11.5 12.2 9.6 15.9 11.5 7.53 6.52 11.8 7.68 7.82 10 4.35 11.9 10.6 10.1 10.4 3.83 0.91 12.1 3.42 11.7 7.82 10.2 9.58 5.97 9.09 2.18 8.77 1.71 4.29 7.09 9.3 4.63 12.5 6.3 9.68 8.21 9.6 7.94 8.06 10.2 10.2 7.58 0 2.84 0 1.47 10.7 8.59 9.55 12.1 8.52 5.78 9.92 7.32 7.96 7.51 9.06 12.8 8.37 12.1 8.91 10.5 10.5 11 8.8 11.3 9.17 11.1 10.6 7.55 0.91 7.98 10.2 9.59 9.71 9.37 6.03 12.2 11.1 7.26 9.2 5 4.15 12.2 12.1 12.5 6.38 9.26 10.6 9.3 5.07 6.39 10.2 5.63 5.68 9.53 9.51 8.04 13 4.78 8.59 9.94 7.88 2.18 9.66 6.48 9.82 8.42 7.02 8.2 9.46 8.79 9.63 9.1 5.11 10.4 3.64 7.58 8.24 10.9 3.01 9.34 2.18 9.44 8.49 8.68 3.92 9.86 9.83 1.87 12.9 9.24 9.18 0 7.58 7.31 7.42 0 3.42 8.74 10.8 3.83 5.25 3.01 8.32 7.76 8.27 7.94 4.41 9.68 11.2 6.06 10.1 9.81 8.95 10.9 8.42 7.09 2.44 6.87 10.3 9.46 3.16 11.1 10.1 6.75 8.3 1.47 12 8.15 9.47 5.25 4.41 8.67 11.6 11.7 0 8.82 10 7.79 8.54 9.83 9.15 10.8 9.66 8.35 8.72 9.41 8.86 7.48 8.88 6.36 10.7 9.29 6.72 4.31 8.25 4.15 5.93 9.38 10.8 4.95 13.4 4.41 5.89 5.35 6.42 10.6 10.8 6.79 6.82 8.95 9.25 6.74 6.76 11.1 10.8 8.26 2.44 10.6 9.39 3.74 7.51 7.38 4.47 8.2 4.53 9.04 7.1 10.2 0 2.44 8.72 10.5 11.1 7.33 8.88 7.98 6.69 9.82 3.01 11.7 5.99 10 4.29 9.08 7.83 9.97 10.3 9.81 6.19 0 5.24 9.05 12.2 8.4 8.26 8.77 0.91 9.7 10 10.4 7.26 6.31 2.84 8.42 5.85 11.8 11 7.76 6.2 9.94 8.99 9.04 9.51 11.5 9.24 9.56 7.18 6.79 7.3 10.1 13.4 5.58 1.87 10.2 6.76 12.6 8.43 4.83 5.8 12.3 4.47 12.4 7.49 6.28 11.1 7.86 2.44 10 9.32 0.91 8.63 10.5 8.88 12.1 6.2 6.67 11 11.6 9.41 4.73 7.65 1.87 9.27 11.4 11.5 2.44 11.9 9.27 12.1 10 12.4 9.67 12 12.7 6.06 9.12 9.65 0 10.8 9.92 7.68 11.9 9.42 10.6 6.33 12.4 0.91 9.38 7.27 6.52 2.84 5.03 5.99 9.53 7.96 4.36 9.24 7.06 10.7 7.95 8.58 8.11 11.1 6.44 10.7 1.47 5.8 7.77 2.65 3.86 11.8 0 2.84 1.87 3.64 7.95 2.65 3.83 8.39 3.19 2.65 0 0 6.41 1.87 8.34 7.54 8.2 8.82 6.88 0.91 9.76 8.6 2.84 11.5 5.82 7.99 9.18 8.34 3.3 6.63 2.44 5.66 8.95 3.64 3.3 6.35 3.16 9.79 1.47 5.52 6.95 6.72 9.23 13.1 0 7.44 6.89 5.8 3.01 8.33 8.84 0.91 9.69 8.89 10.9 7.91 7.27 7.74 4.35 6.6 0.91 8.35 5.07 7.27 11.4 8.76 9.65 5.75 11.2 9.3 9.51 2.18 7.73 7.73 5.41 4.91 2.65 9.63 10.9 9.15 7.37 2.44 5.73 6.94 8.55 8.09 9.15 8.52 0.91 0.91 8.84 3.83 10.5 12.6 6.03 0 1.87 9.19 9.06 4.08 6.42 6.63 8.89 8.87 11.7 5.75 8.35 8.68 3.92 4.08 0 2.44 6.59 1.87 8.51 9.72 9.57 3.42 8.94 7.34 0.91 3.74 9.85 7.31 2.65 5.47 10.6 1.87 8.04 7.47 3.42 0.91 9.42 5.89 8.91 6.69 5.38 9.68 6.45 10.6 8.36 11.5 7.18 9.71 10.7 4.87 7.12 1.46 7.63 8.9 9.63 9.16 8.64 8.26 4.41 9.32 5.11 0 2.18 5.34 0 8.61 7.83 4.22 4.08 3.3 0.92 10.8 0.91 0 8.81 7.23 6.81 9.81 9.69 1.47 6.78 3.16 5.66 9.59 9.19 3.92 8.96 9.78 3.3 2.18 11.6 9.57 11.2 7.62 6.96 12.9 7.69 6.16 8.88 6.56 1.47 6.74 8.59 7.75 1.47 9.93 1.47 5.47 5.07 13.8 11.2 11.2 0.91 2.18 0.91 9.4 9.38 6.21 4.78 12.7 3.74 7.91 10.1 6.56 6.87 10.9 6.49 9.36 0 6.23 1.87 8.18 0 9.31 10.2 7.08 5.47 8.28 11.1 6.25 6.9 3.3 4.29 7.72 10.2 8.78 8.13 9.15 6.73 7.21 0 9.29 7.95 11.5 13.5 6.05 2.18 9.64 8.8 7.22 5.22 11.4 11.3 9.84 5.58 10.5 4.29 6.82 11.4 9.88 10.3 5.47 10.8 5.63 1.87 8.94 7.8 9.33 4.87 3.14 5.58 6.92 7.33 10.9 1.87 3.53 12.5 0.91 3.92 8.05 11.1 11.7 7.37 8.38 3.92 5.47 12.4 0 7.96 7.41 2.65 8.82 6.47 8.62 6.78 9.26 10.8 2.84 1.47 2.44 6.97 0 9.39 0 6.8 6.21 9.02 8.92 2.18 7.13 10.1 6.51 3.42 8.92 8.12 7.12 3.3 7.5 7.99 4.58 9.05 5.03 9.18 9.02 1.47 10.3 10.9 9.57 3.53 8.52 4.78 8.03 6.6 2.18 7.63 2.65 2.31 4 5.89 6.63 5.71 0 8.75 5.47 4.53 10.6 8.81 0.91 7.17 4.24 10.1 0.91 5.03 9.18 7.13 3.16 5.71 7.97 8.19 6.03 2.44 9.3 10.6 5.25 2.18 9.69 9.92 8.49 12.2 8.95 2.52 9.08 8.66 7.55 12.3 10.3 2.44 2.18 7.26 8.77 7.16 3.42 1.87 7.93 10.1 8.77 6.45 2.84 0 6.92 0 8.45 8.26 8.04 9.97 6.16 10.9 7.5 3.42 10.1 9.01 2.18 6.76 9.02 7.98 4.63 11.8 7.66 7.41 0 8.01 0.91 10.3 8.5 2.84 8.96 9.56 6.75 11.3 5.95 10.9 10.8 5.52 4.58 4.91 6.54 4 10.7 7.92 8.71 10.4 8.88 10.1 4.47 4.29 10.8 1.47 2.44 3.16 3.83 6.76 6.89 9.79 10.5 9.86 1.87 9.46 10.4 6.05 11.8 6.09 3.74 8.29 7.67 9.93 6.13 11.4 6.91 8.47 12.5 9.28 3.83 8.39 5.8 2.18 0 5.32 10.1 11.5 7.3 9.52 9.82 4 1.47 6.68 0.91 3.42 0.91 8.12 1.47 11.2 1.87 2.84 8.35 8.38 0 7.91 1.87 3.53 11.2 11.6 5.03 7.61 7.15 4.48 10.7 8.68 4.29 5.25 0.91 10 13 7.18 8.29 8.71 12.3 10.7 5.58 2.18 9.39 4.41 7.89 10.9 1.47 7.91 7.77 11.9 4.58 9.32 11.8 0 7.94 2.65 9.29 10.9 11.4 10.1 1.87 10.1 5.22 5.55 7.62 12.2 4.91 8.97 3.83 4 1.47 5.91 4.53 2.18 10.1 10.6 3.92 9.77 3.83 2.84 12.9 10.4 9.59 9.01 8.86 8.8 3.92 6.14 11.3 9.68 10.9 8.88 3.74 10.6 9.09 11.7 7.37 7.33 5.22 5.11 8.34 9.63 5.63 8.45 6.83 8.83 7.98 7.77 8.41 3.92 0 7.39 7.68 5.68 5.63 2.44 1.87 6.03 9.96 3.92 4.29 7.67 4.63 5.75 9.16 6.9 5.41 5.15 5.75 6.55 8.51 7.61 0 10.3 9.21 10.4 9.23 8.26 7.3 9.48 7.51 7.92 2.84 10.9 0 7.72 5.66 10.4 6.01 6.95 3.53 3.64 0.91 4.22 8.66 5.99 2.84 9.16 8.97 13.5 11.8 8 3.42 8.46 10.2 0 7.47 8.02 6.81 11.7 10.5 8.31 0 8.68 6.25 0 8.61 0 1.47 7.96 8.65 8.24 5.85 7.79 8.57 0 0 7.1 11.9 7.41 8.22 0 2.18 5.43 8.62 7.37 4.68 13.9 5.52 8.32 6.73 6.63 12.3 4.41 7.68 2.65 10.4 8.62 1.87 4.58 6.05 0 8.95 4.63 6.73 10 8.24 12.8 8.38 0.91 3.42 8.5 2.65 13.4 1.87 7.67 6.45 9.45 7.34 8.2 4.53 6.9 8.32 4.15 8.72 0.91 8.63 12.4 7.88 1.87 9.17 9.03 6.28 8.32 11.9 4.3 11.8 7.69 5.95 12.6 12 8.55 8.76 3.64 7.29 8.03 6.13 7.8 6.67 0 8.71 2.65 9.84 3.38 0 5.35 7.42 7.51 8.41 4.08 10 1.87 0 8.17 4.29 4.91 14.8 5.25 11.7 9.47 6.47 4.87 7.07 11.5 9.5 6.07 3.3 6.68 9.23 8.4 10 9.47 7.4 8.77 3.3 3.16 5.11 8.63 0 3.42 11.6 4.53 0 11.3 5.32 0 4.29 7.15 3.42 11.1 7.08 0 5.69 9.11 6.59 3.83 2.65 9.37 6.84 6.05 6.54 11 9.19 0 12.5 8.54 7.94 1.47 7.75 7 0.91 5.22 4.41 9.2 7.67 9.23 12.6 3.83 10.1 0 8.32 4.63 5.89 10.9 11.8 2.18 5.23 2.5 9.49 8.29 8.5 4.22 9.24 11.4 0 5.41 6.56 13.3 2.18 1.87 7.6 9.06 8.09 0 8.53 4.87 1.47 0 10.4 4.27 4.87 2.65 7.45 10.1 8.54 6.11 6.54 7.07 3.56 7.54 9.81 6.55 8.86 5.38 0 7.3 8.35 2.65 9.81 11.5 5.31 6.83 6.49 5.47 5.5 0.91 7.41 0 9.68 0 10.7 0 6.56 5.63 0.91 1.47 11.7 9.73 5.71 4.53 4.73 2.84 4.08 6.07 3.53 4.63 9.24 1.87 7.63 12 8.25 11.5 8.03 10.1 10.6 4.63 6.64 10.2 10.9 5.22 6.14 8.54 6.47 4.29 4.91 7.38 3.16 3.16 3.16 5.47 5.68 6.36 7.67 5.15 5.87 1.47 0.91 9.81 5.41 9.56 7.59 5.94 6.73 4.32 1.87 3.92 7.59 6.54 1.47 0 11.2 6.72 4.63 8.6 4.15 1.47 0.91 6.75 2.65 11.6 10.5 4.08 4.42 6.7 3.64 9.41 4.53 9.11 7.23 11.6 7.52 8.25 11.9 2.18 3.64 7.3 12.2 6.44 6.7 12.2 4.87 1.87 6.74 4.92 11.8 0 5.07 7.87 7.2 8.5 10.1 7.92 4.63 10.4 4.62 2.65 7.4 6.45 2.84 9.5 7.2 1.47 12.2 9.19 4.41 8.71 2.18 2.18 9.12 7.51 3.92 0 8.74 2.44 5.15 5.58 1.47 0 8.36 4.83 4.68 12 3.01 11.9 8.17 9.19 5.71 1.47 2.84 7.92 2.18 9.79 9.91 7.81 3.01 0.91 0 4.87 2.84 5 1.47 10.9 0 0.91 1.87 1.47 6.85 0.91 10.4 0 8.29 9.45 6.73 8.83 6.36 9.95 10.8 7.26 13.8 4.35 6.45 6.36 7.65 9.28 8.35 9.35 0 2.44 7.28 0 2.44 10.5 10.4 4.78 14.3 6.13 7.73 9.49 3.3 4.08 4.29 2.18 6.21 7.76 8.69 8.74 5.41 9.14 0 12.7 8.44 6.59 9.86 8.39 5.78 4.47 0 9.69 5 8.45 5.85 6.42 7.98 5.66 5.8 9.27 9.84 7.49 10 4.53 6.85 5.11 7.08 9.23 5.55 2.44 8.28 6.16 6.85 9.52 2.44 2.44 5.15 4.73 4.87 0.91 5.66 9.37 0 6.81 5.06 9.67 6.64 8.66 9.97 6.49 4.51 7.85 3.01 1.87 12.6 3.74 0.91 6.49 8.86 10.3 6.63 0 9.48 8.28 9.36 10.1 0 9.86 9.38 0.98 10.1 2.84 3.16 6.33 8.58 0 3.01 3.83 8.79 7.41 8.54 7.65 0.91 8.05 10 3.53 5.52 12.9 11.8 2.65 7.05 2.18 6.67 12 11 10.4 0 5.63 12.8 0 4.95 12.8 1.87 0 0 4.08 8.34 2.18 10.4 2.44 0 8.5 8.42 6.51 8.02 9.45 1.9 6.69 3.64 8.73 3.16 4.41 8.01 3.64 9.06 5.73 9.13 4.15 6.31 4.35 9.92 8.26 13.4 4.58 9.28 6.25 4 2.18 9.57 4.68 12.5 8.72 14.2 6.99 4.68 11.4 7.27 9.99 8.04 9.08 5.07 3.74 2.44 8.36 7.79 7.94 13.4 3.3 3.53 6.64 2.65 3.42 5.52 8.32 3.83 7.2 10.5 6.13 8.81 2.18 5.35 0.91 4.08 6.56 5 6.76 2.44 6.98 6.55 9.26 10.5 5.82 3.42 5.18 0 5.52 2.18 5.6 0 8.01 10.7 8.83 7.12 3.42 11.4 8.6 8.51 6.11 3.01 1.47 8.68 8.28 2.65 9.69 8.62 6.41 8.18 11.7 4.41 9.47 10.5 10.7 7.12 4.22 3.74 6.84 6.01 8.53 9.08 8.23 5.8 6.96 0 8.9 0 8.03 3.16 0.91 11.2 7.03 3.3 5.11 5.68 8.75 3.92 2.44 10.9 7.22 6.18 7.46 10.2 6.18 7.33 11.5 6.64 0 13.3 10.2 7.9 6.44 4.35 5.38 1.87 4.15 3.74 11.8 6.35 4.47 6.39 6.44 2.84 9.69 7.54 8.98 8 7.72 1.47 6.45 9.09 1.47 4.78 7.63 4.08 8.55 7.94 3.64 5.11 8.91 6.13 4.73 9.41 4.73 0 9.33 6.35 1.73 2.44 6.64 2.18 7.36 6.52 9.69 9.14 9.39 2.44 1.47 3.16 8.22 6.7 10.1 10.8 0.91 7.16 12.1 5.85 5.25 7.93 3.01 0 7.78 10.3 5.97 7.24 8.62 9.01 4.53 4.58 0 9.9 4.73 8.88 6.35 7.26 10.8 0 9.23 1.47 5.32 6.16 5 8.76 5.11 9.99 0 0.91 3.16 5.41 1.87 4.95 5.03 7.35 1.47 5.25 2.65 7.08 0 8.51 3.64 8.57 4.29 5.95 1.47 2.65 3.42 7.42 3.83 3.42 4.95 8.05 7.69 0 7.04 4.63 2.84 4 3.64 0 3.83 1.87 3.32 4.53 10.4 7.07 10.2 5.25 8.27 0.91 0.91 5.71 6.09 5.91 11.1 3.16 0 11.1 12 0 7.22 2.44 4.22 0 0 11 7.66 3.01 0 9.82 9.63 0 3.01 11.9 3.01 12.4 6.13 6.68 5.15 6.18 5.95 7.75 10.8 9.8 11.6 5.07 8.28 0.91 8.69 10.8 3.3 4.63 10.7 10.4 3.53 6.74 2.65 5.5 10.6 0.91 6.42 10.8 0 1.47 9 4.95 4.08 7.49 2.65 8.68 12.7 11.1 1.47 11.8 6.9 5.8 6.82 5.78 11.4 5.8 0.91 0 2.84 2.65 0 5.5 5.66 6.56 9.44 7.43 8.98 6.78 5.89 9.95 10.4 7.57 6.97 9.99 10.2 8.34 1.47 11.2 9.7 6.6 7.75 6.26 6.83 0 6.35 6.64 4.08 8.53 8.71 5.93 6.01 8.96 10.4 0 7.38 4.73 4.56 7.47 5.68 9.69 5.18 10.4 7.1 7.85 2.18 7.59 9.06 1.87 0.91 6.62 7.93 8.46 11.4 10.9 0 10.2 0.91 12.3 0.91 9.27 0 1.47 0 9.62 1.87 11.5 3.44 2.65 4.22 0.91 9.58 5.41 8.22 9.06 13.5 4.53 3.42 3.83 1.47 10.6 5 10.8 7.73 12 13.6 1.47 7.3 10.7 3.92 11 7.42 0 9.98 1.87 5.58 14.7 11.7 0 8.67 9.93 6.54 8.05 7.3 6.44 11.4 11.6 4.29 8.46 7.3 7.02 7.02 6.79 5.22 7.77 1.87 9.04 4.95 9.17 3.01 4.22 0 2.84 7.07 3.42 8.97 0.91 6.74 7.74 6.49 1.47 7.38 0 7.58 6.99 1.47 6.68 6.9 5.63 0.91 5.22 9.23 7.75 3.29 7.43 5.71 3.64 0 8.12 7.01 4.83 6.88 5.58 7.93 4.58 1.87 0 2.18 6.28 0.91 4.53 11.6 10.9 8.03 9.33 6.18 0.91 11.1 1.87 2.84 1.47 3.01 2.65 10.4 8.1 7.07 9.06 3.64 9.95 4.41 10.4 7.95 0 10.2 0 6.89 11.7 5.95 8.53 0 10.3 7.49 10.8 11.6 12.8 8.19 9.2 7.7 10.5 12.4 13.4 11.5 6.89 6.2 1.47 4.22 10.8 8.22 10.8 9.74 3.16 11 6.31 10.8 2.18 2.18 3.01 7.34 8.75 5.03 2.18 5.63 5.32 11.3 9.69 6.33 1.47 2.18 7.86 0 6.88 8.74 5.18 0.91 10.5 12.9 8.76 6.33 10.2 11 13.1 10.2 5.32 9.23 7.14 10.2 3.42 5.41 8.22 8.97 9.64 9.82 1.47 8.93 9.14 4.58 6.35 7.87 9.92 0.91 9.62 3.42 0 9.71 10.1 4 3.83 12.3 5.22 8.65 11.5 6.78 11.8 10.9 7.72 5 7.83 8.92 2.44 9.73 4.29 11.5 9.95 9.41 8.55 10.5 11.5 11.1 2.18 4.95 6.65 10.5 11.7 8.55 11.6 10.7 9.02 8.52 5.73 7.3 9.65 11.4 6.28 8.12 10.4 5.35 5.11 11.2 0 9.25 12.8 12.4 8.13 7.75 6.95 7.35 7.64 6.88 5.91 6.2 5.8 11.8 6.76 8.56 11.8 16.1 2.65 10.2 8.83 10.9 5.44 7.6 9.51 12.1 13.4 14.2 15.4 10.5 10.4 6.84 8.93 8.08 12.9 10.5 6.59 0 8.07 9.39 10.3 10.5 8.26 7.09 9.19 3.74 6.01 3.53 12.3 5.11 5.68 0 6.91 2.18 7.55 3.42 6.47 8.34 2.44 7.25 10 9.93 6.93 10.1 8.49 8.75 9.6 2.65 8.5 10.8 9.28 2.58 10.2 6.44 7.4 7.06 11.8 3.92 6.56 12.5 3.09 0 3.01 2.02 8.52 2.18 3.16 6.45 9.54 8.24 13.1 5.87 9.45 11 5.22 5.28 10.6 13 8.12 12.2 7.78 9.68 11.8 13.2 13.4 11.2 13.2 2.18 5.32 0.91 9.52 4.08 7.79 11.4 0 0 1.47 8.24 0 10.5 6.54 0.91 4.35 10.2 6.82 8.14 9.8 0.91 8.97 7.38 7.54 7.92 14.7 9.42 2.84 10.8 12.3 8.19 11.2 0 3.74 10.5 8.6 4.68 11.8 10.8 7.92 1.87 8.3 4 12.3 10.8 10.3 9.29 6.49 2.84 8.48 7.35 7.23 5.15 7.26 0.91 1.47 2.65 9.65 7.03 6.99 6.65 8.31 8.17 10.6 5.15 10.4 7.68 8.77 3.64 6.94 7.27 6.07 7.21 5.5 9.6 3.64 8.6 8.28 13 10.3 11 5.25 7.44 5.11 7.78 3.42 11.8 3.3 10.3 7.35 7.07 9.89 9.82 10.6 7.13 8.89 9.8 4.15 12.4 2.65 6.68 0 9.62 0.91 11.4 8.03 4.22 9.73 2.84 2.18 8.2 8.91 3.64 2.84 13.4 7.27 2.84 3.16 8.98 5.93 8.74 7.83 8.53 6.43 9.5 8.74 7.43 5.97 6.01 8.08 3.42 11.1 8.23 0.91 14.8 1.87 8.08 1.87 0 0 9.57 3.3 9.01 6.05 12.4 12.2 7.19 9.58 9.09 8.74 14.8 8.72 0.91 3.01 7.12 7.49 7.23 4.35 7.68 8.12 8.49 8.72 10.7 3.16 12.2 8.16 10.2 9.03 6.09 10.2 12.2 6.8 4.95 3.16 11.5 10 10.9 4.68 6.2 8.77 1.47 5.68 0.91 9.98 6.47 8.31 5.38 10.8 13.8 9.3 7.86 7.6 6.78 4.78 8.51 7.3 9.9 1.47 5.84 8.3 10.6 10.5 10.1 12.4 1.47 8.12 14.2 4.83 0 12.4 9.99 9.1 4.41 12.1 1.47 9.18 9.88 6.39 11.4 7.94 10.8 6.54 11.3 12 4.68 12.8 10.2 3.01 5.28 8.65 4.47 11 0.91 10.4 11.2 11.4 10.8 8.08 9.65 12.6 5.47 6.65 6.52 10.5 7.6 0.91 10.8 6.7 11.3 3.92 4.73 14 0.91 12.6 10 10.6 2.18 8.34 9.22 0 5.85 9.69 5.32 9.54 8.82 0.91 7.44 9.02 9.53 2.18 7.09 3.53 0 6.13 2.65 5.47 7.51 7.01 11 14.5 0 7.11 8.17 12.6 8.99 6.64 8.64 6.96 5.91 11.4 10.3 9.27 9.92 9.22 10 3.74 8.69 8.12 7.83 12 9.37 7.2 10.9 6.39 6.17 3.64 13.3 10.6 12.4 3.01 4.73 7.49 8.87 3.01 6.73 1.47 9.8 13.7 5.32 7.75 10.5 6.88 10.2 7.02 4.87 6.18 7.65 10.9 5.93 7.02 5.18 9.5 8.47 0 5.03 9.66 8.26 11.8 6.85 3.74 10.4 4.41 6.64 8.45 7.77 2.65 1.47 2.84 7.79 6.8 3.64 5.58 2.44 7.67 11.4 8.96 3.16 4.78 0 0 4.08 2.84 7.29 3.01 5.6 7.2 0 3.01 2.44 7.3 6.04 6.84 4.47 5.38 4.78 12.4 6.52 9.97 3.3 8.99 7.93 9.28 3.3 6.16 9.45 6.14 5.38 11.6 8.59 7.62 8.14 9.35 5.35 8.52 1.47 5.73 6.14 9.01 3.83 7.36 6.05 3.92 8.53 5.93 4.08 6.16 1.87 3.16 7.6 7.88 0.91 4.58 6.91 0 11 0 9.81 11.1 2.44 7.86 8.59 9.84 5.79 8.38 3.16 2.84 11.6 7.9 0 10.1 8.72 8 7.03 1.47 8.41 6.88 6.76 3.53 10.2 6.74 11.3 7.62 9.39 9.75 8.19 3.53 10.5 10.3 8.33 9.11 10.7 10.1 7.98 12 9.06 9.54 6.93 3.01 9.03 6.98 3.83 4.58 11.5 8.94 2.65 6.01 3.92 7.8 0 6.39 9.22 1.87 2.18 4.29 0.91 5.99 1.87 6.91 4.78 6.2 9.88 8.39 9 5.11 9.44 8.36 9.34 6.9 8.28 4 8.75 6.96 4.43 0 0 3.74 2.44 7.65 5.5 5.68 3.01 15.7 6.91 14.2 0 7.14 4.58 9.81 10.5 6.81 6.89 10.7 8.99 10.4 6.47 9.34 2.44 12.9 7.63 6.09 11 10.6 3.42 10.7 5.63 10.7 7.72 11.7 4.35 12.2 5.99 10.4 9.1 3.16 11.1 11.9 9.48 8.03 8.06 10.5 7.58 8.37 8.79 11.1 11.1 7.3 3.71 0 7.8 7.31 9.21 9.86 5.97 8.92 7.3 7.63 0 9.08 8.61 8.24 11.1 9.11 9.87 8.67 10.6 0 9.48 6.47 10.4 13.1 0.91 11.3 6.61 11.7 8.19 8.36 8.28 9.23 9.38 12.1 10.2 5.93 8.63 13.2 8.6 9.12 10.3 8.92 11 6.6 9.22 5.97 10.2 10.2 0 8.31 8.08 7.08 0.91 8.33 5 8.77 9.7 11 9.55 13 11.5 9.62 8.66 7.66 13 3.53 6.73 10.4 3.53 8.84 11.1 9.01 9.26 8.24 7.97 9.33 6.3 10.6 9.75 9.97 10.2 8 10.5 9.41 8.36 12.2 9.98 7.39 8.36 12.2 8.86 8.49 0 8.15 10.1 10.2 1.87 5.47 9.57 8.49 5.18 11.7 3.83 5.47 11.7 6.96 8.67 5.5 10.7 12.2 3.64 1.47 0 8.64 11.6 10.4 9.95 6.8 7.65 0 10.6 10.6 10.4 9.42 6.49 8.98 4.95 7.57 1.87 9.5 8.58 10.9 9.79 10.7 10.3 11.8 5.82 12.2 8.85 9.37 5.28 0 0 11.7 9.69 10.8 8.03 10.4 9.42 7.44 6.75 9.46 5.38 11.1 9.97 9.13 11.5 5.35 7.38 8.89 8.88 10.6 9.2 7.82 7.64 10.9 10.8 2.18 7.88 3.83 10.4 11.4 10.1 9.75 9.11 9.93 4.29 10.1 10.2 10.5 3.74 7 10.1 9.41 10.1 9.98 8.61 7.67 8.48 10.4 8.64 6.63 7.8 5.11 9.68 6.97 10 7.72 8.56 10.5 8.85 9.62 9.38 8.4 7.58 11.1 8.64 3.16 9.8 7.99 10 7.62 2.44 8.9 9.03 10 6.4 7.06 11.9 10.3 7.88 0 8.45 9.16 9.61 10.6 1.87 9.24 6.55 9.7 9.98 5.91 10.1 10.3 5.55 8.36 8.75 9.87 11.3 9.3 11 9.02 8.31 10.4 2.18 4.87 9.58 0.91 7.99 9.23 11 9.85 9.3 7.37 9.34 12.3 9.18 8.99 11.7 10.3 10.7 10.2 8.99 9.51 10.8 8.49 13.5 10.8 10.8 8.21 11 9.1 6.7 11.6 8.23 8.85 6.96 4.78 10.1 9.81 10.5 11.2 9.21 9.27 10.2 13.5 10.8 11.2 11.1 12.7 6.25 8.44 11.2 10.1 10.8 6.38 10 4.58 9.96 12.8 9.32 11 6.45 3.01 10.3 8.95 10.8 10.1 6.74 11.4 11.7 11 0 11.6 8.92 0.91 10.9 10.9 10.2 9.16 9.9 3.64 8.86 7.58 8.26 10.8 7.5 5.82 10.2 7.11 8.32 5.25 10.1 7.16 5.97 10.5 2.84 9.55 11.3 7.68 7.01 9.7 10.2 8.74 6.09 8.12 9.18 8.41 9.75 9.23 7.8 7.81 0.91 9.26 8.11 9.32 11 12.3 8.13 9.94 9.77 1.47 8.91 9.69 10.5 9.91 9.81 8.6 11.8 8.58 4.08 8.25 9.07 3.01 7.44 9.21 6.76 8.76 6.11 9.13 9.09 9.79 11.1 8.87 5.93 10 8.53 4.35 9.16 8.82 2.18 8.26 9.24 5.71 10.7 7.75 8.02 8.03 10.9 6.07 9.02 2.18 10 8.95 9.49 10 6.35 11.4 8.67 11.2 10.9 9.61 7.69 9.96 9.91 10.1 8.1 5.52 8.37 11 2.65 9.12 11.2 8.14 9.5 10.1 2.18 11.1 10.9 10.7 11.4 11.6 9.12 9.47 7.96 10.2 3.64 10.5 10.3 7.76 9.42 10.8 4.35 11.7 9.46 11.5 11 9.36 8.76 9.36 8.1 8.84 9.06 11.2 8.36 10.7 9.18 12 11.6 8.03 9.15 10.8 8.07 10.2 10.7 9.09 10.8 7.77 8.6 10.7 11 9.29 9.98 7.78 9.96 11.4 8.93 2.18 8.76 7.75 10.3 8.31 3.3 5.63 1.47 8.25 0.91 8.64 12.1 8.79 12.4 8.34 6.18 10.1 10 3.01 7.84 6.09 10.1 12 9.9 7.27 10.3 11.9 12.6 8.67 7.54 7.43 6.91 7.83 8.65 7.02 11.4 7.86 6.93 8.43 10.2 9.73 11.2 8.46 11.3 3.92 10.9 11.3 10.5 0 10.6 11 7.93 9.14 2.44 9.14 6.05 0 4.53 10.4 5.38 6.07 8.66 0 9.29 8.55 8.28 7.43 10.2 9.81 9.4 9.05 12 9.61 8.35 7.18 10.1 8.71 0 1.47 15.2 9.13 11.6 13.2 7.51 8.5 5.07 7.25 14.5 9.07 5.85 0.91 3.74 9.8 6.58 2.84 13.3 6.94 4.83 10.8 0 8.53 2.18 0.91 6.97 10.6 11.4 11.2 6.21 6.58 9.42 11.6 9.64 9.18 11.4 11.2 10.4 10.1 2.65 3.42 9.38 3.53 7.5 9.78 0.91 3.53 7.64 1.47 10.8 10.2 10.1 13.2 11.8 8.24 8.91 9.45 11.1 3.92 6.3 8.96 12.7 7.93 8.83 9.07 8.6 10.9 8.51 3.01 9.36 4.63 11 12.1 9.04 12.1 10.9 3.01 12.3 6.79 10.8 10.7 0 0 2.44 3.01 10.7 7.75 11.2 9.69 6.14 11.6 9.86 10.1 5.11 11.3 12.6 12.6 9.07 8.52 8.7 13 14.1 6.35 9.82 9.92 8.24 10.3 9.7 9.01 7.27 6.6 8.29 6.44 6.23 6.85 9.25 7.02 9.45 10.8 3.01 9.83 11.1 10.8 9.94 8.36 10.5 8.06 1.87 6.58 3.3 4.87 13.6 10.5 8.84 11.3 10 12.1 10.5 0 5.97 6.44 11.4 4.87 8.45 8.32 11.4 9.84 1.87 7.72 9.71 7.08 8.93 7.25 11.8 8.52 0.91 5.5 6.85 4.05 7.8 0 5.7 4.22 9.12 0.91 2.84 2.18 5.93 7.14 5.82 6.03 7.7 10.4 1.87 0.91 6.11 10 9.19 7.71 8.1 4 4.91 14.4 8.05 10.1 2.44 14.9 12.4 11.3 12.5 4.47 4.35 12.3 4.35 0 10 11.2 5.35 2.18 6.76 5.18 2.44 8.84 0 3.92 7.4 10.3 9.95 6.11 4.84 8.86 8.76 4.29 8.21 2.84 9.29 6.54 7 8.14 3.16 5.8 10.7 7.97 2.84 10.3 3.92 7.93 7.65 6.23 7.09 0 11 9.13 7.64 9.33 4.53 4.83 5.11 10 1.87 7.01 11.4 3.74 0 8.01 0 5.44 9.11 7.28 3.42 6.86 5.25 0 3.53 8.88 5.15 7.94 8.66 12.3 8.57 4.53 13.1 0 0 10.9 8.1 8.32 8.34 6.82 10.5 2.18 5.42 9.12 2.84 0 5.47 8.56 10.4 0.91 4.08 4 7.97 0 7.98 5.38 5.73 5.66 0.91 8.13 0 6.82 4.15 0.91 5.07 7.12 8.9 3.42 7.91 6.3 7.48 10.3 6.89 2.44 3.01 0 4.29 8.67 4.87 7.08 0 7.11 4.68 8.87 10.3 2.65 9.16 4.15 8.29 0.91 6.31 6.47 0 2.84 0.91 3.01 0.91 1.47 6.72 0 6.26 4.47 0 7.32 3.01 5.18 4.58 5.03 1.87 9.33 6.21 7.51 2.84 0 1.87 0.91 6.43 7.71 0 0.91 0 11.1 8.53 4.08 6.49 5.95 6.31 10.2 10.1 9.24 0 9.81 12.8 8.65 6.07 9.42 5.28 1.47 6.98 5.87 5.8 10.3 11 3.42 11.5 7.47 10.9 7.83 12.5 11.5 7.64 7.53 7.28 8.9 11.8 9.84 9.82 7.76 8.52 1.47 10.1 11.5 7.82 3.53 4.58 11.4 10.5 7.86 5.75 0 13 10.8 6.14 11.4 11.4 2.44 3.64 10.6 5.75 6.25 10.2 4.41 11.4 8.58 11.6 5.91 8.6 9.56 12 7.79 9.79 7.14 8.6 7.23 8.34 8.98 9.47 6.33 10.1 5.25 4.58 2.44 9.58 11.9 11.8 9.58 14.1 9.41 10.2 2.18 7.2 10.3 9.45 8.09 8.66 7.77 8.04 12.6 4.91 2.18 7.7 7.26 8.3 10.8 7.06 0 11.9 5.35 8.84 8.78 7.56 9.4 9.91 5.97 10.3 9.25 9.34 11.9 9.23 7.08 10.9 9.27 11.7 0.91 7.85 10.7 11.4 0 4.35 6.56 7.89 4.22 4.41 4.53 9.94 7.7 5.73 0 9.61 0.91 8.26 1.47 0.91 2.84 5.28 11.3 5.7 8.02 8.52 8.34 5.91 6.98 7.18 9.23 10.4 10.6 9.46 4.08 12.8 10.2 10.8 8.58 8.75 11.1 8.14 11.1 9.54 8.72 6.4 9.95 11.1 10.3 16.5 11.8 9.31 7.09 6.36 11.3 8.5 10 8.81 9.86 7.13 9.19 9.04 11.6 8.07 10.7 5.66 10.9 9.11 9.63 6.47 5.03 11.3 10.5 3.53 10.9 9.23 10.2 9.01 10.8 6.38 9.08 8.26 10 11.1 6.92 9.25 12.1 8.68 9.65 3.01 10.2 6.05 11.1 9.76 9.97 2.84 3.83 6.48 8.01 9.09 9.71 1.87 9.14 4.22 6.78 5.68 1.87 8.44 2.84 8.04 6.14 0.91 5.41 4.53 8.68 10.2 8.76 10.2 9.78 9.32 8.11 9.84 9.74 11.8 11.3 11.7 0 5.58 5.78 11.4 11.4 10.4 9.27 9.22 7.83 6.13 11.2 8.41 11.8 11.3 0 9.01 10.4 9.88 9.14 11.5 8.41 9.82 7.66 8.64 8.56 11.7 12.2 11.2 1.47 11.5 10.3 8.45 7.97 5.38 8.12 5.11 10.2 9.45 4.15 6.11 11.9 11.4 7.02 8.34 9.07 5.71 9.26 11.3 9.54 7.51 12 8.23 6.97 10.4 2.44 9.14 1.87 9.31 3.64 9.33 3.01 8.63 9.29 0 9.11 0 8.85 7.75 10.2 1.47 10 0 4.57 7.35 8.25 10.6 10.2 7.56 9.28 7.14 7.94 13.6 0 2.18 1.47 5.78 9.21 8.79 7.56 3.62 10.1 8.26 3.92 5.85 9.61 8.45 3.01 8.54 6.54 7.6 7.75 9.44 9.06 9.35 4.95 1.47 5.89 10.4 8.54 0.91 9.84 0 9.94 8.11 9.25 5.41 9.94 8.39 8.68 2.46 11.7 9.85 12.5 11.1 9.01 0 8.39 8.52 5.71 11 11 10 6.93 12.3 11.9 2.65 10.2 4.73 11.5 8.9 8.79 9.35 2.44 7.75 12.4 4.68 8.7 9.29 8 11.5 8.89 8.33 9.36 9.07 7.47 12.1 3.01 4.22 0 10.4 5.25 6.69 0.91 10 5 10.9 1.87 8.09 8.9 3.74 9.96 4.41 6.75 1.47 11.7 12 8.66 4.68 3.42 1.91 6.13 6.62 7 11.1 1.87 7.94 6.03 0.91 8.82 3.53 10.2 5.38 8.14 4.35 8.03 10.3 1.87 0 9.41 5.63 9.65 5.47 3.83 0 11.5 10.4 7.91 5.66 7.86 0 2.44 8.2 10.5 10.3 5.41 3.92 10.7 8.35 6.89 8.38 9.72 15.7 10.9 10.5 9.04 8.62 8.01 8.58 0 0 10.3 0 9.76 7.68 6.8 11.1 11.6 6.63 10.6 8.56 8.04 11.2 2.44 8.05 3.01 0.91 10.9 7.26 8.69 10.2 12.1 10.9 1.47 11 9.28 10 11.4 10.1 7.98 9.38 6.94 9.94 13.4 6.07 8.35 6.91 10 2.65 11.9 9.84 7.43 2.18 5.68 10.5 9.19 2.84 1.87 10.4 7.87 10.9 12.5 9.8 8.14 6.14 10.5 8.26 8.76 7.15 8.65 0.91 6.49 9.79 2.84 5.47 4.22 4.47 6.7 11 3.64 9.98 8.02 5.93 4.22 0 6.51 9.75 7 6.42 9.81 8.74 0.91 10.3 0.91 6.98 7.04 5.82 11.6 9.13 11.4 9.82 1.47 0.91 11.3 6.2 0 5.85 0 0 5.47 7.53 10.8 0 7.19 11.5 4.73 0.91 7.14 9.43 10.2 9.1 3.83 3.01 8.5 13.5 12.4 8.36 10.1 7.34 8.38 9.72 10.2 10.4 7.4 5.25 2.18 8.41 10 0 2.44 11.5 2.18 5.82 10.7 9.07 8.38 5.44 0 9.97 0 2.44 7.02 9.23 10.2 1.87 7.38 3.3 8.71 0.91 2.44 8.79 11.7 3.64 10.2 8.58 11.2 7.8 1.87 12.5 11 10.1 11.4 11.8 9.14 10.3 10.1 9.66 5 5.07 10.6 9.4 8.56 8.74 4.22 8.62 8.47 11.4 2.84 8.85 9.42 10.6 6.13 9.07 2.44 10.4 8.05 9.87 9.92 3.53 9.4 10.2 1.47 5.66 6.93 11.7 7.36 8.78 13 2.65 11.1 9.34 8.53 6.48 7.99 9.57 11.2 9.54 13.1 10.8 4.29 1.87 9.1 15.2 0.91 3.64 12.9 13.3 3.61 2.18 2.18 12.1 3.83 1.87 7.47 8.03 1.47 11.1 5.07 1.87 12.1 7.06 8.92 8.45 10.4 11.2 10.2 11.6 9.8 11.9 11 2.84 12.8 0 0 13.2 2.44 10.6 13.3 2.65 9.25 0 2.84 8.15 3.83 0 1.47 3.42 2.84 4.41 7.2 4.08 7.6 6.39 0.91 6.05 2.65 8.45 9.72 3.3 4.73 5.21 2.84 4.95 0 1.87 7.52 18.7 4.78 14.3 10.3 4.41 2.65 3.83 7.33 3.74 7.86 10.8 8.64 7.31 7.7 7.75 5.8 6.41 5.4 5.5 2.65 6.33 2.65 8.96 2.65 5.03 0.91 9.97 0.91 8.61 3.16 3.42 2.65 4.68 0 2.18 2.44 9.85 7.11 7.96 3.42 8.54 7.81 7.78 6.52 1.87 4.32 2.65 7.37 1.47 3.83 0 7.93 0 7.72 0 3.01 8.73 10.9 8.88 5.03 2.36 0.91 6.42 4.49 2.44 8.04 0 1.87 4.15 10.9 7.51 7.05 0.91 7 9.66 7.05 10.7 4.63 2.84 5.25 1.87 3.92 7.92 9.69 3.3 5.18 11.8 10.2 12 1.47 0.91 9.89 9.93 2.18 2.44 7.94 4.73 6.25 6.39 7.91 3.08 10.5 5.38 3.16 0 3.01 7.26 7.18 0 2.44 2.44 10.5 5.11 1.47 9.15 10.6 6.28 7.62 5.18 8.84 3.16 4.22 0 4.08 10.7 3.3 7.93 9.21 6.8 9.88 1.87 4.35 1.47 6.53 6.05 8.35 8.11 8.87 6.24 10.4 5.66 5.68 5.55 4.08 3.83 12.4 0.91 6.67 7.88 6.94 5.55 1.47 7.51 5.93 0 0 3.01 0.91 1.87 8.38 7.09 4.53 7.35 10.1 2.65 4.15 0 5.97 2.18 4.78 0 8.97 3.16 7.86 5.44 6.51 0 2.44 6.34 8.8 1.87 1.01 3.92 5.71 0 5.03 0 2.18 3.16 0.91 7.73 1.47 3.92 11.1 8.32 1.87 6.33 6.14 10.9 9.65 4.29 1.47 0 4.69 0.91 7.94 10.8 6.39 5.95 8.11 4.53 7.44 0 1.47 6.56 6.97 6.93 4.58 8.92 8.37 1.47 4.22 9.28 8.42 0.91 6.09 7.16 1.87 9.72 3.16 6.69 10.1 9.88 6.8 8.34 4.95 3.01 0.91 4.83 8.83 0 8.43 8.39 1.47 6.17 3.53 8.56 10.1 1.87 9.74 0 9.33 2.65 0.91 3.01 4.08 6.45 7.49 9.12 2.44 3.83 9.41 0.91 1.47 8.41 6.38 6.89 8.08 0 3.95 2.18 8.49 4.77 3.16 8.94 0 3.92 9.09 0.91 5.6 8.9 6.79 5.55 7.85 4.73 0 5.97 3.01 4.29 4.47 8.66 8.48 4.58 12.8 0.91 8.51 4.95 3.16 6.36 8.6 4.53 6.44 8.83 9.58 3.01 0.91 6.48 2.65 1.47 2.84 9.7 9.6 7.83 0 4.78 6.74 8.11 6.91 6.87 1.47 6.99 4.58 7.79 2.44 5.99 6.41 6.87 7.39 3.16 0.91 10.1 12.4 11.9 9.73 3.83 12.9 13.3 7.72 12.2 8.68 7.25 11.5 7.86 9.1 0.91 3.53 10.7 9.75 10.1 10.8 8.83 10.4 8.04 13.9 8.42 8.13 11.6 3.3 7.25 2.18 11.4 0.91 7.3 7.31 11.6 10.1 11.7 10.1 9.23 9.03 7.92 6.21 8.17 10.1 7.24 10.7 11.9 8.46 0 7.86 9.74 9.57 8.01 9.4 6.16 10.3 6.64 2.84 3.01 7.51 3.83 9.26 0 9.5 3.01 10.2 11.2 10.7 9.11 7.34 9.14 9.56 12 6.56 9.66 11 10.7 8.63 10.6 8.3 8.77 9.5 9.83 6.92 9.57 10.9 9.49 10.3 8.6 9.83 8.47 3.01 7.9 8.96 7.84 9.7 10.4 8.58 8.78 8 10.4 11.8 9.68 8.85 8.48 9.58 0.91 9.69 10.7 8.13 0 9.22 10.8 9.39 10.4 0 1.87 9.43 4.87 11.7 1.87 2.84 8.59 9.05 2.44 0 1.87 12.5 2.84 0.91 13.8 1.87 11.5 14.2 11.5 10.1 11.5 11.3 7.76 10.9 7.54 13.9 13.9 9.77 11.5 4.22 14.7 10.1 5.75 8.92 9.42 3.83 9.93 9.76 8 9.05 11.2 9.71 7.97 4.35 5.89 9.19 10.6 13.6 11.4 10.1 5.35 11.4 10.6 8.45 9.18 10.6 0 10.1 5.85 3.01 9.02 10.4 0 6.36 10.2 5.89 10.1 4.29 11.7 2.18 6.78 7.04 6.91 11 3.3 11.7 6.75 6.18 2.44 11 7.03 8.5 9.86 2.84 3.64 9.75 12.2 10.3 1.87 9.65 9.39 7.83 5.66 12.3 10.9 11.6 7.51 11.2 4.63 11 8.67 11.2 7.34 4.35 9.48 9.69 1.87 8.45 2.84 9.9 8.72 6.58 8.59 9.01 9.7 11.9 7.15 10.3 12.5 8.48 9.54 13.3 7.89 8.34 5.03 5.18 7.54 0.91 10.5 8.24 6.81 0 3.53 10.2 10.2 6.25 5.85 9.22 0 11.5 8.69 12.1 9.29 1.47 11.2 0.91 9.37 8.07 5.99 8.03 7.23 7.95 8.8 11.4 8.12 9.86 10.4 8.15 8.08 8.77 9.69 3.92 8.23 2.44 11.4 2.65 5.11 9.32 6.9 14.1 10.1 0 12.3 4.91 11 9.26 9.15 1.47 3.01 6.67 3.64 3.53 1.87 10.9 9.31 7.04 0.91 3.64 0.91 10.6 5.11 1.39 10.4 11.8 7.15 13.8 12.6 14.5 11.4 9.74 6.23 11.9 11.1 10.4 2.44 10.4 0.91 0.91 13.1 8.41 11.8 9.09 8.33 0 0.91 0 2.84 8.74 1.87 10.8 5 10.3 4 10.7 12.2 11.7 3.83 12.8 12.8 10.8 7.21 4.22 11.5 10.7 11.5 6.83 10.4 3.53 2.65 2.18 8.68 7.33 5.28 5.93 1.47 11.4 1.47 10.4 10 5.22 10.6 3.01 4.29 11.1 9.08 10.1 9.68 10 11.8 5.58 8.28 6.16 9.95 7.88 11.4 12 7.77 10.5 10.4 12 11.5 10.7 10.8 3.01 9.9 14.2 13.4 13.4 8.46 5.15 13.7 4.78 1.87 8.06 8.16 2.18 6.41 2.18 6.89 1.87 9.4 9.02 6.92 4.5 0 2.44 12.6 9.01 6.24 10.7 2.55 5.07 7 7.57 9.28 6.85 8.87 13.1 10.7 10.3 12.2 12.3 10.6 10.2 9.64 13.4 1.47 7.64 7.75 10.4 11 9.29 0.91 9.68 8.22 8.72 8.82 4.52 7.63 0 8.64 1.47 7.93 0 9.41 13.3 8.23 14.2 12.1 13 12.2 12.5 11.9 10.8 11.1 13.2 0 13.2 12.9 2.18 9.45 6.28 7.63 7.03 8.6 7.24 8.73 5.28 7.88 4.53 9.53 7.13 3.42 5.41 6.49 9.76 10.6 8.57 9.15 9.67 10.2 9.09 4.47 5.68 7.49 6.66 8.77 7.88 8.28 0 8.91 0.91 12.6 5.58 0 9.5 11.5 0.91 3.83 0 10.6 0.91 4.08 9.66 9.62 9.71 8.07 11.8 5.15 1.87 11.3 12.8 11.6 12.3 12 9.01 3.74 6.25 7.09 2.44 11.3 11.7 7.92 8.54 4.35 11.8 11.1 13.9 12.6 5.87 8.63 11.1 12.9 10.6 7.68 4.91 13.1 12.1 16.5 4.78 8.69 14.6 10.6 15.2 12.6 3.16 12 11.4 10.2 11.8 3.53 0 13.1 9.92 7.2 0.91 1.47 0 4.95 0 0.91 7.57 8.29 7.83 4.63 9.76 11.7 1.87 3.83 0 0.91 1.66 11 7.19 4 5.22 0 8.3 9.86 8.06 8.43 0 0 0.91 0.91 8.08 11.3 7.41 8.05 6.03 7.67 9.54 4.58 0 0 2.44 6.49 7.56 11.4 0 7.91 8.12 6.26 10.5 10 10.2 4.22 11.1 9.4 7.29 9.15 5.11 8.95 7.21 2.44 0.91 2.84 0 1.47 9.09 8.4 2.65 3.3 6.2 8.54 3.3 4.41 4.58 2.84 7.45 9.34 5.89 1.87 13.7 8.51 4.87 4.08 10.6 7.9 3.16 0 0.91 5.28 11.4 7.29 0.91 2.44 0 8.37 9.66 8.55 2.18 0 0 9 0 7.66 4.08 0 8.23 3.42 8.17 2.84 9.58 8.53 4.78 3.75 0.91 5.55 8.82 4.83 0 1.87 3.42 2.18 4.47 6.35 4.15 8.07 3.74 7.94 7.72 4.22 0.91 2.84 8.39 0.91 13.7 11.1 9.8 11 6.45 10.6 0 4.29 0.91 9.6 11.1 0 6.98 9.75 0.91 11 0.91 1.87 7.38 6.92 12 6.65 10.7 6.14 5.04 2.18 0.91 6.36 1.47 6.28 2.18 9.73 0 7.23 8.6 0 8.41 9.96 0 0 2.44 0 2.84 3.01 9.67 9.02 0.91 6.8 1.47 4.91 5.03 5.35 2.84 5.6 2.18 4.08 3.16 3.16 3.42 10.5 5.5 9.2 3.01 2.84 8.4 8.29 0 3.64 11.3 3.3 11.9 1.47 4.58 0.91 9.39 2.65 4.41 0 6.38 4.15 0.91 5.52 2.65 6.09 0 4.95 2.84 9.29 2.18 10.7 3.92 3.42 10.7 15.7 2.65 4 4.42 0 10.5 2.44 12 7.33 6.45 10.1 5.82 4.15 7.33 17.7 6.56 3.53 9.13 10.8 8.63 1.47 10.6 2.44 6.4 2.18 8.86 16.2 0 8.23 14.2 2.44 7.23 10.4 4.78 0.91 11.4 5.97 9.07 9.62 12.9 4.46 10.1 9.65 3.92 3.16 2.18 1.47 4.63 1.87 9.13 8.95 11.5 4.08 9.4 3.92 6.71 5.32 12.3 6.67 7.63 8.54 1.24 4.58 8.99 7.96 1.47 0 5.07 6.08 2.18 7.12 2.18 0 2.44 6.41 10.8 11 7.5 5.35 8.51 6.95 11.6 3.53 1.47 5.22 7.1 6.99 11.1 0.91 4.87 10.1 2.44 4 4.47 1.87 7.17 0.91 6.39 10.5 0 9.13 1.47 5.78 10.2 5.99 6.44 2.18 0 3.3 2.18 10 3.38 6.91 11.8 8.43 15.1 5.5 8.46 7.38 4.08 0.91 7.79 1.47 6.2 10.9 11.8 13.1 0 10.2 7.68 8.79 10.1 12.6 7.92 6.88 8.93 7.51 3.74 4 8.32 0 5.22 9.66 0 9.81 9.58 8.3 9.49 11.2 8.94 2.18 3.74 11.1 0 12.3 6.67 6.89 10.9 11.2 7.39 9.32 10 0.91 10.2 12 3.01 10.3 10.2 10 9.89 8.15 5.44 6.36 7.12 9.28 2.18 13.6 5.53 10.3 7.1 0 3.53 0.91 7.58 5.07 4.22 9.53 5.32 13.3 6.6 10.2 3.74 14.2 13.2 11.5 10.8 8.68 6.62 0 0.91 0.91 13 6.75 3.83 10.8 11.3 9.93 2.65 9.45 6.16 7.29 11 10.6 8.38 11.1 6.3 6.67 10.7 9.54 12.2 13.8 12.9 14.8 6.16 2.65 12.8 9.07 12.1 0 2.44 6.55 6.52 3.83 0 2.76 11 5.38 7.73 1.87 7.23 10.7 5 5.6 6.69 1.47 0 7.01 0.91 4.15 5.55 7.97 8.63 8.6 10.8 4.22 3.92 8.29 6.9 8.63 0 8.43 5.25 1.87 11.2 7.42 3.01 4.53 6.19 8.6 4.95 2.84 8.12 0 6.39 7.46 14 6.47 6.79 4.83 10.4 0 6.23 8.64 2.18 6.49 2.18 3.16 10.6 5.93 2.42 0.91 0 3.3 0 8.58 7.43 5.07 5.07 8.54 2.18 7.93 6.54 6.14 2.44 0.91 0 5.52 0 9.61 1.47 3.42 3.01 7.57 2.46 8.44 0 5.32 14.5 7.37 2.44 6.52 2.44 11.3 5.95 1.87 9.36 0 3.64 5.95 3.3 2.18 0.91 7.65 12.2 6.52 4.95 10.7 1.87 8.85 5.85 3.53 0 4.58 11.3 0 0.91 2.65 12.5 8.68 0 2.84 4.29 8.44 6.48 0 6.42 11.1 6.62 8.77 2.84 7.8 4.15 6.14 7.3 9.53 2.18 11.3 6.87 6.98 10.3 0 0.91 0 13.2 0 0 7.96 0 4.47 11.3 4.15 0.91 0 0 1.47 0.91 10.6 8.82 9.35 11 10.4 11 10.4 9.45 9.01 9.82 5.03 9.99 11.4 9.42 7.92 0 16.6 10.5 17.2 10.7 7.95 7.38 13.2 6.28 4.63 9.69 1.47 8.3 3.92 3.53 16.5 1.11 8.85 0 5.73 4.15 9.31 2.44 6.36 14.8 8.12 11.2 3.74 0 3.29 3.92 4.15 7.77 6.89 1.47 1.47 2.65 2.44 1.47 9.26 0 5.19 6.79 3.01 5.25 5.41 2.95 0 10.6 1.47 2.18 9.56 6.01 0.91 11.1 1.47 10.8 2.18 3.64 10.1 4.29 3.01 9.41 5.47 5.95 5.82 4 0 6.51 3.01 4.08 1.87 6.35 8.08 4.35 0.91 14.3 1.47 7.26 9.02 7.79 8.4 6.62 6.51 7.58 3.16 3.64 6.65 9.57 10.1 0.99 6.54 0 8.5 2.84 9.27 7.8 0.91 6.8 6.75 8.94 9.81 1.87 9.52 2.85 0.91 5.8 7.21 9.21 8.44 8.03 1.47 9.89 11.3 7.18 1.87 9.63 0 8.37 6.38 8.89 5.38 9.09 2.44 5.38 4.73 2.18 4.73 5.78 8.92 4.53 3.83 11.6 6.73 7.02 11.7 0 3.42 0 3.64 7.58 0 1.47 7.55 3.42 9.64 0 3.83 3.16 0 6.88 1.87 3.64 4.53 10.3 9.79 3.3 2.18 1.05 2.44 4.73 0 4.58 1.87 5.78 1.47 6.33 8.89 9.4 7.78 8.6 10.1 9.18 6.13 13.5 2.65 12.5 2.18 10.4 4.08 9.03 13 11 13.4 4.91 0 11.8 10.8 14.1 0 1.87 5.25 12.4 4.73 12.8 4.87 0.91 8.2 9.95 7.55 6.11 7.65 10.8 4.91 0 12.6 9.29 13.5 10.8 6.3 0 6.15 10.8 8.32 10.2 3.01 11.6 14.5 13.6 9.5 9.74 11.8 13 2.84 6.55 5.93 10.9 0.91 8.56 8.32 11.3 9.95 10.8 6.9 10.3 4 7.26 9.8 9.05 11.4 0 1.45 7.39 6.81 8.39 9.99 10.1 4.08 8.3 1.47 10.3 2.44 5.07 7.01 6.09 10.8 3.83 6.6 5.6 10.7 0 4.15 3.64 9.35 10.7 14.6 7.46 7.24 6.92 9.84 0 0.91 7.44 11.2 6.32 13 8.33 8.99 2.18 5.89 7.75 0 7.29 7.67 0 9.23 2.65 2.84 7.02 6.58 0.91 3.64 4.78 3.92 7.67 4.95 10.3 6.07 0 3.53 11 4.81 4.29 0 4.47 6.69 6.52 0 5.89 4.29 5.98 2.84 9.14 2.18 1.87 7.7 11.1 1.87 5.68 6.93 6.74 4.47 5.06 0.91 1.47 6.1 1.87 9.27 5.11 7.18 8 1.47 10 2.18 1.47 7.47 4.41 10.1 10.1 1.47 3.53 5.25 9.38 5.78 5.55 6.6 0.91 0 0 0 5.75 9.94 2.84 8.11 8.73 0.91 0 4.08 7.9 10.4 7.63 3.3 6.25 4.35 10.1 0.91 3.64 6.72 0.91 5.85 9.1 8.96 8.05 0.91 7.16 11.4 11.7 2.44 10 7.18 8.74 1.87 6.9 12.1 2.18 8.89 0.91 3.57 12.4 4.22 11.1 11.1 7.82 9.94 10.7 9.61 10.4 2.18 9.73 5.6 6.82 9.5 8.34 10.7 12.1 4.59 0.91 1.47 0.91 14.7 5.87 9.83 13.8 2.18 1.87 9.92 5.71 7.59 1.87 6.9 15.4 9.42 10.1 11 11 11.4 0 6.51 2.84 3.69 5.38 11 13.5 8.4 7.13 7.76 10.7 12.6 10 7 9.75 9.62 8.96 2.44 6.3 8.65 0 3.01 10.3 7.24 10.3 0.91 8.61 8.23 7.17 9.42 11.4 6.62 11.7 9.79 11.8 3.64 5.82 7.21 5.41 12.3 2.65 3.01 7.76 10.7 10.7 10.1 0 11.2 4.87 4.85 8.45 1.87 3.21 7.09 5.44 0.91 11.7 2.44 0.95 6.49 8.44 4.78 9.86 8.01 9.78 2.44 12.7 11.5 1.87 11 10.7 9.35 8.73 10.5 9.64 0.91 2.18 12.3 9.61 11.7 10 10.9 9.35 12.2 13 4.41 10.9 7.88 0 11.1 12.2 13.9 9.94 10.2 5.41 8.92 11 10 8.81 5.7 7.05 9.95 9.46 2.18 9.84 8.61 8.12 7.51 8.7 9.65 10 10.9 10.6 4.68 0 10.1 10.3 8.6 9.17 10.3 8.85 8.46 9.84 2.18 6.16 13.7 8.61 8.38 4 9.03 5 10.4 9.03 12.6 11.4 10.8 4.41 11.2 11.3 3.83 10.1 14.7 3.83 2.44 8.79 6.05 8.1 10.6 10.1 8.24 9.39 5.03 9.88 11.6 9.48 11.1 10.4 4.47 5.22 7.19 10.4 11.5 9.38 5.07 5.11 12.6 5.75 0 2.44 3.92 1.87 8.8 12.8 6.39 11.4 1.47 4.58 10 5.22 1.47 4.35 7.6 3.92 9 0 8.93 8.89 1.47 10.8 5.25 10.1 11.1 9.53 1.87 0 5.22 4.35 4 11 9.77 5.85 5.18 7.91 10.3 0 2.18 10.7 9.43 0 6.51 5.32 9.79 9.14 4.08 1.87 2.44 3.92 7.72 1.47 8.83 5.55 4.53 3.92 8.59 8.2 1.47 9.29 9.49 3.55 8.39 4.19 3.99 6.2 4.35 10.9 8.63 1.87 9.48 3.01 8.74 9.01 8.14 9.5 0 0 9.84 11.3 1.87 3.16 4.54 0.91 6.93 0 4.41 6.81 5.28 0 8.59 9.57 6.68 3.64 12.4 2.84 5.58 4.08 5.89 7.92 3.53 5.91 8.44 7.49 3.01 4.35 7.42 6.03 4.29 5.89 6.34 0 6.81 7.79 4.53 2.18 0 0 1.47 0.91 2.65 0.91 6.9 1.87 8.82 5.58 3.3 5.11 4.58 1.47 10.4 11.3 2.44 0.91 3.3 0.91 0.91 4.68 7.69 2.84 1.47 7.93 6.75 3.92 0 8.4 3.64 9.14 9 0.91 8.01 11.9 8.82 8.71 4.73 9.44 3.83 0.91 7.84 10.1 4.08 7.67 8.35 10.4 4.83 8.22 5.66 2.44 1.87 7.77 9.57 3.92 6.85 7.77 8.83 10.3 8.22 9.64 6.62 6.11 1.47 9.66 7.34 10.1 11.2 4 3.92 8.63 8.71 9.2 11.1 10.7 12 11.6 9.07 5.82 5.18 9.93 0 0 0 9.21 12.3 4.41 11.2 9.06 1.47 3.01 14.4 8.43 9.41 10.2 2.65 9 14.3 7.81 0.91 11.5 11.2 9.17 5.93 10.7 11 5.95 0.91 6.01 11.5 8.64 9.88 7.48 8.92 8.15 9.02 8.45 14.3 10.6 10 12.6 12.3 5.22 12.2 1.87 1.87 11.8 11.6 11.4 12.7 8.95 12.5 9.21 10.1 3.64 0 9.03 4.29 6.54 7.68 13.4 7.08 12 10.7 11.5 12.5 10.9 11.7 10.7 10.7 9.73 6.91 10.6 11 10.4 10.1 11.8 9.92 10.7 11.6 10.2 8.83 11.6 11.8 11.8 11.5 10.2 11.2 9.18 8.28 11.1 10.9 11.4 9.11 11.8 10.6 11.4 11.7 12.1 9.98 10.2 7.36 12.8 13.6 11.3 10.3 7.71 6.75 6.99 6.42 7.31 1.47 3.64 3.53 0 9.56 7.27 7.16 7.8 7.08 10 10.4 13.4 10.4 3.92 9.39 5.07 0.91 9.05 9.01 9.09 1.87 12.4 3.01 11.3 7.72 6.63 7.62 7.56 9.39 10.5 11.1 10.2 9.09 9.77 9.16 9.23 8.97 5.11 4.35 9.68 9.56 10.4 1.47 1.87 12.3 11.3 7.15 8.96 8.31 4.58 9.58 4.68 5.75 10.9 6.67 4.47 9.51 11.7 11.8 14.1 10.4 12.1 8.43 11.3 7.9 4.83 9.96 12.8 4.47 6.91 10.2 11.5 8.79 8.54 9.59 13.4 8.51 6.91 0 9.59 3.92 11.7 6.54 9.03 5.87 13 5.03 1.47 12.3 5.41 6.33 2.44 2.44 6.16 9.7 9.72 9.52 4.08 11.6 9.41 0.91 10.2 6.85 4.98 3.01 13.4 10.5 5.71 0 9.11 0.91 2.65 0.91 0.91 1.87 0.91 2.84 2.18 0 5.89 7.67 13.1 8.37 13.2 8.93 10.2 7.97 11.3 8.72 6.93 9.26 9.65 12.3 3.42 0 8.91 6.19 3.01 6.42 11.2 4.35 11.1 8.57 0 3.53 7.15 8.49 4.63 6.56 4.95 0 14.2 11 10.1 8.6 9.18 0 11.4 8.08 0 0.91 4 5.35 3.16 1.47 0.91 10.1 10.4 13.5 6.56 5.99 7.38 7.28 9.86 0 5.35 6.94 8.18 11.8 8.83 8.74 8.59 4.53 3.3 9.91 4.15 5.18 4.91 4.87 7.29 12.1 10.8 5.5 3.83 2.44 7.01 3.65 0.91 3.53 7.9 4.15 8.66 10.7 14.4 3.75 8.22 12.3 0 0.91 3.16 13.1 8.97 12.4 6.48 10.3 8.35 9.12 5.85 10.5 6.3 12.3 7.76 7.65 8.62 10.7 4.68 13.3 12.2 6.47 10.4 13.5 0 2.29 9.63 9.6 11 6.72 10.2 8.17 5.15 6.45 9.76 5.87 7.75 4.29 10.2 4.22 5.22 10.9 10.5 7.14 1.47 4.68 0.91 5.69 7.83 10.1 11.7 7.51 10.9 9.4 7.6 0.91 2.4 1.87 13.2 1.47 11.1 10.3 7.05 3.53 5.32 6.11 8.56 9.3 11.3 11.3 12.2 6.9 7.06 11.4 12.6 3.64 0.91 12.9 1.87 3.77 0 8.35 9.96 11.5 10.3 9.33 11.4 9.26 9.06 8.64 6.85 8.55 7.7 11.2 8.46 8.6 0.91 8.01 8.47 9.97 9.37 9.16 8.99 7.92 8.43 9.49 9.97 10.7 7.02 8.02 11.4 9.33 8.64 8.46 9.86 10.1 8.52 9.83 11.3 10.3 12 4.22 9.57 7.24 10.2 4 7.94 10.2 11.2 10.2 6.81 8.8 9.56 0.91 8.87 9.8 9.71 11 8.47 9.23 10.8 7.15 9.99 8.06 9.02 11.2 12.9 9.67 10.6 11.9 0 8.45 5.25 4.61 0 6.64 7.89 8.02 8.46 10.2 11.2 7.98 9.05 11.4 8.82 9.84 9.78 11.4 7.76 9.33 9 8.38 9.17 8.45 12.5 10.7 10.7 11.4 6.97 8.93 10 10 9.07 9.43 10.3 9.28 10.4 7.12 8.48 10.4 10.5 9.37 10.6 6.35 8.19 10.3 7.36 10.3 9.21 9.69 7.7 9.46 7.12 8.43 8.96 12.5 9.23 9.78 9.73 8.37 6.79 12.1 3.16 10.5 11.8 10.6 9.91 11.8 5.93 8.51 7.94 10.1 7.89 7.41 4.22 9.68 5.41 8.54 6.84 7.53 5.89 9.7 9.45 10.7 8.9 7.96 8.87 11.1 10.7 9.39 12.3 7.6 9.17 8.3 7.67 13.5 10.3 9.01 4.22 9.94 9.54 8.55 9.29 0 0 2.44 9.33 0 10.3 5.93 4.73 8.06 11.7 9.25 9.6 9.71 0 11.2 9.91 2.65 7.99 10.1 9.44 13.7 10.3 10.1 9.79 2.44 8.28 9.82 2.18 10.4 10.8 8.96 9.37 10.8 8.74 9.36 8.87 10.5 4.53 5.47 2.18 11.3 9.64 10.1 11 9.54 6.94 6.45 10.3 9.95 7.59 9.46 8.68 11.4 10.4 1.87 1.47 10 10.8 9.25 10.1 9.9 8.71 6.74 9.69 7.63 6.62 11.7 7.79 10.9 5.11 9.07 11.6 6.21 8.73 9.24 1.47 7.21 8.28 0.91 8.03 6.69 0 9.71 5.25 9.53 9.28 6.83 9.54 10.3 10.8 11 6.45 12.1 2.18 9.42 8.22 6.26 4.08 11.8 12.6 4.63 5 9.99 9.46 10.5 10.8 9.21 1.87 9.93 0 3.74 7.04 8.15 8.55 4.41 2.18 5.68 10.8 8.59 11.6 3.42 11.4 12.2 8.32 11.1 8.46 8.08 8.09 5.68 8.93 9.59 1.47 8.22 12.9 8.88 9.41 3.01 11 5.95 7.98 12 9.34 13 4.41 10.8 9.79 9.64 8.54 4.73 5.66 7.85 8.43 6.88 8.5 10.9 10.7 7.55 9.44 11.2 10.6 7.2 8.77 9.13 0 10.9 7.93 11.8 10.3 2.65 9.76 3.01 9.4 8.16 4.47 9.85 10.1 8.82 5.15 10.3 12.4 8.33 9.66 0.91 8.71 9.16 10.8 10.7 7.98 11.5 8.85 11.7 8.4 8.67 9.35 11.8 11.2 10.8 8.87 9.74 8.04 8.21 7.56 9.15 4.91 10.5 10.9 7.24 9.43 9.27 8.38 8.9 11.3 8.78 8.83 6.36 6.75 10.1 9.88 9.62 9.58 8.7 7.87 8.75 9.63 10.3 9.8 7.78 8.46 10.6 2.44 3.74 5.99 7.66 5.18 6.3 7.87 12 9.87 9.73 10.5 2.18 9.62 11.3 9.73 8.01 3.92 11.1 9.94 12 8.77 9.41 9.73 12.2 9.32 12 13.7 10.5 10.4 6.11 10.6 9.39 12.1 8.68 10.2 10.9 8.5 13.2 7.98 0.91 7.87 10.5 8.13 11.1 7.98 12.1 7.91 11 6.78 9.17 10.3 11.2 10.5 9.92 9.66 10.4 8.85 10.9 10.8 9.64 6.36 9.93 9.2 11.1 9.16 5.63 10.5 8.43 7.19 8.66 6.58 9.81 7.34 10.8 9.45 11.4 4.22 9.36 3.3 5.66 10.4 10.2 4.42 2.18 11.3 9.47 9.79 9.84 10.4 10.5 12.9 9.19 9.08 8.93 13.1 12.3 6.38 6.25 11.7 8.09 10.9 6.99 0 9.85 2.18 9.07 10.8 11.2 8.82 10.2 1.47 9.6 4.95 0.91 2.44 8.06 9.49 1.47 11.6 9.69 9.37 6.34 9.56 8.51 9.47 9.83 8.15 8.26 1.47 8.72 9.47 0 8.45 9.92 8.42 7.74 1.47 10.7 12 7.16 7.96 5.52 7.46 9.8 11.1 11.7 8.51 8.86 8.21 10.9 7.86 9.3 6.59 9.87 10.5 0 0 7.94 4.53 10.1 10.2 11.1 9.66 12.9 11.8 1.87 7.6 9.76 12.6 8.53 13.1 0 10 11.2 13.8 10.9 6.25 11.3 12.1 6.88 4.15 12.2 8.15 7.69 9.67 12.5 10.2 7.14 4.41 3.01 4.22 4 12.1 4.68 12.9 0 10.6 9.93 7.13 10.2 10 9.24 3.16 9.76 9.21 5.07 1.47 11.7 12.2 3.42 8.66 6.58 5.93 8.97 9.32 10.1 8.71 8.05 3.74 8.12 11 9.08 11.2 7.71 8.28 11.9 6.35 4.87 9.17 11.4 10.6 10.8 9.97 10.1 0 8.5 7.83 10.1 9.74 10.2 8.23 1.62 15.8 8.55 6.81 1.47 7.58 7.98 6.21 9.25 10.1 9.45 9.04 12 5.32 11.4 5.28 11.2 3.64 9.92 3.53 7.01 4.16 9.12 7.89 3.64 2.18 8.82 10.8 3.42 6.51 8.3 7.83 8.59 10.5 8.96 14.5 3.16 3.53 9.62 4.73 5.18 4 3.74 8.76 15 9.72 2.18 10.8 8.83 0 12.2 8.98 7.43 9.98 9.96 12.8 11.1 11.9 1.47 10.8 1.87 12.9 8.72 12.6 11.5 7.03 1.83 0.91 12.9 11.6 9.03 10.9 7.32 8.04 8.41 7.46 5.97 5.22 7.38 1.47 5.35 11.2 2.18 6.39 3.83 7.86 7.98 8.5 9.46 6.78 2.65 6.47 12.1 9.94 10.9 8.91 8.35 8.79 8.09 10.8 8.26 7.99 9.63 4.63 9.34 7.5 5.11 10.4 10.4 4.41 3.74 8.81 8.45 8.55 2.84 8.08 0 7.09 9.38 11.8 9.52 8.93 5.42 9.19 9.56 11.2 0 9.58 7.49 5.89 0 6.09 4.3 8.92 7.67 7.31 9.07 8.12 9.64 8.87 11.2 10.9 2.18 3.01 3.3 8.44 8.72 10.3 11.4 10.4 5.55 4.08 10.3 8.03 11.9 12.2 10.1 4.29 5.55 8.3 5.35 6.23 12 10.2 7.32 10.4 10 0.91 5.07 10.5 10.5 10.9 11.6 10.1 13.1 10.9 5.03 8.88 11.1 3.16 2.44 10.3 9.56 8.88 9.57 7.01 10.5 5.78 1.87 8.86 4.87 5.58 10 8.9 10.3 9.19 8.04 9.3 2.44 3.74 11.3 11.6 10.6 9.11 3.16 9.37 8.53 2.18 10 8.98 10.7 12.1 8.36 9.53 11.6 8.21 9.85 9.25 5.87 11.2 8.15 10.2 7.02 8.21 6.97 9.88 9.77 9.11 7.41 11.3 9.46 0 10.9 10.1 4.58 9.32 7.62 4.95 5.6 7.23 5.03 9.59 7.9 8.48 4.29 3.74 8.61 7.4 7.88 8.84 5.11 10.6 8.16 8.01 9.54 8.06 8.42 7.59 11.4 10.6 13.1 5.78 11 7.49 4.08 9.19 7.84 10.5 7.52 4.42 4.95 6.74 8.57 1.47 8.32 9.66 8.42 8.46 7.98 0.91 9.53 7.35 11.2 11.7 9.67 8.14 6.38 11.4 9.82 6.87 11 11.1 2.65 6.36 6.87 4.95 11.8 8.26 2.44 8.22 10.2 8.89 8.54 11.6 1.47 10.1 11.3 10.5 12.4 8.45 11 10.5 9.34 3.01 9.65 8.21 8.52 9.56 7.41 1.47 4.95 9.45 0 12.6 7.94 0 9.16 10.1 6.65 8.08 3.16 1.47 12 2.84 8.5 3.83 6.2 4 8.84 11.7 5.99 8.88 9.07 7.16 6.01 11.6 8.83 13.7 9.32 8.72 8.02 9.69 14.2 8.85 7.14 11.3 3.92 8.77 2.44 9.19 10 10.2 7.51 10.2 7.2 8.22 7.57 8.84 9.77 9.12 6.56 8.63 9.64 6.6 9.2 11.1 8.91 7.79 8.36 6.14 8.75 7.24 0 6.38 0 9.17 5.97 2.84 0 8.93 8.54 6.13 10.5 8.28 8.54 8.87 9.91 8.22 11.4 6.84 10.3 9.43 7.53 3.64 8.52 3.74 5.87 9.71 9.88 10 9.37 9.17 11.6 9.07 11.8 6.65 9.09 2.18 11.2 8.88 11.4 10.3 10.2 8.95 10.4 6.16 9.03 8.67 6.58 7.77 9.68 8.1 9.65 8.62 9.76 6.51 7.76 10.4 10.3 9.1 8.98 8.76 7.2 9.35 9.64 2.84 5.41 7.01 1.47 8.05 9.55 8.55 8.99 7.59 9.55 7.93 10.9 9.92 6.54 10.4 9.21 11.5 9.87 9.06 11.1 8.81 8.39 8.21 10.4 9.6 10.6 10.3 12 9.08 9.14 8.23 8.98 8.73 10.1 10.5 4.91 10.2 11.3 9.53 11.9 4.53 7.83 3.83 11 9.21 9.71 9.12 9.4 7.65 8.69 9.49 8.23 7.56 8.5 7.84 8.37 11.5 9.15 13.3 6.84 10.3 7.2 8.42 0 8.29 8.21 6.39 8.86 9.28 11.6 7.78 10.5 9.99 9.71 3.3 9.26 7.51 8.82 10.7 5.98 10.3 5.5 9.52 1.47 9 12.6 9.94 8.37 11.4 8.24 4.68 8.34 11.7 7.72 12.4 11.3 12.2 8.11 8.82 8.66 10.9 8.61 7.78 9.29 8.52 10.6 11.3 6.68 10.9 7.67 7.85 5.97 8.72 8.85 4 10.1 0 2.44 8.17 4.08 9.98 5.11 0 7.92 8.14 9.11 10.2 8.51 6.69 8.21 8.78 5.22 10.4 8.85 7.91 9.26 11.9 10.9 9.53 11.1 7.68 11.1 8.81 8.65 9.01 11.2 7.39 8.74 7.8 6.42 5.85 10.4 3.64 7.87 3.16 12 7.87 6.58 5.82 10.2 6.6 9.03 8.77 4.29 9.28 9.44 11.9 6.3 4.73 8.95 6.8 5.78 7.98 7.72 11.5 7.3 8.79 11 3.53 10.9 8.75 10.2 8.57 8.52 7.7 5 11.2 9.02 10.2 7.89 11.1 8.77 8.28 9.74 9.37 10.6 9.61 9.88 0 8.94 9.78 7.12 10.2 0 8.57 7.69 7.24 7.63 2.18 5.38 10.3 12 8.21 8.22 8.3 9.33 6.33 9.67 10.3 9.05 8.77 11.4 6.36 4.87 9.73 9.42 9.32 8.06 8.53 9.58 8.95 11.8 10.8 9.92 8.79 8.3 7.12 9.14 10.1 8.4 7.43 8.06 9 9.33 2.84 7.29 9.77 7.94 7.83 13.6 7.92 7.79 10.6 7.11 6.64 9.88 10.4 8.24 8.41 2.65 12.7 8.95 10.2 7.73 0 8.87 9.93 8.98 7.04 1.47 8.87 10.5 10.7 3.74 9.82 8.66 6.38 10.8 8.43 11 8.07 10.7 7.06 8.16 7.35 10.3 8.31 6.67 8.72 9.41 0.91 0.91 8.78 9.2 10.1 7.44 10 9.81 1.47 9.45 6.58 11.2 2.65 8.12 9.69 9.77 7.29 9.67 11.2 10.5 3.92 0.91 9.91 8.74 4.53 8.41 10.5 10.3 10.1 9.87 6.09 9.21 8.92 9.05 10.7 9.06 8.15 0.91 8.34 7.56 9.93 9.18 0 10.8 10.5 10.2 9.43 11.1 2.65 10.5 9.3 9.67 6.73 8.21 7.43 10.4 8.82 8.88 2.44 3.64 7.89 6.41 7.54 9.74 9.21 11.7 9.61 8.16 7.02 11.4 10.8 5.91 8.57 7.49 6.72 8.29 8.68 9.88 1.47 8.87 8.57 0.91 7.8 7.81 9.68 12.3 10.7 11.2 6.28 5.6 6.73 10.2 6.06 9.95 7.44 7.89 9.68 7.69 9.55 7.9 7.9 10.5 8.13 7.66 8.4 7.49 4.73 6.7 9.69 6.63 7.03 9.21 10.6 1.87 7.96 10.5 10.3 9.98 7.63 10 7.69 10 9.68 7.19 4 9.45 4.83 0 2.18 8.52 10.8 8.67 6.3 9.46 8.16 10.8 10.1 11.1 8.69 7.38 7.41 9.38 9.58 5.44 8.9 11.2 10.8 4.83 7.18 3.74 7.96 8.33 8.16 3.53 1.47 3.64 8.4 3.3 8.09 8.15 5.97 3.92 9.3 12.7 8 10.8 12.1 10.4 8.14 2.44 10.1 6.93 10.7 9.64 7.84 8.06 6.18 4.47 11.3 11.1 3.01 6.23 3.53 4.87 1.47 7.01 0 8.18 6.98 1.87 9.53 10.1 5.82 2.18 0.91 9.18 5.15 4.65 5.58 9.05 3.16 2.84 8.06 2.84 9.63 10.2 8.57 10.3 8.38 5.71 7.37 6.18 10.4 8.68 10.4 0 10.9 10.8 7.26 4 11.1 10.6 4.95 9.21 7.44 10.9 8.99 7.22 0 8.18 7.25 8.56 10.1 8.03 8.41 11.5 6.13 8.47 11.7 10 4.29 7.67 8.95 8.23 7.23 4.29 9.65 11.6 10.8 8.69 9.31 11.4 10.8 9.99 11.2 7.77 11 3.16 10.5 6.87 7.2 8.91 7.75 6.36 9.47 3.16 9.75 4.87 12.2 9.16 9.26 9.17 8.47 8.81 11.7 9.88 10.9 11.1 0 10.2 10.8 11 6.14 11.3 10.7 11 10.1 10.1 6.99 10.5 11.6 8.68 5.97 9.2 9.29 7.72 10.2 8.49 6.6 10.2 7.91 7.92 8.4 10.2 11 7.83 9.55 10.1 8.31 11.1 9.51 11.2 3.83 10.4 9.54 10.5 1.87 11.2 4.68 11.7 9.39 9.64 8.08 7.46 10.4 7.99 10.8 7.21 9.77 7.86 5.68 0 9.9 10.3 9.85 9.52 9.23 9.12 6.55 5.78 9.67 8.79 9.16 5.15 7.74 11.5 9.98 7.39 7.34 8.2 10.6 11.8 11.1 10.7 10 10.1 8.78 9.73 9.5 8.82 9.21 12.3 10.7 8.67 9.65 8.53 10.1 3.74 11.7 8.59 8.5 10.2 9.06 8.5 5.35 9.78 10.1 6.52 10.3 8.02 12.4 11.9 9.46 11.1 7.5 9.81 3.92 8.94 8.59 8.99 7.34 8.03 8.83 8.44 9.46 8.17 8.33 9.58 6.28 7.98 5.25 10.6 6.33 4.22 6.82 7.46 9.46 8.8 9.56 3.83 7.05 4 6.89 12.2 0 8.93 5.38 5.44 9.84 7.54 10.5 7.52 8.75 0.91 7.2 9.6 8.29 6.26 10.3 8.84 0 9.12 7.58 5.25 9.92 10.7 9.7 10.7 10.2 10.2 9.25 8.5 9.11 8.59 9.76 5.11 9.24 4.58 9.87 12 8.64 8.05 6.94 9.71 9.05 12.2 8.35 4.21 9.87 5.8 9.66 8.93 11.6 0.91 9.97 9.5 9.77 9.96 8.14 1.47 8.83 5.47 9.8 8.29 6.31 10.6 1.47 10.9 1.87 6.88 0 13.7 12 8.09 9.57 3.53 11.1 10.2 9.3 6.31 10 10.6 10.1 8.35 10.7 9.06 11.5 9.2 10.3 8.97 7.62 9.92 2.18 13.3 8.59 4.08 10.3 0.91 5.99 6.42 10.7 10.2 9.07 8.17 4.87 7.03 5.03 1.47 10.3 11.6 11.2 10.1 10.2 11.9 5.75 10.2 10.5 8.96 8.48 6.99 0 6.47 1.87 11.3 10.4 9.36 9.13 11.4 5.28 10 11.9 9.01 10.3 10.1 0 8.69 8.47 6.93 10.5 2.35 1.53 4.47 7.93 3.42 1.47 2.44 4.22 5.22 1.87 1.47 2.18 2.65 4.78 10.5 4.15 4.53 1.47 2.65 3.3 9.3 1.47 4.15 7.63 5.82 5.18 6.33 6.56 6.81 4.47 5 8.45 4.41 6.52 6.42 5.82 0.91 8.85 9.23 6.14 1.47 3.16 2.84 5.95 0 7.59 10.1 2.65 9.37 10.6 1.47 5.18 6.47 7.87 11 0 8.19 9.98 2.44 8.83 8.71 3.16 10.7 10.5 5.67 8.58 9.87 6.26 9.29 6.74 11.5 11.3 9.62 0.91 0 9.23 9.82 10.1 10.5 9.67 7.81 7.05 9.52 12.1 5.97 1.87 2.18 9.36 4 9.49 0 0 10.6 4.47 9.4 4.83 0 14.8 4.08 7.08 8.44 10.3 6.79 8.6 10.4 8.8 10.2 4 13.1 11 8.6 10.4 9.09 8.66 0 0.91 8.65 0 8.21 0 9.94 4.35 10.9 10.8 14.6 4.15 0 10.7 9.73 10.4 9.32 11.3 5.38 9.94 10.9 9.68 11.9 10.7 10.2 6.38 0 11.4 10.7 11.9 12.2 10.3 10.2 12.7 12.1 7.31 13.3 11.3 11.1 7.94 10.5 9.64 1.87 11.5 10.1 13.2 8.13 12.5 10.4 7.2 6.11 11.9 10.8 7.14 8.11 7.79 10.4 9.11 7.23 6.23 12.8 7.03 10.4 8.92 7.95 11.5 11 10.9 8.09 10.9 9.86 6.41 8.34 4.68 10.8 9.14 10.2 9.1 9.53 4.91 9.32 7.16 10.3 9.64 11.4 10.8 9.28 10.1 5.35 2.65 10.6 8.98 11.2 0 2.65 1.87 10.1 3.53 11.6 3.01 6.63 3.42 4.47 8.46 7.15 3.3 9.28 10.9 5.66 8.39 9.81 11.8 9.91 7.79 10.4 8.57 9.39 11.7 9.74 10.3 7.13 0 9.38 7.91 8.29 10.9 9.57 11.3 4.61 10.6 10.8 10.1 11.6 10 7.01 2.65 11.1 8.6 9.2 11.7 8.55 10.1 11.9 9.04 4.29 9.86 11.2 0.91 10.3 10.8 11.8 5.18 10.1 4.91 9.04 12.1 0 10.1 1.47 9.77 2.65 5.66 8.01 8.08 12.1 4 7.25 6.82 11.6 0.91 9.57 7.98 9.14 8.2 12.8 5.03 7.93 6.33 9.61 8.17 9.56 8.09 7.34 4.15 8.54 9.81 11.3 11.8 11.1 5.91 11.5 8.01 11.9 12.2 11.8 8 10 8.56 11 8.82 9.99 7.47 12.6 10.2 3.83 8.2 1.47 9.67 6.47 9.26 4.15 4.08 7.08 10.4 9.83 8.46 12.7 9.94 12.6 10.5 9.44 7.96 7.98 10.3 11.8 9.61 8.57 10.2 1.87 9.19 11.1 12 4.29 9.19 4.53 6.07 10.2 12.4 8.12 8.86 11.8 9.73 9.95 6.84 8.44 6.56 9.94 9.89 8.71 6.38 11.6 9.81 9.03 9.24 9.03 8.15 10.7 6.72 5.03 13.1 7.22 10.3 0 0.91 11.1 10.7 6.18 0.91 4.58 9.03 11.6 0 6.98 7.64 7.18 6.26 7.85 2.18 8.18 7.91 6.45 0.91 10.8 9.05 5.8 5.47 2.65 8.18 3.3 0 2.18 10.3 8.7 0.91 7.08 7.4 10.5 8.35 11.1 4 11.8 8.5 10.3 4.83 4.78 8.88 8.06 9.77 11.3 9.98 10.4 3.42 1.87 2.84 3.3 10.9 9.14 6.26 9.73 0.91 8.33 9.31 5.82 5.55 5.15 7.34 10.2 1.87 2.65 11.7 10.6 2.44 9.87 9.62 8.02 9.21 2.44 7.02 10.3 11.5 9.32 5.55 2.44 5.35 10.6 10.3 5.38 10.5 8.57 5.36 3.42 9.15 5.91 9.96 0.91 2.84 7.93 9.51 9.24 10.9 9.41 7.47 9.85 9.96 8.89 9.94 6.97 11 5.35 9.9 7.41 10.2 2.73 3.92 3.16 0.91 12.1 10.9 7.44 11 10.9 9.3 5.11 5.15 2.18 6.58 7.41 11.9 1.87 9.54 8.44 5.87 7.04 5.38 5.97 10.1 5.38 8.63 9.12 0 9.11 11 7.77 7.07 11.1 9.18 9.25 6.03 6.92 2.18 8.8 9.05 1.47 14.9 7.91 2.44 10.7 6.48 0.91 3.3 8.25 1.87 8.12 6.92 0.91 10.6 9.45 9.42 8.43 7.53 8.78 10.5 10 8.84 8.79 3.74 2.44 7.99 9.98 7.92 5.68 10 4.22 8.38 9.91 6.83 9.29 9.48 8.44 10.2 3.01 5.95 9.42 6.52 9.83 8.79 5.03 7.31 0 12.1 8.66 6.01 10.4 12.7 8.86 5.18 3.92 11 7.6 9.98 13.3 10.7 7.19 3.64 8.34 8.99 8.76 10.2 10.3 10.4 10.9 6.51 8.49 10.2 6.28 8.08 7.1 11.4 8.22 7.56 8.21 12.8 10.2 1.87 4 6.49 3.42 8.07 2.65 7.27 5.95 5.38 9.11 7.88 9.08 6.01 7.02 5.22 3.64 9.84 8.69 9.79 8.99 9.76 3.64 7.94 10.7 9.1 9.53 3.92 7.75 2.18 7.49 5.73 6.54 0.91 9.31 10.3 6.49 3.64 9.09 10.1 8 0.91 3.3 7.58 2.65 9.15 6.68 8.25 5.93 8 11.1 5.03 8.74 10.9 10 10.4 11 10.7 10.4 8.82 11.2 11 10.4 9.61 10 9.47 6.16 12.1 6.09 8.49 10.3 3.42 10.5 5.6 9.7 6.25 7.2 10.8 9.43 1.19 4.15 8.5 5.52 2.18 7.25 9.21 13.8 5.75 8.15 5.89 9.93 11.8 0 5.82 2.44 4.08 4.95 9.03 11.6 7.81 1.87 10.5 8.34 7.34 10.6 7.64 7.1 13.2 7.95 12 12.1 7.98 8.86 7.63 9.96 10.4 10.3 9.6 7.23 9.72 12.4 9.8 9.31 7.81 10.9 10.2 11.2 11.1 3.3 8.04 5.55 5 9.21 10.1 9.24 10.9 4.08 11.3 9.54 9.63 9.06 10.8 9.01 8.54 6.28 6.18 4.91 6.58 9.63 6.81 8.03 7.89 4 10.3 12.2 10.3 9.85 3.3 10.1 9.93 10.8 10.7 11.3 11.2 10.7 6.75 2.18 9.27 0 0 13.1 4.58 9.09 11.4 9.98 11.9 7.12 2.65 4.58 9.6 10.3 12.4 11.8 11.6 8.94 11.4 6.91 4 9.31 10.4 8.23 11.4 13.4 8.66 7.48 9.56 8.65 11 12.3 10.9 7.95 7.84 5.85 6.64 5.52 6.54 11.3 4.35 10.3 11.8 9.88 11.3 11 12.1 10.8 10.6 12.3 9.43 10.9 7.51 10.7 9.32 8.97 10.4 4.83 10.7 6.47 12.4 10.1 8.6 8.54 7.86 8.67 5 2.84 4.73 9.49 8 5.15 9.72 6.56 5.52 11.1 8.68 11.8 12.5 7.24 10.1 9.88 9.91 11.2 8.91 6.18 0 9.1 9.64 10.6 2.18 7.27 10.5 8.39 3.42 6.74 7.45 9.47 12.5 2.84 5.97 11.3 11.1 9.36 8.59 7.62 0 0 2.18 12.3 5 5.47 1.87 11.3 9.86 0 5.95 7.26 2.44 7.38 8.41 5.22 3.42 11 8.67 5.89 12.1 9.94 6.21 2.44 11.7 6.96 9.87 10 7.66 8.8 7.91 10.6 10.8 2.18 9.49 9.34 6.92 3.01 0 9.61 5.35 7.38 8.09 9.4 16.7 7.77 11 0.91 7.95 0.91 1.47 10.6 2.18 10.2 9.65 9.14 2.84 10.8 5.15 8.91 11.3 10.4 10.6 9.57 3.53 0 10.2 6.54 1.87 8.02 4.29 11.3 4.78 9.04 10.9 0.91 10.1 9.27 0 8.54 12.2 3.3 10.6 9.8 8.88 1.47 7.85 8.12 10.2 8.37 9.71 8.28 9.01 9.33 8.32 2.65 8.45 8.85 11.6 9.46 11.6 8.2 10.1 9.03 11 7.33 8.24 9.94 10.2 0.91 8.17 10.3 4.22 7.23 10.2 4.58 9.94 11.9 0 0.91 6.01 9.44 0.91 8.4 9.53 8.82 10.8 8.42 9.27 0 6.21 9.18 6.94 4.91 0.91 5.95 0.91 7.76 7.9 7.27 1.87 9.8 9.36 8.61 9.11 15.7 15.6 14.4 13.7 10 11.3 13.6 6.54 15.9 11.6 14.3 14.6 13.3 15.5 14.7 12.3 15.4 12.1 15.5 4.08 13.2 12.8 8.94 14 12.9 14 14.7 14.3 16.1 14.4 14.2 14.9 13.4 13.4 11.1 14.5 14.5 13.3 9.03 10.8 13.9 7.63 15.7 16.3 14.3 11 10.7 13 13 14.8 15.1 11.9 14.7 4.42 3.16 4.91 6.94 5.5 14.8 2.65 3.53 15.3 11.1 8.41 9.67 9.15 10.4 13.2 15.2 14.7 13.2 15.9 14 12.2 14.3 13.6 13.7 15 14.2 9.09 15.1 15.6 15.1 13.6 14 14.8 13.1 9.73 10.1 13.2 10.3 12.6 6.89 9.59 11.9 9.4 9.49 10 7.32 2.84 6.42 10.1 10.2 3.53 8.8 12.4 10.1 10.4 3.3 3.92 3.83 2.44 5.78 10.2 14.5 6.41 14.2 5.8 17.7 10.6 12.8 11.9 15.8 3.3 10.6 3.3 15.5 7 10.8 12 5.15 5.91 6.6 11.2 10.5 9.34 11.9 8.28 9.63 10.8 10.5 8.98 5.47 8.22 9.85 8.77 11.9 5.55 7.25 6.05 3.83 0.91 0.91 0 0.91 11.4 5.41 6.45 1.87 4.71 11.7 12.3 4.68 9.66 7.58 11.6 0 1.87 6.6 4 0.91 9.49 2.84 5.87 5.25 6.38 5.03 6.62 5.32 2.18 0 10.8 0 1.47 2.18 1.47 5.63 8.79 6.07 16.5 6.63 6.01 8.06 13.4 10.9 4.29 8.94 9.8 3.42 9.09 10.1 10.8 10 9.76 10.3 8.84 5.44 8.54 9.87 5.82 7.44 10.6 9.84 10.4 8.25 8.59 10.8 4.22 3.94 7.88 9.71 9.94 9.26 6.6 9.88 0 0.99 9.71 7.08 6.93 8.66 6.28 8.24 1.87 10.3 5.63 9.8 9.2 8.12 11.3 5.38 9.79 5.93 8.26 2.18 8 7.63 5.85 9.04 0.91 9.95 4.58 4.53 5.71 6.36 6.18 13.3 9.12 8.93 3.64 14.5 2.44 7.99 13.5 9.54 0 5.87 7.67 10.3 1.47 10.8 6.38 0 5.5 3.74 2.65 6.73 8.07 5 7.94 2.65 7.06 8.66 10.6 8.57 13.4 12 6.59 12.4 6.03 8.3 7.98 3.53 14.9 4.37 7.41 5.55 2.18 10.1 5.25 8.44 1.87 7.46 0 8.77 8.56 4.47 7.82 7.75 8.34 13 9.45 8.42 10.5 8.52 7.02 3.3 6.47 5.99 6.31 8.66 9.43 11.9 0 8.88 7.69 9.73 10.9 12.6 10.6 9.48 8.57 10.6 10.2 2.44 5.73 10.8 10.2 9.58 8.75 4.35 1.87 5.85 7.1 3.01 1.87 0 8.51 0 12.3 4.41 12.2 12.4 6.38 7.29 7.08 8.66 7.85 8.33 10.7 6.89 6.62 12 0 4.83 2.84 1.87 11.8 9.74 1.47 11.3 10.2 8.11 12 11.1 9.45 5.78 9.98 7.59 7.22 10.5 9.29 9.04 10.8 3.01 9.65 5.07 7.15 0 4.68 5.78 10.7 9.36 8.39 2.65 7.26 10.2 2.18 5.07 9.49 7.35 7.89 0.91 0 9.15 6.14 4 7.62 3.9 5.07 1.47 0.91 0.91 6.14 6.68 1.47 9.22 8.68 3.74 8.05 9.13 5.85 8.34 2.44 2.44 8.72 0.91 7.44 11.3 7.81 5.44 0 2.18 0.91 7.26 2.84 9.05 10.2 3.3 7.26 8.32 9.42 12.1 7.6 10.8 9.1 10.3 10.1 7.79 8.08 8.87 10.7 8.95 4.22 1.47 0 0 4.08 5.75 5.11 4.29 9.86 3.01 7 4.53 8.45 3.42 5.78 8.71 2.18 11.5 0.91 4.15 0 7.84 10.1 5.95 0 10.5 2.69 1.47 4.91 1.47 10.8 8.95 5.6 5.38 4.04 1.47 0 12.1 1.47 5.78 5.85 5.68 1.47 6.23 0 4.68 2.44 3.01 7.19 10.5 11.2 12.4 10.2 1.47 1.47 0.91 9.02 2.18 5.38 3.92 11.8 0.91 9.58 4.92 6.87 9.87 0.91 0 7.88 11.5 8.75 6.58 10.6 0 8.76 1.47 0.91 5.91 2.44 7.43 8.02 6.45 7.41 10.4 11 12.3 5.87 3.01 8.66 11.7 3.01 0.91 11.3 9.47 9.91 9.03 10.3 8.59 8.26 5.55 8.44 11.4 9.47 7.54 10.7 10.5 10.7 8.8 10.2 10.8 8.76 7.4 10.4 8.78 9.99 11.4 10.5 10.4 8.28 9.46 10.3 9.18 9.73 11 6.99 8.43 6.44 9.81 7.05 3.01 8.9 12.1 9.32 7.45 8.39 8.14 6.93 4.41 10.2 13.2 7.3 5.35 10.1 6.7 2.44 9.22 7.79 0 12.2 7.84 12.3 10.4 5.58 8.48 11.9 8.47 8.87 5.35 10.1 11.2 8.98 5.52 9.41 9.97 9.29 12.5 10.8 8.61 7.23 6.82 7.91 7.57 8.81 10.5 7.32 3.42 7.94 2.84 7.34 7.32 8 5.28 10.6 6.26 6.91 8.62 8.37 0.91 9.15 9.38 5.11 8.36 10.6 8.98 2.18 10.1 6.26 12.2 8.32 8.31 11.1 7.57 10.7 4.41 11.2 9.41 8.86 9.69 9.86 10.7 9.86 9.79 10.9 8.37 7.9 10.3 10.1 10.6 0.91 8.89 12.1 9.57 10.2 8.06 8.17 8.52 3.01 11.1 6.65 5.03 4.29 2.44 6.9 0 10.7 9.45 9.28 2.44 8.3 3.83 5.15 1.87 4.91 5.66 5.32 8.54 9.05 10 7.12 7.58 9.06 10.4 10.4 13.1 13 8.23 9.85 10.8 3.3 11.5 9.69 10.7 9.84 14.5 5.5 9.16 2.44 3.53 2.78 6.16 12.1 0 11.5 10.5 4.78 5.07 8.55 9.25 10.1 6.73 5.35 9.41 8.98 6.8 8.85 11.1 10.2 4.08 2.44 6.28 1.47 0.91 3.92 1.87 6.85 11.4 5.87 5.99 7.95 1.47 12.3 6.31 4.58 1.47 3.74 6.84 5 10.5 10.1 0.91 1.47 3.16 3.42 7.05 6.8 12.3 9.19 11.9 10.4 0 11 6.38 8.54 0 12.6 8.07 3.3 2.18 0 10.5 0 7.08 6.93 0 5.4 0.91 9.33 6.35 1.87 4.08 5.8 8.69 6.9 5.99 9.21 0 7.36 7.78 3.3 5.38 8.91 6.11 0.91 9.13 12.3 0 2.65 7.19 0.91 3.01 0 6.67 0 7.5 0 5.11 9.64 13 6.74 5.38 5.52 7.96 0 0.91 9.98 12.8 10.3 12.2 8.59 3.83 2.65 4.29 4.73 8.79 2.84 9.24 10.3 11.6 8.81 10.2 10.1 9.18 12.5 0.91 7.04 10.2 11.4 9.84 8.51 10.7 9.64 8.68 5.22 5.28 7.9 4.63 11.9 8.23 9.67 10.3 11.2 9.72 4.41 6.58 9.53 3.53 5.11 11.2 8.18 9.77 8.8 12.2 11.1 12.3 7.17 6.74 8.3 12.1 3.17 10.8 6.81 8.42 7.84 10.2 10.3 10.8 11.8 5.41 4.73 0 7.86 9.63 7.89 7.29 8.52 4.58 15.1 13.8 13.5 11.8 10.5 13 10.1 9.7 10.7 10.4 12.8 11.7 10.4 11.3 10.5 9.88 7.96 9.12 5 11.9 9.73 9.28 7.93 3.92 12.4 6.59 10.3 6.73 9.51 11.4 11.4 9.54 11.9 10.3 8.91 12.4 10.7 0 4.95 0 11.3 8.54 11.7 8.78 10.4 9.27 5.52 11.1 7.35 9.12 8.7 13.1 8.4 11.5 6.13 2.18 9.67 0 13.4 4.53 8.85 9.57 9 8.62 12 0 6.94 11.4 9.43 11.2 13.1 7.19 0.91 12.4 8.21 12 12.2 10.2 11.3 11.7 12.9 9.2 9.39 7.76 10.9 10.8 10.9 9.46 11.3 8.17 9.07 11.4 11.2 8.72 11.3 12.6 10.8 12.7 11.4 6.09 4.68 0 10.7 9.26 11.8 13.2 1.87 13 3.16 10.8 11.2 11.3 2.44 9.28 10.2 3.64 3.74 1.87 0.91 0 3.74 2.84 2.29 12.8 3.45 2.65 0 5.87 11.8 11.4 9.34 7.54 0 3.53 9.32 8.82 7.89 8.18 9.88 8.02 4 2.18 9.12 11.1 5.8 5.18 5.28 8.63 9.71 10.8 9.11 5.87 12.2 9.71 7.51 8.56 10.5 3.16 14.5 4.91 9.23 10.2 12.3 6.85 11.4 9.31 9.55 8.45 11.3 8.35 9.48 8.36 11.2 9.42 6.6 9.37 8.59 2.44 9.05 4.15 5.58 4.78 12.2 8.53 8.38 2.44 4.22 0.91 8.99 8.37 3.42 7.26 6.58 9.44 8.21 8.78 4.58 10.8 6.44 11.4 11.2 14.1 9.78 10.2 9.08 9.28 6.09 8.84 4.87 0 11.9 13.1 10.5 10.9 13.2 9.48 10.4 9.71 10.4 1.47 9.88 10.8 8.49 11.1 8.74 9.69 7.89 12.5 8.32 4.15 4.08 4.29 10.4 9.93 7.95 3.16 2.44 8.73 9.75 0 0 12.4 0 10.8 7.57 12.6 4.22 11.6 6.31 9.7 6.61 7.76 9.7 3.42 11.6 7.93 8.6 10.2 10.5 10.2 8.35 7.68 11.2 3.83 12.1 2.18 0 9.06 8.18 9.24 6.85 11 11.4 8.91 3.74 12.3 8.81 5.8 11.8 4.83 2.65 9.15 14.6 8.33 5.5 8.81 0.91 8.17 9.1 3.01 10.3 3.01 8.08 10.6 9 9.17 6.96 10.2 11.2 8.31 10 6.8 8.1 7.56 10 4.83 8.2 10.9 8.76 5.73 6.6 0 9.43 8.81 7.5 9.85 10.1 9.26 11.7 3.53 9.72 1.87 10.3 10.3 7.05 9.49 13.7 3.53 1.47 10 0 8.24 9.84 0 9.84 8.34 10.8 10.5 9.85 8.05 12.3 9.45 12.7 3.83 10.3 10.7 10.8 9.08 13.2 1.87 8.98 10.7 10.9 8.4 2.18 11.7 10.5 4 7.45 6.28 8.06 16.4 10.8 5.18 6.3 11.6 7.56 8.83 10.1 9.89 9.19 7.44 9.81 16.2 7.28 8.5 6.36 1.87 3.01 10.3 14.9 8.61 7.1 2.44 12.2 7.76 8.68 11.3 0.91 4.73 6.94 10.1 9.85 5.77 9.43 10.5 5.6 0.91 10.6 12.6 7.55 10.6 10.2 9.85 9.08 7.88 9.55 9.89 8.72 11.8 0.91 13.4 9.71 9.97 6.01 12.8 13.8 9.58 10.3 11.9 7.02 16.5 0 9.68 8.92 9.14 13.8 7.64 8.77 7.12 8.15 5.71 3.42 8.47 0 13.1 8.07 11.8 6.11 0.91 4.53 0 2.44 5.22 9.14 3.01 0.91 4 4.12 10.2 8.93 10.9 0.91 9.92 0.91 9 10 12.1 9.16 8.47 10.9 11.7 9.64 11.2 11.6 9.24 5 7.73 8.1 6.53 3.01 10.5 8.15 3.53 0 1.47 8.39 10.4 4.83 7.23 3.16 4 5.71 4.95 7.47 1.47 9.6 7.52 2.65 5.35 10.7 10.7 3.01 7.07 0 2.65 7.74 12.7 7.72 8.66 0 7.34 8.85 8.12 3.42 10.2 0.91 6.76 5.52 6.47 1.47 4.91 10.3 7.25 2.65 14.3 2.18 8.76 0 5.25 0 4.29 6.11 8.85 4 8.21 1.47 1.47 9.21 3.16 8.11 5.15 5.68 4.41 4 6.27 0 4.58 3.3 3.3 7.34 1.87 4.73 5.85 0 6.93 6.11 5.15 0.91 9.32 11.8 8.43 5.28 8.35 0.91 5.91 9.04 5.95 7.88 1.47 9.8 11 2.44 0 3.42 9.03 4.47 8.79 5.15 5.18 0 7.62 8.78 0 3.53 0 10 5.73 7.81 9.03 5.18 0 6.74 5.52 11.7 0 14 0 13.7 15 13.1 0 11.2 10.5 9.7 8.91 10.5 11.6 10.6 6.58 9.14 10.1 10 11.6 3.53 11.6 11.2 11.8 9.24 10.1 7.85 10.8 10.6 11.7 4.53 10.1 12.5 2.84 10.6 5.47 10.7 7.62 10.5 6.2 9.56 10.7 2.65 8.74 9.23 7.77 10.5 10.4 12 10.3 13.7 10.8 7.5 12.4 12.5 11.6 10.4 11.9 10.5 9.1 10.7 12 8.7 3.01 9.75 7.97 7.8 8.31 12.3 13.4 6.18 9.03 9.39 6.21 11.1 12.5 12.3 10.6 10.9 9.47 12.9 10.1 7.12 4.58 9.23 0 13.2 12 10.3 3.58 7.27 1.87 6.21 6.72 8.28 7.86 3.16 2.18 9.16 12 9.98 5.35 7.6 12.2 11.1 9.92 4.87 10.1 10.5 11.1 10.7 11.2 5.85 0.91 1.87 10.4 5.38 2.18 12.9 1.47 2.65 3.3 3.3 4.15 0 7.95 6.38 0 10.9 2.44 1.47 0.91 3.83 7.05 9.63 6.05 10.4 0 11.4 10.5 5.35 8.96 6.13 6.81 12.8 8.38 10.3 9.5 12.9 7.44 13.1 12.3 11 14.3 4.58 11.6 12.4 5.52 12.8 8.19 9.64 7.24 6.56 9.22 10.1 7.35 9.16 6.97 12.6 8.03 9.29 7.46 7.2 8.4 6.87 7.54 6.26 7.16 7.9 10.3 8.53 9.2 10.6 8.7 8.31 4.41 9.99 10.1 10.6 7.11 9.14 8.16 7.88 7.6 10.3 9.34 7.63 5.97 7.51 3.01 2.18 7.09 6.85 9.34 8.33 7.41 9.8 5.63 1.47 9.48 3.3 6.78 9.17 8.17 0 1.47 6.51 5.25 4.55 11.7 5.46 4.29 3.16 0 0.91 0 2.19 8.11 7.7 6.25 9.66 6.85 7.76 6.69 7.39 7.72 8.87 5.78 7.86 8.88 7.83 11 2.18 11.2 9.71 9.02 10.1 11.6 4.08 7.76 1.47 9.54 8.05 11.1 7.54 7.03 1.87 6.13 2.44 7.33 9.23 7.47 10.5 1.47 8.09 7.42 6.36 9.07 8.47 5.71 11.3 6.82 7.58 7.94 9.47 11.7 1.87 7.07 9.99 5.38 5.11 10.7 10.6 7.54 8.07 5.8 9.14 0 7.82 6.83 5.28 6.7 6.31 7.5 6.26 2.18 0 2.18 7.67 8.38 4.78 12.4 9.38 10.1 13.7 3.64 9.37 7.42 11.6 4.4 12.9 7.94 10.8 8.77 5.15 12.5 8.22 11.3 8.23 11.4 9.44 10.4 5.28 2.65 1.47 11.6 8.52 8.01 2.65 9.33 10.5 10.1 10.3 9.41 11 11.8 12.6 7.96 4.95 10.5 0 9.41 10.7 4.78 6.64 8.82 10.6 10.8 7.23 9.85 0 3.83 8.79 9.68 5.99 10.2 11.7 7.44 10.6 9.31 6.14 8.75 10.1 9.91 0 10.8 11.1 6.93 8.19 8.68 9.97 8.89 6.59 13.2 10.6 7.56 6.21 9.6 10.6 9.94 9.61 10.8 5.8 10.3 11.6 4.15 11 9.47 9.22 12.2 9.62 9.71 6.85 10.1 9.14 11.1 8.6 9.1 5.75 8.95 6.49 11.2 6.74 6.6 10.1 7.7 10.1 9.96 10.8 9.08 9.95 9.63 5.93 10.7 10 7.87 7.08 6.31 11.6 9.21 10.3 11.9 9.06 9.24 9.84 10.8 9.61 8.43 7.7 8.36 11.2 10.5 7.41 9.21 14 14.7 9.77 8.71 9.75 6.59 9.7 8.23 8.59 8.66 10.7 8.89 9.05 9.9 9.78 12.9 9.32 8.39 0 2.44 9.71 12.7 6.79 11.9 6.21 6.26 9.73 8.16 9.37 8.77 6.83 8.51 13.5 8.82 7.94 0.91 11.5 12.8 8.32 10.8 11.8 10.1 8.58 7.06 8.02 8.39 6.47 0 6.99 10.7 6.26 9.82 11.5 6.05 0 3.64 6.52 4.35 1.87 3.74 5.82 3.16 0.91 9.79 11.4 8.56 8.81 1.47 9.11 7.5 10.3 5.07 1.47 3.53 1.49 10.9 7.65 6.18 3.01 9.1 10.3 8.3 8.81 8.6 8.59 11.6 9.15 7.73 10.4 11.2 10.1 11 9.69 10.1 8.72 8.53 4.83 8.08 9.99 4.47 3.74 6.65 5.99 6.44 4.58 8.6 8.22 8.24 4.15 8.95 9.14 9.06 8.02 4.53 3.74 3.83 8.63 9.06 5.44 8.94 2.84 4.63 7.76 4.53 9.14 9.18 9.06 10.4 3.92 9.46 9.88 5.63 7.13 9.35 7.68 5.47 8.7 10.5 9.81 7.38 10.7 8.06 9.27 8.49 5.28 7.07 9.05 7.99 9.19 9.96 7.48 6.45 8.2 7.96 8.79 8.59 9.11 8.37 2.44 8.56 9.09 8.58 8.56 8.69 5.63 7.89 9.34 6.21 6.14 8.84 9.41 8.9 8.03 10.1 5.5 8.09 8.93 8.99 8.12 8.27 10.6 6.54 10.6 7.96 9.63 7.86 7.27 8.6 11.3 10 11.7 10.5 11.7 0 6.41 11.4 5.85 10.3 8.53 6.53 8.12 8.37 8.19 8.5 10.8 7.64 7.57 3.01 4.22 8.24 7.77 7.06 3.3 0 11.4 2.65 9.42 8.56 7.63 10.6 9.26 8.37 9.3 5.99 10.4 6.18 10.8 11 8.96 9.55 3.74 8.54 0 8.7 10.8 7.27 8.9 7.02 0.91 2.44 13.3 9.28 4.41 7.5 12.9 9.18 10.9 8.27 8.55 8.48 9.17 6.39 7.11 0.91 9.94 5.44 6.49 7.51 5.75 11.6 10.7 9.81 6.01 7.31 5.15 4.78 9.34 5.78 9.05 5.35 4.29 7.28 5.52 3.16 7.89 9.12 6.99 6.41 8.39 8.1 8.59 3.01 10.5 4.53 5 9.33 7.48 4 6.16 3.01 3.3 6.68 5.75 8.27 7.54 2.44 7.95 8.11 0 5.63 8.14 0.91 8.22 0.91 5.75 8.95 6.2 1.47 8.11 8.48 8.81 10.6 4.87 7.83 8.47 6.62 11.1 8.58 9.13 10.4 4.78 9.36 9.25 4.47 6.97 9.27 6.97 11.2 10.5 8.47 3.64 10.3 10.1 9.84 2.65 7.83 10.6 6.59 4.47 7.38 9.92 11.4 10.3 5.25 0 10.3 8.69 8.36 6.54 8.3 7.9 11.3 7.81 0.91 4.63 0.91 5.07 5.95 6.28 6.2 0.91 10.6 1.87 10.4 0.91 1.47 10.1 9.79 0.91 8.06 6.44 5.3 9.09 0 3.74 9.46 3.64 10.7 7.26 6.79 6.59 7.12 10.8 6.66 6.25 7.29 9.67 9.15 8.52 4 4.08 11.2 8.18 8.72 6.45 9.83 6.73 4.29 5.44 11.4 10 1.87 5.91 2.18 9.81 14.1 0 9 11.9 6.01 8.01 7.43 2.84 6.63 11.1 9.4 8.07 5.93 9.99 9.19 8.13 8 9.32 8.47 9.31 10.2 8.54 7.39 3.53 0.91 2.84 6.13 7.75 9 8.42 7.74 0 3.92 2.65 0 8.7 11.3 12.6 4.53 6.69 0 5.38 7.27 0 7.94 4.28 6.33 0 6.3 8.59 9.78 7.82 9.95 9.34 6.35 10.4 9.54 10.5 9.14 5.28 10.4 9.74 11.2 9.43 8.25 8.68 5.52 7.26 8.07 7.83 9.67 5.91 7.48 9.41 0.91 9.27 7.29 9.4 11.1 9.82 9.58 9.38 9.58 2.84 9.98 8.87 8.51 9.14 10.6 10.6 9.66 7.13 10.1 9.87 9.31 4.41 11.6 9.13 10.7 9.73 10.8 7.02 8.73 9.7 9.76 0.91 11.1 11 7.9 7.17 3.42 9.21 7.84 8.87 1.87 8.74 8.56 5.91 9.38 8.32 7.22 11.3 9.94 4.35 12.5 9.15 3.3 7.69 10.4 8.66 6.03 7.03 12 9.71 14.4 10.6 11.1 6.93 6.3 3.01 7.72 7.4 7.3 5.82 5.66 9.12 8.63 5.38 10.3 10.2 11 7.79 3.42 10.8 4.29 3.53 11.7 9.4 0 7.8 4.35 10.6 7.92 10.7 11.4 9.95 3.16 10.7 9.12 9.65 6.26 2.84 11.3 11.7 12 8.05 9.07 8.06 11.8 5.73 8.14 6.3 4 9.7 9.08 7.68 12 8.69 11 3.74 11.9 4.41 1.47 5.97 8.37 8.36 8.68 9.72 2.65 6.85 3.74 1.87 8.17 11.2 9.55 8.3 11.1 10.1 7.63 8.28 11.3 7.41 11.3 10.9 9.19 12.7 11.3 12.5 8.21 9.97 7.49 8.1 7.28 6.38 9.81 9.74 10.4 11.2 9.06 1.87 10.7 10.5 8.41 9.04 8.23 10.2 4.9 6.79 8.81 1.47 10.8 7.83 9.51 7.17 0 1.47 12.5 14 7.46 5.07 3.01 5.32 3.42 9.53 8.36 3.83 10.8 12.5 14.5 0 5.41 0 2.44 1.87 12 10.7 10.7 5.85 2.65 13 11.9 8.67 8.5 1.47 9.5 0 0 12 4.63 9.4 9.24 5.52 12.4 9.52 4.47 6.28 9.46 8.92 10.4 2.84 10.8 8.71 10.4 7.83 8.43 10.3 8.7 8.83 9.35 9.56 11.6 0 7.17 6.14 8.99 8.23 8.26 10.4 10.3 1.47 8.82 2.84 6.72 12.7 10.2 8.91 12.6 10.1 9.95 8.87 7.13 9.94 9.83 8.43 0.91 11.2 14.4 13.2 9.2 5.28 12.7 6.21 9.23 12.2 6.72 10.4 10.8 12.9 11.3 11.1 8.03 5.55 6.21 8.51 1.87 9.21 1.87 1.87 11.6 9.57 8.92 5.38 6.87 9.17 0 5.11 0 11.5 5.28 9.48 7.06 8.69 9.22 8.63 3.01 9.53 2.86 10.4 7.03 11.8 11.2 5.95 9.95 8.93 12.8 10.3 9.06 9.01 11.8 10.8 10.2 0 10.2 9.1 2.23 10.2 10.2 8.05 9.26 0.91 4.87 7.08 9.22 9.66 1.47 10.4 10.4 7.13 10.8 13.1 8.32 11 8.19 12.5 9.64 0 10.4 9.31 11 8.49 14 8.99 10.8 11.1 10.3 11.3 11.4 10.4 7.75 14.2 10.8 8.1 10.1 7.9 9.16 10.5 0 13.3 1.47 11.2 12.1 7.56 7.56 10.1 0 10.9 10.2 11 9.5 0.91 12.8 10.2 10.3 5.97 11.2 9.27 8.09 8.5 12.9 0.91 8.34 7.71 9.6 7.85 5.22 0.91 0 9.76 1.47 0.91 1.47 6.92 1.47 8.52 5.28 3.83 5.63 7.85 1.87 1.87 0 1.87 2.18 2.65 6.67 3.16 10.4 14.3 11.1 9.22 6.09 5.32 4.73 2.18 10.4 5.68 0.91 8.32 8.16 8.89 7.57 5.22 3.53 6.74 9.17 5.87 8.24 2.65 6.81 8.9 11 7.43 10.5 0 3.04 1.47 4 5.07 0.91 8.23 10.7 4.53 7.39 7.36 9.57 8.91 0 8.35 2.65 2.18 2.84 0.91 11.9 6.38 5.28 10.8 7.63 5.83 9.67 9.59 1.47 8.89 10.8 11 9.28 8.41 0 7.12 9.06 12.1 9.3 0.91 9.07 10.6 10.6 8.04 1.87 4 2.44 3.64 11.7 1.47 7.25 10.3 8.76 2.44 3.01 8.28 9.03 6.07 9.42 10.1 3.01 0 8.87 9.84 5.63 7.38 6.2 9.9 5.6 3.3 7.99 11.7 6.59 2.44 2.65 8.66 2.84 6.25 9.94 8.84 10.3 5.44 9.96 10 2.44 4.91 8.43 10.8 9.94 9.83 0 4.63 0.91 8.3 1.87 1.72 9.83 0.91 5.82 10.3 6.69 7.65 10.3 10.9 5.44 9.35 5 1.47 10.2 4.73 7.92 0 4.68 0.91 8.56 0.91 1.87 0 2.86 6.76 10 9.13 4.15 8.76 10.2 6.6 10.7 6.28 8.66 10.5 9.73 7.96 8.09 7.45 2.18 0 7.84 2.18 9.3 10.8 8.74 8.62 5.58 10.7 12.1 2.65 8.64 7.73 7.34 5.38 2.84 3.92 10.2 9.65 4.41 8.83 9.34 7.81 7.8 10.7 9.51 2.18 5.95 6.48 8.8 8.51 4.35 7.17 10.5 8.79 0 9.14 10.4 9.05 7.51 9.39 14.5 3.3 4.95 4.35 1.47 6.18 5.35 9.98 11 9.92 9.25 2.84 5.38 7.14 10.5 1.87 9.42 6.01 3.42 1.47 7.4 2.44 6.84 8.33 8.28 9.7 8.08 10.1 8.73 6.55 8.34 7.12 9.12 7.38 6.89 4.58 5.77 6.26 8.82 10.1 7.13 9.72 9.33 9.98 9.41 9.63 9.31 12.6 8.64 7.8 9.24 9.56 7.41 8.22 9.21 3.3 6.06 5.07 9.72 7.22 8.02 9.3 9.5 12.2 0.91 6.03 9.55 9.69 10.1 2.18 9.38 7.43 4.63 3.83 8.88 4.15 9.21 1.47 9.55 6.26 6.95 6.16 1.47 3.83 0.91 8.05 11.8 11.7 7.58 7.2 3.01 8.08 10.1 9.53 8.35 8.3 10.3 2.84 10.6 5.95 4 5.03 5.82 9.88 10.1 1.47 7.98 8.65 8.78 11.1 9.32 6.84 8.32 10.5 7.1 9.17 9.15 11.1 9.4 10.3 8.42 10.3 8.88 7.29 8.26 8.68 4.29 9.28 13.5 9.22 4.08 9.31 10.6 9.27 8.79 10.3 10.1 6.36 8.57 10.9 8.24 12.9 8.03 8.99 6.65 8.94 10.8 9.1 11 3.75 8.32 8.58 9.98 10.7 8.17 8.15 9.38 0.91 10.6 8.81 6.07 10.3 7.39 8.5 9.52 10.4 6.76 8.28 9.58 10.3 10.6 11 2.18 7.75 6.28 8.98 10.2 1.47 9.11 9.31 11.4 10 10.5 4.41 8.96 8.28 8.82 1.47 6.6 11 9.44 2.84 9.71 8.46 9.83 7.07 10.2 1.47 9.88 6.47 9.74 12.3 8.2 6.49 2.84 5.85 9.78 5.73 10.1 12.3 6.54 10.7 3.92 7.44 9.83 9.18 6.01 6.88 8.97 5.25 8.76 7.01 8.63 8.16 1.47 4.15 0 1 10.1 8.54 10.2 9.61 4.53 6.65 10.9 7.94 10.1 7.12 9.91 4.87 5.25 5.28 10.5 6.85 9.75 6.9 7.17 8.48 8.35 9.29 9.83 3.16 11 4.73 7.73 11 5.78 9.84 7.45 10.3 9.59 9.51 6.87 0.91 11.2 8.69 8.45 0 6.68 6.07 2.65 9.47 10.5 7.27 2.18 5.66 0 1.47 8.45 5.22 2.84 12.4 7.68 7.7 0 0 7.51 7.79 9.37 6.01 10 9.81 10.7 4.35 0 2.84 2.44 9.64 7.19 5.44 8.74 9.92 6.23 8.5 0 9.56 0.91 1.51 9.95 8.63 11.4 4.35 3.16 6.73 4.39 2.44 3.42 0.91 10.1 6.84 4.63 5.18 9.7 9.19 8.54 8.99 1.87 11.5 8.96 7.45 6.49 10.6 8.23 12.1 7.2 7.84 1.47 8.89 7.93 8.43 5.22 8.72 8.2 9.95 5.97 5.52 9.02 3.3 4.73 8.43 9.16 9.29 13.1 7.54 8.45 6.05 9.67 10.9 9.6 2.65 6.96 6.21 8.91 9.58 10.3 8.18 4.83 2.84 2.18 8.04 11.1 9.22 9.45 9.44 11.3 0 8.72 3.42 4.41 2.18 11.2 11.5 5.71 6.94 0 5.18 9.28 3.16 7.62 6.35 8.7 7.2 8.93 9.79 6.93 8.89 4.68 9.46 6.64 1.47 1.87 6.74 8.41 11.1 8.46 9.75 10.1 7.91 9.18 10.4 10.4 9.2 8.95 0 8.89 10.8 6.45 9.57 9.92 9.39 4.29 9.46 11.5 6.23 10 9.93 7.28 8.03 9.55 9.25 9.28 10.1 3.16 7.63 10.2 9.86 5.66 9.91 11.3 10.4 1.47 5.47 9.66 9.55 7.03 8.19 11 8.17 0.91 7.01 8.33 8.58 9 8.8 10.1 9.97 6.21 10.1 3.42 9.5 8.82 2.18 8.75 9.66 7.65 8.51 11.8 9.35 12.4 5.03 4.58 10.1 8.79 7.32 13.2 7.19 8.68 3.01 6.84 8.85 9.4 9.37 1.47 5.25 7.4 10.2 10.1 10.8 7.96 1.47 11.4 6.85 0.91 5.38 12.4 7.81 10.1 10.9 3.83 0 11 10.4 10.3 7.25 9.64 4.63 5.95 8.86 0.91 7.52 9.08 9.47 9.16 6.6 6.14 10.5 9.56 8.84 7.76 7.7 10 8.71 7.81 8.52 5.47 9.79 11.2 8.82 6.64 2.84 7.54 4.68 1.47 9.58 8.03 10.7 9.11 1.47 4.53 1.87 8.18 10.6 8.28 9.09 5.15 4.73 4.78 0 5.73 7.31 11.5 9.21 7.92 0 9.35 2.44 1.47 8.8 4.22 9.02 3.64 8.01 9.83 5.73 7.27 8.18 9.31 8.53 3.3 9.76 12.2 2.65 11.3 11.1 8.95 10.3 7.4 9.26 9.2 10.1 3.53 4.53 9.11 1.47 10.2 7.72 3.16 14.9 9.72 9.51 10.1 10.5 9.09 10.6 0 7.12 2.18 10.6 9.7 9.54 9.24 4 12.4 8.68 5.15 8.23 9.98 8.09 8.86 7.92 5.73 8.9 9.94 3.92 3.78 9.72 6.48 0.91 0 8 4.47 5.5 5.5 9.51 4.42 4.47 12.4 8.04 7.63 6.16 4.73 11.4 8.42 7.79 10.4 9.45 1.98 10.7 11.4 11.1 10.5 9.38 9.21 11.6 9.37 10.1 10 9.46 9.42 4.83 6.73 8.3 8.53 10.3 6.52 3.01 0.91 10.6 9.93 9.17 3.92 10.2 5.18 4.41 11.4 10.2 12.2 9.19 7.35 10.1 1.47 5.03 10.3 5.03 8.94 8.73 10.7 12 7.94 6.74 3.53 7.43 5.93 0.91 9.63 11.8 10.7 8.66 9.89 8.18 4.08 3.16 7.54 3.83 10.3 7.62 5 9.46 9.42 10.5 9.88 4.53 5.71 12.4 8.86 10.5 5.97 11.6 12.6 7.46 12.6 11.2 11.5 12 12.8 9.94 8.26 4.58 10.9 12.1 8.49 11.2 5.44 9.67 10.6 8.72 11.3 11.3 11.7 2.18 7.73 11.3 7.88 11.3 8.72 5.44 10 0 11.6 10.3 11.7 9.54 9.86 1.87 0.91 12.3 9.31 11.8 10.2 9.52 9.5 11.3 11.9 9.23 9.02 11.2 10.5 8.44 6.81 5.38 11.1 10.4 9.64 8.16 11.4 4.83 10 6.9 6.89 0 8.61 7.44 11.1 0 3.42 2.18 1.87 6.87 12.8 10.3 8.66 9.42 13 12.6 11.2 13 9.13 5.93 9.11 9.95 9.59 12.7 9.47 7.05 6.41 0 10.5 3.83 2.65 2.84 0.91 7.81 4.63 4.53 1.47 10.1 5.5 8.33 9.61 0 7.34 9.62 10.2 8.81 10.8 9.89 2.65 4.78 0 3.74 9.95 9.25 2.84 12.1 10.6 1.87 9.51 6.85 3.64 8.53 0.91 9.98 2.44 11.6 5.95 8.48 5.78 8.76 0.91 9.65 8.65 6.16 8.92 8.58 9.02 2.18 2.84 9.89 2.65 7.5 6.92 9.79 7.31 5.26 11.8 8.06 4.83 9.06 7.01 2.44 5 1.47 8.75 11.7 7.94 7.7 8.61 6.95 9.95 10.6 7.88 10.9 10.8 9.56 1.47 1.87 5.26 12.8 12.3 9.78 11.1 8.81 10.1 9.5 9.8 12.2 10.9 9.75 9.72 8.86 8.39 10.8 10.8 11.1 11.2 10.8 8.38 10.4 0 8.03 0 12.7 5.95 12.6 11.2 5.28 2.18 9.13 7.23 7.42 8.46 9.64 2.18 9.96 8.52 7.9 9.31 10.1 9.57 2.11 2.84 7.29 8.8 11.5 11.4 8.4 9.96 7.79 9.15 8.82 7.3 10.2 6.73 12.1 9.69 10.9 0 3.16 3.01 11.6 3.53 0 9.52 6.92 11.2 3.53 1.47 9.89 8.53 2.44 1.87 10.1 6.92 8.45 7.34 1.47 4 0.91 3.83 10.4 9.07 10.3 10.1 11.6 7.76 3.42 0.91 10.4 7.1 7.94 0.91 0 4.29 3.41 0.91 8.35 6.73 7.96 10.1 7.68 8.85 7.77 10.1 11.3 8.66 0 5.28 10.5 11.8 7.2 9.92 7.39 9.84 5.89 7.23 7.56 2.44 5.15 8.76 10.4 11.8 2.65 4 6.45 10.4 6.07 10.3 8.79 2.18 10.1 9.8 11.1 0 10.6 5.66 7.07 6.36 6.6 7.89 9.2 11.5 8.98 8.59 7.93 8.83 8.43 10.6 6.8 6.21 4.73 11.2 5.87 0 7.68 1.87 8.85 11.7 8.24 2.44 6.7 0.91 5.99 1.47 3.53 11.1 10.6 7.18 9.14 9.93 9.69 0 6.01 8.77 9.48 6.45 0 7.81 6.95 4.41 9.3 9.35 10.2 7.53 9.9 8.01 4.08 11.4 9.81 9.66 9.56 9.24 8.01 6.47 9.5 10.1 9.57 8.86 14.3 7.2 4.35 6.84 8.51 10.9 0.91 8.42 11.2 9.36 7.35 5.18 10.7 5.66 10.5 10.6 7.54 8.13 8.91 9.9 9.31 9.39 9.48 6.92 4.29 9.29 7.51 8.66 0 3.42 9.27 8.87 5.6 9.47 7.47 6.92 6.93 8 8.13 9.16 10.8 7.29 6.36 3.3 6.45 9.03 1.87 9.74 7.49 8.37 8.83 4.5 8.69 0 1.47 3.01 10.9 7.25 9.59 12 1.47 8.69 9.45 7.41 7.74 10.4 10.3 12.9 11.3 11.3 6.13 9.27 6.21 9.14 2.65 11.1 11.2 10.6 10.1 10.1 7.02 9.11 10.5 8.71 0.91 9.6 4.68 9.06 2.84 11.8 7.39 10.4 10.2 9.86 7.74 9.98 2.44 11.1 4 7.38 9.26 7.39 9 5.81 3.42 9.74 8.85 9.16 10.9 7.95 5.85 1.47 7.2 11.3 7.47 5.41 8.1 6.38 10.2 0 4.29 1.87 10.9 4.35 3.64 11.7 13.5 6.63 10 10.1 5.15 9.49 8.68 7.02 11.5 9.56 8.43 1.47 10.9 12.1 12.8 10.3 9.52 6.67 2.18 8.92 6.39 8.65 9.57 0 7.72 9.71 8.52 9.81 5.63 12 9.6 7.34 5.28 7.98 9.68 9.96 4.15 11.1 7.55 2.44 8.99 12.8 6.07 9.47 8.88 4.53 9.41 12.4 2.44 9.01 3.53 11.2 4.58 10.3 3.3 9.79 3.3 8.63 9.58 7.23 8.16 10.7 11.2 1.47 9.8 6.48 8.37 5.6 3.53 9.22 1.47 6.25 0.91 7.51 6.47 8.79 7.07 0 8.2 6.91 9.76 14.8 5.99 10.5 10.6 8.02 7.63 2.65 10.6 2.18 4.83 4.68 6.59 10.6 9.18 6.23 4.29 4.15 0 10.2 7 7.66 9.51 9.53 5.93 6.68 1.87 10.8 1.47 7.54 8.05 10.8 7.89 0 8.27 8.56 9.63 8.18 7.79 9.26 9.74 6.13 4.91 10 0.91 4.73 7.65 8.56 0 9.24 5.75 8.92 8.25 8.11 2.18 7.96 9.52 8.39 0.91 9.43 2.44 4.91 7.89 10.3 9.53 8.89 8.28 8.27 11.6 9.43 2.84 4 6.85 8.82 8.01 8.42 3.3 9.11 6.95 11.1 9.11 11.7 5.97 9.5 10.5 11.5 8.18 11.8 8.35 9.83 11.2 1.47 8.28 7.9 5.87 8.63 4.95 8.89 5.89 0 6.72 5.18 5.32 6.93 4.95 2.65 4.68 12.2 3.01 11.8 10.6 10.9 8.88 9.74 6.39 6.73 7.08 6.72 7.49 9.02 8.39 0 9.78 11.6 9.21 4.68 6.88 7.28 0 5.03 9.95 2.18 0 10.2 8.04 0 13.7 4.29 4.58 3.83 9.75 4.87 9.78 8.8 7.9 7.54 11.4 4.91 4.24 7.22 8.95 4.15 10.1 10.8 11.9 8.11 6.92 8.53 8.96 5.52 12 9.48 9.92 9.87 8.23 3.16 9.37 10.1 10.7 9.38 11.3 8.49 10.5 11.3 10.5 9.76 3.01 12 13.7 6.75 5.68 9.65 10.3 3.16 10 10.6 9.93 13.2 7.33 1.47 8.64 8.39 6.11 6.65 7.37 4.58 11 11.9 7.11 4.47 9.77 9.25 8.12 0 8.53 3.1 0.91 6.82 7.85 6.63 6.84 0.91 1.87 5.82 11.5 9.87 3.01 10.3 9.78 9.55 7.38 8.45 7.12 4.47 7.5 10.2 8.16 11.3 7.59 10.9 8.65 11.6 12.1 3.01 10.2 9.74 8.69 10.2 4.83 1.47 8.81 5.58 5.75 8.07 3.42 9.89 10.3 8.74 10.2 8.72 8.31 11.4 9.71 0 11.4 10.1 11.1 5.95 0 9.69 14.3 1.87 9.31 8.07 10.8 0 9.6 0 6.23 1.47 4.78 6.91 3.74 7.49 9.91 11.4 9.49 1.87 12.6 9.65 9.72 8.84 3.92 8.22 9.74 3.83 5.34 2.69 7.88 7.34 8.16 9.74 5.91 9.8 8.83 8.7 8.62 11.8 11.8 0 3.64 9.62 5 9.44 0 5.03 2.18 3.82 2.44 10.8 6.09 11.7 6.01 4.83 9.11 12.1 0 4.58 1.47 8.68 8.05 3.64 10.8 10.2 7.12 9.57 3.69 2.84 0 12.1 5.82 6.41 5.03 5.89 7.03 10.2 9.48 10.3 9.32 2.84 9.8 8.21 2.18 9.31 9.71 12.2 9.17 9.22 6.78 8.32 5.5 10.3 3.92 9.28 4.47 10.9 9.01 2.84 11.3 7.76 5.6 3.42 9.99 2.84 11.1 8.69 6.99 9.97 9.11 0 7.23 5.18 1.87 8.29 0 8.76 0 8.42 8.5 7.95 7.18 9.55 13.8 11.6 8.85 10.2 1.87 2.44 8.97 5.25 9.5 11.2 4.08 7.15 8.71 0 8.31 10.2 5.78 4.35 8.91 3.3 5.87 9.45 10.3 1.87 5.73 9.82 7.44 4.22 8.11 6.52 5.32 6.9 7.18 8.26 6.56 6.81 8.78 10 9.89 11.4 8.39 4.15 7.96 2.18 0 11.7 11.9 11.8 7.85 7.59 2.18 4.53 5.18 9.12 10.9 9.13 1.47 0 10.4 9.65 12.9 8 2.18 10.7 8.52 9.62 11.6 10 9.67 9.6 13 9.37 9.19 5.38 10.4 5.5 9.87 8.56 8.96 11.6 9.86 11 5.11 10.3 9.76 2.18 8.96 8.92 9.17 11.3 10.9 12.7 10.2 8.57 9.41 12.2 10.4 8.59 10 10.3 8.38 11.1 10.9 10.9 8.31 10.9 5.96 8.85 8.88 7.32 8.95 11.3 8.54 10.6 9.24 7.93 8.02 12.1 7.7 3.64 9.08 11.3 10.4 0.91 7.53 11.4 5.15 3.42 11.3 10.7 12.8 10.5 9.71 10 7.91 10.7 8.87 9.3 11.2 11.3 8.85 12.2 9.81 4.91 8.6 4.73 6.45 7.88 6.01 3.3 7.56 11.9 6.25 8.83 12.8 8.38 5.32 6.73 9.74 8.87 12 11.2 8.11 7.62 9.39 9.76 8.73 7.7 8.03 8.36 10.6 8.64 9.53 8.88 7.83 8.63 8.92 7.46 9.43 12.4 9.64 7.37 6.79 10.4 7.18 11.4 6.54 11.2 14.7 10.3 9.55 9.05 9.38 8.84 9.43 8.78 9.79 10.3 9.57 10.4 9.17 10.9 10.8 11 10.8 11.4 4.63 10.4 11.1 3.74 11.3 8.23 8.55 8.94 9.53 10.4 8.33 11.1 3.83 7.81 1.47 8.23 11 8.32 11.4 10.5 0 7.51 2.84 10.4 4.41 9.41 9.23 8.73 6.03 9.81 1.87 7.58 7.24 12.7 1.47 3.92 8.61 11.4 9.26 9.83 9.19 1.87 9.45 9.65 4.95 9.89 3.16 9.32 10.8 5.95 7.7 10.5 4.35 13.1 10.3 10.9 5.03 11.3 6.87 10.8 8.38 13 5.11 6.44 7.51 5.11 9.38 11.5 6.9 10.6 1.87 11.2 7.35 8.17 9.32 8.78 7.87 8.86 12.9 8.38 7.16 11.6 11.2 11 9.99 11.7 10 9.71 5.32 10.2 7.66 11.2 5.07 11.3 10.7 7.6 7.44 8.01 9.5 10.7 11 8.95 10.6 9.81 8.08 10.5 11.8 7.58 9.6 12.3 11.9 9.46 8.03 9.94 0 11.5 9.58 10.2 11.5 10.4 9.77 8.03 11.5 9.37 8.23 10.7 9.83 9.57 7.79 8.53 10.9 3.64 8.49 2.84 9.76 9.39 7.75 6.41 7.64 0.91 7.84 7.92 6.54 10.6 3.92 7.64 10.4 5.63 7.03 7.26 9.2 8.75 9.32 8.27 9.41 7.89 7.94 9.11 0.91 9.37 9.67 7.74 7.18 10.6 11.1 7.12 5.07 7.99 9.26 10.4 10.2 9.76 9.63 8.7 8.81 9.27 9.4 11.7 10 9.46 9.55 7.58 9.49 9.28 11.8 8.87 11.1 7.77 10.8 9.65 11.2 4.15 7.01 11.2 9.02 9.88 9.08 11.7 0 8.92 7.67 8.16 8.86 9.47 9.81 9.97 9.24 10.1 10.3 9.78 9.37 6.43 5.66 3.53 9.8 8.58 7.66 10.9 10.2 10.8 4.29 12.5 10 9.5 10.4 7.37 9.76 11.7 6.58 10.5 7.64 9.62 8.91 1.47 6.81 7.83 8.09 6.87 11.2 8.91 5.35 7.73 6.23 10.7 2.18 7.97 13.2 8.89 6.33 9.9 0 0 2.18 10.6 9.93 9.67 9.47 13 10.9 1.47 3.01 11 10.5 9.64 11.4 2.24 9.77 9.38 9.54 7.94 11.2 12.7 8.03 9.46 7.26 8.7 12 10.7 11.1 13.6 9.3 10.8 3.92 12.6 7.83 9.67
-TCGA-E9-A1R5-01 6.77 6.6 6.92 8.77 6.55 8.5 0.73 3.48 6.39 3.64 5.84 7.16 4.71 1.98 4.39 7.87 10.6 11.2 7 9.91 9.31 7.2 10 2.98 9.43 8.5 5.6 9.4 5.15 7.79 3.15 6.17 5.93 4.04 2.92 1.4 0.73 5.18 6.41 4.37 4.84 4.23 8.5 0 5.76 1.72 0.99 2.92 10.8 5.17 5.37 6.92 9.62 10.8 7.28 0.73 6.31 5.58 7.41 7.64 8.1 4.3 7.91 7.91 1.86 3.09 6.34 7.98 9.56 3.52 4.3 6.46 2.98 5.98 1.21 3.04 4.58 5.47 3.83 0.73 3.89 1.21 1.76 7.73 6.36 0.41 6.32 1.57 0.41 2.2 10.7 6.91 7.01 3.82 5.06 4.54 0.41 1.98 5.15 0.41 2.2 6.22 2.79 5.97 2.56 3.3 7.61 7.07 6.04 6.66 0.99 1.57 11.6 4.07 5.49 1.98 2.23 4.44 1.74 3.35 5.52 4.18 0.78 1.86 1.98 5.93 0 3.75 3.39 16.4 2.39 3.75 4.64 6.13 2.98 4.17 3.89 0.41 3.59 7.03 6.43 10.8 0 2.48 5.33 12.3 0 10.9 1.57 1.72 4.53 0 4.64 10.1 10.8 1.21 0 0 8.74 8.43 6.04 7.96 3.6 0.99 9.13 5.76 7.03 2.64 5.79 2.4 9.49 9.68 4.56 4.64 5.92 2.2 4.12 3.54 8.49 3.13 5.15 7.5 4.35 4.62 5.51 1.99 4.84 1.4 7.75 5.16 8.6 9.13 3.48 1.4 4.93 7.81 5.02 7.75 8.85 9.1 5.41 10.5 9.64 10.2 6.97 7.65 5.68 10.4 10.4 11.3 7.74 11.2 11 10.5 10.1 11.6 5.61 11 7.56 10.3 8.62 9.47 10.8 11.5 6.86 8.76 0.41 9.81 9.17 13 9.97 3.52 8.6 11.5 8.87 8.92 9.38 9.48 10.7 0.41 12.2 7.59 12.2 11.4 11.8 10.8 12.1 12.9 5.21 12.6 8.34 2.1 6.75 9.57 9.37 6.05 9.46 12.2 0 11.9 2.92 12.1 8.13 10.3 10.8 10.9 8.02 9.92 11.1 9.89 6.29 5.46 8.8 10.2 12 10.7 2.1 12 11.6 10.2 11.6 10 11.1 7.5 8.91 12.1 11.9 9.46 12.1 10.4 3.25 4.95 10.2 6.65 10.7 10.6 9.3 11.7 6.6 6.27 8.12 12.6 11.4 8.89 9.82 11.2 0.73 9.6 8.58 9.04 12.6 9.05 3.44 8.6 6.04 9.62 10.5 3.95 8.7 4.77 10.1 11 10.1 8.86 10.1 9.36 10.8 9.91 9.71 9.28 9.2 9.67 11.9 8.12 10.3 11.5 8.6 6.52 8.1 8.67 9.7 9.72 9.19 10.7 8.77 13.5 7.94 9.63 11.9 8.88 10.2 7.08 9.86 0 3.56 9.76 8.62 9.83 1.72 7.09 4.37 10.3 9.07 11.8 9.67 8.37 7.73 2.2 7.74 9.69 3.85 11.5 9.85 11.3 11 7.31 8.36 12.4 1.4 8.62 8.61 9.18 7.7 8.37 9.84 10.1 4.64 8.3 6.3 10.3 7.93 6.73 9.71 9.34 5.61 11.6 8.63 9.37 9.4 8.6 6.64 10.8 10.8 8.97 9.5 10.7 10.1 12.6 9.68 6.88 8.76 6.38 10.2 8.88 9.21 11.3 9.35 8.73 8.53 5.16 9.19 5.2 6.51 11.6 6.08 10.1 10.4 9.7 3.35 10.7 11.9 14.3 8.38 7.07 6.92 7.3 8.51 8.91 6.93 10 9.85 12 11.2 0.99 10.9 3.52 6.39 6.52 9.12 9.21 5.05 8.27 4.5 9.68 7.94 8.75 6.19 9.91 3.09 4.28 9.02 10.5 11.1 1.98 9.44 7.74 2.98 5.78 6.29 7.43 6.61 5.39 7.74 0.99 10.3 10.1 7.39 10.2 11.2 5.6 13.2 10.2 3.6 10.8 9.49 3.68 11.4 8.41 7.64 11.5 3.82 9.28 8.97 5.21 12.6 7.46 6.97 9.02 7.12 11.1 11.8 14.1 8.6 10.9 7.31 11.6 7.5 6.94 8.67 0 0 10.4 8.02 12.3 8.49 11.3 10.6 9.32 11.3 10.6 7.21 11.4 8.85 10.8 11.9 10.3 9.07 10.8 9.2 6.81 10.1 9.89 9.56 7.31 9.29 9.77 7.23 9.27 11.3 10.6 10.1 9.39 11.3 9.51 10.4 0 8.79 11.2 9.58 9.77 9.86 11.5 12.4 9.91 7.23 8.86 6.27 3.95 11.3 9.18 7.43 10.2 9.35 7.74 8.79 4.75 9.11 8.19 10 10.3 9.01 11.8 8.51 9.28 6.96 11.5 10.1 12 10.9 1.21 12.4 9.76 9.89 9.87 12.3 12 12.4 10.1 8.18 12.2 9.16 11.6 2.3 7.96 6.81 8.24 8.35 9.31 10.8 9.94 11.1 10.8 9.96 9.46 1.4 4.23 10.6 6.21 7 13.8 9.19 9.67 9.41 11.7 10.8 12.8 11.2 12.5 0.73 10.5 9.29 7.94 8.43 10 4.82 7.38 9.63 9.74 11 11.1 9.32 7.7 10.9 9.96 12.3 9.37 10.9 9.5 10.7 8.7 8.78 8.4 10.8 10.1 4.3 10.5 8.24 0.73 4.44 11.9 12.2 1.86 9.74 0 11 4.99 8.78 10.1 12.1 12 11.8 10.3 1.4 9.77 5.45 10.3 12 8.64 1.98 8.34 9.06 9.45 10.8 8.11 9.57 12.9 0 5.73 10.9 8.46 10.4 8.76 3.6 10.5 12.3 9.8 9.85 10.4 6.58 15.3 8.49 10.3 11.1 9.58 10.5 10.2 12.8 8.3 6.06 8.67 6.79 10 11.4 9.07 12.3 12.3 7.18 11.1 15.8 11.1 5.47 9.36 6.26 7.39 0 6.5 10.5 8.76 3.2 4.07 10.3 5.57 9.7 10.8 12.5 11.3 6.55 11.3 11.1 8.08 7.06 0.99 4.48 10.3 2.64 8.17 8.53 8.84 10.9 8.53 11.5 5.35 3.6 4.88 9.67 9.24 8.51 1.72 6.56 10.2 6.75 4.12 6.67 12 10.1 8.14 10.2 8.96 2.85 9.26 10.6 8.84 1.84 7.49 13.3 5.66 11.2 12.1 10.3 10.3 12.5 8.2 12 9.1 6.75 3.31 11.4 2.92 1.54 3.35 4.64 10.7 7.09 10.5 0.73 7.97 9.92 3.48 5.05 10.8 9.91 6.19 5.85 10.4 9.23 1.4 10.6 10.6 12.4 10.9 10.4 11.6 10.6 11.2 10.6 9.07 9.3 12.2 9.74 7.71 8.75 7.7 9.58 7.06 12.6 11.1 7.61 6.85 4.92 7.85 9.11 7.46 7.96 7.65 12.5 10.4 0.73 1.21 10.1 8.94 12.1 10.2 7.07 6.17 9.22 2.4 5.77 6.02 9.96 7.08 9.76 10.4 9.37 0.41 3.04 1.21 10.3 9.7 7.14 12.6 9.11 8.62 3.68 10.2 11.2 3.44 5.63 5.61 4.96 7.32 9.92 10.7 9.06 10.3 4.8 4.25 6.1 0.41 8.01 0 3.92 9.04 9.71 2.57 0.41 11.6 3.39 7.9 7.71 5.25 2.4 9.78 8.47 11.9 9.7 4.46 8.82 10.5 9.02 10.1 10.3 10.3 9.53 9.24 9.51 0 6.94 0 12.2 10.5 13.5 0 10.4 10.6 11.1 9.41 11.3 7.12 7.12 11.6 10.9 10.3 0.73 12 2.4 12.3 3.09 9.52 10.3 7.07 0 8.83 12.1 11.4 10 9.25 9.8 11.5 7.1 11.9 10.1 9.57 8.02 11.9 12.5 10.4 12.7 11.2 10.9 7.23 11.8 8.63 8.54 7.87 9.53 11.4 12 13 10.7 12.9 10.1 8.53 10.7 11 8.81 8.62 12.9 6.7 11.6 10.8 10.8 11.1 4.28 4.5 11.9 6.04 9.65 6.12 9.11 9.12 6.86 6.91 6.84 6.78 1.5 4.44 8.46 9.71 2.4 11.9 9.06 10.6 9.05 8.42 7.24 7.8 8.36 9.61 10.6 2.1 4.44 0 5.43 9.57 12.8 7.42 14.1 5.02 7.95 9.88 7.67 9.2 9.83 9.58 0.41 8.61 9.91 11.2 10.4 10.9 9.72 9.91 13 11.3 11 8.89 8.01 1.57 9.23 7.36 8.48 8.74 8.96 6.92 13.3 9.72 9.07 10.2 4.9 5.84 9.26 10.6 13 7.66 7.7 11.2 9.79 7.18 7.11 9.61 1.21 8.03 8.87 12.4 8.24 12.1 8.23 8.83 9.59 8 5.24 9.89 7.15 10 7.48 8.44 10.5 9.8 8.79 9.64 8.7 6.52 8.81 3.44 9.43 9.2 8.12 0 9.52 2.57 7.21 6.76 9.51 2.1 10.1 10.3 0.41 10.7 8.74 10.8 0.99 11.1 6.93 5.21 0.73 5.46 7.9 9.64 7.09 6.13 3.98 8.75 6.92 8.83 7.9 10.8 9.97 8.97 6.79 10.7 9.64 9.21 13.6 10.7 7.56 6.54 4.88 11.4 7.32 6.67 11.8 10.4 7.91 8.67 4.3 11.4 6.15 10.1 5.65 4.88 8.34 9.83 10.3 4.96 9.2 10.5 8.64 8.17 9.36 11.2 11.9 11.4 7.09 7.36 9.63 4.32 9.06 9.41 6.65 11.6 11.3 9.51 8.8 8.5 1.98 11.3 10.1 11.1 2.79 11.8 12.8 8.22 8.05 7.34 10 11.9 7.45 9.42 9.5 9.63 8.67 7.4 9.83 9.69 6.2 7.17 9.67 9.13 6.08 7.79 2.98 7.63 9.88 6.27 9.5 8.17 9.54 0.73 8.59 9.74 10.6 8.13 10.2 9.66 12.7 8.27 11.2 2.92 11.5 6.98 6.27 4.54 10.1 9.29 10.4 8.87 7.4 4.35 1.57 4.07 7.71 11.6 8.21 7.17 8.2 6.65 10.4 6.39 10.2 9.31 6.1 0.99 7.39 3.04 10.7 8.33 8.33 6.72 8.72 9.89 8.81 10.8 10.7 10.4 8.66 7.1 9.34 11.4 8.95 8.93 8.56 1.98 11.1 4.52 9.01 7.47 6.55 9.99 11.3 8.27 10.2 7.09 2.79 10.4 3.98 0.41 9.14 9.85 2.85 11.3 12.1 9.83 9.66 7.29 12.3 10.2 12.2 11.1 7.26 9.75 6.03 6.53 11.8 9.86 2.3 11.1 7.07 10.7 9.27 12.6 10.5 12.5 11.2 4.35 7.94 8.69 1.21 11.2 10.8 10.3 9.53 7.88 10.5 7.63 8.86 0.41 10.1 7.95 6.86 3.72 7.08 6.42 9.26 8.49 0.47 3.35 7.64 10 4.04 8.25 7.22 11.1 3.92 7.52 0.73 7.52 7.28 3.79 5.24 9.74 11.4 5.12 0.73 6.93 12.1 5.37 0 9.2 3.53 4.44 0 0.73 7.66 2.85 7.7 7.36 9.64 6.97 5.59 6.01 9.32 7.85 6.44 9.64 7.95 8.18 8.4 9.21 2.72 8.48 4.88 6.28 9.08 6.91 7.42 6.47 6.61 8.88 1.57 5.66 5.5 6.92 8.91 10.4 0.41 9.16 8.58 5.93 4.37 9.34 9.93 8.43 8.17 10.1 10.8 7.71 9.24 9.5 4.04 11.6 1.57 10.7 6.63 8.94 12.8 8.42 8.26 6.8 11 9.17 9.31 7.7 7.33 8.4 11.7 6.26 0 9.48 8.96 8.51 5.67 2.4 6.53 7.41 5.91 8.87 10.5 8.78 3.25 4.92 8.21 7.32 10.3 12.4 5.9 0.73 2.3 8.89 7.67 6.39 7.32 7.47 7.87 9.53 9.48 8.56 10.1 8.87 6.67 7.95 0.73 0.41 9.33 7.02 5.75 8.31 8.02 3.52 9.91 8.95 0.41 6.25 7.95 8.28 1.57 11.8 9.78 3.04 6.11 6.52 4.17 3.6 7.83 7.04 10.7 10.1 4.62 8.55 7.91 9.86 8.3 10.2 8.22 10.4 11.3 3.25 7.58 3.23 8.91 7.77 10.3 9.42 9.39 9.74 4.7 9.37 6.09 5.64 2.79 5.16 1.21 8.43 4.3 6.09 1.57 4.7 0 9.96 0.99 0 10.5 9.99 5.98 8.91 8.27 0.73 5.09 6.43 6.9 9.38 10.6 2.64 7.73 8.84 7.25 7.42 8.61 8.74 10.7 4.41 9.92 9.72 9.59 5.09 9.91 5.52 1.57 3.35 8.71 8.71 5.45 10.8 3.48 8.91 6.69 12.1 10 10.1 2.3 4.73 6.7 9.69 10.5 7.06 9.11 12.1 3.85 7.51 11.2 5.2 7.22 8.47 6.53 9.16 0.41 5.74 1.21 7.03 0 7.93 8.94 6.32 6.71 7.6 11.1 4.78 2.92 0.41 7.38 7.51 9.4 6.4 8.68 7.04 8.08 8.94 3.68 7.06 9.49 12.9 12.7 6.61 0.73 5 9.34 7.08 0 10.3 11.2 9.05 8.77 9.98 4.56 7.41 8.78 9.53 12.1 4.12 11.2 6.78 6.34 8.22 7.99 10.6 2.98 6.65 5.49 8.33 9.56 10.8 3.15 8.01 11 3.75 0.73 7.42 11 9.87 8.01 8.78 3.52 7.31 14.4 0 9.43 8.56 4.66 2.64 8 9.53 5.67 8.21 10.3 2.85 0.99 3.44 2.1 3.98 5.55 5.28 5.47 6.41 9.44 8.02 5.23 6.26 7.98 7.01 6.21 10.7 9.58 9.21 3.04 8.56 8.49 8.75 9.18 6.84 9.81 12.8 1.72 7.88 11 10.6 1.4 7.98 6.05 7.39 8.45 4.87 7.52 5.97 4.55 2.2 5.04 10 4.58 3.09 8.01 5.29 5.11 9.09 10.5 0.99 7.96 0 10.6 3.09 7.1 6.88 6.23 3.75 8.81 7.35 8.82 10.6 0.99 9.06 8.71 5.97 2.48 8.2 8.53 9.28 11.2 11.1 4.06 7.76 9.35 9.62 11.1 11.2 3.2 1.86 10.2 9.46 7.63 6.74 1.72 8.16 10.4 10.3 6.04 3.64 0 5.29 3.04 7.57 7.95 10.1 9.18 8.69 9.37 6.96 5.16 10.4 9.47 9.55 9.52 8.86 5.11 6.15 12.8 8.58 8.56 3.09 8.95 2.57 7.24 5.49 0.41 8.45 1.21 6.31 9.72 1.21 9.11 8.12 4.5 5.6 6.82 8.04 5.31 7.8 6.06 7.55 7.12 4.9 8.55 0.73 1.98 7.58 5.97 2.79 0 5.17 6.51 7.24 9.52 8.34 7.12 0.99 9.6 9.05 5.95 9.84 10.7 5.21 6.53 7.23 8.53 7.48 9.67 7.54 7.74 11.4 7.3 1.21 11.7 8.34 4.54 2.48 6.62 7.4 11.2 8.51 7.09 8.33 6.72 0.99 8.05 1.57 1.21 0 8.79 2.48 7.84 0.41 3.92 4.93 9.82 8.48 8.7 0.41 0.73 9 9.66 5.02 7.7 10.3 0 0 8.3 3.72 7.95 1.57 7.99 17.6 6.91 8.62 6.06 17.7 10.5 1.86 1.86 7.83 10.7 6.86 10.7 6.41 9.26 8.15 17.8 6.53 5.76 12.8 1.86 7.63 4.25 8.91 12.2 8.52 9.37 4.46 9.36 7 6.67 9.09 12.4 6.27 7.91 7.3 1.98 0.99 5.83 3.3 2.98 10.6 11.4 6.48 9.13 1.72 6.01 12 9.37 14.1 9.41 9.43 14.6 4.42 7.6 14.3 8.66 14.2 8.75 3.56 15.3 8.88 9.42 8.33 7.67 10.7 0.99 7.59 8.38 11.8 7.17 10.5 8.8 9.17 7.46 5.6 6.64 0.73 7.84 7.63 7.14 4.52 0.41 13.5 6.11 11.5 14.4 5.98 6.04 0.73 6 14.8 7.61 6.27 4.23 4.8 5.15 10.4 8.85 1.98 7.53 3.68 6.34 7.46 11.3 6.27 8.29 11.1 3.35 5.63 3.35 3.68 8.88 6.61 9.69 6.68 9.07 3.82 3.39 0.41 1.21 8.07 0.41 12.1 8.65 0.99 10.6 13.5 8.2 2.3 8.72 12.1 0 7.1 9.78 6.67 10.2 8.38 8 0 10.6 7.82 0 9.68 4.95 0.41 8.25 9.16 7.04 7.92 5.24 8.72 0 0.56 7.81 10.1 7.59 7.77 2.1 4.88 0.64 7.43 8.58 6.74 10.9 9.31 8.65 9.85 6.48 10.3 0.73 8.2 4.37 5.85 7.83 3.64 6.46 7.52 1.21 11.3 2.3 7.63 11.4 9.79 11 9.89 0.73 4.54 9.51 8.65 11.2 9.45 9.12 12.1 10.8 7.36 9.34 0.41 7.95 8.46 5.4 10.1 4.56 8.97 14.9 9.54 2.57 6.38 10.6 6.15 6.81 10.8 5.33 10.4 9.12 9.31 12.1 10.3 8.47 10 2.51 6.11 8.16 9.44 3.35 7.92 2.72 9.81 0 10.3 14 0 6.97 2.4 5.54 7.53 0.41 12.6 0.41 0 11 2.2 4.66 11.1 10.1 10.8 8.05 8.05 4.59 5.51 4.28 8.29 5.51 5.25 7.91 10.7 9.01 7.5 9.23 9.34 9.04 2.92 3.09 6.65 9.28 0 4.66 10.4 5.4 0.73 10.6 1.72 3.09 5.25 7.75 8.35 14.7 6.95 0 7.22 11 7.27 5.29 5.21 10.2 9.47 6.87 5.95 11.8 8.28 0 11 11.1 8.48 6.62 9.88 7.35 1.4 8.13 4.78 7.81 8.07 13.4 12.3 5.6 1.4 2.72 10.2 7.93 6.62 11.5 11.1 7.05 7.05 2.2 9.06 8.86 9.81 4.44 9.14 8.93 6.06 6.09 4.48 12.9 1.57 2.2 10.6 11.5 5.31 1.21 8.07 6.3 2.3 0.99 10.6 3.42 3.54 5.02 9.08 6.59 5.23 5.08 6.39 8.79 2.81 5.23 11.4 6.26 9.82 8.21 1.57 10.3 9.59 0.41 10.8 8.96 4.14 7.37 8.26 7.28 4.96 2.1 9.29 4.3 11.4 2.2 10.2 1.57 7.1 8.04 2.1 0.41 13 6.15 6.36 2.1 2.4 3.25 0.41 3.75 2.3 7.36 8.54 0.73 9.66 10.7 11.8 11.8 9.25 10.5 10.6 8.69 3.09 11.2 11.4 11.2 8.63 9.68 8.48 1.98 4.99 8.08 7.76 3.6 6.53 5.94 7.57 9.05 10.6 6.13 6.96 6.26 0 8.57 8.02 9.15 10.4 9.41 5.78 9.17 2.72 2.64 7.66 8.37 4.68 6.22 11.9 8.03 6.86 8.46 5.86 0.99 0.41 5.05 2.64 9.37 9.71 1.98 4.07 8.13 5.44 9.37 3.68 7.59 10.9 11.3 8.85 7.79 12.9 1.57 1.21 8.24 12 6.5 8 10.1 7.94 1.72 8.79 7.36 9.12 0.73 6.32 8.18 7.29 10.4 11 6.67 4.71 4.93 6.38 5.5 6.83 6.77 3.3 8.1 0 0.99 10.9 9.64 8.23 8.13 4.44 2.98 9.04 14.1 1.4 0.73 11.2 0.73 5.3 1.86 9.85 1.57 8.69 4.85 7.37 8.75 1.4 12.1 8.81 7.82 4.6 2.57 5.98 7.5 7.66 10.8 8.05 6.08 0.73 4.39 0.41 6.46 9.09 0.99 1.21 9.74 1.21 0.99 4.25 0.41 7.62 0.99 7.78 4.01 6.57 10.9 5.95 10.5 5.97 8.31 9 6.67 11.5 0.99 6.79 7.87 9.74 10.7 9.92 9.72 2.3 1.98 6.73 2.72 3.85 8.32 4.71 3.75 10.6 5.11 5.19 8.96 1.86 4.92 2.57 6.54 7.43 7.41 1.98 9.99 4.28 7.67 2.48 11.1 8.84 6.57 7.08 6.15 6.21 3.75 0.99 9.82 7.08 8.62 7.51 6.65 8.34 6.01 6.26 7.21 6.81 9.54 8.62 4.28 6.42 8.47 6.53 9.25 4.99 4.5 7.35 7.15 7.24 8.58 5.58 7.42 6.83 7.42 6.59 2.2 7.85 11.5 2.92 10.6 2.63 8.28 1.21 7.17 8.74 4.71 9.04 8.74 7.99 5.08 10.8 3.15 1.57 4.58 10.5 8.8 5.4 1.98 9.54 4.87 8.23 8.06 4.17 11.4 10.8 0.41 8.53 4.78 5.88 4.28 9.01 0 3.48 3.75 8.49 10.3 8.8 8.83 2.35 7.61 7.46 4.2 0.41 13.5 12 3.09 8.05 5.36 5.25 13 9.78 10.4 0.41 8.63 13.2 0 6.91 9.16 0 0 3.04 0 4 2.98 7.81 1.86 0.73 7.56 10.9 7.12 7.03 9.08 0.78 5.72 3.56 9.05 6.5 6.57 7.33 4.25 9.1 6.7 8.82 0.99 7.89 1.4 9.15 7.9 12.5 4.64 9.86 9.43 4.04 2.3 7.3 5.83 13.8 8.7 15.7 8.04 2.48 0 6.13 10.3 7.9 5.31 4.56 3.15 2.2 7.93 7.87 9.01 10.9 4.82 1.57 7.49 3.25 9.08 1.37 12.9 2.57 7.82 5.5 6.06 10.4 0 6.27 3.2 6.1 6.99 4.71 7.99 0.41 7.29 7.41 10.2 11.2 5.02 2.98 4.28 0 4.73 2.48 12 2.3 10.7 8.37 6.22 9.74 6.35 10.8 8.51 9.66 8.89 0.73 4.95 3.82 7.54 1.98 9.97 9.43 6.27 7.36 12.1 4.17 7.41 8.32 9.71 6.71 8.48 7.17 3.04 8.42 6.52 11 8.19 0.99 6.54 0.41 8.76 1.86 7.4 2.92 4.3 11.7 9.25 3.44 5.12 6.08 7.03 2.1 5.3 10.4 8.91 9.26 9.68 11.5 8.28 9.04 12.2 8.76 6.17 8.09 11.9 9.84 6.06 8.7 8.52 4.04 5.02 5.44 11.4 8.36 7.18 4.12 5.26 0.73 9.27 5.12 9.77 9.1 5.64 3.09 6.44 10.5 0.41 5.93 3.04 7.1 8.21 11.8 3.52 0.73 8.03 4.58 0.41 6.44 10.6 0.99 10.6 9.57 3.88 1.21 8.74 4.56 7.08 6.47 7.97 8.37 9.42 0.73 6.55 4.09 9.07 5.08 4.82 9.87 14.9 4.15 9.81 1.86 1.86 9.37 3.3 0.73 6.18 5.68 5.28 7.35 7.88 8.52 5.89 5.82 0.99 10.3 7.95 9.68 6.39 7.57 2.57 0.99 9.68 4.37 6.29 2.15 4.25 9.59 3.64 9.67 0.73 1.98 4.07 3.52 6.73 5.59 11.5 6.42 0.41 8.74 3.72 7.65 5.04 11.4 4.15 9.85 2.85 6.04 5.86 3.35 8.12 9.55 6.88 6.27 5.57 7.52 8.73 0 8.66 6.42 2.2 0.41 3.3 0 4.09 6.59 7.71 5.95 11.8 8.27 9.48 3.89 10.6 5.53 0 7.2 6.24 6.88 10.7 4.98 2.57 11 10.7 0.99 10.4 3.25 6.14 0.73 1.4 11.2 5.38 5.33 1.21 11.5 10.3 0 9.62 12.6 6.33 9 5.51 9.15 2.85 8.1 7.36 8.49 8.45 10.4 11.3 5.31 6.74 5.81 7.67 7.5 0.41 4.85 10.9 9.46 6.58 8.25 4.75 3.72 11.7 0.99 7.21 10.3 0.73 2.1 9.15 1.57 6.35 8 5.56 5.35 10.9 13 1.57 11.6 7.81 6 10.2 5.64 11.6 6.89 1.86 10.2 1.19 0.41 1.57 10.5 4.9 5.54 10.8 8.78 9.2 7.4 5.43 7.46 9.21 6.3 6.02 5.24 9.15 6.54 0.73 12.6 6.44 8.39 8.04 6.72 7.16 2.85 6.95 7.1 4.37 8 7.62 3.6 4.25 8.14 9.72 3.3 7.28 6.54 4.37 8.61 2.92 14.7 9.02 10.5 10.2 9.7 1.21 5.75 9.11 1.98 8.91 6.51 10.3 11.1 12 11.2 0.41 8.87 0.41 12.6 4.9 8.38 1.57 2.48 0 6.59 0 7.08 3.52 8.87 2.57 2.4 8.08 11.5 8.03 14.5 11.2 4.9 1.98 2.2 0.99 8.92 7.56 11.4 7.83 12.8 13.7 2.48 6.43 12.2 2.48 8.04 10.4 0.41 10.9 2.98 7.8 12.2 12.7 1.98 9.61 8.41 10.9 1.21 7.68 7.4 11.8 10.6 6.04 9.42 8.47 6.47 8.28 1.98 8.24 10 0.99 10.5 0.41 10.6 3.92 4.84 0.73 4.46 7.41 6.65 8.01 2.4 7.7 5.91 6.85 7.79 8.44 2.2 9.39 7.69 3.68 3.04 6.53 9.07 2.85 2.79 6.83 8.93 8.15 8.04 6 3.04 0.99 9.32 8.73 7.9 4.73 5.99 8.73 6.09 1.57 0.73 2.3 8.31 0.73 1.72 8.37 8.19 6.28 10.2 5.23 0.99 10.1 6.29 6.75 9.15 4.52 4.12 9.92 8.93 7.2 9.01 4.28 10.1 4.7 10.8 9.84 2.57 8.54 2.4 8.14 11.5 4.88 11.7 0 10.3 8.09 8.91 9.92 14.7 8.47 7.04 6.48 9.85 11.3 9.63 11.9 7.36 5.4 7.51 9.38 10.2 10.2 10.9 10.9 5.44 10.4 8.85 10.8 1.72 0 6.09 4.09 8.79 6.43 7.04 7.92 5.74 9.05 8.33 6.66 3.2 1.21 3.56 2.4 7.31 8.57 3.39 1.86 10.4 12.8 8.96 4.17 11 11.1 10.7 10.1 5.8 9.37 5.45 11.7 7.39 3.2 9.02 7.77 9.9 10.6 4.28 9.34 8.14 7.25 9.26 9.62 12.6 0 9.67 1.86 0 9.05 10.2 6.58 3.98 11.4 8.52 9.54 11.9 12.6 11.6 13.7 9.78 5.61 8.69 6.13 6.25 8.22 9.98 8.67 5.25 11.6 8.23 8.44 10.1 8.31 5.36 7.43 0.99 9.3 8.31 9.41 11.1 10.6 9.88 7.64 9.05 5.83 8.58 8.82 8.08 8.55 8.71 7.12 4.98 11.7 0 9.56 10.5 10.8 12.8 9.62 4.73 8.77 7.47 9.74 12.1 7.8 9.63 11.7 6.45 8.98 10.2 16.2 0.41 11.9 8.73 9.68 6.39 7.37 8.67 11.9 13.2 12.9 15.1 10.8 11.2 8.48 8.21 7.07 8.01 8.08 5.35 6.38 10.2 9.66 8.07 10.1 10.4 6.69 9.31 7.27 6.43 6.33 8.51 5.58 7.04 8.19 9.14 0 6.95 6.46 6.14 8.02 5.17 7.17 10.1 9.73 0.73 10.5 9.25 9.77 10.9 3.56 8.55 11.6 10.4 3.42 10.4 9.14 6.35 3.91 12.4 5.29 5.71 6.69 4.88 2.2 3.92 0.46 10.5 1.98 4.73 6.17 7.74 7.05 13.6 6.19 7.49 9.27 5.39 6.22 11.1 12.4 8.73 13.3 9.53 7.94 12 12.8 14.5 12.4 12.2 2.48 7.01 0.73 10.3 5.52 5.59 10.7 0 0.99 1.72 8.85 1.72 11 7.56 0 2.48 8.34 7.04 6.47 8.16 0.41 9.99 2.2 7.52 7.37 11.3 7.4 9 7.04 12.2 10.4 8.43 0 1.86 8.67 9.75 4.92 8.32 10.7 9.61 2.64 0.41 1.4 11.2 10.3 3.02 8.98 8.23 0.73 8.32 1.23 6.02 1.72 8.72 0.73 0.73 2.92 9.36 8.24 5.23 6.37 9.75 10.2 7.98 6.61 10.3 6.91 1.86 4.32 8 8.13 7.57 8.22 8.42 9.62 5.91 9.5 8.44 8.59 9.27 10.4 6.28 7.59 4.07 9.2 7.09 8.55 4.09 12.2 8.83 5.32 8.86 8.54 13.6 7.73 9.38 8.46 4.52 12.1 0.99 8.09 5.55 9.82 3.04 7.35 7.68 9.21 12.2 2.4 1.57 9.87 9.51 4.5 0 12.2 7.14 0.41 4.95 8.11 5.78 10.9 9.85 8.98 8.02 12.7 10.1 6.72 5.31 7.04 6.41 6.3 10.8 10.4 3.09 12.8 5.57 10.1 2.98 0.41 0.41 10.9 5.48 7.13 7.93 13.8 9.12 8.92 11.2 6.99 8.56 13.2 8.53 2.72 4.32 0.99 10.2 8 6.16 8.09 8.09 7.74 8.11 11.6 10.5 11.4 9.44 9.48 6.07 7.39 9.58 12 9.63 6.42 5.39 10.3 12.7 9.33 9.86 0 6.9 4.17 6.53 0 10.2 9.96 4.7 6.75 10.7 3.72 11.8 6.76 9.05 8.4 8.36 7.24 8.76 9.55 2.48 6.01 9.96 13 9.99 10.6 9.37 2.92 8.85 13.4 3.35 2.1 13.3 9.29 8.36 0 11.1 5.05 8.66 10.4 9.82 10.2 8.55 9.31 7.85 10.8 10.7 7.57 10.7 11 13.9 11.8 10.8 1.86 8.86 0 12.1 9.29 8.89 9.65 9.31 10.4 9.48 8.09 2.92 8.89 4.44 7.98 0 10.3 10.2 7.31 7.64 7.2 9.87 2.57 11.5 8.71 10.8 5.05 8.19 9.61 1.57 6.81 10.6 7.41 10.4 7.4 0 10 7.55 8.27 8.25 9.31 3.48 9.52 8.69 3.92 7.18 7.7 12.2 8 9.63 0 9.8 7.36 5.37 5.75 7.94 8.16 6.13 1.21 9.69 11.9 8.92 12.2 7.82 12.3 4.09 8.97 8.07 10.2 12 8.55 7.91 9.95 8.49 6.52 5.63 14.3 9.64 10.7 3.82 3.85 7.74 2.79 7.74 9.93 2.57 12.6 11.8 5.36 7.74 9.63 8.39 10.8 6.72 4.92 8.07 8.53 7.2 8.93 11.4 8.46 8.52 7.44 3.48 7.81 10.1 8.74 7.52 13.9 2.2 9.63 3.68 6.67 7.77 8.95 4.95 2.57 3.85 5.69 5.55 5.32 11.6 0 9.76 11 8.43 4.64 4.04 1.4 1.4 7.74 4.62 5.37 5.04 8.14 6.6 0.41 0.41 5.53 7.65 6.65 4.37 5.29 7.83 4.87 12.2 7.27 9.13 5.98 4.35 10 11 1.21 7.26 7.9 8.01 5.41 11.7 7.53 7.01 6.07 10.2 9.85 8.09 1.72 9.13 7.79 10.1 6.42 8.1 7.34 6.29 9.04 10 2.57 0 1.21 6.64 4.9 8.97 6.11 2.99 5.08 5.68 11.6 2.64 9.13 10 4.93 9.14 7.35 7.11 6 9.54 1.98 3.09 10.2 8.08 1.21 7.67 8.14 8.06 9.61 0.41 9.29 2.3 7.79 2.92 7.05 2.48 9.05 7.8 9.61 8.4 9.78 4.99 7.82 9.76 7.7 10.4 8.83 6.35 9.44 11 6.71 7.72 7.31 3.95 8.98 7.37 2.59 4.88 11.5 9.42 0.41 2.2 2.4 1.72 0.73 6.56 11 2.57 6.43 4.92 2.48 5.9 4.68 7.28 3.95 5.76 12.7 8.19 9.78 7.09 7.68 9.55 8.9 8.66 12.3 6.78 8.04 7.46 5.08 2.98 0.99 6.98 1.86 5.48 0.73 3.3 7.27 14.9 10.6 4.12 0.73 6.37 3.15 6.1 11.8 5.08 9.8 10.3 8.01 12.2 10.5 12 6 11.8 6.98 11.8 0 12 2.3 5.58 8.45 9.35 4.78 12.1 2.2 11.8 8.83 8.5 8.05 7.71 10.2 11.9 10.6 2.92 8.59 11.2 8.52 12.7 11.7 10.6 10.5 8.72 4.43 0.73 9.3 9.84 9.43 10.9 7.3 9.52 7.63 9.25 1.21 9.89 10.7 10.8 9.32 7 11 8.97 10.6 0.99 9.63 8.6 10.3 10.5 1.4 12.3 7.71 12.5 9.66 9.76 9.55 10.7 8.54 13.5 10.7 7.57 9.16 11.6 9.3 10.2 9.91 8.39 10.6 10.8 10.1 6.63 9.49 10.5 0.73 8.94 8.2 7.16 2.2 8.68 10 9.26 9.34 10 10.1 10.9 10.7 10.1 9.82 8.18 10.8 4.28 5.77 11.4 5.89 10.4 12.2 11.1 9.25 8.84 8.78 11.8 7.6 12.2 9.58 10.9 11.8 6.11 9.17 8.52 11.9 10.7 10.6 8.79 7.79 12.8 8.37 9.8 2.92 9.13 9.15 5.74 2.57 3.44 9.45 8.82 7.97 9.5 8.73 2.72 10.1 8.37 9.87 2.2 10.3 11.6 0.41 0.73 2.98 10 11.7 11 7.6 6.44 10.9 8.92 12.1 10.6 5.61 11.2 9.72 9 2.1 10 0 9.8 9.87 10.6 10.3 9.36 9.36 11.6 4.37 12.5 12.6 10.2 9.59 3.04 3.09 10.1 10.7 9.91 8.52 9.94 9.67 8.03 8.18 10.6 7.71 9.46 10.3 10.2 12.5 9.66 5.72 11.1 10.3 12.4 8.3 11 11.3 10.2 11.1 4.37 9.6 3.44 10.3 12 11.2 10.9 11.1 9.78 5.93 9.52 10.2 9.86 2.92 10.3 11.5 10.1 11.7 11.1 8.79 8.65 9.19 10.1 10.8 8.82 8.27 6.77 11.3 7.33 11.4 6.93 9.05 10.3 10 9.7 9.78 6.67 8.83 8.35 9.91 0.73 10.4 8.58 11.5 9.67 1.21 10.6 10.4 9.8 12.4 9.62 8.84 11.9 6.67 3.84 0.73 10.3 9.56 12.3 2.98 12.3 7.78 9.1 10.7 7.72 10.2 9.32 8.35 9.71 10.6 10.2 10.8 10.5 10.8 10.2 9.18 9.16 5.54 5.3 2.72 2.3 9.88 9.52 10.3 9.19 8.93 9.41 12.5 13.5 10 10 9.76 9.55 10.7 10.3 8.57 11.1 10.8 9.81 13.6 9.97 10.2 9.46 9.93 9.75 8.8 11 9.38 7.84 8.12 7.64 9.06 9.46 10.8 10.5 9.52 10.7 9.87 11.4 12.2 11.7 8.99 12.9 8.74 10.4 13.2 11.9 11.4 11.3 10.5 8.56 9.68 13.1 1.4 9.39 7.61 4.87 9.45 8.91 10 9.81 13 11.4 13.2 11 0 10.6 11.7 1.57 10.3 9.64 9.59 10.6 11 6.59 9.36 4.75 9.83 6.45 9.28 7.87 9.23 9.25 6.04 1.21 9.33 6.82 9.23 9.7 5.49 10.2 11.9 10.5 8.58 10.1 11.9 9.14 5.55 7.24 10.7 9.16 7.28 10.2 10.9 9.09 6.96 7.8 10.7 9.61 11.2 11.8 8.71 6.98 9.73 6.47 10.5 11.8 11.7 10.1 9.1 9.07 10.2 10.3 4.8 1.4 10.6 2.57 7.02 10.2 7.52 9.77 8.35 11.1 10.4 9.63 10.6 9.74 10.8 10.3 9.83 4.15 11 10.4 5.84 9.07 10.4 6.5 9.81 13.1 9.72 9.69 10.4 7.53 9.11 0.73 11.1 7.53 10 9.13 7.76 11.2 10.2 12.8 10.9 8.32 9.73 10.2 9.67 8.82 9.67 7.9 10.8 11.1 4.09 9.46 11 10.3 9.55 10.6 0.99 18 11.1 11.3 11.4 10.8 7.79 10.1 9.57 10.5 6.59 10.1 10.7 7.99 10.1 12.6 7.77 13.2 9.03 12.3 9.43 10.8 7.84 10.7 8.18 11 11.4 11.9 8.73 10.5 11.1 12.2 10.9 8.22 12 9.59 9.28 11.5 12.3 9.29 9.71 7.17 9.21 10.5 8.77 8.39 8.41 9.13 11.3 9.38 8.41 3.09 9.67 9.53 10.1 8.24 7.79 0.73 1.4 7.46 0.41 9.13 12.3 7.09 11.2 9.19 6.29 12 10.4 5.98 8.95 5.93 10.7 11.7 10.5 8.45 12 11.2 13 10.8 9.69 8.53 6.08 6.53 8.43 6.7 10.1 7.93 7.54 6.97 12.3 11.4 12.8 10.2 8.48 10.9 10.4 10.9 10.3 3.3 9.48 10.3 8.02 9.77 3.98 9.56 6.18 0.41 4.28 12.1 4.44 11.1 10.1 2.57 11.2 9.84 8.99 9.4 11.7 10.4 10.1 11.3 10.6 8.9 9.95 10.1 11.3 9.99 0 2.64 13.2 10.4 10.7 13.9 8.68 10.5 11.9 5.26 7.79 10.8 7.48 12.7 6.52 10.2 8.68 0.73 4.12 10 8.53 11.2 5.91 9.46 2.1 2.57 8.18 10.2 11.4 10.7 8.5 7.86 6.62 11 10.1 10.4 11.5 10.7 9.25 10.4 2.64 2.1 9.93 0.73 8.35 10.1 0 5.04 9.95 0.41 11.7 9.71 9.24 0.73 10.9 10.1 9.18 9.87 10.4 7.92 5.92 9.3 10.6 4.9 9.81 9.6 7.77 11.3 8.76 7.89 11 8.25 11.3 11.4 9.64 10.4 10.2 1.21 7.36 9.87 10.4 9.01 5.39 0 1.21 4.28 10.7 8.66 10.2 11 6.87 8.39 9.26 8.62 7.13 9.27 8.86 10.8 10.7 7.9 8.17 4.09 12.5 8.04 8.72 8.38 9 9.79 10.1 10.9 8.03 8.03 8.61 13 11.3 7.38 9.13 8.62 11.3 11.8 5.73 7.9 10.5 10.7 10.7 7.44 6.41 8.3 0.73 3.6 8.32 3.35 11.3 9.27 8.25 9.03 10.8 11.5 10.8 1.21 1.86 7.64 7.36 8 7.57 9.3 10.6 9.36 8.53 6.84 10.2 9.19 5.39 7.3 11.9 9.78 0 7.49 0.41 3.49 8.49 5.58 7.38 6.7 9.87 1.4 3.95 2.2 6.55 8.43 5.84 4.6 7.39 6.74 2.57 2.2 5.97 10.1 9.2 8.83 6.34 4.96 5.12 15.4 8.18 10.8 0 13.9 9.4 10 12.4 6.77 5.8 7.63 6.28 0 3.75 12 7.25 2.25 8.85 8.64 5.01 10.8 0.41 2.57 8.75 10.6 10.7 4.5 7.05 6.98 9.88 7.23 8.39 6.8 10.8 8.07 8.4 9.82 6.93 5.75 10.6 8.02 4.01 9.94 5.65 7.37 12.5 10.4 8.61 0.41 9.19 10.3 9.69 8.28 1.21 6.59 6.38 9.71 4.25 9.11 9.6 0.99 0.73 8.08 0.41 0 9.13 9.93 7.99 6.21 3.48 1.4 8.5 7.66 7.01 6.97 10.8 8.48 4.25 7.47 12.7 0.41 4.8 11.2 7.76 9.09 7.88 10 9.01 9.73 6.14 3.44 4.66 0.41 5.68 9.84 8.32 3.39 3.98 2.1 8.32 1.57 8.78 4.46 7.01 6.76 0 9.7 1.4 8.83 6.13 3.25 14.5 6.34 6.47 2.3 6.61 7.91 7.38 9.62 6.29 6.64 3.35 3.48 6.23 7.74 5.21 7.94 4.98 5.25 2.3 9.02 9.15 1.86 4.23 4.7 8.84 0.99 8.45 8.79 0.73 5.28 4.37 1.86 0.41 0 4.42 0.41 9.62 3.35 1.4 6.97 4.28 3.95 2.79 1.86 2.4 8.24 3.56 9 5.5 5.87 8.37 1.86 8.75 6.61 0.41 0.73 1.21 10.6 9.53 2.48 6.24 8.43 8.47 10.3 8.95 7.99 0 8.79 10.7 10.7 7.33 11.7 5.52 2.57 6.68 5.85 7.08 10.2 11 4.48 9.02 6.26 9.7 7.55 10.5 16.8 8.16 8.33 8.46 11.6 10.2 4.84 7.26 7.58 9.19 0.41 10.1 11.7 6.5 6.18 8.44 9.18 10.6 8.57 7.03 5.29 11 8.56 8.01 10.4 10.1 5.98 3.72 11.7 10.1 6.71 11.7 8.83 9.29 8.03 9.27 8.25 8.89 10 11 8.76 10.1 7.47 8.21 6.05 7.59 9.49 10.6 4.8 9.61 0 8.79 4.04 7.6 9.77 11.5 10.1 12.2 10.8 9.68 4.96 13.7 10.8 7.6 9.06 9.64 6.78 8.35 12.4 7.97 6.58 7.06 7.8 10.4 10.3 8.9 0 11.9 7.21 9.41 7.4 11.6 9.43 8.12 7.45 11.9 4.2 7.64 13.7 9.79 7.46 9.42 10.5 7.58 0.73 7.19 9.74 11.4 0 7.95 9.27 9.87 2.57 7.8 8.97 11.4 8.68 7.19 0 11 2.1 10.3 1.57 1.21 3.72 9.36 9.94 4.73 12.4 8.25 10.3 8.94 9.56 9.39 10.3 9.71 11.3 9 5.41 10.9 9.96 9.53 7.67 7.2 8.61 4.87 10.6 10.8 9.53 6.27 11.4 11.8 8.83 15.1 9.52 9.88 7.06 7.28 9.02 10.5 10.4 8.86 10.5 6.44 8.97 9.25 10.8 7.99 9.22 10.5 11.3 9.3 11.2 8.86 2.1 10.9 11 7.65 11.1 9.8 10.1 9.63 10.5 8.98 9.37 7.03 9.1 10.4 11.9 10.2 11.5 8.58 8.55 6.42 6.2 10.1 6.74 9.1 7.58 7.47 9.16 3.72 10.4 9.55 10.4 0.73 9.09 9.4 9.87 9.08 2.57 10.5 7.66 8.71 6.84 8.14 6.53 5.78 10.6 11.1 10.2 11.3 11.8 10.8 8.6 8.78 11.1 11.6 9.02 12.2 4.37 9.08 7.62 9.96 11.6 10.1 12.1 8.39 8.87 0.41 11.6 8.61 10.8 10 4.04 7.72 11.5 11 8.74 9.57 9.25 10.3 8.84 10.2 11 11.2 11.7 8.85 3.89 8.93 8.61 9.81 8.88 6.21 9.74 5.36 9.53 9.34 5.12 10.9 9.49 13.2 6.4 9.22 9.02 4.44 9.71 10.8 10.8 9.35 10.1 7.33 8.49 10.8 9.46 11.6 4.88 10.2 2.92 9.16 3.56 6.39 10.5 1.86 9.05 3.79 11.9 9.65 7.11 1.98 8.56 1.21 6.95 4.99 7.27 8.38 11.5 8.55 8.5 8.27 7.44 13.2 0.41 1.86 0 3.95 10.6 9.28 8.37 3.16 9.91 9.51 0.99 7.62 11.2 8.56 3.98 7.33 7.1 8.52 10.2 9.25 7.77 9.99 8.36 1.4 10.2 11.2 8.81 8.27 11.8 0 9.01 7.55 9.85 5.72 10.7 9.14 8.97 0.73 10.2 6 11.2 9.95 8.57 1.98 8.78 6.51 5.32 10.3 9.44 5.13 12.3 9.59 10.5 1.86 5.8 6.84 9.14 9.62 10.9 9.65 0.99 8.29 12.3 8.18 6.83 10.2 10.1 9.48 8.69 9.11 9.17 9.45 9.32 9.88 2.79 1.4 0.44 10.7 3.2 2.46 6.09 9.41 3.15 10.3 10.1 9.27 8.86 1.72 10.1 4.5 7.98 3.68 11.5 12.6 9.57 0.73 7.34 1.04 7.01 8.9 8.71 10.9 1.4 7.24 6.28 0.99 9.29 2.85 11.1 8.38 8.02 2.2 9.89 10.5 0.73 0 9.49 8.27 3.6 2.98 5.84 0.41 12.6 8.77 8.59 7.02 9.2 0.73 9.41 10.4 8.28 11.4 4.04 10 11.6 9.4 4.48 8.51 10.8 14.7 9.17 10.1 9.75 9.98 12.2 11.1 0.41 2.48 9.5 1.4 9.99 6.93 6.07 9.88 11 9.49 11.2 9.11 8.4 11.5 1.4 9.16 0.99 4.04 9.22 4.14 10.9 10.6 11.6 11.2 0.41 1.98 10.9 10.7 12.2 0.41 6.74 10.8 4.77 11.7 9.75 7.34 7.55 6.92 10.8 2.4 10.8 0.73 9.41 13 6.68 9.6 9.82 6.77 0.99 9.03 8.13 11.9 12.3 8.84 9.93 7.16 2.98 7.59 7.36 6.73 10.5 6.61 10.4 12.5 4.12 6.8 5.33 5.24 8.31 11.1 6.95 9.8 7.43 7.39 6.1 1.91 6.14 9.53 7.06 7.21 7.96 10.8 0.41 8.64 0 8.23 8.95 6.8 10.6 8.06 12.3 9.74 4.46 4.62 9.71 6.16 0 5.64 0 1.72 4.95 8.7 10.3 7.09 8.65 11.5 1.4 3.64 6.87 10.7 7.64 8.84 7.19 2.72 8.04 10.3 11.3 8.89 8.87 10.1 9.35 11.1 10.8 12.7 9.82 7.51 4.46 8.49 9.46 0.41 1.21 9.23 3.25 8.3 11 8.79 8.93 7.88 3.44 10.3 2.4 6.81 7.99 9.17 9.17 5.43 9.07 5.02 9.2 3.75 9.86 8.87 11.9 4.01 11.4 10.2 11.9 9.68 2.4 11.1 11.1 7.06 12 11.6 10.3 8.93 9.9 8.97 0.99 6.62 11.1 9.19 9.27 8.17 2.64 5.88 8.21 9.57 6.06 11.8 7.21 12.1 8.19 9.27 6.18 10.9 7.33 8.57 9.96 3.48 10.3 8.96 7.7 8.9 11.4 12.9 9.95 5.42 14.4 1.4 11.4 7.93 10.8 6.98 8.75 10 7.7 6.55 12.2 10.4 5.13 2.3 9.81 14.8 1.57 6.6 12 11.2 4.55 1.72 4.01 9.88 6.5 0.73 9.81 8.32 3.15 9.86 3.52 1.57 12.5 1.98 6.05 10.1 11.4 11 11.9 12.8 9.48 11.1 9.92 2.2 8.41 2 1.86 10 7.97 11.8 11.7 3.68 5.28 2.1 3.89 9.15 7.2 7.2 1.21 2.72 4.66 3.09 6.67 1.21 9.12 6.19 0.73 4.23 4.82 7.95 9.32 7.83 5.43 7.01 4.2 4.7 4.3 3.04 9.6 10.5 7.37 15.7 11.5 6.23 9.37 8.47 10.1 5.44 9.52 8.98 7.67 6.19 8.35 7.56 7.34 7.49 4.91 8.38 3.95 5.67 3.15 10.2 4.54 7.35 8.37 9.96 0 8.52 5.25 5.04 2.57 3.09 1.21 4.71 4.15 10.5 7.56 7.21 5.16 9.75 6.3 9.67 5.12 0 2.13 0.99 8.43 2.85 6.05 0.73 8.93 0 6.09 0 3.04 9.68 9.52 6.84 4.87 5.01 6.29 3.09 5.4 4.71 8.42 0.99 0 4.28 11.2 5.95 4.35 0.41 3.04 8.98 3.82 9.3 3.44 6.26 9.1 3.75 7.35 8.32 6.88 0.73 3.56 12 8.94 8.28 5.61 1.98 9.26 6.85 0.73 2.64 9.65 3.68 7.13 4.3 7.76 6.98 10.7 3.48 3.92 0 2.72 7.67 8.33 0 0.99 3.64 10.3 2.64 0 7.55 12.4 9.11 6.91 8.15 8.56 4.25 1.57 5.04 3.25 8.39 4.9 7.92 7.05 0.41 9.96 2.48 10.2 0.73 4.82 4.44 8.22 8.6 7.88 5.96 7.13 4.93 6.38 6.19 2.4 3.04 10.9 2.98 7.51 7.32 6.25 8.17 1.21 6.21 7.2 1.4 0 0.41 1.21 2.79 7.46 6.95 6.83 7.96 9.53 0.99 0.99 0.41 9.8 0 3.56 3.48 10.6 3.64 8.16 4.68 6.46 6.05 7.02 6.49 8.72 3.6 1.4 2.64 3.04 2.48 7.03 5.38 2.57 5.23 0 8.71 0.99 2.48 3.04 6.53 1.72 6.68 2.48 10.5 8.17 2.72 0.73 1.4 4.47 0.41 7.79 9.39 8.19 5.59 9.49 3.85 9.08 0.41 2.79 7.75 7.05 5.72 5.02 8.13 9.08 0.73 7.04 9.85 9.33 4.62 6.25 8.81 0.73 8.81 3.89 6.06 10.8 8.5 9.52 9.54 5.53 6.22 0.73 3.25 9.67 1.4 7.71 6.24 2.64 3.73 10.3 9.05 10.4 2.64 8.43 1.21 11.4 1.86 0 4.56 6.99 8 6.77 10.9 1.4 5.98 9.63 4.68 5.82 9.63 7.21 5.04 8.89 0 3.81 1.4 10.4 3.08 3.92 6.96 1.98 3.3 7.71 0.41 4.93 6.96 5.66 5.75 5.91 2.2 0.73 3.64 4.84 2.79 0.99 7.4 8.57 1.72 12.2 3.98 11.1 7.06 4.68 2.98 9.75 3.64 6.92 8.61 10.4 3.82 0.99 7.86 4.93 5.75 3.15 7.37 9.91 8.13 5.52 6.88 10.1 8.51 9.26 1.4 1.86 3.55 5.13 8.36 6.67 6.44 8.13 8.91 7.47 1.98 7.35 8.85 10.1 10.5 9.62 2.79 11 1.4 10.2 11.6 9.02 8.3 12.7 10.3 9.87 0 4.85 9.33 8.56 9.41 10.7 6.93 11.2 9.99 11.8 8.08 9.67 10.8 0.41 7.67 0.41 10.8 0.41 9.52 8.01 11.4 10.8 10.2 9.67 9.8 9.71 8.74 9.38 8.55 9.94 8.85 8.96 10.7 8.18 11.1 7.72 10.1 5.63 9.89 9.68 2.2 10.7 8.25 3.25 4.54 8.41 4.56 8.69 2.64 11 1.98 8.21 11.6 5.36 8.18 8.18 10.3 10.2 13 8.26 9.42 11.2 9.72 7.68 9.81 11.6 8.29 9.31 10 6.74 9.97 9.72 9.11 8.65 8.25 12.6 8.54 2.2 6.44 9.1 6.98 9.71 10.7 8.82 9.21 9.49 8.59 10 10.8 10.7 9.08 8.15 0.73 8.07 9.58 9.32 2.1 10 9.97 9.86 9.71 0 1.86 8.82 2.85 10 2.72 2.64 9.21 7.47 10.2 2.1 1.4 12.1 0.99 0 13.3 10.2 11.2 11.3 10.2 11 11.8 12.7 10.8 9.94 9.65 10.2 9.92 10.4 8.92 5.5 9.23 9.82 7.21 8.4 10.8 8.07 8.95 8.22 8.97 8.87 10.9 8.6 9.72 8.36 8.58 8.14 12 12 11.4 8.66 5.33 11.7 10.4 8.9 8.59 9.35 0.41 10.6 9.24 3.09 8.38 8.61 0.99 8.66 8.97 4.73 11.4 1.98 10.4 0.41 4.87 7.06 6.89 8.23 0.41 10.9 9.71 8.56 0 9.88 3.52 9.16 7.78 0 2.79 11.3 10.6 9.34 1.72 9.06 9.96 8.1 10.3 9.98 9.97 10.7 6.6 10.3 0.73 10.2 8.38 10.1 7.1 6.58 8.17 11 0.99 8.34 2.79 9.49 8.75 8.67 9.11 8.6 9.77 11 9.46 9.02 10.1 8.27 8.94 12.8 8.57 7.81 5.87 4.78 7.31 0.99 10.6 9.64 5.09 2.85 1.21 8.97 9.47 4.52 7.61 8.08 4.9 10.3 9.63 14.7 10.2 4.44 10.9 2.2 9.57 6.82 8.68 10.2 7.98 4.25 8.82 9.73 6.52 10.4 12.1 7.38 9.08 8.42 8.54 3.15 7.75 3.09 9.11 5.31 8.18 9.98 11.3 11.6 7.38 0.43 9.66 1.72 10.7 9.57 9.88 2.64 4.6 9.01 2.72 5.01 0.73 13.8 9.96 10.7 3.39 1.72 0 10.8 4.12 0.99 8.21 11.5 9.64 13.3 12 13.8 10.5 9.95 5.72 12.2 11.1 9.64 0.73 10.6 0.41 6.27 6.94 0.73 11.9 5.16 5.4 0 0 0 2.85 8.85 1.57 10.6 6.81 8.1 5.25 11.4 10.4 10.8 3.85 13.4 13.6 10.6 7.3 7.32 10.5 11.7 10.4 9.28 12.3 6.75 8.02 2.4 9.56 5.63 6.99 5.55 4.71 9.1 4.82 8.22 8.09 4.84 9.99 7.06 6.09 9.9 9.05 10.3 10.4 9.24 10.6 5.97 12.7 6.56 9.97 10.8 11.4 11.8 9.97 10.4 9.11 12.5 11.8 11.5 11.8 3.79 7.19 13.1 13.8 12.6 8.84 8.52 10.9 7.51 3.99 11.5 10.3 0.73 8.92 7.21 9.86 6.4 12.3 10.9 10.3 6.44 5.11 3.25 11.5 9.1 5.53 9.64 2.08 3.52 2.4 9.53 10.5 7.59 8.93 12 9.59 9.49 11.4 11.7 9.3 10.5 10.6 9.25 6.99 7.82 9.01 10.1 7.62 9.04 0.41 10.1 8.79 9.72 9.68 7.15 7.32 1.21 8.16 0.99 9.6 0.41 8.67 12.5 8.24 14 11.7 13.6 11.7 12.3 12.2 11.6 11.2 13.9 0 12.1 14 0 3.2 2.48 8.97 8.03 4.5 3.91 3.68 2.16 5.99 5.31 6.91 5.01 1.72 1.4 6.78 10.7 9.18 6.7 5.92 7.81 8.34 3.52 4.88 9.49 7.33 7.84 12.2 6.21 10.5 3.52 8.25 0.99 4.15 9.4 0 9.8 9.52 0 10.8 2.72 8.02 0.41 5.38 8.7 10.4 8.78 7.71 11.1 3.25 5.7 10.3 10 11.4 8.96 10.6 10.1 4.93 6.86 7 0.41 11.8 10.5 8.36 5.47 6.88 10.9 12.2 14 11.1 7.39 10.6 12.5 13.5 10.6 7.92 5.97 15.4 13.5 12.7 4.88 6.81 15 10.8 15.1 13.2 4.2 10.9 12 8.22 12.4 6.59 2.64 13.1 11.9 9.13 0.99 2.98 0 4.6 0 0.73 3.44 8.18 11.5 4.32 12.2 10.8 3.85 7.32 1.98 0 0.58 10.1 9.04 1.4 4.93 0.41 6.72 7.81 4.6 7.57 1.57 4.01 1.4 5.35 6.73 8.58 9 9.24 5.31 9.38 7.56 3.25 1.57 1.57 6.57 4.1 7.09 10.9 0.73 9.34 7.85 5.48 9.21 8.96 8.88 6.92 11.6 7.97 8.5 9.25 7.29 6.62 6.67 0.73 3.6 6.43 0.41 0.41 7.84 5.48 2.1 2.2 4.54 6.95 1.98 7.65 5.7 1.86 6.68 9.42 5.29 0 7.29 11.6 3.09 2.98 8.32 7.84 4.42 3.39 0.73 1.57 10.7 4.5 3.52 2.48 5.09 9.66 5.52 8.74 1.21 3.04 3.52 3.72 1.4 8.03 0.73 0.99 5.19 3.04 6.51 1.4 8.75 9.11 2.98 2.49 0.41 8.51 7.89 5.53 5.49 6.43 2.79 4.73 7.47 4.68 4.95 6.7 7.51 9.02 8.07 3.64 0.42 2.4 10.2 6 11.1 11.9 9.62 10.7 4.99 9.12 2.4 5.59 6.89 10.4 12.2 0.99 8.73 9.82 0.41 7.71 0 0.41 6.17 7.16 10.3 7.22 9.8 4.8 5.8 4.66 0.73 7.27 2.1 5.57 0 9.65 0.41 4.9 8.19 2.2 9.01 9.73 2.72 2.79 2.4 2.2 0.99 0.99 9.54 7.89 5.99 7.54 0.41 4.3 7.92 7.28 0.73 4.39 1.72 4.07 0.41 2.79 1.57 11 6.06 8.36 3.39 0.99 8.65 10.6 0 3.04 11.1 2.92 10.9 4.42 5.65 0.73 9.55 2.2 2.64 6.47 13.6 1.98 0 7.03 2.57 8.04 1.21 0.41 2.85 8.43 1.72 10.8 1.98 3.2 10.2 11.1 2.48 2.57 6.95 0 9.6 7.91 12.2 6.98 9.77 12.4 4.96 4.09 4.93 9.73 10 0.73 6.67 12 10.2 4.39 9.55 5.16 4.68 1.98 10.4 11 1.21 8.02 14.2 1.21 7.51 17.8 5.52 0 7.33 7.68 3.75 10 12.2 6.26 9.62 6.32 4.54 2.48 2.1 2.32 4.12 5.84 7.78 8.08 13.2 6.29 9.13 6.97 5.02 5.01 9.98 7.52 1.57 7.58 0 0.41 9.68 6.14 2.1 8.24 2.64 7.58 6.48 8.49 1.86 0 0 7.96 11.6 10 1.21 5.21 10.6 7.91 6.29 2.98 2.72 5.93 6.51 5.62 9.64 0.73 2.1 8.48 9.28 12.5 2.4 6.2 3.2 5.44 2.3 10.7 1.21 3.72 3.2 7.28 9.21 3.48 6.76 1.86 0.73 3.25 1.72 11.8 3.1 9.34 12.7 13 7.47 4.9 11.1 6.86 5.74 1.98 8.7 2.72 7.5 10.6 12.7 12.2 0 10.9 6.93 7.01 9.71 12.2 7.99 4.77 7.47 7.18 3.48 8.96 9.89 1.4 7.17 7.73 0.99 9.45 8.21 7.64 7.36 11.3 10.7 4.71 0 10.6 2.64 11.7 8.22 9.07 10.9 9.64 5.74 10.5 9.74 4.88 9.25 8.69 4.25 7.87 11.2 8.08 12 5.88 8.86 11.9 9.45 9.37 0.99 10.8 7.34 11.1 6.46 9.04 5.89 2.3 7.78 9.33 7.24 12.5 6.93 13.6 9.46 9.58 6.45 7.06 10.9 12.3 9.01 6.39 8.52 0 0.41 1.86 11.3 3.64 4.2 12 9.85 11.7 3.52 9.59 11.1 8.07 10.9 11.7 8.23 11.7 8.21 5.57 12.2 9.85 10.2 10.1 10.4 13.3 9.83 8.96 11 9.88 10.7 0 2.98 6.42 1.72 1.72 4.39 0.6 8.57 7.62 8.09 4.9 7.92 9.41 4.35 0.41 7.13 0.41 1.98 7.11 0.99 7.14 3.2 7.22 8.23 8.36 7.7 0 1.98 3.25 7.62 8.48 1.21 6.55 2.4 5.32 10.7 4.57 5.49 7.59 7.9 6.26 5.86 0 6.81 0.41 2.79 8.92 13.5 5.68 7 7.03 11.9 1.57 5.23 7.08 2.92 6.26 2.4 6.59 7.52 8.58 8.19 3.68 3.82 0.73 6.61 7.3 8.04 6.33 5.5 10.4 8.27 5.13 5.78 0 7.21 0 0 3.89 1.57 7.22 6.15 1.21 2.4 10.2 7.55 8.5 0.73 6.81 11 5.4 0.41 6.69 4.84 10.8 6.95 1.21 8.45 0.73 2.79 6.58 8.37 4.04 1.21 8.86 13.1 3.72 3.15 4.58 0.41 9.94 4.32 12.1 4.75 4.56 12.3 1.21 0 4.28 7.78 5.81 1.4 3.89 1.4 7.72 6.24 0.73 7.09 12.2 6.07 10.7 3.85 9.44 1.57 6.95 9.85 8.25 7.44 12.7 11.1 7.75 7.64 0.41 0.41 0 10.6 0 0.41 7.12 1.57 1.21 11.4 3.44 1.57 0.73 0.41 4.2 0 9.62 8.67 7.49 10.1 11.3 13.2 11.8 10.5 6.65 10.9 6.19 11.8 11.8 10.4 1.4 1.21 15.1 9.36 1.21 7.51 5.6 1.98 13.4 7.3 6.08 8.97 0.73 5.46 4.62 3.92 1.98 2.28 10.4 2.85 0.41 5.02 8.76 2.72 6.49 14.5 7.21 9.11 6.29 2.3 2.1 3.09 6.64 8.73 8.99 0.73 0 1.57 4.92 0.73 6.07 0.73 4.12 4.82 3.82 3.64 6.51 0.52 2.64 8.43 1.06 7.04 9.85 6.84 1.21 12.7 0.99 6.6 7.21 1.21 6.55 2.72 4.28 9.56 2.4 6.28 4.3 4.37 2.86 5.06 4.48 5.12 3.68 8.6 10.1 7.87 0.41 12.2 2.64 6.79 8.69 7.57 8.74 5.28 5.8 7.43 0 1.86 5.32 4.96 6.15 0.41 8.05 3.3 10.7 4.2 7.19 9.91 3.39 4.48 5.88 8.95 9.85 0.41 7.48 1.4 4.46 8.16 2.79 8.53 7.67 6.28 2.72 9.58 11.6 7.11 0.73 5.64 0.73 4.2 2.4 8.51 3.82 6.27 0.41 4.3 6.13 0.41 6.54 7.19 6.56 3.85 1.21 13.8 6.93 4.59 9.44 1.86 0.41 1.72 3.75 9.47 4.46 2.2 6.29 3.48 7.88 2.1 5.06 4.09 0.45 7.09 3.89 7.95 0.99 8.88 7.62 2.72 8.12 2.94 3.2 7.56 1.21 2.1 1.21 6.01 0 9.45 4.8 8.21 7.02 8.25 9.31 11.4 6.66 10.5 0.99 12.1 1.4 12.2 3.04 7.87 6.87 11.8 12.3 5.24 2.57 11.7 12.5 11.8 1.4 0.99 3.98 9.81 5.12 13.6 5.01 6.52 6.53 8.33 4.42 4.54 2.79 11.6 7.19 0 13.7 10.7 12.8 9.94 5.25 6.21 7.24 10.1 7.69 12.3 1.72 10.2 13.3 11.9 0.73 11 10.3 11.2 0 6.01 8.77 8.99 0 10.3 8.71 11.2 9.43 11.1 8.7 10.9 5.25 2.98 7.42 12.1 9.34 1.72 6.2 7.26 7.85 8.74 8 11.6 2.85 6.87 4.36 10.9 2.2 4.04 6.29 6.07 12.5 3.52 7.44 5.59 10.4 1.21 2.72 7.83 11.7 11 12.6 8.01 7.71 7.43 9.21 0.41 3.3 5.05 9.19 5.59 10.6 7.18 10.2 1.4 6.84 7.99 1.21 7.83 6.71 1.72 6.99 3.04 0.41 6.17 6.7 1.21 1.4 3.75 2.64 6.62 6.15 9.67 9.31 1.21 2.1 8.41 3.74 5.53 2.98 4.56 7.53 12.2 10 4.66 0.73 5.31 0.41 4.28 1.21 2.1 7.41 11.3 0.99 10 7.3 5.53 3.92 4.41 0 0.73 5.15 3.81 10.1 5.62 5.99 7.4 0.41 9.3 0.73 4.64 6.89 4.64 9.37 8.5 3.92 11.2 11.3 9.6 8.5 8.21 9.91 0 0 2.44 0 5.05 10.4 2.57 6.63 11.2 3.82 2.1 2.3 6.29 8.55 8.58 1.4 8.55 3.85 9.24 0.73 0 9.03 2.64 5.61 9.74 4.62 9.48 0 8.4 8.82 12.9 1.4 8.47 6.36 10 2.6 9.69 9.2 4.71 6.94 2.98 4.95 10.6 2.48 6.56 9.22 8.89 9.71 9.95 9.64 10.4 1.72 11.3 4.28 0.73 9.92 11.2 10.9 10.3 2.2 4.96 0.73 0.73 11.5 8.48 15 12.6 2.98 5.32 8.62 4.35 7.79 3.79 9.85 10.5 8.92 11.1 11.6 13 12.9 0 5.25 4.96 0 9.01 11 11.3 8.93 7.48 10.2 11.3 10.1 10.8 9.02 11 4.8 8.97 3.25 8.79 9.33 3.85 6.92 8.74 9.25 7.76 0.41 0.73 8.32 9.55 10.5 9.4 11.4 9.61 10.4 11.6 12.1 9.96 9.99 10.1 12.6 4.75 11.1 4.93 10.7 10 6.24 0.79 10.6 3.09 3.04 6.36 0.41 4.31 8.54 6.38 1.21 12.6 4.2 0 6.18 9.13 9.95 10.1 7.09 9.13 6.08 12.3 8.79 1.21 9.88 11.3 8.02 8.22 10.1 10.6 6.92 0 13.9 9.09 10.7 9.32 8.81 9.81 10.1 13.9 2.92 6.69 9.65 0.73 11.3 11.6 10.5 10.8 10.8 5.37 9.91 10.2 10.6 10.4 3.15 8.28 11.6 7.67 2.1 6.89 7.01 9.97 11 9.5 10.4 7.96 10.8 9.8 4.64 0.41 8.92 5.72 8.87 10.1 10.3 11.6 9.77 10.4 5.87 6 11.3 9.56 5.19 8.19 9.69 11.1 8.76 11.6 13.4 9.62 11.7 6.51 10.3 11.9 4.58 5.78 11.1 8.18 0.41 9.18 10.1 8.61 9.63 11.4 8.93 10 7.31 7.22 9.66 11.5 10.5 10.9 1.4 2.4 9.61 12.6 12 8.33 6.92 8.67 13.7 6.75 3.44 0.41 9.7 3.85 14.3 13.9 6.6 7.72 7.26 7.71 8.32 9.14 0.73 9.05 8.68 6.55 9.29 0 9 10.2 0 9.01 7.57 8.71 9.73 9.33 2.85 0.73 7.62 6.35 5.89 8.46 10.1 3.25 5.66 9.21 10.8 0 0.41 10.4 11.8 0 4.91 6.83 8.37 10 0.73 1.21 3.95 4.12 5.51 1.57 8.95 6.42 1.4 4.25 8.47 10.8 6.03 7.01 11 5.48 6.6 3.27 4.65 7.29 3.89 10.4 7.93 1.98 6.98 0.41 9.99 6.24 6.95 8.85 1.21 1.21 7.46 9.03 5.54 2.1 7.37 2.48 2.48 2.98 8.63 5.68 2.2 0 7.53 6.69 6.88 5.55 12.3 3.52 6.7 5.89 5.89 5.71 2.86 4.66 7.48 6.12 6.79 4.07 6.46 6.46 2.79 4.5 5.45 0.41 5.63 6.67 3.73 1.57 3.68 0 2.3 2.98 1.21 1.4 7.16 0 8.16 5.92 5.01 6.22 3.75 3.75 6.15 10.3 0 0 0.99 1.57 4.85 4.28 6.41 0.73 0.41 6.32 6.03 2.92 3.3 12 0.73 9.34 10.4 0 7.58 13.1 10.6 9.63 2.4 8.36 7.1 2.92 9.37 11.8 8.99 6.04 6.15 9.42 6.13 7.08 4.23 1.72 2.3 6.4 8.27 9.49 3.89 8.81 6.9 10.9 9.23 9.79 7.9 6.66 1.21 12 10.6 10.2 13.5 0.99 1.57 10.6 10.2 5.81 7.35 7.84 10.3 8.34 10.8 8.73 7.7 7.31 0.41 0.41 3.64 10.2 6.37 2.64 10.6 9.67 1.86 4.78 14.6 11.7 7.94 9.6 1.72 7.01 13.5 11.2 0.73 12.7 12.5 9.47 9.43 10.6 12.8 4.77 1.98 9.4 10.2 9.53 10.4 8.99 9.92 5.86 10.2 9.27 14.1 10 8.94 5.75 11.7 6.07 13.1 3.35 6.93 11.2 12.2 10.1 12.4 7.67 11.7 9.12 11.6 6.19 4.73 10.4 7.3 5.36 9.05 13.7 8.16 9.89 10.4 8.23 11.2 10.4 12.5 10 9.24 9.66 4.25 10 11.1 10.6 9.28 10 9.56 12.2 11 10.4 9.46 9.1 9.93 9.92 11.1 9.14 10.5 10.8 10.9 12.2 10 10.1 9.75 10.1 9.9 9.67 11.4 10.4 9.41 10.1 9.9 13.2 13.2 11 8.84 1.57 7.69 7.56 6.16 7.76 0 0 5.13 2.48 11.1 9.39 8.25 7.64 6.97 10.4 10.9 12.9 12.9 4.01 9.99 7.44 6.55 10.7 9.14 10.4 4.7 12.6 5.17 11.4 8.13 10.4 9 10.7 10.3 8.78 10.5 8.07 7.38 8.3 6.86 9.49 10.2 10.1 4.52 10.6 9.66 9.13 5.24 1.86 11.2 12.9 7.54 11.6 11.1 7.34 9.95 4.04 4.17 10.7 5.3 3.79 4.6 9.67 11.3 12.9 9.71 11.9 8.49 11.6 10.5 1.4 9.72 12.8 2.64 6.73 10.6 9.71 9.53 9.48 12.4 11.8 8.06 5.89 0 9.5 4.3 7.37 9.38 10.4 7.52 13.9 1.4 0.41 12.7 6.47 7.41 4.58 2.57 5.09 12.2 10.6 9.73 11.2 11 8.47 0.41 12 4.44 4.04 0.73 11 11.9 8.78 5.7 9.21 1.21 7.64 2.3 2.4 5.47 0 10.2 8.17 1.21 3.64 9.31 11.4 11 13.3 10.2 11.5 8.73 12 10.2 4.5 9.43 8.54 9.6 7.71 0.99 9.12 4.6 3.85 10.6 10.2 7.49 10.8 8.59 0 4.85 10.7 8.21 5.1 5.43 1.72 0.79 12.6 11 10.3 7.97 10.3 10.1 10.9 7.76 9.43 0.41 1.57 4.98 8.03 1.72 0 10.9 10.6 13.1 7.62 8.94 8.56 8.7 7.7 0.99 7.33 4.46 9.27 10.9 9.35 8.89 8.63 3.2 6.17 11.5 2.4 11.3 4.54 2.48 5.9 6.57 11 10 5.09 2.1 9.05 3.76 5.15 3.56 7.31 4.01 6.15 11.3 14 7.33 6.32 11.6 2.57 2.3 3.75 12.4 8.39 11.3 7.92 11.7 10.8 9.38 6.78 10.2 9.53 9.84 1.86 10.7 9.16 9.41 6.78 11.8 8.53 5.47 10.1 12.9 0.41 6.55 10.6 7.29 12.3 3.72 9.88 9.33 3.52 8.66 9.82 5.31 10.2 4.87 12 6.17 4.96 12.5 11.4 6.96 0.41 5.45 0 9.93 9.87 10.4 10.8 8.67 10.6 8.44 8.73 2.1 3.23 1.98 12.7 2.4 7.67 10.4 6.55 4.85 0 8.84 11.2 11.7 13.4 10.3 11.6 7.53 8.71 11.2 12.7 8.98 1.98 13.1 5.89 4.89 4.77 8.68 10.6 12.1 10.6 9.74 10.9 9.97 7.74 8.58 6.8 8.48 7.82 9.76 9.46 9.48 3.09 8.07 7.18 11.3 8.57 12 7.73 7.02 10.2 8.97 9.6 10.9 7.69 7.98 10.5 7.71 9.8 8.91 9.72 11.1 9.5 10.5 10.3 7.62 11.5 3.82 7.58 6.38 11 6.69 7.21 9.51 9.54 10.1 7.07 8.66 11.9 3.25 8.76 9.81 8.26 8.72 9.07 8.68 8.8 9.1 11.1 7.46 9.64 9.42 11 11.4 10.4 10.8 1.4 9.11 3.25 3.14 6.76 9.52 3.92 9.69 10 10.2 12.1 9.48 10.2 12.2 9.4 10.1 10.7 10.8 6.84 8.21 8.56 7.54 10.6 7.47 12.7 11.4 10.9 10.8 9.01 10.1 9.27 10.2 8.9 9.15 9.01 8.55 10.9 8.81 9.7 10.1 10.1 9.13 11.2 8.16 10.5 6.56 8.27 9.85 10.5 13.5 7.7 9.3 8.3 9.94 8.97 11.8 9.16 10.4 8.72 11 8.04 10.3 0.99 9.06 9.9 8.23 9.81 11.4 8.33 6.66 8.85 11.6 5.64 8.79 5.33 8.14 8.68 7.83 8.26 7.4 7.86 8.27 10.9 10.1 9.08 8.86 9.76 9.69 10.8 8.29 9.94 6.32 7.49 9.12 9.83 7.37 8.48 10.5 6.64 10.3 8.68 9.22 8.07 1.21 0.73 4.62 10.1 3.35 8.07 6.04 8.82 9.19 9.83 11.6 8.95 8.58 1.57 10.7 9.97 5.89 6.73 9.68 8.84 11.5 11.4 9.93 8.54 6.43 8.07 8.79 4.77 9.47 10.1 7.75 8.98 10.6 7.59 9.06 10.1 9.66 6.3 4.62 3.35 10.2 10.3 11.1 10.8 8.09 6.75 7.16 10.3 10.1 9.42 13.5 7.43 8.21 11 6.27 0.73 9.75 9.5 9.81 8.18 10.8 8.04 8.37 9.05 8.06 7.46 8.9 8.97 10.1 6.04 8.41 10.9 0 10.2 10.5 4.5 8.93 8.16 3.92 8.25 11.3 6.86 9.9 0.99 9.84 10.3 7.91 10 11.9 11.7 10.8 7.61 10.4 1.57 10.1 5.79 6.06 3.72 11.9 10.8 6.27 9.18 9.75 11.3 9.6 9.22 10.3 3.92 10.1 3.39 5.15 10.2 9.47 9.72 11.2 6.33 3.82 12.7 7.91 9.62 1.72 10.6 9.67 7.98 10.8 8.07 9.68 9.17 6.84 8.31 10.6 0 8.71 12.4 8.48 10.1 5.76 10.2 6.7 9.64 10.3 10.3 12.4 5.47 10.4 9.47 8.95 10.8 5.91 11.8 10.5 8.67 10.1 8.64 10.6 11.7 2.48 12 11 10.4 9.22 10.5 10.2 1.4 10.8 8.93 10.2 12.1 1.57 10.4 6.85 9.66 8.63 4.75 11.5 10.4 8.48 1.4 11.6 8.72 10.8 11 2.85 8.49 8.35 10.9 13.1 9.45 11.1 9.27 10.7 9.69 8.23 9.47 10.9 12.2 11.3 7.97 11.4 6.5 3.79 8.97 8.87 6.81 12.1 10.9 10 9.02 9.87 10.1 10.1 9.84 6.87 8.46 8.36 6.09 10.2 10 7.99 8.99 7.17 8.33 9.62 8.6 8.26 7.45 9.2 8.8 11.9 6.9 0 7.94 10.3 8.04 1.98 8.23 10.7 10.9 9.95 11.2 9.95 9.73 11.8 10.1 9.69 8.98 12.6 11.2 10.3 7.55 12.1 9.8 10.8 10.4 10.8 9.68 9.9 9.99 6.98 10.8 10.9 11.4 8.97 9.19 9.02 8.59 11.8 11.1 6.51 7.79 10.8 11.3 9.5 8.64 10.8 7.81 11 8.43 8.41 10.2 11.1 10.1 9.66 8.4 11.3 9.12 11.2 8.1 10.3 8.45 10 9.1 11.4 9.27 8.63 8.46 7.16 8.3 8.47 8.43 11.3 8.89 10.5 7.93 11.9 13 6.39 3.04 6.22 7.92 9.7 6.36 2.72 8.1 8.5 10.1 8.33 10 9.96 12.4 11.2 8.24 10.7 2.48 6.62 7.53 7.49 11.8 7.44 11.2 8.91 1.21 11.1 3.75 8.78 10 10.4 9.81 10.9 2.2 9.46 10.3 0.99 2.85 6.71 11.8 2.2 12.1 9.18 8.62 3.58 10.8 9.04 11.1 10.2 12.2 10.9 2.3 10.8 9.62 5.83 8.62 10.2 9.84 12.1 8.6 11.7 11.2 10.3 6.2 3.75 10.1 11.2 8.22 10.3 8.19 8.69 9.77 7.55 8.94 7.96 8.82 10.1 7.08 0.41 0.41 9.3 2.2 10.9 10.6 10 8.31 11.9 11.4 3.2 10.5 10.7 10.3 7.93 10.3 1.86 10.2 9.43 12.8 10.4 10.5 10.2 11.3 6.17 0 9.72 6.08 9.75 11.7 13 9.75 9.07 5.32 12.8 4.96 5.04 11.4 7.73 12.3 5.84 9.66 10.5 9.91 9.12 10.9 10.8 2.48 9.3 9.82 12.7 0 10.2 11 9.05 7.5 7.06 7.6 8.16 10.3 11.5 8.54 8.83 4.42 10.8 10.9 9.8 11.4 9.19 9.82 7.92 7.18 5.29 11.2 10.5 11.5 11.4 9.52 8.96 2.1 8.38 9.72 10.9 7.11 10.4 9.46 0 13.9 9.14 9.75 0 4.56 3.44 7.4 9.33 10.3 11.9 9.2 9.97 6.56 9.27 9.65 7.26 2.1 10.4 10.1 8.03 2.78 9.84 8.42 6.12 2.2 9.14 10.7 0.99 6.24 6.46 8.12 9.41 10.7 9.07 13.2 6.82 5.41 9.69 7.18 7.02 4.87 8.45 7.79 10.8 10.8 5.98 11 9.94 3.6 10.6 9.7 9.89 11.8 9.26 8.74 10 9.4 5.94 9.18 0.41 10.3 3.3 10.3 7.95 8.19 0.55 1.98 12 9.9 8.28 10.3 12.3 8.6 8.03 9.11 5.56 4.73 5.2 0 7.73 10.6 5.31 6.01 4.25 4.58 8.21 4.3 9.32 8.04 0.73 5.09 11.3 6.73 8.16 9.1 8.84 8.91 8.13 9.73 9.82 8.29 9.7 12.2 11 10.2 8.93 11.2 8.95 5.84 3.35 6.78 7.56 9.19 2.85 7.53 4.64 3.98 7.88 3.39 5.64 9.09 2.21 10.7 9.95 11 1.72 10.8 9.59 7.71 3.03 7.82 1.42 8.55 7.92 6.91 8.68 9.55 9.64 10.4 11 8.91 0 7.44 6.35 8.58 8.01 7.85 10.2 9.19 4.96 3.97 9.46 9.29 12.1 11.3 9.8 2.98 4.6 9.18 7.89 10.6 10.3 7.34 7.41 8.67 9.73 3.48 9.88 9.72 8.49 10 9.42 10.4 11.2 10.3 4.39 10.7 8.94 3.15 1.72 11.6 9.31 8.33 10.1 4.96 6.5 4.32 4.6 10.7 6.96 5.97 9.63 8.31 10.2 11.8 8.76 8.23 2.3 0 11.2 10.7 9.49 10.3 8.96 10.1 9.34 2.64 10.6 8.86 11.9 9.4 7.67 10.1 9.81 8.77 10 11 5.59 10.1 7.12 9.24 7.8 8.96 7.62 10.4 8.17 10.2 6.04 12.3 10 3.3 11.9 8.28 6.98 11.4 7.77 2.79 4.7 6.57 8.65 8.73 8.1 9.35 6.74 4.3 10.1 8.78 8.04 9.81 2.1 7.87 9.66 8.71 8.22 9.74 10.4 7.72 10.1 8.73 11.8 9 10.5 10.6 4.39 9.65 8.89 9.17 7.32 6.96 7.05 9.39 7.24 0 7.93 10.7 5.1 9.26 11.9 3.6 11.5 0 9.42 10.2 9.86 7.56 0.47 9.41 8.79 7.19 10.5 10.8 2.4 7.17 8.79 6.01 12.1 8.03 2.48 9.25 8.52 11.1 8.45 8.33 4.17 9.79 9.6 8.95 6.15 8.67 10 10.2 11.4 3.15 11.4 10.4 6.93 10.1 9.7 3.44 3.3 10.6 0 11.7 8.75 1.72 10.1 9.66 9.36 4.04 8.39 6.75 8.49 4.07 7.61 0.41 10.3 7.19 7.8 10.9 5.36 7.38 10.2 10.9 5.23 8.99 9.56 11.9 8.13 7.5 7.29 10.4 12.3 10.1 8.6 9.43 9.35 8.31 3.72 9.54 10.1 10 9.09 7.74 7.34 9.81 7.82 9.58 8.34 9.92 3.2 9.33 11.4 8.7 6.59 10.1 9.62 9.09 10.3 5.71 10.5 8.49 4.48 7.87 0 9.4 13.2 2.79 0 10.9 8.15 10.2 11 6.86 9.63 8.99 11.8 12.3 11.6 10.1 8.43 7.94 8.53 6.49 9.91 8.08 9.42 11.2 1.4 9.96 8.42 9.61 9.5 5.9 8.3 7.99 11.1 0.41 10.9 9.68 7.56 10.7 9.4 7.52 10.3 6.87 9.61 9.25 9.43 7.97 11.4 8.59 12.4 9.14 10.7 8.19 10.4 11.1 10.9 8.99 8.79 9.25 6.62 6.96 8.61 4.23 9.13 8.24 3.44 8.05 10.2 8.52 9.84 0 12.5 8.13 9.46 8.59 9.35 10.9 9.69 10.9 9.31 6.71 10.8 5.98 3.59 9.55 11.1 9.68 11.9 8.35 11 9.57 9.56 6.24 4.46 8.97 9.74 8.31 5.9 7.25 9.56 10.9 11.8 8.99 8.86 5.56 8.34 8.2 9.09 9.28 10.2 7.88 7.45 11.8 8.45 8.21 8.7 6.88 5.41 11.1 8.77 10.1 6.65 8.76 8.85 10.8 0.73 9.77 8.46 7.88 7.09 10.3 9.17 8.15 8.51 9.67 11.1 5.59 8.35 7.89 8.48 9.56 6.09 10.5 5.93 8.3 3.6 10.1 10.8 5.28 7.81 11.1 7.9 7.83 2.72 8.63 2.79 11.1 12.6 12.5 5.64 11 8.42 10.4 10.6 8.46 7.16 6.63 8.25 11.2 6.25 9.21 8.49 8.22 8.22 10.3 9.19 4.93 9.98 0.99 5.23 8.93 6.9 11.3 3.64 4.37 8.29 10.1 9.63 11.3 9.25 8.61 9.03 10.7 7.49 9.91 7.11 7.94 10.9 10.2 11.6 9.3 7.22 8.16 9.58 10.1 8.03 7.59 3.09 13.2 9.3 6.41 5.16 6.1 7.01 4.44 9.2 9.9 11.4 8.32 7.28 5.44 9.31 7.05 10.6 10.9 9.39 8.54 9.32 10.3 9.07 5.92 1.98 9.57 4.39 8.95 8.52 7.38 7.56 8.45 10.6 3.79 10.4 9.05 9.74 10.5 10.9 9.57 6.59 10.5 10.7 9.42 7.96 8.02 9.64 6.54 9.82 6.95 9.54 7.96 9.3 1.98 9.48 11.3 8.59 9.8 0.41 8.27 9.02 8.65 7.05 3.52 5.23 8.89 11 9.07 9.05 6.78 8.85 7.5 9.41 10.3 10.7 9.24 12.4 4.44 6.37 9.86 10.5 10.2 10.1 11 8.75 10.1 9.09 10.9 11.5 9.43 7.46 6.98 9.67 8.85 7.92 7.98 7.99 10.2 8.99 7.27 6.97 10.3 8.5 7.22 11.8 7.92 9.95 9.56 10 7.78 10 10.2 8.38 9.97 5.39 9.38 8.17 10.6 8.23 0 9.36 11.2 10.1 8.15 5.37 9.6 8.64 8.25 6.35 12.5 10.7 9.77 11.9 7.86 11.2 1.4 7.4 7.62 10.6 6.04 9.12 10.1 7.66 9.86 10.3 5.83 3.6 9.1 8.02 11.5 6.65 10.6 10.4 7.11 7.95 7.93 10.4 5.72 9.87 10.8 10.3 7.75 9.38 11.7 10.1 8.27 6.59 10.3 9.27 4.87 8.31 11.9 11.3 13.4 11.1 9.94 9.87 8.85 9.18 10.4 8.86 11.2 5.38 8.47 7.13 7.83 9.71 3.82 8 9.89 11.1 7.83 10.7 3.82 10.6 9.76 10.1 6.76 9.88 8.96 9.98 9 8.22 1.86 3.35 10.5 7.59 8.34 0 11.4 11.2 0.73 10.1 7.35 9.84 11.3 9.07 8.63 7.65 7.22 9.05 9.24 9.73 0 11.2 9.67 0 8.02 9.67 9.33 10.6 9.27 9.81 9.04 9.02 9.15 11.2 5.4 9.83 7.76 8.55 10.3 8.73 2.72 9.79 6.88 9.91 9.35 8.57 9.48 6.72 5.31 7.53 8.21 8.35 8.44 10.1 11.8 3.85 4.14 8.42 10.4 10.5 6.22 9.97 10.3 8.95 6.22 6.69 7.56 9.14 5.77 0 5.31 10.1 10.2 6.68 7.62 9.02 1.4 9.92 10.1 10.8 10.4 8.87 8.23 6.95 10.9 3.85 8.23 11.8 13.2 5.59 6.66 2.79 7.79 9.45 8.73 3.52 0 3.52 8.87 5.15 9.32 10.4 8.97 0 10.3 9.89 9.56 11.3 11 11.6 7.66 3.52 9.24 10.8 9.11 10.7 7.4 5.38 3.44 9.84 9.68 6.3 2.3 8.14 3.2 4.37 1.21 5.87 0.73 8.43 7.18 3.6 10.8 9.74 8.4 2.35 0 8.48 8.43 3.62 5.78 8.1 0.73 1.57 7.21 3.2 9.72 8.74 6.99 8.36 6.64 1.4 13.5 7.54 10.1 8.57 11.8 1.57 10.1 9.91 7.38 7.28 11.7 10.9 7.13 10.2 7.66 10 9.62 7.35 0 9.07 8.85 9.3 9.84 9.49 9.11 10.6 6.65 9.33 10.2 3.09 0.41 11 6.85 10.2 7.99 11.6 9.24 8.69 8.38 9.01 11.3 9.68 9.65 9.8 10.1 8.31 10.3 2.2 8 7.87 8.62 8.67 7.53 6.09 8.76 10.9 9.54 6.01 9.89 7.92 7.9 8.04 9.78 8.95 11.1 8.73 10 11.5 1.57 10.5 9.27 7.45 6.17 11.1 11.7 10.5 11.1 8.01 8.97 9.71 11.3 10.8 7.4 9.96 8.18 9.39 10.9 8.89 8.85 10.6 7.58 8.73 10.5 11 10.4 10.7 7.18 9.65 5.08 11.1 9.21 10.1 4.56 8.48 10.5 9.34 4.3 13.1 9.99 10.2 9.8 8 8.1 8.58 12.1 8.18 9.14 9.3 10.7 8.31 5.84 8.4 7.62 7.75 10.3 10.6 10.5 10.7 6.71 7.15 7.4 9.46 9.85 8.34 10.2 13.6 10.3 8.25 9.88 8.76 9.32 10.8 10.4 9.77 11.2 9.08 11 8.47 9.02 9.7 11.4 12.2 10.9 6.58 9.26 9.63 12.1 1.57 12.4 10.3 8.33 9.19 11.1 9.36 9.07 10.6 10.6 7.56 10.1 10.1 6.55 9.57 8.91 10 12.4 9.78 5.69 10.1 8.43 10.5 8.79 8.09 9.07 6.71 8.92 9.82 9.28 5.52 8.56 8.32 8.19 10.1 5.76 5.38 7.27 7.37 10.6 7.63 9.53 4.25 8.68 0.73 10.2 11.5 3.15 9.44 7.18 4.87 3.3 1.72 10.7 7.59 9.73 4.39 7.48 10.8 10.6 3.64 10.8 10.4 0.73 10.5 7 8.94 12.2 9.5 8.1 10.4 10.7 11.8 9.53 7.22 10 6.63 10.2 3.64 10.5 4.44 9.26 11.7 9.03 8.77 8.81 10.8 7.75 9.78 12 2.7 11.1 7.95 9.22 8.88 10.4 1.98 9.65 10.1 7.58 7.77 9.45 0 8.54 7.34 12.6 9.99 6.59 4.73 2.4 10.6 5.31 5.96 1.57 11.3 10.2 8.97 10.2 2.98 10.8 7.2 9.83 6.65 9.28 11.3 10.4 5.15 9.63 7.66 11.8 11.1 12.1 8.42 8.27 8.77 6.95 11.4 8.75 3.82 7.75 5.83 10.6 4.68 11.6 10.4 8.44 6.64 10.6 14.2 7.06 2.48 9.36 10.8 10.6 10.4 11.1 10.5 7.37 10.4 11.7 9.03 7.63 7.85 0 7.43 0.73 10 9.25 11.1 7.54 9.86 9.34 9.93 9.95 9.97 8.36 11.3 4.15 6.41 8.42 6.6 9.17 3.88 2.1 5.39 9.02 4.71 7.78 4.22 8.15 6.26 3.6 5.92 5.07 3.35 5.01 12.2 4.46 5.31 2.79 4.42 5.4 10.2 1.57 4.87 6.28 5.13 4.44 3.79 5.37 5.9 4.73 6.71 8.16 6.21 8.99 4.5 5.36 5.67 0.73 8.63 1.57 0.41 4.07 6.58 10.2 13.2 8 8.99 2.48 12.2 10.2 0 3.44 6.95 8.16 11.6 1.21 9.81 10.9 4.04 11.3 10.1 6.75 10.2 10.2 5.3 9.12 10.2 9.13 8.95 8.02 10.9 10.1 8.35 2.4 3.6 10 8.86 10.5 8 9.73 8.96 7.22 8 10.2 5.68 0 0.73 10.1 1.72 9.61 3.35 2.98 10.9 9.84 13 4.85 0 14.6 5.78 5.47 5.15 9.54 4.3 7.13 10.9 10.2 10.8 7.14 11 9.67 9.05 9.72 8.54 9.05 3.98 0.73 2.48 2.64 8.91 2.1 10.8 8.91 11.4 9.6 15.3 6.06 0.41 9.43 8.78 11.1 11.2 10.9 7.41 8.55 9.98 8.14 10.8 9.82 10 8.64 1.4 10.1 11.2 11.2 12.2 11.5 9.99 12.5 11.3 8.22 11.7 11.5 11.1 7.91 9.96 8.9 9.17 9.65 9.68 6.13 9.77 10.4 9.22 5.92 10.1 10.9 11.6 5.8 9.67 7.36 8.77 10.2 8.43 8.92 12.3 7.54 8.04 8.67 10.1 9.62 10.2 8.46 10.9 10.6 7.38 6.8 11.7 5.12 10.4 8.97 9.7 7.27 9.32 10.3 8.69 9.11 10.1 8.18 9.46 10.8 8.98 11.2 6.22 6.91 10.3 11.2 10.2 0 6.34 3.98 9.43 11.9 10.9 5.83 8.54 3.35 4.09 7.58 8.08 4.15 8.72 9.84 7.02 8.54 10.8 8.37 10.1 6.7 10.5 9.88 11.7 9.18 10.2 8.48 7.31 0.73 8.52 6.69 7.8 12.2 11.7 10.7 6.99 9.03 9.42 9.16 10.6 11.2 7.8 2.48 8.03 9.18 9.62 10.7 10.3 8.72 12 10.2 2.57 10.2 8.53 0.74 11.4 11.2 12.1 6.86 8.51 8.43 9.25 11.2 3.39 11.2 2.79 9.17 4.15 7.65 7.76 9.07 12.2 2.64 9.27 8.89 10.1 3.44 8.84 9 9.11 10.3 11.6 4.39 9.73 5.85 10.6 5.8 9.79 9.27 8.79 8.42 8.59 9.33 9.85 9.87 10.9 8.77 13.1 8.48 11.2 9.83 13 6.71 9.81 10.2 12 9.52 9.4 6.15 11.9 9.21 11.1 10.6 0 9.72 8.29 8.5 3.56 6.19 7.37 11.3 11.4 8.55 10.3 9.39 12.5 11.6 11 7.57 11.2 10.5 9.81 9.43 9.17 10.8 8.88 10.8 10.8 10.9 2.1 8.06 8.23 13.6 9.23 11.6 9 8.52 10.4 6.27 6.81 8.96 8.53 9.9 8.86 6.97 9.13 11.8 13.3 11.3 7.42 10.3 5.53 6.65 10.7 6.16 6.81 11.9 5.61 11.3 0.41 3.3 8.98 10.9 5.97 0.73 8.3 10.2 11.7 8.13 7.83 9.53 8.72 7.88 8.52 5.25 5.93 7.67 3.56 4.99 12 9.9 6.66 4.52 2.85 9.11 7.41 1.21 0.99 10.6 9.3 0 5.82 7.31 10.3 9.27 10.4 7.23 10.5 9.01 8.27 11.2 8.3 2.48 5.39 10.8 9.61 11.9 6.24 5.24 3.09 7.35 2.2 7.85 9.73 6.48 11.3 2.48 10.6 8.93 8.04 6.03 7.69 8.81 9.64 2.2 4.98 12.2 9.14 6.91 10.6 9.83 8.16 4.6 3.56 7.48 9.82 9.85 8.02 5.01 4.93 9.09 11.7 7.89 3.56 11.6 11 9.42 2.1 12 3.72 10.9 4.39 5.62 10.1 10.7 8.53 12.1 8.34 9.92 11.4 10.6 9.6 9.47 9.24 13 7.61 9.67 8.54 8.83 5.04 7.3 2.48 1.21 8.96 11.4 7.89 13.2 11 10.9 10.5 7.26 8.4 6.66 9.78 11.6 5.45 8.89 10.2 9.23 8.34 7.8 7.61 9.4 10.6 9.22 9.07 0.41 9.24 6.46 7.89 7.08 11.6 9.81 9.22 7.02 8.67 4.52 7.36 10.6 5.98 13.3 9.5 4.44 8.83 5.44 2.48 2.79 8.6 2.2 5.97 11.8 0.73 13.6 11 9.95 10.5 9.9 10.7 9.45 10.9 8.51 9.36 4.66 3.85 8.69 10.2 9.43 9.42 10.2 3.2 6.01 10 10.4 11.4 8.85 12.3 9.7 3.64 8.41 9.36 11 9.54 10.5 7.11 6.96 0 11.5 10.5 7.67 10.5 8.61 6.13 3.25 4.25 12.2 8.92 8.82 11.6 11.4 6.81 7.72 8.11 9.96 7.46 10.8 11.8 9.79 8.22 7.57 9.11 7.56 10.3 7.25 7.04 13.8 8.39 9.23 9.6 10.6 11.3 7.17 7.37 6.86 3.44 7.66 4.64 9.26 7.19 7.4 9.69 9.78 8.89 7.25 11.3 4.39 0.99 10.9 9.79 8.6 9.38 9.77 5.89 8.76 8.67 9.92 8.54 4.92 8.07 5.82 8.28 7.02 6.66 0.73 7.55 12.2 8.98 5.43 10.1 10.4 9.02 5.21 5.71 6.97 0.41 10.6 8 14.1 9.43 9.22 9.6 5.73 9 8.96 8.74 10.3 9.22 8.42 10.1 3.3 10.3 10.5 11.9 9.01 11.2 8.03 1.21 5.97 5.49 10.5 9.64 2.3 11.9 0.41 0.73 6.28 7.62 11.3 10.2 4.15 3.2 8.72 8.13 8.86 4.3 8.46 13.2 10.4 2.3 10.9 8.9 10.3 4.2 4.56 2.79 6.82 5.4 1.57 9.57 7.63 4.25 8.56 9.73 9.21 11 6.85 9.25 8.97 4.07 11.5 10.7 9.28 10.2 5.9 9.27 12.1 10.8 7.96 7.44 10.8 10.9 9.46 10.1 10.3 10.9 8.61 11.3 12.5 1.72 11.3 10.3 7.78 9.94 10.4 10.1 6.3 4.44 9.98 10.2 10.5 8.55 10.5 10.4 6.26 6.67 8.12 6.39 4.27 11.2 9.68 9.19 8.83 4.95 10.8 9.79 11.3 8.18 0.41 9.75 8.51 7.62 11.3 9.7 9.52 9.19 7.44 4.73 10.4 2.1 0 11.5 9.24 11.5 11.9 11.1 11.1 7.17 1.21 7.85 9.63 10.4 12 9.3 11.5 8.26 12.1 9.38 7.73 8.17 9.77 9.56 11.6 12 9.14 7.78 6.77 10.2 13.2 10.6 12.6 5.74 8.88 6.73 7.07 8.03 7.31 11 3.25 10.2 9.87 10.7 12.8 9.96 11.9 9.35 12.2 10.8 9.41 11.1 10.2 7.17 10.8 9.15 9.08 0 11.3 4.7 10.4 10.8 10.1 9.89 11.2 10.5 7.31 2.4 8.65 10.4 9.39 8.53 10.6 5.78 1.21 8.66 11.5 11.5 10.6 10.5 9.85 10.9 9.16 11.4 10.2 7.87 2.3 9.58 7.89 10.4 1.57 5.91 11.4 9.49 0.99 9.84 7.51 11.9 12.4 0 5.47 11.2 10.5 9.76 8.82 6.71 0.73 2.92 0.73 12.8 5.02 6.32 1.21 11.8 10.3 2.4 4.05 10 4.42 11 10.2 7.22 4.35 10.5 7.28 6.1 11.1 10.1 8.31 12 11.5 9.54 10.8 8.82 8.41 8.04 8.39 8.54 10.4 1.56 7.98 10.5 7.02 7.1 0 11 6.11 6.32 6.77 9.32 16.1 9.38 8.6 1.57 9.11 2.72 1.41 10 1.72 9.4 10.7 8.94 4.48 8.86 2.4 9.31 10.8 9.45 9.01 10.6 2.3 0.41 6.69 9.31 1.21 8.03 6.86 10.6 6.56 9.5 11.1 0 9.36 4.66 0 9.66 12.1 6.32 10.4 9.75 13.2 1.72 9.6 8.04 10.8 5.66 10.2 7.79 9.2 9.25 9.53 1.72 10.2 8.23 11 8.85 11.9 8.59 10.5 10 11 9.07 8.9 11.2 10.2 4.5 8.77 11.1 6.29 6.69 6.61 3.2 9.5 11.3 0 1.98 3.49 8.72 0.41 12.5 9.56 10.2 10.9 7.84 11.6 1.98 10.9 10.8 4.93 8.22 2.3 10.7 6.78 6.55 8.09 7.41 0.73 11.2 9.5 8.39 9.94 14.8 14.1 13.1 12.7 11.5 10.1 13.6 4 14.9 7.24 13.2 13 13 12.5 13.7 12.3 12.5 9.69 14.2 2.3 12.1 13.3 8.66 12.7 13.8 12.8 12.4 12.6 11.8 12.8 13.1 13.5 12.4 12.6 11.3 13.2 13.3 12.4 8.1 8.67 13.7 6.7 13.7 13.8 12.1 9.77 8.59 12.1 12.8 13.3 13.6 12.4 14.3 3.73 2.2 3.09 6.75 7.35 12.9 0.99 2.1 14.5 8.43 8.86 8.74 10.8 8.44 12 12.7 12.6 11.8 13.8 13.1 12.7 13.7 11.1 13.5 12.7 13 7.96 14.4 12.2 13.5 11.6 13.6 14.1 12.5 7.85 11 12.6 8.27 11.8 3.68 8.45 11.7 9.85 10.9 8.8 9.54 1.4 7.32 11.2 10.1 6.63 9.13 11.6 9.89 10.1 3.85 3.35 2.92 4.51 7.02 11.1 3.48 1.4 9.99 1.57 11.7 6.64 8.66 11.6 13.2 0.73 11.2 3.92 11.7 13.3 10.8 10.6 4.76 10.8 7.08 10.7 10.2 9.07 10.4 8.5 8.36 9.99 10.5 8.76 6.16 10.4 9.99 9.66 13.2 4.97 9.1 4.62 7.44 5.76 5.64 3.85 4.23 13.8 7.08 1.21 4.56 3.15 11.7 11.1 4.37 7.12 9.2 11.1 3.75 2.98 6.75 4.48 2.57 1.57 4.25 6.96 1.57 6.68 6.02 2.64 5.3 0 0 8.76 0.41 0 5.62 0 0.73 7.08 5.92 13.6 8.07 4.98 10.7 10.8 11 12 9.89 10.3 2.98 9.56 10.9 10.9 9.29 9.92 10.2 9.19 6.38 9.56 8.65 6.43 8.11 9.37 9.77 10.2 7.11 8.27 12.2 4.32 2.73 8.85 11.8 10.2 10.6 8.17 7.59 6.3 6.05 8.56 9.33 8.87 9.82 7.71 8.61 4.75 9.84 9.21 9.77 10.1 7.58 10.5 5.59 10.8 0 11.8 3.2 7.62 7.84 7.51 8.14 0.73 12.2 4.64 5.15 6.61 5.86 7.81 10.9 9.26 10.3 2.1 11.4 3.35 5.49 8.2 7.59 2.2 7.55 7.8 11.8 9.7 12.6 6.11 0 4.71 5.29 7 10.6 7.99 6.67 6.57 5.36 6.33 5.58 10.2 10.2 10.8 7.52 8.11 10.1 8.04 9.05 8.74 5.46 6.06 7.3 4.09 9.89 2.72 9.86 6.51 9.06 2.3 9.27 2.1 13.4 9.8 4.85 7.11 7.21 9.72 10.8 7.79 10.5 9.6 5.96 9.88 3.85 4.56 5.51 8.33 4.04 9.79 12.9 0.41 8.28 7.05 9.41 10.1 11.9 10.1 10.8 9.79 9.06 9.22 7.32 5.25 10.8 9.9 8.77 9.96 3.3 14 8.06 8.43 11.3 0.41 0 6.8 0.41 12.7 0.41 11.5 12.2 3.6 8.89 5.87 9.77 9.27 6.08 10.6 9.32 7.41 9.74 8.62 4.56 4.46 1.98 11 2.48 0 12.1 10.9 9.33 10.8 11 8.58 4.87 11.8 7.14 5.61 10.8 10.5 9.82 9.41 7.01 7.18 5.43 5.19 0.73 3.98 5.13 11.2 9.21 10.4 1.21 9 8.6 1.98 0.73 10.1 7.61 9.44 0 1.4 10.2 6.72 5.57 7.06 2.27 6.16 4.04 0.73 0.73 7.11 9.16 3.44 10.9 9.51 2.4 9.76 8.81 6.21 5.28 1.57 2.3 7.57 2.85 7.83 6.96 9.44 6.7 0 1.57 2.3 8.56 3.52 9.76 9.34 1.4 6.46 7.86 9.52 9.39 9 10.8 9.1 9.51 10.2 9.2 9.63 9.44 9.28 9.05 3.52 9.36 0 2.48 3.15 6.09 5.05 2.92 8.16 3.25 6.29 2.48 9.29 3.25 7.38 9.53 0 9.88 1.86 4.85 1.42 9.23 9.96 7.3 6.62 12.7 0.74 0.41 5.78 4.75 9.78 9.78 7.7 0.73 4.63 0.41 1.86 9.82 1.72 4.96 6.34 3.48 0.99 3.68 1.86 6.29 2.48 3.92 7.82 7.75 9.52 0 10.2 3.92 3.35 3.44 8.85 1.21 9.58 0.73 12.2 2.98 9.5 4.35 5.48 8.81 0 1.21 7.4 10.2 9.7 6.52 9.63 0 0 2.2 1.4 4.12 3.35 9.2 7.85 5.75 5.86 9.07 10.2 14.2 6.86 0 8.87 9.85 2.64 6.72 9.23 9.47 8.64 11.7 10.7 9.64 8.68 3.15 9.18 11.5 10 9.72 11.9 9.47 8.83 7.47 8.39 10.7 9.5 9.3 10.6 8.3 9.43 11.5 8.84 9.57 9.51 10.4 10.5 6.9 11 8.59 9.87 8.65 6.96 10.8 5.97 0 10.3 9.34 8.81 6.81 9.57 7.88 8.65 2.79 10.7 13.7 8.16 6.36 10.8 9.74 5.08 10.1 7.43 3.3 12.3 8.51 9.64 9.01 6.13 10 9.45 7.44 9.65 0 11 10.1 11.1 4.64 8.68 10.7 9.61 11.5 9.49 8.58 7.12 7.58 7.96 8.05 9.78 10.8 6.31 1.72 3.85 5.68 8.89 8.48 9.56 6.09 8.93 7 7.03 3.98 9.81 0.73 10.9 8.57 5.2 9.13 9.93 7.47 4.82 8.88 6.55 8.48 7.11 7.35 9.47 8.69 9.3 0.73 9.3 9.09 9.71 9.2 9.14 9.8 8.62 10 9.33 8.83 10 8.77 9.83 9.86 3.75 3.79 13.1 8.87 11 8.55 6.41 7.59 3.28 9.65 7.05 7.44 4.5 2.98 5.83 6.76 11.7 7.27 11.8 8.57 8.1 5.99 8.06 3.6 7.86 4.52 5.31 9.35 9.56 10.4 8.76 9.62 9.66 9.66 0.41 11.6 11.4 7.87 9.27 10.9 4.12 12.5 9.22 12.6 11.4 9.35 3.04 8.17 2.85 4.56 2.45 6.3 11.6 0 11.2 9.23 6.03 5.01 9.94 8.62 9.43 9.82 7.07 9.61 10.1 7.76 9.84 11.9 11.4 8.73 3.09 7.01 2.92 0 4.23 0 7.09 1.21 1.4 5.29 7.78 1.21 1.86 4.01 7.78 0.73 1.21 6.32 2.48 10.2 7.02 1.57 4.28 1.57 1.86 0 8.51 9.43 10.7 8.11 10.7 1.86 7.61 5.31 8.16 0.99 9.28 5.13 6.46 2.48 2.1 6.51 1.4 6.05 5.01 3.15 4.59 0 10.3 11.7 0.99 1.98 0 7.69 6.89 4.32 6.57 6.72 5.58 7.16 0.73 5.94 2.98 9.11 1.4 3.04 10.6 1.72 2.72 4.54 1.73 4.46 0.41 5.89 1.98 11.1 0.99 7.01 9.01 4.42 3.3 8.23 10.5 9.56 0 3.56 8.26 10.5 8.87 10.3 8.17 14 0 4.09 7.5 10 3.09 9.99 11.2 3.79 9.24 9.14 12.1 11.5 11.1 1.21 8.69 9.24 10.1 9.8 8.47 10.2 9.19 9.65 8.17 3.6 8.56 0.41 11.6 7.5 10.2 10.4 10.7 9.52 7.3 9.2 8.29 3.15 3.79 2.3 9.27 9.8 11.1 11.5 9.78 12.2 7.32 8.38 10.4 11.8 3.5 10.6 8.13 9.23 7.73 7.81 10.8 11 11.5 7.51 5.92 4.66 7.48 8.52 9.88 8.14 7.74 4.71 11.2 9.47 10.8 9.2 8.15 11.2 10.8 8.88 9.64 9.59 11.1 10.6 11.2 9.32 9.27 10.4 8.74 9.01 7.47 11.7 10.8 9.25 10.1 0 11.8 4.09 11.5 6.02 11.4 9.13 12.9 11.7 9.09 10.2 10.1 10.5 9.39 3.09 8.77 0 2.92 10.4 11.7 9.1 11.6 11.8 8.03 10 9.13 11.7 4.9 16.7 9.74 8.99 6.75 1.72 9.55 0.41 11.4 6.3 12.3 12 11 8.84 12.7 0 5.35 12.3 10.2 8.7 9 8.3 1.57 9.48 8.77 12.3 11.7 9.56 8.86 13 11.7 10.1 10.5 8.47 11.5 11.8 10.4 11 11.6 8.13 11.2 11.3 10.3 11.8 12 12.9 12 10.8 11.7 7.33 11.9 0 11.2 10.7 12.8 10.5 4.07 11.8 2.1 11.8 11 13 3.25 9.82 11.7 0.99 1.57 2.2 0.73 0.41 1.21 0 2.78 11.7 4.11 0.41 0.41 3.14 11.2 12.5 10.2 9.89 0 4.44 10.5 8.72 9.71 8.38 10.5 7.93 3.44 5.87 9.28 9.31 2.72 5.84 9.31 6.46 10.2 9.9 9.54 8.95 10.4 9.27 9.27 8.89 8.27 3.09 11.9 8.16 9.7 10.6 10.9 6.37 12.8 8.99 9.81 7.55 12.4 9.56 9.11 7.43 11.2 10 7.89 10.7 10.3 1.21 7.1 3.52 2.4 8.09 11.1 10.3 8.63 4.3 3.89 0 9.84 9.96 3.3 10.4 7.96 10.6 9.98 9.17 5.65 12.6 6.58 9.62 12.2 4.5 10.9 9.41 9.25 8.5 7.3 9.83 4.92 0.73 10.6 13.5 10.4 8.99 11.4 11.3 8.05 10.7 8.4 5.72 7.95 10.6 9.24 10.6 10.2 8.17 8.1 6.55 6.13 7.22 4.52 6.13 9.56 8.74 9.74 1.4 5.17 6.84 10.3 0.73 0.41 11.1 0 10.1 11 10.9 4.54 10.1 8.57 7.69 10.1 9.29 11.3 2.1 13.4 8.65 7.96 10.3 10.3 10.7 0 8.17 10 6.07 12 0.41 0.41 10.3 7.5 10.5 5.94 10.4 10.7 8.93 6.09 11.6 10.9 7.1 9.3 3.68 4.77 9.87 14.3 7.86 7.41 9.74 0 10.1 8.87 1.4 8.93 2.2 9.4 11.2 8.53 9.42 5.87 10.5 10.5 8.29 10.3 6.33 7.11 6.2 11.7 3.56 5.74 10.2 8.57 6.02 11.3 1.98 12.2 10.6 0.41 10.9 7.33 9.07 10 2.79 9.54 3.6 9.86 12.7 13.9 10.4 8.39 10.2 3.44 8.37 8.53 9.58 6.95 4.56 12.4 10.5 9.89 10.6 6.29 7.99 11.8 13.9 14.9 5.19 11.4 11.2 8.62 9.76 11.1 1.21 9.25 9.37 11 6.84 5.77 12.6 12.1 6.25 7.43 7.52 7.56 16.3 12.5 11 6.98 8.76 9.32 7.55 8.85 10.2 10.9 5.02 9.85 14.2 8.77 5.76 5.6 4.9 1.72 11.2 11.5 7.82 8.87 8.19 10.8 7.68 1.86 0.73 0 10.9 8.89 3.44 11.4 7.97 11.9 11.7 6.78 2.4 10.7 11.9 9.03 10.8 11.2 10.5 12.8 3.48 10.4 12.1 8.34 11.1 0.41 12.6 13.7 10.9 8.67 13.1 13.7 10.4 10.6 13.1 8.36 15.4 0.92 12.3 7.8 10.4 13.8 7.51 8.67 8.02 11.7 7.73 7.05 15 0.41 14 10.6 10.1 7.31 0 7.43 0.99 3.04 5.66 7.85 14.7 0 3.75 4.3 11.1 10.7 10.9 1.21 10.8 2.4 11.2 11.7 6.48 8.68 5.85 7.41 10.6 10.3 11.5 12.8 8.89 8.12 8.52 7.04 5.02 8.28 9.88 6.3 4.98 2.2 8.64 6.69 9.5 6.57 8.24 4.98 4.3 5.31 6.12 7.15 0.73 7.14 5.49 5.76 6.62 8.15 10.8 5.05 8.63 0 5.2 4.75 12.2 6.92 5.79 2.72 5.55 7.71 7.42 4.33 11.3 0 6.95 7.95 5.97 2.1 5.12 7.89 5.78 1.98 13.3 3.04 7.23 1.98 5.4 0 2.2 5.46 4.68 3.04 9.04 1.57 1.72 9.49 5.36 8.91 9.54 5.56 5.95 6.39 1.26 1.57 4.99 7.7 4.28 4.73 2.1 5.97 3.85 0.41 9.67 4.39 1.21 0 6.53 10.5 8.1 5.54 8.99 5.51 4.75 10.6 3.92 4.95 1.4 9.11 9.53 1.86 0.99 2.92 7.89 7.07 8.14 3.98 4.25 0.99 8.37 7.97 6.4 6.74 6.56 8.81 2.72 9.26 6.43 6.82 0.41 7.96 2.57 9.9 2.92 12.2 3.89 13.8 15 12.5 0 8.35 10.5 10.1 8.53 11 12.5 10.3 7.28 10.8 10.3 11.1 11.1 0.41 10.8 10.9 11.6 9.16 11.6 11 11.4 11.1 12 7.06 8.11 0 2.1 11.1 3.92 9.91 4.3 9.72 10.5 10.9 11.1 3.25 9.88 9.62 10.9 9.57 10.5 9.73 5.95 1.72 9.95 0.41 10.5 11.1 12.6 10.2 9.58 9.69 10.1 10.6 10.9 9.46 2.92 11.1 12.2 9.29 9.86 10.6 9.8 5.66 10.2 9.54 8.91 11.8 12.5 12.6 10.4 9.83 10.6 9.54 10.1 7.1 4.07 9.65 0 13 14 9.24 7.13 9.45 6.98 4.39 7.1 7.17 9 5.32 1.72 2.57 11.1 10.7 5.23 9.89 12.2 9.66 8.23 7 10.6 9.23 11.6 10.7 8.39 6.98 0.41 5.68 9.1 2.57 0 9.65 0.73 1.4 4.93 4.37 4.98 1.4 8.98 8.3 6.59 16.3 6.78 3.09 11.3 0.41 8.29 10.6 4.84 9.65 3.39 12.2 9.54 5.16 6.78 8.05 7.56 13.2 7.41 10.6 10.3 13.9 11.7 13.7 12.6 11.5 14 3.92 11.8 8.36 6.24 12.7 8.87 8.17 9.94 7.62 7.46 9.46 3.98 9.81 7.26 12.3 6.05 9.43 8 7.4 8.93 6.76 8.24 5.92 7.49 8.22 9.51 8.68 7.29 12 7.47 9.7 6.44 9.7 10.3 9.64 7.67 10.6 9.74 7.96 8.75 8.62 9.22 7.94 7.48 6.68 0.73 4.07 5.77 7.68 8.03 8.34 7.04 9.16 7.01 1.21 8.83 3.44 6.77 6.04 10.7 0.41 2.3 5.03 6.88 4.6 12 5.98 0.99 3.89 2.46 1.07 0 2.4 9.34 9.35 5.85 8.25 7.07 8.45 7.75 5.58 8.31 7.38 9.88 6.66 9.4 8.66 10.9 0.99 11.2 11.7 10.6 7.67 14.7 4.7 6.8 3.56 11.8 7.48 10.2 8.96 7.35 4.46 6.4 1.86 7.23 7.94 8.27 7.69 0.99 8.28 8.98 9.24 7.7 8.4 7.52 11.6 7.97 7.96 8.19 8.27 12.2 4.58 10.8 9.61 6.15 3.3 11.1 11.5 6.08 7.47 6.56 7.61 1.86 8.16 6.85 4.28 6.44 7.75 9.03 8.91 5.24 0.41 5.78 7.16 9.96 6.3 11.3 9.56 10.3 12.4 9.74 10.8 6.52 10.6 3.08 13 8.42 12.3 7.13 4.6 11.4 12.8 9.4 9.51 9.87 10.9 12.1 3.95 3.89 1.57 6.82 9.21 5.32 5.71 8.9 9.34 9.85 9.87 11 9.85 12.3 12.7 9.75 5.83 9.88 0.73 8.79 9.49 1.57 6.09 8.81 8.95 9.56 5.4 8.66 1.4 6.91 7.22 9.92 3.64 10.5 9.92 9.27 9.73 9.45 9.94 8.07 8.83 9.87 0.73 8.48 11.6 8.32 5.61 8.96 10.1 8.36 1.4 15 10.4 7.41 7.38 8.89 8.97 8.35 9.32 9.97 4.64 8.96 9.86 5.64 9.7 9.86 10.9 12.9 7.8 10.3 8.3 7.98 8.04 9.71 10 9.72 7.81 8.65 8.81 10.9 7.41 6.78 10.3 6.82 10.1 9.15 8.99 10.4 10.9 9.31 7.65 9.76 8.38 7.63 8.31 2.98 8.72 7.36 9.07 3.3 9.39 9.77 10.5 10.9 8.54 7.43 9.12 7.65 11.2 10 6.77 10.3 10.7 10.9 8.54 7.44 6.23 5.15 9.78 1.98 7.69 7.14 8.94 6.47 9.87 10.1 7.64 12.4 7.63 6.98 0 4.45 8.32 11.5 10.8 9.31 6.75 5.04 8.81 8.69 6.55 7.67 8.96 8.66 8.62 9.42 9.92 0 10.9 11.8 10.1 9.55 11.8 8.85 8.81 8.05 4.44 10.4 0.99 0.41 3.95 10.2 5.51 10.2 8.46 6.62 0 1.57 1.21 5.19 3.98 5.53 8.56 1.86 2.85 7.47 10.3 8.04 8.6 1.4 11.5 7.22 10.7 4.01 1.72 3.56 1.86 9.86 8.26 7.03 9.94 9.8 11 9.25 7.25 8.39 11.2 10.2 8.74 7.66 8.7 11 9.04 12 9.34 9 9.51 8.88 8.1 9.81 11.4 10.2 3.89 8.04 6.75 6.83 9.57 8.39 7.95 7.27 7.67 9.5 10.1 8.79 11.8 6.56 5.21 6.66 4.37 7.44 6.01 9.89 5.92 7.48 9.45 7.06 8.42 6.9 9.12 10.2 6.63 8.21 9.88 0.73 10.7 9.34 8.09 6.71 8.91 8.86 7.37 7.92 9.63 4.04 9.62 6.16 10.2 9.05 6.53 7.33 10.2 11.3 10.8 3.04 9.39 6.79 10.3 7.97 10.4 8.52 4.84 8.36 7.71 10.3 9.79 8.48 5.47 7.55 10.8 7.31 7.72 9.71 9.93 7.61 9.64 5.15 6.13 8.58 9.48 8.36 7.56 7.31 8.86 6.94 11 9.35 10.3 7.79 5.77 8.68 9.2 10 11.8 11.3 8.42 0.73 6.98 10.3 6.62 8.81 9.61 7.7 7.33 8.83 4.78 7.59 9.28 8.69 8.9 3.15 4.18 7.99 5.88 6.03 8.4 0 8.25 4.23 8.14 8.28 7.95 10.8 7.61 8.86 8.22 7.51 8.08 6.76 8.97 8.82 8.39 10.3 8.06 7.82 8.73 8.21 8.8 7.72 7.49 9.17 3.82 6.6 9.61 6.65 5.36 11.1 10.3 8.19 10.6 9.31 9.33 7.4 7.89 8.02 6.27 8.3 8.61 5.59 10.1 8.6 8.63 11.3 10.2 10.3 2.85 7.48 8.58 6.95 11.3 5.01 8.81 7.42 8.01 6.29 6.81 8.66 9.26 9.49 7.76 6.34 10.3 8.22 10.3 2.79 11.1 11.8 5.32 8.51 7.16 5.25 6.28 4.8 5.28 6.44 5.88 6.66 8.95 0 7.82 2.79 0 3.09 6.64 0.41 8.12 4.04 7.61 8.22 8.92 0.41 6.9 9.05 8.53 10.8 7.28 7.82 9.77 7.38 9.49 11.3 10.2 9.77 6.1 8 10.8 8.1 10.5 9.54 8.49 7.62 10.8 7.42 5.3 10.9 11 10.1 5.26 8.74 7.56 6.87 7.78 12.8 9.36 10.8 5.59 5.82 0 9.45 9.21 8.38 7.5 5.13 7.77 12 7.79 1.4 6.63 8.71 3.89 4.9 8.04 5.99 0.73 10.6 7.94 9.18 3.72 2.1 11.3 10.2 1.21 8.97 8.59 3.12 8.87 5.72 8.52 9.72 3.82 11.9 5.71 7.3 6.93 9.38 9.3 6.42 6.73 8.02 7.45 7.32 8.6 5.3 6.88 11.1 9.11 8.88 9.13 0.41 7.54 8.54 7.66 9.81 9.76 2.48 4.62 2.64 12.8 7.34 2.2 9.76 9.94 7.85 9.82 7.92 3.3 9.08 9.77 10.8 8.68 8.24 9.79 9.5 7.93 9.54 9.71 7.98 10.8 8.47 9.09 8.59 8.69 3.95 2.2 4.56 4.3 6.5 7.5 8.96 1.61 6.38 3.04 0.41 8.33 8.95 12.2 5.89 7.74 7.73 0.99 3.35 0.41 10.3 7.83 8.21 9.13 3.92 10.2 8.99 7.11 8.73 8.94 3.64 9.91 9.17 8.27 8.22 5.11 7.59 9.88 7.93 10.6 3.61 12 7.79 9.98 8.87 6.78 9.5 6.89 6.24 9.72 6.32 9.95 7.56 9.72 8.51 10.3 9.45 8.36 8.67 0 10.7 9.97 8.62 9.36 11.6 9.68 10.5 9.02 9.41 9.06 9.32 5.71 11.7 9.74 10.3 10.8 11.3 7.95 8.99 9.82 11 4.62 12.7 9.41 5.48 8.24 5.46 9.89 10.5 8.95 2.79 8.98 7.67 7.01 12.9 9.38 10.1 8.97 9.67 2.4 11.2 9.05 4.8 8.88 12.2 8.96 12.9 8.07 8.58 9.06 5.33 10.5 12.3 8.53 7.69 5.23 8.03 9.06 11.1 6.63 6.95 10.5 8.41 2.4 7.86 8.1 2.4 5.01 6.92 11 6.51 4.66 11.5 9.1 3.79 8.55 5.39 10.6 7.82 7.32 11.2 10.1 0.99 10.7 5.74 11.9 12.2 5.5 11 8.11 14 10.3 3.15 10.2 9.8 6.11 8.31 2.1 6.05 8.91 9.43 3.95 8.99 8.32 11.6 3.04 11.1 6.52 0.99 4.48 7.76 8.3 8.25 9.72 5.91 4.28 3.41 10.7 8.03 12.3 7.84 6.84 7.42 6.57 7.42 5.92 9.78 8.15 11.1 11.5 9 11.6 9.14 11.5 8.27 9.18 9.15 7.29 8.61 6.84 11.1 11.7 10.6 7.07 8.42 0 11 10.2 8.95 12.4 10.1 8.89 5.27 6.36 5.1 1.38 11.4 7.95 8.48 6.67 2.93 0.99 10.5 12.6 9.18 1.72 3.6 6.8 3.2 11.1 9.25 9.5 11.2 10.8 13.5 1.4 8.2 0 6.64 5.63 11.7 12.6 9.66 5.53 3.68 8.5 11.9 9.9 8.52 2.2 7.64 3.92 2.48 11.4 8.63 8.24 9.8 7.21 9.5 10.3 5.28 6.7 10.4 8.85 9.98 5.65 9.43 10.8 10.1 6.99 7.56 10.3 9.65 13 9.52 10.4 12.4 1.21 8.11 7.52 8.65 8.74 7.44 7.81 8.83 4.32 10.6 2.64 7.35 11.2 9.8 9.7 12.1 9.66 12.4 9.83 7.63 10.8 10.3 2.4 1.57 10.7 8.87 10.7 6.01 7.47 9.16 6.29 11.2 8.99 2.17 10.3 12.3 9.79 12.1 11.8 9.5 6.29 0.41 10.2 1.4 9.15 0.41 1.21 8.7 8.3 2.72 8.02 8.52 8.71 2.85 7.86 1.57 9.3 5.72 9.47 8.33 9.63 9.8 9.02 9.29 9.78 4.72 10.7 7.72 9.02 10.2 9.09 9.72 10.5 11.8 9.76 7.67 10.8 10.5 7.79 9.05 0.57 8.53 10.7 0 9.19 7.67 7.57 9.82 0.41 7.05 6.78 8.8 10.1 1.98 11.8 11.1 7.37 10.7 14.7 8.62 9.89 8.65 11.7 8.54 3.09 7.55 8.27 8.68 8.52 11.6 7.78 10.2 12.4 13.3 9.96 11 11.4 4.9 11.8 9.06 4.95 9.9 7.19 8.06 8.2 0 9.88 0.41 10.9 11.3 8.19 4.56 9.37 0.99 10.7 10.9 11.9 9.24 8.98 12.7 9.57 9.72 7.63 10.6 9.46 6.88 6.21 11.4 3.09 10.2 9.58 7.73 8.71 6 1.4 0.41 9.95 1.4 0.41 0 11.3 2.57 9.21 1.98 5.01 4.28 8.1 0.99 3.35 2.85 1.98 0 1.72 9.57 3.52 9.95 10.6 9.95 7.26 8.33 0.41 3.2 6.52 10 8.25 0 7.83 6.04 6.49 10.8 9.75 5.85 4.8 7.25 7.1 9.81 1.57 8.43 9.54 10.2 10.7 10.2 0 3.56 0 5.98 5.71 0 7.44 8.94 8.82 9.02 4.95 9.88 9.11 1.98 9.57 0 3.79 0.99 0.41 8.02 6.83 4.96 7.24 10.2 5.78 6.25 9.51 0.73 8.43 8.95 11.6 9.62 8.02 0.73 4.5 8.57 10.2 9.13 0 8.43 9.7 7.83 8.17 6.09 7.61 0 4.25 11.1 0 9.45 11.1 8.11 2.1 7.7 10.2 8.49 7.17 9.12 10.2 0.41 2.48 7.88 9.21 10.2 9.66 6.67 8.12 5.41 6.87 11.1 9.52 5.52 6.66 0.73 8.81 4.23 6.94 10.7 10.3 9.78 6.95 10 11.2 0.41 4.3 8.37 9.26 9.57 7.46 0.41 4.6 2.4 9.84 1.86 0.88 8.3 5.02 9.98 5.69 8.35 8 8.8 11.4 10.7 8.94 2.48 3.25 9.23 3.72 6.12 3.35 5.66 0 5.85 0.73 1.86 0.73 4.39 8.38 11.2 8.72 5.05 8.95 8.89 8.94 8.81 7.8 5.43 11.7 11.7 7.74 7.98 7.1 1.86 0 7.26 2.1 7.5 11.7 7.48 8.32 5.13 9.6 11.1 7.8 10.9 10 0.99 6.7 7.08 0.73 9.4 10.2 9.47 6.02 9.76 9.94 6.72 12.7 10.9 2.64 8.43 4.78 7.11 10 8.16 7.98 11.2 8.09 0 10 8.63 9.03 7.82 4.7 13.4 3.6 5.5 0.41 6.4 5.46 8.4 9.73 10.3 7.07 11.3 7.22 5.36 8.74 9.11 1.21 9.35 6.41 1.57 7.57 9.24 3.44 7.47 10 7.56 8.32 8.59 9.86 8.48 7.88 8.5 9.61 10.1 9.26 6.93 5.8 8.52 7.39 9.63 9.81 7.08 9.33 8.81 11.5 12.4 11.3 8.18 10.2 8.71 7.61 13.5 9.89 4.5 10.1 8.43 3.56 8.6 7.65 11.4 7.09 8.52 9.97 9.79 11.6 0 6.59 9.74 10.4 9.86 4.46 7.22 4.82 6.32 5.6 6.24 6.11 9.09 6.98 7.01 3.82 8.17 7.77 4.04 6.07 0.41 7.11 11.2 10.9 8.28 8.69 3.2 8.8 8.8 8.18 8.72 10.4 10.6 1.72 8.27 8.01 7.4 7.66 8.08 9.27 9.47 1.4 8.94 8.71 7.21 8.72 10.8 8.66 9.5 8.22 9.58 9.12 8.51 8.61 8.52 11 9.26 9.58 10 7.03 8.04 7.8 3.95 7.32 10.9 9.37 4.07 11.1 8.89 10.7 9.43 7.95 9.03 6.86 8.47 0 7.74 11.8 10.3 9.49 5.43 9.36 9.64 6.32 10 6.23 4.44 6.22 7.98 8.95 6.97 8.86 9.79 0 9.13 10.7 7.27 10.3 7.18 7.28 9.04 9.52 7.07 8.48 9.81 9.47 9.63 9.34 5.49 8.28 5.89 6.27 8.81 1.4 9.75 8.11 9.99 9.59 9.17 8.88 10.1 8.62 10.3 0.41 5.37 10.7 9.93 0.99 9.38 4.5 8.88 2.72 9.42 1.57 9.76 4.5 11.4 5.01 6.93 7.82 6.8 8.34 11.2 8.57 8.3 10.5 7.43 10.6 3.85 7.49 9.4 9.95 8.48 7.27 7.47 7.5 8.66 8.56 9.07 8.9 0.99 7.09 2.72 6.76 9.56 9.77 11.3 5.79 2.4 7 11.5 7.5 10.2 8.47 11.4 5.13 5.23 4.2 11.4 7.98 9.29 7.94 6.27 7.53 7.92 9.94 11.2 5.75 10.4 3.75 8.01 9.92 6.9 8.69 8.6 11.6 7.01 8.79 7.91 2.2 9.84 7.94 9.88 0 8.8 8.33 6.88 9.72 8.51 8.4 9.49 8.43 0 11.3 6.74 9.46 4.46 11.3 9.15 9.29 4.7 1.98 6.74 10.1 10.5 4.62 9.69 9.09 11.9 4.17 0 0 1.86 9.5 10.4 7.81 11.4 11.7 7.59 7.25 0 8.95 7.76 0.41 7.27 9.13 11 1.72 3.75 8.42 8.49 4.44 4.12 0.41 11.4 10.8 3.98 3.64 8.3 6.87 8.35 8.86 2.4 9.52 10.3 6.34 6.9 12.3 6.85 11.6 7.11 4.96 0.41 4.35 11 8.92 6.3 8.58 8.22 13.1 6.77 7.72 7.85 5.68 2.64 8.36 6.65 9.75 11.2 8.11 8.99 4.04 6.76 9.33 10.1 3.82 7.41 3.98 3.48 7.64 9.65 8.66 7.87 5.48 2.4 8.11 9.33 9.52 6.81 6.87 9.66 1.21 8.31 12.2 3.09 7.79 9.44 10.4 4.56 8.99 0.41 5.36 8.92 2.48 8.56 5.56 7.16 8.19 8.72 8.7 8.08 10.2 7.77 9.53 7.12 5.53 2.79 8.15 8.35 10.6 7.23 7.51 4.8 9.04 7.19 8.2 11.5 10.2 9.37 0 8.67 10.3 10 8.4 10.3 9.45 9.73 8.64 11 6.43 9.96 8.61 5.88 7.36 9.45 8.27 10.4 10.9 6.01 8.86 4.09 10.6 7 9.33 10.9 11.8 1.21 7.06 8.43 10.1 7.7 9.24 9.81 10.3 4.71 8.82 8.54 8.9 7.8 8.83 9.34 8.47 7.49 9.9 3.95 10.9 8.77 2.92 9.08 9.58 8.02 7.53 9.81 9.18 10.9 6.35 6.1 7.88 9.38 5.93 7.05 5.69 10.8 4.04 8.33 8.46 6.56 7.96 5.12 3.09 5.61 7.75 8.65 9.74 8.87 2.2 9.74 6.99 4.68 7.26 1.57 8.64 9.18 9.57 3.72 3.44 9.97 10.3 9.45 5.84 10.8 4.96 4.75 8.25 0 7.98 10.4 9.55 10.4 8.06 8.78 10.8 9.51 8.3 6.79 8.85 6.56 11.3 8.32 9.25 8.6 12.5 11.5 8.98 4.25 1.57 6.68 8.56 5.51 8.14 10.8 12.1 10.2 3.44 10 0 10.2 8.65 9.11 10.1 4.75 0 5.85 0.73 5.95 7.84 9.28 9.51 7.26 1.9 7.83 9.97 5.96 10.2 6.93 9.35 7.51 7.5 8.85 7.12 7.6 7.71 9.39 10.2 1.86 8.55 5.69 6.35 8.54 9.01 11.1 11.4 6.91 11.3 10.8 10.7 4.15 6.29 7.59 1.4 8.02 8.68 4.7 9.76 8 10.1 4.3 5.8 9.16 9.6 4.5 9.46 5.83 11.3 8.54 9.51 7.59 4.09 12.4 10.1 10.2 9.22 11.3 7.77 8.64 9.17 6.34 10.2 10.5 3.39 3.04 11.3 5.25 2.79 2.64 10.8 0.41 3.56 2.57 9.01 3.14 4.17 13.6 8.68 7.45 5.25 1.57 7.99 8.88 11.9 10.5 8.93 9.18 10.3 11.1 10.5 8.72 7.87 9.96 10.7 6.47 9.64 9.19 9.75 9.64 5.83 6.97 8.24 8.56 9.9 10.2 3.25 1.4 10.1 9.41 9.54 7.57 10.5 6.62 6.64 12.2 8.81 10 9.35 8.67 11.4 5.64 2.3 10.3 4.5 8.45 8.6 9.51 3.98 10.1 5.83 7.43 9.71 4.17 6.8 8.75 9.41 9.17 10.1 7.1 9.1 5.75 5.29 9.9 2.3 7.22 4.96 10.7 10.8 9.93 9.28 10.3 3.68 6.71 11.8 9.96 8.62 8.07 13 11.6 8.86 12 10.9 10.8 15.6 10.8 11.1 10.4 2.57 10.9 11.1 9.8 11.2 5.25 8.14 11.4 8.71 7.67 12.6 11 1.86 8.38 9.55 8.57 9.65 10 2.57 12.3 2.32 9.37 10.7 9.16 7.48 9.1 1.72 0.99 12.4 8.56 10.4 7.11 9.68 3.3 10.7 11.1 9.94 10.3 11.1 10.6 8.83 8.62 9.24 11.3 9.24 10.4 8.79 11 4.25 10.1 7.08 6.76 0.73 9.35 8.66 11.3 2.79 4.58 2.64 0.73 7.68 11.7 9.75 12 10.2 9.86 13.7 8.39 11.7 9.01 4.53 9.16 10.7 9.85 11.3 9.44 6.51 10.2 3.82 10.3 5.38 0 7.77 1.72 8.58 3.75 6.29 7.74 9.42 6.17 8.25 11.5 9.65 8.89 11.6 10.4 10 11.6 9.8 1.98 4.66 4.48 0.41 9.73 9.39 4.04 11 10.9 4.3 9.68 5.58 3.15 10.7 0 9.38 1.86 13.4 10.2 11 6.41 9.26 5.61 10.6 8.16 5.79 6.35 8.89 0 10.5 9.06 10.1 9.5 1.86 8.97 9.63 8.29 6.53 12.1 7.2 7.24 7.66 4.23 0.41 9.33 0.41 8.34 10.9 7.3 9.42 10.2 9.04 7.76 9.38 10.6 9.82 10.2 9.71 2.2 3.82 8.19 14 12.2 10.4 10.6 9.53 8.92 10.2 11 12.3 11.9 9.73 9.5 8.84 9 10.3 10.9 11.7 9.48 10.9 9.87 11.1 0.99 7.53 2.4 10.9 8.17 10.1 9.26 8.47 0.73 9.09 8.53 4.62 12.6 10.5 3.98 9.36 8.38 8.41 10.3 10.7 11.3 7.33 7.22 5.05 9.96 10.5 9.82 10.4 9.9 5.88 9.18 10.4 9.3 7.35 11.4 11.6 10 9.86 0.73 1.72 2.98 10.2 0.73 4.12 10.4 9.47 11.8 7.1 0.41 9.95 9.86 5.25 6.53 11.6 10.4 5.24 5.28 2.1 3.2 3.09 3.85 8.15 10.5 6.6 8.08 9.34 7.54 5.69 0 8.64 8.23 9.47 0 3.27 7.12 2.91 0 5.77 3.15 9.2 9.57 8.22 8.63 12.4 11 11.8 12.1 0 7.78 10.2 10.2 9.25 8.72 6.69 8.48 6.81 9.13 7.16 0.41 9.4 10.5 10.4 10.5 3.15 5.51 5.45 8.12 7.25 11.4 10.6 2.4 8.74 9.68 7.68 0.73 9.33 8.65 8.52 6.66 7.2 7.31 7.46 12.2 10.2 9.64 7.74 8.57 8.9 8.66 3.82 2.64 4.58 8.91 6.2 3.15 7.03 6.83 8.47 8.19 9.61 2.98 6.28 2.2 7.14 4.93 4.84 11.5 8.3 7.59 9.07 9.93 7.26 0.41 4.99 9.81 9.27 5.45 3.04 5.16 10.4 8.7 9.85 7.82 7.59 5.81 10.4 6.64 8.02 9.42 9.17 9.49 11.7 9.22 7.96 5.49 9.23 11.3 9.82 9.45 12.4 7.63 5.04 3.35 6.59 8.69 2.57 10.5 9.2 9.46 7.56 6.91 9.09 4.12 11 7.9 5.32 3.35 6.48 10.6 10.1 9.26 9.09 6.22 7.83 9.49 7.18 7.55 0.41 5.59 8.39 7.71 13.5 10.1 8.79 10.1 8.25 8.1 7.33 6.97 7.77 6.36 11.1 3.04 6.45 9.23 5.19 10.3 8.06 9.56 10 0 8.01 0.73 0.73 4.28 11.4 7.63 9.01 12.3 3.35 10.8 8.52 7.62 5.73 10.5 9.16 7.05 13.1 9.05 6.09 9.61 6.95 6.22 4.17 9.85 9.68 11.2 10.3 9.43 5.45 8.54 9.64 9.71 6.63 10.7 6.83 8.78 6.1 9.78 9.99 9.75 10.2 10.7 9.5 9.62 5.06 9.72 1.72 8.16 7.8 7.44 10 3.41 3.3 11.1 8.88 8 9.6 7.06 9.2 3.39 10.2 9.73 8.82 6.84 9.72 8.37 0.41 0 4.12 11.2 8.5 9.74 4.98 9.85 10.6 7.72 9.47 10.9 0.99 9.98 9.79 7.16 8.85 10.8 8.78 2.92 9.84 9.93 9.98 9.83 7.67 7.35 1.57 6.92 8.32 12.5 8.33 0.73 5.48 8.23 8.97 10.9 8.53 10.1 10.1 6.99 5.94 9.96 10.8 9.62 5.72 9.09 7.18 5.83 7.03 11.4 5.8 10.5 9.97 0.41 10.2 10.6 6.61 10 8.83 8.52 4.04 8.52 3.75 8.71 6.64 9.42 7.84 7.76 6.9 9.97 9.5 6.92 9.23 5.78 9.14 9.32 6.38 11.2 5.46 8.29 1.57 8.42 7.78 9.98 8.14 3.39 10.9 8.24 11.2 12.4 7.64 9.4 11.3 8.37 6.14 2.2 7.94 0.41 3.04 2.3 5.69 11 9.58 5.69 4.89 7.11 2.4 11.4 8.6 10.3 9.87 8.22 9.81 9.23 0.41 10.5 4.6 8.91 9.37 13.3 12.1 7.58 6.83 7.87 9.45 9.38 7.62 11.5 10.1 7.94 4.07 10.2 1.21 3.15 7.8 9.02 0 10.5 2.1 8.7 9.7 4.93 4.39 5.2 7.79 8.65 2.92 7.6 9.29 7.27 9.91 10.7 9.95 8.68 8.38 9.03 12.1 9.49 6.26 4.46 9.78 9.21 7.7 5.37 8.47 11.6 6.82 11.4 10.1 9.39 3.6 10.9 8.48 12.1 10.5 10.3 0.73 8.15 11.8 1.98 9.51 3.35 6.48 9.09 9.21 9.36 7.13 2.4 6.84 6.97 0.73 10.9 7.15 3.44 4.96 10.2 0.41 9.82 12.9 8.38 7.11 9.63 5.06 9.22 8.96 7.77 7.64 7.44 11.8 3.95 7.6 9.6 9.56 3.15 10.1 9.79 2.1 7.16 7.73 2.92 0.73 11.4 7.99 0 8.49 5.54 8.42 11.4 8.21 6.45 10.5 8.59 5.19 7.97 10.8 6.27 7.19 8.37 8.49 2.79 9.59 9.18 12.7 9.34 9.39 8.44 9.39 7.32 10.5 9.59 9.84 9.66 9.28 5.29 9.96 10.6 9.17 7.49 9.66 8.21 9.47 12.1 9.71 8.85 4.71 9.01 12.7 7.93 6.8 10.8 7.66 3.35 9.82 10.3 9.06 11 10.5 0.99 9.11 10.8 6.26 8.15 7.11 6.32 11 10.4 6.09 5.16 8.22 9.03 8.53 0.73 5.13 1.21 0.73 8.02 9.6 7.91 6.2 2.72 3.68 6.01 9.32 6.38 2.98 9.99 9.91 6.16 7.7 11 8.05 5.65 8.65 11.2 10.7 10.6 7.28 12.2 10.7 10.2 9.09 4.93 9.97 9.26 9.45 9.46 9.17 7.92 9.84 5.66 8.22 6.51 0.41 9.47 9.08 6.41 11.2 9.72 9.1 10.7 11.1 2.98 11.2 8.65 11.1 6.69 0.41 10.9 13.6 0 10.7 7.22 10.5 7.63 11.1 2.1 8.15 0 10.8 7.73 4.44 6.22 10.6 10.3 7.94 0 13.1 8.94 9.5 9.82 2.64 8.37 8.6 5.36 3.82 0.76 9.16 9.92 9.34 12.9 7.78 11.8 8.34 10 8.25 12.3 10.5 3.25 4.09 10.4 2.3 10 0 2.57 0 4.51 0.73 11.4 8.73 11 3.72 8.12 9 9.36 0 3.98 3.52 7.72 8.24 3.98 9.37 11.6 7.04 7.57 7.66 2.79 3.15 10.9 1.4 11.6 3.85 7.27 7.71 10.7 7.16 9.69 10.6 2.1 8.1 9.48 3.68 9.56 9.48 10.8 9.4 9.74 10.6 9.09 7.46 8.84 9.36 9.71 1.4 11 12.9 1.72 11 8.9 6.67 6.09 9.28 8.1 11.4 8.8 7.71 12.2 10.5 0 0.99 5.71 2.72 5.57 0 9.98 4.68 9.08 7.35 7.52 8.57 10.5 12.9 10.4 1.72 11 5.08 5.75 9.79 7.14 11.5 8.92 7.87 8.67 8.31 1.4 10.6 8.43 7.53 7.97 9.8 4.15 8.63 9.76 10.6 3.15 7 9.97 9.79 0.73 9.45 8.03 9.95 5.46 3.95 8.5 8.98 6.14 8.32 8.69 10.7 11.6 8.08 7.65 9.78 9.49 0 9.74 12.9 11.4 7.87 8.68 4.28 9.55 6.48 7.29 10.3 9.63 0 1.98 13 11.3 7.76 7.79 1.57 12 8.55 11.4 10.3 10.6 10.6 11.6 12 10.3 10 7.39 10.4 7.08 8.78 8.19 6.56 7.94 11.2 11.4 4.52 7.81 9.96 0.41 10.3 7 9.58 10.4 11.1 9.41 9.05 9.31 10.2 12.5 9.87 10.3 10.7 7.72 10.1 10.7 9.1 9.79 8.48 9.35 7.65 10.7 8.11 9.26 9.4 11.8 6.96 12.6 11.7 4.78 8.75 12.8 8.43 5.85 9.21 12.2 10.6 1.4 8.99 10 5.11 1.21 13.7 8.35 11.5 8.64 11.1 6.5 7.91 10.6 6.93 12.4 11.6 9.87 7.06 10.6 9.78 5.9 13.7 6.41 4.93 7.51 8.04 4.09 9.88 11.7 8.25 2.92 8.88 9.82 7.21 8.64 10.2 9.09 12.6 11.8 12 11.3 10.7 9.06 10.6 9.26 7.15 9.21 2.79 11.9 9.68 7.53 9.16 9.41 8.11 9.47 12.7 14.6 10.1 7.92 10.3 11.7 9.36 10.1 6.87 11.9 12.8 9.09 2.64 11 11.1 14.5 10.1 9.57 10 10.2 9.23 10.2 8.51 9.62 9.59 10.4 11.4 11.2 11.4 8.49 12.2 3.6 10.9 9.81 9.61 9.07 11.8 7.52 10.3 10.8 1.72 4.93 1.72 6.92 9.84 9.9 13.7 8.92 0.99 9.76 1.93 10.6 3.2 9.3 9.39 8.56 7.61 10.5 2.48 6.69 7.83 13.9 8.42 4.15 11.1 10.9 9.71 10.5 9.9 3.72 10.4 8.85 8.03 10.3 4.99 8.85 11.8 6.49 10.3 9.89 3.92 12.9 10.3 10.9 4.77 11 8.71 11.6 9.46 12.4 5.25 5.79 7.29 7.35 7.8 9.59 8.1 8.27 3.85 12.7 7.14 8.87 11.2 11.2 6.56 6.88 11.5 9.24 9.45 10.4 12.3 11.3 10.8 11.5 11.3 10.7 4.15 9.99 9.93 13.4 6.81 11 9.29 8.83 7.04 8.22 9.19 10.5 9.8 8.92 11.6 10.8 2.79 10.7 11 4.88 10.8 12.7 13.8 11.9 7.07 10.2 2.98 12.4 9.12 10.8 11.2 9.39 10.2 9.73 10.6 10.5 9.05 10.2 10.2 10.2 7.81 8.3 11.7 7.56 10.2 5.36 8.43 10.7 10.2 1.98 6.74 5.08 9.09 7.44 9.03 8.53 2.2 8.83 8.99 9.21 8.74 11 10.8 7.81 9.77 9.08 10.2 9.29 9.39 8.41 2.72 12.1 9.75 10.2 7.07 10.1 10.7 7.34 10 8.34 12.6 11.7 10.9 12.2 9.41 11.2 9.07 11.1 10 13.3 11.1 11.5 10.3 7.69 9.12 7.72 10.5 9.28 10.5 9.62 12.4 9.31 11.8 4.37 10.5 8.83 9.2 9.57 10.4 12.5 3.44 8.34 9.24 8.18 11.7 9.17 9.33 10.8 7.31 8.2 11.9 9.81 6.44 8.85 3.68 7.78 10 8.03 10.2 11.3 9.81 12 5.02 11.5 11.4 9.54 9.49 9.05 12 10.5 8.04 10.2 4.71 11.3 9.33 4.48 10.5 8.64 8.72 6.5 11.7 9.09 1.4 6.57 7.08 10.3 8.87 8.54 12.3 8.08 5.68 10.6 3.09 4.73 4.04 5.31 9.73 11.1 9.52 11.9 10.3 3.79 3.35 12 10 11.2 8.69 4.54 10.5 8.03 10.1 8.11 9.66 11.8 12.1 8.85 2.85 7.21 12 9.68 10.9 12.3 8.63 11.8 4.04 11.3 9.36 8.58
-TCGA-EL-A3H1-01 4.86 6.77 9.19 9.54 7.12 8.34 1.35 5.03 8.42 5.93 7.43 7.96 4.77 1.35 3.02 8.6 10 10.5 9.84 10 10.3 7.8 9.99 3.8 9.19 8.91 4.22 9.61 2.5 8.39 5.49 6.37 2.75 0.95 3.27 0 2.57 5.57 2.57 4.33 6.1 3.48 3.44 0.39 5.18 3.31 1.35 5.39 11.1 9.03 4.65 7.89 9.74 9.56 5.31 0.95 7 1.51 6.3 5.06 7.42 6.17 8.39 7.87 3.95 2.41 6.5 10.3 10.1 4.62 4.85 6.97 2.57 1.51 5.21 3.6 4.95 6.48 3.86 3.74 7.3 4.46 2.24 5.63 5.49 0 5.26 0.95 6.25 4.8 10.4 6.78 7.12 7.31 4.57 3.9 0.95 3.83 5.28 1.79 5.67 6.42 4.77 5.93 1.26 2.78 5.34 8.12 8.59 6.15 7.71 1.16 8.08 2.64 6.08 1.79 2.77 4.67 2.9 3.02 4.5 5.92 1.16 3.9 1.66 7.23 3.07 1.35 0 16 3.76 3.31 4.96 6.4 3.12 2.14 5.42 3.22 2.86 8.06 8.44 10.7 0 3.07 5.86 11.7 0 10.5 2.14 0.39 4.73 0 4.54 9.98 11.1 3.02 5.25 4.92 9.78 4.91 7.06 5.98 4.51 5.58 8.65 6.31 7.14 2.57 4.37 0.69 10.5 10.4 2.71 5.87 4.96 3.31 5.19 3.95 7.65 5.16 4.91 8.26 6.01 4.59 4.99 3.45 1.66 2.9 9.41 6.62 9.34 11.5 3.93 5.78 6.82 5.91 5.54 8.49 8.45 9.47 6.83 10.3 8.7 10.5 9.29 8.25 6.39 9.54 10 9.49 7.72 11.5 10.7 11.7 9.57 7.19 9.35 10.2 6.11 9.89 8.1 9.17 11.2 10.2 7.43 8.66 0 9.61 9.25 12.4 9.39 3.48 9.62 11.6 9.1 5.23 10.3 8.13 11.4 2.32 4.04 10.7 11.4 11.5 11.4 10.9 11.2 12.1 7.24 13.4 4.54 1.92 4.85 9.43 9.26 13.6 10.6 11.8 0.39 11.2 3.4 9.73 5.87 10.1 10.3 10.6 9.25 10.7 10.9 6.21 7.52 3.07 9.96 9.27 11 8.8 0.95 13.8 10.1 9.69 12.3 9.52 10.6 9.1 9.5 10.9 10.8 11.9 10.5 11.1 3.12 5.84 10.2 7.16 10.9 10 5.87 12.4 7.9 8.32 2.9 13.1 11.1 10.1 10.6 11.6 0.95 9.14 9.63 9.29 13.2 8.99 3.93 7.82 6.81 11 10.2 9.67 8.71 7.01 10.1 11.1 9.73 8.63 9.94 9.6 11.2 8.49 9.97 10 9.27 8.83 10.6 7.55 9.59 11.2 8.16 7.43 7.47 11.4 10 10.8 9.81 10.8 8.88 13.2 8.9 9.59 11.3 9.07 9.78 2.36 9 0.69 4.5 8.56 8.55 13.9 0.69 6.28 6.57 10.6 11 10.6 9.23 7.95 7.93 1.66 8.08 6.92 5.23 11.3 10.1 11.8 10.4 7.09 8.74 10.9 6.16 8.73 8.43 9.36 8.32 8.28 10.4 10.6 5.91 10.9 8.93 10.2 9.64 6.03 13.4 9.26 5.56 10.5 10.8 3.9 9.54 2.32 10.4 10.4 10.3 9.53 8.14 11.1 9.67 10.4 10.3 8.76 8.92 7.5 9.96 8.86 8.72 11.4 9.17 9.58 7.81 4.99 10.2 5.77 9.37 11.8 5.52 10.6 9.61 10.3 2.42 11 10.7 12 7.04 8.61 7.18 7.35 8.3 7.76 8.73 9.73 9.56 13 10.2 2.41 11.2 7.11 6.14 5.49 0 8.89 4.73 9.05 4.48 11.5 8.88 8.56 3.56 10.7 3.31 2.49 6.96 9.5 11.4 1.51 10.2 9.23 3.7 3.22 8.93 8.68 5.7 2.23 7.62 8.62 10.4 9.83 9.11 9.95 14.1 5.19 12.7 9.3 0.39 9.38 6.36 5.16 11.8 7.29 7.27 3.7 6.25 10.6 9.31 8.65 12.6 8.81 7.41 10.7 12.6 11.2 12.2 13.7 8.89 10.1 9.51 9.18 7.64 4.8 13 11.9 2.03 9.04 2.57 11.8 11.6 10.1 12.2 7.98 3.83 10.4 6.46 10.9 9.21 11.2 10.7 10.4 8.82 9.88 10.4 6.49 10.4 9.92 9.34 9.01 9.18 10.6 8.5 4.8 10 10.7 10.9 10.5 7.68 11.4 9.84 0 9.89 10.6 9.48 9.66 9.63 10.2 10.8 9.41 8.7 8.06 8.67 1.66 10.8 9.92 8.33 9.91 10.7 1.16 9.09 2.14 9.01 9.38 10.6 11.1 8.84 11.5 10.7 9.29 9.49 11.6 11 10.8 9.66 0 12.2 10.2 11.1 10.5 12.1 12.2 11.4 11.5 8.02 10.1 9.93 8.87 0.69 9.47 6.71 10.4 7.76 10.2 11.3 11 3.36 10.2 9.85 9.13 0.95 7.66 10.7 10.2 8.39 13.7 10.1 10.4 10.6 12.7 10.4 12 10.7 11.6 0 10.5 9.39 8.41 8.42 9.98 3.63 2.71 9.16 9.89 10.9 11.3 10.1 7.2 11.2 10.3 11.3 10.3 11.2 8.98 11.3 10.3 8.28 8.48 11 8.95 4.31 8.44 8.15 10.4 1.51 11.4 10.9 5.63 10.6 10 10.5 2.84 10.1 10.2 11.8 11.4 10.6 13.8 3.07 10.4 3.52 7.05 10 9.58 0.95 8.97 9.25 11.5 11.2 9.28 9.34 12.6 0 7.64 10.2 8.6 9.94 8.27 6.87 10.2 10.5 9.81 11.1 9.9 9.75 10.6 7.14 10.6 10.2 6.52 9.77 9.28 13.3 4.17 7.02 8 5.18 8.35 11.8 9.17 12.2 14.9 8.67 6.78 9.8 11.4 2.14 8.66 6.3 8.41 2.8 7.49 10.2 8.66 11.9 9.89 9.82 3.6 9.71 10.8 14.7 10.1 5.73 11.7 10.8 9.16 9.74 0.69 3.36 10.4 2.41 8.57 7.87 1.72 10.5 9.49 10.5 3.48 6.15 5.28 10.1 8.8 8.98 3.22 4.86 10.8 7.22 1.79 6.34 11.1 10.6 3.77 7.78 7.86 7.87 8.67 9.88 8.47 4.74 8.48 13.2 3.6 9.93 11.7 11 11.4 12.1 9.88 11.5 9.28 5.95 2.56 11.5 4.56 2.03 2.78 1.32 10.2 9.27 10.3 0 7.6 9.26 3.77 4.29 11.9 11.1 7.4 3.12 11 9.41 0.39 10.2 10.6 10.4 12.4 9.64 11.7 10.5 12 10.8 8.31 9.05 11.8 9.56 7.42 8.99 9.35 8.04 6.98 11.9 11.7 8.92 7.93 5.99 9.11 7.35 5.87 0.69 5.47 12.3 10.2 0.39 7.87 10 9.1 10.1 10.4 9.26 7.8 8.55 0.39 5.05 7.89 9.3 6.19 10.1 8.74 9.23 0.69 6.05 0 10.5 9.45 10 11.5 9.18 8.38 3.44 10.6 11.8 5.79 4.35 4.42 4.37 7.39 6.82 10.4 10.7 10.9 4.31 5.63 7.46 4.12 7.23 0 4.19 8.56 9 7.45 0.95 11.7 10.9 8.88 8.25 6.08 2.23 10.3 8.55 11.5 7.97 6.82 8.96 10.1 4.88 10.8 9.76 9.42 9.68 10.4 9.27 0 6.6 0 11.6 9.39 13.2 2.03 10.4 9.89 11.3 10.3 11.1 8.97 6.15 11.7 11.1 11 1.79 12.2 2.03 12.2 4.98 10.7 11 6.73 1.79 8.38 12.1 12.4 10.4 8.84 9.62 12.4 9.31 11 10.6 9.19 10.8 11.4 13.6 12.1 12.9 12.3 12.3 7.16 11.1 7.46 8.6 8.46 9.97 11.2 11.7 13.5 9.8 7.57 10.6 7.5 9.86 10.8 7.78 9.67 12.8 7.82 11.2 9.64 10.6 10.7 5.16 8.44 12.4 4.44 11.2 7.01 10.5 8.5 7.26 6.25 5.93 8.9 0 4.88 7.69 9.64 4.78 12.8 7.81 10.2 9.07 10.3 7.59 9.72 9.22 9.22 8.4 1.16 3.78 2.32 3.36 11.3 9.78 8.9 13.1 8.73 6.85 6.99 7.53 10.4 9.48 8.9 0 9.63 10.3 9.34 10.7 10.5 10.2 8.49 10.7 9.73 11.6 10.3 7.21 2.03 8.55 5.25 9.11 8.9 9.44 9 12.3 11.2 9.46 9.14 8.88 4.14 11.1 11.3 12.9 10.5 10.7 10.7 9.21 8.27 6.84 9.54 2.49 10.2 8.63 9.33 10 12.3 8.82 9.25 9.02 8.04 6.83 9.08 7.05 10.1 6.73 8.01 6.43 8.71 7.76 9.34 8.92 6.67 10 2.71 8.48 8.68 9.31 0 8.42 3.9 7.97 7.18 9.74 1.92 9.39 7.5 2.14 11.5 10.7 10.9 3.63 9.59 7.23 7.78 0.69 6.28 7.08 10.2 6.26 7.13 5.02 9.66 7.54 8.85 8.5 6.6 11.9 10.1 7.31 9.69 9.22 9.27 11.7 10.3 6.86 6.5 10.5 11.1 7.24 3.7 11.1 9.21 6.68 8.85 9.93 12.2 4.68 9.83 4.12 6.45 8.28 9.66 11.2 0 10.3 9.33 7.35 8.46 9.65 10.3 11.1 9.61 8.11 6.23 9.73 4.85 9.89 10.4 6.59 11.8 10.5 9.35 8.97 8.4 2.32 8.31 8.66 10.5 3.07 12.3 6.28 3.02 8.59 6.86 8.94 12.1 7.45 9.11 9.01 9.84 7.91 7.81 10.2 4.56 9.04 5.36 9.9 11 6.21 7.15 3.07 3.98 8.08 6.63 10.7 8.1 8.93 1.79 1.67 10.4 10.8 8.51 11.2 10.2 7.43 7.91 10.3 4.14 11.6 7.24 8.52 3.67 10.5 7.68 9.75 9.74 8.22 6.82 3.44 6.22 7.54 11.1 8.24 9.02 8.76 1.92 10.5 7.83 9.61 6.77 5.96 2.41 8.62 6.06 10.6 9.14 8.59 6.3 9.48 8.84 8.49 10.2 10.7 10.2 9.63 7.33 7.2 9.33 8.4 7.63 9.5 6.14 9.59 3.4 10.9 6.22 4.67 8.97 12.1 2.14 11.6 7.19 3.93 11.1 5.65 2.14 9.3 9.09 0.39 9.97 12.2 9.39 9.6 7.59 8.78 10.6 11.3 9.89 5.1 11.5 7.71 4.48 11.6 8.89 0 11.4 7.15 11.1 9.83 10.8 10.1 12.8 11.5 2.99 8.18 8.84 0.39 11 10.9 8.42 9.53 8.91 11.3 7.1 8.97 1.66 9.83 8.58 7.05 0.39 7.12 2.96 9.13 10.1 1.57 3.9 8.01 11 3.31 5.81 7.81 10.8 6 7.91 5.79 9.54 8.4 4.12 4.57 10.4 3.27 0.69 1.79 6.74 7.67 4.99 0.69 9.23 3.02 3.93 0 0.39 7.56 1.51 9.48 6.8 8.95 8.84 6.37 0.39 9.27 8.3 3.02 11.5 4.57 9.94 8.97 8.75 4.88 10.3 2.49 8.1 9.11 9.37 2.32 6.6 7.57 9.19 9.73 3.93 6.38 7.04 9.72 10.8 0 8.64 7.96 4.5 3.31 9.98 8.81 4.33 8.48 9.61 10.8 6.88 8.85 6.56 2.14 5.37 1.35 7.33 3.27 7.51 13.8 8.66 9.51 9.89 10.8 9.67 9.41 6.76 10.1 10.5 11.4 6.07 6.49 10.3 9.89 7.76 7.46 13.8 5.28 7.69 13.6 9.14 9.23 8.56 5.5 3.48 9.21 3.93 11.3 13.2 6.32 0 1.35 9.49 9.01 4.59 5.77 10.2 8.89 9.36 9.7 7.18 10.4 6.64 7.15 8.42 1.51 1.16 7.97 0 7.52 9.3 8.98 2.32 9.79 4.73 0.39 6.59 9.34 8.25 0.39 3.98 9.83 6.75 7.47 7.73 1.35 7.09 7.86 0.69 10.3 9.63 5.51 8.99 7.44 12.3 8.35 10.7 7.78 11.1 10.2 2.49 9.73 3.96 9.33 8.15 10.7 8.1 6.86 10.4 4.56 7.82 7.35 8 5.46 6.74 0.39 8.95 7.01 8.33 6.46 3.7 1.77 9.72 0 1.16 9.1 7.03 3.7 9.63 9.43 1.16 4.48 2.96 8.27 9.31 9.2 3.17 9.13 6.4 5.4 6.26 8.91 10.1 11.6 4.05 8.27 9.93 8.28 0.39 9.26 4.73 0 5.45 8.78 8.59 0 10.3 6.88 5.18 4.56 12.2 9.83 9.7 0.69 1.66 6.92 10.6 9.59 6.96 7.1 12.3 0 7.14 10.1 9.25 8.26 9.65 6.6 7.62 0 7.23 2.03 7.94 0 8.44 9.55 5.71 8.12 9.2 10.9 6.25 8.39 0.95 7.26 8.17 9.31 8.37 9 0.69 8.38 8.42 3.63 7.8 11.2 15.7 12.2 10.2 2.96 2.49 8.26 7.32 0 11.7 11.4 9.09 3.8 9.7 3.74 7.84 10.1 11.6 11.9 8.52 9.86 7.3 0.39 7.48 7.19 11.4 5.84 6.64 5.66 8.11 9.18 10.4 2.78 9.28 11.6 1.16 2.41 7.87 11.6 10.6 11.1 8.69 3.22 7.76 13.3 0.39 8.48 9.34 4.14 7.75 8.1 10.3 10.7 8.1 10.7 0.39 0.95 1.51 7.83 9.02 5.83 5.31 6.55 6.92 9.39 9.42 3.02 8.18 9.54 6.85 7.46 6.85 8.92 9.26 4.37 8.6 9.48 6.18 8.71 6.16 9.76 9.42 1.35 12.9 8.56 8.92 0 8.23 6.56 7.72 8.65 1.51 7.63 4.72 5.09 2.57 3.8 9.71 5.79 0.95 9 8.65 5.25 7.31 9.54 5.65 6.82 2.32 8.06 0 6.48 8.23 7.58 0.69 2.49 5.2 10.1 1.16 2.49 8.94 9.93 4.54 1.92 8.61 9.42 8.68 11 9.3 2.87 9.91 9.62 7.82 12.6 10.1 2.57 9.86 9.91 8.73 6.54 7.21 2.32 7.76 9.6 9.03 4.33 3.02 2.32 4.72 0.39 4.72 9.32 9.84 10.2 8.49 8.3 7.91 7.55 9.83 8.98 2.03 6.96 8.37 5.57 7.4 13.2 8.23 8.96 2.28 8.47 1.35 7.94 5.9 3.67 6.91 1.35 7.5 10.5 0 9.75 9.35 4.52 5.03 6.44 8.15 5.86 7.63 6.68 8.43 8.41 4.33 9.23 4.24 2.23 9.42 5.15 2.32 0 6.97 7.44 6.45 9.12 10.2 8.6 1.92 9.67 8.82 8.26 10.8 8.29 4.5 7.69 7.16 7.8 4.5 0.69 8.26 5.24 12.1 8.02 3.36 11.4 6.23 3.63 6.4 10.7 9.01 10.9 6.73 6.9 9.32 1.35 5.06 8.07 3.48 0.69 4.17 10.5 1.51 7.58 0 2.14 6.73 9.35 0.69 9.32 0.39 6.03 10.8 10 6.46 7.61 2.9 2.11 1.35 8.1 2.23 6.46 0.69 9.89 11.5 8.27 8.93 8.89 12.6 10.4 2.14 0 5.59 7.64 5.21 11.2 1.16 7.66 9.24 12 5.98 8.35 13.8 0 9.89 1.92 4.01 10.4 10.4 9.2 0 9.05 9.13 5.71 8.15 13.6 6.73 7.71 6.15 3.56 8.77 3.17 9.38 1.79 10.6 10.8 4.57 5.9 8.14 5.11 12 9.32 8.92 9.9 9.98 9.73 7.48 12.6 11.8 9.52 11 9.9 4.01 9.87 7.93 1.35 7.66 7.53 9.86 2.14 7.67 9.41 7.67 6.94 7.49 9.65 9.33 6.75 6.79 9.38 2.71 7.2 8.54 9.03 11.1 0.69 2.32 8.1 11.6 0 6.15 7.36 8.15 6.65 8.09 9.44 6.69 7.96 5.84 7.3 10.8 9.19 2.9 9.08 1.79 0.69 9.78 11.3 6.37 9.85 10.4 7.64 6.67 6.75 1.16 8.21 7.54 8.34 8.19 9.69 4.81 6.79 2.64 0.95 7.34 1.66 0 8.94 5.65 10.9 12.4 7.99 2.41 8.17 11.6 0 11 10.8 7.84 12.3 9.71 9.02 0 9.7 6.56 2.71 10.4 5.8 0 8.08 9.7 6.98 8.38 6.34 8.86 0.39 0 7.31 10 7.06 8.91 0.69 6.9 4.16 6.25 9.26 7.81 12.2 8.75 8.9 9.03 7.01 11.1 0.95 8.56 3.07 8.46 8 2.23 4.86 6.31 0.95 9.12 1.66 7.03 11.1 9.2 11.1 10.3 0 1.51 8.22 7.63 11.3 7.87 7.8 8.73 9.59 8.91 8.05 8.65 7.29 7.35 6.38 9.52 5.41 8.93 11 9.04 4.92 7.35 11.2 9.04 7.86 10.7 6.38 10.6 9.67 6.98 12.2 11.7 9.54 9.9 3.11 6.87 8.25 7.73 2.14 9.52 6.68 10 1.79 9.79 6.68 0.95 1.35 5.06 2.84 7.56 0.39 12.3 3.93 0.69 13.9 6.63 3.74 13.4 11.7 11.1 9.07 8.65 4.86 7.3 7.76 8.92 6.64 8.44 6.99 10.7 9.34 8.92 9.37 8.03 8.74 3.12 4.14 7.28 9.79 0 5.13 10.4 4.67 4.5 11.7 1.92 8.86 5.54 7.03 7.94 11 7.69 3.22 9.22 10.1 8.27 2.64 4.89 10.3 9.15 6.91 7.05 11.4 8.6 1.66 11.1 11.1 8.8 5.26 9.36 7.13 6.6 7.18 5.78 8.69 8.53 8.92 11.7 6.11 0 1.92 9.97 9.3 7.41 10.7 11.5 4.29 6.37 4.36 9.16 8.51 9.69 6.09 10.1 10.9 6.49 5.24 4.29 10.4 3.07 8.56 11.2 10 7.44 7.17 8.79 8.75 2.78 0.39 10.2 3.73 1.66 6.11 9.54 7.25 7.32 7.54 6.08 8.97 5.99 9.99 11.7 10.8 9.61 2.78 0.69 9.58 10.8 3.31 9.06 10.2 5.45 6.56 7.34 9.1 5.28 7.27 7.65 5.63 10.7 1.51 9.38 0.69 7.98 10.1 1.16 4.09 11.1 9.89 8.18 5.5 1.16 3.17 2.49 3.12 1.35 6.59 10.2 1.66 9.54 10.4 8.74 11.5 8.61 11.1 9.66 8.07 7.04 10.3 10.2 6.54 7.04 8.83 7.18 3.67 4.37 8.24 6.21 4.24 3.52 8.66 7.51 8.7 9.79 6.48 7.05 2.57 1.51 8.75 4.67 8.8 9.91 7.7 6.43 9.83 4.29 4.59 8.01 8.34 4.5 1.16 12.4 9.12 8.33 8.51 9.02 6.84 0.39 4.78 4.17 9.56 4.65 0.39 5.51 6.79 4.26 10.1 3.98 9.53 7.14 10.8 8.45 8.5 12.2 2.84 3.31 7.42 11.9 1.51 7.39 10.7 6.74 0 9.54 7.25 9.53 2.03 7.38 8.17 8.62 9.23 10.1 6.52 5.71 4.24 5.47 2.64 7.74 5.86 0.39 9.46 2.71 0.69 11.3 8.8 6.4 8.74 0.39 4.12 8.83 6.82 1.66 2.14 12.4 1.92 4.06 1.79 4.65 1.16 9.39 7.71 5.86 8.67 1.35 13 8.41 8.14 4.68 13.9 5.26 9.66 3.36 11.5 8.46 5.89 0.69 4.5 0 3.27 5.27 0 0 8.65 2.03 1.35 4.31 2.78 9.47 1.79 7.66 4.24 3.93 9.75 4.31 8.63 2.84 8 9.29 6.65 13.2 1.51 5.93 7.57 9.42 10 8.61 9.6 1.35 0 1.35 2.14 2.14 6.04 3.6 5.99 11.4 3.87 6.76 8.07 3.8 7.17 3.52 7.32 7.38 8.47 1.35 8.86 3.56 10.1 1.92 11.6 7.9 6.45 8.44 7.66 7.23 3.27 0.95 9.34 6.85 10.3 7.74 5.87 9.47 6.6 6.48 8.59 4.83 9.27 8.84 4.37 7.36 8.59 6.3 8.34 6.66 4.7 7.62 8.45 6.75 9.38 4.95 3.22 6.35 7.9 6.13 0.95 5.66 8.3 3.31 7.86 5.09 8.99 9.11 8.28 9.08 7.28 8.38 9.58 5.69 2.04 11.5 0 2.14 1.16 9.76 11.6 5.81 0 9.81 6.37 8.14 8.75 3.4 14.8 9.71 1.96 10.4 6.79 5.01 2.14 8.14 0 3.48 0.69 9.73 9.01 10.6 8.62 4.76 9.28 8.87 6.79 3.02 12.8 11.8 2.41 8.33 5.92 7.43 13.5 10.8 10.3 1.92 4.48 13.6 0.39 6.87 9.32 0 0 2.71 5.55 1.51 4.19 8.9 4.22 1.16 7.95 9.34 6.39 6.94 8.09 2.51 7.19 2.84 6.81 6.52 5.47 7.6 3.6 8.5 3.77 10.2 5.71 7.35 2.14 9.88 8.9 11.8 6.38 4.12 8.4 3.52 2.9 8.88 4.86 17.1 9.08 14.1 7.77 4.29 6.99 6.92 9.86 9.89 3.36 0.95 0 2.03 7.52 8.62 8.91 10.1 7.43 5.64 5.93 3.17 4.12 2.71 8.04 2.49 2.9 7.56 6.74 11.5 0.39 7.56 2.03 6.65 6.31 5.12 8.36 1.51 5.26 8.57 9.46 10.2 2.78 5.41 7.57 0 6.12 0.39 8.46 1.79 10.2 9.76 7.64 8.71 8.22 11.2 7.8 10.6 8.61 2.96 5.84 4.12 7.39 2.23 10.6 8.89 8.23 8.69 12.1 5.76 8.32 9.24 11.8 7.92 9.52 4.65 2.23 8.21 9.3 10.4 8.67 5.48 7.57 1.79 8.07 4.81 8.31 6.97 5.75 8.54 8.68 1.51 5.59 8.29 8.42 3.02 5.46 10.9 7.95 9.81 9.13 11.2 8.16 8.37 11.5 7.98 8.57 11 10.7 10.5 9.28 7.74 8.45 5.09 4.48 4.54 10.6 6.68 6.4 5.94 8.54 1.66 11.2 3.95 10.6 8.44 7.63 2.57 5.65 7.74 0.39 7.07 2.49 5.76 7.69 6.46 5.61 9.46 8.81 4.23 0 9.28 8.88 0.69 10 10.4 0.95 6.72 8.58 0 9.36 7.32 6.84 8.96 11.4 1.35 4.83 6.06 9.87 7.02 5.72 9.51 2.03 4.14 10.3 2.9 3.07 9.37 5.32 0.39 10.7 4.19 3.22 9.36 7.99 9.6 3.56 7.49 0 9.71 6.38 9.58 10.3 8.13 2.14 2.23 10.5 6.85 4.77 2.32 5.62 9.08 6.8 9.58 5.9 0.95 3.8 7.61 6.99 6.08 8.78 5.37 0.95 6.65 6.82 7.69 2.49 10.4 1.35 9.93 5.46 5.02 6.67 1.92 5.32 8.78 6.75 3.67 5.81 7.68 8.81 6.32 9.34 6.89 1.16 2.41 4.85 0 7.77 6.58 4.63 5.69 10.5 7.67 9.49 5.16 11.7 1.16 1.16 9.16 8.1 6.92 10.4 3.17 2.71 11.8 10.8 0 9.64 3.44 2.03 0.39 0.39 11.7 8.84 2.32 0.69 10.8 9.15 0 5.76 11.2 8.72 7.49 8.06 8.44 2.64 3.95 6.65 8.38 8.47 10.2 12.7 3.77 9.62 5.4 10.5 9.24 3.27 1.66 12.5 9.38 5.83 7.63 7.14 4.29 10.7 2.78 7.31 10.1 0 4.59 11.5 4.91 4.96 7.95 3.95 7.62 11.5 10.2 5.28 10.9 8.22 8.5 8.26 7.47 10.8 0.69 1.79 3.7 2.35 9.47 0.39 4.78 5.19 5.46 11.2 10.5 9.86 6.61 7.27 6.35 8.36 7.03 8.34 3.63 9.44 6.59 1.16 12.2 8.59 8.37 8.39 7.7 7.96 7.29 7.23 6.73 6.31 8.6 8.72 4.86 3.93 8.31 11.2 7 7.86 8.29 5.97 9.1 2.84 4.88 6.13 11.6 8.28 10.2 0.39 9.06 7.22 0.39 6.32 6.59 9.51 10.1 11.7 11.1 6.44 8.98 0.39 12.6 1.51 7.87 0 4.44 0.39 6.87 2.71 4.81 1.23 1.16 1.16 1.92 9.26 9.66 10.6 9.36 12.4 4.44 2.72 5.44 1.35 9.34 8.69 11.3 7.81 13 13.8 1.16 0.39 11.8 1.92 1.35 10.4 0 9.7 1.35 7.43 13.9 11.8 2.57 8.67 8.24 9.61 2.9 8.16 9.29 10.9 10.3 8.03 10.9 7.98 7.11 7.5 5.09 8.98 9.52 5.85 10.2 2.14 9.1 4.46 4.65 7.58 6.36 7.4 4.09 8.45 4.91 8.7 7.16 6.69 2.23 7.67 2.49 9.57 7.81 1.92 4.52 8.45 9.06 2.57 6.79 8.41 8.76 2.27 10.3 6.43 3.48 0.39 11.6 8.95 11.2 5.9 5.27 7.81 5.74 7.38 2.78 3.07 7.52 2.9 2.71 9.99 9.62 6.07 10 7.53 0.39 10.7 2.41 6.45 1.66 2.32 4.04 9.51 6.97 7.58 9.18 6.39 10.1 2.32 10.4 7.98 0 1.16 0.39 7.28 12.7 7.28 10.1 1.35 9.84 8.99 9.36 9.4 10 7.97 7.61 6.72 9.52 11.9 9.32 11.3 6.04 5.56 11.9 12.6 9.93 10.1 10.6 10.8 6.87 10.3 9 10.9 1.35 0 5.28 2.57 9.72 8.99 6.05 4.12 5.31 10.2 9.33 5.9 6.93 0.39 8.77 6.02 4.99 9.17 4.8 7.55 11 12.1 9.99 5.9 10.3 11.8 11.5 10.3 8.17 8.89 7.13 11.5 6.03 9.76 8.23 8.64 9.52 11.3 1.35 9.41 8.16 7.04 8.54 9.73 10.4 0 9.71 3.22 0 9.64 10.7 6.48 0 12.5 6.24 11.4 11.1 3.93 11.8 12.8 8.64 9.77 9.32 9.11 8.74 8.08 6.5 15.8 5.14 10.5 6.95 9.16 13.3 8.77 4.33 7.13 0.39 10.6 10.8 9.68 10.9 10.8 9.85 8.65 10.6 6.41 9.85 9.95 7.32 8.69 9.8 6.99 9.28 12.8 0.39 7.62 11.7 11.2 7.48 7.55 8.9 10.2 9.75 7.11 7.23 6.35 7.27 12 11.3 9.49 11.8 16.8 0.39 3.02 7.99 10.2 6.94 8.28 8.72 10.9 13 14.1 15.6 10.3 10.8 6.37 7.91 3.7 9.45 10.3 4.26 5.02 4.78 11.4 7.99 11.3 10.4 9.52 15.9 7.47 8.12 13.1 10.2 9.54 2.9 0.95 8.75 4.63 8.26 5.77 6.27 10.4 4.61 8.22 10.6 10 8.3 9.4 9.58 8.37 10.1 1.92 8.89 9.45 9.56 0.71 9.57 13 6.49 4.63 11.9 5.28 8.02 10.4 6.33 3.4 4.37 0.43 9.61 0 5.66 9.36 9.3 6.9 12.1 5.98 9.38 9.17 2.71 6.62 10 13.6 7.63 13.1 9.58 6.68 11.4 12.9 14.1 11.4 12.1 3.4 6.8 0 9.58 5.02 6.52 10.8 1.51 0 1.66 9.22 4.94 10.9 7.87 0.69 5.15 7.5 7.25 8.13 9.56 1.16 9.84 2.9 8.02 8.56 9.32 8.22 0 9.31 13.3 11.7 7.33 0 2.49 9.92 9.17 6.24 6.57 10.7 0.69 1.35 6.07 3.7 10.6 9.93 3.41 9.04 7.6 0.39 8.54 2.64 7.45 2.96 9.36 0.39 0 1.92 8.48 6.22 4.77 5.42 10 8.81 7.5 7.2 10.4 7.46 5.28 3.07 7.6 3.52 8.58 8.28 9.9 8.43 4.04 8.04 10.3 8.74 10.7 10.8 8.08 9.28 7.47 9.69 7.56 9.89 4.75 11.7 9.35 6.71 8.83 8.39 11.6 8 9.22 6.38 1.79 9.49 0.95 8.13 5.24 9.32 1.35 10.1 7.65 6.87 10.9 1.16 1.35 8.98 9.35 2.23 4.88 11.8 8.08 5.23 4.63 3.44 2.41 9.62 9.83 9.51 7.39 8.31 9.49 6.45 6.19 7.8 7.84 5.02 12.5 8.1 3.12 13 1.79 8.87 2.14 1.16 7.72 10.4 5.9 8.96 6.42 11.9 5.09 11.7 10.3 7.05 8.2 12.8 9.36 2.9 0.39 2.71 8.23 9.06 6.64 7.74 8.84 9.17 10.4 11.3 4.77 12.8 5.03 9.86 6.46 7.18 10.4 10.1 9.41 7.67 10.9 10.9 11.2 8.29 5.6 0.69 10.7 8.29 10.2 0.95 11.2 5.25 0.39 3.77 10 10.5 10.7 7.35 9.82 8.23 8.07 9.55 8.92 9.19 0.39 10.3 9.32 11 9.96 10.9 10.8 0.39 7.11 12.8 2.14 1.16 8.52 10.1 9.27 0 12.7 2.23 9.04 9.58 8.18 10.5 8.47 9.99 8.96 10.7 13.7 6.51 10.6 11 4.59 10.9 10.5 3.02 9.71 1.92 11 10.2 10.9 11.6 8.6 11.4 10.7 10.2 4.68 7.09 9.97 11 1.92 9.17 8.08 7.78 5.23 6.27 11.2 3.9 12 10.3 10.8 2.32 8.81 9.94 3.22 9.16 12.5 7.19 9.91 6.45 0.39 10.5 8.22 9.45 4.24 9.81 1.79 2.32 9.31 2.9 12.9 5.07 7.09 9.92 6.16 0 11.3 5.62 2.64 6.8 8.1 6.9 7.48 2.96 10.9 10.9 10.1 8.78 8.66 10.8 2.71 8.19 7.85 9.95 7.44 8.44 8.73 10.3 7.69 5.74 5.62 10.4 9.25 11.8 0.95 1.66 7.82 4.85 7.13 9.74 3.48 8.47 12.5 6.76 7.6 9.24 8.16 10.7 6.25 6.18 6.07 8 5.93 8.58 7.46 8.04 9.54 7.78 0.69 7.32 9.36 8.7 4 11.8 4.63 9.76 4.52 4.19 7.84 8.07 4.5 0.69 5.52 3.74 6.6 6.82 9.34 1.16 10 8.92 8.72 3.22 1.16 0 2.14 4.06 2.57 6.61 0.39 6.81 6.26 0.95 0.69 3.63 9.06 7.52 10.3 7.78 8.23 5.68 12.5 5.18 7.11 6.07 2.14 9.31 10.7 3.98 8.83 7.65 7.98 0 11.7 8.39 7.64 3.83 10.3 8.15 9.7 1.35 7.22 7.99 9.85 4.8 7.28 7.2 2.14 11.2 7.08 5.6 2.41 1.51 5.33 5.54 9.59 5.37 5.84 5.99 2.64 12.1 0.69 8.53 10.1 0 7.82 7.16 8.81 4.85 10.3 4.09 4.01 12 8.14 3.32 9.82 8.8 8.2 8.91 7.1 8.79 0.39 9.9 3.48 8.25 1.79 10.1 7.14 8.91 9.26 8.53 8.62 0.95 11.8 7.86 9.4 8.46 3.36 9.38 10.4 8.62 8.45 6.77 4.22 9.35 7.62 4.33 10.2 10.6 9.41 1.79 0.69 4.99 6.73 0 4.79 9.67 0 11.4 6.09 4.5 3.74 1.35 4.91 3.9 9.87 12.5 10.1 9.24 12.6 9.25 9.54 8.64 10.5 11.8 6.42 9.03 8.28 7.18 0.95 0.69 10.6 1.79 5.84 6.74 5.44 2.84 14.1 8.57 8.79 4.54 11.2 4.04 6.39 9.95 7.48 13.4 7.88 6.95 11.3 11.5 9.81 5.33 13.1 9.33 5.16 0 10.7 3.48 10.5 9.76 9.13 6.23 12.3 5.39 12.1 10.7 12.2 8.95 4.75 10.8 11.8 10.6 0 8 10.6 7.83 10.9 9.82 10.4 10.4 9.55 2.22 1.16 8.57 8.18 9.77 12 8.64 9.04 7.53 8.5 0 9.48 9.37 11.3 11.3 9.89 11.4 9.1 10.4 1.16 9.65 8.38 10.1 11.4 4.44 12.1 4.12 5.14 9.8 9.86 9.85 10.1 9.24 12 9.56 8.4 10 12.1 9.22 6.69 10.4 8.51 9.35 9.66 10.4 5.23 10.8 9.91 2.84 9.13 9.44 9.38 1.66 9.82 7.33 10.7 9.89 9.89 10.2 11.4 10.8 10.7 9.49 8.21 12.1 2.64 4.72 11 3.83 11.2 11.5 9.41 9.9 9.41 8.26 10.3 8.95 10.8 10.8 10.6 11.3 6.31 10.2 8.69 9.78 11.1 10.4 10.4 8.21 11.1 8.68 9.27 0 8.84 9.95 7.9 1.16 5.27 6.73 8.34 2.57 11.9 9.28 3.48 11.5 8.38 9.06 1.79 9.38 11.8 0.39 0.95 0 10.4 11.4 9.61 8.34 7.13 9.3 5.6 11.7 10.5 3.7 10.5 8.77 10 8.53 9.59 0 10.1 9.23 11.2 10.8 11.5 10 11.5 8.63 12 11.9 9.57 2.71 1.35 1.35 10.7 9.23 11.5 8.47 10.4 10 8.33 8.65 9.93 7.68 11.3 10.9 10.3 11.9 9.19 3.93 9.9 10.4 11.2 6.55 10.3 9.93 11.1 10.6 9.62 9.43 3.56 10.2 11.7 12.1 10.7 11.9 10.2 7.83 9.93 9.78 11 2.03 8.5 10.8 9.59 10.6 8.78 10.9 8.13 9.45 9.62 10.8 7.69 8.43 9.46 10.7 8.25 10.7 8.55 8.93 10.5 10.8 8.36 8.86 8.89 8.88 9.99 9.44 1.35 10 4.7 10.6 9.31 1.92 11.1 10.2 9.54 4.98 9.56 8.82 11.4 8.35 5.87 6.19 9.69 10.2 11.2 9.29 11.6 8.95 9.91 10.3 6.99 9.84 10.2 8.64 9.85 6.71 9.59 11.1 10.3 10.2 9.59 8.6 10.2 6.33 3.12 1.35 0.69 10.9 10.5 11.1 9.98 10.1 8.27 8.71 12.3 9.39 10.4 9.24 9.08 11.4 9.43 9.78 11.4 10.5 9.05 12.9 9.33 11 8.89 9.64 10.2 9.58 10.5 9.31 8.22 8.23 4.44 10.2 9.49 12.1 10.8 9.12 11.2 10.6 11.2 11.7 11.1 9.82 13.3 8.2 9.91 11.6 10.6 10.7 11.5 9.47 7.77 10.2 12.1 1.51 10.5 7.6 0.39 12.6 8.7 10.2 7.67 8.58 10.6 11.4 10.6 2.41 8.09 9.69 1.16 10.5 10.8 9.42 12.6 9.49 7.19 9.81 6.48 9.23 8.82 8.38 7.24 9.02 9.54 8.06 8.5 9.49 10.4 8.2 10 8.24 9.96 11.3 5.9 7.44 10.3 11.3 11.3 4.33 8.49 10.4 8.54 3.44 10.2 9.91 9.66 0.69 9.34 9.66 9.84 12.1 11.7 11.7 9.25 10.1 3.27 10.1 10.3 10.7 9.69 10 8.85 10.1 10.2 5.47 3.07 9.58 3.36 7.71 10.9 8.26 9.89 6.35 10.3 10.3 10.5 10.9 9.78 5.85 10.6 9.4 6.7 10.4 9.54 0.39 8.44 10 6.93 9.91 11.8 8.82 8.88 9.48 6.73 9.45 7.57 10.9 10 10.9 11.5 7.82 12 10.3 12.3 10.1 11.8 10.2 10.3 8.61 10.1 9.91 9.19 10.4 10.9 5.86 9.3 10.3 12.2 9.74 11.7 1.16 13 11 10.7 11.8 11.1 8.4 9.47 8.98 9.72 5.74 10.5 10 10.6 11.9 12.6 7.52 12.7 11.4 12.1 9.82 11.3 9.33 10.2 8.58 9.81 8.18 10.3 11 9.98 10.8 11.9 10.7 10.5 10.9 10.3 9.39 11 11 8.58 10.7 4.44 8.62 11 9.48 8.25 9.16 8.19 10.4 10.9 9.11 6.33 9.69 9.33 8.22 10.7 6.45 1.35 7.24 8.53 2.64 8.99 11.6 7.82 12 8.31 6.69 11.1 10.3 0.69 8.28 4.91 10.7 11.6 9.36 8.75 11.7 11.6 12.3 8.2 8.49 7.63 7.3 2.32 9.62 7.71 11.3 9.67 9.98 9.79 12.3 11.3 12.2 10.4 7.45 7.48 10.6 11.4 11.6 9.86 10.2 10.4 8.24 9.63 6.82 10.6 7.53 0.95 7.49 12.6 5.88 8.39 9.14 7.1 10.3 9.69 8.99 10.1 10.9 10.6 10.1 10.1 10.8 9.85 9.55 12.6 10.3 9.39 3.95 2.03 13.6 10.1 11.3 13.4 8.22 10.5 7.21 8.41 16.2 11.2 9.8 2.14 5.51 9.89 7.27 2.41 15.1 9.19 5.07 11.2 0.39 8.57 2.03 1.92 9.2 8.93 8.91 10.8 6.33 8.13 9.64 8.54 9.01 9.34 11.5 11.4 10.1 9.58 0.39 3.09 10.9 0 8.98 10.3 0 3.6 11.7 0.69 10.4 10.4 9.39 10.2 11.2 7.92 9.5 10.6 9.58 6.19 5.06 9.61 9.54 4.91 8.63 8.89 8.58 11.4 8.93 3.52 9.52 11.5 10.3 11.4 9.9 9.55 9.69 2.03 7.41 10.4 9.05 9.3 2.64 0 0.69 4.4 11.1 9.97 9.99 11.3 6.9 9.93 10.8 8.29 5.35 10.4 11.6 13.1 10.6 9.36 8.31 9.05 13.2 8.77 9.26 9.23 8.48 9.77 11.7 9.57 9.02 7.88 9.21 7.35 11.5 8.21 11 8.45 12.8 12.9 6.25 10.3 11 10 9.44 8.46 9.38 7.58 0.69 8.89 7 8.26 12.4 10 8.9 8.36 10.1 13.9 10.6 3.67 3.12 8.03 5.46 4.65 5.14 7.36 10.2 9.56 1.51 7.66 9.74 8.79 6.47 8.54 11.6 9.62 2.03 4.56 7 2.58 8.02 5.52 5.87 0 10 1.51 2.9 0.39 6.92 6.64 6.46 3.97 7.5 6.44 5.27 0.69 3.63 10.3 9 6.56 8.5 2.03 6.04 14.8 8.95 11.4 0 15.1 11.9 10.9 12.3 7.96 4.33 0.39 6.68 0 0 11.1 6.42 1.85 9.16 7.84 7.17 8.79 1.16 3.07 9.8 10.5 9.81 5.64 6.16 4.78 9.4 6.33 10.3 5.57 10.9 7.77 8.85 9.53 5.64 6.64 10.8 7.11 5.47 10.4 7.55 7.09 10.4 8.14 7.65 0 10.7 10.7 9.37 7.37 0.69 6.68 5.16 9.53 5.18 7.27 9.06 1.35 2.57 9.36 2.03 4.46 8.78 9.38 6.41 6.53 3.4 0 9.57 8.41 5.84 7.85 11.5 8.01 7.97 2.57 12.3 0 1.92 11.7 6.37 8.87 7.75 8.8 7.62 7.03 5.75 6.21 4.89 0 7.51 10.1 10.2 4.57 1.79 4.91 8.7 0.95 8.17 6.04 8.88 7.04 7.23 12 0 7.46 0.39 0 14.3 7.62 7.48 2.03 8.06 9.1 7.38 10.2 7.71 6.13 2.71 0.95 4.7 9.09 6.78 10.2 7.14 6.4 4.5 9.28 10.1 1.79 5.69 9.87 8.43 0.95 7.47 7.76 0 5.41 0.69 1.92 0 1.35 8.53 0.39 6.16 4.78 1.92 0.95 9.63 4.56 7.32 0.95 2.23 6.57 4.98 8.47 3.12 5.56 6.85 1.51 8.7 6.3 0 1.16 2.71 9.59 9.17 2.57 6.66 1.92 9.91 9.45 9.74 8.68 1.66 9.51 10.7 9.76 9.45 9.76 5.01 4.61 5.59 3.17 2.78 10.7 11.7 7.17 9.85 6.61 10.3 7.98 10.8 10.5 9.12 9.69 9.86 1.16 10.3 3.56 8.6 7.85 10.4 0.95 9.84 11.1 10.2 3.7 5.97 8.79 10.4 9.07 8.15 1.17 13.4 8.59 9.25 10.9 11.2 3.12 0 11.9 7.77 6.25 10.9 5.06 10.4 7.94 14.1 5.79 9.6 9.8 11.6 8.89 10.7 14 8.97 6.44 8.76 9.46 10.1 6.27 9.41 2.96 7.89 5.36 10.5 10.5 12.2 9.9 12 9.34 10.6 6.21 11.4 9.12 9.02 7.72 8.68 6.99 7.59 10.6 11.5 10.1 8.14 8.66 8.96 9.59 9.04 1.51 11.4 5.83 9.33 9.31 8.17 8.77 9.48 2.32 10.2 10.1 8.65 11.8 9.1 7.23 10.7 9.88 10 0.39 9.33 10.6 11.4 1.35 7.14 7.93 10.1 4.44 7.67 8.81 9.56 4.78 6.88 3.7 10.1 5.19 9.05 0.95 1.51 4.56 9.56 10.7 4.51 10.9 9.06 8.85 8.93 9.21 8.13 10.1 10.1 10.9 9.6 9.04 10.7 10.5 10.5 7.79 8.25 10.9 6.29 10.9 10.7 9 5.57 10.3 11.3 9.26 15 10.8 9.95 7 7.23 9.29 9.38 10.6 9.63 9.73 6.35 9.03 0.39 10.3 8.56 9.51 11.3 11.2 8.37 10.3 6.98 2.71 10.5 11.4 4.06 11.1 9.52 9.94 10.1 10.6 7.86 7.79 7.36 9.36 10.7 10.2 9.99 11.4 11.2 8.5 5.05 9.19 4.99 7.78 11 8.82 9.14 7.55 11.2 8.65 9.63 9.53 1.51 8.41 9.58 10 8.17 2.71 9.42 6.63 8.1 9.59 6.97 5.62 6.3 9.74 11 9.14 11 10.8 10.2 9.04 7.26 9.24 11.9 9.78 11 3.07 7.32 9.96 10.4 11.1 9.59 11 8.79 9 1.79 11.1 8.39 11.7 10.7 5.52 8.55 8.55 10.1 10.3 10.4 9.79 13 9.25 9.64 10.6 10.9 12.5 10.9 3.95 8.45 9.95 9.54 7.68 6.15 9.59 6.25 8.92 9 6.24 0.39 10.6 10.8 6.36 9.51 8.58 9.68 9.97 10.1 9.49 6.64 11.1 8.92 8.61 9.5 7.47 10.4 3.56 10.7 4.85 9.69 5.76 8.25 12.5 1.16 9.91 5.8 11.1 10.4 9.2 0.39 9.66 0.69 7.01 7.27 7.35 7.65 12 8.24 7.54 8.73 9.49 8.46 0 3.48 1.79 2.9 10.7 9.81 9.01 3.26 9.64 8.74 2.32 8.81 9.88 9.25 8.54 7.86 7.52 8.22 9.77 9.71 8.54 9.83 7.85 3.17 9.52 9.85 11.1 0 10.4 1.35 8.99 9.83 9.2 6.49 11.3 9.28 9.49 1.93 7.7 9.08 9.92 9.98 9.17 7.97 7 8.22 5.66 10 10.3 4.59 11.9 9.19 9.16 5.38 10.1 10.8 8.85 11.1 9.38 9.74 0 7.98 10.9 7.09 7.97 9.63 9.8 10.2 8.51 8.86 8.72 9.66 10.6 10.3 6.83 1.16 4.16 10 5.62 0 0.95 9.53 3.07 10.9 2.57 8.15 8.37 2.96 10.3 4.29 7.25 2.23 11 12.1 10.1 3.63 6.31 2.29 9.25 6.13 6.79 11.1 1.92 7.78 7.03 0 8.56 3.22 12.1 0.69 7.72 10.6 8.59 9.61 2.03 0 9.66 9.91 7.01 2.23 6.21 0 12.4 9.68 11.8 1.51 7.09 0.39 7.97 9.51 8.92 11 0.95 9.68 12.5 8.86 6.73 8.8 10.2 13.3 10.3 12 9.15 8.57 10.3 9.26 2.14 2.32 9.13 0 9.08 9.14 6.66 11.2 12.3 8.01 12 9.61 9.23 10.9 3.02 10.5 0.69 3.52 9.51 4.79 8.78 10.5 12.1 7.11 1.79 1.51 9.6 10.3 11.8 2.23 3.22 10.3 4.88 10.9 2.71 9.12 7.24 4.92 10.6 8.82 10.8 3.36 8.27 0.95 5.69 10.7 9.06 7.18 1.92 9.7 7.21 9.75 11.5 8.59 9.37 7.33 8.58 9.97 7.67 8.99 9.24 5.35 13.8 11.7 2.14 5.57 8.4 3.74 7.71 12 1.16 9.68 7.43 7.27 7.03 0 5.77 9 8.33 6.93 9.11 10.3 2.78 8.93 0.39 6.64 8.75 6.16 10 8.4 11.2 8.82 3.31 4.06 11.2 7.82 0 7.1 0.95 1.79 4.22 7.68 11.5 3.6 8.02 12.1 4.33 5.28 7.67 10.1 9.47 9.12 4.77 2.49 8.91 8.21 11.2 10.6 11.3 8.64 9.38 11.5 10.2 13.5 8.62 9.44 0.39 9.06 9.54 2.71 6.31 3.07 0.69 8.39 10 8.78 8.48 10.3 0.69 9.81 4.01 1.51 8.51 9.03 8.79 7.79 7.52 2.41 9.97 5.1 6.14 9.55 11.7 0.69 9.95 9.51 11.3 9.4 2.23 11.3 10.9 7.21 11.4 12.7 8.43 9.62 10 9.25 3.12 5.94 7.9 8.6 9.43 8.49 0.69 8.29 7.18 10.6 1.66 7.95 7.82 10.6 10.4 9.22 7.22 11.2 8.11 9.03 10.9 2.9 11.1 8.94 4.85 8.72 8 11.1 7.79 6.02 15.1 8.19 10.1 8.44 9.77 6.74 9.13 9.79 4.48 10.4 12.3 10.6 7.82 5.18 11.2 16.6 1.92 5.54 12.5 12 5.24 1.35 1.51 11.3 8.62 2.71 9.04 10 4.52 10.8 3.07 2.49 12.4 6.63 8.2 9.31 11.4 11.2 12 12.2 9.82 11.2 10.4 3.44 1.7 4.11 2.14 9.71 4.44 10.6 11.9 5.38 7.68 8.88 2.49 9.17 7.02 0 1.92 3.7 6.21 3.87 9.47 1.66 8.68 6.41 0.95 4.72 3.22 6.79 9.51 7.17 8.12 4.58 4.81 4.5 4.57 1.35 8.63 7.39 8.53 14.5 9.96 3.36 7.84 5.84 8.52 1.16 9.08 8.65 9.09 7.55 7.97 4.48 5.8 7.55 6.22 5.14 3.9 5.18 4.44 9.87 4.67 6.71 7.31 10 1.66 8.63 10.7 2.96 4.33 7.74 1.16 3.12 3.6 11 7.64 5.93 5.4 9.77 4.14 9.41 7.97 0 3.32 2.49 9.16 1.66 5.79 2.41 9.6 1.16 6.43 4.72 3.48 10.6 10.6 7.29 6.6 3.95 10.3 4.17 6.11 4.78 8.35 5.68 0 5.26 11 5.89 8.17 4.06 5.97 8.76 3.07 9.54 6.74 7.15 5.09 4.63 2.9 7.25 7.97 0.43 3.6 9.5 8.43 10 9.6 3.12 8.69 8.16 0.95 2.64 8.09 4.09 5.52 6.3 8.99 4.16 10.7 10.1 3.56 0 1.66 8.25 7.7 0 1.66 3.9 10.2 1.79 0.39 8.11 11.5 9.79 8.6 6.94 8.54 5.01 3.22 0 1.66 10 4.81 4.57 9.45 2.49 10.6 4.5 6 1.92 5.52 7.37 8.83 8.41 8.02 4.16 1.66 5.8 4.83 5.44 4.52 4.22 13 1.16 7.89 7.48 7.26 8.61 2.57 5.24 7.19 0.39 2.03 0 3.83 7.48 10.6 7.87 7.34 8.71 9.92 1.51 0.95 0.69 6.75 0 4.33 1.92 7.63 8.57 8.58 3.07 5.18 0 3.22 6.13 8.6 4.22 0 5.98 5.86 1.16 4.19 1.35 5.03 4.09 0.39 8.62 3.17 1.79 2.64 7.08 0 6.95 2.14 9.46 9.14 4.56 1.66 2.84 5.51 0.39 8.07 9.66 8.21 8.18 9.24 1.66 8.97 3.22 3.8 7.4 6.87 7.29 9.07 8.53 8.44 0.39 6.16 8.79 9.82 1.92 8.64 8.32 2.32 9.07 5.34 6.74 10.7 8.35 7.88 9.29 6.46 3.17 1.35 2.14 10 2.84 7.66 5.36 7.75 5.66 4.59 8.65 9.53 1.35 9.32 2.14 8.55 2.41 3.07 4.91 6.94 8.84 5.51 9.65 0.95 8.98 9.17 6.03 4.67 9.95 6.77 8.46 9.09 1.16 4.67 0.95 9.7 4.23 4.24 7.35 1.51 3.17 7.58 1.51 5.26 7.1 6.78 2.58 6.42 2.57 14.3 3.44 3.27 4.26 4.68 7.85 7.9 1.35 10.5 7.04 9.12 5.35 2.57 0.95 8.23 0.39 7.27 10 10.6 2.71 2.03 8.74 3.22 1.35 10.2 9.06 8.43 8.96 1.79 5.59 7.15 7.98 8.44 1.16 2.96 4.21 9.01 9.45 1.16 6.85 7.69 6.17 9.35 2.9 9.82 8.65 12.1 11 9.97 6.85 11.6 0.69 17.1 11.6 11.4 9.74 11.4 11 11.1 0.95 9.86 9.32 8.97 9.68 9.24 8.86 9.96 7.6 13.2 7.9 9.51 10.3 2.78 8.16 0.69 10.8 0.69 9.96 8.81 11.2 10.2 10.3 9.67 9.52 8.47 8.96 6.38 11.3 9.61 9.82 9.91 11.1 8.32 5.81 8.53 9.2 9.26 11.3 8.85 7.88 10.2 6.2 8.19 10.1 11.7 2.78 9.15 1.51 10.5 10.4 8.59 11.6 3.31 8.08 7.61 10.3 10.4 12.4 7.59 9.16 11.2 9.51 8.12 9.82 10.7 8.68 8.84 10.1 7.53 11.2 9.65 9.98 9.4 6.07 11.2 8.38 9.98 8.08 8.61 7.52 8.53 8.48 9.07 9.3 10.7 9.26 11.8 9.9 9.43 7.94 9.54 2.14 8.2 7.2 9.83 3.22 8.77 10 11.9 10.4 0.95 2.03 8.35 5.93 11.5 2.78 3.93 7 6.76 3.56 3.44 0.95 11.6 5.4 3.98 14.7 1.16 11 13.5 10.5 10.3 12.9 11.5 9.46 10.2 8.2 9.25 9.86 9.67 9.99 2.96 12.8 10.5 8.91 8.69 10.5 7.64 9.14 9.27 7.88 9.25 11.3 9.04 9.71 8.18 7.43 8.75 11.7 12.8 9.79 9.44 0.39 12.4 10.6 8.8 9.4 9.65 0.39 9.94 8.57 2.32 8.06 9.01 0.39 8.1 9.44 3.17 10.7 4.59 10.9 0 3.52 8.3 9.15 9.53 2.64 10.9 8.19 7.61 0 8.27 10.9 8.53 8.44 3.44 1.92 10.3 10.7 10.1 0 9.63 10.8 7.61 6.51 10.7 9.74 10.7 6.14 10.3 2.14 9.85 6.86 11 6.78 5.46 9.11 9.66 1.66 9 0.95 10.4 8.76 8.81 9.19 8.25 9.03 9.87 8.55 6.53 11.3 8.73 9.96 12.7 9.07 8.05 2.03 8.83 8.05 0.69 9.42 8.06 7.87 0.95 6.39 8.81 10 7.25 7.58 9.35 0.39 12.1 8.98 12.4 9.77 5.01 10.7 3.95 9.44 7.23 10.5 9.74 8.5 8.88 10.2 10.2 6.34 10.9 11.2 7.3 9.16 8.75 8.95 0 8.55 3.6 10 5.76 6.11 10.6 6.91 12.7 8.81 0.39 10.7 1.92 10.7 9.05 11.9 2.14 4.24 9.82 2.57 4.42 2.49 13 10.5 12.4 0.69 2.9 0 12 6.07 0 8.85 10.9 7.23 11.4 12.4 14.1 10.3 9.49 4.4 12.1 11.3 10.2 0.69 10.2 0.95 1.66 10.3 9.04 9.75 9.64 9.99 0.39 3.98 0.69 1.92 8.74 2.32 10.7 6.16 7.93 8.6 10.6 12.3 10.6 1.66 12.3 13.6 10.9 6.45 6.25 11.6 11.5 9.93 8.01 12.3 11.1 4.17 5.11 10.4 4.57 9.77 3.52 2.49 9.71 5.9 8.7 8.16 4.24 9.99 5.61 6.8 10.8 8.26 10.4 9.73 7.53 10.7 12.5 11.9 6.85 11.6 10.9 10.8 11.9 8.82 10.5 9.41 12.1 9.61 9.74 11.4 4.19 9.44 14 13.3 12.3 8.51 10.2 11 6.45 3.6 8.91 9.15 0.39 8.55 5.93 8.49 4.63 11 9.89 6.79 5.21 4.19 10.2 12.3 8.75 4.88 11.5 2.41 4.22 3.77 8.47 9.38 8.79 8.56 12.3 10.2 9.42 11.7 12.9 10.5 10.4 10 10.1 3.6 5.1 9.5 9.81 13.7 8.88 0.39 5.67 8.77 9.41 8.13 5.72 8.38 1.92 8.05 1.16 9.78 0.39 9.3 12.3 6.96 13.7 10.8 12.9 11.9 11.6 12.3 11.3 11.8 13.6 0.69 12.3 13.2 0.95 1.35 2.32 9.45 6.24 3.8 5.07 2.49 0 2.14 1.35 2.49 2.23 2.23 0.39 8.37 5.76 5.33 4.67 2.41 3.31 2.64 0.95 0.39 9.78 1.79 2.9 11.3 5.28 9.48 2.49 10.5 0.39 4.73 10.1 0 8.89 9.94 0 2.49 0.95 8.65 0 3.93 9.63 10.1 8.78 7.08 10.9 5.32 1.16 10.7 11.1 11.2 11.8 11.4 10.3 1.51 7.96 6.59 3.52 12.2 10.8 8.32 7.13 4.75 11.7 11.1 12.9 10.8 7.26 7.1 10.8 15.4 11 5.48 2.41 13.7 12.2 13.1 4.5 3.91 12.5 9.25 14.3 11.8 6.29 10 11.3 10.2 13.5 3.63 5.49 16.4 11.6 7.97 4.91 2.71 0 1.66 0.39 0 1.16 7.95 8.03 5.91 10.4 10.8 3.77 5.56 0.39 1.96 1.76 8.73 8.49 1.92 7.76 1.16 8.69 7.13 2.41 7.62 0.95 2.71 3.17 2.57 6.95 8.35 8.93 1.16 6.46 3.4 8.13 5.83 2.03 0 7.36 3.93 8.22 10.9 0 8.26 7.41 3.36 8.51 8.45 9.17 8.44 10.7 9.47 7.66 8.97 6.63 7.56 2.03 0 4.57 6.01 1.16 4.12 8.5 6.09 5.41 1.92 7.37 7.63 2.84 6.41 2.06 4.89 6.45 8.01 6.46 2.14 12.9 9.35 0 7.64 12.9 8.91 4.94 4.24 8.34 3.7 13 5.61 3.12 2.14 5.33 10.1 13.6 9.31 0 0 2.03 5.31 0.69 9.78 4.98 0 5.59 0.95 8.59 3.67 9.18 8.17 3.36 0.39 1.35 7.7 6.64 11.1 6.25 6.27 8.44 3.8 1.35 6.18 5.25 7.5 5.37 8.62 9.37 3.02 1.94 0 9.13 1.66 10.5 10 9.87 10.4 1.16 10.1 2.96 5.96 4.61 9.61 11.5 3.87 8.34 10.2 1.16 8.58 0.95 2.78 7.17 10.8 9.79 2.23 9.83 6.68 5.52 6.35 2.23 6.61 4.12 6.83 0.39 8.43 0 4.17 7.57 6.92 7.5 8.09 1.79 2.41 3.83 0.95 2.57 4.42 7.96 9.26 3.56 4.24 3.52 5.44 7.16 6.05 0.95 4.56 1.16 1.51 4.44 1.51 1.35 11.2 7.17 7.68 2.57 0.95 8.62 9.36 1.35 4.19 10.4 3.56 11.2 4.12 6.09 2.84 3.02 3.48 2.9 6.67 2.57 2.14 1.35 7 3.77 6.49 0 1.79 2.71 9.03 2.41 10.5 3.6 3.42 9.92 10.7 4.44 2.23 9.41 0.69 10.1 6.01 6.95 6.07 12.7 11.4 7.1 8.18 8.2 5.61 8.49 3.48 8.17 11.6 9.7 0 10.8 7.84 5.67 2.23 10.1 8.43 1.66 7.25 12.5 0.39 6.95 13.4 8.26 0.69 6.07 6.72 2.23 9.47 13.1 6.66 15.5 6.89 9.37 1.66 5.01 2.03 6.12 10.7 9.2 8.35 15 9.57 8.85 7.52 6.29 2.64 10.5 8.3 3.46 9.93 0.89 9.87 9.07 8.68 1.16 1.51 6.74 6.02 4.19 12.7 2.64 0.39 0.39 8.27 11.1 9.67 1.92 3.48 10 7.35 5.94 0.39 1.51 5.57 5.76 7.42 8.78 1.92 4.29 7.75 4.94 10.3 2.96 2.03 5.87 0.39 0.95 12.4 2.03 0.95 1.35 7.1 9.15 1.16 9.91 2.32 0.69 2.64 3.95 11.1 2.63 9.37 13.1 9.83 4.26 6.87 9.57 5.95 5.34 0.95 7.35 1.16 4.22 10.3 11.5 12.3 9.99 10.9 8.78 9.27 7.84 11.2 8.77 4.06 8.37 8.38 2.71 3.48 9.98 3.77 4.31 8.48 1.79 8.66 9.88 8.77 8.86 11.5 8.6 3.67 0.39 11.8 0 11.9 8.34 11.4 9.67 11.4 7.08 10.5 8.59 2.23 9.72 10.3 3.9 6.61 9.49 7.93 11.9 9.42 5.1 8.38 10.3 9.71 5.26 12.8 6.07 10.8 7.98 9.46 9.6 2.71 8.18 6.01 5.46 12.9 7 12.9 8.57 10.3 10.8 8.79 10.8 10.6 8.84 4.54 4.91 0.39 0.69 2.49 12.2 5.25 2.96 11.8 9.67 11.3 5.09 9.9 11.3 9.88 11.6 12.3 9.51 11.2 8.1 4.81 12.2 8.3 15.8 14.4 13.8 12.9 9.09 10.4 11.2 9.75 10.7 2.03 4.88 5.96 1.66 5.05 1.79 0.43 9.99 7.35 11.2 5.65 7.14 10.2 8.62 1.16 5.88 0 2.14 7.32 2.71 7 5.6 7.94 8.39 8.63 8.74 3.44 2.84 9.88 7.88 9.49 2.41 7.94 0.69 4.77 11.3 6.13 4.44 7.27 7.3 7.22 7.2 1.51 8.4 2.14 8.8 9.67 13.3 5.79 7.97 5.39 10.7 3.27 6.85 6.35 3.48 6.64 1.51 6.64 9.2 9.36 4.43 2.32 6.11 2.23 2.14 7.5 7.28 7.39 5.06 8.82 7.7 0.39 6.58 0.69 2.23 2.84 0 3.75 0 7.46 0.39 2.41 1.16 9.67 7.17 9.84 2.23 9.83 13.6 4.17 7.34 7.46 5.21 9.03 7.1 0.39 9.9 1.66 6.84 6.86 9.22 7.51 7.43 8.96 12.5 5.01 4.86 11.7 13.6 8.71 8.83 5.24 0.95 5.49 12 1.16 1.16 6.21 3.56 11.7 0.39 1.79 0.39 8.58 7.61 2.64 6.55 12 10.8 6.56 3.27 12.3 2.41 5.47 8.11 8.17 4.29 11.7 10.2 8.18 11 0 0 0 10.7 0.39 0.69 10.4 0.39 4.09 10.9 2.03 0 0.39 0 1.66 0 10 7.02 6.03 10.8 10.3 11.7 8.87 10.1 8.91 10.4 7.58 11.8 11.5 9.59 1.35 0.69 14.2 9.91 0 8.56 7.11 0.69 13.2 6.68 4.94 12 0.95 5.01 4.31 4.52 5.58 1.42 8.94 1.35 0.95 5.25 9.13 2.14 4.56 13.2 3.52 9.94 7.89 1.16 7.31 3.95 4.99 8.84 8.37 1.35 5.78 6.71 5.58 6.82 7.65 0 5.67 4.94 4.19 3.77 5.4 2.32 5.99 10.7 1.94 11.8 9.75 3.44 1.51 11.7 6.24 10.6 4.44 4.59 8.67 4.56 2.41 9.42 4.4 7.12 5.33 5.39 2.24 6.73 8.22 8.05 5.18 8.1 10.2 6.76 0.39 12.1 1.79 7.3 8.16 7.94 7.9 7.57 6.21 7.39 3.8 1.92 8.14 7.39 5.58 0 8.01 3.95 9.9 3.74 9.94 8.42 3.4 6.22 5.41 8.17 9.16 0.95 8.71 1.16 7.65 9.62 2.64 7.57 8.3 7.02 2.03 9.5 11.7 10 0.95 7.91 0 5.27 4.54 3.36 5.6 9.34 0.39 4.57 5.83 2.96 5.31 4.5 7.77 8.05 1.64 12.3 7.56 4.53 10.3 2.57 2.64 5.02 5.07 8.84 2.57 3.74 7.78 2.03 8.09 0.39 5.82 2.23 1.2 7.05 0.95 3.4 4.33 7.54 6.95 4.19 3.36 0 3.12 6.24 0 4.24 3.48 6.09 0.39 2.9 3.17 7.89 8.01 8.44 9.07 10.8 6.75 13 0.95 13.3 0.69 12.3 3.63 9.27 5.37 12.9 12.7 5.65 5.32 10.9 12.7 11.8 3.22 5.46 4.31 11.1 6.71 11.9 3.12 0 7.15 8.67 7.44 5.28 6.05 8.38 7.03 0.69 12 11.8 12.9 5.77 10.1 2.32 6.63 10.6 6.33 9.65 2.03 9.07 13.9 12.1 1.92 8 7.94 11.2 0.39 5.45 10.5 9.13 0 9.13 9.16 11.5 9.95 11.3 7.54 10.8 2.71 7.36 6.4 8.68 10.1 2.49 1.26 7.13 7.27 8.91 8.78 10.2 8.09 5.84 3.67 10.1 7.33 7.51 7.91 6.24 12.8 1.79 8.88 7.87 10.5 0 6.01 10.2 11 11.7 12.6 8.97 3.12 8.21 8.63 8.57 5.41 6.25 8.64 6.4 11.3 9.76 7.78 1.66 8.92 8.42 2.19 7.92 6.78 0 6.98 2.71 2.03 8.12 8.8 2.41 9.31 5.84 5.71 6.34 4.88 11.6 8.38 0 2.78 10.6 4.99 2.23 0.39 8.22 8.63 7.54 4.37 4.77 0.39 5.38 0 6.59 0.95 2.71 6.28 11.8 2.03 7.51 6 6.46 1.16 5.11 3.52 1.92 6.59 1.6 8.7 5.09 6.07 8.61 1.35 9.5 6.78 4.68 7.83 6.21 9.13 10.1 5.05 7.82 5.32 10.1 5.39 5.11 8.1 1.51 0 2.28 0 6.43 7.26 2.49 2.9 9.37 4.14 0 5.03 7.1 9.78 8.22 1.35 8.22 3.9 9.01 0 2.32 7.38 0 4.88 9.97 9.56 8.58 0 8.74 10.4 11.4 12.7 9.72 9.09 10.4 0 8.88 11 6.16 6.3 3.18 4.12 12.5 6.86 7.74 6.91 8.76 9.26 8.75 9.34 11.1 1.35 10.4 3.95 0 7.74 12.2 13.7 10.7 5.15 7.41 0 1.92 14.2 7.52 3.48 9.12 2.9 4.52 9.34 6.53 9.32 3.02 10.7 6.81 10.2 13.9 11.8 12 12.4 2.78 6.25 3.77 5.73 7.28 10.5 11.2 9.38 6.51 9.22 11.5 11.2 10.9 7.9 10.5 10 10.8 8.21 10.6 9.3 3.67 5.13 10.2 8.78 8.98 3.8 6.38 8.33 8.06 11 10.7 9.9 10.4 10.8 12.2 2.14 9 9.31 8.72 11.7 8.41 6.56 8.1 11.4 10.7 6.89 5.31 10.2 6.3 3.11 6.09 2.03 2.32 7.86 7.36 7.56 12 4.06 2.23 12.6 8.85 2.64 10.2 7.7 8.68 2.23 11.6 10.4 1.79 10.2 11.1 10.4 6.93 10.9 9.1 3.77 5.84 13.6 9.76 10.7 9.2 9.77 9.23 10.6 11.7 2.64 5.93 10.6 0.39 11.3 11.4 9.24 11.2 9.89 7.24 8.91 10.3 10.7 10.3 7.04 10.6 10.8 11.1 1.92 4.35 8.16 9.97 11.1 9.06 9.77 9.25 10.1 10.2 1.16 0 9.99 11.4 8.38 9.93 8.98 9.65 6.05 11.7 7.59 7.27 11.8 9.58 6.25 7.34 10.4 8.15 9.12 10.8 12.3 9.98 10.9 4.56 10.1 13.7 4.52 8.4 11.8 5.72 0.39 8.67 9.4 8.15 6.85 10.7 8.39 9.76 6.6 7.57 10.8 10.7 11.2 13.3 3.8 2.84 10.1 11 11.7 9.62 10.4 4.68 11.2 3.83 0 0 8.27 8.12 5.83 10.7 5.24 13.3 7.25 1.79 7.38 8.64 1.66 7.2 8 5.29 9.42 0.69 8.94 10 0.39 9 9.71 9.8 10.2 9.87 5.29 1.35 8.65 8.41 7.11 9.12 9.68 3.8 6.81 8.36 10.9 1.51 0.95 10.2 14.1 0 5.72 5.81 7.7 10.6 1.92 2.49 1.79 5.44 5.61 2.9 7.68 0.95 0 3.07 8.49 7.05 6.29 11 10.2 5.75 6.49 2.15 3 7.66 4.09 11.3 8.04 1.35 7.41 0.69 10.3 7.48 7.39 9.6 7.98 1.35 8.89 10.1 5.68 2.96 5.15 1.66 5.4 1.51 5.02 6.75 0 0 7.99 8.89 8.75 8.03 12.6 3.63 6.4 5.87 6.3 6.89 2.49 3.56 8.13 7.13 5.16 5.58 7.27 7.48 2.71 5.36 5.36 0.39 5.52 8.29 6.37 3.9 4.17 0 2.14 3.27 1.16 1.66 8.3 1.79 8.94 4.83 6.74 3.36 5.84 3.02 5.6 10.6 0 1.66 3.44 0 5.66 5.37 6.83 0.39 2.9 6.73 5.28 2.41 1.16 9.89 8.2 9.54 8.88 0.69 6.03 12.1 12.4 9.21 0.69 8.91 5.88 1.16 9.85 13.4 6.97 8.18 6.03 5.27 6.11 13.7 14.3 15.6 7.67 13.4 14 8.94 4.82 8.83 6.48 9.69 10.1 9.42 9.43 6.03 1.92 11.2 8.53 9.35 8.52 1.51 1.51 9.34 9.68 7.59 8.94 9.27 10.1 5.81 10.4 4.57 5.21 5.55 1.35 0.95 0.69 7.84 9.33 6.43 9.13 10.6 2.23 7.32 13.7 10.9 9.34 11.5 8.61 7.08 13.9 9.29 1.66 11.7 10.9 9.55 9.11 11.3 10.5 6.35 3.7 8.13 9.76 11.3 10.6 9.4 9.6 6.5 10.2 9.08 13.6 9.58 10.8 12.1 12.1 5.85 12.5 8.56 7.7 11.2 12 10.5 11.8 3.12 9.47 9.08 10 10.2 2.14 9.38 6.57 5.01 9.33 13.5 9.76 10.7 9.99 9.88 11.9 11.8 11.1 10.4 9.12 9.79 8.8 10.1 10.6 9.5 9.74 11.9 9.45 9.5 10.6 10.6 9.76 10.6 11 11.4 10.5 10.4 12.1 9.93 9.76 10.7 10.4 11.2 9.59 10.9 9.92 10.6 10.2 12.1 9.65 10.1 8.46 13.5 13.2 10.8 10.5 0 5.89 7.98 7.28 9.36 0 0.69 2.78 1.16 9.86 8.47 4.19 6.85 7.6 10.5 11.7 15.6 11.2 5.24 10.1 7.81 5.9 11.4 9.33 10.2 5.75 13.1 1.79 12 10.5 9.9 8.39 11.3 10 9.22 10.5 8.96 7.47 9.08 8.35 9.79 9.9 10.4 0 9.69 9.3 10.7 5.53 1.66 11.4 13.4 5.86 10.3 11.3 2.32 9.51 4.29 9.13 10.4 4.24 1.92 8.77 10.2 9.6 11.4 9.84 10.2 8.64 11.2 5.34 1.16 9.12 12.8 3.17 8.95 10.2 10.2 9.13 10.3 12 10.8 10.7 7.33 0.95 8.99 4.29 6.67 8.89 8.58 7.68 13 2.71 2.49 12.4 8.28 5.49 5.51 1.35 2.9 9.1 11.2 10.2 9.9 10.9 8.87 3.95 9.54 7.93 5.75 1.66 12.7 10.4 10.4 1.16 8.58 0 13.2 5.79 3.07 1.66 0 8.95 4.86 0 4.44 9.3 13.1 11 13.3 9.21 11.3 9.59 10.8 8.68 5.42 9.82 9.25 7.37 8.13 0 9.43 5.58 5.21 10.4 9 6.6 8.89 9.22 0.39 3.4 10.4 8.7 6.61 4.19 3.07 1.92 12.9 11.6 10 11 9.58 2.64 12.3 8.31 3.52 1.51 1.51 7.4 4.81 1.35 0 10.4 10.8 13.3 10.2 8.21 9.22 9.65 8.65 1.66 5.5 5.23 8.77 11.9 9.1 8.03 8.02 2.41 2.57 10.8 3.52 11.4 3.95 4.7 3.83 6.13 11.1 9.56 3.8 2.03 9.74 4.23 3.52 5.36 7.84 4.35 6.53 9.67 14.1 4.29 6.08 11.2 0.95 1.51 6.5 14.2 7.18 13.1 4.09 11.8 11.5 9.47 4.04 10.3 8.7 8.14 15 9.04 10.3 8.75 7.85 12.8 7.89 1.16 11.1 13.5 8.81 2.56 11.4 8.03 10.7 3.36 9.65 9.24 5.02 9.41 9.97 8.05 10.5 5.27 11.9 5.55 6.79 11.7 10.3 8.07 0 5.16 0.95 8.38 9.82 11.4 12.1 10.4 10.7 8.8 9.17 1.16 3.58 3.95 12.4 0.95 7.78 12 6.16 3.93 0 11.9 10.6 11.1 11.3 11.4 11.4 10.9 8.97 10.6 12.6 11.7 1.35 13.6 7.15 2.42 0.69 9.21 10.5 9.92 11.5 10.9 10.8 9.77 8 7.93 6.99 8.47 7.35 10.5 8.8 9.8 4.85 7.86 9.44 10.4 8.44 12.1 8.98 7.68 8.99 8.76 10.1 10.3 5.64 8.18 11.3 6.98 9.69 7.92 10.6 10.5 9.95 10.6 11.3 8.54 10.5 0.95 7.99 4.67 10.1 6.8 8.51 8.88 10.7 11 6.15 8.11 10.8 3.31 8.12 9.68 9.38 9.68 9.44 8.46 9.76 8.67 11 8.47 10.1 9.78 11.9 11.7 9.76 10.1 0.95 9.76 2.64 5.53 4.88 8.68 7.42 8.56 10.2 9.65 10.8 8.38 9.31 9.88 9.55 9.21 10.7 11.1 8.96 8.34 8.49 8.77 10.7 7.85 12.1 11.2 11.7 10.6 8.09 10.5 10.3 9.68 10.1 9.29 10.9 8.83 11.2 7.77 9.73 9.96 10.3 9.85 10.1 2.41 9 7.29 8.71 8.97 10.6 9.81 8.09 8.99 8.33 9.89 9.44 11.9 8.95 11.3 9.65 12 8.51 12 0.39 8.83 8.06 9.58 9.41 11.1 7.81 10.4 8.43 10.8 7.81 6.64 3.7 8.56 8.99 7.87 8.04 7.87 8.01 8.12 6.69 10.5 8.56 8.44 9.51 11 10.8 8.32 11.1 6.5 8.36 9.62 9.29 6.32 10.4 9.14 10 10.4 6.82 8.53 8.92 4.86 1.16 4.04 9.89 1.92 10.8 8.06 8.72 8.07 10.2 9.66 9.36 10.6 0.95 10.3 9.2 6.4 6.79 10.2 8.89 11.7 10.5 9.36 9.11 7.31 8.52 8.96 0 9.69 9.84 7.26 9.82 10.7 8.23 8.73 9.23 9.54 5.85 6.02 4.14 10.8 9.93 10.9 11.3 8.45 7.23 7.38 9.71 9.67 9.3 11 7.56 10.1 10.1 5.01 1.66 9.76 8.91 9.23 9.01 10.9 10.4 10.2 9.78 7.72 6.76 10.6 8.17 10.2 3.17 8.25 10.9 0 9.07 9.46 3.48 9.66 9.72 3.4 7.55 10.8 0 10.2 2.14 10 9.27 7.91 9.93 10.3 11.4 11.2 6.4 11.3 3.63 9.84 6.3 6.74 4.17 11.8 9.63 6.19 8.44 9.13 9.46 9.88 9.97 10.4 3.56 9.47 0 10.6 9.65 11.2 9.3 9.95 7.1 2.41 10.7 8.87 10.5 3.6 10.4 10.7 7.08 11.9 8.34 8.28 7.49 8.79 7.46 11.1 0.69 9.31 13 8.36 9.68 4.35 9.92 7.08 9.13 11.2 9.88 12 3.52 9.94 9.56 9.14 8.99 4.59 9.38 11.5 9.28 9.64 8.32 10.2 10.6 8.53 10.2 11 9.63 9.8 10.9 9.3 2.96 10.7 9.17 10.9 12.2 0 9.08 4.92 9.73 7.4 3.31 10.8 10.1 8.31 0.39 9.95 9.46 7.61 10.6 2.57 8.86 6.97 10.6 12 9.35 10.9 8.64 11.5 9.53 8.14 9.76 11 10.9 10.8 9.52 10.8 4.01 1.79 7.68 8.75 8.76 11.1 11.1 9.75 8.53 9.19 8.87 9.59 10 5.34 8.48 8.67 5.59 9.58 9.18 7.62 9.31 7.61 8.44 9.46 8.64 7.95 8.46 9.72 8.58 11.6 2.78 0 7.15 4.59 8.66 2.49 10.7 11.1 11.4 9.41 10.8 9.82 9.36 10.8 9.83 8.52 8.48 11.8 10.3 10.5 7.95 9.38 10.3 10.7 10.2 11.8 11.1 10.4 11 7.61 9.8 9.03 12 7.94 10.6 9.31 8.86 12.5 9.26 1.66 8.37 10 11.3 9.63 9.52 11.6 7.52 11.6 7.78 8.48 11.2 10.7 10.3 10.8 8.62 11.2 10.1 11.2 9.84 9.59 4.26 9.41 7.68 11.6 8.7 7.29 9.02 7.79 13.8 9.84 8.04 11.2 8.9 10.5 9.36 12.8 8.51 6.88 3.02 5.65 7.72 8.05 5.51 10.4 8.5 8.29 9.66 9.21 9.57 9.89 11.8 10.3 5.93 9.6 0 7.5 10.6 10.2 10.4 8.03 11.2 9.68 3.48 11.5 13.4 8.8 10.8 12.2 8.22 10.5 1.79 8.2 7.68 2.49 1.51 9.62 10.5 1.66 10.9 10.4 8.56 5.64 9.36 10.1 9.97 10.9 6.15 7.55 2.32 9.51 10.4 0 6.03 10.7 9.77 8.68 9.55 11.6 11.7 7.7 7.07 5.61 8.75 10 11.4 10.4 10.8 8.75 9.14 10.1 7.65 8.96 8.47 10.1 9.44 0 0 9.03 4.37 10.8 10 9.24 7.76 12.5 10.5 3.44 12.3 7.84 10.7 6.03 11.6 0 10.3 11.6 12.6 12 9.29 10.9 10.7 7.17 0 11.7 12.3 8.67 11.4 12.3 9.92 8.75 6.32 3.12 7.46 4.04 11.2 2.71 12.5 2.32 11.2 10.5 9.31 9.21 11.4 10.7 3.52 9.14 10.2 10.2 0.95 11.1 12 8.2 6.89 7.9 7.71 8.02 8.99 10.6 8.34 9.5 2.14 11.3 9.96 9.28 10.7 8.13 11.1 8.93 6.13 5.21 10.6 10.8 10.9 10.9 10.1 9.41 1.16 9.08 8.81 11.2 1.66 9.42 9.79 1 13 9.77 1.51 0.69 3.22 9.2 7.13 9.86 9.67 8.24 6.17 11 5.99 9.4 10.3 8.7 7.16 10.9 8.34 8.56 6.8 9.97 8.86 9.21 1.92 9.84 10.8 9.02 8.79 8.16 7.1 9.16 11.2 8.95 11.6 6.07 8.21 8.64 6.94 5.09 3.27 3.36 5.02 0 10.7 5.25 12.8 12.4 0.95 9.27 9.68 7.96 13 8.9 7.73 10.1 10.7 5.47 11.1 0.39 11.6 3.17 11.6 4.31 4.57 0 1.79 12.8 10.9 7.86 9.06 9.97 8.19 7.98 9.47 5.22 6.15 3.36 1.51 10.3 9.04 3.52 5.13 1.92 2.57 11.3 0 9.05 6.85 0 5.62 11.2 13.5 9.07 9.11 8.82 8.61 7.68 9.74 9.31 8.63 9.23 6.35 10.2 8.72 7.58 10.8 9.33 5.88 0.69 5.5 8.18 9 4.33 7.17 6.54 5.76 8.41 6.28 10.5 8.59 4.03 9.92 9.79 10.8 0.69 11.4 8.42 7.55 7.98 9 1.02 8 7.88 7.38 8.36 9.2 9.32 11.9 11.3 11.8 1.16 6.44 3.02 8.17 7.96 9.44 10.5 9.18 5.23 4.53 9.47 9.53 12.4 10.7 10.5 2.64 4.06 8.38 7.33 7.88 11.2 9.18 9.65 10 9.82 3.4 8.93 9.62 9.12 11.4 9.71 9.68 11.1 10.9 4.19 11.7 9.62 2.96 2.57 11.1 9.81 8.43 10.1 7.42 9.19 6.59 4.61 9.94 5.75 6.68 8.69 5.19 10 10.3 8.49 9.15 2.23 1.79 11.1 10.3 11.1 10.7 8.4 9.67 8.58 1.35 10.2 8.67 11 12.3 8.79 9.55 10.6 8.07 10.6 9.6 3.36 10.5 8.4 9.27 7.34 8.39 8.64 9.87 8.91 9.66 8.38 11.2 9.42 4.57 12.4 8.29 13 10.3 7.62 6.32 10.1 6.46 7.11 8.23 8.12 8.29 5.26 3.56 9.71 8.42 7.3 9.32 1.79 8.99 7.87 8.41 9.11 10.6 9.2 10.6 11.1 8.47 9.44 8.37 10.9 10.2 7.45 9.71 8.77 9.52 7.96 7.09 7.25 11.4 10.4 0 8.66 10.4 6.76 10.1 11.3 2.03 11.1 1.66 9.44 10.2 9.51 7.83 3.84 9.19 9.79 8.5 11 10.5 2.49 6.51 8.5 7.94 10.6 9.84 2.32 10.3 8.93 11.4 9.59 11.5 7.48 10.1 9.7 10.6 6.2 8.84 10.9 9.52 10.1 9.34 9.96 9.28 8.2 10.1 7.92 2.32 4.04 9.88 1.51 12.2 7.95 1.51 10.3 7.14 8.95 2.03 10.6 1.66 9.28 3.36 9.22 0.39 5.52 7.74 8.82 10.7 6.96 8.19 10.2 9.82 8.14 9.59 9.56 11.5 9.12 8.95 8.06 10.4 13.9 9.34 8.85 9.78 7.45 7.75 2.23 9.32 11.1 11.1 7.87 9.25 8.45 8.12 7.17 9.69 8.04 9.2 4.29 8.19 10.5 9.01 8.8 10.3 9.66 8.13 7.4 4.46 9.62 7.32 0.95 7.84 0.69 9.66 6.03 6.58 0 10.7 8.55 10.8 11.7 6.54 8.48 9.38 11.3 6.45 10.9 4.91 9.36 8.71 8.45 5.18 8.25 0.39 10.1 9.63 0.95 10.6 9.22 11 9.96 8.46 9.99 8.09 8.36 1.51 11.5 9.1 9.83 10.4 9.65 8.22 11.4 7.16 9.39 8.59 8.73 8.14 10.5 8.66 11.1 8.56 11.4 9 9.62 9.76 11.4 9.3 8.2 10.2 8.23 8.48 7.68 4.24 9.86 9.07 2.9 8.75 10.3 8.2 9.92 2.78 10.5 7.55 9.83 7.69 10.8 11 9.18 11.7 9.05 7.54 11.1 9.1 5.47 8.39 10.9 9.83 11.6 9.95 12.3 9.65 8.41 8.24 4.8 9.11 8.44 9.63 4.03 8.93 9.73 10.5 11.9 6.49 8.93 6.62 10.5 13 8.34 9.39 10.1 8.71 7.71 9.78 8.74 8.23 8.22 7.67 7.23 11.2 9.03 10 6.69 9.2 8.67 8.81 0 7.84 8.62 8.76 7.97 9.07 10.6 7.95 9.72 11.1 10.3 1.35 8.06 7.81 9.27 9.75 6.65 9.53 6.97 9.53 5.58 11.4 11.5 6.88 7.64 10.4 7.69 10 9.72 10.5 6.59 11 12.5 11.9 6.68 7.85 7.99 11.2 9.04 7.82 8.02 7.13 9.22 11.2 5.53 10.3 8.3 8.26 4.96 9.86 9.04 4.01 10 0 3.12 9.54 3.44 9.95 9.25 5.73 7.46 9.39 10.8 11 9.89 7.24 4.22 9.22 7.32 9.41 7.77 8.63 11.1 7.64 12 8.99 8.43 8.63 10.5 9.62 7.73 8.96 1.51 7.58 9.11 7.58 7.49 7.32 9.76 7.17 9.75 2.64 11.6 4.86 7.82 6.83 9.62 8.07 9.71 11.5 7.58 9.5 10 10.3 7.27 9.36 6.48 9.63 0 7.91 9 7.2 7.32 8.16 10.6 3.12 10.3 8.78 9.93 9.81 8.63 8.4 7.41 11.1 9.71 9.95 8.03 10.1 9.49 8.17 9.89 8.51 10.2 8.82 8.97 3.63 8.96 9.21 8.82 9.82 4.29 8.21 8.52 8.87 7.57 1.51 6.66 9 11.1 9.89 8.7 5.44 9.47 8.17 10.1 10.6 9.76 8.97 11.5 3.98 9.23 9.92 9.96 8.7 8.91 7.99 8.91 11.4 9.62 10.7 10.4 8.54 4.29 6.56 10 9.07 8.86 8.49 8.81 9.43 11.1 5.14 6.86 10.1 8.36 8.27 12.6 8.45 8.59 10.3 9.3 7.26 10.7 11.5 9.92 9.11 3.95 9.1 8.33 10.8 8.42 0 9.75 10.4 9.26 7.72 5.27 9.94 7.43 9.67 7.68 9.99 11 8.73 10.9 6.35 10.9 3.27 9.32 7.77 11.6 7.47 7.97 9.41 7.47 9.43 10.1 3.77 3.36 8 7.54 8.38 8.69 9.65 9.95 10.4 9.32 7.1 10.3 4.85 8.94 10.7 9.37 7.8 9.47 11.9 8.38 6.59 8.79 9.51 10.2 1.92 6.59 10.3 10.5 9.65 10.7 8.83 9.56 9.77 9.54 10.6 8.53 10.4 7.36 9.02 7.18 8.91 9.5 3.02 10.8 9.87 10.4 8.57 10 3.31 10.8 10.3 9.04 7.34 8.98 8.58 9.86 8.14 7.89 1.92 5.41 9.29 7.23 5.94 0 10.5 11.8 4.14 9.11 8.33 9.84 11.1 7.44 9.28 8.42 7.57 9.36 9.22 8.71 1.16 10.1 9.47 1.66 9.52 9.96 9.91 10.2 10.1 11.8 9.31 9.28 9.1 7.4 5.31 9.95 8.6 8.17 10.3 8 4.24 8.58 9.8 10.2 9.93 8.53 10.4 7.18 7.4 8.7 8.11 8.02 7.58 10.1 10.9 6.22 6.48 8.63 10.6 10.5 9.52 9.68 10.1 8.91 7.88 5.92 6.75 10.2 5.94 0 3.4 9.49 10.8 4.24 6.33 9.03 1.92 10.6 9.53 9.52 10.5 6.76 10.2 7.97 10.9 5.28 7.28 11.3 10.6 1.92 5.02 5.24 8.73 9.42 9.22 0.69 1.79 1.79 8.41 4.91 9.44 8.64 8.46 1.35 9.23 10 8.52 10.3 8.18 11.6 7.76 2.84 9.63 6 9.45 11 8.9 8.06 7.55 7.87 9.98 9.41 3.77 7.72 1.79 4.29 7.74 4.88 0 9.58 8.28 8.48 9.96 9.38 7.33 3.83 2.32 9.16 10.6 6.04 6.21 7.91 0 3.07 6.39 9.24 10.1 9.14 8.33 8.83 8.06 0.95 11.2 6.65 9.24 8.71 12.4 0.69 9.89 9.73 6.82 7.42 10.5 11.1 7.61 11.5 7.43 10.7 9.22 7.75 1.92 8.3 9.25 8.58 8.38 8.47 9.65 10 6.7 8.58 11.1 4.37 3.52 9.31 8.12 10.6 8.2 9.09 10.6 9.56 8.84 8.41 10.9 11.4 10.3 10 11.3 8.76 11.7 8.62 8.78 7.87 8.18 9.59 8.12 4.67 8.88 8.47 9.81 7.52 10.8 8.86 7.34 9.28 8.56 9.23 10.1 10.9 9.16 10.8 0.69 9.34 8.29 8.73 6.84 11.2 10.9 10.2 9.86 8.59 8.74 10 10.4 10.4 7.27 8.79 13 8.54 10.5 9.15 8.33 10.1 8.46 8.31 9.41 10.6 10.8 7.5 8.03 10.1 9.75 11.3 8.81 9.02 5.52 8.68 9.99 10.1 4.4 10.8 4.26 10.8 12 9.08 8.47 9.03 10.6 7.08 10.3 8.55 9.95 5.48 7.89 9.48 9.13 8.6 10.2 9.71 9.21 9.05 7.59 6.03 7.9 8.44 10.3 7.7 10.1 13.4 9.62 6.04 8.82 8.45 9.63 10.9 10.3 10.4 9.51 9 9.58 8.16 8.9 9.38 9.92 12.4 10.3 7.96 9.04 9.85 9.84 10.8 12.9 9.88 8.75 9.02 10.5 8.06 8.55 9.62 10.9 7.33 9.45 9.06 2.9 8.67 9.04 9.37 5.67 9.72 2.71 9.42 7.24 9.08 8.29 8.65 7.86 7.14 8.59 9.28 9.35 9.62 9.78 8.37 7.1 11.2 6.85 4.83 11.8 8.92 10.7 7.81 9.34 5.66 7.61 5.32 10.1 11.4 6.97 9.51 6.68 6.9 2.71 1.92 8.1 8.05 9.4 0 8.66 9.18 9.94 5.23 10.3 10 0 10.3 7.45 8.54 10.1 9.97 10.4 11.1 10.7 11.3 9.81 8.54 9.76 7.06 12 5.62 10.4 4.85 9.19 11.8 9.94 8.42 8.3 11.3 8.93 10.4 12 1.26 10 7.14 9.14 8.86 10.3 8.49 10.4 10.2 7.77 10.4 8.79 0.39 8.71 7.47 11 8.72 4.96 6.46 9.24 10.6 13.8 7.37 0.95 12.8 11.7 8.44 10.4 6.02 10.9 9.84 8.94 8 8.94 10.8 10.7 7.99 9.53 8.79 11.3 5.48 11.2 9.67 7.65 9.25 7.67 10.8 8.01 5.98 9.69 0.39 10.9 5.76 11.9 10.7 8.5 7.09 10.2 9.77 6.09 3.36 9.7 10.3 9.7 9.77 11.4 9.61 6.82 11.6 9.77 8.98 8.66 8.37 0.95 7.22 0.39 10.9 8.67 10.3 8.73 9.82 10.6 9.95 10.9 9.4 10 10.7 4.35 8.19 8.78 6.54 9.67 3.09 2.86 9.38 7.69 8.39 9.44 6.25 8.37 7.14 8.82 4.19 5.7 8.75 7.85 11.9 3.87 7.5 4.19 7.42 3.9 10.2 1.79 6.68 6.81 6.75 4.06 4.61 5.13 3.83 4.68 4.06 10.5 4.61 3.52 4.33 4.33 2.14 1.79 9.33 0.69 1.16 2.23 7.65 9.53 3.95 7.98 10.4 2.32 10.1 11.6 2.49 3.02 7.48 8.83 12.2 0.95 8.14 10.8 1.66 10.5 10 6.05 11.1 9.5 5.33 10.4 10.4 11.7 9.26 9.53 10.3 11.7 9.75 0.39 2.73 10.1 9.11 9.07 8.23 10.4 9.62 8.75 9.22 12.2 4.77 0.95 0.39 9.04 7.51 9.46 7 1.35 12.6 2.78 11.2 7.74 0.39 15.3 6.19 11.2 6.01 10 3.83 8.54 10.9 8.65 9.8 6.56 3.12 9.87 7.53 10.5 8.58 9.1 7.4 0 8.44 1.66 8.62 0 11 3.9 11.5 9.77 14.7 6.73 0 10.7 9.67 10.6 9.99 10.3 5.99 9.5 9.79 9.36 10.5 10.2 10.3 7.06 3.95 9.82 10.3 10.7 10.8 11 10.1 12.8 11.2 8.72 9.64 9.95 11.4 7.55 10.6 10.5 5.52 10.6 11.1 8.81 8.34 10.1 10.4 6.37 8.11 10.7 11.6 7.21 9.4 9.3 8.16 9.69 4.57 7.78 11.5 8.99 9.2 9.61 7.9 9.76 10.5 9.94 8.89 10.9 8.81 7.9 9.62 3.17 10.8 9.62 9.49 8.41 8.85 8.04 8.9 8.51 10.1 9.54 10.8 10.4 8.76 11.1 6.71 5.77 9.25 9.43 8.88 0 4.59 5.86 9.59 5.11 10.5 5.63 8.05 6.15 0.95 7.4 7.99 6.78 8.36 9.25 8.69 8.88 10.8 9.27 11.4 5.37 9.89 10.8 10.2 9.67 9.66 9.87 9.3 0 9.27 8.4 7.35 11.5 10.3 10.3 0.95 10.6 10.5 9.55 11.2 10.5 7.73 1.79 8.97 9.23 9.26 10.8 11.5 9.25 11.6 9.44 3.4 10.1 8.93 1.69 12.1 10.4 11.7 4.63 9.53 8.83 7.71 10.9 1.66 11.5 1.51 9.85 2.23 8.56 6.73 9.67 10.9 3.77 8.65 7.65 10.3 3.36 9.59 9.7 8.64 9.7 10.9 3.07 8.71 7.17 10.9 3.95 8.68 8.28 7.75 0.39 8.86 8.92 10 10.7 11.5 10.8 13.8 10.9 11.1 9.83 11.2 7.78 8.8 8.76 10.6 8.93 9.8 7.67 12.6 8.71 6.21 8.63 5.36 10 7.13 7.62 4.46 5.72 4.85 10.3 9.46 8.5 11.4 9.39 11.6 12.1 9.07 7.28 12.5 10.1 10.3 11.6 9.93 9.95 6.33 10.6 10.6 12.5 4.35 8.32 4.19 8.59 10.5 10.9 9.53 9.21 9.86 9.15 3.22 9.65 8.16 4.42 9.74 9.79 10.2 6.98 12.5 10.8 6.8 10.2 5.89 8.67 10.5 6.24 4.54 12.4 8.62 11 1.16 1.92 9.84 10.4 5.4 0 2.32 9.54 13.4 3.59 7.47 6.81 7.91 7.61 9.65 0.95 5.25 8.27 2.49 0 10.1 9.38 7.83 4.46 5.98 9.81 2.64 1.35 0.39 10.5 10.3 0 3.07 7.8 9.38 8.29 11.1 6.84 12.1 6.77 9.22 6.94 5.07 5.52 4.24 9.35 10.7 11.2 8.33 5.9 8.97 7.56 6.39 9.46 9.46 9.32 9.79 0.95 9.18 9.31 6.04 7.64 4.72 8.56 9.32 1.35 4.98 10.9 10.7 0 9.99 10.2 8.02 12 5.98 9.23 7.64 10.5 8.3 2.84 7.11 7.58 11.6 8.44 4.5 11.4 12 9.35 0.69 10.2 1.51 11.2 1.35 3.38 4.22 9.47 8.92 11 10.2 8.03 10.2 9.76 9.82 10.8 11.4 13.2 8.57 9.59 9.18 11.6 7.69 2.41 3.95 4.42 2.14 10.1 8.12 11 10.1 11.2 4.68 7.23 7.84 7.25 9.2 11.5 0.95 8.56 8.99 7.8 8.55 8.41 7.19 6.24 8.08 8.8 9.85 6.93 8.31 9.13 7.49 5.48 11.2 9.36 13 7.47 10.5 9.78 9.85 9.6 8.7 14.5 8.49 9.15 10.7 7.6 4.29 5.81 8.22 4.09 7.85 10.1 0.69 10.8 9.97 9.32 10.4 9.26 10.7 10.6 9.99 12.1 8.4 5.01 3.22 9.5 10.4 8.83 9.26 9.71 11 8.08 10 11 9.81 9.33 9.71 9.45 2.41 9.32 9.87 9.97 9.39 10.5 6.64 7.85 3.52 12.1 10.7 8 10.3 8.67 8.65 10.4 5.15 10.2 8.8 8.64 12.1 10.5 6.11 7.73 6.96 9.98 6.83 11.1 12.5 10 10.5 7.89 8.72 9.72 9.25 8.18 7.13 10.9 8.59 11.6 8.95 10 10.9 8.19 6.39 10.4 3.8 8.83 4.37 9.34 7.35 7.81 9.24 9.11 8.16 6.61 10.1 6.34 1.51 9.41 9.74 9.35 9.58 10.5 5.24 9.89 7.88 9.88 9.04 7.9 8.55 5.78 7.29 7.77 4.95 2.03 7.6 12.2 8.55 10.6 10 10.1 9.77 3.48 7.55 7.95 3.67 9.31 8.18 5.34 7.2 8.73 9.67 4.33 8.84 9.87 9.3 10.6 9.05 7.78 11 5.96 10.1 10.8 11.8 9.15 10.4 10.2 2.71 4.24 5.85 9.29 9.54 4.29 10.6 0 6.53 13.5 6.51 11.4 9.52 0.6 0 10.6 6.8 6.57 5.56 7.64 12.2 10.4 0.39 11.1 9.93 12.4 0 9.47 2.23 6.17 3.67 6 11 8.39 4.4 9.74 9.04 8.64 11.2 8.95 9.23 7.38 5.87 11.1 11.9 8.68 10.8 6.23 9.13 11.3 10.1 9.68 8 10.3 12 9.67 9.76 8.46 11.2 8.85 11.6 6.68 7.1 9.66 10.1 7.1 10.8 10.3 9.96 11.1 3.48 10.4 10.2 10.4 7.95 8.68 9.83 7.04 6.23 7.61 7.41 4.21 10.9 9.06 8.99 9.3 9.3 10.7 11.1 11.3 8.96 3.8 9.57 9.45 9.64 10.8 10.1 9.22 8.93 10.7 5.73 10.1 0 0.39 11.7 9.11 9.15 12.2 10.5 10.5 7.36 0.95 6.18 9.88 10.7 12 9.85 11.6 8.54 11.1 10.4 0.95 9.03 9.59 7.64 11.7 12.1 6.42 7.52 8.16 9.15 12.2 11.3 11.6 5.18 7.76 6.06 7.97 7.52 7.78 11.5 9.03 9.7 10.4 10.3 11.2 10 11.1 9.51 11.6 10.2 10.4 10.6 10.7 12.3 8.92 9.54 9.09 0.39 10 8.33 9.34 9.91 5.44 1.92 7.1 10.1 6.21 1.66 7.13 10.6 9.39 9.3 10.2 7.01 6.3 8.25 7.2 11.6 11.2 8.85 11.4 10.3 9.2 11.1 8.86 6.98 1.66 10.3 10.2 10.9 1.51 5.24 13 10.2 1.79 8.51 8.14 9.81 11.3 3.44 7.01 11.1 10 10.8 9.12 6.3 0.95 0.69 0 14 2.64 6.56 0 11.2 11 0 3.98 11.9 6.67 11.5 8.74 5.35 5.16 10.6 7.47 5.58 11.6 10.2 8.22 1.16 11 9.57 10.5 8.52 7.78 7.48 8.57 9.56 10.1 0.44 9.58 10.4 5.96 6.02 3.67 10.1 7.58 7.08 5.61 10.9 16.1 7.77 9.34 0 13 4.99 2.36 9.97 0 10.9 9.15 8.62 2.23 8.03 2.32 9.92 11.4 10 10.4 10.1 0.39 0 7.78 6.75 0.69 7.17 5.77 8.59 8 9.38 10.5 0.39 9.66 2.41 0 8.92 12.8 4.86 10.4 10.2 11 1.66 9.98 8.32 10.1 7.45 9.6 7.54 8.42 9.56 8.36 3.9 9.89 10.1 11.2 10.2 10.7 8.32 10.3 9.11 11.8 8.74 8.56 9.66 10.8 2.64 7.82 10.6 5.28 6.68 9.54 3.7 9.67 10.2 0.69 2.32 5.85 8.73 0.69 9.68 9.67 9.7 11.2 8.55 10.2 2.49 8.74 9.83 6.92 9.11 2.41 11.2 0 7.72 8.37 7.52 2.84 11 10.3 7.84 9.4 14.8 14.6 14.3 13.1 9.61 11.3 13.4 1.16 14.1 7.59 13.3 13.5 12.7 13.7 14.4 12.6 13.3 10.7 13.9 3.48 12.8 11.6 9.41 13.3 13.1 12.8 13.3 13.3 13.4 12.6 13.6 13.2 12.2 12.7 10.9 12.9 13.4 12.1 8.27 9 14 5.9 13.8 13.4 12.8 9.43 8.38 12.9 12.9 12.1 13.8 12.2 14.9 2.87 1.79 4.37 8.94 7.91 12.6 1.51 2.84 14.4 11.1 11.9 11 9.43 9.14 11.6 13.7 13.7 12 13.9 13.2 12.4 13.2 11.7 12.6 13 13 9.78 13.5 13.2 13.4 12.1 13.4 13.3 12.9 9.75 9.11 12.9 9.24 12 4.46 9.92 14.6 10.9 9.69 6.58 9.44 1.92 6.97 11.9 10 4.4 5.32 11.4 10.7 10.9 6.26 7.11 1.66 5.55 11.4 12.2 7.09 1.16 8.43 5.34 13.1 3.31 5.49 8.78 11 0 11.4 2.32 1.35 8.29 10.3 10.9 7.05 9.8 6.48 11.5 11 8.5 14.3 9.61 10.3 11.6 9.12 10.1 8.56 9.91 9.56 9.01 7.14 6.91 7.07 6.35 6.29 1.16 6.94 0.95 7.32 12 7.51 2.96 3.31 1.92 5.65 7.28 5.37 4.09 9.16 11.7 0.69 7.93 6.93 7.03 5.69 1.35 5.51 6.36 2.03 8 7.34 8.62 2.32 1.51 0 7.73 0.39 0 2.9 0.69 1.35 9.85 5.84 12.4 8.17 1.51 13.8 11.7 12.3 8.58 9.68 9.82 9.78 9.27 10.2 10.9 9.65 10.3 10.4 8.94 7.51 8.15 8.87 6.77 10.2 10 9.13 10.3 8.31 8.47 10.8 3.36 2.98 8.35 10.3 11.1 11.2 8.13 7.58 4.31 1.16 8.92 9.19 7.62 8.5 7.88 8.48 7.88 10.4 8.39 6.62 9.85 7.68 11.3 5.23 11.4 1.35 11 10.4 7.62 7.29 4.24 8.72 0.95 11.6 4.81 7.95 4.17 6.27 6.43 10.9 9.05 9.87 2.78 11.6 7.36 3.45 8.69 10.7 3.31 7.5 6.29 11.3 2.32 11.4 7.92 2.03 6.13 4.06 7.74 10.5 9.98 4.96 5.76 6.77 5.52 5.15 10.9 10.8 12.4 9.59 9.56 10.4 8.27 9.14 10.1 2.23 10.5 5.47 6.1 9.02 1.16 9.85 6.82 8.33 2.78 9.07 2.96 11.4 10.1 3.6 6.97 8.6 8.41 11.2 5.44 10.1 9.06 7.13 10.4 7.42 2.49 7.6 7.14 5.06 9.34 12.4 1.51 9.32 7.17 9.61 11.9 12.1 10.1 9.71 8.94 10.7 10.8 11.4 4.33 9.41 9.96 9.4 11.5 5.73 0.69 7.27 7.07 3.31 1.16 0 8.32 0 11.8 7.95 11.3 12.3 6.02 8.82 6.9 10.3 9.61 6.82 9.36 9.23 6.9 11 2.03 5.39 6.31 0.95 11.8 9.89 0.95 11.7 10.4 8.89 10.7 11 8.87 6.8 11.1 8.07 6.35 9.88 10.3 9.19 9.32 6.9 9.95 4.33 4.63 1.16 5.25 4.56 11.5 9.25 9.93 5.07 7.85 9.06 0.95 3.8 11.1 9.63 9.17 0 4.91 9.35 7.12 4.68 6.93 3.5 6.07 2.41 7.81 0 7.69 7.96 0.95 10.3 10.6 0.39 8.88 9.79 6.64 7.41 3.31 10.5 8.22 7.01 7.07 9.35 8.84 7.78 0 4.33 5.43 9.38 2.71 9.86 9.48 4.85 8.55 7.94 9.61 9.91 8.49 10.5 8.84 8.95 9.19 9.27 9.64 8.94 10.1 8.22 1.79 11.1 1.16 0.69 4.78 5.71 4.26 5.62 12.4 2.03 6.76 3.27 10.2 6.71 6.75 9.31 2.41 11.2 1.51 3.07 0 3.4 10.3 7.29 3.17 11.7 2.55 0.95 6.87 3.93 8.84 9.28 7.51 3.02 4.58 0 2.57 10.4 0.69 4.12 5.52 4.04 0.95 1.35 4.22 4.31 7.09 5.46 7.81 8.34 10.7 0 10.3 0.39 3.48 4.24 8.96 4.24 6.79 2.23 10.9 7.32 10 5.87 6.26 11.3 0.39 2.49 8.25 10.7 8.39 6.94 10.3 0.95 0.95 3.12 2.84 7.92 3.22 9.57 8.68 5.36 7.05 9.29 10.8 13.3 4.99 0.69 8.72 9.54 3.17 2.32 10.9 9.4 8.84 10.8 10.7 10.2 8.72 2.64 10.1 11.4 10.4 10.5 10.7 10.2 8.35 5.02 8.69 12.8 9.06 8.06 10.4 8.87 9.02 11.5 8.65 9.89 8.54 9.55 11.5 8.54 8.8 7.46 10.4 10.1 7.01 10.1 6.93 3.98 10.2 11 9.36 7.02 9.86 8.62 8.79 4.29 10.5 13.6 10.7 6.92 9.94 10.1 7.44 8.96 8.88 0 13.2 8.72 11.3 9.24 4.89 10.3 7.37 7.97 8.21 0 10.8 11 9.35 8.01 9.72 9.36 9.64 12.6 11.4 8.39 7.31 5.49 9.08 8.07 9.02 9.85 8.43 3.75 5.31 8.51 9.9 7.58 10.1 5.4 9.19 7.91 5.84 7.88 9.42 1.51 10.5 9.54 7.16 9.32 9.22 5.16 4.12 8.5 8.72 10.3 6.08 6.53 10.4 3.36 9.61 0 9.53 9.19 9.14 10.7 9.56 11.2 9.14 11.2 10 7.84 8.77 10 9.07 10.2 1.92 9.77 12.7 8.98 9.97 8.21 6.16 6.43 0.95 11.7 6.98 8.77 4.91 2.41 9.36 6.07 11.2 8.45 11.3 5.31 8.29 5.2 7.08 4.73 8.35 8.49 6.22 8.92 8.7 9.98 9.5 8.65 8.59 10 0.69 7.31 13.4 8.15 10.3 10.8 0 10.4 8.79 11.3 10.7 9.42 5.29 10 7.75 2.64 3.19 6.68 11.5 2.9 10.4 9.91 4.8 5.11 9.95 8.42 9.56 9.48 8.29 10.6 12.2 7.35 8.62 11.7 9.98 2.26 5.24 4.29 3.77 2.71 4.72 0.39 8.79 0 0 6.1 8.86 1.66 1.16 5.09 6.39 5.6 3.17 6.6 2.96 8.56 7.5 4.96 4.33 2.64 0.95 2.23 8.1 7.93 9.14 8.36 11.1 1.35 6.65 4.59 6.72 1.66 9.96 6.96 6.06 1.66 3.44 10 2.84 4.12 4.8 7.38 6.89 7.59 7.42 10.6 1.16 3.67 0.39 7 8.91 1.92 7.9 1.35 3.93 7.42 5.86 9.05 0 5.68 0.39 2.96 10.4 1.51 2.57 6.79 2.5 4.29 0.69 5.51 0.69 9.9 0 8.05 11.4 5.81 10.7 7.6 9.76 10 0 0.69 8.16 8.87 12.2 10.8 11.9 0.69 2.03 7.68 3.92 8.79 8.58 11.1 11.5 4.72 5.95 11.4 12.2 10.6 11.8 8.76 8.8 10.2 10.8 9.39 7.86 11.6 10.8 9.88 9.15 8.6 8.34 1.79 11.1 7.77 10.1 10.3 9.77 9.75 2.78 9.97 9.07 3.83 8.85 0.69 7.26 10.9 11.1 11.3 10.5 10.6 8.26 9.02 10.5 11.3 2.62 10.1 9.79 10.7 8.68 7.88 10.2 10.8 11.6 7.39 7.89 0.95 8.12 8.13 8.66 7.93 8.73 7.77 6.2 10.5 11.6 9.89 8.31 10.8 9.63 8.79 10 8.99 10.8 10.7 8.99 9.15 9.28 13 9.94 11.7 11.4 12.8 11 10.9 8.84 0.39 11.9 8.5 11.3 13.1 11.1 8.94 12.4 13.2 9.17 10.5 10.7 11 7.85 3.12 10.6 0 3.74 10.5 10.8 9.35 8.16 11.3 9.32 10.3 6.43 8.95 4.72 14.7 9.82 11.3 7.03 2.14 8.44 4.06 11.3 5.52 4.24 7.93 9.24 7.36 12.5 0 6.67 13.4 3.8 9.33 9.18 6.32 0.69 10.2 8.49 10.9 10.6 11 8.96 11.8 12.2 9.61 10 7.55 11.2 10.7 8.86 9.44 11.8 7.77 10.3 11.1 9.6 12 12 11 11.6 11.9 11.7 5.49 3.02 0 10.9 11.2 12.5 11.3 0.69 14.7 2.23 10.5 10.4 11.6 2.78 9.57 10.8 3.63 1.66 3.77 0.69 0.69 1.51 0.95 1.66 11.2 0.75 1.35 1.16 4.46 14.2 11.7 11.9 9.7 0 4.61 11.6 9.19 9.36 9.08 9.13 6 3.31 5.03 9.09 10.6 2.96 7.4 7.09 5.75 8.98 9.62 10.6 10.6 10.9 10.2 8.52 10.7 9.07 9.49 13.7 6.49 9.66 10 11.7 3.63 11.5 8.62 9.9 8.15 12.3 9.9 9.84 6.87 9.18 11.6 8.7 11.2 9.58 1.16 11.3 0.95 0 5.27 11.7 4.29 9.18 1.16 2.64 0 10.3 9.16 2.32 10.4 8.04 10.4 9.22 8.51 6.3 10.2 6.63 10.1 11.7 10.4 9.67 9.64 9.17 8.86 7.44 9.22 6.96 0 11.7 12.5 9.37 8.85 11.7 8.69 8.81 10.2 2.78 3.9 8.37 10.5 8.9 10.9 9.06 9.24 8.16 11.2 5.37 4.65 7.16 6 10.6 9.57 10.5 1.35 5.73 7.51 8.81 1.51 0.39 11 6 10.9 11 12.1 3.36 10.4 6.24 9.66 9.2 9.3 10.4 4.31 10.8 8.05 8.01 10.8 9.67 10.1 0 11.2 9.66 4.68 11.3 1.35 0.39 10.6 5.18 8.93 5.42 10.4 10 8.38 5.13 12 10.8 7.93 9.13 6.19 5.42 10.9 14.6 6.51 9.29 9.18 0.69 9.23 9.48 0 9.87 3.12 9.1 4.24 8.18 9.48 5.9 9.65 10.6 8.8 11.1 12.1 7.76 1.16 9.93 19.8 9.17 10.2 8.18 8.68 6.74 1.51 14.3 10.3 0.39 12.1 9.25 7.87 10.1 3.44 9.77 0.95 10.1 8.77 6.54 8.32 10.7 9.37 1.51 9.21 0.69 10.1 7.13 5.81 11.5 10.9 10.3 10.5 11 10.2 8.94 11.1 13.9 3.31 10.1 11.3 8.21 9.85 12.9 1.79 9.42 11.1 10.9 8.22 4.81 12.6 12.8 5.71 7.1 7.39 8.15 16.4 10.3 6.95 10.5 10.6 10.7 8.82 10.8 10.3 10.7 8.9 9.67 13.1 9.19 8.9 10.7 0.39 0.39 10.2 8.33 8.17 9.33 4.68 10.7 8.82 7.21 0.69 0 0 8.66 0.39 12.7 7.81 8.29 11.3 6.54 3.02 8.14 11.9 8.15 10.1 10.8 10.3 7.63 5.39 8.92 11.4 9.94 10.9 1.35 12.4 11.2 9.54 6.59 12 11.5 12.3 10.5 11.6 1.92 15.5 1.09 8.68 8.75 9.77 15.8 6.9 9.11 6.72 4.91 8.2 6.18 14.7 0.39 11.8 9.21 10.7 9.06 0.39 6.89 2.03 1.35 9.18 4.56 9.08 0.39 3.56 1.35 10.6 9.82 11.4 1.51 10.5 14.2 10.3 12.1 7.66 10.2 5.39 8.81 9.93 9.69 10.4 12.6 9.1 6.13 8.8 4.73 6.65 8.41 8.97 8.85 4.29 1.35 6.67 7.27 11.4 6.48 6.36 4.78 5.14 6.07 6.62 7.4 1.51 8.29 7.04 3.95 3.67 8.42 9.02 4.98 8.86 0 2.78 8.78 11.8 7.6 5.86 1.92 7.58 8.25 7.4 2.05 8.66 6.38 6.3 7.63 7.78 3.74 4.75 8.93 5.15 7.22 13.5 6.05 8.15 1.35 6.16 0 4.65 2.41 8.4 6.06 8.57 2.64 1.35 12.5 4.26 8.45 6.14 5.55 5.17 2.71 0 6.25 4.57 4.29 2.57 2.03 4.04 3.95 6.05 3.22 4.33 5.31 2.23 0 8.02 10 8.91 1.79 9.25 4.56 3.22 10.6 5.15 7.32 1.35 9.71 10.1 2.23 2.71 4.06 8.84 7.42 7.75 3.4 6.47 1.16 9.28 8.04 0.95 2.03 7.02 8.59 7.66 8.08 6.38 6.74 2.49 7.73 1.16 10.7 5.33 12.4 2.23 14.3 15.4 13.1 0 9.76 10.1 10.1 8.49 11.1 12.3 10.2 7.54 10.2 10.7 10.3 10.4 2.71 10.5 10.1 11.2 9.3 11.1 9.02 11.1 10.9 12.1 5.37 8.62 1.66 4.44 11.6 4.78 10 7.17 9.43 6.14 9.52 10.8 9.13 6.97 9.16 12.8 10.1 9.87 10.8 7.09 1.35 11.2 1.16 11.7 11.6 11.6 10.3 10.6 10.8 9.24 9.53 11.4 9.84 1.79 10.6 12.2 9.83 9.24 10.3 10.5 4.46 10.6 9.23 6.55 11.7 12.7 11.2 10.7 10.7 7.52 13.5 10.7 10.7 0.39 9.84 0 12.8 15.5 5.59 0.69 10 4.37 10.5 7.09 7.58 8.34 1.66 0.69 4.04 12 10.1 5.16 9.33 12.1 10.5 7.52 4.98 8.3 11 11.2 11.3 9.72 6.56 0.39 6.47 10.5 1.16 0 6.52 0 1.79 3.98 1.79 2.32 0.69 9.59 7.58 0.95 12.4 1.92 2.14 13.1 6.14 9.4 10.4 6.19 10 1.35 11.5 9.96 4.56 7.44 6.73 7.35 12.5 7.04 10.3 10.9 12.4 9.38 13.4 11.3 10.3 13.5 3.17 12.4 13.8 7.39 13 8.77 9.47 9.63 6.98 9.98 9.09 8.1 8.53 6.48 12.9 9.24 9.29 8.25 7.84 8.26 7.49 7.67 7.15 8.09 8.11 11.3 10.2 7.98 11.2 7.53 8.81 5.6 9.75 10 9.9 6.77 8.58 8.89 7.78 8.1 9.78 8.51 8.32 7.52 8.72 6.02 7.92 5.72 7.67 8.5 8.87 8.71 9.97 7.1 1.16 9.77 4.63 8.05 8.38 9.46 2.23 2.84 6.65 5.36 6.19 12.3 5.1 1.35 3.44 1.79 0 6.71 3.6 9.23 8.69 7.48 8.51 8.11 7.69 8.62 6.75 7.59 8.91 9.56 6.69 8.75 7.72 10.8 6.93 11 9.44 11.4 9.17 11.9 8.01 7.92 3.17 10.7 6.26 10.5 8.07 7.91 2.84 6.47 2.78 7.64 8.31 7.94 10.3 3.44 8.55 9.14 8.54 7.57 8.34 6.74 10.7 7.3 8.13 9.42 8.42 11 8.8 7.78 8.82 6.78 5.26 12 9.6 6.93 7.73 6.55 8.7 2.9 8.29 7.53 8.24 7.29 7.27 8.34 9.23 1.16 5.01 6.86 5.52 6.94 5.79 10.5 10.1 10.8 12.7 9.47 11.5 8.73 9.76 3.01 13.6 9.4 10.2 7.43 6.04 14.7 9.56 8.81 9.37 10.4 9.91 9.8 14.7 7.17 2.03 12.1 9.7 9.89 3.52 9.46 9.57 11.1 8.29 10.1 11.1 11.1 12.5 8.69 12.8 9.88 4.56 11 10.2 5.59 5.67 6.45 10.8 9.33 4.83 8.75 1.92 5.79 5.98 9.94 3.98 10.1 10.9 8.71 10 8.43 7.91 8.02 8.84 10.1 0 9.45 9.73 9.08 6.44 8.27 10.2 8.33 2.64 13 10 7.77 8.45 8.05 9.75 9.32 9.35 10 5.6 10.3 10.9 6.64 9.86 9.96 10.3 13.1 8.68 9.7 7.42 9.66 8.05 10.2 10.3 10.3 6.9 7.11 7.31 11.5 6.64 5.37 8.71 7.49 9 9.16 8.86 12.4 10.8 10.1 6.79 10.1 9.12 6.99 4.12 3.74 9.54 8.29 9.66 9.76 8.68 9.75 10.6 12 7.6 7.15 8.82 8.01 11.7 10.5 7.06 10.2 10.7 11.8 9.32 8.52 7.96 6.38 10.1 6.84 3.99 8.38 9.25 4.61 9.25 10.1 8.53 12.4 10.2 8.22 0.39 2.69 8.26 12.2 10.6 10.7 6.08 4.73 10.6 8 8.71 8.05 8.88 8.76 10.5 9.66 9.08 0 10.7 12.1 8.61 10.4 12.8 8.57 9.7 7.57 7.17 9.87 0.39 0.69 3.9 10.4 7.48 10.3 12.2 8.96 1.16 1.35 1.51 5.27 3.67 9.29 8.28 2.84 12.8 8.02 9.64 9.82 8.41 10.2 11 8.32 10.3 7.95 2.57 5.01 5.05 10.8 8.13 7.28 0.39 8.86 12.2 7.65 9.22 8.26 10.2 9.5 9.39 8.53 8.79 12.2 9.25 9.73 9.64 9.66 9.29 8.64 6.69 10.4 11.2 11.2 9.32 8.13 8.63 7.01 8.85 8.25 8.4 7.28 5.57 9.37 9.12 5.03 10 2.57 3.87 6.22 3.52 8.89 6.67 8.97 7.8 9.1 8.69 7.39 8.58 7.44 9.13 7.8 4.59 9.19 7.61 0.39 8.88 10.5 8.93 8.16 9.02 10 8.78 9.09 9.95 7.68 9.09 8.01 8.79 11.9 7.28 7.67 10.1 10.5 8.39 5.7 9.83 8.8 9.01 9.71 9.56 8.99 3.98 8.33 8.81 8.8 9.88 7.5 6.99 8.26 9.75 7.32 4.42 8.95 9.71 7.97 8.86 10.8 7.47 7.57 10.4 8.9 6.03 6.92 9.62 7.28 9.23 8.99 9.37 8.5 6.42 8 9.41 10.4 11.9 10.3 10.4 1.16 7.47 10 8.17 9.68 7.88 8.88 8.48 8.64 3.74 5.55 10.3 7.47 8.77 4.68 4.32 9.71 7.94 11.1 7.98 0 9.4 2.14 8.48 9.53 7.94 7.33 10 8.33 7.73 7.51 7.75 10.7 9.78 9.84 8.15 11.1 6.84 3.12 1.79 8.94 8.19 7.62 9.19 10.1 1.16 4.85 12.7 8.32 5.59 8.65 10.2 9.26 10.5 10.8 9.14 7.88 8.92 8.28 4.8 0.95 8.72 2.84 7.99 8.43 7.62 11.3 10.8 10.8 5.05 5.34 8.6 8.86 5.5 8.24 10.1 2.03 7.07 7.32 6.55 1.92 7.4 9.17 8.25 7.15 9.81 7.13 9.3 6.89 10.1 5.86 6.67 9.16 7.02 4.33 7.17 5.24 3.36 6.94 7.15 7.52 7.89 0 8.41 1.35 0 4.72 10.5 0.95 8.75 0 6.13 7.9 7.26 1.35 6.26 9.05 9.13 11.1 2.32 8.08 9.01 7.67 9.23 9.48 9.86 10.5 5.59 8.7 10.6 0.39 9.04 9.56 10 6.51 9.58 8.2 8.42 10.2 10.5 10.1 3.02 8.89 8.35 7.21 6.7 13.1 8.73 9.98 5.76 8.44 1.66 7.9 8.95 7.42 5.75 8 8.63 11.3 7.17 0.69 9.77 8.57 6.59 4.94 8.11 5.29 0.39 11.7 1.16 9.45 6.14 5.68 10.7 10.4 6.7 8.24 7.88 4.76 9.68 0.95 1.66 8.91 2.32 12.3 4.61 8.16 6.75 11.2 9.5 7.14 12.1 6.8 7.43 8.33 9.69 5.93 4.35 9.89 8.34 8.5 8.59 3.44 7.13 2.03 6.61 9.33 8.25 1.16 9.72 4.72 11 0.39 5.35 7.21 10.1 9.3 9.1 7.95 2.23 8.01 10.4 11 8.98 10.7 10.4 8.68 9 8.39 8.91 8.35 10.5 8.68 9.2 7.92 8.85 1.66 2.32 3.74 8.27 9.28 7.8 9.92 0.52 5.38 3.87 0.39 8.77 11.8 12.4 6.28 8.41 4.77 3.93 2.64 0.95 9.36 8.67 2.23 8.44 10.5 5.97 9.56 6.06 9.94 9.46 9.13 8.95 10.8 9.72 6.51 8.48 8.69 9.64 8.74 9.55 5.08 7.53 6.96 8.99 9.08 7.15 7.93 9.31 6.37 9.67 4.83 8.83 8.18 10.4 8.88 9.89 8.8 8.86 8.86 6.58 10.7 10.4 8.82 9.24 11.2 9.52 10.1 7.88 9.98 10 8.36 6.76 10.8 9.2 11.9 8.94 10 8.33 8.98 10.7 10.1 3.31 11.4 9.34 7.25 7.14 7.95 9.17 10.6 8.64 6.39 8.71 6.28 7.55 10.1 8.74 8.65 9.11 8.77 5.5 11 9.77 8.18 8.82 10.7 11.5 6.92 7.52 9.83 8.95 3.74 9.41 12 10.1 9.07 6.47 8.68 9.21 11.3 6.61 8.08 4.46 10.2 5.06 7.83 8.27 2.23 5.67 4.65 11.4 6.19 4.42 11.8 6.48 0.39 7.05 3.8 11.1 6.49 8.43 11.1 9.94 1.66 11.4 4.48 10.2 5.92 3.44 10.1 8.7 13.1 9.09 4.73 10 11.9 7.95 8.39 6.68 7.19 9.38 5.02 7.76 11.2 8.97 11.3 5.09 3.12 7.12 0.69 5.52 8.18 8.07 7.74 9.64 6.77 4.86 6.27 2.9 10.1 13.2 9.03 5.92 9.37 6.17 7.3 7.18 10.2 7.85 10.9 12.8 9.56 12.1 9.5 12.9 8.42 9.65 9.76 5.81 8.87 7.85 9.94 10.6 9.7 4.99 7.86 0.95 11 9.03 8.32 9.54 8.88 9.58 4.48 4.52 6.51 2.24 11.2 8.34 9.48 7.82 8.53 2.32 10.1 13.2 9.31 2.41 4.59 3.67 1.92 10.7 8.31 3.83 11.7 11.4 15.5 4.22 4.73 0.95 5.91 6.87 11.3 12.3 9.2 4.46 1.92 6.91 11.5 10.7 9.72 3.31 8.74 0 3.74 11.3 7.75 9.44 10.8 8.68 10.8 10.2 3.12 6.5 9.89 8.77 9.03 9.63 10 9.81 10.2 8.71 9.71 8.68 10.3 8.9 9.51 9.39 11.4 0 8.33 7.59 8.74 9.01 11.8 9.19 9.73 7.8 10.2 9.9 8.41 12.1 9.91 11.9 4.92 9.78 9.68 9.03 4.09 10.5 9.76 4.04 0 8.86 12 11 8.27 6.56 9.27 3.6 9.13 10.3 4.56 11.1 11.2 10.2 11.2 11.3 9.39 5.88 0.39 10.8 6.92 8.74 9.7 0.39 10.5 8.54 7.11 10.9 7.2 10.2 1.16 7.22 0.95 9.08 8.85 9.15 8.16 10.4 10.4 10.3 1.51 11.1 5.02 8.61 7.39 10.6 9.85 6.37 9.38 8.9 12.3 9.44 9.36 9.06 11 9.69 9.08 0 9 9.8 0.39 9.47 9.47 8.31 8.97 0 6.11 7.27 10.1 9.69 2.64 10.2 9.08 6.61 11.3 14.7 10.2 9.48 8.39 11.8 9.11 2.64 9.56 9.26 10.3 9.81 12.2 8.64 12.2 11.7 11.9 10.7 11.6 10.9 5.56 12.5 9.37 7.92 9.66 7.34 8.45 9.31 1.16 11.2 1.51 12 11.1 10.5 5.24 9.49 0.39 10.7 11.3 11.3 9.76 9.77 11.6 8.53 9.54 9.06 10.8 8.97 6.74 5.92 11.9 2.41 12.7 10.6 10.5 7.64 9.57 2.71 0.39 10.3 3.52 0 0 11.1 3.07 7.66 2.71 3.56 7.52 6.64 0.39 0.95 3.93 3.17 0 0.95 9.85 2.64 9.71 10.8 10.3 8.54 7.46 0.95 2.71 8.37 9.62 8.22 0 8.43 4.88 6.27 9.86 6.31 6.8 8.26 7.93 11 8.28 0.95 7.62 5.5 13.5 9.91 9.45 1.16 3.87 0 6.18 6.09 0 3.4 8.6 11.7 9.43 9.68 9.91 9.67 1.66 8.94 0.95 3.31 0.39 0 9.76 7.64 1.16 8.78 9.81 7.38 7.29 8.72 0 9.69 9.4 10.3 9.04 7.72 0 5.52 8.76 11.2 9.87 0.95 8.77 8.79 8.99 7.05 11.2 6.45 0.95 5.24 11.1 0.39 11.4 9.61 8.49 2.64 9.82 9.7 10.1 4.99 9.37 9.88 1.51 1.16 12.1 7.36 8.22 9.02 6.8 9.05 6.84 0.69 7.66 9.74 5.4 1.16 0.69 8.49 2.49 6.89 10.4 7.83 9.28 6.85 9.75 10.7 2.84 3.67 8.27 9.61 9.05 8.95 0.39 6.71 9.16 9.51 3.27 0 7.54 5.79 6.24 7.88 7.38 7.86 9.25 10.9 6.54 9.44 6.99 8.61 10.3 7.21 6.24 0.69 6.18 0.69 4.8 0 2.03 3.77 3.96 10.1 11.2 8.2 2.71 10.1 10.9 7.58 8.8 11.7 7.65 10.7 9.94 8.65 8.65 8.38 3.67 0 6.44 0 7.62 11 9 6.99 5.47 9.4 11.4 11 7.06 9.48 0.39 4.68 6.86 0 10.6 8.31 6.93 7.79 10.4 8.62 7.96 11.7 10.7 1.66 6.94 3.83 6.91 7.42 5.37 8.4 12.1 8.7 0.95 10.6 9.91 9.87 7.81 3.48 11.3 4.72 6.25 0 1.35 7.12 7.82 9.28 10.2 9.23 9.67 6.93 4.57 9.09 9.86 4.73 8.35 6.39 5.07 8.51 8.95 3.74 6.81 9.49 7.87 8.6 8.43 9.05 8.58 7.67 8.41 9.24 8.47 7.5 7.52 7.9 7.73 7.44 10.3 10.1 2.49 8.35 8.4 8.08 8.59 11.6 9.38 10.6 7.53 8.04 11.4 10.6 8.44 9.52 8.54 2.32 7.71 8.19 11 8.25 9 9.62 9.81 0 1.51 7.36 10.2 11.3 10.4 4.77 8.75 6.33 5.77 5.01 7.05 6.89 8.75 6.6 1.66 4.65 8.35 7.57 4.29 5.49 1.51 8.8 10.7 11.1 7.89 8.14 10.3 8.39 10 8.51 8.17 9.73 10.5 5.15 12.9 6.46 5.46 7.36 9.75 9.84 9.61 0.95 7.94 8.44 8.16 8.9 10.6 4.09 9.78 10 9.34 9.11 9.02 9.42 7.65 11.3 9.61 9.14 9.51 7.09 9.72 9.27 4.24 8.83 11.1 8.98 7.23 9.59 6.61 9.44 8.68 9.12 9.11 9.1 9.1 1.79 8.51 11 8.89 9.43 6.59 8.74 9.77 9.18 10.1 5.55 3.74 7.87 9.12 9.44 6.66 8.47 9.84 3.07 10.9 9.68 8.24 9.57 8.76 8.74 9.64 10.7 7.14 7.52 8.86 9.69 9.52 8.84 7.09 8.18 6.6 8.21 9.38 0.69 10.4 9.3 10.1 9.8 9.79 7.73 9.1 9.1 9.6 0 12.3 10.8 8.82 9.82 11 5.78 9.35 1.16 10.7 10.7 11 5.46 9.98 3.27 7.87 8.88 4.56 8.11 8.98 8.82 8.99 11.2 4.14 11.2 8.71 7.63 9.48 10.3 7.7 7.42 7.89 6.91 8.74 9.56 9.75 7.97 2.23 4.09 2.96 1.01 9.45 9.21 10.4 7.77 2.03 7.31 10.7 9.23 11.1 6.58 9.92 6.29 2.49 5.71 10.9 7.93 9.59 7.82 12.2 8.83 6.57 9.28 11 5.55 10.6 4.56 6.87 10.6 6.5 8.59 8.73 11.9 9.47 9 11.6 4.65 10.3 7.57 11 1.35 8.69 8.17 4.46 9.14 9.15 8.54 12.6 8.27 0 13.2 7.08 3.8 2.41 11.8 7.57 12.6 2.32 1.66 7.47 9.59 10.3 7.68 10.9 8.85 11.5 4.42 0 0 1.51 9.96 10.1 7.73 10.2 11.2 7.06 8.22 3.12 9.46 6.53 0 7.76 9.11 11.1 1.35 3.18 7.22 4.03 4.35 6.85 0 11.9 12.7 1.92 6.55 7.74 8.66 10.8 9.99 2.84 10.3 10 5.94 5.56 12.2 8.07 11.2 6.11 8.88 1.79 1.35 10.6 9.14 7.95 10.9 7.71 9.76 8.28 2.49 8.09 3.7 4.72 7.53 6.53 9.16 10.3 7.33 9.04 4.54 8.62 9.47 9.08 10.5 6.96 3.93 2.14 8.71 9.92 8.94 7.95 3.8 0.39 7.61 8.95 9.99 4.26 8.31 10.4 2.49 8.43 5.93 4.04 6.28 9.59 11.6 7.26 8.46 0.39 1.92 8.51 2.78 7.77 7.23 8.4 7.74 9.82 11.4 6.72 9.33 5.89 10.3 6.72 1.92 5.26 8.07 8.18 10.1 9.23 8.67 7.93 8.56 9.05 8.25 11.2 9.14 9.57 0.39 9.59 10.6 8 9.05 10.2 9.76 7.63 8.41 12.4 5.52 8.61 8.44 4.88 6.73 9.88 8.73 10.3 9.76 5.94 8.62 8.75 8.79 6.34 9.21 10.4 11 3.98 6.87 9.17 9.2 7.6 8.56 11.1 9.32 1.51 8.67 7.38 9.12 8.56 8.86 8.87 10.2 7.98 9.12 5.45 6.98 8.68 1.35 9.26 8.71 8.41 7.76 11.2 9.99 11.6 12 1.66 8.45 8.45 6.28 8.08 6.4 10.3 4.11 6.79 9.59 7.07 9.26 7.82 6.55 4.81 8.65 10.1 9.08 9.03 0.69 10.4 8.51 0.69 6.44 1.16 7.8 10.2 9.8 5.16 1.92 10.3 10.8 9.9 7.73 10.2 6.41 7.53 9.67 0.39 7.06 10.1 9.63 10.7 7.4 5.8 11.3 9.38 8.4 7.92 8.53 6.47 10.8 8.91 8.66 6.14 8.62 10.3 8.37 2.14 1.92 6.76 6.28 5.96 8.34 9.96 8.29 9.5 0 7.19 0 10.6 8.89 7.41 9.26 5.72 0 3.87 0.39 7.83 10.4 10.3 9.93 7.95 0.78 8.52 1.66 0 9.66 10.2 10.6 0.39 10.1 10.1 8.34 7.95 9.49 10.1 9.74 2.49 9.32 0 6.83 10.6 10.1 11.9 11 6.75 9.7 9.59 10.2 2.64 2.84 6.99 0.95 3.44 7.91 3.67 9.14 9.61 9.61 9.49 6.98 8.81 9.47 8.6 9.16 1.16 11.3 10.6 9.86 8.79 6.24 11.7 10.3 9.36 8.54 10.6 9.5 10.4 9.96 9.75 8.81 9.45 5.67 2.23 10.2 7.61 6.33 3.31 8.99 1.16 0 2.64 8.66 3.64 4.17 11.6 9.15 9.57 8.38 3.56 10.4 9.01 11.2 10.3 7.98 4.06 10.4 10.7 9.66 8.66 8.28 11.9 10.9 3.77 9.23 9.79 9.2 9.59 7.99 9.7 11.7 8.12 9.14 3.31 0.39 6.01 9.85 9.62 9.53 5.9 9.5 1.79 5.18 6.77 11.6 5.06 14.9 8.61 11.7 4.65 2.57 10.3 12.4 10 9.06 10.2 3.95 7.62 7.23 11.4 2.41 4.71 8.24 9.02 10.9 9.66 7.98 4.89 9.08 4.57 8.7 9.19 5.23 7.05 10.4 4.61 9.83 10.4 10 10.4 8.35 9.11 11.3 10.3 8.78 10.6 12.5 11.2 7.75 11.6 11.2 11.2 11.5 11.8 10 9.38 11.3 11.5 10.7 9.13 10.2 7.23 7.87 10.6 8.63 9.3 11.7 11.5 5.13 9.06 10.5 8.35 9.76 9.31 5.03 10.3 7.46 9.18 9.93 9.46 7.59 10.1 6.97 0 12 8.39 8.93 8.98 8.89 5.26 12.2 12.6 9.73 10.8 11.5 10.7 8.1 11.2 6.02 11.4 10.2 10.3 8.77 11.7 5.21 9.82 7.93 4.85 1.16 10.6 9 8.94 2.03 0.39 2.78 1.92 10.5 10.4 11.3 11.9 9.19 11.2 14.2 10.4 11.7 7.77 5.62 8.98 10.6 9.12 11.8 9.83 7.75 9.33 2.14 10.1 2.49 0 1.69 4.33 9.24 3.31 7.81 7.16 10.3 5.29 9.61 9.7 1.66 7.35 10.4 11.1 10.2 11.4 9.79 1.16 6.17 1.16 0 9.84 9.12 5.02 11 10.7 2.49 10 7.81 3.67 5.72 5.15 10.4 3.17 12.9 9.95 11.5 6.94 8.23 5.13 9.54 9.13 8.83 7.65 9.08 0.39 2.14 0.95 9.94 0.69 0.39 10.5 10.8 8.12 5.41 12.2 9.97 4.29 10.7 2.78 2.41 14.6 0.95 8.63 11.3 8.59 11.1 9.74 9.09 11.7 8.75 8.25 9.72 9.71 8.88 2.9 4.81 7.22 13.9 11 10.7 10.2 9.31 9.31 8.69 10.5 11.8 10.6 9.94 9.58 8.51 11 9.68 10.1 11.1 10 10.6 9.27 10.7 0 6.07 0.39 11 8.15 9.68 9.46 5.06 2.9 7.89 7.68 6.93 9.39 10.2 2.57 9.08 8.76 9.65 10.5 10.7 10.6 8.67 3.8 2.1 8.83 11 10.7 9.79 7.58 4.85 3.49 11.3 13.6 7.76 5.67 11.9 9.76 11 0 0.69 3.83 11.2 2.23 1.16 10.5 9.84 10.6 7.87 1.16 9.34 8.4 3.74 4.17 9.75 12.3 6.41 7.4 7.39 7.14 4.19 2.32 8.69 7.22 7.61 8.02 10.2 9.6 6.15 1.51 9.19 3.7 7.1 0 4.62 8.17 1.82 0 7.73 0 9.02 10.8 8.5 6.3 12.6 10.4 11.9 6.31 0 6.92 11.1 10.1 10.2 10.1 7.48 9.37 8.88 9 7.48 4.89 5.99 10.7 11.3 11.1 4.61 7.26 6.72 8.77 6.32 10.6 7.12 2.49 9.48 10.6 9.37 0 9.54 9.69 8.3 6.1 6.55 6.72 4.61 10.5 10.4 9.53 8.07 7.94 7.76 11.6 12.8 0 4.68 11.1 7.38 4.26 3.74 0.95 8.53 9.94 8.46 0.95 6.97 1.16 3.17 5.23 3.4 11 8.93 7.57 8.39 9.73 8.36 1.35 9.41 8.42 9.1 6.07 1.79 6.14 9.09 9.04 7.03 8.53 8.43 4.3 9.32 7.56 6.62 10.4 9.43 9.3 12.8 8.99 8.97 4.89 11.3 11.2 9.1 9.32 12.4 7.74 4.99 2.49 4.68 10.2 5.75 11.7 10.5 9.57 4.42 5.8 10.2 2.57 11.3 8.66 7.66 10.8 8.36 10.2 8.85 7.52 8.15 6.94 6.32 9.93 6.86 7.67 1.35 5.49 7.59 7.6 7.66 9.78 9.32 11.1 8.44 7.69 8.27 8.23 8.59 9.55 7.09 2.96 7.18 9.38 9 9.37 7.12 9.67 10.2 0 7.85 0 4.37 8.92 11.2 10.2 9.26 11.3 9.62 9.13 9.33 8.92 5.91 10.5 9.06 2.03 10.5 9.71 6.85 10 8.3 5.69 1.66 10.8 10.7 10 10.1 8.77 5.23 12.3 9.55 9 2.03 10 5.5 9.49 8.6 7.73 7.42 9.81 10.6 9.97 10.7 9.73 3.52 9.99 9.92 9.45 8.57 7.79 9.76 3.67 0.95 10 8.27 8.22 10.1 7.86 8.6 7.98 8.78 11.4 8.33 8.96 8.9 8.13 0.69 0.39 6.85 5.6 8.03 9.21 7.14 9.1 12.2 7.3 9.8 10.2 0.95 10.6 8.81 8.3 10.9 9.39 8.6 1.79 10.5 10.1 11.4 9.62 7.3 6.78 0.69 5.45 6.75 10.3 8.45 0.95 8.21 8.37 9 10.4 8.96 10.3 9.78 8.04 4.73 8.45 8.16 9.92 7.19 9.21 7.04 0.95 7.84 11 4.35 10.8 9.6 0.95 10.6 10.6 5.73 9.69 1.66 9.51 3.63 9.06 11.2 5.36 4.57 6.39 9.58 4.52 8.74 10.1 10.2 8.21 8.84 4.44 8.7 9.87 4.29 9.99 4.72 8.32 0 8.85 10.3 9.83 7.23 1.79 11.2 7.41 10.6 12.5 6.26 10.8 11.2 9.33 6.73 1.16 8.29 0 6.41 3.12 5.41 11 9.92 7.48 6.76 6.62 2.71 11.1 9.96 8.46 9.78 8.43 7.16 8.41 2.84 10.8 0.95 8.16 9.36 10.2 7.23 0.39 8.85 7.94 9.02 8.31 8.01 9.63 10.4 6.52 3.17 9.29 0.95 3.52 7.63 10.6 2.23 9.56 1.92 8.63 9.94 8.03 1.66 7.88 8.78 8.47 6.03 8.3 4.98 7.28 8.89 10.4 10.7 8.73 9.01 8.82 11.1 10.1 5.84 3.36 9.04 8.57 8.27 3.77 5.84 11.3 5.88 11.7 9.54 10 8.13 10.2 8.81 11.9 9.37 10.4 8.39 7.44 10.9 1.35 10.8 1.66 7.73 9.2 7.72 9.05 5.45 4.35 7.15 6.77 3.12 2.14 1.16 0 4.8 12.4 4.09 10.8 12.5 6.8 9.75 9.11 8.48 7.41 8.09 7.81 6.58 8.7 11.8 1.35 9.62 9.39 8.45 1.79 9.82 9.36 2.57 3.83 9.21 0.69 8.12 8.45 8.09 0.69 11.7 6.07 6.21 6.87 7.77 10.8 9.93 7.59 9.13 8.22 10.9 8.04 3.13 7.43 9.92 2.71 9.46 9.82 11.3 9.38 7.19 7.73 9.38 6.8 11.3 8.95 9.94 9.28 8.76 6.45 9.6 9.84 9.63 8.22 9.19 10.8 9.76 11.8 10.1 10.2 5.01 10.1 12.7 8.28 0 10.2 8.85 6.21 8.93 8.56 9 13.6 8.96 0.95 9.71 9.87 8.9 7.3 8.06 6.64 11.2 10.5 7.22 5.88 9.31 10.5 8.6 0 7 0.95 13.5 7.41 9.54 8.59 6.92 0.39 2.64 6.82 10.1 7.74 3.07 9.86 9.49 10.3 8.73 9.72 7.28 5.14 8.91 10.7 8.74 10.7 4.24 11.4 10.1 11.2 10.4 2.84 10.9 9.74 9.88 9.71 8.5 5.51 8.98 7.57 8.01 6.65 0 9.63 10.1 7.07 10.3 9.03 9.7 11.1 9.51 6.51 10.7 9.69 10.5 5.55 2.78 10.9 12.7 1.16 11.6 7.59 11.8 5.88 10.3 0.39 8.13 0 2.64 7.72 2.71 6.12 10.1 10.7 9.46 0.39 12.7 8.46 10.1 8.61 2.9 8.62 9.47 6.88 6.35 2.55 10.2 9.58 8.44 9.19 3.31 10.8 9.98 9.34 8.04 12 10.5 1.92 9.65 10.4 0 9.58 4.8 13.9 0.39 9.89 0 10.8 8.47 9.51 3.22 7.56 9.06 11.4 0.39 3.27 6.33 9.51 10.1 3.44 10.1 10.9 6.62 7.48 9.54 3.02 1.35 12.5 5.72 4.37 2.78 6.5 7.85 9.89 5 10.6 9.19 1.92 9.09 8.01 2.23 9.02 9.78 11.8 9.09 9.62 11.2 8.51 10.2 9.17 12 9.77 2.32 11.3 8.63 1.51 11 8.22 5.11 7.58 9.72 7.32 11.9 5.33 5.87 10.2 8.87 1.66 5.98 9.93 5.06 9.28 0 9.79 2.64 9.8 8.14 8.21 8.24 10.7 14.4 10.4 0.69 11.2 4.14 5.29 9.77 10.8 9.54 9.44 8.82 10 7.31 0 9.25 9.18 7.86 7.44 10.4 0.95 8.77 11.8 10.1 8.8 7.46 9.93 9.32 4.83 9.05 8.05 9.82 4.04 6.66 9.01 9.47 5.84 8.72 9.38 9.98 11.3 4.46 6.15 7.77 2.57 0 10.3 13.1 13.4 9.15 8.18 7.74 6.07 5.58 10.1 10.4 10.1 0 8.92 12 10.1 10.4 8.35 3.31 10.7 7.53 10.6 10.6 10.4 10.4 10.2 12.5 10.5 12.9 7.16 9.96 8.07 9.25 9.9 7.93 3.4 11.2 10.7 3.02 8.65 9.92 2.32 9.92 8.35 3.83 9.63 11.6 9.89 10.4 9.19 10.4 11.5 10.1 8.99 10.2 8.03 9.69 11.2 10.8 10.6 8.21 9.76 6.35 10.2 8.9 7.96 9.17 11.5 9.81 9.28 11.2 5.48 8.36 12.2 7.18 4.12 8.52 11.8 10.6 1.66 10.1 14.9 5.25 2.03 14 10.1 13.4 5.35 10.4 8.86 10.1 10.6 4.81 11 11.5 10.3 6.8 10.4 8.65 5.58 11.3 7.97 1.16 7.47 7.31 9.22 8.06 11.7 5.53 0.39 8.01 9.13 5.76 9.32 10.2 8.73 12.2 9.07 7.47 9.57 10.5 9.17 10.4 9.15 6.96 8.26 8 10.5 10.3 7.4 9.06 9.73 8.28 8.23 9.65 13.6 11.9 7.42 10.2 10.8 9.53 10.9 7.35 11.2 13.8 10.5 10.4 9.88 9.5 8.72 8.93 8.73 9 9.52 11 9.64 8.13 10.6 10.2 9.29 11.5 11.8 6.11 9.81 11.1 3.63 10.1 9.34 10.5 9.25 9.86 8.25 10.5 11.5 0.39 7.39 0 3.98 10.2 9.75 11.5 8.74 0.39 9.09 5.63 11.8 5.71 10.4 8.81 8.8 2.41 9.63 4.12 7.09 9.15 12.8 2.64 3.22 10.3 8.23 9.08 9.92 11.7 6.48 9.98 9.45 7.97 10.3 9.75 7.38 11.4 10.3 8.63 9.99 6.12 12.9 10.9 8.63 4.75 10.6 8.63 10.7 10.8 13.5 4.42 8.21 8.31 8.54 9.07 10.1 8.96 10.3 7.25 13.4 9.9 8.08 9.84 10.9 8.32 7.85 11.8 7.14 9.77 10.7 11.8 10.2 10.7 11.3 10.5 10.8 6.62 11.1 6.63 12.8 5.76 11.6 10.2 7.96 4.22 9.69 10.2 9.93 10.8 9.71 10.1 10.2 2.9 10.4 11.2 7.74 9.92 12.9 12.9 9.68 8.64 10.2 0.39 11.4 9.31 10.4 12.2 8.71 10.6 7.14 10.9 9.82 9.14 10.7 10.1 11.5 6.87 9.33 10.4 7.33 11.3 5.74 7.38 7.03 8.09 0.39 4.92 2.23 8.21 6.82 7.88 9.54 0.95 8.91 9.55 7.21 11.6 7.75 9.73 8.96 9.69 8.93 11 9.91 8.15 6.99 2.23 10.1 9.69 10 7.97 9.83 10.5 8.62 8.74 7.54 12.2 11 9.81 11.1 10.1 11.2 10.2 10.5 9.87 11.9 10.6 10 9.77 7.75 9.71 11.1 10.6 8.38 10.2 9.13 11 8.53 11.2 5.69 8.24 9.23 9.71 8.84 9.71 11.3 1.16 7.43 6.72 8.79 8.07 10 8.9 10.2 7.95 8.72 12.3 9.41 6.18 7.78 8.18 9.65 9.92 8.89 10 10.6 10 11.5 8.38 11.5 10.3 9.88 9.85 9.33 11.9 12.3 2.9 9.76 7.39 10.2 8.5 3.93 12.3 10.2 8.52 7.45 10.6 9.61 3.52 6.71 3.4 10.1 3.02 8.55 12.7 7.81 1.79 10.7 2.49 1.35 6.78 5.54 9.19 11.4 8.46 10.9 10.4 1.92 5.93 11.9 10.2 10.7 9.51 2.65 9.89 9.58 11.6 6.7 9.83 12.4 8.95 8.46 3.22 7.43 12 9.94 10.6 14.4 9.59 10.7 4.29 12.2 8.51 7.89
-TCGA-EY-A214-01 8.46 7.13 5.3 7.31 7.94 8.44 2.09 2.97 4.85 2.08 4.59 8.47 3.74 2.48 6.58 9.92 11.6 9.89 11.8 9.32 7.39 11.4 10.3 1.22 10.5 8.19 3.56 9.21 5.17 7.11 4.18 7.16 2.19 1.89 3.62 0.48 0.1 6.42 0.98 4.28 5.07 4.37 5.22 0.05 8.01 3.46 0.59 4.92 11.9 5.98 3.51 7.27 9.01 10.8 4.67 1.57 5.03 2.31 7 6.17 8.06 5.78 8.09 5.72 3.52 2.52 5.86 9.54 9.9 5.13 6.01 7.21 3.31 5.21 8.67 3.31 5.64 5.59 3.4 -0.61 5.19 1.96 4.17 6.18 3.87 0.55 5.95 3.99 2.41 2.83 9.26 6.36 6.57 7.29 6.09 3.95 4.3 2.45 3.89 2.53 1.37 5.35 1.66 4.97 3.3 2.75 8.61 11 7.5 6.15 1.84 4.65 8.64 4.8 5.15 2.94 3.41 3.93 1.67 2.08 3.67 8.33 -0.18 3.15 0.73 9.59 -0.05 1.59 3.73 15.5 2.51 5.23 4.34 8.89 3.65 2.01 4.9 3.25 2.03 9.22 8.33 9.88 1.05 2.85 4.28 11.6 -1.14 10.5 2.5 1.95 5.36 -0.07 6.7 9.63 11.9 2.29 1.96 1.44 9.25 3.07 6.8 7.81 3.97 1.36 9.7 6.5 7.54 3.76 9.38 0.83 10.8 9.28 4.46 4.52 4.45 2.84 4.37 4.23 8.72 5.78 5.42 9.27 3.02 5.71 5.28 3.46 1.2 -0.13 8.92 5.5 8.19 10.1 3.14 4.65 3.58 5.51 4.39 8.59 7.87 9.47 6.56 10.1 8.84 11 8.35 9.08 6.02 10.5 11.2 11.2 8.22 10.8 10.4 10.1 9.76 9.53 8.11 10.4 7.22 10.5 8.21 10 11.9 11.6 8.21 8.56 2.51 10.8 8.76 12.3 10.4 2.53 9.09 11.5 8.34 6.6 9.43 6.75 10.1 4.4 9.21 3.53 12.9 12.4 12.3 13 12.6 13.3 5.39 11.8 9.72 1.63 5.55 10.6 9.7 12.2 10.3 12.2 2.19 12.5 3.15 9.58 8.85 10.5 9.39 9.87 7.42 11.2 10.9 9.94 7.76 7.49 9.41 9.38 11.4 7.64 1.55 14.2 10.7 12.1 13.3 11.9 10.8 8.15 10.1 11.1 10.1 9.3 10.9 9.99 5.99 4.05 10.8 6.49 10.1 9.6 5.56 12.1 7.24 7.2 12.2 12.2 11.7 8.53 11.2 10.7 3.37 9.66 9.02 7.98 13.7 10.5 8.81 7.17 6.43 10.6 9.32 3.59 9 8.16 10 10.1 8.8 8.47 10.4 10.1 11.2 10.1 9.91 9.77 11 7.78 11.5 6.78 9.9 10.7 9.15 8.29 8.04 9.73 10.9 11.2 9.12 10.7 9.1 12.6 9.72 8.23 13.2 10.2 10.2 3.04 9.04 0.25 3.66 8.36 9.29 11.1 5.55 6.95 6.58 11.1 12.3 11.2 8.22 7.21 6.34 8.82 7.47 5.49 6.03 10.6 10.2 11.9 9.97 7.36 7.93 10.8 2.69 7.81 7.94 10.3 7.72 9.63 9.98 10.7 8.6 10.4 9.55 10.4 9.7 8.57 9.76 7.88 6.15 11.8 12.3 1.14 8.88 9.25 9.71 11.6 10.1 8.82 6.29 10.7 9.61 12.8 9.98 9.16 2.81 8.87 10 9.98 8.01 11.9 9.22 9.48 9.68 7.16 9.67 7.99 4.05 10.6 7.26 10.2 10.4 10.2 2.8 11.1 11 13.3 8.72 8.88 5.93 5.91 9.04 8.34 7.43 9.25 11.7 12.5 10.4 2.91 11.9 8.9 6.98 7.29 9.18 9.62 3.24 6.44 6.48 10.8 8.93 8.24 6.83 11.1 9.73 4.03 8.6 10.5 12.6 3.44 9.85 10.3 4.76 4.23 5.05 7.4 8.54 1.87 7.28 4.09 11.1 9.06 7.74 9.92 9.68 5.56 14.1 11 1.71 11.1 9.16 6.45 12.7 8.21 7.57 4.96 4.61 8.97 9.53 4.53 13.1 7.58 6.63 9.16 8.18 13.9 11.8 13.4 7.33 9.87 9.01 12.2 7.94 7.46 8.28 17.2 3.32 11.2 5.36 14 10.7 9.4 11.9 9.12 7.66 9.78 6.54 10.6 9.32 11.5 10.5 10.2 8.79 9.6 9.32 7.49 10 10.6 12.2 9.47 9.5 11.3 9.12 5.21 11 10.6 10.9 10.7 10.9 11.8 8.62 1.24 9.14 9.05 9.95 9.15 10.4 10.8 9.97 10.4 9.09 9.85 7.16 5.67 10.1 8.77 8.87 10.1 11.2 2.7 8.5 4.87 9.55 9.16 10.1 11.5 9.94 10.7 10.9 8.63 8.86 10.1 10.5 11.2 9.91 1.61 13.3 9.91 11.9 9.87 10.5 12.3 12.3 11.3 7.59 9.46 11 9.21 1.52 6.72 7.66 8.59 8.66 9.87 11.5 12.4 9.27 10.1 10.4 9.48 2.55 7.06 11.7 10.8 7.44 12.7 9.01 10.7 9.51 12.9 10.6 11.2 10.7 11.8 0.87 11.5 9.31 8.59 8.41 7.15 7.35 7.12 8.87 9.55 11.3 10.9 10.2 7.02 11.2 10.3 11.4 11.3 12.2 9.52 11.2 10.8 8.08 8.74 10.3 9.29 4.03 8.61 9.82 12.6 6.9 11.6 10.9 2.53 10.8 13.5 9.94 3.11 9.98 10 11.7 11.9 11.7 12.3 7.21 7.85 8.2 7.16 11.9 9.25 0.27 9.62 7.94 10.5 10.9 7.87 9.24 12.5 6.22 6.53 10.8 7.28 9.43 8.64 7.13 10.8 11.4 10.1 10.4 9.88 9.61 11 8.63 9.88 11.3 8.92 11.8 10 13 8.09 7.73 8.77 5.66 8.46 11.6 10.2 12.4 12.5 8.13 10.8 8.34 10.6 3.75 9.95 8.63 8.06 3.53 8.36 10.4 8.43 7.57 9.85 10.3 3.46 9.4 10.7 14 9.92 8.67 11.6 11.4 7.82 8.23 1.9 5.39 10.1 4.45 7.36 6.98 2.2 10.3 8.32 10.6 5.38 5.82 6.34 10.6 10.1 10 -0.52 1.61 11.6 6.61 2.44 5.06 11.4 11.8 4.21 8.29 7.7 3.95 11.2 10.5 9.18 1.34 8.82 14.8 7.87 10.8 11 11.2 10.5 13.3 8.13 12.9 8.18 8.03 4.46 11.2 8.63 1.06 0.41 4.81 9.92 7.77 11.2 0.51 8.02 9.33 3.05 5.79 12.2 11.6 7.63 3.27 12.1 9.9 0.18 9.88 9.26 12.3 10.4 10.1 12.8 8.53 11.4 10.7 8.09 8.61 11.4 8.76 6.99 8.03 8.88 9.88 7.28 12.6 8.31 7.42 8.05 5.79 8.03 10.2 7.38 3.61 4.52 14.1 10.8 1.32 7.11 9.13 8.69 12.1 11.4 4.66 8.86 8.55 2.24 7.19 7.75 10.2 5.08 7.42 7.69 10 2.44 4.84 -0.06 9.7 8.74 6.22 12.4 10.1 8.26 5.18 10 12.3 3.24 6.72 5.61 7.05 9.8 9.43 11 9.35 10.4 6.86 4.52 8.01 3.38 7.83 -0.87 1.46 8.1 9.16 3.56 2.95 12.4 7.36 8.04 8.69 6.46 2.56 10.3 8.83 12.1 9.81 5.92 7.96 9.66 7.4 10.6 10 9 9.73 10.3 9.36 2.33 6.5 1.67 12.2 10.2 12.6 2.46 11.3 10.3 12 11.1 11.6 6.24 8.55 11.4 10.9 9.81 1.81 11.6 2.27 10.5 5.03 11 9.08 7.41 4.63 9.5 11.1 12.8 9.88 8.53 10.2 11.8 9.5 10.9 11.1 10.9 10.7 11.8 13.2 11.3 12.8 12 11.3 6.25 12.2 10.3 7.99 8.73 10.3 12.2 12.8 13.3 10.3 6.44 10.1 7.42 9.68 10.7 8.39 7.53 11.4 6.73 11.2 9.91 9.93 10.8 5.38 2.24 11.9 7.93 9.83 5.95 10.1 8.4 5.32 9.09 7.53 7.19 1.53 4.51 8.13 9.51 2.77 12.7 9.59 10.7 9.84 9.03 6.48 6.87 8.74 9.93 8.82 2.59 6.29 2.44 4.77 10.7 9.8 9.1 13 8.4 6.66 10.3 8.82 8.4 7.82 8.57 5.72 10.2 11.4 8.91 10.8 11.1 10.7 9.28 11.3 10 10.5 10.2 6.89 4.02 7.8 10.8 8.09 11.1 8.51 5.56 12.3 10.8 8.08 10.4 4.78 5.23 11.3 11.2 12.8 7.06 8.1 11.3 9.54 6.62 6.16 10.1 4.13 7.59 8.69 11.6 8.25 12.5 6.38 9.04 10.2 8.01 4.45 8.91 7.64 9.83 8.98 8.75 9.25 9.28 9.44 9.6 9.59 7.84 9.55 3.66 9.24 8.77 8.81 16.7 9.36 2.15 9.51 7.77 10.9 1.61 9.16 10.6 2.28 11.3 10.1 9.76 2.16 9.41 5.97 7.11 5.32 4.62 9.41 10.4 5.93 5.41 3.75 9.76 7.58 8.08 7.88 9.54 11.3 10.5 5.5 9.75 10.3 9.6 12.7 9.54 7.54 8 10.9 11.1 7.95 5.96 12.2 10.2 8.38 7.94 6.8 11.6 8.09 9.08 6.83 5.99 9.04 10.8 10.6 0.28 9.68 10.3 7.15 8.06 9.67 9.55 10.9 10.4 8.34 8.1 8.1 5.79 8.59 10.2 9.54 10.5 10.8 8.29 8.33 7.98 4.1 9.99 9.29 11.7 4.88 12.1 12.4 5.28 5.64 7.74 10.5 11.5 6.66 8.21 10.3 9.52 8.77 7.04 10.8 10 7.58 9.54 9.92 10.1 5.39 7.08 4.41 4.96 8.48 4.19 9.07 8.44 9.86 -0.32 2.29 9.13 11 7.66 8.24 9 9.15 7.22 11.4 4.91 11.1 7.05 10.3 6.18 6.79 7.37 9.54 8.98 8.03 5.21 1.68 4.81 8.84 12.1 9.22 8.24 8.05 2.13 10.1 8.18 11.8 8.37 7.94 2.57 8.12 4.51 12 9.62 8.02 5.55 9.74 9.28 7.36 10.3 11.9 9.64 10.1 6.92 8.82 7.89 9.11 7.99 8.96 5.68 10.2 7.08 11.5 9.15 7.38 5.67 10.7 4.07 11.4 5.8 4.62 11.4 6.99 0.36 9.19 8.63 0.75 11.1 10.8 9.93 11 6.53 9.46 9.68 11.4 11 7.11 8.7 7.26 11 10.9 11.7 5.02 11.9 8.39 11 9.46 12.5 9.9 12.8 11.8 5.74 9.76 10 1.41 11.3 10.6 10.7 10.6 9.04 10.5 6.53 10.5 2.67 10.3 7.31 6.81 -0.34 7.68 7.24 8.27 7.52 2.35 9.88 7.18 9.54 3.49 8.61 2.24 11.2 5.78 11.2 2.39 7.62 7.76 1.47 4.64 11.2 2.35 -0.17 2.32 7.22 7.66 4.79 1.34 9.09 6.66 5.46 0.86 3.23 6.71 3.68 7.7 6.21 8.37 8.21 6.33 -0.47 9.64 9.26 2.96 13.1 7.15 9.09 9.27 7.14 3.82 9.84 7.5 4.91 9.05 6.85 7.69 6.8 7.19 8.94 0.5 5.85 5.49 4.97 10.2 11.2 4.61 8.42 8.06 4.44 6.43 8.32 9.09 2.86 7.7 11.4 10.5 9.32 9.63 8.12 3.28 6.23 1.64 11.8 5.92 8.42 13.6 7.26 9.26 6.11 9.65 9.32 9.95 4.76 9.87 9.46 7.05 8.54 5.18 9.16 10.2 7.38 6.41 4.03 5.81 6.38 9.61 8.25 10.7 7.85 9.56 5.31 8.15 5.8 11.1 10.9 6.52 2.43 3.07 9.61 9.48 8.62 7.02 9.43 9.47 9.01 9.54 6.88 9.55 6.68 4.32 6.58 -0.12 4.92 6.25 3.41 8.14 8.76 8.94 5.91 8.75 5.45 1.31 6.61 8.29 7.58 1.77 7.94 9.9 3.4 6.36 8.12 1.86 2.08 8.75 5.86 10.9 8.95 6.98 9.93 6.35 12.5 7.93 12.2 8.08 11 11.1 -0.41 8.58 2.96 8.49 8.24 9.82 7.52 8.44 9.34 2.42 9.6 5.39 4.75 3.16 4.58 3.33 9.15 5.48 5.25 4.39 3.13 3.57 8.28 -0.46 -0.62 10.1 8.23 7.49 9.31 8.44 0.46 5.55 8.47 7.11 9.52 9.7 0.7 9.11 12.9 4.19 0.59 9.41 8.46 11 6.49 9.19 10.5 8.5 1.2 8.61 4.15 3.58 3.87 10.1 8.9 2.64 10.2 4.21 2.97 6.46 13.4 10.3 11.2 0.8 1.9 5.41 10.1 10.2 6.69 6.46 12.3 1.37 7.81 9.94 3.69 7.79 9.94 6.87 8.28 -0.07 6.6 0.52 7.89 2.88 7.63 9.11 7.39 5.55 8.1 12.1 5.7 3.36 2.16 8.9 6.58 8.87 8.6 7.24 7.29 8.16 7.85 3.73 7.46 7.59 14.8 12.7 7.48 0.19 3.26 6.93 6.33 -0.76 10.2 10.6 7.6 7.99 9.84 4.55 6.9 9.6 10.6 11.7 9.93 11.6 6.86 2.47 4.89 6.55 9.67 5.36 4.41 6.91 7.59 8.49 10.4 3.37 5.72 11.4 2.88 3.55 7.07 11.4 10.9 7.72 8.46 4.94 8.09 13.2 3.26 8.61 8.23 3.77 7.68 9.42 9.75 8.89 6.68 10.1 0.2 -0.34 2.63 8.6 5.02 6.43 4.65 6.15 5.91 9.21 8.19 4.22 5.47 9.54 7.25 3.11 8.1 9.16 8.6 2.1 7.73 8.61 7.63 9.33 7.72 7.75 10.9 1.07 10.6 12.4 7.98 2.91 7.11 4.59 7.43 6.23 4.2 7.42 6.14 5.37 3.64 7.76 7.25 5.37 3.07 7.73 4.98 11.1 8.31 9.52 5.19 7.12 2.36 8.91 -0.17 7.43 8.33 7.01 3.54 6.17 7.17 8.7 7.92 2.13 10.5 9.92 6.69 1.17 8.03 9.6 8.62 11.3 9.32 5.37 9.35 8.49 8.34 11.6 11.6 3.4 4.47 8.26 9.13 8.26 5.51 2.36 7.71 10.1 9.07 5.69 2.84 1.66 5.8 1.14 6.31 11.5 8.33 10.3 7.59 9.53 9.87 6.06 9.15 9.61 0.63 8.77 8.32 6.59 4.85 12.2 7.16 8.5 0.97 7.3 1.02 7.6 9.25 1.63 7.36 6.59 6.27 11.3 1.98 9.06 8.86 4.62 6.23 5.46 6.42 4.9 9.16 7.13 8.33 8.83 5.91 10.1 2.99 2.08 9.61 4.11 2.66 3.61 4.15 8.05 6.57 8.89 9.48 8.22 6.35 10.3 10.6 7.29 11.4 10.2 7.73 8.23 7.05 8.42 6.31 0.68 6.65 6.76 13.9 8.4 6.65 10.7 6.68 3.83 3.09 7.27 8.78 12 9.08 8.55 9.09 1.96 2.9 8.13 1.66 4.84 0.74 8.28 4.39 8.03 1.63 3.4 6.77 8.02 4.3 8.27 8.72 4.8 10.2 10.7 5.95 7.23 5.74 3.35 2.18 8.91 4.45 7.48 2.26 10.7 15.1 7.72 7.99 9 14.2 11.6 5.49 0.3 8.31 9.17 2.91 11.1 7.07 8.27 9.08 13.8 5.17 5.61 13.9 0.82 9.99 2.68 9.51 10.6 8.96 10.4 4.15 10.2 6.66 7.19 8.7 14.1 2.73 8.07 5.77 3.64 4.02 5.53 4.1 3.97 10.5 9.23 4.94 2.36 7.58 5.49 12.5 9.62 11.2 7.54 8.96 11.1 3.42 10.6 11.7 8.82 12 8.79 3.86 11.9 9.33 7.87 7.82 7.74 6.36 2.42 7.63 9.6 6.78 9.71 9.92 9.16 9.16 7.92 11.8 5.27 3.21 7.08 8.25 6.87 6.16 2.1 2.39 6.12 11.1 2.27 5.35 6.15 4.2 7.26 11.4 8.15 5.89 8.34 3.38 5.91 10.1 7.97 1.81 9.71 6.92 8.43 9.39 11.1 5.97 9.22 8.14 8.31 4.56 3.36 4.52 9.72 7.61 9.46 6.91 7.51 4.55 6.12 1.32 1.99 8.62 4.88 1.88 9.54 7.87 11.4 13.6 9.33 3.86 7.87 11.4 2.57 8.57 11 7.56 12.1 10.9 7.21 1.24 10.7 8.26 2.42 10.2 2.4 1.44 8.19 8.19 7.2 8.95 6.85 8.79 -0.48 -0.11 8.03 9.74 7.41 7.45 -0.19 3.87 2.37 9.01 8.71 9.54 11.4 6.35 8.28 8.66 6.57 11 2.7 7.7 1.91 9.06 7.35 -0.32 5.2 4.72 0.55 7.89 4.18 7.91 11.3 9.14 10.4 9.58 2.11 2.86 7.77 5.4 11.2 4.13 7.26 7.2 9.88 7.62 8.8 3.67 6.78 7.08 7.57 9.48 2.75 8.3 11.6 8.87 5.63 9.63 10.5 5.33 6.74 11 5.61 9.8 8.54 6.56 10.9 11.8 12.4 10.7 3.12 6.63 8.37 7.53 1.99 9.58 3.29 9.44 1.82 9.09 15.4 0.07 3.68 10.1 4.29 9.39 1.78 13.5 9 2.38 8.06 5.36 5.14 14 13.3 12.5 8.61 12.2 6.43 5.56 7.19 9.66 6.95 2.7 6.2 11.7 9.25 8.05 9.58 7.18 8.79 5.38 6.84 6.13 9.47 1.6 3.82 10.9 6.11 2.89 12 8.24 4.92 5.77 7.03 7.12 11.6 6.89 -0.54 9.05 10.2 7.59 4.37 3.93 9.95 9.36 7.15 3.97 11.1 7.65 1.39 11.9 9.57 9.23 10.1 9.29 7.74 0.38 7.53 5.26 8.15 7.68 13.1 13.3 5.83 5.01 2.2 9.37 6.59 8.18 10.7 11.8 5.53 6.02 3.73 9.72 8.45 9.61 4.23 9.8 10.5 2.43 6.15 6.84 12.9 4.48 1.45 10.3 10.7 6.5 -0.24 8.41 6.85 4.09 1.23 10.4 4.45 3.04 3.79 8.72 9 7.39 6.35 6.62 8.9 5.03 7.17 10 9.34 10.2 5.69 1.44 9.76 8.56 4.06 10.6 10.3 5.57 7.41 7.96 7.6 4.32 7 10.7 3.26 10.2 1.17 10.4 3.93 8.71 8.73 2.47 1.05 12.3 8.73 6.06 1.8 2.83 2.71 4.1 5.03 3.02 6.26 10.9 -0.51 8.84 11.8 9.55 12.1 7.82 10.9 10.5 6.67 3.33 10.3 11.5 7.14 9.06 8.49 9.21 4.44 3.58 8.55 6.85 3.93 6.28 6.34 6.05 7.42 10.1 8.91 5.34 0.47 9.58 10 10.6 8.48 9.72 7.19 6.66 7.12 -0.23 4.27 7.22 9.03 3.58 3.72 11.6 9.2 6.62 9.69 6.2 4.8 -0.32 8.13 3.11 10.9 9.2 5.45 5.63 6.91 3.57 9.81 4.29 9.18 8.53 10.6 7.34 7.75 12.6 3.38 1.73 5.33 12 4.67 6.81 11.1 3.56 -1.04 7.74 5.67 11.4 2.8 6.08 6.72 8.23 9.43 11.3 5.56 6.55 6.07 5.62 1.73 6.45 9.13 5.59 8.04 1.02 -0.33 11.6 9.11 5.51 8.17 5.59 2.77 8.54 9.78 4.98 0.87 9.29 4.26 5.8 2.04 7.91 1.23 9.27 6.71 3.49 10.5 1.8 12.8 8.06 7.73 5.59 4.24 4.38 11.3 1.12 9.73 8.97 6.14 1.08 5.2 0.46 4.97 1.94 0.95 -0.41 10.8 0.29 2.26 4.8 -0.38 8.98 1.23 8.75 1.21 8.82 9.47 6.77 8.92 4.95 9.14 9.29 4.52 13.6 3.01 8.29 7.1 8.39 10.3 7.19 9.03 0.37 -0.41 6.25 1.76 4.82 10.3 5.69 3.38 13.1 6.83 4.85 8.56 3.31 4.59 2.04 3.12 7.15 7.62 4.03 9.39 7.01 8.27 0.3 11.5 8.57 7.81 8.16 5.78 5.14 4.62 2.18 8.95 5.17 9.71 6.17 5.33 8.04 4.28 5.15 8.06 8.43 7.95 9.52 5.12 6.37 7.58 6.37 7.87 4.05 4.21 8.46 8.22 7.55 8.88 3.98 1.15 5.64 6.33 5.49 -0.46 6.54 11.3 2.35 9.03 5.01 7.9 3.95 7.92 9.8 5.38 7.49 8.67 3.61 0.54 11.7 4.46 1.92 7.43 9.81 10.5 7.87 -0.43 9.88 4.03 7.76 8.81 2.71 10.5 10.2 1.2 9.74 5.64 3.62 5.88 8.39 1.01 3.87 4.8 9.43 9.15 8.18 8.18 2.17 9.6 9.73 3.64 4.71 13.2 12.4 3.19 10.1 5.23 6.9 12.5 11.2 11.1 0.29 5.46 12.6 -0.17 5.57 9.88 4.88 0.56 1.1 1.49 6.9 -0.18 9.02 3.13 1.57 7.58 10.4 6.79 7.36 9.79 1.5 6.28 5.05 9.32 7.33 4.71 6.97 2.9 8.01 7.26 8.58 3.64 7.87 3.01 9.52 8.12 12 4.48 7.43 8.31 4.6 4.22 9.23 6.86 15.2 9.59 14 8.41 4.1 2.62 5.21 10.2 9.53 6.01 1.33 1.97 3.94 8.46 9.48 9.69 11.4 7.3 5.55 8.43 5.12 2.89 4.16 8.94 3.52 5.46 7.57 5.85 10.6 0.78 8.75 2.81 10.9 7.87 5.98 8.1 1.42 7.81 6.99 8.77 12.4 7.23 2.59 7.83 2.36 5.29 0.5 8.4 3.67 9.19 9.05 5.12 9.73 7.11 10.4 8.89 9.27 11.8 2.72 3.04 6.1 7.67 3.06 10.4 9.89 8.28 8.92 13.4 3.7 8.35 8.41 11.1 7.52 6.56 4.46 5.75 7.47 9.25 8.8 7.92 6.39 7.71 1.58 8.58 2.37 8.66 3.33 4.21 9.8 7.87 3.23 4.59 8.54 7.5 2.76 7.84 10.1 8.15 8.08 8.52 10.9 6.79 7.67 13 8.11 6.18 12.2 10.3 8.38 4.23 9.09 7.15 2.16 3.09 5.76 10.4 7.5 5.82 5.2 9.21 0.17 10.5 6.91 9.75 8.89 9.3 3.96 7.9 10.3 3.55 3.73 -0.24 5.3 9.54 8.06 6.13 5.73 8.78 5.09 6.81 7.25 9.8 4.99 10.5 8.23 0.44 3.92 7.84 5.06 7.73 6.23 7.94 9.45 10.4 -0.06 2.06 6.71 8.13 8.36 7.87 9.58 10.3 0.7 11.8 6.5 8.91 7.64 5.27 2.28 7.89 8.84 7.17 10.8 13.4 9.02 6.91 6.8 -1.85 10.8 4.27 9.14 5.71 7.01 1.77 2.06 11.4 3.61 4.26 0.93 6.23 9.2 2.09 8.73 -0.58 5.72 3.34 6.67 4.79 4.97 8.08 5.89 5.57 7.38 1.1 6.75 3.99 9.36 6.75 9.39 4.12 5.48 2.77 1.24 5.49 8.46 5.68 5.54 3.85 7.36 8.48 0.43 8.2 5.22 0.52 0.44 3.98 1.38 3.61 4.48 3.28 4.11 11.2 8.02 9.36 6.5 10.8 -0.48 0.35 10.9 6.03 4.16 10.4 2.3 3.39 11 11 -0.04 10.1 1.78 10.2 0.14 1.54 11.5 9.18 2.51 1.66 13 10.3 0.85 6.15 12.5 7.21 9.79 6.59 7.83 4.41 5.07 7.29 10.2 8.99 10.3 12.1 6.1 8.25 2.86 9.28 10.3 2.51 5.53 10.3 9.56 5.37 7.91 4.32 6.26 11.2 2.69 5.88 11.1 4.34 2.14 9.57 1.01 4.84 7.17 1.49 5.78 11.7 10.9 1.16 10.9 7.73 7.3 10.2 3.43 10.8 9.44 3.04 1.9 0.53 0.81 2.67 6.61 4.18 6.01 12.3 7.59 9.3 7.16 6.62 7.7 8.93 6.04 7.12 5.03 9.11 6.21 -0.72 12.1 7.74 7.11 7.94 7.29 7.08 2.77 7.44 5.53 3.46 7.15 7.93 6.69 5.94 7.9 10.5 -0.69 7.96 4.13 4.65 9.04 0.77 10.4 6.34 10.1 9.11 10.2 1.11 7 11.7 1.32 7.93 7.71 10.3 9.82 12.5 11 0.6 9.34 0.75 12.6 2.42 8.58 2.64 3.31 0.17 5.63 2.42 5.77 1.59 1.15 2.79 1.47 11.2 4.57 9.35 10.6 12.7 6.34 4.32 3.91 4.1 9.77 8.52 10.8 8.6 12.5 13.1 3.87 8.76 11.3 3.74 4.83 9.32 3.03 9.83 2.98 6.92 13.4 11.8 2.57 8.59 9.73 7.65 5.78 7.37 5.99 11.2 9.57 7.24 9.11 7.54 5.71 7.11 7.14 9.94 9.04 0.57 9.08 11.1 9.95 1.55 4.9 2.87 5.05 6.91 2.85 8.88 0.89 5.96 6.7 6.82 4.08 8.38 2.72 8.97 8.66 3.4 3.88 6.87 10.1 4.04 1.69 5.77 9.11 4.69 7.39 4.99 1.93 0.35 9.34 8.15 10.2 2.84 5.98 7.6 5.1 3.4 2.86 4.78 7.31 2.18 2.38 8.93 10.4 6.07 10.1 6.51 0.56 9.97 3.46 5.64 2.5 4.88 4.35 10.6 7.06 7.06 8.73 2.96 10.8 6.05 10.7 9.37 3.99 10.4 3 8.2 12.4 6.18 10.3 2.75 9.14 8.27 10.4 10.5 14.3 7.63 7.54 6.96 9.33 12.5 11.6 12 6.4 6.36 1.96 10 10.9 9.82 10.7 11 3.14 10.4 8.04 11.9 0.19 -0.33 4.77 4.07 8.92 8.63 4.84 6.23 6.48 9 9.3 7.49 4.45 1.24 5.87 2.39 6 10.2 4.83 2.48 11.1 12.3 9.07 4.43 11.1 11.1 11.6 11.1 8.11 10.2 7.42 9.7 7.05 5.49 9.01 8.76 9.82 6.91 3.02 9.03 9.63 5.06 6.02 8.94 11 0.72 9.58 2.13 0.85 9.56 11.5 8.24 3.1 13.4 9.31 10.9 11.6 4.65 10.2 13.7 10.6 6.48 9.25 7.61 7.21 9.87 6.74 11.7 7.17 10.4 9.56 7.67 13.3 8.86 2.08 8.95 1.55 9.24 10.4 9.71 12.2 10.5 9.43 8.44 8.9 6.32 10.1 9.82 8.25 8.67 9.39 6.93 7.49 12.9 0.09 10.9 10.6 10.8 8.38 11.5 9.17 9.94 9.57 7.9 9.1 8.52 8.09 12.2 7.19 9.15 11.7 15.5 3.24 1.76 8.76 10.3 6.85 8.54 8.97 11 11.8 13 14.6 9.47 11.4 7.33 8.87 8.12 8.86 10.3 6.34 4.05 7.76 11.3 7.78 9.79 8.58 7.82 12.3 6.39 7.08 5.65 11.1 7.29 9.09 0.55 8.15 -0.27 8.18 4.69 5.8 9.66 2.98 8.54 10.8 9.49 4.66 10.3 9.64 8.4 9.8 5.05 8.28 9.69 10 1.02 9.43 7.77 6.81 4.15 11.8 4.68 7.07 8.65 3.21 0.71 5.83 -0.09 9.14 3.02 4.89 9.89 9.47 7.56 13.1 5.95 8.37 10.1 4.93 6.39 9.25 12.1 8.23 12.2 9.08 9.94 11.4 13.6 14.1 11.4 13.2 0.97 7.87 0.54 10.7 5.09 6.65 11 -0.31 1.26 4.78 8.78 2.21 10.6 7.13 0.97 3.27 10.2 6.09 6.88 8.74 2.07 9.14 5.38 7.24 7.69 14.1 9.1 4.3 10.1 13.5 9.91 9.07 1.39 2.81 9.94 9.61 6.73 12.9 10.2 7.15 3.54 4.63 3.4 11.2 11.1 5.86 10.3 7.68 0.45 7.9 5.82 7.84 2.89 8.8 5.12 2.63 2.25 10.4 7.83 5.14 6.43 9.98 9.1 8.94 5.77 10.4 7.47 8.39 4.89 9.44 7.25 8.76 7.92 5.95 9.95 7.37 9.02 10.8 11.6 11.4 11.5 5.95 8.66 4.21 9.09 5.45 10.8 5.23 10.7 7.66 5.54 9.07 9.65 10.7 6.98 9.08 10.1 2.2 11.3 3.45 7.73 1.3 8.55 2.84 7.26 6.4 8.75 10.4 -0.72 3.69 9.07 9.53 5.28 5.39 12.3 7.8 0.38 4.58 8.01 8.65 10.2 8.79 8.97 7.35 8.59 8.51 5.78 4.02 6.43 7.23 3.01 12 8.75 4.31 13.8 4.45 8.97 3.24 3.02 0.6 7.28 5.66 7.47 7.96 12.2 10.6 9.48 10.8 8.16 7.18 13.9 8.38 3.47 3.29 7.44 9.36 8.94 5.4 8.76 8.56 7.71 8.49 11.5 7.13 12.9 8.76 10.2 5.84 6.94 10.6 11.5 12.1 5.02 10.6 11.8 11.2 9.61 3.9 2.79 8.2 3.36 9.27 4.83 11.6 8.53 7.07 8.73 11.7 5.18 14.3 8.87 4.58 8.91 6.33 8.62 7.33 9.76 2.78 7.17 10.2 11.9 9.13 10.5 11.6 1.42 7.43 13.1 1.9 2.34 12.9 9.28 8.3 2.13 12 0.91 7.31 10.1 7.68 10.1 8.02 10.3 8.51 11.1 11.2 7.37 10 9.93 12.9 9.01 10 5.59 10.1 1.38 11.3 9.59 9.27 11.3 8.3 10.6 10.5 7.29 3.7 7.54 11 10.1 1.4 10.7 8.19 11.9 7.24 8.25 11.1 -0.32 11.5 9.23 10 2.42 8.54 9.23 6.71 13.5 8.8 6.53 8.87 8.37 0.21 9.36 10.1 8.53 4.99 11.5 4.14 -0.56 8.32 3.2 8.53 2.59 6.99 9.1 5.41 0.34 11.9 3.96 5.6 8.59 7.48 8.64 8.16 3.92 9.25 12 11.5 8.08 7.86 10.8 5.33 9.04 8.22 8.32 16.1 10.1 7.02 10.3 7.92 3.87 2.69 12.8 9.33 11.2 1.83 2.19 7.76 6.8 6.55 7.65 4.15 9 12.4 6.01 7.65 9.01 7.76 11.1 7.68 4.85 6.66 7.63 7 7.88 8.67 6.16 9.07 8.16 9.36 8.84 10.6 7.62 8.18 9.47 3.45 10.1 3.91 7.33 7.65 7.97 5.67 3.33 4.77 7.48 4.41 3.14 9.14 0.87 9.23 8.25 8.85 4.24 2.75 3.85 2.64 4.62 3.33 6.43 0.86 8.77 7.22 -0.82 -0.38 6.37 7.28 6.54 5.48 6.32 7.32 5.8 12.3 5.82 8.79 6.2 7.46 9.16 9.66 3.49 11.3 7.84 10.3 5.88 11.2 6.13 7.02 8.56 10 9.72 11.7 5.32 9.51 6.55 8.92 6.73 7.29 6.87 1.84 9.91 9.52 2.78 5.42 2.01 5.91 4.9 8.24 4.81 5.29 6.74 3.11 11.8 0.37 9.9 10.7 7.41 9.14 7.47 9.35 4.75 9.42 3 5.61 12.5 8.36 0.62 7.66 8.24 7.56 9.06 2.56 9.15 8.97 8.16 5.07 8.66 3.74 10.1 6.37 9.17 8.53 8.86 6.68 11.4 10 6.51 9.31 11.3 4.05 8.88 10.5 4.26 9.25 6.51 3.39 8.59 9.23 5.22 10.1 11.1 9.26 7.86 2.28 3.77 4.18 -0.34 4.35 11.2 3.79 6.22 1.39 1.87 6.97 4.89 6.22 3.21 7.89 10.5 8.3 8.63 5.26 7.93 8.68 9.37 12.4 11.2 4.4 8.19 8.5 6.14 3.79 1.49 4.66 4.13 9.3 6.99 5.33 2.97 14.6 12.8 7.6 2.66 3.87 3.41 8.26 10.3 6.62 7.14 10.7 8.7 10.8 8.74 9.45 6.77 13.2 8.17 7.79 0.79 11.1 4.19 9.54 8.21 10.9 6.65 12.4 5.49 13.4 7.42 10.9 8.64 5.86 10.2 11.2 10.3 3.28 8.13 10.6 7.88 10.4 9.83 10.9 12.7 7.62 4.12 -0.35 8.3 8.9 8.47 9.92 7.12 8.56 8.45 9.04 1.06 9.86 9.89 9.52 10.1 7.38 11 8.92 10.9 2.14 9.55 7.4 9.76 11.4 1.23 12.8 7.21 9.31 11.5 7.54 9.45 9.41 9.65 12.6 9.53 7.99 7.83 11.7 9.22 6.11 10.9 8.99 10.4 8.92 9.15 3.18 10.2 9.76 2.27 9.79 8.36 7.95 3.17 8.95 5.89 8.86 10.9 11.6 10 11 10.7 10.1 8.1 9.31 12.5 4.57 8.56 11 0.73 11.5 12.1 9.92 9.76 6.83 8.6 10.8 6.93 11.1 11.1 10.6 11.2 7.59 10.1 9.86 8.37 11.3 9.85 9.09 8.95 12 8.67 9.46 0.79 8.1 10.4 7.73 2.34 2.88 10.7 8.57 3.83 10.7 5.28 3.62 10.9 8.58 8.89 5.4 9.31 11.4 3.17 -0.23 1.59 9.55 12 10.2 8.37 5.66 9.66 1.94 9.17 10.8 6.92 10.3 9.08 8.37 6.62 8.74 -0.34 10.5 9.38 10.6 9.53 9.54 8.46 11.4 8.34 12.7 11.1 11.5 8.62 4.83 1.31 10.2 9.68 11 8.49 10.7 9.43 7.24 7.08 10.6 8.92 11.3 10.6 10.1 12.4 4.57 7.5 10.3 10.7 11.2 11 8.82 10.7 10.4 12 6.86 8.03 3.7 10.3 11.6 10.2 9.46 11.1 9.93 7.16 10.2 11.2 10.7 2.44 7.82 10.4 9.67 9.42 9.1 10.3 8.5 8.42 9.54 9.95 8.36 7.86 11.3 11.8 6.93 10.2 10.5 9.33 10.5 10.5 9.26 9.53 8.55 8.24 8.47 10.5 3.08 9.1 2.26 9.5 8.72 2.7 11.3 9.22 9.85 5.45 8.41 10.7 11.5 7.18 0.48 7.14 9.55 10.2 11.3 4.46 12 8.23 10 10.3 7.38 11.2 10.7 8.24 9.56 8.44 10.6 12 10.1 10.1 9.86 8.97 10.4 4.43 6.4 7.07 0.49 10.2 9.84 10.9 10.8 9.79 9.67 8.79 14.4 9.83 9.45 11.2 9.71 10.4 9.95 10.7 11.2 10.2 7.99 12.7 10 10.2 8.16 10.1 8.88 8.49 10.6 9.29 8.72 10.5 5.33 8.76 9.59 10.3 12.3 9.51 9.3 8.72 12.5 12.4 11.3 10.7 13.3 7.09 9.6 12 10.7 11.9 10.4 10.3 7.63 9.98 12.4 1.2 10.2 9.29 2.52 10.5 9.12 10.1 8.95 11.6 11.4 12.6 10.7 0.48 11.6 10.3 2.43 10.6 8 9.16 10.9 10.7 5.58 9.02 6.18 8.93 12.3 7.12 6.35 9.08 9.18 10.2 3.02 8.51 7.76 7.67 10.4 10.4 9.93 11 5.11 7.91 9.37 11 11.4 5.63 7.02 8.85 9.97 4.43 9.48 10.1 10.2 4.86 8.33 9.34 10.2 10.7 11.8 8.42 7.44 9.82 7.05 9.41 10.4 10.8 9.87 9.14 8.72 11.2 9.59 5.16 3.13 9.56 4.74 6.44 10.6 7.88 8.92 6.55 10.2 9.92 10.9 11.5 9.28 8.26 9.87 9.29 4.7 10.2 9.69 1.25 9.36 9.52 8.27 10 11.1 9.08 9.21 10 6.38 10.1 4.21 10.7 8.86 11.3 12.2 6.82 10.9 9.97 11.8 9.55 10.6 9.4 10.6 9.3 10.4 8.26 5.75 9.15 10.5 7.36 9.02 11.7 8.28 9.55 11.1 2.43 13.1 11.7 10.2 11.6 11.2 8.44 9.62 9.2 10.7 1.54 9.85 9.72 7.73 8.84 11.7 7.09 12.2 10.5 11.8 10.2 10.7 7.88 10.7 8.33 9.54 9.69 11.6 8.47 10.2 9.94 12.6 10.3 10.7 10.3 10.9 9.54 10.6 11.6 8.67 10.5 8.76 7.37 11 10.7 8.42 9.63 8.02 10.8 10.7 8.7 3.83 8.92 8.32 9.86 8.25 6.99 2.26 4.5 7.84 1.11 8.97 12.1 7.42 12.2 8.57 7.62 10.3 10.5 0.47 7.86 7.07 11.5 11.4 8.81 9.2 11.1 11.6 12.8 8.88 9.71 7.8 6.92 3.57 9.6 10.9 11.4 8.13 7.69 6.96 11.2 10.8 13.1 9.43 8.94 11.9 10.9 10.8 9.63 11.3 9.74 9.99 8.2 9.87 1.82 8.2 5.41 2.84 4.87 11.4 6.57 7.89 9.48 6.82 12.6 9.92 9.63 9.21 11 9.48 10.1 10.2 11.8 10.5 8.89 9.49 9.62 10.1 2.21 1.96 12.8 9.33 10.8 13.8 9.51 10.6 9.08 7.92 12.5 10.4 8.57 10.5 6.93 9.85 7.75 4.45 7.88 6.9 4.68 9.82 -0.49 8.42 1.07 2.86 7.97 10.5 11 11 7.25 7.7 9.62 10.6 8.92 9.5 12.2 10.8 10.4 11.1 2.57 3 11.8 7.32 7.8 9.99 2.04 8.31 10.3 6.69 11.2 9.28 9.53 6 11.5 10.1 9.16 9.39 10.8 8.08 7.47 9.76 11.7 9.24 9.3 8.98 9.18 10.6 8.18 5.25 10.3 7.16 11.6 11.9 9.06 10.2 10.9 2.51 8.97 11.1 11.4 10.8 3.33 1.01 4.28 2.54 11 6.78 10.8 9.95 7.04 9.72 11.2 8.94 6.11 10.5 10.1 12.4 10.6 9.67 9.35 5.53 13.3 7.26 8.86 9.9 7.75 9.28 10.1 11.8 9.11 5.79 9.82 6.63 10.2 3.84 9.04 8.51 9.84 10.9 3.29 9.34 10.4 10.2 9.34 7.37 10.5 8.76 1.54 7.31 5.42 2.95 12.9 9.59 8.47 9.36 9.52 13.1 10 3.28 2.34 7.19 7.8 8.46 8.57 9.08 9.14 10 3.25 7.98 8.78 8.53 7.46 7.38 11.6 9.86 0.03 6.99 3.14 3.81 8.52 3.72 10.2 4.99 9.73 3.52 3.52 1 6.17 8.58 5.12 5.46 7.58 7.85 0.27 1.84 6.17 10.7 9.2 8.04 10.3 5.99 7.17 15.1 8.83 10.9 7.57 15.4 10.6 11.1 12 7.09 10.9 10.8 7.34 2.7 9.52 12.5 4.98 4.07 8.2 6.62 4.64 7.44 1.15 4.19 5.51 9.62 9.61 5.28 5.1 9.51 9.62 8.69 8.11 6.42 11.4 7.89 8.31 9.7 6.14 5.74 13.6 8.63 3.8 11.3 2.42 6.84 9.31 7.86 9.66 1.92 11.5 10.6 9.03 8.39 5.93 6.22 4.25 10.1 4.17 7.53 10.4 2.49 -0.41 8.81 3.91 0.81 9.04 8.93 4.89 5.94 4.98 0.82 10.3 9.13 5.6 11.1 9.62 9.38 7.52 7.8 11.7 3.28 3.5 11.7 8.83 9.25 9.37 8.49 6.02 9.26 5.58 6.52 6.04 0.22 4.41 9.35 9.73 0.3 5.04 1.29 8.57 1.58 8.49 5 6.32 6.31 -0.21 10.2 0.21 7.23 3.99 0.57 7.69 4.41 7.47 4.75 7.02 7.8 7.99 10.6 6.81 1.69 5.33 3.6 7.19 8.1 4.77 9.4 4.28 5.65 2.36 12 10 4.11 9.49 6.73 8.36 -0.21 6.86 7.8 2.36 3.15 2.78 3.72 4.4 1.37 5.75 1.18 7.73 3.15 0.62 3.79 5.05 4.32 4.95 2.82 6.06 8.54 4.1 7.94 3.34 6.22 3.35 1.99 8.31 4.97 0.1 1.07 0.41 9.49 9.69 1.63 7.33 3.09 7.27 8.44 9.91 9.05 -0.06 9.22 11.2 9.45 7.38 10.4 5.46 1.32 6.48 6.69 7.65 10.4 10.5 3.64 10.1 6.79 11.3 6.85 11.5 11.4 9.5 8.2 7.82 13.6 11.2 7.93 9.65 7.04 9.55 2.01 9.14 10.4 8.44 4.54 5.64 10.4 9.99 9.03 7.37 0.82 12.1 10.9 7.12 10 11.8 3.93 6.07 11.3 8.07 5.93 10.5 6.21 9.93 9.02 8.83 7.8 8.56 10.5 12.8 7.34 10.4 8.06 8.03 5.88 9.32 9.59 10.8 6.62 9.96 3.89 8.65 4.63 8.81 10.8 11.8 10.2 12.2 9.84 9.34 4.8 11.4 10.3 8.36 6.9 9.38 8.3 7.44 10.8 6.75 2.57 6.85 8.36 8.65 11.4 8.21 0 11.7 6.71 8.91 8.64 9.91 9.07 8.18 5.93 10.9 11.3 7.33 12.4 8.17 7.63 10.7 9.69 9.19 3.67 7.92 10.6 11.4 -0.61 5.6 8.81 10 4.15 7.33 6.11 9.95 9.05 6.37 3.73 9.54 1.48 9.16 1.8 0.64 3.87 4.79 11.4 9.86 11.9 8.78 9.42 10 10.1 10.7 10.2 10.6 10 9.03 7.56 8.74 9.47 9.97 7.86 7.36 13.4 5.55 10.6 11 9.8 4.1 9.81 10.7 9.66 15.6 10.1 9.62 7.34 7.83 9.61 9.9 10.4 9.29 10.5 7.23 8.32 10.6 13.7 7.9 10.1 6.6 11.2 9.9 10.3 7.86 10.6 10.9 11.6 7.68 12.2 9.43 10.2 9.46 12.5 6.65 9.27 7.85 9.29 10.3 13.1 10.8 13.1 10.2 9.13 4.19 8.05 8.74 8.6 9.83 10.7 4.04 1.15 7.03 9 9.29 10.8 1.16 9.47 6.31 9.23 8.71 0.81 9.3 2.65 8.14 5.97 3.45 7.15 5.86 10.9 10.8 8.99 11.1 10.9 10.3 7.64 9.85 11.4 10.9 10.2 11.4 3.43 6.12 8.54 10.3 11.1 9.76 10.6 8.89 8.18 1.09 11.2 7.64 11.5 10.7 1.27 8.92 10.3 10.9 8.63 9.88 9.03 9.69 8.66 8.99 9.89 12.1 12.7 11.6 3.55 9.93 9.3 9.84 7.51 5.22 9.03 5.32 9.39 8.76 6.83 6.86 10.4 11.5 6.49 9.54 9.39 8.41 10.1 10.3 10.3 6.64 11.4 8.29 8.69 9.91 4.78 9.81 6.9 11.3 2.67 10.1 3.71 9.13 8.15 1.13 8.86 0.67 9.73 10.2 10.1 3.04 10 -1.24 6.36 6.03 7.16 9.46 10.8 7.96 9.45 7.13 4.74 8.82 -0.77 6.17 3.44 7.55 9.87 8.16 7.89 3.77 10.4 8.05 2.13 6.78 9.61 8.21 5.21 9.75 8.07 6.95 8.23 9.07 8.08 9.74 7.8 7.08 8.03 10.2 10.7 2.74 11 0.51 9.7 6.15 9.91 5.7 9.91 8.33 9.58 0.49 10 9.64 11 10.5 9.16 0.46 9.11 8.8 6.13 11.2 9.91 11.4 9.59 11.2 10.5 3.87 6.7 10.7 9.82 10.2 9.81 9.71 1.26 8.91 10.8 10.6 8.34 10 9.42 9.12 8.16 8.61 8.32 9.63 9.57 11.3 4.5 0.06 1.32 9.87 3.65 9.86 2.03 9.73 6.87 11.4 6.47 9.58 7.89 2.76 10.5 3.95 7 -0.71 12.3 12.9 8.99 3.86 5.45 4.38 5.12 7.64 7.22 11.1 -0.71 7.06 6.01 0.9 8.81 4.7 12.4 4.59 8.07 2.11 9.84 11.8 8.38 0.9 9.43 8.02 4.09 3.33 5.56 1.73 13.9 10.1 8.19 6.4 9.9 1.26 3.81 8.47 8.67 10.7 1.58 5.9 9.89 8.99 5.89 8.89 10.5 15.1 9.15 11.3 9.36 9.84 7.37 10.1 1.37 1.41 9.82 2.29 9.87 8.79 6.11 11.6 11.3 8.62 10.5 8.2 9.11 12.8 3.26 8.31 2.92 4.77 9.82 8.51 9.58 10.7 12.4 12.3 1.62 4.6 10.5 9.82 10.7 7.74 7.85 9.29 9.84 12.1 9.26 7.36 7.22 7.33 9.61 2.13 10.5 1.96 8.13 3.57 6.55 9.75 10 4.24 1.15 9.96 7.67 11.2 11.8 9.8 9.56 6.14 7.24 6.79 8.15 5.93 8.3 6.2 7.33 11.7 3.76 8.15 4.08 3.96 7.3 11.1 4.02 11.5 6.69 7.88 6.6 0.22 7.04 10.2 12.1 6.32 9.06 11.3 1.54 10.1 0.81 8.16 8.87 4.61 10.8 8.3 11.8 7.68 5.09 3.24 10.3 8.15 6.27 3.22 2.08 2.96 3.92 7.7 11.2 5.65 7.93 13.4 3.03 4.17 6.66 10.7 9.31 8.76 4.62 4.37 7.21 11.9 10.3 8.29 9.69 8.86 8.9 11.1 10.9 10.7 8.76 8.95 4.14 9.59 9.44 2.05 5.13 6.74 4.35 6.63 9.45 7.35 9.59 9.84 -0.36 10.6 7.5 3.84 8.94 8.88 10.2 3.53 8.61 3.01 8.24 2.59 4.31 9.01 11.3 6.13 10.3 9.22 11.2 8.23 4.73 10.3 9.88 7.95 11.3 11.4 10 9.85 9.74 8.7 5.44 5.17 9.21 10.8 8.9 8.09 5.25 8.09 8.57 11 4.94 5.06 7.09 12.2 8.35 9.45 5.54 10.4 9.09 8.26 11.1 3.34 9.67 8.6 1.31 7.44 8.11 10.6 7.05 5.89 14.2 4.12 11.7 9.09 10.7 8.7 8.23 9.53 8.89 6.94 12.8 11.1 3.45 8.23 10.5 16.1 1.1 5.36 12.9 13.1 1.68 1.47 2.37 11.6 4.82 2.31 9.59 8.93 3.78 10.8 4.13 1.68 13.1 2.6 7.21 8.85 11.1 10.8 11.1 12.3 9.85 10.6 10.1 0.74 10 3.16 0.79 10.4 3.84 10.8 11.6 3.86 7.08 0.98 4.24 7.13 7.81 2.36 0.25 3.39 4.08 5.09 8.38 3.92 11 3.57 -0.8 6.03 0.52 4.69 8.35 4.72 5.47 5.93 2.35 4.39 3.13 3.05 9.14 10.7 7.38 12.1 11.4 6.1 2.46 3.68 10.9 6.37 8.09 10.6 7.4 8.11 8.52 7.26 5.76 6.54 2.75 6.96 5.95 6.45 5.29 9.25 3.79 7.3 11.9 10.6 1.78 8.97 3.87 4.11 4.07 2.61 2.08 5.07 2.66 10 4.05 6.42 4.58 9.24 7.5 9.42 4.75 1.72 4.07 3.38 10.5 2.27 7.08 0.99 8.41 0.71 6.04 -0.38 2.51 9.48 11.1 8.35 5.28 3.54 3.71 4.08 5.54 4.88 7.17 0.54 1.2 3.98 10.7 6.62 5.9 4.91 5.42 8.85 5.78 9.93 4.88 5.51 6.24 2.73 4.89 7.63 8.42 3.44 1.55 13.1 9.98 11.3 5.56 2.36 9.16 8.06 -0.5 7.66 8.54 4.39 6.54 4.47 8.57 4.81 10.4 9.63 2.35 0.69 2.46 7.1 7.49 0.99 3.29 1.86 9.58 3.61 -0.09 8.59 11.1 9.42 6.02 6.5 7.8 0.51 0.08 3.26 4.43 7.96 2.76 0.32 9.87 1.95 9.4 4.32 6.33 2.85 4.2 6.27 8.45 7.44 8.98 6.97 13.3 5.89 4.89 5.25 1.13 6.11 12.3 1.76 7.17 8.12 6.49 7.66 1.92 7.21 5.29 -0.41 4.04 1.84 1.86 5.96 7.88 5.74 6.86 7.94 8.64 2.27 3.41 2.63 9.47 1.25 3.88 0.69 8.69 3.89 7.1 5.1 6.18 0.53 3.18 4.1 8.22 2.58 1.03 5.35 5.08 2.56 5.02 0.86 5.43 6.08 1.38 8.39 1.48 2.67 4.31 6.56 4.8 6.15 4.94 10.4 9.34 3.11 8.34 2.58 5.25 0.77 7.65 10.7 6.71 7.27 8.95 1.52 9.47 0.51 5.54 8.47 6.97 5.02 4.63 8.52 9.13 2.04 5.28 9.56 9.76 6.76 7.24 7.49 1.02 9.82 3.37 6.32 10.1 9.74 7.43 9 5.16 6.29 5.09 1.99 8.14 0.34 6.43 6.07 3.41 6.02 6.11 8.64 10.2 3.97 7.91 0.67 10.7 2.24 2.42 3.02 5.75 7.88 5.57 10.1 3.09 7.05 8.72 2.07 6.04 9.1 7.81 5.7 8.4 3.72 1.89 3.06 10.7 6.37 3.55 8.75 0.88 4.68 7.23 1.25 4.74 7.13 6.25 6.54 6.87 4.46 4.05 4.24 3.63 4.86 1.26 8.52 8.15 0.89 11.6 4.52 9.45 5.92 4.59 7.65 8.04 1.15 7.34 9.4 10 3.85 3.32 8.19 3.43 2.23 7.24 9.7 9.14 8.36 3.14 7.1 7.71 9.49 8.64 2.16 1.48 3.76 6.1 10.4 7.57 5.83 8.17 7.9 7.23 2.62 5.87 9.78 12.2 11.7 9.52 2.97 13.2 2.32 14.1 12.7 8.95 8.27 11.9 9.17 10.2 4.49 3.81 9.11 9.12 9.15 10.3 8.17 10.2 11.5 14.3 8.16 9.67 10.7 5.54 7.89 4.63 10.1 1.14 9.74 6.98 11.6 10.3 10.9 10.7 9.55 10.1 7.66 7.77 8.03 9.49 8.23 9.33 11 8.38 5.92 8 9.96 8.38 9.86 9.91 8.01 10.3 12.9 4.89 3.34 8.91 4.2 10.6 2.5 10.1 2.88 8.66 11.8 9.32 8.89 6.61 9.7 9.97 12.9 7.73 8.96 10.9 10.4 8.1 10 7.93 9.65 8.85 9.17 7.42 9.77 10.2 8.49 10.5 9.01 10.2 7.67 10.7 7.46 8.11 9.4 9.83 9.57 9.35 9.55 8.79 9.72 11.5 10 10.4 6.72 9.12 -0.36 9.05 8.85 8.58 1.78 9.48 9.9 10.7 9.7 0.35 3.01 8.02 4.87 11.4 2.01 3.48 10 7.49 2.39 5.47 11.8 11.6 6.36 6.07 14.3 4.35 11 12 10.8 11.1 12.7 11.7 10.3 10.4 7.08 8.77 10.6 8.77 10.4 4.64 13.2 11.1 6.07 7.52 9.89 6.69 9.95 8.3 8.93 8.9 10.2 9.2 8.85 7.76 6.94 9.18 11.9 13.1 11.5 9.21 4.13 11.2 11.2 7.16 9.5 10.6 0.74 10.8 6.68 1.82 10.9 9.8 -0.14 7.73 9.46 6.32 10.3 3.28 9.78 2.32 3.86 7.56 7.79 10.2 3.95 11.6 9.41 7.9 1.57 10.7 11.3 9.15 9.12 2.46 5.07 10.6 12.4 10.8 1.59 9.3 10.2 7.46 7.02 11.4 9.82 10.7 6.03 11 1.06 10.2 8.52 10.9 7.84 4.71 9.13 10 2.54 9.14 5.36 8.96 9.13 7.2 8.98 8.54 10.2 11.4 7.65 9.02 11.9 9.34 10.7 14.1 8.28 8.76 5.52 7.8 7.38 0.66 10.7 6.66 7.83 1.95 5.85 8.19 9.77 7.12 6.84 8.44 2.75 10.4 8.5 11.8 11.3 1.63 11.2 1.36 8.35 6.71 8.46 9.48 8.69 7.27 9.92 10.7 7.22 10 11.4 7.69 8.37 8.73 8.62 5.71 8.49 4.06 10.6 6.58 9.46 10.2 8.23 11 8.6 0.79 9.49 1.88 10.7 11.4 10.4 2.92 5.97 10.1 5.61 4.87 4.53 13.2 11.3 13.8 2.63 5.14 3.31 12.8 7.2 4.27 10.3 11.9 9.38 13.4 13.8 13.9 10.1 9.89 5.95 11.6 11.3 9.94 5.59 9.76 0.8 4.55 3.05 6.85 11.7 9.88 9.81 -0.04 -0.96 0.82 2.76 8.4 1.7 11.9 8.53 11.8 9.97 10.5 11.5 11.3 1.92 14.3 14.2 11.1 6.04 7.62 11 10.4 10.3 7.83 12.6 8.07 3.9 1.78 9.39 6.86 5.88 2.45 3.2 9.57 5.2 8.44 8.5 6.06 9.74 5.34 3.73 10.3 7.64 10.3 10.4 11.4 11.9 6.03 11.9 6.71 14 10.6 11 11.1 10.4 10.3 10.2 11.7 11 10.3 10.8 6.41 8.16 13.5 14.3 14.1 10.2 9.88 12.9 7.97 4.16 10.4 9.87 2.06 8.77 6.44 8.51 4.05 12 10.6 8.08 6.85 5.81 3.26 13.1 9.23 6.39 10 1.14 4.17 3.52 7.58 8.55 6.76 8.75 13.3 11.3 12.3 11.7 12.3 9.7 9.85 10.1 14.5 1.92 7.66 9.14 9.37 11 9.32 2.76 10.6 7.71 8.55 8.37 3.64 9.84 0.75 7.29 0.48 9.2 2.59 8.82 12 7.02 13.3 11.7 12.8 11.7 12.2 11.6 10.7 10.3 13.5 -0.11 12.2 13.1 2.85 4.68 3.71 6.48 7.69 6.52 2.26 5 3.41 6.65 8.07 11.2 9.8 2.89 2.99 6.64 12.1 11.8 9.63 11.2 11.6 11.6 11.6 10.6 7.94 2.65 1.67 8.96 6.99 9.46 10.1 10.3 0.85 5.89 9.3 7.45 9.2 9.68 0.38 5.87 1.57 8.7 0.5 6.32 8.1 11.2 9.9 7.47 10.8 3.44 4.78 10.7 10.7 11.3 11.1 11.2 10.5 2.73 10 5.08 5.7 11 11.2 7.7 7.68 8.88 11.5 11.2 14.3 12.4 5.66 8.35 11.1 14.3 10.9 7.55 5.62 13.8 11.8 14.6 4.78 9.27 14.6 10.3 15.6 12.8 5.36 10.9 11.1 10.2 13.3 5.95 4.73 13.4 11.4 9.22 1.45 2.26 -0.02 5.44 3.09 2.04 1.82 7.94 11.8 5.52 10.6 11.8 4.87 5.35 0.82 1.1 -0.17 9.37 10.4 0.42 3.39 4.22 8.03 8.53 8.17 8.34 0 1.8 3.34 4.34 6.32 10.3 7.75 4.4 5.97 8.14 7.49 5.07 3.84 3.72 3.28 5.03 10.2 11 3.87 8.76 7.77 4.86 8.94 9.53 8.32 5.32 11 7.36 6.3 9.2 4.96 7.69 7.13 0.52 3.04 6.96 2.23 4.59 8.88 7.28 2.73 3.87 6.19 7.02 5.19 6.87 3.16 1.97 7.04 8.37 6.33 2.39 11.1 10.1 1.08 3.73 9.53 4.65 4.06 3.04 2.42 3.75 9.7 5.91 0.77 4.92 5.47 9.57 9.14 9.81 3.71 -0.75 2.83 4.56 0.73 9.2 3.28 1.52 8.21 5.29 7.2 0.91 9.4 7.74 4.86 3.22 1.27 7.58 5.75 6.93 6.23 5.14 4.49 0.68 2.32 4.78 4.39 8.05 7.47 6.58 9.41 3.58 1.03 1.33 8.45 4.54 13.8 11.8 9.37 10.5 5.63 10.9 0.84 4.99 6.09 10.6 12.1 0.76 7.01 9.34 1.5 7.33 -0.43 6.13 6.86 9.03 10.6 9.47 14.3 5.98 4.27 4.73 0.58 6.31 2.52 6.82 0.63 7.38 4.86 5.03 9.76 -0.03 8.87 9.85 2.98 1.65 4.37 2.22 3.49 4.15 10.1 8.55 6.71 5.7 1.26 6.08 6.49 5.17 1.73 6.4 1.02 2.62 0.63 1.42 2.91 10.8 7.03 8.39 1.04 -0.66 7.96 8.21 1.35 5.2 11.2 3.46 11.4 3.53 5.58 0.14 8.95 2.23 3.1 1.08 6.38 3.16 0.49 7.16 2.65 6.98 2.12 1.96 3.22 10.1 -0.74 9.38 2.86 3.24 11.4 13.2 3.55 4.03 5.68 -0.34 10.1 9.34 4.86 6.01 11.2 11.7 5.94 8.1 5.23 10.6 7.89 4.77 8.5 12.2 9.57 2.81 11.4 6.34 5.64 2.27 11.4 13.5 2.05 8.44 13.4 4.07 7.2 11.7 6.21 4.61 5.75 5.39 -0.17 10.4 12.2 5.18 10.2 8.03 7.89 -0.32 2.16 1.93 5.9 3.98 8.7 8.92 13.9 10.8 8.5 4.66 6.67 5.67 10.4 7.06 4.36 7.23 0.02 2.22 9.03 6.88 3.29 3.67 5.3 7.16 4.19 7.81 6.45 1.05 2.39 6.55 10.1 10.6 4.15 7.26 11.6 8.58 9.9 5.66 2.27 8.81 8.84 7.1 11.7 0.01 4.61 8.73 7.98 9.03 4.14 7.16 10.7 7.58 7.19 11.1 3.96 4.3 3.48 8.67 9.68 2.28 7.17 3.18 0.67 4.64 2.7 11.5 2.68 7.97 13.2 8.3 7.66 6.26 10.4 8.41 5.5 1.02 7.02 2.79 7.38 10.9 12.2 12.3 0.62 10.8 8.02 9.51 12 10.5 9.02 10.4 9.29 6.93 2.21 6.13 9.19 0.43 9.49 7.78 5.74 9.33 7.25 8.37 8.83 12.4 9.25 2.49 2.36 11.3 1.02 12.5 7.71 8.3 12.7 12.9 7.83 9.85 10.5 8.65 10.1 10.1 5.25 9.95 10.5 10.2 9.88 8.14 5.52 10.6 9.66 7.85 5.65 10.3 7.86 10.8 7.01 7.17 9.5 1.17 7.69 8.66 6.93 11.5 9.58 14.1 9.82 10.4 9.11 12.2 12 12.3 5.59 7.09 11.7 0.09 4.89 3.66 12.1 8.65 6.2 11.3 10.9 12.2 0.85 10.5 7.98 8.76 11.2 10.4 9.65 11.8 7.43 8.65 12 9.77 12.4 12.1 12 14.3 7.34 8.55 12 10.8 11.1 -0.38 4.65 6.39 3.76 3.94 2.68 2.28 9.55 6.21 7.37 2.93 6.46 10.3 7.16 4.85 6.58 2.1 1.65 6.46 0.87 4.13 3.43 7.02 8.85 6.92 8.68 0.4 0.77 9.36 6.63 8.02 3.85 7.17 2.26 3.88 10.5 4.87 4.04 7.31 6.05 8.22 6.24 2.27 8.17 0.58 4.47 8.89 14.7 6.9 7.31 7.1 11.3 1.3 5.84 7.1 1.13 5.79 3 6.83 8.63 7.74 6.16 7.18 4.2 2.47 3.09 7.9 7.71 6.17 6.15 9.93 5.54 3.47 7.09 3.78 3.59 0.5 -0.46 6.17 3.39 7.96 6.24 2.44 2.37 9.47 5.86 8.37 1.96 5.79 14.1 3.93 0.39 6.89 3.67 8.64 6.21 0.08 10.1 1.21 4.05 5.04 6.27 2.95 3.28 7.92 13.3 3.02 5.75 6.88 1.19 9.13 5.43 7.64 3.89 4.85 13.1 3.24 0.77 4.3 10.7 7.54 -0.65 3.8 4.8 7.28 6.4 0.49 6.77 11.1 10.3 6.49 3.54 9.58 2.9 4.19 8.96 9.23 2.45 13.1 8.33 5.86 10.2 -0.33 3.59 0.92 12.1 0.17 0.95 6.95 0.83 0.96 11.5 5.78 3.64 2.81 1.05 5.31 0.97 10.4 8.88 9.86 10.1 11.7 11.9 11.2 11 8.38 11.2 5.72 11 11.7 11.7 2.22 0.78 15.5 8.09 3.04 8.33 7.44 2.86 13.7 6.94 4.14 9.38 1.62 8.17 4.12 6.33 7.54 4 9.55 4.8 1.06 4.97 9.08 2.9 5.6 14.9 7.95 11.5 7.82 0.72 1.44 4.42 5.49 8.73 8.52 2.73 7.01 2.9 6.81 2.48 7.59 -0.44 5.43 5.3 3.67 4.55 8.92 3.12 1.81 9.95 2.27 5.1 9.97 4.35 1.04 12.1 1.81 7.03 4.81 7.01 8.28 3.19 1.5 9.99 5.54 7.37 4.67 4.66 4.65 6.48 3.81 5.18 6.93 7.2 8.97 5.23 0.93 12.4 2.46 6.22 8.48 7.03 8.06 6.72 5.22 6.14 3.47 -0.2 3.8 8.52 7.12 0.64 6.6 0.59 8.73 3.52 9.82 8.54 1.71 6.06 6.41 9.3 9.52 1.74 8.24 0.65 1.57 7.95 7.95 8.87 8.21 6.69 2.48 10.3 13 8.97 2.67 7.03 4.58 3.91 6.17 6.93 4.15 8.5 1.82 4.88 5.46 0.27 6.11 6.89 7.78 7.12 2.44 11.4 6.62 8.45 9.99 2.54 6.07 3.21 3.31 8.88 6.62 1.16 6.2 3.13 11.1 4.28 3.91 6.19 0.38 5.85 1.08 8.04 5.34 8.54 9.33 6.08 6.05 2.1 4 8.1 3.97 1.39 1.25 6.1 -0.46 6.52 9.29 8.74 6.64 7.99 10.5 10.5 5.29 14.2 1.73 11.8 1.07 13.3 2.39 7.66 7.47 13.8 13.9 6.1 0.19 11.8 12.3 11.9 3.87 3.62 5.14 11.9 5.84 12.7 4.72 12.3 10.7 11.3 6.05 6.47 15.6 10.9 8.33 1.13 12.4 10.8 11.2 10.7 4.78 2.41 7.88 9.49 7.74 11.8 3.29 12.1 15.2 13.3 2.54 10.2 11.8 10.5 0.24 9.37 8.86 9.09 0.8 9.45 9.41 11.4 10.3 10.9 8.66 10.4 6.13 2.17 6.16 9.19 12 1.97 3.68 8.72 8.53 9.64 8.9 10.6 5.52 7.1 3.48 8.76 3.71 3.63 8.98 6.08 11.8 3.04 6.5 9.43 11.3 -0.06 6.01 4.6 10.2 10.9 12.4 7.34 4.26 6.48 10.5 7.85 3.47 5.39 10.1 6.48 10.2 9.01 8.57 1.67 7.52 7.66 2.19 6.78 8.58 0.89 8.36 2.1 -0.43 5.82 7.48 0.97 8.95 4.7 2.51 9.53 -0.17 10.7 8.95 1.35 3.51 9.3 4.85 4.8 0.67 4.36 4.66 10.4 1.44 4.87 -0.47 5.99 0.31 6.99 1.64 1.7 5.48 10.9 1.9 7.58 5.27 5.08 3.81 4.5 1.1 1.74 5.25 1.51 7.06 4.8 6.64 7.54 0.55 10.1 -0.73 3.98 8.38 4.22 8.96 10.1 3.05 8.41 8.65 9.04 5.46 9.3 8.44 4.45 0.19 3.05 -0.55 5.71 7.3 2.99 2.66 9.85 3.14 -0.93 6.01 7.13 9.88 7.19 1.12 8.14 4.16 11.4 0.61 2.28 8.56 2.36 4.63 8.4 5.51 8.26 3.99 7.92 11 12.3 5.97 10 6.56 9.9 2.68 10.5 11 1.74 10.2 3.66 4.34 11.2 1.02 4.09 9.72 8.54 9.61 9.32 9.03 9.91 3.15 10.3 7.65 3.16 11 10.8 11.6 12.6 2.99 15.7 -0.72 3.75 13.1 7.41 12.5 15.2 4.64 5.92 9.32 6.34 10.2 4.78 11.3 14.1 10.8 13.4 11.5 12.1 11.3 0.58 6.18 3.17 6.42 8.09 10.4 12.1 9.82 8.7 9.07 10.6 9.15 10.4 9.64 10.4 6.47 7.93 6.01 8.25 8.86 1.68 5.39 10.8 8.08 8.52 3.92 5.21 9.89 7.64 9.72 9.82 7.97 11 6.94 10.3 4.92 7.65 7.89 6.23 12.6 4.14 4.67 5.03 10.5 10.3 7.92 5.95 10.9 7.58 2.78 6.82 3.72 2.43 7.26 5.86 0.91 11.5 4.39 3.16 9.37 9.09 5.4 10.2 7.88 8.68 2.89 12.4 11 6.86 9.66 11.6 9.96 6.56 11 7.52 9.35 -0.22 12.9 10.4 10.7 10.2 9.56 9.53 10.8 13.6 2.15 6.57 9.94 1.03 11 12.1 13.9 11.7 10.7 6.13 9.52 10.8 10.8 10.1 4.94 8.69 11 9.36 5.77 10.5 8.08 7.92 9.34 9.42 9.81 9.91 10.6 10.6 5.67 -0.29 10.9 11.5 8.45 8.66 9.93 10.1 6.48 10.6 5.85 8.1 12.3 9.66 8.9 7.28 10.8 7.78 8.07 10 10.1 9.67 10.1 7.6 10.8 11.8 8.12 8.5 12.7 8.44 2 9.13 7.57 8.62 10.3 10.6 9.21 8.75 6.43 8.28 11.7 10.2 10.9 11.4 4.66 5.27 8.17 12.6 12.1 9.18 6.76 6.5 11.4 6.51 1.93 2.33 10 2.88 13.2 12.8 6.75 11.6 5.38 3.43 9.15 8.31 2.97 5.56 8.1 7.05 9.64 2.64 9.7 8.44 0.67 11.3 7.57 10.1 10.2 9.22 3.59 1.8 6.82 4.78 4.22 11.1 10.1 3.21 5.09 8.57 10.3 0.25 0.08 9.98 10.7 0.07 5.98 5.59 7.24 10.5 5.23 1.17 3.41 3.59 7.21 -0.22 9.02 -0.9 6.9 5.2 9.83 10.7 1.81 8.7 9.38 5.02 6.64 2.69 5.31 7.65 3.78 11.6 6.96 1.76 8.14 3.95 9.07 7.84 9.11 8.8 1.45 0.39 8.84 9.68 4.17 8.08 7.69 1.83 10.1 1.42 5.19 8.1 3.03 0.57 7.98 5.98 7.49 7.65 12.1 2.35 6.15 4.89 5.97 7.56 4.35 5.32 7.17 5.95 1.88 6.98 5.83 6.13 3.9 6.54 6.75 2.78 7.84 6.94 2.45 -0.42 1.08 0.57 1.51 1.31 2.47 3.51 7.94 2.66 8.9 5.03 4.5 8.34 5.69 2.76 5.23 10.8 0.69 -1.11 2.82 1.28 3.22 3.86 6.32 2.64 0.59 7.26 5.73 4.39 -0.44 11.4 4.18 10.1 8.55 -0.4 7.5 10.7 10.5 8.99 1.35 7.27 6.44 3.04 9.46 12.5 8.29 6.98 7.77 8.16 6.65 5.46 6.43 5.78 3.43 7.17 9.29 9.07 5.45 9.01 7.33 9.58 8.56 9.87 8.6 8.92 -0.59 10.2 8.74 10.2 14.7 11 1.78 10.2 9.79 7.99 9.54 8.38 12.9 10.2 8.42 8.98 6.71 11.3 4.11 2.21 2.27 8.01 8.93 9.06 10.7 9.75 1.5 2.74 14.5 10.2 9.39 10.6 0.62 6.15 13.8 10.8 0.75 13.1 11.3 9.83 8.16 10.5 12.1 5.35 3.94 7.79 11 11.1 11 9.46 10.3 1.26 10.5 9.31 13.2 10.2 10.2 9.62 11.5 5.7 12.1 1.87 4.05 11.1 11 10.8 12.1 10.8 11.7 8.1 9.85 4 -0.33 9.59 8 7.53 9.65 13.2 7.01 9.65 10.2 9.64 11.2 10.8 12.4 8.99 9.13 8.95 7.31 10.1 10.6 9.69 8.81 10.3 9.12 10.8 11.8 10.8 8.96 9.92 9.18 11.2 9.95 9.81 10.8 10.7 9.6 10.7 10.4 10.9 7.78 10.6 9.28 10.6 9.83 12.1 9.22 9.4 6.22 13.5 12.7 10.3 9.61 1.71 7.04 7.98 5.99 8.05 1.62 2.8 9.01 1.99 9.97 7.54 9.16 7.74 4.91 10.5 10.9 13.6 11 2.25 8.73 6.72 5.65 10.1 8.7 9.86 9.22 12.7 2.27 12.2 10.2 9.56 9.12 10.5 9.3 10.1 11.2 8.93 9.14 9.36 8.92 8.77 9.39 8.65 0.54 10.2 8.63 10.3 2.48 3.24 11.2 12.7 8.26 10.9 10.2 6.51 9.46 6.6 6.67 10.8 6.68 2.69 7 11 10.7 12.4 10.2 12.1 7.09 11 9.95 0.22 10 12.9 1.74 9.1 10.8 10.3 9.11 10.3 11.6 13.1 9.33 6.1 3.69 10.1 2.1 10.1 8.44 9.59 7.37 12.7 4.68 0.77 13 6.41 7.31 5.09 3.38 6.09 9.34 13.4 11.2 5.66 11.1 8.45 1.39 10.8 5.82 5.65 8.9 12.2 10.5 7.5 7.04 9.01 -0.73 4.66 7.22 0.75 5.24 -0.47 6.81 6.31 0.96 4.62 7.13 13 10.5 13 9.46 11.1 8.36 13.8 9.05 6.61 9.06 8.31 11.1 8.07 -0.04 9.19 5.31 3.53 7.91 12.1 5.53 11.5 8.49 0.8 5.38 11.1 9.07 4.26 3.65 2.09 -0.49 13.7 10.9 9.7 10.5 9.81 0.21 11.3 8.38 1.81 3.64 3.04 4.75 5.48 1.17 1.68 10.7 10.4 12.1 4.51 8.36 8.15 7.49 8.61 0.61 5.69 6.43 9.07 11.1 9.37 8.56 8.63 4.38 6.02 10.7 6.04 9.91 5.91 4.69 4.16 9.44 10.5 7.28 4.43 3.75 9.35 4.77 3.6 4.45 8.96 8.41 6.8 10.3 14.8 7.19 6.16 11.8 0.84 2.64 3.66 12 8.84 11.8 6.82 11.4 10.6 9.83 8 11.2 8.54 10.1 5.22 9 9.05 9.96 6.71 12.9 9.07 1.32 10.6 13.3 2.79 5.41 11.6 9.16 11.8 2.16 9.59 9.13 7.66 6.77 9.45 7.24 9.23 5.09 11.9 4.27 6.65 11.2 10 8.63 2.22 2.7 -0.53 7.64 10.1 10.3 11.8 7.86 10.9 10 8.72 0.81 1.9 3.52 13.3 3.43 7.63 9.9 5.59 5.26 -0.17 7.67 9.42 8.64 11.5 10.8 12.3 5.92 8.12 10.5 13.3 6.16 3.03 13.1 5.55 6.2 1.82 9.01 10.5 11.7 11.1 10.1 11 9.43 8.25 8.61 5.87 7.71 8.49 11.5 8.65 10.3 3.86 7.75 7.99 11.8 7.86 11.9 9.66 7.63 9.26 7.64 8.12 10.7 7.11 7.12 10.6 8.1 11 8.59 9.74 11.2 9.95 9.89 10.6 9.23 11.2 8.59 8.54 5.7 10.4 6.34 7.38 8.89 11 10.7 5.17 7.39 8.77 0.71 8.52 11.1 9.61 9.51 8.76 9.6 10.3 6.97 9.97 6.3 9.54 10.3 10.6 10.5 10.3 10.9 0.86 11.8 4.08 4.6 6.98 8.63 9.3 7.81 9.3 9.29 12.4 7.84 9.18 11.5 9.77 9.39 11.1 10.8 8.58 8.93 7.81 8.22 10.8 7.23 12.7 11.3 9.96 10.8 7.89 9.92 10.2 11.4 9.31 9.13 9.52 9.16 10.6 8.44 10.1 11 10.3 10.6 10.2 10.1 9.25 7.19 8.26 9.61 10.4 10.3 6.74 9.84 7.86 8.77 8.82 12 9.66 10.3 9.23 11.3 6.54 12 1.02 9.62 11.3 8.11 9.02 10.7 6.21 8.63 9.16 10.2 6.08 8.6 5.17 9.35 8.71 8.58 8.08 7.23 7.76 10.3 9.9 9.59 9.85 8.02 8.43 9.93 10.2 8.41 11.3 8.18 7.75 10.2 8.6 8.4 8.98 8.76 9.42 9.64 9.26 8.78 10.4 2.13 0.75 2.4 9.6 2.51 9.22 7.55 4.93 7.76 10.5 10.6 9.44 11.1 2.34 10.3 9.97 8.48 7.97 10.5 8.19 13 10.5 9.85 9.51 4.44 7.33 8 2.44 10.3 10.2 8.93 9.16 10.9 7.58 8.39 10.6 9.15 4.63 6.61 4.84 11.7 10.8 10.8 10.7 7.03 6.75 6.81 10.5 11.2 8.71 11.8 8.66 10.2 10.4 5.66 1.73 9.37 10.8 9.16 9.66 9.55 9.56 8.19 8.19 9.51 6.18 10.3 8.47 11.5 3.65 8.71 10.5 4.75 9.12 10.6 5.54 6.95 6.92 5.38 9.33 9.89 2.15 9.96 5.76 9.13 9.56 8.1 10.1 10.2 12.2 10.8 6.84 10.3 5.65 11.1 5.35 5.13 5.77 11.9 10.4 6.56 4.83 9.46 10.2 10.5 10 8.2 2.53 13.2 1.95 5.45 8.6 9.51 9.49 9.43 6.96 5.87 11.9 7.78 10.4 2.07 11.1 10.2 7.46 11.2 8.07 8.83 8.03 5.89 8.68 9.93 1.98 7.35 11.1 8.79 9.28 6.55 10.2 7.35 8.97 10.9 9.38 12.9 5.26 10.6 9.56 8.75 9.83 9.04 7.89 11.6 9.48 8.63 10.1 10.3 11.3 5.22 11.2 10.8 9.62 9.72 9.92 6.64 0.59 10.9 8.81 10.2 12.1 4.52 8.93 8.24 9.5 8.14 4.84 11.6 9.89 9.32 3.19 11.2 9.67 8.42 10.4 4.05 8.81 7.77 9.77 11.2 9.44 11.6 8.53 11.1 10.4 8.67 9.46 11.2 10.9 11.5 8.73 10.4 8.55 6.79 8.51 9.57 7.36 10.6 11.3 9.68 9 9.93 9.09 9.41 10.5 4.76 8.33 6.79 3.97 10.6 9.99 8.78 8.77 7.55 7.87 9.99 8.05 8.83 9.05 9.3 8.35 11.3 4.07 7.51 7.23 8.76 9.62 5.14 8.61 12.3 10.9 9.79 11.1 3.89 10.3 11 9.52 8.92 5.25 12.8 9.72 11.4 8.47 11.3 10.4 11 9.68 11.4 12.2 9.5 10.7 6.34 10.8 10.4 13.3 9.94 10.6 9.77 7.55 12.3 8.39 -0.29 6.86 10.7 9.98 9.88 8.72 12.4 9.6 10.6 8.35 8.39 9.03 10.6 10.6 9.76 8.88 11 9.9 11.7 9.31 9.41 6.62 7.49 8.37 11.5 8.8 12.7 9.7 7.01 8.16 9.87 6.87 10.9 8.23 10.6 8.4 11.7 8.6 8.58 6.9 5.7 9.7 8.57 5.16 9.32 8.99 8.67 9.59 8.55 10.4 9.49 12.7 9.71 7.18 9.22 2.8 8.72 9.87 8.24 11.3 7.69 11.7 9.04 2.99 11 5.94 7.93 11.4 11.7 8.86 10.5 2.49 9.7 7.25 3.22 3.31 7.15 10.9 4.28 10.8 10.8 9.81 3.33 10.6 9 10.7 9.95 8.65 8.13 2.72 8.5 9.9 -0.15 5.2 10.4 8.98 9.67 6.38 11.2 11.5 9.57 7.51 4.23 8.12 11.7 11 9.44 9.82 7.78 9.08 9.25 7.63 8.85 7 11 8.92 3.06 1.92 9.53 6.96 12 10.5 9.78 8.6 11.4 11.3 1.88 9.31 11.6 9.72 8.53 12.2 0.41 9.05 10.9 13.9 11.4 7.95 9.88 11.1 4.93 -0.87 10.9 7.15 8.58 12.1 13 11.3 9.42 4.28 12 6.93 3.19 11.3 10.3 11.7 1.74 11 10.4 8.06 9.25 9.95 10.4 1.52 9.58 12.1 13.5 13.2 10.6 12.7 6.2 6.67 9.52 5.91 8.59 9.86 11.5 8.66 8.06 15.3 10.6 9.73 8.39 11.4 9.25 10.5 11.4 8.04 5.55 10.1 10.9 10.6 10.9 10.9 9.06 0.92 7.44 10.6 11 6.49 10.4 9.09 0.22 14.7 8.8 9.47 -0.47 6.85 7.93 8.21 10.9 11.4 8.6 11.9 12.5 7.76 10.3 8.82 8.31 8.33 9.84 5.83 6.55 6.21 9.1 8.03 6.15 4.3 9.12 11.1 1.18 6.91 7.7 8.85 9 10.1 9.46 12.7 3.3 8.69 9.07 8.68 6.91 4.36 4.42 9.67 12.2 10.2 5.35 12 10.8 0.45 10.9 9.39 10.5 9.57 11.7 11.2 11.3 10.8 1.43 8.13 0.19 11.6 3.49 11.7 9.51 7.75 -0.57 3.72 13.5 11.1 8.17 10.5 8.21 8.43 8.71 8.17 6.48 4.75 3.31 2.26 6.85 10.2 6.47 6.34 5.42 6.68 10.5 5.52 9.82 7.07 1.66 5.57 10.5 7.18 9.55 8.56 8.34 8.32 7.76 10.1 9.57 11.4 8.44 8.08 10.3 9.75 10.1 10.3 9.99 2.55 2.05 7.02 6.59 8.28 0.93 8.18 1.6 3.27 7.65 9.54 5.21 8.16 5.79 10.2 9.55 10.4 1.44 10.2 9.25 6.19 2.58 7.98 2.55 8.11 8.51 7.62 10.2 9.59 9.92 12 11.6 10.8 -0.03 6.54 6.93 8.17 9 8.84 9.76 9.65 5.52 6.31 9.69 9.36 13.1 11.1 10.1 3.08 5.49 9 8.2 7.16 11.3 8.03 7.16 8.79 9.82 3.55 3.63 10.4 8.29 10.1 10.6 11.4 12.6 10.1 4.29 8.46 9.39 4.7 2.05 12.8 10.2 8.63 9.84 1.08 8.13 6.14 5.6 9.8 7.66 5.95 10.1 9 10.8 9.96 9.14 8.77 0.79 2.71 11.6 9.86 10.2 9.37 8.35 10.7 8.16 0.32 11 8.3 10.3 12.8 8.68 9.11 10.1 8 9.56 10.7 7.39 11.8 7.54 9.26 6.8 8.98 7.2 9.7 8.76 10 8.21 11.1 9.87 6.83 12 9.67 6.67 9.32 8.13 3.77 7.8 6.35 8.4 8.75 8.51 8.53 6.62 5.29 8.68 7.98 8.01 9.73 2.07 9.27 10.3 8.04 8.81 8.07 8.81 9.24 10.7 10 11.1 8.5 9.38 10.1 10.9 9.35 8.85 9.84 7.13 7.39 5.83 8.81 8.46 -0.2 8.15 10.5 6.95 9.33 9.22 3.85 10.4 3.73 10.1 10 8.98 7.59 5.31 10 9.57 8.83 9.56 12.9 10.4 3.33 7.34 7.25 11.1 9.14 4.95 9.14 9.26 9.98 9.16 11.9 3.96 10.4 10.7 7.5 6.95 8.78 9.53 11.6 10.2 5.19 9.71 9.14 7.8 9.61 9.1 4.69 4.98 10.5 2.94 12 9.36 2.5 9.96 11.2 9.66 5.54 8.98 1.53 11.6 2.59 6.43 2.2 9.02 10.7 8.24 13 6.5 9.32 8.95 9.71 6.35 10.1 8.86 11.7 7.5 8.54 8.04 10.1 13.3 9.59 8.56 11.1 5.11 8.42 3.04 9.46 8.81 11.6 8.74 8.64 6.81 8.34 7.9 9 9.68 9.56 4.35 9.41 11 8.42 8.79 10.9 8.39 7.93 9.85 7.03 9.21 7.76 0.25 6.35 -0.27 9 7.2 3.51 -0.31 10.5 8.7 9.49 10.1 6.27 8.52 8.5 11.6 7.69 11.6 10.8 9.18 8.36 8 4.16 9.19 9.84 8.96 10.3 0.93 11.1 8.53 10.1 10.6 7.48 9.73 7.19 8.33 4.23 12.3 10.1 11.1 10.7 9.48 7.89 10.7 6.66 9.55 8.83 8.31 7.62 10.2 8.74 10.5 8.15 10.4 8.33 9.76 10.2 11.3 9.8 9.26 8.53 8.55 8.85 9.16 3.5 7.97 7 4.97 8.83 9.61 8.22 10.5 2.41 10.8 8.31 10.8 9.25 9.04 10.8 9.5 13.2 9.45 7.05 11.2 7.4 7.59 8.33 10.7 9.41 11.6 9.62 11.5 8.15 9.9 8.16 7.77 8.98 9.68 9.41 5.63 7.82 10.3 10.1 11.2 8.34 8.45 3.63 9.87 9.43 9.36 9.67 10.1 8.4 8.32 9.95 7.86 7.67 7.54 8.2 6.31 11.4 8 11 4.84 10 7.8 9.26 0.79 8.6 7.76 6.33 7.94 12 10.5 5.57 9.65 9.58 11.5 4.67 8.16 7.54 8.42 9.73 5.71 10.3 5.97 9.01 1.48 9.75 12.3 8.47 7.12 11.2 7.25 6.47 5.31 10.7 8.75 12 13.9 12.2 6.4 10.6 11.2 10.7 7.8 7.99 7.87 9.5 10.4 10.8 7.18 9.66 7.48 8.63 6.93 9.39 8.63 5.7 9.58 0.78 3.37 8.9 4.45 10.6 5.91 2.8 9.18 8.86 9.14 10.2 9.87 7.24 7.64 8.95 6.45 9.78 8.66 8.41 10.4 10.6 12.2 11 7.78 7.67 10.1 10.6 8.48 7.15 6.67 8.1 11.2 5.18 5.84 4.39 7.5 5.67 8.92 4.03 12.4 5.88 6.43 6.15 10.2 7.98 11 10.2 8.45 10.4 9.47 11.1 6.18 7.19 1.34 9.15 1.74 9.17 8.84 8.53 7.73 7.31 10.8 4.54 10.5 8.13 9.09 9.42 7.86 8.73 6.82 11.1 8.95 9.81 8.88 9.47 8.51 7.81 10.9 7.95 10.1 7.47 10 1.93 8.23 10.2 8.19 9.96 2.17 8.76 8.83 8 8.08 2.42 7.16 9.89 10.9 9.22 8.59 8.5 10.3 7.53 9.11 10.3 9.45 9.67 11.5 4.83 5.41 9.39 9.72 9.99 9.66 10 9.49 10.4 9.83 10.8 10.4 8.69 8.73 7.93 10.1 10.1 8.85 8.49 8.01 10.5 9.19 4.79 8.13 9.74 7.61 8.19 12.8 7.61 8.97 10.4 9.68 7.2 11.4 10.8 7.47 10.4 3.52 9.92 8.02 10.7 8.17 2.04 12.8 10.5 9.04 7.77 4.83 9.71 9.42 10.1 5.9 10.6 9.81 7.72 11.2 8.35 11.8 2.65 9.96 7.71 9.15 6.69 9.41 9.16 8.33 9.1 9.54 9.34 3.49 8.48 8.4 9.48 8.31 10.1 9.73 7.33 8 9.24 9.94 5.52 10.7 10.2 10.1 8.89 9.71 12.3 10 7.09 11.5 9.94 9.09 5.97 9.08 11.4 11.1 9.54 11.2 9.28 8.74 10.3 8.06 11.5 8.86 9.83 4.97 9.03 6.76 9.37 9.67 2.37 8.82 9.97 10.7 8.96 9.34 2.04 10.2 9.57 9.18 5.81 8.72 8.93 11 8.28 8.9 4.44 1.68 10 6.66 9.55 4.87 9.45 12.3 1.43 9.75 8.42 9.91 11.1 7.74 8.48 7.74 6.83 8.81 8.43 9.49 5.23 9.62 9.39 0.25 8.53 6.37 9.08 11.3 9.61 10 9.28 9.62 7.94 7.52 5.79 8.91 8.77 8.13 9.24 8.87 5.61 9.58 9.14 10.8 7.95 8.52 9.46 6.83 5.61 7.19 8.37 8.77 8.69 9.93 10.8 4.25 6.23 9.22 10.6 11 7.68 10.2 10.3 10.5 8.62 6.17 6.08 9.66 7.84 7.63 4.09 8.88 11.8 8.77 6.23 9.79 5.33 9.78 9.28 11.7 9.19 11.8 9.72 8.45 9.98 6.09 7.99 12.4 11.9 4.37 8.26 3.82 7.82 9.03 8.2 4.09 0.12 0.95 8.37 4.64 8.74 8.72 7.6 2.99 8.66 10.7 8.5 11.4 9.79 11 7.88 3.37 9.71 6.9 9.39 10.7 8.26 9.35 3.39 9.39 10.2 6.67 1.56 8.73 3.73 7.2 0.76 11.7 1.53 10.5 5.92 6.77 12.3 9.54 7.39 1.34 2.03 7.59 8.52 3.53 6.22 11.7 0.29 0.85 6.47 5.81 8.84 11.9 7.93 9.56 7.32 5.19 11.6 6.55 11.4 8.62 12 0.17 10.3 12.1 7.73 6.41 11.1 10.1 7.47 9.65 8.16 10.5 8.58 7.23 1.09 10.2 7.78 9.56 10 8.94 9.73 10.8 7.17 8.79 11.1 3.71 4.69 8.88 8.04 8.42 7.81 6.95 10.7 9.83 8.85 8.43 10.3 10.9 10.1 9.55 11.9 7.59 10.6 7.52 9.29 8.74 9.54 9.34 7.4 8.03 9.66 10 10.2 6.35 11 7.66 8.12 10.4 8.93 8.29 10.3 9.81 9.57 11.7 4.69 9.21 10 9.11 6.09 11.2 11.5 10.8 8.9 7.93 7.94 8.81 11.7 9.77 6.45 10.8 9.38 9 10.7 8.67 9.25 10.2 8.72 8.25 9.86 10.4 11.3 10.7 7.76 10.4 3.07 12.3 8.46 9.35 5.17 10.1 9.9 10 2.06 11.8 5.71 10.6 9.72 8.05 7.01 9.85 11.1 8.32 10.5 7.72 10.1 6.16 2.17 4.04 9.92 9.48 8.88 8.9 8.61 9.58 6.73 5.85 8.95 8.82 9.64 7.39 10.1 12.6 10.1 8.3 8.43 9.33 9.75 11.6 11.7 10.3 12.2 10.7 10.7 8.8 8.69 9.51 10.6 12.4 10.5 7.65 9.1 8.83 10.8 7.85 12.3 9.87 8.51 9.23 10 9.19 7.76 8.71 9.35 6.1 10.3 10.7 10.4 8.22 8.96 9.01 6.48 10 6.76 10.7 8.62 9.91 8.56 7.5 9.7 6.01 7.81 8.04 8.65 6.45 8.94 7.3 7.05 10.9 6.89 6.18 7.75 9.12 9.21 7.65 9.63 4.06 8.29 3.17 8.94 10.6 2.55 9.46 8.09 5.86 5.96 13.1 7.78 8.73 9.52 1.46 6.09 9.21 9.1 4.64 10.5 10.1 1 9.4 8.22 8.03 11.7 10.1 9.87 9.8 9.71 12 9.61 8.59 8.94 8.06 11.9 6.86 9.74 5.17 7.97 11.7 8.62 8.89 7.65 10.8 7.22 11.2 10.2 3.5 10.5 7.1 9.9 10.7 13 1.27 10 9.98 11 10.8 8.69 2.57 7.59 5.31 11 8.95 8.1 8.04 4.04 10.3 6.05 5.01 2.04 12.7 11.4 8.74 9.6 9.86 10.3 8.9 8.04 5.2 10.1 11.3 11.6 7.35 10.4 8.56 12.2 8.06 11.1 8.2 9.98 9.97 4.55 12.5 8.2 4.38 9.49 2.8 9.32 1.83 10.9 10.5 8.46 6.58 9.75 10.6 5.69 2.79 8.34 11.1 11.4 9.75 11.2 11.2 7.5 10.7 11.7 8.82 9.18 7.5 1.42 6.85 1.14 10.9 9.68 9.47 5.82 12.1 9.2 9.95 11.3 9.1 10.9 10.8 1.74 8.05 7.73 8.61 10.1 3.54 2.59 6.19 10.4 5.85 7.97 4.02 6.16 5.53 4.96 6.1 5.39 6.57 6.37 12.2 4.99 6.89 4.27 4.21 5.14 9.75 1.29 6.37 8.71 8.01 7.05 6.76 7.52 7.57 7.45 6.55 9.54 5.96 6.81 7.17 8.47 1.92 3.32 7.91 6.32 1.75 6.65 4.76 9.89 8.74 7.97 9.22 1.83 9.91 8.01 -1.22 1.91 11.3 7.83 12.1 1.75 2.57 9.95 2.92 9.49 10.9 8.99 10.1 9.75 5.28 11.6 10.1 9.45 8.41 8.18 12.3 10.6 9.9 -0.61 0.18 8.06 8.36 10.4 8.58 9.1 8.71 7.5 8.87 10.8 5.16 0.38 -0.05 9.94 7.28 8.6 1.35 7.25 13.7 2.15 10 5.37 1.46 14.8 3.35 9.65 5.56 9.17 5.46 7.74 10.7 9.17 9.05 6.64 11.6 10.6 6.86 11.1 9.39 8.48 5.84 2.92 6.58 1.84 8.08 2.92 10.1 5.13 11.2 9.5 15.1 7.26 0.8 11 9.14 10.2 10.1 10.2 8.38 9.88 10.1 9.65 10.7 9.48 9.43 7.96 5.21 10.8 10.6 11.8 12.1 11.6 10.7 12 11.3 8.48 10.1 11.7 11.1 7.47 10.7 8.52 3.3 10.9 10.8 7.99 9.28 10.6 10.4 6 8.04 10.9 11.7 5.79 7.55 8.74 8.64 9.44 5.73 8.24 12.1 8.64 9.52 8.34 8.49 11 9.94 10.4 9.38 10.8 8.13 7.28 10.6 5.76 10.4 9.29 10.4 8.26 10 10.3 9.27 8.5 10.5 9.37 9.77 10.1 10.3 11.3 7.6 5.42 10.3 10.9 10.9 0.08 6.36 5.97 9.39 6.02 10.9 6.6 7.79 4.28 4.67 8.56 7.87 2.8 9.02 9.51 5.27 7.89 11 10.1 10.8 7.95 10.2 9.01 10.1 10.8 9.72 10.9 8.8 0.64 8.68 8.19 6.48 10.9 10.2 10.3 2.79 9.35 11 9.31 10.7 9.58 7.86 3.25 9.66 7.58 9.8 10.7 10 9.93 10.6 8.38 3.96 9.77 11 1.07 11.2 10.9 12.1 7.06 10.5 6.7 9.04 11 4.37 12 1.86 9.1 2.25 7.54 7.66 9.41 11.2 3.23 8.44 8.32 11.6 4.09 8.7 9.27 8.72 6.68 12.2 6.93 8.37 7.39 9.8 5.97 10.2 9.7 8.18 2.63 7.61 9.76 10.4 11.6 10.4 6.34 11.6 9.37 10.8 12.1 12.3 7.91 9.37 8.83 11.3 8.69 9.07 6.85 12.7 10.3 8.58 9.53 0.97 10.1 5.64 10.5 5.56 7.63 4.78 11.7 9.97 9.1 12.3 9.58 11.4 11.3 9.66 7.63 10 8.74 9.29 9.03 11.2 10.1 3.49 10.5 11 11.4 4.57 8.65 4.83 8.71 10.6 11.6 8.27 8.49 10.9 9.05 8.2 6.21 7.98 7.05 9 11.5 10.2 10.2 13.5 11.3 8.51 10 9.44 7.68 10.3 6.14 6.91 12.8 8.03 9.96 1.19 2.31 9.16 10 10.1 2.11 5.65 9.39 12.6 5.01 7.87 8.9 8.01 5.82 9.44 0.31 6.04 7.21 4.37 1.58 11.4 9.86 6.67 5.23 3.26 8.18 2.74 3.13 6.47 10.7 9.03 0 7.24 6.2 9.19 8.71 11.6 6.79 12.3 2.76 9.27 4.34 8.28 8.55 5.58 10.6 12.2 11.1 10.3 3.06 1.75 6.78 1.22 9.57 9.72 8.38 10.5 9.28 10.1 10 7.7 6.15 3.4 8.69 9.43 2.36 3.54 11.4 9.86 7.82 10.3 10.8 7.88 9.84 4.36 7.66 8.87 10.7 11.1 7.84 7 7.93 11.6 9.09 4.93 11.4 10.5 9.18 0.01 9.71 -0.16 11.1 0.78 3.81 5.77 10.7 9.16 10.9 7.58 8.46 10.6 10.9 9.56 10.9 8.65 11.6 7.22 9.66 8.97 10.2 6.08 6.46 2.13 0.91 9.84 11.7 7.73 11.5 9.93 10.4 13.9 6.41 8.34 6.65 8.32 12.1 3.97 8.9 8.47 8.29 6.7 6.19 6.5 9.55 8.35 8.63 10.1 1.37 9.24 7.53 7.78 5.36 12.8 9.44 10.8 6.23 8.75 8.17 8.58 11.1 2.67 15.3 8.15 6.31 10.1 7.05 2.43 4.45 8.25 2.75 8.42 10.9 -0.9 11.5 11.7 9.9 9.72 8.25 10.5 10 10.7 7.3 9.06 3.77 2.08 7.16 10 6.45 8.18 10.1 5.03 7.65 10.1 8.7 10.2 9.17 6.89 9.73 4.91 6.91 9.6 10.8 8.55 8.94 5.64 7.81 1.5 12.7 10.1 7.88 10.1 8.85 7.36 6.14 5.08 11.1 11.5 9.18 12.4 10.8 8.52 5.23 7.38 10.8 7.11 10.7 11.7 10 10.8 8.22 8.82 9.47 8.38 9.3 7.67 12.3 7.11 7.05 9.19 13.6 10.7 8.49 5.91 8.41 4.57 9.19 4.66 6.42 6.66 6.75 8.5 8.76 8.69 6.52 9.59 6.99 4.3 10.8 9 11.1 9.14 9.6 8.45 9.06 8.61 9.84 8.52 5.83 8.24 4.43 6.08 6.77 8.61 2.24 9.22 10.8 7.65 6.16 9.57 10.3 7.86 4.77 4.46 7.82 1.34 10.2 8.32 6.65 9.08 7.99 10.5 7.06 8.24 9.87 8.7 10.5 10 10.6 9.91 6.58 10.7 10.8 10.9 9.65 11.3 8.45 0.22 4.73 7.67 9.44 9.51 3.53 6.58 1.94 6.21 7.06 7.85 10.8 9.59 2.69 5.31 9.86 8.97 1.97 7.61 7.85 13.8 8.12 5.15 9.1 9.68 9.29 -0.81 5.68 0.57 6.42 5.71 4.95 10.1 8.02 3.26 9.48 9.08 8.23 10.6 8.52 10.1 9.82 7.16 12.3 12.4 11.8 9.68 4.67 9.11 11.4 10.2 8.77 7.29 10.1 11.4 9.04 9.7 11.9 11.1 9.59 12.3 8.63 3.82 9.52 10 7.9 10.7 11 9.69 10.6 5.07 10.9 9.22 10.4 8.98 10.5 10.1 6.98 6.96 7.42 6.7 5.67 10.3 8.36 7.51 7.79 4.41 11.3 11 11.9 8.64 2.81 9.44 9.38 12.1 10.9 10.6 9.66 11.1 8.37 2.36 10.6 2.09 3.61 11.7 11.4 7.58 12.2 10.3 12.6 5.22 3.26 7.6 10.2 10.9 13 10.3 12.2 10.4 10.6 8.58 4.52 9.18 9.23 9.36 11.4 12.6 8.95 8.13 8.84 8.89 12.7 11.3 12 7.29 7.54 5.81 6.63 6.47 6.28 11 5.49 9.97 12.4 10.7 11.1 10.3 11 9.65 11.8 11.5 10.1 11.9 10.6 9.91 9.38 10.2 9.67 2.32 11 7.3 11 9.59 13.9 9.2 10.5 9.13 7.54 5.5 5.6 11.1 8.69 6.16 10.6 7 6.74 9.43 9.19 11.4 10.5 10.1 9.74 10.5 10.1 12.8 9.14 7.17 0.45 9.46 11.5 10.7 -0.08 7.72 11.3 9.81 -0.53 11.6 7.54 10.1 12.1 4.06 4.03 10.9 11.2 10.4 8.43 10.4 0.83 -0.17 0.55 12.5 0.5 5.8 1.31 11 10.3 -0.24 4.44 7.16 2.61 10.6 9.54 6.96 8.18 11.9 9.09 5.93 11.6 10.3 8.46 4.05 11.8 8.9 9.8 9.47 10.2 8.69 7.83 10.7 10.6 -0.64 9.04 9.31 6.08 6.4 -0.58 10.1 8.59 10.6 7.89 9.77 16.7 11.4 9.47 -0.31 7.68 1.68 1.04 10.9 1.15 10.3 9.72 9.42 1.78 11.6 6.52 9.95 11.9 9.76 11.2 10.1 3.52 0.03 7.13 6.46 -0.33 7.31 7.06 10.5 2.95 7.55 10.4 0.3 10.6 7.78 -1.68 9.21 13 7.11 10.4 10 11 -0.95 8.69 7.09 10.5 8.46 9.75 7.36 9.33 9.1 9.15 2.52 9.34 8.58 11.5 10.5 11.8 9.02 10.2 9.76 11.8 8.01 9.01 10.4 10.9 0.55 8.14 10.6 5.48 6.08 9.24 4.71 10.5 9.27 5.58 1.75 5.11 9.63 2.84 10.6 9.97 9.08 11.5 7.5 11.2 2.81 8.84 10 5.81 6.78 1.03 9.47 2.14 5.04 8.22 6.57 0.77 10.7 9.28 7.14 10.3 13.8 13.3 12.5 11.8 9.87 11.6 12.6 6.14 13.6 8.7 13.6 12.4 12.5 13.1 13.6 11.4 12.9 10.8 13.3 2.12 11.7 11.2 9.11 13.5 12 12.3 12.7 12.6 12.9 12.9 13 13.1 12.1 12.9 10.5 12.6 13.3 12 8.62 7.69 13.1 5.6 13.1 13.4 13 10.5 9.26 13.9 14.2 12.6 13.2 10.9 12.8 3.73 4.78 3.68 6.64 7.33 11.9 1.75 0.85 13.4 9.79 10.2 9.57 9.38 10.3 13.2 13.6 12.9 12.1 13.2 13.3 11.2 12.4 11.7 12.2 12.3 12 9.71 13.8 13 13.1 12.3 11.9 13.3 11.7 8.94 8.27 12.4 6.24 11.8 5.22 10.1 13.4 11.6 9.65 9.99 10.7 1.32 7.44 10.8 11.8 5.91 8.11 10 10.6 11.2 5.07 5.13 2.99 4.21 6.99 12.3 8.61 4.73 9.99 0.9 14.5 14.8 15.8 11 15 7.44 10.6 4.19 11.6 13.8 11.2 10.4 9.02 7.41 6.06 10.7 9.83 9.08 14.6 10 9.08 9.93 10 9.62 3.81 8.49 9.47 10.3 10.5 4.57 6.48 6.98 7.83 4.22 0.86 2.06 0.76 11.7 3.25 3.86 4.67 1.94 14 13.7 4.63 10.7 8.5 11.6 0.17 3.51 8.04 7.12 5.47 1.5 7.27 9.86 0.93 7.21 9.73 5.99 6.7 -1.29 1.09 9.65 2.28 8.9 7.47 7.18 5.2 9.06 7.85 12.6 5.36 0.9 9.24 14 12.2 8.68 9.4 9.52 7.37 8.86 9.31 10.6 10.1 9.8 10.1 8.72 4.14 8.32 9.34 7.4 9.04 9.68 9.35 10.2 7.74 8.1 11.7 6.54 2.11 8.33 10.3 9.94 10.3 6.62 9.23 0.71 2.17 9.44 8.58 6.88 8.73 7.03 8.82 6.08 11 8.23 10.6 10 7.71 11.4 5.81 12.7 -0.23 9.11 1.53 7.19 7.44 10 8.21 2.7 11.3 6.54 7.28 8.22 7.63 9.07 11.8 8.15 9.14 1.89 13.2 9.36 4.19 8.18 9.33 6.62 6.93 7.58 11.9 5.91 11.3 7.69 5.07 4.54 7.31 3.71 9.27 8.34 7.26 6.86 6.74 6.53 7.86 10.5 10.6 13 9.83 11.7 11.6 7.16 8.9 9.19 7.98 10.6 5.69 5.12 5.52 2.89 10.8 5.82 9.61 3.46 8.76 0.38 12.5 9.12 7.82 6.88 6.99 7.93 12.2 8.47 9.43 8.73 6.16 6.06 3.75 7.17 6.08 7.61 4.64 9.57 12.4 0.89 7.37 6.37 8.78 10 11.8 9.33 9.47 9.23 11.1 9.23 7.61 4.77 10.6 9.78 9.03 11.1 4.01 8.07 8.7 7.66 6.94 0.87 0.33 9.93 0.93 12.3 3.15 11.9 12.5 4.65 10.4 6.06 5.31 8.89 7.52 9.89 7.13 7.79 10.6 1.06 3.84 1.19 3.48 10.8 7.02 3.62 12.1 10.5 7.79 13.2 11.1 9.08 5.37 11.1 7.79 6.29 10.3 10.2 10.2 9.39 6.78 10.2 7.38 5.41 0.57 2.15 5.51 11.5 10 9.83 3.4 10.4 8.69 0.43 2.95 9.82 8.48 8.08 2.72 1.41 8.47 5.63 6.27 9.51 9.64 6.35 5.16 5.96 1.89 6.66 8.75 2.85 9.64 9.67 4.04 9.04 8.88 6.44 7.35 4.92 3.13 7.12 4.04 7.36 9.61 9.17 6.09 -0.62 3.44 3.24 8.67 4.02 9.57 10.1 3.39 7.82 9.3 9.86 12.3 7.54 10.3 9.4 9.49 9 10.4 9.13 9.23 9.57 8.21 2.25 8.01 3.77 -0.85 2.78 4.61 4.42 3.86 10.8 2.84 3.85 2.91 10.4 3.57 7.54 8.06 1.24 10.9 1.15 7.34 1.43 5.18 9.52 6.7 0.48 10.9 6.62 1.16 6.9 2.44 10.8 8.82 6.76 2.44 2.35 2.81 3.42 11.4 0.48 5.5 5.44 2.9 -0.4 3.21 3.79 6.99 3.94 2.69 7.31 9.84 11.3 5.91 9.75 0.53 2.36 3.06 9.48 1.49 7.26 0.65 12.2 3.63 9.9 4.74 6.01 9.83 -0.59 0.66 7.16 9.74 9.3 6.38 10.9 -0.29 5.06 4.17 2.84 10.8 1.92 9.55 8.45 6.11 5.89 10.6 11.2 13.1 4.87 5.16 8.5 11.1 4.5 3.39 10.5 10.7 8.76 11.5 11.2 9.91 9.69 1.4 8.35 11.6 10.2 8.53 10.6 10.5 11 7.15 8.92 11.6 8.27 8.74 10.7 8.4 10.7 12.1 8.54 9.1 6.82 9.56 12.5 8.18 12.1 9.63 9.54 7.57 6.98 9.58 6.9 2.08 9.96 11.3 6.2 7.78 9.39 7.75 8 3.98 10.9 13.4 10.9 4.24 12.1 10.8 3.7 8.49 7.04 2.23 9.85 9.06 11.6 9.95 6.14 8.45 8.26 10.3 10.7 1.34 11.4 8.6 8.82 4.77 9.18 10.5 10 13.3 12.2 11.3 8.45 8.8 7.56 7.75 8.44 11 7.36 1.97 4.99 3.09 8.36 7.15 8.8 5.21 9.8 5.87 8.7 5.29 8.61 2.78 9.56 9.21 7.09 7.64 11 3.86 2.74 10.7 7.3 9.44 6.78 7.4 10.4 8.97 9.29 0.76 10.2 8.45 8.34 9.26 9.5 10.7 9.07 9.07 10.6 8.27 11.3 9.82 8.57 10.3 2.85 5.16 12.3 9.33 10.1 8.17 5.37 9.01 1.74 9.88 7.53 8.5 5.35 4.78 4.92 3.45 10.5 8.32 10.3 3.03 8.7 4.87 7.87 3.41 7.01 7.12 8.63 9.58 8.99 9.96 8.22 9.33 9.65 9.22 4.09 12.5 12.9 7.79 9.2 9.88 0.83 12 8.7 11.7 11.2 12 0.89 9.38 3.73 5.46 3.87 5.76 11.2 1.04 11.3 10.3 5.52 5.76 9.74 10 9.4 8.31 8.12 9.09 9.02 7.39 9.39 11.9 10.2 5.53 5.58 9.56 1.98 8.43 4.59 2.12 7.35 7.12 0.99 5.67 8.35 0.75 1.86 5.17 4.92 3.97 2.76 6.6 3.69 11.8 7.86 1.73 6.64 3.24 2.41 -0.36 8.82 9.41 9.79 10.4 10.6 0.8 7.85 5.27 8.8 2.62 10.2 7.64 7.1 4.4 0.38 9.8 1.72 7.26 6.71 3.55 6.33 1.04 10.2 5.84 1.1 2.15 2.37 8.46 7.83 6.37 8.27 8.72 5.39 6.71 2.77 5.56 9.89 7.71 -0.35 4.32 10.8 4.51 5 7.21 1.39 3.49 1.12 9.12 1.19 9.49 2.2 5.56 9.16 4.52 9.51 7.33 7.62 8.65 1.1 0.89 9.12 9.49 10.1 10.9 10.5 7.84 1.69 4.09 6.64 9.39 3.32 10.1 11.8 17.9 7.07 10.2 10.5 10.9 11.7 4.19 8.53 10.9 10.2 9.36 7.73 10.4 9.8 9.61 9.45 8.62 8.35 1.28 12.1 7.22 11 10.2 10 8.87 5.58 8.66 9.43 5.22 5.48 1.22 5.68 10.3 10.2 11.8 11.3 11.9 6.37 7.45 7.34 10.9 1.81 10.2 9.01 9.58 7.99 8.95 12.6 10.4 11.8 8.33 7.12 5 8.54 8.97 9.78 7.54 8.83 4.19 5.8 9.92 11.2 10.7 8.97 12.8 10.6 9.53 11.2 9.45 10.2 10.1 9.65 8.29 9.56 10.9 8.25 8.59 8.31 10.6 9.6 9.5 9.19 2.1 10.8 7.3 13.5 9.45 10.2 10.6 12 9.59 12.7 10.9 9.92 12.6 10.5 5.33 10.8 -0.76 3.43 9.82 12.4 9.15 9.44 11.3 7.72 11.4 8.85 10.4 8.21 14.1 10.1 9.79 9.07 4.53 10 -0.29 14.1 6.76 7.22 11.4 8.85 8.67 12.1 2 6.48 11.9 11.9 10.7 11.2 8 4.61 10.1 8.06 11.8 11.5 10.6 9.99 12.8 11.7 9.2 9.91 7.89 10.8 11.4 11.4 10.3 11.7 8.48 10.3 11.5 9.64 11.7 12.6 13 12.5 12.6 11 8.38 4.56 1.1 11 10.8 11.6 12.7 3.59 13.7 2.98 12.6 12.1 12.7 5.01 9.5 10.3 3.93 1.93 1.43 0.75 2.18 3.51 -0.03 3.06 12.3 3.2 -0.49 1.91 3.96 12 12.6 8.7 9.22 -0.43 3.9 10.1 8.4 8.89 9.36 10.5 9.1 3.68 4.81 9.64 9.85 3.23 5.84 7.97 7.49 10.1 9.5 10.3 7.42 11.1 9.63 9.03 9.49 10.1 6.68 13.6 10.2 10.2 10.1 11.3 6.38 11.1 8.63 8.55 7.06 12.6 9.38 8.6 8.19 12.5 10.8 6.81 10.2 11 4.02 9.47 8.38 1.87 4.27 11.7 7.72 8.39 2.14 2.86 1.65 10.1 10.1 8.64 9.21 6.97 9.01 10.2 9.78 7.18 10.8 5.94 11.3 11.2 11.1 9.33 9.55 10 8.34 8.29 9.85 5.42 1.16 12.5 11.9 11.7 10.9 14.2 10.3 10.1 10.4 8.32 1.64 9.75 9.92 9.69 11.5 8.75 6.24 8.27 8.22 6.37 2.34 6.23 7.15 10.5 8.28 8.27 2.57 4.81 7.36 9.31 1.51 0.1 11.2 3.52 10.2 10.4 7.2 3.62 11.5 8.28 8.96 8.64 8.84 10.7 3.48 11.4 8.42 9.01 10.1 10.5 10.3 6.74 9.08 10.6 5.62 12.2 2.53 -0.08 10.5 9.3 9.87 5.87 11.3 11.4 9.19 5.7 11.4 10.2 8.73 11.8 4.72 3.24 7.36 14.9 8.39 8.21 9.51 0.77 8.89 8.66 1.73 10.5 5.4 9.05 9.3 8.28 9.92 6.55 10.3 11.4 9.38 10.5 15.1 8.81 2.07 12.5 3.13 10.4 9.66 8.89 7.5 8.88 -2.87 10.3 10.1 -0.33 10.7 9.76 9.33 10.7 3.72 15.2 7.15 8.22 11 8.74 8.6 11.7 4.25 3.48 9 5.65 8.29 8.86 -0.84 10.7 9.74 11.5 9.9 6.63 9.15 14.5 11.5 10.2 -0.41 9.9 11 10.1 9.12 12 1.58 11 10.1 10.3 6.77 2.79 12.4 12 6.64 8.75 7.05 7.85 16.2 12.5 8.35 6.88 10.8 8.48 9.37 9.53 10.4 10.4 8.91 11 15.3 10.6 9.05 6.19 6.46 2.71 10.5 14 10.6 10.7 6.39 12.4 10.1 7.94 2.81 0.72 1.88 10.4 0.55 11.5 7.11 10.3 12 7.2 3.67 11.1 11.6 8.67 8.64 9.61 10 11.3 3.79 11.2 11.5 5.52 12.4 -0.16 13.5 10.5 10.2 10.8 13.5 14.3 9.74 10.5 11.3 4.96 15.3 2.61 14.8 7.84 9.54 14.1 7.39 8.94 7.46 9.39 6.23 7.43 11.4 2.57 12.5 10.4 11 7.53 3.75 6.6 -0.74 0.9 5.56 9.22 10.1 3.63 3.41 4.3 11.5 8.99 11.4 1.87 10.1 1.36 10.7 10.6 9.99 9.72 7.97 11.5 10.8 9.79 10.2 11.9 8.85 4.65 8.98 8.69 5.23 4.18 8.52 8.84 4.69 13.8 7.26 7.23 9.98 8.27 9.51 3.78 2.85 5.24 5.81 7.38 3.45 8.02 6.73 5.33 6 8.99 10.3 4.19 8.99 2.88 4.12 6.04 11.7 6.59 4.04 1.96 6.86 8.14 7.25 4.47 10 -0.36 5.81 7.35 6.11 2.81 5.93 9.26 5.69 1.71 12.2 4.05 7.33 -0.01 4.26 -0.57 3.23 6.47 8.68 4.06 10.2 2.26 1.64 8.99 6.09 9.02 6.68 4.59 4.63 4.66 1.63 0.72 5.35 5.34 5.33 5.22 0.67 4.88 6.9 0.54 7.74 4.73 4.48 3.24 6.79 11.7 7.67 5.55 9.71 -0.48 5.6 11 5.52 6.11 0.76 8.89 10.4 5.62 0.21 2.55 8.61 6.85 8.33 4.39 4.61 -0.31 8.91 8.75 8.56 5.66 5.11 8.36 5.15 8.12 7.38 5.9 3.81 9.41 0.44 10.2 0.94 11.9 1.94 13.5 14.2 12.9 2.19 10.3 10.7 10.6 9.41 11 12.2 10.8 8.5 10.6 9.49 11.6 11.2 2.99 11 10.7 12.4 10.2 10.3 9.26 11.7 10.8 11.5 4.14 8.58 9.93 -0.11 12.3 4.19 9.89 5.26 11 8.58 10.7 11.6 4.53 8.14 9.76 9.85 9.56 10.5 10.8 7.39 5.53 10.7 0.6 10.3 11.4 10.5 9.58 11.1 9.42 8.91 9.8 10.4 10.1 2.72 10.6 11 9.04 8.68 11.2 12.1 6.69 9.5 10.7 8.17 12 12.2 11.9 10.3 10.9 7.11 10.6 10.6 6.92 0.9 10.1 0.79 14.8 14.4 6.36 4.31 8.35 5.19 8.59 8 7.98 8.52 0.02 0.33 6.52 12.7 11.4 7.76 10.1 12.3 10.3 8.29 7.18 10.7 9.62 10.2 10.8 9.75 7.14 1.42 1.57 10.5 4.1 3.13 8.17 -0.24 2.51 4.21 2.83 3.91 -0.3 8.68 7.46 3.9 14.5 1.01 1.97 10.2 3.36 6.48 8.93 5.43 9.51 4.6 12.8 9.6 7.71 8.29 6.23 9.15 12.9 7.13 10.8 10.4 13.4 6.87 13.6 12 11.6 15.9 6.24 12.2 12.6 5.05 12.9 7.65 10.1 8.45 6.99 8.56 9.74 5.8 8.29 6.34 12.8 6.63 8.82 7.53 7.43 7.7 5.96 7.36 5.21 6.37 7.56 10.6 9.33 6.81 10.6 7.57 8.46 5.1 9.1 10.6 8.61 7.4 9.78 8.86 7.84 7.69 7.88 8.93 7.19 5.83 5.86 2.13 1.98 8.45 6.38 8.63 8.46 8.71 10.2 5.98 2.6 8.11 3.81 6.78 5.36 9.15 2.32 10.8 4.82 6.06 5.73 12.3 6.53 2.1 3.72 -0.22 0.78 4.99 1.81 8.57 8.33 4.51 8.66 6.87 7.23 7.56 6.2 8.76 8 5.7 6.83 9.49 7.85 9.73 1.32 10.3 10.3 10.9 8.5 9.41 3.93 6.71 -0.58 10.6 6.26 11 7.99 5.75 2.65 4.99 1.63 7.13 7.3 8.09 10.7 6.48 7.55 8.28 8.26 7.32 7.94 7.15 12.1 8.72 7.15 6.7 9.45 11.4 3.59 4.87 9.77 3.54 4.6 11.9 12.2 6.1 6.49 5.03 7.33 2.71 7.4 5.75 2.74 5.54 6.94 7.89 11.2 2.77 0.86 6.02 7.83 7.39 5.08 12.7 9.14 10.3 13.6 9.57 12.9 7.17 11.4 3.95 13 8.44 10.8 9.15 4.77 9.83 10.2 10 9.47 12 10.5 10.9 12.5 3.86 6.12 11.1 10.1 10.1 2.56 8.89 10.3 9.69 10.3 9.92 11.4 11.3 13.4 7.9 6.08 9.6 0.95 10.7 10.5 2.7 8.73 7.35 11.1 10.5 7.43 9.81 0.59 7.29 9.99 10.4 5.91 10.5 10.6 8.6 8.94 9.24 7.29 9.9 8.16 8.96 -0.25 9.77 9.59 8.08 7.11 7.63 10.7 7.88 2.99 13.4 10.2 6.96 7.62 9.38 10.6 8.83 10.3 10.1 6.51 9.87 10.4 5.91 10.2 7 9.27 11.6 8.72 9.19 9.01 9.56 9.28 11.4 9.1 9.28 6.73 8.21 7.36 11.5 7.4 7.75 9.71 6.77 9.37 9.53 10.1 10.7 9.6 8.83 6.36 10.3 8.7 7.48 7.8 6.05 11.3 8.82 9.87 8.6 8.97 9.91 10.3 11.9 8.75 7.42 9.46 8.67 12 11.4 6.29 10.2 11.7 14.1 9.7 7.86 5.5 5.47 9.4 7.24 5.85 7.07 9.32 7.49 9.61 9.71 7.92 13.3 8.46 6.53 0.67 6.63 9.31 12.8 8.57 10.6 7.24 6.43 9.85 7.97 7.17 7.41 8.34 8.49 11.4 9.34 10.4 3.23 10.4 12.7 3.1 10.4 12.7 8.94 7.61 6.74 6.44 9.51 -0.61 1.03 3.49 10.2 5.71 10.5 12.2 5.66 5.38 4.28 4.27 6.54 3.49 6.83 7.52 5.9 3.37 8.12 11.5 8.45 8.32 3.36 10.3 7.93 10.3 5.82 2.93 6.49 -0.29 11.4 9.03 6.08 1.87 9.19 11.5 8.86 8.93 8.47 10.3 11.6 7.68 7.58 9.83 12.4 11.1 9.94 8.54 9.5 9.79 9.16 7.47 8.56 10.4 11.4 3.8 7.47 2.02 7.09 6.77 8.38 6.38 8.25 6.5 8.68 9.62 10.3 9.53 5.06 6.14 7.36 8.06 8.66 6.09 7.87 1.72 7.26 7.91 6.6 8.58 8.75 7.13 9.36 4.78 9.51 12.6 5.25 8.52 10.4 8.42 5.26 8.59 10.7 10.4 7.54 10.2 4.47 9.21 5.54 5.62 10.4 8.19 7.99 9.31 10.2 8.95 4.75 8.32 7.35 9.29 8.74 9.31 7.87 3.51 8.62 8.16 9.21 9.5 7.79 6.56 7.06 9.02 9.87 7.25 9.86 9.34 8.62 9.36 9.72 6.06 8.05 9.76 8.09 8.51 8.44 9.17 7.04 11.3 8.01 10.5 8.13 7.74 7.7 10.2 10.6 12.9 10 10.3 0.49 8.5 10.7 6.41 9.34 8.36 7.18 8.59 8.31 7.79 7.62 9.9 7.07 9.04 7.23 3.89 8.92 7.1 7.87 3.29 2.35 9.54 4.33 9.72 8.42 7.62 9.38 8.35 7.72 8.44 7.75 8.15 8.42 10.5 9.28 8.88 9.91 6.53 9.47 3.77 8.5 9.03 7.17 8.51 7.53 6.29 3.19 12.5 7.73 4.32 10.3 10.1 8.52 10.8 8.19 8.48 8.29 8.3 6.54 7.04 2.82 8.41 6.26 8.15 8.18 5.87 10.3 9.36 9.9 6.92 7.28 5.4 8.16 9.01 6.26 9.12 5.27 5.49 7.72 4.5 3.98 8.2 9.65 7.85 5.91 9.46 7.54 9.54 2.56 11.4 10.5 5.23 10.1 6.29 3.31 6.93 5.5 3.49 7.06 5.59 6.2 7.91 2.03 7.37 6.43 0.91 4.71 6.42 2.95 8.07 1.84 7.38 7.85 6.77 2.99 7.77 8.29 8 10.8 3.85 7.62 9.19 6.92 9.75 9.91 9.91 9.29 6 9.36 9.74 5.3 7.77 9.43 8.78 9.89 10.9 9.39 5.73 9.42 9.92 10.2 5.75 8.02 8.72 6.53 7.81 10.3 9.74 11 4.71 4.49 2.89 11.1 9.68 7.63 6.83 8.45 7.47 10.1 6.85 1.2 7.22 6.09 5.34 5.37 6.85 7.51 3.61 11.6 2.26 9.42 5.6 5.06 10.7 11 1.12 7.56 7.24 3.46 9.45 3.74 11.9 10 1.33 11.7 6.48 7.46 6.53 9.15 10.3 6.72 8.08 6.67 8.39 7.76 9.68 3.79 6.95 11.3 8.67 9.15 8.07 4.89 7.45 8.44 7.09 10.5 7.34 1.52 6.54 5.75 11.4 9.01 2.52 7.43 10.7 9.17 8.22 7.47 4.34 7.96 10.2 10.8 9.07 8.56 8.62 8.8 8.86 10.1 8.65 9.92 10.4 9.79 9.04 7.78 5.29 2.9 2.84 5.75 3.07 7.44 8.73 8.59 0.91 5.65 3.34 1.2 7.92 11.1 12.7 4.64 7.71 3.49 5.44 6.63 3.05 9.62 7.37 5.95 6 6.15 9.27 8.55 9.16 10.1 9.78 5.8 10.2 10.6 10.3 11.1 11.6 9.06 9.4 8.97 9.82 5.79 11.8 7.08 8.98 7.54 7.74 10.1 7.21 8.03 9.32 5.66 8.98 7.69 10.2 10.2 10.1 8.62 9.18 8.77 3.16 10.4 9.16 6.26 8.31 10.1 11.2 10.4 7.54 9.83 9.07 9.25 4.17 12.8 10.1 11.1 9.73 13 6.6 8.06 10.5 9.94 4.21 11.9 10.9 7.91 8 6.07 9.58 10.4 9.49 5.09 8.57 7.45 6.47 10.6 9.72 8.22 9.9 8.81 2.18 10.4 9.47 5.99 7.36 10.8 9.39 9.3 7.78 10.1 8.7 7.85 10.4 12.4 6.48 7.8 5.42 6.34 8.89 10.2 6.11 5.87 6.04 8.87 4.69 8.48 10.3 5.21 2.07 2.15 11.7 4.1 3.45 11.8 9.57 4.53 8.23 5.69 11.4 7.13 9.42 10.9 9.2 2.17 10.2 8.99 9.62 8.71 4.91 11.2 10.3 13.1 8.93 6.11 9.56 10.8 6.67 9.12 4.03 5 8.75 9.09 6.47 11.8 9.42 11.6 3.82 12.4 6.18 3.08 4.17 8.24 8.07 6.97 8.35 3.53 4.87 3.25 7.61 7.19 11.6 9.45 5.92 9.9 11.1 8.59 6.88 10.1 5.8 11.3 12.9 10.1 12.9 10.5 12.2 8.33 8.08 10.8 9.21 8.55 6.5 9.97 10.9 10.1 9.42 7.65 3.24 12 11 11.4 9.42 9.31 9.68 4.33 5.68 6.9 2.73 11.4 8.77 8.84 7.28 4.66 0.44 12.7 13.3 8.56 3.19 4.94 4.49 5.73 10.2 10.1 5.29 11 11.4 15.2 2.05 5.37 2.29 4.08 3.76 11.3 12.4 10.8 5.69 2.76 12.5 9.96 9.05 8.48 1.83 7.02 1.78 3.5 12.6 7.93 8.55 9.71 8.64 11.9 9.71 3.15 7.21 9.43 8.12 10.3 7.11 10.1 10 9.52 8.59 9.09 10.8 9.45 7.64 9.8 11 12.7 5.55 8.48 6.65 9.2 9.2 9.07 8.51 9.14 10 9.69 2.46 7.39 11.4 10.2 9.51 11 9.72 9.9 9.28 8.66 11.2 9.77 4.54 1.03 8.02 11.3 12.6 8.58 8.69 10.8 8.28 9.16 11.5 4 10.6 9.95 10.7 11.2 12.4 8.75 6.79 7.25 8.3 1.55 8.15 6.19 4.92 11 8.81 2.18 9.39 6.89 9.06 4.35 5.88 6.26 9.3 5.75 10.5 8.33 9.62 9.19 10 4.28 10.8 2.61 8.43 7.26 10.9 10.8 6.9 9.84 9.67 13.1 9.61 8.14 8.79 11.1 8.3 8.45 -1.69 8.54 9.6 -0.79 9.4 9.4 8.79 8.96 3.12 6.74 7.06 10 9.58 0.33 11.2 11.3 7.07 10.1 14.3 8.18 10.8 4.83 11.8 8.74 3.61 8.78 8.3 9.19 6.93 13.4 6.79 10.6 11.8 11.2 10.4 11.3 10.4 6.55 13.2 10.4 8.59 11 8.94 10.5 11 3.17 14 -0.67 10.8 12 9.05 5.94 9.44 2.18 11 11.4 11.5 10.4 7.79 11.9 9.07 9.98 8.45 10.7 8.4 7.16 7.13 12.5 3.54 8.87 10.5 10.9 9.08 8.28 3.56 0.35 9.51 3.16 2.12 1.7 11.5 4.74 11.1 5.8 5.57 7.78 7.88 1.01 5.68 4.53 5.44 -0.25 5.33 10.2 4.67 10.1 12.6 11 9.51 8.01 2.99 5.51 5.42 11.8 8.13 0.51 8.62 8.58 7.42 7.75 6.21 7.95 5.37 7.96 6.76 8.89 3.68 6.48 9.23 10.7 11.3 11 -0.53 6.88 1.36 3.73 5.18 0.23 8.69 10.7 9.72 8.93 6.92 9.75 8.72 0.63 8.1 2.2 4.79 3.18 0.26 11.1 7.01 3.93 7.8 7.86 6.57 8.55 10.1 1.45 8.8 9.22 10.2 9.53 7.88 2.23 6.22 8.53 12.2 9.22 0.21 8.29 12.5 8.71 11.8 3.26 8.34 -0.37 1.86 11.7 -0.88 7.52 12 9.29 4.71 7.85 10.4 9.93 7.81 10.2 9.86 1.31 1.53 9.53 9.47 8.67 8.12 8.5 9.09 6.82 12.3 8.89 10.6 7.07 1.78 3.51 9.32 2.68 6.81 10.9 8.43 9.69 5.52 9.28 10.5 4.7 5.79 7.36 10.4 9.91 8.23 3.55 5.47 3.62 7.93 5.06 1.55 9.96 6.75 8.2 8.73 7.95 8.18 10.2 11.5 8.87 8.93 1.3 2.61 10.1 7.43 8.71 -0.22 5.07 -0.32 8.12 4.74 2.54 6.05 1.13 8.09 10.2 9.41 5.94 9.6 10.4 8.5 9.16 9.52 5.61 11.1 11 8.19 8.65 6.61 6.19 2.79 7.15 2.27 10.3 10.6 8.15 6.92 4.57 10.8 11.9 9.56 11.4 8.56 4.63 7.26 5.52 1.7 9.48 9.74 10.3 9.4 10.4 9.23 7.93 11.1 10.3 3.92 7.03 6.35 6.75 6.76 3 7.86 11.9 8.36 1.98 8.71 9.82 9.68 7.77 5.29 14 3.49 6.1 3.99 4.61 4.98 7.48 8.82 9.99 8.4 8.93 5.67 6.97 8.78 9.36 2.95 9.65 7.07 3.82 8.11 7.53 5.45 6.07 11 8.52 8.38 7.75 10 8.78 7.72 8.32 8.89 8.65 7.98 6.58 7 6.57 6.06 10.3 9.1 9.47 9.28 8.72 10.8 7.49 10.2 8.08 9.98 9.25 7.22 10.5 10.7 6.29 9.06 7.98 5.43 9.04 8 11.2 7.97 8.4 8.26 11.1 1.3 0.41 7.23 9.2 10.3 9.93 5.28 8.56 5.48 6.13 4.44 8.9 6.07 8.55 6.17 6.98 4.69 7.05 7.07 6.05 5.18 3.71 7.99 12.2 11.1 6.92 8.56 1.26 7.84 9.86 9.9 8.65 8.69 10.9 1.38 10.1 6.33 6.1 4.25 6.56 10.6 9.23 1.45 8.31 7.56 7.8 9.4 9.4 5.73 8.16 9.18 8.01 8.84 5.75 11.4 8.43 10.2 10.3 9.2 8.3 8.93 8.82 8.83 4.43 8.49 12.9 8.76 11.3 9.1 9.19 10 9.34 8.93 9.43 7.94 8.69 0.43 7.02 11.8 8.95 9.89 8.31 9.53 10.2 8.71 10.3 6.94 5.85 7.46 9.41 9.95 6.88 7.47 9.64 1.47 10.2 8.88 6.82 10.3 7.77 8.2 9.14 10.5 7.27 9.26 8.69 9.87 10 10.1 5.51 7.76 5.49 7.22 9.33 3.97 9.87 9.36 10.5 7.35 9.63 6.52 8.72 7.87 11.6 -0.55 7.39 11.1 10 8.29 10.8 7.68 8.56 2.3 10.2 1.78 10.9 7.74 10.7 6.02 7.24 7.93 5.41 7.31 10.3 8.36 9.48 10.8 6.9 11.6 4.64 7.24 10.8 8.97 7.13 6.65 8.21 6.71 9.91 6.75 8.99 8.27 1.34 1.97 2.98 3.48 9.8 9.47 10.6 6.82 3.04 6.34 11.5 9.49 10.4 9.58 10.3 5.54 6.74 5.04 11.1 7.78 9.99 6.74 7.76 7.31 6.91 10.2 10.1 4.15 10.5 4.33 9.8 9.03 5.62 9.7 8.75 11.1 7.23 10.7 9.74 1.69 10.1 8.92 9.37 -0.43 7.83 8.32 4.93 8.28 10 8.41 5.29 7.28 0.68 10.3 8.93 6.81 4.33 11.9 10.9 8.85 1.57 2.85 7.55 9.58 10.4 4.44 7.44 9.64 11.7 3.53 3.01 0.71 2.15 10.2 9 6.78 10 10.6 6.63 8.6 2.13 9.35 6.02 1.32 6.22 7.74 10.5 4.47 3.59 6.95 5.82 2.17 4.76 1.35 11.1 9.68 1.29 2.49 8.68 10.3 7.24 8.03 2.29 10.1 9.83 7.97 6.57 12.1 7.49 11.1 9.47 7.09 4.81 4.14 7.88 8.33 6.33 8.02 8.41 10.6 6.9 5.45 8.55 5.39 3.43 6.72 7.74 7.97 12.9 7.8 8 4.15 5.58 9.46 10.2 4.34 8.69 6.11 4.33 7.36 9.33 8 5.11 4.41 3.14 6.75 9.52 10.3 7.53 7.51 10.6 3.15 8.76 8.25 4.55 7.84 9.14 10.4 5.31 8.95 -0.92 6.51 8.36 2.82 7 5.06 9.63 8.77 8.99 10.8 8.09 8.47 7.55 8.27 7.09 3.67 1.23 7.47 7.71 11.3 9.37 8.39 6.94 7.6 8.41 10.6 11.2 9.43 8.95 1.79 8.95 11.1 7.55 9.13 9.3 8.84 6.37 10.4 12.3 5.27 9.96 8.08 7.61 7.95 10.2 8.21 9.72 11.2 4.83 7.84 5.08 9.95 4.34 9 11 11.2 5.48 7.75 8.42 9.7 7.1 9.45 11.1 9.03 2.43 7.82 9.77 8.99 9.24 9.35 10.2 10.3 8 8.97 5.4 9.24 8.12 -0.54 9.8 9.19 8.81 7.7 8.2 9.44 8.96 8.9 5.06 8.58 10.1 7.49 9.6 7.74 9.74 2.82 8.34 8.07 7.14 8.33 9.48 6.29 6.41 8.8 7.93 10.7 7.57 -0.15 10.2 6.9 0.38 5.35 8.4 6.98 9.71 9.96 3.05 2.01 11.1 10.3 10.1 6.23 10.2 3.69 5.29 8.42 0.48 7.53 8.34 8.95 9.79 8.02 8.04 12 9.68 8.94 7.24 7.39 7.7 11.4 8.44 8.56 7.03 9.47 10.4 8.4 7.01 2.18 7.46 4.79 2.91 9.97 9.33 13.4 9.88 -0.76 7.65 0.92 11.2 9.93 8.65 9.09 4.01 1.16 6.42 1.59 6.34 6.71 10.5 9.43 7.17 3.16 7.67 5.41 0.73 9.45 8.36 10.4 4.49 9.23 9.69 7.77 7.8 9.12 9.07 9.18 3.64 9.42 7.34 2.38 9.96 9.41 10.4 11 7.14 10.5 9.8 10.7 3.71 4.82 8.19 0.93 7.15 11.3 2.31 11.9 9.56 10.4 4.9 7.51 9.32 11.8 2.58 8.06 5.97 11.6 9.27 10.2 9.65 4.45 12.1 10.2 7.22 8.55 9.95 9.34 10.8 9.65 8.17 9.76 10.5 5.96 4.51 10.8 7.82 4.08 4.07 9.29 2.86 9.85 5.5 8.52 3.22 4.17 11.5 7.96 8.3 7.56 1.52 9.55 9.45 10.4 10.5 8.41 5.66 10.5 11.2 10.3 9.12 9.46 10.5 10.9 9.2 9.06 9.76 9.95 9.04 6.86 8.13 10.2 8.47 10.9 9.72 5.12 0.48 9.52 9.51 8.81 6.19 10.8 1.3 6.53 9.7 9.49 11.8 10.7 8.98 10.9 3.81 3.46 9.43 5.57 8.41 8.92 10.8 3.38 8.36 4.91 3.1 7.28 5.43 2.1 9.3 11.4 9.95 8.47 8.32 8.05 10.2 8.3 9.23 4.95 8.94 9.23 9.36 10.5 10.1 10.7 10.4 7.23 8.69 11.8 10.4 9.33 7.8 11.3 11.3 6.77 10.9 10.2 10.6 11.8 11.6 9.92 9.31 5.46 10.6 11.9 9.17 11.6 6.77 8.77 10.6 10.2 8.28 13 10.9 4.78 8.72 11.2 13.3 10.1 9.51 6.29 11.5 4.29 11 11 10.8 9.71 11.9 2.31 -0.52 12.2 8.89 9.45 8.94 10 8.18 11 11.4 10.4 10.8 12.3 9.57 8.04 8.56 7.94 10.6 9.87 8.92 9.02 11.8 4.11 10 6.02 4.75 4.64 11.4 9.42 12.8 2.85 4.96 3.41 1.53 7.11 12 11.5 14.4 9.91 10.9 13.7 10.3 11.3 9.07 7.64 9.15 10.8 8.46 11.7 10.4 5.9 8.41 6.28 10.5 9.25 -0.88 1.02 1.41 9.14 7.68 6.16 6.86 9.63 6.73 7.45 10.7 -0.75 7.19 10.3 10.6 9.36 12.2 10.2 5.38 7.45 3.67 1.36 10.4 9.65 1.82 11.6 10.7 5.35 10 6.46 2.97 8.39 1.92 9.34 2.09 12.3 8.43 10.1 5.48 9.4 5.12 10.7 9.51 6.95 9.27 10.3 1.64 3.51 7.17 9.65 10.9 7.12 9.21 9.98 7.6 5.77 12.8 9.39 5.93 10.9 7.05 1.84 10 1.34 8.48 10.2 8.34 6.86 10.7 7.95 6.38 12.2 9.3 10.8 10.6 10.1 5.48 6.7 5.64 13.5 11.5 10.6 10.3 8.87 9.02 9.5 10.8 12.2 10.2 9.58 9.54 8.75 8.58 10.1 11.2 10.9 10.5 9.6 9.98 10.8 1.34 9.44 12.4 12.2 8.79 10.3 9.63 7.62 2.66 9.55 9.1 -0.3 7.45 7.16 0.6 11.1 9.63 9.12 11 10.1 9.29 -0.49 5.42 2.28 11.2 9.78 10.7 9.84 9.28 6.48 10.2 9.83 8.35 8 6.78 12 8.06 11.2 1.08 3.56 6.83 11.7 3.77 0.89 10.6 9.55 11.3 6.55 0.04 8.61 9.03 7.8 3.88 10.2 10.5 7.11 5.05 4.04 3.13 0.33 4.52 10 7.58 8.88 7.96 11.4 7.45 6.7 5.48 9.44 7.58 7.91 1.1 2.94 5.46 3.23 2.44 7.83 0.67 8.89 10.8 6.21 8.6 10.8 10 11.9 8.7 2.26 7.16 9.45 10.7 8.84 10.1 9.6 8.72 8.64 7.45 5.71 3.38 6.23 9.92 10.1 12.3 1.49 7.18 5.53 10.4 4.47 10.3 8.86 10.7 9.45 9.69 9.79 -0.49 9.72 8.12 8.4 6.19 6.59 6.79 5.77 11.9 10.7 8.41 7.74 9.36 9.08 11.3 8.93 1.91 3.95 10.5 5.72 2.24 6.76 2.85 9.43 10.3 8.39 3.31 4.86 4.06 6.39 6.09 8.68 10.9 9.48 6.78 7.59 9.99 8.53 3.2 6.71 8.51 8.91 6.63 2.88 4.82 5.4 5.74 8.53 8.48 9.22 7.05 9.8 7.7 7.32 10.1 10.2 8.79 11.1 8.49 8.16 5.8 9.08 10.1 8.55 8.4 12.5 8.4 6.77 6.61 6.24 9.26 2.82 10.3 9.82 10.1 9.14 6.59 8.6 5.72 11.1 9.83 5.71 6.01 8.16 10.5 9.35 9.14 9.17 6.09 7.86 9.43 7.53 8.32 1.72 4.55 8.11 7.25 8.7 10.5 8.25 9.13 7.45 7.84 7.47 7.67 8.74 6.43 10.5 5.53 5.63 9.02 -0.41 10.2 8.26 9.99 9.31 8.68 7.32 7.66 1.63 5.29 11 8.05 9.01 11.2 8.74 9.7 9.31 6.83 5.65 10.1 10.3 3.64 13 10.6 10.1 8.63 6.84 9.15 3.82 11.3 10.2 9.99 9.48 9.5 7.04 9.51 9.61 9.39 3.18 10.4 5.57 8.39 3.99 9.58 11 10.6 10.2 9.78 9.21 9.94 5.14 10.9 2.02 8.54 10.7 7.18 9.38 4.8 2.57 10.1 9.48 9.7 10.8 6.66 8.82 3.45 8.51 11.1 7.12 8.44 8.64 7.84 4.48 1 7.4 4.5 8.9 7.3 5.62 13.2 11.9 8.14 10.3 9.19 2.42 9.09 9.7 7.83 10.7 10 9.5 3.36 11 12.2 11.4 10.4 7.67 7.57 4.29 8.39 6.67 9.81 8.76 1.13 7.32 8.94 8.5 10.1 8.9 10.7 10 5.07 7.44 9.17 10.8 10.2 5.25 9.1 6.98 5.81 7.03 13.4 5.35 9.58 9.37 1.81 10.5 11.7 8.82 9.83 3.21 9.85 5.31 9.39 3.79 6.02 4.38 9.54 8.51 7.75 8.59 10 9.95 10.8 10.1 7.26 7.72 10.1 4.89 9.21 1.71 5.84 -0.58 8.21 7.53 10.4 7.05 2.79 11.9 6.48 11.3 15.4 7.84 9.27 11.6 8.5 6.07 3.93 9.41 7.25 4.66 5.42 6.6 10.4 9.58 7.74 5.14 6.41 2.81 9.81 8.05 7.22 9.68 9.57 9.95 6.56 5.01 11.1 2.33 8.52 7.99 9.59 10.5 1.82 8.56 8.86 9.19 8.1 6.84 10.3 10.6 6.32 6.59 10.3 1.13 3.68 6.42 7.91 1.36 10 3.71 10.1 10.6 7.85 2.69 4.9 8.31 9.87 2.29 9.77 7.1 7.28 9.32 10.5 10.2 8.25 8.77 8.56 11.8 10.2 5.57 6.68 8.78 8.42 7.7 8.85 6.72 12.9 7.25 11.6 7.76 9.68 5.42 10.4 7.87 11 9.12 11.4 3.14 7.47 10.4 2.87 9.1 9.47 7.53 9.87 6.36 8.18 4.43 1.98 6.26 5.78 2.3 13.7 1.61 0.88 7.41 11.5 0.46 9.83 11.3 11 8.58 9.44 8.34 7.25 8.59 7.15 11.1 9.09 11.3 -0.53 8.94 10.1 8 7.32 9.99 8.67 2.05 6.16 9.01 4.42 9.49 10.6 7.22 2.17 11.9 6.28 6.36 10.7 9.24 4.97 9.48 8.84 8.79 5.54 10.9 8.15 4.71 7.91 9.6 11.1 10.2 9.29 12.4 8.85 9.87 8.51 9.31 6.52 10.6 9.15 10.7 8.75 8.82 4.33 10.4 11 11.2 8.29 10.1 4.21 10.2 13 10.3 9.4 6.03 11 14.5 7.35 7.72 11 8.61 5.01 8.94 7.03 9.78 13.3 10.6 5.66 9.1 9.61 7.85 7.55 9.9 7.87 11.7 11 6.36 3.71 9.51 8.31 8.65 4.66 11.9 2.52 9.4 5.64 9.28 7.33 7.64 3.04 5.07 5.92 9.92 7.91 2.77 9.54 9.16 8.54 6.32 10.1 5.45 1.6 9.31 9.9 9.51 11.3 8.21 12 9.01 10.8 10.1 5.85 10.8 9.43 8.79 9.81 8.24 4.56 9.51 6.07 8.36 6.88 2.57 12.8 9.99 9.66 10.3 7.52 9.36 10.5 9.89 2.03 10.8 8.94 10.6 6.57 1.2 11.4 12.1 2.08 12.3 6.46 9.49 8.07 10.2 2.08 7.69 1.78 3.14 7.01 5.84 8.19 10.2 10.6 8.7 3.63 12.1 8 9.53 9.2 2.54 7.65 10.1 5.44 5.19 1.41 8.71 10.2 8.53 12.9 3.97 11.2 8.32 9.31 8.73 12.8 10.4 0.73 6.76 9.79 2.84 9.95 5.73 7.2 4.2 6.69 -0.52 11.1 8.04 11.7 2.99 8.46 8.74 10.4 1.25 4.72 0.29 7.97 9.14 4.87 10.2 10.4 6.81 8.8 5.47 3.52 12.3 11.4 4.74 8.76 5.66 8.79 7.62 10.5 7.55 10.4 9.46 1.14 8.76 8.25 4.31 8.74 9.76 11.4 8.78 9.35 9.27 9.17 8.95 7.46 8.84 10.1 2.13 11.4 12 3.04 11.5 9.4 7.63 5.08 9.49 11 10.9 8.85 8.39 9.56 9.95 6.47 7.71 6.15 3.54 7.68 1.88 10.4 4.4 9.06 8.2 7.63 7.06 10.5 13.8 9.24 4.14 11.6 4.27 5.42 10.3 6.64 10.4 9.61 9.72 7.21 7.63 0.98 9.64 8.39 7.21 7.97 10.2 3.26 7.92 10.6 10.7 6.02 10.8 10.2 10.2 3.35 9.51 8.7 5.24 1.23 4.74 7.48 8.21 4.94 7.99 9.54 9.95 11.8 8.15 5.82 10 7.97 2.34 9.76 12.3 12.8 5.69 9.16 4.35 7.44 8.33 9.15 9.44 10.1 3.63 1.38 12.3 11.6 10.8 8.83 5.64 10.8 7.89 10.4 10.1 10.3 9.93 10.2 12.5 10.4 9.8 8.06 9.72 8.86 9 8.98 7.47 10 10.3 11.4 7.03 10 9.81 3.88 11.8 8.23 9.01 11.8 11.9 11 8.78 9.14 10.8 12.2 11.1 9.21 10.8 10.5 8.15 11.2 10.6 10.2 8.67 9.65 7.55 9.67 8.03 9.17 9.6 11.6 7.26 11.3 11.1 8.05 8.81 11.9 7.82 8.19 9.13 12.8 10.7 4.64 8.16 11.7 7.28 -0.32 11 11 14.4 8.44 9.81 9.26 8.07 11.7 7.64 10.8 11.1 10.9 7.09 11.5 10.1 7.1 11.1 5.29 8.56 5.41 9.43 5.98 8.87 11.4 7.46 -0.53 11.7 9.6 5.72 7.07 9.58 9.47 12.2 10 10.1 9.48 9.87 9.04 10.7 7.74 7.9 9.7 5.28 9.32 9.67 9.93 9.08 9.98 9.51 10.1 10.5 12.8 12.4 8.3 9.59 10.7 8.71 9.72 6.65 11.5 14 10.2 2.16 10.3 9.98 9.18 9.84 8.33 8.4 8.9 9.11 10.9 7.86 10.1 10.3 9.7 11.4 11.1 10.1 9.49 12 6.3 10.9 9.07 9.66 10.2 9.95 8.43 9.63 11.3 3.35 6.22 2.77 9.54 9.67 9.4 10.9 9.9 2.23 8.15 5.83 12.2 5.79 9.62 9.93 10.2 4.05 9.45 3.68 9.14 6.68 14.5 3.97 6.4 10.5 11.7 9.06 10.8 10.3 7.19 9.55 9.7 8.15 9.45 7.59 8.51 11.8 5.29 8.96 10.1 5.48 12.9 9.46 9.36 6.86 11.2 8.36 9.53 10.1 13 8.15 6.82 6.08 7.24 8.77 10.2 8.25 10.4 7.14 11.4 12 9.2 9.75 11.1 8.69 8.7 13 8.3 8.94 11.7 11.5 10.3 11 11.8 9.56 10.1 5.24 11 8.82 12.4 4.73 11.4 9.57 7.48 8.19 8.12 10.1 9.4 9.95 11 10.7 10.2 4.21 10.5 11.1 6.87 10.8 13.4 12.5 10.4 8.81 10.2 0.81 11.5 9.32 9.55 11.9 8.18 9.09 8.75 10.2 11 9.71 11.3 10.7 10.6 8.6 9.63 11 7.09 10.3 5.41 9.89 10.2 8.32 0.6 8.17 2.21 8.47 9.21 8.53 9.61 4.06 8.74 10.1 7.98 8.13 8.52 9.94 10 8.94 8.77 9.89 8.9 9.19 8.38 2.7 10.3 9.52 10.5 6.93 9.82 11 5.91 7.39 7.27 10.7 11.4 10.1 11.3 10.2 10.7 9.65 10.7 9.87 12.4 10.5 10.2 10.2 7.73 9.14 8.84 11.8 8.25 11.1 8.93 12.4 8.93 11 7.27 7.7 10.3 9.32 8.49 10.6 12.2 1.4 8.47 6.83 8.42 9.62 9.21 8.93 10.2 8.12 9.84 11.3 10.1 9.96 8.07 5.66 5.35 10.1 8.64 7.54 10.8 11.3 12 5.35 11.8 10.5 8.69 9.82 8.31 11.2 10.6 8.75 10 7.13 10.3 8.58 6.43 9.14 9.3 7.8 7.95 10.8 9.71 4.36 6.49 8.09 10.4 4.89 7.13 12.8 8.88 6.88 10.6 5.44 7.67 5.18 7.43 10 10.3 8.47 12.1 8.59 5.61 3.96 11.2 10 10.8 9.73 3.46 10.8 9.13 9.66 6.8 9.85 12.8 9.95 8.29 7.31 9.19 11.1 9.61 9.93 13.2 9.38 12 2.86 11.5 9.1 9.12
-TCGA-F4-6463-01 3.66 7.86 7.11 8.71 6.11 8.84 0.58 2.81 1 1 1.18 9.01 5.23 1 3.09 9 10.9 9.99 10.1 9.85 9.5 12 9.23 3.39 9.72 7.66 4.76 9.14 3.89 7.02 4.51 6.03 4.38 0.58 4 5.02 1.81 6.65 2.32 2.81 4.39 2.46 6.27 1 5.63 3 0.58 4.17 11.1 6.39 2.58 5.07 8.24 10.1 5.34 1 6.3 2.46 5.73 5.54 7.74 3.46 6.62 5.29 3 2.7 4.9 7.82 9.64 2.93 3.86 4.51 2 0.58 2.58 0.58 4.97 3.58 3.27 0.58 4.91 1.58 2.52 8.26 5.21 1 5.66 6.1 2.81 3 8.38 5.65 6.29 6.45 3.23 2.81 1.32 0.58 3.77 0 0 4.75 2.58 5.33 0.58 2.17 6.75 7.55 8.11 5.43 4.93 0 7.37 4.25 4.65 1.58 1.46 4.29 0 2.46 3.7 4.68 0 1 0 6.77 5.89 3.25 0 14.7 2.13 3.32 3.39 8.64 2.91 1.58 4.49 2.58 3.39 8.26 0 9.89 0 2.58 5 11.6 0 10.8 1 3.52 5.33 0 8.51 8.68 10.6 3.25 2.32 2.1 9.57 4.13 7.19 6.44 4.49 0.58 8.8 5.19 7.46 3 8.99 1.32 10.1 9.32 2.58 3.91 3.74 1.81 3.75 4.39 8.01 4.96 5.87 7.3 3.64 3.7 4.12 0.58 0.58 0 8.77 3.46 9.06 9.97 3.75 2.81 4.95 5.68 2.58 9.12 7.99 8.19 7.58 9.37 8.93 9.94 8.01 8.14 5.82 9.88 10.6 10.5 7.64 11.1 11.7 11.8 10.3 9.7 8.68 11.1 7.02 10.3 9.11 8.57 11.4 10.1 8.31 8.39 5.66 11 8.36 12.4 9.33 5 9.32 12.2 8.92 9.06 9.94 8.59 9.54 3 10.9 6.41 11.7 11.9 12.3 11.4 12.3 12.8 8.84 12.5 7.62 3.58 8.4 9.73 10 11.2 11 12.7 4.78 12.3 8.56 10.2 9.61 10.8 9.19 10.4 8.32 10.5 11.2 10.3 9.73 5.48 8.68 9.16 12.1 8.9 1.58 13.1 11.9 9.92 12.6 10.9 11.3 8.61 9.52 10.2 9.6 10.8 11.8 10.1 4.17 9.73 10.5 7.05 9.72 10.3 7.76 13.7 5.89 6.81 8.59 11.4 11.1 9.12 10.6 11.9 1.58 10.1 8.99 8.83 12.9 9.85 5.11 8.85 6.33 9.92 10.7 2.7 9.49 7.04 10.1 10.8 9.64 8.78 9.74 10.4 12.5 9.3 10.4 10.1 10.9 8.85 11.5 8.14 9.67 11.1 8 8.4 7.9 9.11 11.3 11.3 9.76 10.6 8.77 12.8 11.2 9.06 11.7 10.6 10.7 2.92 10.4 2.58 3 9.16 9.94 10.4 12.3 7.49 5.52 10.4 11 10 8.58 7.36 9.66 7.54 6.15 5.41 5.64 11.8 9.8 12 10.2 8.71 8.28 10.8 3.81 9.31 9.24 9.55 8.92 9.02 9.95 10.6 6.03 9.6 10.5 9.06 8.96 9.08 11.8 8.58 5.13 10.7 9.93 6.49 8.37 8.43 8.72 10.9 10.8 9.56 9.04 10.2 9.32 12.3 10.9 6.8 8.49 10.7 11.3 8.34 8.58 11 9.48 9.32 7.23 6.17 9.53 7.87 8.12 11.5 6.85 10.8 9.73 10.7 3.46 11.3 10.6 12.4 9.24 8.97 6.47 6.01 7.74 8.18 7.23 9.51 10.4 11.7 9.87 5.98 11.5 6.73 6.9 6.92 1 9.34 3.68 7.68 5.43 11.6 9.33 8.66 8.54 11.4 10.9 3.52 10 10.4 11.3 3.46 9.02 7.66 2.46 3.17 4.21 9.22 7.8 4.73 9.28 3.39 10.2 9.97 8.72 9.78 8.82 9.16 14.7 9.78 1.81 9.62 10.9 5.93 13.3 8.39 6.41 4.09 4.04 9.42 9.26 6.35 13 8.13 6.6 8.98 9.55 13.1 12.4 15 8.23 9.95 8.53 8.92 4.98 8.25 8.01 7.48 0.58 9.33 5.77 12.9 7.16 10.7 11.8 10.8 8.74 10.6 7.02 10.3 9.39 10.6 10.5 10.3 8.92 9.91 9.31 6.97 11 10.7 11.2 8.36 9.13 10.6 7.43 6.69 9.84 9.3 10.2 10.8 7.4 10.2 12.3 12.1 9.58 11.7 11.4 9.11 8.53 9.83 9.97 9.15 9.29 10.3 7.61 4.55 10.7 8.42 8.85 10.1 10.1 6.99 9.7 5.7 8.94 10 10.4 10.7 8.28 10.9 10.2 8.54 8.45 11.6 10.6 10.6 10.5 0.58 12.8 9.59 11 9.99 11.6 12.4 10.9 10.8 8.2 10.6 10.9 8.75 1.32 11.4 6.3 7.67 7.11 9.42 10.8 9.76 11.4 9.61 10.8 9.68 0 6.67 10.9 9.64 7.6 12.8 8.84 10.8 9.83 12.7 10.6 12.3 11.5 11.1 0 10.7 9.16 8.21 8.91 8.97 9.39 5.52 10.3 11.4 11.3 12.2 10 8.42 10.6 10.6 11.4 12.6 11.2 10.1 10.7 11 8.45 8.46 10.7 8.87 8.52 8.73 6.91 15.4 6.3 11.1 11.3 3.25 10.2 8.01 9.92 1 9.95 9.65 12.6 12 12.7 11.3 6.81 11.1 7.53 11.3 11.3 8.74 9.69 8.46 8.4 9.95 11 9.08 9.63 12.6 8.83 7.16 11.5 7.57 9.81 9.84 4.32 10.3 12.3 9.77 10.3 9.56 4.86 11.4 7.9 10.6 10.8 9.66 11 9.24 12.7 8.54 7.95 7.72 6.48 8.78 12.2 9.67 12.6 12 8.12 10.8 11.9 11.4 2.32 8.44 7.8 7.74 10.8 7.26 10.4 7.81 2.32 11.7 10.9 6.45 9.42 10.7 14 8.48 9.16 12.3 10.7 9.96 9.99 1.58 6.26 10.7 4.36 7.38 7.13 7.77 10.9 8.22 10.4 4.61 3.95 8.09 9.36 8.07 10.3 4.7 5.07 9.54 7.16 2 4.29 12.2 10.5 6.99 5.25 8.02 4 9.4 10.2 8.56 3.95 8.26 14.5 7.69 11 11.3 10.8 11.2 13.3 8.19 11.6 8.06 8 3.64 10.9 4.43 3 0 1.81 9.15 7.95 10.3 0 8.11 8.67 3.95 4.32 12.4 12.5 8.48 7.3 11.3 9.79 0.58 10.5 11.8 11.2 11.4 9.95 11.5 9.35 11 10.9 8.44 8.62 11.2 8.85 7.72 8.75 7.92 9.72 8.46 12 8.37 7.95 6.29 4.61 8.73 10.6 7.48 5.36 3.46 12.8 9.43 0.58 3.64 7.77 9.63 11.9 11.4 6.99 6.77 9.54 8.15 6.64 6.31 9.61 6.77 7.87 7.55 8.72 0 5.19 0 10.2 9.46 6.15 11.7 9.21 9.32 5.15 11.6 12 2.81 6 5.11 5.64 9 9.35 9.91 9.36 10.4 5.48 4.04 9.28 4.86 9.56 1.32 4.61 9.12 10 2.81 2.81 11.9 8.09 9.89 7.82 5.87 1.32 10.1 9.07 11.3 9.47 6.82 9.74 9.8 10.2 11 9.37 9.97 9.78 10.3 9.45 1.32 6.74 7.77 12.2 10.3 11.6 5.63 10.9 9.5 11.7 10 11.6 7.81 8.68 11.1 10.7 10.7 0.58 11.8 2 11.7 3.52 9.9 10.8 8.21 0 8.84 11.5 13.2 10.8 8.96 10.2 12.5 8.98 10.7 10.5 11 9.44 11.2 13.2 10.3 13.4 11.8 12.5 7.02 11.8 6.42 7.86 8.43 10.2 12.3 12.7 12.9 10.4 8.88 10.4 8.23 9.66 10.5 9.48 9.86 12.1 7.34 12.2 10.4 11.3 11.2 3.7 3.95 12.1 5.41 11.1 7.19 9.99 8.02 9.67 9.23 6.81 8.75 3.27 2.32 9.33 9.25 3.52 12.3 8.75 10.6 8.56 9.25 7.7 7.65 7.78 10.4 7.13 2.46 5.65 2.32 3.52 9.49 10.7 9.98 12.8 7.72 8.21 11 9.05 8.57 7.66 9.21 2.46 10.1 11.3 9.81 11.1 11.2 10.2 9.57 12.3 11.2 10.9 10.4 6.82 2.58 8.33 10.4 8.81 9.71 8.71 7.43 12.1 10.2 8.19 9.67 6.64 3.25 10.9 11.1 12.9 7.93 7.58 10.8 10.5 4.95 5.41 10.2 4.88 7.61 8.74 13.1 8.55 13.2 8.27 9.39 10.2 7.74 5.94 11 8.68 10.1 9.84 8.27 11.4 9.95 9.03 10.4 8.96 7.31 9.6 1.32 8.14 9.14 9.2 6.67 9.63 0.58 8.62 7.35 11 1 10.1 7.65 11.3 11.7 9.87 9.77 3.09 8 7.6 5.83 9.94 6.31 9.04 9.48 5.81 5.77 5.63 11.2 8.46 8.34 7.91 8.27 10.4 10.2 5.88 12.3 9.64 8.62 12.8 10 7.89 2.81 6.52 11.6 8.6 5.78 11.6 10.2 7.29 8.7 3.09 11.9 6.44 9.62 5.81 7.68 8.58 11.5 10.4 6.84 10 10 8.02 7.99 9.08 10 11.7 10.9 7.81 8.22 8.28 3.75 8.54 10.1 6.6 11.2 10.1 8.26 8.69 8.98 2.46 9.14 7.95 11.3 1 13.2 11.1 8.04 7.95 7.63 8.71 11.1 6.68 8.41 9.98 9.95 7.99 6.82 11 10.1 9.36 9.68 9.56 9.11 5.92 8.45 6.75 5.07 7.99 9.18 9.04 8.58 10.2 0.58 7.87 9.76 10.7 7.4 9.45 8.93 11.3 5.89 11.5 6.39 11.7 6.43 8.81 4.88 8.41 7.75 9.84 9.65 8.24 6.89 0.58 4.43 8.73 11.5 6.74 8.48 7.45 2.46 9.67 7.47 9.84 8.99 5.81 2.58 7.34 3.25 12.4 9.9 8.6 5.67 9.41 9.47 7.84 10.2 10.8 8.6 9.13 7.68 8.75 7.97 9.16 10.7 9.11 8.36 8.83 6.21 11.1 9.32 6.73 9.76 11.8 5.09 11.3 7.85 3 10.3 6.25 1 8.98 9.05 2.17 10.1 11.2 9.66 10.6 8.87 9.58 9.79 11.3 10.7 7.17 7.41 5.75 9.01 12 11.2 1.81 12.1 10.3 11.2 9.18 12.1 9.76 12.2 12.2 7.55 8.38 8.65 3.75 10.7 10 11.5 9.88 8.98 10.1 6.27 11.2 0.58 10.9 7.37 6.69 7.58 8.15 4.25 9.24 8.22 2.68 4.17 7.67 9.57 7.31 8.61 8.24 10.8 2.46 10.3 0.58 7.91 8.38 2 5.34 10.6 4.75 7.11 2.32 8.2 8.47 4.8 2.17 6.95 2.79 4.49 0.58 1 6.62 3.86 8.27 6.39 9.04 9.19 7.09 0 8.68 6.15 3.91 11.1 7.7 8.82 8.47 8.4 4.29 10.2 3.52 5.25 9.01 5.21 8.26 6.49 9.7 8.21 5.09 8.64 4.75 6.43 8.63 11.3 0 9.08 7.77 2.38 6.02 9.06 8.83 8.32 8.02 10.8 10.6 9.43 8.54 8.97 4.91 6.94 3.17 9.61 5.25 8.23 13.3 7.9 9.04 6.89 10.1 9.6 7.52 4.17 8.54 8.84 8.51 7.29 4.81 8.97 9.77 8.53 7.08 5.07 7.57 6.61 16.1 7.38 10.5 8.2 6.09 3.75 8.52 5.93 10.8 11.6 5.23 2 2.7 9.09 9.41 6.99 5.99 8.39 8.34 9.48 11.1 7.5 9.34 7.87 6.42 5.52 1.58 1 7.69 6.09 6.83 7.13 10 3.09 9.12 4.86 3.91 4.83 7.31 7.01 4 10.1 9.28 0.58 6.66 7.27 5.23 8.34 8.34 7.99 10.2 8.86 7.73 9.26 7.43 11.5 9.03 10.6 8.27 10.5 11.4 2 7.85 2 8.65 8.74 10.1 8.55 8.46 8.65 0 9.2 5.23 4.13 2.32 8.83 2.81 9.99 5.64 5.83 5.3 3.58 0.72 10.2 0 1 9.57 8.48 8.7 8.55 8.88 0 4.86 3.86 7.05 9.32 8.75 1 8.32 7.47 1 2.17 9.63 9.16 11 5.19 9.35 10.5 8.2 1.58 8.17 3.7 1.58 4.39 10.2 9.79 4.17 10.2 6.21 5.71 6.03 12.8 10.4 10.8 0 4.13 6.45 10.1 10.2 6.23 4.91 12 0.58 9.07 11 7.29 9.29 9.74 6.5 10.6 0 5.57 1 7.9 9.62 9.31 9.14 7.63 2.91 8.04 10.5 5.91 1.32 4.75 7.94 6.2 9.11 7.79 7.58 10.4 8.69 10.3 2.46 7.52 8.92 10.2 13.2 6.65 2 3.09 7.47 7.08 1.58 9.84 10.7 9.25 8.82 9.22 3.17 6.71 9.51 11.8 11.5 11.5 9.95 6.6 3.32 10.7 7.58 8.85 7.68 4.25 6.47 8.01 8.82 11 2.58 5.41 11.7 2.17 2.58 8.36 11.7 10.7 10.1 9.56 3.58 6.85 13.4 1.58 9.19 8.21 4.04 6.47 9.4 9.3 5.71 7.87 11.2 1 0.58 0.58 5.92 0 7.55 3.39 5.04 6.29 8.92 7.12 3.52 4.46 9.31 8.37 4.25 8.92 9.24 10.4 2.58 8.76 7.87 6.04 11.1 6.73 8.51 9.96 3.17 9.31 7.52 9.14 2.58 7.63 5.64 8.23 7.92 3.09 7.62 6.51 5.23 3.52 5.52 9.03 4.81 2.7 7.86 5.36 3.86 8.29 9.51 2.17 7.78 1.85 9.81 1 7.82 7.96 7.11 8.74 4.09 6.27 8.01 7.44 1 9.35 10.2 5.19 6.21 7.95 8.85 8.34 10.4 9.29 4.68 9.04 8.06 8.83 11.2 11.6 2.58 7.43 8.34 9.3 7.69 5.19 0.58 6.86 10.1 8.88 4.87 2.58 2.32 5.33 6.26 7.64 10 7.99 10 8 10.5 10.8 4.39 9.65 9.5 5.63 9.1 8.98 7.23 4.64 13.6 7.53 7.77 2.58 8.65 2.17 8.12 8.57 1 9.12 4.39 6.9 11.3 3.58 9.29 8.52 1.32 4.55 6.96 6.67 4.29 8.5 6.76 5.79 8.36 5.63 10.3 2.17 0 10.3 3.81 2.17 2.32 4.32 7.96 6.76 10.1 9.36 7.47 4.67 9.5 10.5 6.12 10.5 12 6.42 7.22 8.15 8.58 8.92 2 7.93 4.43 12 8.45 4.17 12.1 6.06 3.58 2.91 7.14 8.87 11.2 7.82 8.19 9.6 6.1 1.32 5.27 3 4.49 0.58 10 1.32 10.8 3.81 3.32 7.3 8.39 4.64 8.72 2.81 2.58 10.7 10.9 5.69 7.54 9.16 1.35 4.52 9.63 2 6.43 1.32 9.23 15.6 6.79 7.67 5.97 15.3 9.72 3.58 1.58 7.39 7.63 4.58 11.8 10.4 8.12 8.32 15.6 4.21 6.12 13.6 2.91 8.47 1.81 9.49 10.7 9.66 8.38 1.58 9.83 4.49 6.33 7.1 13.7 7.04 7.58 6.29 2.7 2.32 5.74 3.75 3.64 9.89 9.2 4.21 3.32 3.91 5.25 12.3 9.88 12.6 8.55 8.11 12.3 5 9.12 12.7 8.58 13.4 8.71 11 13.4 8.07 8.55 8.39 7.71 9.37 1.58 7.29 8.9 8.69 7.04 8.2 8.77 8.79 6.64 8.92 4.49 4.21 7.34 8.12 6.12 12.4 7.19 9.55 5.38 11.5 9.65 5.32 5.09 4.7 6.08 12.8 8.09 5.19 6.71 7.86 4.52 9.82 8.04 0.58 9.12 7.17 6.64 9.84 11.5 6.25 8.71 9.5 3.91 1.58 9.15 0 7.42 6.79 7.89 5.66 7.93 3.39 1 0.58 1 8.13 6.82 8.57 9.03 11.6 11.7 12.2 7.93 3.32 7.93 11.4 1.58 7.58 7.89 9.27 10.6 9.44 6.93 0 10.3 6.92 0 9.1 1 1 7.46 8.56 7.72 9.01 8.67 7.47 1 0.74 6.26 11 7.76 7.39 2 4.46 2.62 6.86 8.41 7.62 12.7 7.81 7.9 8.59 5 11.1 3.25 7.48 1.58 9.06 7.72 2.91 7.6 6.68 4.21 10.4 5.52 6.44 10.6 9.33 11.8 9.53 1.32 2 8.03 5.48 12 4.78 8.01 9.16 10 7.46 9.06 5.85 7.64 7.38 7.48 9.65 2.7 8.74 11.1 9.09 8.59 9.39 10.6 6.65 8.1 10.9 6 10.7 9.4 5.48 11.7 11.2 9.74 9.65 2.84 6.04 9.07 8.3 2 9.42 2.58 10.2 0 9.98 4.59 0 6.98 7.97 8.47 7.68 1.58 11.7 1.81 1 10.3 2.7 1.81 12.8 11.6 12.3 8.99 8.38 3.96 7.07 6.29 9.23 6.19 8.38 7.53 10.9 8.34 7.49 9.63 8.05 9.26 5.19 6.26 3.58 9.34 0 2.46 11.6 3.7 5.09 11 5.73 3.86 6.1 4.58 7.9 8.78 7.6 2.32 6.55 9.59 6.81 0.58 4.13 10 8.51 7.06 5.02 11.1 8.57 1.32 11.4 9.42 7.69 1 9.09 8.54 0.58 6.48 3.95 8.06 7.85 8.91 9.93 5.46 4.29 0 9.89 9.16 8.03 11.3 11.2 4.52 7.41 1 9.42 8.76 9.15 6.71 9.32 10.3 5.93 5.48 6.89 10.9 3.75 4.21 9.68 9.73 7.55 0 7.41 7.43 1.32 0.58 10.8 4.21 2.91 4.25 8.81 7.28 6.14 5.99 7.9 7.89 6.97 3.81 10.4 8.4 9.17 8.08 1.81 9.55 9.26 5.93 9.59 9.94 5.57 7.52 7.38 7.82 5.04 5.89 9.66 4.52 10.2 1.32 10.3 3.09 7.32 8.42 4.39 0 11.7 8.68 5.7 2.91 2 2.46 2.17 4.25 7.48 5.19 8.55 0.58 9.68 11.1 9.66 12.6 8.66 11.1 11.3 5.95 5.51 10.5 11.9 9.13 8.32 8.65 8.77 1.32 3.46 8.31 7.66 6.83 5.32 7.28 5.57 8 10.3 7.51 7.37 0 4 9.33 5.63 8.79 9.36 6.19 6.16 7.19 2 4.21 7.65 6.77 4.17 8.72 12.8 7.82 6.22 8.77 6.4 3.86 9.14 7.22 2.32 11 9.33 4.13 3.7 6.88 3 10.1 4.81 10.6 7.92 12.1 8.48 7.75 12.4 2 1.58 2.91 11.6 4 5.95 11.4 6.17 6.7 8.02 5.34 10.7 6.66 6.1 7.14 7.5 9.77 10.5 7.62 6.06 7.69 4.28 3.17 7.01 8.37 1.32 9.02 0.58 2.32 11.2 8.89 5.82 8.44 0.58 2.7 8.67 12.1 5.15 1.32 11.8 1.58 2.91 0.58 5.57 0.58 9.56 5.94 5.77 9.16 5.61 12.5 7.7 7.61 3.86 7.61 2.32 8.23 2.32 10 8.29 6.36 0.58 4.39 1.81 4.86 3.91 1 0 10.9 0 1.81 3.91 0 4.88 0 8.6 0.58 8.27 9.17 6.05 8.59 3.95 7.21 8.33 5.25 12.9 12.8 7.81 5.95 8.36 9.83 6.73 8.75 3.64 3.39 7.5 2.58 5.93 14.4 3.91 8.01 11.8 6.07 3.91 9.66 2.91 3.09 2.7 3.86 7.18 8.13 2.91 9.79 3.95 7.55 1.32 11.5 8.68 6.66 8.36 7.93 5.98 4.49 0 9.42 7.6 9.3 7.33 6.02 5.93 4 6.39 7.25 8.8 9.06 8.64 3.75 5.7 6.3 7.17 8.16 5.82 0 7.78 7.82 5.15 8.9 3.91 4.13 5.86 6.66 5.85 2.32 6.32 8.3 4.09 7.75 7.45 8.56 7.64 7.73 8.94 3.75 9.41 8.44 1 0.58 11.6 4.75 0.58 5.21 9.87 11.1 6.39 1 9.62 4.78 5.17 8.54 3.09 11.2 9.79 0.61 9.45 7.72 7.03 3.17 9.53 2.17 5.13 7.39 7.08 8.26 8.73 3 0.58 7.61 7.68 3.7 3.09 13.2 11.2 3.64 8.05 4.46 6.87 13.9 10.5 10.6 0.58 7.26 13.1 0.58 4.55 9.12 0 0 0 2.46 9.44 1.58 9.24 8.51 1 7.65 9.53 8.44 6.88 9.84 2.92 6.49 5.11 8.7 6.45 5.29 6.61 1.58 9.68 7.55 8.62 0.58 7.08 2.58 8.87 7.17 9.61 4.25 7.47 6.97 4.58 3.39 7.91 5.67 12.9 9.51 13.6 7.33 4.67 7.41 6.87 10.1 8.76 6.34 2.91 3.81 0.58 8.77 7.75 8.83 12 8.65 3.86 7.89 1.58 4.13 4.03 10.7 6.75 6.14 11.5 6.26 9.79 1 6.71 0.58 6.8 7.84 4.59 6.75 0.58 7.02 10.1 8.64 10.6 6.68 2.17 6.54 0 5.43 1.32 10.2 2.17 9.66 9.2 7.55 8.65 7.89 11.7 9.39 10.1 9.15 0 2.17 5.3 8.13 3.39 10.6 8.39 8.01 7.03 13.2 2.32 9.4 8.8 11.2 5.89 6.7 4.98 1.58 8.43 9.78 11.6 8.53 7.48 8.14 6.9 8.14 2 6.72 1.81 2.32 9.63 8.08 3.09 4.49 6.43 7.87 5.39 9.11 11.3 7.85 7.75 8.5 11.3 7.43 7.55 11.1 8.19 2.17 11.4 10.2 9.12 6.09 8.52 7.02 0.58 1 3.46 12 8.12 6.47 7.82 9.27 0.58 11.2 4.21 9.21 8.67 8.04 4.39 10.4 8.32 2.91 6.63 2 2.58 7.52 7.43 4.86 1 8.01 2.46 1.81 7.3 10.3 1 10.3 9.59 2.51 2.17 7.16 0 7.39 5.73 6.33 9.08 9.88 3.52 3 6 8.04 3.7 6.04 9.91 2.32 2.17 11.6 4.29 4.25 8.83 2.91 0.58 8.79 9.36 7.07 9.01 10.2 9.25 6.94 4.82 1 11.2 5.77 9.53 5.25 7.21 7.69 4.55 10.7 3.32 4.25 4.83 10.2 9.78 3.09 10.5 1.81 1.32 2.46 6.41 3.25 5.3 7.63 5.73 1.32 7.73 4.04 6.79 1.58 9.96 8.13 9.25 3.81 4.73 1.58 2.17 6.08 8.71 6.06 10.2 3.46 7.2 8.58 2 7.21 3.58 1.81 0 3.81 0.58 3.86 3.46 3.58 3.75 10.8 7.36 9.18 4.21 10.3 2.81 6.81 9.94 7.56 5.55 11.2 0.58 1 11.8 11.4 0.58 11 1.32 10.8 0.58 1.81 11 8.94 2.17 1.58 10.1 9.45 0 6.92 12.3 7.52 9.17 6.84 8.94 5.71 5.15 5.95 7.83 8.98 10.4 11.5 4.32 7.98 4.04 8.71 8.83 2 3.64 10.5 9.82 4.61 7.95 4.88 2.46 11.1 1.32 5.49 10.2 1 4.93 11.2 2.46 4.67 6.3 2.91 7.85 11.5 10.5 10 11.1 7.75 5.63 8.34 4.43 10.4 6.86 3.95 6.28 1 4.95 1 7.79 5.11 6.41 11.6 6.86 9.31 7.19 5.7 8.25 10.2 6.06 8.05 7 9.71 5.29 0.58 12.6 8.41 7.39 7.99 6.01 4.67 1.81 7.43 6.2 3.64 8.07 8.77 5.41 7.02 8.57 9.73 0 7.65 4.61 3.41 9.07 2.17 12.2 5.21 11 7.81 9.61 0.58 8.03 7.23 0.58 6.79 7.48 8.78 8.86 11.6 10.8 1.32 8.29 0 12.5 3.52 8.36 1.81 2.91 9.81 5.79 0.58 4.67 6.19 4.81 1.81 1.81 10 4.73 8.07 13.1 13.2 6.42 3 5.97 1.81 10.1 7.38 11.3 7.92 12.4 13.2 0 6.28 11.3 2.7 6.41 8.97 1.32 9.87 2.58 7.57 12.9 12.1 6.58 9.24 9.92 8.45 3.86 7.54 6.8 11.6 10.4 6.08 11 8.01 6.38 7.89 9.71 9.59 9.53 0.58 9.79 2.17 9.38 2 12.7 4.64 4.73 6.97 3.25 8.86 3.17 5.99 7.97 7.25 3.09 7.9 2 8.51 8.55 0 3.58 7.07 5.23 2.91 2.58 6.13 8.94 6.28 9.26 4.17 2.7 0 8.99 10.2 6.34 3 6.49 8.08 4.21 5.6 0 2.7 7.24 4.36 2.32 9.45 9.96 6.58 9.54 6.04 0 9.91 4.49 4.52 4.61 5.93 6.84 9.92 8.16 6.85 8.76 2.46 10.1 4.25 10.9 11.2 3 7.04 2 7.16 12.2 6.11 10 0 9.67 9.99 8.95 11.1 11.8 8.47 7.98 7.54 9.44 12.1 9.59 11.6 8.8 5.89 0 8.52 11.3 10.4 10.9 10.8 4.52 10.4 7.62 11.2 6.07 5.61 5.71 8.65 8.21 8.63 7.22 7.27 9.79 10.1 9.65 7.76 5.78 0.58 5.07 4.25 7.78 8.25 2.81 2.32 9.63 13.1 9.67 8.16 10.6 11.6 12.1 10.7 6.97 9.75 6.81 10.3 7.19 3.64 8.34 7.6 10.1 9.9 12.4 9.2 9.64 5.75 6.85 10.6 12.2 0.58 10.2 1.32 0.58 9.37 11.2 10 5.75 11.8 11.6 9.03 13.4 9.64 9.58 13.8 13.9 7.24 8.48 7.92 4.67 9.37 6.59 11.6 7.17 10.2 6.81 7.69 10.8 9.4 4.64 8.67 3.09 10.2 10.4 9.42 11.6 10.2 9.77 8.25 10.1 7.82 9.76 10.6 9.23 8.32 8.75 6.11 6.75 12.4 1.81 9.45 12.5 11.9 10.1 11.5 9.3 10 8.76 5.52 8.46 8.81 8.48 12.8 8.09 7.78 11.6 16.4 4.04 4 10.2 10.4 6.49 7.94 7.58 12.6 13.2 14.5 16 9.52 10.4 8.57 9.52 7.67 10.8 10.8 6.86 3.46 7.2 10.4 7.92 11.2 9.4 8.66 11.7 6.29 8.14 7.3 10.6 5.83 3.95 6.1 8.74 1.58 9.6 5.94 6.4 7.48 4.17 6.59 11 8.08 9.5 10.2 9.64 8.41 10.5 4.36 8.5 11.2 10.1 1.81 10.1 8.01 5.73 4.81 12.4 4.98 7.5 10.3 3.09 1.58 5.92 0.61 9.29 1.32 4.73 3.39 9.4 8.61 13.8 5.25 8.7 9.34 4.17 5.86 9.76 13.3 8.47 13.6 9.69 9.83 12.2 13.7 14.6 11.8 13.7 1 7.64 0.58 10.6 4.83 4.75 11.2 1.32 3.46 3.95 8.78 0 11 6.86 4.13 3.39 9.07 7.07 6.46 5.09 1.32 9.27 4.78 7.99 7.54 12.8 9.21 2.7 9.06 13.5 10.6 9.98 1 4.91 9.41 8.08 4.04 10.7 10.8 4.95 3 1.81 2 10.3 9.46 6.58 9.58 8.2 0.58 7.15 3.64 7.7 0.58 9.11 1 2 0.58 9.95 6.84 5.29 6.13 9.35 11.1 9.23 5.78 10.3 6.81 5.44 5.44 7.01 8.99 6.73 7.79 7.55 10.7 5.32 9.77 8.47 11.4 9.8 10.6 6.79 7.87 9.06 9.18 6.71 10.2 5.75 10.6 5.82 6.93 9.17 9.04 9.58 6.31 9.56 10.4 3.7 10.6 5.29 8.67 2.58 8.51 2.32 8.81 7.72 7.41 12.3 0 2.17 9.49 8.86 5.43 2.81 11.9 8.24 1.58 4.52 7.45 3.09 8.94 8.76 8.62 6.54 11.5 9.16 5.71 4.29 6.77 7.65 3.7 11.3 8.19 1.58 14.7 2.81 4.29 2.7 0 0 8.79 5.46 6.57 6.62 11.4 9.72 7.55 10.8 8.72 9.02 14.3 8.47 0.58 4.64 3.17 8.36 7.6 4.7 7.76 7.98 8.19 9.41 11.2 7.1 12 8.94 10.5 7.15 6.44 9.78 10.7 12.4 3.7 9.67 11.2 11 9.58 7.7 0 8.89 5.93 12.9 2.91 10.7 12.4 6.54 8.53 11.7 6.15 10.3 7.91 7.74 9.03 8.13 8.98 7.57 9.72 0.58 5.02 9.04 11.5 10.9 10.2 10.5 1 8.83 12.2 3.32 1 12.9 9.64 9.25 8.08 11.9 4.17 9.46 9.59 7.23 9.88 8.13 10.7 8.13 11.2 11.4 6.41 12.6 10.8 3.17 6.71 9.8 2.17 10.9 0 11.4 10.9 11.1 10.1 7.87 10.3 13.8 8.32 3.25 6.92 11.2 9.93 0 10.6 8.08 10.9 6.13 6.78 11.6 0 12.4 10.4 11.1 1.81 8.73 9.99 4.64 5.13 11 6.9 8.44 9.49 1.58 10.6 8.27 9.9 8.41 9.37 5.79 3.7 6.17 6.4 13.2 6.56 8.36 9.43 3.46 5.81 13.5 4.7 8.13 9.11 8.31 8.65 7.56 5.21 9.33 11.1 10.1 8.57 8.41 10.8 4.58 9.43 8.52 11.7 12 7.83 3.95 10.8 8.34 3.95 4.13 12.8 9.49 12.8 0 2.32 7.94 2.91 5.55 9.47 2.46 11.1 12.5 7.27 6.56 9.15 6.84 11.1 7.78 3.32 6.54 7.35 5.61 7.71 9.83 5.6 8.99 8.33 2.81 8.04 10.8 8.44 9.45 11.6 4.88 9.85 3.09 7.15 8.17 6.38 6.8 1.58 4.52 7.96 1.58 4.98 10.3 1 7.88 10.2 10.4 3.58 3.81 1 2.17 3.81 3.46 4.09 4.91 7.58 7.05 1.58 0.58 6 6.99 5.02 7.88 6.46 7.82 5.21 12.5 6.48 8.2 5.7 3.39 8.95 10.4 2.81 10.9 7.54 8.7 6.83 12.1 8.18 7.17 8.56 9.77 9.56 10.2 6.44 8.9 6.61 9.85 5.43 7.54 5.73 4.25 9.19 9.02 3.91 8.06 1.58 3.7 3.86 8.47 1.81 3.18 5.74 2 10.7 1 8.04 9.84 2.91 8.36 8.03 8.82 5.38 9.46 8.41 4.25 12.8 9.01 0.58 8.31 8.58 7.83 9.07 1.32 9.11 8.57 7.3 4.55 7.59 6.03 10.3 6.38 10.5 8.65 9.31 5 4.75 10.1 7.71 9.27 10.7 6.97 8.42 11.1 8.22 8.61 5.64 2 9.04 7.43 4.97 8.34 11 10 4.67 6.21 4.95 7.39 1.58 9.23 10.5 0 5.69 2.17 2.17 4.86 3.86 7.35 4.91 7.64 10.4 9.27 9.32 5.74 7.67 8.17 9.71 11.5 10.5 4.58 8.03 7.24 7.38 3 4 7.95 7.51 5.21 5.19 5.09 5.36 14.4 10.4 10.7 0 7.39 11.5 6.46 10.3 4.86 9.81 11.1 8.69 10.8 9.45 9.72 5.09 11.7 8.56 10.4 1 11 2 6.61 8.13 10.3 5.13 12.1 4.36 11.9 8.58 13.2 9.49 7.09 10.6 11.9 10.3 6.04 7.28 9.95 8.71 12.2 8.85 11.3 11.6 8.67 3.91 8.12 8.85 9.15 9.55 9.06 6.18 9.39 7.61 8.59 1.32 10.2 9.94 10.6 9.79 6.94 11.7 8.81 10.6 1 9.99 7.75 10.3 11.5 2.32 11.9 6.86 11 8.77 8.33 11.2 9.71 9.43 11.5 10 5.15 9.26 12.9 8.68 6.95 10.5 7.93 9.7 9.51 10.1 3.52 9.83 9.89 0 8.94 8.32 7.94 3.64 8.45 5.43 9.24 9.69 10.5 9.22 10.6 10.9 9.97 8.83 7.57 12.3 5.29 6.22 12 2.81 10.9 11.8 9.13 9.1 7.85 6.59 10.2 8.31 11.2 10.2 10.2 10.2 7.08 9.61 9.94 9.53 11.4 10.2 8.57 7.71 12.5 8.78 8.75 0 9.03 9.48 6.6 4.49 3.32 11.5 8.69 7.71 10.6 7.46 2.46 10.9 8.92 8.01 3.39 10.9 11.7 1.58 2.7 5.41 10.2 11.3 10.4 8.18 7.33 8.96 4 9.22 10.9 8.62 9.76 8.42 8.35 8.4 9.25 2.32 10.6 11.7 11.1 10.6 8.78 9.49 12.4 3.39 12.5 11.8 9.36 8.46 6.18 1.32 12.1 9.46 10 8.81 10.1 9.28 8.17 7.5 9.52 8.12 10.9 9.91 9.47 11.8 10 8.45 9.54 9.81 11.1 10.4 9.36 10.3 10.2 10.9 5.3 8.76 7.62 10.3 11.6 10.2 10.5 9.78 10.3 5.43 10.4 9.69 11 5.63 8.73 9.77 10.6 9.8 9.34 8.52 9.05 9.23 10.6 10 8.97 7.93 10.2 11.1 8.1 10.5 9.96 9.02 10.7 10.8 7.77 9.44 8.6 8.36 7.91 9.85 3.75 10.4 7.79 10.6 9.5 5.45 8 9.98 8.8 8.56 8.42 9.25 10.6 8.75 3.43 11.4 9.63 9.87 10.5 7.32 11.1 7.71 9.53 10.3 6.66 9.55 10.4 8.46 9.64 6.37 10.5 11.6 10.1 10.8 8.81 9.3 9.53 1.32 5.99 7.31 0.58 8.33 10 10.8 9.42 9.45 8.64 8.35 14.3 10.5 9.7 9.69 9.45 10.9 10.3 9.74 10.9 10.7 10.4 12.7 11.4 10.1 8.57 10.7 10.6 9.12 10.6 9.65 7.79 8.67 10.6 9.26 9.36 10.9 11 10.1 10.3 10.9 11 11.9 11.7 9.88 13.6 7.52 9.98 12.5 10.5 10.9 11.7 11.2 7.1 10.3 12.7 2.46 10.3 9.16 4.91 9.97 8.39 10.5 10.1 13.2 10.9 12 10 1 11.3 9.84 2.91 10.8 8.54 10.1 10.8 11.2 5.92 8.28 6.22 9.75 12.2 8.28 6.08 9.73 9.66 8.96 3.32 10 7.89 8.03 10.4 8.31 10 11.4 6.8 10 9.03 10.5 10.6 4.43 8.46 9.28 7.06 8.32 9.67 9.21 9.08 1.32 8.82 9.72 10.2 11.4 11.1 8.47 10.6 10.2 3.91 9.28 9.49 10.4 9.22 9.22 8.91 11.8 10.4 4.25 4.75 9.99 5.43 6.16 9.4 8.46 9.51 4.25 9.86 10.1 10.2 10.9 9.36 6.1 10.5 9.59 5.52 9.9 9.29 5.74 9.37 9.45 8.64 9.29 10.6 9.52 8.37 10.9 11.6 9.1 0 9.76 9.11 9.95 12.5 7.38 10.1 10.4 12.7 10.3 9.25 7.75 10 9.72 9.33 7.99 10.6 9.58 10.4 2 9.45 11.9 9.11 9.98 10.1 2.32 15.8 11.1 11.3 11.9 11 8.55 9.47 9.28 10.5 8.25 10 10.3 8.61 8.9 11.8 6.71 12.5 9.62 11.6 10.2 9.84 8.49 9.98 8.38 9.83 8.55 11.3 9.75 10.2 10.2 11.7 10.6 9.69 11.2 10.8 8.79 11.3 11.8 10.1 10.3 8.77 8.65 11 10.8 9.59 9.72 8.86 11.3 11.3 8.69 3.52 8.8 9.23 8.8 9.79 5.69 2.46 5.7 8.36 1.32 9.53 12.4 7.3 11.2 8.81 4.95 11.5 10.2 0 7.77 6.96 10.1 11.8 10 9.43 12.2 12.4 12.4 10.7 9.11 6.77 6.2 3.7 7.65 8.9 11.4 8.42 9.09 8.25 12 10.7 12.4 9.57 10.8 10.6 10.8 11 10.6 7.52 9.66 10.9 7.9 9.78 10.3 8.68 6.23 1.58 7.54 12 6.02 8.41 8.98 8.74 10.7 8.98 9.57 9.62 12.4 9.21 10.7 10.2 11.8 9.78 9.16 10.9 10.6 10.1 0 1.32 15.2 9.29 11 13.3 9.16 10.2 8.2 6.47 12.7 10.1 8.48 0.58 5.77 10.2 7.28 1.58 9.75 7.68 4.86 11.2 9.44 9.64 2.7 1.32 8.42 10.8 10.2 9.86 8.46 6.23 9.54 10.7 9.36 8.58 10.5 9.92 10.1 10.3 2.17 4.17 11.3 6.13 7.92 9.65 1 6.1 11.2 3 10.3 9.36 9.3 8.19 11.2 7.96 9.12 9.6 10 7.17 8.71 10.3 10.4 7.87 8.69 8.59 8.67 11 12.1 5.04 11.7 9.72 11.1 11.6 9.53 9.66 11.3 0.58 10 9.77 9.66 9.86 4.86 0 1.32 2.46 10.7 6.19 11.3 10.6 6.98 10.4 6.81 9.33 5.36 10.2 10.9 11.6 9.75 10.5 8.53 8.34 12.6 8.67 9.51 8.99 8.15 12.7 9.58 11.3 8.51 5.25 9.98 7.76 11.2 8.9 9.11 8.76 10.8 11.3 4.09 8.67 10 10.5 9.42 8.01 8.13 7.34 0 7.63 8.01 4.55 11.6 10.3 9.39 9.13 10 11.5 11.4 0 0.58 8.93 8.37 7.05 8.92 8.48 9.68 9.24 4.04 6.43 9.5 8.94 8.73 7.76 11.5 9.43 1 6.3 0 3.06 8.17 2.91 6.4 3.81 9.94 0.58 4.73 2 6.77 8.09 5.73 5.41 6.56 6.85 3.75 0.58 2 10.7 9.04 8.8 6.47 6.15 7.01 13.7 7.18 11.6 2.81 16.7 10.5 10.5 12.3 7.55 9.89 9.45 10.2 0 9.44 11.2 4.17 5.11 7.25 7.1 3.32 10.2 9.01 1.58 9.22 10.5 10.1 6.38 3.42 8.2 9.07 7.13 10 6.12 10.9 7.68 7.68 8.89 5.02 6.56 9.88 7.67 3.46 10.1 4.93 6.96 10.9 9.76 8.51 3.52 9.98 11.3 8.79 7.75 5.71 5.02 5.67 9.51 3.75 7.81 9.88 1.58 0 8.18 1.58 0.58 10.3 8.62 7.3 5.91 6.95 2.17 5.19 7.79 4.75 8.22 8.48 9.73 7.39 1.81 12.8 0.58 2 9.91 9.1 9.01 8.4 9.24 7.49 7.85 2.91 5.94 3.52 0 5.02 9.55 8.83 1.58 3.95 2.17 8.61 2.81 8.9 5.09 5.85 5.29 1 6.55 7.75 7.19 5.29 9.75 12 5.92 7.2 2.91 7.6 7.97 8.12 10.1 7.49 3.52 1 4.21 5.88 8.67 4.55 8.47 1 3.67 2 9.06 9.42 6.61 7.04 5.36 8.23 3.95 7.17 7.67 0 5.07 5.54 1.58 3.95 2.17 6.32 0 9.01 4.49 1 1 5.44 1.32 6.55 7.59 4.17 7.67 4.04 8.09 2.46 2.91 8.02 1 7.65 4.78 0 1.32 0 9.66 9.24 8.94 6.8 4.88 8.87 9.64 8.6 8.65 1 9.05 11.8 8.98 7.16 9.85 5.91 0.58 8.47 2.91 7.87 11 10.9 2 10.3 11.1 9.9 7.95 11.5 10.4 8.7 8.24 10.1 7.34 11 11.6 8.58 6.83 10.7 0 10.3 10.9 8.55 7.04 5.81 10.9 10.6 8.59 7.17 5.99 12.8 11.6 6.52 10.5 11.4 5.41 3 11.5 7.23 6.14 10.6 5.6 10.1 8.92 10.9 8.1 9.12 10.1 11.3 8.7 10 12.8 8.9 6.6 7.9 8.97 10.6 7.53 9.75 6.36 6.91 3.75 8.51 10.3 11.5 9.74 13.2 10.2 10.2 1 11.6 10.7 8.75 7.79 10 8.04 8.48 12 5.79 3.46 9.31 7.29 9.13 10.1 8.68 3.91 12.3 7.12 7.49 9.97 9.28 9.34 8.59 9.24 10.1 10.2 8.56 12 8.34 7.3 10.3 9.79 7.86 1.81 8.51 10.7 11.5 3.17 9.4 7.97 8.7 2.46 8.44 7.84 10.1 9.17 6.86 7.61 9.89 1 9.39 0.58 0.58 3.91 5.13 10.6 6.72 12 9.1 8.74 8.12 9.25 8.65 9.89 10.2 10.4 7.27 8.43 9.02 10.1 10.1 8.79 7.81 10.9 5.49 10.1 10.8 10.2 4.22 10.6 11.3 9.37 15.9 9.45 9.06 8.3 8.09 9.11 8.99 10 8.11 10.3 6.95 8.75 11.3 10.7 8.47 9.71 8.28 11 10.2 10.1 8.41 11.3 10.4 11.2 8.53 11.3 8.87 9.7 9.78 11 7.37 10.1 6.77 9.63 10.7 10.1 9.92 11.8 10.2 9.51 4.78 9.4 8.84 7.65 10.1 9.8 5.17 7.55 4.13 11 8.82 10.6 2.81 9.03 7.98 9.01 8.34 3.09 9.1 8.46 7.66 8.36 2 7.71 6.72 10.8 10.6 9.56 11.3 10.8 9.77 8.52 9.1 9.61 11.8 8.93 11.3 1.58 5.85 7.08 10.1 10.9 9.67 9.87 8.81 8 6.14 10.8 8.18 11.6 10.6 3.17 8.6 7.61 10.2 9.68 10.7 9.3 10.3 9.1 9.2 9.7 11.4 13.2 11.2 2.17 8.74 10.3 8.7 10 4.61 10.2 4.98 9.29 7.85 6.6 2 11.3 12.1 7.28 8.13 9.46 5.15 10.2 11.6 9.55 9.17 11.4 7.86 7.69 11 8.02 10.4 5.07 11.3 3.09 9.2 2.58 7.03 10.7 0.58 8.24 2 9.64 10.6 11.5 3 8.86 0 6.2 3.81 6.75 9.86 10.3 8.48 7.46 5.19 8.2 5.61 2.58 3.64 2 5.32 10.1 8.53 7.94 1.32 9.84 8.71 1.81 7.97 9.09 8.44 10.5 7.24 8.04 7.35 8.83 9.04 8.45 9.55 8.58 5.17 8.56 10.1 9.64 2.17 9.69 5.94 9.61 7.88 8.01 7.79 10.2 9.07 9.54 1.58 10.2 9.68 11 10.1 9.01 1 8.71 8.73 6.94 9.98 9.72 10.8 8.78 10.5 10.6 3.39 9.82 10.4 9.93 9.4 9.93 10.3 3.86 8.47 11.3 4.88 7.81 9.49 9.9 10.4 8.73 8.63 9.33 10 8.41 11.4 4.32 3.64 1.33 10.7 2 6.75 5.98 9.47 7.21 10.5 13.3 9.86 8.41 1.58 9.96 2.17 7.63 2.91 10.9 12.7 8.96 2.7 5.83 2.3 5.85 8.84 7.14 11.2 3.86 7.36 6.09 0.58 8.86 6.13 12.3 6.28 8.04 2.81 9.27 10.9 4.29 9.45 9.24 10.7 5.91 3.32 4.93 0.58 11.8 8.12 8.99 8.05 8.85 0 7.55 8.94 8.88 10.2 1 6.78 9.82 9.47 5.78 7.9 10.3 15.9 9.42 10.8 9.7 11.4 10.1 9.1 1.58 2.91 9.64 2.17 8.77 7.44 5.93 10.3 10.1 8.65 11.6 8.46 7.29 11.4 2.17 8.49 12 4.04 9.09 6.56 9.31 10.9 12.4 9.47 2 6.7 10.2 10.6 11.9 8.19 6.64 9.61 7 11.4 5.77 7.51 8.25 6.86 10.7 2.46 11.1 2.46 7.07 4.93 5.44 9.76 9.38 0.58 1 9.74 6.91 10.6 12.1 8.49 9.01 6.73 7.1 6.87 8.87 5.73 11.5 7.45 7.95 11 1.32 7.21 8.74 4.21 7.96 11.1 5.77 9.69 7.33 10.4 6.23 5.1 6.86 8.87 4.52 4.67 9.08 10.2 1.81 9.16 0 8.55 9.36 5.46 11 8.6 11.2 6.72 3.95 2.91 10.7 8.2 2 7.4 2.17 1.81 7.16 7.76 11.7 1.58 8.19 12 1 5.07 8.47 10.3 9.7 8.67 5.41 4.91 6.82 11.4 10.9 10.9 9.42 8.23 9.22 10.4 10.8 11.1 8.31 8.06 6.4 9.26 9.3 7.55 2.46 9.18 9.03 6.98 10.1 8.12 8.93 9.67 6.43 10 8.95 4.86 9.05 10.1 9.3 3.64 8.44 3.86 8.95 4.36 7.19 9.03 12 5.11 9.72 9.52 10.9 13.1 3.86 12 10.7 10.1 11.8 12.4 10 9.87 9.36 8.99 4.09 8.51 10.2 10.1 9.25 9.03 6.79 9.99 8.85 10.1 6.94 7.54 6.81 11.5 10.8 8.87 5.48 10.7 8.48 8.04 11.3 5.27 10.6 9.98 5.29 6.72 9.04 11.5 8.35 4.92 13.1 0.58 9.89 10.9 10.5 7.55 9.09 10.6 6.69 9.19 12.2 10.9 6.32 7.71 10.6 15.3 1.32 7.26 13 11.7 3.55 3.52 8 11.2 5.34 0.58 9.02 8.74 4 9.73 2.91 1.58 12.1 8.42 5.41 8.86 10.4 11.3 11 11.1 10.2 11.6 10.1 1 11.7 3.32 2.32 9.84 6.74 9.7 13.4 3.25 7.34 6.21 8.74 10.3 5.61 4.83 0 2.46 6.23 3.95 7.64 1 10.3 6.11 1 7.43 3.46 8.32 8.86 4.49 5 8.47 2.7 3.25 6.22 2.91 8.83 13.8 5.04 11.6 10.5 3.32 5.29 6.92 9.83 3.86 7.85 9.35 6.97 7.97 8.4 8.49 6.11 7.43 2.32 7.32 5.64 6.19 5.52 10.2 3.09 8.79 9.7 11 11.5 9.12 6.1 2.17 3.81 2.58 2.91 7.08 2.46 10.3 6.38 5.57 5.92 9.39 5.66 9.35 5.15 0.58 2.27 2.46 8.59 1.81 4.43 0 7.82 0 5.89 1 2.58 10.1 10.9 7.81 4.83 0.92 4.83 4.75 6.36 2.46 8.72 0 2.17 5.07 11.3 4.58 6.13 4.67 4.33 8.62 4.83 9.11 3.64 5.75 5.85 1.58 3.09 7.99 7.83 0.67 3.86 10 9.37 10.1 8.63 2.7 7.98 7.92 0 4.78 7.15 3.32 6.55 4.86 7.39 3.25 10 4.52 3.39 3.25 1.32 6.46 7.56 5.67 3.25 1 10.1 5.11 0 8.24 12 7.09 5.83 4.98 7.82 2.17 3.86 0 4 8.65 2.32 1.32 7.48 3.52 10.3 0.58 9.39 3.39 6.16 4.13 8.96 8.58 8.41 5.07 1.58 5.74 5.69 6.41 4.43 4.29 13.3 2.32 8.11 7.97 5.23 6.76 1.58 8.34 4.58 0 4.91 10.5 0.58 1.32 6.29 4.32 6.23 7.14 9.27 0 0 0.58 7.2 1 3.64 1.32 9.66 4.25 8.38 3.46 5.8 3.75 6.24 4.04 9.33 2.58 2.58 8.61 4.36 3.17 3 1.32 0.58 4.64 1 8 0.58 1.81 4.75 6.5 6.01 6.11 4 10.2 7.96 0.58 3.46 1.32 5.34 0 6.91 10.3 6.58 8.01 8.75 2.17 8.47 2.17 1.81 7.22 5.93 5.64 6.08 9.06 8.83 3.46 5.48 8.91 8.77 4.04 6.71 7.63 1 9.34 4.21 5.57 9.7 9.22 6 9.04 8.96 3.52 3.32 3.25 8.76 0.58 7.38 5.98 3.32 4.86 7.55 9.06 11.3 2 8.13 0 10.6 0 0 3.81 4.7 8.09 4.88 9.47 3.39 5.43 9.31 2.32 5.49 10.3 6.61 4.58 9.27 1.58 3.31 2 10 10.3 3.52 6.32 2.46 2.32 8.28 0 1.58 6.13 7.12 4.53 6.56 4.67 1.32 3.64 3.25 3.46 1.58 8.14 8.13 1.81 11.9 4.09 9.51 6.1 3.46 1.81 8.43 5.61 8.41 8.35 10.3 1.58 6.55 7.99 2.58 1.81 5.57 8.76 10.2 8.58 3.39 6.85 9.8 8.31 8 6.69 2.58 5.4 6.29 8.14 4.13 5.66 7.68 8.54 8.41 1.58 7.52 9.97 12.1 10.8 9.79 6.87 11.7 13.6 10.1 11.1 8.56 8.49 11.6 10.1 10.6 3.64 4.61 9.74 8.66 8.97 9.22 8.59 10.3 11.9 12.7 8.35 8.73 10.7 1.58 5.87 1 11.3 1 9.25 7.67 10.9 10.3 10.3 9.95 10.7 8.15 7.89 7.79 7.57 9.64 7.54 10.9 10.7 9.08 4 7.33 9.24 7.67 11.2 10.2 4.67 11.6 9.82 1 5.19 8.48 3.32 9.95 2 9.94 1.58 9.07 11.3 9.7 7.06 7.27 9.63 10.3 12 7.39 9.54 10.8 9.86 8.51 9.74 9.08 9.22 9.18 9.98 7.23 10.2 9.94 9.46 10.7 8.36 11.3 8.32 8.36 6.69 8.64 9.61 9.8 9.63 8.42 8.91 9.32 9.31 10.9 10.1 10.8 7.4 9.36 8.64 8.37 8.56 8.67 0 9.41 9.69 10 11 0 2.17 8.9 0 11.2 3 3 10.5 8.75 3.09 1.32 8.38 12.8 6.14 6.45 14.1 2.7 11.5 14.1 11.1 10.8 12.6 11.8 9.17 10.4 7.81 2.46 6.43 8.83 9.15 5.29 13.4 0 6.71 8.36 10.1 7.13 9.53 9.06 8.26 8.8 10.7 9.46 9.43 7.14 8.58 8.41 11.6 12.1 10.3 9.59 0 10.9 10.5 6.45 9.8 8.83 0 10.7 7.16 1.58 10 9.63 1 7.64 9.16 12 11.6 2.7 10.2 0.58 2.81 7.33 6.92 9.62 1.81 12.4 10.3 8.53 9.67 5.97 9.9 9.13 8.76 5.04 3.7 10.6 11.3 9.43 8.02 9.01 9.9 7.54 7.67 11.6 10.2 11.4 6.15 11.8 0.58 10.2 11.3 11.4 7.79 6.55 7.37 9.79 0.58 8.97 3.46 9.08 9.33 7.29 8.77 8.49 9.94 10.2 7.09 8.69 12.3 8.76 9.11 13 8.66 8.11 4.29 5.73 7.68 1.81 9.76 8.89 7.43 2 2.17 8.54 9.16 6.15 7.57 8.58 5.58 10.7 8.81 11.8 10.6 1.81 11.6 2.91 9.32 5.33 7.29 9.22 8.39 10.7 8.4 11 6.99 10 11.6 7.77 9.14 7.02 8.54 8.9 9.75 4.88 9.61 4.91 3.25 9.71 8.4 13 8.95 1.35 10.6 1 10.9 10.8 9.72 3.09 6.89 10.7 9.88 5.98 3 11.5 7.71 11.7 1.32 1.81 2.32 11 4.13 1.12 10.8 12.2 7.83 13.7 12.8 13.5 10.2 9.12 5.97 12.2 11.2 11.2 1.32 10.4 2.32 8.29 8.85 2.46 12.2 6.82 5.63 2.32 0.58 0 2.58 9.04 6.26 11.5 7.78 8.42 10.6 11 12.3 12 6.24 13.1 13.4 11.9 7.66 7.2 11.1 11.7 9.99 6.17 12.6 6.17 10.6 3.52 8.59 7.15 4.49 2.81 5.07 9.75 3.46 9.23 8.8 6.5 10.5 6 3.58 10.4 7.6 10.7 9.24 8.39 11.6 6.17 11 7.52 11.4 9.07 11.2 12 8.99 11.2 9.16 11.2 11.4 10.7 11.2 5.48 7.94 14.5 14.6 14.2 8.68 7.91 11.9 7.12 4.29 10.2 9.82 2.32 9.11 5.77 9.45 4.49 11.6 11 9.8 6.05 6.91 4.73 12.7 10.3 3.84 10.8 2.51 2.7 2.17 5.74 9.21 7.89 9.07 13 11.6 10.9 12 12.5 9.69 11.1 10.8 13.1 5.91 8.75 9.02 9.68 10.2 9.4 9.64 9.52 7.74 7.9 8.21 3 9.15 0.58 8.28 0.58 10.1 0.58 9.44 13.5 7.43 13.9 12.5 13.4 12.3 12.7 12.2 10.8 11.4 13.8 0 12.9 13.6 1.32 5.09 4.88 8.46 6.97 8.15 4.92 7.26 5.83 9.62 9.56 10.7 9.2 1 9.16 6.81 6.55 9.64 6.78 9.53 10.3 9.29 9.32 11.4 7.61 6.49 7.7 10.8 7.42 8.74 3.58 10.5 1.32 8.01 9.48 1.32 9.43 10.2 0.58 4.09 1.32 8.83 0.58 5.29 9.86 10.8 8.9 8.69 11.5 3.09 3.7 10.4 12.1 12 11 11 9.79 5.48 11.2 3.69 1.32 12 11.2 8.04 5.49 7.55 10.1 11.8 13.2 11.2 5.13 9.45 11.6 14.3 10.4 5.69 3.25 14.8 12.8 12.1 6 9.09 14.8 9.32 15 13.8 6.74 11.4 11.8 8.55 13.7 3.39 4.04 13.9 10.8 8.95 2 1.81 3.52 5.85 1.81 0 2.46 8.01 12.2 6.07 11.8 10.7 2.46 6.09 2.32 0 0 9.93 9.72 2.7 3.32 0 7.61 10.3 4.49 7.83 4.13 3.09 3.7 4.08 6.34 8.66 7.72 7.67 5.39 8.82 7.91 2.17 1.66 0.58 4.43 4.88 8.05 10.7 1.32 8.36 6.9 3.17 7.85 9.17 8.6 7.77 10.9 10.6 7.99 10.1 5.04 7.68 6.23 1.81 2 10.4 3.91 1.32 8.83 5.51 3.46 5.25 6.22 7.51 5.02 5.19 2.81 1.81 6.14 8.67 8.85 0 12.2 9.63 4.67 3.64 11.3 4.93 4.13 2.32 1.81 2.46 11.7 4.43 1.81 5.97 5.29 9.69 9.21 9.71 2.17 4.36 3.39 4.29 0 7.08 3.09 0.58 6.51 2.91 7.59 1.32 7.95 8.03 5.69 2.82 4.91 7.54 6.27 8.02 4.52 3 4.09 2.17 1.32 5.58 4.21 7.67 10.2 7.3 7.53 4.83 7.02 1 9.47 2.46 12.7 12 9.98 10.2 3.81 9.9 1.32 5.99 5.82 10 10.6 0 7.27 9.83 0 7.6 1.32 7.23 7.02 10.3 9.61 4.88 11.6 3.81 5.27 3.39 1.81 7.13 2.91 5.74 3.25 8.53 0 6.88 7.55 0 6.81 7.13 3.25 3.86 4.04 1.81 0.58 1.32 8.3 7.86 7.33 6.61 0.58 3.64 8.55 5.07 3.39 5.11 2.32 2.17 1 2.32 2.17 10.5 4.55 8.93 3.25 1.32 8.32 7.72 1.58 4.09 10.5 2.17 10.6 4.29 5.15 5.49 10.1 1 2.32 1 9.21 2.91 1.58 7.4 2.17 6.57 0 5 4.95 9.11 0 10.5 4.46 2 10.8 12.2 1.58 0 2.6 3.32 10 7.51 10.6 6.87 9.89 11 5.57 6.52 6.14 18.1 8.24 2.56 8.09 12.5 9.31 0 9.84 4.21 5.81 1.81 13.1 11 0 8.96 13.7 1.58 7.08 13.3 4.67 0 7.65 5.85 5.6 9.63 13 5.43 11.1 7.17 1.32 0.58 2.81 0.58 7.78 3 9.9 8.37 15.2 10.2 8.93 4.81 6.58 5.82 10.9 5.55 2.86 7.38 1.7 2 9.38 6.33 3.25 1 5.74 6.39 2.7 8.29 4.86 0 11.3 8.36 10.6 9.61 4.17 7.01 9.86 7.23 6.57 5.39 5.17 7.98 9.71 7.2 10.4 1 4.73 9.25 5.79 8.76 6.72 6.09 8.73 2.81 2.46 11.1 2 1.58 4.75 7.76 9.58 4.93 6.43 2.17 2.7 5.39 1.32 11.7 1.4 8.98 12.7 9.3 8.25 4.61 9.04 7.83 6.26 1 7.13 2.91 8.41 10.7 12.2 12.9 0.58 11.2 8.93 9.73 10.9 12.3 9.14 7.47 8.63 7.43 1.81 8 9.69 0.58 8.25 7.99 2.91 8.48 9.66 8.04 10 11.2 9.92 2.58 1.32 10.3 1 13.3 7.07 6.31 11.7 13.6 6.64 10.2 10.5 5.38 9.74 10.5 6.23 5.6 9.02 8.05 9.85 7.55 2.81 10.8 10.7 10.9 1.81 11.5 8.88 11.1 8.33 7.19 9.34 0 7.67 7.55 6.58 11.6 7.55 13.5 9.57 10 7.49 12.1 12.2 11.6 9.35 6.58 9.66 0.58 1.58 3.25 12.6 3.46 4.91 11.9 10.1 11.2 7.18 9.22 8.35 11.9 11.9 11.3 9.03 11.9 7.9 8.42 11.9 9.94 13 11.8 11.1 13.3 7.32 7.49 10.9 9.85 11.9 3.91 3 6.51 9.94 3.25 5.43 1.29 9.68 6.95 8.7 7.24 8.84 9.96 6.06 3 5.74 0 2 7.58 3.25 5.71 3.64 7.18 9.27 8.01 7.77 0 2.58 5.29 5.95 8.85 4 5.25 6.25 3.39 9.34 5.41 3.39 7.35 5.63 9.43 6.85 2.7 8.04 1 4.55 8.43 13.3 5.91 6.29 5.81 10.4 7.02 7.85 6.57 0 4.56 4.55 6.5 8.21 6.8 6.71 0.58 0.58 1 0.58 7.1 6.97 7.15 5.44 8.02 8.71 3.86 6.41 2.46 4.39 0.58 4.88 3.39 1 6 8.53 2.32 1.58 9.8 6.51 8.11 0 3.81 12.8 2.41 0 7.9 5.63 10.8 6.89 0 7.71 2.17 5.15 4.58 7.44 3.75 1 6.54 12.8 4.93 3 5.15 1.58 7.08 7.46 9.14 7.54 8.17 12.1 4.95 0 4.55 11.6 11.1 0 2.17 1.58 7.76 5.21 0.58 6.22 10.2 5.75 7.22 3.64 9.47 1.81 7.98 9.55 8.99 4.21 13 9.69 6.67 8.22 1.32 1.58 0.58 11.4 0 2.32 9.72 7.97 2 11.7 4.61 1.81 6.72 3.52 5.3 2.17 10.4 9.84 9.58 10.8 10.3 12.3 11.8 10.4 8.03 10.8 5.48 11.6 11.9 10.6 1.81 4.32 15.4 8.05 6.52 7.85 6.55 2.58 13.2 7.08 4.52 11.8 1.32 8.14 6.92 3.86 11.1 0.98 9.4 3.81 0.58 4.32 9.06 4.55 9.01 14.8 9.68 10.3 4.29 1.58 2.58 1 4.17 7.96 8.13 0 2.17 1.58 5.52 3.58 9.22 0.58 4.78 5.81 6.87 5.25 10.1 3.05 2.7 10.1 2.36 7.99 9.45 5.32 1 12.3 1.81 8.46 7.67 5.52 8.62 2.81 2 8.28 1.81 7.17 3.64 3.39 3.09 4.73 5.36 8.44 5.78 5.39 8.75 5.19 1.81 13.4 2.17 7.41 8.73 7.74 8.83 8.26 6.42 6.88 4.67 4.61 2.91 5.79 7.46 0 8.21 3.7 7.18 1 8.58 7.25 2.32 6.79 5.21 8.46 8.78 0.58 8.95 0.58 3.52 7.33 6.91 7.91 8.27 6.63 0.58 9.35 12.1 8.04 6.83 4.61 0 4.36 3.97 7.8 2.7 8.76 2.58 4.21 5.85 5.6 4.91 7.92 7.59 10.7 1.32 12.2 6.5 6.4 9.86 2.46 1.58 2.7 3.64 8.96 8.68 1.81 6.38 1.81 8.87 1.32 6.52 4.88 0 6.38 1.58 5.79 4.17 9.53 9.5 5.87 7.83 0 2.46 7.75 2.17 1.58 1.32 5.36 0 7.63 11.2 10.1 8.04 8.57 9.9 11 5.29 12.6 6.49 13 0 11 0 8.83 10.6 12.5 12.8 5.15 1.58 11.5 11.8 13.1 2 2.91 3.52 12.7 5.34 13 2.32 0.58 10.5 11.7 5.51 9.31 10.2 9.72 7.54 2.17 13.9 11.3 13.4 10.3 6.4 2 7.31 10.5 11.2 11.6 6.22 13.6 14.4 12.8 14.8 8.83 10.7 10.9 0 8 6.83 10.1 1.88 9.43 7.61 12 10 10.8 8.3 9.69 5.81 4.25 7.68 9.4 12 1 6.38 8.24 6.11 9.38 9.74 10.8 4 8.02 1.58 10.3 4.75 3.86 5.95 5.64 11.7 3.32 7.88 4.61 10.8 0.58 8.01 7.78 10.4 11.1 12.5 8 4.52 7 11.3 1.32 0.58 4.29 9.1 6.02 9.17 8.63 9.09 2.81 7.2 7.91 3.23 7.46 6.27 3.52 7.44 1.58 1 5.64 5.44 1.58 7.64 3.09 3.09 8.1 3.91 11.8 6.82 0.58 2.32 9.32 4.16 4.17 0 4.17 7.08 7.7 2.7 5.44 2 7.27 0 6.35 1.58 2.46 6.99 10.9 0.58 7.66 4.25 4.52 4.49 4.6 0 0.58 4.43 4.16 9.57 3.32 5.74 7.61 0 8.99 1.32 4 7.73 3.81 9.58 9.25 2.32 6.83 8.79 10.2 6.39 9.35 10 0 1 1.33 0.58 4.49 8.74 4.86 6.42 10.9 4.21 0 3.32 7.27 10.7 8.28 1 6.56 6.84 9.52 1.58 2.17 8.89 4.29 4.49 8.58 6.94 8.29 0.58 8.61 9.49 13.9 3.25 10.1 10.8 10.3 2.17 8.08 12.3 2.91 6.55 1.58 4.22 11.5 7.23 4.58 8.53 8.39 8.63 10.3 10.1 11.8 2.7 10 6.71 4.43 12 10.6 11.1 11.1 3.21 5.74 1.81 6.62 10.2 6.17 13.1 9.24 3.7 5.44 10.4 5.91 10.2 4.25 13.2 9.75 11.8 14.4 11.3 12.9 11.7 2.81 5.95 5.61 5.82 8.09 10.4 12 9.85 9.5 9.61 10.8 10.3 10.5 8.84 10.7 8.53 10.4 7.25 9.78 9.61 1 8.94 8.91 8.78 9.03 2 3.25 8.21 10.6 10.7 9.89 10.2 11.3 10 8.96 9.31 9.66 10.2 7.13 12.7 6.36 4.46 6.83 10.1 10.1 6.26 3.14 11.6 6.47 0.58 6.96 5.32 3.06 7.55 5.97 1.58 11.9 4.86 1.67 10.7 8.78 5.94 10.3 6.31 9.48 10.8 13.1 10.4 3.09 9.85 11.3 10.3 6.65 11.3 7.34 4.7 0.58 12.2 10.3 11.5 11.2 10.2 10.4 11.6 13.5 2.17 8.11 9.81 6.83 11.3 12.3 11.5 10.9 9.31 7.99 10.5 9.65 10 9.56 4.85 8.83 9.78 8.91 3.09 8.15 7.36 8.16 8.91 8.93 9.43 9.4 10.7 9.75 6.34 3.17 11.4 11.3 9.21 9.51 11.7 9.67 11.3 11.4 10.3 7.41 11.5 10.1 6.32 8.42 9.8 10.2 8.52 11.2 10.7 10.1 10.7 6.2 11.2 10.8 5.61 9.76 13 9.44 2.17 9.21 7.84 8.43 11.7 10.2 5.54 9.13 6.35 7.87 10.5 10.5 10.6 11 5.3 11.4 10.5 11.5 12.2 8.2 7.11 10.1 13.2 9.17 2.32 0.58 8.21 4.81 12.2 12.8 5.48 11.5 4.81 4.91 8.06 7.78 3.25 8.78 7.65 5.52 9.25 3.64 7.55 9.42 1.32 10.4 8.74 10.4 9.7 8.92 3.75 3.95 9.22 5.02 3.39 11.4 9.03 2.81 7.28 9.15 11.2 0.58 7.98 10 11.2 4.81 4.62 5.73 9.45 9.73 2.46 0.58 4.32 2.32 6.26 1 8.8 2.81 4 4.04 9.29 10.3 2.91 6.63 10.2 3.96 7.07 1.89 4.43 6.83 4.7 10.6 6.93 1.32 7.1 2 8.88 6.96 3.52 8.63 1.32 0.58 9.29 10.4 0 8.76 4.61 1.32 2 2 10.4 5.39 0.58 0 7.99 7.15 7.21 6.71 13.2 2.32 6.95 6.35 5.31 5.43 4 5.43 8.02 5.63 4.25 5.66 7.63 5.66 2.17 5.43 5.67 0 5.91 6.08 3.55 0 2.7 0.58 1 0.58 2.32 1 10.5 1.32 7.03 5.83 3.52 8.29 2.91 3 6.88 11.3 1.32 0.58 0.58 0 1.58 2.17 7.05 1.32 1 6.66 4.88 1.58 1.32 11.6 2.58 9.59 8.99 0 7.67 12.4 11.1 9.01 2.17 7.09 6.9 1 9.53 12 7.04 5.66 6.48 9.33 9.37 7.48 5.91 7.88 3.17 8.29 9.21 9.89 4.19 8.77 7.77 11 9.36 9.56 8.01 7.59 2.58 9.67 9.03 9.2 7.91 7.07 4.29 8.89 8.96 7.81 9.08 9.62 8.77 7.93 9.5 11.2 4.52 10.9 5.13 1.32 2.17 11.6 9.76 8.65 10.4 8.78 1 3.91 15 9.02 13.7 10.1 1.32 6.78 13.9 12.2 10.4 12.2 12.6 10.8 8.59 12 11.3 7.89 11 7.34 10.6 12.1 10.8 9.45 10.7 6.17 9.71 8.76 14.3 9.93 9.48 8.31 12.6 5.71 13.7 4.04 5.58 11.5 12.2 11.1 12.6 13.5 12.8 8.49 9.56 6.84 5.21 10.7 6.58 6.31 8.65 14 8.16 9.96 9.64 10 11.6 10.1 11.8 9.89 9.33 9.94 6.24 11 11 10.1 8.91 10.3 9.25 11.4 10.7 10.8 9.21 9.81 10.5 11.7 10.4 9.32 11 10.4 9.49 10.6 10.6 11.2 8.92 11.1 10.1 10.2 10.7 12 9.27 10.1 8.4 13.2 13.8 10.5 10.2 2.09 7.55 7.12 7.06 8.05 2.32 0.58 4.43 4.09 9.25 8.17 8.59 8.81 12.4 11.6 11 15.5 10.8 4.46 9.8 6.51 5.63 10.6 9.1 8.6 9.23 12.8 5.38 11.6 9.17 8.16 8.69 10.8 10.2 9.06 10.2 9.16 8.5 8.23 9.7 9.19 9.62 10.1 0 10.1 9.97 9.84 7.5 1.58 11.2 13.4 9.67 11 10.1 6.45 8.56 6.63 4.43 10.1 4.13 4.17 6.42 12.1 11 12.9 9.17 11 8.11 11.1 9.79 4.95 10.2 13.3 5.7 8.76 10.9 10.6 8.88 11.9 11 11.4 8.69 6.83 2.91 10.9 2.46 9.48 8.82 10 4.61 13.8 2.46 0 13.5 7.18 7.36 2.91 5.74 5.82 11.6 12 10.8 9.08 11.2 8.43 1.58 11.4 6.65 4.49 5.04 13.4 10.3 10.9 0.58 8.48 2.91 9.88 2.17 0.58 6.12 0 7.39 7.35 6.12 5.04 7.64 13.9 9.48 12.8 10 11.3 7.39 10.7 8.61 7.67 8.52 8.23 10.6 7.01 0 9.58 5.65 4.13 8.63 8.71 5.97 9.99 9.32 0 6.37 10.7 8.07 1.81 2 2.7 0.58 13.2 10.3 10.1 12.6 9.94 4.55 11.3 8.36 7.11 2.17 1.81 4.29 5.29 0 0.58 11.2 9.85 13.5 10.5 6.99 8.45 8.01 8.65 1.81 3.39 7.61 9.01 11.5 9.28 8.63 9.1 5.3 5.93 11.1 6.11 10.9 6.65 4.21 6.02 9.63 11 9.3 6.09 5.82 9.91 5.15 3.25 6.29 6.29 6.48 6.25 10.6 14.6 2.32 7.04 12.7 0.58 0 3.39 12.8 9.15 11.9 10.2 11.4 9.48 8.77 6.19 11.2 8.72 10.1 11.3 8.22 9.22 10.4 9.02 12.7 9.96 3.75 10.9 14.4 0.58 5.91 9.44 8.83 11.9 4.42 9.41 9.89 6.48 7.54 9.25 5.73 8.81 4.93 12.2 6.48 4.04 10.6 9.75 9.43 1 5 0 8.39 9.93 11.1 11.8 7.72 10.1 9.09 8.76 1.58 2.8 3.52 12.5 2.46 9.27 10.9 6.31 4.39 2.81 9.22 9.46 9.65 10.7 10.6 12 8.58 7.8 11 12.9 7.1 1.58 13.7 6.33 5.59 3.52 9.11 10.4 10.6 10.8 10.9 11.1 9.15 8.87 8.27 6.75 8 7.17 10.4 8.67 8.87 3.25 8.72 7.73 11.5 8.77 11.8 9.13 7.98 9.03 9.19 9.79 11.1 6.77 8.14 10.3 7.74 9.95 6.74 10.4 10.9 9.56 10.5 10.8 8.68 9.98 4.98 9.48 6.86 10.9 5 7.2 11.1 11.3 9.88 7.54 7.57 10.6 3.7 9.72 9.83 9.21 10.3 9.17 9.18 10.1 8.65 10.9 7.36 9.47 10.2 11 10.5 10 11.2 7.7 9.24 8.44 2.01 6.17 8.37 5.71 8.31 9.47 8.56 11.1 8.56 9.63 9.95 9.13 9.05 10.2 11.4 8.05 8.77 8.32 9.33 10.1 8.53 11.9 10.9 11.2 11.2 8.73 9.94 9.72 11.3 9.3 10.4 9.57 9.31 10.5 7.75 9.07 10.8 10.2 10.5 9.75 1.58 8.38 6.03 7.79 8.25 10.2 10.3 8.46 8.98 8.05 9.23 8.82 12 9.52 11.3 8.22 9.78 7.03 11.9 3.58 10.3 11.4 8.09 9.35 10.8 5.17 8.51 8.4 10.5 8.51 8.21 1.32 10.4 5.58 8.01 7.45 7.37 10.7 9.21 10.4 9.74 9.04 8.59 9.08 9.93 11.3 8.28 10.8 5.3 7.81 9.32 8.99 9.69 9.31 9.84 9.46 9.68 10 8.54 8.11 1.88 2.46 2.81 9.89 11.1 10.2 7.37 6.54 7.93 9.85 10.3 9.43 11.4 0.58 10.2 10.5 7.33 6.92 9.97 8.49 12 10.3 8.98 9.38 7.2 8.09 9.11 7.09 11 9.37 8.39 8.08 10.5 8.32 9.34 10.2 9.48 3.39 4.91 7.02 10.8 10.1 10.8 11.1 8.8 6.48 6.55 9.4 9.88 9.73 12.9 7.65 10.2 10.5 4.81 3.7 9.77 9.07 9.74 9.01 9.89 10.9 8.03 9.3 8.12 6 10.6 8.51 9.93 5.02 9.44 11.9 4.58 9.21 10.2 6.55 6.85 7.85 4.29 7.99 11.7 0.58 9.96 7.23 9.2 10 7.48 10.2 9.41 11.3 11 5.84 11.4 6.85 9.85 7.19 5.93 6.7 11.4 10.9 6.43 9.93 9.85 9.36 10.3 10 9.43 1.58 8.65 0 6.79 8.95 10.2 8.79 8.01 2.17 7.12 11.3 8.72 10.1 1.81 10.9 10.2 7.97 10.8 9.62 8.66 7.7 7.13 7.76 9.93 4.75 7.84 12.8 9.92 9.58 8.34 9.2 7.63 9.01 10.6 9.24 12.2 9.9 10.3 9.73 7.85 8.39 6.92 7.49 9.92 8.33 8.25 7.64 10.3 10.6 5.29 10.5 11.7 10.7 7.32 9.18 9.29 2.17 11.2 9.27 10.8 11 4.49 9.23 7.1 9.19 8.42 4.36 11 8.54 8.11 0.58 11.6 9.6 7.96 10.5 2.46 9.21 8.96 11 11.6 9.14 11.6 9.84 11.8 9.55 8.89 9.17 11.1 10.9 10.9 9.62 10.1 8.82 5.97 8.39 9.28 8.95 11.5 10.6 10.3 8.79 9.5 9.68 9.63 9.98 4.61 8.16 7.65 5.17 10.1 10.3 8.63 9.2 8.44 8.79 9.68 9.53 8.24 8.72 9.16 8.5 11 3.52 0.58 8.81 10.9 6.3 7.51 9.02 10.9 9.49 11.4 10.1 5.36 10.1 11.6 9.65 8.89 2.7 12.2 9.93 10.8 8.35 11.3 10.2 11.2 9.95 10.4 12.9 10.2 11.5 6.34 11 9.93 12.6 8.72 10.1 9.9 8.96 12.7 8.52 4.83 7.61 10.6 11.4 9.85 7.51 11.8 8.95 10.7 8.51 8.51 10.6 11.5 10.3 9.02 9.17 10.6 9.52 10.3 9.57 9.59 8.33 9.34 8.86 11.3 9.35 7.55 9.22 8.84 7.78 8.19 8.04 11.1 8.84 10.4 7.52 11.9 6.78 8.69 7.18 5.19 8.63 9.11 3.81 10.5 9.96 8.82 9.79 8.51 9.7 10.4 12.6 10.3 6.52 9.09 2 12.8 8.6 7.76 8.97 7.71 11 9.3 2.81 10.8 2 8.42 11.2 12.2 8.37 10.9 0 10 8.12 0 3.95 6.81 9.65 2.81 10.8 9.8 9.1 3.09 10.9 8.91 10.5 10.3 11.1 6.78 2.32 8.39 9.17 4.13 9.29 10.8 9.16 11.6 5.34 11.4 12.2 5.71 7.62 4.62 8.51 11.6 8.56 10.5 8.19 8.32 8.91 8.87 7.71 9.15 7.41 9.79 8.6 3.52 0 9.76 4.46 10.9 10.3 9.55 8.97 11.9 12 1 9.86 9.96 10.3 7.69 12.5 3.09 10.7 10.5 14 10.7 6.98 10.5 11.8 3 2.46 11.6 8.33 8.65 10.6 12.7 10.3 8.53 9.48 5.86 11.1 6.33 12 2.17 13.6 2.58 8.98 10.3 7.67 9.09 10.5 10.4 2.32 8.8 8.95 11.5 8.01 10.3 11.4 11.3 8.42 8.28 11.1 7.6 9.35 10.2 8.29 7.46 12.2 10.6 10.7 8.7 10.5 8.24 9.78 8.72 7.24 5.02 11.5 11.6 10.6 10.1 10.2 9.01 0 8.14 8.76 11.2 10.1 10.7 9.3 4.78 14.7 9.12 11.3 0 7.69 7.08 9.39 11.9 11.1 10.4 9.64 11.5 6.92 10.7 12 8.28 9.56 10.6 6.17 7.01 5.23 9.44 7.78 5.54 3.17 8.74 11 0 9.68 8.06 9.91 9.53 10.8 8.71 13.4 3.52 9.14 9.5 7.4 4.67 6.84 2.32 9.94 13.8 10.2 8.95 11.7 11.2 4.46 11.6 9.62 11.3 11.5 10.1 11.8 11.2 11.3 5.09 10.2 4.17 11.3 4.32 11.8 7.47 8.28 1.76 3.75 12 10.9 8.38 10.5 10.1 8.14 7.5 8.65 5.19 3.25 3 1 9.97 11.5 5.23 4.98 4.67 4.91 10.8 1 9.96 6.91 10.3 5.29 11.4 5.63 9.01 8.36 9.06 8.41 8.19 10.3 8.84 8.19 8.79 9.18 10.6 8.28 9.29 10.1 10.4 3.86 5.66 6.41 7.58 7.71 1.81 8.87 5.15 6.07 7.71 6.71 6.41 6.98 4.68 10.6 10 10.8 3.58 9.87 7.18 7.37 3.2 6.73 2.64 8.96 8.31 6.51 8.21 9.34 10.6 11.5 12.2 10.1 2.81 5.38 4.32 8.76 8.78 9.44 11 10.5 6.63 4.61 10.1 8.58 12.7 11.1 10.8 4.39 3.58 9.47 8.44 8.37 11.4 7.39 8.2 9.52 9.82 3.39 6.85 10.3 9.49 10 9.37 9.96 12 10.1 4.61 10.5 10 3.39 5.41 11.6 9.18 8.98 10.3 0 8.47 5.39 4.39 9.9 7.29 6.34 10.1 9.94 10.8 10.2 8.56 8.79 2.58 1.32 12.2 7.88 11.2 10.4 8.53 9.16 7.6 1.58 10.1 9.02 10 11.1 6.74 10.3 10.2 8.99 9.85 9.88 7.9 10.8 7.9 9.95 10.3 10.2 7.18 9.9 9.08 8.94 9.15 10.9 9.29 6.43 11.1 8.86 7.48 9.43 6.92 2.91 8.03 6.18 10.1 9.58 8.06 9.51 6.06 4.81 9.3 7.88 7.59 9.73 4.61 8.94 9.56 9.18 7.92 9.07 9.36 8.75 10.9 8.91 10.8 8.27 9.82 9.63 8.54 9.58 7.75 9.91 7.9 7.12 5.38 11.6 9.88 4.86 7.89 10.1 7.71 8.86 10.7 12.2 10.5 3.46 10.7 10.4 9.65 9.14 6.86 9.71 10 9.46 10.3 10.4 8.49 5.46 7.3 7.2 12.7 9.86 3.09 9.53 9.44 10.8 9.47 10 4.43 10.8 9.79 7.57 11.1 8.7 9.5 10.4 10.2 7.68 10.3 9.81 8.37 10.1 9.17 4.86 4.17 10.2 2.58 12.1 10.1 1.58 9.05 8.99 8.88 2.32 9.62 2.58 10.5 3.17 7.32 1.58 9.28 6.27 8.82 12.2 3.81 4.36 9.7 10.2 2.17 10.2 9.21 12.1 10.1 8.04 7.81 10.2 13.6 9.66 7.97 11.5 7.58 8.43 5.57 9.33 8.9 10.7 9.4 9.02 7.76 8.22 8.03 9.21 7.68 10.2 9.48 8.74 10.4 8.37 8.33 11.2 9.18 8.47 9.09 7.07 9.8 6.57 8.38 6.22 8.4 8.49 9.26 4.29 3.7 10.5 8.5 9.18 10.3 7.47 8.71 8.51 10.1 10.7 12.1 8.4 9.79 8.43 7.97 8.58 9.19 9.3 9.2 9.49 3.58 9.84 8.78 9.51 10.7 10.8 8.27 7.37 9.22 9.63 11.3 8.79 8.95 10.3 9.37 7.02 11.3 5.44 9.86 8.6 8.48 8.23 10.2 9.26 10.3 8.11 10.8 7.85 9.11 10.7 11 9.04 9.26 9.22 12.8 8.08 9.5 2.91 7.78 7.86 4.78 8.47 10.7 7.74 8.99 10.4 10.3 8.31 11.1 9.5 10.6 11 9.84 11.9 10 8.03 11.1 8.01 7.29 8.23 11 10 11.7 9.53 9.38 8.97 9.58 7.68 4.39 9.62 8.47 9.2 2.32 9.76 9.58 10.3 11.3 7.5 8.58 3.81 9.55 9.62 10.5 9.16 9.96 8.38 7.61 8.89 6.5 8.38 7.5 8.47 6.21 11.7 8.11 9.37 6.74 9.48 6.84 9.53 0.58 9.3 7.76 7.59 7.88 11.1 10.6 8.31 9.51 9.98 9.81 0 7.04 7.41 7.15 10.6 6.54 9.01 5.11 8.94 0 10.1 11.9 8.4 8.01 11.3 7.83 6.34 10.9 10.7 5.74 11.4 12.4 12.1 6.69 9.67 8.73 10.5 9.01 7.69 9.52 7.79 9.67 12.2 8.7 10.4 7.26 8.22 6.64 9.51 8.79 4.7 9.96 4.52 1.32 10.4 8.1 10.3 5.79 3.52 8.68 8.68 10.3 10.6 9.09 6.98 7.23 9.69 5.15 11 9.32 8.46 11 9.25 11.3 9.42 8.64 8.18 10.3 9.44 9.12 7.47 6.75 4.29 9.47 4.21 4.21 4.78 8.25 2.17 9.22 5.55 11.6 7.48 6.92 8.05 9.85 7.09 9.56 10.3 7.21 9.41 9.89 10.2 8.44 7.75 4.73 9.62 7.43 8 8.43 9.41 7.7 8.45 10.9 4.43 9.78 8.71 10.1 9.03 8.92 8.06 4.91 10.8 9.72 10.2 7.57 10.6 8.12 8.24 10.3 8.54 10.5 7.99 10.1 2.32 9.12 10 8.61 9.12 2.7 8.63 8.86 8.49 7.89 4.13 0.58 9.25 10.9 8.66 8.92 9.64 10.3 8.01 9.73 10.3 9.65 9.4 11.5 4.67 8.5 9.26 10.2 8.73 9.77 9.69 10.3 9.87 11 11.2 9.89 8.62 9.22 6.69 9.77 9.75 9.38 8.43 8.99 9.53 9.7 3.91 6.25 9.63 8.67 7.92 13.4 7.38 8.67 10.6 9.3 4.93 9.93 10.1 8.55 10.5 4.39 10.8 7.26 10.5 7.66 4.29 10 10.5 10.3 7.44 3.09 9.15 10.3 9.8 8.12 10 9.81 9.19 10.7 7.64 11.2 4.04 10.2 7.73 9.06 7.22 9.63 9.64 7.61 9.21 9.56 6.37 4.25 8.82 7.09 7.41 10.1 10.8 9.34 5.83 8.57 7.85 9.38 2.58 9.51 10.3 9.84 7.67 9.76 11.9 9.84 7.81 3.09 9.93 8.81 6.6 8.48 10.2 10.2 9.8 11 8.96 9.03 9.07 8.91 11 9.24 8.51 1.32 8.36 7.5 8.53 10.3 2.46 8.55 10.2 11 9.43 10.2 5.51 10.2 10 9.67 7.43 9.24 8.4 10.1 8.67 8.14 3.64 6.19 9.35 7.02 8.88 1.58 9.37 12.3 1 9.41 8.45 9.78 11 7.45 8.63 7.37 6.25 8.89 8.52 9.65 0 10.3 9.91 1 8.25 6.89 9.91 10.9 10.2 10.3 10.8 8.68 8.47 8.61 5.37 9.08 8.04 8.56 9.73 9.3 4.95 8.77 7.81 10.5 8.35 9.75 9.42 6.9 5.74 7.16 8.39 7.86 9.42 10.2 10.8 4.43 5.36 8.2 10.4 10.5 7.73 10.3 10.2 10.2 8.6 5.97 6.8 9.48 10.1 0.58 4.39 8.97 12.2 9.02 6.64 9.08 6.47 10.9 9.18 10.1 9.56 11.4 10.6 8.14 10.3 5.75 7.88 11.9 11.2 7.18 7.85 4 7.3 8.9 6.04 4.7 1.32 0 8.16 3.64 8.08 9.21 7.23 1 8.77 10.8 8.81 10.4 10 11.1 7.55 3.7 10 9.25 11.5 10.9 7.95 11.1 0.58 10.7 9.84 9.81 4.25 7.29 4.73 7.27 6.55 8.45 1.81 9.13 6.94 5.75 9.66 10.1 6.93 2 1.81 9.41 9.1 4.83 8.66 9.42 3.25 2.81 7.43 7.87 8.31 9.48 8.24 8.59 7.12 4.04 11.3 7.34 10.7 9.14 11.7 3.7 9.34 9.68 7.56 6.06 10.7 10.5 8.39 10.7 7.7 10.2 9.33 6.99 6.95 8.68 9.24 9.54 10.1 10.1 9.35 10.5 6.89 8.07 10.9 12 4.81 9.26 8.62 8.55 7.62 6.58 10.6 9.73 9.15 8.19 10.1 10.3 10.3 9.67 10.8 8.13 11.1 5.48 11.4 8 9.06 8.03 6.92 8.14 11.3 8.7 10.9 6.51 11.1 8.84 9.32 8.93 8.91 8.25 10.6 9.73 8.73 10.8 9.78 10.2 8.39 9.42 7.24 10.2 11.4 10.6 10.2 7.99 8 9.5 11 10.5 6.91 9.64 10.7 8.97 10.7 8.22 8.37 10.2 9.2 7.71 10.7 10.2 12.4 7.93 8.52 10.7 6.8 10.7 8.18 9.59 4.17 9.14 9.84 9.88 2.81 11.2 7.12 10.6 9.85 8.54 8.95 7.64 10.6 8.89 10.3 8.13 10.3 9.32 3.32 7.29 10.7 8.92 9.99 9.77 8.74 10.5 6.13 7.04 9.24 10.1 10 7.28 9.73 11.7 10.3 7.66 5.67 9.32 10.5 11.7 10.8 10.1 11.4 9.35 10.9 9.62 8.77 10.1 9.9 11.9 10.9 8.36 9.25 9.15 11.6 7.42 11.9 9.94 7.95 8.85 9.03 9.58 8.41 9.87 10.1 7.5 9.67 9.27 9.99 10.4 9.4 8.95 7.29 9.47 6.79 10.1 9.16 9 7.64 7.54 7.29 9.66 7.48 9.22 8.68 9.6 9.51 6.33 7.38 9.56 8.57 6.17 8.98 8.53 8.34 8.54 9.62 6.33 7.77 1.81 9.4 9.86 4.93 9.56 6.54 5.52 9.84 11.1 7.21 7.75 8.67 0 7.38 9.62 9.53 3.25 10.5 9.84 4.55 9.47 9.33 6.61 10 10.2 8.33 9.71 9.22 11.6 10.5 7.28 9.4 8.77 10.4 5.73 9.91 5.27 9.03 11.2 8.86 9.28 8.37 10.8 7.97 10.2 10 2.52 10.9 7.01 10.2 7.97 10.8 3.52 10.2 9.77 10.2 10.7 9.02 5.21 7.99 8.34 10.3 9.7 8.12 7.42 7.95 11.2 8.4 7.12 0 12.9 10.4 8.75 9.53 2.32 10.5 9.46 8.87 6.33 10.4 10.7 11.4 6.45 10.5 7.95 12.8 9.03 10.7 9.68 7.84 10.4 6.42 12.8 8.62 4.95 9.07 2.58 10.2 2.17 11.5 10.1 7.39 6.47 9.92 11.7 6.36 2.46 10.2 10.3 11 10.8 11.5 10.1 7.12 9.66 8.96 8.03 8.6 7.99 0 6.81 0 10.7 10.1 9.85 5.49 10.7 9.6 10.2 11.4 9.91 10.4 10.9 4.04 7.94 8.32 8.58 9.5 2.58 2.17 6.37 8.31 4.88 5.26 4.04 9.19 5.23 3 3.95 4.36 4.32 4.58 10.9 3.95 3.52 3.7 4.78 4.75 10.6 0.58 5.79 8.75 5.7 5.52 4.39 6.97 7.31 5.58 6 8.9 4.17 5.71 4.83 5.86 1.32 7.7 9.15 3.52 0.58 2.7 4.43 11.7 9.21 8.04 9.46 3.09 8.58 9.46 1.58 5.69 6.29 7.96 11 1 6.34 10.7 4.43 9.99 9.58 5.93 10.4 10.1 4.91 10.9 10.7 8.13 8.49 8.39 11.2 6.99 9.77 5.23 4.09 8.98 8.93 10.3 9.43 9.22 9.34 7.65 7.92 11.6 5.02 3 9.79 9.74 5.29 9.17 3.17 6.25 11.9 7.36 11 6.48 0 14.5 6.84 7.05 5.99 10.5 7.94 8.38 10.9 8.66 9.91 7.67 11 9.72 9.59 11.2 8.74 7.96 2.81 2.17 2.81 4.7 7.91 0 10.2 4.98 10.9 9.8 15.3 9.49 2.32 9.86 9.82 11.2 10.2 11 7.84 8.4 10.8 10.3 11.5 9.42 9.95 8 3.52 11.1 11.1 12.1 10.8 11.4 10.6 13.1 11.5 7.39 9.26 10.5 11.2 6.82 10.4 9.06 2.46 11.1 9.82 8.61 9.18 10.2 10.2 6.23 9.09 10.8 11.6 6.14 8.68 8.3 9.68 10 6.99 8.99 11.9 8.56 9.68 7.29 7.63 11.5 9.46 11.1 9.55 11.3 9.01 7.98 12.8 6.88 10.7 9.15 9.77 8.55 9.5 11.1 9.15 8.23 10.1 8.74 9.69 11 10.1 10.8 7.55 4.17 9.66 9.07 11 4.75 9.41 3.17 9.25 7.73 10.8 7.7 9.06 4.17 5.19 9.27 8.14 4.36 9.45 10.1 6.8 8.48 9.4 10.6 11.2 8.65 10.8 11.3 9.72 10.2 10.6 9.57 8.47 1 8.88 7.92 7.72 11.4 9.01 10.4 2.32 10.3 9.7 10.4 11 9.3 8.53 2.81 8.82 8.33 9.53 11.3 10.3 9.92 11 9.46 3.32 10.4 10.1 2.7 11.5 11.2 12.3 7.84 8.96 8.44 9.23 11.4 3.86 11.1 8.35 10 0.58 7.34 8.55 10.1 11.2 3.09 7.87 8.67 10.2 2 8.43 8.94 9.74 9.88 11.3 5.33 8.71 6.93 10.4 7.9 10.1 9.72 8.03 4.29 9.25 9.95 11.2 11 10.9 7.76 11.6 6.23 11.5 11.2 12.4 8.12 9.09 8.25 10.8 8.97 10.1 6.66 11.6 9.96 8.06 8.53 2.32 9.68 8.33 10 7.33 6.39 7.09 10.6 10.1 9.07 11.4 8.67 11.4 10.9 9.53 7.84 10.8 9.71 9.42 9.75 9.19 10.2 7.53 10.3 11.1 11.1 2.58 7.89 7.21 8.96 9.16 11.8 8.25 8.04 11.3 9.19 7.8 6.28 8.17 13.1 9.5 9.57 8.77 8.88 11.9 11 9.92 9.39 10.8 8.63 10.2 5.41 5.17 13.2 11.3 10.8 1.81 6.92 9.62 10.6 7.02 3.75 7.17 9.39 11.3 7.82 7.68 9.2 8.48 4.09 7.81 2.17 9.08 7.06 3.7 7.09 11.7 9.5 7.14 5.61 5.87 7.8 8.47 2 1.81 10.3 9.1 0 7.46 8.97 8.42 8.36 10.4 5.09 10.8 3.86 9.87 8.95 8.4 6.99 6.19 9.48 10.5 10.8 8.97 2.58 2.91 3.7 4.49 10.1 9.35 7.51 9.67 1.32 11.1 9.11 9.46 6.57 5.58 7.73 10.3 4.64 5.24 11.6 10.2 4.29 10.1 7.15 7.5 9.96 3.7 9.49 8.41 10.7 9.72 8.52 5.46 8.85 11.3 9.35 7.76 10.9 10.6 6.53 4.17 9.72 3.58 10.9 2 3.61 5.77 9.28 8.92 11.1 8.79 8.09 9.47 10.7 8.91 9.51 8.61 11.7 6.98 9.68 8.77 10.7 2.1 8.69 4.73 0.58 8.71 10.3 6.4 11.1 11 10.7 11.8 5.79 5.52 8.09 8.61 12.1 3.91 8.74 9.99 8.43 8.09 6.98 6.43 8.37 7.8 9.73 10.8 0 8.44 10.2 6.99 9.71 11.6 8.28 11 5.07 9.04 4.46 8.1 9.35 4.81 15 8.85 3.25 10.3 4.36 5.11 4.04 6.26 2.17 10.2 9.24 1 10.8 10.4 9.62 10 8.62 10.8 9.91 9.63 7.28 9.04 4.73 3.25 8.88 10.3 6.03 9.13 10.1 5.13 8.76 10.2 9.66 11 9.58 6.79 9.75 0.58 7.71 9.42 11 9.17 8.92 4.78 7.86 2.58 12.8 9.74 8.36 11 9.88 6.63 9.17 10.4 10.7 9.14 10.1 11.5 9.94 7.79 3.91 6.92 11.4 6.21 10.3 10.6 10.5 10.4 10.3 8.67 10.4 8.57 9.2 8.75 11.1 7.81 9.04 8.19 12.3 10.6 5.97 6.47 9.25 6.11 8.86 4.64 8.81 6.85 4.75 9.69 9.64 9.44 6.68 10.2 5.85 3.25 10.5 9.38 9.5 9.1 10 6.45 9.64 8.07 9.91 9.38 4.98 8.38 4.13 10.3 5.77 7.77 0 6.69 11.3 8.18 6.75 9.07 10.8 7.41 3.46 4 5.77 1.58 9.84 7.71 7.03 10 8.5 9.29 6.29 8.63 9.16 8.96 9.73 9.6 9.43 9.99 5.32 9.74 10.6 12 9.25 10.5 10.2 1 7.55 7.41 9.14 9.46 2 9.59 0.58 6.56 7.78 6.86 10.8 9.57 5.62 2.91 10.5 8.34 11.3 6.95 9.98 13.4 9.91 8.61 10.3 11.5 9.27 5.21 8.56 1.58 6.16 8.88 5.04 7.29 8.3 3.58 10.9 9.06 8.29 10.4 8.07 11.5 11.2 8.45 11.9 11.6 10.3 9.05 6.91 9.75 10 10.4 9.57 8.11 9.94 11.8 8.7 10.2 11.1 11.9 9.54 11 9.53 3.58 10.8 9.39 6.58 10.3 10.7 10.2 9.09 4.25 10.3 9.92 10.1 9.19 10.8 9.98 8.26 6.21 8.04 6.77 5.25 9.27 8.96 7.46 8.21 4.52 11.1 11.3 10.4 8.83 2.17 9.07 8.97 12.1 11 10.4 9.58 9.99 6.09 1.81 10.5 0.58 0 12.7 7.88 10.1 11.8 10.3 9.87 4.88 7.44 7.19 10.1 10.4 12.5 10.3 12.2 8.07 10.4 8.2 4.83 8.86 10 8.12 11.3 12.4 9.27 7.02 7.72 8.99 12.7 11.4 12 7.99 7.16 5.21 5.27 7.33 6.73 10.8 5.7 10.3 11.8 10.2 12.9 10.7 13.1 10.4 11.4 11.7 10.2 11.2 7.22 9.27 10.1 10.5 9.38 2 9.56 6.42 10.2 10.6 7.63 9.86 7.96 10.1 6.58 7.76 6.74 10.1 8.68 6.26 10.1 6.37 10.2 9.9 9.92 11.8 10.6 8.73 10 10.3 9.81 11.3 9.45 7.17 2 10.2 9.71 10.2 0.58 6.68 9.09 9.73 0.58 8.9 7.79 9.37 12.3 2.17 8.43 11.4 10.3 10.1 8.9 10.8 3.09 3.9 0 13.4 7.12 6.38 3 13.1 11.5 1.81 6.47 8.97 3.75 9.74 9.27 5.44 5.88 10.8 8.63 6.22 11.9 10.1 8.03 5.34 11.8 9.31 9.59 8.93 8.85 8.65 8.83 8.97 10.8 0 9.17 9.87 5.71 6.36 2.17 9.79 6.47 8.6 9.02 9.91 16.5 7.94 9.13 5.39 8.66 1 0 10.3 1.32 9.17 8.42 9.04 1.58 9.95 4.09 10.9 11.6 10.2 9.15 10.7 3.86 2.46 7.78 10.7 1 7.85 7.16 8.91 6.53 7.52 10.2 1 9.76 2.58 0 8.99 12.2 6.01 10.4 9.41 10.3 0 9.08 7.99 11.5 7.37 9.86 7.12 9 9.09 8.83 0.58 9.85 10.1 11.4 8.7 11 8.69 10.7 9.89 11.8 8.88 8.48 11 10.5 0.58 8.45 10.6 6.01 6.84 8.85 3.91 10.3 11.1 1.32 4.09 4.9 8.62 1.32 10.9 10.2 9.58 10.5 7.87 10.3 4 10.3 10.2 5.36 7.84 1.58 7.18 5.38 7.47 8.5 7.52 0 10.7 9.63 7.59 9.77 15.8 15.1 14.6 13.9 11.2 11 14.4 6.11 15.5 11.3 13.8 14.1 14.1 14.5 14.3 12.8 14.7 11.3 14.4 1.32 13.1 12.1 9.53 13.3 13.8 13.6 14.1 13.9 14.4 13.7 13.8 14.1 12.9 13.9 10.8 13.7 14 12.4 8.59 8.94 14.3 7.45 15.6 14.9 13.8 11 10.1 12.8 13.7 14.4 15 12.7 14.6 1.82 2.58 3.39 5.38 8.24 14.1 1 2.17 15.3 10.7 9.58 11.4 9 9.8 13.2 14.4 14.4 12.7 15.1 14 12.9 14.1 12.6 13.6 14.1 13.4 10.7 14.9 14.5 14.2 13.4 13.9 14.3 12.8 9.14 9.6 13.1 9.18 12.5 6.22 9.54 12.9 10.4 10.5 10.8 10.7 0 7.1 10.5 10.5 7.65 7.41 10.6 9.7 10.5 2.32 4.83 3.64 6.27 3.17 11.8 6.5 10.3 9.97 0 13.9 6.3 8.14 11.9 12.6 0.58 8.62 5.32 10.4 11.1 10.4 11.3 8.04 7.43 6.36 11.5 10 9.86 12.3 8.98 10.9 11.3 10.6 10.2 5.44 9.71 10.3 8.97 13.1 4.8 7.76 8.44 6.25 3.25 4.36 5.38 2 13.3 6.23 4.95 4.91 6.21 12 3.64 2.81 11.5 9.34 11.2 5.09 3 8.56 5.94 4.88 1.32 5.98 8.3 3.58 6.24 7.75 8.75 5.17 2.46 7.44 10 1.58 4.55 7.19 6.23 5.41 9.77 9.09 12.9 6.29 4.09 9.89 11.6 11.8 10.1 9.63 10.3 3.17 9.06 9.47 11.4 9.79 9.46 9.89 8.6 5.02 8.02 8.39 6.71 9.45 10.5 9.66 10.4 8.23 7.58 10.7 9.99 1.81 8.2 10.1 9.47 10.9 6.79 8.54 3.25 0.67 9.02 7.61 7.48 8.3 6.89 8.24 4.39 10.2 8.04 8.06 8.85 6.94 11.2 6.83 10.2 2.32 10.1 4.93 7.73 8.14 7.27 7.89 1.81 11.3 6.43 7.82 6.73 7.59 7.87 10.5 8.06 9.41 3 13 3 3.32 9.82 8.81 4.78 5.32 8.3 11.5 8.48 11.9 9.11 6.01 6.15 6.1 6.47 12 6.12 6.58 7.3 5.44 7.55 6.7 10.2 9.24 12.2 9.1 10 11.3 7.55 8.37 8.7 7.03 11.4 5.01 5.66 9.5 1 9.79 5.57 8.21 2.32 8.46 0 11.2 8.97 3.52 7.86 7.01 7.39 11.9 9.2 9.61 10.4 5.51 10.1 5.21 7.36 5.67 6.62 3.91 9.81 13.2 0 8.47 6.12 10 9.57 12.8 10.4 8.84 8.95 8.3 8.75 4.86 5.73 10.2 9.88 9.23 9.73 2 10.1 7.97 8.02 10.4 0.58 0 9.19 8.02 12.4 2.81 11.9 12.7 3.95 8.85 5.61 7.79 8.3 6.85 9.34 7.82 8.23 11 2.32 4.75 2.17 3.81 11 4.13 0.58 11.9 10.9 8.77 10.6 11.2 8.45 7.82 11 7.41 6 10.1 10.4 9.54 9.9 7.12 9.25 6.48 6.35 0 4.86 5.63 11.6 8.92 9.35 7.02 8.59 7.52 1 1 9.77 7.96 8.52 4 0.58 9.29 7.1 5.07 7.4 4.9 4.49 7.36 2.17 1.58 6.79 8.4 2.7 10.2 9.25 5.36 7.29 8.65 6.6 8.81 4.21 4.21 8.19 1.32 9.21 9.53 8.72 6.19 5.41 2 3.32 8.25 5.32 9.88 9.48 5.89 9.43 7.31 9.43 11.3 8.72 10.6 8.7 8.67 9.76 10.2 9.49 9.03 10.2 8.81 4.32 8.57 0 0.58 3.32 5.92 3.75 3.39 9.73 3.39 8.84 1.32 9.46 2.32 8.07 9.12 0.58 10.9 0.58 5.89 0 7.8 8.57 4.17 1.32 10.6 8.56 0.58 7.19 2.17 10.4 9.46 6.76 0.58 4.65 0 1 11 4.32 5.36 4.22 4.78 0 3.46 4.49 5.77 1.58 3.09 7.23 7.54 9.95 0.58 9.24 1.32 2 1.81 9.82 1 7.3 4.17 11.3 2.32 10.2 4.29 5.25 8.59 0.58 0 8.56 10.3 9.7 5.71 9.88 4.36 7.34 2.46 1 5.69 1.32 9.22 7.21 6.77 6.29 9.15 10.4 12.4 6.71 3.79 8.03 12.1 3.7 1.81 9.89 9.22 9.07 10.2 9.21 7.93 9.32 4.98 7.6 10.8 10.2 9.15 11.8 9.2 9.62 6.55 10 10.8 8.41 8.04 10.1 9.39 10 11 10.4 8.34 8.1 8.96 12.1 8.28 9.63 9.84 10.4 9.78 7.48 9.9 7.37 2.7 9.67 10.9 7.86 7.34 8.18 8.4 8.56 3.86 10.7 13.3 8.86 4.64 10 12.2 2 7.79 8.35 1 9.52 9.76 10.9 9.15 6.33 9.06 8.4 6.69 10.7 5.52 10.2 10.8 9.3 4.32 9.14 9.81 8.62 12.2 11.2 9.12 7.96 7.75 8.05 7.64 9.15 10.8 6.6 0.58 5.3 6.4 8.35 7.99 9.86 4.91 8.06 6.2 8.46 7.73 8.91 8.88 10.1 9.03 7.08 8.07 9.83 8.12 3.32 9.03 7.11 10.9 7.44 7.8 10.1 4.36 9.8 0.58 10 8.94 9.52 9.16 9.89 11.4 8.78 8.83 10.3 8.24 10.1 9.64 9.8 9.62 1.81 7.68 12.2 9.63 9.77 9.31 6.82 9.36 3.32 10.1 8.23 7.12 4.29 4.17 6.13 7.41 10.6 7.96 9.54 3.91 8.29 5.58 6.29 0 5.02 7.01 5.57 9.64 9.84 10.4 8.7 10.5 9.03 9.64 5.77 14.2 13.2 8.61 9.25 10.5 4.61 10.2 9.31 11.7 10.3 12.3 3.32 9.53 5.83 5.46 6.69 12.2 12.1 0.58 11.2 10.6 5.85 5.82 10.2 8.9 11.5 7.55 8.97 8.51 9.52 8.29 9.24 11.1 11.5 10.3 1.58 11 0 0.58 3.46 0.58 6.28 10 6.92 5.15 7.98 1.58 3.09 5.38 5.25 5.04 3.95 5.29 3.32 12.2 8.29 2.7 4.81 3.25 1 1.58 8.14 10.2 9.23 7.37 10.7 4.36 7.45 4.88 8.13 1.81 9.53 6.55 5.13 3.32 1.58 9.6 0.58 5.55 5.64 2.17 6.54 0 10.7 6.58 0 0 4.25 8.51 8.38 4.98 7.03 0 5.6 6.02 6.1 3.8 5.58 8.42 2 3.46 10.1 3.52 3.91 8.86 7.26 3.58 1.32 6.43 0.58 14.1 2.17 7.15 9.32 6.27 5.04 12 9.95 9.72 7.41 3.32 9.44 10.1 10.2 10.8 11.1 5 0 8.15 5.41 8.67 4.78 8.58 11.3 7.63 7.16 8.52 9.84 9.3 12.1 6.76 8.38 10.3 11.2 9.59 7.81 8.94 9.49 10.6 9.22 9.18 7.86 2.32 12.4 7.21 9.57 9.92 10.5 9.54 8.91 10.2 9.34 6.66 4.7 6.59 6.15 10 10.1 11.6 11.3 11.8 6.56 7.89 6.79 11.6 2.04 10.5 8.46 9.61 7.91 8.49 10.7 11 11.6 5.6 7.78 4.91 7.16 8.14 9.29 7.13 8.86 5.19 4.86 10.4 11.8 10.9 9.2 12.1 10.3 9.25 10.3 10.1 11.7 10.8 9.73 10.6 9.72 8.4 6.33 7.81 11.3 10.9 9.92 9.79 8.7 0 11.5 3 11.7 10.6 10 10.8 12 10.6 12.3 10.2 9.9 12.8 9.52 3.32 12.2 4.39 4 9.41 11.6 9.2 11.6 11 7.02 9.65 9.83 10 6.01 14.5 9.43 10.3 7.58 5.89 7.55 1.32 12.9 7.71 9.9 10.9 9.51 8.95 13.1 1.58 6.39 13.5 10.3 11 11.6 8.57 0 10.9 8.4 11.4 12 10.4 11 12.1 11.9 9.07 10.1 6.28 10.5 11.1 12.2 9.23 11.9 9.44 9.71 11.4 10.2 11.5 12 12.1 11.3 11.6 12.1 7.12 4.43 2.46 10.4 10.5 12.3 13.9 3.64 12.6 0.58 12 10.6 12 2.91 9.44 10.4 3.75 0 3.52 0 0.58 2 0 1.78 12.2 2.02 1 0.58 5.48 12.3 12.1 8.16 9.5 2.46 4.61 9.7 7.6 8.92 9.25 9.99 9.82 3.46 4.04 9.33 10.5 3.17 3.58 8.03 7.58 11.5 9.23 9.37 9.44 10.3 9.91 8.91 7.54 9.21 5.54 14.1 7.91 10.1 10.5 11.8 5.57 11.3 9.21 9.51 8.14 12.7 9.3 10.4 7.89 9.57 11 6.28 9.37 9.62 3.32 11.4 5.7 5.27 8.19 11.4 8.98 8.48 7.09 6.95 4.7 10.3 8.8 5.94 8.51 7.5 9.71 9.41 9.59 7.67 13.6 6.96 10.1 11.3 12.8 10.4 9.48 8.9 8.38 6.64 9.08 5.23 0 11.7 13.4 11.7 10.5 12.4 10.1 10.1 11.6 4.39 3 8.05 10.2 8.95 10.7 8.56 8.48 8.06 8.48 3.09 2.32 5.57 8.68 10.9 7.07 8.46 1.81 4.52 7.34 9.52 0 0 10.8 0 10.2 9.99 11.4 10.2 11.6 11.1 10.2 9.27 8.25 11 3.17 11.9 7.47 8.29 11.1 9.78 10.1 7.33 9.1 10.9 5.46 12.3 2 2.91 8.93 9.38 9.64 4.93 10.7 10.2 9.71 5.6 12.2 10.9 8.5 9.92 5.74 2.32 8.6 14.6 9.41 8.09 9.9 2.91 9.82 9.2 2.32 9.59 3.17 9.89 4 9.23 10.1 8.83 10.1 11.1 8.01 9.62 12.9 8.89 3 12.5 8.83 9.6 10.4 9.59 9.15 8.37 5.29 15.7 10.9 1.58 11.9 8.99 9.23 11.5 2.17 11.6 3.39 9.09 12 12.2 8.42 11.1 8.6 7.3 9.91 1.81 10.3 7.07 1 11.9 10.4 10.6 10.2 8.01 9.05 12.7 12.9 12.8 4.78 11.6 10.8 10.1 9.04 13.1 1.58 10 10.2 10.7 8.86 4.25 12.7 11.9 5.46 7.01 6.09 10.6 16.6 11.9 5.02 8.55 11.9 8.5 8.32 9.7 10.2 9.86 7.88 11.6 14.7 10 7.89 6.44 3.46 5.15 10.2 9.05 9.38 9.75 6.61 10.9 10.6 4.78 1.58 1 1 9.62 0 11.8 8.86 12.4 11.6 6.54 2.81 11.6 11.8 8.62 11.8 10.9 9.74 12.8 2.58 7.93 12.1 9.68 11.5 7.18 13.2 13 12 10.8 13 13.7 9.79 10.3 11.3 8.49 15.7 0 12 9.07 9.89 14.9 7.13 9 8.03 9.81 7.3 6.69 11.4 1 12.9 10.8 10.7 5.86 5.17 5.51 1 3.09 5.48 9.37 7.14 5.75 4.21 3.94 11.4 9.1 10.7 3.81 10.4 1.32 9.51 11.2 10.6 9.17 8.46 10.9 11.2 9.84 11 12.1 8.67 4.32 8.18 8.72 5.7 5.49 10.6 6.88 5.38 11.7 6.63 7.49 9.54 6.59 10.4 3 3.17 4.81 5.85 7.61 1.58 8.06 5.18 2.17 7.96 8.19 9.6 3.09 8.77 0 2.7 6.2 12.5 5.97 4.86 2.81 6.43 8.89 7.46 1 9.37 0 5.91 6.93 5.71 3.25 5.23 9.04 7.06 2 13.8 2.46 8.2 0 4.7 4.75 3.75 4.91 8.47 1.32 8.48 2.32 1.32 10.7 5.09 8.93 5.02 4.67 4 5.7 0 1 5.11 6.98 4.61 3.81 1.32 5.54 6.14 0 7.12 4.86 2.81 0.58 7.99 12.1 8.43 4.98 9.66 0.58 3.17 11.4 5.55 5.87 1 8.19 9.93 1.81 0 4.09 10.2 6.65 7.23 2.32 5.17 0 7.17 7.24 3.95 8.51 4.58 8.25 5.86 7.57 9.76 7.07 0 7.99 0 10.9 1.58 12.9 2 13.8 14 12.7 1 8.99 10.3 10.2 9.2 11 12.2 10.6 7.04 10.3 10.5 10.1 11.2 1 11.1 11.8 12 10 10.7 9.34 10.9 11.2 11.6 8.13 9.23 0 1 11.4 4.17 10 3 9.8 7.21 10.7 10.7 9.68 9.21 9.53 11.2 11.1 10.2 10.4 7.09 3.91 11.6 0.58 11.8 12.2 12.1 10.7 11.3 9.06 9.11 9.17 11.1 10.3 1.81 10.3 10.9 7.7 8.59 11.4 12.1 6.15 10.6 9.75 9.63 12.2 13 12.9 10.5 11.5 11 11.2 9.71 7.01 10.3 9.37 12.5 11.8 13.3 8.16 5.45 8.11 4.39 6.08 6.44 8.6 8.64 9.38 2.81 8.54 12.2 11.7 6.66 9.76 12 10.2 10 6.47 9.9 10.2 11.5 11.1 9.99 8.75 0.58 3.75 9.77 8.16 0 4.43 0.58 4.64 9.27 5.41 3.25 1.32 8.35 7.49 3 12.2 1.81 1 2.76 9.62 7.24 9.7 6.53 10.6 5.34 11.8 9.97 6.47 8.41 7.14 7.86 13 6.5 11 10.7 13.3 9.72 13.6 12.1 11.7 14.7 7.64 12.3 11.6 5.34 12.8 8.54 9.43 8.44 6.52 8.69 10.1 8.11 8.86 6.89 12.7 8.46 9.29 7.45 7.7 8.16 7.04 7.5 5.57 6.92 7.13 9.54 10 7.59 10.8 7.99 9.36 5.66 9.03 9.93 9.45 7.65 10.1 8.73 7.56 7.64 8.76 7.68 8.2 5.62 7.22 3.58 2.81 7.69 6.68 9.12 7.8 7.6 8.6 6.15 2.32 9.97 3.95 5.09 6.77 8.86 2.46 8.99 6.08 5.63 4.46 11.5 7.65 1 3.09 1.58 1 4.36 1.81 9.1 9.13 5.49 7.82 7.45 4.64 7.11 6.61 6.34 9.42 5.89 6.18 9.01 8.23 10 2.7 11.8 10.8 9.82 8.73 11.5 4.75 7.54 0 10.3 6.58 10.4 7.95 6.9 3.52 5.41 4.32 7.91 8.16 8.38 7.88 7.32 7.77 8.69 8.44 8.12 9.25 8.44 10.7 8.02 8.43 5.95 8.33 11.7 4.36 8.12 8.46 5.57 5.81 11.6 10.4 7.38 7.88 6.38 8.13 8.22 8.5 7.3 3.32 6.61 7.65 7.99 8.38 2 2.32 5.41 7.08 7.44 5.3 12.1 10.6 10.2 11.8 5.99 11.9 8.06 10.4 3.22 13.6 9.13 11 6.34 6.03 11.6 11.1 9.45 8.81 10.9 9.99 12.6 5.15 5.25 4.55 10.3 10.2 10 8.61 9.14 10.4 9.97 10.5 10.4 11 11.9 12.4 7.85 4.91 9.96 2.91 9.52 9.77 3.58 7 7.91 10.4 9.46 6.74 8.63 1 4.39 10 11 6.54 9.82 10.9 8.76 9.86 8.32 5.36 7.21 9.03 9.62 4.93 9.15 10.4 8.16 8.06 7.62 11.4 9.64 1.32 13.3 9.73 8.37 6.96 8.83 9.79 9.16 9.99 10.1 5.07 9.49 11.6 3.7 10.1 9.64 9.62 11.4 9.49 9.43 5.86 9.94 8.61 10.9 9.33 9.3 6.99 8.46 7.11 11 7.02 8.2 10.1 7.27 9.84 9.74 11.1 9.65 9.87 9.28 6.26 9.32 8.99 7.43 4.49 6.87 10.1 8.89 9.92 9.83 9.59 10.1 10.8 11.5 6.02 7.25 9.07 7.77 11 10.8 6.26 9.97 10.9 12.3 9.38 9.33 6 6.65 9.58 8.84 5.9 8.29 9.59 6.83 8.63 11.4 8.09 12.9 7.8 7.29 0.58 4.79 7.97 12.1 10.6 10.9 7.28 5.86 9.38 7.72 7.93 8.21 7.61 8.06 11.6 9.45 9.66 3.09 11.2 12.5 6.03 10.6 11.8 9.52 7.68 6.97 2.68 9.87 0.58 10.1 1.32 9.99 5.55 10 7.69 6.64 1.58 3.09 7.65 5.69 1 6.95 7.02 4.17 4.17 8.34 9.84 8.36 8.32 6.25 10.1 7.15 9.97 6.45 1.32 4.64 2 9.66 8.78 6.89 4 9.12 12.2 8.47 6.88 8.47 9.71 11.6 8.05 7.94 9.7 11.9 9.99 9.38 9.15 9.2 9.6 8.95 6.21 8.8 10.9 6.48 9.14 8.56 3.25 6.71 5.19 8.22 7.99 7.97 5.39 8.64 8.7 2 9.37 5.64 5.25 5.57 7.41 7.56 5.91 9.08 3.17 8.42 7.83 5.74 8.21 8.43 8.06 8.89 7.74 8.67 8.63 1 9.15 10.6 7.71 6.04 9.5 9.81 9.64 8.05 10.3 3.52 9.66 6.64 5.71 9.08 4.88 7.09 9.69 10 9.31 4.67 8.55 8.1 9.41 8.39 9.55 8.14 2.58 9.04 8.52 9.22 10 9.08 7.28 7.71 9.47 6.13 7.23 9.44 9.46 8.96 8.46 9.26 5.39 8.66 9.43 8.63 7.54 9.44 8.68 7.13 11.7 9.35 11 7.82 5.78 8.32 8.91 10.2 12 10.1 11.2 1 8.24 10.4 6.88 9.52 8.17 7.61 7.9 9.26 7.72 8.76 9.72 7.54 8.81 6.31 1.06 8.18 7.63 6.22 2.58 0.58 9.34 3.46 9.45 9.55 7.97 9.3 6.29 7.32 8.32 7.13 8.96 8.63 10.2 9.98 8.45 9.81 5.85 8.66 6.79 7 9.03 7.05 8.52 3 7.89 4.13 13.6 7.74 4.73 9.91 10.9 9.72 10.4 10.1 9.04 8.16 8.6 6.7 7.72 0.58 9.3 7.25 8.37 8.31 6.85 10.8 9.29 10.6 9.33 7.27 1.81 9.33 8.81 5.27 9.1 2.46 4.7 7.77 6.88 7.17 8.91 8.91 7.81 6.62 9.34 7.26 10.1 5.69 10.2 9.73 5.04 8.99 8.55 3.32 6.42 4.95 3.17 6.84 4.75 6.56 8.19 5.7 10 4.75 2 3.81 7.21 1.58 5.66 5.61 6.48 8.51 5.55 5.07 8.21 8.72 8.4 10.8 4.64 8.03 9.3 6.27 9.67 9.09 9.35 9.13 6.14 8.22 10.2 7.84 6.18 8.65 9.61 11.8 9.87 9.64 4.91 10.6 10.4 9.5 5.13 8.47 8.43 7.15 9.8 10.2 9.39 10.5 8.18 4.32 4.46 7 8.39 7.86 6.66 6.31 8.14 9.9 7.62 0 8.03 6.38 5.19 5.67 6.9 6.48 3.46 11 0.58 9.51 4 5.04 10.3 10.6 1.58 8.41 8.6 5.15 9.06 0.58 8.87 9.34 2.32 11.6 5.25 7.59 7.84 8.55 9.44 6.95 8.55 7.12 7.57 6.84 10.9 3.81 7.72 10.4 8.46 8.5 8.27 11.3 8.58 8.32 6.47 8.13 8.42 1.32 8.52 2.32 12.6 4.13 1.58 8.68 10.4 7.52 8.53 7.21 2.58 8.01 10.3 10.3 8.83 7.5 9.74 10 7.93 9.28 9.53 10.1 9.15 9.47 8.6 8.28 6.58 2.32 1 4.95 7.26 9.77 8 8.47 1.84 4.64 2.32 0.58 8.55 10.4 13.4 3.86 8.99 6.99 9.24 6.7 0.58 9.7 5.62 4.29 4.75 5.27 6.42 9.46 10.8 10.5 9.43 9.73 10.2 10 9.52 8.09 8.46 8.46 9.51 9.09 10.6 5.07 9.94 6.91 8.91 8.73 6.89 9.79 7.17 7.05 9.64 10.5 8.47 7.26 10.4 8.91 9.16 10 9.11 8.03 10.2 10.1 9.69 8.6 9.18 10.4 10.8 10.4 8.13 10.2 9.57 7.63 2.7 11.4 8.85 8.91 9.36 11.9 8.15 8.8 10.3 9.94 3.91 10.9 9.68 10.1 7.34 4.81 8.67 10.2 8.68 0.58 8.68 5.58 6.91 10.3 9.3 8.61 9.73 9.83 4.29 10.4 9.03 4.25 8.42 10.9 9.77 6.18 7.55 9.86 9.6 7.84 9.88 12.1 7.42 8.04 5.88 7.41 8.81 9.03 6.01 5.89 10.3 8.27 6.78 9.88 8.14 9.11 3.7 4.21 11.5 6.53 4.52 11.6 8.16 5.32 7.51 4.86 10.7 7.15 8.66 10.8 9.38 2.81 10.3 4.43 10.1 8.71 4.25 11.7 9.5 12.9 9.34 6.84 9.6 10.5 5.94 9.32 4.04 5.43 9.21 6 5.17 12.3 9.23 11 2.58 11.4 5.41 7.51 4.91 7.87 7.76 8.42 9.14 4.13 6.67 1.58 6.48 8.31 11.4 8.45 7.02 9.55 8.81 8.57 7.6 11.1 6.31 11.2 12.2 9.91 11.9 10.8 12.8 7.81 9.32 8.75 9.15 8.56 6.61 10.7 10.9 10.7 7.99 8.26 1.58 11.9 9.46 10.4 10.6 9.14 10.2 3.96 4.95 6.11 2.09 11.1 9.16 8.81 6.75 11.3 6.71 11.9 15 7.7 0.58 5.79 7.91 5.02 7.51 9.69 6.66 11.1 11.6 14.8 4.17 8.01 1 4.73 1 11.8 12 9.8 6.1 6.58 13.1 11.7 10 9.24 3.81 7.98 2.32 0.58 11.9 4.09 9.09 9.87 8.36 12.7 10.3 5.46 9.99 9.55 8.45 10.7 5.02 10.2 9.91 10.1 6.72 7.96 9.29 9.42 9.63 9.24 10.1 13 3.58 8 7.07 9.39 9.1 11.6 8.13 9.42 5.04 9.73 4.95 6.79 11.2 10.4 10.8 8.34 9.54 9.37 9.28 9.83 10.2 10.5 5.11 0 9.28 12.8 11.6 9.36 8.08 10 7.77 8.72 9.73 3.16 10.4 11.8 10.7 10.7 11.3 9.35 5.88 9.32 9.75 2.17 7.97 8.9 1.81 10.7 8.61 2.81 9.8 6.71 9.77 4.09 6.19 3.58 9.5 10.7 9.9 8.29 9.5 9.25 10.9 6.55 9.3 1.81 9.79 7.31 10.7 10.4 6.47 10 9.44 11.8 9.78 7.75 9.99 11.6 9.33 9.34 1.4 8.66 9.32 5.68 9.64 8.83 8.4 10.2 1.32 7.79 6.43 10.2 9.85 0.58 9.77 10.4 7.61 11 14.1 6.94 9.68 4.75 10.8 8.51 3.86 9.71 8.63 9.91 7.86 12.4 7.28 10.9 11.5 10.4 10.6 11.1 10.9 7.35 13.6 9.8 6.85 9.88 7.22 8.5 9.59 0 8.56 0 11.8 11.8 8.89 4.91 9.47 1 10.9 11.1 11.6 8.52 8.12 12.4 8.26 10.1 13 10.7 9.81 6.96 7.78 12.2 4.93 9.34 9.18 10.1 9.63 9.23 6.47 3.39 9.94 1.58 1.32 0.58 9.49 2.81 7.25 3.39 3.32 7.26 9.15 1.32 1 2.17 5.71 0 0.58 6.71 2.7 10 12.1 10.3 8.17 8.32 5.52 3.7 2.91 10 8.01 1.58 8.47 8.83 7.71 7.57 8.25 3.86 2.46 8.5 7.43 7.85 0.58 7.91 10.3 11.1 8.49 10.2 0.58 4.23 1.81 5.21 3.7 0 7.82 8.01 7.5 8.07 7.17 9.55 8.67 3.09 9.71 2 3.17 0 0 9.68 7.25 4.55 7.82 4.86 6.93 9.15 10.2 0.58 8.84 9.57 10.7 9.83 8.06 0.58 4.73 8.66 11.3 9.1 1.58 8.85 9.59 8.5 9.01 7.24 5.23 0 1 11 1.58 9.88 9.94 8.71 1.32 7.07 9.19 9.16 6.48 9.22 10.4 0 1.32 10.9 8.75 7.14 8.91 7.96 8.5 5.89 9.48 10.4 8.8 6.33 3.91 4.39 8.92 2.32 6.51 10.5 10.3 10.2 5.86 9.45 10 6.35 4.98 8.3 9.58 9.82 8.57 5.04 5.17 1.32 8.08 1.32 0.69 9.49 7.01 8.16 8.91 7.09 6.69 8.41 8.69 8.4 8.25 2.81 3 9 5.02 11 2 1.81 1.32 3.09 2.17 2.46 0.58 2.46 9.39 11.3 10.5 6.56 9.13 10.8 8.03 8.8 9.33 5.43 10.8 9.9 8.59 8.38 6.57 8.79 4.09 8.04 2.17 6 10.5 7.59 7.84 4.21 9.79 11.7 6.59 8.34 8.77 3.64 6.91 8.83 10.7 12.3 10.1 8.4 10.3 10.3 7.27 8.63 11.6 10.2 3.7 7.12 7.08 7.49 5.89 6.58 8 11.3 8.49 3 8.9 9.46 9.82 7.38 4.67 13.3 3.46 5.3 3.52 1.32 5.3 6.91 10.2 10.4 7.41 9.14 6.43 6.39 8.9 9.8 3 9.61 5.54 2.32 8.58 8.22 4 7.39 9.95 9 8.61 7.82 9.86 7.7 8.23 8.54 11.7 8.22 8.25 7.59 6 7.86 7.02 10.3 9.05 12.2 9 8.85 10.6 5.93 10 7.79 10.1 9.38 6.96 12.3 9.99 7.15 9.68 7.22 4.98 4.76 6.73 10.6 7.35 8.72 9.97 10.5 9.88 0 6.85 9.87 10.5 10.1 3.86 8.19 6.47 6.83 2.46 7.89 3.32 8.17 5.45 7.43 4.46 5.34 6.2 4.83 5.58 1 7.82 11.7 11.4 7.61 8.03 1 8.74 9.53 8.65 8.94 10.2 10.9 3.17 10.8 6.79 6.94 6.16 8.48 10.3 8.25 2.58 9 9 7.51 8.53 10.7 6.4 7.95 9.33 8.45 9.39 8.2 9.81 8.39 10.9 9.46 9.89 9.13 7.81 7.13 8.22 4.39 7.7 11.7 9.12 7.18 8.94 7.08 8.89 9.21 7.44 9.6 5.55 8.87 0.58 6.81 10.6 8.99 9.9 7.97 9.43 9.48 8.67 9.86 5.65 6.54 7.27 8.57 9.54 8.75 7.63 9.62 6.03 9.84 9.9 7.36 10.1 6.67 8.29 8.94 9.5 7.64 8.73 8.64 10.4 10.1 9.62 5.93 8.18 5.83 7.26 9.37 0.58 10.4 9.18 10.7 9.21 9.58 8.29 9.55 8.64 9.3 1.58 8.38 10.8 10.1 6.61 10 7.92 9.91 1 10.7 3 9.88 8.77 9.94 8.5 6.89 8.6 5.64 6.29 10.8 8.93 10.1 11.1 6.28 10.4 7.54 6.41 10.7 8.91 8.8 6.64 8.77 7.05 8.78 4.55 8.8 7.84 5.67 3.7 3.09 3.17 9.45 9.17 10.6 9.23 3.25 6.71 11.1 8.53 9.76 8.07 10.5 5.88 3.46 4.04 10.7 7.3 9.78 7.59 8.05 7.56 7.53 9.31 9.15 3.46 10.5 6.17 7.83 9.82 6.83 8.42 8.06 10.1 6.34 8.25 8.3 1 9.68 8.57 9.39 0 8.25 8.36 3.09 10.1 9.48 8.21 9.09 6.99 3.25 9.96 5.25 7.24 5.88 11.8 10.8 10.1 0 2 6.29 10.2 11 5.13 7.49 9.46 11.2 4.55 1.32 0.58 2.17 9.31 8.88 7.12 9.2 11.3 6.93 7.1 0 10 4.21 0 6.28 8.47 10.4 0.58 3 6.1 6.47 1.81 3.86 3.64 10.8 10.2 1.58 3.17 8.21 10.7 3.09 8.52 1.58 10.1 9.86 7.75 6.29 12.2 7.22 10.9 9.76 6.86 0 2.32 10.9 8.84 6.77 8.27 7.45 10.2 7.42 7.52 8.08 5.17 0.58 8 7.89 8.18 13.2 5.73 8.54 7.25 7.51 11.5 10.2 6.18 8.56 5.25 3.64 7.71 9.17 8.66 4.95 4.93 2.81 7.73 10 8.46 7.82 6.72 12 4.09 8.7 6.85 5.27 6.01 9.78 10.2 6.53 8.24 0.58 7.21 9.11 1.58 6.75 4.76 10.2 8.33 7.75 9.66 7.2 7.55 6.72 9.26 6.95 7.31 1.81 7.27 7.49 9.93 9.26 9.11 9.22 9.13 8.94 10.1 10.6 9.03 9.67 0.58 8.38 10.6 10 8.74 10.3 9.5 8.18 9.69 11.8 6.48 9.18 8.71 8.95 7.41 10.4 10 9.68 10.1 3.75 8.06 9.11 10.3 10.2 10.1 10.9 10.7 7.46 6.74 9.37 9.47 8.16 8.11 10.6 9.07 5.67 8.35 7.93 8.49 9.01 9.27 8.25 9.19 7.27 9.77 3 6.92 8.37 2.7 9.2 9.43 7.63 8.29 9.86 9.78 10.9 8.23 4 8.69 9.41 7.34 7.51 7.42 9.92 5.87 7.03 9.18 6.54 8.44 4.39 5.83 4.32 8.45 8.92 9.68 6.65 6.58 10.4 6.91 2.7 5.54 3.09 7.2 9.51 10.1 3.54 5.09 10.4 10.3 9.46 4.93 10.1 4.73 5.02 8.25 1.81 9.34 7.31 8.84 11.8 7.81 7.13 11 9.77 8.2 6.45 9.29 7.95 9.55 8.02 9.09 8.48 12.2 11.4 8.63 6.2 1.81 6.76 4.7 5.43 8.55 9.67 12.4 9.49 3.7 8.85 1 9.22 10.4 6.88 9.79 4.29 3.86 6.86 2.81 6.93 6.37 11.3 9.18 11.8 0.58 8.21 1 0.58 10.1 6.54 9.22 5.98 9.08 8.78 7.73 8.52 8.43 9.57 9.86 3 9.47 8.96 3.7 9.58 9.26 10.9 11 7.69 10.8 9.55 10.7 12.6 9.81 8.97 0.58 7.56 10.8 2.17 11.2 10.6 9.48 7.57 7.76 9.82 9.92 3.91 9.1 7.57 10.9 9.84 9.38 7.07 5.77 11.6 9.33 8.88 7.9 10.3 6.1 9.83 10.6 8.6 8.96 10.5 5.25 3.25 10.3 5.97 2.32 2 8.72 3.39 12.7 4.46 10.4 4.2 3.86 11.3 8.17 8.2 7.53 3.25 9.9 8.31 9.64 11.2 9.08 3.99 11.4 12 10.2 9.69 8.62 10.1 11.8 8.01 11.2 9.87 9.98 8.91 5.1 7 8.74 8.3 11 8.92 6.92 1.81 10.7 9.44 8.17 6.26 10.5 1.32 6.58 11.7 9.59 11.3 10.3 8.27 10.9 5.6 3.39 9.95 5.07 8.94 9.93 9.4 1.58 9.02 7.36 6.57 6.44 4.43 3.7 9.73 12.1 9.73 7.64 5.89 10.4 9.44 4.04 9.97 4.25 8.8 9.08 7.02 9.96 9.61 10.2 10.6 6.18 10.4 12.3 9.47 10.5 8.4 12.8 12.2 9.09 12.4 11.6 11.3 12.6 12.3 11 9.4 6.46 11.1 10.1 7.53 10.6 5.44 7.92 10.7 8.88 8.57 11.3 11.7 6.64 8.69 11.1 12.1 11 9.59 5.02 12.9 1.01 9.76 9.87 10.3 7.17 6.43 6.23 2 12.7 8.38 10.7 7.73 9.72 7.02 11.7 11.7 8.19 9.47 11.2 10.5 8.54 9.32 10.7 10.7 9.37 9.9 8.37 11.6 5.13 9.7 6.88 5.29 1.81 10.3 8.09 10.3 4.61 7.32 0 0 5.63 11.2 10.8 13.9 8.95 12.4 13.5 10.3 11.9 9.14 8.06 9.24 10.6 9.32 11.6 9.17 6.49 7.52 3.64 10.4 5.3 0 3.68 5.17 7.95 9.43 8.02 5.04 9.97 6.23 8.4 9.14 0.58 6.38 11.4 11.3 9.32 10.9 10.1 4.09 6.39 2 2.32 10 9.46 3.25 11.5 10 6.28 9.54 7.4 1 7.23 1.58 11.2 7.6 12.6 10.6 10.3 4.86 7.78 4.32 10.2 8.86 7.15 12.1 9.23 7.14 2 7.04 9.93 11.6 3.7 8.63 9.56 7.69 5.45 12.9 7.52 7.63 9.74 4.61 9.34 14.8 2 7.88 10.3 7.58 7.03 8.9 7.61 8.93 9.92 9.57 10.6 9.9 9.08 2.7 3.81 6.69 13 11.1 10.9 10.2 9.49 10.1 11.6 11 11.4 10.8 9.09 9.5 8.57 9.25 10.7 11.2 11.4 10.2 10.2 10.5 10.5 1 10.1 0.58 12.3 7.7 10.3 9.42 8.36 4.67 10.6 7.65 2.58 9.18 9.43 2.46 10.3 9.43 7.91 10.4 11.2 10.1 2.83 5.88 3.51 9.29 10.5 9.98 7.97 9.38 6.94 7.74 10.3 11.3 8.11 4.64 11.9 9.08 9.55 1.58 2.17 4.04 10.7 1.32 0.58 10.6 8.87 10.8 5.32 3.81 10.4 8.04 6.66 5.07 10.1 10.5 7.61 4.61 3.17 4.04 1 5.3 9.78 7.51 6.87 7.51 11.6 9.44 6.17 5.44 10.3 8.04 8.63 7.7 0 2.58 2.09 1 7.73 5.94 8.42 10.5 6.04 9.28 13.6 10.7 11.3 7.63 0 7.99 10.1 10.2 9.8 10.1 11.3 8.24 9.35 8.74 6.77 3 6.32 9.75 11.2 11.3 2.32 6.15 6.73 8.42 6.94 9.49 9.08 8.95 10.4 9.41 9.4 0.58 10.2 8.89 7.87 6.07 6.4 6.66 8.43 12.1 9.68 8.91 7.44 8.08 8.71 10.9 7 3.09 8.12 11.1 7.91 5.74 3.7 3.25 8.52 10.6 8.87 0 6.35 4.64 4.04 2.32 5.7 11.1 9.04 7.9 9.15 10.3 8.01 0.58 6.68 9.46 9.41 7.37 0.58 6.37 8.86 5.88 11.1 9.01 9.74 8.3 10.1 7.52 7.14 10.7 10.6 8.29 10.5 8.3 8.74 4.7 9.49 9.99 9.55 9.51 13.4 7.56 6.23 6.39 5.48 9.72 3 10.1 9.57 9.36 8.94 2.91 8.72 6.65 11.1 9.6 9.36 4.12 6.58 11.2 9.28 10.1 10.7 5.98 8.35 10.6 7.65 7.99 1.81 2.17 8.14 5.63 10.7 10.7 8.64 8.77 7.56 6.16 6.99 8.82 8.56 5.11 11.4 6.08 5.41 9.26 6.64 10.3 7.19 9.69 10.4 0 7.07 1 12.6 4.78 10.3 8.48 8.85 12.4 4.46 8.98 9.45 7.38 4.61 9.57 10.3 5.25 11.6 9.35 11.5 9.75 7.69 8.44 4.73 9.72 10.5 10.7 9.29 9.13 5.3 9.21 9.26 9 3.17 10.9 5.02 8.53 3.52 8.69 9.47 11.5 11 10.1 10.9 9.59 3.46 10.3 3.91 8.65 8.53 9.19 9.26 3.61 3.52 9.82 8.76 8.98 10.5 4.98 8.26 4.46 9.31 10.6 7.3 6.27 8.15 8.18 4 0.58 5.11 3.17 7.76 6.74 7.81 10.8 12.1 7.5 9.29 10.2 3.09 9.82 9.69 7.61 9.95 9.23 9.12 2.7 9.67 10.9 11.2 10.4 7.16 7.34 3.17 9.75 7.54 9.91 7.67 0 7.06 9.36 9.1 9.65 8.78 10.7 10.5 7.21 7.15 8.83 9.43 9.68 3.64 10.4 7.72 4.93 8.04 12.7 5.43 9.4 6.05 2 9.62 10.9 8.85 9.7 7.81 10.3 5.83 9.53 4.32 8.03 4.78 7.03 7.6 7.69 8.79 10 10.2 8.39 10.5 7.3 8.39 8.48 5.38 9.54 8.59 8.75 0 8.2 8.6 9.41 8.33 1.58 11.9 7.7 10.9 14.2 7.3 9.3 11.6 7.98 6.82 4.52 8.38 6.01 5.19 3.09 6.37 10.7 9.23 6.38 6.04 6.75 1.81 10.5 8.78 7.28 9.26 8.9 8.46 7.41 1.81 10.8 4.73 8.8 8.64 11 9.27 9.17 9.96 8.65 9.3 8.31 7.42 11.3 11.2 6.11 5.67 9.36 3.64 3.17 7.5 9.62 2 8.74 2.58 7.91 9.24 6.86 2.81 7.03 8.73 8.77 6.28 8.47 5.39 7.05 8.29 10.5 10 8.46 8.09 8.28 10.8 9.77 6.03 8.1 7.52 8.71 7.94 9.22 6.35 9.88 6.48 11.9 8.66 9.86 5.83 10.4 9.39 11.4 9.82 11.3 3.64 8.56 11.8 9.02 9.11 11.4 6.7 8.03 5.94 8.69 3.39 0 6.55 5.83 1.58 5.74 6.27 3.46 6.28 11 1.81 10.2 10.5 10.4 9.41 8.5 4.13 7.07 7.93 7.82 10.9 8.83 10.3 2.58 9.57 10.9 9.32 6.41 9.54 9.16 3.75 7.23 10.4 2.46 7.07 9.94 7.44 1 11.1 6.76 6.81 8.95 8.5 9.79 9.95 8.59 7.57 3.81 10.5 8.63 3.66 8.53 9.37 7.99 10.3 10.5 11.4 7.29 8.93 8.72 9.08 7.28 11.2 8.93 9.38 8.9 8.09 5.19 9.15 10.2 10.2 8.55 9.23 9.83 9.56 11.6 9.72 8.58 4.83 10.8 13.2 7.76 5.7 10.6 8.87 4.09 9.67 7.03 9.62 13.3 9.69 6.43 9.59 10.2 7.18 9.15 6.98 7.65 11.2 10.4 4.64 4.55 9.41 8.61 9.54 3.39 6.89 2 2 7.05 9.9 7.72 6.4 3.32 4.61 6.81 11.3 9.46 2.17 9.25 9.45 9.6 6.61 10.9 6.08 3.91 8.72 10.6 9.02 11.2 8.62 11.3 9.18 10.3 9.68 2.32 9.47 8.76 9.08 11 8.87 4.91 9.3 7.53 8.54 7.02 1 11.6 8.97 8.26 10.5 7.91 9.45 10.9 9.32 0.58 11.3 9.51 10.2 6.5 4.25 11.1 13.2 0.58 10 8.12 10.4 6.67 10.3 0.58 7.19 0 8.15 7.04 4.49 7.41 10.1 11.2 6.98 2.17 12.2 7.57 9.57 9.03 3.32 8.26 8.85 6.83 3.19 1.83 10.8 9.64 8.18 10.6 9.31 11.1 9.2 10 9.09 12.1 11.4 3.95 6.3 10.2 2 9.3 0.29 10.9 0 6.25 1 10.7 8.53 10.2 3.52 7.87 8.66 10.8 1 4.61 4.61 7.4 10.5 5.11 8.61 10.1 6.44 9.02 5.72 5.09 3.32 11.9 4.73 10.6 4.17 6.15 8.42 10.1 8.42 10.2 9.62 0 8.62 8.02 3.17 9.78 8.92 10.9 9.36 9.49 8.51 9.19 5.32 7.24 3.25 9.85 2.32 11.2 9.87 3.17 11.7 8.52 6.07 4.39 10 7.55 11.7 6.92 9.19 9.84 9.27 8.06 6.8 4.39 3.86 6.76 0 9.38 4.46 9.64 8.41 8.01 7.58 9.19 13.3 10.6 4.61 11.7 4.29 5.13 8.76 7.33 9.49 7.94 7.19 7.66 7.72 1.58 9.47 8.84 10.2 8.97 9.4 5.79 8.55 10 10.4 7.54 7.46 9.78 10.5 1.81 8.92 8.89 8.22 6.86 7.38 7.3 5.82 6.01 7.23 8.5 12.1 11.5 9.25 7.38 9.27 8.23 3.91 11.1 12.9 11.8 8.08 8.66 4.7 8.23 6.85 9.53 10.3 9.75 6.94 4.04 11.4 10.7 9.67 8.45 3.95 10.7 8.63 10.4 11.1 10.5 10.5 10.1 12.6 10.4 10.6 7.1 10.1 9.15 9.33 8.43 7.16 7.09 10.7 11.3 9.85 9.62 9.59 1.58 9.67 7.92 13.9 10.8 11.2 10.4 9.86 8.58 10.4 12.9 10 9.59 10.5 9.64 9.68 11.3 10.9 10.3 8.01 10.4 8.96 9.8 8.18 8.11 8.84 11.6 7.06 9.83 10.1 8 8.57 11.9 9.25 6.03 8.84 11.9 10.6 2.91 9.99 11.6 6.77 1 13 10 13 11.4 9.81 7.34 7.81 11 7.45 11.3 12.3 10.2 6.62 10.6 10 6.35 10.5 7.31 8.9 1.32 8.1 6.41 8.9 11.2 7.68 4.67 8.46 9.09 7.11 8.32 10.3 8.73 12.1 11.7 11.6 9.39 10.1 9.46 10.1 8.54 8.17 9.71 4.39 10.2 10.8 9.99 9.16 9.37 8.73 8.06 9.52 12.1 12.6 7.52 10.1 10.5 7.98 10.4 7.27 11.5 13.8 9.41 3.64 11.7 9.37 8.76 9.6 9.94 9.05 10 9.68 10.8 8.28 10.5 9.99 9.28 10.8 11.9 4.61 10.1 12.2 5.78 11.1 9.31 10.1 9.44 9.61 8.72 10.3 11.5 2.17 6.01 3.32 9.38 10.2 9.73 12.1 9.73 6.88 8.22 2.38 10.7 4.46 9.88 8.73 10.2 5.48 9.86 4.52 8.88 11 13.5 4.03 5.32 9.92 11.7 8.99 10.2 10.1 6.72 9.84 9.52 8.2 10.7 7.91 9.18 11.1 6.89 8.63 9.82 5.07 12.7 9.58 10.7 6.66 10.3 8.4 10.4 9.41 13.4 6.89 6.81 8.08 6.75 7.15 10.9 9.48 11.7 9.49 14.9 8.68 7.55 9.93 10.8 8.88 8.88 12.7 8.15 8.94 10.3 11.8 10.9 10.6 12 10.2 10 4.83 12 8.59 12.7 5.63 10.8 10.2 8.31 9.14 9.85 9.72 10.5 11.6 9 11.5 10.6 4.81 10.4 11.5 6.29 10.4 12.8 12.5 9.87 8.82 10.3 1.81 11 9.15 10 11.8 8.18 9.85 9.16 10.8 9.95 9.2 9.99 10.9 7.65 9.81 9.58 10.5 6.81 9.7 8 10.2 9.89 9.07 5.83 8.72 3.91 8.21 8.49 8.89 9.57 3.95 8.66 9.29 12.2 8.42 9.8 9.84 7.58 9.67 8.99 9.36 8.79 7.75 8.68 6.47 9.69 9.46 9.16 7.7 10.2 10.8 5.61 8.97 7.52 10.6 10.9 9.86 11.4 10.2 10 9.32 10.5 10.6 11.3 10.2 10.4 10 9.51 8.33 10.3 11.2 8.48 10.2 8.69 11.4 10.3 11.4 6.81 9.02 10.1 9.62 8.28 10.3 11.9 5.02 8.98 7.79 7.81 11 9.82 9.3 9.35 8.37 9.17 12 9.73 10.4 7.66 6.26 10.3 9.62 9.67 9.55 10.3 11.3 11.6 8.24 12.1 10.3 9.36 9.3 8.96 10.4 11 7.43 10.4 9.11 9.83 9.59 6.03 9.06 8.69 8.63 6.7 10.7 10.9 2.17 7.18 7.84 9.99 7.29 7.8 12.9 9.37 7.58 9.93 4.17 5.23 4.52 7.91 9.92 10.3 9.7 12.4 8.17 4.29 5.27 11.6 10.4 10.9 10.7 2.12 10.3 8.45 9.33 6.63 9.74 12.4 9.89 8.52 5.57 8.74 11.7 9.12 10.4 13.8 8.62 12.5 1.32 11.8 8.3 9.44
-TCGA-FA-A4XK-01 7.73 12.6 7.07 7.93 6.33 9 1.03 3.52 4.53 1.63 2.17 7.63 5.38 2.8 0 9.56 11.2 9.47 7.19 9.92 9.26 4 10.4 0.43 10.6 8.19 4.2 10.3 2.99 6.7 4.33 4.18 3.17 0 4.46 1.3 2.72 8.03 1.03 2.8 3.06 0.43 7.72 1.03 0.76 3 0.43 1.03 11.7 7.22 3.33 6.55 6.88 11.6 5.17 2.05 6.19 0.43 6.87 7.51 7.1 2.47 5.22 0.43 4.36 3.8 6.45 8.26 10.5 0.49 3.52 4.97 4.18 6.88 0.43 0.43 6.58 5.36 3.47 0.43 5.19 1.46 2.78 7.35 5.08 0 6.99 1.03 2.93 2.8 8.37 5.3 8.86 4.24 4.7 4 0.43 4.97 5.28 0 0 1.79 2.28 6.63 1.46 2.64 7.18 7 8.18 6.54 0 0 8.51 3.61 5.65 2.28 3.01 3.8 3.01 5.55 3.43 3.28 0 1.03 2.38 6.05 1.03 2.72 0 6.48 3.84 3.43 4.89 5.17 2.05 1.03 5.45 0.43 2.47 8.85 6.74 9.43 1.03 3.57 6.07 11.1 1.03 10.9 2.9 7.88 4.33 0.43 9.34 8.63 11.3 8.78 0.43 0 10.5 4.63 5.28 5.8 0 0.43 8.98 7.94 7.22 9.85 9.31 3.84 10.5 8.55 1.79 1.92 4.31 1.79 2.64 4.54 8.58 13 4.73 9.65 4.5 4.06 3.94 1.26 3.23 3.65 7.49 5.81 8.05 9.79 1.82 3.06 3.91 7.21 5.45 10.1 8.53 7.59 4.77 4.5 9.14 10.7 10.7 5.93 5.77 10 10.7 11 7.83 0.76 11 12.3 10.2 7.24 8.2 11.2 5.1 11.2 11.1 9.98 12.5 10.8 8.38 9.25 3.12 12 8.93 13.7 7.7 5.57 9.59 7.09 9.39 7.94 11.3 4.34 9.51 3.61 9.53 5.25 13.4 13.1 13.1 15 13.8 13.8 5.61 10.8 11.6 0.76 5.75 10.3 9.59 3.8 11.6 12 0 14 0 10.2 9.16 10.6 8.24 9.74 8.85 10.9 11.8 10.2 7.68 12.1 7.08 9.69 11.7 6.93 2.56 13.1 11.4 10.8 12.6 11 11.2 9.33 9.73 9.57 9.62 6.06 11.5 10.6 11.7 1.63 8.66 7 8.82 10.3 8.21 13 9.83 6.18 0.43 11.5 9.57 6.82 10.4 11.8 4.71 9.99 8.96 7.38 13.7 10.4 9.92 9.36 7.01 10.1 9.92 1.03 9.74 6.81 10.6 10.9 9.83 8.71 9.15 11.2 12.2 9.82 10.4 9.36 9.42 8.35 11.7 8.36 9.55 9.24 8.44 9.36 7.9 7.79 11.5 6.22 9.54 5.83 8.23 13.2 13.3 8.07 12.4 11.8 11.3 2.5 7.38 0 5.49 8.99 8.53 10.2 1.63 4.96 7.83 11.2 11.2 9.59 7.57 6.16 7.61 0.76 7.13 2.64 11.1 11.9 9.63 11.8 9.76 7.85 8.84 9.86 0.43 5.64 8.63 11.2 8.16 9.53 11.3 10.8 4.55 6.98 6.44 8.96 2.8 7.22 12.7 8.97 8.09 11 12.1 2.47 7.82 4.75 7.74 9.86 10.5 9.61 8.41 10.9 9.13 8.87 10 6.78 5.21 4.86 9.98 9.02 8.7 11.3 9.84 9.7 10.7 7.26 9.8 8.43 4.92 11.7 7.63 11.4 10.5 10.2 4.62 8.22 10.5 12.8 6.03 8.81 8.1 6.77 7.71 9.65 9.55 10.3 12.6 11.2 9.19 2.93 13.4 6.19 8.64 13.3 0 9.28 1.64 7.93 7.08 11.8 9.56 8.56 9.15 10.6 3.94 5.55 7.53 9.63 10.4 0.76 11.5 8.59 1.03 1.79 0.76 8.05 7.62 1.92 9.65 3.69 10.1 10 7.89 10.5 9.92 7.59 15.7 10.2 0.3 10.6 9.7 8.12 13 8.87 9.24 4.09 2.47 9.69 9.85 3.06 12.5 7.79 7.25 8 8.78 11.6 12.2 15.1 7.73 2.47 6.91 8.96 5.98 8.57 7.97 3.33 0 13.2 1.03 12 7.52 10.8 8.85 9.63 4.53 10.3 7.29 11.6 9.63 10.7 9.11 10.7 8.7 9.64 9.05 12.2 9.65 11 10.9 7.06 10.1 14.3 8.84 6.91 10.6 9.42 9.88 10.7 3.87 9.53 11.1 0.43 10 6.09 10.6 9.84 8.82 10.8 13 6.75 9.44 11.6 7.71 5.1 9.57 7.93 9.49 9.34 10.3 3.97 9.44 5.26 10.1 8.58 10.9 11.3 10 10.9 10.7 9.17 9.04 11.9 10.7 11 10 1.63 13.7 10.2 10.7 10.3 12 11.3 11 10.8 9.07 7.48 10.7 7.54 0 10.2 4.94 8.6 7.63 11.9 9.18 9.7 7.04 9.13 10.3 7.29 0.43 7.41 10.6 7.07 7.3 13.1 8.88 10.4 10.4 12.7 10.6 11.4 11.5 3.38 1.26 10.3 10.2 9.47 10.2 9.64 11.2 12.3 10.7 9.8 11.8 12.9 10.8 7.22 9.67 10.9 12.3 0.76 10.8 10.1 10.4 9.59 9.15 8.14 9.78 7.28 3.8 8.22 6.73 0 8.36 10.1 10.1 4.79 10.4 1.03 9.78 3.87 10.1 10.7 13.3 12.7 12.3 11.7 8.14 5.92 8.9 7.86 11.9 8.76 6.57 8.91 9.42 11.1 10.5 9.54 10.2 12.7 0 7.64 11.2 8.67 10 9.82 10 9.32 11.7 10.2 10.3 8.47 2.28 10.9 7.09 8.67 9.8 10.7 11.1 9.2 12.4 9.29 9.94 7.8 7.48 8.82 11.2 9.08 12.9 11.3 7.95 10.2 14.2 13 2.17 8.03 8.63 9.79 2.7 5.4 10 8.32 9.84 6.32 10.9 4.48 9.26 11.9 8.77 10.4 6.41 12.1 11.2 7.76 8.57 3.48 6.93 11 10.2 8.71 7.24 3.24 10.8 8.85 10.8 6.14 2.05 4.46 10.7 9.21 10.4 7.4 5.98 8.95 8.27 0 3.76 12.8 11.6 2.47 4.24 8.42 7.27 8.48 10.6 9.37 2.26 9.77 15.8 7.9 9.18 11.3 10.3 11.6 13.1 7.91 11.5 8.27 8.65 8.71 11.2 3 1.46 1.26 1.72 8.4 5.88 9.06 2.05 8.93 8.73 2.38 4.36 12.2 13 8.63 6.89 9.19 8.75 3.06 10.8 10 9.41 9.86 9.94 10.6 8.97 8.83 10.9 7.89 9.6 11.4 8.77 5.04 9.15 9.14 11 8.78 8.82 10.3 10.4 7.4 5.81 7.59 12.8 6.79 1.26 6.98 14 10.7 2.17 0 8.07 9.71 11.8 8.9 5.8 3.65 10.2 0 6.12 6.49 7.5 6.48 5.13 8.69 9.48 2.28 7.71 0.43 10.8 9.35 6.06 11.5 7.18 8.53 5.94 10.7 9.71 2.28 9.38 4.04 8.2 13 11.8 8.68 9.56 10.2 10.6 5.78 5.28 9.45 11.2 0 1.03 8.91 9.89 1.46 2.28 11.4 0.43 9.75 7 5.88 0.43 10.3 10.4 11.6 11.8 2.47 9.6 9.48 4.77 10.1 7.81 11.2 10.9 10.9 10.2 0 6.64 0 11.4 10 11.8 1.26 10.6 10.1 12.2 10.7 11.4 8.37 9.62 9.49 10 10.2 1.26 12.1 3.06 11.3 1.69 14.8 9.63 9.79 1.46 11.5 11.5 11 11.1 8.19 10.2 11.8 9.4 10.3 12.8 9.66 8.29 10.4 12.7 9.98 11.6 11.7 12.6 7.68 12.6 4.5 7.45 5.67 10.5 13 12.6 11.8 9.78 4.95 10.7 8.81 8.7 11.8 8.6 12 11.9 5.38 12.2 10.7 10.5 11.4 4 0 13.1 5.75 9.14 7.93 9.24 7.7 5.92 10.4 11.8 10.2 5.17 2.28 8.91 9.45 2.87 11.9 8.34 9.47 9.49 8.87 6.78 7.64 8.76 11.9 8.12 3.33 7.24 2.87 3.61 8.69 10.6 7.5 11 8.72 7.29 9.65 15.1 7.61 6.78 9.98 0.76 8.2 11.9 9.91 11.8 11.1 10.6 9.3 10.3 9.51 10.7 11.4 6.81 4.41 10.2 10.2 9.48 8.56 9.14 9.29 11.4 9.57 8.44 10.1 3.12 2.28 9.79 11.1 13.2 7.79 5.52 10.4 10 4.89 4.91 8.49 1.46 7.85 9.89 10.4 6.85 12.7 7.88 8.4 10.2 8.91 2.47 9.36 9.66 9.22 8.08 8.08 12.3 10.4 9.26 9.31 9.1 6.93 10.3 2.47 7.01 8.9 9.25 0.76 10.4 6.11 9.13 7.89 9.9 0 10.4 6 1.03 12.2 10.8 9.22 5.73 11.1 8.02 8 1.46 6.24 15.4 10.2 6.4 5.9 3.18 7.39 9.94 7.58 6.69 9.94 9.28 9.69 5.75 9.91 11 8.95 12.4 10.9 8.78 9.65 5.01 11.8 8.51 5.86 12.1 10.4 7.06 9.36 9.16 11.4 10.3 9.33 12.4 5.07 10.2 1.03 10.1 0 9.62 11.1 8.52 8.23 9.39 10.3 11.6 7.69 8.59 8.36 7.75 4.91 8.62 10.1 8 11.8 10.4 8.21 10 8.48 2.59 6.9 8.27 10.5 4.29 13.9 9.79 6.38 7.95 9.24 10.1 9.82 6.65 10.2 10 8.95 6.79 6.27 11.6 7.35 10.9 6.6 9.98 8.66 6.81 8.52 8.85 3 6.24 3.12 8.82 8.48 10.5 1.79 0.76 9.8 11.3 8.75 8.45 10.2 10.5 10.4 11 0 10.9 5.81 8.16 12 7.69 8.51 10.6 10.3 9.72 2.06 0.43 4.82 7.13 12.3 5.76 8.9 7.05 4.86 10.3 8.83 10.1 8.52 4.71 1.79 7.55 0 11.2 9.67 8.31 6.37 8.78 9.17 8 10.1 11.8 9.06 9.99 8.4 10.4 7.86 9.75 8.42 10.3 0 8.65 8.17 11.4 11.4 6.49 7.31 12.4 6.41 11.9 8.8 8.17 10.7 5.96 1.26 8.62 9.22 1.03 8.7 10.6 10 11.1 4.63 8.33 11 11.4 10.6 4.75 9.67 7.5 3.8 9.91 9.82 1.26 12.8 10.3 12.2 9.64 12.8 10.8 12.6 12.2 7.86 9.28 9.71 0 10.7 9.54 9.11 11.9 9.99 10.9 6.29 7.3 1.03 9.34 7.94 6.52 2.8 8.32 5.53 8.2 7.87 2.56 9.13 9.5 9.5 4.92 8.91 1.03 11.4 5.2 9.59 3.28 7.44 8.91 1.63 3.98 10.9 7.54 1.03 4.53 7.49 9.74 4.01 0.43 8.28 4.24 6.12 0.43 0 8.09 13.4 7.46 5.49 9.22 8.51 9.05 0.76 7.71 6.8 6.26 10.6 7.2 8.62 9.54 8.03 2.56 8.6 1.79 7.04 9.12 1.03 5.58 5.36 5.42 7.78 0 4.03 5.45 0 5.5 11.3 3.12 7.8 8.4 4.65 10.4 6.57 7.73 4.73 8.7 10.3 10.8 10.9 9.45 9.37 4.91 3.87 1.26 9.47 2.8 7.04 12 7.69 8.78 5.22 10.4 9.56 8.3 1.63 8.84 7.01 7.24 7.87 3.33 8.85 10.4 9.64 6.99 0 8.54 5.39 9.42 9.05 11 8.6 0.43 6.63 8.24 5.64 9 12 4.87 6.2 10.5 9 9.56 8.43 7 6.62 9.09 10.9 10.6 7.21 8.14 8.28 5.63 2.8 2.56 8.78 5.28 7.44 6.97 7.4 8.68 8.57 8.92 8.26 4.43 4.31 7.89 7.96 0 10.3 10.4 5.15 6.84 10 0.43 0.43 8.73 5.29 9.59 8.57 6.06 8.97 6.99 10.3 8.54 10.6 8.15 10.1 8.51 0.43 7.08 5.58 8.43 8.23 9.28 8.91 6.92 8.11 1.26 9.84 5.64 2.93 1.26 6.78 8.9 10.8 5.15 5.86 8.82 4.21 1.03 8.17 0 7.07 9.28 8.63 7 10 9.59 0.76 4.31 9.32 6.41 9.39 9.38 3.65 6.63 8.02 6.8 4.46 8.42 10.8 13 11 5.81 10.6 8.24 4.15 8.19 3.18 1.92 2.64 8.93 8.16 0.43 10.4 6.08 4.09 9.96 12.6 10.2 10.8 1.79 5.22 2.87 11.7 10.9 4.24 3.65 12.6 1.92 3.97 8.7 4.06 7.21 10.2 7.89 10.1 0.76 6.01 1.03 8.48 0.76 9.12 9.87 7.11 3.93 8.21 11.4 5.48 1.03 0.43 11.4 4.86 9.62 7.82 8.01 6.45 7.08 6.81 9.22 7.41 8.08 9.8 13.7 8.24 2.47 0.77 4.43 7.46 7.74 9.99 11 8.84 7.71 9.52 4.06 5.15 10.4 9.29 12.9 0.43 9.29 7.29 1.46 1.63 7.87 8.5 2.87 2.93 7.94 7.94 8.42 11.1 2.64 9.8 11.6 3.52 1.79 8.4 11.8 10.5 6.51 9.68 6.68 6.96 12.8 8.51 8.87 9.28 5.47 4.92 6.98 9.92 4.09 7.91 9.21 1.46 0 2.17 8.71 2.47 4.39 3.61 7.6 6.58 9.14 4.48 2.38 2.47 10.3 8.67 4.36 8.97 9.39 8.98 2.28 9.65 8.52 6.33 10.6 10.1 6.49 5.29 3.65 8.54 2.05 9.64 3.65 8.07 5.04 7.92 7.95 10.8 8.05 9.83 5.78 2.93 9.76 9.15 2.05 0.43 8.1 4 4.41 9.44 9.17 1.26 6.62 1.02 12 0 9.76 7.87 6.45 2.05 6.5 7.81 5.45 2.28 0.76 11.1 10.6 6.75 2.8 7.3 8.78 8.72 10.8 8.41 9.31 9.1 9.13 8.33 11 10.5 3.23 3.61 6.67 9.7 2.93 4.15 1.46 6.75 9.81 8.5 4.53 1.79 0.76 5.15 0 6.38 10.9 7.81 11.4 6.65 1.63 8.21 4.24 10.2 10.8 0 6.01 8.35 7.68 4.53 12.1 7.78 6.89 1.46 7.47 1.92 9.24 10.2 2.05 7.56 1.03 6.55 11.2 1.46 9.5 9.04 1.03 7.16 5.46 6.09 3.23 6.95 6.59 8.02 7.99 6.82 10.2 0.43 1.03 9.46 2.56 1.46 1.92 6.25 8.82 4.94 9.45 8.96 9.42 9.77 12.5 10.1 6.5 11.3 1.03 8.23 6.3 6.62 8.35 5.52 1.26 9.88 5.52 12.2 9.03 8.78 10.4 5.65 2.87 2.28 5.98 1.26 11.4 6.44 7.85 8.7 5.6 5.36 4.99 0.76 0 8.08 7.73 3.84 4.43 0 3.06 7.14 8.15 1.46 8.58 0.76 4.21 9.51 9.48 5.62 7.61 7.39 3.89 0 10.1 2.05 1.63 0.43 9.16 17.4 4.65 8.85 3.73 16.4 10.3 5.01 0 0 6.98 9.99 11 0.76 8.62 9.85 17.2 1.26 6.86 13.8 2.38 1.03 1.92 7.72 10.9 7.28 9.17 3.76 10.6 4.46 6.13 8.07 13.9 2.47 6.46 4.48 1.92 8.6 6.48 9.44 8.83 9.78 3.76 2.47 0.76 8.27 2.05 12 8.2 13.7 8.88 9.2 13.2 3.18 6.96 14.2 8.75 14.7 9.25 4.43 14.3 7.73 9.78 7.77 7.77 6.77 4.92 9.95 8.67 8.27 4.96 6.48 9.59 9.11 6.98 10.4 6.85 1.79 7.92 5.47 3.8 9.68 0 8.05 7 11.3 11.2 5.54 4.12 4.79 3.23 11.7 8.8 5.52 6.33 1.03 5.65 9.31 8.61 1.46 8.88 1.03 2.56 9.64 11.6 5.49 9.45 10.5 1.92 1.46 0.76 0.43 8.29 6.37 8.68 3.48 9.02 1.03 4.29 2.17 0.43 7.58 0 3.33 8.15 3.84 10.4 12.3 7.43 3.8 7.81 11.8 1.46 8.07 8.24 9.22 10.6 8.81 7.07 5.08 9.8 8.59 1.26 8.71 8.1 0 8.16 8.22 7.72 3.52 7.47 10.7 0.43 0 6.7 9.44 8.58 7.73 3.28 3.43 2.45 8.77 8.16 7.97 12.7 8.61 8.15 7.38 8 10.6 1.26 7.53 2.05 7.83 6.16 1.46 9.86 6.2 1.46 7.45 3.87 7.43 10.1 7.74 11.1 5.99 1.46 1.79 7.95 5.91 11.8 5.22 7.93 8.66 10 7.51 7.7 3.23 7.71 8.47 8.82 9.88 3.52 9 11.2 9.88 1.46 7.25 9.35 6.92 7.34 11.4 4.06 11.2 8.44 11.7 12.1 11.9 9.7 8.98 1.81 6.62 8.21 9.24 1.26 8.13 2.56 9.35 1.03 9.98 3.07 0 2.38 1.92 4.43 7.59 1.63 8.79 4.55 3.52 6.24 0 2.64 2.93 0.76 4.69 9.47 9.27 3.91 7.49 5.38 8.28 4.26 3.91 6.48 10.3 9.06 8.74 9.33 7.36 8.13 7.17 6.26 3.33 8.16 6.94 3.28 10.9 6.14 7.55 9.16 5.02 1.92 3.87 3.65 7.46 7.6 7.4 2.93 5.97 8.64 7.08 4.09 4.21 10.3 8.23 6.88 6.4 10.6 9.18 1.46 11.1 10.4 10.6 2.72 8.65 7.96 4.8 6.46 3.48 8.97 8.84 11.9 9.68 7.95 0 3 8.62 10.9 8.03 10.8 11 4.86 7.15 2.74 9.57 8.56 9.65 4.43 10.4 7.92 5.57 5.42 8.16 9.27 2.05 0.76 9.55 10.5 4.63 0 6.75 7.47 2.64 1.26 7.83 4.76 9.29 4.41 6.72 6.84 6.9 5.61 8.46 8 3.47 1.92 9.45 6.45 9.33 8.24 0.76 9.56 8.71 2.28 9.08 10.7 4.67 7.62 6.61 2.38 5.8 2.93 10.8 3.33 9.94 1.26 9.51 7.24 10.4 6.21 4.36 0.76 13.4 7.98 5.52 0.76 1.63 2.38 0 5.08 5.93 6.36 9.1 1.63 7.92 10.3 7.27 12.5 9.06 10.2 11.4 5.85 5.01 9.74 10.9 5.74 9.44 9.31 11.8 1.92 2.17 9.33 9.5 5.09 9.12 9.37 7.51 8.9 8.5 10.3 6.57 0 4.96 10.5 8.23 7.76 9.69 8.09 7.52 4.63 4.12 7.11 7.75 6.58 1.79 8.62 9.88 7.42 6.49 8.89 5.72 3.65 1.26 6.05 4 14.1 2.17 0 3.81 7.17 5.86 9.73 4.75 8.26 8.45 12 7.96 8.51 11.2 4.09 0.43 1.79 11.8 2.17 6.99 11.1 5.18 0 5.92 4.75 10.3 0 7.79 8.02 7.93 8.64 10.5 7.64 6.35 4.98 5.56 0.76 6.16 9.31 3.43 9.96 1.03 2.38 11.3 8.4 4.99 8.2 0 4.41 8.6 11.1 11.7 0.76 7.75 3.57 4.41 3.52 4.41 0.43 9.32 6.47 5.57 0 2.38 11.9 6.79 7.77 4.12 0.43 2.47 7.08 1.46 8.81 8.55 5.47 0.76 7.88 0 2.38 1.26 0.76 0.76 7.8 0 0 6.96 1.92 8.33 1.03 8.01 1.63 8.99 9.56 6.76 9.34 4.89 7.52 9.03 3.87 11.9 3.52 10.6 5.53 8.31 9.33 6.4 9.17 5.84 3.48 2.56 2.56 2.47 7.81 10.1 4.65 11.5 7.42 4.29 9.03 3.28 3.33 1.63 5.44 6.41 7.64 6.36 9.43 2.17 8.39 1.26 3.73 10.1 8.55 8.61 7.45 6.39 5.87 2.05 9.09 5.59 7.68 6.54 4.69 5.97 4.86 5.61 6.78 7.25 7.09 9.78 4.12 4.65 5.77 5.89 7.49 4.77 0.43 7.35 6.07 6.53 9.11 5.08 2.05 5.05 6.73 5.41 0 6.32 7.17 3.12 6.91 4.49 9.05 4.09 8.51 8.36 2.8 7.13 9.49 1.03 1.04 11.7 3 2.28 5.17 8.73 8.16 4 8.77 8.78 4.42 4.46 8.26 1.63 11.5 9.12 0.49 8.72 7.92 4.41 1.03 7.95 6.05 8.87 5.26 6.5 8.21 7.3 2.64 0 0 6.03 4.15 3.12 11.4 11.4 6.62 8.43 4.03 8.42 12.2 10.1 9.6 1.26 5.48 10.2 0 3.97 9.74 0 0 1.26 1.46 3 3.12 9.01 0 0.76 8.82 10.3 6.84 6.72 10.7 1.56 3.43 8.27 8.03 9.11 4.36 7.57 3.84 9.39 8.22 9.65 4.21 4.72 5.71 9.67 9.05 1.79 4.59 10.1 5.6 9.68 8.23 8.13 4.77 14.4 6.47 15.1 8.01 2.87 0 1.03 8.21 7.41 4.12 1.26 1.03 1.79 8.86 9.59 9.42 14.1 6.71 4.55 8.91 0.43 0.43 4.04 13 1.63 7.05 5.35 5.54 11.8 3.23 5.5 0 1.46 6.79 4.16 6.99 0.43 8.49 5.47 8.81 10.9 7.49 0 6.23 0 6.24 1.92 10.9 5.6 8.55 10 8.61 8.68 1.63 12.4 8.95 9.5 9.2 1.26 1.63 4.75 7.58 1.03 10.1 7.36 5.6 4.46 14.2 2.8 8.09 8.78 11.8 6.72 2.93 5.08 3.61 7.34 0.76 7.6 6.57 0 7.09 6.28 8.48 1.63 6.73 2.28 5.01 8.13 7.49 2.17 4.09 8.83 7.48 0.43 6.18 8.34 7.54 6.87 8.98 10.8 6.64 7.92 8.57 7.28 2.64 13.4 10.9 3 2.38 12.6 6.79 0 1.03 5.07 11.2 7.05 6.24 3.52 1.46 0.76 10.7 2.72 11.1 8.2 4.55 4.79 4.12 6.88 0 2.64 1.03 0.43 8.94 8.8 3.84 0 7.59 5.33 0 8.52 4 0 10.1 8.3 0.86 1.63 9.41 0 8.39 4.5 8 9.44 10.1 0 6.58 2.28 8.53 2.87 8.22 10.3 0.43 3.23 14.4 2.8 3 10.9 3.65 0 9.31 0 8.71 8.92 8.88 7.93 8.26 0 0 4.43 4.91 9.63 4.59 9.22 0.76 0.76 10.2 3.23 3 6.53 3.69 8.88 4.93 10.7 1.63 0.43 2.72 7.49 3.57 5.3 0 6.05 1.63 4.21 0 6.99 2.05 9.6 3.84 9.16 3.06 4.89 0.43 0 4.71 8.57 5.21 4.84 3.69 5.32 8.06 1.03 8 4.06 6.44 0.43 5.05 3.57 2.8 3.28 0.99 3.28 10.2 9.13 11.1 6.13 7.15 0 4.69 11.4 5.89 8.46 10.7 3 0.76 12.4 11.3 2.47 10.1 2.72 3.87 0.43 0 11.4 4.53 4.77 10.5 8.09 7.87 0 7.3 9.57 5.57 10 6.88 8.9 9.8 5.07 4.67 8.07 9.41 10.3 12.2 4.43 7.28 8.61 7.95 8.81 2.8 5.5 3.52 10 2.38 8.16 5.55 0.43 11.8 3.33 6.96 11.4 0.43 1.03 8.92 1.26 4.75 6.81 2.28 7.27 12.1 10 1.79 11.6 8.02 1.46 7.28 4.75 10.5 2.64 3.23 4.09 4.67 2.47 0.43 4.53 3.57 9.78 10.4 9.23 8.43 6.17 5.68 8.22 8.24 5.01 6.76 8.4 8.84 5.32 1.03 11.8 6.4 6.85 7.77 5.77 3.65 1.03 6.62 5.96 4.71 7.63 7.48 5.01 3.69 2.56 9.31 0.76 7.79 5.09 6.66 9.97 0.43 13.9 6.01 10.9 7.19 8.79 0.43 8.85 4.73 0.76 1.26 7.46 9.05 9.33 12.1 11.2 0.76 7.46 7.11 13.2 2.17 10.4 0.76 2.87 1.46 2.87 3.33 2.47 2.66 9.06 4.59 3.8 11.1 3.8 9 13.2 12 6.37 4.13 5.49 3.94 9.53 6.21 11 8.01 12.7 12.7 0 2.64 12.2 8.9 0.76 9.2 0.43 10.2 3.18 6.61 13 12.2 0.43 10 10.1 7.52 0 7.03 5.55 11.5 10.5 4.96 5.83 6.83 6.55 6.73 5.94 5.59 9.39 1.79 10.1 0 11.2 2.28 6.25 2.38 4 6.37 2.72 9.59 1.46 3.94 6.86 8.09 7 8.06 1.79 8.66 9.64 1.03 7 7.12 6.24 3.23 5.26 8.26 8.84 8.69 9.21 4.59 1.26 0.43 8.94 10.2 6.16 3.38 6.13 4.63 5.56 1.63 6.07 7 7.24 4.73 0.76 7.21 9.05 5.44 9.6 7.08 5.41 10.8 2.47 1.63 4.73 1.26 0.43 13.2 7.56 6.89 8.02 3.48 10.7 4.82 11.8 6.85 0 2.28 3.12 7.09 10.5 7.34 9.59 2.47 10.1 8.9 10.6 9.82 10.6 8.88 8.37 7.42 10.7 11.8 8.61 12.9 8.22 11.7 1.26 4.61 11.6 10.2 11.1 8.93 2.05 8.52 7.8 11.4 2.87 2.05 4.39 1.26 8.57 10.2 5.21 7.12 7.12 8.88 9.1 7.95 1.79 6.13 6.57 0 6.88 10.1 4.41 5.24 10.9 12.7 8.89 2.17 9.82 10.2 11.8 11.9 6.04 8.44 5.34 8.48 12.4 3.57 12.1 8.18 10.2 7.24 3.23 8.44 9.64 8.57 8.53 10.6 11.3 0 10.6 1.03 0 9.93 8.82 10.4 4.29 10.9 7.31 9.09 8.2 4.57 10.1 4.24 7.98 4.46 9.68 7.87 12.3 9.99 5.92 10.5 12.3 9.52 6.72 11.3 9.48 8.31 3.97 5.94 2.93 10.9 8.9 9.52 10.4 10.3 10.2 10.1 10.8 9.46 9.24 11.5 9.48 8.4 9.15 9.33 8.34 12.2 0 12.6 12.1 10.6 9.64 8.86 3.38 9.09 7.89 7.32 8.57 5.82 7.67 11.4 4.91 7.93 10.9 17.2 0 2.56 9.64 10.7 7.91 6.35 7.4 13.3 13.5 15.7 16.1 10.2 6.67 5.6 7.07 3.28 8.95 7.66 4.41 0.43 4.85 6.13 7.22 9.41 8.02 3.91 10.1 7.73 7.97 8.98 11.7 8.28 2.17 6.05 7.65 3.43 7.59 3.23 6.62 11.2 1.92 7.41 10.4 7.41 1.03 10.2 8.94 8.92 10.9 3.06 8.72 10.2 8.79 1.63 10.6 6.98 8.01 5.16 13.2 2.28 6.74 7.75 3.65 2.17 1.03 1.1 9.52 5.62 6.59 5.62 8.44 10.9 14 5.39 10.2 7.7 4.18 10.2 10.5 12.2 8.28 13.9 9.54 8.35 11.5 13.3 14.1 12.2 13.7 0.43 9.7 0.76 12 4.63 6.45 11.3 1.46 0.43 3.65 7.54 1.26 10.8 6.73 11 2.38 5.6 6.4 8.92 7.63 8.25 8.96 5.04 6.82 7.46 6.74 8.44 0 8.54 12.4 8.45 11.7 0 0.43 10.6 7.62 6.02 6.81 11.6 0 2.72 0 2.17 10.2 10.8 2.96 10.8 7.08 2.42 7.93 4.24 7.7 2.56 9.19 2.05 2.05 0 9.29 6.46 5.79 7.89 10.6 6.47 1.26 3.06 7.5 6.33 3.07 2.72 7.46 0.43 7.08 6.8 6.95 11.3 4.65 8.57 9.34 1.26 10.8 10.9 5.8 7.68 7.06 9.32 5.84 10.1 5.85 10.5 6.05 7.28 8.34 8.13 9.16 5.82 9.19 11.9 4.73 9.17 2.8 10.1 2.87 8.42 2.8 3 6.38 5.26 10.1 2.87 0.76 9.02 8.15 7.85 1.46 10.2 8.5 0.76 2.38 10.3 2.17 5.79 8.22 8.27 6.91 10.1 7.84 5.84 6.49 7.08 7.32 4.15 11.6 7.2 3.38 15.2 3.57 1.79 3.06 0.76 0.43 10.7 9.07 6.86 6.83 12.1 1.4 8.87 12.3 7.51 7.43 15 9.5 6.4 0 0 8.59 7.63 4.75 8.62 9.33 8.98 8.95 10.7 8.03 11.6 9.6 10.9 10 5.86 10.7 7.44 9.38 2.87 5.84 11.3 10.6 1.46 5.17 0 10.5 4.69 7 1.79 9.97 7.28 0 6.87 8.76 7.96 8.3 8.62 5.21 8.75 8.35 8.28 8.77 9.67 1.03 7.51 8.35 11.8 10 11.8 7.43 2.72 8.92 7.75 2.28 1.03 2.28 9.75 9.25 2.64 12 1.03 7.91 10.3 7.43 10.2 6.79 9.23 7.26 11.3 11.7 4.59 11.9 10.5 5.2 6.24 9.86 5.73 11.3 0 11.6 11.1 11 11.2 8.14 14.4 8.65 6.53 3.28 5.42 6.09 8.12 0.43 10.8 8.75 6.57 9.72 9.2 4.26 0.43 12.5 9.84 9.68 1.92 7.18 9.71 0 0 7.08 7.41 9.94 10.3 0.76 11.1 9.43 0.76 1.03 7.61 7.39 0.43 7.21 2.64 8.22 6.51 7.04 3.33 2.8 0 10.5 6.35 8.81 9.79 8.37 9.4 8.01 1.46 9.58 10.6 13.6 8.6 11 10.4 6.06 8.57 9.41 10.2 10.3 10.4 5.72 11.5 9.12 4.43 4.57 11.5 9.59 9.01 1.79 3 8.08 2.17 5.81 8.6 1.03 10.1 14.3 4.29 2.64 9.32 7.08 10.7 5.97 4.82 7.66 9.24 11.2 7.73 11.3 5.38 10.2 10.2 0.76 13.4 11 9.4 6.58 10.6 7.99 12.9 4.12 8.57 8.42 6.92 6.28 3.06 3.52 9.02 2.72 5.17 9.48 0 7.99 8.14 8.71 4 3.8 3.84 1.79 1.92 0.76 5.84 0 9.5 6.22 4.26 1.03 5.68 7.91 7.28 2.72 5.44 6.65 4.87 12.3 5.08 8.47 5.47 6.47 8.11 9.97 1.46 7.24 7.49 6.38 4.82 12.7 7.69 6.83 8.53 9.7 6.08 9.06 11.5 8.45 4.73 9.72 9.67 8.32 3.87 5.29 8.79 7.39 3.8 8.59 2.38 1.03 5.11 9.06 2.05 4.28 11 2.38 10.8 2.72 9.18 9.76 6.26 8.03 6.4 8.27 2.56 8.2 2.47 4.71 10.1 7.97 0 8.46 8.41 6.41 7.78 0.43 9.71 1.63 8.41 8.8 9.76 4.43 10.6 8.88 9.61 9.22 9.67 3.12 2.17 9.72 7.79 6.8 0 4.79 8.68 11.9 7.93 10.4 6.38 1.46 8.07 5.08 0.43 3.23 11.8 7.48 3.84 0 0.76 0 0 3.84 10.7 0 1.03 0 2.56 5.29 1.26 6.59 2.28 4.18 10.7 9.17 9.43 3.94 10.2 8.46 11.9 7.37 8.73 4.97 12.2 7.06 6.52 7.95 3.23 7.13 0.43 6.62 3.23 3.33 3.12 14.6 11.5 3 2.28 5.28 4.03 9.75 10.6 3.28 7.07 7.91 8.95 11.1 9.46 9.25 10.2 12.9 9.04 9.34 0 11.1 7.75 4.99 8.68 11.3 6.2 12.2 5.8 11.9 9.24 9.26 9.59 5.64 11.6 11.8 9.58 5.39 6.13 8.69 6.92 10.4 10.5 10.1 10.3 7.46 5.78 3.06 8.36 10.3 7.7 8.72 5.21 9.52 7.18 7.03 5.97 8.86 7.64 6.76 10.5 9.99 9.05 7.81 9.49 4.5 9.47 7.6 10.7 12.9 1.03 11.7 7.11 4.46 8 8.33 9.01 10.1 10.2 11.1 10.2 5.77 10.7 11.9 8.62 6.8 9.62 8.52 9.78 10.7 10.5 3.18 9.44 10.1 0.43 9.51 9.22 7.34 0 10.7 7.46 9.38 6.61 11.4 8.13 11.1 10.9 9.26 7.52 8.12 12 6.51 3.28 10.9 0.43 10.3 12 9.34 9.82 6.11 5.22 9.7 8.82 12 11.2 10.6 9.93 7.91 9.73 10.7 11.8 10.7 10.6 1.29 7.93 13 6.9 9.41 0.76 8.74 9.03 8.07 1.63 3.12 11 8.99 2.05 9.79 5.35 4.26 11.4 6.05 6.91 5.44 11.6 11.7 0 0.43 3.76 10.1 12.8 10.6 8.9 7.12 6.78 1.46 4.91 11.7 9.04 7.51 9.49 8.03 3.48 8.23 0.43 10.3 11.9 9.95 8.39 10.5 9.79 12.6 0.76 12.6 11.2 8.2 7.97 5.79 1.46 11.3 10 9.52 10.4 9.76 7.44 7.85 8.24 8.23 3.91 10.9 10.2 9.66 11.1 5.21 11.2 9.99 12.8 11.2 10.9 9.01 9.89 10.4 9.62 4.89 7 5.22 9.73 11.8 12.7 10.5 11 9.45 4.03 9.47 10.4 10.6 3.69 8.62 13 10.3 10.9 8.78 8.76 9.08 9.81 10.4 10.3 1.79 9.03 8.93 8.01 5.04 10.4 9.3 8.51 9.78 8.36 7.36 8.87 7.5 7.86 12.2 6.84 4.54 10.6 3.33 10.4 5.73 7.39 8.29 9.21 9.84 5.27 7.71 9.62 10.5 7.01 1.92 1.92 9.6 10.9 10.5 3.12 12.1 11.9 9.81 9.97 6.63 10.7 9.75 8.33 9.65 9.32 10.2 11.8 10.3 10.6 8.16 9.57 9.03 1.03 5.45 9.63 1.26 7.39 9.79 10.7 9.69 8.53 13.4 9.02 14.9 10.3 8.72 9.75 10.8 11 11 9.64 11.2 10.3 9.54 10.3 10.8 8.02 8.72 10.1 7.58 9.39 9.85 7.77 9.34 8.91 6.03 12.8 9.11 10.3 10.8 8.51 9.83 8.54 11.2 11.4 10.2 10.3 13 7.05 8.44 11.8 10.2 10.7 9.17 9.98 7.42 10.7 12.3 3.84 11.7 11.3 1.79 7.79 10.1 10.1 9.15 13 12 11.8 11 1.03 11.8 8.92 3.52 10.7 9.56 10.1 9.2 12.8 9.54 8.87 7.46 9.28 12.8 7.31 2.38 11.2 8.3 5.13 0.76 7.13 8.18 11 8.79 1.79 9.63 11.2 5.58 9.86 8.54 9.4 8.32 4.24 6.03 8.69 6.03 7.6 9.8 10.4 9.04 5.74 8.73 9.6 6.41 10.8 11.1 7.63 7.71 9.35 1.03 9.22 8.42 10.4 10.3 8.37 9.65 11.1 10.3 4.21 7.39 9.96 0.76 2.8 7.98 9.86 8.14 5.48 9.82 9.75 8.45 11 9.42 3.94 10.2 7.64 4.24 9.8 9.16 0.43 9.85 10.3 5.46 9.56 8.9 10.6 9.72 10.2 6.74 8.76 0.43 9.91 9.81 10.1 5.95 5.72 10.3 10.1 12.4 9.51 6.98 8.57 10.3 9.09 9.38 9.2 6.43 11.3 10.8 6.1 8.68 12.2 9.89 9.53 8.16 1.26 16.1 10.9 10.6 12.2 9.49 8.43 10.3 8.36 10.6 1.79 9.74 7.52 5.57 8.09 11.4 6.33 12.5 8.27 11.3 10.5 8.77 6.88 8.68 9.16 9.78 9.68 11.7 9.56 10 10.3 10.7 11.2 10.5 9.23 10.1 8.57 11.3 10.7 8.22 10.3 9.85 9.24 11.8 9.28 8.48 9.55 9.29 9.57 14.3 7.67 3 9.05 8.66 9.4 8.2 4.69 3.61 3.57 8.84 0 8.78 11.3 7.71 10.5 8.99 2.38 6.13 10.4 0 8.87 6.62 10.7 12 9.35 6.47 11.8 12.1 12.8 10.3 9.47 5.08 1.92 6.54 6.72 6.72 11.1 7.55 8.5 5.04 12.1 10.2 11.6 8.57 8.67 7.85 11.2 11.6 10.5 0 11 11.2 8.34 9.35 2.64 8.88 4.18 11.7 7.11 11.3 8.61 7.43 9.51 1.26 10.8 8.68 7.32 8.99 9.9 9.62 11.4 10.2 10.8 9.39 9.18 10.8 10.2 10.1 0.76 2.56 15 7.83 10.8 13.1 12.2 10.5 8.84 8.45 9.51 10.8 7.77 2.38 7.14 10.7 8.1 1.03 7.14 5.9 2.87 8.88 0.43 9.4 0 3.69 8.26 10.4 9.2 12.2 5.61 4.46 5.2 8.56 8.67 9.34 11.5 10.3 11.1 10.8 7.34 0.78 9.73 3.33 8.51 10.4 1.92 9.26 8.57 5.17 7.72 10.8 9.37 1.26 11.2 8.74 10.1 8.81 11 9.55 7.32 8.97 9.09 9.87 7.79 8.68 11 9.3 7.08 3.33 11.7 6.76 10.1 11.4 9.51 10.4 9.15 1.63 12.8 8.37 8.64 10.7 5.13 1.26 5.21 0.43 10.6 7.5 11.7 9.87 3.06 9.11 6.19 10.4 8.28 11.4 10 12.1 9.79 7.01 10.3 0.43 12.5 8.88 9.83 9.16 8.7 8.82 9.69 8.06 7.22 5.55 11.2 6.73 12.6 9.16 9.02 7.98 9.61 11.8 3.06 9.45 10.1 10.8 10.1 4.48 7.87 8.44 1.46 1.03 7.23 1.46 12.5 9.11 1.46 9.98 9.68 11.3 11.2 0.43 2.47 8.06 9.89 10.3 10.3 8.38 10.4 10.3 1.79 7.91 10.5 8.78 7.53 6.09 11.3 9.43 2.47 5.47 3.23 3.09 9.2 6.35 6.15 1.46 10.4 0.76 1.46 0.43 7.95 9.44 4.34 11.1 6.36 7.58 3.23 0.76 6.43 10.2 9.88 5.54 7.94 7.27 6.43 15.4 9.55 11.2 0 16.2 10.9 10.1 12.5 4.29 2.72 0.43 7.86 0.43 0 9.08 4.06 8.01 8.55 5.1 2.8 11.4 6.81 6.39 9.51 9.23 9.71 2.8 3.63 8.15 8.21 9.89 10.2 3.97 9.45 6.32 8.41 7.66 6.44 2.64 8.04 7.13 5.67 10.3 4.36 5.49 6.1 8.52 6.39 0 11.1 9.9 7.75 8.81 5.22 4.06 4.96 7.71 0.76 8.53 12.5 1.03 0.43 9.14 0 0.43 9.44 8.62 6.28 5.29 4.12 0 4.84 9.26 5.25 3.8 13.1 10.9 8.28 4.06 13.2 0.43 0 10.1 2.87 9.38 7.33 7.42 6.87 1.63 6.45 7.49 2.38 0.43 1.46 9.54 8.29 0.43 10.2 0.76 7.94 0.43 9.66 5.42 6.34 6.46 0 7.21 0 6.58 5.69 5.55 7.68 7.71 7.51 6.41 6.45 8.23 8.68 9.5 7.32 3.12 5.29 5.44 10.3 7.34 3.23 8.03 3.38 5.27 6.41 7.56 11.6 3.57 3.57 4 7.18 0 9.36 7.16 3 0 1.03 3.18 0 1.46 6.63 1.03 3.8 3.57 0 3 0.76 0.76 5.59 1.79 2.56 12.9 8.15 8.85 2.87 2.56 3.43 2.87 6.99 4.57 0.76 0 3.65 8.36 9.78 1.92 6.69 5.67 5.13 10.6 7.04 10 1.63 7.39 12.1 7.71 10.5 10.8 4.84 2.87 6.92 3.91 0.43 10.8 11.3 3 9.97 7.74 10.4 7.22 11.3 9.97 9.6 5.42 7.63 1.79 10.9 6.45 8.36 6.75 8.22 0 10.4 10.3 10.6 2.17 7.16 9.86 10.4 9.33 7.67 0.43 13.7 9.08 4.09 11.1 9.85 6.69 0 10.9 7.65 2.05 10.3 3.8 10.4 9.73 11.8 8.81 8.19 9.96 10.8 7.5 9.73 8.65 7.69 5.21 9.41 9.1 11.3 9.02 11.2 0.76 7.24 3.12 7.14 12 11.4 9.79 13.6 9.69 9.83 0.76 12.5 10.1 9.12 8.02 9.67 8.22 6.63 11.9 8.83 1.46 6.02 7.12 9.26 9.3 9.05 0 11.5 9.96 8.85 9.73 10.4 9.62 10.1 8.54 9.62 5.59 6.05 11.8 9.41 9.84 10.5 9.51 6.54 7.81 8.35 11.2 11 0 5.79 8.95 9.16 4.24 3.61 6.88 10.1 9.49 7.44 0 9.59 4.03 9.24 1.92 2.05 4.39 8.79 10.3 10.5 11.4 8.26 9.36 5.31 8.39 9.22 10.5 9.96 10.8 7.48 4.26 9.96 9.73 10.2 8.15 8.1 10.4 7.71 9.61 9.3 9.8 3.76 10.2 9.66 7.79 16.9 10.1 9.03 6.85 5.93 8.33 9.14 9.42 8.56 9.61 7.9 9.07 1.03 8.41 9.34 10.9 8 10.7 10.1 9.32 8.2 5.1 11.1 11 7.6 11.2 9.73 10.9 8.74 10.4 7.04 9.54 5.85 9.14 10.6 8.93 10.6 12.4 7.47 9.58 6.23 5.31 1.46 9.46 7.35 11.5 3.73 2.47 4.86 6.91 8.98 10 2.38 7.39 7.28 6.82 7.56 1.92 8.02 1.03 7.34 7.56 0.43 11.8 6.18 5.64 9.89 7.93 10.6 10.3 9.51 8.83 6.75 10.1 11.7 7.22 11.1 1.46 4.12 6.79 11.7 10.4 9.94 10 8.91 8.24 2.17 10.7 9.24 12.5 10.9 5.84 12.9 7.31 9.98 7.33 10.7 8.56 10.5 9.54 8.26 10 11.3 13 11.4 2.56 9.3 8.6 7.59 10.8 4.09 8.62 4.82 9.55 8 6.35 0 11.1 11.9 7.47 7.45 9.06 3 10.6 12.1 9.96 8.46 11.8 7 8.14 10.8 9.36 10.8 9.59 11.2 1.46 8.89 3.76 8.71 7.88 4.99 6.22 0.76 9.81 9.9 9.51 9.67 11 0 9.02 5.39 5.24 8.7 10.5 7.28 4.84 7.56 6.47 5.76 1.63 8.07 3.69 4.03 10 8.17 6.91 2.36 9.29 9.68 1.63 10.9 9.18 8.28 5.82 8.87 8.61 7.82 7.88 9.78 9.04 11 9.19 12.4 8.89 10.1 10.1 5.83 9.72 1.92 9.65 8 8.37 8.18 9.7 7.17 10.1 1.65 9.85 9.05 10.7 9.14 9.6 0 8.82 9.17 5.91 12.7 10.9 7.93 9.56 11.4 9.55 2.64 5.96 6.44 10.2 8.56 7.81 8.67 0 7.51 9.55 5.25 8.06 9.49 9.43 10.3 9.42 8.87 10.2 9.88 8.59 11.7 2.47 3.73 1.08 11.1 1.46 2.81 2.38 11.5 2.93 10 9.16 9.95 8.69 0.76 9.86 2.64 7.97 2.05 12.6 12.8 8.8 5.26 6.28 3.63 7.01 7.7 7.93 11.4 1.03 7.48 6.04 1.26 9.29 8.05 10.4 3.12 7.41 1.26 7.63 6.41 3.57 0.76 8.87 9.7 5.14 2.64 3.61 0.43 11.4 6.51 9.43 9.13 6.24 0 4.29 9.38 9.21 9.37 3.43 6.16 10.8 10.7 3.57 8.09 10.5 15.2 9.81 9.45 9 7.38 12.9 8.56 0 2.93 9.79 2.47 8.51 7.28 6.45 11.6 8.51 9.54 10.4 8.64 6.95 10.2 9.74 9 0.43 7.13 10.3 8.92 8.57 10.4 13.4 8.17 2.72 2.17 9.84 9.91 12 0.76 10.3 10.3 7.01 10.2 4.29 4.68 7.98 6.61 11.5 2.8 10.6 0.43 12.3 3.06 6.52 10.2 9.33 0.76 0.76 9.96 9.16 10.7 12.3 9.84 8.84 7.31 4.47 2.38 9.73 3.61 9.34 5.4 7.85 9.67 5.29 9.22 4.71 5.88 8.39 11.2 3.73 1.26 8.57 9.06 5.55 0.81 5.77 7.05 4.73 4.12 9.17 8.22 2.38 9.72 1.03 8.07 8.78 3.69 11.9 11.2 11.3 7.26 6.87 6.26 11.9 5.61 2.56 5.42 2.47 2.72 1.03 10.2 11.5 3.94 7.45 12 4.21 2.8 6.66 8.32 3.43 9.73 4.8 10.7 7.34 9.01 11.4 6.85 8.98 8.58 8.89 10.3 11.5 11.6 8 6.92 3.52 9.52 9.76 1.03 1.03 7.95 3.28 5.53 9.08 8.32 9.44 5.39 2.28 9.92 11.5 4.39 7.91 8.78 10.9 1.63 7.18 5.05 9.47 9.79 9.52 9.01 11.9 8.14 10 10.4 10.5 8.87 8.68 11.9 10.9 10.3 12.4 11.7 9.12 10.8 10.2 8.73 0 7.47 8.78 10.1 8.66 8.42 5.05 9.66 9.67 10.6 5.57 7.48 5.79 10.6 10 11 4.46 11.3 8.43 10 11 3.65 12.1 9.44 2.28 2.17 12.8 11.5 8.17 5.44 13.3 0 13.6 9.66 9.87 4.84 6.63 11.4 8.04 6.8 14.1 11.2 3.84 6.71 8.24 14.4 1.26 7.52 13.5 12.8 11.3 1.63 4.41 11.6 4.87 0.43 9.07 8.72 6.84 10.9 4.24 2.17 11.6 1.03 5.58 8.5 9.91 11 10 10.7 9.45 13.2 10.9 3.91 5.8 6.44 3.87 8.34 2.87 9.3 12.9 4.59 8.24 0 9 9.26 4.46 5.65 1.26 10.8 4.03 4.18 7.26 1.63 8.99 2.93 3.06 9.01 0.76 6.98 10.1 3 8.53 8.39 3.97 4.21 0 0 8.8 8.86 8.52 12.7 10.1 1.26 1.79 6.71 8.76 4.82 8.45 7.32 7.3 12.9 9.92 6.37 6.24 7.54 0.77 7.64 6.24 6.55 4.91 9.86 5.02 9.28 5.17 11.9 1.03 8.3 4.18 1.79 3.69 3.73 3.73 4 0 10.2 0 7.49 6.06 8.76 4.34 9.58 3.37 0 3.06 0.43 7.5 3.91 4.5 3.97 10.2 1.03 6.73 0.43 2.8 8.71 7.44 8.7 6.41 3.3 8.69 9.66 7.11 0 8.64 0.76 0 2.75 10.7 2.93 6.08 1.26 4.83 9.27 8.54 9.95 4.82 7.48 4.89 1.03 5.54 8.23 7.31 0 3.18 6.08 9.07 11.9 4.82 1.46 7.57 8.53 0.43 3.94 7.52 5.34 5.2 6.81 7.24 2.68 9.15 4.41 2.56 0.76 1.46 8.02 7.09 0 3.57 0.43 8.75 1.92 3.18 8.36 12.1 7.36 5.26 3.12 9.21 1.03 0 0 5.25 8.85 2.38 0 6.88 6.79 9.86 0.76 6.73 0 5.82 6.16 7.82 7.55 8.91 3.42 0 6.41 3.94 4.86 4.06 4.21 11.2 1.03 6.23 6.8 5.61 5.33 0.76 8.92 6.42 0 5.24 4.5 1.26 0.76 8.21 4.55 7.39 7.11 8.51 2.17 1.03 0.43 8.27 0.43 2.87 2.28 8.36 2.8 8.15 5.64 5.37 1.63 0.76 3.22 8.2 0.43 6.06 3.28 4.29 0 1.79 4.43 1.92 7.79 4 7.56 1.03 1.79 4.31 6.69 0.43 6.85 5.33 10.2 7.38 0 0.76 8.43 5.21 0.43 7.35 10.1 5.98 6.27 9.83 0 9.94 0.43 6.12 6.68 7.39 9.15 5.29 9.07 9.73 0 4.77 7.96 8.58 5.6 5.41 7.26 1.03 8.27 1.26 6.13 8.67 9.51 6.1 9.38 5.04 5.5 0.43 2.8 9.32 0.76 6.68 7.95 1.46 3.2 7.74 8.87 10.1 4.41 6.96 0 10.2 0.76 2.05 4.29 3.57 6.35 8.56 9.23 4.5 3.73 8.28 2.56 7.21 7.06 6.05 2.17 8.18 1.26 3.98 0.43 9.91 5.85 5.28 6.66 0.43 3.61 9.64 0 3.52 8.42 6.92 3.84 6.76 5.45 0.43 3.57 4.97 6.73 4.34 8.75 7.92 1.79 7.55 2.87 7.17 3.73 3.84 4.84 7.05 8.35 6.8 6.66 7.74 5.86 2.8 6.91 2.05 1.04 0 8.03 8.26 6.55 5.54 10.8 6.11 8.89 7.84 2.87 5.83 5.7 9.42 3.57 5.05 4.91 7.08 8.65 11.2 3.87 6.5 11.4 13.5 11 10.4 2.64 12.7 4.84 7.4 11.4 4.09 9.29 13.9 7.66 12.5 0 4.46 7.97 10.6 8.83 10.2 8.32 9.49 12 13.7 10.2 8.94 10.8 0.43 7.54 5.6 12 0 9.02 6.78 10.7 10.2 11 9.51 9.93 8.44 6.08 7.1 9.22 11.3 9.25 11.2 12.9 9.63 1.46 7.49 9.55 4.94 7.8 9.73 1.92 11 10.6 1.26 3.57 11.6 2.47 9.93 0.43 9.79 3.06 9.87 10.8 5.92 9.16 7.33 10.3 10.3 12.6 6.92 9.29 10.1 10 8.09 9.92 10.9 9.4 9.61 11.1 7.05 11 10.9 9.94 10.1 8.87 9.78 8.46 1.46 7.35 9.52 7.94 9.97 9.01 9.71 9.46 10.6 9.85 11.4 9.58 9.31 6.9 9.46 1.63 8.92 9.56 11.4 1.46 10.4 10.1 8.72 10.5 1.46 2.8 10.3 1.46 11 6.53 12.8 10.8 8.86 2.93 0.76 9.99 14.2 5.44 6.27 12.4 2.64 11.3 14.1 10.6 9.84 13.9 11.8 10.1 9.8 5.93 1.26 5.48 6.74 7.51 1.92 14.2 6.51 5.44 8.44 11.3 6.43 10.2 9.64 8.98 10.3 11 9.09 9.84 7.75 7.79 8.71 10.3 11.6 13 8.78 0.43 11.3 10.8 11.3 9.37 5.55 1.26 10.4 9.46 3.61 5.21 10.2 5.2 10.6 10.4 7.81 10.8 3.97 10.6 0 4.29 5.73 5.26 9.18 7.27 11.6 8.41 8.23 3.91 3.57 4.59 9.73 9.28 1.79 4.03 10.7 11.8 8.68 1.46 10.4 10.6 9.2 10.4 10.8 10.3 10.9 7.06 10.9 1.03 10.7 8.05 10.6 8.4 7.19 7.98 10.9 3.76 9.39 4.5 7.83 9.04 7.67 10.8 9.6 10.1 10.9 7.32 8.32 11.7 9.32 10.2 12.8 8.89 8.44 4.43 8.2 8.54 2.28 9.01 9.18 7.73 1.46 2.56 8.86 9.36 5.75 11.7 9.56 1.63 11 7.55 11.2 9.53 1.26 11.8 2.28 10.1 4.38 11.4 8.11 7.11 8.94 11.8 10.5 7.41 10.8 11.4 8.96 9.32 5.63 8.72 0 8.58 7.34 10 7.29 7.79 6.98 10.4 12.9 8.08 1.81 10 1.46 10.7 9.34 10 4.67 7.69 10.5 8.82 7.77 4.84 9.3 13.3 4.89 4.15 5.08 3.23 10.8 7.31 4.41 12.3 12.7 10.2 13.2 11.6 13.7 12.1 9.4 6.09 12.5 11 10.6 1.63 10.8 3.84 7.53 3.65 1.05 11.6 6.55 6.05 0 0 0 3.43 9.96 0 11.6 12.3 13.1 0.76 11.7 12.3 11 0.43 12.7 13.1 10.3 8.85 12.7 10.9 10.6 10.5 6.03 12.8 0 4.15 3.61 10.6 8.15 4.03 5.5 3.61 10.6 2.64 10.2 9.8 2.56 10.5 3.52 6 10.3 14.6 10.4 9 7.99 11.1 8.39 13.5 7.77 11.6 10.8 10.5 12.8 9.53 11.5 9.1 11.9 9.73 9.68 11.9 8.47 8.74 15.7 16.3 15.2 12.7 12.4 12.7 12.8 7.91 14.2 13.8 5.04 13.2 12.3 12.1 8.96 16.1 14.7 12.2 11.9 8.92 6.83 14 11.9 9.4 12.9 4.07 7.59 3.06 7.81 8.12 7.6 10.4 13.3 12.7 9.61 11.8 12.5 9.86 9.47 10 13.6 6.73 9.98 12.1 10.8 8.83 9.54 3.06 9.18 8.29 6.9 7.79 6.51 5.73 1.46 8.51 0 6.7 0.76 8.59 13.3 9.02 14.6 12.4 13.8 12.6 12.8 12.5 11.1 11.3 13.9 0 12.9 13.3 4.73 8.9 2.38 7.6 5.6 5.14 4.43 5.68 3.38 7.31 4.15 7.8 3.94 1.26 1.03 7.92 6.69 6.34 7.3 3.69 6.06 7.14 2.38 3.91 6.98 8.15 6.75 8.27 5.57 8.54 1.03 8.98 1.46 5.41 1.26 0 11.6 11.4 0 1.79 1.03 9.47 1.63 8.51 8.9 10.2 9.64 7 11.4 2.64 4.09 10.2 12.5 12.3 9.98 10.5 10.6 6.68 3.18 4.24 0 10.7 11.1 8.32 5.28 13.4 11.2 12.1 11.4 8.38 5.8 7.64 11.7 14 10.2 7.58 8.36 15.7 12.2 11.2 5.25 9.52 14.1 7.94 15 13.1 5.96 11.6 9.84 10.8 12.6 5.15 8.08 11.7 10.1 9.17 1.46 1.26 2.87 3.91 12.9 2.87 4.29 9 11.1 4.89 11.8 9.19 2.93 5.54 0.43 1.03 1.86 6.58 12 2.05 3.8 3.8 8.84 8.11 4.61 11.6 0.43 0 5.21 1.03 8.08 11 7.58 1.46 6.67 12.5 7.98 2.72 0 0.43 4.09 4.82 8.84 10 0 9.17 7.58 4.87 8.89 9.96 8.8 6.85 10.4 7.85 6.41 8.17 4.77 7.74 3.94 0 0 10.4 1.46 1.26 8.63 6.5 1.63 0.43 5.32 8.28 5.25 4.31 5.08 4.21 6.81 8.85 6.66 3.43 7.5 9.34 1.79 6.05 9.81 8.28 2.87 3.18 0 2.38 11.6 4.29 0.76 3.73 4.61 10.8 5.89 9.46 4.94 0.43 10.3 2.72 0.43 7.41 0.43 0 7.23 0 13.5 2.64 7.5 6.7 3.43 2.59 0 8.24 5.47 5.67 2.72 1.03 2.64 1.79 1.63 4.79 5.07 8.4 1.79 6.51 12 5.13 1.63 2.64 9.05 0 10.8 12.2 11 10.4 1.63 11.3 1.26 2.17 1.26 11.8 13.2 0.76 7.29 9.32 0.43 7.62 2.47 1.92 7.88 8.39 11.8 1.26 9.38 4.41 3.25 3.38 0.43 6.91 2.72 1.26 0 9.66 0 7.35 10.5 0 5.89 5.58 4.34 2.17 4.53 0.43 1.26 1.79 7.48 5.63 9.5 7.21 0 5.04 8.14 7.05 3.48 7.07 2.47 0.76 2.28 0.43 1.46 10.1 3.48 9.61 0 2.17 6.76 7.76 4.55 2.28 10.6 2.38 11.3 1.46 3.06 0 9.73 1.79 2.05 0 5.4 1.46 1.26 7.15 2.93 6.92 0.43 6.81 8.53 9.64 1.46 11.8 1.79 2.38 10.6 10.1 1.79 2.17 4.63 2.93 9.57 5.11 9.63 7.31 14.4 7.86 7.11 5.05 7.46 7.72 6.99 3.73 9.42 11.7 9.53 0.76 10.1 1.03 5.82 7.42 9.83 9.58 3.91 10.7 11.9 2.47 7.34 7.76 4.32 0.43 7.16 4.09 4.36 9.31 12.1 3.71 11.1 8.36 4.41 0 5.79 1.26 4.39 3.61 7.68 8.97 13.3 10.9 8.96 1.26 7.33 8.65 11.8 6.13 1.63 6.69 1.21 1.46 8.29 7.31 4.09 3.33 2.87 9.39 3.39 8.06 3.87 0.43 0.43 11 11.1 10.3 3.38 8.66 10.1 6.81 8.31 11.9 5.22 12.9 12.9 7.88 11.9 0 4.63 5.08 6.81 6.43 6.63 8.02 9.07 4.06 4.21 8.66 3 2.93 8.83 13.8 10.8 5.02 6.84 5.22 2.28 9.9 4.09 10.3 3.52 9.39 11.8 8.07 11.4 5.77 7.61 9.45 3.69 0 13.4 7.95 10.3 10.4 12.1 13 0 12.4 9.49 8.14 12.2 11.4 10.2 7.36 8.65 6.89 0.43 7.38 4.03 1.92 8.19 9.5 0.76 9.23 7.05 9.85 12.2 12.5 11.5 0.43 5.53 7.5 0.43 12.7 6.94 7.5 12.7 8.1 9.99 10.1 11.1 6.34 10.2 11.1 13 11.2 3.48 8.5 7.53 13.3 1.26 10.1 8.63 7.35 0.76 8.52 10.1 11.6 7.63 2.17 4.91 5.01 10.1 12.1 9.75 10.7 11.5 12.4 13.2 11.2 9.05 7.6 11.1 10.7 0.76 12.2 5.13 4.21 0.43 6.42 12.2 6.89 8.53 11.5 10.2 10.3 4.77 11.6 9.22 10.8 10.2 9.68 7.84 13.4 9.54 12.1 12.9 7.59 9.12 12.4 11.3 11.5 7.05 6.2 11.8 12.7 12.4 4.15 8.57 6.51 2.8 1.46 2.64 0.87 10.3 6.36 6.85 3.52 7.67 10.2 12.2 5.52 9.2 2.38 0.43 6.64 0.43 7.7 2.64 6.21 8.1 8.94 8.11 1.03 2.28 8.14 4.48 8.73 3.33 4.55 0 3.28 9.56 5.49 2.87 8.26 5.83 4.26 6.73 1.79 8.58 0 2.56 6.67 13.4 7.62 6.1 6.43 10 1.26 7.93 7.29 2.64 4.8 0.43 7.2 7.81 6.48 7.62 1.26 3.76 2.47 0.43 6.68 8.41 9.62 6.25 8.54 7.9 3.69 6.69 0 3 0 2.8 6.31 5.28 7.92 4.65 1.63 0 8.31 6.87 7.92 3.52 6.14 10.4 4.57 0.43 6.13 6.21 12.1 6.94 1.63 8.49 0.43 7.76 6.1 4.59 3.43 0 6.79 12.4 4.06 3.33 4.91 0.76 5.54 5.41 8.79 1.26 6.74 11.6 2.05 1.92 9.69 11.6 4.5 0 1.46 1.26 7.32 8.05 0 4.29 10.9 4.94 7.57 3.57 8.68 6.6 6.08 10.1 7.08 2.05 11.2 9.55 4.43 9.14 1.57 3.61 2.47 12.1 2.17 0 4.59 7.27 3.28 12.1 2.28 0.76 2.61 2.1 4.86 0 10.7 10.1 10.7 10.8 10.2 12.9 12.4 10.3 6.82 10.7 5.07 11.3 12.1 9.87 1.46 0.43 4.75 8.77 0 8.95 7.16 1.26 14 6.38 3.65 11.4 1.26 8.66 5.45 5.86 6.79 2.56 9.67 0.43 0 4.03 8.89 4.18 6.05 5.66 8.25 9.79 3.57 4.31 3.43 1.46 3.57 7.92 8.55 1.46 0.76 1.79 7.54 3.87 8.58 0.43 5.01 6.49 3.18 4.36 11.8 2.62 2.64 10.5 1.16 4.21 9.04 2.72 1.26 10.2 1.92 7.03 2.93 4.43 7.58 1.63 3.38 3.61 3.73 9.76 5.81 5.29 5.62 5.08 4.87 5.17 7.6 5.73 7.77 5.35 10.7 13.6 1.26 6.11 8.41 6.76 7.97 6.41 4.96 6.41 2.56 1.46 3.87 5.77 4.41 0 7.72 4.46 9.76 2.17 7.53 6.51 1.79 4.41 6.04 8.65 9.12 0.76 8.32 2.9 0 5.41 7.51 9.37 8.43 6.05 2.05 9.42 11.8 7.03 0 3.91 0 6.67 4.36 8.19 2.72 9.21 9.53 7.22 5.07 0 6.88 6.89 7.17 4.18 2.28 11.5 4.09 7.66 11.2 1.26 3.97 2.47 1.03 8.29 8.79 1.26 6.48 2.38 7.02 0.43 3.76 2.72 1.67 5.41 3.43 10 2.47 9.96 8.91 8.87 2.72 1.53 2.56 9.74 0.76 2.64 0 5.17 0 7.72 3.48 8.87 6.68 8.32 12.4 11 5.13 9.27 0.43 11.7 0.76 11.1 1.92 9.58 7.9 11.9 12.5 6.27 3.87 11.3 11.6 13.6 0 0 5.33 11.9 5.88 13.6 2.05 0.43 12.8 11.4 6.95 7.59 0 15 9.58 3.06 13.8 8.27 14.8 9.62 7.37 4.15 6.68 10.6 9.72 14.2 7.67 13 12 13.7 1.63 8.08 10.9 14.9 1.26 7.28 4.92 10.5 0 8.95 8.43 8.11 13.4 10.3 8.61 10.9 11.5 1.03 8.01 10.5 8.41 1.79 5.69 11 7.56 9.31 7.09 12 2.17 5.8 1.26 11.1 2.64 3.94 6.05 3.52 11 4.06 7.91 3.28 11.3 0.43 5.8 7.2 10.3 9.86 12.4 7.64 6.84 6.86 11.2 0 0 4 8.25 8.27 6.34 9.14 8.31 3.43 2.47 7.8 0 7.09 5.78 5.75 8.89 1.79 1.46 6.93 7.39 1.63 2.64 4.63 3.06 5.24 4.65 9.17 7.02 0 2.28 9.67 5.85 2.56 1.63 7.87 5.69 7.08 0.43 5.61 0 5.25 0.43 5.84 3.38 0 6.16 11.8 0.43 7.46 5.59 3.65 2.47 5.69 2.47 5.36 1.26 2.17 8.33 5.11 8.05 4.94 1.03 9.76 1.46 0 5.71 4.46 9.89 4.61 0 9.53 8.9 10.8 7.21 1.46 8.17 0 2.28 5.45 2.17 6.75 8.48 6.19 2.28 11.6 3.12 0 2.17 9.36 11.5 8.33 0 5.82 5.77 9.62 0 3.76 5.29 2.28 5.45 9.14 9.7 8.95 0 7.77 10.8 12 2.28 7.46 3.94 6.13 3.82 6.23 9.29 1.26 4.53 0.76 3.43 10.6 5.45 4.03 11.8 7.93 9.09 11 9.78 11.8 12.1 10.1 12.9 3.65 9.15 9.41 9.74 9.13 6.49 3.33 0 4.67 7.56 6.48 13.8 10.9 8.06 10.3 11.1 10.7 12.3 6.08 14.4 3.43 8.93 7.84 12.1 12.2 11 1.03 6.48 8.14 8.51 8.38 10.3 11.7 7.47 9.65 8.08 10.8 8.16 9.94 10.1 8.86 4.65 8.79 1.63 8.27 9.78 2.87 4.57 10.3 9.71 9.86 2.47 2.93 9.41 11.1 10.7 9.68 8.6 12.9 9.42 4.92 6.48 8.67 8.01 3.69 12.3 4.65 2.05 4.59 7.26 10.8 6.8 4.5 12.1 4.41 2.8 6.77 0.43 3.56 7.62 6.61 2.47 12.5 6.75 1.82 6.31 7.91 3.28 10.9 11.9 8.03 0.76 12.5 11.3 0 10.8 12.2 11.1 6.83 11.4 7.3 5.33 1.26 14.1 11.4 12 11 13.2 11.8 12.7 11 3 6.96 9.14 1.79 11.6 12.4 7.26 11.1 9.62 5.42 11 10.2 10.2 10.6 6.52 11.5 11.4 5.22 2.8 6.81 7.3 6.2 9.49 10.1 8.99 9.32 11.3 10.2 7.43 0.76 6.93 12.1 8.8 10.5 9.09 8.71 6.75 11.7 6.06 11.2 12 10.5 11.6 7.07 9.43 6.37 10.3 8.5 5.07 7.96 10.2 11.8 10.6 11.5 9.5 4.26 12 10.3 1.03 7.68 7.3 8.21 12 10.1 5.52 10.1 5.53 7.39 11.5 10.8 11.2 10.2 8.22 3.69 9.25 9.74 11.4 7.94 1.92 9.18 13.6 1.63 6.75 3.87 15.3 3.84 8.66 13.9 7.06 8.42 3.65 6.62 9.39 6.74 3.94 3.84 8.24 8.48 8.96 0 6.69 8.24 0.43 9.09 7.01 10.5 11.8 9.83 1.46 1.79 9.64 4.21 3.91 9.86 10.2 5.83 5.66 9.65 9.86 3.33 1.79 11.2 11.3 0 4.12 5.93 10.3 9.21 2.38 0.76 3.18 3.18 9.63 2.56 8.55 0 5.63 4 9.5 11.9 2.38 8.47 9.72 3.49 6.65 3.02 8.78 7.24 5.41 11.8 7.47 0 6.64 4.79 6.89 5.32 2.8 8.22 1.26 2.05 9.42 10.5 8.16 2.47 6.47 0.43 3.91 1.92 10.6 7.97 6.31 0.76 8.27 7.14 6.94 5.33 13.6 3.18 7.21 3.84 6.63 6.2 3.25 7.8 8.77 7.37 3.18 2.28 7.66 5.62 2.28 5.61 7.65 0 1.92 6.18 2.87 0 1.03 0 1.63 1.03 1.79 4.8 6.86 1.92 7.04 7.37 2.47 8.61 1.63 2.93 5.26 10.5 0 1.26 0.43 1.92 0 3.23 7.07 1.92 0.76 7.96 7.02 2.72 1.03 9.53 3.38 10.5 8.84 0.76 8.65 9.59 6.9 5.08 2.05 9.62 5.67 5.05 10 14.9 7.8 7.58 6.07 2.56 4.89 6.94 6.73 4.71 4.94 8.96 11.6 8.41 6.43 8.53 9.13 11.3 9.26 9.55 9.51 11.1 1.03 9.06 9.83 9.44 5.62 0 1.26 9.09 8.75 8.92 11.2 8.79 8.09 7.19 6.26 7.56 5.8 13.4 7.48 1.03 1.46 10.8 6.57 3.61 10.8 8.33 2.05 4.53 15 9.07 9.03 7.55 2.47 6.94 14.5 10.5 2.8 12.1 10.7 11.1 10.9 9.09 8.26 9.04 2.87 7.21 12.5 8.01 10.9 8.98 7.88 1.92 11.2 9.95 14.6 10.7 9.53 9.13 12.8 5.97 13.7 1.26 4.87 11.8 10.8 11.9 12.5 0.76 11.2 10 9.91 3.57 2.8 10.3 9.78 10.1 9.18 14 7.83 11.7 10.4 9.72 12.6 9.71 12.1 10.2 9.85 9.96 3.94 11.3 10.7 10.3 9.77 11.4 10.4 11.9 10.7 10.2 9.89 10.4 10.9 10.9 10.6 9.48 11.2 10.3 11.3 10.8 10.4 11.9 9.28 11.7 10.8 10.9 10.8 11.2 9.03 10.4 7.89 13.2 14.3 11.4 9.73 2.56 6.54 7.92 7.22 8.29 2.72 6.85 4.87 0.76 11.1 7.82 8.7 8.04 5.29 7.78 10.1 13.1 9.14 0 10.3 10.5 7.34 6.03 10.1 8.23 2.8 12.4 4.12 10.8 7.07 7.32 7.79 7.03 11.8 12.7 12.6 10.3 11.5 8.42 8.75 9.63 9.94 10.4 4.06 9.3 8.97 10.6 3.94 3.84 11.7 9.62 5.34 10.3 11.2 10.1 9.29 9.81 3.33 9.91 1.92 2.47 7.87 11.4 11.7 13.1 8.74 9.18 7.42 11.6 10.5 2.17 11.4 13.8 3.12 7.73 10.4 10.5 8.89 10.9 11.6 10.7 8.48 3.61 5.48 11.7 4.96 7.33 9.6 9.52 3.91 13.6 5.49 0 12.1 6.52 7.37 0 1.03 5.25 14.7 9.3 11.3 8.13 11.8 8.8 0 10.9 8.48 5.24 1.03 13.7 11.3 8.44 2.05 8.56 0.76 2.05 5.7 0 3.06 1.03 8.84 6.42 4.77 3.57 7.84 12.4 8.25 12.7 9.87 11.2 5.82 9.42 9.01 1.46 8.7 9.09 7.75 7.5 0 9.42 4.58 4.18 8.92 9.8 5.1 8.31 8.9 0 7.8 9.75 9.43 1.63 3.76 2.64 0 14.4 10.6 8.54 11.4 11 0.43 12.9 10.3 1.63 7.05 3.18 2.8 6.05 2.47 0.43 10.6 9.98 13.9 6.91 3.94 7.26 7.04 9.97 0.43 6.88 8.82 9.14 11.6 8.81 8.89 6.64 3.73 4.18 11 8.88 7.54 3.38 3.87 4.55 3.38 11.8 9.84 3 2.87 8.28 13.8 5.92 1.26 3.12 7.02 7.84 9.47 13.7 7.79 6.88 12.4 0.43 0.76 3.76 11.7 9 13 6.72 11.5 9.65 10.9 9.07 10.8 9.04 8.74 0 10.9 7.82 4.79 9.92 14 9.75 0 9.7 14.7 0.43 13 11.5 10.7 11.3 3.97 8.91 9.86 4.57 4.99 10.3 5.2 7.85 5.04 9.68 4.21 2.8 11.1 10.8 7.77 10.3 4.18 1.03 7.89 10.1 10.3 11.5 8.01 10.5 9.47 9.27 0 3.68 3.12 9.84 3.57 7 10.2 7.75 7.22 0 8.6 7.91 8.49 6.98 10.5 11.9 8.46 6.15 8.89 13.5 4.03 1.03 13.9 0.43 4.04 3 7.39 10.6 7.97 9.97 10.7 9.57 8.92 8.22 8.44 7.13 7.44 8.86 11.1 9.69 9.45 2.05 9.48 8.44 11 9.64 10.5 9.21 8.07 8.51 8.9 9.81 11.1 8.41 9.07 10.7 8.46 10.3 6.69 9.5 10.2 8.79 9.96 12.3 8.64 11 7.74 9.06 7.22 11.8 5.63 8.11 10.6 9.98 11.2 5.69 9.62 10.6 0.43 9.49 9.93 8.97 10.1 10.1 9.93 10.7 8.7 10 8.81 9.78 10.1 11.7 10.5 10.3 11.3 0 8.82 0.76 0 0.43 9.6 4.21 7.36 9.78 8.94 11 8.7 10.3 9.26 8.97 7.98 10.6 11.3 6.65 8.36 8.89 8.86 9.85 8.25 11.8 11.2 10.1 12 8.24 9.67 9.69 8.55 9.66 9.89 8.66 9.5 9.98 8.39 8.64 11.6 10.1 10.1 9.66 2.05 9.24 6.41 8.63 9.68 9.46 7.85 7.54 10.4 7.84 9.66 10 13 9.84 9.65 9.04 11.1 6.65 11.1 0 10.3 12.2 8.56 9.42 10.8 5.71 8.4 7.64 9.38 3.33 8.54 3.76 8.95 7.32 8.35 7.15 6.9 7.74 11.9 11.9 9.49 9.37 8.98 8.59 8.78 11 9.89 11.6 6.42 9.92 8.69 8.52 6.28 2.17 11 9.16 10.5 10.8 8.9 6.01 0.43 0 2.93 9.65 3.69 6.36 9.38 8.37 7.52 9.7 9.76 9.58 9.23 1.46 10 9.23 11.9 8.02 9.58 8.11 11.4 11 9.82 9.3 2.8 7.04 8.83 1.63 10.9 10.7 8.46 10.8 11.9 8.87 10.4 9.61 10.3 4.22 5.33 3.52 11 10.8 10.6 7.86 8.24 5.26 5.76 11.3 9.14 9.33 11.3 7.93 9.71 10.5 7.33 4.36 11 8.24 9.24 12 10.1 9.02 8.16 9.06 10.2 5.65 10.4 8.37 10.6 2.64 9.2 10.3 6 10 10.5 6.84 6.84 6.93 6.6 8.35 9.76 1.03 9.24 2.38 10 9.76 7.42 9.38 10.9 11.5 11.4 6.61 11.8 7.03 8.64 4.64 5.6 7.22 10.2 8.83 6.3 7.53 10.2 9.46 9.63 9.67 10.6 2.87 8.39 2.38 4.59 8.62 1.03 8.61 9.57 3.06 3.12 10.9 8.7 9.59 3.61 11.3 11.1 8.66 10.4 7.31 9.72 10.7 6.13 7.09 10.2 1.63 8.95 13.2 10.1 10.5 3.38 7.71 10.7 8.7 10.8 10.5 13.2 5.21 9.89 10.2 8 10.2 10.3 10.9 8.24 9.24 8.16 8.45 11.6 9.33 4.34 8.85 11.9 10.1 6.17 8.22 5.97 2.17 11 9.92 10.7 9.07 1.26 9.51 5.44 9.62 8.14 3.84 11.1 8.88 9.31 0 9.8 8.8 8.29 9.57 6.7 10.1 8.8 10.9 9.52 8.73 10.9 10.5 11.7 9.66 10.6 10.6 12.2 11.2 11.5 8.46 10.7 9.5 5.59 8.7 8.32 8.56 10.7 10.1 9.45 10 8.9 9.45 9.47 10.3 9.2 9.4 8.47 4.97 9.96 11.3 9.55 9.69 8.58 8.31 8.66 9.68 8.97 9.11 8.94 9.39 11.4 3.87 4.97 7.61 9.9 6.02 4.09 8.55 13.2 10.3 10.2 10.1 4.55 12.3 10.5 10.1 8.5 6.84 11.7 10.6 10.8 8.44 11.5 9.42 11.7 10 12.1 6.64 10.2 10.7 6.82 11.2 10.8 11.4 8.92 10.5 10.1 8.65 11.6 8.94 0.76 7.88 10.7 11.6 10.2 6.78 11.9 8.09 11.2 8.13 9.72 10.5 11.8 10.6 8.05 9.38 10.7 9.6 10.7 11.1 9.6 8.69 10.3 8.69 10.8 8.93 4.59 9.87 8.89 4.57 8.52 7.56 10.5 9.62 10.8 9.72 11.2 5.04 6.37 10.4 7.91 11.3 8.64 3.44 0.43 10.1 10.6 10.5 10.1 10.9 10.7 13.1 9.98 10.3 8.8 0 10.5 7.25 7.11 9.08 7.06 11.3 7.02 4.21 12.7 1.92 9.34 10.9 11.7 10.5 11.2 4.5 10.7 7.75 5.66 1.03 7.51 9.68 4.65 10.8 9.72 8.24 2.64 10.5 6.32 10.6 10.3 12.5 2.56 1.92 10.6 10.2 5.49 11.6 11.3 9.74 9.48 3.97 10.8 12.6 5.64 6.43 5.13 8.91 9.34 10.8 10 7.98 8.2 9.21 9.41 5.46 8.01 7.18 8.8 8.63 0.43 0.43 10.1 7.6 10.9 10.2 10.3 8.33 12.6 6.6 3 7.11 12.9 10.5 7.25 11.4 0 10.3 11.4 15 7.51 9.35 11 12.8 4.91 0 12 8.69 8.77 11.1 14.6 10.2 7.7 6.61 4.21 9.09 7.05 11.5 1.63 13.3 0 10.5 9.19 9.56 9.81 10.1 11.7 2.64 9.74 8.13 10.2 6.47 10.8 12 6.44 8.66 11.4 6.58 8.59 8.93 10.1 8.52 7.97 0.76 8.39 12.2 9.37 11.5 8.34 8.96 12 11.7 9.07 9.54 9.97 10.8 10.9 10.9 10.2 1.46 8.54 11.2 11.3 9.05 9.69 8.87 1.31 16.1 8.27 1.46 0 4.87 5.91 7.91 9.69 9.45 11.5 10.4 11.2 11.7 9.47 3.38 7.16 9.33 10.6 5.86 6.28 1.42 8.68 7.98 7.46 4.57 9.13 10.2 0 6.05 14.3 7.81 9.09 10.1 8.54 12.8 4.5 4.21 9.17 13.2 5.73 5.84 3.43 11.1 3.57 9.56 5.4 11.2 9.64 0 11.3 10 6 9.62 9.98 10.8 12.8 11.5 5.11 9.13 0 10.3 5.21 7.51 5.23 8.74 0.76 6.18 12.1 11.4 9.63 11 9.7 8.29 9.56 8.02 6.36 6.19 0 0.43 9.16 11 7.46 7.12 7.48 3 8.46 0.43 10.9 8.24 0 7.27 11.8 3 10.2 9.15 9.07 9.71 9.29 10.5 9.14 8.39 10.2 9.68 10.3 12.7 5.11 9.06 9.06 2.56 4.79 7.46 8.91 7.89 1.03 8.08 1.26 1.26 7.56 0.43 6.85 9.65 10.8 10.6 9.47 10.8 2.05 8.89 7.86 7.22 2.94 9.59 1.87 9.64 8.66 7.64 9.67 9.31 11.5 9.33 12 9.18 3.18 4.92 5.79 9.93 8.02 10.7 11.4 9.83 7.43 4.05 10.8 10.3 12.5 11.2 10.4 2.64 5.83 10.3 11.3 7.7 12.1 7.86 7.59 9.57 11.4 5.47 3 9.66 9.07 11.7 10.6 9.86 11.4 11 5.49 8.12 10.1 1.03 2.72 11.8 9.15 9.01 9.77 3.05 10.5 4.03 5.13 9.83 13.8 7.04 10.9 9.42 8.31 8.68 8.76 8.74 1.79 1.03 12.8 10.3 11.4 9.14 5.3 9.45 8.28 1.79 10.3 10.9 10.4 10.4 8.34 10.5 9.93 8.73 10.7 5.68 5.48 11.3 7.98 9.36 7.82 8.58 8.5 10.1 9.34 9.19 7.34 10.6 9.61 15.2 8.78 8.47 9.97 9.43 5.75 3.61 11.8 6.08 6.85 8.93 8.65 8.2 11.7 13.1 9.42 9.45 6.57 10.3 5.7 8.91 6.82 8.95 8.97 8.32 9.63 9.24 11.7 8.94 11.5 8.13 11.2 9.58 3.23 10.5 7.27 10.2 8.97 9.69 2.28 6.08 6.96 6.82 7.15 9.68 8.02 6.14 9.89 2.28 11.1 3.18 9.41 11 9.57 7.16 1.77 9.7 6.43 7.21 10.6 11.5 5.29 7.4 4.89 7.93 11.4 8.52 1.92 10.2 10.1 8.96 8.68 9.81 2.93 9.18 10.2 7.44 6.7 8.98 8.23 5.59 10.4 0 10.2 7.68 8.92 8.84 8.79 0 4.03 9.42 0.43 11.9 9.97 4.75 9.44 8.11 8.3 2.8 8.31 1.79 9.63 4.34 5.71 0.43 4.18 8.2 10.8 12.4 2.64 7.06 8.93 7.39 1.79 10.8 9.18 13.3 9.54 8.12 9.07 9.97 13.3 8.58 9.35 7.28 6.78 9.43 0.76 7.74 8.15 8.49 9.05 8.4 5.74 7.05 7.79 9.36 10.1 9.75 2.93 8.32 10.8 8.02 8.48 11.1 8.04 8.97 10.2 8.22 9.66 5.63 0 6.07 0 7.66 3.84 0 0 10.5 8.36 7.38 10.3 3.38 9.36 8.92 9.98 6.73 1.26 7.56 11.8 8.83 9.1 1.63 9.43 1.26 10.6 9.89 1.46 9.87 9.37 9.05 9.24 10.8 8.33 6.4 9.65 3.28 10.8 9.04 6.14 10.5 8.91 6.36 7.4 5.65 8.49 8.39 7.84 6.86 10.5 10.4 10.1 8.96 9.65 6.01 8.7 11.4 11.1 8.43 10.2 8.46 2.56 8.49 6.08 3.48 10.1 6.04 9.04 7.95 8.96 8.63 9.91 0 9.44 8.54 8.13 8.49 9.58 10.2 7.82 11.3 9.42 10.7 11.5 7.46 7.29 8.71 11.3 10.6 10 8.48 4.48 9.62 8.94 6.84 3.23 9.73 6.93 9.38 0.76 8.49 9.73 10.3 10.7 7.24 6.89 3.28 9.17 6.98 10.7 10.7 10.7 9.2 9.03 7.57 7.71 7.76 7.7 8.01 6.97 12.5 8.81 9.24 8.02 9.35 6.52 8.65 6.62 9.77 8.92 6.63 8.25 9.61 11.2 8.59 9.78 9.5 9.44 7.8 7.58 8.27 9.87 9.99 7.91 9.05 5.55 9.28 2.87 8.71 14.1 6.31 9.36 10.7 7.08 5.54 8.64 10.8 7.62 12.1 12.7 11.5 2.05 9.6 8.42 12 8.19 8.51 7.65 6.88 10.1 12.6 8.22 10.5 8.08 9.97 9.03 8.96 9.12 6.32 10.1 2.72 5.55 9.74 5.33 8.73 11.4 9.05 8.86 8.49 8.97 10.3 8.71 6.57 7.09 9.87 2.8 9.93 9.69 8.04 10.5 1.92 11.3 9.21 9.29 8.5 10.9 8.93 8.77 6.97 3.76 2.47 9.46 5.97 4.93 3.8 9.1 1.46 8.44 4.41 11.7 3.48 5.5 9.24 10.2 7.26 8.41 8.7 8.4 8.67 9.81 10.7 7.64 7.29 8.13 7.44 1.03 7.6 8.23 8.18 7.92 7.38 9.66 3.18 11 9.01 9.77 8.85 9.75 7.17 5.95 10.3 9.77 10.1 8.74 11 7.32 8.33 9.57 8.93 10.3 8.45 9.43 0.76 8.14 10.3 7.88 8.2 0 9.36 8.2 8.65 8.67 2.72 6.04 9.79 10.8 9.36 9.09 10.2 9.52 8.06 9.32 10.5 9.94 8.48 11.8 3.48 6.9 9.35 9.7 8.42 9.23 9.25 10.5 9.61 8.7 9.73 9.36 8.36 10.5 6.72 9.39 10.2 8.78 8.64 8.34 9.85 9.56 3.18 6.95 9.34 8.79 9.25 13.1 7.97 8.99 10.5 8.78 7.22 9.45 9.24 6.41 10.4 3.52 11.6 8.41 9.88 7.98 0 12.7 9.07 8.34 7.08 4.24 10.7 1.46 10 7.41 8.34 10.3 9.19 10.6 7.26 10.8 4.31 10.1 8.47 8.26 5.81 10.2 10 8.02 6.47 9.15 0.76 3.52 7.78 8.16 4.24 10 11 6.01 3.57 8.87 5.68 8.3 3.12 11.9 10.9 9.98 7.61 10 12 8.93 6.39 5.3 9.1 9.6 7.12 8.76 10.7 10.1 9.86 8.84 8.03 9.01 8.57 10.3 10.7 8.79 5.17 0.43 8.97 6.76 10.3 9.56 2.28 6.97 9.98 12.1 8.59 10.5 7.48 10.5 9.74 9.49 5.94 7.42 8.05 10.4 9.53 8.96 1.79 4.73 9.1 7.23 0.85 0 8.84 11.4 0 9.05 8.28 11.7 11.6 6.15 9.96 7.2 5.58 8.58 9.82 9.63 0 10 10 0.43 8.72 2.72 10.3 12 8.97 10.8 7.6 8.87 4.91 9.21 0 9.05 7.72 8.81 10.4 9.24 4.86 8.89 6.59 10.1 9.04 8.64 8.96 6.64 5.42 9.35 9.12 8.21 10.2 7.57 9.98 6.03 5.63 9.81 11 11.3 7.63 9.84 9.84 8.98 8.55 6.85 7.49 8.94 6.08 1.63 4.89 8.92 8.41 9.69 6.18 9.08 2.28 10.2 10.1 8.75 7.16 10.7 5.57 9.98 11 6.69 8.1 11.6 11.6 5.36 8.43 4.31 7.62 9.36 7.31 5.88 0.76 0.76 8.01 5.24 7.24 9.26 8.1 0 7.53 6.21 9.46 10.6 6.45 11.4 7.82 2.38 9.53 4.41 9.65 11.5 8.17 6.98 1.26 3.12 11.6 7.94 0.76 7.26 8.4 10.2 3.69 8.81 1.46 12.5 6.99 9.06 11.2 9.66 8.7 3.67 0 5.88 11.1 5.28 5.4 11.7 1.79 2.05 5.4 0.43 7.38 10.4 9.48 5.44 8.41 2.17 9.36 8.37 11.3 9.54 12.3 2.17 10.7 9.46 8 4.8 11.3 10.3 8.66 10.7 6.69 12.2 8.3 7.02 0.43 7.43 8.56 7.56 5.54 10.2 0.43 10.4 7.66 8.7 12.2 3.28 1.79 7.48 8.53 8.4 6.61 10.5 9.7 6.35 10 9.22 9.79 9.74 10 9.84 11.3 8.19 11.1 1.46 8.25 8.51 8.23 8.75 7.73 8.3 9.61 5.2 9.36 8.96 11 9.55 9.42 9.17 7.64 7.92 10.8 9.83 13 11.3 3.38 10 8.57 10.1 6.99 11.2 11.4 11 10.1 7.11 8.83 9.83 12.1 9.92 8.2 9.39 9.9 8.69 10.7 6.83 7.7 10.7 9.04 6.68 9.65 10.1 11.8 11.1 8.84 10.4 6.46 12 8.52 9.56 5.17 10.3 10 10.8 3.48 11 2.38 11.4 8.6 9.1 8.07 9.5 10.5 7.72 12.6 8.8 10.5 5.3 1.92 6.97 7.98 9.42 10.1 9.8 9.42 10.1 5.65 6.57 10.5 10.1 7.97 6.44 9.69 12.6 8.98 8.21 8.92 8.16 9.72 11.5 10.7 9.12 8.99 10.4 9.37 10.6 8.83 9.23 9.81 12.3 10.3 9.25 10.3 8 10.8 0.76 11.4 10.4 9.33 7.94 8.96 9.55 7.08 8.97 9.05 6.42 9.6 8 5.3 10.1 10.4 9.07 9.59 9.88 7.42 8.86 10.1 7.74 7.21 8.18 5.36 9.16 8.03 8.7 9.41 5.29 10.4 7.11 7.42 9.34 8.3 9.34 7.11 9.11 6.78 9.21 9.45 6.4 8.97 7.9 8.62 12.1 4.57 9.16 8.77 4.79 3.87 0.76 9.44 9.77 8.93 1.03 5.47 9.91 8.84 2.28 9.48 9.92 0 10.6 9.78 9.07 9.87 10.1 8.16 9.13 9.64 11.5 10.5 6.96 8.94 9.73 8.62 8.05 8.89 10.3 8.81 12.2 8.56 8.77 10.3 12.4 8.48 9.64 7.57 5.1 11.1 6.54 9.73 7.03 10.6 1.26 8.24 9.84 8.72 10 10 0 9.44 6.29 8.78 10.3 8.18 7.87 4.94 10.3 1.03 4.86 0 12.5 5.01 8.29 8.67 4.71 11.5 7.55 8.07 5.88 7.52 10.7 10.4 7.77 10.2 9.18 11.8 7.66 10.8 9.23 10.8 8.95 3.69 12.8 9.93 6.99 9.64 0 8.23 5.54 10.9 10.1 8.33 7.08 9.46 11.9 6.96 4.09 10.2 10.9 11.1 10.4 8.52 6.53 8.62 9.23 9.54 8.53 7.83 7.15 2.05 10.4 2.38 11.1 10.4 9.43 2.64 8 7.84 11 11.2 9.37 11.8 10.5 3.43 7.04 7.69 5.76 9.46 1.21 1.63 5.6 7.89 5.52 5.54 2.05 3.91 3.38 4.58 4.94 3.76 2.64 3.57 10.3 2.87 2.72 2.05 3.06 2.38 10.7 2.17 3.52 4.57 3.94 3.69 2.47 3.52 3.73 2.28 4.03 9.48 2.05 3.43 2.47 3.84 4.65 5.76 8.39 1.26 0 2.38 8.8 11.7 4.34 8.2 9.99 2.72 10.2 10.2 0 3.06 6.38 7.42 11.7 0.76 4.26 10.7 5.49 10.3 8.58 4 11.2 10.3 4.53 9.98 9.85 10.2 8.87 7.48 9.95 7.43 5.04 2.28 0 11.3 9.93 10.9 10.2 9.53 9.71 5.79 5.55 10 5.26 0 0 10.6 5.55 9.69 6.24 3.65 2.38 5.81 10.3 8.24 0.43 15.7 8.28 6.54 5.07 9.78 5.38 8.06 10.1 8.93 10.4 6.77 1.92 9.47 8.62 7.8 9.6 8.19 4.82 9.53 4.61 3.69 7.73 0 9.63 6.32 11 9.1 16.6 0.76 0.43 8.94 9.77 11.9 11.2 12.2 10.6 9.66 11.1 8.91 11.7 11.9 10 8.25 0 11.9 11.5 12.2 11.8 10.9 11.2 11.3 12.2 8.43 7.78 10.2 10.5 7.17 10.2 8.45 0.43 11.8 9.92 8.29 9.61 10.9 9.55 3.52 7.6 12 12.3 9.8 8.33 9.27 8.87 9.38 8.1 7.61 12.7 6.28 9.01 6.37 8.66 10.7 9.97 9.39 9.27 11 9 9.07 9.85 7.71 11.2 10.6 10.5 9.73 9.86 7.65 8.95 8.34 10.3 9.1 10.2 11.4 8.92 10.1 5.87 5.29 9.75 7.83 12.7 1.46 4.31 1.03 9.13 5.96 11.5 2.47 10.4 0.43 6.96 12.2 7.9 3.69 8.5 9.53 6.8 7.59 10 12.3 12 8.5 10.8 8.53 8.9 10.2 8.68 8.43 7.86 0.43 11.1 9.15 6.69 10.6 7.81 12.1 4 9.38 9.78 10.4 11.8 9.16 9.99 4.96 9.27 8.34 8.38 11.1 9.52 10.2 12 10.1 3.43 10.5 9.27 0.43 11.5 11.7 12.5 8.08 9.15 6.16 8 12.1 5.21 11.3 7.07 9.72 0.43 7.86 8.19 9.21 12.1 2.87 9.43 10.7 9.76 3.48 7.15 7.93 10.3 9.55 1.46 5.28 8.65 8.14 9.34 9.83 10.2 10.8 7.26 1.46 9.31 9.66 11.8 11.5 9.13 5.66 10.5 5.69 11.8 12.1 11.4 7.43 10.2 9.05 9.87 9.37 10.5 5.77 11.1 9.67 1.26 10.2 0.43 10.5 6.07 9.68 4.09 3.18 8.87 10.6 10.9 8.74 11.7 9.59 12.2 10 10.1 7.13 7.58 7.14 10.6 8.94 6.78 10.7 2.56 9.85 12.2 10.2 2.8 8.28 6.18 9.87 9.72 12.7 7.57 7.27 12.6 7.69 3.73 8.87 7.57 11.3 10 7.29 12 2.05 12.5 10.7 6.1 8.74 7.97 8.5 9.51 5.13 8.62 12.6 8.81 11.2 0 4.86 9.69 10.5 13.1 0 4.69 8.69 11.1 4.91 6.73 10.7 6.37 4.36 8.25 2.64 7.15 7.67 1.79 6.66 8.74 9.51 6.72 6.83 4.26 8.11 2.56 0 3.43 9.59 8.72 0 8.42 8.41 9.46 10.6 11.9 4.73 10.1 5.2 9.45 6.26 8.33 4.89 8.52 9.33 8.27 11.4 6.32 3.06 2.64 3.18 1.79 10.1 8.69 9.41 9.6 0.43 7.96 10.2 6.12 3.38 7.21 7.74 10.2 2.56 4.61 9.15 10 5.54 9.19 7.07 7.96 2.06 10.2 6.68 7.85 9.88 10.4 7.02 3.65 8.66 10.6 7.23 4.86 10.3 10.1 5.91 0 8.31 0 9.83 4.39 1.46 5.22 10.1 8.57 11.1 8.35 8.5 6.81 10.2 8.57 7.63 10.5 10.8 6.94 9.28 6.47 6.8 2.66 2.56 1.26 0 6.71 5.08 6.01 10.4 9.56 9.79 3.97 5.42 3.48 6.84 6.32 10.2 2.17 8.8 10.2 6.96 5.45 6.5 5.34 0 5.97 8.86 11.9 0 8.61 5.42 8.13 10.8 9.32 8.29 8.17 6.22 8.05 7.72 8.63 7.66 3.65 14.7 8 8.92 9.47 3.69 3.06 4.67 5.92 3.38 7.49 11 0.43 8.67 9.44 8.69 9.87 10.3 9.9 11 9.55 7.13 7.85 3.33 2.56 6.91 9.23 6.55 7.22 9.88 3.52 6.84 9.54 9.1 9.84 9.81 5.45 8.73 1.63 7.22 9.96 10.1 9.66 9.61 4.99 9.98 0 11 7.77 2.8 10.2 8.47 6.3 3.12 3.57 10.2 10.3 10.4 6.85 9.6 8.63 5.22 6.4 10.9 4.61 9.52 10.1 10.4 2.93 7.37 8.34 8.88 8.74 7.39 7.56 12.8 6.5 9.33 8.04 11 10.9 7.58 6.48 4.46 4.82 8.97 2.17 6.07 7.35 6.88 9.52 8.34 8.92 7.21 7.84 11.5 0.76 13.8 9.24 8.68 9.34 10.6 12.9 10.2 8.39 10.2 9.08 4.28 7.47 6.22 3.52 8.71 3.8 8.6 5.94 10.5 8 7.09 9.35 10.3 6.45 4.73 2.93 5.61 2.05 3.87 7.98 5.07 9.83 7.88 13.8 11.7 7.76 9.26 9.78 9.06 8.79 10.8 10.2 3.91 14.1 11.6 11.1 10.3 10.9 9.09 0.43 2.87 9.54 11.6 9.75 1.79 5.62 1.03 0.76 9.11 4.26 10.3 9.76 2.93 3.94 7.15 12.9 5.11 14.5 9.24 8.53 7.24 1.03 11.8 7.87 8.13 2.38 6.54 2.47 6.52 6.03 5.5 6.26 8.9 4.21 11.6 8.97 8.35 9.94 7.34 7.81 9.83 5.86 10.2 12.1 9.04 7.43 6.52 9.75 10.4 9.21 8.83 7.69 9.63 10.2 8.27 10.1 9 11.3 9.17 10.7 8.07 5.34 12.7 8.33 7.72 8.38 10.5 9.87 5.69 7.34 11.7 9.32 10.4 9.05 10.8 9.38 7.73 4.82 8.06 6.94 5.46 8.56 5.29 7.47 6.5 6.92 10.8 10.9 10.2 9.07 7.01 9.18 9.09 10.3 10.5 9.45 9.5 11.6 8.08 0.43 10.3 2.05 1.26 12.2 11.1 9.1 11.8 9.65 10.1 5.41 1.79 7.37 8.65 9.72 11.5 10.2 11.3 11.4 10.5 9.92 1.92 9.62 10.3 8.85 11.3 12 14.6 4.87 9.36 9.27 12.5 12.1 11.9 8.74 9.57 5.74 4.73 8.46 6.54 11 3.12 10.7 11.6 11.2 12.5 11.1 13.1 11 10.9 11.5 12.3 11.8 4.26 1.63 10.5 10.1 9.79 1.26 9.58 6.28 8.64 10.7 9.09 10.6 8.95 9.23 6.16 9.21 4.89 10.6 8.53 7.82 10.9 4.57 2.38 10.5 5.29 12.1 11.6 8.63 9.36 10.1 8.53 12.9 10.2 7.11 1.92 7.13 12.2 10.8 0.76 6.27 10.3 9.18 0.43 9.58 7.09 10 12.8 1.03 2.28 11.8 9.43 8.05 7.67 7.17 0 2.07 4.48 9.95 0 6.71 1.03 10.3 9.21 1.79 4.78 6.59 4.06 10.6 11.5 5.1 10.7 11.5 11.7 9.38 11.6 10.8 7.29 4.65 11.1 8.97 9.78 10.2 9.43 10 8.18 8.65 10.6 0.9 8.48 9.32 7.62 5.86 0 11.9 7.02 12.9 11.8 9.61 18.4 11.8 8.22 12.5 10.1 0.76 2.5 9.36 2.47 9.47 9.65 8.53 4.94 11.8 3.38 9.23 10.7 10.1 9.93 7.76 4.5 0.43 5.66 8.48 1.26 11.4 10 8.99 7.67 8.36 10.8 1.03 10.2 1.92 0 8.81 12.4 3.06 11.5 9.64 11.2 0.76 7.73 7.63 10.4 9.65 9.63 7.74 8.76 9.93 8.75 3.65 10.4 10.6 12.1 8.43 10.5 8.99 11 8.9 11.9 9.17 9.87 10.6 9.94 1.46 7.85 11.2 5.8 7.46 10.2 10.9 10.4 11.1 2.87 0 6.3 9.26 1.26 11.1 9.64 9.35 10.4 8.07 8.78 4.73 9.39 11 6.47 5.32 3.38 1.26 6.19 7.53 9.18 6.95 0.76 11.9 10.4 9.98 9.4 15.7 15.5 14.8 13.8 10.7 8.6 14.6 4.37 15.2 7.75 15.1 14.6 13.8 15.1 14.3 13.6 14.5 12 15.1 3.61 12.9 13 9.91 13.6 14.2 14 14.3 14.2 14.7 13.9 14 14.5 13.2 13.4 12.5 14.4 14.6 12.9 8.71 10.6 14.8 7.92 15.4 15.4 14 10.5 9.8 12.1 12.2 14.6 16 12.8 15.9 5.69 2.17 3.97 5.45 2.8 14.1 1.46 4 15.8 12.1 9.43 11.1 9.37 10.4 14.5 15.1 14.7 13.4 15.2 14.2 13.3 14.3 13.2 14.4 15.2 14.5 8.05 15.1 15.4 14.8 13.3 14.5 14.7 14.3 10.1 10.5 14.2 10.3 13.3 6.35 9.88 11.3 9.07 10.9 12.1 8.44 0 7.7 10.7 10.2 7.93 7.99 11.2 9.78 8.82 6.18 1.26 1.46 2.64 4.94 8.18 3.76 5.39 12.6 1.26 12.5 7.48 8.51 10.9 12.1 2.64 9.1 5.99 1.92 7.49 9.78 11.2 4.64 5.21 9.44 11.5 10.4 8.39 14.7 10.6 7.83 12.6 9.86 8.43 2.05 8.25 8.75 9.03 11.4 5.2 8.4 4.79 6.68 5.54 0.76 4.03 3.06 13.1 4 0.43 2.47 4.36 1.46 3.12 2.05 6.94 8.62 10.8 0.43 3.33 8.47 8.52 5.66 0 8.3 11.2 2.64 6.08 8.5 9.9 12.7 2.64 0.76 9.14 1.46 7.15 5.69 9.92 3.12 12.1 11.7 8.52 7.72 3.91 9.14 9.64 11.8 9.62 10.4 10.2 3.91 9.37 9.53 11.5 9.18 9.68 10.2 8.83 5.22 7.72 3.76 7.12 12.7 10.5 10.7 9.26 8.53 7.45 10.7 9.48 2.9 8.44 9.99 8.74 11.2 5.34 8.12 3.28 1.62 9.81 6.26 6.71 9.07 8.68 8.35 3.33 10.3 7.46 12.4 8.97 6.85 11.2 8.11 11.8 0 7.29 1.63 8.42 8.55 7.85 9.22 6.35 10.6 13.5 7.47 11.1 4.5 10.1 7.8 10.3 9.57 6.73 7.19 1.26 5.77 0 7.81 0.76 4.21 4.21 11.4 3.38 10.7 7.08 1.26 5.95 10.3 1.26 7.58 8.62 8.38 10.8 3.76 8.26 6.15 10.4 8.98 11.1 10.7 11.1 11.2 8.58 4.67 8.53 8.27 7.51 7.15 3.91 8.19 3.12 9.24 6.41 8.68 3.33 8.1 0.43 8.29 8.61 6.83 7.97 5.9 8.59 10.4 10.1 9.45 9.77 5.57 10.8 7.74 7.11 6.16 6.81 7.24 10.2 13.4 1.63 7.26 6.47 10.7 8.52 12.5 10.4 8.71 8.19 13.2 9.73 2.05 5.85 11.8 10.4 9.48 8.92 6.06 3.43 9.25 9.1 3.18 0 0 5.5 0 12.5 1.92 12 12.7 4.24 8.9 4.41 6.39 0.43 9.36 7.71 6.18 4.39 11.3 2.17 6.49 0.43 13.5 11.3 1.26 0.43 11.7 10.3 9.48 12.4 11.5 9.11 0.43 10.7 8.62 6.54 10.4 9.92 8.82 9.53 3.06 9.26 11.9 5.96 0.43 1.46 5.55 11.8 8.9 8.87 2.72 9.27 8.61 0.43 0 9.17 6.74 8.17 0 0 8.3 6.58 5.67 2.87 8.46 7.28 0.43 0.43 0.43 6.71 8.35 2.47 11.4 8.18 0 9.47 7.94 7.18 5.46 5.39 2.17 8.23 0 7.39 7.46 8.87 6.69 0 2.72 2.93 7.61 0.43 8.64 11.3 4.21 7.38 8.45 9.59 10.6 10.2 10.2 9.84 9.83 9.71 9.7 8.74 8.79 9.89 9.28 4.96 7.46 0 0 5.52 7.66 5.08 3.28 11.9 3.48 4.97 1.79 9.18 1.92 7.02 8.97 1.63 10.9 0.43 6.4 2.93 3.57 9.48 4.12 3.57 12.3 5.3 2.05 6.26 0.76 10.1 7.17 5.21 1.26 7.54 0.43 2.05 10.9 3.76 3.28 4.97 5.07 0.43 1.63 6.35 8.17 2.64 2.38 4.29 7.68 9.78 2.8 10.2 4.99 3.43 1.46 8.48 0.76 6.58 1.79 11.2 0.76 9.98 4.41 5.21 8.93 0 1.03 6.3 9.82 9.98 2.56 9.74 1.03 0 2.05 0 2.38 2.72 8.69 3.87 6.78 5.29 10 10.6 11.9 5.08 4.99 7.79 12.6 2.28 3.23 10.7 13.2 9.65 9.9 10.5 8.28 7.74 5.24 8.03 11 9.26 2.56 11.3 9.53 9.74 4.29 8.82 10.2 9.53 8.8 10 8.34 8.63 12.8 8.69 8.67 8.43 9.58 9.72 8.47 10.7 10.9 10.6 11.4 7.93 10.3 9.02 1.03 9.69 8.74 7.8 7.4 7.77 8.7 8.26 0.76 10.5 11.4 5.61 2.56 9.93 13.2 1.03 7.48 7.74 3.28 10.5 11 10.7 10.1 6.51 8.32 8.44 7.72 9.33 5.49 10.7 9.97 9.61 3.06 9.88 9.7 7.78 11.1 9.95 11.3 8.13 10.1 6.35 7.05 8.89 8.75 7.06 1.26 5.34 5.08 8.34 8.24 9.96 4.24 5.22 3.43 8.39 5.35 8.91 0 9.32 8.99 11.7 6.81 10.4 3.18 4.86 12.6 7.87 10.2 7.75 8.34 8.87 4.75 10.5 0 10.3 10.1 9.56 10 10.3 9.69 9.62 9.6 9.99 9.62 8.66 9.3 10.1 10.6 2.28 6.61 11.6 10.2 10.2 9.15 7.22 7.63 4.67 9.4 7.24 12.1 4.96 3.84 10.2 2.72 11.3 9.72 6.86 1.63 7.03 1.79 4.55 0.43 9.06 4.71 4.5 10.1 10.1 10.5 8.97 11.5 9.22 10.2 0 11.3 10.7 9.3 9.82 10.3 1.79 10.1 5.86 13.1 9.42 9.93 3.33 12.6 3.12 10.7 1.03 4.75 12.4 0 11 11.1 5.83 5.36 10.3 9.28 9.58 7.01 5.81 8.25 9.42 7.7 9.48 11.7 9.42 3.37 2.47 0 0.43 3.52 3.91 0.43 7.55 0 9.78 3.33 5.8 1.26 0.76 5.82 5.68 0 0.76 7.93 3.12 9.73 8.62 0 9.79 6.18 0.76 0 6.54 6.93 8.54 6.95 11.1 0.43 6.91 6.26 8.45 2.56 9.72 7.17 6.76 2.05 4.41 10.1 5.15 9.09 5.5 3.28 4.93 1.03 10.8 5.36 0.43 3 0 9.26 6.69 4.91 9.13 1.63 5.87 7.34 3.65 4.45 1.46 7.11 1.03 0.43 9.46 6.68 7.81 0 1.79 8.55 0 7.07 0 9.04 2.17 6.47 10.4 2.72 5.75 10.2 6.2 7.51 2.05 2.05 8.13 11 7.87 10.3 8.39 1.92 1.79 4.12 4.8 6.18 3.52 6.7 9.74 4.5 8.69 7.75 11.3 9 11.3 5.93 9.04 9.07 11.9 10.3 8.22 8.49 7.98 10.5 6.85 3.57 7.97 3.38 11.9 7.91 10.4 9.47 10.7 8.97 0.43 9.08 9.09 3.06 3.43 0 5.18 9.73 9.48 11.8 11.7 11.7 8.95 7.6 6.62 11.3 1.14 10.4 7.48 9.55 8.92 7.75 10.8 11.1 12.1 2.93 6.76 3.69 8.78 9.55 9.06 8.08 9.27 5.93 4.69 11.2 11.9 11.1 9.72 12.7 10.4 10.2 11.1 10.9 12.2 11.3 10.2 10.4 11.3 10.9 8.43 7.07 6.79 11.3 11.2 8.92 9.57 0.43 11.9 4.61 13 8.12 10 10.5 12 7.31 8.23 9.51 9.55 10.2 7.43 8.22 2.05 0.43 3.28 8.77 10.8 9.57 9.79 10.6 8.16 11.9 8.31 9.05 5.4 15.5 9.38 10.2 11.1 13.1 10.2 1.26 9.39 9.96 5.18 10.8 7.57 6.55 13.7 0.43 3.87 11 5.15 10.1 10.2 8.55 0.43 11.8 9.68 11.2 12.6 11.3 11.8 11.5 12.3 9.91 10.8 7.6 11.1 11.6 10.8 9.93 12.8 9.68 10.3 11 11.1 10.4 11.3 12.3 11.6 12.1 12.1 6.71 4.73 1.03 11.5 9.21 11.8 12.4 2.28 11 3.87 12.1 11.2 13.4 5.52 10.9 10.6 1.92 0.43 2.56 0.76 0.76 3.38 0 1.53 13.6 2.42 0 0.43 2.96 10.7 11 4.09 8.94 0 4.31 10.8 7.8 7.98 7 11.9 9.75 4.71 1.46 11.3 10.3 4.8 2.87 7.75 6.55 7.79 10.1 10.8 7.27 11.6 9.3 8.91 7.53 9.65 7.94 12.8 1.26 8.23 10.4 12.6 6.69 11.6 9.33 9.92 8.51 12.4 9.96 9.37 9.94 12 9.2 10.6 9.99 11 3.38 13.4 3.52 2.56 4.09 10.4 1.03 6.62 0.76 1.26 0.76 11.8 8.54 1.92 8.61 7.64 9.86 9.45 7.99 8.18 12.6 7.91 10.9 11.7 5.55 10.5 10.6 9.61 8.98 7.71 8.88 4.71 0.43 12.3 13.6 13.3 12.3 13.2 9.85 10.1 11.1 4.12 0 9.82 10.9 9.11 10.4 8.54 9.29 8.46 7.58 3.91 3 5.86 8.42 11.7 6.99 4.09 2.56 5.02 6.58 10.2 1.03 0.43 11.8 4.92 10.5 12.9 7.05 4.5 12.9 5.4 6.34 9.56 8.32 10.1 3.23 11.4 7.07 10.3 8.93 9.72 10.7 0 10.3 11.5 12.2 12.5 1.03 4.61 9.39 10.5 9.21 6.39 10.5 10.1 9.31 9.77 12.4 8.28 6.89 7.59 6.79 1.79 7.43 13.9 10 6.55 10.8 0 8.67 11 3.91 9.57 1.46 9.02 5.45 8.06 9.65 5.01 8.47 11.4 7.16 11.4 3.23 7.62 4.39 14.3 9.3 6.77 11.9 8.94 5.13 8.08 0 11.7 10.4 0.43 10.4 5.87 9.31 10.1 3.38 11.6 0.43 7.63 11.5 12.2 7.87 11.6 2.17 1.79 10.9 2.64 7.45 3.61 0 12.8 10.1 10.1 10.8 6.62 8.94 12.8 12.3 12.7 6.33 11.2 7.94 10.2 8.98 14.1 4.15 11.4 6.52 9.77 10.8 6.52 13.7 10.9 7.75 9.24 4.55 9.8 16.7 11.6 5.84 7.89 6 10.3 9.2 9.61 10.2 9.7 7.74 11.7 17.9 9.93 8.11 5.38 9.54 1.92 9.66 10.8 10.6 8.63 7.89 10.1 12.8 2.87 4.26 0 2.05 9.73 0 9.88 4.84 12.6 12.3 7.77 4.26 11.4 11.5 9.12 11.4 9.47 9.81 12.9 10.7 7.64 8.68 5.13 11.2 0 14 11.7 11.5 10.1 13.8 13.8 8.79 10.6 11.3 3.52 16 0 11.6 7.52 9.17 14.8 9.67 10.1 9.82 10 6.77 8.74 8.24 0 12.7 11 10.2 6.2 0 6.01 0.43 4.86 5.41 9.46 8.37 0 4.18 4.48 11 8.97 10.3 0 10.7 1.63 9.49 10.7 6.87 10.2 6.37 8.65 10.8 10.4 11.2 10.7 9.23 6.54 8.53 7.79 8.38 4.61 12.4 5.71 6.35 0 5.25 6.36 9.49 10.1 7.95 4.55 3.06 4.43 5.22 7.64 1.92 7.41 6.32 0.43 5.7 7.87 10.8 2.8 8.57 0.43 6.58 7.37 12.5 6.81 6.38 1.46 7.91 7.88 7.39 0 6.37 0 7.18 7.31 4.65 1.26 4.65 9.81 6.64 4.53 13.6 2.64 8.49 0 5.92 0.43 1.03 8.53 7.82 2.72 7.75 0.76 3.28 10 4.82 9.01 4.55 4.41 3.38 4.41 1.85 0.43 5.04 8.12 12.4 4.67 0 2.47 6.81 2.05 3.91 5.62 2.87 0.43 7.98 11.6 7.75 5.86 7.16 1.03 6.05 11 5.05 6.42 1.03 9.25 11.7 3 0.43 2.93 10.7 0 8.24 3 3.52 1.03 6.04 8.73 0 1.26 0 8.03 5.24 7.8 4.63 9.78 1.46 10.4 0 11.1 0 13.9 3.69 14.2 14.9 14.5 0.43 10.1 12 10.1 9.18 11.7 12.6 10.4 8.35 11.3 10.4 10.6 12.1 2.17 11.2 12.1 12.6 9.61 10.2 9.5 11.5 10.9 12.3 7.03 8.49 0 2.38 13.5 4.18 11 5.18 9.66 7.52 8.32 10.9 6.37 9.12 9.16 8.36 9.24 10.8 11.1 10.4 2.47 12.1 0 11.9 11.5 11.8 10.8 11.2 9.89 9.74 10.8 11.8 9.99 0 11.5 8.28 9.13 11 11.6 12.7 11.8 11.4 10.8 10.3 10.4 14 12.3 10.6 11.2 9.95 8.25 11.1 7.24 3.69 10.6 0 13.7 14.8 1.26 1.73 3.87 5.59 2.38 6.05 9.61 10.2 3.52 1.63 4.99 11.9 12.3 12.4 12.9 12.9 11.6 9.83 11.9 10.5 10.3 7.76 11.5 9.11 5.61 2.64 4.87 8.52 5.52 0 3.91 0.43 2.47 4.09 2.05 2.93 0 8.23 8.22 4.75 12.5 2.05 0 0 8.66 8.2 10.8 6.9 9.93 3.61 11.9 9.65 5.98 8.73 7.56 12.9 13.4 7.61 7.47 10.2 13 6.16 13.1 12.4 11.9 14.1 7.31 12.8 11.2 4.87 11.8 8.34 9.52 8.86 6.54 8.12 9.38 5.93 7.97 5.36 12.6 6.91 9.17 7.06 7.38 6.95 6.21 7.65 4.6 6.22 8.4 8.51 9.82 7.25 10.8 7.56 7.44 4.57 8.09 8.69 7.41 7.11 7.57 8.56 7.4 7.51 7.16 8.11 7.76 6.94 7.03 2.17 0 4.55 6.26 5.46 7.86 8.77 9.62 7.83 3.21 8.61 3.23 7 8.8 7.71 1.03 3.28 5.5 3.52 5.76 13 6.57 4.06 1.46 1.84 1.39 0 5.07 8 8.61 5.72 7.19 7.78 3.57 7.16 5.88 7.83 8.4 6.22 5.53 9.23 8.54 7.25 1.26 10.5 10.6 9.11 10.1 9.64 4.39 6.33 1.92 8.86 3.38 11.4 8.08 6.33 5.46 5.44 2.56 6.72 10.1 7.2 8.07 0.43 7.31 8.31 6.55 7.09 8.54 6.32 9.26 8.42 8.61 3.28 5.59 11.9 2.87 7.32 8.45 2.47 5.28 11.2 10.2 4.25 6.97 5.64 7.86 5.28 8.32 4.15 4.12 6.05 6.86 7.83 6.22 3.52 3.94 4.8 6.11 8.29 5.07 12.8 8.83 10.5 6.51 4.57 11.3 8.31 14.3 5.06 13.2 8.06 11.6 7.05 3.38 13 10.6 7.66 8.1 10.9 9.11 12 4.43 3.06 2.8 6.5 14.4 5.95 2.56 9.57 9.95 8.86 4.5 9.33 10.8 11.1 12.1 9.2 4.59 10.8 0.76 8.9 9.69 7.93 4.34 8.14 9.02 10.1 7.19 9.18 0 1.26 7.39 11.2 6.26 9.88 12.1 8.8 10.4 9.45 7.07 4.5 9.69 10.2 0 9.97 9.73 7.84 9.55 8.28 10.6 9.56 4.41 14.1 11.1 8.07 10.5 8.95 9.24 9.97 10 11 9.01 8.43 11.3 7.34 9.92 8.36 9.89 11.4 9.03 9.92 4.96 8.63 8.79 10.2 9.16 9.1 7.16 7.27 7.8 11.7 7.63 7.95 10.8 7.61 10.1 11.1 10.1 11.1 10.1 8.51 6.05 9.51 8.9 7.92 2.17 5.63 10.4 9.46 8.04 0 10.6 10.4 11.1 10.4 7.67 7.53 8.05 8.18 11.3 11.3 8.05 10.5 9.54 10.6 9.92 8.02 6.45 5.38 9.79 7.16 4.32 6.43 11.1 7.51 8.45 10.1 9.05 12.9 11.1 7.95 0 5.94 7.92 12.5 1.26 10.8 8.24 3.94 9.24 7.48 7.45 7.75 7.85 9 12.2 9.65 9.57 5.32 9.84 12.2 3.28 9.85 11.4 9.99 5.96 7.19 1.09 8.84 0.76 0 0 10.4 5.33 9.09 11.1 4.75 8.3 1.92 2.05 8.09 0 10.4 6.36 9.5 8.87 6.2 12.6 12.2 8.06 4.21 7.79 7.08 10.5 4.12 2.28 1.03 0.44 11.7 8.68 7.47 0.76 9.85 11.6 8.74 8.71 9.99 9.77 9.96 6.91 5.78 11.8 10.7 10 9.69 9.45 9.26 9.27 8.25 6.79 6.22 10.9 9.56 6.91 9.13 1.03 7.41 4.06 7.1 8.91 5.41 6.4 9.54 10.4 10.2 10.1 0.76 8.96 7.74 1.26 8.32 8.16 9.27 4.59 5.88 7.64 4.06 9.85 7.62 8.68 8.08 5.74 8.72 8.11 1.46 8.53 11.2 8.69 8.99 9.94 10.9 10.8 7.71 10.4 1.79 10.7 7.06 5.49 7.22 8.9 7.92 9.01 8.95 9.75 1.26 7.75 7.25 10.2 9.65 9.22 7.79 3.69 9.22 8.49 10.3 8.27 8.16 7 7.7 8.74 6.43 6.79 8.71 8.67 9.62 6.67 7.42 6.2 8.27 8.83 8.24 7.6 9.47 10 7.88 11.6 8.32 10.1 8.76 10 8.49 9.39 9.6 11.6 10.2 7.61 2.56 8.36 9.38 6 10.1 8.53 6.95 1.46 9.01 7.98 9.03 9.16 7.82 7.4 6.84 0.79 7.86 6.92 6.54 4.41 0 10.5 3.48 10.2 9 8.19 7.77 0.76 7.49 8.63 4.18 9.66 6.56 9.72 6.33 8.19 9.78 6.39 4.55 4.96 7.99 8.4 8.02 9.66 4.36 1.03 3.57 1.79 8.18 5.02 7.43 11.8 9.4 11.8 9.93 8.93 8.27 9.07 6.59 10.2 0.76 9.69 4.82 7.33 8.05 6.69 11.2 8.08 10.7 9.71 7.03 2.8 5.65 6.78 3.87 8.99 0 5.58 6.31 2.8 7.62 7.77 9.94 5.34 7.3 8.19 8.45 9.58 1.92 10.1 7.64 6.45 7.35 8.18 4.24 6.4 5.18 4.5 6.77 3.87 7.16 7.2 0 8.66 3.06 0.43 4.61 9.33 2.47 3.57 0 6.43 9.2 4.97 5.82 8.6 6.22 9.61 11.3 3.57 7.97 9.81 8.44 10.7 4.73 9.29 8.4 5.85 8.86 9.91 7.53 6.5 6.44 8.88 8.32 13.2 8.02 7.73 10.6 10.1 10.2 5.93 6.86 8.1 6.37 6.99 9.63 10.2 10.8 3 4.29 1.46 7.19 8.98 7.6 7.14 5.07 8.27 8.36 7.96 0 6.68 3.23 5.2 4.94 6.87 12.2 6.08 9.78 1.63 8.62 1.63 1.92 10.4 9.42 0.43 6.74 7.26 1.35 9.52 0 4.12 9.44 2.56 9.02 6.13 11.2 6.54 10.2 9.73 5.96 7.66 9.33 6.57 7.77 8.52 2.8 8.06 0.43 9.28 8.62 8.12 8.22 6.73 7.29 6.93 9.74 8.63 0.43 4.77 1.03 11.7 0.76 1.03 7.18 8.37 5.14 8.43 7.97 9.14 8.97 11 8.76 8.66 6.94 9.33 9.02 8.3 7.77 8.56 6.35 8.96 9.24 10.2 9.49 4.26 1.26 0.76 4.39 3.18 5.17 7.86 8.58 0 6.01 3.65 0.43 7.17 11 13.3 2.05 7.2 6.28 2.05 8.69 0 8.97 4.97 6.17 5.32 7.68 4.65 10 5.52 10.2 9.47 2.05 10.2 9.05 11 11 7.77 9.14 9.8 8.66 10.4 7.08 10.6 7.28 10.2 7.51 7.72 8.5 6.81 7.96 8.94 8.31 8.04 9.09 8.29 10.7 7.2 10.6 10.8 7.14 3.12 9.98 9.21 4.15 9.57 10 10.5 10.7 7.11 9.43 9.16 7.98 2.28 11.3 9.52 9.34 9.4 10.7 6.68 9.57 12.7 11.4 8.13 11.7 9.88 6.45 10.1 2.87 9.05 8.54 8.93 0 8.41 2.87 6.75 8.47 8.4 8.2 8.58 9.35 2.56 11.3 9.03 3.18 6.64 10.3 12 4.91 8.57 11 9.8 3.97 10.1 12.3 8.35 7.15 4.21 5.97 8.16 9.4 5.3 5.67 6.81 7.16 1.92 9.71 9.54 8.46 4.53 3.28 11.3 2.64 2.47 11.6 8.35 3.65 7.7 8.47 11.1 7.17 9.01 11.1 9.57 1.03 9.8 3.69 10.6 10.2 8.09 10.7 7.93 13.6 8.44 7.16 9.69 10.7 7.2 13 8.65 6.03 8.24 4.31 5.05 12.1 5.08 11.9 1.03 1.46 4.59 0.76 5.21 8.6 7.38 6.49 9.41 6.1 5.67 4.68 6.54 6.23 10.2 8.45 8.24 10.1 13.3 7.06 6.86 12.1 6.63 11.6 11.7 10.9 11.9 10.2 13.1 7.86 7.44 7.79 9.65 9.24 4.12 9.87 10.5 9.23 6.2 9.43 6.72 10.9 9.62 7.53 9.59 8.05 10.2 4.8 3.33 4.3 2.5 11.1 9.42 9.46 9.85 3.57 2.8 10.3 12.8 6.7 2.47 3.69 8.8 7.05 7.03 9.77 6.28 11.8 11.8 14.5 5.33 9.08 3.06 1.46 1.92 11.9 11.7 9.71 4.97 9.33 13.3 12.2 9.27 9.09 1.26 4.83 2.17 5.32 11.3 2.93 9.05 9.22 10 12 9.86 5.08 11.8 9.36 8.34 14.2 7.98 10.9 10.1 9.64 7.89 9.63 9.63 8.04 9.87 9.75 9.02 11.9 2.28 9.66 5.36 9.12 9.07 6.88 8.71 9.03 1.46 7.4 8.26 6.88 11 11.2 10.6 5.4 10.3 8.65 8.76 8.22 11.6 11.2 10.7 2.05 6.03 10.1 10.1 9.79 5.92 11 7.83 8.93 11.3 4.37 11.2 8.91 10.8 12 12.1 8.2 5.47 2.56 10.7 1.79 12.3 5.2 2.56 11 10.3 3.38 9.39 6.2 8.57 9.34 6.3 2.93 8.71 9.71 7.56 8.09 7.5 9.07 8.58 6.12 9.47 1.06 9.27 6.84 9.59 9.95 5.11 12 9.84 13.3 10.7 6.53 8.75 11.8 9.03 9.88 0 8.47 9.75 2.49 10.4 9.59 8.39 8.93 4.59 7.85 6.41 8.77 8.71 6.81 12.1 8.37 8.16 10.8 13.1 6.48 9.77 4.43 13.5 8.95 1.46 9.77 10.7 9.55 8.13 13.5 8.83 11.3 12.1 10.9 11.5 11.9 12.2 7.03 12.9 11.3 8.72 11.4 6.7 9.9 10.8 1.26 6.63 0.43 11 12.9 9.35 4.67 9.18 3.52 11.3 11.8 11.6 9.23 4.18 12 8.48 10.1 4.15 11 8.85 8.31 9.18 13.3 6.38 8.02 8.06 6.35 7.17 5.18 1.03 0.76 11.1 3.48 2.17 3.61 10.8 5.71 11.1 2.64 7.53 3.38 9.29 2.93 3.97 4.84 10 3.06 3.18 6.33 6.4 10.5 13.1 11.1 7.96 7.65 0.43 5.08 0.77 7.46 7.77 0.43 9.01 9.76 9.89 8.9 8.18 8.25 5.34 8.5 9.35 9.25 5.22 8.84 3.97 10.7 9.58 10.9 2.28 8.38 3.76 5.69 1.79 0.76 8.83 8.43 4.75 6.77 6.71 8.54 9.23 6.3 8.24 2.93 7.18 3.28 0.43 10.3 6.96 1.79 11.5 5.13 6.01 9.58 9.96 2.38 7.67 11.8 11.5 9.46 8.4 0.76 5.11 9.33 12.3 9.85 2.64 8.86 12.4 9.14 7.52 6.45 8.92 1.26 0.43 11 1.46 7.48 9.76 9.87 4.79 5.22 10.4 8.48 7.78 9.66 9.34 0.43 1.63 4.92 10.7 9.4 8.81 13.8 10 6.1 1.46 9.59 10.1 8.25 1.63 5.17 9.35 3.57 6.01 9.37 9.04 10 5.57 10.4 10.1 11.2 7.74 8.52 11.3 9.09 9.7 0.43 2.56 1.26 8.52 1.79 6.57 9.36 6.72 6.56 9.74 7.49 5.3 8.6 9.18 6.33 9.58 3.57 3 9.52 4.73 9.54 6.49 6.38 1.03 4.63 0 3.69 0.76 5.25 9.79 10.7 7.96 9.28 10.1 10.8 7.42 10.2 11.1 5.68 10.7 10.4 7.75 7.66 6.09 6.66 0.76 8.05 3.61 5.21 10.6 7.42 10.2 4.39 9.92 10.3 6.77 8.5 7.71 0.76 5.64 2.38 0 8.58 9.36 7.05 5.78 10.7 6.46 10.5 10.9 10.3 0.43 10.1 7.36 8.98 0.43 6.08 8.53 11.5 10.5 3.43 9.6 9.79 8.44 7.51 4.73 13.9 3.12 3.06 0.76 4.87 5.71 5.68 9.77 8.92 6.97 9.4 6.07 4.73 8.25 11.5 2.05 10.2 5.04 3.43 7.55 7.49 4.82 7.5 8.93 10.2 9.33 8.35 10.3 7.74 8.13 8.16 4.71 8.67 8.18 8.4 7.26 8.02 4.12 9.34 9.24 0.76 10.7 8.55 9.35 3.43 9.05 6.86 10.9 12.8 6.14 11.7 9.93 5.41 9.72 8.5 6.68 6.79 7.2 8.32 5.21 9.61 10.2 9.27 0.43 5.39 7.06 10.1 10.3 11.5 3.28 8.74 7.95 6.2 0.76 6.22 2.93 8.74 5.1 8.12 3.84 11.1 4.63 4.41 4.48 0 8.73 12.2 10.7 9.27 7.98 3.48 8.69 11 8.44 9.64 7.68 10.6 1.46 9.66 7.43 5.65 5.63 5.69 7.35 9.58 3 9.94 9.03 6.85 9.83 8.36 7.87 9.6 8.86 8.24 8.9 8.87 10.1 8.62 11 9.48 9.96 9.32 8.65 8.58 8.75 5.65 8.45 11.6 9.57 5.63 8.96 7.19 8.74 10.1 8.03 9.76 5.4 8.96 0.43 8.5 8.65 8.42 10.7 8.66 10.3 9.9 10.7 9.68 6.19 4.26 8.78 11 9.74 7.62 7.53 9.14 0 8.7 8.94 6.98 10.4 7.98 7.78 9.75 10 7.91 8.63 9.19 9.9 11.3 8.41 2.8 7.77 7.59 7.39 9.22 0 9.64 9.12 9.34 9.48 10.6 6.96 9.02 9.19 9.79 0.76 5.11 11.1 10.4 8.48 9.52 9.02 9.73 5.29 9.28 0 8.9 9.18 10.1 12.9 6.88 8.97 7.17 6.53 7.43 5.89 10.8 9.08 5.67 12.8 3.8 6.03 8.56 9.38 8.18 6.38 7.01 4.26 9.48 6.17 8.92 9.03 0.76 4.03 1.92 1.7 10.4 8.74 11.2 3.43 1.92 6.37 10.7 8.46 9.76 8.25 12.1 4.36 2.64 7.07 11.5 7.93 9.88 7.74 6.84 7.73 6.47 9.84 7.93 5.38 11 8 7.36 9.58 6.79 9.3 9.16 9.09 5.65 7.6 8.62 0 9.77 9.54 10.2 0.76 7.94 3.61 3.8 10.9 9.63 8.04 1.46 6.81 3.28 8.94 7.38 8.55 5.61 10.8 8.88 8.23 2.8 6.08 5.33 9.66 10.9 4.48 9.66 8.16 11.6 4.15 0.76 0 0.43 9.46 9.21 9.59 9.68 11.4 6.35 7.97 4.73 10.4 6.71 0.45 6.29 9.3 12.2 3.23 3.52 6.65 9.91 1.92 2.38 0 10.3 4.43 2.47 2.47 8.07 10.6 5.86 3.91 3.87 10.6 9.4 6.61 6.61 12.4 7.83 12.8 6.55 6.95 1.79 3.91 9.22 6.88 6.1 7.66 8.5 7.87 5.2 7.45 8.35 7.26 2.72 6.54 6.33 9.07 12.6 7.03 8.67 7.01 4.21 10.4 9.32 4.36 7.01 9.72 3.33 8.05 9.37 9.95 5.71 5.79 3.87 6.28 10.4 7.01 9.12 8.08 11.7 9.92 8.17 9.46 7.75 4.59 10.1 9.86 3.28 7.82 0 9.02 9.37 5.14 7.02 5.56 8.02 8.65 8.6 11 7.68 7.89 9.51 8.29 7.9 7.53 0 7.96 5.42 11.2 10.7 8.44 6.58 10 10.2 10.9 9.05 10.1 8.9 0.43 7.4 10.9 7.03 9.22 9.93 10.2 7.65 8.15 8.99 7.79 10.8 7.79 8.13 8.08 10.2 7.57 6.28 11 5.98 8.95 5.18 8.12 5.29 10.4 6.53 10.5 2.05 6.78 8.09 9.81 6.38 6 10.6 9.33 2.47 7.87 8.7 8.81 9.23 9.65 8.65 10.5 8.12 8.55 5.75 10.3 7.83 2.56 8.38 9.5 6.46 7.21 10 10.4 2.64 8.34 2.05 8.98 8.86 10.3 9.91 6.91 8.12 2.57 6.52 5.39 7.58 9.92 3.12 12.2 3.12 8.76 8.71 10.2 5.44 0 11.2 7.43 0.43 6.99 0 9.46 10.3 7.43 3.64 4.09 12 10.4 10.4 5.25 10.1 4.75 2.17 9.11 0.76 9.35 7.23 8.01 9.22 6.87 7.15 8.31 10.4 9.67 8 8.46 8.35 8.67 7.95 9.07 10.6 8.94 10.1 9.59 6.27 1.03 11.6 4.69 0.76 10.6 9.71 12.2 10.5 0 9.74 2.28 13.7 10.9 8.2 9.02 4.26 2.28 8.76 0.76 7.02 5.94 11.2 11 8.45 1.63 7.8 1.03 0.43 10.1 6.75 8.66 6.69 7.53 8.44 7.56 8.38 8.43 9.78 10.6 2.17 9.1 10.2 5.84 9.77 9.98 6.22 11.3 8.06 10.1 9.54 11.2 3.52 2.05 5.14 1.46 7.12 7.46 2.56 10.3 9.12 10.2 3.87 8.54 8.78 10.4 3.94 7.82 6.32 11.2 9.79 9.49 6.79 4.75 9.98 7.25 7.24 9.27 10.2 7.98 7.81 2.72 7.82 9.5 9.12 4.18 5.61 9.96 3.69 1.03 9.24 7.79 3.57 0 1.63 8.95 2.01 4.84 11 8.36 6.43 6 3 9.68 8.5 10.3 10.4 9.54 6.78 11.6 10.7 10.1 9.57 8.95 11.4 11.3 8.11 8.39 9.4 10.1 9.94 5.69 8.38 8.2 8.26 10 7.72 4.09 1.03 10.9 9.34 9.97 7.14 10.8 2.64 4.39 9.6 7.94 5.35 8.85 6.52 10.8 3 3.48 10.1 3.73 10.8 9.23 11.1 9.77 9.12 10.9 6.08 9.32 4.23 0.43 10.2 10 10.9 7.04 5.38 9.33 12 3.38 8.37 3.94 7.06 5.05 6.38 10.7 9.36 11 9.89 9.91 6.97 12.2 8.87 6.45 5.95 12.6 12.8 7.76 12.8 12 12.1 12.7 12.1 10.8 11 2.87 11 11.7 8.49 10.9 9.1 9.04 10.9 8.63 7.1 12.5 12.3 5.63 8.85 10.1 7.42 8.6 9.57 9.71 11.9 2.08 8.88 10.2 9.18 9.38 7.19 1.03 0 12.7 5.02 8.81 9.17 9.36 5.17 11.2 12.4 8.06 9.55 11 9.91 11.9 9.01 13.3 11 10.3 8.75 8.46 10.8 3 9.26 7.56 6.19 1.03 9.7 9.65 9.79 5.42 4.61 0 0 6.6 11.2 9.7 13.8 10 12.4 11.8 10.7 10.9 9.36 8.29 10.9 11.2 8.63 11.1 11 8.31 6.64 8.02 10.5 5.48 0.76 4.09 6.59 7.38 5.55 6.81 5.3 11 7.75 9.19 9.26 2.72 7.14 9.79 10.6 9.4 11 9.21 2.38 4.36 2.05 1.46 10.3 9.52 4.5 12.2 9.81 0.76 9.78 8.33 3.12 4.89 0 9.6 3.69 12.7 10 9.67 7.55 8.53 8.79 10.2 9.01 7.39 8.38 12.9 0 0.43 7.3 11.3 0 4.48 7.56 11.6 7.92 7.62 12 8.71 7.88 6.93 0 6.55 10.1 2.17 7.78 10.9 8.66 5.54 7.83 6.73 10.2 9.46 7.82 11.5 9.8 10.1 6.71 8.64 9.54 13.8 10.7 10.9 10.1 10.8 10.1 9.16 10.7 11.4 11.6 9.22 9.83 9.42 9.93 9.98 11.4 9.82 11.1 9.9 10.2 10.3 5.28 10.2 0.76 11.1 8.75 10.9 10.7 5.66 4.43 11 8.52 1.46 6.49 9.72 5.04 10.7 9.99 7.96 9.26 10.1 10 5.91 3.52 0.56 10.6 13.2 9.36 11.8 11.8 6.16 4.13 9.59 8.44 9.35 8.69 11.8 9.01 11 1.03 5.11 10 10.5 2.17 0.76 9.42 9.17 8.38 4.53 0.76 9.28 4.79 13 4.5 8.93 6.52 9.77 6.59 3.73 5.48 3.91 5.89 9.73 10.4 9.38 9.29 10.3 7.06 10.5 8.28 11.1 4.92 5.57 0 0 6.19 1.68 1.79 6.98 6.76 7.11 10.4 7.83 10.4 7.12 9.52 12.4 6.22 0.76 9.14 11.4 10.7 3.38 7.95 10.3 7.57 5.18 8.45 5.63 0.43 7.27 8.6 11.6 10.7 3.61 6.49 5.41 7.73 5.72 9.17 7.46 0 10.3 10.9 9.55 0.43 9.42 11.2 7.79 6.05 6.16 7.26 2.56 10.8 11 9.55 10.5 7.32 8.06 11.3 4.21 4.29 4.03 10.8 6.26 0.76 1.26 4.09 8.56 9.44 10.6 0 4.69 6.26 3.28 3.18 4.57 11.8 9.44 6.16 8.47 10.3 8.07 3.38 5.34 7.81 8.38 7.97 0.76 5.5 7.58 6.42 7.62 9.48 9.87 7.58 10.9 7.97 6.3 11 8.42 8.37 10.8 9.26 8.81 7.35 11.4 10.3 9.47 10.7 13.4 8.35 8.06 7.32 0.43 10.1 2.64 10 12.4 8.83 5.95 4.71 8.95 9.94 1.79 9.71 5.49 0.43 7.12 4.63 9.02 10.7 9.67 3.69 10.7 10.2 6.22 7.43 1.26 4.07 8.63 6.3 9.73 10.7 8.54 8.02 8.63 7.01 8.02 7.85 8.43 5.5 5.69 5.34 6.01 8.93 3 7.14 8.36 10.2 11.6 0 6.51 0 0 1.63 10.3 6.94 7.74 12.6 1.63 8.56 10.2 7.21 7.92 9.92 10.5 7.25 10.9 9.4 6.74 9.63 6.56 9.45 2.87 8.35 11.8 10.5 9.85 10.5 5.38 9.01 10.2 8.83 2.17 9.93 4.96 8.24 9.28 8.16 11.2 7.33 11.2 9.73 11.7 10.3 7.88 11.1 1.03 6.16 9.91 7.83 9.89 4.26 6.79 9.56 9.61 9.76 9.95 6.18 6.91 4.24 9.98 12.2 4.97 7.52 8.68 7.63 2.93 0 8.64 7.92 6.92 6.98 7.32 11.4 11.9 8.86 10.1 10.5 2.05 8.69 10 8.72 10.6 9.71 8.57 5.88 11.7 11.9 11.1 11.2 7.6 8.45 2.87 9.97 7.46 10.3 7.18 0 5.05 9.56 8.97 9.67 10.3 12.4 8.41 4.03 7.63 9.5 8.29 9.09 2.87 10.2 8.18 8.78 8.63 12 6.28 9.63 8.46 2.05 9.84 10.6 7.75 9.53 3.69 7.79 6.73 9.72 3.57 12.3 8.59 4.97 8.5 8.15 8.1 11.7 10.8 4.79 10.2 7.84 8.34 8.9 4.12 10.1 4.73 6.91 0 8.55 7.19 8.67 6.95 1.92 10.4 6.83 11.1 14.7 7.61 10.6 11.7 9.43 7.07 4.26 9.72 7.01 3.48 0.76 5.79 10.3 9.95 6.37 3.07 6.35 8.08 11.1 6.2 9.67 11.8 8.51 8.01 7.99 3.57 11.9 2.56 9.4 8.54 11.7 4.79 1.79 7.28 2.56 9.4 6.49 7.69 11.2 10.1 7.82 7.05 9.77 8.49 4.59 7.59 7.49 0 8.46 3.87 9.67 8.46 4.41 2.47 5.89 6.41 11.9 5.14 9.97 5.48 7.34 9.05 9.72 9.89 8.32 7.76 8.11 11 9.76 3 5.68 5.46 10.2 7.37 10.5 6.52 9.81 6.61 11.7 6.41 7.35 3.76 9.19 9.73 10.5 8.52 13 1.46 9.17 11.5 2.28 5.42 0 11.2 6.01 5.88 9.16 3.38 1.03 5.8 4.94 8.39 1.79 0 0 6.54 10.8 0.43 9.35 7.42 6.33 10.7 10.1 4.51 7.87 7.62 7.19 11.6 4.06 9.42 2.38 5.47 11.2 9.07 7.22 8.75 9.42 0.43 9.56 4.21 1.26 3.43 10.9 7.64 1.26 6.45 8.42 5.79 9.9 8.42 2.47 9.86 10.9 8.55 2.28 9.69 8.54 3.77 7.29 9.76 6.45 10.9 10.1 11.8 9.86 12.4 10.3 7.34 3.65 9.8 9.38 10.7 9.61 7.72 6.12 9.75 10.2 10.2 8.92 9.26 9.14 11.4 11.6 10.5 8.62 6.43 12.1 10.3 7.08 6.43 11.2 9.16 0 8.93 3.73 10.6 7.67 11.6 3.97 10.2 9.41 9.12 8.33 9.42 4.53 11.3 12.1 4.31 2.05 10.1 7.95 5.61 11.8 10.8 1.63 4.65 8.1 7.33 11.6 7.93 3.97 14.8 4.48 8.97 8.36 2.87 9.4 8.68 5.82 4.61 9.44 4.57 1.46 7.72 10.2 6.16 10.3 8.49 12.3 8.81 8.02 9.12 4.63 9.59 9 9.24 10.4 7.88 12.7 9.33 7.3 8.85 8.69 1.03 9.15 8.94 9.76 10.3 5.97 9.65 9.82 9.74 0.43 11.7 9.88 10.3 5.28 0 11.8 14.2 0.43 8.4 5.32 11.4 5.46 10.7 2.93 5.72 1.03 5.72 6.97 6.64 8.13 10.3 11.1 8.42 0.43 12.1 7.25 9.12 8.12 10.3 8.73 9.44 4.15 3.05 0.44 9.28 6.65 8.82 10.2 3.57 10.6 5.7 10.2 7.27 11.2 11.6 3.43 4.89 13.3 4.18 8.52 1.92 5.21 0.76 12.7 0.43 10.7 8.26 8.84 5.38 8.09 9.38 10.6 3.23 3.38 1.26 7.37 9.82 4.82 8.29 10.1 6.8 9.68 8.42 3.61 0 11.3 3.48 9.32 3.73 9.06 12.8 11.4 8.61 10.5 10.3 0.76 9.53 9.21 8.11 10.4 9.9 11.3 8.58 9.92 7.35 8.26 9.98 6.06 0.43 7.82 1.03 8.66 10.9 1.92 12.1 8.4 8.56 6.6 8.98 4.12 12.4 7.41 7.9 9.43 9.15 2.28 4.69 3.33 10.3 13.6 1.79 8.79 2.72 9.9 9.13 8.75 7.63 10.3 12.2 10.6 10.1 13 7.08 8.71 8.79 7.38 9.18 8.74 2.8 5.83 11.4 1.46 7.05 7.26 5.18 10.1 11.5 1.79 8.21 9.78 11 4.97 11.1 9.18 8.26 6.34 8.96 4.86 7.56 0 2.47 8.31 8.14 5.76 7.84 9.32 12 11.3 9.46 10.8 9.03 7.65 2.17 8.48 10.9 11.8 5.57 9.8 4.36 9.36 13.1 8.49 11 10.1 1.26 0.43 12.6 9.05 6.35 8.67 7.11 10.8 8.75 8.38 9.79 9.95 10.6 9.71 11.2 9.69 12.8 6.53 9.22 8.93 9.24 6.9 10.9 7.25 9.8 10.7 1.03 10.3 9.15 0.43 8.53 9.16 2.93 8.72 10.3 12 10.3 9.2 10.3 11.9 10.3 10.5 9.98 1.46 8.48 10.8 9.58 10.6 7.6 5.79 5.9 10.3 7.38 7.38 9.81 9.37 12.2 6.44 9.02 7.77 9.62 11.7 8.95 6.38 9.21 11.9 10.8 1.26 7.34 11 11.7 1.92 13.3 12.7 12.6 10.9 9.59 7.85 6.13 11.6 6.29 10.6 12.1 10.3 7.87 11.7 9.12 11.7 7.94 5.32 4.06 1.26 13 6.06 8.64 12 4.67 0 8.7 8.79 7.03 7.34 10.8 10.1 11.6 10.3 10.5 8.36 10.5 10.1 9.21 7.16 9.01 7.73 4.31 9.95 9.6 10.4 7.7 9.88 8.69 5.42 10.6 11.2 16.2 7.53 9.16 10.5 8.04 10.7 5.46 11.9 13.5 9.74 5.55 9.93 9.81 11.2 9.32 9.6 7.73 10.6 10.4 13.1 8.83 9.93 10.2 9.04 11.7 10.7 6.44 12.2 12.1 11.3 11.6 10.2 8.84 9.75 11.2 7.3 12.8 10.3 1.03 7.22 8.25 10.2 11 10.4 12.2 8.75 4 7.93 1.92 11.9 8.53 8.44 11.1 8.94 4.8 9.81 0 7.64 5.75 17.6 2.05 1.46 9.11 8.29 9.42 9 9.39 14.3 9.81 8.93 7.81 10.5 10.3 9.17 11.7 3.73 9.58 9.87 12.7 11.4 6.93 7.62 12.1 10.7 7.37 9.24 8.79 13.7 9.98 7.36 6.17 6.93 6.71 10.5 7.17 11.3 10.4 11.5 5.77 7.77 8.58 11.2 10.2 8.89 11.4 12.8 7.52 9.72 11.2 10.9 10.8 10.4 8.71 9.86 5.04 11.7 7.06 12.5 10.3 11.9 11.2 7.92 10.1 9.69 10.2 10.6 11.3 10.3 11.1 9.96 3.12 11.7 11.9 6.74 10.1 12.8 11.6 9.77 11.5 10.2 1.63 11.5 7.74 9.92 11 9.57 10.9 8.85 10.9 10.6 7.99 9.79 8.73 7.56 9.42 8.91 9.02 6.53 8.64 8.85 10.3 10.7 7.17 8.8 9.25 7.83 7.79 8.64 11 10.2 7.8 8.43 9.56 8.9 12.1 10.8 10.3 4.15 8.16 7.38 9.72 7.77 9.53 8.33 3.43 9.72 7.9 9.73 6.95 10.6 10.6 4.94 5.73 7.76 10.7 10.2 9.89 10.1 10.3 10.5 11 10.3 9.53 11.7 10.5 10.5 10.2 7.4 11.7 9.04 11.9 8.39 9.11 6.54 10.5 9.13 12.8 6.62 8.09 9.76 9.25 7.97 9.62 11.4 4.26 9.16 6.35 5.82 12.2 8.86 10.1 8.8 7.65 10.7 11.5 11.2 10.7 10.4 5.17 7.27 9.99 1.79 9.86 9.52 12.3 11.6 5.79 12.3 11.8 9.46 9.73 9.08 10.1 10.9 8.2 10.8 8.84 9.18 9.92 4.41 10.1 8.65 8.17 13.4 11.2 10.5 1.26 8.11 4.12 10.4 9.61 8.01 13.7 8.83 6.47 9.41 3.43 6.3 6.13 7.59 10.9 10.7 9.78 13 8.94 4.39 2.05 11.6 10.3 10.4 9.78 2.46 10.4 10.2 6.68 7.19 10.8 13.3 8.9 8.3 6.78 9.03 11.2 9.98 9.62 2.17 9.49 11.6 1.26 10.5 7 9.71
-TCGA-FF-8043-01 8.67 11.6 6.26 7.52 6.23 9.34 0.68 3.48 0 0 0 9.8 7.68 4.81 0 10.9 11.3 9.34 6.85 9.82 9.83 6.68 8.7 2.54 9.89 7.78 4.15 10.9 4.6 7.79 7.2 3.45 2.92 0 4.9 1.16 5.03 8.16 1.48 2.81 1.76 3.23 4.29 1.14 1.14 4.1 1.48 0 11 8.47 4.95 6.41 5.52 9.12 4.5 4.1 5.04 0 6.96 7.15 6.67 4.2 4.84 0 2 1.76 7.97 7.8 10.7 0.69 5.72 3.76 2.2 1.48 0 1.76 5.7 5.56 3.4 0.68 5.03 1.14 1.62 8.3 6.68 5.84 7.76 5.72 5.09 4.34 9.86 2.54 8.19 3.23 4.31 2.54 0.68 0 5.52 0 3.23 4.53 0.68 6.52 0.68 2 4.61 6.18 8.08 5.38 0.68 0 6.14 4.92 3.78 3.23 2.32 2.81 4.94 3.23 6.41 1.48 0 1.14 1.14 4.92 1.76 2 0 15.2 4.4 4.64 2.92 7.43 0 2.2 4.29 0 1.14 9.38 9.58 10 7.08 4.64 5.32 11.2 0 11.4 1.14 1.48 4.49 0 7.94 11.1 12.3 7.76 0.68 0 9.55 1.48 6.49 5.18 1.48 4.95 8.04 8.05 7.06 10.4 10.7 2 11.6 9.28 0 2.54 4.92 4.68 3.03 2.38 6.06 13.4 4.57 10.6 2.54 4.84 5.07 1.76 5.25 0 9.83 4.1 7.74 7.39 2 3.76 4.15 4.33 5.7 11 9.82 6.53 2.81 2.3 7.14 10.9 9.67 7.74 4 9.32 10.2 11.7 6.09 3.14 11.7 12.4 10.9 7.12 8.63 10.5 2.81 10.5 10.5 11.3 11.3 11.6 9.46 9.49 2.81 12.4 9.39 12.5 5.72 4 11 6.53 8.19 6.84 12.4 0.68 8.66 4.87 8.11 4.15 13.1 14.2 14.2 14.5 13.7 14.8 2.2 9.96 10.9 0.68 5.7 10.4 10.1 3.48 11.2 10.3 0 14.2 1.76 9.58 9.12 10.8 4.29 8.71 6.53 10.9 12.4 9.77 6.03 8.6 7.78 8.87 10.7 7.02 2.54 13.2 10.2 10.1 13.8 10.2 10.9 8.45 11.3 7.32 8.56 4.54 11.5 11 10.4 4.5 7.46 7.72 8.8 9.34 6.46 13.9 9.33 4.42 0.68 12.4 9 6.58 9.66 12 1.76 9.64 7.25 8.36 14.5 10.5 3.94 8.42 7.23 9.4 10.7 0 9.48 8.11 11.4 11.5 10.5 9.19 10.5 11.7 12.4 10.4 9 8.48 10.1 8.02 11.2 7.25 8.95 7.54 9.11 8.03 8.49 5.46 11.2 4.05 8.65 7.72 7.44 13.9 10.6 7.78 11.3 12.5 10.4 2.71 6.84 0 5.67 9.45 7.75 9.86 2.81 6.69 6.45 12.1 11.6 9.39 9.77 7.76 8.61 1.76 7.25 3.94 10.3 11.6 9.44 11 9.07 6.69 9.15 9.33 2 8.73 9.76 12.3 9.06 9.9 11 10.3 5.06 5.03 5.3 8.01 3.63 9.18 10.2 8.7 7.56 11 13.2 0 6.95 8.98 8.51 9.41 8.5 9.88 8.98 11.1 8.14 9.32 9.14 5.45 7.45 5.73 9 8.94 9.16 11.8 9.4 10.3 12.6 7.23 10.1 11.9 4.46 11 9.77 10.3 10.3 10.7 3.78 8.64 9.12 12.5 6.74 8.08 6.18 6.09 8.1 9.03 10.4 9.92 13 11.8 9.24 0 12.6 4.38 9.5 11.1 0 9.39 0.68 9.23 8.37 12.7 9.12 8.85 10.7 11.4 2 4.05 5.92 9 10.1 1.48 7.98 11.3 2.2 2 0.68 7.96 7.18 3.63 11.3 3.63 11.2 9.09 7.26 9.87 8.23 7.03 16.6 10.1 0 10.9 9.68 6.29 13.8 7.43 8.09 4.25 6.66 7.88 9.91 2.38 13.8 7.97 6.69 6.52 9.23 10.8 12 16 8.87 5.4 8.07 7.47 5.65 10.6 9.01 2.2 0 12.2 0 11.5 7.8 11.5 6.63 9.9 5.16 10.4 7.09 12.5 10.6 10.2 8.9 10.5 8.21 8.24 10.4 13.6 11.2 10.8 10.2 8.08 10.7 15.6 8.43 6.63 10.6 9.42 10.8 11.9 5.28 11.2 11.4 0.68 11.4 6.44 10.8 9.07 8.78 10.1 13.4 7.6 11 12.7 7.09 7.91 9.5 6.76 11 8.62 12.2 4 9.69 1.14 11.5 7.04 10.1 12 9.22 12 11.1 8.77 9.67 13 11.2 11.3 8.94 2.81 13.2 10.3 10.5 11.4 11.8 11.9 10.9 11.6 9.69 8.36 10.4 4.53 0.68 10.3 6.05 7.92 6.9 7.75 7.94 9.25 4.2 8.94 9.19 7.45 3.03 5.83 11.5 9.53 7.47 11.9 8.76 10.8 11.1 12 9.74 11.2 12.6 2.2 2.92 10.6 10.7 10.7 11.8 8.83 11.2 10.7 11.1 9.85 12.6 13.2 12.1 6.18 9.97 11.3 10.9 0 11.1 10.2 10.7 10.9 10.2 8.81 10.1 8.28 4.74 5.28 5.72 0 8.19 9.4 9.97 3.7 11.3 0 10.4 3.89 11.2 11.1 14.1 15.6 12.7 12.7 8.51 3.83 7.81 3.23 9.99 9.71 5.99 8.93 9.7 12.2 10.5 10.1 9.89 11.6 6.32 8.99 12.3 7.25 9.73 6.72 10.5 9.33 11.7 10.6 10.4 7.82 3.4 8.92 5.78 8.44 9.55 10.8 11.7 9.94 11.7 8.29 5.9 8.43 6.04 9.59 10.2 9.91 14.1 9.88 9.56 10.1 10.9 13.7 2.92 7.35 8.35 8.67 0 6.42 9.84 9.97 9.45 4.71 12.7 5.38 9.85 11.8 13.3 11.3 4.57 12.7 10.5 7.25 10.7 2.92 7.39 9.86 3.23 8.8 7.15 0 10.2 8.37 11.2 6.84 0.68 3.03 13.8 8.16 12.1 6.7 7.07 11.6 7.76 0 6.59 13.8 12.3 1.76 1.48 9.06 7.77 8.25 10.8 9.21 2.2 9.61 16.1 8.01 9.09 10.7 8.36 13.1 13.5 6.19 11.3 8.86 7.56 14.5 10.9 3.56 1.76 1.76 0 7.67 6.63 8.75 2.38 8.73 6.61 0 7.65 9.99 11.7 13.4 6.88 10.1 9.19 5.99 9.62 9.49 8.81 9.51 9.59 9.95 6.53 7.21 10.8 7.15 10.8 10 9.67 6.72 9.64 8.71 9.95 9.48 7.34 7.05 10.2 7.37 4.98 7.68 10.7 7.4 2.2 1.48 14.4 8.95 1.14 0 9.11 9.68 12.1 9.5 3.48 6.08 10.9 0 4.81 7.03 6.88 5.68 4.1 8.7 8.88 4.38 1.48 1.14 11 8.45 5.16 11.7 6 7.21 6.28 12.2 10.2 3.56 7.63 4.1 5.72 10.7 9.05 8.11 10.4 10.6 12.9 6.16 4.53 0 8.49 0 2 9.45 8.85 1.76 2.2 10.1 0 9.86 9.53 4.92 1.48 11.5 10.4 11.7 10.6 8 11.4 9.85 4 11 7.58 10.3 12.3 11.6 10.6 7.61 8.4 5.03 11.7 9.34 11.8 0 11.2 10.3 13.2 10.6 10.9 7.41 9.49 8.82 10.7 9.97 0 11.2 1.14 11.6 0.68 13 11.5 8.11 2.68 10.4 11.7 11.3 11.9 8.32 10.7 12 9.27 10.6 12.3 11.1 8.52 10.2 13.7 9.94 11.5 13.2 12.6 5.34 12.7 5.14 8.03 5.16 11.7 9.88 11.6 11.8 9.08 5.89 11.6 9.36 8.32 12.3 9.24 10.6 10.6 5.56 11.6 11.1 11.7 12.2 6.85 0 13.5 7.98 11.2 7.78 9.44 7.58 3.14 11.8 11.8 10.8 6.42 0 7.55 8.8 1.48 11.4 6.4 8.39 9.1 10.1 7.79 6.03 8.73 11.5 7.44 2.81 8.2 3.4 4.29 8.18 9.04 7.42 12.1 9.13 5.32 10.7 13.2 7.11 5.25 9.17 0 8.09 12.8 8.04 10.7 10.6 11.5 8.97 9.45 9.18 8.99 10.3 7.57 3.32 9.62 11.8 9.96 8.52 10.5 6.61 10.9 10.2 6.92 10.1 2.81 3.63 9.11 12.1 13.2 6.57 5.14 10.2 10.5 6.04 5.65 9.87 3.56 4.71 8.73 8.74 5.32 11.7 5.32 8.26 9.39 9.6 1.14 8.17 10 8.6 8.82 7.98 11.9 8.31 7.13 9.9 8.59 6.98 11.4 3.56 9.08 8.21 10.3 0.68 10.7 3.56 9.31 7.76 9.15 0.68 10.5 6.66 4.2 12.7 12.2 8.73 3.89 7.89 8.46 9.16 0 4.9 16.2 10.3 5.3 7.03 2.54 11.1 8.67 7.14 7.73 10.4 9.22 10.2 5.31 8.6 11.2 9.17 11.4 10.8 8.54 6.97 3.94 11.7 8.4 5.6 11 10.4 5.4 9.77 9.77 11.4 10 7.23 13.3 6.34 10.6 1.14 10.6 0 10.3 11.5 8.51 8.45 10.5 9.39 11.5 6.43 7.68 10.1 7.45 6.29 7.9 9.92 6.53 10.5 8.93 6.43 8.56 8.79 2.62 6.31 8.06 10.4 5.38 15.2 10.1 2.92 4.5 7.93 8.74 10.5 7.79 9.06 9.72 8.65 7.62 7.11 12.1 8.49 11.5 8.21 10.7 8.38 3.7 8.71 9.28 1.76 7.97 2.38 9.38 8.24 10.6 0 2.38 8.2 11.3 9.24 7.96 11.6 8.11 10.5 10.2 1.14 10.8 7.17 10.7 8.72 9.73 8.41 12 9.1 9.15 4.42 0 2.12 8.24 10 5.14 7.32 8.52 7.14 10.1 9.81 10.4 7.96 8.52 3.23 9.62 0 10.4 9.7 8.69 5.83 9.56 9.56 10.3 9.6 11.2 8.8 10.4 8.9 7.99 7.27 9.77 9.09 9.42 0 9.95 9.59 11.9 12 8.67 6.52 12.7 5.75 13.5 9.65 9.39 9.91 7.51 1.14 7.04 8.88 0.68 8.7 8.6 9.29 11.9 4.61 7.45 9.78 11.2 11.3 5.48 7.92 6.88 2 8.44 10.1 1.48 12.3 10.3 11.9 10.1 12 10.7 12.9 11.8 8.43 10.6 10.7 0 9.93 9.54 10.6 11.8 10.4 10.6 7.15 7.53 0 8.75 7.11 2.2 2.2 7.68 3.83 9.17 8.85 0.68 5.56 8.53 9.33 5.84 10.3 0 11.1 7.35 9.56 0 6.59 9 2.68 3.97 11.9 6.36 0 1.14 6.57 8.33 3.94 0 7.74 4.1 4.81 0.68 0.68 5.75 11.1 6.63 5.6 8.76 7.28 9.65 0.68 7.48 6.4 2.68 9.88 6.97 9.53 10.4 7.03 2.92 9.63 1.48 6.14 9.18 4.29 7.18 4.34 5.45 8.59 2.38 4.1 6.04 0 8.81 10.3 2.38 7.76 7.24 3.4 9.68 8.39 5.9 3.83 9.63 9.06 8.83 10.1 7.96 8.94 3.32 4.74 3.03 7.51 2.38 6.59 13.1 9.22 9.49 6.49 10.3 10.4 9.13 1.76 8.57 5.34 5.92 7.39 1.48 7.95 11.6 10.2 9.11 1.14 7.44 5.96 9.01 9.77 9.59 9.07 0.68 6.13 9.41 4.74 7.87 12.8 5.68 8.81 12 9.78 8.68 8.31 6.37 9.02 10 9.7 11.3 6.46 7.61 8.85 6.42 2.38 7.97 8.52 4.15 6.92 7.94 9.18 10.1 4.05 7.75 7.67 1.76 7.07 10.3 8.26 0 9.3 10.3 8.27 8.33 8.81 0.68 0.68 9.75 6.6 8.77 8.28 4.87 10.3 6.41 9.67 8.55 11.4 8.02 10.1 8.43 0.68 4.84 4.34 7.92 9.44 9.32 7.88 7.35 9.69 0 12 5.06 3.03 0 3.58 5.63 11.1 6.48 4.61 9.11 4.15 1.1 11.5 0.68 4.92 9.2 7.78 8.16 11.4 10.9 0 3.48 11.2 5.84 9.08 9.89 3.94 6.52 9.05 3.56 1.14 8.55 8.72 13.3 10.1 3.32 9.76 8.06 1.48 7.48 4.29 0 6.81 9.76 7.82 2 11 5.14 4.2 9.84 13.1 9.9 12 1.48 4.68 0.68 8.51 11 3.56 3.32 11.5 1.14 2.81 7.12 3.03 9.73 10.9 6.16 7.61 1.48 7.17 0 7.63 0 9.07 11.2 6.94 5.19 8.34 11 7.25 10.4 2.54 11.4 5.87 9.93 8.94 9.37 5.5 6.13 6.34 2 7.1 8.97 12.4 13.6 7.99 5.5 1.14 5.25 8.54 6.81 9.42 12.3 9.59 7.81 9.62 4.5 5.16 10.2 10.3 12 3.32 10.9 7.17 0 2.38 9.06 8.31 2.2 4.1 8.83 8.16 9.47 12 4.1 5.81 12 3.14 5.36 9.32 12.8 12 5.06 10.4 4.5 4.98 12.3 10.9 8.76 9.09 4.74 5.45 6.69 8.31 3.14 8.24 9.81 2.54 0 0.68 6.08 3.63 5.52 1.48 8.69 6.83 9.71 5.87 4.81 1.76 11.6 9.87 3.7 7.38 8.55 8.6 3.03 7.91 9.76 8.02 10.5 7 6.45 4 2.54 8.87 4.84 8.42 2.92 8.24 5.28 7.45 7.09 5.58 6.95 7.6 5.75 5.21 10.2 8.88 0 2.2 7.6 3.56 3.4 9.27 10.3 3.76 6.08 1.97 9.4 0 9.45 8.27 6.95 3.7 3.94 7.59 5.63 5.6 2 9.12 9.13 4.29 0 7.89 8.7 8.63 10.9 8.95 6.62 7.74 9.38 8.95 12.5 10.6 4.95 3.03 6.39 9.91 2.81 2 1.48 8.56 10.1 8.75 4.81 0 0 7.25 1.14 4.05 9.05 7.9 11.9 5.58 3.63 7.03 2.81 10.2 10.2 1.48 5.34 10.2 5.65 4.57 13.8 9.18 8.08 3.23 9 0.68 9.85 7.03 2.2 7.69 0 5.61 11.3 0 11.1 11.1 3.03 8.41 4.98 4.98 3.76 6.56 7.9 8.83 8.93 5.54 12.1 1.14 0.68 9.91 3.4 0 3.03 5.8 9.3 6.32 9.48 10.9 7.48 4.68 12.5 10.9 5.65 12.7 0 8.12 6.16 6.34 9.73 5.16 2.81 9.71 2 14.3 8.74 8.2 8.87 6.47 2.81 2.81 4.68 6.87 11.2 7.51 8.75 9.74 9.7 3.03 5.23 0.68 3.56 8.36 6.76 4.46 0.68 0 2.54 6.2 9.45 1.48 8.45 0 6.1 10.7 9.59 5.54 7.83 7.65 1.79 0 10.4 2.2 5.78 0 10.9 14.8 6.04 8.24 2.2 14.1 10 2 0 0 4.74 5.36 10.5 0 8.08 9 14.2 0 6.71 10.9 0 4.2 5.36 5.34 12.1 8.19 9.62 0 11.2 4.1 7.3 8.21 11.6 5.09 8.4 4.46 0 4.5 4.87 7.88 6.93 10.3 1.48 2.68 0.68 3.56 0.68 14 10.4 11 9.08 9.22 11 2 8.32 12.8 8.71 14.1 8.68 5.06 12.4 6.73 9.82 8.45 7.58 5.38 5.06 9.82 9.42 7.98 4.25 5.56 9.58 8.53 8.12 9.14 6.15 1.76 8.09 6.87 4.2 9.71 0 5.89 6.55 10 6.82 2.92 3.32 4.74 2.68 9.61 9.41 6.16 7.59 0 7.21 7.81 8.23 0 8.04 0 3.03 8.58 8.63 6.59 10.7 9.1 2.2 2 0.68 2.54 8.57 5.48 11.3 3.89 8.79 3.32 3.14 3.03 0 8.49 2.81 8.62 9.46 1.76 9.7 11.4 6.12 5.21 8.52 11.2 1.14 5.54 7.43 7.13 9.14 10.2 8.41 0 10 8.31 0 8.81 7.14 0 8.69 8.28 8.9 2.92 9.57 8.92 0 0 5.99 11 6.71 6.28 4.2 2.2 3.03 8.81 6.77 2 13.6 6.03 7.74 5.58 4.2 12.5 2 7.94 0 8.35 6.77 1.76 5.21 4.71 0.68 10.2 3.23 4.71 9.33 7.68 12.3 6.72 1.14 1.14 8.87 6.36 13.5 3.56 7.74 4.57 10.2 5.4 7.57 9.12 7.58 8.26 8.28 9.3 3.14 10.1 13.5 9.86 5.46 7.6 7.64 7.92 6.46 12.3 5.39 12.8 6.89 10.8 13.1 13.3 8.97 9.14 3.2 7.12 7.79 5.06 0 7.49 3.63 10 2.68 10.8 2.22 0 2 1.48 3.63 8.15 0 8.22 3.32 3.7 5.54 0 3.7 2 0 3.03 10.2 8.05 2.38 6.97 4.29 7.98 7.44 2.54 7.09 7.84 8.44 9.14 9.07 9.19 7.84 7.44 6.62 3.76 8.39 3.32 2.2 10.4 5.81 10.1 8.84 3.94 0 3.89 3.23 3.89 5.52 7.45 0 5.52 8.35 9.03 2.68 2.92 9.66 6.38 6.63 6.72 9.35 10.2 1.76 11.3 9.5 11.4 3.48 8.71 6.73 6.05 6.35 1.76 9.93 8.71 11.7 10.1 9.52 1.48 0 8.12 9.88 7.48 9.34 11.8 6.1 4.82 5.48 9.74 6.83 10.3 3.03 10.9 8.75 4.61 6.26 6.28 9.45 5.03 2 10.8 8.51 5.87 0 6.4 7.24 6 0 6.27 4.51 2.81 6.45 5.11 8.5 7.86 5.21 8 9.38 2.24 10.5 9.04 6.92 9.8 6.59 0.68 9.12 9.1 1.48 8.07 13.1 2.82 7.91 6.85 1.76 5.01 5.21 13.2 1.14 9.44 2 9.2 6.93 9.84 6.19 2.38 0.68 13.5 9.8 4.34 0 3.7 2.81 4.25 5.48 4.53 6.04 7.48 1.76 7.5 10 3.56 12.3 9.16 9.41 10.6 5.92 4.1 9.96 11.5 2.92 7.66 9.59 9.95 1.48 3.14 8.36 5.96 4.68 8.5 5.97 8.18 8.87 8.03 10.2 6.32 0 8.24 10 7.59 4.9 8.71 8.05 7.72 5.43 1.76 2.38 8.54 6.58 2.2 7.13 9.48 7.27 4.5 10.1 10.6 2.38 3.76 6.31 3.4 12.5 2 0 3.49 6.78 5.18 8.8 5.86 6.46 7.21 12.3 7.35 7.39 11.2 3.03 0 2 11.9 2.54 7.39 8.84 3.7 0 5.45 4.05 11 3.32 6.47 9.16 7.04 7.14 10.2 8.34 6.61 3.48 4.46 8.58 6.65 9.19 1.14 9.01 5.16 1.48 13.2 7 3.48 8.44 0 6.64 7.6 8.89 10.6 0 5.58 2 5.06 3.83 3.48 1.76 6.71 7.18 1.14 2.2 2 11.8 8.16 10.5 5.45 2.68 2.54 7.43 2 9.02 9.39 6.34 1.76 8.33 0 0.68 1.76 0 1.48 9.29 0 0 4.74 1.76 9.42 0 9.23 0 9.38 8.78 8.2 9.39 7.13 9.58 8.57 6.53 12.3 6.81 11.1 10.3 8.48 8.64 6.89 8.59 4 3.7 3.14 2.68 3.56 4.95 8.87 7.01 14 4.64 5.46 9.45 3.14 2.38 5.3 7.02 6.54 6.81 12.2 10 2.93 8.11 0.68 2 10.8 8.38 9.55 8.69 8.34 7.15 4.1 9.07 7.68 8.66 5.87 5.4 7.88 6.31 5.4 8.57 7.33 5.45 9.71 3.03 5.93 7.63 5.16 6.95 6.08 0 8.7 6.38 7.72 10.1 4.1 3.4 5.68 7.7 4.53 0 6.7 6.73 4.2 5.75 5.83 9.87 3.4 8.9 9.34 6.35 1.76 8.22 0.68 1.76 12.2 2.54 1.76 5.58 6.97 7.23 4.74 4.2 7.9 5.36 5.78 13.5 4 10.9 7.98 0 8.23 4.2 3.4 0 8.76 7.73 3.23 6.29 5.45 7.15 7.6 2.92 0 2.81 8.55 1.76 4.84 11 10.7 8.13 8.29 2.81 10.1 11.9 11.4 11 0 6.4 9.43 0 4.15 8.69 0 3.03 3.77 1.48 1.48 2 9.74 0 1.48 8.17 8.6 5.45 6.89 10.5 0.71 3.63 7.13 7.44 9.45 4.53 7.72 3.63 8.97 6.82 9.7 4.38 5.18 6.18 11.2 14.7 3.48 3.7 8.31 6.89 4.77 5.11 7.11 4.61 14.9 6.25 16.1 9.66 3.48 1.14 0.68 6.3 7.54 2.92 2.68 0 3.4 8.04 9.3 8 14 3.17 8.98 9.02 0 0 3.32 11.6 3.7 7.54 3.4 5.25 12.6 0 4.15 2.81 2.92 2.68 4.15 6.99 1.76 5.83 6.34 8.71 8.38 7.88 0 6.79 1.14 5.56 4 9.77 4.53 7.19 11.2 6.26 6.81 3.7 12.8 8.06 8.67 9.16 1.76 2.38 7.63 8.99 0 9.74 7.42 6.1 5.72 14.2 3.03 8.4 6.74 12.2 8.09 1.48 1.76 3.94 2.68 2.92 5.58 6.42 0.68 5.52 7.28 8.12 1.48 8.02 3.76 4.74 7.87 6.2 1.48 3.7 8 7.74 1.48 7.09 7.17 8.74 5.68 8.56 10.4 6.32 7.56 7.55 7.07 2.2 13.2 11.7 5.6 7.84 12 6.66 0 0 5.86 11.9 7.69 6.25 1.48 2 0.68 10.4 2.54 9.04 8.08 3.32 5.09 5.3 4.42 1.48 2.68 0 2.54 10.6 8.68 2.81 0 7.55 3.83 0 8.16 2.2 0 9.94 9.1 1.84 2.2 7.65 1.14 6.87 4.5 7.32 8.71 7.89 0 5.36 2.54 7.69 4.25 9.01 9.36 0 5.3 13.7 2.2 4.74 10.1 5.6 0 11.3 0.68 9.57 6.97 6.72 8.6 8.65 0.68 0 4.2 3.48 8.68 4.77 8.89 0 0 9.37 2.81 3.14 5.98 2.81 9.54 3.56 10.7 0 0.68 3.03 7.64 4.53 8.9 0 6.43 0.68 3.4 0 6.18 3.56 9.51 2.2 7.27 3.14 6.39 1.48 0 3.32 5.46 5.54 2.92 3.63 8.98 8.02 0 7.44 5.38 5.83 0.68 4.74 5.09 3.32 2.54 2.11 4.57 8.77 8.53 11.1 6.66 6.1 1.48 4.25 11.9 5.7 6.13 10.5 4.95 0 11.5 11.1 0.68 8.99 4.61 2.54 0.68 0 11.9 5.56 5.67 4.87 7.88 7.07 0 4.9 9.06 5.06 9.74 7.01 5.11 3.94 4.2 5.67 7.25 9.07 10.3 11.3 4.74 7.92 5.34 7.43 7.46 5.87 3.4 4.29 10.9 4.05 7.24 4.2 1.14 10.3 2 4.64 11.4 0 0.68 7.71 0 4.29 6.95 2.2 4.29 12.2 9.95 2.2 12.5 5.89 0 5.9 3.94 11 1.48 2.38 2.2 0.68 2 0 6.87 5.25 7.72 10.1 7.89 8.03 6.73 5.89 8.53 8.38 5.92 6.68 9.91 9.37 6.94 0.68 11.4 8.63 5.09 8.53 4.61 4.1 0.68 5.65 6.53 5.63 7.4 7.2 7.41 2.54 5.23 11.2 1.14 8.19 6.73 3.12 9.91 1.14 11.5 5.16 8.92 6.08 7.2 3.48 10.1 8.38 4.29 2.81 7.76 7.01 8.45 11.6 9.6 1.14 6.49 2.54 12.9 0.68 9.77 0 4 0 3.32 2.54 1.14 2.8 2.38 5.03 3.23 10.7 8.12 11.5 12.4 12.4 8.03 2 4.34 2.92 10.5 9.16 10.2 6.25 11.9 13.3 3.56 3.32 11.2 4.29 0 8.44 0 9.9 2.68 5.96 11.6 12 2 10.6 10.1 6.12 0.68 5.63 5.48 11 10.4 5.18 5.16 6.45 7.7 6.64 8.11 4.5 7.39 0 9.45 0 11.1 1.48 6.86 7.5 1.14 9.92 3.89 9.2 0 4 6.06 9.73 6.53 8.54 1.48 8.4 9.76 0 5.78 6.24 8.28 0 0.68 8.5 7.85 8.55 7.63 5.87 0 0 9.05 11.3 5.16 2.2 5.5 6.37 5.84 4.05 3.63 3.03 5.92 1.48 0 7.52 9.96 7.35 9.09 6.92 7.17 11.6 5.01 0.68 3.23 2.38 1.48 11.9 7.95 6.69 8.55 3.23 9.8 2.68 10.4 5.76 0 2.68 1.76 7.35 10.9 5.99 9.33 2 9.69 10.5 11.1 9.57 10.5 9.12 7.18 7.15 11.1 10.7 7.6 12.7 8.85 12.8 1.14 5.8 12.9 9.47 10.6 9.01 2.68 8.06 5.92 10.8 0 1.14 2.54 1.14 7.34 9.18 6.62 6.38 4.61 9.19 8.51 7.42 2.2 5.28 7.72 0 7.47 9.29 6.97 5.92 10.8 11.7 8.61 9.24 9.82 8.73 12.3 11.8 6.92 7.14 3.56 6.03 11.3 3.32 10.4 9.03 9.73 5.9 5.28 8.16 9.53 4.87 6.29 9.7 10.5 0 10.2 3.03 0 11.1 7.44 6.21 5.52 9.15 6.35 10.6 5.54 0.68 10.7 4.42 7.65 3.83 7.61 8.59 13.1 11.2 2.81 9.54 12.9 9.09 7.57 8.77 8.75 7.07 0 6.63 1.48 10.5 9.09 8.73 9.21 10.7 10.2 11.9 8.23 9.71 7.94 10.4 8.25 7.36 9.97 9.29 8.91 13.3 0 12.2 12.5 11.8 8.37 8.78 2.54 7.73 6.5 6.3 6.63 4.2 4.05 12.3 4.87 6.54 10.9 17 0 13 8.78 11.7 7.12 6.14 6.41 13.4 14.6 16.4 15.7 10.2 5.78 6.42 8.24 8.12 8.16 6.45 3.14 0 4.87 6 7.92 9.16 7.51 2.2 11.1 8.05 7.72 8.89 10.3 8.72 0.68 4.46 7.95 6.81 7.54 0.68 8.46 11.6 1.76 6.66 10.8 7.34 8.39 9.86 8.98 9.76 11.3 2.81 8.63 9.43 9.08 2.92 11.2 7.72 9.45 6.03 14.1 5.4 5.56 5.75 2.69 0 0 0 7.47 3.7 5.48 4.29 8.29 6.92 13.3 4.25 11.4 7.74 1.76 7.67 12.8 13.2 8.75 13.6 8.37 10.5 11.3 12.4 12.9 11.4 13 6.26 10.1 0 11.7 3.23 5.65 11.2 0 0 3.32 6.27 1.14 9.67 7.77 3.4 3.23 4.9 8.1 8.37 8.01 11.9 7.98 5.54 8.1 7.8 0 9.68 0 10.4 12.4 7.21 11.1 0 2 10.2 7.06 5.46 7.02 11 0.68 3.63 0 3.14 11.7 10.2 2.19 9.53 6.91 0 6.63 0 6.54 2.2 4.77 1.14 0 2.38 8.97 5.48 3.7 7.28 8.49 8.81 6.62 7.43 11.5 5.96 3.91 0 6.29 0 6.59 6.21 5.38 10.3 4.1 8.42 9.66 4.81 11.4 9.87 3.7 7.36 11.6 9.62 8.02 9.68 5.14 7.94 5.34 5.61 10 9.38 10.8 8.94 8.8 9.82 7.01 8.78 4.29 10.1 4.74 8.78 1.76 1.14 6.91 2.92 8.57 2.92 0 8.95 8.32 9.73 0 8.77 6.99 0 0.68 7.64 0 5.75 7.75 7.91 5.96 9.65 8.16 6.99 7.03 6.01 10.6 4.2 11 8.07 3.14 16.4 3.63 1.48 2.2 0 1.48 7.91 6.18 6.89 2.68 13.2 2.58 7.74 10.3 9.62 8.77 14.9 9.86 6.83 0 1.14 9.11 7.24 5.97 8.81 8.64 10.9 7.69 8.01 9.64 9.19 6.9 11.2 9.59 6 11.5 5.89 7.69 2 4.77 12.2 9.79 3.76 8.07 0.68 2.68 10.8 7.1 11.4 9.23 6.47 5.67 7.76 7.85 8.07 9.52 8.97 7.28 7.69 6.26 8.11 8.32 9.36 0.68 7.93 7.45 11.3 8.19 11.4 8.83 0 7.62 8.15 2.68 0 0.68 10.2 10.8 3.23 10.6 2.2 9.47 9.13 7.9 9.44 7.14 9.09 4.98 11.4 11.3 3.7 13.2 11.2 6.55 6.9 8.42 7.67 11.5 0 11.3 10.1 12.3 10.5 7.69 11.9 7.95 4.25 3.14 3.14 6.36 6.97 0 8.36 6.44 4.34 10.8 9.79 2.81 0 12.5 8.81 9.5 3.03 6.89 9.17 1.14 1.14 8.74 5.58 8.86 9.96 0.68 8.02 8.62 3.14 3.83 7.17 4 0.68 8.67 4.46 9.16 4 9.32 3.7 6.14 0 12.3 8.86 8.84 10.4 8.31 10.1 7.59 0 10 10.4 9.43 8.72 12 9.66 7.05 9.17 10.2 8.54 9.4 6.57 4.42 11.6 7.15 3.48 4.29 10.7 9.97 5.84 3.7 4.46 9.27 2.68 3.32 8.71 0 8.27 15.2 5.9 2.38 10.3 6.28 10.3 8.12 4.29 9.42 9.69 9.46 7.14 9.22 5.32 11.2 8.65 6.01 10.9 9.31 10.2 7.6 9.44 3.63 14.4 2.92 8.29 8.61 7.72 5.3 1.14 4.34 10.2 3.03 2.2 9.41 4.57 8.07 13.5 7.94 5.3 3.23 2.38 1.48 2.38 2.2 5.96 0 10.1 5.34 13.8 0.68 6.99 7.37 6.04 1.14 2.2 4.71 4.74 12.8 5.99 7.87 6.95 5.94 7.43 9.02 1.48 6.12 8.42 6.46 4.38 12.4 9.15 8.34 8.89 9.92 1.48 8.3 5.38 9.49 5.23 9.48 8.76 8.48 5.4 1.76 6.06 7.54 1.14 8.5 2.81 2.81 4.1 9.95 3.48 4.68 7.29 1.76 11.1 4.15 9.63 10.4 3.14 7.92 6.79 9.04 4.56 9.96 3.48 6.38 11 8.15 0 7.94 7.8 7.33 7.16 0 8.57 2 7.69 7.8 9.61 5.56 10.8 9.03 9.91 9.72 9.39 4.2 4.9 8.2 7.61 9.52 1.76 5.46 8.17 14 8.06 10.6 5.81 2.92 7.18 4.2 3.7 3.14 12.5 7.18 5.56 0 1.48 0 0 3.48 8.76 0.68 0 1.14 1.14 3.03 1.14 8.49 1.14 7.55 10 10.4 8.3 5.78 11.4 8.41 12.2 5.38 7.99 4.81 8.61 5.92 4.99 1.14 0 6.71 0 6.81 2 5.43 6.2 16.2 10 2.2 1.48 5.09 6.71 8.55 10.5 2.54 6.53 7.51 8.84 10.5 6.67 9.04 7.52 13.5 10.4 7.28 0 10.4 6.53 6.44 7.99 14.1 4.61 12.9 5.14 11.4 8.87 7.91 9.96 4.84 12.4 13.1 9.21 0 7.03 8.43 7.17 6.08 9.66 9.09 9.82 7.37 4.59 0 8.48 8.95 7.82 7.35 4.46 8.72 6.87 4 7.04 8.76 7.2 6.6 12 8.22 7.3 7.12 9.92 4.2 9.36 7.08 10.9 12.1 0 9.7 5.97 6.04 7.75 9.64 8.21 9.52 8.86 11.2 9.24 8.31 10.3 12.8 8.07 6.3 9.5 8.66 9.31 11.1 9.61 2.38 8.95 8.81 0 9.44 11.6 6.05 5.25 9.58 5.81 10.1 5.34 10.8 6.62 9.89 11.1 9.29 7.88 7.76 14.1 10.4 4.57 10.8 0 8.52 12.6 8.68 10.5 4.61 3.23 9.42 8.65 12.4 9.4 8.99 9.47 7.42 11.1 11.4 10.1 10.8 11.1 0.68 8.7 12.8 7.57 8.4 2.68 8.08 7.85 5.38 1.48 4.74 12.6 8.29 2.81 10.6 3.89 3.76 11.1 4.57 8.94 1.48 10.7 11.5 0 1.48 0 8.96 11.2 9.68 10.2 6 2.68 2 3.7 11.9 10.9 7.6 9.43 7.47 1.48 7.6 0 11.2 7.99 9.66 8.53 9.88 10.4 11.2 0.68 12.2 9.69 8.96 5.96 4.5 2.2 11.6 9.93 11.6 10.1 9.22 8.49 8.11 6.25 8.62 4.2 10.8 9.73 9.46 11.7 3.7 9.26 9.79 13.3 10.8 10.2 9.55 11 10.5 9.4 2 7.92 4.64 8.15 11 12.9 10.2 10.1 9.49 3.14 8.37 9.96 11.6 5.99 7.7 14.3 10.1 8.67 6.99 9.89 7.96 9.84 9.42 9.1 2.38 8.04 8.7 7.51 2.38 8.98 8.01 8.06 10.3 7.88 6.91 9.57 7.39 5.75 10.8 7.93 3.83 9.14 0 10.4 4.25 2.68 7.14 7.66 10.5 5.8 6.71 10.2 9.94 6.62 0 0.68 9.15 8.8 9.17 3.83 10.8 11.8 9.73 8.98 5.23 10.2 8.76 7.46 8.86 8.97 10.7 11.7 9.12 11.2 8.03 8.7 9.34 0.68 4.29 10.5 0 5.6 8.09 10.2 8.21 9.01 11.6 7.33 12.6 8.44 8.2 9.03 10.6 10.6 10.5 8.81 9.72 9.7 7.34 9.99 9.23 8.1 8.19 8.86 5.86 8.24 10.1 9.76 11.8 7.42 9.49 13.6 8.66 9.69 10.7 9.11 8.66 8.98 12.1 9.34 9.49 11.1 13.3 5.25 7.21 10.4 9.68 8.35 9.31 9.92 7.48 11.4 12.9 2.81 12.3 7.8 10.3 6.22 10.4 9.84 8.59 11.7 12.1 10.9 13 1.48 11.5 7.95 3.63 8.37 10.3 10.6 10.6 12.6 9.29 8.89 7.07 8.78 12.3 7.72 3.23 11.2 8.92 2.81 1.14 9.59 6.75 11 10.1 1.76 8.88 10.8 7.5 10.5 7.24 8.64 7.17 2.2 6.76 9.92 4 7.69 10 8.27 8.12 8.02 9.52 9.5 5.03 9.56 11 8.7 9.01 8.79 4.42 7.41 6.9 10.5 9.53 8.55 9.46 10.4 9.21 4.77 4.98 9.39 0.68 4.92 9.51 8.4 8.31 7.73 9.41 9.27 9.46 9.28 9.35 5.46 9.09 8.38 4.1 9.38 8.59 2.38 10.1 10.3 12 9.19 9.21 10.6 7.53 10.5 3.56 8.85 0.68 8.84 7.2 10.3 4.71 4.61 10.6 9.12 12.5 11 5.03 7.84 8.86 8.17 9.49 9.29 5.6 12.3 10 8.96 8.35 12.2 8.87 9.95 7.9 2.54 13.7 10.3 10.1 11.6 9.55 9.72 9.25 8.67 10.2 7.09 9.25 7.37 3.32 7.49 9.32 2.81 11.8 9.4 10.5 12.1 7.63 8.56 8.79 9.9 9.05 9.87 11.7 7.38 9.69 9.76 10.4 11 9.68 9.54 10.8 7.78 10.9 9.6 8.25 10.1 9.42 8.94 10.9 10.3 8.4 9.85 9.7 8.76 14.2 8.97 4.77 9.65 8.83 10 8.01 3.56 2.2 3.94 7.92 0 8.47 12.3 9.58 11 8.77 3.23 5.89 9.05 1.48 7.54 4.5 9.41 12.1 9.71 7.32 10.6 11.3 11.8 8.98 7.39 5.51 0 8.4 7.09 4.87 10.3 8.75 6.57 4.77 12.1 9.14 11.2 8.26 9.33 9.41 10.3 11.2 10.7 0 11.6 11.4 7.22 9.8 2.2 7.85 4.53 6.98 6.79 11.6 9.5 4.64 9.1 0 9.81 7.43 6.95 9.68 9.88 10.1 10.9 9.93 11 9.55 7.99 8.05 10.1 8.47 0 2.54 16.1 7.6 10.5 12.6 12.8 9.72 7.17 8.09 8.96 10.4 9.16 3.14 6.95 8.92 6.59 2.68 6.71 6.63 1.76 8.72 0 9.09 0.68 7.12 7.02 9.94 7.33 11 3.76 3.7 2.81 7.58 9.94 8.67 11.9 10.5 11.9 11.2 6.2 1.48 10.3 1.14 9.33 9.74 2.2 8.3 8.22 2.92 7.32 10.2 10.3 0.68 11.3 6.95 9.54 9.14 10.9 8.77 8.36 9.43 9.58 8.21 8.75 5.06 9.76 9.52 6.88 4.61 11.3 5.34 9.15 11.7 8.84 8.77 9.14 3.23 10.3 7.28 9.17 10.2 2 0.68 2.68 2.2 9.79 9 10.6 9.4 3.14 10.6 5.38 10.3 8.46 10.7 9.77 12.6 9.86 7.09 11.4 1.48 10.7 6.63 11 10.3 8.64 6.81 9.82 6.32 6.77 4.2 9.53 5.67 7.52 10.1 8.48 7.25 9.73 11 1.76 9.92 10.2 10.1 9.01 0.68 7.1 7.79 0 2.68 5.81 0.68 13.1 8.26 4.15 8.74 8.89 12 11.7 2.81 1.48 8.25 8.37 10.8 10.8 6.77 9.67 10.7 5.54 7.42 10.6 8.04 7.57 6.65 13.3 8.7 0 6.41 3.23 2.74 8.53 6.38 8.99 2 8.46 1.14 2 0.68 9.6 8.69 6.13 13 7.09 7.61 1.76 2.38 8.46 10 10.1 6.1 5.61 6.48 4.87 16 9.17 9.36 0 16.5 12.2 9.99 13 3.89 2.2 0 7.12 0.68 1.48 9.78 4.9 6.54 12 4.46 0 8.62 0 6.99 9.54 9.36 8.64 2.2 7.39 8.16 7.26 8.46 10.5 1.76 9.9 7.65 5.86 6.71 5.21 5.14 9.02 7.55 4.77 10.5 3.23 7.14 4.8 6.65 2.92 0 12.6 9.29 7.34 7.45 4.92 5.18 5.11 7.24 1.76 6.13 11.7 2.38 1.14 7.72 0 1.14 10.2 6.73 5.67 5.89 4.1 0 8.77 11.2 4.77 10.2 8.56 7.33 8.67 2.38 13.1 1.14 0.68 10.6 6.54 10 8.19 8.25 4.25 0.68 4.65 7.74 1.14 0 1.14 9.9 7.54 0 10.6 2.38 7.37 7.57 8.3 6.04 5.01 6.44 0 11.7 0 6.25 5.06 2.68 6.24 8.96 8.84 7.32 6.96 6.55 6.69 9.09 7.56 3.56 7.51 3.56 15 9.62 3.23 8.84 5.54 6.48 7.05 6.89 11 9.38 2.38 3.03 6.44 0 9.94 6.75 0 0 3.76 1.48 0 3.89 6.73 0 5.36 2.54 0 4.95 1.48 1.48 3.83 6.35 3.23 11.6 11.6 8.04 3.83 0 3.23 2.81 4.58 5.89 0 0 4.53 7.69 8.71 0 5.84 6.19 5.36 10.6 6.35 10.2 1.14 7.67 11.1 7.25 9.88 11.2 3.23 0 8.24 1.14 2.38 11 10.7 1.14 12.3 9.9 11.3 7.37 11.6 9.46 9.65 9.63 5.97 0 11.8 4.46 8.24 6 7.74 0 10.8 11 9.56 0.68 5.48 9.48 8.83 8.5 7.1 0 13.9 8.29 5.87 11.3 8.77 4.49 0 10.2 4.84 0.68 9.8 2.68 10.7 10.9 11.4 6.9 8.53 9.75 10.8 7.13 10.4 6.18 8.08 5.18 6.81 8.8 9.93 2 12.5 0.68 9.79 3.4 7.52 12 11.9 9.3 15 10.4 11.8 2.68 9.62 11.3 7.65 7.7 9.45 10.3 8.49 10.9 9 1.48 3.23 7.05 9.4 9.43 7.66 0 11.2 9.12 9.12 10.1 7.6 10.7 11.3 7.83 8.69 4.1 9.17 10.5 9.03 9.73 10.8 9.7 6.24 4.77 9.13 11.7 11.1 0 5.21 8.7 7.81 1.14 1.48 6.1 10.6 9.31 6.77 0 8.43 2.81 8.93 0 0 4.1 7.67 9.91 12.6 11 8.77 9.27 4.2 7.54 8.01 8.53 10.4 9.59 7.77 1.14 9.12 9.39 11.1 6.58 8.8 11.5 7.4 10.2 8.75 8.54 2.38 10.2 8.53 8.52 17 9.1 9.11 6.94 7.32 7.79 7.64 9.74 9.87 10.4 7.18 10.1 1.14 8.37 10 8.51 7.56 10.9 9.83 9.44 7.96 3.94 11.9 10.6 8.86 11 8.89 10.7 8.55 9.47 6.46 8.42 7.25 8.46 11.1 9.59 9.13 11.6 7.14 8.95 0.68 5.19 0 10.2 7.52 10.2 9.51 8.26 4.53 6.35 8.62 9.62 1.48 7.78 6.51 6.31 6.41 0.68 8.41 0 6.74 2.81 0 12.4 3.4 4.74 9.51 6.74 8.17 10.1 10 8.95 7.34 8.88 11 9.22 11.7 0 1.48 6.57 11.6 10.8 9.63 8.78 9.12 8.86 5.01 10.8 8.58 12.1 11.6 3.48 11.4 5.68 10.8 7.28 11.6 6.81 9.45 8.37 8.5 9.41 11.6 13.2 10.3 2 9.68 9.6 7.11 10.8 2 12.9 6.24 9.92 8.41 5.09 0 11.9 11.3 5.68 7.52 10.2 1.14 9.57 11.6 10.8 6.08 12 7.42 9.42 11.1 6.69 9.81 7.5 9.75 9.17 9.43 4.74 9.54 7.67 0 6 2.68 8.61 8.73 8.78 9.67 11.8 1.76 8.66 5.38 5.94 9.79 9.11 8.33 5.45 5.54 5.5 4.46 8.86 9.36 5.6 2.2 10.7 7.53 9.63 4.38 9.37 8.3 1.14 9.82 8.2 7.6 4.29 8.73 8.66 8.69 7.57 9.17 9.03 11.2 6.21 12.8 9.73 10.9 9.56 2.81 10.5 0.68 10.4 9.94 10.2 8.1 9 9.57 9.28 6.67 9.8 7.32 10.8 10.8 10.3 0 9.49 11.1 4.9 9.78 12.2 4.38 11.4 10.8 9.99 2.2 3.94 8.4 11.4 8.01 7.34 8.62 3.23 6.46 7.37 9.19 8.19 9.28 9.31 11.4 11.2 9.9 10.6 9.43 7.03 11.8 3.23 5.76 0 12.3 0.68 5.22 6.21 11.5 7.21 11.2 9.77 9.9 8.8 0 9.57 3.4 8.46 1.48 12.7 14.5 8.43 3.83 5.34 4.88 6.91 5.72 8.64 10.9 2.2 6.86 6.46 1.48 8.63 9.22 8.99 4.25 7.86 3.4 7.28 7 5.11 0 9.16 8.84 4.68 7.18 5.84 0 13.5 7.16 9.59 7.44 6.09 1.14 3.4 8.49 9.35 8.68 1.14 6.27 8.75 9.64 3.23 9.09 9.62 15.7 11.1 8 9.6 9.99 12.8 8.54 0.68 0 9.59 8.09 8.26 6.99 7.02 11.7 8.45 7.36 9.25 8.09 6.14 9.73 4.05 8.8 2.2 7.66 10 8.11 8.05 10.6 12.9 7 2 4.42 8.41 9.82 12.3 3.22 9.12 10 7.42 9.59 4.57 6.26 7.64 6.99 10.4 4.15 12 0 10.2 1.76 7.36 11.3 8 0 0 9.49 7.74 11.4 11.7 10.4 8.37 7.63 4 3.32 7.92 4.46 8.08 4.25 8.12 9.05 6.68 9.14 8.55 4.29 7.26 11.7 4 3.94 7.59 11.7 3.23 0 4.42 7.58 3.94 3.14 8.78 7.77 4 10.6 0 7.67 8.28 5.38 12 11.6 10.4 7.17 6.99 8.07 11.2 3.86 0.68 1.14 1.48 5.84 1.14 8.65 11.2 3.89 7.07 12.4 4.68 0 6.87 7.92 0 10.7 4.68 11.5 9.6 8.08 12.7 7.75 8.35 8.5 9.96 9.09 10.4 10.6 6.42 4.25 4.64 9.73 11.3 0.68 0.68 7.75 4.38 6.53 8.82 9.07 8.66 0.68 2 9.54 10.4 2.81 6.99 9.13 11.6 2.38 7.27 1.76 8.85 10.7 8.76 9 12.2 6.38 9.63 10.9 10.5 5.32 7.28 14.1 12.5 12.2 13 10.8 8.39 11.4 9.57 9.17 1.76 7.09 8.88 9.67 7.99 8.66 4.81 7.05 7.68 10.6 4.29 5.7 8.38 11.1 8.26 10.1 1.76 10.7 9.96 9.18 8.78 4.95 11 9.53 1.76 1.48 9.78 10.9 5.9 6.7 12.5 2.68 12.1 10.4 9.41 4.57 4 11.6 7.46 5.11 13.3 11.4 2.81 3.63 7.59 13.8 1.14 8.15 13.3 13.2 3.96 0 3.48 12 5.6 1.76 8.92 8.87 6.99 11.9 4.46 0.68 11.4 0 5.65 8.2 9.24 11.1 8.85 10.4 10.3 10.6 12.8 3.89 1.6 6.95 0 7.89 8.73 7.8 13.7 3.63 9.88 0 10.7 7.62 2.81 4.9 3.32 5.94 5.34 3.48 5.93 2.54 7.52 2 0 9.42 0 6.54 10.4 0.68 7.67 6.04 4.25 4.29 0.68 2.2 7.3 6.52 8.82 13.5 10.1 4.84 2.38 5.6 6.03 5.81 6.81 3.94 7.82 12.9 9.54 5.23 6.57 6.67 2.55 6.32 7.26 4.64 5.06 9.1 3.4 5.89 6.81 10.4 2.68 8.21 4.5 3.89 3.76 1.14 2.68 1.48 1.14 8.63 1.48 7.12 5.23 8.71 2 8.07 3.91 0 1.77 0 8.29 3.83 6.35 0 10.6 0.68 7.03 0 2.2 8.78 5.96 11 6.9 0.63 5.61 8.56 5.69 1.48 7.68 0 0 3.07 10.4 4.25 5.14 1.48 7.56 10.7 6.51 9.78 3.4 3.03 5.6 2.2 5.54 7.39 6.01 0 4.05 5.7 9.68 12.5 1.48 0 7.64 9.18 2.2 5.48 7.41 9.68 4.68 6.2 7.28 3.4 9.85 4.15 1.14 0 0 8.92 7.07 0 7.71 0 9.6 3.14 3.32 8.63 11.3 7.75 7.21 1.76 10.1 0 0 0 3.03 9.88 2.81 4.1 5.38 7.03 10.2 1.14 6.13 0 5.96 7.1 7.01 7.64 9.3 4.43 0 4.53 4.25 5.56 3.03 4.29 12 1.76 6.2 7.59 6.09 4.38 0.68 10.1 7.6 0 5.28 4.64 0 1.48 8.93 5.89 6.26 7.74 9.44 1.48 0.68 0.68 5.9 0 2.54 0 7.94 1.14 8.51 4.05 4.72 3.89 2.68 1.92 7.76 1.48 3.4 7.3 6.56 1.48 6.62 2.92 1.14 4.92 0 6.09 1.76 0 6.47 6.36 0 6.22 7.12 9.39 5.65 0 3.03 6 4.99 0 7.65 9.57 7.67 5.7 9.19 1.14 8.15 1.14 1.14 5.65 7.85 7.66 7.86 7.15 10.2 0 3.83 7.17 9.49 2.54 5.8 7.09 0 8.67 2.68 7.44 8.87 9.95 7.37 9.66 7.39 3.83 0 0.68 6.19 2.38 7.39 5.28 0 3.99 4.5 7.52 9.72 3.03 7.75 0 7.99 0 3.4 2 3.94 5.5 8.24 8.18 4.05 5.87 9.17 1.76 6.5 5.75 7.59 3.4 9.5 0 3.87 0 9.3 6.59 3.76 9.73 0 3.14 9.1 0.68 2 6.34 8.66 5.26 7.21 4.5 0 2.92 4.29 4.38 4.46 9.8 9.15 1.76 7.5 2.92 8.3 3.94 2.38 2.54 6.71 4.46 7.53 8.96 8.08 6.4 4.25 7.42 2.38 1.48 2.81 9.74 9 6.37 4.15 8.49 4.87 11.1 7.79 2.38 1.48 7.53 12.5 5.54 3.7 5.76 6.53 8.31 8.5 5.03 7.11 11 13.7 11.9 10.2 4.71 13.7 0 10.3 13.4 1.76 9.37 12.9 6.35 12.2 9.8 2.68 6.89 12 8.38 11.5 8.51 9.81 12.2 14.5 10.7 10.1 11 0 5.76 6.5 10.6 5.06 8.86 8.84 11.2 11.5 11.6 10.1 9.38 7.4 5.3 6.09 11.6 12.5 8.95 10.1 13.3 10.3 0 8.09 10.5 3.63 8.07 10.5 6.73 11.5 7.94 0 4.57 10.5 1.48 10.9 3.4 8.85 3.03 9.27 11.5 4 10.3 6.26 9.66 10.5 13.4 4.61 10.1 11.4 10.7 9.51 10.1 10.5 9.4 10.7 12.7 8.35 11.7 12 11.6 10.5 9.84 10.8 8.77 3.03 8.27 9.62 8.9 10.8 8.34 9.8 10.1 10.2 9.73 12.7 9.59 10.7 7.33 8.81 1.14 9.93 9.57 8.55 2 9.5 11.7 8.08 9.93 0 1.48 11 1.48 9.39 3.23 3.83 11.4 9.29 0 0 8.79 15.2 5.86 7.27 13.2 0 10.8 14.8 10.9 9.55 12.5 10.3 9.25 11 4.81 2.81 6.38 6.43 8.84 4.53 15.8 0 2.38 10.5 10.7 4.81 9.95 10.2 8.53 11.2 11.7 10.1 9.5 8.13 6.44 9.78 8.15 11.6 12.4 9.28 1.14 10.3 8.68 10.9 8.93 5.97 1.76 8.46 8.45 0.68 5.06 10.1 3.83 10.6 11 6.92 11.4 3.94 10.9 0.68 5.38 6.54 3.56 6.66 12.4 11.8 7.4 6.88 4 3.56 7.23 9.25 11.1 0.68 4.98 9.46 11.5 9.75 1.76 10.3 10.7 11.1 8.06 10.5 10.5 10.2 8.03 12.1 3.48 10.5 9.31 11.7 10.2 7.35 10.1 8.58 1.76 9.76 3.03 8.85 8.95 6.68 11.5 10.2 10.7 11 8.74 8.69 11.8 9.56 11.1 13.2 8.31 9.88 4 8.47 7.23 0.68 9.85 9.37 8.78 2 2.81 9.47 9.33 6.61 11 10.1 3.4 11.1 8.27 10.5 6.84 1.14 10.8 7.03 10.3 2.29 9.42 7.45 3.48 8.97 10.7 10.5 7.82 10.2 10.9 9.63 8.84 5.3 10.2 1.48 9.12 6.91 10.2 8.48 4.71 7.47 10.3 14.2 8.1 0 11 1.48 9.98 9.15 9.49 4 7.94 11.9 7.93 8.32 6.32 8.87 9.65 8.19 5.34 4.98 6.69 9.42 4.38 0 11.6 12.9 7.54 12.3 12.1 13.5 13.2 8.77 3.56 12 10.3 10.3 0.68 11.1 6.25 6.1 3.63 2 10.4 6.74 5.94 1.48 0 0 1.76 9.9 0.68 11.8 9.52 14 1.48 11.3 13.9 11.5 1.76 12.8 12.7 8.35 8.62 13.2 10.7 11.6 9.12 4.05 11.9 0 3.83 7.28 9.76 8.06 3.23 6.29 3.32 11.8 0.68 10.5 10.3 4 10.3 4.46 4.1 8.39 6.51 9.59 8.68 6.58 10.5 8.76 12.4 6.58 10.6 7.67 10.7 13 8.41 11.7 8.58 11.6 8.24 9.21 11.6 7.45 10.4 15.2 16.3 16 14.3 13.9 13.5 11.6 9.35 14.2 14.1 5.83 13.8 12.5 13.4 7.74 16.3 15.2 12.2 11.1 8.39 2 13.3 10.7 7.09 11.8 1.83 6.42 2.38 8.28 8.72 7.66 9.95 13.1 12.1 11.7 13.2 14.2 10.7 9.89 9.87 13.7 6.75 9.56 10.2 10.1 10.8 8.95 1.76 7.89 7.94 6.6 7.69 6.47 5.6 1.76 9.96 0 9.85 1.76 10 14.1 10.5 13.7 12.4 13.6 12.2 12.3 12.1 11.6 12 13.1 1.14 13 13.2 0 6.31 2 7.64 4.71 2.68 2.81 4.46 0 3.32 4.25 4.84 0.68 1.48 0.68 5.4 6.5 4.15 4.2 2 2.92 5.81 1.48 1.76 7.17 5.94 5.3 6.25 3.76 8.32 2.2 8.39 0.68 3.83 0 0 12.6 11.8 0 1.48 0 10.1 2.38 6.13 11.2 10.6 8.61 5.56 12.3 0 2.92 11.2 12.3 11.8 5.92 10.5 10.7 6.4 1.14 3.1 0.68 9.89 12.1 8.95 5.17 10.9 13.6 12.4 11.2 8.7 4.87 8.42 12.4 13.8 10.4 7.6 6.7 15.5 11.9 12.8 5.78 10.7 14.8 2.81 14.8 13.5 5.67 11.9 10.9 10.3 10.8 4.05 5.28 13.7 8.06 6.86 1.76 1.14 0 4.84 11.3 0.68 2.92 8.29 12 4.38 10.8 9.54 0.68 3.32 0 0 3.62 6.89 12.5 0.68 2 4.9 10.7 9.28 5.23 11 0 0 4.05 0 8.26 10.4 7.37 2 5.96 10.8 8.73 1.48 0.68 1.48 2.92 5.45 6.38 10.1 0 8.55 8.08 4.68 10 10.6 10 5.7 9.66 9.7 7.38 8.27 5.61 7.7 2.2 1.14 0.68 12.3 4.98 0 8.73 5.86 3.32 3.4 5.5 10.5 4.46 3.4 3.7 4.61 7.03 9.93 4.64 2.54 6.74 7.03 2.38 10.9 9.24 12.3 0.68 2.2 0 2.38 9.96 3.94 0 0 3.14 10.6 4.29 9.1 8.06 0 8.06 2.68 0 7.51 0.68 0 8.54 0.68 12.1 0.68 6.18 7.49 6.75 5.37 0 6.08 1.76 5.34 1.48 0 4.05 3.89 0.68 5.68 4.98 8.42 0 7.05 11.1 5.76 0 0.68 8.03 0 9.72 10.2 9.33 12.1 0 12.4 1.76 0 0 11.4 10.9 0 7.32 6.97 0 6.87 0.68 1.14 8.19 6.53 9.79 7.11 9.95 6.08 3.72 6.53 0.68 5.83 1.14 2 0 9.62 0.68 7.15 9.64 0 6.26 6.56 3.48 1.48 3.83 0 0 0.68 6.62 7.69 8.34 1.48 0 3.83 6.69 7.37 0 4.92 2.54 1.14 3.03 0 0 10.8 6.64 9.82 0.68 3.32 7.5 7.9 4.15 2 10.2 3.94 11.9 2.54 2.38 4.1 5.78 1.14 0 0 7.92 2 1.14 7.14 1.14 6.75 0 1.14 8 9.11 1.48 12.8 1.76 2.92 10.4 8.94 1.14 2.38 3.07 4.1 10.6 5.16 8.21 7.14 14.7 6.69 4.68 5.21 5.65 6.25 6.85 3.63 8.56 9.97 10.5 0 12.1 2.81 7.39 9 9.79 9.84 3.4 7.76 12.3 3.23 8.03 8.76 3.49 0.68 7.6 4.95 3.4 10.1 11.2 3.4 11.3 8.06 4.42 0 5.01 0.68 3.56 2 9.87 9.13 10.3 13.7 10.6 0 9.74 5.23 11.2 7.71 4.2 6.63 0 0 8.35 6.86 4.74 3.03 3.4 8.54 3.32 7.89 7.11 2.68 1.14 8.17 11.7 9.7 3.32 8.71 8.99 3.76 7.09 11.2 5.16 7.24 13.7 8.6 12.4 2.68 7.43 3.4 4.92 2 4.5 4.42 10.7 2.92 2.81 7.66 4.57 2.68 5.43 10.3 11.4 8.34 6.62 0 0.68 8.65 5.16 12.5 2.66 7.58 10.9 7.64 11.1 5.18 7.55 8.23 0.68 2.38 10.8 5.78 10.3 10.2 11.7 12.9 3.48 11.5 8.99 8.27 11.8 13.3 9.79 7.13 7.91 7.79 0 5.75 3.14 3.32 7.43 6.19 1.76 7.67 7.85 11.2 12.5 11.6 11 2.38 4.81 6.75 0 13.4 6.04 3.56 12.4 5.92 5.96 8.71 10.6 5.67 7.82 12.5 12 8.8 1.14 10.1 4.84 9.64 0.68 11.1 6.73 5.14 1.48 6.94 6.71 10.9 6.95 2.54 3.23 3.14 8.86 11.8 8.76 9.87 10.5 11.6 12.2 12.2 4.05 12.3 12.8 8.95 0.68 9.39 2.54 4.29 1.14 5.8 11.3 7.57 5.36 11.9 12 10.3 4.5 11.1 8.99 10.1 9.02 8.66 6.52 11.5 8.44 11.1 12 6.24 9.17 11.2 11.3 13.1 6.72 5.16 11.6 12.2 11.8 1.14 4.5 7.12 2.54 0.68 1.48 2.2 12.2 5.09 5.61 2.92 9.23 10.8 12.5 2.81 10.8 0 0 6.85 0 6.71 0.68 5.74 6.21 8.93 9.93 0 3.4 7.72 5.7 8.41 2.92 6.13 0 1.76 11.4 8.27 1.48 7.86 6.12 5.97 7.03 2 9.55 0.68 1.76 5.75 12.3 7.9 3.23 6.97 9.71 1.14 4.61 5.52 3.83 6.58 0 6.25 9.69 2.92 6.27 2.68 2.81 2.2 0 7.16 7.93 7.62 7.23 6.68 8.27 3.83 7.35 6.34 1.48 0 7.03 7.26 9.69 8.38 8.39 6.6 2.81 7.94 3.47 9.51 0 6.61 8.48 3.01 6.71 1.76 6.38 8.23 5.18 2 9.47 0 7.4 6.52 10.3 3.83 0 7.51 12.6 5.21 3.03 3.4 0 2.38 4.81 8.92 0 6.1 10.8 3.03 1.76 5.8 9.5 5.87 0 1.14 4.92 7.95 7.59 0 4.25 10 4.15 4.53 3.03 6.06 5.52 5.01 9.51 5.14 0 10.9 11.4 2.81 8.52 3.03 2 0 12.5 0 0 3.03 7.87 2.2 12 4.34 2.81 2.04 3.47 4.25 0 11.1 10.6 11.4 11.5 10.2 12.2 12.9 8.7 6.69 11.1 5.36 10.9 10.7 9.15 3.03 0 4.34 8.42 0 6.77 7.88 0 14.4 7.44 3.23 11.2 1.14 10.5 2.81 4.42 1.76 1.57 9.08 0.68 1.14 5.03 9.47 3.03 11.9 5.8 8.36 9.69 3.63 1.48 1.88 0.68 2.81 6.78 7.82 6.35 1.48 1.76 5.23 0.68 9.29 0 6.37 7.52 5.72 3.94 11.7 8.04 1.48 10.2 0.68 2.92 8.92 2.92 0 8.95 0.68 6.15 4.42 4.61 6.28 0 4.2 3.23 4.29 8.01 6.83 3.14 6.9 2.92 3.56 5.01 6.99 7.14 7.26 5.75 9.65 14.7 2.2 6.69 8.77 7.32 8.14 7.21 5.36 6.81 4.92 0 4 4.29 2.92 0 9.58 2.68 9.39 2.38 7.95 7.75 0 4.64 6.01 8.89 10.9 0 9.37 3.4 0 5.34 8.71 9.97 9.22 5.41 2.81 10.6 10.8 5.63 1.14 2.81 0 8.6 4 5.54 4.9 11.1 7.84 7.6 5.86 0 5.36 3.63 8.18 3.4 4.05 11.3 6.74 8.39 12.9 1.14 4.87 5.96 1.76 8.35 8.28 0 6.49 2 7.28 0 3.7 2 0 6.62 2 9.79 2.38 10.8 7.94 8.45 1.48 2.51 2.54 9.31 4 2.38 1.48 5.09 0 4.74 2.92 8.42 7.74 6.73 12.4 9.46 2.38 7.97 0 9.73 3.03 10.3 0 8.37 7.58 9.51 12.1 4.77 5.68 10.8 11.8 14.5 0.68 0 6.2 13.6 3.56 13.2 2.54 0 13.3 10.5 9.21 11.9 0 15.4 8.69 2 15 6.2 13.8 6.84 2.38 6.37 6.21 10.6 7.6 12.8 8.89 10.7 11.4 13.6 3.89 7.67 10.5 14.7 0 5.01 5.8 11.2 1.14 8.6 6.95 13.8 11 8.78 6.99 10.7 12.6 2.54 8.81 8.29 8.06 0 4.78 12.4 7.28 7.93 6.69 12.2 3.23 5.99 1.14 9.1 0 3.14 6.36 4.92 10.4 3.94 8.42 3.23 11.6 1.76 2.68 6.03 10.6 10.3 11.5 7.9 5.99 8.91 12.1 0 0 4.46 6.9 8.92 6.87 11.8 8.71 1.48 6.49 8.35 4.68 7.68 7.33 1.76 7.85 4.15 0 8.6 7.91 1.14 3.4 5.01 1.76 2.38 5.59 7.88 2.23 0 0 11.1 4.19 2.68 2 9.6 7.16 5.84 0 5.78 0 3.3 1.14 7.89 1.76 1.76 0 11.3 1.48 8.05 6.01 4.34 2.38 6.75 0 3.56 1.76 2.15 6.76 5.09 9.13 6.71 0.68 9.82 2 3.94 0 3.32 11.3 5.93 1.14 7.53 7.85 10.9 8.67 0 9.07 6.48 3.56 2.21 0.68 5.67 9.33 3.48 1.76 10.2 1.48 0 2.2 8.04 10.8 7.94 0.68 3.32 8.59 8.01 0 5.11 7.41 2 5.83 9.98 13.4 8.41 0 7.68 10.4 11.1 6 7.15 5.11 6.32 1.14 5.86 6 1.14 4.57 1.77 4.46 11.8 6.1 5.5 14.9 7.09 10.8 12 8.79 11.7 9.88 9.24 12.4 0.68 9.41 9.98 9.84 8.76 3.03 3.83 0 2.68 7.33 7.46 12.6 11 8.53 10.1 10.6 11.1 11.6 6.29 14.5 3.56 8.75 5.52 11.2 11.7 10.6 2.38 7.07 8.41 8.99 7.98 10.7 12.8 7.09 9.56 8.37 10.8 8.14 10.1 9.21 8.06 4.15 9.06 0.68 8.22 9.01 3.94 4.1 9.98 7.21 10.9 0 11.6 9.65 10.2 7.87 9.38 6.35 11.7 9.81 4.95 5.73 7.46 5.99 5.34 12.8 3.76 1.76 6.97 7.24 10.1 7.34 5.11 12.1 7.96 1.76 6.15 1.14 2.22 7.22 7.92 4.29 11.5 5.89 2.01 4.77 8.67 0.68 10.4 8.3 8.71 0 11.4 10.6 0 10.7 11 10.7 7.62 9.06 5.99 3.56 5.61 13.6 12 12.4 10.5 11.7 10.8 13.4 10.2 2.92 5.92 7.84 0 14.1 12.7 7.78 11.4 8.57 4.9 9.72 11.5 11 8.91 9.17 11 10 5.01 3.03 7.18 4.95 4.42 7.93 9.07 8.61 6.65 11.6 10.9 7.14 0 10 3.83 9.35 10 8.88 8.17 8.86 10.8 10.1 10.1 13.9 10.3 9.84 3.83 8.84 4.57 10.9 8.99 3.23 9.08 8.52 10.9 12.8 11.5 7.36 5.5 13.5 9.82 1.76 8.19 6.57 8.27 12.2 9.71 4.25 10.5 5.87 6.79 12.3 9.6 10.5 7.21 7.3 4.42 5.28 9.38 10.7 7.15 2.92 9.97 11.9 5.06 5.99 4.53 14.7 4.2 8.14 12.3 7.96 7.52 2 5.32 9.05 7.28 4.53 5.28 9.44 6.76 7.88 0 6.31 9.07 3.89 7.87 6.44 9.97 11.1 9.09 3.56 0.68 15 3.89 2 8.68 8.5 5.73 6.6 9.43 11 2.68 1.76 10.8 8.94 0 3.63 5.18 10.1 9.93 3.03 1.76 2.68 2.81 7.74 1.76 8.97 3.63 4.1 4 8.81 9.98 1.14 8.19 7.57 4.06 5.25 3.37 10.5 7.14 3.94 11.4 7.87 0 6.65 5.21 6.1 7.24 1.48 8.95 2.54 0.68 9.91 11.6 5.99 1.14 2.92 0 5.28 2.38 6.28 7.09 0 1.14 7.84 8.44 6.19 3.4 13.6 1.14 7.44 4 6.67 7.52 1.76 7.77 8.09 7.27 0.68 3.48 8.11 5.34 3.76 4.65 6.45 1.76 1.14 3.76 4.52 0 2.38 0 2 4.15 3.14 1.14 5.61 2.38 4.68 6.24 4.05 8.21 5.73 1.14 6.31 11.7 0 0 1.14 0 0 2.54 8.57 1.14 0 7.74 5.8 1.76 0.68 7.15 2.54 9.07 8.65 0 8.07 8.01 6.72 2.92 3.48 8.3 2.72 2.38 11.4 13.7 8.63 10.7 6.79 4.87 3.94 6.82 5.28 3.83 4 7.26 10.8 8.71 5.52 7.72 11.1 10.8 9.68 9.1 9.04 9.57 0 7.94 7.64 10.4 5.96 1.76 2.54 8.17 8.47 8.83 10.7 9.86 9.54 9.13 6.72 9.56 6.81 14.4 7.2 5.14 2.38 9.29 5.75 2.2 9.91 10.9 2.2 4 13.3 8.35 10.7 8.5 1.48 7.1 15.7 8.39 4.34 11.7 11.3 9.8 9.24 7.7 11 12.1 3.48 5.67 12.5 6.69 9.14 8.11 8.09 6.36 8.48 10.1 15 9.14 10.4 7.02 13.5 3.89 14.6 5.52 3.63 11.8 11.4 12.4 11.8 0 10.7 9.42 10.1 4.57 5.38 10.2 9.16 9.87 8.04 13.9 7.78 12.9 12.2 10.9 12.3 10.5 11.3 9.98 10.1 11.3 2.81 11.3 11.4 12 11.1 12.3 10.9 12.5 10.9 11.5 10 12 12.3 12.4 10.6 10.5 12.2 9.52 9.39 11.3 11.9 13.5 10.3 11.6 12 12.8 12.6 10.9 10.3 10.7 5.3 12 14.8 12.4 9.48 0 6.42 8.02 7.03 6.95 1.14 4.87 2.38 0 12.3 6.04 9.38 7.87 4.29 7.12 10.9 12.9 9.64 0 8.93 12.4 3.48 5.96 9.72 9.19 2 11.3 7.38 9.91 6.96 5.3 9.68 6.38 10.1 11.8 11.1 11.2 12.1 9.86 10.1 10.5 9.23 10.3 5.68 9.13 9.02 10.1 4.29 2.54 11.6 10.1 4.05 7.32 11 6.45 9.76 9.43 0 8.86 3.14 3.7 6.43 11.4 12.1 13.7 9.15 7.83 9.25 11.3 11.5 1.14 10.7 13.9 3.14 7.03 10.4 10.5 8.09 10.1 9.35 8.16 6.49 3.23 8.08 11.1 6.09 6.88 8.42 9.29 6.14 13.7 3.03 5.38 10.4 5.21 5.87 0 0 1.14 13.3 8 10.5 4.57 11.9 8.89 0.68 11.4 6.01 5.97 3.03 14.4 11.3 6.84 1.76 9.69 2 1.76 1.14 0 2.2 0 7.78 4.68 1.14 5.14 6.38 12.4 8.88 12.4 8.88 10.8 5.54 9.93 8.57 0.68 9.05 8.3 9.83 6.73 0.68 9.68 5.49 7.24 7.56 9.22 6.14 8.24 8.68 2.68 6.2 10.2 9.19 0 5.28 5.23 0 14.9 10.1 8.37 9.61 11.1 0 10.7 10.6 1.48 6.75 1.76 2.9 5.8 1.48 0.68 9.93 10.9 14.1 6.3 2.38 7.27 5.94 10.4 0.68 10.6 8.93 8.43 11.3 8.1 9.32 8.79 4.9 3.89 10.8 8.41 7.47 2.92 3.23 1.14 4.38 11.6 9.52 3.56 3.94 9.81 11.1 3.48 0 3.32 5.78 11.2 10.3 14.1 7.59 7.21 12.6 1.14 1.48 2.92 12.4 8.06 9.19 4.71 11.1 10.1 9.19 8.62 9.39 7.21 9.92 0 9.16 7.51 8.39 6.73 14.3 10 3.7 9.9 14.8 0 10.9 9.31 11.1 11.4 3.76 10.8 9.25 5.16 7.23 8.42 2 7.01 4 9.1 3.4 1.48 10.3 12.1 7.19 10.3 10.8 1.45 1.17 9.11 9.55 11.7 5.86 10.3 11.3 8.85 0 1.99 0.68 11.2 2.92 8.34 11.3 7.6 7.11 2.54 9.07 8.89 8.73 5.36 10 12.3 7.37 6.83 8.9 12.3 4.29 0 13.8 0 5.77 0 6.75 10.6 5.83 9.97 10 9.43 8.88 9.24 9.96 6.63 8.91 10.6 10.2 9.88 9.28 1.14 10 9.34 10.6 10.6 9.38 10.7 9.57 8.52 9.58 10.5 12.3 8.32 9.16 11.1 8.93 9.53 6.53 9.55 9.33 8.26 9.47 13.6 10.7 9.69 6.05 9.78 8.03 11.7 7.99 8.58 9.37 10.7 10.4 4.84 7.68 9.85 1.76 9.1 9.42 10.4 11.9 9.98 8.74 12 9.57 11.2 9.75 10.2 10.3 13.9 10.8 11.2 11.6 0 8.14 0.68 0 0 8.58 4.64 7.98 11.4 9.68 10.6 9.27 10.7 8.28 10.1 7.94 11.7 10.6 5.11 8.86 8.84 8.21 9.65 8.41 11.9 9.81 10 13.7 8.7 9.97 9.2 8.51 10.9 10.4 10.2 9.67 9.59 9 9.12 11.4 10.9 10 10.3 1.76 9.51 8.99 6.69 8.8 9.38 7.79 7.32 9.64 8.1 9.53 8.23 13.6 10.2 10.4 10.1 9.56 8.53 11.8 0.68 11 12.8 9.12 10.7 12 4.15 8.74 7.82 9.07 1.48 8.61 3.7 8.65 8.42 8.5 6.75 6.77 8.46 10.5 10.9 12.2 9.61 9.75 8.79 7.71 10.4 10.3 11.5 6.38 8.37 8.48 8.68 6.35 2.2 10.9 8.37 9.4 10.3 9.85 8.17 2.81 0 5.16 10.6 1.76 7.66 9.29 7.29 8.74 9.65 9.75 11 7.06 2.68 9.86 10.2 13 7.93 10.9 9.13 11 11.8 10.9 9.17 2.2 8.87 10 1.48 11.8 12.4 8.94 10.2 12.5 8.63 11.6 10.3 11.1 5.04 4.25 4.53 10.8 9.79 9.99 8.45 9.19 5.94 4.95 10 7.5 7.72 8.23 8.07 11.8 10.9 6.71 2.38 11.3 7.18 9.45 11.9 10.8 9.28 6.8 10.3 13.5 6.53 11.9 8.19 11 1.14 8.63 9.32 1.14 7.85 9.72 6.92 6.63 6.29 6.46 7.36 8.05 2 7.97 3.63 9.18 10.7 6.78 9.83 11.4 10.7 10.6 7.32 13 7.02 7.74 3.48 6.72 4.9 9.74 9.45 7.97 6.2 10.6 10.4 9.11 10.9 9.68 0 8.55 0.68 3.32 9.24 7.65 9.46 8.71 4 5.38 11.5 10.7 11.5 0 12.2 11.8 9.75 10.1 6.58 9 9.37 4.81 7.27 11.1 1.48 9.4 12.8 8.55 11 0.68 8.06 10.6 8.81 11.9 10.9 14.4 5.09 10.3 11.1 9.65 7.11 7.67 9.46 5.92 5.94 7.08 8.81 11.6 7.92 1.76 8.41 12.4 11.8 7.7 7.79 8.1 1.48 10.7 9.73 10.3 8.27 0.68 10.7 3.23 8.95 7.96 3.23 12.3 11.8 9.86 1.48 11.5 9.7 8.51 8.92 7.88 10.7 9.39 10.8 9.27 7.76 10.9 9.96 12.6 10.2 11.3 11.2 12.5 11.7 11.9 7.14 10.7 8.63 5.5 8.7 9.1 11.5 10.8 10.6 9.64 9.88 9.71 9.17 9.2 12.3 8.75 9.37 8.28 5.75 10.9 10.2 9.94 10.1 6.68 7.8 9.65 11.3 10.6 9.94 7.82 9.66 11.2 4.25 0 7.38 8.37 6.31 5.03 8.27 13.5 10.7 10.5 10 5.09 12.6 11.3 9.21 7.65 8.29 12.5 9.25 10.6 8 9.95 9.01 12.4 9.4 12.5 10.4 11.8 12.1 6.8 11.3 10.8 12.1 10 11.1 11 9.57 13.6 9.72 0.68 7.68 10.8 10.1 10.5 8.34 12.2 9.01 10.6 8 11.2 10.9 12.6 10.8 9.3 10.8 11.4 10.1 10.4 10.6 10.8 9.6 10.7 9.58 11 10.5 4.61 11.3 9.74 2 10.2 5.99 9.42 8.84 11 10.6 12.3 7.74 4.98 12 7.9 10.3 8.59 3.72 7.83 11.9 12.7 10.6 9.54 9.89 11 13.9 9.1 10.3 8.3 0 10.8 6.74 5.36 9.82 7.27 11 6.38 3.23 11.4 0.68 9.58 11.2 11.5 9.95 10.8 4.53 9.23 4.92 5.4 2.92 6.74 8.82 5.03 11.2 11.7 9.59 0.68 10.1 8.14 9.58 11.3 11.5 9.63 1.14 9.3 10 0 11.1 9.55 8.98 8.63 3.76 10.3 13 2 8.63 4.46 8.18 8.11 10.2 10.9 7.59 8.15 7.95 9.68 6.57 8.11 7 10.6 9.14 1.48 0.68 8.61 9.74 10.3 10.4 10.8 9.29 14 4 2.81 9.21 9.94 11.7 8.36 14.4 0 9.35 11.7 14.9 8.61 7.79 12.5 13 4.57 0 12.8 8.29 8.36 10.4 14.4 11.1 7.76 5.65 2.68 4.42 6.08 12.7 0 13.8 10.6 10.6 8.41 1.14 10.6 9.57 11.1 2.2 11 10.2 10.3 2.2 11.5 12.6 9.92 7.69 10.3 8.16 7.66 9.35 10.5 8.01 8.97 8.77 8.13 8.86 9.23 11.9 7.61 8.34 12.3 12.3 7.86 9.53 9.5 10.1 10.7 10.7 11.6 1.76 9.96 10.6 10.2 7.99 9.91 7.4 3.93 15.1 9.02 2.54 0 2.81 6.75 8.37 9.17 6.94 11.4 10.4 12.3 8.19 9.07 3.48 7.63 8.62 10.3 3.89 6.43 0 8.22 7 7.1 5.68 9.51 11.4 6.4 6.7 12 6.55 8.47 11.2 7.47 11.9 4.13 2.38 9.51 12.5 4.1 6.54 0.68 12 2 11.4 5.96 11.7 8.73 1.48 10.5 9.68 3.14 8.25 8.51 9.06 11.4 12.6 7.5 6.13 0 11.8 4.53 5.94 3.85 10.1 3.07 7.98 13.1 9.84 10.2 8.95 9.32 7.9 9.3 8.48 7.37 5.7 1.48 1.48 9.72 9.99 6.9 7.29 5.23 2.38 5.93 0.68 9.21 7.55 0 7.4 13.8 1.14 11.2 10 8.69 9.62 8.93 9.96 7.59 10.8 9.7 8.35 10.1 13.3 3.83 10 9.88 5.3 9.07 8.84 10.7 9.95 3.4 10 1.14 0 9.28 8.73 6.77 8.41 10 10.5 10.2 10.4 1.48 8.29 5.96 5.73 5.29 9.5 3.11 10.6 9.21 6.44 10.5 8.11 11.7 8.98 11.6 8.08 0.68 7.82 6.32 9.82 8.82 11.8 12.1 11.3 7.88 4.29 9.14 9.46 11.2 10.9 9.66 1.14 4.05 9.28 11.3 7.35 12.9 8.95 7.38 10.1 12.8 3.7 4.1 10.4 10.5 10.1 10.8 11.1 10.3 11.9 4 7.11 11 0.68 6.29 11.2 10.2 9.16 8.27 2 8.26 2.54 7.64 8.72 14.5 7.11 9.95 8.08 6.51 8.04 7.25 9.53 4.68 0 14 11.2 12.2 8.42 8.79 8.49 8.88 1.76 8.39 9.43 9.87 11.8 9.48 8.82 10.8 9.03 10.8 3.14 3.94 10.3 7.97 9.06 6.99 7.61 8.44 9.78 9.57 7.17 7.2 9.79 8.89 13.5 7.63 9.02 8.79 9.13 6.58 5.7 13.7 8.16 4.46 10.5 7.88 6.65 12.1 12 9.53 7.35 8.62 9.55 10.2 8.42 4.81 9.07 11.3 8.34 8.81 7.78 13.4 9.66 10.1 6.53 12.3 9.21 2.68 10.3 7.35 11.5 7.93 7.75 2.81 10.2 6.31 0 7.04 8.32 7.64 7.69 9.38 5.5 9.85 5.94 8.06 11.2 8.23 6.28 2.68 10.1 5.7 7.48 11.8 8.7 5.94 6.22 3.76 5.93 13.2 7.07 0.68 10.5 11.6 8.21 8.05 8.59 0.68 10.3 9.66 7.28 4.71 9.38 9.14 4.15 9.54 0.68 9.65 8.07 9.69 8.84 8.03 0.68 2.54 7.67 0.68 13 8.81 2 9.21 7.38 5.91 1.48 6.4 2.38 8.42 3.4 5.94 4.2 3.03 7.45 9.54 12 4.74 7.12 8.98 8.94 0 11.5 6.98 13 10.1 8.42 9.27 10.4 12.7 6 8.56 6.27 5.3 10.2 0.68 7.68 8.19 9.17 8.34 8.8 5.63 7.09 7.13 10.9 7.73 9.14 2.38 7.04 11.1 6.83 9.93 10.6 7.06 9.35 9.91 8.88 7.81 5.78 0 6.56 0 9.31 4.2 7.39 0 8.02 8.11 6.65 11.3 2.81 9.71 6.2 7.55 5.94 9.31 5.09 8.64 8.02 9.1 2.38 9.38 3.14 6.7 9.14 1.76 9.21 10.4 8.31 10 9.74 10.8 6.77 10.1 2.81 9.65 9.04 5.83 10 8.43 4.9 4.46 4.29 9.09 7.98 5.65 6.63 9.26 10 10.8 9.22 9.41 3.7 9.33 10.5 10.7 7.93 10.1 8.48 3.56 9.09 7.05 1.14 8.3 7.49 8.91 8.06 9.83 8.27 9.61 1.14 8.79 9.08 7.65 7.95 8.63 10.4 8.25 11.4 8.77 9.52 11.1 7.3 11.3 7.15 11.8 10.4 9.9 11.1 3.76 10.7 9.2 8.72 2.81 9.75 9.07 10.6 0 9.1 11.1 10.6 10.9 6.8 7.91 5.28 9.62 5.67 11 11.4 8.77 9.47 9.48 7.26 7.7 6.49 6.73 8.13 9.76 11.7 9.48 7.11 7.01 10.2 5.91 9.39 0 9.06 9.27 8.49 8.29 9.72 12.1 9.03 10.3 10.4 9.17 0.68 8.72 8.06 8.34 11.7 8.63 9.79 4.64 10.5 3.56 7.56 14.6 7.56 6.63 11.7 7.65 7.57 13 12.3 5.97 12.1 10.8 9.95 1.76 7.88 8.52 12 9.47 6.28 7.66 5.16 11.1 12.6 8.42 11.1 6.16 10.2 8.4 9.14 8.49 5.78 10.3 0 5.54 8.66 5.81 9.71 2.2 6.97 7.32 8.39 8.88 10.3 8.81 5.8 3.14 9.59 0.68 10.6 9.42 8.5 10.5 0 10.2 8.65 10.4 8.15 11.9 8.55 8.34 6.37 3.14 3.76 8.42 8.64 3.56 3.56 10.7 2.68 5.79 3.23 11.3 2.54 4.98 9.83 10.3 7.3 8.74 6.84 7.45 8.37 9.66 9.72 11.6 7.38 2.38 6.12 0.68 7.3 8.56 7.78 8.94 8 8.14 0.68 12.1 9.94 9.97 8.37 10.2 7.68 4.71 9.69 9.2 10.2 9.34 11.3 7.21 6.52 9.73 9.38 9.3 8.15 10.5 0 9.43 8.53 8.07 8.35 1.48 9.3 6.73 6.77 8.89 1.76 3.48 10.5 10.8 9.65 9.02 10.2 8.05 7.77 8.9 11 10.8 8.66 12.3 5.03 5.54 10.2 8.88 9.01 8.71 8.92 8.69 9.51 8.4 9.9 9.73 8.13 9.92 7.89 9.37 10.6 8.69 7.64 8.17 10.1 10.2 2.38 6.31 8.71 8.73 7.53 13.7 7.09 8.31 10.6 6.88 5.45 9.62 10.1 5.21 9.95 5.36 11.9 8.26 9.34 9.03 0 10.4 9.21 8.46 6.9 0 10.3 2.2 10.8 8.13 9.55 6.71 7.43 11.3 7.4 9.12 1.76 11 6.98 7.37 4.46 10.3 9.62 7.92 7.25 9.16 1.76 2.2 9.03 7.76 4.38 3.23 11.1 7.71 11.1 8.84 4.81 8.15 2.54 10.2 11.1 8.72 4.42 8.72 12 7.14 2 6.57 9.28 10.1 6.04 8.22 10.9 9.93 10.7 8.88 4.74 8.77 8 9.81 11.3 9.99 9.29 3.63 7.49 6.68 9.6 9.73 1.48 8.46 9.93 11.8 9.11 10.2 6.3 10.1 9.01 9.83 7.38 10.1 7.3 10.5 10.6 9.81 0 3.23 7.55 6.41 0 0 8.2 11.3 5.48 9.01 8.64 12.6 11.4 6.78 8.2 7.31 6.44 8.06 10.4 10.1 0 7.83 9.61 1.14 8.48 3.14 8.92 13.1 10.4 12 9.73 7.71 5.09 8.98 0 9.66 8.87 8.59 10.1 8.94 3.89 8.35 5.78 10.4 8.98 9.11 8.52 6.91 6.22 9.13 8.47 8.8 9.28 8.18 10.2 2.68 5.73 9.26 10.2 10.7 8.29 10.2 10.2 9.31 11.2 6.56 6.92 9.34 9.55 2.68 4.05 9.94 7.39 10 5.01 8.4 8.64 10.1 9.84 8.39 8.43 11 6.82 9.32 10.7 6.34 7.39 11.7 11.2 5.14 8.6 6.39 7.71 8.12 8.01 5.76 0 0.68 8.47 5.86 6.59 6.81 7.55 0 7.47 4.81 8.05 10.8 5.87 11.5 7.51 1.48 10.7 7.85 9.51 9.53 7.46 8.33 0 2.38 11 6.97 0 8.69 7.79 9.57 2.68 12.1 1.14 11.4 7.92 5.54 9.46 9.44 7.27 2.68 0 4.74 9.48 3.92 9.83 12.4 1.76 2.2 6.36 0.68 6.6 10.4 12.1 7.44 8.06 1.76 7.64 9.27 10.6 10.9 12.3 1.14 11.6 9.18 8.03 3.94 11 10.3 6.53 9.62 7.33 12.2 7.78 7.08 3.32 5.7 7.1 7.27 4.53 2.92 1.76 9.36 6.49 7.72 13.1 0.68 5.99 7.22 6.06 7.12 7.15 10.9 8.7 6.43 10.7 9.22 9.47 9.95 8.92 9.37 10.1 7.74 11.5 0 10.1 7.78 8.04 8.53 8.51 8.07 7.48 5.93 10.2 6.89 10.9 10.7 9.81 10.2 7.49 8.78 12.1 9.75 13 10.8 9.78 10.9 9.17 10.8 7.37 10.5 9.91 11.5 10.1 7.85 8.16 9.36 12.1 8.29 6.87 9.27 9.83 7.01 10.1 7.7 5.32 9.47 8.7 5.72 9.57 10.1 12.2 9.41 9.01 10.1 5.73 11.7 7.3 9.39 6.12 11.8 10.8 10.4 3.23 11.2 4.5 11.2 7.25 10.6 8.07 8.51 10.1 8.13 13.3 6.81 11.4 3.03 1.48 5.75 6.86 9.76 9.18 8.91 8.67 8.85 7.36 6.87 11.4 9.57 10.1 4.9 9.41 11.2 8.42 7.99 5.61 7.95 9.63 10.4 12.1 8.64 7.64 10.6 7.94 10.6 11 8.66 9.87 13.2 9.6 8.46 8.31 7 9.4 11.5 11.1 10.8 10.2 6.28 8.87 8.03 5.09 8.99 8.11 6.39 10 8.49 2.92 10.9 11.1 8.69 8.89 9.81 4.74 8.59 10.1 8.71 4.95 8.74 5.48 6.05 9.4 9 8.14 6.84 7.85 7.21 6.95 10.5 8.63 7.57 5.11 8.43 5.63 8.17 9.09 4.9 7.6 1.48 8.02 11.6 3.63 8.99 8.54 2.38 5.32 1.14 6.72 6.89 5.76 0 5.63 10.7 8 5.3 11.7 9.86 0 10.3 8.8 5.32 9.32 10.1 8.2 9.66 10.8 11.7 9.51 7.85 9.75 9.32 8.59 10.2 8.63 8.94 9.59 12.7 7.53 10.1 9.21 13.2 10.6 11 7.85 3.49 10.7 5.18 9.99 8.52 9.91 2.54 7.85 10.6 8.89 10.4 10.2 0 9.58 4.1 7.74 10.6 9.39 8.45 5.11 9.86 2 5.28 0 13.7 4.9 8.28 11.2 1.48 11.2 8.78 8.67 4.42 8.62 8.52 11 8.53 9.84 10.1 11.7 8.69 10.1 8.38 8.91 6.73 0.68 12.5 8.89 7.38 11.4 0 5.11 6.78 10.6 10.5 9.09 8.76 8.35 12 3.56 1.14 10.6 12 12 7.64 7.14 4.38 6.13 8.89 11.1 8.61 7.9 5.43 2.92 9.36 0.68 11.7 10.7 9.38 6.73 9.77 7.14 9.74 12.8 10.1 11 10.2 0 8.38 7.81 1.76 9.9 0.68 1.76 2.38 5.6 2.68 0 2.2 1.14 1.48 2.54 4.2 2.54 1.14 2.38 9.43 0.68 2.38 1.14 1.48 1.48 10.9 1.48 1.14 3.4 2.2 2 0 0 2.38 0 3.03 9.77 0.68 2.2 1.48 3.14 3.76 1.14 10.8 8.06 0 1.76 7.7 9.09 2 8.96 8.75 0 8 10.8 2 3.76 6.67 7.34 7.8 0.68 2.54 9.86 4.98 10.4 8.77 2.81 11.5 11.9 5.38 11 8.95 10.4 9.37 5.75 9.79 10.2 4.95 0 0 11.2 9.28 10.8 10.9 9.71 12.9 4.15 7.28 12.4 4.35 0 0.68 12.4 4.74 8.84 7.6 3.23 0 3.32 9.85 6.36 0 15.7 6.09 7.33 4.05 11 5.75 7.39 10.2 9.88 10.7 7.59 9.25 8.88 7.82 8.14 10.5 8.44 3.48 1.48 2.81 1.14 8.77 0.68 10.5 8.89 11.4 11.2 15.3 1.48 3.63 10.6 8.51 12 9.3 12.5 10 10.6 11.8 8.72 12.3 11.3 9.89 8.43 6.6 12.4 12.2 14.1 10.3 10.2 10.5 11.2 13 8.12 7.25 10.3 10.7 6.22 11.4 8.56 3.03 12.2 9.71 7.73 9.34 11.4 9.17 1.48 9.25 13.7 12.9 10.5 9.58 8.31 10.1 7.43 6.26 3.56 13.8 4.98 9.74 4.38 8.75 11.5 10.4 10.8 8.07 11.6 9.84 8.84 9.15 6.38 11.7 10.8 10.2 9.29 10.9 7.01 9.38 8.27 10.8 10.6 11.8 12.7 8.91 10.2 4.29 6.09 10.6 5.8 12.5 1.48 4.42 2 8.7 6.87 10.4 2.54 9.63 1.48 4.34 13.1 8.68 1.76 7.8 11.8 7.14 7.28 9.59 12.4 10.8 9.1 10.8 6.99 8.71 9.78 8.36 9.69 6.03 1.48 10.7 9.23 6.46 10.5 9.3 11.5 5.23 9.23 10 9.99 12.7 10.2 9.23 2.54 9.86 8 9.24 11.9 9.21 8.38 12.8 10.3 4.05 11.1 7.99 1.48 11.4 11.3 12.6 6.09 10.2 4.57 6.5 11.5 3.23 10.4 8.35 11.2 0.68 7.5 8.05 8.41 13.4 1.14 8.73 8.65 10.5 3.4 7.05 8.31 10.6 8.32 10.6 6.73 7.38 8.05 9.15 7.52 11 8.38 6.06 1.14 10 10.4 10.9 11.3 9.86 5.3 10.6 7.78 12.4 11.9 10.2 8.52 8.01 7.38 10.3 9.96 11.7 7.25 12.4 9.29 6.69 9.5 1.14 10.9 4.92 11.3 4.61 3.03 7.41 9.3 10.5 8.77 12.5 11.5 8.1 9.3 9.5 6.58 5.4 5.4 8.42 9.5 5.54 10.5 3.56 8 12.9 9.26 3.03 9.32 5.46 6.86 11.4 12.9 5.45 7.26 13 9.32 6.47 8.06 8.07 7.66 9.37 6.49 10.9 0 11.1 9.14 4.53 10.4 7.48 8.02 10.6 6.05 7.61 12.6 7.83 11 0 2.92 10.9 10.9 14.2 1.76 3.89 10.2 12 3.87 7.63 10.8 7.29 7.43 7.01 1.48 6.76 7.05 0.68 6.01 7.68 10 4.74 10.1 2.54 7.98 5.83 4 0 9.43 9.18 0.68 9.18 7.63 10.3 10.1 11.8 5 11.1 3.7 10.7 6.78 8.63 6.44 6.47 9.53 6.88 8.9 5.21 2.38 0.68 5.21 2.68 9.53 8.9 8.1 8.42 0.68 6.34 10.4 5.03 3.23 5.9 8.23 9.95 0.68 4.56 9.15 10.7 3.56 8.73 10 7.07 2.82 4.2 4.64 8.05 8.84 8.47 5.84 2.81 6.95 10 7.17 5.43 9.12 8.06 6.83 0 8.31 2 8.18 4.46 4.98 3.76 10.4 9.04 11.4 8.76 8.25 6.9 9.88 8.12 5.75 7.75 10.2 7.12 9.29 5.36 5.72 1.29 2.68 1.76 0 5.14 1.48 6.18 9.86 9.93 9.67 7.36 6.2 5.63 4.29 5.46 8.35 2.2 8.43 9.04 8.38 3.7 3.94 6.21 1.14 5.32 8.17 9.78 0 7.66 5.43 5.16 8.44 8.7 7.96 7.45 5.32 6 7.88 6.69 6.06 2.68 15.1 8.43 5.48 9.17 5.52 0 3.94 6.08 3.48 6.12 11.9 0 8.52 7.05 8.1 7.87 9.16 9.79 10.9 9.14 6.01 7.84 5.06 7.16 5.54 9.24 4.53 3.7 9.62 1.48 6.54 8.93 7.54 9.45 8.02 5.16 8.95 0 5.52 10.2 3.76 8.97 8.21 5.34 9.12 0 10.8 5.52 1.48 9.79 7.8 4.42 1.14 2.92 9.9 8.8 10.4 6.57 9.06 8.34 7.84 6.49 9.49 5.16 9.47 8.68 9.85 7.09 7.83 8.02 9.09 7.44 4.64 8.68 9.41 7.16 8.51 8.21 12.2 10.3 3.76 6.04 3.76 1.76 7.49 3.23 7.01 6.97 5.28 9.22 7.72 8.95 7.02 7.44 9.81 0 12.5 8.29 10.2 8.86 9.54 10.6 10.7 5.5 8.29 10.1 3.64 7.78 6.56 3.65 6.16 1.14 3.03 4.25 9.81 6.51 5.65 9.1 9.85 7.32 3.63 3.4 5.43 0 5.23 6 9 9.89 6.97 11 11 8.28 8.54 10.5 8.18 9.19 9.67 9.3 5.14 15.4 11.9 10.5 11.8 8.95 9.98 1.76 2.68 12.5 10.8 10.1 3.14 2.81 1.76 1.14 7.61 2.81 11.2 10.2 5.76 2.2 5.32 11.6 1.14 15.8 8.44 7.64 4.15 1.48 11.7 6.28 6.2 3.23 5.5 1.76 3.4 5.56 8.8 6.15 9.65 3.63 11.6 9.27 7.34 9.41 7.18 7.02 10.5 5.52 9.85 11.2 10.2 7.53 8.52 11.9 10.3 10.5 9.47 10.4 9.5 10.3 8.41 10.3 9.55 11 10.6 10.1 8.09 5.34 10.6 6.44 9.73 7.79 10.3 9 5.6 5.5 11.4 9.9 9.77 9.36 7.05 9.77 7.77 4.92 8.06 6.6 6.02 7.86 2.38 7.02 6.71 6.44 10.4 11.2 9.27 9.52 6.4 10 9.66 10.6 10.4 9.01 7.45 11.9 12.4 1.14 9.95 2 0 13.2 9.41 10.1 12.6 9.6 10.5 3.89 0.68 7.14 8.92 10.1 11.4 9.78 11 11.3 10.3 8.37 5.84 9.97 10.6 9.22 11.7 12.2 11.7 5.81 10.1 9.12 12.4 12.2 11.1 9.17 9.08 8.43 5.86 8.53 7.01 10.4 0.68 10.5 10.5 9.17 12.1 10.3 13.5 10.8 11.4 12.3 11.2 11.9 6.4 3.03 9.07 8.22 9.57 1.14 7.46 4.98 6.63 11.1 7.6 11.9 8.68 8.6 1.14 6.89 3.63 6.4 8.06 8.22 9.96 4.74 0.68 8.11 4.38 11.7 13.3 7.48 9.91 9.59 8.75 13.6 9.55 6.9 1.14 5.6 11.9 8.95 1.48 4.92 10.3 9.02 0 9.94 7.79 10.1 13.4 0 3.32 12.1 8.41 7.06 8.44 8.17 0 1.76 0 8.76 1.48 5.8 0 9.39 8.88 1.14 7.1 9.53 3.03 7.59 10.7 8.71 12.2 11.3 12.8 11.9 11.5 10.9 4.2 5.54 14.4 7.29 10.1 11 9.4 10.8 9.09 9.98 10.9 0 8.49 8.18 4.81 4.5 0 10.2 6.01 10.4 9.6 9.37 18.4 12.1 8.6 7.74 11.3 3.32 2.21 9.64 3.32 10.4 9.05 8.55 5.83 9.92 4.87 7.27 10.7 11.3 12.3 9.65 3.03 0.68 7.01 7.19 1.14 9.95 8.85 10.8 1.48 8.3 11.1 0.68 11.1 3.14 0 8.26 11.2 9.26 10.9 10.5 11.6 0 7.11 7.78 10.1 8.24 9.58 7.96 9.03 10.5 9.16 3.7 9.82 10.9 12.3 8.69 9.92 8.15 11.9 9.22 10.9 8.77 9.01 9.35 8.9 0 8.13 10.5 5.09 6.95 11.1 12 11.8 11.6 1.14 0 5.1 12.2 0 10.2 11.9 8.41 10.2 8.09 6.57 13.7 8.45 9.83 6.6 4.71 0 2.2 6.97 8.68 8.8 7.09 0.68 11.1 11.7 11.3 9.66 15.4 15.5 15.4 14.3 11.8 9.51 15.6 1.76 17.1 13.8 16 16.1 14.7 15.6 15.3 14.6 15.8 13 15.9 6.29 14 13.8 11.4 14.9 14 14.8 15.7 15.8 16.1 14.8 15.3 15.7 13.8 14.2 13.4 15.3 15.6 14.3 9.31 12.4 15.3 8.33 15.7 15.4 15.6 11.5 11.3 13.1 13.7 14.3 16.6 13.6 17.4 4.7 0 3.4 8.23 0 15.6 1.14 3.56 16.5 11.2 9.31 9.25 8.81 11 13.9 15.9 15.5 14.9 16 15.8 14.4 15.2 14.3 15.7 15.7 14.3 8.63 15.9 16.5 15.7 15.2 15.2 15.8 14.7 9.84 10.5 13.9 11.8 14.6 6.44 9.72 13.3 7.62 11.8 10.3 5.9 0 5.92 7.36 9.85 6.14 10.8 8.58 9.92 7.99 8.69 0 0.68 2.42 3.83 8.13 2 6.18 11 0 12.3 6.74 8.77 10.4 11.1 1.48 9.87 4.98 0.68 9.24 9.74 11.9 1.79 4.95 8.89 12.1 10.8 7.04 13.1 8.36 7.95 11 8.65 9.38 1.76 8.16 8.52 8.02 11.3 6.97 7.94 3.94 5.14 6.7 0.68 2 11.9 13.1 3.03 0.68 2.68 2.92 1.48 8.86 2.92 8.69 8.31 11.3 1.14 3.4 9.83 8.25 6.79 0 8.12 10.9 2.68 5.6 6.92 8.57 10.9 2.92 2.68 9.48 0 4.61 5.21 9.25 2.92 10.3 10.5 7.12 8.01 0 8.3 9.75 11.9 8.58 8.09 10.7 4.1 9.78 10.5 12.1 8.71 9.7 9.46 9.19 1.14 6.24 1.48 6.82 7.21 11.3 10.1 9.66 9.29 7.11 10.8 7.16 3.57 8.74 9.68 6.58 11 6.18 9.51 4.81 0.72 8.94 1.76 6.46 9.97 8.95 9.61 5.45 10.2 7.05 12.3 10 9.04 12.1 6.25 10.4 0 5.65 2.54 11.6 8.44 7.93 9.11 12.7 9.91 10.1 3.03 7.52 6.1 9.96 7.86 10.3 8.17 4.25 5.32 1.76 4.81 7.66 10.7 0 6.22 5.11 10.1 2.38 9.92 6.18 0 5.7 12.4 2.38 7.01 9.39 8.97 8.37 5.14 7.29 6.92 8.27 9.26 10.7 10.1 10.4 11.9 7.31 5.25 7.1 6.19 6.12 5.41 6.35 7.74 3.56 9.67 5.56 8.64 2.92 8.47 1.48 10.3 8.86 4.64 7.79 7.71 9.32 12.1 11 10.3 11.9 7.18 12.7 6.43 7.05 6.13 7.11 8.31 10.2 13.5 7.81 8.64 6.4 11 7.3 12.6 10.5 9.24 8.25 11.7 9.67 1.14 5.68 11.9 11 8.37 7.06 5.36 6.73 9.21 8.12 8.1 0 0.68 7.04 0 12.1 3.76 12 13.2 2.81 6.66 5.74 2.92 6.25 8.66 6.56 4.95 4 11 2.68 4.53 2.81 13.9 11.6 8.11 0.68 11.3 9.96 9.23 12.3 11.4 10.3 0 10.7 7.39 6.36 10.8 8.88 8.62 10.1 3.7 8.46 10.4 6.06 1.14 1.14 6.37 11.2 8.35 8.77 2.81 8.79 7.67 1.14 2.2 11.4 5.99 7.67 0 0.68 9.68 8.33 5.11 1.76 8.05 5.97 1.76 1.76 0.68 6.84 5.25 0 9.85 7.51 0 9.33 7.25 7.7 5.32 4.29 3.56 9.08 0 6.92 5.54 8.31 6.62 0 2.81 3.23 7.06 3.94 8.15 11.8 4.1 8.59 9.14 10.6 9.97 10.5 10.1 8.66 9.93 9.29 7.82 7.86 9.19 11.1 8.68 4.29 5.4 0 0 5.06 3.63 4.57 1.48 9.94 2.68 6.1 1.48 9.57 0 6.94 9.12 2.2 11.8 0 7.01 2 6.39 9.73 5.21 1.14 12 12 2.2 7.18 1.14 8.75 7.85 5.09 0 3.92 3.14 0 10.7 0 4.2 4.69 7.55 0 0.68 9.46 6.89 4.57 2.2 3.94 7.47 9.76 0 11.5 1.48 4.2 3.4 8.9 1.14 6.31 3.7 10.9 0 9.17 5.86 1.76 8.74 0.68 1.14 9.04 10.9 8.83 0 9 0 0 0.68 3.48 2.81 1.76 10.9 3.32 6.63 2 10.2 10.8 12.2 6.76 3.89 7.74 13.1 1.76 3.32 11.5 11.8 9.81 8.4 10.5 7.95 7.38 9.97 8.91 11.2 11.8 6.27 9.81 9.8 9.91 2.38 9.38 8.7 8.07 7.92 9.97 7.97 8.78 12.5 8.89 10.6 8.6 10.7 8.87 8.25 10.5 10.8 8.41 9.08 8.49 7.28 8.08 0 10.2 7.42 8.48 8.41 9.04 8.13 8.78 0 10.6 11 5.43 3.03 8.3 11.3 1.76 7.51 8.19 5.3 10 10.4 11.2 9.35 5.03 7.9 7.4 6.76 12.1 4.25 9.11 10 8.37 2 10.6 9.37 6.85 9.88 9.39 10.3 7.89 10.3 8.75 7.91 7.57 6.2 7.45 2.54 6.22 5.36 10.1 8.44 8.85 6.4 8.67 1.48 8.27 5.7 7.55 2.92 9.26 9.48 11.3 6.18 11.3 4.84 4.05 12.9 8.14 8.22 7.71 9.61 11.2 3.56 10.8 1.14 11.1 9.75 9.96 12.6 11.1 8.09 11.1 9.39 11.5 9.38 7.23 10.1 9.77 11.2 2.2 4.81 12.9 11.9 9.95 8.69 5.06 7.25 4.98 10.3 5.93 10.9 8.07 11.2 9.08 5.92 11.3 9.94 6.52 10.9 7.88 0 3.76 1.14 7.41 10 3.63 9.93 9.43 10.2 9.13 13.7 9.32 11 8.12 11.7 13.2 9.96 9.12 9.93 1.48 9.35 4.95 10.3 9.04 10.6 4.2 8.63 2 11.5 1.76 2.2 11.3 0.68 10.5 11 4.71 3.23 9.73 6.7 9.31 6.81 7.19 9.36 10.4 7.83 9.18 11.9 9.86 4.23 1.14 5.63 0 3.23 1.48 0 7.28 0 0 6.12 10.3 1.48 0.68 7.87 5.18 0 0 6.28 4.2 8.23 6.65 0 13.8 4.57 0 0 5.34 6.54 8.49 8.31 10.9 2 7.45 5.4 4.74 3.56 10.6 7.37 6.18 1.48 3.4 10.6 5.68 10.2 4.29 5.46 7.07 1.48 9.52 7.8 3.4 5.48 1.14 8.08 6.87 4.53 7.88 2 6.16 6.39 0 5.86 0.68 5.84 7.46 3.56 9.59 9.65 11 0 0 2.68 0 8.15 0 9.68 6.29 2.68 11 3.7 6.86 10.2 5.09 6.56 0.68 0 8.84 9.82 7.82 10.7 7.03 0.68 2.38 5.21 2.68 6.75 6.32 3.94 8.98 0.68 6.81 6.75 9.96 8.98 12.5 6.86 8.1 8.99 12.1 9.91 7.23 10.7 6.96 10.1 6.96 3.14 8.6 3.32 11.8 8.07 11.8 11 10.6 8.54 1.48 7.34 8.13 1.76 2.54 0 3.94 11.2 8.24 11.8 11.8 12.2 6.81 8.7 6 11.2 2.01 10.1 7.38 9.9 8.67 9.06 13.1 11.7 12.4 5.96 5.58 0 8.38 8.99 7.55 9.01 9.51 4.9 5.43 10.5 12.7 11.9 9.66 14.2 12.1 8.89 12.1 12.3 13.2 11.6 11.2 11.2 11.4 8.83 11.8 8.27 6.32 10.3 10.9 7.5 8.67 0.68 14.4 7.28 12.5 6.16 11.2 9.27 11.6 7.64 12.8 7.96 8.63 9.73 7.53 5.87 1.48 0 2.2 7.36 10.2 8.38 7.73 9.28 6.38 10.4 6.54 9.75 7.87 13.4 8.18 9.79 11.8 12.5 7.12 8.31 8.81 9.32 3.48 9 9.11 7.32 13 0.68 3.14 8.6 2.54 9.89 11.9 8.83 0 13.3 9.79 11.7 11.5 11.1 11.2 11.3 12.1 10.4 10.8 6.46 10.9 10.7 10.2 8.78 11.7 9.06 9.56 11.7 11.4 10.1 11 12.8 11.9 13.8 12.9 6.68 7.42 2 12.4 9.21 11.6 14.9 2.38 12.2 2.54 12 12 11.3 4.9 11.7 10.8 4.42 0 3.76 0.68 0.68 1.48 2.38 2.61 13.3 1.73 0 0 1.94 9.76 10.8 5.56 9.08 0 5.21 10.6 7.8 7.9 7.68 11.9 10.2 4.42 1.76 11.8 10.9 5.8 3.32 4.38 5.63 7.91 11.8 11.4 6.16 12.6 9.25 9.64 7.27 10.3 6.59 13.8 2.2 8.79 10.1 12.4 5.9 11.4 9.27 11 10.3 12 9.79 10.2 10.3 13.5 7.89 9.84 9.99 10.9 2.38 13.5 6.21 1.76 6.82 11.2 1.14 6.84 2.54 1.76 3.23 10.8 6.63 1.14 8.06 7.35 9.81 8.39 9.79 10.4 13 7.18 10.2 11.4 6.08 10.8 11.6 10 9.57 6.94 9.68 3.94 0 13.1 14 13.3 11.8 13.8 8.02 10.7 10.8 5.23 1.76 11.4 11.2 9.3 12.1 7.68 7.7 8.29 6.01 4.29 1.48 5.09 8.48 10.9 8.69 4.34 1.14 4.9 7.11 10.2 1.14 0 13.3 3.19 10.2 11.5 4.61 3.83 13.2 10.6 5.28 8.09 8.85 7.84 2.68 13 7.67 11.3 8.13 10.6 10.3 0 11.3 11.5 12.3 12.5 4.29 2.68 9.69 10.5 9.42 5.54 10.4 10.2 8.89 7.54 11.5 7.3 6.52 6.25 8.81 1.14 8.48 14.7 8.78 4.74 9.89 3.14 8.56 9.42 4.1 10.5 0 9.44 0.68 6.97 9.36 4.1 6.73 9.63 8.19 9.96 5.03 7.03 4 12.3 8.12 5.36 11.6 8.24 4.57 7.02 0 11 9.71 0.68 8.98 5.16 9.81 8.2 3.89 10.4 0 7.23 10.2 9.56 7.78 10.8 4.1 2.2 11.4 2.81 5.46 5.93 1.14 12.4 9.29 9.23 11.3 5.48 7.9 14.8 11 12.5 0.68 11 5.99 12.3 7.9 14.4 3.76 5.43 5.92 10 8.37 5.16 12.3 11.1 7.07 8.42 1.14 9.54 17.5 11.7 4.9 6.87 6.28 10.2 9.46 9.34 11.6 9.01 8.2 11.1 17.7 11.6 8.55 7.01 6.98 8.41 8.79 9.81 9.73 10.8 6.69 9.8 11 3.14 7.13 3.7 0.68 10.7 2.38 9.39 5.99 12 11.3 6.73 3.83 11.4 11.5 9.26 7.22 9.4 8.03 12.1 7.38 6.68 9.14 2 12.2 1.76 14.3 10.8 11.9 10.4 12.4 12.8 9.89 8.48 10.8 6 16.4 0.68 13.5 8.29 7.05 14.6 12.2 12 7.74 9.74 6.68 7.89 9.64 0.68 13.6 9.35 8.44 4.95 0 5.06 2.38 0.68 2.68 8.64 7.07 0 3.94 2.97 11.3 8.38 11.1 1.48 11.1 2.38 8.87 9.55 6.96 9.98 6 7.46 11.4 11.3 12 10.8 9.84 5.3 8.77 9.2 6.33 4.25 13.2 5.01 5.03 0 4.87 6.82 11 8.97 10.2 5.21 5.4 6.06 6.06 7.7 4.25 6.67 6.54 0 5.48 9.07 10.3 1.14 7.22 0 4.84 7.18 12 6.2 5.23 0 9.23 9.87 8.17 0 5.83 0 7.6 7.67 4.29 5.5 4.2 8.97 6.91 0.68 14.3 2.81 8.56 2 6.69 0 1.14 8.94 9.41 0.68 7.1 0 2 8.64 4.53 8.36 0.68 3.83 3.23 4.77 3.45 2.2 4.42 7.06 5.09 5.68 0.68 4.2 9.83 2 3.48 5.06 3.03 0 9.53 11.7 8.78 7.3 6.31 2.2 6.36 10.1 1.48 6.9 2.54 11.4 11.5 3.56 2 2.68 11.7 0 7.78 2.68 1.14 0 7.87 9.23 1.48 4.74 0 8.96 6.3 5.83 4.61 5.03 4.38 12.3 0 12.7 1.14 15.2 1.48 15.4 14.3 14.6 9.86 8.74 12 10.6 8.6 12 11.9 11.3 9.33 10.8 10.9 8.75 11.3 5.09 11.1 11.2 11.6 10.1 9.21 9.78 11.9 10.2 12.2 6.51 9.11 1.14 3.4 13.8 4 10.3 5.06 10 5.5 6.94 13.7 3.63 6.63 9.43 8.47 9.44 10.9 11.5 10.9 2.92 12.6 0.68 13.4 12.8 11.1 11.6 12.1 11.6 10.2 11.3 11.4 10.5 0.68 10.7 6.53 8.38 10.7 11.1 13.6 12.1 11.8 12.3 8.96 9.58 13.5 11.8 11.4 10.8 8.96 8.48 10.7 6.34 2.2 9.1 0 14.4 13.9 2 4.45 6.12 5.01 0.68 6.77 10.9 8.04 0.68 2.81 3.76 10.4 12.2 13 12.1 12.1 12.1 12.3 12.9 6.09 12 7.6 11 9.57 4.61 3.14 7.69 6.72 5.68 0 8.44 0 3.4 5.4 3.89 1.14 0 8.87 7.46 0 12.6 4.38 0.68 5.98 7.67 9.25 9.52 8.96 10.7 5.34 13.3 10.6 6.28 10.2 9.19 11.3 13.2 9.81 6.01 10.2 14.2 6.46 13 10.6 10.9 14.1 10 12.3 9.85 3.94 12 9.1 11.2 7.97 6.42 10.7 8.63 6.14 8.63 5.39 12.6 6.8 8.64 7.32 8.08 7.96 6.39 9.31 3.83 6.69 8.69 10.2 8.92 6.1 10.7 7.45 7.92 5.25 9.79 9.53 8.08 6.97 6.95 7.67 7.24 6.9 7.84 8.16 7.46 6.51 5.23 2.2 0.68 4.34 5.9 4.68 8.54 8.17 9.38 6.7 3.01 9.13 2.81 7.83 9.37 8.06 0 6.54 6.12 4.77 4.59 11.7 5.81 4.5 2.2 2 0 0 4.69 8.77 8.21 6.31 8.44 7.58 6.78 6.87 6.61 7.96 8.44 5.89 6.5 8.52 7.51 4.99 0 9.9 8.79 8.74 10.5 7.8 4.15 7.31 0 9.18 6.6 10.5 7.28 6.16 3.32 6.04 3.63 6.47 10.4 7.71 11.5 0 7.27 8.8 2.38 7.28 7.86 5.84 8.82 7.03 8.45 2.92 6.07 11.7 7.62 7.82 7.18 5.46 8.49 10.4 8.68 4.7 7.05 5.21 8.73 0 7.85 1.14 5.16 7.21 7.55 7.04 6.32 2.92 5.78 5.56 6.05 5.42 4.38 12.6 8.14 9.61 9.17 3.32 9.71 6.34 15.1 7.92 12.6 7.16 11.7 5.48 4.05 12.7 9.08 6.37 7.8 10.7 9.17 11.1 4.25 8.38 9.77 6 11.5 4.57 2.92 8.92 9.8 9.38 4.05 8.65 11.3 10.9 12.3 9.1 3.32 12 3.48 9.68 10.6 7.04 4.74 8.36 9.97 10.9 8.74 10.1 0 2.92 7.16 9.71 6.88 11 12.4 8.22 11.2 10.4 6.25 7.75 11.4 10.6 1.14 10 10.4 7.95 10.2 7.58 11.9 10.5 6.95 10.5 9.64 7.45 10.1 10.5 10.6 10.1 11.4 10.9 11.1 9.32 12.3 5.99 9.63 5.34 9.37 11.5 11.3 10.1 5.6 11.2 9.28 10.2 9.87 7.38 4.87 5.06 7.23 11.7 8.08 9.58 12.5 8.8 9.63 12.1 10.9 6.92 11 8.18 4 9.33 11.4 7.81 3.14 3.94 12.6 11.2 9.79 0 11.1 10.6 10.7 11.4 7.22 8.03 7.43 8.52 11.2 11.2 9.08 9.75 9.79 11.1 11.3 7.59 4.77 5.81 11.3 2.2 6.06 8.06 10.9 7.18 8.52 9.18 9.13 12.1 10.5 9.3 0 7.01 8.46 12.7 2 12.5 7 5.54 9.73 7.77 9.53 8.44 8.1 9.4 12.7 9.9 9.82 3.76 9.53 12.6 1.48 9.62 11.4 9.58 8.41 7.85 0 8.71 0 1.48 0 11.8 7.3 8.76 6.69 9.02 12 4.2 1.48 8.51 0 9.68 5.36 10.9 8.59 5.96 13.1 11.9 8.69 0.68 6.53 9.29 9.55 2.92 2.54 1.14 0 10.5 8.72 8.13 0 9.16 8.83 7.69 9.07 10.4 8.93 11.9 9.22 5.09 11.1 10.9 9.96 11.3 9.33 9.6 8.53 7.62 6.39 6.12 10.5 12.4 4.34 9.33 6.87 7.08 2.2 6.83 7.79 4.34 6.84 11.2 10.7 3.7 10.1 0 8.63 9.05 0 8.92 7.53 8.44 4.1 4.15 7.45 3.48 8.68 7.8 7.91 8.24 3.83 9.96 7.51 1.14 7.9 9.97 8.76 9.48 10.7 9.22 9.3 6.69 10 7.51 11.5 6.19 5.56 7.47 9.09 7.72 8.36 9 11.9 2.38 7.18 8.36 8.37 9 9.86 8.38 0 8.91 9.47 8.44 8.9 8.57 6.78 6.27 9.21 3.03 6.19 8.36 8.16 8.38 6.94 6.97 4.71 8.33 8.3 8.22 8.67 8.76 10.5 8.29 11.2 8.36 10.2 7.59 9.18 9.43 9.32 10.9 10.7 10.1 7.22 2 8.8 11.4 5.92 8.65 8.62 8.25 1.14 9.13 7.34 8 9.71 8.24 6.52 0 3.03 6.44 7.82 5.67 5.28 0 9.55 3.03 8.43 9.48 7.86 8.98 0 8.22 9.31 3.83 10 10.2 11.4 6.9 7.49 9.84 3.83 2 1.48 8.24 8.78 7.68 9.43 6.14 0 2.92 0.68 7.9 4.81 6.73 12.3 8.96 12.2 9.15 8.99 9.22 9.65 5.01 8.71 1.76 9.67 3.23 6.29 7.89 6.32 9.49 6.85 10.6 7.54 4.42 2.2 5.45 6.86 6.84 9.41 0 4.77 6.18 6.2 6.18 9.21 9.6 6.81 6.73 8.09 7.96 8.51 3.83 8.96 9.07 5.6 4.29 7.41 5.01 6.84 2.68 5.46 10.7 3.32 5.86 7.03 0 6.34 4.1 0 3.76 9.4 0.68 4.2 0.68 6.15 9.03 2.38 8.83 7.68 7.53 9.43 10.9 4.71 7.96 8.73 9.97 10.1 4.05 9.93 8.83 6.3 8.82 9.39 7.03 4.5 6.24 8.75 10.1 12 7.95 8.3 10.6 10.2 10.2 3.94 7.39 9.54 6.86 6.89 8.67 10.8 9.74 1.48 5.48 5.23 4.71 9.28 8.59 6.63 5.65 6.58 10.6 9.29 0 8.03 2.68 5.01 4.38 7.76 11.4 3.89 10 1.14 9.89 0 0 9.83 8.9 0 7.75 6.28 1.77 9.94 0 0 9.01 1.76 8.81 6.34 10.1 8.06 8.82 11.8 5.69 6.61 8.72 7.51 8.23 7.53 4.15 3.03 0 9.85 10.8 6.95 10.1 6.69 5.77 6.28 6.28 8.72 1.76 4.9 1.76 10.4 1.48 0.68 6.44 8.76 2.81 8.4 7.91 7.88 8.26 10.8 8.72 8.19 5.14 8.26 7.75 8.13 7.1 7.62 6.18 8.53 10.9 10.3 9.38 1.76 0 0 2 4.61 5.6 7.8 8.15 1.56 6.74 2.2 0 7.74 11.2 12.4 2.2 6.37 2.54 3.23 8.16 0 8.26 4.42 3.48 4.46 8.99 4.53 10.5 4.2 10.7 9.23 1.48 11.2 9.34 11.6 7.57 6.63 9.55 9.3 7.2 9.52 7.15 8.19 5.11 8.61 7.7 7.66 8.73 5.8 10.2 9.22 10.7 7.81 8.88 7.81 10.6 9.42 9.96 10.9 8.76 0.68 8.53 7.94 4.25 10.1 9.1 9.52 10.2 8.06 8.53 8.38 8.35 0 11.2 9.02 9 10.4 10 7.58 10.9 11.8 10.4 6.77 9.76 10.4 7.88 11.6 7.17 9.09 7.3 8.51 0 7.75 2.38 5.54 7.57 7.61 8.25 8.27 9.89 2.2 12.1 8.29 1.48 7.05 9.78 11.1 2.38 7.47 11.8 9.77 5.4 10.3 11.1 9.25 7.8 5.43 6.29 6.32 8.26 5.83 7.45 5.5 7.9 3.23 9.57 9.8 6.93 8.2 2.92 11.3 4.53 3.83 10.3 9.1 1.76 7.95 8.24 11.8 7.35 10.1 11.9 9.82 1.14 9.28 2.68 9.6 8.78 6.59 9.36 10.8 12.6 9.09 5.36 9.51 11.5 3.89 11.2 10.2 3.4 9.38 3.14 6.75 10 7.24 11.2 2.92 2.68 2.92 0.68 4.71 8.38 6.84 7.07 9.9 5.28 6.64 5.6 4.84 8.27 10.7 8.89 8.28 10.1 13.8 7.9 8.83 10.7 6.5 11.5 12.1 10.7 12.2 9.18 13.9 7.54 6.62 6.26 8.6 8.99 6.1 7.36 10.2 8.7 6.53 8.55 5.93 9.82 9.21 8.57 8.53 7.77 11 4.74 3.23 5.6 0.68 11.2 10.1 10.8 9.84 2.81 6.01 9.84 12.4 7.14 2.54 4.34 8.32 5.65 4.25 9.33 8.36 12.3 12.2 15.4 5.25 8.59 12.6 4.2 0 12.2 10.5 9.07 3.23 8.41 9.03 12.1 8.17 9.43 2.38 10.7 2.38 6.18 12.3 3.4 10.2 8.6 9.67 12.7 10.2 3.32 10.4 9.13 7.87 13.1 7.2 10.5 9.4 8.94 6.49 10.5 9.34 9.14 7.67 8.45 8.45 11.9 0 8.68 6.64 10.7 8.01 5.21 9.68 8.65 0 7.6 6.03 6.65 10.9 11.4 8.43 5.73 10.1 7.52 8.27 9.47 10.8 9.05 8.17 0.68 6.04 8.78 9.86 10.6 3.7 11.8 7.86 9.14 11.6 3.84 10.6 8.34 11.1 10.2 11.5 8.47 9.17 2.2 9.14 4.42 10.8 2.2 5.87 11.8 10.3 4.25 7.78 6.85 8.79 9.65 5.18 2.54 8.78 7.87 5.32 6.24 6.38 8.59 5.97 6.01 10.9 2.97 7.74 5.92 10.8 11.1 5.92 11.4 8.81 13.1 11.7 7.15 8.2 12.5 10.6 10.5 0 9.74 10.3 6.34 11.1 10 8.42 10.9 2.54 8.16 7.92 9.98 11 11.2 11.5 8.69 9.35 12.9 12.6 7.92 8.98 3.94 13.2 9 0.68 10.6 10.6 9.98 8.51 13.4 9.62 12.1 11.6 8.47 12.1 11.1 11.4 8.17 13.2 12.8 9.45 11.8 8.46 12.3 12.4 6.22 8.79 0 10.9 12.1 8.03 4.77 8.51 4.42 9.78 10.5 10.9 8.34 3.32 10.9 8.95 9.8 3.32 11.1 9.54 8.63 9.06 13.3 5.46 7.36 6.86 7.75 6.78 6.95 2.38 1.48 10.7 2.38 3.32 2.81 7.96 4.38 8.88 5.06 3.89 2.68 11 3.03 2.2 2.54 9.81 1.48 1.48 5.25 2.38 9.47 13.2 12.4 9.35 7.71 4.15 5.32 1.76 8.13 6.03 3.14 8.8 9.86 11.2 8.7 6.53 4.64 7.61 9.43 7.13 8.22 3.7 8.19 1.48 13.2 6.38 9.17 2.2 5.48 5.23 1.76 1.76 3.94 9.85 9.69 4.5 7.83 7.05 8.43 10 5.7 7.6 4.05 3.32 4.64 2.54 10.8 7.14 2.2 10.5 4 5.48 10.4 9.93 1.14 6.13 12.5 9.77 8.02 9.19 0.68 5.3 8.81 10.5 10.7 5.16 8.61 12 10.1 5.72 8.98 5.56 2.2 0 12.4 3.56 5.36 7.86 9.08 3.48 3.7 10.6 8.85 8.14 9.78 10.6 0 1.48 3.94 11.5 7.01 7.88 13.1 10.7 6.27 4.9 7.35 10.8 5.77 2.85 6.15 9.24 3.32 6.32 9.89 7.51 10.6 4.34 9.82 8.38 8.96 9.31 8.44 10.6 9.59 11.3 2.38 3.89 0.68 8.13 2.92 9 10.1 4.81 5.16 9.87 7.59 5.68 10.3 9.23 4.92 9.61 3.23 3.32 10.1 4.05 9.57 3.03 8.22 1.48 3.7 0 2 0 1.76 6.16 9.85 7.46 6.79 9.17 11.8 5.99 9.93 10.4 5.23 10.5 9.44 9.2 8.38 5.28 5.87 2.2 8.62 3.76 9.19 10.2 7.56 11.5 5.09 9.79 10.5 5.96 9.03 8.02 1.76 6.21 3.03 2.92 8.02 7.95 6.28 7.11 10.3 7.32 10.8 9.5 10.3 1.76 6.95 8.82 10.3 0 4.9 7.62 11.3 10.8 3.76 10.5 10.4 9.01 5.52 1.48 14 5.99 4 0.68 0 9 3.14 9.21 8.3 8.01 8.76 4.9 5.54 7.19 13.1 2.68 7.77 5.65 3.48 5.14 7.65 6.63 7.57 7.94 6.55 9.57 8.86 9.82 7.72 8.4 8.23 4.64 8.73 8.32 7.85 6.71 6.64 0.68 8.39 10.1 0 12.1 9.82 10.4 3.32 7.65 7.89 10.8 8.6 7.26 8.46 11 6.41 8.43 9.12 5.9 7.37 5.28 8.49 7.05 12 9.34 9.47 5.97 7.24 6.57 9.96 11.1 10.2 3.7 9.43 6.85 3.83 1.76 6.53 5.97 8.69 3.56 8.99 4.46 7.35 6.42 6.3 4 0.68 6.64 12 12 9.78 7.33 4.15 7.63 9.83 8.6 10.3 6.47 12.1 2.54 9.77 7.57 2.38 4.92 5.36 8.98 8.45 2.81 10.6 7.94 9.28 9.99 8.35 7.3 10.5 11.5 7.17 9.17 10 9.49 8.07 10.4 9.38 9.53 10.1 10.4 9.58 8.63 5.97 9.97 9.8 8.88 4.57 9.16 8.01 9.7 9.84 9.06 9.48 3.03 8.63 1.76 9.26 9.17 8.72 10.7 8.25 11 11.6 5.94 10.8 3.01 4.25 10.5 11.1 11.1 8.99 7.95 9.5 0.68 10.6 9.9 6.73 10.9 8.47 8.53 10.7 9.35 8.16 9.26 9.2 11.3 11.6 9.18 2 8.86 9.27 8.27 10.3 0 10.5 10.3 9.74 9.74 11.5 6.78 8.71 8.1 9.14 0 6.59 11.8 10.5 10.4 9.74 9.52 9.15 4.34 7.9 0 11.3 8.65 9.74 11.6 8.27 9 7.04 5.4 10.2 5.5 9.93 9.62 4.2 13.1 4.42 6.09 8.91 9.42 6 7.35 6.99 3.96 8.81 6.35 8.94 7.58 1.14 1.76 0.68 1.26 10.4 8.72 11.2 5.23 2.54 6.62 9.56 8.61 10.8 9.6 12 5.76 5.09 5.8 11.3 9.4 10.4 7.76 7.23 7.71 5.86 9.34 7.85 4.61 10.9 9.46 10.3 10.7 6.58 10 8.78 9.69 5.14 8.39 8.33 0 9.25 8.7 9.41 6.73 8.29 4.64 3.48 11.2 11.6 7.02 2.2 4.81 4.77 8.93 7.6 6.29 4.81 9.98 6.54 6.73 1.48 4.2 7.25 7.86 9.84 4.74 8.7 8.79 9.3 3.94 4.71 0 2.81 9.61 7.33 9.01 8.72 9.9 6.53 5.76 0.68 11.2 7.66 0 6.9 10.4 12.3 3.03 5.09 6.67 5.79 0.68 2.68 1.76 10.1 4.71 0 3.32 9.13 6.96 10.1 6.4 11.2 12.1 9.32 7.11 4.98 11.7 9.13 12.1 5.86 7.44 1.76 1.14 9.25 8.17 5.52 6.19 7.74 6.01 7.58 4.77 9.13 6.55 3.56 7.78 7.78 9.79 13.8 8.71 8.61 6.53 3.32 11.7 10.7 3.83 6.13 8.31 1.76 9 10.3 10.1 5.65 5.23 3.14 10.3 10.3 6.89 10.9 8.09 11.9 8.74 7.09 9.96 8.51 2.92 11.2 11.5 3.14 6.52 0 5.06 9.15 5.43 5.65 6.42 6.08 8.78 9.02 10.3 6.11 7.64 10.3 8.16 9 7.15 4.25 7.94 5.5 12.6 11.3 8.08 9.29 9.96 9.34 10.9 8.18 9.53 9.36 0 5.25 11 3.94 9.59 9.55 10 6.63 7.32 6.93 7.74 9.05 8.4 8.67 8.61 9.77 7.82 5.52 9.59 4.57 9.13 7.17 7.71 6.43 9.23 6.9 9.34 1.48 7.25 8.66 9.35 6.8 6.14 10.4 9.08 0 7.14 8.69 7.69 10.1 10.2 9.13 6.95 7.91 8.49 7.53 12.6 7.83 3.03 7.47 10.1 5.94 7.27 9.91 11.2 1.14 7.46 0 11 9.31 10.8 9.81 7.55 6.73 1.14 6.74 4.2 8.85 10.7 3.48 5.67 7.51 9.4 10.1 10.4 4.9 0 10.9 6.64 0 6.93 0.68 10.1 11.9 9.66 4.2 0 11.6 10 10.4 6.97 9.23 5.73 1.48 9.5 0 8.53 9 8.4 10.7 6.81 6.37 8.94 11 9.61 9.21 7.65 9.17 8 8.63 8.57 6 8.53 8.62 8.91 8.41 0 9.85 3.32 1.14 11.4 9.73 10.2 11.2 0 8.93 4.15 9.35 11.1 6.53 10.8 3.63 0 9.21 0 3.32 7.59 11.2 9.26 7.24 1.14 6.75 0 2.81 11.3 6.36 9.09 5.01 6.3 9.63 9.25 7.52 7.56 9.58 9.17 4 9.44 10.6 4.9 9.5 9.06 5.61 11 10.2 9.5 9.2 10.3 2.92 4.95 6.31 1.48 5.4 4.64 2.81 10.6 11 10.7 1.14 6.27 7.47 8.47 2 8.09 6.59 12.2 9.06 9.79 5.46 3.03 9.7 8.12 5.8 8.66 9.45 7.53 6.35 3.94 5.36 9.28 7.73 3.23 3.14 9.31 1.76 1.14 11.8 7.77 3.7 0 3.7 8.87 0 1.48 10.6 7.59 7.18 5.94 4.98 9.91 9.08 9.32 11.1 9.08 9.66 11.5 13.1 10.9 11.6 10.3 8.52 11.1 8.7 8.13 10.5 10.8 9.74 4.18 7.09 6.32 8.49 10.2 5.65 5.89 0 10.9 8.56 8.69 7.3 11.8 2.2 4.5 10.5 8.54 4 8.8 5.75 9.47 0 4.42 8.69 4.64 10.8 11.2 12.6 8.27 8.77 10.9 6.46 6.06 7.11 0.68 10.5 12.8 11.2 8.89 6.22 8.12 10.8 0 7.12 1.14 4 3.63 5.43 9.2 8.54 9.66 9.54 8.32 5.34 12.9 9.82 6.76 6.29 11.5 13.3 7.97 12.5 13.5 13 13.9 13.3 10.2 9.94 2 9.55 13.7 7.63 10.2 7.75 9.57 11.2 6.95 6.84 11.5 11.8 5.96 8.36 9.38 6.16 10.8 9.26 7.7 9.99 0 9.42 10.7 7.94 9.45 8.04 1.48 0 11.4 5.23 7.58 9.53 7.67 5.01 10.5 13.7 8.49 8.74 11.8 10.2 10.7 9.21 11 10.7 10.8 9.39 9.43 12.1 2.92 9.41 7.75 6.32 0.68 9.39 8.34 8.15 9.57 2 2.81 0 5.83 10.1 8.47 17.5 9.81 11.3 11.9 12.1 10.5 11.2 8.59 10.4 10.1 10.3 11.9 11.1 7.62 4.9 7.6 10.8 10.9 1.14 2.39 10 7.67 3.14 8.12 6.57 9.33 7.02 9.23 9.8 1.76 5.93 9.89 11.2 8.62 12.1 8.48 6.37 6.39 3.32 2.81 10.2 10.1 2.38 13.5 9.6 1.76 10.8 7.74 3.14 2.68 2.38 8.52 2.68 10.9 8.32 7.7 8.42 6.19 7.37 11.1 9.59 5.7 8.91 11.5 0 1.76 6.89 11.3 0 4.53 6.59 12.1 8.07 7.97 9.87 9.02 2.92 5.3 0 4.53 7.89 0 9.55 8.97 7.12 3.96 7.48 6.69 11.6 10.1 5.7 11.4 10.4 10.6 10.1 7.92 9.78 13.5 9.87 10.1 9.88 11.6 9.31 8.06 10.9 10.9 11.9 8.14 9.76 10.4 10.9 10.7 12.6 10.4 12.2 8.42 9.83 9.84 2 9.62 2 14 10 11.4 11.2 4.74 0 11.9 8.03 1.76 4.81 9.08 0.68 11.7 9.04 6.29 10.3 8.25 9.27 0 2.2 1.45 9.89 12 10.3 8.81 10.7 7.25 9.34 8.51 8.09 8.24 9.33 11.8 8.39 13.2 5.52 3.63 5.23 9.57 1.14 4.87 11.3 7.75 7.45 4.34 7.95 8.85 6.49 9.78 4.77 7.14 5.4 9.07 7.49 2 2.54 0 2.92 7.73 10 10 9.73 9.46 6.45 11.3 7.43 10.3 1.76 4.38 0 0 0 1.51 4.98 7.87 5.67 7.5 11.9 6.72 10 6.26 9.19 12.7 6.04 1.48 8.84 8.22 10.8 2.2 9.65 7.28 5.99 5.03 6.01 2.81 0 7.72 6.81 11.8 11 2 5.87 6.58 6.96 5.83 7.4 5.73 0.68 9.74 11.5 9.42 0 9.75 6.06 6.82 8.06 5.58 9.81 1.48 9.85 10.7 9.81 9.86 7.13 8.26 9.84 5.21 4.9 5.96 11.4 5.24 0.68 0.68 3.76 9.29 11.2 11.7 0 4.68 6.72 4.9 1.76 2.38 10.3 10.5 6.38 9.26 10 9.82 6.32 4.53 7.6 9.32 7.07 0.68 8.5 6.86 5.65 6.68 8.96 10.4 7.36 9.99 10.1 3.83 11.3 9.08 9.14 9.66 8.04 8.18 5.36 9.16 9.73 8.35 10.8 14.6 9.22 9.07 7.55 1.48 11.8 0 9.27 13 6.64 6.53 6.04 9.57 8.31 1.48 11 5.67 0 8.11 8.06 9.99 9.08 8 3.83 9.35 10 7.14 8.76 0.68 2.2 8.76 7.39 7.88 8.71 8.71 5.65 7.44 7.67 8.49 8.7 6.78 5.68 3.94 4.57 7.06 8.69 2 6.69 9.8 10.6 11.6 0 8.77 0 0 1.14 10.4 4.77 8.36 12.3 0 8.5 10.1 6.44 8.26 10 9.08 5.75 10.3 10.1 7.12 9.67 4.1 10.2 4.53 9.46 12.2 9.1 9.36 10.3 4.77 7.48 10.3 7.49 2 10.3 4.95 9.05 9.6 8.46 6.64 7.81 9.52 8.19 12.1 11.4 6.22 10.4 1.76 5.23 9.68 9.9 8.64 5.37 8.02 9.62 8.75 8.61 9.85 7.12 5.61 3.32 9.18 12 6.05 6.7 8.5 6.88 8.03 0 5.4 2.68 4.68 8.22 7.42 10.8 10 7.44 9.48 10.2 2 9.11 9.91 8.11 11.2 9.41 8.71 5.72 13 11.4 12 12.6 7.61 8.67 0.68 10.6 8.39 9.73 6.45 2 6 10.8 10.5 8.74 9.26 12.2 9.22 3.32 8.85 9.76 7.94 9.46 2.54 10.5 8.4 5.09 9.07 13.8 7.33 8.66 8.24 2.92 8.18 11.5 6.49 8.92 7.82 7.56 8.31 10.8 4.5 12.4 7.82 3.94 10 7.68 8.22 11.9 11.3 3.03 9.54 8.75 8.53 7.62 4.81 10.8 3.83 5.14 0 9.76 6.63 9.44 7.32 1.48 9.09 6.97 10.6 14.6 7.55 10.8 11.5 7.86 7.54 3.4 11.3 10.3 2.38 1.14 5.58 9.61 9.16 5.78 2.68 6.32 7.36 10.5 6.7 9.33 10.9 8.55 6.12 7.44 3.32 11.5 4.42 9.51 7.77 12.3 7.42 3.83 10.5 1.95 9.7 6.41 6.99 9.17 11 7.83 9.44 9.28 9.09 4.34 8.04 6.95 0 9.67 3.56 11 8.03 1.76 0.68 8.39 5.84 10.8 2.2 11 4.25 6.89 10.7 9.31 10.2 8.43 7.94 7.65 11.3 9.04 3.94 6.97 6.8 10.2 7.96 10.8 4.61 8.75 10.7 11.4 5.16 6.08 5.21 9.54 10.4 11.8 9.49 12.6 2.2 9.51 10.8 5.14 4.5 0.68 10.1 8.99 5.52 8.94 6.57 1.48 5.76 4.71 8.23 0 5.3 1.14 8.26 11.9 0 9.76 8.4 3.83 12.8 10.4 4.25 7.81 5.9 5.16 11.6 7.49 8.44 2.81 5.06 11 8.67 8.41 8.93 9.51 0.68 8.85 4.29 2.68 2.92 12.2 8.42 0 13 8.65 4.9 9.45 7.24 3.83 9.96 10.3 7.39 4 10.2 7.53 3.95 8.63 8.94 11.7 10.9 11 11.8 9.2 10.9 11.7 11.1 5.52 10.4 10.7 13.2 10.8 5.52 2.54 9.02 10.6 10.6 9.31 10.6 6.9 10.7 11.4 11.8 8.29 5.09 13.2 11.8 7.48 2.2 10 7.28 0 8.66 3.94 9.85 6.78 12 2.92 7.43 7.71 6.79 6.69 12 2 10.5 12.3 4.46 3.76 8.87 7.22 5.09 11.5 7.6 0 7.03 7.86 7.5 15.4 8.28 3.23 15.4 3.95 9.05 6.9 4.84 9.06 7.9 4.9 4.5 11.3 3.48 2.54 8.37 9.47 8.21 10.2 8.23 11.9 7.92 9.83 8.92 2.92 11.6 9.09 10 11.4 6.77 11.3 8.69 7.68 8.41 10.5 0 10.8 10.2 8.46 10.4 8.61 10.9 9.38 9.8 0 12.3 10.9 9.54 5.63 1.76 11.3 15 5.46 8.79 6.48 11.6 3.89 10.7 2 4.81 1.14 8.36 6.66 5.21 8.51 9.71 11.9 8.89 2 12.9 8.3 8.88 7.04 9.25 8.48 9.45 2 2.68 1.77 9.13 5.3 8.64 10.4 3.4 9.7 4.38 9.95 7.5 10 11.6 0.68 3.32 14 1.48 8.5 8.7 6.52 0.68 13.6 0 11.4 4.34 9.1 5.52 6.3 9.87 12.7 2.2 3.23 0 8.69 9.66 5.09 12.3 10.1 6.89 11.6 6.94 4.53 6.41 11.6 4.9 8.07 3.23 8.83 13.2 12.3 8.18 10.8 9.16 2 11.3 8.1 7 10.9 9.62 11.5 9.91 10.1 5.38 7.69 8.44 8.44 2.81 7.04 1.14 11.1 10.9 0.68 12.7 8.19 10.7 5.03 8.21 1.76 12.6 8.8 9.36 10.5 8.36 1.48 3.63 4.46 6.99 7.53 0 8.4 4.42 8.69 8.54 9.85 8.7 9.32 11.3 11.9 7.03 11.4 5.9 11.3 8.89 6.38 8.87 10.8 8.28 3.48 8.69 0 6.42 8.48 4.29 8.77 8.03 1.14 6.38 8.02 11.5 1.48 9.63 9.91 7.68 11.7 9.43 4.77 3.63 0 5.93 9.32 10.8 5.81 7.05 9.59 10.4 12.1 8.68 10.1 6.89 6.71 2.38 7.63 9.84 12.9 5.34 7.56 3.4 6.28 13.7 7.27 10.6 9.49 1.14 1.48 11.5 8.98 6.08 9.21 8.99 10.6 9.37 8.22 10.5 10.3 10.3 9.37 12.1 9.66 8.72 4.42 7.78 8.75 9.53 7.07 12.3 7.58 9.35 12.1 0.68 7.52 9.54 1.76 7.02 9.19 6.94 8.73 10.3 11.8 10 8.61 9.77 12.9 11.5 10.6 10.1 1.48 7.24 9.77 8.39 9.52 8.58 6.15 5.36 10.5 7.79 5.25 9.75 8 13.4 5.61 8 0 7.86 12.2 8.54 3.03 9.21 13.7 11.2 2.81 10.8 12.4 8.98 2.54 13 11.6 11.8 8.4 9.42 6.99 4.25 11.3 6.54 9.73 12 10.3 7.73 13.1 8.35 12.8 6.62 5.7 8.77 1.76 12.2 5.65 8.48 11.6 3.23 0.68 11 8.75 12.1 8.37 9.21 11.1 11.2 8.36 7.82 8.54 10 9.68 8.66 7.47 9.56 7.67 4.57 8.41 10.7 8.93 6.68 9.65 8.79 5.89 9.37 12.1 13.3 7.84 8.94 9.98 9.25 10.9 4.34 12.4 13.8 9.88 0 9.51 9.2 9.78 9.03 8.14 7.48 9.56 11.2 12.8 8.57 9.39 8.76 10.1 10.1 10.4 3.32 10.5 11.2 5.18 9.6 9.78 5.5 9.54 12.3 8.61 9.24 10.1 0 8.5 8.2 9.6 10.4 10.6 11.4 9.66 0 7.9 0 11.6 13.2 6.87 10.8 7.94 2.54 7.76 0 7.71 5.4 17.6 0.68 0 8.74 8.25 9.26 7.67 7.43 14.9 8.68 8.76 6.3 10.2 7.19 9.37 13.7 7.86 8.43 10.3 17.3 10.6 7.09 6.77 10.5 9.67 4.61 8.87 7.09 14.8 9.84 5.5 6.19 4.71 7.83 10.1 6.42 10 8.16 11.5 5.84 7.89 8.47 10.4 9.35 8.77 11 12.5 7.05 10.3 10.9 11.8 10.6 10.4 8.21 9.28 5.16 8.9 4.42 12.7 9.85 11.2 10.1 7.09 10.5 7.19 10.1 10.4 11.6 11.8 11.2 8.69 3.23 10.8 11.3 5.81 9.47 13.7 11.1 10.6 10.8 9.96 1.14 11.3 9.32 10.1 10.9 9.58 10.5 6.9 10.7 9.14 6.62 8.94 8.27 10.6 8.79 8.56 8.59 4.95 6.96 5.38 11.7 8.42 8.19 4.95 9.27 11.5 7.62 9.78 7.72 10.7 7.1 8.69 9.47 6.97 9.76 7.42 8.96 2.38 7.78 7.29 8.59 7.21 9.32 6.81 1.14 9.59 6.09 6.99 6.63 11.4 10.5 4.68 5.67 6.9 9.65 10.4 10.1 8.75 9.57 8.05 9.84 10.3 9.34 10.7 10.9 10.7 10.1 6.81 8.24 6.7 10.6 9.38 10.1 5.43 9.74 8.05 12 3.14 6.72 9.88 8.3 9.53 9.8 9.98 4 9.43 5.46 6 10.8 8.91 9.51 8.49 6.73 11.3 10.1 9.76 12.4 9.77 6.97 4.15 8.91 6.9 2.68 9.51 11.8 11 8.42 11.7 11.4 8.83 9.65 10 9.26 10.7 8.85 9.26 9.53 8.75 10.3 3.83 8.99 8.62 7.23 12 11.9 12.3 2.38 7.94 3.32 9.72 8.32 9.05 14 7.97 8.04 8.87 3.03 6.8 8.46 5.11 10.1 10.1 7.82 12.1 10.9 4.2 2.54 11.3 9.93 9.55 10.8 2.65 9.47 11.5 7.59 8.09 10.7 12.7 7.7 10.6 7.32 9.74 11.8 8.68 9.97 5.81 6.87 11.2 4.1 10.1 7.04 8.83
-TCGA-HC-A4ZV-01 5.36 6.52 4.53 10.5 6.16 7.69 1.92 3.89 6.55 4.2 6.28 9.44 5.1 2.71 5.18 9.36 10.2 9.95 6.45 9.69 11.1 8.22 8.83 2.37 9.89 8.05 4.21 9.16 4.37 7.62 6.57 5.78 4.53 1.92 4.81 1.25 3.32 5.33 2.37 5.29 6.5 3.82 6.16 0.76 5.63 4.08 2.16 6.14 11.3 8.38 4.14 6.49 11 11.2 4.98 1.25 7.36 3.6 6.02 6.79 8.67 6.19 8.57 7.84 3.82 3.6 8.03 10.1 10.6 5.65 5.07 7.27 2.55 1.25 6.85 4.35 6.23 5.16 1.25 4.14 5.44 2.99 3.02 5.8 9.32 0 5.34 0 5.21 3.42 9.63 6.89 6 6.77 6.09 2.86 0 2.86 6.05 0 2.55 6.32 0 3.75 2.16 4.84 7.87 8.16 9.05 5.36 0 0 8.81 4.62 6.07 1.62 2.23 4.02 2.86 1.92 4.7 5.11 2.55 3.11 0.76 6.97 4.45 2.37 1.25 13.1 4.14 4.02 4.4 7.58 2.16 2.55 4.66 0 4.75 8.68 9.08 10.5 0 2.86 5.41 11.6 0 11.2 1.25 2.37 6.12 1.25 7.22 10.1 11.1 3.6 3.82 5.06 8.04 5.73 6.18 6.83 3.68 0 10.1 8.2 6.92 3.22 8.47 0.76 10.4 9.4 2.99 5.9 6 4.2 6.36 5.14 7.68 5.4 4.88 7.77 5.94 5.87 5.42 4.35 3.68 1.62 9.23 5.52 8.91 8.62 3.68 4.45 5.65 6.08 4.3 9.51 8.46 7.3 4.49 10.3 9.59 10 7.57 8.12 5.44 9.79 9.77 10.5 7.09 11.1 10.8 10.7 10.3 12.3 10.5 10.6 7.09 10 8.51 8.06 11.2 10.8 8.77 7.52 2.55 9.48 8.94 12.4 8.39 2.86 9.46 11.2 8.74 7.96 11 7.46 9.95 2.71 10.1 7.28 11 11.5 10.9 10.5 11.4 12.1 5.44 11.1 7.66 1.62 8.03 9.53 9.05 13.4 10.4 12.1 0 11.4 2.71 10.3 8.94 10.3 9.13 10.6 7.07 10.8 11 9.3 7.76 6.22 9.8 9.14 12.1 9.56 2.55 12.2 10.3 10.1 12.3 12 11.1 7.58 9.79 12.7 11.3 9.97 11.5 11 6.32 4.58 8.97 6.54 10.5 10.2 6.52 12.8 7.81 10.4 5.75 11.5 11.2 9.22 11.4 11.9 0.76 9.11 7.62 9.13 13.3 9.67 2.37 8.41 7.92 11.2 9.68 12 8.43 8.57 10.8 11.2 8.95 9.26 11.4 9.81 11.7 8.39 11.3 9.93 10.6 7.8 10.9 7.23 9.97 10.5 8.02 6.77 7.7 7.89 10.1 10.2 9.34 10.3 8.69 13.2 9.65 9.22 11.5 10.3 9.53 2.38 10.9 1.25 5.36 9.14 6.63 13 1.92 7.1 7.14 10.9 11 9.95 10.4 7.51 7.79 3.42 7.23 6.31 7.76 11.4 9.55 11.6 10.8 7.46 7.42 10.7 8.59 8.19 9.13 10.5 9.33 9.95 10.3 11 3.11 9.3 7.66 9.55 9.08 13.5 10.8 8.37 6.54 10.3 10.4 6.76 7.56 10.4 7.83 11.1 11.3 9.35 9.27 10.3 9.9 12.4 10.4 7.88 6.81 8.31 10.7 9.35 8.63 11.6 9.22 9.42 7.44 5.94 8.98 5.65 8.61 11.5 6.18 11.2 9.52 10.3 2.86 12.1 11.6 12.4 8.11 8.35 5.18 6.45 8.52 6.9 8.86 9.23 9.82 12 10.7 4.81 11.1 9.29 7.6 8.54 15.5 9.71 4.45 8.18 5.16 12 7.94 9.01 6.23 11.1 3.96 4.81 10.1 11 11.1 3.96 9.66 8.98 3.32 3.51 4.84 8.86 7.09 5.39 9.15 5.75 12.9 8.89 8.72 10.4 11.4 5.1 13.3 9.46 0.76 9.56 8.95 7.82 13.3 8.97 8.41 6.05 6.59 8.28 9.18 4.4 12.2 8.56 6.59 7.57 12 14.2 12.7 16 9.95 9.78 8.79 10.3 4.74 7.71 9.12 7.27 0.76 10 1.62 11.9 7.41 11.2 11 12.4 9.19 10.5 9.63 9.73 10.6 10.8 10.9 10.4 8.26 10 8.88 8.39 10.4 10.4 11 7.75 9.26 10.8 7.74 6.75 10.3 10.7 11.6 9.52 7.5 10.4 8.44 5.67 9.75 7.07 10.1 10.3 11.1 10.4 11.6 11.9 9.64 9.72 8.7 5.16 11.1 7.56 8.96 11.5 10.9 5.36 9.59 10.8 8.92 10.1 9.73 11.3 7.28 11.1 10.6 9.49 7.15 11.8 11.1 11.1 9.76 1.92 12 10.4 11.7 9.47 11.5 11.2 11.6 11.2 8.42 10.3 10.8 9.66 3.42 9.49 8.29 6.12 7.37 10 10.4 8.97 11.3 9.66 10.4 10.3 1.25 6 11.6 9.75 7.88 13.5 9.9 10.8 9.57 12 9.93 12.2 11.3 10.4 1.25 10.7 9.14 8.18 8.74 8.59 8.39 5.71 9.32 8.41 10.8 12.2 10 6.28 11 11.8 12.1 11.6 12 7.27 11.1 10.2 8.69 7.91 10.8 9 5.67 9.8 8.06 5.5 8.67 9.87 10.6 5.73 11.3 7.17 9.95 6.28 10.8 9.09 12.5 11.7 12.2 11.7 4.49 10.5 6.96 9.84 9.89 10.6 2.99 10.2 8.27 10.3 10.7 9.51 9.47 12 4.14 6.97 11.3 8.61 9.18 9.73 4.35 10.8 12.2 9.42 11.5 9.12 5.39 12.8 9.27 10 10.7 9.14 11.3 9.67 12.4 8.45 7.23 7.92 5.94 8.57 10.3 8.02 11.8 13.4 8.58 11.2 12 11.8 3.11 10.2 7.51 8.17 3.66 8.67 9.34 9.36 2.71 5.13 12.1 3.82 9.82 11.3 12.9 9.46 7.1 11.8 11.3 8.78 8.53 1.25 6.51 10.1 4.49 7.63 6.33 10.1 10.7 8.84 10.3 5.85 7.67 5.84 8.35 8.59 10.3 3.32 4.14 10.2 6.88 1.62 6.49 11.3 10.8 5.89 6.93 8.49 4.77 9.9 10.2 8.39 7.29 7.98 13.7 7.31 11.8 12.5 10 10.9 12.6 9.3 11.7 8.69 7.06 4.26 11.2 3.51 4.14 5.39 3.66 9.03 8.49 10.5 0 6.89 8.83 4.2 6.53 11.4 9.77 6.54 5.84 10.5 8.98 0.76 10.2 9.9 11.6 11.5 9.8 11.2 8.84 10.8 10.7 9.16 8.82 11.3 8.4 7.98 9.25 9.12 9.69 7.86 11.5 11.4 8.05 6.64 5.48 7.84 10.4 6.02 8.11 5.73 11.6 9.8 1.25 4.25 8.84 10.7 10.2 10.7 9.64 8.47 9.29 1.62 7.58 7.78 9.64 7.56 8.25 8.17 10.3 0.76 7.53 3.22 11 9.27 9.52 10.8 9.96 9.95 5.07 10.9 10.8 5.71 6.75 6.12 6.96 8.76 8.04 11.2 10.7 10.9 6.49 3.96 6.38 4.94 9.05 0 2.71 8.8 10.2 1.92 3.11 11.7 4.98 10 7.56 3.82 1.92 10.4 9.77 11.2 9.26 3.11 9.29 10.1 6.93 10.8 9.23 9.15 9.4 10.3 8.29 2.19 9.23 2.86 11.9 9.9 12.2 0.76 10.8 9.8 10.9 11.3 11.5 8.1 8.52 11.4 11.9 10.7 1.25 11.6 1.25 11.8 3.32 10.3 10.7 8.71 2.37 9.97 11.5 12.4 10.2 10.1 9.89 12.1 8.51 10.9 11.6 9.39 10.8 10.6 12.3 11.1 12.4 11.5 11.2 5.89 11.6 9.24 7.27 8.91 10.2 10.9 13.2 12.7 9.42 8.99 10.9 7.83 9.49 11.6 7.69 8.58 12.7 8.28 10.8 10.3 11 10.3 5.69 2.71 12.2 6.58 9.83 7.23 10.7 7.91 8.7 8.51 8.54 8.53 2.93 2.37 8.53 8.94 9.53 12.4 9.05 10.7 9.26 9.58 8.11 7.4 9.14 9.12 8.47 1.92 4.96 2.86 4.91 9.87 9.55 6.56 13.3 5.34 11.5 8.47 9.4 9.45 9.17 9.48 7.58 9.15 10.4 9.22 10.2 11.3 10.1 8.67 14.7 11.2 11.6 9.85 8.24 5.73 8.7 8.65 8.1 10.8 9.4 5.78 12.4 11.1 7.67 10 8.1 3.89 10.8 11.2 11.9 8.08 4.91 11 11.4 8.79 8.43 10.9 5.67 7.19 9.69 10.8 8.25 12.8 7.09 9.28 9.82 8 4.35 8.5 7.67 10.2 7.2 7.4 11.3 9.6 9.77 9.93 9.05 8.16 9.17 3.32 8.34 9.29 9.4 4.14 9.31 1.92 8.68 8.07 9.78 4.2 8.89 10.5 2.99 11.7 9.72 10.4 2.71 8.44 6.85 7.6 4.25 5.55 9.69 10.8 4.25 6.15 6.52 9.37 7.88 8.95 8.68 8.87 10.5 9.94 6.42 12.3 8.67 8.84 13.5 9.73 6.16 5.44 8.46 10.9 5.63 4.7 11.4 9.67 7.99 9.51 10.4 12.9 6.08 9.6 7.47 8.03 9.08 11.2 11.7 1.62 9.72 10.2 8.89 7.39 9.48 10.6 11.4 11.5 7.72 7.05 8.76 6 8.38 9.35 7.16 11.4 9.39 8.52 10.5 7.97 3.42 9.08 8.15 11.7 3.68 15.1 6.11 2.71 9.03 8.95 10.3 11 7.17 8.57 9.72 10.2 8.41 8.27 10.2 7.13 9.76 7.24 9.51 9.75 7.78 7.11 10.2 7.93 8.15 7.8 9.45 8.55 8.98 0.76 4.7 10.1 11.7 9.64 9.04 10.1 9.88 5.75 11.8 5.5 11.4 8.43 8.11 6.45 10.6 6.98 9.65 8.48 7.67 6.55 2.55 4.83 7.4 10.7 7.72 7.88 8.19 4.88 10.2 9.84 10.6 8.23 5.65 1.92 8.1 2.33 11.4 9.66 7.6 5.87 9.28 8.2 7.56 11.6 10.7 10.4 9.57 6.36 8.17 9.14 8.53 8.22 9.78 3.96 9.43 5.18 10.6 8.74 6.87 9.41 12 5.39 11.8 8.08 7.42 11.7 5.1 0.76 9.38 9.31 0 9.37 11.5 9.64 9.6 6.93 10.8 11.2 11.8 10.1 7.48 8.12 5.59 8.58 11 9.86 1.25 12.3 8.49 11.9 9.68 12.3 10.5 12.2 12.1 5.9 7.9 9.17 4.62 11.4 11 9.55 9.72 8.2 10.2 8.14 11.1 2.71 10.7 7.08 4.91 4.4 9.49 6.7 8.14 7.43 1.23 5.82 7.2 10.3 7.79 7.66 7.15 10.9 3.42 8.81 1.62 5.87 7.5 1.25 6.39 10.1 4.35 1.25 1.25 8.19 7.17 4.95 0.76 7.88 4.27 6.86 0 2.55 7.68 4.25 9.18 7.87 8.49 9.17 5.69 2.16 9.73 7.6 4.02 10.8 4.94 10.9 8.57 8.78 2.99 8.77 5.75 7.6 8.86 4.35 6.59 6.69 7.92 8.12 4.14 7.96 7.24 8.82 10.4 12.3 0.76 8.7 7.98 3.04 7.51 10.6 10.2 7.72 6.81 10.8 9.56 9.06 8.26 9.03 5.07 6.19 2.71 8.4 7.45 9.01 12.7 9.94 9.56 8.91 10.9 9.9 8.96 6.72 9.42 10 8.66 3.51 1.92 10.4 10 7.37 5.98 3.6 5.01 7.46 11.5 7.3 10.3 8.38 4.25 3.75 8.58 6.75 10.8 12.9 5.99 5.31 5.16 8.36 8.85 7.36 8.93 6.81 8.97 9.83 9.69 6.24 9.53 8.41 7.81 6.27 2.86 3.51 5.73 3.96 8.88 8.82 9.07 4.53 8.94 4.98 1.25 4.02 8.14 6.8 0.76 8.36 9.12 2.71 6.79 7.84 3.6 5.1 8.26 9.63 10.4 9.09 5.24 8.52 7.18 11.5 8.17 11.7 8.23 9.85 11.3 1.92 7.16 4.34 8.78 9.71 10.4 7.25 9 8.83 11.3 8.02 7.52 7.68 0.76 3.33 0 9.15 6.08 5.67 4.7 9.34 0 10.2 1.62 5.59 9.21 11.9 8.55 9.26 8.95 0 6.42 5.44 5.82 9.21 9.82 4.94 7.87 7.78 3.89 4.2 9.15 7.24 11 5.77 9.16 11.2 8.13 0.76 8.43 5.45 2.37 5.39 10.2 8.83 1.62 10.2 6.74 5.01 8.1 13.3 10.6 11.1 2.86 4.49 6.75 9.76 9.65 6.84 4.91 12.3 0 8.9 10.7 5.1 8.15 9.72 6.38 11.1 0 5.16 0.76 7.05 0 9.42 9.73 8.07 7.69 8.71 10.1 4.45 4.49 1.62 8.35 8.37 9.19 7.59 8.68 7.96 9.51 7.92 5.65 8.79 9.37 12.3 12.6 6.41 2.16 6.09 7.33 7.36 0 11.2 11 9.79 9.05 9.92 4.66 8.56 10 10.7 11.5 11.3 9.71 6.99 4.3 7.07 8.02 8.71 4.88 4.77 6.67 8.05 9.43 11 1.25 6.79 11.8 3.82 4.08 7.19 11.4 9.61 9.28 8.33 2.99 7.03 13.2 1.25 8.77 7.08 5.92 6.79 8.02 9.53 7.1 7.74 9.53 0 0.76 2.16 7.34 2.86 6.08 3.11 7.03 6.64 9.31 9.08 7.33 6.68 8.87 7 6.32 8.95 8.2 8.18 4.08 8 8.51 5.1 9.64 6.51 9.29 11.4 1.25 10.3 4.94 9.24 2.16 7.77 5.99 7.87 8.28 5.36 7.36 6.74 6 5.95 7.59 9.68 6.11 2.99 8.29 5.94 6.75 9.4 10.3 4.62 6.02 1.9 9.28 0 8 7.71 6.75 1.25 5.57 8.17 8.66 9.89 0.76 8.28 9.36 6.77 4.62 8.19 8.01 7.39 10 9.02 5.18 7.94 8.05 8.35 11.2 12.3 3.68 6.14 9.41 8.2 7.22 6.3 2.55 6.97 9.73 9.21 5.65 2.99 2.37 7.43 1.62 8.12 8.61 8.5 9.42 8.37 6.03 6.5 4.62 10 9.27 5.01 8.56 8.97 6.86 5.82 14.2 6.91 8.9 1.92 8.45 0 6.59 8.08 1.25 7.71 8.49 7.48 10.9 1.25 9.78 9.28 3.68 5.92 6.35 7.44 7.13 9.14 5.9 8.73 8.15 6.19 8.89 4.35 2.71 9.35 4.84 3.11 2.86 5.67 6.06 7.35 9.5 8.95 7.51 4.84 10.8 10.5 6.18 11.2 7.09 6.45 8.03 6.88 9.23 9.92 4.4 7.69 7.33 11.1 7.83 4.14 10.8 6.87 5.01 3.22 6.41 8.75 11.8 8.6 7.17 9.25 4.08 1.62 7.91 0.76 6.12 3.51 7.93 5.1 8.61 0.76 2.71 5.97 9.69 8.68 9.19 1.25 3.68 10.4 8.7 6.2 6.15 11.5 3.98 2.86 8.33 4.74 7.82 0 9.18 15.5 8.03 9.02 5.07 15 10.5 3.82 0.76 7.39 7.93 2.55 11.3 10.6 8.23 9 14.6 5.61 11.4 12.7 1.25 9.48 2.37 9.04 10.7 9.11 9.28 5.78 9.49 8.59 6.05 8.67 13.3 9.46 9.33 6.19 3.6 5.16 6.11 6.15 5.8 10 10.4 4.66 5.87 3.68 5.61 11.3 9.13 12.2 9.09 8.76 11.2 8.24 5.9 12.6 8.71 13.5 9.04 4.88 13.4 8.87 10.2 7.61 7.5 10.3 4.4 7.34 9.48 8.91 7.12 11.9 8.72 9.76 7.41 11.2 8.19 3.6 7.44 7.87 6.2 5.92 0 8.86 7.1 11.6 4.77 6.24 8.08 4.53 7.01 10.1 7.47 6.49 6.87 4.45 6.91 9.92 8.72 1.62 9.31 5.59 7.48 9.12 10.8 4.53 8.3 11.2 5.99 6.16 7.3 1.92 9.36 5.34 8.8 7.13 9.1 4.08 3.22 2.86 11.7 8.22 2.86 10.6 10.3 4.77 11.3 12.8 9.02 3.42 8.05 12.1 1.92 8.12 8.39 9 11.3 10.4 9.47 0 10.9 8.3 4.45 10.2 1.62 1.25 8.43 8.31 7.27 6.32 6.67 9.05 0 1.94 8.55 8.56 6.8 5.76 3.22 6.69 2.79 6.38 8.28 6.15 12.2 8.18 8.42 8.38 5.41 10.9 0.76 8.46 3.11 7.42 7.43 2.55 7.5 6.78 1.62 11.4 5.48 7.9 11.1 10.8 10.6 9.94 0.76 1.62 8.62 3.96 11.8 5.26 8.41 11.3 10.6 7.29 8.76 2.55 7.82 7.67 5.39 9.44 3.42 8.65 11.7 8.46 5.21 10.9 10.2 6.68 8.06 10.2 4.78 10.9 9.78 6.85 12.1 11.8 8.85 9.49 2.59 5.75 7.45 8.96 1.62 11 6.14 9.79 0.76 10.1 9.02 0.76 7.98 4.08 5.41 6.95 0 11 7.94 0 9.5 2.99 5.67 13.5 11.9 10.2 9.57 9.5 3.96 5.39 5.75 8.13 7.35 2.71 5.1 11 8.82 8.65 8.77 8.39 8.81 5.59 3.89 8.34 9.53 1.25 0 10.8 4.3 7.31 11.6 3.32 2.71 5.36 7.84 6.94 10.5 8.03 0 10.1 11.3 8.42 3.75 4.66 9.94 8.73 8.43 5.29 10.5 9.35 2.16 11.5 10.8 8.25 2.37 9.28 8.28 2.55 7.32 5.97 9.27 8.59 9.49 12.7 5.69 6.97 0.76 8.77 7.21 8.38 11 11.6 6.77 6.52 3.91 10.1 8.79 9.47 4.14 8.67 10.9 1.62 6.63 5.63 8.11 4.14 5.84 10.7 10.1 8.29 5.67 8.24 6.88 2.99 0.76 8.9 3.53 2.55 3.6 7.83 8.31 6.95 5.55 5.16 8.95 4.05 6.27 11.1 5.76 8.91 4.08 0.76 10.4 10 1.25 9.8 9.58 5.02 6.85 6.86 5.44 4.91 4.91 8.64 4.53 10.5 2.16 10.2 2.37 7.27 8.85 1.92 2.71 12.5 9.45 5.18 6.05 2.86 2.86 0 4.2 5.75 6.27 9.07 2.16 9.39 10.1 9.16 12.7 8.47 10.3 10.1 7.95 5.69 10.2 11.1 8.87 8.29 9.22 9.91 1.62 5.21 8.27 8.66 5.13 7.32 6.31 6.96 7.98 9.4 7.51 7.34 1.92 0.76 8.13 6.72 8.68 10 7.5 8.93 7.53 0.76 3.82 8.37 8.51 6.05 5.82 11.2 8.69 5.89 9.2 4.02 1.92 3.89 7.25 3.11 10.5 6.97 7.48 4.4 7.04 5.04 9.41 4.02 8.26 6.56 12 8.75 6.77 12.6 0.76 4.25 7.87 12.2 0.76 7 11.7 4.88 0 8.94 6.85 10.6 0.76 6.42 7.57 9.37 9.58 10.6 6.24 5.46 6.79 3.36 7.59 8.34 6.9 4.74 8.76 1.92 2.86 11.1 8.65 6.08 8.86 0.76 4.66 8.78 11.3 6.11 0 11 1.25 4.58 3.89 6.76 1.92 8.69 7.48 5.07 8.98 2.55 12.2 5.71 6.83 4.35 4.45 4.4 7.41 3.82 11.7 8.65 5.97 1.62 5.61 0 4.4 8.36 2.86 1.25 11 1.62 2.16 4.49 0 5.44 0 8.52 1.92 7.83 9.54 5.71 8.55 4.94 8.81 8.47 7.24 11.6 2.16 8.46 7.64 9.53 9.93 9.22 8.59 3.11 1.25 2.86 3.89 6.71 8.89 5.07 5.75 11.1 5.65 6.66 9.14 2.16 4.02 5.24 7.65 8.78 8.97 2.37 9.4 7.05 9.3 2.16 11.3 8.32 6.63 8.94 7.55 7.36 4.81 1.62 9.77 7.17 10.6 7.82 6.96 9.63 5.76 6.72 8.34 11.6 9.65 8.86 4.45 6.52 7.54 6.53 8.19 5.9 3.32 7.25 7.44 7.02 8.99 4.02 8.69 5.78 7.92 5.91 3.42 7.64 12.4 2.55 8.02 7.33 8.07 5.73 8 8.88 5.82 9.11 9.25 7.31 1.26 11.7 5.73 2.16 6.03 10.2 11 7.95 1.25 9.92 5.32 6.4 7.75 6.12 12.8 8.94 1.34 10 7.34 4.02 6.85 7.56 0 3.89 5.94 8.46 9.08 8.69 4.91 2.37 7.95 8.37 3.96 4.45 13 11.8 5.21 7.78 3.96 5.46 13 10.3 10.4 0 7.42 12.7 0 6.57 10.9 0 1.25 2.99 1.25 4.2 0 8.25 6.56 1.62 8.14 9.3 5.85 7.15 9.41 1.71 8.25 5.39 6.4 7.84 6.81 8.29 1.25 9.05 7.01 9.99 2.55 6.43 3.69 10.2 7.42 10 6.05 6.7 7.61 4.53 3.96 9.15 5.52 13.3 9.93 13.8 7.14 3.32 4.98 7.82 10.1 8.88 5.65 2.37 6.03 1.25 8.28 8.04 7.71 11.4 8.2 0 7.61 2.16 5.59 4.4 10.7 3.96 8.16 10.3 6.11 10.7 0.76 9.08 2.99 5.99 8.3 4.36 7.5 1.25 5.16 8.63 9.96 11.5 6.03 1.62 5.55 0 5.39 0 10.5 5.26 9.69 9.2 5.55 8.3 4.45 10.6 8.54 10 10.6 1.92 4.66 6.46 7.01 1.92 11.2 8.53 7.79 8.46 11.4 1.92 8.13 7.58 11.2 5.87 6.66 6.36 0 9.7 9.7 11.2 8.64 5.26 7.7 4.74 8.4 3.75 7.79 5.44 4.91 9.83 8.83 5.01 5.39 9.08 8.55 10.5 7.7 9.89 7.24 8.9 9.06 10.7 8 8.53 13 8.05 5.16 9.56 10.3 8.41 5.57 9.22 7.54 2.16 5.1 4.35 11.7 8.29 5.48 2.99 5.46 4.14 11.3 11 9.25 9.21 8.1 4.53 11.5 8.74 0 5.46 1.62 5.07 8.31 9.69 3.89 0 8.86 4.69 1.92 9.5 7.96 0 10.3 11.8 1.22 4.49 8.48 1.62 7.28 7 8.68 8.95 12 0 0.76 7.26 7.89 6.53 8.15 10.2 3.11 3.82 12 4.74 5.1 10 4.35 0 9.74 7.94 6.15 9.13 8.8 9.55 6.09 5.63 1.25 10.2 7.46 10.6 9.08 6.98 2.86 1.62 10.1 1.92 6.75 1.04 6.83 10.2 5.25 10.2 0.76 2.71 5.67 8.42 6.4 6.38 7.55 4.58 2.99 5.13 7.6 7.74 3.75 11 3.68 9.21 3.22 4.88 5.46 1.62 6.44 9.18 7.5 9.59 6.06 7.97 8.83 0 7.67 5.55 1.62 1.62 4.08 0 3.51 4.91 3.9 5.87 10.7 7.52 9.44 5.29 9.77 6.82 6.97 9.01 5.26 5.82 10.5 1.92 5.73 10.7 10.9 1.62 9.59 2.71 7.61 0 0 11.1 8.7 4.98 3.75 8.32 8.98 0 6.33 11.8 7.51 8.76 7.2 7.33 4.2 3.22 6.11 7.27 8.5 11.1 12.8 3.89 7.53 4.14 8.03 10.4 3.51 2.86 10.1 9.19 4.08 7.97 6.64 5.37 10.6 0 6.59 10.4 0 3.6 8.49 1.92 5.97 7.23 2.16 7.04 11.7 11 3.11 12.7 6.86 1.92 8.54 4.53 11.2 2.37 2.37 4.25 0 3.75 0 9.53 5.76 5.16 11.3 9.88 10.9 7.31 7.53 7.48 9.34 7.37 9.19 6.24 8.47 6.49 0.76 12.3 7.86 8.4 7.83 6.92 7.42 0.76 7.54 6.74 6.14 8.17 8.59 6.42 6.56 8.64 9.92 2.16 7.99 7.82 5.02 9.24 2.37 12.3 6.09 10.5 7.93 8.89 2.71 7.61 6.93 0 1.92 7.57 9.62 10 11.5 10.1 5.39 7.99 2.71 12.6 2.86 8.09 1.92 2.71 2.99 6.03 2.71 3.32 3.18 0.76 2.16 4.98 8.83 9.82 8.51 13.6 12.6 6.46 2.55 7.24 2.55 10.7 7.13 10.6 7.43 12.3 13.1 5.01 1.62 11.7 5.01 8.61 10.9 1.92 9.46 1.92 6.96 13.1 12 1.25 9.14 8.91 7.83 1.92 7.62 5.71 11.5 11.2 8.04 10.2 8.01 6.71 7.05 7.64 10 9.2 0.76 9.61 4.77 9.49 2.37 12.1 1.25 3.51 8.53 5.31 8.88 4.94 6.32 7.24 7.45 5.04 7.76 1.62 9.83 8.61 2.37 2.16 6.92 8.76 6.43 4.35 7.2 8.85 7.34 9.35 5.46 5.69 1.25 7.17 9.85 6.9 7.03 7.13 8.73 6.7 1.25 5.71 3.11 6.5 1.25 0 9.59 9.69 5.76 10.1 6.44 1.92 9.89 9.47 4.84 5.1 7.63 1.62 9.51 7.94 6.8 9.47 6.8 10.3 4.02 10.7 11.2 2.99 9.15 2.37 6.56 11.9 5.8 10.2 2.55 10.3 8.68 9.53 10.4 13.7 9.09 8.22 7 10.3 12.3 8.29 11.2 8.13 7.29 3.6 10.5 10.8 9.72 10.7 10.2 9.14 10.4 7.65 10.9 10.8 8.1 0.76 5.24 8.74 9.94 6.73 8.19 6.45 9.92 9.39 7.34 4.94 8.61 6.66 3.96 6.02 9.44 3.75 3.68 10 12.9 9.36 5.94 10.3 10.6 11.4 10.2 6.51 9.07 7.22 10.2 8.51 5.41 7.52 8.9 9.92 10.5 2.16 9.5 9.26 8.71 8.22 9.69 11.7 0 10.2 3.32 0 10.1 12.9 6.3 5.34 12.7 9.81 8.29 10.8 5.76 12.8 13.8 12.1 6.48 9.5 6.86 5.1 9.09 8.86 13.5 8.95 9.94 6.97 9.04 9.46 8.14 3.51 6.42 4.25 10.1 11.2 9.38 11.8 10.3 10.3 8.48 6.49 6.12 8.89 9.56 7.6 7.53 9.17 6.97 9.14 11.8 0 8.98 11.7 12 8.67 9.75 7.47 9.85 8.83 8.69 10.1 7.29 8.87 12.8 8.09 9.88 11.1 16.5 2.71 8.51 7.75 11.1 6.58 7.87 7.56 12.6 14.4 15.6 17.3 10.7 11.6 8.45 9.11 7.35 7.95 10.1 5.26 6.16 5.21 9.36 8.87 10.1 10.1 9.34 13.9 6.96 7.71 9.85 9.49 8.69 3.11 7.58 8.34 2.16 8.15 5.84 6.53 8.4 3.82 7.63 11.2 9.59 2.55 10.4 8.91 8.64 9.65 5.55 8.82 9.78 9.53 3.5 9.43 8.73 7.7 2.8 13.9 5.52 6.63 7.83 4.85 1.62 4.45 0.8 9.26 4.25 4.35 8.39 8.02 6.12 12.9 5.84 8.3 9.21 4.7 6.8 10.3 14.1 6.81 14.3 9.21 8.74 11.4 14 13.6 11.2 12.1 0 8.14 2.37 7.51 4.98 6.92 10.9 2.16 1.92 0 9.34 2.16 9.72 7 0.76 3.22 8.93 6.97 6.45 8.49 5.16 9.59 4.58 8.03 7.48 11.2 9.03 3.22 8.97 14.2 12.2 7.28 0 1.92 9.22 9.08 5.57 8.31 10.8 9.23 1.25 5.41 4.53 10.4 9.87 5.05 11.1 7.46 1.62 8.66 1.25 6.16 3.22 8.08 1.25 1.92 3.32 10.8 8.94 5.9 5.13 9.21 12.3 8.31 6 8.26 8.11 1.73 3.6 7.27 8.53 7.34 8.36 8.54 11.5 7.4 9.04 9.15 9.75 10.5 11 7.22 8.44 8.8 10.1 9.31 9.77 4.66 10.2 8.22 4.84 10 9.28 8.46 7.96 9.33 8.17 3.11 11.4 2.99 7.93 2.71 9.15 0.76 8.31 7.61 9.17 11 0.76 0 8.93 8.91 6.2 1.62 12.2 7.68 2.86 3.6 5.18 1.62 10.1 10.6 9.61 7.28 10.9 8.65 6.22 5.39 7.3 8.38 5.52 10.9 10.3 1.62 13.7 5.48 6.99 1.62 1.25 0 8.35 4.62 8.78 7.96 11.7 10.2 7.64 9.93 8.35 8.82 13.7 9.03 3.51 1.92 8.17 11.3 8.8 4.62 7.89 8.42 8.14 7.96 11.3 5.48 11.1 8.37 10.3 6.06 7.29 9.75 9.72 9.26 5.29 9.36 11 10.7 7.61 10.3 3.96 7.95 4.4 7.71 0 10.4 10.6 4.84 7.91 11.9 8.62 12.6 7.98 9.55 8.42 7.29 8.06 8.64 9.2 3.42 6.83 8.94 11.9 9.07 10.3 9.9 1.62 11.4 12.8 3.68 1.25 12.6 10.8 9.21 0.76 13.3 5.95 9.34 10.3 8.28 9.36 8.16 8.97 8.27 9.95 11.8 8.25 12.1 10 7.24 10.1 10.6 4.02 10.4 0.76 10.9 10.2 9.63 9.3 8.87 10.7 9.69 7.59 5.07 7.66 4.66 7.29 1.92 9.45 9.35 9.05 7.68 8.62 10.7 3.22 12.2 9.12 10.7 3.42 9.92 9.02 6.67 10.8 13.1 6.95 10.2 8.36 0 10.7 8.75 8.05 3.96 8.28 8.63 1.92 7.59 6.26 10.7 3.42 7.16 11.6 3.42 0 10.2 6.55 9.3 7.98 8.54 8.32 7.79 0.76 12.9 12.2 8.8 8.25 9.96 10.7 4.4 9.47 8.56 10.2 12.2 8.37 5.39 10.8 6.88 6.9 4.84 16.1 9.7 12.8 3.89 4.4 7.7 6.44 5.98 10.2 2.16 9.84 13.2 6.05 7.5 9.81 8.23 11 7.61 4.98 7.81 8.83 7.78 8.45 10.7 7.59 9.02 8.2 3.75 9.44 9.93 8.85 13.1 10.8 3.32 10.7 4.2 5.21 8.38 9.6 4.45 0 4.08 6.09 4.49 5.8 10.3 2.99 8.48 11.1 8.37 3.96 3.82 1.62 1.62 3.89 5.04 3.68 5.69 7.87 7.72 5.85 1.25 5.84 7.6 6.81 8.32 9.57 7.65 5.46 12.2 6.88 7.74 6.06 5.01 9.1 10.5 3.51 10.2 8.32 8.56 6.51 11.3 8.84 6.91 7.51 9.47 9.86 8.52 4.74 9.38 6.2 9.17 7.76 6.11 6.33 4.77 8.18 9.31 6.66 0 2.99 5.89 10.1 8.54 4.25 3.13 7.58 2.71 11.3 4.4 8.84 9.89 2.55 8.18 7.33 8.14 4.36 8.34 3.42 3.89 10.7 7.78 3.82 8.85 9 8.28 10.2 4.81 10.2 8.7 8.74 4.7 8.81 5.1 9.89 7.76 9.5 7.88 7.98 7.04 7.93 10.9 8.51 12.1 5.39 6.94 8.28 10.7 6.54 9.33 7.33 2.37 9 8.82 4.94 8.47 10.5 8.67 1.62 0 3.6 2.71 0 3.83 10.7 0 4.2 6.66 2.55 6.28 8.19 9.2 3.51 6.56 11.2 8.97 9.58 8.16 8.47 9.1 9.08 8.97 11.3 4.25 7.96 9.13 7.62 3.82 0 7.36 0.76 4.08 4.2 8.66 5.71 13.3 11.4 8.58 1.25 7.44 5.69 7.26 10.6 4.74 10 9.15 8.09 11.5 8.41 9.23 6.67 11.5 8.65 10.1 1.62 10.7 5.13 9.09 7.87 9.04 7.42 12.1 1.62 13.7 8.62 10.5 8.73 5.71 10.6 11.4 10.2 7.78 6.33 11.6 7.69 10.5 10.6 10.9 10.8 8.76 5.31 3.11 9.5 8.06 9.67 9.6 8.85 9.09 7.27 8.71 9.1 10.4 10.1 8.53 9.68 8.13 9.26 8.23 10.9 4.62 9.73 8.49 10.7 10.7 6.55 12.5 7.55 10.8 10.5 8.47 9.28 9.24 10.4 12.8 10.3 6.93 10.6 12.8 8.71 8.04 11.1 8.85 10.6 12.6 9.32 6.02 9.35 9.23 0.76 9.2 8.62 10 2.71 8.81 6.43 9.15 9.32 11 10.8 9.87 11.1 9.7 10 8.06 11.5 5.97 7.98 11.3 4.25 9.61 10.9 8.89 8.98 8.44 6.81 9.58 8.4 9.89 10.3 10.6 11.2 6.88 10.5 8.67 13 11.1 10.3 9.72 7.27 12 12 8.69 4.08 9.81 11.1 7.26 7.41 5.52 9.97 9.19 2.86 11.1 4.66 3.89 11.5 7.04 9.44 3.82 10.7 11.6 5.73 4.2 1.25 9.75 11.3 11.2 8.65 6.37 8.5 3.82 12.4 10.3 8.82 10.4 8.43 8.9 6.03 9.39 0 10.2 9.3 11.1 9.87 10.6 9.15 11.2 4.49 12.4 12.1 10.3 11 2.16 5.16 10.3 9.45 11.6 8.37 10.7 8.76 8.04 7.12 9.14 9.44 11.2 10.3 10.7 13.5 7.51 6.63 9.77 11.4 11.7 9.62 10.3 11.5 11.2 10.6 2.86 7.93 4.62 10.6 12.1 10.3 10.4 11 9.68 6.36 9.63 10.1 11.1 4.84 8.24 9.93 10.1 10.3 8.07 8.75 8.66 8.78 9.89 10.2 8.29 7.33 9.04 10.8 7.43 9.82 7.19 8.88 11.8 10 8.47 10.5 9.5 9.47 9.1 9.43 4.49 10.4 0.76 10.8 9.55 4.08 9.01 9.86 9.16 8.3 8.95 8.91 11.5 7.19 5 1.25 9.9 10 11.3 5.84 10.1 8.13 9.62 10.4 7.19 11.7 10.2 7.85 9.88 6.33 11.6 11.3 9.43 9.87 9.31 8.87 9.82 8.92 6.12 5.61 1.92 10.2 8.95 10 11.5 10.2 9.93 9.9 14 9.89 10.1 9.99 9.66 11.2 10.2 9.69 9.49 10.6 8.94 14.3 12 10.5 8.64 10.8 8.96 8.71 10.7 9.29 8.82 8.6 10.4 9.47 10.2 10.2 10.6 10.6 10.5 9.84 11.5 11.8 11.6 10.2 13.5 8.82 9.38 12.8 10.7 10.5 11.2 11.6 7.31 11.2 13.5 3.11 10.6 8.92 5.82 8.69 8.28 10.2 9.24 11.2 11.1 11.5 9.06 1.25 10.9 11.1 3.6 7.6 8.48 10.1 10.3 10.8 6.7 8.86 7.13 10.2 9.36 8.64 7.18 9.65 9.31 8.48 3.68 8.27 7.08 9.89 10.5 10.6 9.72 11.4 8.54 9.12 9.53 10.7 9.01 8.3 8.73 9.71 8.2 6.63 9.98 10.1 9.8 2.86 8.21 9.16 9.73 11.8 11.5 9.72 10.2 10.1 7.26 9.49 9.88 10.3 9.13 9.74 8.14 10.7 9.88 4.98 4.84 9.63 5.1 6.92 12.5 9.06 9.22 4.94 10.1 9.89 9.81 10.5 9.83 7.94 9.89 9.57 4.62 10.8 9.36 2.71 8.71 10.2 8.76 10.4 10.6 10.7 9.55 11 6.15 9.24 10.3 10.4 8.91 8.99 9.56 7.02 10.4 9.2 12.5 12.2 11.2 8.29 10.2 7.52 10.3 8.44 9.76 9.27 10.5 3.11 9.28 11.2 9.67 10 9.46 2.16 13.8 11.4 10.7 11.6 10.7 8.88 9.96 8.81 9.82 7.27 10.6 8.96 10.1 11.6 11.3 8.81 12.5 9.86 11.9 10.2 10.5 9.39 9.18 8.39 10 10.3 11.2 8.8 10.6 11.8 11.1 11.6 8.88 10.6 10.4 10 13 11.3 9.18 10.5 7.82 8.42 10.1 10 9.46 10.7 10.2 10.9 10.9 8.66 3.89 9.7 9.28 9.72 10.2 2.86 1.92 2.37 7.27 0 8.54 11.5 6.2 12.3 7.94 7.63 12.2 10.5 0 7.23 6.58 10.5 11.6 9.01 9.38 11.3 11.2 12.6 9.8 9.29 6.58 9.49 3.96 9.16 7.46 10.5 10.5 9.33 10.2 11.3 10.4 11.7 9.58 9.63 6.49 10.8 11.6 9.9 2.71 10.4 11.1 6.65 9.46 3.68 10.5 6.06 4.58 8.6 11.9 7.97 7.72 8.48 4.91 10.7 9.98 9.27 7.36 10.9 9.78 11.3 10.5 11.8 10.1 9.46 8.77 9.96 9.95 0 1.62 15.9 9.16 11.2 13.1 9.79 9.8 8.03 6.3 14 10.1 7.48 5.48 7.39 10.3 7.27 4.02 12.2 10.7 8.38 10.5 0 7.64 0 4.35 9.04 11 9.86 11.6 8.35 8.56 8.75 10.2 8.75 9.1 11.7 11.4 10.8 9.95 1.62 2.86 10.7 9.75 8.62 9.53 1.92 5.52 11.5 2.71 10.1 9.52 9.37 5.94 11.1 8.3 8.9 10 10.2 7.97 7.12 9.68 12 7.53 8.32 8.02 8.6 10.7 11.4 2.86 9.98 5.78 10.4 11.9 9.54 9.47 9.6 3.11 8.2 10.2 10.9 10.7 2.37 0 1.25 1.92 10.8 9.08 11.2 11.3 5.21 9.78 7.37 11.2 6.16 10 10.9 12.2 11.5 9.28 8.16 8.56 13.6 7.77 9.58 8.4 8.68 9.94 9.84 11 7.88 5.04 9.38 7.22 11 8.39 10 7.5 12.1 12 5.1 7.12 10.6 10.1 8.97 8.26 9.3 7.57 0 6.86 7.19 4.53 12.6 10.3 9.03 9.81 10.3 12.3 10.7 2.55 2.55 7.61 8.74 7.16 8.37 7.92 9.44 10.2 8.18 8.21 8.89 7.87 7.87 5.24 11.2 8.96 1.25 4.08 1.92 5.6 7.8 4.62 6.67 6.15 10.2 0 4.98 1.92 7.59 8.15 4.62 6.04 8.79 9.31 3.6 0 12.6 10.1 8.18 10.3 5.63 5.39 5.8 14.3 7.45 12.2 0.76 15.3 10.2 10 11.7 7.58 3.75 2.55 7.23 0 0 12.1 5.1 3.11 8.55 7.22 5.26 7.8 5.63 5.36 11 9.64 10.4 4.77 5.9 7.63 9.81 8.87 8.11 4.4 10.4 6.31 8.96 10.2 4.14 6.08 10.1 6.56 2.86 10.2 3.89 7.95 9.42 9.59 7.73 3.11 9.6 11 9.49 8.27 5.04 6.36 7.01 10 1.92 7.51 9.61 0.76 1.92 7.5 3.68 1.62 9.32 9.57 5.99 5.07 4.45 1.25 6.26 8.08 5.36 9.05 9.7 7.64 7.01 4.53 12.6 0 5.48 10.3 10.6 9.3 8.31 8.77 9.99 3.75 4.96 6.32 4.62 0 5.85 8.96 10.3 3.11 6.93 6.36 8.88 3.42 9.66 5.16 5.84 7.65 3.51 9.58 0 7.45 4.25 1.62 13.3 8.11 7.38 4.62 8.02 6.68 6.82 9.98 7.9 0.76 3.68 7.74 6.69 8.96 4.08 8.75 7.81 5.29 4.94 10.6 9.22 5.48 7.16 4.84 8.12 1.25 7.6 8.63 0 5.69 2.71 3.51 0 1.25 6.81 0.76 8.9 4.49 2.37 6.66 3.75 4.02 3.96 2.99 4.4 8.65 4.49 8.28 5.48 4.45 7.15 2.16 8.54 4.77 0.76 4.49 0.76 10.2 10.9 9.96 7.58 1.62 9.53 10.2 8.95 8.3 0 10 12.5 9.17 6.6 10.1 6.33 4.3 7.13 3.22 6.65 11.8 10.6 5.16 10.5 7.09 11.6 7.42 10.9 12.6 9.47 8.66 10.9 13.9 11 9.41 9.35 8.07 9.11 1.92 9.76 11.5 8.57 5.92 5.87 8.96 10.5 8.14 6.97 1.25 11.3 9.3 6.42 10.9 10.3 4.35 3.11 11.1 8.05 5.26 10.7 5.5 9.42 7.43 10.7 6.09 7.98 9.6 11.9 8.16 10.6 10.6 9.34 7.7 9.39 9.47 10.7 6.48 9.3 9.52 10.6 5.31 8.95 10.1 11.8 9.68 14.6 10.5 10.7 5.18 10.1 10.8 7.02 8.77 9.39 7.78 7.61 10.3 10.1 8.06 5.63 8.75 8.54 11 9.21 1.62 11.5 7.28 9.52 8.32 9.5 9.18 8.75 6.32 10.6 11.3 9.21 12.5 9.05 6.32 10.6 10.2 7.07 2.37 8.84 11.6 11.4 0.91 6.52 7.92 10.6 2.16 8.38 5.59 9.76 9.08 7.3 4.66 10.1 1.62 9.23 2.86 2.37 5.1 10.5 10.8 6.64 10.7 9.56 9.13 8.26 8.89 8.63 9.65 9.41 10.6 8.21 7.67 9.15 10 10.2 7.05 8.24 11.2 7.84 10.3 11.1 10.9 5.29 11.1 12 10.6 15.6 10.2 9.07 6.72 7.54 10.1 9.49 9.93 9.01 10.2 8.2 8.74 8.03 9.81 9.01 10.4 9.06 10.7 10.8 9.58 9.26 2.37 9.64 10.6 10.4 11.2 9.69 10.4 9.91 10 5.44 9.99 7.87 9.83 10.3 12.5 10.3 12.1 11.2 9.52 4.74 4.25 8.62 9.38 8.57 6.85 6.11 5.18 6.76 8.48 9.58 8.76 4.4 9.01 8.94 8.79 8.54 3.11 9.11 8.84 8.15 8.03 5.94 6.94 5.24 10.3 10.6 9.69 11.5 10.9 10.5 8.54 8.79 10.6 11.6 10.2 11.4 3.22 12.5 10.3 10.9 11.9 9.61 10.1 8.41 7.42 1.62 10.9 9.12 11.6 10.1 5.78 8.16 9.01 10.9 10.6 10.6 9.36 10.2 8.23 9.15 10.2 11.1 13 10.4 3.51 9.56 9.76 8.96 9.2 6.16 10.1 6.08 9.84 9.5 4.58 3.68 12.2 13 7.17 9.21 9.32 8.55 9.56 10.7 9.72 13.6 10.4 8.05 9.01 10.5 6.74 11.2 5.52 11.1 3.11 9.49 4.7 6.92 11.8 2.71 9.37 5.65 10.1 10.2 12.4 5.9 10.3 1.62 6.59 5.52 6.33 8.75 11 7.2 13.5 7.62 4.91 6.57 0.76 4.84 1.92 5.55 10.3 8.31 9 5.04 9.75 8.8 3.11 8.22 9.8 8.75 7.44 8.45 7.77 8.2 9.25 8.77 8.19 9.93 9.15 7.56 7.5 10.1 10.5 9.62 9.36 1.25 9.21 8.67 7.52 6.58 11.4 8.17 8.71 2.38 9.81 6.92 11.6 11.5 9.74 0 6.6 7.26 6.42 11.3 9.55 8.83 10.8 11 11.3 2.99 6.33 9.47 9.58 9.42 9.61 10.2 7.45 10.2 10.6 10.1 7.73 8.98 9.14 11.1 8.58 8.68 9.39 9.97 9.14 10.7 3.68 4.2 4.2 9.98 6.16 7.7 7.66 9.26 3.68 10.9 9.73 9.14 8.05 5.59 10.6 4.4 7.37 3.22 12.2 12.5 10.8 2.16 7.05 3.27 5.95 10.2 6.95 10.6 2.37 7.33 7.01 0.76 8.03 5.55 12 7.67 6.93 3.82 11.5 10.9 2.99 0.76 9.42 11.6 7.3 3.6 7.05 0 10.7 7.89 10.8 12.4 10.1 3.11 7.27 9.31 6.77 11.7 2.55 9.08 10.4 8.32 7.86 8.73 10.6 17.6 9.87 10.6 10.3 11.7 10.6 9.49 3.82 7.6 10.1 1.36 9.17 6.52 5.84 11.1 11.4 7.04 11 8.94 9.69 12.3 4.3 9.79 0.76 5.18 10.3 7 9.68 10.1 13.4 7.24 4.88 5.44 10.1 10.2 11.5 4.45 6.23 10.4 6.87 12.6 8.32 8.47 7.56 6.23 10.9 5.26 11.2 3.42 7.01 5.82 6.85 9.88 9.44 8.11 1.62 10.5 7.39 10.1 11.8 10.1 9.57 6.93 3.51 7.34 8.55 8.56 10.5 5.55 8.84 11.3 3.68 7.56 7.58 4.14 8.72 10.6 6.08 8.68 7.36 8.26 5.01 1.98 6.85 9.3 8.22 7.07 9.2 10.6 0.76 11 0 7.8 10.4 6.59 10.6 8.14 11.3 7.34 5.16 7.26 10.5 7.48 0 6 2.55 3.75 2.37 7.43 9.71 3.6 8.13 13.9 8.37 5.84 7.48 10.2 8.58 9.29 5.1 5.59 8.02 9.92 10.7 10.3 9.66 8.47 8.9 10.6 10.6 11.4 8.18 5.01 7.99 9.04 9.52 1.25 4.02 7.37 4.45 4.98 10.8 8.14 8.82 8.38 4.74 9.98 7.06 3.51 7.79 9.43 8.98 4.35 8.32 5.07 8.88 1.25 7.38 10 12.1 2.99 9.45 10.4 11.1 9.46 5.1 11.9 10.2 9.25 12.1 11.3 8.36 9.1 9.84 9.9 7.04 6.33 10.3 10.4 9.9 8.79 6.62 6.84 8.66 11.9 7.52 7.45 9.16 13 8.51 9.62 6.64 9.9 8.65 9.09 10.1 5.26 10.2 9.87 6.52 7.56 7.54 13.5 10.2 8.23 12.8 1.62 10.9 7.53 9.07 10.6 8.93 10.1 8.49 9.65 12.1 10.9 5.41 7.07 11.2 14.4 0.76 7.35 12.6 13.4 3.51 2.55 10.8 10.8 9.24 2.16 10.8 7.77 3.51 9.65 4.2 2.16 11.8 4.02 8.64 10 12.6 10.7 11.8 12.8 10.3 10.5 10.2 1.92 7.35 4.23 2.16 10.6 3.32 9.78 12.7 4.25 8.22 4.88 4.84 7.5 9.45 1.62 0.76 3.11 8.32 3.51 6.24 2.16 8.4 6.71 1.25 6.22 5.04 7.67 9.25 4.4 5.13 7.13 4.45 5.67 8.96 0.76 8.8 6.42 6.99 13.9 11.3 1.92 6.15 6.92 9.23 5.34 7.87 11.1 9.6 8.12 8.29 3.22 4.7 7.43 2.87 8.23 5.97 4.94 5.26 9.98 2.86 9.78 7.61 11 1.62 8.59 7.26 1.25 2.99 8.17 3.11 3.96 2.16 11.5 4.08 5.1 4.49 8.64 5.1 8.53 4.87 1.25 3.25 2.16 7.64 2.71 5.01 2.16 8.84 1.25 7.46 0.76 3.6 9.6 10.7 7.36 6.86 4.61 5.97 6.55 6.33 6.06 7.98 1.62 2.71 5.46 10.9 3.6 5.58 2.37 4.26 7.1 5.8 8.82 4.49 5.36 6.43 3.22 4.2 6.77 8.65 3.01 5.26 12.6 9.19 8.65 7.37 2.55 9.62 8.99 1.25 3.68 8.72 2.99 7.14 5.21 7.72 5.1 10.4 6.97 4.02 4.35 2.71 6.83 7.87 0 4.3 0 10.7 3.32 0 5.99 11.9 8.81 7.52 7.68 8.17 2.86 2.55 0 3.89 7.84 2.16 1.62 9.17 3.11 9.41 4.25 9.62 2.99 6.5 7.11 9.63 8.36 8.6 4.26 3.82 5.18 3.89 5.21 4.81 3.75 11.9 3.22 9.75 9.02 6.98 9 1.62 7.02 6.97 0 2.16 0 1.92 10.9 9.46 7.93 5.85 8.46 10.2 2.37 2.37 2.16 5.31 4.88 3.68 1.25 9.11 5.07 7.73 4.25 6.36 6.38 7.61 4.98 8.68 2.99 0.76 7.69 5.18 1.62 5.13 2.37 0.76 5.63 1.62 7.86 2.16 0.76 5.29 8.04 0 5.76 3.96 9.88 7.98 4.02 1.62 7.87 5.41 0.76 7.56 10.4 7.61 7.43 9.53 3.42 8.93 1.25 4.49 7.43 6.9 7.26 5.87 7.92 8.51 0 5.95 9.67 9.6 1.62 7.53 8.25 0 8.85 4.25 6.41 9.96 8.52 9.37 8.22 5.8 2.16 0 3.32 9.67 1.92 8 3.42 3.11 9.19 5.61 8.55 9.67 2.37 9.14 0.76 9.26 1.62 6.7 4.08 6.16 7.88 5.99 10.3 2.71 7.69 8.89 3.22 7.96 10.9 6.37 6.08 7.43 2.37 3.64 0 10.2 6.38 5.24 8.12 1.25 2.71 9.26 1.25 5.18 7.06 7.31 7.39 7.92 6 7.79 5.04 3.32 3.22 2.37 8.42 8.04 2.86 11.4 5.01 9.73 4.94 5.55 1.62 8.98 2.86 8.13 10.7 10.7 6.08 3.11 9.37 3.68 5.19 5.61 9.48 11 8.95 4.14 6.81 8.44 8.85 8.59 0 0 4.02 7.03 9.24 4.58 6.37 7.55 9.31 7.53 2.37 7.37 10.1 12.7 11.1 9.16 5.5 11.9 1.62 9.67 12.3 10.7 6.59 11.5 9.69 11.5 2.16 2.99 11.7 10.1 9.4 10.1 7.57 9.94 9.08 12.7 7.98 8.25 10.6 4.74 7.16 5.26 11 0 9.87 7.82 10.9 10.1 10.9 10.1 9.88 9.07 7.69 8.09 8.27 9.45 9.41 10.3 11.2 9.19 2.71 7.6 9.02 8.44 12.3 9.18 9.73 11.1 7.39 1.92 7.6 8.08 8.23 10.8 0.76 10.6 2.55 9.82 11.9 5.04 8.05 7.61 10.5 10.8 13 7.88 9.44 10.9 9.69 7.07 9.12 8.56 9.09 8.79 9.67 6.48 11.7 10.4 9.41 10 8.16 11.4 7.66 7.87 7.65 8.44 9.09 9.2 9.54 8.45 9.21 10.3 8.33 11.6 10.6 6.99 7.39 8.23 2.55 7.59 6.86 8.73 0.76 9.21 9.54 10.3 9.05 1.25 2.16 9.48 2.99 10.8 2.55 3.68 9.28 8.2 7.54 3.22 5.16 12.5 4.7 2.37 13.6 5.52 11.4 16.1 10.2 9.51 12.4 12.5 10.8 9.87 9.96 7.58 8.05 8.7 7.82 7.25 9.85 0 2.86 8.78 10.4 7.24 9.54 8.68 7.96 9.09 11.2 7.87 9.11 7.55 7.03 8.47 11 12.2 10.9 10.2 0 11.4 10.5 8.74 9.63 9.9 1.62 10.3 8.27 4.14 7.38 9.33 0 9.16 9.54 5.36 10.9 5.61 10.6 0 5.55 9.49 7.51 9.94 5.57 12 10.5 8.44 0.76 8.8 6.95 8.51 8.91 1.25 4.94 9.93 11.6 9.33 2.55 10.7 9.87 7.5 7.72 11.5 10.7 11.4 6.81 11.2 0.76 10.1 8.52 10.1 7.42 6.37 8.42 9.64 0.76 8.66 6.05 9.73 9.23 7.54 8.25 8.28 10 10.8 7.18 8.83 11.8 8.61 10.1 13.7 8.94 7.34 4.14 5.8 7.9 0.76 10.6 8.95 7.85 3.11 5.18 8.25 9.59 5.41 8.53 8.31 5.9 12.5 8.69 12.6 9.09 3.75 11 0.76 8.31 6.08 7.9 9.52 8.91 10.3 8.11 11.5 6.24 10.4 11.6 7.9 8.24 8.69 8.96 1.62 9.4 5.1 11.5 7.31 9.19 9.12 8.89 13.8 8.98 2.38 10.6 3.82 11.5 8.23 9.42 4.14 6.7 8.96 3.89 7.79 5.82 13.7 12.6 10.5 1.25 9.76 1.92 10.2 9.45 5.18 10.5 11.5 11.1 11.6 12.6 13 10.6 8.43 3.32 12.3 11.2 10.8 1.25 10.2 0 4.66 5.16 5.97 10.2 7.79 7.6 0 1.25 0 1.92 8.62 1.25 11.2 7.62 9.45 8.92 10.7 11.7 10.3 4.49 12.4 14.9 10.8 6.74 8.25 10.6 10.8 9.34 5.24 13.2 7.22 5.39 4.7 10.7 6.41 5.69 5.16 6.88 9.54 5.87 8.86 8.16 5.92 10.1 6.24 2.71 9.29 8.35 10.7 10.2 9.76 9.99 5.24 10.9 7 11.1 9.5 11.1 12.7 10.2 10.9 8.89 11.4 9.6 13.9 11.2 5.71 8.93 13.1 13.3 12.5 9.83 9.69 11.7 9.38 6.5 11.5 11.5 4.14 10.7 8.09 10.2 6.86 13.3 11.7 11 7.52 7.26 7.74 12.2 9.72 4.55 9.01 3.06 3.82 5.41 6.02 11.2 7.49 8.76 12.4 11.7 9.2 11.3 13.2 10.2 10.7 10.2 10.3 6.14 7.8 8.13 9.29 12.8 7.76 0.76 9.49 7.71 9.25 9.03 5.89 9.67 1.62 7.46 1.92 10.7 1.62 8.47 13.4 9.99 13.8 11.5 13.5 12.1 12.8 12.2 10.6 11.3 13.9 0.76 12.7 13.3 0 2.99 2.16 8.33 8.07 6.03 4.81 5.29 3.75 5.42 7.42 9.19 7.79 2.37 8.22 8.77 5.67 7.99 4.81 4.74 5.34 6 1.25 4.4 8.63 5.68 7.65 9.29 6.15 9.54 0.76 9.25 1.25 7.77 12 0.76 9.14 9.42 0.76 7.79 2.16 9.67 2.37 6.35 8.53 9.89 9.51 5.59 10.9 4.66 4.2 11.1 11.1 12.1 12.4 10.5 10.4 6.6 7.17 5.91 4.94 12.4 11.6 7.6 8.57 8.81 11.3 10.9 13.3 10.4 5.55 7.23 10.7 14 10.2 5.94 6.73 14.1 12.8 12.6 6.05 7.26 14.3 9.81 15.1 13.5 5.1 11.2 11.4 10.1 12.2 7.52 3.89 14.4 11.6 9.07 1.25 4.45 3.75 4.7 3.11 1.25 3.96 8.31 11 5.04 11.4 10 6.43 3.68 2.37 1.25 0 8.82 8.58 2.99 4.84 1.25 7.47 6.24 4.88 8.95 1.62 0.76 2.71 0 7.03 9.92 8.28 10.7 5.21 10.1 8.37 6.02 3.81 0.76 6.55 5.64 8.56 10.1 2.16 8.61 8.17 3.96 8.65 8.69 8.84 7.24 11.4 9.86 7.92 9.73 5.76 7.24 4.02 0 5.39 8.46 0 2.37 8.21 7.87 4.7 6.5 6.53 6.96 6.5 6.16 3.22 4.58 5.26 8.48 5.82 3.22 8.2 10.1 3.82 5.39 9.16 7.54 5.1 0.76 2.55 4.98 9.42 6.98 1.92 4.08 4.35 9.98 7.83 8.59 9.55 0 4.4 2.99 2.55 8.59 6.55 0.76 8.29 2.71 9.06 2.55 10.3 8.31 5.48 3.83 3.32 7.64 8.22 6.79 4.35 6.88 2.86 4.62 2.16 4.7 4.53 8.65 9.35 6.85 10.2 3.51 0.77 0.76 8.88 6.45 12.2 12.1 9.63 9.93 2.86 10.2 1.92 4.74 3.11 9.27 11.3 0.76 6.23 9.26 1.25 9.06 0 4.49 7.15 7.56 9.76 4.2 8.79 7.24 6.05 7.06 0.76 7.64 3.42 4.74 0 8.62 2.71 5.87 9.02 5.57 8.25 8.52 3.68 4.45 2.99 0 1.25 1.62 8.55 8.24 5.18 5.78 0 5.76 6.88 7.27 0 6.69 2.99 3.32 2.86 0.76 2.86 10.7 5.26 7.61 4.84 1.25 8.96 9.65 2.16 3.22 10.2 6.48 11.1 3.22 5.55 2.55 7.42 1.62 5.44 3.51 9.06 3.11 4.2 6.7 3.22 6.79 0 2.16 4.2 9.65 0 10.9 3.82 2.99 11 11.3 3.32 5.24 7.45 2.86 11 11.4 8.65 5.95 12.8 11.8 3.68 7.22 7.06 9.45 8.88 4.65 7.74 11.1 9.93 1.25 10.9 3.11 6.05 3.22 12.8 11.3 2.86 7.64 11.8 1.62 6.81 14.7 6.63 0 6.97 6.45 2.99 9.75 12.7 6.71 13.1 6.43 4.66 4.02 4.3 1.92 6.52 5.04 7.58 8.87 12.4 11.2 8.81 4.45 6.27 4.4 10.9 7.32 2.71 7.92 0 1.62 9.35 10.7 2.37 1.92 7.18 5.88 6.53 7.75 2.37 0 3.22 7.91 10.6 11.2 0 3.51 12.5 7.41 4.77 5.31 3.51 7.64 8.81 6.57 9.49 1.25 4.71 11 5.59 9.2 5.01 8.29 5.82 1.25 1.25 10.2 4.94 2.55 2.55 8.76 9.39 4.4 8.49 2.55 2.37 5.63 3.32 10.8 3.31 7.7 12 10.1 12.2 5.01 9.63 6.64 5.16 2.37 8.56 2.86 7 10.2 11.1 12.9 4.08 11.1 9.17 10 11.2 12.9 8.51 6.53 8.44 7.71 4.91 7.94 9.99 1.25 7.04 6.27 1.62 9.08 10.6 8.33 8.92 11.9 9.53 1.25 1.62 11.2 1.62 14.2 8.21 10.4 12 11.2 6.24 10.1 9.31 2.71 9.78 10.3 6.16 8.05 11.4 8.97 10.1 7.31 10.6 10.8 9.65 8.58 3.6 9.39 8.34 9.71 8.52 5.39 5.84 5.04 7.24 8.66 7.37 11.7 8.67 12.7 10.4 11.3 5.26 9.7 10.6 11.9 7.56 7.43 10 0 2.71 4.25 11.5 7.12 7.65 12 9.65 10.9 3.42 11.2 9.28 10 10.1 11.9 9.11 10.7 7.92 7.72 12.2 9.87 13.2 12.9 11.7 13.6 8.66 8.99 10.6 9.37 10.9 0.76 4.7 7.35 4.66 3.96 1.62 2.55 10.2 7.77 8.4 3.75 8.73 10.2 7.09 3.11 6.92 1.25 0.76 7.98 2.99 6.42 6.09 8.22 8.37 8.58 8.62 0 0.76 7.52 7.13 8.18 3.51 6.33 3.6 4.49 10.9 8.57 5.29 5.63 7.29 5.13 7.58 2.71 7.21 0 4.14 9.33 14.5 6.96 6.55 4.66 13.2 4.45 6.03 7.59 3.11 6.7 6.49 7.29 8.43 7.72 5.43 1.62 4.45 1.92 2.55 7.67 7.34 6.24 5.97 9.39 8.42 6 6.91 0 7.56 3.42 1.62 3.83 2.71 8.62 7.54 4.49 0.76 10.1 6.4 9.18 3.11 10.9 11.9 6.62 1.25 6.93 5.65 8.57 7.56 0 9.89 0.76 3.6 5.99 7.61 5.1 3.11 8.46 12.3 6.91 3.89 4.88 1.25 9.49 5.34 9.26 2.71 8.2 12.5 2.37 3.87 4.4 6.5 7.75 1.62 2.99 1.25 8.1 6.8 0 6.82 12.9 6.4 7.94 6.33 7.92 3.89 6.92 8.42 8.07 3.42 11.7 10.2 11.6 8.08 0 0.76 0 11.9 0.76 0 7.07 4.77 3.42 12.2 5.84 2.55 4.4 2.37 3.82 0 9.93 9.33 9.14 9.5 10.9 12.5 9.47 8.58 9.31 10.6 4.98 11.4 11.1 9.92 2.16 1.25 13.1 8.31 3.68 8.76 7.47 3.42 13 7.02 4.98 9.9 2.16 5.63 5.59 4.62 11.4 0.83 9.97 2.86 0 4.77 9.2 5.29 6.99 13.3 7.56 9.34 4.88 2.71 3.96 4.45 4.53 8.72 7.45 1.92 0.76 1.97 7.09 1.62 9.65 0 4.25 7.17 3.68 4.45 6.67 0 1.25 9.38 3.22 7.49 8.4 4.4 1.62 13 2.71 8.73 5.71 1.25 11.2 3.82 2.86 8.47 5.1 7.97 4.88 3.96 4.98 6.24 7.27 5.87 6.84 6.93 9.9 7.2 3.75 14.3 2.55 7.26 7.94 8.05 9.21 7.78 7.22 7.31 2.99 1.92 5.89 7.81 7.62 0 7.72 0.76 9.64 1.62 9.05 8.11 5.65 5.01 5.71 8.93 9.37 0.76 9.06 1.92 8.05 9.97 4.35 8.6 8.28 7.65 1.25 10.2 12.6 8.54 3.51 5.97 1.25 4.2 6.52 6.91 3.89 8.72 8.7 5.59 6.41 0 7.04 10.9 8.08 10.8 0 11.1 6.55 7.04 10.8 2.37 1.92 3.68 3.32 10.2 4.62 0.76 7.4 2.86 7.46 1.25 5.48 9.51 0 7.4 0.76 7.87 1.92 8.95 10.4 6.24 4.91 2 3.11 8.29 0 2.16 2.16 5.57 0 9.82 8.48 9.99 8.29 8.42 9.61 9.89 6.09 10.6 0 11.2 1.62 12.2 0 9.6 8.63 11.6 11.7 5.61 0.76 11.8 12.4 13.8 3.6 4.49 3.6 11.7 4.35 11.4 3.82 0 9.27 11 6.52 7.56 3.22 11.6 8.54 0 12.4 10.8 12.9 9.5 12 0 7.56 10.2 7.98 10.8 4.25 10.3 11.8 12.8 4.74 10.7 9.42 10.5 1.25 6.38 11.3 9.32 7.13 10.6 7.81 10.4 9.48 10.3 8.78 10.2 8.34 0.76 5.36 9 10.7 1.62 7.45 8.6 7.11 10 9.18 11.3 6.57 8.44 1.62 9.86 3.96 4.53 7.78 6.6 11.6 1.92 9 7.1 10.3 0 12.7 7.9 10.7 10.8 11.6 8.47 3.11 7.31 9.82 0 1.92 7.17 9.23 6.52 11.5 7.01 9.27 0.76 5.61 7.32 2.58 7.47 7.99 0.76 7.53 2.71 3.51 7.79 8.47 3.42 5.36 6.24 3.32 8.28 3.75 10.1 8.15 3.68 1.62 10.2 4.74 5.41 3.11 2.99 10.3 7.44 5.13 5.75 1.62 7.17 0.76 2.16 1.92 3.75 5.67 11.6 3.96 7.44 5.75 6.49 2.71 6.58 0 2.37 7 3.08 7.89 4.74 6.35 7.7 1.25 10.2 3.6 4.3 7.42 6.18 9.36 7.44 0.76 6.98 6.96 10.3 6.15 10.9 9.74 2.55 0.76 3.32 2.55 8.04 9.46 3.42 4.14 8.91 5.07 0 5.29 5.87 9.95 7.74 0.76 7.99 3.75 10.2 0 2.71 8.88 0.76 5.29 9.4 5.97 9.15 0.76 9.49 10.6 12.4 0.76 11 7.07 9.98 4.3 7.98 11 4.74 8.12 4.25 6.43 11.5 7.83 4.45 9.89 8.33 9.41 10.9 10.1 11 2.71 9.86 7.15 0 11.5 11.8 11.4 11.2 4.96 10.2 0 3.42 13.9 6.2 13.9 11.1 6.22 6.11 6.91 5.87 8.92 6.58 11.1 12.1 11.8 12.4 11.1 12.5 11.7 1.25 6.76 5.94 5.04 8.25 9.76 11.4 8.57 8.25 8.96 9.72 9.94 10.4 8.64 10.6 6.85 9.23 7.71 9.05 9.08 0.76 8.67 9.16 7.46 7.85 6.43 5.26 8.53 8.85 10.4 10.4 7.51 11.2 9.47 13.7 8.93 7.71 11 9.53 12.4 7.94 8.85 8.36 11.6 10.1 8.31 6.63 10.1 6.59 1.92 7.06 2.16 0.86 8.62 7.27 3.96 12.2 8.58 1.3 10.1 9.14 4.91 9.67 7.59 9.48 1.62 12.3 11.3 7.53 9.47 11.4 9.92 7.92 9.98 8.03 4.02 2.16 13.2 10.4 10.6 10.1 10 9.59 11.9 12.2 6.19 6.05 9.44 0.76 11 12.4 12.4 11.2 11.3 7.39 9.29 10.1 10.5 9.73 6.45 8.42 11.1 9.87 3.11 8.19 7.74 7.13 9.58 9.97 9.63 9.35 10.5 10.5 3.22 0 9.78 7.87 8.59 9.15 8.48 9.32 12.1 10.7 5.31 7.19 11.2 9.7 4.62 7.13 8.94 8.27 8.17 13.3 12.2 9.64 10.5 7.98 11.7 12.1 5.21 8.74 11.9 9.32 0 9.47 8.11 8.81 10.9 10.5 6.36 9.12 5.1 9.04 10.7 10.8 11.9 11.1 5.99 3.32 8.62 11.6 12.6 9.53 6.93 13.2 12 11 1.25 2.37 10.1 4.7 9.46 11.5 4.53 7.88 5.01 4.02 8.67 10.2 1.92 5.04 7.29 6.65 9.3 0 8.7 9.47 0 11.1 6.8 9.04 9.51 10.5 4.3 1.25 8.07 6.33 7.05 11.6 9.67 3.32 6.74 8.87 12.4 1.92 13.9 10.3 11.4 0 6.09 6.84 8.37 9.52 4.49 2.37 3.68 5.5 6.67 3.96 8.39 2.86 4.14 2.99 8.07 10.6 5.26 10 11.2 4.54 7.96 4.14 4.8 5.93 4.3 10.3 7.58 3.89 7.72 1.62 9.89 6.03 10.4 8.99 1.62 1.25 9.87 10.5 7.37 0.76 8.39 1.25 3.51 3.68 6.93 6.55 1.25 2.16 9.45 7.9 9.04 9.45 13.4 2.37 7.67 6.65 5.99 6.6 3.96 5.9 6.85 6.12 5.55 4.81 6.52 8.07 3.96 5.36 6.64 0.76 5.67 7.13 4.96 4.02 2.16 0 1.92 3.6 1.62 3.68 9.09 3.11 8.97 4.66 5.16 5.24 2.71 2.86 6.4 11.8 4.3 0 0 0 4.45 2.55 7.66 0 6.14 8.25 5.44 3.22 1.92 10.5 5.39 9.51 9.42 3.11 9.15 10.7 10.7 8.77 13 7.87 6.89 1.62 10.9 11.4 8.93 5.01 7.61 4.81 4.98 7 3.96 5.41 3.82 8.69 10.1 9.68 4.6 8.4 6.63 9.8 9.29 9.67 7.39 8.27 1.25 9.78 9.17 9.29 8.63 5.46 11.1 9.83 10.1 7.22 8.75 7.72 9.95 8.21 10.5 6.82 6.67 9.09 1.92 1.92 0 12 7.54 1.62 9.51 10.8 1.92 6.84 14.4 11.3 14.3 8.11 1.25 8.67 12.9 12.2 1.25 12.1 11.1 9.82 9.6 9.18 12 6.03 2.37 7.94 10.7 10.8 11 8.65 10.9 2.16 9.18 8.32 14.7 9.85 9.69 10.7 12 4.45 14.9 9.98 6.71 11.8 10.8 11.2 12.2 3.68 12 9.01 11.3 6.06 3.11 10.2 7.51 6.99 9.44 13.8 9.51 10.6 10.4 9.79 11.1 10.8 13.1 9.88 9.88 10.8 6.11 9.91 11.1 8.83 9.63 10.3 9.31 10.6 10.9 11.2 9.34 10.6 10.5 11.4 10.1 9.62 11.2 9.84 10 10.5 10.4 11 8.84 10.7 10.5 10.5 10.7 13.1 10 10.1 7.31 12.9 14.9 10.6 10.1 2.64 6.16 7.07 6.52 7.52 0 0 9 0.76 8.87 9.64 8.48 7.51 7.42 11 10.2 14.1 10.4 7.28 10.1 7.74 5.24 10.5 8.74 8.54 0.76 12.4 3.32 10.3 11.4 10.5 10.3 12.7 9.82 10.4 12.2 9.01 7.85 9.75 8.44 9.71 10.5 9.83 0 10.6 9.1 10.2 7.24 2.86 11.6 11.2 7.41 10.5 10.4 5.04 8.99 7.02 6.75 11.1 14.4 2.99 5.44 10.8 10.8 12.8 10.1 11.3 9.16 10.9 9.02 2.16 9.75 13.4 1.62 8.03 10.5 10.3 8.88 9.76 11.9 12.1 8.34 8.78 1.92 9.51 3.75 8.85 8.9 9.08 7.02 13.9 2.55 0.76 11.7 6.16 7.78 5.59 3.11 3.42 9.6 10.4 9.97 4.77 11.3 8.67 2.37 9.97 5.63 3.96 3.75 12.9 10 6.98 0.76 7.73 3.22 7.26 4.74 1.25 5.48 0.76 7.83 6.67 0 4.66 8.81 12.6 9.76 14.7 9.12 11.3 8.62 9.76 11 7.42 9.36 8.77 7.69 7.82 0 8.72 5.37 4.49 8.07 8.82 6.81 9.28 9.62 0.76 5.1 10.8 9.46 4.4 3.89 4.58 0 13.5 10.7 10.7 13 11.7 7.04 11.6 8.44 10.1 3.11 4.84 6.6 7.39 0.76 0.76 10.7 9.64 12.8 2.99 10.7 8.91 7.84 8.52 0 5.34 5.5 9.48 11.9 9.67 9.5 7.26 1.25 6.28 11.1 5.71 10.7 7.97 6.49 7.16 7.71 11.4 11.3 4.91 6.48 9.04 7.28 5.55 8.3 1.62 3.96 8.28 9.69 14.8 5.17 7.24 12 0 0 6.11 12.8 10.9 11.3 9.57 10.3 10.6 9.27 7.15 10.6 8.17 8.49 3.11 8.71 8.94 10.8 6.41 12.9 11.5 1.92 9.98 13.8 1.25 5.24 9.75 9.1 10.9 2.62 11 9.15 5.75 10.3 9.48 7.34 8.97 5.59 10.1 5.36 3.68 10.8 10.7 9.2 3.42 5.26 2.92 9.52 8.95 11 12.2 9.61 10.9 8.62 9.7 0.76 3.1 3.11 11.4 5.13 7.05 11.8 6.81 5.18 8.92 9.1 10.5 10.7 10.6 10.2 11.5 10.8 9.39 11.2 12.5 9.44 1.92 13.2 4.94 5.72 3.75 8.42 10.3 10 11.2 10.1 10.8 9.09 8.43 8.35 6.24 7.88 7.33 10.4 8.11 8.38 5.39 8.47 8.09 10.3 8.13 11.3 9.53 7.75 9.1 7.8 8.58 11.1 8.91 7.61 11.3 7.65 9.79 7.6 9.04 9.89 9.73 9.14 10.8 8.59 11.3 6.58 9.96 5.01 10.2 5.69 8.34 8.56 9.51 11.3 8.1 8.57 9.44 2.16 8.29 10.6 8.93 9.29 7.63 8.7 10.2 9.21 10.8 8.01 9.52 10.6 11.4 10.8 10.4 11.4 5.92 9.88 3.75 2.92 1.62 9.09 6.56 8.68 11 9.4 12 7.28 8.93 11.3 9.04 8.55 10.3 10.5 9.01 8.59 8.03 9.65 9.5 7.3 12.4 10.4 12.7 10.5 7.64 9.99 9.53 10.8 9.36 11.2 11.2 8.59 10.4 7.52 9.36 10.9 9.46 9.99 10.1 5.31 9.46 7.12 7.9 7.85 11 12 7.87 8.01 7.84 9.25 8.91 12.2 9.85 10.3 9.72 11.1 8.04 11.4 5.01 9.79 9.95 9.05 9.94 11.3 6.77 9.19 9.21 11 9.11 6.98 3.11 11.9 7.34 8.36 7.81 6.56 8.77 9.06 10.4 11.7 8.67 8.35 9.38 10.4 11.1 8.82 10.6 8.46 7.4 10.1 8.72 7.75 6.85 9.74 8.64 9.66 9.84 8.09 8.49 4.84 2.37 2.55 10.1 2.16 8.76 7.47 6.97 8.59 9.79 10.6 9.15 10.4 1.62 10.4 9.72 8.05 7.27 9.01 8.53 11.6 11.3 9.2 9.82 6.06 7.33 8.94 2.37 10.2 9.45 8.11 9.35 10.7 8.25 8.19 9.89 9.25 5.51 5.04 3.82 11.7 10.5 11.4 10.7 8.11 6.75 7.36 8.36 8.43 10.5 13.6 8.03 9.65 11.1 6.67 2.71 10.1 7.98 9.3 8.51 10.5 10.8 6.51 10.4 9.12 5.18 11.3 7.64 9.44 4.45 10.2 11.2 0.76 9.4 11.2 6.08 7.07 8.78 4.94 10.8 10.9 2.99 9.5 4.84 9.98 9.25 7.52 8.79 9.94 11.8 11.4 5.83 10.6 5.89 7.4 5.63 5.39 10.9 11.1 10.6 7.82 7.73 9.65 10.3 9.82 10.1 9.81 2.86 9.32 0 6.14 10.4 8.32 8.49 8.59 7.08 8.65 12.1 7.98 10.4 2.55 10.3 10.9 8.76 10.5 7.57 9.61 8.22 6.31 9.31 9.74 1.92 10 14 7.89 9.18 8.35 9.67 7.91 8.78 11.1 10.2 11.4 10.5 10.5 9.29 9.87 7.6 7.21 9.12 10.4 10.2 8.95 8.2 10.3 10.8 4.14 10.5 10.7 9.41 9.3 10.1 9.56 0.76 10.4 8.59 11.2 11.4 3.75 8.8 7.58 9.93 6.8 3.32 10.7 11.2 8.31 1.62 11.2 9.84 7.34 9.94 3.32 9.84 8.69 10.5 11.5 9.39 11 8.4 11.6 9.69 8.59 9.6 11.2 10.8 10.8 8.01 10.5 7.74 5.57 8.63 9.13 11.7 11.6 11.1 9.06 8.57 9.89 7.89 9.17 11 5.07 8.32 8.55 6.18 9.81 9.5 7.71 9.63 7.45 7.21 9.77 9.53 8.32 8.55 8.83 8.94 11.8 3.96 1.25 8.52 9.48 9.01 3.42 8.37 10.6 11.1 9.19 10.9 6.38 9.41 11.6 9.81 9.01 4.3 13.1 11.2 10.9 8.35 12.1 10.2 11.8 9.89 11.4 10.9 10.3 11.1 7.73 11.1 9.52 10.8 8.09 9.96 9.8 9.45 12.1 9.74 0.76 9.05 9.85 9.71 8.73 8.44 12.4 8.3 11.3 9.09 8.11 11.9 11.3 10.1 9.65 8.98 10.9 9.28 11.2 9.09 9.29 7.33 9.85 8.69 11.6 8.74 10.6 9.43 7.56 10.2 9.08 7.98 11.3 8.64 10.7 7.89 12.6 7.79 6.66 6.38 8.61 9.22 10.2 5.11 6.75 9.89 9.45 9.4 8.36 9.95 9.12 12.9 9.44 6.4 8.31 0 9.39 7.31 7.12 9.58 8.09 12.2 9.18 2.86 11.2 8.7 8.78 10 12 7.62 10.8 2.16 7.58 7.79 2.37 2.37 8.04 10.5 1.25 11.6 8.98 8.99 4.02 9.21 9.21 10.5 11.1 10.8 9.53 5.73 8.87 8.96 3.68 8.26 10.1 9.38 10 6.81 11.1 11.8 8.48 6.76 5.46 8.93 13 10.3 9.42 11.3 8.12 10.3 11.1 8.41 9.35 7.81 9.97 8.73 0.76 1.25 8.71 5.1 11 9.84 9.45 8.3 12.4 9.76 2.16 8.31 9.45 10.2 8.09 11.7 0.76 10.8 9.75 12.5 10.3 9.39 9.61 10.7 5.82 4.02 10.7 6.9 8.86 10.6 12.3 9.47 9.78 9.35 7.89 7 4.08 11.7 7.1 12.1 4.53 10.3 10.7 9.47 10.7 11.9 10.6 4.02 8.58 9.01 8.65 1.92 11.8 10.6 8.58 5.44 7.72 9.92 8.39 9.11 10.8 8.61 8.85 6.53 10.3 9.71 8.24 11.1 8.56 10.7 9.56 7.99 5.94 10.6 11.2 11 10.8 9.76 9.87 1.25 7.97 9.66 10.9 5.9 10.8 9.66 0.9 13.8 9 8.72 0 7.2 5.16 8.51 9.99 9.84 7.93 7.16 11.9 7.9 10.2 9.53 6.89 5.16 10.2 7.62 7.05 5.54 11.4 8.32 6.8 3.32 8.33 10.8 3.32 7.79 7.91 6.67 9.44 9.55 9.48 13.8 5.29 6.06 8.83 8.09 5.25 5.89 7.48 8.14 11.2 10.2 8.16 11.1 8.86 4.2 10.3 8.89 7.51 10 8.11 11.6 9.85 11.5 6.5 8.71 0.76 11.7 4.02 11.3 11.1 7.2 0.81 3.6 12.3 10.4 9.52 10.8 9.6 9.04 8.83 9.85 5.16 5.29 7.65 1.62 9.23 9.47 5.97 6.45 2.37 3.32 10.9 4.02 9.63 5.94 1.25 5.99 11.7 5.46 7.9 9.44 8.46 8.74 8.28 10.1 9.07 8.46 8.57 9.53 10.4 9.22 7.77 10.5 10.8 4.91 3.75 8.06 8.34 8.3 3.22 8.13 2.71 3.96 8.52 10.8 7.26 8.35 5.18 11.4 9.42 11.6 1.62 10.4 9.26 7.54 4.21 5.82 2.87 7.47 7.78 6.56 8.54 9.36 11.9 9.81 12 11.4 0.76 8.02 3.6 9.47 10.5 9.04 12.1 9.39 5.31 6.24 9.88 9.48 11.8 10.8 9.84 5.1 3.96 9.12 7.68 7.62 11.6 8.89 5.29 9.89 9.7 3.6 7.43 10.9 8.93 10.2 11 10.5 11.2 10.6 7.15 8.76 10.1 3.89 3.32 11.5 9.78 8.35 9.36 3.2 8.14 5.36 4.98 9.71 8.12 7.38 8.87 9.23 10.3 9.62 8.65 9.19 8.46 2.71 10.3 10.5 12.1 9.67 9.42 10.2 7.96 0 10.3 9.83 9.82 11 8.47 10.3 11 9.5 9.5 9.61 6.54 10.2 8.6 9.66 12.2 10 8.77 9.06 9.1 10.2 9.41 11 10.1 8.07 11.8 6.94 8.66 9.72 6.52 2.55 5.81 5.61 8.8 8.87 7.95 9.67 7.76 7.01 8.76 8.19 7.45 9.81 2.16 8.9 9.86 9.33 9.22 9.42 10.1 7.63 12 9.76 11.4 8.51 11.5 10.6 8.26 9.25 9.86 10.7 8.25 7.87 4.25 12 7.59 4.14 8.71 10.2 7.81 8.74 10.8 3.22 10.7 2.71 8.47 10.9 9.75 4.77 6.2 8.31 8.62 8.37 10.1 10.8 5.95 5.41 8.07 8.66 11.5 10.1 4.4 10.4 9.34 9.7 9.09 9.99 4.58 10.1 9.36 10.1 6.31 8.71 10.4 11 10.3 7.47 10.9 9.21 8.24 10.2 9.3 2.37 4.14 9.21 0 12 9.86 1.25 9.73 8.97 8.14 2.16 9.53 5.31 10.8 3.75 7.89 4.58 8.7 6.06 7.84 10.8 5.94 6.8 9.94 9.52 6.28 10.4 8.99 12.6 8.69 8.62 6.87 10.6 13.3 9.33 8.42 12.7 7.15 7.85 2.86 9.26 8.87 11 8.64 9.1 8.24 9.11 8.28 8.89 7.56 9.25 4.98 8.56 10.7 9.1 9.19 10.6 9.49 7.57 9.15 6.93 9.71 6.54 1.25 7.39 0 8.91 10.1 5.95 0 10.1 8.04 9.91 10.5 6.89 9.45 8.82 9.82 8.38 12.7 7.26 10.1 8.6 8.4 5.36 9.31 5.9 9.78 10 0 9.87 9.24 9.54 9.97 7.01 11.2 8.96 9.32 2.55 11.4 8.42 8.3 10.6 9.65 8.57 11.2 6.7 10.2 8.22 8.36 8.17 12.2 9.67 10.7 8.51 11.5 8.17 9.51 10.8 11 9.19 8.77 9.5 10.5 7.98 11.2 9.11 7.48 9.29 4.98 7.65 9.65 7.94 9.76 2.37 10.4 7.65 9.94 7.27 9.51 9.7 8.34 11 8.95 7.09 10.3 7.34 7.38 7.72 11 9.45 11.2 10.2 11.5 9.93 9.02 9.15 5.69 8.66 8.44 9.01 3.22 8.49 8.95 10.2 11.1 7.8 9.68 4.58 9.9 7.97 9.47 9.29 10 7.17 7.69 9.67 8.02 9.05 7.89 10.1 4.94 11.3 8.94 10.7 6.92 9.86 8.07 9.55 0.76 8.64 8.44 9.36 7.69 11.7 11.1 8.35 9.69 10.5 9.27 0 8.46 7.7 8.63 9.88 5.65 9.34 5.39 8.57 3.82 9.89 11.7 8.27 8.46 11.4 8.21 9.8 8.73 10.2 12.6 11.1 13.3 12.3 3.68 9.39 9 11.1 8.51 8.65 9.86 9.23 9.62 11.2 6.23 10.2 7.94 8.59 6.5 10.5 9.82 5.69 9.49 0 1.25 11.8 7.77 9.61 12.1 5.95 6.96 9.01 8.66 10.7 9.01 7.91 3.51 9.72 6.74 9.76 9.35 8.59 10 10.9 10.5 11.1 9.08 8.23 10.2 9.73 8.79 8.14 3.32 7.51 9.33 5.52 5.87 4.45 8.28 2.86 8.13 6.12 11.4 6.09 7.63 5.85 10 9.07 9.76 10.2 7.33 8.04 10.6 10.5 7.72 7.68 2.86 9.82 7.3 8.38 8.92 7.89 7.92 8.03 10.8 3.32 10.1 9.44 9.76 9.77 8.83 9.03 4.53 11.3 9.28 9.78 7.9 11 8.26 7.81 9.05 8.11 10.2 7.65 8.21 1.92 8.89 10.3 10.7 9.34 7.18 8.46 9.21 7.71 7.11 6.03 2.37 10.1 11.6 8.85 8.35 8.33 8.61 7.68 8.61 10.1 10.1 9.05 11.2 3.11 8.13 9.34 9.79 9.39 9.64 8.7 8.34 11.1 9.15 10.5 10 8.26 7.91 6.66 10.2 9.3 9.76 8.29 8.21 9.3 10.2 5.46 6.95 9.93 7.75 8.34 12.8 7.81 9.14 10.6 9.14 6.52 10.8 10.4 7.87 9.21 9.53 9.94 7.64 10.4 7.18 0 9.74 9.73 9.63 6.18 3.75 8.91 6.93 9.83 5.07 9.79 10.5 8.03 10.8 7.23 11.3 2.99 9.69 8.16 8.81 9.98 9.01 9.71 5.1 8.73 9.71 9.27 1.92 8.14 7.48 8.74 8.68 10.4 9.56 8.92 8.13 8.52 10.7 4.45 9.23 10.3 9.38 6.93 8.73 12.9 7.83 6.74 5.29 9.38 9.01 5.87 8.26 10.9 10.1 10.3 10.8 8.26 9.53 8.54 8.38 12.1 8.4 9.77 4.74 8.31 6.36 8.82 8.71 3.6 9.88 9.9 10.9 8.29 10.3 5.94 10.9 9.17 8.98 6.35 7.69 8.95 10.7 8.81 8.91 0 2.55 9.29 7.05 3.68 0.76 9.55 12.7 5.55 8.64 8.69 9.07 11.2 7.37 8.39 8.74 6.85 8.14 8.81 9.81 1.25 13.5 9.68 0 8.56 7.73 8.97 9.74 9.48 10.2 8.98 7.84 8.21 7.58 5.69 9.8 8.06 8.31 10.2 8.56 2.99 9.17 8.44 10.3 9.24 9.1 9.77 7.52 7.39 8.23 8.63 8.52 8.14 9.54 10.5 5.39 7.55 9.03 10.6 10.6 8.09 10.1 10.4 8.78 10.2 6.3 7.04 9.65 7.65 1.25 2.71 9.87 9.6 8.63 6.81 8.64 8.75 10.5 8.81 10.8 10.1 8.28 10.4 9.53 10.7 4.45 7.67 11.8 11.6 6.19 6.26 3.42 7.83 8.51 9.3 5.76 1.62 3.6 7.94 2.86 9.6 8.83 8.73 0 9.07 12.9 9.46 10.5 10.4 10.7 7.52 4.02 10.1 12.2 8.9 10.2 7.89 9.14 13.1 10.1 10.1 8.55 3.82 8.53 3.75 6.23 0 7.39 2.71 10.4 6.45 9.6 11.4 9.86 8.11 1.62 0.76 9.88 10.7 4.51 6.23 8.77 1.62 3.11 7.14 8.39 9.78 11.6 7.57 9.38 7.14 0.76 8.32 6.86 9.93 9.14 11.8 0 9.88 9.71 7.65 6.56 10.3 10.9 6.99 10.5 8.18 11.4 8.53 8.08 0.76 9.24 8.57 7.81 9.52 9.58 9.34 10.3 6.81 8.91 11.2 6.5 2.55 8.09 8.67 9.06 7.86 7.81 11.9 11.1 10.4 8.98 9.96 11.1 9.76 9.76 11.1 8.09 11.4 7.54 3.22 8.48 8.69 8.99 8.25 7.68 7.41 10.2 8.08 5.9 11.8 8 8.23 8.23 9.37 8.85 10.9 9.15 8.83 10.5 4.14 10.6 10.4 9.27 7.28 10.8 10.7 9.84 10.2 8.93 8.38 10.7 11.1 10.6 7.25 10.4 10.4 8.67 10.3 9.37 7.88 9.59 9.49 8.67 8.9 10.6 12.6 6.32 8.54 10.7 8.53 11.8 9.56 8.7 5.97 6.76 9.78 9.25 5.59 11.8 8.96 11.2 9.94 8.7 7.36 7.67 11.3 7.48 10.2 8.32 10.8 4.35 5.34 7.56 7.83 9.05 9.97 8.98 9.61 9.57 7.2 6.45 9.07 9.33 9.35 7.36 9.96 11.6 9.07 6.98 6.42 8.87 9.91 11.8 10.6 9.78 12.1 8.9 10.3 8.04 9.36 8.39 10.5 12 10.5 7.19 9.71 9.62 10.8 3.68 11.2 10.8 7.93 7.51 11.6 8.91 7.65 9.7 10.3 6.85 9.28 10.3 7.73 12 9.29 10.8 10.8 9.08 6.05 9.11 8.87 9.64 7.94 8.99 8.62 9.67 9.02 8.81 8.11 8.17 8.25 7.61 7.79 9.34 7.56 7.69 9.57 8.76 7.06 7.18 8.91 7.6 8.58 2.55 9.78 11.3 2.55 9.58 7.61 7 7.55 6.06 9.34 6.31 9.78 1.25 8.05 9.63 9.99 4.49 10.3 10.8 0 9.73 9.36 8.09 10.8 9.84 9.67 10 9.93 11.8 10.4 7.45 9.42 9.57 10.8 8.54 10.4 5.61 9.64 11.7 8.27 8.36 8.3 12 8.96 9.56 10.7 3.83 10.3 7.22 8.66 8.31 10.4 5.61 9.92 9.11 7.99 8.74 8.59 0.76 8.54 8.76 11 10.1 7.22 8.54 4.53 10.3 8 6.59 0.76 13.2 10.2 9.18 10.5 8.84 11.3 9.56 9.69 5.16 8.57 11.2 10.5 7.4 9.92 7.6 11.9 7.04 11 9.41 8.61 9.98 4.94 12 8.41 4.2 9.52 1.92 9.81 3.6 11.4 9.59 8.47 7.36 10.4 9.27 8.37 1.62 9.36 10.1 9.99 9.6 10.2 11.7 8.08 11.8 9.98 10.3 8.31 7.84 2.37 7.39 0 11.2 9.07 10.9 10.4 8.07 8.69 10.3 11.7 9.6 10.2 10.1 1.25 7.89 8.22 7.01 10.1 4.27 3.22 7.47 8.9 5.71 7.6 5.13 6.2 7.12 6.34 5.42 5.01 7.34 6.53 10.3 6.62 4.4 5.6 9.16 5.1 9.82 2.86 6.79 6.9 5.95 6.49 7.91 8.02 6.42 5.97 5.84 8.92 5.04 6.37 5.52 9.06 3.82 8.14 8.26 0 10.4 2.71 5.04 12.6 7.06 7.92 10.6 2.99 10.3 10.7 1.92 0 9.83 8.77 11.2 1.62 3.6 10.7 4.58 11.2 10.2 5.31 10.9 9.18 5.78 9.08 11.3 6.73 9.05 7.46 11.1 10.3 9.74 2.55 0 10.8 10.4 10.5 9.39 8.23 9.12 8.03 7.13 11.4 5.42 0 0 10.4 4.91 9.12 4.14 8.85 11.3 4.84 10 5.87 1.62 14.7 3.89 10.9 5.36 8.71 6.02 9.5 9.6 10.2 10.7 6.65 5.73 10.3 9.1 13.4 8.87 8.27 3.68 1.92 10.6 1.92 7.91 0 9.71 4.94 11.5 9.91 14.5 8.57 0 11.3 9.61 10.9 9.96 11.5 8.51 8.89 9.41 9.26 11.2 10.7 9.68 7.74 2.86 10.3 10.7 10.9 11.1 10.2 9.97 13.5 11.4 8.03 12 10.6 11.7 6.3 10.6 8.14 3.42 10.8 10.8 6.32 8.84 12.1 9.25 6 9.02 10.6 11.4 5.57 8.86 5.46 9.44 9.49 6.63 7.62 12.1 8.1 10.5 6.26 7.56 11 10.5 10.5 10.8 11.3 8.93 11.1 13.7 2.99 9.57 9.2 10.1 8.68 9.93 8.78 8.85 8.66 10.2 9.88 11 11.6 10.1 10.6 5.75 7.88 9.46 9.71 9.47 1.92 7.27 5.07 7.9 10.1 10.7 7.71 9.5 2.86 5.95 8.4 8.53 3.11 7.29 9.85 8.24 8.75 10.8 9.2 10.1 7.96 10.8 9.64 9.63 10.6 12.1 10.1 5.67 2.86 8.4 8.91 8.32 12 7.21 10.8 3.97 9.44 11.2 8.64 10.6 10.2 8.02 1.62 10.1 8.9 8.35 10.2 10.4 8.87 10.8 9.36 4.53 9.99 9.36 3.42 11.2 10.4 12 6.72 10.5 7.98 8.32 11.4 5.73 11.3 1.25 10.3 4.08 8.78 7.43 9.24 11.1 2.71 8.13 6.3 10.8 3.82 8.31 8.71 10.3 10.3 11 5.75 8.71 4.74 9.04 6.03 9.53 7.76 8.95 5.1 9.12 9.25 10.1 10.9 10.4 9.43 11.8 7.14 11.3 10.9 11.5 8.24 10 8.59 11 8.61 9 6.14 12.4 9.99 2.16 8.72 0 9.3 7.66 9.7 4.45 7.12 5.21 9.92 9.94 9.82 12.2 9.59 13.1 11.5 9.26 8.55 10.1 10.2 11.2 10.2 10.8 10.3 8.42 10.3 11.4 12.3 5.48 8.77 6.64 9.77 10.1 11.6 7.97 8.64 10.5 8.75 7.29 8.81 7.46 3.6 8.35 7.35 8.6 11.7 14.3 11 10.8 8.74 5.57 9.38 9.02 7.1 5.26 12.7 10.4 11 3.96 3.32 12 10.4 11 3.68 7.43 9.66 11.3 2.72 6.81 8.63 7.26 6.4 8.69 2.16 9.2 8.63 4.74 10.1 10.5 9.62 6.37 4.81 6.32 8.94 8.39 0 8.89 9.62 9.2 0 6.5 6.58 9.8 8.53 11.3 8.89 10.3 7.34 9.88 9.15 7.85 9.21 4.45 12.1 10.8 10.8 7.29 4.02 5.94 7.25 2.55 9.45 10.2 10.7 9.63 2.71 11.9 9.55 5.71 7.04 4.08 7.43 9.66 0.76 6.15 11.4 10.4 3.11 10.3 10.1 7.96 11.3 3.51 6.43 8.54 10.8 7.92 7.53 5.87 9.22 11.2 8.76 6.14 11.2 9.63 8.5 0 11.2 4.08 10.5 3.68 6.06 7.54 10.5 9.49 12 9.49 8 9.94 10.5 8.47 9.45 7.85 11.7 5.75 8.83 8.18 7.73 6.45 4.45 2.55 2.71 8.47 10.5 7.64 11.3 11.4 10.5 12 6.22 5.73 6.58 8.9 12.1 4.62 8.89 9.59 11.3 8.59 7.11 5.63 9.92 7.63 9.14 10.3 0 9.28 6.12 7.31 6.06 10.6 9.58 11.8 6.5 9.47 4.14 7.59 8.01 5.5 14.1 8.66 6.02 9.22 8.59 0.76 4.53 8.06 0 7.79 9.34 1.62 10.1 10.2 9.02 10.1 9.08 9.95 10 10.1 8.78 8.77 7.8 4.2 9.12 9.79 6.02 10.2 9.45 3.42 7.48 10.4 8.72 10.1 9.07 9.6 8.87 0 7.53 9.13 12.1 9.25 8.41 8.47 8.37 0 13.1 11.5 7.24 9.78 8.15 6.89 7.56 3.96 10.3 8.98 8.2 13.1 10.9 6.66 8.53 7.8 11.6 6.57 11 11.2 10.3 10.9 8.81 8.71 9.3 9.37 9.14 9.74 10.7 7.77 9.3 9.35 10.4 11 8.16 7.49 7.82 0 9.1 6.02 8.68 7.69 7.06 9.65 8.94 8.12 6.67 10.4 5.8 2.16 10.1 9.6 8.08 8.9 11 7.79 10.4 7.71 9.29 9.13 5.39 9.14 5.13 7.77 7.34 7.44 1.25 8.85 12.4 8.17 5.18 8.81 9.85 9.07 4.91 6.14 7.7 0.76 9.96 7.36 9.67 9.39 8.3 9.45 6.72 8.18 9.89 9.55 10.6 9.12 8.23 9.87 8.33 10.3 10.4 10.3 9.25 10 9.86 3.6 4.02 8.03 9.33 9.49 4.77 11.2 0 5.73 8.04 7.71 10.9 9.72 6.47 2.71 9.11 9.86 6.49 8.06 6.97 14.1 7.72 0.76 11.3 10.4 9.06 1.25 8.16 3.68 6.93 4.91 5.67 11.1 8.27 2.16 9.67 10 8.46 11.2 8.36 9.94 9.74 9.05 11 12.4 9.69 10.2 8.01 9.8 10.7 9.74 8.84 8.25 9.75 10.9 8.9 10.3 12.2 11.8 10.4 12.8 8.11 5.65 9.89 9.43 8.88 9.8 11.1 10.1 15.9 4.84 9.97 10.1 10.9 8.62 8.34 9.75 7.48 6.06 8.41 7.04 6.22 9.64 10.1 9.62 8.34 5.94 11.2 11.1 11.3 9.14 1.92 9.68 8.72 10.8 10.7 10.9 12.5 9.02 7.94 4.94 10.2 2.71 0 12.8 6.92 9.14 11.6 9.81 12.1 7.87 8.66 7.67 11.6 10.4 12.2 11 11.9 8.56 10.7 8.92 7.07 9.36 10.9 8.51 11 11.4 9.3 9.58 8.41 9.07 12 11.4 13.1 6.97 8.13 5.97 7.71 6.71 7.52 11.5 8.67 10.3 9.93 10.8 13.5 12.1 10.9 9.65 11.7 11.1 10.4 10.1 11 9.32 9.38 8.82 9.83 2.55 9.27 7.43 8.84 10.2 8 9.54 8.18 9.49 6.75 4.35 5.78 9.5 8.24 7.11 10.4 8.06 0.76 8.34 8.56 11.7 10.9 9.11 10.4 10.2 9.88 12 8.09 6.72 2.16 8.84 8.95 10.5 1.92 5.39 10.1 9.98 2.37 9 10.3 10.6 12.4 2.16 5.24 11.4 9.27 9.17 8.79 7.07 2.16 0 9.25 13 1.62 4.53 2.86 11.4 10.6 0 4.43 9.08 3.89 10.2 8.66 5.65 5.59 11 8.49 7.2 12 9.97 7.66 6.3 11.9 8.6 10.2 9.35 9.4 8.91 7.64 10.3 10.7 3.43 8.89 10.9 5.18 6.81 0 9.93 6.81 11.8 12.3 10.1 15.7 11.8 9.35 2.99 7.34 6.79 4.58 10.2 6.09 10.2 8.92 9.42 5.57 8.9 2.99 9.76 11.3 9.9 9.6 9.65 1.62 0 7.28 9.19 2.16 8.02 7.58 10.1 6.02 7.48 10 0 8.95 2.99 0 8.51 12.9 6.12 10.2 10.2 14.4 4.25 10.8 7.2 10.6 7.29 9.34 8.09 9.2 9.17 8.53 4.35 9.6 8.45 11.8 9.77 11.3 7.45 9.88 9.03 10.6 9.06 9.43 10.6 10.9 4.02 8.1 10.8 5.9 7.02 8.9 3.11 9.42 12.9 0 0.76 7.45 10.6 7.23 9.98 9.56 10.1 10.8 8.04 10.9 5.52 9.91 10.5 5.16 8.71 7.96 10.6 4.88 7.12 8.93 7.24 0 10.5 9.66 7.14 9.49 16.8 16 15.4 13.6 11.9 10.6 16.5 0 16.2 12.4 15.1 14.3 15.7 14.9 15.3 13.1 15.4 12.6 15.5 3.96 13.4 12.9 9.8 14 13.8 13.9 15.8 14.9 15.2 15 14.9 15.2 14 14.1 11.4 15.2 15.3 13.3 9.54 9.38 14.9 6.63 15.2 15.8 14.7 10.7 9.66 13 12.6 14.6 15.8 13.7 15.8 3.92 1.25 4.94 6.38 9.23 15.1 0 1.62 16.4 10 10.8 12.1 9.82 9.94 14 15.8 15.2 14.1 15.6 15 14.1 14.6 13.8 15.1 14.9 14.4 10.8 16.3 15.8 14.7 13.6 14.7 15.1 14.1 10.2 11.2 14.1 10.4 13.3 7.38 9.78 12.5 10.4 10.9 9.87 9.71 0 7.74 10.3 9.51 7.66 7.57 12.2 10.4 11.1 5.71 9.71 3.42 3.76 1.92 10.5 5.1 0.76 8.59 0 11 3.32 5.39 9.68 12 0 8.17 4.4 4.84 9.09 10.3 11.1 7.65 9.83 8.96 11.3 9.93 11.6 13.3 9.26 7.92 10.8 9.27 11.4 4.84 10.1 9.37 9.84 13.3 5.42 8.39 8.47 6.38 4.66 4.45 2.99 2.16 14.2 6.16 2.55 6.97 3.32 9.62 4.81 7.44 7.27 8.25 11 1.25 4.53 8.08 6.14 6.24 1.25 6.66 9.26 0.76 6.97 7.23 7.37 6.03 1.92 0 8.38 1.25 4.4 5.57 1.92 2.71 10.6 8.69 11.3 7.32 2.37 11.3 11.5 11.8 9.27 11.1 10 7.96 8.97 9.97 11.7 10.1 9.93 9.33 8.62 6.94 9.23 8.88 6.72 8.7 9.87 10.9 9.78 7.99 7.69 10.4 5.94 3.96 8.12 9.63 10.7 10.8 8.23 8.02 2.55 0 9.59 7.7 8.31 8.62 7.2 7.37 8.66 9.69 7.41 8.41 10.8 7.28 11 5.29 10.4 3.11 9.8 4.62 8.41 7.88 7.42 9.21 6.74 11.6 7.55 2.55 8.79 6.35 8.9 9.59 9.9 8.76 3.42 12.1 5.01 4.98 3.28 7.67 1.25 5.69 6.37 12.9 3.42 14.1 8.29 3.68 6.65 7.23 4.58 10.9 7.24 8.1 6.68 3.42 6.59 6 10.7 10.3 11.9 9.31 9.35 11.1 7.74 9.83 7.59 4.7 9.09 5.29 5.52 9.84 2.86 10.2 7.09 8.92 1.62 7.62 3.6 13.8 9.71 4.08 6.3 7.4 8.17 11.8 8.51 8.79 9.58 6.82 7.35 5.97 4.98 4.3 8.24 6.02 9.38 13.2 0 9.35 8.05 9.28 11.3 11.9 9.89 9.19 9.33 10.8 8.66 11.2 5.73 9.36 9.63 9.59 9.71 3.89 10.8 9.3 8.99 12.6 1.25 0 6.67 0 12.4 2.16 11.5 12.4 4.4 7.69 7.03 5.73 9.43 7.58 9.59 8.94 9.88 10.7 3.32 5.21 5.13 5.75 11.6 3.82 3.51 11.9 10.7 8.67 10.1 11.6 8.81 6.31 11.1 6.5 6.6 9.36 9.99 9.25 9.11 6.52 9.36 6.64 5.46 1.62 3.82 5.52 11.5 9.84 9.65 5.1 9.8 10.4 0.76 1.92 10.3 8.66 8.95 2.37 0.76 10 7.61 4.4 7.61 4.7 6.08 5.97 0 0.76 5.67 8.94 2.16 10.9 9.08 5.52 9.95 8.24 6.54 7.32 4.77 7.75 7.99 4.77 7.42 7.37 8.17 6.67 0 5.5 5.24 9.29 4.66 10.9 9.61 7.13 7.01 7.4 9.01 10.2 9.57 9.68 8.63 8.67 9.91 9.3 9.36 8.05 10.6 8.54 3.89 8.02 0 1.92 4.35 5.87 4.7 5.26 9.94 3.32 5.04 4.14 9.52 2.55 7.13 8.52 1.62 11.2 1.25 5.24 0 9.05 10.1 5.87 3.51 10.3 3.01 1.62 4.98 0 9.67 9.68 7.45 1.25 3.04 2.71 2.16 11.6 3.32 5.2 5.16 6.15 0 2.99 4.84 6.63 3.75 4.77 7.66 9.16 11.9 1.92 9.8 3.6 2.99 3.42 8.54 0 8.33 1.92 10.7 2.16 10.1 6.81 6.85 10.5 0 3.75 8.51 10.9 8.93 8.22 10 0 1.62 1.62 0.76 4.62 3.6 9.38 8.32 6.38 7.35 9.67 10.2 13.4 7.91 7.45 8.49 10.5 2.86 2.86 11.7 11.2 9.13 11 10.4 11.1 9.03 6.54 8.7 11.3 10.7 12.3 10.8 9.55 9.18 6.87 9.68 11.4 9.03 8.46 11.7 8.85 10.8 11.4 8.47 9.85 8.55 8.98 9.78 7.79 10.9 9.34 9.51 8.56 7.7 10 6.64 2.37 10.5 11.4 8.28 7.14 10.2 8.21 8.79 3.22 10.8 13.1 9.16 5.44 10.5 10 6.24 9.21 8.01 4.81 8.61 8.54 10.9 9.91 8.78 8.73 9.24 8.68 11.5 3.75 10.9 10.6 9.81 9.86 10.3 12 9.65 13.6 10.8 8.65 7.08 7.7 8.89 7.53 8.81 9.31 8.25 3.52 4.45 7.18 8.26 7.17 8.54 4.14 9 6.64 8.12 6.48 10.1 0.76 10.5 9.11 7.36 8.24 9.36 11.2 2.86 9.7 6.71 10.9 7.65 7.96 10.3 9.84 10.9 0 10.1 8.81 8.98 8.75 9.62 11.4 11.8 9.35 9.95 8.95 9.13 9.46 9.88 10.1 1.62 5.97 12.3 9.66 9.63 8.03 5.29 8.3 4.2 10.2 8.35 9.03 4.14 5.16 8.94 6.93 11.1 8.06 9.72 5.26 8.75 6.12 6.41 1.25 8.79 5.48 8.53 9.29 7.92 10.7 9.77 10.4 10.1 10.1 4.53 12.8 13.1 8.14 9.25 10.1 5.41 10.8 9.9 11.7 10.5 10.6 4.25 9.29 5.39 5.78 8.06 7.85 11.6 2.37 11.1 10.4 4.35 5.73 9.06 8.71 10.7 9.97 8.6 8.62 8.78 6.38 10.2 11.3 10.5 8.08 5.97 11.8 0 1.62 4.94 0 8.84 0 7.01 5.65 8.27 2.37 6.54 5.46 3.82 5.16 1.62 4.53 5.21 7.89 7.89 3.11 6.58 3.11 1.92 0 7.74 11.3 9.1 7.57 10.8 3.82 9.63 5.21 6.51 0.76 10.3 6.16 5.07 3.11 3.68 8.66 1.62 6.19 4.66 3.11 9.96 2.37 10.5 10.4 0 1.92 3.42 9.09 7.22 3.11 7.98 1.92 4.02 7.26 0 7.24 1.62 8.42 2.55 3.42 9.97 4.66 5.55 10 3.11 3.68 0.76 6.71 2.86 11.8 2.16 6.45 9.58 7.68 10.5 10.3 7.91 10.2 0 1.62 10.3 9.69 9.45 11.2 9.03 10.5 0.76 6.11 2.99 9.16 4.62 8.26 11 6.4 8.1 11.7 11.1 11.2 12.1 5.26 8.08 10.4 10.5 9.67 8.53 10.7 9.08 8.49 11.2 5.24 7.6 3.11 12.3 5.94 10.4 9.89 9.46 9.59 6.49 8.34 8.74 2.16 5.31 4.35 8.66 11 9.65 11.5 9.96 11.5 7.71 7.82 8.06 11.6 1.92 10.3 11.2 9.58 9.02 7.86 14.8 11.4 12 8.46 6.06 4.4 7.26 9.01 8.56 7.27 10.6 6.73 9.02 8.56 12.6 11 8.77 11.8 9.75 9.08 10 9.55 12 11.4 10.2 9.64 9.43 12 10.9 9.76 6.66 11.2 10.5 10.1 10 0.76 11.8 2.99 11.6 9.71 9.8 9.15 12.3 12.1 11.3 10.3 9.96 11.4 9.54 3.75 11.6 3.42 4.98 10.7 11.3 9.29 11 10.6 8.71 9.75 8.08 11.7 5.31 14.4 9.06 9.89 8.4 6 9.32 1.25 12 7.05 13 10.4 9.23 8.88 12.7 1.62 6.33 13 12.2 10.7 10.2 8.98 4.25 11.1 7.94 12.3 12.1 10.8 10.9 12.6 12.1 9.11 10.4 8.59 9.95 11.1 10.3 10.7 12 8.57 11.2 11.2 9.94 9.9 11.9 12.7 12.6 11.8 11.9 6.06 4.58 0 10.2 9.8 12.6 12.1 5.55 12.4 1.25 11.6 10.3 11.7 5.82 8.86 10.6 3.42 0 2.37 0 1.25 1.92 0 3.67 10.1 3.31 0 1.92 3.94 12.5 11.5 7.92 9.19 0 6.28 10.4 8.29 9.21 9.27 9.52 8.16 5.92 5.21 8.57 10.6 2.16 1.62 7.71 5.55 9.42 8.73 10.4 9.78 10.7 9.39 9.23 7.82 8.52 2.71 13.5 10.6 10.6 9.86 11.6 5.8 11.4 8.96 10.2 8.44 13.6 10.7 10.2 8.51 9.6 10.6 8.18 10.6 9.47 3.11 10.2 4.88 3.42 6.94 11.7 5.76 9.41 0 5.69 0 10.9 8.58 7.38 11.8 7.5 9.7 9.65 8.65 7.86 13.5 6.88 10.7 11.9 9.13 10.7 9.58 9.44 8.64 6.95 8.55 5.39 1.25 12.3 13.5 10.9 9.77 11.9 10.1 8.83 11 9.41 3.51 8.09 10.6 9.66 10.5 9.01 11.6 8.02 8.82 4.49 1.92 5.41 8.13 10.5 8.92 10.8 0 4.7 6.44 9.24 0.76 0 10.5 7.18 10.1 9.5 12.2 3.89 10.9 8.07 9.53 8.66 9.17 10.3 2.99 12.6 7.57 8.95 10.2 10 10.5 0.76 8.47 10.7 7.23 12 0.76 1.25 10.3 8.14 9.64 6.65 10.5 10.2 7.83 0 12.5 9.71 6.35 10.1 5.41 3.11 10.3 14.2 8.32 6.69 9.05 0 8.95 8.76 1.92 10.1 6.03 9.36 9.68 8.51 9.78 9.27 10.7 10.2 9.11 10.6 10.8 7.78 2.55 9.86 3.75 6.26 10.5 9.18 10.2 11 6.05 10.2 10.6 4.84 10.4 8.93 8.99 11 5.1 12.5 5.21 8.07 12.3 11.4 9.32 12.6 9.28 2.55 10.8 1.25 10.2 10.6 0.76 10.6 9.54 10.8 10.5 7.78 8.19 11.8 12.7 11.8 3.11 10.3 11.8 9.07 9.14 12.3 3.11 10.6 9.43 11.2 9.41 5.97 12.8 12.1 6.05 7.56 7.1 7.44 17 12 7.32 7.24 9.93 9.3 9.79 11.6 9.48 10.5 8.47 9.82 14.7 10.7 8.13 7.1 2.37 0 9.78 10 10.4 10.9 4.66 10.4 9.36 2.37 2.16 1.62 1.25 10.7 0 12.1 8.42 12.2 10.8 5.95 2.71 10.8 11.7 9.11 10.4 9.89 9.88 12.5 5.78 7.13 13.8 7.93 11 1.92 12.6 12.1 11.7 8.63 11.7 12.8 9.13 9.04 11.3 9.44 15.2 0 12.1 7.63 9.97 13.6 8.26 9.9 7.61 8.63 8.36 8.19 12.1 0 13.2 10.5 9.28 6.51 0.76 6.81 1.92 0.76 6.16 9.02 11 0.76 4.3 6.34 10.5 10.4 10.4 1.25 10.3 1.62 10.3 10.7 10.1 8.77 7.8 10.2 10.4 9.81 10.7 13.6 7.98 7.5 9.22 7.12 9.06 8.9 7.68 9.34 5.5 3.96 4.7 7.94 10.1 8.23 10.4 4.66 5.48 5.8 6.8 7.14 1.62 7.72 3.92 1.25 8.68 9.19 9.5 5.16 8.86 0 2.86 7.87 11.4 7.45 7.32 2.16 6.87 7 7.16 2.55 9.5 8.39 7.84 8.77 6.31 3.75 5.99 8.87 7.34 5.26 12.8 3.32 8.05 0 4.35 0 5.07 5.1 8.84 5.52 9.29 1.25 1.92 9.84 5.1 9.04 6.87 6.03 5.48 8.93 3.13 1.25 5.01 6.63 5.57 6.36 7.96 4.88 4.7 1.25 10.2 6.08 4.66 0 6.84 12.1 8.71 4.81 9.19 1.62 5.71 10.9 4.88 7.37 1.62 9.42 10.5 2.37 1.62 5.69 8.65 7.68 9.03 5.31 4.77 0.76 8.19 8.15 4.74 11 3.75 9.32 4.02 7.88 8.16 7.42 0.76 9.29 5.52 10.4 4.94 13.7 0 13.8 14.5 13.7 0 9.53 10 10 9.07 10.6 12.1 10.1 9.23 10.4 10.9 10.7 10.3 3.42 10.9 11.4 11.5 9.49 11 10.1 11.1 9.73 11.9 7.14 7.22 2.37 3.82 11.6 5.36 9.89 5.44 11.2 8.03 12.1 10.2 1.92 8.32 9.55 11.7 9.42 9.89 10.8 6.43 1.92 11.9 9.57 13.1 11.3 10.9 10.2 12 9.74 9.64 9.34 11.1 9.15 3.68 10.3 12.1 10.8 8.99 10.7 10.3 7.34 11.4 9.66 8.68 11.4 12.9 12.2 10.6 11 7.52 10.2 10.4 6.81 3.75 10.1 0 12.7 13.3 10.4 5.16 6.44 5.01 7.33 7.93 7.52 8.1 5.41 1.25 3.75 11.3 10.7 7.95 10 12.3 10.6 9.24 8.4 11.9 10.4 10.1 11 9.92 6.98 1.92 3.68 12.8 2.99 0 10.1 3.11 5.67 8.35 5.76 4.14 0 9.24 8.29 2.37 12.7 2.99 2.16 0 7.1 8.77 10.2 7.39 9.88 3.22 12.1 9.65 6.42 7.76 4.94 8.9 12.7 7.43 10.2 10.3 12 10.7 12.8 12 10.5 14.6 7.28 12.5 13.2 7.64 12.3 8.22 9.72 9.95 7.13 9.1 10.8 5.71 9.37 5.41 13.4 7.6 8.87 8.25 7.41 8.6 7.48 7.26 5.44 7.2 8.53 10.4 10.2 7.13 10.4 7.46 8.98 5.94 9.55 10.3 9.79 6.53 11 9.42 8.97 8.75 9.39 9.33 8.27 6.04 4.4 2.99 0.76 6.99 7.78 8.95 8.53 8.52 10.2 7.68 2.64 9.21 4.7 6.7 7.84 8.95 0.76 6.03 6.71 7.72 4.2 11.7 6.28 1.62 3.68 2.99 2.16 1.62 3.42 7.5 9.46 7.99 8.57 8.58 7.48 8.28 6.78 7.53 8.49 5.71 6.9 9.5 8.65 10.7 9.16 11.7 10.3 10.6 8.99 6.14 4.94 7.88 0.76 9.91 6.08 10.5 7.42 7.37 1.92 7.19 5.92 8.18 8.56 7.71 7.96 1.25 8.56 10 9.15 7.72 8.74 7.88 10.8 7.57 8.14 5.24 7.97 11.4 4.4 8.31 8.78 5.36 2.71 11.7 12 7.21 8.11 6.54 8.79 0 8.94 7.85 8.21 7.37 7.14 8.21 6.91 1.25 3.11 9.25 7.95 7.51 5.87 11.1 8.48 10.1 12.9 9.45 10.4 5.89 11.6 5.07 13.8 8.68 10.8 6.9 7.26 13.5 11 9.12 9.15 11.1 10.8 10.8 2.99 4.25 3.96 8.72 11.6 8.06 4.91 9.03 9.7 9.76 8.76 10 9.93 11.9 12.6 7.78 6.66 10.2 4.66 9.74 10.4 7.1 6.24 8.95 10.9 9.02 5.78 8.56 0 5.8 7.26 10.6 4.7 9.94 11.2 7.59 10.4 8.3 7.77 11 6.81 9.54 2.55 9.65 11.5 8.75 7.81 8.75 11.2 7.61 3.32 14.4 8.05 7.32 6.9 8.72 10.3 8.52 9.28 10.8 6.74 9.62 9.86 7.69 10.4 9.53 10.8 12.2 7.96 9.72 6.46 9.2 8.42 10.7 9.19 9.35 6.49 8.68 7.71 11.9 6.67 6.55 8.81 6.97 10.2 9.77 9.88 11.8 10.8 9.76 7.57 9.89 9.7 8.12 6.65 4.49 9.78 9.98 9.11 13.3 10.3 9.88 11.4 11.2 8.88 6.88 8.7 8.91 11.7 10.9 6.16 8.87 10.9 12.6 8.81 8.22 5.87 5.76 8.94 6.18 4.6 7.58 9.24 7.61 7.95 10.2 8.28 13.7 7.09 7.55 0 2.04 9.23 12.3 10.4 10.3 6.2 4.02 9.81 8.61 7.65 8.42 9.66 9.18 9.64 8.67 9.26 2.16 10.5 12.7 8.32 9.84 12.6 8.32 7.73 7.61 4.01 10.2 3.42 2.16 5.36 10.1 5.73 10.7 8.3 6.11 4.7 2.99 4.94 5.67 1.92 9.2 7.45 2.86 4.14 7.79 10.3 8.21 8.78 3.68 10.1 7.75 9.68 4.3 1.92 5.24 1.62 10.2 7.85 6.51 7.59 9.2 11.2 8.43 8.48 8.63 11.1 10.2 9.8 7.23 8.78 11 9.17 10.8 9.41 9.47 9.61 7.07 6.96 8.72 11.2 12.7 5.36 7.37 4.91 6.77 6.54 7.79 7.63 3.75 5.61 8.21 8.95 3.42 8.14 7.91 5.71 7.16 4.94 8.42 6.43 9.08 5.16 8.31 8.47 7.54 7.39 7.29 8.41 9.08 6.68 9.02 9.13 4.53 9.64 9.35 8.25 6.35 8.41 8.53 8.3 8.21 9.56 4.84 9.04 9.09 8.52 10.5 8.51 7.34 9.96 10.3 10.1 6.5 9.34 5.99 13.1 9.34 9.42 8.42 4.3 8.31 8.32 8.55 10.7 8.11 8.68 7.79 10 12.9 7.79 8.92 9.83 7.94 8.4 6.27 6 6.2 9.1 8.72 9.25 9.8 9.95 6.87 10.7 9.49 11 8.11 7.34 8.18 9.61 10.3 12.4 9.57 9.39 3.22 7.73 9.73 7.61 8.88 7.79 8.04 8.55 9.1 5.75 6.65 9.71 7.5 9.78 7.62 4.39 7.39 8.16 8.12 4.14 1.25 9.54 2.99 9.76 9.94 8.36 8.78 6.78 5.34 7.63 6.5 8.33 12.2 10.5 9.27 8.33 10.2 5.57 8.21 7.07 7.96 8.74 8.33 7.45 2.71 0.76 7.09 10.4 7.76 5.65 10.6 11.1 8.51 8.84 7.52 9.2 8.47 7.54 7.77 7.21 2.55 8.44 7.61 7.6 9.82 7.11 10.7 9.01 11.3 5.5 7.56 4.3 6.59 9.35 6.2 10.1 4.3 9.18 6.27 6.44 4.88 8.45 8.84 8.32 6.08 8.45 7.7 9.1 2.71 9.36 11 5.16 9.13 8.22 3.11 7.42 3.89 8.31 7 9.22 6.16 8.57 1.92 7.95 3.32 0.76 6.72 9.15 1.25 8.21 0 6.87 7.64 4.25 2.71 5.9 8.85 8.34 11 3.68 8.23 11.5 6.52 9.75 10 10.5 10.7 5.76 9.03 10.3 6.24 9.2 9.12 9.1 7.08 11.8 8.79 8.03 10.7 10.2 10.3 8.29 8.36 8.83 9.19 6.24 11.3 9.84 10 7.58 7.35 0.76 9.75 8.81 7.33 6.24 8.91 7.85 11.5 6.53 1.62 7.65 8.25 3.96 7.14 8.19 7.32 0.76 12 0.76 9.24 3.11 5.95 11.6 10.3 2.37 8.86 8.47 4.93 9.32 3.42 10.1 9.56 2.99 10.1 8.77 8.33 6.16 9.77 7.32 7.2 8.9 7.47 8.9 9.02 10 5.69 8.23 12.9 8.25 8.64 8.39 4.25 6.7 5.82 6.98 9.4 8.1 1.25 10.6 3.42 12.6 6.81 6.27 9.07 10.4 7.64 9.23 7.7 4.49 10.5 9.63 10.9 8.9 8.21 8.16 8.58 7.45 10.6 8.5 9.84 9.99 8.66 8.28 8.19 4.66 3.32 0 4.77 7.26 9.32 4.53 8.38 2.21 6 4.53 1.25 8.97 11 12.6 6.2 9.03 7.14 3.32 6.7 2.37 9.53 7.64 7.39 5.52 6.49 9.02 9.37 6.28 10.6 9.73 9.23 9.74 9.23 9.48 10.5 8.99 9.09 10.3 12.1 10.1 8.14 9.51 6.44 8.49 8.85 7.01 9.76 5.97 5.55 9.86 6.27 8.8 8.11 11.9 10.6 11.2 8.44 9.23 8.44 2.86 9.82 9.27 8.55 8.52 10.9 9.08 11.3 8.51 9.3 8.66 7.56 7.41 11.3 8.12 7.47 8.88 10.7 8.63 8.86 10.7 10.3 4.02 11.7 10.6 7.82 8.27 5.13 9.47 9.88 8.86 5.82 8.25 7.72 6.85 10.8 8.78 8.8 9.71 9.3 4.08 11.7 9.39 3.96 8.29 11.4 8.95 7.45 8.2 10.8 9.41 6.23 9.3 12.7 7.18 9.73 6.95 8.21 9.02 9.55 6.84 7.42 6.51 9.83 4.25 8 9.06 5.07 1.62 3.22 11.5 7.72 3.68 11.5 8.31 1.25 8.73 7.13 11.5 7.83 8.05 10.7 9.59 0.76 10.6 5.07 9.6 5.61 5.31 12.2 10 12.7 9.55 4.62 9.71 11.3 7.02 9.98 4.35 6 9.03 8.38 8.46 10.8 9.32 10.2 3.75 13.5 3.51 0.76 5.34 8.19 8.21 8.2 9.47 6.12 5.75 4.49 2.16 9.31 11.4 8.5 6.46 9.12 9.43 7.58 5.89 9.79 6.97 10.9 12.5 10.3 12.4 9.22 13.1 8.72 9.03 8.95 8.89 8.2 7.6 11.1 10.6 9.25 7.34 8.54 2.16 11.4 10.2 9.35 12.4 9.37 9.92 5.46 5.85 7.66 3.08 11.9 9.63 8.82 6.65 0.76 2.86 10.7 12.9 8.44 3.22 2.16 8.9 5.73 10.3 9.19 11.4 11.6 11.7 14.4 0.76 6.2 5.84 4.45 4.25 11.8 12.1 9.71 5.48 5.41 9.76 11.6 10.1 9.66 2.71 5.85 3.11 2.99 11.8 4.35 8.99 9.81 7.84 11.7 9.49 4.98 6.99 10 8.07 8.99 7.63 9.86 9.85 10.2 6.41 9.09 9.79 9.5 12 9.15 9.06 13.1 0 7.96 8.09 8.43 9.4 9.54 9.32 8.89 5.34 11 7.05 6.79 11.2 10.8 14.8 10.2 9.23 10 9.2 8.66 9.32 9.66 4.14 1.62 11 11 11.6 8 8.09 9.59 5.82 7.71 11.7 5.74 9.82 12.2 11.6 11.7 11.8 10.2 6.46 1.25 10.2 2.16 9.51 5.94 5.01 11.6 8.91 5.5 8.45 8.63 8.66 5.26 7.31 5.94 9.74 6.23 9.15 8.66 9.17 9.36 8.18 7.51 10.1 2.71 8.48 7.49 9.99 10.3 7.58 9.92 9.51 13.1 9.78 8.26 8.07 11.3 10.3 9.09 0 9.23 10.3 3.53 10.2 9.47 8.12 9.88 2.16 6.08 7.07 10 9.32 0.76 10.2 10.9 7.91 11.3 14.2 8.63 10.8 6.52 10.1 8.47 1.25 10.3 8.96 10.6 9.72 12.1 8.35 10.7 11.9 10.2 11.1 11.3 10.6 6.54 12.9 9.76 6.19 9.97 8.31 9.11 9.55 0.76 9.67 0.76 11.6 11.3 7.1 6.16 9.03 2.37 11.5 11.3 11.4 9.75 5.75 12.2 9.01 8.98 9.01 10.9 8.27 7.31 7.04 12.4 5.18 9.41 12.1 10.7 9.62 6.26 3.96 1.25 9.08 4.77 1.92 0 12.6 5.61 12.8 4.14 9.22 7.7 7.36 3.11 1.25 4.3 7.1 0 5.84 8.17 6.41 10.3 10.9 10.6 9.26 8.07 4.14 0 6.83 9.99 9.05 0 7.58 7.96 8.44 8.59 7.95 9.64 4.66 8.34 7.43 9.04 1.62 8.31 8.61 9.92 12.6 10.2 1.62 7.88 1.25 6.75 4.88 0 7.21 9.11 11.4 9.53 5.84 9.7 10.7 0 8.78 2.37 7.21 1.25 0 9.82 7.73 4.25 9.12 8.53 5.5 8.46 9.19 3.42 10.6 9.89 11.7 9.15 7.16 0 6.82 8.95 12.5 10.1 2.86 8.46 9.49 9.73 8.68 5.18 10.3 0.76 2.55 10.8 1.25 7.98 10.8 7.47 7.9 9.28 9.45 8.3 4.77 9.11 9.73 0 2.37 8.91 9.33 11 9.19 8.82 9.51 6.36 7.14 11.1 9.36 7.55 1.25 1.25 8.96 4.66 6.86 10.1 8.95 9.17 6.44 10.1 10.7 3.96 5.41 7.96 9.59 10.3 8.24 1.25 5.36 4.58 8.25 3.11 2.99 8.59 7.34 7.26 8.62 6.99 7.03 9.55 8.85 9.41 9.12 3.32 3.82 9.75 5.1 6.74 0 6.94 2.16 6.09 4.08 0 3.42 3.43 9.94 9.82 8.54 5.07 12.3 10.1 7.33 9.5 8.74 5.65 11.9 10.1 8.83 7.78 7.29 4.58 2.16 8.49 0 4.77 11.3 9.37 6.08 5.21 9.44 11 7.81 11.2 9.2 3.42 5.89 6.31 3.11 9.07 9.96 6.37 8.42 9.81 8.54 7.59 12.5 10.2 4.7 7.91 5.55 7.71 8.3 5.85 8.44 11.3 7.81 0 8.98 9.97 9.96 9.09 7.24 11.6 2.55 4.88 0.76 3.75 7.17 7.45 9.59 10.1 7.78 9.7 6.59 7.54 7.73 10.9 0.76 9.36 6.27 1.92 6.45 8.45 5.59 7.62 9.24 8.44 9.42 8.23 9.78 9.95 7.69 7.86 8.91 8.18 7.76 6.97 7.6 7.31 6.35 9.82 9.04 8.82 10.1 8.55 11.3 3.11 10.4 8.1 10.4 8.74 8.46 11.3 9.8 7.78 9.24 8.41 4.98 6.32 6.9 11.3 9.76 8.79 10.2 10.2 6.68 0.76 7.37 9.32 10.5 9.65 4.94 8.37 8.17 7.42 2.55 6.33 7.04 8.35 4.25 7.79 3.32 7.84 6.67 5.5 4.81 0 7.63 10.5 11.6 8.03 8.06 1.92 8.23 9.67 10.2 8.65 9.8 10.3 1.62 12.8 7.34 6.7 8.29 8.9 10.3 8.79 4.58 8.63 7.51 8.51 8.47 10.9 5.78 7.94 10.6 8.67 9.31 7.78 10.3 7.29 11.6 9.55 10.7 8.51 8.79 8.91 8.62 4.84 8.03 10.9 8.8 4.53 8.55 8.92 9.24 8.74 9.12 9.09 6.6 9.54 0.76 8.26 11.2 9.01 10.7 7.04 9.15 10 7.19 9.8 6.5 7.07 7.48 8.68 9 7.15 7.83 9.97 0 9.87 9.89 7.53 9.91 6.87 8.03 9.25 9.67 7.53 8.44 8.97 9.29 9.47 9.18 4.49 7.91 6.77 8.23 8.9 0 10.1 8.53 10.2 10.3 10.4 8.44 9.28 7.88 9.96 0 9.67 11.3 9.86 1.92 10.5 7.58 9.17 1.92 9.93 5.84 8.62 5.39 11 7.59 9.13 7.87 5.84 6.89 9.13 7.95 10.1 11 7.78 11 5.18 7.99 9.6 10.2 8.61 6.12 8.51 6.68 8.65 9.5 8.78 7.1 0 4.7 0.76 4.3 9.56 9.37 11 8.89 6.03 7.67 10.1 11.5 9.92 7.36 9.41 5.1 6.27 6.05 10.5 8.29 10.1 7.51 8.22 9.1 6.5 9.01 12 5.76 10.2 5.01 7.79 10.6 6.88 9.16 8.48 10.7 7.1 8.95 9.79 3.51 9.27 8.04 8.33 0 8.39 7.32 4.7 9.56 9.17 8.45 4.94 7.57 2.37 5.8 8.48 7.7 9.19 11.5 9.42 8.03 1.62 3.32 6.54 9.48 10.3 4.77 6.79 9.08 10.4 4.2 1.25 0 1.25 9.59 8.58 8.39 9.53 10.3 6.83 6.27 0 8.53 7.83 0.79 7.8 8.71 9.8 1.25 4.25 7.88 7.07 4.88 4.35 0 10.9 11 0 3.68 9.17 11.2 8.51 8.68 2.99 10.4 10.1 7.39 6.86 13.2 6.2 12.3 8.31 6.03 0 1.62 10 8 6.7 7.98 8.13 11 8.84 4.4 7.73 5.1 3.6 8.4 8.03 7.33 11.3 7.49 8.18 5.46 8.51 13.2 9.07 3.82 6.5 4.88 5.99 9.63 11 8.45 6.09 5.07 2.16 6.16 9.03 11.4 6.62 8.87 10.7 6.6 8.8 4.7 5.39 5.85 9.96 11.1 5.65 9.01 2.16 5.85 8.74 2.86 8.77 7.53 10.9 8.56 9.47 9.95 8.73 10.2 7.52 8.96 7.22 6.11 1.25 7.96 8.54 11.6 7.51 8.78 4.74 9.26 8.2 11.2 10.3 8.75 9.49 0.76 8.71 10.7 5.63 10.5 9.87 9.41 8.51 8.67 12 5.46 8.79 9.38 7.08 7.44 10.4 9.32 9.9 10.6 6.36 9.22 6.88 10.6 6.45 8.72 11.4 11.7 2.71 7.51 8.49 9.87 8.17 9.25 10.8 9.26 1.92 7.62 8.3 9.22 8.41 8.32 9.09 8.18 6.91 10.3 7.17 7.72 8.71 2.71 7.99 8.1 7.71 7.63 10.2 9.17 8.08 10.4 6.71 9.69 9.27 6.5 11.2 5.57 9.97 6.09 6.9 8.12 6.98 8.6 4.14 7.66 4.62 9.52 11.6 9.04 7.33 2.16 10.2 5.8 4.81 5.55 0 8.65 9.26 10.2 4.77 7.4 10.2 11.2 9.35 6.73 9.89 6.26 6.06 8.85 0.76 8.75 9.77 9.4 11 7.27 8.96 11.2 10.6 7.82 8.45 9.08 8.78 10.2 8.17 8.83 7.74 10.6 11.2 9.28 6.99 3.51 8.15 4.98 7.51 7.91 10.9 10.3 9.84 3.51 8.71 1.62 12.3 9.59 7.15 11.3 4.02 0 6.75 2.37 8.75 8.1 11.4 8.94 7.73 1.62 9.72 9.37 0 9.82 6.09 9.83 5.21 8.58 10.1 8.87 8.29 8.73 9.18 11 2.16 8.62 10.8 3.22 8.77 10.6 10.4 11 7.51 7.86 9.52 10.3 4.62 5.63 7.2 0.76 15.7 10.4 5.18 10.1 9.57 10.2 9.57 9 9.1 9.64 4.25 6.62 7.56 11 9.52 9.7 9.8 2.71 12.7 9.88 9.37 9.2 9.72 8.63 11.8 9.43 7.93 8.66 10 3.22 1.25 9.86 6.45 3.22 2.16 8.71 5.48 4.02 3.68 8.1 5.47 5.46 12 7.79 8.32 10 3.42 9.37 8.28 14.7 10.1 9.49 3.51 10 11.3 10.2 9.46 8.84 9.67 11.4 7.22 9.87 9.93 9.66 9.47 5.62 6.56 8.28 8.48 10.5 7.87 1.62 1.25 10.4 9.84 8.86 7.29 11.3 4.49 6.81 9.44 13.5 7.5 9.41 10.7 11 4.94 4.2 10.1 7.6 10.2 8.3 9.91 6.92 9.1 6.82 7.64 5.87 4.3 5.07 9.56 10.6 10.6 8.21 5.18 10.5 7.64 7.44 9.4 6.45 7.53 6.5 7.24 10.2 9.93 9.28 9.48 6.14 9.85 10.8 9.36 10.7 11.2 12.7 11.3 5.67 12.9 12.1 11.7 13.1 12.4 10.5 9.25 10.7 9.99 9.98 8.32 11.1 6.05 8.61 10.3 8.78 9.13 12.1 10.6 1.62 8.98 10.3 8.11 9.99 9.37 5.18 11.7 5.18 7.96 11 11 7.3 8.04 3.75 3.22 11.2 7.57 7.43 8.06 8.99 5.55 10.8 13.2 10.8 10.4 10.8 10.9 8.31 11 7.84 11.3 9.88 9.79 8.08 11.8 5.63 8.98 7.65 7.96 3.11 8.85 8.8 12.5 2.86 2.86 3.11 1.25 11.7 12 11.8 14.6 9.25 12.8 12.5 9.37 12 10.4 6.19 8.13 11 9.01 12.2 9.14 6.14 9.61 4.49 10.6 6.22 0 9.48 4.81 8.96 6.15 5.31 4.45 9.65 5.65 8.27 9.41 2.86 9.17 10.4 10.2 8.64 11 10.2 1.62 6.59 0.76 0 10.1 8.92 5.36 11.4 9.96 1.92 10.5 7.57 3.22 9.04 4.2 9.19 6.73 11.9 8.96 11.1 8.88 8.73 6.65 10.7 9.48 11.1 6.72 9.65 1.25 6.09 5.89 10.2 4.91 1.62 7.78 9.78 7.96 4.54 12.2 8.37 7.01 9.61 6.05 1.25 9.19 3.11 8.58 10.5 7.83 10.1 9.54 7.1 7.03 8.98 10.4 9.71 10.1 8.82 5.24 5.41 5.71 12.7 11.3 10.5 9.81 8.96 8.83 10.2 10.1 11.9 11.2 9.86 10.2 8.89 8.67 11.1 10.4 11.9 10.5 10.6 9.51 10.7 0 8.97 2.71 10.9 7.75 10.5 9.97 8.75 1.62 9.7 8.24 2.86 8.79 10.3 7.74 8.79 9.05 11.9 9.28 10.8 10.1 2.75 5.59 3.23 10.1 9.89 10.9 10.3 9.02 8.14 9.37 10.8 9.2 8.78 5.63 12 9.68 9.54 0 4.3 6.51 12.6 0 0.76 7.59 9.83 10.7 7.84 4.25 9.89 8.2 7.66 7.13 10.5 7.69 5.26 6.72 5.5 2.37 2.86 4.7 8.64 7.35 8.16 8.09 10.8 9.63 7.59 4.35 9.05 6.61 9.36 0 4.57 8.17 2.91 1.92 7.38 1.25 8.3 11.3 6.26 7.87 10.8 9.34 11.4 8.02 1.25 8.43 10.2 10.6 11.1 9.28 10.9 8.96 7.89 8.03 6.57 1.62 6.5 9.35 11.9 10.9 2.71 6.89 5.04 10.5 6.94 12.6 8.18 6.22 10.8 9.84 9.29 0 10.8 7.63 7.53 5.24 6.55 7.1 4.35 11.2 9.51 9.01 8.57 8.72 8.85 9.7 4.35 3.6 7.34 10.4 7.56 2.71 7.56 6.97 8.63 9.42 9.66 2.37 8.63 3.89 5.69 7.89 6.09 10.9 9.5 7.77 9.49 10.2 8.22 0.76 5.92 9.17 9.29 5.97 1.25 6.43 9.9 7.84 8.49 8.44 8.78 7.39 10.2 6.82 6.88 10.4 9.88 8.78 10.8 8.42 8.27 7.1 10.2 10.3 10.6 9.49 14.6 7.17 6.14 4.94 5.99 9.66 3.51 10.3 9.97 9.44 6.78 2.86 9.52 6.6 9.59 9.42 6.49 3.18 8.33 10.6 8.96 9.64 8.82 8.37 7.84 8.78 7.62 7.82 1.62 5.64 8.68 6.9 7.91 11.2 9.38 8.58 6.97 7.86 6.41 7.43 8.94 2.71 11.8 2.71 7.55 10.7 6.11 10.3 7.28 9.6 10.2 3.24 7.71 0.76 2.37 4.4 10.9 7.94 9.56 12.5 3.42 10.4 9.2 7.56 5.46 10.3 8.97 3.96 11.9 9.71 8.49 9.72 9.6 7.28 1.62 9.36 10.6 9.6 9.44 9.39 5.07 8.31 9.64 9.41 1.92 10.1 6.06 9.31 5.63 10.4 12.6 9.68 10.8 10.1 9.33 9.52 6.27 10.3 6.57 9.26 7.99 8.52 9.45 3.17 4.62 10.2 7.91 7.17 11.1 7.5 8.74 4.02 8.69 9.67 7.92 8.5 9.89 8.75 2.55 0 5.13 4.58 5.52 5.97 8.27 8.19 9.98 7.82 10.6 10.3 1.62 9.87 10.4 8.71 10.6 9.58 9.08 5.24 10.6 10.6 11.7 9.96 8.4 8.22 4.4 8.75 8.05 9.87 8.19 0 6.46 9.37 9.25 9.9 9.43 11 11.2 8.72 7.95 9.03 8.73 9.4 9.15 9.59 6.5 4.45 7.37 12.8 5.01 10.1 10 2.71 9.7 10.9 7.22 9.54 3.22 9.33 6.78 7.85 3.42 7.66 6.16 7.67 9.75 7.71 8.06 10 10.1 4.94 8.97 8.67 8.84 8.06 5.18 9.18 4.08 8.66 1.68 8.37 9.11 9.42 7.5 2.99 11.3 7.29 11.4 13.2 7.05 10.3 11 8.02 7.96 4.94 8.92 2.71 3.89 3.32 6.7 10.8 10.4 5.89 6.31 7.57 4.49 11.4 7.79 9.08 9.33 9.8 8.46 7.07 3.42 8.94 3.96 8.71 8.92 10.9 12.5 10.4 9.66 8.6 9.33 7.73 7.84 10.8 10.9 6.49 6.62 9.63 2.86 2.99 7.61 7.87 0 8.67 4.14 8.3 10 8.39 4.77 6.05 8.82 9.85 4.08 8.4 6.26 7.33 9.39 10.3 10.7 9.03 8.46 9.07 11.2 10.4 4.14 7.08 8.54 8.71 7.88 7.26 7.34 9.42 8.64 12.5 7.99 10.1 5.59 10 8.95 11.2 9 10.7 8.87 7.58 11.6 3.89 8.84 1.92 8.64 10.4 7.44 8.5 6.66 3.6 7.22 6.06 1.92 5.5 9.74 3.11 7.37 11.3 4.94 11 11.2 10.5 8.56 9.04 3.33 7.69 7.54 7.23 8.87 8.45 10.3 1.92 9.43 10.5 10.6 6.67 11.2 10.7 1.25 6.76 10.1 5.63 1.25 10.3 7.28 1.92 11.9 7.78 7.79 9.64 9.12 7.91 10.1 6.31 10.3 6.15 10.5 8.63 5.77 7.33 10.1 5.94 10.1 9.55 10.7 8.24 9.77 8.62 10.4 7.15 11.4 9.17 9.56 9.52 9.29 2.99 9.91 10.9 11 9.69 9.05 6.48 9.19 12.9 10.1 9.6 4.94 9.31 13.8 8.31 9.75 11.2 10.1 0.76 10.3 11.2 9.59 10.4 9.7 3.11 9.21 10 7.48 7.46 7.74 4.62 11.8 11 6.74 6.83 8.72 9.32 8.76 6.57 6.14 1.25 3.11 7.04 8.4 8.03 5.94 3.42 8.44 6.95 10.3 7.75 5.69 9.01 9.55 9.25 9.57 10.6 6.42 5.07 8.36 11 9.43 10.8 7.87 11.7 9.78 10.5 9.59 3.82 9.7 8.35 9.5 11 9.24 7.77 8.71 5.29 9.41 6.43 1.25 10.5 9.26 6.54 10.1 9.24 9.35 10.4 9.76 0 10.7 9.8 9.65 6.88 0 9.9 15.1 0.76 10.9 6.75 9.55 8.42 10.7 2.99 7.87 0.76 8.08 8.7 4.53 7.96 10 10.8 9.15 0.76 12.7 8.8 9.86 8.41 4.2 8.59 9.76 4.4 5.18 1.93 8.98 10.7 9.65 11.5 9.18 10.7 8.84 9.5 8.55 11.3 10.9 4.25 6.02 10.9 2.86 9.66 1.25 7.2 1.25 8.13 1.25 10.9 8.43 10.6 4.74 8.86 8.69 10.9 0 4.3 3.42 8.14 8.21 6.41 9.31 10.1 7.79 9.02 7.2 4.98 2.99 11.5 4.53 9.73 4.84 5.84 8.11 10.8 8.87 10.9 9.56 4.3 8.72 7.24 4.14 9.51 9.79 11.2 9.69 10.1 10.8 8.66 7.45 8.85 10.3 9.36 2.37 11.2 9.24 2.71 10.7 8.27 7.27 5.78 9.98 6.41 12.3 7.18 7.06 12.6 8.89 2.86 6.67 7.07 3.22 6.76 0 9.69 5.97 9.53 8.54 8.73 7.43 10.1 12.9 10 5.04 11.2 5.31 7.43 10.1 7.83 10.7 8.65 11.4 7.25 8.35 2.99 8.61 9.61 7.46 6.22 9.11 2.37 8.56 8.91 10.4 5.71 8.8 8.63 9.04 2.55 8.71 9.21 5.48 5.73 9.32 7.16 8.62 5.87 7.97 8.19 9.56 11.3 8.22 5.71 8.8 5.97 1.25 10 13.1 13.6 6.23 6.58 4.62 8.14 9.19 11.1 11.7 9.3 6.14 5.44 12.7 10.3 11.3 9.64 5.59 10.8 8.54 11 10.1 9.4 9 10.2 11.7 9.8 9.92 7.14 10.2 9.17 9.44 8.75 7.63 7.27 12.4 11.9 7.57 6.74 9.69 2.37 11.8 8.23 6.97 11.7 12.7 11.5 8.83 9.25 11 12.1 10.3 9.6 10.2 5.92 9.09 11.2 9.48 10.6 8.21 9.53 10.6 10.1 9.61 8.05 8.9 11.5 7.15 10.9 11.2 4.02 8.47 12.1 8.01 5.67 8.69 12.8 10.6 5.48 11.6 13.1 8.7 2.16 10.9 8.97 12.3 8.03 10.2 8.02 8 11.8 5.44 10.2 12.1 10.5 6.14 11.2 10.4 8.37 9.18 6 6.09 3.22 9.46 6.19 9.26 11.8 8.43 1.62 8.9 8.69 7.24 8.65 9.99 7.05 12.5 10.2 11.8 9.23 10.3 9.62 10.6 9.67 6.36 9.33 8.23 10.4 10.7 8.66 9.39 9.69 9.94 6.97 10.1 12.2 14.1 6.92 9.77 11.2 8.59 10.9 8.19 11.2 13.1 9.97 5.07 11 8.86 9.99 9.49 8.74 9.61 8.62 10.7 10.9 8.33 10.4 9.49 10.3 10.7 10.5 11 9.56 11.5 8.2 11.3 8.65 9.36 10.1 10.1 9.47 9.58 11.3 7.3 6.88 2.55 8.54 10.5 9.6 11.7 9.98 1.62 9.5 3.89 12.2 6.33 9.79 9.17 8.72 2.99 9.64 2.16 8.58 8.12 14.8 5.19 5.39 9.37 11 9.06 10.2 12.4 8.8 9.86 8.76 10.5 9.52 11.6 7.62 11.3 8.8 9.9 9.32 6.97 12.4 8.83 10.7 7.66 9.78 9.77 10.8 8.91 13.4 7.3 5.8 9.28 6.97 9.04 10.9 8.76 9.11 6.35 12.6 9.08 7.83 10.8 10.4 9.4 8.56 12.2 8.62 8.17 11 11.7 10.1 10.7 11.3 9.66 9.65 5.21 12.1 9.37 12.8 5.84 11.3 9.02 7.3 6.87 10.4 10 10.2 11.5 10.3 11.4 10.9 5.8 10.7 10.5 6.51 9.94 12.2 13.7 10.8 9.33 10.2 3.32 10.7 8.65 11 11.1 8.71 9.24 7.91 10.8 10.2 9.06 10.5 10.2 8.14 8.57 9.39 10 7.01 9.7 5.26 9.48 11.2 9.36 1.92 7.75 6.11 8.48 7.59 9.4 9.38 5.16 8.02 8.99 8.34 8.03 9.1 9.71 7.06 9.59 8.31 10.3 9.33 9.63 8.41 2.37 9.59 10.5 9.6 8.05 9.67 10.6 6.99 9.52 8.58 11.5 11.5 9.69 12.9 9.72 10.7 9.13 11 10.1 12.4 10.9 10.3 9.97 8.1 9.15 10.3 11.3 8.27 9.72 7.77 11.2 9.64 11.5 8.12 7.93 9.38 9.63 8.18 10 11.8 3.11 8.09 6.93 8.28 10.8 10.2 8.7 10.9 8.54 9.13 11.8 9.66 8.89 7.01 5.18 7.33 9.94 7.87 9.24 10.5 10.5 13.4 7.15 10.9 11.1 9.02 9.6 9.47 10.2 10.8 6.88 10.6 6.78 9.99 9.47 4.2 9.89 10.1 9.28 7.42 10.5 9.37 3.51 6.19 6.53 10.2 6.76 8.16 12.1 8.04 6.95 11 3.11 4.35 5.07 8.25 9.9 9.81 8.83 10.2 10.2 8.38 5.95 12 10 10.3 9.89 2.26 10 9.23 10.3 5.89 9.58 11.3 11.2 8.89 6.7 8.51 12.2 10.5 9.82 8.67 8.18 10.6 2.55 11.9 7.87 8.08
-TCGA-HD-8634-01 3.68 8.76 8.42 6.35 7.09 9.11 1.47 3.02 0 0 1.44 8.07 1.75 1.99 3.81 8.23 11.2 9.27 4.94 9.65 8.54 14.5 9.62 0.67 9.98 7.85 5.05 9.77 4.83 4.44 3.47 6.22 3.43 1.75 2.91 1.49 0.67 5.96 1.99 2.91 3.87 2.79 5.12 0 5.76 3.31 0 2.91 10.3 6.06 1.99 5.81 7.51 8.39 6.1 2.79 6.51 1.13 5.89 8.41 6.61 1.13 7.84 1.47 3.62 1.47 4.28 4.88 8.86 3.7 3.98 6.18 5.28 2.19 3.68 3.02 3.94 4.36 4.35 1.75 2.79 1.47 1.24 8.88 2.52 0.67 6.4 1.99 2.66 2.91 8.71 5.71 7.08 6.64 4.68 2.66 1.75 5.24 4.41 8.08 1.13 4.48 2.91 5.44 0 4.91 7.69 8 1.13 6.12 0 1.13 9.25 1.75 4.95 2.66 1.66 4.44 3.84 3.22 4.88 6.01 0 0.67 2.19 6.93 0.67 2.91 0 15 2.65 2.91 2.66 9.96 1.75 0 3.81 1.13 4.13 8.34 9.95 9.29 1.99 3.75 5.19 12.7 0 10.4 0 4.14 3.97 0.67 6.9 8.68 10.8 1.99 0.67 0.75 8.57 1.99 6.91 6.91 0.67 2.52 8.32 5.72 5.52 2.36 8.76 0 10.4 8.5 2.66 3.31 3.62 0.67 4.96 1.99 9.06 4.99 4.14 7.28 4.32 4.63 3.55 1.76 3.54 0 8.28 4.96 7.49 7.87 3.51 3.55 4.44 6.92 2.66 9.71 8.56 7.96 5.19 8.96 9.61 11.4 6.84 10.5 6.14 10.6 11.6 11.4 7.83 10.1 10.9 10.9 10.4 10 9.53 11.2 4.82 11.1 6.36 8.27 11.9 10.2 8.06 6.24 3.02 10.9 7.93 12.3 9.49 2.66 9.72 10.3 8.84 6.42 9.05 5.26 10.1 8.09 8.7 7.24 12 12 11.5 12.2 12.8 12.9 8.11 10.8 9.32 0.67 6.66 9.8 9.2 6.27 13.5 11.8 2.19 13.3 1.75 10.7 10.2 10.1 10.7 11.4 9.9 9.2 12.1 9.87 8.04 8.64 7.89 8.96 11.4 7.28 3.81 12.5 11.3 11.3 12.6 11.9 10.7 7.37 10.4 10.2 10.4 6.49 11.8 9.96 3.31 1.13 10.8 7.23 8.05 10.3 5.75 12.5 6.04 7.04 11.8 10.7 6.89 10.8 10.3 12.4 1.75 9.65 8.6 8 12.3 9.57 9.81 9.49 4.23 9.75 10.7 1.75 9.01 6.09 9.75 10.7 9.32 7.8 10.4 10.4 10.8 9.5 9.06 8.78 10.3 9.61 11.8 6.79 9.98 11.1 7.92 9.66 7.68 8.34 11.2 13.3 9.46 10.2 8.37 13 11.2 9.99 10.6 10.8 10.7 2.91 9.95 1.13 1.75 9.13 5.75 10.9 1.13 4.36 5.82 13.2 11 11 8.13 6.35 5.26 5.51 4.96 3.12 5.54 11.5 9.39 11 10.2 8.23 8.55 10.7 0.67 8.03 8.68 8.29 7.99 9.47 10.6 10.6 4.82 7.22 8.16 9.43 9.77 8.01 13.6 8.59 4.85 10.8 10 6.16 5.95 5.24 7.31 10.6 9.72 9.78 10.8 10.7 9.58 11.6 10.5 10.5 7.85 6.22 11.8 8.37 8.59 10.7 9.63 9.07 7.92 6.24 8.42 5.19 7.02 11.5 7.04 11.1 10.3 11.2 5.16 10.5 10.4 13.1 10.4 9.31 7.02 5.93 8.22 8.24 8.25 9.57 10.5 10.8 10 0 11.9 7.2 7.97 7.1 7.94 9.22 7.76 6.2 7 10.3 9.37 7.93 8.53 9.49 9.58 5.56 6.81 10.9 12 2.36 11.7 9.46 6.85 4.04 5.39 8.03 7.64 1.13 9.59 3.39 10.1 9.21 6.64 9.06 9.35 8.83 14.6 11.1 1.13 8.98 12.2 7.51 14.3 9.45 6.54 2.52 4.14 8.1 8.95 3.93 13.1 8.4 6.32 7.32 5.3 15.9 7.72 14.3 8.99 10.4 7.88 10.2 6.11 8.63 6.27 2.52 0 9.41 10.3 14.1 9.79 10.2 12.2 11.1 6.66 10.7 7.56 10.8 10.2 10.3 9.99 10.2 9.14 10.2 9.21 6.5 10.6 10.6 11.5 7.88 9.68 10.9 7.66 5.98 9.93 9.47 9.88 9.95 3.81 9.91 9.46 0 9.24 11 10.8 9.45 8.73 10.2 12 12.1 8.55 10.4 5.41 6.34 10.5 7.25 8.42 9.85 9.85 10.8 9.76 2.19 9.36 7.09 9.65 10.4 9.68 10.9 9.57 9.18 8.81 11.6 10.9 10.9 10.4 0 13.5 9.76 10.8 10.4 10.7 12.4 11.2 11 8.66 10.7 11.2 9.87 1.47 10.1 5.43 7.3 7.2 9.27 12.9 10.8 11.5 9.14 11.1 6.09 4.32 6.98 10.7 10.9 6.85 12.8 9.35 10.7 9.77 12.2 10.2 12.3 11.8 10 1.99 11.3 9.56 8.93 9.47 7.44 6.71 4.94 11.1 10.7 11.8 11.6 9.62 9.1 10.4 9.55 10.3 5.88 12.2 10.8 10 10.9 8.65 8.2 11 7.45 4.23 8.48 10.8 0 6.79 10.8 11 4.09 10.2 3.47 9.89 1.47 9.85 10.3 12.5 12.1 11.9 10.8 6.32 11.6 8.2 7.57 9.55 7.99 0.67 8.49 7.11 11.6 11.7 8.92 9.96 12.9 0 7.15 11.2 8.18 9.59 9.25 4.36 8.97 11.9 10.7 10.2 7.56 9.32 11.6 6.97 10.6 10.3 9.25 10.9 9.71 11.6 9.56 7.87 8.02 8.78 8.41 11.2 12.5 12.4 11.5 8.33 10.7 8.51 11 1.99 11.1 7.91 8.72 1.79 5.36 10.7 7.12 9.57 10.2 10.1 5.07 9.24 12.4 13 10.5 5.65 11.6 11 7.5 2.36 0.67 5.81 10.6 3.75 7.96 6.36 5.39 11.4 9.19 10.4 5.24 3.31 4.91 9.82 8.85 9.16 1.99 2.52 9.22 8.17 1.13 3.54 11.8 9.01 3.93 5.24 7.71 1.13 9.59 9.77 8.95 0.67 7.89 14.7 8.67 8.06 11.5 11.1 10.9 12.3 8.22 11.8 8.14 8.44 2.64 10.9 2.91 0 1.47 0.87 8.79 4.82 10.6 2.79 5.97 9.22 2.79 4.44 12.9 13.6 6.23 8.5 12.8 10.9 3.93 11.4 8.84 11.5 10.9 9.68 11.1 11.8 9.83 10.4 8.43 9.13 11.8 8.57 7.21 9.03 8.75 8.2 8.89 12.5 7.08 6.8 6.86 5.54 7.61 10.4 7.5 3.75 4.48 13 10.4 0 13.8 7.94 9.63 13.1 10.7 6.44 5.41 9.48 0 4.28 5.12 9.2 5.76 4.73 8.93 7.53 2.66 2.52 0 11 10.2 6.09 12.3 12 9.67 9.04 10.8 10.4 1.13 5.47 3.39 3.87 8.23 11.6 9.86 8.96 10.4 5.41 3.81 4.48 8.21 8.03 0 2.79 9.11 10.2 0 3.98 13.4 3.81 10.6 7.14 5.28 1.47 10.7 8.87 10.5 10.2 6.71 8.97 9.73 8.49 11.5 9.44 10.4 9.52 10.2 9.65 1.13 4.73 5.65 11.9 10.5 9.85 0 9.75 9.41 11.5 10.5 11.1 9.03 8.46 10.8 11.9 9.78 5.35 10.8 3.62 10.8 4.52 11.6 10.5 8.72 2.91 8.81 11.5 11.8 10.3 7.89 9.61 11.7 9.62 9.91 10.5 9.55 8.43 11.3 12.3 10.2 12.4 11.9 10.7 6.55 12.2 11 6.71 6.8 11 12.7 13.4 12.8 10.8 11.1 10.1 8.85 7.72 10.8 9.1 8.51 11.5 5.81 11.9 10.8 11.1 10.7 4.99 4.99 12.1 4.96 10.9 5.5 11.9 8.88 4.18 9.49 6.3 8.84 9.73 1.75 10.2 8.62 0.67 12.4 8.1 9.89 8.61 8.93 7.61 9.07 7.25 10.5 5.33 2.19 5.4 4.32 3.39 7.29 12.4 7.97 13 7.75 5.82 10.1 7.18 7.46 8.59 9.53 4.36 8.3 11.5 9.85 11 10.4 10.7 9.54 11 10.6 11.1 10.8 6.97 1.99 8.55 10.1 8.59 6.57 8.2 6.3 11.7 9.72 9.97 10.2 8.6 3.62 10.5 11.4 12 8.6 6.2 11 10.6 7.31 3.54 7.49 2.79 5.24 8.91 10.2 9.35 12.3 7.85 9.03 9.54 8.15 5.17 10.2 8.89 8.18 8.74 7.6 7.48 10.3 9.46 10.4 8.59 7.82 9.2 2.52 7.62 9.87 9.03 0.67 9.82 0.67 8.2 7.67 12.1 1.47 10.2 8.87 4.28 12.3 7.96 9.32 3.12 4.79 7.33 6.26 0 6.32 9.16 8.96 5.37 5.65 5.51 6.44 7.7 7.36 6.81 8.28 9.85 8.81 4.46 8.67 9.45 8.18 12 9.43 8.91 6.16 5.24 11.5 6.44 6.14 11.5 11.1 7.24 8.05 1.13 10.4 6.84 10.1 5.91 4.48 8.97 14 10.1 0 6.05 9.31 9.25 8.36 9.85 10.2 11.6 8.34 7.94 7.88 8.09 5.09 8.75 9.16 5.85 11.2 9.98 9.04 8.31 8.65 6.63 7.76 7.53 10.9 2.52 13.1 10.8 5.52 7.68 6.39 6.69 10.6 6.01 9.08 9.81 10 7.42 6.41 9.93 9.42 3.12 6.39 9.15 11.2 5.3 8.77 8.52 3.54 8.8 1.99 8.11 8.75 9.07 1.47 1.99 9.74 10.8 7.33 9.37 10.5 9.1 6.89 11.4 2.91 11.5 5.47 6.62 4.88 7.96 7.66 9.32 9.49 8.9 3.88 0 4.24 8.96 11.5 10.2 9.27 7.3 5.28 9.8 8.41 8.86 7.17 9.45 2.66 7.65 2.86 11.4 8.78 8.1 7.42 8.64 8.95 7.57 10.1 11.2 7.29 10.1 7.93 11.5 9.86 9.63 10.4 8.03 0 9.14 6.94 10.8 10.1 6.38 13.9 11.1 6.24 11.6 7.96 5.17 10.6 7.3 1.13 7.36 9.19 2.19 7.33 9.29 9.85 9.42 5.26 6.19 8.73 11.1 10.4 5.82 6.15 5.81 8.16 11.9 10.5 2.19 11.9 10.9 11.5 8.55 11.7 10.3 11.6 11.8 7.15 8.8 8.54 0 10.5 10.1 12.3 9.86 9.72 10.4 5.07 12.1 0.67 11.7 7.39 5.49 1.75 4.14 5.51 9.68 5.73 0 7.27 7.19 8.89 6 5.26 10.5 11.8 2.19 10.3 2.19 7.49 7.69 0.67 4.15 9.64 4.56 1.99 1.75 6.27 8.48 3.49 1.99 6.23 3.03 4.82 0 3.12 7.03 2.19 7.57 5.98 9.35 6.74 6.94 2.36 8.5 7.46 3.47 10.4 8.82 9.41 9.15 8.96 0 11 4.76 5.68 8.72 1.75 7.83 7.22 3.02 7.5 1.99 7.87 4.09 3.62 4.23 11.5 0.67 8.66 8.39 2.36 4.88 8.78 9.13 7.53 5.07 10.6 9.2 9.43 9.31 8.68 4.63 3.47 1.47 7.17 1.47 8.47 11.6 6.54 8.1 5.95 9.95 9.06 7.7 3.81 9.21 8.54 9.54 8.05 7.93 8.24 10.8 7.84 3.31 1.13 5.12 5.7 8.98 8.48 9.95 7.7 3.54 2.19 7.86 6.58 9.88 11.3 5.09 0.67 2.79 9.4 9.49 11.5 5.61 7.74 8.73 10.4 9.75 7.08 9.93 5.56 4.59 11.5 0 2.36 4.69 4.04 6.25 9.41 9.26 4.36 8.02 5.41 7.93 3.02 10.8 10.1 1.13 6.39 10 1.13 6.3 6.91 3.31 3.93 7.64 7.51 10.4 9.31 10.1 8.78 7.01 9.66 8.53 10.1 7.6 10.6 10.3 4.04 6.53 9.02 9.04 9.01 8.46 7.38 6.53 8.67 1.75 9.65 5.45 5.75 0.67 6.06 1.99 9.62 4.44 4.28 1.47 4.09 3.35 9.85 0.67 0.67 8.47 10.1 5.47 8.75 8.92 4.48 3.68 5.26 6.3 9.36 8.56 1.47 8.26 8.22 3.39 2.19 11.1 10.8 11.2 6.09 7.95 11.3 7.69 2.19 6.77 4.04 3.54 1.75 7.85 8.76 0 10.4 2.52 3.54 6.22 13 9.87 11.1 0.67 5.6 3.75 9.55 10.6 6.37 7.7 12.1 2.19 6.52 11.2 3.54 7.59 10 7.52 10.3 0 5.75 0.67 8.75 2.79 8.61 9.02 6.99 3.31 7.67 10.6 5.21 0.67 5.78 6.53 4.79 9.03 9.1 7.12 10.8 6.37 9.76 2.66 7.39 7.99 9.56 13.3 7 0 6.73 7.4 7.04 0 10.2 9.99 8.58 6.63 8.75 5.54 5.47 9.51 9.1 11.3 10.4 8.99 7.59 1.47 11.3 7.31 8.83 3.62 3.02 7.67 7.94 7.99 10.6 3.39 7.46 11.7 1.47 1.13 6.79 12.1 13.1 10.5 8.72 3.12 6.73 13.3 1.13 9.09 8.32 4.23 6.68 8.4 9.82 10.9 7.72 11.2 1.99 1.13 4.82 2.36 2.19 7.95 3.22 6.11 5.52 9.28 7.63 6.3 6.37 9.78 8.06 3.62 11.8 9.33 9.54 1.99 8.17 7.62 4.69 6.41 6.76 7.7 9.9 0.67 7.33 8.37 9.53 3.02 7.81 5.63 7.81 7.91 3.81 8.13 6.12 5.01 3.22 6.22 8.58 3.02 3.31 8.83 3.75 7.28 8.62 9.74 0.67 9.01 1.13 7.97 0 6.69 7.84 6.78 4.14 3.87 12.2 5.58 1.99 0.67 9.31 10.6 5.78 4.66 7.4 8.93 8.16 9.67 9.6 5.21 8.76 7.89 5.75 10.7 10.8 4.04 3.02 8.24 9.87 9.06 4.96 1.75 5.65 9.71 8.8 4.28 1.47 0 4.96 0 6.59 8.32 8.03 9.55 5.61 10.3 11.2 3.12 9.34 9.85 1.75 7.94 7.35 5.15 4.4 11.8 7.17 7.91 6.11 9.11 0.67 9.03 8.29 1.75 5.54 5.67 6.5 10.5 4.76 9.38 9.05 1.47 5.63 4.56 6.39 1.75 8.55 6.15 6.06 8.86 5.79 9.95 2.19 0.67 8.92 2.52 0.67 3.02 3.12 8.16 7.2 9.06 7.36 9.53 3.68 10.7 10.9 4.82 10.6 7.72 5.45 7.28 5.78 8.57 6.88 10.5 5.88 7.94 12.6 8.76 2.36 10.6 6.58 4.09 2.52 5.43 8.91 11.2 7.79 8.73 8.71 0 2.19 1.75 0 6.62 1.13 13.1 2.91 7.01 0 4.58 6.68 7.69 7.7 8.64 0.67 1.13 10.6 8.47 4.76 7.43 4.76 3.48 8.07 10.6 2.19 2.36 0.67 9.77 14 5.02 6.98 3.54 12.6 8.97 1.75 1.47 0 9.04 4.82 10.5 3.02 8.42 6.91 13.2 1.99 9.05 12.2 0 7.27 1.13 9.32 10.4 8.4 8.49 3.02 8.62 1.13 5.72 6.83 12.6 2.52 7.22 5.65 2.66 0 6.88 3.02 3.87 9.84 10 4.91 9.13 1.99 1.75 11.7 8.86 11.5 8.2 8.93 11.5 1.47 3.39 11.7 8.72 11.9 9.56 6.06 11.6 7.48 12.6 8.25 7.29 6.36 1.75 7.73 8.93 7.57 10.1 11.6 8.57 8.6 4.23 3.54 3.98 0.67 7.25 5.79 3.22 6.23 0 1.99 4.44 11.2 0 3.02 4.36 2.66 4.4 11.9 8.71 5.3 8.96 5.87 4.32 9.93 8.22 2.36 8.52 3.98 6.15 6.05 10.2 4.36 9.13 9.97 0.67 1.75 14.9 0 7.65 4.66 8.41 5.3 8.11 1.47 0 0.67 0.67 7.44 0.67 7.2 7.75 8.46 11.5 12.2 8.35 3.68 8.11 11.7 0.67 8.83 10.6 10 11.8 9.37 6.66 0 10.2 9.61 0 7.13 1.47 1.13 7.45 9.75 6.99 8.93 6.86 7.13 0 1.32 6.45 10.8 7.83 7.81 0 3.31 0.95 7.69 8.63 7.09 12.2 8.41 7.72 10.9 6.25 10.5 3.22 8.38 3.87 9.16 7.31 0.67 6.42 6.37 6.26 8.77 6.21 6.67 10.6 8.06 10.5 9.04 0.67 3.54 7 3.62 11.2 5.75 7.15 6.63 9.8 9.5 10.3 6.12 7.31 7.36 6.69 10.4 2.66 8.59 10.8 9.96 1.99 6.35 9.84 6.66 7.83 10.4 2.92 10.7 9.96 5.07 10.9 11.6 10.3 8.76 2.81 5.21 8.85 11.4 9.85 8.28 2.36 8.85 1.47 9.67 3.34 0 6.21 0 8.7 7.41 0 10.3 2.79 5.78 7.79 0.67 0.67 12.5 0.67 11 9.59 9.13 3.39 5.97 6.59 8.83 4.85 8.12 6.42 11.1 9.44 7.73 10 7.45 8.67 2.52 3.47 4.76 7.47 0.67 4.59 10.6 7.27 0.67 10.7 1.99 5.02 6.96 3.47 7.87 12 8.05 0 4.84 6.55 7.58 5.6 6.07 10 7.93 6.98 6.29 11.2 9.03 3.31 11.1 8.99 7.69 1.75 9.14 8.19 0.67 7.19 3.68 6.74 6.63 11.4 11.6 5.02 3.22 0 10.4 8.24 9.64 12.1 10.9 4.91 7.69 1.13 9.64 8.74 8.88 3.22 8.63 8.34 3.02 4.14 4.14 14.7 3.54 2.19 6.31 11.2 4.4 0 3.98 5.67 0.67 1.13 7.24 4.3 4.91 2.52 7.21 7.69 8 4.4 7.53 8.83 4.25 2.19 9.19 7.34 9.89 7.68 0 10.5 9.05 5.04 11.1 9.76 4.09 6.16 7.08 8.47 6.06 1.99 11.1 1.47 10.2 1.13 10.7 5.3 6.02 11 0 1.99 11.2 9.78 4.52 5.39 1.47 3.31 0.67 3.31 2.52 7.21 9.85 0.67 9.25 10.7 10.4 12.1 9.44 11.2 12.4 6.73 3.75 10.9 11.8 7.98 8.03 7.8 8.78 1.13 4.56 8 8.27 3.42 5.95 6.3 4.59 8.33 9.78 8.48 5.33 0.67 4.44 8.36 6.68 9.29 10.2 9.05 6.77 7.7 1.47 1.75 7.31 7.68 2.36 0.67 10.4 7.49 8.22 8.62 9.27 3.87 2.79 8.78 0.67 10.9 12.4 14.6 2.79 7.51 4.85 8.41 5.14 8.19 8.44 10.8 8.48 8.3 13.6 2.19 9.22 4.91 11.6 2.52 5.61 11.8 3.22 1.99 7.71 5.02 10.8 0 7.04 5.83 8.13 9.37 10.3 8.7 3.02 9.24 4.73 1.47 6.11 9.39 1.75 9.17 1.47 2.79 11.6 9.08 6.95 8.42 1.13 1.75 8.58 8.09 4.85 2.19 9.63 1.47 5.68 0 7.37 0 11.8 6.31 5.07 11.2 2.52 11.6 7.01 7.39 4.14 0 1.47 9.8 1.75 12 8.86 4.45 1.13 3.98 0.67 1.47 7.61 0 0 9.32 5.81 1.75 4.73 1.47 7.24 4.18 8.93 1.13 8.91 8.38 6.7 9.09 2.19 7.28 11.2 4.56 12.2 3.81 7.36 9.37 7.42 10.5 7.1 9.87 1.47 0.67 9 4.32 7.47 9.83 15.2 3.62 16.2 12.2 4.82 8.37 1.99 1.99 1.13 1.99 6.43 7.37 2.52 9.44 10.7 7.61 0 4.44 9.22 5.21 7.81 7.07 4.04 5.51 0.67 9.18 3.62 8.98 4.91 5.09 5.37 2.36 3.02 7.36 6.92 7.41 10.7 4.96 5.3 1.47 6.43 8.61 5.79 0 5.3 6.81 5.35 9.01 5.63 4.63 5.82 4.63 3.31 1.13 8.29 5.9 1.47 8.6 4.12 8.17 2.19 7.95 8.92 7.63 2.66 8.55 7.67 0 11.1 1.13 0 9.19 9.86 10.5 5.61 0 9.35 5.06 4.32 9.14 4.82 8.79 9.68 0 7.74 3.98 3.54 0 5.84 1.47 5.41 5.35 5.04 9.06 7.51 10.8 0 7.69 6.63 4.52 3.98 13.3 11.6 1.99 9.1 2.36 5.28 12.7 8.7 9.77 0 4.66 13.8 0 2.79 11.1 0 0 0.67 2.19 2.52 2.66 8.78 0.67 0.67 7.14 9.69 7.89 6.76 10.6 1.26 4.4 3.39 7.94 5.73 7 6.64 2.79 9.78 9.19 8.49 1.47 3.62 4.14 9.34 7.77 13.1 3.39 7.67 6 2.79 5.17 8.08 6.73 14.9 8.64 14.1 7.36 0.67 2.36 4.73 11.3 7.36 4.66 3.47 5.12 1.13 8.87 6.17 9.36 7.99 4.09 2.52 8.16 0 0 3.78 8.42 3.54 4.52 11.5 5.47 11.5 1.99 5.04 0.67 11.2 4.56 6.38 6.54 0 5.42 7.14 8.56 12.1 6.79 0.67 6.42 0.67 3.12 0 7.53 2.19 8.17 8.85 7.53 8.82 4.94 8.64 8.93 9.61 9.62 0 2.19 4.85 6.83 1.75 9.85 7.88 4.82 3.22 11 2.66 8.03 6.65 10.6 5.97 2.66 5.24 3.39 6.82 9.11 10.4 8 9.24 7.85 0 8.87 2.91 6.42 0.67 3.39 7.87 7.51 3.54 4.23 6.31 8.14 2.66 7.85 10.9 8.16 7.09 8.24 11 7.74 7.77 10.8 8.2 2.52 9.59 10.8 8.53 3.54 7.67 6.07 0.67 0.67 3.54 11.8 6.48 6.2 4.73 11.3 1.75 11.8 9.27 10.2 8.17 9.08 1.99 6.46 7.81 0.67 7.71 0 0 7.73 6.63 3.12 7.79 7.45 7.98 0.67 6.36 5.65 0.67 9.57 12.1 0.67 1.47 6.68 0 5.87 6.24 7.86 8.86 5.43 0.67 2.19 1.13 8.54 2.19 6.54 10.3 2.36 0.67 11.7 4.36 4.09 9.14 6.73 0.67 10.7 7.17 8.8 9.71 10.3 9.19 7.3 2.36 2.19 10.5 5.17 10.2 7.78 8.26 5.78 3.98 11.2 4.23 3.62 3.32 3.87 11.2 2.36 9.86 1.47 0 3.47 5.73 3.68 7.43 7.54 3.62 1.99 9.31 5.24 7.28 1.13 8.72 3.12 10.3 2.36 3.93 1.13 5.35 5.21 8.74 5.37 5.85 3.22 5.79 7 0 7.27 2.52 2.66 0 3.31 0.67 2.91 1.75 3.05 2.66 10.1 7 8.81 4.28 9.47 0 5.24 5.76 5.51 9.51 9.73 5.6 0 11.3 11.5 0 7.92 2.52 2.66 0 0.67 11.1 8.4 2.36 1.75 10.2 9.95 0 9.1 10.9 4.66 11.7 5.73 9.53 2.19 6.76 5.09 8.68 9.61 10.2 10.2 4.79 5.14 5.33 6.95 8.15 2.79 2.52 10.2 10.3 3.12 9.7 6.79 0.67 11.1 0.67 2.31 10.6 1.75 1.99 9.29 4.09 5.49 6.43 2.79 6.89 12.9 11 1.75 11.2 7.25 3.47 11.3 7.37 10.4 6.46 3.39 3.12 9.13 2.52 4.28 5.63 3.75 7.18 10.3 8.21 8.92 6.7 2.19 6.01 6.41 4.17 6.26 7.39 9.91 6.7 1.75 11.4 6.27 7.71 6.98 3.54 5.49 5.43 5.95 5.79 1.13 7.44 6.74 4.85 4.66 1.13 8.84 0 5.45 3.75 10 9.19 13.3 10.2 7.6 10.6 8.82 7.5 0 8.24 9.24 7.11 6.76 7.61 8.99 8.49 12.2 11.8 0 9.21 1.99 12.4 4.94 9.48 1.99 2.79 1.13 10.6 2.66 10.2 2.27 1.47 2.36 0.67 9.34 2.66 7.71 9.92 12 6.23 2.91 1.99 1.47 8.9 4.44 11.3 8.05 13.3 12.9 2.52 7.37 11.6 3.68 6.39 9.79 2.19 10.2 7.35 8.14 12.5 12 0.67 9.14 9.05 9.38 2.66 7.83 6.01 11.7 10.6 3.47 9.11 7.25 6.25 6.42 6.69 9.88 9.21 0 9.88 10.4 9 1.13 10.5 0 3.98 7.72 4.09 9.32 0 4.36 5.84 7.69 3.75 7.55 2.52 8.38 8.87 3.02 2.79 6.05 7.33 2.66 4.56 10.3 8.94 1.13 9.62 5.51 1.75 0 9.91 8.97 6.36 3.22 4.96 5.84 4.14 0.67 0 3.02 7.51 1.75 3.31 9.18 8.53 5.58 9.99 5.61 0 9.19 2.79 7.17 0 5.76 0 11.2 5.82 7.99 8.25 0 10.1 1.99 10.4 8.59 3.31 11.6 0.67 5.37 12 5.14 10.6 1.75 10.8 8.15 9 9.38 13 8.35 8.8 7.48 9.69 12.5 11.3 12.9 6.49 5.78 1.13 12.6 11.2 10.3 10.6 10.7 4.76 9.82 6.15 11.3 6.8 7.2 4.32 8.61 8.61 7.36 2.66 5.51 4.91 8.97 8.99 7.14 1.47 1.99 5.52 3.31 6.12 9.78 4.18 9.1 8.97 13.4 9.28 2.79 10.3 11.7 11.9 11.3 6.02 7.61 7.25 10.3 6.99 6.38 5.63 7.89 9.96 7.34 1.13 8.97 9.5 5.02 9.53 9.82 11 0 10.4 1.13 0.67 9.71 13 6.97 2.66 11.3 15.2 10.1 11.4 4.09 8.4 17.4 7.9 4.36 7.04 11.8 6.96 9.28 5.43 11.3 5.82 10.6 8.28 10 11.6 12.9 1.13 8.01 5.56 9.94 11.5 9.17 11 9.8 9.42 8.27 6.57 8.89 9.05 11 4.94 7.75 8.71 4.23 6.72 11 0 13.7 10.5 11.1 13.1 10.5 4.44 10.4 6.98 6.72 7.09 6.82 8.57 12.1 5.76 7.8 10.8 15.1 4.99 7.57 10.1 9.43 6.91 7.3 5.39 11.4 13.1 13 15.6 9.5 10.5 9.6 7.82 9.11 12.3 10.8 5.79 4.18 6.4 12.6 8.78 9.22 9.68 12.4 11.9 6.4 7.97 6.29 11.3 6.11 2.36 1.99 8.05 1.47 8.15 7.7 5.2 6.85 2.79 6.85 10.8 6.02 1.75 9.95 9.2 8.61 11.6 2.52 5.56 10.6 9.61 2.88 10.3 6.93 7.84 1.69 11.8 3.75 6.33 12.5 2.36 1.47 5.95 1.19 9.36 3.62 2.52 6.05 8 9.32 14.1 7.24 8.25 8.86 6.24 5.94 9.23 11.8 6.1 12.1 9.47 11.1 11.7 14.4 14.9 12.7 14 0.67 6.69 0 14.4 6 4.69 10.6 0 1.47 3.22 6.98 0 10.9 5.9 4.94 3.39 9.1 6.5 6.47 4.69 3.93 8.69 4.18 7.22 7.32 11.2 8.61 0 8.67 10.4 7.79 10.3 1.47 1.47 9.67 7.82 3.22 11.1 10.9 3.68 2.79 6.72 2.52 9.69 9.36 5.99 8.69 8.32 1.13 6.55 11.9 5.91 1.13 10 0.67 3.47 1.75 10.6 7.13 6.38 7.25 9.16 6.69 7.17 6.58 9.29 5.58 7.25 8.08 6.1 7.62 7.38 7.33 8.77 10.7 3.39 10.8 8.6 7.77 10.2 11.5 5.61 8.15 2.66 9.29 6.24 10.4 2.79 14.5 4.23 7.19 8.86 8.2 8.08 3.98 9.35 10.6 1.75 11.8 3.02 9.12 1.47 9.67 3.47 9.22 7.34 8.23 10.6 3.31 0 9.65 9.41 5.35 3.81 13.1 7.53 0 0 11.6 3.62 9.35 7.55 8.81 6.62 12.7 8.2 5.52 5.14 5.98 7.71 4.09 10.5 7.3 1.13 15.8 4.56 7.28 3.93 0 0 7.08 6.23 6.04 4.79 11.7 12.2 8.92 10.2 8.25 6.99 14.4 8.47 1.75 1.13 0.67 8.3 8.12 4.44 7.64 9.26 7.92 8.47 11.8 4.94 12.2 10.1 9.63 7.05 6.36 9.68 9.59 9.48 3.22 8.58 11.2 12.6 10.8 4.48 11.7 8.52 3.39 7.8 0 10.6 11.8 7.19 9.17 11.3 8.05 9.56 7.76 7.75 8.71 7.26 8.79 9.53 9.76 0 4.76 8.99 11.6 6.79 9.97 10.4 2.79 9.42 12 1.13 2.36 11.2 9.9 7.73 12.3 11.8 5.56 7.44 9.8 8.26 10 8.93 10 8.28 10.5 11.5 7.27 11 10.3 5.17 4.82 9.69 3.75 10.8 0 12.2 10.7 10.3 10.2 9.25 10.7 12 4.88 3.93 8.26 8.2 6.4 0 9.66 8.69 6.14 5.63 6.51 14.1 0 12.3 11.8 11 1.13 7.01 11.8 1.75 8.24 10.4 7.56 8.45 9.25 1.13 9.14 8.99 11 6.65 11.2 5.17 0.67 5.56 1.99 5.67 8.94 7.33 7.44 11.2 0 11.1 4.69 14.2 9.23 7.66 9 8.63 11.4 10.6 10.8 10.5 8.14 9.94 10.6 4.76 8.12 9.4 7.51 10 10.8 3.93 11.1 7.94 6.08 3.47 12.3 8.77 13.3 3.68 1.99 8.19 13.2 3.39 7.77 5.78 10.7 12.4 2.66 4.32 9.77 6.17 10 7.66 6.73 7.54 7.09 10.8 7.38 8.02 4.85 8.85 8.49 0.67 8.71 10.7 8.25 10.4 8.8 2.36 10.2 2.66 8.65 8.37 6.27 9.81 2.19 3.62 8.27 3.47 2.19 10.1 0.67 9.27 3.31 9.69 1.75 0 1.47 3.31 6.96 6.8 1.47 4.09 6.94 7.45 0.67 3.62 4.34 6.56 4.3 9.57 5.33 6.73 3.31 11.6 6.02 6.07 3.93 3.22 9.5 10.3 2.79 7.37 7.01 9.09 3.62 12 8.51 5.68 8.53 9.67 5.54 9.1 4.59 8.1 6.15 8.44 6.44 7.77 5.81 4.88 7.21 7.27 1.75 2.52 0.67 1.47 5.14 7.9 0.67 4.43 7.48 3.81 11 0 8.12 10.3 4.36 8.3 5.17 7.65 4.69 9.92 2.36 2.52 8.2 8.59 2.19 9.19 8.64 7.53 8.65 2.91 9.43 1.75 6.75 3.47 7.84 3.68 10.2 7.37 11 9.51 9.36 1.75 12.4 9.51 8.02 8.27 3.93 8.03 8.45 10 4.59 8.5 6.14 1.75 7.83 7.01 2.27 3.12 10.7 9.93 4.28 0 0.67 10.9 1.75 5.19 10.6 0 3.54 1.75 1.13 2.52 1.99 7.46 3.22 3.87 11.1 8.48 10 7.37 9.59 8.64 10.1 8.36 11.1 7.29 6 8.58 6.53 2.79 1.99 4.23 2.36 8.75 5.12 3.31 1.75 15.2 8.16 12.4 0 9.28 4.44 6.63 10.5 2.36 9.58 10.7 8.63 10.5 7.24 8.85 5.35 12.4 9.45 3.98 10.3 10.9 3.47 9.18 6.49 9.53 5.35 11.5 5.37 12.2 7.78 12.5 8.38 10.9 10.4 12.3 9.71 0 6.54 8.15 5.21 7.09 10.5 10.2 11.6 8.41 0.74 4.66 8.97 7.33 8.46 9.97 7.72 9.71 6.56 9.42 0.67 9.94 9.12 9.38 9.61 10.5 9.55 8.89 9.73 1.47 9.91 6.96 10 11.7 0.67 12.1 7.25 7.74 3.62 8.51 10.3 10.2 10.2 12.3 9.98 7.58 9.51 13.1 9.19 9.59 9.78 8.07 9.5 10.4 9.31 7.79 9.27 10.6 1.13 9.56 8.04 6.41 0.67 7.54 4.82 9.74 9.47 12.3 10.8 10.8 10.4 9.65 8.87 9.62 11.3 4.76 5.54 10.6 0 9.04 11.8 9.44 7.32 8.21 8.52 10.1 6.3 10.1 9.31 10.8 11.2 7.16 9.88 8.22 12.6 10.9 10.5 6.8 7.52 12.7 9.7 9.41 0.67 8.93 8.27 8.1 7.25 2.19 11.3 8.52 2.91 11.5 7.27 1.99 11 5.91 6.52 1.99 10.9 11.7 2.79 2.79 0 10.3 12.3 10.3 7.45 7.41 9.13 3.68 7.88 11.3 6.61 10.3 10.7 11.2 1.47 9.3 0.67 10.2 10.6 11.2 9.39 10.5 8.99 12.7 0 12.2 11.8 10.1 8.03 4.14 4.76 10.8 9.41 10.1 7.69 9.72 9.24 8.45 6.42 8.74 9.17 10.3 10.9 10.1 11.1 5.33 7.37 9.17 9.99 12.1 11.2 9.72 11.6 11.3 10.6 6.05 7.04 3.54 10.2 11.9 9.56 10.7 10.9 10.6 4.23 10.4 10.5 11.1 3.39 8.47 10.3 10.1 11.6 9.23 9.63 9.22 9.55 11.2 11.3 9.57 9.67 8.03 9.79 4.52 10.5 7.32 8.91 9.54 11.2 7.69 8.99 5.66 9.49 10.4 8.85 4.85 10.3 4.32 10.4 9.65 6.43 9.8 9.68 9.18 9.08 7.99 8.99 10.8 7.91 8.53 9.59 10 10.3 9.71 2.91 8.95 7.8 9.95 10.4 7.27 9.02 10.7 10.2 9.6 9.37 9.22 12.3 10.9 11 9.22 9.03 10.2 1.99 4.28 4.56 2.19 11.1 10.3 10.6 10 8.55 7.74 8.8 15.1 10.5 9.9 10.8 9.97 11.5 11.3 9.6 11.5 10.1 9.64 14 11.9 8.37 9.16 10.7 10.4 8.45 11.1 7.67 7.8 7.49 9.3 9.81 9.75 10.5 10.8 11.5 9.71 12.2 11.5 11.2 12.4 9.85 13.1 4.85 10.3 12.4 11.1 10.9 10 11.9 7.46 10.6 11.9 4.4 11.5 6.05 1.47 8.53 8.73 10.3 10.6 8.3 11.6 12.6 9.59 0.67 12.4 10.1 3.39 8.52 8.61 10.8 12 9.11 4.99 7.83 6.27 9.78 7.99 7.33 9.01 10.2 8.63 6.3 4.4 9.25 6.46 9.96 8.97 9.48 9.28 11.6 5.68 9.41 8.97 9.88 10.1 4.14 7.58 10.1 10.1 8.5 10.2 8.96 8.95 5.24 7.16 9 7.16 11.7 11.3 10.5 9.97 9.33 10.1 8.04 10.6 10.5 10.2 8.16 9.85 12.5 10.5 4.63 2.36 9.56 3.62 3.62 10 8.08 8.72 5.7 10.2 10.5 10.7 10.2 12.8 2.79 11 10.8 1.13 10.8 9.88 0.67 8.86 10.8 7.81 10.5 8.46 9.88 8.09 11.7 7.2 8.94 2.52 10.7 8.36 9.86 7.57 5.97 9.87 10.4 12.1 9.96 10.8 5.93 10.4 9.15 10.2 8.51 6.71 9.55 10.6 1.47 8.93 11.9 7.32 9.96 11.7 6.8 11.8 11.2 11.4 12.2 11.8 8.44 9.43 8.59 10.5 0 9.98 8.37 8.42 7.88 12.1 6.69 12.8 9.14 11.4 11 7.36 6.23 9.64 8.3 9.93 8.82 11.5 9.08 10.6 10.8 11 11.5 10.3 11.1 10.5 7.99 11.3 11.1 9.32 10.1 8.93 8.76 11.3 10.7 8.24 9.76 9.05 11.2 10.9 8.28 2.19 8.58 8.46 8.23 10.4 2.19 2.19 1.47 7.92 1.13 9.89 11.5 6.8 11.5 9.39 7.99 11.1 9.57 2.36 9.62 7.35 8.96 11.9 9.57 7.81 11.7 12.3 12.2 9.36 8.57 5.98 2.66 4.96 8.6 6.04 11.4 7.07 7.61 4.18 10.7 9.53 12.5 8.92 10.4 3.02 11.2 10.7 9.45 0.67 10.5 11.6 7.2 9.55 5.12 6.23 5.67 1.75 1.75 13.1 3.87 4.91 10.3 3.68 10.6 8.6 8.93 10.7 10.4 9.66 11.3 9.28 12.7 8.97 10.3 10.4 10.6 9.19 3.54 2.79 12.6 9.04 10.4 13.8 8.99 10.5 8.1 7.94 11.1 9.16 7.09 0.67 6.62 10.7 8.42 1.13 9.7 9.73 6.37 11.2 0 8.86 1.13 5.75 7.18 10.1 11.8 10.9 3.12 4.82 4.44 7.05 9.49 8.43 10.5 8.35 9.84 10.6 1.99 0 9.34 9.14 7.92 10.2 0 5.04 5.85 4.23 10.9 9.09 8.94 4.14 11 12.3 8.81 8.77 12.3 7.48 7.45 9.57 10.7 8.43 8.22 8.62 8.53 7.81 8.05 5.37 12.3 7.56 10.6 10.9 9.53 11.1 9.77 4.94 10.8 9.94 10.4 10.1 0 0 1.99 0 11 7.4 10.8 10.5 3.02 9.79 7.23 10.1 4.04 10.4 10.3 10.3 10.3 8.28 8.97 15.3 13.6 10.8 9.11 8.08 8.3 10.5 10.1 9.88 7.81 11.2 9.03 4.85 5.04 4.48 8.13 9.48 10.3 10.1 2.79 9.31 10.5 11.7 9.64 8.15 9.98 9.8 0.67 10 11 3.31 12.3 10.4 7.49 10.5 11.1 11.8 10.9 1.13 10.9 7.22 6.33 7.24 9.49 10.1 10.5 9.91 3.75 6.9 10.6 10.1 6.39 9.48 11.1 8.8 11.1 5.02 3.22 3.75 6.14 2.91 8.27 1.47 9.11 2.19 1.13 2.36 4.85 8.9 5.43 6.84 7.51 8.1 0.67 0 10.3 10.7 8.88 3.68 6.88 6.56 3.81 12.9 8.2 10.9 2.79 12.8 7.26 9.33 11.9 8.4 10.2 10.3 6.6 0.67 9.44 9.19 2.52 4.59 8.21 5.93 2.19 6.72 0.67 1.75 7.19 11.1 10.7 0 3.36 7.27 9.43 8.71 7.46 6.88 9.97 5.7 8.52 8.33 5.65 1.75 13.9 7.92 1.99 10 4.23 6.69 9.39 6.34 8.53 0 11 11.4 8.44 6.89 2.36 4.88 5.52 9.35 0 8.29 12.1 0 1.47 8.67 1.13 0 8.21 9.43 5.04 6.13 2.52 3.47 5.76 8.13 5.37 7.8 9.08 9.58 7.99 2.79 13 1.47 1.47 9.85 2.66 8.31 6.74 9.98 8.48 1.75 4.51 6.1 5.37 0 3.68 9.37 7.66 0.67 4.48 3.87 8.33 3.39 8.69 4.85 7.32 5.47 0.67 10.3 0 7.36 3.81 4.14 8.91 6.41 6.63 3.31 7.86 5.87 8.59 9.37 6.5 0 0 7.42 7.23 7.76 1.75 8.54 1.47 5.07 2.79 8.88 10.3 3.39 10.1 3.75 8.06 1.47 7.17 6.24 1.47 7.06 2.79 0.67 0 1.99 5.17 0 8.77 4.56 0.67 9.9 2.19 0.67 5.04 1.75 4.18 8.63 5.49 8.25 3.22 2.66 2.79 0 7.91 5.35 0 0 1.99 11.2 9.86 1.13 5.81 8.61 5.02 9.71 8.11 9.44 1.99 7.99 11.6 8.87 6.02 10.1 7.15 2.36 7.37 3.54 7.48 10.8 10.8 1.99 10.1 5.21 9.57 7.94 11.4 11.4 7.13 5.98 5.02 2.19 10.8 6.66 8.46 5.47 6.06 1.47 10.1 10.8 10.1 4.14 8.84 10.3 10.4 8.7 9.66 1.13 12.1 10.2 6.29 10.6 11.2 6.71 0.67 12 8.75 7.44 10.6 3.12 11 8.69 8.43 7.68 8.55 10.2 10.8 8.03 9.51 6.34 8.57 3.12 8.27 9.63 11.3 4.52 11 5.95 6.73 3.93 6.43 10.7 10.9 9.26 12.9 8.18 9.01 1.13 9.25 10.4 8.79 7.88 10.3 8.29 7.66 11.8 5.79 6.17 7.49 6.83 9.55 10.6 8.34 0 11.9 6.12 7.21 10.1 7.19 8.7 9.04 6.26 10.1 10.7 7.67 11.5 7.87 9.09 9.13 9.34 11.8 1.99 8.84 10.9 12.6 0 7.18 10.2 9.89 4.32 2.91 5.41 10.1 10.2 4.88 4.4 10.3 0 9.53 0 0.67 2.79 6.3 10.9 5.82 11.7 9.07 7.75 9.74 9.49 10.8 10.4 10.2 10.2 8.36 3.75 11.9 10.3 9.2 9.37 6.32 8.51 6.5 9.82 8.48 7.81 4.69 11.1 11.1 8.26 16.3 9.44 8.75 6.73 6.7 10.7 9.14 10.1 8.85 9.9 6.29 8.99 8.51 11.4 7.67 10.3 6.06 11.7 10.3 10.1 4.4 8.5 10.6 11.1 8.24 11.2 8.59 8.99 9.39 11.1 9 10.3 5.26 9.77 10.8 8.1 9.85 13.1 6.91 8.8 3.98 9.38 4.63 8.27 11.3 10.3 5.51 1.75 4.99 9.35 9.14 10.2 0 8.82 8.72 9.03 8.55 3.87 9.83 7.81 7.35 6.69 1.75 6.97 4.91 9.55 9.9 10.1 11.8 10.6 10.2 7.38 7.29 9.96 10.9 9.76 11.3 0.67 6.83 9.09 10.3 9.64 10.4 10.2 8.78 8.15 3.87 10.6 8.34 11.9 10.9 0.67 8.56 10.4 11 9.58 10.3 8.48 9.24 9.1 8.91 10.6 11.4 13.2 11.2 1.47 7.27 8.58 8.13 9.48 6.42 7.47 4.48 8.36 7.86 5.6 10.7 11.7 11.8 6.72 7.17 9.17 3.54 10.3 12.7 9.56 7.89 12.3 8.04 7.64 11 7.21 10.6 5.17 12.2 1.13 9.51 0.67 8.19 10.9 0.67 7.74 3.93 10.1 10.1 8.62 2.52 9.22 1.13 4.33 4.28 7.13 9.97 11 7.72 6.32 7.39 4.85 5.07 2.79 4.04 5.78 2.19 9.66 7.67 8.16 1.99 10.4 8.91 6.59 8.21 10.1 8.77 6.39 8.97 8.04 6.31 10.1 9.19 8.48 10.9 9.65 1.99 6.91 9.91 9.51 1.47 10.2 0 9.44 7.14 8.44 4.99 8.99 9.67 12.1 1.13 10.6 6.96 11 10.7 8.33 1.47 8.1 5.28 4.63 8.14 9.2 5.78 8.55 10.9 9.98 4.18 11 7.12 9.59 7.6 8.27 7.69 4.66 6.1 12.3 4.96 8.72 10 9.32 11.1 8.88 8.48 9.55 8.68 9.01 11.5 2.66 2.91 1.47 10.2 4.56 4.57 2.36 10.5 5.73 9.3 8.91 10.9 8.6 1.13 9.95 2.36 7.66 3.47 11.3 12.3 7.26 2.36 8.35 3.4 3.98 7.5 8.72 11.4 1.13 6.83 7.42 1.13 7.89 4.4 10.1 4.04 7.56 3.54 8.61 8.63 1.13 0.67 9.18 6.17 2.79 3.02 4.56 0.67 13.2 6.14 7.65 8.48 9.19 0.67 6.02 10.3 8.08 10.5 3.68 2.19 13.7 9.83 0.67 8.51 10.2 15.6 9.57 11.5 9.57 5.33 7.47 9.85 1.75 5.3 9.31 1.13 8.46 4.56 5.79 10.7 10.1 5.19 11.5 7.84 8.23 11.2 4.04 8.1 1.13 2.36 9.54 6.27 9.12 10.1 12.2 16 7.65 9.69 9.4 9.63 12.4 12.3 10.1 10 11 8.17 15.1 6.13 8.15 7.89 9.74 0 10.5 11.4 7.09 4.44 3.62 10.4 9.3 0 0.67 9.12 7.32 10.1 11.7 8.26 9.68 6.24 11.5 5.19 6.01 4.18 10.6 1.75 7.57 11.5 1.75 7.67 7.45 5.58 8.36 10.6 4.85 6.07 9.28 8.28 3.93 2.7 5.47 7.3 3.12 5.17 8.86 9.4 1.13 10.9 0 9.61 7.49 4.88 11.8 8.79 11.3 6.98 3.54 1.13 11.2 5.17 4.94 4.59 0.67 3.12 2.19 9.78 9.92 5.61 8.26 12.3 1.47 1.13 8.11 9.39 8.58 8.35 3.93 4.18 6.85 12.5 10.7 8.42 10.1 7.81 8.3 9.34 11.1 11.3 8.29 5.67 2.19 8.94 9.17 3.47 0 8.63 2.79 6.17 10 8.9 9.04 3.68 3.12 9.51 4.79 3.02 8.38 8.23 9.5 4.14 8.56 2.79 8.93 8.13 6.22 9.4 11.1 1.47 10.2 10 10.4 9.47 3.87 11.3 10.2 8.86 11.4 12 9.93 10.7 10.6 8.51 5.33 2.79 7.5 9.6 9.25 8.58 5.93 8.4 9.47 10.6 5.58 10.2 7.05 11.9 9.76 8.74 1.13 10.3 8.06 8.88 9.73 2.66 11.4 9.43 3.02 4.63 7.81 11.8 10.2 5.14 12.2 0 12.6 8.23 10.7 5.78 8.83 10.8 12.2 10.5 12 11.9 9.08 5.82 10.1 13.6 1.13 3.12 12.7 12.6 3.02 2.36 6.54 10.7 3.98 0 7.79 7.13 3.12 10 4.91 6.23 10.3 8.19 4.75 9.37 11.6 11.2 11.7 11.2 10 12 9.31 3.93 16.7 3.02 1.13 12.3 2.19 10.6 13.1 0 7.78 1.13 9.75 9.73 6.84 8.01 0 2.36 2.36 2.36 6.4 1.75 7.83 4.82 3.47 6.74 1.75 6.79 10.1 4.63 4.76 4.91 3.75 2.52 3.93 0 9.61 11.2 5.73 14.1 12.1 2.79 3.31 4.09 8.72 2.79 9.24 4.66 9.07 8.32 7.82 3.39 7.02 8.03 1.99 5.12 5.54 7.84 5.72 9.23 3.02 7.47 10.5 11 0 8.28 2.91 0.67 3.54 2.19 1.47 5.3 4.59 10.2 1.13 8.72 5.47 7.99 7.25 9.02 3.26 1.13 3.08 0 5.75 4.14 2.52 1.47 7.71 0 5.98 0.67 3.02 9.99 12 8.36 4.76 0 1.75 4.14 5.83 2.91 8.08 1.47 4.91 3.54 10.1 6.61 5.12 3.75 3.13 8.52 5.52 9.06 4.56 5.04 6.25 1.75 2.36 8.4 7.62 0 2.52 5.39 8.66 9.75 2.91 1.47 7.47 7.51 1.13 5.17 6.24 2.36 6.54 4.73 6.69 1.13 9.37 4.63 2.52 0 0 5.45 8.77 0 2.91 1.13 8.61 9.86 5.93 8.79 13.2 6.98 5.98 3.12 7.39 5.39 3.68 6.3 2.19 11.4 3.39 4.82 10.8 1.13 9.39 0 5.45 0.67 5.24 4.23 7.82 7.78 7.65 4.66 8.3 4.69 11.4 6.18 5.81 3.93 10.8 1.47 6.04 8.07 3.39 5.51 0.67 7.74 3.02 1.13 3.02 0 1.47 1.13 6.04 3.22 8.62 4.76 7.69 0.67 6.54 0 6.37 0 3.12 1.47 7.13 4.28 8.7 3.39 4.89 2.79 3.39 4.1 8.61 1.13 1.84 1.47 4.52 0 2.91 1.75 4.76 5.14 0 5.93 0.67 5.58 6.65 5.94 0 6.69 4.94 11.2 7.64 1.47 1.99 2.52 4.97 0 7.35 10.2 7.04 9 8.43 1.13 9.46 0 3.87 6.11 5.35 7.16 5.07 9 8.75 0.67 4.88 8.13 8.9 3.62 3.39 6.46 0.67 8.43 1.13 5.84 9.46 8.72 4.23 9.06 3.68 9.09 1.75 3.54 7.66 0.67 9.13 3.47 2.66 5.75 4.96 8.57 10.7 0.67 7.73 0 10.5 0 0.67 6.05 4.04 7.33 7.77 9.44 5.9 4.36 10.2 0 4.73 9.36 6.1 3.39 10.4 2.79 4.68 5.84 10.3 4.62 4.56 7.42 1.13 3.45 9.62 0 1.75 10.6 5.07 9.39 5.19 5.54 1.13 3.12 5.49 3.93 4.09 8.48 8.72 2.52 13.9 2.66 8.77 6.1 1.99 0.67 8.79 4.04 7 7.76 9.63 2.66 1.13 6.59 3.02 1.76 1.13 8.6 8.45 8.82 3.02 6.15 9.87 8.4 8.21 2.66 1.75 3.02 4.99 5.61 6.53 6.37 7.23 7.63 7.83 2.36 4.59 9.87 12.5 10.7 10 4.79 11.4 9.24 11.5 9.85 10.1 5.58 11.2 9.77 10.5 0.67 2.52 9.4 8.55 9.01 9.01 8.7 9.52 7.34 13.8 8.27 9.53 10.2 5.45 8.22 1.47 10.5 0.67 7.34 5.63 10.4 10.5 10.4 10.3 9.39 8.48 6.23 5.3 6.22 9.91 6.02 10.8 12.6 9.35 1.13 6.98 9.44 6.27 11.1 10.1 2.66 11.8 7.76 0 2.52 10.5 2.36 10.8 1.99 11 1.99 8.63 10 4.69 9.83 7.42 9.66 9.38 12 4.94 7.62 10.6 9.67 7.47 9.81 10.5 8.5 8.6 9.72 7.46 8.97 10.1 7.63 10.8 7.66 10.9 8.73 1.47 6.1 8.71 11.9 9.88 9.35 8.22 9.57 7 9.65 11.1 9.77 9.47 7.03 9.03 1.13 8.65 10.4 9.65 0.67 9.23 10.1 8.07 10.2 0.67 1.99 9.33 0 11.9 3.39 8.06 10.3 9.21 1.99 0 9.03 13.2 4.99 5.45 12.8 0.67 11.4 12.5 10.7 10.7 12.7 12.2 9.18 10.5 9.52 8.01 7.43 8.17 6.91 2.66 14.6 8.53 3.31 8.31 9.75 8 9.29 8.93 8.49 9.55 10.9 9.42 9.87 7.34 8.46 8.65 11.2 11.8 10.2 9.05 2.79 11.8 11.1 9.32 9.91 10.6 3.62 12.1 6.57 2.66 10.7 9.44 1.47 8.14 10.2 9.76 10.1 5.68 10.2 0.67 4.28 4.96 6.88 10.2 1.13 9.63 7.05 5.52 5.94 12 8.82 8.73 7.49 0 5.52 11.2 12.4 9.23 1.99 9.66 10.3 7.77 8.18 11.2 10.4 11.1 6.81 10.9 6.57 10.4 10.5 9.1 7.62 5.37 5.47 9.77 1.75 9.19 3.62 10.2 8.7 8.72 9 8.47 9.92 9.65 7.01 8.88 12.6 9.23 9.42 13.3 9.25 8.04 2.79 5.3 8.49 0 8.51 11 6.89 0.67 1.75 8.9 8.65 7.88 5.75 9.57 0 9.61 8.28 10.9 9.83 0.67 11.7 1.47 9.73 5.87 8.59 10.2 9.32 9.99 9.37 11 7.84 11.3 12 7.79 10.3 12.2 8.8 9.26 8.25 3.62 9.29 4.69 4.73 9.19 6.17 11.1 8.18 1.53 10.8 3.47 11.4 12.5 6.94 3.12 5.12 9.66 7.45 3.93 3.68 12.6 8.96 8.12 1.99 2.66 1.47 17.6 4.99 2.97 10.8 11.8 8.16 14.9 11.1 13.9 10.3 8.27 9.79 12.3 11.2 8.98 4.48 10.8 2.52 7.75 12.8 3.02 14.6 7.81 7.84 0 0 0 7.3 8.88 0.67 11.5 7.46 7.74 10.4 11.8 11.9 10.6 4.59 13 13.8 10.4 7.57 6.79 9.6 10.6 10.6 6.65 12.2 0 5.56 2.91 9.26 8.22 4.36 3.68 3.12 10.7 3.31 9.02 8.25 5.88 10.4 6.12 8.53 11.1 9.22 12.3 9.87 7.56 12.7 5.35 8.48 5.51 12.4 8.07 11.3 11.5 10.2 11.8 10.1 12.6 12.5 10.7 11.7 4.88 7.58 15.5 16.1 15.6 8.89 8.11 12 6.24 5 11 10.1 0.67 8.38 6.68 9.68 5.73 12.2 11 10.2 7.97 4.82 8.08 14.3 11.7 6.14 11.2 6.04 3.93 4.14 8.03 7.96 5.73 9.28 12.3 10.4 9.74 10.8 11.8 8.69 11.7 10.1 12.5 6.51 9.53 9.94 11.6 8.21 8.1 0.67 6.26 9.57 8.52 8.07 4.76 4.69 0 7.9 0 11.3 0.67 8.61 11.8 7.85 13.9 12.1 12.8 11.6 12.5 12.2 11.2 10.8 13.4 0 12 13.1 1.75 6.61 2.19 4.82 4.85 5.67 4.09 3.54 2.19 6.44 3.02 5.76 3.62 0 0.67 4.66 3.87 3.39 2.91 1.75 1.99 1.47 0 0.67 5.17 4.36 2.79 9.89 5.12 10.2 0.67 8.94 0 7.58 0 0 9.33 9.98 1.13 1.99 3.39 11 0 4.18 8.05 10.7 7.64 9.24 11.4 5.35 2.19 10.2 11.1 10.9 10.4 11.6 10 2.79 6.75 7.69 0.67 10.9 11.5 7.51 6.21 8.02 11.2 12.8 13.5 11.4 4.63 10.1 12.1 14.3 10.6 8.27 6.83 15.6 12.6 15.4 5.17 9.41 14.6 11.9 14.8 12.5 4.63 10.4 13.2 8.09 11.4 6.7 3.47 13.8 13 10.2 1.13 1.13 0 1.99 5.82 0.67 8.83 8.86 13.3 7.69 11.9 10.6 3.81 4.14 0.67 0 0.97 5.02 10.2 1.47 1.13 3.02 5.69 8.46 10.8 7.3 1.13 2.36 2.52 3.84 6.4 9.93 7.08 5.61 3.47 5.45 7.04 0.67 0 6.18 4.09 5.72 8.08 10.4 0 8.47 6.61 3.68 8.49 9.91 8.39 8.11 10.3 7.97 6.12 7.19 3.31 6.84 8.95 1.99 0 7.76 0.67 1.13 8.51 8.49 0.67 2.91 4.32 7.17 2.79 4.28 4.29 0.67 6.11 8.68 7.76 0 11.7 9.58 8.91 1.75 8.85 5.26 4.23 1.47 1.99 2.36 10.3 4.04 0 1.75 0.67 8.81 7.37 10.2 0.67 0 3.81 5.43 1.47 6.69 1.13 0 4.59 3.12 6.02 1.99 10.4 7.19 3.81 2.37 0 9.39 7.53 3.87 1.99 2.52 1.47 1.47 5.52 2.79 4.23 7.77 4.96 7.22 3.75 4.52 12.8 4.48 9.78 0.67 9.6 11.4 11.1 10.6 5.3 10.1 0 4.32 5.37 9.36 12 0 6.57 10.8 0.67 5.56 1.75 3.39 8.45 6.59 12.8 12.3 14.3 1.99 4.8 1.75 2.19 6.89 0.67 0 0 10.3 0 6.73 10.4 3.33 10.8 12.5 0 0.67 5.73 0.67 2.91 1.47 12.4 8.05 1.13 8.1 0 1.47 6.43 5.91 0 6.02 5.54 2.19 1.75 8.45 0.67 9.69 3.93 8.07 0.67 2.36 8.97 9.1 2.52 1.75 11.8 1.13 11.3 1.99 5.14 4.04 9.82 1.47 3.22 5.93 5.7 1.75 1.47 8 6.15 6.11 0 5.02 1.99 9.47 0 9.54 3.75 2.52 9.94 12.8 2.19 1.99 3.12 0 10.1 4.63 10.7 6.41 7.39 11.3 4.56 1.99 5.52 7.7 8.93 4.09 8.32 12.4 9.23 0 8.62 0.67 6.04 1.47 11.6 9.93 1.13 8.97 10.7 1.99 8.43 10.8 4.85 0 12 5.37 12.4 9.17 11.6 3.79 8.74 7.61 1.13 0 3.12 1.47 5.6 4.14 7.48 9.08 13.8 6.42 8.48 5.68 4.41 7.31 11.6 4.73 8.47 7.4 0 1.47 8.02 7.63 1.75 1.75 2.52 5.74 2.92 5.93 5.07 0 1.13 8.86 10.7 10.1 9.94 9.5 9.7 11 14.8 5.43 3.02 7.51 8 6.69 12.7 0 6.89 9.65 8.64 9.31 5.26 7.24 9.41 5.45 8.06 10 3.02 3.31 3.31 7.41 9.45 6.76 6.22 1.13 1.75 5.73 8.26 12.1 3.27 7.75 11.5 7.41 16.9 5.61 8.43 8.2 6.36 1.47 7.56 3.75 9.45 10.7 11.6 12.7 0 10.9 9.1 11.4 11.3 11.8 10.5 9.06 7.85 7.81 3.68 10.1 5.78 0.67 12.5 8.82 1.75 8.83 8.86 7.81 7.81 9.79 7.83 2.66 1.47 8.1 0.67 12.6 7.47 4.96 12.4 13.7 9.14 10.5 10.9 5.04 9.23 9.78 5.95 8.99 11.9 11.7 10.5 10 1.13 6.83 7.69 11.4 3.22 13.9 6.56 11.2 7.29 1.99 4.88 0 7.39 7.7 5.58 11.7 7.54 13.2 8.76 9.76 5.04 14 12.6 11.7 11.3 8.03 11 0 0 0.67 12.9 5.47 5.37 11.6 9.64 10.1 3.81 9.88 7.14 10.4 13 6.59 10.7 11.3 8.98 7.23 12.2 10.8 11.3 13.4 9.68 16.2 7.7 5.37 11 11.9 12.2 1.13 2.79 6.25 10.6 2.19 1.13 7.23 10.2 7.6 9.55 6.34 8.94 9.68 6.07 0 6.17 0.67 0.67 6.55 1.47 4.09 6.58 4.3 9.52 7.13 7.76 1.47 0 4.36 4.04 8.73 2.91 4.52 0 5.7 9.19 3.98 2.19 6.9 3.33 8.55 6.39 0.67 6.8 0 3.68 7.46 13.4 3.81 6.77 7.1 9.7 0 9.52 6.91 1.13 2.79 5.87 5.76 7.55 6.94 3.36 1.13 0 3.39 1.13 7.16 7.48 4.79 4.32 11.7 6.4 5.54 6.02 0 4.28 0 0 6.78 1.47 7.72 2.52 0.67 0 9.27 7.09 7.56 0 4.36 13 11.3 1.47 7.02 3.81 6.79 5.72 1.99 7.13 1.13 0.67 4.14 3.12 6.61 1.13 7.14 12.5 4.4 3.81 10 0 9.2 6.68 7.9 0 4.18 12.1 1.75 0 2.19 6.39 5.28 0.67 2.52 0 6.74 4.23 0 5.04 10.8 10.6 7.59 4.73 7.84 0 5.34 9.12 7.33 2.36 12.5 8.85 2.19 11.3 0 2.36 0.67 11.8 1.13 0 6.18 2.79 0 12.8 2.66 1.99 1.47 2.36 4.32 0 11.2 10.3 9.86 10.3 11.1 12.4 12 10.7 8.29 11.2 4.79 11.5 11.8 10.3 1.47 11.3 7.24 10 18.6 8.85 6.26 3.62 13.3 6.46 3.87 9.73 1.13 8.26 3.68 3.98 18.6 3.22 9.16 2.36 0 3.39 8.91 3.47 6.06 11.1 10.7 10.5 2.19 0.67 3.98 3.68 1.75 8.21 7.31 1.13 1.47 2.36 5.28 2.19 6.42 0 4.37 4.99 4.48 2.91 9.08 4.09 1.75 10.1 2.09 8.48 7.77 1.13 0.67 11.3 6.05 9.62 8.97 2.66 8.83 5.35 4.32 4.73 1.47 6.96 3.87 2.79 1.99 5.24 3.75 2.66 5.02 4.88 7.92 3.68 0 12.9 1.99 4.66 8.52 5.19 6.76 4.82 5.91 7.07 3.98 5.97 1.13 6.9 8.17 0 7.7 6.87 8.56 2.52 7.34 7.1 5.54 4.52 4.88 8.08 8.29 0.67 9.23 0.67 4.18 7.58 6.02 10.6 7.54 4.49 2.66 8.38 11.8 8.24 0.67 6.04 3.62 8.35 6.35 6.96 2.19 7.63 1.13 4.4 5.28 0 6.3 11 7.21 7.87 0.67 12.8 4.36 7.49 8.99 0.67 1.47 2.36 3.22 8.2 8.12 1.13 6.12 1.99 9.29 1.13 2.19 1.99 0 5.12 4.36 3.54 2.52 8.26 11.2 6.24 0.67 0 1.99 6.73 3.22 2.91 1.47 5.07 0 6.23 13.6 8.81 5.21 7.44 11 8.98 8.24 12.2 9.46 11.4 1.13 10.3 2.66 7.66 13.6 11.4 12.8 7.49 0 12.3 12.5 12 0 0 5.63 10.7 3.81 11.9 3.39 2.52 7.53 9.82 7.17 6.84 12.6 9.74 7.04 1.13 15.5 11.6 12.3 11.9 4.14 0 7.33 11.4 9.88 13.1 4.23 11.8 13.7 13.2 1.99 9.36 8.69 10.3 1.13 6.42 5.39 9.19 1.47 8.82 8.73 13.7 10.2 12.5 8.71 9.95 5.17 6 5.45 6.51 10.5 0.67 5.95 7.71 5.78 10.6 9.12 11.2 3.02 4.69 0.67 12.1 3.93 4.23 5.73 6.25 11.5 0 7.9 7.51 11 1.13 3.54 5.95 11 10 14.2 6.87 2.91 5.28 9.96 0 0 3.54 8.5 4.81 5.09 6.96 8.83 3.12 4.04 8.14 1.47 7.28 5.81 4.48 8.39 1.75 0 4.88 5.33 9.94 1.13 2.52 6.63 8.13 1.47 12.1 7.75 0.67 2.91 8.14 4.22 7.64 1.99 6.17 7.47 7.71 3.98 7.39 2.19 4.78 1.13 3.98 1.47 3.02 3.12 11.8 1.13 8.42 4.82 4.04 3.02 4.81 0.67 0.67 5.39 2.66 8.8 4.85 7.18 5.41 0 8.47 6.21 1.13 8.46 1.13 9.08 6.91 3.47 8.58 8.25 10.7 7.62 3.12 8.14 0 1.13 2.91 0 4.79 6.74 1.99 10.5 9.77 2.79 0 3.68 6.18 10 8.95 1.75 4.23 6.21 10 0.67 1.75 8.27 6.54 5.37 7.33 4.48 9.33 0 8.09 9.43 12 1.13 7.46 7.67 8.28 0.67 7.36 10.1 2.36 6.41 2.67 4.85 11.1 3.39 8.98 9.77 8.51 8.37 9.84 10.6 11.2 2.36 9.62 6.42 7.07 12.2 10.9 8.96 12.2 2.52 5.47 0 2.66 10.8 6.94 9.8 14 4.44 4.69 8.01 4.85 10.1 3.68 11 14 12.4 7.1 11.2 12.4 10.8 0.67 8.34 6.29 5.24 7.23 10.5 12.1 12.1 8.7 9.59 10.4 10.8 9.92 8.23 10.2 5.28 9.01 3.22 11.8 9.7 0 5.9 10 7.19 8.61 2.36 13.4 6.85 9.49 8.6 9.65 9.76 10.3 8.64 8.78 7.57 7.22 7.99 9.05 13.3 2.36 5.12 9.4 8.82 11.8 8.13 5.98 11.4 1.99 3.02 6.96 0 6.56 7.27 5.04 3.02 12.1 4.99 0 7.95 8.34 5.12 10.4 6.46 8.93 1.13 12.1 11.3 6.45 11.8 11.8 10.9 6.42 9.81 11.1 4.91 4.85 13.6 10.6 11.1 12.1 10.8 9.96 11.5 11.1 3.68 11.4 9.3 3.47 10.6 12.4 10.1 10.6 8.9 9.89 8.94 9.67 9.49 10.5 4.98 7.38 9.86 7.69 7.04 8.51 6.73 5.6 10.2 8.48 9.92 9.52 11.3 9.88 6.86 1.75 7.22 11.2 8.32 9.93 9.72 10.3 6.44 10.8 5.39 6.42 11.9 9.61 4.94 7.25 9.38 8.88 6.94 6.37 7.86 9.3 9.01 8.26 11.5 10.7 6.34 8.65 12.9 10.4 0.67 8.73 4.91 8.46 12.6 9.99 6.09 9.06 8.87 8.07 11.1 10.2 10.5 10.7 5.04 6.63 8.07 11.8 10.4 7.72 2.79 6.67 11.6 2.52 0 3.54 11 1.75 7.18 13.2 7.61 7.72 3.54 6.92 7.4 5.72 4.23 9.98 7.52 6.06 10.1 1.13 6.12 9.04 0.67 10.5 4.91 9.19 9.54 8.79 2.66 0.67 7.15 1.75 5.82 10.5 9.25 2.19 5.52 8.62 11.5 0 7.6 10.4 9.66 0 5.64 5.47 9.56 9.27 3.68 1.47 1.99 1.13 7.46 0 10.5 1.13 1.47 4.28 9.03 9.68 3.31 7.91 9.81 4.38 8.02 2.89 3.68 6.79 8.79 10.7 6.06 0 8.02 3.31 6.69 7.71 2.91 8.02 0 0 9.24 9.78 1.75 3.31 4.99 2.66 4.85 0 7.63 8.14 8.99 1.47 7.51 6.33 8.24 4.14 12.2 0.67 7.67 2.52 5.48 5.68 3.31 5.09 8.56 6.46 0.67 4.82 7.33 5.24 3.22 5.62 5.07 0 6.86 6.17 2.99 3.31 3.47 0 1.47 2.66 1.99 1.47 11.2 1.99 8.02 7.55 2.52 7.67 1.13 5.37 7.41 9.99 0 0.67 1.75 0 0 1.75 7.52 3.39 0 6.95 6.53 2.36 1.13 12.8 1.99 8.95 8.47 0 7.06 11.8 10.1 10.2 2.91 7.97 6.98 4.66 8.8 14.1 4.73 6.59 4.99 10.4 4.23 10.1 4.76 3.54 2.36 10.7 13.4 10.3 4.22 10.3 8.88 11 9.98 9.48 8.66 7.5 0 9.28 8.99 9.44 9.98 7.41 1.75 8.72 9.63 6.59 9.47 9.02 13.5 11.5 9.57 5.09 6.77 10.3 6.82 1.13 8.1 12.3 10.2 3.93 12 8.03 2.36 8.48 15.9 10.7 5.57 9.31 1.47 6.75 13.7 8.23 0.67 12.8 11.5 11.8 11.4 11.5 10.6 6.25 3.81 9 11.2 11.2 9.99 8.56 8.34 1.13 11 9.16 13.3 9.34 8.9 7.92 12.6 5.24 11.5 3.47 2.52 11.6 11.9 10.4 12.7 12.9 11.8 8.46 10.8 6.72 0.67 10.4 9.65 7.44 9.3 13.9 8.22 9.49 9.06 8.78 10.8 9.28 11.2 9.95 9.19 9.22 8.17 10.6 11 9.83 8.64 10.1 9.03 10.4 10.5 10.1 9.99 10 10.5 11.5 10 9.19 10.4 10.6 9.15 10.8 10.1 11.2 9.09 10.6 9.93 10.2 10.1 10.1 9.23 10.2 9.75 12.4 12.8 11.1 8.26 6.24 5.63 8.17 4.94 6.58 0 0.67 3.62 11.7 9.66 7.54 7.92 5.7 9.13 8.67 9.72 14.3 9.95 4.44 10.2 7.85 4.04 9.26 9.4 6.88 7.3 12.8 2.19 12 9.89 9.11 8.2 10.8 10.8 9.93 11.1 9.49 7.35 8.19 9.47 9.86 11.1 9.6 1.13 9.78 8.36 9.8 8.45 3.12 11.5 11.2 6.99 8.4 9.09 3.81 9.16 5.49 2.36 10.2 5.87 4.63 7.7 13 10.9 12.6 8.7 8.69 8.42 11.4 7.62 2.66 10.8 12.2 2.79 7.21 10.1 10.3 9.16 11.2 12.3 13.1 7.33 7.29 2.36 12.1 2.19 9.18 8.58 10.5 3.31 12.9 4.76 0.67 13.8 5.24 6.76 5.56 0 4.44 7.77 9.34 11.2 6.11 11.6 8.03 1.47 10.1 6.37 4.09 4.73 12.7 10 10.6 1.75 7.51 2.91 8.26 0.67 0.67 4.66 0 6.88 5.14 4.4 4.66 7.15 11.8 10.1 12.6 10.2 11.3 6.76 11.9 8.44 3.68 7.58 8.51 12.1 5.54 3.22 8.82 4.63 2.19 8.51 13 4.09 13.4 9.06 1.13 6.55 10.3 8.39 5.89 2.91 3.47 0 13.6 9.75 9.36 12.4 9.49 1.47 12.8 7.29 1.13 4.28 1.75 2.79 4.36 1.47 0.67 10.9 9.18 13.3 5.28 5.85 8.24 8.68 8.53 1.47 3.47 8.15 8.71 11.6 8.63 8.79 7.96 3.31 1.75 11 3.75 10.1 3.22 6.85 3.87 12.1 10.8 9.43 3.39 3.87 6.53 5.16 6.3 9.94 9.84 7.64 6.45 9.49 14.6 3.63 6.2 12.2 0 2.52 1.99 11.4 11.3 12.6 9.46 12.2 9.51 8.74 4.79 13.2 9.52 8.2 9.69 10.7 8.33 5.35 8.59 13 12.6 11.6 11 13.8 0.67 5.56 10.9 9.56 11.3 2.04 9.35 10.5 2.66 5.65 9.93 11.9 10.1 2.66 11.4 8.58 2.79 10.4 9.84 8.52 1.75 4.52 0 2.19 10.6 11.4 11.8 8.47 10.7 9.68 8.47 0.67 1.7 1.99 12.7 2.66 6.38 8.9 3.02 4.44 2.66 10.1 11.6 8.81 8.3 9.72 11.2 8.17 10.2 8.22 13.2 5.82 1.47 12.6 0 5.94 2.52 6.59 9.67 10.9 12.2 10.5 10.6 8.26 8.77 8.02 7.34 7.83 8.42 10.1 8.79 9.03 5.85 9.66 7.15 10.8 8.54 11.2 8.45 7.11 9.01 7.87 9.11 10.8 6.94 8.4 10.1 7.57 10.2 6.86 10.9 9.86 9.73 10.3 10.5 8.81 11.8 6.49 8.79 6.12 11.8 4.32 6.32 9.17 10.2 9.85 5.19 6.6 8.52 2.19 9.32 10.3 9.22 9.94 9.77 9.26 10.6 7.27 11 7.72 9.97 10.1 10.9 10.6 10.2 11 4.09 8.03 1.47 2.11 1.13 9.29 5.02 7.71 8.75 8.18 11.6 8.46 9.56 6.92 7.39 9.6 10.3 11.1 6.3 8.34 8.39 9.22 10.5 6.98 11.9 10.6 10.3 11.2 8.25 9.81 9.51 10.1 10 9.93 9.76 9.53 11.5 7.65 9.35 11 9.51 9.77 11.4 3.81 9.5 10.2 7.29 9.19 10.8 9.64 7.44 8.12 7.72 9.16 7.89 11.7 9.95 10.2 7.93 8.42 4.95 11.3 0 10.4 11.4 7.56 9.84 11 3.62 7.97 8.65 10.7 4.4 8.61 2.36 5.93 2.91 7.89 7.56 6.62 6.26 7.8 7.85 9.1 8.9 8 8.01 10.1 10.4 7.62 11.8 8.74 7.37 8.68 9.31 11.5 3.98 10.5 4.76 10.1 10.2 8.58 5.67 2.76 0 0.67 9.12 6.39 9.73 6.88 7.75 7.02 13.1 9.63 8.89 10.6 0.67 10.8 9.85 4.23 6.82 9.25 8.12 12.7 10.5 9.55 9.23 8.14 7 10 3.31 10.8 9.38 8.11 8.41 10.7 6.01 9.5 9.6 9.53 3.32 4.14 1.47 10.8 12.1 10.5 12.1 6.82 3.39 5.93 10.9 9.33 9.12 8.51 7.31 9.39 9.85 5.26 1.75 9.5 8.29 9.67 8.55 9.85 8.18 6.16 9.3 10.1 7.67 10.9 10.1 10.7 6.93 8.32 11.1 1.13 8.48 9.84 2.52 5.39 5.19 4.32 9.54 7.5 1.13 9.17 5.63 9.03 9.55 7.85 9.8 9.19 11.2 10.2 5.54 10.7 4.52 11.2 7.51 4.56 4.99 11.1 9.41 4.66 5.7 9.32 9.27 11.2 10.5 9.61 0 10.1 0 3.12 8 10.1 9 9.29 1.13 2.79 12 8.2 9.52 2.66 10.9 8.62 8.25 9.89 8.49 9.63 9.03 6.31 7.85 11.1 1.13 8.08 12.2 10.6 9.15 3.22 8.5 6.43 8.03 10.5 9.19 11.2 5.14 10.5 9.64 8.2 7.13 6.1 6.41 10.6 7.79 8.28 7.55 10.9 10.3 1.47 9.76 11.1 10.3 7.72 9.46 7.49 1.47 11.1 8.58 10.3 11 1.47 9.21 5.94 9.4 7.14 5.43 10.3 9.7 7.77 0.67 12.7 6.23 6.63 11.4 1.99 9.54 9.48 11.2 10.5 9.16 10.7 8.68 11.4 9.8 8.94 9.23 10.9 9.95 10.9 9.36 11.9 9.23 8.77 8.74 8.58 4.32 11.3 10.1 8.6 9.13 8.93 9.81 9.52 9.77 5.54 8.08 8 5.87 10.2 9.57 8.51 8.97 7.95 7.39 8.98 8.28 9.56 8.55 8 8.91 12 10.4 0.67 7.34 7.74 4.09 6.41 8.06 10.5 6.63 9.46 10.4 4.14 11 10.3 9.42 8.92 2.79 11.7 10.3 12 8.67 9.51 9.93 11 9.55 9.73 11.6 9.69 9.97 5.43 10.5 9.66 11 9.35 10.8 10.1 7.9 11.3 7.64 1.47 6.78 9.41 12.2 10.1 6.58 12.2 8.82 10.8 9.03 8.12 10.9 10.7 9.99 8.59 8.63 9.18 10.1 10.7 10.2 9.2 6.27 8.56 8.41 11.2 8.77 5.04 9.8 8.4 6.39 7.72 5.21 10.7 8.6 10.3 7.62 11.5 4.14 11.6 5.19 7.22 6.39 9.23 3.63 0.67 9.31 8.28 9.75 9.12 10.4 10.4 11 10.7 8.98 7.52 5.35 8.1 6.14 5.37 10.7 6.95 10.7 8.46 0.67 11.7 3.22 8.39 10.7 11.6 7.91 10.8 1.13 10.2 8.24 1.47 1.47 6.71 9.11 3.87 10.6 8.32 9.11 0.67 10.4 6.34 10.9 9.96 8.79 3.31 3.47 7.84 9.75 0 8.9 10.1 8.97 11.9 9.75 10.7 11.8 5.88 7.24 4.87 9.14 9.95 7.65 9.48 10.3 9.43 8.03 9.93 6.68 8.48 7.28 9.75 8.63 0 0 9.1 5.95 10.1 10.2 9.89 7.79 10.9 9.7 2.36 9.94 10.5 10.2 8.44 11.9 4.82 9.61 12 14.3 11 8.3 10.2 13.8 5.47 0.67 12.2 10.4 8.82 11.1 14.1 9.9 8.89 4.85 1.13 3.54 2.66 11.4 2.36 12.8 3.62 8.52 9.86 8.28 7.77 10.3 11.7 1.99 8.78 6.45 7.3 16 11.1 12.4 11.4 10.7 8.81 4.69 8.4 8.25 10.5 7.67 7.78 2.19 10.1 9.95 9.3 11.4 8.91 9.01 12.1 9.64 3.93 9.15 10.9 10.8 10.9 9.19 9.47 1.13 7.65 8.32 11.4 13.3 10.5 8.03 0.96 15.9 8.96 10.1 0 8.94 5.35 8.97 10.1 9.59 12.5 9.96 11 6.73 11.3 3.31 10.3 7.99 10.1 4.4 6.47 2.19 8.54 6.17 4.52 3.87 9.69 10.6 2.19 6.83 7.51 10.6 8.73 9.75 11.9 15.5 2.19 3.39 8.31 7.37 3.92 5.41 1.47 10.9 12.2 10.3 2.79 11.1 9.71 1.99 12.4 10.2 7.24 13.7 11.7 10.4 12 11.1 1.75 10.5 1.99 10.5 8.99 11.6 7.93 8.77 0 1.99 11.2 12.2 8.93 10.8 7.79 7.38 7 8.48 4.79 4.28 0.67 1.75 4.52 11.6 5.19 4.94 3.68 12.1 7.83 10.7 9.99 7.7 1.13 5.52 11 13.1 7.89 10.3 9.49 8.37 7.81 10.5 9.86 10.4 9.55 8.14 10.9 10.6 6.34 9.7 7.51 2.66 2.36 6.64 6.09 6.38 1.13 7.89 0.67 0.67 7.77 7.52 4.69 8.77 5.52 11 10.1 10.7 0 9.81 10.7 5.19 3.09 6.98 0 8.6 9.32 7.21 8.71 9.1 9.65 9.01 12.1 10.4 7.24 6.39 7.95 8.27 7.89 9.79 11.8 10.3 7.03 4.89 10.7 9.07 13.4 11.4 10.3 1.47 1.99 9.1 6.89 7.48 11.7 6.76 7.21 9.51 9.59 3.98 8.25 9.42 8.46 10.3 9.52 9.66 14.2 11.2 1.13 9.47 9.69 3.54 2.36 10.2 9.34 8.37 10.3 5.36 10.6 4.36 8.49 9.66 7.08 5.91 10.7 11.5 8.98 11.3 8.56 9.14 0 2.36 10.1 9.73 11.4 9.65 4.44 10.5 8.26 0 10 10.2 9.8 11.2 4.85 10.8 12.1 8.22 10.1 9.31 5.67 10.5 7.98 10.1 6.02 10.7 6.45 9.58 8.8 9.52 9.22 10.7 9.64 4.63 10.7 9.81 6.54 10.3 11.3 3.54 8.41 5.88 7.14 9.77 7.93 9.46 6.1 5.07 9.15 9.73 6.19 9.27 8.88 9.15 10.2 8.77 8.23 6.49 8.79 8.93 9.66 9.71 10.9 9.54 10.1 9.08 8.64 9.34 7.05 10.2 7.67 6.79 3.02 8.82 6.32 1.47 7.04 9.55 7.71 7.02 8.02 1.13 10 2.66 11.7 11.3 10.1 7.83 2.91 9.95 7.93 7.36 10.3 12.2 11.1 3.22 8.66 4.96 11.4 8.57 2.66 9.23 9.65 9.61 8.39 12.1 4.23 8.76 11 8.7 6.77 9.06 5.72 9.27 10.2 1.13 9.91 10.8 8.44 10.1 8.94 1.75 4.23 10.5 1.47 12.1 9.99 1.99 9.27 12.4 9.51 10.2 3.31 1.13 11.7 2.52 3.93 1.99 6.38 6.9 8.15 11.6 4.14 7.57 9.69 9.99 1.13 9.95 9.61 12.6 8.75 7.78 8.44 10.3 13.1 10.1 10.3 10.1 5.84 9.01 5.41 8.4 9.94 8.52 10.3 8.54 6.99 6.63 6.7 9.03 13.4 9.44 4.36 10.2 10.2 8.76 6.61 11.5 7.87 8.36 10.5 7.57 9.65 6.07 1.13 6.8 0 7.61 6.7 6.11 1.13 9.42 8.3 9.72 10.7 4.32 10.1 8.66 10.7 5.91 12.9 6.31 10.2 8.38 8.01 10.7 9.46 6 5.97 9.55 7.31 5.51 8.22 9.66 10.6 10.4 10.4 7.48 9.83 0 10.9 9.41 12 10.4 10 10.3 8.11 6.86 9.14 9.05 8.92 7.62 9.17 9.25 10.5 8.78 10.6 7.06 8.69 11.1 10.8 9.26 9.66 9.79 9.05 7.93 10.1 2.52 7.05 7 3.39 7.67 8.94 7.13 9.68 3.22 10.4 9 9.51 7.08 10 10.6 7.83 11 10.3 9.26 11.7 6.18 6.14 8.42 11.6 9.07 11.6 8.95 15.4 9.16 9.71 7.08 8.13 8.68 8.77 9.99 3.02 8.4 9.78 10 10.8 5.93 8.86 3.75 9.1 9.95 9.21 9.1 9.08 9.23 8.12 8.8 7.51 8.36 7.05 8.52 6.44 11.3 7.52 11.3 6.82 9.18 5.9 8.93 0 9.47 8.35 6.63 8.06 11.7 10.6 8.1 9.94 8.16 11.1 4.99 6.78 7.4 8.94 9.78 7.57 9.2 4.91 8.29 0.67 11.7 12.4 7.95 5.73 11.5 6.57 3.02 4.28 10.7 9.83 11.7 12.9 12.2 9.73 9.8 9.04 10.7 7.47 7.88 7.87 11.2 9.71 11.4 7.76 9.89 8.26 7.97 9.44 10.1 9.09 4.88 10.6 0 1.47 8 5.75 9.96 4.32 3.22 8.99 8.44 9.55 11.1 9 8.3 9.26 9.83 3.31 9.74 10.1 8.47 9.78 10.7 11.2 9.35 8.54 8.01 10.1 9.7 9.51 6.09 10.7 8.32 7.56 4.69 3.99 4.44 7.29 4.66 9.59 1.99 10.8 8.58 5.52 7.68 10.3 6.22 9.79 10.2 10.4 9.24 8.6 11 7.41 2.91 5.68 9.43 6.12 8.74 8.02 8.22 7.54 7.79 11.2 3.98 9.87 8.07 9.79 9.97 9.24 7.81 6.16 10.4 9.62 9.78 7.88 9.76 7.61 7.01 10.2 7.81 10 6.99 10.1 2.79 8.89 10.5 7.42 8.96 2.19 9.38 8.04 7.71 8 6.16 1.99 9.28 11.2 9.34 9.08 9.41 9.65 7.67 8.86 10.3 9.66 8.86 12.1 3.75 6.89 8.84 9.83 9 10.2 9.48 10.5 11.2 10.2 11.3 9.03 8.8 9.98 7.25 9.44 9.86 7.94 7.97 8.14 10.8 9.99 5.56 5.74 9.55 8.82 6.94 12.8 8.77 8.96 9.99 9.91 4.09 9.33 11.3 7.11 10.2 4.85 10.6 7.66 10.5 6.77 0 10.2 9.84 9.31 8.13 3.93 11 8.98 8.17 3.12 8.68 10.4 9.4 11.8 7.5 10.9 2.79 10.4 7.77 7.87 9.42 10.7 9.25 7.03 8.83 9.74 12.7 4.28 8.55 7.52 7.15 7.14 11 9.88 3.87 8.67 10.4 9.91 2.66 9.98 11 11.8 8.94 10.6 12 9.83 8.97 5.73 9.33 9.61 6.76 7.31 10.5 10.5 9.44 9.15 9.73 8.46 9.03 9.47 10.2 8.91 6.67 0 9.43 6.02 9.03 9.59 3.12 8.6 8.91 11 10.1 10.9 2.79 9.04 10.5 11.9 6.01 8.44 8.09 10.2 9.13 8.56 1.47 3.54 9.44 7.88 4.17 11.2 8.89 10.9 0 10.1 7.88 10.7 11.1 8.53 8.85 6.4 5.84 8.27 8.78 9.49 0 9.5 10.3 4.69 7.37 8.77 10.3 11.3 7.77 10.5 8.4 9.07 5.72 5.61 3.75 8.3 8.37 8.41 10 8.99 4.32 8.57 7.39 10.3 8.72 9.6 9.64 6.17 4.56 7.6 7.92 9.63 8.53 8.99 11.1 3.12 6.9 10 10.4 10.6 6.94 10 8.66 10.4 9.8 7.04 8.21 8.19 4.91 7.01 3.54 8.49 10.3 8.84 7.53 11.8 6.57 9.97 11 11.1 9.54 6.57 10 8.36 10.5 6.82 7.58 12.4 10.3 4.66 8.19 3.39 7.45 9.39 6.71 3.47 0.67 2.36 7.8 5.65 9.59 8.81 6.26 0 7.79 8.44 8.92 10.3 9.73 10.6 7.24 2.19 9.51 5.47 10.3 9.71 8.21 5.67 1.13 7.77 10.5 8.59 1.75 7.44 4.18 6.79 0 5.28 0 8.37 6.12 6.02 9.13 10.7 7.2 3.93 0 7.66 9.26 3.03 4.56 8.1 0 0.67 7.58 8.19 8.56 9.69 7.75 10.7 6.01 4.36 9.69 7.13 10.3 9.18 12.1 3.12 11.2 9.62 7.47 5.33 10.2 9.9 9.64 10.2 5.52 9.67 9.1 6.68 0 12.4 9.34 8.9 9.34 9.85 0 9.46 6.48 8.97 11.7 12.9 2.19 9.64 8.53 7.87 7 7.49 9.7 10.8 9.91 8.69 9.69 9.61 10.3 9.7 11 8.44 10.6 3.62 9.1 8.38 8.84 9.13 5.6 8.76 10.1 5.07 8.83 8.95 11.1 7.84 9.5 5.43 8.88 8.63 10.7 9.21 8.48 11 9.99 9.95 8.68 10.6 7.51 10.3 11.2 10.6 10.3 6.47 9.17 10.1 11.8 10.6 7.86 10.6 8.02 9.6 10.8 7.38 8.49 9.97 6.25 8.36 10.5 9.73 11.5 10.3 8.57 10.5 5.73 11.4 8.5 9.06 4.73 9.42 9.98 10.5 2.91 11.4 6.34 12.8 8.49 8.91 9.07 8.79 10.7 9.02 10.3 8.05 10.1 4.56 3.47 8.77 10.5 8.59 10.3 9.74 9.28 11.3 5.37 5.98 9.12 9.82 10.3 7.96 10.1 11.7 9.37 7.46 5.73 8.86 10.5 11.7 10.7 9.31 11.8 8.83 9.86 9.04 9.12 9.51 9.83 12.8 10.8 8.7 8.8 9.17 10.4 1.99 11.4 9.73 8.74 7.89 8.43 8.84 8.85 10.6 9.91 4.28 10.7 7.67 11.7 10.8 8.33 6.84 4.18 10 8.1 10.3 8.82 8.23 7.03 7.75 6.52 7.17 8.03 9.06 10.5 8.67 10 3.47 8.11 9.23 8.24 5.58 6.92 8.53 9.04 9.53 9.19 6.8 8.22 4.66 8.61 10 5.7 9.22 10.1 3.98 12.9 7.24 9.68 6.62 9.6 1.47 4.23 9.77 10.1 2.36 9.96 8.42 1.13 9.45 8.79 5.02 9.76 10.2 10.1 8.58 10.1 11.5 11.5 7.54 8.87 9.68 10.1 4.28 9.7 4.14 9.26 11.1 8.15 8.73 8.88 7.92 7.86 9.32 10 2.9 9.81 8.14 8.88 6.51 11.2 0.67 10.3 9.98 10.1 9.84 8.38 0 7.5 3.68 10.4 9.68 8.47 5.04 5.61 11 1.13 3.39 0 12 6.47 8.73 10.7 0 11.1 8.9 7.48 10.1 9.45 9.99 10.2 6.49 10.2 9.07 13.2 6.91 10.5 8.98 8.31 10.3 4.09 12.2 8.57 5.7 8.37 3.02 7.36 4.36 12.1 11 8.26 6.76 8.95 11.9 3.47 8.94 9.21 11.3 11.3 12.2 12.1 10.6 6.63 10.2 9.45 9.19 9.53 7.54 1.99 8.49 1.75 10.5 8.48 9.35 3.68 11.8 9.75 10.5 11.2 9.15 11 10.3 1.75 7.27 7.69 5.49 10.1 8.92 4.07 5.61 10.1 5.04 5.13 3.13 5.48 3.47 4.86 6.96 6.24 2.36 3.68 10.9 3.24 4 1.47 4.67 3.81 9.17 0.67 5.09 7.52 5.76 3.62 4.28 6.51 5.45 4.44 4.73 9.95 2.36 6.01 4.09 3.75 3.22 0.67 7.81 2.52 0 12 0.67 9.93 6.49 7.84 8.63 5.09 9.41 13.7 0.67 3.62 7.14 5.04 11.7 1.13 8.91 10.6 3.98 9.93 8.36 6.83 10.3 10.1 4.08 9.74 12.7 5.17 8.11 8.29 11.2 7.12 10.3 1.13 0 9.08 9.45 9.65 9.97 8.99 8.96 7.76 7.66 10.4 10.8 0 10.6 6.97 3.39 9.27 6.69 3.68 11.1 3.39 11.1 4.88 0 13.7 8.78 5.24 9.03 9.48 3.47 8.24 11.1 7.8 10.2 7.37 11.2 10.6 9.23 8.01 9.19 8.64 3.62 1.13 5.26 1.75 9.05 1.13 10.5 3.31 11.3 8.87 15.9 6.52 0.67 10.2 10.3 11.2 11.4 11.5 6.93 8.24 10.6 7.89 11.4 8.87 9.98 7.86 1.75 10.9 11.3 12.1 12.4 10.7 10.4 12.2 11.2 6.44 5.47 10.6 10.7 9.32 10.6 7.06 1.75 11.5 9.22 11.6 9.32 11.1 10.4 5.67 8.71 10.8 11.2 6.12 7.99 9.05 8.24 9.29 6.07 8.95 11.6 4.73 8.51 10.2 3.54 11.8 10.3 9.02 9.73 11.5 9.42 5.65 11.3 10.6 11.3 10.6 9.96 8.5 9.53 5.67 9.62 8.24 9.61 8.48 10.2 11.6 9.39 9.64 4.63 3.54 9.36 8.64 11.7 3.02 9.92 0 9.92 7.04 11.1 10.7 8.59 5.84 5.84 10.8 8.94 5.04 8.28 9.44 5.94 7.37 9.57 10 9.51 7.86 10.8 6.6 9.7 9.52 7.32 11.8 6.36 0 8.98 7.11 7.55 11.3 9.22 10.9 1.13 10.3 10.5 10.6 11.5 9.01 7.06 1.47 8.71 7.33 9.06 10.9 9.5 11.1 11.3 10.2 3.87 9.78 8.97 1.75 11.4 11.7 13.1 8.75 10.5 7.66 10.5 11.7 3.62 10.9 3.54 10.6 0 7.6 8.46 10.6 10.8 3.31 8.97 8.96 9.81 2.52 6.49 8.15 9.73 10.1 12.2 2.19 8.29 7.06 9.79 9.97 9.92 7.89 7 8.49 8.09 9.17 11.6 11 10.9 5.79 10.4 1.99 11.8 10.7 12.7 7.31 9.87 8.22 10.7 8.23 10.1 5.21 11.9 10.7 6.89 8.73 4.14 9.68 5.43 10.4 4.44 2.66 7.28 11.6 10.9 9.42 10.7 9.06 11.6 10.9 10.3 6.3 8.3 9.82 9.99 9.47 7.77 10.3 4.09 8.97 11.5 10.8 0.67 8.74 5.87 7.73 9.08 11.5 11.2 6.84 10.9 8.08 9.27 6.49 8.91 9.72 9.44 10.1 10.5 3.81 11.5 10.9 9.62 8.91 9.7 8.52 9.18 3.81 7.64 13.2 6.37 11.1 0 2.19 8.77 11.4 7.09 1.47 4.14 8.7 9.15 6.6 6.23 7.06 7.42 4.4 7.76 0.67 6.11 8.31 4.96 5.3 12.9 9.15 5.56 4.14 2.79 8.12 4.14 0.67 1.99 11.3 8 0 6.94 8.53 9.52 7.75 10.7 3.87 10.4 6.51 9.97 8.96 11.2 10.7 12.5 8.65 10.5 10.9 11.5 1.13 12.6 3.75 0.67 10.1 8.49 10.3 9.12 0 3.54 9.47 9.03 4.14 8.39 7.11 9.94 0.67 3.12 11.7 10.3 1.75 10.6 9.8 6.7 7.39 4.14 6.24 9.55 9.78 8.46 5.3 3.12 9.06 11.3 8.63 6.33 10.6 9.52 8.49 4.14 9.98 2.19 10.5 3.12 3.87 7.52 9.12 9.16 11 7.27 8.32 10.3 10.9 8.73 9.07 7.66 11.5 6.63 9.84 8.52 7.77 1.55 1.75 0.67 1.13 11.6 8.54 7.37 11.3 11.6 10.1 3.87 6.18 7.08 7.27 6.4 11.1 0 9.05 9.15 5.91 7.12 7.4 6.68 9.59 8.84 8.6 11 0 8.12 8.55 7.89 7 12.1 8.19 10.7 3.02 7.94 0.67 9.08 10.3 6.23 13.4 8.93 4.32 10.9 4.48 1.13 4.56 6.11 2.66 11.1 7.93 0.67 9.97 10.8 9.56 9.46 10.6 9.88 10.4 9.34 6.34 8.6 5.17 4.36 8.69 9.17 4.63 8.84 10 6.45 9.44 11.2 6.63 11.4 10.2 6.3 11.1 2.79 8.05 9.76 9.76 8.98 8.46 3.98 7.92 0.67 12.1 9.1 3.39 10.5 12.3 6.05 4.82 2.36 10 9.15 9.96 12.2 9.12 8.68 1.75 8.93 8.49 6.15 9.67 10.9 11.1 10.6 8.78 8.01 9.14 8.4 6.14 7.42 12.5 5.02 8.24 8.56 12.3 10.9 7.76 5.51 6.58 1.99 8.98 1.13 6.82 6.84 5.37 9.61 8.45 8.89 7.71 9.77 5.17 0.67 10.9 8.6 8.39 9.15 10.6 6.56 8.78 11.7 9.63 9.09 4.77 5.93 4.04 5.22 4.82 6.51 7.39 9.21 11.4 7.84 4.09 9.88 9.99 6.71 3.81 3.75 7.56 0 10 8.02 3.02 9.17 7.51 8.95 6.34 9.14 9.89 9.19 9.11 9.37 10.6 9.36 7.3 10.9 11.1 11.6 9.1 11.6 8.4 1.99 11.4 8.06 9.88 9.88 2.36 11.9 0.67 6.01 6.51 7.85 11.2 9.94 4.27 3.39 6.83 8.57 8.6 6.83 10.2 13.5 8.11 6.58 7.53 10.9 7.4 4.36 3.87 9.64 6.77 3.54 3.39 9.59 8.31 2.19 9.41 8.28 8.61 11.4 7 10.2 14.4 4.04 10.7 10.7 9.74 7.15 7.02 9.6 9.97 9.57 8.35 7.02 9.57 12.1 8.84 9.89 8.5 10.4 7.79 12.2 11.9 4.52 12.2 2.79 6.55 9.98 10.5 9.37 5.47 4.23 10.5 9.75 9.77 7.28 10.3 10.1 5.68 5.58 7.43 4.4 5.94 8.43 8.26 7.29 8.01 6.39 10.3 10.8 10.8 9.43 1.75 10.1 8.36 10.2 11.1 10.9 9.6 8.96 9.35 4.63 10.8 1.13 0 11.6 8.87 8.55 12.1 10.8 10.5 4.14 0.67 5.39 8.89 10.5 11.8 8.17 12.1 7.68 9.19 8.83 8.63 10.9 9.64 8.68 11.6 13.3 9.76 6.58 8.33 8.74 12.6 11.5 12.4 8.07 7.23 5.93 4.48 6.48 6.47 11 3.39 11.3 9.91 11.2 8.83 11.1 12.6 10.6 11.4 13.3 9.85 11 0 7.92 10.1 10.3 11.8 3.39 8.57 2.19 12.2 11 4.76 5.76 7.41 10.7 7.46 2.91 3.93 11.2 8.28 6.95 10.7 7.71 6.02 9.74 8.22 10.5 10.7 8.66 9.88 10.5 7.54 10.3 10.2 8.23 0.67 10.8 9.58 10.7 0.67 8.28 8.13 9.6 10.2 9.8 6.78 9 11.9 0 4.99 11.2 10.4 9.39 6.61 11.4 0 3.57 2.19 11.8 0 5.87 1.99 9.74 9.35 1.47 2.75 5.75 1.75 11 10.1 7.13 5.17 11.3 8.66 4.52 11.8 9.65 8.57 4.76 11.5 9.09 10.3 9.39 8.64 8.6 8.76 8.97 10.2 0.45 8.3 10.9 7.62 5.63 0 9.63 5.7 7.11 8.4 9.15 17.4 8.27 11.7 1.47 5.68 2.79 1.13 8.76 0 9.4 9.39 9.06 0 10.9 3.02 9.04 11.1 8.76 9.9 8.46 2.19 0 9.17 5.4 0.67 7.06 6.36 9.79 5.26 8.01 10.3 0 8.15 6.41 0 8.3 12.7 5.72 10.7 8.29 10.1 0 9.3 7.37 10.1 7.16 10.3 6.7 8.94 9.13 9.17 1.99 10 8.47 12.8 8.02 10.6 7.99 11.3 9.78 11.1 9.06 8.98 11.1 9.91 1.13 8.19 11.3 4.94 8.01 8.22 3.93 9.84 9.87 1.47 1.47 2.95 9.08 1.13 7.84 9.58 9.76 10.3 7.13 8.39 1.13 9.91 10.3 4.76 9.32 1.47 5.37 5.97 6.98 8.48 6.26 0.67 11.1 9.07 8.04 9.64 14.5 14 13.2 12.3 9.53 12.1 12.9 2.19 15.2 7.78 12.5 13.3 12 13.8 13 10.7 13.5 9.92 13.5 0 11.7 10.5 9.87 12.3 12.6 13 13.4 12.4 13.5 12.8 12.6 12.9 12 12.6 11.5 12.7 13.2 11.8 8.79 7.92 13.5 7.34 13.8 13.8 13 10.6 9.77 12.8 12.7 12.8 14 11.2 14.3 0.67 3.93 4.48 3.68 6.29 13.1 3.12 1.47 14.8 10.6 8.41 10.5 9.72 11.3 11.2 13.2 13.4 11.1 13.3 12.8 12.3 13.3 12.2 12.7 13.3 13.4 10.6 13.4 13.4 13.6 12.3 13 13.5 11.9 9.18 5.52 11.6 3.54 11.8 9.76 9.47 12.7 11.4 11.3 11.1 10.1 1.47 8.64 12.8 10.3 4.56 6.56 12.2 9.77 10.1 7.51 2.36 3.75 4.82 5.47 10.9 16 6.99 8.8 0.67 14.3 16.9 17.7 13.8 15 10.9 9.27 6.45 11.6 11.6 10.5 11 1.14 3.75 7.33 11.9 9.35 12.1 11.8 7.46 7.29 12.2 9.56 10 7.06 9.8 8.83 9.1 11.8 3.78 5.97 6.56 4.91 0 2.66 2.36 3.93 10.7 6.23 3.22 4.04 2.19 11.5 9.13 10.6 10.6 9.28 10.6 3.02 5.33 7.45 5.88 3.62 0 5.68 8.57 2.79 5.49 6.99 5.68 8.02 2.36 1.13 8.23 0 5.79 11.1 4.4 1.47 6.5 6.07 15.1 7.16 1.99 7.25 13.3 11.7 7.09 9.47 9.92 2.79 8.93 9.16 10.3 9.43 9.22 9.62 8.93 3.75 8.44 9.06 6.63 10.4 10.2 9.56 10.1 8.47 7.95 10.8 4.66 0.67 7.53 9.8 8.86 10.2 6.01 8.85 4.76 0 9.72 8.41 7.74 8.02 7.28 8.02 2.52 9.64 8.35 7.23 6.92 8.49 11.2 7.78 10.2 8.47 11.1 3.12 8.21 8.77 10.2 7.98 3.98 10.9 8.72 8.02 7.13 6.56 7.89 11.6 6.41 9.71 0.67 16.2 1.13 4.63 10.8 8.14 9.23 5.54 6.11 10.5 3.98 10.6 8.87 0.67 3.02 6.42 6.22 3.81 7.98 6.41 7.78 7.89 7.29 8.24 9.04 7.77 13 10.8 8.09 10.9 9.44 4.28 7 10.2 8.83 7.48 5.12 9.68 2.36 8.61 5.37 11.4 2.66 6.23 0 9.67 9.55 7.6 8.02 5.52 7.37 11.8 10 10.5 9.14 7.08 6.79 3.47 5.3 4.56 6.5 3.31 8.16 12.4 1.13 7.04 6.26 10 10.3 12.3 10.7 8.33 8.34 9.7 9.41 10.7 6.53 8.93 9.73 9.86 10.8 1.47 7.89 7.74 10.7 2.19 1.13 0.67 10.7 0 12.5 2.19 12.3 12.1 3.39 9.22 5.13 9.26 4.91 7.65 9.92 6.26 8.12 11 2.19 2.52 1.47 2.79 12.1 7.54 0.67 11.7 10.4 9.42 11.3 10.8 8.33 4.69 11.2 8.61 5.33 9.2 9.64 9.79 9.76 5.09 10.1 7.04 7.95 0 4.82 5.43 11.7 8.65 9.82 0 10.9 7.42 0.67 1.75 9.21 6.82 8.87 0.67 1.13 8.33 6.52 5.76 8.1 8.41 4.28 4.14 0.67 9.1 6.24 7.43 3.22 10.4 10.1 3.54 9.62 8.92 8.02 8.72 4.04 3.31 7.04 4.36 8.7 8.02 8.25 6.65 2.36 3.12 2.78 7.14 2.91 9.19 9 3.68 7.09 7.97 9.86 11.2 9.62 10 8.9 8.96 9.51 8.52 8.7 8.03 9.55 9.45 1.47 5.33 0.67 3.62 5.17 2.66 4.59 3.02 11.1 2.79 6.22 1.13 9.36 1.47 11.7 7.81 1.13 11.2 1.47 6.27 0 7.71 10.2 3.93 2.36 9.53 1.15 2.36 4.96 0 10.9 8.24 5.95 4.18 1.86 0 0.67 12.4 0 4.28 4.85 4.28 6.17 2.19 3.62 10 2.52 3.02 7.61 8.36 9.98 7.27 9.59 1.75 1.75 1.17 11.2 0.67 7.06 1.47 12.3 0.67 9.76 3.69 5.94 9.76 1.47 0 5.6 9.57 9.82 3.02 9.74 1.13 1.13 4.85 1.13 3.62 2.36 10.3 10.3 9.53 7.77 9.04 10.4 11.8 4.56 1.13 8.07 11.6 4.4 3.93 9.63 9.24 9.51 10.8 10.6 9.97 8.18 2.91 5.73 10.6 8.8 4.09 9.23 10.6 11.3 7.85 9.16 10.8 8.15 11.4 9.55 9.62 8.96 12.1 8.73 8.96 7.04 9.76 10.2 8.54 10.5 9.58 9.6 10.3 7.85 8.91 8.44 2.66 9.06 12.4 6.53 6.31 6.97 8.58 8.79 3.98 10.3 12.4 6.52 4.44 9.23 6.81 1.47 8.03 7.39 1.99 9.49 7.97 12.3 9.81 6.69 9.41 8.56 7.41 10.3 4.85 11.2 8.79 9.84 3.47 8.86 8.97 9.74 14.8 9.93 9.76 8.03 9.96 7.39 7.75 9.16 12.3 6.26 1.56 3.31 4.85 8.29 8.08 10.4 3.68 9.91 1.47 8.41 9.69 7.19 0 9.85 9.18 6.77 8.6 10.2 8.33 5.67 8.63 7 10.7 4.82 8.15 9.76 5.84 10.3 0 10.1 9.09 8.7 9.28 9.81 11 9.09 9.03 9.77 8.42 9.38 8.94 10.1 10.1 3.47 10.9 11.8 9.24 9.71 8.41 9.66 8.25 2.66 11.1 8.31 6.53 3.62 3.39 5.6 5.17 10.4 8.53 10.5 2.36 8.91 4.76 7.61 0.67 9.14 6.57 7.59 9.29 9.07 12.3 7.2 10.9 8.57 10.1 0 12 10.5 7.9 8.71 10.2 0 10.3 12 12.8 8.03 13.9 1.99 7.13 1.75 5.39 1.75 6.42 13.4 0 11 10.3 5.3 4.59 8.62 9.25 12.3 7.23 6.59 8.69 9.61 8.36 9.39 11.4 10.4 2.36 0.67 3.02 1.13 1.75 5.97 1.13 7.62 6.01 0 4.09 7.06 0 13.1 4.66 4.56 0 4.56 6.53 2.79 10.1 8.03 3.68 6.73 3.02 1.75 0.67 7.6 11.1 8.52 10.8 10.5 2.91 9.43 5.65 10.2 0 9.83 7.88 4.82 3.39 0 8.75 0.67 7.98 4.94 2.36 5.85 1.47 12.6 6.6 0 1.13 2.52 9.27 4.94 8.56 7.25 0 8.04 6.23 6.48 5.78 5.76 5.19 2.19 5.52 11.4 4.91 5.56 1.13 5.28 4.48 0 6.4 0 9.57 2.36 4.96 11.1 3.02 4.99 12.3 8.98 8.37 0.67 3.31 7.12 10.9 11.1 10.2 9.47 7.31 2.52 8.53 5.61 6.97 1.75 6.53 10.6 15.3 11.1 7.01 10.9 7.98 12.1 0.67 7.06 10.6 10.7 9.43 9.13 6.27 9.07 10.5 5.47 7.46 7.46 6.86 11.2 6.9 9.34 9.69 10.4 8.46 3.98 8.63 7.25 1.75 2.52 7.78 14.3 9.73 8.6 10.5 10.5 10.7 4.52 8.68 6.07 10.5 3.47 9.8 8.23 9.04 8.7 8.43 9.64 10.8 10.8 7.97 5.19 1.99 7.72 8.43 9.99 7.27 8.57 6.56 6.48 14.8 11.7 10.3 8.1 12.1 9.48 9.98 10.2 9.72 10.8 11.1 8.4 9.62 9.17 7.23 10.4 6.97 6.12 10.9 9.6 10.1 8.36 0 10.3 1.99 12.3 5.97 10.9 10.8 12.4 9.77 11.2 9.92 10.1 10.4 10.5 1.99 9.99 1.47 11.5 7.15 11.3 9.37 13.8 10.6 6.83 11 9.07 10.4 3.31 12.4 8.26 10 7.6 5.07 11.6 0 12.4 6.9 6.94 6.05 8.82 7.52 12.3 0 7.71 12.1 12.2 11 11.2 9.68 0 9.64 8.76 10.8 12.2 10.5 11 11.2 11.3 9.28 10.3 7.21 11.3 11.8 11 10.2 11.8 10.4 9.16 10.3 10.2 12.2 12.1 11.1 12 10.4 12.2 8.53 2.19 1.75 10.8 11.4 11.2 13 5.49 12.4 4.48 13.9 11.7 12.9 4.85 8.38 9.48 1.75 1.13 1.47 0 0 3.02 0 2.39 12 2.92 0.67 0.67 5.53 11.7 11.6 7.78 8.64 6.09 8.08 11.5 5.84 8.2 9.87 9.8 9.73 4.56 5.26 9.97 10.6 3.81 2.19 9.71 7.2 9.69 9.84 9.86 7.72 10.7 9.21 9.3 5.3 8.79 0 13.7 12.5 7.53 9.67 11.6 3.31 11.6 9.11 8.39 8.45 12.7 9.67 9.87 8.03 13 11.6 6.3 9.67 9.86 1.13 10.9 3.22 1.47 3.31 12.2 1.13 7.01 2.19 2.66 0 10.2 9.95 3.87 7.23 7.28 9.25 10.4 8.62 8.02 8.87 7.38 9.84 11.1 13.4 10.3 9.62 9.31 8.56 8.38 9.55 4.66 0 12.1 13.1 13.4 12.7 12.3 8.97 8.64 11.5 8.85 0.67 8.75 10 9.17 10.3 8.12 9.69 8.37 6.6 6.5 5.88 3.68 5.56 10.3 5.33 7.12 2.52 6.04 6.44 10.1 0 0 10.5 0 10.8 9.56 9.23 3.87 10.9 7.31 8.06 7.26 7.91 9.98 0 11.1 7.31 9.66 11 9.37 10.1 8.03 6.3 11.4 5.6 12.3 0.67 0 8.46 9.31 10.2 4.59 10.7 10 9.66 5.26 11.8 10.7 8.98 10.6 6.85 3.02 10.8 13.6 9.39 5.67 10.1 0 8.65 9.15 3.98 9.88 5.54 9.21 11.6 8.36 8.94 4.91 7.98 11.7 6.93 10.2 4.04 6.65 3.39 11.6 3.12 11.7 11.8 8.32 7.42 7.89 0 14.3 10.9 2.66 10.8 7.4 9.69 9.85 14.9 7.99 15.7 12.2 13.9 10.9 8.1 12.4 4.44 3.39 10.2 0 7.93 7.25 0.67 8.5 12 9.61 10.7 10.7 7.16 10.7 10.6 11.9 0 11.4 12 10 8.67 12.8 4.09 9.72 6.27 11 10.1 3.12 13.2 10.8 5.52 8.3 7.06 6.06 16.4 11.5 7.18 6.96 9.44 9.16 7.02 9.26 10.4 9.85 6.15 10.4 13.9 8.78 5.91 5.87 6.42 5.54 11.8 10.5 10.4 8.8 6.21 12 8.53 7.38 6.86 0 10.1 9.37 7.7 9.46 7.66 12 11.7 7.83 3.31 11.2 10.8 9.23 10.4 8.71 9.6 12.6 8.67 11 10.7 10.3 12.2 0.67 13.6 11 9.09 6.76 13 14.4 9.73 9.86 11.3 7.67 15.3 0 11 7.86 9.84 14 7.64 8.88 8.58 6.32 7.76 6.58 7.8 0.67 12.7 10.5 11.3 4.04 0 4.04 0.67 0 5.45 5.65 11.2 0.67 5.6 4.72 10.7 9.72 10.5 0 10.7 0 9.23 10.7 9.49 8.84 10.3 10.2 12.2 9.93 11.1 10.4 9.59 5.37 8.2 8.88 9.09 5.3 14.1 7.86 6.86 6.76 5.63 7.74 10.6 6.12 13.3 5.02 4.79 5.02 6.16 6.8 1.47 8.16 3.46 5.87 4.76 8.3 10.5 3.31 7.27 1.47 6.02 6.7 12.2 6.14 4.79 0.67 6.77 9.17 5.79 2.19 10.8 0 4.76 5.63 3.31 3.39 5.28 9.28 9.04 1.99 13.5 1.75 4.96 0 5.93 0 0 7.01 7.42 3.12 8.59 2.19 1.75 10.5 6.63 8.93 3.54 5.57 4.61 5.24 0 1.75 7.12 3.31 4.4 3.12 2.79 4.14 5.52 0.67 4.82 2.79 4.28 0 7.06 13.5 8.06 4.91 8.08 4.18 4.4 9.92 5.87 5.41 2.19 6.68 10.2 3.47 0 3.47 8.73 9.01 9 4.09 3.93 0 6.06 8.08 1.13 1.47 0 6.35 3.12 7.51 9.44 4.85 1.47 7.6 0.67 10.3 0 13 2.52 12.5 15.5 13.3 0 9.61 10.8 10 8.83 10.9 12.4 10.2 9.15 11.2 10.3 10.7 10.9 2.19 11.3 10.9 11.8 10.7 10.6 9.02 10.2 10.7 11.1 4.88 9.91 4.28 1.13 7.76 3.54 10.6 4.28 9.45 9.6 10.6 10.9 3.31 9.01 10.3 7.34 9.3 9.78 10.3 12.5 2.19 10.9 0.67 11.1 12.1 11.8 10.4 10.2 9.45 8.76 9.72 10.7 10.1 0 10.8 9.36 9.59 8.1 11.9 10.6 5.73 10.7 9.47 6.41 11.8 14.4 12.6 10.9 10.5 11 11.8 9.72 9.62 2.36 9.29 0.67 13.5 12.6 8.31 0.67 10.3 3.54 0.67 6.3 8.45 8.96 10.8 1.13 3.22 10.7 14.2 6.38 8.19 12.7 9.71 8.61 6.23 8.66 9.8 8.18 10.9 9.69 4.48 0 4.56 9.8 1.99 7.34 10.9 0.67 4.18 2.91 6.57 5.09 0 6.95 8.25 0 11.7 8.15 1.47 12.7 6.85 7.6 8.91 6.11 10.5 1.99 11.7 8.77 6.75 9.23 7.35 8.17 12.5 7.4 10.8 10.5 13.3 7.15 13.6 13.1 11.5 16.1 5.87 12.3 12.4 4.56 11.7 7.52 9.38 9.23 6.35 7.01 8.45 5.07 8.97 6.09 13.1 5.35 9.23 5.24 5.21 7.7 6.53 7.57 4.35 6.14 5.81 8.56 7.85 7.5 10.6 6.51 6.48 5.28 7.67 8.86 8.92 7.67 10.1 7.96 6.66 7.09 7.95 5.19 7.52 5.99 12.3 5.04 1.13 2.66 5.81 7.92 7.65 7.1 8.57 6.91 2.91 7.28 3.54 4.32 8.39 6.42 0 2.52 4.9 6.5 2.9 12.9 5.41 0 2.52 2.36 0 6.24 1.47 8.62 8.89 4.94 8.23 7.3 2.52 6.32 2.79 6.69 7.71 5.56 5.51 9.19 8.53 7.92 0.67 10.4 11.5 9.69 9.41 12.8 2.66 6.65 0 9.19 6.65 11 7.14 6.54 3.75 3.21 1.99 6.91 7.37 7.44 14 3.87 6.72 7.45 7.59 5.54 7.63 5.47 10.1 8.36 8.36 5.17 8.36 12.1 2.36 3.93 8.78 1.75 4.91 11 10.3 5.3 6.95 5.26 7.04 1.47 7 5.85 3.81 5.7 6.65 8.31 8.62 0.67 1.75 7.37 6.69 5.6 3.87 12.2 11 10.3 12.8 2.52 12 8.07 9.74 3.23 13.2 8.48 10.4 6.11 3.12 10.7 10.5 8.52 7.7 10.4 8.67 11.2 6.65 5.28 9.12 13.3 7.38 8.46 3.81 9.23 10.9 11 5.04 10.8 10.6 11.8 13.2 8.14 4.32 10.2 3.54 7.72 9.37 0.67 7.79 7.41 9.95 9.45 6.9 9.66 0 3.02 9.38 11 6.58 9.36 10.8 9.03 8.66 8.37 7.06 8.95 9.02 9.47 0.67 9.91 10.5 9.26 7.43 8.43 10.1 9.01 3.02 15.7 10.8 8.56 6.29 8.09 9.06 9.01 9.17 10.7 4.76 9.88 10.9 3.62 9.39 11.1 9.68 11.2 8.95 9.13 10.6 7.65 8.14 11.1 9.57 9.39 7.15 8.29 6.94 11.4 6.93 8.01 9.66 6.59 10.4 9.23 10 9.28 9.32 9.85 8.42 9.39 5.85 7.43 9.3 7.8 9.52 8.52 7.51 12.5 9.49 10.7 11.1 11.7 8.85 7.16 9.22 6.1 10.4 11.4 4.32 10.2 9.85 12.4 8.36 7.59 9.71 6.25 5.21 4.85 9.26 7.06 9.76 8.02 9.03 9.7 8.99 12.5 6.95 6.88 1.75 4.74 8.06 12.2 3.75 10.7 7.84 5.79 9.84 7.21 7.88 7.61 7.28 8.27 11.3 10.2 8.97 1.99 11.4 12.3 7.86 9.72 11.7 9.18 7.7 7.19 0.7 10.8 1.13 4.4 5.67 10.3 6.05 10 5.45 5.33 0 6.23 2.52 5.37 5.26 6.22 5.54 6.26 10.3 8.1 10.1 8.33 8.62 3.39 10.1 6.87 9.66 6.55 3.54 5.12 3.69 9.73 8.24 6.04 4.48 9.68 11.6 8.11 6.6 8.12 9.5 11.4 6.46 5.14 9.11 11.1 9.54 9.34 9.88 10 9.32 8.58 7.02 6.57 11.1 10.9 9.83 7.94 3.68 7.35 1.47 8.22 8.63 7.47 6.77 8.04 8.26 8.88 8.71 2.79 5.02 7.77 7.51 7.04 4.36 9.61 1.99 5.63 8.45 4.96 7.84 6.5 8.84 8.31 9.13 9.18 8.94 2.79 9.79 10.1 8.72 8.17 9.88 11.2 10.4 6.4 10.6 1.75 8.87 8.5 5.93 8.83 4.73 7.24 9.38 8.52 10.3 2.52 8.14 8.25 10.9 11.5 8.9 5.81 0 8.51 8.07 9.57 9.96 9.29 6.96 7.2 9.03 11.8 6.94 9.14 8.34 9.24 8.4 7.27 3.87 8.41 8.92 7.95 9.04 9.46 8.71 7.9 11.4 8.97 10.8 7.28 6.39 9.17 9.31 9.65 11.2 10.4 11.4 1.13 7.89 8.75 6.02 9.65 8.99 8.9 2.79 8.11 8.57 6.82 8.53 7.68 7.7 3.68 0.67 6.67 6.05 10.3 1.99 0.67 10.7 3.12 10 9.38 8.47 8.35 12.5 6.74 8.68 6.39 8.06 5.54 9.05 10.3 9.12 8.57 8.34 7.06 5.61 4.73 8.96 7.52 7.85 2.79 0 6.34 11.7 8.62 2.19 8.06 10.7 9.34 10.7 8.86 9.03 8.6 9.05 6.1 9.24 0.67 9.87 3.93 8.19 6.92 7.53 11.1 9.14 10.5 5.47 9.14 1.75 10.4 7.02 2.36 8.81 3.81 5.21 6.1 3.12 9.18 9.57 8.34 8.39 5.98 10.5 6.95 8.62 0 10.8 5.37 3.75 9.71 7.44 3.62 6.67 2.19 6.68 7.36 3.31 5.52 8.15 0 10.5 7.66 0 3.62 7.43 1.47 5.56 5.09 5.87 8.2 6.5 3.02 8.28 6.26 8.37 11 2.79 8.03 9.25 7.89 8.91 10 9.72 8.38 6.75 8.91 9.9 8.06 4.23 8.27 8.05 10.1 10.5 8.36 3.98 10.9 10 8.98 5.54 6.59 8.3 5.91 6.11 8.52 9.59 10.3 7.58 4.76 0 8.46 8.47 8 7.31 4.88 8.55 8.93 6.92 0 7.52 2.52 3.39 6.29 7.19 6.89 6.4 10.4 6.64 8.5 2.79 8.75 11.3 10.5 0 7.79 7.89 4.27 9.82 0 2.19 9.51 2.66 10.4 6.42 7.25 7.76 7.27 9.55 6.06 8.21 8.14 6.76 7.06 10.2 2.91 4.36 11.1 8.01 8.45 8.04 11.3 3.98 7.13 5.94 10.1 9.8 3.68 8.79 0.67 11.6 7.37 0 7.52 12.2 9.04 8.34 7.53 2.52 8.49 10.4 9.72 8.15 9.16 8.98 9.7 8.22 8.41 7.66 7.3 7.16 9.48 9.01 10.4 5.98 0 0.67 7.66 4.48 8.44 4.32 8.44 0 6.5 2.19 1.75 5.68 10.2 13.6 2.79 6.73 5.07 8.57 7.53 0.67 10.1 4.4 3.68 2.52 6.27 10.4 9.33 6.64 10.3 9.39 5.97 9.55 8.8 10.9 10.7 3.31 9.99 9.83 10.2 10.9 6.51 8.47 6.11 8.69 6.27 7.54 9.01 5.98 7.21 11 5.24 7.22 8.06 9.4 9.66 9.8 9.13 9.12 5.77 3.22 10.6 10.2 8.13 9.53 10.3 10.1 10.7 5.54 9.38 8.88 8.65 0 12.4 9.36 6.16 8.87 11.3 7.48 8.48 7.59 10.1 5.09 11.3 9.43 5.97 7.48 2.52 8.6 9.99 11.4 3.12 9.43 5.35 6.94 10 9.7 8.84 11.6 10.3 1.75 10.1 9.1 3.39 5.56 11.1 8.7 3.87 7.47 10.8 9.01 2.79 9.69 12.2 2.52 6.51 3.22 4.73 8.1 10.8 5.76 2.91 8.1 5.35 6.1 9.22 8.91 8.8 8.15 3.22 12.3 5.14 3.12 11.5 6.64 1.48 7.35 5.82 10.1 4.66 11.1 11 9.51 1.47 11.3 8.7 10.1 9.09 7.54 11.8 9.03 12.1 9.03 11.2 9.94 10.7 4.44 8.59 3.31 4.96 8.85 6 3.47 11.6 7.6 10.1 2.52 1.99 5.07 8.94 2.79 6.32 7.56 7.25 8.86 3.02 6.17 3.47 8.28 8.4 10.7 8.22 10 10.3 7.11 7.29 5.63 10.6 6.12 11.4 11.4 10.1 12.2 12.1 12.3 7.88 9.23 5.26 6.46 8.19 5.21 10.6 11.5 12.5 7.7 9.84 1.13 11.4 10.1 10.9 10.6 9.49 9.27 5.2 3.54 6.76 3.01 10.7 7.84 8.72 6.45 10.2 1.47 11.1 13.8 7.04 3.39 3.12 7.99 7.22 6.07 9.59 5.98 10.8 11.4 14.6 4.44 10.4 5.54 1.47 2.36 10.7 11.6 9.49 7.52 3.75 15 11.2 8.99 9.52 1.75 6.68 4.09 1.13 12 2.36 9.75 9.45 8.98 12.4 10.6 5.49 5.94 9.72 8.03 8.67 5.33 9.9 10.4 9.63 4.36 6.16 9.14 8.26 9.8 11.8 8.62 12.2 1.47 8.62 6.37 8.53 9.01 6.45 8.44 10.3 3.54 9.08 3.87 6.55 10.3 10.2 9.14 12.1 9.76 8.81 8.45 11.1 9.94 10.4 1.47 0 8.36 9.07 11.8 9.1 4.44 9.34 8.37 8.7 10.1 3.63 10.5 9.65 11.1 11 11.9 8.66 5.76 5.14 10.6 0.67 9.01 10.6 1.13 10.6 9.69 9.68 10.5 6.62 8.85 4.44 4.88 3.47 9.48 10 10.4 9.05 9.41 8.29 9 3.22 8.85 0 9.68 4.91 9.8 10.7 3.68 10.9 9.8 12.6 9.87 6.77 9.65 10.8 9.06 9.43 2.48 10.4 8.74 1.14 9.97 9.6 7.2 9.96 5.24 8.36 3.31 8.95 9.76 1.47 10.6 11.3 7.77 9.61 13.9 7.51 10.3 7.42 11.9 9.27 1.13 8.8 9.18 10.1 8.74 13.8 7.02 8.75 11.5 13.2 10.1 12 11.4 7.3 12.9 10.2 7.04 10.1 7.66 7.49 10.1 0 5.9 0 11.4 12.4 9.15 3.75 7.85 1.13 10.5 11.1 11.8 10.4 4.18 13.2 9.56 9.86 5.7 11.5 9.06 7.8 8.81 12.2 4.44 8.9 6.71 10.9 7.06 5.98 2.66 0 10.4 0 1.47 1.13 10.3 2.36 9.35 1.99 6.36 10.7 10.2 0 1.47 2.36 1.47 1.13 3.62 7.95 3.54 9.72 13.5 10.3 8.27 7.19 4.09 3.81 3.02 8.26 7.46 0.67 8.99 8.39 8.14 6.43 6.14 7.72 2.91 9.11 5.75 8.1 1.13 8 12.9 10.3 9.14 9.84 1.47 6.17 0 5.02 1.47 1.13 8.06 10.1 10.7 6.37 6.32 9.9 8.92 3.47 6.2 0 4.28 0.67 0 9.48 6.12 1.13 10.2 8.4 10.7 8.5 9.47 1.75 5.79 11.3 11 9.59 8.16 0.67 4.44 8.17 11.3 9.49 0 8.3 8.13 9.74 8.14 7.67 6.15 0.67 1.47 10.5 0 7.31 12.2 9.09 1.13 4.66 8.02 8.47 2.52 9.03 9.15 2.36 0 9.4 11.5 7.04 6.98 7.61 8.19 3.68 7.33 8.09 8.92 6.26 0 1.99 9.41 2.19 5.88 10.6 10.3 10.5 5.98 9.72 10.6 5.24 3.87 7.55 11.2 8.93 9.14 2.79 5.26 6.64 7.48 0.67 2.17 9.91 5.35 8.86 9.74 6.94 7.93 8.71 9.72 7.87 9.86 5.6 1.13 9.62 3.22 9.3 0 8.49 0 11.8 0 0.67 0 2.66 7.37 10.9 7.13 7.59 8.3 10.8 8.13 8.79 6.74 1.47 10.9 10.1 7.98 7.33 5.24 2.79 0 7.34 2.66 8.42 9.96 7.29 9 4.96 10.2 10.2 4.09 5.63 7.84 0 6.9 8.44 0.67 11.3 9.84 11.1 11.4 10.2 9.67 7.03 9.51 9.16 1.13 7.94 5.9 7.16 6.64 6.39 8.22 11.2 7.29 0.67 8.81 10 9.11 7.86 9.78 14.7 3.02 3.47 6.04 2.52 5.37 7 9.71 10.4 6.92 9.08 5.87 6.95 9.24 8.78 1.47 9.08 5.3 0.67 5.09 7.37 3.98 6.96 10.5 8.79 8.64 8.17 9.77 8.27 8.1 8.96 8.25 8.59 8.95 7.7 5.02 6.41 3.68 9.28 8.08 5.35 8.72 8.71 10.2 6.41 9.89 6.59 11.4 11.4 6.17 9.61 9.93 2.19 9.8 7.75 5.49 4.18 4.82 9.17 5.9 9.38 8.99 11.1 8.86 0.67 6.33 9.03 10.2 9.59 5.35 7.04 7.33 4.76 1.99 8.61 1.13 8.89 5.93 5.43 4.48 6.1 6.23 5.02 5.26 0 9.42 12 11 8.13 8.3 8.91 8.66 9.97 8.83 9.13 9.31 11.2 0 10.4 7.11 4.04 4.91 8.01 9.37 9.4 1.13 9.84 9.4 8.27 9.66 9.63 4.76 6.92 8.3 8.28 8.36 8.02 10.2 8.23 11.2 9.29 9.47 8.7 5.33 7.55 8.17 5.43 7.46 12.4 9.82 3.47 8.78 12.5 8.45 9.29 8.59 9.44 3.22 8.39 9.92 6.86 12 9.05 8.88 7.62 9.28 9.09 8.17 9.96 7.81 8.88 6.5 9.31 9.57 7.26 7.56 8.46 0.67 10.3 9.44 7.76 10 7.65 8.4 8.53 8.68 7.18 8.76 8.2 10.6 9.22 8.44 3.22 8.37 4.79 7.7 6.74 0 9.23 8.52 10.6 9.13 10.2 6.07 9.17 9.24 8.77 1.99 6.35 11.2 10.1 10.3 10.2 7.95 10.2 3.93 10.8 0.67 7.17 9.92 9.5 6.4 4.76 7.57 3.68 7.45 8.16 7.18 10.8 9.66 2.52 10.6 8.14 6.25 9.44 7.71 6.54 5.3 7.09 6.84 9.8 4.09 9.14 8.25 1.47 3.75 6.53 2.04 10 9.21 10.3 4.94 1.47 5.41 11.1 8.03 8.36 8.33 10.8 5.35 14.1 2.19 10.7 6.73 9.3 7.17 13.2 6.72 7.76 9.63 8.12 4.52 10.9 7.44 7.1 9.92 5.76 9.69 9.27 10.3 10.3 5.12 7.73 0 9.26 9.26 9.92 0.67 6.81 6.4 3.62 13.2 9.54 8.22 3.47 5.85 2.79 6.36 8.59 6.48 3.39 12 7.98 9.92 1.13 1.75 5.54 9.72 11.1 7.53 8.22 9.13 11.1 3.31 1.99 11.1 2.19 8.48 8.25 11 10.3 10.7 4.59 9.89 1.99 9.66 4.69 0 6.49 7.81 11.3 2.66 4.23 6.86 4.68 0.67 3.81 0.67 10 5.24 5.95 2.91 9.55 10.9 3.93 8.22 1.47 9.49 10.9 8.18 6.7 12.2 6.34 11.8 8.37 5.04 0 1.14 9.34 7.31 7.14 8.66 7.62 9.25 5.35 4.56 7.99 4.18 2.52 5.49 6.68 8.39 14.7 6.43 9.35 4.56 2.66 10 9.71 7.72 7.91 5.95 8.42 7.91 9.25 8.52 6.73 3.68 5.14 7.16 11 9.89 9.2 8.77 12.5 2.79 7.56 3.47 6.91 6.81 9.75 9.18 6.83 7.05 0.67 4.59 9.61 3.22 5.88 3.99 9.7 8.5 8.2 10.1 7.36 5.12 6.46 8.35 6.98 3.22 0 6.31 6.57 11 8.44 8.13 9.34 9.33 8.18 10.3 9.57 9.18 9.19 1.13 7.11 10.1 3.93 9.13 10 9.62 8.99 7.35 7.56 0.67 9.99 7.99 8.41 7.57 10.1 9.97 8.73 9.94 1.75 8.75 4.52 8.79 6.5 10.7 10.8 10.8 8.7 6.78 7.77 9.57 4.69 8.97 10.7 9.07 1.13 7.77 8.86 8.39 9.23 8.49 9.03 9.29 6.76 9.35 5.97 7.02 8.24 0 9.14 9.31 8.12 9.01 9.97 9.47 12.8 9.08 8.2 7.73 9.8 8.25 10.5 9.55 11.2 1.77 6.48 11.7 6.65 8.53 1.13 4.99 5.67 9.46 8.52 10.5 6.02 3.81 10.4 8.58 1.13 6.64 14.1 8.39 7.88 9.23 2.49 0.67 10.1 10.1 9.19 5.12 10.2 4.09 5.51 8 1.75 4.44 5.9 8.59 9.97 7.48 7.65 10.7 9.67 7.21 6.67 10.1 8.65 7.94 8.26 9.25 6.32 9.48 9.63 9.27 3.39 1.99 6.29 4.79 1.99 9.54 10.2 13.2 9.95 0 10.7 0 10 9.32 5.85 8.04 1.75 1.13 6.51 0 9.63 7.05 12.9 8.52 7.16 3.22 5.85 2.19 1.75 10.5 5.45 9.12 10.7 9.27 8.94 5.66 6.91 9.97 8.06 9.94 2.19 9.73 5.9 5.26 13.2 9.97 11.6 11.2 7.29 10.4 10 9.61 5.04 4.96 9.31 0.67 7.07 6.2 2.19 12.2 9.29 8.92 10.2 7.51 9.11 12.6 5.14 7.89 4.23 10.3 11.8 9.32 4.28 4.59 13.6 9.27 7.55 8.13 10.8 6.79 9.57 9.66 8.69 8.62 10.7 3.93 2.82 10.5 4.23 0.67 1.13 10.1 6.54 4.76 3.22 8.78 2.09 4.4 12.6 8.83 7.4 5.02 7.16 9.68 8.28 10.4 10.9 9.31 2.35 11.8 11.7 9.65 10.1 9.21 13.1 11.5 10.5 8.86 9.16 8.86 8.47 5.28 6.52 11.5 8.41 10.1 7.69 3.31 9.09 10.9 9.24 8.64 3.75 10.5 8.32 8.14 10 7.82 9.3 8.4 9.13 11.2 2.66 2.79 10.6 3.31 7.89 9.37 9.36 13.4 9.62 5.73 4.76 3.98 6.26 0 9.36 7.64 10.1 6.21 10.9 5.84 8.24 5.6 6.86 1.75 8.36 7.04 3.39 9.82 9.49 10.4 10.9 6.89 5.24 13.1 9.55 10.2 7.65 13.2 13 10.5 12.4 10.7 11.4 12.2 12.1 11.2 10.3 1.13 10.7 11.2 8.11 11.1 8.47 8.96 10.3 8.88 11.6 11.7 11.3 4.32 8.06 9.92 7.89 9.93 9.8 5.17 13.9 4.57 9.74 9.61 10.7 8.38 6.95 1.13 0 12.2 8.03 9.43 9.83 9.64 8.95 10.9 11.8 5.7 9.22 11.5 10.1 8.63 9.28 10.1 11.6 11.3 9.95 8.67 11.7 5.43 10.3 7.12 9.37 3.31 6.99 6.08 12.2 7.62 7.45 1.99 1.13 6.57 11.7 11.7 9.65 8.79 11.3 12 8.45 12.6 9.34 9.25 9.83 10 9.38 12.1 10.2 6.72 5.58 3.81 11.7 7.05 2.91 2.98 1.75 8.27 5.6 6.27 2.91 10.9 8.68 7.38 8.99 7.85 6.18 9.19 10.6 10.5 10.2 8.96 3.87 4.91 0.67 2.19 10.6 9.44 4.44 11 10.7 1.13 9.7 6.39 2.66 8.08 0 12.9 1.75 13.6 10.5 9.28 6.36 7.96 3.98 10.4 9.44 7.9 10.8 10.6 1.47 2.79 6.07 10.4 1.75 8.13 9.34 10.2 7.74 6.15 11.5 9.76 9.65 9.71 1.75 1.13 7.29 1.47 8.86 11 7.94 10.2 9.63 8.2 7.45 12 9.55 10.1 9.99 10 4.63 6.38 9.73 12.2 11.2 10.5 10.2 10.2 9.75 9.17 10.7 11.6 10.9 9.41 9.85 8.51 9.69 10.3 11 12 10.1 10.8 10 10.9 0.67 9.97 8.61 10.7 6.62 10.6 10.3 3.47 10.9 11.4 6.14 2.52 4.99 9 3.68 9.79 9.53 9.99 10.4 10.8 10.2 0 1.75 2.15 9.08 11.4 10 8.78 9.2 7.92 5.49 10.5 11.4 9.17 10 12.4 9.9 10 0.67 4.09 6.41 10.8 1.99 0.67 10.9 6.97 11.2 1.75 0.67 10.4 7.39 6.26 8.17 11.6 10.5 7.38 5.43 3.62 2.91 0.67 6.32 9.08 8.26 9.34 8.76 9.9 6.67 6.46 4.14 12 7.83 6.31 3.22 2.19 0.67 1.56 4.91 7.33 2.79 8.56 9.98 5.52 10.1 6.18 10.4 11.3 5.19 0 6.89 9.4 10.9 6.44 7.55 9.08 8.95 9.17 8.98 6.71 0.67 6.79 9.47 9.81 11.9 5.81 5.17 5.84 10.2 5.02 9.84 11.1 0 10.9 9.04 9.77 0.67 10.3 6.32 8.44 5.51 6.31 6.43 8.67 11.4 9.56 8.58 7.93 8.39 8.3 9.9 11.3 7.52 6.57 10.4 6.94 1.13 2.36 2.36 9.08 10.7 9.57 0.67 4.18 5.6 4.59 0 6.73 11 8.01 6.62 7.83 9.53 7.73 0 6.31 6.8 6.26 4.18 0 6.41 7.42 3.75 8.29 8.79 9.84 8.95 9.87 8 7.51 9.86 9.86 8.01 11 7.44 8.99 5.39 7.43 11.1 10.4 9.14 12.2 9.08 6.42 7.17 6.89 10 1.13 8.04 8.67 9.44 9.02 3.02 8.41 5.67 11.8 9.57 3.68 11.3 7.99 10.6 8.9 11 10.2 2.91 5.6 9.9 5.02 8.35 0 1.47 7.92 3.81 7.33 9.99 8.24 7.61 7.04 4.69 8.35 8.29 11.4 2.91 8.84 2.91 4.91 9.21 3.75 9.58 6.44 9.84 8.88 2.4 6.32 0.67 1.47 4.63 9.94 5.45 8.17 12.8 0.67 8.34 9.17 7.28 4.18 8.02 11.2 5.93 11.8 9.34 9.01 9.72 7.2 9.97 5.76 9.22 10.6 10.7 9.95 7.97 4.91 7.8 9.12 8.52 8.25 10.6 4.85 6.86 9.25 10.7 4.48 9.94 11.1 10.2 8.39 8.78 5.24 11.3 0.67 5.3 10.2 7.41 9.19 4.86 3.87 9.38 9.89 9.43 9.66 3.87 8.4 5.43 9.98 11.9 6.23 4.36 8.06 5.09 3.75 0 3.62 8.31 7.38 3.31 2.79 10.5 12.9 8.06 9.47 10.4 3.87 9.15 10.2 8.86 11.3 9.21 9.28 3.47 9.09 11.7 11.8 9.5 7.44 5.28 2.19 9.75 8.09 10.1 11.2 0 5.56 9.22 7.99 9.42 8.34 11.1 8.78 5.43 6.91 9.08 8.16 9.42 1.47 9.42 6.64 4.73 7.84 11.2 5.93 10.3 8.3 2.19 8.78 11.6 1.75 9.85 3.22 7.13 5.61 9.64 5.02 7.28 4.88 11.9 6.95 7.96 7.38 9.47 9.94 5.63 10.5 7.04 7.9 8.54 2.52 9.43 7.69 7.79 1.75 8.3 8.43 9.34 7.38 1.13 11.4 7.69 9.96 14.4 7.62 9.11 11.4 7.74 6.46 3.54 8.55 3.93 5.79 5.95 5.35 10.6 10.7 6.8 4.99 6.29 1.13 10.5 7.59 7.34 9.7 8.07 10.8 8.06 2.19 9.7 3.98 9.08 8.95 11.1 3.98 3.12 7.46 6.93 8.98 7.28 7.21 12.5 9.17 6.46 5.75 9.68 0.67 7.1 7.44 9.9 0 8.52 3.54 8.15 9.37 5.85 2.91 6.98 7.48 8.28 6.43 8.32 4.76 8.3 10.5 9.76 8.59 8.79 7.58 8.1 12.1 10.3 5.81 6.34 5.81 8.7 7.68 9.14 5.19 9.97 6.65 12.5 8.55 10.6 4.66 10.5 9.2 11.7 9.05 11.7 6.04 9.52 12.1 9.03 8.67 4.36 6.12 7.57 7.57 7.98 3.62 2.52 5.02 4.14 0 4.09 0 1.47 6.58 10.9 1.75 9.81 11.8 5.88 9.97 8.56 2.1 6.67 7.44 7.46 10.9 8.97 8.17 7.2 4.99 11.4 9.5 6.98 8.55 8.97 4.18 8.03 9.33 8.09 7.06 12.2 7.03 1.13 9.84 6.22 6.98 9.23 8.15 2.91 9.87 8.23 4.28 6.12 8.9 9.68 3.76 6.89 8.91 3.62 11.5 9.69 11.1 8.09 9.83 11.4 9.68 5.21 10.3 9.09 10.3 9.76 9.51 2.66 9.97 9.51 10.5 8.34 9.11 11 9.89 12.1 10.2 8.77 4.73 10.7 13.2 7.71 5.97 10.5 9.5 2.19 9.18 7.46 9.63 12.8 9.42 3.54 8.45 10.9 6.38 8.21 6.95 2.52 11.1 10.9 5.19 1.13 7.7 7.56 6.53 1.99 5.09 2.73 2.36 5.98 9.79 7.14 7.36 4.85 4.76 5.93 11.8 7.49 1.99 7.37 9.94 11.9 8.44 9.59 4.85 2.79 7.53 10.8 7.75 10.5 8.83 12 10.1 8.59 11.3 0.67 8.78 9.49 8.36 10.4 9.26 4.4 9.27 6.12 6.89 7.41 9.18 9.95 9.16 8.65 9.63 5.68 9.77 11.4 10.1 0 11.4 9.9 10.4 5.56 0.67 11.1 12.7 0 8.57 8.33 10.3 5.26 10.6 1.99 5.49 0 3.68 7.07 2.91 7.39 9.97 10.9 7.89 0 12.5 6.47 9.84 8.27 3.02 7.33 8.54 2.79 2.03 0.68 7.49 6.43 8.7 12.8 0.67 9.87 9.24 9.54 9.58 12 10.5 0.67 1.99 11.2 3.12 8.72 6.33 10 2.66 5.36 2.36 10.3 8.32 10.2 4.96 7.81 8.57 10.3 1.13 6.53 6.65 8.66 7.55 4.59 9.27 9.91 6.16 9.67 5.64 3.75 4.66 10.8 3.54 7.85 5.41 7.07 8.41 10.2 7.53 10.3 10.1 1.75 8.89 8.21 4.36 9.41 8.5 9.18 8.78 9.47 7.76 9.37 6.61 6.44 6.17 8.24 3.31 11.9 6.27 3.47 11.3 7.81 6.49 7.09 9.17 8.63 11.1 10.8 11.2 9.4 9.73 1.75 4.09 3.87 4.14 11.3 0 9.15 2.52 9.36 8.27 7.99 7.61 10.9 14.1 11 8.99 12.5 3.75 4.28 8.65 6.48 9.17 10.8 10.9 9.12 6.34 2.91 10.2 9.03 5.58 7.94 7.4 0 10.1 7.77 10.7 7.21 8.8 9.25 9.57 0 9.1 5.61 6.68 3.22 5.52 7.57 4.66 7.13 7.38 8.67 7.06 11.5 10.1 4.52 9.16 5.28 6.59 9.32 11.6 9.85 6.31 7.32 3.98 6.57 6.37 9.04 9.8 9.87 0.67 0.67 11.5 10.9 4.09 7.86 7.53 12.3 8.25 10.3 11.7 11.7 10.2 9.9 11.5 10.4 8.98 7.72 12.2 5.76 8.97 6.24 6.4 10.1 9.89 12 6.76 9 8.86 2.36 11.8 8.05 13.1 10 11.1 10.7 9.37 7.63 9.53 12.6 9.79 9.29 10.9 8.71 8.51 10.1 11.3 10.9 7.46 9.91 7.58 10 11.1 9.55 8.54 12.1 7.44 8.2 9.43 9.38 8.36 11.6 9.53 8.86 9.01 11.7 10.5 3.02 6.91 12.3 6.01 3.62 14.5 10.7 12.3 6.97 9.55 9.18 6.44 12 10.6 11.2 11.2 10.2 7.27 9.88 10.1 6.57 12.6 6.05 3.39 1.13 7.82 3.39 9.31 12.3 5.49 14.2 13.1 9.27 10.2 8.54 10.3 8.37 12.2 11.7 11 8.93 10.6 10.6 8.24 6.11 8.54 9.75 10.9 10.6 8.6 8.98 8.39 9.93 7.69 8.67 9.34 13.8 9.77 7.73 8.29 10.3 7.2 10.4 6.52 11.5 12 10.3 1.13 8.94 9.57 9.28 9.45 10.1 9.45 9.53 10.5 12.1 7.99 10.1 12 9.69 11.6 10.6 2.66 10.3 12.8 4.44 11.8 9.4 8.67 9.94 10.6 8.25 9.25 11.2 5.35 6.55 8.53 9.55 10.5 9 12 9.06 0.67 8.66 2.52 10.8 3.22 8.94 9.91 10.1 2.91 10.3 3.93 8.22 6.15 14 1.56 4.32 9.46 8.85 9.32 8.88 9.46 4.52 9.58 9.28 9.22 10.2 7.98 9.04 11 3.62 8.11 9.87 3.93 12.2 6.85 11.8 6.86 9.94 7.55 12.5 9.86 12.5 5.67 5.56 4.59 5.52 6.77 10.6 10.2 9.65 4.99 11.7 6.59 8.7 9.51 11.1 7.28 9.32 12.5 7.57 9.71 9.48 11.4 11.9 10.9 11.5 10 9.38 11.3 12.9 7.89 11.8 9.18 11 11.2 8.4 9.65 12.2 8.52 10.9 11.1 10.9 11.6 10.5 3.47 10.3 11.3 5.82 10.2 11.9 11.5 10.8 7.85 10.2 0 11.4 9.45 9.09 11.3 8 9.68 9.08 11.2 10.4 10.2 9.6 10.9 5.43 9.97 8.52 9.81 8.58 8.12 4.09 10.3 11.1 9.39 1.75 10.4 3.12 8.23 9.12 7.08 9.38 3.31 8.48 11.1 5.09 6.36 8.39 8.94 6.09 8.7 8.13 8.72 7.69 8.83 8.32 3.12 10.2 8.47 8.57 7.37 10.7 10.6 3.93 4.79 8.73 11.4 11 9.27 10.6 10.3 10 8.98 9.49 10.6 11.5 11.1 10.6 9.96 7.62 9.6 9.43 11.4 7.36 10.8 7.77 11.1 10.3 11.8 5.6 7.87 9.96 9.31 7.38 11 11.6 3.02 9.1 4.23 7.06 10.8 11.3 9.83 10 7.45 10.1 10.8 9.46 10.9 7.6 5.67 5.58 9.62 8.41 6.21 9.75 11.3 11.7 4.82 11.9 9.25 9.44 9.1 10.9 9.36 12.2 8.82 10.8 8.2 9.63 10.9 4.28 12.2 6.12 7.77 7.66 10.6 13.6 1.47 6.09 5.17 11.3 9.09 7.05 13.1 10.7 6.58 10.5 5.72 8.06 1.47 8.32 10.8 10.3 8.81 12.6 9.1 3.68 2.91 11.7 9.31 10.7 9.91 2.09 11 8.26 10.6 9.18 10.4 12.2 9.9 8.29 7.16 8.98 11 9.13 12.8 13.8 10.4 12.4 1.99 12.2 8.47 10.8
-TCGA-HT-7854-01 5.23 4.16 11.2 10.5 6.15 8.16 1.05 3.56 8.19 4.65 6.17 7.52 4.13 2.5 7.86 8.54 11.6 10.1 6.72 10.3 8.04 5.21 10.1 2.9 9.65 8.14 3.34 9.36 3.97 9.91 4.42 5.94 8.58 0.78 2.9 0.79 3.21 4.59 4.89 3.84 5.3 4.93 7.03 0 1.05 2.5 0.78 4.98 10.5 8.39 3.03 7.27 7.87 12 4.98 1.66 6.12 2.83 5.14 4.35 8.84 5 8.32 7.57 3.6 2.68 8.56 7.13 10.6 4.65 5.31 5.71 2.08 4.86 2.83 2.59 5.29 4.22 3.85 1.95 5.12 0.44 3.72 5.85 3.64 1.05 5.53 3.21 0 3.98 6.6 4.91 5.09 4.4 4.31 4.19 1.48 0.78 5.21 0 5.43 5.65 6.6 5.35 2.08 4.84 7.26 7.8 6.19 3.09 2.41 0.78 10 7.01 7.14 1.29 1.88 5.46 5.22 2.68 4.22 4.63 3.52 1.29 0.78 6.56 3.56 0.44 2.83 8.57 3.26 3.68 2.83 6.59 3.94 1.29 3.84 3.27 3.91 6.84 6.37 11.2 0.78 2.2 4.88 11.1 0 10.4 0 0.44 4.11 0 5.81 8.49 9.93 1.66 9.43 3.68 9.89 5.9 6.9 7.29 1.81 9.57 9.12 5.69 6.59 5.19 1.48 3.03 9.93 9.43 3.68 4.1 5.25 4.13 4.93 1.95 8.18 4.37 4.04 8.17 4.42 4.4 6.02 2.9 5.58 3.09 9.02 6.36 8.18 9.31 3.95 5.29 4.27 5.41 5.49 7.81 9.18 8.26 5.75 6.32 8.69 10.2 8.04 2.31 11 9.96 10.1 8.79 5.89 1.81 10.8 10.4 9.49 9.09 8.69 10.9 10.6 10.2 8.03 7.52 11.2 10.2 8.82 8.04 1.29 8.33 8.67 12.6 7.94 5.1 9.05 12.6 9.33 9.97 9.64 10.7 10.5 3.8 9.97 12.1 11 11.1 11.3 10.2 10.8 12.5 7.86 13.7 4.89 4.32 5.73 9.31 8.8 2.68 11.4 12.8 0 11.4 6.81 9.87 1.05 9.62 10.5 11 7.88 10.4 11.5 9.59 7.93 8.5 8.52 9.15 11.6 9.71 0 11.1 10.2 11.6 11.7 10.9 10.7 8.93 9.32 11.4 10.9 9.79 11.2 10.9 7.51 1.29 10.8 5.94 12.4 9.96 7.78 11.4 9.36 10.4 3.91 12.3 12 8.58 9.28 12.6 0 8.38 6.67 9.06 11.9 8.33 8.99 8.1 7.16 11.7 9.93 8.27 8.74 6.19 10.4 10.8 11.1 11.7 11.9 9.42 10.1 8.61 10.2 9.5 7.81 8.96 11.1 7.31 9.21 10.3 8.4 8.26 7.08 8.46 10.4 6.94 9.92 9.13 9.3 13.6 8.27 9.19 11.3 8.56 9.77 0.45 10.6 1.81 4.07 7.78 8.46 9.88 0 6.25 3.51 10.9 9.2 10.3 9.09 6.89 10.2 4.67 8.75 4.67 8.51 11.6 9.26 11.4 10.6 7.14 8.15 11.6 3.76 9.31 8.55 8.67 11.2 8.47 10.2 10.9 6.14 8.34 11 9.93 4.4 9.68 10.9 9.98 7.82 9.98 9.67 0.78 7.51 10.5 7.71 10.9 11.9 9.64 8.83 11 9.78 11.1 10.4 10.2 2.31 8.6 9.29 8.56 8.74 11.8 8.87 9.79 8.71 5.26 10.1 6.19 9.39 11.8 4.93 10.8 9.46 9.9 13.5 9.86 11.9 12.9 8.41 9.12 5.29 6.97 9.37 8.06 7.58 10.1 8.1 13.5 12.1 2.5 10.8 5.62 7.84 9.35 1.29 8.97 5.61 9.09 9.25 10 9.13 7.78 2.59 9.67 0 6.06 12.7 9.72 10.6 4.67 9.76 6.08 2.75 5.62 10.2 7.69 7.44 11 6.98 5.8 10 9.96 8.39 10.3 9 8.3 13.4 10.2 3.86 8.43 11.1 12.9 12.5 8.21 8.06 6.89 4.38 7.86 9.56 11.5 11.2 7.23 6.77 9.86 10.9 12.1 9.23 13 9.02 8.01 7.68 9.67 8.21 2.08 9.66 4.8 1.66 10.3 3.15 13.2 9.56 9.79 11.7 4.86 12.8 10.3 8.71 11.1 10.1 10.7 10.4 10.5 9.65 10.1 9.13 3.76 9.51 9.92 8.74 8.09 8.15 9.57 7.24 11 9.43 10.3 11.2 9.4 9.17 9.82 9.83 0 9.23 6.04 9.04 10.3 10.5 10.4 11.8 10.6 8.71 5.92 10.4 2.08 11.3 7.89 7.5 10.1 9.87 2.31 8.75 5.33 8.38 11.2 10.2 10.5 7.63 10.5 10.2 8.5 10.7 10.4 10.8 10.5 9.99 13.4 12.5 10.1 10.6 9.83 11.9 11.8 11.3 10.8 8.38 10.3 9.43 10.1 10 10.2 6.74 8.75 7.44 10.8 12.5 9.96 8.13 10.8 9.73 10.1 1.81 6.88 10.9 9.99 8.11 13.1 10.4 10.4 10.4 10.8 10.7 11.6 10.2 13.3 1.66 10.7 9.92 7.58 7.42 6.47 4.79 3.03 8.81 10.5 11.3 10.7 9.94 6.73 9.96 8.78 12.1 1.95 10.4 7.84 11.3 8.21 8.98 7.42 11 9.03 3.76 8.12 8.67 5.15 1.05 10.4 10.1 6.48 10.4 1.81 10.8 8.42 9.35 9.75 11.2 10.9 10.6 11.8 2.2 8.62 1.81 14.1 10.4 9.76 1.05 8.18 7.34 10.3 11.5 8.75 9.4 12.5 0.78 6.74 10.2 8.59 10.3 7.63 4.88 9.65 10.8 9.48 11.8 7.47 6.28 11.7 8.19 9.13 11.4 5.81 10.3 9.82 12.7 4.61 6.27 8.32 5.8 8.08 10.8 7.92 11 14.1 8.17 5.94 2.08 10.6 7.05 11.2 5.19 5.82 4.67 7.93 11 8.27 3.27 6.07 9.66 6.43 7.88 11.3 8.95 10.6 8.64 11.6 10.9 12.2 4.22 1.95 3.09 10.3 4.5 7.34 8.78 7.33 11.1 9.74 12.7 4.73 11.1 5.26 8.65 8.65 7.78 7.3 12.2 10.6 6.75 3.84 6.1 10.4 10.7 2.31 10.6 8.38 2.9 7.76 9.49 8.1 11.7 7.94 13.5 2.31 9.33 12.6 11 11 12.5 10.8 11.2 9.43 5.39 5.7 11.9 1.48 2.08 2.59 8.05 9.49 7.1 10.1 0.44 7.07 9.47 5.82 4.47 12 9.93 6.04 12 10.3 9.49 0.78 10.1 12.2 9.83 12.9 9.7 15.1 8.32 12.3 10.2 8.71 8.83 12.5 10 7.08 8.66 9.02 10.8 6.39 12.1 6.46 9.74 7.02 5.75 8.05 9.36 5.49 12.4 3.72 12.7 9.19 1.05 6.93 9.81 8.7 10.5 8.11 11.8 7.01 8.14 11.4 8.58 7.3 10.5 6.52 11.5 8.71 11.1 0.78 12.5 0.44 10.3 9.58 6.54 11.5 8.18 9.07 6.2 10.1 11 9.82 7.97 4.69 8.94 9.52 7.31 8.49 10 10.2 7.2 5.65 7.96 0 9.2 1.05 10.5 7.72 9.02 5.07 2.75 12.3 8.4 8.47 8.3 6.58 2.08 9.97 9.39 10.2 9.82 9.94 8.76 10.5 6.43 10.8 9.71 9.39 9.23 10.6 8.62 0.44 9.87 2.31 11.6 9.57 12.2 1.66 10.6 10.8 10.8 9.56 11.6 7.97 6.02 11.5 11.6 10.1 2.5 12.4 2.75 11.2 9.98 10.1 9.94 6.97 1.29 9 11.5 11 10.4 9.73 10.7 11.6 9.49 11.5 9.37 8.7 6.4 11.8 12.2 11.3 11.5 10.1 10 9.43 10.8 9.92 7.53 9.68 9.81 9.41 13 12.9 9.71 10 10.1 7.24 12.1 10.6 7.76 11.4 11.9 5.66 10.7 9.64 11.1 10.5 3.51 11.3 12.3 8.35 10 7.02 9.16 8.69 3.91 4.67 10.1 7.28 0.92 7.12 8.91 9.14 0.78 10.8 3.03 10.7 9.71 8.28 8.04 9.59 8.65 10.1 7.72 6.04 5.6 1.48 8.25 6.83 13.4 8.95 12.2 5.79 10.3 5.67 8.29 11.7 7.64 8.92 0 8.41 10.2 9.25 11.5 10 9.67 8.77 11.6 9.83 11.7 10.5 7.09 1.81 8.9 1.05 8.12 10.3 7.95 8.53 10.1 9.81 8.28 9.68 12.6 4.19 10.1 11.3 12.6 9.15 3.72 10.7 9.7 8.92 6.67 9.08 6.13 5.01 7.92 9.35 9.55 12.4 7.85 8.57 9.33 7.96 7.78 9.25 6.03 10 8.98 7.42 10 9.62 8.87 11.8 9.03 5.06 9.29 4.16 10.4 8.78 8.89 8.76 5.75 0.44 8.91 6.98 10.8 1.66 9.67 7.8 9.01 10.8 9.64 10.5 3.84 11.4 6.47 7.94 2.41 7.75 10.6 10.8 7.75 7.06 8.73 8.43 7.61 8.73 8.59 13 11.7 9.32 6.03 11.4 8.3 9.55 11.3 12.3 6.36 11.2 15.7 11.1 2.83 4.32 11 8.17 7.17 8.28 9.65 12 7.6 10.3 6.35 8.02 8.71 2.5 11.8 7.66 9.95 9.24 7.98 9.46 9.49 9.45 11.4 9.59 7.2 4.91 9.06 4.1 8.96 10.1 9.42 10.9 12 9.34 8.98 8.32 1.81 8.41 8.03 9.81 2.83 12.1 7.65 0.78 10.8 11 11 11.7 6.31 9.71 9.41 10 9.37 9.64 9.88 9.53 8.27 14.7 8.62 11.1 7.51 4.35 4.1 9.72 8.36 7 9.46 8.11 9.69 2.68 4.95 10.1 10.4 7.01 10.7 9.82 8.62 3.32 10.9 6.29 10.9 7.29 7.63 5.51 9.18 7.62 9.12 9.14 7.09 4.22 0.78 4.67 6.43 10.9 6.73 9.93 7.54 9.54 10.3 9.43 9.59 9.8 5.82 4.86 7.84 5.4 9.35 8.01 8.12 6.96 8.29 8.44 7.79 11.1 10.7 9.99 8.44 7.06 9.96 10.1 8.07 13 12.3 5.13 9.96 3.27 9.02 4.42 8.38 10.7 11.9 1.05 11.3 7.46 8.64 11 3.21 0 8.48 8.73 3.51 9.9 12.4 9.04 9.82 6.91 9.61 10 11.9 9.73 11.4 8.55 6.3 8.02 10 8.34 5.59 10.9 9.07 10.8 9.67 11 10.4 13 11.3 4.48 7.94 9.15 10.7 11.2 11.9 10.9 9.92 8.63 12.2 9.1 9.31 1.05 10.8 7.93 5.9 4.56 9.7 5.37 7.44 8.82 4.05 3.47 4.45 11.6 3.37 6.42 0.78 11.1 3.42 7.51 2.75 8.56 7.89 5.8 4.76 9.6 10.8 8.09 5.34 8.72 7.86 8.28 2.68 9.36 3.71 8.52 0.44 0 7.08 4.22 9.11 7.68 9.35 6.45 4.58 0 9.42 8.76 7.25 10.3 7.39 10.8 7.96 8.94 9.46 12.7 8.99 9.13 8.81 9.22 7.88 7.2 10 9.74 7.31 7.19 6.87 4.4 9.88 11.3 4.93 8.69 8.65 4.95 3.68 11.8 7.66 7.75 8.23 10.4 10.1 6.83 12.1 9.8 5.56 8.1 5.39 6.97 4.73 9.1 11.7 7.96 9.05 8.99 10.8 10.3 8.18 7.14 9.97 8.34 8.73 4.82 4.88 9.07 9.84 7.22 5.39 2.9 9.84 7.42 15.3 7.65 12.5 7.55 9.36 4.16 8.57 6.63 10.5 13.7 8 1.05 0.44 8.3 9.2 5.16 5.86 5.31 7.87 8.92 10.9 7.34 9.38 8.94 7.15 5.13 7.03 4.07 7.29 0.78 9.4 9.46 8.98 7.28 9.68 6.17 0 6.5 7.79 8.99 5.03 4.24 10.1 5.88 6.66 9.4 5.13 8.6 3.03 1.66 10.9 8.76 6.66 9 7.46 10.4 7.36 11.1 7.99 9.71 11 10.7 7.9 1.05 8.62 7.32 9.99 8.21 7.4 9.68 0.78 7.36 6.62 6.6 2.59 10.1 0 6.23 4.13 5.85 8.57 7.48 0 6 12.1 0 9.02 8.53 4.56 8.69 8.6 0 4.73 5.7 6.78 9.13 9.43 3.15 11.2 3.94 7.57 8.79 9.84 10.7 11.5 9.23 8.69 10.4 8.67 0.44 7.38 4.78 3.42 3.91 9.22 9.08 6.77 9.87 4.22 13.1 8.43 12.7 8.96 9.47 2.75 1.81 8.74 10.4 8.69 7.02 4.56 13.2 1.05 8.62 11.6 10.7 7.7 9.31 6.8 9.25 0 5.79 6.74 7.21 0.44 7.37 8.78 6.14 7.98 10.7 10.9 5.82 0.78 8.73 9.05 8.49 9.55 4.54 9.14 7.75 6.3 9.97 8.67 7.55 9.96 18.2 11.2 6.59 2.5 5.26 5.29 7.18 0.44 10.6 10.8 7.4 10.2 8.66 3.15 7.27 9.48 13.4 13 0.44 8.75 7.72 11.2 3.64 6.65 10.3 7.65 5.76 4.27 8.52 9.42 11 3.27 8.31 11.8 7.58 1.29 5.45 10.6 9.94 7.95 9.6 4.1 7.54 13.5 2.75 8.71 6.84 2.68 3.37 10.1 9.39 6.76 8.13 10.6 1.48 1.95 2.41 11 4.32 5.38 5.22 7.57 6.19 9.27 8.15 9.47 8.53 8.51 6.29 7.36 8.97 9.23 9.67 3.51 10.1 8.97 5.44 9.33 8.06 8.48 8.53 10 9.74 6.27 8.22 0 8.3 6.31 7.53 9.79 0.78 6.83 5.76 4.64 4.67 2.08 10.4 4.63 0 8.09 5.85 6.07 7.41 9.53 8.09 6.92 5.31 9.74 0.44 8.33 7.49 7.66 3.37 4.73 6.01 10.6 1.29 0.44 11.5 9.76 6.26 2.97 7.3 8.72 7.9 10.5 8.93 6.04 10.1 8.1 10.2 10.7 9.59 4.3 8.77 9.51 8.27 7.06 6.05 1.29 6.39 9.19 8.94 4.83 6.91 3.8 5.29 8.77 8.64 10.7 9.04 9.65 8.84 1.81 9.22 3.87 9.51 9.98 6.83 9.29 7.85 2.53 6.28 11.7 7.77 8.51 0.44 7.94 1.48 7.24 7.16 3.8 6.91 4.07 7.18 10 0.44 9.42 8.12 0 6.68 5.61 8.44 5.23 7.02 4.67 7.49 8.16 9.46 7.93 4.89 3.47 8.5 4.98 3.27 4.24 6.94 6.69 6.45 9.92 9.66 8.89 0 10.7 9.37 4.98 10.2 2.97 7.13 6.48 5.23 7.72 11.5 0 7 7 8.34 7.96 2.97 13.3 7.19 8.11 3.37 7.71 1.48 13.9 9.56 7.52 8.21 9.21 4.93 7.65 0.44 2.08 0 9.92 2.5 8.96 0.44 5.23 6.37 9.51 13 8.78 7.79 0.78 10.8 9.65 6.02 7.37 8.93 5.29 1.95 8.88 1.48 1.29 4.32 9.91 9.04 7.78 9.77 8.97 7.25 11.4 4.91 0 4.45 9.12 4.32 11.9 1.66 7.79 9.86 5.96 5.21 3.8 9.26 1.29 7.73 0.78 2.9 9.9 4.84 8.74 2.08 9.82 9.91 8.29 8.67 10.3 7.6 7.29 6.35 2.75 3.64 7.99 4.54 3.6 11.1 10.3 4.69 4.5 6.32 5.21 11.4 8.51 7.89 9.55 9.28 8.11 7.68 9.87 10.8 8.5 7.15 9.54 3.76 5.84 8.88 5.29 7.97 7.97 7.16 1.05 7.05 8.42 8.32 7.37 10.8 8.2 8.14 6.21 10.3 3.76 8.63 7.11 8.57 8.8 7.76 0 2.41 9.4 12.4 9.32 10.5 6.81 7.28 8.57 10.2 5.25 7.04 5.47 6.17 6.15 10.4 8.79 3.32 9.09 7.2 3.64 7.6 4.13 8.25 8.55 11.3 9.21 7.39 6.04 5.91 7.66 4.63 8.39 8.65 8.63 5.16 6.28 2.68 7.2 6.25 7.88 2.08 8.85 0.78 11.2 12 10.1 1.66 7.37 10.6 0 8.97 8.82 6.86 11.7 9.04 7.64 1.05 10.1 9.93 0 10.8 1.95 0 8.3 8.34 6.56 4.52 5.56 9.16 1.05 4.25 7.09 7.04 7.87 8.4 4.38 4.27 6.01 7.05 8.71 4.56 12.2 6 9.48 9.84 6.06 10.4 2.75 8.93 2.31 8.03 8.56 7.65 8.27 5.15 1.05 7.63 4.19 5.4 9.92 11.1 11.1 10.8 2.75 3.51 8.53 10.5 10.7 7.84 8.19 9.41 9.28 5.82 8.18 2.9 7.67 7.03 6.9 9 6.11 8.92 10.3 9.81 8.31 8.85 10.4 7.9 6.71 10.4 5.7 9.65 8.98 5 11 10.9 9.71 10.3 11.7 6.34 6.91 10.2 1.29 8.05 5.8 9.74 0 9.92 12.3 0.44 0.44 4.16 6.77 7.36 0.44 10.7 5.47 7.57 15.4 5.5 3.64 3.84 2.2 3.6 7.77 11.1 4.35 6.9 4.65 8.28 6.37 7.69 7.35 11.7 9.46 6.59 9.1 7.67 8.26 3.91 5.92 10.5 10.1 0 2.08 10.2 6.33 0.78 9.8 2.41 3.51 10 6.67 6.1 4.22 7.28 0.44 8.48 10.2 6.77 3.56 5.5 10.1 9.51 7.86 4.63 11.6 8.69 2.41 10.9 10.9 8.64 5.23 10.2 6.94 6.83 7.67 5.47 8.36 7.43 5.97 11.7 7.69 6.61 4.19 10.4 8.5 5.51 12.1 11.1 10.7 10.3 5.47 9.8 8.66 9.98 2.59 9.87 10.2 1.95 6.2 2.75 11.5 5.46 10.8 10.4 10.5 8.16 0 8.46 7.62 2.5 1.05 9.47 3.94 5.51 5.78 8.88 6.08 5.33 5.97 6.26 9.14 4.26 7.6 11.4 5.26 9.08 5.16 2.97 9.83 11.6 6.33 9.17 8.51 4.83 6.39 6.87 5.12 4.5 6.39 13.6 5.26 10.2 1.29 9.4 0 7.57 13.1 4.5 1.95 12.2 9.12 6.2 1.81 2.41 3.72 1.29 4.47 7.19 8.92 9.1 1.29 8.64 9.81 5.31 11.2 8.18 9.47 9.43 8.53 6.68 10.3 10.6 9.88 10.8 7.08 12.9 2.2 5.22 8.22 10.3 6.58 10 7.65 7.53 9.35 9.51 7.39 7.02 0 6.19 7.79 9.83 9.51 9.04 8.73 7.96 7.65 1.95 3.98 7.29 8.44 7.06 4.52 12.5 9.71 6.45 8.41 6.34 6.65 6.1 2.41 3.68 10.4 1.66 7.94 4.93 6.97 4.27 9.2 5.5 7.49 7.87 10.6 8.71 10.6 11.9 0.44 2.83 5.23 12 2.08 6.13 11.7 8.1 3.42 9.46 8.5 9.7 1.81 6.59 7.33 9.37 8.93 10.6 7.31 7.57 9.05 5.04 2.5 5.76 5.43 2.59 8.65 2.83 4.79 10.8 8.93 8.88 8.34 7.04 4.4 10.1 12.8 6.01 1.29 12 1.95 4.38 0.78 10.5 10.7 9.4 6.4 5.79 0.44 1.66 15.3 7.68 7.09 2.59 8.49 5.18 12.6 7.21 12 7.88 5.32 8.62 6.12 0 4.67 5.15 1.05 0 9.31 10.4 6.92 4.61 2.2 6.3 1.05 8.04 3.51 1.48 9.18 3.19 8.52 5.29 6.25 8.8 5.9 15.3 1.48 7.51 7.04 8.96 11 5.52 9.98 2.5 5.22 1.81 1.81 6.19 12.2 4.56 6.28 10.8 5.54 6.97 8.09 4.22 5.33 3.56 7.27 7.62 8.21 2.68 8.7 1.95 10.1 3.15 2.5 8.52 5.22 7.51 6.67 5.01 0.44 0.44 8.97 9.11 8.88 7.51 6.25 8.87 6.42 7 7.69 3.96 10.7 8.77 3.8 6.66 2.41 6.34 8.89 5.88 2.08 7.67 7.86 6.65 9.66 4.5 9.36 6.91 7.72 6.54 6.48 5.56 6.63 1.05 9.15 6 8.2 5.12 8.9 9.6 6.58 10.5 8.98 4.75 2.9 11.4 2.75 3.09 9.28 8.79 10.9 8 2.75 8.72 6.08 7.1 9.01 3.47 12.8 9.76 0.87 9.88 7.08 6.17 3.03 9.18 0.44 4.16 1.66 10.6 9.14 7.98 2.59 2.9 0.78 6.95 4.91 1.66 13.1 11.5 1.05 8.73 5.15 5.78 13.4 9.24 10.6 2.59 5.04 12 0 5.68 10.2 3.32 2.08 4.16 0.44 10.9 1.66 7.18 7.41 1.81 7.51 8.77 7.57 5.76 7.27 2.72 9.01 4.19 6.09 7.78 4.91 7.29 3.32 9.57 1.81 8.77 0.44 3.83 3.64 9.76 6.98 3.76 4.98 8.8 7.83 5.26 4.5 8.12 5.96 14 7.74 13.9 6.65 6.7 0 4.07 9.64 9.14 5.9 0 6.58 5.13 8.96 7.36 8.47 10.5 8.01 5.15 6.42 3.56 3.64 0.44 5.37 0.78 9.74 7.7 5.95 10.7 2.5 7.59 2.31 4.04 4.54 7.01 7.34 4.52 4.58 9.35 9.55 9.74 1.05 6.65 9.74 8.4 7.93 1.66 11.1 2.41 11 8.71 7.62 9.03 6.99 10.5 7.39 10.8 9.53 4.47 4.89 4.65 6.08 2.59 11 8.5 5.73 3.32 10.4 6.87 7.93 7.97 10.6 6.91 6.45 10.7 9.98 8.88 7.73 7.7 7.63 1.81 9.42 3.32 8.11 3.09 7.21 6.19 9.56 9.18 8.14 2.83 3.91 10.9 6.67 6.52 8.43 11.5 7.36 9.66 9 11.4 7.43 8.02 8.73 7.64 3.56 10 10.7 5.3 7.91 10.6 7.47 6.51 4.65 5.12 10.8 8.25 5.94 3.47 3.21 1.81 10.5 7.44 10.8 7.86 7.42 2.68 7.66 4.8 1.81 6.17 9.13 5.4 7.52 7.06 7.33 5.45 8.32 3.47 5.18 7.9 12 1.05 9.9 11.1 9.06 6.92 10.4 0.44 8.23 7.85 7.71 8.88 12.2 0.78 6.54 5.23 9.2 5.84 5.59 10.2 3.27 2.59 10.8 4.01 3.56 10.4 5.08 0 8.24 7.98 2.2 9.24 8.27 10.2 2.31 3.47 1.05 10.7 8.55 10.4 8.11 7.91 3.03 6.92 9.83 3.56 6.76 6.22 5.66 10.4 3.21 8.61 4.04 1.05 2.2 6.43 6.89 7.14 2.41 5.59 2.41 6.23 4.86 8.08 1.95 9.57 4.47 10.2 5.43 4.91 7.07 0 6.73 9.16 6.05 11.1 5.38 4.61 8.77 1.81 9.4 6.88 3.94 1.48 6.14 0.44 8.45 6.11 6.96 8.38 9.7 8.09 9.52 4.4 12.3 1.66 0 10.6 6.17 1.66 10.9 3.91 0.44 12.2 11.2 4.71 9.74 2.83 7.61 1.66 2.31 11.2 10.1 2.68 3.27 8.83 8.94 0 7.74 12.9 10.1 7.71 8.72 8.87 9.39 6.61 5.56 8.34 8.08 10.9 10.5 2.75 6.93 8.46 7.92 11.1 1.48 3.56 3.8 9.8 5.56 8.67 6.52 4.54 11.5 4.32 6.88 9.94 0.44 7.21 10.3 2.5 5.52 7.61 4.27 4.73 12.1 9.67 3.47 13.2 8.54 0.78 8.06 4.52 9.91 1.29 4.01 7.08 6.35 4.32 2.5 6.06 6.84 6.67 10.7 9.4 10 6.94 7.52 4.91 8.23 6.07 7.1 4.73 8.51 7.43 0.78 13.3 7 8.39 7.7 7.24 6.6 6.11 6.86 6.77 4.75 8.05 8.16 4.1 11.2 0.78 9.29 1.66 8.04 7 4.86 9.85 1.81 9.57 5.83 10.6 9.13 4.79 0.44 8.45 7.99 0.44 5.45 6.34 9.8 9.16 12.1 11 5.66 9.11 0 12.8 2.41 7.94 0.78 6.04 1.05 9.1 3.42 5.91 5.89 1.05 2.31 4.01 10.6 10.4 9.28 13.6 11.1 5.95 4.91 4.35 5.87 8.94 12.3 11 8.25 13.4 13.3 5.09 0.78 11.7 2.75 6.54 10.6 3.37 9.54 6.78 7.59 11.7 12 2.31 7.92 6.5 9.95 6.65 7.53 6.77 10.7 10.2 12.8 11.7 7.63 6.55 6.78 0.78 7.84 9.36 0 9.67 1.81 9.55 7.86 5 10.9 5.73 5.49 4.01 9.13 9.27 8.6 6.58 6.38 7.02 7.84 4.3 9.58 7.97 3.6 3.37 7.4 7.99 1.48 5.85 9.73 8.75 5.13 8.48 6.76 3.64 0.78 7.5 9 10.9 6.29 6.3 8.37 5.69 7.93 6.4 4.45 7.37 0.78 0 7.02 9.25 2.83 10.1 6.8 3.32 9.85 6.04 3.15 1.29 5.74 1.05 10.8 6.96 7.01 9.04 6.73 9.87 0.44 10.6 10 0 4.38 0.78 6.98 9.92 7.22 9.9 4.82 11.4 8.64 8.69 10.6 10.6 8.74 7.55 6.49 9.41 12.4 9.31 9.79 7.66 3.51 1.66 8.15 9.75 9.53 10.4 10.5 10.3 8.55 10.3 10.5 6.82 3.98 1.05 4.89 9.23 10.6 6.83 10.6 2.5 11.2 10.1 4.3 6.8 1.29 5.44 8.2 4.73 8.97 3.09 1.48 10.9 13.8 9.4 9.15 11.4 13.1 11.3 9.29 6.32 8.44 3.76 11.8 9.74 9.86 8.7 8.56 8.21 12.8 0 9.06 8.26 4.01 8.58 14 13.8 0.78 10.3 2.59 3.68 9.11 9.14 5.38 7.82 13.7 7.14 10.9 8.08 14.3 11.8 7.01 8.21 13.9 8.27 9.9 10.7 8.12 9.3 12.9 7.06 10.9 4.52 8.24 9.35 10.1 2.5 8.45 6.73 9.41 10.3 9.34 11.2 10.7 9.48 5.84 12.3 0.78 8.44 9.39 7.64 8.39 8.79 6.29 8.8 12.2 0 7.19 11.5 10.7 6.43 6.73 6.54 13.1 12.2 9.68 10.4 9.72 6.54 9.95 13.5 10.4 11.4 15.4 0 10.3 7.73 8.95 7.05 9.02 11.2 10.9 12.2 12.8 14.9 8.93 9.05 6.21 4.89 5.3 8.81 9.21 8.37 5.43 7.26 11.8 8.82 11.6 11.4 12.8 14.5 7.11 6.7 11.3 8.05 11.2 10.4 6.2 7.81 2.31 7.49 1.66 5.03 8.98 4.95 8.32 11 10.9 10.1 9.47 9.7 7.83 10.6 8.94 7.71 11.9 9.79 1.02 9.85 10.2 7.34 4.43 11 3.37 6.9 7.83 5.9 3.72 8.05 3.82 9.52 2.41 6.47 9.28 8.35 5.99 12.5 7.27 7.94 8.55 3.27 6.43 9.52 13 7.1 12.5 8.98 7.18 12.5 12.7 14.1 13.4 11.3 0.78 9.76 0.44 8.86 4.63 7.25 10.4 9.54 7.42 0.44 8.77 2.75 10.2 7.56 2.2 3.76 12.6 7.41 7.17 7.63 1.05 9.18 3.03 7.11 8.32 3.27 8.98 0.44 8.34 13.7 13.6 7.42 0.78 3.09 9.63 8.73 5.96 7.3 10.4 1.05 8.07 2.68 1.05 9.61 9.79 5.03 9.58 7.71 0.78 9.13 3.37 5.19 1.05 8.53 5.84 7.88 3.51 8.46 7.3 5 4.65 11 10.5 1.66 6.76 10.1 7.16 5.38 3.91 8.49 2.41 8.2 9.4 9.3 7.89 3.15 9.27 8.99 7.14 9.94 9.69 7.17 7.49 5.9 10.1 8.17 8.59 8.42 13.1 8.98 4.01 8.19 7.82 10.1 9.05 9.23 7.67 0 10.6 4.54 9.3 5.91 10 3.56 6.04 7.18 9.19 9.99 4.13 3.47 9.19 9.34 2.5 0.78 11.4 6.81 4.61 5.74 5.78 9.41 8.94 10.2 8.84 8.27 5.93 10.2 4.35 5.55 9.41 7.86 4.86 10.2 7.11 4.4 14.2 5.7 8.32 1.29 3.27 2.9 11.9 4.96 7.52 4.71 11 0.86 12.1 9.94 5.78 8.17 12.5 9.61 1.05 0 2.2 8.82 9.09 6.55 7.25 10.9 8.54 8.82 11.5 6.4 12.6 8.36 8.77 7.64 7.58 10.6 12.1 12.6 7.56 9.42 10.2 13.5 1.66 6.38 2.68 9.25 8.78 8.4 0.78 11.7 9.65 7.17 8.22 8.18 8.04 12 7.36 9 9.04 9.21 9.63 10.5 9.57 0.44 6.57 9.51 11.5 10.2 11.8 7.4 0.78 7.84 11.2 1.95 0.78 9.11 9.69 8.37 2.9 11.8 5.89 8.34 9.7 8.63 9.64 8.92 11.5 7.62 10.5 11 6.71 9.82 11.2 2.9 11.4 12.7 3.15 9.25 3.8 11.3 9.83 10.4 9.77 8.52 9.47 11.3 8.41 1.29 7.68 5.07 9.55 0 8.91 9 7.15 10.6 10 3.27 3.91 12.2 8.89 10 5.61 9.28 10.6 8.12 8.96 11.1 7.3 10.8 5.38 0 10.4 9.54 7.31 5.55 13.1 12.8 1.95 9.32 2.5 12.8 2.68 6.17 8.46 2.31 0 13.2 8.31 7.81 4.89 6.93 5.69 6.12 5.88 11.4 11.6 10.1 9.15 10.4 11.3 3.47 7.74 7.17 7.9 9.44 9.66 4.45 10 8.67 7.11 2.83 12.2 9.12 11.6 3.09 7.03 7.79 4.27 3.85 12.2 9.1 10.3 12 9.68 8.54 7.08 9.64 10.8 3.03 5.84 5.42 8.45 8.96 8.8 6.54 9.35 8.81 8.17 1.05 8.37 10.2 8.6 3.43 9.01 8.03 9.43 5.43 4.73 7.62 8.92 3.37 5.74 7.26 1.81 4.86 7.09 13.1 1.48 9.93 7.56 6.88 5.31 6.84 5.61 1.05 5.19 1.29 6.03 0 9.15 6.93 0 0.44 8.58 8.62 6.97 11.8 9.32 8.83 6.39 12.2 4.65 8.15 8.77 9.95 8.58 10.8 2.75 12 7.23 8.02 3.47 11.9 7.81 7.64 2.08 9.48 10 10.4 3.32 10.6 7.61 9.31 5.96 7.28 7.68 8.35 9.93 9.99 4.07 0.78 3.15 5 6.24 9.06 7.82 4.37 8.7 11.3 12.5 4.96 9.55 9.18 4.96 8.09 6.51 7.97 5.98 9.67 9.3 8.12 11.1 9.76 3.32 10.7 8.24 7.61 9.47 0.78 9.02 0 9.48 2.9 6.56 4.63 9.87 7.95 10.7 9.35 8.44 8.19 0 9.97 7.24 13.9 3.47 5.46 8.75 10.9 9.02 8.97 6.21 3.27 9.74 7.94 6.11 7.79 10 7.51 3.64 6.03 8.07 0.78 0.78 5.21 11.6 1.66 8.94 6.91 4.61 5.72 10.1 6.17 9.26 7.19 12.5 8.45 8 9.32 8.06 9.82 8.61 10.2 11.6 7.24 6.68 7.82 11.5 9.44 1.29 5.78 4.69 9.68 3.51 7.54 7.01 14.1 12.1 14.8 9.58 13.5 2.5 8.74 9.6 5.67 13.5 5.98 9.6 12.2 6.46 9.37 8.04 10.6 8.2 4.63 6.67 10.3 1.48 7.49 12.9 8.67 5.91 10.8 3.09 10.8 11.8 10.5 8.62 8.58 11.1 12.1 10.3 8.72 8.1 10.2 7.86 13.5 8.78 9.72 10.8 9.82 8.7 6.14 8.82 11.1 9.41 10.3 8.32 9.55 7.86 8.81 7.03 10 9.75 11.4 9.72 8.38 11.2 9.6 10.6 8.85 9.75 8.64 10.1 10.5 8.08 11.1 10.3 9.74 10.5 10.5 9.15 10.2 10.1 10.3 9.16 9.31 11.2 13.5 9.78 8.69 10.7 8.21 9.31 12.9 9.34 8.93 9.34 10.2 8.94 8.3 10.6 6.77 2.59 9.41 8.71 11.2 10.8 9.07 11.1 11.2 10.8 10.2 9.78 10.4 10.6 2.83 7.72 11.5 1.29 8.34 12 10.9 8.78 10.9 3.32 10.4 10.1 9.56 10.4 10.8 11.3 7.68 11.8 7.34 11.1 10.8 10.1 9.66 7.64 10.6 8.76 9.42 0.78 8.02 8.16 7.51 5.23 5.67 5.1 7.55 6.21 11.4 10.4 2.59 11.2 8.17 10.9 8.14 8.97 11 2.75 7.45 0 10.6 10.6 9.63 7.96 5.63 3.84 5.65 13.2 10.2 14.8 11.8 9.26 8.99 8.67 9.92 1.05 10.6 10.4 12.2 11.2 9.01 8.41 11.6 10.2 12.8 11.8 9.8 9.92 9.63 8.16 9.97 9.3 10.3 9.98 10.6 9.76 10.5 8.26 10.3 10.2 10.4 11 10.6 10.2 11.3 10.5 9.85 11.8 11.4 4.09 12.8 11.7 10.7 10.5 9.35 10.1 2.59 10.8 11.9 9.65 10.9 11.4 10.7 8.22 9.74 10.2 9.95 5.8 10.4 11.1 9.54 11.3 9.59 10.9 8.39 8.64 9.15 10.1 8.93 8.66 11.1 11.5 10.5 11.3 10.9 8.61 8.77 13.1 9.24 10.6 8.95 9.44 11.3 10.3 6.26 10.5 9.38 10.2 8.8 8.3 11.5 10.4 9.84 14.2 9.07 8.35 11.8 7.91 4.95 7.44 11.9 10.4 10.7 10.1 10.9 8.85 10.2 10.9 8.34 9.47 10.7 10.5 9.7 5.23 9.59 10.8 10.6 10.2 9.72 8.44 8.8 7.94 11 7.76 1.05 9 11.4 11.7 11.3 10.4 9.4 9.04 13.7 9.17 10.7 11.5 9.48 12.4 9.75 9.56 10.4 10.9 8.63 12.2 9.51 9.19 9.13 8.7 10.4 11.6 12.8 10.3 6.85 11 10.5 8.63 10.2 10.6 10.4 9.29 11.4 12.4 10.6 11.7 12.1 9.8 12.2 10.6 10.4 11.8 10.7 10.2 10.6 9.08 10.3 9.94 13 11.6 11.2 14.6 14.6 10.5 8.61 10 7.99 8.85 10.5 11.9 9.95 4.4 8.63 9.92 2.41 9.14 9.86 8.72 10.2 9.47 8.57 10.9 6.68 9.51 8.6 9.75 8.59 8.78 10.1 10.8 11.6 11.5 6.58 6.37 11.8 10.9 10.5 10.3 10.6 8.25 10.2 10.6 10.2 5.15 8.59 10.8 10.1 6.71 9.33 12.4 11 0.44 9.91 9 10.3 11.6 11.7 8.04 8.11 9.93 7.74 11.2 11 11.2 9.83 8.99 8.63 10.6 9.91 3.32 5.86 10 11.1 9.13 11.9 9.26 10.1 6.06 11.5 10.6 10.3 10.9 9.99 6.2 11 10.8 8.9 10.8 9.67 8.98 9.42 10 9.38 10.3 4.38 8.56 10.1 12.4 8.64 9.93 5.33 10.2 9.55 10.7 12.7 8.34 10.7 10.7 12.2 9.95 12.8 9.81 11.1 10.2 10.1 10.1 11.8 10.3 11.6 6.98 9.33 10.6 11.4 10.6 10.5 9.75 12.9 10.9 10.5 12 11 7.86 9.9 9.81 10.8 7.44 9.97 9.89 10.9 10.8 12.2 7.42 12.4 8.69 11.6 10.1 11.4 10.5 9.88 7.28 10.6 10.7 11 11.5 10.5 10.3 11.3 11.6 11.7 12.2 10.8 10.9 10.8 11.3 9.33 10.5 2.97 8.59 10.7 10.2 6.83 8.3 8.42 11.2 12.7 8.12 4.16 9.76 9.73 8.69 11.2 7.67 1.48 6.96 7.76 8.7 9.72 10.4 7.39 8.86 9.29 6.45 8.91 10.1 1.48 8.06 8.14 11.7 11.6 8.89 7.83 11.5 11.1 12.4 9.93 7.84 8.16 8.64 3.94 9.04 10.6 10.3 8.68 9.88 11.9 11.9 11.2 11.4 9.68 8.08 7.14 10.6 10.5 11.1 3.27 8.81 9.86 7.77 9.96 3.68 11.4 9.28 0 6 13.9 7.72 13.5 9.99 8.87 10.3 9.58 9.78 7.04 10.3 10.8 10.1 9.91 11.6 8.73 9.53 11.5 9.95 9.18 2.31 1.29 12.7 10.1 11.2 13.8 9.66 11.2 8.59 8.43 14.4 10.4 9.51 0 9.37 9.79 7.72 3.03 12.5 12.2 10.3 10.3 8.97 9.12 0 7.67 8.62 9.35 9.66 8.74 7.22 7.96 8.46 8.82 8.58 9.82 13.3 10.3 9.17 9.36 1.29 3.84 11.3 0.78 8.43 10.8 1.95 9.6 13.7 3.15 13 9.14 8.28 1.05 11 8.22 8.87 9.98 8.32 6.1 6.14 9.68 8.32 4.5 9.73 6.35 7.96 10.3 8.34 8.57 11.3 7.18 8.82 11.1 10 9.55 9.91 0.78 8.11 11.9 9.86 9.91 2.41 0.44 7.55 6.73 10.8 9.31 10.2 11.6 6.46 9.3 8.83 8.74 5.78 10.3 10.2 12 9.78 9.89 7.5 4.77 13 11.9 8.76 9.15 9.11 8.61 11.6 10.4 9.43 3.91 10.6 9.12 11.2 8.55 11.4 8.16 12.1 12.3 6.4 6.46 9.61 10 8.8 8.61 10.4 8.55 2.75 7.19 10.2 10.2 12.6 9.74 4.86 9.28 10.4 12.2 10.9 9.12 2.08 7.74 9.03 10 2.9 9.59 8.68 8.69 8.87 7.87 10 8.62 6.03 8.06 11.7 9.76 1.81 3.68 3.51 3.13 8.8 2.31 3.63 1.05 10 2.41 4.8 1.48 6.77 7.9 6.23 5.56 8.41 5.53 5.63 1.66 9.28 11.3 9.21 7.14 8.68 3.47 1.29 14.7 7.86 11.1 0 15.3 9.02 9.66 12.2 4.89 3.37 3.32 7.16 3.59 1.66 10.7 7.04 2.87 9.24 6.79 8.58 9.81 2.08 3.47 9.13 11.1 9.44 4.88 4.1 7.94 9.9 9.7 12.3 5.72 10.7 4.8 8.85 7.93 7.95 6.21 9.61 6.98 3.87 10.4 2.97 5.56 10.3 9.84 7.7 1.05 9.21 10.4 9.61 8.6 7.92 6.4 6.04 9.56 5.44 7.94 10.3 6.3 1.29 8.99 1.95 0.44 8.49 9.07 5.37 6.9 8.86 1.05 9.44 7.4 5.62 4.1 11.4 7.9 5.55 9.08 12 0 11.3 11.4 6.67 8.27 6.66 11.5 12.3 6.87 6.76 5.7 7.24 0.78 8.42 9.89 7.14 4.69 3.03 3.47 8.17 4.13 7.68 5.01 8.8 5.92 6.25 8 9.25 6.34 3.47 1.81 8.08 7.63 6.73 5.95 6.79 7.24 8.55 9.45 7.86 9.24 3.21 4.04 7.87 7.37 6.8 8.9 3.15 2.97 3.84 8.8 10.3 2.08 7.88 8.89 9.44 8.88 7.87 8.51 0 3.37 8.21 2.2 0 1.29 7.87 0 10.5 5.16 0.78 5.56 6.45 5.33 7.03 10.4 1.48 9.23 2.97 8.18 2.59 8.17 9.67 1.05 8.83 7.25 3.15 2.97 1.95 9.59 9.07 11.5 6.95 9.81 9.69 8.77 8.69 8.33 0.78 9.44 13.2 10.7 8.68 10.2 4.84 4.58 4.57 5.33 8.37 10.7 11.1 2.68 8.76 6.21 9.99 7.92 10.5 10.7 9.29 8.8 8.48 2.5 9.86 10.5 8.06 8.07 11.2 0 9.33 11.2 6.01 10.6 6.09 7.64 10.4 8.36 10.4 0.78 11.3 6.49 7.95 10.4 11.3 7.05 9.4 11.5 8.18 0.44 11.2 5.98 10 7.73 13.6 8.32 9.77 9.64 11.1 7.99 9.54 10.8 7.64 6.41 8.98 9.59 10.7 9.01 8.96 4.63 7.83 4.3 9.28 8.83 10.9 9.87 11.8 9.21 9.69 6.72 6.82 8.81 8.27 7.22 9.22 4.61 7.59 10.5 11.5 3.72 5.95 7.01 7.05 12.3 9.32 1.05 11.6 9.36 9.24 8.65 8.26 8.45 7.97 7.29 11.1 6.33 8.14 11.8 9.44 8.18 9.63 9.92 7.25 1.48 8.24 10.6 9.89 0 9.66 8.92 9.23 7.31 9.32 10.4 8.92 2.41 10.6 3.47 11 0.78 9.3 1.95 0.78 3.51 9.12 10.8 5.7 13.5 8.94 10 9.95 10.2 10.3 10.1 10 10.9 10.7 9.15 12 10.3 10.2 8.16 8.17 10.1 7.6 11.3 10.7 8.11 5 10.1 11 9.76 15.4 10.5 9.59 6.75 7.54 10.9 10.3 10.5 8.77 9.4 8.22 8.89 2.5 6.55 8.48 9.98 11.4 10.9 8.31 9.99 12.5 0.44 10 10.7 10.9 10.4 9.25 9.02 9.56 10.3 10.7 12.6 7.75 9.29 9.99 13.7 10.3 12.4 8.48 8.38 8.4 5.16 5.12 7.55 10.4 9.68 6.37 8.38 9.54 8.23 9.46 11 8.83 9.16 7.52 9.2 9.63 7.91 9.78 9.56 7.82 10.4 9.57 9.9 10.1 11.5 10.7 9.35 11.1 11.2 10.5 8.39 8 8 11.7 9.41 10.7 4.88 10.2 10.4 10.1 10.5 9.49 11.8 8.05 7.17 5.35 10.7 8.57 11.1 11 6.34 8.42 9.92 11 7.93 10 9.71 9.57 9.62 10.5 10.5 10.9 12.3 6.55 6.39 9.26 9.03 9.26 8.81 5.71 8.58 4.04 8.41 8.62 5.67 2.2 9.9 11.2 7.28 9.33 8.55 5.84 10.1 10.3 9.19 8.11 11.3 8.05 7.97 9.86 6.66 10.5 4.61 11.3 5.06 8.92 6.04 10.4 10.7 0 9.08 7.6 10.7 10.4 12.6 0 9.69 0 7.32 5.42 12.4 6.96 11.9 7.78 6.84 7.54 7.44 2.68 1.29 6.45 0 5.19 10.6 8.75 8.58 4.07 8.32 8.13 2.41 8.29 9.78 9.4 1.48 7.63 5.19 7.37 10.1 9.19 8.09 10.4 10.7 1.29 12.2 9.83 10.3 9.61 10.3 1.81 7.84 8.64 8.31 7.52 11.4 8.82 10 1.66 9.01 9.16 9.39 9.12 10.2 0 7.06 5.31 6.58 10.3 10.4 9.64 9.97 8.58 9.75 3.47 2.5 5.19 9.06 9.49 8.61 9.75 7.13 9 9.31 6.44 7.17 9.3 9.38 9.36 8.08 8.28 8.32 10.1 9.2 9.26 6.33 0.78 10.8 9.58 3.91 7.9 2.5 9.09 1.05 10.5 6.91 8.73 8.37 8.14 9.07 4.19 9.09 9.1 13.6 11.8 11.4 2.5 10 1.38 9.59 11.1 7.09 11.4 20.2 5.96 7.01 0.44 8.71 2.75 9.6 10.3 8.01 6.19 9.35 9.46 2.9 2.41 9.25 6.26 2.5 2.5 10.9 0 10.2 8.75 8.78 6.49 9.64 0 8.51 9.56 7.73 10.8 1.29 9.59 15.9 7.8 5.59 8.38 10.3 13.3 9.85 11.6 9.01 5.59 12 10.4 0 0.44 8.56 1.35 8.65 6.34 6.84 10.6 11.9 6.69 10.9 8.9 8.96 11.3 1.66 9.27 1.29 5.92 10 4.25 8.89 10.2 11.2 3.42 3.47 8.44 9.81 9.23 12.2 1.95 6.07 11.1 2.08 8.2 4.27 7.73 7.09 5.86 8.68 11.2 10 2.59 8.84 7.29 4.65 9.8 8.47 6.7 3.03 10.4 7.11 10.3 11.6 10.2 9.39 7.62 6.75 7.05 6.5 8.96 13.9 6.1 6.25 11.8 1.48 8.84 5.64 4.67 7.89 11.9 6.9 0.44 7.96 11 6.63 2.66 10.2 8.62 8.25 6.78 8.55 10 3.87 9.25 0 7.95 8.17 5.97 9.52 7.3 11.2 9.72 7.56 11 11.3 8.4 0.78 1.48 0.44 3.64 1.29 8.78 9.35 4.42 8.71 11.6 3.8 8.19 6.82 9.59 4.71 10.4 9.05 2.2 8.55 9.01 11 10.6 11.5 8.84 8.67 10.8 9.77 11.7 9.59 10.7 9.19 8.92 9.39 4.3 6.37 5.26 5.47 9.27 11.1 8.01 8.26 1.66 2.75 9.84 4.13 8.67 8.61 7.75 8.2 4.56 7.05 6.92 8.69 8.8 9.03 7.76 11.4 5.34 10.8 9.37 10.9 11.9 1.48 10.7 11.5 7.09 11 12.4 8.72 8.94 9.9 9.02 8.6 9.48 8.13 9.15 8.73 7.68 4.32 6.23 8.34 9.41 9.09 9.7 6.98 11.4 11.5 8.99 8.22 10.9 7.23 8.28 9.31 7.94 9.9 8.77 8.33 9.59 8.76 13.2 10.3 8.7 16.4 1.81 12.3 6.32 11.6 12.3 9.29 12.1 7.03 9.95 13.8 11 7.31 12.6 11.7 14.3 0 9.61 13.1 11.8 4.36 8.79 8.22 10.1 11.3 1.66 8.66 8.19 5.26 10.6 4.42 2.31 11.6 1.48 7.57 9.63 10.2 10.3 11.4 11.7 9.97 10.3 8.68 0.78 6.45 3.52 1.05 10.8 8.51 10.7 11.3 4.93 7.06 13.5 7.72 10 15.1 1.29 3.47 4.63 5.47 4.95 7 1.05 9.93 6.48 0.44 5.45 7.16 8.13 10 7.28 4.69 7.8 4.1 4.24 8.29 0 9.29 3.72 5.67 12.5 11.4 2.08 8.17 1.81 9.81 2.68 9.65 4.47 8.77 8.47 7.48 8.97 6.2 8.57 3.04 3.98 1.81 3.87 3.64 10 4.35 6.3 2.5 10.1 0.44 6.53 7.02 3.8 2.75 4.75 6.59 3.51 0.78 11.1 7.62 2.9 5.6 8.9 4.13 9.54 6.16 3.98 4.34 4.5 8.62 1.48 7.84 2.97 9.47 1.95 5.81 0 5.63 9.77 8.62 6.33 4.22 4.8 6.19 4.45 5.57 5.6 8.56 1.66 0 5.56 9.88 6.24 4.37 0 5.51 8.43 5.07 9.14 5.27 6.48 4.04 5.07 2.2 7.19 6.81 3.09 3.91 9.09 7.22 9.28 7.84 6.49 7.59 7.45 0.44 5.25 6.69 5.04 7.05 5.21 7.56 5.15 10 7.51 4.47 3.56 0.78 5.83 6.81 0 0.78 0.78 9.07 4.27 3.27 6.19 11.8 8.48 7.83 7.36 7.76 2.75 1.81 0 6.56 6.94 3.56 0.44 8.8 0 9.61 0.44 8.65 1.05 6.1 7.73 8.83 8.35 7.71 4.45 2.31 5.31 6.69 5.19 2.2 5.74 11.6 1.29 7.88 7.62 7.02 8.44 1.95 4.16 6.89 0 0.44 3.76 4.01 11.3 9.49 7.43 6.63 7.94 8.67 1.66 1.66 5.56 7.23 3.47 3.37 4.88 8.56 6.04 7.88 5.99 5.13 0 5.39 6.85 8.85 5.99 5.87 7.25 7.01 2.2 3.68 1.05 4.4 7.75 0 8.14 3.76 2.08 3.94 8.53 1.05 7.49 3.47 8.57 5.98 3.76 2.5 5.5 4.83 2.08 7.31 8.74 8.76 10.5 8.6 0.78 8.74 8.99 3.51 7.39 6.92 9.02 8.6 8.38 8.86 0 6.66 10.1 9.57 5.13 6.77 7.93 0 9.67 5.16 5.31 9.2 7.86 7.98 9.6 10.6 3.68 1.29 2.9 10.6 1.81 7.24 4.8 2.41 5.53 7.19 8.03 10.6 5.3 9.52 0 11.1 3.68 3.94 6.37 5.16 7.36 6.41 10.6 1.29 8.81 9.12 4.75 10.9 9.54 7.01 8.07 6.42 0.78 6.04 1.66 9.62 5.19 4.04 6.42 4.52 2.83 6.99 1.48 5.7 6.22 7.4 4.15 5.97 6.01 7.88 3.98 4.91 3.8 2.41 7.23 7.25 2.2 6.15 7.65 9.45 6.16 3.51 2.59 8.42 4.01 8.29 9.32 10 3.27 11.7 8.5 2.75 5.01 4.63 8.51 8.64 7.96 3.8 8.76 5.37 8.48 8.63 2.5 0.44 5.01 6.83 3.09 2.41 6.29 6.16 6.87 7.55 2.2 13.2 8.64 11.7 10.8 9.73 8.28 12.5 1.05 13.6 11.3 10.1 6.89 11.7 8.77 11.6 8.98 9.6 9.93 8.69 9.51 8.98 8.88 9.44 9.97 11.8 7.38 9.26 11.5 10.4 8.61 3.84 8 7.25 9.18 7.38 10.8 9.59 9.97 9.73 8.6 8.96 9 6.79 11.2 9.01 10 8.56 10.3 8.78 12.7 6.94 8.65 6.83 13.5 8.59 11.1 14.2 4.84 7.47 10.1 9.33 10.2 8.53 9.98 10 10.9 9.07 11.2 5.96 9.83 7.26 10.1 10.3 13.2 9.28 8.32 10.8 9.27 7.64 9.86 10.7 8.36 8.41 10.1 6.97 10.6 10.1 9.07 9.07 4.93 11.9 8.88 7.82 6.98 7.91 8.19 7.67 8.71 8.72 9.95 10.2 8.71 10.9 10.4 9.91 7.68 9.22 11.3 7.39 7.48 8.43 6.66 9.07 10.7 9.41 11 5.47 4.63 7.39 1.48 11.4 5.09 5.5 8 7.88 5.23 2.68 8.15 11.3 7.26 5.26 11.6 3.76 10.9 12.2 10.5 10.4 14.4 11.1 9.25 8.78 9.62 2.59 10.5 11.5 8.88 7.71 11.4 10.4 7.83 7.95 9.26 8.77 9.5 9.07 8.09 7.96 11.1 9.18 9.12 6.88 8.81 8.45 12.2 12.9 9.85 9.6 0.78 11.1 10.1 6.9 9.33 9.66 1.95 9.95 12.4 4.8 7.08 8.45 2.68 7.61 9.76 5.94 10.1 4.98 10.4 0.44 3.15 8.39 7.98 9.65 3.03 11.3 10.5 9.56 0.78 4.16 9.85 7.97 7.88 0 0 9.61 11.2 8.55 0.44 9.71 10 8.57 8.93 10.6 9.32 10.5 6.3 10.1 0.44 9.59 9.33 8.75 6.42 7.43 9.67 8.79 4.77 9.11 3.21 7.4 9.42 9.55 9.18 8.19 11 10.6 7.7 7.64 10.9 7.76 8.14 12.2 8.08 7.5 6.7 6.98 7.97 0 9.61 8.9 6.46 6.44 7.12 8.65 8.39 7.23 9.42 9.12 8.09 10.7 10.2 11.8 7.64 7.04 10.3 1.95 9.2 5.47 12.1 9.24 8.82 13.3 9.7 10.6 10.9 10.9 11.5 6.14 8.55 3.6 8.22 0.78 8.45 2.68 9.32 8.23 10 10.1 10.2 11.7 7.71 0.79 10.7 1.05 11.4 8.36 10.2 1.95 2.08 9.95 2.59 2.2 2.2 12.4 8.83 9.73 1.05 1.81 3.15 11.3 4.42 0.7 9.8 10.1 7.29 9.86 10.7 14.2 9.75 9.41 3.03 12.2 12.9 9.89 1.95 9.95 3.37 6.56 4.47 9.09 8.49 10.3 10.7 0 0.78 0.78 1.81 8.18 1.05 11 8.92 11.2 7.41 11.2 9.66 9.79 0.78 12 12.6 8.83 3.8 9.51 10.1 10.2 8.56 6.31 12.8 0.44 5.25 11.8 10.9 6.83 10.9 8.3 6.68 9.53 6.64 8.19 7.56 0.78 10 7.53 3.42 8.73 9.68 10.4 9.99 8.16 11.5 7.37 12.5 4.16 13.2 10.7 10.5 10.1 8.97 9.93 10.8 10.8 10.8 10.4 11.8 3.76 8.71 13 13.6 13.5 10.2 10.5 10.3 9.34 4.08 11.8 11.1 1.66 8.3 6.39 8.94 5.87 13.1 11.2 8.47 7.75 7.98 10.1 12.9 9.28 3.59 8.93 1.32 4.22 2.68 7.24 8.74 6.39 7.42 12.5 10.5 8.75 10.8 12.1 9.39 9.9 10.9 9.23 5.1 3.03 10.2 9.71 13.3 8.93 0.78 9.6 9.08 9.71 9.81 4.52 7.04 1.29 7.04 6.03 10.5 0.78 9.91 11.9 8.16 13.3 10.1 13.1 11.6 11.3 11.7 11.4 11.2 13.6 0 11.6 13.3 0.44 1.95 0 10.9 9.58 0 0.78 0 0 0 0 0.44 0 8.74 2.2 11.2 1.66 0.78 0.78 0 0.78 3.15 0.78 0.44 11.6 3.64 0 10.5 0.44 12.7 3.32 9.95 1.29 5.29 5.25 6.16 8.12 9.83 0.78 3.42 7.68 9 3.32 6.59 8.67 10.9 10.2 8.81 9.81 5.15 4.88 11.2 10.1 10.9 10.2 11.3 10.2 6.16 4.5 5.65 3.32 11.1 10.1 8.43 5.83 6.98 11.8 11.4 13.2 10.9 7.19 13.4 10.9 12.7 10.4 6.75 6.04 13.9 12.6 11.3 7.03 1.04 14.5 7.11 14 11.7 12.4 10.1 12 8.54 9.46 5.29 6.88 13.4 12.6 9.1 1.48 2.9 5.72 2.83 3.84 0.44 4.19 7.62 12.5 4.89 10.4 10.3 4.3 4.61 7.36 1.81 0 7.1 10.9 1.29 8.9 0.44 7.8 1.48 2.97 6.99 3.56 4.27 2.9 3.56 6.08 8.79 8 10.8 6.19 10.5 7.92 7.49 2.65 0 6.2 3.37 6.89 10.3 0.78 8.22 6.21 2.75 7.7 8.64 8.97 8.63 11.3 9.8 8.35 9.22 6.68 6.78 2.97 2.83 1.81 9.42 0 9.27 8.34 5.62 6.29 2.2 4.35 6.24 5.16 6.3 4.34 5.18 5.9 7.87 6.21 6.28 10.7 9.31 4.01 2.59 12.8 9.09 5.76 1.95 5.92 1.48 11.6 4.54 2.08 3.42 12.9 10.6 12.6 7.6 4.35 0.44 3.64 5.06 5.38 8.81 6.09 0 7.35 0.44 9.13 3.51 11.6 7.75 4.27 2.76 6.9 8.42 4.22 8.14 5.22 8.06 7.67 8.69 0 5.98 4.04 7.77 5.18 8.28 11.7 3.32 1.05 0.44 8.38 5.44 9.14 12 10.4 10 11.2 9.96 0.78 5.18 4.19 10.7 13.4 5.37 8.07 10.8 0.78 6.91 0.44 2.59 5.23 8.03 10.2 0.78 8.69 4.8 5.15 6.23 1.05 5.88 3.76 3.51 1.05 8.51 0.78 5.79 8.69 3.03 9.93 9.89 2.41 7.32 1.81 1.66 2.5 5.3 10.4 7.64 10.1 8.64 0 4.16 8.86 6.91 0.44 2.41 1.05 3.6 3.76 1.48 2.5 10.9 6.37 7.81 7.84 6.21 8.11 10.1 0 7.31 12.1 4.32 9.96 2.97 6.04 4.47 2.31 0.44 4.27 0.44 11.9 2.08 0.44 7.03 3.68 6.79 0 2.9 4.88 10.5 5.21 9.68 2.2 3.98 9.88 7.01 5.88 5.73 8.52 0 11.6 6.36 8.2 6.65 15.8 10.9 4.45 4.98 8.44 7.16 8.91 3.6 8.06 11.4 9.69 4.27 10.8 3.47 5.53 5.49 8.57 11.1 2.97 5.89 8 0 6.76 12.6 6.85 4.27 5.99 5.96 6.33 9.25 11.5 7.04 12.5 6.64 6.07 0.78 6.82 3.94 6.61 3.98 8.58 8 14.9 3.37 9.96 5.6 10.4 4.3 8.74 7.09 1.66 9 0 1.66 9.51 6.26 3.42 2.41 4.07 6.72 5.35 6.34 1.66 0.44 1.29 8.39 10.9 9.92 7.34 10.4 8.58 8.34 6.63 0.78 0.78 4.07 5.43 6.68 9.18 1.05 7.67 8.72 9.71 11.9 5.25 3.42 10.1 3.8 5.27 16.2 1.48 1.81 3.42 9.78 8.26 1.95 8.44 5.26 0 5.12 3.47 12.1 3.76 7.43 12 10.2 4.84 4.4 9.99 5.62 3.8 4.07 8.12 0.44 9.16 9.84 11.1 12.5 17.4 10.5 10.9 7.72 8.17 10.9 8.95 0 8.57 7.42 3.47 5.74 9.53 2.83 5.67 8.74 5.96 10.3 9.3 8.7 10.1 11.7 10.2 1.66 0 10.1 1.29 11.8 8.69 9.86 10.8 12.1 8.36 10.5 9.37 4.75 10.2 9.44 2.5 8.75 5.06 8.13 7.88 5.99 7.65 7.68 7.63 10.3 1.95 7.62 3.99 9.7 12 4.52 5.53 1.05 7.39 8.06 9.22 12.4 10.2 11.7 11.6 9.65 7.14 12.9 9.72 10.5 2.08 4.91 13.7 0 4.42 2.68 12.3 6.91 3.6 10.4 8.53 12.8 4.86 15.1 9.84 11.4 7.59 11.2 7.99 11.9 8.83 6.61 11.4 9.54 12.9 13 11.8 10.3 9.73 11.4 9.72 11.1 10.7 8.44 4.77 5.53 3.72 6.95 11.3 1.43 10 7.59 9.27 4.88 1.29 9.3 4.24 1.81 6.06 0.44 0 7.5 7.43 6.71 5.07 8.46 9.76 7.69 8.28 0 2.31 7.77 7.66 9.15 5.59 7.11 2.59 5.61 10.1 6.24 3.8 7.12 6.71 3.37 7.33 4.93 8.05 0 6.2 9.98 12.4 9.31 7.11 6.31 10.9 10.6 7.91 8.02 3.15 7.73 9.04 7.54 7.68 8.82 3.45 3.68 2.5 3.37 7.77 7.36 7.63 8.51 4.84 9.47 6.29 6.4 6.01 0 6.57 1.29 5.26 1.66 1.95 7.42 8.01 12.2 1.81 10.8 7.52 7.82 3.94 9.03 10.7 2.37 3.37 7.72 6.91 8.08 8.34 1.29 11 7.79 11.4 4.24 7.22 5.22 0.78 9.13 12.8 5.3 1.81 2.97 5.83 8.12 5.62 11.4 1.05 6.39 11.2 7.06 1.48 11.4 6.38 7.79 10.1 6.96 4.67 7.13 7.99 0.78 6.12 11 5.99 5.06 3.91 9.43 3.37 7.29 10.6 10.7 10.9 12.1 10.4 12.1 8.97 0 0 0 10.7 0 0.44 12.2 0.44 3.27 10.4 2.41 0.78 3.04 4.27 3.03 0.44 12 6.21 2.68 9.27 10.8 12 8.85 10.5 7.62 11 8.4 11.8 11.9 10.2 1.95 0 3.76 7.74 8.71 7.61 6.75 4.27 13.4 6.67 4.98 8.78 1.81 3.84 10.1 6.97 4.82 2.38 10.4 1.29 1.29 4.54 8.64 3.56 5.4 3.72 7.91 9.3 5.04 6.04 5.95 2.08 7.32 8.66 8.83 1.05 3.6 3.64 4.71 1.05 8.76 1.29 3.09 3.68 0.78 7.72 7.15 5.81 4.56 8.97 1.94 6.03 9.41 7.87 0.44 14.9 6.3 8.7 10 4.3 7.77 4.58 3.98 8.09 2.75 6.15 6.14 5.01 5.44 6.02 8.88 5.9 10.6 8.86 9.34 6.66 4.73 11.8 2.97 6.94 7.79 7.18 7.4 8.67 5.35 6.91 1.66 6.71 2.75 3.84 6.94 0 9.83 9.57 9.82 2.97 7.24 7.26 3.72 4.04 4.96 7.32 8.52 0.44 6.84 0.44 8.96 7.44 2.75 7.47 7.17 7.16 1.29 9.01 12.3 9.86 3.94 7.99 0 6.92 6.87 6.04 3.84 8.85 4.47 4.89 6.26 1.48 5.35 10.8 5.92 4.01 2.36 12.4 7.9 5.59 10 0 2.08 0.78 2.5 8.17 8.8 3.21 6.67 1.05 7.06 5.85 5.79 0.44 0.89 7.15 1.05 7.24 5.37 8.84 8.16 3.15 4.04 0.47 2.68 9.66 0 3.27 3.51 5.16 0.78 11.1 6.26 7.57 6.77 7.88 10.2 8.81 3.27 10.8 1.81 6.81 0 11.9 3.27 7.78 5.85 10.1 12.6 4.5 1.66 11.3 13.4 11.5 0.44 0 3.27 12 6.53 11.9 3.27 0 8.74 9.32 7.87 3.42 4.63 10.5 9.42 1.81 11.7 12.7 13.4 10.3 8.06 0 8.25 10.1 12.9 12.3 0.44 9.89 11.6 12.2 1.29 8.82 10.4 10.7 0.44 6.26 14 8.12 7.65 8.68 8.63 13.2 9.76 11.6 8.6 11.7 4.86 4.01 8.75 12.6 6.89 2.08 2.71 9.91 6.87 12.2 8.16 12.2 7.96 4.91 2.62 11.9 7.51 6.14 7.39 6.63 11.3 2.2 8.29 3.94 10 7.24 7.11 9.52 11.1 10.5 11.7 8.21 6.79 9.37 6.85 6.42 1.48 5.62 8.87 5.67 6.77 9.85 8.99 0 7.47 7.66 1.29 8.19 6.32 0.44 6.8 3.27 3.32 7.47 8.9 6.1 4.77 5.64 3.47 7.54 1.95 7.48 7.1 2.31 3.91 8.6 4.4 4.69 0.78 7.67 10.6 7.32 6.8 3.56 0 6.19 0.44 5.5 1.81 4.35 3.47 12.1 3.37 8.66 5.98 5.52 5.8 4.02 0.44 4.32 3.68 1.66 9.32 5.26 7.63 8.22 1.08 9.43 3.68 0 1.95 7.02 8.31 7.74 2.5 7.27 5.85 8.99 4.84 1.29 10.1 6.34 5.33 3.23 0.44 6.64 5.9 7.67 10.1 6.08 2.41 0 5.52 3.6 10.1 7.93 2.2 12.1 3.03 9.3 0.78 5.66 9.06 7.49 3.87 10.8 7.63 7.76 0 9.06 9.48 15.6 8.25 10.2 12.7 10.7 6.75 9.52 10.4 8.3 8.06 3.91 4.28 11.3 11.3 5.25 9.17 8.65 9.73 10.7 7.88 10.1 0.78 9.9 3.37 7.41 10.7 9.21 12.6 8.4 5.5 12.2 1.05 1.05 8.95 9.11 4.4 9.09 1.48 7.68 8.12 7.62 9.87 2.83 8.77 5.82 10.1 5 11 12.4 12.4 6.11 5.6 4.71 7.31 10.3 9.7 12.8 8.8 6.42 10.4 10.4 10.2 10.8 10.9 10.6 6.73 9 8.26 10.9 10.2 11.8 10.2 8.95 8.76 8.04 5.72 10.2 8.16 9.06 11 10.1 8.83 10.3 9.21 9.7 12.8 12.6 13.6 12.2 13.7 9.12 13.5 8.03 9.42 10.3 5.51 3.87 10.3 12.6 11.7 6.31 2.59 2.06 7.03 7.68 3.64 12.7 6.23 1.99 12.2 8.7 7.19 10.3 9.04 7.98 4.4 11.3 9.27 0.78 9.98 11.1 15.8 5.9 10.3 10.8 9.91 6.21 13.4 8.48 9.91 9.58 9.5 8.89 10 10.3 7.35 10.1 10.3 5.26 11 10.7 7.78 10.5 9.15 9.06 9.93 9.42 11.5 11.3 6.76 11.1 10.9 10.6 3.42 8.23 9.47 8.99 8.67 9.55 9.29 11.7 10.2 9.4 0 0 9.47 6.29 6.34 9.83 3.51 9.77 8.55 9.32 4.58 9.03 11.2 8.54 10 8.39 8.9 8.35 7.03 8.61 11.2 8.24 10.6 7.87 11.9 12.9 5.56 8.33 10.2 4.04 0 6.93 8.51 8.05 2.83 11.8 10.1 9.04 6.15 8.78 10.4 11.7 11 10.5 8.52 3.98 8.3 11.3 12.5 10.2 9.98 3.21 9.75 2.41 0.78 0 3.56 4.16 5.26 11.6 4.35 7.03 7.96 6.82 8.52 12 3.91 8.17 7.19 7.62 9.63 11.9 9.98 10.4 0 9.27 9.43 8.39 8.73 10.1 6.09 4.89 9.7 10.6 4.8 10 9.38 3.98 6.6 8.87 9.08 1.29 2.08 10.5 11.1 0.44 6.05 5.6 8.9 9.42 1.48 1.05 6.91 5.82 3.03 1.29 9.36 1.81 1.05 2.97 7.67 7.99 5.72 8.26 9.66 4.71 7.03 4.26 4.66 6.32 3.6 10.9 6.83 5.34 7.3 1.29 10.8 6.04 9.61 8.68 5.54 0 7.46 9.34 0.78 3.68 5.82 2.75 1.05 4.47 7.72 4.89 1.66 1.05 7.45 5.59 7.51 8.93 12.1 2.31 6.77 9.45 5.9 6.72 9.04 5.1 8.34 6.1 4.45 6.24 6.99 5.47 2.31 3.35 5.76 0 1.05 4.4 5.17 2.41 4.24 1.48 1.95 1.95 0.44 1.05 10.4 1.29 8.23 5.71 5.9 9.26 3.8 3.27 8.5 9.6 2.5 1.95 0.44 0 4.67 5.33 5.83 0 4.24 6.98 5.68 2.59 8.21 7.55 4.8 9 8.45 0.44 6.4 12.8 8.81 4.22 2.31 7.65 6.63 1.05 9.15 13.6 9.21 7.54 5.54 1.95 6.4 12.8 10.3 10.7 7.19 13.1 13 8.86 3.73 9.94 7.37 10.7 9.25 9.03 10.4 9.37 5.45 9.94 8.95 8.57 6.78 3.98 0.78 10.2 10.2 7.63 9.02 7.98 10.8 7.33 11.7 0.78 7.51 1.81 1.66 1.48 4.13 8.6 5.6 7.93 9.14 12.4 0 6.04 13.2 10.6 9.88 10.5 0 7.28 12.3 11 3.8 9.45 8.81 9.65 10.5 5.46 11.4 9.03 3.37 9.76 10.9 13.5 10.2 8.11 11 3.84 10.6 9.65 12.9 9.47 9.46 10.6 11.5 5.9 13.2 9.24 10.7 11.4 11.7 10.4 12 3.21 9.61 8.07 10.4 13.9 10.4 10.2 8.77 7.49 8.7 13.2 9.85 9.84 9.84 9.44 11.7 10.8 11.2 9.95 9.27 9.37 7.51 9.35 10.4 9.19 8.77 9.65 9.03 10.1 10.4 10.2 9.33 10.1 10.3 10.7 10.3 9.21 11.3 10.6 10.6 10.3 10.2 11 9.38 10.3 9.31 9.62 9.71 12 8.91 9.35 7.67 14.1 12.4 10.7 9.9 10.3 6.4 6.7 6.82 8.48 0.44 1.05 8.65 10.5 9.32 10.6 1.95 7.65 9.32 12.1 10.2 13.1 11.8 16.8 9.79 9.98 6.94 11.8 8.52 9.82 3.42 12.8 11.8 11.5 11.6 10.7 9.34 14.4 9.38 8.63 12.1 8.93 8.2 7.91 4.61 9.03 10.1 9.77 5.43 9.35 9.01 9.49 8.92 2.41 11.3 12 8.96 8.81 10.8 7.15 8.84 3.27 14.4 10.5 6.55 8.85 8.73 9.89 8.94 10.4 9.26 10.2 8.39 11.8 6.56 2.2 8.49 12 4.79 7.73 10 9.64 9.51 13.5 13 10.8 8.66 6.04 1.05 10.3 5.91 8.86 9.34 11.2 7.11 11.8 2.97 1.81 12.6 5.97 8.69 1.95 9.08 7.97 6.05 11.2 10.1 13.4 11.2 8.36 2.08 10.7 8.98 5.57 0 11.5 11.2 9.46 12.4 7.85 2.2 15.7 10.8 4.24 4.61 8.24 3.98 10.4 4.84 4.73 10 11.9 7.91 13.1 8.95 10.6 10.7 13.3 7.89 5.98 9.87 8.39 7.6 7.58 0.78 7.97 7.21 5.01 5.44 8.5 5.54 9.79 9.79 0.44 6.5 11.5 8.63 6.75 4.84 4.27 2.84 12.9 11.6 9.8 11.1 9.5 6.93 11.9 8.97 5.56 0.78 4.5 8.29 12 9.92 0 11 11.1 12.8 7.22 11 9.63 9.83 8.33 0 7.01 3.15 8.2 12.4 9.4 7.87 5 0.78 0.44 10.6 7.78 13 10.9 4.16 5.29 3.27 10.4 11.3 4.93 5.69 8.3 6.25 8.64 8.39 4.5 4.52 7.19 9.86 12.2 5.28 6.99 11.1 0.44 1.29 7.17 14.5 6.8 10.3 9.4 12.7 10.4 8.25 5.66 12.7 9.59 8.09 3.42 10.7 7.88 9.48 8.42 13.8 12.5 1.05 9.91 12.7 6.57 3.42 9.76 7.97 11.3 3.67 10.2 8.43 4.88 11.9 11.3 11.2 9.12 7.81 11.5 6.86 7.6 11.5 9.58 7.02 0.78 11.5 5.61 10.3 10.6 12.1 12.7 9.76 10.7 8.79 8.94 2.83 1.9 2.41 9.35 1.29 7.87 10 7.9 5.81 10.2 11.6 12.5 9.38 12 9.72 10.8 9.3 10.9 8.71 12.3 8.79 1.48 13 5.31 2.68 7.44 8.84 10 10.4 14.7 11.9 11.3 8.18 7.48 8.28 7.55 7.46 7.46 9.68 10.1 8.76 11.3 7.35 8.51 9.91 7.34 11.4 9.37 6.08 8.56 8.6 10.1 10.3 5.77 8.45 10.7 6.56 9.75 7.8 9.53 8.93 9.15 10.1 10.9 7.03 10 4.91 11 4.24 12 7.1 7.17 8.58 10.1 9.25 9.37 8.04 9.28 0.44 7.07 10.6 8.62 9.02 8.24 7.59 9.12 8.59 11.3 8.58 9.29 9.68 11.2 12.3 9.86 9.67 0.78 11.3 7.67 6.18 3.27 10.3 10.3 8.56 10.1 8.62 10.9 8.02 9.07 10.4 8.98 9.37 11.2 11.6 8.17 8.5 8.41 9.27 10 6.88 11.8 11 11.1 9.67 7.41 10.2 9.57 10.5 10.4 9.17 8.79 9.05 12.2 7.34 9.74 11 8.8 11.1 9.78 2.75 9.58 12.7 9.93 8.76 11 11.5 7.67 8.62 7.6 9.92 9.09 12.1 9.58 11.8 9.15 10 8.62 10.8 0.44 9.3 8.7 8.28 9.62 10.5 9.09 7.94 8.31 11.8 6.91 7.99 3.09 9.67 8.53 7.15 7.28 7.15 6.63 9.81 5.87 10.4 8.65 8.92 10.6 9.15 10.6 7.72 10.6 8.76 7.67 9.07 9.47 7.84 10.8 10 8.97 9.36 5.03 7.96 7 1.29 0 4.4 9.36 7.48 8.17 8.67 6.58 7.46 10.2 10.5 9.02 11.3 1.29 10.4 8.19 0 6.95 9.56 8.65 10.9 11.7 9.6 8.77 6.64 7.69 8.08 5.9 9.22 9.42 7 9.62 10 8.51 7.94 9.18 8.96 6.66 5 9.29 9.74 11.2 10.1 11 7.61 6.1 8.06 9.21 8.66 9.99 11.8 7.88 8.79 9.65 9.31 9.36 8.86 10.4 9.03 8.26 10 8.75 5.68 8.79 9.72 10.2 9.14 9.28 10.2 4.35 5.46 10.1 4.73 9.63 10.9 10.4 9.34 12.6 5.51 9.59 11.3 2.75 9.39 2.9 10.3 9.91 7.85 10.2 10.9 11.7 10.4 5.52 11.1 3.47 8.56 3.91 5.77 3.87 12.4 8.22 7.73 8.2 8.6 9.83 9.58 10.2 10.5 1.81 9.6 0 6.4 8.89 5.95 9.18 11.2 8.78 6.14 11.5 8.21 9.57 7.85 10.6 10.5 6.93 10.2 8.52 9.06 7.86 8.89 8.02 10.6 2.5 8.8 12.2 8.14 9.58 8.11 9.65 7.16 8.15 10.2 9.31 11 8.88 9.7 9.58 8.25 8.75 8.27 10.8 9.98 9.81 8.9 8.45 10.1 10.2 3.84 10.9 11 9.54 12.7 11.5 8.17 10.6 10.2 8.5 10 11.3 0.78 8.82 5.45 9.62 7.49 3.32 10.6 10.3 9.15 0.44 8.96 9.09 6.52 12.6 2.59 9.15 6.1 10.4 12 9.28 9.92 7.86 11.2 8.8 8.59 9.93 10 10.5 11.8 9.26 10.7 1.48 2.97 3.42 9.52 8.91 11.2 10.9 10.8 8.77 9.53 8.29 9.96 10.3 8.34 7.49 7.86 5.37 10.2 9.63 7.09 10.3 8.92 7.12 8.8 7.51 7.96 7.59 10.5 8.84 11.7 3.27 0.44 10.7 11.2 12.1 1.95 8.92 9.79 11 9.62 10.7 6.23 10.3 11 9.81 9.23 7.79 12.4 10.8 10.2 8.18 10.4 10.4 10.5 9.91 10.9 8.09 9.06 9.86 6.95 9.18 9.73 10.2 8.02 10.5 9.24 7.99 10.8 10.2 10.2 8.74 10.2 12.3 9.52 8.71 9.92 7.38 10.9 8.99 8.41 9.94 10.2 9.81 11.2 7.95 10.1 9.63 11.2 9.66 9.03 7.11 8.56 7.2 11.3 8.41 11.7 8.27 5.6 12.1 10.6 6.74 12 9.92 10.9 7.62 13.8 9.55 12.8 2.68 7.08 11.3 9.99 2.5 1.48 8.47 8.07 8.85 9.14 10.1 9.56 11.3 10.9 7.41 9.18 0 7.97 14.9 6.91 10.4 7.46 11.3 10.5 0.44 11.2 4.43 7.99 9.12 11.6 7.18 11.1 2.97 9.46 8.49 4.16 4.1 10.5 10.3 1.81 11.1 9.04 7.58 5.39 10.9 9.24 9.69 11.3 8.83 9.35 6.98 10.1 9.47 0.44 4.96 10.4 10.2 10.5 11.1 11.6 10.9 4.32 7.09 6.09 9.73 8.92 10.6 10.6 12.6 8.82 8.84 9.4 7.37 9.84 9.14 8.89 8.81 1.66 0.44 8.51 4.61 10.2 9.86 8.9 7.62 11.6 5.79 1.81 13 13.9 9.84 8.03 12.2 2.83 10.8 12.5 11.8 12.6 9.82 10.3 11.8 11.3 0.44 10.8 6.17 9.23 11.3 11.8 10.3 8.53 7.94 5.71 9.69 4.91 10.6 4.8 11.9 4.4 10.1 10.8 10.4 9.15 10.9 12.3 8.14 8.55 10.1 9.17 1.95 11 11.8 13.7 7.91 9.28 9.7 8.38 8.49 11.4 7.88 8.52 4.61 11.7 9.07 10 11.4 9.33 9.65 9.35 8.9 6.78 12.4 10.6 11.4 11 9.47 9.83 0.44 7.95 11.9 12 3.27 12.1 9.46 1.87 14.2 8.96 6.14 0 7.1 6.24 6.84 8.61 8.33 7.1 8.55 10.8 9.39 9.84 7.08 11.5 6.74 11.4 9.21 7.67 10.3 8.81 9.28 8.99 0.78 10 11.9 10.2 6.82 8.13 7.92 8.91 11.9 11.6 14.3 10.5 6.26 9.22 10.1 5.65 5.95 9.41 5.04 5.44 12 5.31 10 10.6 16 10.2 10.2 5.16 11.1 9.24 12.5 9.76 10.2 8.14 9.84 5.93 11.1 7.3 13.1 11.9 6.75 0 5.75 11.9 9.84 10.1 7.37 12.3 8.66 7.5 8.1 6.17 5 0 6.55 12.7 9.69 8.64 5.35 5.39 3.56 12.6 1.48 8.26 6.46 1.66 4.58 11.2 5.44 9.02 7.79 8.51 8.42 8.34 9.83 8.44 8.55 9.39 11.6 10.5 6.04 7.31 10.9 7.43 5 6.99 5.26 6.78 8.85 4.42 7.17 1.29 7.01 8.38 1.81 3.27 8.24 5.1 10.9 8.87 10.9 6.82 12 10.5 12.4 6.71 3.98 1.36 8.16 9.45 7.38 8.53 9.56 8.21 10.8 10.8 9.55 6.49 11.1 5.88 9.21 8.12 7.34 10.5 8.28 3.09 4.3 9.64 8.61 12.4 10.7 10.5 7.31 6.37 8.5 9.1 10.3 11 7.69 6.96 9.43 9.91 6.46 3.87 8.62 8.9 12.1 10.4 9.54 11.6 9.86 11.1 9.72 9.38 3.32 3.56 10.4 8.46 7.77 10.1 2.81 9.32 7.79 6.09 9.58 9.05 6.64 9.81 10.7 14 11.9 8.18 8.89 2.97 2.08 10.3 9.65 10.2 11 11.3 9.94 8.2 0 11.7 8.88 10.5 10.7 7.38 10.6 11.4 7.74 10.6 10.6 1.95 8.9 7.63 9.24 8.84 7.59 8.57 9.98 8.52 9.88 12.6 11.2 8.76 4.1 8.07 7.13 9.82 9.48 6.98 4.07 5.13 6.8 8.29 7.98 8.11 6.8 10.2 7.94 10.1 9.01 7.14 9.63 3.91 8.19 10.2 8.32 8.08 7.6 8.43 8.98 9.32 8.78 12.4 9.31 10.6 9.6 8.8 8.66 8.18 9.06 8.57 9.64 8.09 8.81 5.74 4.91 8.33 11.1 6.14 9.92 9.68 0.44 11.3 2.5 9.97 9.61 9.51 6.99 1.95 8.07 8.73 7.26 10.9 10.6 1.81 6.53 9.81 9.51 10.3 11.4 2.83 10 8.09 11 9.57 10 9.17 9.99 8.62 8.91 6.62 9.57 9.73 9.22 10.5 14.6 10.3 9.78 7.05 10.1 8.41 3.72 3.15 10.2 2.83 10.8 7.68 5.04 10.1 9.71 9.54 4.3 10.6 3.72 5.9 3.32 9.89 0.44 10.9 5.12 8.05 10.7 5.56 10.3 10.9 10.6 8.84 10.3 9.31 11.3 8.1 8.23 7.66 9.7 11.3 9.7 8.89 8.06 7.59 7.16 8.77 8.99 5.64 10.6 9.69 7.49 8.16 8.3 6.15 8.84 8.12 8.64 2.83 8.67 10.1 8.97 6.74 10.4 9.22 7.79 9.14 2.2 9.17 7.08 1.05 7.14 0 9.51 3.21 1.95 0 10.9 7.66 5.07 10.8 8.69 8.49 8.65 10.1 8.25 1.81 7.76 10.3 7.73 7.34 7.21 7.96 2.83 5.97 10.1 8.49 9.95 8.42 10.1 9.48 7.07 9.47 7.06 8.33 0.44 9.85 9.76 2.68 10.6 9.44 8.04 11.2 7.54 9.09 8.69 9.81 7.85 9.94 7.98 11.5 8.68 11.4 5 9.34 9.68 11.1 8.93 8.57 11.9 5.23 8 8.33 8.94 9.11 7.76 2.41 7.67 10.5 7.47 10.5 0.44 10.4 7.16 10.9 6.13 8.07 10.6 8.06 10.4 9.29 7.01 10.2 6.94 4.34 8.65 10.9 8.89 11.5 8.28 7.07 9.2 8.46 7.55 6.23 8.82 7.51 8.91 6.04 6.74 9.4 11.1 11.7 7.57 8.81 5.23 10.5 10.3 9.14 9.02 10.6 7.77 8.28 9.86 9.64 8.63 6.65 8.63 5.06 10.4 9.29 9.28 6.84 8.56 7.22 9.15 0.44 8.18 8.82 8.03 7.49 12.5 10.4 5.82 9.17 9.3 10.6 1.48 7.63 7.99 7.78 8.71 5.8 9.26 5.33 9.44 8.26 10.4 10.8 6.39 7.08 10.9 6.63 8.28 5.93 10.1 3.64 10.7 12.7 12 1.05 9.57 7.75 10.7 7.95 7.89 8.06 9.11 7.55 10.9 4.27 9.85 7.72 9.29 6.99 9.85 8.77 6.68 8.8 0 10.7 10.2 8.78 10.4 4.54 10.8 6.89 9.71 9.22 12.2 10.8 8.31 1.95 9.32 8.75 10.8 6.17 7.39 10 1.54 11.7 8.84 8.27 8.51 10.3 8.37 7.17 7.93 1.48 8.03 8.06 7.28 5.75 5.85 8.21 2.97 10.6 6.95 11.8 9.41 6.97 6.35 9.81 7.98 10.9 9.66 5.51 8.5 9.4 11 6.08 9.91 6.14 9.03 0 8.65 9.12 7.4 7.35 7.75 11.6 3.32 10.3 8.29 8.89 10.2 6.54 7.83 6.46 11.3 10.4 10.4 6.95 9.04 8.98 8.27 9.75 7.4 10 8.06 9.91 3.98 10 9.09 8.3 9.15 6.08 8.07 7.8 8.33 7.42 7.51 4.69 9.07 11.1 9.37 9.34 3.8 10.3 7.52 9.57 10.1 10.5 8.78 11.5 3.64 7.55 8.89 9.26 7.96 9.36 8.12 7.93 12.6 11.5 10.5 10.5 7.34 2.75 8.03 9.65 8.66 8.32 7.94 7.88 9.14 10.1 7.01 8.82 10.9 7.85 7.77 12.2 7.56 8.79 10.6 9.93 6.91 10.4 12.1 8.8 9.7 7.66 8.73 6.6 10 4.87 0 9.56 10.9 11 6.97 2.68 9.88 1.66 9.8 6.79 9.5 11.4 8.99 11.9 8.24 11 11.5 8.65 8.47 10.3 7.26 6.27 9.71 7.99 10.2 9.16 10.9 5.85 8.44 7.69 8.33 10.7 9.74 8.96 10.9 8.38 8.99 10.1 4.35 8.98 10.8 9.69 7.82 9.15 11.6 9.68 5.23 5.25 9.63 10.2 1.05 8.57 10.7 11 9.8 11.3 9.85 8.67 8.37 9.3 10.5 7.61 8.19 6.65 9.85 6.14 8.01 9.24 3.37 7.89 9.48 11.6 7.29 9.49 5.03 11.2 10.2 8.97 6.23 9.24 8.27 10.2 8.28 8.18 1.95 2.08 9.2 7.02 7.21 0 9.82 11.9 0.44 9.23 8.04 8.4 10.7 8.56 8.76 9.97 6.77 8.84 8.39 8.35 0 11 8.04 3.15 9.06 8.18 9.76 9.58 8.37 10.3 8.76 9 11.6 7.92 3.84 9.54 7.52 7.63 10.7 8.58 4.16 8.99 9.47 9.96 9.65 11 9.55 5.52 7.62 7.87 7.49 8.88 7.78 9.84 11.1 6.13 3.47 9.43 10.2 11.4 8.23 9.55 9.03 8.24 7.03 6.38 8.21 9.65 10.4 1.29 5.6 10.4 9.96 1.66 7.75 7.72 5.01 10.2 9.95 10.2 10.4 9.45 10.4 7.88 10.9 6.46 7.11 10.6 12.6 7.03 0.44 0.44 7.17 8.9 9.55 1.29 4.69 2.59 8.56 4.84 8.78 8.8 8.58 0 9.61 11.4 9.46 10.2 9.69 12.3 7.49 2.5 9.59 10.7 8.44 9.77 7.56 11.8 3.15 7.94 9.1 7.43 1.29 8.26 4.73 5.04 2.68 6.94 4.47 11.4 7.05 7.62 10.7 9.73 8.1 1.48 6.28 7.6 8.46 4.67 10.9 10.7 1.48 2.2 5.6 9.47 8.49 11.3 8.5 1.05 7.53 0 11 6.87 9 8.49 11.5 1.05 10.2 9.19 5.96 7.8 10.4 12.4 9.97 10 6.81 11 8.2 7.8 0 9.67 9.11 8.67 8.2 10.9 9.58 9.76 6.92 9.18 10.8 5.77 2.41 8.71 7.33 10.4 6.97 10.3 9.98 4.19 8.58 7.49 10.1 10.4 10 9.37 9.9 8.59 10.4 8.11 5.42 8.83 8.34 8.58 8.28 2.75 10.2 10.2 9.68 8.03 10.8 8.13 7.57 8.25 9.66 8.36 9.87 11.6 7.75 10.8 3.8 8.12 7.66 8.6 6.76 11.1 10.9 9.43 10.1 8.24 8.78 9.65 10.8 11 8.54 9.29 11.7 8.84 10.5 9.84 7.68 10.2 8.42 9.82 9.39 10.4 10.7 6.75 7.78 9.13 9.99 10.7 10.1 9.15 5.69 8.41 10.4 9.78 6.81 10.6 5.54 11.6 11.4 8.67 7.37 12.7 11 7.72 10.6 8.94 9.91 7.6 8.27 8.76 6.12 8 10 8.82 10.5 9.84 6 6.27 4.54 7.87 9.99 7.21 10.2 12.5 8.84 6.08 7.12 8.22 9.97 11.1 10.2 10.6 11.7 8.18 9.9 8.27 9.07 9.69 10.7 12.3 9.87 9.56 8.76 9.89 11.2 8.09 12.7 10.8 8.17 7.97 10.2 7.9 8.34 8.47 10.1 6.42 10.1 8.96 7.1 8.21 8.44 9.15 9.66 9.99 5.1 9.6 7.89 8.29 9.24 8.35 8.68 12.7 8.47 8.82 8.54 2.83 9.14 8.48 7.67 11.5 2.75 9.64 10.6 8.12 9.56 7.73 8.21 6.72 8.16 6.64 11.8 9.61 9.72 9.3 8.36 8.37 7.61 5.63 7.22 9.55 9.77 1.48 7.58 9.03 9.63 6.63 12.2 11.2 8.76 9.94 9.2 7.39 9.86 9.42 9.09 9.98 9.88 11.3 9.51 6.86 9.82 6.88 9.33 6.32 10 6.76 8.96 11.3 7.42 8.72 7.64 11.3 8.27 9.8 12 6.14 10.2 7.64 9.51 9.49 9.33 10.3 10.3 9.9 11.8 10.3 9.1 1.66 7.1 9.36 12.2 8.94 1.05 5.22 7.13 11.5 11.4 6.42 2.2 11.7 10.4 8.51 10.7 5.01 9.89 9.15 10.1 8.82 8.49 11 10.7 7.9 9.32 7.98 12 8.74 12.2 10.2 9.42 10.1 6.88 10.6 8.41 6.67 9.27 3.64 9.95 6.89 12.6 11.4 8.57 7.11 10 10.7 11.7 7.21 9.32 10.5 9.33 10.1 10.8 3.72 7.73 10.9 6.82 9.41 9.12 8.84 1.81 9.06 0.78 9.35 8.77 10.2 10.5 5.64 9 10.4 10.6 8.49 9.06 9.99 7.17 6.98 8.34 6.5 9.26 10.6 7.83 8.59 8.8 7.16 7.13 5.33 11.8 8.71 6.69 11.7 8.67 4.61 5.56 10.7 5.37 8.79 8.02 7.34 5.03 10 1.29 6.27 7.11 5.58 5.12 3.56 6.59 6.15 4.79 5.53 10.6 4.8 10.2 4.45 6.52 3.51 5.62 8.53 2.97 0 4.13 8.84 11.8 3.21 7.44 10.5 1.81 10.3 13.5 0 2.31 5.37 7.66 7.65 7.22 12.3 11.1 0.78 10.9 10.3 6.83 10.5 9.4 5.18 10 12.9 7.69 8.59 8.03 11.5 11.3 10.1 2.68 7.59 10.3 9.09 7.65 8.05 9.46 9.8 10.3 2.08 10.1 4.62 0 4.82 8.94 2.41 9.59 8.28 11.4 2.59 7.42 13 8.14 1.29 15.6 10.2 8.69 5.47 9.86 8.92 8.07 11.5 8.26 9.77 7.07 3.27 12.9 7.52 11.9 8.57 8.74 6.17 3.03 7.22 1.05 8.42 0 11.5 8.57 11.7 9.3 14.3 6.2 0 9.82 9.89 10.1 10.3 10.2 7.26 9.14 9.52 9.45 9.46 10.1 10.3 6.31 8.65 9.56 10.2 10.8 10.9 10.3 9.83 12.2 10.8 8.98 6.55 10.2 12.5 9.93 9.28 10.7 9.48 10.3 10.6 7.67 8.21 9.77 8.5 7.86 11.1 9.89 13 4.58 8.84 9.02 8 9.57 7.62 8.83 11.3 8.4 9.74 7.39 5.59 9.57 9.57 10.2 10.5 10.5 7.46 7.36 11.1 3.32 9.92 9.69 9.67 8.39 8.39 9.42 8.65 8.74 11.2 9.87 9.87 10.4 7.4 9.79 9.82 5.88 7.72 10.2 9.52 4.54 14.2 3.68 9.35 11.8 10.5 4.4 9.86 7.56 7.37 8.15 7.76 5.27 8.37 9.29 7.24 8.51 11.5 8.96 11 5.1 9.62 10.7 9.84 9.76 9.97 9.99 9.45 2.83 8.16 7.25 7.48 11.9 11.1 10.3 3.78 9.13 9.94 9.2 11 10.8 9.4 10.3 8.44 9.82 8.24 9.69 9.84 8.19 11.6 9.13 2.31 9.18 11.2 0.44 12.2 10.9 11.7 1.95 9.64 11.7 6.11 10.7 6.06 11.4 1.29 10.6 4.27 7.66 6.02 9.57 11.1 5.53 8.75 8.16 10.6 4.45 9.29 7.87 8.95 9.28 2.68 1.05 8.5 7.94 10.2 9.03 8.76 5.78 6.51 1.29 7.7 8.59 10.4 9.78 10.6 9.13 11.5 6.67 10.6 10.1 13.2 6.85 5.23 7.85 10.6 9.09 9.12 7.67 13.7 9.35 8.22 8.06 0.78 10.3 9.65 9.9 7.62 1.95 7.03 10.7 9.42 8.59 10.5 9.08 13.5 11.1 9.09 7.66 10.3 8.92 10.9 11.1 7.79 10.4 9.18 11.6 10.1 12 5.81 8.81 9.41 10.4 9.84 10.7 9.71 8.45 9.09 7.2 6.96 9.66 8.85 7.69 9.4 10.5 10.2 9.66 11.5 10.9 10.1 10.7 3.94 7.96 10.1 4.61 7.98 11.3 10.1 10.6 8.18 1.48 9.48 9.93 14.6 0.78 2.59 9.37 14 4.11 6.66 6.32 7.93 8.29 8.99 8.31 6.84 8.66 13.7 4.45 6.99 9.08 7.92 2.41 4.47 8.76 5.03 0 0.44 10.7 8.85 0 1.48 9.87 8.88 9.05 10.5 8.18 11.3 8.26 8.34 9.5 9.7 8.81 6.01 10.9 15.7 11.2 8.12 8.14 7.22 10.7 8.13 8.95 10.2 9.18 10.7 2.59 8.73 8.71 10.4 8.29 7.13 8.92 9.69 9.7 9.37 11.4 10.3 12 9.91 9.66 7.93 11 8.56 9.25 8.34 10.4 10.1 10.1 7.27 8.34 10.7 7.25 4.79 10.7 11.2 10.6 4.69 10.4 5.25 12.1 8.41 2 8.93 9.9 7.9 11.8 9.93 8.69 11.5 9.46 9 11.9 10.4 13.9 7.34 9.96 9.23 7.69 9.65 9.02 6.11 4.67 4.61 6.42 9.08 11.7 12 11 6.93 7.76 11.7 7.57 10.4 9.18 9.68 8.28 10.1 9.32 9.67 8.69 6.07 4.38 10.5 9.36 11.3 6.17 11.3 10.2 8.65 8.02 10.8 9.54 10.7 8.74 9.09 2.2 8.63 9.73 7.49 13 8.86 10.9 7.99 8.15 5.91 5.49 8.28 7.29 9.31 13.4 6.4 10 12.6 9.6 9.95 9.02 9.86 9.65 10.2 7.52 8.57 11.8 6.85 9.4 10.9 11 9.65 10 5.82 9.62 9.36 9.67 11.3 9.2 9.42 9.13 2.2 6.95 9.7 8.95 8.72 8.39 6.52 7.45 9.54 11.4 8.4 10.1 11.1 12 8.22 7.98 6.21 10.6 7.62 8.23 8.03 10.2 5.6 6.74 7.51 9.81 6.35 11.7 12 10.1 6.35 9.95 7.83 8.69 11.2 8.13 5.96 11.7 8.16 9.8 9.67 10.4 10.9 8.76 6.59 10.5 7.82 10.5 8.52 10.5 7.05 8.49 9.35 9.17 8.46 6.35 11.4 7.01 9.23 9.94 9.49 9.06 9.06 10.1 9.3 10.1 7.76 9.68 8.02 6.95 7.87 8.69 7.38 8.28 8.7 7.92 10.6 12.2 8.58 10.4 9.83 9.69 9.86 5.12 9.31 7.89 3.51 5.83 8.11 6.54 6.45 8.02 10.3 6.47 9.06 9.59 9.19 9.49 9.13 7.49 9.26 5.71 9.27 11.3 13.3 8.71 10.7 7.99 7.2 4.8 2.9 9.31 9.01 3.47 10.9 1.29 9.62 6.66 6.57 12.3 9.35 12.2 2.97 10.6 9.92 11.1 5 8.74 12.8 9.58 5.38 10.1 10.7 9.99 9.79 10.5 1.95 7.49 8.43 6.68 11.8 7.1 4.98 8.71 8.44 9.31 10.8 9.08 8.58 9.45 5.45 9.1 11.4 11.3 11 1.81 9.62 11.1 10.8 9.89 7.78 10.1 11.5 11.8 10.6 8.48 9.09 9.61 13.1 8.37 10.9 8.71 14.4 10.3 11.4 9.08 10.5 11.8 5.54 9.74 9.54 10.6 7.66 9.53 9.9 7.59 6.43 7.9 10.9 5.84 8.94 8.79 9.16 7.98 8.03 8.77 10.5 12.3 9.22 6.38 10.6 9.74 7.83 11.1 10.3 11.4 6.65 10.7 6.11 10.4 1.05 1.29 10.6 9.34 11.9 11.5 10.1 10.4 9.7 5.5 8.41 11.2 11.4 12.6 8.17 12.1 8.33 10 8 4.5 8.03 9.47 7.83 11.9 12.7 7.28 7.85 7.94 8.97 12.6 10.8 11.3 1.95 7.84 5.96 7.92 7.47 7.12 11 3.98 10.4 8.91 9.84 9.87 12.8 11.1 9.35 11.5 10.3 10.8 10.6 10.1 9.41 10.6 11.2 8.97 4.63 9.6 7.33 9.48 9.09 4.32 10.3 9.25 9.97 6.64 9.07 7.25 10.8 9.68 8.53 10.4 7 2.9 7.27 7.38 12.1 10.7 8.82 9.97 10.8 7.26 10.8 7.93 7.42 1.66 9.32 10.1 11.4 1.05 2.68 9.55 10.2 3.03 11 7.73 9.97 11.7 3.03 11.1 10.2 8.67 9.41 12.1 9.71 0 3.79 5.66 9.65 6.43 5.69 1.95 11 10.7 1.05 8.03 11.4 4.65 12.5 9.44 7.05 7.01 11.2 7.47 9.77 11.5 10.5 8.36 5.39 11.5 11.2 10.8 8.7 7.82 7.06 8.87 8.97 9.66 0 7.66 10.8 10.4 8.46 12.1 9.95 8.11 11.6 9.69 9.96 16.2 10.1 11 0.44 10.2 6.14 1.66 11.3 0.78 10.2 9.38 9.17 1.66 7.06 3.98 8.94 10.5 8.94 9.38 11.5 5.66 3.32 7.73 10.6 0.44 6.58 9.45 12.1 5.54 8.23 10.9 0 8.87 4.5 0.44 7.91 12.4 7.36 10.5 10.1 11.7 9.54 9.76 8.18 9.48 7.17 9.71 6.34 8.42 9.22 8.02 4.79 10.4 9.43 11.3 8.59 8.68 8.1 10.1 9.68 10.6 9.28 8.32 10.2 11.2 2.59 8.25 10.9 6.84 6.31 8.85 4.73 8.89 8.98 4.24 4.58 7.41 8.24 8.03 10.7 11.6 9.79 11.5 8.05 9.38 0 9.24 11.1 9.08 9.71 9.43 3.09 9.47 6.59 9.01 8.96 0.44 11.8 10.5 7.5 9.26 14.1 13.6 13.4 12 10 13 12.8 0.54 13.3 10.1 13 12.8 12.2 12.8 14 11.8 12.8 9.73 13.3 1.48 12.3 11.1 8.04 12.1 11.9 11.5 12.8 12.4 12.5 11.8 12.2 12.7 11.6 12 10.8 12.2 12.7 11.3 7.88 7.16 13.1 5.59 12.8 13 11.9 8.84 7.72 11.6 11.5 11.8 12.9 11.4 13 2.33 1.29 4.65 10.4 8.15 12.1 2.08 1.95 13.6 9.48 11.5 10 9.59 8.28 11.2 13 12.9 11.6 13.3 12.7 12.1 12.7 11 11.8 12.3 12.4 8.38 12.9 12.5 12.7 11.5 13 12.9 12.3 8.23 3.91 12.4 7.88 11.1 8.18 8.28 11.1 8.96 9.75 1.95 10.1 2.68 7.18 11.2 9.9 11.9 7.41 13 9.98 9.14 11.8 7.01 8.89 5.02 12.1 13.2 6.52 6.53 7.04 0 12.9 6.83 7.6 10.8 9.9 2.68 11.9 14.9 2.75 6.9 10.5 10.1 1.66 11.5 10.1 11.2 10 10.6 12.1 7.69 10.3 11.3 10.4 11.2 4.13 11 10.5 9.09 15.9 5.85 5.34 7.17 8.78 9.28 9.41 6.74 3.98 12.2 8.07 3.76 8.18 4.82 3.21 4.35 6.81 2.68 8.3 11.4 0 4.58 11.3 11.6 9.25 1.95 11.8 5.58 0.44 5.37 7.52 0.78 5.55 1.29 0 9.73 1.66 1.66 2.68 5.51 1.05 12.5 1.05 4.65 8.99 14.6 10.6 14.2 12.2 8.98 10.7 8.34 9.08 9.71 9.22 11.1 9.13 8.86 9.87 8.49 7.6 8.71 6.69 6.63 7.89 10.1 8.94 10.1 8.24 10.8 10.6 6.06 2.42 8.07 11.4 9.75 10.4 6.92 6.41 1.29 2.2 8.48 4.58 7.81 9.28 7.8 7.72 7.49 10.2 9.67 9.19 8.73 6.16 10.4 2.75 11.8 3.15 10.1 10.1 7.23 7.39 4.4 7.8 0.78 11.8 4.82 8.41 9.2 2.59 10.7 5.88 10.7 9.75 1.29 7.56 11.3 7.78 2.53 10.5 2.08 6.67 8.05 10.7 7.1 10.5 7.59 3.8 4.01 8.7 13.3 6.9 9.18 9.26 4.86 9.4 2.08 5.9 9.93 10.8 12.9 12 8.3 8.91 9.01 9.99 7.91 4.89 8.32 6.5 6.39 9.32 1.48 9.17 6.82 8.96 2.68 8.57 3.03 12.6 11.2 2.97 5.48 7.16 7.55 12.7 1.45 9.59 9.44 7.01 5.39 9.88 6.37 4.8 7.07 7.54 7.37 12.1 2.59 8.33 6.96 8.99 10.9 11.6 9.84 8.6 7.24 8.56 10.4 7.21 9.09 9.58 9.23 9.37 9.02 3.21 9.07 8.97 9.74 9.3 1.48 0 5.82 1.66 11.7 4.07 11.3 11.9 6.35 8.49 5.66 6.63 1.29 3.64 8.28 8.54 6.85 10.6 5.93 4.16 6.45 1.05 12.5 7.07 0.78 11.3 9.9 8.65 10.1 10.5 8.69 1.81 10.9 9.01 5.69 9.11 10.1 10 9.77 8.24 7.78 7.54 4.35 2.31 2.83 5.12 11 9.22 9.65 10.2 7.57 9.64 2.08 2.9 8.22 8.34 9.69 12.2 3.68 8.99 7.18 5.58 1.05 4.87 5.4 5.49 0.44 1.05 7.64 8.19 2.2 12.3 10.1 7.66 8.56 10.6 6.21 6.67 5.94 8.35 7.27 4.71 9.8 7.38 10.1 7.34 11.6 6.67 5.22 7.1 7.24 9.41 9.38 1.95 6.31 7.54 9.9 11 9.04 9.39 8.02 9.19 9.01 11.3 10.2 9.37 9.17 8.02 7.32 8.13 1.48 1.05 2.41 7.74 2.9 7.29 11.7 2.97 9.48 6.89 9.03 2.68 3.32 8.79 3.37 11.1 0.78 5.23 0 1.48 9.52 8.27 7.59 12.4 4.93 1.29 4.01 3.68 11.8 9.92 6.39 1.05 4.95 2.59 2.59 10.5 10.8 6.43 4.79 3.15 0.44 3.76 2.9 9.15 3.51 5.33 7.46 8.12 10.7 0 9.26 1.66 0 1.3 8.42 3.09 6.48 3.27 10.3 4.16 10.4 5.78 6.96 11.3 0 6.05 8.16 10.9 8.62 7.5 11.7 2.41 1.29 1.66 1.66 3.51 6.45 9.29 0.44 5.18 6.55 8.9 10.2 14.4 3.37 5.52 9.92 9.08 2.08 1.95 10.1 12.1 8.53 10.1 10.5 10.4 8.94 8 7.7 10.2 11.2 8.53 12.2 9.61 8.61 7.91 8.83 10.3 9.52 8.36 10.3 9.02 9.64 11.1 8.49 8.9 7.5 9.01 8.58 8.36 8.31 9.97 10.7 7.53 7.17 9.62 7.71 0 10.5 8.62 9.18 6.64 9.44 7.87 7.71 0.44 11 13.9 10.5 4.69 10.3 11.4 6.56 7.97 7.66 10 9.57 9.07 10.4 9.54 8.95 10.2 9.17 8.22 8.29 0.78 10.4 10.7 9.36 9.28 9.31 9.93 10.9 9.9 9.89 9.21 7.87 6.9 6.96 7.3 9.07 7.01 8.57 3.95 5.4 9.48 9.04 8.44 8.49 2.59 5.75 2.41 5.84 6.45 9.59 1.29 9.04 8.6 7.54 7.77 8.3 5.73 2.41 10.2 7.59 7.95 5.06 6.29 9 2.41 8.96 1.29 8.63 8.55 8.61 10.7 9.03 12.1 8.5 9.38 9.59 7.52 9.23 9.23 8.23 9.72 2.41 7.6 13.3 8.14 9.03 7.73 13.3 5.85 4.19 12 7.55 10.3 2.83 1.48 7.77 9.96 11.5 8.92 9.55 14.7 10 7.17 7.68 3.56 15.2 6.79 8.44 8.74 9.19 9.36 8.9 12.7 8.38 9.61 3.64 9.81 13.7 8.69 10.3 10.7 3.87 10.7 8.08 12.9 10.8 12.1 5.13 9.45 7.33 10.7 3.8 7.25 12.8 1.05 11.1 9.79 5.65 5.12 7.81 7.04 8.88 9.4 8.36 9.12 12.7 7.5 8.24 10.6 10.9 4.61 6.5 9.3 1.95 0.78 11.9 0 9.4 1.05 1.05 4.79 7.77 3.68 4.54 3.32 4.79 2.31 0.78 2.68 2.31 8.47 7.99 4.4 7.09 4.07 0.78 2.31 8.12 12.5 9.22 6.87 10.9 3.32 6.03 3.37 12.7 1.05 9.68 4.38 7.99 5.25 2.68 7.37 2.2 5.23 2.2 7.4 7.72 4.07 10.7 12 2.08 0.44 7.9 7.93 7.01 4.54 7.08 6.08 8.25 7.15 1.44 8.43 4.27 9.09 6.37 7.31 8.86 5.81 4.42 4.71 2.08 5.15 0 10.7 3.76 10.4 1.66 5.35 10.8 13.8 11.3 10.2 10.1 9.71 3.37 0.78 8.29 9.54 11.2 10.1 8.57 10.4 2.2 4.45 6.91 8.82 10.4 6.26 11.7 5.35 5.22 11 11.8 11 10.8 8.3 8.33 9.75 10.6 10 8.58 11.7 12.9 8.22 8.91 4.52 8.01 3.09 10.2 6.65 10.1 9.31 9.18 9.34 5.31 9.8 5.61 3.21 7.53 4.35 10.8 9.98 10.1 12.4 10 9.81 7.94 10.1 10.5 10.9 1.42 9.65 9.14 9.92 7.49 6.71 9.65 11.1 11.2 5.37 6.23 12.1 8.05 7.94 9.42 6.8 8.94 9.16 9.11 11.1 11.1 9.46 7.5 9.74 9.51 9.67 9.23 9.1 9.97 10 8.85 8.77 8.9 12.1 11.5 12.2 11 11.6 10.4 8.73 9.73 1.29 11.9 5.31 14.1 8.5 11.8 8.08 13 8.34 14.3 10.7 10.5 9.76 9.56 8.89 13.3 9.7 8.73 8.64 11 9.59 14.4 10.9 8.95 9.62 8.59 8.88 0.44 15.9 9.6 10.4 9.68 2.08 9.09 1.48 5.65 7.98 11.9 14.7 6.99 6.46 14.4 1.05 8.12 14.7 9.42 8.86 8.69 7.77 1.05 12.9 7.72 12.9 11.6 10.1 9.42 12.6 12.3 8.77 9.87 7.54 10.7 11 8.49 10.4 10.4 7.53 10.8 10.8 9.53 12.3 11.8 10.8 11.6 10.5 11.3 3.91 6.3 2.68 10.9 11.5 12.9 6.23 6.05 14.2 4.45 11.4 10.2 12.6 4.88 9.72 11.1 1.95 0.78 2.97 0.78 1.29 0.44 0.78 0.82 9.73 2.67 0.44 0.44 2.37 12.9 11.3 4.01 10.5 0 7.05 10.7 8.04 9.94 7.67 10.1 4.79 1.95 6.78 9.17 9.92 3.98 2.75 8.99 8.38 8.05 9.07 9.49 11.3 8.42 10.3 8.61 7.83 7.24 4.13 13.8 1.48 9.7 9.92 11.7 4.27 11.6 8.65 9.78 8.11 11.4 9.8 9.43 7.89 8.99 7.13 9.11 12.7 10.1 0.44 10.1 10.1 10 11.3 11.6 11.9 8.83 7.64 4.01 6.88 12 9.97 6.87 12.4 8.31 10.4 9.25 8.66 6.21 10.5 6.6 9.65 11.4 6.8 9.85 8.86 8.39 8.31 7.83 9.63 9.33 1.95 11.2 12.1 9.97 9.76 11.2 8.38 7.08 9.91 1.48 12.1 8 9.65 8.48 10.2 7.96 10.6 8.1 6.08 4.71 4.35 3.64 10.1 10.9 9.8 5.81 2.2 5.09 6.58 8.97 2.08 0 10.6 5.96 10.1 12.1 7.33 4.32 10.4 9.75 9.7 11.4 8.47 11.4 2.83 10.6 7.46 7.53 9.97 9.52 9.6 2.68 9.68 9 8.44 11.3 2.59 0 10.5 3.37 9.67 5.72 10.3 9.22 7.8 1.05 11.7 11.8 4.77 7.74 1.95 6.36 11.1 14.8 1.81 8.6 9.73 0.44 9.79 9.99 1.05 9.48 12.9 8.69 7.23 7.27 9.55 11.2 9.22 10 8.32 11.5 2.9 5.61 3.15 11 4.38 7.75 10.6 6.94 11 9.2 2.68 6.83 10.7 1.05 10.6 11.9 7.12 9.49 3.56 10.3 2.2 8.02 10.4 11.3 8.09 9.58 11.2 4.88 9.49 4.52 13.4 10.3 1.66 10.9 10.9 9.63 10.4 10.6 8.72 9.51 14.4 14.1 7.04 9.96 12.7 4.22 10.4 11.4 6.73 10.3 6.75 10.8 9.6 4.98 13.1 12.7 8.21 9.9 8.27 10.6 15.6 11.8 8.6 11.9 9.6 7.68 11.6 9.3 10.5 10 9.77 9.42 14 11.1 9.68 7.77 8.02 2.68 10.5 10.1 9.94 12 5.3 11 10.3 1.05 3.32 0.78 5.49 11.8 0 13 8.71 11.1 10.8 5.7 1.66 2.41 12.1 8.17 9.04 10.4 11.7 10.3 1.81 6.35 9.81 9.9 10.9 4.16 12 9.98 9.41 7.82 11.7 11.3 9.06 9.83 11.6 0.44 14.8 2.26 14.2 8.6 11.1 12.8 7.73 7.57 7.51 6.71 7.98 11 14.6 2.08 11.4 10.8 11.3 8.43 0.78 8.36 2.5 4.27 4.86 9.01 10.9 0.44 3.37 2.21 11.3 10.8 11 1.05 10 2.9 10.3 11.7 11.7 8.92 2.83 10.9 8.9 10.2 10.6 12.4 8.7 7.68 8.42 1.05 6.92 10.3 10.5 7.72 4.04 4.1 6.62 6.18 9.61 9.49 13 5.5 5.59 5.96 7.1 6.94 3.21 8.3 7.75 2.41 5.45 8.2 8.29 5.01 7.65 4.13 2.2 11.4 11.6 6.72 6.21 3.27 6.8 6.04 6.54 4.43 6.68 2.68 6.56 8.22 7.24 3.47 5.53 8.87 5.82 6.94 12.3 4.77 7.39 1.81 4.07 0.44 5.21 4.32 8.69 8.18 8.48 2.2 2.5 9.99 5.22 9.03 10.2 5.25 4.79 4.54 3.21 2.41 5.49 7.23 2.68 9.29 1.66 5.26 3.09 2.9 10.6 5.62 1.66 0 6.46 9.64 8.77 3.37 9.35 4.82 2.83 11.2 3.56 7.53 0.44 8.73 10.4 1.95 0.78 3.51 6.47 2.5 7.41 1.66 5.47 8.54 8.79 7.64 7.79 6.43 3.21 7.85 5.93 8.93 10.8 6.14 3.84 10.5 1.05 10.3 5.03 12.2 0.78 13.8 15.5 12.2 0.78 9.14 10.5 10.1 8.43 10.8 12.4 10.7 8.17 9.93 10.6 10.7 10.3 1.66 11.5 11 11.3 9.86 11 11.5 10.5 10 11.5 11.2 7.32 1.66 1.81 8.82 4.13 9.48 4.35 8.65 7.36 8.25 10.8 10 6.56 8.36 6.97 9.72 10.6 10.9 7.68 1.48 10.6 1.95 11.7 10.8 11.4 10.1 9.77 10.3 9 9.29 11.9 10.3 4.04 10 12.4 8.88 9.18 9.68 9.39 8.27 10.3 10.4 10 10.7 12.2 11.5 9.99 10.4 5 10 10.4 4.01 8.28 9.79 0 12.9 14.1 6.65 8.73 7.27 9.22 7.46 8.08 7.04 6.63 9.49 3.56 11.3 11.9 10.6 8.73 10.1 12.4 9.2 13.1 9.68 4.8 6.89 12.8 10.3 9.44 10.8 1.05 6 8.72 1.81 4.71 3.98 1.66 5.33 2.5 4.13 1.29 4.98 10.4 8.05 0.78 9.74 1.95 2.59 3.02 6.72 8.47 10.3 6.09 9.62 2.08 11.5 9.21 4.61 8.42 6.19 9.51 12 7.47 10.6 9.85 12.9 11.1 14.2 12.4 11.9 13.4 2.9 12.2 13.9 5.53 13.4 8.59 8.77 8.57 6.94 8.71 9.18 10.1 8.55 6.41 13 7.91 9.22 7.61 8.64 7.35 7.36 7.48 6.35 6.66 7.2 10.2 9.84 8.34 11.9 7.35 8.34 5.98 8.97 10.1 9.1 6.48 10.8 9.22 8.02 7.82 8.28 8.35 7.96 6.28 10.9 5.15 6.21 5.34 7.4 7.51 8.46 8.08 9.25 6.44 0.91 9.94 5.6 6.43 6.24 8.56 2.2 10.9 6.45 5.4 6.57 12.8 5.31 1.66 4.38 4.04 2.75 5.71 5.44 8.15 8.9 7.43 7.76 8.29 6.99 8.2 5.19 7.43 8.18 9.59 5.4 9.12 8.2 9.43 9.74 10.5 10.3 10.4 8.74 5.69 7.35 7.35 1.05 11.2 3.84 9.99 7.55 8.02 8.91 6.42 6.77 7.11 7.43 8.4 8.54 8.05 8.38 9.29 9.8 7.01 7.73 7.56 10.7 7.18 7.25 7.78 7.73 11 3.91 6.16 9.4 6.86 3.15 13 8.15 7.04 7.9 6.89 8.69 8.22 8.38 6.82 5.9 7.04 7.18 8.15 9.27 2.9 4.89 7.02 5.88 9.19 6.37 11.3 9.46 10.5 14.6 10.8 11.5 7.7 12.7 5.87 13.3 9.89 9.77 9.76 7.34 13.3 9.41 7.59 9.6 9.21 11.3 14.7 5.37 9.19 4.52 6.19 11.1 7.27 10.6 9.31 7.98 9.84 10.9 9.84 8.52 11.4 12.9 9.5 8.39 9.53 7.67 9.25 9.67 3.15 5.27 8.46 8.85 9.22 4.22 8.53 7.16 4.45 8.4 9.76 4.07 9.04 10 8.61 10.2 8.35 10.8 9.75 6.71 9.27 8.91 10 8.81 8.54 3.37 7.69 10.5 6.83 2.2 15.1 10.1 7.2 9.16 7.41 10.2 8.8 9.12 10.1 4.86 11.7 9.83 9.73 9.3 9.38 9.66 12.2 7.83 8.8 6.93 8.54 7.4 11.1 10.2 11.2 5.35 7.28 6.97 10.4 7.7 6.06 8.06 7.25 8.07 8.67 9.03 12 10.2 8.18 7.07 9.72 7.91 6.94 3.8 5.47 8.67 7.28 9.57 3.64 8.58 9.28 11 11 9.25 7.17 8.78 8.21 11.8 10.2 7.5 9.74 9.73 11.1 9.41 8.24 7.88 6.11 11.5 8.99 4.01 6.4 8.32 7.55 8.33 10.3 7.76 12.8 8.5 7.67 0.78 5.4 7.93 11.5 1.48 9.96 6.67 5.58 8.92 7.1 7.45 8.04 9.4 9.18 9.38 9.05 8.29 6.91 10.8 12 2.08 9.73 10.9 7.08 7.51 7.33 5.41 9.54 1.66 6.21 0 10 6.54 10.6 12.2 9.3 0 3.98 1.95 7.99 2.9 7.03 7.37 5.63 0.78 7.3 10.2 9.83 8.62 7.3 9.83 7.31 9.61 4.27 2.75 1.48 2.76 10.8 7.41 9.25 6.9 9.48 10.5 8.4 9.97 8.41 10.2 8.58 9.99 9.93 10 9.85 8.3 9.47 9.57 9.3 9.32 8.57 8.16 9.38 11.7 9.86 9.04 9.27 8.65 6.36 9.66 8.4 8.46 4.96 7.79 7.86 9.48 4.16 8.39 9.46 6.91 12.1 8.07 7.6 7.15 8.54 7.67 8.94 9.12 8.09 7.55 8.27 9.44 9.62 5.35 8.83 7.73 4.67 9.31 10.7 8.79 8.15 8.65 8.76 10.6 7.21 9.39 7.33 9.15 6.28 10.3 7.72 6.34 7.41 9.4 10.8 9.1 6.31 8.58 3.09 9.83 8.25 10.6 8.11 0.78 7.63 8.21 8.39 8.65 3.58 8.25 7.21 10.5 4.45 8.04 7.91 9.25 8.14 8.62 4.82 6.5 6.76 10.6 7.54 5.62 8.64 9.03 7.8 9.66 7.65 8.14 8.66 6.95 7.21 9.51 9.01 11.4 9.02 10 2.75 6.89 9.65 7.44 9.49 8.09 4.36 6.69 7.98 1.05 9.09 10.8 6.75 9.23 9.47 3.11 7.88 7.42 10.8 7 1.29 9.2 4.38 10.3 8.22 8.67 10.1 1.95 8.09 7.45 8.28 7.08 8.18 8.65 3.84 8.62 10.5 6.01 6.81 10.6 8.24 9.91 7.36 9.53 9.14 0.44 5.89 10.2 8.1 6.08 9.18 9.39 9.35 9.54 9.35 9.04 8 8.22 8.4 4.54 1.05 8.14 4.22 8.29 8.42 7.45 10.9 8.8 9.92 4.3 5.22 2.9 11.1 5.88 8.67 8.76 0.78 5.69 6.19 2.9 2.08 8.76 8.88 7.62 6.6 10.4 5.95 11.1 8.72 10.3 2.08 7.18 4.04 6.88 3.37 5.97 4.4 4.32 6.71 6.14 8 8.02 0.78 7.07 3.8 0 4.4 7.9 1.29 9.28 1.29 6.48 7.11 5.79 2.2 5.77 8.82 8.8 11.5 13.1 7.35 9.43 6.56 6.94 7.94 9.62 11.9 5.43 8.49 10.3 5.29 10.1 11.1 7.77 7.01 10.4 9.94 8.04 10.3 10.6 9.19 7.76 8.1 7.47 6.52 8.27 13.6 8.69 10.1 8.25 7.13 1.95 7.01 8.35 6.86 5.27 4.84 8.07 11.4 5.82 1.05 2.97 8.21 3.42 9.22 7.36 7.21 0.78 10.8 3.03 9.27 1.95 6.56 10.6 11.2 6.1 7.84 8.64 1.49 9.11 4.93 0.78 8.43 5.53 9.94 12.6 7.2 6.76 10.6 6.94 6.23 14.6 5.29 9.65 7.6 13.4 5.64 7.99 1.95 8.27 7.26 8.64 1.05 4.96 6.53 6.51 9.39 8.27 3.68 9.6 4.8 11.2 1.05 3.84 8.47 5.6 8.77 8.93 7.4 7.7 8.73 11.5 10.4 9.1 8.9 10.7 8.84 8.8 10.9 8.14 9.35 10.5 9.6 9.02 8.64 11.1 2.83 2.5 2.08 5.83 9.26 5.67 8.33 2.2 5.92 3.03 1.05 9.02 9.9 14.8 5.37 8.4 6.37 3.98 1.29 7.41 9.52 7.18 6.65 7.7 10.2 1.66 8.78 7.11 9.12 9.43 6.65 8.94 9.67 9.86 7.8 10.1 9.09 9.29 8.11 9.94 5.72 7.6 7.14 9.16 8.03 6.71 9.3 7.62 2.9 7.37 7.4 8.59 7.26 11.3 8.54 9.17 9.39 8.97 8.85 3.72 10.9 10.9 8.03 8.09 10.8 10 10.5 7.4 10.1 9.85 8.4 8.16 11.4 9.27 9.2 8.21 6.38 7.86 9.19 10.4 10.2 6.04 11.2 8.7 7 5.76 9.45 9.09 9.28 10 6.6 9.12 6.72 7.6 10.2 9.52 8.11 9.01 9.13 0.78 10.8 9.37 5.27 8.13 10.8 10.8 12.8 7.67 8.33 8.98 1.05 8.54 12 6.19 8.47 7.22 9.02 9.08 11.2 6.23 7.86 4.35 9.11 6.05 7.01 8.67 0.78 2.83 3.32 11.7 5.76 7.06 11.7 5.49 2.08 7.57 6.26 11.1 5.23 7.88 9.58 9.49 0.44 11 5.61 10.1 5.91 6.19 9.48 5.93 13.9 9.35 7.04 10.3 11 5.62 9.39 2.41 8.43 8.12 10 6.88 11.4 9.44 11.1 3.47 0.78 4.04 0.44 4.88 7.95 7.24 7.33 8.56 5.19 6.78 6.35 6.19 9.83 12.3 8.66 3.64 8.58 7.9 7.03 6.2 10.4 7.31 11 9.28 8.73 11.9 11.1 13 8.25 9.61 11.8 8.99 9.2 8.47 10 11.5 9.96 7.64 7.9 2.83 11.5 9.47 9.41 10.6 9.69 8.6 5.02 8.35 6.96 3.62 11.1 8.33 8.64 8.88 4.04 8.44 12.9 12.2 9.32 2.68 6.41 5.47 4.38 8.99 8.36 10.1 9.94 10.8 12.5 7.99 3.72 0 8.78 7.75 11.1 10.5 9.55 8.55 5.77 11.5 11.3 10.4 9.19 3.98 8.53 10.5 3.09 10.4 10.6 8.87 9.79 9.04 12.2 9.62 5.78 5.87 9.46 8 10.3 9.66 9.06 9.72 9.48 9.97 6.82 7.65 8.92 11.3 9.66 9.73 10 0.44 8.21 7.98 8.2 9.45 11.9 8.59 8.82 9.74 10.4 11.1 8.6 11.9 9.94 7.57 2.41 9.29 10.6 8.85 1.66 11.2 9.89 5.89 2.41 11.7 15.6 11.1 4.32 5.46 9.07 5.68 8.93 12.7 4.51 12.2 11.9 10.7 10.1 12.7 10.1 5.9 0.44 11.2 0.44 10.4 4.82 1.66 9.5 8.98 3.6 6.76 7.31 10.1 6.08 8.32 3.87 13.1 6.68 8.07 8.49 11.3 10.3 6.86 6.92 9.78 4.09 10.2 7.33 10.2 9.66 5.31 8.85 8.69 11.8 9.2 8.01 8.29 10.4 8.74 8.5 0 9.82 9.9 1.98 8.99 8.97 7.69 9.32 7.18 2.41 4.71 8.93 9.75 0.44 10.1 10.2 5.52 11.1 14.4 9.33 9.91 7.72 11.4 9.08 5.4 8.86 7.6 9.44 7.57 10.4 8.04 12 11.9 12.6 9.95 10.7 10.9 9.84 11.8 9.19 5.84 9.74 7.7 7.9 8.29 5.96 10.4 1.66 12.1 10.6 8.24 6.35 8.96 0.44 10.8 11.6 12.4 13.2 6.91 11.8 8.16 8.85 10.7 10.8 9.48 6.07 1.48 11.9 2.2 9.03 8.38 9.22 9.02 7.06 3.72 0.44 9.69 3.56 0 2.83 9.64 1.48 8.21 1.95 1.81 8.53 7.73 0 0.78 4.73 0 0 0.78 9.89 2.31 9.45 10.9 9.55 7.8 7.99 3.6 0 6.48 7.51 8.21 0 7.94 3.83 5.38 10.2 5.64 5.34 5.63 7.93 9.05 8.12 1.05 7.35 4.96 7.71 10.2 8.65 0.44 2.33 0 5.25 5.31 0 3.76 5.22 11.2 10.2 6.54 9.26 10.3 0 11 0.78 1.66 0 0 8.79 7.26 4.65 8.86 8.64 7.16 6.5 9.8 0 12.5 9.37 10.4 8.92 7.35 0.44 2.41 8.96 11.4 9.94 0.44 8.12 10.5 7.84 7.19 11.7 5.51 0.78 5.9 10.8 0.44 11.1 9.98 8.21 1.48 12.8 11.7 9.81 7.77 8.01 9.84 2.5 9.26 9.37 6.83 7.73 10.3 9.11 8.26 6.75 1.81 7.47 10.6 5.53 8.25 1.48 8.17 12.8 6.17 10.8 7.13 8.74 6.77 9.83 11.2 2.68 2.31 9.18 8.93 9.21 8.39 1.29 7.71 5.04 8.85 3.68 3.83 8.61 7.91 9.82 7.04 8.06 7.54 9.76 9.91 4.38 9.31 5.69 11.6 9.72 6.01 7.78 0 1.81 0.78 4.63 1.05 4.1 1.81 2.83 7.76 10 6.76 2.08 9.9 9.82 8.19 8.55 12.3 5.16 9.81 9.82 7.92 8.54 6.2 7.05 0 6.34 1.05 5.93 12.1 9.33 9.9 4.13 9.29 9.86 8.83 11 9.83 0 2.41 9.03 0.44 10.2 9.12 2.08 9.1 10.1 6.29 5.95 15.5 10.6 4.22 9.45 1.81 7.73 11.2 10.7 8.24 11.4 8.76 3.09 10.7 10.1 9.4 7.96 1.29 12 2.31 6.9 0.44 3.98 5.42 8.08 9.69 10.1 8.88 9.85 5.58 6.73 9.56 8.64 3.87 7.44 6.64 3.91 7.34 8.81 8.21 7.28 9.73 10.1 7.95 6.93 9.24 8.92 9.13 8.77 10.3 8.12 7.57 8.17 7.61 7.79 4.27 10.3 9.6 14.1 9.9 7.98 9.67 5.21 12.2 8.71 9.75 8.19 8.48 12.5 10.9 5.62 8.23 8.25 2.5 5.59 7 11.1 8.43 8.07 9.31 10.6 0 0 5.92 9.05 10.8 10.1 4.45 8.77 3.6 5.61 1.81 6.34 6.64 7.91 6.04 6.04 1.29 9.46 6.08 7.84 4.79 5.85 9 10.4 10.7 7.55 8.63 11 7.72 8.6 9.03 8.29 11.4 10.7 14.8 7.86 7.29 9.36 7.67 9.43 8.38 10.1 6.46 7.69 8.47 6.92 7.96 12.5 7.26 8.92 8.81 9.19 9.04 8.01 8.9 8.46 11.5 8.84 8.36 8.67 9.72 8.71 7.71 4.07 7.88 10.5 8.96 10.6 8.43 6.39 8.35 8.2 8.92 7.66 7.42 8.83 2.75 7.63 12.6 9.07 9.64 5.5 8.83 9.25 7.29 8.94 6.05 7.57 7.14 8.13 8.26 6.55 8.41 9.74 0 10.8 9.17 8.75 8.83 8.26 7.69 8.98 10.2 6.61 8.46 8.09 7.37 9.26 8.62 6.78 9.2 9.56 7.21 7.25 4.45 11.3 8.3 9.49 8.26 9.53 8.52 8.48 8.67 9.79 0.44 10.4 11.5 9.55 7.31 10.4 3.47 8.96 7.17 10.3 7.36 9.96 2.41 9.88 8.38 8.27 9.39 8.6 7.5 11.7 10.1 8.78 11 9.56 10.6 7.3 8.65 8.2 10 4.63 7.73 7.46 6.58 8.35 10.3 9.56 8.05 6.71 10.6 4.16 6.51 9.18 9.9 11 6.73 8.84 6.88 10.9 7.51 8.83 6.58 10.3 5.13 3.27 5.26 10.8 7.67 8.81 5.65 10.2 7.59 6.44 9.35 12.5 6.09 10.3 6.55 6.93 9.86 7.31 9.08 8.09 11.3 5.65 9.24 5.01 4.73 10.9 6.59 9.41 0.44 9.51 5.15 5.86 8.95 8.68 8.03 10.7 8.3 8.27 3.84 7.93 7.95 7.41 11 7.94 7.77 1.05 0 6.76 9.65 10.5 6.37 5.25 7.09 11.7 3.42 1.48 0.78 4.04 8.78 10.8 8.69 10.8 11.4 7.09 6.91 1.05 9.4 6.68 0 7.39 8.61 11.4 4.19 7.29 6.87 8.81 5.53 6.84 0.78 12.1 8.82 1.81 3.32 7.43 12.1 9.9 6.53 4.16 10.1 9.5 9.12 6.11 12.8 6.58 11 6.12 1.81 11 4.07 11.2 9.49 8.61 9.48 6.56 11.2 7.52 2.75 7.93 6.59 2.41 7.63 6.5 9.45 8.64 5.86 8.71 4.01 5.44 8.27 9.02 4.47 6.13 7.6 3.68 8.96 9.2 8.64 5.87 6.25 0.78 6.81 8.96 9.58 9.15 7.9 9.06 2.5 7.65 3.21 1.29 7.86 9.12 9.22 8.55 8.46 0 6.01 8.55 2.41 7.22 5.55 7.51 8.57 8.94 9.63 6.94 9.06 10 9.43 6.97 5.1 5.42 7.85 7.39 9.91 6.86 8.05 9.79 8.56 7.14 7.27 13.2 8.95 9.78 0 9.7 9.99 8.97 8.92 10.4 10.1 9.85 8.85 11.8 6.76 9.44 8.52 3.64 6.21 8.08 7.91 9.78 7.97 5.19 10.6 10 8.86 10.5 9 9.62 10.9 6.18 6.28 8.1 9.19 7.78 9.37 11.1 9.76 3.42 8.25 7.11 8.5 8.14 8.44 8.16 8.26 8.49 10.8 5.58 1.95 8.44 5.6 8.88 8.3 7.92 6.92 8.57 10.6 2.41 10.5 1.05 7.97 7.78 8.75 3.56 7.62 8.76 3.15 6.88 7.08 6.3 8.44 8.28 6.17 7.37 7.81 8.65 9.19 7.82 7.96 10.6 7.03 4.5 7.13 1.66 10.1 8.48 9.46 1.41 8.67 11.8 10.6 9.55 6.47 11.7 9.01 7.68 8.57 3.68 6.47 10.8 9.43 8.63 6.95 5.37 10.6 9.79 7.44 7.3 8.66 7.13 10.1 8.2 8.38 11.1 11.4 10.2 9.16 3.37 3.21 9.81 6.66 4.19 8.31 9.32 9.85 9.68 0 12.2 0.44 8.31 8.91 7.26 9.29 7.59 0.44 4.1 9.4 8.4 7.63 9.75 9.68 13 3.96 3.51 4.73 1.66 9.61 10.8 9.12 7.52 9.12 9.05 8.96 8.54 6.77 9.01 9 3.98 9.83 10.9 4.3 8.56 9.98 11.5 11.1 6.87 9.81 9.82 9.75 9.52 4.19 8.43 0 8.01 8.12 4.79 7.26 10.9 10.1 10.8 8.17 11.1 9.51 11.7 9.45 10.4 11 10.1 9.32 8.35 7.38 11.3 12.2 10.4 8.53 10.5 9.01 10.6 4.38 11 10 9.82 2.08 0.44 10.3 10 5.06 3.09 8.59 4.45 6.53 5.84 8.61 3.18 3.87 12.1 9.03 9.73 8.43 5.23 8.33 8.17 10.6 9.85 8.05 2.84 10.5 13.1 10.9 8.72 9.11 8.83 11.5 7.51 10.9 10.8 9.67 8.67 8.56 7.22 7.55 8.09 8.93 7.01 0.78 8.92 8.55 10 9.2 9.95 8.96 3.03 8.01 8.13 10.2 7.62 13.9 6.24 10.6 6.85 3.42 9.72 8.93 10.2 7.87 8.75 3.56 8.5 5.9 6.48 1.29 8.15 6.5 9.11 11.2 9.1 8.95 6.54 5.44 6.98 4.71 9.45 7.42 8.33 5.18 8.45 11.8 10.4 9.91 10.1 4.22 10.1 11.7 10.4 10.8 12.1 12.4 11 7.9 11 10.4 10.8 11.3 10.8 10.9 10.6 13.1 10.9 8.35 10 11.3 7.5 7.99 10.5 7.94 8.65 14.5 10.3 1.05 7.83 10 9.24 8.41 9.6 3.98 10.4 6.8 8.59 8.72 9.49 7.4 9.86 6.76 5.46 8.83 6.83 6.54 6.33 9.25 5.04 10.3 11.5 11.6 9.76 12.2 10.1 8.41 8.28 6.67 10.8 11.6 10.3 8.41 10.6 9.04 9.55 7.59 7.5 3.15 9.6 9.76 7.42 4.98 7.94 2.41 1.95 12 10.5 11.2 6.27 11 11.1 12.1 8.67 11.2 9.36 5.53 8.08 10 10.4 11.4 9.69 6.51 11.6 6.37 10.2 1.81 1.29 7.32 10.2 8.02 4.75 7.16 4.5 8.32 4.71 8.05 9.23 7.45 8.4 10.3 10.2 10.1 11.4 9.11 4.01 5.96 1.95 0 9.9 8.35 4.07 10.2 11 2.31 8.76 8.41 4.19 6.19 2.97 10.1 6.61 11.6 10.3 8.41 8.24 10.2 8.81 8.68 8.17 6.74 8.98 9.19 0.44 3.8 4.77 9.25 7.24 2.08 10.1 9.63 7.65 4.36 13.8 12.4 9.46 10.1 4.16 2.59 9.11 0.44 8.37 10.4 10.6 11.1 10.4 10 9.77 8.63 9.82 9.87 10.4 8.97 5.38 5.96 6.91 13.4 10.3 9.85 10.2 8.48 9.48 7.77 10.6 12.4 10.6 9.79 9.31 7.91 8.87 9.13 10.2 11.9 9.58 11.6 9.6 11 0 3.56 4.47 9.49 10.3 7.73 10.4 9.42 6.33 6.34 9.78 6.71 8.52 9.8 5.42 6.61 8.1 9.27 8.95 11.3 10.8 7.56 9.75 2.42 9.36 9.45 11.2 10.9 9.09 9.26 12.5 11.4 9.41 7.42 5.65 11.6 10.3 11 0 2.41 4.98 10.7 5.29 2.41 7.61 9.08 11.1 8.18 3.03 9.77 8.57 10.2 9.57 11.8 11.3 4.24 8.11 2.08 4.98 3.91 0.78 8.23 7.15 7.62 8.75 9.29 10.8 8.87 1.95 9.24 7.72 7.41 0 1.77 8.06 4.24 0 5.98 2.51 9.45 9.6 7.76 6.79 10.8 10.6 11 10.7 0.44 10.1 9.1 9.92 4.95 9.37 9.17 8.69 10.1 9.13 7.63 6.83 4.52 9.3 9.6 11.9 7.6 3.09 5.77 7.99 6.57 10.4 6.83 5.85 9.22 10.4 9.42 2.9 9.82 7.68 7.81 5.8 6.09 7.42 6.6 10.9 9.84 9.21 9.58 9.22 7.72 11.2 3.56 0.44 10.1 9.92 6.61 8.51 3.37 7.22 8.63 12.1 8.58 2.5 8.63 5.79 7.47 4.75 8.06 11.1 8.81 6.65 8.05 9.78 8.24 4.16 1.05 6.77 9.52 7.2 1.66 4.27 8.18 8.63 8.21 8.51 8.58 6.22 10.1 7.72 7.78 9.85 8.71 7.55 11.9 7.6 7.04 5.52 8.67 12.4 9.92 8.64 11.5 8.43 4.19 2.75 1.48 9.21 5.82 9.58 9.45 9.41 6.97 3.72 9.08 6.3 4.4 8.81 7.83 2.08 7.66 10.8 9.49 7.18 7.72 5.25 9.13 9.34 6.59 7.44 0.44 5.15 7.4 7.15 8.01 10.9 9.98 9.5 8.11 8.97 8.52 8.16 8.5 4.58 8.77 8.41 7.56 9.02 9.43 9.99 7.45 9.76 10.8 10.5 8.01 1.05 1.48 6.83 10.1 7.4 8.68 10.9 2.97 9.26 9.65 8.2 5.18 10.1 9.01 5.82 9.15 10.3 9.14 9.06 6.71 5.21 0.44 9.72 10.2 10 9.77 8.08 5.53 9.04 8.9 8.58 4.1 10.2 5.98 8.27 11.5 9.47 4.61 10.2 10.6 10.8 11.4 9.19 5.53 9.78 9.33 8.71 8.12 7.38 9.98 8.08 1.05 10.4 11.1 7.56 10.2 7.43 9.04 8.57 9.34 11 8.64 8.03 10.5 5.86 9.12 0.78 3.51 7.45 5.31 7.08 3.72 9.29 7.08 7.68 9.96 10.7 5.16 9.11 9.34 7.21 10.1 9.42 9.79 0.44 9.97 9.09 10.9 8.47 8.38 5.72 2.75 0.78 6.8 11.5 8.06 0 5.6 7.98 7.85 12 9.32 10.3 9.54 7.11 3.98 9.24 10.8 9.93 6.09 8.8 6.57 8.12 6.58 10.3 4.45 10.8 11.4 1.81 11.4 10.8 7.28 10.6 7.05 9 2.08 8.32 3.27 6.17 7.87 8.14 9 2.59 7.81 9.86 9.94 8.95 9.07 4.22 8.3 9.14 6.94 11.8 4.89 6.51 1.66 7.81 10.3 9.02 7.08 1.95 10.5 7.03 10 11.9 5.96 9.81 11.1 8.76 6.28 1.29 5.55 7.66 8.14 7.61 5 10.9 10.7 5.01 5.28 8.09 5 11.2 9.85 9.69 9.66 7.98 10.3 7.83 3.47 11 0.78 8.13 8.69 10.3 9.24 10.7 8.57 2.31 8.78 7.21 7.99 10.2 11.2 6.32 3.15 9.41 3.27 5.31 6.15 10.7 0 8.66 3.76 7.85 9.17 5.98 4.04 5.99 7.48 10.4 3.84 7.79 13 7.05 10.3 10.5 10.3 9.24 8.23 8.73 10.1 9.68 2.5 2.68 9.09 8.23 7.42 0.44 9.63 10.7 6.43 11.4 8.89 14.7 6.27 10.4 7.3 12.1 9 10.2 1.48 8.64 11.2 7.74 9.14 3.87 9.23 9.04 9.22 8.38 5.83 6.48 6.27 6.83 8.46 3.15 0.44 7.11 4.91 11.7 0 10.4 10.9 7.54 4.84 9.59 6.44 6.86 8.4 7.38 6.16 1.66 11.4 5.26 9.45 8.91 7.65 4.45 11.6 9.97 6.28 3.86 3.09 9.86 0 10.5 8.93 1.29 11 4.69 8.98 9.78 9.71 8.32 10.2 4.91 8.88 5.67 10.2 9.2 3.6 7.17 9.62 2.97 7.38 9.22 10.9 7.04 8.38 8.7 10 5.46 10.1 7.99 10.7 9.06 7.45 6.46 9.53 9.34 8.35 8.11 8.54 9.28 9.46 11.1 8.67 9.32 3.09 8.6 13.3 8.06 5.06 9.99 9.4 13.1 9.6 8.91 8.88 13.6 10.4 2.59 9.31 9.44 6.25 7.07 5.6 4.56 11.3 10.6 6.3 7.78 7.69 12 9.02 1.05 5.46 0.44 5.09 8.33 10.7 11.1 6.82 2.75 1.95 6.52 8.65 6.32 4.63 8.85 8.69 9.95 10.8 10.9 6.41 1.66 7.08 10.4 9.25 11.2 4.3 11.5 9.85 8.57 9.16 3.15 10.2 8.5 9.08 9.81 9.05 6.87 8.96 7.65 11.1 5.92 6.79 11.2 8.02 6.77 10.5 9.3 10.1 11.9 10.6 4.47 10.2 8.46 10.9 6.26 5.47 11 11.9 1.66 10.3 1.29 9.75 7.27 11.1 8.33 6.94 1.29 5.81 6.7 5.68 6.48 10.3 10.5 10.2 12.7 13.2 8.39 10.3 8.8 6.66 9.35 9.43 4.79 6.55 1.82 8.49 8.88 9.09 11.6 8.91 11.1 10 9.4 8.7 11.2 9.56 10 11.7 11 2.41 9.83 2.43 6.35 1.29 1.97 0.78 11.3 8.91 11.8 4.1 9.05 8.97 10 0 3.32 7.03 8.66 8.39 1.66 8.72 9.96 5.94 5.65 12.3 2.83 1.29 11.4 10.8 4.13 6.77 6.03 8.44 9.82 6.28 10.7 10.1 1.29 8.92 12.3 2.75 8.84 10.1 10.6 9.49 9.36 8.43 8.96 7.21 10.9 11 10.4 3.32 12.3 14.2 1.05 11 9.66 9.33 7.98 9.47 12.7 11.8 5.59 6.94 9.61 9.77 1.66 8.23 10.3 1.95 9.83 0 9.3 5.83 9.18 8.35 7.42 7.6 14.7 14.3 9.76 2.83 12.7 7.22 9.31 8.82 11.1 8.98 10 7.05 7.62 11.6 0.44 9.42 8.33 8.42 6.78 9.36 9.8 11.2 9.34 10.1 10.2 9.51 9.17 9.97 2.75 8.17 12.2 4.27 1.66 8.3 8.02 9.8 5.5 7.21 9.14 10.1 11.2 2.97 6.15 8.39 11 6.32 8.35 13.2 11.7 6.24 9.52 5.21 4.89 9.82 11 10.4 10.2 6.67 9.64 11.5 10.9 3.6 7.74 8.62 11.4 7.85 10.6 10.9 10.3 9.13 10.3 12.2 10.6 10.6 7.68 12.3 5.86 8.03 8.29 7.81 4.89 9.34 10.8 11.6 5.85 10.2 6.8 8.74 7.58 9.42 10.2 10.6 9.75 9.02 8.69 10.2 11.3 9.34 9.67 10.4 7.01 8.11 10.9 10.2 11.3 8.32 8.65 7.55 9.97 9.89 9.18 8.61 12.2 7.16 10.6 12.2 2.07 8.23 11.6 7.06 9.88 7.97 15.2 10.9 2.08 11.1 12.1 7.03 1.29 13.3 9.45 10.3 6.71 10.1 8.55 9.15 11.2 6.63 11.4 12.9 9.33 6.36 9.32 10.7 4.88 6.21 10.2 8.94 6.77 10.6 6.94 8.39 10.8 1.95 3.6 8.33 11.2 13.4 11.4 10.9 6.55 11.4 10.8 8.56 9.99 10.3 9.74 10.4 9.5 7.6 7.39 7.84 10.8 10.4 9.44 9.14 10.3 8.48 8.6 12.8 13.9 8.59 7.56 11.6 11.6 10 11.3 7.29 11.6 13.4 11.4 10.7 15.4 10.3 9.1 8.62 8.45 9.16 9.67 11.2 11.7 8.36 9.97 9.94 9.91 10.1 11.2 9.26 9.14 11.8 7.76 10.5 9.05 10.8 10.6 9.33 8.58 7.58 11.3 6.39 5.59 1.29 1.81 10.6 9.38 11.7 7.63 8.61 10.2 2.7 11.5 4.73 9.98 10.5 9.32 9.36 9.85 9.55 7.51 10.1 14.8 4.84 6.96 10.3 10.3 9.1 10.3 12 1.81 9.22 9.74 11.9 10.5 7.97 7.1 11.7 10 10.1 9.79 3.09 12.5 9.59 10.9 4.71 10.4 9.22 10.6 8.86 15.2 9.65 9.3 7.49 8.39 8.61 10.3 9.9 9.06 8.8 11.9 9.91 10.8 10.6 11.2 6.91 3.91 10.8 13.3 10.5 12.2 12 10.4 11.3 10.9 11.5 11.6 4.98 11.2 10 13.1 9.47 11.1 10.5 8.63 0 10.3 9.81 9.38 9.93 10.1 12.1 9.77 10.3 10.2 11.8 8.58 10.4 13.4 12.1 13.7 13.7 10.8 1.48 11.6 11.5 10.4 12.7 7.96 10.1 8.2 10.6 9.81 9.46 8.62 11 9.51 5.04 10.4 9.58 7.59 11.6 11 3.27 9.12 8.61 9.06 0.44 1.29 8.33 5.89 11.1 9.89 3.47 8.23 9.77 10.4 10.8 10.8 10.4 11.1 9.47 8.31 10 10.3 8.66 8.09 8.88 11.6 9.75 11.2 8.14 9.64 10.5 11.2 13.1 8.6 12.9 10.7 9.08 10.1 9.53 8.03 10.7 10.1 9.43 11 11.2 10.4 10.3 8.04 7.64 9.69 10.9 7.79 11 8.78 10.8 8.47 12.6 9.81 9.62 9.27 11.3 9.15 10.3 11.3 9.04 3.03 11.1 10.8 11.4 11.7 8.72 11.1 8.28 8.8 11.5 10 4.24 8.21 9.31 8.22 10 7.17 13.2 10.3 9.71 11.1 12.3 11.4 12.6 9.65 9.21 9.56 9.87 11.4 1.81 10.4 4.16 10.5 7.21 5.42 10.4 10.7 7.44 8.41 11.3 11 8.37 6.86 5.34 9.81 9.82 8.41 12.7 6.88 0.44 10.3 3.15 3.72 5.99 8.6 9.38 10.3 8.2 9.88 11.9 1.81 0.78 11.8 10.3 11.3 10.3 2.48 10.3 9.05 10.9 7.13 9.39 11.9 9.23 8.18 8.38 7.38 12.6 9.85 10.1 5.27 10.3 9.69 4.38 12.6 9.03 7.56
-TCGA-L5-A43J-01 6.86 9.16 7.34 8.4 5.57 9.13 1.9 3.2 2.42 0.06 0.39 8.32 6.63 0.56 4.06 8.25 10.6 10.1 6.79 10.1 8.67 14.5 10 2.14 9.68 8.24 2.92 9.11 4.36 5.28 4.16 6.6 5.66 0.1 5.11 1.05 3.11 4.98 1.24 4.56 3.85 3.07 4.91 0.2 6.48 2.94 -0.05 2.95 10.8 5.75 1.28 3.36 7.74 10.2 6.85 2.24 5.8 5.41 6.41 5.72 7.92 4.24 6.86 2.19 2.2 1.52 4.26 5.27 9.31 4.03 5.8 4.84 3.34 6.83 1.69 3.1 4.43 4.29 4.14 2.41 3.99 3.17 2.96 8.86 3.79 4.2 6.71 -0.56 2.48 3.76 8.42 2.53 8.6 4.24 4.1 3.42 0.96 4.33 4.39 6.07 0.94 5.55 1.14 6.44 0.36 5.01 7.33 8.26 6.25 5.36 1.02 2.86 8.88 2.97 6.89 2.56 2.84 6.12 -0.04 5.19 5.2 6.14 -0.88 3.25 1.21 7.22 4.43 1.17 1.32 11.8 0.98 1.59 3.1 4.93 3.37 0.17 3.18 2.66 4.65 8.2 11.6 10.4 5.11 2.93 2.98 11.8 -0.83 11.4 3.32 3.76 0.72 0.01 5.5 9.81 10.1 1.18 0.35 1.74 9.33 2.1 6 7.65 1.12 2.03 9.14 7.04 4.84 3.21 7.93 4.12 10.6 10 3.06 2.08 4.48 4.62 4.64 0.76 9.04 2.45 4.42 7.72 3.68 3.91 1.4 0.94 3.26 2.48 8.18 2.39 6.57 8.27 4.08 2.86 4.91 6.47 3.05 8.81 9.63 8.46 11.8 8.81 9.67 10.1 7.04 9.54 6.59 9.17 11.2 12 8 11 10.5 10.5 10.3 12 9.52 11.9 8.58 10.9 6.49 9.24 10.9 9.82 9.07 7.7 4.11 11.7 8.68 12.7 11.3 2.11 8.18 12.4 8.55 8.51 9.27 8.22 9.66 4.41 9.77 8.27 11.8 10.9 12 11.5 12.8 13.4 5.22 11.8 9.2 0.79 7.74 8.52 9.48 11.7 10.3 12.8 0.56 13.4 5.17 11.1 9.89 9.25 10.8 12 11.6 9.39 10.9 11.9 10 5.46 8.03 8.49 12.7 6.28 -0.45 12.9 10.7 11.1 12.9 13.2 11 7.79 9.42 9.22 11.4 9.61 11.8 9.57 6.01 3.14 11.9 6.39 10.3 11 7.69 12 7.51 8.97 4.18 11.4 9.73 9 10.5 12.4 1.65 8.52 7.72 8.27 11.8 10.5 5.35 8.81 6.41 10.2 11.2 2.44 9.12 6.84 9.44 10.2 9.86 9.13 10.1 10.4 10.6 9.23 8.69 9.17 10.1 8.79 11.1 8.28 9.73 11.6 8.04 8.93 6.15 9.31 11.6 11.2 8.97 11.4 8.66 13.5 11.7 9.84 11.6 10.7 10.9 4.42 10.7 -0.35 2.01 9.22 8.25 9.82 1.72 5.44 5.64 11.9 11.8 10.6 7.77 5.89 6.72 10.2 7.38 8.51 4.98 11.7 9.63 11.5 9.13 7.52 8.06 10.8 3.59 9.21 9.06 7.95 9.02 8.52 9.94 11.5 5.44 8.68 7.84 10.3 8.22 10.1 10.4 9.09 5.2 10.3 11 6 6.16 8.65 5.6 10.7 10.1 9.5 11.5 10.1 9.98 11.9 10.3 8.76 6.92 8.53 10.7 8.63 9.04 10.5 10.2 9.64 7.83 5.58 9.28 2.21 8.78 12 6.7 11 9.11 10.2 4.04 8.91 12.6 12.8 6.15 9.29 7.47 6.7 8.14 8.36 6.26 9.11 10.6 11.7 10.8 1.14 11.4 10.2 9.19 6.81 0.28 9.02 3 7.08 7.06 10.6 9.26 7.99 8.57 9.95 7.51 6.03 9.05 10.4 11.6 1.49 10.6 8.55 4.93 2.54 2.21 8.65 6.58 2.68 9.61 5.5 9.55 9.58 5.24 9.83 11.4 7.79 13.6 10.5 -0.96 8.93 11.2 3.42 12 7.06 6.58 4.08 6.54 8.55 9.52 6.08 13.2 8.95 6.48 7.67 6.63 16.5 11.5 14.2 8.7 8.42 8.11 10.4 4.9 8.61 9.09 11 -0.68 12 5.73 12.9 9.99 10.1 12.5 9.93 8.4 11 5.86 9.85 10.5 10.4 10.2 9.5 9.38 10.2 10.2 6.07 8.48 9.9 12.6 8.61 9.47 11.1 8.54 10.8 9.89 10.1 9.59 9.6 4.86 12.2 7.8 1.37 10.2 10.8 8.55 9.25 8.66 9.64 10.4 10.7 9.82 10.6 8.09 1.91 10.2 8.63 8.96 10.9 10.1 8.08 9.08 1.22 8.15 6.5 10.3 9.82 8.02 10.7 11 9.24 9.47 11.6 9.81 11.2 12.3 0.6 13.3 9.36 9.85 10.9 11.3 12.5 12.1 11.3 8.1 9.98 10.8 10.3 5.51 4.79 6.52 8.02 9.42 8.72 13.4 10.8 11.9 9.32 11.2 8.1 2.87 6.98 11.4 12.1 7.89 13.1 8.57 10.4 10.9 11.8 11 12.5 12.1 8.23 0.52 10.3 8.88 9.08 9.47 8.41 6.09 3.96 10.9 9.47 11.8 12.8 10.2 10.1 11.5 10.1 10.6 12.3 10.9 9.76 8.94 10.2 8.46 6.94 10.9 8.43 7.2 8.5 10.3 4.2 4.99 11.6 12.1 4.33 8.67 0.77 10.1 6.71 10.3 9.79 12.5 12.6 12.3 12.4 6.83 11.2 7.77 10.2 11.6 9.74 1.11 8.6 7.33 11.2 10.4 7.82 10.8 13.4 3.25 6.14 11.2 9.28 9.14 11.9 5.64 11 12.9 9.45 10.9 9.31 9.71 10.7 7.26 10.9 9.41 9.98 10.4 10.1 12.4 9.66 6.13 9.28 7.68 8.28 12.4 9.69 12.3 13.9 6.42 11.1 13.8 11.2 0.45 9.92 8.69 8.78 3.59 6.47 11.4 7.27 6.89 12.2 10.1 7.2 9.65 11.5 11.2 8.48 7.15 11.7 11.1 7.93 6.39 0.31 3.69 10.8 3.84 7.17 8.06 7.67 10.2 8.32 11.9 5.58 2.59 5.47 9.72 10.5 10.1 3.34 5.09 10.1 6.51 0.46 1.52 11.3 9.46 4.67 7.06 7.71 1.36 9.9 10.2 9.55 4.95 8.19 15.1 8.17 11.2 12.5 11.6 10.1 13.1 9.1 11.8 9.4 8.57 3.18 12.2 7.51 2.37 0.98 2.11 10.4 5.22 11.1 1.56 7.8 9.89 4.58 4.33 12.5 12.1 5.34 4.61 11.2 10.5 2.84 10.7 8.66 11.1 10.4 9.67 10.9 9.79 9.83 10.9 8.34 7.19 11.8 9.34 4.51 9.86 8.28 10.3 7.74 13 7.43 7.95 7.3 6.83 7.41 11.3 6.7 5.01 3.98 12.5 9.61 2.4 10.5 9.02 9.82 11.7 10.3 7.83 2.75 9.44 1.11 6.26 5.95 9.58 6.53 5.79 8.3 8.17 0.44 5.35 -0.02 10.6 9.68 7.35 11.5 9.73 7.27 7.31 10.2 11.1 4.42 5.77 3.07 7.9 8.54 8.05 9.34 8.76 9.61 4.61 2.66 4.28 6.48 8.36 0.38 3.74 9.98 10.2 0.53 3.86 12.1 2.7 10.8 7.1 5.58 3.37 10.7 8.48 10.2 10.9 3.4 9.29 9.72 8.3 11.7 9.68 9.46 9.12 11.4 9.93 5.31 4.14 4.46 12.6 10.6 10.9 -0.16 9.61 10.3 11.6 9.7 12.1 8.14 8.21 11.6 11.6 10.1 0.58 12.2 2.12 11.4 4.97 10.9 10.9 8.17 8.9 9.24 11.4 11.2 11 8.89 9.47 11.3 8.36 10.6 9.85 10.6 9.49 12.2 13.3 11.8 12.9 11.1 11.4 9.57 12.1 8.89 6.75 7.42 10.3 12.2 13.5 13.2 11.1 7.04 9.93 7.55 11 10.6 9.86 10.4 11.4 6.75 11.7 11 11.2 11.4 5.37 4.45 13.7 6.29 10.4 5.75 10.4 9.21 3.33 10.1 6.23 8.88 3.28 3.27 9.1 9.36 1.79 12.4 9.1 10.8 8.87 9.45 7.77 8.63 7.1 9.9 6.4 3.26 5.91 1.89 3.11 8.61 11.9 9.17 14.1 8.38 8.99 9.71 6.72 8.77 8.38 10.9 1.5 8.16 11.2 9.41 12.7 10.8 10.3 8.89 12.3 11.3 11.7 9.92 7.89 1.68 10.1 10.7 7.82 11.3 6.45 6.97 12.4 8.35 8.22 11.1 9.07 4.95 10.8 10.5 12.6 7.83 7.21 9.91 10.5 7.16 4.84 7.33 4.66 7.76 8.8 11.8 9.27 11.1 8.58 7.78 9.92 8.36 3.86 9.24 9.47 9.46 9.7 6.48 9.91 9.01 8.2 10.9 8.22 7.59 8.43 2.51 9.53 8.93 7.87 -0.07 9.65 1.85 7.93 7.13 10.3 1.3 10.5 10.6 2.07 11.8 8.32 9.47 3.26 8.54 7.41 5.52 0.28 8.69 8.53 7.91 3.7 7.98 4.29 8.98 7.53 8.16 6.96 3.74 9.21 10.5 4.45 10.5 8.7 8.26 12.8 11.1 10.6 6.45 3.84 11.8 7.24 6 12.2 11.9 7.82 10 0.92 10.8 7.51 11.1 4.22 5.47 8.83 11.4 10.4 -0.18 8.96 11.4 8.56 9.15 8.66 10.3 12.8 8.5 8.64 8.99 8.08 6.01 9.68 9.23 10.3 12.2 10.3 9.29 9.25 8.65 3.56 10.3 8.59 11.2 4.74 13.6 8.4 9.49 9.34 7.64 8.53 11.3 7.34 9.14 10 10.7 7.51 6.53 8.31 11.9 6.65 7.2 9.02 10.2 6.9 8.47 10.6 5.23 7.74 5.57 8.27 9.09 9.57 1.27 1.79 10.8 11.7 9.5 8.73 9.63 9.16 8.26 11.6 5.16 11.8 5.43 8.03 5.06 8.16 9 9.87 9.76 8.72 2.2 1.63 4.44 7.03 11.6 7.71 9.71 8.22 4.39 9.61 7.04 8.94 6.8 4.92 -0.27 8.28 3.78 11.2 7.93 8.5 6.38 8.1 8.53 7.56 9.56 10.6 9.78 9.34 7.42 10.5 9.48 8.05 10.6 8.84 7.4 9.24 7.44 9.85 10.6 7.16 13.3 11.4 7.03 9.86 8.39 8.42 10.5 5.45 -0.43 8.19 9.29 1.92 7.63 10.7 10.2 10.2 4.42 9.68 9.57 11.3 10.7 7.4 8.27 6.24 8.41 12.5 9.33 1.22 11.7 10 10.8 7.45 12.5 11.1 12 11.1 6.51 8.61 8.59 3.84 11.2 10.9 7.45 9.21 9.57 10.5 6.93 10.7 2.88 12.2 5.57 6.65 4.44 6.6 5.25 7.4 5.31 5.21 6.22 5.88 11 8.42 6.97 8.13 10.2 1.79 8.35 2.58 8.28 6.44 1.89 4.19 9.75 6.54 1.26 1.7 6.46 8.27 4.52 5.07 7.95 3.64 4.91 1.01 2.48 6.37 4.22 6.78 7.07 9.72 7.72 6.98 0.08 7.65 5.37 4.37 10.2 7.54 7.99 9.23 8.58 0.94 11.8 7.8 3.57 8.87 2.92 5.54 7.65 4.27 7.69 2.53 7.41 6.35 1.57 8.08 10.9 1.54 8.64 8.78 4.54 4.45 11 8.13 6.05 8.13 11.4 11 9.75 9.17 8.19 2.91 8.82 -1.6 11 3.19 11.3 13.7 7.91 8.11 7.08 10.5 9.21 7.88 3.84 6.66 9.6 9.56 8.65 0.32 8.95 10.3 8.13 3.71 2.01 7.83 4.7 10.9 7.71 10.7 5.77 2.96 4.27 8.1 6.56 10.7 11.3 5.38 1.68 2.29 9.88 10.2 7.69 4.07 6.28 8.29 10.4 9.3 6.8 9.63 7.82 6.45 7.09 0.1 2.82 4.11 5.98 5.53 8.97 8.82 4.15 9.4 5.11 0.95 3.61 10.2 8.87 0.3 11 9.72 0.31 7.03 7.67 3.02 0.62 7.57 6.59 11.1 8.44 7.35 10.7 7.12 9.38 6.82 9.61 7.26 10.5 11.8 8.81 8.95 4.54 7.32 7.7 9.7 7.72 7.54 9.31 0.72 10.5 5.07 4.02 -0.14 9.14 4.94 9.79 2.81 4.6 3.28 5.43 3.32 12 -0.44 -0.11 9.32 11.5 5.91 8.51 7.09 -0.2 5.96 8.93 5.66 9.94 8.53 1.19 8.23 10.1 4.53 4.09 8.86 11.5 11.4 5.13 8.34 10.4 8.11 1.4 7.16 3.66 4.12 2.13 9.11 10.3 1.84 10.3 4.58 4.58 6.01 13.4 9.61 10.8 0.32 5.54 4.2 9.44 9.76 7.11 8.15 12.6 1.29 7.8 9.21 8.68 7.53 8.51 6.17 9.19 1.77 7.79 -0.99 8.21 0.64 8.31 9.22 6.84 3.29 8.64 10 5.08 0.59 7.69 7.3 8.19 8.67 8.13 8.83 7.66 5.99 10.1 3.56 7.7 8.17 10.9 12.3 6.13 1.15 2.6 8.29 6.5 0.04 11 11.3 8.57 7.41 8.53 3.12 5.99 9.66 9.95 12.1 10.4 9.55 8.48 5.12 8.46 7.34 9.2 2.94 4.17 6.07 8.06 7.95 11.4 2.48 5.54 9.43 2.63 0.5 7.13 11.6 10.7 12.2 9.77 5.59 6.31 13.7 0.22 10.5 10 2.87 2.17 10.6 10.7 8.9 7.36 10.2 3.9 0.02 1.42 2.99 1.78 7.13 5.74 8.58 6.57 10.7 7.3 5.29 7.18 9.22 8.08 4.98 12.7 10.4 10.1 3.82 9.04 7.88 4.67 7.65 5.94 9.79 11.6 1.62 8.63 2.96 9.93 1.28 7.83 5.1 7.24 7.65 3.2 8.1 5.9 5.49 4.28 3.89 9.73 3.98 3.14 8.69 4.99 3.32 9.26 9.35 0.59 7.23 5.47 10.8 1.3 6.87 6.54 7.81 3.67 4.37 9.84 7.73 4.95 0.17 9.17 8.9 6.01 4.87 8.29 8.39 8.94 10.2 8.81 4.1 9.32 7.7 7.2 10.7 9.87 2.97 3.05 8.98 8.86 10.2 4.94 1.1 6.09 9.84 9.54 5.08 0.98 0.03 5.41 -0.12 8.38 9.69 7.94 10.1 4.71 7.04 6.67 4.01 9.63 10.9 1.17 8.54 8.37 4.3 3.12 13.6 7.96 6.88 3.07 9.26 1.76 8.96 8.68 0.99 7.05 4.33 6.35 10.6 2.84 9.15 8.22 3.09 5.1 6.53 6.6 2.88 9.64 5.27 6.09 6.71 4.45 8.03 0.66 -0.03 8.36 2.98 0 3.81 3.65 8.11 7.53 6.94 5.85 8.11 0.11 11.1 10.1 5.31 10.1 10.3 5.99 5.76 5.26 7.93 5.39 4.17 4.64 7.78 12.8 5.98 5.19 11.1 4.99 4.18 1.54 5.48 7.75 10.5 8.4 7.45 7.34 2.43 1.4 5.56 0.58 4.97 1.45 11.6 -0.02 6.36 0.39 3.7 5.97 7.06 11.7 9.01 1.17 3.5 10.8 9.25 5.4 6.88 6.94 1.94 9.31 11 1.47 5.98 -0.3 8.57 16.6 6.05 7.32 3.32 15.7 9.46 2.88 0.53 0.72 9.5 3.16 10.3 8.91 7.91 9.68 16.1 2.77 9.18 13.2 2.47 3.69 0.81 9.48 10.4 9.39 8.06 0.53 8.95 4.74 6.93 7.06 13.2 4.06 7.09 5.87 1.54 1.36 6.98 3.54 1.96 9.25 12.2 6.32 12 0.47 2.59 11.5 9.51 13.5 8.64 8.65 12.8 4.19 7.05 13.1 7.95 13.1 9.32 7.75 14.1 7.96 15 8.5 8.41 8.6 4.74 8.43 8.9 7.12 7.14 11.8 9.08 9.49 5.74 4.92 6.25 0.09 7.42 7.07 5.91 6.67 0.78 7.77 6.05 11.7 10.6 4.74 3.64 2 10.4 12.4 10.1 5.54 6.94 7.28 7.03 10.6 8.01 1.37 8 7.37 7.61 6.58 10.1 5.63 8.37 11.8 2.03 2.06 15.9 1.18 10 7.02 8.53 6.89 7.9 3.06 0.78 -0.17 1.08 7.88 1.34 5.65 8.59 1.57 9.98 12.2 8.58 3.94 7.43 12.1 -0.57 10.2 10.8 8.41 12.3 9.23 7.69 0.24 10.1 8.32 0.82 8.83 3.26 2.15 7.38 10.1 6.29 7.98 4.93 7.98 -0.15 0.12 7.13 11.1 6.99 7.1 0.8 3.83 2.55 7.15 7.87 6.73 12.5 8.68 8.94 10.7 8.4 10.3 5.3 8.18 2.89 11.5 8.15 2.94 7.89 6.49 7.37 10.9 5.68 6.51 11 9.43 10.5 9.34 2.01 2.82 9.8 3.36 9.85 5.62 8.33 12.1 11.4 9.5 9.4 4.94 8.43 7.6 7.98 10.4 2.23 8.64 11.9 8.64 1.54 6.71 10.4 4.98 8.55 10.6 5.55 10.4 8.37 4.25 10.5 11.1 10.4 8.8 3.07 5.16 8.34 13.3 5.13 9.53 5.81 9.59 1.18 10.3 11.9 -0.11 7.36 2.28 9.8 7.3 0.73 11.9 1.54 2.86 11.2 0.43 3.82 9.59 2.54 9.59 8.92 8.53 3.83 6.86 5.99 9.67 6.52 7.59 8.53 10.8 8.59 7.47 8.7 7.67 9.12 4.17 3.03 5.7 9.62 0.4 3.26 9.7 5.75 0.01 10.2 0.72 3.52 6.41 3.5 7.16 6.59 7.14 -0.51 7.36 6.72 7.3 4.44 5.46 10.4 9.88 7.83 6.06 11.2 7.75 1.45 10.5 10.2 7.51 2.09 9.57 7.66 1.4 7.62 4.11 7.97 7.24 12.7 12.1 5.51 4.97 3.3 10.4 8.63 8.92 11.6 11.1 6.31 7.29 2.77 9.37 8.96 8.26 4.82 9.26 9.43 1.84 6.06 7.7 12.1 1.55 5.32 9.3 10.4 7.2 0.46 6.79 5.76 6.88 0.65 9.45 1.11 3.03 3.95 8.49 6 4.93 3.53 7.23 8.91 4.19 3.1 10.2 4.39 9.74 7.64 1.37 10.5 8.47 4.49 10.1 9.79 2.78 6.09 8.65 4.85 4.84 2.41 11 2.58 10.6 0.97 10.9 1.16 7.15 7.82 1.51 2.22 12.1 9.44 5.21 1.37 3.95 3.75 2.75 4.04 1.28 8.21 10.4 0.84 9.56 11.1 9.23 12.3 8.78 10.2 10.8 7.61 2.6 11.5 12.6 8.41 8.42 8.5 9.25 2.52 3.64 9.27 11.3 2.92 5.98 6.61 5.55 9.43 10.2 6.92 6.33 -0.18 3.78 9.71 5.88 8.36 9.53 5.78 7.05 7.04 1.73 6.09 5.22 8.25 0.73 4.96 11.6 6.79 10.1 8.94 9.44 2.81 0.65 8.93 1.4 9.87 9.21 6.86 3.76 6.58 4.55 8.53 3.97 7.63 7.95 11.5 8.83 7.89 12.9 2.32 4.35 8.16 11.9 0.35 7.73 11.5 6.37 4.8 7.61 6.64 10.3 2.97 7.89 7.74 10.7 9.98 10.5 6.81 3.44 4.26 2.88 1.27 6.31 7.46 0.34 10.4 3.41 1.84 10.5 9.24 9.04 8.41 0.24 0.74 10.3 12.5 6.5 1.31 10.2 1.71 5.93 0.48 8.04 -0.13 10.8 2.57 4.74 5.76 2.97 11.7 7.49 6.27 3.11 0.96 1.2 9.62 5.17 10.8 8.42 5.85 1.82 5.12 0.08 8.81 10.1 1.9 1.06 6.93 6.47 0.72 4.99 0 6.09 -0.06 7.45 0.28 8.74 8.74 6.52 8.75 4.37 8.3 9.22 4.69 13.1 3.83 7.42 6.62 9.97 10.1 8.71 9.6 6.92 0.12 6.89 3.8 4.8 7.62 11.4 4.69 10.7 7.11 4.93 7.78 2.51 6.29 2.43 7.12 6.54 6.88 2.62 9.39 7.05 7.26 0.15 6.47 8.94 6.84 6.05 5.81 5.57 5.91 0.37 8.87 6.24 8.71 5.49 3.37 7.26 3.24 3.87 5.87 5.31 6.92 9.29 2.61 5.38 6.43 5.4 9 4.81 2.15 6.43 7.64 5.99 7.41 8.91 5.71 5.7 5.32 4.87 1.98 4.97 5.77 1.2 8.19 3.31 7.71 2.66 8.47 9.35 6.7 4.32 8.64 5.19 -1.71 11.5 3.13 0.51 6.19 10.4 10.8 5.69 1.18 10.1 5.09 4.6 8.71 2.49 10.8 10.2 -0.66 9.71 6.08 4.04 2.86 7.18 -0.26 2.63 3.69 7.45 9.08 6.67 4.31 0.46 4.71 6.07 3.39 2.82 13.3 11.6 2.63 8.54 3.49 5.72 13 10.3 10.4 -0.54 4.31 13.4 0.2 4.63 12.7 0.53 -0.26 1.78 2.78 3.59 1.18 9.06 2.8 1.08 7.26 9.64 7.4 5.23 9.88 1.59 2.95 2.11 6.95 6.3 8.13 6.99 2.11 10.8 9.1 9.92 2.69 5.19 3.78 9.71 7.73 11.8 4.73 8.52 5.29 4.47 5.63 8.43 5.81 14.8 10 13.7 7.61 2.56 5.68 7.32 12 8.81 6.57 2.89 2.56 0.22 10.3 7.44 9.42 10.9 7.36 4.51 8.47 1.24 5.63 4.47 9.67 3.54 8.59 8.29 5.97 10.6 -0.32 5.18 2.26 10.7 7.32 3.35 7.28 0.42 6.26 7.81 10.2 11.5 6.59 0.76 5.66 0.43 5.8 0.9 11.2 1.64 7.98 8.51 7.6 8.82 6.86 9.75 8.13 9.92 7.98 0.6 1.76 3.76 6.41 0.65 11.6 9.09 6.03 7.29 11.8 3.08 8.01 7.19 10.7 5.14 3.09 5.48 2 7.66 10.2 10.1 8.82 6.49 7.98 2.36 7.1 1.47 7.6 2.41 1.2 9.06 7.65 1.67 3.96 7.04 7.72 3.64 5.66 11.7 7.66 8.57 8.85 10.2 7.02 7.55 11.2 8.2 9.16 10.8 11.1 8.27 4.13 9 7.75 0.78 1.14 3.81 11.7 7.57 6.9 7.01 8.99 0.65 11.6 7.8 10.4 9.09 7.62 0.74 7.05 7.61 1.56 8.28 1.27 2.43 7.38 10 3.19 9.99 9.03 6.79 -0.14 6.27 5.38 -0.5 9.97 11.2 -0.23 4.06 7.66 0.41 10.2 5.47 6.97 8.84 7.72 0.54 2.96 1.66 8.06 4.96 6.86 10.8 1.2 1.08 11.9 3.71 2.47 9.5 5.23 0.45 9.46 3.88 8.34 10.6 10.4 8.85 6.63 3.9 1.23 9.56 7.73 11.4 8.05 8.36 3.34 2.55 12.6 2.34 5.09 2.49 6.44 11.1 0.14 10.5 3.61 0.92 1.85 5.34 3.54 6.45 5.42 5.34 -0.35 8.36 4.8 7.09 0.1 8.96 0.72 9.8 2.92 4.04 4.13 6.49 5.09 8.38 5.55 8.72 2.79 6.62 10.7 -0.08 7.36 3.48 4.19 0.02 4.54 0.39 2.5 4.88 1.34 4.89 10.7 7.76 9.81 5.19 9.06 0.44 2.55 5.35 7.77 6.89 11.8 1.82 0.04 11.4 10.8 -0.01 9.01 3.28 4 2 0.56 10.8 9.05 3.19 2.4 9.84 10.4 -0.03 7.66 11.2 7.44 10.6 5.41 11.7 6.73 7.55 6.09 9.08 9.4 9.86 11.2 3.36 6.6 5.44 7.45 7.69 2.36 3.83 9.48 9.23 3.98 8.95 7.92 2.06 11.8 3.24 5.05 9.8 1.59 2.98 10.6 3.55 3.43 7.28 2.14 7 11.3 11.9 0.91 10.6 8.45 0.94 9.26 7.68 10.6 7.31 1.83 2.87 3.01 0.2 0.45 11.3 5.98 8.49 11 6.11 10.1 6.68 4.58 7.57 8.45 5.26 7.14 4.23 7.04 5.71 0.47 13.2 6.59 8.04 7.35 6.43 6.25 5.78 5.67 4.97 3.7 5.96 6.54 3.92 3.89 0.07 9.3 1.55 6.65 3.2 9.11 9.7 8.76 11 7.24 10 9.42 7.81 0.75 8.95 7.27 1.56 7 8.47 9.36 8.91 12.8 11.4 0.27 8.72 -0.17 12.5 7.89 9.07 2.42 1.86 0.86 9.28 1.65 10.8 1.6 3.44 2.66 1.44 10.7 4.17 8.64 12.4 11.7 6.98 2.85 3.1 1.85 10.5 7.59 11.8 9.31 12.5 12.9 2.53 8.12 12.1 3.08 9.71 9.31 6.6 10.5 2.74 9.13 12.1 12.2 1.5 9.53 10.2 8.35 1.17 8.28 5.66 12.2 9.51 4.57 11.2 5.66 6.91 5.67 7.19 9.91 9.65 0.16 9.38 7.2 10.1 3.8 11.5 1.15 5.2 5.84 3.02 8.78 1.5 8.03 6.54 7.54 3.43 8.09 4.15 8.85 7.25 0.01 3.44 6.82 6.09 -0.2 5.55 11 8.46 6.61 10.1 4.63 2.46 -0.27 11.8 9.83 7.16 7.74 6.49 7.75 2.72 1.57 -0.69 2.43 8.75 1.05 1.32 8.91 8.12 2.67 10.6 4.81 0.36 10.1 5.43 8.42 5.63 4.85 2.34 10.9 8.16 7.26 8.98 0.83 9.98 3.59 11.2 11.1 1.95 7.91 -0.32 6.69 11.2 6.79 11.6 0.94 9.12 8.69 9.57 10.4 12.4 6.56 8.45 7.82 9.6 12 12.2 12.9 8.9 5.52 1.57 9.28 11.6 10.7 12 11.2 2.82 9.48 6.17 11.4 6.17 3.55 4.46 5.76 8.45 7.86 3.36 8.96 3.95 8.99 8.96 7.59 1.05 -0.28 3.56 0.71 4.96 9.35 -0.3 2.16 10.6 15.1 9.86 6.7 11 12.9 11.6 11.6 6.35 9.15 7.52 10.9 7.67 2.88 6.99 6.68 8.77 8.69 1.81 8.95 8.23 7.55 11.1 11.1 13.9 -0.19 10.8 2.65 2.61 9.29 14.7 7.63 3.71 11.5 12.2 8.7 14.1 4.94 13.4 14.5 10.1 7.97 10 7.17 6.42 9.26 5.44 12.3 4.7 10.4 7.21 9.14 11.1 10.5 1.93 4.92 8.88 9.52 10.1 10.6 11.8 9.94 9.52 7.85 7.62 5.83 8.24 11 7.18 8.26 8.69 6.63 6.84 11.8 -0.03 12.1 9.14 11.1 9.14 11.6 3.74 9.03 7.46 9.35 9.26 6.61 9.56 12.3 6.91 9.16 11.6 16.6 2.52 9.16 8.8 9.56 7.51 8.31 7.35 11.7 13.9 14.1 15.1 9.45 11.1 7.05 7.32 8.11 11.7 8.53 8.49 2.42 6.38 9.97 8.99 7.82 9.09 13.7 8.79 8.81 7.41 7.56 12.4 4.91 1.09 5.22 8.91 0.28 9.56 6.27 5.93 8.01 2.68 7.05 10.3 8.46 4.42 10.8 10.3 7.35 11.2 3.86 6.17 12 9.46 0.1 9.62 7.65 6.08 6.7 11.5 2.07 6.54 10.3 3.37 2.03 5.35 1.77 9.71 1.56 2.31 6.64 7.84 8.2 13.9 6.33 8.69 9.19 3.09 6.35 9.18 13.6 5.85 12.9 8.35 9.43 11 13.8 15 13 13.1 0.63 7.82 -0.24 9.18 6.3 5.09 10.9 -0.3 3.01 3.23 8.01 0 11.1 5.38 0.42 2.43 4.75 5.12 4.94 6.35 1.01 9.21 2.46 6.27 7.37 9.86 8.27 -0.1 8.3 11.9 10.7 10.4 0.19 1.81 8.77 8.73 4.38 9.54 10 1.63 3.82 6.89 4.41 10 9.38 3.55 8.64 7.29 1.08 7.37 5.87 8.29 1.15 10.2 1.16 6.74 0.48 10.2 7.86 3.94 6.78 10.1 7.32 9.56 6.73 10.5 6.53 7.77 7.75 6.16 5.68 9.06 6.53 8.01 12.2 4.62 10 9.68 6.83 10.2 10.7 7.09 8.81 5.3 9.23 7.54 8.69 3.95 11.3 4.45 4.82 8.96 7.92 7.69 5.96 8.52 7.99 4.5 10.6 1.2 9.63 1.84 10.3 4 4.82 6.47 9.7 11 0.76 1.38 8.51 9.33 3.94 7.63 12.4 7.63 0.84 1.66 9.29 1.64 8.35 8.19 8.81 6.38 12.8 8.63 5.58 5.28 7.68 7.54 5.2 10.5 6.31 1.66 15.8 4.61 6.76 3 0.36 0.4 11.3 4.94 5.87 7.85 11.3 8.65 9.04 9.69 8.01 8.93 13.2 8.28 3.2 2.65 4.43 8.79 8.9 5.87 6.83 9.6 7.84 8.81 11.7 5.92 13 9.68 9.28 8.48 7.42 11 10.6 9.94 3.28 5.86 10.9 14.2 9.05 6.91 9.91 10.5 3.78 8.68 0.17 10.8 9.94 8.69 10.8 12.6 6.39 10.8 7.52 7.56 8.97 8.76 9.28 7.91 10.4 2.93 6.84 9.56 11.5 10.8 11.1 9.52 3.03 8.6 10.8 3.63 0.5 10 7.05 7.48 5.77 12.6 1.65 7.65 10.7 7.52 10.2 8.7 6.54 8.11 10.9 9.13 7.3 10.1 10.4 4.39 8.63 9.55 5.11 9.83 1.08 11.9 10.4 9.38 8.81 7.19 12.3 13.4 9.54 0.92 7.65 10.7 10.7 0.46 9.62 10.2 9.7 6.79 7.21 10.6 0.78 12.2 12.7 10.9 1.15 8.72 11.4 1.08 9.81 13.6 7.14 9.37 8.62 0.19 11.6 6.67 10.5 7.79 11.9 3.47 0.07 6.97 1.97 5.9 8.15 9.33 7.83 3.73 -0.25 9.31 4.22 11.7 9.68 8.37 8.97 8.51 6.5 8.87 12.2 11.6 9.08 11.1 10.9 5.54 6.94 9.06 9.99 12 7.85 6.19 10.3 8.91 1.75 3.2 13.2 8.69 14.1 2.49 2.89 7.8 12.4 5.86 8.68 1.28 11.2 12.9 4.06 8.41 8.23 7.14 10.5 7.52 7.48 6.5 7.76 9.12 7.51 9.6 7.84 10 8.74 1.19 7.49 9.96 9.04 11 11.9 1.64 8.9 1.53 8.13 8.04 7.41 10.9 3.33 4.5 7.6 3.09 4.85 15.3 0.31 9.26 5.01 8.14 3.22 2.21 0.01 3.08 7.87 4.34 2.78 2.86 8.35 7.73 0.38 -0.24 5.43 6.45 4.97 4.5 4.55 7.37 4.39 12.4 5.48 7.58 5.35 3.47 9.65 10.9 0.75 6.86 6.87 7.67 2.5 12.1 8.68 5.33 7.82 9.37 7.32 11.2 4.85 10 3.99 9.51 7.25 7.71 7.7 7.27 9.27 10.1 2.1 0.04 1.11 2.66 3.82 8.07 4.47 3.24 6.75 1.15 10.1 1.1 7.04 9.57 2.19 6.97 4.99 6.89 2.88 8.98 1 3.9 8.33 8.58 4.96 8.34 7.86 6.84 8.54 7.02 10 2.2 7.73 1.54 7.58 3.42 10.3 8.3 12.5 8.55 8.68 4.01 7.72 9.82 9.39 9.16 5.6 6.14 9.27 11.1 9.19 8.05 5.64 1.96 8.39 8.37 5.42 6.26 10.2 10.5 5.57 0.44 2.64 8.51 0.39 4.88 9.41 0.72 5.28 1.42 1.62 2.19 1.51 6.66 4.68 5.88 10 7.98 8.97 9.1 9.03 8.91 9.46 10.7 11.6 6.71 6.82 7.78 7.51 2.43 4.2 6.41 0.48 10.1 6.54 5.64 5.3 15.2 8.64 12.8 -0.53 9.67 4.74 6.7 10.1 2.48 12.6 11.3 9.51 11.3 9.53 8.42 5.96 12.5 10.5 8.24 8.11 12.1 3.52 10.1 7.38 8.7 8.55 11.7 2.47 12.1 10.5 11.3 9.17 9.16 10.4 12.2 9.74 5.4 7.8 9.43 6.74 8.9 9.63 10.2 11.4 8.84 2.63 -0.11 8.27 8.53 8.37 11.4 6.37 9.31 6.56 9.14 1.69 11 8.93 9.62 9.65 10.4 10.9 10.9 9.75 0.44 10.1 7.72 11.5 10.1 2.68 11.1 9.22 6.88 6.03 9.36 10.3 10.2 9.79 11.8 9.74 8.57 8.75 13.5 7.74 10.8 10.3 8.14 9.34 13 9.52 8.15 9.15 10.8 0.46 9.16 11.3 6.36 0.88 7.69 5.82 8.6 10.7 11.7 10.7 10.1 9.74 9.25 8.72 9.95 11.6 3.47 4.78 12.3 1.31 10.4 12.2 9.97 6.66 7.57 9.54 10.8 7.58 9.42 9.07 11.2 10.6 7 7.89 8.38 11.2 10 11.3 9.47 7.16 14.3 9.94 10.2 0 8.87 9.41 7.54 7.05 3.62 11.7 8.33 4.54 10.9 4.36 0.74 10.4 9.99 8.93 4.93 11.1 11.8 -0.33 7.31 -0.27 11.2 12.5 10.2 9.12 8.03 4.53 4.57 7.74 10.4 11 9.34 10.5 10 1.73 9.9 -0.41 10.5 11.7 11.1 10 10.9 9.55 13.3 1.47 12.9 13.3 8.83 7.21 2.45 4.15 10.9 9.59 10.1 8.79 10.3 8.74 11.9 7.98 10 8.04 10.3 10.6 9.91 10.6 10.4 7.31 10.5 9.68 12.7 10.6 8.75 12.1 10.2 10.8 5.84 9.12 3.64 9.87 11.1 10.5 10.5 11.1 10.7 7.04 9.36 9.17 10.9 6.44 9.18 10.8 10.5 11.2 10 10.3 8.9 9.41 10.5 11.3 7.82 10.8 11.5 11.5 5.49 11.3 7.68 10.3 9.05 11.1 8.32 8.46 8.48 9.61 11.7 10.6 7.02 10.5 7.52 9.78 10.1 4.72 10.6 10.7 8.25 8.36 9.63 8.59 10.9 7.53 6.07 2.36 9.91 10.1 10 3.34 10.6 6.88 10.2 10.7 7.18 9.42 10.1 7.29 10.5 7.7 10.2 12.8 10.8 10.1 10.3 8.98 10.4 0.42 9.3 5.03 1.18 9.46 8.77 7.68 8.39 9.39 8.63 9.99 16.2 11.2 10.4 10.2 9.29 11.2 11.7 9.97 11.6 11.1 9.54 14.1 11.3 8.81 9.05 9.4 10.3 9.3 10.6 9.73 8.06 7.26 9.91 8.81 9.7 10.5 9.94 11.9 10.8 11.1 11.8 12 12.4 9.81 13.5 6.59 10.3 12.9 10.6 12.4 10.7 11.5 7.98 9.73 12.8 3.37 10.3 7.61 1.5 10 8.71 9.34 9.67 11.9 11 12.8 10.3 0.9 11.1 9.77 1.64 8.78 8.62 9.85 12.9 8.88 6.58 7.1 5.74 10.5 11 7.94 10.2 10.3 9.11 9.86 5.86 8.7 7.52 8.71 11 4.97 10.4 12.7 6.53 10.3 9.6 10 9.42 4.52 7.42 11 8.27 8.36 10.6 10.8 9.47 3.63 8.74 9.27 7.11 12 10.5 8.04 10.8 10.4 5.41 8.24 11 9.69 9.37 8.68 8.42 11.3 10.9 3.58 4.13 8.52 5.59 6.32 9.29 9.13 8.66 5.33 10 10.3 9.92 9.56 11.5 4.38 10.5 11.2 5.41 9.8 9.66 0.28 9.79 9.71 6.18 10.6 9.32 9.99 9.17 11.4 7.43 8.8 6.84 11.4 10.3 11.2 9.3 8.06 11.1 10.4 12.6 10.8 7.51 8.93 11.7 10.1 9.15 8.99 9.77 10.6 10.7 1.41 8.01 12.1 8.6 11.1 12 1.71 16.5 11.8 11.2 12.5 12.3 6.98 9.59 8.78 11.3 2.52 10.8 7.73 10.1 10.8 12.4 7.4 12.7 10.4 12.2 12.1 9.29 8.03 10 7.59 12.1 10.1 11 8.66 9.25 10.8 11.3 10.2 9.18 11.7 10.2 9.65 11.9 11.7 8.62 9.61 9.36 8.1 11.2 10.1 8.06 8.43 8.76 11.7 12.8 6.71 1.77 7.98 9.03 7.83 10.7 6.03 -0.38 3.65 7.14 0.32 9.31 11.6 7.56 10.8 8.9 5.18 11.8 9.53 -0.26 9.04 8.43 10.6 11.6 9.78 8.81 11.8 12.3 13.2 10.1 8.54 7.46 3.74 3.75 8.98 8.21 11.5 9.22 9.73 9.59 10.8 11.2 13.4 8.97 5.75 4.51 11.4 11.4 9.66 1.62 10.7 11 7.89 8.83 3.57 8.27 5.71 0.53 3.36 13.2 7 8.14 10.4 7.85 11.3 8.27 9.36 7.01 10.9 9.5 11.8 9.81 12.4 10.7 10.1 11.3 10.3 10.4 0.54 2.65 13.7 9.72 11.1 13.6 9.92 11.5 9.22 7.04 10.3 10.6 9.34 0.27 5.97 10.8 7.99 0.47 4.96 10.7 8.65 11.6 -0.56 8.72 0.29 1.01 9.46 10.4 12.6 9.02 6.18 5.63 5.5 11 9.35 7.9 9.91 9.32 10 10.2 2.44 2.35 9.26 9.83 7.52 11.4 1.05 6.63 9.13 3.5 10.5 10.3 8.26 1.42 11.1 10.3 9.54 9.91 11 7.21 6.2 10 10.2 8.26 8.6 10 9.26 10.1 9.36 5.47 12.3 5.42 10.4 11.6 9.01 9.63 10.4 0.15 11.2 10.5 9.75 11.3 3.63 0.4 1.72 3.03 10.5 7.87 9.62 11.2 6.68 8.94 9.63 10.4 7.06 11.3 10.1 9.97 9.79 8.22 9.29 13.3 13.5 8.56 9.43 9.34 8.24 9.6 9.39 11.7 8.94 11.4 10 7.99 5.59 7.06 11 8.25 11.3 11 3.16 8.65 9.58 11.6 9.59 7.26 10 8.99 1.75 9.61 10.2 3.38 11.1 10.2 8.45 10.7 9.92 11.5 10.6 -0.26 6.79 7.3 6.94 7.46 9.91 8.33 8.42 9.48 6.91 7.28 9.96 10.7 6.31 7.51 11.8 8.93 4.98 6.13 6.57 4.94 7.7 2.46 6.19 0.8 9.3 0.71 2.58 4.08 3.43 8.64 5.1 5.56 7.31 3.11 3.42 1.18 6.48 10.8 9.16 4.46 5.33 6.99 4.87 14.1 8.34 11.3 4.14 13.7 8.46 10.9 12 7.5 5.43 6.49 6.84 0.2 3.41 10.6 3.77 2.1 8.33 6.48 7.06 8.63 0.22 2.62 6.99 11.4 10.3 2.65 5.25 4.6 12 9.56 9.09 6.94 11 6.31 8.25 9.84 6.62 4.04 9.49 9.13 1.5 10.5 8.07 8.4 11.7 9.89 8.6 1.15 11.4 11.6 9.57 6.94 5.91 3.74 4.19 10.2 0.66 8.53 12.3 0.59 0.02 9.26 2.74 0.81 8.26 9.68 6.21 6.58 5.32 2.68 3.15 8.21 6.46 9.12 9.16 9.98 7.47 8.07 13.2 0.77 2.81 10.9 4.77 8.45 7.43 9.45 8.29 6.67 3.04 5.14 6.38 1.48 4.99 9.07 7.98 -0.05 5.37 5.67 9.33 -0.2 9.17 3.87 8.83 5.83 0.14 10.2 0.66 6.67 4.68 6.28 7.11 5.89 6.63 3.43 7.52 7.21 8.47 10.2 7.19 1.99 2.77 5.1 5.87 9.4 4.69 7.2 2.06 4.09 1.26 9.69 9.9 2.94 9.42 3.93 8.01 0.65 8.51 6.86 1.29 9.5 4.17 1.8 3.8 2.3 6.46 0.01 7.53 5.58 1.25 6.08 2.29 0.99 5.82 6.75 2.62 7.56 6.82 8.66 0.94 3.61 5.78 0.56 8.72 4.13 -0.58 0.31 0.85 9.69 8.95 2.52 6.47 8.26 6.2 9.81 7.32 9.07 0.25 8.19 11.8 9.22 6.75 10.1 4.89 2.4 8.52 2.84 8.53 11.1 11.5 0.87 8.8 4.77 10.2 6.19 11.1 11.8 7.61 4.9 9.66 0.1 10 4.44 8.03 5.81 10.2 0.96 10.2 11.4 9.75 5.47 6.61 8.45 10.8 8.67 8.15 1.05 12 9.86 7.06 10.4 11.1 7.75 7.54 12.1 8.46 6.24 12.4 4.78 10.2 7.04 10.6 9.5 8.55 9.89 9.93 8.55 10.1 7.05 8.44 4.8 6.76 10.2 10.8 2.73 11.2 1.92 7.93 4.51 7.4 10.4 12.1 10.4 13.7 8.36 10.2 2.56 12.8 11 10.7 6.28 9.66 7.2 7.12 12.6 8.06 6.16 7.4 8.23 9.21 11 8.04 0.71 12.1 5.7 8.41 11.2 8.49 8.57 9.53 5.94 10.8 11 8.34 11.5 8.9 9.18 7.94 8.86 8.9 -0.13 7.69 11 11.4 -0.1 8.73 10.7 9.88 -0.05 1.07 6.17 10.1 9.81 5.64 6.74 11.4 0.22 9.79 1.32 1.91 5.43 7.86 10.2 5.75 12.5 8.55 8.94 9.71 9.27 9.48 9.41 9.87 10.8 10.3 5.94 11 10.3 9.82 7.88 7.81 9.84 6.38 10.7 11.4 9.43 4.76 11.6 11.8 8.43 16.6 9.13 9.16 5.57 6.54 11.7 9.34 9.89 8.55 8.6 5.1 9.61 6.06 10.8 8.08 8.21 6.49 10.2 9.42 10.7 7.3 3.82 9.7 10.8 7.34 10.9 9.27 8.42 10.1 12.2 8.4 10.9 7.91 8.82 10.3 10.1 10.4 12.7 7.12 7.81 5.75 6.91 6.23 8.26 10.8 10.8 7.6 3.36 5.18 9.52 9.27 10.5 2.42 9.37 9.85 8.76 10.2 3.67 9.45 9.68 7.36 8.82 0.17 7.13 6.97 9.14 10.6 9.88 11.4 10.7 10.4 7.24 6.6 13.6 10.7 9.5 10.7 1.65 5.02 8.71 9.98 11 10.2 10.2 8.72 9.26 6.02 10.2 8.61 11.2 10.4 3.26 8.05 11.4 11.9 8.64 9.53 9.5 10.3 9.24 9.37 10.5 10.8 13.6 11.3 2.19 8.06 7.56 9.46 10.5 3.86 9.09 2.82 7.74 8.72 7.18 8.04 11 12 7.51 8.69 8.66 3.96 10.1 11.4 9.79 8.63 12.1 8.64 8.55 10.5 8.81 11.8 5.93 10.8 0.81 9.28 3.06 7.43 11 0.16 8.58 5.82 10.4 10.1 10.7 1.92 9.04 -0.26 5.33 4.16 7.44 8.96 10.8 8.23 6.47 5.85 7.86 8.42 2.5 1.48 2.8 6.55 10.6 7.61 7.57 2.24 9.83 8.81 3.32 7.05 8.48 8.1 6.93 6.65 8.29 7.78 9.13 9.39 8.66 10.2 9.21 0.84 6.42 10.3 11.1 1.55 9.3 -0.05 9.53 8.05 7.12 6.05 11.6 10.1 11.2 -0.12 11.4 8.49 10.3 9.53 8.14 1.96 8.95 6.67 7.84 9.57 8.93 10.8 7.92 11.8 10.1 4.97 11.4 9.19 9.5 8.35 9.46 9.31 7.21 8.86 13.4 3.77 8.1 9.73 8.81 8.39 7.51 9.2 9.05 9.43 9.31 11.9 4.6 1.76 -0.14 10.7 7.66 3.68 6.68 9.81 4.43 9.46 12.1 10.3 7.89 0.76 9.19 2.09 6.99 -0.55 12 12 9.05 2.19 4.63 2.94 4.24 7.93 6.99 12.3 0.63 5.3 7.76 0.54 8.48 4.63 11 4.23 7.26 1.95 8.92 10.5 2.78 -0.42 9.67 6.57 3.63 1.02 4.08 0.15 13.1 9.47 8 8.4 10.8 0.26 4.36 9.4 8.73 11 2.58 7.27 13 10.2 1.81 8.33 10.5 16.7 9.48 10.9 8.49 5.63 6.08 9.86 0.12 6.91 9.79 -0.24 8.25 5.49 5.62 9.85 10.6 6.29 11.9 8.19 9.2 12.4 2.01 7.99 0.98 4.28 8.41 6.18 8.94 11.1 11.8 11.6 3.83 10.6 10.3 9.01 11.9 11 5.63 10.4 9.14 11.3 2.66 7.24 7.07 9.29 9.9 1.34 9.92 9.47 8.54 10.1 6.51 8.95 8.61 0.87 1.64 9.41 6.22 10.1 11.8 9.68 9.97 6.57 8.9 4.3 6.7 3.82 11.4 5.43 6.65 11.6 2.12 6.97 7.42 3.38 8.58 11.8 7.79 5.54 9.33 7.78 6.84 0.75 6.6 8.96 6.23 6.73 8.96 9.08 -0.6 8.77 0.98 9.9 8.55 4.93 10.1 8.79 11.8 9.02 4.02 3.69 10.9 6.88 2.68 10.1 0.97 3.98 6.06 8.66 9.71 2.31 8.31 11.4 1.99 2.43 6.82 9.18 9.99 8.31 3.45 1.49 8.98 10.6 10.1 8.49 9.79 8.09 8.99 10.6 11.1 11.8 8.4 7.8 3.95 8.17 9.28 1.18 2.18 8.89 0.78 2.74 9.98 9.38 8.3 7.32 4.57 10.1 7.23 5 8.49 8.16 9.11 5.94 7.18 4.91 9.54 10.9 7.51 8.07 11.6 2.78 10.1 10.9 11.1 9.74 3.28 9.99 10.9 8.18 10.9 12.2 10.1 9.57 9.55 8.13 5.31 7.49 9.52 10.2 9.24 7.86 3.48 9.21 7.32 9.95 5.62 10.8 6.93 10.5 9.11 9.08 4.61 10.8 7.25 7.55 11.2 2.99 11.5 9.48 4.18 3.32 6.91 11.9 8.84 6.42 15.7 -0.03 13.2 7.92 11.5 4.54 8.38 11.2 10.6 10.5 12.4 12 5.86 6.58 10.7 15 1.16 6.02 13.3 12.6 2.79 1.52 6.55 10.6 3.41 -0.03 9.57 7.67 4.88 10.1 5.61 0.7 12.3 5.56 4.11 9.24 11.2 10.9 8.89 12.6 9.98 12.5 9.32 2.66 13.4 3.88 0.78 12.3 1.22 11.2 12.4 1.69 6.73 6.37 6.95 10.3 6.58 3.83 0.25 3.22 4.25 4.22 6.21 3.06 8.98 2.37 1.12 6.72 4.92 8.61 10.3 7.99 5.7 8.18 2.87 2.6 3.42 2.03 9.32 14.2 5.47 15.4 11.4 1.06 6.56 6.29 11.8 4.77 7.53 6.43 5.81 7.6 7.63 7.37 4.49 9.6 3.17 6.13 2.1 6.29 5.34 9.06 4.76 7.73 8.75 11.4 0.8 7.17 2.89 2.16 0.72 2.61 2.02 5.59 0.54 10 1.27 7.56 5.62 8.36 6.53 8.73 3.18 3.3 4.54 0.21 6.27 1.76 4.26 2.14 9.18 -0.22 6.37 0.06 5.48 11.1 12.5 8.74 4.44 0.37 3.98 2.57 4.17 1.7 8.35 0.89 1.71 2.07 10.2 4.21 4.93 5.86 3.4 7.64 5.15 8.64 5.62 6.3 2.98 1.68 2.03 7.05 7.55 1.29 2.36 6.89 8.7 9.27 4.55 1.44 8.13 7.74 0.24 3.68 7.05 3.08 6.83 5.57 8.6 7.67 10.2 6.46 2.44 -0.04 1.1 6.5 7.84 -0.66 2.14 0.18 8.57 5.53 8.8 6.97 12.4 7.43 7.36 4.26 7.84 2.86 4.77 5.92 5.4 7.48 3.61 0.54 9.82 1.1 8.61 0.93 7.6 0.64 3.34 7.06 7.87 6.37 6.97 1.4 -0.66 1.87 2.74 2.23 3 2.19 10.1 1.52 6.73 7.95 4.53 7.27 0.19 6.12 5.18 0.39 0.51 2.36 1.9 5.02 6.44 4.49 7.26 5.43 7.67 0.93 1.66 0.45 7.79 -0.03 3.96 2.3 9.11 3.18 8.38 4.54 5.34 0.6 2.14 5 9.08 3.33 3.09 6.52 1.19 0.92 3.12 0.98 9.89 4.88 2.83 9.24 1.16 4.7 3.68 7.44 3.15 7.64 5.38 10.8 7.26 2.18 1.45 2.25 5.02 0.07 7.96 9.04 6.93 10.7 9.61 0.73 9.7 0.83 3.23 7.48 6.1 6.44 4.92 9.75 7.93 0.02 4.87 8.69 9.02 4.73 5.01 7.52 2.13 8.4 3.21 5.08 8.73 8.27 3.84 8.85 5.99 8.31 1.05 4.51 8.65 0 9.31 6.54 1.73 6.16 6.26 8.78 11.7 5.39 7.95 0.27 10.3 2.47 0.5 7.68 4.11 6.55 4.99 10.8 4.06 4.46 9.71 2.76 6.23 8.48 7.33 3.12 10 1.13 5.58 0.73 9.35 5.67 6.62 7.81 1.76 3.94 8.8 0.53 2.29 8.9 5.76 5.39 5.78 10 1.66 6.09 2.7 2.15 0.3 9.05 8.93 4.73 12.7 6.69 9.1 4.62 2.86 4.79 7.94 2.59 5.09 9.89 11.5 2.68 0.63 8.99 2.06 2.89 0.93 8.62 8.13 6.65 3.24 5.26 6.21 9.96 8.49 0.41 0.4 5.39 5.23 6.64 1.7 6.33 7.82 8.76 9.82 2.86 4.93 9 13.2 10.4 9.79 5.15 11.6 11.1 8.8 11.7 10.4 8.47 10.9 11.1 11.9 0.91 3.44 11.2 8.16 8.24 9.02 9.03 8.53 8.43 13.9 8.2 9.48 12 3.49 7.28 1.39 11.7 1.8 8.18 7.43 10.2 9.51 9.97 9.81 9.58 9.32 8.57 8.03 8.6 9.93 7.01 10.8 10.9 9.25 0.44 7.56 8.9 8.1 10.5 10.5 4.14 11.4 5.98 1.17 4.3 7.89 4.18 11.4 3.12 10.4 4.82 8.28 11.3 5.93 10.7 8.01 10.1 10.4 12.7 9.24 9.92 10.4 9.32 6.97 9.75 11.6 9.16 9.29 10.6 7.91 10 10.3 9.28 11.2 7.69 10.4 8.28 2.33 4.17 8.4 8.11 9.25 9.72 9.37 9.19 8.19 10 10.3 11.4 9.64 5.63 9.37 0.87 9.17 9.4 10.5 -0.39 9.54 9.38 6.4 10.4 1.27 2.42 8.87 1.27 11.7 0 5.63 10.4 9.86 2.78 1.51 7.29 13.1 4.8 2.91 13.1 1.49 10.7 12.9 7.1 10.5 12.8 11.8 7.12 10.8 6.34 0.31 6.04 8.7 7.19 3.32 15.1 1.03 8.92 9.06 10.8 7.77 9.56 8.46 8.78 9.61 11.1 9.53 9.24 7.42 8.21 8.12 11.6 12.3 11 9.74 1.15 10.2 10.5 5.64 9.97 9.61 1.26 11.8 10.3 2.67 10.3 8.34 3.29 9.42 9.67 9.99 11.3 4.55 9.71 -0.22 4.11 5.83 6.61 10.3 1.35 9.1 9.28 8.1 2.41 7.57 7.23 9 6.16 0.26 3.68 10.3 11.3 9.26 4.32 9.03 10.3 7.85 8.72 11 10.4 9.6 8.51 11.8 -0.32 9.5 9.72 10.7 8.53 6.75 6.76 9.61 2.29 10.8 2.84 8.48 8.64 8.22 8.56 8.6 9.6 9.8 8.57 10.4 10.7 6.68 9.02 12.7 8.72 7.43 5.57 5.19 7.7 1.06 9.17 10.5 8.46 1.98 3.03 9.51 7.41 7.02 6.54 6.69 2.14 10.6 9.27 11.9 10.8 1.54 11.4 1.42 8.75 4.03 8.54 10.6 10.3 9.75 9.83 9.73 9.01 10 11.9 7.68 8.9 9.72 8.08 5.94 8.07 3.05 8.86 3.96 3.08 9.93 8.01 11.4 7.71 1.73 8.96 2.41 11.4 13 10.2 1.39 8.54 8.01 6.13 6.51 1.03 12.3 5.7 9.76 0.52 1.09 -0.23 13.2 1.71 0.68 7.89 11.4 5.05 14.8 11.8 13.6 9.9 7.66 7.25 12.3 11.2 8.6 1.78 10.4 -0.37 8.25 12 2.53 13.1 5.07 2.95 0.16 2.74 2.42 3.22 8.81 2.16 11.5 7.07 7.85 7.7 11.9 11.4 11.2 2.83 13 14.3 11.3 9.33 7.95 10.6 10.4 10.5 6.72 12.5 0.46 3.58 2.08 9.27 6.99 6.25 3.86 4.28 9.2 6.26 9.69 7.78 7.38 10.6 6.17 11.5 9.94 8.92 12.3 10.4 9.23 11.9 6.26 9.95 6.82 13.3 9.81 11.7 11.6 9.17 10.8 10.6 12.7 12.4 10.7 11.7 4.06 7.81 13.8 14.3 13.9 7.82 8.33 10.9 7.26 2.78 10.4 9.79 2.85 9.48 4.41 10.3 6.4 12 11.1 10.1 0.98 5.52 4.56 13.2 8.96 4.41 10.4 0.07 4.38 6.57 8 8.32 5.25 8.56 12.5 11 11.5 10.8 11.8 8.47 10.2 12.1 11.8 3.63 8.87 7.13 9.52 7.68 9.31 1.79 6.54 7.75 8.96 8.49 3.34 8.22 0.01 5.52 1.69 11.2 -1.94 8.37 12.9 8.68 14 11.6 13.3 10.9 12.5 11.8 10.9 11.2 13.6 0.71 11.3 13.7 1.8 7.2 5.91 7.64 7.1 8.77 7.83 6.4 2.3 7.76 5.84 8.61 5.45 3.14 5.36 7.73 7.01 8.33 6.49 5.31 6.41 8.59 3.48 6.4 9.15 6.18 7.41 10.8 6.42 8.95 1.13 8.45 0.05 7.75 0.82 1.1 10.6 10.3 -0.32 2.37 1.93 9.8 1.69 2.57 8.45 11.6 7.43 9.58 10.4 1.74 7.17 10.7 10.3 11.1 9.56 11.7 11.9 4.52 6.32 7.5 5.27 10.1 11.6 8.12 8.5 12 11.6 11.4 12 10.1 2.24 10.3 11.5 14.5 10.6 6.51 5.41 13.9 12.1 14.3 4.01 8.47 15.9 12.2 14.8 13.4 3.91 10.9 11.5 9.38 13.3 7.09 3.09 15 11.8 10.5 0.58 1.94 3.16 4.01 -0.13 -1.01 9.08 8.98 15.8 5.08 11.6 10.8 3.41 5.82 0.88 0.36 2.38 4.84 10.9 0.97 2.59 0.83 7.82 8.18 9.77 6.7 1.51 1.38 7.29 1.18 6.84 10.4 8.15 6.75 2.59 6.61 6.25 2.08 0.6 2.57 6.53 7.79 7.59 9.57 0.02 8.66 5.95 4.83 6.88 8.96 8.41 8.34 10.8 7.78 5.31 7.75 3.21 7.21 7.8 2.12 -0.12 6.42 0.32 0.98 8.36 7.32 5.32 4.63 5.13 8.2 3.09 6.03 3.86 1.63 6.01 8.06 7.03 1.67 10.6 9.34 10.1 1 7.47 8.31 4.24 2.24 2.63 0.19 8.5 5.13 0.96 2.3 5.04 9.44 6.16 9.55 1.3 1.64 3.4 3.59 0.33 7.95 1.82 0.3 5.16 4 8.39 0.5 10.2 6.02 2.21 6.22 3.4 7.48 6.81 5.17 3.75 2.38 7.56 2.01 5.23 4.41 4.73 6.59 6.69 7.57 6.86 4 6.33 2.81 9.57 0.65 11.4 9.82 10.2 11.1 3.68 10 0.43 2.34 5.97 9.57 12.1 0.28 6.98 10.6 0.93 5.29 0.03 0.96 6.72 10.7 12.6 3.91 12.1 3.1 2.36 5.03 1.28 5.93 1.34 4.08 0.28 8.66 0.45 6.19 9.52 2.45 9.02 8.74 1.51 3.73 3.65 2.03 0.37 7.71 10.3 4.1 3.23 8.15 0.35 4.06 7.08 8.5 0.58 5.44 2.39 1.59 4.33 7.19 0.06 9.83 5.32 7.8 1.76 2.08 8.39 9.93 1.07 1.69 11.9 2.68 10.5 2.78 5.38 2.09 6.84 1.63 0.14 7.2 10.2 0.32 1.71 6.96 3.38 6.23 -0.06 5.03 3.66 11.9 2.77 10.7 3.82 2.02 9.6 12.6 3.21 1.01 2.52 2.07 8.98 5.8 11.7 5.96 9.04 12.6 6.58 5.3 6.16 14.1 8.24 3.41 7.74 11.8 10.1 2.81 9.06 1.93 5.84 3.57 10.1 11 2.16 8.59 13.6 3.87 7.47 12.3 4.91 1.2 9.91 4.16 10.2 10.3 12.6 7.32 9.8 7.03 3.34 -0.01 3.27 1.83 5.04 1.83 8.15 8.9 14.8 4.35 10.4 4.68 6.6 3.39 10.7 6.08 7.18 7.38 -0.97 2.22 8.66 6.96 0.62 4.65 1.44 4.74 1.25 8.56 3.3 -0.41 1.93 7.87 11.2 8.1 8.08 7.71 9.65 12.3 9.39 6.4 2.87 7.65 6.92 4.94 11.3 0.11 4.03 10.6 8.25 9.48 5.47 8.34 9.61 0.29 3.35 9.66 2.83 0.95 1.67 7.1 8.92 5.5 5.57 3.57 0.5 5.48 9.3 11.6 3.22 9.4 11.5 8.43 13.8 8.26 10.2 7.99 7.92 1.44 7.05 5.69 10.6 11.1 11.5 12.6 0.56 11.2 10.2 10 12.1 11.7 9.84 7.52 8.18 7.4 5.89 10.5 7.73 0.14 9.27 9.93 0.3 9.2 9.87 8.75 9.64 10.5 10 0.9 0.65 10.5 0.57 13.8 7.6 5.31 12 14.5 8.65 9.93 10 3.44 9.58 8.82 4.02 8.6 11.6 7.83 12.2 7.75 1.87 9.59 10.4 12.7 2.68 13.9 8.19 12.4 7.13 3.04 5.7 -0.07 9.26 6.79 6.03 13 6.96 14.2 9.3 10.1 8.35 15.3 11.8 12.1 14.4 7.09 11.9 0.03 0.4 2.01 11.6 5.03 4.22 11.8 9.8 11.1 4.72 9.61 9.56 11.1 12.3 9.34 13 11.7 8.92 7.45 12 10.1 12.6 11.4 9.22 14.2 7.98 9.08 11 11.4 12.2 -1.02 0.97 4.66 7.51 1.5 3.24 2.3 9.25 7.91 9.41 7.63 6.73 8.54 4.32 1.25 6.99 1.27 0.44 7.15 1.05 6.02 5.6 8.65 7.9 6.08 8.67 0.82 1.45 3.9 4.45 8.23 1.93 6.99 -0.44 7.91 9.64 6.5 3.11 6.95 5.36 5.21 5.43 1.92 8.21 0.43 4.86 9.55 12.4 6.67 8.02 6.79 10.9 3.09 6.76 7.38 1.27 3.84 5.39 8.58 7.84 6.99 6.45 2.48 1.16 5.81 1.15 5.39 7.36 4.35 5.97 9.51 5.98 7.49 6.14 6.34 1.61 -0.04 0.14 3.47 1.55 7.83 4.21 3.81 1.4 10.4 7.3 8.85 0.71 4.2 12.7 3.22 1.75 8.26 3.32 9.06 6.87 1.6 9.18 -1.49 1.07 4.91 2.58 5.71 2.3 9.15 12.3 5.72 3.27 9.65 0.17 8.42 6.61 7.05 0.68 7.39 11.4 1.59 1.92 3.6 3.9 7.58 -0.4 1.01 6.9 7.56 6.13 -0.85 2.83 14.9 10.4 10.1 3.75 8.42 0.49 6.98 9.42 9.09 6.66 12.3 8.62 7.49 10.8 1.39 3.12 -0.15 11.1 0.03 0.45 7.06 3.75 0.68 12.6 3.55 3.51 5.09 4.88 4.37 0.03 11.6 10.5 8.33 10.4 10.9 13.2 11.4 10.4 9.12 12 6.62 12 12.6 11 1.5 8.87 12.6 12.1 8.41 8.35 5.5 2.94 12.9 6.24 6.22 12.7 1.96 8.28 4.99 6.18 16.1 3.23 8.59 0.69 0.13 4.12 9.27 2.45 4.66 12.4 10.1 11.4 2.39 0.53 4.29 1.18 3.18 8.31 9.03 -0.67 6.94 1.46 4.82 0.27 6.61 0.35 2.78 3.93 4.66 6.44 8.36 2.26 2.3 9.63 0.21 6.77 8.93 4.04 0.38 12.5 6.3 6.48 6.54 3.72 9.56 5.37 2.62 6.46 2.65 7.75 3.53 3.19 3.46 5.6 5.87 3.92 4.27 4.99 8.71 8.12 0.83 13 0.2 4.24 6.64 8.07 7.81 6.48 6.21 6 2.72 2.15 2.67 7.14 6.01 1.11 8.59 3.11 7.99 0.95 8.55 6.8 3.43 5.36 6.32 7.98 9.4 0.32 8.64 1.74 4.27 7.61 5.13 7.96 7.87 4.4 0.38 8.94 12 8.79 2.22 4 -0.42 5.89 4.69 7.98 2.35 8.85 1.16 5.53 5.29 -0.24 4.73 8.48 6.44 4.63 3.11 15.1 5.85 5.35 9.78 3.63 1.67 1.55 2.74 9.1 6.64 1.62 7.46 2.22 7.06 1.12 1.95 -2.2 -0.11 6.19 0.81 3.46 3.67 9.39 10.4 6.21 1.96 -0.43 2.12 7.52 0.01 4.18 2.21 3.47 -0.47 9.18 14.1 7.51 5.78 8.23 9.37 10.8 7.93 14.6 0.11 15.3 1.55 11.9 0.62 7.8 13.7 13.2 13 6.16 0.11 11.7 13.6 12.6 0.86 0.2 4.4 11 4.7 12.6 3.35 0.33 7.1 10.9 7.94 8.13 7.28 10.6 7.8 0.56 15.1 12.1 13.2 11.7 4.55 0.66 8.59 11.2 9.88 13 2.77 13.3 13.5 12.2 3 10.6 8.27 10.4 1.21 6.71 10.4 8.97 -0.64 7.36 7.74 11.8 10.2 11.8 9.76 11 5.52 0.98 2.59 11 9.62 0.53 5.2 8.92 6.8 10.4 10.1 9.84 1.23 5.05 2.39 10.7 6.19 3.16 6.2 6.05 12.5 2.84 7.9 5.46 11.6 2.35 3.54 7.69 10.3 10.2 13.6 6.01 8.09 7.23 10.6 -0.31 -0.19 4.87 9.25 3.38 5.44 6.14 8.36 4.16 5.61 7.56 -0.5 5.44 5.15 2.18 7.27 1.12 0.31 6.23 7.08 6.1 1.63 0.14 5.48 8.26 1.57 8.88 8.44 0.4 1.15 9.27 5.34 5.12 1.34 8.41 7.27 9.72 5.31 4.94 1.1 6.07 2.73 5.74 5.13 2.02 1.07 11.2 1.91 8.79 4.55 4.41 3.69 4.36 0.41 0.02 2.33 4.22 7.38 3.75 6.46 5.6 1.36 9.84 5.8 4.62 9.16 1.99 9.88 6.2 0.78 8.02 10.6 10.2 5.88 2.35 9.15 0.57 0.54 0.63 1.11 5.03 7.55 3.33 8.57 11.3 1.74 0.18 4.52 6.29 10.7 8.15 1.99 6.47 4.43 9.88 1.18 2.45 10 5.59 2.81 9.35 4.67 7.01 0.35 8.77 9.06 13.4 1.72 6.33 9.72 9.77 0.96 8.65 11.4 2.07 6.28 3.01 2.8 11.5 4.04 9.31 8.96 8.74 7.97 9.84 8.9 11.5 1.92 10.3 5.53 6.05 12.8 12.8 12.9 11.4 2.33 2.03 0.6 1.67 12 9.33 12 13.2 2.02 5.54 10.4 4.83 10.5 2.38 10.3 13 11.8 10.8 11.8 12.7 11.4 0.11 5.23 6.8 4.77 6.52 10.1 12.3 10.3 9.28 9.73 11.1 12.3 11.1 9.65 11.2 4.12 8.37 5.08 12.4 9.96 -0.27 7.38 9.71 8.53 8.73 2.09 -0.06 7.93 8.32 7.75 9.34 9.8 11.3 11 12.3 5.9 8.11 10.4 8.02 12.7 4.3 6.37 8.94 8.95 11.6 6.69 4.09 11 3.58 3.51 6.99 2 4.79 7.96 4.22 1.01 11.4 1.02 0.95 7.23 7.88 7.12 9.97 7.95 8.6 1.36 11.8 10.9 2.32 9.93 11.9 10.3 7.62 10.7 11.3 6.35 3.3 14 11.3 10.7 12.5 10.6 10.8 11.6 13 3.56 8.73 9.04 1.98 11.3 11.1 10 11.2 9.43 9.33 9.82 9 10.1 10.3 4.43 8.06 9.64 8.43 4.69 9.53 8.08 6.05 9.59 8.61 10.1 9.28 10.8 10.1 3.36 0.48 10.7 13.3 7.9 9.6 7.63 9.64 8.39 10.3 9.64 5.57 11.7 10.2 4.02 8.08 9.85 10.5 8.44 9.94 11 9.68 10.2 7.21 10.8 10.2 7.13 10.6 12.7 9.29 0.25 8.07 7.62 10.4 12 11.1 9.94 5.88 8.34 6.51 11.1 11.2 10.7 9.37 4.73 6.69 8.11 10.8 11.3 8.21 3.8 6.35 13.5 8.73 0.19 -0.7 10.2 4.89 10.6 14.5 6.49 10.2 6.32 7.2 7.43 6.91 1.43 11 9.17 7.09 9.59 0.39 8.29 7.88 0.02 10.7 5.05 9.81 9.54 8.63 2.32 0.88 7.51 7.04 6.36 10.3 9.16 3.71 8.01 10.1 11.4 0.44 2.96 10.4 11.8 0.08 3.9 6.09 8.77 9.72 6.5 -0.95 3.04 1.04 7.66 1.13 9.09 3.74 1.31 4.77 9.53 12.1 4 9.87 10.7 4.14 8.57 2.02 5.18 7.03 7.74 10.6 7.21 0.56 6.5 -0.13 6.73 6.6 3.13 7.87 0.76 0.43 8.06 9.85 7.12 1.94 1.92 1.89 0.63 0.01 7.87 6.83 3.12 0.88 6.93 5.35 7.33 3.55 12.7 5.81 7.36 6.59 5.74 4.31 2.12 4.57 8.16 7.05 2.93 7.1 8.85 6.55 2.42 4.44 5.25 0.23 7.64 6.37 3.15 5.11 6.12 0.48 1.54 4.93 2.32 -0.32 7.46 0.76 7.83 7.12 0.9 6.17 6.22 4.32 7.55 12.6 0.36 0.6 0.58 1.38 0.83 3.03 7.57 1.09 0.26 7.29 5.98 3.17 1.96 13.9 1.49 9.6 8.99 0.61 6.09 13.5 11.1 10.8 1.63 9.99 6.59 1.46 10.1 14.5 8.99 6.11 5.28 8.15 7.36 12.9 9.28 7.47 3.02 12.6 14.7 11.6 5.48 9.05 8.09 11.5 7.87 10.9 9.28 7.37 0.85 10.3 9.71 9 11.9 6.95 4.53 9.97 8.99 6.88 9.91 8.22 8.99 7.63 10.4 3.19 6.4 10.1 1.36 0.14 -0.12 12.8 7.77 2.7 9.34 10.8 0.37 6.13 16.7 11.2 11.5 10.5 1.2 5.27 13.7 11.8 0.23 12.8 11.8 11.2 11.4 10.5 11.2 6.77 0.69 8.95 11.6 12.8 11.9 9.16 10.5 1.65 11.6 9.63 14.1 9.88 8.38 7.83 12.4 6.46 13.3 6.22 4.38 11 11.9 11.7 13 5.96 11.3 7.6 11.4 4.81 4.09 9.83 7.25 6.11 10.4 14.3 6.2 9.9 9.34 7.34 10.7 9.87 12 10.1 8.27 9.54 6.26 10.7 10.8 9.76 8.97 10.2 9.28 11.2 10.4 10.9 9.66 9.93 10.3 11.9 9.91 8.01 10.3 10.9 10.1 10.2 9.68 12.2 8.81 10.9 11.3 9.77 9.91 10.8 8.15 10.3 10.2 13.5 13.1 11.1 9.61 2.15 7.17 7.93 4.96 7.28 0.57 -0.21 3.27 8.82 8.71 8.28 8.71 7.79 1.13 9.34 9.59 15.6 11.6 3.79 10.1 8.2 4.73 9.94 9.66 8.13 3.38 13.4 1.97 12.8 11.5 8.75 10.7 9.47 10.4 9.37 12.6 8.28 6.73 7.43 9.61 10.1 10 10.3 0.91 8.89 9.44 9.58 9.45 1.3 11 13.2 8.38 12.6 8.37 4.77 8.01 6.01 3.55 10.7 6.51 4.26 8.86 13.1 10.6 12.9 8.88 9.66 7.28 11.3 9.17 0.49 10.2 12.9 2.02 6.47 10.5 9.37 9.15 11.2 11.4 11.8 8.32 6.12 1.24 10.8 0.24 7.09 9.19 11 7.01 13.6 4.03 2.56 13.9 5.72 9.92 5.81 5.17 3.88 8.39 10.3 11.5 8.03 11.3 8.2 4.02 10.1 5.38 2.51 3.82 13.5 9.53 10.9 0.13 7.73 1.49 9.02 0.77 0.89 3.87 -0.04 6.79 7.55 2.22 3.11 7.51 11 9.44 12.8 10.3 11.2 7.2 12.4 9 4.4 8.64 8.62 9.36 5.57 0.72 8.92 6.07 4.02 9.23 10.4 5.4 11.5 8.59 1.25 6.8 11.3 8.93 7.51 1.17 4.2 1.03 12.4 9.9 9.14 10.6 10.7 3.44 11 7.75 4.82 1.8 2.51 2.45 6.26 3.22 1.73 12.1 9.58 13.1 3.55 7.8 8.22 8.41 8.64 1.52 4.9 8.45 9.08 11.2 9.15 8.66 7.74 4.04 1.01 11 4.02 11.1 5.89 5.94 5.76 7.51 11 11.1 6.7 2.48 7.86 7.38 3.66 3.78 8.65 6.75 6.14 12.8 13.5 6.63 6.37 12.2 1 2.25 2.62 11.3 10.6 10.8 7.94 12.3 11.3 8.88 7.01 12.5 9.82 4.26 9.87 9.66 7.05 6.96 7.42 12.9 13.8 5.1 11.1 13.6 5.14 5.08 10.8 8.92 13.1 4.36 10.1 9.65 4.66 6.13 10.5 10.7 8.8 5.17 11.5 8.05 3.92 9.8 10.5 9.72 -0.09 6.75 2.34 4.7 11.5 10.8 11.8 10.3 10.4 8.84 9.33 3.03 3.74 1.19 13.5 1.61 6.79 11 6.38 4.81 9.54 11.9 11.1 9.78 8.52 8.95 10.9 7.09 9.61 9.06 13.1 7.62 2.05 13.7 0.51 4.49 1.08 8.43 9.91 10.5 11.6 10.6 9.68 6.91 8.74 8.53 7.11 7.73 7.9 10.1 10.1 9.39 5.61 8.8 8.48 11.3 8.64 11.2 8.99 7.73 9.17 8.07 9.49 10.6 6.93 6.69 9.96 7.01 10.7 6.11 9.56 10.3 9.59 10.7 10.7 8.22 9.74 9.09 7.87 6 11 6.03 5.78 8.18 10.5 9.87 7.1 8.73 8.82 1.73 9.18 11.2 8.3 8.37 9.85 9.18 9.97 7.57 10.5 7.42 10.5 9.71 10 10.9 9.54 11.8 9.14 6.96 5.5 2.19 1.15 11 10.1 8.74 9.17 7.95 11.2 7.53 9.72 10.1 10 9.16 10.6 12.3 9.23 7.59 6.7 9.04 10.9 6.38 11.8 10.7 11.5 12 8.07 11.3 8.83 10.5 9.87 9.84 9.69 9.25 10.7 8.82 10.3 10.9 10.5 9.37 11 3.73 8.98 12.7 8.97 8.05 11 10.5 7.77 7.9 7.79 8.66 9.9 11.7 10.2 11 8.18 10.7 5.99 10.9 0.9 9.04 11.8 6.9 10.1 10.5 5.51 8.47 8.79 10.7 5.79 8.06 3.74 8.08 4.82 8.26 7.05 6.96 6.8 8.54 9.51 8.93 8.49 9.24 8.62 10.4 10.8 7.75 11.2 7.18 9.71 10.1 9.47 9.43 7.37 11.5 8.92 10.3 10.1 8.11 7.76 2.15 5.92 2.34 10.4 3.54 8.91 7.24 7.24 6.44 10.4 10.2 7.87 11.9 1.36 10.3 9.46 2.17 7.95 9.78 8.09 11.1 10.4 9.29 9.31 8.59 5.18 9.96 -0.41 10.5 9.98 7.15 8.68 10.9 7.37 9.53 9.63 9.4 3.92 4.34 3.03 9.98 10.7 9.11 11.7 7.92 4.97 6.87 10 9.27 9.59 10.5 6.88 8.85 10.2 6.3 2.25 8.95 9.23 10.1 8.06 10.6 10.2 7.31 9.4 8.24 8.2 9.83 9.35 9.89 3.54 9.03 11.1 1.45 9.37 9.13 7.22 6.03 7.31 4.76 9.84 9.97 1.06 6.29 6.25 10 9.66 8.88 10.3 9.92 11.2 10.4 6.44 10.5 3.9 9.46 5.12 3.78 8.2 11 8.39 7.29 8.58 9.3 10.7 9.22 8.98 9.69 5.11 8.86 2.04 4.98 8.38 5.76 9.59 11.5 2.81 3.39 12.9 8.26 8.89 2.46 11.1 9.72 8.91 10.5 10.4 9 8.82 6.27 8.4 10.5 5.95 7.4 12.5 10.7 9.23 6.59 9.04 7.1 7.99 10.8 9.18 12.5 8.73 10.6 8.91 6.29 9.42 5.93 6.9 10.1 9.48 8.28 7.13 10.6 9.84 8.78 10.2 10.8 9.89 10.1 9.11 8.95 4.67 10 9.75 9.44 11.8 1.65 9.12 5.82 10.5 7.78 5.09 10.3 9.38 8.49 0.94 13 9.57 7.65 11.4 2.38 9.47 8.26 11.1 11 9.97 12 9.04 11.6 11.6 8.92 9.74 11.7 9.99 11.6 8.61 11.8 8.76 6.3 8.95 8.83 6.88 11.5 10.1 7.04 8.57 10.2 10 10.5 9.79 4.19 8.53 6.65 4.5 10.8 9.7 10.4 8.99 10.4 7.76 9.62 8.06 8.64 7.17 10.8 9.04 12.1 4.34 0.01 8.12 8.2 7.9 3.48 8.83 10.6 9.78 9.53 11.1 5.13 12 11.2 9.66 10.5 6.52 13.7 9.65 11.7 7.09 11.3 10.6 11 10.9 9.33 10.4 8.79 9.51 6.04 11.3 9.14 11.4 9.37 11.3 9.41 7.8 12.5 9.76 0.18 7.03 9.35 11.6 10.7 8.38 10.9 10.9 11.4 9.65 9.49 10.7 12 10.8 6.81 9.06 10 8.87 11.6 10.5 9.49 7.74 9.41 7.96 11.8 9.57 5.12 9.09 8.71 7.44 7.13 7.26 11.7 9.27 10.7 8.47 11.6 5.61 7.88 8.57 7.44 8.44 8.43 1.62 0.61 8.3 9.49 9.98 9.56 10.5 10.3 11.9 10.2 8.12 8.33 10 9.64 8.36 6.2 8.78 7.68 11 8.62 2.04 12.4 4.36 9.02 10.9 11.6 8.06 11.3 0.47 8.77 8.57 0.99 4.1 6.61 10.3 3 11.6 9.09 8.94 2.32 11.1 8.3 9.95 10.9 10.3 8.59 2.13 9.36 9.15 1.77 10 11.1 10.7 11.4 5.11 11.3 11.5 8.98 7.69 3.8 9 10.6 8.3 8.25 11.7 8.42 7.87 9.03 6.98 8.11 7.44 10.8 8.25 0.39 0.99 9.61 1.37 10.3 9.53 9.7 9.24 12 11.6 0.61 9.58 10.6 11.4 8.45 11 2.29 10.7 12 14.2 12.2 8.63 9.52 13.3 3.11 1.52 10.7 9.8 8.31 11.7 14.4 10.8 8.54 6.46 4.33 4.85 3.24 11.2 5.37 12.7 2.77 9.11 10 9.62 8.79 11.1 10.3 2 8.79 7.97 9.33 10.5 10.2 10.7 13.6 8.33 8.57 6.63 8.39 8.88 11.9 8.88 8.49 8.27 10.6 8.96 9.46 11.1 10.4 10.4 10.3 8.54 5.82 10.9 11.3 10.9 9.58 9.06 9.53 0.73 7.99 7.96 10.8 8.93 11.3 8.82 -0.07 15.8 8.83 10.2 1.07 7.43 8.14 7.33 10.6 11 12.8 7.77 10.6 6.68 11.3 9.45 7.63 7.4 11.1 5.65 6.76 2.91 7.27 8.49 7.01 1.22 9.05 11.1 0.4 6.59 8.86 10.4 9.78 9.34 10.6 15.7 2.1 4.77 9.25 6.85 5.35 8.58 2.7 10.1 10.3 9.19 6.69 11.9 13 2.81 13.1 9.03 9.79 14 10.2 11.8 13.1 9.2 6 10.8 0.77 10.5 9.21 11.2 9.03 10.3 2.04 0.12 11.6 11.9 9.3 9.03 9.19 8.17 7.24 8.66 4.87 3.75 3.27 -0.05 6.16 9.94 4.82 5.54 3.37 6.86 8.51 11.4 8.99 5.42 1.82 5.7 10.5 10.4 6.68 8 8.51 8.7 7.25 10.7 9.25 11.1 9.37 9.18 11.3 10.9 6.75 10.2 6.76 2.14 3.46 4.35 5.29 7.06 0.32 8.16 2.19 0.43 8 1.76 4.28 5.77 3.93 11.1 11.4 11.9 1.5 9.68 8.15 5.94 5.56 8 2.73 7.99 8.27 7.23 8.12 9.77 9.1 9.49 11.4 14 1.42 6.64 5.86 8.53 7.92 9.73 10.5 9.83 8.21 1.57 10.1 7.73 13.3 11.6 10.9 3.86 7.45 8.9 8.2 9.72 11.2 7.04 6.13 9.53 9.79 3.37 5.71 10.1 6.78 10.5 9.73 10.7 15.7 9.55 1.93 9.98 10.2 5.39 2 11.9 9.32 8.32 10.8 5.28 10.5 3.22 6.79 10.5 6.83 6.25 9.78 11.7 9.38 12.4 8.93 7.96 1.75 1.54 10.8 9.89 10.6 9.83 8.16 11.2 9.17 -0.37 10.7 8.99 9.93 10.3 6.99 10.6 9.6 8.69 9.9 10.3 7.6 10.8 7.99 9.1 6.33 11 5.41 9.9 8.99 10.3 9.68 10.9 10.1 3.04 9.58 8.66 8.33 9.68 8.86 1.64 6.23 6.42 7.59 8.54 7.87 10.5 6.5 6.21 9.71 9.8 5.09 9.89 7.07 8.88 10.2 8.51 8.22 7.64 8.83 7.32 9.52 8.6 15.3 10.2 10.7 10.7 9.17 9.91 6.2 8.68 6.84 8.45 6.39 7.65 7.47 4.87 7.06 9.82 7.44 8.68 8.29 2.73 11.6 6.91 11.8 10.2 9.98 7.43 5.34 8.52 7.48 8.25 8.6 12.2 8.47 5.39 8.74 6.87 11.8 9.49 3.66 9.19 9.05 10.8 9.02 9.23 3.1 9.98 8.87 11.6 4.81 9.03 7.52 8.6 9.84 7.01 10.6 12.2 7.72 9.62 9.93 2.47 4.61 10.3 0 11.8 11.5 1.64 9.37 9.43 9.25 12 6.04 3.19 10.6 2.6 6.38 2.97 7.4 5.88 8.12 12.3 5.12 6.24 10.1 10.1 3.75 9.17 9.4 12.1 8.64 7.36 7.43 9.66 12.2 9.01 9.68 8.83 7.63 7.41 2.97 8.74 9.24 10.6 9.84 9.18 7.7 8.17 7.87 9.21 9.8 8.73 4.5 9.7 10.3 9.88 7.95 10.5 8.8 8.45 11 7.85 10.4 6.89 0.83 6.31 -0.15 8.98 7.2 5.98 5.42 10.3 8.71 4.41 10.4 6.95 9.66 8.26 10.3 7.77 12.5 6.06 9.18 8.31 8.5 6.7 9.27 5.52 6.02 9.77 3.08 7.63 7.93 9.3 9.57 8.27 12 8.45 9.54 0.43 11 8.13 6.76 9.52 10.4 9.91 10.5 9.35 9.95 8.84 9.06 7.5 9.39 8.96 11.3 8.27 10.4 8.24 9.26 12.1 11.4 9.58 10.3 9.94 8.15 6.71 9.09 3.85 6.58 8.01 2.69 8.06 10.9 8.12 9.78 1.1 10.2 8.84 9.59 8.24 10.5 10.5 9.01 11.9 9.61 8.39 10.6 5.9 6.52 7.43 11.4 9.53 12 8.25 11.6 9.67 8.74 7.11 7.09 8.65 7.14 8.68 2.01 6.9 9.41 10.9 11.7 6.62 8.43 1.76 9.73 11.8 9.04 8.72 10.3 9.61 7.78 9.85 6.22 8.59 7.98 8.34 5.7 11.7 7.06 11.2 6.77 9.32 5.24 10.9 1.44 9.1 7.59 7.8 7.12 9.91 10.2 7.13 10.2 8.7 9.51 0.91 7.33 6.87 6.54 9.25 6.75 10.8 6.68 8.56 1.24 9.85 12.5 6.34 7.13 11.5 6.45 7.2 3.32 9.8 8.05 11 14.1 12.2 6.83 11.7 8.2 9.74 8.55 8.36 9.01 7.51 8.91 11.6 8 8.87 8.38 9.15 8.79 9.21 9.83 6.52 10.2 -0.2 0.01 8.57 9.73 11.3 4.27 8.49 8.71 8.69 10.1 10.9 9.69 8.22 7.5 9.51 3.85 10.6 10.6 8.5 11.6 8.36 11.5 9.19 7.29 8.93 9.58 9.84 9.84 5.93 6.4 7.08 8.4 2.36 3.83 5.9 8.96 6.88 10.6 5.78 11.5 6.96 5.2 5.98 10.1 7.79 10.7 11.7 10.6 9.36 10.4 10.5 8.05 7.62 7.63 9.86 10.9 8.51 8.12 7.48 9.22 6.38 9.78 3.68 9.95 10.3 8.25 10.8 8.86 8.34 7.29 10.8 9.29 9.28 7.58 8.58 9.44 6.44 9.46 8.17 10.5 7.88 9.05 1.35 9.82 10.8 7.8 8.94 0.54 9.67 9.18 9.17 8.47 5.83 0.79 10.1 11.1 9.2 9.42 9.43 9.72 7.44 10.5 9.95 10.4 8.93 11.4 1.43 7.67 9.13 9.93 7.35 10.2 8.55 10.7 10.6 7.84 11.7 8.92 7.94 10 7.49 9.89 8.28 7.83 8.86 7.9 9.14 9.56 6.74 6.41 9.34 7.85 8.4 11.9 8.31 8.64 10.2 10.6 6.29 11.3 11.1 7.7 8.82 9.22 9.8 7.84 10.2 6.69 -0.13 9.76 9.61 9.34 6.86 4.01 9.94 7.52 9.48 7.49 8.06 11.9 9.53 11.4 8.62 10.7 4.1 9.7 8.12 10.3 10.6 10.6 9.79 7.48 9.99 8.9 9.18 3.52 8.7 8.05 9.84 9.01 10.4 8.99 6.28 8.25 8.51 8.09 5.45 10.7 11.1 12 8.89 10.4 11.4 11.9 9.54 7.37 8.66 10.1 6.25 8.07 10.5 9.88 10.1 10.3 10 9.38 9.16 9.5 10.4 9.18 2.05 2.43 8.82 5.95 7.93 10.8 2.32 7.42 8.97 11.7 9.7 9.33 2.78 10.8 10.2 11.5 6.96 8.64 8.25 10.1 9.45 8.23 1.06 5.78 10.5 8.31 2.45 7.44 9.56 10.3 0.69 10.9 7.21 9.86 11.7 8.32 8.65 7.37 7.24 9.95 9.04 10.6 0.38 9.89 10.7 1.37 7.9 4.76 9.7 10.2 7.44 9.28 8.2 7.84 6.51 7.11 4.1 7.86 7.4 8.53 9.75 9.91 5.33 10.2 8.57 10.4 7.72 10.1 9.87 5.07 6.92 7.9 7.58 9.83 9.87 10.7 11.1 3.31 6.34 8.82 10.4 11.5 7.07 10.5 9.07 8.52 8.09 7.37 9.18 8.95 4.34 1.85 5.78 8.66 13.3 9.52 8.48 10.7 7.1 10.4 11.1 9.93 9.91 7.32 8.18 7.38 10.7 7.38 7.1 11.7 11.9 5.07 7.94 1.56 8.22 9.96 8.27 3.9 -0.47 -0.08 8.57 4.71 8.52 9.29 7 2.57 8.19 10.3 10.7 9.61 9.12 11.2 7.48 3.56 10.6 5.76 10.1 10.2 7.98 6.21 0.52 7.15 10.1 9.82 3.85 9.14 4.52 7.41 6.3 6.08 0.55 9.75 5.01 6.27 8.39 9.82 8.53 1.39 -0.02 6.99 10.5 4.96 4.58 8.44 0.53 3.25 6.79 7.6 8.36 10.1 8.02 9.96 6.49 3.64 10 7.95 9.66 8.53 12 1.03 9.1 9.15 8.16 6.21 9.82 8.32 6.92 10.5 6.22 10.3 8.78 6.83 1.6 10.4 8.07 9.83 9.28 9.75 2.55 9.66 7.79 8.91 11.2 11.6 4.57 10.4 8.07 8.59 8.73 7.56 12.3 9 9.94 9.79 9.93 10.6 11.3 9.13 11 8.29 10.5 5.27 9.37 9.39 9.51 8.5 7.36 8.8 10.5 8.56 8.49 7.08 11 8.76 10 7.92 10.4 7.51 10 9.44 10.4 11.1 1.02 10.1 7.92 9.7 5.09 9.58 12.3 11.4 10.3 6.5 8.45 8.99 11.3 10.9 8.58 11 9.85 9.19 11.9 8.81 8.09 10.3 7.36 8.45 10.6 10.3 11.2 9.01 8.67 12.2 8.51 13.9 8.26 9.07 4.39 9.76 9.99 10.7 2.14 11.9 5.53 10.5 10.1 7.36 8.4 11.7 10.8 9.3 9.97 7.39 9.54 5.89 5.9 7.65 9.59 8.53 10.9 8.7 10.1 11.1 5.84 8.35 8.28 10.6 10.6 9.35 11 12.4 10.2 7.62 5.63 9.41 9.73 12.2 10.3 9.2 12.7 9.68 10.8 8.89 9.54 9.15 10.7 11.3 10.8 8.7 9.56 8.52 11.1 1.96 12.3 10.7 7.72 9.44 9.77 9.42 8.04 10.4 10.4 6.79 10.6 8.97 10.5 7.99 8.04 8.66 6.35 9.66 8.26 10.8 9.6 7.27 7.31 8.55 6.41 10.2 8.24 8.04 8.85 8.13 9.43 6.89 6.76 10.1 9.76 6.45 6.12 7.91 7.3 7.82 9.06 7.22 8.17 3.22 10.2 9.51 3.34 9.11 6.93 4.96 7.55 6.6 9.26 7.94 10.1 0.41 8.41 10 10.7 2.3 11.7 9.89 0.58 9.27 9.52 6.92 9.99 10 9.98 9.52 8.8 12.1 10.9 9.07 10 9.39 11 7.13 10.6 5.2 9.45 10.4 7.9 8.74 7.51 10.3 7.7 7.69 9.4 3.24 11 7.19 6.49 10.1 11.4 0.94 11.2 9.73 10.3 10.4 9.02 1.17 8.59 8.15 10.4 9.42 8.32 7.39 4.66 10.2 4.15 5.45 1.74 13 8.81 8.76 10.9 1.34 11.3 9.77 6.41 9.83 10.2 11.9 10.5 4.68 10.2 7.62 14.5 7.26 10.7 8.93 8.81 9.95 5.66 11.8 9.02 5.21 9.28 4.27 6.26 4.19 12.3 9.78 6.92 5.09 10.1 13.7 5.91 7.15 9.59 11.5 10.7 12 11.9 11 6.95 11.6 10.3 9.8 9.08 8.43 0.97 8.89 -0.16 10.4 5.51 9.73 6.96 9.23 10.9 10.8 10.2 8.93 9.23 10.9 5.88 5.68 7.41 6.75 9.82 4.39 3.29 7.83 9.74 5.5 3.3 5.04 6.81 4.3 4.11 5.41 9.29 3.97 5.39 11.5 4.39 4.73 3.95 4.67 6.93 10.4 1.76 5 7.89 7.85 6.21 8.72 7.88 7.03 8.54 4.68 9.05 2.54 4.85 4.53 8.51 1.17 4.56 7.61 4.86 0.45 10.6 1.51 12 2.1 6.9 8.35 1 9.48 14.4 1.47 7.88 8.69 5.61 11 -0.42 8.03 10.8 1.54 10.7 9.29 5.29 9.03 10.7 6.12 10.1 12 8.73 8.76 10.7 10.7 6.57 10.1 2.48 -0.77 9.93 10.2 10.4 9.16 9.41 9.79 9.2 4.26 11.5 8.38 1.49 11.5 8.35 7.99 9.16 7.96 3.71 10.2 4.33 10.7 7 0.04 14.7 9.21 7.63 10.2 9.56 5.56 8.21 11.6 7.69 10.4 8.88 11.7 11.1 8.79 9.24 9.92 7.48 3 0.02 8.93 2.93 8.54 0.76 9.81 6.48 11.6 8.41 15.2 7 0.41 11.1 8.94 11.8 11.8 11.4 8.37 6.97 10.5 6.25 11.7 9.97 9.89 8.16 0.17 10.8 12 12.6 11.3 12.1 11.5 12.9 11.6 7.79 6.45 10.2 10.2 8.55 10.2 8.14 2.26 10.7 10.5 11.4 9.37 10.1 8.91 4.96 10.2 10.9 11.4 6.66 7.68 8.78 6.59 8.82 6.09 9.64 11.3 5.69 9.71 9.37 7.13 10.8 9.57 8.45 9.18 11.4 7.48 5.85 12.7 10.8 11.1 9.46 10.3 8.6 10.3 8.55 9.34 8.76 9.91 8.72 10.6 11.8 10 10.9 7.55 6.41 8.88 9.04 9.95 0.62 7.79 2.81 9.64 7.36 9.87 1.7 9.75 6.18 4.94 9.27 8.44 6.13 8.12 10.2 6.6 7.94 11.6 10.5 10.6 8.74 10.3 8.68 10.1 9.82 8.65 10.3 7.33 0.12 10.9 7.79 6.68 11.4 12.4 10.9 -0.2 10.2 10.5 10.4 11.2 9.77 7.42 2.76 8.64 9.01 9.19 9.23 10.8 10.3 11.3 8.36 1.17 11.4 8.07 2.02 12 12.2 13.4 9.15 9.11 9.4 9.74 10.9 3.4 11.8 0.7 9.34 1.64 8.47 8.27 11.1 11.3 3.08 7.74 8.4 9.06 4.17 7.59 7.67 9.36 10.6 10.2 5.78 7.86 6.06 10.8 7.27 10.8 9.11 8.42 0.16 8.35 10.1 11.8 10.5 10.7 5.63 12.9 3.35 9.71 11.3 12.7 7.27 9.71 7.6 11.5 7.12 10.4 7.14 11.8 10.7 3.09 9.09 1.34 10.3 9.64 10.2 2.36 6.67 8.46 10.7 11 9.05 11.3 8.88 10.5 11.2 10.4 7.86 10.3 11.7 9.53 9.48 8.8 11.3 5.69 10.2 11.1 10.7 2.72 8.59 6.86 10 8.66 12.3 11.1 7.21 11 9.1 10.8 8.31 7.84 9.31 9.49 10.9 11.2 6.92 12 10.8 9.08 9.5 8.33 8.44 10.8 4.03 7.02 12.6 8.04 10.9 0.23 2.3 9.25 11.8 3.26 1.76 7.99 9.02 10.8 5.76 6.21 8.37 8.76 6.76 9.43 5.24 10.3 7.72 1.37 2.25 13.2 8.99 6.46 3.96 4.05 9.56 6.71 0.37 1.79 11.4 9.15 -0.5 6.49 6.18 7.93 8.47 11.8 8.07 10.8 6.78 9.77 6.51 10.7 11 12.6 10.7 8.78 11.8 9.81 2.9 10.8 2.48 0.55 9.91 9.5 9.38 9.99 7.18 4.93 9.76 9.15 4.56 7.5 7.74 9.14 1.95 3.18 13.1 10.2 5.17 10.6 10.2 8.14 8.04 3.59 8.76 12.2 9.47 8 5.24 5.13 9.27 12.9 9.83 5.42 10.4 11.1 8.95 -0.21 10.1 -0.1 11.6 4.25 1.78 2.92 9.37 6.94 11.8 8.12 9.62 10.4 10.3 9.47 8.65 8.13 12.6 6.7 9.87 9.65 9.98 2.91 3.69 1.6 1.28 8.37 7.88 8.52 11.8 10.8 11 7.33 6.56 7.47 7.35 10 11.7 8.67 8.22 9.33 8.05 9 7.89 6.74 7.73 9.27 9.3 11.5 0.02 9.94 9.95 8.02 7.43 11.4 10.1 10.2 8.42 7.45 1.8 8.2 9.45 5.23 14.2 9.27 4.46 11 4.1 1.73 3.01 6.96 1.95 9.82 8.52 1.41 10.5 10.9 10.1 9.48 10.4 11.5 10.7 9.06 8.87 7.46 4.48 5.97 9.18 9.08 6.69 8.46 9.99 5.77 8.62 11.3 8.92 11.6 10.2 9.01 9.41 0.89 8.56 8.23 7.56 9.62 9.21 5.14 7.6 -0.04 12.4 8.6 9.12 10.4 12.2 5.38 3.91 2 9.98 10.6 8.95 13.2 10.3 8.8 4.13 9 8.51 5.83 9.73 10.8 9.76 9.42 8.11 8.5 8.91 8.45 9.11 7.01 11.9 5.83 8.67 9.83 10.8 11.4 7.33 6.32 9.28 3.3 9.07 2.13 7.7 6.91 5.97 10 9.54 9.35 8.2 11.3 4.49 1.86 11.3 9.09 8.76 9.68 9.01 5.99 9.22 10.3 10.6 10.5 5.73 7.02 6.37 7.34 5.63 8.66 9.3 8.65 12.1 8.18 4.96 9.88 9.02 8.59 5.78 1.31 8.31 0.04 9.61 7.9 3.57 8.18 7.56 10.1 5.96 9.43 8.62 8.16 9.17 8.65 8.63 10.5 5.66 10.5 10.6 11.9 8.33 11.8 10.7 3.38 6.53 5.91 9.95 7.78 1.48 10.2 0.5 5.12 8.58 9.41 12 10.4 3.81 0.99 9.48 9.08 6.25 4.49 8.95 14.3 7.92 7.45 8.3 12.6 9.85 2.89 7.36 0.33 7.38 7.21 6.49 12.2 8.28 6.39 8.19 10 7.96 10.2 8.42 6.69 13.7 3.19 8.83 11.1 10.1 9.47 8.53 9.26 9.92 9.3 9.51 7.43 10.7 13 10.7 10.4 9.95 10.6 7.87 14.1 13 2.98 11.4 3.73 8.32 9.12 10.5 8.36 6.18 3.84 10.6 9.74 11 8.51 9.88 10.8 6.45 5.62 7.38 5.59 5.47 9.19 8.44 7.84 7.9 6.97 10.3 8.51 11.1 8.4 2.09 9.48 8.59 11.6 12.1 10.6 8.39 9.7 6.8 0.42 11.6 0.98 0.24 11.3 12.3 9.48 12 10.6 9.11 5.44 1.64 6.27 9.37 9.75 11.4 7.83 12.5 10.1 10.9 8.6 7.44 9.57 10.2 7.77 10.9 13.1 11.6 8.47 7.97 9.05 13.6 10.8 12.4 7.9 6.71 6.36 6.73 6.87 7 10.1 6.04 11 10.4 10.9 12 11 12.7 10.8 11.8 12 10.5 11.5 2.46 6.74 9.22 10.4 9.78 1.91 8.99 6.62 10.2 10.7 5.81 8.43 7.38 9.86 7.7 5.74 7.37 10.8 10 7.38 11.3 8.04 4.36 8.86 8.87 12.1 11.7 8.79 7.45 10.1 7.8 10.8 10.9 9.31 1.82 11.6 9.9 12.3 0.73 8.9 12.6 10.8 5 11.4 6.72 9.84 11.7 2.08 7.73 11.3 11.6 11 8.25 10.5 -0.03 4.98 0.15 13.5 1.8 5.61 4.49 11.6 10.5 1.1 4.01 6.08 2.42 11.4 11 8.48 5.01 11.7 7.56 5.14 11.4 11 9.17 7.03 11.2 10.3 11.5 9.38 8.49 9.83 8.76 9.07 9.19 0.89 8.23 11.1 8.72 6.67 0.12 9.43 6.66 10.7 12.7 7.96 17 9.82 10.2 1.3 9.74 2.27 3.77 10.4 0.18 8.66 9.22 9.94 -0.26 8.4 3.33 11.1 11.4 9.64 8.87 9.14 4.89 2.17 8.48 9.07 -0.13 6.76 6.83 11.7 3.93 7.02 11 2.35 8.43 9.22 0.26 9.43 11.6 7.59 10.6 8.26 11 1.37 10.5 8.67 10.4 8.89 10.1 6.82 9.02 8.65 8.39 3.75 9.88 8.5 10.7 10.1 11 8.56 10.8 10.1 11.2 9.02 10.2 10.7 10.2 1.85 8.73 10.1 5.55 5.44 7.79 4.16 9.07 11.7 0.03 -0.02 4 8.74 0.6 12.1 9.33 9.55 10 6.44 8.85 0.58 8.58 11.4 4.03 7.84 2.09 2.55 4.16 8.02 8.46 7.22 2.11 12 8.79 8.5 10.4 15.1 14.9 14.2 12.9 10.6 11 14.5 0.64 16.4 11.9 13.2 13.7 13 14.5 13.3 11.6 13 11.1 14.1 3.81 12.8 12.6 8.08 13.2 13.9 13 14.7 13.6 13.2 12.7 14.1 12.9 12.3 13.5 12.2 15.1 13.9 12.8 8.85 9.57 14.1 7.14 14.7 14.7 12.9 9.56 6.82 12.7 13.2 13.4 14.4 12.4 14.7 1.15 3.1 6.06 5.42 7.96 12.9 1.85 2.49 15.1 9.86 9.56 10.4 9.46 9.87 13 14.3 12.9 12.1 13.3 13.7 12.8 13.8 12.6 13.6 12.2 13.5 7.21 13.6 12.5 14.7 13.5 13.2 13.5 12.6 8.57 7.11 14.2 3.41 13.7 8.34 9.01 12.9 10.1 11.2 10.1 9.07 2.29 7.52 11.4 10 3.74 5.89 12 8.63 10.8 7.06 4.43 3.49 4.41 1.64 10.4 14.5 5.8 9.07 0.26 14.9 10.8 11.3 13.9 13 4.29 9.74 6.67 7.77 10.1 9.41 11.1 2.59 6.56 9.32 11.2 9.77 12 11.4 9.31 6.92 11.8 10.7 11.3 6.66 9.78 9.26 9.17 14 3.83 7 7.23 5.01 8.25 4.04 4.92 0.12 13.1 5.97 7.74 3.87 8.45 10.8 6.87 2.75 2.98 8.99 11.1 2.6 0.84 5.88 3.69 -0.33 1.73 5.54 7.48 4.62 5.35 7 8.73 6.44 -0.22 2.34 8.97 0.22 2.73 6.67 4.68 4.45 12.4 8.93 13.2 6.62 1.19 9.24 13.3 12.4 6.48 10.2 9.43 4.17 9.58 9.62 12.5 8.78 9.88 10.3 8.82 4.98 9.11 6.65 7.01 8.61 9.71 8.77 10.6 7.55 9.38 10.2 8.45 3.13 7.58 10 10 11.2 5.75 8.44 3.34 0.88 9.19 7.68 8.43 7.6 7.91 7.65 6.36 10.3 8.86 7.63 7.06 5.09 10.2 8.46 10.6 5.52 10.2 4.19 7.7 8.4 9.92 7.23 0.87 12 6.89 4.79 4.71 5.19 6.61 11.5 7.86 9.97 3.34 15.2 2.85 4.27 8.95 8.94 2.06 6.18 7.12 12.2 3.22 9.86 7.43 0.75 5.12 7.48 6.6 6.53 7.85 6.37 7.92 5.76 6.98 7.71 9.9 8.61 12.7 9.22 7.8 9.84 8.69 7.55 8.51 6.37 11.4 6.44 4.13 8 2.98 9.72 5.77 9.17 2.19 7.11 0.49 10.4 8.9 4.02 7.41 5.23 8.74 10.9 9.92 9.78 11.8 5.85 8.15 5.13 3.99 4.67 7.28 3.05 9.73 13.4 0.13 5.87 7.25 10.1 9.83 12.3 10.7 7.78 7.86 8.95 9.32 4.34 6.59 9.37 8.93 9.55 11.1 5.88 12.4 8.82 8.38 7.33 4.97 2.22 9.27 1.6 12.1 1.5 11.4 11.7 5.35 9.42 7.24 8.37 4.48 8.08 9.45 6.45 6.03 10.7 2.53 4.77 1.06 2.35 11.7 2.05 0.26 12.1 10.3 9.63 10 10.7 8.21 7.08 10.8 8.42 7.26 9.56 10.4 9.97 9.82 6.28 8.93 6.34 4.43 0.04 2.65 5.64 11.3 9.95 9.21 4.03 11.8 7.83 0.75 0.64 8.98 7.52 9.53 0.82 0.37 8.68 6.89 6.7 8.71 5.05 4.05 2.73 0.25 0.83 7.19 9 3.16 11.2 10.1 1.7 10.4 9.81 8.89 9.02 5.07 3.61 5.5 4.25 6.42 9.08 9.66 6.38 -0.35 4.81 1.86 9.09 1.64 9.6 8.51 5.98 8.76 7.85 9.65 12.1 9.35 10.6 9.28 7.69 9.2 10.9 9.95 8.97 9.31 10 2.93 6.88 0.05 1.62 2.19 5.7 4.41 2.9 10.7 3.35 5.83 0.15 9.19 0.82 8.89 8.34 0.17 9.49 -0.41 5.21 0.08 8.38 6.88 3.1 1.73 11 3 0.63 9.27 1.11 10.5 9.64 4.11 -0.72 1.84 1.71 1.4 10.3 0.39 2.79 4.2 3.49 4.09 2.57 1.18 7.82 1.52 2.66 8.27 8.51 10.3 2.68 9.94 1.55 4.82 2.51 9.55 0.03 8.45 2.01 12.3 3.21 10.5 2.08 4.34 8.53 2.89 5.4 8.37 9.7 10.1 5.16 8.93 0.31 1.26 3.66 0.87 3.86 2.7 10.5 6.75 6.18 7.9 9.82 10.9 12.2 6.59 3.79 7.95 12 4.37 6.3 9.58 9.3 9.43 10.8 10.1 9.06 9.16 6.55 7.9 10 8.72 7.14 11.6 9.36 10.5 8.58 7.08 10.3 9.11 8.3 10.5 9.82 10.4 11 8.12 9.27 6.49 7.65 12.6 7.61 9.41 9.22 9.59 7.99 8.15 9.28 8.27 0.14 10.3 10.3 7.4 6.62 7.95 8.14 8.43 4.7 10.6 13.2 7.05 4.37 9.24 8.55 2.14 6.52 6.04 3.2 9.74 8.84 10.5 11.3 8.01 7.61 8.9 9.71 10.3 3.66 11.6 9.04 9.42 7.53 8.3 10.7 9.43 13 10.6 8.28 8.25 8.01 8.31 7.97 9.48 11.5 6.53 1.52 3.68 3.45 9.77 6.67 10.8 4.5 9.51 5.25 8.55 9.78 8.7 2.01 9.12 6.7 5.78 8.35 8.34 7.29 3.91 11.2 6.46 9.87 4.92 7.6 9.96 8.02 10.2 3.09 9.73 8.18 9.24 9.7 10.4 11.3 9.13 9.11 8.85 9.3 9.68 9.32 9.26 8.99 3.09 9.33 11.8 11.1 9.6 7.47 9.41 9.63 4.24 9.6 9.41 7.54 2.76 2.67 8.26 4.47 10.4 9.66 9.71 2.4 10.1 6.97 8.3 0.67 10.2 8.48 8.62 9.38 9.15 10.7 8.62 12.1 6.86 9.97 2.65 13.6 10.5 10.4 9.86 10.8 1.6 9.55 11 12.3 10.7 14.5 0.46 11.7 4.85 6.77 1.71 5.3 12.6 0.51 11 9.47 4.96 4.66 9.73 8.33 10.4 10.4 7 8.45 9.67 8.09 7.45 11.6 10.7 3.06 1.71 4.88 2.4 3.43 5.24 0.93 7.78 3.52 1.79 3.78 8.55 1.12 12.8 3.97 6.45 0.26 0.07 5.35 2.74 10.1 8.64 2.75 5.9 4.39 0.34 0.32 8.61 12.6 8.99 9.6 10.3 2.98 4.02 4.92 7.97 0.4 9.73 5.29 5.27 1.52 2.87 9.24 0.85 7.12 5.92 1.23 5.71 0.55 12.1 6.33 -0.03 6.53 1.12 10.4 10.5 8.45 6.33 -0.35 8.33 6.36 2.19 8.33 1.79 7.46 0.87 4.32 10 3.23 4.91 2.33 4.23 6.37 0.34 6.83 -0.48 10.5 0.79 8.09 11.4 2.53 7.72 13.1 8.59 8.63 -0.01 4.05 8.16 10.4 10.7 11 8.86 8.71 1.26 8.31 6.54 7.62 1.88 6.09 11.6 12.2 12.2 11.1 11 10.5 11.9 7.19 8.45 9.9 11 10.8 10.2 8.4 7.92 9.2 10.6 7.01 5.35 7.83 11.5 7.02 9.83 9.63 9.95 7.94 8.31 8.91 8.76 0.8 4.7 4.46 7.4 10 9.85 11.4 10.7 9.91 6.94 8.72 8.41 11.5 2.17 10.5 9.06 8.53 8.12 6.82 10.1 11 11.8 7.58 5.22 2.98 10.5 8.87 9.49 7.84 8.37 8.27 6.93 14.3 11.1 9.67 9.19 12.4 11.3 10.2 9.75 9.91 11.8 10.9 9.95 9.83 9.99 6.8 12.3 8.86 6.82 11.4 9.77 11.5 10.4 1.47 10.9 5.93 13.4 7.98 12.1 9.64 12.3 10.2 11.9 10.6 10.5 11.5 9.77 1.53 9.56 2.54 9.35 9.19 12.1 8.59 14.1 11.7 8.42 11.3 8.21 9.66 4.72 14.5 9.71 9.92 7.29 1.09 10.4 3.31 11.4 6.47 11 11.3 9.29 7.75 13.3 -0.18 7.57 14.6 11.4 12.6 11.6 9.9 1.39 11 8.75 11.1 12.4 9.83 9.48 11.8 11.2 8.65 10.7 8.25 10.7 11.3 9.92 11.4 11.2 8.54 10.6 11.6 10.1 12 11.5 11.4 11.9 10.7 12.4 8.12 2.69 -0.13 11.1 11.6 12.6 11.1 3.47 13 3.16 13 11 12.3 6.34 8.67 10.6 1.64 1.91 2.89 0.67 0.92 3.1 2.09 2.75 11.4 2.86 0.36 1.84 5.61 13.8 12.1 9.85 10.5 10.9 7.43 9.7 8.11 8.47 10.1 10.9 9.58 3.7 5.17 10.8 9.8 7.91 2.27 9.47 8.12 8.67 9.01 8.95 10.5 11.2 10.1 10.5 7.59 8.61 2.54 14.5 5.83 7.26 9.81 10.1 4.69 11.7 9.22 8.64 9.3 12.4 8.79 9.24 7.63 9.37 11.2 8.07 10.2 10.4 2.43 9.59 4.14 -0.25 4.3 13.9 5.86 7.86 0.28 3.02 -0.04 10.5 10.8 1.11 11.4 7.33 10.4 11.1 9.34 8.34 12.1 6.98 10.1 11.3 12.5 10 9.06 8.45 7.31 7.74 9.63 5.14 1.04 11.4 12.7 11.6 10.7 12.4 8.93 8.58 12.5 6.21 0.1 8.88 10 7.39 10.2 9.04 9.14 7.87 6.86 4.12 8.3 5.28 6.36 12.6 7.78 9.27 3.31 5.2 5.9 10.1 2.93 1.05 10.4 -2.21 10.1 9.99 7.24 2.5 11.5 7.2 9.75 9.23 8.96 10.9 1.92 11.5 9.14 9.16 10.9 9.29 9.81 9.87 7.89 11.8 5.27 11.7 0.62 0.15 8.08 9.88 10.1 5.72 9.83 9.53 8.85 6.6 10.9 10.9 8.92 9.57 3.57 2.41 9.01 14.1 9.8 6.28 11.1 1.73 9.81 9.06 0.86 9.21 1.84 9.82 9.53 9.02 8.46 5.75 9.72 12.3 7.71 9.86 3.09 10.3 7.03 11.4 7.47 11.3 10.2 10.2 9.88 8.89 0.94 15.5 12 4.77 10.5 7.24 7.81 10.5 12 11.9 0.32 12.7 14.4 12 8.41 11.2 7.95 5.62 9.3 0.97 9.19 7.76 0.01 10.9 11.2 11 10.6 9.41 8.18 12.5 11.8 14.5 1.86 11.1 11.2 10.7 9.34 12.9 6.92 8.9 9.04 10.8 8.85 8.4 13.4 12.3 5.91 10.8 7.71 7.11 16.7 10.9 4.63 6.49 10.6 6.9 7.6 7.09 10.1 10 7.09 10.8 14.7 10.2 5.52 2.84 3.66 5.25 10.4 12.4 11.2 10.5 7.97 11.8 8.63 0.08 5.95 0.43 8.68 10.2 3.24 12.1 6.62 12.8 12.6 7.89 2.87 12.3 11.1 9.44 10.7 10.3 9.77 12.3 8.36 11.3 12 8.89 12 0.59 14.1 12.3 12.1 8.49 13.3 14 8.71 10.3 12.2 8.71 15.8 -0.2 12 8.49 10.1 14.4 6.21 8.7 8.94 8.57 7.23 7.49 10.6 0.32 12.4 12.9 10.4 8.64 0.48 8.43 0.08 1.52 6.88 6.76 7.43 1.21 4.27 4.53 11.3 9.8 10.7 0.43 10.4 0.02 9.86 10.4 8.07 8.98 8.08 8.29 10.9 9.52 10.4 11.5 8.55 3.3 8.79 9.24 6.47 7.68 10.9 5.68 5.75 4.14 7.15 8.68 11.3 7.52 8.28 4.5 2.06 3.71 5.24 7.03 2.04 8.07 11.7 4.12 7.65 8.6 9.22 4.89 8.37 0 3.86 5.55 11.8 8.42 5.65 2.84 7.17 8.23 6.68 5.06 8.68 -0.42 7.9 9.21 3.78 1.66 6.25 9.71 11.3 0.92 13.3 3.1 5.04 1.17 4.94 0.62 5.48 5.47 7.67 5.22 9.07 2.07 0.89 10.1 5.63 9.28 1.84 4.58 5.53 7.37 2.47 4.4 5.23 7.1 2.95 5.38 -0.21 6.41 4.27 -0.31 6.12 5.04 4.52 2.29 6.87 11.9 8.32 4.93 9.55 2.25 5.42 11.2 5.71 4.08 2.4 7.84 10.2 3.61 2.76 4.91 10.2 7.59 8.02 1.41 7.12 -0.35 8.51 6.35 1.19 4.02 2.3 6.97 6.1 8.69 9.13 4.42 3.36 8.01 0.65 10.3 2.04 12.2 3.31 13.4 15.3 12.2 1.7 8.62 10.6 10.3 9.61 11.1 12 9.98 7.85 10.6 9.81 12 10.8 1.01 10.9 10.6 11.7 10.6 11.1 9.62 11.2 10.6 11.1 8.8 9.28 1.8 0.65 8.67 2.67 10.6 3.55 9.37 9.01 11.1 11 0.76 9.07 8.9 8.44 9.94 10.3 8.58 9.33 1.55 11.5 -0.25 11.8 11.8 11.8 8.94 10.6 9.79 7.03 8.65 8.72 10.6 1.19 11.3 8.94 9.47 8.94 9.79 9.93 5.57 11.5 10.4 7.21 13 13.6 12.5 11.3 9.95 9.01 11.5 9.84 9.86 3.75 9.56 0.05 12.7 13.8 6.54 1.56 7.98 3.6 3.62 7.97 9.66 9.6 10.1 -0.59 6.66 11.5 13.5 6.36 10.4 12.1 9.85 9.87 6.09 10 11 9.48 11.9 10.3 4.47 0.19 3.56 8.93 4.5 7.72 10.9 0.49 5.51 2.35 3.94 6.55 1.57 8.24 9.06 4.27 10.1 3.92 3.07 0.34 5.49 7.79 9.4 5.36 9.93 1.56 12.8 5.68 6.22 9.01 7.1 7.91 13 6.61 11.8 11 13.7 8.25 14.1 12.7 12.2 16.2 4.22 11.8 11.2 6.78 12.2 8.54 9.77 8.53 6.1 6.01 8.22 7.32 9.45 6.71 13.3 6.72 9.44 6.82 6.61 8.04 6.03 7.48 5.21 6.6 7.72 8.86 9.64 7.62 10.6 7.33 8.24 5.63 8.7 8.96 10.8 6.64 9.41 7.67 7.27 6.92 5.5 6.58 4.87 7.12 12.9 3.33 -0.02 4.14 5.9 8.36 6.71 7.68 6.78 5.56 0.24 7.85 1.88 5.49 7.4 7.35 -0.53 1.63 2.5 8.23 2.58 13 5.47 2.21 2.98 2.11 -0.6 0.49 3.44 8.93 10.2 4.7 8.82 8.22 6.24 8.01 5.82 7.08 7.39 5.11 6.52 9.1 8.57 9.66 8.27 10.1 10.2 10.5 8.38 12.2 4.45 4.41 1.28 10.5 4.76 9.07 6.72 6.82 1.8 6.64 5.81 4.32 7.85 7.09 10.9 0.12 6.26 6.94 8.07 5.96 7.46 7.21 10.5 6.89 7.78 6.82 7.58 11.1 4.12 2.8 7.62 1.77 2.7 11.6 10.9 2.74 4.96 3 4.94 2.42 4.56 3.7 2.64 3.62 7.03 8.41 8.44 0.56 5.08 6.68 6.1 7.33 6.18 12.4 10.7 10 12.8 3.48 11.8 8.58 11.8 3.33 13.8 9.69 11 6.52 4.12 9.75 12.7 8.37 9.92 9.96 8.93 11.1 6.95 3.04 2.15 11.2 9.08 9.19 6.1 8.63 9.25 9.04 9.39 10.4 9.86 11.3 12.6 6.52 5.2 11.3 2.73 7.88 8.7 3.44 6.45 6.56 9.63 8.87 8.31 8.79 2.22 3 10.7 11.7 5.68 10.3 10.4 9.07 8.52 8.65 7.48 9.07 7.42 10 0.05 9.65 10.5 8.99 6.36 6.97 10.6 8.73 1.32 15.9 10.7 7.68 7.24 9.02 8.96 8.66 9.44 9.24 4.84 9.87 10.7 7.16 9.12 8.77 9.28 11.6 8.25 8.93 10.6 8.05 7.71 11.1 9.95 10.8 6.91 8.36 8.13 10.8 7.21 8.69 9.66 6.98 9.27 8.88 9.53 10.6 10.3 8.55 7.81 9.15 6.19 7.13 7.32 3.42 9.78 7.43 7.77 7.84 11.2 9.61 10.6 12.2 6.94 7.48 9.07 6.61 11.6 11.8 6.14 8.64 9.59 11.8 9.81 7.4 9.34 5.55 6.73 4.93 5.77 6.3 9.91 5.54 8.8 10.2 7.72 12.2 7.92 6.58 0.79 5.51 8.25 11.6 5.06 8.58 7.41 3.37 9.19 8.69 7.09 3.66 6.26 6.56 11.6 10.2 8.91 7.18 11.3 11.2 9.11 8.45 11 9.53 7.14 6 1.38 10.1 0.08 6.8 0.83 9.42 4.51 10.7 8.99 6.16 1.04 5.44 2.54 5.97 1.83 5.61 6.36 7.83 6.29 6.75 9.01 7.61 9.06 1.47 9.49 7.04 8.57 7.14 2.9 4.34 2.77 11.3 8.42 6.66 2.36 8.88 12.5 7.98 7.47 8.55 10.6 10.9 7.95 7.45 8.9 12.7 8.62 9.33 8.7 9.13 9.71 8.81 8.18 7.36 11.1 9.02 3.85 7.52 6.74 8.43 2.91 8.97 9.77 8.38 5.81 8.51 8.39 9.03 9.37 5.3 4.95 7.63 3.97 7.64 5.78 9.47 3.77 7.15 8.58 4.61 6.95 7.03 8.96 9.13 9.96 7.14 8.7 3.39 8.76 9.63 8.22 9.46 8.62 11.8 9.27 6.64 9.83 3.4 9.67 7.97 10.7 9.06 5.36 7.62 9.52 10.9 10 4.32 7.95 9.15 9.89 8.31 9.67 7.74 2.49 8.37 7.65 11 9.05 8.78 5.01 7.41 8.99 4.25 8.76 9.51 8.99 8.62 9.39 7.95 4.53 7.63 10.2 7.85 9.64 9.37 9.04 8.98 12.6 9.16 10.6 8.79 5.68 9.43 10.3 9.76 13.4 10.4 9.79 0.36 6.9 8.72 5.59 9.29 8.56 6.68 3.9 8.97 6.99 8.24 8.06 7.31 8.1 5.43 1.71 7.5 6.67 10.3 1.98 0.58 9.85 2.56 8.65 10.7 8.38 8.32 6.87 6.63 7.03 6.74 5.8 7.97 7.74 10.6 8.74 9.69 6.64 8.62 8.94 6.61 9.51 7.41 9.42 9.9 0.43 7.76 10.8 8.95 3.91 10.2 11.3 9.45 11.4 8.85 9.04 7.57 7.34 5.64 9.31 -0.02 7.63 5.72 7.31 8.25 6.24 10.9 7.85 10.6 5.35 9.18 3.49 10.7 6.94 4.28 9.27 2.58 6.13 5.49 1.64 6.91 10.7 9.09 9.37 4.13 10.8 6.88 9.75 2.54 11.1 6.59 6.98 10.7 8.67 4.23 6.36 4.38 6.72 6.01 5.47 7.38 9.31 0.01 10.6 2.45 0.24 4.71 6.11 0.76 7.29 1.45 6.19 8.84 6.21 1.55 8.11 9.17 8.11 10.5 11.4 8.12 9.73 6.06 7.57 9.66 9.64 7.43 6.67 8.77 11.7 7.66 5.52 8.59 9.33 8.13 11.8 9.2 4.46 11.2 10.5 7.72 5.55 5.79 7.59 5.28 7.06 9.73 9.93 9.04 8.32 4.73 0.51 10.2 7.87 8.64 8.91 2.2 9.22 11.1 6.53 0.17 5.07 3.25 2.91 6.88 6.52 6.05 3.11 9.8 0.65 7.32 2.97 9.63 10.6 10 1.52 8.29 8.82 3.46 8.81 -0.15 2.53 9.9 4.32 11.5 3.48 6.58 7.38 8.39 7.23 6.9 7.59 8.24 6.9 7.96 11.2 3.82 5.7 11 8.05 9.36 8.45 8.95 7.43 7.74 7.51 9.56 9.69 2.79 7.13 3.6 14.1 5.6 -0.24 9.22 9.34 10.2 7.75 7.63 7.32 8.93 10.3 11.2 8.15 8.93 9.41 9.95 7.85 9.27 8.23 6.28 9.33 9.16 9.87 9.33 8.81 1.79 0.53 6.16 0.44 10.9 6.15 9.89 1.34 6.23 2.38 0.87 6.85 10.9 13.9 4.28 8.1 7.78 5.81 6.6 0.48 10.6 6.64 6.86 4.39 5.91 7.7 9.5 6.08 9.65 10.1 3.98 9.25 10.2 9.63 8.6 4.47 9.66 9.54 11.4 10.1 4.5 8 6.84 8.28 8.09 7.67 9.12 6.25 6.94 10.4 4.8 9.15 7.19 10.3 9.47 8.74 8.45 10 5.18 0.27 10.9 10.8 10.8 7.75 10.8 10.2 10.6 8.57 9.2 9.19 8.03 3.51 11.9 8.84 7.66 9.03 9.21 9.22 6.74 9.15 9.74 4.39 11.3 9.11 5.45 6.93 4.27 9.48 10.3 8.25 2.98 9.23 4.93 6.66 9.54 8.59 8.77 8.74 9.99 5.45 10.3 9.47 2.76 6.48 12 8.56 5.81 8.01 9.76 9.09 5.82 8.64 11.7 6.61 7.33 5.59 6.2 7.48 8.9 3.95 5.12 6.88 8.43 7.55 7.86 8.32 10.7 8.21 8.65 11.3 2.29 3.94 10.9 8.28 3.97 7.68 4.44 10.7 3.21 9.73 10.4 9.4 4.99 10.5 6.4 10.1 10.7 4.95 12 8.59 13.3 8.95 9.28 9.89 9.61 4.49 8.6 5.08 7.42 9.06 5.01 2.39 11.4 8.79 9.59 4.76 5.67 5.9 4.98 3.07 6.63 7.86 7.08 8.58 5.6 6.16 4.7 7.7 6.86 11.3 7.14 7.71 7.44 7.09 6.5 4.56 12 7.28 11.2 12.5 7.76 11.5 12.6 11.7 8.42 9.2 9.21 6.48 9.29 6.17 8.89 10.8 11.6 7.16 9.65 0.22 11 8.64 9.99 10.6 10.4 9.43 4.79 4.71 6.22 0.93 12.4 9.25 8.77 7.34 10.9 1.56 11.2 12.5 7.11 0.81 2.93 6.39 2.7 7.98 10 5.74 12.6 12 13.8 1.51 10.3 0.27 4.02 1.59 11.7 12.2 9.64 6.9 6.56 14.6 10.9 9.96 8.97 2.72 6.97 3.8 1.4 11.5 5.56 8.16 10.4 9.57 13.3 12.2 6.08 7.9 9.24 7.99 10.5 5.61 8.89 11.2 9.65 9.73 7.09 9.21 8.74 9.5 9.64 8.76 11.8 0.18 9.33 6.26 7.8 8.44 7.84 7.63 9.49 5.04 8.82 5.39 7.64 10.2 9.99 12.1 8.95 10.2 10.2 8.45 10.2 11 10.2 4.15 0.59 7.4 11.5 10.9 9.17 2.2 9.44 8.55 8.16 8.9 5.41 11.2 10.3 10.9 10.8 10.3 9.07 4.55 4.55 9.95 2.11 7.73 10.4 0.18 9.94 8.26 8.6 8.78 5.24 7.92 3.56 4.64 1.76 9.99 10.5 9.76 9.17 10.6 8.17 8.81 5.42 9.09 1.78 10.9 6.23 8.78 10.9 6.09 9.79 9.08 12.9 9.84 7.63 9.23 11.4 8.9 8.88 -0.17 8.94 9.77 2.31 9.51 8.24 7.28 11.1 4.84 8.61 5.98 6.82 10.5 2.65 13 11.4 7.72 9.2 13.8 8.38 8.81 8.09 11.8 8.42 8.71 8.46 8.74 8.84 7.99 14.2 7.61 10.5 11.4 13.1 9.77 11.2 11.2 3.93 11.4 10.3 6.97 9.66 7.82 7.55 9.84 -0.18 7.56 2.12 10.7 12 9.23 4.04 9.03 -0.22 11 11.5 12.6 9.07 6.17 13.1 8.72 9.54 6.49 9.99 9.33 7.76 8.75 11.9 1.81 10 8.63 12.8 8.12 7.04 1.52 0.23 9.61 0.72 -0.23 -1.5 6.11 -0.95 5.4 1.98 1.08 8.79 10.5 0.79 3.82 -0.2 0.13 -1.75 -0.72 9.88 3.95 9.93 11.6 10 7.47 7.31 3.47 2.44 3.34 8.22 8.36 -1.65 8.17 7.88 7.3 7.73 7.33 3.05 4.52 7.49 6.5 7.81 0.84 7.33 12.3 10.9 5.71 10.8 -0.76 0.22 0.26 1.42 4.43 -0.67 8.5 9.38 9.59 9.28 7.18 9.87 8.48 -0.1 7.86 0.25 0.9 -1.34 -0.61 9.26 5.03 5.5 8.6 7.66 9.39 7.19 8.47 0.11 8.29 9.45 10.3 9.98 7.89 -1.3 3.02 6.6 9.84 9.93 -1.11 8.54 10.1 9.28 8.51 3.65 2.55 1.84 0.14 10.6 0.04 8.56 11.3 7.67 -1.13 8.91 9.05 9.15 2.13 8.53 9.22 0.84 0.07 7.58 10.1 4.77 8.18 7.16 7.82 4.92 8.6 10.3 8.53 3.91 -0.17 2.08 8.85 1.79 5.96 11.6 9.98 8.76 7.24 9.2 11.1 0.54 3.34 7.93 11.8 9.6 9.19 2.6 5.69 5.19 7.39 3.41 2.05 9.53 6.38 6.37 9.01 8.12 7 9.09 10.7 8.71 9.84 9.01 4.08 9.4 2.24 10.3 -1.19 1.24 -0.43 2.79 1.7 0.67 -0.1 0.62 7.15 10.9 7.4 7.37 9.7 8.76 7.66 8.95 8.02 2.92 11.7 10 9.45 8.8 7.26 2.51 -0.04 7.3 3.67 6.46 10.4 7.66 10 3.02 10 10.3 5.53 6.59 7.79 3.33 7.52 4.87 4.24 11.3 10.3 7.94 13.3 9.61 9.53 7.61 11 9.55 3.99 8.98 5.63 9.13 7.06 8.66 7.28 12 7.18 0.33 8.07 8.29 9.12 7.43 6.66 13.9 2.39 4.82 6.92 0.61 3.82 7.07 9.08 9.4 8.47 10.3 6.6 5.88 9.51 9.19 2.08 8.39 6.41 1.61 5.66 7.88 4.26 8.21 10.6 11.6 8.19 7.03 10.4 9.57 8.33 8.8 8.73 7.14 7.99 9.56 8.61 7.31 7.05 10 8.31 6.35 9.16 8.98 11.1 3.11 10.7 7.19 10.6 9.9 7.03 10.9 10.2 8.97 9.58 7.29 4.25 4.45 4.87 10.6 4.91 9.34 9.49 12.4 12.7 0.67 5.6 9.09 10.9 10.4 5.97 7.46 6.09 8.05 -0.06 6.95 3.36 7.73 6.89 3.62 5.63 7.2 6.85 5.05 2.39 0.09 10.6 11.2 11.3 8.42 8.67 1.72 8.44 8.88 9.26 10.4 9.67 11.8 0.39 9.41 7.57 5.59 5.64 8.53 9.82 9.33 0.87 9.33 8.25 7.89 9.03 10.3 7.14 8.57 8.64 7.58 9.17 8.44 9.95 8.5 11.3 9.61 9.66 7.33 6.18 7.37 6.32 4.72 7.38 12.7 10.4 5.67 7.58 8.27 9.41 10.2 7.85 9.53 8.23 9.16 6.83 7.3 10.2 9.51 10.4 7.08 9.91 8.79 8.71 8.76 6.49 9.62 6.3 8.18 8.09 5.39 8.27 7.6 0.78 9.5 9.4 8.99 9.71 7.94 6.23 8.66 10.1 7.82 9.79 8.21 10.9 10.1 8.8 3.8 8.86 5.23 7.08 8.02 1.16 9.93 10.2 8.8 9.24 9.59 7.39 8.87 8.46 10.7 0.66 11.9 11.2 10.2 4.8 10.6 7.7 10.1 1.09 10.1 1.41 8.9 7.77 9.98 8.52 7.35 8.47 7.23 7.04 8.02 8.44 9.07 10.7 4.21 10.7 8.32 7.18 9.46 8.99 8.56 6.77 7.87 8.31 10.1 4.35 9.46 7.16 0.47 2.24 4.67 2.27 9.7 9.28 12.1 5.89 2.42 4.62 11.2 7.67 9.32 9.65 10 4.7 -1.11 4.34 10.1 7.77 8.35 8.96 9.22 9.26 8 9.52 10.5 2.79 10.5 5.61 8.23 9.81 6.45 9.09 8.16 12 9.25 7.61 7.96 0.63 9.28 9.41 10.1 0.6 9.61 7.4 3.24 12 9.42 8.11 6.2 4.66 0.55 8.53 8.62 8.75 4.31 11.7 8.07 11.4 0.94 2.04 8.06 9.78 11.1 7.29 8.44 9.37 10.8 4.73 0.79 6.02 2.09 9.79 10.3 11.9 9.96 12.3 5.79 9.22 0.46 9.3 7.2 0.25 6.07 8.18 10.1 0.59 4.63 5.85 6.68 2.45 4.56 0.38 10.6 6.02 0.42 4.26 9.45 9.04 4.79 8.09 2.26 9.62 9.52 7.62 6.9 12 6.11 12 6.43 4.76 -0.3 4.11 10.2 7.59 6.44 7.58 7.65 9.81 6.22 8.34 7.46 5.04 5.96 5.91 6.51 9.29 12.2 6.19 9.3 4.93 6.65 7.96 9.98 3.62 7.64 3.21 5.13 8.09 8.45 8.67 6.36 3.22 4.42 6.65 11.3 8.13 7.57 8.45 11.2 0.22 6.34 8.95 4.52 7.36 9.95 9.04 5.05 8.07 -0.56 5.66 9.54 3.61 7.05 5.74 7.83 9.57 7.48 10.1 5.82 9.11 7.84 8.23 8.73 7.78 0.26 5.28 7.84 11 7.88 6.17 8.45 8.86 9.23 9.98 9.99 10.3 9.44 0.11 7.55 9.61 4.89 8.7 10.4 9.51 7.3 9.13 9 4.46 10.2 7.66 6.63 6.36 9.59 9.64 9.73 11.5 4.23 9.39 3.6 8.75 3.89 11 11.5 10.4 1.85 7.45 6.99 9.07 6.09 9.05 10.2 10.1 9.52 6.94 8.03 9.4 9.41 8.13 9.37 9.81 6.94 9.45 3.63 5.93 8.03 0.31 8.91 8.81 7.23 7.23 7.11 9.7 12.4 6.14 6.86 8.25 10.4 7.38 9.41 8.21 12.3 1.62 7.43 12 4.71 7.71 5.39 9.72 7.09 8.56 8.58 9.94 5.49 5.89 9.88 6.86 0.67 6.43 11.5 9.31 8.16 9.71 3.55 0.76 10.2 8.8 8.6 4.69 10.7 4.16 6.05 8.18 0.76 7.25 7.69 9.64 8.94 7.87 7.33 11 9.74 7.81 7.06 8.68 8 7.81 8.62 9.42 9.64 9.48 9.1 8.47 5.63 1.83 7.39 5.12 4.33 8.29 10.3 12.1 10.7 2.3 8.28 0.72 7.2 9.54 8.43 9.96 1.96 0.15 5.26 3.46 10.3 4.94 13.9 9.43 7.19 -0.22 6.04 3.02 -0.1 10.9 6.73 7.97 8.14 9.8 8.67 6.59 8.15 9.29 8.47 8.91 1.91 9 3.88 4.25 12.4 9.51 11 11.5 6.96 11.7 9.33 10.3 6 4 6.15 1.08 6.66 8.2 0.16 13.8 8.77 10.4 10.5 7.38 10.5 10.8 2.3 10 5.8 9.51 10.8 8.83 10.2 6.66 12.5 8.83 8.51 9.55 10.4 9.57 10.1 7.93 9.54 9.92 11 1.93 3.81 10.6 4.66 1 2.71 9.02 6.63 7.79 9.39 9.04 0.57 3.52 12.4 8.37 9.32 7.44 0.94 9.34 8.19 10.4 10.8 10.6 3.93 11.6 11.5 9.83 8.45 9.17 14.9 11.9 8.93 10.4 8.62 10 9.02 4.86 6.58 14.2 8.16 11 9.02 7.27 8.3 11.1 9.4 9.65 4.06 10.3 8.1 10 10.6 8.54 10.9 8.31 11.6 10.8 3.72 3.19 9.83 3.83 8.95 8.9 8.53 13.2 9.71 8.88 6.62 3.51 7.63 3.22 9.52 8.86 9.9 6.47 8.5 9.45 7.15 2.75 8.68 2.1 8.22 6.21 5.96 10 9.4 11.4 11.1 5.38 8.44 11.5 10.3 9.92 12.1 13.5 12.3 7.65 12.4 11.4 11.6 13.3 11.5 10.4 10.5 4.67 10.2 11.1 8.36 11.6 6.08 8.71 10.8 9.44 9.18 11.2 11.1 0.67 7.96 9.24 8.44 10 9.66 3.77 14.3 5.71 10.3 9.42 10.1 6.79 10.3 1.48 0.05 12.6 9.06 9.04 8.63 10.6 7.66 11.7 11.4 10.3 9.44 11.5 9.05 8.77 10.3 9.53 11.1 10.5 10.5 9.43 9.98 3.27 8.48 5.86 5.99 1.34 6.31 7.83 12.1 8.16 4.59 0.82 0.89 8.38 11.1 12.5 6.75 10.1 12.4 12.2 8.35 11.3 9.07 10.3 8.35 10.3 9.63 9.62 10 4.06 8.72 2.89 12.3 7.27 1.01 3.51 3.87 8.26 4.13 7.74 3.31 11.3 7.74 8.22 9.28 1.1 6.94 9.39 10.3 9.84 11.3 8.51 3.19 4.97 1.9 1.22 11 10.4 5.24 12.3 10.7 0.46 9.72 7.31 2.5 10.3 1.38 11.2 2.68 13.9 11.1 10.9 8.07 8.06 5.8 10.5 9.3 8.49 10.6 10.3 0.45 7.29 7.3 10 4.17 8.79 8.67 10.1 8.13 7.99 12.2 7.82 7.81 10.6 1.76 1.28 9.45 3.59 7.71 9.79 6.63 8.6 9.56 7.62 6.64 9.58 9.23 9.75 10.2 8.39 2.09 3.05 8.24 11.9 11 10.6 10.6 9.68 10.3 9.35 11.4 12.1 10.7 9.39 9.62 8.22 9.32 10.9 11.6 12.6 10 10.7 11.4 10.6 1.63 9.4 9.44 11.4 7.62 11.6 10.5 4.2 2.7 9.91 8.54 1.56 8.18 8.89 1.65 10.4 9.11 9.32 10.1 11.1 10.5 2.34 5.63 3.54 9.22 11.3 10.2 8.66 10.1 8.56 4.6 10.8 11.4 8.42 8.1 12.4 9.41 9.65 -0.11 0.22 3.45 10.2 2.38 0.22 11.5 9.66 11.1 2.35 0.36 10.6 8.14 7.65 4.17 11.2 11.1 5.67 3.68 2.54 4.56 4.01 6.8 9.3 7.4 4.97 7.04 11.5 6.47 6.21 1.65 11.4 7.5 7.55 1.64 6.05 1.57 2.64 0.38 6.08 3.38 9.93 10.2 7.17 8.92 5.79 9.44 11.3 9.69 1.38 8.56 9.35 10.3 6.98 7.73 8.89 9.89 6.67 10 6.85 6.16 5.68 10.1 10.1 10.7 7.87 6.26 6.22 8.02 4.62 9.69 11.3 2.61 9.08 10.2 9.7 0.34 10.8 7.45 8.32 7.69 7.61 7.39 10.4 11.8 9.9 8.41 8.53 8.72 8.24 11.3 4.39 7.67 4.3 10.5 7.17 2.6 5.01 1.3 8.14 9.96 10.7 0.14 5.47 2.59 7.3 2.02 9.68 11.7 9.24 6.63 8.4 7.7 7.06 0.78 4.47 8.55 9.31 4.01 0.9 5.66 7.3 4.29 7.6 9.11 9.48 8.06 9.33 8.43 7.61 9.03 10.2 8.83 11.8 7.27 8.79 5.89 9.39 11.5 10.3 10 12.7 8.36 5.89 5.95 7.48 10 1.16 9.92 10.8 10 9.97 2.23 7.99 4.12 10.7 7.88 6.02 8.57 7.45 10.3 9.53 10.6 10.7 7.54 7.25 11.3 6.03 7.84 2.11 5.55 8.63 7.54 8.24 10.4 8.9 8.52 7.61 7.64 8.99 8.13 9.86 3.63 10.4 2.48 5.34 9.07 3.85 10.6 6.78 9.65 8.61 1.48 7.48 1.65 1.76 4.7 9.38 6.53 8.71 13 2.55 8.26 9.07 7.58 4.84 9.33 10.1 6.38 12.7 9.19 6.19 8.52 8.37 8.88 6.96 8.89 11.9 9.6 9.42 8.48 5.91 7.79 9.26 9.81 4.95 11.4 6.06 9.04 3.99 10.3 8.58 10.3 11.3 10.5 9.27 9.82 5.66 11.2 1.96 7.93 9.27 8.6 9 5.47 4.18 9.98 9.29 9.95 11.2 4.5 8.95 1.27 9.06 11.2 9.69 7.94 9.03 8.13 -0.21 0.23 6.11 3.8 7.95 4.76 3.3 11.8 13.5 8.02 9.12 11.8 2.01 9.98 9.63 9.7 11.2 9.15 8.7 3.08 10.7 11.2 11.4 9.58 8.33 3.92 2.24 9.42 7.41 10.8 8.9 0.38 6.86 8.23 8.35 10 8.42 9.53 9.32 6.62 6.08 8.88 9.76 9.45 6.26 8.85 7.37 4.61 7.09 12.4 3.88 9.99 7.94 3.04 9.51 10.9 5.49 11.2 4.09 7.03 4.68 8.9 6.15 7.7 5.26 8.25 6.37 8.43 7.48 11.4 10.3 7.26 9.06 6.81 8.04 9.08 4.37 10.5 7.72 8.83 -0.34 7.94 7.04 10 7.29 0.16 12.5 7.36 10.4 15 7.34 9.2 12.1 7.98 7.09 3.94 8.1 6.38 3.94 4.88 5.68 11.1 10.8 6.38 6.96 7.22 2.06 10.6 6.48 10.3 9.05 7.6 12.8 8.76 1.12 8.92 4.53 9.37 8.83 11.6 8.02 7.57 8.48 7.6 7.95 8.1 8.56 12.3 10.5 5.87 5.52 8.77 0.54 4.83 7.24 10.8 -0.2 8.86 4.11 7.92 9.46 3.68 1.97 3.53 8.6 8.78 5.27 8.83 4.91 8.13 9.47 10.2 10.1 9.44 7.89 7.4 12.5 6.7 7.61 3.13 4.89 9.79 7.17 9.58 6.6 12.2 5.59 13.4 6.81 11.3 5.27 11 7.82 12.5 9.64 11.6 5.08 7.4 11.2 11.5 7.92 0.47 7.13 8.04 7.5 8 1.98 -0.24 4.75 4.62 -0.2 5.9 0.41 1.14 5.04 11.3 0.32 9.18 11.9 7.58 9.36 7.81 3.69 5.84 8.02 6.89 8.89 7.27 10.4 2.9 8.95 10.3 9.61 6.13 10.2 10.1 1.87 7.42 8.8 5.56 6.58 10.6 7.98 2.82 11.7 4.79 8.39 10.8 8.22 1.75 9.82 8.07 7.86 6.63 8.84 8.51 2.99 6.04 9.84 2.2 10.8 7.75 11.1 7.44 11.2 11.2 9.7 4.47 8.99 10.1 10.3 9.75 9.46 2.76 9.93 10.3 9.59 8.48 9.38 11.8 9.12 11.8 9.18 7.07 6.58 9.43 13 8.12 5.22 10.8 9.06 1.69 7.68 7.66 9.52 13.3 9.52 4.01 9.91 10.4 8.33 6.97 7.42 6.61 11.8 10.5 5.47 3.27 8.35 7.7 8.87 -0.47 7.34 1.57 0.28 7.1 9.16 7.39 7.45 3.63 0.96 3.24 11.2 9.7 1.8 7.68 8.68 10.7 8.07 9.28 4.37 3.06 7.19 11.1 6.47 8.95 10.7 12.5 10.1 8.2 10.9 0.99 10.3 9.51 9.6 10.1 9.65 2.68 10.1 5.78 9.11 7.83 0.96 11.7 9 9.63 10.7 7.38 11 11.4 9.67 1.34 11 8.35 10.1 6.36 0.21 11.6 13.7 0.23 8.38 5.6 9.76 6.98 10.4 4.91 6.34 -0.46 7.93 5.62 2.74 9.45 11.3 10.8 8.15 -0.74 13 9.09 9.33 7.97 3.74 8.24 8.29 3.66 3.01 0.53 8.99 8.09 7.08 10.1 5.68 11.3 8.97 10.2 8.14 12.2 10.3 3.44 6.7 10.4 1.89 9.01 2.91 7.96 0.75 4.43 -0.37 10 7.78 12 1.37 8.12 8.54 10.1 -0.71 6.69 6.26 6.79 7.59 3.73 8.49 10.8 6.42 10.4 8.67 0.52 5.34 11.7 1.74 9.89 4 6.01 6.73 9.42 5.07 10.4 9.99 1.13 8.1 8.81 4.8 9.05 9.03 9.49 8.87 9.3 9.34 9.93 6.39 7.61 3.42 9 3.34 10.7 9.25 4 10.8 8.76 7.91 5.31 9.15 9.42 12 7.83 8.88 9.76 9.24 1.89 5.61 4.8 2.32 5.59 1.27 9.57 2.54 9.5 7.88 8.87 6.45 10.4 13.5 11 3.53 13.2 2.96 5.38 9.23 5.63 9.65 9.19 8.5 7.7 7.06 2.08 10.9 8.63 6.33 8.71 7.98 4.3 10.7 8.49 10.3 6.55 8.17 10.1 10.4 0.41 8.89 8 6.65 7.08 5.4 8.53 7.66 6.56 8.63 8.9 9.73 12.1 10 5.56 9.38 2.97 2.79 7.06 11.6 10.6 5.52 9.2 3.57 8.84 6.62 12.5 10.8 9.54 2.46 0.63 11.9 10.8 6.6 7.97 4.38 11.2 8.12 10.9 11 11.3 9.75 9.78 12.2 10.5 10.3 7.66 11.5 7.85 7.85 7.3 6.69 11.1 10.9 11.3 6.87 8.08 10.1 5.2 11.6 7.05 11 11.1 11.1 10.4 9.44 8.89 9.08 12.2 10.5 9.35 10.9 6.86 8.93 11.1 11.4 10.9 8.2 8.94 7.81 8.7 9.27 8.42 9.06 13.2 8.85 9.77 10.4 7.96 8.44 12.1 9.01 8.63 7.81 11.6 10.2 0.69 12.4 8.71 6.99 2.64 14.8 11.3 12.7 10.7 9.55 7.56 4.9 13.4 10.9 12.1 12.4 11 6.88 10.3 9.58 5.43 12.7 5.02 7.84 3 8.31 2.71 11.8 11.5 7.09 14.6 9.79 9.87 10 9.71 9.95 7.79 12 12.4 11.1 9.6 10.3 10.1 10.6 6.7 8.82 10.6 9.96 9.97 10.6 9.4 9.3 9.91 9.37 8.91 9.46 13.5 8.33 9.07 9.61 11 7.51 10.5 6.47 12.6 13.4 9.12 2.21 9.96 8.84 9.17 9.6 9.8 8.58 10.6 9.88 13.6 8.61 10.2 10.8 9.09 11.2 11.3 5.78 11.5 13.2 5.59 11.9 10.1 8.36 10.6 10.9 9.47 10.2 11.2 8.55 8.05 10.5 9.51 9.82 10.5 12.6 8.46 2.14 9.07 5.82 10.7 5.48 8.11 9.92 8.71 4.16 10.4 2.78 7.21 6.26 13 7.05 6.08 9.55 8.8 8.62 8.98 9.7 1.09 9.35 9.49 9.02 10.3 7.37 10.4 11.9 5.33 9.66 9.74 2.39 12.7 8.21 10.7 5.48 10.2 9.05 13.1 8.99 12.6 4.75 6.11 6.47 6.22 7.92 9.15 8.75 10.7 5.99 11.7 7.77 9.21 9.77 11.3 7.69 9.03 12 8.06 9.86 11.2 11.9 11.4 10.3 11.6 9.73 9.94 8.08 12.4 8.02 13 5.12 10.8 11.3 9.5 10.2 12.7 9.65 11.8 11.7 10.3 12.2 10.5 4.93 9.77 10.9 6.72 10.7 12.5 12.4 12.1 6.3 9.01 0.07 10.9 8.76 9.59 11.8 8.69 9.95 8.07 10.6 10.3 11.2 8.42 12.5 7.33 10.3 8.61 9.45 7.29 9.85 6.63 10.5 9.5 9.26 2.28 9.93 1.29 6.03 10.7 9.01 9.38 2.45 8.31 8.62 8.67 6.87 7.8 9.87 4.8 8.22 9.03 6.68 8.91 6.89 8.01 0.49 10.3 10.1 10.8 8.86 9.94 10.7 4.56 5.68 8.54 11.7 11.1 9.05 10.9 10.4 10.3 9.56 10.9 10.2 11.7 11.1 11 9.92 7.75 7.54 8.24 11 8.85 10.2 9.52 11.3 9.95 12.2 6 10.3 9.49 9.61 7.78 11.7 11.2 4.44 8.92 8.1 9.36 11.9 10.2 9.75 10.5 6.63 9.86 11.5 9.27 10.3 7.8 6.08 6.33 10.3 10.2 5.91 10.4 12 11.3 6 10.4 9.6 9.27 8.86 9.14 10.8 11.8 8.82 10.8 7.09 11.2 10.2 2.51 9.51 8.62 8.57 7.14 10.6 13 0.88 6.6 5.19 10.6 8.17 7.38 13.4 9.43 6.99 10.5 6.2 6.46 2.45 6.88 10.8 10.6 9.28 12.3 9.61 2.18 3.93 11.8 10.3 10.9 9.9 2.34 10.2 9.61 9.94 11 10.2 12.3 9.56 9.34 6.54 10.3 11.1 9.55 12.4 13.9 11.1 13.2 0.1 11.3 9.27 9.01
-TCGA-L5-A8NE-01 5.02 7.47 2.03 6.58 5.32 8.83 0.55 3.13 0.04 -0.42 1.22 8.06 4.37 1.99 2.72 8.37 10.9 9.91 15.2 9.81 10.7 8.94 9.63 2.82 9.53 6.81 4.17 9.71 5.67 4.66 5.6 4.46 2.08 -0.46 2.5 6.55 1.45 5.5 2.31 4.15 4.19 2.64 5.33 0.2 6.94 5.05 0.76 3.5 9.16 6.59 4.61 4.92 9.08 9.57 4.09 4.12 6.01 1.47 6.35 6.7 8.71 5.14 7.15 5.86 3.32 0.55 7.05 5.5 9.94 4.22 2.93 5.93 2.27 1.33 4.08 0.95 5.73 4.84 1.73 1.31 4.49 4.14 2.99 5.51 5.45 1.9 6.79 7.42 -0.36 4.33 9.05 6.3 6.24 1.54 4.29 3.75 1.94 2.38 5.83 3.51 0.62 6.45 2.73 6.74 4.51 3.74 8.99 9.14 8.14 6.57 1.83 1.51 8.33 3.09 5.11 2.54 3.06 5.4 7.04 3.01 5.05 6.11 -0.88 1.96 1.6 6.52 2.82 3.81 0.24 16.1 2.5 1.24 3.98 7.78 2.29 2.31 3.79 3.46 4 7.45 5.28 8.5 0.57 2.13 4.5 12.2 -0.28 11.3 2.35 2.17 5.37 0.01 8.53 8.87 11.7 2.46 0.34 2.15 8.94 2.19 6.48 8.72 4.05 1.23 10.2 5.05 7 2.7 9.33 2.28 9.93 9.74 1.85 4.58 4.22 1.25 2.5 0.97 8.72 4.96 6.44 6.89 3.93 4.68 5.49 1.8 0.29 -0.64 8.59 4.41 8.76 8.69 3.54 2.82 4.65 5.2 2.86 9.84 7.89 8.85 7.27 10.6 9.19 8.99 6.4 9.1 6.54 10.2 9.64 11.9 6.69 11.4 12.6 11.6 10.7 10 9.07 10.8 5.92 9.51 7.3 8.63 11.6 10.9 7.72 8.14 3.51 10.7 8.84 12.6 10.9 3.86 8.66 11.7 8.45 6.16 10.2 6.61 9.95 2.34 8.01 10.6 12.1 11.5 10.9 10.5 12.3 12.8 4.83 13.4 10.5 0.23 2.41 10.8 9.61 11.1 11.2 12.5 5.19 12.3 9.24 10.6 8.74 8.97 9.38 10.6 7.5 10.3 10.2 10.1 8.6 7.43 7.4 9.2 12.5 8.03 0.88 12.5 11.1 10.8 12.4 10.4 10.7 7.13 9.52 10.9 10.5 7.6 11.7 10.3 3.5 3.07 10.2 6.68 9.43 10.3 5.03 12.6 5.52 6.4 9.62 12.1 8.82 8.81 10.5 11.5 4.17 8.16 9.32 9.35 12.1 9.07 4.77 8.54 2.41 10.6 10.6 8.46 9.03 7.45 11.2 11 9.72 7.08 11.4 9.24 10.5 9.94 9.77 8.84 11.5 8.97 11.7 7.39 10.2 11.1 6.41 7.77 7.57 7.57 9.12 11.1 9.69 11.2 9.18 14.2 9.71 9.06 12 10.7 11.3 4.38 11.7 -0.91 3.81 9.18 5.8 10.2 8.11 7.47 6.23 10.6 11.2 10.5 9.53 7.58 5.98 7.12 6 3.79 4.23 12.3 10.3 11.9 10.5 7.9 7.66 11.2 3.25 7.35 8.67 8.91 8.47 8.15 9.97 12.4 5.62 9.8 10.2 9.82 9.16 8.07 11.5 9.36 4.85 10.6 9.52 4.53 6.08 9.02 6.7 11.1 9.97 10.1 8.13 10.8 8.8 12.8 11.6 4.55 7.33 6.02 10.3 8.68 11.3 11.1 9.26 9.36 6.9 4.93 10.1 8.01 4.9 11.2 7.27 10.8 9.83 11.5 4.67 11.5 11.1 12.9 7.09 8.69 7.71 5.83 8.91 9.46 7.6 9.99 9.99 13.4 10.6 2.95 10.7 8.28 7.89 6.83 3.31 9.18 6.64 8.02 5.61 11.2 8.53 7 7.2 10.8 11.4 2.91 7.98 10.9 10.2 3.6 7.98 11.1 5.74 2.96 4.66 8.73 7.67 0.27 8.63 4.74 10.4 9.46 9.63 10.9 8.37 5.61 13.7 9.91 -0.18 11.2 8.84 2.45 13.7 8.21 6.28 4.52 5.46 10.8 9.35 2.78 13.3 6.84 7.12 8.78 9.48 11.9 8.95 13.8 8.44 10.4 8.73 10.2 5.05 7.78 8.3 6.48 0.65 6.49 5.37 12.2 8.41 9.86 11.7 9.52 4.27 10.6 6.39 10.7 9.14 11.3 10.7 10.9 9.01 10.4 9.16 6.07 10.6 9.7 10.7 8.57 8.55 9.9 8.32 3.8 11.4 10.2 10.2 10.4 4.13 10.2 11 6.98 9.19 4.7 10.4 8.17 9.13 10.3 8.14 9.8 10.2 10.7 5.12 4.75 11.3 8.24 8.58 8.94 9.29 4.81 9.48 4.26 8.6 8.83 11.2 10.2 7.95 10.9 10.4 8.42 9.37 11.1 11.4 11.8 10.2 2.21 12.6 9.94 10.4 9.53 10.8 12.4 11.3 11.8 8.66 11.5 9.95 8.51 0.24 9.92 6.91 7.29 7.66 9.51 11.8 8.86 8.24 10.1 10.5 6.25 6.58 4.07 12.7 7.63 8.59 12.6 7.8 10.5 9.74 12.1 10.8 11.8 11.5 9.11 0.52 11.4 9.03 7.16 9.23 9.38 8.96 7.52 10 11.5 10.7 11.8 10.6 8.23 10.7 10.9 11.6 16.9 10.2 9.93 11.2 12.3 8.03 8.43 11.2 10.6 5.83 9.18 8.29 15.7 7.05 11.8 11.1 4 10.2 6.79 10.3 1.71 10.4 10.2 12.3 11.2 14.3 11 5.69 10.9 8.33 8.12 10.1 9.1 1.58 7.48 8.16 8.75 10.8 9.31 10.3 13.4 13.3 6.89 10.7 9 10.4 8.06 4.02 10.2 12.3 10.9 10.7 10.6 5.31 11.3 7.79 9.79 11.4 10.6 10.5 9.23 13.6 10.2 8.25 8.25 5.75 8.93 12 12.5 12.7 12.7 9.43 12.5 10.1 11.8 2.29 9.25 8.81 8.19 4.56 8.37 10.3 9.13 6.56 10.2 9.43 4.48 9.72 11.2 14.2 10.1 7.85 11.6 10.8 6.45 2.48 1.63 5.09 10.4 3.32 7.93 7.38 7.08 9.9 8.48 11.2 4.34 3.15 9.51 9.37 7.76 10.5 3.61 7.09 9.6 7.82 3.92 5.8 12.1 10.4 1.23 4.94 7.37 3.17 9.86 10.2 12.4 1.49 9.07 13.8 7.96 11.6 11.8 9.92 11 13.3 7.24 12.2 8.77 8.96 2.52 11.2 8.23 1.91 0.97 0.14 9.4 8.1 12 1.86 8.24 9.62 5.32 5.58 11.6 11.5 5.46 4.4 11.9 10.8 4.62 11.5 9.34 11 10.4 9.99 11.4 9.33 11.4 11.5 8.78 9.84 12 7.8 7.34 9.89 8.61 10.9 7.84 12.7 12.4 6.64 6.13 6.99 7.56 11.4 7.44 1.52 4.06 12.8 11 0.37 6.62 9.01 10.9 11.7 11.4 6.94 7.67 9 3.6 6.64 7.09 12.2 6.28 7.64 8.05 9.52 1.38 5.42 2.8 10.6 9.93 6 12.8 8.48 8.27 5.7 10.7 11.7 1.46 4.59 6.27 8.61 8.1 7.48 8.56 8.94 10.6 4.58 3.48 5.86 6.72 6.77 -0.18 2.85 9.21 9.86 2.84 2.22 12.4 9.91 8.72 7.73 4.88 3.04 10.1 7.63 11.8 9.22 1.31 8.86 10.8 10.3 10.6 9.73 9.72 9.06 10.3 8.93 4.79 5.52 5.5 12.3 9.78 11.1 7.16 11.4 9.41 12.1 9.65 11.4 10.6 8.26 10.8 11.1 10.6 2.45 12.9 2.79 11.7 3.97 10.7 10.8 8.24 5.09 9.59 9.95 12.7 10.4 8.28 9.82 11.5 9.62 9.92 9.78 9.97 8.75 11.5 12.9 9.46 12.1 11.6 12.1 6.44 11.6 4.54 7.45 9.35 10.6 11.1 12.2 15 11.3 8.81 10.7 8.86 7.28 8.8 9.31 9.88 12.2 8.51 11.4 9.8 10.4 11.3 4.69 8.23 11.7 4.6 9.75 6.16 10.3 9.33 6.24 9.59 5.16 7.27 1.67 2.9 7.59 9.57 1.95 13.3 9.92 10.7 8.91 9.42 8.44 7.46 8.73 9.25 7.29 1.64 5.93 0.36 2.4 7.63 8.78 10.4 12.8 8.8 4.92 10.9 9.35 9.17 8.38 9.91 0.92 9.57 11.1 9.86 10.8 13.1 10.7 9.5 13.8 11.2 11.3 9.99 6.25 1.98 8.26 9.86 8.14 8.06 9.44 6.05 10.1 10 8.14 9.57 7.66 4.59 9.47 12.7 12.7 7.57 7.05 11.8 10.3 5.43 7.01 9.86 1.86 7.47 8.79 9.63 8.94 12.6 8.81 9.31 8.94 8.02 5.99 9.13 8.11 9.6 8.92 7.9 8.25 9.08 8.93 9.8 9.95 7.99 9.72 4.48 9.28 9.03 9.2 -0.08 11.1 2.45 8.7 6.91 11.3 1.5 9.28 9.1 0.15 11.9 8.78 10.2 2.67 13 7.5 5.45 7.06 4.82 8.53 10.1 4.72 4.76 3 7.51 7.55 8.53 7.94 6.69 11.2 9.24 5.96 9.57 9.9 9.45 10.8 9.55 8.12 4.56 4 11.3 7.61 4.74 11.4 10.7 6.33 8.27 1.31 11.6 8.87 8.55 5.93 6.76 9.52 10.4 10.8 1.59 9.41 9.38 7.82 7.56 9.36 10.6 11.5 11.1 7.17 7.89 7.74 6.99 9.56 10.4 6.23 12 10.6 9.5 7.73 8.57 3.93 9.47 8.2 10.2 6.65 12.3 12.3 9.73 8.54 7.25 9.45 11.7 6.85 8.39 10.1 9.73 9 6.71 9.78 7.65 8.37 6.23 9.48 9.7 4.37 7.81 6.01 7.13 10 3.09 8.66 8.61 9.84 0.31 4.31 10.1 11.4 5.87 8.79 8.71 9.22 6.74 10.3 6.66 13.5 6.28 8.8 4.9 8.92 8.51 9.66 8.59 7.83 6.01 0.77 7.12 9.09 11.9 6.8 8.86 7.31 5.12 10.3 8.19 9.53 6.58 3.96 -0.27 7.63 5.88 12 8.13 9.04 5.63 9.22 9.28 7.67 10.3 11 8.9 9.36 7.25 7.67 9.19 9.12 10.9 8.38 5 9.96 7.69 11.7 9.34 5.75 8.48 12.6 5.79 10.9 7.61 4.74 10.6 6.45 -0.19 8.49 8.31 0.61 9.38 11.7 8.95 9.43 9.15 8.62 9.27 11.5 11 3.77 7.84 6.13 9.48 11.6 12.1 2.05 11.2 11.1 10 9.24 12 9.94 11.2 11.5 8.68 8.51 9.86 0.97 10.8 10.8 9.33 9.37 9.33 10.6 3.36 10.1 2.22 9.27 7.52 6.49 5.47 7.78 6.87 7.41 5.75 1.67 3.63 7.1 7.93 10.1 7.84 6.54 11.7 0.38 8.47 5.31 6.2 8.03 1.6 4.47 9.97 6.42 3.4 1.05 8.87 8.7 3.26 3.04 6.67 7.35 4.04 0.23 0.99 7.94 3.64 7.56 6.75 10.1 7.59 7.26 0.08 10.1 5.54 1.82 10.5 6 10.1 9.08 8.6 3 10.4 7.6 5.25 10.7 5.04 6.54 7.37 5.78 9.78 0.9 8.11 5.41 1.38 9.56 12.2 1.34 8.87 7.86 5.86 5.93 10.8 8.89 1.51 10.6 10.1 9.74 10.7 8.31 8.69 2.02 4.38 1.46 7.31 2.38 8.63 12.6 8.23 8.41 6.87 10.8 8.99 9.37 5.44 7.26 8.76 9.08 7.92 11.8 9.09 9.07 7.43 9.5 2 6.8 6.77 10.3 9.25 9.72 8.2 3.43 2.56 7.64 8.42 9.65 11.7 3.71 0.27 2.77 8.4 8.82 7.56 7.38 7.45 8.52 9.38 11.4 8.51 9.49 4.74 6.46 5.3 3.68 4.36 8.45 4.03 7.74 8.54 8.13 3.12 9.16 2.59 1.29 1.86 7.54 7.08 -0.01 8.31 9.27 1.01 6.95 6.47 1.84 5.94 9.07 5.03 10.1 8.83 5.86 8.8 6.76 12.3 7.91 10.9 7.09 11.5 11.4 1.43 6.52 1.91 8.7 8.95 10.2 9.29 7.27 9.05 3.49 10.8 4.76 4.09 2.86 4.07 1.1 10 4.23 5.61 2.53 3.83 1.78 8.91 -0.05 0.58 9.3 9.13 4.22 8.75 9.34 0.26 6.65 8.5 4.5 7.41 9.51 4.58 9.89 10.3 1.73 -0.26 11.8 9.48 10.4 4.91 9.38 10 8.78 1.67 9.25 5.7 3.76 5.68 12.9 9.2 9.63 10.9 5.5 1.68 5.56 13.2 9.84 10.7 1.01 1.65 5.92 10.3 9.56 6.38 3.21 11.9 1.55 10.8 10.9 8.44 10.2 11.6 6.11 11 -0.14 5.84 0.79 7.18 10.8 9.07 9.26 6.51 3.92 10 11.5 5.74 1.27 6.84 11.5 6.16 9.33 8.32 7.42 10.4 8.27 9.69 -0.39 8.58 7.82 11.4 14.5 5.63 0.89 4.69 7.61 6.77 2.59 9.49 11.3 8.35 5.12 9.71 4.66 6.5 9.72 11.6 11.1 8.76 10.3 5.88 0.5 11.4 9.09 9.44 8.11 4.1 6.61 7.89 8.82 10.7 1.93 4.72 11.5 1.89 2.61 6.01 11.1 10.8 10.4 8.88 4.59 6.7 14 0.46 8.27 7.23 2.94 3.19 10.6 9.14 5.3 6.95 9.9 0.78 1.13 1.72 8.24 0.27 7.23 4.39 5.36 5.84 9.25 6.32 0.45 8.85 9.01 8.24 3.2 7.2 9.81 9.54 3.39 5.37 7.95 6.03 8.37 5.04 8.22 11.9 1.2 9.56 8.71 9.82 0.46 7.08 6.24 7.54 8.67 3.52 7.53 6.1 7.78 3.56 5.13 9.95 5.57 3.18 8.83 4.21 4.09 7.4 10.5 1.63 8.46 0.05 6.67 0.89 5.99 6.47 6.87 9.01 8.85 8.64 8.04 13.6 3.47 10.8 9.08 4.75 1.77 8.37 8.91 9.55 10.9 9.91 4.89 9.83 8.53 9.56 11.6 12.7 2.27 1.58 8.82 9.58 7.59 4.89 1.49 7.3 10.3 9.27 6.32 3.48 0.03 7.22 -0.43 6.8 9.8 8.6 8.78 7.91 9.69 11.5 4.89 10 9.96 0.48 8.55 9.32 4.88 4.22 14.2 9.5 8.79 4.39 7.82 0.49 7.66 8.06 1.65 7.59 3.73 7.75 10.8 5 8.9 8.2 2.83 4.15 2.44 7.72 5.04 9.88 6.68 6.72 8.35 4.81 10.4 2.69 1.59 9.36 4.46 2.39 1.12 4.52 6.49 7.58 10.7 9.2 7.92 4.81 9.74 10.3 6.12 9.95 12.5 4.51 5.79 8.88 8.6 6.15 3.24 9.46 8.76 10.8 7.74 3.48 8.75 7.72 4.83 1.74 5.2 8.55 11.7 9.2 9.62 11.1 2.2 0.46 8.39 5.58 1.92 1.58 10.1 2.86 7.7 3.15 6.22 6.76 9.15 -0.13 9.21 0.7 1.58 12.1 11.7 6.04 7.64 5.1 4.94 5.23 9.46 4.76 6.83 -0.3 8.97 14.8 6.06 6.98 2.96 13.9 9.96 3.13 2.6 6.9 10.3 1.22 11.4 0.33 9.31 10.2 13.3 4.56 5.43 12.8 -0.09 10.2 2.67 11.6 10.6 9.59 9.42 1.87 9.26 2.44 5.36 8.88 12.4 6.25 7.79 5.17 1.9 3.27 6.11 7.31 4.31 9.95 7.57 5.08 5.66 3.2 2.21 11.6 9.29 11.5 7.05 7.81 11.4 4.61 4.22 13.7 8.36 12.1 8.56 8.5 12.4 7.32 10.8 8.37 7.49 4.81 4.74 7.36 8.98 5.45 8 7.79 9.69 7.69 6.48 6.36 3.33 7.62 8.09 7.36 5.91 9.36 3.13 6.62 7.44 11.9 3.32 4.91 6.92 11.9 8.4 12 10.5 6.25 10.1 6.78 5.66 11.3 7.55 0.65 8.21 8.43 9.05 9.72 9.9 5.37 8.6 7.85 3.62 2.05 9.44 0.67 8.61 6.82 8.23 6.6 7.82 3.91 1.4 0.21 3.24 6.93 7.06 0.26 9.53 8.35 9.91 13.5 9.25 3.01 8.38 12.4 -0.57 7.51 8.57 9.18 10.9 8.86 6.86 -0.15 11.1 6.78 -0.31 8.78 0.12 0.98 7.79 8.11 7.35 8.3 7.27 6.84 1.87 2.5 6.73 11.3 7.75 7.78 1.56 2.52 3.35 7.49 9.73 9.24 12.3 7.61 8.6 9.41 2.55 11 7.04 8.77 2.7 7.63 8.44 2.23 9.33 6.63 1.49 10.6 6.18 7.64 11.5 10 10.5 9.65 1.31 0.58 7.75 6.06 11.6 2.31 8.6 3.78 10.6 6.28 9.07 7.25 7.73 7.78 6 9.99 3.05 8.76 11.5 8.28 7.9 9.37 10.6 4.4 8.92 11.6 5.28 11.3 9.6 9.87 11.4 12.9 9.81 10.2 3.18 5.36 9.63 6.62 4.37 9.21 2.39 10.6 1.52 10.1 3.94 3.55 5.59 7.61 10.5 6.79 2.58 13.1 2.5 0.44 6.88 0.42 1.32 11.7 5.76 11.1 8.31 12.4 2.24 5.62 7.66 8.72 5 7.1 6.13 11.5 9.56 9.72 10.9 7.16 9.33 3.43 3.1 2.87 9.3 0.95 3.02 10.8 5.24 3 10.8 4.75 5.99 7.03 4.79 7.75 7.63 6.36 -0.51 7.6 9.52 6.36 3.97 5.75 9.64 8.87 7.3 6.18 11.4 8.07 3.14 11.3 10.2 8 0.55 9.61 7.45 1.39 7.36 4.57 9.12 8.08 9.58 7.61 4.79 7.04 0.01 10.6 8.58 8.09 10.3 11.9 4.6 5.79 2.26 9.66 9.38 9.53 4.58 6.9 8.12 1.36 5.51 6.7 12.4 1.82 0.59 7.53 11.4 5.59 10.8 7.56 5.49 1.45 0.84 10.2 0.34 4.29 2.71 8.31 7.11 5.13 2.88 8.42 8.12 6.99 4.27 10.6 8.31 9.3 7.84 2.3 11.3 8.8 5.78 10.7 8.92 3.24 7.58 7.69 3.08 6.05 6.37 10 1.45 11.2 0.96 11 3.05 7.17 4.4 0.53 1.24 12.7 11.3 6.82 4.98 3.18 4.07 2.55 5.6 3.13 7.31 9.99 1.04 8.97 11.6 6.71 12.2 7.96 11 9.99 7.17 5.07 10.1 11.8 7.01 6.37 9.73 6.76 0.63 3.22 8.54 4.46 7.61 4.86 6.13 5.88 8.45 9.32 7.05 4.29 0.46 2.54 9.17 6.4 8.4 10.6 7.21 7.91 4.93 2.12 2.43 9.52 7.72 2.8 10 11.6 7.21 4.99 7.86 4.8 2.46 4.61 5.82 2.37 10.9 9.32 1.08 2.92 6.16 4.03 9.93 4.38 10.4 7.94 12.1 6.98 7.68 12.3 3.33 7.15 6.08 11.6 3.88 6.25 10.5 5.23 -0.24 5.93 5.77 10.1 -0.2 7.05 6.53 6.63 9.05 11 8.54 6.23 7.43 1.84 1.09 6.97 7.31 1.79 8.4 2.56 2.19 12.5 9.51 5.51 7.92 2.94 2.56 8.32 9.74 4.2 2.95 11.5 3.56 3.3 0.48 6.1 -0.13 9 4.83 6.32 10.3 3.68 12.1 8.43 8.05 3.79 0.3 3.06 5.36 1.59 11.2 9.46 5.75 1.81 4.92 7.71 4.39 4.14 3.5 1.44 9.63 4.59 2.04 1.14 0.8 9.39 0.33 10.1 -0.11 9.37 10.3 7.23 8.62 4.6 5.49 7.28 6.72 13.2 7.68 6.87 9.89 9.5 10.8 8.01 9.11 1.49 4.02 3.96 3.57 4.59 9.71 5.33 5.64 12.1 6.57 2.71 8.75 1.36 2.06 4.59 3.16 7.86 7.98 5.27 9.99 5.36 7.25 0.36 10.6 8.76 7.19 7.93 7.86 6.26 4.41 1.52 9.15 3.41 8.86 6.47 6.31 3.83 1.47 4.08 7.19 8.19 9.64 8.16 5.73 7.45 2.69 7.6 8.37 7.46 1.38 8.48 8.46 2.71 7.79 4.77 1.99 5.82 3.37 2.78 -0.15 6.49 9.7 1.76 10.1 4.62 9.1 6.22 8.15 9.93 5.31 9.66 8.73 0.6 0.69 11.5 4.24 0.81 6.31 11.1 11.7 6.96 1.45 10.8 5.47 5.31 7 0.79 11.1 10.2 -0.23 8.52 6.6 5.03 3.99 7.07 2.93 6.05 8.79 6.59 10.1 8.96 3.59 1.01 8.5 8.22 3.88 3.21 13 11.9 4.13 8.56 5.28 5.32 14.2 9.86 9.95 0.15 10.1 13.8 -0.19 5.58 10.8 1.46 0.42 0.96 3.07 4.3 0.33 7.97 7.91 2.13 7.12 9.13 7.54 6.79 9.18 1.11 4.23 6.5 7.8 5.87 4.84 7.64 3.15 10.3 8.56 9.56 2.86 6.82 4.14 9.33 6.72 12 4.83 8.94 7.49 9.03 3.17 8.43 6.28 13.9 9.94 12.9 6.01 4.66 14.9 6.34 10.2 8.81 6.33 0.31 -0.22 3.21 9.75 7.04 8.83 12.1 8.45 4.39 7.63 3.38 2.82 5.52 9.4 6.1 6.87 9.2 5.4 10.4 -1.48 8.31 2.71 7.8 8.76 5.32 7.48 0.71 8.02 7.12 9.54 10.4 8.17 2.59 7.98 0.43 5.79 3.41 6.47 3.06 7.85 9.82 7.06 9.51 7.1 9.8 9.24 9.33 6.57 1.86 2.22 4.28 7.71 1.74 11 8.25 8.51 5.36 12.6 2.88 8.38 10.8 9.54 6.52 5.26 4.08 1.1 7.3 10.8 11.2 9.43 6.94 8.93 2.94 8.38 0.89 10.5 0.78 2.65 8.96 8.15 3.95 4.51 8.3 8.55 3.35 5.95 11.3 7.08 8.68 8.27 12.1 6.93 7.71 11.8 7.24 6.96 10.1 11.3 9.6 8.25 7.61 6.36 0.39 2.19 3.93 11.5 7.72 6.66 6.17 8.59 2.08 10.6 3.63 9.61 8.79 8.33 2.55 7.5 9.75 7.93 3.31 2.47 2.18 7.18 5.96 3.22 5.33 7.41 3.97 4.9 6.58 8.12 -0.5 9.77 9 1.49 1.93 6.12 0.02 6.58 6.04 7.3 8.23 7.23 2.24 2.26 3.45 7.5 1.7 7.08 10.3 5.2 1.72 11.6 5.32 5.97 7.31 6.74 1.59 8.84 9.42 9.07 8 9.57 10.2 8.71 4.81 1.62 11.5 5.16 9.77 4.25 7.62 9.86 3.71 11.6 1.44 5.38 1.6 5.48 9.53 1.77 8.66 1.24 -0.21 4.69 9.07 3.74 5.28 8.15 4.44 0.34 7.65 6.61 6.31 1.93 9.33 2.77 9.55 2.51 7.83 3.76 4.33 6.01 8.46 5.87 3.83 5.05 7.12 9.13 1.53 8.31 2.11 3.12 0.96 3.1 0.39 1.45 1.49 5.5 3.92 11.2 7.74 10.4 5.8 10.8 0.06 0.28 8.93 7.06 7.34 9.95 1.41 -0.34 10.7 10.7 1.44 8.35 3.13 4.77 0.61 2.3 11.4 8.4 2.14 0.77 12.5 8.76 -0.03 6.68 13.9 8.9 8.82 5.9 8.88 7.49 4.76 3.56 8.81 10.7 9.69 12.7 4.17 6.51 5.13 7.41 10.5 3.6 4.69 11.1 10.4 3.38 7.85 5.18 6.85 10.5 2.28 5.93 10.5 0.93 1.26 12 1.27 5.49 6.76 2.31 9.42 10.8 11.8 2.52 10.5 7.67 6.36 8.03 7.26 11.2 7.79 2.48 2.86 4.94 1.55 0.14 5.2 5.16 7.29 10.8 6.42 9.9 6.83 1.32 8.28 8.97 6.68 7.17 6.87 9.48 6.46 1.16 13 8.04 8.42 8.46 6.05 1.97 0.33 6.62 6.6 1.16 8.73 10.1 7.29 4.84 7.57 10.5 0.14 8.15 1.67 4.57 10.2 1.56 9.7 6.72 9.35 9.83 9.06 5.32 7.08 7.04 1.4 1.2 8.21 10.5 9.82 11.3 11.9 2.05 7.36 0.21 14.2 0.96 8.86 1.59 2.98 8.26 6.93 2.38 6.16 1.83 5.19 1.96 3.37 8.56 10.5 8.76 10.7 13.1 6.91 1.91 3.88 2.63 9.79 5.74 11.1 7.56 12.7 13.6 0.3 7.62 12.3 3.58 4.02 9.39 1.27 10.7 3.77 8.71 12.1 12.4 2.53 8.78 9.75 7.42 0.59 8.67 6.82 12.2 9.76 4.72 10.6 8.7 6.57 6.51 8.97 10.3 9.14 0.15 10.3 6.34 9.56 1.94 5.28 1.64 4.36 4.64 4.66 9.68 1.93 6.29 8.73 7.85 3.45 7.81 3.3 8.1 6.66 0.31 2.71 6.49 5.73 2.93 0.72 6.71 8.46 9.55 10.4 5.69 3.37 1.82 9.2 9.24 6.97 0.16 7.51 7.81 5.27 2.78 5.68 2.19 7.06 2.65 1.17 9.03 9.38 5.25 9.18 4.08 0.66 9.62 2.06 1.62 1.2 6.79 2.61 8.96 7.92 7.71 10 7.56 9.72 3.14 10.3 6.49 4.86 6.52 2.45 7.43 11.7 6.49 10.2 0.38 8.92 11.3 9.45 10 11.7 9.04 7.9 6.02 9.47 11.6 14.3 11.9 8.51 6.08 1.42 8.16 11.7 9.93 10.3 11.8 2.14 10.7 7 11.3 0.3 -0.2 3.88 3.51 8.41 8.11 3.95 6.68 7.78 9.7 8.86 8.69 4.93 2.93 6.38 0.89 5.91 8.15 5.97 5.23 10.1 13.1 9.4 4.86 11.1 10.9 12.6 11.3 6.52 7.95 6.69 10.5 7.07 5.73 8.32 8.74 10.4 8.72 2.6 9.31 8.93 9.69 6.75 11 8.5 0.74 10.4 3.07 -0.6 10.2 11.1 7.02 3.41 11.2 9.92 9.34 12.3 7.67 9.47 13.1 10.3 6.33 8.42 10.7 5.8 10.4 4.64 11.5 5.78 10.5 9.53 6.39 10.9 9.34 -0.01 6.94 4.26 9.02 12.9 7.83 12.1 10.7 9.72 8.67 7.2 9.67 9.56 9.56 7.16 8.78 9.85 5.6 6.39 12.7 0.66 9.73 10.2 12.3 12.6 12.2 7.1 9.2 7.52 7.66 6.54 6.99 7.12 12.8 5.71 7.22 11.1 17.2 6.05 6.26 8.82 9.7 7.2 7.88 10.2 12.2 12.4 15.1 16.5 8.69 10.5 8.56 8.89 4.47 11 9.95 3.38 5.12 8.18 11 10.7 10.3 8.74 9.84 10.3 5.09 8.64 4.75 12.2 6.09 -0.7 1.39 8.59 0.27 8.76 6.71 6.11 7.89 3.59 6.54 11.3 7.05 7.93 11.3 8.41 7.94 10.6 1.61 7.42 10.8 10.3 2.51 8.93 5.66 5.86 5.72 12.6 4.9 8.03 12.7 1.66 4.45 7.51 1.63 9.77 2.04 3.2 8.93 8.08 8.38 12.4 6.37 7.9 11.4 7.07 6.01 10 13.2 8.8 13.3 10.5 9.97 12.9 14.3 14.5 12.9 12.1 -1.1 6.64 0.14 12.1 7.6 5.8 11.2 -0.68 0.33 2.86 8.86 0.38 10.6 6.61 4.27 2.66 7.01 5.4 6.75 2.73 1.21 9.37 5.95 8.88 8.14 13.1 9.46 1.39 9.04 11.9 12.1 10.4 0.57 4.04 9.26 9.25 5.77 10.2 10.8 5.31 1.68 2.11 3.67 10.6 10 9.2 9.34 9.01 2.69 6.36 3.32 6.92 2.74 7.79 2.03 2.18 0.17 10 7.67 5.54 4.4 10.2 5.29 7.86 5.74 10.2 7.13 5.92 7.27 7.5 10.9 8.66 7.84 6.58 9.7 4.13 10.9 5.69 9.52 9.11 12 5.49 11.5 10.7 9.88 7.71 10.6 3.79 9.53 6.73 6.5 8.77 8.63 9.91 6.9 9.61 11.3 4.27 12 5.12 7.75 0.09 8.71 2.41 8.93 7.43 7.87 11.4 6.28 2.21 10.4 9.5 5.24 0.3 12.2 7.56 2.79 2.69 6.5 0.53 9.63 8.11 7.73 5.39 9.81 10 6.31 3.15 5.55 8.01 6.42 9.56 8.6 1.65 14.8 2.71 5.07 3.68 2.22 0.4 8.46 7.54 6.14 6.89 12.1 10.1 10.8 9.71 8.09 7.8 14.4 8.88 2.2 3.67 5.33 7.83 8.19 5.6 8.46 8.1 9.52 9.32 11.1 4.17 10.9 7.03 10.1 7.55 6.99 10.2 10.6 11.8 7.92 9.64 10.6 9.72 8.83 4.59 0.09 7.19 3.87 12 0.55 11.4 13.5 5.45 9.01 11.4 5.93 10.1 7.73 8.1 8.62 6.76 8.02 8.65 10.4 0.2 6.25 8.61 12.7 10.5 10.6 10.9 1.07 8.42 12.6 2.62 0.2 13.1 7.79 8.3 2.26 12.7 3.39 10.3 10.2 8.39 10.7 8.04 9.74 6.32 10.6 10.8 7.39 12.3 10.5 3.14 9.6 10.2 5.26 10.9 0.61 12 11.2 11.7 10.7 9.19 9.49 13.1 7.64 3.65 8.78 10.4 12.1 2.16 10.8 5.99 11.6 6.14 7.14 11 1.54 11.7 9.99 10.7 0.04 8.74 9.76 1.06 6.2 10 7.02 9.38 7.93 1.34 11.3 9.63 10.4 8.17 9.44 13.9 0.75 5.89 6.01 10.8 8.07 7.88 8.84 0.67 1.65 11.8 3.21 8.49 8.7 7.73 9.85 7.67 10.1 8.91 12.2 10.2 7.8 9.38 11.4 5.87 8.86 8.9 9.76 6.46 8.1 7.63 10.5 7.76 4.75 1.08 12.8 9.59 11.4 1.31 1.66 8.58 3.17 4.83 7.35 1.64 9.61 11.2 5.89 8.52 8.95 7.81 11.1 8.69 3.71 7.87 7.32 5.12 6.44 6.96 4.63 10.1 9.35 1.02 7.28 11.9 8.74 8.54 9.23 5.74 11.7 7.45 10.3 9.15 6.78 5.66 2.8 5.34 7.6 2.62 4.46 5.16 1.7 8.51 8.24 9.41 3.76 3.22 0.94 3.16 3.94 0.9 4.96 2.04 6.93 7.46 0.62 0.44 3.01 6.84 5.45 7.47 4.39 7.64 5.36 12.5 6.76 8.88 4.17 7.32 9.94 10.4 2.64 10.1 7.8 9.06 5.09 13.2 8.7 7.21 8.89 10.2 8.97 7.1 7.83 8.16 7.02 10.3 5.44 8.45 8.14 1.58 8.79 7.96 4.57 6.21 2.64 5.29 4.56 10.1 5.44 3.77 5.64 2.5 11.8 0.16 7 9.99 5.59 8.64 8.43 10.2 8.19 9.41 5.39 4.28 11.4 8.77 0.45 8.56 7.65 6 9.58 3.85 9.59 6.07 7.48 4.12 6.19 3.83 10.8 3.01 10.8 8.91 9.09 4.05 5.81 10 7.71 8.73 9.67 3.18 7.96 11.7 7.31 7.41 5.82 2.17 8.73 6.91 3.65 9.88 11.1 10.1 4.11 3.05 2.38 6.54 2.17 11.2 11.8 2.5 3.65 0.78 1.05 3.91 2.62 6.64 3.79 2.97 11.8 9.57 9.35 2.43 8.86 7.81 11.5 9.55 13.7 4.4 6.27 6.28 6.06 4.01 2.32 5.05 1.42 4.13 4.53 4.57 2.34 15.5 11.3 10.9 2.16 10.5 11 5.98 11.8 5.79 6.72 11.3 5.93 11.3 8.95 10.5 4.9 11.2 8.6 7.47 0.9 10.8 3.96 6.91 6.41 8.94 6.32 12.3 3.67 12 9.05 11.1 8.81 8.85 9.98 11.2 11.3 5.08 7.15 10.7 3.29 8.13 10.1 10.3 10.7 8.23 1.88 1.52 9.25 9 9.9 9.77 7.05 9.71 8.64 8.84 0.34 10.7 9.82 9.36 9.5 9.64 11.2 8.96 11.1 -0.5 10.3 8.38 9.8 11.3 2.76 12.4 4.99 11.7 9.6 8.22 10 10.6 9.08 11.4 9.98 6.57 8.36 13.3 9.7 9.13 10.2 8.15 10.7 8.75 9.98 5.06 10.2 10.2 1.1 9.59 7.95 6.04 6.96 9.03 5.88 9.37 11.4 11 10 11.7 11.4 10.6 9.07 8.67 10.7 3.67 3.99 11.8 0.54 10.3 11.4 9.07 8.52 6.5 6.15 10.6 7.04 13.4 9.83 9.69 10.8 7.12 10.9 9.4 9.18 11 9.83 8.11 7.61 12.7 9.38 8.27 0 8.04 9.04 9.32 5.93 4.45 11.1 8.15 11.2 10.1 6.74 4.19 9.83 9.38 9.43 4.51 10.2 11.4 1.01 0.58 1.38 10 11.3 9.91 9.25 7.22 8.91 4.87 9.53 12.4 8.59 10 8.81 8.33 10.6 9.18 4.04 9.36 11.3 11.8 10.1 11.3 10.4 11.6 7.6 13 9.73 8.19 6.84 2.86 0.53 11.5 11.9 9.69 9.79 10.6 9.81 8.07 7.46 10.4 7.05 10.6 11.5 9.57 13.1 10.2 8.73 9.6 7.8 12.4 10.1 9.27 10.9 9.92 11.2 5.49 7.86 6.89 9.81 11.9 10.7 11.1 10.9 11.6 3.51 9.92 10.4 10.4 2.6 8.6 9.03 10.8 10.4 9.4 8.9 9.32 9.84 11 8.65 8.69 8.37 3.75 10.7 4.01 11.2 9.69 8.62 11.5 11.6 7.87 9.23 8.86 9.33 9.68 9.7 2.92 9.24 1.11 10.7 10.8 4.28 8.01 9.76 9.96 4.95 8.2 10.9 10.9 7.13 1.5 10.3 9.87 10.8 10.8 10.7 9.84 6.29 10.2 10.4 8.17 10.3 9.25 5.28 10.2 6.97 9.8 12.7 11.4 9.84 9.2 9.84 8.9 4.63 2.75 8.76 2.99 9.53 10.8 10.7 8.92 9.04 7.59 9.63 11.8 9.74 10.5 11.5 9.85 11.7 10.6 9.03 10.9 11.2 10.8 13.6 11.6 10.8 9.33 10.6 9.97 10.2 10.3 7.47 8.77 7.35 8.33 7.83 10.5 10.7 11.5 10.6 10.7 10.4 9.93 12.1 11.5 11.2 14.6 5.65 10.4 13 10.8 11.1 10.2 11.8 6.35 11.1 15.5 3.83 10.9 6.66 3.25 10.1 8.93 10.4 9.26 9.95 11.9 12.8 9.53 -0.26 12.8 11 2.5 11.5 9.77 10.1 12.5 10 6.18 9.13 4.77 10.4 13.2 8.73 7.82 9.84 10.4 9.19 5.84 9.47 7.36 6.42 8.29 9.4 10.3 11.9 4.73 7.22 10.3 10.7 12 4.81 10.6 9.83 7.78 8.95 9.22 8.2 9.71 2.08 9.09 10.4 9.93 10.6 10.7 7.59 10.5 10.4 1.4 9.07 10.2 11.1 10.8 9.61 9.59 12.1 10.3 5.12 1.3 9.93 4.58 6.99 9.47 8.29 11 6.18 9.92 9.87 10.9 10.9 9.14 9.93 9.93 9.75 3.39 11.1 10.8 4.84 9.72 8.99 8.77 9.93 10.8 9.99 9.91 10.5 7.91 9.86 2.51 9.63 8.62 10.2 10.8 7.29 10.9 9.8 12.7 9.62 9.22 7.74 9.9 9.61 9.87 8.65 8.11 9.91 10.4 1.5 10.4 10.7 9.96 10 10.4 3.26 13.2 10.5 11.4 12.7 11.7 8.7 9.92 8.95 11.4 0.37 10.7 11 9.61 9.62 12.1 8.07 12.7 9.79 11.6 11 9.16 8.49 10.8 7.67 10.3 9.43 11.6 12.1 10.8 9.85 12.8 10.9 9.25 10 9.36 8.29 11.3 12.4 9.93 11 8.94 8.61 10.4 10.9 8.92 9.04 8.96 10.6 11.5 8.42 2.92 8.37 9.88 9.49 7.64 3.95 1.01 4.01 7.84 0.32 9.13 13.2 7.76 12.3 8.72 3.81 9.05 9.97 1.75 8.73 4.85 9.05 12.2 10.7 10.7 11.4 12 12.4 8.06 9.56 6.98 5.79 3.69 9.13 6.07 13.3 7.26 7.82 5.45 11.7 10.3 12 10.1 11 4.62 11 11.1 10.1 8.4 10.9 10.1 8.94 9.91 9.11 8.53 3.63 0.77 3.78 11.7 5.91 9.51 9.09 -0.28 11 10.2 9.88 8.1 11 9.51 11.2 11.2 11.5 9.2 10 13.1 10.1 9.38 0.54 2.39 14.9 9.71 11.9 14.7 8.66 11.4 8.56 6.25 14.8 10.9 7.97 7.25 5.47 9.73 8.74 1.96 9.54 7.81 6.4 9.84 -1.26 9.69 1.46 0.65 8.9 10.2 10.6 11.4 4.53 6.24 8.94 11.8 8.99 8.7 10.5 9.37 10.6 10.6 3 8.32 11 2.31 8.25 9.71 1.05 5.7 11.7 4.71 11.1 10.2 9.38 10.6 12.2 8.88 7.99 10 9.37 6.46 8.38 8.77 10.5 7.31 9 6.55 8.45 9.35 9.28 3.5 10.7 5.63 11.8 11.9 9.07 9.68 11.2 2.38 8.45 8.94 9.88 8.77 1.67 0.25 0.61 5 11 7.04 10.5 9.57 6.66 9.73 9.15 11.8 5.16 9.69 10.1 11.6 10.3 9.93 8.62 9.12 14.3 9.9 10.2 7.86 7.99 12.7 10.4 12.3 7.92 4.92 7.82 4.5 8.08 4.07 8.85 9.64 11.1 11.1 3.08 8.36 9.13 9.55 8.63 5.33 8.79 7.72 2.59 4.67 3.97 2.84 11.2 10.7 9.14 8.77 9.61 11.9 11 0.89 1.16 8.27 7.14 6.14 9.76 8.44 9.61 9.68 2.9 6.74 9.17 8.62 8.19 5.84 12 10.8 4.53 8.57 0.06 3.9 6.63 1.79 6.36 1.86 10.8 1.47 9.63 3.96 6.7 8 6.48 7.28 5.3 5.35 3.03 0.61 1.46 11.5 8.1 7.04 4.04 6.8 10.1 14.7 7.71 10.8 5.41 14.6 12.2 11.2 12.4 10.7 11.3 11 9.48 0.65 9.43 10.6 4.86 3.23 7.67 7.34 2.76 10.7 0.77 3.79 8.34 10.3 9.78 4.83 4.84 3.88 10 7.2 10 6.49 10.1 6.35 7.69 9.25 6.23 5.9 11.8 8.88 2.47 10.4 2.29 6.06 11.5 6.58 9.04 0.37 9.61 10.9 9.21 9.27 9.49 6 6.44 9.92 2.77 8.43 9.99 2.2 -0.37 9.08 6.77 0.43 8.77 9.95 6.92 6.94 2.85 0.04 2.4 7.47 6.82 6.97 10.1 9.74 6.67 3.88 12.7 1.39 1.53 9.72 4.08 7.39 8.24 8.27 8.65 8.84 4.89 8.59 3.39 1.3 4.43 10.2 9.84 1.45 6.02 3 8.54 3.22 8.48 3.52 6.41 5.92 -0.12 7.86 7.16 8.1 3.44 5.99 6.22 8.18 6.53 3.51 8.24 6.54 7.12 10.1 6.86 3.46 2.8 1.45 4.4 5.71 5.37 7.95 2.62 5.46 0.96 10.2 10.7 6.91 5.02 7.22 8.76 7.54 6.79 7.7 2.52 1.83 4.3 1.63 0.02 3.41 5.68 0.01 8.93 4.87 0.89 4.81 4.48 2.08 5.7 6.05 4.03 8.25 3.51 7.86 2.48 5.35 4.77 1.41 8.77 5.25 -0.58 2.69 2.06 8.84 9.39 9.62 6.78 8.27 8.45 10.3 8.32 8.86 1.02 7.56 10.3 9.07 7.15 11 5.24 2.96 8.24 4.61 8.71 10.1 9.5 3.86 9.75 8.23 9.9 7.36 12.2 10.6 9.98 8.94 5.83 10.8 11.3 9.37 7.69 6.63 10.2 0.7 10.5 11.1 8.26 3.78 7.09 12.6 11.1 9.58 6.09 4.48 11.6 12.9 5.52 9.73 10.4 3.62 4.37 11.8 7.58 4.83 11.2 6.21 10.1 6.79 11.8 8.5 9.03 9.39 11.7 14.5 9.91 10.9 10.2 2.71 8.03 9.16 10.8 4.79 9.99 3.25 8.68 5.76 8.17 10.3 11.2 8.83 12.8 10 11 1.4 11.1 10.2 7.92 8.1 9.96 9.02 8.33 11.5 3.74 2.62 9.37 7.03 9.81 10.3 9.66 4.82 11.4 5.79 9.49 9.13 7.23 9 8.02 6.66 11.5 12.4 7.45 12.7 8.33 7.32 8.02 10.3 10.2 1.6 7.65 11.1 12.5 0.28 6.39 10.7 9.96 3.41 2.91 5.63 10.2 10.9 5.28 0.8 11 0.22 8.86 1.53 1.25 3.84 4.12 10.7 5.71 11 8.54 8.75 7.7 10.6 9.7 9.56 8.39 10.8 7.62 8.1 8.08 10.5 11.9 8.32 7.37 11.7 7.1 11.2 8.87 8.59 5.28 10.5 11.5 10.1 14.8 10.2 9.47 6.67 7.09 9.93 9.65 10.9 9.92 9.96 9.92 8.65 5.4 9.81 8.4 10.2 7.72 11.4 9.05 12.5 6.45 9.35 11.1 11.2 6.08 11.5 9.07 11.4 9.54 10.3 4.65 11.4 7.41 10.1 11.4 11.1 10.4 12.3 10.6 8.34 4.21 9.16 4.73 8.23 9.11 10.8 4.99 3.56 4.62 9.64 9.17 10.8 7.94 9.33 4.95 9.13 8.95 2.5 10.4 7.47 7.85 9.14 2.77 6.98 5.1 6.46 11.1 9.48 11.6 11.2 11.3 8.34 9.52 8.73 12.5 9.1 11.4 2.09 5.91 7.45 9.99 10.1 10.3 10.5 8.63 7.96 7.11 11.4 9.09 12.1 10.8 4.17 7.83 9.66 11 10.1 10.2 9.44 9.16 8.62 9.84 10 11 12.7 10.2 1.58 10.3 9.58 9.45 8.54 5.24 7.99 5.82 8.75 9.1 9.3 6.05 12.6 12.4 5.43 8.22 9.31 7.37 9.1 11.2 9.93 6.12 11.6 9.35 8.21 11.1 4.55 10.7 6.07 11.6 2.51 8.92 3.04 6.97 10.6 3.1 7.89 2.33 10.3 10.3 8 1.8 9.64 0.42 7.06 3.94 8.27 9.55 11.2 8.51 5.79 3.72 6.25 3.55 0.31 2.3 3.73 5.12 10.8 7.08 8.92 1.63 9.51 8.85 1.71 7.39 9.15 8.45 11.1 10.4 8.14 8.17 9.33 10.2 8.81 8.95 8.81 2.16 11.3 10.2 10.8 5.54 9.62 1.77 9.83 7.69 8.45 5.84 10 8.95 9.44 1.38 10.5 11.7 11.8 9.78 8.42 4.02 9.33 7.89 5.04 11 9.63 12 7.32 9.79 11.3 1.88 9.68 8.59 9.85 11.3 10.5 10.5 5.75 6.8 9.69 8.58 8.14 9.73 9.56 10 9.87 9.19 8.99 9.99 8.82 10.8 4.35 2.37 0.56 10.2 1.18 6.59 2.2 9.18 7.86 11.7 7.21 9.91 8.64 1.22 9.24 3.71 6.54 -0.16 10.7 12.8 8.39 3.96 4.94 3.54 6.39 7.69 7.64 10.3 0.62 8.16 6.86 0.53 10.4 4.98 13.1 4.99 7.39 2.88 9.45 9.16 2.72 0.72 9 9.58 4.74 4.83 4.35 0.15 11.7 6.79 6.63 4.92 9.04 1.52 2.87 8.81 8.33 9.85 5.9 2.91 9.9 9.11 3.19 7.99 10 15.8 9.32 10.3 9.09 10.3 8.56 9.61 2.13 1.28 8.94 0.69 9.59 5.82 7.33 10.3 9.19 7.73 11.9 8.97 7.5 10.9 2.84 8.68 7.18 3.01 8.41 6.83 10.3 10.6 11.4 9.94 1.36 7.4 8.96 11 12.5 7.02 6.81 10.6 7.28 13.1 7.25 7.7 8.16 7.33 11.1 1.66 10.8 2.82 7.92 1.48 7.21 9.7 9.88 2.96 1.83 9.78 7.68 10.5 12.3 9.78 9.55 5.98 10.4 3.82 7.99 3.68 10.7 4.86 6.42 11.4 6.48 6.36 3.54 4.54 7.75 11.8 2.48 10.8 7.12 9.2 5.64 1.12 6.45 9.17 4.84 6.54 8.33 11.6 1.61 11.3 -0.17 8.39 9.46 5.44 11.3 8.49 11.4 8 2.35 1.54 9.98 5.98 2.73 7.09 -0.16 1.38 5.31 7.66 13.1 2.64 8.06 11.9 3.35 2.09 7.73 10 11 8.79 2.41 3.62 7.34 11.5 10.7 8.96 9.12 8.63 8.26 11.3 11.4 8.07 9.18 7.51 1.75 9.57 9.81 6.72 1.52 5.2 2.06 9.12 9.14 8.8 7.97 8.57 1.31 8.97 4.5 1.91 8.08 4.88 9.25 2.2 8.44 1.58 9.94 9.15 5.18 8.39 12.1 1.88 10.5 9.74 11.3 11.2 4.49 11.6 11.2 9.22 13.3 13 9 9.27 8.32 8.1 7.6 4.95 10.3 10.3 9.34 8.7 2.56 6.93 8.02 10.9 8.31 5.31 6.78 12.2 10.3 7.93 1.98 10.7 9.08 9.48 10.8 3.85 10.9 8.55 0 7.91 7.83 11.4 8.6 6.75 13 -0.03 9.83 11.1 10.9 6.4 10.4 11 6.22 6.22 11.5 11 3.23 2.98 11.2 13.9 1.29 7.83 14.7 10.9 5.87 5.89 2.71 10.3 5.34 0.65 8.75 7.1 2.86 10.4 5.38 2.76 13.6 6.96 5.29 9.7 10.6 11.4 12.5 11.9 10.6 11.2 9.95 1.78 10.6 5.21 0.77 8.65 7.97 10.7 14.4 1.99 7.93 0.49 10.1 6.87 4.56 0.59 0.79 3.01 5.13 3.4 6.79 2.84 8.22 1.39 3.51 6.7 0.7 7.59 9.21 0.83 3.17 9.35 3.21 2.5 4.54 1.64 9.35 9.18 6.2 14.7 10.7 1.61 7.5 4.94 11 3.56 7.77 8.52 6.73 7.51 9.65 8.58 5.93 8.08 3.35 5.66 4.78 5.53 6.69 9.59 3.61 8.37 9.34 10.7 6.26 7.15 8.19 1.53 1.6 1.82 1.51 6.52 0.28 10.6 2.7 7.87 4.08 8.71 5.8 9.59 4.94 2.63 4.06 3.86 8.81 1.47 3.6 0.11 8.95 0.08 6.44 0.45 4.68 10.6 10.3 6.84 5.75 -0.07 6.16 4.68 6.29 5.51 8.07 0.5 4.2 4.17 12.4 3.97 5.26 3.82 6.54 9.56 4.36 10.1 5.7 2.85 7.1 1.35 4.35 8.92 9.03 0.97 4.71 12.4 10.6 9.65 7.56 0.33 8.4 8.12 1.31 6.94 8 1.67 5.29 6.72 9.28 1.95 10.2 2.19 5.18 6.54 2.31 6.94 8.71 2.68 2.07 0.86 9.35 4.56 0.63 6.96 10 7.55 7.24 6.8 7.94 3.35 1.77 6.78 3.27 9.39 3.61 2.19 7.73 3.45 8.8 -0.02 6.29 0.98 5.9 3.2 9.6 10 8.82 3.36 0.98 4.75 4.83 6.9 6.82 3.9 11.8 4.26 7.78 8.14 5.22 2.75 -0.01 9.29 2.23 0 5.92 11.4 1.88 8.07 6.63 4.81 6.48 7.46 9.11 1.13 4.05 0.23 8.55 0.92 4.96 1.45 9.25 0.63 8.18 7.03 6.83 1.68 8.04 6.96 8.59 3.19 0.88 7.73 5.42 2.88 6.94 3.23 0.64 3.55 2.57 9.21 1.15 3.86 4.59 6.94 6.4 6.33 6.12 11.1 7.18 2.49 0.34 5.1 4.82 0.27 7.25 10.1 6.49 7.33 8.12 0.42 9.57 1.21 2.36 8.14 6.4 4.03 5.92 9.55 9.32 1.35 6.21 10.1 8.09 -0.3 8.26 8.16 -0.19 9.75 1.96 6.13 10 8.73 5.82 9.62 7.23 5.58 1.72 2.84 9.22 0.2 8.7 7.55 4.61 4.78 5.07 9.1 10.7 2.87 8.2 0.27 8.92 2.84 1.61 2.8 3.35 7.5 4.66 9.79 4 3.52 9.95 -0.46 4.36 9.32 7.67 4.05 8.73 0.36 4.59 3.08 11.1 10.9 5.22 6.92 0.48 3.17 8.75 0.27 3.35 6.47 5.36 6.08 6.44 5.02 -0.25 5.2 3.46 3.49 4.97 7.61 7.36 3.59 11.5 5.53 9.42 5.34 4.13 5.58 8.59 3.18 7.38 10.1 9.74 3.65 1.33 8.35 3.71 1.75 5.82 9.84 11 7.39 3.44 6.3 8.03 8.76 8.74 0.4 2.04 5.46 5.27 7.61 5.54 6.64 8.74 9.4 10.4 2.85 3.51 10.8 11.6 10.2 8.28 8.58 11.7 13.1 7.07 11.1 8.66 5.77 12.8 9.33 10.1 1.29 2.79 10.8 8.68 9.67 10.1 7.55 9.65 9.06 13 8.76 8.93 10.9 0.48 6.45 2.92 11.5 0.94 8.57 6.95 12 11.5 10.2 8.99 9.57 7.66 6.58 9.29 6.93 10.3 8.73 10.3 10.1 8.6 -0.25 6.6 8.59 7.07 11.6 9.75 5.38 12.1 7.76 0.01 2.81 7.3 4.66 10.4 5.04 11 4.24 10.1 11 9.89 7.27 7.47 10.7 10.7 10.8 7.46 9.87 11.4 9.97 8.42 9.76 7.43 7.83 8.55 10 6.46 10 10.3 8.61 9.74 8.93 11.2 7.92 6.41 7.17 8.43 8.88 9.02 9.92 7.43 8.58 7.46 9.9 12.7 10.4 9.41 7.73 8.23 0.56 8.67 9.15 9.44 0.3 8.43 9.38 9.09 9.53 0.29 2.34 8.09 0.96 10.9 2.94 4.65 11.9 9.35 3.78 -0.02 10.9 13.2 9.64 10.9 13.7 2.16 12.2 13.4 10.8 9.91 11.6 12.8 11 9.81 8.02 9.83 9.64 9.88 10.8 3.36 13 4.26 8.04 7.71 9.75 7.68 9.58 9.21 7.14 9.74 11 9.06 9.55 7.6 8.04 9.58 11 12.4 11 7.32 3.46 11.8 10 8.68 8.86 5.89 2.61 10.9 6.44 1.6 9.43 9.2 0.58 7.7 9.51 12.6 11.1 3.6 9.7 0.16 5.17 5.49 5.25 8.32 2.39 10.2 7.29 7.01 6.36 7.65 9.67 9.22 8.36 4.27 4.05 10.9 11.7 10.4 8.13 10.1 10.6 8.25 7.83 10.7 10.2 11 6.35 11.3 1.7 10.4 9.43 10.9 7.85 4.92 6.47 10.7 0.26 8.26 2.85 9.75 10.1 7.54 9.47 9.41 9.7 10.8 7.22 7 10.8 8.93 9.94 12.3 8.28 8.5 5.14 4.45 7.27 2.74 9.68 7.69 9.27 0.75 3.6 8.87 8.62 6.11 6.28 9.15 0.91 10.9 8.87 12.1 10.6 1.97 9.92 0.91 10 7.49 7.64 9.48 7.63 9.9 7.19 9.67 5.97 10.1 11.5 8.21 9.21 7.42 8.78 -0.16 8.31 3.99 9.84 4.09 4.88 9.77 8.02 11.5 8.25 0.98 10.3 4.72 10.6 10.8 7.52 2.28 6.41 10.7 5.01 5.21 3.72 13.2 9.19 12.8 1 1.51 0.54 9.9 4.47 -0.05 9.68 12.3 8.5 14.2 12.9 13.5 10.3 10.5 7.39 12.8 11.9 11 3.89 10.5 0.96 5.29 11.2 8.94 12.6 11.8 10.7 1.94 4.42 -0.1 3.61 9.5 5.38 12.1 6.05 7.91 9.56 11.4 12.3 11.6 1.43 12.7 13.6 15 7.85 6.8 9.98 11.2 8.22 3.3 13 7.09 6.59 9.28 8.38 4.58 6.21 4.82 5.67 9.44 0.9 8.54 9.03 5.52 10.3 6.85 4.84 9.25 7.38 8.57 8.99 11.1 11.4 7.06 10.4 4.26 11.6 7.91 11.8 11.6 9.41 11.9 8.27 11.4 13.4 11 10.9 3.87 9.73 13.6 12.1 13 8.63 7.77 11.6 5.94 5.99 10.3 9.15 0.14 8.34 6.77 10.3 5.1 11.6 10.2 7.17 6.61 4.24 4.09 13 8.46 5.99 9.92 1.99 5.27 3.59 6.9 10.1 4.72 8.69 12.8 10.9 10.6 12 12.4 11 10.8 12 12.5 1.76 9.62 7.51 10.5 10.9 9.19 10.1 8.92 7.44 8.27 8 3.17 8.82 0.39 7.79 1.67 9.9 -1.94 7.99 13.4 8.22 14.2 11.8 13.1 11.3 13.4 11.7 11.4 11.1 13.6 0.69 12.4 13.5 2.8 4.75 3.43 7.85 6.31 7.01 3.77 6.46 4.75 8.42 6.12 9.51 7.24 1.12 8.79 4.86 7.28 8.87 4.36 8.22 8.8 9.23 5.77 8.76 6.34 7 7.57 10.6 4.15 9.78 1.82 8.94 -0.33 8.74 9.44 1.49 9.91 9.62 0.37 3.78 1.21 8.45 1.22 6.76 8.13 11.6 8.87 7.47 11 1.88 3.04 10.2 11 11.1 10.9 10.5 9.84 2.78 8.14 6.5 3.21 11.3 9.6 7.97 6.79 9.58 9.9 11 14.9 12.6 5.44 8.11 11.3 14.6 11.6 6.96 4.99 14.6 13.7 8.48 3.01 8.59 15.3 8.57 15.4 13 8.5 10.5 11.9 8.75 13.9 2.91 3.07 14.2 9.78 9.06 2.19 1.18 0.92 8.58 0.56 0.82 0.5 8.39 8.55 10.3 11.8 10.2 3.4 4.96 2.97 -0.61 3.47 9.89 8.66 4.25 1.17 0.83 7.62 7.77 4.67 8.25 1.99 -0.65 4.28 3.05 6.98 9.02 8.02 7.77 2.92 5.86 7.45 3.46 0.29 2.07 5.27 6.56 7.47 11.2 3.01 9.27 7.24 2.56 7.46 9.2 8.6 8.37 11 7.35 8.9 7.95 6.92 7.03 7.39 1.36 4.99 8.36 4.53 8.63 9.62 8.32 1.38 8.15 5.22 7.27 6.4 7.01 3.6 2.78 6.65 9.13 5.13 1.91 9.84 10.3 1.88 1.67 10.2 6.68 5.42 2.43 3.79 4.48 8.63 3.96 0.7 8.6 4.88 9.08 3.57 8.98 1.64 0.92 3.88 4.12 -0.06 7.2 6.66 -0.39 8.85 3.22 7.25 2.03 8.08 7.59 5.24 4.59 1.69 8.31 8.35 5.24 2.89 0.06 7.6 2.01 9.52 5.04 4.73 7.74 5.18 5.63 6.83 3.84 1.33 -0.25 10.1 2.43 13 12.1 10.7 10.6 5.09 8.71 -0.27 7.07 7.33 10.6 10.8 -0.41 6.96 10.4 0.36 6.93 0.71 3.04 7.88 6.24 8.21 2.92 11.9 4.53 5.16 0.68 1.27 7.16 4.21 7.63 1.93 8.2 0.45 7.32 8.44 0.11 6.91 6.87 2.27 0.41 4.68 1.77 3.13 3.51 7.8 7.17 3.25 4.84 -0.04 3.68 6.22 4.33 3.54 7.49 3.51 5.25 3.87 2.07 2.94 11 1.65 8.35 -0.27 1.25 7.63 9.28 1.92 4.04 10.4 3.66 10.8 2.95 2.98 2.08 9.31 1.37 2.33 2.44 4.46 5.18 0.61 7.41 5.49 7.25 0.32 4.82 5.02 9.06 1.78 10.3 1.19 3.77 11 11.4 2.49 3.15 2.14 0.16 9.46 4.25 7.31 6.84 7.76 7.61 4.11 4.49 5.77 7.82 9.13 2.96 6.68 11.8 10.1 2.93 8.01 9.76 6.23 0.66 11.7 9.57 2.05 9.34 10.5 3.75 7.79 10.1 5.11 -0.15 5.54 5.97 2.25 10.5 10.6 6.27 10.2 6.79 -0.24 0.29 1.4 1.23 6.06 3.66 9.02 8.98 14.4 13 9.55 4.61 6.98 4.37 9.84 6.21 4.38 5.98 0.81 1.05 9.45 5.52 4.13 2.48 4.83 4.17 4.42 8.54 1.98 1.37 8.25 7.34 11.4 9.42 2.73 5.36 8.74 8.23 10.1 5.82 3.99 7.29 8.67 5.78 10.8 1.22 2.93 7.63 6.7 8.52 5.57 5.61 8.97 3.62 4.26 8.73 3.35 3.04 2.63 8.32 9.2 4.19 7.52 0.88 0.74 4.39 5.51 11.5 4.93 8.21 12.9 10.4 10 6.58 10.4 8.33 4.14 1.52 6.92 3.67 7.87 10.4 12.5 12.7 0.81 9.78 8.94 8.71 11.1 12.3 11 5.74 8.73 6.14 5.02 6.45 6.6 -0.17 7.43 9.44 3.98 8.97 9.4 8.06 7.13 10.7 8.73 2.26 3.28 11.6 0.57 12.1 7.31 3.93 12.4 13.7 8.98 10.9 10.2 4.5 8.6 9.62 6.7 7.04 9.81 7.77 10.2 10.2 1.39 8.33 9.61 10.8 2.51 12.7 7.9 10.2 6.18 7.59 4.94 1.07 8.9 7.52 6.38 11.7 6.38 13.2 8.09 10.1 6.87 12.7 11.8 11.2 10 8.48 9.08 2.24 1.34 2 11.7 7.45 5.76 11.8 9.88 10.4 8.93 9.96 8.79 9.89 14.2 11.9 7.32 12.3 9.56 7.72 13 9.16 10.7 10.8 11.3 14 7.67 9.28 10 10.1 11 -0.34 4.46 7.66 6.9 2.06 0.06 7.56 9.9 7.25 7.38 7.66 9.44 10.9 5.57 0.77 4.26 -0.39 1.38 7.63 0.85 5.88 3.97 6.34 9.36 8.3 8.33 0.44 1.75 5.3 5.33 7.77 1.99 7.43 3.52 5.3 9.74 7.91 0.01 7.27 2.4 6.14 6.46 2.51 7.37 0.68 5.93 9.54 14 6.63 7.25 6.47 11.9 0.46 8.25 7.41 1.07 3.5 5.29 7.34 8.45 6.27 5.57 1.06 1.15 3.91 1.14 7.84 7.06 4.94 7.08 7.64 8.39 5.02 6.52 6.45 2.58 -0.04 1.07 5.26 3.63 7.35 3.77 1.12 3.11 10.4 7.01 9.78 1.67 7.67 14.9 6.47 1.17 5.82 6.09 8.05 5.45 1.34 8.77 1.45 6.49 5.66 6.56 6.28 3.08 8.45 12.4 6.5 2.62 3.3 0.86 10.7 10.9 4.49 8.19 3.79 12.9 1.84 2.7 5.16 12.2 7.69 1.82 1.47 2.76 8.67 7.1 -0.86 6.27 14.1 5.86 8.9 4.05 8.95 0.18 5.75 8.69 7.39 0.49 14.1 9.75 3.91 7.74 0.05 2.56 1.19 9.61 1.18 0.07 8.46 8.74 -0.02 11.4 4.33 1.13 2.26 0.97 2.86 0.03 10 10.5 9.92 10.9 10.2 12.5 12 9.97 7.22 11.7 5.82 11.6 11.8 10.5 2.61 0.46 15.1 9.6 3.22 9.16 7.37 10 13.8 6.96 4.84 12.4 0.92 8.31 2.65 4.35 4.78 3.2 8.26 2.93 0.43 3.6 8.68 4.03 4.73 13.9 8.45 10.5 2.48 1.64 1.65 5.26 6.4 8.51 9.37 0.26 1.17 2.72 5.73 4.22 6.69 5.98 7.81 6.01 3.41 3.23 8.13 3.08 1.71 8.78 6.95 6.68 9.8 1.15 1.33 11.1 1.31 8.46 4.18 8.3 8.84 2.96 3.13 6.24 4.45 7.77 2.02 4.7 1.79 4.56 7.49 7.5 4.72 6.56 9.47 3.15 1.08 13.7 0.19 3.56 8.79 7.37 9.23 6.6 6.71 7.03 6.02 1.33 1.51 9.24 9.54 0.8 6.84 1.58 7.44 -0.14 8 7.62 0.88 5.57 6.38 9.07 9.36 0.32 9.03 1.53 0.75 6.6 6.15 9.15 8.17 6.45 0.76 8.65 11.4 8.4 3.69 2.6 2.2 3.16 4.74 6.46 3.37 9.23 -0.18 4.81 5.51 5.62 4.26 7.7 7.53 11.5 1.56 12.2 4.89 5.15 9.16 -0.14 1.65 5.25 7.79 8.53 3.86 1.23 6.19 2.58 7.46 0.61 5.83 2.71 -0.11 6.68 1.75 2.88 5.64 9.14 9.15 5.27 2.59 0 2.12 6.01 1.16 2.96 3.96 6.56 -0.18 7.96 10.5 8.44 1.12 8.57 9.82 9.92 7.04 10.8 1.98 11 1.32 12.4 0.23 7.85 12.3 11.7 12.4 6.9 0.11 11.5 12.3 13.3 2.58 4.27 4.01 11.3 4.52 13.2 0.87 0.97 8.97 11.2 5.22 7.06 13.7 9.54 7.68 2.42 12.9 11.3 12.6 12.9 7.55 0.66 6.03 11.8 12.1 10.3 8.87 13.7 14.4 12.1 13.2 9.29 10.4 9.41 2.25 8.86 8.35 9.69 6.2 9.13 8.68 11 8.41 10.9 9.73 10 5.82 0.72 7.15 8.77 12.2 0.39 2.57 8.23 6.26 10.1 8.98 11 3.45 7.78 0.58 11.9 2.48 1.98 6.98 7.21 11.7 4.46 8.09 6.9 10.8 -0.49 7.19 4.58 10.8 10.9 13 8.28 10.2 5.67 9.78 -0.31 4.46 4.87 10.4 6.32 8.38 7.24 9.56 1.57 7.35 8.08 2.18 6.91 5.96 0.26 7.23 1.95 0.7 3.89 8.16 3.98 8.64 3.48 2.49 9.43 3.35 11 8.4 8.95 4.69 8.54 3.32 6.26 5.96 2.68 8.28 9.78 5.07 6.89 -0.69 2.76 3.21 5.74 1.83 3.92 3.46 11.4 0.52 7.69 5.45 5.5 1.99 8.78 1.93 0.02 2.34 4.04 10.9 4.32 5.84 6.28 4.4 8.61 1.25 5.18 7.34 1.72 8.86 9.71 0.77 7.55 8.2 9.84 6.2 10.9 9.38 0.18 3.3 2.26 2.01 5.84 9.33 3.2 4.92 10.3 5 -0.13 5.34 7.6 8.54 7.44 1.16 6.65 4.19 9.65 0.02 2.33 8.92 3.18 3.77 7.24 5.04 8.36 1.56 8.16 9.71 13.3 3.67 8.85 7.47 10.1 6.17 7.64 12 1.88 3.32 1.88 5.57 11.6 4.13 2.59 7.74 7.88 10.2 10.3 11.4 9.77 2.7 9.66 6.08 8.78 7.88 10.4 9.44 10.5 3.94 6.72 3.61 8.2 11.2 6.45 11.1 11.2 4.01 5.02 10.1 6.21 10.8 4.64 21.6 12.1 13.3 13.4 11.2 12.6 12.2 0.8 6.84 6.66 5.26 8 13.1 10.7 10.9 11.1 9.62 10.3 10.2 10.1 9.22 10.7 7.38 8.23 1.76 7.63 10.3 -0.27 8.8 9.23 7.37 9.24 3.16 4.01 9.19 9.43 11.1 8.91 9.47 10.7 9.65 9.03 7.08 7.01 8.02 6.05 12 4.59 3.54 7.33 11 10.2 8.24 4.81 11.3 7.74 2.19 8.6 6.41 2.42 7.48 5.85 1.71 12.9 1.86 2.34 7.43 10.9 5.6 9.79 6.91 8.12 7.74 12.5 11.7 3.13 9.56 10.9 9.27 7.43 10.3 6.95 6.13 1.02 12.7 9.53 11 10.3 9.41 10.9 10.4 13.7 3.13 10.1 8.35 3.45 11.3 11.4 12.6 14.5 10.3 9.32 9.43 10.2 10.3 9.57 5.97 7.09 10.4 6.54 2.92 8.45 6.76 10.2 9.25 8.6 9.4 9.09 10.6 9.69 3.18 0.17 9.17 10.3 8.4 9.67 7.76 9.65 6.45 8.8 6.66 6.93 10.7 9.87 8.35 8.68 10.4 10.4 7.4 6.97 2.98 10.5 10.9 7.39 10.5 11.9 5.55 9.71 11.5 9.24 1.51 9.17 8.94 8.54 12.3 10.3 8.32 9.69 7.15 9.11 10.4 11.4 10.4 10.9 6.51 7.28 7.49 10.4 12.5 8.7 7.33 7.52 10.3 2.73 0.18 0.45 5.51 5.66 10.5 12.4 6.1 11.5 5.63 6.5 8.01 8.78 2.79 4.8 6.91 6.29 9.59 0.69 7.75 8.1 2.18 8.86 5.8 8.75 9.51 9.16 4.21 1.64 6.79 4.92 6.71 9.06 7.58 3.56 6.99 9.15 12.1 0.83 2.07 9.63 7.99 1.41 4.34 5.87 8.09 10.1 4.19 0.55 4.76 3.34 7.13 1.28 8.37 8 1.58 4.98 9.79 10.8 3.65 10.2 9.65 3.96 8.66 4.6 7.65 7.7 3.95 9.45 7.41 1.73 8.37 1.01 7.93 4.82 5.35 6.09 8.05 0.04 9.42 11.5 4.17 9.46 4.52 2.56 0.78 4.28 7.03 6.42 1.49 0.19 8.72 6.78 7.86 5.55 14 3.72 6.34 3.1 5.8 6.29 5.39 5.45 7.8 6.69 2.45 6.22 7.38 5.32 1.89 4.37 5.11 0.58 6.93 5.45 2.84 0.21 3.45 4.5 2.83 1.77 2.65 2.88 10.1 0.58 6.68 5.47 3.59 5.9 7 4.19 5.25 11.4 0.36 0.6 0.96 0.55 0.42 0.62 8.69 1.09 0.26 7.04 4.52 2.27 0.21 11.2 1.77 9.47 8.54 0.6 10.5 12.9 11.3 8.44 2.48 8.96 7.02 3.63 8.59 11.4 5.71 8.26 6.89 11.3 7.97 4.19 4.72 6.94 2.23 6.86 6.97 9.36 4.64 9.17 8.42 10.6 12.6 10.1 8.53 6.8 0.84 10.3 9.07 9.43 14.4 4.04 13.6 9.79 10.8 6.86 7.88 7.31 9.87 9.25 7.24 7.9 7.92 10.4 0.4 0.82 -0.51 11.2 6.45 7.28 10.4 7.42 1.06 5.57 13.7 6.48 6.02 9.14 0.63 7.18 12.7 9.52 9.41 12.5 11.6 11.2 8.15 11 12.5 6.38 9.49 8.21 10.9 12 9.92 10.2 9.47 0.31 10.2 7.69 13.8 10.2 9.44 10.3 12.7 5.55 11 1.69 3.37 10.3 11.8 10.2 11.7 15.7 12.4 8.7 10.7 2.23 0.29 10.1 6.5 6.15 7.98 13.9 5.33 10.6 10.3 8.37 11.7 10.3 12.1 10.3 8.96 9.56 11.2 10.7 11.3 11.5 9.3 10 8.8 11 9.54 10.6 9.09 9.64 10.1 11 12 9.51 10.6 11.5 10.5 12.7 10.5 11 8.33 10.8 10.2 9.59 10.4 11.7 9.45 9.03 8.75 13.5 14.1 10.1 10.8 4.87 6.91 7.9 5.76 6.39 0.57 0.34 2.11 4.82 8.78 7.15 10.1 7.98 8.77 11.2 12.9 14.1 11.4 0.16 9.41 7.66 7.51 8.83 8.78 7.96 6.06 13 5.93 11.7 10.1 9.55 7.72 11.7 10.3 9.85 9.21 10.3 8.59 9.07 9.18 9.24 9.7 10.1 0.6 11.1 9 9.22 2.61 4.53 11.5 16.1 8.49 10.8 8.2 4.55 9.13 5.06 3.24 12.1 7.05 4.42 6.79 12 10.5 13.2 10.3 9.35 9.01 11 7.7 3.88 10.3 12.9 5.32 7.21 11.8 9.91 8.35 11.5 10.6 10.2 8.46 3.6 -0.17 11.4 2.8 11.2 8.95 9.77 5.49 13.2 7.13 2.67 12.7 4.2 7.1 1.75 3.09 2.29 12.5 11.8 10.5 6.12 11.4 8.21 0.81 9.81 5.77 3.38 4.51 12.2 11.2 10.8 2.22 9.44 1.63 10.5 0.97 -0.18 7.25 -0.42 4.15 5.49 6.57 4.84 9.92 11.9 10.8 12.7 10.2 11.7 9.84 10.4 9.14 4.91 8.84 8.67 8.92 7.59 3.79 9.41 5.39 4.2 7.77 9.38 5 10.1 9.52 0.78 7 12.3 7.51 -0.12 4.39 3.86 0.46 12.4 9.61 9.75 12.3 9.72 0.68 12.1 7.31 2.44 1.39 1.92 5.07 4.83 3.72 2.15 11.9 9.9 13 6.66 7.98 9.09 7.3 9.4 2.48 3.61 7.68 8.6 10.9 9.73 7.78 6.65 4.11 4.3 12.2 4.96 8.78 5.31 4.24 7.06 8.77 10.8 10.9 6.47 7.82 7.78 5.52 2.95 6.4 6.17 4.47 9.11 10 14.6 5.3 7.13 11.5 1.47 3.07 2.28 11.2 9.38 12.2 10.6 12.2 10.3 8.75 5.7 11.6 9.24 8.79 14.2 10.5 9.54 8.91 5.69 12.8 7.77 0.42 10.7 14.1 -0.54 5.42 10.3 8.1 12.6 5.96 9.47 10.3 7.22 3.4 9.35 7.93 9.18 4.27 10.3 6.49 1.58 12.2 10.9 7.2 1.73 6.49 -0.2 3.39 9.05 11.3 12.5 5.77 10.3 8.64 8.98 3.78 2.66 0.83 13.6 2.81 10.1 11.6 5.32 5.34 0.17 5.88 10.7 6.72 8.83 9.95 12.1 7.63 8.31 9.97 12.9 1.72 1.28 13.6 7.57 5.53 0.66 8.34 9.26 12.6 10.2 10.8 11.7 9.76 8.17 8.4 6.05 8.34 6.38 9.72 9.38 9.31 2.09 7.63 6.56 12.2 7.88 11.9 9.87 6.96 9.86 7.85 9.74 10.9 7.01 8.07 9.79 7.47 10.4 8.32 10.3 10.7 13 10.9 11.8 8.08 10.8 5.52 8.22 5.8 11.6 4.6 6.28 8.85 10.8 10.9 4.19 6.64 10.2 2.99 8.72 11 9.33 9.55 8.41 7.72 10 7.95 12 7.4 9.25 10.7 11.2 11.2 10 10.8 8.32 9.56 7.98 -0.21 6.64 7.87 10.2 9.44 10.4 9.04 11.6 7.86 9.69 11 8.91 9.73 11.3 11.1 7.26 8.04 9.46 8.59 10.6 8.16 11.7 11.5 11.2 12 8.85 9.85 8.85 11 9.77 9.93 9.73 9.19 10.6 8.61 9.35 11.8 10.4 9.37 10.4 4.13 9.61 5.72 8.08 8.59 11.5 12.2 7.31 8.33 7.42 10 9.92 12 9.6 11.8 7.87 7.54 7.01 13.6 1.7 10.7 12.1 7.63 10.9 10.7 6.5 9.44 10.1 11.2 5.59 8.76 4.68 11 4.09 8.29 7.89 8.2 7.5 7.54 8.53 9.3 9.92 7.53 9.08 10.7 10.8 9.42 10.1 6.44 7.65 9.79 8.56 11 7.72 8.56 9.96 9.57 10.8 9.18 8.35 2.01 13.2 1.89 9.53 0.99 9 6.09 4.59 7.83 8.54 10.1 9.34 9.72 3.99 10 9.3 8.83 7.07 10 9.07 11.8 9.62 9.1 9.1 7.59 9.36 9.76 0.28 10.6 9.23 8.1 7.27 10.3 9.66 9.31 9.88 9.8 3.89 4.39 2.83 10.3 10.1 10.6 11.5 8.62 4.56 7.26 9.69 8.55 8.75 13.9 8.42 9.74 11.6 4.32 2.79 9.76 9.02 9.43 8.96 9.63 10.7 7.16 9.24 6.76 3.65 9.73 9.19 9.64 7.84 10.2 12.8 6.09 9.22 10.6 3.65 7.86 4.5 4.08 10 10 0.37 7.34 9.18 8.47 10.1 8.65 9.27 10.2 11.7 10.7 5.64 10.1 4.68 10.1 7.34 6.34 4.68 12.1 10 5.29 5.91 8.78 10.1 11.3 10.3 9.89 0.66 9.78 -0.19 3.47 9.31 10.5 9.64 9.29 2.28 3.23 11.5 7.7 10.3 1.28 11 11.2 8.34 9.5 8.6 9.29 9.32 4.73 8.74 10.2 1.71 8.72 11.4 8.78 9.7 4.44 8.2 10.5 8.2 10.7 9.61 12.6 7.66 9.87 9.37 7.97 9.02 6.16 6.81 8.66 7.89 8.6 7.16 10.8 10.9 7.65 11.1 11.2 9.28 6.49 10.9 7.13 1.94 11.2 9.44 10 11.5 2.25 9.62 8.24 9.69 9.19 4.22 11.2 7.3 8.27 4.21 12.6 8.45 8.03 11 1.39 9.48 8.36 10.8 12.8 9.64 11.8 9.12 12 9.24 8.19 9.19 10.9 12.4 11.2 9.82 10.9 9.05 7.62 9.06 8.37 4.82 11 10.5 9.48 10.8 9.35 11.3 9.9 10.2 3.72 7.71 7.98 4.98 10.4 9.28 7.9 8.86 8.32 8.24 10.3 8.62 9.54 9.32 7.83 8.3 11.5 5.68 0.01 7.94 8.94 7.24 4.72 7.78 10.3 10.1 10.2 10.5 0.86 9.94 12.4 10.1 9.68 2.77 12.2 10.2 9.9 8.91 10.4 10.9 10.8 10.2 10.3 13.2 9.68 11 7.31 11.4 10.5 11.9 8.86 9.87 9.69 8.31 12.3 8.94 0.56 7.22 10.3 11.9 9.71 8.34 11.5 9.23 11.1 8.97 8.79 9.69 10.9 10.1 9.52 8.18 10.3 9.92 9.57 8.73 11.1 7.26 9.26 8.87 11.5 9.2 6.59 7.94 6.56 8.32 9.6 7.76 11.2 8.87 10.5 7.32 12.2 7.57 7.3 4.1 2.65 7.22 7.67 4.59 2.22 9.43 8.19 9.78 8.62 10.3 9.3 12.5 11.5 7.97 8.84 1.96 11.3 7.72 5.27 9.62 8.41 10.9 7.48 1.1 11.9 0.48 9.03 11.3 13.5 9.88 11 1.23 10.8 8.52 1.33 7.73 6.98 11.3 2.8 12 9.18 10.1 1.48 9.23 8.41 11.2 9.99 8.4 4.46 0.69 8.98 9.64 1.4 10.3 10.7 9.7 9.99 2.22 12.3 12.4 5.8 7.61 5.77 8.41 10.8 8.58 10.6 7.97 8.69 8.77 10.7 8.82 8.3 7.94 9.4 8.71 5.94 1.38 8.86 3.88 10.6 11.1 10.6 8.5 12.1 12.3 2.7 11.2 10.2 11.2 6.41 12.6 1.56 11.1 11 13.6 10.9 6.21 10.7 11.8 5.37 15.1 12.6 5.47 9.21 10.8 13.5 9.93 9.85 3.94 3.61 4.71 2.29 11.9 6.92 12.3 0.99 9 9.97 9.07 8.63 10 11.5 3.06 9.72 9.44 12.8 8.97 12.2 12 7.51 8.4 9.8 6.58 8.25 9.8 10.5 8.99 8.75 15.5 11.7 11.6 8.53 10.4 9.21 9.7 8.96 7.39 5.92 9.74 10.7 10.6 10.8 9.48 8.78 0.34 8.39 9.01 11.6 8.84 11.8 8.91 0.41 15.3 9.17 10.9 0.76 9.58 5.55 6.94 9.87 9.5 10.6 11.9 11.3 5.99 10.7 11.1 7.13 1.56 11.2 5.9 6.59 3.56 8.58 8.71 4.09 3.21 8.58 9.54 1.16 8.42 7.07 11.2 9.7 9.21 9.36 13.9 2.27 5.75 9.19 6.91 6.31 3.96 3.35 11 12.6 10.6 2.75 12 8.85 0.48 11.5 8.85 11.1 10.2 9.15 8.12 10.4 10.7 1.21 11.1 5.77 10.3 2.17 12.7 9.99 6.31 1.43 3.62 11.8 11 8.73 11.1 9.75 8.44 6.99 8.33 5.31 3.06 3.45 1.04 5.28 11.6 4.33 6.02 3.1 3.43 12.2 0.68 9.84 7.01 7.77 4.62 11.9 9.87 8.61 8.47 8.65 9.11 7.76 11.2 9.25 6.48 9.16 6.91 11 8.29 10.3 11.1 10.3 3.22 3.04 7.07 6.89 7.6 -0.06 8.98 5.46 2.21 8.93 11.6 8.92 6.42 4.01 10.8 9.63 11.4 0.67 11 5.8 5.95 2.25 7.33 2.46 8.43 8.37 6.75 8.9 9.61 10.8 10.5 12.6 11.3 3.49 2.89 3.89 9.03 7.9 8.62 10.3 9.89 6.46 3.66 10.3 10.2 12.4 11.9 9.73 3.5 3.81 9.34 7.17 7.2 10.8 8.03 5.66 8.36 11 2.78 6.71 11.9 10.3 9.74 8.86 9.69 11.9 9.25 4.58 9.69 10.2 3.42 3.53 12.6 9.44 8.92 9.99 1.7 9.41 2.36 5.2 9.6 6.68 6.18 11.1 10.7 9.99 10.3 8.81 9.8 6.23 1.97 12.5 10.2 11.9 9.44 9.75 9.59 8.52 -0.07 9.74 9.86 10 9.78 5.87 9.73 9.95 8.21 10.4 9.6 7.07 10.4 8.46 9.49 9.43 9.03 6.93 9.43 8.17 10.1 7.8 12.2 9.3 8.11 12.8 9.08 6.34 9.25 6.6 2.79 7.53 6.98 8.86 8.54 8.25 8.55 5.58 6.88 10.2 9.76 7 9.9 0.95 9.46 10.2 9.29 9.47 9.77 9.7 7.58 10.4 10.3 10.3 8.7 11.5 10.4 6.15 10.2 7.56 9.38 7.01 5.8 5.2 9.97 8.1 -0.09 8.4 11.3 7.29 9.19 9.09 0.41 11.4 5.57 10.5 10.4 10.6 8.9 3.52 9.76 9.28 6.95 11.2 10.8 8.47 6.69 8.15 5.97 13.3 11 3.35 9.25 10.3 10.9 9.54 10 3.17 11.4 10.4 6.92 8.66 9.01 9.82 10.5 10.7 1.55 11.5 9.12 8.01 10.2 9.53 7.79 4.04 11.1 3.46 12.6 9.32 0.91 10.3 8.61 8.57 2.32 3.95 2.82 12.4 4.39 3.69 3.26 11.2 3.83 7.59 11.9 5.72 5.39 10.1 10.2 3.2 9.95 9.4 12.2 9.21 6.94 7.16 10.1 12.9 9.2 9.92 11.3 4.17 8.49 8.14 9.31 8.74 11.3 9.57 8.61 7.08 9.5 7.02 8.45 9.5 8.56 7.22 9.28 11.1 8.57 7.72 11.1 8.78 8.69 10.4 8.04 9.79 7.33 6.82 7.22 0.23 8.77 5.03 6.14 0.46 10.5 8.69 8.19 9.3 6.9 8.99 8.58 11.2 9.13 11.8 5.76 8.57 7.95 8.7 7.96 9.96 8.79 9.58 10.4 2.58 10.3 8.84 9.91 10.4 11.3 7.13 8.41 10.4 8.42 10.8 9.11 9.97 10.7 9.96 5.32 10.2 5.66 10.4 8.34 9.49 7.02 11 8.66 12.6 9.21 12.1 9.92 10.3 11 12.5 9.71 9.36 9.74 10.7 8.59 11.4 3.03 7.75 8.21 6.3 8.06 11.2 8.24 10.6 4.97 11.9 8.43 9.79 9.54 9.89 11.8 8.58 12.8 10 7.08 9.96 8.42 7.63 8.69 10.7 9.5 11.8 9.02 10.1 8 8.8 8.25 8.54 8.94 8.85 9.16 1.03 10.8 10.1 10.6 11.9 10.4 7.94 4.68 9.37 9.08 10.7 10.9 10.6 9.31 8.4 10.4 6.96 8.47 6.9 7.6 4.9 10.7 8.7 9.68 6.8 10.1 5.76 10.3 0.97 8.73 7.35 7.8 7.14 10.2 12.4 7.92 8.89 9.79 10.8 6.05 9.07 8.12 7.06 9.55 6.54 8.67 6.74 9.6 0.47 10.4 11 9.69 7.22 12.2 8.24 7.98 11.4 12.1 8.92 10.9 12 11.6 6.95 10.7 9.04 10.4 8.93 8.29 8.92 8.44 9.78 11.3 7.86 10.1 7.6 7.87 7.74 9.43 9 5.38 10.2 4.27 2.77 10.3 5.62 11.7 5.94 1.11 8.2 9.39 9.56 11 8.84 8.07 7.59 9.93 4.46 10.8 7.17 7.67 11.3 8.89 12.8 11.8 8.92 8.33 12.2 9.98 9.37 7.17 7.01 5.39 9.64 4.16 3.04 5.97 5.71 3.77 9.77 3.14 10.7 7.39 6.57 7.47 9.18 8.03 10.2 11 7.83 7.34 7.94 10.6 8.01 8.62 4.71 9.67 0.68 7.74 9.2 10.6 7 7.97 11.3 4.95 10.3 8.55 9.11 10.1 9.49 9.77 7.18 10.9 9.94 9.89 8.25 9.81 8.23 7.16 10.4 6.83 10.7 7.34 9.21 5.32 9.03 10.7 8.09 9.49 0.16 9.04 10.4 9.01 7.33 5.07 5.67 9.66 12.3 9.52 9.08 10.5 9.55 7.61 9.61 9.88 9.87 9.85 11.5 4.37 7.42 9.25 10.2 9.38 9.5 10.5 10.9 11.1 9.75 11.8 10.5 9.01 9.97 7.9 9.12 10.4 9.44 8.93 8.19 10.7 11 8.08 7.03 10.2 8.36 6.98 12.4 8.58 8.78 9.91 10.3 6.15 9.25 12 7.99 10.6 6.73 9.4 7.4 11.1 5.95 4.78 11.6 10.6 8.91 7.1 2.44 10.6 7.48 9.56 4.71 10.5 7.95 9.28 10.7 8.64 11.3 1.49 11.4 8.54 9.45 7.28 10.5 9.43 6.45 9.36 11.2 9.97 3.82 7.81 7.21 3.98 10.7 10.6 9.38 2.4 8.86 6.25 9.98 2.76 9.99 10.7 10.8 7.2 9.1 11.5 11.1 6.57 6.31 9.83 10.1 5.64 7.87 10.6 11.1 7.43 11.6 9.86 8.5 8.9 8.49 10.3 9.34 9.38 2.79 7.96 7.37 7.96 10 1.76 9.13 9.99 10.6 9.29 10.2 3.53 9.65 11.4 10.8 6.04 10.2 8.82 10.6 8 8.37 5.69 5.11 9.12 8 10.3 0.39 9.54 11.7 3.87 9.17 9.03 10.7 11.4 8.33 8.32 7.47 6.4 9 7.8 9.73 1.53 10.6 10.4 2.01 7.2 8.39 8.94 12 9.42 9.63 9.79 10.2 8.81 9.05 5.75 9.36 7.86 7.51 9.83 9.47 5.98 10.2 5.82 10.9 6 9.95 10.6 3.03 6.81 7.76 8.46 9.61 9.11 10.3 11.9 3.33 6.43 9.2 10.5 10.4 6.3 11.2 9.61 10.6 10.6 7.71 7.32 8.98 9.77 3.1 6.04 9.06 11.4 9.39 7.66 7.46 6.88 10.5 9.21 10.8 9.53 8.15 11.6 7.98 10.4 6.87 7.59 12.5 10.8 3.95 8.3 1.55 7.3 10.1 5.17 5.01 -0.48 0.3 8.27 5.36 10.2 10.2 5.87 2.35 9.09 13.1 9.17 11 10.8 9.42 7.01 3.4 10.5 3.76 11.4 12.9 7.96 7.52 3.33 9.04 9.91 7.43 4.39 10.1 2.82 5.84 8.78 10.2 2.37 8.87 6.21 4.74 9.57 9.75 7.44 1.56 6.01 8.32 8.76 4.24 9.4 10.2 0.53 1.8 7.84 4.69 7.99 10.2 7.71 9.2 5.23 5.92 11.3 7.61 11.6 8.87 11.5 0.46 9.05 9.32 6.85 5.27 10.8 11.3 8.48 9.87 7.39 10.3 8.62 7.08 3.73 10.3 7.83 12.6 10.2 10.6 8.08 11.7 7.19 8.23 12.3 11.6 4 9.49 8.39 8.51 8.13 6.61 11.8 9.65 9.29 7.42 11.3 10 11.1 9.63 11.3 8.02 12.6 7.41 9.28 7.65 9.07 8.89 7.3 9.46 9.42 7.2 9.23 6.5 10.1 8.75 8.97 9.02 9.97 7.39 9.79 8.54 7.88 11.5 10.2 9.82 8.9 9.57 6.32 10.2 11.9 11 10.3 7.65 8.33 10.2 11.1 10.6 7.35 10.3 8.2 8.18 11.3 9.79 7.86 10.6 5.79 8.47 9.75 10.4 12.3 8.65 9.08 9.83 3.53 9.27 7.16 9.91 3.91 8.31 9.91 9.08 2.17 13.1 9.31 9.82 8.53 9.47 8.05 9.1 11.2 9.92 10.8 8.7 10.2 6.91 6.01 0.84 9.93 8.83 9.86 10.4 9.28 10.9 5.91 8.3 9.93 9.18 9.85 7.5 9.61 12.5 10.2 8.25 7.14 9.6 11.9 11.2 11.5 10.2 11.4 8.97 10.2 7.74 8.66 10 11 11.9 11.1 8.79 8.99 9.96 11.5 1.95 12.7 9.83 8.48 8.94 10.3 9.97 8.19 10.2 9.96 7.6 10.2 8.78 12.3 10.1 9.32 9.14 6.01 9.41 7.78 9.44 9.22 9.65 6.04 7.43 7.53 11.2 8.39 9.22 8.87 8.28 8.91 2.09 7.8 9.39 8.24 6.26 11 8.96 9.24 7.33 8.93 7.8 8.57 1.97 7.74 11.1 2.86 10.2 6.04 3.59 11.9 10.9 7.71 7.06 10 0.4 6.23 9.87 10.2 2.52 10.5 10.1 6.04 9.01 8.99 6.61 10.1 10.9 7.63 10.5 10.4 11.3 10.2 8.29 9.32 8.81 12.3 5.23 9.48 5.26 9.08 11.4 7.79 9.7 8.63 10.6 7.7 9.46 10 4.07 11.1 6.37 9.38 8.05 11.4 7.54 10.7 9.28 8.53 10.9 8.6 1.72 7.87 3.88 11.2 9.4 9.82 10.8 3.76 10.3 0.16 3.5 2.99 13.2 10 9.47 9.49 -0.1 10.8 9.75 10.1 5.82 10.2 9.94 11.5 5.75 9.93 8.99 12.3 8.36 10.8 9.04 9.46 9.5 4.41 13.3 8.98 5.35 8.26 2.05 10.4 6.61 11.2 11.2 6.23 6.21 10 9.85 5.9 -0.03 8.75 10.6 10.9 10.7 11.4 10.7 6.55 8.7 9.99 8.7 9.74 8.67 1.31 6.55 7.16 11.6 10.2 10.9 4.11 11.7 7.06 10.2 11.8 9.95 11.4 11.9 1.69 6.6 7.55 6.9 9.26 4.64 3.6 5.62 7.07 3.36 4.21 4.52 4.89 5.75 5.26 9.31 5.09 3.5 4.59 11.3 4.41 2.93 1.71 3.46 4.8 10.3 3.42 5.48 8.83 7.83 6.65 7.49 6.54 6.35 8.1 4.85 10.6 6.02 5.88 4.02 6.79 2.71 8.41 6.92 4.22 0.91 3.37 3.36 10.2 8.82 8.97 9.84 3 9.54 10.6 0.92 4.52 8.04 6.88 11.1 0.26 8.11 10.5 3.23 10.2 11.1 5.26 9.71 9.53 4.43 9.71 11.2 5.9 9.4 8.82 10.9 9.31 9.79 3.09 2.69 9.72 8.61 10.2 9.83 9.68 10.6 8.44 7.42 11.4 7.07 5.39 11.8 9.35 9.24 8.45 1 -0.16 12.6 6.75 10.4 4.45 0.04 15.2 4.97 6.91 4.71 9.02 6.34 9.3 11.1 9.31 9.78 9.14 12 8.9 9.29 12.1 9.01 9.44 1.92 -0.84 3.16 2.02 7.58 -0.18 10.3 6.08 11.6 9.91 14.8 6.53 0.41 8.61 8.37 11.1 10.6 11.2 7.1 9.23 10.6 8.76 11.4 10.2 10.3 9.04 2.03 11.3 10.7 12.1 11.1 12.1 10.3 14.3 11 6.91 7.47 11.2 11.3 7.2 11 8.63 -0.15 10.6 10.3 8.26 8.69 9.48 10.1 6.92 8.56 10.9 12.3 6.24 9.35 11.5 8.63 10.4 5.49 9.32 11.8 6.63 9.8 7.74 7.53 11.6 9.87 10.9 9.77 11 9.26 8.8 13.2 7.51 10.9 9.05 9.03 8.36 9.63 6.27 8.16 8.5 10.5 8.27 9.68 10.5 9.34 10.4 3.34 5.76 8.17 9.63 10.2 5.59 2.79 2.36 9.84 5.07 10.9 3.84 9.45 2.46 4.29 7.83 8.71 3.43 8.09 9 6.96 8.58 10.2 8.72 10.7 8.88 9.53 8.92 9.91 9.03 11.5 10.4 8.89 4.06 8.91 7.85 7.95 12.7 8 10.1 4.39 9.47 11.1 9.56 10.4 9.41 7.08 1.44 11.2 9.26 9.51 12.1 10.1 7.58 11.5 9.49 4.94 10.2 9.38 1.98 11.2 12.8 13.2 9.9 10.4 6.8 9.26 11.2 3.35 10.7 2.02 11.2 3.18 7.05 7.4 10.1 11.7 2.4 8 8.58 10.4 2.23 6.06 9.5 9.31 9.91 11.8 7.5 8.71 3.72 10.5 8.59 12.7 8.86 7.38 2.82 8.18 10.4 11.4 11.8 10.7 6.97 11.1 7.03 11.2 11.5 11.9 7.67 9.31 9.27 10.9 9.98 8.9 7.64 12.8 9.64 3.99 8.19 5.24 10.1 7.97 10.9 7.71 5.98 8.93 11.6 10.4 9.15 10.7 11.6 11.3 10.8 10.1 6.61 9.61 9.32 9.31 12.2 10.4 11.6 3.71 9.73 10.8 11.6 4.57 8.9 8.23 7.71 9.1 11.3 7.51 7.62 10.7 9.99 11.7 9.11 8.29 9.74 8.35 6.22 9.7 10.2 12.4 10.3 11 10.3 10.6 7.34 10.7 5.97 8.47 12.6 8.71 10.4 0.23 2.04 10.9 10.8 5.86 1.71 8.32 10.8 11.3 1.84 7.39 8.81 9.23 7.81 7.07 3.52 9.59 8.71 3.54 2.14 11.1 10.2 5.42 3.69 3.38 8.05 1.84 1.7 3.46 10.8 10.2 -0.2 7.24 9.11 8.74 8.81 9.97 5.03 10.3 7.27 9.29 4.84 7.39 7.57 3.55 9.6 9.61 11 10.3 0.83 4.85 1.2 0.53 10.1 10.3 7.43 9.88 8.55 9.13 8.05 9.52 5.74 7.33 9.47 10.1 0.87 2.45 11 11.1 2.98 10.4 9.08 8.68 9.3 9.23 7.63 9.41 10.6 9.43 10.8 0.87 7.58 10.7 8.1 6.37 10.8 8.71 4.98 3.48 10.5 1.16 10.5 3.72 2.9 2.57 8.43 10.2 11.6 6.26 9.78 11.3 10.9 9.7 9.95 6.97 12.5 6.64 9.71 7.65 7.01 5.07 0.74 -0.32 0.98 10.8 11.9 8.66 11.9 11.1 10.6 9.43 4.82 4.56 6.17 8.74 10.7 1.83 8.65 9.52 8.69 6.41 6.8 8.1 8.79 8.6 9.92 9.1 0.32 8.24 8.29 6.43 7.75 11.3 9.51 9.86 4.87 8.74 0.27 7.01 10.3 3.79 14.4 8.17 9.44 10.5 2.27 3.52 2.08 6.78 1.44 10.3 9.51 3.27 12 11.3 11.3 8.49 9.03 10.8 8.84 10.1 4.84 7.37 1.75 3.34 10.6 10.1 3.69 8.71 10.1 2.03 7.17 10.6 8.63 12.2 8.62 4.47 9.41 0.5 6.01 9.58 11.3 9.89 8.25 6.6 7.6 -0.04 11 10.2 7.69 9.96 8.65 4.34 8.11 3.01 10.9 8.67 8.22 12.2 10.6 7.21 2.08 8.44 10.7 5.62 10.8 8.76 9.64 10 5.77 8.18 8.67 7.94 8.26 8.93 12.6 7.46 7.95 9.25 13.2 10.8 7.67 5.84 8.03 5.76 7.98 0.97 8.64 5.25 5.29 9.58 10.3 8.34 8.05 9.76 7.03 -0.05 10.6 8.95 8.35 9.61 11.4 5.05 8.56 7.13 9.96 8.58 3.56 7.46 3.53 10.5 6.41 8.56 2.74 8.48 11.8 8.35 5.99 9.49 9.7 8.51 5.58 2.36 8.75 5.01 10 8.11 3.41 7.75 9.15 8.77 6.56 9.41 9.31 8.65 8.9 10.2 10.4 10.2 4.66 10.7 11.4 11.2 10.4 9.98 9.24 2.33 6.36 8.38 9.87 10.3 3.37 7.22 0.7 8.35 8.88 6.77 10.8 10 -0.41 1.7 9.27 8.61 5.24 5.97 9.41 12.5 10.2 11.5 10.8 11.8 8.65 0.05 7 0.63 6.83 3.98 6.63 10.6 8.43 4.59 9.44 9.33 9.88 10.8 7.59 10.2 9.58 6.11 12.6 11.7 12.3 8.77 6.83 10.1 11.3 11.1 8.91 6.32 9.93 10.8 8.87 9.98 10.7 11.6 10 14.6 7.62 3.14 9.41 10.5 6.46 9.52 10.4 9.62 10.4 3.09 8.78 9.71 10.9 9.72 11.5 10.2 5.53 8.67 7.64 3.57 7.97 9.93 8.7 8.55 7.42 3.8 11.2 10.6 10.4 9.46 2.29 9.31 9.18 11.3 11.6 10.2 10.2 9.08 6.84 0.11 10.3 1.62 0.79 12.5 6.57 9.38 12 10.4 10.5 4.62 3.23 5.31 10.7 10.9 12.1 9.71 11.7 7.47 11 8.37 7.31 8.75 10.1 9.21 12.2 13 8.8 4.97 7.84 9.05 13.1 10.7 12 9.09 7.59 5.38 7.82 6.87 7.24 11.2 6.52 10.7 11.9 9.56 9.95 9.82 11.7 9.37 12.2 11.5 9.96 14 2.37 13.1 9.51 10.1 8.91 1.58 8.78 5.99 9.63 10.8 5.47 7.19 11.4 9.34 6.24 5.31 6.34 10 9.46 7.49 10.4 7 4.43 9.56 7.44 11.5 11 9.62 9.76 11.6 9.09 11.3 9.67 7.82 2.35 11.2 10.2 9.89 2.09 6.43 9.18 9.92 1.3 7.93 7.64 10.3 12.8 1.5 4.62 10.6 8.31 10.2 8.87 4.92 1.12 1.89 0.95 12.1 4.06 6.93 0.9 8.37 11.1 -0.24 6.26 6.51 5.43 7.13 9.31 5.6 4.99 10.4 7.99 5.61 11.5 9.75 8.83 5.48 11.2 10.1 10 7.05 9.62 8.76 7.42 8.99 11.6 -0.16 9.07 9.47 3.23 4.49 1.45 9.74 7.11 9.37 8.7 10.7 16.6 7.54 9.31 1.29 8.37 4.57 4.45 9.39 1.83 9.45 9.56 8.85 3.35 9.92 1.12 10.5 11.6 9.28 9.05 12.2 1.06 0.04 8.9 10.7 -0.13 9.71 6.02 8.41 6.94 8.24 10.6 0.79 9.38 0.59 1.52 8.64 12.7 3.12 10.9 10.2 7.51 0.51 7.93 8.41 11.8 6.12 10.6 7.03 8.28 8.71 8.93 4.32 9.36 8.36 10.6 7.02 11.8 8.19 10.3 10.1 11.3 9.06 8.86 11.1 9.7 6.96 8.21 9.88 5.84 6.16 8.77 4.35 10.2 11.8 2.34 4.31 5.8 7.41 1.92 12.9 9.61 8.48 10.5 7.4 9.39 6.41 8.06 11 6.77 7.49 0.46 9.55 4.49 7.03 9.79 7.32 0.98 10.6 9.94 8.71 9.63 14.8 14.2 13.5 12.2 11.2 10.4 14.1 5.35 14.4 11.2 13.3 14.4 12.2 12.7 13.6 12.1 13.3 11.1 14.1 3.01 14.9 12.6 8.71 12.2 12.8 12.6 13.4 13.3 12.9 14.3 13.7 13.5 13.5 13.3 11.2 13.3 13.5 12.2 8.94 8.32 13.9 7.63 14.1 13.6 12.5 10 11.4 12.1 13.8 15 13.7 12.8 14.1 3.68 2.92 7.77 6.98 6.6 13.1 1.36 2.16 14.2 10.4 9.43 10.8 9.65 9.68 12.3 13.4 13.4 13 14.2 14.5 13.4 13.2 11.8 14 14 12.8 10.6 15.4 13.9 12.6 13.3 13.5 13.2 11.6 9.55 8.08 12.9 7.12 12.1 4.1 8.29 13.7 10.5 11.2 10.9 10.2 1.09 9.07 9.83 9.18 4.68 6.82 10.8 10.3 9.43 4.38 6.63 2.4 4.43 6.97 11.7 5.58 3.54 9.33 1.87 15.8 7.14 7.88 12.2 12.4 2.4 10 3.98 13.9 14.2 10.9 10.9 10.3 3.63 7.39 11.6 9.08 10.7 12 8.57 6.37 12 9.06 9.79 5.04 8.54 9.82 9.62 12.3 5.27 4.98 8.84 7.12 3.02 0.21 4.02 1.06 10.8 4.41 2.67 4.11 5.83 12.1 2.59 7.46 10.4 8.8 12.7 -0.04 3.37 5.49 4.41 1.25 4.97 5.97 7.36 5.62 5.45 8.13 7.69 5.38 0.16 3.45 8.53 0.6 4.26 5.95 3.73 4.84 7.09 7.96 12.5 6.81 5.73 8.87 12.6 11.8 5.86 9.19 10.1 2.75 8.46 9.76 11.8 10 9.76 9.7 8.29 5.89 8.73 10.2 7.24 8.46 11.5 11.2 9.78 7.96 7.94 12 10.5 2.24 7.84 8.86 9.03 11 5.86 9.44 3.82 6.48 9.13 8.15 7.74 8.49 7.78 8.41 1.12 9.34 6.89 7.69 7.75 7.42 11.6 8.17 9.88 1.93 11.1 10.5 8.24 9.04 7.69 7.66 1.49 12.2 6.49 4.94 6.45 5.44 8.04 10.8 7.37 9.86 2.8 13.5 0.47 5.72 8.97 6.95 7.97 4.79 8.85 12 5.01 12 8.46 7.94 3.6 6 5.82 6.6 9.41 7.16 8.35 3.69 7.75 7.49 11.1 8.97 13.5 8.52 10.3 10.6 7.61 8.13 8.31 6.07 10.4 6.84 4.16 9.91 3.14 9.2 6.27 8.39 1.64 8.49 0.49 10.8 9.9 4.09 6.94 7.84 8.37 10.7 9.74 9.1 9.16 5.48 10.8 2.72 7.7 4.6 7.26 3.08 9.23 12.7 0.13 7.54 7.42 9.5 8.4 12.1 9.72 9.76 9.92 9.25 8.74 1.01 4.5 10.9 10.3 9.26 10.7 3.35 3.38 7.42 9.11 0.51 3.61 2.61 10.6 7.81 12.7 5.19 12 13.2 4.83 8.37 7.4 8.8 9.08 7.63 10.8 8.3 7.75 10.6 1.91 5.72 -0.06 2.16 11.5 6.32 0.56 12.1 10.4 8.67 11.2 11.2 8.33 6.46 11.8 7.48 6.2 10.5 9.58 10.5 8.95 7.32 9.84 6.24 6.13 3.21 6.77 6.1 11.5 8.03 9.76 2.74 10.3 8.19 1.59 3.08 9.38 7.56 9.31 -0.14 3.78 9.14 6.64 6.66 8.6 5.42 6.39 1.87 1.77 -0.52 8.74 10.7 4.29 10.8 10.1 0.59 8.05 8.5 7.09 7.27 4.14 2.87 7.45 2.7 9.01 9.2 8.97 8 1.3 2.26 4.37 9.07 0.97 10.6 9.58 0.69 7.98 8.39 9.02 12.8 8.35 9.43 9.07 9.62 9.27 10.7 9.52 8.37 10.3 8.6 1.68 3.86 0.05 1.76 3.16 4.16 4.56 1.56 10.3 2.17 4.36 0.14 9.35 2.05 10.5 9.13 1.81 10.7 1.49 5.2 0.08 4.82 9.66 4.11 -0.3 10 7.12 0.63 5.91 3.3 11.1 9.43 5.77 0.61 3.38 1.12 1.39 10.8 1.5 3.77 5.56 5.11 1.29 1.69 6.21 6.21 2.58 3.07 6.28 6.66 9.59 6.71 9.19 4.29 4.45 2.55 10.2 0.71 7.17 2 11.4 0.84 10.4 4.76 6.96 9.41 1.41 0.26 8.58 9.58 10.2 6.43 10.2 1.84 5.29 3.34 0.86 8.49 2.69 10.6 9.73 5.97 7.33 9.28 10.3 13.5 5.83 7.76 8.76 11.5 3.1 4.21 9.85 9.17 9.32 12 11 7.76 8.95 4.96 7.77 11.3 9.24 8.56 10.9 10.3 9.41 6.6 9.07 10.1 8.31 8.65 9.91 8.14 9.24 12.2 8.67 7.96 7.82 9.07 11.1 7.12 8.58 9.51 9.45 10.3 8.25 9.44 7.58 1.75 9.47 10.2 8.62 7.51 8.29 8.6 8.06 2.68 11.3 13.8 9.71 3.43 10.9 10.8 3.21 9.59 9.44 2.23 10.2 8.38 11.9 9.44 6.1 8.32 9.34 8.09 11.3 3.86 10.9 9.79 9.9 6.69 10.3 10.8 9.31 12.4 12.6 7.88 8.01 9.36 7.66 7.64 9.42 11.6 5.6 1.73 1.95 3.78 7.64 6.89 9.08 5.48 8.86 6.68 10 8.51 7.63 2.93 10.6 7.62 6.1 8.51 10.3 10.9 4.4 7.57 5.58 10.4 5.62 7.67 10.1 4.03 10 0.72 9.09 9.12 9.6 8.93 9.8 11.5 9.05 7.07 9.7 8.99 11.7 9.07 9.77 10.3 3.07 8.09 12.3 8.79 9.53 9.28 6.01 8.4 1.44 11 8.26 7.06 2.4 4.45 11.2 8.96 10.5 6.46 11.4 4.1 7.89 7.12 9.11 2.28 4.47 6.56 6.98 9.92 8.65 11.2 8.8 8.84 8.54 9.72 0.62 12.1 12.4 8.81 9.33 10.3 5.62 11.3 9.46 11.7 10.8 11.4 4.93 8.48 2.45 4.62 2.47 9.74 12.2 1.93 10.4 12.1 6.07 5.51 9.1 7.99 9.78 7.06 3.33 8.62 9.2 8.49 7.91 11.2 10.1 7.71 0.01 9.69 1.27 1.63 3.67 0.37 4.59 4.8 3.41 3.73 8.25 0.86 3.27 5.65 5.63 5.16 1.58 2.74 5.13 10.8 7.38 0.89 4.17 5.48 2.59 5.69 8.66 11.7 10.2 6.22 10.7 2.53 7.38 4.54 6.93 -0.29 10.9 7.3 4.43 2.72 1.59 8.87 0.59 9.55 3.93 6.06 5.46 0.16 11.4 2.66 0.36 0.85 4.9 9.21 6.59 7.98 6.75 -0.35 7.89 6.7 8.67 4.05 5.81 6.07 0.1 2.79 12 3.21 2.88 10.3 14.5 5.06 0.33 6.13 -0.48 15.9 1 6.95 8.12 6.78 4.73 12.1 7.15 9.05 2.75 1.66 8.59 10.3 10.9 9.04 10.7 3.22 1.7 6.62 3.18 8.56 4.88 7.47 12.1 12.5 5.75 6.89 10.6 10.2 11.9 6.15 9.26 10.9 10.7 9.52 8.69 4.81 7.74 9.63 6.98 6.11 7.67 2.16 11.9 7.21 9.83 9.97 11.4 8.66 5.65 9.87 6.91 2.41 3.76 8.49 6.69 9.89 8.99 10.5 10.3 11.4 7.16 9.31 6.35 11.4 0.69 9.48 7.37 9.48 8.55 7.95 10.7 11.2 11.6 6.03 5.66 2.67 7.44 7.15 8.82 7.5 9.82 3.78 4.12 12.1 11.4 9.89 9.24 11.9 9.94 9.23 10.8 11.3 11.3 9.84 10.7 9.07 10.7 6.48 8.08 5.55 10.2 10.8 9.35 9.14 8.98 1.77 12.6 1.44 11.8 7.79 10.9 12 13.1 9.15 10.7 10.2 9.64 11.2 9.87 2.55 12.3 0.78 4.45 6.92 12.3 9.63 9.79 11.3 7.51 10.8 9.05 10.8 5.13 13.1 9.33 9.65 6.39 1.79 8.65 0.05 12.6 6.39 6.07 5.64 10 8.21 12.2 0.21 5.75 12.7 10.4 9.9 12.2 8.03 0.43 9.85 9.57 13.1 13.1 10.7 10.6 13.3 11.3 9.21 10.2 5.98 10.4 11.8 12.1 9.2 11.9 8.97 10.3 11.4 9.49 13 12.9 12.4 12.4 11.6 12.6 8.98 3.2 1.2 11.3 10.1 11.2 12.8 4.39 11.1 2.97 12.7 10.9 12.3 4.46 10.2 10.8 0.46 1.22 3.03 1.43 0.66 2.87 0.89 2.37 11.9 3.87 0.1 1.27 5.28 12.2 12.5 9.18 9 2.09 4.33 9.66 7.58 10.2 9.2 10.1 10.5 6.03 5.03 9.74 10.8 4.35 4.68 8.01 6.82 11.9 10.1 10.8 10.7 10.7 10.3 8.76 9.81 11.9 9.37 14.9 7.26 8.83 10.3 12.6 5.84 11.7 9.61 9.45 7.72 12.7 8.44 9.98 6.67 10.3 10.2 6.94 9.27 10.1 2.08 9.74 6.91 7.93 4.11 11.7 7.93 9.23 3.05 2.97 4.24 12 8.33 0.52 9.08 7.6 10.9 10.2 9.73 7.86 10 6.35 9.08 12 12.3 9.89 8.43 9.66 7.98 7.13 9.74 3.82 1.34 11 12.3 11.6 9.84 12.8 10.9 9.23 10.7 3.2 1.49 8.85 9.98 8.89 10.8 9.38 8.25 7.05 7.41 6.14 3.03 5.66 9.11 10.8 7.5 9.06 2.58 5.74 7.04 8.92 1.8 0.74 12.1 4.78 11.9 8.54 10.1 8.1 11.4 8.63 10.1 7.99 8.85 9.99 3.85 11.5 8.11 10.1 10.9 9.37 10.5 9.06 7.4 10.4 4.91 12.3 2.93 4.16 8.99 10.3 10.1 5.02 10.6 11.1 8.7 6.85 10.9 10.1 7.83 9.91 6.1 1.48 7.12 15.5 9.68 6.08 10.9 1.22 8.64 8.28 2.14 10 5.55 10.1 7.85 8.11 10 5.41 10.3 11 8.01 9.64 9.39 8.13 4.95 13.2 3.49 10.3 7.37 7 7 5.46 0.17 9.67 10.8 1.31 12.9 8.78 9.72 10.2 5.11 10.4 6.99 8.73 11.7 8.02 8.54 11.7 0.81 1 9.86 1.24 9.12 5.71 0.94 9.99 9.11 11.3 10.1 8.25 7.19 12.4 10.8 9.42 -0.17 12.1 11.1 9.16 9.86 12.2 3.58 9.66 5.27 10.7 8.07 7.85 12.9 12.6 4.9 6.78 5.16 7.45 15.8 10.4 6.58 5.26 9.7 6.52 9.02 8.82 11.1 11.5 7.26 10.8 14 8.14 4.8 5.86 3.33 2.34 10.4 10.5 8.47 8.15 5.34 10.4 10.9 4.5 3.08 5.27 0.85 8.12 0.53 9.39 7.25 9.23 11.8 7.43 2.86 12.6 12.4 10.1 10.6 10.1 10.6 9.54 2.75 9.51 11.8 6.45 11.2 1.4 12.7 11.9 11.6 8.17 13.2 12.8 10.4 9.54 11.9 6.29 15.1 3.76 9.03 8.55 10.6 14.9 7.11 9.61 8.02 8.63 7.46 5.78 10.4 -0.07 13.3 9.85 6.06 4.92 5.7 3.25 0.08 1.77 6.22 8.68 7.91 0.65 3.28 4.99 11.9 9.55 12.5 6.59 10.3 2.92 11.4 12 11.6 9.19 8.42 10.1 12.7 9.7 11.6 12.1 8.97 5.23 8.11 9.61 7.12 1.96 9.99 8.25 5.21 15.6 2.43 8.7 10.2 5.69 9.76 5.02 4.53 2.42 5.36 7.23 2.79 7.37 7.81 2.5 4.76 10.2 9.97 4.66 8.98 0.93 6.1 5.64 12.9 6.54 6.55 0.65 6.65 8.52 6.61 2.79 9.84 1.89 7.96 8.07 4.16 3.56 4.68 11 8.05 -0.59 13.6 1.88 6.25 1.15 5.49 0.31 3.47 8.58 7.69 4.44 8.42 2.69 2.3 9.71 5.06 9.79 6.12 6.44 4.91 3.48 2.35 3.29 5.61 6.08 5.01 4.51 5.57 6.31 5.27 0.84 4.2 4.14 3.58 -0.66 6.28 11.5 8.7 8.14 9.78 1.27 3.9 10.5 5.93 7.16 1.82 7.14 10.9 0.26 0.62 4.21 9.26 7.71 8.75 4.15 5.46 -0.73 7.42 7.56 1.18 2.3 5.82 9.05 7.72 8.82 8.92 6.39 3.07 6.35 0.89 10.5 1.24 12.8 2.69 15.2 13.4 13 4.9 10.3 10.8 9.86 9.22 10.7 12.7 9.76 7.43 11.1 10.5 9.91 11.1 5.31 10.2 10.1 12.1 9.05 11.3 8.81 11.4 11.2 11.2 5.27 8.26 1.44 0.79 8.46 5.38 9.17 6.92 11.1 8.06 11 10.6 9.39 9.27 9.01 6.89 9.21 10.3 9.87 8.28 0.57 9.73 4.52 12 12.8 13.2 12.3 11.7 9.11 8.85 10.6 10.6 10.8 3.03 9.9 9.78 10.5 8.92 12.7 11.2 8.31 10 10 7.85 11.5 13.7 13 11.2 10.7 9.44 11.8 7.83 5.72 2.77 10.7 11.9 14 11.8 8.97 2.25 5.74 4.04 2.19 7.29 8.17 7.86 6.33 7.3 14 11.6 11.2 5.66 8.65 11.1 11.9 10.1 5.22 11.1 8.97 12.8 11.7 9.57 9.8 0.19 3.87 8.82 0.8 1.29 5.13 1.35 2.37 1.81 3.9 2.86 0.29 9.62 8.8 6.1 12.9 2.4 2.25 2.83 7.12 7.23 10.1 8.66 9.9 0.21 12.1 9.46 5.48 8.1 7.83 7.79 12.8 6.95 10.2 10.6 13.6 5.52 13.2 10.8 10.8 15.3 5.94 11.8 12.9 1.91 12.8 7.78 8.96 9.05 6.76 8.71 8.84 8.04 8.88 6.69 12.1 6.81 9.71 7.81 7.71 8.07 7.29 7.13 4.36 6.91 7.71 10.9 8.55 6.89 10.4 7.13 9.42 6.41 9.08 10.9 9.32 8.08 10.7 9.52 6.71 8.44 9.01 4.29 8.24 6.07 9.92 6.24 8.98 8.09 6.98 7.53 8.61 8.43 8.82 5.9 2.22 8.52 4.05 4.93 7.86 8.99 0.41 8.23 5.67 7.07 4.11 11.8 8.23 2.4 3.23 2.29 1.34 5.81 1.19 10.6 9.41 3.01 9.1 8.19 2.17 7.36 6.61 6.69 7.98 5.29 5.54 9.54 8.29 9.41 -0.23 11.7 11.2 9.68 9.2 6.48 5.32 7.19 0.12 10.9 7.61 11.6 7.76 8.68 1.96 3.03 4.18 8.04 8.26 7.75 9.52 6.65 7.51 9.24 8.67 7.3 8.38 6.76 11.3 8.34 7.98 5.81 7.87 11.9 1.53 8.72 9.18 5.87 7.59 11.3 10.5 6.78 8.76 6.32 8.16 9.91 8.23 7.16 2.29 6.58 8.21 7.79 9.37 4.14 -0.47 5.42 6.48 6.01 5.64 10.7 10.9 9.59 14 7.58 11.8 9.65 9.18 4.87 13.3 9.62 11.3 7.22 3.61 11.3 10.2 8.29 8.94 10.6 11.1 9.67 6.67 4.16 7 11 12.9 11.5 7.42 9.3 10.6 9.39 10.6 11.3 10.8 12.5 11.3 8.71 5.67 10.4 1.35 8.85 9.51 3.95 8.09 7.35 10.2 9.75 7.46 8.85 0.49 5.37 9.67 10.3 10.2 10.3 10.3 9.22 7.98 8.8 7.52 6.07 10.4 9.82 0.99 10.1 10.2 8.97 7.72 7.49 10.4 8.16 3.01 15.6 6.26 7.98 6.82 9.04 9.45 9.02 9.53 9.91 5.08 9.05 10.3 9.05 8.97 6.36 8.97 11.4 7.5 9.24 7.23 8.45 9.54 10.9 9.56 8.73 5.8 10.6 7.83 12.3 7.06 7.25 10.6 6.25 10.6 10.9 9.82 11 10.1 8.96 7.28 9.61 8.78 7.34 7.83 6.7 9.56 9.96 8.61 10.9 9.24 10.2 10.2 11.8 8.93 7.37 8.96 7.91 11.4 11.1 5.75 8.54 10.6 12 9.09 7.77 8.86 7.37 9.92 9.47 8.81 8.51 9.97 5.57 8.92 9.86 7.3 13 7.29 6.11 1.24 4.69 8.65 13.3 11.3 9.57 7.5 6.75 10.1 8.26 7.24 8.31 6.25 8.99 12.4 8.84 9.37 1.75 10.9 13.1 6.32 11.3 13.2 9.28 7.77 7.5 6.42 10 0.08 0.49 0.52 9.39 6.5 9.76 8.88 7.65 2.31 1.83 7.23 5.33 0 6.73 6.66 4.33 2.68 8.04 9.63 9.52 9.31 7.57 9.94 7.03 11.1 7.07 3.29 4.41 0.05 8.73 8.07 6.47 0.72 8.73 12.8 10.2 6.53 8.92 10.3 10.8 6.2 8.18 9.57 11.5 9.32 10.4 9.43 9.95 9.38 8.67 7.53 6.49 10.7 4.42 3.96 8.75 1.2 7.36 2.02 8.36 7.69 3.59 6.21 8.28 9.74 8.22 9.7 8.2 4.58 6.37 7.34 8.01 5.38 9.52 2.96 6.14 9.19 5.91 9.32 7.87 9.54 8.92 5.34 7.75 10.2 -0.34 10.4 10.2 8.96 6.62 8.78 9.25 8.56 6.62 10.4 3.7 9.62 7.93 6.92 9.97 8.36 6.85 9.2 10.3 8.35 3.31 8.07 7.11 9.43 7.58 8.64 7.37 4.51 9.72 7.49 9.36 8.34 7.54 8.6 8.17 9.71 5.42 6.27 8.67 9.13 8.57 9.27 7.31 5.6 8.12 9.79 7.26 7.66 8.91 8.18 9.66 10.9 10.2 10.1 6.65 7.17 9.79 9.93 10.1 12.1 10.9 10 0.91 8.4 10.7 7.11 10.6 9.45 8.06 3.7 9.02 8.09 6.17 9.27 8.42 7.31 6.6 4.81 7.27 7.41 6.93 7.29 0.57 10.1 -0.06 8.49 9.04 8.51 10 1.21 6.54 8.38 7.73 8.58 10.3 9.53 9.33 8.66 8.95 6.53 8.6 6.82 7.03 10.6 7.17 8.65 0.87 8.17 2.42 12.9 7.42 0.08 10.4 10.2 9.13 10.2 9.52 8.63 7.77 8.92 7.24 8.53 1.99 8.95 5.41 8.95 8.38 7.56 11.4 7.88 10.9 8.06 8.01 5.91 8.67 7.81 2.89 7.9 5.9 5.65 6.28 5.05 4.3 9.35 10.4 8.93 7.18 9.01 6.93 9.78 5.89 10.8 13.3 5.06 9.56 8.12 3.33 8.93 3.33 9.1 5.74 4.58 7.4 7.91 5.46 11.5 9.6 7.52 3.37 7.32 1.17 4.98 6.05 8.16 6.69 5.67 8.15 8.35 7.46 9.47 12.3 1.53 7.61 8.54 7.12 9.73 6.72 9.17 8.3 6.77 7.5 9.59 5.35 8.23 8.06 9.02 10.4 10.2 8.66 5.76 10.4 10.8 10.1 3.71 7.94 9.68 4.53 6.61 9.63 9.8 10.3 9.55 6.29 9.51 4.94 6.92 7.91 8.9 6.57 7.44 9.14 7.18 0.72 8.88 6.92 2.62 6.41 8.67 7.9 2.57 11 1.71 9.39 4.97 3.66 11.6 10.2 1.34 7.99 8.12 4.31 9.3 1.74 8.24 9.39 2.79 9.82 8.82 8.19 8.92 10.3 8.99 7.38 6.67 7.4 8.65 6.94 10.6 3.22 5.77 10.1 8.7 9.52 8.68 11 2.27 6.88 5.98 8.58 8.2 2.28 8.21 1.56 11 8.64 1.01 9.78 10 10 9.21 8.24 4.26 8.31 9.49 11.2 8.05 6.51 9.52 10.1 6.63 9.06 9.93 10 6.73 9.15 8.41 10.1 3.48 2.3 1.8 6.21 5.53 9.43 10.8 9.56 1.99 5.69 2.45 2.08 6.85 10 13.3 3.9 7.98 3.92 10.6 6.43 -0.46 9.78 6.89 5.41 4.59 7.06 8 9.26 10.4 10 9.7 9.22 9.56 9.99 8.35 10.5 8 8.13 9.6 10.3 10.8 6.53 8.6 7.87 8.3 7.86 7.53 7.93 5.99 8.04 10.2 4.14 7.71 8.2 10.3 8.55 9.02 9.46 8.45 6.93 10.6 10.4 9.08 3.46 9.45 10.6 10.5 9.26 8.16 8.45 10.1 8.83 3.06 11.4 8.89 7.6 9.42 12.8 7.3 7.47 8.62 10 3.99 12 9.3 6.49 7.83 3.61 7.83 10.1 9.68 1.63 8.51 5.96 7.03 12.8 9.76 9.17 9.23 10.1 4.57 12 9.13 3.37 6.81 10.8 9.03 4.56 7.49 10.3 8.89 9.19 10.1 12.3 7.08 8.44 4.59 7.08 8.72 10.6 7.21 5.34 7.55 8.02 8.8 8.47 8.8 3.61 7.55 4.6 11.9 2.09 5.44 11.8 8.5 4.68 8.6 5.42 10.7 7.17 10.3 10.7 9.45 1.08 10.4 6.83 9.65 6.97 5.16 10.6 9.72 13.8 9.57 6.98 9.97 10.9 5.86 8.91 5.9 4.13 9.73 7.14 6.13 12.4 8.84 11.2 0.1 14.4 7.03 5.77 5.1 8.31 8.03 8.23 8.86 2.36 7.58 6.66 0.37 7.49 12.2 7.58 7.56 11.3 7.26 7.88 7.04 9.85 6.05 10.6 11.2 11 11 10.4 12.4 8.08 9.81 5.87 9.95 8.99 7.18 11 12.2 10.1 6.46 8.63 2.99 11.4 9.86 10.2 12.1 8.98 9.51 4.99 5.73 6.77 1.87 11.1 11.6 9.13 7.57 7.48 4.09 10.8 13.5 8.03 3.93 5.68 8.41 5.26 10.2 9.54 2.76 11.5 11.2 14.1 4.4 5.58 0.72 0.17 0.29 10.9 11.8 10.3 5.84 2.92 10.6 12.1 9.64 7.45 4.12 3.74 1.04 0.62 11.8 3.02 8.37 9.36 9.15 12.2 10.7 4.54 6.93 9.1 8.45 10.3 4.57 9.06 9.98 10.4 4.8 7.34 9.81 8.65 10.7 9.26 9.78 13 5.97 9.24 7.59 8.45 8.76 7.91 9.22 8.04 4.28 10.4 2.98 7.14 10.2 9.52 8.61 10.9 9.7 10.4 9.2 9.53 11.9 10.6 8.11 2.04 7.96 11.5 10.8 7.83 7.37 10.2 8.43 9.44 8.93 6.53 10.3 11.8 13.3 11.3 12.4 9.63 7.33 7.47 10 0.77 8.06 8.38 0.73 9.81 8.78 8 8.85 6.98 9.17 2.51 2.55 5.28 9.33 10 10.1 8.25 8.51 8.78 10.6 4.07 10.1 3.34 8.99 7.33 9.4 9.48 7.53 10.2 9.98 11.2 9.35 7.13 10.5 11.3 9.03 8.72 1.5 8.53 9.87 9.19 9.59 8.58 8.05 9.41 1 7.8 2.51 10.3 10.7 -0.06 10.3 10.6 7.99 10.7 14.4 6.46 8.86 2.72 10.2 7.48 -0.87 9.48 9.07 9.84 8.53 12.2 7.69 9.74 11.7 12.9 9.92 11.3 11.7 6.88 12.7 9.7 6.82 9.97 7.67 8.75 8.86 -0.18 8.48 1.89 11.7 11.6 8.16 6.06 8.22 0.24 10.4 10.8 11.8 9.63 4.91 10.9 8.9 11 11.1 10.5 9.42 7.57 7.87 12.1 3.05 7.92 9.26 9.71 8.61 7.06 3.82 0.23 8.96 0.97 -0.08 -1.01 9.93 1.11 9.07 1.34 4.02 8.03 9.39 0.68 1.67 2.83 7.23 -1.13 1.18 7.2 3.44 9.97 12.2 10.7 7.16 7.78 1.52 3.56 5.41 7.84 8.36 -0.15 8.28 8.04 8.62 7.58 6.24 5.59 6.23 9.43 7.02 8.34 2.34 7.64 11.4 10.8 8.9 9.78 -0.77 4.19 0.45 5.84 2.56 0.22 9.18 8.18 6.89 8.9 7.27 10 8.23 3.74 7.17 0.75 3.8 -0.79 -1.17 8.09 7.92 7.28 10 8.74 7.14 8.51 9.12 0.28 6.65 9.01 10.1 9.88 7.18 -0.61 2.83 8.56 11.3 7.51 0.06 9.48 12.3 9.1 7.51 6.63 5.95 2.39 0.14 10.3 0.03 9.73 10 9.05 1.08 3.83 8.25 8.06 7.32 9.28 9.59 2.2 -0.32 11.3 9.87 7.64 8.94 9.92 7.34 5.04 9.64 9.28 9.47 6.2 2.59 1.93 9.26 2.07 6.2 10.8 8.83 9.96 6.97 8.97 9.89 5.93 4.42 7.6 10.3 8.44 9.44 4.69 4.19 6.05 8.18 0.76 4.1 9.28 5.84 7.52 11 7.82 8.27 7.58 10.8 5.25 7.55 3.62 2.24 9.74 3.08 10 1.36 1.34 1.59 5.53 3.89 1.48 -0.49 0.61 7.24 9.43 9.26 7.56 9 10.1 9.06 8.96 7.45 1.55 10.1 10 7.69 8.57 4.26 10.2 4.13 7.28 3.26 10.1 10.8 9.11 7.83 4.92 9.98 11.8 3.21 5.87 7.5 9.01 7.57 2.85 17.4 11.2 10.5 5.62 10.1 10 10.1 7.81 9.06 9.73 2.76 5.81 5.4 6.89 5.83 4.76 6.89 11.8 8.27 1.44 8.96 8.91 9.77 8.45 7.39 14.7 2.99 4.29 6.96 1.76 5.27 8.08 8.96 9.45 3.82 10.3 7.22 5.36 9.05 9.34 2.89 8.66 5.6 0.78 9.15 8.48 3.75 6.99 8.88 8.28 7.93 8.45 10.5 6.98 8.59 8.33 9.36 10.1 8.85 6.53 6.36 6.98 6.13 10.1 9.06 11.7 7.52 8.27 10.8 7.21 10.8 7.93 9.5 10.5 7.16 10 10.6 4.84 10.1 8.01 4.65 4.49 4.98 9.88 7.25 8.59 9.65 10.9 4.65 1.82 5.89 9.7 10.4 12.6 5.87 8.53 8.01 4.28 4.54 6.44 4.66 9.19 5.81 6.9 4.64 7.82 8.5 6.8 4.55 0.09 7.06 12.4 10.8 8.48 8.45 4.78 8.81 8.54 8.93 8.57 10.4 10.8 3.61 10.8 6.99 5.24 4.86 8.93 10.7 9.12 -0.64 8.75 7.29 7.05 9.47 10.4 8.84 10.1 8.82 8.84 9.38 8.06 8.65 7.96 11.1 9.72 9.49 8.31 9.15 7.86 6.5 3.77 8.52 11.4 9.62 7.46 10.1 8.99 9.31 9.2 8.04 8.26 3.99 10.2 0.67 6.78 9.08 8.73 10.3 7.59 8.62 9.55 8.85 10.2 7.61 8.98 5.92 8.9 9.44 9.88 7.71 8.68 10.1 9.55 9.97 7.44 10.1 6.44 8.25 8.49 9.41 7.56 7.47 8.37 10.7 9.6 9.55 4.9 9.65 4.76 6.55 10.1 1.15 10.6 8.22 10.3 9.37 9.25 5.72 9.8 8.1 10.2 0.96 5.66 10.7 9.86 8.44 9.32 7.65 8.6 3.49 10.3 0.45 14.7 8.01 11.8 5.33 4.19 8.67 4.82 6.62 11.3 6.02 10.7 10.4 2.79 10.7 7.47 7.02 9.2 7.38 9.87 5.87 7.3 8.38 9.25 5.76 8.7 9.02 3.25 2.22 5.49 3.02 11 8.62 11 8.05 1.11 6.72 11.3 10.8 10 8.85 11.1 6.09 5.65 5.83 11.4 7.98 10 7.67 10.2 7.07 6.91 9.96 9.46 5.14 9.83 6.51 7.27 9.35 6.92 7.05 8.53 11.5 5.44 8.4 8 0.62 9.81 9.5 7.68 1.36 7.26 9.27 4.22 8.45 9.63 8.03 1.49 7.08 2.25 4.24 6.19 6.7 2.59 12.9 7.92 8.1 -0.7 2.94 6.8 10.7 11.1 3.81 9.14 8.97 11.2 5.82 0.23 1.77 2.08 8.89 7.63 6.54 9.71 11.6 2.6 8.25 1.15 8.82 7.41 -0.35 6.48 8.49 10.3 2.49 3.71 7.37 5.58 2.18 2.66 9.99 10.9 5.52 1.23 4 9.49 12 8.73 7.77 1.8 10.3 10.9 8.15 6.77 12.2 6.99 11.6 6.9 4.82 6.69 11.3 10.2 6.87 7.31 7.54 7.44 11.7 2.48 7.36 8.56 4.94 4.67 7.34 7.38 9.6 12.9 6.6 8.29 5.73 5.07 9.54 10.2 6.68 8.45 4.62 6.71 9.49 9.25 8.38 7.03 1.81 2.62 9.35 10 8.19 7.21 7.61 11.3 2.38 8.38 3.14 7.92 7.31 9.49 10.4 5.9 8.22 1.88 6.17 7.84 1.59 7.04 3.51 4.36 8.82 7.39 8.78 7.44 8.92 6.18 8.96 7.33 1.14 2.47 5.78 7.15 9.72 8.61 8.32 9.07 9.06 9.35 8.86 11.2 10.2 9.78 -0.12 9.14 10.6 8.11 9.55 10.2 10.9 5.26 9.64 15.7 6.61 10.7 8.28 9.61 7.59 9.65 9.14 10.7 11.5 1.16 8.63 2.78 10.8 6.79 8.77 10.5 11.7 7.92 7.55 8.24 9.68 6.76 8 10.8 9.49 7.72 8.42 9.08 8.31 9.02 8.15 9.18 9.61 7.93 9.42 3.18 8.22 8.81 2.32 9.14 9.41 8.73 6.84 9.26 9.29 13.9 7.77 6.21 7.89 8.77 6.89 9.78 8.13 9.37 6.52 6.83 8.25 6.74 8.61 5.52 5.69 3.5 8.73 10.2 9.89 7.62 6.04 10.2 8.67 1.13 5.4 8.83 8.33 9.67 9.91 0.96 1 10.7 10.1 10.2 5.07 10.8 5.98 4.31 7.49 2.44 10.1 7.3 9.88 10.8 8.71 6.86 12 9.78 6.72 6.79 8.12 8.96 9.18 8.74 9.83 6.36 12.2 8.92 8.28 6.28 1.81 7.46 6.51 5.91 8.56 10.2 11.1 9.58 1.2 6.4 0.21 10.4 11 7.81 10.4 4.18 8.09 4.78 1.19 9.62 6.1 10.1 9.05 8.75 2.16 5.47 3.38 5.62 11.1 4.81 9.4 4.54 7.66 7.76 6.95 6.26 8.12 8.78 9.16 4.57 9.05 10.8 2.37 8.76 9.68 10.1 11.6 7.11 11 10.9 10.5 6.64 6.88 7.71 0.13 9.9 10.9 5.67 10.7 11.5 8.62 6.48 6.61 9.88 12.2 3.92 9.19 3.93 11.4 8.62 8.57 9.77 4.37 11.8 9.09 6.64 8.76 10.4 10.3 10.4 8.56 8.5 8.88 11.8 3.26 4.32 11.6 6.33 3.86 1.45 9.27 4.03 10.4 8.47 9.58 0.57 5.01 11.7 8.19 9.2 7.14 4.21 9.58 9.06 10.4 10.2 8.25 2.12 10.3 12.4 10.3 9.53 8.36 9.17 10.9 5.22 10.9 10.1 9.79 9.25 6.69 7.5 8.74 8 11.2 6.61 6.1 2.22 10.9 9.8 6.82 3.74 9.62 5.66 5.76 10.8 7.36 12.6 9.46 6.47 11.6 2.22 4.35 10.6 4.59 8.28 9.14 9.21 2.02 8.63 3.77 2.78 5.6 4.46 1.66 9.43 10.4 10.5 8.64 8.52 5.41 10.2 2.43 8.86 4.79 9.34 10.4 5.3 10.7 10.1 11.2 10.6 6.73 9.59 11.6 10.7 10.3 9.29 12.5 13.1 10.8 11.7 10.8 11.2 11.8 11.6 10.6 9.01 11.1 11.8 10.9 8.19 10.8 5.14 8.04 11.2 8.73 8.37 11 10.3 0.67 9.17 9.73 10.1 10.9 9.59 5.42 11.9 0.71 10.3 10.6 8.99 7.16 7.91 1.78 -0.64 10.5 7.73 12.8 7.94 9.12 9.1 11 12.4 8.32 9.34 10.9 12.4 8.95 9.52 8.55 11.8 9.66 9.55 9.7 11 6.72 10.3 6.55 5.13 0.83 9.57 5.76 9.94 8.76 7.4 1.02 -0.62 5.52 12 13.1 16.1 8.71 11 13.9 10.1 12.4 8.41 8.59 9.99 11 10.2 11.2 9.67 6.16 5.6 2.43 12 5.02 2.29 7.37 1.19 8.59 9.39 9.62 7.71 11.7 9.2 7.33 10.6 0.79 7 11.5 11.1 9.71 11.2 10.3 3.68 6.61 0.56 2.29 9.95 9.55 4.99 10.1 10.2 6.99 9.27 6.76 4.19 6.99 2.8 11.3 3.37 13.9 7.77 10.9 5.98 8.4 4.45 11.8 9.37 7.08 9.63 9.46 1.56 0.41 5.53 9.91 8.59 4.41 7.92 9.41 7.54 7.54 11.4 8.03 6.69 11.3 2.36 8.1 12.6 2.13 9.18 10 8.34 9.43 8.86 8.33 7.3 11.9 9.81 10.6 9.69 10.2 4.21 8.94 6.24 12.9 11.5 10.3 10.3 9.77 9.54 9.35 11.5 11.8 11.8 8.76 9.05 8.43 8.59 11.8 11 11.7 9.45 9.93 9.56 11.7 1.32 9.83 -0.26 11.2 6.53 10.4 9.58 6.78 4.45 10.4 5.02 6.83 7.13 8.75 1.54 10.6 9.46 8.97 11.2 11.2 10.1 2.34 6.7 3.18 9.15 9.35 10.6 8.54 10.6 4.18 6.72 9.94 8.36 8.1 5.59 12.4 9.17 10.6 -0.58 1.45 6.9 9.83 3.23 0.22 10.4 8.84 10.1 6.6 2.79 9.17 9.73 5.1 2.4 9.53 8.5 10.6 5.16 3.78 5.81 0.49 6.12 9.65 5.67 7.82 7.88 11.8 7.17 6.67 2.04 10.3 8.96 8.39 7.74 2.44 3.11 3.16 0.38 7.04 7.37 8.99 10.2 6.91 9.95 10.8 9.88 11.5 7.8 0.81 7.1 10.8 11.3 9 11.2 11.1 7.97 9.85 8.43 6.5 4.13 8.51 9.91 11.1 11.6 3.72 6.53 6.94 9.22 6.68 9.99 5.81 4.47 9.45 9.28 9.22 0.34 8.21 7.95 7.58 6.79 7.26 7.43 7.76 12 8.84 8.09 9.48 7.48 8.36 8.79 8.93 4.65 1.64 11.5 7.55 4.12 6.38 1.47 9.41 11.2 9.15 0.69 5.17 2.36 6.48 1.9 4.68 10.5 8.65 7.52 8.34 9.93 9.48 1.02 5.51 9.66 8.74 9.45 5.02 6.06 8.63 7.38 8.6 7.93 9.39 8.59 10.5 7.19 7.14 10.2 10.9 8.99 10.5 8.21 9.45 5.12 7.73 11 9.83 9.56 12.9 9.36 5.75 6.28 3.68 9.31 -0.98 9.83 8.99 10.5 7.58 4.64 7.91 5.62 12.8 8.99 3.44 6.94 8.37 11.1 9.03 11.4 12 6.07 9.19 8.89 8.1 8.13 -0.12 1.83 9.69 4.53 8.49 10.6 9.01 8.24 7.07 6.37 7.64 9.27 8.71 1.95 8.87 3.89 6.4 8.05 2.07 10.8 7.98 10.6 10.1 -0.22 6.58 -0.2 12.8 2.94 10.6 9.92 8.95 12.8 6.06 9.92 9.03 8.08 6.02 10.1 11.6 4.22 12.9 10.8 11.5 8.85 7.94 9.85 2.71 9.67 9.77 10.7 10.2 7.88 5.89 9.32 8.89 8.74 8.29 10.2 6.04 8.97 3.92 8.72 13.1 12 10.3 10.5 8.63 9.39 3.75 11.1 4.57 8.74 8.55 8.04 10 5.5 2.06 10.8 9.62 8.51 8.05 2.19 9.02 1.75 8.94 9.74 7.46 6.79 10 5.8 0.9 0.23 3.94 5.14 9.13 7.74 6.14 10.5 10.1 8.29 9.26 9.79 4.15 9.17 9.62 7.5 10 9.75 7.82 1.84 9.66 10.3 11.5 10.9 9.17 8.96 3.48 9.46 6.95 10.3 8.99 0.38 7.28 8.66 7.87 9.85 9.76 10.9 9.64 7.95 7 8.95 9.45 9.02 4.07 10.1 7.4 5.93 8.5 11.8 5.78 8.83 6.21 1.73 11.3 10.5 11.5 9.58 2.5 9.91 6.07 8.44 3.57 5.66 4.46 6.94 7.75 8.85 6.87 9.35 9.16 2.88 10.6 7.22 8.53 7.64 2.8 9.75 6.82 5.77 0.04 8.63 4.65 8.67 8.47 3.02 11.1 8.18 10.4 13.8 8.5 9.27 11.9 6.96 6.5 4.35 9.85 5.26 2.62 3.38 6.37 10.7 9.86 7.79 7.57 7.01 1.86 9.8 9.52 7.48 10.2 7.21 9.33 7.31 2.84 11.1 4.67 9.05 8.89 12 9.15 3.59 10.2 7.59 8.91 8.3 7.66 12.2 10.8 6.52 5.55 10.2 0.15 4.99 6.29 10.2 1.13 10.5 2.66 8.68 10.6 7.51 0.7 5.18 8.67 8.09 0.93 8.6 2.13 7.99 9.02 10 9.23 9.49 8.49 8.91 12.5 9.65 5.56 8.51 7.7 8.64 8.84 7.69 5.64 10.4 6 12.7 8.3 8.6 4.03 10.7 8.33 11.4 8.89 13.1 2.94 9.3 12.3 1.62 10.1 7.65 6.59 8.29 8.72 8.76 5.5 -0.63 5.31 6.69 -0.46 7.8 2.88 -0.2 6.89 10.5 0.32 10 10.5 8.01 9.11 9.19 4.52 7.59 8.75 6.91 10.2 9.09 11.3 -0.45 7.93 10.9 9.37 5.86 10.7 9.26 1.45 4.21 9.49 2.83 12.2 9.34 7.52 2.7 11 5.94 7 9.61 7.01 5.78 10.4 7.92 7.14 4.28 9.76 9.62 4.77 9.41 9.47 3.63 10.2 10.4 12.1 5.85 9.91 9.29 9.41 5.87 11 9.6 9.9 9.36 9.56 2.61 9.32 10.5 10.5 8.46 8.84 5.89 9.02 11.6 10.3 8.76 5.1 10 11.9 7.71 7.74 10.8 9.1 3.46 10.2 8.38 9.81 11.7 8 3.75 10.1 9.88 4.88 7.72 7.18 3.84 11.5 10.3 5.64 6.9 8.69 8.25 8.44 3.57 10.1 2.31 2.75 6.21 9.72 6.96 7.42 5.15 3.22 5.92 10.9 8.05 5.07 8.72 10 11.3 6.13 7.96 3.89 -0.08 9.57 10.6 10.7 10.8 9.39 12.2 10.5 10.2 9.07 3.98 10 8.79 9.86 10.4 8.68 2.94 8.76 8.45 6.49 7.2 1.91 11.6 8.78 9.11 10.6 7.56 10.3 11.8 10.1 0.48 11.9 9.46 11.8 7.15 1.84 10.9 13.6 1.16 10.7 7.57 9.16 3.73 11.4 0.76 7.89 -0.47 4.33 8.27 4.11 8 11.1 11.3 8.86 -0.05 12.7 8.97 10.2 9.04 2.61 8.58 9.92 4.5 3.7 0.91 10.6 8.9 8.05 11.7 5.17 11.2 8.71 9.66 9.07 12.3 11.5 -0.22 3.01 9.5 2.86 9.18 2.43 7.91 0.49 6.64 1.02 10.8 9.21 9.99 5.53 9.05 8.88 10.8 0.23 4.97 -0.45 7.96 7.7 5.02 9.04 10.9 6.45 9.37 4.47 3.2 -0.42 11.8 3.09 8.62 3.87 7.08 8.68 10.3 7.85 10.8 10.2 3.51 8.49 7.73 3.52 9.43 9.63 11.6 9.72 10.6 9.23 9.15 5 7.54 7.65 11 3.84 11.2 11 4.95 11.6 8.25 5.34 3.37 10.1 7.43 12.4 9.3 6.88 9.71 9.4 4.93 4.19 5 6.57 6.5 0.41 10.2 3.25 9.19 8.2 7.77 7.57 8.17 12.8 10.9 2.38 12.2 3.58 3.01 10.6 6.09 10.6 6.35 9.51 7.16 6.97 2.2 9.9 7.86 7.4 6.72 8.11 1.77 9.69 9.01 10.7 4.7 6.86 10.5 9.79 3.03 9.37 6.24 4.72 10.9 5.93 6.22 7.75 7.86 8.09 8.4 9.54 11 8.81 5.29 9.13 8.61 0.5 11.2 12.3 12 8.21 8.51 2.76 7.25 6.12 7.97 9.88 8.7 7.82 0.07 11.2 11.3 10.8 8.65 5.75 11.4 9.31 10.5 10.4 10.5 9.63 11.4 13.2 10.7 9.94 8.24 9.51 6.63 10.2 9.14 6.94 6.21 10.7 11.3 10.4 8.73 9.92 0.67 9.99 8.59 7.39 11.7 11.2 10.1 9.56 8.23 10.1 12.4 9.99 10.3 11.5 7.31 8.98 11 12.1 9.66 7.39 9.38 8.18 9.43 7.61 9.45 7.6 12.2 7.14 10.9 11.1 7.25 10.5 12.5 9.97 7.34 10.1 12.3 11.1 3.61 6.64 11.2 7 3.11 12.6 9.62 12.7 11 10.9 8.13 6.64 10.7 9.38 13.3 10.8 9.83 7.38 11.2 9.58 5.51 8.74 9.96 3.05 2.94 7.76 3.98 9.46 11 6.28 1.19 12.2 8.62 6.34 8.15 10.2 8.44 12.4 10.6 11.7 9.64 10.5 8.43 12 8.91 7.26 10.2 6.75 10.5 10.3 9.7 9.1 11.3 7.69 7.25 11.8 13.3 14.7 8.53 10.5 12.2 7.62 10.7 8.32 12.4 13.5 9.79 0.12 11.2 10.5 11.7 8.99 9.57 9.73 11.1 10.2 10.1 7.7 10.1 9.52 9.39 12.1 11.1 5.43 8.92 11.3 5.69 11.1 9.25 9.23 9.29 10.7 9.61 9.45 11.6 0.67 6.8 5.91 10.1 10.2 9.56 12.8 9.27 -0.09 10 2.45 11.2 3.56 9.86 10.2 9.68 2.94 9.73 2.31 9.04 6.16 13.1 2.25 6.06 10.9 11.7 9.7 10.8 9.75 7.41 10.2 10.7 7.92 9.96 5.17 8.88 11.4 5.41 10.2 10.6 4.91 12.6 9.99 11.6 6.11 8.58 7.63 10.7 10.8 12.4 6.59 9.95 6.96 6.27 5.64 11.1 9.31 12.1 6.29 13 8.14 9.41 9.91 10.5 8.65 9.44 11.3 7.48 9.31 12 12.7 10.6 10.8 11.5 11.1 10.1 6.47 11 6.89 12.7 5.45 9.89 9.6 8.75 9.58 7.74 10.2 10.6 10.9 8.69 11.8 10.5 4.32 10.4 10.7 5.47 10.4 12.9 14.8 10.6 8.2 10.6 0.37 11.5 8.17 9.37 11.7 7.72 8.64 9.09 10.8 11 8.08 10.3 10.4 8.92 10.5 9.85 11.2 7.4 9.32 7.08 10.9 9.34 9.15 0.74 9.23 4.61 8.17 8.92 7.05 11.9 3.54 8.99 9.63 9.06 6.81 7.74 10.8 7.4 11.3 7.61 10.4 8.79 8.82 9.72 3.91 11.1 9.75 9.52 7.99 10.8 11.1 4.31 7.03 8.83 10.1 10.7 9.84 11.8 10.2 11.5 8.23 11.1 9.85 12.6 10.1 11.3 10.6 8.4 8.52 10.2 11 8.62 11.6 7.89 11.7 10.2 11.4 4.07 6.89 10.6 9.03 8 9.9 11.6 0.35 9.7 3.8 7.04 9.62 11.8 7.89 9.26 9.62 8.89 12.3 10.1 10.8 8.79 3.75 8.12 9.56 9.41 9.87 11.6 11 13.3 9.38 10.8 10.1 10.5 9.85 8.89 11.3 12.4 9.7 10.4 8.56 10.6 8.96 3.21 7.21 7.93 8.58 6.41 12 10.6 3.48 7.07 7.58 11.1 4.93 7.72 12.6 9.22 8.05 10.4 2.94 3.09 6.01 9.85 9.5 10.9 9.67 13.3 8.75 2.85 5.73 11.4 10.2 11.6 10 5.19 10.8 8.48 10.3 5.91 9.21 13.3 11.6 8.04 7.55 8.1 12.1 8.81 10.4 13.1 9.43 12.1 3.25 11 9.77 9.74
-TCGA-L6-A4EU-01 7.52 6.95 4.49 10.2 7.22 8.31 1.97 3.15 0.41 1.74 4.5 7.96 6.32 4.3 4.64 9.45 10.4 11.1 6.03 9.63 10.5 11.6 10.5 4.04 9.19 8.39 1.83 9.88 1.61 6.71 6.12 5.73 4.34 6.47 3.1 0 1.97 5.41 2.17 4.06 5.48 4.36 4.53 1.11 6.2 2.71 0.91 5.22 11.7 7.58 2.57 8.2 9.84 9.74 4.44 0.37 6.22 0 6.32 6.04 6.74 6.12 7.16 7.94 1.86 1.6 5.56 7.98 9.69 5.37 4.42 6.96 2.5 1.11 0 2.94 5.59 6.24 3.29 0.91 5.57 1.3 2.57 7.11 3.59 0 5.84 0.91 5.74 2.57 12.1 5.42 6.67 6.13 5.5 3.96 1.3 2.94 4.21 4.38 4.16 3.96 0 5.35 0.37 4.36 6.27 7.66 7.42 5.83 1.74 0 6.43 5.22 4.27 0.91 2.59 3.28 3.34 1.11 2.94 5.14 0 4.32 0.37 6.11 1.11 2.83 0 14.4 2.25 4.04 4.21 5.96 3.15 1.86 4.94 0.37 2.26 9.15 9.19 11.3 0 3.69 4.84 11.7 0 10.8 1.11 3.66 4.26 0.66 5.29 9.25 11.4 3.79 7.26 6.24 9.11 4.14 7.36 3.69 3.9 6.04 7.71 7.19 7.37 3.73 5.42 1.74 10.4 9.41 3.05 6.04 5.21 2.89 6.22 6.13 6.38 3.7 5.42 8.67 5.93 4.27 4.63 3.28 1.6 2.26 10.2 6.57 8.78 9.8 4.88 5.62 6.11 6.03 4.36 7.91 8.43 8.54 10 9.73 8.71 11 8.26 9.31 8.68 9.9 9.82 9.55 6.8 12 10.7 10.9 9.24 7.17 7.99 9.85 6.22 10.1 7.7 10.1 11.5 11.3 7.68 8.76 2.34 9.9 9.4 11.8 10.1 4.3 10 10.8 9.25 5.72 10.7 4.98 11.4 3.88 11.1 8.15 12.4 12.2 12.7 12.4 11.5 12.1 4.36 12.9 8.34 1.6 6.49 9.98 9.03 12.9 9.9 11.6 1.11 12.1 2.83 9.55 6 9.89 6.85 9.83 7.5 11.4 11.5 8.5 7.54 6.09 10.3 9.24 11.1 7.84 3.48 12.3 10.4 10.6 12.7 10.9 10.1 8.86 10.3 9.91 10.3 10.2 10.5 9.84 8.71 7.46 9.97 6.87 10.7 9.65 6.24 12.5 8.7 7.44 13.5 12.5 11.9 10.4 9.84 11.5 0.37 8.9 8.13 8.6 13.8 8.39 5.41 7.76 6.43 11 10.4 10.4 9.02 7.43 10.2 10.7 9.16 9.5 9.89 9.72 11.6 9.29 9.56 9.39 9.51 7.82 10.3 6.42 9.12 9.3 8.88 6.9 7.49 8.72 10.8 13.4 9.35 10.5 8 13.6 7.02 8.99 12.8 9.59 10.3 3.08 9.07 1.3 3.45 9.51 7.48 11.9 4.73 5.03 5.94 11.1 10.6 10.9 8.88 7.8 7.4 1.3 8.14 6.86 5.67 11.2 9.51 10.7 10.5 6.2 8.17 10.4 0.91 9.35 8.23 9.25 8.06 8.87 11 10.4 4.99 9.68 9.15 9.42 10 6.53 12.5 7.86 6.79 11.2 11.1 1.11 9 5.19 9.72 10.2 10.7 8.81 10.9 11.6 7.94 12 10.3 6.38 8.66 8.01 10.4 9.24 8.38 11.6 9.36 9.46 8.3 5.68 9.98 8.35 5.49 11.2 5.7 10.5 10.4 10.3 1.3 10.2 8.93 12.5 9.34 9.14 6.6 6.42 8.83 8.62 8.27 9.42 11.7 12.3 9.47 3.59 12.5 0.66 7.74 6.78 0 9.46 3.48 8.46 4.91 12.1 8.88 8.34 4.32 11.5 10.7 3.88 6.77 9.95 11.2 0.91 10.6 9.11 3.9 4.34 5.59 8.64 6.99 5.69 8.85 8.58 10.7 9.69 8.31 10.5 10.2 8 13.1 10.8 1.3 10.4 9.8 4.46 12.3 8.57 8.51 3.37 2.5 9.76 9.37 4.83 14 11.1 6.95 9.66 11.6 11.4 13.2 14.4 8.05 10.7 9.48 9.85 5.92 5.83 10.9 13.4 0 10.7 6.56 12.1 11.3 11.5 11.4 7.5 8.01 9.57 6.49 11.1 9.41 11.5 11.2 9.95 8.72 9.47 10.3 8.96 11.1 9.83 9.49 9.69 9.98 12.1 8.78 5.46 10.1 10.3 11.4 10.6 6.51 12.7 9.99 0 10.2 8.18 9.88 9.98 9.44 10.9 10.4 10.9 9.63 8.35 8.44 6.11 10.3 9.09 8.63 9.25 11 3.66 9.7 1.97 9.8 9.71 11.1 11.9 9.16 11.8 10.4 8.96 8.85 11.5 11 10.1 9.95 0.91 12.8 10.6 11 10.7 12.8 11.7 13 10.9 8.58 9.77 9.9 5.98 0 7.97 6.64 7.51 8.08 9.11 11.9 10.8 8.38 9.14 10.1 9.2 1.3 6.56 12.1 10.8 8.05 13 10.6 10.2 10.4 10.5 9.83 11.9 10.3 10.1 1.74 10.3 9.98 8.96 8.5 10.7 6.53 6.11 10.1 8.75 11.4 11.6 10.9 7.9 10.7 10.5 12.7 9.79 11.8 10.1 11.1 11.8 8.6 8.6 10.9 8.78 3.41 9.24 8.1 2.17 4.78 11.1 10.7 3.15 10.7 16.9 10.3 3.45 10.4 10.6 12.1 11.7 10.9 16.6 12.3 9.69 4.36 7.1 10.2 9.55 6.58 9.14 9.34 12 11.8 9.4 8.02 12.2 1.97 7.28 10.4 7.75 9.4 10.6 5.73 10.3 9.91 10 11 9.65 8.86 11.2 6.91 10.3 10.5 6.81 10.8 9.5 12.5 5.3 5.63 7.81 7.28 9.18 11.2 7.94 13.4 12.8 8.66 7.68 12.6 11.9 2.57 9.17 5.24 7.93 1.23 8.82 9.96 8.59 5.82 10.1 9.93 6.91 9.65 10.8 14.1 10.7 7.46 12 9.93 9.96 7.09 0.37 5.84 10.1 2.71 7.45 7.83 4.88 10.8 9.54 10.1 3.85 5.21 5.12 9.37 9.86 9.84 0.66 5.22 11.1 6.23 1.6 5.7 11.9 11.5 3.99 6.62 8.36 3.76 8.9 9.63 7.82 5.78 7.82 14.1 3.59 10.5 11.5 10.2 11.6 12.4 9.26 11.1 8.2 5.8 3.05 10.9 3.1 3 0.37 1.81 10.9 9.69 10.7 1.11 7.87 8.12 2.26 4.14 11.8 14.9 6.71 4.06 12.3 9.73 0 9.28 9.63 10.8 11.4 9.44 12.1 8.7 11.2 10.4 8.05 9.2 11.7 8.96 6.57 9.15 9.44 9.14 7.44 12.1 7.28 9.3 7.1 5.05 7.5 7.9 5.98 3.28 3.79 12.8 9.31 2.42 2.83 9.9 8.9 10.8 10.3 6.72 9.01 8.69 0 3.99 7.83 8.77 3.66 8.6 7.98 8.04 2.17 3.59 0 10.9 8.9 5.33 11.9 9.91 7.95 4.04 10.8 12 2.34 5.81 4.34 5.29 8.6 10.6 10.5 10.4 10.2 7.93 4.77 8.8 5.16 8.43 0.66 1.97 8.95 8.46 3.24 2.89 11.4 8.09 8.4 9.72 4.81 0 10.8 8.98 12 8.36 7.07 9.59 9.69 8.85 10.8 8.34 9.66 9.83 11 9.34 3.27 6.9 1.3 11.1 9.01 12.4 0 10.9 9.75 11.4 10.9 11.6 9.1 6.7 10.7 10.6 10.4 3.05 12.2 2.07 12.1 3.37 10.3 9.81 6.52 0.66 8.87 11.8 12.8 10.3 8.2 10.5 11.8 10.8 10.1 10.8 10.5 8.67 10.7 12.9 11.3 12.4 12.4 12.6 7.72 11 7.94 8.04 7.55 9.99 10.3 12.4 12.6 9.39 12 11 7.49 9.77 11.3 8.82 8.77 11.9 5.71 10.8 9.72 10.6 10.6 3.45 2.64 12.6 4.78 11 7.33 9.27 8.53 7.86 5.94 7.66 8.87 3.53 4.04 8.78 9.14 1.6 12.3 9.48 9.4 9.02 10.4 7.67 9.08 9.45 9.32 9.36 1.11 4.98 1.3 5.3 11.9 10.7 8.38 12.6 8.15 6.56 8.56 9.31 10.2 8.82 8.03 0.37 8.96 11.2 9.03 10.8 10.3 10.6 8.86 10.6 9.36 10.8 10.5 7.34 1.97 8.28 6.54 9.05 11 9.42 6.47 11.4 10.8 9.17 8.35 6.49 4.98 11.9 11.7 13 8.51 6.9 10.2 9.56 8.3 6.84 10.9 2.26 7.84 8.6 13.2 8.74 12.3 5.5 8.3 8.61 7.88 5.06 9.11 6.91 10.2 6.54 7.51 9.49 10.2 9.06 9.16 8.75 6.03 10.4 2.5 8.13 7.69 8.91 0 7.72 3.37 9.19 6.81 12.2 1.3 9.17 7.17 12.4 12 10.7 9.78 2.64 11.3 6.74 7.79 0.66 3.73 9.81 10.9 4.73 6.59 3.59 10.8 7.92 8.68 8.6 16.8 10.6 10.5 6.77 10.4 9.69 9.95 11.5 9.96 5.94 10.3 7.84 10.9 6.46 4.25 10.7 9.17 8.03 9.45 9.43 12.1 5.68 9.13 6.13 7.39 9.01 9.6 10.8 0 9.47 9.76 7.86 8.39 9.97 9.21 10.8 9.92 9.69 8.1 8.43 6.97 8.78 10.2 6.56 11.7 10.1 7.35 7.05 7.68 2.26 8.89 8.82 10.7 6.26 13.7 7.83 5.5 7.94 8.01 10.7 11.4 6.56 8.54 9.33 10.5 8.02 7.21 11.4 6.91 7.6 6.8 10.9 10.2 4.36 7.83 3.79 5.57 7.65 5.25 10.5 7.35 10.4 0.66 0.66 8.98 11.5 9.75 10.2 9.85 8.42 8.15 9.92 4.57 12 6.78 10.6 5.45 9.34 8.16 10.5 9.66 8.22 7.19 0 3.84 7.69 11.1 8.41 10.9 8.79 6.85 9.78 8.35 11.2 8.23 7.58 2.83 9.23 1.3 12.7 10 8.26 5.56 9.86 8.81 8.61 10.1 11 10.8 9.47 7.59 8.56 11.2 8.74 10.9 8.78 3.9 9.94 4.01 11.4 6.36 6.07 13.5 12.4 4.57 11.9 7.44 4.93 11.1 5.77 1.74 8.98 9.02 0.66 9.08 12.1 9.85 11.9 8.34 9.12 11.5 11 9.87 8.76 9.41 6.79 3.59 11 9.85 0.37 12 9.44 11.2 9.72 11.7 10.4 13.7 11.4 3.72 8.45 9.14 3.05 10.7 10.5 11.3 11.1 9.55 11.7 8.13 11.4 1.3 11.5 8.09 7.71 3.05 6.43 2.94 8.92 9.67 0.44 10.1 7.39 12.1 3.37 5.52 8.27 10.6 4.77 9.8 1.46 8.89 7.89 3.45 2.59 10.7 2.26 1.46 3.93 7.82 8.02 4.42 0 8.16 4.62 5.38 0 0 6.61 4.16 9.03 6.77 8.51 9.81 7.16 0 9.45 8.7 1.86 10.7 6.25 9.39 8.8 7.74 4.3 11.4 1.6 7.36 8.71 6.27 7.91 4.34 3.96 9.29 3.05 5.16 5.72 5.49 10.8 11.1 0 8.38 7.87 4.01 4.78 8.46 8.99 3.45 9.35 9.87 11 8.74 8.13 10.1 4.7 5.13 1.46 9.12 3.93 9.58 12.9 9.22 9.61 8.48 10.6 10.1 9.42 3.76 11.6 8.25 10.3 4.64 5.52 9.48 10.4 8.72 7.26 9.43 4.65 7.09 11.4 8.4 12.3 8.75 2.83 2.42 9.04 5.55 10.4 13.4 5.71 1.3 2.89 8.92 8.75 6.31 5.56 10.7 9.02 8.91 10.7 5.65 10.5 7.23 5.77 5.62 0.66 1.11 7.08 3 6.33 9.1 9.44 3.63 8.62 5.58 0.91 7.05 10.1 8.22 2.5 9.3 10.6 4.73 7.23 8.08 1.86 4.95 8.41 3.85 9.28 8.66 6.94 9.99 6.66 11.4 8.01 11.1 7.46 10.2 10.6 4.34 8.07 3.24 8.35 8.29 9.87 8.25 8.4 9.57 7.54 9.06 7.59 7.36 0.91 7.33 3.93 8.67 6.28 4.9 3.69 3.69 1.12 10.3 4.09 1.11 9.9 10.8 5.54 9.87 9.92 0.37 4.88 6.09 7.24 9.26 9.75 2.64 8.49 7.35 2.42 5.27 9.17 9.13 12.6 5.9 7.99 11 8.3 6.97 9.03 6.22 0.37 2.71 8.61 8.39 1.11 9.94 4.98 6.26 5.54 13.3 10.5 10.5 1.6 2.07 3.76 9.45 10.6 6 7.28 12.1 1.3 6.46 8.85 8.4 7.22 9.98 6.76 8.24 0.91 5.54 0.66 8.32 0 8.77 9.97 7.57 6.22 8.79 12 5.99 2.83 2.17 8.1 8.6 9.91 7.75 9.27 7.43 7.63 7 1.86 7.34 10.2 17.9 13.3 10.1 3.05 3.96 5.27 8.27 0.66 10.9 11.8 8.95 8.32 10.1 4.16 7.59 9.95 10.5 12.5 7.51 10.4 7.06 1.6 8.62 7.56 10.8 6.12 5.49 9.31 8.03 9.07 10.6 2.71 10.9 11.4 3.73 2.89 8.07 12.8 11.3 9.96 9.64 3.96 5.51 12.9 1.74 7.97 8.94 2.83 8.99 7.98 9.77 6.14 7.44 10.5 0.37 1.97 1.3 7.63 4.84 5.55 1.97 7.34 7.09 9.46 9.27 6.71 8.12 9.89 6.86 5.98 8.4 8.36 8.62 2.34 8.01 10.4 5.79 8.94 6.69 8.97 8.71 1.86 12.4 7.02 8.86 2.26 8.51 6 7.32 8.04 2.77 7.51 6.06 6.23 2.17 5.49 9.02 4.11 2.57 8.77 6.22 3.1 8.78 9.39 2.42 7.5 3.23 11.4 0 7.36 8.98 6.83 2.64 4.55 6.33 10 3.05 1.97 8.86 9.86 2.17 0.91 8.48 9.53 8.12 12.2 8.85 5.44 9.06 9.17 6.64 12.3 10.5 4.16 2.57 8.84 9.49 7.15 5.28 2.17 8.07 9.74 9.06 4.65 4.11 2.42 4.81 0.37 6.06 9.66 9.24 11.3 7.17 8.15 8.15 7.11 10.3 9.8 3.9 6.85 8.95 5.22 6.8 14.1 9.6 9.67 2.02 7.99 0 8.45 7 2.07 6.4 4.23 6.31 10.7 0 10.5 10.1 4.84 8.42 4.36 7.84 4.09 6.33 6.62 8.61 9.14 6.21 9.45 2.64 1.86 9.27 2.57 2.64 2.07 7.21 5.18 6.16 9.62 9.77 9.6 3.1 10.2 9.86 6.62 11.5 6.69 6.47 10.5 6.75 8.79 7.2 1.3 9.08 2.94 12.3 8.24 2.26 12.2 7.21 1.6 6.87 9.91 9.16 11.4 7.37 7.93 9.75 5.93 2.17 8.78 1.6 0.91 0 10 0.91 7.37 0 0.91 7.32 9.14 0.66 8.54 3.1 3.05 11.1 9.38 5.31 6.69 7.88 2.53 0 9.46 5.83 7.07 0 9.55 15.5 7.77 8.56 8.62 14.8 11.3 2.71 0.91 9.11 4.42 7.6 10.9 0 7.49 8.56 14.6 4.72 6.06 12.6 0.37 10.1 2.57 8.09 11.7 8.67 10.2 0.37 9.86 9.4 8.05 8.85 13.1 9.61 8.07 4.94 1.97 8.12 4.25 8.51 3.45 9.95 4.64 2.42 0.66 4.98 3.69 12.3 9.15 11.7 9.35 9.79 11.1 6.19 7.19 11.3 9.33 12.3 10.2 6.93 12.2 9.4 4.04 7.27 7.27 10.7 3.88 8.18 9 12 7.5 10.7 8.69 9.52 6.9 8.42 7.28 1.11 7.47 8.02 6.07 3.59 0 9.71 7.56 10.7 7.64 5.48 6.18 3.56 6.02 9.25 8.44 5.94 7.25 5.1 6.58 9.76 8.69 2.5 9.23 0.37 0 10 10.7 6.25 10.5 11.2 5.89 6.03 5.55 1.3 8.7 6.75 8.69 6.94 8.49 5.52 2.71 5.54 8.77 7.68 1.74 12 9.14 2.83 11.6 12.3 8.69 4.06 8.03 11.2 0.37 9.19 12.2 11.2 11.7 10.3 9.27 0.37 9.21 7.17 0.37 9.59 0.66 0 7.72 9.97 7.1 8.63 7.22 9.85 0 1.75 7.74 12 7.15 8.05 1.11 7.24 2.51 6.14 8.3 4.27 13.3 7.22 8.33 8.32 7.42 11.3 3.66 6.83 2.5 10.2 7.47 1.11 4.72 7.32 0.91 11.3 1.46 6.31 10.5 8.57 11.5 9.84 2.5 3.19 8.55 11.2 12 8.01 7.09 5.98 10.7 7.19 8.13 7.2 6.78 7.31 4.87 9.1 3.66 9.26 11.2 8.94 4.64 8.07 10.4 6.71 6.48 11 5.75 10.6 7.27 6.22 12.7 11.2 10.6 9.66 2.31 6.62 7.46 8.13 6.9 8.72 4.14 9.69 1.3 9.42 5.3 2.42 4.25 3.63 3.59 7.25 1.11 12.2 5.73 2.83 12.1 6.95 1.46 13.9 12.3 12.9 8.95 8.64 4.99 6.72 8.37 8.21 5.81 3.45 7.22 9.02 9.48 9.25 9.14 8.16 9.13 4.48 7.05 7.05 9.21 1.11 1.6 10.7 4.53 1.6 12.5 5.81 5.01 4.23 6.25 5.12 12.7 7.1 0.37 7.19 10.1 8.12 6.41 1.46 9.48 7.2 7.73 5.81 10.4 9.08 0.91 11 11.1 8.75 4.06 8.76 5.55 3.56 4.32 5.25 8.87 8.17 11.1 12.7 8.25 0 0.37 8.45 9.9 7.11 10.1 11.3 3.99 6.86 3.82 9.53 8.38 8.89 6.21 10.6 11.4 7.19 4.44 5.93 12.7 2.94 4.69 9.91 9.98 7.16 0.37 7.6 8.31 2.83 0 9.65 3.13 3 4.4 9.04 8.26 8.26 6.55 5.32 8.11 5.22 9.37 9.91 10.5 9.79 8.44 0.66 9.02 9.54 1.6 9.47 10.8 6 6.71 6.68 9.59 3 5.06 9.64 5.38 10.2 0.37 9.58 3.56 7.88 10.1 1.97 3.76 10.8 9.52 6.35 5.63 2.26 1.97 1.3 3.76 0.91 5.26 9.96 0.37 8.85 11.8 10.4 11.5 8.3 10.6 10.5 7.57 5.9 10.4 10.3 6.02 8.99 8.95 9.48 4.51 1.74 7.83 5.37 5.13 6.78 7.36 7.25 8.46 8.75 8.11 7.09 0.37 1.46 8.35 6.93 9.25 9 7.56 6.27 10.4 2.83 4.62 7.28 7.52 4.53 5.27 11.9 8.89 6.96 8.24 7.21 6.74 0 3.56 3.99 10.6 9.05 0.37 3.66 6.23 3.37 9.88 3.99 9.08 8.01 11.2 8.53 8.69 12.2 3.73 3.56 6.24 11.7 1.86 7.58 11.2 5.77 0.66 9.06 5.48 10.2 0.91 6.15 8.28 7.25 8.55 9.7 8.25 4.36 4.14 5.62 3.52 7.31 8.63 4.23 9.89 0.37 1.86 12 7.95 4.14 8.25 0 3.56 8.73 11.3 4.58 0 11.7 3.48 8.25 1.6 6.96 0 8.49 6.9 5.14 8.95 2.07 13.2 7.48 8.51 5.25 11.2 3.15 8.2 2.94 11.3 8.4 6.89 0.66 6.98 0 5.92 4.58 0.37 0 9.93 2.07 1.3 6.21 0.66 9.15 0 8.34 0.66 5.11 9.08 4.24 8.73 3.63 8 9.57 5.46 13.9 1.11 10.2 5.77 8.67 9 8.06 9.28 1.3 0.66 11.8 2.07 2.89 7.38 6.07 6.39 12.8 5.46 6.94 7.78 3.19 7.04 3.9 7.01 5.92 7.31 4.67 8.84 5.61 9.92 2.42 12.1 7.73 4.4 9.88 7.98 7.06 1.97 0 9.29 6.12 10.4 5.4 5.58 8.49 5.72 5.79 8.43 7.8 6.26 9.45 4.23 6.46 6.09 4.94 7.74 5.66 1.3 6.99 6.94 6.11 9.8 4.69 6.38 5.62 6.94 4.55 0 5.84 9.13 2.07 6.27 5.61 9.1 7.48 8.27 9.59 8.92 9.17 9.51 2.64 0.66 11.9 1.11 1.86 4.81 8.55 10.9 7.1 0.37 9.99 6.36 8.91 8.91 2.77 11.7 8.92 1.38 9.71 5.64 7.49 1.11 9.44 0 4.78 6.13 9 8.94 9.87 7.19 0.37 8.86 9.04 3.05 2.34 13.3 12.2 3.19 8.63 5.7 6.91 13.3 10.7 9.92 0.66 6.89 12.2 0.91 6.36 11.8 0 0 2.5 4.48 3.19 4.04 8.72 4.09 2.07 8.47 9.4 5.25 7 7.88 2.13 7.32 4.58 7.83 7.22 6.95 8.02 2.34 9.37 3.73 9.84 2.34 6.85 2.34 9.98 8.64 10.9 4.81 7.54 6.45 4.23 3.73 8.96 4.46 18.9 8.61 15.6 8.07 3.1 10.7 6.28 9.75 9.37 5.31 1.74 2.89 2.57 8.26 8.08 8.2 13.4 3.24 3.88 5.34 1.97 0.66 3.48 9.69 3.88 4.99 9.43 7 11.1 0 6.74 1.3 5.05 3.24 3.37 8.89 0.91 7.37 6.05 9.12 10.7 3.05 0 4.44 0.37 6.3 0.37 12.2 4.34 10.2 10.1 7.13 6.6 4.32 13.1 7.61 9.77 9.22 0 4.25 7.64 7.38 0.66 10.2 7.61 9.34 7.14 12.1 4.04 8.2 8.49 10.9 7.16 8.26 4.53 3.66 4.95 7.57 10.2 7.1 0 8.01 3.66 7.58 3.48 6.81 5.2 3.56 8.81 8.39 1.46 4.8 7.46 7.94 0.37 7.58 11.3 7.38 7.71 8.39 10.6 7.42 7.78 10.2 7.65 1.86 12.2 10.8 8.69 4.38 9.74 7.36 4.53 2.94 4.34 11 6.79 6.11 4.94 8.08 0.66 11.3 4.27 10.3 7.65 7.01 3.76 4.67 9.62 0.91 5.52 2.57 3.45 7.29 10.4 4.94 6.57 7.81 3.11 0 9.06 10.2 0 9.51 9.5 0 5.33 7.81 0 7.41 6.31 6.68 8.59 10.7 0 3.45 8.46 9.1 6.31 7.87 9.08 1.86 3.41 10.9 4.69 4.09 8.52 4.84 0 8.65 2.34 4.01 8.66 8.56 8.23 4.81 6.14 0 10.6 4.46 8.41 10.6 8.46 2.17 0.37 10.1 5.13 3.73 4.28 3.99 9.31 4.77 10 1.11 0.91 4.97 6.47 6.16 6.04 5.46 5.32 0 9.13 6.89 6.84 2.57 10.3 4.8 8.98 3.99 6.76 4.14 0 3.28 7.24 5.01 6.35 4.49 8.8 7.84 2.31 6.87 6.18 1.86 0 4.84 1.46 7.15 2.57 7.19 5.66 11 6.72 9.39 4.72 10.2 4.06 3.05 10.4 5.9 5.35 10.4 3.93 2.64 11.5 11.1 0 9.02 4.25 0 0 0 11.9 7.64 5.83 4.09 13.8 8.83 0 5.86 11.4 6.69 8.4 7.3 7.09 6.04 3.1 6.03 7.67 8.74 10.2 11.1 5.06 8.85 4.38 9.42 8.04 2.83 4.44 12.1 9.79 4.88 6.71 5.72 3.05 10.8 0.66 7.33 10.4 0 2.57 11.2 2.83 4.23 6.64 3.45 6.36 11.5 10.5 3.52 12.2 7.49 8.6 7.91 8.29 11 9.63 1.74 3.1 0.37 8.26 1.6 5.06 4.32 4.64 11.5 11.1 8.99 6.36 7.01 6.62 8.45 6.16 7.02 4.42 9.35 6.34 0.66 12.4 8.78 5.98 7.61 6.57 7.28 7.23 6.61 5.47 4.48 8.56 7.93 6.49 5.34 8.61 11.1 5.1 7.75 7.67 3.84 8.96 4.78 12.2 5.55 11.2 7.09 7.9 0.66 7.92 8.94 0.66 3.37 5.59 9.12 8.99 11.9 10.7 2.42 8.86 1.11 12.3 5.07 9.29 5.1 3.15 0 5.72 1.86 4.04 3.76 9.97 4.04 3.63 10.2 10.4 10.5 12.7 12.1 3.69 2.64 5.06 2.83 10.3 5.79 11.1 7.85 11.9 13.1 4.04 0.66 11.1 2.07 1.46 9.52 0 9.37 2.71 4.18 14.1 11.3 2.34 8.25 6.33 8.67 1.74 7.16 8.35 10.2 10.3 6.29 9.35 7.32 6.36 7.87 3.52 10.6 8.65 0.66 10.1 3.33 9.31 0.66 3.56 4.53 2.07 7.1 3.9 8.59 3.45 8.68 6.84 6.78 3.48 6.99 1.6 8.82 8.76 1.74 3.19 7.48 7.26 0.37 4.7 8.16 7.89 2.68 9.24 5.9 2.17 0 11 8.82 9.36 4.77 4.23 6.81 4.72 9.99 6.69 3.85 6.67 4.7 1.74 9.81 10 6.57 9.2 6.66 1.46 11.2 2.07 1.97 4.06 5.82 2.64 10.5 6.76 7.24 8.59 6.57 9.84 6.64 9.96 7.58 0 9.21 0 6.23 11.3 7.33 11.2 2.94 9.76 9.63 9.89 9.33 11.4 7.62 7.44 6.73 10.2 11.8 10.1 11.9 6.59 6.31 6.78 10.3 10.3 9.78 9.99 10.2 5.12 10.8 9.67 10.9 5.06 2.42 2.89 4.75 10.1 9.38 6.16 6.19 5.93 8.77 9.56 4.58 4.01 0.66 7.71 2.07 5.2 9.71 5.26 5.87 11 12.9 9.02 4.72 10.4 11.5 11.2 9.78 7.4 8.22 4.97 10.5 6.92 9.57 9.19 8.78 9.54 10.2 2.64 9.04 8.13 11.8 9.25 10.2 12.8 2.42 9.83 2.17 0 9.9 10.6 5.27 4.27 12.1 10.3 8.73 11.8 9.41 11.7 13.6 9.2 9.15 8.95 9.47 7.27 8.84 7.81 11.8 6.58 10.7 9.12 12.2 13.6 8.15 2.34 8.5 0.37 10.4 12.2 9.75 10.5 10.3 9.95 7.5 10.3 4.78 9.08 10 6.99 8.13 9.55 6.99 8.03 14.2 0 10.1 11.9 12.1 12.1 7.91 8.05 8.02 10.2 5.82 7.29 5.58 9.75 11.8 7.63 8.97 12 16.9 1.11 1.97 7.72 11 5.95 7.21 9.7 11.8 13.6 14.3 16.1 10.9 11.7 6.96 8.73 6.96 8.67 8.79 4.18 5.9 5.76 11.3 8.71 10.4 12.2 8.45 11.9 7.27 5.68 8.19 11.6 6.78 1.3 5.87 8.39 1.11 7.89 3.59 5.53 9.62 1.97 7.49 10.5 9.8 10.3 9.14 8.16 9.08 9.99 4.81 8.18 10.4 8.79 0 9.77 10.8 8.71 5.71 12.4 4.55 7.48 9.98 4.5 1.46 5.14 0.38 8.86 3 5.74 6.31 9.63 7.2 12.7 5.48 9.01 8.97 3 6.53 10.9 13.6 7.68 13.4 9.04 7.88 11.4 12.5 13.6 11.1 12.9 0 8.98 2.57 11.2 4.4 6.66 10.8 0.91 0.66 7.22 8.69 1.3 10.5 6.45 2.17 4.65 7.75 7.89 6.98 8.6 2.17 8.97 3.56 7.97 7.78 12 7.85 0 10 12.7 10.6 8.08 0.91 1.86 10.8 8.29 6.8 11.2 11.2 1.3 3 3.37 2.5 12.2 10.7 6.4 9.52 7.37 0 8.84 7.28 8.35 1.46 8.16 0 0.37 1.6 8.35 5.34 4.91 5.21 8.83 10 9.71 7.96 10 6.98 3.31 3.05 6.94 9.79 8.81 7.44 6.14 9.02 3.76 8.09 10.3 9.63 10.5 10.5 7.21 9.14 7.6 9.75 6.31 8.98 4.67 12.2 8.97 6.9 8.19 8.26 9.86 6.83 9.62 8.15 2.07 10.4 3.48 11.1 3.15 9.84 2.34 11.1 7.75 3.56 8.58 0 0 8.46 8.08 6.07 2.07 13.4 7.19 1.46 3 5.61 1.46 9.99 8.98 9 7.17 9.01 9.13 5.61 6.32 6.87 8.27 2.89 12 7.38 1.74 14 5.3 9.12 1.74 2.07 2.26 10.3 5.86 8.19 6.65 12.6 9.09 13.2 10.4 7.51 8.21 12.9 9.61 2.83 1.11 3.33 8.22 9.01 4.64 7.78 8.3 8.94 10.8 10.5 6.38 11.5 7.32 9.27 6.85 7.25 10.1 10.6 9.19 6.41 9.75 11.5 11.4 8.28 7.93 0 11.1 4.99 9.45 1.11 10.5 10.4 3.45 6.35 8.68 7.59 11.4 8.72 9.43 8.03 7.67 8.99 8.54 8.97 0 9.5 8.63 11.3 10.8 10.8 10.8 0.66 7.6 12.9 2.42 0.91 11.1 10.6 8.54 4.23 12 6.94 8.85 9.75 7.08 10.3 8.22 9.75 7.86 11.1 12 2.89 11.2 11.3 8.83 11.1 10.5 3.19 10.3 0 10.8 9.86 11.1 9.68 7.76 11.1 10.4 10.2 3.48 4.06 9.79 10.9 0 10.1 8.8 9.59 7.46 8.04 12.1 0.91 11.9 9.28 10.4 3.48 7.85 9.74 1.3 6.11 12 3.85 10.4 6.45 0 10.2 8.18 9.46 6.5 9.12 8 0 7.11 4.04 11.1 4.86 7.27 9.37 5.07 0.37 11.3 7.69 5.06 6.75 6.8 6.93 7.43 6.27 9.86 10.3 10 9.74 9.99 9.66 1.74 8.42 7.93 8.2 9.75 8.42 9.69 10.2 5.55 6.2 7.17 9.52 9.63 9.76 1.46 5.14 7.58 6.89 7.05 10.2 2.71 10.4 13.5 6.74 7.91 9.28 7.7 10.9 6.2 4.81 6.41 7.22 6.71 7 10.3 8.24 9.14 7.66 1.3 7.28 9.42 8.1 9.28 10.6 5.12 10.2 3.88 4.57 7.98 7.36 4.6 1.11 4.25 4.48 5.11 4.73 9.59 0.37 9.84 10.8 8.87 4.88 2.64 0.66 0.66 3.28 8.21 2.89 1.74 9.21 5.44 1.97 0.91 6.66 8.16 7.92 10.5 5.95 5.28 4.99 12.2 4.95 10.5 6.64 4.21 8.43 9.55 3.33 7.6 7.09 6.23 2.83 11.2 8.34 7.39 4.83 10.4 4.81 9.06 4.27 9.29 7.32 9.92 7.33 7.28 5.96 7.13 10.6 9.91 3.28 3.88 2.83 4.32 5.63 9.45 3.33 6.1 6.42 5.01 11.2 1.97 10.9 10.5 3.19 7.3 6.81 8.74 3.85 8.94 5.66 3.41 10.7 7.48 0.66 10.2 7.62 7.76 7.98 3.52 8.17 2.07 8.43 7.35 8.55 1.6 10 7.59 9.1 8.85 9.32 4.86 1.74 10.4 8.59 9.06 11.3 5.63 7.77 10.5 4.38 8.82 6.42 1.97 8.87 6.68 2.73 9.51 11 8.17 2.77 0 2.71 4.64 1.86 9.5 8.77 1.46 6.96 2.26 2.07 4.11 4.3 7.96 2.17 5.9 12.1 9.39 10.3 5.11 8.93 8.16 7.82 9.53 12.1 5.75 9.37 7.64 6.1 3.56 0 7.27 3.37 4.86 6.84 5.41 6.79 14.7 9.11 5.13 0.66 8.33 3.28 8.5 10.4 5.57 8.99 9.43 9.14 10.7 10.2 9.86 5.82 12.4 8.85 7.16 0 10.1 1.11 9.21 10.2 10.5 6.83 11.9 4.42 12.2 9.26 12 8.81 5.75 11.2 11.4 9.45 0 7.35 9.44 7.16 10.5 9.62 10 11.6 8.47 2.97 0 9.2 8.93 8.98 9.95 7.13 8.55 6.75 5.29 1.3 9.11 8.49 10.5 11.1 9.37 11.1 9.21 10.4 3.93 9.19 7.06 10.4 11.4 3.37 11.8 6.92 7.95 9.21 9.46 8.77 9.68 8.99 11.1 9.87 7.99 10.7 12.5 8.47 6.57 9.66 8.33 10.4 9.99 9.41 4.62 11.6 9.41 0 9.06 8.46 8.16 0.66 8.93 6.34 10.5 9.02 10.4 10.3 10.6 10.9 9.87 8.56 7.43 12.4 4.65 4.7 10.9 0.37 10.2 11.4 9.73 9.53 8.54 7.43 9.96 8.98 10.4 9.73 10.1 11.4 8.13 10.6 8.72 9.36 11 10.4 5.51 7.95 10.3 9.41 9.41 0.66 7.93 10 7.77 2.5 4.11 7.76 7.22 3.45 11.1 7.23 2.94 11.6 8.14 7.9 3.76 9.22 11.4 0 1.3 0 9.56 11.2 10.9 8.65 5.05 9.79 4.23 9.89 9.77 5.14 9.68 6.71 8.64 5.55 7.59 0 10.2 8.72 10.5 10.1 11.2 9.93 11.1 2.17 11.4 12 9.18 6.59 1.86 0.37 10.4 10.1 9.6 8.62 9.86 9.13 9.9 7.77 8.94 7.38 11.4 10.8 9.09 11.3 7.74 5.19 9.01 10.7 10.2 6.68 9.23 12 10.6 9.92 10.4 9.26 4.42 9.95 11.6 11.3 9.77 10.3 9.54 6.91 9.5 9.61 10.7 1.97 7.86 10.2 9.29 9.51 9.04 8.93 7.13 8.78 9.34 10.2 7.79 8.63 9.52 9.98 6.45 9.51 7.83 8.34 9.73 10.3 8.85 9.19 8.18 8.46 10.6 8.84 3.1 10.8 8.59 10.6 9.76 1.11 10.5 9.53 9.52 4.63 8.21 9.62 10.6 6.53 1.61 3.85 8.93 10.5 11 7.63 11.7 8.1 10.3 9.45 3.88 9.16 9.78 7.39 9.46 7.46 10.3 12.1 9.63 11.1 9.07 8.43 9.17 3.28 4.81 5.65 1.46 8.82 10.3 10.8 10.4 8.89 8.87 9.18 14.3 8.78 9.99 9.36 9.7 11.7 8.55 8.89 11.7 10 8.88 12.6 9.03 10.5 8.49 9.55 10.6 9.43 10.6 8.66 9.87 8.06 5.27 10.8 8.88 11.3 10.3 8.96 11.5 10.2 11.7 11.5 11.3 9.9 12.8 6.96 8.26 11.9 9.85 9.8 10.9 9.87 5.43 10.2 12.4 2.5 11.4 7.32 1.46 9.33 8.58 10.3 9.06 11.3 10.3 11.2 10.8 3.76 8.9 10.1 3.69 13.8 11.2 9.49 11.8 8.84 5.47 8.36 7.27 8.52 10.9 7.95 5.19 9.1 8.53 5.94 2.26 8.64 7.96 8.51 10.7 8.75 10.3 11.4 5.17 7.78 9.05 11 12.3 5.65 7.86 9.29 7.63 2.94 9.84 9.4 9.38 1.97 9.69 8.94 8.37 11.5 11.6 10.3 9.27 8.9 1.97 8.94 10.4 10.1 10.5 9.08 8.72 10.1 9.34 4.11 3.82 9.12 1.11 6.54 11.1 7.8 9.26 6.83 9.76 10.3 9.25 11.7 9.57 7.71 10.2 10.4 6.88 11 8.42 2.64 8.04 9.74 8.11 10.2 10.5 7.99 8.58 9.7 6.06 9.34 1.11 9.94 8.98 10.9 11.1 6.29 11.3 9.82 12.2 10.6 10.2 9.3 9.89 10.2 9.9 8.96 6.17 10.4 10.6 5.8 8.74 11.8 9.14 9.42 11.8 2.5 18.9 10.4 10.3 11.1 11.1 8.61 9.05 8.59 9.93 1.97 9.79 9.52 11.5 11.8 12.2 6.62 12.1 10.1 11.6 10.3 11.2 9.45 9.86 8.89 8 9.22 12 10.2 9.94 10.2 12.2 11 9.5 9.46 10.4 9.66 11 10.3 8.49 10.6 5.18 8.27 11.7 9.89 8.71 9.02 8.18 9.48 11.4 8.8 4.67 9.59 8.89 9.52 9.66 6.15 1.6 5.41 7.93 3.15 8.53 11.4 7.52 12.3 8.44 6.89 10.4 9.95 0 7.6 6.26 11.1 11.4 9.42 8.54 11.7 11.5 12 8.6 8.49 8.06 5.71 6.08 8.07 7.94 11.3 9.36 8.95 10.6 11.4 10.6 11.9 9.23 11.3 4.9 9.65 11.9 12.5 8.05 10.1 10.7 8.32 10.9 5.55 11 9.21 2.26 7.16 12.6 6.6 7.05 9.13 2.64 9.97 9 8.39 9.94 10.2 10 9.98 9.61 10.7 9.38 9.27 10.1 10.1 8.45 4.46 1.74 14.7 9.13 10.9 12.2 9.18 9.8 5.51 7.58 12.1 9.98 7.24 0 6.37 9.07 5.78 2.89 9.92 9.4 5.12 10.6 4.01 9.23 1.11 1.74 8.73 9.81 10.1 10.1 8.13 7.75 8.71 8.65 8.05 9.85 12.8 11.6 11.2 9.2 1.11 3.37 12.1 3.1 7.89 9.9 0.37 6.27 11.1 3.63 10.9 10.6 9.3 8.53 11.9 8.25 9.62 10.6 10.3 7.64 5.23 8.82 10.1 4.97 8.88 9.8 9.42 11.3 7.9 7.12 10.8 12.8 10.4 11.4 8.97 12.3 8.83 2.94 8.57 10.2 9.49 11.4 4.81 0.91 4.01 4.78 11 9.56 10.2 10.4 5.34 10.1 11.3 9.08 7.36 10.3 10.6 13.3 10.2 8.11 8.18 5.05 13.8 5.75 9.33 9.39 7.71 9.98 11.4 10 10.5 9.13 9.39 7.9 11.2 8.3 10.5 8.73 11.8 12.3 6.97 8.63 10.3 9.8 9.75 8.03 9.94 7.03 1.3 9.17 6.46 3.52 13.3 9.48 8.66 9.84 10.4 12.6 10.6 4.06 2.77 7.7 13 9.67 5.47 9.91 10.6 9.73 9.33 8.31 9.53 8.27 6.61 5.85 11.8 8.56 0.91 3.88 6.89 4.1 8.37 5.48 5.53 0.66 9.5 1.3 1.74 0.91 6.84 7.7 5.4 6.74 8.81 9.17 2.34 0.91 10.9 9.77 9.37 7.94 7.85 2.07 2.57 16.4 9.58 11.4 0.37 15.3 12.6 10.7 12 6.89 7.28 6.69 7.1 0.37 3.33 12 5.44 4.82 8.7 6.89 4.6 9.2 0 5.66 8.94 10.9 9.02 7.89 2.52 7.92 8.92 6.99 11.3 2.07 10.2 7.85 7.72 8.21 4.23 6.24 10.7 6.39 3.82 10.5 5.64 6.67 8.81 8.21 4.34 1.74 9.87 10.2 8.6 8.68 7.36 5.35 4.6 8.62 3.63 4.77 10.8 0.91 0.37 8.43 2.57 4.46 9.4 7.17 5.72 5.38 2.42 0 8.63 9.32 4.7 8.45 10.8 9.51 8.14 3.59 12.8 0.37 1.46 11.8 6.87 9.75 7.41 8.43 8.24 5.06 6.05 6.88 4.77 0 5.22 9.29 9.51 2.42 5.03 2.77 7.89 0 8.12 5.79 5.18 6.11 5.53 10.4 0 6.96 4.32 3.15 12.9 7.81 8.56 4.44 6.51 8.1 7.48 9.52 7.05 11.4 1.97 2.26 7.93 10.5 5.85 9.1 5.16 4.76 5.05 8.63 10 2.89 6.47 6.67 8.41 1.11 8.88 7.17 0.66 6.05 2.34 2.71 0 0 7.65 0.37 3.76 4.27 0.37 5.11 7.37 4.3 4.9 2.34 5.51 8.22 4.3 8.05 2.77 2.71 4.75 1.46 5.5 6.29 2.17 0 1.86 10.5 8.59 6.23 6.75 4.55 11.1 9.99 9.63 9.31 0 9.87 11 9.33 7.48 9.81 5.63 3.15 5.1 2.89 11.7 10.8 11.8 7.09 11.2 11.2 12.2 7.51 11.4 10.4 9.23 9.66 7.58 1.46 11.1 5.56 8.95 7.77 9.2 2.17 9.78 10.7 9.16 5.87 4.42 11.7 10.1 8.44 8.12 0.38 13.4 10.4 8.04 11.2 10.9 4.32 0 10.8 6.6 7.46 10.1 5.85 10.4 8.52 12.2 8.89 9.09 9.35 11.9 9.08 10.6 12.3 8.7 5.78 8.27 8.82 9.68 6.05 10.3 0.37 7.22 2.71 10.2 10.7 12.3 9.68 13.4 10.5 10.9 5.87 12 9.08 8.79 8.13 7.83 6.34 7.02 10.9 8.25 6.1 9.11 7.81 8.61 9.17 8.66 0 11.4 7.26 10.5 9.01 9.29 8.94 9.32 5.39 10.2 11.3 8.62 12.7 8.66 6.38 11.2 9.54 10.8 3.19 9.2 11.1 11.8 0.37 5.58 7.35 10.7 4.81 3 6.81 9.15 5.83 6.94 0.37 9.23 1.97 8.26 0 1.3 4.75 9.98 10.6 7.68 10.7 8.66 9.12 7.3 8.32 7.66 9.56 10.5 10.3 9.29 5.97 10.4 10.1 11.5 8.77 8.28 10.9 6.37 10.8 11.3 9.35 5.16 9.56 11.1 8.5 16 10.8 10.1 6.9 6.29 9.35 9.16 10.7 9.75 9.74 6.79 9.04 0.66 9.42 8.49 10.3 9.12 10.8 9.65 10.1 7.62 7.88 10.5 11.6 7.27 11.1 9.07 10.2 9.17 12 8.31 8.82 6.78 8.64 10.6 9.15 9.02 12.4 11.9 8.46 5.64 8.21 4.38 8.88 10.3 9.31 5.37 2.42 5.8 8.68 9.02 10.1 3.15 8.43 6.76 9.11 6.95 1.97 8.66 2.57 7.72 7.09 3.48 6.85 6.66 9.65 10.4 9.59 10.1 10.2 9.82 8.3 9.28 10.5 11.5 10.4 11.4 1.11 7.72 8.61 11.1 12.7 9.56 11.4 8.71 7.91 0.91 11 7.84 11.7 11 2.42 7.76 8.92 10.8 9.7 10.7 8.75 10.2 8.56 9.81 9.62 11.3 12.4 11 3.33 9.68 9.7 9.01 8.97 4.57 9.57 2.34 9.84 8.3 5.43 2.34 10.8 11.6 6.48 8.96 8.26 5.06 10 10.9 9.85 5.87 11.4 8.64 8.61 9.22 6.54 10.1 6.15 10.6 3.24 9.46 5.84 8.17 13.4 0 9.78 3.28 9.63 9.66 7.81 3.28 10.3 0.91 5.74 8.21 8.63 8.07 10.6 8.63 5.75 8.34 7.87 8.53 0 3.33 3.45 2.57 10.7 8.37 9.39 3.24 9.88 8.66 0.66 8.26 8.84 8.83 8.03 8.97 6.08 8 9.3 9.5 8.27 9.98 6.56 1.6 7.77 9.84 9.77 1.86 11.3 0.37 9.2 9.82 10.5 7.6 10.8 9.02 9.09 1.46 10.9 10.9 9.88 10.3 8.38 1.74 6.61 9.75 5.75 9.97 11.1 10.7 11 11.5 10.3 3.79 9.59 10.2 9.57 11.4 9.54 9.74 1.3 9.2 11.8 6.78 7.28 9.45 9.68 10.5 8.95 9.37 9.29 9.57 8.2 10.9 4.44 4.01 2.87 10.2 1.86 2.04 5.62 10 0.91 11.8 8.4 8.5 8.49 1.74 9.61 3.69 6.56 5.01 11.5 12.3 10.1 3.79 5.76 1.87 7.2 9.08 7.9 11.7 3.52 7.04 7.01 0.91 9.55 4.46 11.4 3.66 7.25 7.71 8.1 11.4 1.11 0 8.87 10.2 10.9 2.17 6.8 0 12.7 8.8 10.8 4.34 7.16 0.37 4.42 9.35 9.22 10.9 1.97 7.6 11.8 8.85 6.19 8.02 9.6 14.2 9.79 11.3 9.47 8.11 10.4 9.46 2.26 1.3 9.05 0 9.42 8.71 6.47 11 11.1 8.46 11.9 8.58 7.87 10.7 3.76 9.61 2.26 4.72 10 6.85 9.37 10.9 11.8 6.35 0 2.94 9.23 10.4 11.9 7.41 6.91 9.76 7.71 11.1 5.02 8.92 7.5 4.18 10.3 9.1 11.2 1.6 9.47 2.83 5.79 11.2 9.35 3 1.3 9.54 6.55 11 11.7 11.4 9.02 7.81 7.92 8.45 9.2 5.63 9.44 6.88 11.3 10.9 1.11 7.25 3.05 1.97 7.04 12.2 2.77 9.86 6.74 7.93 4.8 0 5.65 8.8 8.65 7.35 8.48 10.4 4.6 10 0.37 7.23 9.24 7.87 10.8 8.12 12.1 8.38 5.2 0.37 11.1 7.56 2.71 2.83 0.66 2.5 4.84 8.07 11.3 3.33 7.02 11.9 3.19 2.94 8.07 9.95 9.76 8.93 5.9 4.44 8.76 10.3 12.3 9.88 10.3 9 9.47 10.7 10.2 12.5 8.47 7.83 2.5 9.47 9.73 0.37 4.18 7.22 3.59 7.8 9.33 7.94 8.28 10 5.85 9.57 3.19 3 8.66 8.54 9.02 6.29 7.68 6.86 9.38 2.07 4.21 8.78 11.9 4.48 9.22 9.74 10.9 8.24 4.32 12.2 10.8 7.56 11.3 12.2 7.98 9.23 9.88 9.57 8.63 8.01 6.83 8.96 8.85 8.54 4.51 8.52 8.48 10.2 4.44 7.31 7.47 10.9 9.32 9.5 7.56 11.2 8.13 8.78 10.9 4.25 11.7 8.68 0.37 7.15 9.13 11.8 6.98 7.27 13.8 8.26 10.7 7.86 9.97 7.4 7.74 9.68 8.09 7.72 13.3 10.2 4.73 8.32 10.6 15.9 0.37 6.55 12.8 12.7 4.54 0.91 3.76 11.3 8.02 3.79 9.44 9.52 5.18 11.2 5.51 0.37 12 7.71 9.3 8.44 11.1 11.1 10.8 11.3 9.95 11 11.1 3.28 11.2 2.07 1.6 9.79 6.89 10.2 12.7 4.38 7.69 5.55 8.26 10.6 4.65 2.42 1.74 2.89 5.4 4.38 7.81 1.97 8.53 5.85 0 6.8 3.15 6.45 9.74 3.99 7.22 7.94 3.9 6.18 5.45 1.86 6.43 10.6 8.26 15.1 10.9 4.9 6.98 7.02 9.66 4.81 8.7 8.76 8.7 8.5 8.27 2.17 5.52 7.16 5.94 7 5.59 4.78 2.26 9.63 4.73 5.08 7.68 9.4 1.74 8.93 9.64 4.8 4.73 5.73 1.3 2.34 2.5 9.31 8.41 6.68 3.37 9.03 6.4 7.99 6.39 0 2.56 1.86 8.05 1.3 4.62 0.66 9.33 1.74 7.2 0.91 0.91 10.9 11.1 7.53 5.87 4.14 7.27 3.79 5.91 4.18 7.5 0.66 0.37 3.89 10.7 6.27 6.69 0.37 6.11 9.16 5.02 9.81 5.34 7.44 3.93 3.56 4.77 7.52 6.74 1.11 4.49 8.13 9.31 10.4 5.88 1.46 8.49 9.52 0 6.82 8.78 4.67 6.61 6.71 8.4 0 9.59 5.55 2.64 0 0 7.67 6.67 0 2.34 2.71 10.6 3.59 0.91 8.37 13.2 9.4 8.68 4.87 8.52 5.45 6.21 0 3.33 9.94 1.46 3.15 8.16 7.28 9.34 4.09 7.86 1.11 5.37 5.41 7.62 8.03 7.63 5.85 10.7 6.37 6.36 5.2 1.74 4.14 13.5 1.3 7.61 7.15 5.83 7.05 0.91 5.18 6.48 1.6 2.89 3.59 1.11 2.34 8.56 7.25 6.04 7.94 9.67 0.37 0 0.37 6.97 1.6 3.88 0.91 8.72 7.53 8.75 4.01 5.49 0 8.73 5.74 8.33 0 0.66 4.25 3.79 0.37 3.28 0 1.86 5.29 0.37 7.28 1.11 1.74 3 6.88 0 6.33 2.64 10.4 7.52 2.77 4.6 1.11 4.21 0 7.29 9.57 8.1 7.23 9.92 4.04 8.27 1.11 1.86 6.69 6.93 5.1 6.81 8.48 8.64 0 4.64 8.5 8.7 3.24 7.09 7.79 0.91 8.84 2.07 6.63 10.7 9.22 6.88 8.91 5.11 4.84 0.91 2.5 9.26 0 7.93 6.82 5.73 5.29 5.39 8.79 9.05 5.03 9.24 0.91 9.52 1.74 5.95 2.17 6.16 7.04 6.09 9.32 1.11 8.05 9.09 5.48 4.94 9.43 6.77 7.05 8.23 0 4.7 0.91 9.08 3.96 4.21 6.46 1.3 3.05 6.53 0.91 3.59 5.81 6.08 4.25 6.15 3.48 9.6 4.3 3 4.87 4.34 8.63 7.87 2.5 10.9 6.98 8.21 4.38 4.3 6.07 7.86 1.6 7.62 9.33 9.88 3.1 1.46 8.41 1.74 1.11 11.1 9.22 9.1 8.36 3.37 6.4 8.9 8.11 6.84 0.91 1.86 3.75 7.04 8.68 3.45 7.42 5.98 7.5 8.46 3.24 6.5 9.41 12.1 11.1 10.1 4.57 13.1 0.91 15.9 13.3 9.73 8.62 11.7 9.54 10.3 1.11 9.4 10.1 9.49 9.77 10.8 8.34 10.3 11.8 13.7 8.66 9.93 10.8 11.1 9.11 1.86 10.3 0 9.66 8.52 11.8 10.7 11.6 9.95 9.17 8.86 8.97 5.66 8.82 9.75 8.75 10.8 11.5 9.15 5.33 7.22 9.71 8.94 11 9.16 5.85 12 8.5 1.3 5.31 12.3 1.11 8.89 7.73 9.88 8.69 8.86 11.7 5.43 7.28 6.98 9.56 10 13 7.35 9.74 10.1 10.3 7.98 10.1 10.1 8.88 9.44 10.8 8.02 11.7 10.6 10.8 9.36 6.91 10.7 8.21 8.99 8.44 9.12 6.69 9.65 10 9.54 9.99 10.6 10.4 11.8 9.28 10.3 7.95 9.16 0.91 8.23 8.78 10.8 1.97 9.19 10.3 9.83 10.2 0 2.17 9.47 7.01 10.8 3.28 4.57 7.23 5.9 6.02 3.15 6.22 11.6 8.99 4.06 13.4 1.97 11 14.2 10.7 10.4 14.7 11.1 8.63 10.7 8.83 8.49 9.08 8.92 9.99 5.82 14.2 10.7 4.72 9.53 9.33 4.25 9.63 9.25 6.88 10.2 11.3 9.56 9.13 7.74 5.79 9.19 10.6 12.7 11 9.34 0.66 11.2 10.2 8.75 9.34 9.6 0.37 10.6 7.68 4.58 8.57 9.29 0 6.81 9.87 8.11 11 1.97 10.8 3.1 6.74 8.52 8.48 9.8 1.86 11.1 9.65 8.7 1.11 7.71 6.57 8.02 9.02 0.37 5.24 10.1 12.4 9.93 1.74 9.25 10.5 9.32 7.57 11.1 9.94 10.8 6.32 10.7 2.89 10.3 6.76 11.5 7.23 4.8 9.55 10.2 1.97 9.17 4.27 9.66 8.6 7.65 8.84 8.38 9.63 11.1 8.37 6.97 11.7 8.78 9.41 12.9 9.03 7.69 3.45 7.22 6.6 0.66 11.1 8.71 7.85 2.5 3.45 8.51 9.66 7.57 7.61 9.66 2.77 12.7 8.96 13.1 9.39 4.87 11.3 2.64 9.1 6.75 9.97 8.95 7.89 4.27 11.3 10.2 6.62 10.4 11.2 7.61 8.45 9.6 9.22 1.74 8.11 3.93 9.94 6.93 5.19 9.91 8.91 13.4 8 0 11.1 3.37 10.8 9.51 11.1 2.64 6.03 9.31 5.37 3.76 3.85 11.9 9.52 11.7 1.86 1.86 0 14.5 5.22 0 9.86 11.5 7.81 14.7 13.2 13.9 10.4 10.1 6.74 11.8 11.7 10.2 0.91 10.4 4.53 4.86 7.94 6.53 12.8 7.56 7.64 0.91 0 0.37 4.14 8.39 2.26 10.4 8.77 9.16 10.8 11.4 11.9 10.9 0.66 12.9 13.3 11.6 4.73 7.94 11.9 12.3 12.9 6.73 13.2 6.31 3 4.65 11.3 5.98 8.09 3.28 4.58 10.1 3.24 9.94 8.83 3.24 9.96 3.9 6.49 9.89 6.73 12 8.99 7.87 12.3 10.8 10.8 6.46 12.7 9.79 10.8 12.3 8.02 10.7 9.51 11.2 9.68 9.38 12 8.27 9.21 16.1 15.6 15.1 12 12.3 12.6 9.81 7.77 13.9 13.5 5.67 12.1 10.2 12.5 10.8 15.1 13.9 11.5 9.55 4.4 6.02 13.1 10.7 9.86 12.7 4.48 5.33 3.19 8.3 9.04 7.14 9.23 12.4 11.2 8.5 12 13.1 11.1 9.47 9.05 11.6 3.99 5.64 9.18 10 11.4 8.22 0.37 9.23 8.78 10.1 8.86 5.57 8.32 0.91 8.25 0 9.8 0 9.18 12.9 7.99 13.5 11.4 13.3 11.9 12.1 11.3 11.2 11.1 13.4 0 12.5 13.3 0.66 1.11 3.52 7.69 6.76 4.98 3.87 2.34 0 0 1.6 2.64 2.89 3.63 0.37 5.31 6.32 5.55 4.46 3.19 4.64 3.19 0.66 0.37 8.97 3.33 3.15 9.71 5.78 8.19 1.6 10 1.3 6.59 11 0 9.62 11.3 0.37 0.91 3.45 9.52 0.66 5.34 9.7 10.6 9.11 8.11 11.4 4.65 0.66 11.3 11.2 11.7 11.4 11.2 9.89 6.63 6.26 6.18 2.71 11.7 11.3 8.14 7.44 9.16 12.1 10.8 13.8 12.1 6.23 6.94 10.6 13.4 10.5 8.21 7.02 13.4 11.9 13.5 6.09 6.05 13.5 11.1 14.4 12 4.73 10.6 11.6 10.6 12.2 7.15 6.1 15.8 11 7.64 2.42 2.07 0.37 5.67 7.28 0 3.19 8 11.8 5.96 10.4 10.9 2.17 4.55 0.66 0.66 0 9.03 13 0.91 3.45 1.6 9.16 6.34 4.8 8.76 2.83 0.91 7.22 4.21 7.66 9.7 8.65 2.26 4.94 8.57 8.74 4.27 1.86 1.74 6.07 5.48 8.61 11 1.97 7.53 7.98 3.79 9.41 8.78 9.71 6.77 10.6 8.81 7.49 8.63 5.78 7.69 5.82 1.3 4.7 6.55 1.86 2.5 8.71 6.84 4.58 3.63 7.27 8.02 3.45 4.48 5.69 4.01 6.6 8.7 5.81 1.3 10.2 8.93 1.46 6.39 11.8 8.96 2.42 2.64 4.93 3.73 10.7 5.35 2.07 0.66 6.61 9.45 11.1 11.3 0.66 1.3 2.77 3.99 1.97 9.21 0.91 0.37 7.04 1.86 7.23 2.57 9.64 8.3 4.57 0.37 1.3 6.61 3.41 9.44 5.54 1.11 7.09 4.81 5.2 4.94 4.44 7.57 4.84 8.81 10.1 4.78 0.91 1.86 7.83 0 11.2 10.1 9.46 10.3 6.47 10.5 0 4.98 4.36 9.16 12.4 1.46 7.81 8.97 0 8.03 0 1.3 7.56 12.7 11.4 2.07 9.18 6.86 3.56 5.01 0.37 6.35 2.83 9.93 3.9 9.55 0.37 4.87 8.7 3.76 9.22 9.91 2.77 6.95 3.48 0.66 2.57 7.61 9.37 9.34 6.82 3.1 0.91 5.67 6.2 6.29 0.66 5.79 1.3 2.71 3 1.3 0.66 11 6.49 8.99 5.12 1.11 9.44 9.09 1.6 2.57 11 2.71 12 3 3.37 2.71 9.61 2.34 1.6 4.84 8.76 3.37 0 5.81 1.3 5.31 0.37 2.34 3.52 9.09 1.74 12.1 4.36 3.56 10.7 12.9 4.38 0 7.61 0 10.8 7.94 9.04 5.56 11.5 11 6.3 7.15 5.62 9.12 8.94 4.51 8.39 12.3 9.29 0.37 11.6 6.33 4.87 3.76 8.51 11.1 0.91 6.44 15.1 1.11 6.69 14.3 7.17 0 13.2 7.2 5.05 9.15 13 4.25 11.2 6.8 9.24 0.66 3.33 1.6 6.21 9.03 9.54 8.58 14.1 10.4 9.23 6.14 7.26 6.08 11.3 6.2 8.43 8.37 0.48 6.42 8.06 7.14 4.01 1.97 5.6 5.68 2.07 7.88 5.16 0 0 9.55 11.1 9.56 4.83 6.07 10.9 9.3 9.82 5.62 2.5 7.59 9.04 8.18 11 0.37 7 7.49 4.57 5.39 5.53 4.06 8.86 1.86 3.82 11.7 0 1.46 1.6 8.55 9.63 2.5 8.02 1.6 0.91 4.58 1.11 11.6 3.58 7.52 12.2 8.66 6.35 8.34 10.1 8.32 5.1 0.66 7.33 4.11 9.82 10.6 12 12.3 9.22 11.3 8.77 7.91 9.83 12 7.26 5.27 8.31 8.31 3.76 5.9 9.06 1.46 6.15 9.21 1.11 9.8 8.94 8.47 8.27 10.9 9.36 1.97 1.86 11.3 0.66 12.7 6.8 9.53 9.5 10.8 8.52 9.43 9.98 7.15 9.64 10.9 5.64 8.51 9.85 8.74 8.42 9.09 1.11 12.2 7.95 11.3 3.05 15.2 7.44 10.3 7.18 8.44 8.65 0 7.69 7.73 8.88 13 9.43 13.4 11.3 10.1 10 12.3 11.7 11.9 11 9.96 8.75 1.11 2.71 3 13.3 5.2 5.55 11 10.7 11.2 2.94 10.2 7.89 9.75 13.1 11.9 8.69 11.6 7.21 8.69 11.8 7.75 11.6 12.2 12.1 13.2 8.61 9.65 11.5 9.09 11.6 1.11 2.77 6.33 6.21 5.57 0.66 1.55 10.5 4.88 9.63 3.15 6.22 10.7 7.41 1.11 7.8 0 0.66 6.69 0 5.76 3.93 7.49 8.35 8.97 8.98 8.09 1.74 9.49 7.21 8.88 2.07 8.39 0.91 1.6 11.5 4.74 1.46 6.21 5.82 8.38 7.04 4.23 8.75 1.97 5.79 7.25 14 5.38 6.04 6.2 10.4 1.11 7.63 7.32 4.01 6.76 0.37 7.03 9.39 8.27 6.77 2.5 5.27 1.46 0.91 7.9 7.36 7.98 5.34 6.67 7.42 1.6 6.21 1.11 3.1 3.52 0 8.1 1.97 7.56 1.11 2.17 1.6 8.96 3.98 9.27 1.6 8.88 13.2 5.7 2.94 10.3 4.01 8.84 7.62 3.19 10.8 0 2.26 6.37 8.26 5.5 1.46 8.7 12.6 3.41 4.62 12.7 12 9.6 9 4.46 5.76 6.87 12 0.91 2.77 4.32 12.1 11.2 1.3 6.85 3.15 8.51 7.29 0.66 6.56 12.2 10.9 9.3 2.64 8.78 0.91 5.96 7.59 6.87 1.46 11.6 10.3 4.11 11.2 0.66 0.37 0.37 11.9 0 0.37 7.68 3.37 2.94 11.8 5.14 4.73 3.37 2.26 2.42 0.37 10.1 7.37 6.72 10.9 10.5 11.5 9.18 9.75 9.09 10.5 5.87 10.8 11.2 9.52 1.11 0.37 14.7 8.55 4.23 9.08 6.64 0 13.7 6.34 3.45 11.6 0 6.02 7.88 3.19 9.11 2.31 9.02 2.5 0.91 5.06 8.83 3.33 5.02 14.3 7.81 9.82 7.39 1.3 5.92 1.74 3.1 7.92 7.42 1.6 4.83 3.45 4.04 0.66 8.83 0 4.67 6.51 3.59 4.95 9.7 1.21 9.15 9.55 0 10.1 9.49 3.76 1.46 11.9 3.24 10 5.62 7.89 8.77 2.83 3.69 8.39 6.8 6.82 5.03 4.7 4.11 6.65 5.43 7.46 5.52 8.51 10 6.29 2.07 13.3 1.74 6.61 7.99 7.58 7.39 7.24 4.06 6.71 4.57 2.26 8.58 7.77 4.58 0 6.75 2.5 10.3 3.05 9.75 8.32 4.04 5.9 6.26 9.18 9.92 0.66 8.43 1.11 4.72 8.52 5.62 8.86 7.89 8.03 1.3 9.61 13.1 7.88 0.66 6.61 0 5.14 5.43 5.39 4.83 9.3 0.37 4.94 5.19 0.37 3.41 5.11 8.03 4.95 1.46 11.8 7.3 6.06 10.7 0.66 1.86 4.27 1.11 8.13 3.73 2.26 6.83 3.63 9.27 0 1.46 0 1.19 6.96 1.3 6.04 3.33 8.57 8.22 5.69 4.86 0.37 3.41 7.81 3.28 3.56 0.91 5.56 0.37 7.2 4.23 8.04 6.35 8.42 10.3 10.1 3.28 12 1.11 12.6 0 11.6 3.28 9.25 13.5 12.5 13.3 4.36 0.91 11.7 13 13.1 1.86 4.01 5.82 10.6 4.9 12.2 5.43 1.3 8.57 8.72 6.62 6.31 12.8 12.4 8.07 0 13.4 10.8 12 9.7 9.09 0 7.45 9.69 7.51 13.1 4.95 14 14.5 12.7 0.91 9.09 9.6 12.1 0.37 8.72 8.31 8.77 1.11 8.75 8.16 11.8 11.6 10.2 5.98 10.6 5.62 2.5 7.4 8.4 11 0 5.02 9.09 8.38 9.68 9.14 11.1 8.73 5.48 0.66 8.99 2.83 7.09 7.55 5.63 12.1 2.64 8.08 6.98 10.7 0 7.17 10.7 10.3 11.4 14.3 8.28 5.41 8.86 8.03 5.85 0.66 6.11 8.27 7.09 11.2 7.99 8.78 0.66 7.23 8.89 3.22 7.4 6.65 3.69 7.03 3.79 3 6.64 8.07 5.31 7.58 5.38 4.32 8.4 3.62 11.9 7.15 0.66 2.34 10.4 3.63 3.24 0.37 4.81 6.11 7.56 3.63 4.86 0 4.37 0 7.34 0.66 2.5 3.24 11.5 1.11 5.52 4.95 7.4 3.1 6.51 3.52 2.26 4.21 3.4 10.5 4.53 7.83 7.92 1.11 9.76 1.74 2.17 7.27 5.36 9.34 9.53 1.46 7.56 11 9.98 6.32 0.37 9.15 0.91 0.91 2.79 0.91 5.72 9.15 3.1 10.3 8.26 4.99 0 2.89 7.8 10.3 7.66 0 9.34 6.49 9.15 0.66 2.17 5.37 0.91 4.7 10.1 5.02 8.17 0 8.28 10.7 11.8 8.88 9.93 11.2 9.31 1.6 8.61 10 4.55 9.26 1.74 3.38 12.4 4.06 6.28 9.55 9.05 10 9.45 8.9 11.9 3.93 10.2 9.47 0 9.96 14 13.7 11.3 5.79 7.77 0 2.64 11.8 10 12.6 11.9 3.66 5.46 10 6.48 11.2 4.75 12.5 14.2 13.6 13.9 12 12.1 11.9 1.86 6.23 4.11 8.93 7.37 10.4 11.6 8.49 6.71 8.5 11.2 10.4 10.4 8.91 9.47 7.06 8.91 4.23 10.9 9.34 5.57 2.77 11 8.08 9.01 1.46 9 8.81 8.2 10.2 10.8 6.88 11.4 10.4 10.9 6.11 7.15 9.01 10.4 12.7 6.25 3.66 6.65 11.9 10.1 7.39 0 10.4 8.95 1.6 6.72 0 7.72 7.03 7.22 3.96 11.3 6.17 1.49 9.2 8.02 6.41 10.9 9.36 8.74 3.56 11.9 11.6 0.66 10 11.4 10.1 8.14 10.3 8.91 5.77 4.91 13.4 9.07 10.2 8.27 9.46 8.44 10 12.8 1.3 8.32 9.74 0 11.8 11.7 12.1 10.3 9.61 7.08 9.02 10.6 10.3 9.18 6.11 9.02 10.8 9.75 1.86 6.25 8.25 8.8 11.1 9.54 8.6 10.9 10.4 10 4.09 0.91 9.07 14 8.02 9.38 8.41 8.95 7.21 12.9 8.68 7.36 11.5 9.7 8.77 5.43 9.68 6.93 9.28 13 13.4 9.89 11.9 9.35 11.2 13.4 6.19 7.62 12.3 8.11 0.37 8.65 8.31 8.32 7.52 10.1 7.29 9.19 5.63 7.53 11.4 10.1 10.6 11.8 2.57 1.97 8.25 11.2 11.9 8.58 9.46 4.83 11.5 12.6 0 0.91 9.81 6.86 9.35 12.3 6.2 12.2 7.41 7.27 8.3 6.7 2.94 6.99 7.82 7.89 9.14 0.66 7.95 10 0.37 10.1 9.86 9.74 11.9 9.88 3.41 2.26 8.69 4.72 5.26 10.4 10.8 4.57 10 7.52 9.77 0.66 0.91 10.8 13.2 0 6.9 5.03 8.15 10.4 2.07 1.11 5.86 4.83 4.69 3 8.97 1.46 0 3.79 9.1 8.62 5.16 9.66 9.57 4.5 6.78 2.6 1.84 5.16 4.93 12.2 8.1 0 8.18 3.45 9.71 8.15 6 8.57 3.63 1.11 8.3 10.3 5.5 1.46 5.27 1.3 4.84 1.97 6.35 8.49 0.37 0.37 8.22 9.3 9.06 5.48 13.5 2.83 7 9.79 6.32 6.87 3.69 5.45 7.38 6.55 4.25 4.21 7.99 5.56 2.64 4.23 5.56 0 5.5 7.55 4.24 3.37 0.91 0 1.86 3.82 0.66 3.15 7.75 3.19 8.9 4.77 4.87 6.35 3.19 1.46 7.39 11.5 1.11 0.66 0.91 0 2.42 0.91 7.76 0 2.57 6.78 5.42 2.5 2.34 10 14.2 8.78 8.49 0 7.29 11.5 12.4 9.2 2.07 7.05 3.32 1.46 9.22 14.2 8.92 8.6 7.74 9.3 5.36 11.2 9.68 10.3 7.25 11.9 14 9.41 4.1 7.99 7.44 10.2 10.9 9.12 8.74 8.3 0 10.6 7.33 10.1 14.2 2.89 0 8.7 9.24 7.42 9.25 9.33 10.6 6.35 9.73 4.34 6.17 6.01 3.69 1.6 8.88 8.03 6.2 4.21 9.81 11 3.33 4.21 14.5 12.7 8.59 10.3 5.67 7.49 14.4 8.49 0.66 13.1 12.8 10.3 9.26 11.1 12.1 5.19 3.73 5.37 10.2 9.27 9.72 9.11 8.49 1.46 10.2 11.5 14.2 10.2 11.2 10.4 11.4 4.44 12.9 6.66 5.37 11.6 11.9 10.3 12.4 8.62 12.1 9.71 9.91 9.13 4.55 8.93 8.55 7.89 8.74 13.2 9.3 10.6 10.8 10.7 12.2 11.3 10.6 10.1 10.1 9.91 3.28 10.3 10.7 10.1 9.93 11.6 9.5 11.4 11 10.7 9.81 11 11.5 12.2 10.9 10.4 12.2 9.71 9.42 11.1 10.7 11.5 9.65 11.7 9.51 11.8 10.7 11.6 9.72 10.2 7.52 13 13.9 11.2 10.7 0.37 5.04 7.95 6.82 7.98 0.37 1.3 3.33 0.66 9.78 7.64 5.37 7.58 10.7 9.89 12.3 15.1 11 4.4 10.3 8.11 1.3 10.2 8.31 11 4.55 12.3 1.46 11.6 10.8 7.73 9.13 10.6 10.2 10.8 11 9.04 9.5 10 6.78 9.02 9.75 10.4 0.91 9.55 9.3 10.1 7.29 0.66 11.7 14.2 6.41 10.5 11.7 6.33 10.1 5.89 6.1 9.8 3.99 2.34 8.51 11.1 10.4 13.1 10.4 10.7 8.25 11.2 9.85 1.46 9.09 12.8 3 8.01 10.1 9.71 8.24 8.49 12 11.5 9.12 8.98 4.01 10.8 5.07 7.8 8.18 10.1 7.43 13.5 2.17 0.37 11.7 6.97 6.23 3.76 1.74 2.5 9.24 11.1 9.56 9.84 11 8.54 1.11 9.5 7.43 5.73 1.6 12.6 9.81 12.1 1.3 9.02 0.37 12.7 7.35 0 3.48 0 6.81 4.3 0.91 4.27 9.5 12.8 9.64 13.2 9.17 10.7 9.1 11.9 9.07 4.49 9.69 8.89 8.18 8.35 0 9.59 4.97 4.06 10.3 8.04 6.06 8.44 8.42 0 4.42 9.74 8.65 5.87 4.94 2.89 0.37 13.5 10.8 9.47 11.3 8.93 6.77 11.6 9.89 6.33 3.28 3.85 6.42 9.09 0 0.66 9.88 10.8 13 7.02 6.24 7.73 8.46 8.82 0 5.36 4.46 7.83 11.7 9.31 7.93 10.5 7.94 0.91 10.6 6.4 10.9 7.48 1.3 3.56 6.19 11.7 9.37 4.88 4.57 9.7 3.89 3.96 2.34 8.48 9.98 6.7 9.46 14 7.6 7.77 11.4 0 0.37 4.46 14.6 6.96 12.6 3.85 11 10.9 8.92 10.5 10.6 6.88 10.1 10.2 7.89 9.42 9.21 7.09 13.5 9.27 4.93 10.6 13 4.67 6.31 11.2 8.37 10.9 4.14 10.3 8.88 6.02 10.7 9.12 6.42 9.1 4.53 13.4 5.92 4.91 11.8 10.5 8.11 0 4.14 1.11 8.77 8.78 10.8 11.3 9.95 10.9 8.72 8.61 1.3 2.51 3.52 13 2.17 7.27 11.9 6.12 6.62 0 11.4 10 11 11.5 10.6 11.8 11.5 10.6 11 12.9 7.72 0.91 13.5 5.02 6.48 1.46 9.02 10.3 10.4 11.9 10.3 10.9 9.15 7.73 8.08 7.75 8.51 8.62 11 8.48 9.53 4.49 8.32 8.67 10.2 9.46 11.4 9.97 7.79 8.79 9.13 9.72 10.8 7.17 8.34 12.1 8.21 9.5 8.81 9.83 10.3 9.6 10.7 12.5 9.63 10.7 3.9 7.55 5.85 10.3 4.93 8.36 9.91 10.4 11 6.85 8.11 10.9 4.01 8.18 9.68 9.42 10.1 10.2 8.61 10.2 8.61 10.5 8.76 9.41 10.3 12.4 11.3 9.92 10.6 0 9.6 4.25 2.73 3.73 8.49 8.52 7.84 9.88 9.9 12 8.3 9.67 11 9.28 9.38 10.7 10.9 8.52 8.62 8.38 7.68 8.96 8.11 13.2 12 11.2 10.5 8.98 9.17 9.94 9.77 9.25 9.71 10.4 9.25 11.3 8.24 9.27 10.8 10.6 9.48 10.2 6.05 9.38 11.9 8.51 9.42 10.3 10.1 7.85 8.88 7.73 9.34 9.51 12.3 9.42 10.6 9.96 10.2 8.72 11.8 1.11 9.32 10.2 9.29 9 11.7 7.89 9.75 7.97 10.6 6.88 7.5 4.04 9.59 5.9 9.26 6.95 7.76 8.16 9.2 10.5 10.3 8.04 8.85 9.42 9.91 11.2 8.66 11.7 8.47 11.6 9.33 8.27 5.79 9.1 8.84 10.7 10.5 7.1 8.45 9.45 1.46 0.37 2.42 9.65 1.46 8.9 7.46 7.63 8.92 10.9 9.31 9.09 10.4 1.74 10.9 9.73 7.41 8.19 10 8.89 12.5 10.2 10.1 9.39 6.33 8.5 9.42 7.83 10.2 11.3 8.49 10.5 11.1 8.17 9.34 9.45 10.1 5.11 5.7 3.99 11.5 10.3 10.9 9.65 8.46 6.6 6.48 10.1 10.4 9.03 10.8 7.98 10.2 10.4 4.49 1.46 9.98 10.3 9.69 8.65 10.9 11.2 8.59 9.55 8.84 6 11.1 7.2 10.2 3.52 8.13 10.8 0.37 8.56 9.42 6.51 8.83 8.1 5.27 10.1 9.61 2.17 10.1 5.64 9.69 9.23 6.93 10.1 10.3 11 11.4 4.64 11.9 4.44 11.9 5.42 5.7 3.76 11.6 9.68 7.34 6.74 9.4 9.3 9.87 9.95 9.76 5.67 10.3 0.37 10.1 8.99 9.33 9.11 10.3 6.61 6.14 10.2 8.93 11.1 2.89 11.4 10.8 7.67 12 8.75 7.51 7.54 7.46 8.35 11.8 3.73 8.83 13.2 8.77 10.2 2.71 10.2 8.27 8.81 11.7 10.5 12.4 5.16 10.2 9.85 9.39 9.87 6.65 7.95 9.74 8.68 9.36 6.9 10.5 10.8 7.64 10.2 11 10 11.8 9.96 8.21 7.92 10.6 8.52 10.5 11.6 1.46 10.6 8.74 8.99 5.72 5.62 10.8 9.99 8.24 0.37 10.7 10.7 8.48 11.3 3.24 9.04 7.54 10.6 11.8 8.38 10.2 8.98 11.3 8.65 9.11 10.3 12.1 12 10.9 8.42 11.3 5.21 7.71 6.4 9.32 10.5 10.5 11.8 8.65 8.76 9.35 8.8 9.56 10.8 6.67 8.23 7.86 5.81 9.14 9.83 8.61 9.46 8.36 7.72 8.55 10.4 8.8 9.55 8.45 8.09 11.8 4.8 1.46 8.52 8.37 7.16 6.38 11.4 11.2 11.4 9.61 10.6 10.2 9.37 11.2 9.79 8.2 7.77 11.2 9.49 11.5 7.28 11.1 9.83 10.5 10.4 12.5 12.4 10.5 10.5 6.85 9.99 9.73 12.1 8.02 10.6 10.1 9.04 12.6 9.11 3 8.31 10.2 10.6 9.2 9.14 12.2 7.34 10.7 7.46 9.1 10.8 11.4 10.9 10.8 9.04 11.2 8.44 11.4 11 10.3 6.58 9.62 8.17 11.5 9.17 9.41 9.31 7.52 9.92 9.42 7.95 10.3 8.46 11.1 8.62 12.8 9.18 8.6 4.8 4.87 8.25 8.47 6.48 7.22 9.31 8.84 9.8 10.3 9.32 10.4 12.6 9.53 7.09 8.95 0 9.67 11.4 8.61 10.6 7.21 11.6 9.61 2.34 10.5 10.2 8.59 10.1 12.2 8.14 10.3 1.11 8.96 4.58 3.05 1.86 7.72 10.4 4.36 11 10.4 8.65 4.03 9.74 9.55 8.98 10.8 10.9 6.7 3.48 8.54 11.2 0 8.06 11.3 8.65 10.2 5.88 10.7 11.8 7.56 7.07 4.98 8.03 11.5 8.91 10.5 10.6 8.15 8.3 10.1 8.57 9.52 7.82 9.73 9.73 0.91 0 8.18 5.3 10.7 11 10.9 8.68 13.1 10.6 0.91 10 8.63 10.9 6.37 11.9 1.6 9.46 11.7 13.8 11.1 9.06 10.8 11.4 4.4 0 11.3 8.83 7.89 11.9 12.1 10.4 8.28 6.3 7.85 6.35 3.56 11.7 0.66 12.8 5.06 11.4 10 8.02 8.94 10.6 11.8 2.17 9.93 10.7 16.6 3.33 11.8 11.7 10.2 8.11 7.88 6.47 8.11 10 10.6 8.23 8.57 8.04 9.7 8.31 8.4 11.9 7.74 10.1 9.69 7.98 4.84 9.76 11.1 10.2 11.2 10.1 9.71 0.37 9.8 10 11.2 0.37 9.37 8.86 0 14.7 9.31 5.79 0 7.24 8.45 6.23 8.28 9.35 14.5 11.1 11.6 8.3 9.43 9.25 10.6 6.11 10.9 6.33 7.8 5.04 9.33 8.45 8.08 3.24 9.46 10.1 3.59 7.41 7.47 7.24 9.28 11.7 9.45 13 4.06 8.27 8.88 8.59 4.88 6.51 1.74 5.65 5.44 11.2 5.33 11.6 12.2 4.01 12 10.6 8.58 13.7 9.65 8.46 9.95 11.4 3.33 9.84 0.66 11.9 4.49 11.8 3.21 8.73 2.91 3.85 12.7 11.7 9.06 9.53 11.9 8.15 7.75 8.42 5.05 4.75 4.57 1.11 9.27 12.5 6.32 6.29 4.53 2.5 11.4 3.79 9.2 7.2 0 4.94 11.7 11.7 9.92 9.82 8.92 8.51 8.07 10.2 8.39 8.01 8.65 9.48 9.76 9.75 5.21 9.77 9.68 6.07 2.5 6.73 8.77 8.61 3.56 7.17 5.81 4.51 8.12 4.34 10.8 8.69 3.11 9.83 9.44 10.4 1.3 10.9 7.27 7.81 7.37 9.17 1.82 8.22 8.08 7.59 8.24 7.85 9.44 10.6 10.8 10.2 0.66 9.02 9.39 7.35 7.91 9.59 9.92 8.21 3.82 4.04 9.47 9.05 11.7 10.1 10.6 2.26 5.14 7.99 7.24 7.85 11.4 10.2 7.2 9.55 9.7 2.71 2.71 9.94 9.98 11.2 10.5 9.94 10.8 11.2 2.94 10.8 9.9 2.07 1.97 10.8 9.29 8.29 10.1 5.84 7.83 5.76 3.28 9.26 7.72 5.17 9.73 6.51 11 10.4 7.85 8.68 2.57 0 11.6 11.4 11.6 10.3 6.76 8.93 8.24 0 9.38 8 11.4 11.9 8.03 9.2 11.2 8.9 10 10.1 4.86 11 7.81 9.4 7.27 9.8 8.78 10.2 8.71 9 7.28 11.2 8.56 5.19 11.4 8.37 10.6 9.44 9.02 5.51 10 6.47 7.73 8.84 7.95 6.91 6.76 4.69 9.04 8.52 7.43 9.45 2.26 9.01 8.37 8.48 9.15 10.2 8.37 8.79 11.3 9.16 11.2 6.52 11.1 8.77 4.14 8.38 8.46 10 7.12 7.01 5.64 10.3 8.23 0 7.96 10.4 6.03 9.46 14 2.26 9.98 0.66 9.84 10.1 9.26 6.65 3.32 8.99 10.6 7.45 10.9 12.1 5.1 6.72 5.03 7.88 12 8.7 2.07 10.2 9.73 11.1 8.67 11.2 6.6 10.4 10.1 9.62 7 8.37 10.6 8.61 9.19 0.91 9.94 10.3 8.31 10.1 7.25 6.37 3.24 9.34 2.57 11.9 10.1 1.3 9.3 7.98 8.05 0.37 10.2 4.88 9.35 1.97 8.61 0 7.37 12.9 9.62 12.6 6.36 8.71 9.64 7.93 7.19 10.7 8.62 12.1 8.83 8.98 8.54 10.9 13.5 8.24 9.08 9.36 7.72 8.55 5.06 8.7 10.9 9.91 7.72 8.36 7.78 7.74 7.54 8.95 8 9.26 3.99 7.95 10.2 7.88 8.74 11.1 8.71 7.68 7.46 4.21 8.89 6.96 0.91 7.02 0 8.45 9.03 5.7 0 10.9 8.88 11 10.8 6.27 8.67 8.33 11.2 7.93 10.7 4.9 10.4 8.15 8.18 4.49 8.98 1.74 9.45 9.68 0 10.6 9.02 9.28 10.4 10.2 11 7.41 8.81 3.33 11.4 8.97 10.3 10.1 9.48 7.52 10.7 6.76 8.73 7.92 6.19 7.41 9.03 8.27 10.1 8.31 11.1 7.77 8.83 8.82 11.1 9.06 7.53 9.41 8.64 9.5 6.41 3.9 8.05 8.87 3.05 8.59 10.2 7.73 9.17 0 9.69 6.45 10.4 9.48 9.89 10.3 8.89 12.2 9.3 7.3 10.6 7.39 6.62 7.57 11.2 9.59 11.5 9.09 12.8 10.8 8.21 8.55 5.7 8.62 10.8 10.4 3.24 9.27 10.9 10.3 11.6 7.69 9.12 5.81 10.5 10.7 8.91 9.5 9.6 8.2 8.65 9.98 8.78 7.46 8.23 7.44 7.02 11.5 8.65 10.8 5.33 9.35 9.27 9.42 0 8.54 8.8 8.4 7.51 8.09 11.1 8.09 9.21 10.3 10.8 1.6 8.78 7.17 9.4 9.82 6.67 11.2 7.14 9.72 4.72 10.2 12.1 7.38 7.28 10.7 7.4 7.71 9.79 11.1 6.53 11 13.1 11.6 5.55 8.71 7.99 11.4 9.65 7.54 7.86 8.99 10.5 10.8 5.42 10.4 7.32 7.97 8.38 9.3 8.79 4.77 10.8 0 0.91 10.9 3.52 9.93 8.13 5.87 7.01 8.37 10 10.1 10.1 5.34 5.47 8.85 5.82 9.3 8.74 8.09 11 7.13 11.7 9.31 9.24 7.97 10.8 9.72 6.96 8.93 6.63 7.67 8.72 7.32 5.94 7.49 9.35 3.15 7.65 3.56 11.9 5.72 6.71 6.1 9.88 6.86 9.25 10.8 6.64 9.2 10.4 10.4 6.36 6.91 5.51 7.49 1.11 7.73 8.99 9.89 8.14 7.94 9.87 0.37 11.4 8.74 9.99 8.99 8.12 7.93 6.06 11.2 9.22 9.79 8.07 10 8.26 8.34 10.4 8.94 9.6 9.05 9.64 0.37 8.08 9.32 8.67 9.72 4.65 7.92 8.01 7.69 7.47 5.24 2.71 9.25 11 9.51 8.39 5.51 8.62 8.03 9.84 10.2 9.65 8.43 11.5 4.11 7.27 10.7 9.57 9.16 8.34 8.53 8.4 11.7 10.5 10.8 10.3 7.93 5.94 5.52 9.11 9.75 8.35 7.66 8.26 9.46 10.6 1.86 6.4 10.4 8.2 8.03 13.3 7.83 8.19 11 7.38 5.99 9.95 11.3 8.05 8.44 3.76 10.3 8.97 9.86 8.46 0 8.71 10.8 8.67 8.45 1.46 9.37 6.79 10.3 4.67 10 10.5 6.41 11.6 6.99 10.3 5.16 9.51 7.51 10.1 6.21 7.78 9.39 6.86 8.88 9.59 0.91 10.5 9.12 7.57 11 7.6 9.59 8.98 9.07 9.02 8.74 9.93 3.82 9.02 10.4 9.26 6.71 9.4 12.7 9.7 4.72 9.41 9.81 9.84 3.45 7.13 10.7 10.9 9.9 9.91 6.35 8.74 8.51 9.31 11 8.59 11 6.34 8.74 7.16 9.05 8.98 3.19 10.7 9.68 11.2 8.46 10.6 9.36 10.2 10.5 8.84 7.43 8.73 7.86 9.94 8.15 7.55 1.86 7.88 9.2 6.26 4.16 0 9.71 10.6 3.1 8.35 8.37 9.87 10.8 6.16 9.33 8.7 6.89 9.12 8.84 9.38 1.46 10.2 9.01 6.16 8.32 8.64 9.7 11.3 10.1 11.6 9.85 9.6 8.84 7.64 5.94 9.81 8.57 8.62 10.6 7.78 4.73 8.44 7.7 10.1 9.46 8.69 10 8.25 4.55 8.6 8.78 6.86 8.83 9.6 10.3 5.91 7.27 9.83 10.3 10.4 7.89 9.05 9.89 9.66 7.66 4.78 6.46 9.8 7.18 0.91 2.57 10.3 10.8 5.11 6.56 11.7 3 10.8 11.5 10.6 8.98 10.1 10.2 8.7 10.7 6.19 8.23 10.7 11.8 5.46 4.09 3.33 7.71 8.69 9.25 5.17 0.37 2.17 8.13 3.69 8.75 8.38 10.1 0 8.03 12 9.29 10.7 8.76 10.8 7.92 1.46 9.71 10.9 9.11 10.2 8.63 6.94 3.28 7.56 10.5 9.59 1.86 7.09 7.01 6.06 0 4.97 0.66 10.2 7.02 3.73 9.05 9.71 7.31 4.36 0 8.12 9.86 6.11 5.11 8.94 1.11 3.19 6.49 6.19 9.36 10.3 8.14 9.87 7.98 0.37 8.88 6.08 9.29 8.47 11.6 0.91 10.2 9.69 6.35 5.72 11.2 11 6.95 10.6 7.21 11 8.91 7.4 1.46 8.9 8.32 10.5 8.87 8.43 9.75 11 5.72 8.13 11.3 4.97 3.52 8.07 7.07 9.36 7.49 7.74 10.2 11.1 9.42 8.48 9.98 11.3 10.1 10.1 10.5 7.82 11.5 7.88 8.59 7.76 7.05 9.38 7.51 4.62 7.38 5.7 10.1 8.66 11.5 9.67 7.44 10.5 8.27 9.36 10.7 10.5 10.8 11.2 9.46 8.63 9.37 8.81 6.49 11.2 10.8 10.4 9.76 8.82 8.99 9.58 11.1 10.1 6.09 8.96 8.49 7.93 10.1 7.97 7.03 9.99 8.32 7.86 8.57 9.9 11.6 8.8 8.08 9.29 6.3 12.2 8.07 10 4.23 9.46 9.91 11.6 3.59 11.2 7.92 11.7 9.46 9.17 7.24 8.1 10.6 5.7 11 7.55 10.1 5.35 7.47 7.83 9.88 9.16 9.83 9.15 9.45 8.83 7.36 5.54 7.33 8.69 9.38 3.15 8.89 13.2 9.61 6.9 9.12 7.93 9.49 11.1 11 10.1 10.3 9.71 10.4 8.77 8.98 9.14 10.1 12.2 9.64 7.53 8.87 8.6 10.4 8.6 12.5 10.3 8.97 8.62 10.6 8.08 4.94 9.94 9.1 6.52 9.55 9.55 4.67 11.1 8.92 9.47 6.63 9.27 0.66 9.64 7.36 9.08 7.68 8.68 6.55 7 8.6 8.56 8.62 10 9.11 7.96 5.54 11.7 7.59 6.11 9.33 8.44 10.6 8.12 9.12 3.52 6.75 2.34 9.39 11.6 4.09 8.62 6.96 6.94 5.32 2.77 6.83 6.07 9.11 1.11 8.06 9.11 9.27 3.52 9.65 11 0.66 10.4 7.91 8.13 11 10 9.16 10.6 10.4 11 9.12 6.39 9.9 6.61 10.1 4.55 10.3 6.06 9.55 11.9 9.59 8.32 9.57 12.1 9.11 10.8 10.3 1.42 10.2 6.79 9.8 7.41 10.7 3.05 9.48 10.3 9.97 10.2 9.67 1.3 8.95 6.53 10.3 8.97 5.71 6.52 7.69 10.9 13.3 5.67 0.37 13 12.7 7.95 10.3 5.95 10.9 9.5 8.99 6.43 9.18 9.96 10.7 7.28 9.46 9.38 10.7 8.53 11 9.96 7.72 9.11 2.64 11.4 8.25 4.42 9.61 0 10.3 5.41 11.8 10.5 8.75 7.18 9.68 11.3 4.84 2.89 9.75 10.8 10.7 9.88 11.4 10.4 5.4 10.9 11.1 8.57 8.56 6.84 0 7.77 0.37 11.3 10.1 10.2 6.41 11.4 10 10.1 11.6 9.06 10.5 10.6 2.77 9.07 8.43 5.72 10 3.44 1.21 6.49 7.52 5.32 6.38 2.07 3.63 4.62 3.76 7.2 4.54 4.11 4.18 10.5 3.37 2.34 2.77 4.06 2.57 9.46 0.66 7.03 6.5 5.49 4.58 5.28 4.72 4.04 2.07 4.01 9.47 3.05 4.86 3.69 8.33 2.64 1.11 8.83 1.3 0 3.24 5.17 10.5 5.79 8.42 9.93 2.89 9 12.3 2.07 3.37 7.84 7.51 12.6 0.37 6.07 9.71 3.79 9.89 10.6 4.72 11 9.4 5.54 11.2 10.7 7.8 9.77 13.1 10.4 11.1 9.76 1.6 0.37 9.08 9.1 9.8 8.11 9.29 9.31 8.64 9.09 10.8 3.13 6.06 4.53 8.81 6.28 9.19 5.81 3.19 12.7 4.3 10.9 8.84 4.32 15.9 3.69 8.6 5.21 10.2 5.55 8.79 10.8 9.18 9.95 5.76 12.4 10 7.57 11.5 9.17 8.75 5.61 2.83 7.4 2.77 9.23 0.37 11.1 4.58 10.9 10 17.3 8.22 8.74 10.7 9.39 11.3 9.84 10.9 7.78 9.68 10.6 8.98 11.2 10.3 10.9 7.62 5.51 10.9 10.9 11.7 11.4 10.3 10.3 12.4 12.1 7.42 12.9 10.9 11.5 6.09 10.7 11.9 4.81 11 10.3 8.88 8.22 11.4 10.6 6.12 9.25 11.7 11.2 5.73 9.33 7.93 9.08 8.6 5.98 5.67 12.7 8.1 8.98 9.09 8.48 10.4 11.1 9.69 8.86 11.1 8.55 9.43 11.5 4.98 11.4 9.84 9.86 8.49 9.14 7.85 8.87 6.8 10.4 9.85 11.1 11.3 9.96 11.4 4.91 5.32 9.96 9.46 11.8 0.66 6.3 4.36 9.59 5.94 10.5 5.11 11 3 3.19 10.3 7.51 3.19 7.69 10.4 7.7 8.07 10.1 10.8 11 4.25 10.4 11.4 9.63 9.61 9.33 10.5 8.08 0.37 9.44 7.33 7.33 11.1 8.56 10.7 1.46 10.3 10.1 9.07 11.6 10.4 8 4.16 10.5 9.1 9 10.9 10.5 10.2 11.8 9.72 2.34 10.4 9.22 1.46 12 10.7 11.8 2.71 11 8.62 6.52 10.9 3.59 11.3 0 9.97 2.34 7.65 8.05 9.81 12.3 2.34 8.01 7.26 11 6.56 9.64 9.5 9.77 9.62 12.1 2.83 8.5 4.86 9.74 10.1 8.68 8.76 8.5 4.36 8.71 9.24 10.3 10.9 11.4 9.5 12.6 10.8 11.3 11.6 12.4 8.04 9.85 8.47 10.4 9.71 10.4 6.95 12.3 9.05 2.64 8.87 6.16 10 7.24 10.7 5.95 2.07 5.77 10.7 9.58 8.78 11.8 9.53 10.8 11.4 9.03 6.87 11 9 10.9 11.2 6.28 9.81 6.22 9.39 11.4 11.8 2.77 8.8 7.25 8.87 10.6 12.2 7.74 8.47 11.2 8.54 4.91 8.91 8.67 6.5 9.32 9.15 10.5 5.1 11.9 10.3 7.14 9.93 7.23 7.34 10.5 6.03 3.99 12.3 7.76 11 0.37 4.04 9.18 11.1 7.29 4.25 4.58 9.18 13 5.06 7.52 8.66 6.83 6.48 8.53 6.12 7.58 7.68 2.42 3.24 10.6 8.81 6.75 6 5.88 8.78 7.78 2.17 0.66 10.4 9.26 0 4.3 7.57 9.35 9.47 11.3 7.3 12.6 7.32 9.26 6.24 6.99 9.07 4.81 10.4 9.4 10 8.33 4.14 2.26 6.56 5.35 9.21 9.19 11.3 9.96 0 9.06 9.49 5.16 6.59 6.27 7.68 8.86 1.97 7.13 11.2 10.4 2.34 9.39 9.55 7.96 9.26 5.73 10.1 8.65 9.94 8.73 4.75 3.48 7.81 11.1 9.23 3.66 10.4 11.6 8.69 1.11 9.2 0.37 10.6 1.46 2.34 4.16 9.1 8.78 10.9 9.25 6.79 11.8 9.7 8.92 9.88 9.48 12.5 5.93 9.38 8.8 8.5 2.42 3.41 2.42 1.86 4.18 10 7.17 10.6 10.1 10.1 6.35 6.02 6.95 7.31 8.36 11.2 4.09 7.91 8.95 6.88 7.04 6.95 6.2 8.11 4.97 8.9 9.25 3.79 8.85 6.84 8.15 6.51 11.9 9.31 12.2 5.84 8.09 9.19 10.6 10.4 7.61 14.7 8.03 7.03 10.4 6.46 3.37 4.81 7.54 0.37 6.8 9.78 0.37 10.5 9.32 8.34 9.89 8.32 10.3 9.69 10.3 7.12 8.37 5.67 0.91 9.36 10.1 7.43 7.48 9.57 9.01 8.01 10.3 10.7 9.09 7.81 6.92 9.05 0.66 7.63 10.4 9.69 8.82 9.24 3.45 7.9 1.6 12.7 8.55 7.71 9.74 8.66 6.72 9.03 4.21 10.3 8.56 8.92 12.3 9.89 4.75 5.75 6.93 11.1 6.22 11 12 9.76 9.7 11.4 8.64 9.26 8.21 6.39 7.14 11.6 7.76 8.17 8.41 13.2 9.85 7.78 4.53 8.6 7.34 7.72 4.53 7.9 6.77 6.71 8.93 8.53 7.98 5.7 9.4 6.55 4.64 9.5 9.38 9.2 9.04 10.2 7.35 10.2 8.3 9.98 9.38 7.38 8.31 1.97 7.75 8.63 6.52 1.3 8.04 11.2 7.55 6.31 9.57 9.12 8.92 3.88 3.56 8.19 1.97 9.66 7.1 4.69 6.94 8.56 10.4 7.44 7.9 9.71 9.54 10.4 9.16 7.81 9.98 6.09 11.1 11.1 10.9 9.54 10.6 9.5 3.37 7.6 7.18 9.02 9.89 5.06 9.26 0.66 6.99 11.7 6.67 10.7 9.55 4.81 1.86 9.23 8.5 6.2 7.04 11.1 13 8.31 1.74 10.1 10.1 11.1 0.91 9.29 0.91 2.77 5.92 5.82 8.64 8.91 4.95 10.9 9.45 8.38 10.7 8.4 8.93 7.8 5.08 11 12.3 11.7 10.2 4.27 9.02 11.5 10.2 10.2 7.34 9.78 12.1 10.1 9.41 7.09 10.8 9.88 13.1 9.83 3.63 10.8 9.79 7.7 8.84 9.58 10.3 12 5.57 11.2 9.74 10.1 8.66 10.7 8.7 7.35 5.83 6.62 6.88 4.45 9.79 7.57 8.36 8.14 8.34 10.6 11 10.4 8.83 3.1 9.38 9.83 9.78 10.3 9.95 9.76 10.3 10.9 6.41 10.2 1.6 0.66 11.8 11 9.17 11.5 9.78 11.3 6.69 0 6.9 10.7 10.5 12 9.53 11.3 7.83 12 11.4 5.6 9.92 10.7 8.74 11.9 13 11.3 6.39 7.61 9.04 11.5 12.1 12.4 4.88 7.32 6.12 6.91 6.81 7.74 10.7 4.93 10.4 11.7 10.5 11.4 10.8 11.3 9.88 10.7 11 11 11 10.8 10 9.77 9.66 10.2 0.66 10.4 6.39 11.2 9.96 6.21 8.48 10.6 10.5 3.85 8.35 5.16 10.1 8.57 7.59 9.57 9.46 5.47 8.59 8.83 11.1 11.8 7.86 10.4 9.64 9.14 11.3 9.69 4.42 0.91 9.02 9.22 10.8 1.3 4.94 11.5 9.05 2.83 9.73 7.84 10.3 12.3 1.11 5.54 10.8 9.46 11 8.49 7.89 0 0.37 0.66 12.9 5.36 7.12 1.3 10.9 11 0 7.58 8.24 4.42 10.1 8.96 4.11 7.03 11.1 9.35 8.45 11.8 10.2 4.67 4.36 12.7 8.55 9.77 8.81 7.18 6.98 9.3 10.3 10.5 0.14 9.2 10.5 7.49 4.36 0.37 11 6.67 9.45 9.53 11.1 16.4 8.52 9.69 0.91 10.2 2.94 0.91 10.7 2.26 10.6 9.42 8.13 3.96 10.6 2.07 10.3 11.3 10.1 10.6 9.67 3.69 0 9.92 9.22 2.34 7.94 7.31 9.64 7.11 9.16 10.7 0 8.7 1.6 0 8.86 11.8 6.34 10.2 10.8 10.6 0 10.2 8.51 10.4 7.97 9.32 8.39 8.32 9.99 7.75 3.24 9.54 9.5 12.3 9.62 12.1 7.85 10.6 8.71 10.9 8.17 8.18 9.81 10.9 1.11 7.29 10.6 3.96 6.78 9.83 5.08 10.4 11.9 1.11 0 6.32 8.69 3 10.4 9.79 9.13 10.7 8.53 10.2 3.19 8.06 9.35 7.36 8.1 0.91 10.2 2.07 7.78 8.33 6.44 1.3 10.6 10.2 8.62 9.51 15.8 15.1 14.5 13.2 10.2 11.7 14.9 3.52 15.2 12.6 14.1 14.4 14.1 14.9 14.7 12.9 14.7 11.3 14.6 3.99 13.1 12.3 10.6 14.5 14.3 13.3 14 14.3 14.8 13.8 14.2 14.3 13.6 13.7 11.8 14.1 14.6 13.1 8.29 9.55 14.2 3.88 15 15 14 9.67 9.18 12.8 12.7 14 14.8 12.5 16.2 1.38 1.97 3 8.56 5.61 14.1 1.6 2.57 15.2 10.9 12.1 10.8 8.84 9.42 12.8 14.8 15 12.8 14.8 14.3 13.2 14.4 12.6 13.7 14.2 14.1 8.92 14.7 14.5 14.7 13 13.9 14.1 13.5 9.99 10.9 13.6 10.6 12.8 10.4 11.9 13.1 9.24 9.48 7.79 10.2 2.34 6.16 11.1 10.2 6.8 7.54 10.9 10.3 10.5 9.63 3.59 0.91 4.69 14.8 12.3 10.8 4.91 14.9 8.45 17.5 7.1 9.19 13.6 14.3 1.11 13.8 10.2 1.86 13.1 10.5 10.6 5.26 7.55 6.13 11.7 11 6.82 15 8.26 9.85 11 10.6 11 5.3 9.61 9.61 8.64 9.38 5.73 8.29 6.61 10 0 6.25 1.11 5.5 14 6.96 1.11 2.34 4.84 13.6 6.25 6.46 6.68 8.34 11.8 2.17 9.93 8.52 7.22 3.93 0.91 5.96 8.33 4.3 6.9 7.09 9.87 8.48 5.25 3.88 9.83 0.66 0.91 4.58 5.67 2.26 12.2 4.36 11.7 8.14 1.11 12.1 14.9 12.1 10 10.4 10.8 5.45 9.15 10.6 10.9 9.4 9.78 9.31 9.19 5.81 8.1 10.7 6.35 10.5 10.3 9.88 10.4 8.57 7.62 11.1 6.63 3.33 8.07 10.2 10.6 10.9 7.87 7.53 3.59 2.07 9.01 6.32 6.91 8.88 7.04 9.08 6.99 10.4 6.06 8.16 9.21 8.21 11.4 1.74 10.5 0.37 9.14 5.6 7.17 7.02 6.49 8.63 1.6 10.5 12.6 7.75 7.85 8.18 8.95 10.5 8.97 8.87 2.77 13.2 7.61 5.01 10.3 9.72 3.63 7.46 6.49 11 3.56 10.7 8.79 0 5.25 6.64 7.13 8.2 9.43 8.61 5.72 3.82 4.69 6.7 11.3 9.56 12.6 9.75 9.02 11 6.98 9.54 8.74 5.05 10.2 4.6 5.98 8.39 2.64 10.2 5.37 9.35 1.74 9.32 2.42 11.1 9.42 3.05 8.56 7.95 8.39 12.7 6.07 9.58 10.3 8.08 11.5 4.99 6.16 6.79 7.7 6.15 9.63 12.6 0 8.02 5.85 9.19 10.4 11.8 10.2 9.45 8.68 10.5 9.52 6.23 6.33 10.5 10.5 8.78 11.5 4.62 12.9 8.76 8.27 10.2 1.3 0 7.97 3.1 11.4 5.35 11.2 11.9 5.43 8.37 6.11 7.81 9.51 4.95 10.8 7.71 7.44 11 2.42 3.59 5.01 2.17 11.6 8.51 1.86 11.3 10.4 8.46 11.1 10.5 9.15 4.86 9.82 8.17 6 10.3 9.58 8.59 9.55 2.17 9.94 7.22 6.84 0.91 3.66 6.04 10.9 10.4 9.46 2.5 11.4 8.38 1.3 3.59 11.2 8.54 8.73 1.3 3 8.72 7.58 4.72 7.21 5.02 7.15 3.19 17.2 1.3 6.69 6.76 1.46 9.98 9.68 0.66 10.3 9.66 5.16 7.53 5.03 7.12 8.71 8.22 7.26 8.38 8.12 7.59 0 3 4.4 8.71 2.5 8.81 10.1 5.88 8.26 7.64 10.3 12.5 8.54 10.6 8.72 9.64 9.77 9.37 8.94 8.96 11.7 7.96 2.42 7.04 0 0.91 3.79 5.81 4.27 4.04 9.15 4.04 9.22 2.07 10.4 5.93 6.35 8.98 1.46 11.1 0 5.63 0 6.02 10.7 6.97 3.85 11.5 3.92 0.66 5.49 1.46 9.37 9.06 8.2 6.46 4.98 1.3 1.11 11.6 1.74 4.36 5.39 5.35 1.97 1.6 4.49 7.58 5.2 3.45 7.31 8.42 10.4 0 9.56 0.91 1.97 4.25 9.59 2.26 6.16 1.97 11.9 3.52 9.68 5.61 5.06 9.98 0.66 4.36 8.11 11.5 7.11 5.78 9.68 0.37 0 1.74 0 5.82 2.94 10.2 7.46 5.88 6.07 9.69 10.5 13 8.04 0.37 8.18 10.6 2.17 3.52 11.6 9.41 9.03 10.5 10.6 9.46 8.85 2.77 9.39 11.4 10.5 8.96 9.62 10.7 9.83 4.84 8.8 11.7 8.98 7.49 11 8.95 9.15 11.9 8.33 9.95 8.77 9.65 11 8.43 9.58 9.56 9.45 9.26 6.27 10 7.13 5.05 10.1 11 9.08 6.69 9.98 7.36 8.58 3 9.45 13 8.36 5.08 10.1 9.38 5.64 9.32 8.43 3.1 11.6 8.58 10.9 9.25 9.98 9.53 8.32 8.85 8.37 1.11 10.4 10.6 8.88 5.22 9.43 11 8.43 13.8 11.6 9.66 6.71 7.98 8.61 7.69 8.07 10.7 8.46 4.58 4.77 4.55 8.5 7.67 10.9 5.67 8.52 5.55 5.24 4.99 9.49 1.6 9.88 9.33 7.15 8.74 10.7 4.21 3.96 11.2 7.74 10.2 8.67 6.36 10.2 5.29 10.4 0.37 10.4 9.29 8.99 10.9 10.2 10.6 10.1 10.7 10.6 7.59 8.13 10.1 9.46 10.2 0 8.75 12.7 9.52 10.9 8.53 7.15 7.2 1.97 11.6 3.69 7.83 3.99 4.16 8.55 4.78 10.8 8.57 11.1 1.46 8.85 3.37 4.27 2.5 4.93 7.55 3.82 9.06 8.67 9.36 8.21 8.46 9.73 9.55 6.22 9.71 13.3 7.89 10.1 10.6 4.01 10.4 8.04 11.1 10.5 9.81 4.44 11 3.63 3.45 3.41 6.62 12.2 0 11.3 10.2 4.81 4.87 9.69 8.97 8.19 8.4 7.85 10 11.5 7.12 8.88 11.6 9.67 0.37 1.11 2.78 0 3.63 4.06 0 8.68 0.37 0.66 6.66 8.22 2.42 2.07 5.9 3.63 6.86 0.37 3.15 2.17 10.6 7.93 3.1 4.84 3.76 1.11 0.37 6.98 7.27 9.04 8.86 10.6 4.16 7.54 4.91 5.76 0 10.8 6.83 4.57 1.6 2.94 10.2 2.89 4.72 3.88 8.51 5.75 3.63 8.45 11.4 0.66 2.89 1.11 7.66 7.35 4.32 6.31 0 5.07 6.76 0 7.62 3.41 6.97 1.6 2.57 10.2 4.44 3.45 5.53 1.97 5.88 0 8.37 0 9.82 1.3 4.62 9.8 5.21 7.88 7.68 8.29 8.85 1.74 1.97 7.15 10.5 11.3 10.5 9.73 4.04 2.5 5.08 5.56 8.03 9.7 9.47 11 12.8 6.29 9.76 10.8 9.03 12 7.9 9.68 9.35 10.9 9.44 7.5 11.5 10.7 9.02 8.18 9.6 7.93 0.66 10.7 8.35 10.4 10.8 10.6 9.88 6.14 9.46 8 3.48 7.59 0.37 9.02 11.5 11.5 11.4 9.93 11.1 7.92 7.9 10.3 11.2 2.14 9.33 8.18 10.5 9.16 8.37 11.3 10.9 12.5 6.04 7.03 4.97 8.21 9.78 9.53 7.85 8.41 4.34 11.5 9.65 11.5 10.6 8.57 11.7 10.3 8.61 10.3 9.52 11.6 10.9 9.94 9.51 9.58 12.5 9.57 11.2 11.4 13.2 10.7 9.93 9.24 0.37 12.4 6.5 12.5 9.68 10.8 9.37 11.3 8.62 11.1 9.49 9.82 12.4 9.91 2.42 10.8 1.6 3.15 9.57 10.8 8.83 11 10.1 7.77 10.8 6.8 9.57 6.88 14.5 9.2 10.8 9.19 2.94 9.18 7.44 13.8 7.95 9.21 11.1 9.76 7.47 12.9 0.91 5.95 11.8 9.01 7.78 10.5 6.87 0.37 10.6 6.66 12.9 11.3 10.2 10.2 11.9 12.8 9.86 10.2 7.06 11.3 10.5 9.6 9.21 11.7 8.55 10.2 11.3 10.5 10.9 11.6 12.4 11.3 12.3 11.2 4.32 4.99 0 10.9 12 12.7 13.4 7.62 14.2 3.15 12.1 10.8 11.9 8.19 10 10.7 2.5 1.74 1.86 0.91 0.66 1.74 0.37 2.17 12 2.53 0 0 3.62 11.7 11.8 9.26 8.87 0 5.11 10.9 9.53 8.69 8.26 9.11 6.11 3.05 3.59 8.35 10.5 3.56 6.06 5.28 5.88 10.1 10.4 10.3 10.1 11.6 10 8.36 10.5 8.8 8.77 14.5 9.45 9.36 10.3 12.2 5.8 11.2 8.49 10.3 9.07 12.2 10.1 10.1 6.83 9.02 11.9 9.07 10.7 9.72 3.33 11 3.82 0.37 4.8 11.4 9.5 9.09 4.25 3.69 0 10.4 7.67 3.73 10.1 6.44 9.18 8.05 8.16 5.41 11.8 5.8 10.8 11.4 11.4 10.2 10.9 8.9 9.2 6.21 8.85 5.34 0 12.5 13.5 11.5 10 12.8 9.1 9.01 10.2 2.64 0.37 8.84 10.9 9.15 11.2 9.12 8.9 7.73 7.98 5.67 4.6 5.53 7 10.3 9.93 11.2 1.3 5.07 9.26 9.52 1.3 0 12.2 7.73 10.1 9.66 11.7 3.15 10.7 8.42 9.11 8.25 8.54 9.42 3.1 11.4 7.66 7.33 9.35 10.4 10.5 5.72 12.3 10.1 6.62 11.3 0.91 0 10.7 7.12 9.43 6.19 10.6 10.6 7.64 2.57 12.4 11.4 7.54 9.13 7.69 1.74 10.4 14.4 6.28 7.91 9.3 0.37 8.39 9.1 3.99 10.1 2.07 8.68 3.63 8.86 8.37 10.5 10.1 9.78 8.8 10.9 6.62 7.77 2.26 9.26 16.5 11.3 11 9.78 8.46 9.67 0.91 11.2 11.6 0.91 10.3 7.33 8.16 11.4 4.01 12.9 0 9.15 11.1 10.9 9.39 11.5 8.8 2.94 9.27 1.46 9.9 8.02 7.08 11.5 9.67 10.5 10.2 9.25 9.23 15.2 12.1 11.8 1.11 10.2 11 8.38 11.9 13.5 7.58 8.18 10.9 10.4 7.2 3.69 12.5 12.1 5.87 9 6.63 6.85 16.6 11.1 7.43 8.14 10.3 11.1 9.26 10.9 9.83 9.86 8.81 9.53 15.8 11 8.74 9.36 3.88 5.21 10.2 11.9 8.75 10.4 6.48 11.9 10.4 5.48 2.77 0.66 2.89 7.92 1.3 11 9.19 11.7 11.3 6.78 3.73 8.47 11.5 7.81 10.1 9.57 11.4 11.4 4.21 10.1 11.8 10.8 11.4 0.91 12.4 11.2 10.2 7.41 13 12 11.3 9.48 11.2 5.66 16.5 0.37 12.2 8.41 8.98 14.2 9.41 9.46 6.68 6.66 6.42 6.81 15 1.86 12.6 7.71 11.4 7.08 0.37 6.94 2.77 1.97 6.04 5.79 8.07 0 3.56 1.11 10.8 9.18 10.8 0 10.8 13 10.6 11.7 7.06 9.28 9.38 9.72 11.2 10.3 11.1 12.3 8.94 6.3 8.43 4.99 5.98 5.9 10.2 9.13 3.59 0.66 7.44 6.16 10.1 7.31 7.02 3.15 4.38 5.9 5.57 6.87 0.91 8.01 5.04 1.86 6.21 8.92 8.92 2.17 7 0 2.17 7.69 12.1 5.19 6.43 0 8.07 7.71 7.64 2.77 9.06 1.11 6.73 4.21 6.45 3.52 4.75 8.2 5.72 4.67 13.4 5.51 8.03 0 6.34 0 1.6 4.04 9.45 2.94 8.8 0.91 0.91 11 4.21 7.98 4.01 4.11 3.88 6.02 6.92 0.37 4.18 6.43 5.31 4.44 10.6 3.41 6.72 2.64 3.15 4.95 3.45 0 8.21 11.5 8.6 2.83 9.15 3 4.14 9.81 5.6 8.04 1.6 9.35 10.4 1.86 1.11 2.77 7.77 6.95 7.94 3.1 5.17 0.37 8.57 8.95 5.41 8.93 7.29 7.97 6.24 7.57 7.01 5.55 2.57 10.2 0.66 10.9 1.74 13.4 2.77 14 14.8 13.1 0.66 10.8 11.4 10.7 9.18 11 12 10.9 9.96 9.97 10.1 9.87 11.6 2.26 11.1 10.3 11.3 9.43 10.5 9.71 11.6 10.4 11.7 7.34 8.99 0 4.57 12.5 4.21 10.2 5.1 9.43 5.52 9 10.8 3.45 6.34 8.63 10.3 9.34 9.66 11.7 11.5 3.05 11.6 4.23 12.4 12.1 11.4 10 10.7 11.1 10.4 10.6 11.6 9.07 1.46 10.5 11.6 8.81 8.62 11 11.7 6.42 10.4 9.51 8.08 11.7 12.7 11.7 10.6 10.5 9.48 10.6 11.4 10.3 1.6 8.65 0 13.3 16.1 4.04 0 7.76 4.8 5.79 7.01 7.55 8.27 4.8 2.94 3.76 10.2 12.7 7.33 10.7 12 10.8 7.78 7.63 9.74 9.62 9.16 9.97 9.96 6.89 0 5.13 9.54 0 2.89 5.26 0 3.24 4.23 2.71 3.1 2.26 9.65 6.68 1.97 11.5 4.73 0.91 12.5 3.76 8.38 10.3 6.56 10.2 3 11.3 10.2 2.71 7.14 6.78 9.06 12.4 8.48 9.65 10.6 12.7 8.47 13.6 11.3 12.2 13.8 5.85 11.8 12 6.18 13.4 8.62 9.72 8.29 6.55 9.93 9.1 6.3 8.09 6.21 13.1 8.15 8.74 7.51 6.65 8.03 6.56 7.38 7.38 7.01 7.55 10.7 8.94 7.62 10.5 7.71 8.25 5.1 9.79 9.63 9.84 6.43 6.26 7.44 6.7 6.64 8.86 8.55 7.3 6.31 7.19 6.62 2.42 6.13 6.64 7.88 8.44 8 10.1 6.02 2.17 9.23 2.07 6.84 8.88 7.93 2.89 1.74 5.7 4.04 3.2 11.7 4.3 0.66 2.26 1.74 0.37 1.46 3.29 11 8.01 6.63 8.29 7.15 7.64 7.2 6.18 7.06 8.58 10.2 5.76 8.17 7.73 10.6 4.23 10.2 9.34 10.1 9.02 7.11 6.5 7.6 0.91 10.1 7.47 9.94 8.04 7.7 2.07 6.88 4.04 6.58 8.82 7.2 8.47 1.3 7.88 8.46 5.42 7.5 7.61 6.41 9.62 6.84 7.38 8.74 8.85 11 5.8 6.46 9.35 6.21 5.99 11.6 11 6.28 6.96 5.3 8.43 1.86 7.44 6.38 7.08 6.76 7.09 7.58 7.89 2.07 2.26 4.9 6.7 7.59 4.57 12.3 9.08 9.35 13.3 8.26 11.7 6.93 11.9 3.02 13.3 8.74 11.4 7.87 3.88 12 9.95 9.93 8.8 10.6 9.71 11 13.7 3.88 3.63 11.8 9.86 9.26 5.07 8.92 10.5 12.8 9.74 9.16 10.1 10.5 13 7.43 6.46 10.2 2.34 9.98 10.3 5.67 4.42 7.12 11.2 9.84 4.51 8.43 3.88 5.39 7.04 9.44 3.41 11.1 11.4 8.21 10.5 9.52 7.64 9.89 9.78 9.51 0 10.4 11.2 8.47 6.02 8.01 9.94 8.05 3.05 13.2 9.29 7.71 9.08 8.96 9.76 8.97 9.86 10.9 4.7 10.5 11.1 3.59 10.3 7.7 10 13.4 8.94 9.33 7.84 9.48 8.93 10.6 9.55 9.28 6.12 7.16 5.46 11.1 6.61 4.51 8.36 7.62 8.81 9.4 9.18 12.5 10.9 9.83 5.67 9.82 8.74 7.13 3.37 3.76 11.7 8.57 10.5 11.5 9.82 9.6 10.7 11.4 8.8 7.3 8.31 8.03 12.1 11.3 7.62 10.4 11.8 13 9.27 8.41 8.86 5.05 10.7 5.85 4.57 9.11 10 7.39 8.91 9.43 9.03 12.1 10.8 8.05 1.6 4.22 9.31 12.7 9.77 10.9 5.08 4.38 9.4 7.49 9.13 8.15 8.69 9.04 11.8 8.5 8.51 1.3 11.7 12 9.37 10.5 11.7 9.46 9.24 6.82 0 9.08 5.37 0.66 1.3 10.7 7.66 9.66 12.1 7.84 1.3 2.5 1.11 8.75 3.15 7.19 7.99 2.5 9.54 7.96 10.9 9.79 7.81 8.16 10.1 8.44 10.4 5.65 1.3 3.63 4.37 9.51 8.03 6.37 0.66 8.57 11 8.08 9.35 8.5 9.9 9.75 8.94 8.7 9.06 11.9 10.3 10.8 9.28 9.61 8.52 7.95 4.83 9.63 9.79 11.1 11.2 7.89 8.05 7.3 6.92 7.41 7.54 8.51 5.07 9.73 9.09 4.38 10 2.71 6.84 7.68 4.84 8.71 8 9.08 6.94 7.55 7.18 6.38 8.61 8.77 8.63 9.24 6.88 10.3 8.41 1.74 7.76 9.56 8.15 6.89 8.45 10.9 9.05 8.02 10.7 6.81 8.9 9.1 7.71 11.2 8.11 7.76 9.35 9.76 8.17 4.64 8.6 8.11 8.46 9.68 9.73 8.01 3.15 7.77 8.95 8.61 9.53 7.42 5.98 8.37 9.09 9.99 6.02 8.02 8.88 8.22 8.31 12 7.12 8.15 10.3 9.85 9.15 6.68 9.57 6.03 10.2 8.96 9.5 8.54 8.13 8.24 9.73 10.6 11.8 9.54 10.6 3.79 5.87 10.3 6.86 9.21 7.88 8.57 7.59 8.52 3.66 7.81 10.6 7.28 8.08 2.07 3.92 8.24 7.78 11 6.99 2.07 10.1 3.15 8.97 9.32 7.66 8.17 8.69 8.63 8.1 6.34 7.97 10.4 10 11.2 8.43 10.6 5.89 6.72 3.96 9.12 9.45 7.58 8.51 8.46 0 7.11 13.7 8.38 3.9 5.75 10.8 9.74 11.3 10.5 8.75 8.54 8.78 7.83 4.93 3.79 8.88 4.73 7.85 7.74 6.59 10.4 9.51 9.74 4.09 5.59 7.02 8.31 6.35 7.09 9.53 0.66 5.92 7.42 4.87 2.94 7.02 8.46 7.03 7.17 9.4 7.47 9.41 6.01 9.82 6.36 6.77 9.28 7.56 2.26 6.45 5.06 2.94 7.03 5.75 8.21 6.46 0.37 8.84 3.69 0 5.17 12.7 0.37 7.51 0.37 6.14 8.29 6.89 2.83 5.82 8.84 8.32 10.5 5.49 7.27 8.82 9.15 10 9.82 9.42 10.1 6.5 8.37 9.83 7.31 8.45 9.84 9.42 8.66 11 8.72 7.75 10.1 10.4 10.6 6.02 7.79 9.09 6.87 8.71 12.7 8.98 10.3 5.92 6.88 1.97 10.4 9.14 7.17 3.28 8.49 7.89 11.4 7.53 0 7.1 7.45 4.8 3.63 8.24 6.25 1.3 11.4 1.3 10.1 5.49 3.28 10.7 9.46 4.09 7.45 6.92 7.36 9.44 4.69 3.41 9.05 4.6 10.5 7.81 7.55 6.47 10.4 9.31 6.53 12.3 5.54 7.26 7.83 10.4 5.89 5.58 9.32 8.17 7.7 7.52 0.66 6.24 6.06 5.78 9.57 10 0.66 9.46 4.09 12.3 0.37 4.75 8.19 9.68 6.85 9 7.4 3.59 7.73 10.4 10.1 8.67 8.94 9.87 8.27 9.9 7.89 9.55 9.6 10.3 9.43 9.23 7.44 5.78 1.11 0 3.05 6.84 8.16 5.87 8.06 0.68 4.25 3.69 0.66 8.38 11.4 12.8 5.76 6.69 3.15 4.8 3.73 0 9.08 7 6.61 7.12 7.6 7.68 9.32 5.58 10.4 8.55 8.15 9.79 10.4 10.1 7.42 7.15 8.19 9.56 8.98 9 6.89 8.22 5.96 9.32 8.58 6.23 9.17 7.17 5.68 8.8 5.41 8.07 7.88 9.44 10.1 9.9 8.83 9.78 9.29 8.24 10.1 9.27 8.87 8.99 11.2 8.63 9.8 9.42 10.8 10.3 8.37 3.93 10.7 9.57 9.87 9.59 11.7 7.31 9.09 11.6 11.1 4.58 11.7 10.1 6.58 7.49 3.05 9.13 9.63 9.62 2.64 8.15 7.04 6.02 9.84 9.84 10.8 10.5 8.89 5.19 11.2 8.99 6.36 8.74 10.9 10 9.58 6.35 9.64 8.89 5.26 10.3 11.7 8.02 7.81 5.31 8.19 6.98 9.87 5.4 7.32 4.18 9.06 5.08 8.57 9.66 6.21 8.38 3.99 11.1 4.38 3.79 11.3 8.11 1.6 8.08 6.34 11 7.37 8.97 11.1 9.63 2.07 10.6 3.33 10.1 7.27 6 11.3 8.82 13.8 8.71 6.72 9.38 12.2 6.08 9.99 4.84 7.29 9.61 8.83 7.21 10.7 7.72 11.2 4.46 2.34 6.52 3.79 5.34 8.13 7.96 7.49 9.67 5.35 4.93 5.9 8.01 8.84 12.5 9.43 5.72 10.2 8.92 7.7 6.96 10.6 6.56 11 11.9 9.56 12.4 9 12.6 7.81 8.64 9.25 5.36 7.9 6.65 9.32 10.4 10.4 6.14 8.39 0.66 10.2 9.88 7.96 10.4 7.92 9.27 3.8 4.69 7.55 3.69 11.2 8.42 9.4 6.04 10.7 2.94 10.9 13.6 8.58 2.89 3.28 8.03 3.93 9.28 8.16 7.23 11.1 11.8 14.2 3.48 6.73 0.37 4.94 2.34 11.2 11.4 10 3.56 1.46 7.69 11.4 10.1 9.5 1.6 10.1 1.46 11.5 11.8 7.2 9.79 10.2 9.22 10.7 9.9 3.66 6.69 9.2 8.74 9.98 9.07 10.7 9.47 10.2 4.66 8.49 9.83 9.16 10.3 9.59 9.47 11 0 7.67 6.43 8.86 8.76 9.35 9.16 8 5.76 9.8 7.98 7.03 12.6 10.7 11.1 11.2 9.15 11.1 8.3 3.88 11.2 9.74 7.92 0.66 7.59 10.8 11.1 7.64 5.19 9.97 4.53 9.44 10.6 3.41 11.4 10.7 11.6 11.8 11.7 9.12 5.44 0.91 11.1 0 8.13 11.2 2.5 10.6 8.83 5.74 9.58 7.6 9.77 4.48 6.5 1.11 9 6.14 8.47 5.94 9.6 10.2 9.2 9.18 10.8 4.45 10.4 6.06 10.3 11 5.72 10.4 8.18 12.6 9.75 9.83 9.59 11.3 9.71 9.6 0 8.88 10.4 4.46 10.2 9.27 7.54 9.61 0 6.37 6.16 10.2 9.18 6.37 9.71 10.2 6.77 11.3 13.4 10.2 9.92 6.49 13.7 9.03 0 9.84 9.21 9.7 9.15 12.9 8.69 10.8 11.1 13.4 10.9 11.3 9.92 7.39 13.8 10 7.32 10.4 7.77 9.34 9.23 0.66 10.8 0.66 10.7 11.5 9.81 5.33 8.43 0.66 10.4 11.4 11.8 9.55 9.25 12.8 8.88 10.4 6.16 10.7 9.07 5.51 5.34 12.4 1.46 13 9.27 10.5 8.71 7.85 1.11 0 9.87 1.46 0.37 0 10.4 2.71 9.03 2.64 3.37 7.83 7.65 0.66 1.46 2.42 4.51 0.66 0 7.17 3.52 10.3 13.1 10.9 8.68 6.15 0.66 1.74 6.36 10.7 8.44 0 8.93 5.68 7.14 9.13 7.63 3.33 5.67 8.27 8.25 8.03 0.37 7.63 6.15 11.7 8.73 9.11 0.37 3.41 0 5.01 5.43 0 5.51 8.88 8.4 7.91 9.59 9.09 10.7 1.86 9.32 0.37 1.74 0 0 10.2 7.45 2.34 10.9 7.95 6.77 7.22 9.01 0 7.89 11.5 10.6 8.57 8.24 0 4.01 8.81 12 10.7 0 8.74 9.35 9.14 7.79 6.06 4.27 1.11 3.96 11.8 0.66 8.64 10.7 7.75 1.6 6.57 9.92 9.73 4.06 9.57 9.58 1.3 0.66 11.7 8.32 8.96 8.38 8.35 9.77 6.39 5.64 9.21 10.8 5.81 1.86 2.34 7.79 3.56 7.28 10 9.39 9.67 5.65 9.55 10.2 4.18 4.7 7.81 9.64 9.93 9.35 1.46 4.67 7.48 8.13 1.74 3.35 9.09 5.61 7.19 8.7 6.15 6.67 9.99 12.1 6.56 9.7 4.99 2.26 10 6.09 3.45 0.91 4.53 0.91 4.36 0 1.46 0.91 4.09 11 10.5 8.91 2.34 9.95 9.99 6.65 8.98 12 7.8 11.2 10.1 9.25 8.79 7.54 4.4 1.46 7.93 0 9.48 11 8.58 8.64 5.27 9.76 11.7 9.76 6.55 9.19 1.11 2.34 6.39 0.37 9.54 8.92 8.5 8.82 10.8 10.4 10.9 11.1 10.3 0.91 8.3 4.6 7.89 5.4 6.14 7.6 10.5 9.18 0.37 9.88 10.5 9.48 6.59 7.81 14.2 4.23 4.88 1.86 2.07 5.79 5.38 9.12 10.5 8.85 9.26 5.01 6.01 7.89 10.2 4.14 8.02 5.33 1.3 7.07 8.49 6.62 7.14 9.12 9.2 9 8.03 9.06 8.26 7.3 7.63 9.14 9.4 7.19 6.82 6.79 7.61 3.52 9.02 10.1 8.76 9.92 9.04 8.67 9.37 10 8.47 10.7 8.95 8.03 10.7 10.6 6.71 8.66 8.3 4.23 8.44 9.96 9.49 7 8.43 8.75 9.48 4.09 0.66 6.63 10.6 10.8 9.78 2.83 8.73 6.82 5.1 2.07 8.58 6.21 9.03 5.08 0 5.13 6.77 6.23 7.34 5.95 0.91 7.66 11.3 11.7 8.32 7.63 10.2 8.79 10.4 9.21 8.29 8.89 10.4 2.83 11.3 6.41 5.53 5.17 9.71 9.3 9.6 0.91 7.84 8.57 8.38 9.35 9.57 6.6 9.83 10.2 8.76 9.62 9.71 9.49 9.02 11 9.56 9.56 9.61 6.76 9.16 9.47 3.79 8.31 12 9.32 4.6 9.12 9.97 10.1 9.02 8.72 9.87 8.44 8.76 0 7.85 10.7 8.12 9.19 5.41 9.11 10.5 8.65 12.3 2.28 4.21 7.61 9.71 9.51 6.95 7.3 11.2 1.97 11.6 9.3 7.66 9.65 8.72 8.67 10.1 10.8 6.95 8.12 9.5 9.51 10.1 10 4.73 7.59 6.76 8.19 9.08 2.26 9.72 9.8 10.5 10.2 10.4 7.07 8.31 9.04 9.26 2.34 8.41 11.1 9.06 9.46 11.1 5.27 9.44 2.07 10.3 8.84 12.4 10.8 10.5 8.4 7.77 8.05 3.85 7.44 9.94 6.65 8.43 12.5 3.9 10.8 7.2 6.66 8.88 9.96 6.63 6.89 8.28 3.45 9.03 8.98 9.3 6.99 0 1.97 1.3 1.38 9.44 8.43 10.3 7.32 4.3 6.36 10.5 9.8 11.4 5.56 9.79 6.14 6.52 5.67 10.6 7.74 9.97 6.44 13.1 8.12 6.36 9.01 9.9 5.84 10.1 4.25 7.73 10.9 5.28 8.55 8.55 10.7 8.41 7.42 11.1 2.26 11.2 7.16 9.3 0 7.52 8.29 4.32 10.6 9.58 8.99 8.55 6.88 1.11 10.7 7.6 5.62 3.93 11.1 7.46 11.2 2.77 1.11 7.71 9.18 10.3 5.51 6.33 9.46 11.2 3.88 4.14 0.66 2.17 10.6 10.4 7.53 9.67 10.4 5.45 8.74 3.99 8.71 6.23 0.76 8.29 9.48 11.5 1.11 5.62 7.26 5.71 1.6 4.44 0.37 11.9 10.1 2.94 6.37 8.26 7.13 9.26 9.04 3.93 10.8 9.24 6.58 5.43 11.6 8.89 11.4 5.59 7.28 4.09 1.12 9.67 8.18 6.73 9.63 8.42 10.1 7.55 3.19 8.19 4.67 1.97 7.33 7.28 9.11 11.2 7.28 8.75 6.8 8.41 10.7 9.05 7.94 6.13 5.72 7.57 8.94 9.78 8.46 4.81 4.62 2.5 7.04 10.4 10.1 7.03 7.83 10.2 1.97 8.59 6.35 3.69 3.1 10.2 12 6.99 8.17 0.37 1.6 8.66 5.36 6.76 6.42 8.21 6.16 9.75 10.2 5.99 10 7.99 9.52 6.83 5.35 1.97 7.87 7.72 10.8 9.5 8.53 6.13 8.62 9.39 9.7 10.7 9.04 9.13 0.37 8.63 10.4 6.5 9.91 9.97 9.37 8.96 9.16 12.2 6.97 8.62 8.93 5.33 7.46 9.83 9.18 9.29 10.2 5.2 7.6 10.6 8.03 4.67 9.45 11.6 10.4 4.4 5.77 9.11 9.37 7.25 8.77 10.9 8.51 5.27 7.41 7.15 8.79 8.11 9.57 11.4 9.59 6.94 9.19 6.3 7.7 8.07 1.46 8.77 8.46 7.82 7.95 10.7 9.58 6.51 9.52 4.34 10.5 8.04 7.77 11.2 5.98 9.85 2.89 6.28 8.24 7.31 9.49 3.1 5.8 6.21 9.11 10.9 9.83 8.81 8.66 10.8 7.04 2.07 6.22 9.74 9.1 10.8 9.86 4.23 0.37 11.1 10.8 10.2 7.47 10.1 5.66 6.81 8.99 0 6.1 9.78 9.41 11.2 6.79 5.68 11.4 9.51 9.08 8.36 9.67 7.73 7.9 8.25 8.21 6.11 9.52 10.3 8.66 6.29 4.88 7.04 5.56 1.11 8.69 9.16 10.1 9.3 0 8.15 0 9.52 9.39 6.87 9.82 6.85 0 6.36 0.66 4.09 7.94 12.2 9.3 7.27 0.37 9.35 1.6 1.46 9.49 11.5 9.1 3.9 8.98 10.8 10.8 7.62 8.6 9.11 9.85 1.11 8.84 0.37 7.02 9.12 10.3 9.92 11.2 7.79 9.36 9.26 9.81 2.94 5.98 4.95 2.5 6.01 7.19 3.05 11.2 10.6 10 8.96 7.28 8.45 9.41 6.31 7.86 6.56 10.8 9.95 9.43 7.04 6.02 12.1 9.43 8.26 8.08 10.1 6.79 10.4 8.58 7.91 8.31 9.1 5.63 4.3 9.43 4.42 3.9 2.64 9.07 3.96 3.37 3.37 9.03 4.73 2.17 13.9 7.57 7.95 7.05 3.19 10.8 9.33 11.9 10.4 9.66 4.56 11 11.7 9.79 9.19 8.73 12 10.8 12.2 8.94 10.1 9.95 9.82 5.78 8.81 12.4 7.68 9.4 9.39 5.71 2.89 9.88 9.27 9.41 8.09 9.24 1.74 5.24 11.1 9.81 9.76 12.4 6.86 10.8 2.42 3.41 9.19 10.1 10.1 9.18 10.8 6.07 7.78 5.25 8.38 4.86 5.03 6.64 9.6 10.1 10.4 9.82 6.57 7.91 6.88 5.67 8.31 4.06 6.66 10.4 5.92 9.07 10.5 10.4 9.94 8.71 12.2 12.2 10.1 7.64 10.1 12 11.7 6.04 12.6 11.8 11.7 12.4 12.8 10.1 9.28 5.93 10.5 12.2 9.33 10.9 7.31 8.87 10.8 8.32 9.21 12.5 11.3 8.34 8.37 11.7 8.64 9.85 8.81 6.62 11.1 3.54 9.12 10.8 10 8.85 9.88 3.96 0 12 8.23 10.5 9.28 8.42 6.5 11.8 12.7 8.72 9.72 11.6 10.2 8.22 11.2 7.62 10.9 10.8 9.61 8.64 11.8 4.44 9.37 7.44 8.06 0.37 10.8 10.3 9.55 7.22 2.07 2.07 0 9.43 11.9 10.6 14.4 9.26 11.8 13.1 11.1 12.1 8.83 6.52 9.71 10.3 9.71 11.6 9.08 7.66 8.5 2.42 10.6 6.65 1.46 6.14 3.05 8.23 4.32 6.82 8.98 10.8 6.23 9.19 10.4 1.3 5.92 10.9 10.7 9.32 12.3 9.05 1.97 6.75 1.3 2.77 9.57 9.34 3.1 12.1 9.86 3.88 10.3 7.69 3.76 7.3 1.97 10.8 2.71 12.9 12 11.8 7.49 7.1 4.38 8.94 9.37 7.57 5.5 9.32 0.37 5.65 5.2 9.72 5.05 3.56 8.32 11.2 7.8 5.01 13.1 9.18 4.84 11.4 4.69 2.94 11.9 0 8.88 10.2 5.82 9.99 8.1 8.02 12.3 10.5 8 10.1 9.54 9.2 4.51 4.9 10.3 15 11.1 10 10.7 9.15 9.81 8.32 10.1 11.7 10.3 8.9 10.2 8.87 9.75 9.8 10.7 10.8 10.7 10.2 9.2 10.1 0 6.72 7.69 10.7 8.37 10.2 9.98 5.07 2.64 8.31 8.17 7.15 7.19 9.79 2.89 8.15 8.88 8.89 10.3 10 9.68 5.57 4.77 1.57 10.1 11.2 11.2 10.1 8.27 7.31 8.8 10.4 12.6 8.22 6.11 11.8 8.59 11.3 0 1.46 3.93 10.9 2.07 1.11 11 10.6 10.8 6.52 0.91 9.64 7.72 5.85 5.21 9.47 11.1 5.1 6.89 2.64 5.38 3.41 0 8.88 7.65 8.71 8.19 10.5 9.22 6.29 4.32 9.94 7.35 9.78 1.11 4.64 7.13 1.12 2.26 7.35 0.91 8.13 11.8 7.48 5.9 11.7 10 12.4 8.84 0 11.4 9.41 10.6 9.83 9.59 6.53 9.59 8.88 7.3 7.16 8.44 4.84 11.4 11.8 11.4 3.45 7.82 5.98 8.45 6.12 10.8 8.78 3.05 10.3 10.2 9.48 0.37 9.92 8.27 7.77 5.73 5.87 7.3 7.98 11.5 10.3 10 8.88 9.76 8.08 10.3 8.56 0.91 8.78 11.8 6.22 1.97 3.41 1.6 8.11 10.4 7.96 0.37 6.59 3.88 3.96 5.13 5.82 10.4 9.56 6.69 8.48 9.79 9.69 0 6.75 8.41 9.04 5.39 0.91 5.77 7.48 8.94 7.09 8.92 8.98 4.07 9.96 7.6 2.34 10.7 10 9.23 11.4 9.01 9.84 5.25 10.4 10.8 8.41 9.15 13.7 8.16 7.68 5.62 5.29 10.7 4.3 10.3 11.4 8.77 7.15 6.52 10.7 6.3 12.1 9.46 9.49 10 8.07 9.68 8.42 7.57 9.1 9.05 8.13 8.73 6.41 8.9 1.11 3.84 7.52 6.8 7.18 10.8 7.78 7.99 7.07 8.88 8.02 7.9 10.6 7.12 7.31 3.24 7.1 9.05 7.36 10.2 7.22 9.9 10.2 10.2 7.54 2.07 7.53 10 11.4 8.5 8.69 11.7 6.87 9.49 9.72 7.08 6.58 10.3 8.95 6.31 10.9 10.3 7.39 10.1 7.88 5.59 9.34 11.3 11 10.1 9.82 8.9 5.86 11.4 9.59 8.3 3.15 9.82 5.1 8.42 4.7 9.18 7.93 9.02 10.5 9.66 9.57 10.3 5.38 10.1 7.95 7.89 9.08 7.94 9.45 6 8.23 8.4 11 8.94 9.81 7.52 5.88 6.84 7.91 11.1 7.18 7.96 9.18 7.7 4.04 0.37 5.9 2.07 5.87 9.33 8.06 11 12.8 6.39 10.9 9.75 1.46 10.1 8.55 7.96 11 9.34 8.75 8.47 11.3 11.3 11.3 9.32 8.48 7.86 0.37 6.58 5.15 9.83 8.1 0 8.34 9.33 8.75 9.79 8.68 10.8 9.03 7.17 7.45 8.84 8.29 9.78 6.69 9.59 7.12 4.53 7.08 12.6 5.44 10.4 6.14 3.33 9.51 11.6 6.47 9.28 1.3 9.49 6.1 9.07 8.44 8.08 3.66 7.99 9.89 3.79 8.85 10.7 10.7 4.77 9.44 7.6 8.56 9.27 3.05 10.5 3 5.35 0 9.03 8.36 9.27 6.64 2.34 11 6.22 11 14.9 6.21 10.7 10.5 8.97 6.56 2.57 7.84 2.34 5.5 8.82 5.21 10.2 9.3 6.42 4.89 5.94 2.5 10.2 8.1 7.76 10.1 8.97 8.59 8.11 1.3 12.2 3.79 7.85 8.72 10.5 8.15 5.55 8.07 8.72 9.29 8.07 7.6 8.83 10.2 5.66 5.53 9.72 1.3 2.34 7.48 8.93 0 9.8 2.64 8.63 8 7.83 4.69 5.9 8.28 9.89 8.27 8.86 8.47 7.2 8.28 9.91 9.97 8.39 8.28 9.13 11.1 9.54 2.07 6.3 7.33 8.62 8.25 6.61 5.39 12.5 7.33 11.5 8.46 10.5 6.09 9.67 9.7 12.1 9.13 10.3 9.97 8.86 9.97 3 7.92 1.86 6.73 8.8 5.19 9.38 6.29 2.26 5.94 5.07 4.32 0 0 0.37 6.55 12.2 2.5 11.2 11.6 7.58 11.1 9.61 8.4 8.62 7.88 7.09 10.4 9.67 10.9 1.3 8.11 9.86 8.9 6.63 10.1 8.69 2.83 6.81 9.34 9.45 4.6 10.7 8.35 0.91 14 6.55 4.42 10 8.16 4.98 10.1 9.02 8.52 8.75 11.2 6.75 3.56 7.55 10.1 5.02 10.7 10.2 12.4 8.31 9.56 8.48 9.72 6.94 11.3 8.65 10.6 9.79 7.35 4.01 10.3 10.8 10.7 8.6 10.8 9.78 10.5 11.4 10.4 9.75 2.64 10.4 13.5 8.25 4.88 9.83 8.89 2.07 8.33 7.9 9.44 13.8 10.2 2.07 9.44 9.92 8.64 6.31 8.03 6.98 11.3 11.4 7.03 5.25 9.9 9.94 8.48 1.3 9.48 0 4.95 7.47 8.61 9.23 6.91 2.77 1.11 5.81 10.5 7.94 3 10.5 8.7 8.46 6.23 9.76 6.16 4.98 8.37 10.8 8.81 11.5 4.97 11 8.79 11.7 10.9 3.9 11 9.21 9.37 9.99 7.14 6.64 8.07 6.76 7.94 6.34 0.91 11.2 10.3 7.88 10.3 9.42 9.23 10.8 9.55 0.37 10.7 9.65 10.3 4.94 3.19 10.7 13.7 0.66 10.9 6.82 11.2 6.06 10.1 0.91 6.39 2.17 9.53 7.09 4.38 6.37 9.75 11.7 9.45 0.91 12.8 8.67 9.69 8.26 4.38 8.54 9.32 6.21 5.97 2.08 10.1 8.62 8.83 9.53 5.14 10.2 8.59 9.52 7.19 11 10.9 1.11 6.51 10.4 0.91 9.25 12 8.46 0.66 6.52 0.66 11.1 6.06 9.09 6.3 7.03 8.44 11.4 1.11 5.55 0.91 9.93 8.9 4.73 10.5 9.85 5.66 7.23 7.88 3.88 7.02 12.4 4.38 9.14 5.34 5.98 8.44 9.8 7.91 10.6 8.57 2.64 9.94 8.22 5.21 8.96 10.2 11.6 8.97 10.2 9.94 8.99 8.74 7.59 9.78 9.33 1.11 11.3 7.7 1.46 10.8 8.63 7.86 5.14 9.24 5.21 11.4 6.9 8.2 9.67 8.82 3 4.32 4.8 4.32 11 0 9.14 3.1 9.22 8.07 8.72 7.93 9.44 14.3 11.7 2.5 11.1 6.5 7.26 8.65 8.26 10 10.3 9.82 8.01 7.6 4.4 9.7 9.32 7.28 9.33 10.2 1.86 9.58 10.4 10.2 7.51 9.93 9.85 6.73 10.2 8.27 7.05 7.49 0.37 7.44 9.08 8.25 6.55 9 9.02 7.55 11.3 5.75 5.38 8.49 3.99 0.66 10.3 13.2 12.2 10.1 8.31 5.63 6.26 8.27 10.5 10.6 10.2 0 2.77 11.9 8.91 12.4 7.78 4.01 10.9 8.24 10.7 10.9 9.83 10.8 9.63 12.9 10.5 10.8 5.59 11.5 8.68 9.04 8.66 8.13 7.11 8.63 10.8 5.12 9.78 9.98 2.5 9.87 8.23 12.6 10.9 11.6 10.7 11 9.16 10.2 12.3 10.5 9.47 10.4 7.05 9.14 11.1 10.8 10.6 7.89 10.6 4.77 9.27 11.4 5.33 9.48 11.2 9.86 8.57 10.6 6.99 7.67 11.9 6.63 9.54 8.74 13.1 10.5 2.57 8.03 11.3 7.64 0.66 14.1 10.4 12.6 11.8 10.3 9.63 9.74 11.7 8.69 9.84 11.7 10.6 6.44 10.5 7.79 6.82 10.2 5.22 4.67 6.31 9.36 5.55 7.03 11.2 4.16 1.97 9.99 9.86 6.38 7.74 10 9.97 11.9 10.1 11.1 9.07 9.84 9.45 9.57 8.04 9.46 7.64 6.79 9.29 10.2 7.33 8.68 8.68 8.41 7.83 10.4 14.5 12.8 6.28 10.2 10.6 8.32 10.2 5.82 11.3 15.3 10.2 4.44 11.4 9.67 9.57 8.37 7.97 8.67 9.04 11.3 10.7 8.21 9.85 9.89 9.02 10.8 11 3.33 10.2 11.4 6.64 10.1 9.3 8.84 9.86 11.4 8.54 8.48 10.8 5.66 7.32 6.29 5.03 10.5 9.52 11.5 8.59 2.26 8.76 6.18 10.8 5.55 9.42 10 9.07 3.66 8.93 2.42 6.79 8.14 17.2 0.66 4.27 8.97 10.2 8.89 10.3 9.72 5.98 9.19 9.13 7.94 9.91 8.09 7.51 11 9.03 7.76 9.62 5.67 13.1 9.61 8.84 7.37 9.89 5.76 9.8 8.99 13.4 7.25 7.42 6.04 6.58 8.34 9.92 7.67 10.9 5.41 11.8 10.7 7.34 9.46 11 8.27 7.3 13.6 7.34 9.38 11.2 11.2 10.3 10.8 10.7 9.82 9.95 5.72 10.7 9.04 12.6 7.06 11.5 9.98 7.57 5.75 8.36 9.94 9.68 10.2 10.2 10.1 9.94 8.84 10.1 11.2 7.44 9.83 12.7 13.2 9.94 11.2 10.3 0 11 9.28 10.7 11.3 9.47 10.2 6.87 11.3 9.43 8.46 10.8 9.74 11 6.93 8.6 10.2 6.4 10.4 4.65 7.9 9.55 6.99 3.19 5.55 3.56 7.99 5.32 8.06 10.2 4.21 7.84 9.88 7.65 8.26 9.2 9.55 4.69 8.14 8.57 10.2 8.94 8.85 6.37 3.76 9.78 10.1 9.99 6.33 10.1 10.3 7.69 8.26 6.44 11.6 10.9 9.88 10.8 9.83 10.1 10 10.2 9.41 11.7 10.5 9.61 9.52 7.16 9.59 8.71 10.5 6.99 10 7.21 11.2 8.4 11.1 4.64 7.04 9.5 9.79 9.18 9.7 11.6 3.15 5.5 6.11 8.76 13.3 10.9 9.38 10.4 7.52 9.52 10.9 10.1 7.01 7.96 7.19 9.83 9.95 3.79 8.32 10.5 9.77 11.4 5.79 11.9 9.75 8.74 9.12 8.35 11.1 11.6 4.32 10.5 5.22 8.85 8.67 5.11 9.44 9.46 7.54 6.74 10.6 10.3 5.81 7.14 3.9 9.51 8.03 8.48 13.2 7.92 3 10 0.91 3.1 3.37 7.54 9.26 10.6 8.75 13.6 10.3 1.3 3.48 11.6 9.42 11.2 10.5 2.83 8.81 9.56 10.4 8.89 10.5 12.3 9.53 8.35 6.06 8.16 11.8 9.58 10.6 13.8 9.26 10.6 3.63 12.1 7.64 9.44
-TCGA-LK-A4O6-01 8.19 8.21 10.7 9.77 7.06 8.06 3.84 4.42 3.06 0 4.86 8.36 8.43 3.67 5.66 8.87 9.89 10.6 7.2 8.28 10.1 11.3 8.98 2.7 9.87 8.56 2.67 10.4 4.16 7.45 6.18 6.07 5.37 1.75 4.87 0 1.75 5.67 3.27 7.15 6.71 5.46 6.45 3.49 6.97 2.51 0.84 5.74 12.5 7.4 4.71 7.09 6.13 10.3 5.9 2.7 7.2 3.99 7.18 6.56 9.02 5.86 8.45 3.16 2.7 4.13 6.62 7.74 10.4 4.87 5.24 7.63 2.7 3.27 1.36 3.92 5.48 5.24 4.07 0.84 7.93 1.36 1.45 9.97 7.84 0 6.33 2.86 7.02 4.31 10 5.84 6.37 7.04 6.87 3.84 1.36 3.27 5.56 2.05 2.05 5.09 0 5.89 1.36 4.52 8.62 9.13 9.02 5.05 1.36 0 7.69 6.27 6.08 2.7 4.33 3.67 4.82 3.38 6.76 5.86 1.36 4.19 0 7.43 5.09 2.7 3.01 7.47 3.29 3.84 4.42 5.92 5.96 2.86 4.37 2.86 4.57 8.57 9.41 11 0.84 4.25 3.84 10.9 0.84 11 0.84 1.36 6.14 0.84 7.62 9.17 11.6 4.06 4.13 1.46 9.36 6.01 8.35 7.04 2.3 5.02 8.25 7.11 7.14 4.95 6.88 4.19 10.6 8.55 3.84 5.54 6.33 4.37 4.87 7.03 7.87 6.75 6.73 8.88 3.14 6.93 4.09 3.22 3.67 1.36 10.5 6.43 9.05 10.6 4.97 7.21 6.52 0 3.76 8.6 8.27 8.81 6.84 8.77 8.67 10.7 9.16 6.49 7.61 9.84 10.9 10 8.25 7.91 10.6 10.4 10.1 9.9 9.7 10.2 8 10.2 8.55 9.89 11 11.3 10.2 8.43 4.62 10 10.1 11.7 10.7 6.19 10.5 10 9.13 9.2 11.3 6.39 8.91 4.66 12.2 7.79 13.2 12.4 12.3 13 11.4 11.6 4.62 13 8.16 4.06 7.04 10.6 9.13 6.41 10.5 11.8 0.84 12.5 5.18 9.93 7.59 9.75 8.28 9.85 7.27 11 11.8 10.9 9.24 6.6 8.52 9.74 10.8 12.6 4.47 11.6 11.3 11.4 12.4 11.8 10.2 8.42 10.3 10.7 9.91 8.28 10 10.3 6.58 7.03 10.6 6.87 10.3 9.76 4.62 12.6 8.87 8.78 9.88 11.3 11.8 8.95 10.2 11.3 4.19 9.01 7.97 8.27 14.7 9.09 3.67 8.45 7.28 12.9 9.32 6.19 8.35 8.77 11.4 10.8 9.17 10.8 10.7 9.91 11.9 8.55 9.66 8.76 10.6 7.99 10.4 6.52 9.97 9.36 8.86 7.74 7.04 9.47 11.4 7.28 9.63 9.82 8.77 14.1 10.8 8.38 12.8 11 10 15.6 9.81 4.19 3.58 9.5 8.04 10.8 3.49 6.11 7.32 10.8 11.1 10.2 8.94 7.37 7.99 14.1 8.6 6.93 9.13 10.6 9.67 10.1 10.3 7.05 8.34 10.6 2.86 7.5 9.8 9.82 8.4 9.54 11.3 9.85 5.68 11.3 10.5 8.81 6.96 7.54 12.6 8.11 4.95 11.6 10.3 6.95 10.4 9.35 9.43 9.79 9.94 9.52 11.8 11.3 8.87 11.6 9.19 9.27 7.8 10.7 10.5 8.81 8.56 11.7 9.15 8.71 8.9 8.11 9.13 9.11 11.2 10.5 6.15 9.91 10.3 10 6.02 11.2 10.1 12.4 8.72 8.43 6.34 6.85 9.21 7.96 8.47 8.98 11.8 12 10.1 4.42 11.7 5.76 8.17 9.24 0 9.38 3.49 8.64 5.83 11.4 8.77 7.95 5.33 10.9 3.27 3.01 10.2 10.6 11.7 2.3 9.97 8.85 4.75 6.13 8.06 7.55 6.2 6.97 9.9 4.71 10.7 9.72 13.5 10.5 11.8 7.13 14.3 10.3 6.48 8.35 11.3 10.7 12.6 9.52 8.03 3.58 5.39 9.87 8.13 8.09 13.4 9.22 6.62 10.7 7.93 12.5 15.3 15.8 9.53 6.8 9.05 9.83 6.52 6.81 9.96 8.02 3.84 11.2 5.39 15.4 11 11 10.9 11.8 12.2 9.06 5.56 10.8 10.1 11.7 10.2 10 8.38 9.47 10.2 9.39 11 9.67 8.73 9.19 9.54 11 7.13 9.21 9.91 10.3 11.1 10.4 10.9 10.6 10.1 0 9.41 6.91 10.6 9.24 9.36 11.1 11.7 11.6 9.24 9.12 7.92 6.78 9.39 8.64 9.07 9.23 11.5 7.99 9.87 0 10.2 8.62 10.5 11.8 9.29 11.6 10.3 8.52 8.24 12.3 10.9 9.07 10.5 3.38 12.2 10.3 10.5 10.4 12.8 11.5 12.6 11.4 7.5 8.42 10.8 5.21 3.38 7.04 9.24 9.55 7.58 10.8 9.92 13.2 11.9 9.15 10.4 11.3 0.84 7.04 11.3 13.4 7.56 12.7 10.4 10.4 9.7 11.1 9.42 10.9 11.5 10.8 2.86 10.7 10.1 8.87 8.91 12.2 8 7.03 9.39 9.16 11.4 12.2 10.2 11.3 10.3 10.8 11.2 0 11.3 7.95 11 11 9.48 8.48 10.5 8.77 6.22 9.31 8.13 0 9.35 8.93 9.44 2.86 12.2 10.1 9.76 7.08 10.4 10.7 12.6 11.5 11.2 12.9 8.28 9.02 5.05 7.67 14 9.98 2.7 9.02 9.11 11.4 11.6 10.7 8.65 12.4 1.36 8.2 10.7 7.84 9.23 10.2 6.57 9.84 10.3 10.2 11.6 11.2 4.57 11.5 8.28 9.56 10.7 7.99 11.5 8.97 11.7 5.72 5.92 8.08 5.68 9.42 11.9 9.38 13.4 14.6 8.91 8.91 13.1 12.1 4.42 9.61 5.63 8.64 4.47 7.7 8.72 8.34 3.38 9.82 10.3 8.39 9.33 11.1 9.29 10.9 8.29 11.6 10.4 9.73 7.76 0.84 5.49 9.29 3.84 7.96 6.57 8.95 11.1 9.39 10.3 6.97 5.86 5.59 9.16 9.82 9.52 2.3 9.2 11.2 6.52 0 5.15 11.7 11.4 4.66 6.5 7.95 7.19 10.2 10.2 8.41 6.96 8.47 14.7 5.56 10.3 11.9 9.77 11.6 11.8 8.78 11 8.48 5.68 5.37 10.2 6.93 3.76 2.3 2.3 8.02 8.74 10.3 2.05 8.33 7.62 3.14 5.21 11.8 11.2 8.56 7.21 11.8 9.6 6.16 9.22 11 10.6 9.89 9.4 10.6 11.4 10.2 10.1 7.72 9.07 11.2 9.39 7.18 10.5 7.88 9.39 6.69 11.2 7.05 10.4 8.05 5.39 7.45 9.42 6.61 4.62 2.86 12.6 8.43 0 2.86 9.92 9.95 10.1 9.42 8.16 8.32 9.11 5.05 7.99 8.21 8.76 4.25 9.38 8 9.78 0 6.85 4.42 10.8 8.29 7.26 11.5 10.4 8.47 4.87 10.9 11 5.46 6.8 3.76 7.12 10.7 8.75 11.4 9.99 9.95 8.77 4.83 9.88 10.4 8.74 0 5.88 8.3 8.35 2.3 5.51 10.8 3.01 9.46 11.6 7.77 1.75 10.9 9.08 12.1 10.2 6.68 9.38 10.1 7.35 10.4 7.25 9.74 10.6 10.3 9.14 0.84 9.75 3.58 11.1 10.3 12.6 8.03 11.1 10.3 11.6 11.3 11.4 7.49 7.15 11.5 10.6 9.77 0.84 12.2 1.36 10.6 2.7 11.9 10.4 6.3 2.7 9.21 11.4 12.6 10.5 8.59 10 12.5 9.51 11.1 11.8 10 9.85 10.1 12.9 12.8 11.8 11.8 12 8.51 11 7.18 7.7 7.73 9.72 12.8 12 11.9 9.19 12.8 11.4 7.45 10.4 11.3 9.38 9.72 10.7 8.3 11.1 10.1 10.5 10.3 4.57 3.01 12.3 7.23 10.6 7.31 9.36 11.1 4.52 5.72 8.16 10.5 4.28 7.76 9.49 9.14 5.12 12.9 10.7 10 8.9 9.73 6.78 8.66 8.88 10.2 6.99 1.24 8.17 2.05 5.36 12.7 11.6 8.5 12.6 7.51 9.23 8.89 9.38 9.63 8 9.51 1.36 9.11 11.7 9.81 9.73 10.3 11.2 8.44 9.57 9.16 10.9 9.63 6.68 3.01 9.25 7.81 9.5 13.5 8.59 6.69 12.9 10.5 8.5 9.63 7.99 5.96 10.9 11.2 12.3 8.69 6.63 10.5 10.6 8.91 8.15 10.3 6.98 10.2 8.73 13 8.64 12.5 4.75 7.89 8.39 7.96 4.66 9.32 7 9.53 7.37 7.05 13.1 10.4 9.5 10.1 8.82 4.42 9.24 4.52 8.02 8.07 10.5 3.14 7.21 4.83 8.64 8 11.6 4.42 10.2 8.79 6.34 12.5 11.4 9.63 3.38 10.8 6.5 7.76 2.3 6.18 10.6 11.2 5.12 5.76 5.66 11.4 7.78 8.13 9.38 10.8 9.36 9.36 5.92 9.76 9.59 9.18 14.5 10.6 5.66 6.03 9.51 10.8 10.3 7.58 10.8 9.17 8.37 8.71 2.05 11.9 7.21 9.6 8.09 12.3 9.55 3.01 11.8 1.36 9.01 8.94 8.25 8.2 9.77 9.09 10.6 10.1 8.66 7.55 8.71 6.52 7.86 9.53 9.21 12 9.41 7.67 8.92 7.68 6.68 8.81 7.21 10.6 5.72 15.1 5.7 7.54 9.87 9.52 11.4 11.2 7.37 9.49 8.62 9.25 7.81 7.76 11.3 7.94 7.45 7.46 10.7 8.62 6.61 11.9 7.71 6.03 7.26 7.57 10.5 7.87 10 0 3.16 8.62 11.6 9.13 8.85 10.2 9.77 9.46 10 4.52 11.9 7.09 9.01 6.79 8.56 8.44 10.7 9.66 9.1 7.29 0.84 5.62 6.71 11.4 7 7.61 9.15 7.09 9.37 8.45 11 9.06 7.24 4.13 8.58 6.33 11 9.9 7.64 7.42 10 9.19 9.68 10.9 10.7 10.7 9.26 7.44 9.11 8.47 9.32 12.5 9.72 4.25 9.83 5.09 10.3 6.92 8.1 10.7 12.3 7.04 12.2 7.97 6.68 11.1 6.86 3.01 10.4 9.21 0 9.12 11.2 9.42 9.6 6.38 9.56 12.1 11.7 9.23 9.43 7.2 6.46 8.06 12.6 10.8 2.51 12.2 9.11 11.6 8.82 11.8 10.3 13.5 11.7 4.9 9.11 8.65 7.24 10.8 9.93 12.1 10.4 8.85 11 8.08 9.39 1.36 12.4 7 4.66 6.99 8.01 5.56 8.03 8.62 3.01 4.31 8.89 9.75 4.19 6.08 0 11.1 5.33 9.37 0.84 7.77 7.07 0.84 4.45 10.9 4.13 4.57 3.38 6.93 7.82 5.02 0.84 9.03 6.64 8.71 5.44 0 6.38 4.75 7.86 7.13 8.51 9.3 8.68 1.36 8.94 4.83 6.79 11 7.24 9.99 9.29 8.29 4.06 8.43 5.9 7.11 7.84 6.33 7.07 5.27 6.55 8.79 3.58 8.58 6.68 5.41 9.49 12.7 2.86 8.71 8 3.67 6.52 9.24 9.97 6.37 9.18 9.6 10.6 8.42 7.37 11.9 6.74 10.4 4.91 11.7 9.01 11.3 11.6 10.2 9.57 8.69 10.1 9.83 9.52 3.01 12.1 9.71 8.94 3.38 8.39 9.55 10.9 8.74 5.88 2.05 6.76 7.49 9.82 7.44 11.2 7.52 7.96 3.14 9.23 9.5 10.1 13.3 7.55 5.09 4.62 8.41 7.34 7.18 5.98 8.19 9.4 9.66 11.4 4.95 9.08 10.8 5.78 6.71 1.75 4.66 7.21 8.58 8.98 9.13 8.76 7.78 9.14 6.65 1.36 5.41 8.67 7.24 3.01 11.8 10.7 4.75 8.21 9.11 9.82 5.33 6.87 7.52 9.54 7.84 3.92 9.8 6.87 10.7 7.87 11.8 7.31 9.9 11 5.96 8.23 2.3 8.04 9.49 10.1 8.26 6.28 8.7 1.75 8.96 5.84 9.02 1.36 10.8 0.84 9.27 6.75 5.76 4.66 4.13 3.38 9.69 3.38 0 9.25 10.6 10.1 10.1 10.1 0.84 6.22 7.85 8.41 10.1 10 3.76 8.33 6.25 2.3 4.31 10.1 8.75 12.5 7.53 7.95 11.8 7.86 2.7 9.13 5.86 4.62 5.09 7.04 8.1 9.14 10.3 6.56 9.11 8.29 13.6 9.88 11.4 2.51 7.38 5.61 8.85 11.6 6.46 7.48 12 1.36 6.7 7.32 6.6 8.95 9.97 6.52 9.52 0 7.27 0.84 7.87 2.05 9.68 9.59 7.88 5.74 8.23 11.3 5.96 4.06 6.43 7.59 7.87 10 8.32 9.38 6.45 7 7.04 7.57 8.96 9.79 13.5 12.8 8.11 4.06 7.52 3.99 7.34 0 11.5 11.4 9.36 9.67 10.6 4.06 8.71 10.2 10.2 11.7 5.9 9.95 6.95 5.94 3.38 7.32 8.96 4.41 4.81 8.53 8.22 9.45 11 2.86 7.02 11.4 3.49 3.92 8.5 12 12.6 8.62 8.79 4.37 7.02 12.2 1.75 7.76 9.69 3.01 3.27 8.7 9.06 6.81 9.63 10.7 2.7 2.3 0 7.74 3.67 7.98 3.27 7.42 6.22 8.79 7.83 7.25 5.9 9.43 6.6 5.78 8.96 8.24 7.54 2.51 10.1 7.73 5.66 9.95 6.83 8.11 8.08 2.86 10.7 4.06 8.4 0.84 8 4.19 7.67 7.88 3.27 7.42 5.56 5.76 9.01 7.95 8.56 5.54 0 8.42 4.71 8.92 9.48 9.14 4.87 9.05 3.54 11.6 4.31 8.59 7.8 7.46 5.18 7.68 9.16 8.54 1.36 5.33 8.01 9.41 4.19 2.86 9.91 9.46 8.14 12 8.81 5.28 7.92 8.7 7.49 12.6 9.83 5.02 4.75 9.33 9.55 6.33 4.87 0.84 7.27 10.2 8.49 5.54 6.33 3.76 6.27 9.75 11.1 9.47 9.3 10.9 7.58 1.36 10.7 4.7 10.1 10.3 9.86 7.61 8.76 5.19 5.02 14.1 9 8.06 2.86 8.16 4.19 8.99 8.76 3.38 5.9 0.84 6.21 11.2 4.75 10.5 10.8 2.86 7.1 3.27 6.5 5.54 6.46 6.55 8.49 10.2 7.08 10.5 4.42 2.7 10.1 3.92 2.05 4.06 6.56 6.24 6.25 9.84 11.4 10 4.31 10.6 10.1 7.09 11.9 11.5 7.44 9.94 6.06 9.66 10.9 2.3 8.08 7.41 13.7 8 4.31 12.1 7.21 3.49 8.73 8.05 3.27 11.4 7.17 8.36 10.1 7.47 2.86 7.85 1.36 0 3.38 7.79 2.51 6.85 0.84 2.51 7.07 8.96 3.01 8.01 1.36 1.75 9.88 9.11 4.47 6.11 12 3.46 0 9.14 5.21 6.65 4.37 10.2 20 7.18 8.9 7.2 18.6 11.2 6.96 0 7.29 4.79 5.68 11.5 7.96 8.29 10.9 18.3 4.75 9.53 13.6 2.05 4.79 2.51 7.04 12 8.32 10.4 1.75 9.55 7.06 9.45 8.17 14.3 7.65 8.1 3.49 3.58 4.95 5.27 6.58 6.35 10.3 10.6 3.14 6.87 5.81 3.49 12 9.29 15.5 8.92 8.75 14.8 4.75 7.61 15.9 8.47 16.5 9.14 7.15 14.4 9.46 7.22 7.86 7.22 10.8 3.58 8.57 9.85 11 6.39 8.25 8.8 9.16 6.35 7.73 6.27 7.34 7.3 8.17 7.68 9.25 2.3 9.45 8.39 11.1 13 5.41 6.78 6.49 11.3 13 8.69 6.25 5.15 3.67 6.55 9.13 7.73 0.84 9.44 7.03 4.13 8.39 11.4 8.29 9.45 13.7 6.01 5.9 4.98 2.51 9.46 5.61 10.2 6.56 8.24 2.51 3.67 1.75 2.3 8.07 4.71 11.8 9.51 2.05 10.7 12.6 9.01 4.42 8.42 11.2 1.75 8.28 11.7 9.31 13.7 10.4 8.64 4.57 9.24 9.42 1.75 9.95 7.47 1.75 8.41 7.07 8.04 9.38 6.77 9.77 0 0 7.84 9.13 7.57 6.41 2.3 5.99 3.52 10.6 6.96 7.09 13.2 7.98 7.95 8.1 7.88 12 3.99 6.54 1.75 10.6 7.4 2.3 7.27 6.49 0 10.8 3.84 8.34 10.5 9.51 11.7 9.13 0.84 3.27 8.35 6.25 12.7 5.96 7.45 8.22 9.59 8.52 8.56 4.95 7.48 7.89 4.71 8.83 4.13 8.57 11.7 8.98 3.49 8.12 9.57 8.57 6.9 11.1 5.86 11.2 8.18 6.69 12.6 11.9 10.2 9.24 4.49 6.63 7.9 8.93 8.98 8.41 6.16 9.73 3.58 10 5.13 5.24 6.42 8.01 6.18 7.55 0 9.87 7.95 0 11.7 1.75 3.27 4.79 3.14 6.3 9.49 9.71 5.19 7.73 4.95 8.16 5.36 8.31 7.74 9.7 8.77 7.55 7.74 6.85 7.84 6.33 5.15 6.84 8.5 2.05 3.27 10.8 8.83 6.73 11.6 2.05 0.84 6.63 8.24 4.71 13.2 7.83 0.84 10 10.3 8.53 3.38 2.7 9.12 7.15 8.12 8.09 11 8.7 0.84 10.5 10.1 9.74 8.69 6.81 6.84 2.86 4.47 5.05 8.7 7.75 12.7 12.9 7.16 6.16 0 8.97 13 6.37 9.75 11.1 7.62 10.2 5.18 9.91 8.22 8.85 6.01 10.2 12.2 0 5.12 6.19 12 4.37 10.2 11.5 11.1 7.51 8.62 8.78 8.16 3.92 0.84 10.3 3.82 5.02 6.45 8.78 7.32 8.25 7.44 5.41 8.58 7.32 6.89 8.85 10.2 9.42 9.67 0.84 8.05 10 4.95 9.59 11.2 6.88 6.37 7.33 10.4 4.87 5.59 12 6.01 10.2 2.51 9.95 2.86 7.97 12 3.01 3.49 11.1 9.81 5.96 5.21 7.54 2.51 1.75 4.77 8.42 5.9 8.29 2.51 8.18 9.99 6.73 11.5 8.19 9.79 10.7 8.24 4.87 9.84 10.9 7.53 9.4 9.43 10.6 5.76 8.21 8.27 5.02 6.33 9.33 5.74 6.55 7.77 10.2 7.9 7.95 1.75 11.7 9.47 8.68 7.48 8.56 7.07 8.91 9.6 3.14 6.46 6.66 7.81 3.01 9.63 10.9 7.94 8.08 10.1 3.99 7.27 0 3.99 1.75 10.4 7.26 0 6.02 5.96 4.06 8.57 4.95 9.41 7.84 11.8 7.37 7.97 12 2.51 1.36 5.81 11.8 5.05 7.67 11.3 7.53 4.06 7.41 4.14 10.9 5.46 5.88 7.83 8.68 9.43 9.64 8.67 6.63 6.45 6.31 2.05 7.39 9.87 4.52 8.97 7.04 4.87 12.1 8.71 5.61 8.97 4.25 4.13 8.94 13.7 7.17 4.87 9.1 2.51 8.18 2.05 6.39 8.61 9.78 8.83 5.33 2.51 3.27 13.9 7.75 9.13 5.15 7.47 5.15 8.19 5.02 10.9 9.5 8.25 3.49 5.7 1.36 5.3 6.7 1.36 1.75 8.71 4.31 2.3 6.05 2.51 7.93 1.36 9.54 5.3 6.45 8.51 6.07 8.03 6.21 6.81 9.7 6.72 13.8 3.27 9.5 7.62 8.65 8.96 7.86 8.7 3.27 3.99 4.66 3.58 9.25 8.76 7.97 5.54 11.4 5.72 8.15 8.79 4.52 6.87 4.79 7.56 6.6 8.08 4.52 8.66 5.09 8.67 3.14 8.09 7.07 7.53 8.92 8.2 5.7 2.86 0 9.2 9.32 10.7 5.99 6.08 8.17 6.01 6.38 8.67 7.48 6.77 9.63 5.05 7.04 12.9 5.84 8.33 5.83 3.67 8.27 6.39 6.96 9.03 7.25 9.81 5.66 6.57 5.24 3.01 4.57 9.49 2.05 6.55 9.97 8.38 3.01 8.3 9.17 8.32 5.98 7.62 4.57 2.86 11.8 0.84 3.67 5.86 8.54 10 6.93 3.01 9.22 5.46 8.32 8.25 4.37 15 9.59 0 9.88 5.68 7.45 5.86 5.02 1.36 6.52 6.9 8.7 8.25 6.76 2.86 1.75 0.84 8.38 6.71 5.02 12.7 11.8 5.27 8.45 5.9 6.86 12.5 10.3 10.3 1.36 9.14 12.2 0 6.54 12.3 0 0 2.3 3.76 5.61 2.3 9.24 7.3 4.83 8.19 8.35 6.13 7.09 8.82 1.42 6.91 6.01 9.41 7.24 5.9 8.13 3.01 9.78 4.62 8.69 4.25 6.26 3.99 10.5 9.41 5.33 5.05 9.27 6.06 6.93 5.09 10 4.37 13.6 8.14 13.7 6.99 6.11 12.5 6.75 9.64 9.21 8.89 6.21 4.19 2.86 7.75 8.12 8.59 12.1 4.37 3.01 6.47 3.38 2.3 3.27 11.9 5.41 7.12 5.83 6.39 12 2.3 4.83 3.01 8.7 6.35 6.93 7.11 0 7.66 7.45 10.6 10.6 4.25 4.66 2.7 1.36 7.23 5.3 14.4 4.19 9.48 10.2 8.32 7.58 8.22 9.86 9.33 9.65 10.5 0.84 4.62 7.04 7.02 1.75 11.4 8.66 6.33 7.27 12.8 4.19 9.25 9.2 12.1 7.85 7.7 5.12 6.27 5.56 6.51 10 6.35 0 7.04 4.79 8.1 4.25 6.55 4.83 6.86 9.22 7.5 1.75 6.24 7.09 7.33 3.84 7.47 10.7 7.53 7.74 8.87 10.8 7.01 7.23 9.99 6.66 9.32 12 10.8 6.31 8.83 8.86 6.66 1.75 3.49 2.3 10.9 7.27 4.75 7.17 10.5 3.14 9.9 5.86 9.45 7.69 9.3 4.98 6.89 7.55 0 6.41 4.87 3.58 8.56 11.8 5.66 3.27 7.99 5.13 4.98 8.51 8.1 2.3 9.36 10.2 5.22 4.66 8.59 0 7.66 6.73 10.3 9.07 9.3 1.75 2.86 5.66 9.02 6.55 8.09 9.74 6.97 3.38 11.1 4.52 3.92 8.03 7.28 0 9.24 4.06 4.57 8.15 10.7 7.34 3.84 5.21 3.38 9.66 5.39 8.95 9.51 8.9 6.18 2.3 9.16 5.18 5.12 5.27 10.6 9.6 2.7 9.77 3.84 4.83 4.42 9.37 7.21 5.76 0.84 5.7 5.84 6.13 3.58 7.34 4.37 10.3 5.3 8.84 5.09 5.84 6.1 3.01 3.58 8.45 6.51 7.67 3.67 7.16 7.72 2.67 6.83 5.63 5.09 1.36 4.62 3.38 6.55 2.7 8.45 6.58 10.1 6.3 9.43 5.02 8.28 6.93 0 10.2 6.16 4.75 9.06 5.51 2.3 11 11.4 3.67 11.2 3.01 4.13 0 0 11.1 7.44 6.39 4.06 10.7 8.49 0.84 7.74 11.4 7.87 9.66 10.2 6.61 3.99 4.31 7.24 7.59 8.25 10.8 11.9 4.79 7.01 4.87 9.55 11.5 3.49 4.98 5.33 11.1 2.7 6.52 4.83 4.71 10.7 3.01 6.21 10.4 3.67 3.14 9.75 5.36 3.99 7.52 3.01 8.31 10.9 10.6 4.19 10.8 7.09 2.7 7.9 5.72 11.1 4.52 4.98 5.05 3.84 4.31 1.75 10.1 6.91 6.68 12.7 9.09 7.89 6.28 4.25 8.35 8.43 6.06 6.71 5.56 9.51 7.28 0.84 12 10.6 6.68 7.55 5.94 6.28 2.86 6.38 6.21 5.61 8.58 7.79 7.2 7.83 3.38 10.7 5.09 7.62 5.91 3.05 7.41 2.3 14.5 5.18 11.1 7.52 8.38 2.05 5.84 7.95 0 6.22 5.94 8.51 9.66 12.3 9.77 3.14 8.86 1.36 12.2 5.44 9.72 10.2 4.31 0 7.65 4.31 7.65 3.84 6.39 3.49 3.84 10.5 9.48 9.74 15.7 12.2 6.08 2.05 5.84 9.68 9.48 7.45 11.1 8.12 12.1 13.6 4.37 0.84 11.2 5.27 1.75 9.16 3.49 9.38 6.25 5.78 13.8 11.4 7.8 9.7 9.16 9.6 1.75 6.15 6.91 10.3 10.2 8.46 9.69 7.13 6.11 6.41 1.75 8.54 8.06 4.66 9.63 0.84 9.15 3.01 9 3.76 2.7 9.86 4.71 8.09 6.49 6.33 6.78 6.79 4.06 7.54 1.75 8.55 9.54 2.51 3.01 7.67 10 0 6.43 10.2 7.37 5 9.04 6.7 4.25 3.76 10.4 9.51 8.63 7.07 7.34 7.93 4.79 4.75 0.84 2.7 6.97 4.19 2.05 8.41 10.8 6.71 9.26 7.44 2.3 11.9 7.5 8.77 9.42 7.71 4.13 10.9 6.72 6.9 8.17 6.08 10.4 0 11.2 8.88 0.84 5.76 4.66 6.58 11.3 6.68 9.24 3.76 10.3 6.72 10.7 10.6 10.2 6.22 7.97 7.06 10.2 12.4 9.13 11.5 8.02 8.79 1.36 5.86 9.92 8.72 9.67 10.2 6.85 9.89 9.33 10.5 2.05 0.84 4.25 7.02 8 9.12 7.71 10.5 8.12 10.8 10.1 5.83 6.61 0.84 7.66 6.43 6.08 9.37 2.7 5.84 10.4 12.3 7.85 5.99 10.2 10.7 11.7 9.58 6.28 9.13 5.51 10.5 8.33 5.54 8.91 9.89 9.49 7.31 6.54 10.1 8.06 9.33 8.66 11.6 13.9 1.75 8.83 6.97 0.84 10.4 10.3 5.78 4.25 12.8 8.64 9.65 10.2 6.87 14.1 11.6 9.37 7.85 8.5 10.3 6.76 9.33 9.63 15.8 10.7 10.2 7.02 11 12.4 8.77 9.5 10 4.62 10.4 10.5 9.71 11.9 10.3 10.2 8.74 9.12 5.21 9.24 10.2 6.57 8.01 9.8 8.11 9.96 11.1 0 10.8 11.8 11.3 10.7 7.39 8.15 8.87 9.97 9.68 8.62 6.52 8.5 12.5 9.39 9.94 12 17.1 4.42 9.24 7.53 11.5 5.68 6.86 8.33 13.1 14.2 15.3 16.4 10.9 11.4 6.97 9.04 10.9 11 10.2 10.3 2.3 6.05 8.5 11.6 10.1 8.8 7.17 14.8 8.64 6.52 9 10.2 8.07 5.78 8.27 7.86 1.36 5.46 1.75 6.89 10 4.19 7.77 10.5 10.9 5.86 9.77 8.88 8.81 9.41 6.81 8.52 10.6 9.33 0 10.1 9.14 7.29 3.82 12.8 4.19 8.86 10.7 3.14 3.14 6.08 2.17 8.88 4.87 5.46 5.74 8.12 8.26 13.7 5.05 8.82 9.94 4.79 7.13 11.2 13.3 7.88 13.1 7.83 11.5 11.5 12.5 13.5 10.5 13.3 3.99 10.1 4.42 10.4 9.04 6.84 11.2 4.37 0 3.14 7.88 3.67 9.76 6.34 2.7 4.87 9.61 8.07 8.3 7.67 6.08 9.28 6.5 7.66 7.45 9.7 8.62 3.92 10.2 13.8 10.2 9.72 1.75 3.01 9.35 8.85 5.66 9.23 10.9 0 3.99 5.54 3.14 12 10.8 3.9 10.3 7.31 2.65 8.95 5.02 7.37 3.38 7.7 0 1.75 1.36 8.89 6.79 5.84 5.72 8.63 13.6 9.09 6.45 9.26 7.95 4.51 3.49 6.43 0 8.22 7.35 8.27 11.1 7.37 7.91 8.58 8.83 10.8 10 8.99 7.73 8.64 9.55 8.06 9.14 6.38 13.2 8.52 4.98 8.91 9.34 8.66 8.51 8.86 8.94 3.01 11.2 5.3 10.6 4.95 9.75 5.74 10.4 7.97 4.52 7.96 8.15 1.36 7.53 9.03 5.3 0 12.8 7.37 0.84 1.36 5.86 5.9 7.51 7.8 8.37 7.08 10.2 8.2 6.41 5.15 7.38 9 5.96 12.4 7.73 3.14 13.8 5.56 8.67 2.3 2.05 2.7 9.68 6.69 7.92 7.99 12.1 7.46 10.1 9.24 8.12 8.34 14.8 10 7.18 6.01 7.35 8.21 8.07 4.62 7.67 8.89 10.2 9.98 9.46 6.37 12.2 9.42 9.11 9.03 7 10.2 10.1 10.7 7.1 9.58 10.6 11.8 3.01 5.02 0 7.29 6.46 10 2.86 9.68 9.83 5.84 6.82 10.7 11.3 11.8 9.66 8.74 7.67 9.76 9.3 8.13 9.63 2.51 6.89 8.44 11 9.66 10.3 9.95 6.31 8.26 11.4 4.25 0 6.01 10.5 9.23 5.98 11.4 3.27 9.05 10.1 6.57 10.5 6.89 11.2 9.16 11 11.5 5.33 12.4 11.2 6.35 10 11 3.99 9.48 1.75 11 10 11 9.14 7.71 11.2 12.2 8.16 4.79 5.78 7.87 8.96 3.92 9.97 9.26 6.6 8.19 7.96 9.75 2.51 12.1 10.4 10.9 5.74 8.61 10.9 1.75 10.1 10.7 5.36 9.56 7.35 0 9.75 8.85 6.69 4.31 10.3 7.07 7.5 7.94 7.03 10.3 6.03 10.5 7.35 10.9 0 11.8 9.53 8.27 6.64 7.87 8.21 6.05 5.59 10.8 9.77 9.84 9.13 11.5 10.3 4.31 8.76 8.34 10.1 14.5 8.74 6.16 10.3 6.47 7.1 9.88 10.7 10.2 10.5 2.3 6.3 8.17 4.31 6.65 11.2 5.49 11.2 14 6.18 7.59 9.13 8.18 10.7 5.7 6.58 6.38 7.95 6.88 7.76 10.9 8.1 9.63 8.87 3.01 8.28 9.63 8.44 10.2 12.7 6.56 10.9 6.3 5.3 8.14 8.27 8.42 0.84 5.9 5.39 4.25 7.45 13.1 2.3 8.78 8.8 10.3 3.67 5.36 4.52 2.05 4.98 5.83 8.44 3.01 9.69 7.43 5.12 1.75 7.98 8.11 6.71 7.27 6.94 5.94 6.16 12.3 5.21 12.4 7.92 6.08 7.65 10.4 3.27 9.03 8.04 6.97 8.13 11.4 9.13 7.92 6 9.69 5.24 10.3 3.99 10.4 5.88 8.45 7.84 7.24 6.35 7.16 9.58 10.8 4.25 0.84 5.84 7.14 3.92 8.02 4.47 4.32 7.67 9.25 10.9 5.12 9.83 10.4 5.18 7.47 8.12 8.77 4.1 8.39 6.16 5.21 12.4 8.51 7.72 10.9 8.47 7.55 8.94 5.7 8.33 0 8.88 7.18 9.43 5.74 10.9 6.76 10.3 9.56 9.21 4.79 2.86 9.64 7.76 9.49 9.36 7.99 7.55 10 8.89 8.82 6.54 4.52 8.39 7.03 4.34 7.3 10.9 7.82 7.11 3.49 4.42 2.05 0 4.71 9.63 1.36 4.42 3.84 1.75 3.92 9.03 7.6 7.35 8.09 10.5 8.45 7.61 6.57 9.01 8.88 9.03 9.92 10.4 6.21 10.1 9.73 7.03 3.27 2.51 8.53 9.61 5.39 8.22 8.32 10.2 14.1 11.9 7.34 1.36 10.1 5.12 8.54 10.7 6.72 11.9 11 10.4 10.8 10.1 8.91 5.86 13 9.59 12.3 0 10.4 2.05 5.51 9.76 9.86 6.69 12.3 4.57 12.7 10.1 12.7 8.54 3.67 10.9 11.3 9.84 1.36 8.48 10.1 6.9 9.69 11.1 10.5 11.8 8.51 6.58 5.81 9.16 9.68 8.72 9.28 6.5 8.92 7.48 6.03 4.83 10.4 8.4 10.6 10.9 10.4 10.2 8.92 10.7 6.39 9.53 7.73 10.2 11.3 5.24 12.3 9.25 9.78 8.29 10.4 9.4 8.82 8.28 11 10 8.04 9.28 12 8.46 8.35 9.89 9.2 10.3 12 9.05 5.46 9.33 9.65 3.49 9.93 9.9 8.63 1.36 9.42 4.71 9.38 8.57 11.7 10.1 9.46 10.9 8.75 8.66 7.79 12.5 7.19 8.66 11.4 1.36 11.4 11.4 10.2 10.1 9.48 7.83 9.43 9.99 9.83 9.84 9.91 10.4 9.12 10.6 9.11 10.3 10.7 10 6.71 7.81 11.6 8.94 8.78 0 8.64 9.83 10.4 4.71 5.96 8.58 8.23 4.25 10.1 7.56 3.67 11 10.3 9.79 4.52 9.65 11.8 0 2.51 0.84 9.56 11.1 11.1 9.44 5.59 4.98 4.47 8.82 10.4 7.95 8.88 6.89 9.45 3.76 7.37 0.84 9.53 9.02 9.99 10.3 11.2 9.49 10.3 4.06 12 12.2 9.26 9.73 6.61 4.19 10.7 10.4 9.79 8.66 9.45 9.09 9.29 8.09 9.05 10.6 10.3 10.2 10 10.5 5.94 7.63 8.79 12 10.1 8.09 9.46 10 11.4 10.2 8.88 9.2 4.83 10.2 11.4 10.6 9.65 10.6 9.09 9.4 9.72 10 11.1 5.72 8.03 10.3 9.58 9.33 7.84 10.8 6.68 8.94 10.4 10.7 7.08 8.71 8.59 11.3 7.72 9.59 8.35 8.84 9.53 9.69 9.42 9.01 10.1 8.78 11.1 10.2 3.76 11.3 0.84 10.3 8.13 4.62 10.4 9.02 9.95 10.9 7.41 11.5 10.3 7.53 5.06 1.36 8.92 9.93 11.5 8.07 11.9 8.58 9.65 9.75 4.71 9.1 11.2 9.19 9.42 7.03 10.2 11.8 10.2 10.8 9.55 8.49 10.1 8.29 9.36 8.86 0 10.7 9.27 11.4 9.35 9.07 10.4 9.62 15 9.47 8.76 11.3 10.4 11.9 9.35 12 9.73 10.5 7.7 11.8 9.37 7.88 7.91 9.47 9.26 9.02 10.8 9.44 8.13 11.6 12.1 11.6 9.48 10.1 10.4 8.32 13 10.5 11.6 10.9 11.3 10.7 12.8 10.8 8.46 11.5 10.4 9.98 9.52 9.67 5.96 10.8 11 3.84 11 7.53 4.42 9.62 9.46 10.2 8.77 13.3 10.9 11.7 10.6 5.18 10 9.24 7 10.4 9.81 10.6 9.68 9.94 7.64 8.8 8.06 8.57 9.23 7.78 5.12 9.72 9.48 7.38 9.4 7.89 10.1 10.1 10.6 8.1 10.1 10.3 7.28 7.1 9 10.5 9.33 5.81 7.95 9.25 9.27 6.82 9.56 10.4 10 9.03 9.21 9.3 8.91 10.4 11.9 10.2 9.33 8.5 8.81 9.47 10.7 10.2 10.5 10.4 8 10.6 9.54 6.52 7.04 9.3 6.3 6.08 11.2 8.94 9.79 8.03 9.51 10.7 9.51 11.1 10.6 4.06 9.79 10.2 7.59 9.72 8.89 3.99 8.66 10.3 7.74 11.1 12.2 8.65 8.68 10.6 5.96 8.75 2.7 10.6 8.45 9.79 7.96 7.63 10 9.16 12.2 10 9.7 9.02 10.1 9.74 9.57 8.26 7.22 9.63 11.3 5.44 8.2 11.5 12.1 9.92 10.2 4.95 16.4 11 9.88 11.2 11 8.86 9.54 8.13 9.33 7.32 10.8 10 8.94 12.4 10.9 6.77 11.9 8.95 11.1 10 12.7 9.5 8.78 8.42 9.04 11.2 10.8 7.93 10.7 9.62 11.3 11.1 10.5 10.3 10.6 9.29 11.5 10.8 7.41 11.2 5.72 8.89 11.7 9.35 7.95 9.52 9.36 9.35 11.8 9.31 5.02 10.1 8.47 9.7 11 11 1.75 9.4 7.04 4.31 9.17 11 7.71 11.8 8.58 6.55 10.1 10.2 3.58 8.47 8.14 11.2 11.3 9.5 5.81 11.2 11 12.4 10.8 7.63 7.3 5.05 7.24 7.56 6.73 10.7 8.41 6.89 7.26 11.4 10.4 12 9.12 9.26 9.45 10.8 11.4 11.2 3.01 10.7 10.7 7.24 11.2 2.05 9.04 4.87 5.18 7.27 11.5 9.61 9.99 8.72 8.97 9.75 8.69 6.95 8.47 10.7 10.1 9.97 8.89 10.8 10.2 8.75 10.6 9.94 8.94 3.27 1.36 15.2 9.4 10.5 13.4 10.5 9.54 6.11 8.26 16.2 9.51 8.64 4.06 7.87 8.67 5.41 4.52 15.4 8.62 7.79 10.7 3.49 8.69 1.36 4.42 8.64 10 11.7 8.54 6.1 8.66 6.43 8.8 8.55 9.73 11.4 10.9 10.9 9.73 3.92 3.67 12.3 1.36 8.6 11.1 4.47 7.97 9.45 4.79 10.1 9.82 9.14 6.08 11.4 8.41 9.33 9.69 11.6 6.31 6.46 8.59 10.4 6.46 9.47 9.39 10 9.55 7.63 6.35 11.3 7.54 9.08 10.9 9.42 11.3 9.13 2.51 7.77 10.9 10.1 11.3 7.82 0 2.3 3.49 9.93 8.7 10.6 11.5 5.86 10.5 11 10.8 7.51 10.2 13.2 12.4 10.3 9.75 8.41 9.13 12.8 3.76 9.81 8.95 8.14 10.7 9.84 10.5 7.06 7 9.28 10.9 8.26 7.55 11.3 8.65 10.3 12.1 4.87 9.01 9.98 10.1 9.22 6.88 10.9 7.94 1.36 9.38 10.7 3.27 13.6 9.44 5.64 11.2 9.29 11.9 10.1 2.05 3.68 8.4 9.05 8.03 6.15 7.72 8.62 9.6 8.36 8.21 9.07 9.13 12.4 9.31 12.1 9.04 3.84 3.92 6.85 4.54 9.88 1.36 8.71 9.59 9.62 5.63 3.92 2.7 7.41 7.37 5.39 7.65 8.01 8.87 4.31 0.84 7.77 9.16 9.28 8.11 9.27 3.01 6.22 15.6 9.13 11.8 0 16 9.65 10.5 13.2 6.16 4.75 3.92 7.78 2.86 2.05 11.9 4.47 4.6 8.86 6.56 7.48 8.22 0 5.05 8.85 10.2 8.69 2.51 4.75 11.6 9.53 8.4 11.1 3.14 9.05 8.46 7.58 8.19 3.27 3.67 10.8 7.45 2.86 10.6 6.86 7.99 8.83 11.3 3.58 4.42 9.63 10.1 8.1 9.09 9.74 5.33 5.72 8.78 5.15 5.63 10.6 4.71 0.84 8.22 2.3 0.84 8.76 7.96 6.21 5.25 6.3 0.84 9.15 9.32 6.68 7.94 9.15 9.88 7.12 3.67 12.1 0.84 5.54 11.5 6.06 10.2 7.53 8.72 11 4.42 5.51 7.67 4.19 1.36 5.02 9.19 8.74 8.23 6.11 4.42 7.65 2.7 8.89 6.46 6.88 4.13 3.67 8.15 4.91 6.57 6.62 7.88 12.4 8.21 9.51 4.83 8.21 8.19 7.53 10.1 6.46 6.63 4.19 3.84 8.18 8.87 6.86 9.22 5.59 7.32 4.98 8.65 10.9 5.66 9.37 5.78 7.39 9.98 7.77 7.49 0 4.83 2.86 1.75 2.05 3.67 8.66 1.36 4.25 4.52 2.05 7.75 3.14 5.12 5.02 3.38 4.25 8.47 4.71 8.44 4.42 4.37 6.46 2.86 6.09 5.78 0 2.7 2.05 10.6 8.35 1.36 6.15 7.14 11.3 10.9 8.95 9.04 2.3 9.85 11.2 9.84 7.8 9.77 4.42 5.61 5.05 4.75 9.53 11.5 10.7 4.13 11.4 6.22 11.4 6.97 10.6 9.99 9.63 8.35 9.27 2.7 11.2 9.07 8.81 7.95 8.56 1.75 9.5 10.6 9.05 8.87 6.21 8.64 10.3 7.52 8.7 1.36 13.1 10.8 8.76 10.5 10.3 5.87 3.76 10.2 7.7 2.05 10.1 3.99 10.4 9.28 10.5 7.11 8.65 9.27 11.8 8.45 10.2 8.77 8.28 6.9 8.1 9.27 9.81 6.87 10.6 0.84 8.93 3.49 8.67 10.7 11.4 9.83 14.8 9.2 10.3 3.49 13.8 9.11 9.53 7.86 8.43 6.58 7.87 11 11.1 8.64 8.5 7.48 8.13 10.1 7.85 1.36 11.1 9.91 8.95 9.43 10.9 8.74 9.84 8.16 10.2 5.02 9.3 11.8 8.31 7.27 10.9 9.47 7.88 3.38 8.77 11.2 10.9 1.75 11.8 7.39 8.51 3.67 5.98 8.3 9.44 7.34 9.41 3.67 8.82 1.36 8.86 2.7 2.05 4.79 9.66 10.5 7.5 12 8.99 8.95 8.22 7.99 8.36 9.78 10.6 10.5 8.99 6.68 9.91 10.4 10.3 8.01 8.11 11.4 8.5 11.2 11.4 11.8 5.54 9.79 10.3 9.22 16.1 10.9 9.01 5.94 5.78 10.9 8.88 9.5 9.62 10.2 8.07 8.68 0.84 10.7 8.73 10.2 8.91 9.74 10.4 9.74 11.2 10.8 11 11.1 10.3 11.1 8.82 10.1 8.47 11.9 9.43 11.6 7.97 8.88 11.2 9.08 8.78 11.3 11.8 8.9 6.24 4.42 8.83 9.63 10.2 8.63 8.13 5.33 6.38 7.91 9.41 9.29 4.66 8.14 8.76 7.16 6.76 3.49 8.32 4.57 7.92 6.24 9.23 8.06 7.45 9.33 10.4 10 9.54 10.2 9.29 8.38 10.4 10.6 11.5 10.9 11.6 2.3 8.37 10.4 9.9 10.6 9.39 9.76 9.71 7.7 2.3 10.9 8.03 11.8 11.1 3.58 8.76 9.29 11.4 9.07 11.1 8.86 10 8.93 9.08 10 11.3 11.7 9.85 4.62 11.4 10.2 9.03 9.26 5.99 10.1 3.01 9.81 9.72 7.26 3.67 10.7 12.3 7.28 9.41 9.26 9.41 9.87 11.4 9.95 9.24 11.5 8 6.75 9.82 12.8 10.5 6.31 9.37 3.49 9.16 4.66 9.42 14.4 0.84 8.68 6.06 9.1 9.6 11.9 4.62 10.7 1.75 6.39 6.45 10.9 8.83 10.7 7.58 6.9 7.76 7.22 6.57 4.62 7.01 1.75 7.12 10.5 9.2 9.37 5.12 9.79 8.21 4.31 8.75 9.21 7.81 11.8 8.45 6.15 8.07 8.4 8.38 8.34 9.93 8.45 8.53 7.31 10.3 9.44 6.5 9.77 1.36 8.06 9.25 9.46 10.4 9.88 8.24 9.17 0 10.3 9.05 10.4 11.1 8.19 1.75 8.19 7.59 7.5 10.5 11.1 11.1 12.3 11.3 11.6 0 4.71 8.35 10.2 8.34 7.72 9.77 6.75 9.9 11.6 7.04 7.92 8.87 8.95 10.6 10.1 9.37 9.78 9.15 10.2 11.4 2.51 5.46 6.28 10.8 4.19 4.13 7.14 9.38 1.36 11.2 7.37 8 8.24 2.86 9.7 4.98 7.65 3.58 12.2 12 11 3.84 9.18 4.66 7.8 10.8 7.27 10.3 6.38 6.56 6.25 1.36 9.27 5.12 10.2 8.86 7.73 6.03 8.75 8.91 3.84 0 8.48 6.22 5.3 5.54 8.77 1.75 12.4 7.75 11.1 7.6 8.74 10.3 7.47 8.43 8.93 10.6 2.86 7.16 11.5 8.48 6.47 8.79 9.61 14.8 10.3 10.4 10 5.72 9.43 10.4 0.84 6.38 9.85 1.75 8.95 9.51 6.39 10.1 12 8.06 10.6 8.38 9.29 11 3.58 8.63 5.02 5.12 9.84 7.86 8.52 11.2 12.5 9.26 2.05 9.86 9.16 8.99 11.2 2.3 5.24 9.78 5.78 9.31 6.46 8.24 7.55 6.19 11 5.94 11.7 1.75 8.6 9.76 7.34 10.1 8.89 5.3 2.51 10.8 7.43 10.4 12 9.91 8.8 6.15 7.1 5.3 8.94 9.42 11.3 4.06 4.52 10.7 1.36 8.71 8.81 3.92 8.08 10.4 8.11 6.65 7.99 9.44 6.22 0.99 8.2 10.5 9.3 7.07 9.42 9.64 3.27 9.99 0 7.5 8.48 6.51 11.4 9.14 11.8 9.18 5.36 3.58 10.6 8.01 1.75 6.71 1.36 1.36 0.84 7.35 9.75 4.71 7.04 12 4.25 3.49 6.86 8.83 5.41 8.97 7.2 5.76 9.46 9.41 12.2 9.6 10.4 8.52 9.4 10.4 10.3 11.8 8.18 6.01 9.84 9.65 10.3 2.05 4.47 9.8 6.43 7.76 8.45 8.19 8.9 8.28 0.84 9.18 5.61 5.94 5.84 7.87 9.18 6.11 7.27 4.71 8.75 1.36 4.57 9.26 12.2 6.83 10.2 9.44 11.1 9.42 4.42 12.2 10.5 9.51 11.8 12.2 8.41 10.1 10.4 9.86 10.1 7.38 8.6 8.2 8.98 8.5 8.84 7.54 7.64 10.3 10.7 9.18 9.07 10.6 10.7 10.1 6.25 10.1 8.16 9.2 10.6 3.99 12.1 8.83 3.38 6.62 8.43 11.1 6.52 8.23 13.8 1.75 10.9 9.03 9.3 8.4 7.29 10.3 8.3 8.38 13.2 10.3 5.54 7.05 10.7 15.3 0 8.1 12.6 12.5 5.7 2.86 7.23 10.8 8.16 2.7 10 10.6 5.33 11 5.68 1.36 11.4 6.56 8.51 9.19 11.5 11.2 9.72 11.9 9.33 10.2 10.8 3.27 5.88 4.98 2.05 12.1 7.08 8.99 12.9 3.99 9.34 6.45 7.33 10.7 7.68 7.51 2.7 6.18 4.25 6.28 8.27 6.71 7.85 5.18 0.84 7.58 6.71 7.73 9.36 9.44 7.27 7.49 3.49 5.96 5.63 0.84 7.04 16.3 7.96 13.6 11 6.47 8.17 9.38 7.46 6.45 7.55 6.85 8.21 9.24 8.2 8.19 5.49 8.35 3.6 11.8 6.56 7.7 6.41 8.91 3.27 6.45 5.9 9.49 2.51 7.58 10.7 4.19 4.66 8.05 2.7 2.51 3.14 9.88 2.05 8.46 3.58 8.19 5.63 8.21 5.04 3.49 4.09 4.47 8.86 0.84 5.15 0.84 7.85 0.84 7.11 1.75 3.01 9.95 9.57 8.32 5.02 5.6 6.03 8.35 5.51 4.47 7.17 1.36 1.75 6.71 10.2 5.59 7.73 4.06 6.15 8.78 6.06 10.4 4.71 5.83 7.18 3.38 4.95 7.82 8.58 3.15 5.3 8.84 9.13 10.4 6.25 4.57 9.8 9.63 1.75 6.94 7.88 5.99 9.83 5.3 8.2 4.44 9.88 8 3.49 1.36 2.86 6.62 7.09 0.84 3.76 1.36 10.1 3.14 1.36 6.65 14.8 9.14 8.43 3.99 9.19 3.49 3.01 0 2.7 10.8 2.7 5.96 8.04 3.01 8.99 3.27 12.2 3.84 5.91 4.52 7.79 7.31 9.37 5.01 2.3 7.87 4.95 5.88 4.79 8.83 12.4 2.86 6.97 7.72 5.83 5.86 4.91 5.88 6.45 2.3 2.3 4.75 4.13 0.84 8.22 7.63 3.99 7.52 10.1 5.21 2.3 0.84 8.56 3.38 3.99 2.86 8.31 4.71 7.21 6.47 6.97 10.4 7.16 5.62 7.98 0 3.12 4.57 6.27 0 6.65 4.57 0.84 5.56 1.36 7.05 5.02 2.86 6.25 8.29 3.38 6.88 4.57 10.5 8.45 3.76 5.24 3.01 5.25 0.84 8.62 10.5 7.05 8.55 10.2 4.19 8.09 1.75 3.99 6.65 6.9 7.58 7.34 8.88 8.39 0.84 3.84 8.94 8.48 4.42 5.86 7.64 3.14 8.11 4.52 6.81 10 9.23 7.39 9.08 6.58 4.31 1.36 0 8.54 1.36 7.95 9.54 4.71 6.01 5.96 7.73 8.51 5.3 8.81 0.84 11.2 1.36 5.76 4.57 5.61 6.58 6.69 9.24 1.75 7.13 9.31 3.14 6.83 8.14 6.69 6.57 9.75 0 6.44 5.27 8.92 7.14 2.3 8.74 2.86 5.02 9.54 2.05 5.02 7 7.75 5.99 7.22 4.42 1.75 5.18 3.49 4.37 3.92 8.57 7.95 2.86 11.2 6.91 8.01 4.31 4.66 4.47 7.94 5.72 7.98 9.43 9.02 3.14 10.6 8.04 3.27 3.92 5.84 9.59 11.1 9.87 4.19 7.48 8.29 8.77 6.31 3.14 4.19 7.46 7.97 2.3 3.14 6.05 7.28 7.61 9.2 3.76 9.06 9.65 11.1 11.4 10.8 4.66 12.7 2.3 11.6 12.3 6.33 9.89 11.2 10 10.8 4.71 9.14 10 8.91 10.4 10.7 7.93 10.3 13.5 13 8.43 9.74 12.1 3.49 8.61 5.68 10 3.27 8.03 10.3 10.2 9.77 12 10 8.71 8.43 7.88 6.15 11.2 9.97 9.18 10 11.4 9.04 5.84 7.66 9.3 7.39 9.36 8.52 8.98 11.6 10.4 4.62 8.02 9.87 5.09 7.96 7.77 9.75 4.71 10.5 11.4 7.48 8.6 6.82 9.63 9.7 12.2 5.25 8.75 10.1 10.1 7.95 10.3 9.92 9.45 9.95 9.88 6.89 12.1 10.8 10.2 9.59 7.04 10.3 8.4 6.28 7.62 9.38 8.16 8.89 10 8.98 9.71 8.69 10 11.3 10.2 7.13 7.95 9 3.38 9.49 11.1 9.51 4.75 8.85 10.7 7.97 9.48 4.52 6.05 9.9 4.06 11.2 5.39 3.49 7.58 6.11 4.42 3.84 8.58 11.3 11.3 8.26 13.6 0.84 10 14.4 10.9 9.66 13.6 10.7 8.17 10.2 9.15 2.3 9.36 9.48 8.68 5.68 13.4 8.53 7.78 8.27 9.94 3.99 10 9.06 7.49 9.56 12 9.29 9.68 7.61 5.98 8.87 9.41 12.5 11.9 9.46 2.7 11.6 10.2 4.87 9.76 8.65 2.05 10.1 8.04 5.51 8.14 9.41 3.76 9.7 9.62 8.97 11.1 5.76 10.9 0.84 5.83 8.47 9.03 10.1 4.57 10.8 8.36 8.33 1.36 5.12 5.05 8.08 9.19 0.84 6.25 9.81 13 9.39 4.71 10.3 10.2 9.54 7.45 11.1 10.7 10.7 7.76 11.4 5.86 10.5 6.65 10.4 8.26 6.96 9.24 9.99 3.14 7.98 5.59 8.63 8.13 8.05 8.14 8.89 10 11.1 8.1 10 12.3 8.16 10.7 13.4 9.03 7.12 6.7 7.61 6.45 2.05 11.9 10.5 8.79 3.76 7.43 9.24 10 7.08 11.4 9.12 6.64 12.4 8.11 12.1 7.86 3.49 11.6 3.14 9.18 8.46 9.45 8.41 7.89 7.25 10.1 9.46 9.24 10.1 11.3 8.3 8.58 10.6 9.68 0.84 8.58 6.54 11.7 7.42 6.54 9.18 11.3 14.1 9.54 1.76 10.2 4.19 10.9 7.61 13.1 5.54 7.01 10.4 7.83 7.86 6.66 11.2 9.19 8.83 3.38 4.75 2.51 13.3 5.81 1.34 9.86 10.7 8.74 15 12.8 13.9 10.9 9.98 7.07 11.9 10.9 9.23 2.7 10.9 13.8 7.68 4.98 9.76 12.9 13.9 12.7 0 2.05 3.01 4.19 7.9 3.84 10.8 8.41 10.8 10.8 9.79 10.2 11 6.37 12.8 14.2 11.7 5.54 8.6 11.7 11 13.6 5.21 13.1 3.01 7.93 5.98 11.1 6.79 8.24 5.72 5.68 9.78 3.01 10.1 9.32 7.15 10.1 3.99 3.67 10.1 8.22 12.9 9.33 9.08 12.6 6.66 12.5 9.93 10.9 9.94 9.91 12 8.74 11 9.73 10.7 8.67 9.47 10.7 7.51 8.81 14.1 14.7 13.8 10.8 9.4 13.1 8.98 6.55 12.6 12.5 3.58 10.4 8.45 11.8 5.02 13.6 12.6 12.1 8.31 6.97 6.24 12.7 10.8 4.3 10.6 4.37 5.39 4.37 6.95 8.6 10.3 8.98 12.6 10.6 9.17 11.9 12.2 9.39 8.63 9.06 9.63 8.39 5.05 11.3 10.6 14.7 8.27 0 9.48 7.99 8.42 9.09 5.33 4.69 2.05 9.11 1.75 10.4 1.36 9.27 13.9 8.65 13.6 12 12.9 11.9 11.5 12.1 10.7 10.9 13.3 0.84 12.5 13.1 0 5.05 6.27 9.33 8.65 8.28 6.67 6.81 1.78 6.55 3.67 5.7 1.75 3.92 0 9.52 8.88 9.58 8.2 7.29 7.03 8.2 3.14 3.99 9.95 8.15 6.37 10.7 6.54 8.71 11.1 10.7 5.18 5.86 7.93 5.27 8.98 11.1 0 5.94 2.7 10.2 1.36 7.19 9.87 10.2 9.78 7.46 10.2 6.22 3.67 11.5 12 11.4 11.9 10.9 9.86 6.16 6.51 6.35 1.36 10.2 11.1 8.93 8.38 9.28 10.6 10.7 13.8 12 5.61 8.71 10.6 13.9 9.6 7.44 7.31 12.7 11.7 14.3 10.8 6.96 13 7.73 14.4 12.5 11 11.1 11.4 10.7 13.6 6.34 5.84 13.5 10.5 7.94 5.54 2.05 3.84 6.24 2.86 0 3.27 7.76 12.3 6.77 11.1 11 3.76 7.66 4.37 1.36 0 8.46 12.3 4.47 8.25 3.14 9.7 8.99 5.09 9.31 2.7 0.84 5.96 3.27 9 10.4 7.66 11.4 6.31 11 9.08 5.44 3.38 0 7.01 6.91 7.55 11.4 2.3 7.81 8.1 4.71 9.43 9.35 9.77 8.36 10.8 9.53 7.67 8.76 6.39 8.21 5.88 0.84 1.75 8.48 1.36 6.05 8.39 7.37 7.14 3.01 8.57 7.69 5.16 4.19 7.55 5.41 6.56 8.65 7 1.36 12 8.05 2.05 5.51 11.1 7.75 4.57 3.27 7.37 4.25 11.8 7.53 0 3.01 7.03 8.09 11.2 10.7 1.36 2.86 4.42 4.52 3.49 8.09 0.84 0.84 7.66 2.05 9.06 2.7 10.2 8.52 6.08 3.78 3.76 5.68 3.49 7.79 3.84 6.56 5.49 7.33 3.84 6.97 4.06 8.81 3.38 8.18 9.55 3.14 1.36 1.75 7.46 3.27 10 10.6 9.36 10.4 5.18 10.7 0.84 3.76 2.05 9.35 11.4 2.3 7.41 8.92 2.05 9.99 0 11.1 8.67 12 12.5 4.19 10.7 7.34 3.76 4.71 0 6.03 4.37 5.92 3.14 10.2 0.84 5.24 9.58 4.52 7.29 8.4 4.52 8.06 2.05 1.36 2.05 7.15 8.31 9.55 4.79 4.95 0.84 5.86 8.28 7.54 2.51 3.38 1.75 2.05 2.86 4.57 2.3 10.8 5.44 9.24 5.96 4.91 8 8.54 2.86 4.19 10.9 3.58 11.3 2.3 4.25 0 3.84 2.51 3.01 0 10.9 3.01 2.51 7 4.42 4.98 0 4.31 3.58 9.54 1.36 11.1 2.3 3.95 10.2 8.67 3.76 3.67 6.68 0 10.5 11.7 8.44 8.22 13.4 10.2 7.45 8.25 7.78 13.5 7.36 5.68 8.6 10.9 9.69 0 12.1 5.88 6.12 4.13 12.8 12.5 3.67 8.36 14.8 0.84 6.88 13 5.88 2.51 12.7 5.68 2.86 9.26 14.6 4.66 14.5 8.38 8.48 1.36 5.74 4.06 4.91 6.47 9.22 8.82 13.8 9.01 9.81 6.71 7.73 7.2 11.2 6.3 9.15 9.67 1.13 1.36 8.59 7.27 1.75 1.36 4.75 7.67 4.62 6.38 5.72 0.84 0 8.83 11.3 10.2 2.51 5.96 12 9.03 6.56 7.01 3.01 7.79 9.26 8.79 11 1.75 12.8 8.4 6.22 7.22 4.98 7.08 9.43 4.66 4.37 14.7 3.38 2.51 4.13 8.94 10.9 6.19 9.73 3.01 1.75 4.31 2.86 11.2 3.93 9.54 12.4 8.06 8.31 6.49 8.83 7.91 5.98 4.47 10.5 3.49 11.5 10.4 11.7 12.9 4.31 11.6 8.9 8 10.4 12 7.13 5.33 9.12 7.39 7.26 7.54 8.01 2.7 6.06 8.51 2.86 9.03 9.02 8.92 9.94 11.6 10.4 5.33 3.67 10.2 5.83 12.8 5.92 9.18 11.4 9.79 6.7 9.4 10.4 6.24 8.89 10.7 7.16 8.48 1.75 9.45 7.55 9.18 3.38 12.2 8.9 7.24 6.68 13.9 7.42 12.1 9.91 4.79 6.08 0.84 7.85 8.69 7.87 11.3 8.97 13.9 11.3 10.3 6.03 12.4 11.7 12.9 2.3 6.89 7.97 0 0.84 8.73 12.7 6.9 8.03 11.2 10.8 10.6 6.55 10.1 8.33 10.2 11.6 10.5 9.45 11.2 7.9 9.55 11.7 7.74 15.2 15 14.9 12.2 7.85 9.65 11.7 8.59 11.5 0 4.31 6.07 8.58 6.25 7 1.96 10.8 4.83 9.32 5.51 5.92 9.96 7.81 0.84 7.31 2.7 3.01 7.27 4.83 4.75 5.44 9.03 6.37 8.03 10.3 1.75 1.36 6.76 8.69 8.77 6.27 8.48 2.3 3.67 10.6 8.56 2.86 7.27 6.63 6.24 6.92 0 8.39 2.51 6.34 6.77 13.9 7.43 8.43 6.1 10.6 2.86 9.86 8.21 3.67 7.92 2.86 8.05 10.7 7.37 6.68 1.75 2.86 3.38 3.01 7.14 6.19 7.02 5.76 7.22 8.38 7.09 8.19 0 3.84 1.36 2.51 5.64 3.14 9.9 8.2 3.14 4.66 9.17 5.07 10.1 3.27 8.16 13.5 3.77 3.14 4.87 5.78 9.04 8.51 0.84 10.2 3.27 3.76 5.74 5.41 7.45 5.44 7.86 12.1 6.08 3.38 5.56 3.01 8.95 8.12 9.19 2.7 6.5 12.3 4.25 3.58 4.57 7.59 7.16 0.84 3.49 6.57 7.51 8.79 0.84 6.13 14.5 10.7 7.21 6.25 10.8 3.58 5.93 7.21 9.26 4.37 11.3 9.7 5.86 10.7 1.11 1.36 3.21 12.4 3.01 1.91 6.13 8.96 3.49 10.6 7.25 1.75 2.05 1.36 5.18 0 10.7 7.38 7.6 10.2 10.1 11.7 10.3 9.54 6.25 10.5 4.87 10.9 11 9.33 3.58 1.75 15.4 10.3 5.02 9.42 6.78 1.36 13 6.54 4.71 12.7 1.75 7.75 4.71 4.52 11.9 3.22 9.3 4.31 3.49 3.14 8.09 3.58 7.95 15.5 8.92 10.2 8.12 3.76 4.22 2.05 4.31 8.41 7.5 3.27 2.51 3.01 5.12 0 12.2 0 4.52 6.98 4.13 6.91 8.17 4.35 3.14 9.34 1.36 4.25 9.41 6.79 0.84 14.5 3.58 8.88 8.59 7.43 9.95 4.13 6.03 8.55 6.79 6.19 6.34 6.19 3.59 5.63 6.72 5.86 8.65 6.62 10.1 6.88 2.3 13.5 2.86 6.46 8.64 7.37 8.05 6.91 5.39 6.69 6.22 2.51 5.36 8.64 9.32 0 8.32 4.25 10.2 2.05 9.46 8.21 2.51 7 6.16 8.91 10 0.84 9.11 3.18 6.01 8.22 3.76 9.1 8.39 9.08 1.36 9.76 12.7 7.92 4.52 7.83 1.75 6.37 6.85 9.91 4.95 8.89 2.3 5.98 6.38 3.01 4.25 6.9 8.96 7.91 4.47 11.3 6.96 7.13 11.4 3.01 4.25 3.76 3.76 7.73 8.41 1.36 6.82 1.75 11.9 1.75 6.82 4.87 3.07 7.02 0.84 7.28 0.84 8.29 10.3 7.35 5.05 2.51 3.27 9.26 2.7 4.57 3.92 5.05 0 8.25 11.2 9.03 6.89 8.88 11.1 12.5 3.14 13.7 2.51 13.6 3.14 13.1 1.75 9.65 10.4 12.7 12.4 4.25 4.06 12.1 11.1 13.3 0 0 5.9 11.1 10.3 12.6 0 5.56 10.7 9.28 8.54 7.58 6.81 10.5 8.01 1.36 13.7 10 12.9 9.81 6.82 4.57 7.93 9.64 8.51 14.6 7.1 11.2 14.4 13.5 2.7 12.4 10.3 12.2 0.84 10.8 11.5 9.62 8.87 9.08 6.82 12.2 10.7 9.89 7.02 9.61 7.86 2.7 7.94 9.57 9.05 0.84 7.69 8.96 7.21 9.56 9.66 12.6 5.96 5.21 2 10.8 3.84 6.99 7.57 5.41 11.4 0 8.15 6.24 10.2 5.05 5.28 9.32 10.5 10.9 14.9 8.35 8.42 7.47 9.63 4.75 0.84 6.58 10.8 7.49 9.25 8.07 8.33 1.36 9.23 8.4 2.62 7.8 7.81 0.84 6.76 2.7 2.05 6.95 6.5 5.49 2.51 4.57 3.38 8.29 3.84 10.8 7.32 2.3 2.3 9.05 4.36 4.98 2.51 4.06 6.06 10.2 3.14 4.57 3.99 7.85 1.36 8.85 3.76 2.86 3.38 11.1 2.7 5.59 5.68 4.37 7.11 6.13 0 2.7 8.91 4.51 8.22 5.15 7.75 8.21 1.36 9.82 4.83 0 7.2 5.15 10.4 7.52 7.01 8.41 11.5 10.4 7.8 2.3 8.79 0 6.11 3.42 2.05 6.47 12.5 4.47 6.43 11.3 6.05 5.36 3.92 10.8 11.3 7.48 2.3 8.69 3.38 10.5 0.84 3.38 7.56 8.55 5.9 9.47 6.69 8.03 0 8.03 11 14.5 13.3 10.8 6.34 9.23 5.78 7.81 10.5 3.14 11.3 2.3 3.81 11.1 7.9 6.37 10.3 8.29 9.92 10.4 8.53 10.8 4.13 10.6 9.59 4.06 9.87 13.1 13.1 11.6 8.9 8.83 2.05 5.02 15 7.06 14.5 12.9 6.88 4.75 6.25 7.92 9.21 5.96 10.2 5.33 14.6 3.38 10.5 11.8 11.4 2.86 6.76 5.46 9.68 8.04 9.8 12.8 8.77 6.28 8.42 10.8 10.9 10.4 10.5 9.72 8.98 9.41 3.84 11.1 9.38 5.15 7.9 9.97 8.42 9.45 4.91 6.62 8.79 8.19 9.79 11.2 6.81 12.2 9.83 7 8.36 9.91 11.2 7.1 12.9 9.48 8.54 6.83 10.8 10.3 8.68 7.58 10.4 4.13 7.09 8.15 3.99 3.89 8.03 7.91 6.58 12.4 8.36 3.46 10.1 9.09 7.96 10.5 8.12 9.25 5.96 12.4 11.5 2.3 9.71 11.9 10 8.85 11.6 8.88 7.93 2.51 14.3 9.73 10.8 8.22 9.81 9.74 10.9 11.1 8.29 10.3 9.03 1.36 11.1 11.3 13.3 10.4 10.3 6.8 9.46 11 10.9 10.4 7.44 9.1 11.1 8.92 3.92 9.22 12.1 8.74 7.94 10.5 8.82 9.21 10.8 9.93 7.81 0 11.9 10.4 8.87 8.82 12.8 9.05 12.9 12.1 9.18 7.91 11.9 9.1 7.75 5.02 8.74 6.81 9.79 14.3 10.1 9.26 11.2 8.04 13.1 10.7 5.72 9.44 13.6 8.12 0 8.46 6.63 7.91 8.55 10.2 8.91 9.09 4.31 8.84 11.3 10.2 11.7 10.8 6.39 4.42 7.18 11.5 11.9 8.42 6.06 7.43 14.8 2.86 0.84 2.7 9.64 6.63 11.2 14 5.96 9.53 4.75 7.05 11.5 5.8 3.99 10.4 7.66 6.55 9.99 4.06 9.28 9.36 3.84 9.94 11.4 7.81 11 9.24 4.13 4.19 9.15 6.15 7.87 10.6 10.8 5.3 7.88 8.14 11.2 1.75 4.42 10.7 11.2 0 5.24 5.88 9.76 9.05 3.92 0 7.21 5.68 7 2.86 7.89 5.39 1.75 4.06 8.29 8.42 6.05 11.8 10.2 4.95 8.17 4.05 5.08 5.62 6.01 12.2 7.89 2.51 7.96 2.51 9.21 9.21 5.05 8.46 4.52 1.36 9.09 10.4 0 3.38 6.86 0.84 3.38 8.81 8.89 8.18 2.3 2.51 8.26 8.32 6.74 5.94 13.4 3.38 7.01 8.23 7.3 7.76 5.74 7.04 8.71 7.82 5.36 4.57 8.51 5.56 3.76 4.51 5.82 0.84 6.39 7.65 4.23 2.7 3.27 0 2.3 1.75 2.05 0.84 8.05 2.05 9.89 5.12 5.24 8.29 6.01 1.36 7.97 12.3 0.84 0 1.36 0 3.27 3.38 7.95 0 4.47 8.26 5.36 3.99 3.14 10.3 2.3 8.57 8.27 2.7 8.01 10.7 13.5 5.66 3.58 8.09 4.03 2.51 11.7 13.6 8.68 8.16 9.85 5.59 7.68 12.8 8.26 7.84 7.38 12.6 15.1 8.92 4.47 7.55 9.13 9.59 9.49 8.83 7.08 9.59 1.36 10.3 8.12 10.4 11.4 2.86 4.42 9.95 8.49 7.37 9.38 8.64 10.1 8.51 10 4.06 6.05 7.95 1.36 2.05 1.75 11.9 6.81 7.74 9.57 14.4 0.84 8.07 14.9 12.5 10.1 8.91 4.95 8.2 14.9 11.9 3.27 12.9 12 10.1 9.24 9.48 9.16 7.18 4.75 6.55 11.3 8.64 9.93 7.84 11.8 4.25 9.83 10.5 14.9 9.54 10.4 13.6 11.8 7.03 13.4 6.51 7.49 11.5 10.9 11.1 12.8 3.92 13.8 8.91 9.21 6.99 7.27 9.61 7.48 8.82 8.84 13.6 11.2 11.5 11.1 10.9 12.5 10.1 11 10.6 10.5 10.9 5.05 10.4 11 10 9.94 11.2 9.3 11.2 11.6 10.6 9.88 11.6 11.6 11.5 11.2 9.86 11 8.91 10.1 11.2 11 11.7 9.91 12.2 10.9 11.6 11.1 11.3 9.67 9.92 7.58 13 14.3 11.4 11.1 4.83 7.08 8.15 7.45 8.19 1.36 3.01 4.42 6.1 10.7 7.34 5.66 8.29 9.25 11.8 10.3 13.4 10.4 5.83 9.59 9.69 4.87 11.7 8.66 10.5 6.6 12.5 6.5 11.5 11.3 8.84 11 12.6 9.68 11 13.6 9.16 8.96 10.4 7.37 9.32 9.59 10.1 0.84 9.21 10.8 10 10.1 2.7 11.2 10.4 8.25 10.8 11.1 7.76 9.44 8.1 7.66 10.6 6.35 10.5 7.35 11.8 11.4 14.4 11 11.9 9.23 11.1 14.4 4.25 10 12.6 4.06 8.82 10.5 10.5 8.15 9.77 11.6 12.3 9.82 8.89 3.84 10 5.84 9.4 7.75 9.26 7.26 13.9 5.15 1.75 11.9 12.6 9.52 2.86 4.42 7.18 9.4 9.4 9.1 7.3 10.9 8.74 4.52 10.1 8.85 4.34 4.52 12.7 9.03 8.87 5.51 8.39 6.19 8.78 5.54 1.75 6.46 8.7 11 7.42 4.06 3.76 8.44 13.4 10.9 13.5 9.19 10.8 10.7 11.9 8.94 9.73 9.38 9.3 8.01 8.56 0.84 8.46 6.68 6.65 11.4 8.3 5.41 8.92 8.11 0 3.76 10.9 9.35 3.14 6.16 4.14 0 13.6 11.3 9.86 11.9 10.3 8.67 11.5 8.32 12.1 1.75 3.27 6.26 8.72 3.67 0 10.4 10.2 12.9 5.27 6.39 7.78 7.5 8.67 2.05 6.16 4.75 8.27 10.7 8.88 8.2 8.74 5.63 2.05 10.3 7.89 10.2 8.72 4.06 6.74 2.3 10.9 9.27 7.33 5.36 8.6 7.22 5.41 3.01 4.37 6.99 8.22 10.1 14.4 5.82 8.5 11.9 1.36 1.36 4.98 12.8 7.98 11.3 8.76 11.2 8.93 9.17 10 10.8 6.65 9.8 7.02 10.4 6.98 9.51 8.45 12.2 14.1 2.05 9.89 13 10.9 6.46 9.42 9.22 11.1 3.18 10.2 9.26 4.87 11.9 8.73 10.5 9.18 6.98 11.2 7.42 5.92 12.2 10.8 8.57 4.79 6.03 2.3 9.29 9.69 10.2 11.6 9.13 10.8 8.96 8.88 0.84 3.72 3.84 11.4 4.52 7.99 12.2 6.42 5.76 0.84 12.2 8.8 11 11.3 10.6 12 10.2 7.16 10 12.9 11.7 2.05 13.5 7.84 4.66 4.47 8.07 10.4 8.51 13.3 8.58 9.7 9.19 8.42 8.93 6.97 8.44 8.82 10.8 8.82 9.75 4.13 8.33 9.1 9.53 9.54 10.1 7.61 7.56 8.87 9.5 11.3 10.8 7.3 7.91 11.8 9.02 9.77 8.75 9.65 10.6 8.45 10 11.9 9.34 9.31 6.51 7.33 5.98 9.79 6.27 7.74 8.59 10.5 10.1 8.03 9.89 10.7 5.18 8.35 9.7 9.38 10.4 8.75 8.69 10.1 8.19 10.2 8.42 8.49 10.5 12.6 10.9 10.3 11.2 4.42 9.41 8.22 3.09 3.38 8.46 10.3 7.34 9.89 9.44 11.1 8.63 9 10.7 9.75 8.25 10.2 11.4 8.03 8.63 8.63 7.81 9.19 7.16 12.1 10.7 9.38 9.98 7.53 9.3 10.4 9.98 9.13 10.7 10.5 9.14 10.7 8.93 9.29 10.5 9.89 9.92 10.2 8.36 7.83 11.2 7.7 9.18 10.4 10.6 7.96 8.97 6.39 8.59 8.42 12.2 9.04 10.3 9.75 13.3 9.01 11.8 1.36 9.88 10.8 9.78 9.29 11.8 6.66 10.8 8.15 10.6 5.27 7.3 5.05 9.13 10.1 8.24 7.07 7.88 9.66 11.7 14.7 10.2 8.44 8.2 9.34 11.4 11.4 8.68 11.1 5.76 7.65 9.2 8.73 7.95 11.2 9.55 7.59 9.96 7.67 8.72 7.64 3.99 4.13 2.71 9.44 5.41 10.4 8.14 11.5 7.68 9.9 9.99 9.05 12.4 0 11.1 9.39 7.24 8.13 9.65 9.36 12.1 11 10.1 8.73 7.07 7.91 9.06 3.99 10.1 10.9 8.34 9.67 11.2 8.66 8.78 9.49 10.3 5.24 7.27 5.63 11.5 10.4 11.2 9.97 8.66 6.19 7.08 10.8 10.9 9.35 11.8 8.5 11.8 10.4 5.59 4.37 10.3 9.34 8.97 9.32 9.62 9.95 8.91 10.1 9.61 7.55 11.7 8.33 10.5 3.27 11.1 9.97 0.84 8.49 9.78 9.63 9.64 10.1 5.33 9.49 10.4 3.92 9.45 6.11 10.6 9.23 6.95 9.92 10.7 11 11.5 5.87 12.3 7.26 10.2 7.21 7.11 6.13 11.6 9.02 8.67 8.13 9.61 9.3 9.51 9.72 8.79 4.66 11 9.11 8.85 8.6 6.39 8.89 10 5.12 5.78 10.1 9.28 10.3 3.49 11 11.1 8.17 11.6 8.32 7.97 7.57 9.51 9.58 9.86 1.75 7.35 12.7 8.43 10.6 4.83 9.6 8.09 8.04 11.5 9.44 13.2 6.91 10.3 9.99 8.52 9.89 8.24 8.83 12.4 9.09 8.16 8.39 11.1 11 4.91 9.64 11.8 10.2 11.7 9.86 8.68 6.1 10.3 9.02 10.5 9.88 2.7 9.83 6.79 9.25 7.31 3.49 10.6 11.5 8.93 0.84 11 13.1 8.09 10.2 4.95 9.32 8.94 9.86 10.2 8.44 10.7 8.92 10.7 9.01 9.74 10.4 12.4 12.2 11.4 8.85 9.92 6.06 7.46 6.42 9.14 8.04 11.3 11.7 8.21 9.93 9.41 7.71 8.89 11.1 8.06 8.52 7.79 5.59 9.74 10.1 8.01 9.1 10.5 7.17 8.66 9.71 8.41 9.21 8.88 9.17 11 6.27 1.75 9.13 11.5 10.7 3.38 7.72 11.4 10.1 9.44 10.6 10.7 9.11 10.5 9.59 8 7.58 10.6 10.3 11.4 7.53 12.2 9.34 11.2 9.93 12.1 10.8 10.4 10.6 6.83 10.4 9.34 11.4 8.42 9.93 10.2 8.65 12.3 9.2 3.14 8.52 10.4 10.8 10.3 9 11.8 8.26 10.7 7.14 9.35 9.82 11.4 10.4 9.71 9.26 10.6 8.23 11.4 10.3 9.54 6.8 9.2 8.98 11.2 8.99 11.6 9.29 6.41 10.8 8.91 9.56 10.2 8.63 10.1 8.59 12.8 9.81 9.45 3.58 6.11 9.05 9.37 3.78 2.3 10.9 9.26 9.62 9.97 10.1 10.2 13.4 8.77 8.99 8.51 5.33 8.11 8.21 8.41 9.64 6.85 10.1 7.78 0.84 9.85 3.27 9.28 10.7 10.7 8.52 10.4 1.36 9 6.05 4.42 3.49 7.79 10.2 8.54 11.6 11.5 9.26 5.23 9.39 9.45 9.21 10.9 14.3 9.04 4.42 8.75 10.5 0 10.2 9.99 8.68 9.91 6.66 10.6 11.7 6.78 6.54 6.84 7.83 8.12 8.89 10.3 13 7.92 7.58 10.2 7.18 8.79 7.13 8.89 9.17 6.03 2.7 9.08 6.95 10.5 10.7 11.2 9.04 13.6 7.79 1.36 7.92 10.5 11.5 6.41 11.9 4.57 10.8 9.77 14.2 11.3 10 11.4 11.7 6.96 1.75 10.2 9.41 7.84 10.4 11.8 11.9 8.45 7.81 4.71 7.86 3.84 11.6 9.96 12.7 0 10.8 10.3 7.39 9.58 9.59 10.4 3.14 10.1 8.94 9.7 3.38 11.6 12.2 11.9 7.32 10.5 7.09 7.63 10 9.64 7.66 7.85 4.66 9.7 9.84 8.91 11 7.6 8.89 12.3 9.28 3.58 11.3 11.3 9.88 11.2 10 10.3 0 9.05 9.77 10.6 8.42 11.5 9.56 2.99 14 8.88 8.63 3.14 5.84 3.38 8.31 8.71 10.3 11.8 10.6 11 9.43 10.1 7.44 8.22 6.46 9.99 6.73 7.48 5.3 8.66 8.19 6.52 5.44 8.8 11.2 2.3 4.52 8.5 7.66 8.48 9.55 10.2 13.9 4.66 12.3 8.88 8.52 7.16 8.84 8.14 6.6 1.36 10.4 6.33 12.7 11.4 7.12 11.6 9.03 4.31 11.9 9.8 13.3 11.6 11.8 4.31 11.2 1.36 12.6 6.68 12 8.15 6.88 2.13 6.78 11.5 11.5 9.07 10.8 11.8 8.45 8.54 9.32 5.3 5.76 2.05 9.91 9.58 12 5.7 6.28 4.37 4.71 9.19 0 10.9 7.2 3.76 6.15 12.1 9.31 9.88 10.3 9.51 8.88 8.89 10 8.39 8.82 9.5 11.2 8.99 7.33 9.29 10.1 8.01 5.3 7.98 7.02 8.53 9.35 1.75 7.93 4.19 2.05 8.63 6.31 5.74 9.05 5.22 10.4 9.78 10.8 5.24 9.59 10.6 9.91 3.3 8.8 3.62 8.29 8.11 8.62 8.99 7.89 10.5 13.4 11.1 11.7 2.3 8.39 7.07 8.07 8.14 9.51 11.1 9.48 4.83 4.06 9.86 8.8 11.4 10.1 9.86 6.54 5.96 8.37 9.09 7.24 11.5 9.37 9.42 10.2 10.2 7.27 7.45 10.5 10.3 10.8 11.3 9.4 11.9 11.8 6.66 8.67 10.1 4.25 4.62 10.6 8.73 8.66 10.4 5.64 10.2 8.08 6.96 8.65 8.07 6.5 9.08 6.64 10 10.1 7.84 9.44 3.92 4.06 11.2 11.7 11.7 10.3 8.98 9.53 8.36 3.01 9.46 8.7 10.4 10.7 7.45 8.75 10.2 7.89 10.5 8.02 5.51 11.1 7.34 9.43 7.76 9.6 7.97 9.97 9.47 8.69 8.67 10.9 9.47 7.09 8.41 8.54 10 9.45 11.3 5.96 9.2 7.57 7.06 8.96 8.16 8.32 8.74 6.79 9.01 7.72 8.45 9.77 1.75 9.96 8.31 8.76 9.23 7.43 9.01 10.7 11.1 10.8 13.8 6.78 12.1 9 9.45 8.51 8.55 10.4 7.37 7.49 5.24 8.13 8.73 0 8.22 10.6 7.64 8.06 12.5 1.75 9.93 2.51 9.48 11.2 9.22 6.66 5.53 9.53 7.27 7.22 11 10.1 5.51 6.52 6.69 8.23 11.1 7.72 6.05 10.1 10.6 9.55 8.15 10.4 5.99 11.4 9.98 8.4 7.88 8.1 10.1 7.98 9.36 8.41 9.52 7.76 7.92 9.57 6.57 0.84 3.99 9.19 6.75 12.5 7.49 2.3 9.27 9.6 7.18 5.15 7.95 4.95 11.6 3.84 8.45 2.3 7.85 10.6 8.21 11.9 7.43 6.18 9.55 8.21 7.87 10.9 8.23 12.5 8.85 8.74 7.88 10.9 14.7 8.5 8.8 9.83 11.8 7.22 4.71 8.88 11 10.4 8.53 8.52 7.48 8.61 7.11 8.89 7.99 8.16 5.66 7.99 8.82 7.34 8.29 10.7 9.17 7.78 8 4.19 9.24 7.05 2.86 5.92 0.84 9.48 12 3.14 0 9.29 7.22 2.7 12 7.7 9.3 9.2 8.95 7.55 6.85 6.47 9.86 9.15 8.07 6.41 9.22 5.18 7.86 9.88 0.84 8.41 8.91 9.73 9.98 9.37 10.3 8.36 8.56 0 11.8 8.99 10.8 9.76 8.71 9.13 9.37 7.52 8.9 7.56 6.58 8.87 8.17 9.81 10.5 8.41 9.7 7.66 9.5 10 10.8 8.85 7.39 9.37 6.49 8.62 6.21 6.24 6.03 7.32 3.27 7.85 9.8 7.99 10.8 3.58 9.48 7.88 10.8 9.04 8.61 10.2 8.63 9.49 9.65 7.62 9.76 9.51 10.2 7.91 11.5 9.78 11.1 9.61 11.4 9.34 9.1 9.58 5.83 8.8 11.2 9.54 5.45 9.16 10.7 9.32 10.7 8.05 8.98 3.58 10.1 7.89 9.95 9.76 9.48 7.7 8.15 9.33 8.48 6.97 8.54 7.95 9.28 11.2 9.92 11 6.19 9.54 8.28 8.94 0.84 8.76 8.61 8.11 7.8 12.1 11.1 8.63 10.3 9.19 10.3 4.66 9.46 7.55 8.66 10.2 6.92 12.7 5.05 9.88 3.58 9.62 11.9 8.01 7.53 10.3 7.19 6.79 7.3 10.9 4.31 11.7 12.1 11.6 0.84 8.95 8.09 11.1 8.46 7.93 8.65 7.02 10.5 11.1 7.08 10.6 7.33 7.97 8.85 9.26 8.89 5.21 9.58 0 7.92 8.71 7.54 10.1 6.15 7.89 7.04 8.77 8.68 10.4 8.98 7.96 6.24 10.1 7.16 10.5 7.88 7.44 10 4.42 9.78 9.45 10.2 7.56 10.3 9.06 8.21 9.13 0 7.5 9.53 7.5 5.89 5.36 9.45 3.58 7.65 7.64 11.9 6.5 7.05 5.98 9.78 6.77 8.55 11.7 9.46 8.9 10.2 11.7 9.76 7.78 5.27 7.39 3.58 6.92 8.7 7.43 7.72 8.13 10.8 4.52 10.6 9.31 9.37 9.17 7.78 8.45 6.56 10.3 8.93 9.48 8.65 9.97 8.73 8.17 10.8 8.68 9.42 8.61 9.5 3.76 8.32 10.6 7.9 9.01 5.02 8.35 7.16 7.81 8.53 6.11 4.42 9.55 11 9.65 8.71 5.59 8.83 6.69 9.79 9.65 8.85 8.89 11.1 3.67 4.98 9.44 8.96 10.2 8.22 8.06 8.51 10.4 9.38 9.33 9.56 8.69 6.94 6.37 9.39 9.46 7.55 7.51 7.4 9.27 10.7 3.14 7.41 9.62 8.8 6.95 13 7.99 8.09 10.4 7.69 5.96 10.8 9.56 8.25 8.44 7.47 10.6 9.04 9.15 10.4 1.36 9.88 9.41 9.08 7.35 4.87 9.48 3.38 10.7 7.06 9.71 11.1 6.43 10.9 8.7 10.9 4.31 9.28 6.93 8.26 7.5 8.93 9.4 7.16 8.05 9.36 6.11 4.57 9.74 6.8 8.09 8.87 10.4 10.5 9.91 8.1 8.21 10.1 3.92 7.68 10.5 8.74 6.86 9.34 12.7 9.41 8.23 6.9 9.9 9.64 2.7 7.53 11 9.71 10.4 10.6 5.88 9.18 9.37 9.57 11.2 9.36 8.99 3.38 8.66 7.1 8.33 8.61 4.66 10.3 9.47 10.5 8.45 10.1 5.86 10.4 9.96 8.27 6.03 8.26 7.39 10 9.56 7.97 5.33 6.37 8.24 6.11 3.34 3.38 9.14 11 2.51 8.51 8.31 10.3 10.9 6.33 8.8 7.15 6.46 8.44 8.79 9.3 1.36 10.1 7.48 3.14 9.12 7.14 9.23 11.2 10.2 10.6 9.02 8.73 5.66 7.78 2.27 9.19 7.86 7.96 10.2 7.95 6.03 8 8.6 10.3 8.97 8.47 9.07 7.22 6.81 8.62 8.22 7.8 9.61 9.28 10.1 5.36 8.25 10.5 10.4 10.4 9.24 9.57 9.5 9.6 9.13 6.03 7.68 9.37 5.84 3.14 8.13 10.3 11.7 6.21 5.54 10.1 3.38 10.2 9.83 9.66 9.16 13.7 8.05 9.49 10.7 5.02 8.51 11.5 10.7 10.2 4.71 5.88 8.66 9.15 10.8 5.33 1.75 2.51 7.47 3.49 7.25 7.53 9.22 0.84 7.61 8.65 9.13 11.1 6.89 11.3 8.35 2.3 10.4 11.5 9.53 9.59 9.97 6.79 4.98 7.79 10.3 9.33 3.76 7.06 6.41 8.42 2.7 10.5 3.67 11.6 7.14 5.61 8.65 9.38 7.61 5.59 2.05 7.67 10.6 5.94 4.95 10.1 1.75 3.84 6.1 10.4 8.77 10 11.5 5.99 7.4 0.84 10.3 5.9 9.45 9.24 11.9 7.62 10.8 9.88 7.22 6.15 11.8 10.8 7.32 10.1 7.31 10.9 8.76 7.01 17.9 7.61 6.93 9.09 9.15 6.93 8.04 11.6 6.46 7.95 11.4 7.86 2.86 7.59 9.7 10.5 7.96 8.07 9.52 9.43 10.4 8.32 9.68 10 9.77 9.72 11.1 7.99 10 5.83 6.58 6.76 7.48 8.63 7.73 3.92 8.24 8.53 9.25 6.47 12 8.74 7.95 8.62 7.67 7.82 11.2 10.1 10.9 10.7 9.1 9.45 10.6 10.1 6.42 11.4 10.6 10.6 9.8 9.35 8.29 9.87 11.3 9.51 6.42 8.92 8.87 6.86 9.54 7.75 6.55 10.1 11.8 8.37 8.34 10.3 12 5.74 8.37 10.2 6.37 12.3 9.96 11.1 5.44 10.1 9.8 9.76 5.83 10.7 5.7 11.4 9.71 9.6 7.39 9.43 10.9 5.84 10.4 7.15 9.94 5.74 7.14 9.93 9.89 9.83 9.88 9.24 10.3 9.69 6.63 5.96 7.04 8.79 8.74 4.66 8.89 11.6 9.22 7.3 7.72 8.25 9.71 9.99 11.7 9.98 10.7 10.3 12.1 9.3 9.09 8.14 9.77 11 9.86 9.92 9.09 7.35 11.8 9.07 11.5 11.2 8.55 8.93 10 8.32 4.75 8.94 9.68 6.69 9.19 10.1 5.54 10.8 8.17 10.9 8.85 8.96 2.3 9.34 7.78 9.16 7.88 7.88 6.57 8.66 9.18 8.88 7.39 8.35 9.26 6.33 5.83 9.54 4.57 7.7 10.8 7.09 8.43 7.51 9.23 3.99 7.18 5.72 10.3 9.02 8.17 8.32 7.38 5.46 9.43 4.71 8.49 6.97 9.42 2.05 7.75 9.81 8.75 6.72 9.94 11.2 6.65 10.2 7.68 7.5 11.1 10.2 8.85 10.6 10.2 11 9.62 7.98 9.55 7.29 11 6.46 10.4 7.37 9.37 11.9 9.3 8.45 8.23 12.8 9.7 10.4 9.39 5.49 9.9 5.72 9.28 9.11 10.1 8.41 8.86 9.61 10.9 9.87 9.33 0.84 8.78 8.19 9.92 7.48 5.44 8.06 6.25 9.95 6.43 6.57 1.75 13.2 9.86 8.18 10.4 6.82 11.2 7.78 9.39 7.67 9.65 10.1 10.2 8.65 9.77 9.87 10.8 7.65 10.5 9.55 7.18 8.99 4.95 11.2 7.92 4.52 9.57 2.51 9.4 7.11 10.2 10.8 8.76 8.15 9.42 13.7 7.15 5.59 10.2 10.6 10.1 9.15 10.6 9.44 5.02 9.78 9.68 9.33 9.55 6.55 1.36 9.68 1.75 11.4 9.72 9.58 7.37 7.77 9.93 9.48 12.1 8.75 10.5 10.4 6.35 8.06 8.39 5.44 10.1 5.34 3.84 5.51 7.42 4.98 4.76 4.37 4.71 6.05 4.75 9.44 5.09 4.91 6.11 10.1 4.95 5.18 5.72 5.98 5.27 9.53 2.51 7.19 8.36 6.69 7.56 6.61 6.76 6.75 5.39 7.14 9.41 5.81 7.45 4.98 5.98 4.31 1.36 8.89 10.7 0.84 1.36 4.66 11.2 3.58 7.72 9.77 1.75 8.73 10.9 2.7 5.39 9.36 6.64 10.9 10.4 5.09 9.4 5.33 10.1 8.94 4.66 10.4 10.3 5.66 10.3 11.2 13.2 7.99 11.6 10.8 10.5 9.14 8.03 2.9 9.52 8.92 9.79 9.98 8.55 8.92 8.93 3.99 10.6 6.04 0 2.05 9.79 3.49 8.79 5.9 6.83 2.7 6.74 14 7.62 5.12 14.9 7.89 8.85 4.57 10.4 8.21 9.42 9.99 9.21 10.4 8.15 0 10.6 8.22 12.8 9.45 8.66 5.83 3.14 6.27 0.84 9.06 0 9.88 5.02 11.6 10.1 15 6.63 0.84 11.8 9.48 11.2 9.78 10.8 8.51 10.1 10 8.46 11.2 10.4 10.2 7.27 4.91 10 10.4 11.5 11.2 10.2 10.2 11.7 12.1 7.25 9.75 10 10.3 9.69 9.91 10.2 5.18 10.6 9.9 10.1 8.46 11.2 9.41 5.81 9.86 11.6 10.9 8 8.93 8.64 9.6 8.58 9.73 7.08 12.7 8.49 8.36 7.19 10.5 11.2 10.4 10.9 9.31 11.1 9.82 9 10.7 4.83 11.2 9.65 10.9 8.35 9.52 12.3 9.03 7.52 10.9 9.65 11 12.1 10 10.5 7.15 7.67 10.6 9.23 11.2 3.49 10.2 3.27 10.8 9.28 10.5 8.28 10.9 4.25 5.21 9.82 7.55 4.57 9.24 10.6 8.87 8.95 9.46 10.6 9.98 5.33 10.2 8.86 9.25 10.1 10.3 9.72 10.6 0 9.58 6.89 8.09 9.92 10.9 10.4 2.7 9.53 11.9 8.97 11.7 10.5 7.58 5.41 10.7 8 9.74 11.2 10.7 11.5 12.1 8.93 3.99 9.55 10.1 2.88 11.2 10.5 11.7 2.86 10.1 10.3 8.11 11.2 5.59 10.7 0 9.82 3.01 7.34 9.4 9.08 12.1 5.39 8.28 6.87 11.1 3.38 9.53 7.88 9.7 9.76 2.51 4.31 8.05 7.22 10.4 8.25 9.64 11.7 9.33 2.51 9.79 9.88 10.2 11.2 11.5 7.8 11.2 4.79 11.6 11.2 12.3 7.96 9.64 7.65 10 9.6 9.81 7 12.6 9.87 4.83 9.77 1.36 9.5 6.87 10.1 8.23 4.87 5.54 10.1 8.95 8.01 11.4 9.58 11.2 10.9 9.07 7.66 9.85 9.69 9.91 8.44 7.15 9.7 6.47 8.76 11.6 11.6 5.18 9.42 10.8 11.2 11.2 11.5 8.28 8.67 10.8 8.63 12.1 9.21 8.33 10.2 8.73 10.8 10.1 6.19 11.6 10.1 9.38 9.47 6.34 7.96 9.74 5.49 4.06 12.6 8.97 11.1 2.05 4.66 8.6 10.5 13.3 6.16 7.3 9.01 13.1 9.82 8.18 12.6 8.38 7.41 8.78 4.52 8.36 7 5.94 7.16 11.6 9.2 7.94 7.63 3.92 8.63 13.7 0.84 4.31 9.93 9.09 1.75 4.75 6.94 10.6 8.98 11.4 9.37 10.9 6.97 9.9 8.43 11.7 9.32 5.74 10 9.71 9.86 9.16 7.47 7.7 8.58 8.65 10.4 8.87 7.74 10.5 3.84 8.71 9.52 5.84 3.84 4.31 7.37 9.5 4.25 6.95 10.5 9.69 5.61 9.12 9.89 7.7 5.51 4.19 7.91 8.46 10.2 9.8 6.86 5.56 7.1 11.1 8.54 5.94 10.3 13.2 9.82 0.84 9.12 1.36 10.3 8.03 3.92 10.3 10.3 9.28 10.9 8.07 7.15 10.3 9.73 8.25 10.1 8.62 11.4 7.42 9.68 8.47 9.33 3.77 4.71 3.01 2.05 5.76 11.5 6.98 10.8 9.62 9.74 4.42 6.78 9.17 7.42 8.79 11.9 2.86 7.88 9.32 7.15 7.88 3.84 6.18 11.8 5.76 6.81 10 2.86 10.4 9.65 7.7 6.6 9.98 9.25 10.4 5.61 6.71 3.27 7.59 9.27 5.51 14.8 8.26 11.4 9.88 4.52 3.14 5.88 8.16 2.51 7.4 10.2 5.94 9.59 10.5 9.36 8.99 9.22 9.9 11.2 9.71 9.97 7.25 9.27 7.96 10 9.26 9.69 6.22 10.7 4.98 7.87 9.12 10.3 8.9 8.73 6.89 8.59 4.31 9.24 10.3 9.46 9.22 8.49 8.9 7.5 8.22 14.2 8.86 8.09 10.1 12.1 6.41 5.02 5.24 10.7 7.89 9.51 11 9.86 5.94 7.67 7.5 11.9 7.95 12.6 11.4 10.4 8.24 11.2 9.11 10.2 10.5 7.86 6.11 11 7.2 7.72 9.16 12.2 10.2 7.29 5.86 8.1 6.5 8.92 5.96 9.17 7.11 7.5 9.17 8.06 8.85 6.33 10.1 7.61 3.58 10.6 9.63 10.7 8.77 9.77 7.98 11.4 8.27 8.79 9.7 5.97 9.01 4.75 9.02 7.49 7.88 3.49 8.69 11.2 6.28 7.03 9.4 9.72 8.35 3.38 7.28 7.99 0 8.92 6.93 8.73 7.93 8.07 9.9 7.26 8.11 10.4 9.97 10.2 9.4 8.38 9.88 8.48 11.1 11.1 10.2 9.81 10.6 9.73 3.65 3.14 6.37 9.35 9.78 5.21 8.93 3.01 4.62 7.72 7.21 10.6 9.45 10.4 5.51 9.13 9.56 7.97 9.11 8.74 12.4 7.92 5.68 9.07 9.29 9.89 4.06 7.84 3.27 4.06 5.56 2.3 11.7 9.13 8.86 10.5 8.36 7.65 10.1 8.22 9.48 8.95 7.3 12.6 12.1 10.2 9.77 8.23 9.69 10.3 8.02 9.58 7.09 9.42 11.7 9.49 9.96 11.1 11.3 8.73 11.1 10.2 9.14 10.1 10.8 8.81 10.2 10.1 8.92 11.1 5.41 11.9 9.93 10.4 7.87 8.03 9 8.12 5.86 6.49 8.09 7.35 9.38 8.08 8.31 7.97 8.03 11.2 11.5 10.1 9.37 4.91 9.97 9.51 10.3 10.8 10.8 9.38 9.8 7.09 6.24 9.42 1.36 2.05 11.9 9.93 8.69 11.7 9.6 10.5 7.41 1.75 10.6 9.23 10.2 12 10 11.2 8.42 11.8 8.14 1.36 9.66 10 8.67 11.1 12.9 9.61 8.45 8.66 8.67 12 12 12.1 5.66 7.97 5.12 7.8 7.36 6.96 11.3 3.38 9.78 10.1 9.88 15.7 12.1 11.8 9.71 10.7 10.4 9.51 11.4 7.14 7.39 9.04 9.01 9.5 3.14 12 7.41 10.2 10 11.2 13.9 11.1 8.84 5.59 3.76 7.14 9.04 8.07 7.21 9.74 11.3 2.05 9.55 9.14 10.2 12 7.5 9.77 10.3 9.42 11.3 7.86 4.25 1.75 9.94 10.6 9.33 0.84 8 9.71 8.83 1.75 10.3 7.87 9.55 12.7 0.84 8.57 11.1 11.5 10.9 7.63 13.5 7.18 3.08 0 11.6 8.31 6.6 2.7 12.4 9.8 1.75 6.98 8.06 6.35 10.3 9.44 4.91 7.41 11.2 9.71 7.52 10.8 10.2 5.21 7.23 11.3 8.29 9.17 9.28 7.5 9.08 8.05 10.6 10.3 0 9.31 9.04 8.47 5.98 0.84 9.42 6.8 12.5 12.7 11 17.2 10.4 9.11 2.3 10.5 2.7 3.16 10.9 0.84 10.8 9.13 8.87 1.36 11.8 9.42 10.5 10.1 10.7 10.2 11.2 4.83 2.51 9.37 9.14 0.84 8.82 8.21 10.8 7.23 7.89 10.6 4.75 10.1 3.14 0 8.51 11.8 7.83 9.68 10.3 10.8 3.84 9.12 7.99 9.53 7.71 8.72 7.74 8.75 9.61 8.01 4.47 9.15 8.77 12.6 9.83 11.1 7.8 10.8 8.78 10.7 8.18 8.95 9.52 9.36 0 8.61 11.1 4.25 6.65 10.1 7.28 10.2 12.8 3.67 0.84 8.45 9.38 4.13 13.4 9.9 8.55 11.3 7.87 9.65 1.36 9.13 9.85 7.32 8.55 5.33 5.74 5.83 7.5 7.51 7.91 3.27 10.5 9.77 8.12 8.94 15.8 16.2 15.1 14.5 11 11.2 15.7 3.27 15.7 8.66 14.8 14.9 15 16.2 15.4 13.6 15.4 12.7 15.6 4.95 13.4 13.2 10.8 15 14.8 14.7 15.1 15.2 15.8 14.4 15.6 15.8 14.3 14.7 12.1 15.6 15.7 14.3 8.99 11.4 14.8 7.84 15.7 16.4 15.3 10.9 9.8 12.8 12 15.4 16 12.7 16.3 4.53 2.05 5.56 8.62 4.95 14.2 3.99 3.49 16.4 9.03 9.99 9.32 9.5 9.89 13.7 15.3 15.2 13.7 16.1 14.9 14 15.4 14.4 14.7 15.2 15.3 5.49 15.5 15.5 16 14.2 15.3 15.8 14.4 10.3 11.1 13.9 10.9 13.1 10.4 11.6 13.5 9.12 9.85 7.01 10.1 0.84 5.89 10.1 10.8 10.2 8.5 11 10.3 10.7 6.72 11 4.31 8.89 6.58 9.51 5.72 5.18 10.8 0.84 14.7 8.39 9.28 15.6 13.4 4.62 11.1 6.28 5.36 13.6 10.6 11.6 6.55 8.14 9.01 10.9 10.2 8.59 14.1 8.16 8.47 10.4 8.67 8.79 6.27 9.73 10.1 8.94 9.65 6.93 11.8 8.5 8.58 5.54 6.03 3.84 6.1 17.2 8.41 6.63 4.79 6.65 9.46 2.51 8.33 4.83 8.48 10.5 5.41 6.94 11.7 9.84 7.23 0.84 9.32 9.81 2.86 11.4 5.88 5.39 4.19 3.58 0 9.33 0.84 3.49 3.99 3.92 4.06 8.68 5.12 10.2 7.8 5.98 10.6 11.8 12.1 13.1 9.63 10.4 7.53 9.43 9.95 10.6 9.59 10.1 9.55 8.66 8.6 8.2 7.9 6.37 8.49 9.52 8.93 10.6 8.16 8.24 10.6 7.88 4.5 7.16 9.45 10.5 10.4 7.63 9.81 4.42 7.47 9.51 5.56 7.16 8.61 6.25 8.53 5.27 10.3 5.81 9.58 9.75 7.43 11.8 3.14 10.8 0.84 8.89 4.75 7.95 7.84 9.1 9.02 7.39 10.2 8.44 10.9 8.81 8.47 9.16 10.1 11.1 8.73 2.51 11.1 6.55 7.49 11.8 10 6.06 6.41 6.74 10.4 7.2 10.1 7.17 4.87 6.46 7.76 7.53 12.4 9.77 9.19 6.16 5.94 5.36 6.61 10.2 8.84 11.5 11.7 9.88 10.8 6.74 9.69 9.13 5.63 10.7 3.74 6.21 9.32 3.38 10 5.54 6.93 2.3 8.54 0.84 11.7 9.52 4.06 7.1 6.79 7.66 12.4 5.97 9.31 11.4 8.29 7.39 7.59 6.38 7.93 7.88 7.02 11.7 12.9 2.7 9.43 7.48 10.1 10.2 12.2 10.4 9.66 8.38 8.67 8.37 9.53 10.5 11 10.7 9.37 10.2 4.71 15 10.1 11.1 14.7 1.36 0 7.35 11.5 11.7 5.54 11.7 12.3 5.36 7.66 7.25 7.21 7.63 8.15 10.3 8.71 7.42 10.8 6.47 5.54 2.86 6.57 12.1 5.12 4.83 11.8 10 7.9 11.1 11 9.53 1.75 10.4 7.62 6.56 10 8.94 8.75 10.7 4.62 11.4 8.75 5.12 1.75 4.31 5.02 11 10.3 9.22 6.35 11.2 8.74 2.7 4.95 10.9 7.73 8.17 3.27 2.3 8.98 6.97 2.7 8.45 6.39 7.38 6.33 7.75 0.84 7.92 6.31 0.84 10 8.32 8.41 10 8.26 6.03 8.87 5.72 6.33 8.24 10.3 7.14 8.62 8.82 7.21 0.84 3.84 3.99 7.66 3.58 8.77 10.4 3.58 7.48 7.98 9.6 12.1 9.77 9.7 8.8 9.58 9.13 9.76 8.94 8.18 10.8 8.11 5.51 8.68 2.21 2.86 5.44 7.5 4.91 7.83 13.4 2.51 9.91 3.84 10.2 4.37 5.49 8.56 0 11.2 0 5.05 0.89 10 9.97 5.88 5.76 11.8 2.77 1.36 8.36 4.66 10.1 10.3 7.05 0.84 3.45 3.58 0.84 12 4.19 4.42 5.62 6.25 0.84 6.05 5.12 7.18 6.1 4.66 8.19 9.15 11.3 0 10.4 2.86 0.84 2.7 11.1 3.38 7.01 6.15 12.6 4.75 9.04 5.72 5.42 12.4 1.36 5.09 11 10.8 8.33 6.55 9.43 0 1.36 3.01 1.36 11.3 4.13 8.66 6.18 6.01 7.24 9.84 10.2 13.2 6.62 10.9 9.27 10.9 2.51 5.7 11.6 11.2 9.3 9.63 10.1 10.2 8.13 4.87 8.7 11.7 9.59 7.05 11.3 10.8 9.57 5.21 9.22 10.5 8.66 7.85 9.98 8.88 10.4 10.9 8.99 10.5 8.91 8.76 10.8 8.31 9.46 11.1 9.86 9.3 7.06 10.4 5.83 3.92 9.73 10.8 9.28 6.7 10 6.41 8.44 3.14 10.3 13 9.83 3.52 9.68 11 4.62 9.69 6.85 3.14 10.3 9.16 9.95 9.73 8.56 8.72 10.8 7.66 7.77 2.51 9.93 10.9 9.34 9.05 9.57 11.1 8.04 12.7 11.1 10.3 7.14 7.98 8.13 7.32 8.55 8.62 8.62 4.94 5.02 6.56 7.75 7.49 12.2 4.91 10.1 3.38 5.7 7.04 8.85 2.86 8.87 8.84 8.69 9.07 10.1 6.45 3.49 10.7 8.64 11.2 7.09 7.7 10.3 5.46 10.8 1.36 10.5 9.32 9.13 8.7 10.1 11.1 11.1 9.67 10.3 8.84 9.14 9.93 9.6 10.5 3.01 7.63 12.1 9.91 10.6 7.99 6.97 7.37 7.8 10.7 7.71 9.81 4.71 5.46 7.85 11 10.9 8.92 9.69 6.3 8.85 4.62 5.02 4.57 8.55 6.91 10 8.79 8.45 10.1 8 7.92 9.54 10.2 3.27 10.6 11.9 7.64 9.66 10.2 6.24 12.5 8.06 11.2 10.7 8.94 4.13 12.4 5.12 8.59 2.6 10.3 11.6 3.01 11.9 9.28 5.12 4.19 10.1 9.45 11.2 9.9 6.7 9.35 6.93 6.35 8.78 11.3 10.1 6.99 3.01 4.85 1.75 1.36 6.64 5.24 9.17 0 0 4.87 8.46 4.13 13.8 5.9 5.86 1.36 3.14 5.24 4.25 9.53 8.95 2.7 6.94 5.3 0 0 7.63 10.3 9.33 9.82 10.3 3.14 8.12 4.95 6.87 0 11.7 5.9 4.31 3.68 4.42 10.6 3.27 6.19 4.25 4.13 6.5 4.13 9.14 9.5 1.36 2.3 4.66 9.12 9.83 4.91 6.72 3.38 10.3 7.8 0 5.32 9.34 6.75 2.3 3.01 9.61 4.83 5.15 2.05 3.59 5.49 0.84 10.1 2.3 7.7 2.05 3.01 10.7 6.95 5.24 10.4 9.4 8.89 0 2.51 8.06 11 9 10.9 9.7 6.37 2.51 7.37 6.31 8.87 3.01 11.8 11.1 13.2 9.71 10.4 10.8 9.26 11.9 8.62 8.28 9.6 10.5 9.98 8.84 10.5 8.97 9.07 7.88 6.11 8.18 5.44 10.2 8.64 10.9 10.6 10.7 9.68 9.18 9.88 9.58 4.19 7.67 5.81 7.94 10.8 10.1 11.7 10.7 11.1 7.27 7.97 11.7 11.7 4.45 10.8 11.2 10.2 8.9 8.66 10.7 11.4 12 7.78 8.73 7.02 7.72 9.35 8.33 8.22 9.26 7.63 10.8 12.9 13.1 11.3 8.77 12.2 10.5 9.94 10.4 9.81 12.6 10.4 10.6 10.6 10.2 12 9.12 9.77 7.06 11.1 9.88 9.84 8.45 1.75 12.1 5.59 13.1 10.4 11.2 10.1 11.7 7.24 8.4 9.73 8.63 12.2 10.7 4.37 6.18 3.49 6.79 10.6 11.4 8.36 10.4 10.4 5.88 11 5.61 10.6 6.21 18.3 8.74 10.6 9.7 5.96 7.75 1.75 11.2 6.9 11.1 11 10.4 7.8 14.2 2.7 7.59 12.8 9.83 9.62 10.6 7.47 1.36 11 5.9 10.1 10.6 10.8 11.5 11.7 13.1 9.53 9.1 6.3 10.5 10.2 8.88 8.98 11.8 8.54 10 11 10.7 9.4 11.4 13.4 11.1 12.4 11.5 5.15 6.21 2.7 11 11.3 11.7 8.51 4.95 13.2 6.97 10.9 11.7 12.4 7.15 10.4 10.6 5.76 4.31 5.05 2.86 3.76 4.19 3.92 3.54 12 1.75 3.76 2.86 4.64 13.5 11.4 9.81 8.63 8.41 5.18 10.3 8.92 7.08 8.15 9.72 6.43 4.25 3.99 10.2 10.8 5.9 7.61 4.91 6.77 8.78 10.8 10.3 9.94 10.7 9.02 8.43 10.3 11.2 3.38 14.7 0 8.89 10.7 12.1 7.79 11.5 9.52 10.4 9.28 12.6 9.24 10.2 8.06 9.92 11 8.14 11 9.63 5.05 8.52 9.81 4.71 6.21 10.2 6.89 8.29 3.49 3.01 2.51 11.1 8.35 5.21 12.6 6.93 9.26 7.88 8.24 7.43 15.8 6.65 10.8 11.7 9.94 10.2 11.2 9.6 8.84 5.39 8.97 6.65 0.84 11.3 13.4 10.8 9.72 13.1 9.27 9.46 10.4 7.85 6.94 9.23 11 8.86 11 9.11 8.7 8.16 9.51 4.71 5.74 7.4 8.61 9.92 10.7 10.6 5.84 4.75 7.66 9.81 5.24 4.06 12.3 7.07 9.65 10.5 7.27 3.92 11.3 8.18 9.01 9.79 8.97 10.2 4.98 12.5 8.53 8.13 8.81 10.5 9.9 0 9.3 10.8 7.04 11.5 2.3 0 9.39 5.61 9.51 5.94 10.5 10.9 8.66 5.49 12.3 10.8 9.82 10.5 5.96 4.42 9.42 12.9 7.05 9.75 8.77 2.05 8.41 8.79 2.51 10.4 5.88 7.71 6.24 8.68 8.34 10.1 9.78 10.1 8.45 11 7.77 9.62 3.27 11 4.95 5.12 11.1 11.5 11.9 11.2 4.42 12.5 10.4 0.84 11.2 9.07 8.73 11.1 11 11.3 3.27 11.4 13.5 13.8 11.8 12 9.44 5.78 9.36 5.18 10.5 6.51 4.31 14.4 12 10.8 10.6 8.03 10.2 15.4 14.5 14.5 5.66 10.6 11.1 8.53 9.83 11.7 6.15 10.1 10.5 9.66 8.82 4.57 13.7 11.3 6.13 9.49 5.18 7.76 16.8 14.9 7.01 10.7 8.82 12.3 9.34 8.35 10 9.73 10.7 9.1 16.1 12.5 10.8 8.95 5.59 4.87 10.6 10.8 11.7 12 7.55 12.4 10.8 8.05 4.95 4.66 10.3 11.8 6.8 11.4 13.3 15 10.1 6.46 3.01 8.36 10.7 7.85 11.7 9.97 10.2 15.2 1.75 9.95 9.38 12.2 11.9 1.36 12.7 13.4 14.7 11.5 12.7 14.7 8.34 9.49 12.3 7.95 17.2 0 17 8.93 9.5 14 9.47 9.19 7.41 11.8 6.58 8.21 15.5 2.05 13 9.71 11.5 10.3 5.68 9.33 1.75 3.76 6.39 7.61 8.5 0.84 2.7 4.19 10.8 9.83 10.7 3.14 10.1 1.36 9.39 10.4 8.17 8.92 7.51 9.65 11.1 9.98 10.9 12.5 8.43 7.34 8.7 6.47 7.01 8.9 9.37 7.39 4.13 4.42 8.5 8.5 9.07 9.65 11 2.86 5.76 6.37 6.25 7.54 3.38 8.83 10.1 0.84 6.76 10.7 9.45 3.14 7.62 4.13 2.7 10.2 12.1 7.57 6.69 4.17 8.62 8.97 7.79 3.32 9.68 0 8.29 7.82 6.05 2.05 4.52 8.9 8.39 5.46 14 4.62 7.58 0 6.18 0.84 3.84 5.68 8.8 5.27 9.46 1.75 2.05 8.57 3.58 8.41 7.61 5.63 3.38 10.2 0 2.7 4.13 7.14 3.76 7.69 7.65 5.63 7.98 1.36 9.83 6.3 4.95 0 8.21 11.6 8.2 3.84 9.47 3.38 3.84 12 5.41 6.66 3.38 8.29 10.7 2.86 1.36 4.13 7.96 4.47 8.8 4.62 4.79 1.75 8.63 8.37 2.05 12.7 3.92 10 7.02 8.22 10.1 6.08 4.13 10.8 2.3 11.7 4.19 14.2 3.49 14.2 16.4 13.1 1.36 10.2 10 10.3 8.64 10.9 11.8 10.3 10.4 9.81 11 9.57 11.4 3.38 10.9 10.6 11.7 9.32 10.2 8.59 11.2 9.54 11.5 11.7 8.05 11.5 4.83 11 4.98 10.1 7.67 9.51 7.4 8.89 11 2.7 9.01 9 13.7 9.42 9.93 11.5 9.83 2.3 11.6 2.51 12.7 11.3 11.4 10 10.8 11 10.8 10.4 11.9 8.32 2.3 9.43 10.9 9.49 9.68 11.2 11.2 7.54 10.8 8.98 10.9 11.7 12.5 11.6 11 10.7 8.92 11.4 11.7 8.38 4.13 8.57 1.75 14.3 16.1 4.98 8.2 9.2 5.68 7.12 8.71 7.45 8.27 6.1 12.3 13 12.7 10.4 9.14 10.6 11.7 11.3 9.92 7.71 7.28 9.84 9.89 9.3 9.49 7.41 2.05 5.81 8.13 6.16 3.58 8.44 2.05 6.39 8.09 7.99 5.12 1.75 8.62 7.88 11.6 10.2 4.37 1.36 13.9 4.98 8.84 10.3 5.95 10.4 5.05 11.5 10.6 5.02 7.92 7.18 10.9 12.6 8.28 9.89 9.34 12.1 8.91 13.6 11.7 11.2 13.4 8.61 12.1 15.9 6.27 13.5 8.06 10.1 8.21 6.42 10.5 9.35 8.09 8.76 6.22 12.6 8.47 9.17 6.72 6.54 8.34 6.51 8.31 5.54 6.82 7.68 9.35 9.23 7.91 10.2 8.69 7.04 4.95 10.3 9.87 9.81 6.43 7.68 8.44 7.91 6.11 10.2 9.01 7.31 6.87 7.58 7.68 2.51 5.46 6.6 7.9 8.27 8.16 9.87 6.7 0.62 9.76 3.99 7.48 8.39 7.72 2.3 4.06 5.54 5.49 3.23 11.3 6.69 5.24 2.86 5.28 4.46 0.84 4.42 9.44 8.52 6.16 9.14 6.77 6.25 7.42 6.3 7.24 9.19 10.5 6.03 9.02 7.77 11.2 8.28 10.2 9.31 9.88 9.53 7.45 6.73 7.48 1.36 9.45 5.37 11.1 7.95 6.78 6.15 6.62 4.95 6.51 8.53 6.91 9.84 4.31 8.21 9.09 6.55 8.18 8.11 8.86 10.2 7.3 7.93 5.76 9.59 11.4 5.15 3.58 9.08 5.51 4.91 13.3 9.26 5.41 7.55 5.51 8.68 3.99 8.13 6.51 6.79 6.57 9.32 8.17 6.21 4.95 3.01 6.21 9.39 9.9 4.47 13.3 9.08 9.24 11.8 8.49 10.7 5.88 12.9 7.53 12.8 8.22 11.3 8.08 6.66 12.6 12.5 11.2 8.69 10.6 10 13.6 7.54 6.21 6.69 9.55 12.1 6.27 10.2 8.97 9.69 8.51 11.5 9.31 10.1 10.9 12.7 7.95 6.95 9.25 3.76 10.7 10.3 6.54 4.52 8.63 10.6 10.4 7.43 8.89 4.25 4.19 9.01 10.4 3.67 11.8 12.4 8.61 11 10.1 9.83 8.49 9.94 10 3.49 10.1 9.97 8.19 5.94 8.5 9.83 8.24 4.31 14 10.1 7 7.59 8.9 10.3 9.8 9.59 11 7.18 10.3 11.3 3.27 10.5 10 10.3 11.3 9.35 9.3 3.01 9.97 8.77 10.7 9.33 9.8 8.69 6.8 6.79 11.3 6.56 6.87 9.44 7.2 9.37 10.1 8.83 11.2 10.8 8.85 5.83 9.98 9.38 8.42 5.21 10.6 11.9 8.88 10.3 2.7 10.5 9.71 11.4 10.2 8.65 8.54 8.29 7.65 11.1 10.3 8.24 9.72 10.7 13.5 8.36 8.21 9.32 6.11 8.74 8.12 6.67 8.24 10.1 9 8.32 9.44 8.37 12.5 8.67 8.39 1.36 5.99 9.18 12.3 7.52 11.4 5.98 4.52 9.91 7.93 8.99 7.83 7.98 9.05 10.9 8.4 7.15 3.67 11.9 12.9 9.76 10 12 10.7 7.37 7.02 4.66 9.35 4.13 0.84 0 11 5.24 9.86 9.3 5.54 5.05 4.42 1.36 8.41 2.51 5.18 7.53 8.65 4.83 8.68 10.9 9.06 8.09 2.3 9.08 7.55 9.81 3.38 2.86 5.09 3.68 10.7 7.53 6.96 5.02 8.22 10.4 9.38 8.66 8.35 9.27 10 8.67 7.62 10.3 13.8 10.1 11.1 9.1 8.7 8.93 7.96 5.41 9.99 10.6 9.43 4.31 7.86 7.23 7.07 7.46 8.41 7.73 6.87 5.59 9 9.58 9.32 7.12 4.47 6.91 7.24 7.88 8.91 8.69 8.83 4.79 8.55 8.01 5.78 8.54 7.55 8.8 10.1 6.1 9.54 8.48 4.37 7.38 9.39 8.51 8.37 8.57 9.63 10.3 8.28 9.9 6.95 8.17 8.77 8.09 10.4 7.78 8.84 9.19 10.1 7.3 6.18 9.23 6.68 9.1 9.05 10.2 7.68 4.13 7.88 8.9 8.66 8.27 7.24 9.56 7.9 9.08 10.9 8.45 8.35 9.28 7.83 7.39 9.44 6.15 7.68 9.18 8.47 9.06 8.76 9.92 6.51 12.3 9.58 9.2 8.25 7.82 9.29 11.1 9.53 11.6 9.74 10.1 2.3 6.79 10.3 6.27 9.47 7.47 7 4.37 7.88 7.06 8.85 10.5 7.35 7.71 4.25 4.75 9.39 7.59 9.91 7.38 0 11.2 6.74 9.08 9.05 7.45 8.5 1.36 9.02 10.1 6.33 8.05 8.73 11.4 8.85 8.72 10.7 6.93 5.98 9.56 8.73 8.82 7.12 8.44 9.25 0 7.7 8.73 7.66 5.12 8.56 12 9.9 11.6 7.18 8.92 8.52 9.41 6.77 5.7 3.99 8.62 6.74 6.33 7.59 6.7 10.5 10 10.5 4.13 4.79 5.68 7.58 6.05 6.1 8.65 2.05 9.28 7.04 7.21 6.89 8.24 8.62 6.79 7.09 9.21 7.88 10.7 3.92 8.99 4.06 7.02 8.66 7.26 6.46 5.96 5.41 7.88 9.78 6.85 6.42 7.7 7.95 9.37 7.45 1.75 5.12 9.06 2.3 7.49 6.06 5.56 8.75 6.77 3.67 6.47 9.26 8.88 10.8 5.18 7.07 8.39 8.94 9.74 11.2 9.8 10 3.99 8.48 9.19 10.3 7.23 9.12 8.24 9.56 10.1 10 6.91 10.3 10.3 9.38 5.46 7.76 9.72 6.22 7.92 13.2 9.65 11.1 4.25 7.19 4.62 9.54 8.69 7.75 6.06 6.52 8.05 12.1 7.61 3.67 6.83 6.83 5.76 6.31 7.74 8.75 3.14 9.51 9.65 10.5 4.79 5.46 10 9.79 3.99 7.67 5.09 2.87 8.91 9.48 0 9.37 3.49 9.54 8.49 8.17 6.38 10 7.91 6.54 9.19 5.46 8.48 8.5 10.6 4.79 5.15 1.75 7.66 8.24 6.5 7.07 4.52 11 5.68 9.69 9.06 3.84 7.68 6.05 13.9 0.84 4.31 8.75 8.59 8.08 8.15 7.51 4.83 6.75 10.3 10.2 8.41 9.06 9.8 8.61 9.87 8.15 8.12 10.9 11 9.39 8.72 8.29 9.27 0.84 2.7 2.3 3.67 9.47 8.37 7.7 2.54 4.62 3.14 1.75 8.06 12.1 12.4 5.98 7 6.34 6.05 5.59 0 8.31 6.97 10.3 5.99 9.62 6.89 8.59 9.47 10.6 8.76 10.3 9.95 9.48 10.8 9.64 7.04 10.2 9.73 10.4 8.62 7.43 11.2 5.76 8.43 8.72 7.88 11.2 7.98 5.88 9.42 7.87 9.74 7.78 10.2 9.41 8.93 9.02 10.4 9.73 6.61 10 9.1 7.96 8.75 10.1 9.32 11 9.86 10.9 9.6 8.61 4.66 10.5 9.35 8.15 9.41 12.1 7.17 9.28 10.4 10.7 4.47 11.3 10.7 7.39 7.62 5.46 9.22 8.84 9.56 4.06 8.27 8.19 5.59 9.3 8.78 10.5 11.3 8.68 5.39 11.8 8.75 4.95 9.33 10.9 10.1 8.58 7.35 10.3 8.61 7.02 10.3 10.9 10.6 8.15 5.99 8.86 7.92 7.97 5.33 7.84 5.68 7.59 4.71 9.61 11 10.9 4.06 3.38 10.6 10.1 3.92 10.7 9.49 1.36 7.93 6.68 9.58 7.24 9.45 10.5 9.8 3.27 10.1 4.87 10.1 11 5.54 11.2 11.7 13.4 8.71 8.29 8.84 12 5.83 10.4 6.97 7.44 9.53 5.83 9.39 11.1 7.61 10.6 5.15 3.76 4.25 5.94 4.87 9.23 8.06 8.45 10.2 6.97 7.4 7.67 11.2 8.91 11.4 9.25 7.25 9.37 10.8 7.55 7.8 10.2 7.54 10.9 14.3 9.24 12.2 9.91 12.5 7.59 8.2 9.5 7.61 8.21 6.87 8.91 9.86 8.77 8.42 8.74 0.84 10.4 9.09 8.37 9.72 7.77 10 4.4 5.51 9.15 3.13 11.5 7.99 9.18 7.56 3.84 3.76 12.4 14 8.41 3.38 6.9 7.86 5.09 9.05 8.71 10.8 10.6 12 14.4 3.38 7.23 4.98 7.27 3.99 11.1 11.8 10.7 3.27 4.31 10.4 11.8 10.1 10.7 4.13 10.1 6.56 0.84 11.9 7.14 9.97 8.45 8.04 10.5 8.36 5.21 10.9 9.29 9.25 10.4 6.51 10.6 9.71 9.56 10.3 9.12 10.3 9.43 9.7 10.2 9.63 12.5 0 7.9 9.14 8.67 8.78 11.3 9.75 8.89 7.86 9.31 5.21 7.27 11.3 11.2 12.7 3.49 8.62 9.87 8.33 6.33 9.58 9.24 6.88 3.27 11 11.1 11.1 7.12 4.78 10.3 9.83 8.25 10.9 5.02 11.1 9.18 11.8 11.9 11.6 10.1 5.86 6.46 9.66 4.71 8.17 4.87 3.14 12 9.42 4.98 10.9 6.92 8.41 2.7 10.4 3.92 9.33 6.08 8.06 6.37 8.7 9.69 10.3 9.01 9.93 3.87 10.8 7.82 11.1 11 6.54 9.58 8.3 12.3 10.6 9.32 9.45 11.2 10.5 9.61 2.3 10.2 10.5 3.01 10.7 10.6 8.09 9.73 4.57 6.82 5.98 9.35 9.54 1.75 9.77 9.84 6.76 11.1 13 8.51 10.5 7.53 11.6 9.11 3.14 10.1 8.29 10.7 9.52 12.1 9.06 11.9 11.2 13.7 11 11.4 10.2 7.62 13.9 11.1 8.05 9.74 8.82 9.2 10.3 2.86 9.68 0 9.96 11.1 9.28 8.98 9.72 0 10.3 10.6 12 9.03 8.15 12.1 7.96 10.8 9.41 10.4 9.27 6.11 5.27 12.8 4.57 11.3 10.6 8.98 9.85 8.31 3.49 3.76 10.1 2.3 0.84 1.36 9.24 2.51 10.8 4.06 5.05 6.78 8.03 0.84 2.3 2.05 5.51 0.84 2.05 10.3 3.14 10.2 12.9 11.2 9.67 6.19 3.58 1.36 7.54 8.22 6.47 1.36 9.02 6.51 8.93 8.15 10.2 4.71 7.07 8.89 8.24 8.69 1.36 8.3 8.45 12.7 10.1 9.7 0.84 2.71 0 3.01 6.86 0 6.28 8.41 9.94 8.36 8.24 9.3 10.3 1.36 11.8 0.84 3.67 0 1.75 10 6.82 3.14 10.4 7.21 8.45 8.65 8.81 1.36 9.36 10.8 10.4 9.05 8.67 0.84 6.15 9.67 11.6 10.3 1.36 8.15 10.2 9.46 9.06 8.91 5.39 2.86 4.37 12.7 0 8.97 10.2 9.45 3.01 8.59 10.9 8.2 5.83 8.96 9.48 4.31 2.3 8.68 10.7 7.27 10.5 9.07 9.2 7.07 3.58 13.1 11.4 6.55 3.27 5.7 8.85 4.42 7.1 10.3 11.2 9.46 5.74 9.38 8.8 3.38 7.58 8.57 10.2 9.51 9.68 0.84 6.54 5.72 7.89 3.92 2.11 10.3 5.92 7.98 9.1 6.54 7.16 9.73 12.1 9.03 9.42 9.38 6.3 10.2 7.42 7.83 0 4.95 3.01 6.38 2.3 4.47 0 3.01 7.81 11.1 8.71 4.13 8.97 9.2 7.34 9.83 10.1 7.84 11 10.6 8.38 7.59 7.56 7.03 1.36 8.03 1.75 9.06 11.2 9.25 10.3 4.47 10.3 11.5 10.1 8.29 8.82 0.84 5.02 6.16 0 8.43 8.64 4.19 8.75 10.5 11.4 10.2 13 10.1 5.51 8.48 4.98 8.89 1.36 10.2 7.47 10.2 8.97 7.64 9.05 9.86 10.5 6.13 4.91 13.8 3.27 5.76 1.36 4.83 5.7 4.79 9.2 10.9 9.77 9.33 5.68 5.12 7.78 10.9 3.14 9.35 6.19 2.3 7.43 8.32 6.61 7.66 9 9.27 9.4 8.08 9.84 9.82 7.89 7.92 7.64 8.21 7.54 6.62 5.59 7.25 4.83 8.51 10.3 5.15 10.9 9.44 11 9.79 9.03 8.64 10.8 9.46 8.4 12.6 10.7 8.78 8.38 8.38 5.96 7.52 10.2 9.55 9.71 8.88 8.56 9.79 3.58 1.75 6.83 9.35 9.83 9.83 2.51 8.32 7 7.36 2.51 7.29 5.76 8.6 3.58 9.12 6.69 6.63 4.79 6.87 4.13 4.37 8.63 11.3 11.8 8.45 6.63 3.14 8.21 9.26 9.25 9.3 8.61 9.99 4.25 13.3 6.77 4.79 8.48 7.78 9.43 9.64 4.75 8.91 8.15 8.25 9.83 9.57 8.91 9.29 11.7 8.22 10.3 9.17 9.77 9.32 9.9 8.73 8.8 8.93 6.45 8.02 8.97 5.56 8.9 11.4 8.7 5.54 9.63 6.89 8.87 8.76 9.49 9.79 6.1 8.76 0 8.66 10.7 7.4 8.71 6.38 9.16 10.4 8.69 10.6 2.95 7.88 9.43 9.03 9.75 7.37 7.68 9.39 0 11.2 9.7 6.92 9.92 7.5 7.24 10.5 9.45 7.62 9.24 10.3 9.76 10.5 11.1 4.25 6.78 8.44 9.03 8.99 3.27 9.38 9.33 10.9 9.07 10.9 9.29 8.25 8.29 9.26 3.92 10.3 10.6 10.2 6.57 10.1 5.02 9.22 3.92 10.8 7.04 12.2 8.12 10.7 10.2 8.22 8.22 7.78 8.31 9.42 6.84 9.54 11.9 7.46 10.6 9 8.19 8.72 9.9 8.19 6.8 8.98 3.54 8.57 9.21 9.26 7.98 2.05 2.05 3.92 6.28 9.76 8.99 11 7.49 5.76 6.99 10.2 11 9.7 6.7 9.73 5.39 4.06 5.15 10.2 6.79 10.3 6.18 9.43 8.94 6.96 8.63 9.18 6.05 10.6 4.19 7.03 10.3 6.75 9.42 8.68 10.1 9.14 11.2 11.8 4.31 10.9 7.01 8.75 1.36 8.92 7.75 3.92 12.6 10.3 9.75 8.5 7.67 8 11.4 8.19 9.92 8.11 11.8 10.9 8.53 5.94 2.3 6.75 8.12 10.4 4.47 7.46 10.2 10.4 4.83 2.7 0 1.75 9.46 12.4 8.39 9.27 9.66 5.41 7.32 0.84 9.65 2.3 0.89 9.77 9.09 11 3.99 4.83 7.27 7.4 2.3 3.84 0 9.51 8.82 0 7.3 8.71 10.2 9.4 5.86 9.22 11.5 8.96 6.37 5.46 12.2 7.56 12.1 7.07 8.13 2.51 9.24 8.72 8.39 5.83 9.87 8.62 10.7 7.38 4.06 8.73 5.86 4.13 7.9 8.19 9.08 11.4 6.28 8.56 5.94 8.61 11 9.21 5.66 5.72 6.97 5.3 8.21 10.3 8.82 6.83 5.3 5.21 6.43 10.2 9.8 8.06 9.1 10.2 5.41 8.67 11.6 4.57 3.84 10.7 10.8 6.64 8.44 0 4.37 8.6 6.9 7.61 5.98 9.48 7.6 9.64 9.13 6.61 8.75 8.54 8.15 6.46 7.32 2.3 7.29 8.58 10.8 8.25 8.68 8.5 8.42 9.53 9.95 13 8.25 8.87 0.84 8.78 10.9 8.95 9.42 9.27 9.94 9.86 8.9 11.2 5.9 9.3 9.31 7.01 7.6 9.58 10.9 9.11 9.49 5.36 8.63 7.75 8.79 5.27 9.2 11.1 11.9 3.14 4.83 9.4 9.24 7.52 8.22 10.4 8.61 2.05 7.96 7.88 8.52 8.35 8.88 8.93 9.31 6.35 10.5 10.5 7.18 8.62 5.12 8.19 9.36 7.17 7.89 9.13 8.72 3.67 12.1 4.25 9.32 8.85 8.94 7.53 6.66 9.79 8.12 6.8 9.14 8.42 9.16 8.28 6.28 6.03 9.07 11 9.59 10.9 4.87 10.8 9.14 0 6.08 7.28 8.01 9.9 9.9 5.63 1.36 10.7 10.3 10.5 6.42 9.78 6.06 7.14 10.1 2.7 8.8 10.5 8.75 11.6 7.67 7.21 10.1 9.37 9.01 8.8 11 8.95 8.87 7.88 8.09 9.6 13.2 10 8.4 10.7 4.47 8.85 7.84 1.36 9.41 9.9 12.8 8.95 1.75 10.3 0 10.1 10.3 6.89 9.61 3.18 2.05 8.88 7.87 9.69 8.44 12.7 9.07 6.99 0 12.1 0 7.37 9.83 7.94 9.59 6.1 10.2 10 10.1 10.4 9.11 9.04 9.45 6.31 8.47 4.25 4.19 8.89 10 9.05 10.5 8.45 9.37 9.08 10.2 6.24 8.82 7.33 1.36 7.53 9.64 3.38 11.6 10.5 9.56 7.46 7.26 8.08 9.08 10.1 7.11 6.71 10.6 11.4 9.83 9.79 7.56 13 7.96 7.76 8.91 9.86 5.99 10.3 7.43 7.45 10.2 8.39 4.75 3.38 9.09 7.5 5.44 0.84 8.21 2.3 4.42 9.5 8.76 4.01 5.92 14.1 7.75 8.87 5.88 4.06 10.5 8.23 11.3 10.1 8.82 4.3 10.4 12.2 10.3 10.3 8.76 11.3 11 10.6 9.68 9.79 9.73 9.68 7.78 8.32 10 7.58 10.2 8.35 3.27 2.51 9.05 9.33 8.53 7.36 10.4 6.71 6.41 11.6 11.6 9 10.1 8.25 9.87 5.39 5.39 9.36 7.22 10.3 9.19 10.6 2.51 7.96 6.76 9.61 6.43 5.78 3.49 8.69 10.6 11.5 10.1 5.51 10.2 8.9 4.25 11.6 9.09 8.32 9.07 8.82 9.98 9.04 9.69 9.78 8.22 8.69 12.3 9.92 7.71 10.5 11.4 12.4 6.81 12.1 12.6 12.4 12.4 11.9 10.2 9.01 8.81 10.6 11 9.11 10.8 8.11 9.07 9.97 9.17 9.52 13.2 11.3 6.18 8.28 11.7 7.29 10.2 9.01 6.58 12.6 0.87 10.8 9.93 11.1 8.11 9.59 7.49 1.36 14.5 7.63 6.85 9.18 8.77 7.95 11.1 13.6 11.2 9.69 11.8 10.2 8.69 9.85 9.34 10.9 10.2 9.48 8.12 11.2 5.78 9.97 6.66 7.48 10.1 9.6 10.5 8.14 7.71 6.72 2.05 1.36 8.19 11.9 10.4 14.3 9.5 12 11.9 10 11.2 9.11 8.82 8.97 10.1 8.87 11.5 8.92 6.67 8.91 4.31 9.91 5.54 3.01 9.42 5.9 7.41 3.92 7.43 5.02 10.9 4.66 9.44 9.28 5.33 6.03 9.78 10.7 8.32 10.5 8.71 6.35 6.85 3.49 2.3 9.59 8.94 3.58 12.2 10.1 9.46 10.7 7.94 3.67 6.25 3.38 9.23 4.47 12.3 12.4 10.6 7.49 9.3 4.98 10.1 9.36 9.23 8.51 10.7 0 7.79 8.66 10.1 3.99 2.7 9.44 9.71 6.75 5.84 12.2 9.04 7.32 9.41 12.7 3.01 10.2 1.36 9.74 10.5 6.9 8.83 8.61 7.25 10 12.1 8.38 10.2 10.5 9.26 5.88 5.41 8.89 13.5 11.2 9.38 11 9.2 9.15 8.86 10.1 10.8 10.8 8.84 9.84 8.72 8.43 9.86 10.4 10.3 11 9.95 9.75 9.97 2.7 5.95 5.27 12.5 8.22 10.5 11.2 10.1 5.39 8.42 9.87 5.54 8.26 9.57 5.02 8.59 7.9 7.31 9.35 9.95 9.77 6.04 5.59 2.7 9.54 10.4 12.8 9.1 9.22 9.98 5.69 10.2 11.1 8.92 6.42 11.7 8.74 11.7 1.36 2.05 4.19 13 5.66 0.84 11.9 11.1 10.3 6.1 0.84 9.22 7.62 8 9 10.8 10.9 5.09 8.11 2.7 3.84 2.7 2.05 9.27 9.18 9.04 8.84 11.3 9.24 7.81 0 9.88 7.97 6.88 0.84 2.15 8.4 5.34 2.51 9.11 3.28 8.18 11.3 7.75 6.35 12.5 9.74 12.2 9.2 2.86 10.5 8.51 11 9.53 9.62 5.72 8.62 8.33 6.62 6.69 6.39 5.81 9.78 10.7 12 2.86 9.11 5.46 9.23 6.47 9.21 9.19 4.47 10 10.2 10.2 0 10.3 9.8 6.88 5.68 6.22 7.75 5.21 12.3 10.1 9.98 8.85 9.87 8.29 15 12 2.86 8.39 10.2 6.52 3.58 4.19 6.45 8.64 9.34 8.56 1.36 6.42 4.87 6.25 4.87 4.83 10.4 11 6.54 8.79 9.67 8.78 1.36 7.25 7.88 9.19 4.91 0.84 7.59 7.4 8.97 11.3 7.73 9.55 5.92 9.64 8.18 4.42 11 8.76 9.8 10.8 8.99 7.89 6.66 8.09 11.1 9.42 9.54 13.9 8.04 7.56 7.75 4.13 11 3.84 10.7 11.1 9.04 8.06 3.67 9.96 8.59 9.84 10.2 9.26 6.86 7.45 6.45 9.07 8.63 9.44 9.85 10.6 9.34 6.92 7.74 4.19 2.36 8.47 5.94 9.16 10.4 7.78 8.28 7.37 8.24 8.97 8.59 10.6 5.12 7.63 4.37 5.81 9.5 6.13 8.95 7.32 11.4 8.61 1.47 8.46 3.14 2.33 4.83 10.3 9.37 9.73 11.4 4.06 9.43 8.91 7.36 6.75 10.2 10.6 4.57 10.9 10.7 9.2 9.95 7.23 6.15 0.84 10.3 11.4 9.56 9.49 9.18 7.65 10 9.6 8.9 9.19 9.48 8.97 8.95 10.3 9.12 11.7 9.44 9.49 9.51 9.66 10.6 6.45 10.4 7.69 8.29 8.32 7.7 9.03 5.31 4.37 9.38 9.17 8.35 10.4 6.55 6.8 7.17 8.53 10.1 7.3 7.83 8.78 11.3 3.84 2.51 5.99 3.01 8.23 7.53 4.42 10.4 12.4 6.43 11.4 9.6 6.61 10.1 9.6 8.85 11.1 10.2 8.31 1.75 11.4 11.2 12.2 9.46 8.87 6.5 0.84 7.81 5 10.1 8.18 1.36 6.76 9.08 9.05 9.7 9.49 12.1 9.33 6.88 7.94 9.43 8.69 9.33 8.09 10.4 6.13 6.79 8.22 11.1 6.19 9.07 8.28 5.02 8.21 11.7 10.9 8.53 4.19 9.98 7.65 9.78 5.15 7.68 5.94 7.73 9.34 4.71 8.89 10.7 10.2 10.1 9.91 9.17 8.3 10.3 8.62 10.2 5.02 10.3 2.05 8.34 10.9 8.59 6.56 3.27 13.3 6.24 10.9 16 6.57 9.64 10.5 8.51 7.76 3.58 9.2 3.27 5.96 3.92 6.52 10.1 9.71 5.96 4.31 5.78 3.01 10.6 7.21 7.82 9.95 9.62 9.63 6.69 4.06 11.1 3.92 7.96 7.92 10.3 7.32 11.6 9.84 4.18 8.21 8.05 6.95 9.29 10.6 5.83 7.82 10 6.86 3.99 8.28 10.5 2.05 9.24 6.01 8.98 8.31 8.9 4.47 9.26 8.58 10.3 7.31 8.97 7.43 7.28 8.98 9.77 10 8.26 8.28 8.19 11.1 9.58 4.52 7.76 7.58 8.41 7.35 6.61 9.04 9.31 8.93 11 8.27 9.82 8.24 9.22 9.82 11.5 9.51 10.8 0 10.8 10.7 3.01 8.69 2.3 8.3 9.78 3.99 9.07 5.76 6.06 6.88 4.79 3.01 1.36 2.05 6.08 8.3 12.1 6.8 9.9 11.3 9.62 7.39 10.1 6.4 7.49 7.56 6.78 10.9 5.84 9.96 3.84 8.35 10.1 9.97 8.66 9.56 8.43 3.76 8.7 1.75 6.13 0 10.8 8.34 2.05 12.6 8.12 4.13 10.3 11.6 7.36 9.67 12.2 9.92 7.24 11 6.13 4.68 7.43 9.02 5.81 12.6 10.2 11.4 7.55 10.6 8.67 11 8.13 11.1 8.31 10.7 9.97 8.32 4.47 10.6 10.1 10.3 10.1 10.6 7.95 10.2 11.7 10.8 9.88 4.79 10.3 11.9 6.9 6.57 9.52 9.31 4.52 10.4 6.52 9.63 9.27 11.6 3.67 8.79 9.7 9.1 5.81 8.92 8.74 11.2 11.3 6.97 6.64 8.46 10.3 6.79 6.1 10.5 1.79 11.6 7.23 8.03 9.02 7.2 2.51 8.58 5.74 9.96 9.45 8.42 9.83 9.21 11.9 10.8 11.5 7.04 7.52 7.63 10.7 7.81 10.6 7.59 10.8 8.17 9.86 11.2 3.14 10.8 8.94 9.13 11 6.83 8.79 8.53 6.65 10.6 7.34 1.36 10.4 9.56 8.77 9.91 8.87 8.54 10.5 9.63 5.87 10.9 9.66 10.8 5.54 5.3 10.5 15.2 4.83 11.3 7.11 10.7 7.7 10.4 0 6.62 3.14 13 5.21 6.7 6.18 9.47 10.9 9.47 1.36 12.3 8.32 8.49 8.45 7.14 7.78 9.87 3.84 5.95 1.78 10.4 9.42 8.7 11.9 5.84 10.4 8.41 9.26 8.61 9.63 10.8 2.86 9.51 11 2.51 9.96 7.34 6.28 1.36 7.3 1.36 10.8 6.24 10.8 5.81 7.39 8.17 11 0 4.98 1.75 8.46 9.78 6.85 9.46 9.2 5.33 7.81 8.92 5.27 10.8 11 9.22 10.5 6.61 6.42 7.9 10.2 8.6 10.2 8.7 3.01 9.91 8.37 2.86 8.54 9.88 10.8 10.9 10.1 9.18 8.21 8 9.04 8.09 8.13 2.86 11.4 10.7 2.51 10.8 8.34 7.93 5.41 9.24 9.96 11.3 7.29 6.56 10 8.48 7.33 7.43 5.15 7.11 8.13 1.75 8.73 4.91 8.83 8.99 9.55 7.82 10.9 13.7 11.4 4.66 11.8 6.19 8.06 8.49 8.92 9.93 11.4 7.16 5.63 8.35 1.36 9.58 9.35 7.72 7.51 11.4 5.21 9.23 10.9 10.9 4.75 9.77 9.12 7.99 4.19 8.03 8.92 10.1 4.06 7.68 9.8 8.97 7.37 8.64 9.44 10.1 11.6 7.46 5.84 8 4.66 0.84 8.72 11.4 13.1 8.08 12.6 7.76 9.35 10.1 12.6 10.8 9.55 7.07 2.05 11.2 9.37 7.44 7.94 4.57 10 7.75 9.45 10.5 9.31 10.4 9.61 11.6 9.07 9.86 5.96 10.9 7.97 9.19 8.33 10.1 8.84 10.9 11.4 9.28 10.3 10.5 4.25 9.73 8.45 12.8 10.8 11.5 11.5 10.6 9.01 9.94 11.5 10.3 9.27 9.75 5.99 8.16 11.4 11.5 10.3 7.73 10.2 5.51 9.61 9.72 5.88 9.6 10.7 8.73 9.15 9.94 5.83 7.84 12.2 6.8 7.24 8.43 13 11 5.96 11.5 13.8 9.04 3.67 11.5 9.26 12 8.96 9.79 9.04 8.2 10.7 8.35 9.82 12.7 10.7 7.18 10.5 8.39 8.89 8.55 7.35 8.2 6.92 9.56 7.09 7.33 11.2 6.22 1.36 9.71 10.4 9.2 10.1 9.37 7.65 12.6 12.7 11.6 9.07 9.14 9.91 8.89 8 7.3 7.59 6.66 9.58 9.82 8.05 9.8 9.44 9.22 7.66 10.8 13.3 12.2 7.41 9.31 10.5 8.47 11.1 6.42 11.3 14.7 9.19 2.86 10.6 9.27 9.08 8.97 8.38 8.41 9.61 10.2 10.7 7.85 9.82 9.07 9.53 10.2 11.7 6.75 9.33 11.5 9.58 9.93 8.55 8.65 9.39 9.41 10.7 9.78 10.4 3.14 6.16 5.56 5.99 10.1 9.58 11.1 9.01 2.7 10.4 4.31 11 8.2 10.2 9.1 8.56 7.15 9.29 3.76 6.94 9.5 15.9 4.71 3.84 9.02 8.47 8.99 10.7 9.16 9.04 8.37 8.7 8.58 9.96 6.27 8.44 11.1 9.39 7.78 10.4 7.65 13.1 10.6 9.07 8.74 11.9 7.07 9.62 9.23 14.7 8.24 7.99 7.18 8.09 9.16 10.4 9.03 10.7 6.42 11.5 8.45 7.95 9.39 10.6 7.53 6.37 14.1 10.2 8.87 10.5 11.2 10.6 10.9 10.9 8.88 10.7 6.08 11.3 9.28 12.1 6.01 11.8 10.1 6.69 5.02 10.3 9.56 10 10.3 8.82 10.5 10.1 10.8 10.6 10.9 6.22 9.45 12.3 12.7 9.37 15.1 9.67 0.84 11.2 11.9 10.2 10.6 8.71 9.99 7.39 11 9.32 8.84 11.1 9.72 9.99 6.31 8.41 10.4 4.75 11.2 5.46 7.12 8.71 7.11 5.15 5.72 5.63 8.05 7.49 9.19 8.32 5.81 8.21 9.11 9.79 9.28 9.87 9.41 6.45 8.27 8.66 9.72 11.1 8.82 7.86 3.49 9.44 10.3 10.6 6.71 9.57 10.8 7.99 9.17 7.85 10.8 10.5 10.5 8.79 8.91 9.74 9.74 9.81 9.59 12 9.86 9.7 9.27 6.9 9.39 8.74 11.2 8.45 9.83 8.65 11.1 8.35 11.7 7.3 10.3 10.2 9.13 8.82 8.96 11.8 7.14 6.69 7.27 7.45 14.3 9.49 9.34 10.5 6.71 10.1 9.95 10.2 6.66 8.51 7.5 9.54 10.1 3.99 10.2 11.3 9.69 11.4 7.8 11.9 10.7 8.99 9.8 8.67 10.2 10.2 5.44 10.6 4.66 9.65 9.91 4.57 10.2 9.88 6.96 8.08 10.6 11.5 5.88 7.1 5.61 9.59 12.8 8.38 12.3 9.33 4.47 9.87 3.99 7.14 3.84 5.86 9.61 10 8.89 12.8 10.1 3.01 1.75 10.9 10.1 9.99 10.4 4.14 9.33 9.9 9.64 8.4 10.5 12 8.5 9.11 11.2 8.33 12.2 10.4 10.5 9.77 8.67 10.6 3.01 11.2 7.8 9.41
-TCGA-MP-A4SW-01 7.19 7.01 3.78 7.2 7.22 7.94 1.5 3.27 0 2.22 3.44 8.2 5.33 2.47 7.06 8.58 10.3 9.78 7.82 9.2 8.43 11.8 10.1 4 9.51 8.72 4.48 9.67 4.85 6.78 6.09 5.62 2.72 4.46 5.29 2.24 1.5 5.91 3.05 4.94 6.18 3.34 5.14 0 6.61 4.89 1.24 3.78 11.3 5.83 4 7.04 8.74 11.8 4.57 0.93 5.95 2.22 7.86 5.44 8.06 5.76 7.66 4.97 3.83 3.4 6.45 9.15 10.1 5.84 4 6.78 2.22 4.39 6.09 0.93 6.45 6.2 3.92 1.24 3.96 2.97 4.18 7.43 7.42 0.54 6.09 5.86 3.83 4.16 10 5.44 7.17 6.09 6.96 3.68 0.54 0.93 5.89 4.39 2.59 5.12 1.5 6.32 3.62 3.05 9.27 9.8 7.5 7.68 0.54 2.07 8.87 5.91 6.25 2.35 3.39 3.83 0 4.39 5.6 6.83 0 2.35 0.93 8.81 1.9 3.87 4.7 12.5 2.48 4.49 5.87 7.51 1.24 4.23 4.85 4.16 3.68 8.83 9.45 10.2 1.5 3.68 5.42 11.4 0 11.3 1.71 1.24 4.8 1.5 6.6 8.59 11.1 4.49 2.47 6.14 9.67 3.27 7.52 9.16 2.71 0.54 8.47 7.06 7.24 5.61 8.12 2.79 10.7 8.82 3.46 4.19 4.26 3.52 6.81 4.34 9.01 6.56 5.87 7.41 5 6.74 5.03 2.85 4.63 1.24 9.82 4.7 8.8 8.9 2.79 4.46 5.7 7.38 4.96 8.44 8.47 9.01 5.44 10.1 8.79 11.4 8.44 9.77 6.75 10.2 10.8 11 6.85 11 11.1 10.2 9.51 10.6 10.4 9.71 6.55 10.2 9.9 9.07 11.7 10.9 8.54 8.69 2.69 10.8 8.48 12.2 10.5 5.41 9.54 10.7 8.39 6.89 10.1 6.13 9.91 2.88 10.5 7.87 12.3 11.8 12.2 13.5 12.3 12.6 7.34 12.9 10.2 0 5.81 11 8.85 11.4 9.89 12.3 4.3 12.4 5.31 9.77 8.83 10.6 9.01 9.49 5.73 10.6 11.8 9.63 8.48 8.32 9.46 9.48 10.6 9.11 8.56 12.9 11.5 10.1 12.8 11.7 10.7 7.6 9.75 9.63 10.3 10.9 10.6 10 5.68 5.02 10.7 6.71 9.65 9.6 7.48 11.8 9.66 8.53 13.1 11.4 11.2 8.18 11 11.8 3.27 9.4 8.06 7.59 12.9 9.4 7.39 7.36 6.11 10.2 9.95 3.68 8.7 8.2 10.4 10.9 10.7 9 10.8 9.84 10.6 9.11 9.47 8.07 10 8.07 10.7 7.27 9.23 9.56 8.72 7.89 7.22 8.12 10.7 12.5 10.1 10.9 8.76 12.7 7.79 8.19 12.2 9.75 10.3 7.39 10.2 1.24 5.06 8.11 8.31 11.2 4.33 5.9 7.57 11.2 11.7 10.2 8.66 7.63 9.05 13.6 8.51 5.86 8.18 11.1 10.1 11.1 10 7.28 8.35 10.9 2.07 8.07 8.18 9.29 9.2 8.94 10.5 10.7 6.09 8.94 10.1 9.83 10.6 9.54 11.3 8.01 7.68 11.1 11.1 9.05 7.09 11.5 7.73 10.8 10.8 9.38 9.64 11.6 8.15 11.3 10.4 9.26 9.42 6.94 9.96 9.54 7.97 10.9 9.41 8.64 8.91 7.45 8.62 4.49 6.71 11.4 5.88 10.2 11.1 10.7 4.37 11.6 11.3 12.6 7.46 9.27 6.91 5.88 8.65 9.13 8.32 10 12.2 12.5 8.69 3.63 12.1 7.69 7.82 8.99 0 9.13 3.71 6.84 7.72 12.3 8.71 8.12 6.91 10.1 9.97 5.68 7.73 11.2 11.1 3.2 11.6 11 4.82 6.22 6.52 7.79 6.91 4.6 8.72 6.22 10.6 8.63 8.4 10.4 11.3 8.58 14.2 10.9 1.91 10.5 11.2 8.16 12.8 9.44 9.24 6.31 3.05 9.98 8.6 5.57 12.2 9.82 6.71 9.82 10.2 13.7 11.1 14.1 8.19 10.2 7.64 9.68 8.52 7.03 7.76 12.8 0 8.41 4.85 13.6 9.38 9.74 11.2 10.8 8.57 9.76 6.44 11.7 9.2 11.9 10.6 10.1 9.46 9.52 9.66 9.95 10.8 10 10.7 8.57 9.43 13.1 8.29 5.73 10.2 10.1 10.2 10.3 5.79 10.9 9.58 7.82 9.95 6.5 10.2 9.52 9 10.2 12.7 10.9 9.31 10.5 8.91 6.17 10.4 8.69 8.22 9.24 10.8 3.46 9.36 2.69 9.17 10.1 9.94 11 9.51 11 9.31 9.31 8.62 10.8 10.8 10.3 9.68 1.5 13.3 10.1 10.9 9.92 10.7 11.5 12 11.1 8.06 11.8 10.3 9.25 1.9 11.8 7.15 7.36 8.64 9.84 11.7 10.5 9.61 9.24 9.95 9.71 3.27 6.11 11.6 10.8 8.19 13.3 8.82 10.3 9.74 12.3 9.6 11.7 9.97 9.48 2.22 10.9 9.61 9.02 8.88 7.91 8.45 8.57 10.2 10.6 11 10.7 9.79 8.94 10.4 10.2 12.3 13 11.6 10.7 10.7 11.8 8.41 8.3 10.3 10.6 4.3 8.76 9.94 1.24 8.06 9.62 11.1 5.38 11 16.2 9.91 3.46 10.2 10.8 11.6 11.1 10.8 14.3 6.33 11.3 6.94 9.93 11.6 8.9 0 9.78 8.54 10.4 10.4 9.39 8.43 12.1 12.4 6.91 10.6 8.05 9.61 9.4 5.29 10.6 10.9 10.6 11.2 8.87 7.45 11.2 8.17 9.34 10 9.28 10.7 9.75 12.3 7.34 7.38 6.8 6.68 8.66 11.2 9.33 12.3 13.6 8.23 9.63 11.1 11.3 3.87 9.19 7.27 9.52 3.2 6.6 9.63 8.3 8.89 6.84 10.2 4.7 10.1 11.1 14.7 9.9 8.03 11.5 11.6 9.79 8.8 1.71 7.13 9.71 4.75 7.62 7.24 7.58 9.89 8.76 10.3 6.08 6.72 6.36 9.44 8.3 10.2 1.24 9.23 10.1 7.08 2.88 4.51 11.5 10.7 5.41 5.42 8.54 2.59 9.73 9.94 8.41 3.52 9.19 14.7 6.62 11.8 11.6 10.5 11.7 12.3 8.23 11.3 7.32 6.88 6.71 10.9 3.4 3.42 2.22 3.11 8.91 7.01 10.5 1.5 8.64 8.51 5.47 6.22 11.6 12.9 7.53 8.54 11.8 8.43 4.43 10.3 9.16 10.8 10.5 9.07 11.5 9.02 10.4 11.1 7.79 9.26 10.8 8.72 7.1 9.25 8.94 11.1 8.26 11.6 9.36 9.32 6.94 4.3 7.95 10.2 6.25 1.71 6.44 12.9 10.2 3.46 1.9 9.19 10.1 10.7 11.6 5.15 7.98 8.88 0.54 6.78 7.21 8.94 6.04 11.1 8.65 8.9 2.22 7.3 2.35 10.6 8.6 4.82 12.7 10.2 8.12 7.57 9.99 11.3 5.14 8.1 6.94 8.99 9.54 9.27 9.71 9.44 10.1 8.19 6.27 7.5 6.31 8.8 1.9 2.22 8.71 8.58 1.9 2.35 11.4 3.2 8.33 10 5.12 2.07 11 9.24 11.7 9.24 2.79 8.83 9.73 8.48 9.87 8.37 11.4 8.9 10.6 9.53 1.9 8.29 1.9 11.6 9.74 11.4 1.71 10.2 9.51 11.9 11.2 11.8 9.63 7.7 10.2 9.98 10.3 3.58 11 1.24 11.4 4.04 11.1 9.38 8.55 5.14 9.08 11 12 10.6 8.43 10.6 11.4 10.7 10.2 10.7 8.61 9.98 10.1 13 10.6 12.6 12.2 12.4 4.82 12 9.41 8.24 8.32 10.4 11.4 12.1 12.7 10.5 7.79 10.5 8.25 9.1 10.7 8.35 10.8 11.6 6.36 11.5 10.1 10.8 10.4 7.24 1.5 12.1 8.02 10.2 6.05 10.3 9.79 7.9 8.68 9.91 7.65 1.93 4.65 9.06 8.95 2.07 12.9 10.6 10.1 8.39 9.35 7.61 8.07 9.7 10.1 8.56 2.88 7.84 1.5 6.28 10.9 10.7 8.36 12.4 9.01 6.5 10.8 11 9.3 8.06 9.97 1.24 9.82 11.1 9.75 10.2 10.8 10.4 9.03 11.8 10.9 11.5 11 7.27 1.9 9.18 8.88 8.58 10.9 9.04 5.65 12.3 9.54 8.44 9.19 8.75 4.43 11.9 12.4 12 7.02 7.85 10.2 9.61 7.02 7.61 10.8 5.86 6.21 8.8 9.77 8.31 12.8 6.64 8 8.72 7.44 4.54 8.99 7.08 9.47 11.4 7.58 10.8 10.6 9.96 10.2 9.29 7.33 9.63 3.2 8.43 8.36 9.41 0.93 9.24 2.59 9.57 6.7 12.7 6.57 9.12 9.84 2.79 11.8 8.15 9.31 3.96 11 5.71 7.15 12.9 3.68 11.5 9.55 6.44 6.13 3.34 10.2 7.53 9.33 9 10.6 9.75 10.1 5.49 9.5 9.92 8.51 11.5 8.79 7.35 7.78 6.76 10.4 7.78 4.19 11.1 10.3 7.58 8.92 11.4 11.6 7.24 9.45 8.45 8.13 9.39 11.2 10.8 0 10.3 9.8 8.23 8.45 10.4 10.2 10.6 11 8.57 7.74 8.04 8.99 8.34 9.48 9.75 12 10 8.18 8.77 7.59 4.23 8.46 7.94 10.4 9.49 12.4 10.8 9.98 8.33 6.67 9.35 11 7.07 8.74 9.06 10.2 7.04 7.06 11.8 8.22 6.18 6.67 9.85 9.66 4.85 7.34 5.54 10.7 9.87 5.15 8.99 7.54 9.53 0 3.58 11 11 8.3 9.28 9.14 9.72 7.01 10.2 2.47 11.6 6.92 9.1 7.75 10.7 8.04 9.99 10 8.57 5.47 0 3.91 8.73 12.2 8.98 9.01 7.43 5.41 10.2 8.4 10.4 7.3 7.24 2.47 8.46 3.34 12.1 9.42 8.14 6.74 9.7 7.62 8.93 10.6 11.2 9.6 10.1 8.2 10.4 9.96 9.57 6.9 10.6 1.9 9.44 6.5 11.5 8.71 8.18 10.1 11.7 6 11.6 6.98 6.86 11.1 7.39 1.5 8.5 8.71 0.93 10.5 11.1 9.41 11.7 8.23 10 10 11.5 10.3 10.1 10 7.6 8.03 11.1 11.1 0.93 11.3 9.06 11.1 8.86 11.4 10.6 12.2 11.3 5.79 7.95 8.73 0.93 10.3 9.94 12.6 10.5 9.19 10.3 8.33 11.5 0.54 12.1 7.56 7.02 3.73 7.32 7.24 9.67 9.13 4.08 7.38 8.12 10.5 5.9 6.69 2.35 10.8 5.31 11.1 0.93 8.77 7.94 1.5 4.61 10.5 1.71 2.07 5.77 8.49 8.54 4 4.82 8.25 4.31 6.59 0 0 7.18 6.25 8.26 7.26 9.28 8.27 8.35 1.9 10.6 7.98 4.23 10.7 7.67 9.36 9.27 8.04 2.79 9.49 11 8.57 8.69 5.34 6.92 6.86 6.76 8.11 2.79 6.89 6.41 3.34 10.5 13.2 1.5 8.96 8.3 7.1 7.66 8.57 8.54 5.33 9.86 9.98 10.9 8.61 8.75 8.21 6.02 7.77 2.59 9.91 4.3 8.5 12.1 7.34 8.45 7.1 10.4 10.3 9.5 5.14 10.8 7.45 10.6 6.02 6.45 9.19 10.1 7.54 8.8 5.7 6.95 6.5 11.3 8.68 10.5 9.25 7.28 5.83 7.96 5.39 10.1 12.3 5.97 5.8 6.27 9.52 8.72 8.46 7.22 9.7 8.49 8.99 10.6 7.32 9.89 7.1 5.65 5.77 1.71 4.57 8.19 4.26 8.43 9.23 9.07 5.42 8.45 6.42 5.51 7.09 9.32 8.72 0 9.85 10.6 5 7.18 8.73 1.5 1.71 8.78 6.95 9.37 10.1 8.13 10.1 6.8 11.5 7.75 10.6 7.52 10.3 9.48 1.71 6.95 7.02 8.19 8.2 9.45 8.92 9.17 8.07 3.78 8.92 6.82 4.46 3.58 7.32 2.97 8.26 5.24 4.57 5.14 4.65 6.21 9.32 1.71 1.9 8.67 11.7 6.51 9.49 8.94 0 5.75 7.45 6.19 9.82 9.17 2.22 8.51 10.9 2.79 3.58 11.7 8.07 12.2 7.59 9.03 11.2 7.72 5.41 7.98 5.59 3.05 4.73 9.52 6.89 4.73 10.2 6.36 4.57 8.33 12.3 9.95 10.2 0 3.05 4.08 9.86 10.3 7.28 8.2 12.4 0.93 7.08 9.67 7.8 7.83 11 7.95 9.85 0.54 6.45 0 7.97 7.11 9.36 9.71 6.85 8.04 9.39 12.3 4.6 2.35 1.24 9.27 7.65 9.96 8.99 8.11 10.6 8.58 8.6 3.34 8.24 9.07 11.2 13 10.3 0.93 4.3 5.75 7.59 0.93 10.8 10.8 8.82 8.09 10 4.08 6.34 9.64 11.1 12.4 8.96 11.7 7.66 2.35 11.5 8.68 9.77 7.03 5.08 8.59 7.58 8.35 9.99 3.96 11.6 11.5 5 4.04 7.85 11.1 10.9 10.5 8.97 4.63 7.16 13.6 3.05 8.19 8.88 3.46 8.06 8.88 8.98 4.04 7.12 10.1 3.27 1.71 1.24 9.44 3.96 6.96 6.39 6.4 6.69 8.79 8.3 7.13 6.78 9.09 7.69 6.18 7.82 8.99 8.16 2.88 9.12 9.14 6.99 10.7 8.76 7.98 11.1 3.27 10.1 8.86 8.34 2.59 7.16 5.66 6.96 7.16 6.22 6.7 8.18 6.99 4.04 8.04 9.08 4.26 4.39 8.16 5.33 7.01 9.34 10.2 6.17 8.42 3.3 10 1.24 8.51 8.62 6.93 6.34 7.88 8.27 8.39 3.34 3.52 9.85 10.1 5.24 5.71 9.55 9.84 9.01 12.2 9.84 6.72 9.04 8.78 7.77 12.6 11.2 5.14 4.78 8.37 9.16 8.27 5.73 3.68 7.47 9.65 8.71 6.24 4.33 1.5 6.59 1.24 6.57 10.2 8.5 10.1 7.86 8.79 8.93 6.2 9.56 10.1 8.39 8.74 8.99 6.18 3.92 11.3 8.22 8.11 1.52 7.43 1.5 7.82 9.02 0.93 7.5 4.65 5.86 10.9 3.46 9.83 9.06 2.79 8.69 6.33 6.55 4.89 8.9 6.89 8.56 8.62 4.96 9.51 3.05 5 9.11 4.96 1.71 3.34 5.06 6.93 6.76 9.51 8.31 9.33 7.04 10.8 10.6 5.97 10.7 10.2 8.09 6.94 7.16 8.44 5.64 1.9 8.21 6.32 12.7 9.19 4.91 11.7 6.39 4.8 6.14 9.61 9.12 11.1 7.85 9.9 8.99 7.65 4.04 7.16 1.24 3.78 3.96 10.2 0.54 8.18 0 3.46 6.53 8.64 5.89 7.71 5.26 1.9 10.8 10.3 6.05 7.56 9.96 3.77 2.69 10.5 6.32 7.11 1.9 10.3 15.5 7.13 8.48 8.62 14.3 9.95 5.82 0.54 7.61 7.14 5.26 11 0 8.24 8.65 14.4 4.39 5.68 11.9 1.71 12 0.54 9.43 10.5 9.79 9.42 1.71 9.52 7.46 8.45 7.95 12.3 11.2 7.13 5.31 2.59 9.33 3.87 10.1 5.93 9.36 5.89 3.34 3.87 2.35 3.52 12.1 9.23 12 8.79 9.91 11.1 6.6 6.4 11.7 9.07 12.5 8.42 7.38 13.1 9.62 7.17 7.82 7.96 8.76 5.1 7.7 8.66 9.17 8.89 9.44 8.79 8.55 7.71 10.8 7.62 1.71 7.34 7.54 7.38 3.83 1.9 10.3 6.21 11.4 9.18 5.1 6.22 4.36 8.4 9.86 9.06 5.84 9.22 5.28 4.6 9.73 8.57 3.73 9.5 2.35 5.17 11.3 9.49 6.11 9.66 9.91 6.5 3.4 11.1 3.2 9.4 6.33 10.1 6.56 8.17 3.4 4.16 1.9 6.69 7.21 3.05 10.7 8.44 7.47 12.3 12.1 8.95 4.63 8.22 11.3 2.35 9.01 10.4 6.83 11.8 9.51 7.31 3.2 10.9 8.47 0 10 5.21 0.93 7.28 9.58 6.83 9.55 6.44 9.31 0 0 7.5 11.9 7.57 8.25 2.59 4.51 5.05 7.96 8.37 8.27 12.3 7.46 7.57 8.94 6.46 10.3 3.58 7.44 2.69 7.82 7.69 3.05 5.24 6.59 6.3 11.6 5.64 5.6 11 8.83 11.3 8.98 3.63 3.83 9.08 7.99 12 4.3 8.46 5.58 10.8 6.63 7.77 1.5 6.41 7.46 8.3 9.51 3.34 8.77 11.4 9.43 3.46 9.63 9.97 5.54 7.95 10.4 4.09 10.3 7.33 7.71 11.6 11.4 11.5 9.86 4.02 6.04 7.74 8.62 3.2 8.28 3.46 9.82 1.71 9.84 13 2.79 8.8 6.22 8.43 7.47 3.52 12.6 3.83 6.07 8.96 3.92 3.2 13.6 11.1 11.9 8.02 12.2 5.54 6.32 7.18 9.24 6.41 3.34 4.98 9.85 8.75 9.27 10.3 8.71 8.99 7.2 5.44 7.93 9.52 0.93 4.12 10.9 5.04 8.37 11 5.17 1.9 5.94 5.87 5.94 11.6 6.83 1.71 9.35 10.1 7.52 8.57 3.73 10.1 8.22 6.94 5.34 11.4 8.06 0.93 11.2 10.4 8.08 2.47 8.52 6.28 1.71 6.11 4.51 8.12 7.35 11.2 11.3 7.36 2.59 1.5 9.58 8.88 7.87 11.2 11.2 7.2 6.17 4.83 9.23 7.8 9.11 5.33 8.56 9.57 0 7.08 7.72 10.9 6.25 2.88 10.3 9.97 7.03 3.13 8.2 7.3 7.04 0.93 8.94 3.16 3.78 4.08 8.38 7.57 6.58 5.44 6.89 6.66 5.94 5.93 10.8 10.1 9.85 7.58 0 9.27 9.93 3.34 9.27 9.91 4.63 7.04 7.65 7.25 4.33 3.58 10.2 3.2 9.92 1.9 9.66 4.96 7.82 5.74 4.23 0.93 11.5 10.4 6.18 3.83 3.4 3.46 1.5 4.94 9.57 6.44 9.67 3.27 7.73 11.6 9.9 12.1 8.41 10.4 10 6.56 4.96 10.1 9.74 5 10 8.25 10.4 4.98 4.12 8.59 6.8 5.34 9.14 7.63 6.64 7.16 9.52 8.89 6.44 2.35 3.27 9.13 12.3 10.1 9.49 7.9 9.86 7.9 3.13 5.23 7.48 7.77 2.47 4.65 11.4 7.46 9.01 10.2 9.44 3.83 0 5.31 3.2 10.8 9.92 0.54 3.74 6.54 3.34 10.2 5 9.85 8.22 10.4 7.74 6.94 12.1 4.04 2.88 5.66 12.1 2.47 7.99 11.1 4.12 2.59 8.67 7.17 10.8 1.5 6.04 7.46 7.46 8.92 9.1 7.24 4.85 5.88 4.51 1.5 5.75 8.38 5.62 8.1 1.71 1.5 11.3 8.23 5.93 8.05 5.04 4.12 8.8 12 7.43 2.97 11.3 1.9 7.14 5.58 9.12 0.54 8.08 6.36 5.29 11.5 6.8 12.4 8.29 9.19 6.57 14 6.18 6.14 3.05 10.6 9.66 7.95 2.59 7.92 0 10.6 7.92 3.52 0.54 10.4 1.5 4.65 6.92 4.23 9.83 1.24 11 0 8.01 9.06 6.35 8.31 5.91 8.25 8.53 5.74 13.2 3.52 9.98 6.7 8.9 10.3 8.91 8.59 2.69 0 8.38 2.79 9.15 6.83 7.72 5.36 12.8 6.84 6.79 8.51 2.88 4.87 4.33 5.69 7.09 7.52 4.26 8.28 6.67 8.13 2.07 12.1 8.32 7.19 8.64 7.67 6.02 4.3 3.34 9.13 6.01 8.79 7.09 6.55 7.7 3.78 4.91 8.66 11.7 7.83 9.44 4.33 7.29 7.3 6.94 8.96 5.94 0.54 8.49 7.97 7.3 9.68 10 4 5.83 6.75 5.54 1.71 6 8.97 7.22 7.84 6.34 9.77 4.8 7.81 9.33 5.64 8.44 9.14 5.29 0.93 12.2 5.45 3.2 5.61 9.35 10.7 9.94 2.35 9.48 7.4 7.63 9.1 1.9 11.3 9.49 1.87 9.8 6.15 6.47 4.19 10.2 1.24 3.46 6.75 8.38 8.89 9.62 8.7 3.13 9.88 9.19 5 7.02 13.9 11.2 5.69 8.89 6.63 7.1 12.8 10.1 9.56 0.93 9.14 13 4.63 6.01 10.3 0.93 3.05 1.9 5.36 7.89 3.27 9.28 5.1 3.58 8.38 10.1 8.36 7.28 9.33 1.98 6.62 7.74 9.71 8.31 6.26 7.45 3.52 9.14 6.73 8.67 3.46 5.84 4.16 9.31 7.45 10.5 4.7 8.05 6.72 5.21 4.23 8.88 5.19 14.7 8.32 15.8 7.98 3.2 11.2 6.69 10.1 9.49 6.22 4.63 6.02 3.83 8.4 8.36 10.8 12.7 7.68 6.66 6.95 5.81 2.47 6.41 10.3 4.3 7.47 8.04 7.35 11.3 2.07 5.81 3.13 4.87 7.69 5.7 7.88 1.5 8.39 7.04 9.34 11.2 5.33 2.35 5.73 2.97 5.6 1.9 10.6 5.08 9.72 9 6.1 8.12 3.13 12.6 8.39 9.51 9.4 3.63 3.2 7.09 7.13 3.05 8.93 8.45 7.79 7.23 13.2 4.23 7.37 8.53 11 7.3 4.26 6.51 3.13 6.95 8.89 10.2 7.44 4.36 8.89 5.44 8.23 2.47 8.75 2.69 4.94 12.1 7.69 5.26 6.09 7.61 8.08 5.79 8.34 9.86 7.53 8.09 8.36 11.4 7.16 8.13 12.1 7.28 8.74 12.1 10.2 8.83 6.29 10.8 6.87 6.25 2.97 5.98 11.5 8.09 5.69 7.98 10.3 1.71 12.5 6.67 9.81 8.32 7.37 5.31 7.13 9.73 1.24 6.08 0.93 4.9 7.98 9.84 4.73 6.57 7.66 5.4 0 7.26 9.85 5.02 11.8 8.95 2.74 4.08 8.59 4.16 7.83 6.33 8.35 8.65 9.67 0.54 3.27 7.58 8.73 4.39 9.23 10.6 15 4.33 11.9 5.66 7.65 10.9 5.84 3.4 8.6 7.21 6 7.36 12 8.88 5.5 5.33 0.54 12 6.26 9.64 8.78 7.63 7.6 2.59 10.3 2.35 5.48 3.65 5.34 9.23 3.2 9.76 0.54 1.5 3.34 7.99 5.08 4.7 7.69 5.91 2.97 7.37 5.47 6.98 4.33 10.1 5.45 8.54 4.7 6.52 3.58 6.7 5.06 8.23 5.15 6.48 4.3 7 7.3 1.71 7.19 5.28 4.98 1.9 3.73 2.69 4.98 3.63 4.66 4.3 10.2 7.9 10.2 5.65 10.8 3.46 0.54 10.8 7.36 7.27 10.6 3.4 0.93 11.9 10.7 0 10.9 4.26 4.85 1.71 0.93 11 8.49 5.6 5.04 12 8.57 0 6.96 11.3 8.45 10.1 6.81 9.06 6.35 5.89 6.4 8.23 10.7 11.3 12.7 4.68 5.95 4.65 8.27 11.2 3.13 4.39 10.4 10.3 3.83 7.88 4.43 4.92 10.4 3.63 5.93 10.1 0 1.9 10.8 1.9 5.12 5.9 2.47 6.67 12.5 11.3 4.6 10.9 7.18 6.36 9.87 7.85 11 8.9 2.88 4.96 3.2 5.04 0.54 8.94 5.19 5.19 11.6 7.75 8.51 6.76 6.46 8.29 9.26 5.83 7.11 6.41 9.23 7.12 0.93 11.9 6.76 7.21 7.84 6.06 7.02 7.94 7.39 6.85 4.04 7.72 7.89 6.46 5 8.45 10.8 3.05 7.98 6.81 3.98 8.88 2.79 12.1 5.61 10.2 8.55 9.57 3.83 8.34 6.37 4.43 3.63 6.44 8.85 8.78 11.9 10.9 0.54 8.79 2.35 11.9 2.79 9.27 8.44 4.63 5.9 8.56 2.22 7.09 3.77 6.06 5.29 3.68 10.2 7.69 8.35 12.6 12.7 5.44 3.05 5.44 4.94 8.94 5.39 10.5 7.84 11.9 13.5 3.13 2.69 11.3 6.57 4.08 9.45 2.79 9.68 4.04 6.41 12.8 11.5 4.75 8.32 9.68 7.81 8.78 6.77 6.61 11.3 10.6 6.1 8.45 7.8 6.94 7.61 7.09 11.1 8.33 1.71 9.66 2.59 10.2 2.47 6.19 0 3.4 8.26 3.87 8.92 3.52 7.7 7.8 6.36 4.85 8.03 2.79 8.63 8.99 2.47 2.35 7.81 7.57 4.36 4.04 7.6 8.17 5.48 8.35 5.06 4.57 0.93 7.89 8.89 8.7 3.46 6.11 6.9 5.55 2.35 6.06 3.34 7.28 5.76 2.97 9.33 9.5 6.19 9.17 7.02 2.97 10.2 1.71 4.08 5.48 4.08 2.35 10.5 7.59 8.2 9.38 6.63 10.1 6.61 10.7 7.88 5.17 7.97 3.27 7.72 11.2 6 10.4 4.36 10 9.81 9.38 11 14.8 7.99 8.51 7.84 9.54 13.1 12 12.1 6.47 8.64 8.48 7.81 9.98 10 10.1 9.69 5.53 10.5 7.3 11 0.54 0 6.47 2.47 8.44 6.55 6.78 7.04 4.78 8.89 8.28 8.43 5.1 3.2 9.25 5.33 7.68 10.1 3.87 4.23 11.1 12.8 8.31 4.12 10.2 11.5 12.7 10.8 6.4 9.38 5.77 10.2 9.5 6.82 9.08 8.45 10.2 11 5.47 9.21 9.12 12.7 9.65 11.5 11.1 3.92 9.24 2.97 0 9.39 8.65 7 4.85 12.3 9.41 8.95 11.6 7.15 12.2 12.2 8.01 8.6 8.99 9.02 5.89 9.55 7.09 12.4 7.5 10.8 6.67 8.97 12.3 8.4 3.05 9.56 3.73 9.31 11.9 9.21 10.9 10.4 9.55 8.93 8.59 7.82 8.72 10.4 8.08 8.03 10.1 5.76 8.76 12.1 0 12.4 12.2 11.3 12 9.18 4.96 10.2 8.15 7.76 8.48 8.15 8.38 10.9 7.39 8.11 11.9 15.5 1.71 10.2 8.79 10.4 6.67 8.77 7.6 11.2 13.4 13.6 15 9.59 11.7 6.74 8.63 9.87 9.41 9.07 4.49 8.16 9.07 8.09 12.1 9.88 11.3 11.4 11.3 6.75 6.61 8.6 12.7 7.11 0.54 4.8 8.23 1.71 8.09 6.2 5.99 8.62 5 6.93 9.9 8.79 9.76 9.5 9.65 9.63 10.1 4 9.2 9.8 8.91 2.05 10.1 7.25 6.7 5.39 11.3 5.7 7.52 9.5 3.13 2.47 8.11 2.13 9.03 5.14 5.39 8.35 9.81 8.76 12.8 6.72 8.76 10.5 5.97 8.04 10.6 12 8.58 11.7 9.16 9.6 11.5 13.4 14.1 11.5 12.4 0.93 9.27 2.35 13 5.84 7.2 10.5 0 1.24 7.33 7.96 2.22 10.8 7.37 4.08 4.57 7.55 8.02 7.89 8.69 5.12 8.99 5.04 7.29 8.35 13.3 8.37 1.5 10.4 13.6 10.1 9.4 1.71 5.41 10.4 9.09 6.15 11.8 11.4 4.85 4 7.81 6.81 11.1 10.1 7.63 9.03 7.78 2.22 8.22 5.21 8.31 3.52 8.16 5.74 0.54 0 9.18 6.55 6.6 5.14 9.31 10.8 10.1 5.65 10.2 6.89 8.02 4.36 6.64 10.2 7.61 6.69 6.04 8.16 5.12 8.54 9.35 12.2 10.2 10.9 7.86 7.79 6.57 9.76 7.16 10.7 6.07 10.6 6.69 7.21 9.39 9.2 10.9 7.93 9.31 10.9 3.27 13.2 4.63 9.69 4 8.7 3.83 8.12 6.62 6.6 10.2 1.71 5.23 8.83 8.36 7.17 2.47 13 7.71 2.35 4 7.72 0.93 11 9.02 8.12 6.66 11.2 10.1 6.44 5.02 6.41 7.65 5.47 11.1 8.66 2.22 15.8 6.41 6.87 3.34 2.59 2.07 11.3 5.93 7.65 6.21 11.5 10.5 11.2 10.6 9.41 8.95 13.8 8.71 5.91 1.5 6.28 8.82 7.77 4.7 7.87 9.31 9.45 9.52 11 6.68 12.1 9.28 11.6 8.08 7.11 9.69 9.8 9.14 6.11 7.88 11.9 12.3 8.44 5.82 0 8.41 3.2 8.38 0.54 10.4 8.62 1.24 7.09 11.7 6.9 13.7 8.2 8.42 8.02 8.31 7.76 8.87 9.28 1.24 8.72 8.92 11.3 11.8 10.6 10.8 2.35 8.89 12.7 2.79 0 12.4 9.02 8.63 7.53 12.3 4 8.52 9.85 8.62 10.7 7.06 9.37 7.42 10.2 11.8 7.6 10.7 10.2 6 12.7 10.6 3.58 10.7 1.9 11.2 10.1 11.2 11.1 8.58 10.5 10.9 8.32 3.05 6.91 9.87 9.46 0.54 10.9 8.35 10.9 8.21 9.4 12 7.41 12.3 11 10.1 3.2 7.01 10.1 5.12 5.58 12.2 6.59 9.39 8.59 0.54 9.48 9.1 9.43 6.02 8.99 6.08 2.22 7.88 4.7 12.8 7.61 8.12 9.63 4.51 0.54 13.3 7.53 7.82 9.11 6.99 8.51 7.18 8.45 11.3 10.8 10.7 8.97 10.3 10.3 3.2 8.71 8.02 8.92 11.1 10.2 10.2 10.3 8.29 4.89 5.82 11.8 9.68 10.1 4.54 3.4 8.08 6.18 4.59 9.37 6.34 9.84 12.4 7.16 8.29 8.84 7.44 10.9 7.26 6.57 7.03 8.13 9.8 7.67 10.3 6.69 8.89 8.39 0 9.41 9.66 7.83 9.24 10.7 4.63 10.4 6.05 6.97 8.34 8.22 2.35 3.4 3.4 6.08 3.83 4.57 10.7 0.93 8.79 12.7 7.95 4.43 4 0.93 1.5 3.2 5.53 7.52 6.74 9.75 7.03 5.12 0 7.39 7.7 5.47 8.92 5.21 6.58 4.8 12.3 5.5 11.3 7.18 5.47 9.58 10.5 2.97 6.99 7.73 7.62 3.96 11.3 7.79 6.75 7.66 9.47 8.26 10.8 6.89 10.7 6.71 8.91 8.29 7.09 5.58 4.08 11.7 10.6 4.91 8.16 5.24 3.87 5.31 8.42 3.58 5.59 8.73 4.12 11.2 3.27 8.95 10 3.27 7.98 6.03 8.14 5.04 8.8 2.88 5.96 12.2 7.57 1.72 9.02 8.08 7.47 7.78 3.46 8.05 0 7.65 7.75 8.57 6.64 10.2 7.34 10.1 9.81 9.25 4.16 6.87 10.3 7.18 8.73 5.15 7.5 8.81 11.2 6.79 9.04 6.31 4 8.76 6.69 6.46 7.93 11.2 10.1 3.34 4.73 1.9 2.35 1.5 9.51 10.1 0.93 7.65 1.24 2.97 4.39 6.89 6.93 3.34 10.4 10 10.4 8.86 4.33 8.92 8.3 9.31 10.6 11.3 5.06 9.1 6.09 5.44 4.7 0.93 6.55 6.51 7.95 8.84 5.41 6.65 15.4 9.87 6.48 3.2 9.17 6.8 9.19 10 4.7 7.99 9.97 8.65 10.5 7.83 9.28 8.25 11.4 9.68 9.56 0 9.93 4.8 8.86 8.44 9.52 8.04 11.8 3.05 12.7 8.62 10.5 8.43 5.84 10.8 12.2 9.17 4.26 7.48 10.1 8.08 10.9 9.5 10.7 10.6 9.73 4.51 1.5 8.63 9.59 9 9.54 6.98 8.41 6.41 8.73 2.97 8.82 9.07 10.3 10.8 10.2 11.5 9.09 10.1 1.71 9.13 7.05 9.88 11.1 2.35 12.1 6.61 10.9 10 8.98 10.5 9.61 9.61 10.6 10.7 8.52 9.52 12.3 8.84 6.39 10.4 7.16 10.6 9.58 9.77 4.68 10 9.71 3.34 9.09 10.2 7.16 5.28 9.47 5.39 10.2 7.81 11.6 9.83 10.5 10.1 9.45 7.95 7.35 12.1 6.05 6.11 10.6 0.93 9.93 11 8.97 8.98 9.14 6.22 9.72 7.82 11.8 9.83 10.4 10.4 6.66 10.6 8.9 11.4 10.4 9.88 8.85 7.72 12.6 9.71 9.27 0.93 8.51 10.1 8.02 1.24 4.46 10 8.22 5.08 11.8 8.21 3.83 11.4 9.57 8.74 4.91 10.1 11.6 0.54 5.12 0 9.52 12.1 10.4 9.12 6.39 10.4 5.19 11.7 10.6 10.2 9.99 8.19 8.59 9.1 9.22 1.71 9.45 8.94 11 9.42 10.5 8.31 11.7 10.1 12.1 11 9.64 6.95 4.3 2.88 10.3 9.35 10.1 9.34 9.3 9.18 8.72 6.96 9.06 8.17 11.6 9.6 9.67 12.9 9.09 9.19 8.56 10.2 11.6 9.97 8.79 10.8 11 9.85 9.89 8.99 6.45 9.79 11.8 11.9 10.1 10.1 10 5.44 9.93 9.91 10.8 2.59 8.1 10.4 9.62 9.86 8.95 8.09 7.92 8.72 10.5 10.6 9.75 8.09 9.91 9.84 5.95 10.2 9.57 8.46 12 10.9 9.39 9.18 8.92 8.83 9.39 8.58 4.3 9.73 4.51 9.56 9.03 3.64 8.45 9.93 9.75 6.75 7.85 11.6 10.1 7.93 3.04 11.5 8.71 10.5 10.5 3.96 12.1 8.44 10.1 9.86 6 9.74 10.4 8.04 9.4 7 10.9 11.9 10.2 10.2 9.24 7.97 10.1 5.1 4.36 8.81 0 8.93 11.2 10.7 10.1 9.36 9.53 10.1 14.3 9.03 9.76 12.8 10.3 11.5 10.2 10.7 11.7 9.6 9.17 12 10.5 10.4 8.62 10.2 9.85 10.2 9.91 8.86 9.04 9.29 7.54 10.6 10 9.94 11.1 10.4 11.8 9.42 11.5 11.6 11.1 10.4 13 6.69 9.4 12.4 10.7 10.9 11.3 10.1 6.59 10.3 12.9 2.97 11.2 7.99 3.73 9.28 8.83 9.72 8.97 11.8 11.4 11.4 9.02 1.71 10.7 9.76 3.92 11.4 11.2 10.2 10.7 10.9 6.91 8.52 6.67 9.45 12.3 8.04 6.4 9.42 9.05 7.97 3.96 7.83 7.85 8.83 10.9 8.88 10.2 11.6 6.32 8.06 10.1 10.2 13.9 5.51 8.87 9.08 9.9 6.95 9.4 10.5 8.5 4.85 9.68 9.75 7.7 11.8 11.5 8.61 9.89 9.16 8.43 8.34 9.51 9.91 10.9 10 8.34 11 9.89 6.74 2.69 8.88 7.27 5.88 10.9 7.93 9.78 7.23 9.82 9.81 10.2 12.5 9.73 10.7 10.1 8.27 5.23 10.2 9.19 4.04 9.19 10.3 8.25 10.2 9.63 8.81 9.67 11.8 5.17 9.28 1.9 9.69 9.19 10.1 9.97 6.11 10.9 9.86 12.2 9.95 8.47 8.44 10.2 11.1 10.8 7.75 6.75 10.2 10.4 4.12 9.37 11.4 10.2 9.14 10.9 2.59 15.1 10.7 11 11.9 11.3 9.7 8.95 8.76 10.7 2.07 10.5 9.66 9.54 9.95 11.9 7.45 11.8 10.8 11.4 10.5 10.3 8.65 9.67 8.33 10.1 9.6 11.4 11.3 10.1 10.3 11 10.5 9.26 10.5 9.81 9.19 10.8 10.1 7.89 10.3 7.81 8.6 10.8 11 8.75 8.37 7.97 10 12.4 8.56 4.94 9.35 8.7 9.35 8.2 6.47 2.35 4.89 8.04 1.5 8.98 12.4 7.17 11.1 8.57 5.17 10.4 9.84 2.35 7.84 5.51 10.5 11.7 9.43 7.77 11.1 11 12.5 8.56 8.89 9.51 4.33 6.32 7.92 8.28 12 7.9 8.96 7.02 11.2 9.84 13.6 9.02 8.94 12.3 10.5 10.6 10.7 12.6 9.98 10.7 8.03 9.85 10.2 9.74 4.65 5.66 6.43 12.7 7.67 8.79 9.52 2.35 10.1 9.06 8.57 9.46 10.2 9.72 9.92 9.61 12.5 10.2 9.51 9.03 9.54 8.98 0.93 0.93 13.1 9.23 11.2 15 11.6 9.56 8.52 8.22 12.9 11 8.97 5.17 8.44 9.6 7.98 4.04 10.4 6.96 7.05 10.7 0.93 9.11 2.97 4.19 9.06 10.2 10.8 10.8 5.55 6.59 9.18 11.2 8.01 9.31 11.6 10.5 10.7 9.64 2.88 3.52 10.3 2.59 7.68 10.5 2.07 6.95 11.2 3.58 10.8 9.63 8.86 10.5 12 8.66 9.18 9.96 12 9.21 6.12 8.84 9.55 6.84 8.34 8.78 9.14 9.95 9.82 8.38 11.5 8.73 11.4 11.5 8.93 10.9 9.8 1.9 9.32 9.84 11.1 10.8 4.57 0.93 0.93 2.59 11.1 6.88 10.4 9.47 7.19 9.63 9.74 9.49 8.62 10.5 10.4 13.3 9.73 9.48 8.62 7.76 13.8 8.06 8.56 9.69 8.2 11 11.1 10.1 9.12 8.63 8.44 7.08 10.8 6.12 9.82 9.3 10.8 10.8 6.61 9.93 11.1 10.5 9.89 7.5 8.92 8.68 1.71 8.69 6.54 3.46 12.2 10.4 9.19 10.2 10.7 11.8 10.5 2.69 3.06 6.63 10.3 10 8.23 9.57 9.79 9.5 6.64 7.63 10.1 9.28 7.76 5.65 10.9 8.62 2.79 7.35 5.14 3.66 7.52 7.3 8.97 5.68 9.21 5.65 3.87 0.93 7.37 7.89 5.82 7.02 7.16 8.71 4.48 2.07 9.97 11.5 8.32 7.62 11.1 5.73 5.58 14.9 8.15 10.6 5.54 16.5 12.3 10.5 12.4 6.33 10 10.6 7.78 2.22 10.1 11.2 5.65 5.07 7.88 7.44 6.11 10.1 1.24 5.79 9.38 9.33 10.4 3.52 6.41 7.83 9.53 8.98 8.92 5.06 10.5 6.2 8.93 8.52 5.19 4.89 12.9 7.18 4.57 9.95 2.07 7.42 9.63 7.87 6.65 1.5 11.3 10.6 8.05 9.16 7.89 5.94 5.74 9.51 4.39 7.26 11.6 2.07 0.93 8.26 4.19 1.5 9.84 8.34 5.73 6.19 3.96 1.24 6.46 8.85 6.11 8.2 9.07 8.82 7.67 5.17 12.9 0.93 5.84 12.1 7.38 8.82 7.58 9.3 8.18 3.87 6.41 7.29 5.45 0.93 6.61 9.42 9.86 3.05 6.47 5.89 8.14 2.69 8.23 4.91 6.53 7.41 1.9 8.98 0 7.83 5.04 4.49 9.22 5.88 7.06 5.6 7.38 7.61 8.35 9.56 6.88 7.42 3.34 3.83 9.21 9.7 5.02 8.97 3.92 7.44 4.19 8.87 10.4 5.95 10.1 3.58 8.36 0.93 7.65 7.95 0.54 6.44 6.79 3.13 0.93 1.24 7.22 0.54 7.06 4.39 3.68 5.04 2.59 3.83 6.8 4.98 5.17 10 6.16 8.23 2.35 5.79 5.65 1.71 6.5 6.55 0.93 2.07 1.5 9.55 8.88 9.08 6.35 4.33 9.67 8.75 8.42 9.69 0.93 9.72 12.1 8.33 8.24 9.5 6.3 6.76 6.79 7.17 8.92 9.91 11.5 5.57 10.3 6.65 11.4 6.8 12.1 9.88 9.69 8.29 7.7 9.93 10.9 9.04 9.55 7.35 10.2 3.52 9.93 10.6 9.58 6.15 6.11 11.4 9.59 8.05 8.23 2.69 12.9 10 5.8 10.6 11.5 6.65 0 11 7.34 7.17 10.9 8.25 10.8 9.48 10.8 7.69 8.7 9.73 11.9 8.72 10.3 11.9 8.14 7.39 9.34 8.86 11.3 7.09 10.4 0 7.9 4.65 8.29 10.1 12 9.18 12.4 10 9.76 4.19 10.6 10.4 9.37 8.28 8.47 7.48 7.28 11.8 8.32 2.47 8.4 8.13 8.3 11.5 8.79 4.49 11.6 8.43 8.89 8.74 9 8.4 8.81 4.91 9.62 11.1 8.51 12 8.25 6.59 9.51 9.48 10.3 4.33 9 10.6 11.6 0 5.79 8.78 10.9 3.13 3.73 6.5 9.55 8.4 6.55 2.47 9.76 0.54 8.78 1.71 2.35 4.63 8.65 10.5 8.84 11.3 8.7 9.03 7.65 9.37 9.41 9.56 9.55 9.62 8.73 6.39 10.2 9.67 10.1 8.86 6.63 11.9 8.84 10.7 10.4 9.04 7.19 10.3 11.2 9.48 15.8 11.4 9.32 7.3 7.27 10.7 9.59 10.1 9.46 9.21 8.22 8.34 2.59 9.93 8.27 9.96 9.37 10.3 9.59 10.4 7.85 7.41 11.2 10.7 9.7 11.7 9.16 10.4 8.54 11.9 7.41 10.2 7.14 8.75 10.6 10.8 9.33 12.2 11.4 8.85 4.23 8.64 9.09 10.2 8.47 10.3 3.96 1.24 7.45 8.74 8.66 10.2 2.69 8.6 6.66 9.2 6.97 2.22 9.45 2.35 8.57 5.48 4 8.62 6.28 9.97 10 9.65 10.6 10.3 9.41 7.26 10.3 11.3 11.5 10.1 11.4 3.13 8.52 8.35 11.4 10.9 10.1 10 8.41 7.93 1.71 10.8 8.46 11.8 10.9 1.71 9.43 11 12.9 9.98 10.5 8.78 9.88 8.55 8.93 9.94 11.1 12.4 11.3 2.79 10.7 8.32 8.72 9.92 4.46 9.19 5.53 9.65 8.55 5.71 9.65 11.8 11.7 7.46 9.05 8.83 8 9.66 11 9.9 8.94 11.5 8.8 8.31 10.3 5.97 10.6 8.06 10.6 4.19 8.9 5.02 8.27 11.7 1.24 9.32 7.39 9.6 9.58 8.84 5.61 10.3 3.05 6.15 6.5 8.19 10.8 10.6 7.87 7.44 7.68 7.12 6.4 2.35 3.46 2.22 5.66 9.48 8.18 7.94 4.43 11.1 7.87 3.13 6.95 9.43 8.14 9.3 9.71 6.63 8.45 9.09 9.95 7.66 9.61 7.65 7.04 9.18 9.81 10.9 0 11.1 1.24 9.83 7.56 9.69 7.93 10.9 8.89 9.37 3.03 10.2 10.4 9.72 9.47 9.13 1.71 8.15 9.54 5.08 11 10.3 11.8 12.6 11.1 10.7 2.47 7.78 10.6 11.3 9.58 9.99 9.99 4.51 8.61 12.9 9.16 7.87 9.39 9.33 10.3 8.45 8.08 8.72 9.59 8.51 10.9 4.63 3.46 0 10.1 5.08 7.5 6.05 10 7.4 11.5 8.59 8.92 8.09 4.6 10.4 4.19 7.1 4.73 11.4 12.1 8.69 4.89 4.39 4.61 6.18 9.2 7.53 10.8 3.83 7.72 6.17 0 9.46 6.22 12.2 5.1 7.56 3.4 8.13 9.91 12.1 1.5 10.9 10.3 8.79 2.35 6.86 0 11.6 8.74 9.31 8.15 10 4.3 4.3 8.3 8.18 10.3 6.15 5.77 9.86 8.42 2.22 8.07 10.7 15.5 10 11 8.99 10.2 10.1 9.52 5.57 1.9 8.98 1.24 8.98 7.37 7.54 11.1 9.82 7.94 10.8 8.35 8.67 10.8 5.21 11.4 6.24 6.94 9.96 8.14 8.7 10.2 11.9 8.85 3.13 3.83 10.5 9.32 12 5.04 9.17 10.1 11 12.5 5.95 6.71 6.85 6.17 9.97 5.94 10.8 3.2 10.5 7.89 7.12 10.6 9.38 4.82 2.47 9.81 7.85 9.96 11.6 9.98 9.27 6.14 8.84 5.54 8.57 4.68 9.59 5.58 8.7 11.1 4.16 9.22 4.39 4.6 6.9 10.5 8.35 10.7 8.43 8.26 5.83 2.33 7.13 8.96 10.2 6.84 8.09 10.2 2.69 10.2 0.54 8.29 8.05 6.6 10.6 8.87 11.5 8.53 6.95 5.44 11 7.15 2.79 6.62 0.54 4.63 4.36 9.05 10 5.31 6.95 12.1 5.24 3.96 8.33 9.99 10.7 8.83 6.27 6.81 7.58 11.8 10.8 8.66 10.6 8.13 8.9 10.7 10.4 10.2 8.71 7.56 6.85 8.53 9.04 0.93 5.98 9.73 5.26 9 9.91 8.55 7.81 11.4 5.73 10.2 7.71 5.04 8.08 8.4 9.35 4.6 6.72 6.35 9.12 4.12 6.52 8.87 11.5 5.29 10.7 9.57 10.6 9.32 5.81 12 10.6 8.24 10.8 12 9.11 11 9.37 9.47 6.95 7.8 10.1 10.9 9.69 8.96 5.87 8.6 9.36 11.8 6.42 6.65 8.75 11.5 10.6 9.15 5.86 10.7 9.01 9.3 11.7 5.14 12.5 9.29 8.02 5.54 10.3 11.5 7.9 7.66 13.8 13.4 11.6 8.69 9.92 8.69 8.62 10.5 10.1 7.91 12.5 10.3 5.08 5.33 10.5 13.6 1.71 4.94 13.4 12.4 4.62 2.97 3.27 10.6 7.8 7.55 9.54 7.65 5.12 10.1 5.42 2.07 12.2 6.97 9.04 8.97 10.9 11.7 10.5 11.7 10.5 10.7 10.2 3.2 12.3 5.36 2.22 9.91 5.79 10.3 13.5 4.65 7.29 4.19 6.19 8.67 6.23 3.2 1.5 4.68 5.15 4.91 6.46 2.47 8.15 6.26 1.5 8 3.05 7.89 9.98 3.46 5.55 8.19 3.46 7.28 4.49 2.79 7.08 9.27 8.36 14 11.6 5.62 7.29 6.57 9.57 5.79 8.98 10.9 8.78 10.2 8.3 4.49 6.65 7.84 3.58 6.76 8.01 7.41 5.92 9.04 5.17 8.1 12.4 10.1 2.35 8.01 9.71 5.1 3.13 3.46 3.27 4.51 1.5 10.4 5.91 5.65 4.75 8.82 5.86 9.09 5.88 3.34 3.24 2.59 10 2.59 4.54 0 8.21 1.71 6.44 1.24 3.78 10.3 11.7 8.31 6.42 0.54 6.61 7.16 6.04 5.21 7.06 0.93 2.07 4.09 11.3 7.15 6.11 8.07 6.14 10.1 7.65 10.5 5.99 6.5 6.41 2.07 4.82 8.54 9.73 1.24 4.39 11.3 9.76 10.3 6.01 3.96 9.97 9.82 0.93 6.05 7.88 5.73 6.07 5.53 8.05 4.81 10.2 7.21 5.02 3.34 2.97 8.04 7.76 0.54 4.89 2.88 10.4 4.6 0.93 8.28 11.3 9.4 9.25 6.63 8.26 7.56 6.94 1.5 5.08 9.09 3.34 4.23 8.3 2.22 8.28 1.9 8.29 2.69 5.74 6.1 7.94 8.62 9.59 5.25 14 4.51 8.04 6.27 3.87 4.7 11.4 4.98 7.46 8.08 5.83 6.37 1.5 8.32 6.63 0.93 5.68 3.46 2.35 7.22 8.65 6.48 6.58 8.6 10.4 0.54 3.05 1.24 8.1 4.89 3.68 0.93 7.99 3.73 8.15 5.98 7.41 2.07 8.87 5.37 7.68 1.9 3.62 5.8 5.36 4.26 4.63 3.83 3.78 7.07 3.13 7.57 2.69 6.54 8.92 8.8 6.13 7.4 5.75 10.1 6.97 0 2.69 3.83 5.03 0 7.39 10.2 6.41 6.3 9.21 2.35 9.19 1.9 3.58 6.71 7.02 6.92 6.13 9.04 8.19 0 4.8 8.84 8.88 5.89 6.79 7.3 2.69 9.27 1.9 7.85 10.1 9.13 7.56 8.9 3.87 5.81 2.79 4.63 9.57 0.54 9.22 4.78 7.52 6.71 6.71 9.25 9.79 3.46 8.7 0.54 10.7 3.46 2.69 3.27 5.94 7.26 7.48 9.92 1.71 4.98 8.51 4.78 7.24 10.2 6.88 6.99 9.26 0.54 4.85 1.71 9.17 9.36 3.83 8.29 0.93 3.7 8.49 1.24 4.04 8.05 6.39 6.2 7.35 4.08 5.24 5.06 4.12 4 2.07 8.34 8.75 3.83 12 6.01 9.81 5.36 4.96 7.02 8.82 5.02 6.88 11.3 10 4.16 2.59 7.92 4.98 2.35 4.51 9.51 8.98 7.18 3.05 8.49 8.82 8.59 7.83 3.63 2.47 3.27 7.85 8.49 6.41 5.36 7.21 7.69 8.27 3.58 6.69 10.1 12.3 11.2 9.88 5.39 13 8.2 11.5 12.7 10.4 7.02 11.9 8.47 10.8 2.69 3.92 8.57 8.95 9.82 10 9.12 10.6 10.4 14 8.46 9.21 10.6 0.93 8.93 5.29 10.4 0 9.8 7.09 10.4 10.6 10.6 9.53 8.74 8.9 8.53 7.2 9.04 10.3 7.48 9.77 11.8 8.37 2.07 7.47 10.1 8.46 10.4 9.58 6.26 11.6 8.94 0.93 3.73 12.1 7.42 10.1 2.59 10.4 4.68 9.86 10.2 9.18 9.73 7.47 10.5 9.82 12.4 7.94 9.52 9.92 9.37 6.88 10.1 10.3 8.21 8.97 9.88 7.06 10.5 10.3 9.63 9.58 8.11 10.7 7.43 2.79 8.16 8.71 8.93 9.95 11 9 9.9 9.22 9.89 11.8 10.4 8.38 7.35 8.72 1.5 8.57 9.05 10.8 2.35 8.97 10.2 9.46 9.56 0 2.69 9.32 5.93 11.2 5.33 5.7 9.02 8.5 1.5 3.46 7.17 12.9 9.49 5.88 13 2.22 10.8 12.4 10.1 9.77 13.4 12.3 10.1 10.4 9.03 4.75 8.06 7.44 7.33 5.17 13.1 11.7 5.95 8.81 9.59 6.53 8.78 8.66 8.21 9.37 10.4 9.35 9.09 5.24 6.96 8.85 10.3 12.6 11.2 10 7.41 11.7 10.6 8.11 10.5 9.91 1.24 10.5 7.13 5.26 9.84 9.16 2.07 8.14 10.7 9.28 9.87 5.82 11.4 3.05 3.92 9.26 8.1 10.3 5.77 10.9 9.12 7.95 2.79 9.37 10.7 8.12 8.3 0 5.79 11.2 12.1 9.76 1.71 9.63 9.64 9.18 8.79 10.3 10.2 10.4 6.17 12 4 10.2 8.89 11.6 8.14 6.02 7.98 11.2 1.71 8.96 5.76 10.6 8.66 8.09 9.07 9 9.62 10.8 7.01 8.68 11.8 9.2 10.7 13.6 8.31 8.86 5.42 8.76 6.76 1.9 9.73 9.04 7.72 1.24 5.82 9.25 9.96 9.22 8.28 9.86 1.24 11.3 8.68 12.6 9.29 3.63 10.9 3.13 9.54 8.69 10.4 9.37 6.64 9.5 10.1 9.9 6.93 9.43 10.8 8.46 8.71 7.61 8.74 1.24 7.94 5.02 10.5 7.68 5.64 9.41 8.47 11.5 8.09 1.74 10.6 2.97 10.5 10.7 9.18 5.24 6.57 9.94 5.64 7 5.19 13 9.39 11.8 2.07 2.69 1.9 13.3 4.08 1.25 9.76 11.5 8.77 13.8 12 13.4 9.93 10.2 5.64 11.7 10.9 11 5.08 10.1 4.26 5.77 10.6 4.33 12.2 8.23 7.87 1.24 0.54 0.54 3.13 8.31 11.4 11.2 9.53 10.3 10.2 11.5 11.5 10.7 6.78 12.3 13.9 11.7 6.84 9.62 11.1 11.4 11.3 7.59 12.3 9.8 7.06 4.33 10.3 7.41 5.92 5.58 5.17 9.56 4.16 8.94 8.64 6.11 9.42 5.26 2.35 10.4 6.73 11.7 8.75 9.77 11.7 7.44 10.7 6.8 11.2 10.2 11.2 11.6 8.83 9.87 9.33 11.6 11.6 10.9 11.8 9.79 10.1 15.1 15.2 14.3 13.3 12.2 12.9 12.1 8.72 14.5 14.1 4.39 13.2 11.7 13.4 12.3 15.6 14.2 13.1 11.1 7.22 9.04 13.4 11.2 8.05 11.2 5.87 6.11 4.04 8.38 9.26 7.11 9.42 12 10.4 11.5 11.8 12.4 10.9 9.48 10.9 11.3 4.08 8.28 11.8 11.8 10.9 9.05 4.16 10.5 8.49 8.44 8.9 4.94 9.42 0.54 7.64 1.5 9.32 0.54 8.92 11.8 6.8 13.5 11.7 12.7 11.8 12.2 12.3 10.4 11.1 13.1 0 12.4 13.2 1.24 3.46 2.35 8.05 8.09 4.89 3.91 4.51 1.5 4.29 0.54 3.96 0.54 4.08 0 6.92 7.68 8.7 6.69 7.41 9.2 8.79 6.23 6.38 7.55 4.54 6.19 9.3 3.73 9.71 11.2 11.1 2.47 11 11.3 0.93 9.73 11.2 0.93 4.94 5.71 8.88 2.07 8.88 9.33 10.6 9.98 8.45 10.7 3.58 2.22 11.1 10.6 11.2 8.62 10.8 10.3 6.49 8.18 6.08 4.96 11.9 11.5 7.58 8.91 10.4 11.6 10.6 13.8 11.1 5.97 7.21 10.9 14.1 11.4 9.42 8.12 14.2 11.8 14.5 4.85 8.15 13.7 9.86 14.4 12 7.9 10.6 11.7 10.2 13.3 6.55 6.19 15.8 11.2 7.97 1.5 1.9 2.47 4.94 7.61 1.24 2.88 7.93 12.1 8.26 10.4 11.3 1.71 5.65 0 0 3.79 9.5 13.8 2.47 5.92 0.93 8.46 10.4 5.79 9.4 3.46 1.24 10.1 4.96 8.48 9.8 8.29 5.8 4.12 8.94 8.81 2.59 1.71 0 4.75 7.02 9.73 11.5 5.15 8.41 8.42 5.45 9.12 9.94 9.4 6.67 10.8 8.54 7.96 9.49 6.1 6.73 7.7 2.07 4.3 9.28 0.54 7.38 9.16 9.07 2.47 5.89 7.5 8.64 6.84 5.19 5.17 5.21 6.98 8.87 7.83 2.07 8.2 9.52 4.89 3.73 9.34 8.17 5.53 3.2 1.9 3.4 8.93 5.45 0.54 3.05 2.47 9.18 6.39 11.2 7.3 0.93 5.21 6.09 4.23 9.08 7.18 2.07 7.13 3.58 7.12 2.97 12 8.07 6.52 3.47 3.27 8.03 5.66 6.37 3.92 5.14 6.44 2.35 9.01 4.73 4.04 7.96 9.35 7.45 12.3 3.13 1.73 1.9 9.54 2.35 12.9 10.7 9.02 9.41 6.78 10.3 0.93 5.47 5.51 10.3 12.6 3.27 7.68 9.66 2.22 9.15 1.71 1.9 5.86 11.8 11.6 9.4 13.3 5.02 4.6 3.78 1.9 6.33 2.35 8.78 1.24 10.4 2.22 6.22 8.88 0.54 9.07 10.3 4.65 3.46 3.05 0.93 2.79 4.43 10 7.64 7.66 3.96 1.24 5.1 6.93 4.68 2.47 5.02 2.35 4.85 5.26 2.47 3.68 11.1 6.43 10.3 3.27 1.9 9.19 8.26 2.35 5.69 11.4 3.96 11.9 3.83 4.65 0.93 10.3 3.05 3.58 5.14 10.4 5.02 1.24 6.71 4.49 5.92 0.54 2.59 5.19 9.78 0.93 9.88 3.87 2.97 10.5 14 3.13 4.85 4.7 0.54 10.1 7.03 10.8 7.58 13.9 8.94 5.02 6.08 6.42 9.19 7.99 4.57 8.56 11.2 9.62 0 10.3 5.83 5.71 4.3 12.6 13.4 3.87 8.08 12.9 4.98 7.1 12.2 4.73 4.78 6.7 6.79 2.97 8.73 11.7 5.62 10.9 8.47 8.98 2.35 4.91 1.71 4.33 9.03 9.64 8.53 14 14.8 8.93 7.16 8.88 6.38 11.5 6.97 1.71 7.77 1.45 9.37 8.35 7.22 3.92 2.69 5.42 6.97 4.78 9.1 5.89 0.54 4.3 9.51 10.6 12.1 4 7.15 12.2 9.7 9.36 6.3 3.87 8.94 9.97 7.53 12.2 2.47 5.95 7.28 9.09 8.55 8.13 7.45 7.42 1.24 4.08 12.9 3.63 4.08 3.73 10.1 10.7 3.78 8.29 2.47 3.52 6.65 3.4 11.9 3.43 8.15 12 8.79 11.9 6.33 9.29 8.38 5.64 4.8 9.57 5.84 9.64 10.7 11.8 12.4 11.2 11.1 10.2 10.7 10.8 10.5 8.63 6.76 8.67 7.25 2.07 6.61 8.71 0.93 7.57 8.91 3.2 9.93 8.73 10.1 10 11.9 10.2 4.98 3.05 10.7 0.93 12.2 7.89 6.98 11.7 9.71 7.96 9.45 10.2 7.92 9.33 11 8.54 9.86 8.49 11.3 10.3 9.28 2.97 11 9.31 10.7 5.29 13.1 8.71 10.6 8.35 10.9 6.83 3.27 8.33 10.3 10.1 11.7 11 12.8 12.7 10.7 6.8 11.7 12 11.7 11.3 9.09 8.9 0.54 0.54 3.83 12.7 7.95 7.21 11.8 9.03 10.2 9.74 9.76 9.28 9.82 13.1 10.3 9.98 12 7.62 9.86 11.9 8.49 12.2 11.6 11.3 13.2 7.79 7.92 11.1 10.9 11.2 2.22 8.19 7.18 8.99 3.46 2.69 3.64 10.1 6.34 9.59 4.23 7.93 10.6 8.5 7.87 7.28 2.22 0.93 7.16 0.93 6.1 6.37 6.49 8.53 7.76 9.9 7.49 4.63 8.69 7.17 8.71 3.34 6.92 4.73 4.16 10.7 6.89 3.92 6.15 6.75 10.2 6.33 0.93 8.3 0.93 6.88 7.68 13.7 6.67 6.29 6.8 10.6 2.59 8.63 9.45 3.4 5.48 2.97 7.7 8.49 7.69 7.89 4.78 3.2 3.13 7.39 7.47 7.54 7.92 6.22 9.1 8.66 1.9 5.71 6.61 2.59 4.49 3.34 6.08 3.13 7.55 5.21 3.63 1.24 10.1 5.11 9.16 0 8.68 14.4 3.74 3.92 7.17 6.03 9.79 6.88 4.49 9.95 2.59 3.2 6.88 5.64 4.33 0.93 8.11 12.6 4.39 4.36 8.07 3.2 9.12 11.8 7.72 9.01 6.55 12.2 4.12 2.79 6.08 9.77 10.2 1.24 7.33 1.9 9.3 8.1 0.54 6.72 12.6 6.84 10.3 3.52 8.95 4.54 7.32 8.56 7.26 0.93 11.6 9.72 4.85 9.91 0.54 1.5 0.93 11.6 1.24 0.93 8.02 3.13 4.68 11.2 6.78 3.4 2.69 2.97 3.87 0 10.4 8.92 8.68 11.2 10.3 11.7 10.5 10 6.95 10.2 4.6 10.4 11 10.4 3.13 3.46 14.9 8.97 3.92 10.2 6.44 0.54 13.2 6.7 4.51 8.73 0.54 6.87 6.76 4.33 8.01 3.82 8.72 4.94 0.54 4 9.26 5.06 9.67 13.9 9.01 9.58 4.96 1.24 2.97 4.6 4.54 7.92 7.72 2.69 3.58 3.58 6.92 1.24 9.06 0 4.33 5.54 2.22 4.16 6.33 5.43 2.47 9.73 1.71 7.44 9.49 2.47 1.24 12.2 4.98 8.19 6.16 7.17 10.4 5.17 3.27 9.91 7.83 7.11 5.23 3.92 5.79 5.71 7.76 5.75 6.72 6.61 9.14 6.14 3.2 11.9 4.89 7.99 8.96 8.01 8.98 7.38 5.15 6.25 8.3 1.71 6.98 10.1 8.38 0 8.38 1.24 9.41 0.54 8.55 6.74 2.97 5.31 5.91 8.34 8.09 1.71 7.97 2.22 3.96 9.23 4.43 8.63 7.49 6.69 0.54 9.94 12 8.22 1.5 5.65 5.69 4.49 5.57 7.87 5.06 9.52 2.69 6.76 5.06 4.12 5.14 8.54 7.59 6.22 3.09 11.8 7.21 7.2 10.4 0 3.2 5.86 8.05 8.85 3.68 2.69 6.07 3.27 7.33 3.27 4.36 2.79 3.51 6.88 0.93 8.05 3.34 8.28 8.52 5.93 5.57 3.07 2.47 9.92 2.59 2.97 1.71 6.77 0 8.64 10.8 9.84 6.41 7.65 10.5 9.61 4.85 10.9 1.5 10.6 3.05 11.2 4.46 8.35 12.7 11.6 13.1 4.49 3.05 12.1 12.3 11.7 5.31 5.12 4.6 11 4.23 13.1 4.91 0 10.8 10.7 7.27 8.37 13 11.7 9.22 3.52 13.7 10.1 11.7 11.3 4.78 2.88 9.04 11.1 11.2 11.9 4.96 12.9 14.9 12.6 12.8 9.39 12.4 12.6 3.68 9.95 10.5 9.04 1.76 8.88 9.52 11 11.3 11 7.56 11.9 7.43 2.59 6.27 9.94 12.1 0.93 6.73 9.2 8.5 9.05 9.74 10.9 6.23 6.65 2.11 11.3 2.47 3.63 8.07 5.79 11.1 3.73 7.34 7.85 11.2 0 9.94 7.2 10.9 11 13.2 6.95 5.82 8.06 10 1.5 0.54 6.57 10.8 6.2 9.3 7.59 9.7 2.79 6.3 8.37 3.09 6.64 7.25 1.24 7.98 5.79 2.07 6.65 6.63 0.93 10.5 4.57 2.59 9 3.63 12.4 7.75 5 2.47 9.8 6.03 6.22 2.88 6.18 7.51 7.21 2.69 5.44 0.54 5.33 0.93 5.69 3.4 3.78 6.46 10.9 3.63 6.57 6.3 6.52 3.87 6.11 3.73 2.07 4 3.6 10.4 5.42 8.5 8.05 1.5 9.28 3.46 4.94 7.05 5.08 9.57 10.3 2.47 7.65 8.19 9.29 5.75 9.05 10.9 4.98 2.22 5.06 1.9 5.79 8.91 4.6 10.6 9.08 7.54 2.97 2.79 7.52 9.73 8.04 2.07 9.56 7.47 11 1.71 3.87 8.8 3.58 5.1 8.94 7.2 7.63 2.47 8.43 11.2 12.6 9.53 7.84 5.74 10.1 2.22 9.24 11.6 4 7.95 3.05 4.35 11.8 5.45 5.14 11.3 8.83 7.64 10.9 9.9 12.1 5.04 9.86 8.89 2.35 9.92 11.7 12.1 11.8 4.79 9.73 2.35 9.01 14 8.34 12.9 14 6.77 8.2 8.87 7.54 12.2 6.27 13.8 13.1 12.5 13.2 11.4 12.1 11.4 1.5 5.99 7.82 8.76 9.77 11.3 11.4 8.46 7.8 9.14 9.73 10.4 8.49 10.1 10.4 6.26 8.56 3.05 9.3 9.9 4.54 5.06 11.6 9.04 8.84 4.96 5.57 9.79 10.3 9.96 10.7 8.72 12.1 10.5 11.2 6.83 7.47 8.77 8.32 11.7 5.89 6.05 6.51 11.3 10.3 9.35 7.87 11.1 6.57 4.04 7.43 4 3.92 7.39 7.29 3.52 12.1 7.75 1.53 8.37 7.97 7.95 9.89 8.95 9.81 8.36 12.8 10.9 6.99 9.4 11.7 9.54 7.62 9.71 7.67 9.96 2.07 13.1 9.46 10.5 9.59 10.7 9.55 11.1 13.1 2.79 8.29 9.93 0 10.7 11.9 12.9 11.5 9.64 9.63 8.55 9.99 10.2 9.97 5.21 9.54 10.2 9.47 3.4 7.42 6.65 8.73 9.2 9.7 8.23 9.97 10.5 10.3 5.19 0 9.76 13.5 8.67 9.06 9.16 9.17 9.54 10.6 7.5 8.56 12 9.78 9.44 6.84 9.82 12 8.28 12 13 9.49 10 10.3 9.83 12.7 8.56 8.57 12.4 8.53 2.47 8.02 7.23 9.05 10.8 10.5 9.12 9.06 7.5 8.28 11.5 10.3 11.3 10.8 10.1 4.23 8.92 10.9 12.2 7.99 7.94 7.89 11.9 11 5.14 0.93 11.2 6.12 11.1 12.2 5.7 11.8 2.88 8.48 9.19 7.64 3.46 7.04 7.18 8.57 9.5 0.93 7.15 9.31 0.54 10.2 7.42 11.2 11.1 9.23 4.57 3.13 9.38 4.63 7.13 11.6 10 4.94 9.98 8.39 11.2 1.24 1.24 9.98 10.5 0 5.85 5.62 10.1 11.2 5.83 0.54 2.07 2.97 7.5 2.88 8.57 4.91 5.84 5.73 8.87 10.6 4.3 8.7 9.14 3.69 7.98 3.36 5.9 7.75 4.85 11.1 7.53 4.16 9.78 3.52 10.2 7.05 7.09 8.7 3.2 0.54 8.7 10.3 6.82 9.79 5.21 1.9 4.46 2.69 8.76 9.3 2.47 2.47 9.07 6.17 7.61 8.8 12.2 3.34 6.42 7.16 6.58 6.11 4.64 6.18 7.66 5.97 3.52 5.77 6.96 6.38 3.58 6.98 5.38 1.71 6.41 7.43 3.71 2.35 1.5 0 2.35 4.89 1.5 3.13 6.49 0.93 8.69 6.02 4.96 7.3 2.35 2.07 9.02 9.54 0.54 0.54 0.54 0.54 3.83 1.24 6.42 1.24 0.54 8.3 6.37 3.52 2.69 12.2 3.68 8.64 8.18 1.24 8.96 13.6 12.1 8.63 3.05 8.24 6.04 1.5 9.28 13.1 10.2 7.09 6.74 9.87 3.27 9.54 7.37 4.73 4.6 7.62 10.6 8.58 6.45 8.89 7.96 10.1 10.7 9.43 9.06 10.1 5.15 9.41 11 10.1 15.4 14.3 3.13 8.69 8.86 8.24 10.5 9.42 12.2 10.8 8.86 6.52 7.39 9.68 4.04 3.13 2.69 10.1 7.5 1.71 10.8 10.2 0.93 6.22 15.3 10.2 10 9.68 1.24 7.67 13.9 9.85 2.79 12.3 11.9 9.55 9.38 9.02 12.4 8.97 5.29 7.28 11.5 11.2 9.78 8.67 11.9 0.93 9.25 9.57 12.9 10.9 10.5 9.91 11.8 5.75 12.3 4.16 5.04 11.4 10.7 11.2 12.6 16.1 13.3 9.84 10.2 3.58 6.29 9.03 9.72 10.1 8.73 13 7.39 10.2 10 9.14 11.1 10.2 11.7 10.5 8.99 8.96 5.08 10.1 10.3 10.2 9.12 10.4 9.37 10.7 10.7 10.2 8.72 10.2 10.5 11.7 11 9.01 10.7 9.87 9.82 10.5 10.4 11.3 8.41 10.9 10.5 10.6 9.72 11.6 9.28 9.48 8.45 12.8 12.8 10.4 10.4 0 7.07 7.45 5.49 8.24 2.59 2.07 4.23 1.71 9.48 7.33 7.74 7.22 5.93 8.88 11.6 13.7 10.4 4.6 10.1 8.11 5.1 9.94 9.22 10.3 8.45 12.4 5.53 11.4 9.63 8.7 8.93 11.1 10.9 10.6 12 10.7 9.55 8.45 9.8 9.39 9.18 9.25 1.71 9.78 9.02 10.4 6.34 4.08 11.1 13 8.65 9.99 10.5 10.6 9.71 6.59 4.49 10.8 4.7 3.27 6.61 11.1 10.3 12.3 10.5 10.7 9.15 11.4 10.5 2.69 10 12.4 3.63 8.04 9.94 10.4 8.53 9.92 11.6 11.3 8.87 5.73 4.04 10.4 4 8.83 8.45 11 6.55 12.4 5.76 3.34 12.8 7.78 7.36 4.65 8.46 4.57 10.4 11 9.91 7.16 11.3 8.46 0.93 9.32 10.1 4.71 3.87 12.6 10.6 10.6 2.22 9.85 3.83 5.81 3.34 1.24 5.17 0.93 7.1 5.66 1.24 4.33 8.08 12.5 10.5 13 9.27 10.8 8.22 11.6 9.16 3.58 8.93 9.26 10.8 8.24 0.54 9.13 4.6 5.31 7.89 11.1 5.32 11.3 8.11 0 6.6 11.3 8.73 2.69 5.29 3.52 0 14.1 10.2 9.52 10.1 9.24 5.5 11.4 8.23 5.65 3.78 3.4 5.57 9.8 1.5 1.5 10 9.61 12.1 6.34 7.42 8.45 7.74 9.72 0.54 5.48 6.52 8.17 11.7 9.02 7.58 10.3 8.04 6.56 10.9 7.38 10.3 5.93 4.73 6.96 7.35 10.8 7.66 5.77 6.77 10 6.49 6.3 4.91 7.61 10.6 7.56 11.1 15.2 7.21 7.48 11.3 1.24 2.35 3.63 11.8 8.79 11.6 8.81 11.1 11.8 8.73 8.94 11 7.92 8.77 6.57 7.83 9.62 10.2 7.75 13.9 9.7 0.93 11.1 12.9 0 7.23 10.8 9.61 10.8 5.23 10.2 8.8 5.76 8.33 9.39 5.23 9.29 5.24 12.9 5.54 2.59 10.8 10.7 8.07 5.02 4.89 1.24 7.86 9.03 9.8 12.6 6.61 10.7 9.41 8.37 2.97 3.81 2.79 12.9 5.6 8.47 10 6.46 6.28 2.22 9.22 10.3 9.38 7.71 9.9 11.5 8.28 10.5 10.5 12.7 7.01 0.54 12.7 4.08 7.3 2.07 9 10.2 11 10.6 10.8 10.7 9.58 8.82 7.47 6.9 8.64 8.96 10 8.82 9.35 6.57 7.92 7.92 10.1 9.23 11.5 9.17 7.31 8.13 8.72 9.05 10.9 6.79 7.85 10.5 8.78 9.85 8.35 10.3 10.4 8.95 10.1 10.8 9.63 10.8 4.57 8.24 6.5 11.4 4.87 7.9 10.1 11 12 7.47 8.66 9.73 2.97 7.77 9.02 9.07 9.4 10 8.53 9.86 8.84 10.8 8.84 9.31 9.93 11.2 11.2 10.2 10.6 0.93 9.11 6.59 4.46 7.85 9.27 9.91 8.59 10.5 9.58 11.6 7.96 8.76 9.66 8.3 9.06 9.5 10.9 8.84 8.91 8.3 8.42 10 7.16 12.2 11.5 11.1 10.1 10.4 9.76 9.52 11.8 10.3 8.98 9.99 9.19 10.8 8.08 9.13 10.5 9.55 9.16 9.49 5.42 9.86 9.59 8.51 9.56 9.53 7.17 7.33 9.35 8.42 8.88 9.29 12.6 9.06 10.6 9.32 9.61 7 12.7 2.35 9.92 12.1 8.2 9.84 11.7 6.59 9.96 8.27 10.7 7.73 8.55 6.17 11.6 8.77 9.14 6.92 7.31 7.19 9.84 9.95 9.5 8.87 8.36 8.45 9.82 9.63 8.01 11.7 8.3 9.17 8.28 7.87 9.18 8.92 9.43 9.02 9.67 8.69 8.6 7.82 1.71 8.43 0.93 9.54 3.27 8.8 8.61 7.32 8.19 10.6 9.43 9.4 9.9 2.79 9.64 10.4 10.8 8.04 9.45 8.21 11.8 10.2 9.19 9.06 5.15 7.97 9.31 6.44 10.4 10.3 8.29 10.3 10.4 8.08 8.59 9.49 9.42 4.3 5.47 6.95 10.8 11.3 11.1 10.7 8.25 7.08 6.5 9.92 11 9.13 12.2 8.33 9.29 11.5 6.9 2.79 9.85 9.71 9.14 9.71 9.91 9.35 7.79 8.92 10.4 5 9.71 8.55 10.3 2.69 10.3 10.4 1.5 9.19 9.54 6.11 7.56 8.5 6.1 9.72 8.91 2.07 9.65 10.9 9.66 8.63 6.99 8.84 10.2 10.8 10.5 6.48 11.2 6.09 10.8 7.19 5.5 4.39 10.6 10.6 8.83 7.37 8.42 8.64 9.47 10.5 10.1 2.22 12.1 1.5 5.33 8.07 9.58 8.74 10.8 7.24 6.71 11.4 8.61 10.4 1.5 10.6 9.44 8.39 11.2 8.54 9.13 8.74 5.87 9.26 10.4 2.88 8.37 12.1 9.37 9.38 3.83 8.11 9.05 8.67 10.8 9.52 11.5 7.26 10.2 9.24 9.03 9.64 8.39 8.01 9.77 9.27 8.41 8.54 10.7 9.38 9.57 9.83 11 9.82 7.8 10.1 8.73 3.52 11.6 9.03 10.1 11.1 2.69 9.71 8.54 10 7.31 3.27 11.3 10.9 8.5 1.24 11.8 10.6 8.41 10.6 5.23 8.64 7.75 11.1 11 8.54 9.9 8.95 10.9 8.98 8.75 9.14 10.9 10.8 10.1 9.1 10.3 8.32 8.13 7.62 8.85 9.14 10.6 10.5 9.06 9.54 8.8 8.97 9.55 10.7 6.57 8.3 7.59 5.5 9.82 9.96 9.11 9.42 8.6 8.05 9.1 8.03 9.77 8.86 7.97 8.8 11.3 4.04 7.69 8.26 9.33 9.71 4.8 11 11.1 10.3 9.96 10.8 7.74 10.9 13.3 9.57 7.4 4.82 12.2 10.2 11.9 7.85 10.7 9.36 11 9.66 11 13.5 9.46 9.6 6.6 10.2 9.86 11.2 7.59 9.71 10.5 7.78 12.4 7.94 0 7.78 9.25 11 10.2 8.35 11.9 8.8 10.5 8.04 8.3 11.4 10.5 9.97 9.5 8.43 10.8 8.72 11.4 9.91 9.82 6.31 9.11 8.47 10.8 9.17 8.73 9.68 7.71 8.45 9.16 7.94 10.6 8.85 10.7 9.36 12.1 5.98 10.1 6.28 5.42 9.23 8.97 5.75 6.83 8.99 8.78 9.77 9.07 9.41 10.3 11.8 11.2 7.45 8.56 0 11.7 8.47 6.97 11 8.13 10.7 7.89 1.9 11.3 7.27 8.16 10.3 12.5 9.19 10.2 2.47 11.7 7.42 2.35 1.5 6.91 9.81 4.54 11.4 10.1 9.51 4.46 10.3 8.61 10 9.88 10.4 9.56 1.9 8.85 9.9 0.93 8.76 10.9 8.67 9.21 5.7 11 11.2 7.44 6.01 6.17 8.3 10.4 11.4 11.1 10.7 8.44 9.12 9.57 7.29 9.62 7.12 9.94 9.37 0.93 0 9.13 5.99 10.5 10.2 9.42 7.48 11.6 9.89 0 9.29 11.6 10 8.3 12.5 1.71 9.48 11.3 13.5 9.72 8.01 10.3 11.9 5.99 10.1 12.3 7.19 9.01 10.8 13 10.6 9.04 5.42 4.36 5.83 4.26 11.3 3.68 12.3 2.07 10.2 9.66 7.14 8.85 11 10.9 3.27 10.4 9.93 14.2 2.22 11.9 12.4 8.44 7.36 8.64 5.84 8.7 8.44 10.7 8.17 7.94 16.7 9.76 10.3 7.85 11.4 7.91 9.64 9.81 10.5 6.65 9.23 10.5 11.1 10.9 10.6 9.45 1.24 7.64 9.9 10.4 7.89 11.2 8.96 1.12 14.3 9.41 4.46 9.06 8.48 5.71 7.58 9.86 10 10.8 10.6 11.6 9.93 10.1 4.43 8.69 6.1 9.7 5.62 8.1 5.23 9.23 6.32 7.1 5.98 8.72 10 1.24 6.22 8.97 8.91 8.96 11.6 10.1 14.2 3.78 9.82 9.07 9.81 5.04 8.61 4.23 9.59 11.9 11.5 6.17 11.8 11.1 1.9 10.9 9.39 10.7 12.8 11.2 12.6 11.1 11.3 4.63 10.9 7.37 10.8 5.38 10.1 10.3 8.02 3.24 6.06 12 10.7 10.9 11.3 10.2 7.88 7.52 9.2 4.91 4.16 5.76 1.71 8.63 11.2 6.79 6.22 5.89 9.24 10.1 6.57 9.86 8.81 7.38 5.57 11.2 9 10.5 9.49 9.59 8.5 8.72 10.7 8.58 10.5 8.86 8.5 10.2 11.9 6.27 10 10.2 4.51 4.78 7.31 8.51 6.79 3.4 7.81 2.59 2.97 8.97 8.87 13.3 10 6.45 10.2 10.3 10.7 1.9 10.9 7.95 6.84 4.81 7.55 3.08 7.88 8.06 7.15 8.91 8.5 10.1 9.83 11.1 12.6 4.46 10.1 8.87 7.5 8.62 9.5 10.4 9.62 6.14 4.23 9.92 9.33 12.3 10.9 11 4.63 4.63 9.74 7.99 6.28 11.7 8.73 6.24 10.5 9.71 2.35 5.45 10 9.31 10.2 10.2 10.3 11.3 10.9 4.89 11.1 9.39 3.34 3.73 11.2 10.7 8.35 10 3.08 9.09 5.38 5.04 9.23 9.61 6.8 11 8.8 12 9.57 8.31 8.88 3.46 3.13 11.8 9.95 11.6 10.5 5.71 9.35 8.88 0.54 10.2 8.56 10.3 13 7.28 9.82 10.8 7.66 10.1 9.88 6.12 11.2 7.75 10 8.58 10.5 8.14 9.21 9.24 9.16 7.04 10.9 9.26 9.75 12 8.67 8.97 9.41 9.72 4.49 10.2 5.12 6.51 9.73 7.25 7.8 8.55 7.3 9.99 9 6.65 9.45 2.79 8.71 9.48 8.59 8.93 8.58 8.93 8.02 10.5 10.8 11.9 7.3 10.1 10.4 7.33 8.91 7.85 9.59 7.33 7.53 6.96 9.63 8.53 0.54 7.82 9.65 7.32 8.16 12.1 2.79 9.55 3.4 10.1 10.4 9.21 7.93 4.43 10.2 8.93 7.27 10.8 12.3 6.45 5.76 6.2 8.03 11.6 9.57 3.27 9.35 9.11 10.5 8.6 10.6 3.83 9.72 10.8 8.12 8.72 7.81 9.36 9.38 9.79 1.24 10.2 10.5 8.8 9.8 7.84 9.07 5.15 10.2 2.69 12.6 10.2 2.69 9.36 10.6 9 9.64 9.83 3.68 11.4 2.47 6.33 2.35 6.38 10.4 8.31 12.5 8.17 8.16 9.17 9.3 5.98 10.5 8.61 12.2 8.6 8.22 8.42 10.2 12.8 8.68 8.84 10.9 6.61 8.86 2.79 8.65 10.1 10.5 7.53 8.75 7.13 7.83 6.55 7.64 8.97 9.24 3.2 8.76 10.2 8.36 7.92 11.1 7.9 8.54 9.44 6.1 9.09 7.55 1.71 7.1 0.54 8.58 8.84 6.17 0 10.4 7.91 10.1 10.7 4.78 8.47 7.24 10.5 10.4 11.7 9.55 10.2 8.54 8.24 7.21 9.72 9.57 10.3 11.3 0.93 9.9 8.09 8.91 10.4 9.84 10.7 7.71 9.1 9.8 11.2 9.53 10.4 9.9 9.79 6.31 10.2 6.47 9.03 7.75 7.56 6.48 9.61 7.73 11 8.79 10.5 8.08 9.52 11.1 11 8.78 8.72 8.99 10.4 9.16 9.91 2.47 6.5 7.05 7.26 7.99 9.47 8.06 9.3 0.54 10.1 7.38 10.6 7.64 9.32 10.1 8.03 11.5 9.25 8.1 11.3 6.92 9.28 8.6 10.6 9.07 11.2 9.14 12.2 10.5 8.28 8.39 9.5 8.8 9.51 10.2 0.54 9.21 10.1 10.3 11.1 7.18 8.13 5.34 9.43 9.42 9.29 8.87 9.81 8.4 10.4 9.43 6.38 8.47 7.73 7.98 5.81 11.6 8.2 10.5 5.82 9.15 7.02 8.72 0.54 9.9 8.08 7.17 8.02 10.1 11.6 6.54 8.75 8.73 10.6 5.14 7.94 7.29 9.28 9.6 5.99 10.5 5.77 9.6 4.16 8.47 12.2 9.12 7.31 10.2 6.72 8.43 6.67 11.5 6.45 11.6 12.3 11.7 7.75 11.1 8.13 10.8 7.82 7.41 9.06 9.32 9.9 11.1 6.41 9.81 7.39 8.6 8.58 9.29 8.83 6.24 10.2 1.24 0.93 9.47 7.78 10 8.28 6.48 8.51 8.53 10.6 10.5 9.47 6.5 8.41 8.86 8.3 9.15 8.25 7.3 10.2 8.92 11.6 10.1 9.1 8.01 11 9.2 7.71 7.05 6.94 7.1 8.91 6.72 5.91 7.03 7.84 8.76 9.8 4.82 11.7 7.91 6.1 6.72 9.96 8.31 9.91 8.9 6.83 10 11.3 11.9 8.11 5.24 5.08 9.53 2.88 7.11 8.48 9.64 7.95 8.39 10.9 3.73 10.6 8.72 10.7 9.27 8.58 7.63 6.95 11.3 9.46 9.6 7.95 10.5 8.96 8.45 10.8 8.79 9.52 8 9.31 2.22 9.59 9.47 9.71 8.71 4 8.53 8.41 7.51 7.81 3.58 5.58 9.88 11 9.04 8.25 8.54 8.22 7.1 9.85 9.66 9.61 8.52 11.3 4 5.82 8.91 9.44 10 9.42 8.22 9.13 10.8 10.8 11.5 9.79 8.38 9.23 6.31 9.46 9.59 7.4 7.55 8.01 10 9.05 4.46 7.08 9.87 7.83 7.67 12.2 7.56 8.55 10.2 8.16 5.81 10.8 10.4 8.1 8.72 2.88 10.9 7.91 9.6 7.76 0 9.9 9.52 9.03 7.43 2.22 9.35 9.12 10.4 6.61 9.91 9.31 7.78 11.2 8.39 11.1 3.46 11 7.15 9.58 9.62 8.52 9.12 5.68 9.02 10.6 3.58 4.63 10.4 8.52 7.6 7.13 9.92 8.53 7.79 9.49 9.54 11 2.59 9.38 9.54 9.77 7.95 9.3 11.2 10.9 6.55 7 9.85 8.64 4.8 7.41 10.6 10.8 9.02 9.45 8.06 8.78 9.02 8.42 11.5 8.48 8.89 5.19 9.16 7.57 9.64 9.45 2.88 11.1 9.34 11.2 8.97 9.46 5.23 9.47 9.79 8.54 7.4 8.23 8.05 9.84 9.08 9.05 6.69 6.5 9.9 7.05 10.5 2.97 9.31 10.8 5.38 9.48 7.42 11.1 10.6 7.99 8.71 7.68 5.42 8.17 8.71 9.62 0 10.3 10.1 1.24 8.92 7.65 9.38 11.8 9.18 11 9.22 9.25 8.43 8.7 6.48 9.11 7.74 8.05 9.65 8.56 4.82 9.8 5.42 9.9 8.11 8.35 9.52 6.6 5.73 7.68 8.58 8.43 13 9.69 10.6 5.24 8.16 9.8 11.1 10.3 8.48 9.74 8.91 10.6 9.43 6.67 7.17 8.5 8 3.83 4.33 8.69 13.3 7.72 7.91 9.78 8.72 9.42 10.4 12 9.12 9.14 10.6 9.75 10.1 7.3 7.69 12.1 11.9 6.37 7.04 2.47 7.39 8.43 9.03 6.3 1.5 1.24 8.47 5.29 8.77 8.5 9.15 3.46 8.07 7.41 9.44 10.4 8.99 10.1 7.41 2.97 9.39 10.8 9.08 10.2 8.72 9.58 3.13 7.97 9.69 7.2 4.12 7.61 7.01 9.38 2.69 11.2 3.73 10.9 5.17 8.33 9.7 9.58 6.57 8.41 0 6.97 9.97 5.34 6.96 9.03 1.71 3.46 6.84 4.87 9.35 11.1 8 9.93 7.46 8.77 11 6.68 11.5 9.46 11.6 3.27 10.3 9.9 6.89 5.47 10.7 11.2 8.04 11.1 8.96 10.6 9.19 7.9 2.47 10 8.04 9.74 9.18 9 8.98 11.8 6.94 8.84 11.3 7.35 1.9 8.13 8.67 10.5 6.37 8.81 11.9 10.5 9.55 7.96 10.5 10.4 11.4 9.98 10.8 7.32 11 3.96 11 7.51 7.69 8.61 7.44 7.58 8.73 8.72 10.6 8.37 11 8.99 8 10.1 8.47 9.15 10 9.24 9.5 10.9 7.53 10.2 10.1 9.07 6.12 10.6 10.8 9.87 10 7.57 7.53 9.61 12.1 9.82 6.83 9.37 8.56 8.84 10.6 9.09 8.11 10.2 8.22 8.19 10.8 10.5 11.4 9.06 8.63 9.98 5.42 11.4 8.37 10.8 4.23 9.8 9.76 10.7 5.24 10.9 6.89 11.3 8.73 8.43 8.16 9.56 10.8 8.65 11 7.81 9.82 5.71 4.39 5.62 11.5 9.36 9.99 10.1 9.58 9.29 7.11 7.92 8.86 8.4 9.78 7.14 9.47 12.1 9.77 7.21 8.04 7.77 10.8 11 11 10.2 11.9 10.1 10.2 9.9 9.28 9.36 9.31 11.5 10.2 7.1 8.81 8.96 11.1 1.5 12.1 10.6 8.38 8.41 9.2 8.19 7.26 10.9 10.3 7.36 9.84 8.76 11 9.68 8.47 10.2 7.22 8.98 5.48 9.38 7.76 8.7 7.06 8.95 8.03 9.63 8.26 9.08 9.46 9.55 10.4 6.22 6.43 10 7.06 8.23 7.1 8.52 9.33 7.85 9.36 5.36 7.97 1.9 9.48 10.7 3.58 8.56 8.71 6.24 4.19 10.8 7.64 8.07 9.59 2.59 6.88 9.56 8.74 4.23 9.58 10.9 3.13 9.86 10.6 7.44 10.4 10 8.96 9.31 10.6 10.9 8.99 7.18 8.93 8.36 10.7 6.87 10.7 6.51 9.54 11.2 8.15 8.76 8.86 11.8 8.21 11.1 9.21 4.45 10.1 7.38 10.2 6.69 11.6 2.07 9.21 9.64 9.21 10.8 9.53 2.79 7.98 6.2 10.3 8.26 6.14 10.7 5.58 11.2 11.8 5.58 0.54 12.7 10.3 8.02 9.36 4.82 10.1 11.6 9.34 5.93 10.8 10.7 10.2 5.95 9.59 8.31 11.2 9.42 11.2 8.88 7.91 8.91 4.08 12.3 8.08 4.46 9.25 2.59 9.9 4.43 12.1 11.4 8.85 7.7 8.77 9.37 6.49 2.22 8.91 10.2 10.9 9.27 11.8 11.6 6.57 10.2 12 8.76 8.71 7.31 0.54 7.52 2.97 11.4 9.59 10.5 8 10.9 9.36 9.76 11.4 10.7 10.6 10.3 4.04 8.32 7.31 6.31 10 3.68 2.22 6 8.68 7.01 4.3 4.23 4.75 6.53 3.34 4.57 6.49 4.94 5.66 12.2 4.36 5.18 4.39 5.45 3.73 9.43 2.47 6.8 7.86 7.47 5.68 6.8 6.92 6.92 7.77 6.88 8.21 4.49 5.45 4 8.12 3.27 7.21 7.79 7.71 2.69 6.56 4.96 11 7.26 8.34 9.92 2.59 9.43 10.3 1.24 5.83 12.4 7.39 10.9 1.24 11.6 9.97 4.91 9.33 9.73 6.85 10 9.23 5.32 10.7 10.2 6.99 7.9 9.92 11.5 8.53 9.64 0.93 7.17 9.25 9.67 9.17 8.83 9.46 8.84 7.22 8.02 12.8 6.48 0.54 5.02 8.67 8.2 8.75 5.86 4.36 13.7 7.23 10.3 6.52 4.16 15.3 5.84 7.15 5.19 9.97 6.58 8.94 11.1 8.57 9.91 5.93 10.3 9.82 7.75 9.81 8.69 8.75 5.39 2.47 8.53 4.08 8.85 3.87 10.7 6.44 10.9 9.49 15.5 8.7 5.36 10 10.1 11.3 10.6 10.5 9.4 9.67 10.3 8.3 10.5 10.1 9.45 7.06 2.69 10.4 11.4 11.1 11.1 10.9 9.91 12.7 10.8 7.79 10.1 10.2 11.6 7.53 10.2 9.3 2.22 11.7 9.87 7.58 8.83 10.6 10 4 8.63 11.4 11.4 6.55 8.23 9.31 9.11 9.02 5.94 7.28 12.1 6.33 9.23 8.42 8.28 11.2 10.7 10.6 10.6 10.8 8.54 8.74 10.4 6.32 10.8 9.86 9.7 8.83 9.71 8.35 8.18 8.1 9.76 9.21 10.3 10.5 8.65 10.7 6.88 4.16 9.12 9.37 11.4 2.47 5.73 3.4 9.43 7.08 10.6 7.25 9.63 3.73 5.38 9.56 7.76 3.68 7.8 9.84 6.1 7.17 9.2 10.6 11.2 6.37 10.4 9.49 9.26 11.1 10.2 11.4 6.31 7.21 9.07 7.86 6.91 11.9 7.81 10.9 7.37 9.84 10.4 9.72 11.6 11.1 7.71 3.46 10.3 8.44 9.06 11.7 8.88 9.29 11.3 9.32 4.19 10.2 9.24 0 11.1 10.9 12 5.99 10.7 8.65 8.57 11.6 5.82 10.9 1.9 10.1 4.87 6.63 7 9.72 11.5 2.79 8.52 8.98 10.4 2.79 8.26 8.45 9.16 9.83 11.5 3.34 8.06 8.66 9.79 6.82 9.84 8.9 10.1 3.96 7.61 8.97 11 10.8 10.1 7.58 10.9 9.95 11.9 12.2 11.9 8.12 11.4 8.25 9.83 9.92 9.78 5.52 12.3 11 7.84 9.52 8.82 9.62 8.37 10.5 4.46 5.29 6.58 10.4 10.2 9.1 11.9 10.3 10.9 11 9.63 7.12 9.43 10.9 9.83 10.5 8.32 10.6 5.21 9.86 11.4 11.9 3.52 9.43 9.36 9.06 10.6 11.5 8.66 7.65 11.2 10.4 9.39 9.57 8.17 7.69 8.87 6.54 10.5 8.85 12.6 10.3 8.07 9.38 9.56 9.58 10.2 5.71 7.22 12.6 7.26 10.8 3.52 3.63 8.57 9.35 9.6 4.23 5.95 8.34 12 3.01 8.49 10.9 6.64 5.47 7.97 2.79 7.88 7.51 7.69 3.63 9.92 9.56 6.43 5.99 8.1 8.96 8.91 2.34 6.61 10 9 0 6.27 7.17 11 9.52 11.4 5.93 11.5 7.48 9.57 6 8.98 8.08 3.58 9.39 8.45 10.5 10.3 3.58 1.71 4.39 2.59 9.88 8.46 7.26 9.62 2.07 7.98 9 8.56 5.04 6.13 10.8 9.94 3.46 6 11.9 10.4 5.79 9.97 9.55 7.47 4.55 3.58 8.78 9.09 9.83 8.87 6.61 3.46 8.19 12.6 9.82 6.38 9.75 9.7 9.12 1.9 10.9 1.71 11.1 7.16 4.71 3.05 9.31 8.35 10.6 9.08 7.97 11.7 9.57 8.96 9.17 9.82 11.7 8.99 9.7 6.85 10.4 3.38 4.19 1.5 0.93 9.27 11.6 6.73 11.2 11.2 9.8 8.86 5.98 10.7 8.68 7.54 11.6 2.07 8.31 8.76 7.03 6.78 6.81 5.74 8.48 7.01 9.55 8.76 0 8.8 6.37 7.86 7.43 10.6 10.5 11.3 7.56 8.66 3.63 8.79 9.38 6.79 13.7 7.97 6.7 10.4 6.78 1.5 4.23 7.61 2.22 9.04 9.89 2.47 10.3 10.5 10.2 8.97 8.82 10.1 10.5 9.65 7.23 7.97 5.23 4.85 9.26 8.62 6.57 10.5 9.97 4.82 9.31 10.2 9.1 10.4 8.39 6.85 8.44 2.07 6.55 9.47 11.3 9.64 8.06 4.75 7.67 5.34 11.3 10.5 5.31 10.6 9.4 8.24 7.59 4.12 10.1 9.12 9.26 13.2 10.4 6.8 5.88 9.36 11.4 7.77 10.8 10.7 10.5 10.2 8.65 8.75 9.89 9.76 8.11 7.21 12.9 7.83 7.85 8.98 13.5 10.3 5.53 5.06 10.3 1.9 9.09 3.52 8.28 6.26 4.87 9.17 8.93 8.87 6.28 10.3 8.04 3.34 10.7 9.22 9.83 8.77 10.7 9.01 8.22 8.43 9.97 9.23 4.92 9 5.83 8.91 8.57 9.09 5.69 8.74 11.1 7.33 5.41 8.68 9.59 8.3 5 5.74 9.09 0.93 9.2 7.79 5.65 8.94 7.89 11.1 8.84 8.91 8.71 9.02 10.2 11.1 10.1 8.85 7.41 11.3 10.4 11 9.06 11.1 8.79 3.34 5.97 9.68 9.87 9.47 6.28 11.6 2.88 0.54 8.76 6.08 9.78 9.47 5.67 7.97 8.45 10.4 6.01 8.81 10.7 13.8 6.6 9.47 10.3 10.8 8.8 1.5 6.33 1.9 5.58 7.26 3.4 9.87 7.75 7.58 10.1 10.1 7.89 10 7.08 10.1 10.5 5.04 12.4 11.7 11.7 9.38 7.83 9.87 10.1 10.4 9.89 7.64 10.4 12.1 9 10.2 11.9 11.2 9.55 12.8 9.93 3.68 10.9 9.31 9.18 10 10.5 9.82 10.8 6.14 10.8 10.2 10.7 9.32 9.62 9.23 7.28 6.06 7.48 6.01 6.5 8.8 8.79 7.67 8.24 6.95 11.2 10.6 11 9.12 2.79 10.1 8.68 9.89 10.8 10.2 10.8 9.88 9.44 4.82 10.1 1.71 3.05 11.4 12.3 8.53 11.9 10.4 10.7 5.47 0 7.21 9.23 9.92 12.4 9.53 11.6 9.07 10.6 10.3 6.88 9.1 9.14 9.19 11.8 12.8 11 7.62 8.75 9.13 12.1 11.5 11.6 6.87 7.71 6.22 7.45 6.83 8.44 11.2 3.13 10.2 13.1 10.5 11.8 11.1 11.8 9.83 10.7 11.4 10.2 11.2 8.8 10.8 9.4 9.54 10.7 4.08 10.3 5.99 9.44 10.2 8.46 9.97 11.2 10.3 6.61 5.51 5.39 9.73 8.57 7.95 10.2 8.86 7.83 8.82 10.2 11.9 10.8 8.31 10.8 10.4 10.7 10.6 9.52 6.13 2.07 9.79 9.22 11.1 2.07 8.62 12.1 9.07 1.71 8.87 7.75 9.67 11.7 2.47 5.51 10.9 10.4 10.5 8.19 7.11 0.93 0.93 1.9 12 7.1 6.87 1.24 11.7 9.25 0 7.1 7.7 3.27 10.7 9.09 6.79 8.12 11.2 9.58 9.24 11.5 9.97 6.91 3.13 12.3 8.84 10.1 9.3 7.52 7.87 8 9.98 11.1 1.56 9.21 9.49 8.14 4.57 0 10.8 6.35 10.5 10.2 10.6 17.1 9.52 9.83 4.57 9.88 5.28 2.79 11.1 1.24 9.83 10.5 9.15 3.13 10.7 2.35 10.3 12 9.28 10.5 14.1 5.29 2.07 8.14 9.68 2.35 8.91 8.88 10.5 6.28 9.16 9.93 0.54 8.66 4.3 0.54 8.56 12.2 6.29 10.7 9.76 11.3 0.54 9.14 7.78 9.88 8.11 9.59 7.81 8.95 8.69 8.47 2.88 9.26 8.39 12.3 9.09 11.7 8.15 9.92 9.57 11.3 8.11 8.84 10 10.4 0.54 7.56 11.1 5.95 5.19 9.66 6.29 10 10.2 0.93 0.93 6.65 8.54 7.06 9.46 9.54 8.67 10.8 7.81 9.45 7.53 8.15 10.2 6.83 7.88 4.43 9.4 4.23 6.33 8.9 6.58 1.71 10.2 10 8.05 9.41 14.3 13.4 12.9 12.2 9.46 12 12.9 3.87 14.9 7.81 13.6 13.5 12.6 13.6 12.9 11 12.8 10.6 13.8 1.9 12.4 11.3 9.08 12.5 11.9 12.3 13.6 12.9 13.4 12.2 12.4 13 11.8 12.1 11.2 13.7 13.1 11.8 8.63 8.79 13 6.11 13.8 13.7 12.9 10.2 10.3 13 12.4 13 13.5 11.5 13.3 4.01 4.75 6.62 6.3 7.65 12.6 2.97 1.24 13.4 11.6 10.9 11.3 9.16 9.96 11.8 13.5 13.7 11.7 13.6 13.3 12.2 13.2 11.7 13.1 13.8 12 7.9 13.5 13.4 13.8 11.7 12.5 13.5 12.3 8.39 5.19 11.8 8.16 11.6 9.65 10.4 12.8 9.96 9.87 9.62 9.27 2.35 7.45 10.8 10.3 6.37 8.04 10.9 10.1 9.94 8.02 4.75 2.35 1.91 4.85 11 6.79 3.34 10.6 1.5 14.5 7.44 10.1 13 13.3 0.93 10.4 5.92 10.6 12.1 10.2 10.7 10.2 8.39 7.22 11.4 10.1 10.1 13.3 8.33 9.17 12 11 12.6 4.89 10.1 10 9.15 14.3 5.13 7.12 7 6.39 2.97 4.26 4.08 2.22 13.5 6.57 1.24 5.91 8.09 13.3 13.3 7.82 10.1 8.32 12.6 2.59 3.27 10.3 8.47 5.91 1.5 7.13 9.4 6.88 6.62 6.27 11.1 8.21 4.04 1.5 9.31 0.54 6.54 4.68 2.47 3.78 10.9 8.03 14.4 7.44 3.96 8.87 12.9 12.6 8.38 9.08 9.84 4.23 8.77 9.9 11.7 9.05 9.47 10.1 8.78 6.67 8.44 9.28 6.88 9.1 10.4 10.4 9.31 8.37 9.5 10.3 9.74 4.02 8.06 9.25 11.3 10.8 6.2 8.9 4.75 2.35 9.26 7.06 7.93 8.39 7.35 8.75 5.76 9.6 6.96 9.78 10.1 7.45 11.5 7.02 10.6 2.88 10 6.51 8.57 7.56 9.69 7.94 6.44 11.1 10.8 5.28 8.62 6.63 9.83 8.8 9.29 9.46 4.49 12.5 2.88 6.23 11.1 10.1 6.13 6.85 8.86 12.2 3.92 10.3 8.3 1.9 5.04 8.39 3.52 8.27 9.35 9.65 6.97 8.14 7.21 6.02 9.4 9.21 12.9 10.2 12 11.3 8.02 8.96 7.49 7.45 10.1 5.89 5.08 7.82 1.24 9.8 5.94 10 3.46 8.87 1.24 12.4 9.66 3.83 7.71 6.66 7.88 11.9 8.27 9.02 9.5 8.25 10.3 5.15 7.12 4.46 7.29 7.37 10 11.6 0.54 8.06 7.36 8.97 10.4 11.9 10.8 8.76 8.27 9.47 8.85 3.46 6.78 10.5 10.2 9.15 10.3 5.19 10.6 9.77 9.42 10.8 0.93 0 10.8 2.69 12 2.88 12 12.1 4.73 8.02 6.69 7.39 9.45 8.06 11.1 7.97 10.4 11.5 1.5 6.86 3.4 6.71 11.9 6.08 2.59 11.5 10.5 8.53 11.4 11 8.79 6.6 10.4 7.78 6.41 9.64 9.33 8.83 9.92 5.5 11.5 8.97 6.11 0.93 4.33 5.76 11.2 10.2 9.07 6.47 10.5 9.42 1.5 4.98 10.9 7.81 8.61 0.93 1.5 8.65 7.74 5.19 8.16 5.55 6.79 4.36 18.6 3.05 5.66 7.65 1.5 9.8 9.48 2.79 10.6 8.4 6.37 8.64 5.1 5.44 8.19 13 6.62 8.57 9.05 6.53 0 1.9 5.71 8.69 5.55 8.41 9.84 5.39 8.39 7.97 9.54 11.4 7.43 9.96 8.85 10.2 9.69 7.93 8.7 8.32 11 8.61 4.08 6.45 5.17 1.9 2.97 5.06 3.13 4.26 11.1 3.73 6.26 1.9 10.8 3.52 7.25 8.66 2.59 10.8 0.93 6.58 3.25 8.85 11.8 5.71 2.07 10.8 5.6 1.5 5.99 3.78 10.8 9.92 6.74 5.92 4.93 4.12 0.54 11 0 4.85 5.28 4 2.35 4.16 7.81 9.98 5.12 3.13 7.03 9 10.9 1.71 9.48 3.52 2.35 3.87 9.72 1.71 6.16 4 11.8 2.59 9.16 3.92 7.28 9.5 0 8.53 5.34 10.6 8.62 8.61 9.47 0 4.87 3.05 0.54 5.57 3.78 8.93 6.52 5.83 7.79 9.81 10.5 12 7.41 5.78 9.61 10.8 3.63 4.3 10.7 10.6 9.19 10.8 10.5 9.47 9.73 5.42 7.9 12.2 9.67 7.34 11.2 10.3 10.1 7.69 8.78 11.2 9.4 7.69 10.9 9.09 10.1 11.9 10.5 9.18 8.25 9.43 11.5 8.51 9.29 10.5 10.2 8.86 6.94 9.46 7.2 0.54 9.08 11.9 10 7.98 8.73 8.67 7.33 2.35 9.62 11.7 9.68 4.39 9.99 11 5.33 8.16 8.18 4.19 12.1 9.48 11.7 9.6 6.73 9 9.05 6.83 10.2 2.35 10.2 11.1 9.45 7.83 9.48 9.75 7.98 12.8 12.7 10.4 7.62 9.09 8.05 7.14 8.15 9.95 8.29 5.48 4.7 5.47 8.13 7.69 9.23 8.24 9.39 7.14 8.5 6.98 9.5 3.96 9.61 8.2 8.74 7.68 11.1 4.51 2.22 11.4 6.48 10.2 7.12 6.87 8.78 9.46 9.86 2.47 10.2 8.16 8.49 9.76 9.72 11.9 9.18 9.28 10.3 8.51 8.79 8.99 9.22 10.5 3.34 8.43 11.7 9.05 9.58 8.38 6.92 8.63 3.92 11.1 6.55 9.32 5.6 6.65 7.55 4.54 10.4 8.38 10.9 4.3 8.08 7.1 7.93 3.58 7.78 7.42 5.24 9.19 8.93 9.88 9.22 10.2 8.92 9.83 11.3 11.3 13.3 8.1 9.07 10.3 8.04 10.8 8.5 13.5 11.8 10.3 2.79 9.87 2.79 8.01 1.94 7.9 11.9 1.9 11.7 11.9 6.23 4.85 8.96 9.41 10.4 10 6.88 9.09 9.24 7.82 9.74 10.6 10.3 4.98 1.71 4.46 0.93 4.23 5.5 1.24 7.76 2.97 5.62 5.73 8.12 3.4 4.39 4.89 5.12 6.92 4.43 2.79 3.63 11.3 9.43 1.9 7.73 4.85 2.97 1.9 7.12 8.88 9.02 9.77 11.1 4.85 6.62 4.04 9.58 0.93 11.1 6.79 4.89 2.69 2.88 8.24 5.42 7.03 5.28 5.94 6.14 2.22 9.63 8.07 2.35 3.87 4.49 9.4 7.65 6.59 8.3 0.54 8.65 7.1 0 5.11 6.95 7.39 2.59 9.66 11.6 6.29 6.26 0.54 4.4 7.32 0 10.4 0 11.3 3.68 6.8 10.2 4.26 10.3 7.09 7.23 8.61 2.22 4.75 9.25 10.3 10.1 10.8 11.1 4.8 1.9 8.54 5.66 7.71 3.92 7.97 11 12.3 6.21 9.67 10.2 9.78 12.2 5.45 8.17 10.6 10.6 10.2 7.95 9.88 9.69 9.85 9.19 8.54 8.17 5.02 10.4 8.37 9.85 9.66 11 8.54 6.14 8.7 8.66 3.63 9.42 5.29 8.83 10.6 10.8 11.4 9.95 10.9 8.32 7.44 8.57 11.1 2.83 9.56 6.96 10.2 7.84 8.02 10.4 11 11.4 10.6 6.53 2.79 7.42 9.12 8.3 7.83 8.87 5.31 6.18 10 11.6 10.6 8.48 10.8 9.09 9 10.1 9.06 10.2 10.9 8.92 9.15 9.02 9.4 9.97 9.23 10.4 10.7 10.2 9.62 11.5 0.54 12.3 4.78 12 8.83 10.8 11.4 12.2 8.49 10.7 9.82 9.77 12.4 11.1 1.5 8.24 1.5 3.96 8.3 11.3 9.11 10.6 10.7 7.39 10.8 9.58 10.2 8.47 13.8 9.37 10.8 10.3 6.45 9.02 3.34 12.5 9.15 6.97 13.8 10.1 8.73 12.5 1.9 8.97 12.4 10.2 11 10.2 9.39 2.69 11.8 8.08 12.4 12.8 10.4 10.9 12.2 11.4 9.66 10.3 6.83 10.9 10.7 10.3 9.53 12 9.26 9.83 10.8 9.67 11 11.8 12.6 12 12.5 11.5 7.71 2.69 1.24 10.8 11.3 11.8 13.1 6.43 13 2.07 12.3 11.5 12.6 8.44 9.58 10.1 1.9 1.71 2.69 1.24 0.54 2.07 0.93 3.5 11.9 2.83 0.93 0 5.3 11.6 11.2 7.81 9.56 5.97 3.78 11.2 8.66 8.01 9.68 9.86 7.42 3.58 3.92 10.2 10.3 3.13 9.04 7.67 7.86 10.5 10.7 9.96 10.8 11.6 9.01 8.69 12.7 11.2 8.67 13.6 7.15 9.85 9.97 12.2 7.23 11.3 8.51 9.74 7.91 13.2 9.45 9.81 7.39 12.2 11.6 8.11 10 9.86 3.13 10.4 4.19 0.93 4.51 11.1 6.05 8 2.07 3.87 1.24 10.1 9.5 3.05 9.42 7.53 9.32 9.68 8.39 7.17 11.8 6.65 10.4 11.5 11.5 9.51 10.3 9.27 9.1 6.73 8.79 5.08 1.24 12.9 11.9 11.5 11.3 13.2 8.95 9.32 11.3 5.62 1.5 9.36 9.38 9.06 11.2 8.76 8.89 7.22 8.09 7.1 6.01 5.17 8.82 10.5 7.54 10.4 1.71 4.51 7.79 9.77 1.24 0 11.6 3.72 11 9.15 6.59 6.43 10.8 8.39 9.54 8.31 7.63 9.01 1.9 11.3 8.63 9.28 10 9.72 10.9 8.23 10.5 9.84 8.52 10.7 1.5 2.47 9.15 8.54 8.65 5.36 10.6 10.6 8.63 6.35 11.5 10.2 7.97 9.77 6.91 4.68 9.49 14.5 7.28 6.93 10.8 1.71 8.65 8.7 2.59 9.98 5.97 8.79 7.42 8.57 8.83 8.59 9.52 10.5 7.54 10.4 7.91 12.4 6.74 10.8 5.14 9.73 10.8 8.47 7.24 8.15 3.96 11.2 9.93 0.54 11.3 7.66 8.85 10.1 4.78 12.5 1.5 8.99 11.5 11.5 10.4 12.4 7.14 4.49 9.19 5.06 8.85 7.19 1.24 10.6 10.2 10.7 10.5 7.99 8.5 13 12.1 12.9 2.07 9.95 10.6 10.9 9.41 13.2 9.21 9.41 10.4 10.1 9.04 1.9 12.8 11.4 7.29 10.3 7.81 8.18 16.1 11.8 7.23 7.01 10.4 10.6 7.85 10 10.3 9.79 6.72 10.2 15.5 12 8.21 7.25 5.26 6.14 10.5 12.1 10.1 12 5.6 11.8 10.6 6.2 5.91 7.13 9.96 11.8 1.24 12.3 9.41 11.7 11.3 7.22 3.2 10.8 10.5 8.28 10.1 9.27 10.1 12.1 7.2 10.3 12.7 8.42 10.8 0.54 13.5 11 10.5 9.97 13.4 13.2 9.95 10.3 10.8 10 15.6 1.07 13 8.27 10.1 13.8 9.38 9.27 8.58 9.05 6.8 8.86 12.5 1.24 12 11.3 10.2 5.76 10.3 5.91 3.34 2.07 6.88 7.89 7.01 5.57 2.59 3.4 10.5 9.38 11.6 9.37 10.5 3.2 9.62 10.1 11.1 9.14 9.83 12 11.4 10.2 10.4 11.8 9.33 8.48 8.23 7.1 7.62 5.68 11.1 7.53 4.08 12.7 4.7 7.13 11.6 8.8 9.65 3.52 4.26 4.94 5.79 6.66 3.2 10.9 7.11 4.39 7.47 9.95 10.1 3.87 8.96 0 3.52 7.88 12.7 7.21 7.82 1.24 7.06 6.13 6.95 0.54 9.26 0 11.1 7.97 6.2 4.04 4.68 10.4 5.31 2.22 13.3 4.08 6.76 1.9 4.33 0.54 2.47 5.97 8.22 5.21 9.92 3.68 1.24 10 5.08 8.16 4.91 6.76 5.72 4.04 0 2.88 4.75 6.58 6.79 6.23 18.1 3.13 6.97 1.24 5.51 5.94 5.08 0.93 7.32 11.9 7.61 5.06 8.47 2.22 5.89 13.2 6.02 6.4 0.93 8.7 11.2 4.04 0 4 9.05 6.95 9.59 5.38 5.15 0.93 7.68 8.22 0.54 10.1 7.37 7.87 7 8.11 7.58 5.87 4.68 10.9 2.07 10.7 2.47 12.3 2.79 13.6 15.1 12.6 6.61 10.6 10.6 10.1 9.58 10.6 11.7 9.75 7.17 9.73 11 10.7 11.4 2.07 11.3 10.4 11 9.23 9.72 10.8 11.1 10.4 10.9 8.2 8.9 0.93 4.36 11.4 5.41 10.5 5.69 10.5 8.02 10.9 11.1 6.69 5.98 8.89 9.49 9.16 9.88 10.7 10.3 3.52 11.1 5.04 11.6 11 11.6 10 10.8 10.8 9.45 10.2 11.3 9.67 1.24 10.6 10.3 9.07 8.6 11.3 11.1 9.63 10.4 9.82 8.97 11.3 12.9 12 10.3 10.2 10.4 12.7 10.9 6.29 3.73 9.93 10.9 13.1 14 8.47 4.9 7.5 5.81 2.97 8.73 7.58 8.32 2.59 4.36 9.25 11.2 12 8.64 10.3 12.1 10.5 9.55 8.78 9.97 9.08 9.73 11.1 9.68 8.89 2.88 5.21 8.34 1.24 2.88 8.72 2.69 5.17 4.16 4.54 4.33 2.22 9.4 7.35 2.22 13.4 2.79 3.2 1.34 3.34 7.1 9.63 5.83 10.1 2.79 11.6 8.91 5.79 8.96 7.33 10.2 11.9 8.71 9.33 10.2 12.1 8.24 12.7 12.2 12.2 14.7 8.49 12.1 12.5 4.68 13.2 7.92 9.72 8.24 6.55 9.32 8.97 5.28 9.5 5.91 12.6 7.51 8.78 6.84 7.09 7.78 6.46 7.59 6.75 6.92 7.89 10.7 8.77 8.38 10.5 8.02 8.57 5.89 8.84 9.54 8.8 6.2 8.88 8.23 7.21 7.44 8.17 8.66 7.22 6.66 8.14 8.91 1.9 7.01 7.45 8.67 8.34 9.14 9.79 6.07 3.74 9.1 2.88 6.19 8.75 8.54 1.24 4.43 5.53 5.95 3.01 11.4 7.2 1.71 3.87 4.04 2.88 2.97 3.46 8.46 8.89 5.44 7.37 6.72 6.28 7.24 6.59 7.62 8.83 8.36 6.71 8.92 8.25 9.56 5.1 11.3 10.6 9.41 9.63 5.42 5.08 6.97 0.54 9.86 6.22 10.8 8.16 6.59 5.42 6.01 3.34 6.93 8.43 7.36 9.33 3.2 7.26 8.69 7.53 7.11 8.4 7 10.2 7.9 7.65 7.88 8.93 11.4 6.38 7.96 9.48 4.91 4.54 12 10.2 6.29 7.86 5.99 7.87 3.05 7.6 6.02 5 5.9 8.01 7.37 8.55 5.04 7.99 4.26 7.66 7.51 4.46 11.9 9.43 10.3 12.9 8.69 12.2 7.79 12.9 5.76 12.4 8.84 10.8 10.3 4.8 11.5 10.3 9.92 7.79 11.1 9.67 11.9 7.25 5.99 4.43 13.7 11 10.1 4.49 8.98 10 10.5 8.74 9.43 10.6 11.8 12.2 8.83 4.68 10.3 3.58 9.87 9.67 5.82 6.26 7.93 10.7 10.3 6.04 8.71 1.5 4.82 7.65 10.3 5.15 11.3 10.7 8.4 9.94 8.89 9.08 9.43 10.9 9.3 0 9.56 10.6 7.47 8.05 6.79 9.64 8.31 4.23 13.3 10.7 6.89 9.75 8.84 9.83 8.62 8.66 10.4 6.93 9.39 10.9 7.95 10.6 7.41 9.68 12.3 9.08 9.58 7.5 9.22 8.13 10.8 9.25 9.08 5.83 7.2 8.55 11.4 6.6 7.38 10.6 7.48 8.82 9.92 9.03 11.7 10.2 10.4 5.98 10.2 9.35 7.95 8.4 6.83 9.9 9.15 9.75 13.1 9.19 9.95 10.1 10.9 9.69 5.68 8.43 7.28 11.3 11.7 6.52 9.17 11.3 11.9 9.64 8.16 11 6.01 9.88 8.66 8.31 7.93 10.1 8.73 9.67 10.7 9.23 12.2 9.31 7.74 0 7.78 8.82 12.3 10.5 11 6.72 5.7 10.8 6.1 8.64 7.68 7.69 8.18 12.1 8.63 9.36 2.35 11.6 12.5 9.31 9.99 12.6 9.87 8.3 7.25 6.02 8.99 2.47 2.69 0 10.4 6.88 9.81 8.6 6.9 7.56 7.19 7.69 8.1 3.68 8.03 7.54 4.26 5.26 6.77 11.5 9.55 8.52 3.83 9.84 7.93 10.7 3.27 3.4 5.12 0.94 10 8.39 6.06 3.92 9.09 10.7 9.46 8.07 8.51 9.44 12.4 8.07 7.11 11 11.9 9.54 9.82 9.75 9.59 9.32 8.22 6.41 8.8 11.5 11.3 6.06 9.14 4.57 7.16 5.73 8.94 8.09 10.2 5.41 9.01 9.2 6.59 9.19 10.2 7.24 7.18 2.22 8.85 6.39 8.11 9.36 8.7 8.49 6.59 9.23 9.72 9.07 10.8 7.71 9.86 11.8 5.08 8.51 10.9 8.1 6.05 9.16 11 11 7.86 11.3 4.8 8.5 8.86 6.75 9.2 7.39 7.36 8.62 9.95 9.64 4.08 9.21 8.65 8.89 9.41 9.97 7.18 9.42 9.09 9.52 9.32 9.95 8.28 6.11 8.43 9.35 13.3 8.52 8.71 8.82 8.85 8.47 10.2 5.36 8.33 10.3 8.92 9.19 8.83 9.56 7.27 11.3 8.3 9.58 7.44 9.29 7.8 10.2 10.8 11.4 9.55 11.2 2.69 7.21 10.6 6.56 9.58 8.55 8.67 8.54 8.04 7.79 8.03 9.75 7.01 7.3 2.88 3.55 7.44 6.74 9.24 7.71 3.63 10.7 1.5 9.64 9.91 8.44 8.39 7.65 8.94 8.62 5.48 8.54 7.51 10.7 10.4 8.18 10.3 5.6 9.38 4.08 8.65 10.6 7.26 8.99 4.3 6.84 4.54 12.3 8.82 5.02 7.85 10.4 9.01 11.9 10 8.68 8.25 9.59 7.65 7.53 3.27 9.4 5.08 7.52 7.84 6.02 10.3 8.22 10.1 4.91 8.76 7.54 7.93 7.89 6.96 9.54 5.75 5.44 6.09 5.51 5.51 7.9 8.9 8.63 6.93 9.22 7.52 9.17 7.37 10.6 13.1 5.97 9.54 7.82 6.04 7.02 5.17 8.16 8.02 5.92 10.2 8.26 2.97 8.52 9.7 0 5.81 7.46 1.24 7.21 3.46 6 7.61 5.53 3.73 8 7.99 8.76 10.8 4.51 6.59 8.78 8.13 10.6 7.55 9.67 8.75 6.07 8.87 9.84 6.85 7.7 9.78 8.43 10.3 15.8 9.55 6.99 10.2 10.6 10.3 6.38 7.86 8.37 7.16 7.77 10.5 9.51 11.6 9.31 6.46 3.2 7.42 8.91 7.66 6.59 8.05 7.83 9.7 8.04 0 9.97 6.18 4.16 5.64 6.74 8.92 3.68 12.2 1.9 10.8 8.23 2.35 11.2 9.37 1.5 8.85 6.77 6.71 10.1 4.08 10.3 8.97 4.78 8.76 6.24 9.43 6.37 8.56 9.61 5.77 7.09 6.64 7.86 8.19 11.5 4.49 5.98 10.5 8.74 8.11 7.91 8.9 8.27 7.68 6.79 9.78 9.3 2.69 7.13 3.4 10.9 5.5 3.92 7.37 10.8 8.58 8.52 7.31 6.42 8.08 10.4 10.1 8.73 8.96 9.42 9.14 10.6 8.8 9.77 10.9 8.98 10.5 7.95 9.35 5 2.22 2.35 4.87 7.32 8.02 8.52 8.12 2.66 5.21 3.63 0 7.6 10.1 12.8 4.3 7.28 6.27 5.95 6.67 3.46 9.42 7.99 6.99 6.69 7.34 9.17 8.32 5.95 9.62 9.04 6.37 9.05 10.3 10.2 9.99 7.57 9.25 8.79 11.1 9.65 7.84 13.5 7.33 10.3 7 7.17 10.2 6.36 7.66 10.1 7.07 8.59 7.39 9.58 9.97 9.59 9.31 9.66 7.23 9.54 9.78 9.13 6.22 8.5 10.1 10 9.68 10.2 9.98 9.07 9.51 6.65 10.9 9.32 10.2 8.98 12 7.37 8.45 10.3 10.6 6.28 11.2 10.5 5.53 7.46 3.2 8.53 9.94 9.43 6.13 9 6.44 6.7 10.7 9.39 10.3 10.9 9.38 2.88 11.9 8.76 5.51 7.85 11.4 10.1 5.68 7.68 10.9 8.95 10.1 9.95 11.9 6.67 6.95 5.29 8.18 8.05 10 5 5.36 4.68 8.86 7.75 9.09 9.31 5.99 4.16 3.78 11 4.73 2.97 10.5 9.69 5.81 9.38 7.96 10.6 7.09 9.01 11.3 8.67 1.24 10.4 7.01 9.58 8.88 5.6 11 11.3 13.4 8.85 7.33 9.51 10.9 6.39 10.5 5.36 5.08 9.21 9 6.44 11.9 8.66 11.7 3.27 12.1 6.83 0.93 5.04 7.95 7.62 6.82 8.69 4.16 5.81 4.81 7.44 6.91 11.1 9.27 6.92 10.8 9.85 7.72 7.64 10.7 7.99 11.1 12.8 10.4 12 10.8 12 7.76 9.14 7.61 7.1 8.81 5.74 10.3 10.5 11.4 7.5 9.15 6.64 11.4 9.83 9.64 10.9 8.85 9.56 4.93 3.27 5.38 3.69 9.98 7.9 8.81 9.74 4.33 3.68 11.3 14.2 7.79 4.57 4.43 7.67 7.14 6.65 9.38 9.59 13.4 11.3 14.7 3.52 8.21 5.14 2.35 2.79 10.5 11.8 10.7 5.54 3.87 11 10.9 8.92 9.04 0.93 8.59 3.2 6.56 12.7 4.78 9.61 10 8.73 11.3 9.72 5.74 8.72 9.75 8.11 10.5 6.24 10.2 10.3 9.09 8.34 8.62 9.64 9.44 11.2 9.75 9.67 13.1 0 7.94 7.45 8.86 8.71 8.47 9.35 7.77 8.3 9.52 2.79 7.32 11.9 9.84 10.6 10 9 9.85 8.39 7.13 10.6 10 8.58 1.5 7.39 11.9 11.5 8.22 6.9 10.9 7.15 9.12 10.7 6.43 10.7 11 12.7 11.9 11.9 8.65 7.49 8.97 11 1.5 9.82 8.44 2.59 10.4 9.07 6.65 8.96 7.43 9.24 6.45 7.66 4.68 10.8 8.14 7.92 8.54 7.22 9.34 9.87 5.87 9.56 3.47 10.8 7.17 10.2 11.8 6.54 10.1 8.85 12.4 9.07 9.24 9.63 10.8 9.58 8.74 0 9.4 9.18 4.33 9.53 9.29 7.52 9.46 1.9 6.23 5.91 10.2 8.75 4.04 10.2 10.4 8.12 10.8 13.7 9.84 10.6 6.44 12 9.05 2.47 9.2 8.79 10 7.91 13.5 6.97 10.3 11 13.9 9.43 11.4 10.7 9.02 13.7 9.98 7.84 10.2 8.3 8.88 9.63 0.93 10.4 0.93 11.5 11.2 9.84 5.53 7.7 0.54 10.7 11.2 11.7 10.1 7.61 13 9.59 11.3 7.71 10.2 8.87 7.05 7.81 12.9 5.02 9.04 8.44 9.85 8.37 7.65 5.75 0.93 10 2.97 0.93 0.54 9.34 2.97 8.41 3.2 3.46 9.16 9.33 1.24 3.13 4.23 8.82 0.54 0.54 7.57 3.2 10.4 12.9 10.6 8.31 6.84 4.33 2.07 5.33 9.98 8.58 0 8.24 7.92 8.48 7.65 6.58 6.75 5.08 8.24 7.5 8.2 0.93 7.34 10.8 10.3 7.93 9.65 0 4.12 0.93 6.01 6.16 0 7.1 8.36 8.68 8.17 8.85 10 8.95 0 8.66 0.54 4.04 0 0.54 10.3 7.08 5.84 9.82 7.83 6.31 8.2 9.26 1.24 7.54 10.8 12 9.4 7.76 0.54 3.92 8.91 12 9.66 0.93 7.99 11.4 9.27 7.28 6.67 6.86 0 3.92 10.7 0 7.14 11.2 9.65 1.5 5.36 10.7 9.31 7.22 9.94 10.1 1.71 0.54 11.2 10.9 7.5 8.11 10.3 8.95 5.29 10.6 9.82 11.6 6.64 3.96 0.93 8.15 4.6 6.31 10.1 9.92 9.14 7.48 9.57 10.1 5.55 6.08 7.47 10.3 9.37 9.29 4.16 6.61 8.4 9.02 5.04 4.55 9.03 4.85 5.82 10.8 6.8 6.68 9.89 11.1 8.89 9.79 5.86 4.16 9.38 5.26 9.92 0.54 6.41 1.5 7.3 3.13 2.97 4.04 3.34 9.32 10.5 9.87 5.73 9.12 11.7 7.51 10.7 11.6 6.52 10.3 9.78 8.51 9.01 5.31 6.71 4.89 6.68 1.24 8.63 10.6 9.43 8.21 4.3 10.8 12.5 6.8 9.22 8.72 9.02 5.7 5.99 0 10.4 10.1 8.32 9.63 9.97 9.53 9.15 10.7 10 2.35 7.63 5.1 7.85 9.07 6.24 8.22 11.2 8.55 2.35 8.46 9.87 9.7 8.42 8.31 14.5 3.87 5.51 0.54 3.83 6.41 6.81 9.92 10.9 8.4 9.32 5.06 6.58 7.74 9.53 2.07 9.88 4.68 6.96 10.3 8.75 7.74 7.1 9.25 7.72 8.6 7.18 9.26 8.28 7.22 7.85 7.83 9.06 7.17 7.69 6.76 6.95 5.6 9.22 10.4 9.56 9.28 7.81 9.8 6.87 9.75 8.48 11.8 9.83 8.31 10.7 10.2 7.04 8.62 8.41 5.93 9.35 9.81 9.43 7.21 8.48 9.61 9.87 6.61 2.47 6.22 9.25 10.4 10.3 2.59 8.95 7.24 7.1 3.4 4.91 5.34 9.38 4.89 7.62 6.54 8.67 7.3 7.36 4.57 4.51 8.43 12.5 12 7.67 8.07 11.1 8.25 10.4 9.38 9.29 9.82 9.91 2.22 11.8 7.17 6.01 6.37 7.83 10.3 10 5.54 8.54 8.63 8.14 9.41 10.5 8.13 9.89 9.2 8.45 9.65 8.48 9.53 8.12 11.3 9.31 9.03 8.93 7.55 8.69 8.32 3.73 8.6 11.9 8.91 5.58 10 7.22 8.14 8.91 10.2 11 7.81 9.05 3.63 7.39 10.4 8.96 8.81 6.81 8.95 9.74 10.2 10.7 6.2 4.12 6.57 10 9.19 8.75 8.51 10.1 7.83 10.5 9.16 7.19 9.82 7.95 7.88 9.28 9.98 7.17 7.28 8.09 8.15 9.25 10.2 3.87 8.39 7.84 7.51 10.1 4.04 9.68 9.02 9.98 9.47 9.81 6.82 8.29 8.89 10.2 1.5 8.85 10.9 9.23 7.63 10.4 7.45 9.13 2.47 9.94 3.78 11.4 10.6 9.92 8.69 8.73 8.85 5.34 6.62 10.5 7.7 10.4 10.7 6.93 11.6 6.94 7.75 9.07 8.99 7.88 6.44 7.68 5.95 8.44 8.28 9.36 9.32 5.99 4.23 5.8 7.59 10.1 8.31 10.4 8.96 4.23 7.28 11 9.55 10.3 6.74 10.2 5.73 5.87 5.04 10.4 7.83 9.61 6.24 11.8 7.87 5.42 9.16 11 6.12 10.1 6.3 8.29 10.3 5.98 8.51 7.88 9.55 5.62 7.4 8.39 2.59 11.1 8.02 10.3 7.65 9.02 8.08 4.19 9.86 9.86 9 4.3 6.4 1.5 9.02 6.25 6.72 4.85 12.2 10.2 8.26 6.51 3.87 6.35 10 9.98 6.44 7.04 9.84 12 4.49 2.35 0.93 3.63 9.84 10.5 10.1 10.1 10.6 6.63 8.9 2.88 9.5 4.75 1.76 9.34 9.23 10.9 5.58 6.43 7 7.02 1.71 4.98 2.88 11.2 7.95 1.71 5.06 8.57 9.82 7.1 8 2.07 10.2 9.18 6.63 6.55 11.6 9.98 12.1 7.43 6.1 1.71 11.8 9.69 8.15 6.15 8.29 7.76 10.8 7.23 5.02 8.24 7.03 5.12 6.93 7.87 9.32 12.6 8.16 8.46 6.71 9.33 8.82 8.32 6.8 7.43 7.03 7.42 9.23 9.46 8.38 5.31 4.26 3.58 7.46 11.2 9.64 7.69 8.22 10.9 6.82 9.19 9.47 6.22 6.34 9.68 10.3 5.33 7.31 0 4.43 8.89 4.65 7.9 4.8 8.74 7.55 9.08 9.47 7.67 9.17 9.31 8.97 6.56 4.89 1.71 7.01 8.19 12 9.5 7.42 10.7 8.27 9.92 10 11.3 9.59 8.62 0.54 7.14 10.4 6.09 9.41 10.2 10.2 8.38 9.11 10.1 5.87 10.5 8.21 7.67 8.34 9.81 8.6 9.44 10.6 6.81 7.94 8.2 9.08 5.68 8.74 9.14 10.5 4.51 6.18 8.22 9.54 7.81 8.43 10.1 8.91 2.07 7.92 8.3 8.97 9.35 9.29 9.86 9.49 7.86 9.76 4.33 9.6 8.01 1.5 9.22 8.72 7.05 7.89 9.56 9.45 8.01 9.34 6.97 10 9.01 8.31 11.6 8.29 9.14 5.39 7.51 9.25 8.37 9.63 6.28 6.25 6.83 8.75 9.47 9.79 8.62 6.83 10.2 8.51 2.07 5.88 10.8 8.91 9.37 11.3 6.22 2.97 10.3 10 9.34 6.95 10.3 4.91 5.41 9.98 0.54 7.73 7.82 9.44 10.1 7.26 8.47 10.6 9.2 8.26 7.55 9.04 9.77 10.5 7.8 8.12 9.09 11.1 10.7 8.99 6.77 6.6 9.74 5.77 5.39 9.59 9.16 11.2 9.37 3.46 9.17 0.93 10.1 10.2 7.47 10.8 4.39 0.54 6.58 0 8.25 8.5 11.6 8.42 9.33 1.4 7.83 3.13 3.63 9.21 6.51 9.88 4.23 8.54 10.2 8.92 7.45 9.85 8.3 9.4 3.05 8.54 7.22 6.87 10.4 11.3 10.6 11 7.5 10.2 9.47 9.9 3.4 7.13 8.01 2.07 7.5 10.3 1.24 10.8 9.17 9.41 7.35 8.26 9 10.6 9.04 10.9 7.02 10.6 8.93 9.52 9.46 5.31 12.6 8.97 7.21 8.01 9.79 7.96 9.74 8.87 8.29 9.66 9.68 6.67 4.84 9.8 10.3 4.43 5.75 8.48 2.88 2.88 3.87 8.78 2.06 4.3 12.5 7.97 8.53 6.79 2.79 10.9 8.64 10.6 10.3 9.92 6.87 12.2 12.3 9.9 9.52 10.2 10.2 11 8.87 10.9 10.1 9.79 9.96 6.03 8.7 10.2 8.18 9.73 8.17 4.6 4.49 9.9 9.95 7.52 6.32 9.63 4.04 6.24 12 9.44 11.2 10.2 5.89 11.1 4.12 3.78 9.51 4.12 8.53 8.57 9.55 5.65 8.82 6.8 8.99 7.02 6.22 3.05 8.92 10.3 9.99 8.36 7.61 9.53 8.51 4.8 8.61 5.36 10.2 10.9 7.83 10.2 9.58 10 11.1 7.85 7.58 11.4 8.85 8.95 8.16 12.2 11.7 7.64 11.7 10.8 10.9 12.2 12 9.82 9.68 9.83 10.6 12 8.36 10.8 7.57 9.79 10.8 9.64 9.6 11.8 11.3 11 8.84 10.5 9.33 11.5 9.15 7.73 11.8 6.95 8.98 10.1 10.6 8.7 6.6 5.06 0 13.4 8.35 13.3 9.91 9.14 8.98 11.3 11.9 8.48 9.77 11.1 10.2 8.26 9.21 9.08 11.5 11.1 9.15 7.9 12.4 4.33 9.98 7.37 7.27 3.63 11.4 9.19 11.3 8.36 3.92 1.9 2.35 10 12.2 11.4 18.4 8.68 11.7 12.6 11.8 11.2 9.74 6.55 9.53 10.3 8.98 11 9.83 7.35 7.01 5.82 11.2 7.35 2.35 6.58 2.97 7.77 6.75 8.24 7.89 10.3 7.55 7.55 9.58 2.47 5.97 10.6 10.1 9.62 11.2 10.3 4.73 6.52 1.9 4.89 10.1 8.26 4.85 11.3 10.5 4.16 10.7 6.63 4.23 7.81 2.69 10.2 1.9 12.3 9.5 11.6 6.72 8.52 7.33 9.49 8.87 8.67 6.96 11.4 0.54 7.35 6.5 10.1 6.14 4.26 9.48 11.1 7.32 7.25 12.5 9.06 6.34 9.68 4.7 8.46 11.3 2.69 8.59 10.8 6.36 10.1 9.37 8.7 10.3 10.9 7.74 9.71 10.7 9.32 5.99 5.73 8.45 14.4 10.8 10.1 10.6 9.34 9.17 9.03 10.3 11.9 11.3 9.35 9.86 8.23 9.09 10.1 10.6 12.2 10.2 11.5 8.96 10.5 0.93 8.29 2.07 10.8 8.33 11.2 10.4 4.73 2.59 9.25 8.27 4.68 7.13 9.33 1.9 9.46 9.05 9.07 10.6 9.69 9.83 2.9 3.78 3.81 9.55 9.68 10.6 8.81 9.93 6.37 9.14 9.78 9.3 9.33 6.84 12.2 8.87 11.7 0.93 0.93 3.52 11.3 5.04 2.88 10.9 9.87 10.4 7.14 5.74 10.3 8.62 7.68 4.85 10 10.8 7.05 5.97 5.29 3.78 3.13 4.46 10.1 8.37 9.64 10.3 10.6 8.13 8.9 4.16 10.4 6.93 9.24 5.71 2.38 5.24 1.94 3.73 7.13 0.95 7.47 10.8 9.2 9.56 13.2 10.4 12.1 7.9 0.54 10.3 10.6 11.9 9.55 10.4 8.34 10.1 8.03 8.65 5.68 9.42 7.85 9.93 9.84 11.1 2.79 6.2 4.49 8.71 7.03 9.83 7.83 2.88 9.86 9.2 10.2 1.24 10.7 7.54 7.6 5.24 5.86 7.34 9.12 12.2 9.73 8.56 8.95 9.83 7.8 11.3 8.3 1.5 9.2 10.8 6 1.71 5.77 3.2 8 11.1 9.35 0 8.14 6.57 8.99 4.23 3.52 10.7 9.58 7.29 8.65 10.8 8.97 4.75 5.54 8.7 8.95 6.94 7.89 5.28 6.94 5.23 6.88 8.25 9.49 6.06 9.96 7.74 5.98 9.53 9.39 9.2 10.4 8.06 7.39 6.84 9.51 11 9.81 9.58 11.6 7.87 8.76 6.77 4.73 9.63 2.97 10.6 10 9.75 7.99 6.37 9.41 7.48 12.4 10.3 9.02 7.57 8.26 9.8 8.84 8.86 10.7 6.29 10.1 10.3 6.98 8.55 1.71 3.7 8.55 5.97 11.2 10.4 7.94 7.57 6.42 8.26 8.32 8.18 11.3 7.55 8.1 4.6 7.08 9.26 3.58 11.1 7.5 9.09 9.48 5.54 6.77 5.81 8.86 5.62 10.2 7.45 8.72 12.4 5.06 9.08 9.28 7.62 8.28 9.74 10.8 8.61 12.8 11 7.8 7.95 5.99 8.95 5.19 11.5 10.8 10.9 10.5 9.21 6.97 9.41 9.34 8.36 5.42 9.52 6.41 9.69 6.27 10.7 11 10.3 10.1 9.1 9.7 9.4 6.44 11.7 5.84 9.27 9.66 7.52 9.89 5.16 6.2 9.56 10.4 9.35 9.74 7.07 6.61 4.89 9.1 12 7.35 8.22 8.21 7.69 2.22 4.08 6.46 4.78 9.44 9.32 7.69 12.3 12.9 7.33 10.6 9.54 6.74 8.92 8.9 7.71 12 9.6 7.91 5.17 11.1 11.4 11.7 10.1 10.4 11 1.71 8.02 7.85 9.54 10.1 1.71 8.51 8.13 8.1 9.96 8.79 11.8 9.79 6.14 8.98 9.14 10.4 9.59 5.45 9.19 6.72 6.63 7.99 13.2 6.22 9.83 5.73 1.5 9.38 11.4 7.98 9.11 4.49 8.95 7.27 8.34 4.46 9.19 6.54 9.32 9.9 6.72 9.05 10.2 10.6 4.94 10.3 8.8 8.01 9.36 2.69 9.23 5.92 7.27 0 8.62 7.3 10.1 8.03 7.54 11.7 7.65 10.4 14.6 7.35 9.96 10.7 7.37 7.79 5.36 9 8.08 4.12 4.54 5.91 10.3 10 6.5 8.07 5.83 3.73 10.6 10.1 8.48 9.67 8.7 11.9 7.37 3.87 11.4 5.26 8.13 8.57 10.4 8.76 7.93 8.55 8.49 8.57 7.84 6.69 9.97 10.3 5.91 7.1 9.37 4.68 6.46 6.34 8.87 0 10.2 5.1 8.81 9.26 7.41 4.26 5.1 8.8 11.1 5.33 8.99 8.42 7.47 9.79 10.2 10.2 9.41 8.35 8.88 11.4 9.11 5.28 8.08 7.05 8.86 7.89 7.84 7.35 10.7 8.34 11.6 8.25 10.1 5.48 9.06 9.77 11 10 10.9 2.69 9.42 11.2 1.9 8.12 1.24 8.37 8.53 7.91 8.37 5.81 2.07 7.45 6.59 4.89 9.84 0 2.47 8.78 11.6 14.9 11.1 11.1 8.05 9.16 9.35 7.51 7.56 7.8 6.59 11.5 9.52 11.4 2.47 6.8 9.78 8.47 7.81 9.41 8.47 3.34 7.55 9.93 4.54 10.5 11.1 7.93 1.71 11.4 7.41 6.14 7.65 9.04 8.07 9.84 9.49 8.29 7.94 10 8.19 5.35 8.63 9.45 5.33 10.4 10.2 12 8.49 10.5 9.9 10.3 6.6 10.3 8.11 10.9 8.03 9.2 2.59 9.3 9.71 10.8 8.49 10.2 7.55 10.2 11.7 10.2 8.82 4.3 12.2 13.6 8.34 3.78 10.1 9.84 3.4 10.1 10.8 9.5 12.6 10.9 4.85 8.99 8.82 6.85 7.58 8.79 4.73 11.1 11.1 6.91 7.02 9.3 8.18 7.59 7.42 12.6 0.54 4.16 6.85 8.86 10.1 6.59 3.68 9.29 6.04 11.4 8.9 7.16 9.72 8.79 8.44 8.24 10.5 5.57 5.54 9.02 9.32 8.47 10.3 8.19 11.2 9.08 10.7 9.8 7.72 11.4 8.79 9.05 9.54 7.52 8.67 8.72 5.5 10.8 7.58 2.88 10.8 9.33 9.26 11.2 7.68 9.63 11.1 9.95 2.13 11 9.27 11.3 6.15 1.24 10.7 12.8 1.24 11.9 7.24 9.61 6.87 10.6 0.93 6.62 0 9.49 7.59 7.2 7.48 9.86 11 8.9 0 12.4 8.11 9.64 8.4 4.65 8.06 9.62 4.04 5.17 2.71 9.72 10.1 8.73 9.98 6.58 10.4 7.14 8.83 7.03 12.3 10.1 2.22 6.09 10.4 2.69 9.79 0.8 5.9 0.93 9.01 0 10.7 7.54 9.48 5.33 7.18 8.17 11.1 0 5.58 4.36 8.68 8.66 7.1 9.79 10.4 6.89 9.67 7.32 6.13 8.3 11.5 4.78 11.2 3.92 6.63 9.2 10.2 7.8 10.2 9.19 2.97 9.23 8.3 5.15 9.33 9.94 12 9.44 9.27 8.65 8.19 8.79 8.39 8.39 10.2 1.71 10.6 11.7 2.97 11.4 8.14 8.32 5.34 9 6.88 11.3 8.71 7.96 11.6 8.96 2.35 5.83 7.58 7.52 8.74 0.93 9.12 5.17 8.94 8.2 7.26 7.3 10.2 13.8 10.5 7.2 11.1 7.06 7.72 9.43 7.29 9.87 9.18 6.05 7.09 8.88 4.98 8.94 9.4 6.07 10.5 10.1 2.79 8.09 9.36 10.8 6.66 10.1 9.61 8.84 15.6 8.59 7.98 8.34 4.73 6.69 7.44 6.03 6.51 7.54 9.62 9.58 10.6 7.65 6.22 8.6 7.37 2.22 9.14 12.4 12.1 9.14 8.61 6.6 6.63 10.1 9.37 10 9.3 6.47 0 12.6 10.4 11.5 7.7 7.13 11.6 8.08 9.41 10.8 9.51 10.5 9.89 13.1 9.72 10.4 5.76 12.2 8.04 8.6 9.51 8.71 9.71 12.1 11.3 5.42 10 9.37 2.69 10.5 8.34 14.5 11.4 10.9 10.5 9.42 8.8 10.2 12.3 9.72 9.57 10.3 7.75 9.21 11.9 10.8 10.6 8.06 9.37 8.19 9.42 7.96 7.9 9.13 11.3 8.98 8.99 10.3 8.8 8.72 11.9 7.84 7.31 9.1 11.4 9.99 5.62 8.22 11.2 9.82 3.2 13.1 10.8 13.2 9.06 10.3 9.66 7.9 12.3 8.08 10.4 12.5 10.1 8.56 11.2 9 8.58 12 6.06 5.15 1.5 10.4 9.25 8.9 12.1 4.36 2.07 11.6 9.6 6.21 7.99 9.44 8.6 11.7 12.1 11.7 8.85 10 9.55 9.6 9.13 7.9 9.46 10.1 9.93 9.27 8.82 8.43 9.71 8.83 7.41 10.2 13.9 16.4 7.26 10.6 11.3 8.68 10.3 6.54 10.7 14.3 9.86 2.59 11.8 9.62 9.15 8.52 8.96 8.42 9.17 9.92 12.5 8.06 10.5 10.6 10.3 11.9 10.8 6.26 10.1 11.9 7.69 10.8 8.58 9.33 10.2 12 9.09 9.76 11.1 4.12 6.4 5.08 7.87 10.9 9.31 11.8 9.04 3.2 8.22 3.96 12 7.23 9.88 9.72 9.13 4.16 8.86 5.88 7.71 8.34 17.3 4.88 5.26 9.55 11.9 10 10.3 9.53 10 9.04 9.79 8.72 9.73 7.71 9.09 11.1 6.59 10.2 10.4 7.93 12.9 9.99 9.81 8.82 10.9 7.57 10.5 8.8 13 7.75 6.57 6.96 7.5 8.37 11 8.51 12.2 6.56 13.1 10.4 9.97 9.54 11.2 7.91 7.9 13.5 9.4 9.44 11 10.9 10.4 10.6 11.3 10 10.1 7.15 11.6 9.3 12 9.23 11.4 10.4 7.64 7.91 8.59 10.3 9.76 11 9.71 10.5 10.3 3.68 10.1 11.2 6.77 9.4 12.6 11.3 10.6 10.3 9.62 0 11.9 8.96 9.98 11.8 9.47 10.3 7.68 10.7 11.4 8.72 10.6 9.67 7.68 7.78 7.84 10.3 6.71 10.2 5.44 9.15 10.5 8.74 3.87 8.09 7.65 6.85 7.63 9.26 10.6 6.39 7.98 10.5 7.49 8.04 9.78 9.27 4.57 9.49 8.53 9 8.9 9.22 8.9 6.66 9.68 9.28 9.86 7.1 9.39 10.6 6.08 7.59 9.18 11.2 10.3 9.43 11.1 9.8 11 9.61 9.87 9.96 11.5 10.5 10.2 9.34 7.5 10.4 9.07 11.3 9.06 10 7.93 11 10.2 11 4.6 8.14 11.1 8.96 8.78 10.2 11 3.68 8.21 5.68 7.51 11.5 10.3 9.42 11.4 10 9.99 11.5 10.3 9.56 8.46 6.26 9.71 10.3 9.44 7.27 9.73 10.7 12.2 6.83 12.5 10.6 9.98 9.94 8.34 10.4 11.1 6.89 11.2 5.71 9.92 8.66 4.96 9.83 11 8.33 8.84 10.6 10.6 6.81 6.42 6.16 9.23 7.39 7.91 12.8 8.7 6.6 10.5 2.07 4.33 7.41 8.61 9.88 9.38 8.91 14.9 8.99 3.13 5.41 11.2 9.14 10.4 10.1 2.97 10 9.56 8.8 7.65 10.4 12.9 10.8 8.19 8.01 8.51 11.4 9.89 10.8 13.7 9.31 11.4 3.78 12.9 8.05 10.4
-TCGA-N6-A4VF-01 7.31 8.68 9.09 7.75 6.21 8.86 4.79 3.62 3.86 2.25 4.1 6.97 5.66 4.15 5.86 8.97 9.75 10.7 7.34 9.78 8.15 10.7 9.51 3.57 9.91 7.99 3.53 10.2 4.88 8 4.83 6.37 5.81 1.63 4.18 0 1.63 6.83 2.12 3.46 6.45 3.62 7.43 1.17 6.06 2.37 0 3.41 11.6 7.02 3.46 6.15 7.2 10.6 5.14 1.63 5.78 2.25 6.69 5.54 7.4 5.27 6.86 7.8 2.25 2.12 7.33 8.64 10.4 3.35 4.7 4.76 1.63 0 1.81 4.08 5.09 4.92 2.77 0.88 6.19 1.97 6.97 7.26 4.08 3.02 6.45 7.71 0.5 2.48 9.18 3.09 7.09 6.59 2.83 3.57 1.42 0.5 4.84 2.86 2.12 2.86 3.46 4.08 0 3.16 6.95 9.13 8.37 4.04 1.63 0.88 8.36 6.33 6.56 1.63 1.69 3.84 7.94 4.37 2.37 5.22 1.17 4.58 0 6.69 0.5 1.17 2.25 13.8 2.64 3.57 4 7.38 3.96 0.5 4.21 0.5 3.23 8.11 7.99 10.2 0.88 2.68 4.88 11.3 0 11 1.63 1.63 5.04 0 7.98 10 11.2 3.52 4.31 2.1 10.3 6.27 6.85 5.16 2.86 0 8.87 6.7 6.26 4.9 9.55 1.42 10.3 9.61 2.12 5.24 3.29 2.59 3.57 6.95 6.26 5.02 4.7 8.85 3.29 2.94 4.68 1.97 2.59 1.42 9.16 4.42 8.9 11.4 4.04 4.24 3.88 7.39 4.5 9.65 9.46 7.38 8.47 8.23 8.96 10 10.3 6.07 8.57 10.3 11.1 11.1 10 9.53 11.3 11.8 10.1 8.95 8.67 10.6 9 11 8.9 8.72 11.1 10.7 9.12 9.04 4.28 10.2 9.31 12.4 8 3.67 9.75 10.4 9.43 9.47 10.3 5.67 9.45 3.09 11.9 8.53 12.7 12.1 12 12.5 12.2 13 6.27 12.5 7.63 7.28 7.73 9.92 9.52 11.1 9.95 11.6 0.5 12.4 3.35 9.67 11.2 10.2 8.55 10.1 9.64 10.2 11.6 10.9 9.11 7.23 9.47 9.02 11 8.23 2.25 13.5 10.2 10.2 11.6 10.3 10.8 8.13 9.82 9.83 10.1 9.47 11.8 10.3 7.08 6.4 9.18 7.54 10.7 9.99 8.76 13.4 8.8 9.06 4.39 12.2 10.6 8.89 9.8 11.6 3.67 9.79 8.2 9.04 13.6 10.6 7.13 7.95 6.6 11.6 10.1 5.94 9.05 7 10.4 10.9 10.4 10.6 9.61 10.9 12 9.14 9.81 9.37 9.47 8.05 11.2 8.1 9.94 9.98 9.77 8.3 7.52 11.4 11 9.8 8.59 8.74 8.33 12.9 9.95 8.76 11.7 10.6 10.5 3.47 9.56 8.66 6.64 8.95 9.92 8.71 3.02 6.96 8 11 11 11.1 7.99 6.91 9.59 6.58 9.47 12.2 7.38 11.9 10.2 11.7 10.2 7.48 8.47 10.6 4.94 8 9.17 9.97 9.18 9.92 10.2 11 6.98 9.18 7.69 9.46 8.22 8.29 11.2 8.18 7.87 11.4 10.8 6.5 9.81 7.41 10.3 10.8 10.8 9.08 7.27 10.3 9.51 10.8 10.3 9.54 5.35 11.2 10.4 9.91 9.33 11.2 9.42 10.1 9.04 8.89 9.78 10.4 7.41 11.3 7.77 10.3 9.88 10.8 3.67 10.2 10.6 13.2 7.69 9.04 5.61 6.7 8 8 10.2 9.55 10.2 11.6 10.2 3.22 11.5 8.17 7.82 8.95 1.97 9.08 6.72 7.76 7.34 11.6 8.87 8.28 8.67 11 3.57 4.68 9.56 10.7 11.3 2.37 10.2 7.34 4.21 5.05 6.23 8.65 8.1 8.85 9.12 6.24 10.7 10 8.64 9.83 9.9 9.28 15.4 11.1 4.16 9.64 11.8 6.73 13.7 10 8.75 3.62 6.93 9.15 9.16 8.91 12.5 7.97 6.64 9.74 8.03 11.5 11.2 14.4 8.89 9.65 8.37 11.5 6.9 9.49 9.99 13.9 1.42 12 5.22 13.8 7.31 10.8 11.2 11.5 11.6 10.6 7.73 10.4 10 10.2 10.2 10.4 8.47 9.36 9.94 9.65 10.1 10.4 10.3 8.33 8.84 12 7.96 6.84 10.9 9.57 10.8 10.4 7.77 11 9.39 1.81 9.76 9.84 10.3 9.57 9.98 10.8 11.8 9.3 10.3 11.5 9.12 9.11 10.6 7.69 8.93 10.4 11.3 6.87 9.51 9.36 9.43 8.95 10.6 11.3 9.23 11.5 11.5 8.89 9.35 11.3 10.9 10.7 11.7 1.63 12.6 10.1 11.2 10.4 12.2 12.5 12.3 11 8.28 9.14 10.8 8.39 0 9.71 10.1 8.95 8.53 9.7 10 9.77 10.5 10.6 10.8 12.1 4.21 7.43 11.1 8.28 7.98 12.4 9.93 10.8 9.53 12.7 10.4 11.5 11.4 7.56 1.81 10.9 9.74 8.49 9.78 11.1 10.2 7.56 9.44 10.1 11.3 11.4 10.3 9.77 11.1 11.3 11.7 7.93 12.3 8.53 11.2 9.92 8.71 7.87 10.3 9.04 11.7 7.65 10.2 9.76 9.25 9.43 10.2 5.61 10.8 8.76 9.81 7.64 11 10.1 12.5 11.8 11.9 12.9 6.14 8.8 8.15 8.68 11.4 9.66 0.5 8.38 8.04 10.7 11.4 9.11 10.4 12.9 1.63 7.76 11.6 7.84 9.71 9.79 7.02 10.4 11.7 9.44 11.8 11 9.76 10.8 7.95 9.6 10.5 10.6 10.7 9.42 11.9 9.36 6.98 8.34 5.94 9.15 11.8 9.32 12.3 12.7 8.52 12.1 13.9 11.8 2.37 9.06 8.47 9.07 5.37 7.4 10.7 8.5 7.18 7.36 10.5 6 9.42 10.7 12.3 10.1 8.61 12.4 10.8 8.78 7.84 0.88 7.3 10.3 6.21 7.85 8 6.53 10.9 9.36 10.8 6.48 7.66 4.39 9.79 9.65 7.12 4.39 6.36 12 7.8 0.5 4.79 11.9 11.6 5.81 8.59 8.74 6.64 9.38 10.4 9.59 5.51 8.66 14.7 7.41 10.9 11.1 9.67 11.9 12.9 9.84 11.1 7.99 8.52 6.22 11.1 7.06 4.75 0.5 5.61 9.68 9.4 9.94 1.42 9.19 8.46 3.09 3.76 11.7 12.4 9.31 5.36 10.7 9.6 4.75 9.98 11.7 12 10.5 10.2 11.2 11.1 10.1 10.9 8.23 9.3 11.2 9.6 7.19 9.12 7.67 9.85 7.2 11.2 9.84 9.46 7.94 5.21 6.19 10.4 7.57 0 5.56 13.7 9.94 0 3.93 9.03 9.17 12.1 9.24 7.6 6.02 8.89 5.49 5.36 7.77 9.14 5.19 8.9 9.11 9.53 2.59 6.92 2.12 10.4 8.94 5.87 11.2 8.2 8.99 6.52 11.4 12.3 5.36 8.16 3.76 6.29 9.75 10.1 11.2 9.71 10.5 8.82 6.19 7.83 6.89 10.5 0 6.44 8.24 9.73 5.47 1.63 11.5 1.81 8.85 8.5 10.9 1.42 9.98 9.89 11.7 10.1 3.8 9.43 10.6 7.82 11.3 9 10.4 10.4 10.1 8.77 1.81 7.96 3.16 12.2 10.1 13.6 1.63 11.7 10.4 11.2 11.2 12.2 8.3 9.29 11.9 10.8 9.64 2.25 12.2 2.12 11.1 2.94 10.8 10.3 7.41 0.88 10 11.6 12.1 11.1 9.74 10.3 12.9 10 12.3 11.2 10.7 10.8 10.4 13.3 11.3 12.9 12.4 12.2 10.1 11.9 9.85 8.04 9.1 10.2 13.3 13 13.1 9.95 8.45 10.8 8.1 10.9 12 8.63 9.83 12 6.92 11.3 10.4 10.9 11 9.01 3.67 12.5 6.75 9.86 6.27 10.2 10.2 7.94 10.2 8.87 7.75 2.47 3.02 9.86 9.57 9.47 12.4 9.61 10.3 9.33 9.71 7.4 7.78 8.8 10.2 8.08 3.76 7.27 0.5 4.56 10.4 10.9 7.26 12.5 6.46 8.09 10.2 9.11 9.48 7.65 9.3 5.82 9.5 11.1 9.59 10.9 11 10.5 9.57 11.1 10.2 10.6 9.84 7.18 2.77 9.28 10.7 9.05 10.6 8.77 6.66 12.6 10.2 9.39 9.89 7.27 3.84 10.7 11.2 12.8 8.29 7.08 10.5 10.1 8.39 3.76 9.96 9.25 10.6 8.56 12.2 8.85 12.7 5.96 9.02 9.16 8.79 5.4 9.5 8.6 9.48 9.48 8.8 13.1 9.79 9.79 10.9 9.49 6.83 9.83 4.45 8.92 8.17 8.75 7.84 10 2.25 8.4 8.39 9.77 2.25 9.92 9.75 4.45 11.6 10.4 10 2.59 8.62 7.67 7.8 2.37 6.86 11.4 10 6.24 6.59 5.36 9.18 8.48 8.64 9.12 7.59 10.6 10.5 6.04 10.1 9.33 9.12 14.6 11.4 9.39 6.57 10.1 11.3 10.8 6.11 10.2 10.3 9.5 8.66 5.21 11.8 7.79 9.96 8.13 5.28 9.67 8.27 11.1 4.56 9.16 10.2 8.42 8.36 10.3 9.58 12.2 9.68 7.4 8.06 8.3 2.86 8.21 10.1 7.51 10.9 8.9 8.41 9.41 8.83 1.17 9.52 8.29 10.9 2.86 13.5 8.54 6.37 7.86 9.21 10.4 11.6 7.33 9.17 8.98 9.63 8.72 7.74 10.9 10.1 7.84 6.46 10.4 10.1 7.45 7.27 9.46 5.5 6.99 7.58 10.1 8 10.8 0.5 3.67 9.2 11.4 8.98 10 10.1 9.03 7.14 10.7 8.22 10.7 7.38 9.96 6.92 7.62 8.23 10.7 9.28 10 5.72 5.53 4.18 7.34 11 8.56 8.62 9.02 3.71 10.6 8.74 10.8 8.46 6 2.77 8.4 2.59 10.7 9.45 8.48 5.66 10.2 8.88 7.72 10.5 10.7 10 9.76 7.93 9.08 9.01 8.65 8.32 11 1.17 10.6 6.88 10.9 9.84 8.3 8.91 12.4 4.15 11.9 8.33 3.46 11.1 5.27 4.75 10.2 8.66 1.97 9.31 11.2 9.89 9.51 6.3 9.33 10.9 11.7 9.82 9.49 8.39 7.52 5.81 11.8 11 2.37 11.7 9.75 12.1 9.44 11.7 10.3 13 12.1 7.15 8.85 8.72 4.9 11.1 9.66 9.85 11 9.27 9.9 7.12 8.31 6.92 11 7.68 6.71 4.11 8.91 4.86 7.72 8.56 3.13 6.6 6.5 8.82 7.02 8.09 1.42 11.3 2.48 9.53 2.12 8.43 8.02 3.41 3.53 10.9 8.56 2.86 5.58 7.01 8.32 6.26 0.88 9.75 2.63 6.97 0 2.77 7 5.33 7.95 7.6 8.45 7.6 8.27 0.5 9.13 6.9 1.42 10.2 8.4 9.39 8.9 8.16 5.01 10.2 2.12 5.6 8.9 6.31 8.78 5.51 7.84 9.16 1.97 7.73 5.39 5.79 9.62 10.6 1.17 8.64 8.12 8.65 7.53 9.55 8.85 7.99 8.4 10.2 10.5 8.64 9.17 8.53 8.76 9.72 3.57 8.92 4.79 8.45 12.3 8.22 9.44 8.5 10.9 9.99 8.82 4.68 9.23 9.63 8.03 5.53 4.42 10.3 10.4 9.84 4.9 6.04 7.1 7.15 12 8.73 11.8 7.83 7.98 5.03 8.07 6.99 9.97 11.9 7.68 2.59 5.07 9.56 10.3 10.1 7.71 8.96 8.14 9.14 10.8 6.8 9.45 9.13 5.21 6.68 1.17 2.68 6.79 4.98 8.45 9.25 9.06 6.74 9.38 6.19 5.05 7.94 8.9 6.94 1.63 10.8 9.53 7.34 7.02 8.42 5.47 3.76 8.22 10.6 9.88 9.43 6.56 9.6 8.22 10.7 8.32 11.8 8.56 10.4 11 5.64 9.08 1.63 8.58 9.06 10.1 7.45 8.04 9.43 1.63 9.83 6.16 6.77 1.17 7.94 3.02 9.98 5.93 7.18 6.34 7.27 5.57 9.56 1.17 2.25 9.68 10.5 9.83 9.41 9.01 2.12 4.68 8.68 8.83 10.2 10.2 2.12 9.62 6.98 4.68 2.77 9.55 7.88 11.1 7.34 8.1 11.1 8.74 3.41 7.81 3.09 3.62 2.94 8.95 9.57 5.14 10.8 6.5 5.27 7.47 13.2 10.4 11 0 8.19 5.55 9.03 10.7 6.57 5.81 13 2.12 6.59 9.39 8.14 8.78 10.3 6.91 9.89 0.5 6.75 1.17 7.9 5.22 8.79 9.3 7.22 5.77 8.63 10.3 5.64 1.97 3.29 9.27 7.52 8.69 5.71 7.91 6.96 7.72 8 7.37 7.35 8.63 15.4 12.5 9.36 1.42 4.18 6.5 6.97 0.88 9.32 10.6 7.64 10.2 9.77 4.21 8.76 9.57 11 11.9 10.1 9.29 7.62 3.46 7.57 6.64 8.83 5.6 6.64 9.04 8.23 9.05 10.8 3.52 6.72 11.3 3.09 2.86 7.83 11.4 10.4 9.27 8.52 5.47 6.77 13.4 0.88 9.13 9.48 2.77 6.83 8.28 9.03 7.94 8.27 10.5 1.17 1.17 1.17 7.28 1.81 6.1 8.33 7.38 6.18 9.56 8.09 6.19 7.24 9.76 8.38 5.43 10.9 9.32 8.77 4.61 9.38 8.48 5.85 8.82 8.9 8.53 9.12 3.71 10.3 6.27 9.07 1.97 7.55 5.59 7.63 7.56 4.63 7.65 8.39 5.74 4.7 7.63 7.83 4.66 3.29 7.4 5.72 7.23 9.26 8.81 7.9 6.76 0.79 10.4 0.5 9.85 7.09 7.51 1.42 9.46 5.93 8.35 3.16 1.42 9.42 9.95 4.77 2.37 7.99 7.93 7.71 10.5 8.7 6.91 8.54 8.61 7.55 11.8 10.7 4.15 9.1 9.47 9.23 7.36 6.23 0.5 7.41 10.2 9.12 5.46 6.64 5.03 5.89 0 8.73 11.1 8.63 10.8 5.82 8.89 9.27 3.8 9.49 9.38 2.68 8.39 8.93 6.31 5.4 13 8.64 8.31 0.88 8.43 2.48 7.97 9.25 0 7.44 4.11 7.09 11.2 2.48 9.57 9.04 0.88 6.53 6.4 6.68 5.91 7.73 5.58 7.35 8.43 9.7 10 1.17 7.15 9.23 3.46 0.5 2.94 6.11 8.65 5.99 9.43 10.6 7.56 4.63 10.7 9.49 7.24 11.4 9.43 8.65 7.94 6.87 8.3 11.2 1.63 6.79 6.23 12.6 8.7 4.11 12.6 6.48 4.68 3.88 8.67 8.16 12.2 8.92 8.29 9.58 3.52 8.29 7.79 3.46 0 2.94 8.02 1.81 7.47 0 3.46 7.68 5.87 4.15 8.54 8.3 4.73 10.2 9.59 6.61 7.99 10.3 4.68 2.25 8.73 4.08 6.51 2.37 9.7 18.7 8.82 9.61 9.15 18.4 10.3 7.59 0 2.86 6.63 3.57 11.6 11.2 8.52 10.3 18.5 7.75 6.17 14.6 0 7.84 2.25 9.58 11.2 9.55 10.1 3.09 9.67 10.4 8.48 8.46 14.9 5.83 6.6 4.28 1.81 2.12 7.45 6.89 5.71 10.6 10.7 4.18 5.64 6.89 5.67 11.8 9.69 15 8.51 8.43 14 4.81 10.1 16.1 8.83 16.2 9.09 5.69 15.6 8.48 9.13 7.82 7.41 9.63 4.11 7.71 8.94 10.2 8.2 8.33 9.12 9.1 5.43 10.7 8.85 1.81 7.57 8.72 9.32 4.53 5.9 4.08 7.67 11.1 3.41 8.05 6.18 5.28 7.34 13.2 6.54 5.84 5.53 4.96 5.22 9.32 8.1 4.48 9.28 7.03 7.09 9.76 12.6 6.7 9.14 12.9 9.69 6.74 5.63 6.41 8.8 7.34 7.14 6.97 8.06 4.48 6.79 0 4.79 7.93 3.09 2.59 8.74 3.41 10.3 12.7 8.72 6.44 8.19 11.4 2.59 8.31 11.1 9.32 10.2 9.84 7.61 0.88 10.3 8.2 1.81 9.44 3.57 0.5 8.26 7.5 7.4 6.8 6.46 9.45 0.88 1.49 6.7 10.2 8.44 7.72 3.02 6.96 3.72 5.79 8.3 9.93 12.2 7.82 9.25 7.53 7.71 10.6 5.47 7.74 2.59 9.51 7.85 3.88 6.91 7.07 1.97 10.1 4.58 9.85 11.1 9.18 11.9 9.38 2.37 6.99 8.94 4.88 11.9 5.22 7.91 10.8 10.1 9.21 9.23 3.22 8.3 8.07 8.29 9.88 2.25 9.45 11.7 9.85 5.46 8.19 10.5 6.23 6.94 11.3 6.24 11.2 7.92 7.62 12.2 11.4 9.22 9.52 3.64 6.3 8.09 9.41 4.88 9.15 7.9 9.63 1.63 9.4 10.5 2.59 9.54 8 5.73 8.64 1.17 10.9 8.58 6.52 12.4 4.34 7.04 11.7 10 10.3 8.23 9.47 6.4 6.32 6.16 8.53 6.25 5.3 8.34 10.4 9.87 6.3 9.32 7.67 8.8 8.33 4.75 2.77 9.72 3.57 4.28 11.2 5.76 4.15 11.4 7.43 11.2 5.19 9.13 5.79 12.7 7.23 0.5 9.26 7.81 7.22 3.41 4 10.3 8.4 7.35 4.53 10.8 8.56 1.17 11.4 10.4 8.79 2.59 8.05 7.87 4.5 6.3 3.88 8.61 8.29 11.7 11.7 7.03 2.59 0 9.69 8.68 8.25 10.3 11.2 6.74 11.1 4.56 9.61 8.42 9.43 6.53 10.7 10.5 5.01 4.5 6.46 10.4 6.31 7.56 9.89 10.1 7.15 4.15 9.25 7.2 4.42 0.88 9.22 5.28 4.34 4.15 9.01 7.11 5.9 8.15 6.79 8.55 5.07 7.87 10.4 9.14 9.49 7.48 0.5 9.35 9.18 3.52 9.47 10.8 4.12 6.93 7.57 7.94 7.98 6.58 10.7 6.37 10.4 0.88 9.61 6.39 8.19 8.11 4.98 1.17 13.1 9.32 7.12 0 2.94 3.35 5.01 7.31 9.17 5.89 9.35 2.12 8.22 10.5 8.06 11.5 7.95 10.4 10.9 7.67 4.04 9.98 11.8 8.55 10.1 9.03 11.8 3.62 4.56 7.98 8.43 5.25 7.64 7.59 6.23 8.13 10.8 8.94 8.65 0 4.04 9.78 7.85 7.78 9.3 8.01 6.19 9.48 0.88 4.08 7.77 7.52 3.76 10.4 12.4 8.57 7.75 8.43 9.73 3.46 1.81 8.64 3.62 11.2 7.46 3.41 5.57 5.61 4.84 9.2 4.37 9.43 7.93 11.9 7.44 9.04 12.5 2.37 4 6.67 11.7 5.1 7.48 10.8 8.48 5.03 7.26 6.79 10.5 3.76 7.59 7.79 8.66 9.47 10.4 7.6 6.52 7.66 3.57 0.88 7.03 10.2 4.34 8.39 0.5 4.24 11.7 8.57 5.95 8.68 7.63 4.08 9.13 14.2 6.65 0 8.21 1.97 3.35 1.63 4.77 2.48 9.79 7.46 3.62 6.82 0.88 12.3 7.62 7.34 5.95 5.07 5.21 11.3 3.96 9.3 8.49 6.73 1.17 5.98 0 8.2 6.22 0.5 0.5 9.66 4.99 9.13 6.42 0.88 6.39 2.68 8.17 4.5 9.56 9.27 7.15 8.84 6.48 9.06 8.97 5.27 13.3 7.47 8.89 6.89 9.34 9.67 7.77 9.18 3.41 0 5.66 3.09 7.34 11.4 6.33 3.29 11.6 5.6 6.05 9.14 3.09 3.88 4.08 4.61 6.59 8.19 4.04 9.35 3.41 7.96 2.25 9.36 8.78 6.83 7.77 7.6 5.94 5.89 1.81 9.75 10.1 9.89 7.16 6.05 9.06 3.76 5.72 7.03 6.48 8.86 8.76 4.24 6.97 8.15 6.41 8.03 4.79 0 8.65 7.87 7.28 9.07 4.79 3.09 6.23 7.67 5.71 3.16 6.89 8.65 3.67 7.47 7.35 8.76 5.05 8.8 9.85 8.08 7.14 7.46 4.08 0 12.2 5.72 0.88 9.18 9.77 10.4 6.19 1.63 9.74 5.12 5.96 8.85 8.14 11.1 9.31 5.99 10.6 6.13 7.01 2.12 6.99 0.88 4 6.61 9.16 8.16 8.71 6.11 6.4 6.84 7.56 3.35 8.17 13.7 12.2 6.48 8.96 6.84 6.49 13.1 10.2 10.8 0 8.51 12.1 0.5 7.07 8.19 8.65 5.25 2.37 0.88 3.71 2.68 7.42 4.81 4 7.85 9.63 7.2 7.41 10.2 2.68 5.25 5.69 8.06 8.27 5.94 7.52 3.16 10.1 7.81 9.41 7.86 5.96 3.57 10.3 8.49 7.2 3.67 6.65 7.92 2.77 5.67 8.43 5.65 14.9 9.27 13.7 6.52 3.29 0.88 5.6 10.1 8.73 7.61 8.84 6.42 2.86 8.17 7.91 8.75 11 6.7 1.97 9.05 1.63 3.16 0.5 12.1 5.65 6.59 7.3 6.2 11.1 0 8.23 2.37 11.3 4.48 6.04 6.67 0.88 7.04 7.35 8.2 10.7 7.14 5.61 5.39 6.48 6.95 1.42 13.7 5.32 9.54 9.67 7.78 8.53 4.92 11.7 9.78 9.66 11.4 4.45 3.88 8.36 7.27 5.64 10.7 8.38 6.54 5.4 12.5 6.24 7.84 9.5 11.3 7.44 4.42 5.97 3.09 6.64 7.2 9.85 7.79 4 8.05 5.28 8.67 3.22 4.48 4.48 4.79 9.82 7.5 3.09 5.05 8.11 8.09 3.93 7.69 9.85 8.09 7.43 8.82 11.6 6.98 7.38 11.1 7.67 9.64 11.2 11.1 8.09 6.57 11.4 7.94 8.31 4.53 6.09 11.4 7.85 5.76 6.37 8.18 2.12 11 5.92 9.93 8.26 10.4 6.21 8.76 9.47 4 5.14 1.63 8.68 9.63 7.07 7.74 3.02 9.57 5.31 2.86 9.26 9.69 4.08 9.7 10.8 3.48 7.48 9.09 3.57 9.76 6.87 6.3 9.34 11.3 0.88 1.63 6.6 7.9 7.21 5.94 9.48 6.82 0.5 11 2.12 4.28 8.74 2.68 1.81 8.55 6.33 9.02 9.23 9.61 8.79 8.59 7.16 0 9.86 5.58 9.81 8.3 7.87 2.37 3.8 10.2 6.52 4.45 3.35 9.24 10 3.46 9.7 0 4.48 2.59 4.34 5.96 5.64 2.68 4.88 2.68 5.85 4 6.88 4.82 9.68 7.79 8.83 5.17 5.4 4.24 0.5 5.22 8.59 5.3 7.73 4.48 7.19 8.23 0.88 7.82 8.25 1.63 0.5 3.67 0.88 6.64 5.45 4.03 5.72 10.2 7.2 9.07 5.69 8.96 0.88 0.5 10.3 6.01 3.62 10.3 6.42 0.88 11.6 11.7 2.12 12.2 2.12 8.43 0 0 11.6 9.21 4.45 3.57 10.2 9.68 0 7.98 11.9 8.74 9.36 8.35 7.62 5.17 3.41 4.92 7.5 8.52 11.1 12.3 4.39 8.35 4.79 10.6 10.2 2.37 4.15 8.62 9.76 6.96 7.61 5.36 1.97 10.6 7.97 7.59 11 0.88 2.68 9.9 1.63 4.21 7.8 4.92 5.35 11.5 9.64 3.76 11.3 7.93 5.36 9.75 5.55 10.7 5.37 3.29 7.57 2.12 2.94 2.77 7.18 5.4 7.85 13.4 8.42 9.47 7.02 7.11 6.62 8.95 6.29 7.59 5.03 9.29 5.46 0.5 12.4 7.8 6.5 7.94 7.08 7.1 4.21 7.5 5.92 4.15 8.41 7.35 4.5 7.33 6.79 9.21 0 7.83 5.09 5.67 9.31 4.39 13.5 5.03 10.5 8.33 9.68 0 6.65 8.84 0.5 8.16 7.69 9.14 9.19 12.1 10.3 3.88 9.05 2.86 12.6 2.48 8.11 3.46 6.07 0.5 9.76 1.81 6.75 3.38 1.81 3.88 0.88 9.45 7.42 8.57 12.6 13.3 7.49 3.09 4.75 7.73 8.71 9.76 11 8.59 12.9 13.4 3.62 1.63 11.8 3.96 5.67 8.94 4.18 10.3 4.18 6.9 12.8 12.3 4.9 9.25 9.5 9.31 2.25 7.24 7.52 11.4 10.9 7.74 10.6 7.31 7.06 7.68 5.95 8.83 9.31 5.01 9.51 3.67 10.6 5.93 9.65 3.71 5.19 8.46 5.09 9.07 9.16 8.3 7.3 7.37 7.23 8.34 2.12 9.45 8.9 2.48 2.48 9.45 9.01 1.97 6.69 8.16 8.33 8.06 9.89 6.46 2.25 0.5 9.83 8.68 8.51 3.16 5.61 7.94 5.63 6.14 7.38 5.05 7.36 2.59 0 7.88 9.82 4.58 9.59 8.63 2.12 9.89 3.09 7.58 3.88 6.46 6.54 11.9 7.57 6.62 8.71 4.34 10.1 3.76 10.7 10.4 1.17 7.37 2.77 6.94 12.2 5.67 10.6 3.16 9.81 8.66 10.1 10 10.7 9.4 7.19 7.06 9.69 12.1 10.8 11.7 5.94 7.96 5.32 9.77 10.7 9.46 11.4 10.4 3.76 10.3 9.55 11.1 2.25 1.81 4.31 9.78 8.67 7.73 6.37 8.94 9.9 9.97 8.92 7.26 8.03 2.12 6.45 9.47 4.68 8.52 3.02 5.14 10.6 13.2 10.1 5.83 10.6 11.3 11.2 11.6 6.56 10.3 7.94 10.3 9.48 4.04 9.25 8.52 9.55 7.23 4.28 9.02 8.68 8.77 8.29 12.4 12.4 0 10.4 1.81 1.17 10 11.6 5.74 5.24 12.6 6.98 9.72 8.96 8.24 10 12.3 10.2 6 8.96 7.36 8.45 9.78 8.85 11.6 7.72 10.2 6.96 8.57 11 9.96 3.41 6.46 1.42 9.99 9.94 10.6 11.5 10.7 9.95 9.39 11.2 7.69 9.65 10 7.92 8 8.85 10.1 8.33 12 0.5 10.6 11.7 11.2 9.36 9.7 8.88 9.42 9.97 9.69 9.42 7.87 10.6 12 7.99 9.47 11.9 16 1.81 2.86 9 10.9 6.91 7.38 8.47 11.7 13.1 13.9 15 9.5 9.33 8.14 9.87 9.94 10.9 10.5 9.59 1.63 5.16 8.79 9.98 10.4 9.16 7.94 11.2 7.2 8.11 6.87 11.2 8.11 8.75 5.39 7.53 0.5 6.28 4.21 7.09 9.44 7.95 8.21 10.7 9.89 7.41 8.52 9.52 8.22 10.8 7.06 8.6 10.3 9.53 0.88 10.1 9.58 6.67 0.88 12 5.24 8.42 9.5 3.89 0.88 6.54 3.69 9.11 3.22 5.69 4.63 8.09 7.62 13.8 5.01 8.26 8.48 2.12 7.02 9.73 12.4 7.89 12.3 9.05 10.6 11.1 13.1 14.4 11.3 13.1 1.17 10.3 2.12 9.75 7.85 7.96 11.3 1.42 0.88 2.68 9.02 2.59 9.94 6.97 4.77 3.09 11 6.74 7.06 5.1 3.46 9.59 5.12 7.79 7.92 11.1 9.27 3.35 9.6 15.3 9.17 9.75 1.63 2.94 9.46 8.67 5.19 10.1 11.4 5.65 3.02 1.63 2.86 11.3 10.3 4.55 10.2 7.24 0 7.8 5.22 7.54 4.42 9.54 7.72 0.88 1.81 9.64 6.59 4.5 6.38 9.25 14.3 7.67 6.06 9.25 6.57 8.16 6.02 7.44 2.37 8.18 6.91 9.58 8.79 6.29 9.01 9.13 7.84 10.4 10.2 7.15 8.22 7.36 9.56 6.97 9.23 7.05 10.8 7.9 5.87 9.81 9.58 8.88 7.77 9.35 8.61 4.08 10.2 4.94 10.2 4.56 9.78 5.21 7.59 8.03 6.3 10.3 0 7.81 8.81 9.28 7.94 3.41 11.7 9.07 5.61 4.39 6.36 9.02 9.23 8.16 9.22 7.5 8.8 9.2 5.16 5.67 8.31 8.15 5.14 12.5 8.38 1.81 14.5 5.84 6 2.48 5.98 4.31 9.6 5.83 6.98 8.79 12.1 6.37 9.83 9.94 7.7 7.56 15.7 10.2 1.42 5.66 9.09 8.81 8.09 6.27 7.92 8.22 9.1 8.24 10.3 6.73 12.4 8.28 10.2 7.57 7.19 9.94 9.89 12.1 4.28 10.1 10.8 12.1 8.46 9.4 0.5 8.57 5.95 11.6 0.5 10.9 10.5 4.79 7.6 12.2 6.44 12.5 6.13 8.02 8.7 8.9 10.1 8.19 9.53 0.88 6.8 8.86 11.7 10.7 10.8 9.68 3.84 8.26 11.6 3.57 0.88 9.72 10.2 8.96 0.88 12.3 8.55 8.6 10.1 7.53 9.32 6.88 10.2 9.76 11.6 11.1 6.44 11.4 9.48 11.3 6.9 10.1 4.18 9.47 1.17 11.3 10.1 10.3 10.6 8.35 11.3 11.3 6.76 4.28 6.56 8.78 9.28 4.37 9.71 9.07 11.4 8.63 8.98 8.19 4 12.3 10.8 11.3 4.31 9.95 10.9 8.44 10.5 10.7 6.61 8.77 10.1 0.5 10.1 7.95 8.06 8.72 7.64 6.15 2.37 8.39 7.05 11.7 4.04 12.3 6.2 4.56 2.68 11.2 10 7.97 8.33 8.74 8.66 7.88 7.1 10 10.6 10.2 8.2 9.14 10.4 5.03 8.7 9.19 9.66 15.2 9.96 5.16 10.2 6.72 6.15 7.85 11.6 9.38 12.3 1.81 4.37 8.42 5.96 8.55 11.1 8.12 8.85 12.8 8.22 6.99 7.81 7.2 10.1 7.93 4.75 5.51 8.31 8.21 8.2 11.6 7.35 9.33 7.98 7.96 11.5 10 8.76 5.52 12.6 8.99 10.6 7.38 8.11 7.81 9.06 13.3 1.17 5.32 8.9 7.85 7.11 12.2 1.63 7.7 7.46 11.3 4.98 6.8 2.86 2.12 6.17 5.61 5.33 6.5 10.1 6.13 3.71 1.63 7.79 7.71 5.7 8.29 7.08 6.44 6.44 12.7 4.81 9.34 7.64 4.77 8.24 9.46 2.68 10.5 6.81 6.82 6.4 11.6 8.08 7.51 8.49 9.28 7.42 10.6 4.34 10.3 7 9.09 7.78 7.67 6.42 7.84 10.4 11 3.84 2.48 4.18 7.62 4.56 8.59 6.14 5.13 8.15 5.4 11.4 1.17 8.54 10.3 6.04 8.55 8.5 8.06 4.76 9.4 6.35 4.72 12.6 8.85 3.71 9.34 8.84 8.83 8.23 0.88 8.41 7.42 8.42 9.63 8.24 8.51 10 8.97 8.16 8.7 9.24 7 6.44 9.84 6.5 9.11 8.28 5.17 8.63 11.6 9 10.5 6.8 5.42 9.17 7.93 10.3 6.71 11.2 8.5 5.45 2.86 5.01 1.81 0 3.52 10.9 0 6.97 4.98 2.94 5.43 7.57 7.56 5.6 9.28 11.5 8.58 7.77 7.65 9.23 9.7 10.4 11.6 10.6 4.99 9.19 10 7.49 5.12 0.5 8.59 5.78 6.62 8.12 8.53 5.54 13.7 13.3 7.11 1.97 8.53 5.16 7.92 10.7 5.07 12.4 10.1 9.63 11.4 11.9 9.41 7.95 12.7 8.13 10.3 1.97 11.1 4.81 7.42 9.68 10.6 6.66 11.7 4.5 12.4 9.36 10.6 9.37 7.61 11.5 12.2 10.2 0 8.4 10.5 7.52 10.5 9 9.83 11.8 7.8 6.03 2.37 8.71 10.1 8.5 10 5.97 8.8 6.56 7.7 8.82 11 8.8 10.2 10.3 7.83 9.98 8.42 9.95 4 9.45 8.44 11.1 11.3 3.57 12.8 8.11 8.31 9.19 7.77 8.84 9.5 8.6 11.7 9.84 8.21 9.73 12.6 7.85 8.51 10.1 8.6 9.7 10 9.69 3.57 9.33 8.71 1.17 9.74 8.61 8.7 2.12 9.82 5.42 8.84 10.6 9.8 10.3 10.3 11.2 9.55 8.49 8.84 12.3 7.3 11.9 11.2 0 11.7 11.7 10.8 8.68 8.92 6.34 10.3 9.46 10.3 10.1 10.7 10.1 8.16 10.4 9.48 7.52 10.8 10.7 9.11 7.41 12.7 9.16 9.18 1.81 8.87 9.61 11.2 7.44 3.8 11.3 9.02 3.88 10.2 7.21 4.96 10.9 8.7 8.64 5.53 9.95 12.2 2.12 2.59 0 10.1 11.3 10.5 10 6.6 6.71 1.17 9.75 11.3 6.56 9.81 8.59 9.18 8.58 9.14 2.12 9.48 10.3 10.6 10.5 8.39 9.17 11.4 12.2 12.6 12 9.82 10 2.25 1.42 11.8 10.2 10.1 8.44 10.4 8.77 8.1 7.4 9.75 7.75 10.9 11.3 9.32 11 7.17 7.32 10 11 10.4 11.1 9.38 9.73 10.3 10.8 7.71 8.74 4.68 10.2 12.1 10.5 9.81 10.9 11.2 8.62 9.69 10.6 10.9 1.17 8.46 9.89 10.4 9.36 7.38 9.23 6.72 8.13 9.48 10.3 8.07 8.6 13 10.9 9.54 9.6 9.57 9.84 9.49 10.3 8.99 10 8.35 7.99 11.8 9.85 3.22 10.8 6.72 10.6 6.13 3.97 10.6 9.08 9.15 8.12 8.16 8.87 10.8 6.72 0.88 3.93 9.55 9.8 11.1 9.24 12.6 9.56 9.48 10.1 6.44 9.98 10.6 9.55 9.46 6.97 10.3 11.8 9.76 10.4 10 8.79 9.77 4.34 8.37 6.41 0.5 9.8 8.66 10.8 10.5 10 10.7 10.1 15.1 9.26 8.93 8.52 9.46 12 10.8 12.2 10.4 10.8 8.67 12 9.43 9.56 8.35 10 9.16 8.77 11.2 9.87 8.78 10.7 13.1 9.83 9.56 10.7 9.58 10.3 11.8 8.63 11.8 11.4 11.6 10.1 13.8 10.7 9.25 11.6 10.9 10.8 9.35 9.14 7.07 10.2 12.5 4.58 11 11 4.31 10.1 8.97 10.2 9.28 12.2 10.7 12 11.4 1.42 10.1 10.2 4.48 8.44 9.57 9.41 11.3 10.5 8.52 9.39 7.47 7.9 11.7 7.47 6.43 9.96 8.87 8.77 3.96 9.29 10.4 9.39 10.7 7 9.25 11.4 6.98 8.08 8.58 10.6 8.94 6.06 7.93 9.18 8.69 8.56 10.1 10.8 10 8.89 9.07 9.59 8.34 10.4 11.9 11.1 9.13 9.77 7.92 10.1 10.3 10.4 8.79 9.74 8.83 10.7 10.6 7.8 2.77 9.21 9.67 5.72 9.12 8.46 8.85 6.56 10 10.8 9.98 10.6 9.97 6.75 9.99 9.78 5.33 9.2 9.06 2.77 9.25 10.4 8.58 10.2 12.3 9.73 9.24 10.4 8.95 8.06 5.53 10.1 9.56 10.6 10.3 7.41 11.4 9.42 12.7 9.67 10.2 10.1 10.4 10.1 9.63 8.99 8.47 8.95 11 8.54 9.21 11.6 10.6 10.3 9.59 5.69 15.9 10.7 9.66 11.2 10.4 8.92 9.39 8.55 10.2 4.75 9.95 9.61 9.48 10.8 11.6 7.4 12.2 9.65 11.3 10.1 10.8 8.77 9.49 8.33 10.1 10.8 11.1 8.72 10.1 10.2 12.1 10.4 9.82 10.3 11 9.31 11 11.4 9.29 10.6 9.03 9.12 11.4 9.81 8.46 9.14 9.04 10.1 12.3 8.18 5.5 9.21 8.52 9.23 10.2 5.35 1.81 8.38 7.38 4.79 9.36 11.8 8.19 11.3 8.51 7.48 10.9 10.7 5.98 7.86 8.92 10.6 12 10.1 7.21 11.6 11.8 12.4 10.2 8.41 7.97 8.59 5.12 8.72 10.2 12.1 8.2 7.88 6.93 12.2 10.4 12.2 9.03 9.14 8.87 10.5 11.7 10.2 6.23 10.1 10.2 6.88 10.3 4.21 7.59 9.41 3.29 6.32 12.1 11.1 10.5 9.46 1.17 10.6 8.93 8.88 7.85 11 10.4 11 10.2 11.1 10.8 8.99 10.1 10.5 10.2 1.63 1.42 13.9 9.54 10.6 12.8 10.1 9.85 7.81 7.11 12 10.6 8.81 11.9 7.89 10.7 6.67 0 8.48 6.64 3.52 11.2 0.88 9.15 0.88 5.19 8.54 10 10.2 9.13 6.36 8 8.16 9.15 9.26 9.87 11.2 11.1 10.1 9.47 1.63 4.08 12.2 7.99 8.91 10.6 2.12 7.54 10.4 5.05 11.5 8.97 9.14 3.29 11.3 9.43 10.1 9.22 10.5 9.59 6.29 9.12 9.74 8.01 9.23 8.8 9.36 10.6 8.57 5.61 11.7 7 9.37 11.8 9.52 9.84 9.67 2.94 9.1 10.5 10.4 10.8 6.92 1.42 2.68 3.16 10.9 9.51 11.5 10.3 8.1 10.4 10.2 9.19 7.77 10.4 10.2 12.8 10.1 10 9.49 7.33 12.3 6.59 9.28 9.57 9.44 10.5 10.3 10.5 8.72 6.98 10.5 8.55 10.7 5.91 8.71 8.47 9.7 12.1 5.79 8.64 9.83 9.93 8.33 7.03 7.12 8.17 0.88 8.58 10.8 3.71 12.4 9.51 6.82 9.98 9.25 12 10.8 2.94 1.17 7.92 8.04 8 10.1 8.5 8.57 9.97 10.1 7.32 9.2 9.19 7.75 8.2 11.5 9.48 0.5 6.33 3.88 3.34 10.3 3.02 7.03 9.27 9.63 7.74 4.24 1.42 7.8 7.88 5.51 7.23 7.56 9.26 0.5 3.09 3.84 10.6 9.52 10.2 11.8 6.77 9.26 15.4 8.5 11.7 7.8 16.1 10.8 11.1 12.5 6.54 7.45 6.33 7.92 6.06 3.57 12.3 5.93 5.86 9.31 7.6 6.28 10.1 2.48 3.09 7.5 9.87 9.5 4.73 3.47 10.2 8.48 9.77 11.1 4.18 9.97 10.4 8.06 8.67 5.56 6.29 12.9 8.45 4.31 9.88 6.67 6.86 9.25 9.8 6.84 1.17 10.4 10.8 8.14 8.58 2.59 6.1 5.53 9.57 6.23 7.22 9.9 3.29 1.81 8.41 7.01 0 9.49 8.28 6.75 6.58 8.23 2.48 7.61 7.7 5.47 7.67 9.91 8.8 6.07 5.33 12.3 0 5.01 11.2 5.72 9.75 6.95 9.01 7.37 4.18 4.64 6.99 4.21 0 5.55 9.73 9.05 4.48 5.86 4.18 8.3 1.42 8.87 6.36 6.14 3.35 1.97 9.27 5.37 7.5 5.12 4.88 10.2 8.48 8.06 5.7 6.66 8.74 7.91 9.31 6.93 2.25 4.9 4.34 8.81 8.52 4.68 8.62 4.99 3.56 4.68 8.5 9.47 5.63 3.41 7.41 7.59 0.5 7.59 7.24 0 5.43 6.66 2.12 3.16 0.88 8.06 2.68 6.72 5.7 1.42 2.86 4.92 3.35 6.28 6.15 6.36 9.78 5.1 8.15 3.57 10.3 4.48 2.77 7.48 9.27 0.5 1.81 1.63 8.9 8.69 4.99 7.45 8.24 7.68 9.83 8.87 8.08 1.42 9.81 11.3 9.1 9.12 9.76 4.45 1.97 7.23 10.4 6.52 10.8 10.5 1.97 9.7 8.05 10.8 7.58 11.2 10.8 8.87 8.42 10.7 8.77 11.3 7.45 8.57 7.78 9.42 0.5 9.92 10.7 9.7 2.37 5.98 8.95 10.2 8.52 9.73 1.63 12.2 10.6 7.15 10.2 10.4 4.44 4.7 11.4 7.31 3.41 10.5 4 10.2 8.8 10.7 7.34 9.19 9.68 11.6 8.2 10.3 11.9 8.33 6.09 8.79 9.22 10.3 7.04 10.2 6.96 8.27 4.84 8.4 10.5 11 9.91 12.8 10.3 9.31 8.02 13.2 10.5 9.2 7.2 9.21 8.47 8.23 11.7 9.01 3.52 5.27 7.74 9.74 10.6 8.69 0.88 12 7.85 9.14 8.73 13.5 9.43 9.3 7.94 10.3 8.67 8.85 11.9 9.33 8.29 10.2 9.6 6.63 5.19 8.03 10.8 10.9 0 7.19 7.94 8.58 2.25 7.47 10.7 10.1 9.98 9.31 5.25 10 0.88 9.87 0 1.42 3.46 8.29 10.6 9.59 13 9.17 9.76 9.48 9.61 10.8 10.7 11.8 10.7 9.02 6.76 9.98 9.18 10.1 7.35 8.11 10.9 4.94 10.2 12.4 12 3.98 10.5 10.2 9.07 15.8 9.7 8.84 7.33 7.38 9.11 9.04 9.96 9.74 10.2 6.2 9.02 9.35 10.6 8.78 9.34 9.03 10.7 9.66 9.93 6.8 6.57 10.4 11.7 12.1 11.4 9.78 9.27 9.27 12.1 8.94 10.2 5.87 9.07 10.8 13.1 9.69 11.2 11.4 9.46 4.53 5.27 8.59 7.87 9.88 8.35 7.35 5.79 7.81 9.48 9 10.4 0.5 8.77 9.59 8.62 7.69 3.46 8.73 8.49 7.37 7.79 5.76 7.12 8.8 10.3 10.5 9.4 10.9 10.5 10.1 7.63 7.81 11.9 11.5 10.5 11.4 6.83 8 9.29 9.74 11.1 8.9 10.8 8.73 8.43 1.42 11.4 8.11 12.1 10.5 5.01 10 9.86 10.3 9.72 11.1 9.28 10 8.78 8.73 9.9 11.4 13.1 11.3 3.76 8.31 9.49 9.72 9.69 5.86 9.94 7.95 9.15 8.66 6.36 3.57 11.1 10.8 8.67 10.1 9.15 4.61 10.6 10.5 10.6 7.73 10.8 8.29 8.53 10.7 9.37 10.5 6.57 11.3 4.04 9.09 7.1 8.98 10.7 0.88 8.75 1.63 8.92 9.61 12.4 4.18 10.4 1.63 6.69 5.47 7.2 8.83 11.4 7.66 9.29 7.56 7.2 6.07 0.5 6.32 3.71 8.11 10.1 8.34 8.61 4.79 10.3 8.74 3.52 8.24 9.2 8.33 7.92 8.61 9.17 8.08 9.06 9.49 8.22 10.4 9.72 8.19 8.62 10.8 10.2 5.1 10.3 0.5 9.9 7.93 9.19 7.26 10.2 9.52 11.5 0.9 10.8 9.95 10.6 10.3 8.83 0.5 8.68 7.99 6.87 10.1 10.2 8 9.44 11.1 10.3 1.81 5.22 9.07 10.4 8.98 8.53 9.08 1.97 10.6 10.8 8.57 8.2 8.64 9.07 10.1 8.86 9.03 9.89 9.97 8.42 10.7 3.57 3.46 3.3 10.2 5.03 5.42 4.99 9.79 1.97 11 9.31 9.93 8.29 4.28 10.3 2.86 8 5.16 11.8 11.9 9.9 4 8.14 4.7 7.54 8.68 7.95 10.5 1.17 7.6 5.87 0 8.56 5.28 11 7.36 6.6 8.27 9.83 9.75 9.25 1.81 9.53 6.78 2.77 5.25 9.3 0.5 12.1 9.12 9.82 7.09 7.4 1.42 7.38 8.72 10.1 10.6 3.22 8.72 13.2 9.27 5.32 8.76 9.85 14.8 10.2 11.3 9.52 7.45 10 9.29 0 4.42 9.85 2.37 9.82 10.1 6.7 10.5 11.9 9.45 10.3 8.95 8 11.1 4.21 9.19 1.97 6.62 9.15 8.39 8.97 11.5 12.7 7.85 1.42 9.33 10.3 10 11.1 4.56 7.92 9.24 9.13 10.5 7.61 7.45 7.6 7.38 9.89 2.77 11.8 4.77 8.65 9.43 6.06 10.4 9.29 7.56 2.25 10.4 7.2 11.3 11.4 9.17 8.95 6.58 5.64 6.19 7.65 9.11 10.9 9.21 6.15 11.2 4.31 9.63 7.22 3.84 7.44 10.7 3.16 9.06 7.3 8.47 8 0.53 9.69 9.28 9.05 6.17 9.59 9.84 3.96 9.36 0 7.6 8.86 4.68 11.2 9.82 11.6 8.77 6.33 4 10.5 8.6 0.88 10.9 7.82 3.16 4.86 8.57 11.2 3.41 7.71 11.7 5.1 7.58 8 9.69 7.67 9.18 8.64 7.56 8.23 11.8 11.2 9.54 10.7 8.78 8.79 10.3 10.8 10.7 9.08 8.7 6.55 10.2 10.2 2.86 8.61 8.02 4.04 5.86 9.37 7.97 9.22 8.63 2.94 9.63 8.64 7.91 7.9 9.21 10.4 6.38 7.79 5.9 8.91 7.24 6.2 9.02 12 9.41 9.61 9.57 11.1 9.73 5.27 11.3 11.4 9.92 11.4 11.9 9.44 10.4 9.62 8.49 8.79 8.29 9.81 9.32 9.34 8.22 8.3 8.04 7.34 10 8.56 9.19 7.25 11.8 10.2 9.71 8.04 10.8 8.74 7.88 10.6 5.6 9.95 9.12 3.16 7.03 8.86 10.5 7.67 5.25 14.1 10.1 11.3 9.57 10.5 9.31 8.45 10.3 8.3 9.68 13.4 11.4 4.24 9.09 10.3 15.4 0.88 6.89 13.4 12.7 4.69 2.12 7.14 10.8 5.58 4.42 9.69 11.1 5.42 11.2 4.9 1.17 12.5 3.29 6.81 9 11 11.2 10.6 11.3 9.35 10.8 10.4 1.97 7.07 5.7 2.77 10.9 4.73 9.34 12.5 3.88 8.01 6.23 4.5 7.95 8.99 5.14 1.97 3.41 4.88 3.71 7.56 2.77 9.15 3.29 1.17 6.93 2.37 7.16 9.14 5.7 6.22 7.53 1.81 2.48 6.64 1.17 8.33 14.1 6.74 9.81 11 6.67 2.59 7.18 9.39 5.64 8.58 9.32 7.34 8.45 8.25 9.67 6.39 7.41 3.03 9.76 7.99 5.78 8.11 9.3 4.28 7.32 8.64 9.72 0 7.79 2.37 5.78 2.37 6.26 5.07 5.85 3.09 9.79 3.8 5.78 5.47 9.53 7.12 8.63 4.8 4 6.36 2.86 8.05 1.17 8.76 1.42 8.39 0.88 5.98 0.5 3.57 9.36 9.15 8.74 5.58 2.06 5.03 4.84 4.29 8.24 8.64 0 1.17 5.32 9.68 4.96 7.37 1.81 4.83 8.48 6.87 9.08 3.8 5.39 4.73 2.37 6.65 7.48 6.54 0 2.48 10.2 9.11 9.45 8.52 1.81 7.7 7.72 0 5.4 8.7 5.71 7.46 6.52 8.16 3.09 10 9.56 4.86 4.08 1.63 6.89 7.63 0 5.46 1.42 9.74 5.36 3.09 7.64 13.4 8.74 6.33 5.14 8.37 1.17 0 0 4.42 9.19 2.25 2.12 10.4 1.63 8.81 6 8.36 2.59 5.86 4.96 8.74 7.96 8.49 6.14 8.93 5.96 6.15 5.03 1.42 5.92 12.1 4.04 7.7 7.35 5.96 6.58 3.02 8.19 7.15 0 5.43 2.48 1.97 8.08 7.97 6.05 6.43 7.69 9.57 5.83 1.17 0.88 7.74 2.12 2.59 6.05 9.24 5.74 7.18 5.69 5.62 4.42 1.17 5.07 9.22 1.97 3.96 6.51 4.28 1.17 3.29 3.57 3.93 5.92 0 6.39 0 1.17 5.35 6.55 3.57 6.81 6.04 9.49 9.48 2.68 8.5 4.66 4.91 0 7.16 10.7 7.97 7.93 9.05 2.48 8.17 2.86 4.45 6.85 5.99 8.52 6.42 8.69 8.82 0.88 5.33 8.83 9 7.99 6.08 8.03 0.88 9.28 4.34 5.76 9.67 8.98 8.03 9.57 8.05 6.48 3.35 3.57 8.06 0 6.96 4.66 1.97 4.3 6.63 8.14 9.95 6.34 8.79 1.42 12 1.63 2.25 5.27 6.24 7.48 5.11 9.92 3.93 6.65 9.31 2.94 8.25 9.69 8 9.06 8.61 2.37 2.11 0 9.92 5.15 2.94 6.43 0.88 2.77 7.59 0.5 6.73 8.08 8.34 6.72 6.68 4.92 0.88 4.04 3.88 2.59 1.81 8.37 8.2 2.37 9.91 6.44 9.38 5.33 3.41 4.5 7.92 5.98 6.63 8.25 9.67 5.58 1.81 7.93 6.67 2.86 1.97 9.1 8.2 8.36 5.21 8.33 8.25 9.51 7.57 2.77 2.48 8.03 7.27 7.19 4.24 6.98 7.71 6.34 8.59 1.17 9.53 10.1 11.4 11.5 10.4 2.37 12.4 3.46 10.3 11.8 8.13 10 11.7 9.7 10.8 2.37 4.28 10.2 9.1 9.12 10.7 8.37 10.2 11.4 13.8 9.04 9.32 10.8 7.31 7.79 6.85 10.1 5.46 8.81 8.53 10.9 10.2 10.8 9.86 9.75 9.45 9.26 6.83 8.03 9.8 7.29 9.31 11 9.07 4.15 7.76 9.92 6.89 10 9.96 5.19 10.9 10.9 4.53 1.81 10.1 2.12 10.3 2.25 9.79 1.81 8.97 11.4 6.35 9.31 7.45 9.41 9.77 12.3 9.42 9.65 10.8 10.6 8.36 8.99 10.2 8.71 9.18 9.98 7.73 11.2 10.8 9.61 10.3 9.59 10.8 8.97 9.38 7.46 9.36 8.84 8.96 9.9 9.83 9.62 9.36 9.1 11.1 10.6 7.71 7.45 9.28 4.56 9.3 8.8 9.23 1.97 9.04 10.5 10.2 9.73 1.81 4.9 9.45 1.63 10.8 3.88 5.22 10.3 9.63 4.08 2.37 8 12.4 4.75 4.28 14.1 3.71 11 13.2 10.9 10.2 13.6 10.7 9.68 10.5 9.88 8.02 8.82 10.9 8.36 4.73 13.1 0.88 8.65 8.84 11 6.79 10.1 9.13 8.59 10.1 10.9 8.06 9.55 8.32 7.35 9.04 11.5 12.9 10.9 10.3 1.63 11.1 10.3 7.26 9.6 9.14 1.42 10.7 8.04 3.8 8.6 9.76 0.88 8.62 9.72 9.15 11 4.61 10.4 1.17 5.8 7.68 7.57 9.42 3.57 11.2 10.4 9.21 0.88 6.68 9.02 9.43 9.38 1.42 6.34 9.7 12.4 9.03 1.42 9.53 11.1 7.96 8.14 11.5 10.8 11.4 8.24 11.4 5.6 10.4 9.46 11.4 8.54 6.39 8.9 9.36 4.37 8.93 5.93 8.6 8.95 8.32 9.16 8.86 9.81 11 8.9 10.5 11.5 8.8 9.78 13.5 9.61 8.57 4.39 7.02 7.61 0 11 10.1 8.24 6.31 3.84 9.54 9.09 5.43 9.37 8.67 3.41 10.6 8.81 11.8 9.86 3.96 11.8 3.41 9.08 7.03 8.26 9.31 8.76 10.4 10.8 10.4 8 10.6 10.8 8.97 8.53 8.55 8.96 2.68 8.69 5.72 9.82 8.08 6.77 9.24 9.48 11.9 8.67 1.99 10.2 0.5 10.7 9.05 11.9 6.03 8.52 10.9 7.04 8.07 6.77 11.5 9.62 13 2.48 2.94 2.48 12.4 6.14 1.05 11 13 8.5 13.8 13.3 13.6 11.1 8.8 5.63 12 11.1 10.9 1.42 10.9 3.96 7.55 5.67 8.87 12.3 9.87 10.7 2.25 0.88 0.5 2.94 8.83 1.42 11.3 9.88 11.2 8.65 10.7 11.4 12.1 6.23 12.7 13.8 10.1 7.8 9.83 11.1 11.3 13.5 6.67 13.5 7.81 8.41 3.57 10.2 7.19 7.78 3.02 4.11 10.4 3.16 8.58 9.06 9.94 10.4 4.34 5.12 10.4 8.65 12.6 9.3 9.54 11.7 7.83 13 9.77 12.2 10 11.1 11.8 9.14 10.6 9.5 11.1 9.34 10.2 10.7 7.61 9.01 15.1 15.6 14.8 10.9 10.8 11.2 9.71 5.56 13.3 12.7 2.59 12 8.67 12.6 8.12 14.4 13.8 12.8 8.43 8.91 5.27 13.3 10.4 6.68 11.2 1.99 5.09 7.43 8.27 8.94 8.7 9.08 13.1 12.3 11.5 12.3 13.7 9.83 9.93 10.2 10.2 4.7 9.01 10.5 9.93 9.48 9.45 0.5 9.63 7.9 9.47 8.58 4.08 8.19 0.88 8.2 0.5 7.76 1.17 8.77 13.3 8.53 13.9 12.7 13.6 12.3 12.2 12.7 11.2 11.5 13.8 0.88 12.7 13.6 0 3.57 3.76 8.5 7.33 5.51 3.16 4.75 2.12 6.82 5.94 9.02 8.26 3.09 5.01 9.03 9.91 10.2 8.04 8.94 9.77 9.91 10.1 10.3 9.4 6.76 5.28 10.8 8.17 9.44 6.46 9.67 2.86 11.6 4.79 0.88 9.98 9.65 0 3.67 3.02 9.63 2.12 6.67 9.17 10.2 9.32 7.55 10.8 5.8 5.16 11.2 11.7 12.2 10.1 11.2 10 5.17 10.1 5.18 4.11 11.6 11 9.67 5.11 8.36 11.1 12.1 13.3 11.9 5.59 9.21 11.7 14.6 10.1 7.39 7.15 14.8 12.3 14 5.91 10.1 15 10.5 14.7 12.8 9.89 11.2 11 9.37 14.1 5.56 5.01 13.5 11.4 8.18 4.24 4.66 3.35 5.49 1.17 1.63 5.63 7.81 13 6.42 11.2 10.2 3.09 6.3 3.29 0 2.37 7.37 10.6 2.37 6.72 3.29 9.51 6.54 4.86 8.78 2.12 1.42 2.12 1.85 7.14 9.64 8.55 9.35 5.17 11.1 7.43 5.69 2.77 1.63 4.08 4.37 7.55 10.4 8.56 8.82 7.68 5.7 8.56 10.1 9.53 8.37 11.3 6.48 7.53 9.72 5.83 8.14 2.86 4.04 1.17 9.27 1.42 7.31 9.18 6.14 2.77 4.42 6.98 7.99 4.84 5.67 5.89 6.08 7.18 8.42 6.54 2.12 10.7 8.65 3.88 0.88 10.8 6.16 7.87 2.37 2.37 2.86 11.3 4.88 0.5 5.56 5.72 10.1 9.95 10.5 0 0 3.29 4.04 2.48 8.33 3.35 2.94 6.47 2.25 9.7 4.61 8.82 7.93 2.86 1.81 2.94 5.54 4.77 9.05 6.24 6.69 7.12 3.96 3.02 6.97 4.66 8.77 5.78 7.23 10.5 5.47 5.49 2.25 8.19 2.86 11.5 12.3 9.63 10.6 4 10.4 1.97 4.08 3.62 9.03 11 0 7.39 8.99 0.5 8.72 3.16 8.9 6.3 10.8 11.6 4.42 13.7 5.37 5.03 4.31 2.68 6.89 3.46 6.55 1.42 9.93 3.35 7.14 8.99 0 8.97 9.98 4.15 4.04 3.84 0 2.37 4.5 9.84 8.87 5.54 6.79 0 4.11 8.74 6.98 1.63 4.34 1.97 2.25 1.42 3.02 3.02 10.5 5.89 8.88 5.22 5.65 8.72 9.14 3.62 10.2 10.9 6.27 11.2 3.09 5.71 3.09 5.55 1.42 3.76 4.88 10.9 3.76 1.17 7.56 5.79 6.46 0.5 4.28 4.96 9.64 3.02 10.2 4.24 2.59 10.8 11.7 6.38 4.63 6.04 0 9.64 12 8.1 7.54 14.3 9.71 6.27 7.78 7.52 16.1 8.08 2.86 8.33 11.6 10.8 0.5 11.7 2.12 6.79 4.08 14.4 12.7 0 8.42 14.9 1.63 7.6 17.2 6.69 7.21 8.72 6.09 2.94 9.93 13.7 5.99 10.4 6.98 6.31 1.81 6.32 3.62 5.88 4.04 8.62 8.54 14.4 9.47 9.66 9.22 8.55 6.64 9.91 6.7 5.85 8.67 4.38 3.67 9.72 7.75 3.22 4.04 4.34 7.38 4.7 7.6 5.71 1.42 7.12 8.25 11.5 9.84 2.48 7.78 10.6 7.82 8.49 6.8 5.73 9.05 10.5 7.83 9.63 4.28 4.18 8.76 7.24 9.03 5.71 6.77 9.08 3.8 4.37 11.6 6.13 1.63 4.96 10.1 10.1 2.94 10.7 5.39 4.7 6.97 5.35 11.4 2.52 9.63 12.1 8 9.79 5.67 9.36 7.33 7.01 1.42 9.39 5.16 8.16 10.9 12.9 12.7 4.79 11.5 8.36 8.68 11 11.6 9.25 8.91 8.31 8.14 1.97 4.84 7.09 0.5 10.5 8.19 5.92 9.2 8.34 8.64 9.69 11.5 10.4 3.02 1.97 9.45 3.16 12.5 7.33 8.83 11 11.3 5.89 10 10.9 6.52 9.81 10.3 5.9 8.52 9.03 9.57 9.15 8.1 7.73 11.9 10.2 8.5 5.07 9.81 9.59 12.2 10.9 6.56 8.98 4.77 9.13 9.99 9.21 11.6 8.66 13.6 11.6 10.4 6.11 10.8 11.3 11.5 7.18 7.84 8.47 1.17 7.39 4.79 12.3 5.69 7.75 11.9 10.2 10.2 5.67 10.1 9.15 9.37 9.77 10.4 9.27 11.9 8.45 9.11 11.9 9.59 12.7 10.9 11.5 12 8.55 9.4 11.4 9.99 11.3 1.63 4.37 6.41 3.57 4.42 2.12 0.44 10 5.46 8.59 3.41 9.56 9.95 7.92 7.22 6.98 2.77 1.97 6.18 3.67 6.11 3.16 8.83 7.82 7.69 8.77 0.5 4.79 6.62 7.17 8.46 3.96 7.15 3.67 3.02 9.77 4.88 2.12 7.06 5.82 5.99 7.05 5.07 9.36 0.5 3.09 7.73 13.8 8.27 9.07 6.43 11.2 4.81 7.32 6.1 2.25 6.23 0.5 5.6 8.97 7.97 8.24 9.27 5.1 2.25 1.81 8.02 7.7 8.91 6.82 8 8.85 7.55 7.48 3.62 1.17 2.12 4.92 4.88 2.77 7.5 10.3 6.74 1.97 8.9 6.26 9.24 2.48 3.84 12 2.39 2.68 7.94 6.1 9.6 8.81 0.88 9.03 0.5 5.77 4.58 5.85 5.32 1.81 7.5 11.8 4.68 4.79 4.94 2.12 8.61 6.22 7.79 2.48 5.91 13 6.16 1.63 6.64 7.23 7.83 0 2.68 3.35 8.64 5.53 0.5 6.68 10.8 8.86 7.61 3.57 10.2 3.71 7.08 9.92 9.5 1.63 11.5 9.8 8.1 8.29 0.78 3.35 1.81 12.7 2.25 0 8.72 4.18 2.86 11.5 7 3.84 2.59 3.29 4.77 0 11.1 9.83 10.4 10.2 10.5 12.8 12.2 9.83 8.76 10.7 6.78 12 11 9.96 3.88 0.88 13.8 9.61 1.63 7.17 7.7 1.81 13.7 7.31 4.34 11.7 0.5 9.35 5.81 4.7 8.27 0.54 9.56 2.68 2.59 5.61 8.99 5.81 6.27 13 9.27 10.3 4.84 0.88 3.88 2.37 1.17 7.79 7.66 1.63 3.09 2.86 6.9 2.77 8.17 1.17 5.05 4.73 3.8 4.98 9.9 7.57 1.97 9.91 2.14 4.75 8.88 4.61 0.5 11.8 3.29 6.34 8.13 5.07 9.55 2.77 3.02 10.4 3.96 7.3 4.81 4.5 5.46 6.32 5.81 6.36 7.11 8.28 8.7 7.04 2.68 13 1.97 6.99 8.53 7.02 8.44 7.55 5.64 6.86 0.88 3.29 3.16 5.14 6.89 0 7.52 3.52 8.57 0 7.31 8.26 1.63 6.8 7.01 9.17 9.37 0.5 9.25 0.5 7 6.39 4.04 9.19 8.22 8.05 1.63 9.53 12.7 7.46 0.88 6.5 9.22 6.84 6.46 4.94 4.63 9.13 4.28 8.29 6.04 1.17 4.9 7.77 7.25 6.99 5.05 11.5 6.94 7.59 10.8 3.71 3.29 3.22 5.19 9.03 6.72 3.46 5.84 1.81 9.11 8.21 2.25 3.09 1.21 6.59 1.63 9.35 0.5 10.1 9.93 7.81 9.12 1.04 2.86 9.8 3.22 3.35 1.81 5.07 0 11.1 9.93 8.7 7 8.47 10.6 12.3 6.84 11.4 2.94 13.8 0 12.5 0 9.07 8.28 13.5 12.6 2.94 0.5 11.8 12.2 12.9 2.25 2.77 4.45 14.1 5.81 12.9 1.97 2.68 10.1 11.1 7.05 8.96 8.04 12.3 9.57 0.5 13.5 10.2 13.6 9.19 7.26 1.17 9.3 10.3 9.56 13.5 7.18 11.4 14.2 12.6 1.17 9.21 11.3 12.4 0.88 6.3 9.64 9.91 1.81 9.3 7.14 10.5 10.5 9.66 8.29 11.2 7.66 3.29 6.06 10.2 9.96 0.5 7.59 8.45 7.76 11.1 9.09 11.2 6.06 5.78 2.72 10.2 3.96 4.15 6.65 5.35 12.2 0.5 7.57 6.61 10.4 5.12 6.3 9.74 10.6 10.9 13.3 7.41 7.77 7.45 12.1 8.32 2.37 5.09 9.51 4.85 8.05 10.2 8.5 0.5 8.78 8.56 2.68 7.61 6.8 3.02 7.05 3.84 4.42 6.03 8.48 1.17 6.19 4.11 5.19 8.46 2.12 8.74 6.9 2.12 2.86 7.92 2.25 3.09 0 4.75 7.84 7.28 0.5 5.07 3.09 7.25 0 7.35 6.79 2.94 3.96 11.5 1.63 7.16 5.43 5.36 4.75 5.16 1.17 5.27 4.88 4.44 8.06 5.4 6.99 7.64 1.63 9.89 6.46 2.48 6.67 7.13 9.9 7.26 4.84 8.22 10.5 10.3 6.66 6.84 8.39 8.49 1.42 2.87 0 6.03 11.1 5.99 4.21 12.7 5.58 1.17 4.56 7.71 10.3 7.94 1.81 8.03 3.62 9.07 1.17 4.42 7.17 3.93 4.73 9.44 7.48 7.35 6.44 8.3 10.3 13.5 9 10 9.46 10.3 4.58 9.41 10.3 3.52 10.1 2.25 4.45 12 6.75 4.42 11.6 7.9 10.5 9.96 9.42 10.7 5.95 10.6 9.54 0.5 12.9 10.9 11.8 10.8 4.65 12.3 2.77 6.67 12 7.19 15 12.2 6.48 7.3 8.74 7.66 10.4 7.28 13.3 11.4 11.2 11.8 11.2 12.7 11.5 0.88 6.18 2.68 7.87 8.39 10.2 13.2 7.99 9.63 10.1 10.8 10.3 11 10.1 11 7.01 8.41 5.86 11.1 7.51 0.88 7.87 7.98 9.46 9.66 7.06 6.34 9.07 10.2 9.78 9.45 9.3 12.4 9.62 8.21 9.73 11.4 12.9 8.57 12.8 9.14 6.24 8.76 10.7 10.6 6.92 4.66 11 8.21 4.34 6.04 1.63 1.58 6.77 6.84 3.9 11.2 5.24 3.9 12.4 8.72 7.51 10.7 8.26 8.65 7.36 11.7 10.1 4.45 10.3 11.4 9.08 6.35 12.2 9.68 8.76 1.97 12.7 11.6 12.5 11.5 10.7 11.3 12.4 11.2 6.27 10.7 9.98 2.86 11.4 11.7 15 11.1 9.66 8.44 10.2 11.1 10.3 9.85 5.74 9.79 10.2 8.87 4.53 11.5 9.29 8.44 9.63 10.3 9.43 8.44 10.9 10.6 8.93 1.17 11 9.57 8.47 9.79 12.2 9.99 13.9 11.5 6.04 8.98 12.7 10.4 6.57 6.97 9.22 9.46 8.34 14.8 8.18 9.86 11.7 8.49 12 12.3 8.06 10.1 12.2 11.9 0.5 8.42 7.82 8.9 11.4 10.9 9.75 9.55 5.28 7.73 10.8 10.3 10.9 10.1 5.33 5.6 9.36 10.9 11.3 8.45 7.13 10.2 14.2 7.37 1.63 1.63 11.8 5.89 10.3 14.6 5.93 10 5.5 6.06 9.19 8.12 5.03 8.73 8.13 8.21 8.59 4.37 9.08 10.2 3.46 10.7 9.51 8.77 9.41 9.29 2.59 3.96 9.71 7.37 5.94 9.54 9.98 3.8 10.3 8.71 10.5 0.88 4.31 10.5 11.7 0 4.58 5.21 10.1 9.13 3.09 1.17 6.52 3.8 6.89 2.25 8.9 3.22 4.79 3.96 8.39 10.2 4.21 7.07 10.4 3.67 7.1 2.8 3.48 5.42 3.57 11.6 7.67 1.63 7.1 3.52 8.97 5.96 5.03 5.77 1.97 2.25 8.92 10.7 5.12 4.04 6.01 1.81 7.91 1.63 5.84 8 2.68 0.88 7.05 7.09 7.64 7.32 12.8 3.52 7.11 8.22 6.45 6.32 6.34 8.63 7.93 6 4.21 4.21 7.14 5.87 3.29 5.45 6.32 1.17 5.7 7.27 3.25 1.81 0.88 1.63 1.42 1.63 0.5 4.92 8.21 1.63 9.67 5.55 3.29 9.78 1.97 2.59 8.37 10.1 0.88 1.42 0.88 1.63 0 3.16 7.13 1.42 3.57 6.86 4.48 2.68 1.81 11.3 3.8 10.1 8.9 0 7.65 11.6 10.7 7.43 4.61 7.89 5.52 1.97 10.2 13.4 9.38 7.73 5.98 2.37 8.93 5.63 7.03 6.01 4.04 8.06 10.1 8.7 4.45 8.63 8.41 11 8.59 9.11 7.99 9.66 3.09 10 8.74 9.86 11 5.07 2.86 9.91 9.45 8.1 9.12 8.62 11.7 9.32 9.31 8.38 7.29 10.7 2.68 0.5 4.75 9.37 8.07 6.68 10.7 9.54 0 7.45 14.4 13.1 12.3 10.1 8.22 6.48 14.3 12.8 0 12.1 10.6 9.89 9.57 9.7 11.1 8.05 6.48 7.39 11.4 11.2 10.6 8.69 10.2 2.25 10.2 10.1 13.6 10.1 9.84 9.08 12.5 6.57 13.2 6.57 8.65 11.7 11.6 12.3 11.8 5.87 11.7 8.62 10.5 10 0 10.3 9.01 8.97 9.06 13.8 7.11 10.9 11 10.4 11.1 10.9 12.4 10.1 9.3 10.2 4.84 10.6 10.6 9.49 9.77 11.8 9.56 10.3 11.1 10.6 9.72 10.5 10.6 11.7 9.92 9.62 11.4 9.98 9.61 11.2 10.9 11.1 9.18 12.1 10.7 10.8 10.7 11.6 9.87 9.68 8.14 13.4 13.2 11.3 9.77 0.5 6.01 7.62 6.82 9.82 5.85 3.09 8.66 2.59 10.4 9.01 9.44 6.16 8.99 11.7 10.7 13.4 10.6 11.2 9.35 8.4 5.53 11.7 9.17 10.9 5.55 13 4.28 11.3 11.6 9.12 8.71 12.1 10.1 10 11.4 8.85 9.37 9.3 9.16 9.64 9.39 10 4 10.4 9.5 10.4 12.1 3.62 11.2 11.1 8.47 13.4 10.6 5.59 9.34 8.56 7.81 9.93 6.78 2.59 6.57 11.3 11.4 13.2 8.8 11.2 7.9 10.8 9.51 2.94 10.1 13.7 3.29 9.64 10.4 10.6 9.17 10.5 12 13.2 9.1 7.84 3.62 9.63 3.93 8.87 8.78 9.08 8.21 13.4 4.24 0.5 12.5 8.84 7.26 5.96 3.02 9.59 9.83 10.3 10.8 10.5 11.6 9.14 1.42 10 7.86 5.59 8.25 13.8 10.7 9.73 2.86 8.06 4.53 9.58 5.89 1.81 7.7 4.31 9.07 9.15 2.12 4.53 8.03 13.2 11.3 12.9 9.73 11 7.98 12.4 9.46 6.3 8.98 8.95 9.94 5.7 0 9.38 4.86 5.65 11.5 11 5.2 11 9.31 0 6.46 10.8 8.69 6.46 1.97 3.8 0.88 13.5 12 9.99 11.5 10.8 4.75 11.1 8.98 12.2 6.39 2.94 5.54 5.69 0.88 0 10.1 10.3 13.3 3.29 7.89 8.42 7.58 9.43 1.81 6.92 8.02 8.68 11 9.14 9.25 6.9 3.84 0.5 10.6 6.05 11.2 8.2 5.82 4.86 5.4 11 9.85 8.44 5.16 9.67 4.79 5.82 4.88 5.45 7.69 7.21 10.9 15 7.23 6.92 11.5 0.5 0.5 5.6 12.7 7.69 10.8 7.56 11.7 9.42 9.51 8.94 10.7 8.11 10.2 4.98 10.8 8.16 10.5 7.81 12.9 7.94 0 10.6 13.6 1.81 7.75 9.18 8.8 11.1 1.81 10.1 9.64 3.57 10.2 10.1 7.07 10.1 6.47 12.3 3.8 5.89 10.9 9.61 6.85 2.68 7.71 1.17 8.66 11.1 10.3 12.1 10.1 10.5 9.23 9.43 0.88 1.68 5.05 12.3 5.85 6.84 11.3 6.81 6.88 3.29 8.48 9.63 9.75 12.3 10.6 11.1 9.48 8.66 9.66 12.9 9.17 1.97 13.2 7.9 7.67 5.64 7.94 10.5 9.18 12.2 9.77 10.2 9.03 9.33 9.06 7.64 8.44 7.55 9.97 8.58 9.89 4.61 8.47 8.03 10.2 8.77 10.9 10.9 7.86 9.12 8.04 10.1 10.4 7.63 8.32 11.3 7.2 10 8.08 8.69 11.2 9.16 10.5 10.9 8.53 10 11.8 9.43 6.7 11.6 6.48 8.14 8.74 11.1 9.54 7.52 9.43 9.71 3.71 8.66 9.35 9.18 10.2 9.04 9.1 9.96 8.64 10.4 7.86 10 10.2 11.6 12.1 10.4 10.5 2.59 9.28 2.94 6.07 3.16 10.2 8.53 8.04 9.74 8.84 11.3 8.14 9.41 10.6 10.3 9.35 10.8 11.2 8.72 8.78 8.4 8.74 9.91 7.3 12.4 10.7 11 12 7.85 9.76 9.59 10.2 9.3 9.42 9.94 9.7 9.81 8.77 9.59 10.3 10.3 10.8 9.91 5.65 9.31 7.17 8.74 8.46 10.4 10 8.11 9 8.01 9.76 8.61 11.4 9.98 10.4 9.68 11.3 8.4 12 3.46 10 11.7 8.03 9.84 11.3 6.9 10.1 8.82 10.9 7.46 8.18 3.76 8.97 6.88 7.88 7.86 7.67 11.5 11.9 14.5 9.84 8.69 8.69 8.92 11.2 10.4 9.02 10.8 8.59 8.33 9.3 9.32 7.58 9.24 10.4 9.16 10.2 10.9 9.01 7.42 3.16 1.81 4.24 10.4 3.96 9.17 8.65 9.36 7.98 10.3 10.3 9.53 10.8 0.88 10.6 10.1 5.66 7.49 10.3 8.71 12.3 11.5 10.2 9.14 7.25 8.29 8.22 2.77 10.8 10.1 9.01 9.45 11.2 8.98 9.4 9.62 10 5.81 6.94 6.16 11.9 10.2 10.8 10.7 8.33 6.87 6.64 9.75 9.53 9 12.7 8.9 9.79 9.9 7.58 4.56 9.68 8.58 9.61 8.9 9.72 10.6 9.62 9.49 10 9.4 10.1 7.83 10.5 3.93 7.22 10.3 1.97 9.83 10.7 8.27 6.97 10.2 7.52 8.7 11.6 1.97 9.34 6.52 9.6 9.53 7.58 10.1 10.2 11 11.2 5.18 11.4 7.21 8.95 3.88 4.81 7.7 11.8 9.24 9.17 9.08 9.71 9.71 8.54 10.3 8.79 3.41 8.74 1.63 7.49 8.69 8.18 9.47 9.51 11 7.45 10.9 9.27 10.7 3.62 11 11.3 7.53 11.2 9.7 8.98 8.39 8.97 7.61 10.4 1.42 8.91 12.1 8.65 10.4 7.6 9.32 8.77 8.64 10.8 9.54 12.3 6.7 10.3 9.43 7.98 8.24 8.31 8.72 9.49 9.18 8.76 8.05 11 10.5 2.94 10.7 11.3 10.6 12 10.1 8.69 4.79 11.2 9.73 11.1 11.2 3.96 8.81 8.79 9.46 7.92 3.16 11.1 11.4 9.05 3.16 11.2 11.1 7.45 11.1 6.31 8.98 8.22 10.5 11.1 9.53 10.9 9.39 11.5 10.5 9.7 9.99 11.3 11.9 11.2 8.7 10.5 8.81 6.61 9.67 9.56 8.08 11.5 11 9.95 9.32 8.86 8.75 9.32 11.2 6.76 9.58 7.64 4.94 10.4 9.78 8.19 9.94 7.96 7.98 9.1 8.47 8.23 8.59 8.95 9.11 11 4.68 2.59 7.73 11.6 8.26 4.58 8.91 10.8 11.4 10.1 10.7 10.7 10.4 10.3 10 8.71 4.77 12.5 9.4 10.6 8.09 13.1 9.83 11.6 10.1 11.7 10.7 10 10.9 6.62 10.5 10.3 12.8 8.84 10.2 8.88 8.62 12.8 10.1 2.86 8.02 10.5 9.83 9.71 8.56 11.8 9.09 11.4 7.86 9.33 10.2 11.8 10.8 9.53 8.84 10.1 9.62 10.8 9.71 9.65 8.16 9.55 8.63 11.2 8.87 9.13 9.38 8.62 9.32 9 10 10.8 7.97 11.2 9.28 12.8 10.7 12.4 7.12 6.01 11.5 9.66 4.15 9.09 9.97 9.46 10.1 9.08 10.2 10.1 12.2 8.75 7.69 8.61 0 9.02 9.72 9.55 10.4 7.63 10.4 9.9 1.42 10.8 5.24 9.21 11.2 11.5 7.95 10.8 2.12 8.8 6.96 3.41 3.09 7.53 10.2 4.58 10.7 11.1 8.92 5.7 10.9 8.31 10.1 10.7 12.4 5.7 1.17 9.87 9.74 0.5 9.06 10.8 9.21 10.3 3.93 11.1 11.7 9.41 7.55 4.77 9.15 9.08 11.3 10.6 8.99 8.31 9.18 9.68 6.93 8.89 7.47 9.58 9.06 1.42 6.22 9.63 8.2 11.1 10.9 10.7 8.24 12.3 8.96 1.81 8.55 9.88 11 8.4 12.4 6.02 10.1 9.97 14.2 11.7 10.5 11 11.8 3.84 0 11.9 8.54 8.62 10.6 13.1 10.9 8.97 10.6 11 10.4 6.45 11.8 7.22 12.6 4.31 10.2 10.4 8.24 8.99 9.71 11.4 2.25 8.88 8.9 11.4 6.77 11.2 10.8 12 6.97 9.32 7.78 7.73 10.1 10.3 7.83 8.55 10.7 9.97 9.91 8.96 10.4 8.45 8.8 9.5 9.11 6.63 13.2 11.2 10.4 11.6 10.7 9.67 0 9.29 10.1 11.4 9.47 9.31 9.63 1.21 14.5 9.12 9.57 0.5 8.67 6.16 8.92 9.53 11.2 9.52 9.11 11.3 8.74 10.3 9.36 8.39 8.71 10.3 7.11 9.24 6.46 9.18 8.16 6.82 6.46 9.51 12 6.41 7.56 8.61 8.86 9.76 9.21 9.46 12.5 5.1 8.07 9.63 10.6 5.5 6 2.68 9.32 10.7 10 7.05 13.7 11.3 6.41 10.7 9.72 8.04 11.8 10 13.5 10.3 11.8 7.33 9.65 1.17 11.8 4.61 10.5 6.52 7.85 4.47 3.09 12.2 10.9 8.9 9.18 11 8.31 8.35 8.31 5.91 4.45 5.87 1.97 11.2 10.3 7.04 5.39 6.43 4.53 9.77 3.76 10.4 7.08 0.88 3.76 11.8 8.78 9.35 9.08 9.36 9.19 7.41 10.7 9.45 9.3 8.71 13.7 10.5 9.68 7.58 9.89 9.19 3.57 2.59 8.93 6.74 8.33 2.77 8.97 3.02 1.97 7.87 6.61 3.88 7.6 5.34 10.5 9.96 11.3 4.39 9.64 9.66 8.61 5.1 6.92 6.28 8.83 9.64 8.58 9.18 8.69 10.2 11.2 10.8 9.44 1.17 7.66 4.77 9.57 9.51 9.94 10.5 10.2 7.18 1.59 9.74 9.17 12.7 11.2 10.2 5.91 6.94 9.4 10 8.85 11.6 9.35 8.39 9.59 10.4 8.55 7.49 10.2 9.72 10.5 11 10.3 11.8 11 7.52 8.33 9.26 2.86 5.07 11.4 9.08 8.98 10.1 2.12 8.73 8.54 4.88 9.76 9.38 4.92 9.31 9.68 10.3 10.2 8.6 9.47 2.37 5.16 10.7 10.8 10.8 9.65 7.83 9.25 8.35 2.37 10.9 8.27 10.4 11.5 8.47 9.07 9.96 8.16 9.69 9.87 9.14 11.6 7.67 9.53 8.85 11.4 7.63 10.3 8.86 9.24 8.87 8.65 8.95 6.65 9.42 9.53 10.5 10.2 8.31 4.39 7.82 6.22 10.3 9.4 8.01 9.26 8.4 6.3 9.19 8.23 6.54 10.1 3.62 9.21 8.8 8.85 9.93 8.62 8.51 9.61 11.3 9.8 12.1 7.82 9.8 9.65 6.46 9.46 7.97 10.2 8.23 8.24 6.46 8.25 8.75 0.5 7.84 9.97 7.04 9.35 11.5 0.5 10.9 5.82 7.97 9.9 9.2 7.91 4.7 8.93 8.8 9.05 10.8 10.6 5.78 4.28 5.67 8.11 11 7.84 4 9.73 8.91 9.57 8.87 10.7 10.2 9.88 9.8 9.52 8.16 8.6 9.78 10.5 10.5 9.51 9.39 9.13 8.23 9.72 8.83 3.35 5.46 9.72 3.35 12.9 7.83 3.62 9.22 10.3 8.42 6.88 8.35 2.86 11.5 3.22 8.1 1.42 10.5 8.96 7.7 12.2 4.98 6.84 9.37 9.31 7.83 10.3 8.8 11.7 8.59 9.53 8.09 9.39 14.6 9.47 8.71 9.27 10.2 8.57 5.47 8.71 11.2 9.82 8.7 9.14 7.31 8.85 6.19 9.12 9.86 9.88 6.56 8.3 9.69 8.24 8.26 10.8 9.07 8.83 8.97 7.48 9.47 7.09 0 6.58 0 9.12 10 6.06 0.5 9.96 8.01 7.77 10.3 8.07 9.11 8.17 9.43 8.33 10.3 6.64 9.18 8.81 7.66 6.52 9.02 5.99 9.67 10.2 2.48 8.88 9.36 10.2 9.94 7.51 10 7.67 9.57 1.63 11.5 9.41 7.52 10.7 9.04 9.97 11 8.76 9.34 8.18 7.7 7.92 9.32 9.19 10.6 8.49 9.72 7.92 9.07 10.3 11.8 8.48 10.3 9.07 7.52 8.78 8.03 6.73 7.62 7.01 5.56 8.56 9.95 8.39 10.4 6.23 9.62 9.03 10.8 8.66 9.64 10.7 9.04 11.2 9.38 7.71 10.9 8.56 7.55 8.11 11.1 10.4 11.9 9.44 9.17 9.49 9.22 7.53 5.88 8.86 9.4 9.97 6.13 9.01 10.5 10.2 11.1 8.03 8.89 4.98 10 8.91 9.94 9.53 9.73 8.77 8.91 9.08 8.62 8.53 8.1 8.39 6.35 11.8 7.66 9.16 7.24 9.03 7.74 9.21 2.48 9.5 9.46 8.03 7.96 12 10.8 7.9 9.91 9.89 10.1 3.46 9.2 8.17 7.58 10.3 7.69 9.38 6.68 9.81 3.09 9.44 11.8 7.96 8.31 10.8 7.69 7.46 6.97 10.8 3.93 11.3 13.1 11.6 2.12 9.45 9.5 10.8 8.75 8.1 8.46 8.89 9.3 11.5 8.38 10.1 7.8 9.25 8.65 9.22 8.9 6.82 10.2 0 6.3 8.76 6.56 10.5 6.42 5.76 8.3 9.1 9.4 10.8 9.31 7.97 7.73 9.44 9.14 9.92 9.68 8.69 10.3 8.19 10.9 9.44 7.93 8.34 10.7 9.01 9.35 7.21 4.66 7.92 9.06 6.95 7.19 4.7 9.08 5.35 8.62 5.5 11.8 7.31 7.36 7.57 10.1 7.05 9.63 10.3 9.4 8.46 10.7 9.77 8.21 8.94 2.12 7.58 7.26 7.34 9.39 9.08 8.21 7.9 10.3 3.41 10.7 9.5 9.56 9.49 8.38 8.26 8.16 10.7 9.95 10.5 8.65 10 9.44 8.26 10.4 9.6 9.98 9.35 9.68 1.97 9.14 9.9 7.16 9.51 7.3 9.44 7.88 8.87 9.66 6.27 3.62 9.1 11.6 10.2 9.08 9.62 9.75 8.11 9 10.8 10.7 8.59 11.9 4.34 6.79 9.32 9.59 10.2 9.69 9.07 9.87 11 9.29 10.7 9.7 9.11 9.17 7.84 9.6 9.45 9.59 8.89 8.89 10.2 10.8 4.9 7.39 9.81 8.66 7.91 13.1 7.78 9.09 10.5 8.9 6.68 10 10.2 8.78 9.29 6.84 9.34 8.06 10.7 8.09 1.97 10.8 10.3 9.62 7.3 4.37 10.4 6.92 9.92 10.5 10.3 10.8 8.22 10.5 7.77 11.3 4.37 10.3 8.26 8.84 8 10.1 9.64 7.34 9.61 10.1 9.37 5.61 8.95 8.38 9.23 8.97 10.5 8.36 9.72 8.91 8.36 9.47 5.17 9.5 10.6 9.62 7.82 9.77 11.7 9.07 8.35 8.65 9.69 10.4 6.47 8.9 11.2 10.1 9.9 9.98 7.67 8.82 9.41 9.58 11.2 9.1 6.48 8.19 8.73 5.99 9.17 9.15 2.94 6.79 10.1 11.1 8.12 9.62 7.35 10.8 9.71 9.89 6.01 8.65 8.03 11.1 8.6 9.28 4.53 5.63 9.34 6.79 7.07 3.29 9.53 11.5 0.88 9.6 8.87 9.57 10.8 7.44 8.45 7.57 7.49 8.39 8.76 9.57 0.88 10.3 9.23 0 10.6 9.16 9.68 10.7 9.62 10.8 8.96 8.98 6.96 7.95 2.11 9.76 8.37 8.37 10 9.11 5.46 9.29 9.27 10.3 9.25 10.4 9.19 6.33 8.92 8.16 8.54 8.21 9.75 9.99 10.8 5.35 4.5 9.34 10.5 10.6 10.4 9.96 9.8 9.44 9.18 6.88 7.43 9.19 6.74 5.45 8.48 10.6 12.6 9.22 5.12 8.2 1.97 10.5 9.73 10 9.61 10.4 8.93 8.93 10.4 4.39 7.81 12.1 12 1.97 7.52 4.98 7.8 9.87 8.23 7.05 0 4.48 6.78 4.45 8.33 8.11 8.03 0 8.67 7.78 8.56 11.4 9.42 12 7.61 3.35 9.95 9.06 10.2 9.92 8.59 10.5 2.68 9.64 10.2 10.1 0 9.55 5.66 8.27 0.5 7.58 1.63 11.2 7.59 7.73 9.52 9.31 8.1 4.28 2.77 8.08 9.22 4.97 6.8 10.5 2.25 2.48 6.22 8.64 7.73 10.1 8.07 8.28 8.37 7.8 11.2 7.7 9.83 9.28 11.4 8.55 11.2 9.83 8.22 5.64 11 10.6 7.93 9.9 7.86 10.8 8.97 6.42 1.63 9.26 8.85 10.1 8.77 8.97 8.05 9.82 7.87 9.01 11.1 6 4.42 8.16 7.97 9.87 7.3 9.55 9.92 9.03 8.96 8.75 9.6 10.3 9.97 9.72 11.2 8.43 11.4 6.4 9.14 8.82 8.98 8.94 8.07 9.14 9.28 10.5 9.88 7.03 11 9.32 9.11 8.85 8.86 7.2 10.9 8.85 9.61 11.1 9.95 10.2 8.8 8.39 7.28 11.4 11 10.6 9.63 8.63 8.12 9.15 11.4 9.25 7.21 9.54 10.5 8.24 10.6 9.49 7.94 10.4 9.14 7.8 9.66 10.5 11.1 8.1 8.07 10.5 8.72 11.2 9.48 9.26 5.66 9.07 10.3 9.85 5.05 11.1 7.71 11.8 11.2 8.55 8.3 10.4 11.9 8.04 11.1 8.53 10.1 6.57 1.81 3.02 8.8 8.93 9.6 8.59 9.23 10.3 7.5 7.46 9.56 9.28 9.74 7.19 9.81 12.4 9.89 8.33 7.11 8.72 10.2 11 11.2 9.39 12.4 9.81 10.7 9.77 9.15 9.84 10.5 11.5 10 7.88 10 8.64 11.7 5.86 11.9 10.5 9.97 7.7 9.6 8.63 7.28 8.75 9.42 6.09 9.54 10 9 8.06 9.45 8.93 9.63 9.75 6.55 9.52 9.25 9.66 8.26 8.63 7.26 9.17 8.31 9.22 8.41 6.58 9.13 7.91 7 9.59 7.8 8.18 9.16 7.89 8 7.76 9.08 5.37 8.39 6.61 8.85 9.87 5.21 9.26 9.15 6.71 7.64 8.34 8.64 8.24 9.16 1.63 7.88 10 9.05 7.41 10.3 11.5 0.5 9.86 8.47 7.41 10.6 9.75 9.55 10.5 9.88 11.8 9.56 8.18 9.43 8.84 9.29 6.59 10 8.57 8.95 11.9 8.87 8 8.35 11.2 8.42 10.9 10.1 3.1 10.5 6.7 9.57 8.42 10.8 6.35 9.65 10.4 8.82 10.6 8.98 1.97 9.08 8.22 10.3 8.61 9.29 6.45 6.65 10.7 5.01 6.8 0.88 12.9 7.53 8.28 10.7 6.93 11.1 9 9.21 7.85 9.42 10.9 10.7 9.4 9.52 9.62 12.9 8.13 11.1 8.88 8.52 9.93 3.52 12.9 8.4 6.34 9.78 3.29 8.77 4.77 10.7 9.8 8.07 7.55 9.53 13.6 6.91 4 9.97 10.8 10.4 10 11.2 9.5 7.53 10.6 10.2 9.11 10 7.14 3.02 7.82 2.59 10.6 10.1 9.98 9.27 8.5 9.13 10.1 11.1 8.79 10.6 10.7 8.56 7.65 8.08 9.68 9.78 4.5 5.21 5.67 8.97 4.11 3.76 2.59 5.35 3.35 3.16 5.04 6.9 2.68 3.71 10.4 1.97 6.21 3.02 3.8 5.74 10 0 5.22 8.27 5.35 5.69 5.27 7.03 7.78 4.15 5.74 10.3 5.59 6.09 6.56 9.79 3.22 0.88 8.93 3.71 1.17 3.57 7.05 10.3 8.93 8.8 10.1 1.81 9.38 10.8 0.88 4.45 8.52 6.92 9.48 1.42 2.94 10.4 5.83 10.3 9.9 7.15 10.9 10.2 4.86 10.7 10.8 11 9.35 9.78 11.7 9.73 8.77 4.77 1.18 9.86 9.26 11.1 8.82 10.1 9.52 8.14 7.16 12.5 4.65 3.88 3.8 9.64 6.82 8.89 2.68 9.67 11.1 5.5 13.1 7.09 3.02 15.2 8.34 7.91 5.37 10.4 6.81 8.27 10.7 8.91 10 6.99 8.85 9.91 7.81 9.9 9.76 8.68 4.98 1.42 4.86 2.94 8.82 6.38 9.83 6.19 11.3 10.2 15.9 6.71 0.5 10.8 9.11 11.1 9.69 10.6 9.79 9.41 10.9 9.24 11.7 10.3 9.81 7.67 3.52 10.7 11.1 11.9 11.1 11.2 10.1 11.5 11.6 8.87 9.67 11 10.9 9.36 10.3 9.36 5.39 11.2 10.3 11.3 8.86 9.73 10.3 6.46 8.9 11.7 11.6 7.87 9.4 7.73 8.61 9.75 7.07 8.07 12.6 9.56 8.92 7.91 6.65 11.6 9.65 10.1 9.52 11.6 7.75 8.36 11.4 6.7 11.4 9.55 9.85 8.6 10.1 12.1 8.99 8.83 10.4 9.57 10.3 11.1 10.6 10.9 8.37 6.56 8.96 10.1 11.1 3.67 9.94 6.57 8.8 9.37 10.9 5.54 8.73 5.54 4.86 9.94 8.08 3.02 8.97 10.3 7.64 8.34 10.4 10.4 10.6 9.34 10 8.45 10 10.1 9.45 10.6 10.9 1.17 9.19 8.9 7.38 10.9 9.61 11.4 2.82 9.66 9.23 9.6 11.7 9.91 8.99 3.71 8.9 8.07 9.91 11.1 10.9 10.8 11.7 9.36 4.31 10.3 10.5 1.65 11.9 11.1 12.4 8.09 10.1 8.48 8.46 11.7 5.28 11.4 3.41 10.4 2.68 8.25 8.02 9.47 12.2 5.28 8.79 8.88 10 4.18 9.26 8.61 9.51 9.74 9.85 6.8 8.5 6.41 9.86 6.33 10 11.5 10.4 2.25 8.87 9.76 10.4 10.8 10.6 9.84 11.8 6.69 11.2 10.3 11.7 7.94 8.8 8.36 10.4 8.29 9.75 7.1 12.1 9.98 3.84 10.3 0 10.3 8.19 9.23 6.88 3.71 6.62 10.7 10.3 9.1 10.9 9.27 11.1 11.5 9.72 8.31 9.36 10.1 9.58 8.18 8.66 10.4 8.27 9.51 11.5 12.2 3.35 9.19 7.32 10.3 10.2 12.1 9.44 7.86 11.9 9.27 8.66 9.23 6.99 6.07 9.44 10.8 9.63 6.23 11.9 10.8 9.08 10 7.93 8.24 10.2 6.08 6.78 12.7 9.67 11.2 2.86 5.1 9.91 9.96 10.4 2.48 7.07 9.62 12.4 4.76 8.6 12.3 9.6 7.64 8.55 3.84 8.22 8.22 5.43 7.22 12.3 9.79 9.54 5.77 4.68 8.1 9.63 1.42 2.94 10.1 8.88 0 7.87 7.9 9.28 8.55 11.2 8.03 11.3 7.58 8.98 9.43 9.29 6.74 7.39 10.5 11.1 10.3 9.49 6.07 3.16 9.85 4.53 9.1 9.55 8.93 10.3 1.81 9.23 9.96 7.74 6.13 6.33 7.37 9.97 2.68 6.15 11.5 10.6 8.13 10.8 10.4 8.03 8.5 4.96 8.09 8.02 10.1 10.7 8.39 6.28 8.2 11.2 9.54 4.42 10.8 11 9.19 0.88 9.92 0.5 11.1 2.12 5.97 5.27 9.56 9.76 10.3 9.2 8.17 10.2 10.4 9.2 9.86 9.67 11.8 7.2 9.47 8.34 11.1 3.5 10.2 3.22 3.02 2.12 9.18 7.78 10.8 10.4 10.7 12 6.56 8.07 6.88 8.51 12.5 8.38 9.23 9.46 9.3 9.4 5.69 6.96 10.1 7.15 7.81 9.5 2.48 10.6 10.8 7.33 6.46 11.1 9.22 11.4 7.93 8.41 8.73 7.8 10.4 4.42 14.6 8.92 4.15 9.44 7.31 3.41 7.12 7.6 4.39 8.13 10.8 2.12 10.1 9.97 8.31 9.48 9.25 10.3 10.4 9.95 8.77 8.33 5.43 5.12 8.56 10.1 9.8 8.08 9.84 7.24 7.55 10.3 9.92 9.8 8.66 8.68 8.57 1.63 8.42 9.77 9.8 9.78 9.35 5.49 8.45 5.67 13.6 8.94 6.36 10.5 10.1 10.1 6.72 4.15 11 9.06 9.33 10.7 10.5 7.88 8.51 6.45 10.7 6.02 9.93 11.1 10.2 8.08 10.1 8.82 9.46 8.88 9.93 7.53 11.1 7.52 8 9.32 13.2 11.1 5.1 5.69 9.74 2.59 9.23 6.56 9.46 7.94 7.71 9.35 9.02 8.91 7.18 9.01 6.04 1.63 10 8.94 10.3 9.4 9.65 8.58 9.47 7.85 10.1 9.65 6.35 8.36 5.19 6.69 6.2 6.98 5.43 7.98 10.8 8.18 8.98 9.46 10.5 9.15 2.77 6.3 7.13 3.84 8.99 7.44 10.1 7.72 7.55 10.3 8.89 8.28 9.49 9.51 9.98 9.1 9.16 9.85 5.78 9.36 12.2 11.2 10.2 11.2 9.95 7.37 5.3 8.85 9.64 10 1.63 9.56 0.5 2.77 7.22 7.08 11 10.2 8.31 2.68 9.88 11 10.4 9.28 9.16 12.2 9.61 4.28 9.2 10.5 10 1.42 7.54 5.47 6.14 6.39 3.09 11.4 8.33 8.6 10.4 9.7 7.86 9.93 9.12 9.43 9.67 8.19 11.3 11.1 9.55 9.6 5.16 9.86 10.9 10.1 9.71 9.04 10.2 11.4 9.29 9.63 11.1 11.4 9.45 11.8 11 7 9.09 9.94 10.2 11.1 10.5 9.64 10.4 6.28 11.1 9.69 9.77 7.94 8.38 9.74 8.71 6.59 7.96 10.1 5.39 10.6 8.07 8.74 8.58 6.39 11.3 11.1 10.8 9.23 4.28 9.75 9.43 10.5 10.8 10.5 9.66 10.3 8.95 3.8 11 1.42 5.16 11.5 9.98 9.93 11.8 10.2 10 6.66 2.68 9.31 10.1 10.3 12.1 9.4 11.3 9.01 12 8.67 1.81 9.01 9.15 9.33 11.8 12.1 10.5 8.96 8.12 9.39 12.5 11.2 11.8 7.72 8.59 7.6 7.96 7.62 6.57 11.3 4.5 10 10.5 10.4 14.1 10.9 12.4 10.3 10.9 11.2 10.6 11.4 8.95 7.15 9.97 10.1 10.4 0.5 10.8 8.39 10.3 10.6 6.57 7.56 9.94 9.55 5.09 6.1 5.71 9.65 8.69 7.53 10 7.24 4.79 8.69 9.41 12.6 11.3 9.06 9.7 9.97 9.18 12.6 10.2 7.54 1.17 9.02 10.5 10 1.81 8.44 11.5 9.19 0 10.5 7.73 10.2 11.7 4.79 6.62 11.5 10.6 9.48 8.97 12.8 0.5 3.49 1.17 11.1 8.26 4.73 4.11 12.6 11.4 2.25 7.04 8.9 4.9 10.7 9.96 4.75 6.97 10.9 9.23 8.31 11.6 10.4 7.48 4.53 11.1 10.2 10.9 10.3 8.61 9.13 9.07 9.64 10.8 2.42 8.89 8.9 9.13 6.14 5.39 10.3 7.62 9.25 9.77 11.5 16.8 10 10.6 4.04 9.63 5.7 0.5 10.9 1.42 10.3 10.2 9.27 3.16 9.73 4.81 11.7 11 9.68 9.84 12.3 4.42 1.17 6.38 9.44 2.68 8.18 8.78 9.22 6.24 8.52 10.9 0 10.7 4.48 0 9.64 12.5 7.01 11.1 9.4 11.4 0.5 9.85 7.94 9.78 8.77 9.28 7.7 8.44 9.22 8.55 4.92 9.51 9.25 11.8 9.85 11.2 8.22 11.1 9.68 11.2 8.35 9.55 10.4 10.7 1.81 8.32 11 5.99 6.21 9.52 5.82 10.1 10.6 4.81 0 4.06 8.87 1.42 13.6 10.2 9.57 11.1 7.9 10.9 3.02 10.6 9.98 5.71 8.08 5.42 5.82 2.25 6.82 8.94 8.63 2.59 11.9 10.9 7.98 9.28 14.6 14.3 13.8 13.2 10.8 10.1 13.7 2.55 14.9 11.2 13.6 13.9 13.2 13.5 14 12.6 13.8 10.8 14.3 1.81 12.8 11.8 9.34 13.2 13.5 12.9 14 13.8 13.9 13.4 13.4 14 13.2 13.1 11.4 13.9 13.9 12.4 8.51 9.2 13.5 7.35 14.5 14.6 13.4 10.5 9.24 13.3 13.5 13.3 14.3 12.2 14.8 2.26 1.97 2.37 9.29 8.01 13.1 2.37 2.12 14.4 10.1 9.97 10 9.55 9.8 12.6 14.3 13.9 12.8 14.7 14 12.6 13.8 12 13.1 13.5 13.5 7.81 14.3 14.2 14.7 12.7 13.5 13.6 12.9 9.19 10.4 13 9.89 12.1 8.99 9 13.6 9.48 11.2 10.7 8.9 1.81 6.64 10.1 10.6 9.62 6.75 10.1 10.3 10.2 6 6.61 6 7.25 3.62 10.9 8.82 4.81 10.8 0.88 13.1 7.17 9.33 11.7 13.5 2.77 9.78 6.58 4.28 10.6 10.4 11.2 6.99 9.56 7.74 11.3 9.52 9.12 13.7 9.13 8.46 9.79 9.27 9.58 5.7 9.84 9.76 8.58 10.7 5.8 8.1 7.47 8.24 3.09 3.09 5.91 2.77 13.8 9.3 5.63 2.68 4.96 9.26 6.97 5.07 8.76 9.28 11.4 2.77 6.23 9.83 8.12 5.93 3.35 8.11 10.8 8.47 9.01 6.93 8.39 5.93 5.14 1.63 8.96 1.81 7 8.69 5.78 5.6 9.61 5.5 11.9 8.89 2.37 11.7 11 12.8 11.3 9.86 10.3 8.38 8.91 10.2 11.2 9.65 9.78 10.4 9.36 6.33 8.93 7.77 6.43 8.33 10.2 9.06 10.2 8.62 8 11.1 5.36 4.42 8.53 10.3 10.7 10.8 7.92 8.42 11.2 0.5 9.26 7.41 6.66 9.1 7.37 8.51 4.18 9.99 7.37 9.75 8.81 7.86 11.7 8.41 11.7 4.56 9.07 4.15 7.98 7.89 9.68 8.79 4.28 11.2 8.3 6.61 9.28 8.14 9.96 10.3 9.98 8.6 1.63 12.5 9.91 7.6 2.47 8.02 2.86 6.38 6.44 11.4 7.58 10.7 8.64 1.17 6.7 8.7 10.3 9.63 8.39 9.12 8.19 8.54 7.5 7.81 10.1 9.15 9.84 10.3 9.85 10.7 8.25 8.76 9.66 6.82 10.2 4.34 5.67 5.77 2.37 10.4 5.9 9.39 1.81 8.5 0.5 13.8 9.56 3.88 7.16 8.36 8.3 12.1 10 9.61 10.9 6.72 7.09 7.14 6.57 7.92 7.3 5.88 12.6 12.7 1.63 8.83 6.73 10.8 10.1 12.6 9.71 8.87 8.73 9.26 10.3 13.3 6.5 10.8 9.54 8.5 9.53 1.97 14.2 10.7 9.57 12.1 2.12 1.17 6.05 0 12.4 1.81 11.9 12.8 4.31 8.1 5.36 7.25 7.05 7.55 8.2 8.32 7.5 11.5 3.62 5.14 7.49 5.09 11.1 6.65 0 11.7 10.6 7.96 10.1 11.6 9.32 6.3 10.7 6.97 6.3 10.4 10.3 8.98 9.68 6.56 6.64 8.4 4.56 0 3.09 6.06 11.7 9.34 10.1 7.63 11.7 8.51 1.97 2.86 10.3 7.66 8.25 5.86 2.37 9.29 7.36 4.88 7.72 6.77 6.23 7.69 0.5 0.5 5.51 7.94 1.42 10.6 9.07 6.37 9.65 8.46 6.45 10 7.04 9.79 7.87 3.41 8.79 9.44 9.06 7.48 2.48 3.35 0.88 7.5 5.67 9.68 9.75 5.33 8.76 7.44 9.84 10.5 8.75 10.3 8.38 8.75 8.59 10.7 9.91 9.35 9.58 8.82 6.35 9.53 6.4 4.63 2.59 7.11 3.02 5.09 10.2 3.8 6.97 1.63 10.3 2.37 4.96 8.36 3.02 11.2 0 5.84 0.9 10.9 9.82 6.95 2.94 12.1 2.52 1.42 7.24 5.55 10.4 10.3 6.16 0.88 4.02 1.63 2.37 11.5 3.52 4.15 4.31 4.7 0 3.16 3.67 7.45 1.17 4.34 7.12 9.61 10.5 0 10.3 0.5 3.41 1.63 8.53 3.46 6.34 1.81 12 2.86 10.1 5.1 4.44 9.25 0 0.5 7.47 9.27 8.62 6.12 10.3 0.5 1.63 1.81 0.5 8.65 4 9.65 6 5.9 5.92 9.84 11.6 13.9 6.5 4.5 6.96 11.2 3.09 7.67 10.6 10.7 9.06 10.7 10.3 9.55 8.8 6.68 8.84 10.4 10.3 8.93 10.9 10.6 10.3 6.56 9.09 11.2 9.47 7.79 10.7 8.65 9.55 11.6 8.09 8.72 7.35 9.69 10.9 8.11 10.7 10.6 9.37 8.68 7.3 10.3 7.75 0.5 9.34 9.38 7.46 8.04 10.8 8.57 7.8 4.86 10.4 12.4 10.9 6.02 10.1 10.1 5.77 8.89 8.49 3.62 10.5 10.1 10.4 8.91 8.33 8.38 10.1 7.85 9.83 5.69 10.6 10.1 9.52 5.25 9.27 11 9.08 11.9 10.6 10.6 8.93 8.39 8.29 8.13 8.97 9.88 8.52 2.87 5.96 6.92 8.44 8.26 12.6 5.46 6.84 7.03 8.45 7.23 9.46 0.5 10.2 9.15 8.27 9.16 10.1 8.58 1.67 10.4 7.31 11.4 6.14 9.04 10.2 10.4 9.57 3.93 10.4 9.45 9.1 10.4 9.59 11 9.3 8.79 10.3 8.66 7.63 9.24 8.81 10.3 1.42 6.96 12.6 9.9 10.3 8.85 8.22 8.05 3.98 11.1 8.44 9.16 3.52 6.37 6.77 8.51 11.4 8.43 9.3 5.35 9.4 3.62 5.55 0 9 6.92 7.51 9.39 9.16 10.1 8.04 9.92 9.26 9.93 1.81 10.2 14.3 9.74 8.35 10.5 4.48 11.4 8.39 11.6 10.9 11 3.09 9.51 3.84 6.77 3.98 7.95 11.4 1.42 11.2 10.5 4.31 6.27 10.2 8.6 10.6 8.47 6.9 9.11 9.7 7.74 9.13 11.5 10.4 4.9 4.61 8.79 1.81 1.17 4.24 0.5 7.91 3.62 9.58 4.92 8.52 0 6.65 4.39 6.3 3.67 3.35 5.77 2.68 9.62 8.4 4.73 7.63 4.42 3.41 0 7.45 9.38 9.42 9.41 10.8 3.71 7.48 4.21 8.9 1.17 9.96 6.23 6.65 3.46 2.25 9.65 2.59 7.76 4.42 4.73 7.38 1.97 9.68 10 0.5 1.81 1.63 7.46 7.36 5.96 7.18 0.88 6.37 6.59 3.09 5.72 4.21 8.93 4.11 2.94 10.5 5.77 6.92 2.86 3.03 4.73 0 6.58 3.22 9.86 3.35 5.49 9.57 9.15 7.64 10.5 9.02 8.58 1.97 4.21 8.03 10.3 10.9 9.71 10.3 9.11 1.97 8.7 6.8 8.29 4.58 11.9 11 11.6 10.3 11.2 11.3 10 11.8 8.18 8.45 10.4 10.8 10.1 8.25 11 9.49 9.47 8.67 8.39 7.67 5.43 12 6.55 10.9 10 9.63 9.52 9.41 9.46 8.12 6.52 8.68 0.88 5.7 11.3 10.6 11.6 11.1 11 5.89 9.01 10 12.4 1.3 9.72 11.8 10.1 9.17 8.58 12.4 11.5 12.3 10.1 7.14 7.54 8.1 8.53 8.6 8.54 8.66 6.91 7.76 12.2 11.6 10.8 9.25 12.1 10.4 9.6 11 10.5 12 10.6 10.6 10.6 10.1 11.7 9.37 9.35 8.72 11.1 10.9 9.73 9.89 0 12.1 5.78 11.9 10.7 11.9 8.92 11.9 9.39 11.1 10.3 9.57 11.9 8.33 5.19 8.84 0 3.35 10.6 10.9 9.44 12.2 11.1 7.71 10.3 9.09 10.4 7.34 17.3 9.63 10.1 10.2 6.04 9.92 3.62 11 8.22 9.08 10.7 8.32 8.54 13 4.37 6.91 12.9 8.71 10.3 10.6 8.5 6.98 11.6 9.03 10.7 10.6 10.1 11.4 12.6 12.9 10.2 10.4 7.24 11.1 11.2 10.6 10.7 11.8 8.86 10.5 11.7 10.9 11.2 12.5 13.5 11.3 12.3 12 7.01 7.32 0.5 11.2 10.9 11.7 11.9 6.64 13.4 5.14 12.9 11.1 12.3 6.93 9.67 10.8 1.97 1.17 3.02 0.88 0.88 1.81 0.5 2.91 11.2 1.48 0.5 0 4.75 12.2 11.9 9.54 9.78 1.42 8.26 10.3 7.35 8.95 9.49 10 9.41 3.41 3.57 10.3 10.1 1.81 3.41 6.9 6.91 8.77 9.32 10.1 9.22 9.82 9.4 9.33 7.93 9.3 3.84 13.7 6.73 9.89 10.4 11.7 6.45 11.7 8.71 9.51 8.61 12.3 9.41 9.59 8.42 11.4 11.1 7.66 10.2 10.4 6.09 10.4 6.08 5.32 5.53 11.3 7.34 8.7 4.94 3.84 0.5 11 9.11 7.02 8.99 7.64 9.79 9.81 8.7 6.29 13.6 7.08 11.6 11.7 8.91 10.5 9.94 10 9.55 7.41 9.65 6.52 0.88 11.9 12.9 11.9 10.7 12.5 8.66 9.25 10.8 7.66 3.88 8.24 10.7 9.15 11.3 9.05 9.91 8.37 9.41 3.93 6.89 6.23 8.28 10.9 9.26 7.3 1.17 4.31 6.66 9.94 0.5 0 11.1 0 10.8 11.4 9.77 5.54 11.8 9.78 8.95 9.52 8.78 11.2 3.62 11.8 8.64 10.3 9.37 10.9 10.2 0 10.2 11.2 7.88 12.6 0.5 2.59 9.51 9.88 9.38 5.56 10.3 11.1 9.06 10 12.3 10.6 7.73 10.5 7.48 3.8 8.4 13.7 9.78 9.85 9.13 0 9.72 9.14 1.97 10 3.71 8.24 9.92 7.85 9.56 9.2 12.2 11 8.1 10.5 10.4 10.9 5.37 11.3 2.59 8.11 10.9 9.55 10 11.5 5.21 12.1 10.1 0.5 11.7 10.1 9.32 10.4 2.94 11.4 5.72 9.29 11 13.3 10.6 10.3 9.98 4.56 9.73 2.25 10.2 7.8 1.17 11.9 10 10.9 9.92 9.01 10.9 13.2 14.5 12.3 5.35 11.1 11.2 10.6 8.95 12.2 2.68 10.1 8.91 10.2 9.18 5.16 13.2 11.1 7.58 8.66 6.44 9.16 16.6 12.5 7.45 9.93 11.2 10.3 8.55 9.72 9.71 9.74 8.34 11.7 16.1 13.3 9.79 9.84 5.55 7.19 10.6 10.8 10.2 13.2 7.85 11.2 11.4 7.87 5.05 2.94 6.06 13.2 7.69 12.1 10.5 13.6 11.6 7.01 3.67 12.8 12.4 9.56 11.1 10.6 10.5 12.7 8.73 10.3 10 9.31 11.6 0.5 13.7 12.9 12.9 10.6 13.2 14.2 10 9.37 11.6 10.2 14.7 0 9.42 8.39 9.26 14.9 8.49 9.28 8.23 9.3 6.89 9.2 8.98 0.88 13 10.2 10.8 5.47 3.57 6.57 1.17 4.37 7.28 8.85 10.4 0.5 3.71 2.27 11 9.15 10.5 2.59 10.1 5.03 10.1 11.4 9.44 9.05 6.59 8.5 11 10.3 10.9 12.8 9.17 6.72 8.5 9.36 6.34 8.29 8.42 6.24 4.58 3.35 7.15 6.53 9.41 8.23 11.4 4.31 5.12 5.12 5.35 6.9 3.67 8.31 9.88 2.37 8.03 8.25 11 3.22 8.49 0 2.86 9 11.6 7.13 4.5 4.5 7.59 8.95 7.04 4.51 8.8 1.81 6.49 7.31 6.92 3.88 5.6 9.47 6.82 0 12.4 5.12 7.76 0.5 5.28 0.5 4.04 6.72 8.36 5.32 10.2 0.88 1.81 8.89 4.73 8.88 7.9 4.45 0 8.98 2.96 0 4.96 5.98 7.03 6.23 1.63 6.81 7.6 2.59 3.93 4.9 5.55 0 6.87 11.7 9.14 5.61 8.89 8.79 4.31 11.1 4.86 6.47 1.42 7.35 10.8 2.59 1.17 3.57 11 4.96 7.37 3.09 4.7 0 10.5 8.39 5.42 12.8 5.65 8 4.92 7.42 9.08 7.52 8.59 11.2 1.42 10.9 2.37 13.3 1.97 14.3 14.9 13.5 0 10.2 10.8 10.2 9.02 11.3 12 10.7 9.54 10.6 10.5 11.5 10.6 1.42 10.9 11.3 11.6 10.7 10.2 8.71 11.3 10.7 12.3 12 7.96 11.8 2.48 12.4 5.33 9.87 4.84 9.93 7.12 11.1 10.9 5.43 8.48 9.23 13.9 10.3 9.69 10.5 7.59 2.59 10.4 2.68 12.2 12 10.9 10.4 11.3 10.4 9.34 10.9 10.9 10.6 1.17 10.5 11.2 9.11 8.95 11.1 10.8 8.74 9.63 10.4 10.9 11.7 13.1 12.2 9.75 11.9 7.88 10 10.5 8.65 3.52 9.76 3.02 12.5 15.5 4.5 6.26 9.24 4.99 9.01 7.69 8.74 8.49 6.93 3.84 6.57 13.9 11.9 9 11.3 12.2 10.7 10.3 8.09 7.98 9.92 11.2 11.6 9.94 7.05 1.42 1.97 9.08 5.94 3.8 4.9 0 3.09 7.28 5.45 4.66 1.97 9.71 8.6 3.02 11.4 6.12 0.5 11.3 6.73 7.76 9.92 5.79 10.2 8.79 12.4 10.4 6.67 8.68 6.8 9.79 13 6.79 10.8 10.2 12.8 8.63 14 12.2 11.7 14.3 7.86 12.5 11.1 6.75 12.5 8.46 9.18 9.31 7.52 9.28 10.3 9.33 8.77 6.72 12.5 6.98 8.68 7.62 7.27 8.5 7.14 8.26 5.47 7.47 7.83 9.82 9.65 7.1 10.5 7.79 8.56 5.37 9.14 9.09 8.42 8.03 9.45 8.02 8.85 7.95 7.76 9.31 8.26 6.01 7.59 11.1 6.99 6.33 7.1 8.52 8.22 7.75 9.62 6.74 2 10.2 4.15 7.52 6.65 7.59 0.5 8.43 6.17 3.71 5.72 12.6 6.8 6.06 3.22 2.37 0.88 1.42 1.63 9.11 9.38 5.85 8.89 7.73 4.7 7.26 6.42 7.85 8.83 6.75 6.73 9.04 8.35 10.4 1.42 11.3 9.25 9.82 9.78 8.63 5.12 7.23 1.42 10.4 6.08 11.1 7.59 7.04 5.84 6.8 5.37 7.73 8.39 8.89 8.91 3.62 8.53 9.21 7.98 8.05 8.43 8.13 10.5 7.88 7.81 8.03 7.99 11.6 2.37 7.12 9.07 4.98 1.63 11.8 9.6 4.5 7.14 6.54 7.93 7.43 8.58 7.04 4.58 7.1 8.94 7.94 7.59 0 4.08 5.95 6 7.95 5.21 13.1 10 10 11.5 10.6 11.5 6.76 12.7 3.91 13.5 9.16 11.1 7.41 4.15 11.6 10.5 10.3 9.56 10.7 9.36 14 10.1 5.37 5.66 10.1 10.7 7.09 3.93 9.39 9.51 9.3 8.1 9.4 11.2 10.7 12 7.92 5.72 10.8 2.68 9.51 9.99 3.02 7.15 9.6 10.1 9.23 7.52 9.69 1.63 6.07 8.67 10.8 6.64 10.8 10.9 8.92 10.1 9.74 7.63 9.44 8.12 9.59 1.42 9.65 9.79 8.63 8.16 7.76 11.2 8.45 3.93 13.4 10 7.49 8.83 9.19 10.6 9.15 9.87 10.6 7.29 10.2 10.8 5.55 10.6 9.27 9.1 11.2 8.83 9.28 6.93 9.41 8.27 10.7 9.78 9.69 8.47 7.71 7.62 11.6 6.81 8.58 9.46 7.71 9.3 9.63 10.1 9.82 10.4 8.94 6.25 9.95 8.31 7.07 4.24 6.75 10.6 8.99 9.84 5.33 8.87 10.2 10.7 12.1 8.66 7.9 8.27 9.7 11.2 10.8 8.68 10.4 10.7 11.5 9.69 8.66 6.75 7.02 8.94 4.58 4.2 7.66 9.98 7.45 8.72 10.3 8.02 13.1 8.68 7.5 0 7.01 9.15 12.5 8.42 10.7 7.43 7.21 10 7.88 7.26 8.14 8.95 8.84 10.9 9.7 8.84 6.32 11 12.4 8.7 11.1 12.7 9.17 6.61 7.45 2.88 9.22 0 5.58 4.31 10.9 5.55 9.55 8.14 7.75 2.48 4.31 4.75 8.21 2.25 8.77 7.77 5.03 5.86 8.21 11 8.54 8.57 5.01 9.75 7.73 9.99 5.71 1.97 4.39 1.98 10.6 8.19 6.42 6.23 9.55 10.2 9.05 8.91 8.82 9.93 10.5 7.14 9.74 9.85 11.9 9.2 10.4 8.87 9.88 9.87 8.03 7.14 9.29 10.5 9.85 6.36 9.1 1.81 7.79 6.57 7.99 8.01 8.46 6.33 8.51 9.32 6.8 9.78 6.98 8.16 8.15 4.94 8.06 9.01 9.03 6.34 9.96 7.98 7.2 9.03 7.99 9.03 8.75 7.12 9.53 9.22 10.2 8.38 10.5 9.15 8.13 8.46 10 9.09 7.93 10.3 8.35 9.5 8.75 8.52 9.64 6.36 7.39 9.4 10.7 8.92 4.7 8.62 5.42 8.95 8.6 10.2 8.93 5.32 7.69 8.61 9.49 8.22 9.9 7.86 7.75 9.98 10.1 9.65 8.98 9.92 8.44 8.37 7.12 6.93 8.75 10.1 9.19 7.38 8.18 10.3 7.78 11.8 9.18 10.3 9.5 8.61 8.45 8.98 10 11 9.94 9.57 2.12 7.75 9.8 6.99 8.87 7.75 6.27 8.56 8.61 7.71 8.86 9.4 7.56 8.08 7.63 2.59 10.3 7.72 7.91 5.55 6.35 7.7 5.87 9.69 8.83 8.46 8.95 7.05 6.44 8.42 8.34 8.37 9.9 10.5 3.29 8.69 10.6 6.72 5.98 10 7.11 7.85 8.24 8.88 3.62 1.81 4.18 10.7 7.23 5.47 8.8 12 9.07 11.2 8.6 8.98 8.5 8.1 6 8.61 2.12 8.32 10.5 7.67 8.46 6.95 10.6 10.8 10.5 5.58 5.89 3.67 8.6 8.2 8.43 9.37 3.35 11 6.99 6.3 7.21 8.31 9.48 8.07 6.78 9.84 7.91 10.7 3.57 9.79 6.93 6.8 8.39 7.37 6.38 6.55 6.3 4.53 9.6 7.28 6.41 8.83 0.88 9.83 2.77 0 4.68 8.4 2.12 8.11 1.17 6.9 9.07 7.56 3.93 7.22 9.92 8.54 11.1 7.02 7.9 9.87 7.05 8.84 10.1 9.15 10.3 5.61 9.52 10.3 3.71 8.48 8.58 8.69 8.59 11.4 9.62 7.34 10.3 10.1 10.5 7.73 7.33 9.09 7.04 9.73 11.1 9.84 10.3 5.35 5.81 2.77 6.46 8.27 7.87 7.54 6.78 7.35 11.2 6.93 1.63 4.98 8.8 6.03 5.93 7.95 7.77 2.94 10.5 3.22 9.18 3.57 6.71 10.4 10.5 3.57 8.17 7.81 5.8 9.5 7.19 8.51 9.41 3.02 10.3 5.35 8.19 7.42 9.13 8.74 7.58 10.9 8.82 10.1 7.72 12.1 4.99 7.46 10.3 8.3 9.63 7.37 7.26 6.54 9.06 8.25 10.2 8.29 1.81 6.21 5.32 13.4 6.06 4.48 8.37 8.65 7.39 9.1 7.27 4.45 8.9 10.1 9.31 8.04 8.52 9.92 8.72 8.91 9.76 8.12 7.39 10.9 9.07 9.3 7.71 8.42 1.63 0 3.29 5.4 9.25 6.47 8.37 2.28 6.03 2.37 1.63 8.51 10.9 13.4 5.61 8.05 6.8 2.68 7.42 7.46 9.02 9.09 6.86 9.49 6.23 7.29 9.38 8.45 10 10.2 9.87 10.1 10.5 10.5 6.68 11.6 8.72 9.68 10.4 9.91 4.58 8.9 6.1 8.72 8.47 8.42 8.84 8.77 7.71 9.15 7.6 8.24 9.11 10.2 8.82 9.33 9.59 9.26 8.86 4.21 10.6 8.8 9.16 9.02 10 9.9 10.7 8.44 10.3 9.74 8.61 8.44 11.2 9.12 9.63 9.6 10.8 7.65 9.03 10.8 10.7 5.85 11.7 10.4 6.86 7.77 7.02 8.71 8.83 9.11 8.1 8.86 7.73 6.57 10.4 8.15 8.29 9.04 9.46 3.76 10.5 7.89 6.24 8.38 10.4 11 9.27 8.49 8.95 9.86 6.13 10.2 11.3 8.56 8.43 6.29 7.68 8 8.79 6.64 6.34 5.55 8.98 5.47 8.93 8.82 6.71 5.21 5.43 10.6 8.04 4.21 12.1 7.59 3.22 6.86 7.84 10.8 7.45 10.2 10 9.91 3.57 10.1 3.16 9.55 10.5 7.37 11.9 8.82 13.4 8.79 5.01 9.47 10.5 7.17 10.6 4.79 6.52 9.34 7.22 6.93 12.2 9.93 11 1.63 10.2 5.85 1.63 5.69 9.29 8.06 7.38 9.52 4.37 6.93 5.01 10.5 10.7 11.5 8.6 7.11 9.54 10.7 7.85 7.81 10.5 7.08 11.1 14.1 9.76 12.2 9.84 13.3 7.54 9.84 8 9.01 8.65 7.66 9.9 10.7 10.2 9.99 10.1 1.97 10.1 10.2 9.56 9.61 9.08 9.69 4.44 5.58 7.24 1.42 11.1 8.84 9.13 8.73 6.7 1.63 12.4 13.2 8.35 1.63 7.85 9.62 5.37 9.19 9.12 11.2 11.3 11.8 15.1 5.1 7.21 5.12 4.63 2.59 11.9 13.6 9.42 4.31 6.95 9.63 12.1 9.86 9.05 4.75 9.26 4.04 2.12 11.8 8.63 9.28 9.12 8.81 10.6 10.2 3.96 8.17 9.5 8.01 10.6 7.2 10.4 10.6 10.1 11.3 9.01 9.47 9.91 10.4 9.82 10.5 13.4 1.63 8.42 6.97 9.74 8.95 8.56 8.96 9.5 11.4 9.91 6.87 7.12 10.6 10.3 11.4 8.27 9.67 10.1 9.17 9.37 11.6 10.1 4.58 0.51 7.15 13.2 11.4 8.91 8.42 10.1 7.09 9.15 10.8 4.22 10.4 10.1 10.5 10.6 11.9 9.91 6.24 1.17 9.52 3.16 9.44 8.79 5.3 10.4 8.79 3.29 8.5 7.41 8.11 4.61 8.52 6.02 8.72 9 9.85 7.52 9.36 9.8 8.61 7.34 10.7 2.6 9.91 7.18 10.3 10.6 6.04 9.59 9.58 12.2 10 7.96 8.67 11.5 9.11 9.81 0.15 8.86 10.1 1.64 9.55 8.87 9.12 9.81 6.08 8.32 7.9 8.93 10.1 2.94 9.75 9.99 8.77 10.8 14.1 8.68 9.94 6.25 11 8.92 2.25 9.43 8.9 9.58 8.13 12 8.49 11.7 11.6 11.8 11.2 11.6 11.7 5.36 12.8 10.4 7.5 10 7.43 9.72 9.72 3.8 13.9 0.88 11.7 12.1 10.5 7.29 9.38 1.42 11.7 11.4 11.6 10.1 6.58 12.1 8.64 9.31 8.92 10.9 9.29 9.29 7.98 12.6 5.65 11.1 9.87 9.59 9.13 8.16 4.88 0.88 9.94 2.68 1.63 1.63 9.66 3.16 9.96 5.07 4.61 7.23 8.63 1.63 2.59 2.48 4.34 0.5 2.77 11.2 3.76 10.2 12.6 11.2 7.79 7.36 2.86 6.51 8.57 9.69 8.26 0.88 8.66 8.84 8.91 7.96 8.7 6.71 7.75 8.08 7.03 8.36 2.59 7.87 7.23 11.5 9.63 11.2 2.25 4.78 2.59 4.39 9.16 2.25 8.55 8.72 9.94 9.47 6.71 7.84 10.1 1.63 10.2 0.5 4.08 2.37 1.42 10.3 7.2 4.73 9.25 8.19 7.78 8.98 9.97 2.12 10 10.3 10.5 9.2 8.39 0 5.33 9.1 10.8 10 2.25 8.5 10.5 8.31 9.12 5.67 6 2.37 6.19 11.3 0 9.53 10.6 10.2 3.46 10.6 11 9.22 4.68 10.2 9.6 0 6.83 9.16 9.58 8.55 8.97 10.1 8.7 7.94 8.63 10.5 9.17 7.54 3.02 4.08 9.38 3.09 6.66 9.86 9.53 10.1 6.09 10 9.18 2.25 8.18 8.92 10.3 10.1 8.77 3.02 6.81 2.37 7.52 10.3 1.38 8.44 7.06 9.53 8.7 6.96 6.99 8.81 11.4 9.89 8.68 6.15 6.62 10.9 7.28 9.63 0.88 3.22 1.42 3.52 2.77 2.86 1.42 2.86 8.11 10.3 9.6 6.77 9.28 10.4 8.11 8.23 9.99 5.74 9.98 10.7 8.73 7.84 6.88 6.5 0.88 7.41 1.81 6.25 11.4 7.36 9.32 4.56 9.62 11.3 10 10.3 9.41 4.45 7.1 6.09 0 7.84 9.33 8.48 9.46 10.9 7.59 10.4 13.3 11 3.22 8.23 6.71 9.52 8.21 11.2 8.13 11.2 8.94 0.5 9.68 9.89 9.24 6.97 2.12 13.7 3.02 7.05 0 5.92 7.08 6.74 9.47 10.8 8.23 9.78 6.5 6.29 8.57 10.1 2.94 8.92 6.76 4.08 7.49 7.59 4.68 7.81 8.94 9.37 9.09 8.23 9.91 8.27 8.53 7.63 7.78 8.12 8.21 7.25 7.89 7.39 5.53 9.91 8.82 11.6 9.84 8.97 10.3 3.62 9.8 8.4 10.1 9.41 7.88 12 10.4 6.52 9.18 8.12 6.7 6.49 8.5 10.2 8.15 8.43 8.42 10.2 6.67 2.68 6.5 9.59 10.3 10.6 4.21 8.61 5.17 9.3 3.02 7.6 6.65 8 5.97 8.35 2.94 9.69 7.73 5.27 4.31 7.22 9.01 10.5 11.7 8.11 7.7 1.81 8.89 9.91 8.48 9.79 9.7 10.7 3.84 10.9 7.96 4.96 6.82 6.7 10.2 8.9 3.84 8.74 8.89 8.74 9.19 9.86 4.77 9.69 8.95 8.21 9.64 7.4 10.5 8.05 10.2 9.06 9.39 8.97 7.82 8.02 8.42 2.59 9.31 10.5 9.24 8.32 9.3 8.13 9.32 9.18 9.01 9.09 8.04 8.51 1.42 7.99 10.7 8.59 10.2 9.11 9.42 10.2 8.41 10.6 5.38 7.62 7.81 8.79 9.3 7.82 7.84 8.96 0 10.3 9.42 7.97 10.3 8.43 8.53 10.3 9.62 7.97 9.02 9.14 10.6 10.4 9.37 6.19 8.74 7.82 7.57 7.8 8.79 9.34 9.53 10.2 7.61 10.2 8.7 9.27 8.22 9.59 1.81 9.59 10.8 9.78 4.37 10.4 8.64 9.54 5.59 10.5 9.02 10.4 6.81 10.8 7.78 9.17 8.34 6.4 7.84 10 8.17 9.3 10.6 7.61 10.3 6.3 7.67 9.93 9.88 6.97 7.24 8.52 4.63 9.22 6.42 9.63 8.13 4 4.42 3.84 2.93 10.1 9.46 11 7.09 8.22 7.21 10.1 9.79 9.28 8.48 9.84 5.32 5.5 5.21 10.6 8.8 9.43 7.55 8.73 7.5 7.68 8.93 9.66 5.37 11.2 5.19 8.52 9.87 8.42 9.11 9.29 10.9 9.67 9.77 8.05 6.8 9.94 8.5 8.96 0.88 9.41 6.41 4.15 11.5 9.49 9.16 8.79 7.44 1.42 9.37 9.06 6.54 4.39 10.9 11.2 9.54 1.97 4.31 6.62 9.29 10.6 5.9 7.33 9 10.9 2.94 0.88 0 2.68 9.95 10 8.69 9.41 11.1 7.2 8.4 6.85 10 4.81 4.58 6.2 8.69 11.4 9.28 5.09 6.7 8.35 2.37 5.54 2.77 11 9.44 1.63 5.88 8.06 10.4 7.06 7.41 4.68 10.7 8.77 8.67 5.81 11.7 8.5 10.5 11 7.5 0 3.67 9.8 8.54 7.36 9.39 8.06 10.2 6.58 5.67 8.44 6.92 5.49 7.57 8.21 8.92 12.5 7.15 9.03 6.07 5.32 10.9 9.86 5.4 6.89 4.31 1.81 8.55 9.23 9.44 6.27 5.12 4.31 7.49 10.4 8.75 8.33 7.53 11.7 5.85 8.24 11.8 3.29 5.71 9.61 9.45 4.77 8.64 0 2.86 9.06 6.79 6.95 6.35 9.09 7.99 9.6 9.72 6.99 8.94 8.78 8.01 8.43 10.3 3.8 8.03 6.97 10.9 9.32 8.52 6.74 8.79 7.33 9.54 11.6 9.28 8.86 0 10.1 10.4 8.79 8.64 9.26 9.07 7.26 8.55 12 7.4 8.71 8.71 7.58 7.55 10.4 9.22 9.14 8.67 5.37 9.82 7.84 8.71 6.16 9.04 11.1 10.6 8.6 6.04 9.3 9.76 7.54 7.52 10.1 9.56 3.02 8.59 8.11 9.24 9.28 9.38 8.9 9.53 8.11 9.29 3.67 6.67 8.13 0 8 9.46 8.35 8.17 9.07 10.1 5.1 10.2 3.16 9.06 10.6 8.61 8.42 8 10.1 2.48 7.7 9 6.98 9.8 3.57 7.03 6.56 7.97 8.82 9.39 8.17 4.5 10.6 6.57 0 7.64 6.97 8.39 9.63 10.2 4.01 0 10.3 10.5 10.1 6.52 9.78 5.07 7.75 8.26 1.17 7.78 9.57 9.47 9.28 7.53 8.59 10.5 9.93 8.91 7.49 8.73 6.98 12.6 8.2 8.21 10.6 11.2 10.4 8.96 7.64 2.77 8.84 5.54 4.42 9.18 9.73 12.5 10.1 0.88 9.73 1.17 9.99 10.2 7.67 8.85 5.51 0 7.59 0.88 7.14 7.72 10.4 9.53 9.18 1.42 9.86 0.5 0.88 10.8 8.51 9.46 3.71 9.23 9.68 9.49 8.97 9.22 9.84 9.19 4.08 9.67 5.24 5.53 8.87 8.94 9.75 11.2 7.2 10.4 9.2 10.4 6.54 9.02 6.96 6.66 8.04 9.27 1.63 11.2 11.2 10.2 9.23 8.26 9.6 9.35 3.22 8.73 8 11.1 9.34 9.91 6.5 7.25 11.8 9.91 8.69 8.42 10.7 9.75 9.6 8.06 6.49 9.29 9.23 4.11 3.32 9.69 8.24 4 3.57 8.6 5.53 10.6 5.63 8.75 4.89 3.96 10.6 8.46 8.45 7.88 4.28 9.13 8.1 10.8 11 8.6 6.01 10.8 10.8 10.1 9.58 9.33 12.2 11.4 9.1 10.3 10.4 10.2 9 8.95 8.82 9.39 8.38 10.4 8.04 1.81 5.21 9.92 10.1 8.9 7.21 11 2.86 5.47 10.3 10.6 9.98 11.7 11.1 11 4.68 3.88 9.37 6.03 9.02 9.47 10.6 6.48 7.49 6.96 4.88 7.15 4.77 7.47 9.72 10.9 10.2 7.5 8.54 13 8.83 1.97 11.7 7.03 9.82 7.72 6.3 10.6 9.63 10.2 10.3 8.34 9.91 13 10.8 8.85 5.16 11.9 11.4 6.81 11.5 11.2 11 12 12.3 10.2 9.23 5.69 11.2 10.8 8.93 9.94 7.34 8.77 10.6 8.99 8.82 13.1 11.7 6.89 8.16 11.9 9.79 9.65 9.92 6.86 12.8 6.28 9.75 10.4 10.9 8.11 9.17 6.15 4.92 14.2 7.97 6.83 8.26 9.01 7.47 11.3 12.2 10.2 9.62 12.3 10.3 9.23 10.3 10.6 10.9 10.2 9.91 9.11 11.7 7.22 10 6.93 7.88 2.94 9.76 10 10.4 3.46 2.37 4.37 1.42 8.16 12.2 11.1 12.8 9.22 11.7 13 9.72 11.7 9.15 5.38 8.83 10.5 8.9 11.3 9.6 5.26 9.12 6.06 9.84 6.44 5.67 1.88 4 8.12 6.47 4.73 5.84 9.95 5.3 8.59 9.9 4.34 6.5 9.9 10.2 8.36 11.6 9.97 4.37 7.31 4.58 4.7 10.2 9.4 3.84 12 10.9 6.28 9.84 7.36 4.24 7.33 3.22 9.37 3.52 11.9 10.6 12.1 6.56 8.43 6.81 10.1 9.57 8.51 10.4 8.74 4.96 4.75 8.06 10.9 9.92 4.24 8.68 10.1 8.04 5.86 11.5 9.03 7.56 9.69 9.65 2.25 9.14 1.17 8.95 9.98 7.36 8.17 7.71 8.29 8.32 9.77 8.46 9.95 9.9 10.1 5.69 5.19 8.31 13 10.8 10.8 9.82 9.22 9.66 9.15 10.4 11 10.7 9.61 9.84 9.28 9.46 9.9 10.8 11 11 9.23 9.98 10.5 0 9.53 9.59 12 9.53 9.33 10.7 8.04 0.88 11.5 10.3 2.59 7.23 9.74 9.39 11 9.02 8.35 10.3 10.5 9.89 6.69 5.27 2.96 9.51 10.3 12.1 9.1 8.76 10.1 9.57 9.91 10.7 8.27 6.97 11.6 8.34 10.6 2.48 3.09 6.04 11.1 1.17 2.37 11.3 9.54 10.8 10.8 4.58 8.61 8.19 7.33 8.76 10.8 9.85 8.6 5.19 4.5 5.09 2.94 4.81 9.02 8.5 8.35 7.72 11.6 8.86 9.01 6.09 9.5 7.86 7.38 0.88 2.66 8.34 1.76 2.12 7.26 2.12 8.77 11.5 6.9 8.56 11.5 9.75 11.8 9.14 0 9.62 9.59 9.98 9 9.24 8.61 7.14 8.7 8.14 5.22 4.28 7.53 10.2 11 11 2.37 6.09 6.41 8.47 6.79 10.5 9.95 9.09 9.88 10.3 9.38 0.88 10.7 10.6 7.93 6.87 7.09 8.16 7.31 12.4 9.77 8.46 9.23 9.22 8.26 10.5 6.02 3.8 6.59 10.8 6.48 1.81 6.67 5.64 9.69 10 9.38 1.81 6.03 5.14 3.41 7.36 9.76 11.7 9.53 7.42 8.98 10.2 9.25 0.88 7.24 8.42 9.09 6.46 0.88 5.88 8.44 10.1 11 8.72 9.28 7.81 10.3 8.04 5.91 10.4 8.77 9.22 10.8 8.97 9.01 6.23 10.4 10.7 8.34 9.08 12.8 9.43 9.3 7.08 5.14 10.1 3.16 11.2 10.2 8.98 8.21 9.51 8.87 7.59 6.85 9.9 8.32 5.71 8.89 8.67 9.29 10.4 8.82 9.78 8.89 9.27 7.2 8.21 3.93 5.2 7.7 6.55 9.43 11.2 8.75 8.49 8.21 7.44 7.18 8.15 9.54 3.22 7.93 3.02 6.06 8.53 9.99 9.17 6.65 10.6 9.19 6.57 8.52 3.52 1.49 9.28 11.3 11.3 8.9 11.8 7.64 9.25 9.37 7.8 7.01 10.5 9.23 5.5 11.4 9.04 10.1 9.06 7.97 8.06 5.86 9.18 10.9 9.41 9.3 9.7 6.98 10.3 9.81 9.71 9.05 10.3 5.49 8.7 7.98 8.84 9.27 9.75 10.2 10 10.2 9.93 6.07 10.2 3.16 9.5 7.55 8.69 9.37 6.18 5.42 10.3 10.1 9.34 10.7 7.58 7.53 6.32 8.85 11.4 8.78 7.75 8.79 8.68 8.11 0 5.87 4.08 6.34 6.36 4.24 10 11.4 8.13 10 10.1 1.42 10.4 9.94 8.64 10.8 9.58 8.22 5.92 11 10.8 10.7 10.5 6.75 7.59 1.81 10.1 8.81 10.7 8.75 0.5 5.71 8.82 8.95 10.1 8.37 11.3 9.82 5.4 9.07 9.46 10.2 10.4 8.56 9.84 7.2 4 7.36 11.2 6.19 9.51 7.72 3.29 8.6 10.9 10.5 9.57 3.41 9.83 8.18 9.49 5.58 7.96 6.19 9.22 9.49 8.58 9.04 10.6 10 8.34 9.61 9.61 8.74 11.1 6.99 10.6 6.49 8.11 0.88 8.65 10.3 9.2 7.57 2.77 10.7 7.53 11 15.7 8.44 9.13 11 9.35 6.79 6.08 8.7 4.81 4.5 3.62 5.17 10.6 9.52 6.04 4.37 7.53 5.72 11 9.69 8.9 10.6 9.87 8.89 7.36 7.06 11.4 1.81 8.92 8.47 10.9 9.06 9.98 9.55 7.57 8.86 7.85 8.11 9.38 10.6 7.02 8.25 10 2.77 4.48 7.48 8.31 0 8.71 3.76 8.46 8.16 4.18 7.18 5.55 8.28 11.6 4.37 8.28 10.9 7.77 9.05 10.8 10.7 8.35 7.84 9.15 11 9.85 5.71 8.58 8.58 8.94 7.51 9.53 6.58 11 8.02 11.7 8.63 10.4 6.3 9.62 8.94 11.5 11.2 11.6 4.04 8.49 10.9 5.27 8.96 3.8 9.25 8.79 6.18 8.58 6.14 3.62 6.95 5.61 5.91 6.76 3.46 1.63 8.5 11.3 4.48 9.96 10.2 11.4 10.5 10.1 8.84 7.87 8.57 7.06 11 6.11 10.7 5.83 9.59 9.62 8.34 7.83 10.5 9.28 5.07 10.1 8.12 6.67 4 11 7.49 0 11.6 9.11 7.28 9.81 9.76 6.23 9.59 7.67 6.98 6.92 10.8 8.57 3.57 7.54 9.41 7.99 11.6 9.86 11.8 8.76 9.64 8.5 9.07 5.94 11 9.12 10.4 9 10.3 5.22 9.89 10.9 9.38 8.82 10.1 5.92 10.5 12.1 10.5 9.53 4.58 10.5 11.7 7.79 5.21 10.3 8.23 2.86 8.34 5.01 9.2 10.4 12.2 5.93 9.58 10.4 8.1 6.66 9.14 8.5 11.1 11.7 4.94 4.58 9.05 9.31 7.39 4.86 8.03 0 10.6 7.4 9.37 8.83 7.55 3.22 6.44 6.4 9.64 8.75 3.93 8.6 9.56 8.97 10.6 14 6.79 6.95 7.33 10.5 8.68 11.7 9.45 11.6 9.39 10.2 9.74 9.82 11.7 9.22 9.18 10.8 8.39 5.66 7.75 6.33 11.6 8.12 2.94 11 9.3 8.25 10.8 8.78 9.22 10.8 9.56 0 11.6 9.77 10.6 6.92 2.12 11.4 13.8 0 10.6 3.16 10.6 9.49 10.4 6.62 6.5 1.81 5.28 7.19 5.5 8.17 10.2 10.9 8.1 0 13.2 8.84 9.81 8.83 6.11 8.72 9.96 5.25 5.37 2.26 9.89 9.42 8.88 10.8 8.78 10.6 9.35 9.59 8.47 10.7 10.6 1.17 9.34 10.5 3.02 9.83 8.72 7.7 0 8.64 0 10.9 7.85 11.2 4.5 8.33 9.07 11.7 2.37 6.04 1.63 8.25 9.86 7.85 9 10.3 7.24 9.33 7.89 6.43 8.99 11.5 6.07 10.8 5.92 7.02 9.01 10.5 6.06 10.3 9.96 0.5 9.18 9.12 4.79 10.6 9.82 11.1 8.87 9.87 10.1 9.83 8.53 8.61 8.76 8.17 3.16 10.6 12.6 2.68 11.6 8.35 8.73 3.52 7.21 10.4 11.7 6.95 8.27 10.9 9.59 7.39 5.79 8.53 5.92 11.3 1.97 9.52 6.02 9.28 8.21 8.34 7.78 11.5 12.6 10.1 5.32 12.2 7.71 7.89 9.18 8.62 10.5 9.89 10.5 7.67 9.39 3.09 9.47 8.4 8.05 8.73 11.2 8.27 9.17 11.4 10.5 7.88 9.83 9.85 8.92 1.81 9.45 10.1 9.43 6.66 5.64 8.51 9.87 4.84 7.4 9.17 9.65 11.2 9.5 7.54 8.8 6.84 2.59 8.62 12.6 13.9 5.96 10 6.19 9.7 9.41 11.7 10.5 10.5 3.84 3.46 11.2 10.1 7.72 8.95 7.25 10.8 8.39 10.1 10.6 9.99 10.7 10.1 12.4 10.2 10.8 7.66 9.3 9.13 9.14 8.61 9.28 6.94 11.2 11.4 7.74 9.82 9.7 4.9 8.91 8.35 11.7 10.4 11 11.8 10.5 8.96 11 13 10.2 10.1 9.74 9.16 8.69 10.6 10.2 9.92 9.3 9.54 6.91 10.5 9.01 7.74 9.12 11.6 8.47 9.94 10.4 7.75 9.23 11.7 8.36 7.91 9.23 12.8 11.2 6.14 10.7 11 7.96 2.77 11.8 10.5 14.5 8.17 9.74 7.88 9.35 11 6.98 10.6 11.4 10.2 6.76 11.4 9.19 9.32 9.5 5.25 9.29 5.14 10.6 6.41 8.73 10.7 7.12 6.62 12.1 10.3 8.5 9.41 9.99 8.5 12.8 12.4 9.72 8.85 10.4 9.19 9.34 8.03 7.62 9.47 4.08 10.3 10.5 8.65 9.81 10.4 9.02 9.69 11.1 13.1 10.8 7.93 10.6 10.2 9.48 10.6 6.78 11.3 14.2 10.1 2.77 11.8 10 10.4 9.64 9.47 7.7 9.28 9.42 12.1 7.55 11.4 9.42 9.16 11.1 11.5 9.18 10.1 12 7.31 11.3 9.33 9.38 9.36 9.49 10.5 10.3 11.3 6.76 7.06 4.39 8.79 9.82 9.62 11.6 9.23 2.37 9.15 1.97 10.6 7.91 9.6 9.29 8.56 8.58 9.8 4.63 7.57 7.26 16.1 3.02 4.81 8.84 9.38 8.42 9.68 9.4 6.82 9.46 9.17 8.7 10.5 9.79 9.2 11.1 5.93 9.02 9.54 7.44 13 9.11 9.41 8.3 12.1 9.11 9.79 9.74 13.3 8.25 7.9 7.25 8.1 8.54 10.1 8.15 10.4 9.49 12.4 9.32 8.89 10.1 10.2 8.78 9.99 12.5 11.4 8.85 10.8 11.8 10.8 10.4 11.2 10.3 10.1 6.08 10.1 10.3 13 5.5 11.6 10.1 8.57 9.99 9.73 10.1 10.1 11.1 9.79 11.8 10.8 5.21 10.6 11.1 6.71 10 12.4 11.8 9.13 10.4 10.3 3.16 11.1 9.09 10 11.2 8.15 10.4 8.55 10.5 9.84 8.65 10.4 10.5 11.2 9.27 8.93 10.6 5.98 10.3 6.02 10.1 8.98 8.86 3.2 8.9 2.59 8.43 9.37 11.5 10.2 6.44 8.83 9.11 10.8 9.14 9.06 9.7 7.76 8.11 9.21 9.24 9.74 9.16 7.5 5.58 10.1 8.34 11 6.64 10.1 11.6 8 10.1 5.55 11.6 10.5 10.3 10.3 10 11.4 9.98 9.95 9.8 12.1 10.8 10.4 10.7 8.01 9.22 9.35 11.4 7.37 9.84 9.46 11.5 8.94 12 8.07 8.67 9.3 10.2 9.3 10 12.2 6.31 9.52 10.4 9.37 13.6 9.08 8.96 10.2 8.31 9.11 11.4 9.84 10.8 8.05 6.71 8.33 10.1 7.71 9 10.6 11.4 11.5 8.59 11.9 10.2 9.24 8.84 8.6 10.7 11.4 8.69 10.2 8.4 10.1 9.11 5.66 11.2 10.3 7.95 8.98 11.2 11.2 7.05 8.04 5.82 9.93 8.41 8.19 13.3 9.07 8.09 10.4 4.98 8.26 4.56 10.2 9.41 10.6 8.37 11.1 9.1 9.49 2.68 11.7 10.6 10.3 10.2 2.62 10.4 9.26 10.2 7.98 10.1 12.7 8.79 9.47 11.2 8.41 11.6 9.72 10.8 11.5 9.01 11 2.59 11.1 9.09 8.58
-TCGA-P7-A5NY-01 6.86 4.64 11.6 12.1 7.68 8.95 1.06 9.3 8.57 6.15 7.46 8.2 6.94 4.16 2.91 8.8 9.06 10.7 6.23 9.66 9.23 2.86 9.31 1.67 9.49 9.15 5.13 9.67 4.52 8.85 4.29 6.66 9.93 0.35 1.89 0 1.67 6.34 5.58 3.54 4.62 4.9 4.64 0 4.32 2.91 1.24 5.5 11 7.18 3.28 7.68 7.39 7.35 5.99 0.35 6.26 3.97 6.75 6.07 9.57 3.84 7.42 9.44 3.06 3.67 8.59 9.34 10.2 4.29 5.34 6.86 3.15 1.67 8.42 4.36 4.94 3.73 4.99 1.4 4.77 0.86 2.61 8.24 3.19 0.35 5.95 1.54 1.54 2.56 9.19 6.48 5.2 2.34 5.5 4 0.86 2.42 3.77 0 4.92 5.93 4.24 5.23 5.3 2.75 5.36 6.97 7.22 5.99 2.62 1.4 6.86 2.62 5.25 1.89 2.82 1.24 3.78 6.07 6.41 3.87 2.13 1.67 2.26 5.81 1.79 2.09 1.24 14.3 3.35 3.6 4.07 5.45 2.96 2.26 3.4 0.63 3.85 7.99 6.23 12 0 4 6.42 11.7 0.35 10.8 0 3.19 4.88 1.06 5.38 10.1 11.1 0.86 1.06 0.67 10.3 4.22 5.88 5.37 5.25 7.83 10.1 6.03 6.01 1.54 5.76 7.28 10.3 10.4 3.97 4.22 3.78 5.65 3.73 3.31 7 3.68 3.5 8.44 5.68 4.65 7.3 1.91 1.4 2.56 7.63 5.78 8.82 9.6 5.23 5.88 6.2 6.75 6.37 7.67 9.69 9.15 5.72 9.49 8.79 11.4 9.59 0.86 7.82 10.3 10.4 10.2 6.3 0 11.5 10.5 10.6 10.5 9.56 11.8 6.57 10.4 6.26 11.1 10.3 11.2 8.55 8.88 2 9.04 8.99 13 11.1 3.47 9.02 12.2 8.82 8.56 10.2 5.83 11.1 3.76 8.89 4.92 11.4 11.1 11.4 9.86 11.3 12.3 5.67 12.9 3.76 1.54 4.87 9.56 9.52 0.63 9.27 10.5 0 11.2 2.18 10.3 6.58 10.2 10.6 11 7.99 11.2 12.1 10.9 7.17 2.62 9.05 9.74 12.1 10.7 0.35 11.5 10.8 12.3 12.5 9.5 10.4 9.11 9.64 11.1 10.9 5.77 11.1 10.9 3.54 6.29 11.8 5.86 11.5 10.5 11.3 11.5 10.4 7.55 0.35 12.7 8.46 7.55 9.06 9.7 0.63 8.62 6.23 8.75 12.9 7.21 2 9.02 6.77 11.6 10.1 10.2 7.73 6.73 9.82 10.8 9.73 8.86 10.6 9.55 11 9.63 9.97 11.1 7.97 8.67 10.7 8.19 10.3 10.1 9.55 7.99 7.57 7.66 10.6 6.15 9.65 9.22 8.48 13.8 9.34 9.57 11.9 9.82 10.5 1.25 9.53 7.21 4.2 8.58 9.18 10.2 3.11 6.08 1.54 9.29 8.63 9.82 8.58 7.36 11.1 0 8.5 4.73 4.61 11.1 10.2 11 10.8 6.23 8.79 10.8 10.1 8.4 9.2 9.52 7.76 8.8 10.4 10.1 7.82 9.05 8.54 10.3 1.89 7.81 10.6 9.53 4.69 10.8 9.42 6.94 7.83 12.3 8.49 9.59 11.8 8.74 7.55 11.6 8.81 9.54 9.35 11.7 0.63 9.5 10.3 9.08 9.33 12.2 9.1 9.66 7.35 4.73 10.7 6.86 11.6 11.3 5.38 11.1 8.96 10.6 10.8 10.2 12 13.8 8.84 9.41 6.8 7.85 9.62 6.99 8.72 9.54 9.23 13 11.3 3.67 9.91 5.11 9.16 5.52 0 9.1 3.36 9.79 5.52 9.58 8.74 8.44 6.77 11.1 0 3.11 7.41 9.56 11 4.02 8.68 8.73 4.02 5.74 6.07 6.82 5.56 9.83 7.93 9.09 7.83 10.4 7.8 10.3 8.34 2.09 14.4 10.6 5.95 10.2 12.5 6.35 11.8 9.99 7.46 7.75 6.24 9.92 8.28 4.62 11.5 7.52 7.61 10.4 11.4 11 10.1 13 11 6.73 8.71 10.4 9.44 6 11 0.35 3.89 10.4 0.35 10.5 7.59 10.9 7.43 6.84 8.26 9.67 4.67 10.8 8.95 11.2 11 10.7 9.14 10.3 10.5 3.47 10.7 10 8.21 5.5 8.25 8.85 8.56 11.8 10.4 10.8 11.1 9.45 10.9 10.6 10.6 0 9.46 4.36 9.84 8.92 10.7 12.2 9.28 11.6 7.37 8.55 7.71 4.44 11.8 8.96 6.99 11.2 9.54 2.8 8.92 10.7 9.16 9.11 10.3 11.2 6.15 11.6 9.79 9.04 10.4 10.5 10.6 11.2 10.9 2.56 11.5 10.2 10.1 10.3 11.3 10.7 14.6 11.3 9.35 9.86 9.32 9.74 0.86 6.85 10.2 8.24 8.63 9.55 9.94 7.61 6.17 10.4 10.1 9.64 1.06 7.62 10 6.28 7.99 13 9.88 10.4 10.3 13.2 10.6 11.1 11.3 12.8 0 10.8 9.2 8.44 6.95 10.9 1.24 2.09 9.28 10.1 11.6 10.3 10.1 8.76 10.3 9.83 13 0 11.4 8.9 11.2 6.9 8.65 8.02 10.8 9.18 5.11 8.19 8.27 0.63 0.63 11.6 10.8 3.15 11.1 0.35 10.8 8.99 9.77 9.8 12.3 11.9 11.1 11.1 2.42 11.2 4.62 9.5 9.03 9.24 11.7 9.19 9.05 10.3 10.6 8.43 9.22 13.2 1.4 7.67 11.4 9.4 10.3 9.85 5.82 10.1 11.3 9.75 11.8 8.08 3.81 11.7 9 9.71 10.3 7.99 10.6 9.16 13.1 5.53 6.65 8.5 6.78 8.98 10.6 6.88 10.1 11.5 8.26 9.26 4 12.1 3.15 9.34 6.26 5.6 1.62 8.05 11.1 9.33 3.76 2 8.19 6.33 10.4 10.3 12.4 11.2 10.8 10.9 10.4 9.21 4.52 0.63 1.06 10.1 3.28 7.97 8.85 5.7 11.6 10.3 10.7 5.81 8.02 6.73 10.3 11.1 8.52 0.63 12.3 10.7 6.33 2.91 5.37 12.1 10.3 2.62 10.6 9.56 5.09 10.5 9.92 7.99 9 7.69 13.4 3.73 9.98 11.6 11.1 9.99 12.2 10.5 11.7 5.11 5.18 3.25 11 0 2 0.86 9.53 9.3 9.83 11.4 1.4 8.91 9.04 4.24 4.62 8.92 8.65 5.56 5.81 10.3 8.69 0.35 9.59 9.85 10.2 9.44 10.5 10.7 7.97 11.7 10.3 8.69 9.16 12.7 9.65 7.34 8.46 7.87 5.73 6.49 12.5 6.14 7.36 4.96 5.54 8.77 8.33 7.23 9.66 2.75 13.1 8.98 0.35 0 9.64 8 12.4 10.1 8.72 6.98 8.57 14.1 8.5 8.2 9.66 7.18 11.6 9.36 9.11 0.63 3.39 1.4 11.1 8.57 9.2 11.2 5.44 8.06 3.78 10 12.2 8.37 4.51 5.06 4.34 5.67 8.47 9.31 10.7 10.8 4.49 2.26 9.13 0 8.26 0 11.6 8.63 8.51 6.77 1.06 11.4 7.51 8.54 9.68 6.94 2.18 10.6 8.61 11.6 9.05 12.2 9.2 10.6 9.13 11.3 8.81 9.11 9.92 11.1 9.37 0 7.81 0 11.6 9.77 12.9 0 10.3 11.2 11.3 10.5 11.7 4.16 6.4 11.2 10.6 10.9 2.26 12.9 3.6 11.7 6.57 8.65 10.9 7.35 0 8.51 12.3 11.5 9.75 10.2 10.8 11.5 9.1 11.6 10.4 10.9 8.57 11.9 13.1 11.2 12.1 10.8 12.2 12.5 11.9 7.42 8.21 9.39 9.52 9.9 12.9 12.8 9.85 6.98 10.8 7.68 9.46 11.2 7.1 11.8 11.3 6.53 11 10.5 11.2 11.2 5.95 1.24 12.5 2.42 10.5 6.99 10.2 8.16 5.7 5.85 5.41 8.94 1.46 0.35 6.39 9.15 4.24 11.5 6.23 9.73 10.5 9.1 7.68 10 8.99 9.86 9.75 2.56 3.13 0.63 2.75 7.22 9.01 2.96 12.6 3.39 6.91 0 8.94 13.1 9.38 9.03 0.35 9.43 10.2 8.61 11.6 10.6 9.9 8.42 11.8 8.66 10.9 9.69 7.2 2.18 8.1 6.38 8.99 8.6 8.42 10.8 12.7 10.1 8.52 8.79 12.5 4 9.27 10.2 12.2 8.62 8.78 10.6 9.31 8.43 6.24 8.89 1.89 7.77 9.24 9.78 9.39 11.7 8.77 9.5 9.33 8.17 6.65 9.53 6.93 9.97 9.84 7.56 11.8 10 9.37 10.4 10.2 5.13 9.31 3.06 11.2 8.75 9.11 19.6 7.28 1.24 8.33 6.97 7.87 0 10 10.2 20.1 11.5 9.89 11 5.48 10.4 6.31 6.53 2.86 5.7 8.25 10.1 8.35 7.55 3.81 8.18 7.85 8.32 7.81 3.39 9.47 9.97 6.87 8.82 9.3 9.26 10.9 12.3 5.45 1.24 7.61 11.8 5.09 1.54 11.3 6.64 9.94 8.1 1.54 12.4 9.09 9.16 2.91 8.41 8.35 0.35 12.6 12 8.41 10.4 8.03 8.91 9.58 10.1 11.9 10.2 8.94 4.14 9.64 3.19 10.1 10.2 7.07 11.8 11.8 9.02 7.83 7.74 1.24 6.4 6.97 10.3 1.06 12.3 10.8 1.67 8.81 9.97 10.4 11.5 6.01 10.1 8.92 9.76 5.76 7.99 10.7 7.29 5.23 2.62 9.91 10.1 10.4 7.31 1.54 7.98 6.71 8.51 9.56 8.34 9.83 0.35 2.69 8.74 10.6 8.81 9.76 10.8 8.87 6.24 10.9 12.5 11.1 8.05 5.31 3.11 9.15 8.96 9.53 8.86 7.09 4.36 0.86 6.58 7.01 11.3 7.8 9.14 8.23 1.24 11.5 9.05 10.7 9.04 3.47 2.8 8.8 7.61 9.33 9.35 8.18 6 9 8.83 7.73 11.6 10.2 10.7 8.12 7.3 6.8 9.46 7.74 7.74 8.25 7.67 10.6 3.6 8.43 7.08 4.18 8.68 11.5 3.19 10.9 7.37 4.59 10.7 4.42 2 9.3 10.1 7.04 11 12.6 9.7 5.29 5.8 10.6 10.6 11.8 10.2 6.4 9.71 5.61 2 11.5 8.06 3.06 11 11.2 11.1 10.4 10.9 9.9 13.1 11.5 2.46 7.89 8.01 8.21 11.7 10.5 8.88 10.2 8.38 12.8 7.4 8.32 2 11.1 8.2 6.24 15.1 11 6.62 8.52 8.97 7.45 1.89 7.98 11.4 9.27 4.73 0 10.3 4.3 6.65 7.28 6.64 7.4 3.15 5.9 10.8 8.97 10.9 3.06 7.96 7.68 4.5 9.78 8.74 2.73 4.2 1.06 0.63 7.95 0.35 8.71 7.7 10.1 13.2 4.26 0 9.33 9.13 2.62 9.98 9.64 9.96 8.35 10.5 1.79 9.04 8.38 9.92 8.38 4.57 4 5.75 10.2 9.7 9.5 8.78 5.79 6.73 5.35 10.8 1.06 8.96 8.64 3.01 2.18 8.03 7.63 9.82 8.15 10.7 9.87 5.46 7.82 6.76 3.24 6.37 2.18 5.83 3.76 4.59 10 9.29 8.81 11.9 11 9.9 9.26 7 9.96 9.1 9.43 5.38 0.35 9.55 9.36 8.05 4.1 0.35 8.15 7.29 12.9 9.18 10.3 7.15 3.76 1.89 8.27 8.22 11 13.1 6.93 0 0.63 8.81 8.93 3.7 4.42 7.96 8.62 8.52 11.1 7.7 7.97 9.39 6.55 2.09 0 1.06 6.4 0.35 8.58 10 8.62 3.6 9.91 3.06 0.35 5.62 8.65 8.32 9.16 3.63 9.95 6.84 7.32 7.71 4.62 2.8 5.98 3.06 10.7 9.16 6.41 8.42 7.89 9.55 8.03 11.6 8.12 10.4 12 0.63 10.4 1.34 9.83 8.14 10 7.27 5.86 9.77 0.35 8.99 7.37 6.14 1.24 4.73 0 8.69 6.06 6.53 9.35 4.14 1.28 6.46 0 0 10.1 8.22 5.59 9.28 9.46 0.35 3.76 3.19 7.34 9.48 10.3 1.79 7.58 2.69 7.1 9.36 10.4 9.21 11.2 5.76 9.05 11.3 9.3 0 9.55 6.46 1.54 4.47 8.98 8.85 1.89 8.94 2.34 6.95 4.64 13.5 9.66 10 5.6 1.79 6.86 9.24 9.74 6.35 6.88 12.9 0 5.91 11.3 10.6 9.6 8.81 7.82 11.7 0.63 6.8 3.28 8.07 2 8.22 9.15 5.5 5.76 9.38 11.4 7.01 1.24 4.57 9.97 9.38 11.1 7.52 9.56 1.06 5.81 9.28 9.26 7.22 10.2 15.4 10.9 6.26 2.56 4.78 9.38 6.44 2 9.51 10.9 9.08 7.98 9.46 3.97 8.53 10.3 11 14.2 2 8.42 8.31 2.09 9.4 7.49 9.85 0 4.49 5.13 9.09 9.5 10.4 1.24 7.35 11.7 1.06 3.01 6.69 11.6 10.8 4.36 9.11 4.32 7.32 14 0 7.82 8.47 3.06 1.54 7.85 9.24 1.67 7.79 10.3 0 1.54 2.75 8.05 5.79 6.18 7.6 8.04 6.28 10.3 7.44 5.06 9.15 8.88 6.89 7.84 7.61 8.72 9.25 2.56 7.89 9.13 2.49 7.59 5.28 11.8 2.09 1.54 8.24 0.63 9.46 0 8.4 6.37 8.27 9.71 0 7.14 3.89 4.75 4.88 2.09 11.1 6.06 0 8.05 5.07 3.95 8.98 9.73 6.65 7.65 3.18 7.14 2.91 7.23 7.51 6.87 2.09 7.92 5.89 8.36 0.35 0.35 7.52 9.96 2.49 1.89 8.21 7.91 8.55 11.2 9.65 1.06 8.24 8.76 9.45 12.3 9.79 2.09 1.06 9.17 9.07 0.86 7.01 0.86 8.21 8.94 8.19 3.93 1.54 1.4 9.64 8.05 7.73 9.52 10.6 9.33 8.27 0 6.98 6.3 9.51 9.03 9.52 8.07 6.2 6.65 9.62 12.2 8.35 8.76 0.35 8.33 2.09 8.72 7.89 3.87 6.97 1.79 7.14 10.1 0 10 8.89 0 2.75 4.28 8.71 5.99 6.49 5.89 7.64 8.12 10.5 8 0.86 1.54 8.16 5.78 2.8 0.35 7.67 5.7 5.87 10.2 9.87 6.79 0.35 9.52 8.48 5.85 10.8 0 4.72 5.2 7.27 7.65 10.5 0 9.7 6.87 7.75 7.75 2.09 10.5 7.3 2.8 3.06 7.65 0 11.3 9.71 6.55 8.68 8.83 0.86 8.52 1.24 1.24 0 6.49 2 9.37 0 2.15 6.83 9.81 13 8.61 9.56 3.6 11.4 8.81 5.22 6.1 8.05 0.37 0 7.96 1.79 7.44 4.59 9.63 11.3 7.52 9.3 4.88 11.8 11.2 12 0 4.75 10.1 1.89 11.2 0 7.16 9.89 11.7 3.6 3.5 11.4 0.35 0 1.89 7.6 11.1 3.97 9.64 4.44 8.66 4.04 4.44 10.1 11.3 10.5 7.17 7.09 3.15 2.34 8.29 5.07 1.79 10.3 7.56 4.11 4.92 6.88 5.54 11 9.11 8.93 10.1 10 8.34 10.9 4.09 10.3 9.28 10.5 9.34 2.56 10.6 7.95 8.78 7.86 7.62 6.44 0.35 7.29 8.41 4.76 9.82 9.51 8.49 9.61 7.26 3.47 8.08 1.4 7.21 8.33 6.4 3.6 0 3.97 9.38 10.9 0 4.64 6.36 3.47 4.42 10.1 6.5 6.99 8.52 10.8 6.45 10.2 7.65 2.09 8.69 1.79 1.67 6.52 9.49 8.89 9.4 8.16 4.9 6.62 0.35 1.24 6.48 8.41 8.52 7.16 7.49 6.3 1.4 0 8.55 6.24 8.34 0 9.65 0.86 10.3 13.3 10.1 2.42 8.52 12 0.63 7.4 12.6 10.9 9.3 9.01 8.82 0 12 9.1 1.54 9.92 1.79 0.86 8.39 8.71 7.24 4.75 7.39 9.93 0.35 0 6.55 9.93 7.25 8.01 0.86 4.36 2.6 4.86 8.68 7.29 13 6.13 10.1 9.32 5.78 11.2 4.83 7.76 2.42 10.4 7.75 2 9.43 7.86 0.35 5.12 5.63 12 10.2 8.15 11.9 9.21 0.35 1.4 8.53 7.5 11.5 10.8 8.3 9.11 9.77 7.46 8.08 3.81 7.34 7.63 9.48 9.39 4.22 8.07 11.7 9.14 7.87 8.79 10.4 10.1 6.82 11.5 6.55 11.2 10.7 7.88 12.4 12.1 12.2 10.5 2.53 7.89 7.71 5.89 1.79 8.46 4.83 10.1 0.35 9.96 1.31 0.35 1.24 3.89 4.34 7.74 0 10.9 1.06 3.32 15 0 0.63 2.34 0.63 2.75 8.47 5.38 3.58 2.86 4.22 8.25 3.6 2.56 8.86 10.4 9.75 6.56 8.25 8.01 8.49 3.57 4.72 6.67 8.15 0 3.06 10.4 7.1 0.35 10.6 0.86 0 4.75 4.73 6.27 7.3 6.93 0 9.2 10.7 7.14 5.31 4.52 9.89 9.07 8.95 5.46 10.7 8.05 1.06 10.9 12 8.47 0.86 9.55 7.97 3.43 7.6 7.59 9.7 8.98 10.5 12.5 4.3 5.59 3.67 8.29 9.93 8.05 11.2 11.4 4.76 12 2.93 9.68 8.63 9.8 3.01 10.9 10.7 2.49 4.72 5.25 7.11 2.96 11.9 11.4 10.7 8.8 0.63 8.17 7.47 0.35 0.35 11 2.71 4.65 7.11 7.51 5.85 7.68 6.28 6.14 8.23 1.7 7.46 11.8 4.07 9.43 0.35 1.79 10.5 10.6 1.06 10.4 9.64 6.01 6.91 7.23 4.77 5.4 8.15 9.98 6.8 9.98 1.24 11 0 8.23 6.74 4.34 1.24 12.1 8.6 7.22 2.62 2.56 5 2.86 3.11 2.42 7.07 10 2.86 9.57 9.33 4.07 11.3 8.36 10.1 9.41 8.23 5.74 9.92 11.3 6.72 7.03 8.13 8.59 1.4 5.38 7.28 9.99 4.6 4.11 5.77 8.67 8.5 9.86 5.15 5.87 1.89 2.18 9.15 5.59 8.47 8.77 7.17 7.6 8.74 4.87 3.95 7.06 7.99 5.86 1.54 12.1 9.75 8.94 8.4 6.95 5.27 1.79 3.47 4.47 9.82 0.63 0.35 3.07 7.24 5.38 10.1 4.09 7.68 8.55 10.4 8.9 7.28 12.5 0.63 2.09 7.02 12 5.06 7.94 10.7 7.58 0 9.44 8.72 9.67 2.18 5.56 8.71 9.65 9.31 10.2 8.16 6.6 2.58 5.79 2 8 3.01 0.63 9.23 1.06 2 10.8 8.1 8.7 8.05 1.06 2.75 9.75 8.49 9.06 3.43 10.5 1.24 1.67 3.5 12.1 3.54 7.51 8.83 5.97 0 1.54 11.9 8.22 7.91 3.32 4.8 4.14 4.47 3.19 11.8 7.41 6.22 1.06 2.56 0 1.67 3.6 2.42 0 7.36 1.06 2.69 2.42 0 3.28 0 7.91 3.15 5.45 9.56 4.43 9.05 4.4 8.3 7.66 7.67 12.9 0.63 4.26 4.97 8.74 9.79 8.25 9.1 1.67 0.35 1.24 3.43 7.57 7.19 2.18 7.47 11.2 5.48 5.86 8.33 3.39 7.54 2.09 6.56 7.69 8.16 1.67 9.17 1.79 10.1 0.86 2.26 7.77 4.77 7.8 6.63 5.8 2.56 0 9.41 8.48 5.91 7.66 5.86 8.91 7.2 7.39 7.99 3.76 9.6 8.89 4.24 7.01 1.4 6.32 8.1 6.13 0.63 5.8 7.87 6.25 9.54 3.97 9.48 6.52 8.87 6.79 1.54 7.07 7.41 2.42 8.82 10.5 7.6 3.84 7.44 8.22 10.3 6.98 8.36 10 3.47 11.6 4.04 1.24 8.87 9.14 9.66 6.19 4.3 8.66 3.98 4.52 8.09 0.35 9.21 9.5 0 8.86 4.99 6.04 2.62 9.16 0 5.3 0 9.3 10.4 7.09 2.34 1.67 0 7.67 5.11 1.67 11.7 12.1 0.35 8.62 7.46 6.23 12 8.72 10.7 0 7.63 11.6 0 5.79 9.46 0 0.63 4.36 0 3.38 2.75 7.32 6.59 1.4 7.43 8.39 6.25 6.06 8.99 1.13 6.95 2.62 8.47 7.66 8.23 7.11 4.42 10.3 5.05 9.45 2.26 4.33 3.11 9.54 8.39 2.56 5.2 10.4 7.28 3.78 2 8.63 5.54 13 8.35 14.2 7.55 5.34 0 4.22 9.05 8.97 5 0.35 2.34 6.49 7.26 7.47 8 8.62 6.1 1.4 6.62 5.88 5.23 2.77 7.35 4.07 8.54 7.85 7.33 11.5 1.24 5.06 2.34 2.09 5.8 4.94 8.98 2.69 4.38 11.2 8.92 10.2 4.22 0.86 8.01 0 8.29 7.89 9.74 1.06 9.56 9.25 6.54 8.88 5.6 7.86 7.97 9.87 7.65 6.71 5.8 2.18 7.61 3.36 10.1 8.02 6.56 6 11.8 3.84 8.66 9.5 10.9 6.81 4.84 6.4 6.96 7.86 5.75 9.04 7.12 0.63 9.3 7.05 9.07 1.89 8.93 6.14 11.7 10.2 9 2.75 1.4 8.22 7.12 3.67 3.76 11.3 7.09 9.66 10.1 11.5 8.55 7.96 16.7 7.8 0 9.92 10.8 6.21 6.53 8.08 5.69 0 3.11 5.09 10.8 7.8 6.27 4.72 1.24 0 11.4 6.31 12.4 7.51 8.11 1.24 7.68 3.7 0.63 6.71 0.63 4.44 7.62 7.12 6.9 0.63 8 3.99 0.86 9.2 8.79 0.63 9.85 12.8 0 3.87 9.73 0 8.18 6.77 7.13 8.92 12.9 0.35 2.91 3.73 10.2 3.39 6.67 9.47 1.06 5.87 11 3.89 4.57 11.2 1.54 0 6.12 0 5.3 8.57 10.2 10.1 4.76 7.35 0 8.07 6.62 9.87 9.73 7.84 3.32 3.24 10.2 5.78 5.5 5.43 6.35 9.98 0.35 9.27 5.93 0.63 3.63 6.77 5.14 6.2 7.85 5.39 1.79 6.88 5.23 7.35 0.63 10.6 2.8 10 4.28 4.82 7.65 0.35 4.87 9.94 5.78 13 6.83 7.08 9.55 1.81 8.34 5.36 0.35 0 5.57 0 8.67 7.43 3.81 10.7 10.8 6.82 10.6 4.26 8.22 7.08 0.35 10.5 9.25 3.89 11.1 2.09 6.66 12.1 10.7 6.13 8.45 3.47 10.6 7.25 0.35 11.3 5.79 1.06 1.06 11.2 9.4 2.18 6.57 10.9 11.3 7.76 8.33 8.62 8.37 4.54 6.63 9.05 7.89 12.1 11 4.02 8.72 6.26 8.39 8.99 1.24 5.19 4.51 9.15 5.08 7.94 10.3 4.34 10.6 0.35 6.82 9.76 0.86 6.08 8.96 3.47 5.64 8.13 6.28 10.2 11.8 7.92 16.4 9.45 8.64 0 7.36 4.67 10.2 0 2.18 9.01 0.35 1.24 0.63 8.81 4.88 5.66 11.8 11 8.29 7.46 7.71 6.76 8.66 5.81 7.45 3.89 10.3 6.64 1.67 13.2 7.37 8.39 7.52 6.97 6.52 0.63 6.99 6.54 7.1 8.86 9.09 4.92 6.88 1.54 9.41 5.3 6.2 9.5 3.88 9.35 0 10.5 7.77 10.7 9.28 12 0 7.26 3.81 0.63 3.63 5.85 10.1 10.4 13 10.8 0 7.27 0 13 2.34 8.53 0.63 2.8 13.4 9.64 0 9.38 1.46 0.86 0.35 3.36 7.32 12 9.9 11.2 11.4 4.61 1.4 2.34 1.24 9.37 12.9 11.9 7.86 12.9 13.7 2.26 6.35 12.3 1.79 6.65 9.84 1.24 9.72 0.35 6.58 13.7 12.2 2.34 9.35 5.74 9.59 0.35 7.55 7.94 10.7 10.4 8.57 8.71 7.36 6.34 5.73 4.11 5.2 9.27 0 8.34 0.35 9.04 8.5 6.67 0.63 5.11 5.67 3.81 7.99 3.06 7.96 5.74 6.37 1.54 6.72 4.73 10.3 7.18 1.67 6.2 7.53 7.97 0.35 4.91 7.5 8.47 3.46 8.67 6.81 2.62 0.86 7.97 9.39 4.28 7.07 3.28 8.88 6.31 11.1 0.35 3.57 7.49 0.63 0.86 9.96 9.23 4.11 10.3 6.45 0.35 9.94 6.92 2.96 0.86 1.54 2.49 10.4 7.49 6.14 8.83 5.7 9.48 0.63 9.75 10.6 0 0 1.06 7.02 11.4 7.02 8.78 0.35 9.23 8.07 10.6 10.6 10.4 7.32 7.88 6.47 10.7 13 7.64 10.2 7.99 6.48 0.35 6.11 9.71 10.8 10.8 11.2 11 9.16 10.7 10.8 9.05 6.55 0.35 2.86 9.7 8.97 7.48 11.9 2.49 10.7 9.64 4.84 4.65 0.63 4.3 5.38 5.69 10.4 3.15 6.27 10.5 14 8.84 11.8 10.7 12.4 11.3 9.78 6.73 8.28 4.62 7.66 5.95 9.79 6.91 8.5 9 13.1 0 9.05 7.06 1.06 8.94 12.3 13.3 6.14 9.05 1.06 3.28 9.64 8.86 5.66 5.48 12.3 3.78 9.91 1.24 9.94 11 4.38 10.8 10.1 8.37 6.62 6.8 7.49 7.69 11.3 3.6 11.9 7.95 6.89 12.2 11.7 6.02 10.5 0 11 9.59 9.23 10.7 10.9 9.92 7.34 7.46 3.95 8.37 10.3 6.62 8.64 8.64 8.67 3.95 12.7 0 6.55 11 11.2 8.81 8.46 8.81 9.18 8.35 8.52 7.01 4.76 10.1 10.7 8.71 9.22 9.7 15 0 14.5 8.17 10.7 6.39 6.32 12.6 11.1 11.5 12.8 14.7 10.2 7.66 5.16 2.34 9.24 8.89 9.52 5.2 0 11.3 10.1 6.57 11.5 10.8 5.67 11.4 8.31 8.16 5.45 7.31 5.05 3.78 4.02 8.61 4.2 9.33 1.89 6.82 8.01 3.84 9.47 10.8 10.9 1.89 9.14 10.8 8.95 9.97 10.8 8.99 11.7 9.17 2.42 9.93 9.06 6.41 6.28 11.2 5.22 6.55 7.23 5.78 3.87 2.09 0 10.6 1.89 6.36 8.81 8.76 5.35 12.4 6.9 8.54 7.55 4.3 6.12 9.11 14.2 8.22 12.8 9.29 6.65 10.1 12.5 14.2 12.2 11.6 3.32 6.28 1.24 9.87 6.15 6.52 10.6 6.44 9.88 0.35 8.66 0.35 8.9 7.84 0 5.13 10.5 7.28 7.89 8.73 1.06 9.17 2.69 7.09 7.53 0.35 9.45 0 8.81 12.4 12.3 6.42 0 1.67 9.6 8.09 5.62 8.7 10.5 0 5.81 0.35 1.4 11.1 10.1 6.04 8.99 7.6 0 7.01 2.96 7.16 2.42 8.78 0.35 0.35 2.09 7.31 6.05 5.23 2 10.5 11.1 4.16 8.56 9.73 7.49 4.17 6.31 7.85 0 6.9 8.49 9.43 8.36 3.36 8.39 9.36 7.24 10.1 9.58 8.3 8.97 8.19 10 7.28 10.5 7.06 8.6 9.88 3.39 7.47 7.24 7.66 8.4 8.76 11.2 2.62 7.8 1.06 6.57 4.65 10.7 1.67 6.71 7.71 6.46 10.1 0 0.35 10 8.92 1.4 0 11.4 7.64 10.5 5.13 2.42 2.75 8.97 10.2 9.38 8.65 5.44 9.74 5.97 6.08 8.59 6.83 6.11 11.3 8.74 1.4 11.8 3.01 3.73 2.34 1.89 0 13.4 3.84 6.81 6.25 12.6 0 11 11.7 6.96 7.77 13.6 9.27 1.06 4.97 0.35 8.78 9.81 5.2 7.29 10.3 8.33 7.38 10.8 2.49 12.2 8.34 10.2 8.03 7.53 10.8 12.8 9.41 10.3 12.2 9.44 11.3 0.35 5.6 1.06 5.93 6.4 6.81 0 10 5.79 0.35 5.63 8.42 6.39 8.97 8.05 10.6 9.94 9.15 8.34 8.26 10.4 0 8.72 8.63 12.4 8.09 10.5 9.49 1.42 9.67 7.99 2.56 0.86 5.46 9.85 8.7 1.4 11.8 1.67 9.15 10.6 8.66 10.5 7.37 10.4 7.72 11 10 7.28 9.75 10.1 5.47 11.3 11.1 3.11 9.07 0.35 11.5 9.86 11.2 10.2 8.5 9.7 10.1 6.96 4.69 7.16 1.54 11.3 1.4 8.33 8.25 6.61 5.27 5.67 1.24 3.43 11.9 8.87 10.5 6.72 9.23 10.5 4.11 3.84 13.6 5.44 10.3 6.19 0 7.95 9.94 2.69 3.06 7.98 3.73 3.24 8.81 10.6 9.25 4.94 10.2 6.68 5.66 0.35 11.4 7.91 5.58 5.04 6.48 5.95 6.57 1.24 10.2 11.1 11.7 7.48 10.4 10.9 2.49 8.17 7.63 8.45 10.6 7.65 3.15 10.7 8.75 6.07 5.8 11.6 10.1 6.68 3.57 9.65 8.78 2.62 2 8.49 3.5 13.7 11.9 7.14 8.51 8.98 11.2 10.4 5.48 7.08 7.46 7.26 5.48 8.8 8.28 8.54 8.96 6.7 1.79 7.86 9.21 8.42 11.8 9.96 3.67 9.86 2.86 4.86 8.04 7.21 1.4 0.63 5.45 4.72 5.33 3.39 8.89 0 8.32 3.87 7.06 6.39 2.26 1.06 1.67 4.92 2.75 6.58 0.35 6.18 7.74 0 0 3.92 7.55 7.18 6.98 8.54 8.48 5.73 11.8 5.26 4.8 4 8.49 9.08 10.4 2.18 10 8.03 6.89 4.3 11.9 8.93 7.48 4.8 10.1 5.64 7.56 1.54 7.47 7.5 9.76 3.89 8.22 6.82 8.51 9.97 7.56 4.76 0.86 5.13 6.94 3.19 9.15 5.33 1.92 4.62 2.69 11.9 3.95 11 9.66 5.56 8.27 5.42 9.31 5.17 8.36 1.24 3.73 10.6 9.26 1.24 6.29 8.03 8.11 9.48 3.5 9.14 3.11 11 4.88 7.59 1.79 10.2 5.64 10.3 8.17 9.16 8.1 0 11.1 6.81 11.1 3.24 9.3 8.62 10.8 10.2 8.78 7.34 3.28 9.16 7.26 5.39 8.14 10.7 7.79 2.09 3.43 5.64 0 0 3.95 9.79 1.24 4.2 5.68 7.49 3.6 14.2 5.26 10.2 12.3 11.9 8.87 8.95 3.87 7.98 9.86 9.05 4.62 10.7 6.98 6.86 8.32 8.96 8.24 0 6.33 2.09 3.57 0.35 4.54 10.4 14.8 12.7 3.32 0.86 6.31 1.67 4.97 10.7 7.14 11.7 7.85 4.94 11.2 7.56 9.88 4.22 11.3 7.51 7.05 0 10.4 0.86 5.7 10.1 9.02 7.52 11.1 3.7 12.1 8.6 10.1 6.35 9.6 10.1 11.1 10.4 0 8.18 9.2 8.16 10.5 6.2 9.68 11.1 9.48 8.14 4.18 9.15 8.74 8.6 10.5 8.31 8.83 7.94 8.79 10.2 8.98 7.23 11.3 10.9 6.19 12.9 8.61 9.93 10.1 9.88 8.72 10.6 12.1 9.27 12.5 11 13.4 11.4 12.3 9.95 10.4 9.1 11.1 9.62 7.09 9.47 12.3 10.3 9.45 9.6 8.76 9.78 12 9.1 10.3 10.8 10.3 12.4 9.13 8.1 7.8 3.63 8.48 7.32 12.5 11.9 8.42 10.9 10.7 11.6 11.3 9.19 9.06 10.4 1.79 2 10.7 0.63 10 11.2 13.1 9.38 11.5 7.09 10.7 11.5 10.1 9.95 11.5 11.6 8.07 10 7.93 10.3 10.7 10.5 8.47 7.6 12 8.39 10.4 0 8.93 9.31 4.88 3.39 4.28 8.06 7.24 2.34 10.5 11.6 3.7 11.7 8.13 9.32 10.3 9.48 11.3 0.35 9.6 0.35 10.7 11.1 10.6 8.41 6.53 8.89 7.76 11 10.3 11.1 10.8 7.68 8.3 1.06 10.1 0.35 10.5 8.72 10 10.5 7.52 9.23 11.2 1.54 12.1 11.8 9.41 8.89 11.7 5.11 9.49 10.2 9.5 10 10.3 9.92 8.12 8.77 9.44 8.33 9.69 11.1 10.8 10.9 7.67 7.85 9.98 9.74 10.2 8.17 10.1 11.3 11.4 10.3 11 8.88 2.91 9.68 12.1 11.1 10.2 10.8 10.1 10.4 9.83 11 10.6 0 9.73 10 9.31 11.1 9.85 6.62 7.56 8.26 9.72 10.9 4.95 9.07 9.43 10.8 10.1 10.7 10.6 7.89 7.81 10.6 10.3 7.65 10.2 8.39 11.3 9.58 9.32 10.1 6.08 10.3 12 5.27 10.9 9.83 10.2 11.8 9.59 7.78 11.1 6.99 6.31 1.79 12.3 10.9 11.3 12.6 9.8 7.35 10 10.4 7.29 9.82 10.6 12.7 8.78 9.06 9.18 11.4 10.7 10.3 10.5 8.73 8.06 5.91 11.2 6.07 1.06 8.8 7.93 11.2 11.3 9.87 11.3 11.6 11.7 8.95 10.1 11.6 9.08 12.1 10.3 9.36 10.6 10.3 6.98 11.4 8.58 10.4 8.87 9.1 10.5 11.5 12.1 9.85 5.77 10.9 7.98 8.82 9.93 10.9 10.1 8.47 10.4 7.3 10.8 11.6 9.98 10.3 13.1 6.83 9.88 12.1 10.6 9.38 11.7 9.42 8.25 9.69 13.3 4.16 9.51 13.3 0 10.7 9.08 9.69 8.83 7.66 11 11.3 9.11 8.35 9.26 10.6 0.63 6.8 9.67 9.87 10.6 9.63 8.88 12.3 7.09 9.36 5.78 7.79 7.97 9.86 10.3 8.5 9.92 5.68 8.46 7.77 10.7 4.52 8.72 11 11.9 7.51 9.42 11.5 7.77 3.47 7.19 10.1 5.05 10.6 10.9 10.2 10.7 0.35 9.78 9.36 11.3 11.6 11.8 9.83 8.62 9.37 7.48 12.5 11 10.4 9.55 9.7 8.7 10.6 9.15 6.45 4 10.4 4.61 8.89 1.89 9.51 10.3 1.67 11.3 11.1 8.86 10.3 9.69 3.73 11.5 10.3 7.75 11 9.83 9.96 8.2 10.2 4.09 10.9 9.34 10.2 11 10.9 3.01 9.21 1.67 11.2 8.81 10.1 12.5 7.37 12.2 9.78 13.3 6 9.93 9.46 11.2 10.6 8.52 11.2 12.4 11.7 11.3 1.67 8.63 11.8 11.9 10.2 9.67 3.36 12 10.7 8.8 11 11.5 7.8 9.84 8.96 9.13 8.04 9.31 9.65 8.18 11 11.9 7.92 13.1 8.97 11.6 9.39 10.7 10.1 10.6 7.71 10.5 9.63 11.7 9.46 10.2 11.4 12.3 11.2 10.4 10.2 9.99 10.2 11.2 11.3 8.87 10.5 5.22 8.72 10.4 10.4 6.2 6.93 8.03 10.3 7.75 8.52 3.78 9.69 8.34 9.53 11.2 5.16 3.6 7.34 8.22 2.62 9.61 12.6 7.83 10.6 10.2 8.72 6.77 9.77 0 8.35 4.02 11 11.4 9.1 6.84 8.88 11.6 12.3 10.6 8 7.76 3.81 5.26 9.91 9.87 11 7.58 10.4 9.32 12.1 10.7 11.3 9.95 8.19 9.96 10.1 10.8 13 5.53 10.1 10.1 7.39 10.9 8.46 12.4 5.04 0 3.28 11.5 7.16 7.45 9.5 13.1 10.5 9.9 8.38 5.08 10.7 11.2 10.3 9.11 9.17 9.47 9.37 11.3 11.2 9.61 0.35 1.54 12.9 10.3 10.7 13.1 7.18 10.9 7.85 3.36 10.7 10.6 11 0 4.45 9.48 7.9 4.07 5.62 3.24 12.5 11.8 13.2 8.85 0.35 0.63 9.1 9.4 6.99 6.64 10.3 8.26 6.12 6.2 8.34 9.77 12.5 11 8.96 10 0.35 2.76 8.56 0 7.97 10.5 1.06 4.82 9.7 2 11.8 10.9 8.64 1.4 9.78 9.79 9.53 10.5 10.4 5.89 5.48 9.19 10.2 6.38 10.3 4.72 8.37 10.1 8.8 1.4 11.3 4.79 9.74 10.5 9.98 10 10.7 0.86 7.7 10.6 11.8 9.05 1.24 0.63 2.09 5.04 10.4 9.79 10.5 10.9 5.37 9.24 11.3 8.52 3.87 10.6 9.38 14.2 9.67 10.7 7.38 4.91 12.2 0 9.11 9.13 8.62 8.47 9.86 8.58 8.51 3.28 7.06 4.52 13.5 9.11 12.5 8.56 12.8 13.3 8.06 8.62 10.1 10.7 10.3 8.06 6.77 6.33 2.86 10.6 5.91 11.7 13 9.84 2.09 11 11.1 13 10.8 5.18 2.34 8.45 5.42 2.8 6.23 10.2 5.19 9.17 9.78 7.58 9.71 9.44 5.07 4.82 12 9.38 0 3.36 0 3.15 8.12 0.35 4.26 0.86 9.21 0.63 1.79 0.63 6.32 8.08 5.96 2.8 9.63 6.16 0.63 0 1.06 9.7 9.14 8.38 5.77 2.69 3.76 14.1 8.1 10.7 0 15 9.33 9.5 12.5 5.01 4.96 0 6.5 0 0 11.7 6.83 2.05 10 8.36 9.08 9.38 1.24 4.26 7.74 11.2 10.2 5.77 2.39 3.67 9.98 5.44 10.3 5.5 10.7 4 9.1 8.92 6.29 6.17 13 7.62 2.34 11.1 4.62 6.43 11.1 7.92 8.16 0.63 10.6 10.6 10.2 9.31 8.96 6.67 5.84 9.31 4.57 6.63 7.66 6.42 0.86 9.51 0.63 0 8.99 8.34 5.11 6.22 9.48 2.09 3.6 7.56 5.39 3.5 12 9.76 4.88 1.67 12.8 0.63 5.05 11.8 6.14 8.19 7.31 8.16 9.85 7 10 6.53 7.26 0 6.34 9.8 5.92 9.71 1.4 4.59 8.93 2.34 7.82 6.55 6.19 7.29 2.09 6.15 1.79 8.21 0 0.35 6.07 6.74 6.71 2.18 6.72 7.39 8.66 8.45 7.69 1.06 2.42 1.24 3.76 8.97 4.57 7.56 5.38 3.48 4.04 8.41 8.94 7.16 5.16 5.96 8.51 9.81 10.3 7.48 0.35 8.17 8.93 3.84 0.35 3.57 7.15 0.35 5.76 5 0.35 8.63 7.09 5.89 3.19 3.73 0.35 6.3 1.24 8.91 3.39 5.87 5.95 0 7.97 7.41 5.78 2 0.35 6.92 8.72 7.13 5.35 5.67 11.4 9.96 10.1 8.41 1.79 8.78 12 10.8 6.4 11.6 6.06 4.62 7.03 2.18 1.67 11.2 11.7 0.63 8.74 11 10.7 8.16 10.5 12.9 8.74 10.1 8.17 0.63 10.9 6.18 8.31 8.25 10.9 0.35 9.94 11.7 4.47 3.7 6.86 6.49 10.5 8.76 9.98 0 12.4 5.59 10.4 10.2 11.2 9.56 9.83 11.4 5.52 0.35 10.2 8.92 10.6 7.46 12 7.77 9.72 10 11.7 8.37 11.4 13.5 9.07 5.77 9.86 9.72 9.32 8.55 8.77 0.86 9.87 4.61 10.1 9.8 11.2 10.5 12.4 11.1 10.8 2.56 7.38 9.28 8.75 8.16 8.94 6.01 7.91 9.88 5.91 1.89 7.26 7.55 10.1 10.2 9.48 1.24 11.4 8.98 10.1 8.59 7.02 9.15 8.79 4.3 11.2 4.62 8.69 12.8 9.45 6.65 11.3 10.5 8.07 0.35 10.3 10.2 11 0 9.17 7.79 9.32 10.5 9.64 5.82 9.32 7.53 9.54 4 10.1 0 9.2 1.79 0.86 3.97 9.39 11.7 4.17 11.3 9.58 10.7 6.43 8.68 8.81 10.2 11.1 10.5 10.3 8.17 7.82 9.53 9.42 7.51 6.81 10.4 7.36 10.4 10.3 8.18 5.06 10.2 10.2 7.16 15.6 10.4 10.4 6.76 6.83 7.82 12 9.95 8.16 9.48 6.39 8.87 1.4 7.1 8.27 9.36 7.19 12.6 9.12 10.5 11.9 0.35 10.5 11.1 12.6 11.4 9.06 9.75 8.73 8.82 7.27 10.4 8.51 9.28 10 9.33 9.31 10.6 5.35 8.34 10.5 7.75 4.64 7.94 8.94 8.52 9.51 10.2 3.15 8.74 9.86 10.2 9.06 9.27 8.24 9.08 8.99 9.71 9.75 10.6 7.96 9.52 1.06 10.6 11.1 10.7 11 11.7 11.2 10.9 10.6 8.87 7.81 7.48 10.9 10 10.7 9.41 8.83 8.01 10.2 10.7 9.26 12 8.18 7.37 9.24 10.7 7.92 9.79 10.6 4.94 7.76 12.5 9.33 6.62 10 9.48 10.2 9.54 11 10.2 11.4 10.2 6.15 4.84 9.47 10.1 8.28 9.27 6.22 10.1 5.09 8.51 8.97 12.4 4.49 9.81 11.7 5.5 9.8 8.82 9.45 9.7 11.4 10.2 10.4 11.2 6.76 7.95 9.87 6.54 10 2.26 10.4 4.3 8.84 5.13 6.59 12.1 0.35 10.3 4.47 10.2 9.41 4.72 0.35 10.4 0.35 6.13 7.77 10.6 7.41 12.1 7.52 12.6 9.06 7.67 11.4 0.63 1.54 0.63 6.32 11.6 8.97 9.35 2.64 9.43 8.85 1.06 9.7 10.8 9.75 5.38 6.13 6.9 6.26 10.3 8.64 8.44 9.96 9.18 0.35 6.01 9.8 10.3 6.75 12.1 0 7.23 9.73 10.4 6.37 10.1 9.94 6.43 2.03 7.01 5.95 10.2 10.1 8.61 9.41 12.6 7.17 5.38 9.52 10.4 14.2 6.33 8.99 9.48 3.06 1.24 6.45 8.83 11.4 8.96 10.4 10.2 10.5 7.97 5.3 6.82 9.41 10.2 9.99 8.89 8.6 8.54 8.67 6.59 9.48 4.91 1.06 6.46 9.62 5.32 7.97 4.77 9.32 0 14.2 2.62 10.1 9.02 3.32 9.4 4.99 7.51 11.3 13.6 12.2 10 3.84 10.9 0.63 11.3 8.88 7.51 12.1 3.84 5.98 6.31 1.24 9.04 1.4 11.9 7.41 7.99 7.73 9.88 9.26 7.6 0 8.48 4.04 2 3.28 6.09 0 9.16 9.04 8.84 2.62 2.18 1.4 8.05 10.8 9.2 10.5 0 11.6 8.91 9.78 6.51 8.91 10.8 12.1 9.8 11.8 10.4 3.47 11.1 10.1 0 1.24 8.75 0 8.82 7.69 4.96 10.2 12.6 7.63 12.8 9.11 8.19 11.7 2.09 9.75 1.89 3.11 9.72 4.63 9.13 11.2 12.1 0.35 0.35 13.1 9.97 9.94 13.5 1.06 1.79 11.2 2.69 11.2 1.67 9.03 7.87 4.67 9.22 11.4 11.1 0 8.02 9.87 4.28 9.38 9.26 0.35 1.06 13.1 7.48 11.4 11.8 6.47 9.63 7.92 5.24 8.58 7.25 7.94 14.7 2.62 7.77 11.9 0.86 5.83 4.2 4.8 8.63 10.2 3.95 0 8.05 6.84 5.83 1.14 5.8 7.63 5.12 7.84 8.88 10.8 3.43 8.27 0.86 7.15 10.2 9.36 10.3 8.41 10.9 10.6 3.01 3.54 11 7.34 0.35 4 0.35 2.56 2.09 9.91 10.1 2.18 8.65 11.3 2.56 5.15 7.37 10.2 4.84 9.38 11.1 0.35 8.33 9 10.9 10.8 9.74 9.38 9.97 12 10.5 12.2 9.43 9.9 8.26 8.78 9.41 0.35 1.67 4.52 2.09 4.61 9.43 7.79 8.72 0 5.17 10.4 1.4 8.59 7.56 9.33 8.76 7.8 8.22 3.47 9.35 0.63 6.77 8.37 11.2 3.57 10.8 9.09 11.5 9.88 0.86 11.8 13.4 8.99 12.2 12.5 9.54 8.85 9.49 9.6 12.7 5.48 7.49 10.5 9.3 8.02 1.4 8.33 6.65 10.2 5.14 4.92 6.84 11.2 11.1 9.52 9.87 10.7 7.01 7.96 10.9 6.97 10.7 8.67 6.22 11.8 9.83 11.2 8.19 9.2 11.6 0.63 9.7 8.23 10.7 6.91 9.08 10.9 4.07 9.65 12.4 9.3 2.8 12.7 11.5 16.7 2 10.3 12.3 11.9 7.45 7.84 13.9 9.02 9.16 1.06 10.5 8.32 3.06 11 3.84 2.34 12.5 1.54 5.64 9.1 11.9 11.2 12 11.7 11.4 11.9 10.1 2.91 0 2.87 0.35 10.2 5.28 8.95 13.8 7.41 6.69 5.05 1.67 9.8 6.43 6.07 2.34 3.84 6.62 5.74 6.17 1.67 7.42 2 0.35 2.8 7.69 6.39 10.2 4.83 7.76 5.65 5.48 5.4 3.67 0 8.93 9.94 7.35 11.3 8.77 5.13 8.98 4.11 8.63 6.89 8.59 6.04 7.79 4.61 8.29 9.09 6.06 10.5 3.85 6.5 0.86 5.92 4.73 8.75 4.72 6.43 3.32 10.6 0.63 8.93 3.39 3.54 3.47 7.51 2.86 3.87 1.24 10.6 8.74 6.27 4.73 9.7 3.39 8.16 6.41 5.38 2.68 2.96 9.45 0.35 8.16 2.09 9.79 1.4 5.12 0 3.24 11.5 10.5 6.67 4.9 4.55 8.74 2.62 6.65 4.64 8.55 1.54 0 3.44 12 7.6 6.45 2.62 4.69 9.13 2.42 9.23 4.73 8.4 5.93 1.89 7.19 7.75 6.4 0.35 1.89 10.8 7.35 8.26 8.38 3.73 8.13 8.21 1.4 4.22 6.5 1.4 7.36 2.75 8.66 5.68 10.2 8.13 3.5 0.63 0.35 5.5 7.76 0.35 1.4 2.75 9.83 1.06 0 1.89 10.7 10.6 7.46 6.82 9.03 4.44 1.06 0 8.8 5.3 4.38 0.63 9.72 2.34 10.6 1.24 9.86 1.89 6.07 7.04 8.88 8.54 6.48 4.26 0 6.23 5.09 5.82 1.67 5.47 12.8 0 7.54 7.65 5.79 7.6 1.67 6.15 7.3 0 1.54 0 1.67 0 8.69 7.23 6.16 8.2 9.34 8.43 4.9 8.59 7.76 0 3.06 0.63 8 3.54 7.82 8.48 6.02 3.11 3.89 7.53 7.37 3.39 7.44 6.54 4.57 0 4.4 0 3.32 3.6 0 8.26 0.63 2.42 2.18 6.85 0 7.49 2.42 8.63 6.01 7.86 7.5 1.54 5.1 2.18 7.58 8.53 10.4 5.98 9.65 1.24 9.65 12.2 2 7.77 7.45 5.55 4.14 9.97 9.05 0 5.67 9.1 9.66 12.1 7.6 7.81 1.24 9.76 5.04 5.68 10.1 8.5 8.92 10.2 8.08 3.5 1.06 2.09 10.1 2.62 6.78 2 3.47 3.38 4.56 8.89 10.1 8.42 9.17 1.06 9.82 2.18 0.63 6.88 5.97 6.76 8.32 9.79 1.67 9.88 9.02 6.39 6.31 12.8 7.41 6.09 8.02 0.63 3.29 0 9.76 3.23 4.56 5.88 0.35 3.63 8.3 1.24 2.18 5.61 8.16 7.63 5.83 6.6 0 3.63 4.54 4.2 3.78 8.13 6.87 1.54 2.18 8.26 9.45 5.54 3.06 2.26 8.04 2.69 6.2 10 9.79 3.32 0.63 7.87 1.54 1.41 2.8 7.12 7.95 7.49 2 5.98 10 8.49 8.95 2.26 1.4 5.54 7.19 0 2.75 7.21 6.34 7.74 9.42 1.79 12.4 9.12 10.5 11 10 4 11 0.35 10.1 12.2 5.24 6.46 11.6 11 10 9.18 9.63 10.6 8.35 10.1 9.5 8.81 9.64 9.85 13.1 8.45 11.9 11 0 8.86 2.18 8.3 8.79 8.06 8.71 11.8 10.3 10.6 10.2 9.95 10.2 9 8.56 8.19 9.86 8.73 8.96 11.1 8.61 6.48 7.23 9.13 5.23 10.3 8.65 8.18 12.2 4.04 6.49 11 7.59 0.35 9.63 8.69 10.3 2.26 9.62 11.9 2.62 8.89 7.35 10.1 9.76 11.9 8.46 10.2 10.5 9.83 8.56 9.91 11.1 8.57 9.52 9.25 7.33 10.6 10.2 10.3 9.94 9.02 11.5 9.07 0.63 6.4 8.88 9.27 8.8 9.99 9.4 8.94 11.3 9.82 9.82 10.7 9.63 8.85 10.9 13.5 8.01 6.11 7.57 2.42 10.3 9.89 8.97 10.2 0.88 2.56 7.41 4.62 11.6 1.54 6.53 8.9 4.49 0.63 4.57 0.63 11.7 2.96 0 13.3 2.69 10.8 13.1 10.5 10.9 12.3 10.5 9.03 10.1 10.2 1.67 9.65 10.2 9.34 4.28 11.5 8.65 8.55 8.67 9.6 7.51 10.3 8.53 8.49 9.13 11.2 8.63 9.14 7.69 7.49 8.44 12 12.9 11 10.2 0.63 11.5 9.59 3.73 9.05 10.1 0.86 9.27 11.4 1.89 6.91 8.82 0 9.06 9.73 2 10.7 5.23 11.1 0.63 3.97 7.53 7.5 10.4 1.54 11.8 10.5 9.13 1.67 6.82 2.86 8.58 7.72 0 0 9.76 12.1 9.12 2.56 9.05 10.7 8.15 8.62 9.9 9.29 10.4 6.75 10.1 0.63 10.5 6.62 9.54 7.33 7.77 9.24 8.65 2.09 9.09 0.86 7.75 7.82 9.49 8.95 10.7 9.71 11.3 9.85 6.01 11.5 8.49 9.2 13.1 9.4 5.77 2.86 2.91 8.08 0.63 11.4 7.73 6.33 1.54 5.67 8.95 8.64 5.8 7.76 6.96 4.77 12.2 8.59 11.8 8.01 7.21 10.9 1.67 9.44 5.54 11 9.78 9.49 9.8 7.79 9.59 9.82 11.8 12.2 7.76 7.69 5.68 9.53 1.24 8.11 1.06 9.19 4.54 3.39 9.68 6.96 11.7 8.07 1.43 9.26 0.35 12.1 10.2 7.62 1.4 2.18 9.96 3.01 1.67 0.86 13 6.67 11.7 1.06 2 0.35 8.81 4.47 0 8.92 11.6 5.35 9.78 11.8 12.6 10.9 11.3 3.63 12.1 10.9 10.6 0.35 10.8 2 2 5.13 8.46 8.43 9.04 9.77 1.24 1.4 1.06 1.54 9.08 0 10.9 5.87 6.87 4.88 11 9.08 11.1 0.35 11.5 13.1 8.2 6.01 5.91 11.8 11.3 8.52 5.48 12.3 0.35 7.33 3.24 10.4 4.57 5.61 6.41 4.52 8.98 5.79 7.6 7.66 5.12 9.62 5.83 8.96 8.81 10.5 8.84 10.4 10.2 8.87 5.85 13.1 6.89 11.3 7.49 10.9 11.8 9.7 10 9.96 12.2 4.38 10.8 12.1 5 7.5 14.2 13.4 13.7 7.94 7.61 8.01 7.85 1.67 11.3 10.2 0.35 6.4 7.07 10.2 6.39 11.2 9.05 8.39 7.47 3.67 10.4 11.1 8.37 5.81 10.8 2.62 5.34 3.24 8.22 10.2 6.49 8.42 11.6 10.5 5.7 10.2 11.4 9.2 9.92 10.5 9.82 8.48 6.28 8.76 9.31 10.6 8.09 0.63 6.26 8.84 12 8.51 5.16 4.54 1.06 8.74 5.6 11.4 0.35 9.29 11.9 9.27 13.6 10.6 12.8 11.8 10.7 11.5 12 11.8 13.7 0 11.7 13.3 8.79 4.34 4.3 10.1 10.8 6.41 7.16 7.4 5.09 10 8.81 8.12 4.8 5.11 2.75 8.84 9.83 8.33 7.81 8.95 9.56 9.51 8.46 2.8 11.6 9.2 11.3 8.55 8.25 11 1.4 9.91 0.35 2.42 1.24 1.4 10.5 10.4 0 3.24 1.4 9.56 0.35 3.67 10.3 10.1 9.66 9.58 11.5 5.14 5.68 10.8 11.1 11 7.76 11.3 9.75 2.91 5.23 5.16 1.54 11.6 10.9 8.87 8.85 7.41 11.8 12 12.6 10 7.07 7.01 11.7 14.2 10.5 6.21 3.28 15 13.2 11.7 4.59 6.13 15 9.52 15.5 12.6 14.1 11 11.2 8.78 12.3 8.26 2.96 13 10.1 8.13 3.01 0.86 3.78 6.38 1.79 0 2.69 9.74 8.69 6.95 11.5 8.9 3.7 3.15 4.75 0.63 1.31 10 7.77 2.62 5.31 0 7.48 0.35 1.54 5.98 0.63 0.35 1.4 5.65 6.51 9.96 8.33 3.06 6.8 7.55 7.75 4.38 3.43 0 7.39 4.86 6.54 10.4 4.14 8.1 7.17 3.54 8.67 8.09 8.39 9.16 10.9 9.76 8.94 9.24 6.66 7.67 4.4 0.35 7.09 5.82 0 2 7 6.84 3.97 0 7.78 6.69 2.24 5.79 3.63 3.28 5.07 8.35 6.66 7.7 8.44 10.1 3.06 4 8.23 9.19 4.09 2.49 8.94 2.34 8.28 5.13 3.76 3.06 7.35 9.77 5.02 7.55 0.63 12 1.79 5.91 0.35 7.32 5.66 0 7.44 1.79 7.2 2.49 8.64 8.53 3.01 2.51 2.8 9.57 5.76 11.1 8.37 9.74 9.14 9.99 0.63 7.21 5.42 7.55 0.35 8.4 5.78 3.11 1.25 0.35 7.09 0.35 9.94 9.27 11.4 9.92 3.5 10.4 1.67 4.52 1.4 11 15.3 2.42 8.34 10.2 1.79 8.41 0 0.63 7.03 6.23 8 0.35 10.9 6.77 5.12 5.89 0.86 6.88 3.47 5.08 0.35 8.31 7.37 3.54 8.12 0.35 9 11.7 1.54 2.42 3.6 0.63 0 4.18 10.8 6.54 2.42 7.88 0.35 5.14 6.07 8.69 1.4 2.62 3.73 1.79 1.89 1.89 2 10.6 6.49 8.23 12.1 8.91 9.99 9.34 0 4.07 10.1 2.86 9.62 3.28 5.76 0 2.49 2.8 2.86 0 6.45 3.43 0.63 6.5 1.24 7.08 0.35 2.34 2.09 9.48 2.96 10.2 1.06 3.99 9.71 5.34 4.02 1.89 8.95 0.35 10.1 7.34 7.97 6.98 9.42 12.4 6.25 4.09 8.85 14.1 7.01 2 8.13 12.3 10 1.4 10.3 2.26 5.68 0.63 9.95 9.87 1.24 8.54 11.7 0.63 7.47 13.4 6.41 0 7.93 6.95 2.86 9.45 11.5 6.27 8.43 6.57 3.89 3.57 7.36 3.93 7.87 3.11 7.56 8.3 16.5 5.85 8.77 0.86 7.27 5.83 9.6 7.68 3.47 8.94 1.52 3.92 9.25 6.58 0.63 0.86 7.5 7.08 5.04 7.67 2.34 0.35 0.63 7.15 11.2 9.34 0.63 2.96 7.95 6.35 2.18 2.96 0.63 3.43 3.39 6.02 7.16 0 2 7.5 6.76 10.1 2.18 1.24 2 3.32 4.04 9.92 1.67 0.35 0.63 6.4 7.85 1.89 8.11 4.18 0.35 2.18 0.86 10.2 4.38 7.8 11.6 10.6 3.95 5.09 10.6 5.33 4.62 1.24 6.65 0.63 4.52 10.6 11.9 12.3 4.97 11 9.84 5.38 6.46 10.3 7.67 3.97 7.46 6.83 4.62 3.6 6.23 0 2.69 9.31 6.94 10.6 8.81 7.79 7.03 10.5 9.92 3.01 0 10.4 11.4 11.7 7.73 11.6 10.9 12.4 3.78 9.74 8.15 3.76 9.32 8.36 2.34 5.53 9.94 6.52 5.95 4.07 4.07 7.65 9.5 6.48 2 11.8 6.65 8.64 7.24 5.06 6.98 1.06 7.32 4.04 5.95 11.6 5.5 13.8 7.62 8.96 4.24 7.39 10.4 12.2 0 2.8 8.6 0 0.63 2.96 11.8 5.1 1.79 11.3 8.82 11.6 1.67 7.28 11.3 11.2 5.5 11.9 9.28 11.2 8.79 5.22 12.3 7.65 10.8 11.7 11.8 9.06 10.3 9.36 10.5 7.11 11.2 1.67 1.24 6.07 0.63 3.11 9.56 0.68 10.8 7.13 11.1 7.57 5.52 8.95 3.15 0 4.14 1.06 3.78 7.41 8.66 6.4 4.9 5.63 7.56 8.93 8.04 0 2.56 7.55 6.6 8.95 1.06 8.3 3.7 4.87 10.7 4.46 4.76 9.3 8.26 6.39 7.64 1.06 7.13 0 6.92 9.37 13.8 8.31 8.4 5.8 11.9 2.69 10.1 6.67 3.47 7.65 2.56 6.65 7.84 9.05 4.16 1.06 0.63 1.67 9.9 6.83 6.92 6.67 4.83 8.67 9.21 8.81 7.49 0.35 9.4 3.97 0 2.64 0.86 6.86 12.7 5.71 3.84 9.94 7.51 8.89 1.67 7.33 10.2 3.31 0.63 4.77 9.83 10.8 8.28 1.06 9.33 1.24 2.42 6.65 6.7 9.95 0.35 9.02 13 4.07 1.79 1.89 1.06 4.4 4.14 11.6 0.35 3.57 12.1 1.4 0.86 6.38 1.79 4.83 11.9 6.67 0.63 7.63 8.33 0 6.87 10.6 6.26 5.26 2.18 10.1 1.24 8.24 10 11.5 10.8 12.3 11 12.3 7.53 0.35 0 0.63 10.9 0.63 0 8.76 0 3.89 10.3 1.67 0.63 0.35 0 2.18 0 11.9 8.07 6.62 9.9 10.5 12.7 10.9 9.6 7.14 10.4 7.35 12.2 11.7 9.73 2 0 2.56 8.79 1.06 8.2 6.94 3.43 12.8 6.47 5.35 9.48 0.35 5.55 11.5 5.53 1.24 2.75 9.61 3.78 0 4.16 8.07 1.89 5.94 4.34 9.67 8.3 3.67 0 6.9 4.73 2.8 9.19 8.78 1.06 7.11 1.4 5.11 3.32 9.37 0 4.79 4.04 1.79 8.16 7.08 1.32 3.78 7.96 1.2 3.39 10 8.01 2.18 11.5 0.35 8.66 3.06 6.58 7.09 4.36 1.06 6.14 1.79 6.5 6.54 5.87 2.1 6.26 7.77 7.94 3.63 7 9.19 5.66 0 12 1.24 6.78 7.69 7.95 6.7 8.26 5.73 7.18 1.24 1.67 6.1 7.22 5.53 0.63 6.14 11.2 4.72 0.86 4.14 9.13 5.64 7.12 6.44 8.72 9.53 0 6.87 1.54 3.81 8.61 2.96 7.7 8.97 7.36 2.75 8.61 11.2 11.3 0.86 7.01 0.35 6.57 4.4 6.11 4.18 8.05 0.35 4.97 6.84 0.63 5.17 9.21 8.19 10.3 1.06 12.8 7.06 4.18 10.1 4.51 1.24 0 1.67 8.13 14.8 4.47 7.89 1.24 6.62 0 7.73 0 0.67 8.91 2.26 9.45 1.06 8.75 7.91 3.92 4.84 0 4.26 6.06 0 3.67 8.16 6.71 0 7.72 6.31 8.2 8.07 8.54 9.67 10.6 2.18 8.52 2.63 9.31 1.06 11.4 2.49 8.46 4.91 11.5 12.9 6.38 5.63 10.7 12.4 11.7 0.63 0 5.43 12.3 8.69 10.6 1.06 0 9.2 9.18 5.15 2.26 0 8.64 6.08 0 11.6 11 12.5 9.42 4.7 2.34 9.94 9.21 6.81 11.6 0.86 7.62 14.3 13.1 1.24 8.82 7.27 8.88 0 2.34 10.3 8.32 7.67 8.81 10 11 10.3 10.4 8.21 10.5 1.54 0.63 7.32 10.3 3.43 4.99 4.66 8.01 7.47 9.54 7.88 12 7.27 2.72 1.79 10.1 3.39 6.71 6 5.95 11.4 4.22 8.86 2.96 10.2 9.73 0.35 8.67 11.8 12.2 12 9.06 10.6 7.56 6.9 6.48 0.86 5.47 8.82 5.69 10.4 7.95 7.13 0 7.2 6.81 0.35 8.09 6.32 0 5.83 2.91 1.24 6.97 8.6 3.76 0 4.32 2.34 10.2 3.89 8.84 7.32 0.63 2.8 10.6 3.31 3.73 0.63 9.24 6.17 7.77 1.79 4.52 3.15 4.22 0 7.22 0.86 1.89 8.98 11.5 2.09 8.41 5.5 6.54 2.26 5.27 2.69 3.11 0.86 4.34 10.1 5.65 8.99 7.74 0.86 9.41 8.79 0 6.93 8.8 8.44 7.34 5.79 6.95 6.84 9.65 6.55 0.86 9.04 1.24 0 2.3 0 6.41 8.58 5.42 10.8 7.14 2.26 0 3.28 6.47 11.1 8.1 1.06 7.15 1.67 7.96 0 0.63 7.28 7.72 5.01 10.1 4.24 7.93 0.86 7.85 10.2 13 0 11.3 6.73 9.96 12.5 8.59 8.87 6.47 7.53 3.33 5.08 12.4 10.8 1.54 5.93 8.42 9.49 10.8 9.59 10.4 0.35 10.3 2.96 1.4 8.8 8.56 11.8 10.1 3.91 4.79 1.4 2.42 9.1 7.67 9.22 11.3 1.4 4.45 7.77 6.86 10.5 0.86 6.74 4.04 9.63 6.96 11.3 12.4 12.4 6.4 6.4 2 3.85 7.08 11.7 10.6 8.9 7.74 7.95 11.6 8.53 10.7 8.96 10.4 5.57 10.1 7.25 8.21 10.3 0 7.76 9.85 7.91 8.03 1.67 1.89 9.9 9.16 12.1 11.3 8.07 9.94 9.72 9.04 11 13.6 15 13.7 12.3 11.4 13.1 10 10.4 9.97 5.01 2.86 11.4 5.59 1.4 6.57 0.86 0.72 7.54 8.84 2.69 14.1 3.36 1.38 9.88 8.49 2.86 9.99 8.04 9.06 5.77 11.1 10.4 2.09 10.1 11.2 7.61 7.55 13.1 9.92 1.79 6.06 11.9 8.7 9.76 9.82 8.13 9.32 9.67 13.5 3.36 2.09 11.7 1.06 12.5 11.8 14 10.1 9.45 10.6 10.4 10.4 11.7 10.4 4.25 8.1 11.8 9.97 2.09 9.28 9.53 9.27 8.85 9.96 10.1 11.3 9.52 9.34 5.67 0.63 8.94 5.47 7.95 9.63 6.39 8.59 9.65 10.2 10.4 6.25 10.9 9.41 4.49 8.28 9.23 7.36 7.82 11.6 3.95 9.95 11.4 6.32 9.46 12.8 3.28 7.26 12.2 1.67 2.18 7.71 4.62 8.43 8.11 10.9 8.18 10.2 7.13 8.84 10.2 11.4 10.5 10.7 7.8 1.24 9.1 10.8 11.3 7.78 9.95 8.36 10.9 0.63 0.35 0 2.49 1.06 5.63 8.36 6.12 10.7 6.72 5.18 5.67 8.4 1.06 6 8.03 5.5 10.2 1.89 8.89 10.4 0.63 9.5 11.4 9.91 9.28 9.99 4.3 5.66 10.3 10.3 6.45 6.79 10.4 6.07 7.52 8.05 9.88 0.86 0.35 10.5 13.8 0 5.82 5.49 9.92 8.86 1.54 2.49 8.85 7.08 4.73 2.26 7.14 3.57 0 3.36 9.51 6.29 5.56 6.44 10.6 4.4 6.15 3.78 3.09 4.78 2.49 12.3 6.83 2.18 7.96 0.63 9.43 3.01 2.34 8.75 2.09 1.24 8.28 9.51 0.35 2 6.78 2.18 0 7.19 12.8 3.73 4.02 0.35 7.43 8.44 8.41 6.8 11.3 5.85 6.96 4.72 6.9 7.43 9.65 3.19 7.53 6.35 5.34 7.16 7.18 8.25 3.43 3.05 6.49 0.63 4.73 7.76 8.27 2.34 4.76 0.63 1.24 3.73 1.4 0.86 6.67 0.35 9.17 6.99 5.72 7.61 4.7 3.15 4.84 9.53 0 0.63 3.06 0.35 4.76 4.11 7.93 1.54 4.32 7.48 6.92 2.62 2.56 11 4.83 9.53 9.32 0.35 6.65 11 6.95 8.03 0.35 8.53 6.32 2.49 8.49 13 7.14 8.36 4.45 2.96 5.26 5.83 2.69 0 4.09 5.87 8.04 8.12 4.64 7.82 5.6 10 8.73 9.17 8.15 6.06 2.09 10.8 9.16 9.58 3.5 0.86 1.24 10.7 10.6 6.48 8.38 9.16 12.3 7.86 9.14 0 7.63 2.26 0 0 0 6.69 3.01 8.5 9.73 6.77 1.79 3.54 12.6 12.5 10.1 10.5 1.06 6.15 12.8 10.5 3.67 11.4 8.2 6.76 11.6 4.3 10.1 9.35 2.96 8.67 10.5 6.44 10.5 8.84 10.3 10.6 10.3 8.87 13.2 10.3 10.1 5.39 11.8 5.79 12.5 10.1 12.1 11.4 11.9 9.2 11.7 0 7.73 8.7 9.96 13.7 11.1 10.2 5.27 5.12 9.1 13.5 10.1 11.6 10.8 10.3 10.2 12.1 12.4 10.9 10.1 10.3 2.18 10.4 10.8 10.6 10.2 11 10.2 10.6 11.8 11.2 10.3 10.5 12.1 11.2 10.5 10.5 11.6 11.4 10.9 11.8 10.6 11.2 9.68 10.7 9.94 10.5 10.5 10.5 9.19 9.98 8.62 12.7 12.4 11.5 7.32 14.6 6.19 7.47 7.51 8.56 0 0.63 12.6 12.6 9.48 9.87 6.67 6.45 8.23 9.69 10.6 15.1 11.3 6.64 9.42 5.23 2.96 8.39 8.37 6.53 2.34 14.4 15.2 10.8 8.11 10 6.1 10.1 8.81 6.94 10.1 8.28 7.4 9.07 6.59 8.91 10.1 10.1 0.35 9.28 8.77 8.86 9.21 6.71 12.2 16.2 8.54 9.76 10.3 2.75 9.79 3.15 8.87 10.3 5.98 6.78 5.38 10.4 10.8 11.7 10.5 11.3 8.41 11.5 5.85 1.06 9.02 12.4 7.53 7.51 9.99 9.98 9.55 8.44 7.45 9.82 9.33 5.93 0.35 9.8 2 7.5 9.26 9.28 6.93 12.4 2.34 1.54 12.6 7.58 10.4 4.42 6.34 13.9 7.82 10.8 8.05 13.3 10.9 8.11 2.09 10.6 6.6 6.08 0 9.77 12.1 10.4 9.31 7.43 13.5 6.29 9.04 3.5 3.89 10.9 9.6 8.04 0 2.34 10.6 12.5 12.5 13.9 9.82 11.2 5.99 13.3 8.97 0.86 9.71 9.15 9.9 9.76 0.35 10 4.75 6.38 6.4 7.8 6.55 11.3 7.8 0.63 5.01 11.9 9.22 7.92 3.97 3.43 0.63 13.9 12.3 12 9.51 9.26 5.49 12.1 8.15 8.59 0 2.18 6.87 2.69 5.23 1.06 11.4 11.7 13.8 3.63 6.91 8.48 10.6 7.98 2 8.09 3.7 9.18 12.3 9.58 8.63 5.14 1.79 0 10.7 1.24 10.7 4.75 0.35 3.78 0 10.4 10.6 5.57 1.89 8.74 6.85 5.45 2.91 2.86 3.15 5.91 7.87 13 7.03 7.78 11.1 1.4 0.63 6.04 14 6.38 10.4 2.96 12.7 10.7 9.06 6.92 10.9 9.83 7.66 2.75 6.78 8.16 11.8 7.3 10.9 7.23 0 10.2 14 3.06 2.4 10.5 5.19 10.4 4.9 9.8 8.9 2 10.4 10.4 10.8 11.6 7.43 13.8 5.7 8.44 12.1 10.2 3.89 6.47 6.24 6.28 10.2 11.7 11.1 11.2 10.6 11.6 8.44 9.09 1.24 2.64 3.11 8.08 0 8.38 11.7 9.04 4.36 12.8 12.5 9.99 9.71 11.8 10.2 11.4 10.6 10.3 11.9 12.7 7.09 5.32 12.7 5.8 3.17 8.68 8.36 10.5 10.3 12.3 10.1 10.8 9.28 8.3 7.53 7.83 9.19 7.66 9.03 8 9.27 3.47 8.04 8.23 10.2 8.55 12.1 8.62 9.24 9.33 10.1 9.47 10.6 6.94 8.55 11 8.36 10.4 8.09 10.6 9.77 10.4 11.1 10.4 7.18 9.83 7.62 7.98 6.21 9.77 7.14 6.76 9.43 9.56 9.39 10.1 8.76 9.76 4.2 8 9.67 9.3 9.3 8.73 7.75 9.57 8.69 11.9 8.03 9.68 10.1 11.9 11.9 10.4 9.88 3.81 10.6 2.8 6.75 2.56 9.93 4.56 7.38 10.8 9.87 12.8 8.84 10.3 11 8.99 8.67 11.5 10.1 9.42 7.97 8.8 8.3 9.57 8.61 11.5 10.7 11.5 10.2 7.56 9.24 10.4 8.22 9.34 8.91 9.51 8.35 12.1 8.03 8.44 10.2 11.1 10.3 10.1 2.69 9.41 3.89 8.41 8.37 11.7 10.4 7.37 8.15 6.46 11 8.84 12.2 10.3 11.6 9.06 11.3 9.13 10.9 3.67 8.16 9.69 8.08 10.1 10.9 9.59 8.4 9.15 11.5 8.57 8.67 6.66 9.32 9.7 8.14 7.02 8.4 1.67 8.92 9.58 9.66 9.23 9.19 10.1 10.6 11 7.97 10.5 9.99 8.05 9.19 8.84 7.73 9.14 8.66 10.8 9.78 7.77 8.91 8.1 0.63 2.18 6.2 9.71 10.2 8.66 6.3 7.59 9.25 8.59 10.1 9.2 9.1 0.63 11 8.48 1.54 8.42 10 9.42 12.7 12.2 10 7.82 6.14 8.72 8.22 0 8.94 9.03 7.67 9.28 10.8 7.54 7.94 9.32 9.61 6.36 5.02 4.97 10.4 10.1 11 10.4 8.44 7.09 8 8.98 7.78 9.41 11.9 7.18 9.63 9.79 4.75 10.8 9.35 10.3 9.78 7.33 10.5 9.26 7.73 9.51 7.88 7.29 10.4 8.27 11.1 1.67 8.76 9.7 8.86 10.5 10.3 12.1 10.8 13.4 2.96 7.61 8.64 0.35 8.84 1.89 9.63 10.2 9.71 9.65 10.5 11.8 10.5 6.04 11.2 0.86 7.25 4.19 6.74 8.32 13.2 10.2 6.17 6.37 9.71 9.86 10.2 10.3 10.3 0.35 9.59 0.35 5.16 9.84 6.6 9.54 11.4 6.56 4.95 10.3 8.98 9.88 8.75 10.4 11 7.58 11 7.53 9.23 7.41 8.85 7.57 11.4 2.86 8.6 12.3 8.24 9.97 5.86 10.6 8.64 9.07 11.4 10.8 12.5 8.69 10.9 9.99 8.83 5.61 4.44 7.59 7.97 6.92 10 6.69 10.3 9.79 4.69 10.9 11.2 10.3 5.22 10.5 8.5 6.67 9.94 8.02 10.5 12.9 3.63 9.98 9.56 9.5 7.43 3.92 10.2 10.6 8.69 1.67 10.3 9.4 8.96 11 1.4 8.41 7.31 11.1 13.4 8.56 9.84 7.34 10.9 6.57 9.13 9.87 11.8 11.5 11 8.81 11.6 6.33 3.36 7.58 11.1 8.32 11.1 11 10.7 8.54 9.44 9.57 11 10.1 4.4 8.91 8.28 6.61 9.14 10.3 5.93 9.26 7.43 7.49 9.5 7.17 7.31 8.19 8.66 8.93 11.6 2.91 0.63 6.77 8.23 12 2.91 8.92 9.56 11.7 10.3 11.1 6.59 9.71 10.3 9.95 9.2 7.36 11.9 10.3 10.7 8 9.83 9.05 10.8 10.6 11.8 5.49 10 10.1 7.39 10 10 11.8 9.81 11.5 9.72 8.13 11 10.2 13.4 9 10.9 11.3 10 8.97 11.2 8.47 10.7 8.71 8.18 10.7 10.6 9.9 10.3 9.09 10.4 8.98 12 10 9.59 6.27 9.64 8.21 12 9.03 9.72 8.94 5.54 7.06 9.43 8.09 11.7 10.2 10.7 7.67 14.1 9.82 9.85 3.67 7.07 11.2 7.7 4.59 2.42 9.27 8.17 9.62 9.29 9.01 10.1 12.2 10.8 4.8 9.36 0.35 6.65 8.54 9.07 12.4 7.13 11.9 9.12 2.26 10.9 1.67 7.94 10 9.9 8.59 10.9 2.62 8.29 8.17 0.86 8.94 7.97 11 2.09 10.9 9.45 8.92 4.96 10.4 10.2 9.65 11.2 7.28 9.47 8.53 9.79 10.5 0 7.19 11 10.1 7.24 11.7 11 12.1 4.67 8.04 4.86 9.44 6.8 11 11.5 10.4 8.65 8.73 9.71 9.07 8.47 8.86 8.85 8.53 0 0 9.14 4.36 11.1 10.1 10.6 8.49 11.8 7.41 0.86 9.77 8.48 10.9 8.37 11.3 0.35 12.6 11.2 11.9 11.3 9.99 11.1 12.5 9.63 0.35 9.68 8.27 8.53 12.1 13.4 9.46 8.74 7.65 5.73 11.1 4.42 11.2 2.86 12.9 0.63 11.4 10.8 9.74 9.28 11.1 14.3 1.06 9.01 10.1 5.3 1.67 11.7 13.2 12.1 6.16 8.81 11.1 6.5 10.2 11.6 8.02 8.29 0 9.86 8.77 9.6 12.6 8.13 9.15 6.9 5.52 4.96 12 11.6 12.2 11.8 10.4 10.8 2.26 8.66 9.55 11.1 2.96 13 9.33 0 14.2 8.92 4.67 0.35 5.11 8.1 4.3 8.57 12.5 6.33 4.67 10.9 5.77 10.5 11.7 7.54 0 11 9.77 7.58 2.66 10.6 10.3 6.68 0.86 9.6 10.6 8.45 7.66 6.2 6.92 8.33 11.3 8.82 11.7 8.97 6.39 9.28 5.87 5.8 2.09 6.29 5.91 1.79 12.8 5.16 10.1 9.91 7.31 10.4 9.8 5.25 8.81 9.34 8.18 10.7 10.4 8.9 10.7 0.35 11.3 2.26 11.7 11.5 2.69 0.45 0 13.5 10.1 9.71 8.17 10.6 8.47 8.36 10.2 5.77 6.2 1.4 0.63 11.5 7.1 5.2 5.87 0.86 3.63 3.6 0 7.72 8.18 2 5.44 11.2 6.19 9.93 10.1 10.1 9.26 7.79 9.05 8.57 6.12 10.1 6.45 10.8 4.84 7.03 10.5 8.94 4.07 9.7 7.02 7.07 9.08 4.56 7.34 0 13 8.81 0.35 2.09 9.44 3.87 9.41 8.61 10.8 0.35 11.8 11.2 11.1 5.59 7.51 1.86 8.52 6.7 6.36 8.49 8.37 9.36 11 11.9 7.81 1.06 6.06 1.54 8.83 8.95 7.49 10.4 6.7 2.91 4.03 9.56 8.7 12.4 11.5 11.3 6.72 4.42 8.57 11.6 11.7 11.1 9.08 7.91 9.87 9.33 2.34 5.45 8.38 9.31 13.5 10.1 10.8 10.5 10.4 4.3 11.7 9.83 3.01 6.91 11.4 8.74 7.73 10.4 5.75 7.59 5.87 6.93 9.11 4.83 6.43 8.82 7.61 9.94 8.09 7 8.62 3.43 1.24 9.88 11.1 10.3 10.8 8.94 9.83 7.45 2.49 9.99 8.53 10.4 10.8 7.89 10.2 11.3 7.06 10.8 10 5.4 11 6.05 9.26 10.2 9.75 8.45 11 8.92 9.98 5.4 11.9 9.25 1.4 4.09 9.12 6.39 10.2 4.73 2.18 7.45 6.42 6.43 8.34 8.99 7.6 4.84 9.32 9.7 8.6 7.76 10.1 3.95 8.11 7.92 9.32 8.08 9.32 9.24 9.13 11 8.55 10.8 8.48 11.2 9.49 9.83 8.84 8.77 8.53 8.03 9.93 5.25 8.61 7.94 0.35 8.81 11.4 4.93 9.47 7.76 2.26 11.8 0.35 9.18 10.2 8.96 6.52 1.35 7.88 6.7 9.07 10.9 10 0.86 9 8.64 8.26 12 8.57 2.91 10.3 8.64 11 8.27 9.66 10.7 8.5 9.79 9.04 5.67 7.89 12 10.2 10.1 14.3 11.6 10.7 7.23 9.08 8.4 0.35 2.96 9.86 1.24 11.2 7.13 6.42 10.5 8.17 8.25 4.2 8.01 7.63 8.7 3.15 7.96 0.86 9.2 3.76 8.56 11.7 6.7 3.67 10.1 10.4 7.3 11.1 9.59 11.8 8.33 8.22 7.81 10.6 12.4 8.75 9.41 8.57 5.49 7.35 1.54 7.4 6.09 11.1 8.14 7.54 9.07 9.96 6.2 8.52 9.37 10 3.57 8.77 10.7 9.39 7.52 10.5 9.7 7.85 7.24 4.65 10 8.48 1.06 7.73 0.63 9.16 6.38 5.85 0 11.5 7.57 7.77 9.93 8.96 8.81 8.45 12.2 6.12 0.35 9.16 10.3 7.97 7.66 2 8.48 0 5.56 10.1 1.06 10.5 9.04 10.7 9.66 5.67 8.43 7.76 9.74 0 10.8 9.39 1.4 10.7 8.82 6.55 8.65 7.46 9.83 8.11 8.75 8.09 10.2 8.35 11 8.22 9.6 8.61 8.91 10.4 11.7 8.82 8.68 9.07 1.06 7.64 7.47 8.95 8.25 9.3 1.24 8.04 10.8 7.71 9.96 0 10.4 7.35 9.57 9.58 11.1 10.4 9.14 9.15 9.38 7.39 10.7 7.16 5.06 8.34 10.4 9.76 11.8 7.77 5.67 8.68 8.95 7.52 0.63 8.64 8.49 8.28 2.26 7.95 9.94 11.5 12.4 4.95 8.77 6.86 10.8 11.2 9.25 10.1 10.3 8.12 6.7 10.7 9.51 8.19 7.67 7.35 6.11 10.9 8.9 8.77 6.55 9.76 8.41 9.86 0.35 8.85 9.32 8.71 7.49 9.68 9.44 6.85 9.56 10.1 10.3 0.86 8.86 7.69 8.83 9.52 6.85 10.8 6.26 8.51 3.24 10.2 10.6 6.17 7.47 10.5 7.6 8.99 2.8 9.68 0.63 10.2 12.3 11.6 6.54 10.9 8.53 11.2 8.45 8.73 8.05 9.58 9.02 10.7 5.66 9.58 8.72 9.17 6.33 9.06 9.06 3.43 9.5 0 2.8 8.47 9.37 10.8 8.37 9.05 7.8 9.32 8.8 11.6 10.7 6.59 1.54 9.63 6.86 10.6 6.46 8.13 10.6 1.4 12.1 9.1 9.94 7.87 9.91 8.78 7.14 8.74 1.4 11.7 8.35 6.11 5.85 5.37 9.26 1.67 8.78 4.65 12 7.21 7.18 7.38 10.1 9.18 8.38 8.97 8.15 9.7 9.78 10.3 7.54 9.47 9.95 9.22 0.35 8.33 9.36 8.55 7.37 7.91 11.3 2.86 10.3 8.91 9.25 10.2 4.72 8.38 4.51 10.5 9.76 9.1 8.47 8.48 8.72 6.88 9.97 7.52 8.79 10.1 9.91 0.63 9.04 9.54 8.83 9.8 5.72 8.68 8.64 7.95 7.19 5.7 7.22 8.42 10.9 9.6 9.58 5.52 8.25 7.4 9.62 10.6 10.2 8.63 11.6 4.95 8.66 8.6 10.6 9.55 9.68 9.37 9.35 10.9 10.8 10.8 11 8.65 5.53 7.41 9.5 8.7 9.68 7.37 8.26 10.3 10 6.9 8.97 9.49 8.61 7.56 12.6 7.75 9.86 10.2 9.13 6.9 11 10.5 9.23 9.61 8.25 8.58 7.24 10.2 5.85 0 8.65 11 9.02 7.63 2.91 9.25 0.63 10.2 3.87 10.7 9.85 9.48 11.9 9.41 10.3 10.3 7.46 9 11 6.38 7.17 8.69 8.07 9.11 9.61 11.1 5.83 9.35 8.73 8.42 8.68 10.1 2.96 11 8.76 8.44 8.83 5.36 7.52 10.6 10.2 8.47 10.3 11.8 11.1 6.25 6.45 10.3 10.4 4.52 7.33 11.1 9.64 10.6 10.8 8.72 9.33 8.63 8.59 11.3 7.95 8.91 4.61 10.7 6.45 9.17 10.1 4.69 8.26 10.1 11.8 9.01 10.3 8.09 10.6 10.5 7.03 6.05 8.84 8.14 10.3 9.15 7.29 4.69 1.4 9.78 6.19 1.73 0.35 10.7 11.7 2.49 9.88 8.59 9.58 10.7 7.69 9.32 8.31 8.07 9.76 8.8 9.46 0.35 10.9 8.23 0.86 8.4 2.26 10 9.42 8.54 9.86 11.5 9.56 7.52 6.6 0 10.1 7.67 7.48 11.4 7.19 4.07 8.73 9 12.2 9.74 9.61 9.69 8.31 6.01 7.97 6.57 8.54 7.66 10.2 11.1 7.93 5.75 10 10.4 10.9 7.54 10.1 8.68 8.78 6.71 5.7 9.8 10.3 2.26 0 4.02 10.2 10.5 6.27 7.08 8.05 0 10.3 10.2 10.2 10.3 8.67 8.09 7.98 11 3.39 7.18 9.51 11.2 11.3 5.06 3.67 8.19 8.58 10.2 0 8.51 7.8 8.46 4 8.5 9.07 8.09 1.06 9.29 11.9 9.06 10.6 11.6 11.9 7.49 3.11 9.6 9.61 9.48 10.7 8.99 6.61 0.35 5.94 9.53 8.89 1.06 7.7 2.62 3.7 0.86 10.6 9.77 8.27 7.7 7.71 9.01 9.72 9.95 1.06 0 8.75 6.56 6.87 5.33 5.55 0.35 2.69 5.09 3.67 9.03 11.1 7.01 2.09 9.25 1.06 6.76 7.12 9.42 8.96 11.1 0.35 10.1 9.5 6.38 5.63 11.8 11.3 7.27 10.1 7.56 10.7 8.06 7.12 0.63 10.2 8.97 11.2 6.3 12.6 9.2 9.16 6.7 9.41 10.7 1.24 4.84 9.41 9.29 5.23 7.2 5.54 10.4 7.05 9.13 8.09 9.83 10.2 9.79 9.43 10.9 8.26 9.92 5.84 7.2 7.51 8.35 8.44 8.03 5.16 8.61 11.4 8.78 2.69 10.1 8.24 7.37 4.91 9.47 7.99 10 10.3 8.22 10.9 0.35 9.33 8.36 8.98 7.51 12.1 10.9 10 11.1 7.77 8.58 11.1 11.3 10 7.07 8.78 12.8 9.65 9.81 8.07 8.35 10.3 8.36 9.08 9.22 10.2 11.2 8.66 8.1 9.77 10.9 9.75 9.46 9.39 5.72 8.61 9.59 9.99 8.91 11.4 3.7 11.5 10.6 8.16 8.48 10.1 11.8 6.46 8.63 9.39 10.4 10.2 7 11.5 9.91 8.74 10.8 9.41 10.6 9.86 5.88 5.36 6.45 8.54 9.03 6.56 9.57 13.7 9.39 6.01 9.46 8.39 9.36 11.8 10.2 10.1 10.3 8.87 9.55 7.84 9.3 10.6 10.9 10.8 9.69 10.4 9.23 9.59 10.2 13 13.2 10.6 8.49 8.32 10.8 9.54 7.89 8.15 9.84 5.86 10.6 9.76 0.35 8.58 8.66 9.42 9.99 10.1 3.54 9.46 7.39 9.19 9.11 8.72 5.96 8.32 8 9.72 8.86 3.97 8.03 8.03 8.32 11.6 2.86 3.92 9.79 7.96 9.7 8.4 9.97 6.1 8.01 11.4 7.72 7.6 13.3 8.61 5.62 6.36 9.98 0.35 8.03 11.4 9.53 1.4 8.36 8.78 9.86 5.52 10 10.4 0.63 10.7 10.8 8.42 11.5 10.5 7.65 10.8 9.63 11.6 9.48 5.8 9.75 7.44 8.77 5.05 7.99 5 8.65 11.4 9.7 9.78 6.96 12.5 8.27 9.82 10.7 3.23 10.9 7.03 9.6 8.99 9.48 13 8.85 11.3 10.1 10.2 9.83 0 8.48 8.31 11.5 9.67 7.22 3.5 1.06 12 4.99 6.94 0.35 12.1 4.4 7.99 8.99 2.86 11.4 8.92 9.75 5.78 8.7 10.3 10.7 8.66 10.5 7.89 11.8 4.56 9.31 9.4 4.96 8.07 4.18 9.07 9.59 5.29 8.8 2.26 4.02 4.4 11.6 11.7 7.44 8.36 10.5 9.29 11.6 4.26 10.2 10.5 9.3 9.22 10.3 3.73 7.69 10.9 8.53 9.76 9.28 7.79 1.79 9.51 0 10.7 9.13 11.2 9.06 11.4 4.11 10.8 11 9.01 9.72 10.8 2.96 6.39 9.68 6.57 9.71 4.59 9.39 7.02 9.05 7.29 8.02 7.24 5.57 8.48 7.86 5.55 5.07 5.41 6.13 11.8 4.11 6.14 5.4 8.17 4.73 9.7 2.49 7.01 8.44 7.11 7.38 7.7 8.09 6.04 5.12 4.02 6.72 5.63 5.81 9.28 6.69 1.06 0.63 11.1 0.35 0 0 4.52 11.9 11.3 7.14 9.58 1.67 10.5 12.8 0.63 3.01 8.05 8.48 6.69 7.76 4.82 10.9 1.4 11.1 12.9 7.44 9.93 9.71 5.49 8.68 10.3 5.9 7.49 8.38 11.1 12.4 8.29 10.3 0.64 10.5 8.67 10.4 8.39 9.39 10.1 4.72 1.54 9.33 5.22 0 10.1 8.12 0.35 9.72 10 11.8 5.53 9.15 13 10.1 0.63 16.1 10.3 5.24 3.39 11.3 11.9 8.47 9.66 9.34 9.45 8.74 0 10.6 7.27 12.4 5.39 9.12 4.72 5.17 6.57 0 9.13 3.67 11 11.8 11.2 9.68 15.9 4.54 0 10.1 9.8 11.1 10.8 10.5 5.02 9.94 10 9.42 10.6 11 11.1 7.74 12.2 8.95 10.5 11.1 10.4 10.6 10.1 12.3 11.5 8.16 7.73 9.84 9.67 9.36 9.88 9.3 7.97 9.96 9.23 7.05 8.96 11 8.9 7.26 9.95 10.5 11.1 7.68 9.55 8.76 7.45 10 3.76 7.02 12.2 8.55 8.84 8.6 8.16 10 9.72 9.55 8.31 11.2 8.65 9.54 12.2 5.95 10.5 9.3 9.72 8.74 8.94 7.7 9.07 8.05 10.8 10.3 10.4 10.3 10.7 10.3 8.18 7.67 8.96 9.22 10.2 7.65 4.9 0.63 9.73 12.6 10.7 7.01 9.46 6.52 9.68 8.68 7.54 5.54 8.74 9.74 7.68 8.22 11.8 9.25 9.34 5.11 10.2 9.71 10.5 8.71 10.1 7.9 8.29 1.06 9 6.91 8.45 11.3 5.11 11.1 0.35 9.59 9.34 9.56 10.7 11.1 11.8 2.18 7.77 9.37 8.96 10.8 10.6 9.4 11.6 9.56 2.56 10.3 11.3 0 13.8 11.8 12.2 5.13 6.04 9.31 6.2 11.2 2.26 12.4 0 9.72 2.09 7.56 8.45 7.62 11.5 3.73 8.86 8.47 10.8 4.52 9.59 8.3 8.53 9.96 0.35 0.63 8.61 6.77 10.2 4.56 8.94 7.35 5.61 0.86 9.05 9.36 10.2 10.4 10.9 9.3 11.5 8.03 11 9.31 13.1 8.3 6.55 8.07 10.9 9.84 9.13 7.75 10.2 8.05 11.7 8.83 0.86 11 5.38 10.7 4.16 6.75 7.63 10.9 9.45 8.84 9.96 8.96 12.5 10.8 9.77 8.49 9.39 9.87 11.3 8.64 6.98 9.52 6.57 9.82 10.6 10.4 6.12 10.2 4.18 11 9.97 11.2 7.71 9.1 10.9 8.36 5.24 9.02 9.94 2.69 9.81 10 9.32 11.4 11.5 10.2 5.3 10.7 4.14 8.03 10.9 6.11 3.95 12.1 8.04 11.1 1.24 2.26 8.37 10.7 6.16 4.51 7.94 9.58 11.2 10.7 7.26 6.66 7.97 8.46 8.86 5.66 9.49 8.73 2.86 10.1 6.11 9.62 5.95 9.17 4.91 7.03 7.86 0 0.86 10.8 9.43 0.35 6.11 8.82 8.78 7.48 11.1 8.81 13.2 9.43 8.16 4.61 6.07 5.52 3.43 10.9 9.04 10.6 9.43 4.95 3.28 10.7 8.64 8.64 9.97 9.9 10.9 0 9.24 8.45 8.37 8.38 6.46 10.1 9.34 9.35 8.29 10.8 9.55 0.86 9.56 10 8.1 6.3 8.72 7.05 9.07 10.9 6.1 9.14 7.97 6.3 11.6 7.2 3.78 10.8 10.1 8.53 0.86 10 8.56 12.5 9.28 2.79 4.94 10.5 9.18 10.9 8.47 8.92 11 10 10.3 9.98 7.98 14.5 7.67 10.4 9.3 9.99 7.88 3.19 7.96 3.92 8.46 7.16 8.51 11.4 11.8 10.7 7.21 7.55 3.57 9.55 9.87 9.72 7.59 8.6 9.99 8.31 9.16 8.48 6.53 0.63 8.75 9.61 9.41 1.24 10.1 10.5 9.64 8.7 10.8 9.99 10.5 10.3 9.16 3.39 8.31 10.9 6.26 12 9.24 3.19 9.23 7.13 9.32 4.04 7.48 10.6 7.63 8.12 3.95 10.7 10.6 9.46 9.78 8.21 9.98 9.77 10.8 6.77 7.99 11.2 10.3 9.22 10.3 11 10 10.2 2.69 6.92 9.28 9.04 10.1 9.16 8.92 9.61 0.35 9.13 10.6 10.3 9.15 7.61 7.9 7.32 0.86 12.1 9.73 5.67 10.4 9.87 3.89 7.84 3.39 10.5 8.12 8.15 7.71 10.2 6.93 5.79 6.86 10.5 8.76 11.3 12.6 10.2 8.63 8.37 8.93 8.66 9.93 8.97 5.91 11 8.44 8.67 9.26 11.3 10.7 10.7 6.22 4.44 13.8 8.75 9.76 9.67 8.09 9.91 9.13 8.29 8.83 5.68 8.71 4.64 10.6 9.46 9.82 9.5 8.9 11.2 4.4 9.9 7.76 9.15 8.6 9.3 9.07 7.47 7.96 5.55 8.2 5.86 7.55 12 8.67 3.54 10 10 9.74 4.61 11 9.32 0 7.01 7.5 4.16 7.41 8.6 7.7 2.26 8.5 9.92 9.68 9.69 7.95 7.16 9.87 3.87 9.26 11 12.4 8.48 9.81 9.02 9.47 0 3.24 8.74 9.41 3.19 7 1.06 0 6.85 4.04 11.9 9.34 8.38 1.06 10.3 6.6 3.43 4.16 5.99 11 8.09 10.3 10.4 11.1 12.9 14.2 13.7 5.92 5.29 9.03 9.89 11.3 9.33 3.5 8.63 9.56 9.25 9.88 6.65 10.1 10.7 6.18 9.94 9.31 7.96 10.7 6.49 9.34 12.9 9.6 7.93 4.96 9.78 10 10.6 10.2 6.5 10.1 9.51 11.2 6.4 5.82 5.93 8.31 7.05 10.7 10.4 10.4 8.23 4.44 11 10.1 10.1 8.13 7.13 9.64 7.41 6.26 8.01 8.01 3.82 10.2 8.31 9.02 8.32 8.72 9.72 11.6 10.6 8.64 4.47 10.1 10 7.42 10.6 9.71 10.5 7.26 10.3 3.06 9.83 1.67 0.35 10.9 10.9 13.1 11.9 10.7 10.1 10.9 7.05 8.12 10.3 10.8 12.4 7.72 12.1 8.64 10.1 11.3 7.18 9.13 8.88 9.28 11.4 11.7 5.34 7.28 6.25 10.5 11.9 11.5 11.9 5.04 8.34 4.8 6.86 6.88 6.41 9.28 4.94 9.7 9.83 9.79 10.7 12.6 12 9.52 12 11.5 8.9 10.1 10.5 10.6 10.8 9.32 6.71 0.35 9.89 8.81 9.32 9.81 5.7 7.06 6.2 10.4 6.49 1.24 5.28 10.1 9.45 7.2 9.59 8.43 4.09 8.34 7.45 11 11.7 9.88 10.2 9.76 5.62 11 9.65 6.58 2.34 9.87 11.1 11.1 1.06 2 11.3 9.9 0.35 7.05 7.87 11.2 11.4 4.42 1.67 10.9 10.5 7.91 9.31 12.6 0.35 0.63 4.38 12.2 2.42 5.15 2 9.86 10.8 0.63 3.65 10.4 6.24 10.9 9.06 4.95 2.09 9.5 5.66 9.75 11.7 9.95 4.45 15.2 11 9.84 10.4 8.26 8.81 7.09 7.37 9.67 10.1 4.52 9.73 11 4.67 5.88 0.35 11.8 6.83 5.05 9.53 11.2 14.9 6.16 9.56 0 10.8 3.47 1.59 11 0.86 10.4 9.16 7.41 0.35 6.91 6.14 9.58 9.76 9.71 9.91 10.3 1.06 0 7.67 7.84 0.35 6.74 6.14 8.35 7.44 9.95 11 1.06 5.05 2.96 0 8.84 12.7 4.44 10.1 8.77 11 3.43 8.08 9.25 9.94 8.24 10.7 7.16 9.06 10 9.15 2 10.8 8.87 11.3 8.11 9.59 8.61 10.1 9.23 10.5 9.12 8.99 10.3 12.4 4.36 7.71 10.7 6.4 7.36 7.18 3.73 9.35 9.69 7.62 2.56 10.5 8.73 0.63 9.38 9.22 10.2 11.5 6.71 10.2 0 10.1 10.2 6.09 10.2 7.32 9.77 7.16 6.55 7.93 7.41 2.18 11.4 9 9.1 9.82 14.4 14.1 12.6 12.8 9.37 10.7 12.9 3.7 13.7 7.35 12.3 11.7 11.6 13.3 14.3 11.1 12.8 10 13.6 2.91 11.5 11.3 9.39 12.5 12.7 11.7 12.7 12.2 12.8 11.6 13.2 12.9 12 12.4 11.5 12.3 13.4 12 8.42 7.55 13.3 6.03 12.3 13.1 12.1 9.69 8.22 12.2 12.3 11.8 13.1 11.3 13.8 2.3 0.63 2.49 8.36 9.3 11.9 3.5 2.34 13.6 5.55 9.48 10 9.17 8.76 11.4 12 12.5 11.4 13.6 12.7 12.1 12.6 12 11.7 12.6 12.9 8.93 13.2 11.9 12.9 11.5 12.9 13.2 12.6 8.75 9.53 12.4 2.91 11.5 5.56 7.89 10.5 8.81 9.95 7.22 9.38 3.19 5.37 11.3 9.08 11.5 7.64 10.3 10.4 8.15 8.67 2.34 2.42 5.11 3.92 11.7 2.56 1.89 6.7 1.06 12.2 5.54 6.26 7.36 9.25 2.75 8.91 11.7 1.89 5.56 10.3 10.7 2.01 10.8 8.59 11.1 10.2 5.94 9.11 8.59 9.84 12.4 9.28 10.3 2.96 10 10.5 8.88 12.6 5.44 7.26 6.61 8.71 9.5 8.36 7.03 4.3 10.8 8.32 1.79 8.52 11 1.54 3.01 5.83 8.49 9.52 10.6 0 2.91 7.22 4.8 3.66 7.1 4.02 4.47 0.86 7.86 9.08 0.86 1.24 0.63 0 5.88 0.35 0.35 0.35 1.79 0.35 8.49 0.35 8.53 8.36 12.7 11.7 10.8 10.9 8.82 9.27 10.6 3.54 9.2 10.2 11.3 10.1 9.72 10.2 8.61 5.4 8.75 6.06 7.07 6.37 9.74 7.71 10.4 7.37 12 11.9 4.47 4.14 8.32 10.3 10.9 11 8.82 6.47 1.54 3.84 9.12 7.31 8.19 9.26 8.32 8.33 8.43 9.88 9.08 6.5 9.98 6.7 11 3.39 10.1 1.67 9.61 3.95 6.74 7.21 4.11 8.89 2.09 11.1 2.56 4.22 4.96 7.32 6.72 8.08 12.1 10.3 2.91 11.2 2 3.76 2.69 8.88 0.35 7.08 7.66 11.1 10.1 10.4 8.92 3.24 5.93 3.87 10.8 8.39 8.62 4.9 4.9 8.69 4.97 7.09 11 11.9 11.1 8.61 6.7 9.31 7.97 9.93 8.58 2.69 9.09 6.19 8.44 10.8 2 8.45 7.06 10 1.06 8.03 2.62 11.3 9.48 3.7 6.48 7.02 8.87 12 7.5 10.1 9.93 4.7 10 11.5 5.39 5.96 8.21 2.8 8.06 11.7 1.06 7.69 7.26 8.46 11.5 11.3 10.8 9.68 8.32 4.96 10.1 11.8 2.75 10.1 9.94 8.75 9.56 4.95 6.85 7.28 9.86 9.7 1.54 0.86 1.79 11.1 12.1 3.39 11.9 11.9 3.89 8.85 7.01 9.58 2.91 5.02 5.99 8.4 6.83 9.15 0.35 3.63 6.23 0.86 12.3 2.26 0 12.1 9.89 8.44 10.6 11 9.34 4.56 10 9.09 5.62 9.45 10.3 9.59 9.58 6.66 6.96 3.92 4.91 1.67 2.56 4.76 11.1 10 10.7 5.07 7.15 8.78 0.63 2.91 9.96 8.56 9.75 4.42 0.35 8.58 6.92 5.24 5.94 3.22 4.16 2.26 0.63 0.35 7.68 8.44 2.42 11.3 9.52 1.06 9.35 10.4 7.28 8.66 2.86 8.75 7.95 5.88 6.96 9.32 9.24 8.11 6.62 6.23 2.26 8.38 7.35 9.14 8.96 2 9.94 6.46 10.3 9.51 8.31 9.5 7.82 9.07 8.98 10.9 10.6 10 10.6 8.05 7.39 8.2 0 1.4 4.3 8.98 3.95 8.21 8.14 3.63 14.7 0 10.6 5.3 6.17 8.99 3.81 10.9 2.09 2.8 0 1.79 9.09 7.09 9.83 12.2 3.34 0.35 8.94 2.75 8.57 8.42 6.46 0 4.47 0.63 3.01 9.59 1.54 5.98 6.39 3.06 0 2.62 3.7 4.34 4.2 5.63 7.45 8.4 10.2 0 9.93 2 1.24 0.63 8.17 2.42 7.34 0.35 14.3 6.35 9.66 6.07 5.29 9.48 0 4.9 8.58 10.7 9.13 5.3 9.59 1.67 0.63 2.75 0 0 3.19 6.39 4.77 5.89 6.01 8.85 9.89 13.7 2.18 5.12 8.86 7.96 3.01 10.4 10.4 9.33 8.2 10.8 11.4 11.1 7.13 9.2 8.46 11.4 10.4 9.21 10.1 9.73 8.89 3.73 9.34 11 8.59 8.59 10.3 8.5 8.41 11.2 9.06 9.67 9.12 9.59 9.85 8.06 8.23 9.8 10.8 9.75 6.23 9.55 7.61 0 10.2 4.49 4.38 6.53 8.64 7.23 8.02 3.47 10.4 14.4 8.85 6.01 11.2 7.7 5.57 10.2 7.11 2.86 8.56 9.31 8.07 11.2 6.38 10.9 9.24 8.16 8.45 8.68 10.8 10.4 9.94 2.26 9.61 10.2 9.14 10.4 10 6.53 5.77 3.57 8.54 8.7 8.94 5.45 8.73 3.09 2.26 5.2 8.44 8.08 7.02 3.15 7.81 7.07 5.02 2.62 10.8 2 9.85 8.79 4.7 6.82 9.16 5.5 4.02 7.39 9.11 13.3 5.36 6.38 9.92 2.69 9.74 8.51 9.2 9.65 9.68 8.8 9.95 9.7 9.36 9.44 9.84 8.19 8.64 10.9 9.62 10.4 2.42 4.57 13.2 8.81 10.3 8.44 14.9 6.09 5.36 11.2 7.11 5.95 4.26 0.86 10.4 10.3 11 8.77 9.56 9.31 10.2 7.03 6.4 3.76 5.63 2.49 10.3 9.33 10.5 9.84 9.74 12.3 9.4 9.32 3.84 8.22 8.48 8.91 9.51 10.7 2.18 10.8 7.55 11.9 10.1 7.29 1.4 9.25 4.22 4.14 5.74 5.24 9.88 0.63 9.75 8.48 6.04 4.76 10.2 8.44 7.74 9.49 6.9 9.44 9.31 7.16 8.1 10.9 10.1 2.13 6.54 8.92 3.01 0.35 5.44 0.35 6.62 0 0 4.99 6.39 4.62 0.35 5.27 5.97 0 1.06 6.81 4.59 7.24 9.53 4.24 4.16 4.54 1.24 0.35 8.42 10.2 9.59 7.18 10.6 0.86 7.35 4.8 4.36 1.06 9.47 4.57 8.03 2.56 2.91 9.99 0.86 5.44 5.56 3.39 6.56 1.79 10.5 6.31 0 2.18 11.6 7.47 9.64 1.67 6.9 0 0.63 6.54 0.86 9 9.04 10.6 11.1 2.18 9.61 3.43 2.18 6.75 2 7.42 0 3.36 0 8.58 0.86 9.02 9.37 5.91 3.47 8.39 8.32 9.08 12.6 11.4 6.36 10.3 8.77 11.3 9.98 10.8 0 2 6.64 8.27 3.15 12.1 11.8 0 5.79 11.8 11.8 11.5 11.4 7.99 9.85 8.55 10.7 9.38 9.54 11.7 5.43 9.21 8.38 9.01 7.93 2.42 9.75 8.07 10.8 9.46 10.3 8.74 5.08 9.85 8.15 3.24 9.38 1.4 11.2 10.3 10.2 11.8 9.52 10.6 9.19 10.4 7.18 11.2 2.49 9.93 4.52 10.8 8.05 7.07 10.3 11.2 11.4 6.21 5.02 12.9 8.14 8.38 10.1 7.58 8.15 7.8 5.7 8.7 11.2 9.58 7.85 10.7 10.1 9.96 9.39 9.86 10.9 10.5 9.75 9.37 9.11 13.8 10.4 10.2 5.08 11.3 10.6 8.61 9.84 0.86 12.9 5.32 12 6.65 11.1 8.46 12.9 7.98 10.7 10.2 10.8 9.68 9.71 5.11 8.03 5.93 4.2 8.19 9.7 9.12 13.3 10.8 8.93 7.51 8.71 10.2 6.02 12.7 9.4 10.5 6.38 0.35 9.31 0 2.8 4.04 13.1 5.89 9.68 9.5 13.2 0.35 11.7 13.4 10.5 8.28 10.4 9.49 0 11.3 7.44 12.9 12.8 9.55 9.29 12.8 12.8 9.46 10.8 7.17 11.3 11.7 8.4 10.6 11.9 8.7 10.5 11.3 9.98 10.3 12 11.1 11.4 12.6 11.7 5.12 10 3.19 11.2 9.28 12.8 2.56 11 9.36 7.28 12.3 10.4 11.4 6.68 10.8 12.2 2 0.86 2.96 0.63 1.06 1.4 0.86 1.21 11.1 1.18 1.06 0.35 1.72 10.4 10.8 7.98 12.1 0 8.74 11.3 9.05 9.16 7.42 10.1 7.07 2 6.45 8.44 9.67 6.67 3.54 7.16 9.26 8.58 7.97 9.23 13 4.04 8.92 7.54 8.29 7.11 2.49 13.6 0.35 9.59 10.2 11.7 5.62 12.4 9.06 9.71 8.23 12.1 9.58 9.28 8.16 8.28 10.7 6.92 13.3 9.86 0.63 6.19 11.6 10.8 13.9 9.98 13.1 9.09 8.45 3.15 8.75 11.3 8.15 2.26 10.5 8.27 9.52 9.19 8 6.48 10.9 6.36 10.5 12.2 6.56 10.9 9.75 8.1 7.41 6.59 9.54 5.02 1.06 10.3 12.1 10.6 10.7 11.7 9.3 7.63 11.2 0 4.04 7.46 10.9 9.64 10.5 9.17 8.57 8.06 7.54 5.48 1.54 5.75 5.88 10 10.4 6.42 1.06 5.59 8.24 9.91 1.89 0 11.3 5.76 9.56 11.8 9.4 4.14 8.66 10.2 8.25 10.9 8.52 9.43 3.95 11.4 7.78 7.01 10.7 10.3 10.1 0 8.82 10 4.24 12 1.06 0.35 10.5 7.32 11 5.59 10.1 9.49 7.82 0 12.7 11.7 4.77 7.41 3.28 6.87 11.6 13.2 5.93 8.8 8.93 0.63 10.3 10.1 0 9.22 3.11 8.74 4.07 6.37 8.9 7.46 9.14 9.99 8.37 10.4 1.89 5.77 2.18 10.5 8.86 3.43 10.1 7.01 5.63 8.64 1.24 8.47 11.4 0 9.93 8.32 8.41 5.3 2.18 11.1 0 8.76 9.39 9.08 9.9 9 5.79 1.89 9.53 0 11.2 4.4 1.67 11.1 10.1 9.74 10.2 11.9 8.72 10.8 15.2 13.3 7.57 10.6 9.95 5.6 10 12.1 1.06 10.8 8.98 9.66 10.7 4.79 13.5 12.7 6.08 4.61 5.48 9.69 14.7 11.3 6.19 12.9 4.84 7.32 4.76 9.44 10.5 10.4 14.1 9.34 12.7 9.01 7.27 7.88 3.06 2.42 9.18 7.38 6.58 9.04 1.06 9.54 7.7 2 0.35 0.35 0 8.98 1.67 13.4 9.6 9.9 10.7 5.91 2.09 8.43 11.6 8.55 8.94 11.9 9.7 9.95 3.5 8.38 11.6 5.4 11 0.35 12.5 11.2 9.05 5.6 11.9 11.7 9.37 9.59 12.4 1.54 14.5 0.68 8.91 8.21 11.3 13.8 7.43 7.89 7.25 8.22 8.01 6.38 6.6 5.2 13.1 11 8.06 9.23 0 9.58 0.63 0.63 3.76 4.36 7.67 0 3.76 1.81 11.7 10.3 11.2 0.35 11 1.54 11.2 13.1 11.2 9.92 4.26 5.61 9.72 9.99 11 13.3 8.4 7.89 8.22 5.79 5.57 13.5 10.8 8.49 5.56 0.35 6.41 6.56 9.45 5.28 10.6 5.62 4.96 5.33 6.28 6.97 1.24 8.23 6.31 2.09 5.75 7.78 10.3 5.46 8.95 2.49 3.73 13 11.6 7.05 3.36 4.75 7.2 6.12 7.81 2.56 9.76 2 6.23 7.64 5.46 4.14 4.04 7.73 5.08 6.6 13.6 5.44 8.31 2.69 5.48 0.35 0.63 4.94 5.08 2.62 7.97 0.86 1.4 9.77 5.27 7.33 4.76 3.85 4.15 3.15 2.57 4.24 4.42 7.16 2.69 6 0.63 5.69 3.5 4.51 4.86 5.05 1.24 0 6.94 10.3 9.66 3.87 9.37 3.6 4.95 11.5 4.07 6.44 1.54 8.81 9.63 0.86 0 5.15 8.07 5.38 7.56 1.24 7.19 3.11 8.76 8.86 6.01 13.7 2.34 7.68 5.88 9.12 4.54 8.32 0.63 7.47 2.26 10.5 4 12.6 1.79 14.9 15.1 12.9 1.06 9.35 9.79 10.8 8.26 10.8 12.4 10.1 9.13 9.11 10.6 10.3 10.6 1.4 10.6 11 10.4 10.4 10.7 9.69 10.8 10.2 11.5 14.1 8.51 0.35 2.42 10.2 3.43 10.2 5.54 8.67 7.67 7.57 10.2 0.86 8.16 9.18 8.71 9.54 9.85 10 9.2 0 10.7 1.06 12.8 11.6 12.1 10.5 10 9.76 9.79 9.45 11.6 9.1 9.89 10.8 10.8 9.25 9.16 10.9 8.4 4.76 11.1 10.7 6.63 10.7 12.9 12.1 11 11.2 1.67 10.8 11.8 5.89 11 9.33 0 11 12.8 6.75 1.89 10.8 5.68 9.69 6.86 6.99 8.61 9.22 7.83 2.34 12.4 11.5 5.43 9.24 11.7 10.2 10.7 5.22 9.97 8.4 11.8 10.4 9 8.08 0.35 2.86 2.8 6.4 0 1.24 6.35 0.35 4.65 3.32 0.35 1.06 11.1 7.83 1.06 11.4 0 3.11 13 9.46 8.71 11 4.17 10.1 2.34 11.4 10.1 3.87 5.68 5.6 9.69 12.8 7.78 9.17 9.76 12.9 10.9 13.7 13.2 13.3 13.7 2.86 12.2 8.78 7.87 12.1 8.48 8.88 8.91 7.27 9.26 8.84 9.37 8.15 7.12 12.7 9.65 9.48 7.97 7.65 7.68 7.32 7.81 5.69 6.54 7.66 9.96 8.62 8.56 10.8 7.35 6.58 5.11 9.53 10.4 9.96 6.91 9.69 9.03 7.35 8.23 8.99 8.12 7.58 7.19 5.35 0.35 7.4 2.96 7.48 7.89 9.09 8.31 9.32 7.19 0 9.65 5.37 6.81 6.51 8.65 0.63 8.84 7.34 5.09 7.35 12.1 4.16 2.69 3.7 4.92 3.85 6.03 9.61 8.32 8.21 7.53 8.29 8.29 5.76 8.2 4.95 7.04 8.89 9.12 6.14 9.42 8.09 10.1 7.3 10.3 9.83 10 7.9 5.24 7.94 7.76 4.44 9.9 4.88 9.99 8.58 7.93 1.54 6.66 9.52 7.73 8.63 7.93 5.59 11.1 9.03 9.13 9.09 7.79 8.79 9.32 11.3 7.52 7.19 9.36 8.15 11.3 6.56 10.4 8.6 5.49 1.4 12.1 8.29 7.21 7.52 6.29 8.7 4.54 8.48 7.66 7.45 7 7.25 7.93 7.18 5.76 2.49 7.24 6.45 9.9 6.73 8.31 8.55 8.75 10.4 8.06 10.9 7.62 8.61 7.14 12.5 8.17 11.2 9.12 8.61 11 8.19 9.74 8.32 9.94 11 13.1 0.35 6.72 0.35 6.95 6.78 9.59 17.4 8.98 9.4 9.86 6.78 9.54 10 11.7 12.9 9.07 11.3 9.81 11.2 11.1 10.2 5.51 4.65 9.7 10.1 8.76 4.18 8.69 9.1 0.35 7.57 8.93 3.15 10.9 10.8 8.25 10.2 8.74 10 11 7.43 10.1 9.38 10.3 8.93 7.77 5.63 9.87 10.1 7.98 0.86 12.3 10.3 6.99 5.24 7.93 8.9 8.83 9.06 10.1 5.08 9.68 9.54 6.97 9.49 8.81 10.6 12.8 8 9.46 6.57 8.8 8.43 10.4 10.1 11.2 7.07 7.69 7.64 11.8 6.68 4.51 8.26 7.11 8.68 8.39 8.41 10.8 10.9 8.69 6.56 9.45 6.68 8.67 4.24 5.01 8.46 7.81 9.68 1.06 8.58 9.68 9.85 10.3 7.34 8.32 9.17 9.24 12.2 10.9 6.88 9.68 10.1 12 9.72 9.24 3.76 5.97 9.61 0 3.53 7.99 7.83 4.36 9.75 10.1 7.49 12.8 7.49 8.04 0 2.88 8.3 12.2 1.24 10.2 6.19 4.47 9.88 8.08 9.6 8.46 9.6 9.08 8.62 8.97 9.27 6.43 10.1 12.1 6.15 10.7 11.7 8 8.62 7.66 0 10 0.35 1.54 0 10.4 6.16 10.2 11.9 7.75 0 6.89 0 4.14 0.35 3.78 7.08 2.42 0 8.26 8.38 8.7 8.64 1.06 8.38 8.2 9.38 3.84 1.4 4.09 4.04 11.4 8.03 8.99 7.44 9.16 9.34 7.94 9.75 8.78 10.6 9.51 8.83 9.24 9.6 12.4 9.13 10.7 9.71 9.36 9.88 8.41 8.25 9.83 10.8 8.84 11 8.22 9.45 6.84 9.12 7.37 8.27 3.6 7.05 8.43 9.05 11 8.74 1.54 4 8.72 3.7 7.68 7.34 9.49 8.06 6.35 9.73 8.01 7.54 8.13 9.36 10.2 2.75 8.47 7.78 0 8.64 10.4 8.79 8.15 8.3 8.97 6.28 8.22 8.15 7.09 9.6 8.27 9.24 10.9 6.69 7.14 9.85 10.3 7.61 6.06 8.72 1.4 8.22 8.56 10.1 8.31 1.67 9.14 8.63 9.19 8.77 7.68 8.43 6.76 11.2 8 5.59 8 9.83 7.98 9.07 6.89 7.24 8.28 9.79 9.07 6.45 7.4 9 6.7 9.39 7.68 8.93 9.77 5.3 8.68 8.01 8.69 11.7 10.6 8.09 0 6.06 9.83 7.31 9.85 8.18 6.23 2.42 8.02 2.62 8.7 10.3 7.54 9.37 8.73 2.38 7.98 7.87 11.3 4.7 0 7.46 1.06 9.7 8.99 7.8 10 1.54 8.72 8.01 7.05 8 7.19 10.2 9.22 7.85 11.5 3.24 3.28 9.68 8.58 7.1 7.19 9.64 1.24 0 2.49 2.86 7.77 5.93 8.61 10.2 10.9 6.31 8.16 9.54 7.94 9.05 8.25 6.42 6.78 8.65 2.49 6.97 9.47 8.53 11.1 9.82 8.81 0.86 7.2 4.65 6.53 5.62 5.14 10 0.35 7.34 6.03 4.51 5.91 8.2 8.98 7.19 6.83 9.12 7.14 9.36 6.99 10.6 0.86 5.56 8.37 7.56 0.63 6.9 3.24 5.67 5.73 5.16 7.57 7.23 0 7.65 5.05 0 3.84 6.65 0.63 6.92 0 7.44 8.34 7.84 0.35 5.85 9.88 8.53 10.9 6.97 6.36 9.17 7.44 7.99 8.16 10.5 10.3 5.27 7.92 10.8 3.6 10.7 10.5 9.07 7.4 10.6 6.3 8.68 9.68 11.1 9.66 4.04 8.73 8.3 6.81 5.01 9.14 8.28 10.2 4.36 4.79 0 11.5 9.61 6.97 5.05 5.98 8.52 12.1 7.42 0.35 2.62 9.1 5.11 4.16 7.75 6.9 0 10.3 1.54 8.93 1.89 3.43 10.6 10.2 2.26 7.77 8.09 2.45 9.07 1.89 0 9.23 6.55 9.58 7.97 2.86 7.44 10 3.6 7.65 7.97 7.69 8.56 7.54 6.82 5.24 6.97 1.06 8.4 8.05 9.72 7.33 4.61 7.83 6.58 9.58 9.41 2.09 6.61 5.08 11.9 0.86 8.02 9.47 6.78 6.56 9.92 9.2 2.91 8.25 10.3 10.6 9.23 5.72 9.4 8.57 7.46 9.55 8.51 6.8 11.5 6.06 8.25 8.97 9.27 0.86 2.34 1.24 2.8 11.8 6.71 8.56 2.92 4.54 4 0.35 7.3 11.2 15.9 6.15 8.06 5.25 3.01 4.42 0 9.56 6.62 8.14 3.11 5.71 1.4 9.06 5.24 10.6 8.45 8.34 9.94 9.91 9.53 5.37 8.89 9.2 8.91 7.36 9.93 5.4 5.22 7.24 9.75 8.49 6.73 5.73 6.96 5.8 8.87 3.78 9.13 8.53 9.74 7.29 7.08 9.36 8.55 8.36 1.89 10.7 10.4 12.2 9.5 10.3 8.82 10.4 9.84 10.3 10.7 4.57 5.19 10.2 10.3 4.07 9.43 8.52 8.12 9.29 11.4 9.67 2.69 11.4 8.15 8.33 7.37 4.07 9.58 9.78 9.84 5.05 8.88 6.08 6.12 11.1 9.62 4.14 7.69 9.44 4.69 11.1 9.24 6.22 8.94 10.4 9.33 6.41 7.45 8.69 8.14 4.44 9.42 11.8 10.2 9.62 4.97 7.74 8.36 11.4 5.86 8.16 1.89 9.05 9.47 7.6 9.66 8.42 5.26 5.12 11.7 4.44 5.25 11.8 6.35 0 7.79 3.97 10.6 6.87 7.73 10.6 10.5 0.63 10.7 1.24 11 5.54 3.97 10.2 7.63 15.5 9.54 2.62 10.1 11.5 5.23 10.3 2.26 10.4 9.12 11.4 6.45 9.7 7.41 9.43 1.54 0.86 7.4 0 6 8.43 6.76 8.23 9.54 5.66 6.38 7.09 6.07 8.03 13.4 9.38 5.97 7.14 7.4 7.71 6.01 10.5 7.33 12.1 10.8 9.44 12 10.3 13.3 9.11 7.63 8.09 6.92 8.68 9.48 10.2 10.9 10.1 7.58 8.27 0 11.1 9.41 7.26 11.7 10.9 9.21 5.5 9.45 6.23 3.96 11.6 8.24 9.12 6.15 2.26 1.54 11.9 12.2 9.37 1.79 4.56 3.63 1.06 5.4 9.92 4.28 10.8 10.6 13.6 5.94 9.59 0.35 10.8 6.93 10.7 10.3 9.39 5.16 10.7 7.24 11.9 11.1 8.69 0 6.63 3.97 0.35 10.9 10.7 8.69 12 9.51 12.2 9.51 1.54 10.8 9.76 8.03 10.4 9.15 9.92 10.8 9.77 7.9 8.98 8.88 9.84 11.3 10.2 10.1 11.7 2.18 9.42 6.4 8.53 8.08 9 8.8 9.34 5.35 9.77 12.1 8.46 11.3 9.89 8.53 2.75 9.47 10.8 8.94 5.78 11.6 10.5 3.84 0.63 9.22 14.5 9.03 5.91 4.89 6.01 5.69 10.8 10.2 2.42 12.1 10.4 9.15 10.3 11.4 10.5 7.55 1.24 8.1 1.24 6.14 0.35 2.49 9.43 8.39 5.3 6.5 8.09 10 1.79 5.39 0.35 11.6 6.87 7.74 7.83 9.97 10.2 11.9 9 9.9 3.73 9.83 7.95 9.85 9.91 6.64 9.72 8.71 12.1 9.61 7.49 9.76 10.8 8.69 9.43 0.86 9.78 10.8 2.63 9.2 9.15 7.52 9.7 4.11 4.76 3.78 9.27 10.5 1.06 8.69 6.8 5.78 11.3 14.3 9.57 10 7.77 6.25 8.95 2.18 8.8 8.11 9.48 9.43 10.9 8.49 13.3 11.9 12.1 10.8 11.4 10.7 5.23 12.4 9.82 7.38 10.2 7.6 9.49 8.82 0 6.78 1.24 10.1 9.57 9.82 5.77 9.85 1.79 10.7 10.7 11.3 10.2 9.07 11.3 7.96 8.55 6.98 10.6 9.64 4.2 4.88 11 0.35 8.14 9.21 8.37 9.25 6.11 2.34 0.35 10 2.96 0 0.63 8.32 0.86 6.82 3.11 2.26 3.54 5.54 1.24 1.06 3.39 0.86 0 0.86 6.38 1.4 9.23 10.1 10.5 8.2 7.5 5.18 1.24 6.87 8.23 8.56 0 8.13 5.94 6.98 10.6 6.36 4.26 7.34 8.5 6.87 9.27 0.86 8.34 2 11.7 10.1 8.73 1.89 1.89 0 6.1 6.71 0 6.09 8.15 6.89 9.19 6.93 9.46 9.64 0 7.59 0.35 3.28 0.63 0.63 8.83 8.47 5.18 8.49 9.37 8.21 2.62 8.88 0.35 7.86 10 9.81 9.2 7.83 0.35 4.94 10.4 10.2 9.2 0.63 8.68 9.49 8.3 7.71 10.4 5.99 2 1.4 11.9 0.35 11.8 10.8 7 2.34 6.6 11.3 10.8 9.27 9.23 10.1 1.89 1.4 10.8 6.06 8.4 10.8 5.87 8.05 7.2 1.67 8.69 10.1 5.99 9.41 2 8.6 5.23 7.57 10 8.98 9.03 6.8 10.2 10.9 2.49 7.71 8.93 8.73 8.33 8.25 0.35 5.16 0.35 7.9 2.62 1.64 9.17 8.23 11.8 5.85 8.26 7.8 9.99 8.01 6.96 7.87 5.3 5.89 10.4 6.11 3.32 0.35 0.86 0.35 5.06 0 1.67 0 2.27 8.48 11.5 5.87 3.01 10.2 8.77 8.71 9.35 8.45 2.42 11.1 10.7 8 8.91 7.21 9.49 0.35 6.46 1.89 4.34 12 8.91 10.6 4.04 9.49 10.2 4.69 10.4 9.94 0.35 4.79 6.24 0 8.69 8.48 0.35 6.62 10.5 4.57 5.48 11.5 10 3.36 9.74 4.95 8.11 0.86 6.23 8.3 11 8.28 4.14 10.8 9.38 8.91 6.92 0.86 12 3.92 7.1 0.35 5.95 5.17 8.84 9.05 11.3 8.54 10.1 6.48 6.14 9.62 9.41 0.86 5.58 8.62 2.18 8.16 8.56 2.69 6.84 9.73 8.82 8.56 7.77 9.52 9.03 6.95 7.88 8.2 8.95 8.2 7.43 7.81 7.57 1.4 8.39 9.47 11.8 9.81 8.56 8.12 5.6 11.4 8.22 10.4 8.08 7.1 8.98 10.2 6.44 9.09 7.99 1.24 3.64 9.7 10.8 7.75 8.97 10 10.1 3.92 0 6.36 9.14 10.7 9.77 4.8 7.74 2.09 4.38 3.54 6.89 5.85 8.96 6.83 8.02 4.26 7.4 7.73 3.67 4.77 0 9 10 10.6 8.13 8.03 1.67 8.01 9.18 7.98 9.1 9.66 10.5 2.96 10.5 7.48 8.73 10.2 10.2 8.85 10.7 4.14 8.44 10.1 6.47 8.15 9.03 8.8 10.2 9.43 8.24 9.95 8.54 8.57 7.28 10.8 8.87 8.72 8.83 6.24 8.16 9.21 3.7 8.49 10.4 9.85 6.37 6.97 7.27 10.7 8.93 10.2 7.29 8.84 9.4 1.89 7.7 11.6 9.1 10.2 4.75 8.71 9.87 6.15 10.4 4.51 11.6 8.91 8.18 8.63 6.99 8.63 9.49 0.63 9.79 9.18 9 8.92 8.96 8.92 9.06 10.5 6.77 9.49 8.95 7.92 9.98 9.32 6.15 7.57 5.23 7.75 8.94 0 10.3 8.41 10.1 9.29 9.74 9.34 10.5 9.49 9.87 0 9.45 11 9.26 0.86 10.2 3.78 8.81 2.8 9.84 10.5 11.5 0.35 10.5 9.62 8.2 10.1 5.51 7.82 8.49 9.22 8.1 10.2 10 11 9 7.88 7.78 10.6 9.15 7.78 7.16 5.78 8.96 8.63 9.61 7.52 4.72 5.29 7.32 4.85 9.9 10.1 11.3 8.87 12.2 7.45 10.6 9.54 9.83 7.56 10.2 3.73 1.24 2.34 10.8 8.24 9.29 7.81 4.57 9.14 8.29 9.96 5.73 6.47 10.5 4 8.03 9.88 7.81 8.8 8.57 11.8 6.06 9.93 2.56 1.54 11.3 7.51 8.29 0 9.87 4.34 5.33 8.32 9.35 8.19 3.28 8.14 7.27 4.57 8.65 4.96 5.71 10.8 6.12 6.6 0.63 0.86 6.27 8.79 10.5 5.94 8.67 7.96 11.4 3.19 1.06 0 1.79 9.37 8.93 6.15 10.5 11.6 7.08 5.78 0 8.66 7.65 0.67 7.68 9.3 10.5 6.61 2.92 7.76 8.67 3.11 5.36 0 7.24 12.3 4.38 3.76 7.84 8.08 12.1 6.72 10.1 10.2 9.51 6.85 6.36 12.9 7.87 10.6 5.67 7.35 0 1.54 10.9 10.1 6.03 10.5 8.83 12.7 6.44 2.42 8.23 3.78 3.7 7.96 6.89 9.52 10.2 6.58 9.38 2.86 6.28 7.72 9.33 5.25 6.77 4.42 0.35 6.99 9.1 8.56 10 8.55 0.63 8.29 8.93 10.5 3.01 7.85 9.49 0 7.45 3.01 0.35 6.36 10.6 10.8 7.22 7.71 0.63 2.26 8.46 1.67 8.03 5.1 7 8.71 9.66 9.77 7.16 10.5 5.54 9.64 6.93 3.95 6.5 7.45 7.52 10.3 5.93 8.26 4.65 8.43 9.38 7.61 10.2 8.39 8.52 0 9.95 10.6 6.73 9.42 11.2 10.3 6.3 6.41 18.6 8.37 8.09 7.67 4.12 6.87 8.42 8.89 9.15 10.1 7.23 9.98 5.59 9.11 10.9 9.9 11.1 10.4 0.63 5.38 8.9 9.84 7.79 8.6 11.5 9.98 0 8.08 8.47 10.1 7.96 8.89 8.33 10.2 6.89 10.6 6.67 1.4 8.08 0.63 9 9.22 8.16 8.17 9.47 7.82 0.86 5.54 0 7.85 8.58 7.6 3.5 5.09 8.26 5.38 7.09 4.95 7.63 8.19 6.84 4.4 7.88 8.52 9.17 9.58 8.9 2.09 10.5 8.36 6.99 7.61 0 8.2 9.99 9.53 4.38 9.87 9.34 11.3 9.38 7.4 10.2 6.51 7.24 7.92 0.63 4.7 11.1 9.58 9.73 8.32 6.93 10.6 9.51 9.49 7.98 6.4 5.43 9.97 9.15 9.11 6.91 7.27 10.9 8.8 4.77 1.89 8.26 3.97 5.51 8.64 11.1 8.99 9.52 0.86 10.1 0.35 9.03 10.7 10.2 8.15 7.65 0 2.91 12.2 4.09 7.68 8.24 9.33 6.23 1.08 5.9 2.26 1.54 10.8 10.8 9.87 5.01 9.56 9.88 9.72 6.48 6.16 10.2 10.2 0.63 9.05 0.63 5.55 8.44 10.3 8.92 11.1 7.24 9.45 10.8 10.3 3.11 3.6 9.86 0 3.43 8.06 2.96 8.28 6.87 10.2 5.5 8.6 9.96 9.71 10.7 7.99 4.86 11 7.89 9.7 10.2 10.9 11.3 9.75 10.7 8.96 11.1 8.99 8.74 4.67 8.25 8.06 9.94 6.05 0.35 11.1 3.7 1.89 0.63 10.7 2.49 1.67 5.52 8.58 3.45 4.16 11.3 8.43 10.6 5.12 7.26 9.41 8.72 11.9 9.88 8.35 1.06 9.97 11.2 12.2 8.84 6.94 8.98 11.1 9.97 9.51 8.96 10.1 8.99 6.21 7.22 7.16 8.59 9.05 3.19 0 1.24 9.17 9.51 10.4 10.3 9.65 3.67 6.69 5.59 10.4 4.24 10.2 5.73 11.1 7.82 2.56 9.6 7.86 10.1 9.14 8.59 2.49 9.34 6.07 2.18 2.42 3.95 8.89 8.56 9.99 8.85 6.44 4.16 9.51 3.63 8.95 10.4 2.09 7.58 4.57 4.44 10.8 9.97 10.7 10.1 2.75 8.55 12.1 11.2 7.72 11.7 12.4 11.9 7.83 11.2 10.6 10.6 11.4 9.93 10.3 9.81 5.34 11.3 6.04 11.3 11.1 4.24 8.07 10.4 7.61 7.91 13.5 10.7 3.6 8.95 10.2 5.78 9.54 9.09 3.54 12.6 0.35 9.44 10.9 8.28 7.88 9.32 6.69 4.75 9.47 5.08 1.89 7.68 8.99 5.93 12.1 12 10.7 10.5 11.8 10.9 8.57 10.2 6.26 11.4 10.2 10.3 10.1 11.2 4.54 9.71 8.4 6.79 0.86 7.46 9 8.62 0.35 7.17 3.32 1.4 7.69 10.2 9.61 7.52 11.3 10.6 12.8 8.16 11.7 5.26 6.23 8.35 8.46 9.28 12.6 8.08 5.45 11.1 3.06 10.1 0.35 0 9.84 2.49 7.94 3.47 6.11 5.34 7.27 3.32 8.75 11.1 0.35 6.47 9.05 10.8 10.6 11.1 8.75 1.4 2 1.24 1.4 9.82 9.11 3.24 10.4 10.4 1.79 8.8 8.6 2.86 4.57 3.32 10.5 7.2 11.8 12 11.6 7.24 9.38 3.63 9.83 8.63 9.23 4.7 8.46 0.63 5.89 6.07 9.46 0 1.67 8.93 7.76 7.65 5.68 11.8 9.67 9.49 8.1 3.39 5.5 5.35 1.54 7.97 11 9.35 10.3 9.18 11.5 9.02 7.25 6.19 10.2 9.09 9.43 3.47 1.79 4.17 13.7 11.5 10.6 10.3 9.27 10.3 8.47 9.97 12 10.7 10.4 9.43 7.86 9.19 10.1 10.1 11.8 9.85 10.3 9.42 10.6 0.35 6.59 6.88 10.5 10.3 8.33 10.9 7.78 1.24 8.05 10.3 0 5.67 10.9 0.35 8.73 6.28 9.34 9.68 11.3 10.7 10.3 11 1.29 9.68 9.28 12.2 9.97 7.43 10.8 12.1 10.2 13.4 7.54 2.96 12.2 10.3 10.3 0 2.62 3.06 11.5 2.09 0 11.1 9.27 10.8 7.64 0 10.7 8.66 4.76 6.62 12.1 10.1 5.75 9.09 0.35 8.6 3.01 3.5 8.61 3.63 7.06 7.38 11 9.86 3.92 0.63 9.23 7.34 9.13 0 1.51 8.06 2.16 0 6.88 0 10.4 8.94 7.59 7.28 5.99 10.4 12.6 10.8 0.86 4.95 6.33 10.6 8.61 9.29 6.81 10.1 8.61 7.98 6.89 8.21 2.86 10.4 11.1 10.2 4.96 6.42 7.74 7.49 7.91 9.52 6.64 14.3 8.94 10.8 9.55 0 10.1 10.7 8.48 5.57 7.62 8.75 11.5 10.3 9.68 9.64 7.35 9.25 7.95 6.87 0.35 2 2.96 9.07 6.85 8.97 7.58 12.1 8.63 7.27 8.12 2.09 7.06 1.67 7.49 3.32 11.3 11.5 8.62 7.19 8.59 9.24 7.97 0.35 8.38 6.78 8.87 3.15 2.96 5.3 7.96 3.92 6.94 7.65 8.58 2.27 10 6.48 7.19 10.7 8.3 8.36 12.7 9.15 7.25 6.57 6.37 11.9 8.91 9.15 12 8 4.22 8.12 2.49 10.1 6.13 11 10.4 9.79 3.73 3.7 10.4 1.89 3.5 8.68 11.8 1.63 7.5 10.9 9.2 8.98 8.05 7.02 4.96 9 6.6 8.16 0.35 5.48 7.47 6.22 6.38 10.2 9.67 9.35 8.49 8.95 8.78 7.26 8.87 5.75 6.23 9.02 7.65 9.62 5.11 10.4 8.09 10.4 10.6 1.46 7.67 1.06 0.86 1.54 11.3 7.82 7.94 12.1 5.18 9.55 9.84 8.78 4.04 10.9 9.32 5.23 9.25 9.29 6.84 9.62 4.79 5.28 0 10.5 10.6 10.7 10.1 9.56 5.36 8.86 9.27 9.54 4.22 10.6 6.08 7.56 4.38 8.99 5.35 11.2 10.1 10.3 8.73 9.86 3.11 9.5 8.81 9.12 7.85 8.42 11 9.35 1.89 10.2 7.08 6.36 10.2 6.66 8.34 5.95 9.68 11.9 8.02 8.14 10.4 6.72 12.6 5.26 2.86 4.96 3.81 5.71 1.4 6.33 10.8 7.8 10.9 11 9.78 9.4 9.66 8.04 10.9 10.2 10.8 0.63 10.7 8.87 11.7 9.69 6.97 7.09 2.62 6.43 5.67 11.1 7.03 0 5.41 8.29 8.76 10.3 10.1 9.33 10.3 7.82 2.26 9.55 9.25 9.52 6.97 10.1 4.64 11.8 8.25 10.3 4.16 9.92 12.4 1.4 10 11.1 11.4 10.5 10.6 10 1.67 8.58 1.67 5.18 7.29 10.2 7.54 4.8 8.62 10.5 9.85 9.4 8.63 2.62 8.47 7.14 4.8 10.6 2.49 6.04 0.63 8.9 7.63 9.37 6.42 1.06 10 6.84 11.8 11.5 7.23 10.2 10.5 8.28 5.84 0.86 5.36 0 5.48 0.86 6.46 10.7 10.8 5.92 6.18 7.9 1.4 11.4 8.71 11.1 10.2 8.09 6.28 8.26 2.69 7.76 1.24 9.03 8.82 11.4 6.52 7.39 7.88 0 8.16 8.28 8.71 10.5 9.38 7.58 2.09 9.83 0.35 6.69 8.52 7.61 2.26 9.44 1.67 8.44 9.7 4.84 2.42 7.1 8.77 7.49 5.41 9.32 10.3 7.29 9.03 9.62 10.4 8.46 8.53 8.37 11.5 10.1 5.57 2.96 8.5 9.55 7.59 5.05 7.63 10.5 5.32 11.4 7.91 9.83 7.14 10.3 8.5 11.6 8.22 10.5 3.67 7.49 11.4 9.38 7.83 2 6.42 9.15 9.43 9.16 4.14 1.67 7.32 6.72 2.26 6.35 0.35 9.15 1.54 11.6 2.18 11.4 10.9 2.8 7.48 9.27 2.56 7.91 8.35 7.28 7.25 2 12.6 8.79 8.64 9.57 8.65 1.54 12.5 9.91 4.04 5.06 2.18 7.56 2.49 10.7 8.89 0 9.6 5.22 7.79 8.78 9.04 8.38 10.2 9.57 8.32 3.67 10.8 7.06 5.58 7.41 8.36 1.24 9.63 9.58 10.9 6.71 6.99 8.55 9.66 6.06 10.6 8.35 10.2 9.82 8.89 7.66 9.83 9.6 8.05 8.73 8.96 2.8 10.3 12.1 10.1 9.52 4.2 8.48 9.48 8.77 7.24 9.45 9.29 6.57 10.1 7.77 8.73 7.06 9.88 0.63 9.26 9.9 4.73 6.75 7.03 5.78 10.6 10.9 5.02 7.68 9.3 9.18 8.66 0 8.6 2.33 1.06 9.43 8.82 8.49 7.34 0.86 0.35 6.33 7.94 7.44 6.53 9.6 9.26 6.48 6.51 8.26 6.35 0.86 3.81 11.1 9.47 10.7 5.26 11.8 9.6 9.44 6.49 3.95 11.2 8.9 9.53 9.62 8.23 5.54 9.73 9.54 7.33 6.26 0 9.04 7.64 4.72 9.42 10 10.4 11.3 10.1 0.35 9.54 9.55 11.7 6.33 4.82 11 12.5 0 10.1 1.54 10.5 6.33 11.1 0.63 7.36 0.63 8.06 6.15 2.69 6.8 10.2 11.1 10.2 7.59 13.5 8.45 9.35 9.22 6.67 8.97 8.71 8.8 3.99 1.56 9.97 10.1 8.36 7.18 10.6 10.8 8.69 10.4 8.62 12.4 10.2 6.35 10.9 10.3 3.7 11.1 4.32 0.35 0.86 3.74 0.63 11.4 8.33 9.05 2.56 8.85 9.17 10.6 0 1.67 1.24 9.64 9.45 2.18 9.49 10.5 5.88 6.65 9.12 1.06 0 10.9 8.52 5.29 10.4 5.38 6.57 9.59 5.05 10.1 9.98 1.06 9.62 8.24 0 8.92 10.6 10.6 8.81 9.81 8.31 9.7 7.01 4.9 4.54 10.3 6.2 9.29 11.5 1.79 10.8 8.94 4.59 3.54 9.69 4.56 11.4 5.13 5.38 10.1 9.24 7.52 5.42 5.61 2.09 9.46 0 9.35 2.49 8.86 7.81 8.31 8.32 9.48 14.9 10.2 0.86 9.81 3.47 4.95 8.95 7.23 10.7 5.99 7.3 3.89 9.6 0.35 10.4 9.44 9.11 5.68 9.36 1.06 9.38 9.91 10.1 11.3 6.28 9.38 9.04 1.24 8.13 12.5 7.35 8.94 7.72 8.93 9.03 5.18 8.44 8.77 10.6 11.1 5.56 6.81 5.38 11.4 4.07 8.58 12 12.7 9.57 8.26 3.47 7.15 5.51 8.32 10.9 11.2 1.54 9.39 10.7 9.26 8.37 8.48 2.18 10.3 9.19 12.7 9.91 10.4 9.2 10.1 12.6 10.5 9.08 7.68 11.3 8.51 8.33 7.85 6.41 6.26 9.76 10.9 2.09 8.49 10.3 6.7 9.7 7.19 2.75 11.1 12.6 10.8 9.45 9.75 10.2 11.6 10.7 10.6 9.65 4.18 9.35 8.14 10.9 10.1 9.85 9.14 5.89 10.5 11.3 8.55 9.2 11.3 9.26 7.77 13.2 4.49 9.21 11.7 6.98 9.42 9.01 11.2 10.4 0.35 11.6 10.2 3.39 1.89 13.4 9.2 10.6 5.22 11.2 9.31 8.82 11.5 7.37 10.8 13.3 9.89 6.76 7.37 10.9 3.92 4.77 9.95 3.81 1.54 6.54 5.27 8.75 11.8 2.34 1.06 8.97 10.4 9.87 7.2 10.1 3.89 13.1 11.2 7.67 9.94 11.5 10.4 10.7 8.74 6.56 7.43 10.9 10.7 9.08 6.81 9.46 10.3 8.37 8.46 12.3 13.8 9.17 6.92 10.4 11.3 11.6 10.8 7 11.1 13.4 9.61 4.75 9.72 10.6 7.71 9.59 8.84 10.9 9.87 10.3 8.78 8.66 9.29 10.3 9.79 10.8 8.58 7 9.73 10.6 1.89 10.3 8.64 10.3 10.1 9.85 7.98 8.13 10.9 10.1 6.71 0 4.59 10.3 9.41 12.5 7.9 8.77 9.33 5.59 11.3 2.26 10.1 9.27 8.22 2.26 9.44 1.24 11.6 10.1 12.8 6.03 9.4 10.9 5.41 8.95 9.79 10.7 1.24 9.63 8.63 7.71 10.6 10.8 7.63 11.3 12.7 10.8 9.84 3.97 12.8 9.18 9.27 4.28 12.5 9.22 10.4 9.28 13.5 7.79 10.5 8.17 7.46 8.37 9.35 9.79 8.14 2.56 12.1 11.3 11.4 9.51 9.85 7.39 5.25 12 7.23 10.2 9.53 12.4 10 11.7 11 10.8 11 4.02 7.77 9.9 13.1 11.2 11.3 10.1 9.68 5.18 10.4 9.8 10 9.41 8.81 11.8 8.64 11.2 10.5 11.2 9.64 10.4 11.7 13.2 12.8 13.9 11 2.56 10.5 11.5 9.94 11.1 8.63 10.2 8.19 10.8 10.7 8.28 10.4 10.5 11.1 7.82 8.4 12.3 7.74 12.3 11 7.22 10.4 8.49 9.08 4.69 7.49 9.17 4.72 9.58 8.56 0 8.1 10.4 6.99 10.3 11.6 10.4 10.4 8.57 8.05 11.2 11.3 9.7 8.93 7.41 10.6 8.92 11 6.12 10.3 10.1 10.5 10.4 6.93 13.6 11.5 9.33 10.9 9.15 10.3 9.14 11.1 9.96 12.2 11 10.4 11 7.47 9.81 10 10.9 7.72 10.1 8.07 11 7.86 12.2 8.36 8.16 9.75 9.46 9.68 11 12 11.8 4.82 13.2 10.5 8.25 10.2 8.9 11.7 7.62 9.51 12.7 10.2 5.23 9.98 10.4 10.4 10.8 1.54 8.25 12.4 9.19 11.2 7.72 11.4 11.2 9.3 8.64 7.83 11 10.9 6.63 9.38 6.38 10 8.43 3.89 7.69 9.2 9 6.19 11.3 9.83 1.24 8.11 6.67 9.49 5.66 9.17 10.9 6.73 4.28 10.1 1.4 2.56 9.86 8.22 9.2 11 6.25 11.3 12.3 1.67 1.06 11.1 9.7 10.2 9.27 3.99 9.92 8.78 12.2 5.38 10.2 10.8 8.42 8.44 10.9 7.01 12.2 9.83 8.91 0 9.27 9.36 2.86 11.8 8.67 8.53
-TCGA-Q1-A5R2-01 6.11 9.99 2.9 6.1 7.79 9.31 2.08 2.37 0 0 0 7.96 5.47 6.28 5.41 10.4 9.96 10.4 6.73 9.48 8.96 12.3 7.94 1.25 9.31 7.07 1.67 10.3 1.26 5.76 5.88 9.24 4.35 3.22 3.15 1.74 0 7.72 0.94 4.8 4.18 2.99 5.7 0 7.14 3.42 1.25 3.36 11.6 6.54 3.65 5.53 8.87 8.47 4.77 2.9 5.3 0 5.78 6.66 6.66 5.33 7.83 2.64 1.92 0.94 7.83 2.9 10.1 4.69 5.89 5.85 1.73 3.15 0 2.08 4.78 5.94 6.26 0 4.45 1.25 1.35 9.06 3.65 6.59 7.22 0.55 4.51 2.37 10.3 3.29 6.76 6.74 3.97 4.18 1.51 3.29 5.49 7.2 0 3.75 0 4.89 3.48 3.29 6.61 8.28 9.52 3.15 0.55 0 5.71 7.03 4.42 1.92 4.61 3.85 5.33 5.46 5.62 6.82 0 5.23 0.94 6.86 2.23 2.81 3.07 13.4 3.46 2.99 1.25 7.8 2.71 1.51 4.77 1.51 3.76 9.77 11.9 10.9 3.07 3.85 3.89 10.5 0.94 11.9 1.73 5.49 5 0 8.11 9.44 11.8 3.94 1.92 0 7.95 6.62 5.8 1.92 3.54 0 8.1 7.21 7.01 3.54 9.73 4.14 11.2 8.97 0.55 4.77 4.72 6.89 5.71 0.55 5.16 5.88 5.56 8.85 3.89 3.65 4.49 1.51 0.94 0.55 11 4.98 8.19 6.6 3.48 3.7 2.99 2.56 3.85 11.1 9.73 9.23 2.49 8.65 8.22 10.7 7.45 9.83 6.06 9.08 9.91 11.7 8.38 11.1 10.3 12 9.9 11.4 10.2 9.98 3.36 10.6 9.1 10.8 11.6 11.3 9.1 9.4 1.92 10.8 9.77 12.3 8.74 3.48 10.3 10.2 9.07 5.63 11.3 0.94 8.69 6.47 7.33 5.62 12.8 12.2 12.9 11.9 11.3 11.2 3.42 11.4 9.18 1.92 4.8 11 10.1 10.7 11.1 11.6 1.92 12.9 3.42 9.35 9.63 10.9 4.25 9.95 5.8 11.1 11.4 9.63 9.18 6.39 9.26 10 11.4 5.32 0.94 13.1 11.7 11.1 13.4 10.8 10.3 7.2 11 8.91 8.99 7.57 10.9 9.02 6.53 0.55 9.14 7.35 8.72 10.3 3.36 13.6 7.01 7.31 11.3 11.5 8.5 9.96 10.4 12.1 0.94 9.17 7.83 7.66 13.8 10.4 5.64 8.8 4.18 11.4 9.14 0.55 7.49 8.24 10 10.4 9.34 6.51 11.2 11.7 12.4 9.29 8.92 7.97 11.8 7.05 11.3 6.65 9.8 7.74 9.27 8.84 7.99 5.64 11.8 11.1 8.8 9.68 7.83 13.8 8.52 7.77 12.4 11.4 10.7 2.17 10.1 0 2.81 8.91 6.95 9.59 1.92 6.43 6.77 12.1 10.9 10.6 8.62 6.92 5.3 10.7 7.9 3.42 4.82 11.1 10.4 10.7 10.5 6.12 8.65 11.2 2.71 8.35 9 11.2 8.74 10.6 10.6 10.2 4.48 5.76 7.12 8.32 10.2 6.81 13.4 7.34 6.66 11.8 11.3 9.07 9.41 7.28 8.04 9.45 9.77 9.39 9.43 11.6 9.11 11.1 10.4 10.3 8.73 8.83 10.9 8.4 9.23 11.4 8.39 10.3 9.18 7.4 9.47 12.2 8.74 10.8 8.58 10.2 10.8 9.95 6.02 10.5 9.57 12.8 11 9.76 7.2 6.65 7.57 7.51 11.3 9.48 11.2 11.9 9.19 0.55 12.3 7.34 9.71 7.6 0.55 10.2 2.28 8.29 5.17 11.9 9.54 8.5 8.81 11.1 8.27 5.33 7.68 9.92 12 4.91 9.97 9.48 0.94 4.38 1.73 8.75 7.23 2.9 9.57 7.71 11.7 8.91 7.14 9.59 8.89 5.36 15.4 12.1 0 9.69 9.04 6.46 14.1 10.1 8.35 9.32 5.44 7.73 9.42 4.38 13.4 8.89 6.15 6.09 4.67 15.4 11.8 14.9 6.46 8.62 8.88 10.5 6.25 9.34 7.37 11.7 0 7.84 6.75 13.8 8.2 10.8 9.51 9.17 5.58 10.9 7.6 11.4 10.8 11.3 10.1 10.1 9.15 8.22 11 9.37 11.1 10.9 8.7 8.02 10.4 13.4 6.89 9.47 10.3 9.75 10.6 10.9 9.22 9.84 7.61 0 10.5 10.8 11.4 9.55 8.56 11.3 12.3 11.8 10.6 11.4 7.01 6.25 9.05 7.89 10.2 8.37 11.7 6.78 10.3 3.36 10.2 7.47 10.4 11.2 9.8 12.2 10.1 9.01 8.63 11.7 10.8 10.5 8.29 2.81 12.3 10.2 10.3 10.7 11.4 11.6 11.7 10.8 8.62 9.12 10.4 2.9 0.94 10.8 7.21 6.02 7.9 9.43 13 11.5 7.16 9.05 10.3 8.03 2.37 7.83 12.6 9.81 7.37 12.3 9.74 10.8 10.2 11.1 9.76 9.88 12.6 9.59 5.63 10.8 9.95 9.81 11.5 8.02 11.1 9.04 10.4 10.8 11.8 12.6 10.8 8.68 10.9 11.3 9.64 7.94 12.8 10.6 11 11.2 9.23 8.21 9.5 8.1 8.96 6.81 11.4 12 8.8 8.7 9.82 5.38 10.9 4.82 10 4.48 11.4 11.6 13 12.6 11.8 12.3 8.58 10.3 8.65 5.87 10.4 9.15 0 9.05 9.24 11.6 12.2 10.4 9.09 12.2 4.18 7.72 11.5 7.54 9.18 7.35 5.76 9.43 11.1 11.2 10 9.92 9.62 9.7 6.82 9.92 10.5 10.4 12 9.88 11.1 8.17 6.48 8.19 6.2 9.45 10.9 11.3 12.6 13.6 9.05 10.7 8.07 11.8 1.73 9.57 8.14 10 2.23 6.2 8.91 8.94 8.02 9.51 10.4 3.85 9.41 11.7 13.9 11.5 4.54 12.1 9.49 6.88 13.8 3.29 7.96 10.1 3.48 8.27 6.91 8.2 10.7 9.27 9.78 6.05 6.53 5.21 7.65 8.8 12.4 5.26 2.6 10.7 6.89 1.73 5.3 12.1 11.6 3.48 4.18 8.47 1.51 9.76 10.3 9.83 2.2 9.18 14.6 8.88 10.6 10.7 8.82 12.7 13.1 7.59 10.6 8.75 7.67 9.93 10.2 8.98 1.65 1.25 1.03 9.01 5.41 9.68 2.08 7.85 7.34 0.55 1.92 11.4 13.6 6.64 8.78 13 9.47 6.19 10.3 11.4 10.9 9.45 9.98 11.2 9.77 8.6 10.1 6.79 10.1 11 8.54 6.75 9.47 9.12 8.45 8.73 10.5 6.84 10.7 6.59 3.54 7.37 10 8.27 2.08 1.25 12.8 7.12 0 8.29 8.2 9.87 11.5 10.6 4.77 6.67 9.55 0 5.58 7.33 7.69 3.15 6.74 7.57 7.31 1.73 8.27 3.15 10.7 8.37 2.81 11.8 11.5 8.98 6.78 11.9 11.3 0.55 6.24 1.73 7.48 9.43 11.3 10.5 9.57 10 8.28 5.92 7.45 9.4 8.41 0 6.91 9.31 9.66 1.73 2.08 11.8 5.83 8.66 8.4 1.25 0.55 11.1 10.3 12.1 10.5 3.29 10.6 9.86 7.81 12 7.7 11.1 10.6 11.1 9.49 1.73 7.18 6.64 11.1 9.42 11.6 1.25 11.3 9.32 12.3 11.4 11.8 7.22 8.83 9.45 10.3 8.9 0 11.8 1.73 10.3 1.73 10.3 10.1 8.27 10.8 10 10.5 12 11.2 9.07 10.7 11.8 10.5 10.6 10.9 10.2 9.35 9.99 13.6 10.1 11.6 12.7 12.5 5.17 12.3 11 6.92 8.93 11.6 12.1 12.8 12.1 9.17 9.82 11.8 8.38 6.25 12.2 8.94 7.44 9.72 5.28 11.5 10.7 10.7 11.5 3.48 2.9 12.6 9.18 10.8 8.72 10 9.72 6.95 10.8 9.24 8.36 3.34 0 8.01 9.44 5.87 12.2 7.36 8.83 8.61 10.7 7.82 8.68 9.11 10.4 8.38 1.51 7.29 2.9 5.88 9.06 10.6 7.96 12.5 8.99 5.63 11 8.54 8.39 7.85 10.2 2.23 8.75 12.6 8.14 10.6 10.2 11.7 9.16 10.4 9.08 10.2 10.3 7.21 5.21 8.08 11.1 9.71 9.29 8.48 2.9 11.6 9.74 8.68 10.5 8.46 5.12 10.7 12.2 12.2 7.73 5.4 10.1 10.4 7.29 3.48 9.13 2.37 3.7 8.71 9.96 7.79 12.3 3.42 7.54 9.23 7.81 0 9.13 8.13 9.57 9.47 5.99 9.28 12.1 10.5 9.59 9.2 6.16 10.9 3.48 6.5 7.49 8.94 0 10 2.08 8.25 8.93 11.5 2.23 9.89 9.25 1.25 12.2 8.35 9.41 4.54 8.16 7.88 8.81 0 3.75 11.1 10.6 3.98 5.95 2.9 9.06 8.6 7.94 8.23 9.99 9.58 10.4 5.71 8.6 9.87 9.59 10.3 10.5 8.39 7.55 5.06 10.8 4.62 3.54 10.1 9.96 6.14 8.12 10.2 11.1 6.13 8.44 7.56 4.84 9.9 12.8 10.3 0 8.74 10.2 7.33 8.28 9.94 7.98 11.7 9.35 8.53 8.82 6.24 6.03 7.31 10.4 6.27 10.6 7.86 6.47 3.88 9.08 4.56 7.18 8.27 11.3 4.98 14.3 9.56 3.29 6.15 5.52 9.63 9.9 6.93 8.14 10.3 9.18 7.31 7.34 11.5 11.6 5.47 7.34 11.2 8.86 2.71 7.76 9.58 4.06 8.32 6.37 9.62 7.73 10.6 1.25 1.51 8.07 11.3 9.54 7.9 10.8 6.56 7.9 10.1 6.94 11.3 5.85 7.54 6.92 9.6 8.57 11.2 8.7 10.8 6.58 0 2.04 9.56 11 9.52 7.68 8.75 4.48 9.34 10.4 10.3 7.28 6.94 0.55 9.42 5.12 11.1 9.89 8.11 4.91 9.73 9.28 10.1 10.4 10.6 9.56 9.95 8.27 9.22 7.66 9.8 9.54 8.7 1.73 10.6 8.19 11.9 11 8.44 11.8 12.6 4.96 12.2 8.21 7.02 10.6 6.53 0.94 9.06 8.18 1.51 8.07 8.87 10.6 10.5 7.45 8.14 10.9 10.9 9.29 8.74 5.53 6.71 9.33 10.6 11.6 0 12 10.8 12.3 9.26 11.9 11.5 12.9 11.9 8.36 9.4 8.17 0 10.8 9.81 10.2 11.1 10.3 10.8 7.3 13.1 0.55 10.3 7.68 4.96 2.71 5.77 6 8.41 9.14 2.8 11.9 7.52 9.3 6.4 10.2 9.12 11.1 0.55 11.4 1.51 7.48 8.84 1.25 2.1 11.5 5.87 1.92 4.38 3.75 8.47 3.07 5.99 7.6 3.82 5.28 0 0 6.06 5.06 7.99 6.7 7.84 7 8.35 1.25 8.72 7.85 2.71 10.3 8.9 8.66 9.35 7.99 1.92 7.57 2.08 5.3 8.17 1.92 4.56 3.15 6.96 9.48 0.94 5.68 5.43 0 7.76 9.88 0 7.66 8.23 6.57 6.16 8.13 7.01 5.77 8.85 8.36 8.82 7.2 8.29 7.98 5.52 7.28 2.6 8.05 3.48 9.18 10.8 8.62 9.84 7.49 10.4 9.67 9.95 2.23 8.07 7.69 8.08 6.1 7.43 10.6 11.1 8.74 7.04 1.25 5.98 7.76 11.6 8.91 8.53 8.76 2.9 5.52 8.12 6.71 8.8 12.2 5.36 0 3.36 10 12.2 10.4 7.17 8.16 9.61 9.17 10.9 5.12 7.49 7.12 5.44 9.8 4.25 3.22 4.42 4.14 7.99 9.47 9.73 4.06 8.71 6.97 4.75 5.02 10.6 7.91 1.25 9.88 11.4 2.37 7.37 8.39 0 1.92 11.1 9.05 9.49 7.3 9.52 10.2 6.47 10.3 8.65 11.9 7.77 9.61 10.3 1.51 5.49 7.33 7.65 9.66 9.69 8.09 8.17 7.37 1.25 11.6 6.77 7.98 2.6 7.52 0 10.2 5.08 2.9 2.6 3.98 1.73 10.2 0 0 9.73 9.23 7.67 10.6 11.2 1.25 5.19 10.8 5.4 9.99 9.97 2.49 9.19 8.99 0.55 0.55 9.79 8.2 11.8 6.59 6.52 10.4 7.67 3.6 8.67 5.9 2.71 3.98 8.73 8.93 2.6 11.2 5.9 3.7 5.89 14.3 10.5 12.3 0 4.02 0.94 9.19 10 5.38 5.21 11.6 5.43 7.04 8.12 7.14 7.84 10.9 7.16 7.24 0.94 7.04 2.9 8.29 0 9.5 10.3 7.02 5.11 8.07 10.9 6.39 2.37 6.62 7.59 5.58 8.84 9.04 8.4 9.06 7.8 5.58 4.89 7.33 7.53 12 14.2 9.18 0.55 2.73 8.39 6.71 0 9.84 10.8 9.09 6.01 9.77 3.6 7.66 9.76 9.66 11.4 8.11 10.7 5.93 1.92 6.68 8.2 9.28 6.02 4.48 7.97 6.92 8.34 11.2 4.1 4.42 11.6 3.98 2.9 7.95 11.9 13.2 9.2 8.15 7.16 5.21 12.6 6.01 8.07 8.32 1.73 3.36 7.35 8.42 9.91 9.54 11.1 1.51 1.73 0.55 2.81 2.81 7.34 3.8 8.33 6.73 9.17 7.71 6.68 8.55 10.8 8.76 3.54 9.87 8.1 7.89 1.25 8.85 8.65 7.4 9.37 7.03 7.33 8.63 2.6 10.1 5.16 9.22 1.25 8.54 5.66 8.14 7.18 1.92 7.75 8.18 3.91 4.02 6.69 8.2 6.32 1.25 8.36 4.82 4.45 9.87 9.72 0.55 6.13 3.22 9.65 0 7.75 8.27 7.64 4.02 1.73 10.1 6.2 6.48 0.94 10.8 9.73 3.15 1.25 9.01 9.12 6.69 11.8 9.21 4.42 8.55 9.41 6.15 11.7 10.8 3.07 1.51 8.03 10.1 7.3 4.14 1.73 8.26 10.6 9.08 6.95 2.71 0.94 6.2 0.55 7.68 8.73 7.45 11.5 7.51 9.09 8.04 4.28 10 9.88 1.25 6.33 9.49 6.75 5.02 12.4 7.87 8.13 3.8 8.19 0 8.74 7.89 1.92 6.93 4.59 6.19 11.2 7.57 11 9.96 6.17 7.74 4.59 6.28 0.55 8.7 7.2 8.29 10 6.33 11.2 4.48 0 9.83 0.94 0.94 2.71 5.06 8.17 7.63 9.69 9.08 8.21 5.43 10.9 11.1 4.28 12.2 10.7 7.57 7.91 5.67 10.6 6.68 4.42 8.34 7.64 12.8 9.26 4.54 10.4 6.66 2.08 3.29 4.32 10.2 11.9 7.86 9.15 10.6 0.55 0.94 5.26 0.55 6.22 0 10.1 3.07 8.39 0 1.25 7.99 8.57 3.15 9.18 0 4.77 11.4 9.66 4.98 7.46 8.17 2.81 9.35 11.4 6.06 0 0 10.3 14.4 6.67 8.98 1.92 13.5 10 6.79 1.51 5.76 4.1 4.45 11.5 3.8 8.83 8.81 12.9 3.65 8.75 9.76 0 7.33 1.51 9.55 12 10.9 10.5 0 10.2 2.9 8.35 7.81 10.5 2.81 8.32 4.93 1.51 0.55 5.04 3.29 3.94 9.92 8.45 2.81 3.6 4.38 1.92 13 10.6 10.3 8.57 8.97 9.66 2.81 7.87 10.7 8.85 11.5 8.71 3.6 10.8 8.22 12.2 7.91 6.96 5.93 4.45 8.5 8.23 9.24 9.14 9.53 9.22 9.33 8.05 9.53 7.19 2.37 7.08 5.69 5.84 4.89 0 7.26 5.44 10.1 6.12 3.36 4.98 3.48 6.88 9.83 6.97 5.06 7.25 5.82 6.01 7.63 7.2 0.94 9 6.43 8.11 9.17 7.43 5.82 10.1 10.3 3.94 2.81 10.1 0.94 8.18 5.92 8.33 3.8 7.73 1.92 6.95 0 0 9.87 0 11.9 10 3.15 11.3 11.3 9.21 2.71 8.04 9.88 2.23 6.93 9.66 9.15 10.2 11.1 8.17 0.94 9.45 8.22 0 9.89 1.25 2.49 7.82 8.51 7.13 8.53 6.71 9.51 0 0 7.22 10.4 6.96 7.98 2.9 0.94 4.77 7.27 7.43 6.44 13.4 6.36 6.66 5.94 6.31 12 3.65 7.41 2.08 10.5 7.09 3.15 4.87 6.84 1.25 6.57 5.12 5.23 9.24 9.5 12.6 8.09 0 1.25 9.44 7.59 13 5.43 8.2 7.71 10.4 7.04 9.16 7.55 7.59 7.36 5.97 9.02 1.25 8.87 12.1 8.68 5.75 8.17 8.19 6.69 7.79 11.6 4.65 12.2 6.76 6.95 12.2 12.5 9.74 8.92 1.32 5.73 8.29 9.58 5.92 8.27 4.93 8.58 2.9 9.39 8.7 2.37 5.19 3.15 8.05 7.43 0 9.77 2.81 0 8.83 0.55 1.92 12.9 5.89 12.6 8.91 8.66 6.03 6.86 8.29 9.57 5.93 1.92 6.13 9.16 8.9 9.09 9.53 8.28 8.32 3.65 3.8 5.68 8.61 3.15 0.94 11 4.62 0 10.3 4.21 0.94 4.25 5.7 3.29 13.3 7.11 1.25 5.79 10.5 8.17 5.3 2.99 9.14 5.58 6.68 6.16 10.1 9.81 0 11.7 9.09 7.85 0 7.64 7.78 2.23 4.87 0 9.02 4.45 11.3 10.8 5.8 7.55 0 8.42 6.25 6.25 10.2 11.6 7.55 6.55 4.4 10.1 7.92 9.28 4.84 10.6 10.7 3.36 5.89 7.83 14.8 5.26 5.06 9.46 8.36 5.64 0 7.35 5.63 3.8 0.55 7.36 3.94 4.6 3.22 7.09 7.93 6.76 5.73 7.41 7.66 3.45 3.85 9.85 8.45 9.11 5.36 0 8.9 8.59 3.22 11.6 11.5 5.13 7.31 7.89 5.91 6.48 1.25 9.46 0 9.11 0.94 10.3 5.25 6.74 11.2 3.6 0.55 12.2 9.78 4.75 0.94 0.94 1.73 3.7 6.5 0.55 5.21 8.12 0 6.25 10.3 8.27 11.7 8.09 10.5 11.3 5.68 4.56 9.77 12 4.48 8.24 9.29 9.73 3.36 5.28 5.67 5.67 3.07 6.69 3.65 4.65 6.97 8.15 6.38 7.2 0 4.28 9.21 7.33 7.82 8.53 6.99 6.52 6 7.3 1.51 7.28 6.94 4.02 5.4 10.1 7.49 7.01 8.64 9.38 2.9 0 8.06 2.81 11.6 10.1 11.1 3.22 5.99 5.32 9.33 5.88 8.83 6.97 11.3 7.05 8.57 12.4 2.81 4.02 5.73 11.9 2.81 7.17 10.3 5.52 1.25 6.82 3.48 11 0 6.04 8.21 6.94 8.38 10.2 8.82 7.13 4.54 5.72 0.55 7.09 10.7 6.62 9.22 5.6 0.55 12.5 8.1 3.8 8.93 0 5.19 8.85 9.09 5.3 0 8.95 1.73 2.49 2.71 6.96 0.55 6.86 8.13 4.89 9.95 2.71 12.2 7.33 8.38 7.4 0.55 3.42 10.7 4.28 11.2 9.43 7.25 1.51 6.95 0 7.53 3.8 8.29 1.51 10.9 3.6 3.22 4.7 1.51 9.4 0 8.4 1.51 9.51 9.05 7.88 9.16 5.25 9.73 9.99 6.12 13.2 5.25 8.6 9.09 8.26 9.26 8.53 8.7 0 0 10.2 3.22 5.71 8.15 13.7 5.62 13.7 7.78 4.21 8.36 3.65 2.6 2.9 2.71 5.16 6.57 6.69 9.71 10 8.61 1.51 10.5 9.26 8.04 9.72 8.79 5.93 5.44 0 9.22 6.63 9.34 5.84 6.26 5.41 2.81 2.37 9.22 7.98 3.94 10.3 6.47 5.46 6.81 4.32 7.8 4.45 0 5.8 6.11 2.9 10.5 6.25 4.02 6.26 6.05 4.38 3.15 7.27 9.33 3.75 4.89 5 9.58 5.19 9.01 10.1 7.38 6.34 7.55 0 0 11.3 3.85 0 8.68 9.48 8.88 9.57 0 8.85 5.75 7.9 10.4 2.6 9.45 9.11 0 9.65 4.45 3.65 1.25 8.7 0 5.23 6.33 7.43 7.82 8.52 9.77 0.55 8.18 7.98 1.25 3.36 13 12.2 4.42 8.75 1.25 6.79 11.9 10.2 9.91 0 7.28 12.6 1.25 4.65 10.8 0 0.55 1.51 2.37 5.28 1.25 9.49 3.65 0 8.08 8.88 5.9 7.26 10.2 1.98 6.78 10.2 9.18 7.88 7.14 7.67 3.6 9.04 6.67 9.38 2.49 5.15 5 10.1 8.53 12.3 3.07 8.41 5.99 10 4.28 8.57 4.87 15.8 8.37 15.5 6.66 5.77 2.71 6.32 8.6 6.93 5.94 1.25 2.37 2.08 7.73 7.44 8.12 12.3 3.42 4.18 7.9 0.94 0.55 4.87 10.2 4.06 7.54 10 6.3 10.9 0 6.65 0.55 10.8 7.87 7.4 6.73 0 7.27 7.21 8.5 12.4 6.15 0 5.02 2.23 4.54 1.25 11.8 2.37 7.53 10.5 6.58 4.48 4.77 11 9.53 8.29 9.08 4.75 0.55 8.75 7.28 0 10.2 8.1 4.98 7.05 12.4 2.6 9.7 6.67 10.4 6.89 4.1 5.64 3.85 3.7 7.67 8.6 5.9 0.94 5.9 0 7.9 1.25 7.28 0.55 5 9.36 7.23 4.02 5.67 6.8 7.98 4.91 6.01 11.1 8.05 4.38 7.81 10.2 5.41 6.97 11 6.7 5.08 11.6 11.6 8.15 5.36 9.61 6.43 0 2.23 5.33 12 6.19 5.3 6.29 10 2.81 10.7 8.47 10.3 7.98 6.61 5.23 7.64 9.21 0 5.26 2.08 1.25 9.77 6.21 2.81 6.73 7.55 6.03 0.94 7.85 6.93 0 9.56 9.04 2.56 2.6 7.03 0 6.56 4.45 6.52 8.03 10 0 1.92 7.55 8.47 4.65 7.65 9.45 2.99 1.51 11.7 3.8 3.29 6.85 3.36 2.81 9.61 7.2 8.9 7.96 9.33 7.05 7.97 1.51 0.94 8.59 3.6 7.99 5.02 8.89 6.88 1.25 9 0.55 5.16 5.54 5.55 9.28 4.14 9.86 0 0.55 3.15 6.26 3.65 5.89 1.73 5.38 0.55 6.61 4.45 7.35 2.6 9.34 2.23 7.89 2.81 5.59 1.92 5.12 3.15 6.32 4.7 4.62 4.51 7.39 7.34 0 5.71 5.59 2.6 2.23 4.8 2.6 1.92 1.25 4.3 4.28 10 6.5 9.03 5.7 7.91 3.6 3.98 9.37 5.71 6.9 10.6 1.25 1.25 12.3 11.3 0 8.16 0.55 0.55 0 0 12 5.44 4.59 3.85 9.8 8.55 0 4.21 10.9 4.89 10.5 6.24 5.41 6.33 4.21 5.59 7.61 9.61 10.3 11.3 4.82 8.62 1.51 7.5 7.41 4.54 3.07 9.13 10.7 2.23 7.88 4.96 4.38 10.1 0 5.47 11.3 0 4.18 7.98 3.54 4.72 7.42 2.99 5.44 11.6 11.2 0.55 12 6.82 0.55 9.01 7.68 11.2 8.44 2.99 7.57 0.94 4.54 3.65 3.29 5.47 7.32 10.9 9.9 9.24 6.38 2.71 8.37 8.15 5.98 6.14 8.1 9.95 5.44 0 10.7 8.13 5.52 8.43 6.09 6.42 6.52 5.81 6.02 2.37 8.08 7.3 5.93 6.1 7.34 11.3 0.94 6.58 5.17 5.89 7.74 11.4 10.7 4.45 10.3 6.19 6.81 1.51 7.66 9.05 4.32 2.99 7.46 7.45 8.55 12.3 10.4 0.55 9.63 0.94 12.1 1.73 10.5 0 3.8 1.51 12.9 0.94 11.7 3.27 1.92 5.06 0 9.7 2.08 9.82 12.8 13.1 5.97 2.81 6.48 4.42 10.2 3.48 11.1 8.51 11.9 12.7 2.9 8.47 10.3 2.49 6.29 7.96 1.73 10.1 3.42 6.16 13.7 11.7 3.29 8.14 10.3 6.06 8.42 6.76 5.73 10.6 10.7 4.02 7.09 7.76 6.56 7.06 3.85 6.53 7.38 1.92 8.88 11.6 9.33 3.07 8.5 1.51 0 8.42 2.6 9.32 0.94 4.56 6.96 8.33 3.48 6.68 0 7.82 8.42 0.94 1.51 6.48 5.88 0 0.94 8.6 6.59 8.41 7.68 5.95 3.6 0 10.4 8.36 6.47 2.49 5.08 6.91 5.91 0.55 0 2.37 5.64 0 1.25 9.14 9.89 6.96 9.55 7 0.55 11.8 2.9 0 4.06 4.82 0.94 10.8 7.65 6.21 7.83 5.67 9.74 2.49 10.1 6.81 3.7 14.1 0.55 4.59 11.4 7.38 9.34 2.81 10.1 7.96 10.6 10.3 13.7 9.39 7.99 8.09 10.7 11.5 12.3 12 4.54 7.69 0.55 8.98 11.3 7.94 10.1 10.4 1.92 10.1 6 10.8 0 0 5.33 8.21 8.59 3.36 5.35 9.56 3.94 9.71 8.99 6.1 2.08 0.94 6.21 4.28 5.97 9.3 4.62 2.9 11.3 12.5 8.75 4.72 9.34 10.5 11.4 11.4 5.06 8.75 6.57 8.22 7.98 3.89 8.2 8.8 9.4 6.91 3.15 9.02 9.45 4.65 8.65 9.36 10.5 1.51 10.1 3.54 3.94 10.1 11.9 6.85 3.54 11.2 12.2 9.39 9.82 2.99 11.4 14.6 8.3 3.54 9.27 7.72 6.12 10.2 4.38 9.47 7.82 10.5 6.43 9.25 7.52 10.7 0.94 7.35 6.76 11.1 10.6 9.58 11.3 9.73 9.36 10.6 6.91 10.2 8.08 11 5.48 8.89 9.6 4.59 5.53 12.1 0 13.8 12.3 11.8 13 9.68 6.52 8.2 5.46 6.19 4.82 6.4 6.62 12.2 2.49 7.18 11.2 15.9 2.08 2.99 9.15 11.3 5.82 6.49 8.67 11.8 13.9 14.6 15.3 10.4 11.9 9.46 9.56 8.54 11.9 8.46 2.6 3.22 9.45 11.2 9.2 9.6 8.19 8.5 9.34 5.81 7.46 6.45 8.72 3.6 4.89 6.15 7.29 4.02 9.07 2.23 6.5 9.29 0 6.04 11.2 8.8 5.12 9.04 7.78 9.57 10.8 3.98 9.27 8.74 8.16 1.51 10.7 6.01 8.72 5.93 12.6 5.35 5.58 11.6 2.6 0 6.71 0.58 7.54 3.8 4.1 8.3 9.3 9.08 13.9 5.64 9.17 9.33 1.73 6.26 11.3 13.2 7.97 12.1 8.18 12.1 11.2 14 13.1 11.8 13.9 0 9.58 0 12.7 6.27 5.02 10.7 1.25 1.92 2.6 6.66 3.54 9.27 6.88 5.43 1.92 10.3 6.89 8.17 3.22 0 8.62 4.7 8.21 7.67 13.5 9.81 2.81 9.64 12.1 9.08 10.2 0.94 1.73 9.85 7.66 4.51 10.2 11.8 6.52 1.25 7.96 3.6 11.8 10.2 6.71 9.63 8.52 0.55 7.03 9.91 8.25 3.07 6.27 0.55 1.73 0.55 8.54 5.68 4.35 5.99 7.03 9.21 10 6.26 7.82 6.67 10.5 3.42 6.01 7.23 7.58 7.68 5.64 10.2 8.11 10.1 10.1 11.7 11 10.6 4.21 7.04 7.22 8.62 5.19 9.8 2.08 11.8 6.65 6.19 10.9 10.2 9.63 7.3 10.3 9.66 4.96 13.4 3.8 9.52 1.73 8.93 3.98 10.6 7.73 2.37 7.59 2.71 0 6.41 8.02 6.97 3.6 12.1 7.66 4.84 0.55 7.4 3.98 7.14 7.67 8.54 6.84 10.8 8.03 7.03 5.97 5.71 8.98 4.32 10.6 7.85 1.51 16.1 5 6.68 0.94 0 0 10.1 4.89 6.76 3.42 13.1 9.94 10.5 10.2 8.52 7.93 15.2 10.7 4.48 2.81 4.25 8.79 6.78 4.42 8.56 8.89 8.99 8.66 8.54 6.5 11.3 8.92 9.5 6.4 6.52 10.5 11.2 7.98 2.37 9.84 12.5 12 10.2 2.23 9.09 8.56 1.73 9.28 0 9.27 12.3 6.79 8.38 11.3 9.46 12.5 9.48 9.84 6.75 6.33 9.28 9.16 10.7 2.6 6.04 8.32 11.4 7.34 9.41 11.4 1.51 7.81 12.4 1.92 0.94 11 10.5 9.24 1.92 11.4 3.36 8.7 9.85 6.68 10.2 6.82 9.39 7.35 10.9 11.2 3.07 13.3 10.6 8.35 8.06 9.1 2.49 10.6 0 11.5 10.6 12.6 10.2 8.21 8.18 11.8 5.52 5.98 3.42 8.28 8 5.28 10.1 7.53 9.17 7.04 7.64 12.6 1.73 12.4 10.5 10.2 1.92 7.5 10.6 1.25 11 9.65 6.12 9.57 10 0 7.1 8.1 8.82 4.59 9.12 3.22 0.55 7.14 2.9 8.5 8.81 6.92 8.82 9.87 0 11.4 6.63 14.9 9.66 8.84 8.93 9.59 11.4 10.2 10.2 7.74 9.61 10.2 9.4 5.21 7.64 9.94 8.85 12.5 9.94 5.91 11.4 3.29 5.32 3.89 11.9 10.1 9.81 3.07 4.42 8.91 13 2.99 8.08 0.94 10.3 13.7 6.09 8.53 9.33 5.68 9.61 7.7 5.92 7.38 8.22 8.58 5.17 9.43 5.81 9.88 7.23 2.99 8.16 9.93 8.79 7.72 7.91 2.71 10.4 4.82 8.09 8.65 7.72 2.08 0.55 2.81 8.92 3.75 1.92 8.57 2.08 8 8.67 8.98 5.78 2.23 0 0.55 5.56 1.92 4.02 2.49 10.2 7.62 1.51 4.87 8.27 7.66 4.59 6.24 0 6.33 5.16 12.7 5.36 8.43 8.22 7.61 7.54 7.85 0 6.16 6.9 5.35 5.71 11.6 8.62 7.41 8.78 8.89 2.08 9.91 5.56 9.46 5.4 8.49 7.4 7.21 5.06 4.48 5.66 10.5 3.15 8.59 1.73 2.37 4.96 9.42 0 4.94 8.36 7.7 11.3 1.73 9.76 10.6 2.37 8.66 7.23 9.32 3.3 7.22 1.25 3.15 11.6 8.15 1.25 9.38 8.28 7.23 7.35 1.51 8.78 5.02 7.73 4.42 8.9 5.99 10.4 6.88 10.5 9.58 9.4 1.25 10.8 8.53 7.66 8.16 6.45 11.4 7.7 12.9 5.38 8.96 6.14 1.25 8.13 6.29 3.3 5 12.2 8.56 3.07 0 0.55 6.71 0 5.32 9.03 0.94 1.25 0 1.25 6.21 6.93 8.84 3.54 3.8 10.2 8.37 8.13 1.25 10.4 9.04 11.7 6.44 11.1 4.51 8.85 8.66 3.28 1.51 0.94 4.65 1.73 8.49 3.7 1.25 4.35 15.8 7.82 11.7 0 8.08 7.62 7.64 11.2 1.51 7.51 9.67 9.58 10.8 5.94 9.08 5.67 12.7 7.58 7.83 9.62 10.2 1.51 8.26 7.96 10.5 7.6 12.2 2.81 12.4 7.34 10.2 8.84 7.37 12 12.6 7.74 0 7.05 9.2 6.53 7.18 8.43 9.49 10.6 6.31 2.18 0 8.85 8.87 8.51 9.37 5.32 8.86 6.15 5.95 0 7.6 7.97 9.32 11 8.45 8.01 8.11 9.53 0 9.36 6.55 11.3 11.1 0 10.1 7.64 8.17 4.75 9.46 8.53 7.92 8.97 13.2 10.2 6.87 9.06 13 8.07 9.57 9.48 8.68 9.24 10.8 8.25 3.94 9.81 9.56 1.92 8.74 8.76 5.68 0.55 7.48 6.08 8.76 8.08 11.5 9.8 9.63 10.5 8.12 9.33 7.35 13.1 6.84 3.6 11.1 0 7.78 11.6 9.23 9.22 8.41 5.56 9.37 6.59 10.9 9.3 9.15 9.33 9.4 10.8 9.11 10.2 10.8 10.6 5.17 7.36 13.3 10.8 9.63 0.55 7.82 8.94 8.13 7.81 4.93 11.7 8 7 10 3.85 4.62 11.2 7.81 7.94 6.12 10.2 11.9 0 3.42 0 8.35 11.4 9.6 9.71 6.67 7.91 0 7.08 11.6 10.8 7.88 6.32 8.71 0 6.31 4.62 10.1 8.92 10.6 8.99 9.7 9.95 12.2 3.22 12.2 10.4 9.33 6.15 3.36 1.25 11.7 10.5 9.96 8.78 9.7 7.88 6.09 6.27 7.92 6.59 10.9 10.9 8.74 10.7 6.07 7.85 9.05 9.51 9.79 11.4 9.02 9.81 9.57 10.1 1.51 8.97 6.52 8.74 11.5 10.6 9.27 9.84 10.5 6.8 9.5 10 10.8 3.65 6.57 8.94 9.73 10.1 7.35 8.77 7.2 8.56 10.1 10.3 6.82 9.3 5.83 9.35 4.02 8.62 9.41 8.66 9.02 9.84 8.55 8.45 6.32 7.39 11.3 8.6 3.42 9.84 8.39 10.5 8.9 3.7 8.19 8.01 10.1 8.94 5.64 10.8 9.15 6.45 5.87 8.18 7.69 9.49 10 3.29 11.1 6.89 9.78 9.4 3.36 8.95 8.53 6.74 9.24 8.97 9.9 11.6 9.29 11.3 8.41 7.64 9.54 0.55 4.91 7.14 0.94 6.96 9.27 10.2 8.81 9.06 9.17 7.78 13.9 9.31 8.34 9.25 9.92 10 10.4 9.46 9.44 10.2 7.9 11.2 11.1 8.11 8.33 9.91 8.81 7.93 10.2 8.58 7.83 7.43 6.78 7.53 8.44 10.6 10 9.81 8.67 8.87 12.5 9.75 11 10.4 13 5.83 7.47 10.9 10.4 10.5 8.5 10.4 5.02 10.4 11.9 3.85 11.2 7.46 2.23 7.22 10.1 9.65 9.71 9.41 11.1 10.9 9.62 9.46 10.6 9.15 2.08 8.71 8.81 10.2 10.5 10.9 5.16 8.6 9.09 6.81 8.87 6.17 3.22 10.8 7.42 6.29 1.51 8.38 5.08 8.85 10.1 7.06 8.65 9.99 7.02 10.4 8.51 9.92 7.35 3.7 7.23 8.04 9.2 6.88 9.63 8.16 8.46 5.32 9.45 7.62 7.58 10.2 11.8 8.38 8.22 9.64 3.36 6.19 8.56 9.02 9.41 8.48 8.1 11.6 8.55 6.85 2.23 9.26 4.75 4.89 8.86 7.02 8.71 7.67 8.91 9.86 9.5 9.7 10.4 4.1 10.3 9.15 2.49 9.65 8.98 3.75 8.82 9.8 8.83 9.72 8.8 9.58 6.42 11.3 4.96 8.95 1.51 10.3 7.67 9.4 8.51 5.81 10.2 7.84 11.6 9.25 6.81 7.57 9.09 8.3 9.65 7.88 8.5 9.98 10.5 3.22 8.45 11.3 6.79 8.51 9.25 1.51 12.7 10.8 10.6 11.9 9.98 9.73 9.83 7.53 9.77 1.92 8.84 9.84 8.38 9.72 9.85 5.8 11.6 9.34 11 10.3 8.51 7.99 7.11 8.69 9.85 9.78 11.9 7.05 9.86 9.22 11 11.5 8.55 8.1 11 7.37 10.9 9.97 8.5 10.3 9.2 9 11.3 10.9 9.37 9.28 9.68 9.26 11.8 8.82 5.44 9.59 6.95 9.69 10.1 1.73 3.29 3.15 8.24 0 9.14 11.9 8.31 11.6 9.33 4.84 9.95 8.05 6.29 7.88 7.39 9.1 12.1 9.93 7.21 10.7 12.4 11.1 7.85 7.77 7.57 3.15 3.29 7.8 7.59 11.9 8.7 7.31 6.68 11.1 9.07 10.7 8.2 10.6 5.3 10.3 11.2 10.6 2.49 10.8 11.4 7.7 9.67 6.99 9.63 6.54 3.29 7.68 10.4 6.66 3.93 9.4 2.37 9.53 7.99 8.43 10 10.4 10.4 10.6 9.16 11.3 10.1 8.06 8.55 10 8.67 0 1.51 14.9 6.78 9.93 12.3 10.2 9.1 3.36 6.7 9.44 9.24 7.17 4.89 7.05 8.71 4.98 7 7.74 8.6 9.01 9.72 0 8.16 2.23 2.99 6.74 11 10.2 10.1 4.48 6.84 5.08 9.27 8.51 10.3 11.9 10.7 10.4 9.89 1.51 1.51 10.3 6.15 8.33 10.2 1.25 7.04 6.56 0.55 12.2 9.81 10.2 3.65 11.3 9.81 9.63 9.06 12.2 7.93 6.98 8.54 12.3 8.81 9 8.55 9.39 9.03 8.14 6.6 10.9 8.53 9.65 11.1 8.52 12.6 9.06 2.99 10.5 9.16 11 10.5 0 0 1.92 3.07 10.8 8.59 11.3 9.59 4.42 11.2 5.9 10.4 7.34 11 10.2 12.4 9.85 10 10.3 14.5 12.8 7.49 10.5 10.1 8.54 7.73 9.65 9.25 7.39 11.3 8.78 3.54 6.12 4.1 9.11 7.95 9.11 9.73 7.69 9.29 10 10.5 9.12 6.89 8.43 7.92 0 3.65 4.72 2.81 13.2 8.55 7.89 12.2 9.72 12.9 10.5 1.92 7.9 7.62 8.31 9.06 9.88 8.92 10.5 10.7 6.47 7.4 10.2 7.65 6.95 6.5 12.5 8.38 6.35 6.05 4.28 4.71 8.98 3.75 5.87 4.62 8.93 3.15 4.45 1.51 7.64 8.44 5.43 7.22 9.02 9.27 0.55 3.7 7.27 10.3 10 7.89 7.19 5.55 3.54 15.5 8.53 9.8 2.81 16.4 10.1 11.4 12.6 6.43 9.01 9.91 6.38 4.02 8.19 11.5 3.89 5.12 8.95 5.02 3.8 7.37 0 4.67 8.05 10.3 8.97 3.89 4.91 7.94 8.43 7.69 7.69 1.73 7.75 7.85 6.18 9.06 6.15 5.53 13.5 7.77 2.08 9.82 2.99 5.04 7.52 6.61 2.37 0 11.6 9.33 7.44 8.2 7.18 4.7 5.64 8.06 0.94 5.9 11.5 0.94 2.08 7.6 0.94 1.73 9.13 6.65 4.14 4.21 7.02 0 4.98 8.63 3.89 7.65 9.14 11.5 9.35 10 13.3 0.55 3.29 11.3 5.08 9.75 7.89 7.14 7.63 5.17 6.13 7.35 0.55 0 4.45 7.65 10.3 1.73 5.28 5.19 8.29 0.94 8.17 5.89 3.48 3.85 0.55 9.05 0 5.97 2.23 9.81 8.64 7.62 9.25 6.46 8.36 7.71 7.55 8.73 3.7 0.55 7.44 6.47 9.06 9.55 4.06 7.47 3.07 5.38 5.28 8.38 10.3 3.85 10.9 2.9 6.99 3.8 8.44 5.87 0.94 1.51 2.99 2.08 4.84 3.8 6.19 1.73 3.6 5.21 0 9.64 1.73 0.94 4.02 5.33 6.75 9.39 6.44 7.13 3.54 0.55 4.54 2.08 3.21 6.87 0 0 0 10.2 8.29 2.9 5.88 5.8 8.34 11.3 9.36 9.07 0 9.14 11.1 8.81 6.43 8.9 4.51 3.15 7.56 2.9 7.45 11 11.1 1.92 11.1 6.51 11.2 8.03 10.9 9.47 7.75 4.65 7.92 2.99 12.3 6.9 9.6 7.12 8.08 0 10.2 10.7 9.44 5.1 5.82 10.7 9.88 8.09 7.57 1.25 13.4 10.4 3.94 11 9.54 6.92 4.35 10.1 6.39 7.07 10.3 7.45 11.6 9.67 9.87 6.29 8.69 9.16 11.6 10.2 10.8 7.35 7.97 4.77 6.66 9.61 9.66 5.81 11.5 7.77 7.33 2.9 7.89 11.2 11.6 10.5 14.3 9.95 9.84 2.23 11.6 10.2 8.53 9.09 8.73 9.5 8.9 9.5 5.44 2.37 10.2 7.38 9.39 9.61 7.03 0 11.3 7.1 9.5 8.32 7.53 9.41 10.4 5.77 9.68 8.54 9.1 12.1 9.16 7.86 10.2 9.25 10.6 3.85 8.61 11.2 11.1 0 5.1 8.5 7.33 5.99 0.55 5.12 10.4 9.39 6.2 8.53 7.96 0.55 8.48 0 0 4.42 9.03 10 9.46 10.8 8.28 8.94 7.26 6.74 8.92 9.76 10.6 10.2 7.49 4.38 11.5 9.65 10.7 7.82 8.13 9.92 5.98 9.43 9.89 8.11 4.25 10.1 10.5 9.41 16.5 10.1 9.1 7.73 7.74 9.43 8.4 9.41 9.59 10.4 5.88 9.97 10.7 11.1 8.38 9.83 6.48 9.88 9.12 8.52 6.86 4.62 11.4 11.7 7.37 10.8 8.8 10.2 8.84 11.1 8.41 9.11 6.56 9.28 11.4 7.25 8.98 12 9.9 9.33 0 8.74 6.93 8.77 10.6 9.04 2.99 0 5.04 8.22 8.47 9.26 0.94 8.26 5.9 8.15 7.34 0 7.64 0 7.7 5.56 0 6.83 3.94 8.27 9.32 9.57 9.22 9.36 8.09 8.04 8.2 9.56 10.5 10.3 11.9 0.55 7.7 7.55 9.88 11.3 8.26 9.3 9.77 8.54 4.45 11.3 7.6 12.2 11.1 1.73 8.67 9.08 9.7 11 11.6 7.26 9.14 7.75 8.4 9.05 11.2 12.9 10.1 2.23 8.21 9.42 7.53 10.1 5.06 8.16 7.42 9.56 9.04 3.54 7.47 12.2 12.2 6 9.11 9.31 3.42 10.5 11.6 9.72 6.24 11.8 8.17 8.15 11 5.5 9.91 4.1 10.3 2.37 10.2 4.42 8.69 11.2 3.07 8.97 5.1 9.26 8.13 12.8 2.49 10.3 0 3.16 6.52 9.4 9.41 9.8 7.24 8.5 4.84 5.67 7.21 0.94 6.23 4.51 4.84 9.35 7.55 10 3.75 10.6 8.59 2.71 6.84 9.45 8.06 4.8 10.2 6.93 8.2 7.85 9.68 8.54 11 5.66 6.57 7.65 11 9.54 2.08 10.7 0 10.2 8.7 10.1 6.51 9.38 7.95 12.4 0 13.5 10.5 10.3 12 9.45 2.81 8.24 10.6 6.59 10.7 11.3 10.2 12.9 12.1 11.2 1.92 9.44 8.45 11.1 7.22 9.18 9.36 3.8 7.96 10.6 8.26 8.13 8.39 8.62 11.7 10.1 9.31 9.18 9.44 6.4 11.7 3.22 3.07 0.65 11.4 1.25 4.91 2.99 10.6 11.5 11.6 7.88 9.14 9.8 0.55 9.91 3.7 7.75 3.98 11.8 11.8 8.8 4.62 10.2 3.9 6.7 4.8 8.8 10.9 1.51 7.52 6.02 0 9.68 6.47 9.12 4.7 7.51 0.94 8.38 9.83 4.62 0 9.67 6.94 2.9 0.55 6.3 0 11.5 9.18 8.68 7.54 9.18 0 4.77 8.77 9.02 10.2 2.99 2.37 10.3 6.95 2.6 9.75 9.51 15 10.3 9.29 10.1 6.18 7.47 8.72 2.49 2.99 9.84 0 9.64 6.57 5.06 10.4 11.8 6.02 9.74 7.72 7.28 11.3 5 8.72 1.92 5.83 9.65 8.04 9.31 11.3 11.5 10.6 0 4.72 8.96 10.1 11.6 11.5 8.74 9.37 11 8.53 14 7.46 8.59 7.2 8.04 3.54 12.3 10.8 9.26 7.18 6.36 10.9 9.1 0.55 1.25 9.77 7.02 11.3 11.8 10.1 8.35 6.67 11 7.41 8.51 3.65 8.35 2.23 6.68 9.1 7.9 8.57 5.53 3.98 6.97 11 6.12 7.9 10.2 7.56 1.51 0.6 4.82 7.43 6.92 5.14 8.5 8.63 1.25 10.1 1.73 7.02 8.33 7.59 11.7 10.3 11.4 8.67 6.18 6.21 11.6 5.44 4.1 8.35 1.25 1.51 0 8.11 9.85 0.55 7.08 12.3 0.55 0 8.42 8.2 10.4 10.3 3.48 6.91 7.57 10.7 12.5 8.44 9.48 7.66 9.11 9.55 10.2 10.9 6.86 2.37 5.62 10.2 10.9 0 0.55 8.17 4.28 7.01 9.83 8.61 7.87 8.67 6.29 10.3 6.73 4.06 8.78 9.53 10.9 1.51 8.07 4.25 8.64 2.23 3.7 9.36 11.4 4.8 9.36 9.92 10.8 6.54 1.73 13.1 11.2 10.9 12.3 11.7 8.58 9.41 9.4 9.03 4.84 3.6 9.88 8.33 8.92 8.83 2.08 8.42 8.57 10.4 7.53 8.26 7.96 12 9.05 9.8 2.49 10.3 9.34 8.83 10.8 5.08 8.21 9.53 3.89 4.18 8.59 11 5.77 6.64 13.7 2.99 13 8.89 8.35 7.84 7.89 9.48 12.4 9.28 12.5 11.6 4.91 2.99 8.5 14.5 1.25 5.16 12.7 13.1 3.36 2.9 6.08 11.8 5.32 2.08 7.69 7.11 6.05 11.9 6.66 2.23 11.2 1.73 8.39 8.87 10.1 10.9 9.1 11.8 10.5 11.5 10.8 1.92 16.4 2.37 0 12.6 3.75 9.9 13.3 0.94 10.1 0 7.37 10.1 5.14 3.65 2.37 4.02 3.54 3.75 6.06 1.51 7.48 7.61 0 8.56 3.29 7.16 10.2 4.18 5.16 7.27 1.92 4.87 3.7 1.51 7.04 14.8 6.16 12.5 10.4 5.68 3.48 6.68 7.19 9.22 8.27 6.68 8.32 9.48 8.45 4.62 5.73 7.55 0.95 5.95 7.78 4.45 2.37 9.91 3.65 2.99 8.93 9.61 0.55 8.15 2.99 3.8 3.6 1.73 1.25 1.25 2.9 8.69 2.99 7.33 3.85 7.73 7.65 7.61 5.13 0 0.55 1.73 6.3 1.25 4.25 0 8.05 0 6.08 0 1.51 9.16 10.7 9.75 5.81 0.4 1.51 3.48 5.36 2.23 7.88 0 0 4.35 10.1 6.57 6.18 4.93 6.18 9.78 5.14 10.3 2.71 6.89 2.99 2.37 2.49 8.91 7.78 0 6.06 6.93 10.4 11.7 3.7 0.55 8.37 9.43 1.25 7.21 8.35 4.87 7.17 6.57 8.11 0 9.29 4.87 3.89 0 0.55 6.29 7.71 0 4.38 0 10.8 4.98 5.26 8.87 11.9 7.29 7.74 1.73 9.32 2.99 2.23 1.73 4.06 10.3 2.6 4.25 10.6 1.25 9.24 2.49 6.93 1.25 5.38 2.37 6.15 7.8 8.43 7.25 12.8 5.71 9.71 5.91 5.46 5.76 11.7 0.55 5.72 6.99 4.7 3.85 0.55 9.18 6.49 1.25 4.25 2.37 5.91 5.16 8.41 5.91 3.42 4.42 9.21 1.25 3.85 0 4.84 5.19 3.15 0 7.82 2.49 9.25 4.32 5.81 4.98 5.02 5.14 8.19 0 0 4.8 5.08 1.25 4.62 2.08 0.55 5.04 0.94 6.13 0.55 6.32 7.1 7.55 0.94 7.14 5.89 10.6 5.97 0.55 0 2.49 3.89 0 8.04 10.4 7.21 4.93 9.48 0 7.66 0 4.77 4.54 6.35 6.55 5.14 7.06 7.96 0.55 4.56 7.73 9.58 4.25 6.59 6.28 0 8.37 0 6.05 9.23 9.47 5.41 8.77 7.51 6.99 0 1.92 7.9 0 8.29 5.36 9.37 5.14 4.35 7.57 9.06 4.14 8.04 0 9.63 0 0.55 4.25 3.48 5.87 7.41 9.22 3.6 2.9 9.53 3.48 5.3 8.65 6.79 3.48 9.66 1.25 6.96 1.51 9.5 5.9 2.9 8.03 0.94 2.02 10 0 5.5 8.75 6.84 5.63 7.08 5.32 0 3.75 3.65 3.98 4.21 8.99 8.79 3.85 12.3 1.73 9.16 4.54 2.49 3.15 7.81 0 7.65 7.78 8.55 5.1 1.73 6.62 2.6 0 1.51 9.84 9.28 8.28 5.25 7.78 8.63 7.15 7.03 4.35 1.51 2.23 5.84 8.4 5.32 6.25 7.09 7.86 7.29 4.93 5.71 10.9 12.8 11.7 10.7 5.17 13 12 9.53 12.5 7.54 7.78 11.9 9.28 9.74 0 2.6 9.06 10.4 9.56 11.2 8.73 11.6 10.2 14.5 9.02 8.34 10.9 0 7.68 3.15 10.8 0 7.59 8.99 10.8 11.4 11.4 11.8 8.97 9.8 6.62 5.56 8.13 10.4 7.44 10.9 12.5 10 1.25 9.15 9.83 8.88 8.01 10.7 2.9 10.7 8.02 0 4.42 10.3 1.92 10.3 0 9.61 7.24 9.73 10.6 9.75 9.84 6.68 8.82 8.59 11.6 6.38 9.29 9.69 9.53 8.46 10.1 9.58 9.41 9.6 11 8.83 11.1 11.6 10.3 10.4 9.82 10.6 8.91 1.73 7.93 9.8 8.51 10.4 10.3 9.72 10.1 9.6 10.6 12.6 10.3 9.37 7.22 10 1.73 10.2 11 9.02 0 8.97 11.2 9.3 10.8 0 3.07 8.64 5.06 10.3 3.48 7.23 10.3 9.69 2.37 0.55 8.81 13.9 3.22 3.15 13.7 0 10.2 14.5 10.6 10.3 13.6 11.5 9.45 11.7 8.1 13.2 13 12 10.7 5.17 15.8 9.31 6.76 9.21 11.3 2.99 10.2 9.82 8.73 10.4 11.5 9.32 9.32 5.8 6.34 10.1 8.97 12.3 11.6 9.8 2.49 11.2 10.4 7.37 8.82 11.4 2.9 9.34 7.73 2.71 8.09 10.7 0.94 8.14 11.3 10.4 10.3 4.21 11.2 0 5.87 6.96 6.85 8.43 3.22 10.2 5.36 4.89 1.51 9.76 11.3 8.64 9.63 0 5.76 10.4 12.7 9.4 3.22 9.86 10.8 9.05 8.16 11.5 10.8 10.6 9.02 11.2 1.25 9.55 10.2 11.2 9.66 5.9 8.61 10.2 2.08 9.71 4.25 10.4 9.35 6.93 10 9.05 10 11.2 7.01 9.07 12.1 9.11 10.1 13.7 9.6 8.95 4.51 6.93 6.76 1.51 11.2 8.89 9 0 4.84 8.94 9.61 9.39 8.32 10.4 0.94 11.4 8.48 11.6 8.48 4.38 12 1.92 10.3 5.91 10.1 7.21 6.31 9.39 6.82 10.7 7.22 10.2 10.9 9.43 8.1 10.8 9.91 8.25 8.81 8.09 9.98 7.17 3.29 7.71 8.53 12.9 8.64 0 9.59 2.99 10.4 9.69 8.74 5.6 8.38 8.17 9.38 7.47 6.38 12.1 11.1 8.34 0.55 1.92 0.55 14.2 5 0 11.3 13 9.08 15.3 12.1 14.3 12 10 6.52 12.6 11.3 10.5 2.37 10.8 2.6 4.9 9.56 11.2 13.4 12.1 12.2 2.9 1.51 0 4.42 9.58 0 11.5 9.39 9.99 8.7 11 12.6 11.3 3.29 13.3 13 10.7 7.56 8.67 11 11.4 11.2 5.7 11.7 2.6 6.48 0.55 10 7.25 6.76 4.72 2.71 10.6 1.51 10.2 9.9 3.98 11.2 2.6 5.17 9.91 8 11.6 9.61 8.8 12.7 6.56 10.2 5.82 9.04 7.12 10.5 12.7 7.48 11.3 8.87 11.8 10.4 10.7 10.7 7.61 9.65 16.9 16.9 15.7 11.8 10.7 12.6 9.1 6.28 13.1 13.1 2.37 10.9 7.04 12.2 7.43 14.4 14 12.7 9.56 7.29 5.7 14.3 13.9 6.88 13.4 4.36 6.86 2.37 7.79 8.94 6.16 9.3 12.6 12.4 10.8 11.7 14 10.8 9.87 10.2 13.7 3.48 8 9.98 10.8 7.77 7.95 5.33 7.16 7.78 7.26 7.33 5.25 8.35 1.25 9.78 0 10.6 0 9.21 13.1 8.99 13.7 12.5 13.4 12.4 11.8 12.1 10.5 11.2 13.1 0 12.7 13.4 3.15 6.9 3.6 7.71 6.05 6.67 7.11 6.93 1.73 8.6 9.73 9.33 6.76 3.8 5.23 3.85 9.07 8 8.06 2.9 6.67 9.71 2.81 3.7 7.4 3.65 5.78 7.67 7.29 8.11 2.71 10.2 0.94 8.93 2.08 0 9.98 10.6 0 2.6 0 10.8 2.37 5.59 10.9 9.68 9.49 7.3 11.2 1.73 0.94 11.2 11.8 11.8 11.8 11.8 9.1 4.93 8.77 7.24 4.06 10.9 11.5 7.47 7.57 8.07 12.2 11.9 15.1 12.7 6.29 11.1 11.1 13.8 9.9 9.74 6.12 14.6 12.4 17.9 5.04 10.7 14.7 11.1 15 12.5 7.8 11.6 13.2 9.74 11.4 7.67 5.04 12.2 10.9 6.84 1.25 0.94 0 3.75 3.85 0 5.19 8.42 10.4 8.23 10.7 11.4 0.55 3.89 0 0.94 0 5.73 11.6 3.42 2.6 1.92 7.71 8.86 10.9 8.67 2.6 0.55 6.55 0 7.6 9.92 6.67 7.7 3.36 7.58 7.81 3.29 0.94 1.25 3.65 6.83 7.97 11.2 0.94 8.96 8.28 5.67 9.79 10.9 10.2 7.43 10.4 8.76 6.91 8.61 5.08 8.41 7.62 0.55 0 7.58 0 0 9.68 5.49 3.54 6.56 6.74 8.82 6.5 2.9 3.15 3.15 6.85 9.72 7.08 4.02 12.9 7.21 7.73 3.85 9.22 5.3 1.92 2.23 3.07 2.08 10.5 5.88 0 0.94 0.94 8.56 6.95 10.1 3.22 4.56 2.23 4.14 1.73 6.28 2.49 0 6.36 3.07 9.33 2.08 8.69 8.27 2.08 1.51 0 4.38 3.54 6.27 1.25 6.23 2.6 3.85 2.23 2.49 4.14 9.89 4.1 7.6 12 5.25 2.1 4.28 6.86 0 11.1 12.5 9.98 11.3 6.15 10.9 0 4.21 2.37 9.73 10.2 0 6.9 9.19 0 7.97 0 0 6.79 7.73 13.1 8.45 14.4 3.54 3.85 1.51 0.55 7.24 2.49 3.22 1.25 11.7 0 6.75 9.97 0 9.69 10.5 3.42 1.25 1.92 0 0.55 2.71 11.4 10.6 9.66 4.87 1.25 4.87 6.26 6.11 1.73 3.8 3.29 2.08 1.25 3.36 1.92 10.6 6.69 7.64 2.37 4.91 7.6 8.6 5.28 0.94 11.9 3.75 11.1 1.92 2.23 2.6 8.85 2.08 0.94 6.48 6.88 2.81 0.94 7.54 1.73 5.17 0.94 4.98 5.98 9.43 1.92 10.9 2.6 3.07 10.5 11.5 0.94 3.07 0.55 0 10.3 6.31 6.96 5.56 13.4 9.81 4.56 5.36 5.7 8.74 7.7 3.42 8.72 9.24 10 0 10.5 0 7.2 5.5 12.5 11.2 0.55 9.18 13.3 4.51 8.97 9.64 6.78 0 9.26 6.42 7.24 8.62 10.9 3.98 8.62 7.61 4.82 1.25 4.1 2.6 8.78 1.25 9.68 9.14 12.1 9.51 9.28 6.39 7.51 8.46 11.4 5.44 5.63 7.99 0.69 0 8.12 8.22 2.49 0.94 3.07 7.54 1.25 6.11 6.48 0 0 8.22 11.3 10.3 5.14 7.84 8.2 8.71 12.3 5.68 5.67 8.64 10.4 6.52 11.6 0.55 3.42 9.18 4.35 2.37 5.12 0.94 8.28 3.29 4.75 9.51 6.24 3.54 3.48 8.51 10.7 3.65 7.26 2.9 0.94 6.38 8.32 10.3 3.08 7.78 11.8 7.24 13.2 7.54 7.23 9.45 4.18 0 8.22 4.1 8.65 10.9 12.4 12.6 0.94 11 8.09 11 10.5 12.2 8.74 12.6 8.24 8.51 3.22 2.71 5.23 0 11.3 11 2.23 8.08 8.53 9.07 9.08 10.1 9.31 0 2.6 8.92 0 12.6 6.03 3.65 12.3 11.4 7.08 8.9 13 6.59 9.45 11.5 6.15 10.4 10.8 11.2 7.45 11 0 11.6 6.31 10.5 5.5 12 6.51 10.7 5.82 4.56 3.07 4.84 8.53 9.06 7.45 9.52 8.8 11.2 11.5 11.3 2.23 13.3 13.2 12.3 11.3 8.51 8.03 0.94 0 4.54 12.5 5.84 5.75 10.9 11.2 10.4 6.18 9.72 6.4 7.27 10.7 9.93 7.7 10.9 8.2 8.53 10.6 9 11.3 12.6 11.2 15.8 6.4 6.26 11.8 11.6 12.6 0 3.7 6.41 4.21 1.51 2.6 1.1 11.6 4.32 7.4 0.94 9.89 10.4 7.95 2.23 6.69 1.25 0.94 6.06 1.51 4.51 2.99 6.18 6.49 9.04 9.99 2.08 0 6.94 5.23 7.78 3.6 7.15 4.45 0.55 11 6 2.08 8.13 4.28 9.02 3.7 0.94 8.86 0.94 5.89 6.04 13.2 5.95 4.62 6.72 9.89 0.94 7.35 4.51 4.18 6.33 2.9 5.58 9.53 5.16 6.37 2.49 0 0.94 1.25 7.77 7.4 6.5 6.74 7.85 7.79 6.94 5.89 5.33 2.37 0 0 7.46 1.73 8.68 1.51 6.95 0.55 8.17 3 9.14 2.23 5.44 12.7 7.2 2.08 6.81 4.06 8.77 5.08 0.94 8.99 0 5.17 6.32 4.28 4.38 0.94 6.38 11.7 6.17 2.81 7.45 0.55 9.14 6.15 7 1.25 7.17 10.3 3.48 3.89 4.42 8.07 6.56 0 1.73 9.09 9.22 4.02 0 8.49 10.3 10.9 8.91 1.25 5.7 5.21 9.33 8.47 7.53 1.51 9.74 8.93 3.94 9.89 0.55 3.98 1.25 12.4 0.94 1.73 4.42 4.18 3.54 11.9 4.89 2.6 4.32 3.54 4.25 0 10.2 9.82 10.9 11.7 10.8 11.8 12 9.01 8.9 11 4.65 9.95 11.2 8.95 3.94 12.7 13.7 14 18.7 6.89 7.11 5.98 13.2 7.13 4.14 12 0.55 11.9 3.89 2.08 16.8 0 7.53 1.51 0 4.35 8.85 3.94 6.81 12.7 8.72 11.7 1.51 0 4.96 3.54 1.92 8.19 4.91 2.49 0.94 2.23 4.32 0.55 6.76 2.9 4.65 6.57 4.35 6.2 7.56 3.32 0.55 10.6 2.62 3.22 7.98 3.7 2.37 9.99 3.94 7.71 6.61 5.81 9.8 0.55 5.5 7.31 4.89 6.13 5.92 3.29 4.96 5.25 5.23 4.25 7.56 6.95 7.18 4.06 0 13.8 2.23 5.88 9.23 7.31 7.5 6.3 4.42 7.73 6.43 6.64 4.56 8.05 8.55 0 6.92 5.38 9.27 0.55 8.49 8.14 0.94 6.41 6.85 9.62 9.87 0.55 9.67 2.23 4.06 7.02 7.83 9.7 9.48 6.47 0.94 10.1 13 6.53 0 2.37 0.55 8.67 6.69 3.36 3.7 9.09 0 7.88 4.8 0 4.51 9.48 8.94 6.52 1.92 10.5 6.66 7.16 11.7 3.36 2.37 3.65 5.85 7.35 4.38 1.73 5.33 2.81 8.9 0 1.25 0.94 0 6.77 0.94 2.37 0 9.81 10.2 9.42 3.94 0 0.55 9.3 3.07 3.48 2.71 6.05 0 6.43 9.71 8.73 4.98 7.83 11.2 7.96 6 11.7 1.51 8.5 2.23 11.2 0.94 9.34 13.8 9.83 12.9 4.48 0.55 11 11.1 13.2 0.55 2.99 4.02 13.5 3.42 12.3 2.99 0 11.5 9.95 7.34 8.13 12.2 10.9 8.01 0 13.8 8.86 12.2 10.7 3.22 3.29 4.32 10.4 7.86 12.1 6.17 12.3 14.3 13 2.71 9.27 11.9 11.2 0.94 4.96 5.25 11.4 0.94 9.03 5.76 11.3 10.6 10.9 3.8 10.4 6.41 2.23 8.45 8.63 10.9 0 7.11 7.46 7.67 10.1 8.94 10.6 5.85 5.49 0 9.69 2.49 4.65 6.14 2.99 10.2 4.42 7.29 8.19 11 0 8.09 6.33 9.31 10.2 14 6.5 7.18 6.81 11 0 0 6.38 7.88 6.92 7.49 8.04 8.97 0.55 7.04 8.94 0.55 7 6.76 6.79 8.4 4.1 1.25 3.54 2.08 2.9 3.22 4.18 7.43 6.35 1.25 9.61 4.34 0 2.6 10.3 2.08 8.12 0 4.18 7.72 7.89 3.85 5.84 1.51 6.47 0 3.65 1.73 2.99 0 11.2 3.75 5.83 5.94 5.16 0.94 6.35 0.55 2.49 2.37 3.36 7.26 5.83 7.91 6.86 1.25 9.56 5.76 0.55 7.47 5.58 10.2 7.92 2.6 8.72 9.21 10.7 8.66 2.99 8.17 2.6 0.55 0.55 0 5.72 9.56 2.23 4.65 7.81 3.6 0 4.56 8.3 11 7.96 0 6.45 4.93 8.33 0 4.21 6.58 2.99 5.32 9.37 6.06 8.42 0 7.09 9.61 13.3 1.25 8.98 6.36 7.87 2.81 7.86 9.75 1.92 6.74 0.55 3.15 11.8 3.48 8.51 12.4 7.59 8.71 10.5 8.1 11.7 5.67 9.73 8.18 7.22 8.47 10.2 10.1 11.5 4.05 6.79 0 4.38 10.7 7.65 11.3 14.3 4.59 7.23 7.47 7.49 9.87 5.38 11.7 15 13.7 10.9 11.8 11.4 11 1.25 7.02 6.01 8.85 7.83 10.1 12.5 10.2 8.73 7.96 10.2 11.5 9.41 10.1 8.9 5.19 8.07 0.55 9.95 9.85 0 8.87 10.2 7.34 10.3 2.37 7.4 8.67 6.01 8.71 9.76 5.33 11.7 8.91 11 4.98 7.19 8.39 6.4 11.8 4.65 4.21 7.99 11.3 10.3 7.75 6.01 11.6 6.82 3.15 6.29 0.55 4.06 6.78 6.14 1.73 12.3 6.19 0.95 9.26 8.17 4.65 10.7 6.96 9.63 2.81 12.6 10.4 7.71 10.2 11.1 9.44 6.61 8.86 8.81 5.84 0 12.8 13.1 12.7 11.6 12.2 11.3 13.4 11.3 4.28 10.8 7.87 0 11.9 12.7 13.1 10.5 8.77 8.09 8.56 11.7 10.2 8.51 6.54 7.02 9.68 7.59 3.48 9.96 7.12 4.38 8.48 8.87 8.35 9.84 11.1 10.4 3.75 0 9.84 10.2 9.44 10.5 10.9 8.83 8.49 10.8 9.61 7.26 12.2 8.8 8.56 2.23 10.2 7.18 9.31 11.9 10.4 10.5 10.7 9.11 12.2 10.8 7.32 9.44 12.9 10.8 0 8.07 6.1 8.45 11.5 9.41 10.2 9.24 6.01 7.97 11.2 9.11 11.2 9.24 3.75 7.33 7.54 8.17 11.5 8.72 6.87 3.94 12 9.48 1.51 1.25 10.1 5.46 12 12.6 6.35 9.73 1.25 5.56 8.98 6.98 4.28 6.43 8.05 7.47 8.63 0.94 7.72 9.38 0.94 11.6 5.43 10.3 10.5 10.1 3.85 1.51 9.1 8.14 6.61 10.3 9.59 4.02 5.23 7.4 10.1 0.94 2.99 11.3 9.47 0 4.8 5.12 10.2 9.47 4.59 0 2.99 2.71 7.51 4.21 9.71 4.72 2.81 3.89 8.71 8.62 2.81 7.7 8.95 3.94 8 3.12 1.51 6.22 6.03 11.7 6.75 0.55 6.95 4.45 8.19 8.03 2.49 5.64 2.37 0.55 9.74 11.4 5.21 4.06 3.15 0.55 7.57 0.55 6.4 8.99 8.32 1.25 6.92 7.45 5.77 3.89 12.7 2.81 6.76 3.8 7.03 6.15 1.25 9.28 8.02 4.98 1.51 4.59 8.27 6.04 3.7 6.38 6.09 0 5.12 7.57 3.01 2.99 1.51 0.55 1.25 3.22 1.25 1.25 10.9 1.92 8.84 5.17 1.51 5.33 0.55 2.08 9.81 11.6 0.94 0 0 0 0 1.25 7.29 1.25 0 6.92 4.72 1.73 1.25 10.1 3.48 9.5 8.61 0.55 7.58 10.5 11.7 9.81 3.36 7.26 2.38 0.94 6.98 13 8.57 8.66 5.89 8.99 6.71 9.69 8.81 10.1 6.16 13.5 13.9 9.72 4.9 8.78 11 11.2 9.47 9.75 7.19 9.24 1.92 8.55 8.52 10.8 12.4 12.8 1.92 8.86 9.17 9.02 10.3 10.2 13.6 11.1 8.66 6.96 5.73 12.3 0 1.51 0.94 11.3 9.01 5.06 10.1 9.45 1.51 5.87 13.7 8.59 9.47 7.78 1.51 7.34 15.1 7.63 2.08 11.5 11.3 9.41 8.19 9.71 9.45 7.48 2.6 5 11.1 9.54 9.06 7.64 8.68 1.73 9.25 9.49 14.1 10.1 10 9.85 12.8 3.75 12.5 1.73 2.6 12.1 10.8 12.6 12.8 11.3 13.4 9.61 9.11 4.54 0.94 9.51 9.64 8.03 9.94 13.5 7.32 11.6 11.1 10.6 11.8 10.3 10.5 11 10.4 10.5 2.23 11.6 10.8 10.8 10.3 11.5 10.2 10.5 12.4 11.8 9.86 12.1 10.9 12.8 11.7 9.86 11.8 9.21 7.16 11.6 11 12.3 10.1 12.1 12.7 11.9 10.9 10.5 9.86 10.3 6.92 12.1 14 11.8 7.6 10.3 6.25 7.21 7.3 7 0 2.6 4.25 9.52 10.5 6.58 9.03 6.89 6.61 9.28 11.3 14.9 9.29 2.49 9.92 9 0.55 9.51 9.78 8.25 3.29 12.2 4.7 11.9 8.78 6.9 9.43 9.63 10.4 10.8 12.1 10.3 9.97 10 10 8.96 9.52 8.95 0 8.88 9.09 10.4 7.35 2.08 11.8 11.3 8.77 7.53 10.9 7.01 9.63 9.43 3.07 8.93 7.37 2.9 10.5 14 12 14 9.81 8.79 10.8 11.9 10.1 1.73 10.3 13 8.72 5.32 10.1 10.1 8.55 11 10.9 12.4 6.87 7.16 4.51 11.1 5.98 8.55 6.6 9.53 4.91 13.3 3.15 1.25 11.9 6.3 5.52 3.15 2.6 5.53 8.24 9.43 10.5 3.65 11.7 8.69 0.94 8.06 6.69 5.58 5.75 13.5 10 6.55 0.94 9.71 2.49 10.1 1.73 0 0 0 6.19 2.71 2.23 7.16 7.42 13.4 9.41 12.4 9.68 10.3 6.47 11.3 9.45 7.26 9.13 8.53 11.9 8.45 1.92 9.34 3.29 3.85 8.79 12.1 5.82 11.7 9.67 0 5.8 9.69 9.45 4.4 4.1 3.85 2.23 14.9 10.6 9.58 10.6 9.4 3.6 11.1 8.45 3.8 4.72 1.25 5.32 7.59 0 0.55 10.4 9.48 13.1 2.71 6.53 7.84 7.37 10.1 0 5.17 8.99 7.99 11.6 8.37 9.21 9.2 6.71 0 10.1 4.91 5.91 4.84 5.17 4.82 10.1 11.2 9.41 4.32 4.89 8.86 5.07 3.42 6.07 9.02 7.7 7.7 9.26 14.8 6.66 7.38 12.2 0 0.94 3.07 12.3 7.29 10.9 6.91 11.6 8.7 9.4 7.6 11.5 5.92 11.2 10.9 7.9 8.26 11.7 6.3 14.2 9.68 9.35 10.5 13.9 1.25 6.94 9.04 10.4 11.2 4.54 10.4 10.4 4.35 8.75 8.22 10 7.93 2.99 10.4 3.6 2.71 10.3 10.3 6.89 3.15 5.3 0 2.13 8.55 9.97 11.6 8.43 10.7 10.7 8.01 2.99 1.86 1.92 13.2 3.6 9.61 10.6 7.12 5 1.92 7.98 9.72 10.1 10.5 9.86 11.7 7.71 9.61 9.97 12.7 6.13 0 12.9 0 5.36 0 8.21 11.2 10.9 9.82 9.3 9.83 8.47 9.13 9.14 8.01 8.25 8.49 11.2 8.24 9.97 0 9.28 8.97 9.97 8.99 8.79 8.83 9.22 8.98 9.19 10.1 11 7.86 9.03 11.6 8.65 8.85 9.09 8.71 10.3 8.17 10.4 12 10.3 11 2.99 10.8 6.42 11.2 4.32 8.63 10.7 11.1 10.6 6.38 7.81 9.77 1.92 8.74 9.22 10.2 11.1 10 8.7 11.3 7.76 10.9 8.2 9.73 10.7 12.8 10.7 11.4 11.9 1.92 8.37 3.8 3.08 9.46 7.6 9.03 7.43 8.7 9.93 11.4 7.61 9.83 7.53 9.49 8.95 9.58 11.3 5.06 9.6 8.79 7.72 8.74 6.92 12.8 10.9 10.4 13.3 7.69 9.24 9.81 9.66 9.58 10.4 10.3 9.83 10.8 9.08 10.5 10.9 10.1 10.2 11.3 5.02 8.39 10.4 7.86 9.68 10.2 8.86 7.08 8.8 7.46 9.63 8.15 13 9.08 9.48 10.1 9.72 7.47 11.9 0.55 11.4 12.6 8.88 9.84 11.8 5.26 7.64 9.23 10 2.08 7.59 2.81 8.49 6.87 9.37 8.46 6.62 7.21 10.6 9.5 11.6 8.85 9.05 8.64 9.93 10.5 9.05 11.6 9.55 9.8 9.5 8.78 12 7.74 9.21 7.61 10.4 11 10 8.17 2.49 0.94 0.55 10.3 2.81 10.1 8.79 9.04 8.15 11.7 9.35 10.1 7.56 2.6 10.9 9.9 8.45 8.23 10.6 8.68 13.1 10.5 10.5 9.15 4.06 8.76 8.97 5.53 11.7 11.3 9.25 9.53 12.1 8.86 9.69 10 11 4.35 4.32 4.54 12.1 10.3 10.4 9.97 8.69 6.12 6.1 11.8 9.03 7.05 9.32 6.75 9.85 9.98 6.33 2.99 10.7 10.2 9.47 9.12 10.3 10.2 6.17 11 11.4 5.06 11.7 8.78 11.8 1.73 9.66 10.6 2.49 8.25 9.84 5.17 5.5 6.93 4.7 9.26 7.03 1.92 8.91 7.5 8.63 9.8 7.6 7.7 10.6 10.1 10.8 6.02 12.4 7.43 10.1 7.19 6.04 1.92 11.7 11 7.77 5.36 8.58 10.2 10 11 8.54 3.8 7.83 2.6 4.65 7.48 8.33 8.82 7.93 3.94 6 10.2 9.93 10.6 0 11.9 10.6 9.3 11.8 9.74 8.42 7.71 5.06 7.68 10.4 1.73 7.8 12.3 9.77 10.7 1.25 9.97 8.16 6.75 12 10.1 13.2 5.02 10.5 10.1 8.44 7.44 6.92 5.7 9.89 8.11 6.71 6.5 11.1 8.58 7.48 8.54 11.5 10.9 9.57 8.31 7.87 4.18 10.9 7.64 10.6 10 4.72 9.86 0.94 9.17 8.25 0 9.8 10.1 9.01 5.3 10.3 9.93 8.22 10.3 4.45 9.95 9.39 10.7 11 8.32 11.6 9.93 12.3 8.86 11.1 9.85 12.1 11.1 11.6 8.73 10.4 8.2 11.1 9.85 9.47 8.32 11.1 11.1 8.37 9.41 10.1 8.64 8.61 12.1 5.53 9.11 7.96 4.21 10.7 9.37 9.81 10.3 8.25 7.79 8.77 9.25 10.1 9.63 7.08 9.34 10.9 5.3 1.25 7.4 7.55 6.9 5.99 7.34 10.8 8.63 10.3 9.44 7.06 10.3 10.5 9.43 7.79 5.33 10.9 9.09 11.2 8.1 9.78 9.18 12 10.2 12.2 12.8 11.6 11 6.88 10.9 10.2 12.2 9.49 10.4 10.4 9.1 13 9.42 0 7.84 9.26 10.1 10 8.37 12.5 7.77 10.4 6.64 9.99 9.44 11.6 11.5 9.95 10.1 9.81 10.4 10.8 11.1 10.3 7.57 9.86 9.45 11.1 9.59 4.87 10.9 10.2 3.15 7.62 5.52 9.58 7.61 11.2 9.87 11.9 4.96 8.69 8.7 6.59 6.62 8.46 5.43 2.08 11.1 9.91 10.7 9.9 10.3 10.6 12.9 8.76 8.8 7.53 8.27 9.9 5.62 5.62 11.3 7.72 10.9 7.52 5.23 10.1 3.29 9 11.9 11 9.27 10.8 5.52 11.2 2.08 1.73 2.37 7.28 7.95 4.28 10.7 9.72 9.19 3.48 10.8 8.18 9.33 10.5 10.3 8.06 0 7.85 9.99 0 7.32 11 8 8.52 1.92 10.1 12.1 6.32 8.79 5.44 7.93 8.37 9.76 10.3 9.2 8.86 7.97 10.9 7.42 9.39 7.45 9.3 9.75 0 0 8.07 4.28 10.9 10.7 10.7 9.28 12.8 8.92 3.7 8.27 9.11 11.3 8.32 12.7 4.62 9.63 11 14.2 11.3 7.15 11.5 12.4 7.13 0 13.4 8.32 7.47 11.2 13.3 10.1 7.05 4.89 3.94 3.6 2.49 12.6 7.42 13.2 2.99 10.7 8.72 7.74 9.21 9.79 11.4 0.94 10.1 8.06 10.6 12.7 12.2 12.1 8.52 8.71 9.46 6.38 8 9.15 10.1 8.82 8.41 5.64 7.26 9.48 8.51 11.4 8.5 9.63 11.4 9.18 4.02 9.31 10.9 9.83 11.4 10.3 10.5 1.73 9.03 8.49 10.3 13 9.83 7.05 0 15.7 8.95 4.93 0.55 6.9 6.83 6.39 9.66 9.84 10.8 10.9 11.9 8.02 10.5 4.21 9.07 9.66 9.82 3.29 6.29 0.87 8.86 7.25 5.59 5.53 9 10 0 7.04 7.31 9.99 9.06 9.16 9.83 13.5 2.37 4.96 9.25 9 4.95 7.11 1.73 10.7 14.6 10.8 4.45 12 9.77 0.94 13.7 9.34 7.8 11.8 11.6 11.4 11.9 12.4 3.36 10.6 6.69 11.9 11.1 10.7 8.32 7.97 2.75 4.72 12 12.3 9.89 10.3 8.78 7.67 8.45 6.74 5.53 4.75 7.39 1.73 9.1 11.5 4.98 6.51 6.12 13.7 7.85 11.1 9.75 7.07 0.55 4.65 12.8 10.9 9.88 10 9.44 9.39 8.56 11.1 8.95 10.1 9.12 8.92 9.98 11.5 4.35 9.24 8.9 6 3.07 8.21 7.93 8.84 2.9 9.25 0 2.23 8.3 9.17 7.73 7.39 4.5 11.1 10 10.3 1.51 8.29 8.65 7.16 4.69 8.69 7.31 9 8.39 8.69 9.39 8.57 10.7 8.92 11.1 8.3 3.22 9.87 5.91 9.73 9.75 11 12.6 10.7 8.18 3.28 10.1 9.49 11.4 10.1 10.6 0.55 2.71 9.24 6.13 7.35 12.6 9.14 6.52 10.4 11.1 1.73 9.39 11.7 10.3 10.4 11.2 10.4 11.5 11.1 4.28 7.87 10.4 0.94 4.67 8.9 10.1 9.12 9.17 6.36 9.66 4.42 6.46 8.47 8.99 4.28 10.2 9.5 9.75 11.1 7.17 9.98 2.6 7.42 11.5 11.2 11.4 8.35 4.67 9.83 8.08 0 8.98 8.76 9.69 11.5 8.43 9.59 10.7 9.45 9.7 7.55 8.86 10.2 7.2 10 7.53 11.8 5.58 8.53 9.49 8.29 8.33 11.1 9.39 8.29 9.78 8.95 9.17 8.66 9.92 4.42 6.78 7.13 4.14 10.2 6.98 8.39 7.78 6.06 9.12 7.04 6.42 9.5 5.83 9.55 6.78 8.54 11.6 7.17 7.92 6.53 12.5 9.86 11.9 6.5 11.5 8.5 4.72 8.97 8.55 11.3 6.69 5.4 3.6 6.5 6.27 4.75 8.01 9.25 7.33 7.82 10.7 1.25 8.48 7.57 9.96 11.4 9.57 6 5.91 9.42 8.93 5.55 11.3 12.6 11.7 4.02 4.18 6.75 11.4 8.49 0.94 9.69 10.9 7.92 7.77 10.5 4.1 9.6 10.5 8.75 6.34 8.69 8.7 9.04 9.59 9.1 8.8 8.64 8.96 8.78 7.55 0 3.85 8.72 2.49 12.8 6.39 2.37 8.47 11.4 5.43 10.9 5.72 2.23 10.2 2.9 6.17 2.08 6.5 8.06 8.85 12.5 6.02 7.83 8.58 7.35 0.94 10.7 7.86 13.5 9.19 9.59 8.82 10.1 13.8 7.75 8.77 8.74 4.96 9.49 0.55 7.66 10.5 9.14 8.43 9.06 6.57 7.93 6.85 8.69 11.1 9.63 8.64 8.44 9.45 6.35 8.31 10.4 7.59 8.03 9.25 7.65 7.67 6.34 0 7.18 1.25 9.71 6.55 6.23 5.62 7 8.19 8.74 10.3 6.78 9.62 8.64 9.44 6.59 11.2 7.26 9.68 8.51 7.21 6.27 9.12 9.45 7.86 8.96 4.75 9.01 9.04 7.8 11.4 8.89 11.9 6.84 10.1 2.23 11 9.47 11.2 10.1 8.8 7.78 9.13 7.35 8.18 7.66 4.96 8.39 8.48 8.65 10.5 9.21 9.86 6.06 8.78 10.9 11.1 7.99 9.28 8.16 8.71 9.16 9.71 2.9 4.45 6.72 3.6 8.17 9.38 8.63 9.94 4.77 8.56 8.26 9.43 10.6 9.32 10.5 8.07 9.74 9.2 9.26 11.5 11.2 9.02 7.98 10.5 9.32 10.2 10.3 12.5 10.5 10.3 7.71 9.23 9.39 10.2 10.8 0 9.29 11.9 9.18 10.2 5.02 8.61 5.21 10.5 8.49 10.4 10.2 9.01 7.92 9.43 8.64 8.16 7.6 8.25 9.2 7.69 12.6 10.1 10.7 7.72 9.96 8.14 10.2 0 9.26 9.12 6.69 8.18 11 11.6 8.44 11.1 9.44 10.8 6.6 8.6 7.88 8.21 10.9 8.34 10.9 4.14 9.53 1.25 8.05 12.9 8.89 6.84 11.5 7.94 6.59 4.06 12 7.97 12.2 12.1 10.8 6.97 8.92 9.06 11.6 7.72 8.14 8.49 10.2 11.2 11.5 7.68 11.2 7.42 8.48 9.47 8.92 8.25 4.59 11 0 0.94 8.89 4.18 9.2 3.7 4.51 7.48 8.62 9 9.28 9.12 5.68 8.48 9.21 4.06 9.73 10.1 8.77 9.73 10.4 10.1 9.18 9.76 7.94 11.7 8.58 9.08 7.18 11 10.7 8.55 8.61 4.62 5.64 9.59 8.7 7.3 4.38 11.4 4.82 6.41 7.87 10.8 6.22 7.85 9.21 10.5 10.3 10 10.2 6.83 4.18 5.93 4.77 1.25 7.95 9.05 10.1 8.47 8.34 9.37 0.55 11.2 9.69 10.1 7.94 7.84 7.43 5.55 11.2 9.34 10.3 8.56 11.2 6.97 8.14 9.68 9.71 9.37 9.71 9.77 0 8.37 9.45 5.5 8.56 0 8.66 6.69 7.17 9.55 0 5.04 9.71 10.8 9.86 8.8 9.76 9.49 7.03 10.1 10.9 9.91 8.26 11.7 5.04 5.08 9.37 9.11 9.07 8.12 9.26 10.4 10.6 9.94 9.76 10.8 6.93 9.25 7.6 10.2 10.9 8.15 9.08 6.9 10.2 10.9 3.29 5.25 10 8.52 8.82 13.2 7.53 8.67 10.8 6.62 6.07 9.59 10.6 7.54 8.1 5.17 10.4 9.13 8.98 7.66 0 8.33 9.17 9.06 7.72 1.51 10.7 9.64 9.47 4.02 10.1 9.83 4.96 11 8.34 9.92 4.21 11.1 6.93 6.84 10.6 11 8.56 7.09 7.89 9.36 9.48 2.49 8.9 7.68 9.31 8.43 10.1 9.9 3.98 9.34 8.74 9.58 4.8 8.82 10.6 9.75 6.34 9.6 12 10.3 0 6.15 9.81 10.4 6.36 7.88 11.2 11.1 9.3 8.13 5.06 9.45 8.9 9 11.4 9.85 2.9 2.08 8.84 7.27 9.13 10.7 2.81 10.2 9.37 10.5 9.36 11 0.94 8.89 9.66 10.1 7.01 8.46 6.99 10.6 9.65 9.18 1.25 6.52 8.17 6.26 7.24 10 8.76 10.2 1.25 8.22 9.72 11.3 10.8 5.95 7.52 7.52 5.21 7.22 9.22 10.5 0 9.09 8.61 0.94 8.84 7.82 10.2 12.3 9.49 11.8 7.43 9.24 5.02 7.6 4.82 9.26 8.65 7.95 8.78 7.98 5.43 8.48 7.54 11.6 9.18 9.41 8.63 7 7.01 8.17 8.17 7.45 8.68 8.96 10.3 1.92 5.95 10.1 10.3 10.4 8.43 10.8 9.15 9.15 10.8 6.68 6.31 10.1 6.22 5.71 2.71 10.3 12.3 8.97 6.33 10.1 7.79 10.4 10 10.6 8.62 8.45 6.55 9.54 9.97 4.84 8.54 11.7 12 5.78 7.57 1.92 7.89 8.22 7.6 6.68 0 0 7.41 4.42 7.73 6.64 7.5 3.22 7.61 7.78 6.36 11.3 9.98 10.8 7.67 1.51 11.1 10.1 9.73 8.16 8.15 7.34 6.76 3.8 11.4 10 2.08 6.35 6.22 8.82 1.25 6.05 0 9.6 7.34 3.98 8.75 10.7 3.94 2.6 2.81 6.09 9.84 4.74 6.53 10.6 1.73 2.37 7.4 3.85 8.44 8.8 9.64 9.21 8.35 2.37 8.07 8.34 10.3 9.47 12.2 0 11.3 8.72 7.9 3.7 11 10.6 6.31 9.31 7.23 11.1 8.7 7.14 1.92 9.67 7.2 8.71 8.93 8.02 0.94 9.7 5.78 8.16 11.9 9.53 3.75 7.73 8.72 9.24 7.19 6.48 9.06 11.9 10.2 9.4 8.64 10.7 9.94 8.89 11.1 7.52 10.7 5.1 9.7 6.52 6.84 9.08 8.15 8.36 8.27 5.08 9.23 7.2 11.9 9.08 9.26 8.68 8.87 8.55 11.8 9.92 9.9 10.8 9.64 9.35 9.92 10.2 7.56 10.9 10.2 11.2 10.1 8.68 8.22 9.89 12.2 8.15 5.92 9.54 8.57 6.93 10 7.27 6.31 9.82 8.16 6.53 7.69 10.4 11.6 8.45 9.09 10.8 6.97 11.3 7.45 9.74 5.36 10.7 10.5 10.8 6.62 10.8 6.19 11.9 9.35 10.3 8.08 7.9 11.1 7.45 11.3 6.48 10.3 4.38 1.92 4.56 9.8 8.72 8.47 9.09 8.59 9.95 8.38 7.8 11.5 9.15 8.3 2.23 7.69 10.4 8.92 8.69 7.05 9.19 10.2 10.8 11.2 10.3 9.68 10.2 8.81 9.39 9.32 8.14 10.2 11.9 9.28 8.14 8.62 7.4 8.98 6.17 10.7 10.3 9.97 7.41 8.78 8.45 5.16 9.12 8.4 4.02 9.57 10.2 11.8 10.7 8.93 9.01 4.62 9.39 4.02 9.6 8.69 9.07 6 8.13 7.81 7.67 7.39 8.78 7.43 7.53 7.99 4.02 6.23 8.86 7.45 6.24 5.94 8.12 8.94 9.1 9.78 3.89 7.26 3.75 9.21 10.2 3.48 8.22 8.24 4.51 11.8 8.57 8.95 6.4 9.06 0 6.15 10.2 8.01 4.18 10.2 10.7 0 9.5 7.58 6.97 10.3 10.2 8.89 9.5 10.4 10.9 9.02 8.26 9.83 10.3 10.3 7.7 10.2 5.78 9.38 11.6 9.21 9.12 9.38 10.6 9.66 11.1 9.62 2.23 9.84 5.33 10 8.42 9.98 1.51 9.01 9.87 11.2 10.3 9.19 0.94 9.33 4.54 9.03 10.4 9.43 9.83 6.86 10.7 5.26 3.42 0 13.4 10.2 9.02 10.9 5.49 11.6 9.98 8.56 5.35 10.2 7.91 11.4 3.42 9.67 10.3 12 8.99 9.59 8.93 8.22 9.29 0.55 13.1 8.29 7.18 10.4 1.92 8.15 6.13 10.1 10.6 8.74 8.67 8.94 11.3 8.66 0.94 10.8 12.3 12.4 9.16 10.3 11.4 5.04 10.1 10.8 8.2 8.61 5.17 0.94 9.22 5.82 11.6 10.6 9.37 7.37 11.6 6.38 9.61 12.4 9.54 10.5 9.96 1.51 8.7 8.51 6.77 10 0 0 1.25 8.81 0.55 0 0 2.49 0 1.25 5.3 1.25 0 0.55 10 1.25 1.25 0 0 2.46 9.99 0 3.7 7.21 4.93 3.07 0.55 4.91 7.56 3.75 6.09 11.4 0.55 1.73 3.42 5.87 2.49 2.6 8.28 4.8 0.55 9.03 1.92 9.53 1.25 7.53 9.32 0 7.52 10.7 1.92 4.67 6.5 6.48 9.57 0 10.4 9.73 5.04 9.86 8.83 5.88 11.4 11.1 5.33 10.2 11.3 8.77 8.73 9.59 11.5 8.16 10.4 3.85 0 10.4 9.44 10.5 10.4 10.1 9.28 2.9 8.95 12.3 7.74 0 2.08 9.3 6.33 8.43 2.08 0 12.4 5.5 10.8 7.43 1.25 14.9 5.5 6.76 7.54 10.9 5.28 7.99 10.6 8.42 10.2 7.41 12.5 11 8.48 8.88 10.3 8.59 5.23 0 8.25 1.25 9.18 0.55 10.1 8.4 10.8 9.72 16.7 6.48 0.55 10.8 9.75 11.4 10.6 12.1 9.06 9.44 11.4 8.44 12.6 10.9 10.7 7.5 4.21 12.3 12.6 12.9 11.5 10.2 10.7 10.9 11.7 7.26 6.93 11.3 11 6.36 11 8.95 0.55 12.4 10 12.6 9.07 11.3 10.8 6.41 6.22 12.9 11.8 6.43 9.22 7.6 10.4 8.05 6.19 4.72 13.6 6 9.94 9.95 6.74 11.7 10.7 10.2 8.2 11.9 9.52 8.71 11.1 7.21 12.3 10.7 12 10.1 9.85 9.54 10.5 7.2 9.88 9.53 11.1 11.9 9.03 10.2 7.05 7.98 11.1 9.19 13 0.94 9.49 2.6 10.1 7.6 10.6 7.24 10.2 3.42 4.35 13 6.93 1.73 9.05 10.3 6.68 8.13 9.65 12.6 9.12 8.5 10.9 9.76 7.35 10.4 10.2 11.3 4.54 1.92 10.4 7.43 7.74 10.9 10.8 11.7 2.9 10.6 10.4 10.3 12 9.1 8.07 0.94 10 8.32 9.13 11.8 7.75 9.79 12.8 9.29 4.65 10 9.74 0.94 11.4 11.1 13.6 5.08 11.7 7.23 6.7 12.2 2.49 10.9 3.89 11.2 1.25 7.41 8.89 8.99 13 7.31 9.25 9.14 10.2 2.08 8.18 7.92 10.1 9.3 12.4 3.48 8.19 5.78 9.08 8.64 9.92 7.86 6.12 4.51 8.85 11 11.9 10.6 10.1 6.44 11.4 1.92 12.3 11.5 11.4 7.89 9.59 7.96 9.99 8.22 10.9 7.08 12.2 10.1 8.47 8.23 4.91 10.2 6.66 7.45 5.17 3.65 6.52 11.2 10.7 9.61 11.6 9.46 9.59 10.5 9.75 6.69 6.52 7.21 9.43 9.81 4.1 9.4 6.59 10.2 12.2 11.1 3.07 9.48 5.55 6.85 11.1 13.2 7.93 7.16 13.3 10.1 9.05 7.74 7.97 7.12 10.3 9.99 10.4 4.8 11.4 9.51 9.33 9.53 9.61 8.06 9.09 6.52 4.32 12.8 5.82 9.93 0 2.6 9.32 11.4 8.67 4.06 4.8 9.64 11.4 3.22 8.22 9.95 7.49 5.33 7.18 0.55 6.24 6.06 2.49 1.92 12.1 9.22 3.85 5.12 4.93 7.69 6.67 1.92 3.98 10.4 8.45 0 8.27 6.18 10.9 9.39 11.3 7.74 11.2 6.96 11.1 6.07 9.12 5.26 7.72 10.4 10.9 9 9.39 4.1 0.55 4.28 0.55 9.8 8.68 8.74 9.23 0 4.54 11.2 7.14 6.34 6.73 6.98 9.73 2.49 7.06 10.2 10.8 1.92 9.49 10 7.41 7.07 3.65 7.04 9.07 9.44 6.74 3.8 2.37 6.9 10.1 9.24 5.49 8.11 9.87 7.83 2.49 8.43 1.25 8.78 1.51 4.75 5.21 9.69 9.69 11.3 2.08 6.95 10.8 10.2 7.35 9.19 7.95 10.3 5.92 9.51 7.08 9.83 1.66 2.9 0 1.25 9.3 9.12 5.94 10.6 10.3 7.8 5.97 6.13 4.7 5.3 7.11 11.1 4.7 8.74 8.38 6.91 6.23 5.72 5.5 9.82 4.38 8.07 9.12 0 9 3.7 6.34 6.44 9.86 8.9 10.2 4.72 6.25 0.55 7.5 9.65 2.99 14.5 8.39 4.14 10 2.23 0 3.89 7.45 1.25 7.46 8.9 0 7.88 8.93 8.8 8.08 8.06 9.07 9.63 9.99 9.29 9.47 6.7 3.36 6.88 9.16 8.11 4.91 9.59 4.87 7.8 9.13 5.94 9.59 9.3 8.16 8.86 0 6.3 10.4 7.76 8.18 7.62 5.81 7.57 0 12.8 6.74 3.65 9.81 11.5 7.4 6.25 3.6 10.3 7.78 9.64 12.7 9.39 8.35 6.07 6.22 8.99 7.12 9.91 10.4 10.2 8.56 10.3 8.41 8.78 6.25 4.84 7.15 12.6 6.62 7.69 7.77 10.4 10.2 3.29 3.15 7.28 0.94 7.37 2.49 7.92 6.54 3.75 9.61 8.52 8.98 6.76 7.91 7.25 0.94 10.2 7.12 8.46 8.48 9.39 6.77 9.45 10.1 8.98 9.93 4.33 7.45 1.73 5.39 6.85 6.03 1.92 6.01 10.6 7.2 2.71 8.53 10.1 7.79 2.49 4.77 5.89 0 8.91 6.37 6.85 9.69 7.61 10.6 8.22 8.44 9.06 9.89 9.63 10.3 10.6 9.21 7.89 11.5 12.1 9.72 10.9 9.11 9.71 0.94 9.7 8.96 8.66 10.6 2.81 9.49 0.94 9.33 7.93 6.15 10.8 10.1 3.94 2.37 6.06 7.76 3.54 9.25 7.45 13 3.65 7.82 8.36 9.98 6.57 0.55 5.23 0.94 2.23 5.92 2.23 11 7.97 3.6 11 9.64 7.18 10.7 7.18 10.4 13.5 5.99 11.4 11.5 11.2 8.09 7.23 10.2 10.4 9.46 9.3 9.99 9.74 10.8 8.79 9.68 10.9 10.1 10.2 11.4 11.6 1.92 11.7 5.14 7.66 9.43 11.7 8.85 7.12 5.47 11.5 9.28 8.92 8.4 9.64 9.76 7.83 7.25 6.74 4.48 6.14 9.48 0.94 7.68 7.75 6.94 10.3 11.4 8.46 9.94 2.49 9.94 9.79 8.95 9.61 10.3 10.2 10.1 9.47 2.37 9.77 0.55 0 12.1 6.92 9.32 11.4 9.67 10.4 5.75 0.94 7.7 9.61 9.04 11.7 11.2 11.1 9.35 11.7 8.46 6.02 10.4 9.73 9.34 11.7 13.2 9.95 8.99 9.86 8.79 11.3 12.8 11.1 9.48 8.96 6.47 6.62 7.67 7.14 10.7 3.15 11 10.2 10.9 11.8 10.9 12.9 11.3 9.98 12.3 9.58 10.7 4.59 8.07 9.3 8.43 11.6 3.8 8.87 8.17 12 10.7 9.38 11 11.7 7.92 3.29 1.25 4.62 9.48 6.88 7.98 10.3 8.85 9.07 8.69 7.06 11.5 12 7.5 11.1 9.38 9.89 13.1 9.84 6 1.51 8.51 9.95 9.5 0 9.16 12.1 9.76 6.47 9.96 6.06 9.75 11.1 0 4.56 11.7 9.68 9.12 7.15 11.6 0 2.03 1.51 11.9 6.47 4.75 0 11.4 9.71 1.51 5.53 7.39 3.36 7.92 8.95 4.54 7.59 11.3 10.2 8.59 11.7 9.95 3.22 2.71 11.5 6.47 9.98 11.6 8.41 11.1 9.45 10.6 10.3 3.05 8.51 9.68 7.6 2.71 0 9.97 6 7.91 8.53 9.31 16.8 9.38 11.1 0 7.5 2.23 1.73 10.7 0 10.9 9.76 8.51 0.94 11.2 2.08 8.34 10.8 10.3 10.6 10.4 5 2.6 9.09 7.57 0.55 9.11 8.22 10.1 1.51 8.92 10.7 0 9.81 4.32 0 7.9 12.3 5 9.97 10.9 9.79 1.25 8.03 7.29 10.1 9.63 8.54 8.56 9.22 9.5 9.02 4.35 7.27 7.95 12.5 10.1 11.4 8.43 10.7 8.9 10.5 7.85 8.32 9.63 8.88 0 8.13 11 4.8 7.12 10.3 6.29 11.2 11.1 1.51 0 5.29 10.8 0.55 8.63 9.46 8.56 10.2 8.41 8.38 5.68 11.8 7.61 6.25 7.03 0.94 7.48 2.37 8.15 7.41 5.52 0.55 11.7 11.9 9.97 8.98 15.2 15 14.6 13.6 11.2 10.2 14.1 3.11 15.9 11.6 14.5 15.1 13.7 14.6 13.9 13.3 15 12.3 15.3 3.8 13.6 12.8 10.5 14.6 13.9 14.2 14.5 14.3 15.2 13.9 14.2 14.6 13.2 14.8 12.3 14.7 14.4 13.3 9.35 10.5 14.6 5.9 15.4 15.8 14.1 11.8 10.8 14 13.4 14.8 15.5 12.7 15.7 1.26 2.08 1.51 8.01 4.54 14.7 0 0.55 15.3 11.2 6.88 8.58 9.12 11.2 13.4 15 14.6 13.8 15.2 15.2 13.3 14.6 13.4 14.1 14.5 14 10.6 15.2 15.5 15.3 14 13.9 14.6 13 9.47 6.55 14.2 5.17 13.2 9.72 10.8 12.4 8.79 11.5 12.4 10.2 1.51 5.95 10.2 9.27 5.28 8.4 11.2 10.6 10.6 10.8 3.54 3.6 2.08 4.93 11.1 15.8 6.86 11.1 2.71 14.9 15.6 16 14.2 15.9 6.62 11.4 5.21 10.1 12.1 10.8 11.6 5.05 6.44 7.78 12.2 9.83 9.78 13.2 7.91 5.28 10.6 10.2 8.78 5.53 8.32 8.39 6.73 13.3 6.35 7.23 7.95 5.92 6.45 1.51 3.07 0 12.9 3.65 2.6 3.22 2.08 11.3 10.2 5.56 10.1 9.06 10.6 2.37 3.48 8.89 8.34 5.41 0.55 8.81 11 3.94 5.49 4.84 8.21 9.78 3.54 0 9.81 0 3.36 8.42 0 5.4 12.8 7.43 15.4 7.35 5.28 7.2 13.4 10.5 8.33 10.1 10.9 1.51 8.42 10.6 12.6 8.94 10.2 10.1 8.88 2.08 7.98 9.72 6.9 8.18 11.3 10.4 11.2 9.65 8.04 10.8 5.63 2.71 8.2 9.45 8.75 9.89 6.96 9.99 2.81 0.55 9.08 7.74 6.13 9.43 7.7 8.58 1.25 10.7 5.78 9.31 8.81 9.46 11.1 5.55 9.35 6.86 7.5 3.54 8.87 8.39 11.8 9.15 1.73 9.54 7.91 4.87 6.88 4.87 8.9 11.7 9.62 8.43 3.75 16.2 3.36 5.33 12.7 9.63 3.07 6.67 4.87 10.1 4.21 10 6.84 0 5.88 6.52 2.71 8.6 8.95 8.6 7.81 8.68 7.26 10.4 10.1 7.98 12.9 11.3 7.94 11.7 6.93 8.35 5.8 8.9 10.6 1.51 7.05 6.87 2.23 10.1 5.67 10.2 1.73 7.91 0.94 13.3 9.18 3.07 8.56 6.41 8.29 13.1 9.71 8.75 11.2 8.02 7.86 1.25 6.13 4.82 6.69 6.09 9.47 12.5 1.51 8.2 6.28 10.3 8.79 12.2 9.66 9.6 8.8 10.4 10.3 10.1 7 11 10.8 8.67 9.5 5 11.3 9.53 9.39 11.6 2.37 0 8.66 0 12 1.73 12.1 12.9 2.37 7.04 5.18 8.66 7.18 8.3 9.27 6.26 6.4 11.6 1.92 3.36 1.51 4.77 10.9 7.47 2.9 11.4 9.89 8.19 10.6 11.6 9.46 7.12 10.3 6.86 5.83 10.3 8.32 8.39 9.79 1.51 8.66 7.9 6.93 0.94 4.96 6.42 11.8 9.6 8.62 5.4 10.7 8.2 0.55 4.1 10.4 6.23 6.99 0 0.94 8.49 7.21 4.42 8.09 6.88 4.93 1.92 1.25 2.08 5.95 5.38 0 9.99 8.78 0 10.7 8.57 7.33 9.16 2.6 2.08 8.73 5.33 8.09 9.45 8.5 6.72 0 2.99 3.35 6.72 2.81 8.45 10 5.04 6.28 8.65 11.2 11 8.96 9.96 8.91 10.4 9.2 8.69 7.3 8.75 10.3 8.7 1.51 5.04 0 0.55 3.29 5.71 4.18 4.93 11.6 3.8 3.94 0.55 9.02 3.75 7 7.8 0 12 0 6.38 0 10.3 12.1 5.81 2.9 9.07 7.22 1.92 6.31 1.73 10.1 8 7.26 0 2.06 2.6 0 12.1 0 5.02 4.35 7.02 4.93 4.32 2.81 7.3 0 1.25 7.97 9.44 10.6 7.59 11 4.06 2.9 3.07 9.55 1.51 6.42 1.92 11.2 3.07 9.4 4.65 3.2 7.97 0 1.73 7.45 10.4 8.28 3.07 9.43 0.94 0 1.92 0 6.73 2.71 10.2 9.04 6.43 5.38 9.64 10.8 12.6 2.37 0.94 8.1 12.1 3.15 6.12 11.4 9.45 8.64 8.98 11.2 9.4 7.41 5.55 7.06 9.83 10.5 8.62 8.51 10.9 11.1 7.44 9.49 7.54 8.92 9.13 9.94 8.93 9.22 12.1 9.06 10.2 6.95 10.2 9.38 8.73 10.9 8.99 9.38 9.15 8.11 8.89 9.77 0 9.19 11.2 7.79 7.78 9.43 9.14 8.35 4.06 9.84 12.1 6.82 5.06 8.1 9.13 2.23 8.75 8.5 2.37 9.92 8.09 11.1 8.9 5.36 7.39 7.93 8.79 9.39 5.87 9.24 8.02 8.22 1.92 9.73 10.3 8.21 13.4 10.9 8.34 9.26 7.58 7.46 7.47 8.08 10.8 7.91 2.95 6.47 5.8 7.64 8.29 10.6 6.09 9.44 6.36 8.6 7.83 6.43 0 9.07 9.29 8.1 9.08 11.6 7.28 3.48 10.4 6.88 11.1 6.14 9.61 10.9 7.3 11.3 0 11.1 10.3 9.48 10.2 10.7 9.69 9.75 10.1 11.3 10.1 7.73 9.95 10.1 10.9 0.94 7.91 12.5 11.3 10.9 8.97 10.1 8.48 1.73 11 6.59 8.14 4.38 4.89 5.68 6.68 11.2 9.94 8.22 2.37 9.55 0.94 3.29 8.13 8.9 7.63 6.81 9.32 9.11 10.1 9.12 9.15 9.82 10.9 3.85 13.5 12 9.35 9.38 10 2.81 10.8 8.74 11.4 9.87 13.6 3.85 7.91 5.38 8.16 2.49 5.16 12.2 3.42 11 10.4 4.45 5.14 9.05 8.57 9.17 6.66 5.64 8.94 8.21 7.73 9.66 11.8 10.6 5.06 3.75 8.57 0 0 2.37 0 7.9 6.42 0 5.41 7.96 1.25 12.5 5.44 6.39 0 0.94 5.63 3.22 8.8 8.64 0.94 8.02 2.49 2.81 0 5.02 12.2 9.48 13.4 10.3 0.55 8.47 4.42 9.14 0 11.3 6.94 3.65 3.8 0 10.7 3.15 8.21 3.75 5.41 4.57 0.94 10.4 3.8 0.55 4.21 7.88 6.76 7.46 6.96 8.55 0 9.14 7.12 0 4.94 4.62 5.71 0 9.5 10.4 5.3 5.93 1.73 6.26 3.42 0 8.28 0 6.47 3.07 5.1 9.3 3.36 7.58 10.3 7.51 6.64 1.25 0.94 7.2 9.58 10.3 10.7 7.72 5.02 2.99 6.22 2.99 7.28 4.02 6.07 9.18 14.5 10.1 8.19 10.3 10.3 11.8 2.37 6.29 9.75 10.7 10.6 7.05 6.35 6.69 10.7 4.72 7.94 7.32 5.55 10.7 7.44 10.9 11 11.6 8.88 7.23 7.59 8.52 2.23 1.73 9.11 12.5 11 8.61 11.2 10.3 11.6 5.77 8.39 7.06 11.3 1.85 10.4 7.83 9.4 9.7 8.2 11.1 11.9 12 9.16 4.77 0.94 7.11 8.68 7.35 8.48 8.28 4.18 8.39 11.7 12.1 11.4 9.87 13.7 10.7 8.91 12 10.8 12.9 11.3 10.7 11 10.7 8.38 8.02 9.43 5.92 11.2 10.1 8.92 8.04 0.94 12.7 2.37 12.1 7.49 11.1 10 11 9.53 8.51 8.92 8.12 9.98 9.69 0 9.38 2.23 10.2 8.88 11 8.87 10.8 8.77 5.17 11 6.3 9.2 6.99 12.9 8.14 10.4 9.49 3.94 9.03 1.25 13.6 7.41 7.37 13.6 10.3 8.94 12.5 1.51 7.04 11 10.5 10.7 10.8 10.2 0 10.9 9.46 12.6 11.7 10.5 11.4 11.7 12.2 9.81 10.2 6.08 11.5 10.3 10.3 8.44 10.9 9.99 8.88 10.8 10.8 8.5 11.4 12.6 11.4 12.1 12.2 6.13 3.89 0 10.4 10.6 11.5 13 0.55 12.7 4.82 13 11.6 12.1 5.9 11.1 10.2 0 0 1.73 0 0 1.92 0 3.32 11.8 3.33 0 0.55 3.49 10.8 11.2 4.98 7.47 2.6 0 9.71 8.24 5.98 8.75 9.16 9.75 4.02 0.55 9.36 11 7.22 4.06 5 6.56 8.84 10.7 10.8 7.77 11.7 8.8 8.1 8.63 10 2.37 14.1 10.3 9.1 10.9 11.8 5.17 11.7 9.32 10.4 9.15 11.7 9.95 10.4 10.2 14.1 9.94 7.07 10.3 9 4.7 10.7 4.77 2.49 6.01 11.3 3.48 7.98 2.49 5.82 0.94 9.37 8.18 2.71 6.92 7.68 8.78 7.56 8.35 5.68 12.6 6.89 10.8 11.3 12.7 10.4 10.3 10.2 9.66 6.43 8.26 2.9 0 13.8 13.7 14.2 12.4 13.8 9.26 10 11.5 4.21 0.55 9.64 10.9 9.66 11.7 8.91 11 7.33 6.1 8.3 6.07 4.35 7.53 10.3 8.78 11.7 0 3.36 7.25 10.4 0 0 12.3 0 10.9 8.13 8.65 4.59 11 8.29 7.72 5.35 8.33 8.55 2.23 11.6 7.53 11.4 9.57 10.8 10.6 8.45 9.91 11.8 7.4 11.1 7.02 0.55 9.35 8.79 9.3 3.42 11 9.96 8.16 2.37 12.8 7.93 10.4 10.3 4.82 1.51 9.29 14 8.96 3.75 8.95 0 8.85 9.36 4.77 9.79 8.38 8.03 9.9 9.28 9.13 5.38 7.72 11.3 9.53 10.4 4.59 6.28 7.54 13.5 3.15 9.14 11 8.51 3.98 8.04 3.42 11.5 9 1.51 8.5 6.32 9.86 9.54 12.3 11.1 2.49 11.6 8.96 9.06 8.72 12.7 5.92 7.85 10.9 2.08 9.05 6.29 0 10.5 9.55 9.67 9.94 9.43 6.45 12.1 11.4 11.2 2.9 11.2 9.49 13 8.7 13.4 3.15 8.5 8.13 10.9 8.34 3.85 11.7 11 6.81 9.15 6.81 6.89 16.5 13 7.62 9.52 10.3 8.6 8.54 8.5 9.23 7.01 8.41 10.7 16.1 12.6 6.33 6.76 5.87 4.18 10.7 12.6 9.62 12.7 2.99 11.6 10.3 3.6 5.21 7.41 10.4 12.2 8.24 9.64 8.63 12.1 9.95 6 2.23 11.5 10.5 8.94 10.9 9.45 8.99 11.8 8.18 9.52 10.7 11 12 0 14.1 10.2 11.9 10 12.9 13.4 9.48 8.95 10.9 8.69 15.2 0 12.6 8.29 7.02 14.2 7.93 10.2 7.86 7.63 6.51 8.47 10.4 0.55 13.2 8.08 11.9 4.98 0 3.6 1.51 0.55 3.15 8.61 7.33 0 3.42 1.92 10.5 9.04 10.8 0.94 10.3 1.51 8.6 9.8 8.26 9.74 9.37 9.36 11.3 10.5 11.7 10.8 9.95 6.2 8.56 8.4 5.52 5.83 13 7.28 2.81 1.51 4.28 8.12 9.35 8.04 10.8 3.22 6.14 6 5.41 6.42 0.55 6.44 7.23 0.94 6.35 8.63 11.1 1.73 7.85 0 1.73 7.69 12.7 7.44 6.91 0 7.66 10.5 7.31 0.94 9.76 0 7.75 5.73 4.25 5.36 3.94 9.49 7.07 0 13.7 1.51 7.81 0.94 5.44 0 0.55 6.47 8.76 7.01 9.45 0.55 0.94 9.45 3.54 9.43 3.54 4.62 2.81 5.04 6.41 1.51 4.32 6.31 5.59 5.04 0 5.04 6.1 0.55 4.72 6.21 1.92 0 9.35 13.2 7.81 4.42 6.96 1.73 5.26 10.7 2.9 6.81 2.99 8.65 10.6 2.99 0 3.07 10.6 5.78 7.85 2.9 3.54 0.55 8.78 8.65 1.51 5.35 3.42 7.29 4.28 6.83 9.05 6.14 0.94 10.8 0 11.9 1.92 14.3 1.25 14.1 15.3 13.5 0 11 11.1 9.9 7.34 11.1 11.9 9.61 8.26 9.76 10.5 8.86 11.6 2.9 11.4 10.7 11.8 10.4 9.71 7.75 11.3 9.86 12 10.1 10 4.02 4.1 11.5 5.55 10.6 5.28 9.98 4.21 8.06 11.1 4.02 9.34 11.2 6.43 10.9 10.3 11.6 10.7 3.6 11.5 0.94 12.5 12.8 11.4 11.3 11.9 10.8 9.29 11.2 11.5 10.4 0 10.7 7.77 9 8.27 11.2 11.4 8.06 8.76 10.4 8.43 10.2 13.1 11.9 11.4 11.7 10 11.2 10.9 5.33 2.23 8.43 0 11.8 13 7.08 5.32 9.35 3.36 7.05 7.12 9.08 8.39 9.91 1.73 7.9 10.9 13.8 8.38 8.75 12.6 11.1 8.31 8.34 9.55 8.6 9.35 10.9 9.8 7.05 1.51 2.6 8.02 2.49 5.35 9.42 0.94 3.36 8.85 7.83 4.02 1.51 8.4 7.14 3.07 10.9 6.02 0.55 7.56 6.55 8.09 9.33 6.94 10.2 1.92 11.7 10.6 5.38 9.84 7.33 9.01 12.6 8.82 9.37 9.32 13 6.72 13.6 11.5 11.4 14.2 6.32 12.2 10.5 4.91 11.9 7.6 10.4 7.97 7.31 8.82 9.49 6.53 8.81 5.59 13.3 6.86 6.87 7.06 4.38 8.36 6.66 8.07 5.63 6.99 7.51 9.7 7.99 7.46 9.77 7.51 7.94 6.05 9.44 8.67 8.58 6.49 7.14 7.97 7.39 6.79 7.48 5.89 7.27 5.59 8.21 3.75 0.94 3.22 5.5 7.92 7.25 9.03 9.5 6.71 1.25 8.68 1.92 3.65 6.97 4.18 0.55 0 5.5 3.42 3.6 10.9 4.35 0.55 1.73 2.49 0.55 0.55 1.92 8.92 8.39 4.21 9.5 4.59 2.81 6.15 5.44 7.14 8.67 9.21 6.07 8.49 7.74 8.79 0 10.3 10.9 9.28 9.78 10.8 0 7.13 0.94 9.8 7.39 11.2 7.9 6.25 4.51 6.33 3.7 7.28 9.3 7.16 12.2 4.87 7.89 7.5 1.92 7.47 7.07 4.87 8.75 8.78 7.47 7.45 9.24 11.3 2.23 3.65 9.22 3.54 2.23 10.3 8.36 5.84 6.67 5.33 8.04 0.55 7.84 6.43 0.94 6.71 8 5.81 6.63 5.44 1.92 1.73 9.27 5.34 3.89 12.1 9.56 9.09 13.6 3.07 9.84 8.34 12.5 4.62 13.2 7.02 11.2 7.2 2.99 10.4 8.23 9.33 8.86 10.8 8.4 11.2 7.95 0.55 5.12 12.4 8.12 7.25 0.55 8.81 10.6 9.99 8.13 8.11 10.6 11.1 13.2 7.22 5.08 10.8 1.51 9.12 10.2 4.98 7.08 8.95 10.2 10.2 8.73 9.78 1.51 5.06 7.67 11.1 7.99 10.8 12 8.73 10.5 10.6 7.71 8.58 9.82 9.52 0 10.2 11.5 7.68 10.3 8.33 11.9 9.38 1.25 14.1 9.61 7.98 6.89 9.52 10.9 9.53 10.5 10.8 6.31 10.1 11.5 4.72 11.1 9.97 8.98 11.4 10 9.4 8.29 10.3 8.88 10.7 9.88 9.05 7.78 6.62 7.44 12.1 6.67 8.58 11.1 7.97 10 10.6 10.5 11.1 10.7 9.11 4.48 9.99 9.14 8.22 8.21 7.67 10.6 10.1 9.06 10.8 8.28 10 10.6 12.2 9.69 7.83 8.11 9.02 11 10.8 8.68 9.9 10.9 12.9 9.88 8.28 12.2 6.76 9.13 8.45 6.96 8.45 10.4 8.24 9.1 10.4 9.32 12.4 8.51 8.82 2.9 5.86 9.97 12.6 7.44 11.6 8.02 9.07 9.97 8.52 8 8.92 8.45 9.9 13.5 9.28 8.99 3.75 10.7 13 9.84 10.7 11.9 10.5 10.1 7.74 2.17 8.83 2.81 6.24 0.55 11.9 5.46 10.5 8.71 8 0.94 5.4 6.43 8.12 0.94 7.12 7.11 6.01 7.03 8.26 11.5 10.2 8.18 1.51 8.91 7.75 10.9 3.07 1.92 0.55 1.54 10.1 8.25 6.07 3.94 9.32 10 8.11 9.02 9.2 8.48 10.7 8.27 5.67 9.58 11 10.1 11.5 9 10.1 9.1 8.32 5.6 8.54 11.7 9.01 5.52 7.53 3.54 7.17 1.51 7.1 8.09 6.31 5.06 9.57 10.4 10.3 7.12 1.73 7.6 8.12 5.23 8.32 7.02 9.13 5 3.15 6.58 4.51 9.37 7.83 9 10.1 5.38 9.92 9.22 4.48 7.37 9.22 9.04 6.94 9.75 10.3 10.3 6.26 10.4 4.02 8.81 7.96 4.98 9.22 6.34 8.49 9.15 9.72 9.03 3.48 7.37 8.62 8.34 9.46 11.1 8.52 0.94 8.21 9.33 9.48 8.91 10.2 6.69 6.15 9.94 8.45 9.33 9.4 8.61 8.29 7.05 7.98 5.38 8.4 8.58 9.68 9.07 7.51 10.1 7.34 11.9 9.76 10.2 6.92 9.27 9 10.3 10.3 11.7 10.4 10.6 0.94 7.76 10.5 6.09 9.74 8.44 6.73 5.49 7.93 7.41 7.49 10.1 8.02 6.26 5.53 2.71 6.33 6.4 7.72 8.42 0.55 10 2.08 9.42 9.28 8 9 10.3 6.77 8.83 4.21 9.23 8.67 11.5 10.6 8.18 9.5 2.08 8.58 3.65 8.24 9.44 8 7.05 6.36 0 6.47 14 7.3 2.9 7.48 12.6 9.26 11.8 8.75 7.87 8.69 9.45 4.87 8.92 0.55 9.51 3.54 6.11 7.26 6.76 9.97 6.99 9.31 6.69 5.59 2.49 6.99 7.28 3.75 9.37 2.37 2.99 6.99 4.8 3.42 7.9 8.45 6.47 7.08 9.08 8.63 8.15 3.94 9.83 5.17 3.6 10.3 7.59 2.71 6.85 2.71 5.08 7.86 4.56 8.59 7.43 1.73 9.9 11.9 0 3.65 7.44 0.55 8.29 1.51 6.38 9.28 3.42 1.25 8.95 8.69 7.67 10.9 9.19 8.2 9 8.83 10.1 10.4 9.89 9.17 6.08 8.94 9.27 7.14 1.92 9.49 6.57 10.6 10 9.46 4.62 10.2 10.2 10.5 4.59 6.99 10.7 7.12 6.79 9.04 10.9 10.9 5.88 6.1 1.73 8.68 8.26 8.93 6.79 7.92 8.24 10.6 8.54 0 7.65 2.23 4.02 6.8 7.68 7.57 5.26 10.4 0 9.89 2.6 4.48 10.2 9.38 0 7.81 7.35 2.51 9.72 0 3.42 10.4 2.6 10.6 4.51 8.23 6.67 9.09 10.2 5.94 8.97 9.21 7.87 7.46 9.47 4.72 3.15 10.3 8.46 10.2 5.71 8.39 4.56 7.6 5.5 10.1 8.59 0 7.43 2.23 9.79 7.22 0 6.96 10.6 6.28 8.24 7.15 3.6 7.53 11.1 9.33 6.9 4.32 9.62 8.53 8.04 10 8.5 8.3 9.59 10.3 9.78 9.69 6.02 0.55 0 2.99 5.87 6.7 6.16 6.85 0.94 5.78 1.73 0 7.72 11.7 12.7 1.73 5.33 0 6.99 7.66 0 8.08 4.99 5.55 4.1 4.45 8.36 10.6 7.42 10.7 9.43 4.42 9.64 9.25 10.7 9.78 7.59 10.1 9.82 11.1 9.58 7.07 8.1 4.84 8.46 7.33 7.8 10.2 4.45 9.11 10.6 5.21 6.25 9.23 8.34 10.4 9.91 9.35 9.43 8.49 8.18 9.55 7.93 6.22 10 9.69 9.18 10.1 6.85 8.96 9.51 8.48 2.37 12.9 8.27 9.61 9.91 11 7.73 8.91 8.69 10.5 5.1 10.1 10.4 7.02 7.77 0 9.64 6.96 8.93 1.92 9.25 7.73 4.42 8.15 7.55 10 11.6 9.9 0.94 12 7.97 2.49 7.98 10.5 10.1 5.25 8.55 9.99 8.62 5.85 10.6 10.8 5.71 6.53 2.23 6.33 5.53 6.69 5.59 5.68 7.83 9.37 2.9 9.92 10.4 6.78 7.43 5.16 11.7 4.8 3.94 10.8 8.61 2.08 6.43 7.41 11.1 7.07 11.9 11.8 9.73 2.49 8.45 7.96 8.58 6.66 6.47 10.9 10.6 12.9 8.01 9.01 7.76 11.7 4.28 8.73 6.2 7.91 9.15 6.25 5.95 10 7.56 10.9 0 7.2 3.15 7.12 5.41 8.28 8.29 7.15 10 6.07 6.04 5.91 7.95 5.85 10.7 9.58 8.61 10.2 10.3 8 8.13 10.7 6.66 11.6 10.5 10.1 12.3 10.6 12.9 7.76 9.04 7.58 8.04 5.98 6.94 8.46 10.2 10.9 10.5 10.7 2.23 9.34 10.9 7.8 9.08 7.61 10.2 3.76 5.12 7.4 2.05 11.4 8.46 9.74 8.87 2.37 2.49 11.1 13.6 6.52 5.19 4.32 10.6 7.38 6.51 8.27 5.92 12.3 11.9 15.1 2.08 8.27 0 7.37 0 11.5 10.4 9.79 5.5 2.99 10.9 12.3 8.67 8.9 0.94 9.8 2.99 4.45 12.6 4.87 9.9 9.09 5.58 10.6 9.64 5.38 8.01 8.19 8.35 10.3 6.69 10.7 9.25 10.3 6.71 7.71 10.3 9.82 10.8 9.39 8.57 11.4 2.08 8.27 6.67 10.3 8.04 6.28 9.63 9.23 6.17 8.46 3.07 7.52 10.1 10.9 10.1 12.2 9.28 9.12 9.03 9.54 10.8 9.7 1.73 1.73 6.99 10.6 11.5 11 4.44 10.9 7.2 7.96 10.8 3.7 9.95 10.1 11.2 11 11.8 8.25 7.46 6.12 8.15 0 8.32 7.4 0.55 11.8 8.91 9.88 9.42 6.94 8.78 2.81 4.59 1.73 9.37 8.8 10.2 6.02 7.47 8.34 6.56 3.89 10.3 4.25 8.55 5.43 10.2 11.2 4.51 10.9 9.22 13 10.9 9.3 9.4 11.8 10.6 10.3 0.45 10.8 9.45 2.75 10.7 9.69 9.37 9.44 3.89 7.01 1.51 9.94 10.6 5.16 10 9.3 9.55 11.2 12.7 10.1 9.47 4.8 13.5 9.19 0 10.7 10.3 10.2 10.1 13.5 9.41 11 11.1 12.4 11.5 11.3 11.4 7.28 13.9 11.5 7.21 11.6 8.5 10.7 10.6 0 8.24 0.94 10.6 11.9 7.99 4.35 9.42 2.08 9.65 10.4 11.9 10.1 2.23 12.4 8.81 10.2 6.08 11 8.99 8.86 9.41 12.8 4.21 9.37 8.08 9.83 7.03 5.53 6.79 1.25 10.5 0 1.73 0.94 9.4 2.49 9.01 4.42 3.65 9.35 9.62 0.55 6.41 1.51 4.84 0 0 8.3 3.85 9.81 13.4 11.6 8.95 6.39 2.81 3.22 3.7 9.97 5.55 0 9.4 9.71 9.38 6.89 6.67 5.49 7.03 9.7 6.36 8.08 3.15 7.82 8.57 9.49 7.67 10.4 0.94 4.75 1.92 1.92 2.23 0 8.84 10.9 7.19 7.39 7.68 8.05 10.1 4.72 8.62 0.55 3.48 1.51 0.55 10.3 6.98 4.91 9.71 7.41 9.8 9.87 9.73 1.25 5.12 11.2 10.4 8.44 8.59 0 3.65 8.54 10.7 10.1 1.73 8.87 7.91 9.48 7.43 3.85 7.24 0.94 2.99 12.1 0 6.97 12.3 9.52 0.55 3.42 9.02 8.82 5.77 10.4 9.67 0.55 1.73 7.89 10 9.12 7.61 9.57 9.25 5.49 10.6 8.16 10.5 6.4 2.49 0.94 9.64 2.23 7.29 9.38 8.08 10.8 4.91 9.95 8.79 2.08 5.43 8.96 11.2 9.49 9.56 2.08 4.35 4.25 7.52 0.94 3.22 9.86 1.73 5.4 9.74 6.75 5.08 10.2 11.3 4.75 9.94 3.48 4.38 10.6 2.71 9.19 0 6.88 0 8.7 0 3.6 0 2.81 7.02 10 8.34 6.03 8.08 9.91 6.3 9.4 9.2 5.53 11.2 9.37 8.58 8.38 6.64 1.73 1.51 7.79 1.25 9.17 10.5 7.7 10.3 5.14 10.6 11.3 7.51 7.54 8.14 5.23 5.67 1.73 0 10.7 9.82 9.38 10.2 10.8 8.35 8.56 10 10.4 2.23 7.39 7.48 9.15 8 4.06 8.16 10.9 9.77 0.55 8.66 10.6 8.9 6.31 7.92 15 3.07 3.8 0 2.6 5.32 3.89 9.39 10.6 8.89 9.11 3.8 6.65 6.77 11.3 2.9 8.58 5.98 2.99 4.38 7.96 6.66 7.04 7.46 8.81 9.4 8.66 9.36 8.28 8.07 7.99 6.52 9.58 7.78 7.45 5.16 5.82 3.42 8.92 9.84 5.77 10.3 9.49 9.09 6.33 8.02 8.28 10.8 11 7.88 10.1 9.54 7.28 8.22 8.63 6.3 7.21 6.99 8.59 7.54 7.92 9.72 10.2 2.9 2.08 6.25 9.84 9.67 10 1.51 9.3 6.85 3.07 7.85 7.94 2.71 9.2 2.49 8.58 4.98 8.43 6.36 6.91 3.85 1.25 8.2 11.8 12 9 7.01 2.08 8.71 10.5 9.3 10.2 7.96 10.7 0 10.8 7.31 3.07 4.65 8.06 8.38 10.2 0 9.3 8.59 9.06 10.8 9.14 4.65 9.73 10.3 7.33 9.31 9.29 9.9 8.76 10.8 9.09 8.85 9.48 8.08 7.99 8.5 3.65 9.94 12.1 9.63 4.7 9.36 10.7 9.59 9.64 8.46 9.48 5.92 8.78 9.81 8.57 11.6 8.49 8.43 8.96 9.98 11 8.87 11.7 1.73 8.83 9.5 10 9.93 8.12 6.52 9.45 0 11.1 10.4 7.76 11.3 7.94 8.41 10.6 9.79 9.18 10.2 9.33 11.6 10.7 10.6 1.73 8.68 7.05 8.08 9.77 0.94 8.87 9.65 10.9 10.6 10.8 4.96 8.99 8.34 9.63 1.73 4.02 11.2 9.9 8.49 8.38 9.26 8.75 0 9.48 3.6 9.41 10.8 10.1 7.06 7.1 6.65 5.75 7.14 9.35 3.54 10.5 10.2 3.29 10.1 7.27 5.82 9.28 9.38 6.33 6.52 5.73 2.81 9.02 6.37 9.15 8.15 0.55 1.92 4.1 4.91 10.2 7.32 10.1 8 2.08 6.32 10.7 8.86 10.1 8.76 10.6 6.99 8.72 4.7 10.1 7.96 10 7.3 8.75 8.01 7.6 9.18 9.13 6.63 10.2 3.85 8.66 10.3 6.63 9.35 9.15 10.3 8.71 8.66 9.05 0.55 10.9 8.57 9.38 1.51 8.65 5.83 3.22 11.8 10.6 8.81 4.02 5.72 1.51 5.85 7.51 6.52 3.65 10.6 9.36 9.39 1.51 0 6.64 7.67 9.66 5.63 8.39 9.89 10.2 3.89 0 5.64 0 10.4 8.84 7.57 8.57 9.83 5.88 9.21 0.55 9.37 5.98 5.23 6.25 9.96 10.9 2.6 3.65 7.33 6.29 5.52 3.15 0 8.87 4.67 0 4.54 8.77 9.25 8.43 7.79 0.94 11.7 9.15 9.09 6.08 10.9 8.32 10.4 9.83 6.57 1.73 0.55 9.82 8.2 5.78 8.88 8.37 8.74 5.66 5.49 8.72 6.5 4.62 5.97 8.5 10.3 14.3 7.65 8.95 7.03 6.4 12.1 10.7 5.46 5.77 5.9 7.91 8.55 10.4 9.19 5.55 4.02 3.22 8.45 11.5 9.31 7.59 8.77 12.4 2.81 7.77 4.1 3.15 0.94 10.2 10.7 6.57 7.17 0.94 6.99 9.49 4.28 5.67 5.27 8.1 7.13 8.76 10.5 8 8.63 9.39 7.5 8.53 3.94 0 7.65 5.97 11.4 9.97 8.69 7.76 8.76 8.7 11.1 9.65 8.46 8.54 0.55 9.38 10.2 4.91 9.31 8.37 8.89 7.6 8.32 8.08 6.36 9.81 8.54 8.28 7.35 10.5 11.8 7.38 8.35 2.23 7.96 5.64 7.6 6.94 10.2 8.45 9.72 7.24 6.55 9.18 9.91 6.94 9.06 10.5 7.44 4.98 7.35 8.12 8.18 9.47 9.32 10.6 10.1 6.91 10.4 6.32 7.58 8.21 2.99 7.93 9.91 5.94 8.49 8.86 10.2 11.5 6.04 2.23 10.8 8.61 8.61 11.4 6.47 9.17 0.55 6.73 9.85 8.56 9.67 3.7 6.94 6.64 10.2 8.86 10.5 6.93 3.48 10.9 8.04 2.08 6.79 12.2 8.68 10.3 9.63 3.38 0 10.8 10.1 10.7 7.32 8.88 4.98 5.63 8.92 1.51 4.75 8.37 8.09 10.8 6.03 7.53 10.4 10.2 8.81 8 8.62 8.97 9.5 8.56 7.83 6.06 8.46 10.6 8.34 6.98 0 8.06 3.29 0 10.3 9.27 12.9 10.7 0 8.63 2.08 11.1 10.2 6.88 7.55 6.03 1.51 7.9 1.73 4.62 8.64 12.9 7.39 7.57 0 7.71 1.73 3.22 10.8 4.35 9.29 4.51 6.36 10.8 8.39 7.59 8.4 9.35 8.61 3.42 9.94 6.42 4.87 11.2 8.89 9.55 10.7 8.79 9.93 8.46 9.84 3.98 7.53 9.18 0 6 7.53 3.07 15.2 10.6 10 8.79 10.4 7.69 10.9 1.25 8.17 5.46 10.1 9.61 9.35 4.38 4.59 12.5 8.25 5.19 7.28 9.73 8.23 7.84 7.76 6.31 8.66 9.65 6.23 4.59 9.84 6.44 1.25 4.28 8.34 5.06 4.96 3.15 8.92 5.96 2.23 12.8 7.73 6.92 4.54 2.37 10.2 8.62 9.27 10.7 9.3 4.67 11.9 12.8 9.83 11.1 9.36 9.72 11.3 10.6 9.35 11 9.18 9.06 3.92 6.16 9.97 8.21 11.1 7.14 4.02 5.23 10.4 8.65 8.72 6.46 11.8 5.32 3.94 10.5 9.31 11.7 8.37 8.18 9.4 0 4.75 9.23 3.7 10.4 9.89 11.5 12.1 8.74 6 6.75 6.95 9.44 0 9.7 10.2 11 9.48 10.9 6.04 10.2 0.55 7.46 3.42 12.1 8.51 6.37 9.41 9 9.98 9.7 8.26 5.26 13.2 9.65 10.6 8.11 10.9 13 6.17 12.2 11.5 12 12.5 12.9 10.8 8.13 0.55 9.44 12.8 7.91 10.6 6.69 9.65 10.9 7.65 9.63 12.1 11.8 7.53 6.64 10 6.76 10.7 9.29 6.58 11 3.04 11.8 10.3 10.9 9.91 8.26 2.23 0 11.8 9.5 7.95 10.1 9.19 8.82 11.2 13 11.2 9 11.6 10.2 10.5 6.33 7.6 10.3 12.9 9.02 8.32 12.3 4.98 10.4 7.78 10.6 2.37 8.64 8.74 14.7 8.8 5.99 2.23 0.55 9.93 12.7 9.33 15.6 9.22 11.7 11.4 11.4 11.3 8.54 7.2 10.2 9.07 8.54 12.3 9.91 7.27 6.37 5.5 10.6 9.93 2.71 3.54 5 8.23 5.49 7.92 5.14 10.4 6.4 8.54 9.79 0.94 6.14 8.48 11.1 8.28 11.5 8.34 3.7 4.98 0.94 3.54 9.84 9.98 3.07 12.6 9.68 3.15 10.8 8.27 4.02 5.75 3.54 12.3 1.25 11.5 8.92 8.35 7.81 7.14 4.98 11.5 9.97 8.44 10.4 9.48 4.38 5.92 4.32 11.1 1.73 8.38 8.93 9.66 7.91 5.33 10.9 7.74 6.22 9.27 4.93 0 10.9 0.55 9.83 8.63 5.66 8.95 8.48 7.05 7.02 10.9 5.76 10.2 9.82 10.3 5.8 5.95 10.1 13.3 10.3 9.7 10.6 9.62 9.84 9.68 10.2 10.6 10.6 8.47 9.93 9.58 9.17 11.4 12.2 10.7 11.8 9.29 8.41 9.45 0.55 9.49 0.55 11.9 7.84 10.7 10.4 6.5 2.23 11.3 6.3 1.73 6 8.95 3.7 11.2 9.35 7.08 9.56 9.7 9.13 0 3.42 1.77 10.7 11.2 10.7 9.22 8.82 7.5 5.63 8.12 8.57 8.63 6.55 11.9 8.48 10.9 1.73 2.49 6.93 12.1 1.92 0.94 10.6 7.86 9.88 5.41 1.92 9.24 8.02 7.45 0.94 10.1 8.22 8.85 7 2.49 3.29 2.08 3.07 9.04 8.21 9.46 8.62 10.1 6.85 6.38 4.65 10.8 7.93 7.73 3.65 2.53 2.71 0 5.04 7.57 2.23 7.8 11.9 7.28 10.4 9.69 9.81 12.3 5.71 0 9.08 9.01 11.1 7.67 9.29 9.9 9.96 7.41 6.17 6.37 0 7.08 8.55 9.24 11.6 8.76 3.94 6.26 9.3 6.01 7.53 8.33 2.08 10.7 11 10.1 0 11 5.4 7.27 6.49 6.18 8.11 8.53 11.3 9.86 8.66 9.79 8.68 8.9 10 8.81 5.85 3.94 11.1 5.14 2.6 6.21 0 9.93 9.95 10.2 0 6.97 4.84 4.87 2.99 6.27 10.8 9.83 6.82 9.37 10.2 10.4 4.21 4.7 7.57 8.09 6.42 0.94 7.07 7.76 3.22 5.83 9.4 10.2 8.92 8.09 8.79 2.71 11.4 11 9.02 10.4 8.37 9.2 7.06 8.77 9.74 7.56 10.3 13.3 8.89 8.38 8.05 6.73 11.4 0 8.12 11.1 7.25 8.04 5.84 10.5 7.7 9.94 10.8 7.4 9.92 8.19 9.98 9.54 10.9 8.87 6.53 8.98 9.24 6.68 8.69 0 0 8.45 3.48 6.47 9.17 7.74 5.56 7.09 8.01 8.52 9.4 12 0.55 8.34 4.25 6.56 9.11 1.73 8.85 5.66 10.5 10.1 6.2 8.75 0 1.92 2.99 10.8 4.89 8.95 12.1 3.54 8.38 9.47 6.5 6.6 9.42 9.98 6.35 12.2 10.7 4.42 9.79 5.72 10.6 0.94 10.6 11.7 10.5 9.39 9.69 6.33 7.67 10.1 9.26 0.55 9.73 4.48 8.03 5.25 8.56 7.03 9.85 9.85 8.96 9.08 9.79 4.18 10.9 2.81 7.25 9.01 8.79 7.89 5.89 3.07 9.38 11 10.6 9.67 2.9 3.36 4.02 7.26 11.9 5.91 7.75 7.71 7.49 5.64 0 4.77 3.22 8.46 2.49 5.36 11.9 13.2 6.42 8.81 9.5 2.71 10.1 9.92 8.4 11.5 10.4 8.44 1.25 11.5 12.1 11.7 10.2 7.6 9.26 2.23 10.5 8.33 9.29 8.26 0.55 4.96 9.49 8.89 9.35 8.24 11.2 9.73 3.85 9.26 8.95 7.61 9.84 5.06 10.2 7.58 9.34 9.25 12.9 6.57 9.59 9.56 4.25 7.86 11.4 8.52 8.09 8.67 8.63 8.15 9.4 2.81 8.1 2.9 10.7 10.2 8.69 9.28 11.1 10.8 2.08 9.17 9.01 8.97 8.62 4.32 9.58 5.53 8.36 0 8.75 7.72 8.99 7.18 2.37 8.96 7.4 11.2 15.7 7.45 10.2 9.86 8.37 6.25 3.8 9.62 6.12 5.84 0 6.6 10 8.43 4.28 3.07 6.69 1.25 9.78 5.75 8.07 10.5 9.72 7.65 5.99 1.25 9.69 6.71 8.23 7.81 10.7 7.04 2.9 8.47 8.36 9.43 7.39 7.14 8.67 11.1 5.36 7.28 10.3 2.23 0 7.94 8.51 0 9.12 1.92 9.38 8.57 7.07 2.08 5.8 7.97 10.3 4.59 9.62 3.98 6.25 8.35 9.43 9.5 7.95 6.57 7.9 10.5 9.96 1.92 6.68 6.52 9.51 7.64 10.8 3.65 9.37 5.9 10.9 8.14 9.66 3.54 10.3 9.63 11.5 9.09 12.1 9.44 10.2 10.9 6.47 4.1 0 7.06 8.63 4.02 9.13 5.93 0.94 6.12 4.48 0 5.19 0 0.55 8.46 11.5 0.55 10.3 9.82 6.85 11.7 9.44 3.45 7.72 7.2 5.97 13.1 9.15 8.52 1.92 8.3 11.2 8.86 8.43 9.01 8.23 0.55 7.17 9.32 5.5 7.22 12.3 6.75 0 12.8 8.8 5.92 8.22 8.9 3.65 9.96 9.13 8.29 5.25 10.1 7.5 3.71 7.46 7.72 8.12 10.6 10.4 11.7 8.24 8.24 9.96 8.79 7.74 10.7 9.9 10.7 10.3 6.59 2.08 10.7 10.8 10.1 9.27 11.5 9.39 10.8 11.9 11.1 9.13 3.6 11.7 13.5 8.57 3.22 9.13 8.98 3.29 8.99 8.82 9.9 12.2 11.3 1.92 8.27 8.79 8.45 6.26 8.15 2.37 9.57 11.8 7 4.21 9.34 8.47 6.47 5.04 8.26 0 0.94 7.61 7.74 9.01 8.42 7.56 1.92 5.43 11.7 10.3 2.08 9.13 8.74 9.82 8.78 9.1 5.25 5.19 7.18 10.1 7.94 10.6 9.88 10.4 8.17 10.3 11.3 4.38 10.5 9.38 10 11.2 7.11 4.18 8.19 4.96 9.39 9.08 6.98 11.1 10.3 8.71 10.1 7.42 9.91 11.7 9.46 0.94 11.9 10.1 10.2 6.33 0.94 10.4 13.8 0 10.1 8.12 10.5 0.94 9.42 6.37 5.71 0.94 6.68 5.93 5.25 8.23 9.54 11.4 9.53 3.22 12.7 9.02 9.17 7.08 5.04 7.63 9.65 1.51 4.66 0 7.05 7.83 10.2 13.6 0.94 10.3 8.11 9.32 8.09 10.7 11.6 0 4.67 10.9 2.81 9.22 11.5 5.85 0 8.54 0 10.8 4.65 11.6 4.48 7.13 8.32 11.9 0 6.93 3.75 9.67 7.58 4.54 10.1 10.9 6.66 10.3 4.08 4.45 10.4 11.5 2.99 10.2 7.79 6.84 7.83 10.9 8.49 9.33 9.41 2.6 9.62 9.14 5.17 10.8 9.21 10.8 8.67 10.3 6.59 8.9 5.71 8.53 3.07 6.66 5.5 10.3 10.9 3.15 11.8 8.92 8.17 3.85 8.88 8.07 12.1 9.52 10.2 8.08 9 2.6 5.17 3.29 4.7 6.47 0 8.01 2.37 7.84 8.28 8.9 7.86 8.2 13.7 11 10.2 10.2 5.75 7.79 8.08 6.14 9.35 10.1 8.22 5.72 7.05 0 8.2 9.24 5.19 9 7.39 2.49 8.48 8.14 10.9 3.7 9.26 9.74 6.09 4.02 9.37 6.84 5.94 6.23 6.36 8.77 5.47 4.38 7.75 8.87 9.65 12.1 8.98 5.4 4.54 2.6 0.55 10.1 11.2 11.2 6.4 6.68 1.73 4.54 8.86 6.59 10.3 9.97 1.73 4.67 12 8.84 7.7 8.97 5.8 10.9 8.71 8.61 12.1 9.73 11.2 9.78 12.6 9.79 9.39 5.44 10.8 7.15 9.99 4.42 8.72 9.75 9.71 11.1 7.1 10.2 9.49 1.25 10.8 8.92 13.6 10.8 10.5 12.1 10.2 9.64 9.6 12.6 10.7 9.29 10.2 7.15 7.46 10.9 10.6 10.2 6.13 10.3 5.96 9.82 8.76 5.88 9.64 10.7 10.5 10 9.11 10.1 8.1 11.7 7.62 5.36 10.1 12.9 9.74 2.08 6.02 12 6.76 4.8 12.6 10.8 12.2 9.68 9.3 9.35 6.06 11.9 9.59 9.37 11.1 11.8 6.41 11 8.21 8.83 10.2 3.8 7 5.26 9.62 3.15 8.89 11 6.26 11.2 13.6 9.32 6.18 8.61 9.76 9.26 11.6 10.1 7.97 7.87 9.5 9.5 7.28 7.06 9.07 8.63 9.6 8.29 9.37 8.86 7.72 9.57 9.83 5.43 9.65 12.5 14.2 6.16 7.37 10.2 7.69 10.7 4.98 12.1 13.5 10.1 2.71 10.8 9.87 8.38 9.63 9.02 9.21 9.43 10.2 12.4 7.82 9.94 11.1 9.36 9.95 10 5.21 10.9 11.1 6.25 10.2 9.05 7.01 9.73 9.37 9.78 8.55 10.1 4.89 7.72 8.97 9.57 10.2 8.63 11.8 9.75 0 7.73 0 10.3 7.56 8.11 9.98 7.26 5.19 8.8 3.94 9.93 6.1 16.4 1.51 2.6 8.26 9.55 8.87 8.84 6.76 6.85 8.93 9.28 5.62 10.2 4.98 9.71 10.1 5.23 7.61 10.1 6.52 12.3 8.68 9.32 7.9 9.17 4.06 9.13 7.4 13.3 4.25 4.35 5.19 4.06 8.8 10.1 8.13 10.3 4.35 11.8 8.18 8.61 8.44 9.82 7.56 9.5 12.4 8.07 7.8 10.6 10.9 11.9 10.4 11.3 8.86 8.84 5.63 10.8 8.7 11.5 7.66 11.6 10.8 6.93 9.35 11 9.23 10.2 10.9 9.71 10.3 9.69 6.15 10.3 11.7 7.52 9.33 12.5 11.9 10 9.68 9.98 0 11.2 9.09 9.73 10.6 8.56 9.63 8.15 12.4 8.91 7.44 9.97 9.25 6.63 8.66 9.25 9.57 4.65 8.62 2.08 10.2 9.78 7.39 2.83 9.46 3.42 8.24 9.7 6.26 10.6 4.67 8.11 9.76 6.64 7.14 7.25 9.21 3.54 6.94 7.71 7.65 7.98 7.93 7.06 7.3 9.15 8.58 6.66 6.91 9.32 10.9 5.56 6.75 6.04 9.11 11.6 9.9 8.7 9.03 7.29 8.95 8.73 9.62 10.6 11 10.1 9.63 7.14 9.43 8.35 10.7 8.42 10.5 6.79 11 8.49 10.6 2.37 8.11 10.5 8.57 8.59 9.6 11.4 2.37 9.95 6.21 8.24 11.3 10.9 9.29 9.68 7.34 9.98 9.75 9.69 11.2 7.49 7 3.89 10.1 6.85 5.66 10.4 11.3 10.6 6.57 11.8 9.18 9.18 9.09 8.93 9.83 12 7.08 10.5 8.35 8.79 10.1 2.23 10.9 6.69 7.41 8.08 11.9 11.7 1.92 6.77 5.36 9.36 6.21 7.9 12.4 8.51 8.43 9.22 0.94 4.82 5.33 8.1 9.57 9.82 8.09 12.8 8.76 1.92 1.92 10.9 9.33 9.67 10.9 3.68 9.27 10.2 8.52 12.2 10.5 12.4 8.06 9.19 7.94 9.56 11.4 8.64 11.7 12.6 10 10.9 4.98 11.2 7.15 11.2
-TCGA-QR-A70X-01 7.6 6.32 10.7 9.66 6.43 8.61 3.08 8.58 4.45 4.61 6.23 8.36 8.42 4.61 3.78 9.29 9.35 10.3 7.92 8.78 9.75 5.09 9.71 2.88 9.16 9.48 2.12 10.2 5.67 8.98 6.78 6.61 8.8 1.05 1.05 1.05 1.05 4.41 4.89 6.58 5.76 5.3 2.88 1.05 4.99 4.67 0 4.94 11.6 7.99 3.08 7.82 6.28 7.88 5.76 2.07 7.06 1.05 6.26 6.5 9.15 4.94 7.37 8.54 2.39 2.39 9.17 8.71 9.87 5.29 5.7 7.28 2.39 2.39 7.78 4.41 5.23 4.25 4.89 2.07 6.11 2.39 3.05 8.58 4.84 0 5.76 2.07 4.08 2.66 8.89 4.99 5.95 6.28 6.7 3.54 2.07 5.92 5.18 0 4.41 4.84 2.39 4.83 5.77 4.17 6.37 8.12 8.12 4.73 2.88 0 4.69 4.94 5.42 2.66 1.68 1.65 7.15 4.94 6.56 5.22 1.65 3.67 2.07 6.66 2.07 1.05 3.25 13 2.19 3.89 3.08 5.67 4.73 1.65 4.55 1.05 3.67 8.63 6.4 11.5 1.05 4.08 6.43 11.5 0 11.1 0 1.05 5.83 1.05 6.39 9.36 11.5 2.66 3.78 0 11.3 4.25 8.84 5.9 7.43 1.05 9.46 7.38 6.82 2.88 4.89 6.97 10.2 10.5 3.67 4.79 5.3 6.04 5.82 6.87 6.51 6.34 4.67 8.96 5.76 5.67 6.35 4.99 0 0 9.64 7.12 8.79 10.3 4.41 11.9 6.95 5.62 6.7 8.1 9.62 8.85 5.58 7.94 8.29 11.1 10.8 2.66 7.19 10.4 10.6 9.69 6.93 0 11.2 9.98 10.4 10.7 9.58 11.3 9.15 9.64 7.15 11.5 10.5 9.97 10.1 8.55 5.92 8.69 8.61 12.5 9.23 4.99 9.73 11.7 9.27 7.25 10.8 5.44 10.2 4.67 8.95 8.07 10.7 11.6 11.7 10.3 11.3 12 2.88 13.5 7.09 4.73 6.55 10.1 9.42 3.08 10.3 10.8 1.65 11.2 1.05 8.95 4.73 10.5 8.25 10.8 8.37 11 12.1 10.1 7.32 4.94 9.32 9.12 11.3 10.6 3.89 11.9 10.2 11.4 13 10.5 10 9.37 10.2 12 10.2 8.6 10.9 10.4 4.99 3.99 11.6 5.92 11.1 9.69 6.67 11.6 9.53 8.36 2.07 12.8 9.48 9.17 9.47 9.88 2.66 8.15 6.26 8.69 13.7 7.13 1.65 8.35 5.92 12.2 10.4 8.71 7.73 8.04 10.6 10.9 8.81 10.9 11.5 9.47 10.8 9.25 9.59 9.98 8.88 8.21 10.3 6.15 10.1 8.7 9.24 8.46 6.66 8.77 11 8.42 9.54 8.78 8.49 14.4 9.47 9.06 12.8 9.84 10.3 4.35 9.66 6.63 5.09 8.82 7.89 10.8 2.88 6.02 5.73 8.18 9.78 8.8 8.38 7.37 10.9 2.88 8.17 6.66 7.21 10.7 10.5 10.7 11 5.55 8.52 10.7 9.91 8.76 8.69 9.72 9.13 9.53 11.4 9.74 7.3 11.1 10.3 9.73 4.33 7.98 11.9 8.61 4.25 11.7 11.1 5.22 9.86 14.4 10 9.61 11.2 8.86 9.68 11.6 7.87 10.8 9.24 11.1 6.13 9.94 10.4 10.8 8.91 12.4 8.85 12.1 7.95 5.95 10.8 8.03 12.4 10.5 4.41 11 9.52 10.7 10.6 10.2 10 13.7 7.45 9.69 5.73 6.6 9.59 7.82 8.46 8.85 11.1 13.2 11.1 4.94 10.6 8.23 9.61 8.88 0 9.36 4.53 9.33 3.89 10.1 8.85 7.88 6.35 11.6 0 3.99 8.58 9.97 11.1 3.25 9.09 10.2 6.93 7.46 7.43 9.04 5.42 9.7 7.67 8.13 8.85 9.97 11.2 10.1 10.9 2.39 13.5 10.8 4.04 8.09 12.7 11.1 12 10.1 7.69 6.02 7.05 9.49 8.52 8.81 12.5 8.21 7.8 10.6 11.1 11.7 12.5 13.5 9.86 7.97 8.18 10.7 10.2 4.54 11 7.28 3.4 8.71 1.65 12.7 8.17 10.3 8.62 8.04 8.62 8.93 5.55 10.6 9.38 11.8 10.6 10.5 9.02 9.69 10.6 7.84 11.4 9.84 8.95 7.63 8.88 9.68 8.68 10.8 9.13 10.8 11.3 9.77 9.1 10.9 9.9 0 9.46 6.18 10.4 8.76 9.89 12.5 9.31 11.2 8.21 7.96 8.56 5.48 10.9 8.7 7.81 10.7 10.4 3.67 9.32 9.95 10.2 8.24 10.5 11.1 7.22 11.9 10.2 9.42 11.1 10.9 10.8 10 10.4 0 11.5 10.3 9.82 10.5 11.7 11 13.4 11.3 8.14 9.68 10.1 6.2 0 7.69 10.5 9.5 8.98 10.3 10 11.3 8.68 10.1 9.18 10.8 2.88 8.05 10.8 11.6 7.71 13.3 9.91 10.4 10.1 13.2 10.4 10.9 10.7 11.8 1.05 10.2 9.35 8.77 7.81 11.6 5.76 4.08 9.16 10.9 11.2 10.8 10.2 9.71 10.7 10.2 12.6 0 11.2 9.1 11.1 8.01 9.18 7.84 10.9 9.4 5.22 8.58 8.62 0 3.89 10.6 9.68 3.08 12.3 1.65 10.1 8.84 10.4 10.7 11.7 11.1 10.6 11.6 6.26 10.2 3.4 10.4 11.3 9.17 11.6 9.17 9.23 11.5 10.7 9.15 8.79 11.7 1.65 8.36 11.5 8.51 9.71 9.86 6.3 9.72 10.8 9.76 11.8 8.98 5.58 11.7 8.46 8.84 10.5 8.49 11.1 9 12.6 5.17 6.28 8.91 6.67 8.97 10.7 6.77 11.5 13.1 8.53 5.76 8.47 12.3 6.37 8.59 5.76 7.8 1.05 7.56 10.7 9.46 3.99 6.35 8.92 6.37 10.7 10.6 13.1 11.5 10.8 11 10.1 9.25 2.88 0 5.44 9.88 2.39 7.67 8.46 7.47 11.7 10.4 10.6 4.48 6.67 5.13 10.9 10 10.2 1.05 11.3 11.1 5.44 3.08 4.94 11.9 11.8 4.79 7.36 9.45 7.08 9.09 9.52 7.6 8.95 8.47 13.6 4.08 9.24 11.8 11.2 10.7 11.9 10.6 11 6.35 5.55 4.58 10.7 4.79 5.22 3.78 8.79 8.72 9.88 10.2 2.88 8.07 7.65 3.25 5.61 9.37 9.85 7.49 6.43 10.6 8.47 1.05 9.6 11.2 8.52 9.71 10.2 10.5 10.3 11.2 10.3 8.43 9.13 12.2 9.64 6.69 9.22 7.55 6.61 5.87 11.8 7.75 9.32 5.9 5.9 7.81 10.1 6.76 9.02 4.48 11.9 8.54 2.39 0 8.24 8.24 11.7 10.8 9.26 8.02 7.88 13.8 8.46 9.27 9.23 4.08 10.5 8.66 10.3 2.39 7.18 2.88 10.8 7.79 9.44 10.8 6.86 7.52 3.78 10.4 12.6 8.54 5.76 5.41 6.32 8.36 10.3 10.5 10.4 10.3 7.27 4.17 9.33 0 10.1 0 11.9 8.12 9.57 8.5 1.65 11.5 7.21 7.94 10.3 8.86 1.05 10.7 8.81 12.8 9.36 12.5 9.44 10.4 9.3 12.2 9.54 8.9 10.4 10.7 9.15 4.99 10.2 0 11.6 9.88 11.9 0 10.3 11.1 11.8 10.9 12 8.56 6.53 11 9.63 11.3 2.39 12.9 1.65 11.9 3.4 9.75 9.23 6.28 0 8.89 12 11.8 9.48 10.1 10.8 11.9 9.53 11 11.1 10.1 9 11.2 13 11.7 12.1 11.4 12.7 14 11.6 8.5 7.7 9.41 9.08 10.6 12.8 12.9 9.24 10.1 11.2 7.08 9.61 11.2 7.29 10.4 10.3 7.22 10.4 10.3 10.6 11 5.58 2.88 11.9 4.67 10.2 7.5 9.92 10.7 7.42 4.67 5.51 10.5 2.04 6.41 8.4 8.81 5.61 12.2 6.8 9.46 10.4 9.54 7.38 9.99 10.1 9.07 10.6 1.6 3.52 1.65 2.9 9.33 9.7 5.82 12.7 4.67 7.32 3.84 9.15 12.9 8.74 8.91 0 8.93 10.8 9.29 11.3 10.2 10.9 7.7 11.2 9.22 10.8 9.78 7.38 2.07 8.07 5.97 9.29 11.2 8.69 9.72 11.7 10.5 9.13 8.4 10.6 3.4 9.91 10.7 11.7 8.58 10.6 10.5 9.14 8.35 7.61 9.06 4.33 6.73 8.87 10.4 8.84 11.5 6.09 8.62 8.94 7.43 5.44 9.29 6.43 10 9.35 6.98 10.9 11.4 10 9.6 9.73 3.08 8.9 5.61 10.8 7.77 9.95 19.4 7.2 3.4 9.18 7.86 10.4 2.39 9.32 9.36 19.2 11.8 11 10.3 3.67 9.96 6.11 7.8 2.39 6.53 9.56 10.6 5.87 7.78 6.09 9.36 8.4 8.09 7.82 3.67 9.98 11.5 6.83 9.35 8.79 9.92 11.7 11.8 5.87 3.08 9.81 11.4 6.22 4.61 10.9 7.55 9.78 7.77 4.54 12 9.35 9.79 6.22 10.2 9.39 0 11.9 13.1 9.02 9.13 7.63 9.27 9.82 9.37 10.9 10.2 8.34 6.32 9.23 6.26 10.1 10.2 6.67 11.4 11.7 7.34 7.73 7.58 2.07 5.99 8.49 10.3 3.54 13.2 9.71 0 8.84 10.1 11.3 11.4 5.99 8.99 8.9 9.6 5.61 7.32 11 7.35 6.66 6.18 9 9.74 6.91 9.53 4.61 10.2 7.32 8.22 9.81 8.3 10 1.65 3.26 8.44 10.8 7.99 9.41 10.5 9.69 8.23 10.5 11.1 11.6 7.63 7.21 5.41 9.18 7.04 9.67 8.57 7.97 5.18 0 6.34 7.54 11.6 6.76 9.37 8.89 8.55 10.6 9.86 8.76 8.22 5.48 4.67 9.24 7.83 10.5 10.1 8.46 6.43 9.42 8.73 8.46 10.5 10.4 10.6 8.84 7.27 8.66 8.99 8.35 9.5 8.86 4.41 11.3 5.48 9.56 6.11 6.97 10.7 11.6 3.67 11.6 7.48 6.37 10.6 5.22 4.94 9.52 9.17 4.17 11.2 12.3 8.8 7.95 7.1 10.1 11.1 11.4 9.86 7.01 10.2 5.51 3.89 10.8 8.83 2.07 11.1 11.5 11.3 10.4 10.8 9.52 13.1 11.4 3.1 8.2 8.28 7.18 11.3 10.7 8.97 10.8 9 12.4 7.11 8.74 1.65 12 7.96 5.61 14.2 9.91 6.48 9.24 9.28 7.02 3.89 9.07 10.3 8.51 4.79 0 10.5 1.65 7.22 6.5 7.09 7.56 2.39 4.62 11.3 8.84 11.2 6.22 10.2 8.03 8.23 7.6 8.85 5.05 6.11 1.05 1.05 7.38 2.66 7.38 6.87 9.76 12.9 6.76 0 9.31 9.16 4.25 11.5 8.61 9.86 8.67 8.89 5.7 10 7.98 7.88 8.71 6.04 8.84 2.88 10.3 11.2 11.8 9.07 6.22 6.46 6.55 12.1 1.65 9.03 7.67 4.03 5.44 9.11 8.64 8.44 8.88 10.3 10.1 6.5 7.81 10.1 5.73 7.26 4.61 7.05 5.51 5.04 10.3 9.32 9.02 10.9 11.3 10.2 10.1 3.08 10.8 8.81 8.6 3.78 0 9.61 10.4 7.52 6.66 1.05 7.98 7.03 12.6 8.88 11 7.4 4.08 1.05 8.54 8.18 10.8 13.3 6.88 2.88 3.54 8.25 9.45 6.69 6.02 6.04 8.5 8.81 11.9 4.61 8.62 9.85 5.97 3.4 2.07 2.07 8.28 0 9.73 9.63 9.12 3.67 8.85 4.89 2.66 5.58 9.33 8.42 8.19 5.3 10.1 6.7 7.76 8.48 13.1 6.61 6.34 5.79 10.5 9.45 6.6 8.97 7.71 9.15 7.78 11.7 7.31 10.8 11.6 2.39 9.99 0 9.78 9.01 9.36 6.79 5.3 8.8 1.05 7.58 8.16 9.33 3.54 8 0 9.92 6.09 7.2 9.46 4.84 0 6.97 1.65 1.05 8.96 8.89 7.32 9.35 9.57 1.65 5.22 3.99 7.92 8.9 8.55 2.66 7.85 4.41 5.92 8.58 11.4 9.29 11.2 10.5 8.17 11.9 7.73 1.65 10.4 7.45 1.65 5.9 8.53 8.9 3.08 8.56 4.33 6.9 5.76 13.5 10.4 10.6 2.39 4.61 4.54 9 10.4 6.22 5.55 12.3 0 6.53 9.93 9.65 9.83 9.71 7.01 9.73 0 6.07 4.48 8.28 2.07 8.94 9.46 6.22 7.25 9.54 11.3 6.9 4.17 4.25 9.08 9.52 11 8.25 10.1 2.07 6.39 8.05 7.82 8.92 10.2 16.6 11.7 7.54 4.54 5.17 8.15 7.22 2.39 11.6 11.4 9.26 8.59 8.75 3.25 8.68 10.1 11.1 13.1 4.61 8.9 8.02 2.07 7.46 7.92 9.37 2.07 4.7 7.11 9.51 9.63 10.3 1.65 8.19 11.8 1.05 3.54 6.84 11.5 11.8 5.13 9.2 5.84 6.07 13 0 7.81 9.41 3.67 3.4 7.67 9.47 6.32 7.39 10.6 1.65 3.89 1.05 8.18 6.46 7.18 6.69 8.69 6.77 10.2 8.16 6.37 7.76 9.56 6.32 7.86 7.75 9.51 8.73 3.08 9.26 8.93 4.54 8.52 6.39 11.1 4.79 2.66 9.85 2.66 8.73 1.05 8.53 5.79 7.84 8.81 0 6.86 6.04 5.62 6.02 4.79 10.3 5.09 1.05 7.97 5.37 4.84 8.2 9.73 6.43 8.07 6.8 8.96 4.33 7.97 9.05 7.5 3.54 8.66 8.09 9.14 3.25 2.07 8.2 9.52 2.66 2.66 9.31 9.1 8.49 11.7 8.78 2.93 8.49 8.38 8.01 12.3 9.06 3.78 3.4 8.97 7.9 3.08 4.54 0 7.9 9.28 8.62 5.27 5.67 3.4 8.54 9.36 9.07 9.28 9.94 9.52 7.13 1.05 8.34 5.79 9.78 8.08 11.6 5.3 6.66 6.79 8.4 12 8.22 7.96 1.05 8.37 3.25 9.27 8.75 4.54 5.84 2.66 6.88 10.1 1.65 10.2 10.3 2.39 4.17 3.89 7.79 3.89 5.41 6.35 7.91 9.7 10.5 8.8 6.26 1.65 9.36 3.89 1.65 2.07 7.67 5.37 5.44 10.1 10.5 8.14 5.87 9.43 9.79 7.09 11.8 3.08 6.2 6.64 7.19 8.22 12.6 1.05 8.6 7.18 9.58 8.17 2.88 11.4 7.21 4.89 4.48 8.16 0 10.8 7.7 6.79 9.01 6.46 6.28 7.67 2.07 2.88 1.05 7.8 2.07 8.32 1.05 3.4 8.22 8.88 10.1 8.84 8.35 2.39 10.6 9.24 5.44 5.61 9.01 2.96 0 7.38 2.66 3.67 1.65 9.3 11.3 7.82 8.56 6.02 11.8 10.4 10.2 0 3.4 5.73 4.08 10.8 1.05 6.67 10.7 11.3 2.39 4.25 12 2.66 1.05 1.05 4.99 9.85 5.87 9.11 0 8.75 4.41 7.65 8.24 11.8 11 7.9 4.84 2.66 6.32 5.37 6.39 5.37 10.1 8.94 3.08 8.2 7.46 3.08 11.5 9.49 9.22 9.87 8.92 9.22 10.2 7.75 11.6 9.56 12.1 9.18 3.08 10.4 8.53 9.84 8.12 7.25 6.37 2.66 7.98 8.53 6.26 8.74 8.74 8.3 9.46 5.67 5.64 6.15 3.54 6.93 8.11 6.88 4.48 0 2.39 9.21 10.5 5.04 6.2 7.21 6.53 7.2 9.62 7.59 6.64 5.44 7.47 6.95 10.1 7.9 1.05 9.28 3.89 6.13 8.11 9.87 9.28 9.67 8.94 7.73 7.64 1.65 3.4 7.97 7.5 8.97 7.3 7.36 4.79 6.07 1.05 7.8 7.1 8.31 10.3 10.1 1.65 11.2 11.3 10.8 5.7 8.14 11 5.13 8.26 11.9 11.3 11.2 9.66 9.01 0 11.7 10.3 0 9.64 1.65 0 8.29 8.79 7.11 8.73 8.54 9.73 0 3.3 6.52 10.1 7.36 7.58 1.05 5.09 3.21 7.6 8.79 7.12 13 9.08 9.69 10.1 5.79 11.4 3.25 6.88 2.07 11.1 7.54 3.67 9.23 7.31 0 8.52 4.94 11.3 10 8.91 12 9.44 2.66 1.05 8.82 6.79 11.9 9.42 8.43 8.73 9.43 7.94 8.39 5.99 7.82 8.01 8.49 9.43 2.39 8.22 12.2 9.41 7.03 9.24 10.7 10.9 7.41 11.4 6.18 11.2 9.63 7.92 12.6 12.1 12.3 10.2 4.61 6.9 7.07 6.64 3.4 8.14 5.73 10.2 2.07 10 7.03 1.05 1.65 4.54 3.99 6.53 0 10.8 4.99 3.54 14.8 2.07 1.65 4.17 1.05 3.99 9.29 7.76 3.4 6.92 5.37 8.37 3.08 5.7 8.11 10.1 9.79 8.16 7.82 7.33 8.8 4.61 5.99 6.95 8.21 0 3.99 10.7 7.55 1.65 10.6 0 9.05 3.99 5.84 3.78 7.27 6.84 0 9.36 10.1 8 5.44 3.54 9.75 7.36 8.41 7.13 10.2 8.58 1.65 10.7 11.7 11.1 5.13 8.31 6.98 6.66 5.22 5.87 9.76 9.09 9.97 12.7 6.56 5.26 0 7.95 8.36 7.8 10.8 11 7.08 11.7 3.08 9.78 8.64 9.51 4.54 10.7 11.5 1.05 4.54 5.04 11 3.89 11.6 11.9 9.79 8.89 3.08 8.52 7.97 2.39 0 11.1 1.99 4.84 6.58 8.7 7.17 9.24 7.6 4.48 8.37 3.94 7.09 10.8 5.55 9.8 5.51 2.07 8.72 10 2.88 10.3 10.2 4.63 6.82 6.75 5.73 7.56 8.68 11.1 5.67 9.99 0 11.5 2.66 8.71 8.81 5.04 2.88 9.87 9.26 7.44 1.05 3.89 5.09 2.88 6.09 3.4 5.41 10.1 2.07 9.48 8.97 6.02 11 8.16 9.46 9.62 8.28 7.22 9.88 10.4 7.3 7.6 8.46 9.09 3.54 5.17 8.21 7.05 5.22 6.02 6.35 7.42 8.16 9.11 6.64 5.82 2.07 5.26 9.27 6.72 8.32 8.81 8.02 7.52 8.48 7.78 4.54 7.34 8.52 5.04 5.17 11.8 9.45 9.07 9.21 6.07 5.97 2.07 3.4 4.17 10.1 4.67 0 5.19 5.61 6.8 9.93 3.89 8.41 8.43 10.5 7.51 7.45 12.6 0 3.4 5.92 12 5.44 7.62 11.2 6.8 0 7.97 6.66 10.4 2.39 5.97 8.51 9.69 9.61 9.84 9.08 5.22 6.98 4.97 4.17 8.36 6.41 2.39 9.4 0 5.44 11.6 8.25 5.95 8.33 2.07 4.48 9.64 10.6 9.28 2.66 9.76 1.05 5.04 0 11.9 2.88 9.18 9.68 4.84 0 3.08 11.4 7.57 8.51 4.61 7.6 4.33 7.36 4.79 11.2 8.79 5.87 2.39 4.33 0 2.39 5.3 1.65 0 9.13 0 0 3.67 1.65 8.17 2.39 9.64 4.54 4.61 9.49 4.71 8.94 4.48 8.33 7.32 7.73 14.3 0 7.45 5.09 8.6 8.87 8.42 9.36 3.99 3.08 4.48 2.88 7.3 7.73 4.25 7.12 11.2 6.87 7.62 7.93 3.4 6.53 3.99 6.09 6.8 8.54 4.08 8.86 2.88 9.63 2.07 4.17 6.7 6.6 8.9 6.93 5.22 0 0 9.26 8.46 7.71 6.15 6.07 8.58 6.61 6.48 7.97 6.06 7.62 8.36 5.13 8.04 4.25 5.61 7.44 5.76 2.39 7.31 7.21 6.73 9.77 5.26 8.52 5.09 8.2 5.7 7.07 5.09 8.07 2.39 4.99 9.92 7.57 4.41 8.1 8.05 10.7 8.71 8.91 8.04 0 12.3 2.66 1.65 10 7.87 10.1 5.9 5.44 8.79 5.04 6.09 8.47 1.65 10.8 9.39 2.41 9.56 6.5 6.22 3.4 9.23 2.07 3.78 4.94 8.52 8.63 7.36 4.99 0 0 8.05 4.61 3.78 11.2 11.2 3.67 7.51 6.04 6.82 11.6 9.69 10.5 2.66 7.8 11.2 0 5.84 12.8 2.07 1.05 4.54 1.05 5.4 2.88 8.12 7.21 3.08 7.92 8.57 6.19 7.61 8.11 1.66 6.6 5.76 8.23 6.83 7.88 7.5 4.17 10.9 3.54 8.93 2.66 4.25 4.56 10.4 8.77 3.54 4.79 10.4 6.32 7.7 2.88 9.53 4.84 13.2 8.73 15 7.44 7.46 0 5.95 8.99 8.67 4.73 1.05 3.4 5.41 7.88 7.83 7.67 9.23 5.22 3.08 6.77 3.4 8.05 3.05 8.3 5.3 7.99 7.93 7.59 12 1.65 6.48 2.07 3.67 4.54 6.56 7.88 3.67 7.49 11.1 9.75 9.49 3.54 2.66 5.9 2.07 7.51 4.17 10.4 3.25 9.94 10.3 8.79 6.91 5.87 8.99 7.95 9.85 8.28 3.89 5.17 6.66 7.78 4.73 10.3 8.05 7.5 5.58 13.8 4.41 8.95 8.81 10.4 7.3 5.26 6.93 8.97 5.44 3.4 9.46 6.86 0 8.98 6.02 8.48 1.65 6.63 6.76 10.8 10.1 8.64 3.54 3.4 8.53 6.76 1.65 6.56 11 7.61 7.92 9.9 11.8 8.35 8.08 16.1 6.9 3.25 10 10.4 5.58 8.57 8.45 6.61 1.05 3.25 3.4 10.8 8.24 5.64 4.08 4.17 3.25 10.9 5.3 11.9 7.77 7.65 5.13 7.19 5.64 1.65 6.58 3.25 5.44 8.31 9.11 8.13 1.65 8.04 2.89 1.05 9.15 7.91 0 9.5 12.4 0 3.67 9.08 0 8.74 6.07 8.71 9.02 12.6 3.67 1.65 5.17 10.5 6.02 7.73 9.79 3.89 7.88 11.5 5.44 6.64 9.31 3.25 0 6.24 3.08 3.25 9.42 9.86 10 2.07 7.04 3.08 8.48 5.87 8.81 8.74 8.11 6.22 1.65 10.4 5.17 5.04 7.48 7.93 9.23 2.66 8.65 7.24 1.65 4.61 7.75 3.78 6.2 4.61 5.13 2.39 5.41 5.61 7.07 3.4 10.2 4.33 9.83 6.02 5.95 7.34 5.13 3.54 10.7 5.41 13.4 5.9 6.46 8.9 15.1 6.24 6.48 3.67 1.05 5.76 1.65 7.46 5.37 13.5 10.1 9.14 5.92 10.6 5.17 7.93 5.82 2.39 10 8.86 4.17 11.3 2.88 3.54 11 10.7 2.39 10.3 3.54 8.85 5.76 1.05 11.4 4.54 3.89 1.65 11.1 9.52 2.88 7.43 10.5 10.1 8.71 9.09 7.39 8.51 4.54 6.45 8.8 7.01 11.7 10.8 5.13 8.87 3.89 9.78 8.62 4.41 4.61 5.82 9.79 4.25 6.02 8.09 6.84 10.8 2.66 6.69 9.84 0 4.08 9.52 3.67 3.67 7.26 6.34 9.47 11.4 9 16.8 10.1 8.55 0 6.76 4.99 10.8 0 4.17 8.71 0 3.4 2.66 7.46 5.64 6.3 11.7 10.3 8.23 6.95 6.88 6.43 8.34 6 6.67 5.58 10.2 5.13 2.39 12.2 8.29 6.45 7 6.37 5.44 1.65 7.13 5.22 6.3 9.17 9.18 6.26 7.93 6.43 9.65 2.39 7.33 9.19 4.62 9.24 2.88 12.5 5.33 10.6 6.46 11 1.05 7.04 6.8 0 4.54 6.26 8.6 9.19 12.8 10.5 3.08 8.24 0 12.2 7.96 8.54 1.65 3.67 12.7 10.1 1.05 10.6 6.62 2.39 1.65 3.08 8.75 12.1 10.8 11.7 11.8 3.54 2.66 4.73 3.67 9.5 11.8 11.2 7.23 12.1 13.9 6.46 5.64 11.8 2.39 8.42 9.66 2.07 8.75 0 5.13 14.2 11 3.08 8.97 7.78 9.34 1.65 7.69 7.66 10.2 10.5 9.01 8.54 7.51 6.51 6.37 4.94 6.9 9.23 5.44 9.25 1.05 9.49 7.25 8.08 1.65 3.67 8.16 3.67 7.43 4.41 6.95 6.28 6.41 3.78 7.25 2.07 9.86 7.9 4.61 3.67 8.21 8.27 0 6.48 9.63 8.37 7.97 8.6 6.9 2.07 0 8.78 9.47 5.64 5.17 4.48 9.32 5.48 11.1 0 4.67 6.18 0 0 9.61 10.4 4.41 9.73 7.22 1.05 10.5 9.51 3.08 2.07 4.25 1.05 10.8 6.97 5.61 9.39 5.48 9.74 3.67 9.9 10.3 0 0 1.05 6.02 11.8 6.07 10.2 1.65 9.52 8.25 11.1 11 13.2 7.45 8.37 6.39 10.7 12.8 8.91 10.2 6.3 7.8 0 4.79 9.76 9.7 10.5 10.7 10.7 9.21 10.8 10.3 10.3 7.76 1.65 4.67 8.17 8.92 8.21 11.4 7.09 11.1 9.52 5.17 6.41 0 7.68 5.58 6.28 9.94 5.99 9.28 9.54 13.6 8.47 10.8 10.1 11.8 10.9 9.4 5.82 7.9 5.84 8.39 6.34 9.92 7.32 9.97 9.33 11.9 1.65 10.4 7.4 6.39 8.32 12.5 13.2 9.33 9.26 4.08 4.89 9.31 10.6 4.67 7.44 12.5 4.89 10.4 3.99 9.64 11.9 7.38 11.1 9.85 8.4 10.7 8.73 7.75 8.47 14.7 9.99 11 8.37 11.8 11.7 9.86 7.67 10.8 0 10.8 10.2 8.64 10.9 11.1 10.1 7.52 8.72 3.67 8.6 10.4 5.59 8.75 9.53 9.22 8.38 12.5 0 8.67 11.6 11.4 11.1 7.17 8.56 9.18 9.84 7.61 9.17 7.17 7.78 10.2 9.92 10.1 10.7 15.5 1.05 13.8 7.1 11.1 5.41 6.09 12.4 11.1 12.4 13 14.6 8.92 8.34 6.02 5.17 8.27 10.3 9.71 7.86 1.05 10.7 9.22 8.11 10.6 10 5.44 15 7.62 7.1 9.55 9.7 11.1 3.99 9.7 8.61 10.6 7.75 1.05 7.57 8.62 4.48 9.07 10.5 11.5 3.4 9.25 9.53 8.7 9.76 11 8.97 11.4 9 2.07 9.87 10.1 5.9 7.16 11.2 4.41 8.38 8.95 4.3 1.05 5.13 2.17 9.75 4.33 6.76 8.23 8.88 7 11.9 5.04 8.38 8.74 5.13 6.98 9.61 14.7 7.46 12.2 9.59 8.82 10.5 12.3 14 11.8 12 5.09 8.32 2.39 9.77 6.11 7.78 10.7 7.27 8.68 0 8.14 1.65 9.05 6.18 1.05 4.89 10.3 6.96 8.26 8.41 4.67 9.29 4.79 8.06 7.46 1.65 9.42 0 8.49 13.2 12.1 6.51 0 3.08 9.44 9.25 5.95 7.2 10.1 0 7.33 2.07 2.07 11.2 11.4 5.78 9.75 6.41 0 8.2 2.71 7.47 5.13 8.11 1.05 1.65 3.25 8.28 5.09 5.82 6.53 9.89 11.1 3.25 7.91 10.2 8.04 3.24 4.54 8.43 1.05 7.67 8.65 8.58 9.49 5.73 8.47 10.4 7.18 11 9.22 7.77 9.33 7.44 8.85 7.05 9.37 8.01 10.4 9.55 4.25 8.17 8.04 7.22 8.22 8.33 11.9 2.39 9.39 3.67 8.66 5.79 10.4 2.88 8.25 7.67 3.78 8.54 5.48 1.05 9.09 9.01 3.89 2.39 11.7 7.13 10.6 4.89 4.94 3.89 9.53 8.97 9.72 7.55 6.07 10.9 6.83 6.15 8.11 7.09 5.3 12.1 7.95 2.39 11.9 5.09 5.26 1.05 2.07 3.08 12.6 5.04 7.12 8.86 13.7 1.25 11.1 10.4 8.03 7.85 13.2 9.75 0 2.07 4.48 9.05 10.5 4.17 7.14 10.4 9.96 7.59 9.81 5.22 12.8 7.68 9.79 8.21 7.57 11.5 12.4 9.84 9.97 11.7 9.88 11.8 3.08 6.04 2.07 7.14 4.73 6.87 1.65 10.2 5.9 4.48 5.64 8.88 8.93 12.3 9.24 10 9.57 8.93 8.14 8.44 10.4 1.05 9.62 8.66 9.97 8.86 10.7 9.91 1.65 9.69 8.08 4.08 1.05 5.09 10.3 8.22 1.05 12 7.58 8.64 10.3 7.96 10.3 7.42 10.7 8.53 11.4 10.6 4.73 10.2 10.7 5.64 10.5 10.6 3.54 9.42 1.05 10.7 9.78 11.4 11.1 8.29 10.5 10.9 8.68 5.13 5.67 5.9 11.6 0 8.84 7.62 7.53 6.97 7.7 7.91 6.2 12.1 8.79 11 4.08 9.06 10.1 0 4.54 12.5 3.08 9.93 5.61 0 10.5 9.67 5.7 7.8 9.31 4.25 3.67 8.93 9.58 10.8 5.73 8.85 7.9 6.75 0 11.3 7.79 5.84 5 6.9 5.97 6.11 3.08 9.96 11.1 11.5 8.52 12 10.3 1.05 8.43 7.7 8.09 12.2 8.79 4.79 10.3 7.14 5.55 8.11 11.2 9.71 7.42 3.67 10.3 8.62 4.67 4.41 9.3 4.48 12.2 12.9 5.44 9.2 8.53 10.3 10.4 3.67 5.95 7.18 7.69 8.04 8.44 9.7 7.82 9.32 7.99 3.25 8.53 8.97 7.44 10.5 9.47 4.67 9.97 5.76 4.48 8.35 8.13 6.11 1.05 5.41 4.48 6.2 4.33 10.4 2.66 9.15 6.82 9.79 6.07 1.65 2.07 1.05 4.48 4.08 8.66 0 7.78 7.53 1.05 1.65 5.26 7.85 7.83 10.2 7.75 6.26 6.34 12.1 4.54 7.49 6.45 7.65 7.5 9.95 3.25 9.74 8.84 7.65 6.28 11.1 8.74 7.36 4.33 10.2 5.47 9.23 4.73 8.78 7.13 9.23 6.3 8.05 6.2 8.52 10.8 9.25 6.67 2.07 6.09 7.23 4.54 9.19 5.04 4.43 6.24 7.14 11.4 4.73 11.5 10.2 4.08 8.32 6.28 9.78 3.43 7.59 7.58 4.41 10.8 10.4 4.08 8.63 8.33 8.09 9.16 1.05 9.1 3.25 10.9 4.48 8.83 4.99 10.3 6.77 10.1 8.25 9.23 6.61 1.65 10.4 6.56 11.2 3.99 10.3 8.03 10.8 8.6 8.72 7.41 2.07 8.69 6.96 5.07 7.7 10 7.81 3.4 2.39 5.9 0 0 4.48 8.68 2.07 4.25 3.4 6.55 5.17 13.6 6.32 10.2 7.64 10.4 12.2 8.76 5.84 11.3 9 8.98 6.72 10.8 5.97 7.75 7.93 8.86 5.92 2.07 7.78 6.55 7.21 1.65 6.95 10.3 14.4 11.6 6.18 8.58 7.36 5.76 7.32 9.45 6.95 11.8 9.77 7.25 11 8.28 8.12 5.82 12.4 8.08 7.22 0 9.26 0 7.07 10.2 9.97 8.01 11.3 5.04 11.9 8.85 12.4 7.94 7.6 10.2 10.8 9.75 0 8.04 9.96 7.38 9.46 8.82 10.1 11.6 9.34 8.39 7.13 8.84 9.33 8.81 10.7 8.19 8.6 7.49 6.24 7.95 9.73 8.52 11.5 12.7 7.83 12.5 8.85 10.5 7.93 9.53 8.13 11 11.9 8.03 12 10.5 10.4 11.3 12.1 9.21 9.53 8.43 10.9 8.77 7.54 8.94 12.4 9.72 10.1 9.75 8.55 9.24 10.8 9.53 9.77 10.6 8.54 11.2 9.79 8.39 8.58 4.48 8.79 7.13 12.7 12.2 10.1 9.89 10.4 11.2 10.7 9.03 8.63 11.3 5.82 2.39 10.8 1.65 10.8 11.1 10.7 10 11.9 6.45 8.52 10.7 9.53 9.52 10.6 11.7 7.75 9.63 8.71 12.2 11.2 10.2 8.03 8.02 11.6 8.2 9.5 0 8.27 9.54 7.7 6.13 5.44 6.72 7.34 4.73 10.3 11.2 6.51 11.1 8.6 8.84 10.6 8.54 11.5 4.54 8.62 0 10.2 11 10.5 8.83 5.73 8.21 5.76 10.4 9.69 11.3 10.7 6.91 8.92 2.07 8.4 1.05 10.8 9 9.66 9.98 10.7 9.7 10.5 1.65 11.3 11.1 8.73 8.13 11 4.08 9.43 8.6 9.4 9.68 10.1 10.2 9.08 8.28 9.54 9.14 10.2 10.9 10.3 10.5 6.79 6.43 9.54 9.93 10.5 6.02 9.9 11.1 11.5 9.94 9.24 8.69 5.67 9.46 11.2 10.4 9.67 10.4 9.32 9.7 9.77 10.4 11.4 0 8.69 9.74 9.15 10.3 9.17 8.16 6.13 8.22 9.17 9.97 6.13 8.96 12.7 10.8 8.97 9.97 10.9 8.17 7.89 10.2 10.3 8.27 10.1 8.76 13 9.79 9.17 9.71 5.76 9.92 11.6 4.95 10.6 9.83 9.76 10.8 9.32 10.1 10.6 7.03 5.22 1.05 12 10.7 12.5 10.5 10.6 8.54 9.83 10.1 4.48 9.09 10.5 12.5 8.67 7.39 9.13 10.6 9.66 10.3 10.5 9.11 8.49 6.24 11.4 6.92 1.65 8.74 8.73 10.9 11.1 9.31 11.7 11.2 12.1 8.61 9.97 11.9 9.27 10.8 9.55 10.8 10.7 9.72 7.53 11.4 8.64 10.6 8.64 8.97 10.2 11.3 11.5 9.57 6.88 9.06 6.32 10.2 10 11.1 9.89 8.61 10.8 8.14 10.3 11.2 9.91 10.9 12.9 8.17 9.44 11.7 10.5 9.28 11.4 9.43 6.02 10 13.3 4.89 9.83 10.6 1.05 11 9.21 9.94 8.93 8.56 10.8 10.5 9.62 9.89 10.3 8.91 3.08 7.25 10.3 10.9 10.8 9.74 8.08 11.2 8.3 9.64 9.48 7.88 5.76 10.2 9.7 9 15.1 8.13 9.5 7.52 10.8 8.87 9.17 10.9 12.3 4.67 8.77 11.3 8.78 7.7 7.78 10.1 8.2 10.4 10.4 9.92 10.3 3.25 10.2 9.47 11.4 11.4 11.7 9.73 8.61 9.17 9.12 11.8 10.1 10.2 9.69 10.3 8.6 10.3 9.12 8.66 8.01 9.76 6.04 8.22 5.3 8.8 9.3 4.25 10.6 10.2 8.96 10.6 10.1 5.79 10.7 10 7.53 10.2 8.7 8.9 8.12 9.85 6.24 10.5 8.69 8.59 10.4 11.6 6.32 8.38 1.65 10.7 8.07 10.1 12.1 7.27 11.6 10.1 12.4 8.86 9.64 9.94 11.2 10.1 9.04 10.8 9.77 10.6 11.1 8.37 8.61 10.6 11.8 9.46 9.43 7.6 12.4 10.8 9.57 10.8 10.9 8.17 9.9 8.19 9.32 8.67 9.83 9.67 8.82 11.8 11.5 8.91 12.2 9.29 11.5 9.3 11.5 10.6 10 7.49 9.89 9.05 10.7 9 10.4 10.2 11.4 10.9 10.2 10.2 9.92 10.4 11.1 10.6 8.27 10.5 3.89 8.45 10.9 9.85 6.41 8.08 7.84 10.1 10.1 8.5 4.48 9.96 9.34 9.7 11.3 6.46 4.73 7.96 7.66 2.39 9.44 12.6 8.39 12 9.83 7.6 9.69 10.3 1.05 7.88 4.89 11 11.2 8.8 5.73 9.65 10.6 11.9 8.84 7.25 7.34 5.58 6.22 10.7 9.47 10.8 7.9 8.42 9.57 11.5 10.6 11.5 9.37 8.37 8.46 9.89 11 13 3.89 10.5 9.92 7.56 10.6 7.33 11.4 6.2 4.48 5.67 11.3 7.82 8.32 9.1 12 10.2 9.74 9.33 8.13 9.94 10.6 9.71 9.21 9.62 8.77 8.93 11.2 10.3 9.64 1.05 2.66 13.5 9.73 10.4 12.6 8.92 9.87 4.67 5.51 15.6 9.85 11 1.05 6.13 8.56 5.64 3.78 12.9 6.12 11.7 11.4 10.6 8.55 1.05 1.05 9.43 9.25 10.7 8.09 9.99 8.51 8.97 7.36 7.58 10.2 12.7 11.1 9.26 9.24 1.05 4.54 9.81 0 8.11 11.1 0 4.89 10.3 2.66 12.2 10 9.07 8.34 10.8 8.17 9.03 9.96 9.96 7 5.66 9.32 11.5 6.77 9.4 6.39 8.01 10 8.17 4.41 10.7 6.41 9.12 10.6 9.69 9.68 10 6.3 7.81 10.4 10.7 9.68 5.79 0 1.05 4.99 9.83 9.91 10.1 10.4 5.26 10.2 11.2 9.21 5.7 10.8 11.7 14.9 9.77 10.2 7.36 5.41 12.1 5.44 9.71 9.24 8.09 7.63 10 8.52 7.55 6.76 8.04 7.19 12.4 8.68 12.3 7.49 12.7 13.4 5.95 10.4 9.94 10.7 10.7 8.9 10.3 5.44 1.05 9.45 7.75 9.65 13.7 10.2 3.08 10.9 10.7 12.5 10.2 7.89 2.66 8.42 6.69 5.67 4.48 9.83 9.57 9.47 8.55 8.13 8.99 8.79 6.72 7.47 11.4 8.77 0 2.07 3.4 4.92 8.85 1.65 6 2.07 9.49 2.07 2.88 2.66 5.33 6.9 5.92 5.41 8.84 9.55 3.54 0 4.61 9.29 9.29 9 9.19 2.39 5.48 14.3 7.56 10.3 0 15.2 9.89 10.1 12.1 6.76 5.17 1.65 6.63 1.08 0 11.2 5.84 3.25 9.26 7.36 8.69 9.46 4.67 4.67 9.61 10.9 9.68 4.48 3.22 5.9 9.9 7.38 10.4 3.67 10.7 5.44 8.13 9.23 4.17 5.73 13.3 7.36 3.08 9.37 7.7 7.26 9.45 9.89 4.54 1.05 10.3 10.3 9.97 9.69 9.37 6.28 4.73 9.82 2.66 5.51 8.48 5.41 2.07 9.44 3.08 0 8.56 7.28 5.82 6.22 10.5 2.39 6.9 8.27 4.08 5.09 8.94 10.3 5.99 6.82 12.1 0 4.61 11.2 5.48 8.94 7.36 8.25 11.1 6.63 8.3 7.75 8.52 1.05 6.02 9.58 7.23 7.26 5.87 4.33 8.07 1.65 7.72 6.87 4.89 5.84 3.54 7.35 1.65 7.02 3.67 2.07 8.08 7.5 8.92 3.67 7.11 8.95 9.48 9.62 7.5 5.04 4.17 2.88 7.1 7.52 5.61 7.04 4.89 2.94 4.17 8.46 9.53 5.95 6.67 6.35 8.65 10.4 10.9 7.42 0 9.23 5.33 3.89 1.05 5.97 8.18 2.39 3.67 4.48 0 6.66 6.13 1.65 5.51 8.68 4.73 6.83 3.25 8.39 3.25 3.25 7.1 2.88 6.26 7.67 3.99 0 2.07 8.27 8.8 7.23 6.45 5.99 12.1 10.5 9.87 8.46 1.65 9.29 11.4 9.13 7.5 9.82 5.84 5.64 6.58 3.25 9.02 10.4 11.2 1.05 9.54 12.3 10.4 7.15 10.8 12.5 8.29 9.7 9.54 1.65 11.5 8.68 9.34 7.73 10.6 1.05 9.23 11.2 6.76 5.04 6.58 7.79 10.1 8.21 11.4 0 12.5 6.73 9.95 10.5 10.9 9.46 10.7 11 6.86 1.05 10.2 8.6 10.3 7.93 11.5 8.86 9.29 10.5 11.6 8.31 11.1 13.6 8.58 6.32 8.04 9.27 9.53 6.8 9.87 4.25 9.59 3.78 10.5 9.73 10.5 10.2 13 9.54 10.8 4.41 8.81 9.23 8.58 7.89 7.23 5.41 7.37 9.9 8.1 3.78 7.63 7.31 7.23 10.2 9.2 0 9.95 9.82 10.3 8.52 7.91 8.77 9.18 8.27 9.62 5.17 8.52 13.3 8.78 7.84 11.7 9.59 8.89 2.39 9.99 10.2 10.8 0 9.07 5.44 9.06 10.8 8.18 6.93 8.89 3.4 10.1 3.67 9.91 0 8.46 2.39 3.25 4.67 9.55 10.9 6.18 11.4 9.92 9.14 6.51 7.7 7.95 10.2 11 10 9.9 6.04 8.68 9.9 9.66 7.95 7.53 10.3 9.17 11.3 10.8 9.51 4.54 9.17 9.76 10.3 15.5 10.9 9.83 6.13 5.3 10.1 11.4 9.46 8.61 9.52 7.44 9.03 1.05 6.88 8.47 10.4 8.18 12.3 9.17 10.3 12.3 1.65 10.6 10.7 10.5 11.3 9.16 9.95 8.43 9.25 7.8 11 8.42 9.42 10.5 9.49 9 9.95 7.5 8.11 4.61 7.29 6.64 8.61 7.36 9.07 8.83 9.88 4.48 9.48 9.66 9.59 10.3 9.72 8.24 8.08 7.58 8.12 9.26 6.51 6.5 9.62 2.66 10.3 8.92 10.1 10.8 10.5 10.7 10.1 10 7.91 7.92 8.9 11.2 10.5 11.1 9.07 7.15 8.96 10.7 11.2 9.96 10.2 8.08 7.15 5.09 11.6 7.86 10.1 10.6 2.39 9.71 13.5 10.5 7.78 10.2 8.84 10.2 9.38 10.3 9.49 11.1 10.7 7.7 4.41 9.54 10.1 8.41 9.48 5.51 11.2 2.39 9.61 9.3 11.5 3.25 10.4 11 6.3 9.52 8.27 5.9 8.68 11.2 9.05 10.1 11.2 7.02 7.73 8.7 7.73 9.84 4.33 10.2 4.17 8.94 6.24 7.5 12.5 1.05 9.71 5.51 9.76 9.7 10.9 2.07 10.8 1.05 6.42 8.63 10.8 8.93 11.5 7.38 12.4 8.7 8.03 11.2 1.65 5.26 1.05 5.61 11.4 8.2 8.96 2.39 9.02 8.31 2.07 9.27 10.2 9.52 9.64 7.08 6.02 6.7 10.2 9.2 8.45 10 9.96 3.99 7.44 10.1 10.3 6.32 9.73 2.07 8.05 9.63 9.6 6.61 9.83 10 8.44 1.07 9.74 8.65 9.81 10.3 8.7 6.34 12.8 7.57 5.48 10.1 11 13.4 8.85 9.71 10.7 3.67 7.55 5.99 9.47 9.77 9.2 10.5 9.11 9.94 8.54 7.49 8.02 9.21 10.1 10.2 9.23 8.62 9.35 8.78 8.31 10.1 3.89 1.65 6.77 9.71 5.26 8.17 4.54 9.6 0 15.2 6.18 8.64 8.44 3.99 8.97 5.3 7.22 11.2 13.6 11.7 10.3 4.79 8.43 3.9 12.6 11.2 7.98 11.8 5.82 5.76 5.83 1.65 9.03 3.99 11.3 6.53 7.97 8.86 8.53 9.88 7.51 0 8.55 6.48 3.67 5.22 7.67 0 9.97 9.21 10.2 4.33 5.97 6.53 7.82 10.4 8.73 10.5 1.05 10.3 11.1 9.78 6.11 8.62 10.2 12.7 10.8 11.7 9.61 5.17 10.3 9.06 4.61 2.88 8.85 1.65 7.64 9.89 5.87 10.6 12.9 9.36 12.9 8.63 8.82 11.3 1.65 8.72 0 4.48 9.85 7.16 7.23 10.5 12 4.08 1.65 12.1 9.81 9.44 12.6 2.07 4.89 10.3 6.09 11.4 4.89 9 7.44 6.37 9.21 10 11.6 2.66 8.2 9.49 6.09 9.71 7.68 4.48 1.05 11.7 7.44 9.99 11.8 8.46 9.19 6.98 5.97 9.27 8.14 8.52 13.5 4.67 7.92 11.4 1.05 7.4 7.05 3.4 7.57 10.1 4.73 2.39 8.06 8.53 5.92 1.18 7.15 8.64 7.4 8.21 8.59 9.82 3.4 8.98 0 5.33 9.62 8.69 10.8 9.69 11.2 9.93 4.33 5.7 11.1 6.46 0 6.5 1.05 2.66 0 10.3 9.5 2.39 6.88 11.6 2.07 4.73 8.28 10.1 4.48 8.53 10.8 4.54 8.05 9.91 11.1 10.8 9.65 9.34 9.62 11.9 10.3 11.4 7.82 7.41 9.35 9.36 9.52 0 3.08 4.67 4.67 8.24 8.94 7.46 8.64 2.66 5.64 10.7 3.25 8.31 7.44 8.41 8.78 7.09 7.35 4.17 9.2 2.39 5.3 8.56 10.9 5.51 10.8 8.97 11.5 8.14 3.54 11.5 13.2 9.88 11.7 12.3 7.82 8.16 9.77 9.51 14.7 8.38 8.44 10.1 8.67 8.03 4.61 7.35 7.52 10.6 5.41 5.92 7.68 11.2 12.3 9.64 9.29 10.7 8.45 7.67 12 6.84 10.7 8.38 5.51 11.9 10.4 11.8 6.53 8.84 11.4 1.05 9.81 8.63 10.6 7.86 6.93 9.97 5.84 9.67 12.7 9.81 5.17 11.9 11.3 17.8 1.65 10.2 12.1 12.4 8.19 10.2 11.2 9.9 8.94 2.39 10.4 12.6 3.78 10.7 4.41 3.99 12.2 2.66 8.13 9.02 11.4 11.1 11 11.7 11.1 11.5 9.88 3.4 2.54 3.08 1.65 10.7 5.13 9.95 13.2 4.08 7.45 6.53 6.75 10.6 7.73 7.11 4.17 8.68 6.32 7.95 8.96 2.88 7.71 3.78 0 6.09 8.39 6.9 10.5 4.67 7.36 5.65 5.64 4.08 7.73 1.05 6.56 15.8 8.32 12.7 9.04 5.97 9.92 5.97 8.69 7.09 8.14 7.35 8.67 8.08 7.9 7.87 5.26 10.4 5.23 7.93 5.26 6.86 8.66 8.67 3.78 5.97 4.94 10.4 1.65 9.17 5.79 2.88 4.54 7.94 3.67 1.05 1.05 10.5 8.21 6.61 3.4 9 4.94 7.98 7.13 3.4 3.61 3.08 9.59 2.39 9.28 0 10.4 0 6.55 1.05 2.88 11.3 10.7 7.81 4.48 6.85 8.45 5.67 5.99 5.73 7.46 1.65 1.05 3.89 10.4 7.94 8.22 3.4 7.03 9.67 4.79 9.92 4.99 8 4.33 3.08 7.14 7.72 8.42 3.3 4.41 11.3 8.24 9.99 8.26 4.08 9.14 10 1.65 4.48 7.92 3.89 6.76 3.4 8.94 4.28 9.71 7.09 2.88 2.07 1.65 5.3 7.51 0 3.25 0 10.2 3.08 1.65 6.11 11.8 10.1 7.15 5.55 9.29 3.67 1.05 0 8.31 8.44 2.88 3.08 9.37 2.39 10.3 3.54 8.73 3.67 7.25 5.82 8.61 8.03 6.76 3.45 1.05 6.72 5.58 5.04 3.08 7.34 12.8 1.05 7.09 7.74 5.51 3.54 1.65 5.48 6.6 0 2.39 2.07 2.66 2.66 9.5 7.54 3.67 8.07 9.76 6.55 5.64 8.66 8.67 2.07 4.33 0 7.95 5.7 7.21 8.91 5.72 2.88 4.73 5.98 8.26 0 8.28 6.22 6.15 0 6.63 3.78 2.39 4.25 1.05 7.15 4.67 2.07 1.05 7.7 0 6.63 4.99 9.44 7.53 6.43 8.37 3.4 4.54 1.65 6.79 9.24 10.1 8.43 9.48 2.39 9.95 11.8 5.17 7.93 7.57 6.35 5.41 9.15 8.92 0 5.09 9.32 9.78 8.95 7.62 8.36 0 9.9 3.78 7.68 10.2 8.55 8.46 10.2 8.36 4.79 2.07 3.08 9.91 3.4 7.86 3.67 2.66 5.8 5.41 8.78 9.51 9.44 9.46 1.05 8.48 2.39 4.61 4.99 6.82 6.79 8.8 9.77 2.07 9.27 9.77 3.4 7 10.7 7.37 6.82 7.6 1.65 5.78 0 8.32 4.48 1.65 7.68 1.05 3.4 9.04 1.65 2.07 6.46 7.12 8.78 6.95 8.31 2.39 4.84 3.99 5.04 3.4 7.94 6.96 1.65 5.97 9.37 9.47 5.33 3.4 3.08 7.4 6.73 6.46 9.93 9.82 4.17 3.08 8.41 3.4 4.41 4.25 8.92 8.59 8.69 2.07 6.64 10.2 8.08 6.55 3.78 8.48 5.55 7.84 3.08 3.08 6.6 5.41 6.74 9.41 2.88 11.9 9.39 10.9 11.5 9.82 4.33 11.7 3.54 12.9 12.5 7.45 7.42 11.5 10.5 9.98 3.99 9.72 11 8.46 10.3 8.98 9.02 10.3 10.8 13 7.99 11.8 10.8 3.08 8.81 4.41 8.88 10.4 8.11 9.29 11.9 9.96 11.1 9.65 10.1 10.5 8.26 4.99 10.1 9.83 9.75 9.45 11 8.57 5.97 6.77 9.32 6.73 10.9 8.77 8.22 11.4 6.18 4.08 10.3 7.9 0 8.07 7.8 10.2 6.09 10.5 12.3 4.41 8.49 7.36 9.7 9.89 11.8 8.05 9.93 10.3 10.2 8.47 10.4 10.7 8.96 9.33 9.26 6.98 11 10.5 10.1 9.15 7.7 10.8 8.84 1.65 7.11 9.14 9.93 8.61 9 9.2 10.3 11.1 10.6 10.8 10.1 10.4 8.7 10.9 13.9 8.63 7.41 9.96 1.65 9.86 10 9.59 9.87 0 5.84 8.11 7.11 11.4 3.4 5.09 8.18 4.54 2.07 3.25 9.1 11.1 11.7 7.92 14.1 1.65 10.9 13.2 10.7 11.1 12.8 10 7.4 10.3 11 2.88 9.83 10.1 9.23 6.73 11.9 8.93 9.38 8.65 9.15 4.25 10.5 9.01 8.56 9.09 10.8 9.09 8.71 7.08 5.97 9.04 9.71 12.6 11.4 10.2 0 11.4 9.19 4.99 8.68 10.2 2.07 9.3 10.5 3.25 7.77 9.11 5.9 8.44 9.89 7.03 10.6 4.33 11.2 0 4.73 7.79 7.82 10.4 7.26 11.1 10.1 10.8 1.65 7.3 3.25 8.25 8.25 2.07 3.4 9.18 11.2 9.49 3.08 9.57 10.5 7.29 10.2 10.4 9.56 10.1 6.58 10.1 2.66 10.8 5.61 10.2 8.02 7.51 9.99 8.73 6.63 9.46 4.17 7.68 7.62 8.78 9.26 9.45 10.5 10.5 8.05 6.22 11.8 7.8 9.23 13 8.97 6.64 4.08 4.99 6.55 0 11 8.27 7.33 4.41 5.92 8.9 9.13 7.37 9.29 8.91 4.94 12.3 8.86 12.8 7.7 5.61 11.2 2.88 8.83 6.2 11.3 9.66 9.65 10.5 8.52 9.73 10.4 11.4 11.4 7.87 8.13 7.37 9.9 1.05 9.03 5.87 11.5 6.26 8.39 10.1 8.3 12.3 8.67 1.07 10 0 11.6 9.53 9.79 3.25 6.58 9.43 5.79 5.44 4.25 12 9.46 11.1 2.07 2.66 0 10 5.82 0 9.96 11.4 6.34 11.7 11.9 13.5 10.8 11.4 3.99 11.6 10.9 9.54 1.65 10.9 3.08 3.54 6.09 9.09 9.68 10.2 8.95 1.05 1.05 2.07 2.66 8.88 3.78 10.6 6.72 9.08 7.21 10.8 9.64 10.6 1.05 10.4 12.7 8.94 5.37 6.46 11.8 11.4 10.6 5.51 12.8 1.05 6.02 4.54 10.8 5.7 4.41 8.53 6.58 9.87 3.54 8.55 8.61 5.48 9.53 3.54 7.03 9.19 10.7 10.4 9.28 10.4 9.81 7.09 12.1 8.56 11.2 7.81 10.9 11.7 8.78 10.1 9.49 11.4 6.22 9.99 11.7 5.51 8.28 15.9 15.8 14.7 9.6 8.8 9.62 8.55 4.94 12.8 12 3.89 9.54 7.08 9.89 6.3 12.7 11.3 8.87 8.24 5.48 9.64 11.9 11 8 12.6 6.09 6.22 4.99 4.67 9.13 8.43 8.31 12.3 10.7 6.53 10.9 11.9 9.21 10.8 10.4 9.95 11 4.41 9.91 9.55 14.8 7.8 1.05 7.75 8.49 11.5 8.29 4.94 7.75 0 8.63 3.25 10.6 2.07 8.85 12.4 8.84 13.5 10.9 12.9 12 11.1 11.6 11.9 11.7 13.2 1.65 12.1 12.6 8.76 5.26 5.95 9.32 10.2 7.62 7.54 9.88 2.66 9.24 4.48 5.61 4.17 4.25 1.65 9.32 10.5 8.67 7 8.63 7.92 7.73 5.33 4.08 10.9 8.35 10.9 9.02 8.85 9.74 5.82 11.1 4.17 3.25 2.07 7.12 10.6 9.97 2.88 3.89 2.39 10.5 0 7.48 10.2 10.5 9.57 10.1 10.3 6.91 2.39 10.8 11.5 10.8 9.85 11.5 9.76 4.73 6.56 4.46 3.25 11.1 11.3 9.28 9.9 7.88 12 10.8 12 10.3 6.52 8.08 10.3 14.6 10.4 7.83 7.84 13 12.7 12.4 6.75 5.67 14.5 11.8 14.9 12.6 14.4 11.5 11.1 9.88 12.1 6.39 4.73 13.5 10.4 8.38 5.44 2.07 3.08 8.37 1.05 0 4.61 8.97 9.64 7.74 10.8 9.59 3.78 6.77 5.84 0 2.57 10.6 10.4 4.41 6.83 1.05 9.25 4.17 2.39 7.42 1.05 1.05 4.84 4.51 7.84 10.3 8.79 8.35 7.51 8.57 8.79 5.22 2.96 0 6.83 5.73 6.24 11.3 5.22 7.04 7.28 4.08 9.13 8.05 9.16 7.9 10.9 9.6 8.6 8.76 6.35 7.93 5.33 0 9.17 7.13 0 3.89 7.46 7.43 4.73 6.51 9.23 7.16 3.67 4.08 5.26 4.25 5.04 8.65 6.3 9 10.4 9.27 2.07 4.08 10.5 9.7 4.08 3.25 6.72 3.54 10.7 6.15 0 4.25 3.08 9.36 7.76 8.15 0 7.37 1.65 5.61 2.39 7.73 3.4 0 7.82 0 9.03 2.07 9.07 8.81 6.97 5.11 6.75 7.49 4.61 10.1 5.76 8.74 9.96 9.98 3.54 7.1 5.09 7.54 1.05 8.63 11.2 1.65 3.68 1.05 6.22 2.07 10.7 8.5 10.9 9.98 7.91 10.4 5.76 3.25 0 11.3 14.6 1.05 7.61 9.94 2.39 9.14 0 1.65 7.36 8.87 9.84 2.39 10.4 6.96 2.66 5.82 1.05 6.53 5.44 5.61 3.08 8.8 4.94 4.33 7.82 1.05 8.48 10.9 4.33 5.17 3.89 1.65 2.88 10.1 9.63 7.75 5.26 8.1 1.05 5.13 9 8.71 1.65 1.65 3.67 3.78 3.25 1.05 2.66 10.3 4.84 7.5 12.6 9.15 10.7 9.18 2.39 5.3 10.5 4.17 10.6 3.67 4.73 0 4.79 3.25 4.41 0 8.68 3.78 0 5.97 2.66 5.58 0 2.39 2.66 10.2 1.05 10.2 1.65 4.84 10.1 6.69 3.67 2.39 9.17 0 10.4 6.34 10.5 7.31 14.1 12.1 7.53 6.6 9.05 17.5 5.88 6.06 8.13 10.9 9.93 0 10.9 3.25 5.57 4.17 11.4 10.6 3.08 8.14 12.9 0 6.82 14.1 6.67 0 10.5 6.26 4.73 8.73 13.8 4.98 12.3 8.67 4.41 2.39 5.64 2.39 7.63 4.61 8.09 8.39 15.6 11.2 9.28 3.54 7.26 8.33 10.1 7.34 5.58 8.59 0 4.17 9.39 8.39 2.07 1.05 6.79 7.01 4.41 6.22 4.25 0 2.66 8.18 10.7 9.24 8.49 8.27 9.8 6.69 5.97 2.88 4.25 6.24 8.03 7.2 9.09 0 9.18 7.7 5.04 7.34 3.99 1.65 10.3 3.78 2.88 11.3 3.78 4.33 4.33 8.13 8.48 8.3 8.01 5.13 1.05 4.25 1.05 11.1 5.66 8.76 11.2 9.87 9.74 7.52 8.78 6.91 3.78 2.07 7.9 1.05 6.11 10.4 12.1 12.1 4.08 10.9 9.67 6.2 8.58 9.79 6.07 5.67 8.23 7.8 8.72 4.67 7.67 0 5.84 9.76 6.66 10 9.31 7.98 8.97 10.9 10.5 4.33 2.07 11.5 9.13 11.5 5.58 11.6 9.52 12 5.9 9.17 9.33 2.66 9.7 9.26 5.17 7.44 6.18 8.1 7.36 7.14 2.88 10 9.75 7.07 4.48 12.4 6.86 9.82 9.33 5.09 6.46 0 7.36 7.6 6.53 10.3 7.46 14.2 8.97 9.01 4.48 8.04 10.9 10.9 1.65 6.07 9.92 2.07 1.05 4.08 12.8 6.64 5.41 10.6 9.11 11.7 6.39 8.2 9.25 9.4 7.59 11.3 8.73 11 8.86 7.78 12 8.12 13 15 14.1 10.6 10.1 10.1 10.6 5.7 10.9 4.54 5.44 6.1 5.04 5.3 8.04 2.07 11 5.17 8.58 4.84 5.64 9.86 6.15 1.05 5.3 2.39 5.61 7.28 7.69 5.3 4.84 7.78 5.92 8.9 9.22 3.25 1.65 7.25 8.48 8.45 2.39 8.74 4.17 2.88 11.3 6.48 2.39 9.73 6.39 5.9 6.76 0 7.63 2.66 6.79 7.76 13 7.93 8 4.25 10.2 2.39 7.98 7.79 3.99 8.05 1.65 7.45 9.55 7.52 4.91 2.39 2.07 2.88 10.1 7.93 6.61 7.02 4.25 6.88 9.01 5.9 6.95 1.05 7.22 2.88 5.64 3.26 1.05 8.22 11.7 7.28 4.08 9.96 5.71 9.1 1.05 8.21 9.87 2.98 2.07 6.87 8.84 11.2 9.43 1.05 9.48 1.05 2.07 4.99 5.09 7.31 2.07 9.29 13 5.22 3.25 1.05 2.66 6.11 5.99 11 1.05 5.73 12.5 3.78 0 5.61 5.33 9.3 10.8 5.13 2.88 7.49 8.85 3.4 5.9 13 8.25 6.6 6.04 10.6 1.65 7.36 8.56 10.6 8.13 12 9.98 12.2 9.63 2.69 1.65 1.65 11.9 0 0 7.57 1.05 3.54 10.6 4.33 1.05 0 1.05 3.89 0 12.1 6.18 5.26 10.2 10.3 11.9 10.7 9.81 8.58 10.4 5.17 12.1 11.1 9.44 2.07 1.05 8.4 9.67 1.65 10.3 7.4 1.65 12.6 5.92 4.25 9.11 0 6.11 10.8 3.67 1.05 3.42 9.79 4.41 1.05 4.48 7.97 3.89 7.42 8.58 8.98 9.57 4.61 1.65 5.76 5.17 6.22 8.91 7.27 1.65 4.54 3.25 5.58 3.25 13.2 0 4.41 5.09 4.08 10.8 9.59 3.13 3.89 8.53 0 4.48 9.36 8.46 1.65 13.9 2.39 7.94 5.58 9.84 7.08 3.08 3.08 7.28 4.33 6.72 6.35 4.48 2.1 5.3 6.95 7.82 9.49 7.31 8.98 3.99 2.07 12.5 2.66 6.5 8.3 7.62 7.1 7.63 4.73 6.3 2.88 1.65 5.26 8.05 8.37 3.78 6.77 9.06 7.76 2.07 8.64 9.43 2.88 6.45 5.51 7.77 9.85 1.05 9.02 4.33 4.17 8.19 2.39 8.21 9.66 8.1 0 8.94 11.5 10.3 2.39 7.74 1.05 7.33 7.5 7.12 4.33 8.52 3.25 5.55 6.83 3.4 3.89 8.21 8.25 9.38 2.07 12.3 5.97 4.91 10.7 1.65 1.05 2.88 2.39 7.7 14.2 3.54 8.32 2.66 8.9 2.07 7.5 0 6.43 8.44 2.66 8.81 2.07 8.73 9.63 7.37 7.6 0 3.89 7.5 3.4 6.02 7.52 5.76 1.05 7.58 6.79 8.9 8.09 8.98 9.93 9.54 2.07 9.97 2.07 10.1 2.07 11.8 2.39 8.81 5.95 10.2 12.7 3.67 2.66 10.6 11.9 12.1 0 0 5.79 12.1 5.97 11 3.08 1.65 9.79 8.12 7.66 5.48 0 10.7 7.99 0 12 11.1 12.2 10.1 7.46 1.65 8.24 9.31 7.72 11.6 4.33 9 13.5 13 2.39 8.22 8.79 11.1 1.65 8.18 10.1 8.15 8.65 8.35 9.59 11.2 10.9 9.24 7.44 10.5 5.51 1.65 8.46 10.6 6.46 1.65 6.34 9.52 7.66 8.59 7.75 11.2 8.28 3.54 1.05 8.97 6.8 6.66 7.18 5.33 11.2 3.89 8.32 5.92 9.75 6.41 2.07 9.02 10.9 12.1 11.9 9.24 9.24 8.38 6.6 8.33 0 6.63 10.2 6.3 10.5 9.99 7.29 0 8.08 7.54 1.81 7.84 5.92 1.05 5.61 2.88 2.39 6.55 8.01 4.08 1.65 4.25 2.66 9.08 3.4 8.34 7.8 2.66 3.4 10.8 3.67 4.48 0 10.2 5.68 6.78 2.66 4.73 3.99 5.45 2.07 9.31 0 3.25 8.69 11.3 2.07 5.33 4.84 8.02 2.39 6.55 1.65 4.61 3.08 4.72 10.4 4.54 8.93 7.52 2.66 9.89 8.16 0 5.37 8.47 9.22 8.37 4.54 7.15 6.53 10.2 7.27 1.05 8.3 0 1.05 3.25 1.65 6.43 9.11 6.43 10.4 7.42 4.61 0 1.05 8.88 11.3 7.24 2.07 7.05 3.08 9.4 1.05 2.66 6.09 6.87 5.09 9.92 5.58 8.48 0 8.34 10.9 11.8 0 11.6 6.22 9.9 9.42 6.88 8.96 4.61 8.4 3.09 3.55 12.9 10.5 3.67 9.81 7.91 9.89 10.7 7.92 10.3 3.08 10.9 7.58 0 9.52 9.31 11.5 10.7 6.31 5.3 3.25 7.75 11.3 7.85 11 12.7 3.99 4.61 6.72 7.8 10 4.94 8.88 5.37 11.9 7.22 10.8 11.7 11.9 4.08 5.87 2.88 7.47 7.29 11.4 11.5 8.97 7.48 8.7 11.5 9.12 10.4 9.22 10.4 7.37 9.24 2.66 9.38 9.71 0 8.25 9.7 8.68 8.71 2.39 4.48 9.35 9.46 12 11.3 6.8 9.86 9.63 8.53 11 12.9 13.8 13 12.2 11.6 11.9 8.24 10.2 10.3 7.29 6.5 11.3 4.48 2.79 8.07 2.88 2.07 7.59 8.07 5.81 14.1 4.48 2.41 10 8.9 4.25 10.6 9.15 8.89 4.33 11.5 10.8 0 10.1 11.6 7.09 9.96 11.8 9.4 4.17 6.97 13.9 8.22 9.76 8.67 8.46 8.52 9.44 12.2 4.61 5.7 12.2 2.07 12.2 10.9 13 9.81 8.92 10.5 9.37 10.4 11.4 10.5 5.59 9.69 10.5 9.91 2.39 10.2 10.2 7.11 9.03 9.54 9.54 10.3 9.93 9.55 3.78 0 11 8.95 8.71 8.8 6.77 9.21 11.2 11.1 9.45 6.95 11.1 9.71 5.99 4.41 9.02 7.95 8.63 13.1 10.7 10.9 10.5 6.7 11.5 11.8 4.94 8.12 13 8.04 2.88 6.98 6.86 8.49 6.64 10.4 8.36 9.03 5.61 9.45 10.5 11.9 10.4 10.4 12.4 2.88 8.73 10.1 12.2 8.46 8.56 8.24 10.6 0 0 2.07 6.2 4.41 6.6 8.85 6.82 11.2 5.44 5.99 8.17 6.7 2.66 6.79 7.79 6.63 9.07 3.08 9.25 10.8 0 9.26 11.5 11.6 9.91 9.82 2.07 4.17 10 10.3 6.55 9.17 10.7 6.63 8.21 7.07 9.64 2.88 2.07 9.89 13.4 0 6.3 5.7 10.4 10 0 2.88 8.67 6.84 5.82 4.48 7.54 4.33 2.39 3.54 9.82 7.04 5.95 9.77 9.51 4.26 7.76 4.8 3.22 5.27 3.67 12.8 8.29 2.39 8.38 2.88 8.86 5.82 3.78 8.4 2.39 1.05 8.33 9.98 0 4.08 6.66 0 2.88 6.34 12.4 6.35 4.33 1.05 8.42 8.46 9.11 6.97 11.7 4.25 6.18 7.13 7.86 7.77 8.89 6.61 8.07 6.13 6.3 5.09 7.78 5.41 2.39 3.06 4.08 0 4.48 7.7 8.46 2.66 4.33 1.65 0 2.66 1.65 2.07 8.6 1.65 9.41 5.48 5.26 6.45 4.99 2.88 5.13 9.89 0 0 2.66 0 3.89 6.15 8.37 0 4.84 7.51 5.44 3.25 4.48 12.5 6.7 8.89 7.67 1.65 6.68 10.8 10.1 6.9 3.54 7.73 3.22 2.07 10.1 12.8 7.24 8.63 7.33 3.78 7.8 10.4 8.07 7.59 6.07 9.18 12.8 8.04 4.91 7.6 6.35 9.49 8.79 8.49 7.34 7.95 2.39 8.99 9.06 8.66 5.09 2.88 3.67 9.74 9.25 6.9 9.67 9.37 11 7.27 10.1 2.07 7.14 4.17 1.05 2.39 0 9.85 5.04 8.47 9.19 12 0 4.73 13.1 11 11.8 9.94 2.39 8.3 13.6 10.9 3.54 10.8 10.1 7.99 11.3 8.43 9.76 10.3 4.33 6.5 10.5 7.49 10 8.73 9.83 10.4 10.5 10.1 13.3 10.1 9.42 11.1 11.5 5.84 12.6 10.3 11.1 11.4 11.7 9.83 13.5 0 9.81 8.62 9.65 13.1 9.55 9.5 6.09 6.96 8.63 12.9 11.3 11.9 11.4 11.2 11.1 12.3 11.1 10.6 10.4 10.3 4.54 10.2 10.5 10.5 10.8 10.9 10.1 9.73 12 10.9 10.7 11.2 12.1 11.5 10.6 11.1 11.7 9.89 10.8 9.76 11 11.1 9.22 11.6 10.3 11.3 11.1 10.7 9.75 9.56 7.97 12.5 12 11.5 9.25 11.6 5.98 7.99 7.59 8.29 0 2.07 10.2 11.7 9.74 9 3.67 7.56 8.48 10.4 11.2 15.7 10.9 6.72 9.66 7.08 3.08 9.2 8.09 10.3 2.88 13.4 12.4 10.8 9.2 7.82 9.18 9.24 8.61 9.07 12.7 8.71 8.45 9.24 7.36 8.62 9.27 9.92 0 8.64 9.39 9.67 9.66 3.08 12.3 13.8 9.16 10.3 10.5 3.89 8.53 7.08 8.99 10.5 6.93 10.5 7.28 12.1 10.8 11.7 11.3 10.8 9.06 11.2 9.7 1.65 9.05 12.1 10.6 9.22 9.73 10.5 9.38 8.99 8.75 10.8 10.4 12.5 2.39 10.6 4.08 7.93 8.47 9.36 7.23 12.4 4.25 3.54 12.3 9.77 9.36 4.17 11 12.1 9.18 10.3 10.1 13.4 10.5 8.23 3.08 10.7 12.6 6.41 4.41 11.2 11.3 9.65 9.58 8.26 11.1 7.6 5.58 1.65 3.08 8.13 10.4 5.55 0 3.4 10.7 13.2 12.7 13 8.47 10.3 12.4 11.8 7.09 2.07 9.99 9.14 9.64 8.75 1.05 9.84 5.35 6.24 7.55 8.48 5.48 10.1 8.35 0 5.41 11.5 8.77 6.97 4.61 1.65 1.65 14.2 12.3 11.5 10 9.07 7.41 11.2 8.15 9.35 2.07 4.33 6.93 6.6 1.05 0 11.1 11.9 12.9 5.37 6.76 9.75 8.92 8.33 4.08 7.46 3.78 8.32 11.1 8.78 8.34 5.92 2.39 1.65 10.4 5.97 9.19 6.5 0 5.33 1.65 10.6 10.1 6.64 3.89 8.5 5.3 4.08 2.66 3.99 5.37 7.79 8.13 13.6 7.01 8.09 11.3 0 1.65 5.84 14.3 5.99 10.7 5.99 11.5 10.3 9 9.37 9.76 7.61 7.82 5.92 7.95 7.77 11.9 9.08 11.5 10.5 0 10.2 13 3.99 4 10.2 7.69 10.3 4.22 10.2 7.21 3.25 10.9 10.3 10.2 10.7 7.73 15.3 9.05 8.08 10.5 9.67 5.99 6.48 6.7 4.33 10.3 10.5 10.7 10.9 10.4 11.4 8.86 9.11 0 4.1 4.48 8.37 3.25 8.24 10.9 9.25 5.67 13.2 12.2 9.89 9.76 10.4 10.8 11.7 10.6 9.39 11.6 13 7.82 2.66 12.8 6.28 3.85 6.28 8.46 10.1 8.94 13.3 9.08 10.3 9.28 8.55 8.38 7.76 9.04 7.18 10.1 7.78 9.21 7.2 8.37 8.14 10.4 8.84 12.4 9.36 8.91 7.69 10 9.8 10.2 6.7 8.37 11.2 9.35 10.8 9.24 9.97 8.74 9.77 10.1 11 8.39 8.69 7.93 7.4 6.34 9.58 5.48 6.9 9.12 10.7 9.31 9.77 8.83 10.7 6.32 7.82 9.75 9.57 10 8.59 7.87 9.87 8.76 11.3 8.26 8.84 10 12.3 11.1 10.1 10.4 9.32 9.56 8.27 3.29 1.05 9.95 6.79 7.26 10.4 8.31 11.2 8.6 9.02 9.51 8.9 8.59 11.2 10.3 9.03 7.94 8.98 8.23 9.84 7.36 12 10.9 12 10.1 7.49 9.06 9.9 8.7 9.16 9.68 9.85 8.85 11.8 8.19 8.42 10.6 11.4 10.3 10.8 1.65 9.77 7.59 8.49 9.14 11.1 9.95 7.27 7.59 6.72 9.89 9.53 12.4 10.2 11.7 9.28 11 8.93 11.2 1.65 8.65 9.62 9.12 9.35 11.1 8.69 10.9 8.14 11.7 7.94 8.49 6.11 9.74 9.58 8.53 6.95 8.7 7.3 11.1 11.5 10.6 8.67 8.53 9.95 11.5 11.4 8.82 10.8 7.11 7.61 8.98 7.92 7.84 9.31 8.97 9.45 9.72 6.73 8.75 9.09 2.66 1.05 5.13 10.2 13.1 9.36 7.85 7.67 9.52 9.45 9.12 8.25 9.87 2.07 11.1 9.03 7.88 8.79 10.2 9.15 13.4 12 10.3 8.74 5.55 9.13 8.64 2.39 8.78 9.93 7.98 9.45 10.8 7.81 8.65 9.38 10.2 6.34 6.64 5.33 10.4 10.4 10.6 10.2 8.35 8.28 8.12 9.39 9.57 10.1 11.5 7.17 10.7 9.72 5.09 11 9.82 8.64 9.46 8.56 10.2 10.4 8.52 9.9 8.2 8.63 11.6 7.36 10.7 1.05 10.6 9.67 7.98 9.65 10.6 11.7 10.4 13.8 3.08 9.22 11.2 2.39 9.26 3.67 9.87 9.51 8.05 9.6 10.5 11.4 10.4 5.91 11.8 3.4 9.66 6.46 7.84 7.11 13 10.1 6.96 7.46 9.36 9.67 9.63 10.2 9.81 3.25 9.75 1.05 6.15 9.2 7.76 9.36 10.2 5.61 4.79 10.4 9.24 10.5 5.37 11 11.9 7.6 11.1 6.95 7.29 7.8 9.35 8.72 11.6 2.66 8.18 12 8.4 9.97 5.58 10.8 9.96 9.65 11.9 10.1 13.1 6.84 10.7 9.74 8.49 8.9 6.97 9.13 9.29 8.66 9.36 7.48 10.1 10.3 5.76 10.3 11 10 8.79 10.5 9.18 9.88 9.85 9.03 10.9 11.4 4.61 10.1 9.34 9.56 6.58 4.89 10.9 11 9.41 1.05 9.85 10 7.63 9.75 3.25 8.33 7.76 10.1 12.8 8.1 10.2 8.31 10.8 7.86 9.75 10.3 12.4 10.3 10.9 9.61 11.2 4.48 5.67 5.58 10.5 8.59 10.8 11.2 9.76 9.16 9.09 9.74 11 10.4 6.98 8.87 7.72 5.73 9.37 10.3 7.22 9.64 9.14 7.32 9.17 7.84 7.86 8.78 9.63 8.63 11.4 4.33 1.05 7.36 9.11 11.3 4.33 9.19 10.6 11.8 10.2 11.3 7.13 10.1 10.4 9.83 8.62 5.13 11.7 10.6 11 7.31 11 9.48 10.6 9.69 12.5 8.22 10.3 10.2 7.45 9.72 7.88 12.6 10.1 10.8 9.95 8.11 11.7 9.59 14.1 8.76 10.8 11 9.41 9.44 11.6 8.26 10.5 8.81 8.36 11 11.1 10.1 10.5 9.16 10.3 9.07 12.5 10.8 9.08 6.61 9.34 8.79 11.3 9.03 12.8 8.5 5.41 12.9 9.81 8.33 11.2 8.73 10.5 8.59 14.1 9.19 9.64 5.64 5.17 10.9 8.18 5.18 5.09 9.77 8.36 9.17 10.1 9.42 10.4 12.6 10.1 7.1 9.62 0 7.67 8.47 10.1 10.3 6.39 12.2 8.52 0 10.7 3.25 8.56 10.8 10.7 8.68 11 3.89 8.7 6.46 3.08 9.35 8.45 9.55 3.99 11.6 10.8 10.7 5.93 10.1 9.47 8.52 10.6 9.81 6.66 7.43 9.8 9.57 0 7.23 10.3 8.89 9.02 11.6 10.4 11.8 5.92 7.67 6.41 8.2 8.36 11.8 10.8 11.6 8.35 7.98 9.38 8.2 8.45 8.42 9.36 8.74 4.17 2.88 7.88 5.87 10.8 10.7 10.4 9.9 12.7 8.23 1.05 7.37 9.13 11.6 8.32 10.3 3.4 11.1 8.88 12.2 12.1 9.45 11.4 11.9 6.63 1.65 9.71 9.75 8.97 11.7 11.9 8.76 8.11 8.89 5.61 10.3 6.61 11.1 5.48 12.6 0 11.7 10.7 8.9 8.79 10.4 13.5 2.07 9.68 9.4 6.6 0 11.6 13.7 12.2 7.18 9.53 11.1 7.7 9.1 11 8.4 9.33 2.88 9.89 8.27 8.27 11.9 6.66 8.79 8.57 7.64 3.89 11.2 10.9 10.8 12.2 11.6 10.5 1.65 9.09 9.93 10.2 5.48 13.6 9.56 2.73 13.8 8.88 6.41 3.67 6.11 8.69 7.48 8.08 13.2 8.02 7.66 11.8 7.71 10.4 11 7.64 4.67 10.5 8.67 7.65 5.26 10.4 9.75 6.95 3.54 9.04 9.87 4.25 6.35 7.34 7.73 8.53 10.6 7.77 12.6 10.1 6.9 9.46 7.63 6.41 4.61 5.55 4.84 2.07 12.6 7.64 10.4 9.62 7.1 10.8 9.11 5.37 10.2 9.31 10 10.1 10.8 6.02 9.44 2.39 12 5.51 12.8 11.5 5.99 0 5.26 13.6 10 8.86 8.89 11.1 8.65 7.58 9.16 5.04 6.92 3.25 2.39 13.5 9.6 5.99 5.87 2.07 4.17 7.27 1.05 8.82 6.97 2.66 5.64 11.3 7.38 10.6 10.6 9.42 9.1 6.69 9.09 8.1 7.64 9.4 8.69 9.94 6.86 6.98 10.7 9.17 7.73 10.1 6.35 7.98 9.05 2.88 7.68 0 15.4 8.48 1.05 3.67 9.7 4.33 9.85 9.24 11.1 2.07 11.4 11.2 10.8 5.15 9.25 2.39 8.44 7.65 7.71 9.16 7.94 9.45 11 12.5 9.2 6.96 6.88 4.41 8.2 8.98 7.97 10.4 7.3 3.67 3.78 9.51 8.3 11.1 10.6 11.1 6.22 4.94 7.52 11.5 11.4 10.9 9.27 9.41 10.2 9.57 3.4 7.28 9.31 9.99 13.7 10.6 11.1 11.5 11 6.61 10.5 9.8 3.25 5.87 11.4 8.71 8.42 10.5 7.9 9.67 7.36 6.96 9.01 6.77 5.95 9.42 5.9 10.5 8.23 7.76 8.35 2.66 1.65 10.1 12.1 10.6 11 9.21 9.62 8.05 2.07 10.1 8.17 10.9 11.2 7.66 9.34 11.1 7.07 10 9.8 2.88 10.8 7.05 9.38 9.61 10 8.53 11.1 9.26 9.25 9.31 10.8 9.26 6.28 8.18 9.28 7.11 9.39 6.6 4.48 6.82 6.51 6.3 8.81 8.6 7.26 6.48 7.11 9.54 7.87 7.02 10.1 4.41 9.18 8.52 9.64 7.98 9.23 8.64 10.1 11.4 10.9 12.2 6.37 11.4 8.32 7.57 8 8.87 9.27 7.84 9.95 4.41 10.6 9.22 1.65 8.36 10.1 5.73 9.18 8.96 3.08 11.3 0 10.1 10.5 8.54 7.1 3.08 8.64 7.9 8.49 10.8 9.94 0 6.34 6.56 9.33 11.8 8.13 3.89 10.3 8.86 10.8 8.71 9.85 10.5 10.2 10.3 7.7 6.02 7.44 12.5 9.61 9.49 14.2 10.9 11.7 7.05 9.21 8.08 0 3.4 9.68 4.79 12.1 7.45 4.84 9.35 8.99 6.51 2.07 11.6 1.65 9.15 2.66 7.36 0 8.78 5.13 8.94 12.3 6.11 6.34 10.2 8.88 8.16 11.1 8.49 12.2 8.83 8.23 7.93 10.5 13.9 9.01 9.03 8.69 5.82 7 4.17 8.38 7.64 10.6 8 8.05 8.61 10.1 6.39 8.04 8.93 9.62 8.07 7.57 10.4 9.42 8.35 10.5 9.54 8.37 6.83 3.4 9.22 6.02 1.05 7.57 0 8.57 8.07 6.95 1.05 10.4 9.81 5.22 10.2 9.6 9.09 8.52 11.7 8.22 0 9.9 10.4 8.26 8.2 6.92 8.05 1.65 8.48 7.94 0 10.3 9.21 10.8 9.99 6.13 9.89 8.42 7.24 1.05 11.1 8.87 4.61 10 8.58 8.9 8.73 7.15 9.87 8.13 7.14 6.84 9.18 7.98 10.4 7.66 9.47 8.21 8.33 9.97 11 9.4 7.13 9.12 6.34 8.3 7.48 5.37 7.04 9.34 3.25 7.84 10.2 7.82 9.44 5.82 9.75 7.33 10.7 10.3 9.91 10.5 8.9 9.58 9.25 7.53 9.97 9.31 7.69 7.67 10.5 9.38 12.2 9 5.67 8.96 8.87 8.91 2.07 8.46 8.65 8.98 1.05 8.71 10.4 11.5 12.3 7.01 8.71 5.58 10.7 9.67 9.71 9.75 10.3 8.15 7.19 8.97 9.54 7.8 7.8 7.51 7.14 11.1 9.01 8.61 5.82 9.61 8.87 9.42 1.05 8.97 9.64 7.51 7.11 8.86 10.2 6.61 10.5 10.6 10.2 2.07 7.77 8.38 8.07 10 6.37 11.3 5.22 9.34 3.67 10.1 11.4 7.56 7.78 10.2 7.44 7.4 7.29 10.6 2.39 11.1 12.6 11.7 4.25 10.1 8.25 11.1 8.26 8.52 7.8 8.63 9.95 10.7 5.82 9.65 8.43 8.07 5.73 9.23 9.18 4.73 9.67 0 4.17 8.97 9.14 10.7 7.91 8.29 6.7 8.71 9 11 10.2 5.97 6.2 9.03 6.95 10.2 7.23 7.78 10.6 6.05 11.3 9.16 11.2 7.15 10.5 8.93 7.77 9.61 2.88 8.64 9.11 6.24 5.73 7.22 9.97 1.05 7.16 5.37 12.1 7.21 7.46 7.76 10.1 7.4 9.45 11.1 9.89 9.92 10.2 10.9 3.99 9.63 9.65 8.01 2.88 7.57 8.64 9.41 7.68 8.11 9.84 3.08 10.2 8.38 9.53 10.3 6.32 7.01 5.09 10.6 9.45 9.14 8.41 9.18 8.48 7.13 10.3 8.01 9.12 9.58 10.2 1.65 8.32 7.78 7.89 9.74 5.33 8.05 8.19 7.93 7.36 4.33 5.73 9.15 11.4 9.22 9.07 5.13 8.66 7.35 8.79 10.2 9.71 8.8 12 5.48 7.85 8.63 9.66 7.94 9.04 7.08 8.48 11.5 10.5 10.9 10.9 8.47 4.79 7.49 9.73 9.26 9 8.11 7.9 9.85 9.73 3.08 8.31 9.5 7.28 7.39 13 8.09 8.82 10.2 7.27 7.24 11.1 9.77 9.31 9.87 7.67 9.48 7.84 9.46 8.27 0 8.91 10.8 8.73 7.3 4.25 8.2 2.39 10 5.61 11.2 9.85 6.66 11.8 9.2 10.5 10.6 7.84 8.89 9.68 8.38 7.29 9.23 6.34 9.07 9.84 10.1 6.15 7.61 9.04 7.42 8.24 9.59 5.44 10.2 8.18 7.69 9.57 4.33 7.2 10.4 9.79 6.96 9.9 11.9 8.54 4.73 9.47 10.2 9.94 2.07 6.75 9.7 8.98 9.38 10.9 6.11 8.79 8.67 8.71 10.9 8.44 2.07 4.84 11.5 7.31 9.7 9.45 4.08 9.67 9.9 11.6 8.74 10.7 10.3 11 9.4 7.62 5.82 8.59 7.77 10.2 8.3 9.21 2.88 8.27 9.54 5.61 1.79 0 10.3 11.2 2.07 8.97 8.27 10.1 10.6 6.18 9.73 8.7 7.21 9.66 8.53 9.23 0 11.3 7.65 3.25 9.15 5.22 9.22 10.2 9.59 10.1 11.2 8.67 6.64 7.18 0 10.5 7.88 8.2 11.4 7.18 6.5 9.11 9.71 12.1 9.35 9.18 10.2 8.28 6.6 8.61 7.59 8.41 8.53 10.2 10.9 7.66 6.95 10.4 10.1 11.1 8.82 9.5 8.33 8.89 8.28 6.72 8.06 10.5 3.78 1.05 6.5 10 10.8 4.89 9.76 7.34 2.88 10.2 10.2 9.84 9.53 10.1 8.27 8.98 10.9 5.87 7.12 10.3 11.5 15.2 4.89 3.89 7.03 7.69 11.7 4.25 8.13 6.66 7.75 5.26 7 9.21 9.13 0 7.93 12.5 8.99 9.48 11.1 12.1 8.25 2.66 9.99 10.5 9.54 10.9 9.44 6.73 1.65 8.27 9.91 9.38 1.05 6.7 4.73 6.41 0 10 9.28 11.1 7.28 7.99 8.23 9.68 10.2 3.78 0 8.5 7.86 6.8 3.54 6.5 0 3.67 4.08 6.26 8.5 10.9 8.29 3.78 9.14 1.05 7.35 4.99 9.44 9.4 11 0 9.93 9.72 6.09 4.41 12.6 10.7 6.83 10.4 7.95 10.7 8.34 7.21 0 8.97 8.42 12.8 7.56 11.8 9.6 10.8 6.86 8.85 10.7 6.6 3.67 9.21 9.24 8.43 7.09 7.25 10.4 7.84 9.89 7.46 10.1 10.3 9.33 9.18 11.3 7.9 10.3 6.7 7.46 7.71 8.28 8.47 7.84 2.39 8.75 11.4 8.8 6.28 10.6 8.86 7.84 8.23 9.93 7.91 10.4 10.4 9.89 10.7 2.88 8.94 8.83 9.78 6.84 12.5 10.4 9.89 10.3 8.39 8.49 10.9 11 9.4 6.15 8.54 11.7 7.15 9.85 8.58 6.5 9.53 9.6 8.89 8.4 9.82 11.1 7.86 8.71 9.24 11.1 11.2 8.77 11.1 5.97 8.74 9.8 9.64 7.64 9.32 10.1 11.2 10.8 8.88 7.58 9.58 9.77 4.94 8.87 7.48 9.68 8.69 6.96 10.8 10.7 9.79 10.3 8.83 10.3 8.36 5.04 5.67 5.79 8.24 8.89 5.22 8.46 13.9 9.44 3.83 6.77 7.6 9.06 11.1 11.2 10.5 9.38 9.29 9.42 8.73 9.08 10.3 8.69 10.1 9.66 9.48 9.29 8.73 9.97 11.6 13.3 9.66 8.63 8.41 9.32 8.1 5.04 8.54 9.25 5.41 10.2 9.56 1.05 9.62 7.77 10.2 10.2 9.51 1.65 9.49 7.72 9.17 8.19 9.07 8.06 8.77 8.8 9.05 8.22 6.09 8.17 7.52 6.66 11.6 3.54 7.97 10.2 8.91 9.91 7.78 9.45 5.73 6.77 11.7 9 9.1 12.3 8.6 6.97 8.07 9.81 0 8.5 10.8 9.02 1.05 8.68 8.77 9.51 7.62 9.62 10.3 1.05 10.6 10.3 7.1 9.64 10.9 8.08 10.7 10.1 10.5 8.98 6.46 9.64 7.14 9.25 5.58 9.42 7.19 9.13 11.4 9.18 9.23 7.37 12.5 8.57 10.6 10.3 5.81 10.6 5.17 9.46 8.48 10.3 13.4 8.98 11.1 10.6 9.69 9.85 1.65 9.21 7.88 9.52 9.29 5.13 6.28 7.71 11.6 5.64 6.88 0 12.6 8.45 7.94 9.13 6.26 10.6 8.64 9.82 6.64 9.77 9.91 10.3 8.47 11.1 9.32 10.6 6.43 9.77 9.34 5.84 8.54 4.25 9.73 9.23 4.33 9.75 6.97 6.36 4.84 11.1 10.9 7.98 8.88 10.1 9.92 10.2 5.61 10.4 10.7 9.6 9.22 10.3 6.8 5.33 11 8.39 9.6 8.97 7.25 3.99 9.8 1.65 11.4 9.64 10.6 9.29 9.85 6.8 10.4 11.2 8.49 10.3 10.6 6.82 7.82 8.99 6.09 9.59 3.04 5.29 6.18 7.92 4.33 6.52 3.08 4.08 3.67 4.33 4.17 3.89 5.15 6.13 11.8 1.05 2.07 4.89 4.25 2.07 9.92 1.05 5.7 8.98 7.04 5.44 5.61 8.9 7.54 5.48 5.99 7.47 5.87 10.3 8.01 6.48 3.08 2.88 11.6 1.65 3.78 1.05 5.58 11.4 7.99 7.64 10.3 2.66 10.3 13.9 2.66 1.65 8.71 7.52 8.65 5.44 3.54 9.72 2.66 10.2 11.8 4.08 10 9.78 5.37 9.9 10.1 6.48 8.19 9.58 11.3 13 7.83 12.2 1.69 9.93 8.71 9.82 8.66 9.16 9.1 6.07 1.65 8.47 6.2 1.05 11.4 7.98 2.88 8.93 9.29 11.8 1.05 10.2 11.8 9.54 2.07 15.5 10.6 8.45 5.09 12.3 11.8 8.93 9.78 9.27 9.71 8.05 0 11 7.07 13.6 7.92 8.71 4.61 8.55 6.43 0 8.33 0 10.9 10.5 11.3 10.1 17.1 4.61 3.54 10.3 9.46 11.1 9.89 10.7 6.17 9.96 10.5 9.17 10.8 10.7 11.7 7.13 12 9.39 10.6 11 11.3 9.94 10.2 12.4 11.8 8.11 10.7 8.84 9.97 9.55 10.2 9.69 6.79 10.1 9.82 10.1 8.08 11.2 9.29 7.46 9.14 10.8 10.5 8.22 9.46 8.52 8.09 9.46 5.84 5.17 13.3 10.5 8.21 8.3 10.2 10.6 9.77 10.1 8.69 11.1 8.2 8.91 10.8 1.65 10.2 9.33 9.76 9.15 9.03 8.79 9.47 7.75 10.6 10.6 10.6 10.9 8.63 10.6 8.37 6.91 8.9 9.17 10.4 5.58 6.15 1.65 10.6 11.3 10.6 7.52 10.1 4.67 8.97 9.32 7.49 4.17 9.41 10.1 7.13 8.28 11.2 10.3 9.62 3.99 10 9.96 10.4 9.19 9.7 8.65 8.21 2.88 9.65 8.06 8.75 10.9 7.42 10.4 2.88 10 10.9 9.62 11.1 10.3 11.3 4.17 9.52 8.89 8.85 10.8 10.2 9.41 12.1 9.34 4.54 10.4 11.7 1.65 12.5 10.9 11.2 2.39 7.57 9.04 6.92 11.1 4.33 11.7 0 10.2 2.88 7.82 8.23 8.34 12.6 4.08 8.43 8.93 11 3.99 10.5 8.23 8.67 9.72 0 1.05 8.35 4.79 9.86 5.58 8.55 9.42 7.63 5.41 9.35 9.74 10 10.8 11.7 8.73 12.1 8.49 10.8 9.53 13.1 7.91 8.52 6.81 10.7 9.82 9.45 8.62 10.9 8.7 11.2 8.71 4.17 11.1 7.8 10.4 5.33 7.42 8.35 10 9.13 9.33 9.98 9.57 11.8 10.5 9.52 8.55 9.13 8.58 10.9 8.58 5.73 9.37 7.04 9.4 11.1 10.1 4.84 9.9 7.46 11.5 10.5 11.3 8.14 9 11.5 8.31 6.37 8.32 10 5.04 9.51 7.52 9.15 9.66 11.9 10.3 6.45 10.2 6.3 7.82 9.78 5.13 2.66 12 8.31 11.1 2.88 3.4 9.33 10.8 10.4 5.84 6.28 9.16 12.6 10.6 6.63 8.5 7.31 7.34 9.47 7.52 10 8.51 4.08 9.22 8.89 9.26 6.48 8.62 5.44 8.56 9.12 0 0 10.8 9.1 0 3.54 8.91 8.62 7.46 11 11 13.7 9.52 9.71 6.66 10.8 8.29 4.94 10.8 11 10.4 10.2 8.46 4.89 11 6.73 10 9.36 9.65 11.2 1.65 9.87 8.52 6.41 6.67 7.3 7.93 9.34 8.47 8.57 10.7 9.26 2.39 9.55 9.73 7.61 8.24 8.25 7.59 9.21 10.3 7.62 9.16 6.72 5.13 11.2 7.6 3.99 9.88 10.6 9.25 3.54 9.33 7.42 12.3 7.34 3.48 4.79 10.1 9.41 10.9 8.97 8 10.3 9.34 10.1 10.5 8.24 14.3 8.01 10.3 8.8 9.4 8 6.76 7.33 4.08 6.95 7.62 7.65 11 11.4 10.4 9.9 6.93 6.2 8.52 9.21 10.6 4.67 8.11 9.76 8.3 8.84 6.46 6.28 2.07 5.37 9.54 9.45 0 10.2 11.4 9.07 8.59 10.8 9.97 11 9.37 9.49 4.48 8.42 8.75 7.5 13.1 8.75 4.99 9.43 7.64 9.68 5.61 8.04 10 7.86 8.95 10.5 10.6 10.7 9.17 9.29 8.07 9.94 9.7 10.6 9.17 7.6 11.1 11.3 9.57 9.94 10.7 7.93 10.3 5.13 7.15 9.7 10.1 9.72 8.81 9.42 9.54 1.65 8.88 10 9.9 8.71 7.84 7.43 7.04 5.64 12.9 8.68 2.39 10.4 10.4 6.22 7.98 5.13 9.33 7.56 7.78 9.46 10 6.75 6.48 7.46 10.5 7.5 11.2 11.5 9.98 8.85 9.31 9.06 9.37 8.97 8.82 6.24 10.8 7.55 9.78 9.25 10.4 10 11.3 4.73 7.52 13.3 8.75 8.71 9.63 7.84 9.29 8.46 8.58 7.98 6.32 9.59 6.6 8.04 9.68 9.66 10.5 8.88 10.9 5.61 9.67 7.64 9.71 8.54 5.85 9.36 6.8 6.84 6.32 9.67 3.78 7.61 11.4 7.25 5.76 9.66 9.89 9.07 2.66 10.5 9.29 0 8.88 6.11 4.73 9.9 8.73 9.05 6.04 8.4 10.2 9.72 9.8 8.8 7.45 9.3 7.56 9.92 11 11.8 8.79 10.4 9.21 7.34 2.39 6.86 9.22 9.4 3.4 8.38 1.05 1.65 7.53 4.48 11.4 9.36 8.36 2.07 10.8 7.95 7.13 7.47 8.43 9.5 9.39 10.2 10.3 10.3 11.8 13.6 12.7 4.48 0 8.23 4.17 11.3 10.1 5.61 8.85 9.18 9.13 10.1 8.22 9.94 11.2 8.6 11.3 10.5 9.07 9.88 7.24 8.6 10.3 9.28 8.95 4.67 9.41 11.7 10.2 11.3 8.1 10.1 9.47 11 7.52 6.24 7.63 7.03 8.7 10.7 11.2 10.2 8.64 4.61 10.9 9.87 10.6 8.51 8.07 8.98 7.12 7.05 7.14 8.24 5.44 10.3 7.34 8.78 7.95 9.48 10.5 11.4 11.1 8.97 6.77 9.67 11 8.42 10.8 9.76 10.2 8.11 9.16 5.61 9.95 3.89 2.07 10.9 10 14 12.1 9.79 10.7 10.7 4.08 8.18 8.55 10.9 12.2 9.32 12.1 9.48 10.8 9.31 4.89 9.85 9.79 7.52 10.6 12.2 7.87 7.77 8.05 9.95 11.7 11.9 11.9 3.99 8.3 5.22 7.81 6.92 6.83 10 5.51 9.86 9.61 10.1 12.5 12.8 11.3 9.8 11.7 11.5 9.67 10.8 9.8 9.46 10.2 9.6 8.38 1.65 10.6 8.27 9.16 9.71 8.04 12.1 9.05 9.78 3.4 2.07 6.26 10.3 9 6.88 9.1 9.24 3.67 9.59 8.84 10.3 12.1 6.98 9.67 9.91 7.96 11.3 8.76 4.54 4.08 9.83 10.9 10.5 1.65 3.67 11.4 9.26 0 8.62 7.11 9.04 11.3 3.78 3.99 10.7 11.3 8.79 9.47 12.2 4.25 0 6.67 11.9 3.99 4.73 0 12.2 11.1 2.07 4.47 7.7 7.33 11.1 8.26 4.48 5.84 9.99 7.01 8.28 13.1 10.1 4.48 13.3 11.3 9.5 9.43 8.03 9.44 7.14 7.54 10.4 9.94 1.46 9.3 11.3 7.47 4.84 1.05 11.6 7.36 11.1 11.4 10.8 16 8.02 9.07 0 10.7 2.07 3.4 11 0 10.8 8.04 7.62 2.88 9.14 5.44 9.18 9.77 10.2 10.2 11.3 3.89 1.05 9.01 7.88 1.65 7.6 7.75 9.93 7.1 7.84 10.6 1.65 6.63 3.99 0 8.47 11.7 6.28 9.72 9.85 11.7 4.67 8.79 8.57 9.84 7.68 10.3 8.16 8.61 10.2 8.62 3.89 10.8 8.05 11.3 8.04 9.18 8.72 9.45 8.51 11.4 8.36 8.51 10.1 13 6.96 7.88 10.5 4.61 6.83 7.95 6.3 9.52 9.54 7.9 1.05 10 9.19 5.04 10.4 9.5 9.45 11.1 6.7 10.9 4.25 9.48 9.48 7.7 9.94 3.89 10.7 8.29 7.09 7.9 7.81 1.05 9.95 9.16 8.86 9.48 14.3 14.4 13.2 12.8 8.88 9.87 13.2 4.94 14.6 7.97 12.8 12.7 12.4 14 14.6 11.5 13.7 10.3 14 4.33 11.9 11.8 10.3 13.2 12.7 12.8 13.1 13.3 13.7 12.4 13.3 13.6 13 12.7 12.1 13.3 13.9 12.6 8.78 8.99 13.2 4.99 12.9 14 13.3 10.2 8.9 12.7 12.7 12.5 13.7 10.7 14.2 3.58 2.07 3.67 8.74 7 11.9 2.07 3.4 14.2 7.92 10.5 10.4 9.3 8.75 12.2 13.3 12.9 11.8 14 12.7 12.5 12.9 12.5 12.4 13.1 12.9 8.82 13.6 13.2 13.6 12.1 13.3 13.7 12.9 9.36 9.59 12.3 9.65 11.8 6.8 9.87 11.4 8.47 8.88 5.58 9.31 4.17 5.33 10.8 9.57 11.2 8.18 10.7 10.4 8.93 5.7 8.92 6.56 6.18 6.22 11 5.79 3.25 8.93 1.65 14.8 6.9 6.72 12.4 13.6 4.17 11.7 10.7 1.05 8.26 10.1 10.8 1.88 9.37 8.78 11 10.8 7.22 11.4 7.89 9.46 11.6 10.9 11 4.54 9.42 10.1 9.05 12.3 6.34 8.3 7.75 8.44 10.2 9 10.2 5.41 13.2 7.82 6.83 7.46 9.84 5.97 4.61 7.8 9.64 8.17 10.8 0 3.4 11.5 10 9.18 5.82 8.79 8.86 3.67 9.59 6.83 1.05 3.08 2.07 0 8.15 3.54 1.65 3.08 5.84 2.07 10.7 2.88 7.59 7.39 8.42 12.7 10.6 11.9 10.2 9.22 11 5.84 9.25 10.4 10.7 9.95 9.33 9.99 8.79 5.37 8.08 4.79 6.82 8.49 9.96 7.94 10.6 7.38 12.4 10.1 6.34 4.41 7.6 10.4 10.6 10.7 8.14 8.31 2.39 1.75 9.27 6.18 7.05 7.52 6.75 8.23 8.65 9.6 6.84 8.5 10.4 7.02 11 2.07 11 4.17 7.66 4.67 7.17 8.36 6.18 9.49 4.99 11 5.61 10.1 6.88 7.84 7.77 8.88 12.8 9.64 4.41 11.6 4.94 5.77 7.01 9.19 0 7.64 7.7 10.9 9.21 10 8.74 1.05 6.46 7.03 9.2 9.93 8.92 7.8 7.1 7.41 5.9 7.8 10.8 11.2 10.1 9.37 8.11 10.4 4.99 9.87 9.77 4.61 10.5 3.44 9.27 10.8 2.66 8.76 6.86 8.42 1.65 8.97 3.08 11.4 9.03 3.08 7.4 7.86 8.07 12.3 5.55 9.53 10.1 7.17 7.31 9.55 5.51 7.23 8.12 4.84 9.08 11.8 0 7.83 8.04 8.93 11.4 11.3 10.4 9.42 7.03 5.79 9.78 10.8 6.53 8.76 9.78 8.7 9.78 5.87 8.44 8.59 9.72 9.81 5.48 4.73 4.67 12.3 12 4.41 12 12.5 4.25 8.98 6.57 9.01 3.25 6.56 7.71 8.76 7.5 10.2 1.05 2.88 5.92 4.48 12.8 3.25 1.65 11.8 10.3 8.19 11.6 10.9 9.85 6.39 9.93 8.46 5.7 8.6 9.89 8.58 10 3.89 10.5 6.39 4.67 1.05 4.73 5.13 11 9.33 10.5 6.56 9 9.13 1.05 3.67 11.2 8.32 9.62 4.84 1.05 8.42 5.87 4.48 5.97 3.78 5.64 5.51 3.08 0 7.97 6.26 1.65 10.4 9.26 3.78 9.49 10.3 7.19 9.07 4.89 6.98 8.49 5.61 6.22 9.83 9.47 7.86 9.31 6.55 3.67 8.6 7.27 9.18 9.18 5.67 9.61 6.87 9.81 10.2 8.11 9.62 8.47 9.54 9.43 10.7 10.4 9.4 11 7.91 8.64 6.48 0 2.88 3.89 8.3 3.99 9.13 11.3 2.39 14.5 0 11.1 5.33 3.25 9.14 3.67 11.2 1.05 4.25 0 4.84 8.79 7.53 8.11 11.9 3.47 1.05 10.9 3.54 9.25 8.72 6.24 1.65 5.45 2.39 1.05 10 2.66 6.39 4.79 3.78 0 4.61 5.55 6.8 6.41 5.41 6.93 8.7 11.1 0 9.8 1.65 1.65 2.07 8.5 2.66 8.46 3.08 13.4 6.43 9.67 6.26 5.42 11.8 0 7.09 8.9 10.8 7.49 6.11 9.54 0 3.54 0 0 2.66 3.67 6.66 3.67 5.51 7.03 9.44 10.7 12.1 6.07 8 8.99 9.1 2.66 9.61 11.2 10.2 9.17 9.05 11.3 11 7.52 8.69 6.69 11.1 10.3 7.33 9.74 10.1 9.1 5.79 8.85 11.3 8.19 8.7 10.2 9.39 9.58 10.7 9.18 9.68 9.35 9.51 10.3 8.06 10.3 10.3 10.2 9.97 6.55 9.21 7.97 0 10.1 7.67 7.52 6.48 8.83 6.87 7.14 2.39 10.5 13.8 9.69 6.11 10.9 9.38 5.22 9.35 6.84 4.41 9.12 9.23 8.75 10.8 8.79 10.4 9.76 9.25 8.4 7.72 10.6 11.2 9.51 4.08 9.7 9.98 8.88 10.7 11.2 8.14 6.39 6.64 8.36 8.08 9 8.43 8.87 3.08 5.13 7.98 8.27 7.78 9.6 2.88 8.43 7.36 4.79 4.79 11.2 2.88 9.16 8.52 6.82 7.38 9.27 6.67 3.54 9.42 8.28 13 6.82 6.35 10.3 4.89 10 5.99 9.9 9.64 9.57 9.38 9.61 9.74 10.8 9.62 10.2 8.26 7.3 10.6 10.2 10 1.05 6.15 12.9 8.7 11.1 8.77 14.4 7.43 5.9 11.2 6.61 7.09 4.99 3.67 8.86 10.4 10.9 9.54 10.1 8.99 10.2 4.61 4.25 3.4 6.8 5.3 10.2 9.38 9.04 9.57 9.45 11 8.45 9.34 4.73 8 10.1 8.51 9.6 10.3 3.48 12.1 7.82 11.3 10.1 8.93 2.66 10.5 5.55 6.09 6.55 6.95 11.2 1.05 9.05 8.42 5.7 4.54 9.52 8.75 9.56 8.71 5.97 8.86 9.78 5.82 8.47 10.6 9.85 1.65 4.17 9.06 3.25 1.05 6.82 1.05 7.57 0 0 5.7 6.65 3.89 1.05 5.37 4.73 1.05 1.65 7.63 4.48 8.83 10.6 3.25 5.41 5.13 3.25 0 7.46 10.2 10.5 8 11.1 2.88 7.59 5.04 8.41 1.05 11.3 4.94 6.64 2.07 5.04 10.7 3.54 6.34 4.99 3.78 6.79 3.08 10.7 8.81 1.05 2.88 11 7.93 11.6 2.88 7.96 0 6.56 7.41 0 7.84 7.97 8.82 9.4 3.67 9.85 4.41 4.89 4.79 1.65 8.18 0 6.64 2.88 8.59 1.65 6.73 9.8 7.85 4.67 8.85 8.48 8.83 12.8 9.41 6.95 10.2 9.18 10.9 10.9 10.5 2.07 7.57 6.42 8.04 4.79 12.1 11.4 4.99 7.29 11.3 11.3 10.4 11.1 7.61 10 8.25 10.2 9.32 9.46 11.4 6.88 8.75 7.78 8.86 7.7 4.25 9.28 9.21 10.1 9.74 10.2 8.6 4.17 10.2 8.05 3.08 10.3 4.67 11.1 11.1 10.3 11.4 9.87 10.4 7.9 9.9 9.33 11.1 3.11 10.3 6.24 11.2 7.85 7.35 10.7 10.7 11.8 7.33 7.92 13.4 7.77 8.84 9.07 8.04 8.6 8.19 9.7 10.1 12.1 10.1 8.52 10.7 10.3 9.92 9.7 9.82 11.3 10.5 8.58 9.98 9.53 13.4 10.4 10 8.98 10.9 9.35 8.64 9.54 1.65 13.1 5.79 11.8 10.4 10.9 9.25 11.9 7.4 10.9 9.89 9.96 9.48 8.8 3.25 10.3 6.35 5.48 9.03 9.93 9.13 12.6 10.3 9.03 9.65 7.62 8.84 7.26 13.7 9.03 10.5 8.03 3.67 9.11 1.05 6.79 5.76 14.6 9.17 9.54 8.05 12.4 1.05 10.9 13 10.8 9.63 10.4 8.7 0 10.9 7.03 12.2 12.4 10.2 10.1 11.6 13.2 9.79 10.2 5.33 10.7 10.7 8.56 10.3 12.1 8.54 9.44 11.2 10.2 10.5 11.8 11.3 11.3 13.4 11.1 3.89 7.34 4.84 11 9.64 12 6.69 9.81 11 13.9 11.4 10.2 11.7 8.9 9.32 11.4 3.4 3.78 4.73 0 1.65 3.08 1.65 2.76 10.6 0 0 1.65 2.3 11.2 10.6 10.1 12.2 4.61 9.59 10.5 8.41 8.63 7.52 10.3 8.04 2.66 2.88 8.3 10.4 3.25 4.89 5.13 10.4 9.27 9.02 9.54 12.5 6.69 9.13 7.84 10.2 9.66 2.66 15.2 2.07 9.17 10.5 11.6 5.87 11.7 8.92 9.86 8.88 12.3 9.23 9.03 7.95 10.7 10.6 7.2 12.3 9.98 2.07 7.33 11.7 9.73 13.9 10.4 12.7 8.57 11.7 4.08 12.3 11 7.57 7.3 11.6 6.63 9.2 8.65 8.53 7.03 12.9 6.07 10.5 11.9 7.5 10.9 10.4 9.02 8.13 6.15 8.85 7.07 1.65 10.9 12.3 10.6 10.9 12.7 8.44 8.53 10.4 2.66 6.24 8.93 11.5 9.86 10.5 7.63 7.92 8.17 10.5 4.79 1.65 7.36 7.11 10.5 10.9 7.35 2.66 4.99 8.26 10.1 4.08 0 12.1 0 9.41 11.7 11.2 3.89 8.98 7.78 8.51 10.8 8.21 9.48 5.95 12.5 7.08 7.14 9.65 11 9.9 0 9.24 10 5.64 11.6 1.65 2.39 10.4 4.89 11.3 6.35 11 9.75 8.22 4.17 12.4 11.1 6.67 7.74 4.08 5.26 10.4 13.4 5.28 9.47 9.25 1.05 9.72 9.48 0 10.2 5.44 8.16 3.99 6.76 8.55 8.73 10.2 9.95 7.46 10.6 5.22 8.47 4.89 9.54 6.46 5.33 9.99 8.73 6.73 8.95 2.88 11.3 10.9 0 11.1 9.58 8.09 8.19 5.41 10.7 1.65 10.4 10.3 10.9 8.74 8.92 6.06 6.53 9.69 3.25 11.5 7.14 2.39 13.4 10.6 10.5 10 12.1 9.89 14.2 13.1 13.7 8.6 9.89 10.5 5.58 9.81 11.7 1.05 10.3 9.8 10 9.71 7.56 12.8 12.7 5.99 7.75 5.37 9.55 15.2 12.6 4.79 13.7 7.33 9.75 6.37 11.1 10.2 10 13.6 8.78 14.9 10.9 9.93 10.2 4.33 5.26 9.6 9.63 11.4 10.3 1.05 10.8 9.09 6.86 3.08 2.88 0 10.3 3.99 12.4 11.9 11.5 10.6 6.22 4.25 6.18 11 7.69 8.58 10.5 8.07 11.9 2.07 7.12 11.2 9.13 11.3 1.65 12.5 12.3 11.5 8.07 12.8 12.5 9.29 9.14 9.99 3.4 15.1 1.05 11.8 8.75 10.4 14.5 8.72 8.03 6.91 7.88 7.02 7.43 12.7 7.43 11.7 10.2 8.19 8.72 0 9.44 1.65 2.39 4.79 6.02 6.93 2.07 3.89 2.66 11.5 10.3 11.3 1.05 10.8 4.73 9.58 12.6 11.5 9.63 5.13 9.21 10 10.4 11.2 12.9 8.39 6.73 7.98 4.33 6.44 12.9 10.7 8.87 4.99 3.54 3.25 7.04 9.59 7.5 12.1 4.08 5.79 6.04 6.15 7.63 2.88 8.56 8.91 1.05 7.03 8.78 9.69 2.66 7.78 3.25 3.4 12.6 11.6 6.5 7.1 3.25 7.62 6.43 7.99 2.88 10.6 3.08 7.4 7.28 5.7 3.08 4.17 8.16 4.94 7.81 13 4.33 8.8 1.05 6.26 0 5.7 4.61 9.4 5.61 7.73 1.65 3.89 9.27 3.89 7.28 6.35 4.25 3.99 5.79 5.17 3.67 3.67 5.79 3.89 6.56 3.67 5.17 6.56 4.48 2.88 5.87 3.08 0 7.95 12.6 10.1 0 9.95 3.25 3.78 11.4 4.33 6.02 1.65 8.73 10.3 0 3.25 4.08 6.56 5.37 6.86 4.48 7.07 4.48 9.62 9.55 5.04 14.8 4.33 9.2 7.04 9.2 7.53 7.71 10.7 9.42 1.05 11.1 5.17 12.7 3.78 13.6 15.4 12.4 0 10.5 10.2 11.7 9.19 11 12.1 10.3 9.46 8.86 10.2 9.78 10.7 2.66 10.9 11.3 11.4 10.4 10.8 9.04 11.2 10.3 11.4 14.4 8.99 0 7.69 10.5 5.17 10.6 5.13 8.84 6.76 8.62 10.4 2.88 6.69 8.48 9.4 9.8 9.56 10.6 10 1.65 10.8 1.05 12.9 11.4 11.2 10.2 10.3 10.3 9.45 9.07 11.8 8.56 5.41 10.1 10.1 8.39 9.46 10.6 10.1 4.89 10.9 10.6 9.9 10.7 12.6 12.1 10.9 11 7.7 11.6 11.6 8.58 15.9 8.47 0 11 13.5 7.78 2.88 9.19 6.37 9.9 6.35 7.45 7.86 9.26 10.4 3.25 11.2 12.2 7.4 10.4 11.3 11.3 9.77 7.04 9.99 8.47 11.6 10.2 9.34 8.27 2.07 1.05 5.26 7.32 0 0 1.65 3.67 7.04 4.94 1.65 0 10.9 7.27 2.07 11.7 0 2.07 14.8 8.29 8.45 9.78 4.61 9.94 3.78 11.2 9.86 4.17 6.35 6.41 9.41 12 8.6 9.43 9.86 12.5 9.52 13.1 13.2 12.8 13.8 6.5 11.9 13.9 7.4 12.3 8.41 9.21 8.3 6.95 9.93 8.55 9.09 8.77 6.79 13.1 10 9.39 7.52 7.46 7.63 7.14 7.75 5.82 5.61 7.8 10.1 8.96 8.8 10.7 7.7 5.95 4.08 9.87 9.87 9.82 7.03 7.46 8.87 7.59 7.35 9.88 8.3 7.3 6.46 7.83 3.25 7.36 4.73 7.05 7.07 9.05 8.5 10.1 5.51 2.39 9.73 4.25 6.79 6.66 8.17 2.07 5.09 6.8 4.54 6.71 12.2 3.08 3.78 6.32 6.73 4.67 0 10.3 9.65 8.49 7.1 9.05 6.92 6.41 7.93 6.15 7.13 9.2 11 7.81 9.07 7.52 10.3 5.41 9.85 8.95 9.81 8.66 7.03 6.26 7.99 3.4 9.75 5.95 9.83 7.54 7.66 8.97 7.56 10.5 7.49 8.64 7.86 10.4 9.89 9.15 9.16 6.82 8.39 8.52 8.7 10.8 7.22 7.56 9.35 8.48 11.2 6.26 8.46 8.62 5.58 6.83 13.4 7.81 6.45 7.5 5.61 8.64 5.55 7.97 7.1 6.86 6.69 6.26 7.68 5.58 1.05 7.23 4.99 7 9.85 3.78 10.8 8.83 8.92 10.7 8.81 12.3 7.12 10.5 7.59 14.1 8.43 9.49 10 8.95 13.1 9.04 9.48 8.23 10.1 10.8 12.9 5.61 7.07 3.67 8.33 11.2 8.63 18 8.58 9.43 9.53 10.5 9.51 10.5 11.2 12.8 8.66 9.96 9.77 11.4 10.9 10.4 10.3 4.79 10.1 10.5 9.67 5.13 8.54 8.7 2.07 7.93 8.59 2.88 11.5 11.7 7.66 10.2 9.96 10.6 10.5 9.19 9.41 5.84 10.5 9.39 7.5 5.37 9.19 9.53 7.67 1.65 12.5 10.2 7.03 6.72 7.92 9.78 9.07 9.33 10.4 6.66 10.2 9.86 5.61 9.73 9.56 9.96 13 8.96 9.28 4.54 9.32 8.6 10.8 9.05 10.8 6.86 8.2 7.29 11.1 5.84 5.64 7.46 7.15 8.84 9.04 8.86 10.5 11 8.64 4.84 9.98 7.93 8.75 3.78 8.14 10.7 8.66 10.1 1.65 8.97 8.97 10.4 9.86 8.49 8.18 8.26 9.29 11.6 10.9 7.44 9.03 11.4 12.6 9.24 9.68 6.2 6.35 9.2 2.07 5.54 8.09 8.71 6.67 9.19 9.47 8.33 12.1 8.44 8.37 0 5.3 7.61 11.9 1.05 10.7 5.9 4.73 10.6 7.91 9.79 7.99 9.01 8.77 10.1 8.73 8.07 8.5 10.5 12.2 7.22 10.6 11.8 8.61 8.04 7.53 1.83 9.77 1.05 3.08 0 10.4 5.13 10 10.7 7.47 4.54 8.29 1.65 7.24 0 3.78 7.49 2.66 1.05 8.41 9.17 9.92 8.69 6.24 8.37 8.54 10.6 1.65 2.66 3.78 3.9 11.3 7.92 7.88 7.98 8.12 10.2 7.55 10 8.07 9.17 10.1 9.15 8.52 9.62 13.2 8.99 9.68 9.51 8.88 9.03 8.34 6.72 10.1 10.6 8.91 8.92 7.23 10.3 7.28 5.76 7.69 7.12 6.9 6.48 8.67 9.33 11.2 8.73 2.66 5.76 7.36 3.25 7.95 8.71 8.82 7.15 6.46 8.82 7.03 7.7 7.96 8.7 10.3 4.99 9.1 7.63 2.88 8.22 9.95 8.4 6.84 8.11 9.64 7.63 9 9.06 7.11 9 8.63 8.88 10.9 8.01 7.52 9.33 10.1 7.65 6.02 7.97 4.17 8.4 8.36 9.87 7.33 5.17 8.18 8.87 8.71 8.07 7.68 8.36 8.05 9.6 10.5 6.75 8.25 9.37 8.58 8.53 6.63 6.93 7.7 9.49 9.14 8.01 7.68 9.94 5.79 9.93 8.22 8.63 9.77 7.1 8.15 9.42 8.88 11.6 10.2 9.62 2.39 6.24 9.9 7.24 9.81 7.37 5.39 2.66 7.86 2.39 10.4 10.4 7.64 9.05 7.24 3.89 8.54 7.77 10.9 6.53 0 9.43 1.05 10.6 8.64 6.92 9.51 2.07 7.97 8.29 7.63 8.33 8.58 10.4 8.17 8.51 11.7 4.08 5.51 9.42 8.71 9.42 7.04 9.59 2.07 0 4.25 4.41 7.61 4.89 8.08 11.2 10.5 8.91 6.63 9.3 7.9 9.03 7.68 4.73 3.99 8.26 2.88 7.03 8.58 7.48 10.7 10.5 9.27 2.66 5.04 4.79 8.62 5.17 6.13 9.35 0 6.72 6.04 5.58 4.33 7.73 9.37 6.67 6.87 8.93 7.39 9.06 5.22 9.6 2.66 6.15 7.7 7.48 2.88 6.15 3.54 7.56 7.9 6.66 7.59 6.97 1.05 7.04 4.48 0 5.37 8.2 1.05 6.34 0 4.79 7.79 6.97 1.05 5.72 9.13 9.27 10.8 8.01 6.64 9.1 7.58 9.38 9.78 10.1 10.7 4.67 8.06 10.8 5.44 10.2 10.2 9.06 6.55 10.7 7.6 7.07 9.35 10.6 8.62 5.51 8.04 9.04 6.41 6.88 11.8 8.42 10.4 5.33 4.33 0 11.9 9.62 7.92 4.79 6.55 9.07 12.2 6.61 1.05 5.99 8.59 5.17 4.73 8.4 6.77 0 10 2.07 8.97 4.94 4.33 9.68 9.69 4.25 7.48 6.75 3.36 8.57 1.65 0 9.12 7.14 9.73 7.9 6.66 6.45 10.3 6.56 7.21 11.3 5.41 8.4 8.59 8.66 3.78 7.72 0 7.6 8 8.12 8 3.99 8.43 5.61 9.43 9.1 2.39 8.2 5.33 12.2 0 6.02 8.22 7.54 5.99 9.64 8.94 5.09 7.67 10.4 10.5 9.55 7.29 9.64 8.46 8.14 8.9 8.67 9.13 11.3 8.76 8.04 8.62 8.19 0 2.66 0 4.33 11.1 4.99 8.95 2.15 4.67 2.07 2.39 7.5 12.2 15.4 5.87 7.99 3.89 4.89 5.64 1.05 9.17 7.01 7.03 6.09 10.8 4.54 8.67 6.61 10.7 10.7 8.67 10.5 9.86 9.92 7.7 8.68 10.3 9.07 7.98 8.95 7.81 7.99 5.87 8.84 8.29 6.98 7.57 8.7 5.73 8.38 6.02 9.28 7.98 9.71 8.99 7.82 9.31 9.09 8.62 0 10.7 10.2 12.2 8.65 9.6 8.88 9.65 9.4 11.2 11.4 6.39 4.61 9.97 10.4 8.03 9.32 8.27 6.92 9.19 10.5 9.49 4.94 10.3 9.69 8.82 8.59 3.89 8.97 9.85 10.5 3.89 8.8 9.06 5.3 9.96 9.53 8.16 8.26 9.41 6.41 11.9 8.95 6.24 9.38 10.2 9.56 8.16 7.25 9.54 8.58 7.02 7.99 11.3 10.2 9.32 5.26 8.08 7.05 11.8 4.89 8.19 5.87 8.08 8.13 8.36 10.2 5.13 7.98 5.41 11.4 7.26 6.26 11.7 8.17 1.68 7.29 5.87 10.2 6.35 8.46 10.6 10 3.25 10.8 3.25 10.7 8.11 4.94 10.9 7.72 15.3 9.38 6.02 9.73 11.4 5.67 10.6 5.55 9.88 8.61 10.6 8.19 9.47 8.11 9.36 9.04 6.11 6.73 1.05 5.51 9.4 7.26 7.79 9.53 6.41 7.67 7.26 8.97 7.58 13.4 9.58 5.9 8.58 9.28 7.7 7.01 11.6 7.95 11.1 11.8 8.66 12.5 10.2 12.8 9.32 7.44 8.17 7.13 9.16 8.37 9.98 10.3 10.2 5.09 9.28 1.05 11.1 8.33 8.16 10.3 9.66 9.73 5.36 10.2 8.53 5.33 11 8.42 9.11 6.5 1.05 3.89 12.2 12.5 8.58 0 6.37 5.9 4.33 7.46 9.76 5.13 10.8 11.9 14.5 5.76 8.62 1.65 10.3 5.04 10.8 10.2 9.66 4.84 9.35 10.2 11.8 10.6 9.79 1.05 9.92 6.35 2.66 11.3 9.47 9.76 11.5 9.86 11.7 9.45 4.33 10.3 9.14 8.12 9.61 7.3 9.64 10.2 9.5 7.89 8.94 7.93 9.85 10.4 10.2 10.2 11.5 1.65 7.89 6.8 8.91 8.5 11.7 9.51 9.08 6.37 9.9 12.2 8.4 11.2 10.2 10.8 1.65 8.76 11.3 8.65 4.73 12.2 9.97 6.13 0 8.86 13.9 9.76 5.73 5.48 7.8 3.4 8.95 10 4.1 12.5 9.58 10.9 10.8 11.7 11.3 6.84 2.88 9.52 3.89 7.94 4.48 4.17 10.3 8.57 7.13 6.48 7.67 9.59 3.99 7.3 1.05 11.1 8.44 8.75 5.61 9.41 10.2 12.8 7.2 9.89 4.27 9.65 6.91 10.3 10.2 5.9 10.3 7.08 12.2 9.08 8.47 10.2 10.7 9.54 10 0 10.4 11.2 3.99 9.54 9.85 8.07 9.6 5.26 3.08 4.17 9.17 10.1 2.66 9.09 8.77 5.13 11.7 14.2 9.94 10.2 7.6 7.86 8.93 3.54 8.98 8 9.95 9.09 10.6 8.73 12.9 11.4 10.5 10.6 11.3 10.2 7.09 13.2 10.3 7.43 9.42 7.25 9.91 9.09 2.88 8.57 1.05 9.8 10.3 9.14 7.75 9.86 1.05 10.3 10.6 11.8 9.63 9.11 11.8 7.83 8.59 6.77 10.8 9.23 6.15 4.33 11.5 3.08 9.55 9.99 8.71 9.05 6.73 2.88 1.65 10.3 3.54 0 1.65 9.48 2.88 9.02 4.25 3.08 5.51 6.92 1.65 1.65 3.4 5.48 0 1.65 8.03 3.08 9.76 11.9 10.7 9.24 7.05 5.73 2.07 5.61 8.44 8.63 1.05 8.26 6.37 7.71 9.62 7.25 6.3 6.46 8.86 8.8 8 1.65 8.34 2.07 11.9 12.2 9.09 2.88 3.67 0 5.64 6.39 0 4.17 8.87 8.2 8.99 7.04 9.49 10.1 1.65 8.99 0 4.48 1.05 1.05 10.6 7.73 5.7 8.82 9.06 9.81 5.81 10.7 2.07 9.31 10.8 9.76 9.16 8.19 1.05 6.34 10.2 10.7 9.6 1.65 8.84 9.11 9.34 9.32 7.29 7.64 2.66 3.78 12.4 1.65 10.4 10.2 8.19 4.61 5.95 11.6 10.4 10.1 9.12 9.82 2.07 6.24 11 7.76 8.8 11.1 7.73 8.72 8.12 3.67 9.83 11.1 6.03 10.1 4.08 8.09 4.79 7.4 9.74 8.62 8.88 6.09 9.64 9.33 3.4 9.53 8.72 9.34 8.68 8.62 2.07 5.22 1.05 7.87 1.65 3.21 9.97 7.04 10.9 7.73 7.22 6.02 10.1 11.5 5.82 7.52 6.3 6.07 10.3 7.74 4.67 0 2.88 2.39 4.99 2.39 4.48 0 1.65 8.34 10.7 5.84 2.07 10.4 9.09 7.18 9.27 9.25 6.48 10.6 10.9 8.01 8.75 7.35 9.65 0 6.37 1.65 4.17 11.3 9.71 10.7 2.07 9.7 10.7 7.08 9.5 9.85 0 3.99 6.48 2.07 8.53 8.71 2.39 9.54 10 5.61 5.26 11.9 10.1 4.17 10.1 4.48 8.83 9.58 8.36 7.89 10.4 7.68 3.89 10.6 10 9.15 6.98 3.54 12.4 2.39 6.83 1.05 3.67 6.66 5.84 9.42 10.9 9.89 9.27 5.22 6.45 9.21 9.74 3.67 6.79 9.71 2.88 7.42 8.42 5.33 7.15 9.25 9.14 8.64 7.91 9.64 9.55 6.32 7.81 8.17 8.13 7.21 6.44 7.4 6.28 3.08 8.75 9.7 10.8 10.5 8.67 8.52 5.09 11 7.99 10.3 8.68 7.39 10.5 10.2 6.24 8.05 8.78 4.54 5.78 10.5 10.3 7.58 9.28 10 10.7 3.54 1.65 4.99 9.69 10.6 9.43 3.25 9.09 4.33 5.58 4.08 6.63 6.09 8.05 5.76 9.05 5.13 7.78 5.55 5.04 4.54 0 9.89 10.7 11.1 8.93 6.67 3.67 8.52 9.23 7.98 9.37 8.98 10.2 5.92 11.1 7.04 9.17 9.28 9.9 8.69 10.4 7.12 8.31 9.62 7.1 8.97 9.49 9.07 10.7 9.7 7.25 9.64 8.71 8.56 8.69 9.95 9.35 7.75 8.89 6.84 8.38 9.3 4.41 9.28 10.5 9.64 6.69 8.08 6.53 8.32 9.29 10.8 8.23 8.11 8.84 1.05 8.26 11.7 8.81 9.4 4.25 8.45 10.3 7.36 10.7 2.09 9.85 7.83 8.48 9.47 7.49 7.27 9.84 5.33 10.8 8.74 8.37 9.14 8.49 8.76 9.7 10.5 6.76 9.41 8.19 9.08 10 9.94 2.88 6.72 7.19 8.11 9.46 0 10.8 8.89 10.5 9.59 10.3 9.66 9.85 8.55 8.96 2.07 11.4 11 9.05 8.07 10.2 4.08 8.76 3.08 9.67 7.26 11.4 3.08 8.89 7.64 8.44 9.38 6.51 6.55 9.15 7.29 9.25 10.4 11.3 11.6 9.16 8.35 7.52 10.1 6.8 7.39 7.68 4.84 9.08 10.1 9.45 7.46 7.28 5.84 3.67 5.7 9.53 9.14 10.7 8.67 11.8 6.76 9.83 9.82 10.5 7.24 9.18 3.89 3.78 2.88 10.5 8.03 10.2 6.86 6.83 7.84 7.61 9.24 7.53 6.3 10.2 5.99 7.39 10.2 7.58 8.94 8.63 11 6.48 11 4.61 3.4 11.9 8.16 8.19 0 10.7 5.82 2.88 9.88 9.77 8.52 1.65 7.37 7.92 5.22 7.72 5.58 7.26 10.4 7.83 8.09 2.07 1.05 7.07 8.81 10.6 5.55 9.02 8.9 10.9 4.54 1.05 0 2.66 9.94 8.98 8.81 9.62 10.2 6.18 6.96 3.08 8.92 5.55 0 8.13 9.26 10.8 5.33 5.13 6.95 8.57 4.48 5.61 2.07 9.06 11.7 3.54 6.91 8.28 9.5 12.3 6.5 9.88 10.8 8.48 6.51 5.51 12 7.78 10.9 4.84 9.44 1.05 1.05 9.72 9.54 6.11 8.9 8.84 10.7 6.58 3.54 8.93 5.37 3.08 7.11 8.28 9.62 10.3 5.99 8.98 5.22 7.33 8.92 8.93 6.26 5.48 6.07 2.39 8.38 8.74 8.2 9.69 8.75 1.65 7.92 8.95 10.6 5.92 8.38 9.31 4.61 8.09 3.89 3.08 1.05 10.9 10.4 7.19 5.82 0 2.07 8.98 4.33 8.04 7.81 9.75 6.32 9.4 9.85 6.41 10.1 6.69 9.49 6.55 8.43 5.84 6.51 7.49 11.3 6.87 8.03 6.24 8 8.92 8.79 9.54 8.01 8.99 1.65 10 10.4 10.1 9.82 10.9 10.4 6.5 8.48 16.9 8.98 8.04 7.36 5.48 7.1 8.74 9.82 9.43 10.2 6.69 9.6 6.28 8.79 11.2 9.18 11.8 10 8.58 5.26 9.14 9.75 7.47 8.45 10.9 9.78 4.33 8.03 7.92 10.3 7.79 8.53 8.52 10.8 6.83 10.5 8.58 5.97 8.5 1.65 9.39 8.92 7.64 7.61 11 8.39 1.65 7.8 2.07 7.79 8.07 8.69 6.87 7.07 8.73 4.67 7.19 6.48 8.59 8.66 5.48 6.35 5.09 9.47 10.3 9.61 7.51 5.17 10.8 9.59 8.35 7.41 1.05 7.75 10.2 10.1 4.33 4.84 9.83 11.2 9.49 7.69 9.84 6.13 6.8 8.48 1.05 6.88 10.8 9.74 9.95 7.79 6.51 10.2 9.54 9.06 8.37 8.25 6.71 9.71 9.05 8.5 8.4 10.5 10.1 8.48 5.95 4.61 7.84 4.54 4.99 8.89 10.4 11 9 1.05 8.87 1.05 9.84 11.8 9.49 9.12 5.7 0 6.11 10.9 5.37 7.21 10.2 9.36 7.7 1.05 6.64 2.07 0 9.74 10.6 10.2 7.24 10 10.2 10.1 8.12 7.23 10.3 10.8 0 8.92 1.05 5.82 8.41 10.5 9.11 10.7 7.41 9.41 10.1 9.93 5.33 5.41 10.7 2.88 5.26 7.08 3.78 10.2 8.46 10 6.46 7.81 8.49 9.29 10 7.12 6.35 11.1 10.4 9.71 9.64 10.6 11.2 9.44 10.2 8.66 10.1 8.73 9.25 5.61 8.75 8.34 9.91 8.57 3.25 10.4 5.22 5.17 1.05 9.23 6.98 8.33 7.82 8.23 4.8 4.08 12.6 7.15 9.78 6.32 7.74 10.3 8.53 10.6 10.3 8.12 3.08 10.3 11.4 11.8 9.18 8.41 9.78 10.7 9.9 8.53 9.03 9.84 8.47 7.68 8 8.43 7.55 9.08 6.34 2.07 2.07 8.27 9.3 10.2 8.53 9.29 3.78 5.51 7.95 11.9 6.32 11.3 8.56 10.6 5.41 6.09 9.24 9.27 9.72 9.15 8.93 3.78 8.75 7.78 2.39 4.94 5.84 7.5 8.71 11.8 9.9 7.85 5.95 9.76 6.43 4.99 9.42 4.54 10.2 4.25 7.39 10.4 10.4 10.4 10.2 7.74 9 12.3 11.2 8.74 11.9 11.2 11.7 0 10.9 10.7 10.5 11.1 10.6 10.2 9.88 8.6 10.6 8.2 10.1 11.4 6.41 8.05 10.1 7.44 9.26 12.2 10.8 2.88 8.75 11.3 6.8 10.5 8.98 5.22 11.8 3.31 9.62 9.33 9.14 7.88 9.52 5.26 2.07 10.8 5.48 9.85 8.14 8.84 8.91 11.6 12.7 11.6 9.97 11.7 10.1 8.54 10.4 7.36 10.9 9.55 9.77 9.34 11.6 6.66 9.27 8.09 6.72 0 8.17 9.36 8.32 3.78 7.55 4.25 3.25 8.54 10.2 9.83 14.5 11.2 11.4 12.9 11.3 11.9 7.2 8.27 7.97 9.02 9.49 12.8 8.52 7.29 9.84 3.08 9.73 4.08 2.39 10.6 6.02 7.44 1.65 7.39 5.9 8.6 3.25 9.29 11.5 7.87 5.64 8.63 10.5 10 10.6 9.33 3.78 4.73 1.65 4.08 9.87 9.35 1.65 11.4 10.2 4.79 10 7.7 3.08 5.67 6.64 10.2 3.67 11.2 10.3 11.6 6.88 9.92 3.67 8.58 8.35 8.91 7.84 8.35 1.05 7.24 6.34 9.42 4.48 2.66 9.71 8.7 7.86 6.32 12.2 8.55 10.3 8.67 4.25 3.78 7.56 1.65 9.26 9.53 7.8 9.81 9.82 10.7 10.1 12.8 7.1 9.67 9.7 9.07 3.54 3.89 4.99 13.9 11.4 9.86 10.4 8.53 9.82 8.82 9.92 11.8 10.2 9.46 9.36 8.15 9.32 10.1 10 10.7 10.5 10.2 9.69 10.1 1.65 5.96 7.98 10.8 10.4 10.6 11.1 4.61 2.88 7.46 10.8 4.79 8.12 10.1 3.89 8.04 7.57 9.47 10 11.1 10.9 0 10.1 3.39 9.62 10 12.9 7.01 10.2 11.2 11.3 10.1 13.3 8.27 4.99 11.7 9.79 11.7 0 2.07 4.48 11.7 2.07 0 10.9 8.78 10.7 8.23 1.05 9.7 8.26 5.73 7.19 10.2 8.94 6.34 9.84 5.99 9.19 2.07 2.07 9.07 6.02 8.69 8.92 11 9.44 6.13 3.54 9.2 6.22 8.06 0 2.45 8.53 1.05 0 7.34 2.41 10.5 9.91 7.58 6.6 7.6 9.68 12.5 11.7 1.65 7.6 7.46 10.9 6.37 9.67 7.12 10.6 8.01 6.28 6.66 7.96 4.61 10.2 10.5 12.2 8.33 9.41 7.45 7.21 8.22 9.66 7.67 15.2 9.54 11.1 9.97 1.05 10.1 9.85 7.38 4.94 4.54 9.19 11 9.8 9.97 10.4 8.13 9.42 8.1 11.2 4.54 2.88 6.63 9.29 5.16 9.75 7.98 10.9 8.55 8.85 7.84 1.65 7.5 1.65 7.56 4.33 10.6 10.6 9.85 7.18 7.97 8.84 8.62 1.05 9.52 6.34 8.86 5.44 1.05 6.5 7.95 5.97 7.67 7.08 9.43 4.18 9.79 7.44 4.48 10.9 8.65 9.15 12.9 9.59 7.33 6.07 6.63 10.8 8.82 8.76 12.7 7.5 5.9 8.17 4.25 10.8 4.73 10.7 11 9.62 6.18 5.26 10.8 5.92 4.33 9.37 11.6 4.67 6.73 10.4 9.24 7.78 8.71 7.93 6.04 9.35 6.3 7.75 0 3.89 7.41 5.33 9.41 10.4 9.3 9 7.52 8.43 8.94 7.78 8.87 2.66 9.84 8.49 7.41 9.47 7.13 10.8 8.22 9.44 10.9 3.33 8.44 1.05 4.54 7.1 11.9 9.54 8.66 11.7 6.76 8.74 10.3 8.6 5.97 11.1 9.52 4.08 8.84 10.2 9.07 9.59 7.76 5.02 0 11 10.5 9.99 9.63 9.78 3.67 10.3 9 9.12 5.37 10.1 5.76 8.63 6.83 9.98 7.51 10.8 9.83 9.64 9.4 10.2 3.54 9.63 9.54 8.89 7.46 7.98 10.3 9.26 2.66 9.94 7.51 6.92 10.7 6.77 6.58 7.37 8.27 11.6 7.75 8.25 10.4 6.86 12.4 1.05 5.76 4.48 4.99 5.92 5.44 7.94 11.2 6.58 11.7 10 9.65 9.83 9.03 8.39 11 10.2 10.7 2.07 10.8 9.93 12.4 9.41 8.63 8.73 2.66 3.78 5.4 9.51 8.03 0 6.07 8.74 8.82 10.4 9.66 10.8 9.54 7.53 6.6 8.94 9.03 9.68 7.64 10.6 6.13 11.4 8.52 10.7 3.54 9.2 12.1 3.67 9.53 11.6 11 9.46 10.7 10.5 5.58 8.77 4.41 8.23 4.84 8.69 8.88 2.66 8.77 10.6 10.7 8.35 9.61 7.26 8.28 8.03 6.24 9.69 3.25 7.86 0 8.35 8.05 9.33 6.22 2.07 10.9 6.13 11.9 13.5 5.58 9.99 10.3 8.86 5.58 3.08 8.19 1.05 5.87 3.89 5.97 10.5 10.8 6.35 3.8 6.28 1.65 11 7.36 10.5 10 8.53 6.84 8.37 2.66 9.22 3.54 8.05 9.03 11.4 8.48 7.17 9.41 2.15 8.42 7.37 8.36 8.52 9.29 6.76 5.76 8.74 0 4.73 8.58 9 0 8.76 3.08 10.1 8.99 5.64 3.99 8.02 9.29 8.46 5.67 9.18 10.4 6.6 8.49 9.55 9.82 8.34 8.24 7.77 11 10.2 3.78 4.79 7.98 8.22 7.46 4.33 8.95 9.06 6.24 11.1 7.22 9.33 9.15 10.3 8.68 11.9 8.72 10.7 9.46 9.41 10.4 9.07 7.43 0 7.76 9.28 7.26 9.53 5.04 3.78 6.83 4.73 8.17 5.64 1.65 7.17 5.97 12 4.41 11.3 10.7 3.99 6.02 9.63 5.6 6.83 6.63 7.03 9.63 3.08 11.9 8.17 8.9 9.41 8.63 5.9 11.6 9.54 8.49 7.21 5.73 8.72 0 10.5 9.35 0 10.4 7.12 6.04 7.76 9.06 9.05 9.93 10.2 8.95 5.73 11.2 5.3 3.72 7.52 8.73 4.17 10.3 9.51 10.2 6.86 8.13 8.66 9.11 6.37 10.5 8.34 9.69 9.93 7.61 7.01 9.92 8.77 9.18 9.18 9.37 5.22 10.6 11.3 9.64 9.42 3.25 8.77 11 7.64 6.48 9.25 9.46 3.67 11 9.27 8.74 8.59 11.8 3.08 8.58 10.1 6.61 6.58 7.27 6.87 10.6 11.5 5.51 6.92 9.9 9.74 8.91 4.54 10.7 2.66 3.78 9.3 9.32 10 7.6 2.07 7.03 6.66 8.86 8.04 8.16 10.1 8.6 9.8 8.12 9.93 5.79 2.88 5.73 11 7.59 10.6 5.33 10.7 7.75 9.73 8.83 3.08 11.9 8.49 9.45 10.1 5.73 5.04 8.78 9.73 8.43 6.26 0 9.61 7.92 7.01 9.57 10.2 9.33 10.3 9.51 1.65 9.64 9.38 11.2 5.82 7.02 11.3 13 2.66 11.8 4.08 10.4 5.92 10.8 1.65 7.36 0 8.66 6.37 4.89 6.82 9.57 11.2 10.1 0 13.3 9.13 9.15 8.8 7.15 9 9.13 6.39 4.38 1.69 10.6 9.33 8.38 8.64 10.7 10.3 8.42 10.1 9.87 11.1 10.2 5.7 11.6 10.2 2.88 10.2 11.5 2.66 2.07 6.58 1.05 10.9 5.55 9.64 4.89 7.98 7.62 11.1 0 4.17 2.07 10.1 9.73 4.17 9.48 9.48 5.99 8.07 6.58 4.17 1.05 11.1 10.5 7.6 11.6 5.13 7.31 9.38 6.99 10.6 9.43 1.65 10 9.27 2.66 8.6 10.7 11 9.13 9.86 9.25 9.73 5.87 6.64 6.87 9.31 4.25 8.85 11.7 2.66 10.3 9.6 6.69 4.79 10.2 4.99 11.5 5.95 5.9 9.72 8.32 11.6 8.96 7.5 3.67 8.27 0 9.03 3.67 8.54 8.37 8.51 8.46 10.1 15.9 11.1 3.25 10.3 4.99 7.04 9.13 7.97 9.15 7.94 6.96 6.64 9.16 0 8.82 9.81 8.83 6.55 11.3 7.53 9.28 11 9.92 11.6 8.32 9.42 7.77 2.07 8.06 12.8 8.48 8.19 8.78 8.38 9.2 5.17 8.2 9.02 12.5 11.2 4.61 6.86 6.97 11.2 3.89 8.59 12.2 12.6 8.21 10.6 5.17 4.84 7.8 12.3 10.2 10.3 0 8.65 10.4 8.1 9.96 9.31 5.41 9.85 9.26 12 10.3 10.1 9.54 9.84 12.9 10.5 9.79 5.67 11.9 7.99 8.39 8.19 8.2 7.84 10.2 10.9 3.78 8.45 10.3 6.09 9.56 7.57 9.76 11.9 12.9 10.9 10 9.57 11.8 11.8 11.2 10.8 9.69 7.33 9.51 9.37 10.8 10.2 9.93 9.68 4.92 9.91 10.6 6.2 9.83 10.9 8.59 8.53 12.9 3.64 7.93 11.7 6.26 10.1 8.61 11 10.5 3.67 10.7 14 6.51 2.39 13.5 9.44 11.2 7.51 11 10.3 8.73 12.2 9.96 9.18 12.3 10.8 7 8.19 9.87 7.32 5.58 9.5 5.44 7.82 8.8 6.58 6.66 11.3 2.07 1.05 10.1 9.78 10.1 7.95 9.46 5.44 13.3 10.7 9.05 9.37 10.7 10 10.1 8.64 10.6 7.87 11.2 9.34 9.53 7.22 9.71 9.49 8.17 6.93 12.2 13.8 13.4 7.54 9.92 11.2 11.4 10.9 7.14 10.9 14.2 10.3 4.67 11.4 9.14 8.05 8.93 7.97 10.5 9.02 9.9 9.85 7.85 8.81 10.4 9.81 10.5 9.28 6.84 9.41 11.8 8.23 9.84 8.46 10.1 9.81 10.6 9.05 8.57 10.5 8.56 7.73 2.88 3.89 10.8 9.35 11.7 8.22 10.6 8.3 5.65 12 5.44 10.1 9.18 8 7.33 8.66 2.39 11.3 9.55 14.9 4.33 6.7 9.61 7.08 8.27 9.77 10.5 7.39 9.08 8.16 8.37 9.95 9.55 7.21 11.2 11.9 10.1 10 6.84 12.9 8.99 9 6.26 14.4 7.03 9.81 9.92 13.9 7.79 10.7 7.65 7.67 9.03 9.9 9.41 8.84 6.9 11.6 10.7 10.7 9.57 10.3 7.87 4.61 13 8.72 10.1 10.4 11.8 10.4 11.3 11 10.5 9.96 5.13 9.1 9.72 12.9 10.3 10.8 9.77 8 2.39 11 10.4 9.5 9.89 8.67 10.8 9.13 10.7 9.82 11.1 9.76 9.94 11.8 11.5 12.1 14.3 10.6 3.25 10.8 11.1 9.93 10.6 8.95 10.6 6.04 10.4 10.5 8.69 9.74 10.2 10.8 6.48 8.92 10.3 4.79 11.3 10.1 6.63 8.95 7.28 8.14 3.25 11.5 8.47 5.92 9.94 9.11 2.66 7.73 9.85 8.44 10.2 10.9 10.3 10.4 9.28 7.97 11.3 11.5 10.2 8.69 7.12 9.25 8.93 9.32 5.17 10.2 10.4 9.56 8.69 7 13.1 11 10.1 10.3 9.9 9.91 9.48 10.9 9.15 11.3 10.7 9.22 10.4 7.25 10.3 10 10.6 8.2 9.87 7.71 10.2 7.77 12.1 7.67 7.92 10 9.8 9.02 9.39 12 10.2 5.73 14 9.98 9.13 9.41 9.27 10.9 7.2 9.75 11.4 11.3 4.25 7.5 9.16 9.29 10.8 2.39 9.48 10.6 8.61 11.4 9.18 11.8 10.8 8.78 9.83 7.37 9.93 10.7 4.33 9.91 6.53 10.2 8.29 4.73 8.58 9.57 8.42 7.51 11.4 10.2 3.4 8.53 4.73 9.3 5.9 8.69 11.2 6.64 2.66 10 1.05 4.73 9.33 10 9.33 10.8 7.01 11.9 11.9 2.07 1.65 10.5 9.65 10.2 10.4 3.26 9.33 9.74 11.1 7.12 10.7 11.4 7.22 8.71 10.7 7.84 12 10.4 9.27 1.65 8.83 10.3 3.25 11.8 8.56 8.91
-TCGA-SC-AA5Z-01 5.84 7.61 9.73 9.57 6.64 8.06 2.12 4.26 1.99 1.54 1.73 7.95 7.69 4.29 4.36 9.18 10.1 10.6 8.02 9.54 8.65 11.3 9.31 3.26 9.98 8.26 3.84 9.45 2.86 7.83 3.33 5.36 6.23 0 3.85 0.59 1.28 5.38 4.03 3.69 4.52 3.26 7.72 1.76 8.33 3.46 0 4.72 11.1 6.24 1.54 6.74 6.37 10.1 5.34 2.12 6.21 0.56 6.41 4.72 8.18 4.61 8.71 2.32 2.85 2.53 7.28 7.32 10.2 3.28 5.07 7.39 1.54 3.52 0.56 2.12 5 5.44 3.55 2.27 4.87 1.54 1.94 7.77 5.55 0 4.82 0.97 4.33 3.26 8.16 4.79 7.13 8.19 5.27 2.41 0.56 5.04 4.5 1.95 4.07 5.82 3.69 4.86 3.03 3.11 6.02 6.62 7.59 5.15 1.28 0.56 8.86 7.23 6.36 1.76 3.56 4.46 2.12 1.28 4.03 3.14 0.97 3.11 0 5.44 3.69 2.75 3.69 9.31 4.49 2.27 2.94 6.92 4.58 1.54 3.85 3.69 3.52 7.72 7.31 9.95 0 2.75 5.22 11.4 0 11.2 0 4.26 3.94 1.95 4.29 8.57 11.1 3.75 2.12 3.14 9.73 4.49 7.25 5.26 1.76 8.43 9.2 5.99 5.83 5.92 5.55 4.72 9.67 10 3.98 4.15 5.43 4.03 4.15 6.36 6.85 4.46 5 8.72 3.33 4.77 4.21 2.53 3.94 0.56 8.81 4.72 8.55 9.82 4.27 4.3 4.55 8.6 3.85 7.53 8.09 9.16 9.42 8.74 8.53 11 8.52 4.26 5.61 10.4 11 10.6 8.08 8.01 10.3 10.7 9.57 9.73 8.93 9.97 10.5 10.8 8.55 9.65 11.8 10.9 8.72 8.12 4.58 10.7 9.29 12.6 9.18 4.96 9.56 11.9 8.36 9.73 9.78 9.82 9.69 0 12.2 6.64 12.5 11.8 11.8 13.5 12.3 12.5 8.46 14.6 7.29 0.97 7.72 10.2 9.47 2.85 10.7 12.1 0 12.5 3.58 11.3 7.6 10.2 9.72 10 9.59 9.85 11.8 9.77 8.62 7.94 8.2 9.73 11.4 10.6 7.52 13.8 10.9 12.3 13.2 11.8 10.4 8.12 10.5 10 11 8.07 11.2 9.4 6.74 9.97 10.6 6.35 10.3 9.81 7.5 11.6 8.08 8.94 11.3 12.5 10.8 9.48 10.1 11.5 6.53 9.12 7.8 8.31 13.2 8.76 8.37 7.63 6.01 11.4 11.1 2.94 9.95 6.77 10.2 10.6 10.8 9.39 9.92 9.11 10.9 9.03 9.54 8.63 10.8 8.72 10.7 7.56 9.51 11.2 9.33 8.19 7.95 8.68 11.4 7.45 9.15 9.55 8.28 13.3 9.99 9.01 12.2 9.08 10.4 15.2 9.71 0.56 5.34 9.58 7.32 9.01 1.54 5.84 6.82 11.5 10.3 9.9 8.87 6.35 7.98 13.4 6.97 6.27 7.29 10.9 10.1 10.2 10.5 7.38 8.16 10.9 2.12 6.8 9.02 9.65 9.09 9.21 10.2 10 6.64 10.1 7.35 9.41 2.12 9.02 10.9 8.82 6.26 9.98 10.6 3.75 8.2 10.2 8.65 11.2 9.87 8.66 11.7 11.1 9.85 10.4 10.3 8.1 8.74 8.47 10.7 10.4 8.78 10.9 9.21 9.21 8.39 8.6 9.5 8.4 8.87 10.8 5.47 10.9 10.4 10.2 3.8 9.81 10.6 11.9 8.38 9.04 5.56 6.79 7.71 8.21 8.24 9.41 10.5 13.3 10.3 5.07 11.3 3.33 7.19 8.39 0 9.37 4.38 8.71 7.67 11.3 9.27 8.21 6.61 10.8 3.4 5.52 11.4 9.71 12.2 2.27 10.3 8.09 3.46 6.05 7.67 7.79 5.97 3.98 8.64 1.76 9.72 9.48 8.59 10.7 10.6 7.35 14.3 10.2 2.64 8.96 11.8 9.65 12.3 10.5 8.52 3.75 4.49 10.1 9.55 9.32 12.8 9.35 6.84 9.14 9.21 13.1 12.5 14.1 9.39 7.53 8.23 9.3 9.87 6.95 10.5 8.49 0 9.92 4.36 15.2 8.13 10.5 11.5 11.8 11.7 10.1 6.19 11.2 9.48 12.4 11.2 10 8.35 10 10.7 8.56 10.5 9.78 9.65 9.37 8.87 11.6 8.04 7.5 10.4 9.85 10.3 9.67 10.4 13.5 11.2 0 9.31 6.14 9.21 9.07 10.5 10.5 13.4 10.1 8.79 9.04 8.11 7.15 10.3 7.91 8.47 10.3 11.5 7.61 9.49 1.95 9.51 8.52 10.5 10.6 10.3 11.3 10.1 9.23 9.25 12.3 10.5 11.5 11.5 0.97 12.7 10.5 10.6 10.3 12.9 11.8 12.6 10.5 8.34 9.98 9.97 7.47 0 8.39 7.14 8.76 8.58 9.7 9.62 10.8 13.6 9.7 9.92 9.8 0.97 5.31 11.2 9.13 7.26 12.9 10.1 9.59 10 13.6 10.2 12 10.7 11.6 1.95 11.2 10.4 8.6 8.06 11.2 6.56 5.78 10.1 8.93 11.1 11 10.3 14.3 11.2 12.1 13.5 0 12 11.1 11.4 9.39 9.22 8.11 10.7 9.23 3.19 6.91 8.17 0.56 9.25 10.8 10 3.33 11.5 10.2 10.2 7.89 9.03 10.6 11.9 11.6 11.1 13.2 8.73 9.52 5.36 6.46 14 9.62 2.53 8.5 8.54 11.1 11.4 9.54 9.08 12.3 0.56 7.24 10.7 7.72 9.32 8.54 4.66 10.7 11 9.84 11.6 10.9 4.79 11.2 8.08 10.7 9.97 7.62 11.4 9.46 12.8 6.95 5.36 8.47 6.34 8.38 11.7 8.84 12.8 14.1 8.31 8.68 13.4 11.8 2.53 9.17 6.11 9.44 2.51 6.46 9.98 8.18 3.98 9.42 9.98 6.03 9.24 12.2 12.4 9.94 7.34 11.3 10.5 10.8 1.28 0.97 6.56 10 4.36 8.26 7.81 8.54 11.1 9.35 9.85 6.17 1.28 6.31 9.17 9.5 10.1 0.97 9.44 11.7 6.52 1.28 3.89 10.9 11.3 5.76 5.83 8.54 6.32 9.34 9.53 8.98 2.64 8.31 14.2 5.52 11.3 11.8 10.6 11 12.1 10 12.1 8.66 5.87 4.48 10.9 5.39 2.41 0.56 3.46 8.74 6.5 10.3 0 9.83 8.2 2.53 4.49 12 11.8 7.45 5.66 11.1 9.71 1.28 9.91 10.3 10.7 10 10.5 11.6 10.7 10.9 10.2 8.08 9.36 11 9.11 7.46 8.85 8.21 9.52 6.58 11.7 7.43 10 6.7 4.58 8.03 9.62 7.19 1.95 4.74 12.4 10.2 1.76 0.56 9.33 8.82 11.3 8.23 7.21 4.22 9.17 0.56 5.47 6.53 8.9 6.66 9.58 9.27 9.6 0.56 9.95 2.41 10.5 9.08 6.27 11.4 9.19 8.4 6 9.87 12.4 5.04 8.69 2.95 7.84 8.17 9.55 10.6 9.17 10.2 7.81 6.53 9.98 8.88 9.54 0 11.2 8.64 9.34 0.97 3.69 11.2 8.55 9.26 14.2 9.7 1.54 11.5 8.65 11.5 9.13 2.85 8.32 10 7.63 11.1 9.37 10 9.8 10.6 9.51 3.46 5.54 0.97 11.2 9.36 12.7 7.89 10.5 10.2 11.1 10.4 11.9 7.89 7.33 10.6 10.6 10.4 0.56 12.5 2.53 12 4.55 12.3 10.8 6.96 1.76 9.18 12 12.5 10.4 8.54 10.1 11.6 8.35 10.6 10.8 10.5 10.6 12.2 13.5 11.5 12.9 12.6 12 8.33 11.9 7.27 7.55 7.48 10.1 12.8 12.4 13.3 10.2 12.2 10.8 8.64 10.8 11.3 9.92 9.73 11.5 6.8 11.2 10 10.5 11.2 6.9 0.97 12.5 6.08 10.5 6.04 9.43 8.47 2.94 6.72 8.85 8 2.41 5.36 9.85 8.73 2.75 13.9 11.6 9.5 8.94 9.52 7.08 8.66 8.41 9.23 7.75 3.64 6.67 3.64 5.58 9.88 12.4 6.42 13.7 7.85 8.22 8.28 8.59 10.8 8.97 8.82 0.56 8.75 10.8 8.96 10.9 9.98 10.5 8.67 11.2 10.4 10.7 11.1 7.49 2.12 7.79 7.41 8.51 9.49 9.16 9.37 11 10.6 8.84 10 8.08 4.36 10.3 11.6 12.6 9.52 4.29 10.7 9.78 7.78 5.55 9.85 3.19 7.83 9.15 14.8 8.83 11.7 6.58 9.14 8.76 8.45 5.22 9.41 7.6 10.9 6.56 8.41 12.2 11.2 10.8 9.48 9.8 4.03 9.37 3.58 8.57 8.85 8.27 1.76 7.91 3.4 7.74 6.98 11.2 2.64 9.68 8.94 4.4 11.5 11 9.23 1.95 11.8 6.28 7.55 0 5.64 10.4 11.2 7.51 5.96 3.8 8.99 7.91 8.19 7.76 15.2 10.9 9.66 6.35 9.17 10.4 8.94 15.1 10.2 6.61 6.72 5.61 11.2 8.59 5.54 10.2 9.22 7.68 9.61 0.56 11.7 7.35 9.73 6.87 13.9 9.46 4.11 11.4 0 8.17 9.98 8.18 8.04 10.5 10.3 10.8 9.93 7.96 7.74 8.9 4.74 9.39 10.4 9.44 11.2 9.97 8.55 10.5 8.47 2.53 7.96 5.84 11.2 2.27 12.5 7.36 8.37 9.85 8.66 10.9 12 6.58 11.7 9.62 10 10.5 8.19 10.8 8.49 9.12 4.77 9.42 9.83 7.63 10.1 5.78 4.46 8.15 6.72 9.72 8.47 9.81 0.97 3.11 9.82 12.1 8.88 10.3 10 10.9 8.06 11.1 4.69 12.9 8.19 7.98 6.13 8.93 7.62 9.83 9.87 8 4.04 1.54 4.78 8.45 10.8 6.4 8.51 8.73 6.82 9.57 7.36 11.2 7.71 7.59 2.41 7.87 7.41 12.4 7.92 7.82 7.71 10.2 9.06 8.25 11.4 10.2 9.9 9.68 7.54 10.5 8.44 8.67 11 11.6 1.95 9.31 5.7 10.2 7.61 7.85 13.2 12.2 6.75 11 8.11 1.54 11.3 4.69 1.76 9.25 9.22 1.76 10.2 12.3 9.32 8.58 5.82 9.57 10.5 11.1 10.2 11.6 7.05 7.46 6.41 13.2 11 2.12 11.4 9.45 11.7 8.73 12.1 11.1 12.8 11.2 5.13 7.73 9.84 6.43 11.5 11.3 10.6 10.3 9.4 11.6 7.47 8.09 3.4 11.8 7.64 7.31 1.28 9.91 6.22 8.83 8.44 3.06 4.84 8.38 10.6 4.98 7.57 0 11.1 2.41 9.27 0.56 7.43 7.18 0.56 2.79 11 3.98 1.28 4.52 7.05 8.94 3.37 0 9.27 4.57 6.33 0 0.56 7.4 3.98 8.56 6.48 9.38 8.01 8.46 0 9.33 7.19 7.49 8.89 6.37 9.18 8.75 8.1 3.94 8.94 2.64 7.27 8.19 3.85 8.25 4.55 4.84 7.8 4.11 7.74 5.44 6.35 7.21 10.8 0.97 8.48 8.01 5.36 7.17 10.2 9.19 4.87 7.31 10.3 10.7 9.04 8.79 12.3 6.68 7.95 2.12 10.9 6.85 8.75 12.5 7.59 9.07 9.7 10.2 10.3 9.37 4.43 12.4 8.37 10.9 5.61 7.23 8.79 9.75 7.79 5.12 4.03 7.36 6.55 8.02 8.64 11.8 8.56 5.85 4.69 9.71 7.17 10.2 11.7 6.77 3.85 4.43 9.54 8.21 6.78 5.31 7.15 9.42 9.31 10.2 6.95 9.46 9.46 6.31 7.68 2.12 2.53 7.27 8.8 6.1 9 8.66 6.09 9.58 5.95 1.54 3.94 9.3 6.95 1.76 11.6 10.3 2.94 5.91 8.55 7.13 6.66 6.83 2.53 9.98 9.8 6.46 9.28 7.41 9.41 7.8 10.6 7.49 10.9 11.8 2.94 8.01 0.97 8.06 8.06 8.97 8.55 6.16 10.2 1.95 8.69 5.43 6.4 0 8.07 3.98 8.85 4.84 6.05 3.64 3.46 0.73 9.11 0.97 0 8.87 9.45 10.2 9.13 8.87 0.56 4.4 8.42 7.29 9 9.14 0.97 9.41 9.97 2.27 3.4 9.2 9.39 12 6.21 8.49 11.2 7.73 3.11 8.49 4.77 3.8 2.85 7.31 9.05 9.48 9.76 5.31 7.49 8.23 13.8 11 10.8 2.94 5.02 5.88 9.09 10.4 6.22 7.99 12.1 0 6.25 9.94 5.7 11 9.59 6.55 9.83 0.56 6.86 0.56 7.96 0 8.16 9.31 6.53 6.11 8.47 11.9 5.22 1.76 2.85 8.82 8.12 10.5 8.48 8.52 5.66 6.86 8.81 9.22 7.57 9.53 13.7 13 8.19 1.95 6.23 6.58 7.2 0.56 10.1 11.3 9.7 8.26 8.79 3.33 8.81 9.19 10.5 13.8 3.33 11.2 7.49 6.55 1.54 8.49 10.1 3.33 5.82 8.38 8.75 10.1 10.9 1.54 6.13 11.3 4.77 3.19 7.02 11.3 11.5 8.71 9.34 4.03 6.84 13.6 2.53 8.39 10.7 1.95 3.75 8.08 8.77 4.55 7.52 10.2 1.54 2.75 1.54 3.85 3.4 6.18 6.38 8.06 6.79 8.87 7.91 6.63 4.22 9.34 7.15 5.55 9.66 8.71 8.78 3.11 8.99 8.49 6.02 10.7 8.95 8.81 8.16 2.53 8.52 1.54 8.8 0 7.55 5.51 7.41 8.01 4.46 7.36 8.3 6.29 4.72 6.94 9.03 5.07 2.64 8.15 6.82 10.5 9.39 9.72 1.28 9.18 1.33 11.8 5 9.83 7.79 7.83 2.75 3.33 6.83 8.8 1.54 1.95 8.04 9.88 2.85 3.11 9.13 8.27 8.44 12 9.93 5.96 8.87 8.39 7.57 12.4 10.4 3.58 3.64 8.95 8.85 5.62 5.46 0.56 6.51 9.23 8.61 4.39 4.15 2.64 4.15 1.28 7.85 11.7 9.04 9.62 6.98 0 8.65 4.46 9.31 10.5 10.8 8.8 7.79 4.43 5.02 12.3 8.38 8.31 1.81 8.57 3.8 8.32 8.29 1.28 7.25 0.56 5.93 9.65 2.12 9.59 8.78 1.28 7.03 5.95 6.84 4.43 7.51 5.82 7.82 8.59 6.87 9.11 1.76 2.27 8.61 2.64 1.28 4.07 4.98 6.45 6.16 9.35 9.21 8.63 3.52 10.1 10.5 6.43 10.5 7.76 8.41 8.54 6.43 8.08 9.36 0.56 6.7 6.12 11.4 7.04 2.64 12.7 6.27 3.98 4.82 7.51 3.98 10.8 7.05 7.69 9.38 3.46 4.29 6.5 1.54 0 3.11 8.21 0 6.8 1.54 3.11 5.26 8.95 3.03 8.69 1.28 2.12 10.7 9.11 5.58 6.99 11.7 2.67 0 8.91 1.54 5.54 0 9.92 19.2 8.26 8.9 8.14 18.4 10.2 3.19 0.56 6.74 6.68 4.43 12.5 1.76 8.24 9.76 18.6 4.46 6.33 13.2 5.15 6.79 0 6.53 11 7.63 8.64 1.28 10 7.14 7.71 8.14 13.1 6.09 7.44 6.3 3.03 8.06 5.65 9.84 4.84 10.6 10.7 4.19 8.01 1.76 4.15 12.3 9.61 15 8.16 9.49 14.4 3.85 7.53 15.3 8.2 15.1 9.11 4.96 14.9 8.78 7.22 6.95 7.06 13.3 3.03 7.57 7.96 9.11 6.2 7.47 8.89 9.17 7.12 4.61 5.54 0.56 7.51 7.64 5.81 4.64 4.66 7.13 6.19 11.4 12.7 4.87 4.98 3.52 8.31 11.8 10.1 6.64 9.76 3.03 4.98 9.86 8.61 0.56 7.89 7.16 2.27 9 12.7 8.12 8.59 11.2 3.94 4.4 8.76 2.27 9.72 6.3 8.88 7.31 7.74 2.64 3.11 1.95 3.03 7.74 1.76 11 9.43 0.97 10.7 12.7 8.21 5.66 8.1 12.6 2.75 8.41 11.7 8.94 11 10.2 8.64 0 10.8 9.67 0.97 9.52 8.69 0 8.11 8.77 7.39 8.4 5.72 8.91 0.97 1.24 6.58 9.53 7.01 8.17 2.12 5.07 2.97 10.2 7.68 7.99 12.9 7.8 8.54 8.45 7.73 10.4 3.11 8.1 2.12 9.41 7.53 2.12 8.03 6.54 0 12.2 5.26 7.12 11.2 9.88 10.9 8.53 1.28 3.85 9.75 7.21 11.2 4.79 8.28 11.4 10.1 8.5 8.51 2.12 7.59 7.7 8.3 9.45 5 9.14 11.3 9.63 1.28 6.8 10.1 9.09 7.32 11.2 5.14 11.6 9.27 6.61 12.2 11.6 10.5 10.1 2.44 6.72 7.97 10.9 10.2 8.39 5.15 9.04 0.97 10.2 4.57 4.22 7.63 3.19 5.13 7.35 0 10.9 2.85 1.76 12.2 0 4.66 2.94 2.12 4.66 8.97 8.12 5.89 7.37 5.66 9.3 5.72 5.04 6.65 11.2 9.43 6.03 9.36 7.18 8.16 7.91 4.15 5.58 9.21 1.28 2.12 11 9.62 8.15 11.3 0.56 0 6.27 7.45 6.2 12.5 6.96 1.54 6.52 9.72 7.17 4.19 4.15 9.52 8.16 8.21 6.22 10.8 8.08 0.97 11.4 10.8 8.93 9.92 8.71 7.56 3.33 6.64 5.74 8.35 8.55 11.6 11.9 7.26 0.97 0.97 9.23 12.2 6.61 10.4 10.9 8.18 7.3 2.16 9.01 8.37 9.06 5.54 8.64 9.91 0.56 5.18 6.58 11.8 2.94 7.81 10.9 11.4 6.93 5.77 8.08 7.18 4.52 0 9.12 3.43 4.82 6.67 8.35 6.64 5.95 6.14 5.87 7.72 5 6.04 10.7 9.66 9.7 9.51 0.97 9.41 9.32 2.94 10.4 9.86 6.2 7.29 8.21 7.82 7.74 5.69 12.1 4.43 10.1 0 10.1 4.22 8.46 11.8 3.94 1.28 11.5 8.54 6 2.12 4.49 3.33 0.97 4.4 5.31 7.3 9.17 0.56 9.68 11.2 9.33 11.3 8.51 10.3 10.1 7.4 3.85 11.4 11.3 7.29 11.1 9.35 12.1 3.75 4.52 7.93 7.34 5.95 7.45 5.65 7.09 8.39 10.7 8.57 9.88 0.56 1.76 8.84 8.06 7.01 10.5 8.31 6.6 8.96 3.4 4.69 7.21 8.12 3.33 10.1 11 7.64 8.79 9.03 5.13 2.27 3.58 4.22 1.54 10 8.27 0 4.5 6.12 3.98 8.66 4.15 8.33 8.27 10.5 8.28 8.94 12.2 1.28 1.28 3.8 11.6 4.43 8.66 9.89 8.22 1.28 7.54 5.62 9.9 2.85 5.78 7.03 8.05 9.94 10.3 7.66 3.94 6.5 5.96 0.56 6.75 8.41 5.04 9.09 4.26 2.41 11.2 8.39 5.33 8.24 0.56 2.53 9.84 13.1 5.88 1.54 10.5 2.27 7.46 0 3.94 1.28 10.2 8.09 5.47 2.27 2.53 11.5 8.35 8.3 5.69 5.62 5.36 7.5 2.41 10.2 7.92 6.26 1.54 5.38 0 2.64 5.58 4.61 0 8.24 3.26 0.97 5.89 0 7.69 1.28 7.47 3.85 5.96 8.59 4.89 8.21 4.96 6.45 9.17 4.36 13.7 1.95 8.31 6.8 8.63 9.62 7.93 8.38 8.17 0.56 5.46 2.85 7.25 6.83 6.4 4.22 10.6 5.38 6.93 8.06 2.75 4.84 2.85 5.54 6.95 7.47 4.26 9.25 5.9 8.04 2.41 4.43 8.11 6.42 7.73 6.52 6.36 3.89 1.95 9.52 7.03 9.31 6.54 5.29 7.85 4.11 5.39 6.84 5.35 9.01 8.24 4.4 6.39 10.6 4.98 8.06 5.24 0.56 6.74 5.54 5.41 8.57 5.99 9.41 6.39 6.79 5.83 3.52 5.16 7.89 1.54 7.7 6.24 8.49 3.26 8.1 9.14 5.18 7.77 9.73 1.28 0.97 11.4 0.56 0 5.31 8.8 10.1 4.15 3.03 10.5 5.85 7.88 9.02 1.95 12.4 9.19 0 9.03 6.87 3.94 2.64 4.89 0.56 5.26 4.46 9.28 8.9 7.18 3.19 1.28 0.56 7.87 6.16 1.76 13.1 11.6 4.29 9.33 6.92 6.48 13.2 10.2 9.97 0.97 7.95 12.7 0 4.89 7.95 0.56 0 1.76 2.53 4.29 3.46 8.03 7.94 2.75 7.32 9.11 6.47 6.25 8.51 0.61 4.89 5.11 9.63 8.58 5.75 7.44 3.33 9.86 5.7 8.56 1.28 5.24 2.53 9.56 8.26 4.87 4.03 6.93 7.52 3.75 5.22 7.12 5.73 15.4 7.04 15.8 6.87 3.85 12 6.06 10.1 8.27 10.6 3.94 1.76 3.98 7.78 7.98 10.9 10.2 3.69 1.76 7.67 3.33 2.53 2.51 11.3 3.19 6.68 5.65 6.75 12.3 0 7.66 1.54 6.47 5.18 6.04 7.46 0.97 7.73 8.37 10.2 11.6 4.55 3.46 4.69 0 5.28 0 16.4 4.74 9.68 8.82 7.76 8.89 4.4 11.1 8.86 9.47 9.26 0.56 3.85 7.64 7.57 2.41 11.2 8.34 7.43 7.96 13.3 4.91 8.15 8.32 12.6 6.95 6.95 9.91 6.8 6.89 7.31 10.7 7.39 0.56 8.35 3.69 8.65 4.55 6.63 4.84 3.52 10.7 8.1 0.97 5.83 6.77 7.5 2.41 6.26 10.2 8.49 8.14 9.1 11.6 7.62 7.87 11.3 7.46 6.04 11.7 11.2 7.57 6.61 11.7 7.54 0.97 3.03 3.19 10.9 7.61 5.56 5.16 8.18 2.12 10.6 6.13 11 8.63 7.03 5.29 5.49 7.71 0.56 6.41 1.95 5.25 8.51 11.5 4.77 2.27 8.44 4.8 1.28 7.65 7.3 0 11.1 10.5 9.37 6.42 8.9 0 9.05 6.93 7.17 8.99 10.9 2.53 4.52 2.94 9.13 5.59 7.5 9.91 3.46 2.12 10.4 2.53 1.95 8.11 4.29 0.56 8.96 2.27 5.52 8.88 11.7 8.19 5.22 5.55 0 9.91 5.43 9.29 7.24 7.68 3.11 0.56 10.1 5.02 4.15 3.05 12.2 9.62 3.11 9.6 2.12 1.76 4.19 4.26 6.37 5.55 0 6.47 6.91 5.69 4.52 6.79 2.64 9.55 4.26 8.28 5.34 5.29 3.52 0.97 4.22 8.16 5.34 8.24 5.47 7.82 8.59 3.17 10.1 5.64 1.76 0.97 3.52 1.28 8.43 4.58 9.36 6.16 9.95 7.27 9.66 4.61 9.3 4.87 0 10.8 7.17 4.61 11 2.27 1.76 12.9 11.4 2.27 12.8 3.52 4.29 0.97 0.97 12.1 9.31 5.26 4.29 11 9.25 0 9.5 12.1 8.37 8.68 7.26 7.64 5.84 4.43 6.17 9.08 8.35 11.3 13.2 2.75 6.95 4.72 8.75 10.8 1.76 2.64 4.61 10.1 5.41 7.67 4.72 2.41 10.5 0 5.55 10.6 0 2.94 10.1 3.11 4.87 7.65 2.75 6.58 11.2 12.1 1.54 10.5 8.2 1.28 9.02 4.64 10.9 3.85 2.85 3.11 1.64 1.95 2.27 6.92 4.84 6.55 11.9 7.89 8.98 6.95 4.94 7.48 8.4 3.94 6.69 4.07 8.5 6.32 4.69 12.4 8 7.03 7.41 6.14 6.37 3.52 6.16 5.96 4.96 8.02 7.65 3.11 5.54 1.28 9.18 0 6.55 5.61 4.69 8.68 2.12 14.3 3.8 11.5 8.85 8.19 0.97 5.28 6.01 0.56 2.12 6.51 8.37 9.73 12.3 11.6 0.97 9.63 0.97 13.3 6.82 8.87 13.3 3.52 0.56 7.97 0 7.5 2.62 1.76 3.33 2.53 9.2 7.77 9.46 14.8 12.9 4.87 2.75 3.8 4.98 9.35 7.18 11.5 7.98 12.6 13.2 2.41 0.97 11.5 4.94 0.97 9.81 2.85 9.74 2.41 7.14 12.9 11.6 3.52 9.8 7.3 10 6.03 6.96 7.7 11 10.7 6.89 10.3 7.74 6.07 6.77 1.95 11.2 8.67 1.54 9.86 0 9.83 3.58 7.23 3.26 3.46 7.94 5.41 8.78 6.16 6.95 6.57 7.48 4.15 8.08 3.19 9.56 9.83 2.94 3.33 8.75 8.5 1.28 6.82 10.3 8.36 3.51 9.34 5.61 2.12 1.28 8.73 8.95 8.23 5.7 5.2 8.32 5.49 1.54 0.56 4.22 7.98 6.58 0 6.93 8.91 5.41 9.77 7.76 1.95 10.8 4.69 9.52 8.78 5.09 3.11 11.6 7.46 6.54 8.39 4.69 9.38 4.03 10.9 9.19 1.28 2.53 0.97 6.33 12.4 6.93 9.99 1.76 9.89 7.77 9.1 11.2 13 6.31 7.36 9.39 9.23 13.4 10 12 8 7.33 0.97 3.85 10.1 10.1 11.5 11.6 5.77 9.63 8.25 10.8 1.76 0 1.54 3.89 10.2 7.88 4.26 8.52 7.87 8.33 8.5 5.34 2.94 0.97 4.89 4.43 5.38 10.2 0.97 4.11 11.3 13.1 8.75 7.74 10.3 11.6 11 9.24 5.97 8.33 5.31 10.2 9.21 5.13 9.45 8.79 10.8 9.8 2.64 8.9 8.5 12.5 9.65 11.9 13.1 0.56 9.69 1.95 1.28 9.26 9.72 5.59 3.58 11.6 8.86 10.1 12.1 3.03 12 13.5 9.56 7.56 6.99 7.18 4.84 8.62 9.8 11 5.74 10.7 7.57 6.98 9.91 9.2 8.16 6.41 0 10.1 9.97 9.24 11.5 9.51 10.2 8.13 11 5.09 8.81 10.1 7.54 7.66 8.68 7.12 8.17 10.1 0 10.4 10.6 11.6 12 9.16 10.4 9.77 8.83 8.29 8.89 5.66 7.75 11.8 6.67 7.65 10.9 16.6 1.28 5.64 7.83 10.4 6.98 6.97 8.57 11.9 13 14.3 15.4 10.2 10.5 5.38 8.19 10.7 10.6 9.61 7.05 3.75 5.16 8.57 9.07 10.9 10.1 10.4 9.51 7.49 6.53 6.41 11.4 6.21 4.69 6.54 9.07 0.56 8.13 3.03 6.78 8.48 3.58 7.23 10.5 8.91 6.45 9.63 10.8 8.61 10.1 1.28 7.76 11.5 8.59 1.73 9.74 8.53 7.1 4.6 12.2 4.61 7.41 10.2 3.65 1.54 3.89 1.87 9.25 3.26 5.43 7.04 8.86 8.03 13.3 6.59 8.7 8.27 3.11 6.94 11 13.1 7.62 12.6 8.6 9.26 11.9 13.4 14.6 12.1 12.2 0.56 10 1.95 10.8 6.35 5.16 10.5 1.28 0 1.95 7.73 0.56 9.69 6.64 0.97 2.41 10 8.57 6.42 7.06 4.82 9.12 5.13 7.5 7.14 6.62 8.25 0 8.51 13.4 10.2 10.6 0 2.53 9.59 8.17 4.15 10.2 11 0 3.58 6.46 1.95 10.8 9.15 4.05 10.2 7.27 0.97 8.52 2.49 6.72 1.28 8 0 5.89 1.95 8.02 5.44 3.64 5.61 9.13 11.6 6.83 7.05 8.79 6.34 3.86 6.46 7.78 2.53 8.61 8.63 9.48 9.24 7.1 8.68 9.07 4.36 10.5 10.3 8.19 8.25 5.7 9.24 6.35 8.58 4.58 11.9 7.25 5 8.14 8.08 9.44 7.88 8.89 7.63 2.94 9.95 2.85 10.8 4.49 9.41 5.26 9.96 7.09 7.05 11 0 0.56 9.5 9.54 5.68 1.28 13.5 7.36 1.28 2.41 7.1 3.8 9.08 9.86 8.59 7.67 9.31 9.16 5.49 5.36 7.69 7.35 5.16 11.9 8.1 1.28 15.2 6.83 7.56 2.94 0 0.97 9.18 4.4 7.08 7.95 11 6.61 10.9 9.7 6.58 7.33 14.7 9.34 4.74 2.64 6.32 8.4 7.33 4.89 7.8 8.87 9.16 9.12 10.1 9.26 12.6 9.39 10.4 8.81 7.95 10.9 11.2 10.8 5.58 8.31 10.7 11.5 5.16 5.64 0.97 9.34 3.89 10 0.56 9.98 11.6 3.03 8.67 10.8 12.3 12.7 6.7 8.93 8.23 9.75 9.98 8.72 9.73 0.56 6.89 8.92 11.8 10.2 10.4 9.18 3.46 9.48 11.1 2.85 0 7.96 9.49 8.88 0 11.2 5.89 9.36 9.54 8.29 10.1 8.61 9.22 8.37 10.3 10.7 7.62 10.5 10.9 5.46 10.6 10.3 2.53 10.6 0 11.6 10.6 10.3 10 8.94 10.8 9.64 7.8 4.4 5.72 6.85 10.2 0 9.56 9.75 6.46 9.15 9.01 7.57 0.56 11.5 11.3 12.3 5.11 9.34 12.2 1.76 5.81 10.2 5.78 9.23 7.41 0 10.2 9.28 6.68 3.19 8.77 9.04 1.95 7.86 4.77 6.68 2.64 12.4 7.82 9.96 0 12.6 7.41 8.48 7.41 8.27 6.89 6.59 6.47 11.4 10.6 11.9 10.7 11.3 9.96 5.36 9.39 7.84 9.6 13.5 9.13 6.59 9.8 7.12 4.22 6.98 10.1 9.61 12.3 2.27 5.36 8.4 4.77 5.28 11.6 2.75 11.8 12.7 2.75 7.32 8.64 8.45 11 3.75 5.77 7.43 8.82 7.62 8.58 11 9.26 9.51 9.22 0.97 9.7 10.2 9.26 9.29 13.3 4.49 12.3 4.91 6.07 8 8.52 6.7 0.56 6.78 5.72 5.96 4.69 14.7 1.95 9.05 8.45 10.5 2.53 7.36 1.54 2.27 4.26 5.29 6.03 3.03 9.98 7.02 5.56 0.56 9.15 7.27 5.72 4.07 7.59 7.87 5.84 11.6 5.76 10.8 8.85 6.95 8.78 9.96 1.76 8.74 7.56 6.96 6.68 12.2 9.27 7.52 5.76 10.1 5.97 9.34 5.11 11 7.44 9.48 9.23 7.47 7.12 7.62 9.37 12.4 5.46 0 3.64 6.38 5.16 8.34 4.52 5.69 7.34 5.89 12.2 2.41 8.77 10.5 3.52 7.92 6.89 7.88 4.93 9.54 2.12 7.01 11.9 9.01 5.41 10.2 8.05 7.62 8.82 0.56 9.18 1.28 10.7 6.29 8.15 4.91 10 5.64 10.9 10.5 10.3 4.58 2.75 10.8 7.47 9.26 11 6.05 8.33 9.82 10.5 8.37 6.73 7.05 9.44 6.79 2.86 5.96 10.6 8.67 4.46 1.28 2.75 0 0 4.37 10.7 0 2.75 4.82 6.45 3.11 11.9 6.31 6.44 4.72 11.3 8.98 8.92 7.05 8.47 9.12 9.62 8.03 10.4 6.19 9.18 9.36 9.2 3.58 2.27 8.97 9.55 5.28 6.68 4.33 7.35 15.2 12 3.8 0.97 10.2 1.76 6.74 10.8 6.3 12.2 11.7 9.43 10.2 10.5 9.04 7.13 13.3 10.2 10.9 0 11.4 3.33 6.66 10.7 8.79 6.04 11.9 5.26 13 9.97 9.28 8.02 4.74 10.7 11 9.69 5.92 8.59 9.45 7.27 9.05 11.3 10 11.2 9.36 2.19 2.94 9.27 10.1 8.45 10.2 7.29 8.67 7.2 9.23 9.2 10.1 8.92 9.52 11.4 8.56 10.5 8.66 9.85 9.21 9.51 7.55 9.93 10.4 4.26 12.7 8.03 9.08 10.1 10.1 9.92 9.78 9.88 10.7 9.65 8.64 9.4 12.3 9.58 9.04 9.57 8.62 9.01 11.3 9.76 4.66 9.38 9.62 0.97 9.73 9.32 8 0 9.32 4.64 9.1 9.1 10.8 9.1 9.61 10.1 9.98 8.7 8.81 11.7 6.38 7.35 11.2 0 11.3 11.6 10.6 9.77 8.53 8.04 10.5 9.07 10.9 9.89 10.4 10.9 8.31 10.2 7.8 10.2 10.7 10.4 4.36 8.05 12.2 9.72 9.18 0 8.44 9.4 8.24 2.53 3.19 9.01 8.4 2.75 10.3 7.23 2.41 11.6 9.85 9.65 2.27 10.1 11.2 0 1.76 0 10.4 11.5 10.3 7.67 5.62 4.66 5 8.9 10.7 7.82 9.84 7.74 8.57 3.98 9.4 0.97 9.74 9.57 10.2 9.6 9.01 8.9 11.9 0.56 11.7 11.1 9.12 8.18 3.85 7.61 10.3 9.3 9.41 8.23 10 9.07 8.59 8.87 9.27 10.9 10.3 10.3 9.9 11.8 6.14 6.95 9.02 10.2 11 8.24 10.7 11.2 10.5 10.2 5.31 9.24 3.11 9.66 12 11.4 10.3 11.1 10.1 8.78 9.25 10.5 11.4 2.12 9.28 10.4 7.96 10 9.05 9.5 7.89 8.88 9.82 9.96 10.5 9.19 6.7 10.5 6.62 10.1 9.56 8.54 8.89 10.5 9.15 8.79 8.96 8.19 11.8 9.24 2.12 11.9 0.56 10.5 8.97 0.97 10.8 9.45 8.87 6.67 8.71 9.49 11.1 6.51 3.67 5.2 9.13 9.65 10.1 5.39 11.5 9.03 9.82 9.34 4.98 9.21 8.7 9.13 9.13 6 9.7 11.2 10.2 10.7 9.98 8.32 8.46 3.46 6.35 7.75 3.69 10.7 9.22 10.4 9.71 10.2 8.71 10.5 14.8 9.19 10.6 9.18 9.29 11 10.1 12.5 10.7 9.95 8.99 12.9 9.94 8.91 9.12 9.55 9.82 9.54 10.2 8.43 7.4 11 11.6 10.7 8.6 11.3 10.3 8.78 11.6 10.2 11.4 11.7 11.8 9.83 13.7 9.75 9.18 11.9 11 10.3 10.6 10.5 7.84 10.1 12.3 2.12 10.8 8.51 3.4 8.49 8.38 9.4 8.4 14.6 11.3 10.9 11.9 0.56 8.48 9 3.8 10.3 9.98 9.81 10.6 8.85 7.52 9.13 6.81 8.76 11.9 8.42 6.46 8.99 9.95 9.48 3.26 7.9 7.92 9.21 10.1 9.63 9.7 11.1 6.2 8.02 9.97 9.34 10.5 5.56 7.13 9.03 9.36 6.66 10.3 11.1 9.75 7.74 8.47 9.87 7.18 10.9 11.1 8.91 9.79 9.28 6.72 8.95 10.6 10.8 10.5 10.2 8.46 10.6 10.3 4.03 8.05 10.1 4.89 6 12.2 9.17 10 8.17 10.8 10.2 9.77 11 10.1 4.52 11.5 9.46 5.82 9.59 9.46 1.54 8.52 10.3 8.32 9.75 12.2 9.23 9.19 11 6.04 10.3 2.12 11.6 8.95 10.6 9.61 8.72 10.9 9.96 12.2 9.79 11.1 9.6 9.72 10.3 9.42 8.8 7.46 10.2 10.8 4.52 9.09 12 9.67 9.58 10 3.52 17.1 10.4 10.1 11.6 11.5 7.48 10 8.68 9.81 3.94 9.73 9.46 8.81 11.4 11.6 8.32 12.2 8.48 10.7 10 10.6 7.78 10.5 8.63 10.2 10.4 11.4 9.27 9.73 10.2 11.3 11.8 9.91 10.1 10 8.81 11.4 11.2 9.16 10.3 6.13 8.73 10.8 10.8 7.8 7.58 7.94 9.64 11.4 9.1 4.52 9.75 8.71 9.74 9.5 9.62 1.95 1.76 9.02 3.33 9.22 12.6 7.69 11.7 8.88 7.04 11.2 9.85 1.54 8.3 6.7 11.1 11.4 9.86 8.12 10.9 11.9 12.1 10.8 8.44 6.88 4.15 7.37 8.28 5.83 11.4 8.35 8.76 6.5 10.9 10.7 13.6 9.31 8.94 10.3 10.1 11.7 10.7 0.97 11.1 10.5 7.96 10.5 3.52 9.95 4.55 3.4 5.24 12.4 10.4 8.52 9.19 6.36 10.2 8.97 6.72 10 11.4 10.3 9.4 8.99 9.85 9.7 8.77 12.3 10.5 8.88 1.54 1.28 13.8 9.11 10.4 12.8 9.38 10.5 7.15 8.14 9.26 12.1 8.61 2.85 7.89 10.4 7.92 2.27 6.07 8.52 7.2 10.9 2.27 8.6 0.97 3.58 8.64 9.56 11.6 8.85 5.85 8.42 6.57 9.34 9.2 8.92 11.2 9.91 10.9 9.99 0.97 3.48 11 0 8.01 11.6 0.97 9.48 9.11 4.19 10 10.2 8.83 8.44 12.1 8.45 9.23 9.77 13.7 9.4 5.71 8.76 10.5 6.36 9.54 10.6 10.2 8.73 8.77 5.36 11.8 8.17 9.96 11.6 8.95 9.56 10.1 0.97 7.75 12.3 9.05 10.3 6.68 0 2.64 2.53 10.8 8.31 10 9.87 7.36 9.02 10.1 9.71 10.5 10.6 10.3 12.4 10.5 8.57 8.54 6.43 13.3 8.9 9.49 12.1 8.87 10.5 10.4 10.8 7.87 6.62 9.82 9.62 9.33 8.76 11.3 8.21 11.1 12 3.58 9.73 9.56 10.1 9.88 7.32 8 9.04 1.76 10.4 10.9 2.41 12.1 8.87 1.82 10.8 10.4 12.6 11.3 1.54 0.97 7.21 8.94 9.2 6.91 8.93 9.09 9.76 7.7 7 9.54 9.83 12.9 6.99 11.6 9.23 0.56 5.84 4.91 3.28 9.26 0.56 6.04 2.53 9.07 2.12 2.27 1.28 6.25 7.74 6.02 6.88 8.29 5.64 4.55 0.56 4.07 9.95 9.47 6.2 10.3 3.98 5.24 15.3 9.3 10.8 0 15.5 10.9 11.8 12.1 4.82 4.91 0.97 7.9 0.56 0 11.1 5.16 5.01 8.06 6.61 5.11 9.38 0 3.8 7.87 11.2 9.49 2.75 4.67 9.21 8.9 9.08 11.6 3.89 10.9 7.49 8.16 8.17 5.52 4.19 10.4 7.56 3.03 11 6.28 7.19 7.89 10.3 6.68 0 10.9 10.5 8.36 7.73 10.5 6.27 5.44 9.4 3.75 6.03 11 0.56 0 8.65 0 0 9.47 8.76 7.52 5.69 3.8 0.97 7.72 9.7 5.22 8.14 9.78 9.08 6.83 2.53 12.2 0 2.41 11.3 5.74 8.95 9 9.06 7.84 2.64 7.3 5.66 3.4 0.56 6.59 8.94 8.71 5.68 7.27 1.95 7.77 1.76 8.63 4.64 6.43 5.13 0.97 7.44 1.28 8.23 5.43 5.64 11.2 7.59 7.23 4.11 7.15 8.22 9.09 8.95 7.16 6.35 1.54 7.27 8.02 7.68 5.11 9.21 6.85 6.03 3.26 9.46 10.7 4.4 9.42 5.33 8.01 11.1 7.54 7.88 0 8.74 4.89 1.95 0 0.97 6.6 0 7.31 6.04 1.28 5.24 2.94 3.8 5.73 1.54 4.07 9.6 4.87 8.69 1.54 3.75 4.66 0.97 7.5 5.46 0.97 0.56 1.76 10.5 10.4 0.56 6.25 5.52 6.4 9.66 7.33 9.05 0.56 9.18 11.8 9.62 8 9.64 5.34 1.54 5.87 3.03 6 10.5 11 3.11 9.98 6.14 11.4 7.18 10.3 10.8 9.34 8.89 8.41 1.76 10.8 7.4 8.5 7.4 10 0.97 9.85 11.2 10.8 5.84 6.43 9.37 10.2 8.69 7.91 0.56 13 10.8 8.37 10.4 10.8 6.31 3.03 11.3 7.78 2.27 10.5 2.27 10.8 8.14 11.7 6.77 8.55 9.26 12.2 8.73 11.1 8.15 9 5.33 8.86 9.75 9.89 4.49 10.5 0 6.93 2.85 7.5 9.5 12.7 10 12.6 9.14 9.46 5.62 14.7 9.75 11.6 8.27 8.93 6.57 7.42 11.7 10.8 6.15 7.88 7.58 7.84 10.4 8.74 0.56 11.8 9.65 9.75 9.28 10.9 8.66 9.41 6.72 9.57 5.33 9.16 11.8 9.37 8.47 9.62 9.27 5.34 3.89 8.08 10.2 12 0 9.46 9.84 9.72 1.28 4.49 7.71 9.48 8.54 8.62 1.28 9.44 0.97 9.32 1.95 0 4.29 7.24 10.5 6.77 13.6 9.25 8.68 8.73 9.76 9.69 10.3 10.1 10 9.56 8.74 8.36 10.1 10.1 7.87 7.63 10.7 6.17 10.2 11.3 10.2 5.87 10.7 11.1 8.76 15.2 10.4 9.66 6.85 6.56 8.61 8.65 10.5 9.03 10.2 6.39 8.56 0.56 9.25 8.45 8.18 8.46 10.7 11.5 11.2 10.4 4.19 10.6 11 9.81 11.3 9.18 10 9.29 12 9.3 10.6 6.54 8.82 10.5 9.02 9.65 12.9 12.3 8.89 11.3 4.2 4.36 8.57 10.3 9.47 6.05 9.45 4.89 8.28 9.38 10.2 2.27 8.32 6.65 7.23 7.72 1.76 8.45 4.96 7.76 4.84 3.11 8.09 5.61 7.49 10.7 10.2 10.3 10.3 10.6 7.45 10.3 10.3 10.7 9.95 11 0.56 5.24 7.98 9.36 11.2 10.2 10.3 8.63 8.66 6.89 10.2 8.16 11.7 11.1 3.03 8.23 8.23 11.5 9.66 9.92 8.46 11.2 8.81 10.2 9.73 11.9 11.9 10.6 1.76 8.82 8.19 8.33 8.84 5.52 9.44 2.75 8.97 8.95 6.34 1.28 10.4 11.7 8.12 9.25 9.42 5.49 9.52 12.7 9.52 12 11.6 8.61 7.35 9.44 11.1 10.3 6.88 10.4 3.11 9.06 5.16 6.6 12.8 0.97 8.48 2.12 10 9.88 11.7 3.94 11.3 0 6.48 7.39 13 7.75 11.5 8.91 6.07 6.56 7.37 8.3 1.95 2.12 1.28 5.51 10.4 8.56 8.63 2.91 10.3 8.56 3.8 7.71 10.3 8.71 10.3 8 6.9 7.65 9.87 10 8.13 9.97 8.64 6.77 7.5 9.52 10.3 3.19 11.1 0.56 8.77 9.04 9.6 8.46 11.2 10.5 9.84 1.02 11.4 11.5 10.3 10.1 8.4 0.97 6.99 6.08 6.86 9.97 9.87 12.7 12.3 11.2 9.38 0.97 7.43 9.78 9.62 10.9 7.88 8.78 3.8 8.06 13.1 6.8 7.47 8.92 9.97 9.88 9.53 8.56 9.44 9.14 9.52 10.5 5.78 1.54 0.6 10 3.94 2.48 8.56 9.75 2.27 12.1 5.72 8.85 8.38 2.53 10.9 3.03 8.03 2.53 11.8 12.7 9.6 4.07 10.4 2.39 6.07 8.14 6.98 12.3 3.03 6.54 7.12 1.28 9.11 4.4 12.1 10.6 7.41 4.33 8.72 8.95 0.97 0 9.64 5.54 1.28 0.56 8.75 0 12.6 9.6 10.5 11 9.03 3.03 10 9.43 9.27 11.4 4.74 6.66 13.6 9.29 5.46 9.41 10.7 14.5 9.05 10.6 8.98 5.13 7.76 9.66 1.54 2.41 9.45 0.56 8.01 8.32 7.29 10.6 12.4 8.79 11.4 8.27 9.11 12 2.64 9.3 7.86 5.92 8.78 7.06 9.03 9.74 13.2 8.61 5.89 10.1 9.91 9.87 12.8 1.59 6.42 11.1 5.84 11.6 4.77 8.49 7.15 5.2 10.1 2.53 11 1.54 9.09 4.89 5.39 10.2 8.43 5.99 1.54 10.5 7.8 9.99 12.8 8.66 9.27 6.08 7.33 3.52 7.61 9.91 12.8 3.03 2.53 11.3 2.12 9.65 9.98 4.82 7.67 11.2 4.84 5.84 8.28 8.82 6.73 0 8.44 8.64 5.61 6.31 8.79 10.8 0.97 8.94 0 6.74 8.35 3.4 10.6 9.69 12.4 7.76 6.56 2.64 11.4 9.46 0 11.9 0.97 3.33 7.01 8.98 11.2 3.11 7.31 12.8 3.98 3.52 8.06 9.55 4.33 9.1 5.84 6.32 9.23 11 11.2 9.15 9.71 8.26 8.73 11.3 11.1 11.7 8.64 7.56 8.62 9.3 9.73 1.54 2.94 9.41 6.15 3.75 9.89 8.38 8.41 7.65 2.12 10.1 6.37 5.72 9.06 8.55 9.06 5.11 7.84 6.27 9.65 1.95 5.93 8.96 11.1 6.61 10.1 9.98 10.8 10.3 4.29 11.2 11.4 7.23 12 13.3 8.79 9.45 10.5 9.03 2.27 5.85 8.83 8.63 9.43 8.26 3.4 8.5 7.73 9.98 8.27 8.35 6.47 10.9 10.9 9.18 6.73 10.9 7.48 8.57 10.2 5.51 12.6 8.87 0.56 6.96 8.78 11.6 8.06 5.58 12.6 2.75 11.3 8.53 10.5 8.8 8.44 11.3 7.65 10.3 13.3 10.7 5.66 4.91 10.4 14.4 1.76 7.13 12.8 12.6 4.83 2.41 5.47 10.4 8.05 1.28 9.13 10.9 4.64 10.7 5.18 0.56 13 3.94 7.18 9.17 11.1 11.3 11.2 12.7 10.1 10.8 10.4 2.41 8.49 5.08 3.85 12.1 4.52 9.31 12.6 9.86 7.24 3.46 4.43 9.88 5.26 10 0.56 3.58 4.94 3.64 6.93 3.64 8.76 5.18 0.56 6.35 4.29 7.87 9.75 3.98 6.08 7.38 3.4 5.13 8.44 3.03 8.59 13.8 7.14 13.8 11.9 6.04 8.04 8.92 7.7 6.91 9.03 5.39 8.26 8.26 8.84 4.33 6.82 8.96 0.57 11.5 5.97 6.63 7.5 9.12 3.8 8.25 5.78 9.87 0 7.36 12.4 1.76 3.26 5.76 3.03 3.64 0.97 9.44 0.56 6.72 4.66 8.55 7.14 8.78 4.39 1.54 1.51 4.03 9.68 1.95 4.52 0.56 8.24 0.97 5.81 0 2.53 9.67 9.85 6.75 4.94 2.72 3.85 5.82 5.71 1.54 7.87 0.97 3.19 5.2 12.4 5.07 5.92 1.28 3.28 8.37 6.36 9.5 5.55 6.95 4.49 4.91 4.43 7.99 7.51 1.07 3.46 8.07 7.91 8.37 7.29 0.97 7.59 7.72 0.56 6.23 7.11 5.98 6.16 4.96 8.39 2.53 9.15 5.22 2.64 0 1.54 5.24 7.02 0 4.58 0.97 9.23 7.06 0.56 8.01 14 8.43 7.33 4.4 7.86 2.12 0 0 3.11 10.1 1.95 2.12 7.34 1.76 8.8 1.54 10.5 0 5.67 5.61 7.62 7.91 8.2 4.96 0 5.15 5.24 5.28 1.28 7.12 12.1 1.76 7 7.66 5.78 7.23 1.54 5.26 6.7 0.56 4.46 0 0.56 0 7.31 6.74 6.03 6.5 8.72 4.11 2.27 0 7.77 0.56 3.58 3.75 9.03 4.03 9.28 3.89 4.24 10.4 2.12 5 8.35 1.28 3.52 3.19 3.69 0 3.11 3.52 3.33 6.44 0 8.6 2.41 0.97 3.64 6.87 6.33 7.2 3.26 10.4 7.19 1.54 1.95 2.64 4.66 0 7.36 9.51 8.01 6.56 9.14 3.26 7.87 0.56 1.28 6.51 5.83 8.95 7.17 8.95 8.88 0.56 5.38 9.14 9.07 5.07 6.79 7.82 2.94 8.98 3.64 5.28 11.7 8.66 6.09 9.18 5.15 9.55 5.13 3.69 9.08 0.97 7.03 3.85 2.94 5.37 5.47 8.86 9.59 3.8 8.53 0 11.1 2.75 5.47 5.31 6.47 7.67 7.45 9.45 2.75 5.22 8.87 4.72 9.26 8.6 6.96 7.51 9.67 0 5.37 4.22 9.64 4.55 3.94 7.31 0.97 4.07 7.68 0.56 3.19 7.6 6.85 3.19 5.93 3.33 5.92 4.89 3.19 1.28 3.19 8.37 7.61 1.28 10.5 4.87 8.91 5.29 3.4 3.46 8.04 7.59 7.28 10.4 9.85 3.11 11.1 7.81 1.76 0.57 3.52 8.01 9.96 8.38 5.47 8.16 8.24 10.3 9 3.19 3.03 5.78 7.36 1.95 3.8 5.82 6.02 7.55 8.57 3.19 8.35 9.43 10.8 10.3 9.13 1.76 12.6 0 10.3 11.4 5 8.68 11.5 9.75 10.4 3.69 5.11 9.87 8.85 10.3 9.52 8.51 9.55 13.6 13.7 8.19 11.3 10.6 0 9.2 4.55 10.4 1.28 9.45 9.43 11.3 10.1 10.1 10.5 8.78 9.86 7.82 6.5 8.47 10.5 10.2 10.2 11.8 8.94 4.52 7.71 9.03 7.67 9.88 9.72 7.55 11.2 11.5 0.97 2.75 11.2 1.28 8.84 4.87 10.4 4.61 9.55 12.1 6.92 8.8 6.95 10.2 10.7 12.2 7.38 10.1 10.3 10.1 8.18 9.6 10.8 8.21 9.35 9.89 7.94 10.1 10.1 9.56 9.7 6.94 11 9.13 6.34 8.24 8.86 8 9.14 10.3 8.28 10.3 9.78 11.1 11.1 10.1 7.47 6.76 9.93 1.28 8.28 8.5 9.48 2.41 9.29 9.48 8.73 10.6 0 3.19 8.86 0.97 11.3 4.15 3.58 8.57 6.4 0.56 3.58 9.99 12.3 6.99 3.26 14.3 0 10.9 13.8 9.75 10.5 13.4 11.4 9.56 10.7 8.2 2.41 9.59 9.41 10.4 2.94 13 0 6.57 7.59 10.2 6.18 9.65 8.85 8.53 9.39 10.6 8.63 10.6 8.36 6.87 8.54 11.2 12.8 10.9 9.01 0.56 11.8 9.75 6.61 9.14 6.03 1.28 10.5 8.7 3.46 7.24 8.65 1.54 8.88 9.13 7.76 10.3 4.72 10.1 0.56 4.52 7.53 7.33 9.86 4.66 10.8 8.8 8.22 2.85 5.31 4.84 8.13 8.13 0 4.29 11.2 12.2 9.8 2.41 9.14 10.1 9.96 10.6 9.53 10 10.4 6.24 10.1 2.75 9.83 7.79 10.8 7.69 6.82 8.02 10.3 3.19 8.8 4.87 8.17 8.68 8.54 8.81 8.94 10.8 10.3 8.42 8.22 11.1 9.52 10.4 14.6 8.73 8.18 3.75 6.56 8.31 1.28 10.3 12.3 7.04 1.76 3.58 8.78 8.85 6.92 10.8 8.44 4.94 10.4 9.02 11.8 9.73 2.53 11.3 4.07 9.67 5.91 9.77 8.73 8.46 8.93 10.8 9.57 9.35 10.9 11.3 7.1 9.28 9.63 9.07 2.27 8.06 5.29 8.78 6.92 3.64 8.55 9.29 11.7 7.81 1.01 10.2 1.95 10.5 9.32 12.3 3.89 7.61 10.6 6.74 7.41 5.33 10.9 8.99 12.8 1.54 0.97 0 13.5 4.49 0 9.26 11.2 7.97 14.9 11.5 12.5 10.9 10.3 7.47 12 11.1 9.9 0 10.3 10.9 7.35 5 3.08 13.4 8.54 8.5 0 0 0.56 3.94 8.84 2.41 10.9 9.21 10.3 11.8 10.7 10.5 10.9 2.53 12.3 14.3 11.9 5.77 9.57 12.3 12.2 14.2 8.78 13.8 0.56 6.29 3.26 10.9 7.91 6.42 3.94 5.9 9.09 5.09 8.86 8.17 8.56 9.83 4.66 1.95 9.79 8.34 12.5 9.98 9.46 11.9 6.96 12.4 8.24 12.4 10.1 10.5 12 9.44 10.2 9.78 11.3 9.45 10.3 11.9 8.03 7.59 15 15.4 14.4 11 10.8 13 10.1 5.91 13.3 12.6 2.12 11.3 8.56 12 5.92 14.4 13.4 12.3 8.6 8.69 4.43 14 10.4 5.81 11.5 2.59 4.94 2.85 8.43 8.5 8.32 8.89 11.7 9.63 10.1 10.7 11.9 10.1 9.49 9.94 10.7 12.5 7.1 10.1 10.8 7.24 8.71 0 9.52 7.44 9.19 8.72 4.69 3.23 0.97 7.26 3.26 10.3 0 7.82 12.1 7.45 13.8 11.5 12.7 11.3 11.8 11.5 11.7 11.2 13.3 0.56 11.8 12.8 0 6.64 6.4 9.08 5.98 8.57 8.36 8.23 2.85 5.85 3.11 3.58 1.28 1.95 0 6.61 8.8 8.69 9.07 6.18 6.47 8.24 4.22 2.94 10 6.5 4.84 10.5 5.15 9.93 16.2 10.3 4.55 4.69 10.4 9.53 8.81 10.9 0.97 2.94 2.75 9.47 0.97 6.95 9.05 10.3 11.4 9.65 11.1 4.26 4.69 10.5 10.5 11.1 9.06 11.5 10.5 6.18 4.91 7 3.46 11.8 10.3 8.57 7.39 9.23 10.3 11.7 13.7 11 6.43 9.08 11.3 15.5 10.5 8.13 8.83 15.2 12.8 13.6 9.35 6.47 14.2 6.16 14.7 12.9 9.39 11 11.3 10.2 13.3 6.53 4.55 15.4 10.9 7.73 6.03 1.54 6.48 7.04 0.97 0.56 5.52 8.84 12.5 7.31 11.6 11.2 1.54 7.23 8.51 1.58 1.2 6.44 12.9 1.28 6.33 0.56 8.22 6.37 2.53 8.41 3.4 0 4.07 1.76 7.16 9.25 8.97 8.46 4.74 9.54 7.6 3.58 2.27 0 6.5 6.39 8.88 11.6 0.56 8.53 6.4 4.98 8.18 8.74 8.59 8.82 10.3 8.7 7.65 8.48 6.02 6.76 5.51 4.26 2.75 8.95 0 4.87 8.78 5.85 4.69 1.95 6.59 7.62 3.8 4.64 7.17 3.11 6 8.38 7.39 0.97 8.76 8.4 4.43 7.65 10.4 7.95 4.15 2.41 3.69 2.41 10.3 6.17 0 3.33 2.85 9.9 9.88 10.8 0 0.56 3.94 5.49 1.95 8.49 0.56 1.54 8.09 5.38 8.92 2.41 10.2 7.66 2.12 1.3 0 6.4 4.33 7.49 3.33 4.29 2.53 5.07 2.94 4.82 5.2 7.74 1.28 7.67 9.14 3.11 0.97 0 9.11 1.76 11.3 10.2 9.93 10.8 4.55 10.5 0 2.75 1.76 9.88 11.4 1.28 7.53 10.1 2.85 7.7 0.56 8.8 6.68 13.5 12.2 1.54 11.5 6.19 4.8 4.91 1.54 5.99 2.12 4.07 0.97 9.14 0.56 5.61 8.52 2.41 9.42 9.67 4.69 10.1 4.26 1.28 1.28 1.76 9.8 8.59 7.47 5.02 1.54 3.94 7.45 7.74 0 5.39 1.95 2.85 1.54 3.26 3.03 10.5 6.34 8.61 6.27 4.22 8.82 8.81 2.41 2.85 12.5 2.94 10.7 2.12 4.52 0 5.81 2.64 4.82 0.56 8.43 1.76 0 6.38 3.8 6.42 0 1.76 3.94 10 2.27 10.9 0 3.32 11.3 6.85 1.95 2.12 4.03 0 11.3 11.4 7.35 6.2 12.3 11.1 6.18 7.41 7.73 9.57 8.13 2.82 8.47 13 8.47 0.56 10.3 4.66 5.17 3.4 12.3 10.7 1.28 7.35 15 0 7.5 12.1 6.3 0 11.7 6.24 2.12 9.88 13.2 6.41 11.6 5.89 5.9 0 4.82 0.97 7.08 6.45 7.83 8.88 13.6 10.6 8.72 5.04 6.64 6.86 11.2 5.88 10.6 8.42 0 0.97 8.43 8.38 0.97 3.98 4.96 7.55 5.53 5.13 4.84 0 0.56 10.4 11 10.2 3.03 6.75 13.3 9.81 5.9 6.14 4.79 9.01 8.93 7.17 11.4 0.97 8.21 9.15 8.24 10.6 5.56 6.04 5.82 1.95 2.41 15.2 2.12 2.12 5.36 9.6 9.84 4.79 7.54 1.76 1.76 6.34 4.03 12.3 3.48 9 11.3 9.39 7.62 7.77 9.57 9.16 7.32 1.28 9.12 8.56 11.3 9.83 11.3 11.7 0 11.7 8.85 8.54 10.8 11.2 8.1 4.58 7.9 7.42 5.31 5.64 6.9 0 7.03 8.21 1.54 8.71 8.72 8.55 9.43 11.3 10.1 2.41 1.54 9.87 4.96 12.3 7.89 6.74 12.2 10.8 6.28 9.74 9.36 11.3 9.4 9.68 6.19 8.67 1.54 8.43 7.91 6.37 2.41 12 9.15 6.81 1.54 14 8.72 12.1 9.68 1.95 6.47 2.75 8.8 8.79 9.34 12.2 7.79 14.5 11.8 11.3 7.71 11.9 11.8 13.5 1.54 6.97 10.4 0.56 0.56 3.11 11.9 3.8 6.31 13.1 10.3 9.91 3.33 9.45 9.49 10.8 11.3 10.6 8.01 12 8.26 8.99 12.9 7.83 9.9 10.3 10.1 11.2 8.63 11 11.6 12.1 11.8 0.97 4.22 5.5 2.64 3.46 4.19 1.43 9.48 6.18 11.8 6.85 6.99 10.5 7.08 0.56 6.39 1.54 0.97 6.33 0.97 5.82 4.84 8.07 7.5 8.07 8.49 0 2.12 5.88 7.06 8.63 3.52 7.06 0 3.75 10.3 5.23 3.33 8.22 6.32 5.04 6.75 0.97 7.5 0.56 3.94 8.41 13.3 6.51 8.58 6.24 11.2 2.53 6 6.34 0.56 6.35 7.13 6.23 8.84 8.41 6.88 1.54 2.12 2.94 0.97 6.59 7.61 7.83 5.16 9.25 7.66 3.19 7.06 0 2.12 0 0.97 3.65 1.76 7.52 7.34 4.15 0.56 9.11 5.88 9.05 0.97 7.58 13.6 1.83 2.12 5.9 6.45 8.07 10.5 0.56 9.43 2.53 4.49 4.79 4.98 7.64 0.97 7.92 12.3 4.26 2.12 8.04 9.94 9.38 7.06 8.11 1.95 5.62 13.7 0.56 2.64 5 8.4 7.24 0 3.69 8.32 8.02 6.41 0.56 6.34 11.6 11 6.65 1.54 12.6 4.49 6.6 8.72 8.81 0 11.7 11.9 3.85 11.3 1.81 2.53 1.95 11.6 2.01 0.85 5.83 5.82 3.19 10.9 6.39 4.19 3.85 1.76 5.11 0 10.5 7.93 7.21 9.85 10.8 11.8 10.1 9.97 6.73 10.7 5.43 11.4 11.4 9.24 0 0.56 15.5 9.15 0.97 7.6 6.61 0.56 13.5 7.15 3.69 12.2 0 6.89 3.98 4.07 3.11 2.09 10.6 0.97 0 4.55 8.31 4.52 5.78 15 7.52 10.3 3.69 3.19 5.02 1.54 3.33 8.6 9.33 1.28 3.64 2.64 5.72 0.56 7.96 0 4.19 4.55 5.2 3.64 9.98 1.2 3.58 9.12 1.7 4.49 9.9 4.87 1.28 10.8 3.46 8.6 8.54 3.8 8.86 2.85 4.52 5.54 5.29 7.65 6.93 4.29 4.85 4.87 7.77 4.87 5.02 7.36 9.71 6.95 3.69 12.3 1.76 6.36 8.35 7.01 8.25 6.59 5.34 6.16 2.53 1.95 3.94 7 9 0 9.83 3.69 7.76 1.28 8.08 7.21 2.85 5.49 6.27 8.07 9.78 1.54 8.4 0 3.89 5.38 4.03 8.66 7.83 6.58 2.41 8.59 12.4 7.99 0 6.39 1.54 6.25 4.35 12 3.26 9.37 2.12 5.56 5.77 0 4.49 9.16 7.81 5.16 0.56 12.2 6.85 7.85 10.9 1.28 1.95 8.71 6.96 8.11 5.04 2.41 7.1 3.19 8.44 0 2.85 1.28 0 7.06 0.56 5.07 0 8.69 10.3 5.29 2.75 1.07 1.54 10.3 0 1.76 1.76 4.52 0.56 8.35 10.6 8.35 6.58 8.28 10.7 12.9 5.74 12 1.28 13.7 0.56 12.8 0 7.94 7.51 12.8 13.2 5.41 5.31 12.1 12.9 11.7 0 0 4.03 10.5 6.89 12.7 0.97 2.53 9.65 9.38 6.29 7.39 7.8 11.1 8.61 0 14.6 10.9 12.7 9.73 8.56 0.97 8.78 9.64 8.25 13.6 5.38 11.7 14.5 12.6 1.28 11.2 9.83 11.3 0.56 9.76 9.05 8.25 3.64 8.53 7.76 11.9 10.4 9.58 7.95 11.7 5.91 3.69 5.04 11.3 9 0.56 7.54 8.67 6.5 9.48 8.21 11.3 3.52 4.87 0.97 10.8 3.52 6.79 6.47 5.46 12.7 1.54 8.22 3.33 10.8 4.64 3.26 9.55 12 11.2 13.4 6.38 6.81 6.87 8.1 5.82 0 5.49 9.42 5.96 9.16 8.33 8.63 2.75 7.28 7.82 2.27 6.95 5.93 1.95 7.05 4.33 0 7.17 6.89 6.79 1.28 2.64 3.58 7.63 2.64 10.1 7.03 2.85 3.26 8.67 3.56 5.74 2.75 3.75 6.93 7.29 0.56 4.29 0.97 6.39 0.97 5.04 1.28 2.27 1.95 11.1 0 7.19 4.82 5.02 5.38 4.91 2.41 2.64 6.79 4.94 9.41 5.54 6.82 8.06 0 9.97 1.54 0 10 4.87 9.43 9.03 3.75 8.83 12.5 9.65 5.86 1.76 9.4 0.56 2.85 3.44 0 5.78 10.8 3.4 5.68 11.4 3.69 0.97 3.19 8.25 11.6 7.7 0 6.99 2.41 8.54 0 3.85 7.16 0.56 5.39 10 7.08 8.78 0 7.92 10.2 14.8 11.1 8.31 5.11 8.9 2.27 8.95 12 3.58 9.54 2.65 5.39 12.2 9.36 4.4 9.22 8.79 9.96 9.67 9.69 10.6 3.89 10.3 8.27 0.56 9.87 12.6 13.1 11.2 6.94 11.8 4.19 2.75 12.1 8.89 14.2 13.7 5.65 7.5 8.02 6.97 10.4 5.84 10.7 6.04 14.5 0.97 11.4 12.6 12.2 0 5.97 3.64 7.8 10.1 12.1 12.3 7.49 7.47 9.04 10.6 9.66 10.3 9.93 10.1 6.5 8.48 3.19 12.7 9.66 1.54 6.93 10.5 9.61 8.52 2.53 3.8 10.2 9.41 9.95 9.57 8.92 11.4 10.4 11.7 11.4 10.4 12.7 8.03 12.9 7.06 8.57 4.72 11 10.3 7.02 2.57 10.6 3.8 6.71 6.8 1.76 4.18 8.03 5.59 3.46 11.6 6.09 1.31 12 8.69 5.87 10.3 7.18 8.68 4.58 11.8 10.3 0.56 9.81 11.6 11.2 8 10.6 9.56 8.16 8.22 12.5 9.6 10.3 8.87 9.39 9.61 10.7 12.9 2.64 8.17 12.6 0.97 11.5 12.1 9.84 10 8.82 9.5 9.55 10.4 10.3 10.9 5.43 9.04 10.2 8.34 3.19 9.01 9.85 7.77 9.01 9.99 8.91 8.17 10.3 10.1 7.25 0 13.7 14.1 8.4 9.56 10.7 10 11.5 12.1 12.8 8.32 12.6 10.7 6.93 6.82 10.3 8.08 8.9 12.8 12 9.63 11.3 8.22 12.5 12.1 7.08 8.87 12.2 7.57 0.56 9.17 8.34 8.29 9.5 10.6 9.16 9.65 5.84 7.4 10.7 10.4 10.8 11 4.52 3.64 6.46 11.1 10.5 9.97 9.11 4.43 14.5 2.64 0.56 0 8.62 4.66 8.75 14.7 5.04 13 5.43 4.94 9.83 8.41 2.94 9.51 7.57 8.13 9.18 0.97 8.32 9.96 3.4 9.71 11.6 8.98 10.5 9.46 3.64 3.46 9.61 4.49 5 9.63 9.93 5.49 9.3 9 11.3 0.56 1.95 10.6 12.1 0 4.98 5.99 9.93 10.1 2.12 0.97 5.2 3.58 4.98 3.46 7.34 2.64 1.28 4.36 8.3 6.89 5.47 8.63 10 5.56 6.97 2.69 4.26 6.83 5.28 11.5 6.33 0.56 6.39 1.54 8.92 7.33 5.33 8.15 1.28 1.28 8.79 10.4 1.76 1.95 4.66 1.54 3.4 1.28 7.61 6.73 1.76 0.56 7.06 6.92 6.71 5.99 12.8 3.46 6.44 9.26 5.89 6.43 2.65 8.12 8.26 6.56 2.85 4.98 8.26 6.24 2.64 4.08 6.07 0 7.95 8.35 0.67 2.27 1.54 0.56 1.76 1.54 0.97 0 7.33 0.97 9.83 6.59 3.85 8 5.16 2.41 5.91 11 1.28 1.28 2.41 0.56 0.56 2.41 6.83 0 1.54 7.07 4.4 4.52 4.03 10.8 2.12 8.83 8.69 1.28 6.7 12.1 11.5 10.5 3.75 7.57 5.46 1.28 11.3 14.1 10.4 7.79 7.56 8.95 4.84 11.7 8.39 7.94 7.72 9.17 12.6 9.16 4.83 8.62 8 10.2 9.63 9.51 8.67 9.38 0.56 9.64 9.17 9.29 10.8 0 2.41 9.24 10.6 7.11 9.84 7.77 9.03 7.66 10.1 2.85 5.95 7.45 0.97 0.97 1.28 10.2 5.28 3.89 9.88 9.53 1.54 4.4 14.3 12 7.39 8.92 2.64 6.08 14.2 12.8 3.58 12.3 12 9.5 10.1 9.92 9.07 7.32 1.76 7.41 10.8 7.92 9.96 8.66 10.8 1.95 10.1 9.31 13.3 10.3 10.9 7.14 11.8 6.39 12.6 7.57 7.4 11.2 11.5 10.1 12.6 0 13.3 9.21 10.3 6.64 6.18 9.48 7.12 8.21 10 13.1 8.47 11.9 10.2 9.11 12.6 11.3 11.6 10.1 8.92 9.84 6.1 9.99 10.6 10.4 9.48 11.4 9.72 10.5 11.4 11.5 9.95 10.2 10.8 11.2 10.8 9.33 11.9 10.5 11 11.1 10.8 12.1 9.63 11 10.3 10.9 10.4 10.8 8.57 9.93 9.02 13.1 13.2 11 9.35 2.41 5.84 7.48 7.75 9.28 0.97 0.97 4.29 2.12 10.2 8.71 6.34 7.23 5.52 11.8 11.7 14.2 10.3 5.09 8.82 8.88 4.77 10 9.48 9.31 5.38 13.6 2.75 11.4 10.4 9.16 9.73 11.8 9.92 9.95 9.88 8.55 8.43 8.84 6.02 9.42 9.39 11.6 0.97 8.75 11.5 9.4 9.13 2.12 11 11.6 5.97 10.2 10.2 5.88 8.93 7.78 5.62 9.71 5.33 7.74 7.17 11.9 10.7 12.9 10.2 11.1 9.47 11.2 14.8 2.12 8.74 12.7 3.26 8.24 9.81 9.15 9.05 9.14 12.1 10.7 8.38 7.27 1.28 9.37 2.27 9.83 8.67 10.3 6.63 13.1 2.53 0 13.1 10.5 10 5.51 0.56 7.32 8.58 10.2 9.89 5.87 11.5 8.3 0.97 10.8 6.24 3.85 1.54 12.6 9.75 9.96 0.97 7.61 5.92 6.77 5.66 1.54 8.29 1.28 11.2 8.9 1.95 3.64 9.47 13.6 12.6 13.2 8.8 11.2 5.93 12.3 8.28 9.84 8.72 8.57 8.72 8.69 0 9.61 5.63 6.14 12.1 8.82 4.49 8.95 8.22 0 4.74 12.4 9.46 1.54 4.36 1.76 0.56 13.5 11.1 10.4 11.8 9.3 7.09 12.6 7.95 9.68 2.27 1.95 6.51 7.61 2.53 0 10.8 10.4 13.2 9.65 7.74 7.72 7.73 8.27 1.28 5.98 3.98 8.18 12.2 8.94 8.81 10.3 6.95 0 11.6 4.55 10.7 8.37 0 4.49 0 11 9.75 6.4 3.26 8.13 7.65 6.21 3.75 3.98 7.5 6.51 11.3 15.2 5.69 6.29 11 0 1.76 3.69 12.4 8.11 11.9 9.25 11.6 10 9.15 7.22 10.9 9.25 8.27 5.11 10.6 9.03 8.44 8.01 13.1 12 1.76 10.1 13.7 10.3 8.89 9.55 8.37 11.5 4.41 9.68 8.84 2.41 9.41 10.3 7.61 12.1 6.66 11.8 8.94 6.71 10.9 10.6 8.06 3.33 5.31 0.97 8.6 10.5 10.2 11.5 8.84 10.6 9.82 8.76 1.54 2.14 2.27 12 3.98 6.6 10.7 7.07 6.07 0 11.9 9.98 10.6 10.6 9.9 12.2 8.66 9.15 9.86 12.8 12.6 0.97 12.9 3.03 4.36 4.46 9.21 10.4 8.03 13.1 11.3 10.5 9.87 8.41 8.14 7.12 8.08 9.48 10.7 9.21 10.2 3.98 7.95 8.32 10.5 8.9 12.2 8.43 6.67 8.71 9.65 10.6 10.8 7.73 8.29 12.1 8.08 10.7 7.79 9.8 10.1 9.64 9.93 10.9 8.31 9.89 8.59 8.44 6.32 11.2 6.75 7.4 10.2 10.7 11.2 9.29 9.75 10.9 3.94 8.17 10.3 9.18 9.22 9.12 8.42 9.62 8.72 11.8 8.49 9.7 9.48 11.3 11.1 10 10.1 0.97 8.96 5.29 3.44 2.85 9.38 11.5 7.57 10.5 8.85 11.4 9.34 9.41 10.1 9.18 8.64 11.3 12.3 7.99 8.06 8.2 7.84 9.71 7.12 12 11.5 10.3 10.4 9.24 9.8 9.47 11.1 9.74 9.38 9.13 9.04 11.4 8.59 9.9 10.2 10.2 9.93 10.6 7.43 9.8 7.88 7.75 8.66 10.8 10.2 6.72 9.27 7.96 9.67 8.93 12.3 9.35 12.2 9.49 12.5 7.52 12.7 2.41 9.45 10.8 8.07 8.95 10.5 8.16 9.13 9 10.8 4.84 8.46 3.33 9.93 8.03 9.45 6.41 7.46 7.43 9.83 13.3 8.21 8.58 8.58 9.7 12.1 10.7 8.01 11.5 6.29 9.25 9.26 9.38 5 9.12 10.2 9.93 9.68 7.93 8.57 6.87 4.22 2.27 3.26 9.51 3.8 9.56 8.11 10.2 8.12 9.6 10.5 9.15 13.5 1.28 10.7 8.88 7.64 7.07 9.47 8.24 12.4 11 10.2 8.28 7.02 8.2 8.96 0.56 10.2 9.98 8.09 9.07 10.7 7.88 9.22 9.38 9.34 4.8 5.55 4.03 11.2 10.2 11.3 10.2 7.73 5.68 6.43 9.88 11.4 8.73 12.1 7.27 9.89 11.2 8.77 5.04 10.2 9.01 10 8.51 10.2 10 9.38 9.19 9.78 6.62 9.51 9.05 11.2 5.92 10.3 10.8 1.54 9.77 9.81 6.45 10.6 8.61 7.45 8.4 11 2.64 9.84 5.46 10 9.21 8.36 9.43 10.5 11.1 11.1 5.05 11 4.98 11.1 5.68 6.27 4.84 11.2 9.79 9.86 8.66 9.4 10 9.31 9.03 9.43 3.33 10.3 7.94 11 10.3 8.38 9.5 10.7 5.83 4.07 10.8 8.03 10.6 4.03 10.9 10.2 8.51 11.3 9.37 8.33 7.61 7.5 7.63 10.8 7.89 7.93 12.3 9.17 10.3 5.29 9.99 8.43 8.87 10.9 10 12.6 5.81 11 9.52 8.77 9.37 7.72 7.62 12.9 8.96 9.13 7.73 10.7 11 2.85 10.4 11.3 9.39 11.6 10.7 6.59 2.75 10.7 8.15 9.92 11.7 1.54 9.99 6.42 8.84 7.4 3.4 11 10.4 8.65 0.56 11.8 9.05 8.01 10.5 4.26 8.53 8.17 10.7 11.1 8.12 10.7 8.86 11.4 7.68 9.87 10.3 11.7 10.9 11.8 8.96 10.4 6.55 7.57 5.88 8.01 5.7 11.8 12.1 7.84 10.5 9.81 8.99 10 10 6.24 8.87 7.2 4.69 10.4 9.73 7.97 9.37 8.96 7.51 9.42 8.12 8.07 8.24 9.02 8.69 11.1 5.85 1.54 8.09 11.2 10.1 2.64 8.19 11.1 11.6 9.91 10.6 11.1 10.2 11.9 9.56 8.97 4.74 11.1 9.89 10.6 7.03 11.4 9.02 10.5 10.5 12.4 10.3 9.9 11.2 6.3 9.61 9.59 12.7 8.78 10.6 10.3 8.87 12.6 8.89 0.56 8.18 11.5 10.9 10.1 8.93 11.2 7.52 10.8 8.18 8.79 11.4 11 9.84 9.28 9.31 11.2 9.89 10.9 9.92 9.47 6.85 10.3 8.48 11.2 8.94 4.74 9.83 6.68 8.47 9.23 9.14 10.8 9.16 11 8.45 13.5 8.98 10.6 4.33 7.62 9.56 9.68 3.27 0.97 8.6 9.19 9.42 10.3 10.1 10.4 11.6 10.3 8.43 8.26 0 10.8 9.46 8.39 10.8 6.68 11.7 9.4 0 10.7 6.68 8.8 11.8 11.4 8.45 10 0 9.22 6.85 1.54 2.41 9 9.79 5.24 10.5 10.9 8.68 4.38 11.2 10.5 9.66 10.1 13 9.59 2.27 9.64 10.1 0 10.8 10.8 9.59 9.98 6.86 10.7 11.6 6.7 7.2 4.36 8.85 10 9.55 10.4 8.58 9.02 9.15 9.89 7.33 8.58 8.55 9.23 8.6 2.64 5.61 8.93 5.62 10.3 10.3 9.11 9.04 12 8.42 0 8.54 8.93 10.6 6.53 10.8 2.12 10.8 9 13.3 11.7 11 10.2 12.6 4.89 0 10.2 8.13 8.39 11.5 14 12.7 9.86 7.71 4.84 8.67 4.29 11.2 3.4 12.7 2.27 9.91 9.09 8.13 9.8 12.1 11.2 0 9.07 9.9 10.6 7.94 11.6 12.1 11.9 8.25 9.48 7.02 7.48 9.4 10.8 8.76 8.25 2.41 10.9 8.97 9.3 11.5 9.19 10 11.2 9.98 6.24 11 10.9 11.1 10.5 10.7 9.52 0 8.55 9.79 10.8 6.37 11.5 11.1 0 14.9 8.18 10 0.97 9.53 5.26 8.41 8.01 10.8 12 10.8 12.1 8.73 9.58 9.32 8.88 4.58 10.5 6.28 7.27 3.31 9.74 9.41 8 4.72 9.33 11 0 6.28 8.26 8.3 9.01 11.3 8.73 13.7 4.06 12.5 8.85 9.52 4.53 7.62 2.64 7.68 1.54 11.3 3.26 12.7 13.8 3.26 11.7 9.46 4.19 13.9 9.81 13.8 10.9 10.5 3.26 10 2.64 11.1 5.58 12.3 7.47 8.44 0 4.36 12.4 10.9 9.67 10.6 11.3 8.03 8.26 9.64 6.03 5.82 0 0.97 8.41 10.7 7.11 5.34 6.15 6.78 9.17 1.54 10.7 8.31 0.97 5.09 10.6 7.13 8.96 9.08 9.96 8.33 7.97 9.71 8.91 7.72 9.5 10.3 9.83 9.2 9.6 9.07 6.55 5.96 8.6 5 5.97 7.84 1.95 6.58 2.75 0 7.65 6.46 5.74 9.28 5.19 10.2 8.91 10.4 4.82 9.96 7.87 8.3 4.03 8.23 1.35 7.24 7.8 7.67 9.31 9.22 10.4 10.8 11.5 9.33 0.97 9.41 7.6 8.61 8.08 8.05 11.2 8.24 4.91 3.81 9.86 9.78 11.4 10.9 10.8 5.11 5.15 8.32 9.08 7.87 11 8.05 7.95 9.26 10.6 6.47 9.27 9.34 8.56 11.5 10.3 9.83 13.2 11.8 7.4 12 8.73 2.12 2.64 11.6 9.39 8.93 10.1 6.06 9.16 5.51 6.04 9.26 8.81 6.09 9.43 8.86 11.4 11.6 7.34 8.72 3.19 2.41 10.6 9.92 10.6 10.2 11.3 10 8.42 2.94 11.1 9.33 10.7 11 8.83 9.68 10.6 7.88 10.9 7.85 5.59 12.5 7.36 9.19 8.42 9.7 7.63 10.3 9.31 8.93 7.73 11.4 9.94 7.09 10.5 9.46 12.9 10.4 10.3 5.09 8.18 2.94 8.47 8.1 8.17 7.84 9.41 6.59 9.56 9.57 6.8 10 1.76 8.46 9.16 8.36 7.93 7.75 9.36 8.97 10.5 8.93 10.8 8.28 12.4 9.87 5.28 9.68 8.78 9.43 7.59 7.98 5.88 4.52 6.82 0 7.55 10.4 6.99 9.41 11 2.27 10.8 1.95 10.3 10.4 9.74 7.34 2.94 8.66 8.36 7.48 10.2 11 1.95 6.81 7.63 7.48 11.8 9.83 3.26 9.73 9.23 11.3 8.35 9.93 4.26 13.3 9.34 9.79 6.33 8.7 9.66 9.35 9.65 1.28 9.84 9.33 7.69 10.1 8.07 3.69 4.22 9.38 0.97 13.5 7.72 3.03 9.6 9.12 10.1 3.85 12 3.33 11.4 2.27 6.14 0.56 8.07 11.7 8.92 13 5.22 4.69 9.87 10.3 8.92 9.99 9.04 12.6 8.56 8.23 8.1 11.2 14.3 7.78 9.06 8.45 10.1 8.34 2.75 8.41 11.4 10.7 8.2 8.27 8.7 8.64 6.26 9.43 9.35 9.44 6.79 8.17 9.74 7.74 8.22 10.5 8.86 7.73 8.63 5.15 10.3 6.71 0 7.22 5 9.12 11 4.03 0 10.4 7.79 1.28 12.5 6.01 8.98 9.73 10.4 7.85 0.97 4.55 10.5 8.2 8.21 4.46 9.19 5.84 8.85 8.89 0 9.34 8.71 9.17 8.9 9.97 9.27 8.77 8.75 0 11.7 10.5 9.92 9.92 9.59 9.99 9.48 7.04 8.83 7.71 7.44 8.8 9.07 8.63 10.5 8.45 11 9.21 10.3 9.9 10.9 8.13 8.71 8.59 4.89 8.64 5.69 6.34 9.06 8.86 4.52 7.71 9.74 7.66 9.69 0 10.4 7.7 9.65 7.75 10.5 10.6 8.84 10.9 10.2 8.27 11.1 7.94 9.15 8.3 10.7 10.2 11.2 9 13.1 8.75 9.42 6.89 5.66 8.43 10.3 9.36 0 7.25 9.84 9.87 11.4 7.18 8.26 4.22 11 8.94 9.79 9.84 9.68 9.8 7.98 9.69 8.97 7.95 8.28 8.84 6.74 10.7 9.41 10.2 5.99 8.86 7.4 10.1 0 9.75 9.28 8.24 8.02 11.9 10.1 7.99 9.47 9.5 11.1 3.89 8.27 7.44 9.31 9.06 6.04 10.6 5.46 9.09 3.75 9.47 12.1 7.08 7.44 10.5 7.7 8.27 3.8 10 6.78 11.3 12.3 11.4 4.52 11.3 8.55 11.5 8.44 7.73 8.17 6.97 9.69 10.9 6.83 9.36 7.54 8.53 9.14 8.8 8.51 7.4 9.97 0 0.97 8.99 6.68 9.77 8.42 5.59 8.62 8.56 8.87 11.1 10.7 9.31 8.11 9.84 8.58 9.65 7.08 7.98 10.1 5.65 10.9 9.8 8.15 7.7 10.1 8.73 7.82 7.15 2.75 4.77 9.74 6.92 4.94 3.89 9.07 2.41 9.06 6.87 12.7 7.76 6.91 6.26 9.19 7.31 9.38 10.6 11.7 10.3 10.4 10.5 8.63 5.38 3.64 8.59 4.98 8.22 8.29 9.21 8.12 7.2 10.4 2.64 10.2 8.86 8.83 9.7 7.98 7.36 6.01 11 9.97 9.57 8.57 9.57 8.51 8.22 11 7.98 9.63 7.53 9.23 1.54 8.3 10 8.74 10.2 7.43 8.41 8.33 8.29 7.58 7.14 2.27 8.48 10.4 9.53 8.54 6.39 10.1 7.61 10.7 10.1 9.44 8.72 11.4 2.94 6.03 9.13 9.6 8.96 8.99 9.3 9.37 10.7 8.89 10.5 9.56 9.34 8.12 7.03 9.51 9.26 8.49 8.21 7.72 9.81 10.2 4.33 7.15 10.3 7.99 7.73 12.2 7.8 9.23 9.79 8.56 6.77 10.7 10.5 8.18 9.67 5.85 10.6 7.61 9.77 8.26 0 9.42 9.23 10 7.43 4.36 9.77 3.11 9.58 8.44 9.88 10.2 8.09 11 7.68 10.2 3.75 9.41 8.12 9.17 9.96 8.45 9.9 8.52 9.21 10 2.75 1.95 10.3 7.45 6.18 7.91 10.4 10.1 9.63 8.33 9.17 10 4.61 8.82 10.3 9.43 8.51 9.96 11.9 10 8.71 3.33 10.3 9.95 4.26 8.07 9.78 9.83 10 11.5 7.88 9.79 10 9.82 11.7 8.61 10.4 4.72 8.87 7.24 8.4 9.43 3.19 9.25 8.72 10.6 8.04 9.8 7.05 9.78 9.87 11.4 8.26 8.58 8.57 10.1 9.27 9.63 3.52 3.4 9.44 7.34 1.28 0 9.27 10.3 1.28 8.95 8.29 10.2 11 8.13 8.4 6.75 7.52 8.43 9.81 8.96 0.56 10.2 8.7 0 9.72 10.4 10.5 10.6 8.28 10.7 9.11 8.91 6.97 9.1 1.47 8.98 8.68 8.52 10.5 8.82 4.66 8.99 8.51 10.6 10.1 8.6 9.78 9.1 6.09 8.3 7.89 9.02 10.7 9.62 10.9 4.52 7 9.23 9.93 10.3 8.92 9.87 9.31 12.1 7.9 4.58 8.03 9.74 5.52 0.97 5.87 9.62 12.3 6.22 4.61 11.2 3.4 9.57 10.8 9.93 9.14 13.2 10.6 7.96 10.4 5.72 7.38 12.1 11.6 9.1 5.07 5.2 7.42 8.4 8.84 5.28 0 2.41 7.91 4.33 7.05 7.97 9.49 0 8.3 7.08 9.55 9.97 7.13 12.5 8.11 1.76 9.85 11.1 9.66 9.86 9.53 5.81 10.7 7.47 10.1 7.72 2.12 7.48 5.11 7.56 5.84 10.6 0.56 11.4 6.76 4.15 9.56 9.27 8.12 3.58 0.56 6.4 10.3 4.76 5.04 8.45 0 1.95 6.33 9.72 8.04 10 8.38 6.31 6.61 0.56 11.9 5.83 9.41 8.93 12.6 5.92 10.6 9.04 7.37 5.39 10.7 10.2 8.28 10.2 5.64 11.1 8.41 7.32 16.1 8.35 7.98 8.74 9.67 7.3 3.4 10.4 5.9 9.34 10.8 8.45 3.46 9.22 7.6 10.8 7.98 8.77 10.1 8 8.8 8.29 10 10.7 11.2 10.1 10.1 7.83 11 2.64 5.61 7.84 7.95 8.53 7.98 6.24 8.25 9.32 9 7.56 10.6 8.39 8 7.18 8.67 8.88 10.4 10.6 10.9 11.4 4.89 9.17 7.89 7.89 6.38 10.5 10.5 10.3 10.4 7.45 8.25 10.4 11.1 9.72 6.58 9.77 9.8 8.92 9.58 9.02 8.16 9.77 8.66 8.48 9.28 10.2 10.8 7.43 8.48 10.7 6.22 11.8 9.6 9.73 4.36 9.26 9.62 10.8 2.64 11.6 5.51 11.2 9.86 7.93 8.49 9.36 10.2 7.6 10.8 8.61 10.2 5.55 6.73 8.8 10.9 8.74 10.3 9.56 9.54 9.74 5.99 5.52 6.59 9.18 9.21 6.27 9.36 12.3 8.5 6.35 7.23 8.91 9.6 11.8 11.2 9.54 11.4 11.7 12.5 8.69 9.54 9.14 9.87 11.1 10 9.45 9.01 9.36 11.4 8.56 12.6 10.8 8.04 9.52 9.03 8.35 6.91 9.89 10.6 6.42 10.4 9.86 2.53 9.64 9.14 9.7 6.84 9.91 4.43 10.7 7.53 9.3 7.87 7.47 6.66 9.96 8.91 9.49 9.76 9.61 9.44 7.41 6.75 11.2 4.61 7.62 10.3 8.25 8.52 8.64 8.99 6.2 8.81 4.72 10.3 8.63 5.28 8.68 8.59 6.26 3.52 2.85 7.05 6.78 9.41 0.56 7.43 9.48 8.95 4.72 9.48 11.7 1.54 10.6 8.17 7.54 11.1 11.1 8.32 10.8 10.4 11.8 9.04 7.2 9.38 8.56 10.8 5.95 10.5 6.52 9.21 11.2 9.05 9.5 8.57 11.8 8.34 10 11.9 2.81 10.3 7.22 9.31 9.1 11.7 3.46 9.75 10 9.88 10.6 9.94 0.56 8.71 10.2 10.1 8.96 6.79 6.7 4.91 10.5 2.64 6.81 0.97 12.8 10.1 8.75 11.2 4.82 10.9 7.93 8.87 7.74 10.7 9.96 10.6 6.27 9.99 8.65 11.5 7.5 10.8 9.54 7.82 9.04 5.54 10.5 8.36 6.79 8.86 1.76 8.62 5.72 11.1 11.3 8.19 6.8 9.9 14.1 4.64 3.26 9.49 11.2 11.9 9.86 11.5 9.92 6.66 10.7 10.3 10.3 8.68 7.27 1.28 8.59 2.12 11.9 9.59 9.9 5.29 9.66 10.3 10.1 10.9 10.6 10.2 11.5 10.6 8.78 8.49 5.18 9.19 6.71 1.95 6.68 7.88 7.61 6.6 3.52 6.08 8.15 5.48 5.98 6.93 5.07 5.45 12 4.72 5.3 5.49 6.97 3.94 10.8 2.53 5.09 8.43 6.53 6.27 5.92 6.52 5.49 5.89 9.09 9.05 4.84 5.02 4.19 7.77 1.54 8.21 8.96 1.54 0 1.28 5.11 11 6.43 9.57 9.75 2.27 9.07 12.6 0.56 1.76 10.2 6.61 11.1 0.97 4.36 10.2 5.29 10.2 11.1 5.24 10.3 10.5 4.39 9.76 10.8 11.7 7.72 14.1 10.5 10.4 9.5 3.33 0 10.6 9.07 9.53 8.5 9.07 8.42 9.14 3.98 11.7 4.44 0 0.56 8.74 2.64 8.55 4.03 5.73 8.06 6.43 15.8 7.48 0 16.6 6.88 9.43 5.58 9.47 6.5 7.77 10.9 8.89 9.86 9.56 0 10.5 8.28 11.4 9.21 8.76 5.72 1.76 5.44 0.97 9.51 2.41 11.2 5.26 12.4 8.49 16.4 8.49 0.97 10.2 10.8 11.8 10.8 11.8 8.89 9.96 10.1 8.43 10.9 9.85 10.9 7.16 2.41 10.5 10.8 12 10.5 11.4 10.1 12.7 11.9 7.08 7.12 9.43 10.6 8.83 10.1 10.9 7.38 10.8 10.8 9.78 8.63 10 8.62 5.61 9.04 10.7 11.1 6.38 9.51 9.72 8.29 9.39 7.48 7.47 11.5 7.4 9.94 5.13 11.5 10.7 9.85 9.79 9.18 11.3 7.79 9 10.7 5.87 10.6 9.71 10.7 9.12 9.66 11 9.46 8.33 10.4 8.45 9.61 10.9 9.62 11.1 7.15 4.79 10.2 9.33 11.4 1.95 7.1 3.64 8.9 9.3 9.92 4.52 10.3 2.12 5.04 9.88 7.51 3.94 9.47 9.72 6.74 8.74 11.1 9.84 9.71 5.96 9.94 9.08 9.42 10.5 9.95 8.91 10.3 1.54 9.3 7.37 7.74 11.6 9.17 11.7 3.44 10.9 9.63 10.5 11.6 10.9 7.55 3.58 9.67 9.74 10.2 10.5 10.6 9.82 11.3 9.61 3.46 10.2 9.55 0 11.6 11.1 12.8 5.11 11.5 11.3 9.22 11.4 4.91 11.5 0 9.54 2.41 7.51 8.73 9.72 11.1 4.26 8.7 8.23 11 2.75 7.36 8.93 9.17 9.86 0 0.98 8.35 7.88 10.3 9.41 9.23 12.3 8.51 2.64 8.83 9.64 11.4 10.8 10.6 9.92 12.5 3.47 11.1 10.8 12.9 8.46 10.3 7.35 10.9 9.89 9.55 6.24 12.6 9.85 3.26 10.6 0 10.5 5.43 7.94 6.12 4.91 6.29 11.1 9.78 8.76 11.3 9.6 10.5 11.1 9.44 7.79 10.2 9.79 9.44 10.8 9.96 10 7.09 9.34 11.7 11.9 1.95 9.05 10.5 10.2 10.7 11.3 12 8.34 10.4 8.87 11.6 9.03 8.98 13.1 9.37 7.38 10.1 8.91 13.2 10.4 9.42 9.71 6.14 8.58 10.9 6.27 6.5 11.8 8.02 11 2.41 3.94 8.65 9.74 11.3 1.28 6.05 9.59 12.5 9.8 6.82 11.8 7.83 7.32 8.98 2.27 8.04 7.61 0.97 7.62 12.1 9.86 7.29 6.66 2.53 8.61 15.3 0.56 3.58 11 8.96 0 5.46 9.62 10.1 7.99 11.3 9.75 11.5 8.17 8.03 6.59 11.6 4.33 9 10.3 9.57 10.1 8.02 4.94 8.2 7 8.64 8.5 9 6.58 9.14 5.85 9.03 9.59 6.79 8.51 7.87 7.96 8.55 3.85 6.39 11 9.89 5.41 9.32 9.85 7.59 4.8 3.33 7.52 9.3 9.27 7.91 6.4 3.75 8.71 12.2 9.2 5.85 10.6 13.7 7.97 0 9.44 0.56 11.1 3.11 1.54 6.45 9.41 8.74 11.9 8.5 7.69 10.9 10 9.58 8.8 8.69 13.2 6.3 9.53 8.82 9.96 1.37 3.46 4.36 4.15 3.19 11.9 8.02 10.9 10.4 9.85 4.22 6.53 8.35 7.46 8.73 11.5 0.97 8.47 9.3 7.64 7.86 7.24 6.36 8.83 6.43 9.27 9.65 0.56 9.95 7.39 7.99 8.07 10.4 10.1 9.71 7 7.64 3.03 8.98 10.5 6.25 13.7 8.35 10.8 8.72 6.52 3.4 6.96 7.9 2.27 8 9.82 0.56 10.7 11.4 9.12 9.7 9.38 10.2 9.75 9.01 6.43 7.78 4.66 5.24 8.47 9.52 7.5 8.02 9.36 4.29 8.09 10 10.3 9.45 9.39 7.91 8.77 0 8.24 10.4 9.77 9.37 8.51 5.83 7.33 5.22 12.2 8.76 7.66 9.52 11.3 6.97 2.75 2.53 9.6 8.54 8.73 11.2 9.24 6.95 5.58 6.46 10.6 5.51 11.4 11 10.5 7.05 9.78 9.58 7.93 7.76 8.67 5.88 11.8 6.72 8.29 8.55 13.4 10.2 8.33 5.16 8.71 5.18 8.77 5.38 7.57 7.81 7.93 8.95 7.68 8.3 6.14 10.6 6.66 3.19 11.6 10.2 9.27 8.65 9.57 7.75 10.2 9.57 9.48 9.2 6.41 7.85 4.94 5.28 7.47 7.84 0.56 8.05 11.8 7.92 7.4 10.3 9.69 9.27 3.03 6.66 7.46 1.95 8.01 7.2 6.8 10 8.07 9.69 6.98 9.12 9.14 8.7 10.2 9.03 8.77 9.52 2.64 11.9 10.6 10.8 8.78 11 8.55 0.97 2.85 7.62 9.96 9.9 2.64 8.3 0.97 7.45 6.67 7.33 11.5 9.51 10.9 6.64 8.09 10.4 7.17 8.26 10.4 13.4 8.05 6.55 10.7 8.34 9.76 2.94 6.01 1.76 3.85 7.61 2.12 10.2 9.07 6.1 9.7 9.03 8.01 10.5 7.5 11.3 8.38 5.34 11.7 11.1 9.62 9.49 6.59 8.4 10.2 9.59 9.45 6.57 10.1 11.5 11.2 9.99 11.1 11.9 8.92 12 11.2 5.46 11 11.3 9.59 9.93 11.8 9.41 10.9 6.09 10.8 10.2 10 8.27 8.38 9.85 6.89 5.34 6.97 6.93 4.79 8.69 7.54 8.77 7.36 8.04 12.1 10.2 10.8 8.43 2.53 9.3 9.61 9.37 9.89 9.75 9.83 10.4 7.15 4.94 10.8 1.95 0.56 11.4 12.5 9.56 12.1 10.3 10.1 5.56 1.76 8.79 9.12 10.1 11.6 9.62 12.3 8.39 11.2 9.32 2.85 9.29 9.85 7.79 11.4 12.8 9.32 7.02 8.17 9.26 12.1 10.8 12.2 6.07 7.55 5.83 7.52 7.2 6.18 10.4 3.94 10.1 11.6 10.8 13 9.55 11.8 9.36 11 11.1 10.7 11.1 9.88 7.86 9.76 9.73 10.6 1.54 10.1 7.16 9.51 10.8 14.2 13.9 11.2 9.77 5.97 2.75 6.47 9.74 8.28 8.12 9.88 9.82 0.56 8.13 8.18 11.2 11.1 8.32 9.22 10.2 8.59 12 9.05 6.67 0 10.2 10.9 11.2 1.76 6.27 11.2 9.74 0.97 9.92 7.29 9.4 11.5 0.56 3.89 11.3 10.6 9.99 8.82 9.46 0 3.25 0 11 8.64 6.82 1.28 13.6 10.8 0.97 5.66 7.91 5.49 11.5 10.4 3.85 5.26 10.8 8.51 7.22 11 10.1 7.09 5.96 11 9.1 10.1 8.73 7.14 8.76 7.8 9.86 10.5 0 8.34 9.65 7.47 4.22 0 9.7 6.37 7.28 8.6 10.6 16.8 9.2 8.61 1.95 9.32 3.58 0.56 11.1 0.97 10 8.58 8.43 1.95 9.91 3.26 10.9 10.6 9.18 10.6 12.3 6.23 2.64 8.55 9.68 1.76 7.66 9.31 10.5 6.89 8.73 10.8 1.28 9.08 2.27 0 8.11 11.8 6.86 10.3 10.1 12.3 0.56 9.2 8.02 10.1 7.79 9.54 6.56 8.59 9.94 9.22 2.94 10.3 6.96 13.4 9.59 11 8.77 10.2 8.59 12.1 8.18 9.21 10.2 10.4 0 8.38 11.5 5.22 6.02 8.44 6.27 9.57 9.97 0 0.56 5.24 8.62 3.89 13.2 10.1 9.55 11.3 7.11 9.16 3.4 8.62 9.95 7.66 7.4 2.85 8.19 4.19 7.29 9.46 6.79 3.03 10.6 9.92 9.56 9.32 14.5 14.2 13.9 12.9 10.6 11.8 13.2 5.61 14.2 11.3 14.1 13.4 12.9 14.2 13.8 12.5 13.1 10.7 13.8 1.54 12.6 11.6 10.2 13.3 13.2 13.2 13.7 13.9 12.7 12.4 13.1 13.3 12.6 13.2 11.6 13.3 13.5 12 8.37 8.83 13.4 6.65 14.1 14.2 13.7 9.54 8.82 14.1 13.9 13 14.4 12.1 14.3 2.41 1.76 3.33 8.23 6.33 12.7 2.75 2.75 14.4 9.77 11.1 11.3 8.96 9.78 11.8 13.9 13.4 12.4 13.8 14 13.2 13.7 11.1 13.2 13.4 13.7 8.02 14 13.2 13.4 12.9 13.7 13.8 13.8 8.87 6.8 12.8 9.01 12.3 6.64 10.1 13.9 9.6 10.9 8.79 8.89 1.76 5.83 11.1 11.1 8.15 7.99 10.3 10.4 11.6 6.38 8.25 3.03 5.88 5.88 11.4 5.2 5.98 12.2 1.95 14.2 6.5 8.69 14.5 12.5 1.95 9.86 6.58 0 16.6 10.5 10.5 5.25 8.33 8.27 11.5 10.8 9.88 13.1 9.02 7.97 10.6 10.9 10.6 6.85 10.1 9.11 9.28 11.1 6.17 9.98 7.56 9.45 5.95 6.34 3.19 3.52 15.2 7.5 0.97 5.56 6.58 11.8 2.41 4.58 4.29 8.97 11.6 1.28 8.05 11.5 6.28 3.52 0 6.68 9.29 4.69 9.01 6.05 6.91 4.26 3.85 0 8.74 0 8.8 4.22 2.41 4.07 6.91 2.85 8.33 7.92 2.53 11.6 12.5 12.1 12.6 10.2 10.5 7.17 9.33 10.1 12.1 9.35 9.68 8.97 9.06 9.82 8.62 10.8 7.65 6.75 10.2 9.72 10.8 8.11 8.76 10.8 7.78 4.62 7.98 9.96 11 11.4 7.53 7.15 4.72 1.76 8.4 8.42 7.01 8.49 8.06 8.51 5 9.8 7.26 8.74 8.89 7.15 11.5 5.13 10.6 3.75 10.2 3.75 7.15 8 9.09 8.44 5.31 11.8 7.39 6.34 8.57 7.81 10.2 10.3 9.85 9.15 1.95 12.9 5.15 9.08 10.5 9.69 8.46 7.95 7.91 11 6.12 10.6 7.19 3.19 5.51 7.87 6.76 13.8 9.55 8.48 5.33 5.52 5.68 7.59 10.4 8.66 12.5 12.8 13.8 9.76 8.73 8.39 9.16 5.82 11.2 4.43 5.02 8.48 1.76 10 6.09 8.86 2.12 8.08 1.28 13.3 9.38 4.11 7.7 6.94 7.74 11.5 7.26 9.28 9.26 7.04 6.64 6.47 6.66 7.05 7.31 6.01 11.2 12.1 0.56 9.85 6.59 9.35 10.1 11.6 10.4 10.2 8.85 6.79 9.64 7.75 8.53 10.1 10.1 9.88 9.31 3.8 12.6 11.1 9.88 12.2 1.28 0 7.7 4.69 11.6 2.75 10.9 11.8 5.41 8.99 6.2 7.7 9.66 6.42 9.38 7.45 9.14 10.5 2.27 3.03 2.53 5.88 11.2 1.54 0 11.6 10.4 8.98 10.3 10.3 8.39 0 10.6 8.9 5.79 9.64 10.8 8.59 8.85 6.47 10.5 8.01 4.26 0.97 3.11 4.79 11.1 9.92 10.2 2.94 10.1 8.98 0.56 1.95 11.4 6.75 8.64 3.52 1.28 8.69 6.2 4.58 9.81 4.94 7.94 3.85 0.56 0 6.87 7.99 1.28 11.5 9.72 5.9 10.8 9.49 6.18 6.92 5.83 5.59 7.17 2.41 6.48 7.79 9.14 6.7 0 0.56 4.15 7.77 2.27 9.65 9.11 1.76 8.09 7.34 10.5 11.2 8.76 9.35 8.18 9.47 10.1 10.5 9.02 8.35 9.5 8.71 3.52 8.53 0 1.28 3.64 7.74 4.87 6.96 12.7 3.58 9.23 3.69 9.95 1.95 7.31 8.13 1.76 10.5 0 5.36 3.05 6.6 9.71 5.62 7.78 12 1.99 2.12 7.18 1.76 9.54 10 6.24 0.56 3.12 1.95 0.97 10.7 0.56 4.74 3.94 3.8 1.54 8.55 4.46 7.32 2.27 3.52 8.67 8.76 10.2 0 10.1 2.64 1.28 1.28 10.1 0.97 6.7 4.64 12.1 1.28 10 4.85 5.23 8.15 0.56 7.99 9.26 9.7 8.9 5.76 9.73 0 0 9.44 0.56 3.58 1.54 9.38 6.53 5.16 6.27 8.96 10.7 12.2 8.61 6.64 8.9 11 4.98 5.44 11.1 9.39 8.98 10.6 12.8 9.81 8.75 3.75 7.89 12.1 10.3 7.52 12.4 10 9.95 4.64 7.98 11.9 8.98 8.21 9.96 8.98 9.58 11.9 9.08 9.64 8.78 8.87 11.8 8.78 9.6 9.31 10.7 8.24 6.59 9.89 6.18 1.54 9.95 10.9 9.85 7.22 9.81 7.61 7.75 3.33 9.86 13.5 9.4 5.09 10.4 12.3 5.93 8.83 8.5 4.19 12.9 10.1 11.4 9.01 8.09 9.48 11.8 8.08 9.13 0.56 9.9 10.2 9.38 10.8 9.17 10.4 8.77 12.4 9.88 8.59 7.61 11.2 8.12 7.88 8.44 10.2 7.87 3.43 4.49 6.1 7.59 7.6 12.3 7.26 9.15 6.62 6.18 6.43 8.7 0 10.8 8.43 7.75 8.86 9.15 6.43 3.19 9.72 8.5 10.8 7.12 6.8 9.56 4.19 10.3 0 9.99 8.8 8.72 8.14 9.7 10.7 8.87 9.21 9.17 8.38 8.46 9.61 9.91 10.2 1.95 9.08 12.8 9.56 9.47 8.22 6.35 7.02 3.91 10.9 7.6 8.67 6.03 4.82 9.13 10.8 10.9 8.77 9.93 4.36 8.87 4.46 5.92 2.12 9.8 5.64 8.19 8.93 8.87 9.79 8.72 9.22 8.45 8.95 4.26 10.8 10.3 7.84 8.53 9.92 5.24 10.7 8.27 11.4 10.3 8.02 4.07 10.1 2.94 9.25 2.56 10.3 12.2 0 13.2 9.9 5.39 4.52 9.21 8.36 9.86 9.38 7.33 10.4 8.35 7.29 9.23 11.3 10 7.82 1.54 0.97 0.97 0.97 5.07 0.56 7.4 0 1.28 4.46 8.49 2.12 14 4.66 5.58 0 0.56 6.03 5.28 9.16 7.61 2.41 6.47 1.95 0.56 0 7.27 7.95 9.18 8.84 12.1 4.4 5.54 5.38 9.82 0.56 9.95 6.08 6.21 2.12 2.27 8.71 1.54 6.04 8.18 4.77 5.33 0.97 9.7 9.73 0.97 2.64 2.27 8.75 8.55 3.11 8.05 0 7.7 6.53 0 6.3 8.84 8.46 0.97 1.28 9.59 5.34 4.11 0.56 1.55 4.19 0 7.11 1.76 8.98 1.76 3.03 10.8 3.8 5.54 12.6 11.4 9.1 0.56 0.97 6.77 10.8 9.02 9.98 9.41 4.03 1.76 8.11 6.94 9.62 2.41 12.2 11 18.2 9.65 11.6 11.4 10.6 10.9 6.64 8.57 9.67 9.57 10.1 8.65 9.59 9.01 9.15 8.27 10.3 8.15 4.07 10.5 7.41 11.6 10.7 10.6 9.02 6.31 9.81 9.69 4.4 5.88 1.54 8.69 12 10.3 10.9 9.59 10.5 7.76 7.86 10.3 10.9 1.27 9.81 9.39 12.3 8.81 8.05 10.6 10.7 11.4 9.07 7.7 7.2 8.05 8.5 8.43 7.47 7.86 6.27 11.9 12.3 11 9.56 8.11 11.1 10.4 9.51 10.3 8.94 10.9 10 9.23 8.85 9.04 9.51 9.89 8.67 6.99 11.4 11.2 11 10.4 0.56 11.1 5.13 13.8 10.1 11.2 9.23 11.4 7.77 9.6 10.1 9.8 11.3 9.74 1.28 6.64 3.46 3.98 10.3 10.9 8.52 11.6 10.3 6.7 10.7 6.5 10.4 6.37 18.1 8.83 11 9.32 5.65 8.82 1.28 10.3 7.35 9.8 12.3 10.1 8.05 13.8 0.97 6.18 13.2 8 10.8 10.1 8.21 0 11.4 6.96 10 11.9 10 10.4 11.6 12.3 9.58 10.5 6.85 10.5 11.2 9.6 9.88 13.4 9.27 9.69 10.9 10.6 10.3 13 12.6 12.8 12.7 11.8 6.64 3.89 0.56 10.3 11.1 12.1 11.2 4.69 12.5 2.75 11.5 11.2 12.6 5.76 10 10.3 1.54 1.28 3.03 0 0.56 1.28 0.56 2.1 11.4 2.91 0.97 0.56 3.1 10.9 12.1 8.42 9.61 0.56 5.09 11.2 8.71 8.27 8.69 10 7.61 2.85 2.85 10.6 9.78 3.11 6.34 7.14 5.38 9.66 10.2 10.6 9.73 10.7 9.5 8.23 10.6 10.8 1.95 14.7 0.56 8.93 9.82 11.1 10.7 11.1 9.41 9.63 6.96 13.3 9.66 9.17 7.33 9.72 9.67 6.68 10.2 10.6 5.11 9.15 8.83 1.76 5.38 11.7 4.55 9.01 1.28 3.69 0.56 11.4 9.22 4.91 10.8 6.66 9.51 9.12 8.65 6.54 13.3 6.53 10.6 11.2 8.7 10.4 10.2 9.04 8.77 7.68 9.74 5.93 1.28 12.3 12.9 11.7 10.9 13.5 8.59 8.49 11.3 4.07 1.28 9.08 10.5 9.12 10.4 8.61 8.09 7.92 7.3 4.87 4.72 6.59 8.82 9.87 8.33 9.93 0.97 4.49 7.74 9.95 0.97 0 11.5 0 10.2 10.3 7.56 3.03 9.86 7.69 9.78 9.17 7.51 10.2 3.75 10.3 7.96 8.15 9.29 9.21 9.52 2.12 9.87 9.8 7.65 12.1 0.56 1.28 9.96 6.68 10.2 5.52 10.6 10.2 7.79 8.34 11.9 12 8.79 9.5 5.95 3.8 8.6 14.1 6.87 8.01 9.52 0.97 9.34 9.58 4.15 9.36 3.26 8.99 5.02 7.4 8.64 9.75 9.69 9.81 8.82 11.4 4.69 8.94 3.4 13.2 5.72 5.62 10.3 9.94 9.37 10.6 0.56 13.8 10.7 0.56 12.6 8.49 8.44 9.95 11 13.2 0 10.7 11.8 13.6 11.3 12.1 5.97 2.53 8.75 3.33 10.4 7.34 2.41 14.4 11.2 9.82 10.5 7 9.24 15.7 15.1 14.4 4.64 10.2 11 8.07 11.4 11.6 5.24 9.82 10 9.37 8.24 3.03 13.4 12.4 7.79 9.45 6.77 8.59 15.8 16 7.17 8.47 9.22 12 9.8 9.04 9.25 10.7 8.59 9.11 16.2 13 8.2 10.3 4.82 2.75 10.2 10.8 8.81 13.2 9.18 12.7 10.6 1.28 2.94 0 1.28 12.9 3.64 10.9 14.2 15 11.3 6.89 2.75 9.17 11.3 8.29 10.3 10.4 9.66 16 2.27 10.8 9.88 12.3 12.2 0.56 12.7 12.1 13.5 14.1 12.6 13.6 9.39 9.89 11.2 6.66 15.7 0.73 18.2 8.46 9.38 15.7 7.9 8.09 7.54 9.05 7.31 9.97 17.5 1.54 11.9 10.2 11.8 8.31 7.96 8.27 1.76 4.26 6 8.59 9.18 2.12 3.26 2.64 10.6 9.16 10.5 5.38 11 0.97 9.69 12 7.84 8.28 6.88 9.36 10.1 10.6 10.9 11.8 8.84 7.02 8.07 6.48 5.76 8.17 8.95 7.06 4.64 1.28 9.29 6.58 9.52 8.19 11.8 4.26 4.69 4.91 5.49 7.36 1.95 7.16 7.48 2.64 7.27 9.18 9.25 3.4 7.4 0 3.19 7.05 12.5 6.53 5.78 1.28 6.04 8.1 7.06 1.28 8.81 0 6.53 7.12 6.53 2.12 4.84 8.45 10.2 5.07 13.8 3.11 7.28 0.56 5.91 0.56 3.58 4.94 7.59 5.15 8.98 0 2.75 9.72 4.29 8.64 8.4 4.43 4.64 7.95 0 1.95 4.61 8.07 7.25 5.2 0 4.61 5.18 1.95 4.49 5.23 4.15 0.56 7.28 10.9 9.14 3.26 8.4 4.69 3.4 13.5 4.82 5.95 1.28 8.71 9.98 1.76 0.97 3.64 8.24 5.09 8.05 3.26 5.33 0.56 8.45 8.03 0.56 13.5 2.27 7.83 5.28 8.59 9.24 6.11 1.76 10.6 0.97 9.81 2.64 12.4 3.85 14.2 15.2 13.5 0 9.75 10.9 10.6 9.24 10.6 12.1 9.95 9.14 10 9.69 10.8 11.1 1.95 10.9 10 11.5 9.43 10.1 10.1 10.8 10.3 11.3 12.8 8.78 13.6 0.56 10.2 4.29 9.97 6.19 10.9 7.56 11.1 11.9 1.76 7.66 9.32 12.7 10.4 10.2 10.5 8.55 0.97 11.3 2.12 11.9 11.3 12.3 10.4 10.7 10.8 10 9.61 10.7 9.55 2.41 10.7 11.1 8.93 9.7 10.6 11 8.51 9.95 9.93 13.4 11.5 13.2 12.2 10.9 10.6 9.26 10.2 11.9 9.16 2.94 9.28 0 14.4 15.3 3.46 13.5 11.1 6.28 4.72 6.4 7.19 8.32 5.74 9.12 13 11.9 11.5 8.21 10.2 12.7 11.3 9.8 9.46 6.96 8.94 10.9 9.7 8.43 8.81 1.76 3.33 9.87 0.97 0 3.26 0 3.26 4.58 8.76 5.15 1.54 8.86 7.67 10.7 12.3 3.46 1.76 1.26 1.28 8.01 9.84 5.96 10.8 5.26 11.6 8.81 4.66 7.23 7.75 9.83 12.2 8.83 10.2 9.81 13 8.58 13.2 12.9 11.5 13.6 6.85 11.8 10.1 5.38 13.8 8.33 10 9.03 6.5 8.2 9.38 4.22 8.82 5.75 12.7 6.82 9.7 7.05 6.39 7.44 6.57 7.68 6.18 6.99 7.9 9.47 8.85 8.59 10.1 7.38 7.75 5.79 9.65 10.2 9.97 7.02 9.27 9.36 7.49 7.68 7.24 7.69 7.4 6.25 5.22 5.49 0 5.55 6.93 7.5 8.6 7.81 9.21 6.38 1.54 8.98 3.69 6.15 6.69 7.95 0.56 3.52 5.53 4.43 6.64 12.4 5.18 1.76 2.75 3.4 2.64 0 3.12 9.6 8.53 6.27 8.22 7.24 7.12 7.33 5.52 7.2 8.17 9.29 5.29 8.05 7.88 8.62 6.1 10.4 10.8 10.7 8.6 10.1 6.22 6.64 1.28 9.74 5.9 10.7 8.14 6.84 2.75 5.56 3.52 6.77 8.64 7.71 10.4 1.28 8.07 8.17 7.5 7.22 8.89 7.41 9.84 7.18 8.01 5.77 8.11 10.9 6.77 1.95 8.89 6.56 4.29 11.6 10.5 5.9 7.51 6.02 8.08 2.12 7.73 6.88 6.74 6.25 6.66 7.43 8.13 0.56 1.28 6.56 7.17 8.02 5.24 12.6 9.75 9.5 13.8 8.53 11.3 6.4 12.6 7.4 13.4 9.45 10.6 6.06 7.22 9.88 12.5 8.23 8.4 10.6 10.3 13 4.96 5.64 4.94 10.9 9.25 7.41 8.05 8.41 9.37 9.42 12.4 10.6 12.6 11.3 13.2 8.53 6.56 9.73 2.53 10.5 9.08 4.96 5.31 8.12 10.7 9.38 5.59 9.61 2.41 3.75 8.07 9.76 3.94 12.1 10.4 8.84 10.6 8.35 8.83 8.19 9.43 10.1 0 9.18 10.3 8.48 5.49 8.92 10.9 8.53 0.56 15.8 10.4 7.45 8.51 8.19 9.9 9.31 9.23 10.2 5.59 9.88 10.2 4.03 9.69 8.96 9.64 12 7.66 10.3 2.94 8.25 8.94 10.6 9.31 10.7 9.11 7.21 7.72 12.2 6.56 6.8 10.2 6.85 9.73 9.32 8.97 10.6 10.8 9.63 6.08 9.99 7.77 7.69 3.19 7.6 9.27 8.73 9.75 3.58 9.6 11 10.8 11 7.73 8.06 9.08 8.8 11.7 11.6 7.15 9.77 10.5 12.1 8.58 7.57 9.13 5.24 12.2 5.58 4.87 5.98 9.36 8.46 8.82 10.2 7.78 11.8 9.45 7.19 0 6.62 7.55 12.2 7.88 10.1 6.24 3.52 10.4 8.43 8.11 7.51 8.63 8.81 10.6 8.72 9.09 0.97 12.1 11.5 5.41 10.4 13.2 8.82 7.34 6.92 3.32 9.27 1.54 0.56 0 10.2 7.34 9.88 9.48 6.3 4.29 0.97 1.76 7.44 2.27 8.68 9.59 2.85 9.79 7.82 11.3 8.43 7.68 3.46 10.4 7.73 9.69 4.29 1.28 6.63 3.61 11.5 8.14 6.64 2.12 9.96 12.6 8.58 7.82 9.04 9.42 10.8 8.73 8.54 10.4 14.6 10.9 10.1 9.49 10.3 8.91 8.01 6.25 10.2 10.6 8.42 2.64 9.11 8.01 6.58 8.4 7.26 9.56 4.96 5.83 8.81 9.08 6.27 9.09 2.85 7.34 9.55 6.1 7.52 7.66 9.45 3.4 9.42 8.41 5.9 7.79 7.05 8.64 9.08 6.88 8.9 8.94 3.33 8.05 9.73 7.84 9.72 9.08 10.4 9.61 7.04 9.81 4.46 8.7 8.54 10.1 9.31 6.05 7.91 9.57 9.86 7.98 3.64 9.36 7.83 9.8 9.72 9.16 7.61 5.16 8.41 7.74 8.9 8.12 6.16 9.05 7.35 10.2 11.5 10.2 9.16 9.07 7.97 8.97 9.27 6.8 7.76 10.1 9.46 8.33 7.91 9.15 7.27 12.2 10.8 9.61 7.25 7.8 9.33 9.9 9.92 12.2 10.2 9.03 2.85 7.32 9.79 6.13 9.37 8.13 4.69 3.98 9.36 6.8 7.92 9.51 7.05 8.54 6.4 2.12 8.48 7.19 9.6 7.81 0 10.6 5.02 9.72 9.16 8.03 8.8 0.97 7.76 9.05 6.37 7.55 8.83 10.6 9.22 8.1 11.7 5.97 2.64 9.21 7.55 8.48 7.97 9.35 8.99 0 6.7 9.6 8.51 3.64 8.88 11.1 10.1 10.7 8.41 9.48 8.22 8.5 6.63 7.87 1.95 9.24 5.76 7.26 7.88 7.81 10.4 10.1 9.48 4.03 8.25 7.69 5.93 6.03 7.19 9.73 0 9.39 5.96 4.98 7.92 7.86 8.83 7.63 6.8 10.2 7.47 10.6 3.75 9.9 4.33 6.88 10.5 6.64 3.85 7 5.65 2.94 7.95 8.53 8.16 7.15 5.97 8.45 4.11 2.12 3.89 8.31 1.76 9.07 2.41 6.25 8.38 7.56 3.94 6.56 8.79 9.04 10.3 5.04 7.92 9.12 8.14 9.04 7.07 10.3 9.29 5.9 8.27 9.64 8.77 6.16 9.11 8.44 8.71 10.6 9.18 7.65 10.5 9.99 9.56 7.26 8.85 8.24 6.49 7.74 14.3 9.11 10.8 4.74 4.91 8.4 8.63 8.25 7.79 4.33 7.88 7.33 11.9 6.65 0 7.06 7.63 6.14 5.29 8 7.82 3.46 10.6 7.87 8.84 3.4 6.5 10.9 9.23 2.41 7.39 6.42 2.59 9.61 0.97 2.27 9.33 3.19 10.2 3.64 7.37 6.9 9.3 8.13 5.23 7.63 6.5 7.43 7.63 11.5 4.43 6.82 0 8.53 8.62 7.9 4.19 6.29 11.4 7.74 8.22 9.17 2.12 8.52 3.26 14.2 1.76 0.97 8.07 9.25 8.52 8.71 7.58 3.52 7.02 11 10.3 8.8 10.4 10 8.62 9.86 8.79 8.38 8.03 11.1 10.5 9.95 9.76 8.09 2.12 1.28 3.8 4.29 7.46 8.74 8.06 2.91 5.72 4.07 0.97 7.3 9.96 12.4 5.96 7.23 9.24 5.28 4.46 0.56 9.14 7.61 6.5 5.56 5.18 7.69 8.64 7.83 9.6 8.8 11.5 10.3 10.2 10.2 7.99 6.34 9.15 8.98 9.71 9.47 7.72 8.24 5.61 8.01 8.29 6.23 9.38 7.33 5.28 8.47 8.6 8.41 7.8 9.29 9.31 9.31 9.04 8.97 8.27 8.87 10.1 10.4 6.75 8.93 10.5 8.91 9.81 9.35 9.81 9.91 9.06 5.83 11.6 9.19 10.9 9.07 11.7 8.13 9.3 11 10.7 5.87 10.9 9.64 7.71 7.1 2.27 9.46 10.8 9.83 3.26 8.91 5.81 5.84 10.5 10.1 10.9 10.1 9.15 2.75 10.8 9.14 4.43 7.93 11.5 10.8 6.06 7.6 9.15 8.31 4.55 9 12 12.4 7.97 4.49 8.6 8.03 10.1 6.33 6.5 5.39 8.39 4.77 7.98 9.73 3.85 5.77 1.54 11.7 6.36 3.69 10.8 7.67 0.97 7.78 7.29 10.8 5.8 9.29 10.3 9.74 2.94 10.7 6.36 10.2 11 6.69 11.8 10.7 13.2 9.54 5.46 10.2 11.3 5.54 9.35 4.46 9.29 10.1 1.95 5.84 11.3 6.98 11.3 3.03 2.41 5.62 3.89 4.49 7.3 6.9 7.35 8.99 5.09 5.33 6.19 10.7 12.7 12.3 8.09 6.66 9.04 8.57 6.58 6.69 10.8 6.66 10.7 12.6 9.69 11.4 10.1 12 7.89 8.98 9.22 7.99 7.73 7.19 8.99 10.9 10.8 8.87 9.68 0.56 9.93 9.98 8.48 10.6 9.33 9.36 4 3.64 6.71 1.99 11.6 7.12 8.3 8.56 2.75 1.76 11.7 12.9 8.63 3.03 2.75 6.09 3.89 10.8 8.76 11.9 11.7 10.8 15.7 3.03 7.97 4.98 6.87 1.76 10.6 13.6 9.91 5.78 2.75 9.4 11.3 10 11.2 3.03 8.76 4.89 0 13 4.96 9.53 11.5 9.01 11.5 10 5.36 11.5 9.5 8.17 11.1 7.09 10.6 11.4 9.37 9.14 7.91 8.97 9.9 10.2 9.7 9.46 13 0.56 9.15 7.96 8.96 9.22 7.68 7.94 9.02 7.42 11.2 0.56 7.43 11 10.2 10.2 5.33 8.71 9.4 8 7.32 9.27 10 8.11 1.28 7.11 10.6 10.7 6.66 4.87 9.51 8.27 9.02 10.9 3.65 11.9 10.1 10.4 11.1 12.6 9.38 6.15 1.54 10.6 7.75 9.14 6.1 1.28 9.38 8.7 4.33 6.92 7.31 9.26 5.11 7.69 1.76 9.36 6.42 9.26 8.74 9.82 9.62 9.3 6.27 10.5 3.31 10.4 7.02 9.44 9.59 6.56 9.38 8.32 12.3 9.99 8.59 10 9.98 8.54 8.71 0.39 8.93 10.2 3.17 9.43 8.87 8.32 9.22 1.28 6.32 5.15 7.57 10.7 0 10.2 9.15 5.99 10.3 15 7.35 9.76 5.66 12.1 8.17 1.28 8.95 8.64 9.89 9.25 12.4 7.64 10.7 13.2 13.6 10.2 11.1 10.8 5.88 12.8 9.66 6.96 10.6 8.91 8.69 10.4 0.97 7.11 0 10.2 11.5 9.13 5.72 8.87 1.54 10.9 12.2 12.4 8.87 6.92 12.6 9.06 10 9.1 10.7 8.66 6 5.52 12.3 4.98 13.5 10.9 9.7 9.28 7.06 3.19 0 10.9 1.95 0 0 9.91 2.27 8.22 1.76 1.54 7.9 9.23 0 4.07 3.8 5.73 0 0 7.5 2.53 10.5 12.2 10.8 7.9 7.25 1.54 0.97 5.26 8.16 7.98 0 8.19 6.43 7.33 9.84 10.2 5.18 7.43 8.26 7.88 8.85 1.28 8.25 4.87 11.2 7.16 9.32 0.56 3.19 0 4.87 3.4 0 6.17 7.59 7.11 8.59 7.92 9.32 8.91 2.12 10.4 0 1.28 0 0 10.1 6.85 4.33 10.1 7.38 6.6 6.96 9.37 0 8.76 10.8 10.4 8.75 7.75 0 3.75 9.23 11 10.2 0.97 8 11 8.61 8.04 7.67 5.91 0 2.53 11.6 0 9.03 11.1 8.86 1.28 10.2 13.2 9.38 4.66 8.57 9.92 1.28 0.97 7.26 11.7 7.75 9.44 9.3 9.03 6.03 1.28 12.5 10.5 5.17 1.95 3.11 8.92 3.46 7.23 10.5 12.2 9.45 5.56 9.46 10.9 2.27 8.88 8.01 9.62 10.4 9.12 2.64 6.39 6.16 7.86 4.66 2.2 9.25 5.07 10.2 7.64 6.86 7.91 10.1 10.7 9.01 8.99 11.1 6.38 10.7 5.66 5.47 0 4.87 0.56 4.07 0 6.66 0 2.53 9.95 11.1 8.62 4.49 10.5 9.41 7.25 8.88 10.3 8.3 11.2 9.88 8.23 9.05 7.93 7.21 4.15 6.27 1.76 4.07 10.7 7.38 9.51 4.4 11 12.1 10.5 7.91 9.65 0 4.29 5.9 0 9.76 9.17 2.94 6.53 10.1 9.13 11.7 12.8 10.1 1.95 8.88 2.85 7.94 1.76 9.77 8.12 12.5 8.72 5.46 9.2 9.93 9.45 7.89 4.43 13.8 3.98 5.58 0 2.41 4.79 6.45 9.28 9.87 8.98 9.28 5.36 6.07 8.67 10.6 2.94 9.34 6.51 2.85 9.43 7.73 5.51 7.5 9.69 9.79 8.7 7.17 9.22 8.97 7.68 8.15 8.24 8.63 7.89 7.99 4.91 7.73 4.64 9.01 9.43 4.33 9.44 8.36 11.1 6.95 10.5 8.49 10.2 9.23 7.25 12.6 10.6 8.88 8.88 8.51 5.22 6.86 9.17 9.82 10.8 8.55 9.43 10.6 6.02 0 6.47 9.71 10.5 10.2 3.58 7.9 6.19 6.18 3.4 6.55 6.34 8.42 5.38 6.93 3.89 7.68 6.19 5.34 5.34 0.97 8.73 11.4 11.1 8.75 8.1 0.56 8.39 8.88 8.67 9.39 9.54 11.4 1.54 10.2 7.38 3.75 7.27 6.74 10.8 10.4 3.26 9.4 8.11 7.54 9.05 9.75 5.74 8.72 9.61 8.56 8.56 7.96 9.46 8.53 10.4 9.64 8.72 8.89 6.66 8.82 8.8 3.11 8.77 10.6 9.54 4.58 9.11 6.66 9.64 9.26 8.78 9.98 7.07 8 1.28 6.96 10.7 8.42 9.18 6.45 9.21 9.64 8.83 9.4 4.68 6.35 7.55 9.61 8.66 5.69 7.74 9.18 0 10.2 9.38 7.62 10.4 8.19 7.43 9.07 9.63 6.74 9.13 8.77 9.93 9.5 9.25 3.4 8.05 9.77 6.7 9.17 0.56 10.1 8.77 10.1 9.34 9.39 9.75 9.62 9.47 10.2 2.75 9.42 11.1 9.35 0 9.82 4.79 9.35 1.76 9.84 5.07 11.6 3.75 10.4 7.51 6.66 9.34 8.01 7.86 8.34 8.81 8.37 10.7 4.98 11.7 9.85 7.07 9.13 9.28 6.56 7.06 8.94 4.32 8.6 8.35 8.57 7.55 1.28 4.55 3.26 1.83 9.7 9.67 11.6 8.19 2.41 6.29 10.5 10.7 10.1 7.72 10.8 6.75 2.12 5.44 10.4 7.27 9.8 6.07 8.47 7.69 7.09 9.94 10.6 4.91 10.8 6.81 7.38 10.2 6.12 9.92 8.1 11.7 7 9.47 14.2 2.85 11.2 7.81 9.39 0 8.24 9.23 3.33 11.7 9.82 9.03 6.95 6.27 6.66 11.9 7.85 9.05 5.2 11.6 9.92 7.74 1.28 3.19 6.33 9.26 10.5 5.41 7.22 9.32 11.1 2.75 1.28 0.56 1.76 9.17 12 10.6 9.85 10.7 6.47 8.74 0.97 8.37 7.64 0 9.2 8.48 10.6 4.66 6.71 7.45 8.13 0.56 4.11 0.97 10.8 9.52 0 5.07 7.68 11.2 9.41 7.39 11.3 9.88 9.8 5.96 6.88 11.7 6.87 11.6 5.28 7.97 0 11 10.2 8.08 6.22 9.78 7.64 9.8 6.54 4.19 8.24 7.65 2.27 7.06 6.37 8.69 12.4 5.72 9.24 4.66 8.33 8.76 9.45 5.66 6.97 4.46 2.53 7.96 8.95 8.67 5.34 4.33 2.64 7.03 9.71 9.28 7.85 8.03 9.7 5.77 7.82 9.42 6.47 5.91 10.1 10 6.32 7.38 0 2.94 8.66 5.07 7.08 5.88 9.8 8.17 9.29 9.76 6.91 9.93 9.44 8.72 6.82 6.37 0 7.17 7.16 9.73 7.92 7.92 7.19 9.08 10.2 9.41 11 9.89 9.4 0 9.6 10.9 7.45 9.21 10.2 10.2 11.7 7.99 10.5 6.35 9.49 8.45 5.31 7.05 9.05 9.41 8.4 10.8 5.7 9.87 6.18 8.33 3.64 9.93 11.6 9.98 2.64 6.84 7.76 9.12 7.31 9.38 10.8 9.76 1.76 7.6 7.84 8.41 8.89 8.49 8.51 9.42 7.69 9.94 6.59 5.33 7.79 2.64 8.6 9.31 10 7.19 10.7 8.56 2.27 10.8 5.04 8.51 9.05 7.41 5.96 8.24 10.7 1.95 7.01 9.16 6.77 8.91 7.06 5.36 4.84 8 8.52 10.1 9.89 3.64 9.84 8.59 0.97 7.39 6.52 7.83 9.37 9.49 2.53 3.46 10.3 10 9.63 5.09 11.3 4.94 5.18 9.43 0 8.69 10.3 8.77 9.47 7.63 7.32 10.4 9.15 9.65 7.03 8.93 7.17 8.4 8.97 8.88 8.38 10.7 10.6 9.42 9.65 1.76 9.31 5.34 4.69 9.31 9.96 13.5 9.76 0.56 10.3 0 10.1 9.36 6.79 8.19 5.61 0 6.87 0.56 5.93 7.06 11.6 9.31 7.76 0.82 11.2 0.56 8.08 9.8 6.83 8.61 7.42 8.5 9.33 8.16 9.01 10.5 9.09 10.2 2.27 9.25 2.64 5.49 9.12 9.06 9.66 11.4 6.61 9.81 9.18 10.2 2.64 6.77 5.34 0.97 7.31 8.2 2.53 13.1 11.4 9.64 5.74 8.35 9.36 9.24 8.77 7.36 6.51 10.9 9.64 8.24 9.83 4.46 13.3 8.6 9.83 8.62 10.8 8.22 9.78 7.35 8.49 9.19 8.78 5.54 3.34 10.5 9.16 4.29 1.54 8.9 1.76 1.54 3.11 8.58 1.71 3.85 11.4 7.82 9.44 5.68 3.26 9.32 8.79 11 10.3 9.04 5.2 11.1 11.5 10.7 8.29 8.78 12 10.3 8.51 11.3 9.86 9.29 9.51 6.64 8.02 10.9 8.19 9.9 8.33 3.75 2.41 9.71 8.93 8.66 7.08 10.4 5.41 6.34 11 10.3 8.62 9.82 8.03 11.6 4.79 3.75 10 3.58 9.48 8.41 9.28 3.26 8.92 6 10.4 5.47 3.58 3.64 9.51 10.5 9.57 9.15 5.97 9.22 6.87 5.2 9.2 3.4 7.84 10.6 7.01 9.66 9.64 10.1 10.2 5.68 8.8 12.2 9.26 8.43 10.4 12.7 12.5 8.57 11.6 11.9 10.9 12 11.6 10.3 9.73 9.81 11 11.3 8.49 10.8 7.63 8.57 10.2 8.99 7.55 12.7 10.9 8.38 9.59 10.7 9.99 9.34 9.44 5.79 12.4 1.78 12.7 9.42 10.9 9.13 9.4 3.69 0.56 15 7.55 8.76 9.42 8.75 6.25 12 11.7 12.7 9.9 12.3 10.3 8.67 10.4 10 11.4 10.4 9.93 8.9 11.8 5.13 10 7.28 6.77 6.66 10.7 9.26 10.2 5.78 3.58 1.76 0.56 7.34 12.5 12.6 14.1 9.97 11.4 13.2 9.15 11.1 8.91 7.12 10.3 10.7 9.19 11.2 9.49 5.75 9.04 4.74 10.4 4.91 2.41 6.6 2.41 8.64 6.66 7.99 5.2 10.3 7.23 8.04 9.01 5.99 6.62 10.7 10.8 9.9 11.9 9.43 4.22 6.05 3.98 0.97 9.58 9.83 4.33 11.6 10 8.33 9.75 7.54 4.33 5.72 0.97 10.4 2.75 12.9 12.2 11 7.63 8.22 7.01 10.2 8.75 6.85 8.67 9.4 0.56 6 8.62 10.1 0.56 2.75 8.44 10.1 7.08 4.28 11 10.1 6 9.24 12 0.97 12.3 0 9.28 10.3 8.07 6.93 6.15 7.57 11.9 9.59 9.25 10.4 9.78 9.38 7.68 12.3 7.54 14.2 11 10.3 10.6 9.88 10.1 9.04 10.1 11.9 10 9.56 9.22 8.81 8.89 9.87 11.5 11.2 10.8 9.79 10.4 10.2 1.54 7.42 0.56 11.4 9.12 8.64 10.9 8.85 1.95 9.15 9 3.64 6.08 10.4 6.25 8.36 8.48 9.82 10.5 10.1 9.95 4.59 4.55 1.17 9.91 10.4 12.1 10.4 11.6 8.71 4.33 9.73 12.3 7.62 6.47 12 9.58 10.9 0 3.33 4.98 10.8 2.41 2.41 11.4 9.85 11.2 3.52 1.54 9.18 8.71 7.97 6.07 10.8 10.2 6.14 7.11 3.58 3.19 0.56 2.86 9.24 8.01 8.85 7.34 12.4 7.71 6.97 0 9.68 7.8 7.74 0 1.67 5.15 1.64 0.56 6.23 2.41 8.14 9.8 6.81 7.18 11.6 9.82 13 7.98 0.56 8.96 9.59 10.3 10.3 9.55 5.49 9.01 9.66 9.98 7.53 6.13 6.91 10.3 11 10.3 0.56 4.69 5.55 8.54 5.59 10.1 10.5 1.95 9.85 10.5 8.83 0 9.76 8.8 7.86 5.88 6.28 7.97 3.26 12.6 11 9.08 8.35 9.67 8.33 11.2 8.84 2.12 7.09 10.4 6.11 1.28 3.8 4.43 8.86 7.86 8.92 0 4.96 5.77 4.79 5.36 4.22 11.3 9.34 7.33 8.57 8.56 7.71 0.97 5.92 8.3 8.44 5.69 1.54 5.61 7.18 8.22 11.4 7.33 7.87 5.11 10.3 6.8 5.56 9.83 9.99 9.23 12.9 8.86 7.66 6.16 7.97 11.4 9.08 9.87 12.5 7.99 7.69 4.82 1.95 9.34 3.26 11.1 10.5 8.63 6.83 3.98 8.49 7.11 9.77 10.1 6.75 4.89 8.46 5.84 9.85 8.5 9.1 5.84 11.5 10.2 6.94 7.78 0.56 4.52 7.82 6.59 12.7 11 8.22 8.06 7.69 7.69 8.76 8.13 9.23 4.89 8.08 2.27 5.58 8.88 9.58 9.95 8.58 10.5 10.3 2.09 7.68 0.97 3.52 6.22 9.49 8.75 7.8 12.1 3.64 8.49 8.95 7.04 6.53 10.9 10.2 5.46 11.5 9.84 9.13 9.67 9.02 6.1 0.97 9.37 10.7 10.6 9.6 9.08 5.86 9.24 10.1 8.89 9 10.4 5.31 8.03 9.73 8.08 10.9 9.6 10.7 9.78 9.6 10.2 7.49 10.3 7.68 8.58 8.76 8.23 9.55 6.61 4.84 9.71 9.32 9.07 9.13 5.26 6.98 6.88 8.96 12 8.36 8.09 9.25 9.34 2.75 0.97 5.7 2.41 8.45 8.2 3.03 10.9 12.3 7.18 11.3 10.3 7.59 9.92 8.94 8.2 11.1 8.92 8.31 3.85 10.8 9.88 11.2 11 7.67 8.33 0.97 7.26 5.14 10.4 8.64 0 5.31 8.42 8.15 9.47 8.81 10.5 9.16 6.54 8.12 9.38 7.92 9.44 5.07 9.41 6.02 6.28 7.37 11.1 5.92 9.89 6.59 2.12 9.15 10.6 9.46 9.32 1.54 8.39 6.72 8.85 4.07 7.25 5.47 7.86 9.13 5.51 8.39 10.1 9.73 10.9 10.8 8.32 8.32 10.8 5.69 9.87 6.73 8.91 1.28 7.86 9.13 9.39 7.44 2.41 11.8 7.07 10.9 14.7 6.39 8.77 10.7 7.29 6.58 4.79 7.47 0.56 5.04 2.12 5.07 10 9.17 6.72 3.61 6.34 3.03 10.9 6.79 8.93 9.83 9.18 10.9 7.39 3.4 10.6 1.95 9.18 8.15 10.5 9.23 14.5 9.36 2.4 9.26 8.1 7.1 10.1 10.6 6.41 7.03 9.05 5.15 5.73 8.12 10.3 2.12 9.62 2.53 9.13 10.9 6.61 4.29 6.34 8.73 11.3 8.22 8.78 9.05 7.56 9.14 10.3 9.82 8.81 7.71 8.36 11.6 9.41 4.19 6.72 8.11 9.06 7.37 6.05 9.04 10.2 8.58 12.3 8.5 10.7 5.44 10.2 8.52 11.7 9.36 10.9 4.11 8.71 10.6 3.03 9.08 2.85 8.19 9.28 7.55 8.78 6.14 2.27 6.32 5.55 1.28 0.97 2.75 3.19 7.27 10.9 0.97 10.1 10.6 5.64 7.49 8.9 5.01 7.24 8.47 7.35 9.64 6.24 11.7 2.12 7.63 10.1 8.58 7.45 10.4 9.04 2.41 8.47 6.55 6.97 2.75 11.6 8.05 0.97 11.2 7.61 4.52 10.1 9.92 4.36 9.88 11.4 7.66 7.52 10.4 6.75 3.67 7.43 9.05 5.88 10.3 9.13 11.1 8.1 9.5 9.65 11.5 6.1 9.99 8.53 9.92 9.54 10 5.18 10.4 9.63 8.74 7.83 9.07 8.2 10 13 10.1 8.9 4.74 9.79 12.8 8.72 5 10.3 8.75 1.28 9.45 5.26 8.81 8.01 13.4 3.94 9.09 10 6.76 6.58 7.63 8.18 10.8 11 6.47 5 7.74 9.84 7.46 5.56 8.9 4.41 12.7 6.85 9.09 7.74 6.9 2.27 8.08 5.28 7.54 8.76 2.53 10.2 9.08 9.59 7.21 9.56 6.39 6.35 9.01 10.3 8.08 10.2 7.1 11.6 9.62 9.27 9.14 3.19 10.3 8.78 8.8 9.47 7.73 7.3 8.73 6.83 12.2 6.17 0 11.7 9.27 8.12 10.3 8.43 10.6 11.1 10.3 0.97 10.8 8.79 11.2 5.39 2.85 10.5 13.4 0 9.15 7.71 10.8 9.48 11.1 0.56 5.79 0.97 10.8 5.92 6.3 7.03 9.31 10.6 10 0 12.8 7.99 8.96 9.17 3.94 7.93 9.24 4.46 3.63 0.98 10.9 11.2 9.09 12.4 8.22 11.5 9.22 9.85 8.9 12.1 10 0.56 6.34 10.6 1.95 9.24 0.6 5.09 0.56 7.11 0.56 10.3 7.82 8.99 5.61 8.87 8.68 10.3 0.56 5.79 1.28 9.41 8.89 6.64 8.66 10.2 5.44 7.39 7.84 4.94 11.2 12.4 3.85 10.4 4.26 6.04 8.13 10.2 7.45 10.4 9.67 2.27 8.91 8.99 3.03 8.81 9.59 11.2 8.21 9.77 10.4 8.68 5.81 8.32 4.33 9.41 0.56 11.8 13 3.33 10.8 8.76 8.21 6.72 9.12 5.79 11.4 8.92 7.62 10.3 8.67 0.97 4.58 4.11 8.18 7.73 1.76 9.24 5.31 9.3 7.23 7.91 8.11 11.2 13.7 11.1 4.58 11.8 7.3 8.29 9.76 8.95 9.52 9.55 5.65 5.76 8.48 0.97 9.07 8.69 6.44 7.76 10.1 4.43 11.3 10.9 10.6 6.81 8.77 9.55 8.99 2.53 8.99 7.93 9.8 2.12 7.29 8.78 7.31 6.3 8.46 9.02 10.6 11.6 7.37 5.24 9.08 4.96 2.75 8.73 12.7 14.4 5.2 8.71 8.99 10.2 9.37 9.43 11.2 9.7 8.01 3.33 11.1 10.6 8.01 8.06 6.69 11.2 8.18 10.3 9.94 9.89 10.4 9.59 13 9.83 9.96 6.97 11.3 8.93 8.65 7.67 9.02 7 12.1 11.4 1.28 9.16 9.41 3.85 8.88 7.49 10.2 11.4 10.5 11.4 9.67 9.79 10.9 11.7 9.78 8.99 10.8 4.81 10.3 13.6 11.6 9.68 9.92 9.72 7.19 10.1 9.25 8.13 9.88 11 9.71 7.64 10.9 6.28 9.21 11.9 7.46 7.34 8.83 13.3 10.5 4.61 10.8 10.3 6.92 2.75 14 9.88 13.9 8.91 10.4 9.58 8.37 12.2 8.25 10.1 11.5 10.7 6.21 9.37 8.15 7.97 6.97 3.8 9.68 1.54 10.7 5.61 8.41 11.8 5.9 4.66 8.46 10.1 8.36 9.3 9.45 8.3 12.9 12.2 12.9 9.79 11.1 10.2 9.45 6.98 7.73 8.59 3.94 10.9 11.1 7.87 9.8 9.01 8.4 7.69 11.8 14.6 13.2 7.22 10.7 10.9 9.42 10.2 6.18 10.8 14.6 9.61 3.03 11.4 9.3 8.97 9.38 8.02 8.67 10.1 10 11.8 7.82 10.6 10 8.92 11.6 11 5.68 9.72 11.8 5.54 11.4 9.31 9.28 10.1 10.9 8.75 10.9 10.5 0 6.59 4.89 5.85 9.82 9.72 12.5 7.96 2.27 10.1 3.96 13.6 7 9.02 9.22 8.7 5.13 9.05 4.77 7.57 7.24 15.7 3.43 4.69 10.2 8.54 9.09 11.8 9.77 7.71 9.14 9.52 9.45 9.6 6.47 7.71 10.6 7.94 8.78 9.32 7.55 13.2 9.95 10.8 7.37 11.2 8.09 10.5 9.98 14.7 7.58 8.55 7.05 8.17 7.74 9.08 8.6 10.6 5.34 13.2 7.3 8.64 9.94 11 8.18 6.87 14.7 10.2 8.55 10.5 11.2 10.3 11.6 12 9.54 10.6 6.15 11.3 8.77 12.6 5.74 11.7 10.7 7.56 6.59 10.3 11.2 10 10.8 9.21 11.5 9.54 10.1 10.2 11.9 7.07 9.49 12 11.9 12.3 13.9 10.1 0 11.5 11.1 10.2 11.4 7.53 10.2 7.66 10.6 9.14 8.62 10.2 10.7 11.2 7.22 8.42 9.87 7.05 11.3 7.22 8.01 8.51 8.3 1.99 7.23 5.78 7.84 7.01 10.1 9.41 4.91 8 10 9.82 8.46 10.3 9.24 6.83 8.12 8.26 8.96 9.49 9.48 7.53 4.87 9.63 8.76 9.98 5.96 10.8 10 8.4 9.31 8.81 11.9 11.2 9.13 9.76 9.66 11.5 10.2 9.71 9.64 11.3 10.3 9.96 9.64 7.02 10 8.65 11.3 7.55 10.9 9.56 10.4 8.51 12.3 7.8 10.2 9.58 9.2 9.74 10.8 11.1 5.55 7.67 5.24 7.05 13.4 10.1 8.96 9.29 8 10.2 11.7 9.24 7.35 7.93 5.26 11 9.82 3.03 11.3 11.1 9.98 11.3 5.46 12.5 10.1 9.04 8.89 8.3 10.8 11 5.34 10.5 5.07 9.73 9.33 4.15 10.2 9.66 8.09 8.41 9.97 11.5 4.66 7.22 5.69 9.98 13.2 7.3 12.4 9.83 4.33 10.5 3.52 5.54 0.97 6.91 9.58 10.2 8.58 13.9 10.3 0.97 3.19 11.2 9.63 10 9.41 2.13 10 9.27 9.32 8.22 9.99 12.1 8.55 8.4 11.7 8.52 11.2 9.82 11 12.3 9.54 10.2 2.75 11.4 8.14 8.75
-TCGA-UT-A97Y-01 8.18 8.69 10.8 9.08 6.44 8.07 2.3 4.83 5.66 3.91 5.68 7.82 7.11 2.59 4.24 8.41 10.6 10 7.01 9.54 9.12 9.25 9.3 3.05 9.7 8.59 4.25 10.1 3.82 7.18 5.07 6.03 4.98 2.84 5.18 0.66 0.64 6.57 1.69 4.65 5.9 3.85 6.66 1.42 4.99 3.73 1.08 4.28 11.8 6.05 3.31 6.08 6.52 10.6 5.52 1.69 7.17 2.59 6.13 5.13 8.96 6.32 9.14 2.24 3.39 2.72 5.94 7.58 9.96 4.01 4.01 7.39 1.08 2.59 1.69 3.91 5.02 4.01 3.93 1.42 7.51 2.3 2.77 9.36 6.46 0 5.62 0 5.37 4.15 8.18 4.61 7.16 6.2 5.83 2.59 2.12 2.12 5.55 3.61 1.92 5.31 2.59 5.77 0.64 4.62 6.24 7.73 9.83 5.29 0 0.64 9.36 6.3 5.81 2.3 2.2 4.55 1.38 3.67 4.74 3.98 1.08 1.92 1.42 6.52 3.47 3.31 2.84 6.95 2.65 1.08 3.91 5.24 5.79 1.69 4.48 3.85 3.72 8.58 6.78 10 1.42 3.05 4.48 11.7 0.64 10.6 1.42 0 5.19 1.92 6.11 9.78 10.9 2.95 2.3 0 10.5 5.94 7.39 6.44 1.42 5.27 8.63 5.93 6.25 4.51 8.21 4.15 10.2 9.22 3.14 4.01 5.42 3.47 5.13 6.35 6.98 4.98 6.18 8.19 4.01 5.7 4.24 2.31 0 0.64 9.4 4.99 9.27 11.7 4.81 6.04 5.8 4.3 3.79 9.11 8.05 8.88 8.61 8.74 8.76 10.5 10.4 5.13 6.83 10.2 11.3 11.3 10.4 5.93 11.1 11.3 10.1 10.3 9.7 10.5 8.65 10.6 8.7 8.93 11.2 10.8 9.36 8.23 5.04 10.4 9.32 12.2 9.81 4.55 9.95 10.1 9.21 11.2 10.1 11.7 9.84 2.72 12.4 8.9 12.7 12.4 11.9 13.1 12.5 12.8 8.07 12.8 6.64 2.72 8.33 10.2 9.03 5.74 10.6 12.3 0.64 12.8 5.09 10.3 10.2 10.6 9.35 10.5 9.19 10.4 11.4 11.1 8.4 8.28 8.39 9.84 11.4 10.2 5.29 12.9 11 10.9 12.1 10.2 10.8 8.8 10.3 9.68 10.5 7.87 11.5 10.5 5.44 5.67 11.9 6.92 10.8 10 5.11 12.5 9.17 8.14 9.17 11.6 11.2 10.2 10.1 12.3 5.33 9.65 8.6 9 13.3 9.65 3.14 8.5 6.66 11.9 10.2 2.95 9.81 8.33 10.9 11.7 10.1 10.7 10.5 10.3 11.9 9.56 9.97 8.84 10.1 8.83 10.9 7.9 10 11.9 8.44 8.12 7.78 11.3 11 8.2 9.87 11.3 8.74 13.6 12.2 9.14 12.2 10.2 10.5 13.1 10.4 2.72 4.61 9.17 8.35 9.99 1.42 6.32 5.53 11.5 10.6 9.92 8.19 7.43 8.7 12.4 7.6 8.07 7.38 11.5 9.87 10.9 10.7 7.68 8.09 10.4 1.69 7.46 9.56 9.23 7.97 9.13 10.5 10.8 6.28 10.8 8.73 9.69 2.59 9.89 12.3 8.69 5.85 10.6 9.91 7.02 10.4 9.26 10.1 10.8 9.95 9.51 12.8 10.8 9.54 10.4 10.5 8.38 7.65 8.58 10.6 9.57 8.68 11.1 9.23 8.9 8.81 7.05 9.35 6.31 10.9 10.9 6.97 10 9.9 10.2 5.44 10.9 10.6 12.4 8.53 8.12 6.51 6.66 8.68 8.31 8.93 9.77 11.2 12.3 10.2 4.06 11.2 6.82 7.7 7.35 0 9.29 3.23 8.03 5.65 11.7 8.85 8.54 7.04 11.1 3.47 4.11 9.79 10.5 11.6 1.42 10.4 8.52 2.59 5.44 5.55 7.92 6.36 2.95 8.82 3.23 10.4 10.3 10.8 9.91 9.78 7.85 14.8 9.64 4.08 8.59 11.4 6.45 12.3 9.92 8.34 5.46 5.63 10.5 8.9 7.83 12.9 9.4 6.59 10.8 7.24 12.1 13.9 14.7 9.99 5.58 7.46 9.79 8.25 8.57 9.46 6.58 0.64 11.5 5.18 14.3 9.47 10.9 11.5 12.8 11.3 9.85 6.13 10.8 9.77 11.2 10.4 10.8 9.19 9.44 9.66 7.87 10.6 10.2 10.1 9.18 9.08 10.6 7.69 10.3 10.6 10.3 10 10.1 9.69 10.3 10.4 0 9.54 7.5 10.4 8.99 9.08 10.4 11.4 11.2 9.38 9.46 7.38 6.49 9.78 8.92 9.06 9.51 11 6.7 9.78 0.64 9.44 9.1 11.1 10.9 9.22 11.1 10.4 8.76 8.4 11.8 11.1 10.1 11.2 1.42 13.1 10.6 11.3 10.1 13.2 12.2 12.4 11.6 8.07 8.81 10.8 7.37 3.31 6.92 8.54 10.3 8.25 9.78 9.81 10.9 11.6 10.1 10.2 9.38 2.12 6.81 11.3 10.3 8.04 13.1 10.1 10.5 9.45 12.2 10.2 11.8 11.5 11.4 0.64 10.3 10 8.41 8.88 11.9 6.77 6.04 9.54 9.98 11.2 11.8 9.87 10.3 10.4 11.1 11.7 2.59 11.6 8.84 11.3 10.2 9.1 7.95 10.8 8.49 5.48 7.6 8.66 2.3 3.47 9.89 9.99 3.05 11.8 4.32 9.78 7.72 9.89 10.5 12.5 12.1 11.9 12.3 4.61 9.09 7.23 7.7 12.9 9.6 3.23 8.03 7.51 10.7 11.3 9.41 9.54 11.8 0.64 7.4 10.6 7.68 9.56 9.05 6.26 9.99 11.3 9.61 11.3 11.7 3.05 12.3 7.99 9.99 11 9.38 11.2 9.25 12.7 8.09 5.73 8.19 6.5 9.05 11.6 9.42 13 13.6 8.21 10.7 15 11.5 4.15 9.89 7.49 8.17 4.26 6.79 9.76 8.38 4.24 9.47 10.9 7.52 9.49 12.1 10.2 9.98 8.39 11.9 11 8.46 7.88 0 5.62 9.97 4.58 7.67 6.97 10.3 10.6 8.8 10.3 6.82 5.29 6.45 9.82 8.97 9.07 0 10.6 10.3 7.16 0.64 5.37 11.8 10.5 4.61 7.53 7.97 7.43 9.95 9.88 9.19 3.01 8.56 14.5 7.68 11.9 11.4 10.4 11.6 12.5 9.33 12.3 9.17 6.99 3.83 10.6 6.98 2.95 2.3 2.42 8.24 6.82 10.4 1.42 9.09 8.94 4.48 5.83 11.3 11.4 9.56 6.72 11.4 8.25 2.3 10.1 11.8 10.8 10.3 9.9 11.2 12 10.3 10.8 8.61 9.09 11.4 9.31 7.87 9.75 8 10.2 8.35 12 7.38 10.3 7.56 4.96 8.02 9.95 6.82 1.08 5.24 12.7 9.95 2.3 3.91 9.48 10.1 11.5 8.02 8.04 4.96 9.01 0.64 7.84 7.1 9.65 6.11 8.84 9.04 9.68 1.69 4.36 2.84 10.6 9.14 8.81 11.5 9.94 9.32 6.87 10.7 11.3 5.62 6.59 3.05 4.74 9.12 8.44 11.8 9.6 10.3 6.91 5.24 8.8 8.22 8.1 0 6.45 8.43 9.3 1.08 4.55 11.6 3.14 9 10.4 9.07 1.92 11 9.2 11.9 11 3.14 9.42 10.4 7.68 10.4 8.46 10.1 10.4 10.9 9.8 4.42 7.15 3.39 11.5 10.4 12.4 2.72 10.6 10.4 11.5 10.8 11.7 6.96 7.86 11.2 10.8 9.66 1.69 12.5 2.59 10.5 4.44 11.8 10.5 8.3 2.72 9.6 11.8 12.8 11.2 8.99 10.2 12.3 9.61 11.6 11.3 9.95 10.5 11.1 12.9 10.8 12.9 11.5 11.7 7.59 11.7 7.06 7.44 7.32 10.7 13.4 12.7 12.4 10.2 10.5 11.1 8.01 11.1 10.9 10.5 10 11.5 8.4 11.8 10.1 10.9 10.8 4.74 3.23 12.2 5.8 10.3 5.77 9.71 9.87 7.16 8.81 7.17 9.38 1.66 2.84 9.41 9.33 4.94 13.6 11.2 10.2 9.02 9.42 6.54 9.02 8.56 10.5 5.53 1.69 6.52 0.64 4.71 10.3 12.1 6.93 13.2 7.27 8.95 9.59 7.6 9.19 8.23 9.77 1.08 8.58 11.2 9.75 10.6 10.8 10.6 9.27 10.9 9.57 11 9.73 7.09 2.59 8.35 9.38 8.78 10.6 9.27 7.87 11.9 10.7 8.81 10.1 7.93 6.33 10.6 11.8 12.6 9.84 8.66 10.8 10.8 7.38 6.6 9.46 6.44 9.47 8.86 13 8.59 12.6 5.95 8.63 9 8.22 5.67 9.7 8.22 9.19 8.46 7.87 12.7 9.27 9.84 9.97 9.69 3.61 9.38 3.96 8.27 8.86 9.24 1.08 9.59 5.13 8.33 7.3 11.5 2.95 10.2 8.39 6.2 12.2 9.88 9.38 1.92 9.01 6.87 7.04 0.64 6.61 9.73 9.97 6.54 5.86 6.07 10.4 8.19 8.56 9.25 12.2 10 8.9 5.86 9.08 9.15 9.09 14.9 10.3 7.23 5.74 6.87 11.7 9.8 7.93 11.1 9.68 9.68 8.14 1.69 12 6.7 10.2 6.26 9.17 10.1 2.84 11.8 0 8.83 8.99 8.22 8.3 10 9.81 11.1 10.9 7.95 7.54 8.92 5.65 9.04 10.1 8.5 11.8 9.95 8.66 10.5 8.21 5.13 7.98 6.64 10.9 4.77 13.7 6.86 7.83 9.36 9.03 11.1 11.8 6.97 9.63 8.96 9.59 8.75 7.65 11.1 6.76 5.55 6.33 9.65 9.36 7.18 10.9 8.3 6.3 7.91 7.78 9.46 7.94 10.1 2.3 2.3 9.47 11.6 8.06 9.89 9.94 11.4 9.9 11.4 4.94 10.9 7.28 8.51 5.85 8.47 8.11 10.5 9.17 8.69 4.46 0.64 5.57 7.46 11.3 7.18 8.58 8.37 5.73 9.62 8.53 10.4 8.98 7.17 1.92 8.14 3.44 11.9 9.1 8.06 7.9 10.1 9.04 7.86 10.8 10.9 9.91 10.1 8.32 10.3 8.54 8.85 10.8 10.2 2.12 9.52 6.3 11 9.12 7.97 10.8 12.2 6.42 11.5 7.94 4.01 10.7 5.74 4.83 9.63 8.78 3.39 9.24 11.6 9.9 9.32 4.8 9.27 11.6 11.8 10.2 9.68 6.65 7.38 7.06 12.6 10.8 1.92 11.8 10.1 11.6 9.04 12.2 10.1 12.6 11.6 6.08 8.47 8.79 4.61 11.3 9.87 9.84 11 9.83 10.8 8.51 9.13 2.3 12.9 7.6 6.64 3.96 8.05 5.31 7.86 8.44 2.8 5.24 9.27 8.06 6.61 6.92 1.42 10.7 4.36 9.07 1.92 6.82 7.86 1.92 4.5 10.4 4.06 3.91 3.31 7.35 8.57 4.36 4.06 9.05 4.48 5.91 1.08 0 6.76 5.65 8.73 6.26 8.5 9.69 8.01 0.64 8.6 2.84 7.89 10.2 8.06 9.14 9.08 7.9 1.69 9.36 4.06 8.01 8.76 7.9 8.15 6.59 4.99 8.19 0 8.69 6.8 5.57 8.71 12.3 1.69 9.6 7.62 2.99 5.09 8.43 9.61 6.05 8.88 10.1 11 8.85 8.46 11.4 5.74 9.13 3.54 11.5 6.34 9.18 12.1 8.61 9.04 8.7 9.95 9.45 8.77 3.67 11.3 9.95 10.1 6.42 8.61 9.52 10.3 8.56 5.65 3.31 7.29 6.41 6.88 8.08 11.4 8.32 7.81 5.2 8.7 8.72 10.2 12.6 8.12 0 2.12 9.82 8.63 6.99 5.27 7.6 8.89 9.56 10.5 6.54 9.42 10.6 5.13 6.68 0.64 0.64 7.8 9.03 7.17 8.81 8.85 5.42 9.14 6.31 1.69 3.47 8.44 7.35 1.08 12.6 10.2 4.77 6.6 8.88 7.64 2.45 7.61 4.24 10.1 9.65 6.11 9.18 7.28 11 8.54 11.2 8.02 10.9 10.6 2.95 9.83 1.42 8.45 8.88 9.15 8.69 6.89 9.36 2.12 9.49 5.44 8.55 0.64 7.57 2.45 9.71 5.31 7.96 3.14 3.85 2.01 9.45 1.08 0.64 9.11 9.64 9.87 9.31 9.2 0.64 5.82 8.1 9.14 9.36 9.39 1.69 8.07 6.59 1.42 3.96 10.4 7.79 11.7 6.77 8.35 11.1 7.85 2.95 8.12 3.73 1.69 1.69 7.08 8.47 5.76 10.6 4.8 8.47 6.07 13.2 10.2 11.1 0 5.86 5.94 8.8 11 6.77 7.64 12 0 6.17 9.08 7.78 8.3 10.3 5.85 10 0 7.35 0 7.73 1.42 8.79 9.3 7.12 3.92 8.64 10.8 4.4 2.59 4.71 8 7.11 9.21 7.32 8.4 5.06 7.42 7.9 6.86 8.39 9.15 12.7 13.1 8.33 1.92 6.17 3.47 6.45 0.64 11.3 10.9 7.85 8.44 9.84 3.54 7.73 9.58 9.91 11.7 4.8 9.44 7.79 6.63 2.72 7.32 9.51 2.12 4.48 7.41 8.46 9.42 10.6 2.3 5.48 11 4.61 3.31 7.43 11.7 10.9 9.61 9.57 3.79 8.19 13.4 1.42 8.64 10.8 5.22 4.55 7.92 9.81 5.53 8.57 10.4 3.14 0.64 1.92 4.91 3.05 6.83 2.45 7.39 6.72 8.84 7.95 5.6 5.11 9.37 7.24 6.28 9.97 9.16 8.88 2.45 9.25 7.97 5.99 9.49 7.31 8.35 5.65 2.59 8.87 2.3 8.96 1.42 7.99 4.86 7.79 7.94 3.23 7.38 7.62 5.46 4.15 5.53 8.4 4.94 1.42 8.44 5.53 7.78 8.98 9.58 0.64 8.27 2.54 11.3 0 8.34 7.52 7.44 1.69 6.29 8.44 8.62 1.69 1.92 9.14 9.35 4.71 3.47 9.46 8.98 8.78 11.1 9.22 4.88 8.44 8.55 8.27 12.5 10.7 3.85 4.06 8.53 8.91 6.13 5.22 1.69 6.14 10.2 8.77 5.33 5.58 2.3 6.32 5.94 9.61 9.34 8.65 9.99 7.36 0 10 4.4 9.52 9.84 5.13 8.51 8.43 6.76 5.48 12.7 8.18 7.31 0.67 9.11 5.27 7.98 8.12 2.3 6.95 1.42 6.64 10.6 1.92 10.1 9.37 2.12 6.42 5.39 7.23 5.44 7.38 6.42 7.52 9.41 8.11 9.7 3.31 1.69 9.49 3.54 0 3.05 5.7 8.19 6 10 10.1 9.38 1.92 10.3 10.7 8.65 11.1 10.2 7.02 9.38 6.95 8.8 9.82 1.42 6.23 6.43 13 8.22 5.77 12.8 6.16 2.59 5.41 8.39 2.12 11.2 7.82 8.65 10.4 5.7 2.95 4.4 1.08 0 0 9.6 0.64 5.76 0 3.47 6.8 8.22 2.3 8.75 0 2.72 10.1 9.61 5.97 7.25 11 2.64 1.08 9.23 3.85 5.39 0 10.4 19.7 7.18 9.51 5.86 18.6 10.2 3.14 0 4.48 7.68 3.67 11.2 5.53 8.04 10.3 18.8 4.32 7.26 15.4 5.65 4.91 1.92 8.98 10.9 8.33 9.33 1.42 9.42 4.58 8.35 7.23 15.6 7.93 7.37 5.62 2.72 0.64 5.24 3.31 4.01 10.5 9.94 3.05 5.91 3.23 4.36 11.8 9 16.1 8.86 8.86 15 5.16 8.32 15.4 8.47 15.8 9.12 4.91 15 8.61 11 7.75 8.11 10.1 4.32 8.27 8.93 9.47 6.99 8.53 8.51 8.81 5.77 5.16 6.7 3.67 7.8 7.84 6.46 4.88 3.61 10.4 6.71 11.9 13.4 6.55 6.79 5.73 9.2 13.8 10.1 6.29 5.71 2.12 5.55 9.54 8.56 2.45 9.07 5.83 1.08 7.82 13.6 7.91 9.1 12.4 4.2 3.39 4.32 1.42 9.28 6.4 9.98 6.16 8.44 2.3 2.72 0 0 7.41 1.69 11.5 8.54 2.45 10.6 12.8 8.17 4.11 8.39 12 1.08 8.66 12.2 9.24 11.7 9.88 8.18 2.3 10.6 7.67 1.08 9.21 4.36 1.08 8.43 7.35 7.28 6.45 7.06 9.38 1.42 1.34 7.37 8.96 7.63 6.46 2.84 6.77 3.9 9.02 7.43 8.19 12.2 8.88 8.4 8.56 7.36 10.4 5.06 7.27 2.45 6.41 7.58 2.45 7.29 6.25 2.12 9.55 4.65 8.61 11.3 10.3 10.8 8.82 1.08 3.91 8.56 6.97 11.5 6.05 8.04 7.91 10 9.54 9.53 1.69 8.25 7.36 6.23 9.85 5.71 8.84 10.9 9.88 2.3 7.6 10.9 8.98 7.42 10.8 5.09 10.6 9.37 6.99 11.7 11.2 10.4 9.77 3.52 6.25 7.83 9.57 5.86 8.86 4.88 9.99 0.64 9.53 0 2.3 0 2.45 5.46 7.46 0 10.7 5.85 0.64 10.9 3.54 1.69 4.51 3.05 5.76 9.22 8.33 7.1 6.16 5.44 8.75 5.29 6.65 8.11 10.6 9.47 7.69 8.59 7.51 8.59 5.39 3.14 5.16 8.77 0 5.9 11.5 7.66 0.64 11.3 0 0.64 6.92 6.85 6.72 13 7.62 0 8.42 9.6 7.31 2.72 4.15 9.94 8.4 8.48 6.75 11.2 8.09 1.69 10.9 9.86 9.09 7.12 7.87 7.96 3.31 5.65 5.58 8.24 7.96 11.7 12.5 7.06 1.42 1.92 9.18 11.7 7.73 10.5 10.9 7.48 9.41 4.63 9.79 8.46 8.82 5.99 9.4 10.6 0 4.15 5.76 11.7 2.95 6.26 11.3 11.5 6.24 7.3 7.7 8.47 3.31 0 10.5 4 4.61 5.2 9.82 5.52 6.32 8.15 6.17 8.31 4.22 3.67 9.64 8.83 9.59 10.4 0.64 8.94 9.09 4.11 10.3 10.2 4.96 7.19 8.15 8.12 1.69 5.01 11.1 6.32 10.8 1.69 9.86 3.05 8.08 9.44 3.79 3.31 11.6 9.47 6.42 2.95 6.67 3.39 0 5.68 1.69 6.56 8.54 0.64 8.34 10.7 4.4 11.7 8 10.4 10.3 8.89 4.01 9.92 11.3 8.03 9.79 9.61 10.1 4.51 3.67 8.59 4.55 6.02 6.34 6.68 6.28 7.75 10.9 7.52 9.06 0.64 0 9.8 6.96 6.45 9.75 7.3 8.18 10.3 1.42 6.11 7.27 7.83 3.54 11.3 11.7 7.57 8.69 9.76 4.2 2.59 1.69 6.94 2.95 10.8 10.9 0 5.17 6.46 3.47 8.84 4.88 8.69 7.82 11.5 7.68 8.45 12.4 0 2.12 4.74 11.8 3.61 7.33 11 7.38 0 6.51 4.73 10.9 4.74 5.55 7.24 8.69 9.8 10.2 7.93 5.58 6.04 5.27 1.08 7.11 8.96 3.31 8.53 4.68 3.91 11.4 8.34 5.85 8.22 1.92 3.23 8.76 13.9 5.44 0.64 9.43 2.12 4.91 2.12 7.22 7.39 11.2 8.14 5.73 3.31 2.59 13.1 8.42 8.07 5.55 5.31 4.99 7.99 5.39 9.77 8.93 7.13 2.12 6.13 0 5.22 5.83 1.42 0.64 8.68 2.45 1.08 6.11 1.08 8.88 2.12 9.04 4.68 8.64 8.81 6.81 8.54 5.04 6.03 9.12 5.09 12.3 4.4 7.98 6.64 9.01 9.8 8.25 9.05 5.27 1.08 3.91 4.28 5.2 6.95 6.65 5.24 10.8 5.73 7.23 8.46 3.05 5.37 2.72 5.57 7.47 8.27 2.72 8.82 4.16 7.94 1.42 6.42 8.02 7.73 8.01 7.36 5.9 5.24 0 9.53 8.81 10.1 6.77 6.21 7.69 4.51 6.71 7.23 6.85 8.76 9.17 5.22 7.38 10.8 6.44 8.81 6.17 4.2 8.53 7.5 7 9.22 7.14 9.28 6.31 7.18 5.33 3.31 5.79 7.28 2.12 7.48 10.2 9.3 1.69 8.32 9.65 5.24 6.53 8.26 2.3 1.69 11.4 1.42 0.64 5.39 9.27 10.2 4.51 1.42 10.1 6.15 6.18 9.15 3.05 13.4 9.56 1.62 10.1 5.33 6.24 4.74 7.96 0 6.14 4.01 8.56 8.64 7.42 2.12 2.59 0 6.81 7 3.61 12.8 11.4 2.84 8.56 6.59 5.39 13.2 10.2 9.86 1.08 6.48 12.5 0 6.26 12.2 2.12 0 1.93 3.96 4.44 2.72 7.72 5.67 3.14 7.7 9.4 6.63 6.49 9.85 1.12 5.67 4.83 10.1 7.09 5.24 7.94 2.45 10.4 7.16 8.49 3.31 3.34 3.54 10.2 8.39 5.97 4.28 8.9 6.97 5.77 5.06 9.16 4.83 14.2 7.89 13.8 6.77 4.74 12.1 5.99 10.4 9.1 7.17 1.08 0.64 3.39 9.01 8.44 9.64 10.4 6.06 1.08 7.89 2.59 3.23 5.11 11.5 4.01 6.9 5.94 6.35 11.5 3.05 6.93 2.72 6.09 4.65 5.65 6.7 1.08 7.37 7.46 9.98 10.8 6.62 0 4.4 0 6.31 1.92 15.1 3.23 9.54 9.54 7.62 8.62 5.9 8.86 9.04 10 10.6 0 4.15 4.74 7.43 2.3 11.3 8.75 6.33 6.32 13.4 4.24 8.16 9.8 11.6 6.82 5.37 7.55 3.39 6.32 8.05 10.1 7.58 1.69 7.94 4.58 8.14 3.67 6.55 4.96 3.54 8.77 7.42 1.42 5.73 6.55 7.41 1.42 5.44 10.5 7.72 7.51 8.51 11.8 7.84 7.98 11.1 7.32 7.75 11.2 10.8 5.57 8.02 9.46 7.51 0 1.69 4.65 10.6 7.66 5.24 6.13 9.48 2.45 11.4 4.55 9.48 8.49 8.24 4.86 5.7 7.7 0 6.98 1.42 4.06 8.38 11.9 5.44 3.14 8.04 4.76 1.92 7.5 7.99 0.64 10.5 11.1 4.47 3.96 8.86 0 9.73 6.13 9 9.21 7.89 2.59 3.54 4.36 8.88 5.82 7.5 10.4 3.54 2.95 10.7 3.61 4.58 7.7 5.73 0.64 9.39 4.15 7.68 8.85 10 7.84 7.04 5.01 1.08 11.1 5.09 9.31 9.32 8.7 3.31 3.14 10 5.44 4.24 0 9.83 9.98 2.3 9.71 2.12 1.42 4.28 7.8 4.55 5.53 3.54 5.6 4.65 5.13 1.08 7.05 2.3 9.88 2.12 8.69 5.09 5.04 4.01 1.08 3.39 8.85 6.28 8.1 3.54 4.06 7.88 0.64 7.66 3.39 3.14 0 4.28 1.42 5.58 3.79 8.09 5.55 10.2 7.14 9.6 4.8 7.98 5.27 0 9.16 6.16 5.63 9.72 4.28 2.59 10.9 11.4 0.64 11.6 2.72 5.67 1.08 1.92 11.6 10.2 4.65 3.67 11.1 9.29 0.64 8.78 12.6 6.86 8.93 8.81 8.28 3.39 4.8 6.67 9.48 8.49 11.2 12.4 3.85 6.55 4.4 10.3 10.8 3.05 2.59 6.5 11.2 3.67 7.17 4.68 2.84 10.5 2.12 5.95 10.4 1.08 3.14 10.3 2.95 4.06 6.15 3.91 6.43 10.8 11.9 2.45 10.9 7.58 1.69 8.79 5.06 11 5.57 3.96 4.44 1.08 3.79 2.45 6.68 6.1 7.38 12.5 6.51 8.28 6.77 6.02 7.5 8.9 5.87 7.63 4.86 8.99 6.2 0.64 12.4 8.61 7.52 8.01 6.15 5.71 2.72 7.19 5.99 5.85 8.32 8.41 5.58 7.23 1.92 9.41 3.67 8.05 5.18 4.32 8.24 1.42 14.2 4.58 10.9 8.73 8.87 1.69 3.05 6.34 0 5.65 6.54 8.88 9.11 11.9 10.5 1.92 9.97 0.64 12.3 8.23 9.74 9.51 3.79 0 5.74 2.45 5.04 3.07 2.95 3.54 2.59 9.77 10.1 8.6 15.1 12.6 6.99 3.14 5.16 6.81 9.1 8.31 11.4 8.44 12.8 13.7 3.05 0.64 11.6 3.79 1.08 9.33 3.31 9.97 3.31 6.83 12.7 11.9 3.79 9.35 8.93 9.68 0.64 6.62 6.39 10.9 9.25 7.79 9.68 7.47 6.56 6.57 2.12 9.52 8.83 2.3 9.64 0 10.3 2.59 8.99 1.42 5.44 7.21 4.94 8.37 7.21 7.02 7.85 7.31 4.01 8.26 0.64 9.06 8.49 3.31 4.77 9.19 8.53 1.69 5.87 8.22 8.38 3.54 9.73 6.43 2.95 6.59 10.8 10 8.93 6.04 6.26 8.06 4.65 3.54 0 4.71 8.24 5.33 0 8.42 10.3 5.98 9.7 8.34 2.45 11.2 5.57 8.21 9.05 6.47 3.05 11.2 7.35 7.38 8.38 4.06 10.1 0 11.2 10.1 0 4.32 0.64 7.18 11.2 5.29 10 2.3 10.2 8.2 10.1 10.4 11.6 9.12 7.84 6.86 9.42 12.3 9.56 11.5 7.49 7.09 1.08 4.48 10.8 9.34 10.3 10.7 4.58 9.32 8.81 10.6 3.05 2.72 4.74 6.1 7.64 8.66 6.52 10.5 8.99 10.7 9.78 7.01 3.54 0.64 7.09 3.31 5.18 9.57 3.61 4.77 10 12.8 7.91 6.46 10.5 11.4 11.4 10.7 6.23 9.63 6.34 10.6 8.11 3.79 8.84 8.76 9.92 6.41 2.45 8.81 9.49 7.04 8.49 12.1 13.6 1.42 9.85 3.39 0.64 9.37 10.6 6.05 5.97 12 7.34 10.7 11.2 5.31 11.2 11.6 9.88 6.26 7.69 9.41 7.57 9.61 9.97 13.4 7.91 11.1 5.7 9.21 10.9 10.3 4.96 8.35 6.07 10.8 11 9.15 11.4 10.5 10.4 8.81 12.7 7.04 9.68 10.2 6.99 8.39 9.17 8.47 6.77 11.8 1.08 10.9 10.8 11.2 11.2 9.46 6.83 9.65 9.7 8.67 8.96 6.75 9.71 11.7 7.58 9.11 11.9 16.7 2.59 7.54 8.93 9.97 6.77 7.54 9.02 12.7 13.5 14.7 16 9.85 10.8 5.52 8.45 11.3 10.8 10.3 8.04 3.73 10.3 9.46 13 10.7 8.6 10.1 13.3 7.68 8.17 9.01 10 7.96 5.44 7.95 8.04 0.64 6.51 3.39 6.13 8.72 4.94 7.05 11 9.83 5.16 10.2 9.56 8.21 10.3 3.47 8.31 11.9 9.2 2.32 9.95 9.69 5.71 4.8 12.3 4.11 9.62 12 3.55 2.59 3.79 3.92 8.74 2.72 5.85 4.28 7.62 8.68 13.2 6.16 8.38 9.29 4.44 7.21 10.2 13.1 7.34 13.1 8.58 10.8 11.9 13.1 14.6 11.6 12.7 0 9.49 1.42 10 8.29 6.33 11.1 0 1.08 3.67 8.5 1.92 9.98 6.71 2.84 4.2 9.05 7.18 7.14 7.77 1.69 9.2 6.23 7.33 7.3 8.07 9.3 1.08 9.61 14.5 10.1 9.93 2.72 3.91 9.73 9.01 5.09 9.04 11.6 0.64 6.14 6.04 4.28 10.8 9.76 5.43 10.1 7.8 2.41 8.59 2.29 6.63 2.59 9.71 1.69 1.08 0 9.01 6.57 5.6 5.42 9.33 10.7 3.54 6.25 9.43 6.6 1.44 5.09 7.39 0.64 8.31 7.76 8.64 10.4 4.4 9.01 9.06 5.29 10.6 10.2 8.62 8.05 7.66 9.28 7.02 9.1 6.07 11.5 7.51 5.63 9.32 8.99 9.1 7.42 10.1 7.59 3.39 10.1 3.05 10.3 1.92 9.76 3.54 8.11 8.39 7.85 10.8 6.9 1.92 8.72 9.37 4.01 1.08 12.8 7.96 1.08 1.08 5.77 4.86 7.97 8.15 8.79 7.32 8.59 8.5 5.89 4.24 7.85 7.57 5.73 13.1 7.52 1.42 15.3 5.06 5.35 2.3 0.64 1.42 9.64 5.2 6.7 9.52 11.4 6.64 10.2 10.6 7.75 7.38 14.7 9.84 5.33 2.45 3.79 8.16 7.21 3.47 8.14 9.61 9.14 10 10.1 6.08 12.4 9.25 10.1 8.77 7.79 10.6 10.1 11 4.99 9.67 11.3 11.9 4.48 6.77 2.45 8.6 6.34 11.9 1.08 9.7 10.2 3.54 7.87 11.7 9.08 11 8.52 8.43 8.62 9.96 9.72 9.23 9.85 1.08 7.63 8.56 11.6 11.1 10.7 10.3 3.23 8.69 10.8 3.54 1.08 1.92 10 9.23 0 11.7 2.45 8.93 10 8.13 10.2 7.44 10.6 9.98 10.7 11.3 7.37 11.7 10.7 4.55 9.48 9.94 1.69 9.5 0.64 11.6 10.3 10.7 9.49 7.51 11.9 11.3 8.1 4.15 6.41 7.88 9.31 4.36 10.3 9.77 8.31 7.86 7.3 8.13 2.3 12.2 10.9 11.2 5.91 9.42 10.5 2.45 5.65 11.9 6.68 9.14 8.79 0.64 12.4 8.64 9.65 8.55 8.21 5.33 2.3 7.5 4.11 6.53 5.79 10.6 6.76 9.73 0 10.9 6.81 8.14 8.03 8.21 8.64 6.4 2.72 9.75 11 10.8 9.02 10.6 10.5 4.8 8.83 8.64 11.5 13.1 9.49 6.79 10.4 7.83 5.42 8.39 11.8 9.56 12 2.59 4.71 8.43 4.58 6.31 11.2 4.94 11.8 12.8 5.71 6.95 8.72 8.56 11.5 5.24 5.5 7.59 8.29 6.61 8.35 10.3 8.52 8.98 8.9 2.59 8.26 9.93 8.42 11.6 13.5 5.35 10.7 5.24 7.33 8.5 7.51 9.02 1.08 5.82 7.59 3.54 6.83 14.8 1.08 8.59 6 10.7 2.45 4.91 0 1.08 6.11 4.91 7.39 0.64 8.54 7.17 1.08 1.08 7.59 7.41 6.48 7.36 8.18 6.65 6.14 12.6 5.57 10.3 7.65 4.83 8.87 10.3 2.45 9.96 7.65 7.3 6.97 11.7 8.97 7.78 7.91 9.99 6.04 10.1 4.2 10.2 5.91 8.73 7.07 7.23 6.48 7.51 11.1 10.9 3.85 0.64 4.28 6.13 4.28 7.94 2.84 5.59 7.47 1.69 11.5 3.91 9.02 10.5 1.42 8.25 7.45 7.6 3.38 8.88 5.01 5.53 11.6 8.95 4.44 10.1 8.62 7.56 8.87 1.42 8.71 1.69 8.96 2.95 8.32 5.35 10.1 6.25 11.1 9.26 7.9 6.11 1.69 9.93 7.58 9.02 5.73 7.12 7.55 10.3 8.26 8.46 6.38 4.32 8.51 6.54 3.6 6.65 10.8 8.69 8.48 2.12 3.85 0 0 3.81 10.9 0 4.24 5.16 2.45 3.67 6.34 6.75 5.27 7.09 10.2 8.09 8.87 6.46 9.08 8.87 9.97 9.28 9.26 4.99 9.35 9.92 7.53 1.92 3.61 7.84 10.1 4.15 7.32 5.42 9.87 14.1 12.6 6.7 1.69 9.01 3.96 7.06 10.2 3.96 10.3 12 10.8 10.9 10.6 8.85 6.5 13 9.58 11.4 0 11.1 1.69 5.73 9.74 10 6.57 12 4.68 12.5 10.5 10.7 8.82 5.53 11.1 11.1 10.1 3.23 7.9 9.95 7.5 9.9 12 10.3 11.4 8.61 5.18 1.69 8.96 11 9.06 9.92 6.61 8.95 8.32 7.54 2.95 11 8.51 10.1 10.2 9.5 11 8.7 10.4 5.57 9.59 7.99 10 11 3.47 12.4 9.68 8.45 7.17 8.85 10.7 9.55 8.78 11.6 9.71 7.84 8.88 12.8 8.76 8.76 10.5 8.08 10.1 10.2 9.83 4.61 9.08 10.1 0 9.74 9.19 10.1 2.45 9.99 4.8 9.45 9.76 11.4 9.25 10.1 11 10.1 8.53 8.17 11.7 5.9 8.25 11.2 2.72 12.4 11.5 9.73 9.42 8.47 9.34 10.1 8.97 10.2 9.52 10.3 10.8 7.63 10.1 9.28 9.76 11.2 9.97 6.11 7.64 12.2 8.57 8.82 0 8.89 10.2 9.99 6.14 4.06 10.5 8.35 4.24 10.1 6.64 3.23 11.1 9.38 9.61 2.3 9.95 11.7 0 1.69 0 10 11.5 10.7 8.75 6.86 4.15 5.09 11 10.8 7.18 9.57 7.58 9.05 2.84 9.11 2.12 9.78 10.5 10.8 10.1 11 9.48 11.1 0.64 12.2 12.2 9.54 8.22 8.31 2.59 11.2 9.61 9.68 8.45 10.1 9.02 9.11 7.72 9.86 9.97 10.1 10.8 10.5 11.8 7.16 7.9 9.79 10.9 11.3 10.3 9.72 9.86 10.6 10.2 7.32 8.7 6.62 10.4 11.7 10.9 10.4 11.1 10.5 7.68 9.78 9.96 10.7 5.13 8.6 10.2 10.3 10.1 7.94 9.54 7.13 8.71 10.1 10.7 4.61 9.32 12.4 9.88 8.31 10.4 8.42 8.94 9.78 10.7 8.86 9.08 10.4 8.5 9.71 8.74 2.72 11.5 2.72 10.4 8.16 2.84 10.8 9.28 9.39 7.23 8.41 9.51 10.8 7.55 5 3.14 9.48 9.84 10.9 4.11 12.7 9.23 9.15 10.1 6.42 9.42 9.07 7.55 9.97 7.65 10.9 11.2 9.87 11.5 9.63 9.25 8.87 5.63 7.36 7.55 0.64 9.15 9.41 11.1 9.91 9.69 9.47 9.66 15.2 10.2 9.4 10.7 9.8 11.6 10.1 12.6 10.4 9.96 9.71 13.2 10.1 8.32 8.41 9.49 9.62 9.49 10.8 9.31 7.91 9.7 12.2 11 9.68 10.8 9.99 9.12 12.8 9.26 10.9 11.7 11.2 10.2 13.6 10.3 9.65 12.2 10.8 10.7 10 10.1 7.42 10.3 11.8 3.79 11.2 8.98 1.69 10.9 9.28 9.86 9.25 13.6 11.1 11.7 10.7 1.08 10.1 9.69 3.85 10.2 9.41 9.88 9.9 11.3 7.4 8.68 7.02 9.54 9.34 8.07 6.13 10.1 9.74 8.57 4.48 9.01 11.3 8.99 10.3 8.93 10.1 10.7 6.05 8.07 9.32 10.1 10.4 6.66 8.48 9.2 9.4 7.97 9.59 11.1 10.1 6.88 8.97 10 9.45 10.9 11.6 10.9 9.08 8.76 7.41 9.97 10.6 11 9.36 11 9.07 10.4 10.3 5.39 5.01 9.98 4.91 5.33 11.7 8.77 9.9 6.15 10.4 10.3 9.53 10.9 10.6 4.74 10 9.58 6.61 8.84 8.96 1.92 9.31 10.3 7.8 10.7 11.6 9.46 9.3 11.1 7.04 8.63 1.42 10.6 9.15 10.3 7.97 8.8 10.2 9.83 12.8 8.77 9.54 9.68 10.2 10.8 9.84 8.17 8.3 9.6 10.8 3.05 9.49 11.6 10.9 10.4 10.4 4.68 17.6 11.1 10.1 12 11.3 8.48 8.99 8.79 10.1 5.22 10.7 9.99 9.61 11.2 11.7 6.81 12.4 9.07 11.3 10.1 11.8 9.25 9.83 7.65 10.1 10.7 11.2 8.07 10.7 10.2 11.1 11.1 10.2 11.6 10.7 9.69 11.6 11.2 8.48 10.9 7.99 9.22 11.1 11 7.56 8.86 8.85 9.9 12.4 8.57 4.15 9.21 8.68 9.26 11.1 10.2 2.3 7.94 7.58 2.95 8.97 11.6 7.54 12 8.5 6.75 8.97 9.94 0 8.68 8.18 11.1 11.9 9.86 6.89 11 11.2 12.8 11.3 8.71 7.12 7.13 6.52 7.82 7.16 12 7.78 8.27 7.19 11.9 10.4 13.2 9.65 8.69 8.2 10.9 11.7 10.7 1.42 11.3 10.7 8.28 9.94 1.42 8.31 5.97 0.64 6.68 12.8 8.64 9.66 8.94 7.59 10.4 8.83 7.23 6.91 11.2 10.2 10.2 9.82 10.7 9.89 9.22 11.9 10.4 9.65 0 0.64 14.3 9.07 10.4 13.4 9.16 10.1 8.11 7.08 14.3 10.5 9.17 1.08 7.16 9.81 6.94 3.67 12.4 7.89 8.01 11.7 0.64 9.28 0.64 0.64 8.39 9.99 11.5 8.47 7.48 7.65 8.21 9.79 9.06 9.16 10.3 10 10.5 9.82 2.72 3.48 10.8 0 8.24 11.2 1.42 7.48 9.23 2.3 10.2 9.07 8.8 4.28 11.8 8.98 9.09 9.15 11 7.65 7.29 9.26 9.55 6.99 9.19 8.31 9.84 9.47 8.64 5.99 11.8 6.31 10.1 10.8 9.6 10.9 9.92 2.3 7.72 10.9 9.61 11 7.08 1.92 3.14 2.3 11.1 8.47 10.9 10.3 6.26 9.54 9.46 10 7.82 10.1 11.1 11.7 10.3 9.56 8.59 9.59 12.8 6.71 9.6 9.23 8.52 11.5 10.2 10.6 7.59 5.18 10.1 9.58 8.82 8.32 10.2 8.34 10.9 12.1 4.58 8.64 9.78 10.4 9.42 6.05 8.41 8.28 0.64 8.36 10.9 2.72 12.2 9.38 3.5 10.8 9.61 12.1 10.5 3.67 2.45 8 8.82 8.45 8.77 8.59 8.35 9.96 6.64 7.42 9.32 9.63 10.1 8.89 11.3 9.48 0.63 5.42 6.91 4.55 9.16 0.64 6.39 2.12 9.34 3.47 4.36 2.72 7.48 8.26 5.58 6.44 7.12 9.12 2.72 0.64 3.61 10.6 9.03 6.9 7.72 5.67 8.04 15 8.89 11.7 1.42 15.5 9.26 10.8 12.8 6.71 2.59 2.12 8.13 1.92 0.64 11.2 4.32 3.67 9.3 6.8 6.53 8.82 0 2.72 9.09 10.6 9.36 4.44 4.31 8.87 9.2 7.97 10.6 3.96 10.2 9.72 8.1 9.4 5.71 4.2 10.6 7.95 3.54 9.95 7.01 8 9.68 11.2 7.44 2.84 9.48 10.7 7.84 8.34 8.65 5.6 5.98 9.39 3.23 7.03 11.2 3.61 0 7.76 1.42 0.64 8.72 9.17 7.72 5.63 7.35 1.08 7.94 8.35 6.39 8.26 9.49 8.89 5.89 2.59 12 0.64 2.72 11.5 5.48 8.38 7.02 8.81 9.96 3.05 5.01 7.23 4.06 0 3.96 9.72 8.46 7.83 4.28 2.59 7.6 1.08 8.85 5.39 5.89 5.04 0.64 7.04 3.39 7.39 5.94 5.77 14.1 7.8 8.68 4.15 7.84 10.4 8.33 10.1 6.34 5.18 2.12 4.01 7.25 8.25 8.18 8.67 5.39 5.9 3.73 9.28 10.6 4.11 8.55 6.82 7.57 8.26 7.87 7.62 0.64 8.78 2.12 2.72 1.69 2.59 8.94 0 6.58 4.68 1.08 5.18 3.23 4.91 4.4 1.92 5.22 8.45 4.48 8.49 2.59 3.96 3.96 1.08 7.31 5.18 1.42 1.92 1.08 10.1 9.05 1.92 6.6 7.23 9.48 9.63 7.74 8.79 1.08 9.4 11.2 9.32 9.59 9.86 4.28 5.37 6.44 4.51 8.22 11 10.7 3.79 10.5 6.38 10.8 7.49 10.2 10.8 8.79 8.07 9.64 1.42 11 8 8.8 7.17 8.97 2.84 9.77 10.7 10.7 8.53 6.94 9.62 10.7 8.22 8.89 2.12 12.3 11.3 8.13 10.1 11.1 5.99 3.54 10.8 8.35 0.64 10.5 3.39 10.2 8.91 9.05 8 8.76 10 11.7 8.05 10.1 8.5 8.22 6.26 8.63 9.23 10.2 5.79 10.3 1.08 7.64 3.61 8.15 10.3 11.7 9.88 13.9 9.36 9.73 1.69 14.4 10 9.46 7.9 9.29 7.67 8.41 12 9 7.58 7.27 8.22 8.7 10.1 8.37 0 12.9 9.35 8.28 10.2 11.6 9.28 9.22 7.57 10.1 4.58 8.21 11.9 8.73 8.65 9.75 9.5 7.76 2.12 7.4 10.8 11.3 0 9.35 8.53 8.84 2.12 3.54 8.53 10.1 9.44 8.94 0 9.48 0.64 9.52 2.12 1.42 5.5 8.05 10.6 6.48 13.5 9.06 8.86 9.31 9.2 8.63 10.9 10.1 10.5 9.14 6.66 9.28 10.6 10.2 7.62 8.07 10.7 8.52 11 11.3 11.8 4.78 10.4 10.4 10.1 15.9 10.4 9.5 6.68 5.82 8.17 9.12 9.73 8.8 10.1 8.09 8.3 0 10.8 8.59 9.87 9.48 10.5 10.7 10.6 9.65 5.18 10.7 10.1 10.6 11.5 9.29 9.01 9.75 11.6 9.13 10.9 6.63 8.71 10.8 9.66 9.19 11.8 11.5 8.5 6.92 5.63 5.33 9.16 10.3 10 5.39 2.95 5.48 9.29 9.43 10 6.11 8.92 7.74 7.38 7.8 3.23 9.34 2.84 8.03 5.22 5.48 8.88 7.93 9.18 10.9 10.6 10.5 10.6 10.2 8.19 8.96 11.4 11.7 9.79 11.1 0 6.69 9.82 9.7 10.4 9.98 10.2 9.4 8.35 2.72 10.9 8.26 12.4 10.8 4.77 7.99 9.26 12 9.69 10.5 9.03 9.77 9.31 9.31 10.1 11.4 12.8 10 1.69 10.5 8.96 9.37 9.09 5.79 11.2 2.72 9.67 9.43 8.53 4.28 11.3 11.9 7.59 9.2 8.84 4.88 9.57 12.1 10.1 8.31 11.2 9.11 7.4 10.6 9.94 10.8 6.24 10.3 3.14 8.86 3.31 8.05 14.1 0.64 8.03 6.43 10.2 10 13 1.08 10.5 0 6 5.41 8.96 8.66 11.1 8.16 8.35 7.19 8.86 6.3 3.79 3.14 1.08 5.95 10.7 9.19 8.81 3.72 10.7 9.05 3.47 8.45 9.85 8.1 9.96 8.43 8.58 7.89 9.04 8.48 8.28 9.77 10.2 3.05 6.03 9.88 10.1 4.11 9.32 0 9.23 7.91 8.68 8.42 9.87 9.45 10.4 1.71 9.98 8.82 11.3 9.65 8.04 0.64 7.35 5.62 7.93 10.2 9.79 9.94 11.4 11.4 10.8 1.42 6.89 7.89 10.2 9.44 8.33 9.37 5.31 9.92 12.1 7.51 7.68 9.53 9.5 10.3 9.23 8.7 9.29 9.91 10.3 11.5 3.91 5.01 1.22 10.6 3.67 3.16 4.86 9.43 2.12 10.5 7.28 9.49 8.29 2.72 10.4 2.95 7.74 1.92 11.8 12.5 10 3.23 9.1 3.87 7.3 9.49 7.21 10.6 2.3 7.22 6.64 1.08 8.8 4.94 11.6 5.58 7.63 3.85 9.01 8.86 3.91 0 9.58 5.16 2.84 3.14 8.16 1.69 12.5 6.92 11.2 7.7 7.28 2.95 8.32 8.95 8 10.3 2.3 6.11 12.1 9.73 5.53 8.99 10.4 14.5 9.86 11.3 8.95 6.03 8.53 10.7 0 2.72 9.82 0.64 8.44 9.37 6.23 10.1 11.5 9.71 11.2 8.44 9.2 11.3 2.45 8.82 2.12 5.06 9.15 7.08 8.88 10 12.6 11.3 4.15 7.5 9.14 8.97 11.5 2.3 5.01 9.84 5.57 9.7 5.31 7.29 7.38 7.03 10.9 6.15 11.1 4.32 8.79 9.94 5.62 10.4 9.24 2.3 1.08 10.6 5.91 10.3 12 9.08 9.24 5.65 6.62 2.3 8.53 10.3 11.4 6.64 4.83 11.2 1.42 8.88 7.22 2.72 8.16 10.6 6.28 4.44 7.72 10.1 7.39 0.71 9.32 9.51 6.35 7.19 8.66 9.97 1.42 9.3 0.64 6.85 8.33 3.14 11.2 8.69 12 8.36 5.91 1.92 10.5 7.8 0 8.77 2.72 2.3 3.4 7.23 10.3 3.91 7.65 12.4 3.67 5.44 7.55 9.13 6.66 8.76 7.12 4.55 7.85 9.73 11.1 9.12 10.7 8.21 9.1 10.9 10.8 10.5 8.66 9.52 8.03 9.69 10 2.84 1.08 10.3 5.99 5.33 7.89 8.02 9.24 6.75 0 9.41 2.12 5.76 7.62 7.77 9.05 5.76 7.53 5.95 8.73 2.72 5.95 8.2 12 5.39 10.6 9.55 11.2 11 2.12 11.8 10.9 9.05 11.7 12.4 9.46 8.92 9.91 8.61 7.64 6.53 9.25 9.15 9.42 7.89 8.54 7.28 7.36 10.1 10.5 9.23 7.01 11.2 10 9.66 5.9 10.3 8.23 8.75 10.5 5.16 12.7 9.01 1.42 6.18 8.41 11.2 7.7 7.13 12.4 1.42 10.2 8.44 10 6.73 9.02 11.7 7 9.6 13.4 10.8 3.14 5.01 10.4 14.5 0.64 7.92 13.3 12.4 7.32 2.84 7.11 10.4 7.06 1.08 9.68 11.3 5.37 10.8 5.79 0.64 11.8 4.48 7.11 9.28 11.5 11.8 11.3 12.1 8.81 10.3 10.3 1.08 6.9 2.67 2.3 12.5 3.54 9.5 12.6 2.84 8.03 2.72 6.44 10.5 6.3 7.05 0 4.83 4.48 5.04 9.08 5.16 8.14 5.37 1.69 6.73 5.18 8.18 9.29 5.58 6.54 6 3.05 4.01 3.67 2.3 8.59 15.8 6.58 13.8 11.5 4.36 8.06 9.46 8.53 6.41 8.48 6.45 7.53 8.12 8.58 6.87 6.36 8.74 1.09 10.7 5.58 6.79 6 9.78 3.47 8.51 7.04 11.1 1.69 7.21 9.87 3.39 4.06 7.41 2.72 5.44 2.3 9.91 1.08 7.58 5.27 9.41 6.83 9.17 4.6 1.08 2.43 2.59 8.33 1.92 5.06 0 7.84 1.08 6.55 0.64 3.05 9.75 10 7.47 5.99 0.9 6.94 5.77 6.09 4.28 7.89 0 0 7.48 11.3 6 8.63 1.92 5.56 8.6 5.33 9.66 5.04 4.74 5.89 2.95 4.91 7.92 8.13 3.05 3.91 8.35 8.74 9.61 7.51 4.01 8.99 7.9 0 4.71 7.41 5.46 6.29 5.06 7.84 4.22 9.93 6.86 4.55 0 2.72 6.35 8.06 0 3.05 2.12 9.75 0.64 0 6.64 14.4 8.44 8.08 3.85 8.92 3.79 1.92 0 3.05 10.2 1.69 1.92 7.86 1.08 9.06 0.64 11.6 3.05 6.23 5.2 8.05 8.15 8.16 4.24 0 5.52 6.44 6.38 2.59 6.66 11.9 1.69 6.63 8.6 5.06 6.6 3.23 6.94 5.93 1.42 3.39 1.92 2.59 0.64 7.39 6.48 5.68 7.62 9.13 3.31 0.64 0.64 8.86 0 3.73 3.91 8.66 5.35 8.07 5.52 6.29 8.81 7.21 5.19 8.61 1.08 4.1 4.01 4.83 0 4.77 1.42 2.84 5.99 0 6.65 3.05 5.31 5.2 7.33 2.45 7.26 5.29 10.3 8.4 1.08 3.91 2.45 5.54 1.42 8.2 10.2 7.2 8.54 9.51 3.73 8.59 1.08 2.45 7.24 6.33 7.87 7.3 9.8 8.72 0 5.62 9.71 8.92 3.67 5.67 8.06 1.08 9.09 4.83 5.01 9.54 8.68 6.23 9.42 7.28 3.73 1.42 2.72 8.81 0 7.67 3.39 3.14 5.28 6 8.21 9.46 3.54 9.24 1.08 11.2 1.92 0.64 5.53 6.14 7.19 6.66 9.38 2.95 6.2 9.26 3.85 7.29 9.34 7.72 6.71 11.6 1.08 5.6 3.31 9.74 5.34 4.28 7.16 3.14 3.67 8.92 1.08 3.05 7.52 7.41 4.74 7.1 3.96 3.54 4.55 2.84 3.73 4.24 7.72 8.02 2.84 10.8 6.54 8.26 4.94 2.3 3.85 8.2 3.23 7.46 9.16 9.73 3.54 10.9 8.27 2.59 3.32 3.14 8.84 8.83 8.68 4.71 7.83 7.39 10.2 7.78 2.59 4.55 6.59 7.46 1.42 3.67 6.04 7.09 8.13 9.63 2.59 7.13 9.16 10.8 10.9 9.47 3.61 12.3 1.42 9.97 11.6 4.88 10.5 11.5 10.8 10.9 3.05 6.95 10.8 8.28 9.73 10 7.97 9.67 11.9 12.8 8.16 10.3 11.5 0.64 8.61 4.4 10.4 3.39 8.3 8.58 11.2 9.83 10.8 9.91 9.27 8.77 8.52 6.68 9.26 10.2 9.95 9.85 11.5 9.57 4.44 7.31 9.11 6.09 9.74 9.29 3.23 10.7 9.28 4.24 4.06 11 2.3 9.53 5.6 10.2 4.32 10.7 11.3 7.54 8.56 6.46 10 9.86 11.8 6.07 8.84 10.8 10 8.24 10.1 10.1 8.8 8.85 9.61 7.38 11.1 10.5 9.01 9.62 7.71 10.9 8.84 5.67 7.42 8.49 8.47 9.03 9.94 8.57 9.47 8.11 9.92 11.3 10.2 8.01 8.09 9.13 1.69 9.02 9.22 9.96 2.95 9.4 10.3 8.92 9.6 3.47 4.74 9.28 2.45 11.1 3.67 4.51 9.76 8.75 1.69 3.96 6.05 11.9 7.73 4.06 13.3 0.64 10.6 13.9 10.4 10.2 13.4 11.4 9.58 10 8.87 0.64 7.99 7.98 8.11 4.15 13 8.16 8.2 7.89 10.4 6.16 10.1 8.44 8.47 9.9 11.2 9.35 9.89 7.46 7.45 8.94 10.2 12.2 11.6 9.4 0.64 11.5 10.2 5.57 9.79 8.26 1.69 11.4 8.67 7.97 9.23 9.33 4.24 9.5 9.27 7.1 11.1 3.23 10 3.05 5.93 7.22 8.13 10.2 0.64 10.7 9.6 9.1 1.92 3.85 3.61 8.89 8.81 0 3.79 10.5 12.3 9.51 2.3 9.62 10.8 8.54 7.41 10.8 10.8 11.2 7.9 10.8 1.42 10.8 7.98 10.4 8.25 7.4 8.43 10.2 1.42 8.15 3.54 8.7 9.07 8.62 9.12 8.06 9.83 10.5 8.36 8.47 11.8 9.16 10.7 14 8.78 8.54 5.77 5.53 7.52 1.69 10.4 11.7 8.44 2.72 3.61 8.68 9.42 6.08 10.5 9.3 2.12 11.1 9.12 11.6 9.33 2.59 11.7 3.14 9.56 7.24 9.62 8.99 8.87 9.9 12.3 9.94 9.98 10.4 11.5 8.88 9.22 10 9.14 1.08 8.03 4.83 10.1 5.46 3.39 9.3 9.99 12.5 8.47 1.45 9.98 3.05 11.1 8.86 12.7 4.55 6.38 10.8 3.31 5.89 4.88 10.5 7.9 9.28 0 0 0.64 12.3 2.95 1.1 10.4 11.5 7.2 15.2 12 13.4 10.2 9.06 7.67 11.8 11 9.11 2.12 10.5 8.97 6.44 6.95 9.62 13.5 11.6 11.8 1.08 2.12 0.64 3.91 8.59 3.23 11 8.34 9.79 10.5 10.3 10.7 11.4 1.42 12.8 14.5 12.6 6.45 8.15 11.3 11.1 14.6 6.47 13.1 2.3 8.01 5.7 10.8 7.41 7.53 4.28 5.46 9.6 4.01 9.36 8.72 6.42 9.62 5.79 3.85 10.5 9.52 12.6 9.05 9.77 12.1 8.03 12.3 9.74 11.7 9.86 10.4 12.1 8.97 10.9 9.3 11.3 8.48 11 10.8 7.25 8.31 14.3 14.2 13.9 9.81 9.36 12.3 8.09 4.94 11.3 11.3 3.05 9.58 5.62 9.01 4.83 12.5 11.5 8.4 6.96 5.74 3.67 12.7 10.1 6.13 11.2 3.38 4.4 4.11 7.15 9.25 9.35 9.18 12.6 10.8 9.97 12.1 13 9.52 9.72 9.84 8.84 6.9 8.34 10 10.3 10.7 9.27 0.64 9.16 7.57 7.92 8.83 4.51 3.61 1.08 8.49 2.3 11 0 8.57 13.1 8.31 13.9 12.1 13 11.9 12.1 12.7 10.9 11.5 13.6 1.42 12.3 13.3 0 5.67 5.22 8.49 6.45 8.15 6.5 6.95 2.3 6.03 5.22 7.17 2.59 2.3 0 8.21 9.41 9.46 8.52 7.06 7.09 7.84 5.85 4.74 8.68 8.22 6.66 11.5 6.47 9.44 7.87 10.7 2.72 2.95 3.73 2.12 9.2 10.2 0 4.74 3.23 10.1 1.42 5.71 9.1 10.7 9.13 10.6 10.9 6.45 4.48 11.2 11.4 11.1 10.1 10.9 10.4 5.5 6.32 5.94 0.64 10.3 10.7 8.64 7.31 7.34 10.7 12.1 12.5 10.4 5.42 8.35 11 14.3 10.2 8.34 8.46 14.8 12.1 13.1 8.23 9.34 13.5 9 14.5 12.9 7.98 11.1 11.5 9.38 14.6 5.11 4.48 13.8 11.9 8.31 2.59 4.58 2.95 7.3 1.42 0.64 4.86 7.81 12.2 6.48 11.7 11.3 3.67 8.32 3.91 0.66 0 8.25 11.4 2.12 6.58 0 9.44 7.3 4.94 8.64 1.08 0.64 3.14 4.13 8.12 9.87 7.87 10.1 5.16 10.1 8.46 2.72 2.12 0 6.56 6.85 8.14 11 1.42 8.34 7.61 6.04 8.62 9.35 9.59 8.98 11.1 8.91 7.84 9.31 6.11 7.51 5.89 2.12 2.59 8.4 0.64 3.31 9.31 8 6.64 1.69 8.43 7.62 5.63 5.04 6.25 3.91 6.19 8.49 7.69 2.3 11.4 9.21 3.05 6.84 9.6 8.05 5.11 4.65 3.54 3.96 12.3 6.21 0.64 4.44 6.59 9.77 9.59 10.7 0 1.08 2.45 5.48 2.3 8.18 0 1.08 6.27 2.59 7.54 3.05 9.89 7.87 5.01 3.93 7.38 6.29 4.44 7.27 4.96 6.65 5.11 4.28 3.14 5.5 3.67 8.22 0.64 7.31 8.52 3.91 1.7 2.72 9.02 1.69 10.3 11 9.9 9.91 6.71 10 1.42 2.59 0 8.88 11.2 1.42 7.37 9.54 1.42 8.86 1.08 8.41 7.59 11.4 11.6 1.92 11.4 6.4 5.05 5.2 0.64 6.83 3.14 5.97 1.08 9.46 0.64 6.39 8.69 4.35 8.02 8.55 3.54 9.46 1.69 0.64 3.73 2.84 8.56 8.04 6.75 4.48 0 5.18 8.55 6.7 0.64 4.91 2.45 3.05 2.12 4.28 1.69 10.8 5.2 9.38 2.84 5.16 8.07 9.16 4.01 4.01 11.2 2.3 10.9 1.92 4.58 5.01 4.11 3.14 3.67 1.69 7.42 1.42 1.08 7.07 4.4 6.08 0 2.45 3.91 10.2 2.12 10.2 2.12 3.31 11.1 10.2 2.59 4.68 6.54 0 10.6 10.2 9.9 7.94 11.3 12.7 8.35 7.71 7.44 11.9 7.19 6.38 8.42 11.9 9.77 2.84 11.3 2.3 6.24 3.39 12.6 12.6 1.69 8.74 14.6 2.84 7.06 12.5 6.01 0 11.2 5.53 1.69 9.64 14.6 5.11 13 7 5.76 0 5.35 3.79 3.05 5.73 8.09 8.89 14.4 6.41 9.14 4.96 6.76 6.24 10.4 5.68 7.15 9.16 0.89 1.69 9.43 7.09 2.3 2.12 4.11 8.36 4.37 6.4 4.61 0 1.08 9.61 10.8 10.2 0 6.32 11.3 10.1 6.5 6.03 4.24 7.98 7.62 8.7 11 0 6.86 8.53 5.37 9.67 5.67 3.47 5.39 1.42 1.92 14.8 1.69 1.42 3.54 8.42 10.5 5.89 7.62 3.73 1.42 4.83 1.42 11.6 2.45 10.6 11.8 7.28 7.55 6.1 9.37 8.44 6.53 2.59 8.13 4.55 10.6 10.7 11.8 12.8 0 11.6 8.83 8.3 11.2 12 8.37 4.71 8.64 7.03 4.55 9.16 7.41 1.92 7.23 8.24 2.12 9.49 9.42 9.23 9.87 11.9 9.43 3.61 2.59 10.4 4.91 12.4 7.44 9.07 12.3 10.5 6.71 10.2 10.1 5.2 9.1 10.2 4.61 7.89 3.14 8.69 7.93 6.88 2.95 11.6 10.5 8.77 4.44 13.2 8.64 12.8 9.77 3.23 7.28 0.64 8.18 7.84 7.71 12.9 8.08 14.6 10.3 10.3 7.59 11.5 11.5 12.7 7.47 6.24 6.96 0.64 1.08 7.11 12.1 5.67 5.83 12 10.2 9.47 4.74 9.99 8.14 11.5 11.5 9.61 10.4 12 8.39 9.68 12.4 8.22 12.6 13.2 11.7 11.5 8.34 9.6 10.9 10.7 11.2 0 3.79 6.4 3.31 4.55 3.91 2.75 9.83 5.37 9.98 6.41 8.4 9.69 7 1.69 6.2 0 1.92 7.04 5.37 4.58 5.06 8.61 7.51 7.55 8.23 0.64 1.69 6.84 7.74 8.46 3.61 7 1.08 4.96 9.63 7.64 2.84 7.84 6.87 6.02 6.17 1.69 8.11 1.42 5.51 8.13 13.2 7.33 9.19 6.39 10.5 2.3 7.88 7.93 1.92 7.01 4.86 7.99 9.19 7.58 7.01 2.12 2.3 4.06 1.08 7.39 7.79 7.65 6.4 8.58 8.22 5.89 7.41 0 2.95 1.08 0 4.94 0.64 6.67 7.33 1.92 1.92 9.88 5.56 9.6 4.01 7.8 14 2.18 1.42 7.23 3.67 9.04 9.25 0 9.57 0.64 1.42 5.29 2.3 7.92 2.45 7.99 12.1 5.9 3.54 6.37 0 8.63 6.31 7.56 1.08 6.64 13.5 2.59 1.12 4.88 7.42 7.1 2.95 3.31 4.96 7.68 6.13 1.08 6.64 11.7 9.99 7.91 4.15 11.4 1.42 6.52 9.01 9.97 1.42 12.2 9.56 6.23 10.7 0 0 0.64 11.5 0 0 5.42 4.15 5.01 11.1 5.41 0.64 0 0 4.48 0 10.7 9.6 9.21 9.87 10.5 12.4 11.4 10.7 6.77 10.8 5.63 11.8 11.8 9.72 2.45 1.08 15.4 9.78 2.45 8.97 7.3 3.14 13.9 7.04 4.32 12.3 0.64 7.85 5.42 4.86 13.6 1.51 9.97 1.42 1.08 5.16 8.79 4.06 7.75 15.2 8.72 9.95 7.01 2.3 4.58 2.45 3.05 8.97 8.01 2.3 2.12 4.06 5.6 0 10.4 0.64 4.02 5.39 5.29 8.36 8.74 2.43 5.41 9.46 1.59 6.69 9.92 4.11 0.64 12.7 3.05 8.28 7.8 6.43 8.78 4.36 4.74 8.38 4.91 7.18 6.05 4.8 3.69 5.7 6.1 4.8 6.17 5.46 9.31 6.86 0.64 13.5 1.69 6.4 8.71 7.21 8.61 6.75 6.19 7.07 3.61 1.42 4.06 8.77 8.39 0 8.08 5.5 7.99 1.42 8.6 7.61 4.94 5.63 5.93 8.49 9.09 1.42 8.92 2.17 2.84 6.31 3.05 8.47 7.87 7.19 0.64 9.16 12.8 8 3.14 8.14 0.64 7.33 5.67 10.7 2.95 8.44 0 6.33 6.76 1.08 5.06 6.47 8.3 5.87 0.75 12.5 6.5 6.85 10.7 3.54 2.3 2.59 3.54 8.61 9.84 2.72 6.89 2.95 11 0 4.74 0.64 1.81 6.05 1.42 5.89 3.54 8.12 10.1 6.36 4.28 0 1.69 9.13 1.08 3.61 2.59 5.33 0.64 7.44 7.56 9.17 6.41 8.93 10.4 12.5 4.77 13.3 2.45 13.4 1.69 13.3 1.92 8.83 9.37 13.2 12.7 4.74 4.99 12.2 11.8 13.2 0 0 4.51 11.5 9.44 13.2 1.42 0.64 9.83 10 7.86 7.06 4.68 9.9 8.61 0 13.9 10.1 12.9 10.2 7.33 1.92 7.53 9.82 9.1 14.4 4.68 10.2 14 13.1 2.72 9.67 9.82 11.9 0 11.4 11.2 9.36 7.08 9.05 8.2 10.8 10.4 10.5 8.56 10.3 4.94 5.62 5.13 10.6 8.18 2.95 8.63 8.93 6.36 9.31 9.85 11.9 4.32 4.94 1.42 10.6 4.15 6.21 6.45 5.16 12.7 2.95 7.7 3.85 10.7 3.39 1.42 9.21 11.2 11.1 13.9 7.58 7.6 7.61 10.1 4.28 0 5.16 9.91 6.89 8.76 9.59 8.95 2.45 6.1 7.33 4.13 7.28 6.64 1.42 6.8 3.05 1.42 5.67 7.36 6.03 0 3.31 3.61 7.68 2.72 10 8.38 2.59 3.85 8.19 4.08 7.07 0 3.31 5.6 9.71 1.92 5.33 0 7.8 0 7.14 1.08 1.42 1.08 11.3 1.92 6.95 5.24 5.27 5.57 4.82 0 1.42 7.49 5.31 9.19 4.01 7.21 7.61 1.69 9.34 1.69 0 6.3 3.79 9.5 5.94 4.28 7.95 12.9 10.5 7.52 1.92 9.05 0 3.31 1.12 0.64 6.68 11.4 4.06 5.16 12.5 6.08 3.14 4.32 9.66 10.4 7.82 0 6.69 2.12 9.95 0.64 4.48 7.66 6.05 5.33 9.44 6.7 7.77 0.64 8.48 9.51 15 11.3 10.2 7.38 9.66 3.31 8.37 11.1 3.31 9.6 2.73 5.09 10.9 5.48 4.8 9.53 7.72 9.74 10.2 9.57 10.2 3.14 10.3 7.11 3.39 10.7 12.6 13.2 11.3 7.51 8.37 1.69 4.11 12 8.07 14.1 12.6 3.67 6.19 9.24 7.73 9.98 4.4 9.03 5.29 13.7 4.2 11.4 12.5 11.7 1.42 6.32 6.37 8.24 9.01 10.2 13.3 7.72 8.33 9.87 10.6 11.2 10.8 9.5 10.8 7.88 9.63 4.4 11.2 10.3 2.12 8.24 9.61 9.27 9.31 2.95 4.36 10.6 9.24 9.92 10.3 8.51 11.3 9.63 5.97 6.46 9.81 12.2 6.8 13.3 5.83 6.71 5.98 10.3 10 8.21 6.25 11 4.44 4.91 7.97 2.12 5.04 7.99 5.73 2.59 12.1 7.56 3.01 12.1 9.16 7.32 10.4 7.14 8.12 4.51 12.3 11 1.08 9.93 11.9 9.71 7.65 12.3 8.39 8.77 1.92 13 10.2 11.3 10.1 9.37 10.2 11.2 11.8 5.65 10.3 10 1.08 11.2 11.7 12.6 11.1 9.89 7.33 9.61 10.5 10.8 10.7 6.53 10.1 10.8 8.32 1.92 8.6 10.5 8.73 8.71 10.2 9.06 8.86 10.6 9.96 6.58 0 13.3 10.2 9.1 9.12 12.4 10.4 11.7 11.6 10 8.98 12.2 10.1 6.97 7.69 9.33 8.7 8.56 13.9 7.46 9.21 10.5 7.57 12.8 10.7 6.62 8.52 12.3 8.15 0.64 8.34 6.9 8.35 10.8 10.5 7.33 9.6 5.09 7.87 11.2 10.6 11 10.8 3.47 3.14 6.92 11.9 11.5 7.98 4.44 7.87 14.6 2.84 0.64 0.64 9.09 6.43 10.4 14.6 5.48 10 6.03 7.61 9.4 5.78 3.73 9.85 7.19 7.19 9.31 2.12 8.65 9.14 1.92 9.93 11.1 8.74 10.7 9.13 3.67 3.31 8.8 5.76 7.61 9.85 9.91 5.52 9.66 9 11.7 0.64 2.3 10.2 11.2 0 5.72 6.14 9.74 9.33 2.84 0 6.65 4.24 7.64 2.84 8.1 4.24 0.64 4.11 9.62 8.25 5.11 9.75 10 3.68 7.9 2.49 3.82 8.17 5.71 11 7.87 0 7.06 1.69 8.81 7.88 5.01 8.74 4.28 0 9.37 10.9 0 2.84 6.88 2.12 1.42 2.45 8.62 7.35 1.92 0.64 8.27 7.94 6.49 6 13 2.3 6.73 7.54 6.53 6.25 4.3 6.6 8.68 6.37 4.65 4.51 7.97 5.91 2.12 4.57 5.52 0 4.55 7.47 3.63 3.14 3.39 0 2.59 2.45 0.64 1.69 8.91 0.64 9.16 5.85 3.39 9.33 5.6 2.95 6.67 11.2 0 0 1.08 0.64 4.06 4.58 6.99 1.42 1.92 8.04 6.09 3.31 4.06 11.4 2.45 9.23 8.26 2.12 7.75 12 12.6 7.19 1.42 7.59 5.66 1.08 11.4 14.1 8.64 7.38 7.16 9.49 7.11 10.9 7.78 9.57 6.97 9.8 12.9 7.83 5.04 8.96 8.61 9.72 8.97 9.25 7.21 9.01 0 10.1 9.32 9.38 9.15 1.92 7.36 9.58 8.95 6.95 8.99 7.9 9.08 7.83 8.5 4.2 7.33 10.4 1.08 2.45 3.14 11.3 8.79 5.95 10.4 11.3 2.12 6.11 15.3 11.8 9.14 9.42 4.11 7.46 14.8 11.6 0 12 11.1 10.1 9.79 8.86 9.21 7.38 2.95 7.45 11.4 10.1 10.7 9.12 10.3 0.64 10.4 9.46 13.9 9.55 10.1 10.1 12.4 6.05 13.4 4.68 7.02 11.5 11.3 11.3 12.8 0.64 13.7 8.44 10.1 7.11 7.33 10.4 7.22 7.51 9.37 13.8 10.7 10.9 9.88 9.33 11.6 10 11.9 9.76 8.88 10 4.58 10.1 10.7 9.92 9.36 11 9.56 10.9 10.7 10.4 9.58 10.7 9.87 11 10.4 8.92 11.2 9.57 10.7 10.7 10.4 11.2 9.22 11.5 10.6 10.7 10.3 11.1 9.71 9.74 8.97 13.7 13.7 10.8 9.71 1.92 6.94 7.96 6.97 9.64 0 1.42 4.01 3.05 10.4 8.09 8.11 8.1 4.2 10.5 10.2 13 10.9 2.3 9.4 9.6 5.01 10.4 8.86 9.85 4.58 12.9 5.44 11.3 10.2 9.3 9.23 12.3 10.3 9.83 10.2 8.71 8.76 9.09 8.16 9.64 9.53 10.6 0 9.84 10.9 9.61 10 2.59 11 11.1 8.17 12.2 10.7 6.1 8.75 6.63 7.78 11.1 8.02 9.25 6.84 11.4 11.6 13.9 10.1 11.1 8.65 11.5 13.8 4.11 10.2 13 5.46 9.62 10.5 10.2 8.95 11.3 12.6 12.9 10.8 7.2 2.3 10.4 2.59 9.1 8.54 9.78 6.67 13.5 5.22 1.42 12.7 11 9.08 7.32 8.16 6.81 8.36 9.84 10.4 5.41 11.8 8.81 2.12 10.9 8.11 3.91 2.12 13.5 9.9 9.95 0 7.95 3.91 6.38 4.24 1.92 9.47 9.07 11 8.2 1.42 2.84 9.21 13.1 10.7 12.8 8.67 11 8.39 12.1 8.88 9.42 8.77 8.93 8.29 8.74 0 8.88 6.01 7.87 12.2 9.02 5.49 10.1 8.22 0 5.42 10.9 8.89 3.54 5.48 3.31 0.64 13.4 11.6 9.84 12.4 10.7 6.02 11.1 8.19 11.5 2.45 4.4 6.04 8.08 1.92 0 10.5 9.69 12.9 7.36 6.78 8.24 6.9 8.87 1.42 6.17 7.16 9 10.4 9.18 8.65 7.3 3.39 0 10.6 7.19 9.66 7.24 3.54 5.71 0 10.6 9.8 9.04 3.67 8.16 5.13 5.76 4.48 4.86 8.73 7.08 11.6 15 6.93 8.25 11.7 0.64 1.92 4.15 12.2 7.88 11.4 9.69 11.5 9.79 9.28 7.36 10.3 8.76 9.13 5.62 11.1 7.74 5.18 8.42 12.6 12.3 0 9.33 13.3 9.22 6.58 9.81 8.05 11.4 4.47 9.51 8.81 5.01 11.2 9.1 9.68 10.1 6.09 11.1 8.93 4.32 11.1 10.4 9.24 0 8.26 1.92 6.66 11.2 10.7 12.4 9.8 10.8 8.74 9.13 1.69 4.06 3.91 10.7 3.73 7.81 10.9 5.01 5.27 0 11.9 9.33 10.4 12.1 10.4 11 9.21 7.41 9.4 12.6 10.9 2.3 13.4 4.99 3.46 3.85 7.68 9.8 9.62 12.1 10.1 9.97 9.85 8.77 8.85 6.96 7.81 8.15 10.7 8.85 9.25 4.58 8.93 8.51 10.5 8.73 11.4 8.09 7.39 8.99 8.99 10.4 10.8 7.13 7.99 11.1 8.04 11.2 7 10.2 11.1 9.06 9.7 11 9.21 9.61 7.1 8.31 7.14 10.7 6.53 7.81 8.17 11.1 10.1 7.23 9.92 11.5 4.65 8.41 10.3 8.93 9.96 8.89 9.25 10 8.38 10.9 7.81 9.47 10.1 11.6 11.5 10.3 10.9 6.47 8.16 4.32 3 3.23 9.2 8.38 7.47 10.4 8.49 10.8 8.82 9.69 10.1 9.41 8.69 10.7 11.8 7.61 8.47 7.77 8.42 9.76 7.17 11.9 11.2 9.74 11 8.1 9.6 9.62 10.5 9.35 9.77 9.63 9.9 10.9 8.07 9.63 10.2 10.4 10.1 9.94 6.82 8.55 9.31 8.19 8.62 10.6 10.3 7.87 9.35 8.14 9.06 8.72 12.1 9.52 11.1 9.52 12.8 7.61 12.2 1.69 10.4 11.5 9.03 9.89 10.6 7.06 11.6 8.54 10.7 6.15 8.21 3.54 8.91 7.24 7.82 7.4 7.93 8.94 11 13.2 8.69 8.27 8.49 9.17 11.4 10.9 8.51 10.9 5.06 8.41 9.21 9.65 7.19 7.57 9.83 10.3 10.3 9.16 8.51 6.64 1.11 3.61 2.59 9.46 4.65 8.88 8.69 10.8 7.19 9.95 9.99 9 13.3 2.59 10.1 9.45 4.61 7.11 9.55 8.79 12.6 11.2 9.62 9.06 6.67 7.8 9.2 4.96 10.9 10 8.54 9.3 11.1 8.65 8.9 9.71 9.92 5.04 6.94 4.71 11.4 10.5 11.4 10.3 8.23 5.97 6.77 10.3 10.6 9.73 11.8 8.24 10.1 10.7 6.55 2.84 9.89 8.69 9.77 9.07 9.61 10.1 10.7 9.36 9.42 7.11 10.1 8.59 10.5 4.44 11.1 10.7 0 9.53 10 7.53 8.95 9.21 5.01 10.6 11.4 2.45 9.51 3.67 10.1 9.62 7.63 10.3 10.5 11.4 11.2 6.11 11.8 4.58 11.9 5.91 6.63 6.77 11.5 9.19 7.56 9.99 9.76 9.49 9.35 9.97 9.18 2.84 9.92 6.48 7.99 9.28 6.63 9.3 10.2 5.24 3.14 10.9 8.39 10.1 5.44 11.2 10.8 8.18 11.1 8.85 8.77 7.95 9.33 9.11 10.2 1.42 7.88 12.3 9.03 10.1 6.77 8.9 8.33 8.33 11 10.2 12.9 4.58 10.6 9.58 8.9 9.27 7.41 7.3 12.2 8.6 8.39 7.62 10.6 10.6 4.74 10.1 11.6 10.1 11.1 10.2 7.43 4.11 11.1 9.1 10.6 10.6 1.42 9.2 7.96 9.57 7 4.11 11.5 10.8 8.42 1.42 12.1 11.4 7.07 10.3 4.01 9.06 8.66 10.5 11.3 8.9 10.3 9.59 10.8 9.02 9.46 9.69 11.4 11.2 11 9.52 10.4 7.89 6.42 8.17 9.39 7.51 11.4 11.4 9.4 9.44 9.24 8.54 9.72 10.5 8.22 8.57 7.44 4.96 10.4 10.2 8.17 9.37 10.6 7.98 9.35 8.98 8.56 8.77 10.1 8.55 11.4 6.15 2.72 8.58 11 8.55 3.85 7.74 12 10.9 9.74 11.1 9.85 10.1 10.7 9.25 8.84 6.27 11.1 10.2 10.9 7.62 12.9 9.23 11.1 10.5 11.5 10.2 10.2 10.3 6.48 10.6 9.86 11.3 8.79 9.78 9.54 8.44 12 9.31 3.91 7.99 10.5 11.1 10.8 8.71 11.5 7.75 10.8 8.58 8.74 9.09 11.2 10.4 9.22 8.54 10.3 9.58 10.7 9.37 9.39 6.05 9.05 9.05 11.2 8.62 8.13 9.45 7.23 9.65 8.36 9.83 10.7 9.41 10.5 9.02 12 9.81 9.7 4.61 6.87 8.37 9.1 3.79 1.69 10.1 9.14 9.59 9.12 9.81 10.2 12.4 9.78 7.93 8.94 3.23 9.05 9.53 9.96 9.29 7.25 10.8 9.63 1.92 10.5 5.63 9.07 10.7 11.9 8.28 10.7 0 8.48 7.41 2.12 2.59 7.18 10.1 5.74 11.8 11.6 9.43 6.78 10.3 8.24 9.99 10.2 13.4 7 3.47 9.86 9.31 0.64 7.87 10.4 9.15 10.7 6.54 10.4 11.6 7.13 6.69 5.48 8.6 9.67 8.39 10.1 8.76 7.49 7.75 9.87 6.49 8.62 7.5 9.42 8.41 4.28 1.42 9.02 5.11 10.9 10.4 10.1 8.94 12.5 9.21 1.69 7.89 9.64 10.8 7.13 11.7 2.84 10.4 9.84 13.6 11.2 9.59 11 11.8 6.85 0 10.7 10.8 8.55 10.4 13 13.1 9.68 8.19 5.27 7.01 4.01 11.6 7.02 12.9 2.12 10 9.98 6.92 9.04 9.92 10.8 2.3 9.21 8.4 8.87 2.59 11.2 11.1 11.4 8.1 9.5 5.52 7.55 9.43 9.9 8.31 7.62 0.64 10.5 9.84 8.85 10.6 8.61 9.58 12.1 8.79 5.33 9.68 11 9.88 10.8 9.8 9.88 0 8.76 9.96 10.7 8.91 11.7 10.2 0 14.9 9.1 8.9 1.42 6.26 3.39 8.77 8.73 10.5 13.2 10.9 11.4 8.5 10.3 7.23 7.66 3.85 10.8 7.07 6.68 5.63 8.62 8.22 6.93 4.94 8.92 11.4 1.69 6.54 8.06 7.72 9.03 10.8 9.41 14.3 3.85 7.3 8.95 7.94 6.54 6.23 2.59 9.57 1.69 9.64 6.07 13.1 14.2 1.69 11.5 9.13 5.62 12.9 9.59 10.9 11.9 11.7 3.23 10.1 0.64 11.4 7.22 11.4 7.23 8.79 2.33 2.12 11.3 11.4 8.93 10.8 11 8.85 8.21 8.75 5.55 4.99 1.08 3.54 9.67 11.2 6.15 5.77 5.52 5.83 9.13 4.44 11.3 7.19 1.69 5.94 11.4 7.89 8.87 9.82 10.1 8.53 8.41 10.4 9.36 8.93 9.32 10.9 9.8 7.3 7.75 10.4 7.88 2.12 7.03 6.8 7.69 8.51 1.69 8.17 5.83 1.08 8.63 7.21 4.8 7.79 5.13 10.9 9.32 11.1 4.06 9.75 10 9.95 4.26 9.49 3.24 7.87 8.88 8.65 9.11 8.67 10.4 14.4 11.4 10.2 0.64 8.08 6.1 8.4 8.09 9.41 10.9 9.77 5.63 4.59 10.3 9.62 11.6 10.5 10.1 6.43 6.17 9.25 8.74 6.99 11.4 8.25 10.1 9.42 10.3 7.16 8.45 9.89 9.05 10.7 9.76 9.43 12.4 11.5 5.35 9.6 9.63 4.01 2.59 11.9 9.3 8.97 10.7 4.97 9.55 7.47 6.09 9.43 7.89 6.11 9.74 10.1 10.9 11.1 8.59 9.13 4.4 3.05 10.8 10 11.3 10.1 7.6 9.57 8.53 1.92 10.5 8.87 10.3 10.4 7.67 9.44 9.87 8.56 10.7 7.89 6.18 11.9 7.87 10.1 6.29 11 7.27 10.8 8.62 8.97 8.22 11.2 9.52 2.84 7.58 8.61 8.12 9.81 9.49 4.77 8.54 3.73 8.62 8.58 8.44 9.07 7.81 5.13 10.1 8.7 6.8 10 3.14 9.49 7.55 8.74 8.6 7.51 9.44 10.6 10.7 9.85 12.2 8.21 11.4 9.59 9.31 9.5 8.49 10.1 7.84 8.44 5.33 8.4 9.45 0 7.93 10.5 6.99 9.99 12 3.79 10.4 0 10.4 10.6 9.01 7.72 3.73 9.63 8.04 8.58 10.3 10.7 6.86 4.83 8.57 7.59 11.3 8.66 4.06 10.1 9.41 10.2 8.14 10 4.11 11.1 10 8.09 8.02 8.65 9.55 7.85 10.2 4.65 9.82 8.61 8.24 10.1 8.77 4.71 5.82 9.71 5.8 12.9 8.91 3.67 9.76 9.93 9.27 4.58 8.39 2.59 11.8 4.32 8.51 1.08 7.36 9.22 7.95 11.8 5.31 4.91 9.65 9.87 6.41 10.9 9.32 12.2 8.5 8.19 7.73 10.4 14.3 8.45 9.3 9.65 11.6 8.23 3.67 9.03 11.2 9.91 8.72 8.8 6.7 9.33 6.47 9.01 9.44 9.29 5.63 8.05 9.6 8.11 8.17 11 9.67 8.37 9.11 6.47 10.1 6.33 1.08 6.64 0.64 8.15 12.2 3.85 0 10.2 7.56 0.64 11.3 7.06 9.36 9.74 8.61 9.1 3.31 3.47 9.55 8.99 7.96 7.33 9.32 0 6.47 9.73 0.64 8.77 9.14 10.4 9.18 9.94 9.33 8.59 9.57 0 12 9.89 6.29 10.5 9.11 9.32 9.57 7.55 9.17 7.92 8.04 10 9.11 8.92 10.4 8.7 10.4 8.85 9.75 10.5 10.8 8.78 9.33 8.66 4.58 8.46 6.98 5.67 7.34 6.97 2.59 7.98 9.41 7.25 10.2 1.92 10.3 8.28 11.2 8.32 9.36 10.8 8.72 11 10.1 7.52 10.7 9.71 8.5 8.22 11.2 10.2 11.7 9.03 10.7 9.16 8.83 8.21 6.89 9.11 9.88 9.74 1.22 8.57 10.2 9.75 10.8 7.53 8.9 3.05 9.97 8.59 9.21 9.63 9.4 8.33 8.38 9.08 8.39 8.61 8.21 8.2 7.24 11.4 8.94 9.68 6.45 9.3 7.44 8.93 0 8.82 8.57 7.78 8.26 11 10.8 8.37 9.96 9.5 10.6 1.42 7.81 7.64 8.37 10.1 7.2 10.4 5.74 9.73 1.92 9.34 11.7 8.28 8.03 10.5 7.5 6.53 6.73 10.8 3.05 11.5 12.2 11.7 1.69 11.1 8.88 10.7 8.42 8.23 10.2 7.27 9.74 11.4 7.77 9.96 7.51 8.35 8.83 9.46 9.52 5.27 9.81 0 3.05 8.6 6.68 10.4 2.72 4.44 8.39 8.71 8.92 10.8 9.49 9.08 7.78 9.87 6.93 10.1 8.6 7.78 10.1 2.97 10.8 9.13 8.89 7.76 10.6 9.35 9 8.09 1.42 9.54 9.61 6.2 5.14 3.91 9 1.42 8.49 7.11 12.1 8.07 6.74 7.02 9.47 7.27 9.11 12 10.4 8.78 9.74 11.9 10.2 6.92 4.36 7.96 2.59 7.75 8.1 8.93 7.76 7.45 10.7 4.58 10.1 8.94 9.4 9.56 7.85 8.34 7.7 10.8 9.96 10.1 8.56 10.1 8.61 8.38 11.1 8.89 9.85 8.75 9.73 3.14 9.92 10.1 7.98 9.38 2.12 8.57 8.11 8.44 7.75 5.6 3.73 9.17 10.4 9.6 8.71 8.72 9.01 7.97 9.41 9.93 9.47 8.92 11.4 3.23 5.73 9.8 9.38 9.78 9.21 7.97 8.84 11 9.12 10.1 9.42 9.09 8.92 7.17 9.87 9.02 7.76 7.98 7.44 9.64 10.4 5.18 6.43 9.25 7.77 7.11 12.5 8.21 8.65 10.4 9.11 5.95 10.8 10 8.7 9.48 6.29 10.4 7.81 10.4 9.7 0 9.39 9.99 9.73 7.26 6.21 10.3 2.3 10.1 8.96 9.66 10.8 8.18 10.8 8.57 11.3 4.36 10.5 7.53 9.1 11.8 9.87 9.69 6.71 8.65 9.76 4.28 5.11 8.76 7.46 6.43 7.91 10.5 10.5 10.1 8.81 7.94 10.9 2.59 9.12 10.6 9.62 7.81 9.74 12.7 10.3 10.5 3.67 9.81 9.92 5.85 7.76 10.3 9.78 10.1 10.3 8.33 8.98 10.3 9.6 10.7 9.08 9.68 1.42 8.9 6.35 8.47 9.1 3.85 9.54 9.63 10.4 9.05 9.91 6.15 10.4 9.36 9.03 6 8.48 8.43 10.1 8.58 8.86 2.84 2.72 8.97 6.94 2.66 0.64 9.25 10.9 0.64 8.98 8.58 10.3 10.9 7.47 8.89 6.58 5.94 8.22 9.29 9.46 0 10.1 8.42 1.69 9.97 7 9.68 10.8 9.27 10.8 10.5 9.29 6.15 7.88 1.82 9.51 8.06 8.77 10.6 8.85 6.85 8.69 8.28 9.92 8.89 10.2 9.37 6.33 7.37 8.82 8.03 8.69 10.6 9.54 10.8 4.77 6.96 9.82 10.4 10.9 9.76 9.54 9.46 10.4 9.2 6.18 8.14 9.21 5.62 0.64 7.16 9.85 12.6 9.08 5.33 10.1 3.79 10.2 9.52 10.2 9.61 11.4 10.8 8.9 10.6 5.41 7.54 12.6 11.4 10.3 6.3 5.93 8.11 9.14 7.97 4.2 0 4.32 8.37 3.85 7.94 8 8.06 0.64 8.09 8.9 10.1 10.6 8.31 12.1 8.35 3.39 9.67 9.2 9.57 10.5 9.25 7.48 3.14 10.5 9.9 7.51 3.14 7.01 6.56 7.34 1.42 9.35 2.3 9.99 7.26 5.94 7.82 9.7 7.38 4.89 0.64 7 9.65 5.55 5.68 9.17 0 3.31 6.73 10.2 8.3 10.1 9.69 5.76 6.76 1.08 12.1 6.59 9.88 9.16 12.5 8.91 10.7 9.91 7.72 5.74 11.1 10.1 8.02 10.8 4.71 10.6 9.01 6.92 11 8.42 8.04 9.07 8.86 7.61 5.94 12 6.96 8.31 10.7 7.72 1.42 7.82 8.75 10.4 7.55 8.69 10.2 8.23 9.74 8.42 10.2 10.8 10.4 9.5 11 8.2 10.7 4.48 6.64 8.17 8.47 8.59 8.05 8.27 8.82 8.23 9.27 7.16 11.3 8.62 8.47 7.49 9 8.06 10.5 9.62 10.3 11.3 8.73 9.78 9.41 8.96 6.81 10.9 11.3 10.1 9.72 7.99 8.12 9.97 11.7 9.16 7.13 9.41 8.92 8.09 10.1 9.79 8.44 10.1 10.4 8.49 9.38 10.7 11.7 6.46 8.59 10.7 7.33 12.1 9.64 10.6 5.09 9.19 10.1 9.33 4.28 11 8.38 12 9.77 8.47 8.08 10.1 10.8 8.36 11 8.2 10.2 6.85 7.57 9.11 10.3 9.58 9.53 9.46 9.39 9.8 6.65 6.07 8.84 9.37 9.57 5.8 9.49 12 9.04 7.91 6.87 8.91 10.2 10.3 12.2 10.1 12.6 9.85 11.8 9.33 9.18 8.61 10.1 11.2 10.4 9.71 8.9 8.42 11.6 4.36 12.3 10.7 8.55 9.58 9.57 8.82 7.54 9.05 10 6.84 9.49 9.29 5.77 10.1 9.43 9.96 6.19 9.39 6.56 10.1 7.8 8.71 8.12 7.63 8.33 11.4 8.59 9.07 8.92 8.67 10.6 6.75 7.18 9.49 7.23 6.45 9.54 6.69 7.52 7.48 9.61 3.67 7.98 5.09 11.1 9.22 7.82 9.49 8.35 6.21 7.78 4.36 8.57 6.72 9.4 1.92 7.13 10.1 9.51 5.5 10 10.7 1.42 9.69 8.22 5.73 10.9 10.7 9.19 11.1 9.88 11.6 9.74 8.34 8.75 8.52 10.7 5.52 10.5 6.95 9.29 11.7 8.89 9.29 7.99 12 8.72 9.75 9.3 3.65 10.4 5.9 8.84 8.28 10.9 2.95 9.55 9.76 9.37 10.6 8.85 0.64 8.65 8.18 10.4 9.23 8.27 7.78 5.91 10.7 1.92 7.34 0 13 9.3 8.56 10.3 4.71 11 8.16 9.47 8.53 8.95 10.2 10.4 6.95 9.86 9.3 12.3 7.66 11.1 9.38 7.5 9.46 5.82 12.2 8.24 6.05 9.31 0.64 9.41 5.2 11 9.92 7.94 7.53 8.94 13.1 5.24 5.63 9.28 10.4 10.6 10.3 11.6 9.71 6.15 10.5 9.41 9.19 8.96 7.76 2.45 9.88 0 11.6 9.75 10 5.52 8.08 10.4 10.2 11.6 9.56 10.4 11.4 7.5 8.22 8.46 5.22 9.83 3.9 1.92 8.91 7.88 5.88 4.88 3.85 4.91 4.44 6.36 8.68 6.36 3.85 4.96 11.2 3.96 4.61 2.3 3.73 5.46 10.1 2.3 6.31 7.96 5.87 6.45 5.65 7.29 6.72 5.24 6.59 9.85 4.86 6.97 5.89 6.68 3.14 0.64 8.46 1.69 1.08 2.95 5.13 11 3.23 8.39 10.1 2.59 8.6 11.5 2.84 4.96 12.3 6.89 11.2 4.01 3.47 10.2 2.95 10.2 9.56 5.44 10.2 9.91 5.19 9.95 11.1 11.8 7.89 10.5 11 8.66 9.75 5.48 1.09 9.94 9.09 9.81 9.39 8.91 8.15 8.76 3.39 11.1 6.5 1.42 1.42 8.75 3.05 8.74 5.79 8.55 4.06 6.09 13.6 7.73 2.12 15.5 7.67 8.05 5.57 10.1 6.94 8.71 10.3 8.62 9.61 8.65 0.64 10.7 8.16 11.8 8.97 8.66 4.15 4.58 6.25 3.79 9.29 0.64 10 4.77 12.1 9.61 15.3 7.49 3.47 10.8 9.43 11.4 10.7 11 7.86 9.18 9.84 8.27 11.4 9.98 9.85 7.88 3.91 10.3 10.5 12.1 11.2 11.2 10.5 12 11.7 7.89 10.1 9.97 11.4 9.43 10.2 9.39 2.72 11.3 10.1 10.6 9.24 9.88 9.97 5.86 9.6 11 11.5 8.02 9.01 8.74 8.44 9.32 9.77 7.73 12 8.23 8.09 6.14 10.1 11.3 9.68 10.6 9.25 11 9.21 9.09 12.7 6.31 10.4 9.58 9.77 8.51 9.83 11.1 8.67 8.42 10.7 8.91 10 11.2 9.97 11.5 6.89 5.74 9.91 9.46 11 0.64 7.94 2.84 9.93 9.12 10.7 6.15 10.9 2.95 6.63 10.2 8.24 3.96 8.77 9.82 7.02 8.85 9.61 9.87 10 7.51 10 9.04 9.7 9.96 9.45 9.85 10.2 0 9.31 7.42 7.69 11.3 10.2 10.8 3.05 9.47 10.6 9.71 11.6 10.1 7.71 3.85 10.1 8.58 10 10.8 10.8 10.2 11.8 9.16 4.51 9.95 10.2 1.08 10.8 11.1 12.1 6.4 9.98 9.64 9.6 11.4 3.73 11.3 0 10.3 2.12 7.97 9.16 9.86 11.5 5.24 9.12 8.49 9.88 4.48 9.89 8.26 9.63 10 1.42 5.14 8.12 7.72 11.5 6.73 9.92 11.4 10.2 0.64 9.38 9.5 10.5 11.1 10.3 7.74 11.7 5.7 11.7 11 13.2 7.67 9.02 7.57 10.4 8.7 9.88 6.53 11.8 9.93 4.91 10.3 0.64 9.89 6.54 8.83 7.57 4.88 6.56 10.8 9.86 8.35 10.5 9.62 11.7 10.8 9.5 7.36 10.4 9.61 10.2 9.11 8.03 10.1 7.52 9.35 11.5 12.2 2.59 8.91 10.7 10.5 10.5 11 9.5 8.93 10.6 8.69 12.8 9.66 8.32 13.1 9.07 9.61 10.3 6.45 11.9 10.8 9.15 9.28 7.53 8.29 10.1 5.41 4.36 12.6 9.13 11.2 0.64 4.74 8.05 10.4 10.5 5.04 5.67 9.22 11.5 7.64 7.21 12.2 8.36 6.97 8.89 3.79 7.23 7.97 3.05 7.36 11.4 9.58 9.02 8.25 1.42 9.31 14.6 1.08 2.12 10.3 8.72 0 6.9 7.3 9.76 8.24 11.2 6.14 10.4 6.84 9.39 8.99 11.1 6.72 5.53 9.66 9.32 10.5 9.29 6.59 10.9 7.06 3.91 9.59 8.78 7.1 9.74 1.69 8.57 9.7 6.97 4.83 6.69 7.97 9.74 4.24 6.73 11.2 10.4 5.6 9.93 10.1 8.07 4.56 4.86 9.05 9.51 9.84 9.27 7.26 4.15 8.87 12 8.92 5.11 10.7 13.5 9.1 0 9.45 0 10.7 6.08 3.23 10 9.79 9.15 11.4 8.22 7.97 9.52 10.1 9.85 10.2 9.8 12.1 9.9 9.55 8.99 9.59 1.55 3.85 3.23 1.69 4.06 8.11 8.02 11.5 9.84 10.2 4.06 6.44 9.8 9.12 9.35 12.3 3.14 8.58 9.74 7.18 7.74 5.55 6.24 7.55 7.7 7.31 10.2 0.64 9.71 10.1 8.4 6.34 10.9 9.67 10.4 5.73 7.44 3.61 8.02 9.03 6.8 14.2 8.3 7.18 10.8 6.36 5.87 6.57 7.46 2.12 7.51 9.76 2.3 10.5 10.9 9.54 9.48 9.4 10.5 10.8 9.12 8.81 7.33 6.59 5.35 9.88 9.65 9.67 7.82 10.5 6.81 8.76 9.74 11.3 10.2 9.2 6.87 8.89 4.68 9.66 9.69 9.12 9.59 8.97 7.66 7.42 8.15 13.4 8.96 5.62 10.6 11.8 6.99 2.45 3.91 10.5 8.43 9.69 12.2 9.99 8.08 6.76 6.89 11.3 6.13 10.6 10.5 10.4 7.25 9.97 8.9 9.54 9.77 8.2 6.81 11.8 6.97 7.89 9.03 12.5 10.2 8.36 6.45 7.83 5.95 10.1 5.46 8.15 7.57 6.7 9.53 8.41 8.98 6.23 9.22 7.58 3.05 10.5 9.61 10.1 9.09 9.99 6.67 10.2 8.51 10.1 9.76 6.31 8.84 5.09 5.9 6.97 8.41 0.64 8.15 12 7.51 7.41 9.49 10.2 7.88 4.65 5.29 6.97 0 8.46 6.99 5.63 8.56 8.06 8.43 7.15 9.27 9.57 9.19 10 9.15 9.18 10.1 7.33 10.8 11.4 11.3 9.63 11.1 8.72 2.59 2.3 6.38 9.69 9.78 2.59 8.35 1.42 5.31 7.13 8.25 10.8 9.47 10.4 6.11 9.73 8.44 7.18 7.64 9.49 13.9 9.74 4.15 9.89 10.4 10.5 5.48 7.57 2.3 5.68 6.69 3.05 11.3 8.87 7.48 10.5 8.94 8.12 10.8 8.58 10.2 9.71 7.41 11.8 11.6 8.63 9.38 7.06 9.64 9.8 8.69 9.46 7.29 9.44 11.8 8.98 9.81 12.1 11.7 8.39 11.5 9.75 6.62 9.06 8.87 8.41 9.32 11.3 9.04 9.5 5.67 10.5 10.2 10.8 8.99 9.55 9.91 8.23 5.95 7.23 7.29 6.1 9.03 8.5 9.08 7.72 8.44 11.8 10.7 10.9 9.19 4.01 9.48 9.19 10.1 10.8 10.6 9.4 9.47 6.5 3.14 10.2 3.31 1.42 12.1 12.1 8.14 12.2 10.4 10.8 5.18 3.05 8.84 9.11 10.4 11.5 8.86 11.7 8.67 11.5 9.41 2.72 8.64 10.3 8.3 11.6 12.7 8.9 8.64 8.23 9.03 12.5 11.4 12.3 7.42 8.45 4.86 7.09 7.51 7.1 11 4.68 10.6 10.7 10.7 14.9 10.7 12.5 9.94 11.2 10.7 10.1 11.6 4.58 7.19 9.9 10.3 10.1 2.3 11.2 7.25 9.88 10.9 11.5 13.1 9.61 10 6.17 3.23 7.65 10.3 8.46 7.85 10.3 9.78 0.64 9.76 7.72 11.6 11.3 8.42 9.11 10.6 8.7 11.3 8.38 6.09 1.08 9.75 11.2 10.5 2.3 8.2 9.26 9.13 0 10.7 7.38 9.29 12.6 0.64 8.34 11.3 12.2 10.8 7.38 11.4 9.29 2.84 1.08 12.6 8.62 5.63 2.84 12.7 10.5 5.06 5.43 7.54 7.54 11.3 10.3 4.28 6.48 10.8 9.16 7.03 11.4 10 6.97 7.19 11 8.82 9.74 9.14 8.43 9.01 8.69 10.2 10.9 0.76 8.64 9.71 8.28 5.55 0 9.32 7.52 9.16 10.4 11.3 17.2 9.12 9.02 1.92 10.1 3.54 1.69 10.6 0 10 9.24 9.32 2.45 10.7 4.15 11.4 10.9 9.8 9.43 10.8 4.83 2.59 6.52 8.58 2.3 8.24 7.66 10.2 8.53 8.08 10.6 1.92 9.42 3.91 0.64 8.79 12.1 8.06 10.2 9.47 11.8 1.08 9.08 8.43 9.86 7.26 9.86 7.25 8.68 9.66 8.57 4.11 10 7.72 12.1 9.56 10.8 7.51 10.2 8.84 11.6 8.49 9.23 10.4 9.75 2.45 8.4 11.5 5.73 6.32 9.24 5.94 10.6 11.4 0 0.64 6.95 8.49 0 13.9 9.93 9.19 11.3 6.9 9.42 1.42 10.2 10.6 7.19 7.91 0 6.87 5.29 7.37 8.54 7.38 2.84 10.4 9.96 8.24 9.67 15 15.2 14.1 13.7 10.8 10.5 14.1 1 15.1 7.75 14.1 14.5 13.8 14.4 14.4 13.3 13.9 11.9 14.5 3.39 13 12.4 9.76 13.7 13.6 14.1 14 14.3 14.3 13.6 13.9 14.4 13 13.8 11.5 14.2 14.5 13.2 8.7 9.74 14.2 7.48 15 15.3 14 10.4 9.63 13 13 14.3 15 12.4 15.3 3.4 2.84 4.88 7.9 6.19 13.7 1.92 2.12 14.6 9.3 10.2 10.1 9.85 9.79 12.8 14.8 14.4 13.2 15 14.4 13.3 14.2 12.7 14 14.2 14.7 5.22 15.2 14.7 14.3 13.2 14.3 14.8 13.7 10.3 10 13.7 9.44 12.6 8.92 10.4 13.7 9.26 10.7 9.93 8.92 1.08 6.78 10.9 10.6 6.35 8.54 11.6 10.6 11.1 5.11 6.63 4.15 8.43 3.61 9.85 6.45 5.93 10.2 1.08 14.1 6.54 8.96 14.2 13 1.08 10.4 5.68 2.12 12.9 10.1 11.1 4.65 7.78 9.46 11.1 9.65 8.15 12.1 8.68 8.19 10.5 9.47 8.98 5.97 10.4 9.85 9.42 10.4 6.27 10.7 8.68 8.17 5.42 5.9 5.58 6.42 17 8.94 7.37 3.91 9.24 8.55 1.08 6.57 6.26 8.27 11.1 4.58 5.73 11.3 8.85 5.37 0 7.7 8.85 5.7 11.2 7.32 4.58 2.84 3.73 0 9.22 5.8 3.05 5.16 2.84 3.39 7.42 4.24 10.6 7.27 3.73 11.7 11 11.4 12.5 9.23 10.6 8.63 8.97 9.84 10.8 9.56 9.92 9.72 8.72 10.1 8.49 8.7 6.72 8.01 10.2 10.2 10.5 8.26 8.21 10.2 8.89 3.75 7.78 9.49 10.2 10.5 7.22 9.04 3.14 0.74 9.06 6.75 6.26 8.51 7.41 8.12 5.42 9.64 7.4 8.69 8.41 6.75 11.9 7.46 10.6 0.64 9.35 6.79 8.09 8.39 7.61 8.04 1.08 10.9 7.48 8.92 6.59 5.91 8.59 10.4 10.1 9.71 3.47 11.2 4.51 4.96 10.3 8.23 3.23 6.38 6.85 11.2 6.64 9.91 7.66 3.14 5.95 6.58 8.68 10.3 8.81 8.3 7.13 6.5 7.76 6.16 9.53 8.54 11.4 10.7 10.8 10.5 8.29 8.13 10.8 5.87 11.1 2.46 5.37 10.2 2.59 10.2 6.51 7.99 2.72 8.36 1.69 11.3 9.7 4.01 7.3 7.22 7.38 12.1 8.61 9.15 10 7.39 11.5 6.44 6.5 8.76 7.33 5.27 12.2 12.9 0 8.9 7.49 10.3 10.2 12.3 10.3 9.65 8.68 6.05 9.24 7.57 8.81 10.8 10.1 9.53 9.72 3.61 12.5 9.77 10.6 12.2 0 0 6.24 7.72 12.2 5.86 11.9 12.4 5.24 8.46 5.98 6.89 7.21 7.78 9.61 9.35 7.08 11.3 5.71 5.52 0 3.15 11.7 3.14 0.64 12.2 10.5 8.45 10.5 11.2 9.05 0.64 10.8 7.47 6.6 9.8 10.2 9.56 10 7.18 9.93 7.88 4.36 1.42 2.95 5.42 11.5 9.52 10.1 3.47 10.7 9.27 1.69 3.54 10.4 7.25 8.11 1.69 2.3 8.88 7.46 4.55 6.42 5.19 7.24 3.47 0.64 0 7.59 8.33 2.3 10.2 8.98 9.59 9.61 8.9 6.66 8.45 5.09 5.6 7.89 8.69 7.53 10.1 8.96 8.68 0 1.08 4.51 8.24 2.95 9.39 9.38 1.92 8.15 6.94 9.62 11.3 9.6 10.1 8.76 8.77 9.24 10.3 9.5 8.36 10.2 8.88 4.77 8.45 1.49 1.92 4.8 7.13 4.83 5.41 11.4 2.59 8.54 0 9.89 1.42 5.9 7.73 1.08 11 0 5.09 1.08 3.31 8.91 4.88 3.73 11.5 2.48 1.42 9.16 2.59 10.6 10.7 6.04 0.64 2.44 3.05 3.39 11.8 1.92 4.51 4.93 4.4 0.64 3.23 6.1 7.25 4.51 4.24 8.17 8.35 10.7 0 9.77 1.69 1.92 3.91 10.8 2.12 7.01 5.8 13.4 1.92 9.74 4.91 6.19 10 0.64 0.64 7.83 9.3 9.06 6.66 10.4 1.69 1.08 1.69 2.3 9.54 4.15 7.53 5.77 5.82 7.55 9.55 11 13.1 5.8 9.61 9.19 11.7 3.54 5.71 10.8 9.19 8.85 10.8 10.8 10.4 9.22 4.71 8.58 11.5 9.73 5.13 12.8 10.6 9.8 5.33 9.03 11.9 9.55 8.69 10.1 8.7 10.3 11.2 9.24 9.9 6.96 8.34 12.1 7.99 9.98 10.4 10.4 9.82 6.83 10.5 6.82 2.3 9.99 10.7 8.66 7.4 9.58 8.31 8.61 4.28 10.4 13.2 8.37 4.51 10.2 11.1 3.67 8.63 8.46 3.14 10.6 10 10.9 9.42 8.25 8.69 10.3 7.54 8.52 2.45 10.8 10.8 9.7 7.04 9.2 10.6 8.53 12.8 11.5 10.1 7.58 9.79 8.16 7.83 9.62 10.5 8.57 3.45 5.13 6.21 8.22 7.73 12.6 3.23 9.37 4.74 7.83 5.87 9.07 0 10.6 9.14 8.49 9.07 9.62 7.03 2.84 10.4 6.91 11.6 7.33 7.68 9.38 5.82 9.96 0 10.1 9.15 8.79 8.89 9.72 11.7 9.51 8.66 9.63 8.35 9.53 9.1 9.68 10.3 2.72 6.25 12.2 9.73 9.86 8.02 6.45 8.79 7.22 10.8 8.32 7.66 5.11 3.91 8.21 7.96 11 8.26 10.1 2.95 9.99 6.39 5.91 3.14 9.43 6.24 8.06 9.08 8.9 10.8 8.15 9.67 8.94 9.94 1.69 11.7 12.1 8.22 9.64 10.3 4.4 11.3 8.52 12.3 10.3 10.2 2.59 10.8 2.72 8.56 3.31 10.6 11.2 2.12 12.1 10.3 5.93 4.51 10.7 9.54 10.8 9.34 6.82 9.27 8.85 7.34 8.69 11.7 10.2 6.28 2.84 5.35 4.06 0.64 6.41 1.69 7.88 0 0 3.96 8.28 3.14 11.7 5.62 5.57 1.69 2.12 6.81 4.51 9.32 8.75 1.92 5.67 3.54 0 0.64 8.09 10.8 9.12 8.47 10.9 3.67 6.47 4.44 9 1.69 10.5 6.66 5.9 1.93 1.42 9.26 1.69 7.35 4.55 3.14 8.13 1.92 10.9 10.5 1.42 3.14 1.92 9.49 9.95 4.06 8.47 1.92 7.6 7.36 0 5.3 8.09 7.32 1.69 1.08 10.1 4.15 3.14 1.08 3.85 5.57 0 7.54 1.92 9.02 0 4.44 10.8 4.36 6.46 11.4 9.26 9.68 0 1.42 8.92 11.6 9.33 10 10.9 5.01 3.73 9.74 7.25 9.08 1.69 10.9 11.8 11 9.62 10.5 11.1 9.03 11.9 6.55 8.85 10.1 10.4 9.9 8.92 9.18 8.69 9.72 8.42 6.96 8.19 4.8 11.5 7.48 10.5 10.1 10.3 9.9 6.2 10.2 9.29 4.83 5.91 2.72 8.76 10.9 10.1 11.2 10.7 11.1 6.53 8.92 9.79 11.7 1.46 10.4 10.7 10.4 9.52 7.96 10.7 11.5 11.8 8.29 9.19 6.86 8.18 9.15 8.46 7.92 8.9 5.53 8.85 13.2 12.1 10.2 8.65 11.6 10.4 9.86 10.3 9.96 11.9 10.1 9.91 10.3 9.81 11.2 9.36 8.56 8.04 11.2 10.2 10.4 9.15 0.64 11.6 4.71 12.2 9.42 10.9 10 12.1 8.72 7.58 10.2 9.09 12.3 10.3 3.91 8.74 0 2.95 9.91 11.3 8.75 11.5 10.9 6.71 10.8 6.25 10.7 5.74 18.4 9.35 10.4 8.72 2.3 8.19 1.08 8.4 6.95 10.9 11.6 10 7.59 13.5 0.64 7.17 13.6 9.54 10 10.6 7.81 0.64 11 8.6 10.1 10.8 11.2 11.7 12.1 11.8 9.78 9.62 6.44 10.9 11 10.3 9.64 12.3 8.78 10.1 11.2 10.3 10.3 12.4 12.8 12.1 11.8 12 7.14 5.22 0 10.9 11.6 11.6 9.86 7 13.2 3.61 11.5 11.7 12.6 5.86 10.4 10.6 0 0.64 3.73 0 1.08 2.84 1.42 1.76 11.8 3.08 1.92 1.69 5.88 11.8 11.7 8.94 10.1 8.79 5.27 9.9 8.92 8.55 8.57 9.68 8.51 2.95 3.05 10.5 10.4 3.96 5.27 7.23 6.9 9.07 10.3 10.4 9.12 10.6 9.07 8.83 9.59 10.4 1.08 13.9 2.72 8.64 10.1 11.8 7.12 11.5 8.99 9.58 7.97 13.5 9.68 9.82 7.91 12.1 11.3 7.11 9.9 10.1 3.67 8.27 8.28 2.12 4.74 11.1 5.09 8.15 2.59 2.45 0 10.8 10.1 3.14 10.6 6.95 9.92 9.34 8.73 7.35 15.5 6.59 10.3 11 9.29 10.3 9.96 9.38 9.38 7.28 9.7 8.28 1.08 11.7 13.2 11.5 10.8 12.9 9.27 9.32 11.1 8.35 2.45 8.76 10.5 8.84 11 8.1 8.65 8.23 9.46 3.14 5.91 8.35 7.85 10.1 8.81 9.51 1.42 4.68 6.75 9.46 0 0.64 11.5 5.1 10.6 11 8.11 4.06 11.7 8.53 9.11 10.2 8.85 10.9 4.71 10.8 7.89 8.92 9.35 9.68 9.99 0.64 8.67 10.7 6.45 12.1 0 0 9.37 8.71 10.1 6.03 10.4 10.2 9.23 8.97 11.7 12 9.57 9.87 4.61 4.15 7.68 13.3 8.04 9.77 9.58 0 8.77 8.86 2.12 9.55 4.32 8.99 8.84 8.53 9.05 9.08 10.9 11.2 7.36 11 8.19 10.3 3.47 11.2 5.22 4.91 11.3 11.2 13.6 12 3.05 15.5 11 1.42 12 10 9.21 10.7 8.41 11.8 0.64 10.9 12.9 14.8 12.3 11.5 2.59 3.47 9.43 4.61 9.43 5.83 1.42 14 11.7 11.4 10.4 7.66 11.6 15.1 14.5 14 5.11 9.88 11.4 10 9.74 12.2 3.73 9.45 9.62 10.2 8.35 5.29 13.7 11.5 6.39 8.16 5.53 8.75 16.7 13.3 7.37 9.61 9.07 11.3 8.68 7.62 10.2 10.6 7.42 10.4 15.6 11.7 10.3 8.88 5.6 2.12 11.2 11.7 8.93 11.5 8.24 12.2 9.94 7.61 4.15 0.64 5.86 11.3 4.36 12.3 13.1 14.1 10.8 6.11 2.72 11.3 11.8 8.44 11 9.92 9.78 14.6 3.73 10.4 9.63 11.3 11.9 0.64 13.2 14 14.2 10.7 13.1 14.7 8.49 10.2 11.7 1.42 16.2 0 15.3 8.99 10.1 14.6 8.3 9.25 7.74 9.83 7.44 8.32 14.7 0.64 12.4 11.1 10.9 9.97 3.85 8.9 2.59 4.65 8.61 7.62 8.24 0.64 3.96 4.24 11.1 9.71 10.4 6.99 10.1 1.69 9.69 11 8.68 8.77 7.61 8.82 11.1 9.93 10.9 13.1 9.19 7.06 8.61 8.2 6.73 9.55 8.79 4.68 5.2 1.69 9.22 7.99 9.28 8.29 10.8 4.01 4.8 4.71 6.6 7.7 2.12 9.08 9.18 4.24 9.34 9.81 9.58 3.54 8.32 0.64 3.23 7.93 11.9 6.75 6.29 1.42 7.85 8.15 7.38 2.91 9.57 0 6.54 7.03 5.76 1.08 4.74 9.25 8.04 2.3 13.4 2.72 7.49 0.64 6.14 0 2.59 6.13 7.9 6.55 9.8 2.3 2.72 9.46 4.44 8.43 5.53 5.39 4.82 8.02 2.2 1.69 4.74 7.41 6.07 5.65 1.08 5.27 6.57 1.08 5.86 6.11 2.59 0 7.47 11.3 8.66 4.65 9.34 2.12 4.06 12.6 5.27 6.96 1.92 7.7 10.6 1.69 0.64 4.24 10.3 5.31 8.68 6.42 5.27 1.08 8.36 7.79 2.3 9.96 1.69 9.05 6.35 8.66 7.75 6.28 1.42 9.61 2.12 11.3 2.12 13.6 5.97 13.4 14.8 12.9 0 10.5 10.7 10.4 9.16 10.9 11.9 10.4 9.37 9.97 11.2 10.9 11.2 1.42 10.7 10.8 11.7 9.94 10 9.54 11.2 11.1 11.7 11.8 8.71 8.84 3.23 9.44 5.11 9.83 6.3 10.4 8.68 10.1 11.1 1.08 8.88 9.26 12.8 9.91 10.4 10.5 8.39 1.08 11.1 1.08 11.9 11.8 11.6 10.3 11.3 10.4 9.87 10.1 10.9 10.4 1.92 10 11.1 10.3 8.91 11.1 11.7 7.05 11.2 9.58 10.7 12.7 12.9 12.3 10.6 10.8 11.1 11 10.7 8.99 4.06 9.67 0.64 13.1 15.6 3.61 7.14 9.37 5.16 4.96 7.2 7.75 8.98 5.35 10.6 11.9 13.3 10.9 7.33 10.3 12.2 10.6 9.99 7.59 6.72 9.34 9.38 10.3 8.91 8.2 1.08 5.9 8.79 2.45 1.42 7 0.64 4.61 5.55 8.93 5.82 1.69 8.86 8.71 9.19 11.4 3.67 1.69 14.1 2.84 8.32 10.4 5.91 10.1 4.71 12.2 9.74 6.65 8.14 8.24 8.99 12.6 7.72 10.6 9.6 12.6 10 12.9 12.6 11.7 13.6 6.99 12.2 12.9 5.18 14 8.6 9.81 9.58 6.99 9.27 9.4 7.45 8.52 6.3 12.6 7.76 9.73 7.56 7.16 7.57 7.06 7.81 5.13 6.98 7.76 9.65 9.86 7.96 10.5 8.15 7.83 6.54 9.34 9.92 9.42 7.64 9.13 9.37 7.53 7.65 8.78 8.16 7.86 6.1 7.04 4.42 0.64 6.17 7.6 7.99 8.49 7.56 9.03 6.67 0.64 9.99 3.85 7.52 7.19 8.36 1.08 1.42 6.18 5.62 5.41 12 6.49 4.28 3.54 4.11 3.23 3.05 3.67 9.25 9.12 6.43 8.84 7.59 6.03 7.67 4.96 7.07 8.98 6.5 4.88 8.81 8.29 10.4 1.42 11 10.6 10.1 9.19 9.48 5.76 7.43 0 10.3 4.27 10.7 7.92 7.23 4.8 6.54 4.74 7.58 7.92 7.94 9.57 0.64 8.03 9.05 8.21 8.06 8.62 9.28 10.8 8.07 8.62 5.63 8.43 11.7 7.02 2.72 8.72 5.55 5.06 11.9 10.1 6.72 8.35 6.39 8.82 3.05 8.35 7.65 5.55 7.12 7.93 8.25 8.06 0 1.42 6.4 7.73 9.21 5.41 12.8 10.7 10.1 10.1 7.99 11.7 8.3 11.8 4.13 13.1 9.35 10.7 7.73 5.85 10.9 14.1 9.61 9.04 11.2 9.88 13.2 5.31 5.87 2.3 9.28 9.29 7.53 7.6 9.2 10.5 8.81 11.4 10.3 11.3 11.3 12.2 8.6 6.29 9.58 2.45 9.59 9.59 6.45 4.88 8.43 10.7 9.81 6.76 9.16 2.95 3.79 9.34 11.4 6.38 11.6 11.1 8.61 9.9 9.09 9.19 5.83 9.46 10.3 2.59 9.82 10.1 7.97 7.11 8.32 11 8.47 2.59 14.5 10.4 7.61 8.77 8.73 10.4 9.4 9.83 10.9 5.93 9.41 11 4.15 10.1 10.6 9.68 11.3 8.84 9.37 4.36 8.99 8.38 10.9 9.24 10.6 8.86 7.7 7.5 11.8 6.65 7.47 10 7.28 9.4 9.42 9.11 10.1 10.5 8.95 6.78 9.8 8.47 8.29 4.44 6.11 9.97 8.46 9.3 2.12 9.89 10.2 11.1 11.5 8.15 7.64 8.99 7.25 11.2 11.3 8.19 9.82 10.9 12.2 8.69 8.85 8.64 5.79 8.07 5.37 6.34 7.05 9.73 8.19 8.45 10.1 8.05 12.6 8.64 7.66 0 5.66 7.87 12 4.68 10.4 7.98 3.14 9.74 8.14 8 7.82 7.48 8.47 11 9.02 8.52 4.99 12.4 12.6 8.82 9.97 13.1 9.71 6.33 7.5 3.1 9.66 1.42 0.64 0 10.4 5.79 9.91 9.78 5.11 1.08 1.92 0 7.52 0 3.85 6.86 5.22 6.52 8.13 10.9 8.9 8.25 2.45 9.41 7.3 9.84 5.01 3.47 4.01 3.32 10.7 7.96 6.32 4.11 9.3 11.2 9.17 7.92 8.26 9.64 10.7 8.09 7.85 9.98 13.6 10.3 9.91 8.68 9.86 8.93 8.81 5.97 9.48 10.8 8 4.06 8.44 6.24 7.36 6.62 8.48 7.79 7.29 5.8 9.2 9.27 7.01 8.82 3.61 6.27 7.64 5.01 7.88 8.14 8.59 4.15 9.25 8.11 5.93 8.57 7.21 8.35 8.99 8.39 9.26 8.52 3.23 8.1 10.3 8.74 8.41 8.92 9.68 10 9.45 9.96 4.58 9.1 7.98 7.91 9.87 6.08 7.73 9.74 10.1 8.07 4.71 8.39 6.75 9.92 8.82 9.48 7.91 4.48 8.52 8.38 9.73 9.19 7.12 8.11 8.42 9.83 11.7 8.98 9.15 9.5 8.85 8.8 9.59 4.48 7.9 9.75 8.72 7.66 9.11 9.74 7.54 12.9 10.4 9.86 8.16 7.13 8.59 10.3 9.86 11.6 10.5 9.75 4.48 7.75 10.1 5.98 9.21 8.06 6.55 3.96 8.11 7.09 9.13 9.41 7.36 8.67 4.94 2.95 10.7 7.72 8.67 7.08 0 10.8 6.19 9.7 8.9 8.18 8.14 2.95 7.84 9.47 5.8 8.31 7.75 10.8 7.14 8.74 10.8 7.5 3.54 8.49 7.44 9.44 7.48 9.3 7.55 0 7.57 4.06 7.14 4.61 7.88 11.4 9.34 10.8 8.5 9.03 8.45 8.98 6.46 8.2 4.88 8.62 6.46 7.3 8.34 7.25 10.8 10.6 10.4 5.2 6.58 4.06 7.51 6.68 7.06 8.53 0.64 10.4 5.71 6.86 7.45 8.12 9.28 8.7 6.68 10.5 7.07 11.3 2.59 9.38 2.95 8.68 7.9 7.07 5.37 6.31 6.95 5.35 8.42 6.67 5.62 8.17 3.23 9.54 6.33 1.08 5.63 8.33 0 7.17 1.69 6.35 8.63 6.2 2.59 7.85 8.82 9.07 10.6 5.95 7.51 9.02 8.44 9.3 7.84 10 9.56 4.86 8.4 9.69 10.3 7.25 8.29 8.24 9.32 11.3 9.3 6.92 9.99 10.3 9.28 6.2 7.98 8.51 6.63 9.36 13 9.81 10.5 6.11 6.87 3.05 10.3 8.32 7.64 6.64 5.41 7.49 11.1 7.41 0.64 7.65 5.58 7.9 5.98 8.03 7.63 3.05 10.4 3.85 9.28 2.72 6.05 10.9 9.97 4.74 7.86 5.87 1.72 9.63 7.08 1.69 9.45 2.3 9.34 5.8 6.58 7.23 8.93 7.52 5.85 8.58 6.59 8.17 8.54 10.5 4.58 5.62 1.92 7.62 8.93 7.44 5.58 5.39 9.69 6.89 9.25 8.59 2.72 6.14 3.73 13.9 0 5.82 6.92 8.37 9.53 8.48 7.68 3.31 7.88 9.96 10.2 8.47 9.31 9.25 9.4 9.81 7.46 7.39 9.71 10.2 9.8 9.22 9.36 8.64 2.84 2.12 4.55 3.39 8.01 7.3 8.66 2.8 5.46 3.14 1.08 7.81 11.1 12.7 4.2 7.7 7.92 6.26 7.16 0 9.11 7.55 7.47 4.91 5.58 7.46 8.47 8.73 10 9.22 9.5 10.1 9.81 10.8 8.3 6.61 9.48 9.88 9.79 9.65 7.63 10.3 5.82 7.57 7.43 7.57 10.3 9.47 7.39 9.88 7.07 9.03 8.06 10.3 8.51 8.7 9.39 9.45 8.36 5.82 10.6 9.83 7.75 9.23 10 9.84 10.3 9.8 10.2 9.81 8.38 3.05 11.3 9.07 7.75 8.56 11.6 7.34 8.62 11.1 10.5 5.55 11.4 10.7 7.3 6.29 5.39 9.33 10 10 3.14 8.48 6.53 6.74 10.4 8.84 10.3 9.45 8.87 3.47 11.2 9.31 5.99 8.45 10.9 10.7 8.01 7.93 9.69 8.62 7.56 9.44 11.5 9.15 7.93 5.09 8.29 8.34 8.36 6.47 5.74 7.73 7.8 3.67 9.48 9.35 8.29 6.68 4.36 11.4 7.25 4.15 11.7 8.17 2.12 7.68 6.45 9.56 6.59 9.64 10.4 9.82 3.14 10.6 4.32 9.77 11.6 6.17 12.4 9.66 13.1 8.69 6.79 10.1 11.5 4.36 9.34 4.06 8.21 9.19 5.42 6.98 11.9 7.66 11.4 1.92 3.14 3.05 1.42 4.74 8.62 7.85 7.44 9.38 6.49 6.34 5.46 10.7 7.33 11.4 8.25 6 9.35 9.76 7.79 7.22 10.1 6.62 10.9 14.2 9.35 11.8 10.6 12.4 7.6 9.6 9.69 7.56 8.3 6.95 9.05 10.8 9.72 8.69 9.69 0.64 10.9 9.68 8.54 10.6 8.42 9.79 4.82 5.63 7.84 3.8 11.4 8.34 9.05 7.76 3.67 2.95 12.3 13.8 8.62 2.59 5.37 8.46 3.73 9.82 9.85 9.39 11 11.4 14.6 3.39 8.82 0 6.02 4.58 11.5 13.5 9.82 4.83 2.45 8.82 12.2 9.96 10 4.71 10.4 8.88 0.64 12.3 4.99 9.51 9.18 8.38 11.2 10 5.87 9.69 9.4 8.44 10.6 6.18 10.1 11.2 9.78 10.5 7.88 9.41 9.69 9.14 10.2 9.92 13.8 0 7.99 9.49 8.97 9.55 10.5 8.99 9.58 6.56 9.04 2.84 7.31 10.9 10.8 12.6 5.77 8.69 9.43 8.59 9.03 10.2 9.7 5.91 1.69 7.23 11.2 11.3 8.06 4.71 9.96 9.35 8.76 10.4 5.1 10.8 9.45 12.3 12.2 12.3 10.2 6.11 4.2 9.51 2.59 8.72 4.01 3.31 10.7 9.42 5.29 8.36 7.18 9.3 4.11 9.81 3.39 9.57 7.19 9.39 7.63 8.86 9.96 10.8 9.94 9.91 3.18 10.7 6.78 9.88 10.2 7.27 9.9 9.22 12.1 9.87 9.22 9.07 10.9 9.71 9 0.61 9.03 10.1 1.51 9.85 9.49 8.51 9.87 2.72 7.83 6.85 7.74 9.81 0 10.1 10.2 6.93 10.9 14.1 8.09 10.4 8.18 10.9 8.52 1.92 9.45 8.6 10.6 9.06 11.8 8.64 10.9 11.8 13.1 10.7 11.7 11 6.75 12.8 10.4 7.04 9.77 8 8.47 9.71 1.92 8.02 0.64 11.1 11.5 10.9 6.59 9.08 0.64 10.8 11.3 12.6 9.18 6.95 12.1 8.35 10.2 8.79 10.4 9.17 7.46 7.57 12.9 3.79 11 11.3 10.4 9.51 8.58 3.85 0.64 10.3 1.92 0 0 9.3 1.69 7.75 2.72 2.59 6.25 8.19 0 1.92 3.14 2.12 0 1.42 9.44 1.92 10.5 12.5 10.7 7.88 7.48 1.92 0.64 5.16 7.57 7.94 0 8.28 7.7 8.66 8.52 9.87 4.51 6.16 8.57 8.12 8.2 1.08 7.99 7.51 13.2 7.47 10 0 3.39 0 3.67 4.44 0 7.66 8.21 7.16 8.76 6.87 9.69 9.39 0.64 11.6 0 2.45 1.08 0.64 9.49 7.23 3.85 9.27 7.73 8.31 8.59 9.58 0 9.55 10.8 10.3 9.79 8.07 0 4.32 9.58 11.3 10.1 0 8.08 10.7 8.89 8.92 8.77 4.71 1.08 1.08 11.1 0.64 8.56 10.4 9.01 2.12 8.61 11.4 8.49 4.58 9.03 8.76 0.64 4.94 7.87 10.5 7.7 10.4 8.58 8.38 6.6 3.14 11.9 9.79 6.89 1.69 7.03 9.08 2.72 7.02 10.3 11.4 9.91 5.83 9.4 9.26 2.3 5.55 8.26 10.4 9.86 8.99 0.64 6.71 4.01 7.73 3.54 3.17 10.1 6.37 9.11 9.21 6.54 6.65 8.98 11.8 8.56 9.18 8.19 4.74 10.7 8.26 8.51 0 3.23 0 4.32 0 0 0 4.2 8.14 11.3 7.96 5.35 9.51 10.5 7.62 9.11 10.3 6.37 10.4 10.6 8.03 8.73 6.1 4.44 0 6.8 1.92 8.77 11.3 7.44 9.59 3.79 10.2 11.4 10.3 7.68 9.38 1.08 6.5 4.4 0 8.67 8.95 1.69 8.5 9.7 8.84 8.99 12.8 10.7 3.23 8.97 5.39 8.22 0.64 8.71 7.71 11.1 8.44 4.2 9.18 10.1 9.87 7.24 6.83 14 2.95 5.89 0 4.28 6.75 5.94 9.88 10.5 8.75 9.6 5.9 5.22 8.68 10.2 1.08 9.28 5.65 1.69 8.27 7.93 5.33 7.73 9.51 9.18 8.47 7.81 9.95 9.46 8.32 8.48 9.11 8.48 8.02 7.31 6.1 7.29 4.77 9.28 9.35 0.64 9.83 9 10.3 4.44 9.89 8.11 10.2 9.32 7.54 13 10.4 9.03 9.37 8.51 4.86 6.96 9.29 9.57 8.41 9.11 9.41 10.6 5.04 1.08 6.69 9.54 9.78 10.8 3.85 7.98 7.46 8.25 2.12 7.24 4.74 8.25 6.26 7.91 3.31 6.55 6.73 4.65 5.44 1.42 9.11 11.3 11.2 8.29 7.79 1.08 8.92 9.87 8.89 9.65 9.81 10.4 3.39 10.9 7.91 7.04 6.66 7.65 10.1 9.69 4.24 9.15 8.62 8.31 9.65 9.75 7.34 8.81 9.92 8.81 8.57 8.51 9.65 8.36 10.6 9.66 8.61 8.73 6.45 8.32 8.2 4.11 8.68 11.4 9.47 4.86 9.33 6.49 8.54 8.99 8.49 9.5 6.11 9.09 1.08 7.39 8.94 8.66 9.17 7.58 9.74 9.44 8.86 10.1 5.49 7.18 7.22 9.02 9.1 6.87 7.46 9.04 0 10.9 9.51 7.41 9.92 7.24 7.96 9.62 8.93 7.18 8.67 9.02 10.1 10.1 9.81 4.28 7.93 7.33 7.38 7.78 2.95 9.46 8.86 10.8 9.61 10.2 9.48 8.71 8.37 9.13 1.08 9.35 10.6 10.2 2.45 10.5 7.61 9.46 1.92 10.6 4.28 9.95 6.42 10.1 9.77 8.26 8.74 8.36 7.52 9.78 8.66 9.77 10.8 6.66 10.8 7.77 8.02 9.66 10 7.04 6.83 8.73 5.36 9.1 7.48 8.87 7.94 0.64 2.45 5.06 3.26 9.89 9.35 11 5.68 3.14 6.75 10.9 10.3 9.3 8.37 10.3 4.94 2.95 3.73 10.6 7.31 9.64 6.96 9.32 8.49 6.83 9.75 10.3 5.27 10.5 5.33 8.12 9.55 7.39 9.05 9.16 10.6 8.49 9.15 12 1.69 9.86 7.3 9.33 0.64 8.82 6.04 3.61 12.5 9.79 9.46 6.87 6.34 7.11 12 7.84 9.83 6.87 11.6 10.4 8.33 6.65 2.45 6.21 8.81 11.1 6.66 6.87 9.61 10.6 5.09 0 0 1.92 8.93 12.1 9.45 9.33 10.4 6.9 8.09 1.92 9.44 7.23 0 9.23 7.69 11.3 1.92 5.59 7.19 7.17 2.3 3.39 0 9.73 7.46 0 6.98 8.62 8.7 5.41 5.93 6.68 10.8 9.15 7.36 5.73 12.3 6.82 12.3 7.97 9.01 0 5.62 10.8 8.05 6.97 9.51 7.84 10.7 7.27 4.94 8.06 6.4 3.61 7.58 7.13 8.57 12.6 6.08 9.2 7.01 7.6 10.4 9.49 4.4 6.88 4.91 5.42 9.74 8.83 8.79 6.85 5.79 3.47 6.4 9.6 9.23 9.18 8.31 11.7 1.69 8.71 8.96 4.2 6.43 9.47 10.5 5.04 8.23 0 3.31 8.85 5.8 7.57 4.86 9.61 8.06 9.15 9.82 7.46 7.01 8.15 8.39 6.57 4.83 0.64 7.51 8.32 10.2 8.25 8.45 8.22 9.04 9.18 9.24 11.3 9.1 9.45 0 8.77 10.5 9.19 9.3 9.75 10.1 10.5 8.94 12.3 4.88 9.62 9.4 6.65 7.09 10.3 10.4 9.01 10.8 5.22 9.45 7 9.59 5.82 9.38 11.2 10.7 1.69 6.3 8.77 9.43 7.49 8.38 10.4 9.16 3.67 8.25 9 8.51 8.72 9.42 8.41 8.94 6.94 10.5 6.82 4.58 8.59 2.3 9.01 9.41 7.59 7.95 8.34 9.78 5.33 9.6 4.55 8.36 9.31 8.98 5.86 6.77 10.6 4.51 7.07 9.71 6.82 9.25 6.92 6.38 5.71 8.42 9.68 9.81 7.6 4.28 10.5 9.35 2.3 6.41 8.56 7.64 9.49 9.26 4.08 1.92 10.2 10.3 9.75 5.86 10.4 5.2 5.86 9.45 0 8.64 9.6 8.75 9.83 8.27 7.11 10.9 9.1 8.24 7.7 10.1 8.77 8.73 8.1 8.58 9.36 11.7 9.53 9.14 10.2 4.91 8.22 6.9 2.95 9.4 10.1 11.9 9.82 0 10.8 0 9.31 10.2 8.14 9.87 5.01 0.64 6.29 1.08 7.89 7.29 12.3 9.22 7.78 0.64 11.3 0 5.29 9.66 7.76 9.28 8.56 11 9.69 8.88 10.3 9.44 9.35 10.2 7.11 9.01 1.08 5.53 10.1 9.72 9.7 11.1 7.99 10.4 9.48 10.2 5.16 5.31 7.47 0 7.52 8.6 1.92 11.8 9.72 9.58 8.74 6.92 9.41 9.47 9.08 7.36 6.04 11 9.98 9.26 7.14 4.65 12.7 8.63 10.2 8.43 10.6 6.99 10.8 8.05 8.13 9.21 9.59 6.79 4.54 9.75 7.76 3.67 2.3 8.98 0.64 6.73 3.67 8.85 1.27 4.91 12.3 7.85 8.11 6.64 4.01 9.67 8.17 11.5 10.8 8.76 3.65 11.2 12.7 10.2 9.76 9.18 12 11.4 8.46 10.5 9.98 9.99 9.52 7.1 9.6 10.5 7.75 9.97 8.7 3.73 1.92 9.62 9.27 8.46 7.31 10.2 6.93 6.49 12.1 11.5 8 10.5 9.49 10.8 4.32 5.01 10.1 5.65 9.8 9.52 10.2 3.67 9.21 5.89 7.21 4.91 5.42 4.58 9.41 9.43 10.3 8.33 5.74 11.1 6.08 4.32 10.7 6.34 7.8 8.68 9.53 9.95 8.87 10.1 10.1 7.68 9.47 12.3 10.3 7.98 9.25 12.1 12.4 8.42 11.6 12.1 11.6 12.1 12 11.1 9.97 7.89 11.3 9.99 8.67 11.4 6.13 8.55 10.6 8.99 8.53 12.7 11.4 6.48 9.22 11.4 7.98 9.73 9.53 5.48 13.1 2.99 10.3 9.77 11.2 7.46 9.28 3.67 0.64 15 6.05 10.8 8.78 9.37 7.81 11.5 12.4 10.7 9.72 12 10.8 9.14 10.4 11.5 10.8 9.96 10.1 8.86 11.2 6.37 10.2 6.64 6.87 5.09 8.42 9.27 10 6.92 4.77 2.84 1.42 8.64 11.4 12.2 9.58 9.36 11.9 12.4 9.7 11.6 9.03 9.06 9.97 10.2 9.28 10.9 9.16 5.76 8.74 3.54 10.1 4.61 1.08 8.01 2.95 8.43 4.68 8.35 4.8 11.5 4.88 9.04 8.89 3.47 5.71 9.92 10.3 9.29 10.6 9.75 3.54 5.06 4.32 0 9.61 9.4 4.65 11.4 10 5.99 10.3 6.93 3.73 7.1 2.12 9.28 3.54 13.2 12.3 11.7 6.44 8.95 5.2 10.3 9.17 7.96 8.64 10.2 0 3.91 8.35 10.6 2.3 3.23 9.91 9.89 7.33 6.72 11.8 8.59 7.99 10.9 11.9 1.42 10.4 1.69 9.38 9.75 7.55 6.81 8.56 8.22 9.81 10.5 9.23 9.84 10.7 9.75 3.61 5.22 9.7 13.6 11.1 10.3 10.9 9.71 9.29 9.52 10.9 11 11 9.43 9.91 8.83 8.82 9.8 11 10.7 10.6 9.77 10.9 10.8 1.08 8.6 5.83 12 8.94 9.34 10.8 8.84 3.73 10.1 9.77 3.31 9 9.89 4.01 9.76 8.3 7.63 10.3 10.1 10.2 6.67 6.64 1.37 9.51 10.5 11.8 9.18 9.39 9.11 4.29 10.2 9.64 8.43 6.15 12 8.84 10.1 0.64 1.42 4.4 10.5 2.3 0 11.3 9.09 10.4 4.94 0.64 9.09 8.01 6.92 6.97 11 10 6.62 7.3 4.15 4.24 2.59 4.89 9.12 6.9 8.66 8.57 11.3 8.63 7.4 1.69 10.4 7.65 7.57 0 2.59 5.79 2.19 1.08 7.75 3.96 8.48 10.7 6.73 8.61 9.99 10.1 12 8.18 0.64 9.13 10.2 10.8 10.1 8.91 7.89 7.95 8.31 8.67 5.37 2.59 6.64 10.5 10.8 11.4 1.69 8.22 4.91 8.24 6.58 9.19 10.8 2.12 10.7 9.76 9.85 0 10.3 10.7 7.83 5.86 7.34 7.97 5.29 13 9.95 9.37 9.45 9.38 8.21 13.1 8.61 6.13 7.79 10.6 6.69 3.47 6.27 6.48 9.06 8.77 9.35 0.64 4.86 5.67 5.57 3.85 4.36 11.2 9.58 7.48 8.74 9.63 8.55 1.69 8.62 7.98 8.96 6.07 0.64 6.72 7.9 7.3 9.72 8.01 9.04 7.47 10.2 7.46 6.4 10.4 9.16 10 12 8.39 7.34 6.33 8.4 11.2 10.1 9.45 13.3 8.75 7.75 5.91 3.79 10.1 2.45 11.7 9.97 9.66 7.62 3.61 9.43 6.64 10.9 10.3 7.89 6.06 7.56 7.38 8.67 10.3 10.1 8.47 9.42 10.2 7.01 7.87 3.79 4.39 8.54 7.02 10.8 10.5 8.16 8.88 7.69 7.44 8.13 8.66 9.88 5.86 7.78 1.69 5.41 8.36 6.25 9.33 7.32 10.6 8.74 1.18 7.68 2.45 4.99 5.5 9.98 9.93 9.04 12.2 1.92 9.21 8.55 6.94 6.72 10.4 10.2 7.62 11.7 9.99 8.97 9.48 9.69 7.83 3.31 10.1 10.8 10.2 9.65 9.12 6.73 11.1 9.41 8.78 8.65 10.5 6.57 9.17 8.12 8.51 11.3 9.34 10 10.3 10.7 10.5 5.53 10.7 4.86 8.48 8.61 9.07 9.62 6.22 4.88 9.2 9.87 8.83 10 6.54 7.97 6.83 8.95 10.6 8.16 6.9 9.41 10.9 3.14 1.08 5.86 1.92 7.49 8.18 4.01 11.7 11.8 7.74 11.3 9.68 5.62 10.4 9.71 9.2 11.1 9.84 8.56 5.09 10.9 10.7 11.8 9.29 8.5 5.7 3.67 9.23 7.32 10 8.43 0 6.17 9.35 8.9 10.2 8.94 11.5 9.46 6.6 7.45 9.72 8.91 9.83 6.94 10.1 4.68 4.11 8.36 11.7 5.52 9.32 7.24 3.85 8.84 11.1 11.6 9.18 2.72 8.88 6.46 9.34 6.09 7.54 4.65 7.44 9.13 7.38 8.74 10.5 9.89 10.5 10 7.12 8.6 11.2 7.7 10.4 5.76 9.88 0.64 7.26 8.87 8.34 7.48 3.31 12.7 7.16 11.1 15.1 7.37 8.31 11.5 8.12 6.94 3.23 8.62 1.08 5.27 2.45 5.87 10.1 9.51 6.33 3.47 5.82 2.45 10.8 8.57 8.64 10.2 9.07 11.1 7.37 1.69 11.2 1.69 8.71 8.23 10.4 6.52 8.77 8.76 3.58 9.61 8.36 6.84 10.7 10.9 6.75 6.16 9.47 0.64 4.71 8.35 10.7 0 8.87 4.28 8.78 9.11 7.45 5.52 7.41 8.55 9.75 6.63 9.09 6.84 8.08 9.11 10.8 9.84 8.94 8.35 7.96 11.6 10.1 6.15 5.37 7.31 8.55 7.27 7.54 9.53 10 5.16 12.2 10.6 10.3 7.39 9.87 9.42 11.6 9.96 11.2 1.69 8.94 10.8 1.92 8.83 2.72 8.52 8.21 5.9 8.24 5.48 4.44 6.83 5.09 0.64 0 0.64 0 7.06 11.3 3.67 9.76 11.1 9.57 8.74 9.72 6.32 7.2 8.43 6.56 11.2 2.3 10.6 3.67 8.48 9.82 8.9 6.2 10.3 9.4 3.91 9.97 1.08 5.31 1.42 10.6 7.76 0.64 10.8 6.74 3.67 10.4 10.4 7.54 9.75 10.3 8.4 5.41 10.3 7.83 4.24 7.71 9.22 5.39 12.4 9.76 11.4 7.34 9.58 9.85 11.4 8.18 11 8.56 10.5 9.37 9.33 4.36 10.8 10.1 9.13 8.97 9.95 8.81 10.1 12.3 10.8 9.17 4.48 9.88 12.5 7.24 4.24 10.3 9.14 1.92 9.85 6.24 9.57 10.3 11.3 2.59 9.08 10.3 8.12 7.16 8.76 8.96 12.1 10.6 5.63 4.32 7.13 10.3 8.01 0.64 8.59 1.42 6.83 6.75 9.26 7.83 7.9 3.54 3.14 5.95 9.13 9.09 6.18 9.1 9.47 9.03 8.08 10.9 6.72 7.16 7.13 10.7 7.81 8.85 9.09 11.6 9.07 9.42 10.5 2.45 10.6 8.37 8.89 10.2 8.19 5.7 9.19 6.94 10 7.59 0 11.7 9.69 9.53 10.4 8 9.59 11.3 9.23 5.33 11.1 9.62 11.1 6.42 3.73 10.6 14 0.64 11 6.64 10.3 8.18 10.6 4.91 6.56 0 12.2 6.36 5.86 6.99 9.48 11.1 9.24 0 12.6 8.02 8.81 8.44 4.28 8.27 9.61 4.4 4.62 1.95 10.1 9.9 8.07 11.6 6.85 10.4 8.7 9.08 9.18 11.8 10.5 0.64 8.14 10.8 2.12 9.28 6.29 6.57 2.12 5.83 1.08 10.7 8.2 10.6 5.18 7.95 9.02 10.7 0 5.09 5.41 8.43 10.3 5.18 9.06 10.1 6.02 8.66 10 4.58 7.66 11.6 7.13 9.76 5.57 6.13 7.61 10.1 7.86 11.4 10.3 1.69 8.87 8.89 3.05 10 10.4 10.8 9.95 9.75 10.4 8.42 4.74 8.95 5.01 8.52 2.59 10 10.9 4.44 11.2 8.57 6.84 5.89 9.79 10.1 11.9 8.19 7.12 9.97 9.26 3.67 7.15 5.2 6.25 8.21 0 9.38 3.54 9.16 8.34 8.52 7.63 11.3 13.6 10.7 3.14 12.6 6.28 7.32 9.91 8.99 9.51 10.5 4.74 6.77 8.6 0 10 8.32 7.09 7.9 10.1 4.55 11.1 11.9 11.1 4.01 8.08 9.62 9.73 2.45 8.88 8.45 11.5 4.2 7.4 8.28 8.75 6.53 8.49 9.3 10.8 11.4 9.66 6.03 9.56 4.36 0 8.85 11.8 13.3 7.19 10.9 7.8 10.5 8.08 11.1 10.2 9.34 5.48 1.69 11.1 9.61 8.03 8.24 4.99 11 8.24 10.3 9.76 9.86 10 10.1 11.9 9.65 10.6 7.2 10.4 9.58 9.09 8.72 9.77 7.98 11 11.5 6.48 9.59 9.6 1.69 9.84 8.51 10.2 10.4 10.8 10.7 9.59 9.34 10.9 11.8 9.88 9.45 10.3 4.8 9.06 12.2 11.6 9.83 8.42 9.44 6.34 10.8 6.84 7.85 9.02 11.3 8.98 8.54 10.5 5.2 9.06 12.2 8.45 8.75 8.76 12.5 11 4.11 10.6 13.3 6.11 3.23 12.8 10.1 12.9 10 10 9.12 7.98 11.2 9.44 10 12.5 10.6 7.14 10.2 8.09 6.51 8.87 5.01 6.97 2.72 8.91 7.02 8.56 11.6 4.15 4.15 9.83 10.1 8.65 10.9 9.99 8.01 12.8 12.9 13.5 9.43 10 10.9 9.75 5.93 7.15 8.73 5.86 10.4 10.4 8.42 9.67 9.9 9.37 7.51 10.6 13.4 9.63 7.9 10.2 10.6 8.16 10.7 7.16 10.9 14.2 9.87 2.45 11.1 9.36 9.37 9 8.87 7.78 9.69 9.92 10.2 7.59 10.7 9.49 9.2 11.1 12.3 6.08 9.52 12.2 7.72 11.2 8.54 9.26 9.58 11.2 10.3 11.3 10.9 1.08 6.24 8.16 7.68 10 9.78 12.2 8.91 2.12 9.76 4.69 11.1 6.45 9.99 9 7.82 5.16 8.92 2.95 8.08 9.23 14 3.54 4.36 10.1 8.67 9.27 11.2 9.62 3.31 9.54 9.51 8.95 10.4 6.11 9.18 11.4 8.4 8.83 9.76 7.02 13.4 9.53 8.81 7.21 11.2 9.35 9.51 9.25 14.1 5.77 8.02 6.92 9.12 9.06 10.2 9.64 10.3 4.74 13.1 7.07 7.74 10 10.4 8.25 8.37 13.6 9.7 8.9 10.7 11.5 10.7 11.1 11.1 9.43 10.1 6.77 11.9 9.68 12.6 5.8 11.6 10.1 7.09 8.15 9.55 10.1 10.5 11 8.81 11.2 10.6 7.32 10.5 11 6.42 9.99 12.2 12.2 11.6 14.1 10.7 1.69 11.2 11.3 10.3 11.4 8.02 10.5 8.54 10.9 10.2 8.95 10.9 10.2 10.3 8.19 8.41 10.2 6.33 11.6 5.7 9.73 8.78 8.43 2.37 8.36 1.42 7.79 8.14 10.3 9.76 4.11 8.38 9.36 9.68 8.71 8.93 9.56 7.26 8.62 8.39 9.74 11.2 8.53 7.82 2.59 9.65 9.65 11.6 6.61 10 10.3 6.75 9.17 8.87 11.2 10.7 9.48 8.77 9.64 11.2 9.89 9.88 10.4 12.1 10.1 10.3 9.65 8.11 10.1 9.32 11.2 9.07 10.2 9.23 10.8 9.17 12.1 8.12 11.8 9.96 9.05 8.34 9.89 11.5 7.55 8.84 6.89 6.7 14.4 9.7 9.23 10.1 8.88 9.67 11.1 9.97 10 7.51 5.95 7.99 10.2 2.95 10.2 10.6 10.2 11.8 8.36 11.7 10.6 9.77 9.37 9.13 10.9 11 7.83 10.6 7.3 10 10.3 5.82 10.3 9.54 6.78 7.99 10.7 10.6 4.28 7.68 6.14 10.4 12.4 8.35 12.6 8.96 6.36 10.2 3.85 7.17 1.69 6.59 9.78 10.8 9.05 12.5 10.3 2.3 3.31 11.6 9.66 10.6 10.2 2.89 10.2 9.38 8.57 8.58 9.97 12.5 8.85 9.07 9.32 8.73 11.8 10.3 11.3 8.08 8.55 11.2 2.45 11.3 8.66 9.23
-TCGA-VN-A88M-01 5.56 4.67 4.02 10.1 7.18 7.8 3 3.73 3.86 3.52 4.92 10.2 4.89 0 3 9.54 9.97 9.37 4.92 8.72 11.3 8.13 8.75 3.2 9.74 8.4 1.84 10.3 5.09 7.71 5.77 6.48 3.89 0.66 4.34 3.1 2.5 4.99 2.89 4.3 6.72 4.77 3.2 0 5.79 3.66 1.12 6.37 12 8.47 6.15 7.2 9.85 10.4 5.69 1.12 7.76 1.74 7.75 6.94 8.24 6.81 7.12 7.79 3.45 2.89 5.91 9.21 10.1 5.46 4.71 7.47 1.12 6.42 6.74 4.8 6.18 6.36 2.89 4.54 5.7 4.12 2.77 6.43 10.7 0 5.85 4.97 6.65 4.94 11.5 6.22 6.1 7.61 7.05 4.26 0.66 2.17 4.25 0 4.07 5.24 0.66 4.84 2.02 4.89 8.34 8.91 9.27 3.73 0 0.66 7.69 0.66 5.55 2.17 1.21 1.97 4.22 5.12 6.24 6.37 0.66 5.02 1.12 7.93 1.74 3.79 1.12 12.7 3.59 4.54 5.26 7.15 3.1 2.35 4.95 4.12 2.89 9.9 8.62 9.77 0 4.54 4.16 11.6 0.66 11.3 1.46 5.56 5.65 0 8.17 8.77 11.8 2.5 5.26 5.83 7.2 5.3 9.07 6.59 6.91 2.77 11.5 8.12 8.65 2.5 5.58 1.74 10.9 9.24 2.77 8.36 5.02 3.37 6.16 3.79 6.95 6.18 5.22 8.55 4.8 4.07 4.42 4.38 2.17 0 9.5 6.14 8.91 7.63 3.79 10.2 5.1 4 5.07 8.64 8.29 7.18 3.52 10.7 9.38 10.6 7.18 9.08 4.92 9.99 9.72 7.5 6.15 11.6 10.9 9.98 10.4 8.88 10.3 10.6 5.59 9.83 8.11 10.8 11.3 10.5 7.79 8.25 5.22 9.91 9.09 11.7 8.13 2.5 10.2 10.8 8.82 5.82 11.7 3.66 9.81 3.45 7.41 6.36 10.9 11.9 12.7 10 11.4 11.8 4.02 11.4 6.53 3.37 6.23 11 9.57 14.8 9.72 11.2 0 11 3.2 9.44 4.94 10.7 7.41 9.9 7.43 11 11.5 7.31 7.47 4.16 9.62 9.59 10.9 7.74 3.6 12.7 11.3 8.39 13 10 11.1 8.11 9.62 11.8 10.2 9.78 10.8 10.6 3.6 4.67 9.3 6.95 10.2 10 2.5 12.7 8.8 9.29 7.15 11 11.6 10.9 11.7 11.5 1.46 9.25 8.79 8.04 15 9.08 2.17 8.29 7.15 11.7 9.86 7.28 8.41 9.53 11.5 11.7 7 8.55 11.3 10.1 11.2 8.89 10.7 9.5 10.2 8.15 10.7 5.43 10.7 9.62 8.32 7.87 7.47 6.3 11.6 10.3 9.88 10.3 8.62 14 8.84 9.25 11.9 10.2 10.1 4.08 10.1 6.2 3.2 9.56 9.44 12.6 0 7.52 4.77 10.5 11.8 9.83 9.84 7.5 7.15 5.76 7.7 5.74 6.6 11.8 9.98 11.3 10.5 5.92 8.19 10.6 4.21 8.7 8.63 10.6 8.71 9.72 10.5 11.3 5.17 9.24 7.91 9.97 9.92 13.6 10.1 8.27 2.5 11.1 11.1 6.91 7.62 12.8 7.71 11.1 10.2 9.58 8.97 11.4 8.09 11.6 9.92 8.26 6.98 9.29 10.9 9.23 8.6 12.3 8.95 9.81 6.64 3.96 8.75 6.2 8.11 11.3 5.73 10.7 10.7 10.6 5.03 12.2 10.4 11.9 6.24 9.31 5.92 7 8.72 6.98 6.33 8.72 10.7 11.3 9.95 4.12 10.9 7.41 6.14 9.15 14.4 9.46 4.22 7.76 3.37 12.3 8.54 8.54 4.02 11.6 3.2 2.5 8.12 11.1 11.2 4.34 8.3 7.14 4.77 4.12 7.16 8.64 6.34 9.14 9.76 5.64 13.1 8.34 9.35 10.2 9.81 3.85 12.5 10.8 1.12 8.52 9.56 8.77 14.3 7.12 6.95 5.37 5 8.7 8.72 5.63 13 7.09 6.86 7.31 10.9 16.1 13.3 16 9.67 9.38 9.98 10.2 6.15 4.92 8.78 8.48 0 11.2 1.12 12.3 9.6 10.8 10 13.1 6.69 10.1 9.42 10.7 9.66 11.4 10.3 10.4 8.28 9.64 9.95 6.13 10.7 10.3 11.1 10.1 9.92 8.58 7.23 8.26 9.26 10.7 11.3 10.5 3.96 9.38 7.07 5.41 10 5.61 11 10.1 10.8 10.8 8.77 12.1 9.18 7.49 8.6 3.37 10.4 8.85 9.27 10.2 11.2 4.94 10.2 9.45 10.7 9.96 9.27 12 8.65 12 10.8 9.46 6.81 11.9 11.5 10.9 8.32 1.74 11.8 10.4 11.3 10.7 11.6 11.7 11.5 11.1 7.87 11 10.7 6.89 7 10 7.26 6.62 5.97 9.55 11 9.82 11.2 9.95 10.9 9.54 1.46 6.22 12.4 12.2 7.98 13.4 11.2 10.9 10.2 12.7 9.71 10.9 11.1 10 0 10.8 9.46 9.3 8.07 8.61 7.71 4.54 9.54 9.88 11.2 11.2 10.8 6.39 11.1 11 10.6 13 11.1 8.81 9.89 10.4 8.59 8.43 9.86 9.63 4.26 9.57 8.12 7.2 4.77 10 9.78 3.52 11 0 9.51 10.3 10.6 10.5 12.6 11.4 11.5 11.8 4.46 11.1 3.2 9.3 10.2 10.4 2.64 11.4 10.8 11.4 11 10.8 7.56 12.5 3.2 8.87 11.6 8.74 9.69 9.58 5.93 10.4 12.2 10.7 12.1 9.66 6.62 15.4 9.35 8.94 10.2 6.32 11.3 10.1 11.7 4.83 7.48 7.8 5.35 7.83 10.8 7.23 12.7 13 9.51 6.75 7.86 12.2 3.52 9.49 5.58 8.12 4.07 8.11 9.76 9.19 2.17 4.21 12.7 5.73 9.99 11 13.7 10.1 8.44 11.7 10.4 8.23 9.12 0.66 5.22 10.1 1.97 7.31 7.5 9.68 10.7 8.86 9.73 1.46 5.26 3.6 7.78 8.35 10.6 3.52 2.5 10.1 6.22 1.97 6.87 12.3 11.6 4.8 7.59 8.77 3.85 9.27 9.73 7.49 6.5 8.33 13.9 3.79 10.6 11.9 10.1 11.7 12.4 8.64 11.1 8.03 5.05 2.84 10.9 5.15 5.43 10.7 2.4 8.46 9.17 9.92 0.66 7.35 7.75 2.64 4.61 12.3 7.88 5.02 7.56 11.4 8.77 0 10.2 9.62 10.6 11.4 9.01 11.1 8.08 10.9 10.4 7.64 9.09 10.7 9.43 7.25 10 8.86 9.59 7.28 10.9 11 8.21 6.8 5.82 7.58 9.86 7.18 5.61 2.64 12.7 9.08 0 4.34 8.52 9.58 9.68 12.3 10.4 9.13 9.13 4.34 7.61 8.47 8.49 4.74 7.91 8.53 10.2 0 8.99 4.38 11.2 8.97 7.18 11.4 9.95 9.02 1.97 11.5 10.9 5.26 2.77 6.38 4.89 8.86 7.6 10.9 10.4 10.4 5.66 0 10.2 0 7.6 0 3.66 8.7 9.22 1.74 1.97 11.2 4.83 11.3 9.73 4.12 1.12 10.8 9.27 11.8 7.84 4.12 9.98 9.95 4.94 11.1 8.01 9.72 10.4 9.58 9.45 4.42 11.7 3.29 11.7 10.1 13.2 0 10.7 9.41 11.9 11.4 11.6 8.69 8.07 10.7 10.8 11.3 1.46 11.6 1.46 11.9 1.74 9.56 9.88 6.95 2.64 8.26 11.9 12.7 10.5 8.56 9.68 12.6 7.7 10.4 12.1 9.82 11.5 10.2 13.1 10.9 13 12.1 12.7 5.88 11.7 7.56 8.52 9.46 10.2 11.3 13.1 13.1 8.68 13.7 11.7 7.69 8.43 11.5 6.05 8.19 11.4 6.97 11 10.2 10.5 9.78 1.46 2.89 12.2 3.29 9.28 8.2 10.1 8.62 8.01 4.77 3.79 9.61 0 1.97 6.83 9.13 10.4 13 8.98 9.96 9.49 9.84 6.98 8.74 9.99 9.75 8.5 0.66 2.5 0.66 1.46 9.37 7.83 5.84 12.7 3.73 10.3 6.13 7.55 9.53 8.79 8.85 5.76 8.89 11.7 9.08 10.5 10.8 10.9 8.57 12.3 10.8 11.3 10.9 7.53 2.64 7.52 6.43 10 9.44 9.34 7.3 12.7 10.8 8.46 8.66 7.24 3.85 11.1 12.5 11.3 5.97 3.91 10.6 10.2 7.16 6.72 10.7 6.42 4.64 9.25 11.1 7.91 12.6 6.37 8.67 9.18 7.51 4.3 8.97 7.44 10.1 5.68 7.69 9.85 8.07 7.96 9.79 8.55 6.87 9.86 2.77 8.04 7.89 10.4 10.8 6.35 2.17 9.5 8.04 10.2 4.12 9.19 11.7 9.6 12.2 9.63 9.63 2.17 9.13 7.29 8.14 0 7.5 7.6 10.9 5.56 5.61 6.39 11.7 8.21 8.43 8.58 3.2 10.5 11.1 6.69 11 9.29 8.32 12.6 9.58 5.1 1.97 10.2 10.7 5.02 3.66 11.2 9.86 5.61 8.44 0.66 12.7 4.86 9.57 5.5 7.44 9.14 11.3 11.9 1.97 11.1 9.33 7.6 8.52 9.4 10 10.8 11.1 9.06 6.78 10.1 7.2 7.62 9.33 6.8 11 9.44 7.81 6.51 8.35 2.51 7.82 6.57 11.2 5.58 14.8 3.79 3 8.98 7.39 8.55 11.7 6.95 7.97 8.57 9.43 6.99 9.52 10.4 6.23 9.11 4.42 10.5 9.31 6.79 7.8 6.26 6.31 8.69 6.52 10.8 9.08 11.8 2.77 3.53 9.92 11.2 10.5 8.5 9.43 7.72 4.89 10.6 6.24 11.4 8.79 8.13 3.66 9.77 7.62 10.1 9.31 6.84 7.5 5 8.95 8.12 11.3 8.26 7.47 8.81 4.3 10.1 10.9 11.5 6.88 4.94 2.5 8.03 2.96 11.1 10.9 8.62 6.98 9.66 9.33 9.03 11.5 10.9 10.4 9.45 7.24 6.24 7.17 9.68 7.14 7.24 7.48 9.27 2.77 11.4 5.47 4.42 6.1 13.1 6.05 12.7 8.42 7.29 11.6 7.64 0 9.85 9.08 0.66 9.53 11.8 8.88 9.6 7.71 9.99 11.8 11.7 9.44 4.83 7.96 3.45 7.3 10.3 9.19 1.46 12.9 8.64 11.7 9.86 11.6 10.1 13.7 12.1 3.78 8.8 9.73 3.1 10.9 10.2 9.91 9.38 8.17 11.3 6.68 10.7 7.68 9.54 7.39 3.96 4.12 7.66 8 10.3 8.46 1.12 2.35 7.2 8.79 5.24 7.36 7.06 11.3 1.74 9.01 0.66 5.97 7.94 0.66 4.92 11 4.12 2.64 2.17 6.26 8.47 3.45 1.12 8.39 3.74 4.12 2.77 0 7.07 3.45 8.49 7.37 8.24 7.89 4.42 0 9.49 7.65 2.5 11.1 4.21 9.51 8.52 8.91 3.66 9.27 5.71 7.48 9.06 4.12 4.07 6.58 9.02 9.21 5.58 6.83 6.34 7.04 10.7 12 0.66 8.73 7.54 2.17 4.71 8.94 10.5 5.15 9.31 9.12 11.4 7.85 7.1 8.87 4.38 8.7 4.12 6.63 5.52 9.51 12.6 10.1 9.42 8.2 11.1 10.7 10.4 2.64 11 9.25 7.51 4.46 0 10.3 10.3 8.07 8.48 2.89 4.64 6.9 14.3 8.09 9.18 9.18 1.97 1.74 8.2 6.54 11.4 14.2 6.95 0 2.17 8.76 7.19 4.67 8.07 7.11 8.38 8.9 10.7 5.19 9.47 8.24 5.73 5.96 0.66 1.46 7.26 2.35 8.74 9.57 10 2.77 9.31 2.64 4.46 4.46 9.58 7.6 0.66 5.15 10.5 3.29 8.4 8.09 2.5 4.97 6.33 9.17 9.83 9.05 4.3 9.01 7.01 11.6 8.05 11.3 7.67 10.3 12.2 1.12 7.07 0 8.36 9.68 10.7 6.91 9.35 8.66 12.3 7.3 8 6.68 1.46 5.3 0 7.99 7.56 4.02 8.21 5.97 0.66 10.1 2.5 0 9.16 12.1 8.01 10.5 10.6 1.97 5.74 4.16 5.96 9.72 8.8 3.96 6.43 5.99 5.19 4.42 9.54 7.17 10.7 4.98 8.4 11.3 7.75 1.12 8.53 6.39 0.66 5.17 10.3 8.31 2.5 10.4 5.58 5.07 4.12 12.7 10 11 0.66 5.41 5.47 10.2 9.86 6.46 4.38 12.2 1.12 7.15 9.64 5.96 6.68 10.8 6.67 10.9 0.66 5.95 2.89 9.08 1.46 11.5 10.3 8.14 7.36 8.8 11.1 6.21 4.64 1.12 7.84 8.13 9.57 8.14 8.67 7.24 9.77 7.42 4.02 9.39 10.2 11.6 13.3 5.35 1.74 7.74 6.75 6.99 0 11.7 11.9 9.65 6.31 9.87 3.73 7.69 10.7 9.19 11 9.88 10.4 7.31 3.52 9.32 7.93 9.36 5.48 4.59 5.59 7.95 9.3 10.9 3.6 5.48 11.9 1.12 3.45 8.41 12 10.7 8.04 8.67 0 5.35 12.7 0 8.09 7.1 5.35 5.91 8.11 9.07 8.17 9.33 9.4 2.17 1.46 1.12 8.19 2.17 8.1 3.66 7.65 6.36 8.84 9.09 4.97 6.41 10.1 6.38 6.51 7.84 8.4 8.29 2.77 7.12 8.9 4.86 9.51 3.45 9.6 11.2 2.17 11.9 5.89 9.46 0 8.24 5.66 8.44 8.82 1.46 7.36 4.64 3.98 5.39 4.5 8.84 6.55 0 8.52 7.09 2.64 8.78 9.47 2.77 6.98 3.27 9.33 0 5.71 9.16 6.4 4.64 7.8 7.21 8.21 10.6 2.5 9.68 9.71 7.23 3.1 10 9.67 8.21 11.7 9.42 2.35 8.42 8.88 7.69 12.1 12.7 1.46 2.77 9.06 9.64 8.58 5.12 3 6.09 9.35 8.49 7.16 2.64 3.45 6.16 1.74 8.19 9.05 9.32 10.5 7.7 5.96 6.49 5.19 9.53 8.76 5.05 9.75 10.6 5.57 5.07 13.6 8.9 8.55 0.66 7.59 0 8.48 8.69 4.38 7.69 6.49 6.62 11.2 1.74 10.7 11.2 5.82 3.79 6.36 7.25 5.99 8.31 7.5 10.2 8.13 4.77 8.32 4.92 2.35 10.3 3.91 2.77 1.97 5.61 3.1 6.54 9.93 10.7 6.66 4.16 10 10.9 6.62 12.1 8.5 4.3 7.8 6.98 9.41 10.3 3.45 6.32 5.61 10.4 8.28 3.45 10.7 5.83 3.1 3.6 5.52 9.12 12.5 7.62 8.28 10.4 4.8 0.66 8.5 1.46 3.96 0.66 8.85 2.35 8.5 0 2.64 6.62 10.2 4.07 8.98 0 2.89 10.6 11.1 5.43 5.74 9.66 4.07 1.12 7.55 6.23 7.18 0 9.85 11 7.78 7.98 3.91 11.3 10.6 3 1.12 5.73 5.99 2.35 11.2 8.76 8.08 8.97 10.2 5 7.71 9.71 0 10.4 3 5.28 11.3 7.73 10.1 1.12 9.32 8.21 5.35 7.91 10.8 11.9 10.2 4.26 1.74 6.17 4.3 5.71 3.2 10.2 10.3 2.64 6.66 4.3 2.64 11.6 9.38 8.81 10 8.07 7.62 6.39 7.2 10.8 9.46 12.3 9.87 4.38 10.2 9.31 10.3 8.34 7.37 6.26 4.92 7.81 9.38 6.3 6.08 11.5 8.9 10.2 8.09 13.1 6.29 3 7.74 7.72 8.74 7.15 3.79 4.12 7.45 11.4 1.46 5.12 7.02 5 5.45 9.05 7.98 7.47 4.26 3.1 7.87 9.87 8.65 0 9.89 6.07 6.19 8.03 8.34 7.41 9.41 9.83 9.4 4.26 7.83 1.12 8.12 4.89 9.62 6.83 9.18 2.5 2.17 1.12 11.4 8.11 8.75 8.89 10 9.86 12.1 12.5 8.79 0 8.17 11.6 0.66 7.35 9.19 8.28 11 10.2 8.78 0.66 9.37 6.83 1.97 9.59 1.12 0.66 8.21 8.26 7.31 6.19 7.76 8.89 0 2.37 7.59 10.4 6.72 6.24 1.12 6.13 3.52 5.85 7.86 5.41 13.2 8.75 8.69 9.01 5.3 12.1 2.89 7.12 2.35 6.81 7.4 3.91 5.17 6.37 2.89 11.3 2.64 6.26 11.1 9.51 12 8.98 1.12 2.89 9.07 3.37 12.5 4.94 8.22 8.25 10.2 5.71 8.55 0 6.7 8.03 6.25 8.95 3.29 9.44 11.9 8.44 3.96 11.2 10.2 7.44 7.95 11.6 5.33 11.4 9.01 6.17 12.6 11.9 7.8 10.1 3.28 7.02 7.48 6.92 1.46 11.3 6.85 10.2 2.35 9.83 4.12 0.66 7.18 3.45 2.77 7.2 2.5 11.5 9.37 0 12.7 0 3.66 12.8 13.1 11.7 9.35 7.85 4.26 4.83 5.93 8.32 5.37 1.74 5.26 10.6 9.04 9.91 9.79 7.99 8.91 2.17 2.77 9.56 8.95 0 1.12 11.3 3.91 0 11 1.12 1.97 3.6 6.97 5.61 6.38 7.84 0 9.66 11 8.71 3.45 2.64 9.52 7.8 6.63 8.15 10.4 9.89 1.12 11.2 10.4 8.83 4.57 8.88 6.91 2.35 5.93 4.54 8.74 8.46 7.61 11.1 4.86 6.21 0 8.64 5.26 8.7 10.2 12 3.52 6.34 5.06 9.59 8.52 9.07 5.39 9.36 12 0.66 5.86 4.67 7.91 3.37 6.7 9.7 9.21 7.46 5.17 9.81 5.91 0.66 1.15 8.59 2.65 2.35 4.46 8.72 9.8 8.3 5.39 5.96 9.27 4.03 7.64 10.8 3.73 9.41 2.64 0 9.12 10 3.29 9.5 11.6 3.24 7.03 6.81 2.89 5.48 6.13 7.73 5.77 10.6 1.12 10.2 0.66 8.62 8.7 0.66 3.29 11.2 9.78 4.57 4.46 3.79 3.85 0.66 4.73 9.4 5.19 9.17 0 8.62 9.35 9.03 11.5 8.17 9.07 11.2 7.49 7.57 9.93 10.8 9.45 6.11 8.47 7.51 3.2 5.8 8.56 5.5 3.79 4.16 5.02 6.98 7.58 8.7 4.64 6.14 4.8 2.77 8.67 4.42 7.33 9.41 7.16 7.23 4.99 1.12 3.1 7.92 7.87 4.12 4.86 11.5 9.32 6.79 9.53 4.67 1.46 5.58 2.89 3 11.1 4.5 1.97 5.53 5.5 5.35 9.75 4.97 9.67 6.99 11.9 8.55 7.38 12.7 0 3.66 8.51 12.3 1.12 7.1 12 3.45 0 9.51 5.17 10.8 4.07 5.85 8.48 7.83 9.11 9.82 7.82 8.51 6.83 3.88 10.1 8.12 5.15 4.26 8.6 4.21 5.07 12 8.23 4.26 9.15 0.66 2.17 8.62 7.14 6.94 1.12 11.7 1.74 5.37 3.29 4.97 2.17 7.64 6.73 5.47 10.1 3.37 13.1 7.96 8.89 5.22 4.67 4.42 7.89 5.43 11.3 8.71 7.96 6.86 2.17 2.89 4.07 6.76 0 0 11.8 0 2.64 2.64 1.97 4.8 0 8.31 3.79 2.17 10.2 3.34 9.13 3.45 11 8.39 6.17 13.5 2.89 6.26 6.05 9.18 8.8 8.18 8.75 1.12 1.46 1.12 0.66 7.58 9.98 5.68 5.66 12 8.2 6.68 9.14 3.29 3.52 6.45 6.84 7 7.88 1.46 9.28 5.45 9.61 3 11.6 7.87 10.9 9.96 8.09 7.42 1.74 0 9.53 6.77 10.6 6.28 6.25 9.57 6.16 5.97 9.3 6.53 8.53 9.28 5.41 7.29 4.71 5.5 7.97 5.95 1.46 8.26 6.22 6.74 9.26 3.1 8.46 5.89 6.23 4.71 2.35 5.39 13.2 0.66 6.24 7.3 9.47 6.84 8.51 9.03 6.52 8.82 10.2 5.3 1.97 12.5 3.73 2.17 6.11 9.5 11.3 6.35 1.97 9.86 7.27 6.21 7.86 5.82 10.1 9.44 0 10.2 7.88 4.8 5.88 8.51 0 3.2 4.42 7.69 8.34 8.14 5.15 0.68 7.86 9.14 1.97 4.8 12.9 11.8 1.97 8.38 3.6 7.52 12.3 10.6 10.7 1.12 8.64 12.4 1.74 4.94 11.8 0 0 3.1 0.66 3.99 2.17 9.54 8.66 0.66 9.01 9.66 4.74 8.43 8.66 2.03 9.02 5.92 8.83 4.74 7.63 8.17 2.5 8.39 2.5 9.17 3.45 6.18 3.97 10.3 8.94 11 6.35 7.04 6.07 8.4 3.52 10 8.11 12.1 10.3 12.9 7.2 3.45 1.46 5.45 9.53 8.72 5.66 2.89 9.47 0 7.97 7.84 8.23 11.5 6.81 1.12 5.48 1.12 7.02 4.61 7.51 3.37 7.1 9.97 6.69 10.8 1.97 5.93 2.64 4.46 8.35 5.33 7.81 0.66 5.17 7.36 9.46 10.4 2.5 3 3.29 0 5.17 0.66 8.22 1.74 10.5 10.3 4.42 6.54 7.96 7.47 8.36 9.48 11 6.7 4.3 4.61 7.86 3.85 10.5 8.44 7.22 7.48 11.4 1.46 9.26 6.2 11 6.93 7.13 3.79 3.2 7.29 7.97 10.1 7.78 3.29 6.74 3 8.28 3.6 8.42 6.51 3.66 11.2 8.6 3.2 5.96 8.56 7.91 10.7 7.25 9.52 6.99 7.1 8.23 10.7 7.82 7.78 12.8 7.92 7.53 8.59 9.92 8.45 5.37 4.94 7.98 0 3.45 5.47 11.9 9.04 5.12 3.66 7.74 3.79 9.55 10.2 9.16 8.13 9.04 1.97 9.84 6.49 1.12 4.89 1.97 1.32 8.71 9.95 3.91 0 7.89 2.98 0 11.3 6.83 0 9.77 10.7 3.59 4.02 7.53 0 6.11 5.91 8.51 9.02 12 0.66 0.66 8.23 8.59 6.15 8.93 9.68 3.96 2.89 12.9 5.58 5.39 9.76 8.24 0 8.86 6.62 2.77 8.03 8.09 8.79 3.2 6.03 0 10.3 6.42 9.15 9.52 7.82 7.61 1.97 9.88 0.66 5.43 1.49 6.94 8.83 4.86 10.3 0 1.74 4.97 8.06 5.17 5.96 7.3 6.14 0.66 3.85 7.07 7.32 2.17 10.6 2.77 8.92 1.74 4.97 4.42 0 3.66 7.75 6.31 9.06 4.42 8.22 8.06 0 6.99 5.12 0 1.97 4.54 1.46 4.16 4.83 5.67 6.36 9.91 6.43 9.16 5.05 10.1 0 2.5 9.53 4.8 4.21 10.8 3.29 2.89 11.7 10.5 2.64 8.45 2.35 8.03 0.66 0 11 8.4 1.12 1.12 7.02 9.06 0 3.6 11.5 6.56 8.57 7.76 6.65 3.37 3 6.62 7.7 8.94 11 12.3 4.92 7.36 2.5 7.34 10.1 5.12 3.66 11.6 10.1 3.79 6.89 6.31 5.37 11.2 0 6.1 10.1 0 2.89 7.54 3.73 4.26 6.21 1.12 8.29 12.3 10.3 7.57 12.8 6.51 6.78 6.25 3.29 11.4 2.89 2.17 4.5 1.74 7.42 0 7.1 5.37 4.38 10.5 8.24 9.79 6.54 8.15 6.79 8.78 6.51 8.04 4.92 9.9 6.39 1.12 11.7 9.34 6.28 7.62 6.9 7.15 2.17 6.81 5.69 3.79 9.09 8.13 7.47 8.96 10.6 11.7 0 7.55 7.81 3.53 8.09 0.66 10.8 4.89 11 6.09 9.15 1.74 7.78 8.71 0.66 4.46 7.25 8.69 8.81 11.5 11.1 2.64 8.43 1.12 12.4 2.5 7.86 1.46 1.74 4.42 6.25 3.52 3.66 3.03 0.66 1.12 2.64 7.99 9.11 8.62 11 13 6.48 2.35 4.83 2.35 11.4 6.16 11 7.41 12.3 13.8 0.66 1.46 12.1 1.97 7.8 10.8 0 8.35 0.66 5.12 14.1 11.4 1.97 8.42 7.51 6.66 1.74 7.25 6.21 10.9 10.9 6.72 10.3 7.46 7.09 7.52 7.27 8.57 9.13 0 9.21 4.02 9.09 4.21 13.6 2.64 0.66 8.67 4.64 8.23 2.17 5.43 7.13 6.78 4.16 7.38 0.66 8.79 8.06 0 3 6.38 7.19 7.73 4.02 5.35 8.78 8.6 8.27 5.77 3.91 0.66 7.46 9.37 5.97 3.52 5.54 8.73 4.83 1.46 4.92 1.12 6.11 0.66 1.46 10.8 9.77 8.99 9.2 5.54 1.12 10.6 8.08 2.64 1.12 6.09 0 8.4 8.04 7.01 9.4 6.55 9.9 2.77 9.98 9.97 3 6.91 0.66 6.26 12.9 6.42 10.3 1.74 10.7 8.88 10.6 11.1 14.3 6.52 8.19 8.5 10.8 12.4 9.36 10.3 7.71 7.47 1.97 7.78 11 9.3 9.87 9.97 6.84 10.6 6.27 10.5 10.4 7.26 0.66 6.03 9.45 7.33 8.28 6.72 4.64 9.67 8.99 5.24 5.95 7.56 6.72 4.97 8.09 8.99 4.12 1.46 9.64 12.8 9.79 5.85 10.1 11.1 11.5 8.78 7.04 8.9 5.19 10.3 4.57 4.64 6.19 9.69 10.1 10.9 1.12 10.7 9.22 11.8 6.96 8.17 10.3 1.12 9.2 3.37 0.66 10.4 11.4 5.61 4.26 12.3 11.6 7.58 11.6 9.24 12.1 12.9 11.4 7.74 10.1 8.73 7.14 8.92 6.63 12.9 7.91 10.2 6.38 8.21 8.6 9.35 7.09 7.68 1.74 10.2 12 9.74 11.1 10.3 9.94 6.7 3.29 3.66 8.42 10.1 7.25 8.13 10.1 6.11 5.76 13.3 0.66 8.26 12.6 12.6 7.7 7.81 6.89 7.98 7.61 7.44 8.24 6.11 7.25 12.7 6.87 9.29 11.2 16.9 3.6 8.39 8.27 11.3 7 7.25 8.57 12.3 14.3 15.5 17.2 10.7 11.5 5.45 8.42 5 8.41 10.5 4.67 8.22 5.69 7.88 10.6 10.4 8.69 7.34 13 7.55 5.05 9 8.45 8.63 2.5 6.81 8.15 4.02 6.87 4.86 7.32 8.98 2.77 7.86 10.6 9.55 1.97 8.89 9.04 9.16 9.93 4.71 8.36 8.76 9.45 0 10.3 7.7 8.85 5.56 12.6 3.29 6.74 6.62 4.15 0 5.5 1.95 8.18 3.79 6.37 8.49 9.32 5.66 14.2 4.89 8.83 9.84 5.83 5.88 11.2 13.1 7.61 13.6 8.83 11 10.6 12.8 13.3 11.1 13.8 0.66 6.1 1.46 6.01 4.34 6.19 11.4 1.12 0 0.66 8.68 1.12 9.29 6.64 4.02 2.77 10.2 6.75 7.77 8.23 3.2 9.53 5.88 8.27 7.22 12.2 9.08 1.12 10.2 12.1 11.2 6.05 1.12 3.1 9.71 9.07 3.66 6.74 10.8 6.5 2.17 1.12 3.73 11.6 9.88 5.91 9.81 6.69 1.53 9.12 0.66 7.81 2.64 6.19 0 0 2.77 9.75 8.97 6.69 3.91 9.29 9.97 9.94 6.33 8.85 7.47 4.51 3.37 6.98 7.45 7.74 8.35 7.83 11.7 6.48 8.34 8.81 7.66 10.9 10.8 7.01 8.89 7.86 8.75 8.75 8.44 3.37 9.56 8.17 4.26 11.5 10.1 8.26 7.58 8.71 6.78 0.66 11.7 2.17 7.58 3.79 8.66 1.97 5.83 7.58 5.22 9 0 1.46 8.72 8.53 3.79 0 12.6 7.55 4.21 3 4.26 3.85 10.4 10.3 9.48 6.48 12.4 8.82 6.3 6.98 6.05 8.72 5.33 10.6 10.1 1.74 13.8 2.35 6.65 1.74 0 0 7.26 6.77 9.32 5.15 12.1 11.2 8.45 8.03 8.52 9.64 13.6 9.29 3.29 4.57 5.15 10.7 8.93 4.12 7.77 8.5 9.34 8.21 10.6 3.6 10.7 8.25 11.3 6.7 6.33 9.66 9.35 7.51 5.05 10.3 11.3 9.77 7.47 8.26 1.74 7.81 2.5 6.07 1.46 9.8 10.2 6.82 8.68 10.5 11.3 11.9 8.76 11.2 8.52 5.86 7.09 8.91 8.86 0 7.04 8.97 10.7 7.61 11 11 0.66 9.73 12 4.61 0 12.3 10.7 9.03 1.46 12.9 4.86 8.82 9.84 7 10.5 7.56 9.75 13.7 11.9 11.6 5.54 11.9 10.7 6.6 10 9.56 4.26 10.4 1.97 10.6 9.8 11.6 9.67 8.13 8.46 10 5.64 5.59 5.3 4.21 6.41 0.66 9.69 8.73 6 5.48 6.23 10.7 4.21 12.7 8.44 10.6 2.77 8.97 9.2 5.45 10.4 11.6 5.35 9.29 6.82 0.66 9.06 8.51 8.67 5.61 13.9 10.8 1.97 7.8 7.39 11.1 6.07 6.23 11.8 1.12 0 9.68 6.69 8.37 5.05 7.76 6.96 5.92 3.85 12.3 13 7.43 9.68 9.84 9.82 2.17 9.23 7.86 9.65 11.6 6.55 5.41 10.8 6 5.98 5.61 15.7 10.2 12.2 0 3.37 8.63 4.83 7.74 9.58 0.66 7.59 14.2 4.07 8.02 9.88 7.28 10.6 6.21 3.79 7.62 8.15 6.07 8.07 9.29 7.56 9.66 8.15 1.74 6.37 8.76 7.85 13.3 7.73 3 10.6 4.83 4.54 8.6 9.38 8.03 0 4.16 3.73 3.2 5.58 8.58 3 7.89 11.8 8.61 5.07 2.5 0 1.12 3.52 3.73 8.69 4.97 5.89 6.55 0.66 0 3 7.81 6.62 7 10.6 6.14 3.85 12.6 6.4 5.69 3.29 4.12 9.47 9.87 5.07 10.8 9.15 7.66 5.85 11.6 9.09 8.26 4.92 10.5 7.64 9.78 2.77 6.28 7.57 10.8 3.66 7.7 6.28 4.26 8.86 6.31 6.58 0 1.74 4.86 5.3 8.93 1.46 2.91 4.21 6.71 11 5.47 8.89 10.4 1.97 7.83 6.97 8.73 2.5 7.5 2.89 3 10.6 8.09 1.74 9.53 8.18 8.22 8.09 3.45 9.77 10.5 7.18 1.74 10.1 5.66 11.5 12.3 8.96 8.63 7.83 8.97 8.57 10.4 7.12 10.1 5.12 4.71 7.66 11.3 8.55 8.58 6.85 2.64 8.24 6.83 4.07 6.58 10.7 7.81 1.74 0 4.83 1.74 0 4.83 9.18 0 1.97 4.92 1.74 3.29 5.47 7.48 4.46 6.98 11.7 9.04 8.87 5.5 8.02 9.27 8.75 9.08 11.3 4.46 8 8.15 6.6 0 3.37 4.97 0 1.46 3.45 10.1 4.5 14.3 9.7 9.96 1.97 7.43 6.1 6.14 10.4 6.25 9.3 8.87 7.65 11.3 5.59 8.94 3.37 12.5 8.94 5.88 0.66 9.87 1.12 8.27 7.12 10.5 8.24 12.3 4.16 13.3 7.33 8.57 8.58 3.1 10.8 12 9.98 6.72 6.66 11 7.6 11.3 10.7 10.6 10.8 8.04 7.98 2.77 9.23 6.83 9.06 9.7 7.88 8.85 6.91 7.09 6.53 10.5 9.73 7.39 11.8 6.52 10.4 8.9 10.4 3.2 9.52 7.71 11.5 10.7 3.6 12.1 6.65 9.39 9.17 8.24 8.58 9.78 9.16 12.4 9.65 7.97 9.75 13.4 8.48 8.78 10.3 8.24 10.4 13 9.75 4.5 9.09 9.79 2.77 8.57 8.58 6.1 1.46 8.4 7.4 9.16 8.84 10.1 10.1 9.53 11.1 9.8 9.44 6.98 12.4 4.16 5.85 11.1 5.26 8.39 10.8 8.71 9.55 9.55 6.45 8.97 7.75 10.7 9.95 9.69 11.4 7.71 10.4 9.14 11.5 10.9 10.2 9.66 8.2 11.6 10.7 8.76 6.14 7.54 11.4 7.46 6.81 4.42 6 8.78 4.71 11.1 4.89 3.6 11.5 8.15 8.86 4.74 10.1 11.5 3.1 3.85 2.17 9.44 11 11.7 8.87 4.42 10.2 3 11.4 10.2 7.98 9.88 7.63 8.19 4.16 7.46 1.46 9.89 8.97 10.3 9.92 10.8 9.74 10.9 3.79 12.1 9.94 9.37 10.2 2.77 3.6 11.5 9.47 11.9 7.29 11 9.2 7.53 7.55 9.61 7.09 10.8 10.1 9.71 12.2 5.24 4.42 9.35 10.3 10.3 6.66 9.27 10.6 11 10.1 3.37 8.68 4.86 10.1 11.7 10.5 9.65 10.2 9.86 5.59 10.1 9.84 11.2 2.17 8.33 8.91 9.4 9.31 8.76 8.28 7.19 8.95 9.67 9.2 6.71 7.77 5.05 10.5 6.23 10.1 8.17 8.03 10.7 10.1 7.76 11.9 9.4 8.17 7.69 9.69 3.73 8.73 4.92 10.3 10.6 1.74 8.38 9.73 9.16 6.52 8.09 11.6 10.4 6.98 3.73 3.79 9.76 10.5 11 6.1 8.5 6.21 9.65 8.77 5.19 10.9 10.7 7.72 9.09 5.76 10.8 11.2 10.1 10.2 8.42 8.92 9.73 7.19 5.48 3.2 0 8.82 7.41 9.91 10.1 10.4 10.5 10.2 12.7 9.68 9.61 11 9.17 10.6 9.46 7.82 11 10.3 8.45 13.8 12 10.1 8.37 10.5 8.95 7.54 9.12 8.06 9.08 7.06 9.36 6.6 11.1 10.9 10.9 9.49 9.64 8.75 12.4 11.7 11.2 11 13.5 7.49 8.46 12 10.8 10.6 11.3 11.1 4.94 10.8 12.2 1.97 10.4 7.26 3.2 8.66 9.08 9.75 10.7 7.82 10.8 10.9 8.38 2.35 10.2 9.68 2.64 7.52 8.68 10.2 10.2 10.6 4.54 8.8 6.43 9.18 10.3 8.43 4.67 9.14 9.08 8.26 6.22 9.5 6.29 8.25 10.3 10.2 9.67 11.2 10.8 8.2 9.71 10.1 10.1 5.35 7.9 9.95 7.28 7.21 10.3 9.18 9.91 1.12 9.7 9.26 11.1 11.9 12.2 8.21 10.2 9.51 2.5 10 9.06 9.96 9.08 9.81 8.3 11 9.15 2.35 5.64 9.51 4.26 6.23 12.1 8 9.7 5.85 9.2 10.2 9.19 11 8.93 8.99 11.3 9.87 4.74 11.7 8.88 1.12 7.54 9.23 7.54 10.6 11.9 11.9 8.29 10.6 7.03 9.06 11.7 8.93 8.78 9.27 10.6 6.44 11 9.43 12.7 13.6 10.2 7.93 9.86 7.85 10 8.41 9.81 8.77 10.7 4.34 9.14 10.2 8.41 9.53 9.78 2.17 11.1 9.98 10.6 11.4 11.1 8.18 8.58 8.94 10.1 6.89 10.6 9.71 9.29 11.8 11.4 7.62 11.9 10.6 11.5 9.55 11 9.77 10.3 8.33 8.89 8.07 11.5 8.98 10.4 11.1 11.5 10.8 8.75 10 10.7 8.98 11.9 10.6 9.04 10.5 4.5 8.56 11.3 10.5 9.33 9.46 8.81 10.3 11.3 8.39 3.79 10.1 8.9 9.8 9.13 2.89 1.12 2.64 8.55 1.12 9.21 11.5 7.59 12.8 7.1 6.24 11.2 9.9 5.89 7.16 6.65 10.1 12.1 8.91 8.71 10.1 11.3 12.3 8.38 8.35 5.48 13.1 3.37 10 6.28 10.8 11.1 7.34 10.6 10.9 10.6 11.7 9.18 9.38 4.38 10.4 11.4 10.1 1.97 10.8 10.9 7.76 9.16 2.35 9.72 6.31 3 6.11 11.1 5.39 6.73 8.19 7.75 10.5 9.32 9.63 8.27 10.6 9.59 10.5 9.41 11.6 10 8.54 8.84 9.74 9 0 2.35 15.6 9.11 10.4 13.5 9.98 9 6.26 7.5 14.4 8.81 6.52 6.05 5.69 8.71 5.92 5.79 13.4 11.9 7.87 10 1.74 7.97 0 0.66 8.08 10.9 9.39 11.3 8.56 7.59 6.21 8.54 9.98 9.01 12.4 11.7 10.7 9.94 0.66 3.91 12 7.39 8.16 9.92 0 4.12 12.1 0 9.72 9.07 9.44 9.01 12 8.11 9.69 10.1 9.42 3.73 6.7 8.87 12.6 4.83 9.09 7.26 8.36 11 13.5 1.46 8.61 7.5 10.9 11.5 9.42 8.27 9.75 3.73 6.46 9.07 10.5 11.2 0 0 0.66 3.6 10.3 7.97 10.4 10.6 3.1 10.4 10.5 10.4 4.61 10.8 11.9 12.4 11.8 10.7 7.71 9.04 13.2 7.89 9.52 8.38 7.6 10.1 9.76 12.2 8.82 3.6 8.42 6.37 11.2 7.86 10.6 8.44 10.6 12.5 4.71 10.2 11.1 10 9.03 7.62 11.5 7.41 0.66 6.98 6.14 5.02 13.3 10.1 9.72 9.98 10.4 11.8 10.8 0.66 3.45 8.28 9.47 5.07 4.77 7.94 9.29 9.33 5.02 8.02 9.34 7.85 6.72 6.34 12 8.44 0.68 5.95 5.97 6.09 7.11 1.12 6.82 7.01 9.57 0 5.73 2.35 5.87 7.31 5.37 6.26 8.88 7.53 7.84 0.66 8.83 10.7 9.5 7.31 6.21 1.74 4.83 14 7.59 11.4 0 15.2 11 10.6 12.6 7.4 3.1 2.35 7.18 0 5 11.5 4.89 1.46 8.32 6.76 5.24 7.58 4.26 5 9.9 9.96 9.22 2.5 7.73 8.15 9.26 5.12 7.13 3.37 9.42 4.16 9.29 9.44 2.89 5.1 11.8 6.56 3.73 10.6 4.86 7.8 8.17 8.07 5.58 4.86 10.2 10.5 9.49 9.16 6.69 5.93 6.6 9.2 1.12 6.24 9.04 1.46 1.12 8.34 1.97 0 10.2 7.33 3.6 6.31 2.89 1.74 10.3 9.14 5.97 8.14 9.11 7.59 8.6 4.57 12.8 0.66 5.17 12.4 10.2 11.5 7.1 7.2 9.41 6.15 5.66 6.43 2.5 0 5.37 9.22 10.3 3.73 8 5.61 7.74 2.64 9.11 7.72 5.22 4.89 3.85 9.56 1.12 7.47 2.5 2.77 10.9 6.63 8.57 2.35 8.11 6.34 7.42 10.2 7.83 0.66 2.5 6.6 5.43 10 1.46 8.25 7.02 7.22 2.5 11.1 9.46 3.85 5.93 4.42 8.37 1.74 7.95 8.27 0 5.93 5.68 3.52 0 1.97 7.23 0 6.14 3.66 0.66 7.4 2.17 4.21 3.1 3.91 1.12 6.41 2.89 7.91 4.61 3.6 5.71 1.12 6.59 6.32 0 0.66 0 9.58 10.6 10.8 6.75 2.5 11.9 12 8.8 8.08 1.12 10.6 12.4 8.42 4.64 9.05 5.52 4.34 5.75 2.17 5.37 11 10.8 5.5 11.5 7 11.4 7.86 11.3 12.7 9.32 9.57 10 14.4 11.2 9.06 10.2 8.44 9.48 2.17 9.95 11.1 7.07 8.02 5.15 9.81 10 8.05 7.55 2.36 12.2 10.6 5.83 11 9.74 3.66 4.54 10.9 7.52 4.5 10.1 8.98 10.4 8.02 10.3 6.05 9.07 9.98 11.9 7.76 9.87 10.6 8.88 6.78 9.32 8.89 10.1 7.59 10.1 12.8 8.31 2.89 9.39 10.6 10.6 9.37 15.1 12.2 10.2 1.97 8.47 10 8.42 8.36 9.27 5.68 7.27 10.9 6.08 7.08 6.94 8.58 8.41 9.61 9.01 0 10.1 6.39 8.86 7.93 5.96 9.12 10.2 8.14 9.79 10.7 9.11 12.2 8.3 6.23 11.8 9.91 5.92 0.66 9.75 11.1 11.2 0 7.37 7.64 9.97 1.74 9.24 4.46 9.33 3.96 6.29 5.89 9.2 0 8.68 1.46 2.17 5.33 10.7 10.7 5.62 10.8 9.18 8.82 7.69 7.71 7.07 10 9.4 10.4 7.93 8.6 8.83 8.96 10.5 7.85 8.71 11.9 7.52 11.2 10.3 9.81 5.71 9.73 12 9.65 15.6 10.8 9.02 6.62 7.28 10.8 9.9 9.51 10 9.73 8.86 9 7.12 11.2 8.52 11.1 8.89 9.88 11.2 10.3 8.13 7.68 10.1 11 7.67 11.3 9.23 10.6 9.34 10.7 4.02 11.1 7.51 8.86 10.9 13.1 9.29 11.1 10.8 8.8 2.5 5.43 7.31 10.2 8.19 5.22 4.71 5.8 5.48 7.76 9.77 9.4 4.38 9.45 8.19 7.86 6.78 2.89 8.91 9.32 7.82 7.41 5.24 4.67 5.17 8.09 11 8.94 10.7 10.4 9.76 8.84 10.3 8.48 11.8 10.4 11.8 2.77 10.7 9.97 11 11.3 9.49 9.75 9.4 7.98 5.86 10.9 9.87 11.5 11 4.77 7.8 8.67 11.1 10.6 10.8 8.67 10.2 7.75 9.16 9.01 11.2 12.7 9.53 4.02 9.89 11.3 8.68 7.62 5.07 8.48 4.71 10.2 9.25 4.34 0 11.6 12.2 5.93 8.56 9.41 5.05 9.51 10.5 9.44 13.9 11.5 7.42 9.36 9.64 8.01 10.3 2.77 14.3 4.54 9.5 4.34 8.6 10.3 2.77 9.39 5.1 9.86 10 10.9 2.77 10.8 1.97 4.62 6.54 7.06 9.87 11 7.85 12 7.66 5.77 5.95 0 3.1 0 3.73 10.4 8.45 11.1 4.77 9.22 8.66 1.74 7.35 9.73 8.58 7.04 8.47 6.4 8.19 9.08 9.56 8.48 10.2 6.89 3.1 7.53 9.95 12.1 4.54 9.17 0 9.52 9.68 8.28 5.35 10.8 8.89 6.98 1.68 8.59 8.75 12 11.5 9.64 0 8.3 6.6 6.94 11.8 10.7 11.9 13.6 11.6 11.6 1.46 7.45 11.8 10.6 9.83 8.73 11 7.58 8.7 9.49 9.09 8.14 9.41 9.92 11.4 10.2 9.4 10.2 10.1 9.09 11.3 6.19 2.77 4.11 10.1 5.97 6.53 6.09 9.26 1.12 11.5 7.79 8.82 8.1 3.6 10.3 4.61 7.35 2.77 12 12.5 9.82 1.46 7.55 2.6 7.75 7.96 6.89 10.8 0.66 7.4 6.77 0 9.34 4.12 12.2 8.56 7.71 5.17 10.2 11.7 7.77 0 8.95 12.8 8.45 3.2 5.58 1.12 11.4 8.19 9.62 11.1 9.52 1.74 9.35 8.79 8.89 10.5 2.35 8.62 8.42 9.27 7.13 8.04 9.93 15.5 10.9 11.1 9.65 11.2 9.16 9.32 2.5 2.17 9.77 1.12 8.79 6.3 5.26 11.8 10.9 7.02 10.7 8.79 8.73 12.8 2.77 9.97 2.17 1.46 10.7 6.52 7.75 11.4 13.3 6.66 0.66 7.12 9.37 10.5 11.2 4.54 3.79 9.11 5.02 12.2 8.63 8.49 7.87 5 10.9 9.66 12.6 3 5.33 9.55 6.52 10.5 8.74 7.02 2.17 9.76 6.63 10 12.8 9.22 8.81 7.49 6.37 8.51 6.73 5.35 9.55 2.64 8.09 11 2.5 5.35 6.41 3.37 7.24 10.3 9.1 7.42 8.88 6.05 1.97 0.73 5.05 9.74 10.2 7.01 9.18 9.82 1.46 10.7 0.66 7.05 11.6 5.24 11.6 8.58 11 7.72 2.17 3.85 11.3 8.14 0 6.26 2.64 1.12 4.21 9.86 10 0.66 6.71 13.1 9.89 3.66 8.21 9.68 9.41 8.59 5.05 2.17 7.31 9.6 12.1 9.65 8.84 8.51 9.48 10.6 10.8 11.7 8.77 4.64 5.58 9.05 10 0.66 2.5 5.05 3.1 7.42 9.07 7.24 9.25 10.2 5.95 10.3 3 2.64 6.91 9.16 8.31 3.6 7.18 4.71 9.31 8.04 6.04 9.58 11.9 2.35 9.98 9.57 11.4 7.8 1.46 12 10.3 8.82 12.3 12 7.89 10.4 9.93 9.75 7.23 7.67 9.94 12.1 9.51 9.65 5.22 5.47 8.51 11.9 5.59 7.05 9.03 13.3 10.7 9.42 6.04 9.52 9.02 8.84 10.4 9.62 9.39 10.1 6.07 8.36 8.77 13.2 8.54 8.49 12.6 2.89 10.4 10.3 9.63 12 8.2 9.97 8.45 10.2 12 10.4 4.86 5.12 10.4 15.2 0 6.11 13 13.6 3.83 2.17 9.51 11.3 8.97 2.17 9.59 7.75 2.17 9.98 4.61 0.66 11 3.52 7.66 8.99 11.6 11.4 11.2 12 9.85 11.4 10.8 2.5 11.8 2.77 0 11 2.17 10.2 12.6 1.97 8.51 4.71 5.33 6.33 8.3 0 0 4.12 6.87 3.6 5.74 2.5 7.26 5.59 0 6.7 6.94 8.62 8.95 4.26 5.92 8.82 3.91 6.17 7.41 0.66 7.49 6.66 8.96 14.3 9.83 3.37 5.88 6.43 7.27 5.79 6.65 12.3 9.95 7.8 7.47 3.91 5.22 8.25 3.01 6.4 4.38 5.45 5.77 9.51 2.17 6.99 5.19 10 3.1 9.29 6.54 2.64 3.96 8.7 1.74 1.97 0 10.9 4.61 7.84 4.21 8.71 4.5 8.61 5.97 0 4.58 3.85 7.22 2.5 4.77 0.66 8.37 1.12 7.59 1.12 2.5 10.4 10.8 7.76 10.1 6.7 5.79 5.79 7.89 5.24 8.47 0.66 0 5.7 8.55 7.88 5.8 4.12 5.79 9.04 4.5 10.3 3.85 6.42 5.5 2.89 5.48 7.97 9.61 2.35 5.07 13.1 8.85 10.2 5.91 4.02 10.5 10.8 0 4.02 9.14 1.97 7.02 6.63 9.17 4.16 9.06 3.52 1.97 4.07 1.97 7.88 7.99 0 2.89 0 10.8 3.1 0.66 6.33 11.3 9.12 8.84 5.45 9.07 5.35 7.04 0 2.89 9.04 5.28 4.46 9.79 1.12 10.1 2.89 8.09 0.66 7.68 5.17 8.8 8.7 8.5 5.99 4.8 4.97 4.83 5.66 5 3.66 12.7 3 10.5 8.29 6.47 6.61 0.66 4.67 6.28 0 0.66 6.43 4.34 10.6 11.2 6.4 4.5 7.58 11 0.66 1.12 1.12 7.91 4.92 5.22 0 7.15 3 7.15 4.38 6.02 4.57 7.76 4.41 8.79 1.46 0.66 8.03 4.3 0 3.45 1.46 2.17 2.17 1.97 8.05 1.74 1.46 6.21 8.43 0 6.14 1.12 10.3 6.91 3.79 1.46 3.37 4.47 0.66 8.21 10.2 7.23 8.69 9.7 4.12 8.03 6.52 3.2 7.41 7.48 6.05 7.63 8.42 7.91 0 4.26 8.9 8.67 0 7.44 8.17 1.12 8.69 2.77 6.87 10.3 8.9 8.26 8.2 6.11 3.79 2.64 2.89 9.15 0 8.7 4.42 8.73 7.14 2.77 8.97 9.48 2.89 8.67 0 8.43 1.46 5.47 2.17 4.97 8.47 6.14 9.52 0.66 7.79 9.32 3.66 4.38 10.3 6.22 5.47 7.63 0 4.18 0 9.74 5.3 5.99 8.16 1.12 3.1 9.3 1.97 4.42 6.33 8.01 5.9 7.78 6.34 7.13 4.94 2.35 3.79 4.12 8.51 7.58 1.46 11.8 5.48 9.24 4.61 5.15 2.17 8.5 2.64 8.03 10.3 9.83 3.91 1.12 7.71 2.89 1.98 5.68 10.2 9.53 9.8 1.97 5.1 7.91 8.12 7.22 2.35 1.74 5.31 6.04 9.03 8.72 5.54 6.05 6.61 6.41 2.89 6.89 10.1 12.5 12.4 10.5 5.02 12.4 4.07 10.5 12.9 10.7 7.54 11.1 9.05 9.83 1.46 4.02 8.54 9.8 9.76 10.6 8.98 11 7.41 11.8 8.82 8.54 10.8 6.64 5.97 4.12 10.3 5.92 10.1 9.87 11.3 10.3 11.6 9.87 10.7 8.56 7.84 6.13 7.4 9.58 9.85 10.5 11 8.78 6.8 7.25 10.1 10.3 12.2 9.11 10.2 10.3 12.3 3.45 5.47 5.77 7.66 9.75 2.35 9.46 3.1 9.29 11.8 4.67 7.88 7.56 9.89 10.4 12.7 7.01 9.29 10.6 10.8 7.92 10 8.7 8.67 9.62 10.4 6.89 11.9 10.3 10.5 9.71 5.77 10.5 8.5 7.77 7.48 9.42 9.89 9.86 8.85 10.3 9.36 9.91 10.2 12 9.75 10.2 7.42 9.6 4.02 8.66 7.2 10 0.66 9.07 10 9.24 9.69 0 2.35 9.28 3.6 11 2.77 1.46 6.34 5.48 1.97 3 3.96 11.9 5.45 2.64 15.2 6.07 11.3 15.2 11.1 10.3 12.2 11.7 9.71 10.8 9.37 6.99 9.1 9.5 8.53 7.32 9.8 11.8 7.68 10.8 9.63 5.37 9.93 9.21 7.57 8.78 11.1 9.32 8.99 8.01 6.28 8.23 9.3 12.7 11.1 10.3 1.12 12.9 10.3 8.44 9.25 11.2 1.74 9.84 7.52 3.45 8.75 9.41 0 9.18 9.65 3.52 11.1 4.97 11.7 0.66 5.05 9.07 8.11 9.99 1.97 11.7 12.7 9.24 0 7.92 7.7 7.58 9.99 1.74 2.35 10 11.9 9.79 2.5 10.4 10.1 7.56 7.09 11.8 11.2 11.4 6.22 12 1.97 11.2 6.84 11.2 8.44 6.96 9.05 10.4 3.91 9.03 3.52 9.66 9.49 7.85 8.47 8.49 9.15 11.3 7.05 7.41 12.4 9.68 10.4 13.7 9.26 8.7 3.45 4.07 6.91 2.17 11.1 8.31 6.54 2.35 4.38 8.8 10.2 7.41 7.86 9.08 5.35 12.9 8.21 12.2 7.77 3.96 10.4 0 9.13 8.18 8.71 9.25 8.35 10.2 8.79 11 5.83 9.84 11.3 6.65 8.11 9.22 9.92 1.97 8.84 4.34 11.4 6.08 5.99 9.26 7.07 14.4 9.55 1.17 11.8 2.5 10.7 8.06 8.8 3 4.89 7.99 4.34 5.56 2.5 13.6 12.9 9.34 1.97 3.73 0 12.4 9.77 3.51 10.5 10.8 10.1 10.9 13.5 13.7 11.2 10.2 3.29 12.1 11.3 10.1 1.74 10.8 1.97 1.97 4.77 5.69 9.09 6.14 5.41 0 0 1.74 0.66 8.33 0.66 10.6 4.8 7.96 11.4 10.2 12.7 11 5.47 12.2 14.2 10.5 4.26 4.71 11.3 11.5 7.41 3.91 13.3 11.2 4.38 6.51 9.53 4.94 6.46 4.3 2.89 10.6 3.2 8.43 8.9 2.35 10.2 3.6 0.66 9.06 7.3 9.24 8.84 8.98 9.99 5.58 9.71 7.33 10.6 8.75 11 12.9 8.91 10.9 8.83 11.3 9.84 12.3 11.3 1.12 9.68 13.6 13.1 13 8.51 12.5 12.7 7.02 4.21 10.3 9.56 2.17 8.29 3 8.08 3.52 10.9 10.1 6.87 5.76 3.37 7.18 11.5 9.07 4.91 10.7 3.29 4.07 5 4.5 10.2 7.16 9.49 12.8 10.3 10 12 12.9 10 10.3 10.3 9.2 7.25 4.77 5.85 10.3 14.9 7.8 5.35 10 7.9 8.35 8.42 4.71 9.14 1.12 8.98 0.66 10.4 1.97 9.62 13.6 8.48 14.2 12.2 13.6 12.6 13.1 11.9 11.5 10.9 13.9 0.66 13.1 13.4 0 4.34 3.6 7.69 7.99 7.73 6.43 6.41 4 5.37 9.63 10.7 8.54 3.29 7.66 8.54 5.86 5.52 3.73 1.97 3.2 4.61 1.97 3.2 8.54 7.24 8.24 8.71 6.37 8.7 5.1 10.1 1.12 5.45 13.2 5.74 9.29 9.24 0.66 6.66 0 10.5 2.35 5.45 10.2 9.81 10.5 3 11.4 4.67 0 10.6 12 12 12.6 12.1 9.64 6.2 8.89 7.15 3.2 12.2 11.6 8.43 10.7 7.22 11.9 11.3 14.2 12.1 5.61 7.16 10.5 13.8 10.5 4.86 5.1 13.1 12.7 11.8 5.69 6.32 13.6 8.63 14.8 12.8 6.01 11.8 11.2 11 11.1 5.73 4.42 14.5 10.7 8.18 2.35 1.46 0 3.37 0 0 2.64 8.11 9.85 5.47 10.4 10.8 4.8 2.77 0 0 0 11.2 7.7 4.86 5.17 0 7.21 7.03 3.29 9.37 0 1.46 3.37 1.83 7.7 9.94 7.82 9.86 6.96 7.91 9.9 4.26 3.12 0 5.89 5.61 8.18 11.6 1.74 7.83 7.14 4.07 9.99 8.93 10.2 6.62 11.1 9.39 7.87 8.78 5.37 7.53 5.56 0.66 6.29 3.85 1.12 4.16 8.76 8.2 4.21 7.3 8.34 8.42 4.74 5.26 5.12 6.13 6.19 9.19 5.02 3 9.2 9.51 2.77 3.2 10.8 8.24 2.89 0.66 3 4.16 9.59 7.52 1.74 1.12 5.48 9.82 8.13 7.05 6.21 0.66 0.66 4.12 0 8.94 6.22 4.83 9.28 1.74 8.98 4.07 10.7 8.18 7 2.52 5.5 7.17 5 6.42 2.5 6.37 7.23 4.92 0.66 6.09 5.28 8 7.82 8.18 6.4 2.77 3.01 0 7.81 5.15 12.9 12.2 9.94 10.2 3.2 11.1 1.97 3 4.92 10.9 10.7 3 7.47 9.22 1.74 10.3 0 3.73 8.97 6.48 8.29 3.29 8.81 6.51 3.94 7.42 1.46 6.15 1.74 3.85 1.46 9.19 2.17 4.46 8.63 4.46 5.79 7.44 2.77 2.89 1.97 0.66 1.74 1.74 6.73 7.28 3.91 6.14 0.66 5.92 9.02 8.06 0 6.09 2.17 2.35 3.29 1.12 3.45 10.9 5.56 7.79 2.89 5.77 9.64 8.57 0.66 4.83 11 3.85 11.8 2.17 4.07 0 4.64 1.74 4.3 3.2 13.3 4.94 3.1 3.91 1.97 4.8 0.66 2.5 2.89 9.48 1.46 11 3.1 4.07 11 12.9 3 3.37 8.01 1.12 11.2 9.21 5.56 6.54 10.5 11.7 5.22 6.86 7.08 8.88 8.8 5.85 8.21 11.4 8.44 0 11.3 4.07 5.79 1.74 12.9 9.99 1.74 7.24 11.6 0 6.52 12.2 4.64 0.66 9.37 5.8 2.64 9.18 12.4 4.53 11.6 7.27 4.54 5.22 3.2 3.61 7.23 5.5 7.75 8.86 14.3 10.9 9.4 4.16 7.38 5.02 12.6 6.58 2.36 8.57 2.05 0 8.72 11.2 0.66 0 6.93 6.17 6.94 7.77 1.97 0.66 7.95 6.87 11.1 10.3 0 4.71 12.2 7.66 3.37 1.97 1.97 5.71 7.78 6.23 8.8 7.43 4.64 9.36 5.33 6.34 4.74 3 6.77 0 1.46 10.4 0.66 2.77 1.46 6.92 9.94 4.07 7.72 1.74 0 3 0 10.1 1.47 7.78 11.6 10.6 10.8 3.6 8.48 7.26 4.54 1.74 6.86 0 5.15 10.4 11.7 12.9 2.64 11.1 8.94 9.57 11.4 13.2 7.26 5.22 11 7.7 4.21 4.02 10.3 1.12 4.83 7.94 1.46 7.96 10.2 7.52 6.81 11.7 11.2 1.12 1.12 10.9 1.46 13 6.52 10.3 11.4 10.6 5.5 9.51 9.18 1.97 9.69 10.4 4.34 5.93 9.05 10.3 9.4 9.57 6.53 9.36 6.9 6.94 1.97 9.58 4.29 9.24 7.77 4.21 4.34 1.12 7.92 6.14 3.37 10.3 5.99 12.6 7.75 10.2 3.97 9.94 11.3 11.4 5.17 5.37 9.55 0.66 0 3.2 13.2 6.29 4.71 12.2 10.4 11.2 2.5 10.5 9.88 9.92 11.1 12.8 8.75 9.99 6.73 5.74 11.9 8.66 13.1 13.9 13.6 13.1 8.06 8.29 11.1 8.94 11.6 1.12 0.66 7.34 5.19 3.45 2.64 1.71 10.6 7.07 9.51 2.77 5.35 11.1 5.39 2.77 5.91 1.46 1.46 10 1.74 5.12 3.73 6.98 7.54 9.06 10.5 2.5 0.66 5.99 6.65 9 1.97 6.41 7.2 3.2 11.9 8.36 1.97 6.19 6.47 3.37 7.23 2.17 8.09 1.46 5.35 8.33 14.2 4.71 5.63 4.6 11.6 4.26 6.09 7.24 2.77 6.77 5.17 8.03 9.55 6.84 3.86 0 5.86 2.64 1.74 8.15 5.95 5.15 4.26 6.04 7.97 6.39 8.12 0 2.35 5.33 0 2.66 1.46 8.78 7.47 5.48 4.34 8.98 5.58 9.27 2.5 11.4 12.3 5.81 0.66 6.46 2.5 8.34 5.76 1.12 10.6 0.66 4.38 5.79 9.4 5.86 0.66 8.11 12.2 5.22 1.97 3.1 1.12 7.18 5 7.81 3.52 8.12 12.4 1.12 1.12 2.17 11.9 9.81 4.94 2.77 5.07 8.62 7.52 0 6.59 13.2 6.3 9.73 8.55 7.19 1.97 5.54 7.17 6.45 1.97 12.1 9.98 11.4 6.48 0.66 1.12 0 12.6 0 0 6.81 5.35 3.1 12.2 3.79 2.5 1.46 1.74 2.64 0 10.1 6.54 6.16 11.6 10.2 12.3 8.49 9 11.2 9.97 5.97 11.2 11.3 9.4 1.97 1.74 15.2 9.83 6.15 10.3 7.1 2.77 12.6 5.82 4.26 11.3 1.74 5.54 5.22 3.73 10.7 1.98 9.78 2.89 0 3.79 9 2.64 6.5 15.4 6.33 10.2 9.09 1.46 2.89 3.85 1.74 8.28 8.81 0 2.35 3 3.45 3.85 9.83 0 5.32 6.81 4.3 5.45 7.58 4.18 2.17 10.9 2.43 8.73 8.85 5 1.46 12.5 1.74 8.88 4.21 5.33 9.52 2.89 4.38 9.75 4.46 7.34 5.1 6.17 2.17 7.1 10.1 4.46 6.61 5.54 8.9 5.61 0 13.9 4.46 6.22 8.72 7.35 11.8 7.29 6.04 5.97 2.35 0.66 7.33 7.47 6.71 0 7.44 2.77 10 2.64 9.18 6.68 3.1 7.04 5.28 9.01 10.4 0.66 10.3 2.29 5.66 11.5 3.52 9.15 8.72 6.97 1.12 10.2 12.4 7.99 2.5 8.71 1.12 4.92 6.16 7.3 5.45 9.07 9.65 5.88 6 7.62 5.63 10.3 9.4 9.79 2.67 11.5 7.02 7.58 11.2 2.35 1.97 1.97 1.12 8.46 7.54 1.46 8.77 1.74 8.15 0 3.45 12.9 0.72 6.42 1.46 9.27 4.5 10.5 7.54 5.73 2.89 1.48 4.12 6.43 1.74 4.71 3.73 5.96 0.66 7.63 8.88 10.1 7.47 8.22 9.63 7.46 4.46 11.3 0 9.19 1.12 11.6 7.29 11 8.5 11.6 12.6 5.24 0 11.4 12 13.7 4.07 4.34 6.07 10.1 4.21 10.7 4.38 0 8.05 10.6 6.67 6.25 7.61 12.7 6.1 0.66 13 10.4 11.5 11 11.6 0 6.8 10.4 12.1 10.7 1.74 9.98 12.2 13.7 3.45 9.83 7.01 11.5 0 6.04 10.8 8.8 5.85 10.1 7.68 10 9.52 9.87 6.56 9.11 6.22 0.66 5.35 10.1 11 1.12 6.41 8.61 8.63 8.4 10.2 9.65 6.03 8.38 2.89 8.8 4.94 2.64 7.82 6.33 12 1.46 9.09 8.39 9.87 0 10.6 6.88 10.1 11.4 11.5 8.92 5.33 7.23 8.07 0 1.74 6.45 10.7 6.98 12.1 6.87 8.54 2.35 5.61 8.86 0 7.36 8.16 3.52 7.05 2.5 6 7.62 7.58 1.12 3.85 5.43 1.74 7.29 3.2 11.1 7.55 1.74 1.74 9.52 5.36 6.37 0.66 8.11 9.14 6.75 3.6 5.92 0 5.72 0 5.99 0.66 2.5 6.04 11.2 3.79 6.04 5.95 6.49 3.45 7.58 0.66 2.35 5.37 2.17 6.89 3.29 7.67 8.56 1.74 8.9 2.17 3.2 6.87 5.45 10.5 5.66 3.96 5.22 9.82 10.1 6.53 10.3 7.69 0 4.3 1.12 1.97 7.28 8.31 2.64 2.89 6.84 4.12 0 3 7.7 10.2 7.92 0 5.05 2.89 9.32 0 3.29 7.35 1.97 6.72 9.34 3.85 10.2 0 7.59 10.8 11.6 1.12 11.7 5.45 9.43 2.64 7.59 11.4 3.37 9.1 3.73 3 12.4 7.19 4.67 7.25 8.32 10.2 11.2 9.37 10.8 1.46 9.45 5.1 0 9.64 8.92 11 12.3 6.57 8.7 2.64 1.74 16 6.72 10.5 11.6 3.52 1.97 4.61 4.94 8.54 4.57 8 14 11.4 13.1 10.6 12 12.1 2.35 6.4 5.95 8.66 8.35 10.2 11.8 8.05 6.78 8.42 10.5 9.63 10.7 8.24 10.3 6.96 8.54 6.53 9.37 8.23 0 7.38 10.9 7.46 9.44 4.74 5.88 8.26 6.58 10.1 11.1 6.35 12 9.13 12.1 8.11 7.38 8.99 8.41 12.1 8.62 9.17 7.9 12.1 10.2 9.26 7.39 11.2 6.91 1.46 7.74 5.1 1.12 8.47 7.24 5.37 11.9 8.12 1.5 10.4 8.71 4.71 10.4 8.85 11 4.07 13.8 12.3 9.09 9.92 10.9 10.5 6.68 9.09 7.9 2.17 2.64 12.6 8.91 9.83 7.78 9.14 8.06 10.9 12.6 4.34 11.9 9.21 2.35 11.2 11.8 11.4 10.2 9.8 7.03 9.2 10.7 10.1 9.42 6.04 7.18 10.5 10.8 0.66 7.38 7.84 6.68 8.04 9.42 9.38 10.3 10.9 10.3 3.96 1.12 8.43 6.01 9.11 9.27 7.27 8.76 10.1 9.47 5.35 5.92 11.5 9.78 4.38 4.07 9.38 8.2 10.8 11.5 11.9 12.2 10.5 4.89 12.3 11.7 3.66 7.71 14.2 7.2 0 7.71 6.84 9.06 7.86 10.9 7.97 9.23 4.86 8.57 11.4 10.2 11.4 10.9 5.52 5.92 8.51 11.4 12.2 9.03 6.84 10.9 10.2 8.85 0 0.66 4.71 4.34 6.58 9.41 5.05 9.94 2.17 5.17 9.06 9.16 1.74 5.07 8.16 2.77 9.52 1.12 7.95 9.95 1.97 11.2 5.41 9.64 11 10.5 3.85 0.66 8.17 5.64 6.46 11.8 9.99 6.39 5.15 8.27 11.6 1.97 4.94 9.93 10.5 0 5.42 6.21 9.58 10.2 1.97 3.1 1.74 4.71 7.27 5.15 7.68 3.2 3 2.17 9.2 10.5 3.79 9.26 11.2 4.98 8.27 4.54 2.07 5.76 5.92 11.6 8.01 2.89 7.03 2.89 10.4 7.99 9.2 9.12 3.1 0.66 9.2 11.1 6.11 2.17 8.52 0.66 3.45 2.5 5.76 7.09 3.1 0 8.88 9.47 9.73 8.33 13.2 3.66 6.29 6.69 6.49 7.66 4.22 4.64 8.15 6.48 6.64 4.42 6.6 7.29 1.97 4.45 5.58 0 5.5 6.78 5.9 3.1 4.12 1.74 1.46 2.64 1.12 1.97 10.1 2.17 8.85 4.02 5.97 7.26 2.5 1.46 6.81 11.6 3.6 0 1.74 0.66 0 0 8.26 1.46 5.39 8.32 5.12 3.29 4.57 9.8 6.13 8.74 8.4 0 9.35 9.71 9.52 8.74 13.9 8.74 5.14 1.97 8.12 10.2 5.12 8.06 7.89 4.07 6.7 9.21 8.41 7.71 5.59 9.54 10.9 9.37 5 7.8 7.29 10.1 9.27 9.17 7.29 6.42 1.12 9.23 9.4 10 7.27 5.73 2.89 9.06 9.79 7.65 10.3 9.66 7.8 5.45 9.96 8.29 4.42 5.99 0 1.46 0 10.1 8.04 1.46 9.73 12.3 1.74 6.94 14 10.4 13.8 10.8 0 9.27 13.6 11.1 0 12.3 11.1 11 8.71 9.84 12.5 6.88 3.1 6.35 10.5 9.79 9.76 8.46 9.84 0.66 9.03 8.79 15.4 9.82 10.6 11.3 11.8 3.37 13 8.51 5.15 11.7 11.6 11.1 13.7 2.77 12.1 9.81 9.73 5.88 5 8.98 4.46 4.86 8.79 13.9 9.1 11.9 11.5 11.5 11.9 11.4 12.8 10.4 11 10.9 6.09 10.3 10.8 9.86 11.1 10.8 9.49 10.3 12 10.3 10.5 11.7 11.7 12.1 11.9 11 11.1 9.81 9.36 10.7 11.2 11.1 9.23 12.2 11.3 11.9 12.1 13.2 10.6 10.3 7.44 12.6 14.3 10.9 11.5 6.46 6.97 7.97 7.45 6.1 1.46 0.66 11.8 6.22 9.82 8.26 3.91 9.15 5.56 11 10.6 14.2 9.53 6.97 10 8.55 1.74 10.5 9.16 7.63 0 12.2 4.38 10.9 12 9.24 9.71 12.8 9.03 10.8 11 9.08 8.11 10.1 7.56 8.94 9.6 9.37 0.66 9.59 9.52 10.3 9.35 2.89 12.1 9.28 5.02 8.38 9.89 3.85 9.29 4.94 6.05 10.8 14.9 2.77 6.29 10.8 11.7 13.8 12.2 13.7 9.6 10.2 8.11 1.46 10.4 13.2 1.74 7.03 9.98 10.7 8.52 9.22 11.1 9.58 8.1 8.76 0.66 7.63 1.74 8.41 7.49 9.04 5.97 14.1 4.21 3.45 11.7 5.48 6.48 3.73 3.52 6.08 9.37 10.3 9.29 5.66 11.6 8.58 1.74 9.78 5.26 5.05 4.71 12.8 10.8 6.29 1.46 9.7 4.16 5.47 5.17 0 3.66 0 7.23 4.26 1.12 4.64 8.27 13.5 12.1 14.4 9.68 11.2 11.5 8.96 8.86 5.54 9.69 8.91 8.7 6.76 0 9.11 5.95 4.3 6.16 10.1 7.8 8.72 9.55 0 4.21 11.5 8.28 5.24 3.96 2.77 1.12 13.9 11 10.5 13.6 10.2 5.63 11.3 8.63 7.7 0 5.26 6.26 3.29 1.12 0.66 9.76 11.1 13.4 6.16 9.3 8.42 7.07 8.65 0 4.34 3.79 8.6 11.4 9.27 9.47 8.34 3.1 3.2 10.5 4.46 11.4 6.77 3.6 7.72 6.01 11.3 8.62 4.83 5.56 10.7 7.26 3 6.3 2.17 3.2 8.99 10 16 4.51 8 12.3 0.66 1.46 5.8 14.2 8.76 12.2 9.16 10.4 9.76 8.81 6.53 10.5 7.35 10.2 4.12 5.95 8.9 12.3 4.71 12.6 8.8 0 9.47 13 1.97 2.59 9.4 9.78 10.7 4.3 11.2 10 12.4 9.78 9.14 8.31 9.32 7.09 10.1 4.64 6 11.2 9.98 8.76 1.46 5.56 0 9.7 7.58 10.8 11.4 8.23 10.8 9.22 9.03 1.46 3.65 3.37 11.1 2.64 7.95 11.5 7.98 4.26 7.66 9.71 10.6 10.1 10.2 10.3 12.1 9.99 9.44 11.7 13.3 8.42 0.66 13.2 7.94 3.99 1.46 9.43 10.4 10.1 11.7 9.75 11.2 8.25 8.33 9.29 7.61 8.88 8.13 11 7.76 10.3 3.73 9.03 8.87 10.5 9.11 11.4 9.87 9.23 8.75 8.84 9.53 11.2 8.6 8.43 11.4 9.42 9.44 8.44 10.9 8.76 9.5 10.6 11.4 10 11.3 11.1 9.72 5.37 9.61 5.39 8.02 8.83 10.8 11.3 7.76 6.77 11.6 1.97 8.45 9.8 9.35 10.3 7.76 9.44 9.83 8.75 10.5 8.28 8.57 11.2 12.6 10.6 9.96 11.3 7.35 11.3 3.45 2.66 3.66 7.74 6.74 7.64 10.7 10.1 11.8 8.59 9.09 11 8.9 8.42 9.76 10.6 8.36 8.65 8.38 8.84 9.47 7.63 11.9 11.1 14.4 9.58 7.88 10.3 10.3 11 9.37 10.6 11.4 9.89 10.8 8.18 8.52 10.6 10.9 9.98 10.8 1.12 10 6.76 7.67 8.76 10.7 11.9 8.19 7.97 7.53 8.7 8.62 12.4 9.85 11.1 9.45 9.17 7.94 12.2 4.34 10.4 9.81 10.1 8.51 12.7 6.4 9.55 8.33 11.1 9.95 6.77 3.85 12 7.77 8.03 8.24 7.14 7.28 10.2 9.84 14 8.59 8.8 9.36 9.91 11.5 10.1 11.4 7.37 7.31 9.47 7.76 7.41 5.26 9.49 8.98 9.46 6.28 8.61 9.94 3.6 1.12 1.97 10 1.74 8.96 6.05 7.07 9.14 10.7 9.38 9.04 9.2 1.46 10.8 10.4 10.2 8.8 11.4 8.98 12.1 11 10.1 9.8 3.1 7.75 8.42 3.2 10.2 10.8 8.74 9.61 11.2 8.5 9.77 9.51 10.6 4.02 5.17 3.6 10.9 10.2 11.2 10.9 9.05 6.69 7.02 7.3 10.2 9.28 14.3 7.95 12.2 9.8 2.89 4.16 10.5 6.96 9.49 8.09 9.7 11.4 5.33 10.4 6.91 8.91 12.3 7.5 10.4 0 10.8 9.72 1.12 9.04 10.9 5.95 7.89 10.1 1.12 11.3 11.2 0.66 9.92 1.74 9.79 9.04 5.93 9.51 10.1 11.1 11.2 6.49 12.2 5.02 6.97 5.93 7.29 10.4 11.8 10.4 5.07 6.1 10 10.1 10.1 10.2 11.8 1.74 9.45 2.35 6.2 8.48 9.74 8.87 6.69 3 11.6 10.3 9.12 11.2 0 10.8 12.2 8.57 11.4 6.59 8.81 7.95 7.13 9.94 10.1 2.17 9.14 13.4 9.41 10.3 4.3 9.91 5.54 9.46 11.7 10.5 12.2 11 10.7 10.4 9.06 7.11 5.24 9.52 8.46 10.3 8.22 7.6 10.7 10.9 3.66 10.2 11.6 10.3 8.07 10.1 9.52 0 10.6 9.34 11.4 11 4.26 9.65 9.38 9.68 6.7 4.8 12.2 11.3 8.49 1.12 10.6 9.04 7.9 9.84 1.74 9.59 9.15 10.7 10.7 8.6 11.3 9.09 11.3 9.68 8.37 10.3 12.2 11.6 10.9 8.62 10.7 4.86 4.16 4.21 9.02 12.7 11.6 11.2 8.51 9.38 9.31 9.49 9.43 11.2 4.42 8.29 8.06 7.18 9.31 9.7 9.3 10 10.8 9.49 9.92 8.93 8.92 9.12 6.71 9.41 11 1.97 1.12 8.29 7.84 8.12 3.29 8.81 10.7 10.8 10.3 11.2 5.82 8.57 11 9.96 8.58 5.48 11.4 10.8 11 8.5 9.58 10.4 11.5 9.21 12 12.2 11 10.7 7.42 11 8.73 10.8 8.21 10.3 10.2 8.77 12.3 9.57 3.66 8.79 10.5 9.11 9.96 8.91 12 8.23 11 7.64 8.63 12.6 11.8 10.8 9 9.02 11 8.92 11.2 10.7 9.83 7.07 9.95 10.1 11.2 8.95 11 10 6.47 9.95 9.25 7.38 10.4 7.83 10.6 8.86 12.8 8.26 6.08 6.84 6.23 8.64 9.21 8.28 7.99 10.4 9.24 9.33 9.63 9.46 10.3 13.8 9.86 6.32 8.64 0 10.4 6.58 6.56 9.94 8.82 10.9 8.83 2.89 10.6 7.62 8.64 10.5 12.7 8.62 10.8 1.46 9.57 6.17 3.1 3.29 8.48 9.79 1.97 11.6 8.99 9.03 3.87 8.55 8.96 9.69 10.9 9.62 8.8 6.33 9.28 10.6 3.66 8.2 9.29 8.79 9.17 5.69 10.5 11.7 8.72 7.61 5.45 8.26 13.1 7.39 9.66 11.7 7.94 8.16 10.3 8.48 12.2 7.55 10.4 9.56 1.74 1.12 9.45 4.12 11 10.5 11.1 8.93 12.8 10.8 2.5 8.31 8.15 12 7.78 12.4 4.94 9.5 9.74 13.7 11.1 8.76 10.9 10.7 5.41 11 11.1 7.26 8.99 10.2 11.6 9.44 10.2 8.8 4.64 6.25 3.85 11.7 4.61 13 0.66 11 11 9.02 10.1 11 10.3 3.1 9.9 9.32 7.82 5.12 12.8 12.2 6.74 6.43 5.85 6.95 8.56 9.07 9.91 7.74 9.93 8.46 9.81 8.18 8.47 11.1 6.98 9.32 9.85 6.09 2.17 9.64 11 10.2 10.7 10.7 10.9 0.66 9.49 8.06 11.6 7.35 10.5 8.01 0 13.6 8.31 7.54 1.97 6.36 5.15 7.07 9.01 12.3 5.85 6.57 12 6.66 9.64 9.19 8.1 6.74 9.9 5.76 7.05 6.2 11.8 8.06 4.61 3 8.42 10.8 2.89 3.1 5.22 6.19 8.9 9.42 10.1 13.3 3.88 3.96 8.92 5.02 4.91 8.96 3.85 5.5 13.6 10 5.99 11.4 8.63 9.38 8.87 9.21 5.48 8.06 7.4 9.64 9.41 11.9 2.89 7.16 3.73 12.7 4.21 11.6 10.9 5.19 0 1.97 12.8 10.5 10.3 11 9.32 8.23 8.17 8.52 6.15 6.19 5.86 0 8.91 8.78 2.89 6.65 1.12 4.61 10.6 4.21 9.99 5.74 0.66 6.14 11.5 6.84 9.46 10.2 8.14 9.36 6.57 9.92 7.69 8.77 9.45 7.93 9.88 9.77 9.18 10.5 11 5.35 5.68 6.59 9.06 8.49 2.89 8.03 0.66 5.58 8.84 9.11 6.1 8.89 3.29 9.84 9.65 11.5 2.64 10.5 10 5.85 3.8 3.91 4.19 8.81 7.47 7.45 8.03 7.86 12.4 9.04 11.2 10.3 1.12 5.15 1.97 7.77 9.73 7.86 11.7 9.77 5.17 4.59 9.62 7.53 11.5 10.4 10.4 2.35 2.35 8.68 7.08 7.78 11.4 10.6 6.63 10.4 10.1 4.89 6.81 10.6 10.3 11.3 10.8 9.87 11.3 11.2 6.08 9.6 10 2.17 5.07 12.6 10.9 8.96 8.99 3.12 9.59 3.29 3.66 9.32 5.61 5.33 9.73 5.07 9.96 9.48 7.97 9.44 5.74 2.89 11.2 11.3 11.9 8.9 7.87 9.45 7.92 0 9.25 10 10.4 11.2 7.87 9.6 11.5 9.55 9.56 9.29 4.34 11 8.4 9.47 8.98 8.26 9.23 9.88 10.3 9.89 10.6 11.2 8.94 5.39 12.1 8.37 6.01 9.39 4.97 4.16 4.14 7.24 6.65 10.3 8.14 8.65 4.64 4.67 8.26 7.42 7.89 9.5 3.37 9.92 8.83 9.57 9.23 8.91 9.66 7.5 11.6 10.2 9.52 6.94 11.5 9.51 9.54 8.93 8.66 10.7 7.94 7.26 3.6 10.4 7.36 0 8.54 9.77 6.69 8.23 9.25 0 10.2 3.29 9.66 11.2 9.1 8.17 7 9.32 9.19 7.78 11.3 9.46 7.11 5.35 6.6 9.19 10.9 8.87 1.97 10 10.3 10.1 8.85 9.79 2.5 10.9 8.95 9.07 5.48 8.16 10.6 10.6 9.61 11 10.5 10.4 8.34 10.4 8.15 1.12 2.35 8.88 0 12.8 11.3 0 9.21 7.81 6.85 7.26 9.62 3.2 10.7 3.52 6.62 4.74 7.1 3.73 9.22 10.6 6.52 6.19 9.62 8.5 4.89 10.4 8.16 12.7 10.2 8.36 7.86 10.8 15.3 8.69 8.61 13.5 5.24 7.85 1.74 9.19 6.71 9.49 8.14 9.77 7.45 8.5 7.83 8.99 5.63 9.03 3.52 8.67 10.8 8.46 10 10.3 9.33 7.94 7.43 4.12 9.31 7.43 0.66 7.02 0.66 8.97 6.82 4.8 1.12 9.43 8.06 8.39 10.6 7.38 9.5 9.5 10.4 7.44 11.2 7.8 9.73 8.55 8.44 2.89 9.09 8.46 8.72 8.95 0 10.3 9.65 9.07 10.2 5.56 10 8.06 8.98 3.79 11.9 8.53 11.1 10.1 9.19 9.07 10.7 9.02 10.1 8.9 7.4 8.61 10.2 8.39 10.3 8.29 10.9 7.76 8.74 10.8 11.4 8.97 7.38 9.94 10.1 8.79 10.7 9.12 5.86 9.47 2.64 7.71 10.4 8.34 9.05 3 10.2 6.82 10.5 7.72 9.98 10.4 8.76 11.4 9.46 7.68 10.7 6.84 7.63 8.67 11.3 9.06 11.5 10.6 10.5 9.05 9.03 9.19 3.79 8.83 8.97 9.92 1.25 9.54 10.2 10.8 11.2 7.67 8.65 4.02 10.3 7.06 10.1 9.69 10.5 7.36 8.28 10.2 7.46 8.32 8.18 8.13 7.47 11.4 8.91 10.6 5.79 10.1 8.88 9.31 1.46 8.57 8.75 8.74 7.4 10.4 11.8 7.57 9.26 10.4 10.4 1.12 8.78 7.22 8.9 10.5 7.1 10.1 6.07 9.92 1.74 9.65 12.6 8.63 8.67 10.8 8.4 8.25 10.7 11.6 15.6 11.9 13.7 12.1 5.28 9.08 9.87 11.7 8.29 8.27 9.93 9.4 10.7 11.3 3.91 10.5 8.33 8.52 5.15 9.75 10.3 3.45 9.87 0.66 5.59 12.2 7.61 10.3 8.44 3.66 7.38 8.19 9.12 10.8 8.56 5.15 4.61 9.18 8.73 9.65 7.51 8.4 10.3 10.8 11.6 10.7 10.4 7.94 11.3 9.66 8.3 9.48 1.12 5.92 9.87 7.27 5.85 4.3 9.16 3.6 7.55 8.17 11.9 5.79 7.47 5.37 10.1 7.71 8.52 10 4.89 8.64 10.4 11.3 3.1 8.42 2.5 8.49 3.96 8.12 8.9 7.35 8.02 8.49 10.3 2.64 11.4 9.17 9.6 9.68 8.3 8.06 2.5 11.2 9.21 9.76 8.39 10.7 7.94 8.31 9.62 8.09 10.3 9 9.01 2.35 8.06 8.83 9.49 8.81 4.57 8.57 9.33 8.6 7.48 4.74 1.12 10.6 10.9 9.13 8.12 5.3 9.02 7.05 9.26 9.9 9.59 9.3 11.7 5.41 7.12 9.36 9.61 9.63 8.74 8.38 8.44 10.2 8.94 10.6 10.1 7.27 4.16 6.19 9.15 9.72 10.1 7.06 9.09 9.11 11.1 3.1 6.94 9.37 8.4 8.39 13.3 7.69 7.8 10.9 7.78 5.91 10.7 10.5 7.57 9.77 8.26 10.5 8.95 9.86 8.89 0 8.79 10.2 10.5 7.25 2.5 9.41 4.94 9.98 3.91 9.89 10.5 7.07 10 8.65 10.7 4.57 9.91 7.42 8.78 6.86 7.94 9.24 5.28 9.29 10.7 6.52 4.3 6.87 8.9 6.96 8.6 10.1 9.3 7.17 8.5 7.23 10.5 4.12 7.99 10.4 9.51 5.37 9.16 12.9 8.07 2.64 4.46 8.91 9.7 0.66 7.79 10.4 9.49 10.6 10.5 5.99 9.23 8.8 8.57 12.7 8.63 9.69 4.07 7.96 6.25 9.26 7.27 2.89 11.7 10.2 10.6 9.61 10.8 5.54 10.9 10 7.71 7.48 8.33 8.25 10.4 8.38 7.2 3.6 5.1 8.85 6.51 5.52 2.5 9.43 11.8 6.17 8.1 7.93 10.9 11.2 6.34 7.98 8.37 5.73 8.61 8.64 9.74 0 12.8 9.09 0.66 7.12 4.38 9.02 11 10.2 10.6 9.76 7.84 8.17 7.72 6.73 10.4 7.57 8.69 9.95 7.97 5.17 9 8.6 10.3 9.2 9.88 10.1 8.55 5.19 8.11 9.09 7.3 6.37 11.3 11.1 5.8 10 8.99 10.2 10.3 7.3 9.06 9.57 8.9 8.58 6.23 7.21 10.2 10 0 2.64 10.8 7.78 5.47 5.39 7.67 8.68 10.5 8.64 10 9.96 5.43 8.99 9.28 10.4 3.73 8.02 11.8 11.2 6.78 2.77 3.79 8.64 8.97 10.1 3.45 1.46 3.2 7.8 3.52 8.28 8.82 8.55 4.77 8.79 8.67 8 10.4 10.9 10.7 7.79 3.29 10.3 10.2 10.4 10.3 8.98 7.45 11.8 7.91 10.7 10.2 6.52 7.28 3.45 5.52 6.72 9.95 2.35 8.79 6.67 9.96 11 9.96 7.44 0.66 0 10.1 8.15 5.88 7.81 8.5 1.46 3.45 7.19 3.66 10.8 10.1 8.61 8.7 8.85 0 7.98 5.59 10.1 9.64 10.4 0 9.95 10.1 9.21 4.86 10.7 11.2 5.5 9.63 7.86 10.9 8.82 6.66 1.74 8.21 8.58 9 8.33 9.31 9.04 11.7 6.57 7.88 11.4 8.01 1.74 8.99 9.97 9.51 7.15 4.5 10.7 11.7 10.3 8.57 11.2 11.2 9.92 9.54 11.2 7.57 11.2 8.36 10.7 8.66 8.31 8.74 7.66 4.16 8.82 8.01 8.56 5.52 12.1 9.31 8.45 8.95 8.18 8.99 11.2 9.01 8.88 10.1 10.5 9.9 10.8 10.7 6.5 10.9 10.4 10.6 9.49 9.32 8.7 10.1 10.9 9.72 6.72 9.39 10.4 8.01 10.5 7.69 6.43 10.2 9.14 7.97 8.92 10.3 12.4 5.92 9.41 9.3 8.22 12.7 10 10.4 4.8 9.82 9.62 9.91 4.61 10.7 6.96 11.3 8.13 9.66 7.86 6.71 10 5.89 10.4 7.46 9.88 3.6 7.6 6.94 7.64 9.17 10 10.1 8.94 9.72 6.52 5.91 5.76 8.71 9.18 6.29 7.97 11.8 10.4 5.82 7.93 8.12 9.81 10.8 11.2 11.2 10.4 9.28 10.3 8.94 9 8.78 9.11 13.2 10.1 8.42 9.53 9.26 10 8.67 11.9 9.48 8.44 8.65 9.99 8.63 6.34 10.2 10.3 6.25 9.15 9.02 5.12 13.5 9.35 9.9 8.27 8.87 0 8.73 8.56 9.45 7.3 8.82 7.62 8.83 9.11 8.82 8.49 9.97 6.01 7.5 5.33 9.64 2.77 5.15 12.1 8.42 8.9 7.95 9.8 3.91 7.36 3.52 7.96 11.8 4.92 8.6 4.61 7.22 6.14 8.57 7.52 6.51 8.9 2.35 7.31 9.85 9 4.92 10 10.6 0 9.82 7.31 7.52 11.3 10.9 9.85 10 9.95 10.2 9.88 6.52 9.96 11.9 10.3 9.01 9.62 5.19 10.5 11.6 8.63 8.16 7.8 13 9.75 10.4 10.2 4.63 10.1 6.16 10.1 8.44 10.5 5.35 9.49 9.95 7.76 9.56 9.07 1.12 9.06 10.5 10.2 9.65 4.02 7.31 2.5 11.3 6.48 6.04 0 13.7 10.4 7.87 10.4 10.9 11.3 10.2 9.59 7.86 9.6 10.2 10.6 7.71 10.5 8.55 10.8 6.43 11.3 9.95 7.87 8.45 1.74 12.3 8.56 3.91 10.1 3.66 10.4 5.49 10.9 9.65 9.44 7.68 10.1 8.33 7.19 3.52 10 10.7 9.84 10.6 10.3 11.1 6.56 10.6 10.4 9.34 8.41 7.43 3.91 8.88 0 11.8 9.71 10.3 7.48 9.87 7.28 10.6 12.1 9.3 10.2 10.2 2.64 8.34 7.74 9.19 9.93 2.17 1.12 5.02 8.38 3.1 5.66 1.74 3.91 5.58 3.54 6.47 2.89 5.12 4.02 11.8 3.37 4.02 3.85 4.67 3.1 10.3 0.66 4.57 6.87 6.4 5.37 4.71 6.55 5.07 3.79 3.66 9.17 3.6 5.02 4.46 7.92 4.07 6.34 9.75 3.37 9.3 1.12 4.64 11.7 6.11 7.58 10.5 1.97 9.91 10.6 2.17 2.64 6.8 8.24 11 0 3.2 10.1 1.97 9.7 9.93 4.8 10.5 10.1 5.5 10.2 11.2 7.06 9.65 7.91 11.6 10.2 9.16 2.64 1.51 9.75 10.4 9.94 10 9.64 8.85 6.29 8.33 10.9 5.83 0 2.35 9.21 6.14 9.08 4.54 7.47 12.8 6.98 8.95 5.69 1.12 14.5 7.04 8.97 4.67 10 5.48 8.66 10.5 9.84 11.1 5.63 5.85 10.3 8.65 14 8.88 8.54 3.2 7.81 8.65 1.12 7.33 0 9.84 1.97 11.2 10.8 14.5 7.49 0.66 12.7 9.93 11.1 9.32 11.1 4.18 9.32 10.9 9.67 11.7 10.2 10.7 7.18 3 10.7 11.1 11.3 11.6 10.7 10.2 13.1 12.2 7.46 13.4 10.2 11.2 5.35 10.8 7.65 4.94 10.8 10.2 6.15 8.69 12.4 8.19 5.73 9.6 11.7 11.1 7.15 8.38 6.04 9.71 9.02 6.05 6.5 12.7 7.85 9.14 8.57 8.21 11.4 10.8 10.9 9.7 11.3 9.14 11.3 14.1 0.66 11.3 9.5 9.63 9.72 9.83 8.2 8.82 7.81 10.3 10.3 11.6 11.8 9.18 10.6 4.77 7.4 10.4 9.35 10 0.66 6.15 4.8 9.73 6.36 9.97 8 10.2 3.29 8.23 8.02 7.74 3.37 7.86 10.1 8.93 8.74 9.8 10.6 11.6 4.07 10.6 9.61 9.11 10.2 11.2 10.9 7.32 1.46 9.78 9.07 8.43 11.5 6.25 10.7 6.21 10.2 11 9.43 11.4 9.59 8.54 1.46 10.8 8.35 9.55 11.3 10.2 9.94 12.1 9.83 5.39 10.4 9.82 3.1 11.8 10.5 11 2.35 12 6.54 8.58 11.8 3 11 3.6 11 3.52 9.04 8.34 9.46 11.7 4.16 7.49 6.45 11.5 1.46 7.67 9.61 9.61 9.58 11.3 3.11 8.95 3.66 9.37 2.89 8.68 7.65 5.82 8.05 8.87 9.43 11.2 11.4 10.7 9.63 11.8 7.2 11.8 11.9 12.3 7.98 9.39 8.72 10.7 9.83 10 7.48 12.1 8.77 4.46 7.48 1.46 9.71 7.29 9.18 4.67 3.79 5.47 9.17 10.2 9.48 13.4 9.22 10.7 11.3 9.68 7.81 8.83 9.1 11.3 9.83 9.06 10.4 5.45 9.55 12.1 12.8 4.21 8.36 8.01 8.68 10.8 12 7.19 8.89 11.4 8.38 5.63 9 8.78 4.02 8.89 8.26 8.63 10.3 14.3 10.8 6.8 9.89 6.41 7.87 9.79 6.15 1.74 12.7 8.44 10.1 0 2.35 11.8 10.9 12.2 3.73 5.07 8.9 11.2 4.28 7.02 7.75 6.71 7.32 8.88 1.97 6.71 8.11 4.8 5.5 9.72 9.57 5.71 1.74 5.54 9.29 7.38 0 0 9.8 9.33 0.66 4.02 6.54 11.7 8.1 11.6 7.58 11.6 5.86 10.3 6.67 5.41 10.6 3.37 11.9 10.2 10.3 6.88 4.54 5.22 7.03 1.97 10.2 9.48 8.57 9.32 4.16 12 8.78 3.96 5.64 3 6.84 9.94 2.77 5.07 11.1 10.5 1.12 10.3 9.9 7.14 11.8 3.37 5.74 8.77 10.3 5.69 4.21 4.67 7.47 10.6 8.21 4.34 10.2 7.93 7.86 1.97 9.55 1.74 10.6 3.52 4.95 5.58 10.3 9.11 11.2 8.48 6.81 10.8 9.97 9.12 9.34 6.19 11.7 3.52 9.37 7.81 6.42 6.93 3.73 1.12 0 7.66 10.1 7.1 10.4 10.3 10 13.9 5.71 4.97 7.8 8.32 12 4.86 8.67 9.06 11.1 7.96 6.24 5.93 8.52 5.63 7.96 9.68 6.84 8.84 9.67 6.45 6.45 11 8.11 10 5 8.39 3 7.59 7.02 3.45 14.7 9.05 5.52 9.42 6.37 1.97 3.66 6.87 2.35 10.2 8.58 0 10.4 9.49 9.59 9.94 7.79 9.58 9.49 9.59 10.3 8.62 8.24 3.91 9.03 9.4 4.77 9.84 10 6.39 6.84 10.4 8.52 9.94 9.83 9.21 9.93 0.66 6.8 9.36 10.6 8.91 7.96 8.69 7.67 0.66 13.9 11.9 7.21 9.95 7.49 6.07 7.81 3.6 9.49 8.03 8.4 12.8 11.8 4.97 6.91 7.8 11.8 6.03 10.7 11.3 10.7 11.3 8.99 9.19 11.2 8.66 9.9 7.24 10.5 7.05 7.66 8.53 9.04 10.3 7.66 5.19 6 4.61 8.92 2.35 9.14 7.82 7.81 8.92 7.84 9.04 6.14 10.2 4.16 4.02 9.84 8.89 8.3 8.91 10.1 4.46 10.2 8.1 9.63 8.97 3.69 8.86 4.42 7.15 7.63 6.65 3.29 7.58 11 7.26 2.64 8.75 10.2 8.12 2.89 6.84 6.47 1.74 9.59 6.94 9.75 10 8.83 9.73 5.15 8.6 10.1 10 10.2 10.1 8.37 9.35 9.32 11.3 11.1 10.6 8.93 9.78 9.33 3.29 1.74 5.52 8.22 9.77 4.8 10.1 1.97 6.66 8.15 5.97 10.6 9.34 6.53 2.35 8.21 6.2 7.63 7.33 6.44 13 6.88 1.97 10.2 10 9.54 4.54 12.1 4.26 2.5 2.5 1.12 12.1 9.19 3 10.2 8.82 8.9 10.7 8.73 10.7 9.76 8.09 12.8 12.4 9.57 10.2 8.54 9.86 10.5 9.5 9.06 7.76 10.4 12.6 9.35 9.58 12.6 11.5 10.9 13.1 7.27 6.54 9.66 9.5 5.96 10.3 10.8 10.5 10.3 3.37 11.4 9.77 10.5 9.75 9.86 9.31 6.98 6.46 7.67 6.26 6 9.36 8.35 9.34 7.77 5.28 11 11.5 10.3 9.46 1.46 9.39 10.2 10.5 11.1 10.6 10.4 9.11 8.86 3.1 9.44 0 0.66 12.9 4.38 11.3 11.6 10.2 12.2 7.4 8.43 6.88 10.4 10.9 12.8 11 11.4 7.94 11.6 8.56 7.19 9.71 10.4 8.61 10.8 12.2 7.29 10.3 9.52 9.09 11.6 11.9 12.3 4.67 8.85 5.12 6.71 6.82 6.5 11.1 0 9.52 12.4 10.6 12.8 11.4 11.6 9.93 11.6 11.5 10.1 10.5 9.18 11.7 9.04 8.7 8.27 1.97 9.05 6.36 7.26 10.1 6.42 8.94 8.76 8.84 4.92 2.5 4.54 9.68 8.59 7.45 9.49 8.93 2.64 9.95 8.79 11.9 12 7.16 10.5 10.2 10.7 11 7.71 3.96 1.74 8.56 7.55 11 0.66 6.11 10.2 8.53 1.97 6.78 10.8 9.94 12.8 1.97 6.11 11.8 9.64 8.17 9.23 7.78 0 0 8.22 12.3 2.77 5.22 1.46 12.2 9.79 0 5.52 7.75 3.37 9.87 6.89 3.66 3.37 11.3 7.19 4.94 12.3 9.89 6.22 7.55 11.3 8.2 9.39 8.88 7.71 6.81 7.92 11.2 11.1 5.96 8.75 10.7 6.1 5.77 0 9.32 7.12 9.36 12.5 10.1 15.6 11.8 9.58 2.5 6.25 5.45 3.11 10 7.85 10.6 8.58 8.66 7.49 10.4 5.93 9.34 11.4 10.3 10.7 8.78 0.66 0 7.56 8.89 0 7.16 5.88 9.16 4.21 6.81 10.1 0.66 8.73 7.18 0 9.06 12.6 4.67 9.98 10.2 13.4 4.54 10.2 8.02 10.5 6.73 9.78 8.56 8.55 9.47 8.71 3.1 9.75 8.88 11.8 9.5 10.9 5.41 10.8 9.47 11.8 9.53 8.35 10.5 11.4 6.88 7.8 10.8 5.3 6.66 9.59 4.34 10.2 12.9 0 0.66 7.87 9.46 4.92 9.72 9.49 9.29 10.5 7.35 10.6 3.37 7.57 9.33 6.94 7.52 5.1 11.3 3.79 7.19 8.43 7.73 1.97 10.6 9.39 7.61 9.46 16.6 16.2 15.6 14.6 10.7 9.9 15.6 5.76 16.6 13.2 14.9 15.6 15.4 16.2 15.4 13.4 16 12.3 15.9 4.77 13.7 13.2 11.3 14.9 15 14.7 15.2 15.2 15.8 15.3 15.2 15.5 14.5 14.7 12.6 15.5 15.5 14.2 9.55 11.2 14.7 5.92 15.8 15.9 15.1 11.6 9.66 13.1 13 15.5 15.8 12.8 15.6 4.81 2.5 4.12 6.76 7.71 14.7 1.46 3.79 16.5 11.2 10.1 10.3 9.84 10.6 14.2 16 15.4 14 15.9 14.3 13.8 14.8 14.7 14.2 14.8 15.1 10.6 16.1 15.5 15.3 13.7 14.7 15.4 14.5 10.4 9.93 14.2 11.2 13.2 5.37 10.2 13.3 9.48 9.35 5.8 9.51 1.97 7.3 10.2 9.43 9.71 7.73 10.4 9.87 10.1 4.61 2.77 4.92 2.4 5.45 10.4 4.67 1.97 8.31 0.66 11.2 3 3.52 11.8 13 0 9.53 8.01 6.47 8.92 10.3 11.3 10.8 6.95 9.02 11.1 10.2 12.1 14 7.55 9.91 10.8 10.4 12 5.07 9.63 9.99 9.02 13.7 6.94 8.67 7.88 6.86 5.26 2.77 2.77 1.97 12.2 5.02 3 3.79 3.6 8.88 5.52 7.57 8.7 8.91 12.4 0 4.3 8.61 6.48 6.43 1.12 5.66 8.01 1.74 9.27 9.26 1.74 3.37 4.61 0 8.87 1.46 3.45 5.54 2.17 1.12 8.71 10.4 10.5 8.09 2.17 8.74 11 11.7 7.18 9.28 11.2 7.09 9.58 9.71 10.6 10.1 9.97 10.1 8.49 3.6 8.79 8.67 6.8 6.46 10 10.4 10.3 8.13 7.84 10.8 4.97 4.33 7.74 10.9 10.8 10.2 6.89 9.41 4.12 0.71 9.46 7.22 7.35 8.43 6.64 8.4 7.18 9.7 6.13 6.9 11.3 6.87 11.4 1.46 9.89 3.1 9.36 4.26 7.83 6.58 8.15 8.7 3.73 11.8 7.94 7.39 3.91 5.99 6.63 9.99 10.2 8.99 3.96 11.4 3.66 4.21 6.72 8.84 0 6.17 8.26 13 6.25 14 7.85 3 6.45 5.17 8.05 12.7 7.73 6.29 4.94 3 2.64 4.54 10.3 10.9 10.7 8.1 8.8 13.3 6.29 10.1 6.66 3.2 8.73 5.01 6.91 8.21 2.77 10.2 6.1 8.5 1.74 9.68 0 11.5 8.52 4.84 7.58 8.19 8.03 12.1 5.78 9.79 10.5 7.51 8.99 5.28 3.66 5.05 7.24 4.02 9.77 12.5 1.46 9.86 7.77 9.38 10.7 12.6 10.2 9.7 8.17 10.8 8.16 9.62 6.92 9.82 10.7 8.98 9.05 4.16 8.66 6.39 7.62 9.44 2.5 0.66 4.94 3 12.6 2.64 12.1 12.5 4.54 8.08 6.31 6.35 9.78 7.67 10.3 7.18 7.07 10.9 3.6 4.89 4.89 3.8 13.3 4.83 5.24 13 10.9 8.28 11.1 11.6 9.4 6.55 10.1 7.02 6.62 9.4 9.43 8.38 10.1 5.12 9.56 4.92 4.02 1.12 2.17 5.58 11.2 9.72 9.9 6.93 11.1 9.18 1.12 4.26 11.4 7.38 9.16 5.99 1.12 9.43 8.78 4.07 7.54 6.49 6.26 8.75 0.66 1.12 4.67 7.54 1.12 10.2 10 5.74 9.45 9.11 8.65 5.39 1.46 9.35 8.72 5.15 7.93 7.42 8.32 7.13 2.35 3.29 5.19 8.01 3 9.94 9.65 6.46 7.26 7.42 9.11 10.5 8.34 10.5 9.02 10.8 9.84 8.27 9.58 8.45 10.6 8.25 3.73 5.99 0 2.5 5.56 5.85 4.57 5.24 9.19 3.96 5.64 3 11.7 5.26 5.02 10 2.17 11.7 0.66 3.2 0 10.4 10.3 6.14 1.74 10.8 1.18 0 7.05 2.17 9.53 8.54 7.31 1.74 3.39 2.64 0.66 11.3 6.13 6.73 5.57 6.01 0 3.2 3.2 3.37 4.97 4.3 7.63 9.27 11.1 1.97 9.85 1.46 1.74 3.1 9.18 3.37 8.65 3 10.9 2.64 9.88 6.07 5.73 11.2 0 3.2 7.7 11.4 8.29 5.93 10.2 0 6.11 1.12 0.66 3.2 2.17 9.22 8.65 6.6 6.54 9.58 10.7 12.4 8.19 6.45 9.5 10.3 2.64 1.12 11.8 10.4 9.11 9.81 9.63 11.1 8.58 6.45 8.87 11.9 10.8 12.1 10.4 9.85 9.66 5.45 9.64 11.1 8.01 7.96 11.3 9.15 9.94 10.7 9.78 10.4 9.24 9.39 9.78 8.56 9.75 9.05 6.88 9.2 7.22 9.4 5.96 0 10.3 11.4 9.45 6.81 9.36 6.91 7.68 0.66 10.7 12.6 9.73 5.5 9.86 12.3 4.64 9.19 7.15 1.97 7.77 7.41 10.3 10.5 6.61 8.95 9.69 7.35 11.2 1.74 10.4 11.9 9.6 8.76 10.8 9.42 8.52 12.6 12.5 7.14 6.31 6.05 9.18 6.98 8.46 8.51 9.32 2.33 5.26 5.02 7.87 6.44 7.87 3.29 8.25 6.84 6.96 4.26 9.9 2.17 9.97 9.23 5.63 7.31 10.3 11.4 4.71 9.93 7.52 10.4 7.61 7.1 12 9.9 10.8 0 11.1 9.55 10.1 8.69 9.81 10.6 12.1 10.6 10.5 9.95 7.69 9.72 10.3 10.1 0.66 5.45 12.3 8.95 10.3 8.54 6.66 9.45 4.54 10.6 4.92 6.22 4.67 0.66 7.93 5.43 10.9 9.16 9.01 3.6 8.39 3.6 4.77 2.17 5.3 6.01 8.5 9.41 8.2 10.4 9.93 9.44 10.1 10.2 2.64 12.7 14.6 8.17 10.5 10.6 4.71 10.7 8.11 10.9 10.4 9.81 3.66 8.73 6.87 6.6 4.42 6.29 11.4 0 10.5 10.2 5.15 5.3 9.59 8.22 11.1 8.39 9.31 8.26 7.74 6.88 10.2 11.1 10.2 10.1 4.02 11.9 3.2 0.66 3.1 3.37 8.66 0 1.46 5.66 8.15 2.35 4.5 6.72 4.8 0 1.46 7.57 6.71 7.54 9.47 3.73 4.83 3 1.74 3.29 7.41 11 9.39 7.23 10.9 1.12 10.8 5.15 6.22 1.97 11.7 6.68 4.3 2.18 6.5 11 1.74 4.83 6.6 1.46 7.28 0 11.2 10.9 0.66 1.97 2.64 9.15 8.52 1.46 8.92 1.12 3.29 7.79 0 7.19 7.88 6.48 2.35 4.97 9.58 1.97 1.97 7.97 3.92 5.52 0 6.16 0 12.2 1.97 4.38 8.83 8.84 9.55 8.95 7.31 9.15 3.91 3.91 10.3 8.69 8.76 11.6 10.4 11.8 3.1 11.4 7.28 9.8 8.15 6.22 10.4 8.56 6.94 11.3 10.9 9.26 12.2 5.97 8.24 10 11.1 9.58 8.26 11.1 9.32 10 10.4 5.1 7.75 6.67 11.7 8.85 10.3 10.2 11.3 9.39 4.57 7.68 7.9 8.12 2.17 6.07 8.13 11.6 9.63 11.7 10.3 12.1 7.33 8.05 7.86 12 3.99 10.7 10.1 10 8 9.27 13.4 11 12.1 4.21 5.43 3.91 7.63 10.2 8.49 8.22 9.53 7.73 6.85 7.09 13.2 11.5 9.4 12.5 9.77 9.25 10.3 9.76 12.3 11.4 10.1 10.6 10 13.1 11.4 9.86 5.52 11.4 9.91 9.73 10.7 1.74 13 2.77 11.6 11.1 11.2 10.4 11.5 12.5 11.2 9.48 9.19 11.6 10.2 4.8 12.6 7.86 5.96 10.4 10.8 9.01 9.92 10.2 7.78 9.91 7.11 12.4 5.77 11.8 8.89 10.7 6.29 2.35 8.25 1.97 12.2 5.1 14.6 7.05 10.4 8.78 11.8 0 5.26 12 11.3 9.86 11.4 7.92 6.32 10.1 5.56 13 12 10.5 11.7 11.9 13.4 10 10.6 7.15 10.7 10.8 8.97 9.31 12.4 8.01 10.4 11.8 10.5 10.3 12.2 13.3 11.9 13.2 11.3 2.89 3.52 0 11 8.95 12.6 12.9 4.16 11.2 3.73 10.7 10.3 11.7 4.42 8 10.4 4.57 2.89 2.5 1.46 3.1 4.21 2.64 3.59 11.9 2.63 1.97 2.17 4.31 11 11.3 8.37 9.14 1.12 6.08 10.1 8.73 8.73 8.85 8.3 5.59 4.89 1.46 6.8 10.8 3.85 3.85 6 6.07 9.4 9.65 10.4 9.14 12.1 9.67 8.62 8.92 9.36 1.46 14.6 10.7 10.7 10.2 11.5 3.73 11.4 9.09 9.97 9.96 12.6 9.29 9.78 7.59 8.78 9.71 7.47 11.4 9.42 2.17 7.69 4.3 5.54 6.94 10.8 5.58 9.37 1.46 5.15 0 10.4 7.56 4.38 10.6 7.06 8.93 8.73 8.38 7.54 13.7 6.53 10.3 12 8.94 11 11.1 9.19 8.66 6.19 8.57 4.61 0.66 12.6 13.8 10.1 9.17 12.6 10.4 9.19 10.4 9.62 1.74 8.96 11.5 9.46 11.8 8.8 9.87 7.86 7.85 4.26 4.5 4.34 9.3 10.9 9.47 11.7 3.66 3.91 7.47 9.71 3.1 0.66 12.3 0 10.6 8.78 12.6 1.74 11.1 7.47 9.01 7.74 9.47 9.93 2.17 11.7 7.88 7.24 9.59 10.1 10.6 0 7.5 10.1 4.12 12.3 0 0 10.4 4.07 6.77 6.57 10.8 10.9 8.71 1.12 12.7 8.9 7.16 9.92 5.82 3.73 8.92 14.1 5.45 6.5 9.52 0.66 9.11 9.29 3.66 10.7 6.14 8.93 9.42 8.99 8.95 8.41 10.5 10.8 8.61 9.73 9.71 7.3 2.64 8.25 4.89 5.45 8.58 8.52 8.39 8.43 3.96 9.68 9.11 2.35 8.96 8.22 9.19 11.1 4.64 12.8 8.96 7.93 9.72 7.71 9 12.3 8.86 1.12 11.2 4.97 9.15 8.49 0 7.74 9.23 10.8 10.3 7.77 7.93 11.8 11.1 12 4.42 10.9 11.1 8.21 9.79 12.9 1.12 10.6 9.09 11.1 7.77 3.73 12.1 11.8 4.21 5.05 5.02 6.39 15.4 11.3 6.16 7.93 10.5 8.28 7.79 11.8 9.48 10.1 8.75 9.07 14.1 8.43 9.3 7.42 0.66 3.96 9.28 8.37 7.8 8.29 2.17 10.7 7.88 3.37 1.12 0 0.66 7.92 1.12 10.8 8.72 10.6 11.2 6.65 3.96 7.04 11.6 7.98 11.3 9.2 9.4 10.6 4.26 6.72 13.6 9.46 11.2 1.12 12.4 12.4 12.7 10.4 11.8 12.4 9.85 9.55 10.9 9.25 17.2 0 8.39 7.78 9.15 14.8 7.51 9.04 6.5 8.07 6.04 5.19 13.4 0 13.2 9.33 8.26 5.43 0.66 5.35 0 1.12 3.2 9.67 8.07 1.12 3.91 3.29 10.3 9.44 11.2 0 10.8 2.17 9.9 11.6 10.3 9.02 8.26 10.7 12.5 9.98 11.3 12.3 9.02 7.05 8.26 5.71 7.36 7.79 8.77 8.89 4.3 3.37 2.89 8.01 10.5 6.03 11.3 3.2 5.37 5.79 5.95 6.93 4.12 8.2 10.1 3.79 8.91 10.4 10.3 5.07 8.14 0 3.29 7.42 12.3 7.56 8.25 0.66 9.6 8.57 8.1 2.96 9.22 10.2 7.27 8.35 5.92 3.37 5.37 9.16 7.54 6.5 14.3 4.86 8.75 0 6.48 0.66 4.02 3.52 9.03 5.05 8.77 1.97 2.77 9.33 4.16 8.59 4.97 5.28 4.9 8.61 1.7 3.79 4.61 6.31 2.64 6.16 8.59 3.37 4.8 1.74 8.27 6.38 1.74 0 7.62 12.7 8.44 1.46 9.58 1.74 4.3 10.5 4.64 7.7 3.52 8.53 10.3 0 1.12 4.3 6.56 6.01 9.08 7.16 6.88 1.46 8.36 8.69 6.16 8.96 2.17 9.66 5.37 7.9 7.13 7.76 3.91 7.07 3.52 11.6 4.34 13.8 0 13.9 14.5 13.1 1.46 8.93 9.89 10.6 8.52 10.7 11.9 11 9.62 10.7 10.6 10.1 11.6 3.66 11.3 11.8 11.5 9.76 10.3 8.73 11.3 9.95 11.4 8.17 8.84 0 5.5 8.19 5.5 11 7.78 9.89 5.1 11.9 9.96 1.97 9.52 8.91 9.77 9.85 10.1 11.1 6.2 2.5 12.2 9.31 12.8 12.2 11.3 10.2 11.1 10.2 9.91 9.46 12 9.14 2.77 10.2 12.1 8.16 8.52 11.1 11.9 4.86 10.2 9.77 6.07 9.51 13.3 12 10.7 10.5 6.03 12.3 10.7 6.39 3.91 8.97 0 12.7 12.5 11 6.33 9.26 4.34 6.78 8.39 8.03 8.18 4.5 3.85 3.73 10.2 10.7 5.85 7.98 12.2 11.7 7.34 8.4 11 8.58 10.4 10.2 10.2 7.27 2.77 3.1 7.12 4.12 0 8.84 2.17 4.54 3.91 4.77 2.64 1.46 8.76 7.47 1.97 13.9 1.74 0.66 1.12 6.21 8.59 9.67 7.05 10.2 0.66 10.9 9.65 3.79 7.54 6.03 7.47 12.5 8.21 10.5 10.3 11.7 9.1 14.2 12 9.75 13.7 6.44 12.5 14.6 4.92 12.8 8.26 10.1 9.44 6.64 10.8 9.94 5.41 9.06 5.59 13.7 8.54 9.17 7.96 8.42 8.27 6.48 8.33 6.24 7.25 7.15 9.93 10.7 7.98 11.7 8.52 7.55 3.29 10.1 10.3 10.2 6.61 9.47 8.94 8.49 6.81 10.1 9.21 7.43 6.37 2.5 1.12 5.92 7.54 6.61 8.82 8.42 9.49 10.2 6.48 1.12 10 2.64 7.58 8.12 8.68 3.29 6.7 5.48 5.8 3.93 10.7 5.3 3.29 2.64 2.64 0.66 1.74 3 6.88 8.91 6.26 8.61 7.14 7.35 7.72 7.22 7.83 9.66 6.47 7.15 9.24 8.06 10.5 8.48 11.1 9.29 9.52 9.52 6.09 2.89 8.55 0.66 9.08 6.13 10.6 8.24 5.77 2.77 7.01 5.43 7.54 9.09 7.52 8 6.09 7.88 9.33 6.61 8 9.14 7.11 11.1 7.42 7.89 6.42 9.17 11.6 2.5 10.3 9.28 4.42 2.35 11.9 11.6 6.95 7.4 5.47 8.95 0 8.51 7.05 7.89 6.16 7.29 8.02 5.86 0 1.74 9.12 7.9 5.73 5.28 10.6 9.19 9.52 12.1 9.16 11.2 6.24 9.01 4.53 13.3 8.12 11.2 5.71 7.04 12.9 11.1 7.87 8.87 11.6 11.3 10.1 0 5.54 3.1 8.97 9.17 10.1 7.47 8.74 11 11 9.72 9.59 11.1 11.6 12.3 8.69 6.6 9.99 4.97 10.7 11.5 4.57 6.29 9.11 10.9 9.84 3.45 8.69 1.12 4.38 7.23 9.17 3.6 10.3 12 8.33 10.5 8.97 9.44 10.1 9.1 9.41 1.74 9.79 11 8.49 6.52 8.59 9.99 8.11 2.35 13.3 8.87 7.27 5.3 9.81 10.6 9.66 9.49 10.5 6.62 10.7 11.5 6.42 10.9 9.85 10.1 12.4 8.94 9.84 6.69 10.1 9.77 10.7 9.3 9.17 4.21 8.1 7.58 10.4 6.63 5.71 8.99 7.79 10.6 10.4 10.2 11.2 11.4 10.1 5.43 9.46 10.8 8.37 6.73 4.26 10.2 10.8 9.42 12.8 10.2 9.15 10.6 10.1 8.62 7.54 8.35 8.87 11.3 10.3 5.85 10.3 10.9 14.5 9.07 8.38 6.57 6.71 9.62 7.61 4.95 8.73 9.87 8.15 8.25 9.92 9.55 13.2 7.78 8.77 0 0.66 9.24 12.6 9.72 11.2 6.19 3.52 11 7.81 9.23 8.07 9.19 8.83 10 8.19 9.3 2.64 10.2 12.7 10.2 10.7 12.7 9.79 8.83 7.23 8.06 9.36 5.33 1.12 3.73 10.7 5.43 9.87 8.4 6.63 2.64 2.17 5.33 4.97 4.65 11.2 8.78 2.89 0.66 7.79 11 10.5 8.94 3.29 9.55 8.2 10.6 3.45 2.89 4.34 1.98 10.4 7.84 6.59 10.3 8.91 10.3 7.66 8.39 8.49 10.1 10.7 9.22 7.67 8.89 12 10.2 11.2 9.14 9.09 9.16 7.35 4.38 9.73 10.6 12.1 5.15 7.32 8.72 7.36 5.56 8.21 7.3 4.12 5.15 9.08 9.85 4.86 8.04 5.99 3.45 7.02 4.8 9.65 5.92 8.93 3.91 5.37 8.5 6.37 7.94 7.42 8.52 10.7 5.85 9.11 8.37 5.71 8.25 9.71 8.41 5.58 9.02 8.79 7.64 9.75 9.62 4.83 8.71 8.31 7.91 10.1 9.14 7.25 9.84 9.84 8.17 6.48 8.52 5.88 11.5 8.93 9.87 7.58 1.97 7.54 9.15 7.44 9.69 7.06 8.14 7.83 9.55 14.1 5.02 8.79 9.83 9.75 7.9 7.38 5.24 8.19 8.92 9.36 9.63 8.35 10.4 6.88 10.3 8.83 10.1 8.11 7.31 7.8 10.4 10.6 11.4 10 10.4 1.12 7.42 10.8 7.32 9.64 6.98 8.71 9.27 9 2.5 5.58 10.7 7.08 8.06 6.94 3.66 7.15 8.87 7.36 9.37 0 10.8 3.91 10.5 9.58 7.71 9.42 7.71 9.18 8.6 6.94 8.19 11.1 10.1 10.8 8.85 10.8 3.73 9.63 6.43 8.48 10.1 6.65 6.56 2.5 3.6 5.15 10.1 8.61 4.38 9.5 11.8 8.74 10.7 6.97 9.45 8.58 8.96 6.95 3.29 2.17 9.06 5.95 6.61 8.82 5.93 10.9 8.01 10.5 6.38 7.04 2.35 5.77 8.49 6.09 9.35 3.96 7.94 6.31 7.32 3 8.87 8.41 6.77 7.25 8.41 7.68 6.96 2.17 9.29 10.1 5.41 8.79 8.3 3.6 6.48 1.97 6.49 7.24 8.12 5.26 7.32 1.74 8.95 2.17 0 7.17 9.81 1.74 6.86 0 5.47 9.06 6.58 0 5.88 9.41 9.62 11.3 4.34 7.92 9.39 7.16 12.1 9.49 9.95 9.92 5.19 8.56 10.6 5.52 9.4 9.8 9.13 5.66 10.5 7.67 7.22 9.7 10.3 10.2 5.85 7.61 10 9.44 5 10.4 9.23 11.8 5.91 6.74 0.66 10.7 9.11 7.97 4.38 8.67 9.39 12.2 6.88 1.97 9.93 6.84 5.73 6.98 7.38 5.41 0 11.8 1.12 9.1 5.95 6.57 11.5 9.56 5.69 9.52 7.16 6.64 8.97 1.97 8.49 9.14 1.12 8.83 8.91 7.44 6.75 10.9 8.44 7.53 7 4.54 8.8 7.87 11.1 4.16 6.72 11.4 8.16 7.78 7.62 4.64 7.62 5 4.86 9.75 8.8 0 10.6 3 11.5 12.1 1.74 8.08 11.6 7.81 9.29 7.39 2.89 8.41 9.9 10 9.27 7.92 7.79 8.8 7.36 9.65 7.44 10.4 9.73 9.4 8.48 7.88 5.07 0.66 0.66 3.29 7.33 6.75 6.77 8.29 1.12 5.69 5.05 0 8.84 12.6 12.6 6.01 10.2 4.67 9.79 4.34 0 8.97 6.46 6.17 2.77 8.01 9.09 9.35 8.17 10.3 8.93 6.37 10.2 9.47 10.2 8.56 9.3 10.1 9.82 10.7 9.15 7.67 9.25 5.97 8.82 8.69 6.35 7.55 5.63 6.6 9.12 3.2 9.26 7.76 10.7 11.2 10.5 8.03 9.07 8.63 4.54 10.2 8.97 7.27 9.1 10.7 9.98 10.4 7.54 9.31 10.2 7.36 5.26 10.7 9.13 6.75 8.5 10.5 7.42 9.52 9.21 10.3 2.89 10.9 10.4 7.85 9.24 1.74 9.14 10.4 9.65 3 10.4 7.31 5.52 10.6 8.9 9.33 10 9.79 3.73 12 8.8 4.46 9.16 10.9 8.64 6.4 7.29 11 8.89 5.58 9.78 12.6 6.82 8.02 5.61 7.86 7.35 9.02 5.37 7 7.37 8.73 6.61 9.27 9.68 4.83 3 2.35 11.6 7.93 2.89 11.1 8.81 0 8.04 4.54 11.5 8.22 7.73 11.2 9.76 2.77 10 4.86 9.58 2.17 3.37 11.4 11.8 13.2 9.54 4.71 9.6 11.6 6.03 8.69 3.2 4.67 9.62 8.91 8.45 11.3 9.07 10.2 3.73 14 2.35 1.12 7.78 8.12 8.65 8.22 10.5 5.56 6.86 4.85 1.97 9.18 11.8 9.91 6.39 10.8 8.63 7.94 6.64 11 6.25 10.8 11.1 10.1 12.9 9.11 12.4 8.51 9.43 7.88 9.04 7.81 6.99 10.3 10.1 9.02 7.76 9.5 3.37 10.8 9.74 9.68 11.1 8.09 10.1 4.61 6.08 9 3.17 10.8 8.73 9.27 3.96 0.66 4.94 12.1 12.6 8.41 1.46 3.1 10.5 3.73 10.1 8.86 10.2 11.1 12.4 15.2 2.64 4.5 0.66 5.39 3.37 12.1 11 10.5 5.26 4.21 7.63 12.2 10.2 9.9 3.45 10.3 1.46 0.66 12.1 5.02 9.93 9.31 9.01 10.2 8.8 4.16 7.71 9.16 8.69 9.65 5.8 10.3 9.47 10.2 9.7 8.68 9.88 9.57 11.9 9.67 8.92 12.3 0.66 6.89 5.86 8.77 9.09 9.02 9.5 10.3 3.96 10.9 9.81 7.36 11.5 10.3 11.5 9.45 9.33 9.42 8.87 4.67 7.69 9.91 1.46 0.66 12.1 11.1 11.7 5.96 5.58 9.85 3.52 7.39 11.4 5.06 9.97 11.1 12.4 11.6 11.8 9.49 7.45 1.46 9.53 1.46 6.98 2.5 1.12 11.5 9.05 5.19 6.1 8.49 8.61 1.74 6.2 5.74 9.1 7.31 8.85 6.37 9.54 9.36 7.3 5.95 10.3 4.04 7.99 6.78 10.3 11.1 6.42 10.1 8.44 13.2 10.3 9.92 8.98 11.5 10.8 10.8 1.74 10 10.1 6.12 10.7 10.4 7.73 10.2 0 2.35 6.2 9.25 9.66 1.74 9.13 10.4 6.67 12 14.5 9.41 10.4 6.43 8.66 9.03 1.46 10.6 7.43 10.9 9.04 11.8 8.45 10 10.5 10.6 11.2 11.2 10.1 7.63 13.8 10.7 8.16 10.1 8.03 9.52 9.37 0 10.9 0.66 10.7 11.4 6.41 7 10.2 0 10.3 10.1 12 9.5 6.1 12.1 9.62 10.1 8.88 10.8 8.83 4.77 4.64 12.6 3 9.1 11.3 9.5 8.09 10.3 7.13 0 9.7 3.52 0 0 11.6 4.61 12.4 5.17 7.1 6.8 4.83 1.46 0.66 4.5 4.16 0.66 4.64 7.15 4.94 10.9 12 11 9.97 6.74 5.05 2.64 5.96 11 7.9 0 9.22 5.72 8.52 9.35 6.46 8.96 6.84 9.07 6.7 8.67 0.66 8.23 9.51 10.6 12 9.2 1.12 6.03 0.66 6.64 5.15 0 4.54 10.2 9.14 8.49 6.72 10.6 10.4 0 6.85 1.12 3.29 1.12 0 10.1 5.64 6.52 6.84 9.19 6.93 9.01 9.13 1.74 7.99 9.23 11.8 9.18 8.28 0 8.21 8.88 11.7 10.1 0 9.18 10 10.6 7.27 4.02 8.88 2.5 4.54 11.9 1.12 7.39 9.78 6.51 5.47 7.96 9.29 8.73 3.37 9.47 9.63 1.97 1.46 10.3 9.09 8.28 9.77 6.41 10.3 5.48 8.15 11.3 10.3 7.29 3.52 3.45 8.58 6.97 7.28 9.77 8.1 9.56 4.77 9.89 10.1 1.97 5.64 8.9 9.32 10 9.29 0 5.15 2.17 8.66 1.97 1.86 9.91 5.47 8.92 9.67 5.8 7.4 10.6 8.74 5.93 8.77 4.3 3.1 9.93 5.61 4.64 0 4.97 2.35 4.38 2.64 1.97 0.66 3.85 9.02 9.4 8.44 3 10.4 10.1 7.16 10.1 7.45 6.47 11.2 9.81 8.58 7.67 8.06 2.64 0 8.54 0.66 6.24 10.8 10.4 5.8 4.12 9.76 11.6 6.5 10.3 9.34 2.5 3.66 4.74 9.14 9.74 9.45 5.07 8.43 10.6 7.82 8.43 11.6 10.6 3 6.64 1.97 7.71 7.35 7.35 7.28 10.8 8.63 0.66 9.93 10.8 9.98 8 6.66 10.7 3 4.89 0 2.35 8.22 6.01 9.75 10.8 9.52 9.3 5.64 8.2 7.29 10.5 2.89 8.38 5.74 2.5 5.5 8.56 5.15 7.24 8.85 7.2 9.27 8.58 10.3 9.97 7.05 8 9.49 7.5 7.62 6.38 6.08 6.75 5.95 9.57 10.1 14 10.7 10.1 10.2 4.64 9.83 9.1 11 7.5 7.31 8.78 9.57 7.43 8.67 8.88 4.71 6.4 6.11 10.8 7.43 8.71 9.54 9.72 6.03 0.66 6.94 9.94 11 9.91 3.2 9.21 8.87 6.36 3.1 7.26 6.59 8.64 3.42 10.4 6.36 6.5 6.61 5.61 5.37 0 6.08 11.6 12 8.28 7.27 0 9.06 10.1 9.45 9.11 9.11 10.3 2.17 11.9 6.99 4.77 7.47 7.77 9.23 9.46 2.64 8.63 8.09 8.55 9.84 9.66 8.72 8.77 11.3 8.08 10.3 9.4 10.2 8.54 10.9 8.86 9.71 9.34 9.23 8.56 9.6 4.97 8.73 11.1 8.43 6.66 9.11 11 9.37 8.78 10.1 9.32 7.42 10 3 8.62 11.5 8.42 8.91 3.91 8.81 11.3 5.52 11.3 5.13 5.45 7.47 9.58 10.4 8.27 7.32 10.4 0 10.9 9.47 7.1 9.91 6.49 7.79 10.8 10.1 7.25 8.56 9.3 9.85 10.1 11.5 4.5 7.96 5.53 9.19 10.5 0 9.86 9.37 11 9.33 10.9 7.4 9.03 8.79 7.54 0.66 9.03 11.4 9.96 1.97 10.1 4.02 10.3 1.12 10 4.86 9.2 5.47 10.4 4.8 8.3 7.54 6.16 5.93 8.95 5.56 9.56 11.2 5.79 11.9 6.61 7.18 7.7 9.49 7.31 6.4 8.74 4.98 9.06 9.2 9.41 7.51 2.64 4.16 1.12 4.76 9.37 9.07 10.3 6.44 6.88 6.89 10.7 11.7 10.7 6.53 10.1 3.29 6.6 4.74 10.5 7.86 10 7.48 5.74 8.85 5.68 8.51 12 6.65 9.94 3.1 8.47 10.9 6.14 9.09 8.18 9.94 7.76 9.73 8.56 1.12 11.2 7.1 8.2 0.66 7.02 6.82 3.96 9.72 9.71 8.23 3.37 7.44 1.46 1.12 6 4.89 7.05 11.9 7.98 7.49 2.5 0 7.27 8.91 9.65 4.83 6.26 11 11.5 5.05 0.66 0.66 2.17 10.4 7.45 7.01 8.93 10.3 5.86 4.46 0 8.49 4.86 1.15 9.36 9.44 9.49 2.35 3.79 8.28 4.78 4.07 4.54 0 10.4 10.7 2.35 4.54 8.85 12.8 7.73 9.5 3.37 10.8 9.33 6.13 4.67 11.5 6.44 12.5 5.63 6.46 0.66 0 9.57 8.3 5.54 7.86 8.16 9.97 9.42 8.42 8.81 3.73 5.63 7.62 8.38 8.77 11.6 7.36 8.11 4.46 9.45 13.6 8.88 3.29 5.99 4.26 6.73 10 10.1 8.37 5.54 4.3 2.5 7.26 10.8 10.8 6.14 8.77 10.2 3.73 9.17 5.59 3.52 3.6 11 11.3 5.97 7.3 1.12 4.12 8.98 2.17 7.93 7.38 9.98 7.34 9.35 10 6.67 9.76 4.64 9.54 6.38 4.12 0.66 6.31 7.47 11.5 8.23 8.84 2.35 8.84 7.54 10.5 10.3 8.42 9.49 0 8.53 10.9 5.24 9.81 9.75 9.99 7.2 11 10.7 4.86 9.19 9.32 5.7 8.16 10.4 7.96 9.75 11.3 5.43 8.75 7.69 9.52 7.27 9.5 11.3 11 2.77 5.95 9.1 9.66 7.88 8.48 10.4 8.74 1.74 7.33 7.27 9.29 8.37 9.15 9.06 8.42 6.86 9.81 6.48 9.51 8.68 0 8.41 8.89 6.6 8.29 7.62 9.83 7.61 11.5 4.07 10.4 8.06 5 12.4 4.38 9.23 7.79 6.64 6.46 8.36 9.34 4.83 7.99 3.29 9.84 10.4 9.54 5.73 3.45 11.1 7.41 3.1 4.12 0.66 8.11 9.83 10.3 5.75 1.97 10.4 11.2 9.99 7.6 9.78 6.94 6.67 9.67 1.12 11.9 10.7 9.05 12.4 7.49 7.41 10.5 9.33 8.52 8.59 8.87 8.5 8.86 8.14 9.32 5.61 10.8 10.1 8.81 6.89 3.96 6.86 5.69 3.2 8.63 9.4 10.2 9.93 0.66 8.07 0 11.9 9.37 7.26 10.7 4.21 0 5.43 4.94 6 6.97 12.7 9.43 6.26 1.12 8.79 1.46 0.66 9.84 3.85 10.3 5.22 7.91 10.6 11.2 7.02 9.07 9.19 10.5 0.66 9.26 10.2 4.64 8.82 10.8 9.04 11 7.98 8.02 9.56 9.97 3.52 5.12 8.92 2.5 15.8 12 2.35 9.14 8.88 10.1 5.17 8.03 9.17 9.4 3.45 7.29 5.91 10.5 8.81 9.43 9.73 6.46 12.2 10.2 8.23 9.12 9.59 8.64 10.2 7.87 7.01 7.99 9.54 3.29 2.34 9.28 8.33 1.97 1.12 8.42 3.6 3.91 6.28 9.18 8.17 3.6 11.3 7.76 7.37 8.49 4.16 10.7 8.19 11.7 10.8 8.96 2 10.7 10.9 10.2 10.2 8.51 8.79 11.4 8.99 9.52 10 9.73 9.29 4.41 6.33 7.62 8.24 9.87 6.86 0 1.46 9.49 9.53 8.82 9.28 10.3 5.83 4.74 8.07 14.9 10.5 9.31 7.35 10.7 1.46 4.83 9.55 9.5 10.6 9.25 10.7 7.92 8.65 9.13 8.15 4.38 4.74 2.35 9.56 11.7 11.1 10 2.77 9 5.56 4.71 8.91 5.26 6.14 5.39 9.27 10.2 10.2 10.2 10.2 7.13 8.01 11.4 9.39 10.7 11 11.9 12.7 6.88 12.8 11.8 12.1 12.3 13.3 10.6 7.89 11.5 10.4 10.8 7.9 10.7 4.83 8.43 10.3 8.21 10.5 11.7 11.6 0 7.36 10.6 8.15 10.2 8.75 4.71 11.9 2.4 9.01 9.96 10.8 8.17 8.33 4.21 1.46 10.5 8.61 7.56 9.94 9.01 5.47 11.4 13.8 11.4 10.3 10.7 10.8 8.23 9.38 5.66 11 10.2 9.53 7.51 11.7 4.64 9.42 7.4 8.36 0 9.64 9.8 10.9 4.46 2.17 3.6 1.12 11.7 11.9 11.2 14 8.95 12.2 13.2 12.4 13.1 9.76 6.64 8.59 11.4 9.44 12.8 8.69 7.31 9.01 0.66 10.3 6.25 1.74 9.2 3.85 8.52 5.28 6.17 2.17 9.07 4.8 9.28 9.5 0 7.33 10.4 10.7 9.26 10.8 9.76 2.35 5.56 0 1.46 9.8 8.98 2.77 12.1 10.3 2.35 10.6 7.92 4.42 7.38 3.91 10.1 4.21 10.8 7.41 10.6 7.61 7.53 3.29 9.56 10.1 11.1 5.92 8.52 0 3.73 3.1 9.95 3.52 3 6.22 9.13 7.95 4.65 13.4 8.86 6.24 9.22 6.54 2.17 9.64 3.1 8.68 9.55 8.1 8.48 8.77 6.47 5.86 9.38 9.24 10.1 10.4 9.17 2.35 1.12 7.14 12.9 11.1 10.5 10.8 8.95 9.85 9.08 10.1 11.8 11.2 8.9 11.3 8.9 8.73 10.5 10.4 11.4 10.7 10.9 8.96 10.4 1.12 5.89 0 11.4 6.67 11.6 9.35 7.67 1.74 7.61 6.71 2.35 9.92 9.51 5.92 8.32 8.55 10.2 10.3 10.2 9.56 4.81 4.74 2.92 9.17 10.9 11 7.99 8.98 7 10.7 10.3 8.71 8.78 1.97 11.8 9.66 10.3 0.66 1.46 5.69 12.6 0.66 0 8.25 8.71 10.6 7.41 1.46 9.7 7.35 4.94 5.17 7.58 6.82 3.79 6.29 2.17 3.45 1.46 1.97 8.57 4.5 7.6 8.15 10.4 8.37 5.58 2.35 9.82 6.19 8.58 0 5.38 7.51 1.53 0 8.21 0 8.59 10.4 6.01 7.17 10.9 9.66 12 7.75 1.12 6.94 9.83 11.7 11.6 9.7 10.6 10.7 6.87 7.19 7.69 3.73 4.12 8.65 12 11.8 2.5 6.03 5.97 8.85 7.38 11.3 8.23 4.12 10.5 10.1 10.3 0 11.1 6.76 7.34 5.92 4.97 7.34 7 11.6 9.1 9.98 7.44 8.55 8.28 11.1 4.77 4.83 5.26 10.8 5.12 8.43 8.12 3.91 8.05 10.7 8.43 1.74 8.9 2.17 6.13 8.32 5.15 10.7 9.95 7.42 8.79 9.74 9.24 0.66 5.8 8.23 9.01 3.73 1.12 6.36 8.71 8.51 6.43 7.59 8.91 4.51 10.2 7.28 3.45 11 9.6 9.86 10.9 9.08 8.88 6.54 9.48 9.14 9.24 9.07 15 7.29 4.64 4.89 6.67 11.4 3.1 10.4 10.3 9.27 7.08 4.83 10.7 4.34 7.77 9.51 6.24 4.64 7.37 11.9 9.11 7.38 8.25 6.82 4.94 8.43 8.54 7.43 1.97 3.91 8.48 6.72 6.38 11.4 8.19 8.24 7.94 7.37 7.88 8.2 9.31 3.85 12 2.35 6.58 9.89 4.34 9.95 6.8 9.47 12.7 3.11 8.55 0 0 5.5 10.8 7.47 9.53 11.8 1.74 9.37 9.48 7.71 6.44 10.5 10.1 4.67 12.8 11 7 10.3 9.17 5.82 0 10.6 11.1 9.99 9.32 8.91 4.89 7.81 9.14 8.72 1.97 10.1 5.85 8.77 4.54 9.91 12.9 10.7 10.7 9.89 7.5 9.49 2.35 9.9 5.83 10.2 7.41 7.93 9.39 5.48 2.64 9.78 7.27 6.91 11.2 7.52 7.13 3.29 8.34 10.7 6.68 8.72 10.3 7.96 4.42 1.12 4.3 3.52 5.88 5.28 11.2 7.04 9.46 6.41 9.88 9.68 2.35 9.55 9.75 7.51 11.3 9.73 9.11 2.77 11.4 11.1 12.1 10.4 8.58 8.03 2.5 5.83 5.59 11.2 8.59 0.66 7.49 9.65 9.44 9.85 8.96 10.8 10.8 7.64 6.2 8.65 8.32 10.2 6.16 10.6 7 2.64 7.48 13.8 7.96 10.6 7.89 1.46 9.89 11.7 8.51 9.37 6.19 10.1 5.17 9.97 5.1 5 3.6 5.71 9.08 2.89 8.67 10.4 11.7 4.12 9.25 6.53 8.94 6.46 4.83 9.65 4.74 7.1 0.66 8.96 9.21 9.08 8.51 5.56 10.4 7.31 11.5 13.4 5.5 11.6 10.6 9.26 8.99 2.35 9.79 1.97 4.34 3.37 7.47 10.7 9.48 6.21 4.75 6.84 1.97 10.6 6.6 7.47 9.27 9.31 7.38 7.14 3.52 7.71 3.37 7.87 8.76 10.8 11.9 7.37 10 9.74 9.1 7.43 7.23 9.2 10.9 6.43 4.38 9.68 1.46 1.46 8.74 9.69 0 9.4 5.05 9.06 8.97 6.49 4.74 7.98 8.93 6.79 5.91 8.98 6.01 7.1 7.45 10.1 10.2 8.49 8.23 9.05 11.3 10.6 4.16 5.15 7.45 8.7 7.84 5.05 8.16 8.97 5.33 10.8 7.11 9.75 7.03 10.1 10.2 11.5 8.81 11.4 6.34 8.2 11.6 3.37 8.73 2.5 6.39 10 5.63 9.17 5.79 5.43 5.69 4.92 7.82 3.79 11.6 5.17 5.77 11.8 5.63 11.1 10.4 9.18 6.25 8.95 3.51 7.29 7.1 7.64 8.38 9.11 10.7 0 8.8 10.3 9.43 6.05 8.54 9.7 2.5 5.34 8.15 7.88 1.97 9.3 8.83 1.74 12.4 6.46 5.8 7.85 8.58 9.01 9.99 8.39 10.2 5 10.8 6.86 4.27 8.23 10.1 5.52 9.76 9.91 10.4 9.17 10.4 7.47 9.04 5.95 11.6 8.59 11 9.34 7.8 2.64 9.51 10.3 11.6 9.52 10.2 5.35 9.94 12 10.1 9.63 3.29 9.44 13.4 8.15 7.14 9.9 10.5 3.2 10.7 11.7 10.2 10.7 8.09 2.64 8.84 9.69 7.64 7.42 7.02 6.01 11.8 11.3 8.13 5.19 9.07 9.09 8.29 3.45 5.33 1.12 1.46 7.12 8.79 8.28 6.81 4.77 2.64 7.35 10.1 8.57 6.07 10.2 9.18 10.6 10.5 9.02 5.54 3.37 8.68 10.6 9.57 11.6 6.83 10.6 8.94 11 9.66 3.1 10.6 8.74 9.48 10.5 7.16 3.6 8.15 7.35 6.74 6.86 0.66 9.29 8.74 5.8 9.72 9.29 7.58 9.88 10.1 11.3 9.78 10.7 10.5 5.48 2.35 10.8 15.2 3.37 13 6.79 10.9 5.82 10.3 0 7.69 0 6.01 7.36 4.94 6.25 10.2 11.1 9.42 2.77 12.9 9.03 10.1 8.13 1.74 8.12 9.47 6.7 5.46 0 9.48 9.42 8.66 10.9 6.81 10 9.12 9.44 8.11 11.2 11.2 7.04 6.82 11.4 0.66 10 0 5.33 0.66 6.56 0 10.9 6.86 10.5 3.73 7.69 8.34 12.3 0 4.34 3.2 8.16 7.48 3.1 9 9.47 11.7 7.67 5.56 3.29 1.12 11.9 4.89 8.84 5.07 5.37 8.5 10.3 10 10.6 9.01 3.79 9.41 9.25 0.66 9.42 10.3 11.4 9.58 9.6 10.7 8.51 6.6 8.37 11.3 9.77 2.64 10.5 11.7 2.35 10.6 8.77 5.05 6.75 9.56 5.95 11.5 7.14 5.5 12.2 7.92 5.68 7.33 6.56 2.17 6.21 0 9.63 1.74 9.42 8.95 8.51 8.12 9.38 13.9 11 1.46 10.3 2.77 4.54 9.96 7.78 10.6 9.45 12.1 5.85 6.76 2.35 7.63 11 7.54 6.09 9.16 3.29 7.15 8.5 10.5 5.22 6.47 9.19 6.9 2.5 8.77 9.31 3 5.52 9.68 8.25 8.86 6.72 8.17 8.3 10.5 11.5 4.02 4.26 9.23 3.73 4.92 10.7 13.5 12.9 8.09 8.06 5.35 5.28 6.87 9.51 10.8 9.9 4.92 5.28 11.9 8.85 13.5 7.97 7.98 10.4 8.97 10.9 11 9.71 11 10.2 12.9 10 8.28 6.07 10.4 9.72 9.7 8.72 6.61 7.04 11.9 11.3 10.4 8.48 10.2 3.45 13 8 9.3 12.8 13.6 12.1 10.8 8.87 10.6 12.3 10.9 9.81 9.74 3.55 9.11 10.5 10.4 10.9 7.1 9.07 9.58 9.53 7.37 6.45 9.14 11.1 7.1 9.94 10.4 3.29 7.8 12.2 5.85 4.12 8.55 13.4 11 1.97 8.69 12.8 5.64 2.5 10.3 7.39 13.1 8.85 10.3 8.77 7.09 10.6 6.6 9.97 12.2 11.1 7.31 11.8 9.01 5.43 8.36 7.65 4.97 2.5 6.83 6.81 7.17 11.4 8.53 0.66 10.6 8.52 6.51 8.73 9.84 4.64 12.4 9.64 9.95 8.74 10 9.09 10.2 7.8 6.93 8.73 9.26 9.81 9.79 7.89 8.43 8.72 9.12 7.2 8.98 12 14.4 6.08 9.35 10.4 8.39 11.6 8.54 11.2 13.8 9.43 4.21 10.1 9.07 8.98 8.68 8.44 9.16 9.46 9.38 7.56 7.04 10.1 10 10.3 10.7 10.3 12.7 10.2 11.7 5.91 10.3 8.84 9.09 9.69 9.95 9.83 8.57 10.8 5.15 6.78 0 4.07 11.3 9.43 11.4 9.23 3.79 9.29 5.08 12.5 2.77 9.59 8.72 8.41 2.77 9.57 5.76 7.53 7.47 13.3 3.1 3.29 9.26 12 8.35 10.8 10.9 7.31 9.19 9 8.85 9.92 7.27 6.64 11.1 7.67 8.36 10 5.52 12.3 10.3 10.2 5.96 9.16 7.88 9.73 8.56 13.6 6.48 6.52 7.22 6.41 8.71 10.4 8.85 9.35 6.81 13.4 8.9 7.8 10 10.1 8.24 6.29 12.9 7.59 7.57 10.5 11.7 10.6 10.8 11.2 10.4 9.89 5.47 12.9 9.82 12.3 5.22 11.2 10.1 7.94 4.02 8.52 10.3 10.2 10.2 9.13 10.5 10.3 5.77 10.5 11.5 8.83 10.2 12.5 12.4 8.7 7.66 9.96 5.96 11.2 8.64 10.8 11 8.66 8.94 7.32 11.3 10.3 8.22 10.6 10.1 9.87 5.45 9.34 9.8 5.05 8.97 4.54 6.34 10.1 7.19 0.66 4.94 3.45 8.45 5.05 8.08 9.83 3.73 8.12 8.23 6.58 7.21 6.87 9.41 6.6 9.01 8.48 10.4 8.09 8.67 8.75 3.66 9.06 9.99 8.38 6.87 10.5 10.4 7.39 5.22 7.49 11.2 10.4 9.55 10.7 9.49 9.57 7.91 11.3 9.72 11.6 10.4 9.58 9.74 7.69 8.24 11.2 11.3 8.18 10.4 6.44 10.6 9.14 10.4 2.77 6.17 11 9.15 8.21 8.92 11.6 3.73 5.99 6 7.06 9.49 9.85 9.13 11.5 9.04 9.51 12 9.25 5.93 5.73 3.96 7.9 9.3 8.1 8.84 10.3 9.17 12.7 9.9 12.5 10.3 9.32 9.48 8.08 9.73 10.4 3.1 9.86 6.61 9.31 9.46 3.29 7.54 10.7 8.69 6.42 10.8 8.42 3 7.16 6.29 9.9 6.2 8.25 11.8 8.58 3.52 10.9 1.97 4.54 5.3 6.85 9.17 9.38 8.87 10.2 10 8.01 1.46 12.3 10.2 9.85 10.8 2.27 9.08 10.3 9.04 5.48 11 11.8 10.9 9.34 7.47 8.53 12.2 9.6 10.4 13.8 7.32 10 2.17 12.2 7.78 8.85
-TCGA-VQ-AA6F-01 5.1 7.57 3.26 8.44 6.67 8.55 1.69 2.85 4.64 0.27 2.22 8.07 5.01 3.8 5.57 8.31 10.5 10.7 12.6 9.69 9.06 6.99 10.5 1.72 10.2 8.24 4.01 9.43 3.68 6.75 4.16 6.97 2.65 1.22 3.92 4.61 1.82 6.11 2.25 3.46 4.79 3.82 5.34 2.03 5.16 3.48 1.53 3.59 10.4 6.71 5 5.64 7.7 11.7 5.4 2.04 6.53 1.76 6.87 7.23 8.98 5.16 8.46 4.97 3.27 3.26 5.86 6.2 10.2 3.19 3.59 5.2 3.68 4.23 0.44 -0.38 5.19 5.9 3.39 1.09 5.77 1.85 2.49 7.6 4.28 4.76 6.3 8.32 2.07 2.22 7.11 4.94 7.79 4.58 4.77 3.96 1.75 3.23 5.33 0.1 -0.32 5.58 1.17 7.26 5.37 4.04 8.88 7.88 3.64 7.27 1.87 1.33 8.48 4.04 6.74 2.23 3.25 4.37 3.11 4.28 5.91 6.14 0.8 0.89 1.45 6.88 0.9 3.18 1.45 15.2 1.47 0.75 4.14 6.79 1.66 2.96 3.76 4.41 3.38 7.92 7.5 9.43 1.88 2.28 5.53 12 0.75 11.5 1.7 3.38 4.53 0.98 6.67 9.25 11.3 4.18 2.67 2.85 10.2 3.81 6.84 8.45 3.86 -0.02 12.1 6.36 7.33 4.82 7.9 4.8 10.4 10.3 2.52 2.98 4.09 0.53 2.92 5.57 9.22 5.68 6.28 7.23 3.88 5.39 4.14 3.15 4.12 0.9 8.95 4.69 8.4 10.1 3.65 5.08 5.39 6.59 3.97 9.37 8.43 8.69 6.47 11.4 9.12 9.03 8.52 9.43 5.3 9.31 9.98 11.4 8.54 10.6 11.7 11.5 10.3 11 9.65 10.5 7 10.3 8.59 10 10.8 10.1 8.59 8.56 6.02 10.7 7.9 13.2 7.76 4.12 9.27 11.8 8.07 7.24 10.1 8.04 9.6 1.85 9.04 8.49 11.8 11.4 11.6 12.9 13.3 13 4.66 13.1 7.4 0.24 6.38 9.48 8.9 12.7 10.7 11.7 7.27 12.3 10.1 10.5 9.27 9.94 10.2 9.83 8.09 9.31 10.7 9.11 8.37 8.5 7.76 9.74 12.8 7.52 1.09 12.7 11.8 11.1 12.3 12.6 11.2 8.12 10.2 12 13.9 8.14 12.2 9.96 5.87 4 8.76 7.62 9.89 10.8 6.68 12.3 6.92 7.47 12.7 11.7 10.4 9.19 10.3 11.5 9.67 10.9 8.61 8.26 11.7 9.14 5.32 8.3 4.45 9.43 10.6 3.48 8.42 7.35 9.87 10.3 9.22 8.21 9.41 10.4 10.9 9.4 9.26 8.74 11 9.56 12 8.53 9.69 11.8 6.86 7.85 7.55 9.53 9.84 9.97 9.39 11 8.87 13.9 14.3 10.7 10.5 10.2 10.8 2.85 10.5 -0.89 5.37 9.02 6.52 10.9 8.62 4.14 7.67 10.5 9.88 9.81 8.7 8.15 10.2 8.26 7.14 3.02 8 11.1 10.3 11.8 11.2 8.05 8.29 12 3.76 9.38 9.35 8.98 8.31 9.57 10.3 11.2 5.92 9.58 7.64 9.89 8.53 9.96 11.6 9.13 5.62 10.9 9.74 1.53 7.97 6.51 8.28 11.3 9.5 9.79 7.73 10.2 10.3 11.3 10.1 4.62 8.1 5.21 12.2 11.6 8.41 10.5 9.66 9.54 7.88 6.56 8.91 8.6 5.44 11.7 6.47 10.3 10.4 10.4 3.15 11 11.6 13.1 8.24 8.24 6.94 6.47 7.15 9.63 7.12 9.13 10.3 11.2 10.2 4.78 13.2 7.94 6.72 9.06 2.89 9.17 2.42 7.49 10.2 11.8 8.37 8.65 7.31 10.4 12.2 5.35 9.42 9.36 12 4.28 11 8.5 7.86 4.37 6.93 9.19 8.2 3.08 8.65 5.33 9.37 9.27 9.94 11.3 8.15 7.38 13.7 10.1 -2.74 9.75 7.71 4.97 13.2 9.31 8.6 4.58 5.39 10.5 9.5 3.7 13.3 7.61 6.37 8.93 8.72 11.4 10.2 14.7 8.1 9.6 7.01 9.39 4.9 8.5 8.08 7.8 0.28 8.22 6.32 14.2 8.4 10.5 10.8 8.85 9.12 10.6 6.87 10.6 9 10.8 10.4 9.92 8.8 9.75 8.49 8.59 10.5 9.92 10.2 9.37 9.51 10.9 7.84 10.4 10.7 10.2 10.5 10.2 5.5 10.3 10.6 8.1 9.4 8.37 10.4 9.34 10.1 10.3 9.49 8.49 7.46 9.4 7.26 5.2 10.4 7.97 8.34 9.37 10 7.25 9.07 3.09 8.78 9.89 10.2 9.49 9.01 11.6 10.6 8.94 9.7 12.2 10.1 11.1 10.4 1.73 12.8 11.5 10.2 10 11.3 11.8 9.65 10.1 9.13 12.9 10.3 8.75 0.56 7.61 7.01 7.99 7.93 10.3 12.7 9.01 11.4 10 9.84 8.98 4.68 4.73 12.6 8.8 7.25 13.1 9.13 10.6 9.52 12 10.7 13 11.4 6.17 1.32 10.4 9.5 8.35 8.76 6.45 12.1 6.38 9.83 11.2 10.6 11.8 10.6 10.3 10.7 10.9 11.3 16 12.7 11.4 10.4 11.1 8.62 8.09 11.2 8.7 4.72 9.36 9.95 15.2 10 11.6 10.4 3.69 10.5 6.34 10.5 2.05 9.54 9.89 12.1 12.1 11.7 11.3 6.06 10.5 6.95 8.92 12 8.98 2.57 7.85 8.33 9.42 10.8 9.11 9.47 12.2 10.9 5.11 10.8 8.21 10.1 8.08 5.28 9.51 11.3 10.1 9.57 10.2 6.61 11.3 7.6 10.4 9.58 9.96 11 9.5 13.7 8.96 7.59 7.8 5.8 8.68 12.1 10.9 12.7 12.2 7.38 10.8 10.3 10.7 1.97 7.79 8.4 8.5 3.25 6.65 9.97 7.69 10.3 10.7 9.78 4.64 9.11 11 13.4 9.62 5.36 11.5 11.1 9.54 3.99 -0.38 5.96 10.4 4.87 7.25 7.4 8.07 9.67 8.63 11.5 6.35 2.26 4.96 10.5 7.97 10.3 2.32 7.88 9.88 7.46 1.04 6.18 11.7 9.91 2.55 5.65 7.53 6.04 9.52 9.99 10.8 0.37 9.93 13.7 8.86 12.3 11.9 10.7 11.1 13 8.29 11.6 8 7.67 4.4 11.7 1.44 3.09 0.59 1.1 9.44 7.73 10.2 1.88 8.15 9.22 3.24 4.95 10.9 12.7 6.85 7.59 11.2 10.1 2.56 11.3 9.08 10.6 10.8 9.33 11.6 11.2 10.5 10.9 8.49 9.49 11.7 9.05 7.81 9.34 8.4 11.2 7.74 12.5 11.9 8.22 6.69 6.77 8.9 10.6 6.54 3.7 5.82 13.5 10.8 2.87 6.72 9.25 10.1 12.2 11.3 7.79 7.43 9.86 1.78 6.5 5.78 9.11 6.04 6.44 9.04 9.39 1.01 3.26 -0.02 10.1 9.31 8.04 12.6 9.24 8.44 8.13 11.2 11.5 3.31 7.04 6.52 10.5 8.17 10.2 8.67 9.09 9.93 6.74 3.5 6.76 4.43 8.26 -0.17 2.57 9.86 10.4 1.97 0.71 12 7.94 9.16 8 6.06 3.07 10.7 9.24 10.8 9.67 1.48 9.01 10.2 10.3 10.6 9.6 9.72 9.56 10.3 9.76 2.14 7.27 5.4 12.3 10.6 10.9 2.45 9.82 9.28 11.8 9.52 11.4 7.84 11 10.8 11.3 9.1 7.26 11.6 2.31 11.6 4.73 11.1 10.9 8.8 2.14 9.43 11.7 12.3 10.5 8.11 9.74 11.7 8.86 9.78 9.91 9.69 10.1 11.4 12.5 10.5 12.5 12.1 11.7 4.77 11.9 10.1 7.57 10.2 10.6 12.3 12.3 13.2 10.8 6.66 10.2 7.43 9.08 11.2 8.76 10.1 11.7 6.98 12.1 9.32 11.1 11.3 5.71 0.47 12 5.81 10.1 5.93 9.92 7.92 9.23 9.09 6.5 7.16 4.66 3.43 8.2 9.62 2.9 13 10.7 10.2 8.38 8.98 7.3 7.35 8.12 10 8.67 1.49 5.79 2.79 1.81 10.5 10.8 10.2 12.9 8.48 7.1 10.5 11 9.28 7.25 9.09 -0.39 9.34 11.2 10.1 10.8 10.8 10.5 9.96 14.3 10.8 11.4 10.1 7.33 3.36 10.1 9.08 8.52 10.3 8.71 7.61 12.2 8.81 7.33 11.1 6.69 3.52 10.4 10.8 12.3 7.78 7.64 11.2 10.3 5.93 7.19 10.3 2.6 7.9 8.72 10.2 8.75 13 8.29 8.51 9.61 7.42 5.6 9.3 7.75 10.4 9.18 7.52 9.76 9.38 9.91 10.3 9.15 6.98 9.34 3.15 8.55 9.03 9.15 4.43 10.3 2 8 7.67 12.2 8.6 10 9.31 1.53 11.6 8.24 10.1 3.01 10 7.18 6.59 10.7 4.93 10.5 9.84 5.9 5.75 4.6 8.15 7.77 8.29 8.9 10.1 10.2 10.1 4.86 10.1 9.42 8.09 12 10.2 8.73 6.45 5.96 11.4 7.72 4.58 11.5 10.8 7.01 9.22 2.79 10.9 8.23 9.9 8.22 5.36 8.14 12.1 9.85 2.56 9.81 9.77 8.28 8.41 9.4 10.8 11.7 11.1 7.34 7.71 8.03 7.86 9.57 9.55 9.15 11.9 10.6 9.17 9.65 8.83 2.67 8.73 7.83 11.6 9.37 13.5 10.3 10.4 8.49 6.8 9.18 10.9 7.23 9.55 10.3 10.2 6.36 7 10.6 8.4 7.46 5.03 8.88 10.1 5.07 8.02 1.77 7.28 9.74 4.03 8.73 8.13 9.47 0.64 5.47 10.7 10.6 10.1 10.6 10.4 10.3 7.58 11 8.15 11.6 6.46 8.25 8.42 8.78 8.11 9.91 8.83 7.88 5.42 -0.16 4.85 8.45 12.4 8.66 8 7.81 5.9 10.3 8.33 10.1 7.69 4.82 1.8 6.86 4.38 12.6 8.96 8.91 6.78 9.26 8.66 8.01 9.71 11.2 10.1 9.7 7.93 9.53 9.02 8.97 10.7 9.11 4.15 9.45 6.8 10 9.15 6.46 10.2 11.2 2.9 11 8.38 2.48 9.98 4.99 0.57 8.04 9.53 2.44 9.27 11.2 9.69 9.99 7.31 8.25 9.25 11.8 10.5 5.29 8.61 7.05 9.81 11.5 10.6 1.45 11.7 9.64 11.6 8.11 12 10.3 11.3 11.3 6.4 8.37 9.03 3.25 10.8 11.7 12.4 8.56 9.16 9.72 5.41 10.9 1.29 11.2 7.4 6.51 1.18 7.86 6.37 7.23 7.22 1.97 5.83 7.31 9.18 6.8 8.64 7 11.3 3.05 9.21 4.97 5.48 8.43 1.93 5.77 11.2 4.27 2.47 2.51 7.86 8.27 3.74 3.55 8.5 2.78 5.5 -0.15 0.9 7.24 5.18 8.3 6.98 9.64 9.01 8.07 3.08 8.54 7.3 3.88 10.2 9 9.77 9.36 8.37 2.51 11.1 8.54 5.99 10.3 5.12 5.96 7.43 7.85 7.75 3.74 7.5 5.33 2.29 7.53 11.5 0.9 9.05 7.78 4.65 8.05 7.31 8.08 4.68 8.48 10.2 10.7 9.2 9.71 7.43 3.85 6.23 1.46 7.29 6.34 9.23 12.1 7.67 7.81 6.91 9.85 9.57 8.42 5.71 7.88 10.6 10.3 8.43 6.68 8.94 9.23 7.59 8.55 3.48 7.23 6.26 11.1 9.01 9.35 8.92 6.1 2.4 7.67 7.42 9.57 11.3 5.84 7.12 6.8 9.18 10.8 8.65 6.95 6.58 7.96 9.43 9.93 7.71 9.66 6.26 5.2 3.96 0.81 5.82 9.42 5.78 7.29 8.24 8.72 4.4 8.36 4.51 0.76 4.73 8.61 7.21 3.45 6.96 9.27 2.24 6.48 7.11 6.13 3.55 9.52 2.8 11.4 8.73 9.25 9.06 7.19 11.3 8.7 10.1 7.43 10.6 10.3 0.33 8.55 2.26 8.88 8.49 9.39 8.54 9.02 8.24 5.51 9.84 5.14 4.63 2.22 8.27 2.4 10.2 4.36 7.89 5.12 4.21 -0.09 8.83 -0.04 1.58 9.83 9.5 6.07 9.19 8.39 0.08 5.88 8.57 6.68 8.81 8.81 4.82 9.79 10.8 2.41 5.45 8.01 9.1 11.4 6.47 5.61 9.45 8.2 1.43 8.87 5.12 4.58 3.63 9.93 9.65 4.94 11.1 3.78 4.23 7.67 12.1 10.6 10.4 0.32 2.07 5.6 10.3 9.18 6.59 6.12 11.5 0.17 8.01 10.7 8.56 9.91 8.77 6.48 10.6 -0.14 7.17 0.38 7.59 6.88 8.24 9.35 7.19 5.31 7.96 11 5.16 1.3 9.36 11.1 6.73 10.2 7.61 7.97 10.6 8.12 11.2 3.35 8.43 8.96 14.2 12.9 7.53 1.74 3.15 8.7 8.47 0.75 10.4 10.9 8.86 7.38 8.86 4.2 7.68 8.79 11.3 13 8.85 10.3 7.32 1.62 10.8 8.19 8.28 7.24 4.77 7.29 8.23 9.09 10.3 3.55 8.15 11.4 0.7 2.72 8.37 13.4 10.4 9.94 8.95 4.41 6.73 14.2 2.58 9 8.36 3.97 4.74 10.4 9.82 4.68 7.89 10.1 0.78 1.32 3.3 4.72 0.98 6.38 8.28 5.94 6.24 9.05 7.61 4.38 4.94 9.53 7.77 4.81 8.34 9.77 9.35 3.09 7.24 7.92 6.51 8.8 7.02 8.19 12.2 2.38 8.57 8.84 9.94 1.15 6.97 4.66 6.8 7.92 4.92 8.58 7.17 9.02 3.25 7.32 9.95 4.87 3.9 8.43 4.38 4.24 7.75 10.3 1.92 8.15 1 7.17 3.43 7.21 6.97 6.51 8.34 4.34 7.66 10.2 10.3 3.48 9.82 9.65 4.45 9.64 8.11 9.54 8.82 10.1 10.4 5.55 8.52 9.26 9.91 11.9 11.8 2.32 5.33 8.71 8.93 7.35 5.17 1.95 7.05 10.3 9.55 5.59 5.28 0.74 5.92 1.36 7.44 9.43 8.08 9.33 5.97 3.49 12.5 6.02 10.7 9.71 6.52 8.21 7.75 5.91 4.79 12.1 7.22 7.42 3.14 8.5 2.37 8.13 8.64 0.35 5.12 5.39 6.94 10.5 1.94 9.03 8.31 -0.17 4.78 4.29 6.49 3.51 8.27 6.02 6.8 8.2 4.88 9.93 2.19 1.81 8.79 2.76 2.94 2.04 4.33 7.46 7.37 9.78 8.11 7.56 5.91 9.83 9.5 7.29 9.41 12.6 6.28 5.56 7.72 8.5 7.19 1.34 7.7 6.59 9.73 8.02 3.67 11.2 7.09 4.53 3.54 7.36 8.38 10.4 7.76 6.87 7.88 5.27 4.69 5.66 6.81 1.44 4.83 9.52 2.53 9.35 4.93 3.31 5.75 8.53 3.47 9.58 2.76 1.75 9.79 11.1 5.92 8.06 8.35 3.79 5.08 10.2 2.78 6.7 1.87 8.52 13.5 5.82 8.36 5.42 13.2 9.04 2.8 3.55 6.37 9.3 3.43 11.3 -0.06 9.12 8.68 14.2 4.1 5.73 13.1 1.09 9.05 2.94 10.2 10.3 7.43 8.7 1.75 9.83 6 6.56 8.14 13.1 1.7 7.24 5.81 3.19 5.74 4.98 5.61 6.31 9.3 8.74 5.65 6.01 2.34 3.72 11.9 9.38 10.5 8.44 8.6 10.8 5.66 6.86 11.8 7.92 11.9 8.92 7.6 11.9 7.32 8.48 8.75 7.96 6.87 2.87 7.72 8.96 6.11 9.31 8.01 9.42 8.75 6.41 8.74 4.42 1.97 7.94 6.82 6.13 3.57 10.5 1.95 5.95 11.3 0.95 5.58 4.96 3.32 9.98 10.9 9.75 5.97 10.6 7.07 6.8 10.2 8.2 1.09 8.6 9.92 10.2 9.01 11.2 6.54 8.48 9.29 4.05 4.39 9.23 2.52 9.31 7.62 8.65 6.69 8.35 4.68 7.04 3.64 5.29 8.51 3.06 2.33 9.04 10.7 10.7 12.7 8.34 4.75 7.4 12.7 0.97 8.88 6.51 10.3 11.5 9.7 7.17 -0.15 11.4 6.84 0.85 11 1.12 1.66 7.11 8.45 7.13 7.77 8.18 7.23 0.56 1.97 8.07 9.98 7.84 8.01 2.24 4.36 1.8 7.93 8.43 8.33 12.2 7.87 8 8.69 4.29 10.6 3.88 7.81 2.76 8.09 7.4 3.71 9.36 6.92 3.52 11.5 6.71 5.96 10.3 8.92 10.8 8.84 3.04 0.36 8.19 4.64 11.9 4.4 7.87 11.6 10.4 8.02 9.5 7.51 8.12 7.56 8.02 9.73 2.52 8.71 10.7 10.3 6.73 8.92 10.7 5.17 7.76 12.6 4.98 11.2 8.89 6.69 11.6 11.2 11.9 8.82 4.88 7.34 8.19 6.86 2.45 9.56 5.76 10.6 2.19 11 6.51 1.04 10.2 9.44 4.75 6.52 3.39 13.7 0.99 0.88 7.71 1.41 4.16 13.9 9.89 12.1 8.12 10.4 4.07 7.64 10.4 8.97 5.71 4.18 6.68 10.9 8.88 8.81 9.57 6.17 8.04 8.1 4.64 5.57 8.97 2.08 2.04 10.2 5.11 10.3 9.98 6.55 5 6.81 6.32 7.5 4.52 7.83 -0.11 6.22 9.71 7.6 2.16 5.42 10.1 8.84 7.85 6.72 11.8 10.1 2.98 10.2 10.2 7.84 1.05 9.99 8.08 2.92 7.68 5.82 9.21 8.29 8.9 8.9 6.28 1.2 0.04 9.79 8.03 8.71 11.2 11.2 4.66 6.93 1.81 10.2 9.57 9.1 6.68 7.79 8.51 2.7 5.89 6.79 11.1 2.72 3.52 8.76 10 4.76 2.45 7.16 7 2.37 0.68 11 0.92 5.76 3.27 8.6 7.84 6.72 5.65 8.86 7.56 7.32 8.05 10.3 10.2 8.83 7.55 0.42 9.94 8.8 3.66 11.4 9.61 4.94 6.88 7.71 2.84 7.05 6.2 11.5 3.06 10.7 0.28 10.4 4.58 8.38 6.72 1.54 1.27 11.9 7.72 7.61 4.15 4.29 3.9 2.79 5.14 8.53 6.52 10.9 2.34 9.51 12.2 6.33 11.7 9.2 9.96 10.5 7.44 4.01 10.7 11.3 7.34 8.99 7.84 7.73 2.31 3.96 7.72 5.97 8.13 5.31 6.74 5.58 8.03 8.58 8.86 6.06 -1.38 6.69 7.89 5.04 10.4 10.1 7.04 9.02 6.39 6.14 2.63 7.18 8.17 3.88 12.3 11.4 6.54 7.96 8.75 5.72 2.73 2.16 7.79 3.5 10.3 6.15 -0.25 4.95 7.04 5.14 8.9 4.31 9.48 8.28 11.9 8.08 7.87 12.8 7.05 5.16 6.75 12.1 5.51 7.27 10.4 4.49 0.47 8.39 5.19 10.2 0.51 7.09 6.63 6.97 9.59 10.5 7.51 8.34 6.07 3.97 1.3 5.86 7.99 3.04 8.73 1.74 5.61 11.1 8.78 5.81 7.6 0.24 3.29 8.42 9.86 7.26 4.09 9.94 1.9 6.21 0.88 5.18 1.06 8.69 5.99 6.13 8.53 5.41 11.2 7.93 7.64 5.24 3.69 3.87 7.86 3.68 9.17 8.9 6.37 1.17 5.42 0.79 3.81 2.01 2.33 1.06 9.5 2.54 0.74 5.45 0.01 9.75 1.63 9.52 0.85 9 9.35 6.95 8.98 5.02 6.88 7.9 6.16 11.8 10.3 9.28 8.8 8.22 10.8 8.12 9.19 2.35 1.49 0.66 4.91 6.55 10 5.17 6.04 10.8 5.64 2.69 9.08 2.54 3.84 4.58 5.34 7.5 7.09 4.22 9.91 3.1 7.5 1.38 11 8.93 7.25 7.78 6.58 4.23 4.87 1.75 9.68 6.07 8.6 4.73 6.38 5.39 3.28 3.94 7.22 10.8 8.59 9.64 3.76 5.87 3.16 7.8 8.91 5.92 1.96 5.12 6.49 4.31 7.54 4.77 4.5 5.12 4.7 3.57 0.82 6.16 7.76 1.63 9.05 6.86 8.13 4.55 8 7.99 6.18 8.69 9.23 2.91 0.83 10.6 2.96 1.95 4.28 9.58 11.5 11.8 2.73 11 2.54 4 8.55 2.61 11.2 10.1 1.04 8.35 7.5 1.95 3.03 7.86 2.46 3.67 6.15 6.26 8.99 8.13 1.09 1.45 8.74 8.24 3.9 3.59 13.8 10.5 6.73 7.6 4.79 5.27 12.5 9.26 10 -0.14 11.4 12.8 -0.19 4.96 9.88 0.93 -0.26 2.1 2.6 6.18 0.93 9.09 7.21 2.01 7.74 9.73 7.65 6.59 9.88 1.81 2.55 7.36 7.54 7.79 5.99 7.05 3.14 9.31 8.21 10.2 0.4 6.75 4.53 9.04 5.67 7.26 5.4 7.51 7.78 6.06 3.92 8.13 5.9 13.4 9.49 13.7 7.7 4.94 14.1 7.67 11.3 9.42 5.35 3.53 2.89 1.18 8.39 8 9.33 12 8.53 5.41 8.25 1.79 5.82 4.55 9.52 6.61 7.01 11 6.09 11.2 1.27 7.38 2.06 7.11 8 6.11 6.93 1.21 8.09 7.54 9.74 12.5 7.2 0.77 6.89 1.14 5.11 1.75 8.84 5.81 9.54 8.95 7.66 9.54 3.62 11.5 8.73 10.9 7.81 0.61 1.64 5.82 7.05 3.17 10.9 9.62 7.28 8.24 11.3 2.71 8.18 8.49 10.5 5.63 6.8 3.42 5.59 7.15 10.1 10.5 8.58 6.47 8.25 2.06 7.75 2.4 4.24 1.22 4.49 9.72 8.05 1.92 4.35 8.33 7.45 6.46 7.91 12.5 7.84 9.3 8.6 11.2 6.62 7.97 11 7.87 3.71 11.1 11.1 9.44 7.5 8.87 6.6 0.39 3.1 5.08 10.7 7.61 6.15 6.69 10.2 1.78 12.5 6.52 9.96 8.27 8.74 4.37 7.02 8.95 1.12 3.46 0.32 1.64 7.2 8.35 5.17 8.92 7.62 4.68 0.18 6.19 9.12 -0.1 10.6 9.53 2.07 5.29 8.04 1.97 8.28 4.49 7.31 8.33 8.76 4.13 1.63 4.15 9.65 4 6.79 10.4 6.07 3.06 11 4.68 5.6 8.46 5.32 0.84 9.8 7.51 7.97 8.82 11.1 7.76 7.89 4.26 3.68 12.3 5.14 9.29 5.74 8.55 11 1.24 12.1 2.17 3.96 1 5.43 9.79 3.12 10.1 1.28 1.09 2.82 6.45 3.61 6.43 8.59 5.47 0.05 8.23 7.2 8.87 2.53 10.4 3.45 9.38 3.7 8.83 3.52 2.28 6.04 8.12 5.92 8.4 4.64 7.91 8.97 6.17 8.89 4.02 1.76 1.56 4.6 4.62 2.76 3.87 6.01 5.18 10.8 8.36 10.3 4.8 9.61 0.06 5.39 7.6 7.64 5.22 15.1 1.18 2.33 11 11 1.72 9.72 2.24 6.19 1.74 1.41 11.3 8.82 3.08 4.09 13.7 9.38 -0.03 7.82 12.2 9.1 9.17 6.15 8.75 5.51 6.49 5.84 8.45 8.34 10.9 13.1 4.49 8.38 5.2 9.08 11.4 2.64 2.76 11.3 9.94 4.76 8.06 4.33 6.18 10.8 -0.02 6.67 10.4 1.43 2.92 9.56 0.86 5.52 7.01 3.06 8.67 11.6 11.6 1.7 12 6.62 7.75 10.4 4.49 10.9 8.76 2.35 3.24 3.14 1.61 2.81 6.09 5.01 6.5 10.3 7.94 9.03 6.74 2.82 7.38 6.34 5.24 6.95 6.17 9.19 6.82 1.18 13.4 7.65 7.87 7.73 4.28 3.35 1.13 5.31 4.83 3.58 7.59 8.86 5.05 5.47 4.4 9.85 0.47 5.44 4.18 5.57 9.14 2.65 11.4 6.31 10.3 9.56 8.71 2.44 6.45 6.14 2.71 1.65 8.08 9.31 9.15 11.9 11.1 2.22 8.23 2.19 12.3 1.23 9.71 2.27 1.73 9.99 11.2 1.79 10.2 2.45 2.09 2.47 1.02 9.96 6.51 8.27 11 12.2 7.38 2.97 7.25 3.45 9.67 7.21 11.7 7.49 12.6 13.7 2.75 6.66 11.3 7.28 8.96 10.3 0.33 10.6 0.07 8.55 12 12.3 3.14 9.19 9.3 8.41 5.41 7.94 7.1 11.8 9.59 5.25 9.05 7.55 5.86 8.22 10.4 10 8.95 0.17 9.85 8.2 9.47 0.56 10.2 2.52 6.1 6.99 2.53 8.72 3.21 7 6.79 7.72 4.67 8.37 3.78 8.48 8.07 1 4.5 8.38 7.51 4 4.53 7.57 8.4 8.06 8.35 4.89 2.36 0.72 9.28 10 9.67 2.66 7.08 8.17 5.36 3.04 0.49 3.54 7.24 5.07 2.69 8.51 8.73 5.28 10.8 6.09 0.68 9.13 1.98 1.67 1.82 5.89 1.49 9.95 7.36 5.93 8.82 4.77 10.1 8.07 11 9.85 5.16 5.88 3.78 8.19 11.4 6.37 10.4 1.53 9.65 11.5 9.66 11.1 13.7 8.36 7.75 6.67 9.4 11.4 13.1 13.6 9.15 7.96 1.73 8.58 11.4 9.25 10.5 11.3 2.86 10.9 6.42 10.9 0.31 -0.18 3.8 4.37 8.72 7.46 4.89 7.37 8.28 9.31 8.97 7.99 6.47 3.21 5.85 1.62 6.18 9.08 2.69 7.89 10.4 13.4 10 6.16 10.7 10.6 12.3 11 6.02 8.78 5.39 10.8 9.32 3.03 8 7.81 9.68 8.99 1.47 8.19 9.46 10.4 8.71 10 9.77 0.2 10.6 2.12 -0.58 8.6 13 6.36 3.17 12.1 9.04 10.9 12.6 8.53 10.5 12.3 9.2 5.15 6.26 9.56 6.68 8.93 5.97 11.9 7.29 11.8 8.96 10.9 9.74 8.36 3.71 7.31 4.65 9.38 9.35 8.57 11.3 10.4 10.1 8.44 10 7.72 9.31 10 7.57 8.59 9.08 7.62 7.27 11.8 1.35 10.5 11.3 11 7.81 12.3 7.11 8.36 8.72 7.92 8.04 9.6 7.66 13 8.12 8.31 10.6 17.6 4.97 3.31 9.07 10.3 7.01 8 8.17 12.6 12.7 14.2 16 9.62 9.67 4.56 6.96 7.66 11.4 10.3 4.62 2.93 5.26 7.76 7.95 10.3 9.91 9.97 12.4 6.73 7.65 6.54 12.4 8.02 -0.31 1.28 9.15 2.65 10.3 5.82 6.09 8.27 3.58 6.8 10.7 8.14 10.5 10.3 9.76 8.97 10.7 3.3 8.32 10.4 9.56 2.52 9.89 6.89 7.06 5.37 12.9 4.7 8 11.9 4.04 2.96 4.19 1.09 9.59 5.32 3.79 7.36 8.54 9.21 13.1 5.06 7.62 10.3 5.08 7.63 9.89 13.4 7.47 13.1 9.36 8.39 11.7 13.8 14.9 12.7 12.6 -1.38 7.48 -0.24 11.8 10.4 5.51 10.6 -0.68 1.77 1.93 8.39 0.96 11 4.88 4.08 2.95 6.58 6.38 7.02 5.46 6.06 9.05 3.61 7.97 6.88 13.1 8.27 0.61 7.69 13.7 10.3 10.5 0.9 5.86 9.72 8.35 4.17 10.5 10.6 0.29 2.93 5.64 3.24 10.4 9.48 7.89 9.34 7.74 2.23 7.29 3.8 8.73 3.38 9.57 5.72 3.29 0.75 9.97 7.43 5.08 5.95 9.69 9.78 8.77 6.21 9.92 7.1 6.01 6.72 6.16 11.9 8.19 8.35 8.43 11.3 4.57 9.9 7.43 10 9.84 10.5 6.64 8.66 8.67 8.71 6.32 10.4 4.63 10.5 5.93 6.49 9.15 9.12 9.95 7.33 9.33 9.85 5.72 10.2 4.66 7.69 2.23 8.59 2.92 4.02 7.18 8.65 11 0.07 3.31 9.69 9.27 6.76 7.33 12.7 7.2 0.46 4.82 6.61 -0.16 8.44 8.66 8.34 6.59 11.1 8.66 5.05 5.37 6.21 6.85 6.09 11 8.13 0.32 13.9 5.86 4.31 2.05 0.85 0.8 8.27 4.95 6.42 6.58 11.5 9.65 8.67 10 7.1 6.83 13.5 8.67 2.13 1.96 6.78 8.25 8.53 5.47 7.54 9.64 9.64 8.9 11.7 6.33 12 9.62 10.2 8.2 6.94 10.7 11.8 10.2 7.85 9.39 11 12.8 9.93 7.44 0.1 6.88 5.27 9.52 2.43 11 10.9 6.53 9.47 12.3 6.04 8.92 8.5 8.32 8.57 7.93 9.14 7.89 10.2 0.52 5.44 9.92 12.1 12.3 11 10.2 0.53 8.67 11.6 3.28 0.88 13 9.37 9.19 3.52 11.4 4.5 8.48 9.54 8.4 11 7.87 10 8.02 10.7 10.8 8.41 12.2 10.6 4.76 6.71 10.5 6.07 10.8 1.99 11.9 10 10.8 10.9 8.99 11.5 11.9 6.85 3.57 7.32 9.23 9.36 -0.24 10.8 6.49 12.4 7.82 9.33 10.2 3.27 12.2 10.3 11.1 1.05 8.36 9.65 0.7 8.92 9.21 6.89 9.45 8.52 3.79 10.2 8.4 11.9 7.61 11.6 11.4 3.01 7.38 5.02 13.8 7.8 5.51 7.78 3.77 1.29 13 5.64 7.98 8.74 8.79 8.89 6.57 11 9.66 11.5 11.5 8.8 10.3 11.3 5.47 9.18 9.68 12 9.14 11.8 5.05 10.3 8.39 3.72 1.88 12.7 9.9 13.9 2.59 2.59 7.27 3.4 6.61 7.6 4.35 9.05 12.1 5.46 7.32 8.93 7.15 10.4 6.35 5.67 6.44 7.2 6 7.53 7 5.04 9.47 8.95 0.08 9.16 10.5 9.55 9.54 10.2 2.54 9.84 2.87 7.55 8.11 7.29 5.22 2.73 4.58 7.73 4.71 4.97 9.19 2.28 8.2 9.93 8.49 3.66 2.05 0.72 3.38 4.64 2.14 5.6 7.43 8.15 7.28 6.63 0.47 4.53 7.76 6.65 4.89 6.22 8 5.47 12.6 6.47 8.6 5.88 8.13 9.15 10.8 1.66 10.7 6.94 8.58 3.88 11.5 8.69 5.32 8.24 9.8 9.82 8.1 7.8 7.6 6.15 9.51 6.84 7.28 7.07 4.43 10.1 8.63 4.59 8.1 1.53 4.73 7.77 10.5 3.39 3.7 7.53 2.75 10.9 1.7 7.01 9.2 3.83 7.63 5.75 8.02 5.71 9.91 1.75 3.66 10.7 8.14 1.16 8.72 9.08 8.17 9.2 1.75 9.64 1.25 8.89 3.42 8.42 3.05 9.77 7.17 10.4 8.46 8.87 5.53 6.63 9.62 7.73 8.34 9.89 5.14 9.46 11.9 5.97 7.66 6 2.73 9.29 7.83 4.04 8.15 11.6 9.74 2.83 4.87 3.94 9.47 1.97 11.2 9.69 1.4 5.54 2.51 2.56 5.7 2.75 8.41 2.8 3.45 10.7 8.66 8.25 4.36 9.53 8.7 10.2 10.9 11.9 5.3 6.94 6.5 7.35 5.44 1.17 7.49 4.8 5.36 2.96 4.11 1.66 14.9 8.56 9.97 0.18 12.1 11.9 6.74 10.6 4.25 9.34 12.5 7.36 11 9.01 9.82 6.21 12 9.31 7.49 2.13 11.3 6.59 7.42 6.9 9.54 6.9 11.9 4.19 13.7 9.63 11.4 9.33 8.04 10.2 10.6 10 5.31 7.96 10.3 5.55 7.68 10.2 10.9 10.4 9.81 2.82 2.81 9.09 8.53 9.72 9.88 7.14 9.56 7.81 10.6 1.03 9.95 10.1 8.73 10.1 8.56 11.8 8.64 10.7 1.66 10.1 7.54 9.84 11.8 8.46 12 6.71 11.8 9.68 8.41 10.1 10.4 9.68 11.2 9.97 8.31 10.6 12.4 8.35 9.24 10.4 7.42 9.48 8.72 9.91 2.94 8.74 9.68 1.59 8.76 9.58 8.37 8.4 9.54 6.12 8.62 10.2 11.5 9.69 11.6 10.4 9.74 8.82 7.81 11.5 6.14 6.63 11.9 1.69 11 11.7 8.77 7.95 6.88 6.83 10.3 7.99 13.1 9.47 10.7 10.1 7.74 9.14 8.79 9.78 10.4 10.4 9.3 7.37 12.8 10.6 9.19 0.98 9.04 9.02 4.63 4.54 3.66 11 8.27 9.95 11.8 5.44 3.7 10.5 8.18 9.26 4.2 10.8 11.6 1.21 5.21 3.04 10.2 11.6 10.8 8.38 7.78 10.8 4.31 7.66 10.8 8.16 9.1 8.44 8.53 9.7 8.79 1.47 10.3 10.8 10.7 10.1 9.19 8.78 12 7.76 12.7 10.2 9.39 8.9 5.39 4.11 9.9 9.29 9.15 9.69 10.2 9.3 7.59 7.58 9.95 6.82 9.89 10.7 10.1 12.8 10.3 8.34 10 9.99 12.2 9.95 9.34 9.12 10.2 11.1 6.1 8.57 7.02 9.89 11.8 10.8 11.2 11.6 10.2 4.57 9.96 9.49 10.5 3.85 9.67 11.1 9.75 10.1 9.59 10.1 8.98 9.23 10.6 9.72 8.35 8.5 7.87 9.7 6.1 11.5 12.2 9.32 11.1 10.6 8.98 9.91 8.4 8.77 9.76 8.78 3.65 10.5 2.29 10.4 9.86 2.19 8.31 10 9.64 7.91 8.91 9.93 10.7 7.45 2.43 12.1 9.48 9.73 10.5 10.5 11.1 8.57 10.4 10.6 7.33 10.1 10.1 6.97 10.4 7.42 10.7 11.5 10.5 10.2 9.09 10.1 8.73 3.73 3.89 9.41 3.39 8.98 9.28 11.2 9.2 9.83 9.53 9.18 13.4 10.5 10.2 10.5 10.1 10.8 10.5 9.62 10.5 9.92 10.2 12.1 10.7 10 8.86 10.2 9.18 10.5 10.6 8.93 8.44 8.81 8.02 9.36 9.81 10.4 10.9 10.3 9.06 9.68 10.8 11.7 11.6 9.48 13.3 7.13 9.63 13.5 11.4 11.7 10.5 11.8 6.82 10.2 15.1 1.26 9.85 8.04 2.97 10.8 9.22 10.6 8.73 8.76 11.8 12.8 10.2 0.7 11.5 10.2 4.72 11 9.22 10.8 13.2 10.8 9.15 9.13 6.84 10.9 12.7 8.92 7.38 9.73 9.28 9.74 1.16 9.2 8.62 9.02 10.1 10.2 9.89 11.2 6.76 8.46 10 10.7 12.3 4.6 8.11 10.7 7.15 11.5 9.45 9.73 8.79 4.22 7.77 9.69 8.57 11.5 11.3 9.99 11.1 9.86 6.03 8.02 10 10.8 10.1 8.4 8.61 11.4 11 6.17 0.77 9.63 6.31 7.66 12.2 9.31 10.8 6.51 11.1 9.51 9.86 11.8 9.82 8.74 9.75 10.4 5 10.8 10.1 3.03 9.21 10.5 9.35 9.43 10.9 9.17 9.77 10.5 6.03 9.73 0.84 11.3 9.41 10.1 10.2 7.48 10.2 10.5 12.2 11 9.06 9.04 11.1 11.4 10.2 8.73 8.25 11.2 10.2 4.42 9.3 11.2 9.85 10.6 10.1 3.65 13.6 12.7 11 11.9 11.3 8.78 10.2 9.1 10.9 0.08 10.6 10.1 9.11 10.3 11.8 8.49 13.2 10.3 12 10.3 9.73 7.73 10.1 8.37 10.6 9.28 11.3 11.7 10.3 10.1 11.9 10.6 9.52 11.2 10.3 8.88 11.9 11.6 9.42 10.2 8.51 8.45 10.4 9.46 9.26 9.32 9.38 10.6 12.9 8.6 3.72 9.84 9.35 9.15 7.47 5.32 2.86 9.16 7.36 -0.07 9.22 12.9 7.99 11.1 9.2 3.82 10.8 9.81 5.53 8.52 5.12 9.64 11.6 10.2 9.18 11.8 11.8 13.2 9.53 8.41 7.03 6.12 6.42 8.49 7.49 10.3 8.08 8.91 5.35 11 11.8 11.9 8.47 9.3 6.73 11.2 10.6 10.1 1.3 10.8 11.3 8.67 9.64 9.26 9.36 5.81 6.45 7.27 12.2 7.42 7.82 9.74 1.25 11.5 8.89 10.6 7.7 11.3 9.59 11 10.6 10.8 8.97 9.42 13.4 10.7 9.78 0.54 1.71 14.6 9.83 11.7 14.2 9.75 10.8 8.41 8.18 13.3 10.8 8.21 9.51 6.89 9.69 8.03 2.77 7.47 9.14 6.39 10.4 -1.26 9.09 1.95 1.77 8.79 10.2 11.8 11.2 5.07 7.14 9.21 12.1 10.2 8.29 11.5 8.89 10.5 10.7 3.3 5.97 9.7 4.51 8.3 9.83 1.33 3.51 11.7 1.48 10.8 9.18 9.02 7.53 11.1 11.9 8.67 9.63 10.2 6.61 8.3 9.09 9.61 6.6 8.76 7.18 9.37 9.21 9.52 0.08 11.7 6.68 12.1 10.9 8.67 9.55 11.6 2.12 8.54 8.57 9.54 8.82 3.46 0.29 2.29 4.74 10.6 5.78 10.8 10.2 2.65 9.42 6.01 9.53 6.3 10.2 11.2 11.3 10.8 8.86 8.64 3.49 15 11.1 9.81 7.76 9.29 13.2 9.6 7.45 7.35 7.28 10.2 5.78 7.68 5.54 10.5 8.46 10.1 10.9 4.41 9.6 10.6 10.7 9.2 7.8 10.4 8.77 1.52 9.65 6.49 2.21 11.1 9.68 9.27 10.9 10.3 11 10.5 1.43 2.2 8.53 8.39 6.45 9.25 9.53 10.4 9.51 4.63 6.67 9.79 8.22 7.67 6.87 12.1 9.2 4.91 7.7 0.39 4.27 7.53 4.72 6.35 0.04 9.79 0.32 7.36 3.25 3.43 8.82 5.76 5.26 6.72 7.59 2.59 1.41 2.32 10.5 8.98 8.97 7.13 6.31 8.68 14.2 7.11 11 -0.25 15.5 10.3 10.7 12.4 7.98 12.9 6.36 11.5 -0.1 8.1 10.1 5.51 3.15 8.3 8 2.75 11.8 4.02 4.65 9.33 9.89 10.4 3.75 3.73 7.82 10.1 9.13 9.23 6.1 12.1 4.64 8.78 9.71 6.28 5.71 12 7.88 4 10.8 5.63 6.83 12 7.79 8.22 1.68 11 10.3 8.72 8.47 10.1 5.05 5.59 9.26 2.25 8.39 11.1 0.36 0.03 8.82 1.09 0.43 9.87 9.13 5.9 6.6 1.48 0.04 4.3 8.28 6.03 7.08 9.56 9.46 6.68 3.9 12.3 1.3 1.57 9.48 7.38 8.22 9.75 8.48 8.24 8.29 5.21 7.32 1.16 0.68 6.43 9.53 8.74 2.01 7.05 3.63 7.96 0.98 8.68 5.12 7.79 5.13 -0.81 10.8 4.21 7.45 4.24 10.2 11.1 6.1 6.91 3.71 7.64 7.87 7.46 10.1 5.98 3.51 1.72 5.76 6.84 7.6 6 7.41 4.25 6.7 3.17 10 9.44 6.25 4.54 8.75 7.76 7.77 8.51 7.78 1.01 2.6 5.63 2.24 0.35 1.7 7.25 1.2 8.52 3.99 1.57 1.95 4.95 3.11 8.85 4.56 3.58 9.45 6.6 8.2 3.54 3.68 5.77 0.36 8.25 4.87 1.24 2.87 1.7 8.86 9.51 10.1 8.5 9.18 7.63 10.6 7.92 8.8 1.56 8.1 10.8 8.46 8.78 10.3 5.24 4.39 6.89 3.39 7.51 10.8 10.2 4.6 9.37 9.93 11.4 6.49 10.9 10.3 9.82 8.96 8.58 7.19 10.4 8.17 8.89 6.49 11 1.7 10.1 10.6 9.52 4.02 6.21 11 10.1 9.82 6.92 1.87 11 11.4 6.73 10.3 11.2 5.45 4.5 11.8 7.88 4.97 11.4 5.21 9.99 7.73 10.1 9.16 8.3 9.75 11.1 11.9 11 12 9.45 4.09 9.22 10.5 11.9 7.67 10.7 1.67 8.34 4.56 7.13 10.8 11.5 10.4 13.3 10.5 9.81 1.44 13 9.58 8.36 8.06 10.1 7.43 7.74 11.3 8.2 2.26 8.87 7.48 8.91 11.7 8.36 6.73 12.1 7.15 8.23 9.16 8.1 9.14 8.61 6.33 10.5 12 7.41 12 9.11 7.93 9.04 9.5 8.12 4.32 9.73 10.5 11.1 0.3 5.92 8.36 10.5 1.13 5.83 6.99 10.3 9.45 6.56 4.25 10.3 1.75 9.64 1.09 1.75 5.11 4.79 10.5 7.69 11.2 7.82 8.58 10.7 9.85 9.15 9.97 9.52 10.4 8.7 8.52 7.32 10.3 9.88 7.77 7.89 11.7 7.02 10.9 9.54 9.55 6.48 10.2 9.66 8.88 15.4 9.78 8.99 6.59 7.08 10.8 9.3 11.4 9.52 9.99 8.32 8.98 6.52 8.74 7.7 8.6 7.69 10.8 8.38 11.2 7.35 11.4 10.4 10.2 7.77 11.6 8.88 9.34 9.91 11.9 6.58 9.46 6.82 9.27 10.9 10.4 10.3 13.2 10.6 9.61 4.97 8.82 4.38 9.12 9.31 10.6 7.7 4.9 6.48 9.42 9.77 11.2 2 8.27 7.41 9.71 8.23 2.99 9.23 8.45 7.9 8.08 1.64 9.01 6.02 8.8 12 9.39 11.2 10.8 10.3 8.86 10.2 10.5 11.1 9.26 11.4 0.31 7.14 6.6 10.4 10.1 10.5 9.86 8.96 8.3 2.26 10.4 8.81 11.2 9.86 3.83 9.25 9.79 11.1 8.54 10.1 9.09 10.2 8.71 9.05 10.6 11.5 12.8 10.4 4.35 8.82 9.33 8.95 9.13 4.46 9.6 5.87 9.52 9.26 6.79 9.94 10.7 12.5 8.2 9.22 9.08 3.69 9.54 11.6 9.6 13.4 11.6 7.19 8.01 10.5 4.08 10.8 7.41 11 4.45 9.37 4.77 7.66 9.21 1.98 7.96 4.43 9.01 10.6 9.62 6.43 8.97 2 7.92 4.56 5.45 8.13 10 7.7 7.65 5.32 8.42 5.82 1.2 3.73 3.2 5.35 10.4 8.62 8.55 2.94 9.87 8.93 1.41 8.73 10.2 8.37 10.8 7.15 7.11 7.71 9.63 8.84 9.25 9.39 9.27 7.19 12.1 10.4 10.3 5.45 10.3 -0.04 9.97 7.69 8.48 5.37 10.2 8.96 10.8 1.1 11.5 11.6 10.7 11.1 8.28 1.27 7.72 6.13 5.95 10.4 9.48 12.3 7.07 9.14 10.6 3.74 9.55 6.67 9.32 10.7 9.51 10.1 9.62 8.61 12.9 9.02 7.03 9.49 10.1 9.59 9.41 9.32 8.74 9.72 9.97 10.6 4.77 2.7 -0.29 10.7 2.31 1.71 7.06 9.6 9.64 10.2 11.5 9.51 8.97 2.52 11.4 3.52 8.09 0.64 11.2 12.1 8.63 2.8 5.83 4.13 6.14 8.34 7.45 10.9 0.33 6.83 6.35 0.55 9.17 6.07 12.7 10.6 7.82 2.16 9.34 10.7 2.74 8.12 9.55 11 6.36 3.4 5.5 0.86 14.7 7.65 8.87 12.4 8.63 2.04 4.89 8.85 7.79 10.4 6.49 9.06 13 9.07 2.37 8.99 10.9 14.8 8.86 10.6 9.65 9.55 10.8 9.45 5.5 7.95 10.2 3.01 7.96 7.93 8.08 10.4 11 7.89 10.9 9.23 8.84 12.6 4.88 8.38 3.15 4.49 9.15 7.14 9.43 10.4 12.3 11.7 1.8 6.01 8.89 9.86 12.8 6.75 8.85 10.7 9.64 12.3 5.28 7.14 7 7.82 10.8 2.49 11.1 0.97 9.04 1.53 7.3 9.64 9.14 1.98 2.35 10.5 8.94 10.4 12.1 10.1 10.3 7.03 11 7.68 9.64 6.12 9.8 3.66 6.76 11.6 5.74 8.18 5.69 5.95 7.74 11.2 3.92 12.1 8.21 7.62 6.77 -0.04 6.99 9.37 5 5.86 8.28 9.58 4.89 10.1 1.65 8.47 7.22 6.15 11.5 9.48 11.2 7.03 3.22 5.05 9.74 6.59 4.23 6.89 1.72 2.73 2.97 8.07 10.5 2.76 7.42 12.8 0.68 8.59 7.95 10.1 9.09 9.23 3.74 5.36 7.53 13.7 11 8.37 8.24 8 9.23 11.3 10.9 10.6 8.08 9.37 3.44 8.35 8.86 6.1 1.24 5.32 0.81 9.74 12.4 9.32 7.87 8.05 3.43 10.7 8.91 5.08 9.62 7.58 9.75 4.23 8.28 5.65 9.46 5.54 5.63 9.12 11.9 3.84 10.2 10.4 11.5 11.6 6.6 11.7 11 8.29 11 12.6 10.1 9.4 9.95 8.72 -0.05 4.76 12.7 11.3 10.6 8.3 4.97 8.47 8.87 11.3 6.33 6.01 5.71 11 10.2 8.22 2.35 11.1 8.74 9.09 11.2 3.08 10.6 9.51 1.24 9.49 8.54 11.5 8.77 5.54 12.4 0.37 11.1 10.9 10.6 6.25 9.15 10.4 5.54 10.9 11.8 11.3 5.68 5.36 11.6 13.5 2.01 5.99 12.2 12.4 4.02 1.92 3.64 10.7 6.83 1.15 9 8.43 5.13 9.24 4.1 0.87 11.9 8.72 6.96 9.83 11.1 11.7 12 13.1 10.5 11.2 9.17 3.35 11.7 4.58 2.44 10.5 10.7 10.2 13.3 3.92 5.89 2.86 10.1 9.85 4.92 -0.09 0.26 4.28 4.38 2.57 7.89 3.16 9.88 2.28 3.18 7.02 6.29 7.62 9.69 2.25 4.59 9.4 3.93 2.96 1.69 3.01 9.11 6.15 7.46 14.2 11.3 2.48 5.44 4.89 10.6 1.14 7.26 9.53 7.67 9.66 8.15 6.91 6.88 8.02 1.87 6.77 6.52 7.05 6.4 9.18 5.75 9.26 9.99 10.6 9.07 7.86 4.05 1.98 1.81 4.96 3.47 6.92 0.56 10.1 5.33 8.45 5.46 9.11 5.61 9.2 4.81 0.71 3.58 3.15 8.89 4.29 5.1 0.14 8.66 0.1 5.76 1.03 4.02 9.7 11.6 7.86 5.33 3.06 6.22 6.78 5.38 2.91 7.7 0.9 3.83 3.5 11.2 4.84 6.04 2.74 4.25 8.86 6.2 9.52 4.6 5.9 6.89 1.61 2.82 8.12 8.68 0.22 2.4 12.1 9.24 9.99 6.11 3.98 8.95 8.54 -0.31 4.32 7.17 3.55 5.56 5.1 7.57 3.21 10.7 2.33 3.58 8.61 1.58 6.96 8.36 0.88 4.62 0.58 9.62 4.26 1.24 7.71 11.4 7.72 7.73 6.79 8.91 1.84 -0.35 8.41 4.95 8.16 3.29 3.22 9.04 4.54 9.22 0.69 6.48 3.71 3.15 4.3 8.5 9.05 9.54 3.49 12.3 4.55 6.21 6.59 2.48 4.06 10.9 4.12 6.15 8.37 5.13 5.44 2.15 8.44 4.35 0 5.21 11 4.38 0.83 6.48 5.26 7.06 5.86 6.96 0.95 4.47 -0.31 7.94 6.55 3.62 2.49 9.88 3.63 8.09 3.89 6.59 2.51 7.52 4.32 9.17 4.09 1.24 8.46 3.72 -0.03 3.59 5.5 1.33 3.55 4.68 8.61 0.71 5.31 1.27 6.62 6.76 6.49 5.33 9.83 7.2 4.18 2.01 4.3 4.79 -0.48 8.11 10.2 6.01 7.71 8.3 1.22 9.97 2.24 6.3 9.14 6.19 6.7 3.68 9.32 9.17 0.98 5.97 9.14 9.39 5.45 7.46 7.67 1.5 9.19 2.33 6.51 9.51 8.17 4.09 9.41 6.34 5.28 2.91 3.63 10.1 -0.24 7.41 5.57 1.76 4.33 7.96 8.43 10.7 2.57 7.47 1.64 8.05 1.27 6.1 4.05 3.57 8.07 5.52 10.1 3.6 4.91 9.31 1.6 5.32 8.03 6.61 3.07 8.28 2.42 4.18 3.09 9.75 9.92 5.73 7.79 0.5 2.89 7.86 -0.41 2.78 6.44 5.65 4.86 7.52 8.48 1.69 3.72 3.34 4.18 4.22 8.51 7.06 1.92 11.6 6.17 9.2 4.89 2.85 5.03 7.92 7.67 7.87 9.17 9.21 3.95 3.52 7.84 3.78 1.8 3.93 8.37 9.89 4.61 2.91 7.22 8.32 9.19 8.8 3.69 1.94 4.52 8.29 9.64 3.57 4.14 7.38 8.75 9.84 3.78 6.77 9.84 10.8 10.7 9.5 5.68 10.4 14.4 7.65 10.4 9.83 5.77 11.5 10.8 11.6 3.02 4.35 10.4 9.12 8.48 9.09 7.3 10.3 9.89 13.2 7.68 8.8 10.6 1.78 6.75 4.66 12.5 0.97 8.42 6.4 10.7 10 9.98 10.4 9.58 9.58 8.71 9.26 8.19 10.5 7.2 10.4 11 9.6 2.56 8.06 8.09 6.33 11.8 10.2 5.27 11.2 17.6 2.08 4.97 8.42 2.15 10.9 4.43 10.8 4.05 9.61 10.8 10.5 7.43 6.88 10.7 9.83 11.2 8.09 10.1 10.7 9.22 7.57 9.94 9.96 8.84 9.09 9.87 7.8 9.28 9.83 8.39 9.36 8.25 12 8.31 5.77 6.59 9.11 9.54 9.59 9.5 7.72 9.22 8.13 9.24 10.6 10.7 8.42 7.33 7.85 1.36 8.33 10.7 8.74 0.58 9.42 10.5 8.53 9.62 0.98 3.64 9.76 0.58 11.3 4.18 4.7 9.56 9.27 1.01 0.3 12.1 13.5 11 10.7 13.2 2.14 11.1 13.3 10.7 10.9 12.5 12.1 10.6 10.3 7.79 9.82 9.6 11 11.5 4.9 13.2 6.27 6.72 8.75 10.2 7.42 9.54 9.33 9.37 9.11 11.2 9.26 10.1 8.41 8.19 7.85 11.7 12.4 11.3 8.91 6.06 11.7 10.6 10.5 9.39 5.8 0.88 10.8 7.1 3.5 10.2 8.87 1.43 8.89 9.39 13.3 10.7 4.4 9.78 0.49 3.27 5.55 7.5 8.55 6.92 11.5 9.4 8.19 9.58 7.27 11.8 8.96 7.41 1.56 5.53 11 10.8 9.79 12.4 9.49 10.6 8.41 9.01 10.9 10.3 10.3 6.61 10.6 0.87 9.81 8.93 10.7 7.17 5.18 5.68 10.3 1.12 7.92 4.69 9.65 8.32 7.69 9.39 8.81 10.7 10 8.13 6.05 12 8.72 10.3 14.1 8.37 8.85 4.83 5.86 7.44 3.34 8.79 7.86 7.77 1.61 4.55 8.55 9.29 7.28 8 8.6 1.76 9.93 8.24 11.6 10.3 2.36 10.7 2.98 9.44 7.1 9.18 9.44 6.26 10.5 8.64 10.4 7.52 10.1 12 7.88 8.78 9.07 8.76 1.03 8.56 5.08 10.5 5.44 4.95 9.65 7.57 12.8 9.03 1.79 9.28 0.48 10.8 12 8 4.66 7.37 11.2 5.92 6.51 4.55 12.4 9.72 13.8 2.3 2.93 0.64 10.9 5.16 2.04 9.16 11.3 9.39 14.5 11.4 13.3 10.2 9.15 7.5 12.2 11.2 9.59 3.04 10.5 0.34 6.24 8.2 6.11 12.9 9.18 7.42 1.53 1.08 -0.48 3.65 9.55 1.79 12.1 6.99 9.67 10.9 10.5 11.6 10.7 6.53 13.1 13.9 13.8 9.14 8.91 10.1 11.2 10.3 8.26 11.8 11.6 7.52 4.52 8.03 6.76 3.39 4.31 6.02 9.61 2.92 8.83 8.62 7.42 11 5.74 6.4 9.9 8.13 11.7 10.3 11.3 10.3 10.2 10.3 6.79 13.3 9.71 10.5 11.2 9.24 12.3 9.75 10.8 11.9 11 11.3 4.78 7.65 15 14.6 13.8 11.7 11 12.9 11.1 7.98 13.5 12.6 4.02 8.49 7.62 11.6 8.06 14.3 13.4 14 6.71 5.82 5.22 13.5 11.3 6.73 11.2 4.82 6.12 4.49 7.35 8.61 6.68 8.6 12.2 10.7 9.28 10.8 11.7 9.47 11.3 13 12.5 5.75 9.77 8.26 11.1 10.8 9.79 10.5 9.28 7.37 9.28 8.88 3.48 9.61 0.72 8.2 1.14 10.1 0.01 8.72 13.1 10.2 14.2 12 13.1 11.8 12.6 12 11.5 11.2 13.7 1.56 12.2 13.6 0.97 7.04 3.2 8.88 7.37 6.93 4.89 5.28 2.46 4.58 2.43 7.78 3.04 2.29 7.93 5.37 8.34 9.86 6.68 7.54 9.73 8.58 5 7.77 7.99 6.99 6.04 8.84 5.12 9.37 1.53 9.17 0.38 10.2 4.51 1.1 10.2 10.3 0.65 2.96 0.98 9.09 1.72 6.71 8.82 11.6 10.7 7.84 10.7 4.42 2.16 9.72 10.8 11.3 9.63 10.3 10.2 4.49 8.55 5.15 2.22 10.6 10.2 7.75 5.24 11.5 9.88 13.2 12.7 11.6 5.05 8.21 12.5 15.1 10.7 6.5 5.84 15.1 13.5 12.2 3.77 8.25 15.5 10.6 15.5 14.1 10 11.9 11.5 8.96 14.5 4.33 4.22 13.2 10.9 9.56 1.71 2.71 2.87 4.27 3.35 -0.69 2.94 8.73 10.1 9.43 12.3 10.6 6.03 5.25 2.08 0.57 3.03 9.73 10.4 3.47 3.42 1.51 8.13 9.48 3.34 8.92 4.25 0.54 4.21 4.65 6.34 8.39 7.79 7.61 4.1 7.4 7.13 2.7 1.97 0.26 4.31 5.11 8.95 10.3 2.46 9.19 7.41 4.76 8.51 9.58 7.81 8.04 10.6 8.89 8.07 6.47 6.29 7.05 5.36 1.58 2.88 9.22 1.06 2.3 8.23 5.85 0.92 4.55 6.1 7.66 3.59 5.27 4.44 3.91 6.58 8.91 7.46 0.72 11.2 9.7 3.04 3.22 9.48 6.63 4.81 2.98 5.05 3.41 11.2 5.46 0.98 7.36 1.16 9.74 7.75 8.8 1.97 -0.02 6.55 4.48 1.63 7.47 5.24 0.32 7.74 3.1 8.54 1.87 8.29 6.26 3.56 2.3 4.35 7.43 6.29 5.94 4.6 2.94 5.27 2.98 13.7 6.3 5.6 7.72 7.09 6.34 7.98 3.05 2.88 2.42 10.1 3.95 11.6 11.5 9.52 10.6 3.06 10.1 0.7 5.85 6.35 11.2 10.8 0.55 7.85 9.86 0.38 7.62 0.43 1.31 7.98 8.65 11 3.77 12.4 4.13 4.19 2.62 1.6 6.9 1.38 8.48 1.25 9.91 0.45 7.42 9.79 0.82 10.4 10.6 3.92 3.99 4.22 1.48 2.07 0.63 11.3 8.14 5.05 5.31 1.14 4.17 7.78 5.15 4.47 6.41 1.77 2.61 0.94 2.78 1.89 10.4 3.82 8.93 4.28 2.57 7.08 8.85 2.76 2.59 12.2 1.8 10.4 3.98 4.48 3.27 11.3 2.22 3.04 2.07 5.24 3.67 -0.32 9.05 3.04 7.23 0.33 3.13 4.41 8.65 1.65 11.5 1.77 3.29 10.2 10.8 3.62 1.68 4.12 1.18 11 6.82 8.45 6.74 9.47 8.68 5.15 5.11 5.22 7.28 8.55 4.41 7.47 11.7 9.28 1.28 8.97 4.33 4.94 4.14 9.5 13.3 0.9 9.04 11.4 2.39 7.82 12 4.84 0.25 6.94 5.96 2.41 9.61 12.3 5.28 10.1 7.03 1.68 -0.39 4.24 3.78 7.09 3.94 8.84 8.46 14.4 14.7 8.72 4.73 6.97 6.71 10.4 4.91 2.41 6.59 -0.97 1.09 8.78 4.54 2.55 1.55 5.55 5.4 3.82 7.56 5.07 -0.01 8.11 9.6 11.5 9.55 1.69 6.73 10.6 9.04 12.7 6.05 5.25 8.67 11.1 7.04 11.5 1.9 4.88 8.02 8.4 9.63 6.06 6.21 9.43 1.44 2.83 13.4 6.56 3.5 2.54 8.98 9.35 4.38 7.85 3.58 2.69 6.68 5.17 12 2.65 8.81 11.9 9.05 9.48 6.54 9.33 8.76 5.15 0.85 9.3 5.19 8.7 10.5 11.3 12.3 2.62 10.6 8.23 10.3 9.51 11.3 9.21 9.04 8.4 7.43 2.91 4.9 7.93 0.41 8.72 9.66 1.09 9.4 9.02 8.43 9.51 11.1 10.7 4.78 3.09 11.5 -0.12 12 8.13 6.27 11.9 13.5 9.78 10.2 10.8 2.93 10 10.1 8.73 7.31 8.6 10.8 10.2 11.1 -0.12 7.18 10.6 12.1 2.48 12.8 9.32 10.4 8.53 7.09 6.29 0.64 7.9 9.75 9.43 9.44 8.29 13.4 9.57 10.8 7.68 14.4 11.9 11.6 9.44 8.44 10.8 2.09 0.72 2.71 11.7 5.02 7.55 11.7 9.04 11.5 6.13 8.92 9.64 9.88 12.7 10.5 8.76 12.8 10.5 9.61 11.8 9.14 11.7 11.5 10.2 14.7 7.52 5.67 10.7 11 11.2 1.14 6 7.55 8.1 4.51 2.21 5.94 9.29 7.72 9.2 7.33 8.34 9.38 7.58 0.8 6.2 1.56 0.76 6.35 1.25 7.33 3.86 6.32 9.37 8.72 8.94 1.15 4.68 5.11 6.6 8.67 1.31 4.58 2.87 4.67 10.3 6.35 1.9 9.1 4.56 2.46 5.96 -0.09 7.38 0.45 5.83 8.84 13.2 7.52 8.16 6.59 10.9 3.09 6.82 6.99 1.88 4.84 4.14 8.15 7.85 8.22 7.91 1.98 0.84 3.04 1.17 6.75 6.25 6.77 6.48 8.1 8.58 6 7.1 0.24 3.32 0.28 6.04 2.92 1.01 7.97 6.32 3.49 0.06 10.5 7.51 8.31 2.29 6.68 13.3 2.61 0.63 7.65 3.16 10.2 6.6 4.53 8.99 -0.78 4.87 5.64 6.39 3.07 5.79 7.91 12.3 6.38 2.06 11.5 7.64 10.9 8.57 6.44 6.98 6.69 12.5 1.42 1.42 6.77 8.95 8.69 -0.4 1.88 3.3 7.25 7.26 -0.06 6.34 13.7 3.95 8.56 4.16 10.7 2.16 5.92 9.33 7.23 0.26 11.9 9.08 5.31 9.94 1.76 4.39 1.22 9.85 1.52 2.69 8.8 4.55 3.46 11.9 6.35 1.88 1.57 2.09 4.58 1.21 9.74 10.2 8.29 10 11 12.9 11.6 10.5 7.58 11.7 4.86 11.3 12.1 12.1 1.17 1.62 15.7 9.31 1.46 8.44 5.41 2.95 12.8 6.81 3.63 11.7 0.89 6.54 4.88 5.3 2.39 2.9 9.14 3.61 0.14 3.32 8.91 5.86 6.12 14.6 5.35 10.2 2.25 4.44 3.53 2.84 6.37 7.95 8.24 0.04 2.68 2.37 7.65 5.53 8.35 1.48 6.07 7.5 4.81 3.18 11.8 2.62 2.43 8.98 0.21 4.2 9.41 2.61 2.44 11.3 3.13 6.36 4.8 7.18 8.03 3.66 2.79 4.86 4.03 6.5 3.72 3.03 5.06 5.05 6.57 5.85 6.83 6.43 10.1 4.81 5.51 12.9 -0.03 4.17 8.5 7.6 9.19 4.6 6.24 7.06 4.53 3.88 2.98 7.99 10.8 0.82 9.08 3.06 7.89 1.09 8.09 6.72 1.68 4.4 5.37 8.45 8.74 1.47 8.45 3.33 2.13 7.85 6.45 9.33 7.72 6.23 2.07 8.64 12.2 8.21 2.54 5.16 0.29 4.33 4.26 5.41 4.24 8.63 4.93 5.29 5.34 8.27 5.22 8.93 7.47 10.1 0.63 12.5 6.4 7.82 10.2 2.8 2.85 6.67 5.41 8.62 2.07 1.23 7.6 4.63 9.15 0.18 3.94 1 0.66 6.99 2.18 6.73 4.28 9.58 9.78 7.22 2.21 0.54 1.83 8.04 4.45 1.65 1.07 7.14 -0.15 8.18 12.2 8.97 4.24 8.29 10.3 10.7 8.44 11.7 0.6 12.6 0.96 11.8 0.23 8.03 13.2 12.6 12.1 7.1 1.8 12.1 12.1 12.6 3.26 3.21 5.52 10.9 5.92 13.4 4.75 5.3 10.9 10.6 5.54 8.31 15 11.4 8.76 0.27 14.1 11.5 11.8 13.2 7.76 1.51 7.43 10.3 9.5 10.5 11.8 13.4 14.9 12.9 13.8 9.8 11.9 11.1 0.66 10.9 10.6 9.76 -0.64 9.87 8.65 13 10.1 11.2 9.99 11.6 7.77 6.18 7.1 8.96 12.5 1.68 4.38 7.49 6.65 8.39 7.06 11.9 5.04 3.44 2.71 13.1 4 3.44 6.63 6.45 12.3 4.92 8.06 7.49 11.1 -0.49 9.13 5.65 9.92 11.2 12.7 6.58 8.9 6.14 9.73 0.09 1.18 5.09 8.58 5.19 9.01 8.45 9.78 3 5.45 7.78 2.22 7.3 6.03 2.21 8.54 2.53 1.02 5.73 5.97 4.81 10 2.75 4.35 9.75 4.29 11.4 7.67 8.18 2.9 10.1 4.48 3.98 8.47 5.54 7.56 9.51 3.6 5 0.49 6.82 2.91 4.34 3.49 1.92 5.73 9.77 0.3 7.92 5.82 4.6 1.95 6.34 2.38 0.99 5.54 2.44 9.72 4.79 6.77 7.16 2.38 9.25 0.05 6.24 6.21 3.07 8.54 9.13 0.55 6.98 7.44 11.9 6.46 8.69 9.2 1.15 0.55 2.23 1.49 5.48 8.78 4.1 7.8 9.38 3.63 -0.51 4.17 7.82 9.27 8.07 0.84 7.19 4.29 9.4 0.73 2.76 9.55 0.9 7.63 7.83 8.33 8.92 1.72 8.36 10 12.4 0.92 7.63 7.35 10.3 2.81 8.39 11.7 1.61 3.04 3.24 4.99 10.9 5.48 4.33 9.62 8.08 8.38 9.78 11.8 11 4.24 9.78 10.3 7.62 10.5 9.53 9.43 11 3.65 9.31 1.49 5.18 9.22 7.62 11.8 11.8 6.91 7.69 10.7 6.44 10.3 6.58 14.9 10.6 14.2 13.8 11.5 13.1 12.6 1.49 6.14 5.69 7.45 9.4 11.7 11 10.1 8.95 8.82 10.6 11.4 10.3 9.44 11.4 8.2 8.51 5.32 8.31 10.5 0.13 5.88 9.7 8.1 8.91 2.52 4.4 10.1 9.85 10.5 9.28 9.52 11.6 9.49 10.2 8.73 6.94 9.81 7.08 12.1 4.5 6.09 7.17 10.4 10.2 7.56 3.86 10.9 4.84 2.46 7.36 8.81 3.25 8.06 6.6 3.97 12.2 4.64 1.23 10.4 8.49 8.72 10 7.34 7.63 9.99 11.8 11.6 6.01 9.95 12.3 10.3 5.91 11 7.62 4.89 1.26 12.8 11.2 12.8 10.1 10.5 10.4 11.9 13.1 2.54 8.32 9.6 4.7 11.3 12.5 11.5 12.4 10 9.01 9.89 9.36 10.1 10.5 4.51 9.74 10.7 5.92 3.09 7.27 7.33 8.17 10.6 8.84 8.63 9.37 10.8 9.35 6.79 0.5 9.37 12 8.43 9.53 5.96 10.3 9.85 9.79 8.87 7.76 11.4 10.4 11.1 8.68 10.7 11.9 8.02 10.5 11.2 9.02 11 10.5 10.1 11.3 6.83 9.4 11.6 10.2 0.83 9.28 10.2 8.4 12.2 10.3 8.08 9.25 7.02 8.09 11.3 10.5 10.5 10.3 12.3 7.65 8.29 11 11.8 8.3 7.91 8.73 10.7 11.8 0.51 -0.3 8.16 3.42 9.07 13.2 6.33 11 3.72 3.34 7.53 8.56 5.17 6.9 7.27 5.94 9.52 1.69 6.92 9.58 -0.21 10 7.74 11.2 10 8.72 3.57 3.37 8.54 4.7 5.9 9.86 9.11 4.43 6.12 8.94 13.2 0.44 0.35 9.58 8.92 1.9 2.23 5.83 10.9 10.3 3.97 0.42 3.19 4.59 6.89 1.74 9.28 4.2 5.56 5.45 7.66 10.8 3.42 7.64 9.35 4.08 7.18 4.46 6.39 7.39 5.16 10.3 7.1 2.14 8.19 0.83 8.4 6.82 5.28 6.92 3.37 0.44 9.42 9.77 2.91 9.35 5.7 1.92 6.36 2.67 8.01 6.8 2.81 1.73 7.3 5.81 6.44 6.3 14.8 3.52 7.1 4.94 6.88 4.98 3.41 6.07 8.05 6.34 1.98 6.3 7.54 8.66 2.84 5.93 6.84 1.17 6.53 5.27 1.7 2.34 4.79 0.49 2.16 1.53 2.45 1.63 10.8 1.85 6.05 5.31 4.76 7.05 2.08 4.65 4.9 10.9 1.73 0.99 1.54 0.27 0.45 1.42 7.19 1.48 2.87 8.62 6.75 2.81 1.89 11.4 0.84 9.85 8.42 1.4 8.65 11.3 11.8 9.16 3.22 9.65 7.67 2.75 10 12.5 7.36 6.52 5.32 11.6 5.63 9.73 7.22 8.06 4.02 7.91 9.27 9.5 5.89 8.73 7.31 10.9 9.37 10.6 8.42 8.19 3.51 10.1 9.56 9.85 15.1 7.34 9.01 9.59 9.78 7.73 9.68 7.8 11.7 10.1 8.4 8.85 5.82 10.5 3.18 1.11 0.2 11.7 5.21 7.31 10.2 8.46 1.74 6.14 15 9.29 10.5 9.51 1.62 6.04 12.9 11.7 9.68 11.9 11.4 11.6 8.88 11.8 13.2 7.8 11.8 7.56 10.9 12.7 10.7 8.66 9.99 1 10.3 8.82 13.9 9.82 9.85 8.92 12.6 5.31 12.5 4.22 4.37 11.4 12.1 11.5 12.5 14.4 9.72 8.92 10.5 4.79 1.44 9.85 6.47 7.61 9.86 14 6.72 9.73 9.64 9.13 11.3 9.84 12.3 10.2 8.37 9.75 13.2 10.6 11 10.8 9.17 9.27 9.68 11.4 11.2 11.1 10.7 9.63 10.2 11.4 10.4 8.49 9.79 10.7 9.54 10.8 10.4 11.1 9.56 11.1 10.3 9.55 11.5 11 8.64 9.73 9.06 13.2 13.3 10.5 10.1 2.24 8.06 7.93 5.8 8.34 1.06 1.23 3.74 2.17 9.61 8.06 8.41 7.8 5.48 11 10.2 14.8 11.1 4.66 9.58 8.34 7.21 9.15 8.67 7.28 4.63 12.9 5.12 11.5 11.1 9.38 8.96 9.87 10.5 11.5 11.5 9.6 9.54 8.03 8.45 9.25 11.9 12.3 0.22 12.4 8.95 9.88 4.96 3.24 11.6 14.9 9.45 11.2 9.09 4.56 8.77 7.27 5.98 10.4 5.2 3.64 5.99 11.8 11.2 13.4 8.86 9.6 7.34 11.5 8.31 2 10.6 12.9 4.02 8.63 10.4 9.95 8.56 11 11.5 11.2 9.63 8 6.16 11.4 5.42 10.2 9.06 11 6.91 14.1 4.37 1.78 13.4 6.94 8.3 0.91 3.34 1.69 10.8 10.8 11.2 9.94 11.8 8.02 1.25 11.6 5.95 4 1.65 12.8 10.8 10.2 0.45 7.9 3.5 8.98 2.7 -0.71 7.46 0.28 5.75 5.46 4.72 5.24 7.98 12.3 11 12.8 9.74 12.1 7.89 10.5 8.44 3.87 8.43 8.81 11.6 8.21 2.93 8.69 5.65 5.87 8.99 11.8 5.81 12.7 9.43 1.28 6.48 9.53 8.44 1.42 4.48 4.32 0.08 12.7 9.52 10.3 12.4 10 1.78 11.9 7.33 3.81 3.56 1.71 4.57 2.4 2.87 1.28 11.5 9.52 13 7.35 8.26 8.43 7.58 7.74 2.22 4.58 8.02 9.15 11.8 9.18 8.64 10.2 7.64 1.72 11.2 3.65 8.23 4.66 6.18 5.67 6.93 11.7 8.26 6.5 6.12 7.8 7.49 4.49 5.84 3.76 6.9 7.14 9.51 15 4.71 6.25 11.6 1.47 1.41 3.46 11 8.85 11.5 9.92 11.1 8.9 9.35 6.56 11.1 9 8.92 15.7 7.72 8.9 9.04 6.44 14 7.99 0.44 9.98 13.4 -0.14 6.47 10.6 8.66 12.4 4.64 8.36 9.54 3.84 6.32 9.16 5.99 9.89 4.71 10.6 7.18 4.04 10.7 10.7 8.89 7.4 5.6 -1.35 8.79 11 9.77 11.2 6.63 10.5 9.75 8.86 2.07 3.43 2.74 13.3 4.93 11.4 9.69 5.86 4.57 0.17 10.4 10.5 8.3 8.41 9.53 11.2 7.37 7.45 10.5 12.6 6.67 2.74 13 8.44 6.85 -0.06 8.15 11.1 12.8 11 10.9 12.2 9.56 7.36 8.16 6.49 7.72 8.09 9.98 9.24 8.64 3.01 9.85 7.49 11.6 8.7 11.5 8.5 7.11 9.16 8.41 9.33 11.3 6.91 8.14 10.9 8.22 10.2 6.98 9.64 10.1 10.1 9.65 10.7 8.34 9.93 4.58 8.04 6.48 11 5.47 6.83 9.69 11 11.2 6.73 7.47 9.95 3.25 8.55 11.1 8.42 9.29 8.9 8.93 9.74 9.19 10.6 8.23 9.6 9.75 10.7 11.7 10.2 11.1 4.18 9.71 8.05 1.89 7.37 9.81 9.16 8.98 9.2 8.44 10.6 8.38 9.98 9.55 8.82 8.35 9.77 11.2 8.01 7.56 7.54 8.94 9.7 7.76 11.8 11.2 11.4 11.4 8.38 9.72 8.98 11.2 9.06 10.1 9.72 9.07 11.4 8.37 9.81 9.94 10.1 9.06 10.2 3.84 10.2 4.6 8.18 9.28 11.6 10.4 8.13 9.02 8.46 9.21 10.2 11.8 8.99 11.9 8.26 7.44 6.43 11.2 0.91 9.52 11.8 7.29 9.74 10.3 4.59 8.36 11.6 11 4.95 8.89 3.67 10.6 5.64 8.81 7.92 7.05 7.81 8.68 8.35 8.71 9.34 8.13 8.88 11.4 11.1 7.82 10.5 8.6 7.78 9.6 8.91 8 9.15 9.87 9.28 10.4 9.15 9.21 7.92 1.27 15.9 1.94 8.94 3.37 8.97 7.8 4.75 7.63 9.22 10.3 9.27 11.1 2.58 9.92 8.81 10.5 6.5 9.55 7.98 11.7 10.4 9.79 9.5 9.32 7.27 11 -0.01 10.6 10 7.57 7.7 10.2 7.71 9.69 9.89 9.91 4.04 5.82 2.62 10.7 11.5 12.2 11.4 7.99 3.82 6.56 9.49 10.5 9.13 12.5 7.97 9.46 11.8 6 2.28 9.55 9.01 9.58 9.58 10.5 8.37 8.37 9.9 8.57 5.73 9.76 9.77 10.6 7.88 9.43 9.9 3.75 9.78 9.91 4.5 6.02 5.25 4.64 9.19 9.49 0.77 9.08 11.1 9.5 9.97 8.98 10.3 10.4 11.3 10 6.41 10.4 5.58 9.9 6.98 6.11 6.3 11.3 9.44 6.89 7.26 9.06 9.93 10.2 9.35 11 2.97 9.12 -0.19 6.11 10.1 10.7 8.81 8.92 0.68 9.35 10.9 8.4 9.17 4.08 11 9.53 8.29 10.8 9.11 8.94 8.8 6.27 7.37 9.99 2.02 7.44 12.7 8.86 8.83 5.02 9.11 7.55 7.78 10 9.29 12.1 7.74 9.44 9.31 8.16 8.18 8.11 8.73 10.8 7.99 8.56 8.6 10.1 10.6 6.73 10.8 11.1 9.98 8.39 10.5 8.75 2.35 10.7 9.45 9.42 10.4 2.88 9.77 8.56 9.55 8.77 3.06 11.1 9.69 8.38 1.18 13 7.27 8.44 10.3 3.83 9.18 8.7 11.3 11.1 9.27 11 9.33 11.8 9 8.02 8.28 10.5 10.4 11.2 10.1 12.6 8.26 7.74 9.11 7.86 5.83 11.8 9.74 7.59 8.77 10.1 11.1 10 10.3 5.86 7.69 7.56 4.53 9.93 9.75 8.68 9.06 7.78 8.83 9.69 8.48 9.62 8.28 8.34 8.8 11.6 8.67 1.55 8.09 10.3 7.47 7.65 8.15 11.3 10.8 10 11.1 5.11 10.8 11.2 9.59 9.52 3.93 11.8 9.73 11.4 7.6 11.1 10.2 11.5 10.4 9.3 13.3 8.66 11.1 6.91 11.4 10.2 11.4 8.92 9.27 9.97 9.19 12.3 9.26 0.58 7.4 9.25 10.7 9.67 9.33 11.4 8.79 10.8 7.82 9.42 10.2 11.4 9.9 9.05 8.23 10.4 9.31 10.5 8.81 10.4 6.77 9.45 9.46 11.2 9.41 7.12 9.79 6.92 10.3 8.47 6.8 11.4 8.65 10.5 7.48 11.5 8.68 11.3 6.83 7.99 9.58 8.27 4.1 2.66 9.15 8.84 10.1 9.2 9.7 9.84 11.9 11 7.36 9.3 1.56 12.4 13.1 7.87 8.82 5.52 11.4 8.19 1.1 11.7 4.17 10.1 11.6 13.3 9.01 11.1 2.69 9.99 8.12 6.07 7.66 5.97 10.7 4.45 11.6 10.7 10.5 2.17 10.9 9.31 11.2 10.1 8.26 7.19 2.41 9.22 8.89 -0.72 10.1 11.1 9.63 10.2 4.61 11.8 11.9 7.21 7.38 4.96 8.33 11.8 9.72 9.93 8.08 8.28 11.5 9.3 7.15 7.53 7.88 9.72 7.89 0 1.74 9.6 5.03 10.9 9.8 9.3 8.81 11.9 12.7 3.48 12.3 11.6 10.2 5.9 11.2 2.32 10.8 12.1 13.3 9.2 8.88 9.63 11.5 4.8 10.4 11.4 6.37 8.09 11.8 13.3 10 9.09 6.76 4.36 7.64 6.25 11.8 4.12 13 2.65 8.94 10.1 9.02 9.62 10.3 10.2 1.31 9.48 9.12 15.8 12.7 10.8 11.8 9.13 8.48 8.39 6.94 8.52 8.92 10.2 8.3 8.6 16.4 11 11 8.99 10.9 9.51 11.1 9.29 8.69 7.19 10.6 9.56 10.8 10.3 10.3 9.16 1.05 8.6 9.54 10.2 9.19 10.3 8.89 2.68 13.9 8.24 10.2 1.09 8.83 5.13 6.6 10 9.88 10.3 11.1 11.2 7.78 10.4 10.4 7.14 6.44 9.79 6.36 6.89 3.22 8.93 9.35 4.4 5.85 8.7 9.97 0.72 8.01 9.47 11.2 9.34 10.8 9.42 14.1 2.56 7.23 9.02 8.8 4.99 3.59 3.77 10.3 13 11.1 5.91 10.8 10.7 0.81 11.9 9.23 12.8 12.6 12.5 10 11.3 10 7.72 10.7 6.89 9.96 3.9 11.2 5.69 8.71 0.88 6.36 11.5 11.4 8.82 11.6 9.13 8.38 8.5 9.05 6.31 4.89 2.9 3.14 7.55 12.2 5.32 6.59 2.92 5.47 8.42 3.56 10.2 8.38 11.2 5.89 10.9 9.16 9.27 8.66 9.53 8.86 7.83 10.1 8.88 6.79 9.22 7.4 10.9 8.91 10.4 9.88 11.4 2.07 4.33 5.68 6.65 7.18 1.88 7.69 1.82 -0.27 7.65 6.48 9.23 9.7 5.99 11.1 9.27 11.7 3.76 10.8 6.37 7.13 3.16 7.87 3.25 7.86 7.8 6.41 8.48 9.57 10.6 10.9 12.2 10.5 6.38 4.39 1.51 9.52 7.55 8.95 10.8 10.1 6.78 -0.09 10.3 9.16 12.6 11 9.79 2.28 4.41 9.46 8.46 7.67 10.8 7.33 8.42 8.87 9.61 2.83 6.43 10.3 8.7 9.65 8.94 9.09 12 10.1 5.84 9.99 9.96 3.81 2.64 12.6 8.89 8.54 9.92 3.29 9.34 5.08 4.5 10.7 8.87 7.34 10.2 10 12.2 10 8.56 8.11 1.78 1.88 12.5 9.69 11.2 9.37 11.1 10.6 8.55 0.93 13.4 9.67 10.2 10.5 6.85 10.7 10.2 9.58 10 9.76 5.55 10.7 8.25 9.62 7.55 8.64 6.39 10.2 8.05 9.81 8.71 11.6 11.2 10.7 12.6 9.6 7.96 9.67 6.76 2.82 9.54 7.05 8.83 7.83 7.94 8.59 10.2 8.73 10.6 9.01 6.69 10.1 1.41 8.32 9.33 9.04 9.22 9.95 9.34 8.79 10.3 9.26 11.4 9 11.5 11.1 7.9 10.6 8.46 9.32 7.63 7.06 6.84 7.76 9.04 0.62 7.38 10 7.17 8.37 8.21 3.01 11.7 6.43 8.95 10.4 9.9 7.91 5.7 9.31 9.12 8.78 10.8 12.8 2.04 7.04 8.45 6.97 12.5 9.7 2.21 9.7 9.23 10.7 8.92 9.43 1.97 10.6 9.92 11.5 8.88 9.3 9.18 10.9 10.5 -0.46 10.6 9.42 8.07 9.58 8.65 9.17 5.33 10.3 0 12.2 8.68 2.23 10.2 10.8 8.96 2.47 5.52 3.91 11.7 4.36 5.57 2.13 7.29 6.41 8.42 12.2 4.76 8.66 9.36 10.4 2.13 9.61 9.78 12.3 8.67 6.51 7.04 10.2 12.7 9.09 9.1 10.5 6.43 7.8 5.61 9.49 9.97 10.3 9.13 7.97 8.37 8.52 7.23 9.16 14.6 9.06 8.96 9.3 11.2 8.64 8.52 11 9.34 8.92 10.1 7.68 10.5 6.7 11.9 6.99 0.24 9.13 7.79 7.05 -0.47 10.6 8.8 8.64 10.3 7.04 11 8.58 10.8 10.2 11.1 7.71 8.83 8.4 8.42 8.57 9.94 9.86 10.2 9.87 4 9.91 7.88 10.3 9.62 11.9 8.75 8.41 10.6 7 11.5 9.41 11.3 9.96 9.58 6.78 11.4 7.38 9.11 8.96 8.77 7.9 10.3 9.44 11.5 8.78 11.1 10.2 9.12 11 10.5 9.27 9.17 9.49 11.2 7.44 10 4.53 7.5 7.8 7.54 7.6 9.34 8.32 9.4 3.59 10.8 8.89 9.22 8.36 9.2 10.7 9.12 10.7 10.3 7.57 10.4 7.56 7.04 9.11 12.3 9.6 10.7 8.99 9.43 9.33 9.48 8.21 8.87 8.55 8.46 8.74 0.8 8.75 9.32 9.98 11.4 7.42 8.18 3.99 9.46 7.68 9.3 9.48 10.9 8.56 7.15 9.95 7.36 8.29 7.42 7.54 6.09 11.8 8.72 10.1 7.06 9.07 6.93 9.36 1.65 8.23 7.51 7.36 6.81 8.12 9.86 8.88 9.01 9.31 10.6 4.86 7.24 7.6 8.8 9.27 6.91 9.15 6.56 8.82 1.05 9.35 11.1 6.91 7.01 10.8 7.63 8.28 11 9.41 9.77 11.2 12.4 12 7.75 10.3 8.72 10.6 8 8.09 8.1 9.61 9.33 11.7 8.14 9.55 7.59 8.37 7.36 9.45 9.05 6.39 10.6 7.29 0.98 9.85 5.38 10.8 9.54 4.48 7.88 9.31 9.64 11.4 9.22 7.11 8.5 10.7 5.94 10.6 8.06 8.61 10.6 9.02 11.8 8.86 8.26 8.3 9.94 9.56 8.86 7.16 5.9 3.08 9.49 7.84 4.36 6.65 8.03 4.32 8.64 4.51 12.8 8.04 6.83 6.28 9.96 8.11 9.22 10.5 6.15 9.43 10.1 11 7.87 5.33 7.09 9.36 4.64 7.38 7.67 9.32 8.74 8.85 10.9 4.44 9.93 8.73 9.66 9.78 10.4 8.11 5.77 10.1 9.45 9.34 8.19 9.66 8.32 6.88 10.6 7.47 10.9 8.24 8.73 5.43 9.41 10.8 8.87 8.59 1.84 8.59 8.86 9.14 7.27 2.74 5.9 9.17 10.5 9.08 8.85 9.28 10.2 6.99 9.76 9.88 9.48 9.13 12 2.9 7.4 8.68 9.78 9.4 8.94 10 9.84 10.6 9.39 10.9 10.8 9.22 9.72 7.42 10.1 9.48 9.41 9.01 7.74 9.8 10.4 6.74 6.46 9.21 7.57 8.12 12 8.87 8.99 10.1 10.7 6.45 10.5 9.96 9.87 9.19 2.39 10.6 7.09 9.51 6.3 8.58 10.9 10.2 10.5 7.33 3.76 9.75 7.67 9.39 6.45 10.2 10.2 9.27 10.3 7.43 10.4 5.4 8.46 7.61 9.32 6.88 10.8 9.16 8.2 9.22 9.64 5.95 3.78 8.72 7.34 3.98 9.51 11.3 11.8 4.33 7.87 10.5 10.5 3.79 9.89 12.1 10.2 8.05 9.18 11.8 10.5 7.65 5.71 9.7 9.93 5.57 7.3 10.4 10.9 9.97 10 9.48 10 10.2 8.55 10.9 9.07 9.76 4.34 7.92 7.49 8.66 9.5 2.85 8.81 9.58 11.3 8.67 9.52 4.93 9.43 10.9 9.15 6.63 9.42 8.97 9.88 9.03 8.76 5.24 6.31 8.71 8.11 9.94 0.39 9.37 12.1 3.23 9.87 8.12 10.9 11.4 8.83 9.3 7.57 5.35 8.43 8.52 9.83 2.21 9.68 9.93 3.28 9.07 4.27 9.07 11.2 8.52 10.1 9.8 9.5 8.74 7.93 5.11 9.47 8.01 8.37 9.82 9.5 5.04 9.15 5.49 10.1 8.01 10.3 10.5 2.85 8.12 7.54 7.67 8.92 9.76 10.2 11.4 3.73 5.96 9.56 10.5 10.4 8.29 11 10.2 10.2 9.15 7.25 7.76 9.73 9.43 5.23 4.9 8.88 11.2 8.53 6.5 7.81 8.55 10.5 9.37 10.9 10.2 8.55 12.1 9.51 10.7 6.75 7.63 12.8 11.5 4.49 8 3.17 8 8.68 5.68 8.1 -0.46 0.88 8.53 5.32 10.4 9.44 7.71 -0.27 9.07 10.2 9.09 10.2 9.51 10.6 8.12 2.55 10.2 7.69 10.9 11.5 8.18 5.21 4.76 9.83 9.58 8.39 4.32 7.32 4.72 7.69 1.9 9.24 1.12 10.1 6.77 4.63 9.56 9.66 7.38 2.81 5.23 7.24 7.63 5.23 8.88 8.65 1.5 2.95 7.49 7.59 8.93 9.56 8.39 8.4 6.2 5.65 12 8.01 10.7 8.57 12.9 1.26 8.87 9.83 8.65 6.58 10.3 10.7 8.63 10.8 8.28 10.7 9.32 7.81 3.39 10.9 8.68 9.21 10.5 10.2 9.7 10.8 7.81 12.1 10.6 11.5 4.89 9.6 8.5 6.18 8.18 9.09 11.3 8.52 9.41 9.11 11.4 9.61 11.5 10.2 10.9 8.79 10.9 7.93 7.82 8.41 8.38 7.89 7.71 8.5 9.26 9.38 10.6 7.25 10.5 8.12 8.39 9.23 8.95 8.41 10.3 8.69 9.83 11.4 2.8 9.47 8.22 9.09 5.97 9.85 11.7 11 10.3 7.62 7.88 9.94 11.8 10.8 7.46 10.4 9.5 9.01 10.9 7.71 8.93 10.9 8 7.83 10.7 10 11.1 8.29 7.87 10.4 4.38 11.1 8.42 9.34 3.59 9.96 10.2 9.72 3.2 11.9 6.63 10.4 10.3 8.34 8.46 9.48 10.7 9.36 9.96 8.77 10.1 8.75 7.54 3.25 10.5 7.97 10.6 10.3 9.67 10.1 5.43 7.49 9.38 9.64 9.75 6.83 10.3 12.5 10.4 7.82 7.12 9.6 10.2 10.8 11 9.78 10.8 10.2 10.3 9.05 9.47 9.49 10 12.2 11.3 8.27 8.78 9.19 11.2 6.71 13.6 10.4 8.11 9.05 9.22 9.42 7.72 9.93 10.9 7.36 10.1 9.78 11.9 9.61 8.98 9.17 8.01 9.26 7.76 10.4 8.49 8.35 8.17 7.52 8.18 11.6 8.05 8.75 8.81 9.36 10.2 4.71 7.99 10.8 9.88 9.27 11.1 8.91 8.22 7.86 9.84 8.08 7.77 0.37 8.73 10.5 3.24 9.33 7.16 4.29 9.01 11.4 8.53 7.69 9.01 1.56 6.9 10.2 9.52 3.18 10.3 9.15 7.96 9.39 9.11 8.39 11.1 11.2 9.29 9.29 9.76 11.7 12.5 8.19 9.32 8.67 11.3 7.64 9.29 7.08 8.34 10.1 7.68 9.14 7.71 10.5 8.16 9.81 10.1 4.91 8.18 6.56 9.08 7.77 10.6 4.9 10.6 9.32 10.3 9.63 8.56 3.63 8.36 6.74 10.5 9.2 8.04 10.7 5.6 10.8 4.43 3.69 2.72 12.7 11.5 9.34 9.4 4.56 11 8.39 9.48 6.74 11.1 11.1 10.7 8.41 9.62 8.79 12.3 7.15 10.8 8.71 8.97 10.6 5.87 11.8 9.15 4.56 8.52 4.15 11.5 4.9 11.5 10.8 7.73 6.75 9.71 11.4 4.26 1.54 9.74 10.7 11.9 11.3 11.4 12.6 9.48 9.45 10 8.72 8.56 8.62 1.35 7.37 0.24 11.3 9.77 10.3 5.31 9.26 8.02 9.22 11 9.97 11.8 11.4 2.52 6.87 7.19 6.89 9.13 2.81 3.38 6.78 9.15 4.31 2.97 3.56 4.61 5.02 4.84 9.05 5.11 3.04 4.67 11.6 3.8 3.37 1.09 1.56 4.93 9.49 2.29 4.37 7.18 6.89 5.74 8.1 5.84 4.05 4.93 3.77 9.33 1.67 4.08 3.41 5.68 3.01 6.3 7.33 7.09 1.45 1.69 3.94 10.2 7.79 7.82 8.69 2 9.62 10.2 -0.15 6.56 6.58 5.35 11.9 1.11 5.69 10.6 4.61 10.2 9.44 5.55 10.4 10.1 4.34 9.97 11.2 7.15 9.64 8.73 11.6 8.41 9.62 2.59 -0.05 9.76 9 10.3 9.44 9.49 9.02 9.02 6.88 11.1 6.32 4.15 13.6 9.21 9.72 9.41 3.98 3.48 13.1 7.71 10 6.28 0.04 14.5 5.14 7.35 4.17 9.17 3.75 7.78 11.2 8.76 10.2 8.17 10.8 9.78 9.16 10.6 8.08 7.96 3.08 2.16 7.1 7.22 8.6 1.99 10.2 5.91 11 9.2 16.1 8.43 0.02 8.69 8.75 11.7 10.8 11.3 8.08 8.23 10.7 9.25 11.1 10.2 9.89 8.38 1.54 11.5 11.4 11.8 10.4 12 10.2 13.9 11.3 8.29 9.93 10 10.7 8.15 9.46 8.6 1.63 11.1 10.3 7.26 9.2 10.1 9.35 5 9.84 11.2 11.7 6.48 7.72 10.4 8.69 9.57 4.91 7.94 11.6 7.38 9.98 6.81 8.43 11.2 9.95 10.2 9.42 11.1 8.54 8.55 11.1 9.29 10 8.78 11.2 8.3 8.59 7.07 9.61 8.07 10 8.09 9.85 11.3 8.38 11.1 7.65 3.47 9.76 9.22 11.1 2.21 7.33 3.37 8.95 6.5 10.7 5.48 9.17 5.2 5.61 9.8 8.23 3.94 9.26 9.94 6.98 7.87 10.7 10.2 11 8.31 10.3 10.6 9.35 10.9 9.96 8.12 10.1 11.3 9.28 8.59 8.24 12.4 8.26 10.6 1.18 9.89 11.3 9.37 11.4 9.45 7.28 1.99 8.52 10.4 8.4 12.5 10.4 8.05 11.7 9.14 3.3 10.7 8.1 -0.5 11.3 12 12.5 8.09 8.4 9.01 9.27 11.6 3.54 11.2 1.38 8.93 2.49 7.6 7.49 10.3 11.6 2.52 8.83 9.86 11.1 2.2 6.9 8.5 9.62 10.1 11.2 4.9 8.52 4.66 9.68 6.83 10.1 8.61 7.85 11.3 8.21 10.3 10.9 11.1 11.1 6.86 11.6 7.5 10.8 11.1 12.2 7.86 10.3 8.52 10.8 9.48 9.36 5.85 11.3 11.5 2.55 9.17 2.6 9.85 9.67 10.9 3.34 5.58 9.08 11.8 11.1 8.88 11.2 9.4 11.2 10.7 10.3 6.72 9.59 9.09 8.66 9.37 10.6 11.4 6.47 9.67 12.2 11.3 2.56 8.22 6.5 8.79 8.12 11.9 8.39 7.62 11.6 10.2 10.1 8.15 7.82 10.7 8.53 8.82 10.1 9.37 12.2 11.4 9.19 9.65 10.2 7.88 10.2 6.28 7.94 12.7 9.18 10.9 2.59 3.51 9.18 12.3 7.76 3.57 7.69 9.7 10.7 4.89 6.65 6.6 7.69 6.82 8.83 1.81 9.07 5.55 3.01 5.55 11.3 9.17 7.4 6.1 3.92 8.49 5.43 2.75 0.71 10.3 9.27 -0.89 6.81 6.88 9.82 8.59 10.4 6.34 10.4 5.64 9.21 7.88 8.99 9.29 3.28 9.35 10.3 11.4 7.85 2.64 1.81 4.65 1.95 9.8 8.91 7.81 9.56 0.25 10.8 9.75 12.1 5.57 8.98 8.32 9.62 1.78 4.5 10.5 9.63 5.08 10.7 8.98 8.14 9.39 8.82 7.54 9.1 10.2 8.94 9.64 4.02 8.33 10.4 8.31 4.93 10.7 10.5 8.85 3.35 10.4 1.21 10.6 3.59 3.28 4.8 9.33 8.97 11.6 7.72 9.39 12.3 10.6 9.65 9.59 8.86 11.6 7.8 10.7 9.51 7.93 0.44 1.77 1.22 1.02 8.83 12.6 7.66 11.8 10.6 11.4 12.5 6.3 4.35 7.01 9.34 9.72 -0.22 8.16 9.12 7.92 7.74 6.97 6.48 7.7 8.48 12.4 9.87 0.6 7.9 8.19 6.44 8.22 11.7 9.9 10.6 6.77 7.91 4.56 7.69 10.3 3.85 14.1 8.78 7.82 10.7 4.17 2.06 4.24 8.87 1.71 11.7 9.85 0.33 10.5 11.6 9.79 9.73 8.83 10.6 9.68 9.67 5.97 8.82 4.05 4.34 8.37 9.34 4.15 9.04 10.6 4.69 7.83 9.58 9.47 10.9 8.83 5.74 10.2 1.21 6.54 9.13 12.7 10.1 8.73 6.16 7.76 -0.04 10.6 10.8 5.17 10.9 8.48 6.26 7.21 1.7 10.1 8.57 9.69 12.9 10.4 8.69 5.85 7.59 10.8 6.6 9.34 9.83 11.1 9.13 9.58 8.23 8.47 9.79 7.1 8.09 13.6 5.72 9.07 9.8 13 10.9 7.78 6.93 8.62 6.34 8.63 2 8.51 6.78 6.18 9.79 9.13 9 7.66 10.3 8.48 1.49 10.7 9.3 8.44 9.75 11.4 9.09 10.2 7.78 10.5 9.66 3.71 6.25 5.36 11.3 6.69 6 6.84 7.2 12 7.71 6.39 9.25 9.48 8.03 6.17 3.94 6.53 4.11 9.82 8.38 4.88 8.23 7.53 10.3 8.45 9.11 9.29 8.58 12.5 10.1 9.36 9.43 4.88 11.6 10.8 11.7 9.12 11.4 9.62 7.55 4.51 9.96 10.2 8.76 4.62 7.29 -0.05 8.68 8.07 7.2 10.3 9.71 4.87 2.54 9.78 10.9 4.55 8.16 9.22 13.8 9.54 11.5 11.7 12.1 10.6 1.06 10.6 0.65 7.21 4.84 7.25 6.87 7.78 2.34 11.1 8.88 8.54 10.7 7.97 11.4 10.8 7.09 12.7 11.1 12.1 9 8.19 9.36 9.92 11 9.04 6.63 9.3 11.4 8.68 10.1 11.1 11.5 9.64 14.3 8.48 3.68 11.6 8.59 7.67 10.6 11.7 9.83 10.9 4.29 9.54 10.6 9.98 9.22 11.3 10.2 4.96 5.76 8.25 6.53 5 8.64 8.2 7.91 6.28 5.77 10.4 10.8 10.4 8.84 2.35 9.25 8.9 10.7 11.7 10 10.1 9.49 6.37 0.13 10.4 2.35 0.57 11.8 7.13 7.97 12.2 9.04 9.37 4.26 6.74 6.5 9.35 9.64 11.4 9.69 10.9 7.79 11.5 9.71 8 8.81 10.2 7.95 11.3 12.6 10.5 4.68 7.92 8.61 11.8 11.2 11.4 7.18 7.82 5.63 8.45 7.62 6.53 10.4 5.35 10 11.3 11.8 11.4 9.79 12.6 10.1 12.6 11.3 10.2 11.8 7.51 8.45 9.57 10 11.6 1.95 9.34 6.97 8.71 11.2 8.2 8.72 10.1 9.39 7.85 4.15 6.43 10 9.69 7.68 10.5 9.11 8.38 8.67 10.5 11.2 10.8 8.79 9.42 11 10 11.9 9.82 7.88 1.65 10.8 9.25 10.3 0.5 5.12 10.4 9.95 2.05 8.72 5.64 9.94 12.2 1.35 3.23 10.7 9.22 10.5 8.32 7.33 0.68 1.33 0.55 11.9 5.95 6.81 1.47 12.5 9.52 0.94 7.2 7.96 2.57 9.26 9.7 6.68 6.16 11.2 9.92 6.16 11.5 9.81 8.45 4.68 13.1 9.21 10.1 9.11 9.03 9.37 8.34 9.47 10.1 -0.16 8.45 9.96 7.03 5.75 2.29 11.1 6.57 10.4 8.88 10.7 16.9 8.52 8.52 5.06 7.65 1.98 0.18 9.42 1.56 8.64 8.87 9.1 2.95 10.3 3.1 8.89 11.5 9.22 9.03 9.6 1.39 0.44 8.48 11.5 -0.13 7.77 7.04 9.6 7.73 8.45 10.1 1.81 9.59 1.6 0.27 8.79 11.7 6.66 10.1 9.25 11.5 -0.02 9.99 8.32 10.8 8.11 10.3 6.98 8.88 9.02 9.33 2.43 9.19 8.65 11.9 7.96 10.6 8.92 10 9.54 11.6 9.22 8.76 10.6 10.8 0.24 8.63 11.5 7.32 5.87 7.15 5.9 9.42 10.9 0.74 -0.71 4.64 9.07 1.59 12.2 11.3 9.65 10.1 7.71 9.04 7.86 9.07 11.7 4.7 7.6 1.58 6.59 2.48 6.93 9.48 7.91 1.03 10.5 8.92 9.1 9.83 15.2 14.1 14.2 13.3 11.5 10.4 14.7 4.71 14.6 10.7 13.9 13.8 12.2 13.8 13.4 12.6 14.3 11.5 14.9 2.64 12.7 12.9 9.84 13.8 13.6 13.2 13.1 14.2 13.9 13.5 13.9 13.4 13.1 13.7 12.1 14.1 13.6 13.4 8.36 9.8 13.9 6.9 14.9 13.8 14.7 10.6 9.32 13.6 13.7 13.8 13.8 12.5 14.8 3.23 3.51 3.65 5.93 6.23 13.3 2.83 3.06 14.5 9.93 9.76 11.1 10.2 9.34 13.3 14.1 13.4 12.8 14.2 14.1 13.4 14.6 12.4 14.6 14.2 13 9.68 14.7 14.7 13.6 13.7 13.8 14.2 12 9.9 9.9 14.1 3.61 12.8 5.43 9.62 13.7 10.5 11 10.5 9.16 1.53 7.53 10.8 9.68 8.14 7.08 10.1 9 10.2 4.87 3.68 3.34 6.34 6.92 10.2 8.49 3.73 9.72 1.76 14.7 5.23 6.79 13.4 12.9 1.53 9.25 4.45 12.9 15 9.85 10.8 10.8 5.97 7.34 11.3 9.7 10.6 13.9 8.76 7.47 10.5 11.2 10.2 6.31 9.19 9.91 9.02 11.3 3.88 5.87 9.03 5.8 3.7 2.16 5.21 3.04 11.7 4.98 2.67 6.46 1.94 9.91 4.73 4 11.2 8.54 11.6 1.34 5.49 8.39 6.5 2.11 0.93 7.56 9.79 2.75 7.4 7.77 7.83 6.67 2.04 2.47 9.61 1.19 8.65 8.61 7.26 3.42 8.36 7.49 13 5.55 5.71 8.79 13.2 11.7 8.72 10.7 10.6 4.42 9.16 10.1 11.7 9.39 10.4 10.2 8.97 6.37 9.17 9.65 7.27 9.57 9.87 10.3 10 7.39 7.82 10.5 9.53 3.26 7.74 9.63 8.69 10.3 7.35 8.59 3.11 5.12 9.59 9.46 8.86 8.24 7.9 8.28 3.45 9.63 7.42 8.4 8.56 6.9 10.6 8.64 11.1 1.61 9.46 6.62 7.8 8.54 8.85 8.22 7.16 12.4 8.17 9.04 9.43 7.26 8.38 9.71 8.55 9.1 1.86 12.2 3.35 2.85 10.6 8.08 6.82 7.97 9.96 12.3 3.84 10.9 7.12 1.57 5.5 7.77 6.17 8.98 9.06 7.84 8.69 4 7.24 9.34 9.91 9.08 13.6 10.3 8.82 10.4 7.99 8.87 9.39 5.33 9.58 6.84 4.37 8.52 2.82 9.52 6.22 10.4 1.16 8.26 0.89 11.8 8.9 5.06 6.4 6.98 8.22 10.3 8.88 9.04 9.47 5.37 7.71 4.26 4.24 6.01 7.55 4.57 9.11 12.9 1.31 6.87 6.59 10 9.38 12.3 10 9.59 8.66 7.92 8.71 3.53 4.11 9.98 9.78 8.84 9.95 3.09 4.65 7.85 8.09 5.75 9.94 9.53 8.61 5.23 12.4 2.74 12.1 12.1 5.12 8.05 7.13 9.54 8.77 7.32 9.78 7.91 7.9 10.6 2.36 7.39 0.74 6.9 11.5 7.49 0.59 11.7 10.6 9.57 10.9 11 8.05 6.77 11.5 7.34 6.62 10 9.89 9.72 9.98 8.12 11.5 8 4.24 0.48 5.96 5.35 11.5 9.53 9.24 5.08 7.39 8.05 2.25 1.07 10.7 6.6 8.57 0.19 9.24 10.2 5.85 5.68 7.64 5.27 5.85 7.09 -0.13 0.45 9.04 9.41 3.13 10.5 10.1 3.31 8.78 8.12 7.77 6.9 4.56 4.27 7.33 2.27 8.4 8.42 8.63 6.7 0.62 4.78 4.3 9.07 -0.05 10 9.69 5.76 8.71 8.4 10.4 12.5 10.7 9.87 8.96 8.92 9.59 9.22 9.29 8.88 9.48 8.47 3.34 6.72 0.05 0.11 3.28 4.69 5.94 4 10.7 1.93 7.1 0.16 9.5 2.1 8.57 9.05 0.88 10.3 0.96 6.65 0.8 11.2 11.3 4.62 0.67 11.1 7.62 2.17 5.77 1.13 9.15 9 6.91 2.33 7.01 3.38 1.72 10.4 2.07 5.18 5.26 4.17 5.51 5.26 8.34 5.67 1.73 3.55 7.9 8.04 10.5 -0.34 9.76 1.97 3.39 2.55 11.8 0.74 7.86 2.48 11.3 1.71 10.1 3.73 5.03 9.08 1.47 1.22 8.66 9.77 10.9 5.9 9.48 0.33 5.12 4.03 1.77 9.91 2.1 8.19 9.37 6.26 6.21 9.32 9.93 12.7 7.67 2.84 8.67 10.8 4.09 3.22 10.4 9.91 8.95 11 10.8 8.5 8.7 4.12 6.99 11.7 9.62 7.44 12.3 9.43 9.77 7.99 9.22 10.9 8.81 8.96 9.47 8.22 10.9 11.6 9.24 8.67 8.51 9.4 11.9 7.76 9.2 9.44 9.83 10.9 8.33 10 7.64 0.82 10.6 12.1 8.26 6.88 9.14 7.87 8.41 3.23 11.6 13.4 10.8 3.84 10.1 11.4 5.45 8.7 8.34 2.62 8.93 8.47 11.8 8.84 7.46 8.22 6.46 7.12 11.4 3.44 10.6 10.9 9.93 6.41 8.89 10.4 8.26 12.3 10.3 10.6 8.19 9.31 8.77 7.92 9.52 11.5 5.89 4.24 3.13 6.01 8.23 8.17 8.62 6.37 9.17 7.78 9.93 8.34 8.93 6.28 9.85 7.89 8.28 8.82 9.69 7.04 4.92 9.34 7.15 8.48 6.9 6.79 9.09 3.42 9.96 0.64 9.88 10 9.67 8.57 9.63 9.86 9.2 8.86 9.78 8.37 9.6 8.75 9.42 9.96 2.68 12.3 12.2 9.74 9.63 8.28 5.87 7.57 2.42 9.21 8.11 8.25 3.28 6.92 11.5 4.1 10.9 7.59 12.2 7.46 7.87 6.08 8.1 1.8 4.37 7.05 7.34 9.38 9.35 12.6 8.48 9.44 8.7 9.57 0.24 12 11.8 9.02 9.29 9.8 4.63 11.2 10.8 11.3 10 11.2 1.76 8.82 4.38 6.45 10.3 9.11 11.5 -0.18 11.3 10.4 5.68 5 10.4 8 10.3 8.11 5.14 9.55 9.04 8.76 8.24 11.7 9.59 6.7 1.13 7.91 3.64 3.77 4.81 0.7 5.69 9.7 1.56 3.94 7.21 1.36 0.51 5.36 5.39 5.34 0.08 5.62 3.27 11.5 6.81 4.55 6.69 3.73 2.21 1.69 9.27 8.11 9.3 8.21 10.2 2.44 6.92 6.36 7.16 1.53 10.5 5.97 4.48 3.29 2.18 8.78 2.07 7.84 6.04 2.82 6.66 1.13 12.1 6.1 0.94 0.88 4.21 8.63 7 11.4 4.91 0.04 10.2 7.13 6.53 5.61 2.73 7.28 2.87 1.67 11.5 6.07 6.95 9.23 12 3.8 -0.35 4.55 1.21 12.5 2.12 6.79 8.89 5.02 7.39 11.6 11 9.24 0.39 5.62 7.53 11 9.39 10 9.82 2.93 1.29 7.17 4.64 8.23 2.65 8.31 11.1 10.9 6.73 10.3 9.84 10.8 11.6 6.96 8.54 10.2 10.3 9.76 9.3 7.15 8.14 10.6 7.89 7.32 8.09 1.06 11.2 7.34 10.2 9.96 10.5 8.9 2.72 7.47 8.35 2.67 4.56 4.76 6.63 10.6 9.77 11.3 10.2 10.9 6.2 8.08 5.85 11.3 1.01 9.6 8.28 9.51 8.61 7.85 10.9 9.96 11.4 7.79 6.77 6.41 8.11 7.72 8.36 8.16 8.85 7.31 4.33 9.52 11.4 10.2 9.68 11.7 10.3 9.51 9.83 11 11.6 11 9.52 10.3 10.4 8.52 9.25 7.53 8.78 10.1 10 9.22 11 2.53 11.2 2.7 12.5 8.32 10.2 11.2 12.6 10.6 9.03 10.2 9.61 9.79 8.73 3.8 12.2 0.68 2.84 9.26 12.2 9.85 12.7 11.1 7.95 11.2 10.2 9.82 5.55 13.1 9.36 9.97 7.89 7.18 9.04 0.05 12.1 8 7.56 11.7 10.1 7.23 13.5 0.79 5.98 14.6 8.48 12.3 12.5 7.59 1.23 12.1 9.63 11 12.6 10.6 9.89 11.7 11 8.94 9.99 7.08 11.1 11.2 11.3 9.37 11.8 9.72 9.6 10.8 10.2 12.5 12.3 12.3 12.8 12.6 11.4 8.34 3.72 1.93 10.5 11.3 11.7 13.1 1.6 12 2.89 13.2 11.1 14.1 6.62 10.3 10.5 1.87 2.12 4.73 1.25 0.37 1.98 0.92 3.4 12.6 2.81 0.12 1.76 5.54 12.2 12.1 9.64 9.83 6.51 3.54 10.6 8.43 8.7 8.02 10.6 9.78 4.66 6.15 10.2 9.82 3.63 4.22 8.44 7.1 10.4 10.7 9.63 6.99 11 10.1 9.59 7.52 9.31 12.7 12.8 4.06 9.09 10.5 12.5 5.91 12.4 9.47 10.1 8.26 13.1 9.67 9.76 8.11 10.7 10 7.53 9.28 11.1 4.11 10.7 3.21 7.03 6.98 11.5 8.5 8.28 3.15 3.44 3.77 10.1 9.92 3.23 10.3 7.65 10.3 10.6 9.53 8.45 10.9 6.73 11.2 11.9 11.5 10.1 10 8.58 8.34 7.3 9.05 6.01 1.37 13.3 12.4 12.3 10.9 12.8 10.1 8.41 11.1 1.94 1.77 8.75 9.32 8.45 10.6 8.04 9.4 7.45 8.79 4.85 3.96 5.64 8.81 10 6.71 7.14 4.48 6.75 7.33 8.68 2.76 1.54 11.8 2.94 9.73 10.1 9.05 9.97 10.3 9.67 11.1 9.33 8.58 10.5 2.77 11.4 7.45 8.46 11.2 9.14 10.2 5.82 8.45 11 7.83 11.7 0.63 3.14 8.46 10.2 10.5 5.17 10.8 10.2 9.26 6.47 10.3 10.9 8.5 8.65 5.26 2.75 7.91 14.2 8.83 8.15 10.7 1.27 8.48 8.91 4.24 10.4 2.02 9.63 8.5 8.82 9.3 7.64 11 11 8.77 10.5 4.37 10.1 6.3 14.3 2.21 10.1 8.98 7.88 6.98 7.01 2.78 10.5 9.84 0.38 11.6 8.73 9.1 10.5 3.65 13 3.57 8.49 11.7 7.93 8.51 11 1.81 3.55 9.8 1.41 9.95 7.74 0.01 10 9.75 10 10.5 5.75 8.79 12.7 12 9.94 1.01 10.7 11.3 10.4 8.89 12.3 2.03 10.6 5.98 9.76 7.57 8.86 14.4 12.6 7.65 8.62 7.94 7.12 17.1 11.6 5.65 8.85 8.97 7.69 8.99 7.54 10.1 11.2 6.33 11.3 15.1 10.1 6.14 6.18 8.04 1.15 11 11.2 11.5 10.1 4.89 11.1 9.39 2.25 6.24 5.42 7.05 10.1 0.53 10.4 9.11 11.8 12.3 7.88 2.32 11.9 11.4 8.25 10.5 9.94 9.96 12.6 5.43 7.33 11.6 8.08 11.1 0.87 12.7 13.7 13.3 9.41 13.1 13.3 10.9 10.3 12 11.1 16.3 0.51 13.4 8.53 9.68 14.8 8.62 9.74 8.5 9.09 7.48 6.37 11.6 -0.07 12.6 10.7 10.8 5.03 7.75 8.5 0.47 2.97 6.33 8.25 6.19 7.55 3.32 5.25 12.6 10.1 10.8 9.71 10.7 3.15 9.83 10.4 12 9.47 9.86 10.7 10.3 10.2 11.3 11.1 9.23 10.8 8.7 8.49 6.97 5.62 10.6 5.65 6.54 11.3 3.82 8.2 9.79 7.88 10.7 4.45 3.67 4.35 5.16 7.38 1.28 8.76 7.34 6.09 7.18 8.91 9.95 3.83 7.95 2.06 6.14 5.49 12.6 5.94 4.5 2.07 5.61 7.13 6.32 1.34 9.3 1.12 6.96 6.72 5.66 2.85 7.19 8.61 7.57 1.68 13.3 3.37 7.46 2.39 5.78 0.32 0.84 6.61 7.23 3.24 8.72 2.33 2.4 9.85 5.41 8.5 4.72 6.2 5.15 4.63 1.95 3.63 4.15 4.82 6.73 4.57 3.57 4.59 6.38 1.75 4.32 6.17 4.13 0.1 7.11 11.7 7.85 5.26 10.1 2.4 4.41 13.5 4.44 5.12 2.96 8.29 10.7 0.97 0.62 4.68 10 6.28 8.09 3.06 5.76 0.23 7.78 7.75 -0.47 7.83 4.48 7.89 6.39 8.23 7.96 8.83 4.95 8.2 0.67 10.6 0.62 13 3.03 14.1 15.6 12.9 8.5 9.59 10.4 10.2 9.31 10.8 11.9 9.55 6.94 10.4 9.45 10 10.7 6.22 10.6 10.7 12 8.89 10.5 8.93 11.3 10.4 11.4 7.62 7.15 11.6 2.25 9.99 4.04 10.1 3.68 10.4 10.5 10.5 10.7 5.14 9.32 10.4 9.18 9.52 9.65 10.1 8.49 0.13 10.9 0.72 11 10.9 12.9 11.2 11.4 9.2 8.81 9.37 10.4 10.3 2.84 10.3 10.1 10.1 8.82 11.4 11.4 9.09 10.3 10.3 9.97 12.6 14.8 13.4 10.5 9.94 9.39 11.7 8.94 6.62 5.08 9.63 10.9 13.8 12.8 8.41 4.66 7.57 4.15 3.31 7.18 8.29 8.76 1.8 5.12 13.2 12.3 12.5 7.94 10.6 12.7 10.4 11.5 7.37 11.6 9.28 9.06 10.5 8.83 6.71 -0.04 4.1 7.78 0.75 -0.35 6.77 2.44 3.41 1.2 5.1 0.67 0.88 7.58 8.72 2 12.9 1.47 1.63 -0.28 8.04 7.27 9.53 5.84 11 1.89 12.4 9.74 6.24 7.98 8.8 9.29 12.7 7.34 11.1 10.7 13.6 7.52 12.7 12.8 11.9 13.9 7.88 11.9 12.5 6.02 11.7 8.64 9.21 9.12 6.15 8.1 9.51 7.94 8.22 6.3 13.1 7.06 9.9 6.94 5.45 7.45 6.66 7.14 5.47 6.59 8.22 9.07 8.43 7.49 10.8 7.82 6.09 6.17 8.83 9.85 10.6 6.89 11 8.92 7.74 8.23 8.15 6.46 8.19 7.16 12.4 3.89 7.91 4.6 7.52 7.79 8.61 8.55 8.56 7.14 4.14 8.88 3.26 4.8 8.36 10.2 0.18 8.26 4.74 7.89 2 11.6 6.39 2.86 3.32 2.45 0.2 1.29 3.98 9.98 9.42 5.34 8.14 6.03 4.57 7.76 5.62 7.66 8.37 8.28 4.12 9.09 8.66 9 2.65 11.5 11.1 10.8 8.46 11.8 4.86 4.77 0.83 10.2 6.93 10.4 7.55 5.49 6.35 4.72 4.27 8.05 8.53 7.02 7.05 -0.17 7.1 9.17 7.94 6.67 9.2 7.31 10.6 7.93 7.57 6.53 8.21 12.5 3.81 8.94 9.35 5.98 6.07 12.5 11 5.05 8.68 6.51 8.61 3.77 8.29 6.49 3.07 6.59 6.96 8.45 8.72 6.4 0.71 5.96 8.51 6.53 6.01 11.6 9.92 9.4 12.1 8.88 13.6 9.55 11 4.47 13.4 9.71 10.8 6.07 4.75 11.4 10.3 7.46 9.05 10.2 11.2 9.7 8.77 9.07 6.65 12.7 10.4 11.3 6.79 8.42 10.1 9.56 10.2 11.1 9.97 12.2 12.8 8.49 5.06 9.47 3.62 8.26 9.32 5.8 7.09 9.54 9.37 9.57 6.68 9.13 0.77 3.32 9.03 10.9 5.76 9.7 10.5 7.63 8.86 8.75 4.2 7.35 9.89 9.84 1.59 9.79 9.92 7.49 7.18 7.71 11.3 9.34 2.07 14.5 11.5 7.44 8.62 8.15 9.27 8.4 9.74 10.4 6.79 8.79 11 9.48 8.69 7.8 9.9 11.2 9.05 9.45 8.4 8.91 8.04 8.65 9.25 9.19 6.9 9.7 7.99 10.1 6.66 8.21 10.5 6.99 9.06 9.62 10.3 11.5 10 9.26 5.5 9.99 8.35 7.69 7.5 7.05 9.65 7.69 8.75 11.7 8.85 9.43 10.9 11.7 9.24 7.18 10.6 8.32 11.1 11.6 5.5 8.82 9.65 11.8 8.39 7.86 6.66 6.75 8.86 10.9 5.99 7.26 8.99 6.54 9.11 10.2 7.77 12.2 10.9 6.82 1.06 4.47 7.37 11.6 12 10.2 7.33 3.64 10 8.14 7.55 8.23 7.47 7.68 12.1 9.41 10.2 1.8 9.99 11.9 3.36 9.6 11.7 9.05 7.63 7.28 1.21 11.3 1.62 0.99 1.51 9.09 5.49 10.2 9.18 7.26 6.58 2.05 9.37 5.75 0.31 7.72 6.76 3.71 3.04 8.53 10.7 7.87 7.96 2.9 10.2 7.24 9.79 6.41 2.75 4.11 0.77 9.43 8.63 5.5 0.19 9.1 12.7 9.09 5.94 8.82 9.91 9.75 8.92 7.16 9.94 12.3 8.98 9.65 9.32 8.63 9.69 7.77 7.87 8.25 11.3 6.11 7.45 8.76 4.3 6.96 4.21 8.73 7.87 6.09 5.56 8.69 9.27 6.34 8.86 5.59 5.95 8.32 6.61 7.52 6.46 8.58 3.49 9.03 8.25 6.61 9.73 8.16 9.01 8.16 7.6 8.72 8.64 1.35 9.65 10.6 8.64 8 9.09 9.92 9.37 7.6 10.9 4.18 9.06 7.96 7.12 9.02 6.02 8.24 10.1 10.6 8.44 3.25 9.25 9.58 10.4 8.68 9.67 5.29 8.62 9.07 8.26 9.99 8.2 9.5 7.7 6.73 9.42 6.81 4.21 10.3 9.13 8.58 8.99 9.46 6.28 7.93 9.47 8.41 7.41 10 8.1 8.17 11.4 9.85 10.6 7.69 7.01 8.46 9.49 9.78 11.7 10.1 10.8 2.5 7.72 9.68 6.75 9.28 9.38 7.2 6.66 8.13 8.26 7.36 8.95 8.21 8.08 6.5 2.72 8.54 6.69 8.81 4.29 0.19 10.1 3.38 10.2 8.83 8.35 8.37 1.49 6.97 7.97 6.59 8.34 9.31 8.71 9.25 7.62 9.22 6.7 8.12 5.63 7.44 9.42 10.4 8.52 4.02 5.72 2.09 13.8 7.82 3.47 10.8 12.4 8.47 9.79 8.92 8.31 8.45 8.27 6.86 8.18 0.94 8.54 4.85 8.29 8.12 6.91 11.7 9.22 10.7 8.35 6.85 4.76 10 7.61 5.26 8.84 9.12 6.1 7.07 6.21 5.67 9 9.31 9.4 6.32 10.7 8.25 10.1 6.84 10.4 13.9 6.57 9 8.29 5.72 6.94 4.7 7.56 6.28 8.73 7.32 8.46 6.13 11.2 6.95 12.8 4.31 7.16 0.29 7.65 3.45 6.48 8.11 5.17 4.98 7.28 7.98 9.12 10.3 3.48 7.99 9.1 7.32 9.08 8.53 10.6 8.55 5.99 7.5 10.2 3.72 8.77 7.04 8.87 12.2 10.2 9.59 5.89 10.5 10.8 9.25 5.5 7.15 7.99 4.24 8.19 10.9 9.99 11.2 9.1 6.06 10.1 6.03 7.87 7.98 8.37 7.75 7.36 10.1 6.94 -0.21 6.83 7.45 5.69 5.16 6.84 8.21 3.43 11 0.46 9.53 0.99 6.1 10.7 10.1 6.01 6.89 8.11 2.68 9.42 -0.91 11.7 9.54 1.38 10.1 5.3 9 7.83 9.85 10.2 6.5 7.77 7.05 6.57 7.17 10.6 3.48 7.33 9.29 8.52 9.33 8.38 11.6 3.97 5.93 6.88 7.56 10 3.14 9.61 1.61 11.9 8.69 5.19 8.35 10.8 9.33 8.53 7.86 6.37 9.39 10.1 11.1 8.32 8.9 9.13 9.31 6.78 8.88 9.23 12.4 8.38 8.75 8.72 9.15 6.73 2.16 1.65 4.4 4.42 7.48 8.36 8.88 0.72 5.24 2.23 1.21 7.74 10.2 12.8 4.38 7.01 5 10.3 6.3 -0.06 9.49 6.44 5.32 6.08 4.94 7.52 9.06 7.9 10.4 9.55 10.6 9.24 10.3 9.08 11.8 10.6 7.92 8.99 9.34 10.3 6.34 10.3 6.78 8.88 7.97 7.91 8.1 7.28 6.96 10.2 6.88 9.63 7.45 10.3 8.47 8.95 9.59 8.91 6.66 11.8 10.5 9.61 7.46 9.77 10.7 10.6 10.8 7.89 9.38 9.83 8.75 4.86 12.6 9.35 7.81 9.13 12.5 7.92 7.88 8.94 9.78 5.54 11.5 9.53 7.27 7.48 5.53 9.16 11.1 11.1 6.09 8.1 5.79 5.88 11.8 9 11.6 10.7 9.14 5.27 11.6 8.9 4.2 7.7 11.6 9.05 6.43 7.54 9.82 8.64 8.31 9.77 12.6 9.1 8.49 5.83 6.68 7.84 9.95 5.14 5.93 6.07 9.21 10.3 9.37 9.82 5.47 5.96 3.99 11.7 5.29 3.35 11.1 8.79 4.98 9.02 7.75 10.7 6.58 8.74 11.1 8.9 1.11 10.6 5.88 10.4 5.31 5.19 10.2 11.4 13.3 10.6 8.15 9.15 9.93 6.6 10.2 4.18 8.48 8.72 6.47 6.97 11 6.5 11.7 2.63 13.2 7.48 0.41 3.76 6.91 7.78 7.28 8.67 3.15 6.3 4.15 6.03 8.29 11 7.68 6.53 8.24 8.66 9.11 7.03 11.1 5.57 10.6 11.8 9.04 11.1 11.3 12.8 8.16 8.02 8.37 9.09 8.87 7.18 10.8 10.9 11.4 6.81 9.84 0.8 11 8.93 9.4 10.2 9.32 9.08 5.15 5.12 6.01 3.26 11.6 8.45 8.14 7.48 8.87 1.91 10.3 13.8 8.21 3.92 4.08 6.9 7.33 9.87 8.54 5.37 11.7 11.3 13.8 3.06 6.72 6.38 1.48 2.11 10.8 11.4 10.1 5.76 4.37 9.95 11.9 9.92 9.92 4.18 5.34 2.52 2.69 12.4 2.53 8.86 9.73 9.62 12.5 10.4 4.57 6.79 10.1 7.46 10.1 4.89 10.7 10.5 9.7 4.73 8.65 9.19 9.08 9.46 8.82 8.68 13 3.89 9 6.96 8.48 9.61 8.95 8.22 8.27 5.51 8.99 1.84 7.25 11 10.5 10.2 8.44 9.08 10.7 9.31 9.01 10.6 10.2 8.8 0.04 6.98 10.7 10.6 8.35 7.94 9.36 6.5 9.41 10.4 4.62 9.88 11.8 10.4 12 11.5 9.14 6.68 8.98 9.49 1.05 9.77 6.21 5.36 10.4 8.63 5.76 8.28 7.57 8.81 7.44 5.52 3.22 9.47 6.9 9.83 9.77 9.84 8.38 10.1 5.13 9.26 3.6 9.34 7.57 9.88 8.91 6.24 10.4 9.65 11.3 9.99 6.98 10.2 11.9 9.14 8.93 2.37 8.7 9.74 10.9 9.34 8.5 7.4 9.67 0.59 8.88 3.37 10.1 10.6 0.34 11 9.93 7.85 9.74 15 6.85 9.81 4.27 9.76 8.21 -0.47 8.78 10.6 9.42 8.38 12.3 8.2 10.3 12.4 12.9 10.4 11.1 11.6 6.2 12.5 10.1 7.6 9.54 7.25 7.89 8.88 0.22 6.52 0.7 10.4 11.9 9.65 5.36 7.91 2.61 11.8 11.4 11.6 8.8 4.09 11.6 7.88 10.4 10.8 10.1 9.16 8.02 8.48 11.5 5.35 9.85 8.88 9.02 9.6 6.19 1.81 2.37 10.3 2.39 0.25 -1.28 10.5 0.84 9.5 2.01 5.62 4.42 8.83 0.92 2.16 1.94 8.71 -0.23 2.33 7.32 4.56 9.96 11.8 10.1 7.86 8.33 3.3 2.55 3.5 10.8 7.4 0.18 7.71 7.42 8.07 7.81 6.32 7.57 5.58 8.01 8.44 7.81 1.63 7.62 9.14 13 9.27 9.93 -0.74 5.62 -1.6 5.44 4.27 -0.23 7.87 7.23 8.61 8.05 7.01 10.3 8.75 3.01 8.52 -0.08 4.4 0.1 -0.59 8.62 6.61 3.72 8.86 9.44 7.01 7.91 10 1.22 8.78 9.66 12.3 8.78 7.69 -0.59 3.02 8.9 11.8 8.1 -1.55 8.04 13 8.49 8.19 7.48 6.35 0.89 1.11 11.3 -0.65 7.31 11.9 8.75 1.14 6.39 9.44 7.82 6.6 9.29 9.17 3.1 0.39 10.6 10.6 7.79 8.37 8.57 8.74 6.1 6.28 9.87 8.66 5.98 1.37 2.24 8.72 2.97 5.69 10.8 8.61 10 7.25 9.93 10 4.47 6.66 7.15 11.2 9.14 9.53 4.61 5.32 5 8.6 1.3 3.88 9.4 8.25 8.64 7.88 7.59 6.39 8.35 10.8 6.58 8.17 3.59 6.09 10.2 5.32 10.6 2.07 2.67 1.64 3.81 2.18 3.69 0.7 0.18 7.57 10 7.8 6.87 9.3 10.5 7.7 8.83 7.89 4.69 11.8 9.89 9.12 7.94 5.44 10.7 6.5 8.24 2.33 8.45 10.2 7.36 8.43 5.06 10.2 11 4.88 7.82 7.86 7.8 7.85 6.63 15.7 8.8 9.85 2.93 10.6 8.92 8.91 7.83 11.9 9.98 2.31 7.59 5.65 7.3 3.71 5.42 10 11.8 7.97 8.39 8.9 8.79 10.2 7.77 5.84 13.4 3.36 5.01 1.88 2.97 5.85 7.24 10.2 9.4 7.12 10.4 6.86 5.41 8.31 9.92 2.1 10.2 5.8 1.28 10.2 8.52 2.88 7.13 9.27 8.91 9.45 7.37 10.5 8.96 8.56 8.43 10 8.44 8.04 7.13 6.74 7.43 5.82 10.3 9.51 10 8.37 8.19 9.75 7.01 10.3 7.88 10.3 10.5 6.99 9.88 10.5 4.37 9.63 7.99 5.67 5.64 7.26 10.2 7.49 10.8 10.8 12.1 5.54 3.48 6.47 9.11 10.2 10.3 5.19 7.78 6.61 4.25 3.3 6.66 4.4 8.88 7.76 4.22 4.54 8.36 6.2 7.92 5.39 0.49 8.62 11.9 10 7.93 8.61 8.68 8.69 8.93 8.83 8.55 10.2 10.4 1.37 11.3 7.06 5.99 5.76 6.46 9.46 9.24 0.07 8.49 8.15 7.32 8.63 10.6 4.66 9.28 8.87 9.45 8.4 8.3 9.09 8.11 10.5 9.43 9.42 9.17 7.54 7.24 8.44 3.75 6.89 11.9 10.4 7.8 9.28 6.62 9.66 9.22 7.9 8.84 5.9 8.24 0.69 7.42 9.36 7.77 10.3 7.96 9.63 9.92 10.7 8.94 5.93 9.12 7.38 8.89 9.03 8.02 8.35 8.85 9.5 9.01 10.5 6.81 10.3 6.27 7.45 8.18 8.79 7.08 8.56 8.16 10.1 9.61 8.76 5.09 8.68 7.34 7.13 9.47 0.47 10.9 7.69 10 9.48 9.27 7.4 8.93 8.08 10.4 2.1 7.34 11.1 10.9 6.33 9.53 7.64 9.22 2.51 10 4.3 14.2 8.73 10.6 10.5 5.83 8.42 5.34 6.66 10.8 7.48 10.7 9.3 4.3 11.2 5.16 7.23 10.9 9.14 9.43 7.06 8.08 8.12 8.7 7.86 8.66 8.62 1.36 1.46 6.09 5.14 9.18 8.73 11 8.93 2.99 4.44 11.3 9.28 9.73 8.99 10.9 6.25 0.95 4.01 10.8 7.28 9.26 7.46 6.06 7.09 7.49 9.4 11.5 4.44 10.3 6.76 7.38 9.66 4.97 8.23 8.46 11.2 6.01 7.3 9.83 0.65 10 9.75 8.33 1.4 8.47 11.3 3.66 10.4 9.56 8.22 1.03 7.28 0.82 7.35 7.14 6.16 3.87 12.2 8.56 7.85 2.43 5.04 7.5 9.49 11.2 4.8 7.44 8.4 11.6 5.05 -0.15 2.39 2.13 9.11 9.05 9.83 10.6 11.2 5.33 9.69 2.63 9.49 7.66 -0.02 8.07 10 10.8 1.7 4.12 6.89 5.32 1.61 5.3 6.65 10.2 9.59 1.1 5.17 8.21 9.66 8.8 6.97 0.86 9.65 11.9 6.99 6.84 12.2 8.01 12.4 6.23 6.88 0.89 7.46 10.2 7.98 7.1 7.7 7.39 9.46 4.73 5.63 7.83 6.48 5.42 4.92 6.35 8.53 12.7 7.2 8.11 6.58 5.22 10.2 9.83 8 8.14 5.12 4.86 7.82 10 7.97 5.65 3.87 3.35 8.61 9.75 8.21 7.29 7.62 10.9 7.05 8.1 3.31 7.07 7.07 9.51 9.82 6.25 7.8 0.88 8.26 8.95 2.62 7.77 5.82 8.2 9.1 8.23 9.76 7.1 4.84 6.64 8.96 7.35 7.33 0.26 6.43 7.17 10.3 9.03 7.7 6.85 8.62 10 9.77 10 10.3 9.09 -0.34 8.16 10.3 6 8.94 10.3 9.01 5.85 8.5 13.4 7.36 10.3 8.21 9.67 7.49 9.9 9.22 10.9 12.2 3.44 9.02 6.96 10.4 6.47 9.65 10.2 10.9 9.09 7.26 7.75 9.77 6.34 9.08 10.1 8.93 2 8.65 8.68 8.39 9.04 8.28 7.96 8.39 8.15 9.01 3.4 9.24 8.32 2.83 9.21 9.12 7.38 5.87 10.8 9.71 5.31 6.3 6.08 8.13 8.56 7.65 8.79 7.73 10.3 2.99 7.51 9.7 7.57 8.7 3.87 6.44 2.17 8.51 8.51 9.39 7.74 5.68 10.1 7.64 0.94 5.07 2.88 8.5 9.02 9.31 2.89 2.23 10.2 9.5 9.13 5.33 11 5.24 7.11 8.98 1.36 8.35 8.41 8.53 10.5 7.56 6.83 11.8 8.9 7.89 7.06 5.95 7.42 9.59 7.71 9.69 7.24 11.5 10.7 8.48 3.75 1.71 7.78 5.94 6.88 8.43 9.66 13.3 9.81 3.51 7.64 0.6 10.8 9.81 8.3 10.4 2.47 3.21 6.46 -0.31 10 7.63 11.5 8.92 12 -0.22 6.92 4.01 1.08 9.53 5.95 8.98 5.11 9.12 8.33 6.29 7.17 10.4 9.02 9.56 2.16 8.83 12.7 3.45 9.49 10 10.9 11.5 7.03 9.85 9.83 10.2 6.61 3.02 8.27 0.84 8.55 12 3.65 12.9 11.7 9.31 7.1 8.94 10.6 11.7 2.34 8.67 6.38 11.4 8.71 9.32 7.07 5.9 11.1 9.2 7.87 8.89 10.6 6.63 10.3 9.17 9.1 9.99 10.8 5.14 3.25 11.4 7.43 1.7 3.24 9.64 2.64 7.44 7.97 9.21 0.57 3.95 11.3 8.51 9.29 7.17 2.7 8.45 8.33 9.53 10.6 9.12 5.32 10.8 11.2 10.7 8.86 8.7 9.56 11.1 5.1 11.9 8.26 9.28 9.13 5.25 7.41 10.7 10.7 10.7 7.26 3.8 0.71 10.1 9.11 8.25 7.35 10.9 3.6 6.22 10.2 10.2 11 11.1 8.17 10.9 4.55 3.65 10.2 5.13 8.05 8.78 8.9 4.12 8.27 6.83 4.97 7.39 4.65 4.44 9.62 9.48 9.94 7.73 10.4 8.81 8.52 1.85 9.16 3.47 11.9 10.9 6.56 10.2 9.55 9.56 11.4 7.2 9.28 11.7 10 8.02 9.83 13.5 12.1 9.04 12.6 11.9 11.5 11.9 11.5 10.6 9.37 10.5 10.9 11.2 8.38 11 6.38 8.2 11.1 9.45 7.32 10.7 10.9 2.35 8.52 9.57 11.9 9.09 9.88 5.95 11.6 1.15 12 9.33 9.26 6.33 8.08 2.44 4.29 11.3 7.49 13.4 8.32 10 6.82 10.7 12 7.72 10.1 10.7 10.8 8.55 8.36 8.96 11.4 9.99 10.2 8.92 10.4 8.49 9.44 6.95 4.92 3.52 11.2 7.92 12.3 7.96 4.11 2.14 -0.22 4.68 10.7 12.9 18.3 9.39 11.5 12.7 10.3 12 9.68 12 9.29 10.8 9.54 11.6 9.66 7.15 7.32 3.83 11.1 4.5 1.62 3.15 3.68 9.07 11.3 9.11 8.27 11.6 8.06 7.48 9.27 1.59 7.16 11.1 10.3 9.84 11.1 10.3 5.52 8.41 1.41 1.64 10.8 9.36 6.26 10.5 10.2 2.12 9.59 6.07 4.35 8.55 1.58 10.2 3.06 13.6 8.57 11.2 6.65 7.65 6.07 11.3 8.86 7.3 8.29 12.2 0.06 0.12 5.36 9.8 12.9 2.57 9.57 9.89 7.79 5.53 12 8.58 6.59 11.3 5.58 9.96 14.6 3.68 7.91 9.36 5.21 8.62 8.33 8.48 8.26 10.6 9.63 10.2 10.3 9.27 7.96 12.9 5.61 14 11 11.1 10.3 9.13 8.98 10 12.1 12.6 10.8 12.2 9.05 8.72 8.86 10.8 11.6 10.7 10.5 10.1 9.1 10.8 2.31 8.86 0.14 11.6 7.21 10.9 9.81 8.16 1.09 9.63 8.43 5.29 8.51 10.3 0.87 10.4 10 8.63 10.5 10.4 9.86 3.87 3.97 2.48 10.3 10.2 10.5 9.71 10.4 5.14 5.92 10.6 10 8.74 10.7 12.4 9.21 10.4 -0.08 2.46 5.71 11 4.18 1.02 9.27 9.29 10.8 8.64 0.94 9.74 8.85 6.64 6.08 8.63 9.76 8.02 5.8 2.49 6.17 1.62 5.71 9.03 7.43 8.6 7.97 11.9 7.22 8.72 5.42 10.7 9.8 9.29 9.93 2.45 8.26 2.16 0.39 7.32 7.85 8.15 10.7 6.58 9.19 10.8 10.1 11.9 9.33 -0.13 8.98 9.77 10.4 7.93 8.76 8.87 7.14 11.4 8.36 6.76 5.48 8.09 10.4 11.6 11.4 3.11 7.03 5.74 8.61 6.86 9.94 9.08 3.35 10 9.39 8.9 1.71 9.52 9.13 8.52 6.31 6.64 6.86 7 11.8 10 8.57 9.95 7.13 8.31 11.9 3.69 3.46 4.84 9.7 6.97 3.05 3.19 9.5 7.82 12.2 9.1 -0.24 5.25 3.88 4.02 6.72 7.06 12 8.33 6.65 8.7 10.4 6.84 2.9 7.24 6.02 7.3 7.63 0.35 5.7 8.82 4.98 8.45 7.64 8.7 8.61 10.1 6.51 7 9.68 10.1 9.16 11.5 8.08 7.83 6.05 8.52 12 10.4 10.1 12.9 8.8 7.34 6.71 1.9 9.05 1.84 10.4 9.07 10.2 7.13 4.41 8.24 6.34 13.8 8.43 3.8 6.12 6.89 10.2 9.5 10.4 12.2 6.24 10 9.09 5.39 7.79 1.25 2.67 9.38 6.07 10.2 9.64 7.96 9.44 7.9 6.38 7.78 8.79 8.06 3.45 4.79 5.72 5.52 9.13 4.09 12.6 6.98 9.02 10.3 8.58 7.05 0.13 11.7 5.41 9.71 7.97 9.32 12.5 1.13 8.92 8.86 7.39 4.56 10.3 10.2 5.07 12.4 9.02 10.3 8.29 6.93 8.82 2.47 9.8 10.5 11.2 9.3 7.84 5.65 9.17 8.38 8.94 7.53 10.8 6.04 7.47 4.18 7.9 12.4 10.4 10.6 10.6 9.87 8.99 4.32 10.9 4.58 7.8 8.93 9.22 9.83 4.5 5.41 10.6 9.98 10 9.83 4.03 8.32 5.5 9.52 9.82 7.39 7.06 8.16 6.12 0.94 1.22 6.52 5.25 11.5 9.55 7.24 9.59 11.5 7.75 9.39 10.8 0.22 9.87 10 8.21 10.2 9.21 8.1 2.13 10.3 10.6 10.9 10.7 8.01 9.6 2.28 9.14 6.33 10 9.99 0.78 6.53 8.73 8.27 10.5 8.17 11.8 9.29 6.35 8.15 8.4 10.3 8.94 4.59 9.71 6.51 6.08 8.34 12.7 5.22 9.79 7.57 3.45 10.3 11.3 9.51 10.2 3.07 8.84 7.31 9.28 5.2 7.97 6.66 9.59 7.56 7.9 7.5 9.54 9.63 5.92 10 8.94 8.62 10.9 4.27 10.3 5.3 7.51 -0.34 7.59 6.93 8.43 7.94 1.14 11.7 6.84 10.5 13.7 7.28 8.3 11.5 7.54 6.6 5.6 8.51 7.17 5.24 5.42 5.88 10.6 10 6.89 8.85 6.56 2.18 11 10.1 9.16 9.84 8.88 11.6 7.49 1.91 10.3 6.94 8.76 8.76 10.9 10 4.14 10.5 8.74 8.87 8.3 7.99 12 10.6 6.42 6.61 9.19 5.04 5.81 7.1 8.99 -0.2 9.81 3.19 8.21 10.3 4.96 2.27 5.48 8.01 9.08 2.87 8.15 4.86 9.13 8.35 10.4 10.2 9.33 7.99 7.73 11.9 9.69 5.77 7.12 8.24 8.51 8.1 7.85 9.23 10.1 9.05 11.8 8.99 8.27 5.47 10.5 8.57 11.8 9.51 11 0.58 9.68 11.9 3.36 10.1 13.5 8.71 8.59 8.21 8.38 3.5 0.55 4.4 4.28 0.23 7.83 2.67 2.55 7.57 10.2 0.64 9.23 11.5 5.66 8.94 9.13 4.24 7.12 8.16 7.15 12.5 9.1 11.6 0.51 7.57 10.6 10.8 6.95 9.38 9.65 1.18 6.34 8.33 0.37 13.6 10.5 7.96 2.09 10.3 8.08 7.73 10.4 7.9 3.96 10.3 9.81 7.71 5.05 10.1 9.34 4.27 7.96 9.25 5.35 9.82 10 11.5 7.73 9.85 9.02 8.86 6.29 10 9.29 10.5 8.97 8.8 3.59 9.33 9.91 11.2 8.39 8.17 7.34 10.3 12.8 9.72 7.68 6.73 10.9 10.1 7.09 5.7 10.8 8.54 3.95 9.39 6.66 9.56 10 8.89 4.46 9.31 9.05 6.52 7.76 7.61 5.73 11.8 9.68 5.83 6.79 7.76 7.65 7.37 7.12 9.27 2.04 4.15 6.06 9.27 8.55 6.45 8.12 10.4 6.4 9.96 8.92 4.94 8.89 9.43 10.9 7.79 8.5 5.15 3.47 8.89 11.2 8.64 9.44 8.69 12.1 10.3 9.14 10.2 3.04 10.5 8.45 9.44 10.1 9.18 9.22 9.49 7.47 7.53 6.82 0.26 11.1 8.38 9.57 10.3 7.31 10.1 10.6 9.75 0.01 11.5 9.41 11.1 6.04 1.77 11.4 14.2 2.17 9.23 7.71 9.86 3.84 10.8 1.53 7.91 1.1 3.49 7.25 5.23 8.74 11 11.1 7.16 -0.03 11.9 7.62 9.23 8.38 3.93 7.56 9.36 5.89 2.98 0.69 9.84 10.6 8.96 11.8 4.98 12.3 8.66 9.48 7.74 12.5 10.6 0.74 3.72 11.6 3.36 10.3 2.83 9.67 0.21 8.79 0.21 10.6 8.84 9.26 4.75 7.97 8.53 9.73 0.26 4.78 3.01 7.48 8.92 6.96 9.58 10.9 6.63 8.07 5.96 5.84 0.61 11.7 5.81 7.91 2.26 7.28 8.73 9.64 7.61 10.9 10.4 0.68 9.13 7.97 4.79 8.99 8.96 10.9 8.87 9.58 10.3 9.03 6.57 7.26 9.41 10.8 2.39 12.9 9.1 3.74 11.4 8.04 6.97 4.55 9.35 7.69 11.3 9.57 8.56 9.95 9.12 0.94 4.56 5.65 4.27 10.2 1.65 9.31 4.61 8.4 7.87 8.28 8.07 9.91 13.5 10.5 6.69 12.4 4.98 5.84 10.1 9.95 9.33 6.32 7.63 7.46 8.77 4.8 10.2 8.68 8.51 8.31 9.05 2.26 8.48 10.4 10.5 5.85 7.91 9.51 10 2.1 9.04 5.41 6.9 12.1 6.48 7.3 6.47 6.62 8.38 9.01 9.12 11.6 8.67 6.7 9.54 6.78 1.84 10.3 11.9 11.4 7.04 8.9 4.37 7.09 9.74 9.64 10 8.49 8.87 0.39 12.4 11.2 12.1 7.56 7.36 11.2 8.19 9.48 10.3 10.5 9.56 10.4 12.3 10.2 10.7 7.08 10.1 6.45 8.86 6.18 8.34 7.29 13.1 11 7.21 8.86 9.82 2.2 9.75 7.75 10.7 12.6 11 11.3 8.61 9.45 10.6 12.2 10.1 9.73 10.6 3 9.4 11.2 11 10.6 7.49 8.6 9.25 10.4 8.86 7.98 9.37 12.2 9.69 8.18 10.9 8.01 8.9 12.2 9.39 6.55 8.88 11.5 10.2 5.61 9.78 11.8 8.47 3.44 15 10.2 12.7 11.2 10.4 7.25 8.42 12.1 10.5 11.4 12.6 11 8 10.9 8 8.81 8.52 5.62 4.4 4.91 9.84 5.61 9.81 11.7 6.96 0.82 11.1 10.2 8.11 9.18 9.34 9.6 12.4 10 11.6 9.22 11.1 9.07 12.6 9.24 8.88 8.99 5.68 10.6 10.6 9.42 9.09 9.49 9.38 8.13 10.8 14.4 16.3 7.87 12.3 11.2 10.1 10.4 7.19 12.4 13.5 9.27 1.6 9.91 9.57 10.1 9.9 9.03 8.86 10.9 9.18 12.1 8.21 10.3 10.1 8.56 12.9 9.71 5.14 9.32 12.2 7.94 10.8 9.47 9.39 9.04 10.7 7.81 10.3 11.1 0.39 7.03 3.86 8.89 10.8 9.43 12.4 9.45 0.88 7.7 2.41 11.7 7.23 9.48 10.1 9.27 4.77 9.57 3.01 8.32 7.26 16.7 2.97 6.74 10.7 11.1 9.73 8.87 10 10.1 9.85 9 7.77 10.7 9.55 10 11.4 7.05 9.72 10.6 8.36 12.4 9.4 9.93 8.23 10.2 8.12 12 10.1 12.5 8.79 6.67 7.27 7.24 7.33 11.1 8.45 10.9 7.65 13 11.4 9.59 9.43 10.7 8.35 8.74 12.5 8.68 9.95 10.5 12 11.1 11.4 11.9 9.38 10.2 4.69 11.3 7.84 13.1 5.24 10.9 10.1 8.57 9.17 9.44 9.37 11.3 9.79 9.78 12 10.5 2.67 9.69 10.9 5.74 9.82 11.9 12.2 11.9 9.9 9.49 0.08 11.7 9.05 10.3 12.2 9.32 9.87 8.79 10.6 9.93 9.39 9.72 10.1 8.62 9.1 9.51 10.9 8.94 9.44 5.09 9.72 10.4 8.13 3.1 10.5 7.44 7.14 8.88 8.91 9.96 6.26 8.19 10.3 12.1 8.92 8.87 10.7 7.67 10.4 8.59 9.54 10.2 7.97 9.09 4.97 10.2 9.96 10.1 8.17 9.85 11.1 6.4 6.5 8.82 10.8 11.5 9.99 10.8 10 10.6 9.08 10.5 10.8 12 10.5 11.3 9.85 7.58 9.77 8.62 12.5 9.16 11.1 9.2 11.3 9.53 11.5 5.89 8.54 9.14 8.97 7.94 11.1 11.4 3.99 10.1 5.01 6.33 9.17 9.27 9.59 8.86 7.08 9.34 11.6 9.88 9.71 8.82 5.35 7.6 9.86 6.37 9.48 10.3 11.1 12.5 8.96 11.6 9.82 9.89 9.29 10.3 10.5 10.9 8.45 11.4 7.09 10.5 9.45 4.99 7.55 8.97 9.44 8.56 10.6 11 2.47 6.57 7.4 10.2 4.85 7.19 12.2 9.42 7.35 10.6 2.62 3.44 5.34 10.1 10.3 10.8 9.63 13.8 9.65 4.11 9.71 12 10.4 11.4 8.87 3.42 10.2 8.47 9.53 7.34 9.82 12 9.56 9.02 6.92 8.14 11.7 11.3 11.7 13.8 8.97 12.4 6.46 11.2 8.92 8.66
-TCGA-WB-A81S-01 6.88 4.74 12 11.3 7.06 8.52 2.05 9.01 8.81 7 8.28 8.23 6.8 2.57 3.11 8.66 9.6 9.29 7.53 9.03 9.15 2.46 9.27 2.87 9.76 9.78 4.21 8.98 6.27 8.75 5.9 5.65 8.84 0 3.51 0 1.7 4.43 4.47 4.66 5.3 4.56 6.24 0.54 4.38 4.47 1.23 5.41 11.1 7.26 2.78 8 8.13 7.73 5.53 0.54 6.25 0.93 6.89 4.28 9.96 3.95 8.32 9.56 2.46 4.61 8.43 10.4 10.4 5.7 6.41 7.44 1.23 1.23 10 3.81 5.68 4.25 4.93 2.34 5.04 0.54 2.64 8.96 6.03 0.54 5.74 0.54 3.11 3.67 8.39 7.12 5.91 2.88 7.66 2.96 0.93 0.54 4.52 0 5.08 6.6 4.96 5.77 5.99 3.56 5.72 7.82 6.12 6.02 3.32 2.34 7.33 3.81 6.85 2.78 2.55 3.51 4.31 6.66 6.35 4.14 2.75 1.89 1.23 6.56 3.11 3.11 2.34 14.4 3.71 2.78 4.92 4.44 3.62 2.34 3.86 0.93 4.32 8.63 7.91 11.3 0 2.57 6.59 11.6 0 10.6 0 2.68 5.27 0.93 4.69 10.4 10.4 3.19 1.49 0.6 11.9 5.12 7.13 6.94 5.92 1.49 10.2 7.18 5.35 3.72 3.72 5.7 10.2 10.9 3.62 4.11 3.62 4.58 4.11 7.53 8.16 6.11 4.25 8.43 5.45 6.67 6.57 3.23 2.05 1.23 8.91 5.77 8.92 10.7 4.24 10.1 7.2 6.39 6.57 7.78 9.68 9.71 7.72 10 8.76 11.2 10.1 1.7 8.83 9.86 10.4 9.61 8.15 1.23 11.1 10.1 9.83 10.3 9.54 11.2 6.34 10.2 5.53 10.8 10.6 10.4 8.83 8.32 5.36 8.84 8.56 13.5 9.95 8.15 9.06 12 9 8.69 10.5 8.11 11 6.7 8.52 3.62 11 11.4 11.4 10.7 11.5 12.2 6.63 12.9 6.27 4.14 7.57 9.17 8.98 4.5 9.18 11.5 0.54 11.6 4.47 9.37 4.22 10.3 10.4 11.2 9.86 11.4 12.2 10.3 7.6 4.32 8.42 9.4 11.9 11.4 1.49 11.6 10.1 12.2 12.6 9.93 10.6 9.05 10.4 11.4 11.2 6.31 9.94 11.2 4.41 2.2 12 5.84 11.5 10.1 11.6 11.6 10.8 6.54 1.89 13.2 9.27 7.5 9.2 10.7 0.54 8.5 6.59 8.95 12.9 7.48 0.93 8.46 6.11 12.2 9.64 10.7 7.39 7.94 11.4 11.6 8.65 9.62 11.1 9.99 11.3 8.94 10 10.9 8.08 8.22 9.94 7.97 9.71 10 9.27 7.02 7.65 9.8 10.4 9.68 9.33 9.65 8.82 13.5 11 8.91 11.6 9.79 10.2 2.75 10.1 6.01 3.19 8.29 9.16 10.8 3.67 5.78 4.83 8.71 9.38 9.67 8.6 6.66 10.2 1.23 7.57 6.8 6.75 10.9 9.64 11.5 10.7 7.06 7.97 9.74 8.42 8.44 9.04 9.68 7.09 8.69 11.4 10.3 7.71 10.3 9.73 10.1 2.2 8.83 12.1 9.67 4.83 10.2 9.19 4.81 8.96 12.8 9.85 9.29 11.1 9.32 8.68 11.3 8.68 8.62 9.36 12.4 1.7 10.5 10.3 9.42 8.53 11.7 8.9 8.27 7.87 5.78 10.7 6.85 12.9 11.6 4.66 10.4 9.14 10.3 11.4 10.2 11.9 13 7.66 8.97 5.31 6.98 8.74 6.55 8.44 9.73 11.2 12.3 11.1 3.9 10.1 8.22 9.48 7.35 0.54 9.09 3.73 8.97 5.44 9.74 8.35 8.26 4.38 11.1 5.1 3.51 9.51 9.94 10.7 2.34 9 10.1 5.98 6.38 4.53 6.38 5.79 6.86 7.62 8.29 8.53 10.1 9.87 10.4 11.7 4.07 13.9 10.2 6.07 9.32 12.3 5.86 11.5 8.28 6.39 5.59 5.89 9.37 7.44 5.69 11.9 8.46 7.55 10.9 10 11.5 12.2 12.5 10.4 5.76 7.91 10.1 9.47 3.56 10.8 0.54 3.11 11.2 1.7 11.2 8.28 10 8.83 8.15 7.9 9.2 5.44 10.4 9.92 11.2 11 11.2 9.34 9.92 9.35 6.08 10.4 9.75 8.76 6.8 7.35 9.59 8.26 12.6 9.41 10.9 11 9.69 10.9 10.6 10.1 0 9.83 5.9 9.33 8.89 9.77 11 9.22 11.7 8.01 8.16 8.91 3.51 11.4 8.31 7.23 10.8 9.85 1.89 9.07 9.08 8.1 8.42 10.3 11.2 7.28 10.9 10.1 8.79 10.5 9.91 11.2 10.2 10.1 2.68 11.9 10.1 10.5 9.84 12.7 10.8 13.2 11.8 9.53 9.81 9.91 9.58 0.54 6.79 9.09 7.68 8.93 9.47 10.7 8.89 8.66 10.3 10 9.64 0 7.03 10.1 8.61 7.81 13.6 10.3 10.4 10.1 12.2 10.1 11 10.8 12.2 1.23 10.6 9.62 7.77 7.18 11.5 1.23 2.68 9.3 10.2 11.4 10.7 9.11 10.2 10.4 10.5 12.3 1.49 10.9 8.3 10.8 6.31 8.68 7.27 10.6 9.01 4.22 8.44 8.07 1.7 3.45 11.4 10.7 4.11 11.3 2.34 9.34 8.04 9.61 9.39 11.9 11.5 10.6 11.7 4.47 10.7 2.05 10.1 9.88 9.85 11.4 9.2 8.48 10.1 11 7.26 9.02 13 0.54 7.28 11 9.32 9.84 9.79 7.21 9.97 10.9 9.3 12.6 8.22 2.68 11.8 8.85 9.74 9.85 7.98 10.8 8.29 13.6 5.67 7.06 8.38 5.1 8.28 10.9 6.97 10.9 11.8 7.81 6.59 11.1 10.8 4.92 10.8 4.69 5.08 2.63 7.11 10.7 8.86 4.35 2.68 9.46 6.57 10.1 10.7 11.8 10.6 10.6 10.9 10.3 9.32 2.05 0 3.11 10.1 6.55 7.28 8.08 4.66 10.7 9.98 11.2 5 5.21 5.82 10.8 10.9 9.08 0.54 10.4 10.1 6.66 3.19 3.04 11.3 10.6 6.99 10.6 7.84 5.21 10.4 10.1 7.62 7.36 7.02 13.4 2.96 9.52 11.4 11.2 9.94 11.7 9.83 11.8 6.83 5 4.8 11 1.7 4.05 0.93 9.63 9.39 10.4 11.2 0 7.78 9.7 5.44 5.8 9.91 8.51 7.65 1.89 10.7 7.52 0.54 9.62 11.7 9.56 10.7 9.9 10.2 10.4 11.4 9.93 8.27 8.31 12.6 9.69 6.94 9.66 8.62 6.55 6.95 12.4 7.03 7.56 5.25 6.41 8.94 9.55 5.31 8.92 4.14 11.7 8.34 0 0 8.97 8.42 11.8 10 5.63 8.38 8.32 14.5 9.62 8.22 9.36 7.01 10.3 8 9.4 0.93 2.34 2.46 11.1 8.08 9.37 11.7 6.9 8.16 4.98 9.31 11.1 7.57 5.58 5.36 6.76 8.21 7.28 10 11 10.7 5.41 3.62 8.22 0 8.76 0 10.1 8.51 7.66 6.02 0.93 11.3 7.83 8.89 10.2 4.96 2.87 10 8.65 11.1 9.69 11.8 9.21 9.2 9.27 10.6 8.55 9.18 9.85 11.4 8.82 0.54 8.03 0.54 11.4 9.47 13.1 1.49 10.4 10.8 11 10.7 11.1 4.35 6.26 11.3 10.2 10.2 2.05 12.3 3.04 11.2 6.48 9.88 10.4 6.71 0 8.81 11.7 11.6 9.57 9.4 10.9 11.4 6.08 10.3 10.2 10.1 8.9 12 13.6 10.6 12.4 10.3 12.9 12.2 11.4 8.04 7.9 9.21 9.16 10.4 13 13 9.88 9.34 10.7 6.72 10.3 11.1 7.4 11.7 12 9.22 11.4 10.2 11 11 6.61 0.54 12 5.16 10.6 6.84 10.2 9.38 3.56 4.28 7.05 9.76 0.69 0 7.33 9.04 1.7 11.9 6.78 10.7 9.92 9.37 7.53 9.25 8.97 10.5 9.25 2.05 3.64 1.89 3.26 9.16 10.7 5.25 12.6 4.86 7.47 5.01 8.99 12 9.44 9.64 0 8.63 10.5 8.46 10.7 10.6 10.3 7.45 12.6 9.22 11.2 9.79 7.37 0.93 8.45 4.61 9.13 8.53 8.54 11.2 12.6 10.3 7.55 8.49 11.9 3.77 10.4 10.3 12.7 8.09 10.1 10.9 9.61 8.47 7.75 9.35 3.45 7.96 9.32 10.9 9.09 11.8 8.67 9.92 9.1 7.37 6.2 9.53 5.02 9.9 7.12 7.16 12.3 8.75 8.45 10.9 10.2 3.39 8.98 4.38 9.62 9 9.55 20.1 5.78 1.49 9.31 6.26 9.23 0.54 9.53 11.1 20.4 11.7 9.9 9.81 1.89 9.33 5.92 6.04 3.11 5.31 8.31 10.1 7.25 6.67 6.77 8.96 7.91 7.77 7.89 0.54 9.52 9.62 6.3 9.38 8.7 8.54 11.7 11.8 6.38 0.54 8.2 11.7 7.48 4.83 12.1 7.89 10 8.32 1.23 12.1 9.93 9.85 5.31 7.24 9.35 1.23 12.5 12.1 8.93 10.3 8.19 8.96 10.1 9.76 11.7 10.7 8.45 4.64 9.04 4.58 10.4 9.89 7.53 12.2 11.8 8.33 9.69 6.46 1.49 5.9 8.29 9.18 3.81 12.4 9.96 1.49 9.5 9.4 10.8 11.1 6 8.91 8.25 9.83 6.92 9.13 10.4 3.56 4.61 5.53 9.3 10.2 8.74 8.23 7.08 10.2 6.48 8.49 9.51 7.58 8.96 0.93 1.24 9.55 11.1 8 9.55 10.8 8.92 5.8 10.7 11.5 11.1 6.45 5.99 4.22 9.42 8.6 8.89 8.81 7.88 4.37 0.54 6.76 7.02 11.8 7.43 8.79 7.63 3.81 10.2 9.44 10.5 9.18 5.59 3.62 8.7 7.61 10.5 9.56 7.48 6.28 8.16 8.61 7.12 10.4 10.5 10.1 8.05 6.98 7.66 10.6 7.85 9.34 9.36 7.47 9.63 2.87 9.15 5.36 6.19 11 11.2 2.96 11 6.64 6.09 10.5 5.21 1.23 9.13 9.71 5.7 11.2 12.8 9.51 7.37 5.94 9.65 10.4 11.8 10.2 6.76 10.5 6.16 4.53 11.7 8.06 3.11 11.2 11.5 11.4 9.97 10.6 9.87 12.7 11.5 2.77 8.16 7.71 7.55 11.9 9.95 9.13 10.8 8.81 11.8 7.63 8.08 2.57 12.2 7.99 6.45 13.6 9.9 6.99 8.2 8.32 7.53 3.95 9.28 11.2 7.65 4.66 0 9.89 2.2 7.23 7.59 7.22 7.66 2.2 5.22 10.6 9.29 10.9 0.93 7.44 7.86 7.14 9.01 8.21 5.53 6.57 0 0.54 7.38 2.78 10.3 7.31 10 12.9 5.8 0 9.31 9.53 3.81 11.7 8.77 10.5 9.18 9.54 3.56 9.99 1.23 7.76 8.51 7.37 8.65 6.95 9.76 9.14 11.5 7.86 7.12 5.93 4.92 12.2 0.54 8.2 8.29 4.06 3.62 8.03 8.33 9.46 7.31 10.4 10.2 6.36 7.85 9.37 5.42 6.66 2.57 7.79 4.38 6.54 9.1 8.66 8.92 11 10.8 8.64 8.77 6.34 10.4 9.51 9.57 5.16 0 9.06 9.57 7.67 6.24 2.34 7.45 7.08 12.4 9.47 11.4 6.57 6.72 3.04 8.42 8.27 10.8 12.9 6.65 0.93 0.54 8.84 8.57 5.83 5.57 7.38 8.38 9.03 10.8 7.46 8.6 10 6.9 4.69 1.49 1.23 7.32 1.23 9.76 10.2 8.81 4.35 9.84 3.56 0.54 4.64 8.56 8.63 8.63 6.49 9.63 6.42 7.79 8.3 7.38 3.39 3.72 3.62 10.8 8.42 5.51 8.7 7.66 10.1 7.54 10.9 7.91 9.88 11.4 1.23 10.2 0 9.84 8.46 9.16 7.37 4.9 9.42 0.93 8.71 7.15 5.59 0.93 6.68 0 8.81 5.23 7.08 9.08 5.39 1.75 6.34 0 0 9.41 10.1 6.65 8.69 9.15 0.54 5.7 3.99 8.46 9.11 9.46 2.05 7.33 2.46 4.03 9.07 11.8 5.19 11.1 8.94 9.08 12.2 8.55 1.23 8.69 5.27 1.49 5.75 7.82 9.74 0 9.05 3.81 5.83 6.23 12.9 10.6 9.52 4.18 2.46 7.49 8.35 8.9 6.38 3.52 13.4 0 6.41 11.2 10.1 10.5 9.08 7.75 11.7 0 7.4 2.96 8.14 0 8.33 8.5 6.06 6.21 9.52 11.8 6.18 2.96 5.04 7.25 9.61 11.4 7.94 8.81 0.93 6.14 10.1 3.39 8.54 10 16.7 11.6 7.48 3.11 6.72 8.96 5.99 1.49 11.4 11.3 8.52 8.95 9.5 3.56 8.28 10.1 11.4 13.9 1.7 8.28 7.55 4.14 8.41 6.67 9.68 0.93 1.53 6.11 8.61 8.6 9.37 0.54 6.74 11.5 2.57 3.11 6.33 11.3 10.2 5.42 8.87 3.67 7.76 13.5 0 7.14 8.9 5.1 3.04 7.76 9.48 1.89 7.28 10.9 0.54 0.54 2.05 8.08 5.45 6.99 6.5 7.52 5.67 9.96 7.11 7.62 9.16 8.54 6.22 7.41 7.39 9.26 9.01 2.87 9.59 8.01 2.68 7.25 5.35 11.1 5.82 1.23 9.05 0.93 8.76 0 8.05 5.19 8.14 9.13 2.87 7.11 5.53 5.01 2.87 4.47 10.7 4.98 1.49 8.56 4.69 3.04 8.8 9.13 3.99 7.96 2.22 8.45 2.46 8.31 8.32 6.21 2.46 8.52 7.34 7.09 0.54 0.93 7.85 9.76 5.1 3.45 8.28 8.12 8.3 10.6 8.64 3.19 7.99 8.02 9.41 12.4 10.1 4.53 2.05 8 8.6 1.7 6.36 1.49 7.16 8.2 7.46 3.45 4.03 0.54 9.19 8.02 8.14 9.56 9.81 9.08 7.2 0 8.24 4.14 8.29 9.02 8.13 8.22 5.81 5.79 8.04 11.8 7.64 8.32 0.94 8.56 4.53 8.68 8.9 4.88 5.98 0.93 6.8 10.5 1.49 9.74 8.5 0 4.32 4.38 9.56 6.76 6.81 5.7 7.74 8.31 10.1 8.87 3.32 1.23 8.44 5.42 1.7 7.21 6.62 7.28 5.1 10.4 9.64 9.1 4.32 9.74 9.9 7.59 11 1.23 5.1 7.04 7.15 7.83 12.2 0.54 8.44 6.26 8.88 7.45 4.18 11.2 6.78 5.59 3.72 8.03 0 10.4 8.67 7.15 8.4 5.31 0.93 7.52 0 0.93 0 8.42 1.7 9.61 0 3.95 6.72 8.62 12.8 8.66 10.1 2.68 11 9.23 4.96 6.31 8.01 1.89 0.54 8.39 2.34 5.41 0.54 9.7 12.7 6.7 9.65 4.69 12.7 10.8 11.5 0 4.47 9.84 1.7 10.8 1.7 6.93 10.1 12.7 0.93 3.67 13.8 0 0.54 0.54 5.35 10.6 4.22 8.99 4.18 8.17 2.2 5.84 8.66 13.9 9.87 7.1 7.04 3.77 2.05 9.08 4.03 3.67 10.7 9.86 4.5 8.84 6.56 3.62 11.3 8.93 10.2 10.1 10.1 9.96 10.1 3.9 12.1 8.91 12.5 9.32 2.87 11.1 8.71 12.1 7.8 8.27 8.86 3.32 7.37 8.61 5.9 9.69 9.31 8.67 9.61 7.16 4.03 9.14 3.81 6.91 8.05 6.38 1.89 0 3.62 9.7 11.2 1.89 4.98 6.81 5.82 6.34 10.2 6.73 6.58 8.62 10.4 6.3 10.3 7.86 4.22 9.21 2.05 0.93 6.04 10.5 9.69 9.65 9.51 5.83 5.04 2.57 0.54 7.11 7.45 9.85 7.86 8.13 5.26 2.68 0.93 8.73 5.45 10.2 8.87 8.46 3.32 10.5 12.1 10.5 4.47 7.87 10.9 0.54 9.23 11.6 10.1 11.6 9.19 8.08 0 12.7 10.4 1.49 9.04 2.68 0.54 8.31 8.35 6.96 6.57 8.08 9.16 1.23 1.13 7.34 10 7.6 8.35 3.45 4.03 2.2 6.24 8.83 8.13 12.3 9.82 9.78 9.98 4.79 10.8 4.07 7.8 2.87 10.2 8.12 3.67 9.52 8.11 1.89 6.79 5.55 11.7 9.89 8.26 11.7 9.52 1.23 1.49 8.14 7.99 10.8 10.3 7.85 8.83 9.7 8.95 7.71 6.59 7.08 7.78 9.46 8.96 3.04 7.1 11.2 8.3 3.19 8.33 10.1 8.8 6.43 10.9 6.34 10.6 10.8 6.71 10.7 11.5 11.7 9.63 3.72 7.36 7.43 7.73 1.7 8.8 3.77 10 2.34 9.65 1.33 0.93 4.25 2.2 4.58 7.83 0 10.6 1.49 2.46 15.2 0 2.78 3.51 2.46 3.56 8.12 8.5 3.27 5.77 3.32 8.57 4.14 5.55 8.62 9.32 10 8.33 7.8 7.77 8.12 2.68 3.32 7.15 9.07 0 6 10.8 7.06 0 10.9 1.7 5.21 6.79 4.5 6.08 6.5 7.04 0 6.73 11.2 7.68 5.7 4.79 9.93 9.55 8.93 6.04 10.9 7.6 2.78 10.8 11.4 9.59 2.34 9.66 8.96 2.57 8.12 6.84 9.3 8.4 9.76 12.8 5.8 4.53 3.9 8.92 9.2 7.83 11.4 11.2 5.66 11.7 1.76 10 8.1 9.42 4.47 10.4 11.3 2.87 5.41 6.34 8.16 5.48 10 11.3 10.1 8.5 0 8.63 8.68 0.54 1.7 11.1 3.35 5.29 7.36 8.27 6.64 7.57 7.45 6.05 9.25 3.67 6.58 11.7 5.08 9.52 2.57 2.34 10.4 10.9 2.34 10.8 9.04 5.86 6.3 7.08 2.34 4.56 6.86 9.13 6.05 10.2 2.34 11.1 1.49 8.88 7.75 5.98 0.54 10.8 9.22 6.68 4.18 1.89 4.14 4.22 3.99 0.93 7.44 9.8 3.11 9.59 10.3 4.69 11.5 8.27 9.81 9.45 9.04 6.5 10.4 10.6 7.39 8.04 8.14 9.6 0.54 4.71 7.42 9.47 5.31 6.75 6.84 7.21 7.54 8.77 7.49 6.73 1.23 4.32 9.12 6.26 8.37 8.92 6.92 7.82 8.53 5.41 4.41 6.14 8.47 5.5 3.19 12.3 9.09 9.54 9.99 4.47 5.7 1.49 2.57 3.77 10.2 3.19 0.54 4.11 6.46 4.86 10.4 4.98 8.61 8.68 10.3 8.6 5.75 11.6 0 4.41 6.73 12.2 7.19 7.6 11.6 5.3 0 8.11 7.57 10.6 2.2 5.85 8.01 9.91 8.34 10.2 7.98 3.39 2.35 5.71 2.57 8.94 7.1 0.54 9.03 0.54 3.26 10.4 8.7 9.11 8.59 1.7 2.46 9.02 10.4 8.32 0.93 10.5 1.49 2.34 2.2 12.6 1.7 10.8 8.08 5.5 0.54 1.89 11.9 8.39 7.8 3.77 2.46 2.87 6.79 2.2 12 8.66 5.82 2.2 3.39 0 0.93 7.38 2.2 0 8.46 1.49 0.93 3.26 0.54 4.83 0 9.5 2.2 3.67 8.74 2.49 8.3 4.22 5.99 8.08 7.11 11.8 0.93 6.77 5.5 8.04 9.21 6.72 9.56 0 5.19 1.89 3.26 8.57 7.35 3.26 6.98 10.7 5.41 7.27 7.45 3.26 7.06 3.62 5.28 7.52 8.23 3.9 8.54 0.93 9.03 1.89 4.32 7.88 5.51 8.19 7.05 5.41 2.87 0 8.67 8.81 6.25 6.98 5.25 8.69 6.7 6.7 8.07 5.34 8.59 9 4.79 7 4.64 6.37 8.29 6.61 0.93 6.12 7.62 6.2 9.31 5.67 10.8 6.55 7.65 6.79 3.99 5.16 6.85 3.86 7.85 10.5 7.38 4.14 7.78 8.9 10.4 8.66 9.9 9.36 4.02 11.8 3.04 1.49 8 8.98 9.71 5.28 7.15 8.22 3.69 5.02 8.5 0.93 10.5 9.95 0.62 9.52 4.22 5.62 2.78 9.3 0.54 6.21 4.28 8.86 9.24 7.05 2.34 0 0 7.35 6.46 1.49 11.7 11.7 2.57 8.39 7.2 6.18 12.1 9.33 10.6 0 9.01 11.7 0 4.22 12.5 0 0 3.56 0 4.24 0.54 6.63 5.06 2.34 7.6 8.26 7.19 6.18 9.6 2.56 7.7 4.5 8.02 6.48 7.04 6.96 3.19 11 4.76 9.39 1.7 4.16 4.32 9.32 8.07 4.44 5.66 11.5 5.9 3.77 3.11 9.69 5.06 13.7 8.01 15.3 7.32 6.31 0.93 4.07 8.5 8.58 5.87 0 1.7 7.09 8.28 7.37 8.58 8.05 7.47 2.57 4.98 6.11 6.52 4.22 7.46 4.44 8.45 9.31 6.92 12.5 2.05 9.16 1.89 3.19 4.03 6.86 8.38 6.58 5.63 11.4 9.11 10.3 2.46 4.96 7.87 0 7.52 6.2 9.83 2.2 10.4 9.1 6.37 8.66 3.81 8.66 8.02 9.82 8.19 3.11 5.69 5.67 6.94 2.57 10 8.1 4.64 5.48 12.3 4.03 7.81 9.48 11.2 6.89 4.32 7.87 6.91 8.26 3.39 9.32 7.1 1.49 8.86 6.87 8.55 2.2 6.66 5.36 11.2 10.1 8.34 2.2 2.34 7.96 7.44 3.67 6.93 11.5 7.05 8.61 9.13 10.8 7.44 6.75 16.1 7 1.23 9.09 9.63 5.71 7.59 8.62 5.83 0 1.49 4.07 10.8 6.73 5 4.79 2.2 1.23 10.6 4.35 11.6 7.99 9.19 5.39 5.58 5.62 1.49 7.17 0.93 2.91 7.61 8.24 3.51 0 7.73 4.41 0.54 8.66 9.09 1.49 10.1 12 2.51 2.68 10.3 0 8.25 6.81 8.81 9.58 12.8 0.54 4.32 2.68 10.7 5.71 6.86 10.1 3.45 5.66 11.7 6.03 5.06 11 4.36 0.54 6.45 2.34 2.68 9.81 7.53 9.62 3.26 6.25 2.05 7.36 6.66 10.3 9.44 8.32 2.87 0.54 10.3 3.19 6.63 7.62 6.86 10.4 1.23 8.88 8.18 0.54 4.71 8.98 3.51 7.08 7.87 6.5 0 5.02 6.93 7.69 3.45 9.83 7.19 10.5 4.41 4.41 8.65 2.46 5.63 10.1 6.16 13.3 5.92 4.38 9.16 2.22 8.26 4.56 1.89 1.89 5.41 0.54 8.02 6.06 2.22 8.83 9.96 7.54 10.7 5.23 8.09 5.31 4.35 10 6.16 4.18 11.5 1.89 0.93 11.7 11 6.7 9.19 1.89 9.94 4.18 0.93 10.8 7.35 2.46 0.93 10.8 9.35 1.7 8.52 11.5 10.5 8.78 8.81 9.73 8.97 5.98 6.56 9 8.49 11.5 11.1 3.81 7.8 7.86 9.31 10.2 1.49 5.26 5.92 9.84 2.2 8.21 11 6.6 10.1 0 5.9 9.92 1.49 5.89 9.91 3.04 4.66 7.48 4.35 10.5 11.8 9.03 17.2 10.2 7.84 0 7.28 3.81 9.56 0 2.46 9.47 0.54 2.68 1.89 4.28 6.38 5.76 11.6 10.9 7.38 7.31 5.41 6.7 8.42 5.32 7.42 4.28 9.48 7.31 3.9 12 7.63 8.4 7.03 6.55 6.29 0.54 6.8 6.18 5.36 8.18 8.55 6.13 7.32 2.46 9.18 2.05 6.65 8.97 3.85 9.35 0.54 10.3 8.23 10.8 8.68 13.6 1.23 3.9 5.21 0.54 2.87 4.28 9.71 9.87 13.2 10.4 0.54 7.22 0 12.4 10.2 8.89 0.93 3.11 14.2 10.1 3.62 9.79 1.55 3.04 1.7 1.7 8.96 12.4 9.55 12.5 11.6 4.41 2.22 3.04 5.33 9.15 11.8 11.4 7.9 13 14.3 1.7 6.74 11.3 3.72 5 9.18 2.46 9.35 0.54 6.64 13.5 11.7 3.56 8.02 7.91 10.2 1.23 7.47 6.47 10.8 9.97 8.75 8.43 6.51 6.75 5.04 3.51 5.77 9.7 0.54 8.49 0.54 8.38 7.76 9.51 0.54 5.28 5.74 3.32 8.27 5.38 7.97 6.35 6.68 1.49 6.19 3.77 9.3 8.45 2.46 5.77 7.05 9.7 0.93 4.35 9.25 8.89 6.8 8.68 6.58 3.72 0 10.7 10.1 5.39 5.77 4.11 8.94 5.96 7.34 0.54 4.53 8.22 2.2 0 10.5 10.1 3.9 9.33 6.59 0.93 9.93 3.11 3.51 3.51 2.68 4.38 10.9 6.93 6.99 8.87 5.41 10.1 0.54 10.5 11 0.54 0 2.2 6.41 12.1 7 9.48 1.49 9.47 8.29 10.2 10.4 10.6 6.82 8.16 6.18 10.7 13.2 8.42 10.5 9.05 7.47 0.54 7.13 9.54 9.46 10.3 10.1 10.2 9.55 10.9 10.6 9.95 8.59 1.23 4.69 10.5 10.4 6.25 11.7 9.89 10.6 10 4.9 3.04 2.46 6.05 3.39 6.31 10.3 5 3.39 10.8 14.4 7.67 11.2 11 11.9 11.8 10.2 6.99 8.98 4.96 8.96 7.56 10.2 8.3 9.29 7.73 12.5 1.7 10.1 7.7 5.54 8.17 12.2 13 4.56 9.75 2.34 5.71 9.02 11.2 6.28 8.37 13.2 4.28 9.28 2.2 7.99 11.9 6.92 9.97 9.35 8.06 9.49 6.86 7.97 8.31 13.6 8.21 11.1 12 10 10 12.3 6.67 10.8 0 10.6 10.5 9.55 11 10.8 10.2 7.1 9.47 2.68 7.91 10.4 5.91 8.68 9.13 9.03 8.32 13.4 0.93 8.26 10.2 11.4 10.8 6.05 7.22 8.89 9.74 8.84 7.87 5.8 7.63 10.8 9.91 10.1 10.4 15 0 14.3 8.73 9.69 6.89 7.09 12.6 11.5 11.7 12.8 15.2 9.92 8.12 3.86 3.77 8.62 8.76 9.21 8.49 0.54 11.1 9.62 8.1 11.3 9.95 5.39 14 8.54 6.5 10.4 8.43 10.1 1.7 5.36 8.02 10.5 7.67 1.49 6.29 8.64 6.07 8.36 11.1 11.1 2.05 9 11.8 7.77 9.54 9.18 8.58 12.4 9.01 3.59 9.99 9.39 7.34 6.15 11.5 4.22 7.39 9.36 4.32 3.04 1.89 0 9.92 3.39 6.17 6.22 8.21 7.07 12.4 7.24 8.48 8.33 6.41 6.96 8.47 12.7 8.3 12.7 9.48 7.37 10.9 12.4 14.2 11.6 11.5 3.56 7.87 0 9.48 6.15 7.35 10.6 9.3 9.15 1.23 7.95 2.05 9.57 7.42 0.54 6.24 10.6 6.73 7.85 8.5 2.46 9.59 3.11 7.28 7.91 3.04 9.38 0 8.98 13.2 13 9.24 1.23 2.68 9.37 8.35 5.48 8.31 10.6 0 3.51 0 3.11 10.2 10.4 5.13 10.7 7.52 2.2 7.77 3.32 7.41 2.05 8.71 0 0.54 4.11 8.53 6.28 6.44 6.82 10.9 12.4 3.99 8.12 10.7 7.03 0 6.28 8.25 0 7.54 8.26 8.79 6.6 2.87 7.34 10.2 7.7 10.5 9.85 8.09 8.54 5.86 10.2 6.16 9.38 8.63 10.4 8.11 4.53 7.95 8.01 7.01 8.16 8.81 11.8 0 8.8 2.87 7.88 3.99 10.3 2.96 6.42 7.65 7.15 10.3 0.93 1.23 9.88 9.32 1.89 0.54 11.9 7.33 10.8 4.58 4.28 1.89 8.6 9.75 9.19 8.45 5.33 9.62 6.48 3.81 7.58 6.21 4.11 12.3 8.15 0.54 12.4 4.35 3.86 2.57 1.89 0.93 13.5 5.62 7.68 8.92 12 2.6 11.5 12.5 7.68 8.77 13 9.69 1.49 5.55 0.54 8.66 9.79 5.38 7.34 10.6 8.67 8.23 11.3 3.39 12.9 8.23 10.4 8.39 7.8 10.9 13.2 9.37 10.2 12.4 9.54 12.6 3.45 7.82 3.86 6.59 6.49 5.84 0 9.74 5.59 1.89 4.11 9.63 8.71 8.72 8.35 9.56 9.68 9.75 8.94 8.55 9.49 0.93 10.8 9.72 11.6 9.23 10.5 9.99 1.23 8.84 7.6 3.32 1.23 3.45 9.32 7.9 2.2 12.8 2.57 8.69 10.4 7.99 10.5 7.74 11.2 8.77 10.2 10.5 8.22 9.42 10.3 5.02 11.5 11.4 2.78 9.6 1.89 10.7 9.72 10.5 9.96 8.79 10.9 10.9 10.4 4.66 8.03 2.57 10.8 1.49 8.46 8.59 7.61 6.77 6.99 1.23 5.06 12.1 8.92 10.4 4.28 7.66 10.8 7.45 4.22 13.4 6.13 9.44 4.66 0 9.95 9.33 4.14 4.53 9.16 6.48 2.34 7.98 10.7 8.52 3.39 10.2 7.19 0 0 10.8 7.93 4.92 4.88 7.41 6.12 6.98 2.2 10.3 10.9 11.7 7.96 9.45 11.1 2.05 7.04 7.89 8.9 6.67 7.45 4.11 10.5 9.27 6.26 6.9 13 9.65 9.55 2.2 8.88 7.76 4.07 3.26 9.17 3.45 14.2 11.9 5.9 7.78 8.85 10.7 10.3 4.69 6.95 5.81 6.5 6.47 8.35 10.5 7.08 8.77 7.93 0 8.16 9.35 8.24 9.84 10.9 3.99 9.76 4.28 3.62 8.25 6.7 2.57 1.23 3.77 3.11 4.18 10 10.1 1.89 9.26 5.98 7.53 5.04 2.2 2.87 1.49 6.66 3.72 4.88 2.46 7.26 7.38 0 0 6.04 7.96 7.4 6.11 10.1 9.54 5.3 12.1 4.03 6.7 5.7 4.83 8.81 10.5 2.2 8.27 8.71 8.55 10.1 11.6 8.62 7.01 3.33 9.3 6.24 9.1 3.32 9.2 7.15 9.1 7.23 7.84 5.63 8 10.7 9.57 5.18 2.2 4.11 6.9 5.47 8.21 0.93 3.21 6.29 3.39 11.5 2.87 10.4 9.71 2.05 7.29 5.62 9.05 4.73 7.67 2.68 4.35 9.58 8.97 1.92 8.57 8.62 7.63 9.75 1.49 9.1 2.05 11 4.71 8 5 10.6 7.37 10.8 8.29 8.28 7.75 0.54 11.5 7.36 10.6 3.62 10.8 8.7 10.8 10.2 8.54 6.67 2.87 9.37 7.49 7.82 6.99 10.7 7.65 0.93 8.55 2.68 0 0 4.67 10.2 2.2 5.31 6.43 4.86 1.7 13.8 4.69 11 10.7 10.7 7.96 8.59 4.14 8.27 10.2 8 5.53 10 6.6 7.44 9.4 6.46 6.71 0.54 6.71 4.44 5.23 0.54 5.36 9.93 14.3 12.3 4.53 5.18 2.2 3.32 5.76 9.68 6.08 11.7 8.03 7.23 10.4 8.84 9.11 5.39 11.6 5.04 9.12 0 10.5 1.89 5.9 9.77 9.5 8.42 10.9 3.67 11.2 9.1 12 7.26 8.87 10 11.2 9.93 0.93 7.51 9.29 8.04 9.85 9.72 9.96 12 9.84 8.95 6.78 8.81 10.1 8.54 10.9 8.55 9.3 7.8 9.17 8.67 9.55 7.77 11.5 10.5 8.29 13.1 9.09 11.2 9.58 9.62 8.75 9.76 12.5 4.76 12.4 11.2 11.9 10.3 11.8 11.1 10.4 9 11.1 9.59 8.56 9.23 12.9 9.83 9.6 9.69 8.75 10.1 12.4 9.42 11 11.1 9.74 12.1 8.7 8.77 8.93 4.38 8.92 8.04 11.9 12.5 10.1 10.6 11 11.5 11.3 8.84 8.45 11 5.62 7.32 9.83 0 11.7 11.2 12.1 9.28 11.2 9.56 10.7 10.6 9.49 10 10.7 11.4 7.99 10.1 8.1 10.2 11.2 10.1 7.32 7.59 11.5 7.4 9.99 0 8.79 9.86 7.15 3.99 4.71 5.51 7.97 3.26 10.7 11 3.19 11.6 8.68 9.87 11 9.44 11.7 4.28 8.65 0 11 11.3 10.4 8.58 5.04 9.04 8.6 11.1 9.94 10.4 11.7 7.62 9.88 0.54 10.2 0 10.1 9.7 10.9 10.4 8.98 9.3 11 0 12.3 12 8.82 7.04 12.3 2.78 9.14 8.87 9.77 10.2 10.1 9.98 8.79 8.26 9.89 11.3 10.1 10.9 10.6 10.5 7.95 7.71 9.84 9.88 11.7 6.35 10.1 10.9 12.2 10.9 11.1 8.19 4.28 10.6 11.3 10.8 10.1 10.8 10 9.78 10.8 10.8 11.1 1.89 9.26 10.3 9.09 11.7 9.7 7.17 7.78 9.44 9.99 11.3 4.66 9.68 11.9 10.5 8.53 10.8 10.1 7.68 8.8 10.9 11.8 8.36 10.2 8.61 12.2 9.41 8.76 11.1 4.25 9.8 11.7 6.45 10.3 10.9 9.93 12.4 9.39 8.84 10.3 7.21 6.8 1.7 12.4 11.4 11.1 10.3 11.2 8.48 9.84 10.5 8.43 10.2 11.2 12 9.12 8.56 9.56 11.4 10.9 10.7 10.3 9.26 8.21 7.95 11.1 7.67 2.05 9.47 8.6 11.9 11.1 8.68 11.7 11.4 14.1 8.83 10.1 11.7 9.84 11.6 10.6 10.9 10.8 10.2 7.09 11.4 8.91 9.76 8.45 8.93 10.8 12 10.6 9.96 7.08 9.6 8.45 9.27 10.1 10.5 10.4 8.57 11.1 8.11 10.3 11.5 10.6 10.6 12.8 8.15 10.7 11.8 9.44 9.62 11.5 9.02 8.24 9.97 11.9 4.18 10.1 12.9 0.93 11.8 9.54 9.45 8.46 10.8 10.7 11.7 9.6 9.64 10.5 9.97 1.89 5.76 10.4 10.2 11.2 9.68 9.24 11.9 6.46 10.1 9.63 8.06 8.1 10.2 10.1 8.49 14.1 7.12 9.52 7.88 10.7 2.46 8.57 10.9 11.9 7.75 8.78 10.7 9.69 4.76 7.96 10.6 6.85 9.99 10.1 10.3 10.5 0.54 9.89 9.15 12.2 12.4 11.9 10 8.31 9.84 6.38 11.9 11 10.6 9.3 10 8.8 10.7 9.28 7.95 8.29 9.75 7.45 9.32 2.68 9.52 10.3 3.72 10.2 10.5 9.08 10.7 10.4 4.69 10.8 10.2 6.22 11.1 9.45 7.21 8.39 10.6 6.61 10.8 8.41 9.22 11.4 11.6 7.14 9.07 1.89 10.5 9.08 10 12.5 6.45 12.4 9.86 12.6 9.24 8.96 10.7 11.4 10.6 9.59 10.6 11.9 11.3 11.3 4.41 8.35 12.1 12.4 10.3 10.5 3.9 14.7 10.3 9.46 12.1 11.6 7.67 8.78 8.77 9.73 5.42 9.65 9.78 7.99 11.7 11.7 8.27 12.3 9.44 11.7 9.94 11.7 10.9 9.81 7.2 10.4 9.94 11.7 9.97 11.1 10.9 12.2 11.3 9.68 11.1 9.75 9.75 11.5 11.2 8.8 11.3 3.32 8.73 10.6 9.81 5.74 7.28 8.27 10.6 9.23 7.97 4.03 9.81 8.84 9.28 11.8 5.75 4.18 8.6 7.32 4.92 9.39 12.7 6.38 10.6 9.04 9.19 9.92 10.3 1.23 8.49 5.67 11.3 11.3 8.19 6.06 9.85 11.2 12.5 12.8 8.19 9.08 6.7 5.02 10.3 9.51 11.1 6.25 11.7 11.2 11.5 10.2 11.3 10.1 8.43 9.63 10.9 11.1 12.2 1.23 9.45 10.1 7.49 10.6 2.05 12.6 6.92 0.93 6.21 12.5 8.01 8.96 10 12.7 10.5 9.73 8.01 5.62 10.9 11 10.5 8.55 10.1 8.55 8.79 11.8 10.7 9.74 0.93 1.23 12.7 10.7 11.1 13.7 8.52 9.94 7.31 5.38 14.9 10.4 11.4 0 5.85 9.31 7.65 3.99 11.8 6.88 12.4 12.4 11.8 9.36 1.23 0.93 9.18 9.77 11.8 6.26 11.8 8.48 7.49 7.68 7.76 9.03 12.6 10.9 9.75 9.86 2.2 3.47 9.05 0 7.59 10.6 1.49 6.44 7.79 1.49 12.7 10.2 8.32 3.62 10.1 8.92 9.09 10 10.3 6.26 5.12 9.14 9.24 6.9 9.07 5.26 8.45 9.93 8.82 5.77 11.3 5.14 9.07 10.8 9.63 10.3 10.5 1.23 7.11 10.5 12 10.4 0.54 1.23 1.89 5.16 10.6 9.03 10.2 10.7 4.14 9.1 11.3 9.21 5.28 10.6 11.1 14.1 9.38 10.7 7.35 3.26 13.5 5.19 8.96 9.27 8.3 9.1 9.73 7.47 7.89 2.2 8.5 7.93 11.5 8.04 12.3 8.45 13 12.9 9.46 8.29 9.78 10.9 10.3 10.2 9.59 6.21 2.2 10.4 4.69 11.5 13.2 10.3 0.54 9.81 11.4 12.7 10.3 9.57 2.34 8.1 6.91 5.16 4.5 9.54 9.7 9.49 9.59 8.4 9.41 8.51 6.47 6.17 11.6 9.36 0 4.25 0.54 4.01 9.79 0 4.54 1.23 9.32 0.54 3.04 0.93 6.33 8.27 4.96 5.69 9.57 6.51 3.67 0 2.05 9.9 9.22 10.4 5.57 2.05 4.58 13.9 7.64 11 0.54 14.2 9.4 9.39 12.1 6.38 5.59 0.54 6.33 0.54 0 11.4 5.45 3.21 9.77 7.55 8.94 9.24 4.35 4.03 9.06 11.2 9.96 5.25 4.5 7.59 10 6.89 10.4 6.45 10.3 4.22 7.75 8.82 6.43 5.39 13.1 6.65 2.2 10.3 4.83 6.68 10.9 9.57 7.84 1.23 10.7 10.9 10.1 9.22 9.33 5.62 6.07 10.4 3.72 7.92 11.1 5.39 0.93 8.52 1.49 0 7.94 8.03 6.06 7.07 8.87 1.23 4.71 7.52 5.94 5.26 11.1 10.5 5.28 3.04 12.4 0 6.19 11.9 5.19 7.44 6.47 8.64 9.71 7.07 9.47 7.66 8.97 0 5.78 9.75 6.92 8.03 2.57 3.62 9.03 2.68 7.67 6.5 5.83 7.03 0.93 6.79 0 7.75 6.67 0 8.86 5.8 7.39 3.56 7.23 9.25 8.11 9.32 7.18 3.72 1.7 2.46 6.13 7.6 8.35 8.06 4.96 5.17 3.86 8.37 10 7.12 5.61 5.85 8.63 9.97 9.98 7.61 0 7.86 8.12 4.14 0.93 4.11 8.07 0 6.71 4.03 1.23 9.44 8.93 4.41 5.66 8.24 3.72 7.31 3.26 8 3.67 4.58 10 3.04 8.11 6.76 5.47 1.23 1.23 9.02 9.09 6.01 6.17 3.19 11.9 9.67 9.79 8.55 2.34 8.94 12.4 9.92 7.86 10.7 6.48 2.96 6.86 3.04 5.75 11.3 11.8 1.49 9.23 11.8 10.6 7.77 10.8 12.4 7.45 8.9 9.67 3.19 10.8 4.71 8.37 7.65 10.2 0 9.38 11.2 5.87 6.6 7.98 6.52 10.7 8.52 10.9 2.05 11.9 6.96 9.12 10.2 11.8 6.77 9.94 11.2 5.85 0 10.4 7.17 9.89 8.14 11.6 6.35 8.65 9.78 11.5 8.51 9.91 14.6 8.28 5.54 9.75 8.61 9.65 7.72 9.09 6.01 10.3 4.98 10.1 10.2 11.8 10.3 12.2 9.74 10.3 2.34 8.09 8.86 8.82 6.83 9.54 5.58 7.08 10.3 8.41 2.87 6.61 7.7 8.3 10.3 8.98 0.54 11.6 10.4 9.03 8.75 8.91 8.6 7.91 5.67 10.7 4.5 8.29 12.4 9.62 8.22 10.7 9.88 9.94 0.93 10 10.6 11 0 7.17 8.2 9.07 10.3 7.65 6.84 9 4.92 10.2 5.21 10.9 0.93 8.18 2.34 1.89 4.98 9.52 11.7 5.54 11.9 9.8 9.39 8.19 8.67 8.47 9.84 10.8 10.6 9.95 8.92 7.94 10 9.43 8.35 7.18 9.89 9.11 11.1 11.8 10 5.33 10 10.2 7.69 15.4 10.7 9.89 5.14 6.24 9.11 11.5 9.55 7.25 9.72 8.62 8.66 0.93 6.48 7.42 10.9 8.51 12.3 8.16 10.4 11.6 4.03 10.4 10.6 9.51 11.4 8.3 8.89 8.88 10.2 5.87 13.3 9.19 9.08 10.2 8.18 9.08 11.8 5.86 8.26 5.66 7.38 5.84 8.37 8.48 10.3 8.78 11.2 5.39 9.54 9.76 10.7 8.08 9.58 9.38 7.94 8.47 8.71 9.38 6.28 7.91 6.79 3.26 11.4 10.5 11.2 10.8 12.4 11.2 10.9 10.2 8.76 7.81 8.36 10.7 9.93 9.89 9.23 6.85 9.28 10.3 11.2 9.65 11.3 8.43 7.14 4.41 10.7 8.01 10.5 10.3 5.33 8.16 12.5 10.1 6.62 9.86 9.34 10.1 9.31 10.2 10.2 11.6 10.5 7.25 5.23 10.5 9.78 8.68 9.62 5.61 10.8 0.54 8.81 9.41 11.4 4.61 10.2 11.1 5.1 9.31 8.96 10 9.64 11.6 9.65 7.21 11.6 8.08 7.62 9.13 4.94 10.8 2.87 9.66 4.25 9.2 5.25 7.27 12.9 1.23 9.61 2.05 10.2 9.46 4.96 0.54 10.2 0.93 5.75 7.07 10.2 8.91 11.5 7.64 12.6 7.41 7.28 11.5 1.7 4.22 0 4.98 11.6 9.06 8.71 2.32 9.11 8.94 2.57 9.89 10.2 9.29 6.58 5.96 5.98 6.59 9.45 7.91 8.01 9.91 9.79 2.34 7.44 8.84 10.5 7.72 10.9 0.93 7.08 9.13 9.42 5.62 9.6 9.89 7.12 2.24 8.8 6.55 10.1 9.38 8.16 10.5 11.4 8.21 7.25 9.99 9.87 14.1 7.2 9.42 9.57 4.07 4.11 4.96 9.18 11.2 9.7 11.2 9.5 10.8 9.31 4.81 7.44 9.63 9.59 10.2 7.83 7.92 7.36 9.34 8.35 9.98 4.11 1.49 6.37 9 5.57 8.9 1.49 9.46 1.23 12.7 8.12 9.3 8.48 5.75 9.43 4.18 6.74 11.2 13.5 11.8 10 5.19 10.8 2.92 10.7 12.1 7.01 11.3 3.19 6.18 6.35 0 8.87 2.68 11.5 8.75 7.57 11.8 9.22 8.98 10.8 0.54 9 6.55 2.05 5.77 7.39 0 10.2 9.8 9.14 2.96 5.96 2.78 7.56 10.2 8.31 10.7 0 11.5 9.27 8.35 5.81 8.34 10.7 12.9 10.5 11.8 9.97 4.86 10.3 9.97 3.26 4.5 8.78 0 8.39 9.01 4.94 10.3 11.3 8.75 12.6 8.48 8.81 11.3 1.7 8.76 0 3.99 10.1 6.4 8.94 10.4 11.9 2.57 1.49 12.5 9.68 9.69 12.7 1.19 4.5 11.1 6.08 11.4 4.07 7.91 7.26 6.73 9.11 10.5 9.78 2.57 8.85 11.5 4.81 9.52 9.21 5.99 1.23 12.2 6.81 10.3 11.6 8.31 9.24 6.86 6.94 7.23 7.47 7.57 15.5 5.19 8.38 11.3 0.93 7.23 8.15 4.18 9.03 9.89 3.86 0.93 7.48 8.47 6.88 4.87 5.67 8.75 6.28 7.36 9.03 11.1 2.78 9.3 0 7.92 10.7 8.9 9.33 9.44 10.9 8.93 4.28 6.18 10.9 7.86 0.54 5.55 2.34 1.49 0.54 9.46 10.4 3.86 8.75 10.4 4.32 3.95 6.76 9.64 1.23 9.32 11.1 2.96 8.21 9.31 10.4 10 10.6 9.04 9.7 11.7 10.3 12.1 9.25 8.52 7.8 8.82 9.15 2.57 1.89 5.67 4.61 6.31 9.08 8 8.21 2.2 3.67 10.5 3.62 3.51 7.88 8.35 8.54 8.09 6.94 2.96 9.06 0.54 6.26 8.47 11.4 3.11 10.9 8.91 11.1 9.89 3.51 11.1 14 8.48 11.2 12.3 9.14 9.38 9.62 9.55 13.7 5.38 6.05 9.88 9.77 8.03 3.39 8.68 7.14 10.6 5.42 5.97 6.68 10.8 11.5 9.71 9.64 9.01 7.71 8.26 10.5 6.44 11.2 8.95 0.93 12.4 9.66 11.2 8.29 9.35 11.1 1.23 9.95 7.29 10.1 5.96 9.74 11.2 6.06 8.12 12.9 9.5 4.5 12.6 11.3 17.5 1.7 10.3 12.9 12.8 8.9 8.23 13.3 9.57 9.05 0.93 9.87 11.1 3.77 10.9 4.18 3.81 12.7 3.19 6.89 9.21 11.9 11.9 11.9 12.1 10.5 11.1 9.35 1.7 2.78 3.94 1.49 11.3 4.47 10.2 13 5.93 7.28 4.58 4.64 9.95 4.92 7.65 1.7 8.91 5.87 8.39 9.15 2.57 7.7 1.23 1.23 4.58 6.04 5.21 9.89 5.36 8.09 6.48 5.48 6.73 3.39 0 8.83 11.9 7.45 13.4 10 4.66 10.2 6.16 8.04 6.08 7.2 9.94 7.26 7.43 7.55 9.02 5.04 9.53 3.83 6.96 3.9 5.55 7.65 9.11 5.28 7.17 6.17 10.7 1.49 8.64 2.46 3.19 3.32 7.81 3.45 2.96 0.54 12.2 8.22 5.66 5.86 8.65 5.25 8.29 6.7 0 2.95 2.2 9.45 1.49 6.93 0 8.84 0.93 6.09 0 4.98 10.9 11.2 6.75 5.38 4.4 9.19 4.07 7.39 5.08 8.38 2.05 1.89 4.67 12.1 5.97 8.14 3.81 6.82 9.56 3.62 9.25 4.64 7.46 6.12 2.05 7.54 7.29 8.24 0.93 3.26 10.9 8.34 8.3 9.52 3.81 9.25 9.22 0 5.77 6.42 3.39 6.47 3.77 8.86 3.32 9.45 9.25 4.22 0 1.23 4.44 6.86 0 1.7 1.89 9.22 0.54 0 4.28 12.2 10.5 7.22 6.13 9.35 6.42 4.94 0 8.2 8.42 3.39 0 9.4 5.02 10.2 0 12.9 3.95 5.86 6.61 8.21 7.86 6.44 4.67 0 6.59 4.79 5.3 2.78 6.18 13.2 0.54 7.47 8.09 5.51 8.11 2.87 4.22 5.98 0.54 1.49 1.89 3.32 1.23 9.24 6.91 6.2 7.93 9.29 8.96 5.69 9.12 8.29 0.93 3.77 0.93 7.05 4.38 7.92 8.02 7.07 0.54 5.36 6.99 8.16 3.19 8.17 6.55 4.88 0 5.45 0 1.23 4.5 0 8.92 2.2 2.2 2.46 8.4 0 7.37 4.14 8.6 9.16 7.4 2.78 3.11 5.69 2.46 7.91 8.69 9.43 8.25 9.63 2.57 10.1 12 1.23 7.58 7.69 7.8 5.3 10.1 8.27 0 5.28 10.2 9.91 11.2 5.91 8.27 1.89 9.93 3.9 6.76 10.8 8.41 8.54 10.3 7.85 3.11 2.46 5.06 10.7 2.2 8.44 0.54 3.26 5.25 6.16 8.97 10.2 8.43 9.42 0.93 10.7 3.39 0.93 6.55 5.1 6.13 8.17 9.74 2.34 8.7 9.27 3.67 6.85 10.7 6.83 5.33 7.41 1.49 3.06 0.93 9.53 4.13 4.53 6.83 1.89 3.91 8.93 2.05 2.78 6.53 7.42 7.33 5.97 3.9 1.23 4.81 3.56 4.86 4.58 8.04 7.27 1.49 3.45 8.45 8.95 5.55 2.57 2.96 8.73 4.92 6.05 10.1 9.93 2.57 1.89 8.43 3.45 2.71 4.53 8.58 8.3 7.78 3.56 5.85 9.84 7.82 8.89 4.56 4.32 5.66 7.85 0.93 2.68 7.9 5.35 5.93 9.51 1.49 13 8.79 11.6 11.2 9.58 4.79 11 2.05 10.8 12.1 9.91 6.88 11.5 10.9 10.7 10.4 7.76 10.8 8.72 9.45 9.04 8.15 8.28 9.2 13.5 7.79 11.4 10.7 3.95 7.79 1.89 9.83 9.08 7.33 7.29 11 9.38 10.5 9.77 9.62 9.7 8.85 7.94 9.88 9.63 8.29 8.58 11 8.41 10.4 6.22 9.16 6.18 11.1 8.56 7.22 12.6 6.38 5.25 11.3 7.84 2.34 8.47 9.19 10.2 5.04 10.5 11.4 5.59 9.22 7.22 9.83 8.81 12.1 7.52 9.79 10.7 9.1 7.79 9.92 10.8 8.12 8.43 9.48 7.38 10.9 10.2 8.96 9.44 6.66 11.4 8.76 2.2 6.19 7.69 9.93 8.26 9.54 9.04 8.81 11 9.44 10.3 10.3 9.72 8.52 10.6 13.8 8.18 6.28 9.55 2.05 9.5 10 10.2 9.97 2.46 4.18 7.15 8.63 11.6 6.91 6.15 8.29 3.56 0 2.34 5.58 12.2 8.73 5.92 14.1 3.04 10.7 13.2 10.4 11.2 13.8 10.2 9.28 9.48 9.7 8.5 9.62 9.76 8.29 4.07 11.4 8.71 8.27 7.71 9.66 7.49 9.6 7.93 8.05 8.72 11.1 8.42 9.13 5.86 7.37 8.74 11.9 12.5 10.9 10 0.54 11.2 9.93 4.35 8.7 9.8 1.49 9.83 11.5 2.2 7.45 8.78 1.23 8.14 10.1 4.5 10.3 5.75 10.4 0 3.72 7.68 7.79 11.5 2.68 12.1 12 10.5 1.89 7.1 3.26 8.44 8.03 0.93 2.57 9.57 12.1 9.01 4.25 9.81 10.5 8.25 7.87 10.6 9.23 10.7 5.62 11.5 0.93 10.6 5.31 10.6 7.26 7.19 9.31 9.47 2.96 9.14 2.87 8.81 7.88 9.22 8.35 10.7 8.5 10.3 8.73 5.3 12 7.96 9.32 13.5 9.06 5.84 3.45 5.12 8.64 2.87 10.5 7.94 7.3 2.2 3.67 8.84 9.26 5.71 8.8 8.79 4.61 12.8 8.83 11.7 7.95 7.91 10.8 1.7 8.94 7.08 10.5 9.64 9.32 11.1 7.7 9.61 9.44 11.4 12.3 6.95 8.01 6 10.1 1.89 8.62 3.62 11.3 6.35 1.89 10.3 7.31 11.9 8.21 3.27 9.52 0.54 12.2 9.69 8.81 1.49 4.47 9.91 3.62 4.11 2.78 12.6 7.67 10.6 0 1.23 0 9.34 5.44 0 8.25 11.9 7.33 11.4 11.6 13.3 11 10.8 4.56 11.9 10.7 10.3 1.49 9.72 3.45 4.28 4.69 9.63 9.92 10.3 10.5 1.23 1.7 0.54 2.78 9.21 2.87 11.3 7 8.63 6.03 11.6 9.9 10.6 2.2 11.7 13.4 9.94 5.67 7.05 12.2 11.7 9.5 6.55 12.4 1.89 9.31 4.76 10.9 5.35 4.03 6.24 6.29 9.72 5.3 7.99 7.43 5.28 9.35 5.99 8.02 9.55 10.3 10.8 9.26 11 9.93 6.72 12.1 7.9 10.9 8.97 10.6 11 9.9 10 10.3 12.1 6.55 10.2 11.9 4.56 7.77 13.6 12.7 13 8.87 8.7 9.3 7.76 3.94 12.2 11.2 0 9.61 7.36 9.88 7.51 12.7 11.2 9.15 7.47 5.66 11.1 11.8 8.25 5.62 10.3 3.03 5.94 3.45 7.55 9.41 7.57 6.79 12 9.1 4.96 10.3 11.6 8.81 10.6 10.1 10.2 2.46 3.62 8.66 9.11 15.1 7.88 0 6.99 8.68 11.2 8.62 3.62 6.97 0 8.27 5.36 11.4 0 9.85 11.5 8.45 13.5 10.1 12.4 11.7 10.8 11.2 11.7 11.6 13.5 0 11.4 12.9 9.31 4.03 3.62 11 11.1 6.78 6.38 7.35 5.21 9.22 7.43 5.77 2.87 4.92 1.49 5.89 9.66 8.44 6.76 7.1 5.69 6.57 3.26 0.54 11 8.96 10.3 9.46 9.03 9.65 0.54 10.6 1.23 5.26 1.89 0.54 9.64 10.7 0 4.74 4.14 9.64 1.49 4.18 10.1 11.3 9.57 9.96 10.8 6.59 3.62 10.4 11.1 11.2 9.35 10.5 9.19 2.57 4.71 4.98 2.46 10.3 11.4 8.12 9.38 6.55 11.8 12.1 13.5 11.3 6.1 7.99 10.4 14.2 10.7 7.24 7.65 14.4 12 12.3 5.72 3.57 14.1 9.29 15.1 12.2 14.3 10.5 11.7 8.31 13.9 5.95 3.67 13.6 10.7 9.36 0.54 3.39 8.61 6.87 2.2 0 5.06 9.52 11.1 7.31 11.6 9.21 4.81 5.16 5.41 1.23 1.23 10.7 9.27 3.72 3.56 0 8.48 3.11 2.87 6.13 1.49 2.78 1.23 6.15 6.33 10.4 7.05 2.57 7.31 7.73 9.48 4.18 0.93 0 7.26 6.23 6.85 10.7 4.71 8.16 7.04 4.41 8.16 7.9 9.13 8.93 10.8 10.5 7.7 8.67 6.09 7.82 4.98 1.7 7.9 6.74 0.54 2.87 7.79 7.78 5.48 0.54 9.18 6.38 3.77 5.67 4.4 2.78 4.56 8.09 7.55 8.5 10.5 9.98 1.49 5.75 10.1 8.63 4.44 2.05 7.31 3.26 10.7 5.72 0.54 4.81 5.67 9.17 8.5 8.77 1.89 9.29 2.05 6.28 2.2 6.43 1.89 0 7.58 1.7 7.65 3.62 9.9 8.56 5.81 5.7 1.7 9.37 6.14 10.3 8.71 9.26 6.62 7.3 1.23 7.72 5.47 8.08 0.93 8.4 6.13 2.46 0.55 0.54 7.76 0 10.1 8.38 10.9 10.1 10.3 11.7 0.54 4.86 5.21 11.4 15.9 2.87 7.59 10.4 1.7 8.89 0 0 6.13 6.96 9.95 0 9.6 5.57 4.71 5.96 1.23 7.05 2.96 3.67 1.23 7.23 5.35 3.19 8.03 1.7 8.36 10.6 2.68 4.22 2.2 1.23 2.96 8.89 9.4 6.88 4.18 8.79 0 5.21 7.42 8.92 0.93 1.7 3.04 3.99 2.2 3.9 2.05 10.5 5.21 8.28 12.6 7.06 9.25 8.39 0.93 4.28 9.98 3.39 9.71 5.23 5.23 0 5.3 2.87 4.25 0 5.06 3.26 1.7 4.98 2.46 7.9 0.54 2.46 1.89 9.86 2.05 9.87 0.93 4.18 10 6.68 2.87 2.57 9.01 0.54 10.7 6.72 10.9 8.21 10.1 12.4 6.54 6.16 7.93 16.2 7.8 4.38 8.13 12.1 9.37 0 10.2 3.56 5.42 2.46 10.9 9.9 2.78 9.19 11.8 0 6.32 11.9 7.03 0 7.12 6.06 2.46 8.78 13.1 6.42 11.6 7.71 2.78 3.11 7.73 4.6 5.5 3.11 7.92 8.05 16.2 9.61 8.44 2.2 8.59 5.26 9.72 6.84 2.78 9.37 0 4.53 10.3 7.2 0 1.7 5.74 6.38 6.36 7.96 2.57 0 1.89 8.6 10.2 10.1 6.03 7.83 8.84 6.16 7.45 3.67 1.7 6.15 6.31 6.86 9.13 0 7.62 6.7 6 10.2 5.59 5.16 7.12 0.93 1.23 11.2 1.49 0.54 5.18 7.72 8.23 2.46 8.6 4.56 0.93 3.9 2.05 10.4 4.91 8.65 12 10.6 6.24 3.51 9.95 6.34 5.51 3.04 7.11 1.7 5.63 10.9 11.1 12.5 5.77 11.1 9.36 4.07 8.27 9.94 7.69 5.69 8.11 6.88 6.47 7.12 6.73 0 5.08 9.37 5.72 10.9 9.36 8.68 8.55 10.3 10.4 2.57 1.23 11 11.9 11.6 7.14 11.7 11.4 10.8 6.3 9.8 8.16 1.7 9.01 9.2 4.35 7.81 10.4 7.93 6.52 6.25 4.74 8.68 10.6 8.09 3.45 11.4 7.68 10.8 9.71 2.78 7.78 0.54 7.39 6.9 6.86 12.8 7.57 14.3 8.8 9.79 7.79 8.54 10.4 12.2 0 5.36 9.43 0 1.49 5.45 12.1 6.73 4.44 10.4 8.65 12 1.89 8.87 11.6 10.3 6.98 11.3 9.14 11.6 8.71 7.07 11.4 8.1 11.5 14.7 13 10.1 9.56 5.93 10.4 8.13 10.4 3.62 5.94 5.92 6.07 6.23 4.03 0 10.8 7.99 10.2 8.23 3.56 8.71 5.02 0.54 4.03 1.49 5.26 7.84 7.88 5.85 6.42 6.3 7.55 7.64 8.41 0 2.05 8.41 8.56 9.29 3.32 8.08 3.86 5.58 10.6 8.43 4.14 8.84 7.97 7.47 7.1 0.54 8.36 0.93 8.77 9.13 13.6 9.93 9.78 5.96 11.2 4.07 10 8.85 3.32 7.04 2.34 8.48 8 7.22 4.74 0.93 0.54 3.9 10.6 6.65 7.43 6.6 4.64 10.1 5.61 9.16 7.47 0.54 9.18 4.28 2.87 4.15 1.23 7.23 12.8 5.58 1.89 10.4 7.74 8.04 2.05 9.2 11.3 3.97 0 7.28 10.6 11.8 6.04 0.54 9.82 1.7 1.49 6.2 6.56 10.1 1.23 9.4 12.6 4.66 4.56 1.89 0.54 6.76 6.42 11.7 1.89 7.04 11.8 2.87 2.87 7.01 4.56 6.8 12.1 8.5 0.54 6.78 8.68 0.54 3.67 11.6 7.61 6.59 4.41 11 0.93 8.62 9.56 11.5 10.8 12.3 9.71 12.4 8.7 0 0 0.54 11.1 0.54 0 11.1 0 5.3 10.5 3.51 7.26 4.53 2.35 2.87 0 11.4 5.59 5.12 9.4 10.6 11.6 11.1 9.96 7.1 9.71 6.62 12.5 11.7 10.1 2.46 0.54 4.25 8.19 0.54 9.9 7.47 4.07 13.3 6.02 6.99 8.81 1.49 5.35 11.6 6.01 4.74 3.98 8.82 4.25 0.93 4.22 8.6 3.04 6.54 6.81 11.1 9.14 4.71 0 6.22 3.32 4.53 9.65 9.71 1.49 9 3.51 5.57 1.49 11.7 0 3.98 3.56 3.26 9.22 7.51 1.48 4.92 9.2 2.31 4.5 10.3 8.42 0 12.9 0.93 9.8 6.15 7.86 7.58 5.95 1.23 4.83 2.34 6.38 6.17 5.48 3.72 5.38 8.32 7.45 9.6 4.98 8.99 6.93 0.93 12.3 2.34 6.51 7.55 7.54 7.44 7.39 5.98 6.78 2.96 1.89 2.34 8.68 5.1 1.49 7.33 10.7 5.87 0.54 5.5 8.11 4.61 7.08 6 7.32 9.05 0.93 8.26 1.49 4.61 8.93 3.67 7.19 8.41 7.06 2.2 8.86 11 11.6 0.54 7.35 1.23 6.62 8.23 5.02 3.72 7.92 0.54 4.66 7.17 1.23 5.82 8.69 7.58 10.1 1.23 12.6 6.78 4.81 10.3 1.49 1.7 1.23 3.51 8.12 15.7 5.18 7.85 2.2 9.16 0.93 8.21 1.89 1.66 8.4 1.23 9.65 0.93 8.54 7.09 7.64 6.01 0 2.57 7.57 0.54 4.5 9.05 5.97 2.46 7.93 8.25 8.08 7.81 8.95 9.44 10.7 3.04 11.1 1.9 11 0 13.3 3.39 7.73 6.05 11.3 13.5 6.49 5.19 11.3 12.9 12 0.54 0 5.02 11 6.98 10.8 2.57 0 10.5 8.98 6.97 5.72 0 8.65 7.95 1.23 11.6 10.7 11.6 11.9 6.6 0 11.8 9.83 8.58 13.1 2.05 9.12 14.4 13.4 0.54 9.02 8.36 10.4 0.54 7.01 9.94 8.33 5.23 7.7 9.25 11.5 11.3 10.4 9.03 11.1 4.88 1.49 7.08 10.2 6.13 6.03 6.39 7.7 7.25 10 9.53 12.6 4.66 3.94 3.63 9.92 5.74 7.28 7.35 7.33 11.2 3.72 8.62 5.36 10.4 6.5 0.93 7.11 11.1 11.1 13 9.03 9.06 7.82 5.58 3.19 0.54 6.41 10.9 6.58 10.4 9.9 6.82 0.93 5.25 6.82 2.31 8.33 7.29 0 5.93 1.89 2.46 6.16 7.55 3.04 1.89 3.99 1.49 9.5 3.77 8.48 7.25 2.87 3.39 10.2 4.03 3.62 2.57 10.3 4.61 7.86 4.32 4.61 4.79 5.85 0.54 6.59 0.54 2.68 9.46 11.3 4.28 7.66 4.25 6.07 3.19 5.17 1.49 2.46 2.57 4.3 9.6 2.78 9.82 8.06 0.61 9.11 10.6 0 6.52 7.79 8.11 5.06 6.73 8.8 6.42 9.61 7.52 1.7 9.38 2.34 0 4.05 1.23 7.7 7.5 6.59 11.3 9.81 3.26 0 3.72 7.61 10.8 7.83 2.87 5.02 3.81 10.5 0 1.7 7.88 1.23 5.26 10.2 4.86 7.81 0.54 8.3 10.9 13.6 0 11.5 5.55 10.2 12.2 8.65 8.85 6.57 7.34 3.86 5.65 12.4 11 2.57 7.39 8.56 8.52 11.4 8.88 9.89 2.34 10.2 5.36 0 10.8 11.1 12.8 10.6 5.36 4.5 0.93 1.89 10.8 6.13 11.2 12.1 4.07 4.03 6.96 7.95 11 2.57 8.67 5.33 9.88 8.21 11.9 11.9 11.4 6.46 5.93 3.51 5.33 8.19 11.4 10.6 8.88 6.89 8.09 11.8 9.64 10.8 9.55 9.7 7.34 10.1 5.16 10.9 11.1 0 7.95 10.2 8.25 8.07 2.57 3.32 10 9.56 13 11.4 8.36 10.4 10.7 9.39 9.31 13.2 14.2 13.5 13 10.7 11.5 6.52 10.4 10 5.83 3.51 11.5 3.45 2.05 7.07 2.05 3.28 7.73 8.83 4.53 14.7 5.81 2.52 8.7 8.8 4.58 9.98 8.04 9.31 4.53 11.7 11.4 1.23 10.3 10.6 6.62 8.65 12.9 9.6 1.23 1.49 12.8 8.62 9.8 10.3 8.22 8.25 10.3 13.6 3.11 4.38 11.8 0.54 11.6 11.3 13.8 10.4 10.1 9.83 9.89 9.89 12.1 11 5.57 9.24 12.1 11.1 1.49 9.42 9.7 6.3 8.73 10.7 9.45 9.84 9.8 9.07 5.92 1.23 8.77 5.82 7.14 9.23 7.55 8.71 10.2 11.3 12.7 7.52 10.7 9.17 6.26 9.14 9.15 7.91 6.98 12.2 1.49 9.72 10.8 7.05 10.6 13 5 8.5 12.1 6.35 2.2 7.13 7 8.2 6.58 11 6.97 9.94 7.65 9.57 11 11.8 10.9 11.1 10.6 2.46 8.98 10.6 12.3 7.95 9.84 1.23 10.8 0 0.54 0 5.08 3.45 7.47 10.3 5.12 11.4 6.6 2.2 7.3 7.4 2.34 7.13 7.44 6.1 10.4 2.57 9 9.83 1.23 8.37 11.2 10.2 9.49 8.92 4.03 3.51 10.1 9.88 4.64 6.77 9.84 5.1 7.49 7.49 10.5 2.46 0 10.2 13.8 0.54 5.94 5.42 9.88 8.94 2.96 1.89 10.5 6.57 5.65 3.11 7.74 7.23 0 4.35 8.79 6.36 5.86 10 10.3 4.88 7.12 3.86 4.51 6.08 3.04 12.5 6.69 4.11 8.94 0.93 9.68 4.07 1.7 8.62 3.62 0 8.01 9.31 0.93 1.7 7.13 3.45 0.93 9.82 13.8 4.86 3.56 0 8.25 7.97 8.56 7.15 11.4 5.36 6.99 5.28 6.16 6.61 10.2 4.28 7.87 6.53 6.16 7.66 7.81 5.63 3.19 4.19 6.16 1.7 3.95 7.13 9.65 3.77 4.74 0 2.34 3.19 2.05 2.57 9.14 0 9.23 6.38 6.16 5.7 3.99 3.77 4.58 10.2 0.93 0.93 0.93 0 3.81 4.56 6.9 0.93 1.89 8.09 7.07 2.87 2.34 12 6.97 8.74 7.53 1.89 5.9 11.4 7.81 7.36 2.96 8.31 6.6 1.89 9.66 13.2 8.26 7.04 7.23 4.03 5.74 6.38 1.89 0 3.45 5.18 8.25 7.9 5.83 8.12 5.87 9.58 9.28 9.04 7.9 7.47 2.34 10.8 9.2 8.76 3.62 0.54 0.93 10.4 9.67 6.36 9 10.2 10.7 7.85 9.29 0 6.43 3.99 0 1.7 0 9.17 2.68 7.6 10.4 11.5 1.49 3.45 14 12.2 13.1 11.2 1.7 6.9 12.8 11 3.04 12.2 9.9 9.21 11.5 3.86 10.5 9.32 4.53 9.4 11.2 8.18 10.3 8.91 10.9 11.1 10.5 10.6 12.9 10.9 9.72 9.19 11.6 6.51 12.1 8.49 10.7 10.9 11.9 9.48 12.9 0 8.56 7.86 9.81 12.3 10.7 9.88 5.94 6.82 7.76 13.6 7.85 11 8.96 9.63 10.7 11.2 12.1 10.5 9.66 9.67 3.56 10.1 10.8 9.69 9.13 10.6 9.4 10.4 11.6 9.58 9.71 10.4 11.7 10.9 9.71 9.99 10.4 10.8 10.5 10.7 9.97 10.8 9.24 9.82 9.91 9.8 10.1 11.1 9.09 9.42 8.15 13 12.2 11 9.23 12.5 7.14 7.27 6.98 8.81 0 1.49 11.8 12.7 8.48 10.3 3.39 7.26 7.53 10.2 10.6 13.5 9.82 7.86 9.68 7.27 5.23 8.4 8.27 7.37 1.7 13.5 14.3 11.4 8.99 11 7.33 10.8 9.43 8.64 11.3 8.23 7.84 8.72 7.9 8.24 9.59 9.87 0.54 8.75 8.77 8.98 7.16 6.19 11.7 14.8 8.3 10.5 10.6 4.25 8.76 4.41 9.4 11.3 5.98 7.85 5.23 10.2 10.2 11.9 10.5 11.3 7.5 10.7 8.01 1.89 9.06 12.3 10.1 9.75 9.64 10.4 9.21 10.2 8.92 12.4 10.4 7.94 0.93 10.5 2.87 8.4 8.34 10.3 6.19 11.3 3.11 1.89 12.8 9.3 10.5 3.95 7.5 13.8 8.93 11 8.27 12.8 11 8.19 2.96 10.6 7.96 5.61 2.57 11 10.6 9.78 9.49 8.04 12.7 8.96 9.13 4.53 5 11.4 10.2 6.91 1.23 2.87 9.47 13.3 11.9 13.2 9.44 10.8 12.7 12.2 8.59 2.34 9.42 9.23 9.89 9.57 0.93 9.58 5.2 4.14 7.05 8.91 6.26 11.6 7.78 0 4.11 11.5 9.51 9.32 4.28 3.19 0.54 14.1 12.2 11.5 9.57 9.65 2.87 11.6 8.64 8.25 1.7 2.96 6.27 7.88 2.2 2.34 10.3 10.9 13.5 5.62 7.41 8.94 10.1 7.96 2.78 7.48 3.77 9.17 12.4 8.87 7.91 6.53 2.46 0.54 10.3 7.25 8.89 3.9 1.23 5.16 1.89 10.9 10.2 7.22 6.03 8.72 6.48 5.63 3.9 3.26 4.11 7.32 8.03 13.5 7.11 8.19 10.9 1.23 1.23 5.57 13.5 6.52 11.5 5.39 12.2 10.9 9.36 5.53 11.2 9.19 7.44 5.69 8.38 7.69 12.2 8.62 10.8 11.2 0.93 9.54 13.5 4.25 4.79 10.2 6.67 10.2 4.33 10.1 8.01 3.26 10.2 10.3 9.84 11.4 7.52 13.7 7.41 7.82 11.3 9.41 4.58 7.73 6.33 6.77 10.8 12.2 11 11.4 10.4 11.3 8.97 9.35 2.68 3.81 3.72 8.87 2.46 8.62 11 8.9 5.28 13.7 13 9.71 9.27 11.4 10.8 11 10.9 9.88 11.4 12.8 6.86 4.86 13.2 5.57 2.58 4.71 7.9 9.32 10.5 11.6 9.61 10.4 10 8.09 7.45 7.49 8.62 8.79 10.2 7.97 8.56 9.73 7.79 7.95 10.4 7.82 11.1 8.12 8.6 8.88 9.06 8.75 10.2 6.24 7.72 11.1 7.52 10 7.07 10.4 9.69 9.75 10.4 10.5 7.6 10.3 7.99 7.32 6.05 10.1 6.38 7.11 9.78 10.1 9.43 9.68 9.86 10 3.56 7.58 8.89 8.42 8.64 8.57 7.96 9.49 7.76 11.1 7.54 9.22 9.98 11.4 11.7 10.1 9.94 9.68 10 2.05 6.6 0.93 11.2 6.49 7.02 9.83 9.14 12.3 8.16 9.85 9.65 9.23 8.55 10.8 10.7 9.58 7.65 8.67 8.37 9.86 7.41 11.8 10.6 11.6 9.86 6.82 9.29 10.3 9.41 8.79 8.94 9.8 8.21 12.1 7.02 8.33 10.2 11.5 9.99 10.2 2.46 8.38 7.13 8.22 8.32 11.2 9.94 7.72 8.77 7.52 10.3 8.94 11.8 10.1 11.8 8.81 12.3 7.61 11.6 2.2 8.29 8.31 8.75 10.1 10.9 10.1 9.7 7.59 10.2 8.8 8.45 6.75 9.78 10.1 8.1 6.89 8.23 5.94 9.62 12.8 9.55 9.32 9.22 9.57 10.3 10.7 7.92 10.4 7.15 7.55 8.41 8.82 7.13 6.95 9.27 10.5 9.27 6.09 8.56 4.53 2.34 2.2 6.29 9.35 12.3 9.92 7.86 7.78 8.03 9.32 10.3 8.54 10 1.49 10.8 8.49 6.88 8.4 9.48 9.34 12.9 10.7 8.9 7.79 6.46 7.26 8.14 2.2 9.26 9.03 7.09 9.45 10.2 6.82 7.96 9.14 8.13 5.28 5.71 4.22 11.2 10.3 11.2 10.9 8.44 7.08 7.86 9.5 8.29 9.4 11.4 7.99 9.83 9.73 6.24 10.9 8.57 7.31 9.85 8.49 10.3 10.1 9.28 9.24 7.84 7.74 10.6 7.8 10.6 2.96 8.72 10.4 7.39 9.54 9.91 11.6 10.2 12.8 4.07 8.17 9.67 0.54 9.22 2.57 9.67 9.61 6.89 9.97 10.2 11.4 10.3 6.34 11.4 3.45 8.66 5.65 6.77 8.55 12.8 10.2 7.53 6.91 9.28 9.2 10.6 10.8 10.8 0.93 10.5 0 6.89 10.1 6.61 9.34 11.6 3.26 7.74 10.9 8.31 9.87 8.74 10.2 11.4 6.88 11.2 7.64 8.64 7.33 8.8 8.21 10.3 2.46 8.85 12.3 8.08 9.53 9.56 9.65 9.91 7.75 11.1 9.13 12.4 7.21 9.77 9.32 9.01 8.96 6.34 9.95 8.57 9.1 9.64 7.06 9.5 10.2 5.77 10.5 11.6 10.1 9.76 10 10.6 10.4 9.68 8.51 10.9 12.8 1.89 9.11 9.56 9.99 7.22 5.02 10.4 11.1 9.53 1.23 10.6 9.66 8.2 10.7 2.2 8.85 6.57 10.8 12.6 8.8 10.3 7.7 9.64 6.94 8.06 8.61 11.2 10.4 10.8 9.65 11.2 4.14 2.46 5.06 10.2 6.13 10.1 10.6 10.1 8.16 9.05 9.62 10.3 10.1 6.47 8.16 7.96 6.07 8.9 9.9 6.54 9.11 9.38 7.85 9.72 7.18 7.92 8.46 10.4 8.34 11.6 4.88 1.7 7.32 7.88 10.1 3.11 8.48 10.8 11.6 9.64 11.1 5.14 9.51 10.1 9.86 8.76 4.86 11.8 10.2 11.2 8.13 11.4 8.68 10.9 10.8 11.7 6.72 8.3 10.1 6.65 9.79 9.14 12.6 10 10.9 9.8 6.92 11.1 9.92 13.2 8.45 10.5 13.3 9.7 8.34 10.8 8.28 11.1 8.66 8.14 10.5 10.1 9.59 9.61 7.89 10.6 8.46 12 9.41 9.61 5.75 8.97 7.54 12.2 8.89 13.2 8.39 4.79 7.91 8.75 9.72 11.3 10.5 10.5 7.51 14.2 8.94 8.1 5.45 7.01 9.73 8.41 4.03 3.95 9.07 7.97 8.9 8.7 9.34 10.3 11.8 10.5 6.42 8.37 0 7 8.06 9.45 11.8 7.61 10.9 8.65 0 10.8 3.32 8.11 9.34 10.1 7.96 11.4 2.78 7.62 7.92 2.46 7.97 7.76 10.5 0.93 10.6 10.6 10.5 4.58 9.54 10.3 9.34 11.1 6.77 4.41 10.6 9.54 9.69 0.54 7.21 11 9.38 8.71 10.1 10.4 11.4 2.34 6.93 6.61 8.45 8.57 11.2 11.4 12.1 8.48 8.76 8.67 8.07 8.53 7.21 9.23 8.41 0 0.54 8.77 6.34 10.8 9.26 9.98 8.5 11.5 9.3 0.54 8.62 9.83 10.6 8.45 11.3 0 12.1 9.08 12.3 10.8 9.36 10.2 12.2 7.1 0.93 10.3 10.1 7.83 11.5 12.8 9.45 8 8.26 5.97 8.08 3.67 9.85 0.54 12.4 0.54 11.7 11.2 8.67 9.65 10.3 13.5 3.56 9.04 9.73 6.93 0 11 12.8 11.9 8.05 9.14 10.4 6.8 9.35 11.6 8.25 8.55 1.7 10.2 9.36 9.58 11.8 7.62 7.99 8.08 6.67 4.96 11.7 12.5 12.4 11.4 10.3 10.6 0.93 7.9 9.02 10.9 3.11 14 10.2 1.14 14.3 9.09 9.19 0 5.41 9.25 6.09 8.95 14.4 9.26 8.44 11.5 7.33 11.4 11.8 7.9 5.5 10.8 10.1 4.86 1.8 10.4 9.53 7.37 2.87 9.32 10.9 1.7 7.3 7.07 7.15 8.59 11.2 9.21 13.6 9.15 4.35 9.05 7.54 6.44 5.83 4.07 4.58 2.46 12.1 8.79 10.9 9.08 3.56 11.5 9.41 3.95 10.5 8.69 9.35 12 11 7.8 12 0 11.5 5.83 13.5 12.8 6.53 0.76 1.7 14 10.2 9.49 8.58 11.1 8.44 8.35 9.81 6.2 6.23 0.54 0.54 8.85 9.19 4.98 6.35 2.78 2.46 5.39 0.93 8.55 4.84 8.02 6.41 10.5 7.38 9.49 8.74 10.2 8.91 6.79 9.48 8.34 7.67 9.26 8.47 10.1 6.34 5.91 10.5 9.23 1.49 9.3 6.93 6.77 8.43 3.04 6.57 0 11.7 8.07 2.87 3.67 8.93 5.62 9.88 8.98 11.1 2.2 11.9 11.6 10.5 6.31 6.36 2.73 7.44 5.8 6.84 8.97 7.44 9.2 11.9 11.7 8.47 1.7 7.68 3.67 8.71 8.49 8.17 10.3 7.07 2.57 3.46 10.2 9 12 11.1 10.5 7.97 3.67 8.73 10.9 10.8 11 8.57 9.22 9.53 8.89 3.56 4.28 8.43 8.86 12.7 10.4 10.1 11.5 10.2 4.69 10.6 10 4.14 3.62 11.3 8.48 7.37 11.4 3.32 8.69 7.19 7.69 8.43 6.52 6.8 9.34 5.99 10.9 8.78 8.05 8.6 3.77 3.11 9 10.2 11.3 11.1 10.2 9.5 7.54 0.54 10.3 8.71 10.3 10.9 7.72 10.3 11.3 5.93 10.6 10.7 3.62 11.9 6 9.74 10.7 9.78 7.25 11.1 8.9 9.89 7.07 11 8.5 4.66 5.41 8.79 7.29 9.91 6.36 4.28 7.97 6.29 6.55 8.44 8.83 8.05 6.24 8.67 10.2 8.87 8.05 10.1 3.32 8.67 7.75 8.93 7.79 8.45 9.21 10 10.9 8.99 11.1 9.14 11 9.69 10.4 9.4 7.86 8.77 8.1 10.6 5.54 9.81 9.75 0.93 9.19 10.8 6.8 8.64 8.66 2.68 11.6 0.54 9.65 10.3 9.6 7.27 0 8.68 7.31 8.2 10.5 10.8 3.04 7.46 8.65 8.97 11.2 8.98 3.56 10.4 8.2 11.1 7.78 9.7 9.51 8.59 10 8.7 6.39 7.71 12.6 10.7 9.47 15.1 10.3 11.3 7.44 9.27 8.37 1.23 3.39 10.1 2.46 10.9 5.28 5.3 10.1 8.37 9.03 3.67 7.57 6.43 9.76 2.68 7.07 2.2 5.21 5.72 8.41 12.3 7.2 3.62 10 9.96 8.78 11.2 9.49 11.4 8.79 8.03 7.83 10.9 12.8 9.65 8.69 9.79 5.33 6.52 2.2 8.21 7.11 9.72 8.4 7.27 9.18 9.65 6.32 8.56 7.75 9.4 3.51 8.82 10.5 9.14 7.23 10.7 9.7 7.11 7.36 2.68 10.3 7.39 2.05 6.51 0 9.62 7.87 1.23 0 12.3 7 8.72 9.73 9.02 8.61 9.17 12.3 7.7 0.93 9.56 10.4 8.41 6.88 2.96 8.14 0 7.02 9.8 1.49 11 8.79 11 9.99 7.58 9.69 8.39 9.23 0.54 10.8 9.52 3.77 10.7 9.68 7.44 8.84 7.6 9.9 8.83 9.25 7.07 10.3 8.16 10.2 7.7 9.94 5.1 8.71 10.3 11.4 9.63 8.11 9.27 3.86 7.75 7.96 5.59 8.42 8.74 2.87 7.44 10.4 7.41 10.2 0 10.3 6.63 10.8 11.1 10.1 10.2 8.78 9.74 9.36 6.78 10.4 8.83 5.87 8.01 10.6 10.1 11.9 8.3 5.63 8.34 8.07 8.47 3.51 8.37 8.39 8.69 3.81 7.62 10.1 11.2 11.9 6.08 8.06 4.56 10.3 9.11 8.83 9.11 10 8.21 6.95 9.78 9.26 8.14 7.49 6.93 6.33 10.8 8.55 9.53 6.34 10.3 7.98 8.45 0 8.37 8.69 7.2 7.37 9.3 10.2 5.8 9.73 10.2 10.3 1.23 8.15 7.25 8.75 9.99 6.5 10.9 4.79 8.4 4.74 10.2 11.3 7.33 7.72 10.6 6.87 5.53 5.65 9.63 5.92 11 12.1 11.7 5.96 11.4 8.27 10.1 7.68 8.73 8.64 8.64 8.94 10.7 5.05 9.22 8.49 8.67 5.19 9.57 8.6 3.99 9.07 0 1.23 8.53 10.3 10.9 7.85 9.75 7.84 9.01 8.46 11.4 10.4 7.67 4.03 9.38 7.23 10.2 6.86 7.88 9.44 1.7 11.9 8.88 10.5 7.99 9.56 9.56 7.15 9.29 0.93 9.92 9.35 5.71 5.39 6.63 9.49 0 9.46 5.99 12.2 6.01 6.94 6.84 10.5 8.89 10.4 10.5 9.44 10.3 9.99 11.4 7.61 9.61 6.69 8.98 0 7.62 9.16 7.75 7.08 7.12 11.3 4.25 10.1 8.27 9.14 10.4 4.22 7.78 5.04 10.8 9.83 9.1 7.97 8.52 8.71 6.75 10.2 7.44 9.11 8.91 9.21 6.63 9.07 9.53 8.1 9.56 0.93 8.82 8.79 7.54 6.85 7.06 2.57 9.23 10.5 8.97 9.59 4.22 7.76 6.95 9.48 10.9 9.67 8.48 10.4 4.28 9.28 8.68 10.4 9.17 9.54 7.9 8.63 11 10.5 10.8 9.52 8.09 3.32 6.52 8.85 8.51 7.52 7.36 7.33 9.23 9.98 6.15 9.05 9.4 7.41 6.64 12.4 7.61 8.98 10.3 9.47 6.32 10.5 10.5 8.76 9.19 3.72 9.3 7.58 10.3 7.26 0 8.82 10.9 9.02 6.1 4.53 8.88 0 10.5 5.61 9.16 10.7 9.22 11.9 9.34 11.1 9.12 8.05 9.02 10.7 6.06 6.91 8.22 7.71 8.97 9.7 11.9 6.98 9.36 9.36 9.58 8.51 9.34 3.95 9.9 9.3 7.29 9.17 2.2 8.05 10.6 10.1 8.89 9.29 12 11.9 7.81 3.81 10.2 10.2 1.7 6.11 10.8 9.04 10.1 10.2 9.53 9.02 9.06 7.74 10.8 8.47 6.58 3.04 10.9 6.42 9.41 9.32 4.56 9.14 9.83 11.6 8.25 9.86 9.41 9.98 10.2 8.12 5.7 8.29 7.89 10 8.99 7.94 2.57 1.49 9.86 6.36 3.02 0 9.54 10.8 2.57 9.53 7.85 8.86 10.6 7.49 10.2 8.68 7.59 9.42 8.04 8.98 0 10.7 8.19 0.54 8.75 3.39 9.6 9.6 8.46 10.1 10.8 9.6 4.61 5.95 0 8.99 7.67 7.48 11.1 6.17 5.71 8.73 9.09 12 9.53 8.64 9.43 7.87 3.67 8.56 6.53 7.58 8.12 9.98 10.5 7.05 6.18 10.1 10.3 10.8 7.81 8.82 9.03 8.69 6.9 6.63 8.91 9.95 1.7 0 5.91 9.04 10.7 4.14 5.21 8.11 1.7 10.2 10.6 10.5 10.1 8.09 7.54 9.22 10.8 6.75 5.85 9.4 11.1 12.1 3.32 3.72 7.35 8.58 10.9 2.05 7.92 7.25 8.63 4.61 7.1 9.8 8.6 0 9.37 12.7 9.72 10.3 10.3 12.2 7.56 3.95 8.55 9.75 8.65 10.7 9.09 7.3 2.34 5.74 9.72 9.08 1.23 7.51 3.45 5.57 1.23 10.4 10.3 10.4 7.07 5.71 8.67 10.2 10.3 1.89 0 9.25 6.2 6.59 5.45 6.47 0.93 3.39 4.74 8.25 8.86 12.5 7.67 2.46 8.68 0.54 7.45 5.86 9.22 8.41 10.8 0 10.1 9.77 6.06 5.86 11.1 10.9 8.15 10.1 7.75 10.9 8.31 6.47 3.39 9.88 9.11 12.2 6.12 11.5 9.71 10.3 6.59 9.25 10.6 0.54 5.86 9.67 4.32 5.08 7.05 8.08 10.9 7.62 9.47 8.38 9.41 10.3 9.78 9.19 11.6 8.37 9.38 4.9 8.77 7.48 8.21 8.33 7.94 2.34 9.42 11.1 8.95 4.32 10.7 8.88 7.54 6.63 8.95 7.14 8.91 9.7 8.85 11.5 2.96 9.35 8.85 9.87 6.3 12.3 10.7 10 10.5 7.39 8.2 10.4 11.8 10.4 7.78 8.41 11.9 9.88 10.1 8.4 8.33 10 9.42 8.82 8.89 10.2 11.9 9.48 8.67 9.15 11.3 11.2 9.48 10 4.03 8.54 9.16 9.81 5.1 11.1 4.64 11.8 11.7 8.28 7.46 10.4 11.5 6.85 9.2 8.86 9.88 9.81 6.92 12 9.85 9.69 10.3 9.39 10.9 9.45 5.74 6.3 4.53 8.33 9.11 7.05 9.99 13.4 8.76 5.71 8.29 8.69 9.75 10.9 11 10.1 9.37 9 10.7 9.05 9.09 9.55 10.2 10.7 9.77 9.7 9 9.18 10.2 12.6 12.7 10.3 8.09 8.64 10.3 8.99 8.06 8.04 9.99 5.18 10.1 8.33 0.93 8.9 8.07 9.76 9.06 9.66 3.95 9.49 7.42 8.61 9.53 8.36 7.36 9.64 7.9 8.1 7.91 2.05 8.35 7.32 8.54 11.1 3.26 3.99 7.92 7.57 9.16 6.93 9.68 7.74 8.05 11.3 9 8.86 12.1 9.26 7.46 7.15 9.88 3.04 9.45 10.8 10.3 2.68 7.52 8.03 10.7 5.42 9.86 9.5 0 10.2 11.8 7.67 10.6 10.8 9.04 11 9.51 11.3 9.59 6.29 9.03 6.62 8.6 4.79 9.23 5.71 9.03 11.5 9.42 9.49 6.85 12.6 8.21 8.78 10.5 5.48 10.4 7.32 8.68 8.22 10.1 12.4 9.07 10.5 10.4 9.59 8.86 1.23 8.62 6.23 11.2 8.19 3.77 4.83 3.26 11.9 5.76 6.79 2.57 12.3 8.11 7.65 9.36 0.93 11.2 8.5 8.77 6.86 9.23 10.8 10.6 8.19 9.7 8.18 11.8 5.83 9.64 9.29 5.67 8.8 6.3 9.69 9.06 5.8 9.19 0 5.88 3.04 11.5 10.9 7.54 7.65 10.1 9.07 10.8 4.83 9.32 10.4 9.63 9.16 10.4 5.25 6.9 10.8 7.36 9.38 9.4 7.99 0.93 10.6 1.23 11 8.75 10.1 9.56 11.3 6.4 10.5 11 8.29 10.6 10.6 2.46 6.96 9.62 6.9 10.3 3.99 7.34 8.75 8.6 8.58 7.23 4.81 5.67 3.45 5.78 6.44 7.76 3.11 9.26 11.8 6.21 7.17 5.04 7.53 6.35 9.15 2.68 5.62 8.25 7.06 6.41 8.77 7.03 6.77 5.58 5.53 6.74 6.14 7.22 6.95 7.23 2.78 1.49 11 0.93 0.54 0 3.19 12.2 10.8 7.09 9.88 1.7 10.1 13 1.23 2.46 8.81 7.91 7.6 4.47 3.04 10.7 2.2 10.7 12.7 6.67 9.87 9.34 5.64 9.94 10.9 3.51 7.7 9.32 11.5 11.1 8.6 11.8 1.73 10.1 8.96 9.79 8.56 9.09 9.31 6.1 2.46 9 5.95 0 9.57 8.6 2.05 9.44 9.16 11.1 3.99 8.35 13.4 10.8 0.93 16.5 8.86 8.41 5.38 11.6 12.5 9.41 9.81 9.1 9.18 7.53 0 11.2 7.2 13.1 7.01 8.52 6.02 5.63 6.72 3.86 8.39 0 10.4 10.6 11.1 8.79 15.5 2.46 0 10.8 9.94 10.5 9.97 10.3 6.62 9.47 9.29 8.37 10.1 11.1 11.2 7.67 12.1 8.4 10 11.3 10.9 10.8 10.2 12.3 10.9 7.71 8.89 9.96 9.42 9.29 9.65 8.93 6.59 9.87 8.95 9.86 9.07 11.8 10.2 7.1 9.92 9.32 11.2 8.23 8.21 7.81 7.19 9.8 5.9 7.58 11.5 9.34 7.83 7.26 7.78 10.2 10 9.88 7.59 11 9.08 6.96 11.9 6.19 10.1 9.01 9 8.02 8.83 6.65 7.91 8 10.6 9.96 10.5 10.3 10.5 9.8 8.44 7.63 8.45 8.97 8.88 7.37 5.55 0 10.8 13.3 10.4 7.54 9.45 6.07 9.85 6.96 7.65 5.74 9.37 9.53 6.68 8.12 11.9 8.47 8.78 4.07 10 9.45 10.4 9.4 9.42 8.33 10 2.2 8.59 6.62 7.49 11.1 9.62 10.6 1.95 9 9.87 9.31 10.3 10.3 11.1 3.11 9.41 9.16 8.68 10.2 11.1 9.55 11.3 9.27 3.62 9.84 11.5 0 12.8 11.5 11.3 4.25 6.64 7.66 6.95 10.4 4.14 12.3 0 9.57 2.05 6.96 7.91 8.15 10.8 4.74 8.46 8.98 11.3 3.99 9.78 8.09 8.37 9.91 0 0 8.43 7.89 9.95 6 8.88 9.11 8.92 0.93 7.97 8.12 9.96 10.9 11.5 7.85 11.7 10.1 10.9 10.1 12.8 7.33 6.41 7.66 11.2 8.74 9.53 7.64 11.1 8.97 11.3 9.07 3.19 10.6 8.05 10.5 6.28 8.02 8.16 10.4 8.99 8.41 10.1 9.52 13.1 10.3 9.21 8.65 8.67 9.69 11.7 8.44 7.95 9.94 6.13 9.82 10.3 11.1 5.76 10.8 7.7 11.1 10.2 10.4 8.35 9.07 10.3 7.21 7.32 9.43 9.45 2.34 9.46 6.44 9.93 11.4 11.1 10.5 6.12 9.95 5.42 7.96 10.1 6.36 4.03 12.3 8.35 11.3 5.04 3.19 8.82 10.5 5.54 5.06 7.65 9.07 11 11.8 6.95 7.87 7.44 7.28 9.58 3.19 7.86 8.43 3.11 10.6 7.18 9.17 7.63 6.78 3.95 7.89 8.93 0 1.89 11 9.94 0 4.38 9.52 7.93 8.32 11.1 7.63 13.1 9.54 8.98 6.15 11 7.74 6.52 10.7 10.8 11.8 11.6 3.99 3.86 9.58 8 10.1 9.71 9.5 10.4 1.89 8.98 8.22 6.86 7.69 8.18 10.2 9.44 7.91 6.19 11.4 9.72 1.49 8.62 10.4 8.06 4.88 8.21 8.79 9.5 11.1 8.49 10.6 8.64 7.26 12.1 6.94 4.76 10.5 11 9.12 0.93 9.92 7.8 12.4 6.68 1.26 4.61 10.3 8.92 11.5 7.93 8.25 10.5 9.38 9.89 10.7 8.97 13.8 9.63 10.9 9.76 7.8 8.6 10.1 7.94 3.51 7.76 7.5 8.47 10.7 11.4 11 9.06 8.02 5.25 10.2 9.56 10.8 6.5 8.86 10.3 7.87 8.93 7.58 5.8 1.23 8.78 8.36 10.1 0.54 10.6 11 9.06 8.81 10.8 8.81 9.57 8.99 9.34 0.93 8.21 10.6 3.99 12.9 8.43 4.58 10.3 7.41 10.6 4.11 7.1 11.1 7.65 9.42 3.77 10.6 11.6 9.87 9.86 9.01 10.2 10.2 9.88 8.66 7.73 11.3 11.1 10.1 9.93 12.7 10.3 11.1 3.51 7.25 9.85 10.1 10.6 9.26 7.69 9.83 0.93 9.18 10.4 10.3 8.81 8.12 4.94 7.62 0.93 13.2 9.5 3.39 11.4 10.6 5.26 8.27 5.31 10.6 7.37 8.43 8.02 9.7 6.98 5.86 8.39 10.2 9.28 11.1 12.4 10.4 9.87 8.71 8.58 10.2 9.05 9.42 5.83 11.8 7.57 9.92 9.56 11.5 10.6 11.5 5.98 8.02 12.6 9.49 9.82 10.3 7.58 8.78 9.51 8.53 9.34 6.4 9.57 7.09 10.4 9.77 9.77 10.3 8.9 11.1 6.16 10.2 7.72 9.3 8.3 9.47 8.68 7.85 7.13 6.96 7.41 0 9.04 12.1 8.07 4.66 10.7 10.2 9.71 5.35 11.2 9.71 0 9.94 7.58 4.32 8.87 8.19 9.16 5.69 8.55 10.3 9.51 9.97 8.34 7.64 10.3 6.01 9.32 10.9 12.7 8.06 10.3 9.19 7.6 0 5.9 8.94 8.97 3.95 9.28 1.23 2.2 7.56 6.29 11.8 9.31 11.8 1.49 10.8 7.99 9.26 5.55 7.64 11 9.63 10.7 10.4 11.1 12.7 14.9 13.6 3.62 4.79 10.1 3.86 12.4 8.21 2.78 9.26 9.29 8.51 10.4 7.57 10.9 11 7.78 10.3 10.8 8.88 10 7.29 8.82 11.7 9.16 8.46 3.61 9.63 11.3 9.75 10.8 8.4 10.1 9.22 12.1 6.3 5.94 6.82 4.14 8.71 11.7 9.3 10.3 7.77 4.74 10.2 9.46 10.2 8.46 6 9.49 7.88 6.4 8.09 8.14 5.51 9.32 8.42 8.52 8.53 9.41 9.65 11.3 12 8.85 7.62 10.2 10.1 6.7 11 10.3 10.9 7.17 10.1 5.66 9.44 2.57 0.54 11.2 7.66 13 11.8 10.7 11.3 10.6 5.62 6.29 9.31 10.5 12.2 7.87 11.5 9.41 10.3 10.9 7.25 8.98 9.23 8.74 10.8 11.8 6.8 7.46 7.43 9.97 11.7 11.7 12.2 3.45 8.28 3.99 8.33 6.99 7.01 10.2 5.35 9.51 10.7 9.67 12.8 13.3 11.6 9.38 12.2 11.8 8.86 10.7 9.2 7.58 10.4 10.1 6.81 0.54 10.2 7.08 10.3 8.56 5.12 6.7 6.41 9.35 6.15 1.23 6.58 9.47 9.13 7.35 10.4 8.67 1.23 9.11 7.49 10.7 11.4 8.94 10.2 9.91 6.91 11 9.69 6.81 2.57 10.7 11.2 11 0.93 3.67 11.8 9.07 0.93 8.27 7.33 10.1 12.4 4.22 4.41 10.4 11.3 9.23 8.76 11.2 0.93 0 8.71 12.5 0.54 6.25 2.46 9.63 10.4 0.54 3.75 10.6 8.37 9.96 9.58 6.98 4.38 10.3 7.84 8.33 12.2 9.77 6.16 14.5 11 9.45 10.2 8.18 8.64 6.31 7.94 9.83 9.58 4.81 9.58 11.3 6.65 6.61 0.93 10.9 6.84 11.1 10.7 10.9 15.6 7.31 10.1 1.7 12.6 1.23 2.22 10.9 1.23 10 8.76 7.79 0 8.29 2.78 9.33 9.81 9.31 9.6 11 2.2 0.93 7.84 8.63 0 7.42 7.07 8.72 9.08 8.7 10.6 0 6.29 3.19 0.54 8.43 13 5.25 10.3 8.77 11 3.56 8.39 8.32 9.6 8.32 10.6 6.85 8.89 8.83 8.56 2.2 9.79 8.89 11.3 8.1 9.13 8.82 9.99 9.31 11 8.54 8.57 10.2 11.9 9.27 8.1 11.3 6.67 6.68 7.44 4.07 9.71 9.65 8.79 4.22 10.1 8.61 0.54 11 9.02 9.96 11.4 6.42 9.75 2.68 11.4 10.9 7.47 11.5 8.18 10.7 9.63 6.52 8.37 7.45 2.05 10.6 8.53 8.54 9.44 14.6 14.2 12.8 12.8 9.17 10.9 13.1 0.93 13.9 10.4 12.9 12.1 12 13.2 14.1 11.4 12.9 10.3 12.9 2.78 11.7 10.6 8.88 12.4 11.8 11 12.9 12.3 12.7 11.9 13.1 12.9 11.9 11.6 11 12.5 13.4 11.9 8.09 7.46 13.2 4.69 13.4 13.4 12.7 9.62 7.89 12.1 12.7 12 13.1 11.5 13.6 3.92 0.54 5.45 7.61 10 11.9 5.57 2.34 13.6 6.89 9.37 11.3 9.11 9.28 11.3 12.4 12.8 11.1 13.2 12.5 12.1 11.6 11.8 11.7 12.6 12.5 7.93 13.1 12.2 13 11.7 12.5 13.1 11.8 8.6 8.75 12.4 8.14 11.5 6.85 9.49 11 8.98 9.41 5.57 10.1 4.03 6.21 11.7 9.76 10.7 9.31 11 10.3 8.57 6.81 11.2 4.98 7.16 3.77 11.4 2.68 3.99 9.73 0 11.9 4.44 5.31 9.89 11.1 1.49 8.3 10.6 1.23 6.17 10.1 10.9 0 9.62 9.93 10.7 9.98 7.46 10.8 8.88 10.9 13 10.5 9.34 4.18 9.98 10.7 9.44 13.5 4.38 7.18 7.9 7.34 10.2 8.28 11.2 5.8 13.4 7.66 3.39 9.71 10.8 2.34 2.46 7.79 5.74 8.57 10.4 0.93 3.86 9.82 10.2 9.29 8.3 9.86 6.78 1.7 5.59 9.21 0 3.81 0.93 0 6.72 0 0.54 2.78 0 1.49 9.87 0.93 8.09 7.41 10.6 12.4 10.9 11.1 9.82 9.28 9.61 3.95 9.34 9.07 11.2 10.3 9.33 10.2 8.07 10.8 8.44 2.34 6.69 8.23 9.47 6.97 10.4 7.63 11.9 10.7 5.16 3.86 7.48 10.7 11 9.7 6.91 7.54 1.49 2.02 9.58 7.05 7.96 8.75 8.18 7.54 8.08 10.2 8.66 7.39 10.8 5.38 11 3.11 11 2.34 9.59 5.75 6.81 8 5.19 9.05 4.07 11.4 5.87 7.85 5.14 8.22 7.39 10.1 12.8 10 4.53 11 3.11 5.53 1.71 8.29 0 6.83 7.38 11.1 9.79 10.2 8.99 4.32 7.63 6 11.9 8.7 8.81 7.31 6.52 9.39 2.87 4.53 9.44 11.2 11.6 8.96 9.17 10.4 7.99 10.2 9.56 2.87 10.2 5.8 8.04 11.3 1.89 7.85 6.81 8.6 2.68 7.75 1.49 11 10.1 3.04 6.11 6.55 7.6 12.1 4.47 9.37 10 6.67 7.88 10.5 7.27 7.16 7.9 4.56 9.25 11.8 1.7 7.61 8.41 8.15 11.8 11.5 10.5 9.22 7.65 5.36 9.65 5.84 5.19 9.77 10.1 9.08 9.81 4.9 6.5 8.41 9.92 5.87 4.86 5.06 4.03 9.16 12.1 4.47 11.7 11.9 4.25 8.63 8.79 9.35 1.7 6.47 7.66 8.02 7.53 10 0.93 2.34 4.22 1.23 12.2 2.2 1.23 12 9.91 7.77 11.3 10.8 9.48 2.2 9.89 8.86 6.27 8.91 10.2 9.73 10.4 7.52 9.8 6.2 6.24 0.93 2.96 4.14 10.5 9.67 10.4 4.98 7.08 9.84 2.46 2.46 8.8 8.49 9.81 6.81 0.93 7.27 7.68 6.99 5.59 4.48 4.44 1.49 0.54 0.54 7.81 8.31 2.78 10.9 8.9 2.96 8.74 9.48 7.2 10.6 3.62 4.76 7.33 5.87 7.09 10.1 9.45 8.18 9.52 7.15 2.78 8.08 7.13 9.5 8.86 5.91 9.66 6.5 10.2 10.1 8.11 9.99 8.83 8.81 9.12 11.4 10.2 8.59 10.6 9.03 8.39 8.4 0 2.05 3.19 6.83 3.11 7.1 10.8 2.87 14.5 0.54 10.8 3.67 5.63 8.19 1.89 11 1.23 3.86 0 5.39 8.71 5.91 9.96 11.6 2.38 1.23 8.31 3.32 10.9 8.46 4.98 0 4.64 1.7 2.68 10.6 0.93 6.01 6.14 2.68 0.54 5.08 3.9 6.93 5.3 5.36 6.74 8.77 11.6 0 9.89 2.34 0 1.7 8.91 2.46 9.45 0 14.6 4.03 9.26 5.29 6.41 11.5 0 2.57 9.2 10.7 9.17 5.53 9.78 1.23 0 2.46 0 0 4.11 5.94 4.5 5 7.34 9.89 9.76 13 3.39 5.45 9.12 9.97 2.34 3.19 10.7 9.71 8.84 10.3 10.5 11.4 7.75 9.28 6.96 11.1 9.48 6.79 11.5 10.4 8.71 5.58 8.68 11.2 8.25 8.81 10 8.37 8.92 10.9 10.1 9.52 7.09 8.86 9.94 7.85 8.26 10.5 10.1 10.8 6.29 10.1 8.05 4.11 9.63 7.36 7.3 6.19 8.24 7.26 7.99 1.23 10.1 14.7 9.29 4.9 10.7 8.98 4.5 9.27 7.11 4.03 8.72 10 9.64 11.1 7.19 9.75 9.64 8.84 8.33 7.29 10.2 9.77 9.19 5.26 9.12 9.81 8.69 11.3 11 8.8 5.67 6.12 8.09 7.95 8.97 7.6 8.79 2.57 2.87 6.28 8.07 8.1 8.66 3.95 7.56 6.58 4.56 3.67 11 1.49 10.3 8.13 7.35 7.23 8.59 5.47 2.87 8.88 8.08 13 6.37 5.75 9.72 3.45 9.5 7.88 8.99 9.03 8.95 8.59 9.81 10.8 9.57 8.47 9.65 7.79 8.71 10.6 9.18 10 2.78 4.74 11.9 8.47 9.81 7.47 14.2 7.74 6.3 11.5 8.23 6.72 3.56 2.46 9.45 10.5 11 9.14 10.7 3.72 10.2 8.1 8.3 4.41 6.89 4.28 10.1 8.68 10.4 9.9 8.11 11.8 8.44 9.11 3.81 8.03 9.16 7.94 10.1 10.7 2.2 10.9 5.36 12.5 10.8 8.22 1.89 9.85 3.45 5 5.02 5.51 10.8 1.7 10.9 8.83 6.41 4.14 9.79 9.19 9.59 9.58 7.9 9.79 9.39 6.73 7.54 10.5 10.3 2.22 7.72 10.3 3.04 1.23 5.8 0.93 7.42 0 5.92 5.36 7.33 4.64 0 5.35 8.55 0 1.23 9.07 3.45 8.84 10.1 4.14 4.94 3.9 2.05 0.54 8.33 10.8 8.31 7.69 9.65 3.11 7.5 4.38 6.5 1.7 10.4 4.69 7.97 3.32 2.2 9.41 2.34 3.67 5.26 4.69 6.76 2.57 11.5 8.25 0 3.39 11 7.23 9.43 2.2 7.34 0.54 5.12 6.66 2.2 9.15 8.28 11.5 10.6 3.26 11.4 3.72 4.22 4.76 4.03 7.7 0 5.69 1.89 8.07 1.49 9.33 10.1 7.03 3.81 7.75 8.82 8.9 12.7 12.2 6.51 10.6 9.93 11.1 10.8 10.8 1.7 4.83 6.5 7.49 2.46 12.3 12 2.34 7.03 11.3 11.8 9.48 11.7 7.15 9.52 9.16 10.6 9.68 9.75 10.7 6.29 9.4 8.85 6.68 8.11 1.7 9.8 7.45 10.4 9.81 10.1 9.54 5.25 11.2 8.3 3.99 9.19 1.23 11.8 10.2 10.8 11.7 10.2 11 9.11 10 8.68 10.9 3.35 10.3 5.14 11.2 8.21 6.46 10.2 10.7 11.3 7.41 8.46 12.4 7.82 9.54 9.5 6.13 8.15 4.92 6.78 10.2 12 9.3 7.83 10.7 9.76 9.85 8.86 9.06 10.2 10 8.86 8.62 8.92 12.9 10.1 10.2 8.04 11.7 9.37 9.18 9.01 0.54 11.8 5.98 11 9.2 10.7 9.64 12.8 8.1 7.8 10.7 10.4 10.1 10.2 7 10.5 2.87 4.79 9.7 10.7 8.98 13.2 10.9 8.39 9.02 8.1 9.17 6.37 14.1 9.07 10.6 7.6 1.23 9.3 0 4.53 5.77 11.4 8.28 9.91 8.42 13.3 0 11.7 13.7 10.6 9.98 10.7 9.75 0.93 10.9 6.13 12.8 13.3 10.2 9.7 11.7 12.3 8.31 9.93 7.78 11 11.3 8.46 10.4 10.9 7.58 10.1 10.6 9.47 11.2 11.5 10.8 10.3 14.3 11.1 5 9.27 1.49 10.9 9.49 12.5 4.18 10.2 10.5 5.14 11.4 10.7 11.1 8.34 9.57 10.7 2.05 1.49 3.11 0 0 2.68 0 1.15 11.5 2.18 0.93 0.54 3.59 11.6 11.1 11.8 11.7 1.89 8.82 11.4 9.18 8.6 7.4 9.97 5.62 2.68 7.39 9.18 10.9 3.04 1.49 7.88 11.3 9.19 8.57 9.33 13.4 5.92 8.13 7.98 6.52 8.53 0.93 15 0.54 9.01 10.2 11.7 4.22 11.5 8.98 9.78 8.02 12.8 10.3 9.42 8.16 9.16 11.4 8.25 13.1 9.74 1.23 7.45 11.4 11.1 14.1 10.2 12.9 9.12 10.4 3.39 3.32 11.5 8.73 5.31 10.8 6.96 10 9.55 8.52 6.85 12.8 5.96 10.9 10.9 5.28 10.4 8.97 8.27 7.03 6.47 9.23 7.2 2.68 10.2 12.1 9.48 9.25 11.6 9.68 8.21 10.8 1.7 5.45 8.77 9.8 9.04 11.1 8.43 9.24 7.81 10.8 5.1 4.35 7.25 7.22 10.2 10.3 5.3 1.49 5.89 8.11 9.56 1.49 0.54 10.2 5.99 9.26 12.4 8.37 4.41 9.75 7.06 9.41 11.6 8.95 10.2 3.45 11.9 6.41 7.23 10.4 9.55 9.24 0.54 9.7 9.4 5.54 11.4 1.89 0.54 11 4.64 11.1 6.11 9.76 8.95 8.12 3.04 12.6 12.4 6.38 8.69 4.44 6.6 11.6 13.1 4.25 9.04 10 0 9.6 9.2 0 10 4.53 8.52 3.9 6.48 8.85 6.98 9.75 10.6 7.45 10.7 5.55 7.46 3.86 10.1 8.66 4.61 12 9.02 6.03 8.94 2.78 10.2 11.1 3.32 11.2 7.2 7.98 7.1 3.32 10.4 0.93 10 10.7 10.7 9.91 9.21 4.44 3.77 9.39 1.23 10.6 5.84 0.54 10.7 11.5 10.8 10.5 11.6 9.26 13.6 14.8 13.1 7.44 9.82 10.7 5 9.81 11.8 1.23 11.4 7.9 9.89 10.3 6.1 13.7 11.6 5.87 8.11 4.38 9.74 15 10.2 5.08 12.4 6.63 7.92 6.01 8.79 10.4 10.6 13.2 8.66 13.9 10.1 8.92 8.36 5.08 2.05 9.75 8.79 10.3 10.1 3.04 10.5 8.92 1.89 0.54 0 1.49 9.85 2.34 12.9 9.24 9.1 10.4 5.7 1.89 6.12 11.6 8.69 9.11 11.7 8.72 9.63 0.54 11.3 11.1 3.62 11.5 1.7 12.4 12.3 11.2 7.07 11.8 12.8 8.79 9.78 11.9 4.61 14.6 2.77 10.7 8.12 11.3 13.9 8.11 8.4 7.01 8.82 7.73 7.79 9.35 1.23 12.2 11.8 8.01 8.63 0 9.25 1.49 1.23 5.83 6.19 7.8 0 2.34 1.93 11.4 10.8 12.4 0 10.2 4.44 10.2 11.9 12 9.27 5.75 5.5 10.5 8.74 9.95 12.6 8.23 7.86 7.94 2.87 6.66 13 10.4 9.1 4.14 2.68 6.03 7.15 10.2 8.19 10.5 4.47 3.39 5.71 6.71 8 0.93 8.83 4.19 3.51 7 9.86 8.95 5.75 9.28 0.54 2.05 12.3 11 7.59 5.28 5.16 8.65 5.28 6.65 3.11 8.81 3.32 7.02 8.26 4.92 4.11 4.5 8.06 4.81 6.52 12.9 5.59 8.58 1.23 5.12 0 2.2 3.04 6.14 5.82 8.54 1.89 3.32 10.3 4.79 7.84 3.39 5.6 4.84 3.77 2.26 3.56 3.9 7.85 4.66 5.98 2.87 5.54 6.57 3.77 2.78 4.22 3.72 0 7.17 10.3 9.51 0.93 9.5 3.19 5.44 11.3 5.08 6.93 0.93 7.3 10.5 1.7 0 5.42 7.19 4.22 7.48 2.78 6.65 1.23 7.74 8.39 8.03 14.4 3.26 7.63 4.88 9.01 6.37 7.57 0.54 8.85 2.96 10.5 4.61 12.6 2.2 13.2 15.3 12.9 0 8.84 10 10.1 8.5 10.1 12.4 9.68 8.23 9.3 10.6 10.9 10.6 2.46 10.6 10.4 10.6 9.73 10.7 9.4 10.7 10.6 11.3 14.1 8.27 0 4.53 9.17 4.64 10.5 5.98 8.83 7.66 8.5 10 0 8.32 8.68 10.5 9.66 9.9 10.6 9.63 0.93 10.8 1.49 12.1 11.4 10.9 9.91 9.88 9.59 9.45 9.37 11.6 9.04 8.84 10.3 11 9.26 8.77 10.6 10.2 6.09 11.9 10.1 9.34 11.2 12.9 11 10.6 10.6 3.9 12.6 11.3 7.99 13.9 9.65 0.54 10.9 14 3.95 4.2 10.9 5.67 5.5 7.23 6.24 8.97 9.89 8.74 2.68 13.6 10.9 6.54 10.2 11.9 9.64 10.9 6.95 10.5 7.79 11.6 10.6 9.11 5.78 1.23 5.06 6.08 5.45 0 3.26 5.51 2.57 2.34 2.34 1.23 3.32 9.71 8.13 0.54 11.5 2.05 3.67 12.6 9.07 8.47 10.8 4.03 10.1 1.23 11.3 9.78 4.76 7.26 5.45 10 12.6 8.64 9.26 9.71 12.8 10.6 12.9 13 12.6 13.7 5.47 12.4 12.6 7.7 12.3 8.72 8.54 9.05 6.94 9.96 8.89 7.78 8.44 7.17 12 10 9.19 7.15 7.74 6.9 7.08 7.23 4.11 5.75 7.63 9.27 8.15 8.3 10.7 7.62 6.75 5.39 9.37 10.4 9.8 7.24 10.3 9.37 7.21 8.39 9.16 7.19 7.33 7.28 8.57 2.78 5.3 4.96 7.82 8.22 9.34 8.17 9.52 6.89 0 10.1 5.53 6.38 6.27 8.49 0 7.1 6.13 6.84 7.38 12.1 4.64 4.28 4.14 4.56 1.49 0.54 9.61 9.45 8.81 7.17 8.51 7.74 6.3 7.86 4.44 6.72 9.23 10.9 7.06 9.92 7.41 10.4 9.14 10.1 9.57 9.99 8.33 2.46 6.06 7.11 4.81 10.3 3.6 9.93 7.64 7.29 9.04 6.84 9.3 7.26 8.02 7.51 8.42 10.7 7.83 9.04 8.92 7.18 7.63 10.5 11.1 7.02 7.1 8.18 7.87 10.8 4.28 10 8.75 2.2 2.2 12.5 7.64 6.57 7.56 5.85 8.15 7.28 7.74 6.72 6.57 6.27 6.13 7.96 7.94 2.05 5.61 7.67 6.37 10.6 5.8 10.8 9.08 9.05 11.1 6.51 11.3 6.62 10.4 4.08 11.8 8.5 10.4 9.61 8.87 13.1 10.2 10.1 9.09 10.5 10.9 13 2.87 6.68 1.7 8.11 10.4 10.4 17.6 9.73 9.77 10.6 5.5 10.1 10.2 11.1 12.9 8.69 9.38 9.71 11.1 11.2 9.67 7.08 4.07 8.8 10.2 9.5 3.32 8.86 9.78 0.54 8.53 9.43 3.26 11.6 10.8 7.95 10.1 7.84 9.57 10.6 7.7 9.89 8.55 10.1 8.39 7.97 4.76 8.73 9.39 7.09 0.93 14.4 10.5 7.07 7.36 7.77 9.06 9.2 8.87 10 6.91 9.94 10.3 7.71 9.46 9.04 9.96 11.7 8.51 7.85 2.46 9.33 7.6 10.7 9.61 10.4 7.52 7.14 6.99 11.4 6.94 4.28 8.09 7.17 8.37 7.62 7.3 11.2 10.6 8.55 6.93 9.33 6.31 7.77 4.41 6.38 9.36 7.09 8.86 2.78 7.88 8.78 10.1 9.98 7.41 7.85 8.35 8.42 12.7 10.9 6.59 9.55 10.3 12.5 9.44 9.01 6.38 4.96 8.72 0 5.1 6.58 8.87 4.22 9.87 9.49 8.02 12.8 7.44 7.79 0 4.34 8.03 12.1 1.7 9.84 5.89 4.44 10.1 8.27 9.81 8.16 8.95 8.26 10.3 8.73 8.72 7.4 11 12.4 2.46 10.4 11.6 8.55 6.85 7.71 1.57 9.95 0 4.35 0 9.99 5.54 10.8 11.8 7.47 1.49 6.66 0.93 5.69 2.34 4.53 7.01 2.05 0 8.84 9.29 9.92 9.08 4.32 8.5 7.66 10.2 2.2 2.34 4.94 3.05 11.9 7.74 7.82 7.43 9.09 9.49 8.31 9.95 8.66 10.3 10.2 8.25 8.56 10.4 13.2 9.2 9.67 9.39 9.11 9.47 8.22 8.15 10 10.5 9.37 10.6 7.03 9.88 6.97 4.32 7.75 8.07 4.03 7.58 8.02 8.48 10.7 8.07 3.32 4.71 8.59 4.61 7.51 7.37 9.12 6.04 8.71 9.1 6.52 7.67 8.85 8.85 10.2 5.12 8.85 7.53 2.34 8.63 10.2 8.59 8.25 7.88 9.34 7.7 8.99 9.17 6.59 8.84 8.95 8.48 10.2 7.97 7.27 10 10.1 7.47 7.06 6.73 3.26 8.69 8.38 10.1 7.87 2.34 8.5 8.82 9.85 8.34 6.52 7.79 7.18 10.6 6.85 7.17 8.36 9.33 8.14 8.91 5.75 5.65 7.14 9.84 9.61 7.15 7.48 9.99 7.09 10.6 6.92 8.92 8.75 6.56 8.08 9.28 8.54 11 10.2 9.34 1.23 6.29 9.68 6.69 9.45 7.5 6.16 2.57 7 1.89 10 10.5 6.22 8.38 8.7 3.97 9.16 7.66 11.2 3.39 0 9.62 2.68 9.78 8.91 7.55 9.75 2.57 8.15 7.77 7.39 7.53 6.96 9.96 8.08 8.15 10.9 5.92 5.18 11.4 7.97 8.95 6.85 8.97 2.68 0 4.07 1.49 7.45 4.61 9.19 10.1 10.7 7.91 8.95 8.56 7.16 8.75 8.63 4.11 6.91 8.66 2.87 7.28 9.25 7.41 11 10.6 9.35 2.05 8.17 3.32 7.5 5.38 5.84 9.96 0 8.1 5.61 5.16 4.47 8.41 9.75 6.61 6.06 9.21 6.61 9.51 6.72 10.7 0.93 7.11 7.08 7.61 0.93 5.92 2.96 6.16 6.68 5.51 8.04 7.24 1.49 7.98 3.72 0.54 5.16 7.15 0 5.38 0 5.92 8.08 6.26 0.93 5.5 9.05 9.35 10.9 8.91 6.66 8.82 7.04 7.91 10 9.47 9.87 5.51 8.29 10.7 4.66 10.5 10.7 8.97 6.17 10.7 7.94 6.2 9.92 9.98 9.77 4.88 7.76 7.86 6.19 5.81 9.54 8.75 10.2 5.61 4.5 0 11.4 9.19 7.51 5.25 5.87 8.55 11.3 5.63 1.7 5.86 8.03 5.18 4.22 7.69 6.19 1.23 10.3 1.89 9.01 3.72 6.79 10.7 10.3 2.96 8 7.63 3.3 9.33 0.54 0.54 9.05 7.99 9.93 7.57 5.21 7.06 9.96 4.64 7.49 10 6.87 7.69 8.77 7.87 3.77 7.34 1.89 8.7 7.77 9.4 3.26 4.07 7.08 6.08 9.82 9.24 3.19 8.96 5.78 12.8 3.26 7.47 9.57 6.15 5.45 9.72 8.7 5.39 7.06 10 9.97 9.93 7.2 9.52 8.86 8.7 9.87 8.75 8.54 11.4 8.41 8.49 8.87 9.48 1.49 0 1.89 2.68 11.7 3.86 8.7 4.68 2.78 4.5 1.23 7.45 11.2 15.3 5.02 7.56 6.57 3.9 4.22 0 9.02 6.11 9.43 3.04 11.8 1.7 8.69 5.63 10.9 8.11 11.6 9.48 9.4 10.1 7.92 7.96 9.67 9.23 8.64 9.57 8.14 7.04 6.83 9.63 8.06 5.65 7.85 7.85 5 8.56 4.5 8.94 7.72 10.4 8.08 6.71 9.37 9.2 7.88 1.23 10.7 10.3 11.4 9.69 10.3 9.31 10.7 9.72 10.8 10.7 5.71 4.79 10.4 9.98 4.96 8.39 6.44 7.29 8.01 11.9 8.92 5.58 11.2 9.42 6.76 7.29 5.36 8.71 9.61 10.3 0.54 8.46 5.96 6.36 10.6 9.57 6.1 8.33 8.97 5.18 11.1 9.9 6.69 8.07 10.5 10 8.76 6.81 9.87 8.55 6.34 9.19 11.5 10.1 9.75 5.26 7.26 8.58 11.5 5.86 7.27 3.72 6.92 9.11 8.3 10.3 8.81 5.47 3.19 12 5.02 6.45 12.1 6.24 0 7.79 4.79 10.7 5.48 8.06 9.59 9.99 2.2 10.8 2.78 10.8 7.76 3.9 12.1 7.75 15.6 9.2 5.45 9.09 11.8 5.89 10.8 1.49 9.72 9.07 9.69 8.05 10.6 7.43 9.75 4.25 4.28 7.71 0 5.21 8.06 7.11 7.64 8.28 5.21 6.43 6.18 2.05 9.14 12.2 9.22 5.45 8.18 7.87 6.39 5.5 10.2 7.75 12.2 12.9 8.92 12.1 9.86 12.5 9.58 7.05 9.33 6.51 8.7 8.72 10 10.8 9.47 4.64 7.97 3.45 12.8 9.14 8.15 11 11 9.41 5.38 9.07 6.75 4.06 10.5 7.41 9.13 6.31 0 2.2 11.8 12.9 7.99 2.46 6.76 5.96 2.87 6.77 9.95 7.54 11.1 11.2 13.9 6.92 8.06 0.54 10.7 7.49 10.7 11.1 9.14 5.23 9.56 9.65 10.7 10.4 9.12 1.89 6.19 5 0.93 11 8.67 9.3 11.8 9.02 12.1 9.82 2.57 11.6 8.92 7.88 9.22 8.03 9.78 9.59 9.59 5.08 8.31 8.69 9.32 11.6 10.5 10.5 12 0 8.79 7.71 8.38 8.38 10.9 9.31 9.5 8.01 9.35 11.9 7.92 12 10.2 10.6 3.32 9.46 10.2 8.62 5.62 10.4 10.4 4.41 2.05 9.03 14.8 9.7 6.07 4.96 7.33 3.19 9.4 10.5 4.61 11.9 10.8 10.8 10.2 10.8 10.6 5.51 0 9.8 4.9 7.92 0.93 6.12 9.97 8.59 7.35 6.13 6.02 9.59 1.7 7.08 0.93 11.7 6.56 7.57 8.6 10.3 9.87 12.8 7.51 9.28 2.49 10.9 7.76 10.5 9.9 6.62 10.1 9.31 12.1 9.7 8.36 8.87 10.2 9.22 8.5 1.32 9.62 9.68 0 9.54 9.85 8.72 9.36 5.58 2.87 4.76 9.4 10.3 0 9.68 8.62 4.69 10.4 13.5 8.68 10.5 6.79 8.18 8.85 2.57 9.16 7.61 9.9 9.25 11.7 8.46 12.4 12.2 11.7 10.7 12 11.3 6.43 12.5 9.93 7.45 10.2 7.48 8.63 9.56 0.54 8.39 2.2 10.7 9.19 10.3 6.75 10.2 2.05 11.4 11 11.3 9.65 9.98 11.2 8.31 9.39 6.65 11.3 9.38 3.45 3.99 11.1 2.05 9.42 10.2 9.46 8.47 6.68 1.23 0 10 4.81 0.93 0.54 9.41 1.7 7.79 3.51 3.26 5.71 6.2 1.89 0 2.87 3.72 1.23 1.89 7.57 2.87 9.56 10.9 9.59 8.39 7.23 5.19 0.54 5.54 7.99 8.87 0 7.73 6.31 5.6 10.1 8.61 6.58 7.94 8.32 9.69 8.98 2.2 7.23 2.96 12.5 10.9 8.98 0.93 2.78 0 4.9 5.18 0 3.67 8.17 7.68 8.74 6.89 9.45 9.9 0 8.41 0.93 3.81 0 0.93 10.4 7.95 2.68 8.18 8.12 9.98 4.98 8.69 0.93 9.74 10.4 9.99 9.9 7.56 0.54 4.94 10.1 11.3 9.28 0 8.41 8.99 9.21 9.71 9.6 6.38 2.34 1.49 11.4 0.93 12.1 10.8 8.27 2.2 6.5 11.3 9.74 9.52 8.74 9.84 1.49 5.91 10.9 7.11 7.75 10.6 7.85 7.92 8.39 2.2 9.13 9.74 7.49 9.56 2.57 9.14 4.38 6.29 10.2 10.4 8.81 6.93 9.86 10.3 4.28 5.93 8.1 9.52 9.18 8.74 0.54 6.61 1.89 7.57 1.7 5.05 10.1 7.85 11.2 8.12 8.28 7.58 10.2 9.95 8.61 8.64 3.81 4.64 10.6 6.82 2.68 0 1.49 1.7 6.29 0.93 1.7 0.54 1.49 9.02 11.3 5.99 2.2 9.62 10.4 8.12 10.4 9.67 3.77 10.1 10.3 7.47 8.85 5.78 6.32 0.54 6 1.49 5.67 11 9.01 9.49 3.11 9.65 10.3 5.53 10.9 8.73 0 3.11 3.56 0 10.1 8.16 0.93 7.52 9.65 6.22 6.3 12.4 9.35 3.45 9.93 3.45 8.22 2.2 6.87 7.92 11.7 7.76 6.67 10.4 9.66 8.99 7.05 2.46 12.2 3.77 6.58 0.54 3.32 6.72 7.81 9.08 12.5 8.67 8.97 5.72 4.88 9.33 9.7 1.23 5.84 8.68 2.05 8.3 7.88 4.03 7.29 9.38 9.08 8.54 7.47 9.13 8.94 7.63 7.81 8.25 8.73 7.51 7.14 7.01 7.06 2.2 8.52 9.47 9.59 9.82 7.45 9.43 5.98 11.8 8.74 10.3 8.56 7.35 10.7 9.9 7.07 8.83 8.78 3.81 5.26 8.33 11.2 6.64 8.57 9.35 9.97 2.78 0 6.9 9.34 10.5 9.75 5.59 8.42 3.99 6.63 2.57 6.7 4.81 8.16 4.7 8.34 5.93 5.51 3.04 5.14 5.1 0 9.24 10.5 10.8 6.89 7.91 2.34 7.46 9.44 8.54 9.49 10.1 9.97 4.35 12.8 6.17 9.89 9.81 11.4 9.01 10.6 5.35 7.41 10.1 6.05 8.22 9.14 9.5 9.65 9.79 8.07 9.6 8.31 9.08 8.69 10.7 9.49 8.38 8.3 6.18 8.54 8.71 5.23 8.88 10.5 9.43 5.94 7.31 7.12 9.8 8.82 10.1 7.85 7.89 9.69 1.89 7.49 11.1 8.78 9.35 4.38 8.15 8.93 7.32 9.49 5.14 10.9 7.99 8.43 8.3 6.27 8.66 9.03 0.54 9.65 8.08 8.54 7.93 8.31 8.82 8.65 10.4 6.47 9.33 8.56 8.06 9.56 9.57 6.42 7.27 6.34 7.86 8.57 0 10.6 8.79 10.2 8.47 9.78 9.94 9.89 8.38 8.82 0.93 8.8 10.6 8.76 7.02 10.6 3.19 9.4 2.34 10.2 6.62 10.3 1.23 9.99 6.71 7.85 9.18 5.19 6.57 9.15 8.05 9.44 11.1 10.9 11.3 6.75 8.52 8.53 10.4 9.23 6.7 7.17 6.97 8.62 9.54 9.35 7.38 6.63 2.78 7.37 2.28 9.69 9.33 10.9 9.17 12.7 6.65 10.3 10 8.15 7.15 9.81 3.81 0.54 4.18 10.6 7.39 9.2 7.21 6.24 8.98 7.7 9.49 6.72 5.45 10.5 5.06 8.56 9.94 8.02 9.4 8.15 11.4 7.44 10.1 2.69 4.28 11.2 6.34 8.51 0 9.65 4.35 5.99 9.85 9.54 9.45 5.93 7.05 6.91 7.18 8.71 6.66 6.67 11.3 7.32 8.12 3.04 1.49 5.76 9.25 10.8 6.28 7.41 7.85 11 3.56 0.93 0.54 3.45 8.8 10.3 7.47 10.4 11.5 6.59 6.54 0.54 9.43 8.58 0 9 8.62 10.9 6.03 4.84 7.5 10.4 3.51 5.87 0.54 8.94 12.4 3.51 5.41 8.55 7.99 10.2 6.27 8.02 10.4 9.28 5.93 6.36 13.1 7.31 11 5.92 7.35 0.54 1.71 11.1 9.85 7.17 10.4 8.66 12.2 7.54 3.77 8.29 4.74 4.5 7.03 7.85 9.4 9.85 5.55 8.83 4.22 6.67 8.33 8.79 5.16 6.95 6.94 0.93 8.26 8.83 7.88 9.92 8.59 1.49 7.23 8.26 11.1 6.57 8.51 9.64 3.19 7.29 4.14 0.93 6.57 10.1 9.92 6.53 7.74 0 2.2 8.48 1.7 7.87 4.03 7.01 7.76 9.38 9.58 6.94 9.7 6.95 9.44 6.17 4.9 5.08 6.39 7.89 11.1 7.05 8.15 3.56 7.45 8.91 8.04 10.5 8.46 9.58 0 9.58 10.6 9.27 9.57 10.9 10.5 7.07 8.17 18.3 7.71 8.69 8.1 4.16 6.86 8.46 9.55 9.49 10.2 6.63 10.1 6.38 9.34 12.5 9.24 10.9 10.7 2.05 5.41 9.12 9.72 7.15 8.86 11.5 9.48 0 8.08 8.62 9.71 7.96 9.2 8.45 9.62 6.55 10.6 7.39 3.99 8.2 0.54 9.43 8.75 7.8 8.29 10.6 8.39 0.54 7.11 2.57 8.27 8.58 7.87 5.31 4.88 10.2 6.71 5.8 6.69 7.51 8.63 3.39 7.48 6.18 9.23 9.36 9.42 7.6 5.5 10.7 9.43 7.19 6.37 0 7.78 9.23 9.59 4.08 9.79 9.96 11.2 9.01 6 9.84 5.67 6.91 7.79 2.57 4.92 10.4 10.1 9.43 7.43 7.19 10.2 9.35 9.17 7.89 6.73 6.61 10.3 8.65 8.87 8.27 9.51 10.4 9.49 4.35 4.83 10.1 7.35 7.55 8.8 10.8 9.41 9.22 0 10.6 0 9.48 10.9 10.4 9.53 4.03 0 4.32 12.2 5.48 7.58 9.38 8.85 7.32 2.47 4.22 2.05 0 10 10.9 10.2 5.85 10.8 9.63 9.71 8.31 6.67 9.63 9.79 0.54 8.51 2.46 3.95 9.5 11.2 9.63 10.7 6.8 9.14 10.6 10.1 5.08 1.89 10.1 0.54 5.75 5.57 4.25 8.44 8.79 9.45 2.78 8.14 10.3 10.1 10.1 7.7 5.21 10.9 10.3 10.2 9.81 11.1 11.7 9.26 9.96 7.87 9.59 8.26 9.57 4.5 8.54 8.27 10.1 6.2 2.05 10.1 3.62 1.89 1.23 9.32 6.57 5.14 4.64 9.36 4.32 4.61 13.1 8.39 9.76 5.25 6.96 9.66 8.66 11.2 9.88 8.66 2.46 10.2 11 11.9 8.7 8.23 9.9 11.5 9.32 10.7 8.54 9.59 8.95 6.37 8.64 8.62 7.83 8.08 5.51 0 1.89 9.35 9.66 10.2 9.5 9.18 4.41 7.48 8.26 10.8 6.35 11.2 8.72 10.7 7.87 3.99 9.92 6.93 10.2 8.04 8.48 3.77 9.61 5.8 2.78 3.51 5.58 10 8.18 10 9.52 5.29 5.51 9.28 5.93 7.72 9.79 4.56 8.37 6.5 6.43 10.9 10.5 9.36 10.3 4.11 8.58 11.8 11.5 9.6 11.8 12.5 11.8 7.15 11.1 10.3 11.1 11.3 10 10.3 9.91 9.52 11.4 7.24 10.7 11.2 6.73 8.65 9.68 8.56 9.12 13 11 0.93 7.28 11.4 7.02 10.4 8.08 4.25 12.7 0.55 9.89 10.3 9.36 7.92 7.46 6.44 3.62 10.7 4.32 4.81 7.83 9.34 9.29 11.7 12 11.4 9.89 11.2 10.1 7.37 10.2 6.79 11.6 9.19 10.4 8.8 11.7 7.07 9.64 7.91 5.39 1.49 9.5 9.36 7.22 4.41 8.6 2.87 1.23 8.34 10.5 10.6 13.2 11.2 11.8 13.2 10.2 11.2 6.57 7.94 7.54 9.12 9.5 12.5 8.82 4.67 11.4 3.77 10.5 3.72 0 10.6 4.76 7.62 3.77 6.52 7.04 9.17 4.66 8.5 10.1 3.11 5.7 8.81 10.4 10.2 10.3 8.14 3.26 3.56 1.89 1.23 9.28 8.95 3.86 10.1 10.6 4.44 9.47 8.2 2.34 7.15 5.1 10.3 6.23 12.6 10.8 12.2 7.19 10.8 5.61 8.43 8.19 9.19 8.6 9.35 0.93 3.19 6.29 9.24 0.54 0.93 8.95 9.3 7.9 7.13 12.6 9.96 5.66 9.39 4.98 4.25 5.35 2.05 7.74 11.9 8.99 11.2 10.1 10.6 7.74 10.6 7.17 9.82 9.74 9.1 2.2 3.04 5.42 12.8 12 9.78 10.2 8.21 9.5 8.61 9.82 11.6 10.4 10 9.35 7.76 8.71 9.53 10 11.8 9.87 10.8 8.96 10.1 1.7 5.51 4.18 10.9 10.6 10.5 10.8 6.64 1.49 6.28 11.6 2.05 9.26 10.7 0.54 8.66 7.04 9.59 9.57 12 11.7 9.17 11.6 2.75 8.53 9.64 11.7 8.54 9.42 10.6 9.59 10.6 12.7 8.51 3.51 12.4 10.5 11.1 0 2.78 5.16 10.6 3.19 1.49 10.5 8.15 11.2 6.4 0 10.3 7.2 6.07 6.04 12 9.73 4.5 9.18 0.93 8.63 2.46 3.04 9.15 5.08 8.28 8.1 11.8 9.66 6.09 2.2 9.55 7.7 9.07 0.54 1.98 8.07 2.63 0 7.53 1.49 9.9 9.21 7.35 6.31 6.93 10.8 11.3 10.9 0.54 6.13 8.28 11 7.7 9.38 8.31 10.3 8.25 8.43 6.57 8.22 3.51 10.6 10.1 12.4 3.67 9.77 7.44 7.61 7.37 9.64 8.06 14 9.46 11 9.89 0.54 10 11.1 7.92 5.44 6.94 8.11 10.4 10.5 9.28 8.79 7.45 9.54 7.83 10.4 3.19 2.46 7.09 9.59 6.02 9.97 6.82 11.2 8.45 8.44 8.51 2.78 8.12 2.96 7.93 2.57 10.7 11.6 8.95 6.72 7.49 9.32 7.75 1.49 8.94 6.85 9.03 5.1 0.93 5.81 7.61 4.86 8.01 8.36 9.26 3.19 9.92 6.6 7.8 10.5 7.88 7.45 12.6 8.81 7.01 6.32 7.08 11.3 9.71 9.19 12 7.33 5.99 6.58 3.45 9.71 4.5 10.3 10.1 9.94 5.72 2.34 9.43 4.25 5.5 8.36 11.9 3.19 5.47 11 8.73 7.62 8.11 5.91 6.41 9.17 6.51 8.04 1.49 5.43 7.77 7.6 10.2 9.77 8.64 10.3 8.37 8.48 8.58 7.79 9.37 6.04 7.9 9.38 8.06 9.55 4.83 10.6 7.98 9.8 10.6 2.81 7.65 0.54 0.93 1.7 10.8 9.33 8.57 11.6 6.01 9.09 10.3 8.87 3.86 10.3 9.63 5.48 9.53 9.7 8.46 10.2 5.42 4.11 0.54 10.7 10.2 10.1 9.02 9.12 4.83 10.2 9.29 8.89 5.08 10.5 5.45 8.62 4.81 10.3 5.45 10.8 9.59 10.2 10.9 10 6.12 10.1 8.77 8.87 8.39 6.95 11 8.65 1.7 10.2 9.1 6.22 10.6 6.65 8.44 7.63 8.98 11.4 7.59 7.6 10.4 7.17 12.4 0.54 4.18 2.46 7.57 5.67 4.28 8.52 11.1 7.9 11.4 10.8 10.3 8.52 10.2 8.57 11.4 9.78 10.7 1.7 10.8 9.5 12.4 9.24 8.58 7.81 5.77 3.67 5.22 10.4 8.72 0 6.25 8.21 8.73 9.95 11.6 10.4 10.5 7.61 5.71 8.89 9.35 9.27 6.21 9.5 4.88 10.8 7.34 10.1 3.72 10 11.9 2.05 10.5 11.2 11.7 10 10.9 9.4 4.38 8.83 3.04 7.31 8.07 9.1 7.91 2.78 8.18 10.1 9.83 9.65 8.99 5.99 7.6 7.83 3.9 10.5 2.05 7.7 0.54 8.08 7.96 8.8 6.54 1.23 11.4 6.33 11.6 11.9 6.47 10.2 10.7 8.79 6.28 2.68 6.19 0.54 5.39 2.68 5.94 10.4 10.6 5.7 4.92 7.79 3.56 11.1 9.24 11.4 10.1 9.04 7.14 7.29 4.58 9.75 2.96 7.83 8.92 11.3 6.4 2.46 7.83 1.23 8.75 8.85 8.11 10.6 9.42 5.7 4.35 9.35 0.93 7.64 8 9.28 0 8.85 3.26 8.92 8.44 6.08 3.62 8.37 8.81 8.65 5.57 9.35 11.5 7.37 9.18 9.35 10 8.66 8.8 8.39 11.7 10.2 6.14 5.08 6.76 8.09 7.49 2.46 9.82 10.6 4.73 11.5 8.14 10.2 6.68 10.7 8.57 11.7 8.22 11 4.35 7.08 10.9 6.93 8.84 1.49 8.36 8.41 9.39 8.69 3.95 1.89 6.21 6.6 8.16 6.87 0.54 10.2 4.74 11.7 1.7 11.4 11.8 3.9 4.64 9.26 5.04 6.14 7.83 7.54 8.47 0.54 12.4 7.07 7.99 9.37 8.68 4.76 12.2 9.7 5.58 5.93 4.44 8.04 0 9.5 8.82 0.54 8.13 5.95 7.53 7.01 9.12 7.57 9.96 10.8 9.74 2.96 9.64 7.4 5.62 7.42 8.68 3.45 10.2 9.04 11.1 6.6 7.55 8.69 9.2 6.54 10.6 7.5 10.6 9.73 9.66 7.5 9.37 9.37 9.37 9.06 8.93 3.19 10.5 11 9.92 9.74 4.5 10.2 11.4 7.55 8.12 10.3 9.84 3.26 10.5 7.52 8.6 8.92 10.6 2.46 9.35 10.3 5.98 6.35 7.61 6.23 10.8 10.9 4.41 7.86 9.37 9.79 9.48 0.54 11.5 2.91 5.62 9.01 9.27 9.66 6.66 1.7 3.11 6.64 7.43 7.69 7.17 9.81 9.26 9.34 5.3 9.09 5.77 2.96 4.81 10.8 8.16 11.4 4.22 11.6 9.3 9.04 8.62 3.26 10.7 8.86 8.38 9.07 8.24 2.57 9.79 9.32 8.33 6.55 0 9.47 7.75 6.03 9.14 9.71 10.5 11.6 10 1.17 9.15 9.07 11.2 5.99 1.7 10.7 11.2 1.49 10.9 0.93 10 5.78 9.86 0 7.54 0 8.49 6.79 4.03 5.58 10 11.3 9.65 4.11 13 7.89 9.54 8.91 7.66 8.77 9.03 8.45 4.46 2.49 9.26 7.01 8.44 6.83 9.79 10.9 8.51 10.1 9.19 12.6 9.88 6.92 9.27 10.2 0.93 11 4.87 1.89 0.54 5.65 0.93 11.2 8.87 8.64 4.58 7.88 8.82 9.88 0 2.2 0 10 10 3.67 9.11 9.8 6.34 6.92 7.86 3.99 0.54 10.7 8.42 6.15 9.69 5.85 7.01 9.86 5.16 10.2 8.88 0.54 9.26 9.29 3.81 8.59 10.5 10 9 9.55 9.23 9.58 5.61 9.16 3.99 9.95 6.19 9.17 11.7 1.23 10.9 8.01 6.91 4.07 9.93 4.28 11.6 5.61 6.22 9.65 8.53 2.68 6.76 6.35 2.34 9.87 0.93 9.41 4.03 8.37 7.94 8.38 6.34 10.1 15 9.59 1.7 10.7 4.9 6.22 9.79 8.37 9.86 7.51 8.29 6.64 9.81 0 9.49 9.5 6.95 5.85 9.93 3.72 10.1 10.7 10.1 10.8 8.07 9.14 9.47 1.23 8.06 12.4 7.3 7.87 8.27 7.74 8.82 6.08 8.33 9.21 11.4 11 4.18 7.39 7.62 10.9 2.46 8.58 12.6 12.6 9.25 9.93 4.53 6.39 7.2 12.3 10.5 10.6 1.23 9.92 10.9 8.98 8.76 8.02 3.9 9.51 8.39 10.6 9.71 10.3 8.6 9.24 12.8 10.5 10.1 7.54 12 7.65 7.92 8.59 7.72 6.67 10.6 10.1 3.04 8.93 9.41 6.67 10.2 7.77 0.93 11.1 12.6 10.1 9.04 10.2 8.94 10.9 9.87 9.3 9.74 5.92 8.81 9.37 11.3 10.7 9 9.58 6.24 9.78 10.7 9.05 9.13 11.6 8.41 8.76 12.5 4.14 9.55 11.9 6.7 9.11 8.9 10.8 10.1 3.67 9.43 13 5.94 1.49 12.3 10.8 10.6 7.65 10.2 9.53 8.16 11.8 9.66 10.7 13.4 9.24 6.21 7.89 9.98 5.93 5.25 11 5.16 3.26 8.07 6.94 8.71 11.6 2.96 0.54 9.07 9.9 8.06 8.72 10.2 5.16 12.5 11.8 10.1 9.18 10.8 11.2 10.1 9.36 6.82 7.94 12.3 9.89 9.03 7.8 9.82 10.2 8.42 7.01 12 13.3 11.9 7.89 10.3 10.9 11.4 10.8 6.75 10.7 13.8 9.86 5.55 10.3 10.1 8.89 8.76 9.06 10.7 9.45 10.5 10.2 8.7 9.4 10.1 10.3 10.3 9.75 2.34 9.15 10.9 6.68 10.7 8.03 10.7 9.92 10.7 9.36 9.29 10.3 10.4 5.86 1.49 3.56 11.1 8.67 11.4 7.94 11.4 9.21 4.03 11.2 3.95 10.4 9.26 7.43 6.61 9.39 0.93 10.5 10.1 14 2.46 7.77 10.7 7.17 8.76 10.5 11.1 6.9 9.78 9.31 9.38 10.3 10.5 7.62 11.8 11.5 9.46 10 5.08 12.9 8.91 8.23 5.87 13 9.13 10.4 8.02 13.9 7.96 11.5 7.72 8.41 8.07 10.4 10.6 9.25 8.86 11.9 10.5 11 9.37 10.9 7.9 3.81 13.1 8.15 10.6 10.4 11.7 10.2 11.2 11.3 11.2 11 6.2 9.59 9.98 12.3 11.5 11.3 10.4 8.36 3.45 11.6 8.87 10 9.92 9.69 11.1 9.34 10.2 10.6 10.7 9.05 10.2 11.7 11.6 12.7 14.2 11 3.56 10.6 12 9.8 11.1 8.91 10.9 7.94 10.8 11 8.1 10.5 10.5 10.4 5.84 8.46 11.9 8.32 11.8 11 5.53 10.7 8.54 8.47 2.68 10.8 7.96 4.22 9.61 8.79 2.57 8.09 9.85 8.24 10.3 11.1 10.5 9.84 9.3 8.13 11 11.7 9.08 7.71 7.1 10.8 9.28 10.7 6.33 10.1 9.82 10.4 8.32 7.7 12.2 10.8 9.15 11.2 9.71 10.7 9.2 10.8 9.49 12.2 10.9 9.84 10.9 7.28 10.4 9.9 11.2 8.16 10.1 8.67 11.3 8.16 11.9 7.93 8.75 9.94 9.71 8.84 11.1 11.6 9.63 4.14 12.1 10.2 9.29 9.96 9.83 11.4 8.42 9.75 12.2 10.6 4.35 8.62 10.1 8.86 10.7 1.49 4.47 11.8 8.77 11.6 6.14 11.6 10.4 9.73 9.93 8.01 10.2 10.9 3.72 10.4 5.54 11.1 8.14 1.89 9.24 8.93 8.87 8.26 10.8 11.1 2.34 8.6 7.1 9.33 4.98 8.38 11.4 7.41 1.7 10.2 1.23 2.68 9.53 10.4 9.3 9.9 7.62 11.6 12.1 1.49 2.05 10.8 10.4 10.5 10.3 4.11 9.58 8.32 12.4 6.04 9.78 11 8.57 8.49 10.6 7.55 12.2 10.4 9.9 0.93 9.17 10.3 2.05 12 8.38 9.05
-TCGA-ZP-A9CV-01 15.7 7.04 11 6.82 4.88 8.73 0.7 2.86 0.7 0 0.76 11.4 4.31 4.21 5.84 9.07 10.4 9.1 6.31 10.8 8.9 1.17 9.62 2.73 9.51 7.39 4.1 10.4 1.67 8.3 2.25 5.69 3.21 0.7 1.53 0 0 5.71 0 3.19 3.69 2.98 2.98 2.05 6.4 2.43 0.7 3.54 10.9 5.11 2.98 5.68 8.96 11.3 4.93 1.17 7.2 0 5.01 3.62 5.89 2.98 6.94 5.6 3.09 2.05 8.09 4.21 10.4 7.47 3.82 6.76 0.7 0 0.7 3.29 3.77 5.27 3.77 2.05 5.2 1.81 2.19 4.92 8.41 0 4.31 4.67 1.53 1.17 10 3.76 5.73 5.13 4.69 1.81 1.53 0 4.72 4.11 0.7 4.26 0.7 4.65 4.31 3.76 6.13 6.72 7.06 4.87 1.53 0 9.09 3.54 6.22 0 1.76 3.95 1.92 0 4.21 2.59 0 2.43 0 5.29 0.7 3.76 0 6.67 3.23 4 3.46 7.12 3.19 1.81 2.73 0.7 3.54 8.7 7 11 1.17 2.43 5.01 11.5 0 10.4 0 0 3.83 0.7 7.01 8.93 10.8 3.09 3.09 6.27 10.3 3.54 5.2 4.74 2.73 0.7 11 5.69 8.22 3.09 5.12 1.17 10.2 9.49 2.73 3.89 1.81 2.05 2.86 7.33 7 3.08 4.06 8.72 3.19 4.31 3.39 1.81 0.7 0 7.96 3.89 7.56 10 2.93 3.46 3.54 7.64 6.15 8.62 7.67 9.25 4.63 10.4 8.56 11.6 8.48 4 9.11 10 10.3 9.25 6.68 1.53 10.4 10.6 9.51 7.96 10.8 9.64 7.44 9.85 10.5 9.85 11.5 11.9 8.11 8.26 0.7 10.5 8.7 11.8 10.5 3.62 9.28 10 8 10.1 9.65 2.25 9.22 0.7 6.91 5.04 12.4 11.5 11.4 11.8 11 12.1 3.95 10.6 6.75 2.59 2.86 10.1 9.84 6.79 11.5 11.6 6.62 11.3 10 9.86 5.25 11.1 8.66 9.98 7.8 10.4 11.4 9.39 6.63 5.86 7.73 9.75 11.6 9.19 4.74 13.8 12.2 12 13.6 12.1 10 8.75 9.82 12.4 10.5 9.39 10.8 8.94 6.96 6.14 11.2 5.6 8.16 10.3 6.1 11.6 5.51 10.3 8.65 11.4 11 8.81 12 11.1 0 11.2 12.1 7.79 12.8 8.23 3.29 10.2 3.82 10.1 12 1.17 8.65 6.07 9.85 10.1 6.79 7.95 9.28 8.56 9.8 9.2 9 9.18 10.8 7.94 11.2 7.62 9.63 10.2 8.22 8.05 7.14 9.6 9.89 9.33 8.77 9.45 8.53 13.3 9.07 9.07 11.8 8.21 11 8.3 9.93 0 4.31 8.19 5.54 11.2 0.7 5.2 7.08 10.2 8.07 9.26 8.56 7.5 7.43 1.17 7.12 4.35 6.44 11.1 11 10.6 10.9 7.21 8.93 11.7 1.81 10.3 11 9.69 13.2 9.14 10.6 10.4 5.38 9.63 8.26 9.32 1.53 8.18 12.1 10.1 5.78 11.2 11.1 1.81 7.87 11.8 8.71 11.2 10.5 8.46 11.5 10.6 8.76 9.67 10.2 4.11 1.17 5.45 12.3 8.81 8.18 11.4 9 9.73 7.22 7.2 9.44 6.94 1.17 11.4 5.93 11 10.5 10 3.9 9.95 10.1 14.5 7.12 9.35 6.25 6.96 9.6 7.36 7.59 9.85 11.5 11.3 10.9 4.96 12.2 9.2 6.05 7.5 1.17 9.03 3.29 6.45 7.35 12.3 8.78 8.14 5.89 10.9 6.83 3.09 6.68 8.58 12.2 1.81 11.3 8.09 4.93 7.42 8.39 8.34 5.68 12.2 5.98 6.59 9.78 9.31 8.58 11.2 9.43 4.31 12.3 11.8 0 10.4 6.78 5.53 12 9.39 8.97 2.05 5.62 9.73 9.53 3.19 13 7.29 7.07 9.6 6.91 10.1 9.57 13.2 7.87 8.46 10 8.51 9.07 6.13 11.7 0 0 7.35 2.25 15.6 7.33 10 10.9 12.6 7.5 10.3 6.67 10.1 8.97 11.3 11.2 10.6 9.01 10.8 8.77 7.94 10.4 9.61 11.1 6.52 9.16 10.6 8.41 5.81 12 10.1 9.83 9.71 4.67 9.53 13.2 0.7 9.54 5.83 9.86 9.65 11.6 11.7 9.16 9.57 9.51 8.28 8.92 7.04 10.1 8.63 7.65 8.99 11.3 8.73 8.93 7.42 9.39 10.2 9.47 10.4 9.09 11.6 9.12 9.13 8.9 11.4 10.1 10.7 11.2 1.81 12 10.2 10.6 10.1 11.3 11.2 10.7 10.3 8.65 10.7 9.16 10.1 0 12.9 6.88 7.32 4.11 7.36 10.3 11.9 4.99 9.38 10.2 10 3.69 5.84 11.3 11.1 5.54 12.6 8.42 10.3 9.94 13.8 10.2 11 10.3 4.16 0 11.6 9.11 8.79 7.12 6.26 14.1 4.26 9.65 11.1 10.5 11 10.2 6.63 10.8 11.1 10.5 1.53 10.9 12 11.3 11.3 8.47 8.26 9.78 8.4 2.43 9.94 11.8 0 1.81 11 10.3 3.76 9.29 1.53 9.87 2.25 9.47 10.8 11.7 11.6 10.8 11.1 3.62 9.92 3.54 10.5 12.7 9.98 6.57 11.2 10.7 10.2 10.6 9.73 8.22 12.5 0.7 6.35 10.9 7.66 9.41 7.57 4.52 9.89 11.7 10.1 10.2 6.4 6.22 11.2 7.17 10.7 9.94 9.72 11.7 9.52 13.8 5.98 7.08 7.44 5.47 9.08 11.3 8.51 13.1 12.2 8.91 8.15 7.34 11 2.05 9.77 5.47 10.4 3.28 8.68 9.6 8.95 5.79 8.14 10.1 2.59 9.21 10.2 6.87 11.4 6.77 11 10.8 7.43 15.3 1.17 7.47 10.2 4.99 8.41 7.82 7.57 10.9 8.39 10.6 5.1 5.15 3.46 8.84 9.78 11.5 0 4.93 11.2 6.84 2.73 3.54 10.5 10.6 1.53 4.77 6.91 8.09 9.62 9.91 7.71 0 8.61 13.6 4.44 13.3 10.7 9.36 12.4 12.7 10.2 11.5 8.02 4.8 4.82 10.9 1.17 0 0 5.26 9.08 6.61 8.81 0 7.17 8.94 12.7 3.46 12.7 10.4 6.19 2.05 10.1 8.59 1.17 10.5 9.32 9.91 10.7 10 11.7 8.64 10.6 10.2 7.9 9.59 11.5 9.18 6.52 7.72 8.46 11 6.39 11.1 11.9 9.78 4.87 4.35 7.69 6.49 6.71 0 5.04 12.2 10.5 1.53 2.05 8.37 10.5 10.6 11.9 8.2 7.27 9.6 7.91 9.07 5.99 8.87 5.69 10.6 9.15 10.4 1.17 12.4 12.5 10.8 10.8 5.62 11 8.49 7.85 4.26 10.5 14.6 1.53 6.1 8.52 4 7.38 10.9 10.9 9.87 10.7 7.12 3.76 6.29 0 9.46 0 5.84 9.01 9.12 2.05 2.43 11.3 10 8 8.47 7.7 0.7 10.9 8.49 12 7.52 0.7 11.1 9.15 7.67 10.5 9.07 9.32 9.48 9.84 8.9 0 10.5 2.73 11.8 8.94 11.1 0 9.83 9.56 10.4 10.5 11.5 10.3 6.72 9.71 10.6 8.64 1.53 11.4 1.81 13 4.93 10 11.1 6.41 0 8.39 11.1 11.9 10.5 6.91 10.1 10.6 7.86 9.28 11 9.74 10.2 11.2 14 11.3 13.2 12.9 12.2 5.36 11.6 12.5 10.4 7.7 10.1 10.8 10.3 13.3 11 7.29 11 8.36 10.1 10.4 7.69 10.2 10.8 3.62 11.4 10.6 10.9 11.3 7.42 14.3 12.1 14.2 9.65 12.6 10.4 10.8 11.5 6.57 6.38 7.6 2.12 8.15 8.03 8.69 2.43 13.1 7.73 8.93 8.9 8.78 8.18 6.81 8.09 9.77 8.68 2.25 5.32 3.09 4.7 9.01 8.24 5.24 11.7 4.77 6.33 9.38 8.44 9.66 9.94 9.25 2.59 10.5 11.7 9.14 9.84 9.78 11.4 8.89 12.7 12 10.7 10.9 6.95 1.17 7.17 6.1 9.13 11 9.91 8.83 9.24 10.6 8.04 9.03 8.53 2.59 10.1 12.4 11.9 8.17 4.11 10.1 10.2 6.2 6.1 10.8 1.17 5.76 8.86 9.45 7.78 11.8 7.66 9.33 8.75 7.71 0.7 9.06 5.15 11.7 4.99 7.9 10.1 11.1 10.7 11 9.42 4.63 9.88 4.06 7.32 8.81 8.85 1.17 7.32 4.16 8.13 7.78 12.1 8.61 9.52 9.74 0 11 8.91 9.61 0 9.6 5.66 8.1 1.53 3.62 9.07 10.2 7.38 5.49 3.62 8.03 7.56 8.07 7.27 14.6 9.89 11.1 8.43 8.58 10.4 8.74 10.8 8.98 5.15 3.46 7.66 11 5.53 3.38 10.5 9.25 6.92 9.03 0 11.2 8.96 8.36 6.79 8.41 8.83 1.53 10.9 0 9.37 8.77 7.36 8.34 10.2 9.86 10.6 10.2 7.84 6.93 6.91 9.02 8.18 9.64 6.63 11.2 9.78 7.66 8.89 8.62 1.17 8.98 9.45 10.1 8.07 12 5.15 1.53 6.44 5.62 7.77 11.4 6.64 11.5 8.97 9.93 5.38 6.17 10.7 3.89 9.84 5.04 10.3 11.3 5.71 6.18 2.86 3.29 8.94 2.43 12.4 8.13 9.28 0 4.48 10.3 11.1 8.75 9.62 9.43 8.01 7.44 10.1 7.04 12.9 6.81 7.36 5.59 9.02 8.22 9.54 9.41 6.8 4.94 0 5.06 8.13 11.2 11 9.13 8.58 7.25 9.78 8.66 11.6 8.66 3.82 0 6.77 7.87 13 8.8 7.97 7.91 9.53 8.68 8.71 10.6 10.4 7.19 10.1 7.92 7.94 9.18 8.2 6.26 13.1 4 10.2 4.87 10.8 7.59 6.47 6.51 12.2 1.17 10.4 7.16 4.84 10.1 4.74 3.46 8.11 9.26 1.17 9.22 11.3 9.24 8.02 6.98 12.5 9.86 10.9 11.4 9.24 6.73 5.43 4.56 9.88 9.86 2.43 11.9 9.06 11 9.34 10.7 10.1 12.3 11.2 5.43 8.19 7.2 0 11.4 10.4 11.6 10 9.86 10.8 4 5.75 0.7 11.8 7.35 5.47 0.7 7.41 3.62 9.14 10.6 1.3 6.39 8.43 8.72 3.89 7.42 6.48 11.2 2.05 8.32 0 8.54 7.71 2.05 1.83 10.4 2.25 0 3.69 7.08 9.82 8.02 2.05 5.75 5.29 5.71 0 0 8.18 3.29 8.27 6.05 9.5 7.65 7.05 11.3 8.38 6.88 2.43 10.8 6.54 12.6 8.18 8.81 3.69 6.67 7.27 6.94 8.56 3.62 4.26 5.2 7.46 8.4 0 8.71 3.38 5.04 6.99 10.9 0.7 7.91 7.48 1.81 5.99 8.85 6.39 2.98 5.17 9.15 11.4 5.4 8.8 8.64 3.54 6.99 0.7 7.44 3.09 7.14 13.5 7.87 8.91 8.7 10.3 9.26 7.87 4.6 10.2 8.91 10.8 5.22 4.63 8.37 9.13 7.02 6.36 3.69 5.32 6.72 8.75 10.1 9.58 9.75 1.81 2.86 8.95 9.45 10.1 11.7 7.96 0 2.05 9.82 10.3 8.02 4.06 10.3 9.4 8.59 9.29 7.3 9.31 5.56 3.54 1.53 5.04 1.17 7.19 4.56 6.33 8.03 9.02 5.55 9.2 3.89 0 3.69 11 7.53 0 6.59 9.62 1.17 6.22 8.53 2.86 0 5.55 1.17 9.86 9.27 8.62 8.29 7.16 10.3 7.5 10.6 7.6 10.4 11.6 1.17 8.32 0 8.59 8.02 9.39 9.53 7.19 8.93 7.66 10.8 5.2 7.89 1.53 4.33 0 8.07 5.69 6.5 3.54 3.62 0 10.1 0 1.17 9 7.06 4.16 9.78 9.68 0.7 4.35 5.71 6.94 9.03 10.1 10.7 7.67 14.4 0 1.53 9.37 8.12 11.3 6.72 7.94 10.6 10.5 0.7 9.43 4.59 3.19 2.25 9.01 8.82 1.17 9.89 3.29 7.67 6.64 12 9.92 10.4 0 2.05 5.96 10.4 9.54 5.71 7.02 12.1 0 5.84 9.72 8.31 9.64 9.72 6.77 10.3 0 5.07 2.86 8.07 14 8.77 9.36 6.44 5.4 8.21 11.5 6.62 3.82 0.7 12.2 5.29 10.3 8.11 8.3 2.59 9.42 9.28 1.17 6.64 11.4 16.6 11.5 7.08 0.7 2.43 6.41 5.43 0 9.67 10.9 9.23 6.15 9.29 3.54 7.46 9.36 8.43 12.9 5.22 10.7 6.28 1.81 12.7 8.91 10.1 4.35 1.53 8.52 7.91 8.8 10.7 2.05 7.04 12.4 1.17 2.73 7.24 11.1 10.4 8.05 9.68 2.25 6.73 13.2 0.7 7.48 7.24 1.17 2.43 8.75 8.18 5.15 8.91 9.52 0.7 1.17 0 3.09 0 6.35 4.31 7.17 6.47 9.13 6.94 4.26 7.06 9.44 6.97 4.26 7.56 8.3 9.24 2.05 7.84 8.35 9.42 12 6.77 7.88 8.71 2.25 8.57 1.17 9.82 0 7.5 5.47 8.04 7.12 3.09 9.67 6.65 7.54 3.09 5.22 9.22 6.02 1.53 8.99 5.98 7.19 9.93 9.35 2.05 7.05 0 7.91 13.2 8.3 9.27 5.66 3.54 1.53 5.96 6.34 4.52 0 7.89 9.76 4.35 12.1 8.36 9.45 7.23 11 10.6 4.93 8.7 8.98 6.88 12.7 10 3.69 4.63 8.83 9.08 6.44 4.06 0 6.46 9.76 7.6 4.43 3.82 0.7 4.44 2.05 4.87 8.38 9.25 10 4.06 1.81 7.6 2.59 9.82 11.2 14.6 7.78 11.3 6.44 7.95 11.6 7.93 8.69 3.42 8.37 0 7.78 13.2 0 4.56 6.5 5.2 8.3 0.7 8.69 7.96 2.43 4.11 2.59 6.28 3.09 6.02 6.26 7.49 8.47 3.62 9.78 2.73 2.05 10.4 2.86 1.53 4.99 4.06 8.88 5.75 9.04 8.85 7.69 0.7 8.98 10.6 6.41 9.31 2.25 7.19 4.67 6.13 7.23 8.4 7.36 7.06 7.89 10.7 7.68 1.53 12.2 7.49 3.69 5.87 9.34 8.17 11.9 7.8 8.41 8.83 2.43 0 6.88 2.05 3.69 2.05 8.78 1.53 7.92 14 2.86 6.25 10.8 0 8.61 3.38 2.59 11.3 8.76 9.45 6.95 8.78 2.57 0.7 8.85 4.26 6.81 6.4 9.02 13.8 5.25 9.03 10.3 12.6 11.3 1.81 0 11.6 8.97 3.09 12.4 0.7 8.9 10.4 13.2 0 4.11 12.3 0 1.17 4.7 10.1 11.6 4.31 10.5 0 9.59 0.7 6.83 9.62 12.2 5.58 7.72 5.25 2.25 4.35 8.1 7.86 5.01 10 2.43 3.19 1.17 1.17 1.81 11.2 9.27 10.7 8.56 9.4 9.7 3.46 7.68 12.4 8.76 12.3 8.86 3.54 10.7 8.72 3.46 7.52 7.86 5.78 3.38 7.26 8.83 5.57 11.2 3.69 8.42 8.52 5.49 3.09 7.1 8.63 7.26 5.55 4 6.24 12.1 2.98 4.56 10.9 1.53 4.63 4.6 2.59 3.19 6.95 6.81 5.34 0.7 4.35 6.66 10.5 8.56 1.81 9.27 0.7 0.7 11.4 10.1 5.83 9.95 6.92 5.34 0 2.86 0 7.65 5.9 8.34 5.62 8.21 2.25 2.43 0 0 7.69 0 4 9.03 0 10.7 12.8 8.21 4.44 8.03 11.8 3.19 6.41 8.35 8.26 10.7 9.9 8.07 7.66 11.8 8.15 0 10.5 1.17 0 7.6 9.32 5.83 5.15 12.6 6.9 0 2.14 6.68 9.61 6.34 7.27 0 4.21 2.25 6.97 8.69 6.63 12.5 7.15 6.77 8.98 2.43 11.1 0 7.8 1.81 7.66 7.12 1.17 9.74 6.85 0 7.86 3.69 5.47 10.5 12.6 11.6 9.32 1.17 0 8.36 3.46 11.5 6.85 7.34 10 10.2 7.31 8.08 7.18 7.06 7.06 7.98 9.24 0.7 8.5 11.9 8.56 8.07 10.9 10.5 4.56 6.45 10.9 2.6 10.8 7.22 6.67 11.3 11.5 10.6 10.1 1.21 6.5 8.7 5.32 1.53 7.14 3.46 9.6 0 10.8 14.4 2.43 4.52 7.6 3.19 7.27 14.3 12.5 2.73 0 10.2 0 1.17 8.38 9.35 12 9.15 9.36 5.27 5.64 7.19 8.69 3.76 14.1 4.84 11.8 9.16 6.92 11.6 7.92 9.06 6.25 4.99 10.7 10.5 0 1.81 10.4 3.54 1.81 9.52 0.7 0 6.38 4.16 6.88 3.76 7.12 0 8.27 12.4 7.25 0 3.46 8.78 8.49 5.51 5.89 10.5 9.07 0 11 10.8 9.79 1.17 9.12 7.52 5.58 7.51 4.16 7.1 7.55 7.05 9.27 5.89 0 0.7 9.9 6.56 4.44 10.8 11.2 6.94 5.12 2.43 8.86 8.16 9.88 5.04 6.15 8.42 0.7 4.7 4.87 10.3 4.87 1.53 7 10.7 4.16 1.17 6.17 6.61 0.7 0 8.53 3.17 4.42 4.16 7.95 7.5 5.79 6.37 6.9 5.53 5.93 4.06 11 9.61 9.64 2.59 0 9.43 11.7 0.7 12.5 9.58 5.67 6.29 7.33 3.19 4.16 1.53 11.5 2.43 9.45 2.05 9.73 3.76 7.06 6.14 2.43 1.81 12.3 7.96 4.9 0 1.53 2.98 0 2.25 9.14 4.93 12.6 0 8.69 11.1 7.27 12.1 7.92 10.4 10.8 6.03 4.26 10.5 10.3 4.67 8.44 8.67 10.5 5.62 2.98 8.23 3.19 5.94 5.34 6.92 6.08 7.9 8.07 6.69 4.52 6.05 0 6.9 6.83 8.92 9.46 6.77 5.68 5.22 11.3 2.25 7.32 6.85 4.4 4.87 10.9 9.46 8.23 8.5 2.43 9.1 0 4.11 1.17 10.2 4.67 1.17 6.35 7.63 5.27 8.75 3.62 8.71 7.93 9.51 8.69 7.33 11.6 1.81 6.83 4.52 11.5 0.7 7.02 9.49 3.95 2.59 8.14 6.34 10.2 0.7 5.04 6.34 7.48 8.41 9.54 7.43 2.43 4.44 4.51 8.78 6.8 5.36 2.98 8.03 5.69 0 11.1 9.04 4.96 9 0.7 3.19 7.96 9.64 4.48 0 7.76 1.81 3.29 2.86 6.55 0 7.66 5.75 5.17 2.43 2.05 12.4 6.51 7.36 3.95 2.05 2.86 7.82 0.7 10.3 8.3 4.84 0 4.56 0 3.09 7.45 1.17 0 12 2.86 0.7 3.76 0 4.96 0 7.31 6.31 5.12 8.57 3.57 9.05 2.86 7.4 7.87 3.62 12.7 8.61 7.65 8.41 8.3 9.44 7.94 8.89 3.38 0 0 2.86 7.72 4.67 3.38 7.11 10.6 7.58 2.25 6.97 1.81 2.59 2.25 2.98 5.07 6.67 3.76 9.96 2.59 7.08 2.25 4 8.2 5.1 8.23 7.77 7.49 2.86 0 9.11 5.36 8.33 6.3 6.11 7.85 3.69 5.68 8.61 9.7 7.16 10.2 3.38 4.87 4.8 4.87 7.59 4.93 0 4.74 2.73 3.38 9.41 6.72 0 5.58 6.24 4.67 0.7 6.62 8.49 1.81 8.23 3.89 9.57 2.59 7.84 9.12 6.51 12 10.2 0 0 11.4 5.51 1.81 5.62 9.12 7.04 3.54 1.53 10.2 3.25 3.54 8.32 0 10.2 9.76 0 8.33 13 4.06 4.16 10 1.53 4.21 4.06 9.23 9.43 9.04 1.53 1.23 7.36 5.97 3.76 2.05 12.8 12.2 4.35 9.43 2.73 4.52 12.3 9.72 9.42 0 6.92 12.3 0 3.89 11.9 0 0 2.05 4.26 4.8 1.53 8.26 0 1.17 8.94 10.1 5.75 6.86 12 0 5.51 3.76 5.69 7.31 4.96 7.04 1.53 9.7 5.01 7.93 0 3.54 2.86 8.55 8.1 2.43 4.7 4.21 5.79 4.63 3.09 7.54 4.93 14.1 6.51 16.6 8.48 5.87 1.53 4.4 9.67 8.11 5.4 2.59 7.28 2.59 6.58 7.62 8.37 11.8 6.42 2.05 5.9 1.17 4.52 3.53 7.88 6.52 3.62 3.09 8.74 11.6 2.98 4.67 1.53 4.63 7.32 4.9 7.25 4.11 9.68 8.59 8.38 12.3 4.26 2.05 4.16 0 4.31 0.7 10.7 3.46 11 9.2 5.1 9.09 3.89 13.2 7.02 8.78 7 3.09 2.98 6.72 7.98 4.11 10.9 6.74 8.72 7.42 13.5 2.59 7.42 8.13 10.3 6.63 4.31 4.16 0 2.25 8.54 11.5 6.92 3.38 8.57 8.49 8.22 4.21 5.12 0 3.29 13.5 7.95 11.5 5.04 7.65 7.74 4.16 8.9 10.4 9.04 7.68 8.5 10.7 7.17 7.87 8.38 7.21 2.05 9.01 11 9.29 8.33 8.8 6.31 0 0 3.89 12.3 3.69 5.29 4.11 7.05 1.53 8.95 7.13 10.4 8.72 10.2 4.74 9.25 7.02 0 5.71 0 1.12 8.47 8.22 8.18 2.25 6.22 2.86 0 8.4 5.89 13.7 9.84 11.2 0 0.7 7.84 0 8.68 4.67 6.09 8.83 11.6 13 0.7 6.53 9.57 7.6 7.12 9.45 10.8 13 10.8 9.94 13 8.58 16.9 0 6.72 11.3 3.89 7.65 10.6 9.24 4.9 3.29 14.7 9.35 5.81 9.06 7.62 7.15 11.4 4.52 10.8 1.81 5.45 5.58 4.35 9.5 1.17 9.56 0 0 2.05 6.38 0.7 5.96 6.38 5.96 11.3 7.52 5.12 6.78 0.7 9.57 0.7 8.33 4.11 5.53 2.43 0 6.19 8.77 5.25 4.77 4.8 8.35 9.45 10.2 7.39 2.98 1.17 0 4.87 1.53 1.53 1.81 10.6 2.43 10.3 7.89 9.69 5.73 6.71 4.67 1.17 14.1 7.51 2.59 11.9 0 0 12.4 11.5 1.17 9.69 3.38 3.19 0 0.7 11.4 3.38 4.16 1.53 8.73 8.53 0.7 4.9 12.7 9.5 6.86 7.24 8.58 6.26 5.2 5.4 7.11 9.71 10.8 11.5 4.74 6.74 4.11 9.14 10.2 5.66 1.81 9.74 9.49 0.7 8.29 4.56 3.09 9.92 0.7 1.53 10.4 2.43 2.86 7.7 2.43 5.12 7.04 1.17 9.15 11.7 9.43 5.69 11.3 7.8 0.7 6.89 11.2 11.3 8.34 2.98 1.17 1.17 6.7 5.25 5.66 2.73 4.63 7.66 8.6 10.2 5.36 2.05 4.26 4.35 6.63 5.36 2.98 9.02 5.62 0 11.5 7.12 6.67 7.52 4.06 5.49 2.43 5.86 5.62 2.86 7.86 6.24 4.74 5.12 8.53 11.8 0 5.27 4.4 6.33 8.62 4 12.3 5.86 10.6 9.8 6.2 1.53 9.51 9.34 2.59 2.25 5.68 10.5 10.3 11.5 11.3 1.17 7.98 0 11.9 0 9.19 0.7 2.43 8.84 13.3 0.7 12.9 1.6 12.2 2.98 1.17 11.1 6.61 8.67 11.2 12.9 4 2.43 6.83 1.81 12.6 4.63 11 7.67 11.7 13.5 1.81 0.7 10.9 2.05 1.81 9.07 0 9.6 0.7 7.01 12.1 11.4 8.48 9.42 6.33 5.76 0 6.78 5.01 10.5 12.2 4.35 9.58 10.2 6.54 8.87 6.29 8.49 8.85 2.98 9.89 12.5 8.59 2.05 2.73 0.7 4 6.92 4.26 8.46 3.09 4.4 6.09 8.68 4 6.71 3.38 9 8.36 1.53 2.86 8.29 7.73 1.53 2.25 5.4 8.28 0 9.4 4.44 4.21 0 8.42 9.15 7.75 2.25 3.95 6.56 5.83 1.81 0 3.29 5.92 7.46 0 8.94 8.14 3.89 9.13 7.27 0 9.44 0.7 3.46 1.17 4.06 2.25 9.75 5.49 4.35 7.94 6.73 9.56 0 10.2 7.62 0 2.59 4.31 5.75 12.7 10.2 11.8 1.81 9.64 9.87 9.43 11.8 15.9 7.35 7.73 10 9.54 13 13.9 12.4 7.99 6.6 11.1 3.54 10.2 10.7 11.2 9.31 4.35 5.43 6.41 12.2 0 0 0.7 0.7 9.75 9.58 12.1 4.26 2.05 7.2 7.95 6.63 2.73 0.7 4.48 0 3.62 9.55 1.53 9.34 10.3 12.3 8.65 2.25 9.42 10.4 10.9 8.94 3.89 8.38 4 9.8 8.03 1.81 6.25 8.51 10.3 13.8 4.84 10.1 9.15 11.9 9.63 9.36 8.51 0.7 9.49 2.05 0 9.63 9.01 6.1 0 10.7 7.31 9.07 8.68 15.7 12.9 11.9 7.24 9.28 7.38 7.78 7.11 8.44 8.86 12.3 6.78 12.5 5.98 10 10.9 8.39 10.2 8.9 6.89 9.65 11.1 9.1 10.5 9.5 10.3 7.19 9.59 5.38 7.86 9.57 4.66 7.98 9.39 6.08 7.37 11.1 15.2 12.3 13.3 14.7 6.96 7.21 4.93 11.4 9.29 5.68 6.97 4.77 5.55 11.6 9.65 5.67 11.6 15.1 0 12.5 9.63 10 5.99 8.09 7.47 11.3 12.7 12.7 14.9 10.5 12.9 5.87 7.93 3.09 9.07 8.21 2.98 2.43 6.32 7 8.7 9.34 10.2 10.6 11.6 6.65 6.24 5.78 10.8 4.6 1.17 1.53 8.51 1.17 12.9 5.58 5.38 7.5 3.69 7.08 9.91 5.9 12.9 8.14 9.82 8.45 10.8 0.7 7.92 11.1 8.11 1.17 10.1 9.21 8.29 2.73 11.4 2.25 7.09 10.4 2.25 0.7 1.17 2.21 8.93 6.38 6.08 12.2 9 7.44 12.9 6.25 8.7 8.36 2.73 6.43 10.1 12 7.04 12.3 8.36 7.58 12.1 13.8 13.3 12.9 13 0 8.52 1.17 10.9 3.38 3.29 9.87 0.7 0 0.7 7.41 0 9.94 6.05 0.7 2.25 8.43 7.37 7.47 3.89 0.7 8.69 2.25 8.83 7.38 11.8 8.06 0 8.45 17.3 12 6.4 0 8.39 10.1 9.96 5.1 7 11.2 1.81 1.81 0 2.98 11.6 10.6 1.89 9.63 9.43 1.17 8.24 3.54 7.8 2.59 7.84 0.7 0 1.17 8.06 7.26 4.77 5.34 9.24 9.76 1.17 5.71 10.2 5.99 6.93 3.82 7.52 6.47 6.74 7.53 6.91 9.95 11.3 8.59 8.19 9.86 11.2 9.86 5.66 7.36 8.7 10 7.92 7.99 3.76 9.51 8.5 9.51 9.99 9.18 10.5 6.87 8.13 6.74 2.86 10.7 2.86 7.45 1.81 9.69 4.93 4.6 7.23 7.88 10.7 3.82 0.7 9.98 8.45 4.48 5.34 11.9 5.86 1.53 1.53 8.26 0 10.7 9.92 8.37 7.13 9.53 10.2 4.6 4.48 4.31 8.7 3.62 11.6 9.66 4.63 13.7 4 3.19 1.17 0.7 0 4.52 7.14 6.6 10.7 12.5 10.4 9.84 11.7 7.94 8.03 12.7 8.4 0.7 0 9.86 8.26 7.65 3.89 7.52 8.83 9.82 7.67 10.3 9.2 12.9 9.67 11.2 4.11 6.66 9.88 7.38 9.76 6.33 8.45 12 13.2 9.43 7.5 0 5.79 2.59 7.34 1.53 10.5 4.4 0 10.1 12 5.22 16.6 4.52 11.5 9.04 7.68 6.6 8.06 9.13 2.05 5.73 9.58 11.9 10.5 10.4 10.2 2.05 7.5 10.9 0.7 0 12 9.08 8.87 1.17 11.8 0 9.59 9.55 7.21 10.6 7.3 10.4 7.84 10.5 11.6 8.02 10.2 11.3 6.03 6.09 12.8 0.7 11.4 0.7 11.3 13 13 14.4 10.9 10.6 12.2 6.5 4.48 7.57 10.1 9.28 0 9.5 5.4 6.15 7.12 7.84 2.59 20.4 12.1 11.4 10.5 1.17 7.37 9.25 0.7 2.73 10.1 4.99 9.75 7.38 15.2 9.37 11.1 9.91 4.7 4.99 14.7 11.7 9.59 10.6 14.9 14.5 10.1 10.1 7.43 0 15 5.58 3.29 9.36 6.41 6.08 6.13 8.36 14.9 11.7 16 12.2 8.68 9.61 1.17 8.33 7.11 12.4 9.43 8.96 7.19 9.7 7.94 4.74 5.81 14.5 9.76 13.4 0.7 2.43 8.1 1.81 4.44 10.8 1.17 6.9 12.2 4.84 6.32 9.37 7.87 10.7 4.21 6.45 7.48 8.02 6.83 8.44 10.3 5.6 9.19 8.7 0.7 10.3 10.1 8.3 5.88 10.1 3.54 10.4 3.82 5.79 7.58 7.47 2.86 0.7 3.89 5.9 3.29 3.46 11.1 0.7 7.48 11.6 13 3.76 1.17 1.17 3.19 6.22 5.68 0.7 1.81 8.16 6.87 1.17 0 4.35 7.57 4.96 3.76 5.13 8.63 5.82 11.8 4.6 7.28 3.76 2.43 8.09 9.22 1.17 10.4 9.81 8.89 2.25 11.2 7.91 7.14 5.6 10.2 8.02 8.19 3.62 8.85 6.15 9.72 5.99 6.95 4.4 2.59 9.17 9.61 3.69 0 1.17 2.43 3.46 9.8 1.53 2.29 6.79 2.25 11.4 2.05 8.19 10.3 6.11 7.65 4.63 9.13 5.99 7.94 1.53 2.73 12.4 9.04 0 10.4 7.22 6.65 8.39 0 8.45 1.17 7.94 6.82 7.84 0.7 9.7 4 9.08 9.07 9.1 4.26 2.43 9.81 7.61 6.54 5.12 2.73 7.68 10.6 5.1 8.79 7.56 1.17 8.89 7.22 5.11 8.08 12.4 9.51 5.27 0 2.86 0 3.89 9.56 10.5 0 1.17 1.17 1.81 6.03 0 5.68 3.54 2.86 12.2 11.1 9.83 5.12 9.97 10.6 8.7 5.71 13.4 3.19 8.27 6.15 5.61 2.25 0 6.06 1.53 3.62 0 7.81 6.23 13.1 7.42 11.1 2.43 9.63 11.8 6.31 13.1 5.71 8.31 8.38 6.84 10.5 7.9 9.73 5.4 11.4 8.61 5.58 0 10.8 3.19 5.84 8.64 11.6 2.43 11.7 2.59 12.2 7.76 9.95 7.71 9 10.6 12.4 9.53 5.84 6.77 9.81 4.52 9.59 11.5 9.52 10.4 8.51 3.76 4.44 9.26 7.95 8.29 9.46 8.62 8.37 6.17 8.68 0 8.75 9.99 6.77 11 7.43 12.2 8.63 10.9 0 9.87 7.5 10 11.2 1.17 12.4 4.77 10.9 8.06 6.86 8.73 10.3 9.61 11.1 9.59 7.02 10.3 10.6 8.68 10.7 9.5 8.02 9.01 11.6 9.23 1.53 9.29 9.89 1.53 7.94 7.7 8.25 15.5 8.92 5.25 9.38 8.68 10.3 8.56 9.46 10.9 9.8 9.21 7.12 10.6 5.9 5.58 9.87 0 10.2 10.1 9.59 9.87 9.76 3.69 11.5 8.13 13.5 9.89 10.3 10.5 6.98 10.3 7.49 11.8 11.6 9.78 10.2 7.21 11.1 12.9 9.3 0 7.38 8.87 5.38 0.7 2.98 8.3 7.9 12.3 9.79 3.54 2.86 11.6 6.72 9.33 4.4 9.85 10.7 0 0 0 10.5 11.6 9.66 7.71 4.87 7.8 0.7 8.28 10.9 11.3 9.27 7.95 8.11 3.09 9.75 0.7 9.84 8.27 10.4 9.31 9.09 8.93 11.5 0 12 10.2 9.47 5.17 3.69 6.41 9.55 9.78 9.42 9.08 10 8.71 8.52 9.06 8.02 5.22 10.7 9.36 9.36 12.3 6.77 10.8 9.1 9.95 11 7.9 9.58 7.39 11 9.69 2.25 7.8 5.51 9.35 12.2 10.1 10.2 11.2 10.1 4.44 9.94 10.5 11.7 1.98 9.95 9.43 9 9.73 10.9 9.95 7.8 9.26 9.42 9.18 5.2 8.03 3.95 9.78 4.96 10.8 7.55 7.14 9.81 10.8 4.99 8.27 5.45 7.98 8.21 8.6 2.25 10.9 5.27 10.6 4.35 1.17 6.95 9.69 8.94 7.22 7.98 8.88 10.4 7.12 0 2.43 9.37 10.1 10.7 2.73 10.9 8.26 10.9 9.37 7.12 9.58 9.97 7.01 8.88 3.09 9.95 11.3 10.8 9.59 9.85 8.73 9.75 3.54 2.25 4.21 1.17 9.35 12.2 10.8 8.22 10.3 12 9.69 11.8 9.35 9.2 8.71 9.28 10.2 9.15 10.7 11.8 10.3 11.1 12.2 10.4 7.59 9.25 9.55 10.6 9.66 9.6 7.9 5.96 9.19 4.99 9.69 7.56 10.6 10.2 9.3 8.1 11 11.5 12.1 11 9.6 13.6 6.09 9.24 12.2 10.6 10.8 10.6 9.63 6.54 11.9 12.3 2.05 10.4 6.82 2.98 10.1 8.47 9.03 9.84 7.38 10.9 11.5 9.46 0.7 9.03 10.1 4.31 9.66 7.21 9.59 10.1 10.7 9.11 7.86 6.31 8.58 9.53 7.52 5.99 8.25 11 7.28 2.59 9.19 8.54 9.74 9.63 10.5 10.1 10.7 6.45 8.45 9.12 10.4 11.1 2.25 6.41 9.02 5.4 5.6 9.6 10.1 7.56 3.62 8.35 8.83 7.88 11.2 11 10.3 9.55 9.15 6.18 7.1 9.18 10.1 10 7.93 8.07 13.4 9.39 13.5 0.7 9.41 1.17 5.9 10.6 7.63 8.84 9.48 10.4 9.62 8.94 11.3 8.73 13 10.2 10.6 3.69 9.54 9.63 5.99 7.94 9.88 7.95 8.67 8.31 8.13 8.39 10.2 8.59 10.1 8.09 9.86 9.21 11.4 8.73 4.4 11.6 10.2 12 10.1 9.04 8.7 9.5 9.04 9.68 8.97 6.37 10.1 10.5 0 9.84 11.9 9.06 9.57 9.58 1.53 16.9 10.2 10.8 12 9.83 8.54 8.89 9.3 10.5 1.53 9.54 8.17 8.91 7.23 12.8 7.02 12 8.66 11.3 9.49 10.1 7.29 9.66 8.17 9.27 8.45 12.9 8.34 8.89 10.8 12.9 11.2 9.78 9.59 9.17 7.94 11.4 9.76 9.74 9.21 6.01 7.85 10.4 9.11 8.26 8.13 8.43 9.58 9.78 9.81 5.68 10.1 8.36 9.78 7.14 5.51 5.25 0.7 9.99 3.19 9.25 12.2 5.98 9.7 9.75 2.05 7.43 9.24 1.81 7.95 3.62 9.03 11.3 10 8.62 9.88 11.5 12 7.83 9.94 6.39 5.12 10.1 10.6 7.15 11 9.37 8.03 4.99 9.95 10.5 12.8 9.14 8.4 11.2 9.72 10.8 11.2 0 9.82 10.8 8.72 9.48 10.4 9.7 7.33 1.17 11 11.6 9.17 6.97 9.91 0 10.7 8.63 8.48 9.72 11.5 9.5 9.62 9.35 11.1 9.39 8.49 12.9 10 8.91 2.05 1.53 13.1 8.89 9.9 12.9 9.41 9.69 9.45 6.09 11.6 11.9 8.82 0 7.17 9.97 8.11 0.7 9.19 9.68 8.06 10.4 1.53 8.48 0.7 1.53 8.36 11 9.27 10.9 5.17 5.98 7.08 7.9 8.72 9.72 12.2 10.2 11.3 10 7.5 1.17 8.59 0 7.55 10.4 2.43 6.58 11.7 3.89 10.5 10 9.11 2.25 11 9.74 9.19 10.5 11.4 7.95 7.41 8.45 9.63 4.4 9.19 9.68 8.66 9.36 10.3 2.25 10.5 8.32 10.4 10.9 8.89 8.52 8.19 2.43 6.83 9.62 9 8.7 2.86 0 8.39 6.42 10.7 4.77 10.5 9.24 0.7 9.19 5.38 7.77 6.97 10 9.78 11.8 9.64 9.57 7.85 5.81 13.6 2.59 8.16 8.52 8.42 12.5 10 12 8.94 1.81 8.49 6.43 11.8 4.48 12.1 9.83 12 10.9 12.6 10.7 10.3 11 8.99 6.09 9.59 8.67 1.53 7.47 6.73 2.59 11.4 8.96 3.62 11.5 10.5 11.3 11.8 0.7 2.74 8.7 6.3 7 6.58 10.4 8.61 8.7 2.25 7.43 10.4 8.32 7.89 5.71 11.9 9.36 0 7.08 5.45 2.29 6.76 4.7 5.8 2.43 9.88 0 8.82 2.59 6.76 7.88 5.49 6.86 7.59 7.55 0 7.02 1.81 11.3 8.89 6.49 9.71 3.76 11.4 14.7 8.6 10.6 0.7 17.3 12 10.5 10.7 5.9 1.81 2.73 7.83 1.53 9.74 11.7 4.74 2.36 7.45 6.48 8.3 6.82 1.17 3.09 9.02 10.7 9.67 1.53 4.56 5.62 9.09 7.72 9.21 4.35 9.64 4.52 11.5 8.96 5.07 4.67 15.5 5.01 4.35 9.6 4.35 5.58 8.54 7.21 5.99 0 8.8 11.3 8.62 8.12 1.81 7.12 6.97 8.26 1.17 5.95 9.32 1.53 0 8.09 0.7 1.53 12.2 8.42 4.87 5.68 1.17 0 5.75 8.98 4.06 9.27 8.82 6.17 6.83 1.17 12.7 0.7 7.21 12 4.63 9.3 7.72 6.78 5.55 9.43 4.31 7.76 1.53 0 1.53 8.68 8.95 7.65 4.26 0.7 7.44 0 8.72 4.8 5.25 4.7 0 8.24 0 6.96 0.7 11.7 6.67 4.11 7.25 4.35 6.58 8.25 7.96 8.35 4.26 1.53 1.17 3.19 6.52 8.76 6.03 8.56 3.76 6.97 1.81 7.28 9.88 5.07 8.92 6.15 8.77 3.54 9.38 6.49 0 4.96 0.7 1.17 0 3.69 7.05 0 8.6 3.95 0 0 4.4 4.31 4.06 5.58 2.43 8.52 3.19 8.26 4 4.9 2.59 0.7 6.67 4.93 1.17 1.81 1.17 9.83 10.1 12.6 6.02 1.17 9.39 10.4 7.85 9.24 0 8.17 12.9 8.8 8.7 10.1 6.53 2.25 6.47 1.17 9.88 10.1 12.3 0 8.95 4.74 10.8 7.28 11.2 9.5 8.29 8.21 6.85 0.7 10.2 8.31 10.1 6.45 6.65 0.7 10.5 11.3 7.2 2.86 8.67 10.9 9.99 8.88 6.54 0 11.4 6.96 1.53 11.3 9.76 9.5 1.17 11.6 6.6 2.05 10.1 6.75 10.9 10.5 13.3 9.82 9.15 9.34 11.7 7.81 10.4 5.95 9.67 4.77 8.81 8.89 10 8.11 9.9 0 7.1 2.86 8.21 10.5 12.5 9.19 11.4 12.9 10.1 0.7 6.53 9.51 8.86 8.28 9.07 8.09 7.12 11.3 7.46 1.17 3.46 6.89 10.5 10.5 8.38 17.5 11.8 8.96 9.28 8.19 7.16 8.9 8.24 3.46 10.6 4.21 5.85 13.7 9.11 6.71 10.3 9.82 9 4.99 10.8 10.6 11.6 0 6.09 8.38 9.15 3.46 8.26 5.92 9.93 8 6.06 2.98 8.89 0 8.79 0 0 3.29 12 10.1 4.88 10.8 9.85 10 6.58 9.16 8.86 9.91 9.28 9.8 7.63 6.35 8.21 9.66 9.98 8.36 8.27 13.6 6.33 9.37 10.2 8.78 8.12 10.3 9.35 8.43 14.9 9.44 9.22 7.6 9.05 8.92 9.59 9.83 9.05 10.2 7.57 9.17 13 13.6 7.61 10.2 7.95 11.9 9.39 11.5 6.69 0 9.02 11.8 8.33 11.3 8.25 11.4 8.98 11.5 3.38 9.79 4.77 9.33 10.1 10 10.1 12.5 9.9 9.71 6.05 3.09 3.19 8.76 9.79 7.14 3.09 1.53 5.55 9.92 8.7 9.83 0 10.5 7.86 7.39 6.24 0.7 8.12 8.78 7.54 7.65 1.53 7.69 5.68 6.96 9.77 9.08 11 9.91 9.16 10.1 11.7 9.94 10.9 8.74 12.7 0.7 8.47 8.31 9.85 10.3 9.55 11.1 8.96 8.15 0 10.9 7.64 11.4 10.6 0 10.2 6.01 9.73 10.4 10 8.3 9.64 8.44 8.93 9.42 11.3 12.1 8.69 3.29 7.08 10.1 8.24 7.09 4.31 9.66 2.25 9.11 7.22 6.41 0 11 11.2 8.11 5.99 10.5 2.43 9.78 11.1 10.4 6.09 11.6 7.03 8.18 10.2 6.55 10.7 5.27 9.93 7.83 8.77 0.7 8.08 10.9 0 8.48 8.92 9.3 9.44 7.1 0.7 10.1 0 3.69 5.2 9.29 9.59 11.6 8.55 5.45 9.28 4 4.56 1.17 5.15 0 2.86 10 7.3 9.48 3.09 10.1 9.08 0 8.17 11 9.8 9.36 9.58 5.96 7.64 9.6 10.5 8.28 9.95 6.33 3.38 14.2 10.4 10.2 0.7 12.1 0.7 8.82 8.27 10.3 5.12 8.87 10.6 10.8 0 11.1 10.5 10.5 10.5 10.4 5.6 10.5 9.48 4.74 10.1 11.1 2.25 12.3 9.11 9.9 4.21 6.62 4.87 9.71 10 8.15 10.8 7.74 7.61 8.13 9.12 7.09 9.86 9.87 10.3 8.77 8.61 9.01 9.63 9.21 10.7 6.76 2.05 0 10.3 0.7 0.96 6.52 9.26 8.36 10.4 5.93 8.54 9.75 2.73 9.5 3.76 7.11 0 12 12.2 7.37 0.7 4.52 3.61 6.17 7.48 8.32 12.7 1.81 7.61 6.37 0 9.47 5.17 11.1 9.82 7.22 7.16 9.38 6.62 0 0 12.2 11.6 6.81 0.7 7.9 0 12.4 8.08 9.46 7.75 11.4 0 10.4 8.72 7.91 10.6 0.7 3.82 8.28 7.54 1.81 8.17 9.99 14 8.47 10.9 10.2 6.34 9.65 9.55 0 1.53 9.03 0 8.83 8.3 5.53 10.4 9.69 6.9 11.4 9.53 7.66 10.1 1.17 9.7 0 5.64 9.86 6.15 10.1 10.7 12.2 10.4 1.53 2.59 9.83 10.6 12.9 0 5.2 9.53 8.91 9.05 4.93 6.64 8.14 4.9 10.4 2.25 13 2.05 7.74 0.7 4 10.1 10.3 0.7 0.7 10.3 10.6 10.5 11.9 9.68 8.99 6.54 5.64 0 7.98 6.01 8.91 4 2.59 11.1 0 7.51 3.76 7.45 8.25 10.1 5.17 10.3 11.5 6.88 5.38 0 6.81 7.8 5.32 4.26 8.79 10 0 8.95 0 7.42 7.95 11.1 11 9.29 12.4 7.72 4.8 3.69 11.2 6.15 0 14.1 0 2.73 1.53 6.2 10.9 8.06 7.79 11.9 11.1 3.95 8.63 9.54 10.5 9.44 5.04 5.32 6.62 9.05 11.5 8.83 8.72 9.16 8.91 10.8 11.3 9.86 9.24 7.33 0.7 8.25 9.64 5.04 0 6.49 4 12.2 11.3 8.67 8.19 1.17 1.53 10 6.09 2.43 10.2 8.36 9.73 3.38 7.81 4.52 9.03 11.4 4.7 9.64 10.8 5.62 9.9 9.98 10.8 9.78 4.26 11.2 11.3 7.69 11.4 11.7 8.72 9.56 8.87 8.34 0 4.21 10.6 8.94 10.4 8.84 4.4 5.98 9.71 9.74 4.35 4.74 7.47 10.8 10.2 8.93 1.81 10.6 8.9 8.33 11 1.53 10.5 10.5 7.22 0 10.2 13.2 10 9.42 15.6 1.81 10.1 9.38 10.9 6.43 8.93 9.88 6.24 8.55 12.3 10.6 2.05 5.75 10.1 13.2 2.25 5.32 12.7 11.5 1.68 0.7 1.81 11.2 7.87 0 8.21 8.66 4 9.95 3.19 0 12.4 0 7.22 9.58 10.5 10.4 11.3 11.1 14.9 13.2 10.3 0.7 8.03 3.88 0.7 9.83 11.4 8.53 13.1 9.03 6.87 6.17 2.59 8.31 1.81 2.73 1.17 2.43 8.49 4 7.56 0.7 8.47 1.81 2.05 10.4 2.73 5.01 9.98 1.17 4.74 15 2.25 4.87 3.82 2.05 7.92 9.55 8.79 12 10.3 1.17 2.43 2.25 5.58 1.53 9.94 5.86 8.48 7.89 8.19 1.81 6.51 6.89 0 6.46 4.99 7.14 7.52 9.21 4.21 7.07 2.59 10.1 6.22 11.4 5.87 1.17 2.73 2.86 3.19 3.19 0.7 9.26 0 5.22 5.1 9.25 4.44 9.18 5.4 0.7 2.78 1.17 10.6 2.43 3.38 0 7.04 1.17 5.4 8.31 1.17 9.83 10.6 6.22 4.44 0 3.46 3.89 5.91 2.86 7.47 0.7 0.7 2.25 10.8 8.36 6.65 6.26 3 8.39 5.78 9.18 4.52 9.16 4.84 2.43 3.19 8.42 8.26 0 2.25 7.65 8.64 9.49 5.81 2.59 7.16 8.9 0 5.9 8.03 3.62 5.25 6.33 5.86 0 9.37 2.73 3.29 1.53 1.53 7.06 6.8 0.7 3.09 0 10.8 3.09 13.6 7.82 10.7 8.16 8.4 4.96 7.45 6.1 4.9 0 2.25 7.35 2.43 0 6.26 0 9.4 0.7 6.13 2.25 3.58 3.29 6.98 7.8 7.61 1.6 2.73 5.57 2.98 4.9 0 2.43 12.4 2.59 6.11 6.55 5.2 6.4 0 5.66 3.82 0 6.97 1.53 0 0 9.22 4.96 5.69 3.89 7.09 0.7 2.73 0 8.29 0 3.54 0.7 8.04 6.53 7.64 3.69 6.38 0 6.97 0.95 8.13 0.7 3.61 2.25 5.4 0.7 3.95 0 0 5.01 0 7.87 0.7 5.55 2.25 6.96 9.31 5.99 2.59 10.1 5.04 0 0.7 2.73 5.12 0 8.62 9.68 8.34 7.89 9.3 2.05 8.05 2.05 3.62 6.31 6.19 6.92 7.03 7.82 8.28 0 5.27 8.01 9.42 4.4 6.68 6.76 1.17 10.6 1.17 5.64 9.86 9.48 4.4 9.63 5.07 6.05 1.17 2.59 11.6 1.81 7.8 4.63 0.7 4.73 5.81 8.91 9.36 2.05 7.94 0 7.75 2.05 3.09 2.05 3.62 7.55 6.18 9.37 1.17 6.75 8.57 1.81 6.99 9.7 7.08 2.73 8.1 0 4.91 0 9.74 4.42 4.48 7.2 2.73 2.25 6.82 0 3.54 6.04 5.69 2.14 5.38 2.43 0 3.76 3.82 0.7 1.17 8.85 7.54 1.17 11.4 6.97 9.93 5.62 1.53 1.17 9.06 4.06 7.69 9.52 9.65 3.95 0 5.99 2.59 0.7 6.76 9.05 10.4 6.66 1.81 7.19 8.64 9.69 8.88 0 0.7 1.17 8.42 0 3.29 4.87 6.9 4.77 7.88 4.7 5.51 8.98 11.5 11.2 10 11.7 12.8 14.7 14.5 12 6.57 5.29 11.3 10.5 10.8 0 2.43 7.79 9.2 10.4 11.1 10 10.5 14.7 12.9 10.1 9.63 9.49 0 7.62 6.52 8.74 0.7 11.2 7.85 11.8 11.6 9.21 10.2 9.15 9.74 7.62 6.84 8.47 10.7 6.08 9.56 10.7 9.13 0 6.84 9.4 7.09 10.9 10.2 11.7 8.17 13.6 2.05 2.05 10.3 0.7 10.7 0 10.3 4.7 8.06 11.4 3.69 8.58 7.25 9.96 9.53 13.9 6.38 10.5 10.5 9.83 8.13 9.39 10.1 8.33 8.85 9.14 6.25 10.3 9.53 8.54 10.2 7.34 11.8 8.35 7 7.59 9.18 8.02 9.76 10.1 8.42 9.06 10.4 10.4 11.3 9.43 10.1 4.93 8.95 0 7.36 7.17 7.98 0 9.63 9.58 7.76 10.3 0 2.43 7.72 0 10.8 3.82 4.63 7.88 5.38 1.17 0.7 9.6 13.1 10.6 5.38 14.6 2.59 10.8 12.1 10.3 9.91 11.8 11.1 10 10.6 8.25 9.69 9.04 8.13 8.89 4.74 8.14 11.3 5.29 9.3 10.1 6.69 9.16 9.68 8.08 8.97 9.33 8.46 9.6 6.09 7.35 8.56 10.3 12.8 10.7 9.43 0 10.5 9.55 8.95 9.13 7.84 1.17 10.3 7.29 3.89 10.1 9.44 0 8.15 9.16 4.44 10.1 3.89 10.8 0.7 3.38 7.36 6.24 8.64 2.05 12.2 7.94 6.77 2.25 6.14 3.29 7.95 7.5 0 3.38 10.8 12.7 10.2 2.05 9.99 9.4 8.1 10 10.2 9.36 10.2 4.97 10.9 0 9.45 6.41 11.9 7.88 5.6 7.6 9.25 0.7 9.2 6.19 8.08 9.35 9.14 9.71 9.35 8.97 11.4 7.84 6.1 12.2 9.49 10.5 13.2 8.58 8.5 3.69 5.71 7.51 0.7 10.4 7.27 7.32 1.17 2.05 8.45 8.83 12.8 8.15 8.63 2.86 11.5 8.23 15.2 6.25 10.5 11.1 2.05 9.41 4.91 9.99 9.55 6.26 11.8 8 8.75 5.68 9.8 12.5 7.83 9.01 10 9.16 0 9.71 4.99 10.4 6.25 2.73 8.45 7.73 11.9 8.32 1.22 12.9 0 9.33 9.75 8.19 4.4 7.29 9.09 4.99 6.85 4.96 13.8 9.74 12.7 0 0.7 0.7 9.19 4.8 0.07 8.52 10.4 8.96 12.6 12.2 12.6 11.5 12.2 5.29 13 12.6 12.4 11.5 9.76 1.81 3.46 4.4 1.25 11.1 6.65 6.83 0 0.7 0 1.17 8.8 14 10.9 7.75 9.74 4 11.5 11.4 9.56 3.46 13.4 13.9 12.4 4.31 8.25 11.8 11.8 15.4 9.26 12.7 13.5 5.87 1.81 10.8 5.36 3.19 2.43 6.78 9.29 2.25 8.72 7.58 7.89 10.2 4.52 0 10.4 5.95 9.59 9.25 6.32 9.98 10.8 12.4 6.48 10.7 9.58 10.8 12.6 8.33 11.1 8.92 8.44 8.13 10.2 12.7 5.2 8.86 15.6 16.3 16 10.1 9.43 11.6 7.98 5.74 11.8 11.2 1.17 10.7 5.4 11.7 1.17 13 12 9.73 8.41 7.43 11.4 14.4 13.5 8.87 12.6 2.86 6.71 3.76 8.08 8.75 7.95 9.34 11.5 9.16 10.4 10.7 11.9 12.5 10.2 11.4 10.2 15.5 7.21 9.85 10.7 11.2 8.01 10.8 11.8 7.35 7.42 8.97 4.47 3.95 1.53 9.24 0.7 10.6 0.7 9.33 11.2 8.66 13.6 11.4 13.1 11.2 12.1 10.4 12.1 9.94 13.3 0 11.8 12.7 0 2.05 1.53 10.8 7.76 6.32 3.83 2.98 0 0 1.17 8.35 1.17 0 8.3 3.95 5.32 5.07 4.84 4.06 4.31 2.98 0 0 6.87 1.17 1.53 9.13 3.29 8.88 18.7 9.69 15.5 11.6 13.8 13 8.98 10.9 0.7 15.8 2.05 7.91 0.7 6.9 10.3 9.86 12 5.4 11.8 4.74 2.73 8.53 9.65 11.2 9.37 10.2 10.2 10.2 7.04 4.95 4.31 13.2 10.9 7.56 7.63 11.8 11.3 12.7 12.8 9.24 5.22 6.89 11.5 15.4 11.2 5.92 4.99 14.7 13.9 12.4 4.77 6.17 14.6 7.14 14.5 14 3.54 11.9 10.8 9.4 11.9 4.11 4.56 13.6 12.3 9.63 15.6 0.7 1.17 5.98 1.17 0 3.09 8.73 5.96 12.1 10.9 10.8 2.25 4.21 17 0 0 5.99 11.9 2.05 6.4 1.17 7.86 4.99 2.73 8.19 1.53 1.53 2.98 2.56 6.35 8.08 7.05 0.7 3.19 6.6 6.37 2.59 3.14 0 6.13 4.66 9.97 10.6 0 8.39 7.62 6.28 7.87 8.76 8.94 7.38 10.2 9.07 7.79 8.13 5.64 7.76 7.14 3.09 4 10.1 0 3.09 8.86 6.28 0.7 5.34 5.81 7.28 1.81 4.96 3.75 6.15 6.8 9.57 5.25 0.7 9.64 9.21 2.59 8.02 11.2 8.59 2.05 1.81 0 2.25 8.43 4 3.46 1.17 1.17 10.4 4.77 7.92 0.7 0 1.53 3.29 0 7.96 0 0 6.86 2.73 10.8 4 11.3 8.63 5.57 1.19 0.7 5.96 4.16 5.58 2.98 0.7 3.69 0 2.86 1.53 6.01 7.03 0 5.76 16 3.62 0 0.7 9.17 0.7 13.6 12.7 10.1 11.1 2.05 11.5 1.81 2.43 2.05 11.7 11.7 0.7 6.1 9.8 0.7 7.78 1.53 1.53 6.31 13.7 10.4 1.17 15.1 4.44 3.46 2.43 0 7 0 8.31 1.81 11.1 0 5.47 9.61 0.7 11.5 13.4 3.46 8.39 3.46 1.17 3.89 1.81 12.6 6.75 15.9 3.09 0 3.54 6.51 3.89 0 0 1.17 2.86 1.17 2.43 6.06 11.6 3.38 8.89 6.75 0 8.33 8.47 0 2.25 11.6 2.05 10.2 6.45 0.7 1.81 2.43 1.53 0.7 0.7 4.4 5.96 1.17 5.29 3.95 4.8 0 0.7 4.96 8.31 1.81 9.26 1.53 4.63 9.6 13.8 1.17 1.81 4.21 3.19 9.84 9.96 5.9 6.4 16.5 5.89 5.15 8.71 4.7 8.64 7.44 0 8.18 12.2 8.68 0 8.93 5.36 3.44 2.59 11.3 10.8 2.25 7.73 14.2 1.53 6.56 9.9 5.02 0 5.81 6.22 1.53 8.22 12.5 3.95 9.88 4.48 0.7 0 2.25 0 6.88 7.1 11.5 9.3 11.6 8.39 8.05 3.19 7.8 6.29 10.8 4.63 2.59 7.48 0 0.7 7.98 6.74 0 1.81 2.59 6.17 2.27 3.38 4.74 0 8.11 8.94 10.9 8.91 0 4.4 10.9 8.6 11 6.34 4.16 7.96 8.44 6.63 11.4 0 4.52 7.48 10.3 9.75 6.97 7.75 10.9 5.29 5.47 10.7 6.14 1.81 3.46 9.54 10.7 1.17 8.4 1.17 1.81 5.51 3.46 13.3 2.09 7.59 12.6 12.3 10.2 5.32 9.88 8.36 4.06 6.65 8.41 1.17 6.18 10.3 11.7 10.7 0 10.3 9.99 8.42 7.35 10.2 7.3 4.84 8.39 6.8 0.7 4.4 8.64 10.8 11.1 9.16 0.7 8.84 9.13 7.7 8.3 10.2 14 6.91 0.7 11.3 0 11.8 7.74 5.62 12.7 10.5 9.91 9.92 11 14.4 9.7 10.7 4.67 8.17 10.5 11.3 11.2 9.83 7.76 8.11 9.69 4.99 0 8.47 7.44 11.6 8.71 11.5 6.64 4.06 6.91 10.3 7.19 11.1 6.89 13.4 10.1 11.1 6.47 7.02 11.7 12.1 0.7 7.52 1.81 15.7 15.8 16 14.1 16.8 6.91 12 9.21 12.2 7.56 8.34 7.28 12 6.65 12.4 7.64 11.9 7.45 7.12 11.6 7.62 11.2 11.1 10.7 12.2 8.03 5.22 12.5 9.72 11.4 0 3.46 6.07 4.96 3.38 1.17 3.29 10.7 6.74 8.9 2.98 6.93 10 7.31 0 5.1 0 0 6.05 0.7 0.7 3.62 5.32 7.07 8.45 8.22 0.7 1.17 6.93 4.74 8.46 3.38 4.21 0.7 2.43 10.4 0 0.7 5.17 3.09 3.19 3.89 0 7.16 0 4.16 8.28 14.1 4.52 6.85 7.18 13.1 2.05 8.67 8.22 0.7 2.59 2.05 4.99 8.09 7.67 5.36 2.05 2.05 1.53 0.7 8.49 8.85 6.81 4.21 7.29 8.46 0 6.74 0.7 2.05 0.7 0 2.25 1.53 7.43 2.25 5.04 4.31 9.42 6.16 8.23 0 8.36 12.4 3.02 1.53 4.74 4.77 10.1 8.73 0 7.71 0 4.6 5.98 6.3 3.54 0 7.5 11.2 1.53 2.25 3.29 0 9.39 3.62 6.71 8.45 3.19 12.1 2.73 0 4.52 3.46 6.05 1.17 0.7 0 7.94 6.3 0 8.01 10.2 7.68 5.81 2.73 10.2 4.48 10.7 7.36 5.96 0.7 11.3 14.2 3.95 11.1 0 0.7 0 10.8 0.95 0.97 4.21 0 10.1 11.3 7.81 3.19 0.7 0.7 4.56 16 9.21 6.53 6.63 9.68 10.9 11.9 10.4 9.81 8.82 10.4 4.16 10.7 11 9.85 2.05 0 14.7 7.89 3.76 7.61 8.09 1.81 13 6.41 5.2 8.59 0 5.78 3.46 3.19 7.08 0.82 10.2 1.81 0.7 4.35 9.28 5.12 6.05 14.2 8.17 9.85 2.25 4.63 6.45 1.17 5.34 7.77 8 0 3.09 2.59 6.01 3.29 7.9 5.12 4.79 3.62 5.93 3.19 5.86 0.9 2.86 8.69 2.33 2.05 9.52 5.79 0 13.2 1.53 6.05 5.27 1.17 7.69 3.19 4.67 4.26 2.05 7.75 5.34 2.05 5.1 5.51 10.4 3.76 5.58 3.29 9.03 3.95 1.17 11.6 2.25 6.19 8.91 4.9 7.41 4.31 4.26 6.63 1.81 2.86 4.06 7.61 9.02 10.2 8.28 0.7 8.8 2.25 7.39 8.26 1.81 6.99 6.29 10.3 9.36 1.17 7.5 0 2.59 8.86 4.31 8.77 7.9 3.19 2.43 9.13 12.6 8.16 3.29 3.54 1.17 4.11 4.38 5.07 2.25 9.42 0 5.15 6.29 0 3.82 5.79 7.91 8.48 0.7 11.7 6.38 6.88 9.58 0 1.17 8.05 6.95 7.29 1.17 0.7 3.29 2.59 8.09 0 5.62 2.98 0 5.75 0 8.88 2.05 10.4 10.6 5.32 2.86 0.7 1.53 7.86 0.7 1.53 2.05 5.79 0 8.95 8.32 9.37 2.98 7.81 9.72 8.67 8.67 10.2 0 10.3 0 11.1 3.19 7.21 9.12 11.7 13.9 5.84 0 10.8 14.5 10.9 0.7 3.82 2.86 9.68 7.4 13.1 0.7 14.8 8.4 11.1 6.9 7.23 16.1 10.7 7.89 0 13.6 9.93 8.9 10.5 5.34 0 10.4 10.1 6.57 9.5 4.52 11.2 14.7 12.6 13.4 10.3 9.91 10.6 0 5.76 8.38 8.93 0 9.02 8.21 10.5 8.86 11 5.99 11.9 5.47 10.3 4.9 10.1 10.6 0.7 8.5 8.49 6.26 7.58 7.79 10.3 1.17 3.29 3.14 12.4 0.7 6.03 7.32 5.49 10.8 1.53 8.08 3.29 11.2 0 5.36 4.99 11.2 10.8 13.1 6.45 4.35 6.14 7.8 0 0.7 4.52 8.74 4.82 6.71 7.97 7.79 0 6.05 9.07 1.17 5.68 5.36 0 7.02 3.76 3.76 3.38 4.06 0.7 6.81 4.11 5.01 9.44 2.05 11.2 9.41 1.17 1.81 11.3 3.14 2.59 0 4.21 7.51 7.42 0 5.12 0 4.11 0 5.57 1.17 2.05 1.17 11.4 1.53 6.23 3.54 3.95 1.17 5.13 0 8.12 2.88 4.54 7.9 3.82 5.48 7.54 0 6.28 3.46 1.53 6.93 3.54 8.83 3.29 1.17 5.53 5.66 9.76 5.44 5.55 8.78 0 2.43 2.13 2.86 5.36 7.72 1.17 5.07 7.74 5.71 0 3.76 6.71 9.58 8.28 0.7 6.17 1.81 9.02 0.7 1.17 7.51 2.05 4.63 8.23 6.25 9.6 0 7.19 10.1 14.3 0 11.4 3.82 10.2 5.9 8.01 12.4 2.25 3.19 1.81 4.73 12.1 1.53 2.59 8.89 9.25 9.64 10.7 9.73 9.96 2.73 11.3 7.68 10.8 5.78 10.1 11.8 12.1 4.7 6.01 1.17 4.87 10.4 8.57 11.4 9.46 5.25 4.74 6.15 5.62 9.93 5.51 14.6 5.04 11.3 2.25 10 12 12 1.81 6.44 4.84 5.79 6.81 10.3 9.82 7.52 7.03 9.55 10.1 10.2 10.6 10.3 10.6 6.58 7.89 1.53 10 9.83 0 3.82 11.1 9.48 8.9 0.7 3.82 8.83 11.2 11.7 10.4 9.32 10.8 9.07 11.8 12 5.96 8.03 10.8 11.8 5.64 4.7 3.62 9.26 10.1 5.96 4.8 10.9 4.16 4.93 6.2 6.82 0.7 8.74 7.98 1.17 10.6 5.66 0 8.33 6.6 3.19 9.69 6.31 11.1 9.73 11.4 11.1 1.81 10 10.7 10.2 4.72 9.11 8.39 0.7 1.53 13.8 7.97 9.45 8.97 9.14 8.86 9.94 13.1 1.53 4.67 11.7 0.7 11.7 13.3 12.9 11.1 9.79 10.1 9.59 9.97 10.5 9.98 3.78 8.55 11.8 7.82 3.62 5.9 7.48 5.75 8.57 8.76 8.58 9.43 11 10 2.59 0 8.82 11.5 8.43 9.43 5.15 8.9 10.2 8.52 4.87 7.39 12.5 10.1 3.95 5.38 12 6.29 10.1 8.94 14.2 11.7 10.7 7.74 10.3 10.7 6.93 8.56 12 8.36 2.05 8.48 6.08 8.38 7.96 10.9 2.86 10 6.19 7.9 12.1 9.13 9.69 10.3 3.82 1.17 4.9 11.3 10.7 8.62 8.11 2.73 10.2 8.65 1.17 0.7 6.88 14.2 7.37 10 3.89 11.9 2.59 2.25 7.78 11.5 14.7 5.79 7.2 6.94 9.14 0 9.28 10.2 1.17 11.3 6.4 13 9.38 9.85 4.4 2.05 11.2 2.43 4.56 12.8 9.23 10.5 9.55 7.81 6.82 2.25 0 9.58 9.67 0 5.52 6.69 4.63 10.4 1.17 1.17 1.17 0.7 5.25 3.82 7.19 1.81 4.63 4.84 7.74 6.94 4.48 8.9 10 5.19 6.15 3.9 4.16 5.84 2.05 11.2 5.71 1.17 6.74 1.17 8.13 7.71 10.3 5.86 0.7 1.17 8.48 9.53 4.52 1.81 4.9 1.81 5.34 2.43 5.07 9.39 0 0.7 6.62 7.27 6.99 7.01 11.4 0 6.25 5.6 7.53 6.51 2.73 6.44 8.37 6.24 0 4.6 6.1 5.32 1.81 4.36 6.01 1.53 6.33 6.43 0 2.05 2.25 0 1.17 2.05 1.53 3.09 6.6 0 5.96 6.1 4.87 4.21 1.17 3.38 3.19 9.33 0 0 0.7 0 0.7 1.17 7.21 0.7 0 6.81 5.22 2.25 3.09 13.2 1.17 8.49 8.62 0 6.35 12.6 13.8 8.52 4.26 8.07 6.38 0.7 10 11.9 8.14 8.45 12.7 4.16 4.06 11.3 8.9 11.6 5.29 11.4 14.1 9.15 6.23 9.06 5.73 13 9.86 10.2 9.82 8.43 12.1 8.92 9.82 9.95 4.87 3.38 0.7 8.93 11.5 7.3 10.6 9.82 13.1 9.64 9.83 2.25 6.45 6.01 0.7 0 1.17 9.55 8.21 6.06 10.9 11.2 17 3.76 14.1 9.67 7.72 9.32 1.53 6.75 12.9 10.6 3.82 12.1 10.5 10.4 8.21 10.4 10 8.77 7.72 4.87 9.82 7.51 8.93 8.57 9.57 1.17 10.1 9.19 13.1 11 11.2 9.59 11.4 5.01 11.3 2.43 3.89 10.7 11.7 9.66 12.6 2.86 7.16 8.63 10.7 4.26 3.19 9.18 7.43 7.41 8.72 13.1 6.46 11.9 10.1 8.38 11.9 10.2 11.4 10.5 9.23 9.63 6.95 10.5 11.6 10.6 9.91 10.1 9.89 10.6 10.7 10.5 9.77 9.3 10.8 12.2 10.4 9.59 11.8 11.4 9.19 12.8 10.8 12.1 9.86 10.7 10.1 10.5 12.2 10.4 9.04 9.83 10.5 11.3 12.4 10.6 8.96 0 6.65 7.73 5.04 8.65 1.17 0 2.59 0.7 11.7 7.2 7.12 7.65 4.4 9.64 11.6 13.6 9.95 4.48 9.98 6.22 4.9 10.8 9.64 5.81 1.81 13.6 3.19 11.9 10.2 10.7 10.3 9.96 10.1 11.3 11.9 10.2 9 8.74 7.89 9.63 10.6 12.5 0 8.57 10.3 10.8 8.3 0 10.8 13.7 3.38 10.4 10.9 7.43 11.5 7.11 5.01 9.36 5.01 0 6.1 9.12 10.2 11.7 9.35 10.5 11 12 14 0 9.75 12.3 4.11 8.1 9.71 9.67 8.61 9.41 10.9 9.8 8.89 5.36 1.53 9.17 1.53 9.3 7.76 9.66 2.98 12.1 0.7 0.7 13.6 7.82 7.5 1.81 0 0.7 8.2 11.1 9.75 2.05 11.7 7.72 1.17 9.35 5.17 5.18 5.25 12.1 10.5 10.6 11.7 8.76 0.7 5.1 0.7 0 3.29 0.7 5.81 5.86 0 5.57 7.71 13.3 10.6 11.8 9.8 10.9 9.22 11.5 8.47 1.17 8.81 8.14 12.2 4.67 0 10.4 4.52 3.38 6.75 13.1 5.04 12.5 8.69 0 5.73 6.97 8.7 2.25 3.19 4.06 0 13.2 10.6 11 11.5 8.91 5.43 11.7 8.48 6.53 2.05 0.7 6.58 2.73 0 2.43 10.3 11.2 13.3 6.53 6.28 8.76 8.25 8.39 0 4.35 4.6 7.9 12.2 8.59 8.69 11.7 7.96 17.6 12.3 3.09 11.6 5.71 2.98 5.73 1.53 11.4 4.93 3.19 2.25 8.93 5.33 5.15 3.38 6.77 5.75 6.01 9.92 15.9 8.17 6.92 11 0 0 5.4 14.8 7.47 14.9 12.3 11.2 10.1 8.79 8.22 11.2 7.92 6.28 7.24 10.5 9.7 2.59 5.25 13.8 11.1 0.7 9.68 14.2 0 4.96 10.4 6.95 11.3 0.7 9.76 9.03 4.11 6.28 9.56 0.7 9.01 3.89 8.25 5.49 6.32 12.4 9.99 7.47 1.17 4.21 0.7 1.81 8.92 12.4 11.4 5.9 10.8 10.4 7.67 0.7 2.3 2.25 13.8 5.07 4.74 9.74 7.1 4.9 0 6.42 9.97 10.8 6.73 10.2 11.9 8.05 13 11.6 13.1 5.79 0 12.6 6.43 4.15 1.53 10.1 12.8 10.5 9.33 11.6 12.2 8.98 9.43 7.26 7.58 9.92 8.82 9.98 8.82 9.94 3.38 7.77 9.71 10 8.26 12.1 10.2 8.15 9.56 8.25 8.25 10.8 8.68 8.69 11.3 8.43 9.93 9.14 10.1 10.1 8.77 10.4 10.4 8.85 12.6 1.17 8.52 5.78 13 4.48 7.44 14 10.8 11.7 3.95 7.24 10.4 4.21 8.36 10.1 10.2 9.49 9.64 9.15 9.93 8.75 11.5 8.88 9.24 10.2 10.3 10.7 10.1 10.2 0 11.6 13 2.34 3.76 10.3 10.2 10.5 10.4 10.3 12.3 7.52 9.3 13.2 7.88 8.88 9.63 10.4 3.54 9.24 10.1 8.54 9.78 7.8 13 9.57 12.1 10.2 10.8 9.44 9.89 12.1 10.3 10.6 9.59 8.93 10.8 8.36 8.76 10.6 10.2 9.15 10.4 0 10.8 9.28 7.59 9.67 8.92 12 7.34 8.45 8.55 9.49 9.91 11.5 9.18 11.1 9.05 7.21 7.12 12.4 0 8.95 9.27 6.77 8.59 11.4 7.16 11.2 7.99 10.8 6.34 8.21 2.05 12.8 5.71 8.57 6.3 7.64 7.24 8.19 9.08 13.8 8.34 8.7 8.9 6.94 9.94 8.17 10.9 11.1 8.39 8.96 8.69 5.22 6.68 9.11 5.98 9.52 8.28 10.8 8.83 1.17 0.7 0.7 10.7 2.43 9.59 7.52 8.58 8.08 9.64 9.36 10.2 8.82 1.81 10.3 9.93 5.27 8.39 9.74 8.5 13.2 10.8 9.47 9.21 4.87 8.27 9.5 0 11.2 10.7 7.8 9.34 10.3 6.65 7.92 9.35 10.1 4.27 5.47 13.1 10.1 11.4 10.4 10.9 7.17 5.38 5.84 9.32 12.8 9.09 12.9 9 9.84 9.56 5.2 1.17 10.5 7.22 9.01 7.73 10.5 8.3 8.79 9.04 10.2 5.58 10.5 8.76 9.08 5.83 11 10.2 0.7 7.86 9.42 1.53 5.84 4.84 5.58 7.45 9.1 1.81 9.19 4.06 8.22 10 7.63 8.77 9.58 10.9 11.2 6.44 11.4 4.21 10.7 4.63 6.4 2.98 11.4 11.4 8.59 5.79 9.09 9.18 10.2 10.7 10.4 2.73 5.55 0 6.1 9.76 9.89 9.14 9.61 2.05 9.93 10.5 8.75 10.3 1.81 11.1 10 9.23 10.3 5.34 9.34 7.39 8.49 9.81 10.4 0.7 6.42 11.6 9.16 9.47 3.76 11.8 7 7.85 9.8 9.78 11.8 9.3 9.66 9.21 9.19 6.74 7.06 7.63 8.91 8.9 8.81 6.15 10.8 11.1 3.38 10.9 11 9.51 5.83 11.9 7.06 0.7 10.7 8.23 9.96 11.6 0 8.2 1.17 8.86 8.22 4.9 10.2 9.63 8.35 5.79 10.6 7.1 10.3 10.7 4.06 9.18 8.2 11 12.8 8.17 11.1 9.38 11.7 7.44 8.18 9.72 11 11.7 10.9 10.2 10.6 4.74 7.64 7.26 10.5 6.68 10.5 10.6 9.94 9.05 9.33 10.5 10 9.83 5.62 8.95 8.34 6.45 9.16 9.47 8.65 8.58 9.59 10.3 9.82 7.81 9.23 8.05 8.28 9.07 11.7 1.53 2.73 7.8 9.05 5.34 3.54 8.19 9.27 7.1 10.3 10.6 3.89 9.49 10.8 9.98 8.96 3.19 11.9 9.51 10.3 8.65 10.4 9.34 10.5 9.58 11.3 13.1 10.3 11 7.21 9.82 10.6 11.8 8.52 10.4 10.1 8.58 11.8 7.97 0 8.1 10.7 11.1 8.93 7.91 11.9 8.86 10.3 8.12 8.46 11.8 10.7 9.76 10.3 8.44 11 8.77 10.8 10.3 9.84 6.94 9.42 9.11 10.3 9.21 11 9.11 6.24 8.99 11.8 7.65 10.3 8.08 11.7 8.41 12.4 10.1 4.52 4.06 6.4 11.1 8.47 5.11 2.43 8.2 7.65 8.97 9.19 9.15 10.5 11.9 11.1 4.52 8.94 2.86 12 7.29 8.32 12.2 7.54 10.8 7.03 10.2 10.6 2.59 8.23 11.7 12.7 7.92 10.7 12.5 11.8 6.63 2.59 11.2 8.06 9.89 4.6 10.1 10.1 8.9 4.16 11.7 7.67 10.2 10.9 14.8 6.8 0 8.89 9.64 0 7.42 12.3 8.28 10.2 5.95 10.4 12.1 3.95 7.58 5.68 8.77 5.45 9.67 11.8 11.9 9.32 8.98 8.98 7.91 8.42 7.86 10.1 9.49 1.17 0 9.07 7.31 10.7 9.31 10.8 7.44 11.1 10.2 8.4 8.98 8.63 10.6 6.52 11.2 0 7.69 6.53 13.5 9.86 8.39 10.1 12.2 3.29 0.7 12.3 6.02 8.37 10.9 12.8 12 8.86 7.38 3.82 11.1 12.2 11.5 2.43 12.8 0.7 10.5 9.21 5.2 10.1 10.3 10.2 1.53 9.02 12 19.1 3.46 10.3 11.8 10.2 9.39 8.3 4.31 7.84 9.84 11 8.4 9.07 13 9.75 9.24 8.61 11.4 7.56 10.2 8.4 7.54 5.36 11.1 9.54 10.8 11.2 11 8.97 0 7.83 9.19 10.6 6.25 10.4 8.85 12.1 10.3 8.12 7.1 1.53 4.11 6.11 5.27 7.54 8.01 7.71 6.47 11.8 7.82 8.57 4.52 8.55 2.25 9.99 5.32 6.71 2.66 10.4 5.1 5.51 4.63 9.19 9.22 0 10 9.74 9.83 8.76 10.5 8.71 13.4 1.64 5.64 8.99 7.97 12.3 15.2 5.93 6.17 4.96 11.7 3.29 12.2 10.3 0 8.86 9.98 9.95 13.1 10.3 10.3 8.92 10.1 0 9.27 4.74 10.6 5.17 11.4 5.16 3.19 1.31 1.17 12.6 10.5 9.49 10.3 8.67 7.33 7.73 6.91 5.83 2.59 1.17 0.7 9.16 8.62 6.43 7.19 2.05 2.86 11 1.53 11.2 7.99 12.9 4.84 10.2 4.48 9.42 9.46 9.62 8.65 8.41 10.1 7.95 5.76 8.29 4.67 9.99 6.88 9.15 9.14 8.6 0 4.11 4.63 6.24 7.26 2.59 6.47 0 0.7 6.96 1.81 0 9.04 2.81 10.1 8.87 10.2 4.4 10.1 7.44 8.72 2.35 7.74 1.54 7.81 6.81 5.07 9.7 9.23 8.89 10.8 10.9 12.1 0.7 3.19 2.43 7.04 8.7 8.26 10.2 9.94 4.93 2.67 10.1 8.41 12.2 10.4 11.2 0 3.82 9.34 7.66 6.25 12 9.56 7.51 10.1 9.68 3.09 4.9 9.31 8.77 10.7 9.5 10.4 12.2 10.9 2.73 11.1 10.6 1.81 2.05 9.56 10.6 8.15 9.75 4.56 9.21 5.22 6.37 8.98 7.52 6.19 9.06 6.57 13.1 7.61 7.92 8.92 1.53 3.19 10.9 10.7 12.5 9.36 6.11 10.1 7.8 1.17 8.86 7.98 10.7 14.4 4.44 11.1 12.4 7.7 9.93 9.21 0.7 10 8.1 9.1 6.7 9.29 8.81 8.96 9.38 8.66 8.34 12.6 8.96 4.63 10.3 5.38 9.39 9.87 9.87 3.29 8.22 4.56 5.34 9.12 7.32 7.77 8.95 3.54 8.94 10.3 7.02 9.83 1.53 8.6 8.04 8.76 8.96 9.41 9.72 8.95 10.7 8.81 10.8 7.7 10.2 9.61 3.09 8.23 8.67 8.92 7.06 6.32 2.05 10.4 7.46 0 7.14 11.9 6.2 6.82 7.36 0.7 9.42 3.09 9.65 10.3 9.9 6.2 3.38 7.35 9.44 8.07 10.8 12.9 1.53 8.2 5.87 6.18 11.9 11.2 1.81 9.57 9.57 10.5 8.03 10.6 3.76 11.4 9.46 9.85 7.97 7.76 9.15 8.58 9.65 3.69 10.2 6.05 8.33 9.73 7.75 0 4.16 9.84 1.17 12.7 2.86 2.25 9.25 12.8 8.87 3.95 9.31 0 8.18 0.7 4.31 0.7 3.19 10.9 8.58 13.4 5.12 7.72 10.6 9.39 0.7 10.2 8.94 11.3 9.25 8.04 8.45 10.6 13.9 7.49 7.63 8.22 4.56 8.64 0 8.54 9.04 9.65 7.76 7.94 8.33 7.35 5.17 8.93 9.32 9.75 7.06 7.69 10.6 7.78 8.28 9.97 8.91 7.52 7.3 4.4 9.79 6.88 4.87 6.65 0 9.26 8.81 2.73 0 9.63 8.08 5.66 10.7 2.05 9.29 8.92 8.46 6.8 1.81 4.84 9.56 7.07 7.87 5.38 9.32 0.7 8.23 9.94 0 9.32 8.29 10.2 9.39 6.58 8.96 8.81 10.4 2.25 11 9.77 2.98 10.3 9.52 10.6 9.01 7.89 8.36 10.2 7.73 7.89 9.82 7.87 10.5 8.49 13.2 8.48 9.1 10.6 11.3 8.05 7.27 10.1 10.3 9.18 6.89 11.9 7.41 8.86 4.31 7.52 9.52 7.34 8.27 0.7 9.56 6.09 9.11 7.27 8.89 10.4 7.74 11.1 9.45 8.34 11.3 7.97 10.5 8.41 11.2 9.28 11.7 8.74 10.3 8.9 9.83 7.61 2.25 8.51 11 9.63 0 9.2 10.2 11.2 11.7 7.69 9.02 5.47 10.1 6.45 10.3 9.49 10.5 7.86 7.65 10.3 6.29 8.14 8.6 8.84 6.17 11 7.75 8.96 6.41 9.02 8.85 8.77 0 10.3 8.37 7.22 8.56 5.84 10.2 7.06 8.84 10.1 10.9 0.7 8.26 7.8 9.25 10 6.1 8.6 5.53 9.06 11.9 9.75 11.6 7.19 8.13 10.9 9.1 11.2 9.37 11 2.86 11.9 11.6 11.2 5.01 9.24 8.07 10.8 9.37 8.13 7.38 10.7 9.89 10.9 5.76 9.7 7.84 8.38 6.17 9.91 8.3 4.52 9.05 0.7 7.71 12.6 7.31 9 2.73 3.76 8.8 8.03 8.83 10.7 9.74 6.05 10.3 8.94 4.48 10.1 6.42 7.78 9.62 0.7 10.7 8.66 8.5 8.17 10.4 9.92 7.64 6.93 5.92 7.57 8.03 6.92 3.7 6.71 5.9 0.7 8.4 1.81 11.4 10.2 7.36 6.22 10.2 5.04 10.2 9.17 8.43 9.36 6.91 9.63 4 6.69 5.34 7.34 13.6 5.4 9.99 5.51 8.04 8.17 10.4 2.98 10.1 8.28 9.3 9.91 10.2 7.08 4.9 11.9 9.69 9.77 8.26 9.5 6.63 8.87 9.75 7.8 8.92 7.9 9.73 4 8.05 9.54 8.25 9.27 0 7.88 9.54 8.21 7.48 4 1.17 9.22 10.8 9.3 8.47 6.64 10.4 6.79 9.72 10.3 9.73 9.04 11.2 4.26 8.75 8.99 9.84 10.1 9.77 9.77 8.43 9.92 12 11.3 12.8 8.09 5.01 6.15 9.07 10.2 5.04 7.86 8.34 9.94 9.12 3.95 7.05 10.9 9.74 7.11 11.8 7.43 9 10.5 8.09 4.7 6.2 10.4 8.97 11.7 0 9.33 8.74 9.46 6.65 8.8 9.78 10.2 9.5 7.17 4.63 8.65 7.1 8.72 5.15 10.3 7.16 8.13 10.6 7.56 10.3 2.86 9.58 4.35 9.74 6.33 7.68 9.12 9.07 8.55 10.9 1.17 1.81 11.3 6.83 11.1 5.73 9.82 6.84 1.81 9.21 5.49 10.6 3.29 8.28 10.1 9.32 8.41 9.59 11.7 10.8 4.67 11.5 10.2 9.57 2.98 6.85 11.1 11.7 9.27 10.3 7.92 9.15 8.38 8.45 13.3 8.46 10.5 0 8.79 9.06 9.33 9.45 1.81 12.6 9.2 10.3 8.64 10.4 5.07 9.38 9.61 8.78 11.8 8.96 7.84 10.2 8.31 11.3 1.53 0.7 9.31 7.97 9.4 1.53 9.27 10.2 0.7 8.48 8.13 9.75 10.8 7.28 8 6.97 5.1 8.58 8.47 8.82 0.7 8.66 10.6 0.7 9.2 8.09 10.4 11 9.74 10.7 10 10.5 3.62 8.49 0 10.4 8.62 7.55 9.71 7.24 4.9 9.21 3.82 10.6 8.81 7.46 9.87 7.92 5.15 7.58 7.95 6.73 7.8 9.77 11.5 4.56 7.1 10.9 10.5 10.8 8.94 10.2 8.67 12.4 8.62 5.12 6.5 9.69 11.9 9.37 3.62 9.8 10.3 5.76 4.16 9.03 0.7 10.2 10.1 11.4 8.95 13.8 10.9 7.65 10.3 4.8 8.32 11.6 10.5 5.22 4.77 2.86 6.87 8.61 5.76 4.31 8.29 0 7.99 5.1 8.36 9.08 9.7 0 9.28 10.9 8.83 11.2 5.15 10.5 8.22 0.7 9.62 8.74 9.24 10.2 7.65 6.97 1.81 3.62 10 7.62 2.25 7.79 3.69 8.35 0.7 4.7 0 10.1 7.1 1.17 13.2 10.1 7.51 2.59 9.92 7.48 6.77 5.27 9.85 8.78 0.7 2.05 6.37 7.4 9.81 8.32 7.82 6.43 6.73 0 8.79 7.19 10 10.4 11.5 4.06 9.11 8.65 6.73 4 11.7 11 6.46 10.2 7.97 10.4 8.95 6.59 2.05 11.4 8.43 9.36 6.81 9.3 6.22 10.1 6.59 8.75 10.6 3.69 1.17 9.52 8.47 8.04 6.91 7.29 10.6 10.4 8.51 8.08 9.33 11.4 9.73 10.2 10.1 7.85 10.5 8.58 4.6 8.78 7.94 7.85 7.94 4.74 8.49 10.5 10.1 9.46 9.98 9.27 7.93 9.45 11.7 9.38 10 9.75 8.09 11.4 2.59 9.07 8.8 9.95 5.86 11.5 10.5 10 9.26 7.48 9.08 10.2 12.5 9.43 6.14 8.65 9.41 9.4 10.9 8.37 7.49 10.5 9.8 7.04 9.45 10.6 9.35 7.36 8.53 8.77 2.05 9.7 9.08 7.92 3.19 9.09 9.54 10.5 1.53 12.8 6.81 9.94 10.9 8.66 8.27 7.9 10.8 7.77 10.1 8.91 10.2 4.35 2.73 0.7 10.3 8.41 10.1 9.98 9.28 10 6.24 6.3 6.51 8.47 8.87 6.14 9 12.3 9.1 6.92 8.49 8.44 10.3 10.3 10.3 11.4 11.2 10.6 9.1 7.77 8.84 8.89 10.2 12.7 10 6.81 8.89 8.86 10.1 11.7 11.5 10.7 7.09 8.35 9.65 8.4 8.1 8.26 10.8 3.46 8.42 7.87 7.83 9.49 9.28 6.05 4.4 9.61 2.86 9.22 7.76 8.9 7.32 7.49 5.98 9.87 9.17 9.01 9.05 4.8 8.65 4.26 6.63 10.9 4.74 7.16 6.7 8.01 9.85 9.13 9.03 8.54 7.5 2.73 8.98 8.26 2.59 8.92 7.19 4.6 1.81 1.53 5.53 7.84 8.7 8.48 6.77 9.62 8.95 3.29 8.55 11.3 0 10.2 9.74 10.8 11.7 10.6 8.42 10.6 10.7 10.5 9.03 6.52 9.9 8.19 8.16 5.57 7.97 6.18 8.87 11.2 8.9 8.86 7.96 10.1 7.72 9.9 10.5 3.13 10.4 8.15 10.5 7.66 9.15 0.7 9.25 9.49 6.96 10.7 9.32 7.6 7.94 4.96 10.3 9.09 5.84 8.19 5.22 11.3 1.17 3.38 2.05 12.5 11.5 8.43 8.68 6.45 10.6 9.27 8.61 6.02 11.6 9.51 10.9 4.87 9.83 7.28 11.2 7.61 10.5 9.33 8.79 7.58 3.09 10.1 8.56 4.44 9.34 0 8.61 12.5 10.9 9.68 8.25 7.43 9.22 9.3 6.4 1.17 9.3 11.4 11.5 11 10.3 11.7 6.63 9.65 11.9 8.82 7.72 7.53 0 7.49 0.7 11.8 9.54 9.65 3.19 3.82 7.86 10 11.5 9.59 11.2 10.2 3.46 7.23 8.26 3.62 9.2 0 0 4.26 8.8 3.29 5.07 1.53 2.59 1.53 2.09 4.6 3.48 1.17 1.53 12.1 1.17 3.82 0.7 1.81 0.7 9.42 0 3.82 3.62 2.05 2.73 2.59 2.59 1.17 2.05 3.89 7.22 1.53 3.76 1.53 2.25 3.19 6.46 8.66 0.7 0.7 0.7 0 10.8 8.7 9.42 10.2 2.05 9.91 10.9 0 12.3 7.87 5.57 10.4 0 6.15 9.71 2.43 10.1 10.4 1.53 10.4 10 3.02 9.16 10.7 6.44 8.88 11.4 11 6.45 10.1 0 0 10.8 8.71 8.81 8.26 10.9 9.16 8.1 7.65 11.8 4.6 0 0 8.42 5.62 8.73 2.73 11.9 0 6.63 12 6.55 1.53 15.3 4.16 10.6 5.89 9.71 3.54 8.51 10.9 10.9 9.94 3.19 1.53 9.26 8.62 8.38 8.81 9.01 2.86 0 9.39 4.7 8.55 0.7 10.8 2.43 11 8.85 17.4 2.25 0 10.9 10.1 11.7 10.6 11.6 7.59 9.39 11.3 8.57 11.2 10.2 10.8 7.49 0 11.7 11.8 11.9 10.8 11.4 10.3 12.2 11.8 6.76 9.72 10.9 11.6 4.7 9.72 8.28 0.7 11.9 10.5 7.95 8.9 9.64 8.93 5.38 5.92 11.7 11.8 6.18 7.04 7.88 8.53 8.36 4.96 8.17 13 8.14 10.8 1.19 6.37 11.1 9.79 9.54 9.75 11.7 7.69 9.84 7.06 6.51 10.9 8.98 10.6 9.26 9.85 6.69 9.76 7.14 9.8 9.33 9.87 11.9 8.16 10.5 3.38 6.6 11.2 11.2 12.1 6.64 4.48 0 8.86 6.71 10.3 7.1 10.8 5.36 2.59 9.94 7.46 1.53 7.04 9.52 7.5 7.34 9.34 10.8 9.87 4.74 10.2 11.7 9.16 9.61 12.1 8.93 6.32 13.9 9.58 7.94 6.34 11.7 7.64 11.4 2.05 11 10.2 9.87 11.8 8.76 10.9 2.43 7.97 8.66 9.3 11.6 8.22 8.17 11.6 9.51 2.05 10.7 9.24 0.7 11.9 11.5 12.5 7.25 9.04 8.24 9.39 12 5.55 10.7 0 10.2 4.44 7.46 8.15 8.45 13 3.38 7.87 8.23 11.4 2.43 6.71 9.1 9.59 9.74 2.25 0 8.94 7.98 8.97 5.73 8.59 8.39 6.39 1.53 7.04 9.05 11.3 10.2 10.5 8.14 13 7.88 11.6 11.4 12.5 8.44 5.29 9.22 9.92 9.64 9.77 6.48 9.87 10.1 0.7 7.5 0.7 10 5.29 8.79 3.69 3.38 4.06 11.6 10.5 9.82 11.3 10.2 10.3 11.7 9.85 6.64 7.17 7.91 8.92 8.59 9.88 10.3 8.86 10.3 11.4 11.1 1.17 9.43 4.44 7.92 9.85 12.5 7.57 7.06 12.4 6.63 10.9 8.96 9.13 8.65 8.43 4.35 10.5 4.4 12.8 11.2 9.46 9.6 5.71 7.86 10.5 1.82 5.29 11.9 7.87 10.5 5.2 3.95 7.11 8.6 10.7 2.98 6.03 9.49 12.2 4.54 8.35 8.02 5.29 3.82 7.78 1.81 7.1 6.61 1.17 2.86 10.8 9.23 5.49 6.44 3.69 7.77 7.53 0 0 9.93 8.38 0 4.99 9.64 10.9 8.7 11.6 11.4 12.2 3.54 9.09 3.09 6.14 5.07 1.81 8.85 11.3 10.7 7.63 6.08 6.53 5.75 2.59 10.4 9.07 8.06 9.75 0.7 5.53 8.75 10.5 6.66 4.52 9.8 9.86 0.7 5.11 11.1 10.7 2.05 8.97 10.7 6.87 7.13 6.33 6.89 9.33 9.04 7.94 5.32 1.81 9.03 10.8 5.68 4.87 9.43 10.2 6.01 5.66 8.66 0 9.99 2.43 0.7 4.35 8.4 9.56 10.5 6.1 7.25 11.2 9.06 8.29 10.1 8.09 12.2 7.7 10.3 7.38 6.85 1.92 2.05 0 3.76 5.87 12.3 6.52 10.8 10.7 9.33 3.29 5.98 3.76 6.49 6.73 6.78 0.7 8.21 8.61 7.16 4.6 7.46 5.79 5.12 6.52 7.17 11 2.25 6.18 9.22 7.88 6.34 10.8 7.42 9.52 3.09 8.92 1.17 8.26 10.7 4.84 12.8 8.89 4.16 8.95 3.82 2.59 5.29 5.95 0.7 7.37 9.7 0.7 9.38 9.86 8.35 9.59 8.86 9.89 9.08 10.8 7.44 7.75 4.96 2.59 8.52 9.37 2.73 8.94 10.1 2.73 10.4 10.1 9.16 10.1 11.1 8.01 8.95 0 5.32 10.1 11.1 8.52 7.76 4.56 7.08 0 13.3 8.62 0 9.71 8.17 6.92 7.91 4.6 10.1 8.55 9.07 11.5 9.72 5.07 5.1 7.02 10.4 6.97 10 10.1 10.7 9.64 9.56 8.95 9.5 9.55 5.9 6.37 13.2 6.46 13.3 9.61 10.9 10.2 4.99 3.95 6.77 6.75 7.14 3.29 7.69 6.32 3.09 8.5 8.08 8.78 6.06 11.4 4.67 3.46 10.1 9.9 7.28 8.49 10.6 6.59 10.1 6.14 9.83 8.27 4.34 6.54 4.4 12.6 7.43 3.09 7.45 7.3 11 8.7 3.09 9.05 8.75 7.98 1.53 3.29 7.89 7.64 10.9 6.96 3.95 10.4 8.32 9.76 6.34 8.14 10.7 7.42 9.54 8.97 7.48 9.07 5.25 11.9 10.1 11.2 8.25 9.8 7.58 2.25 3.09 6.54 11.4 9.26 4.06 3.69 0.7 11.9 4 2.73 10.3 9.47 1.81 2.59 9.16 9.37 5.01 6.98 7.39 13.9 8.73 11.7 10.5 10.9 9.44 0.7 5.53 0 3.29 3.62 3.29 6.11 8.37 3.82 9.38 8.14 7.55 9.42 7.16 11 9.05 4.4 13.2 11.8 12.8 7.78 5.17 8.68 13.1 11.4 9.22 10.8 10.4 10.4 9.49 9.81 7.71 9.99 12.1 11.7 11.9 3.62 11.3 3.09 9.58 11.3 10.9 9.48 11.3 4.96 10.1 8.29 10.1 10.8 7.43 10.4 5.45 5.95 7.12 5.07 4.26 10.1 4.52 9.09 7.19 4.77 11 11 9.93 8.85 3.38 8.62 9.93 8.21 9.65 9.32 11 7.08 9.47 1.53 9.73 0 1.53 11.4 6.39 11.2 11.9 10.7 9.26 6.06 5.6 7.57 11.2 9.87 11.8 9.68 11 8.25 11 9.24 1.17 9.41 9.48 9.16 11.8 12.1 8.54 8.1 7.91 9.15 11.8 11.1 12.8 4.26 7.29 5.1 5.29 5.99 7.19 11.8 2.73 8.98 11.5 9.71 10.5 9.16 11.2 9.42 10.6 11.2 10.4 10.2 3.76 9.91 8.57 10.2 8.84 1.81 10.8 5.58 7.19 10.2 6.37 14.4 10.2 8.3 4.8 2.25 5.9 9.41 8.12 6.33 9.87 5.86 4 7.91 8.35 11.1 10.1 9.56 11.7 9.65 10.1 10.6 8.47 4.74 2.05 9.56 7.33 11 0 4.16 10.5 9.6 0 7.68 7.08 10.7 11.6 1.17 4.31 10.2 8.87 7.53 9.71 6.97 0 0 0 12.6 17 6.92 1.53 10.3 9.43 0 8.94 7.3 1.53 11.3 7.98 4.56 4.52 11.3 9.5 6.06 11.3 9.18 6.66 2.25 12.2 8.51 10.1 9.05 7.41 7.67 7.98 10.5 10.9 2.9 7.87 8.88 5.53 2.86 0 11.5 4.77 8.84 8.22 9.88 15.8 7.16 10.1 0.7 6.56 3.62 0.7 10.2 0 10.1 8.58 8.07 0 10.3 2.25 7.25 11.6 8.74 11.4 11.4 1.17 0 10.4 13.3 1.17 6.55 8.11 9.71 3.38 8.67 9.97 0 7.96 0 0 8.23 12.8 8.01 10.3 10.7 11.2 1.17 8.67 8.23 11.1 6.88 9.4 8.08 8.59 9.24 9.66 2.59 9.79 8.44 11.8 8.64 12 9.26 11 9.2 11.3 8.03 8.5 10.1 10.1 2.73 7.22 10.4 6.01 6.15 8.96 3.82 9.88 10.7 0.7 6.43 5.79 9.04 5.66 8.41 9.34 9.26 11.5 7.23 9.66 1.17 12.2 9.82 5.29 10.1 0 12.5 5.34 6.5 8.09 6.45 0.7 10 9.45 7.99 8.58 14 13.5 12.8 12.1 9.1 10.1 12.6 2.49 14 6.41 13.4 12.9 12.2 13.2 12.9 11.4 12.5 9.25 13.5 0.7 11.5 10.7 9.88 12.1 12.6 12.1 13.5 12.6 12.8 12.2 12.7 12.8 11.9 11.7 11.3 12.5 12.6 11.7 8.66 8.43 13.1 6.77 13.1 13.4 12.4 10.8 9.01 13.1 13.4 11.9 12.7 10.9 12.9 2.26 1.17 4.44 4.4 3.95 12.5 1.81 0.7 13.3 9.18 8.32 11.2 9.2 10.2 11.7 12.8 12.9 11.4 13.2 12.7 12 12.6 11.3 12 12.7 12.3 12.9 13.2 12.6 13 11.4 12 12.8 12.1 9.81 5.34 11.9 1.17 11.3 5.04 8.63 14.1 10.6 9.91 8.69 10.7 0.7 8.52 11 9.55 6.24 7.59 13 10.2 9.14 4.26 0 2.05 1.6 3.54 9.47 1.81 1.53 8.44 0 9.41 6.37 8.19 11.5 9.05 2.05 8.6 4.84 8.9 17.7 10.9 10.1 8.16 3.29 7.29 11.4 10.3 10.5 12.5 7.16 7.58 10.3 12.9 11.7 3.62 8.86 9.7 9.09 15.9 3.46 7.13 9.3 8.15 4.21 0 1.53 6.5 11.9 6.92 0 7.3 4.63 9.04 2.59 6.56 12 9.73 13.7 0 3.62 8.16 6.6 4.17 11.5 6.38 9.37 3.76 9.35 4.93 7.13 4.26 2.25 3.38 10.2 4.35 5.75 8.28 3.69 2.43 8.53 2.98 14.7 8.16 7.46 12.5 13.9 11.9 10.9 11 9.33 3.76 8.74 9.7 12.7 10.9 9.01 9.27 9.18 8.31 7.96 8.9 7.06 7.59 11.9 9.28 10.1 8.81 7.72 13.3 10.8 1.53 8.4 9.25 9.89 11.6 5.4 6.25 3.62 6.55 9.15 6.32 8.46 9.35 7.69 8.7 3.19 9.83 4.87 8.08 9.28 6.68 11 4.26 10.2 1.17 9.87 2.86 6.29 6.34 7.37 7.68 3.82 12.4 7.12 4.52 6.98 5.4 8.23 8.74 7.17 8.93 1.53 12.1 0.7 8.06 0.71 10.2 0 8.91 11.7 12.3 2.43 12.4 6.81 0 4 6.88 10.8 8.32 6.61 7.22 4.96 4.48 3.95 9.24 8.42 10.3 13.3 9.56 9.35 11.4 8 9.58 8.31 5.07 8.73 4.68 5.75 4.9 0.7 9.58 5.81 10.9 0.7 11.2 4.93 15.4 9.84 2.86 9.15 6.14 7.23 10.8 6.58 9.49 9.59 5.04 6.9 3.46 4.44 5.47 7.78 5.43 9.77 11.6 1.17 7.64 6.37 7.79 9.15 11 9.62 10.1 10.2 5.99 7.84 4.6 5.45 10.6 9.6 8.96 10.6 2.25 2.86 9.6 8.95 6.35 10 11 7.63 0 12.3 1.17 11.3 11.2 4.4 8.98 5.99 9.57 11.2 6.95 8.17 4.9 9.11 10.6 0 5.4 1.81 2.43 11.8 0 1.81 11.4 9.79 8.34 10.1 10.3 8.58 5.58 10.3 7.72 5.95 10.5 9.05 8.6 9.05 6.01 9.37 6.69 4.16 0 3.54 5.1 10.6 10.2 10 5.22 8.05 8.09 1.81 2.25 11.5 6.39 9.16 0 1.81 8.03 6.8 4.52 7.74 5.71 4.96 8.23 0 0 5.99 7.17 3.29 10.1 9.38 4.16 8.63 9.31 7.16 5.66 5.6 3.19 8.6 3.54 7.29 7.73 8.31 4.99 0 3.69 2.05 7.97 3.69 7.29 9.87 3.38 6.54 6.41 9.62 11.8 9.33 9.22 10.6 9.45 9.6 7.26 8.26 9.02 10 8.54 1.17 5.15 0 0 1.81 4.93 3.46 5.49 10.5 2.25 5.27 3.38 9.71 0 9.2 8.42 1.53 10.8 0 4.31 0 5.99 12.1 6.22 0.7 8.81 1.85 1.17 3.19 0 9.05 9.09 5.96 3.09 2.44 0 1.53 10.1 1.17 3.19 4.33 2.59 0 10.5 1.81 6.77 1.81 2.59 7.59 9.02 10.2 1.81 9.84 8.47 1.17 2.59 10.7 11.6 6.46 2.05 13.4 3.19 9.75 5.7 5.72 10.7 2.98 0 7.22 10.2 8.47 0.7 9.8 0 6.11 4.26 1.17 7.04 2.59 13.1 1.53 4.9 6.19 9.21 9.57 13.4 6.15 2.25 8.67 12.8 4.7 0 10.5 11.7 9.49 10.8 10.8 9.26 7.22 1.81 7.53 11.6 10.3 10.7 11.6 9.23 11.4 7.06 8.29 9.91 8.05 7.88 10.5 8.87 8.14 12.4 9.08 8.87 7.87 9.69 10.9 8.14 11.2 7.59 10.2 9.5 7.24 9.29 5.71 1.81 9.94 12 8.57 7.21 7.43 8.67 7.8 0 10.8 12.4 9.6 3.54 10.8 14.8 3.89 9.62 8.15 3.54 9.78 9.46 10.8 8.83 10.7 9.19 8.29 7.36 11.2 1.17 10 10.1 9.31 10.2 10.1 9.99 8.11 9.66 12.6 7.84 6.95 6.94 8.43 6.94 7.44 4.4 8.49 1.8 7.83 2.86 7.11 7.72 8.91 7.38 7.63 3.95 6.09 5.95 8.03 0.7 9.67 8.45 6.9 8.88 10.2 3.54 4.11 9.92 7.24 7.05 5.89 5.22 9.9 6.94 10 0 10.8 9.43 9.23 7.48 10.6 10.4 10.3 9.43 10.8 9.14 7.24 9.45 10.2 9.39 0 7.72 12.5 9.16 10.5 8.85 3.19 9.46 4.57 12.4 5.92 8.53 4.56 5.12 10.8 4.7 10.9 6.83 10.9 11.1 6.88 3.46 5.86 1.81 7.17 8.54 2.43 10.4 9.36 10.3 9.5 9.22 9.68 8.41 1.53 7.54 9.56 9.04 9.01 10.2 5.4 11.1 9.1 11.9 10.7 7.58 1.53 8.12 7.49 2.59 8.16 6.41 11.6 0.7 12 11.8 4.93 4.77 8.03 7.04 8.71 5.75 5.38 9.78 6.41 8.2 9.49 11.1 11.3 7.43 6.17 2.43 0.7 0 11.5 0.7 6.44 0 4.6 6.09 7.27 0 2.86 3.95 7.66 8.27 0 7.53 2.98 8 6.95 0 5.68 2.73 1.53 0 7.1 8.84 9.76 7.72 10.9 2.73 8.92 4.56 5.28 0 9.21 6.26 4.48 0.7 1.17 7.8 0.7 5.81 6.31 11.5 5.65 6.37 5.81 11.7 1.17 0.7 1.17 7.7 4.6 3.62 6.2 0 4.87 5.95 2.86 4.39 1.81 6.08 3.09 5.71 7.51 4.31 4.35 0 0 2.25 11.2 4 2.05 11.3 1.53 2.05 9.48 4.77 5.17 10.3 10 8.14 0 1.53 7.45 10 9.72 12.2 10.2 2.25 12.1 13.4 1.86 8.19 1.53 7.32 9.84 12.8 6.63 11.6 10.7 9.79 10.3 0 8.45 9.88 9.99 8.35 7.52 6.63 8 7.86 7.62 5.47 7.68 0 10.3 7.58 10 10.9 10.5 8.31 3.09 8.96 8.13 3.29 1.17 7.09 9.65 10.9 8.88 10.8 9.85 11.4 7.25 6.82 7.67 10.9 3.52 9.65 11.1 11.3 6.75 7.73 9.29 10.4 10.8 8.96 6.82 3.29 6.94 7.51 8.53 7.68 8.95 3.54 7.13 9.1 11.5 9.51 8.45 10.9 9.28 9.34 10 8.9 10.6 10.8 10.3 8.86 9.14 8.6 12 7.67 12.5 11.1 10.2 8.6 9.64 0 14 2.25 14.5 7.23 9.2 9.9 11.8 12.9 11.2 9.84 9.21 6.37 11.9 6.63 9.84 0 2.73 9.09 10.7 9.16 11.5 10.3 6.39 11.2 7.61 12.2 5.55 13.4 8.44 10.4 7.89 2.25 8.9 0 8.69 7.19 2.86 12.8 11.6 10.9 12.4 1.17 4.67 13.8 9.95 10.8 6.87 9.68 6.37 9.36 6.91 13.7 12.4 9.79 10.1 12.9 11.6 9.37 10.7 6.5 10.9 11.1 9.75 9.12 12.7 10 10.5 10.2 10.1 10.9 11.8 12.5 11.4 11.6 10.9 5.2 6.44 0.7 10.4 9.57 12.5 10.5 2.05 12.1 9.45 14.3 12.3 12.7 7.05 8.74 10.4 1.81 1.17 1.81 0 0.7 1.17 0 3.56 12.4 0.76 1.53 0.7 4.07 11.3 12.3 7.18 8.37 3.69 1.53 11.8 7.37 9.14 8.58 9.28 9.23 2.86 2.05 9.23 10.4 2.73 9.11 5.86 4.8 8.14 9.7 10.2 7.84 9.55 9.4 9.12 11.6 7.99 1.17 13.8 0 10.6 10.4 11.7 5.78 11.8 9.58 10.6 7.99 13.4 9.28 9.77 8.52 12.9 9.96 7.48 11 11.6 3.62 7.35 3.76 0.7 4.9 11.4 2.59 9.82 2.25 0.7 1.17 10.7 7.59 2.98 12 6.97 8.78 8.82 8.57 3.29 10.1 6.38 9.71 10.2 6.4 10.2 9.89 9.02 8.36 7.47 8.49 6.1 1.53 12.9 12.1 11.8 11.6 13.4 9.69 8.38 10.5 1.53 1.17 9.9 10.7 8.76 10.5 10.5 9.49 7.83 7.86 4.26 4.16 5.99 7.56 10.6 9.31 11.2 0 4.52 5.17 9.54 0 0 10.9 0 10.8 8.96 10.6 10.2 9.06 8.11 9.33 8.73 8.89 9.9 3.19 11.4 6.88 7.88 10 9.88 11.3 0 8.67 9.24 5.51 11.7 0.7 0 11 6.43 9.58 3.95 10.9 10 7.7 13.7 11.4 10.1 5.66 8.91 4.99 2.98 10.7 15.4 5.34 8.03 7.74 0.7 9.51 9.36 4.48 9.58 16.3 8.87 4.06 7.48 8.5 7.88 9.87 9.72 7.63 10.5 5.51 12.7 14.6 10.5 2.25 6.4 9.14 7.03 6.02 6.88 0.7 11.9 9.37 1.17 11.7 8.31 8.81 9.81 2.43 13.5 6.98 8.71 10.7 10.5 8.57 9.6 8.41 4.11 9.34 9.34 7.92 9.62 8.84 10.8 9.69 9.33 10.1 7.93 8.69 13.3 10.6 12.1 2.86 11.2 10.9 8.41 10.8 12.2 0.7 11.1 7.74 10.5 7.13 0 13.6 11.6 7.02 8.99 7.95 8.14 14.3 16.8 7.42 6.49 11.8 9.73 9.35 12.1 9.42 9.44 10.1 10.8 13.3 11.9 7.76 9.28 1.81 1.17 11.3 10.8 10.6 12.1 2.43 12.3 10.9 1.81 0.7 0 1.53 11.7 2.05 11.3 10.1 15 10.9 7.24 2.73 8.29 10.7 8.98 10 8.28 11.1 16.7 5.66 4.16 11.3 7.84 10.4 0 12.3 11.5 8.37 14.7 12.8 11.3 10.6 9.67 10.9 5.66 15.4 0 17.9 8.02 8.79 15.7 7.49 10.2 7.95 7.32 7.24 7.67 17.8 0 13.1 10 10.6 8.27 16.8 2.98 1.17 1.53 4.11 6.06 5.57 0.7 3.19 2.86 10.4 9.1 10.8 13.7 10.6 0.7 11.2 11.1 11 8.25 7.44 13.1 11.5 9.94 10.6 10.3 9.04 14.1 7.14 5.34 5.62 5.04 11.3 8.36 2.73 3.38 2.43 6.5 8.77 8.21 10.4 3.38 3.89 6.11 6.5 6.52 0.7 8.63 2.16 1.81 4.93 9.81 9.41 5.58 8.26 0.7 1.53 4.96 12.9 5.76 3.89 5.01 6.79 6.86 6.88 0 8.62 0 7.26 6.26 3.19 4.74 4.87 8.7 5.22 0 13.1 3.19 8.08 0 5.27 0 1.17 5.17 8.36 3.09 7.22 1.17 2.73 10.8 3.62 8.53 3.82 4.11 4.26 2.43 3.74 1.81 4.16 6.91 6.11 5.45 0.7 3.19 4.48 0 8.32 2.73 3.46 0 8.11 13.2 7.47 3.38 7.99 1.53 3.62 13.1 3.62 5.12 1.17 7.83 9.78 0.7 1.17 2.59 7.23 2.59 6.7 2.05 4.56 0.7 6.51 7.5 0 12.5 8.43 6.69 4.8 8.38 5.25 7.02 2.59 9 0 9.45 2.59 11.8 2.43 14.8 14.8 12.5 0 9.83 11.1 10.3 8.13 10.4 12.3 9.62 8.26 10.4 9.97 10.1 9.9 13.1 10.9 10.4 11.1 10 10.7 10.3 11.1 10.5 11.1 5.07 8.22 4 2.59 8.77 3.89 10.7 5.29 10.1 7.37 12.3 12.3 0 8.16 10.5 9.48 10.2 9.63 10.9 7.4 3.54 11 0.7 11.8 13.1 12.3 11.2 10.4 10.9 10 10.9 11.4 9.3 4.44 11.6 9.57 8.84 9.22 11.1 10.2 6.9 11.5 9.88 9.93 9.98 13.6 12.4 10 10 7.29 11.3 8.07 6.38 0 8.7 6.4 9.92 12.4 6.4 0.7 4.63 4.16 5.1 9.07 7.19 7.76 7.04 17.7 10.3 11.1 10.9 7.55 8.98 11.7 10.1 7.45 6.18 7.36 9.06 9.75 9.51 9.16 7.61 2.05 6.18 3.69 2.25 0.7 1.53 0 3.54 6.3 3.95 1.17 0.7 8.88 5.71 1.17 13.6 0 1.53 0 4 7.92 10.5 4.11 9.7 9.77 11.9 9.03 3.09 7.06 7.24 8.22 12.2 8.34 10.3 10.1 11.6 8.07 12.6 11.9 10.5 13 6.78 11.9 11.7 2.43 11.9 8.13 9.24 8.96 6.42 7.91 9.39 3.54 8.71 4.77 12.6 5.9 8.32 4.44 3.89 7.33 6.59 8.07 5.66 5.21 7.43 10.2 8.83 8.02 10.8 7.1 6.45 3.76 8.37 9.64 8.74 6.34 9.93 7.98 7.8 6.8 8.33 4.99 7.69 6.35 9.91 0.7 2.25 4.11 4.44 7.51 9.57 6.65 9.68 6.4 2.86 7.7 2.43 3.95 5.22 8.37 0 2.73 6.22 4.52 5.38 10.9 4.93 1.17 2.86 0.7 1.53 0 2.73 7.89 8.55 4.7 6.51 6.03 3.89 6.43 3.46 6.22 7.97 4.21 3.82 8.16 8.16 8.27 7.62 10.2 11.2 9.83 8.92 4.9 2.25 6.97 0.7 9.32 7.03 11.7 7.73 5.01 0.7 4.64 4.67 6.89 9.17 6.69 6.25 0 7.12 8.51 6.56 6.58 8.07 6.03 9.48 7.88 7.36 2.73 7.79 10.8 1.53 7.68 7.58 5.12 1.17 12.7 9.66 5.95 7.25 6.28 7.57 0.7 7.48 4.21 2.05 5.86 7.13 7.14 10.2 0.7 2.05 3.89 6.03 5.54 4.87 11.1 8.63 8.48 8.32 7.27 14.1 3.38 10.9 3.73 13 9.33 12.4 3.95 4.96 9.34 8.91 4.96 8.75 10.8 11.1 9.31 5.22 3.19 5.83 7.12 10.4 10.1 1.81 8.37 11.2 9.9 7.75 9.9 12.2 11.2 12.3 11.2 5.01 9.72 1.17 9.72 9.99 8.6 7.1 5.87 8.46 9.2 5.51 8.73 0.7 5.43 4.21 8.85 4.21 11 10.5 8.99 9.55 9.21 8.86 10.2 10 9.28 0 8.8 8.74 7.71 5.58 8.64 11.1 7.57 0.7 12.7 9.64 8.67 7.25 8.33 9.9 8.96 8.9 9.46 6.49 8.8 11.2 5.9 9.86 6.39 10.5 11.8 9.01 9.93 6.61 10.1 8.09 11.2 9.06 9.59 6.71 10.2 7.99 10.8 6.61 6.17 8.72 7.5 9.23 9.41 9.13 9.84 9.87 9.88 4.7 9.66 8.1 7.01 4 7.32 9.59 8.4 5.73 5.43 8.9 10.1 10.6 10.2 10.6 7.49 8.28 8.45 11.8 11.9 4.63 9.92 10.1 12.4 9.36 7.76 4.77 4.99 11.8 2.98 3.14 8.8 9.14 8.67 9 8.88 8.21 11.5 5.58 8.13 0 4.6 8.88 12.4 5.53 10.6 5.14 3.69 10.6 7.66 8.83 8.11 8.61 9.04 9.58 8.58 9.29 2.86 9.36 11.6 4.11 10.9 12.4 8.37 9.52 6.42 0.75 10.4 0 0 0 9.69 6.3 10.1 4.74 6.46 1.17 0.7 5.01 6.63 0 5.95 7.04 0.7 0 8.78 11 7.36 7.61 8.96 10.6 8.19 9.85 3.69 0 5.04 0.71 9.97 9.71 7.14 0.7 9.55 11.8 7.97 7.82 9.45 10.1 9.36 6.54 5.71 9 11.4 9.65 11.8 9.23 10.1 9.13 7.4 4.7 7.76 12.4 9.62 8.68 7.19 1.17 7.06 11 6.73 9.92 2.73 5.2 8.12 8.9 2.05 9.75 0 5.69 6.28 3.76 8.26 5.99 9.46 7.46 7.38 8.48 5.66 8.49 9.72 8.4 8.8 6.35 9.29 8.22 0 9.01 10.6 7.35 7.58 9.79 10.2 8.72 8.4 10.7 1.17 8.66 5.95 4 10.2 6.35 6.92 9.56 8.23 9.12 2.05 8.39 0.7 9.61 9.03 8.84 6.69 0 7.98 9.12 9.05 8.7 6.8 8.01 6.06 9.32 8.49 5.45 8.46 8.52 9.25 9.55 3.62 6.63 8.5 10 9.56 4.77 5.17 8.94 7 10.1 10.8 9.68 7.93 8.41 8.34 8.42 10.7 11 9.85 8.4 2.59 7.19 9.75 6.8 10.3 7.49 3.11 0 9.25 4.77 6.33 10.4 7.46 7.06 4.8 2.86 8.16 6.2 8.34 11.3 0 10.8 1.17 10.6 9.16 8.3 10.2 2.05 8.19 8.15 5.57 8.02 12.4 10.4 9.19 7.91 9.62 5.2 9.94 8.4 10.2 8.13 7.06 8.45 0.7 2.73 8.44 12.7 8.05 1.53 11.7 11.1 11.7 11.9 8.48 9.69 8.7 9.87 6.5 6.24 4.11 8.75 7.82 7 7.76 7.17 10.7 9.31 9.72 11 8.37 8.38 6.77 7.22 4.16 9.49 2.73 3.62 6.06 4 2.05 7.36 8.27 7.45 9.29 8.48 7.68 8.38 7.88 10.6 4.35 5.69 9.35 8.23 4.35 6.49 4.35 3.69 5.83 4.06 7.87 7.47 0 6.94 1.17 4.21 3.46 7.19 0.7 3.76 0.7 5.22 8.52 3.69 1.81 6.29 4.74 9.62 10.7 7.81 6.87 9.11 6.91 7.65 7.91 9.88 8.52 6.65 7.73 9.81 3.09 2.98 8.78 8.58 6.1 9.28 9.8 4.96 9.96 10.4 10.7 6.3 8.79 8.08 6.45 5.4 9.08 8.68 11.2 6.35 3.82 9.37 5.58 8.91 7.74 4.4 8.51 8.6 10.5 7.64 0.7 8.4 6.13 4.6 5.04 8.25 6.22 2.25 12.1 0.7 9.9 5.38 4.93 9.72 9.03 1.17 8.35 8.11 1.22 9.69 0.7 3.38 9.38 1.53 10.1 3.76 7.48 6.77 9.15 8.45 4.5 4.31 6.23 7 6.17 7.84 5.2 8.71 1.81 9.06 8.26 7.24 2.73 2.43 8.84 3.89 8.16 8.28 0 2.43 2.25 12.6 5.78 5.92 5.81 11.4 6.96 8.92 7.32 5.55 8.29 9.94 9.54 7.98 9.63 9.49 8.57 7.52 9.47 10.5 9.15 5.9 9.56 8.91 9.02 5.2 0 0 5.29 6.06 6.09 8.48 8.18 5.16 5.51 3.09 0 5.78 9.77 11.7 4.31 6.88 6.5 6.31 3.29 0 9.58 6.62 3.09 6.63 7.24 7.72 9.2 4.56 10.6 9.03 3.76 9.55 9.5 12.6 10.3 7.53 8.27 9.03 8 9.51 6.79 8.44 7.19 9.61 7.71 6.47 9.66 7.42 4.77 8.93 4.35 7.53 7.12 9.13 9.26 10.7 8.79 9 5.13 9.98 9.72 9.41 3.46 9.22 11 8.57 10.4 4.35 9.35 9.98 8.39 3.19 11 10.4 10.8 11 9.47 8.01 8.55 7.09 10.1 3.76 12 9.76 6.42 7.88 2.25 8.74 9.47 8.14 0.7 10.7 5.34 4.16 11.5 8.12 11.4 10.6 10.7 8.05 11.6 9.15 2.59 9.02 9.39 9.28 5.96 7.45 10.1 7.81 2.73 11.2 13 7.65 8.29 2.73 6.54 8.52 11.3 7.51 7.12 5.17 8.85 7.88 9.18 9.48 1.81 1.81 1.17 11 4.33 2.43 10.8 7.62 8.76 8.43 6.57 12.6 5.93 7.96 11.3 9.49 5.64 10.3 2.73 9.94 5.45 5.43 9.62 10 12.6 9.79 3.69 9.93 10.7 4.35 9.07 2.98 4.84 9.86 9.06 8.49 10 6.89 10.7 1.53 3.95 6.47 0 4.48 6.95 7.01 7.39 9.09 3.09 4.77 1.17 1.81 4.16 12.2 8.87 9.03 10.8 7.76 8.86 5.15 10.2 7.25 11.2 14.7 9.48 12.6 10.4 12 7.95 7.57 4.7 9.59 7.84 7.24 11.7 11 12.7 5.15 11.3 0.7 10.5 10.3 8.74 11.6 8.54 9.31 3.7 2.59 5 2.74 10.6 8.23 8.83 10.2 0.7 1.17 9.39 13.1 8.99 0.7 3.09 2.59 6.46 9.76 9.1 5.49 12.1 10.9 15.4 3.76 5.22 0.7 0 0.7 11.2 10.5 9.2 4.7 3.09 9.3 11.4 9.39 8.63 0 3.98 0.7 1.17 12.3 3.82 8.95 10.1 8.88 8.24 9.59 6.66 7.34 9.65 8.49 9.43 5.78 10.8 9.53 9.62 3.65 7.94 9.12 8.41 9.48 9.71 8.29 12.8 0 9.31 4.7 8.56 8.83 10.8 7.88 10.6 6.09 9.73 5.2 8.11 11.5 9.68 9.09 5.73 9.24 10.2 8.87 7.32 10.8 9.82 2.43 0 6.91 9.56 10 6.33 2.86 9.85 4.21 9.8 9.91 4.55 10.6 11.1 11.4 11.2 11.9 9.69 6.08 0 8.88 1.17 7.94 1.53 0.7 9.61 8.25 3.62 8.73 6.97 8.67 3.62 6.18 0.7 9.76 3.89 7.7 8.7 10.6 8.93 8.81 0 10 3.46 7.83 3.82 9.26 10.6 1.81 9.78 9.55 11.8 9.48 8.87 10.5 10.7 8.52 9.04 0 10.4 9.41 0 9.14 8.92 7.19 9.74 0 4.11 2.86 11 10.2 0 9.56 9.94 4.67 11 14.7 9 10 10 7.06 8.72 2.05 9.7 8.31 10.1 8.33 11.8 6.67 9.76 11.7 12.2 10.2 10.6 10.6 7.32 12.5 10.2 8.41 11.4 9.01 9.37 8.42 0.7 6.08 0.7 10.3 11.1 10.1 6.01 7.38 0 10 10.9 11.6 9.23 11 11.9 9.32 9.42 7.87 11.4 8.93 5.71 5.43 11.7 4.96 7.04 9.59 7.79 5.4 5.01 1.17 0 9.86 1.81 0 0.7 10.8 2.25 9.87 3.09 2.59 2.98 8.45 1.17 0.7 3.89 1.53 0 0 7.12 3.46 9.33 11.3 10.3 8.45 6.74 3.38 0 3.89 8.97 7.94 0 9.01 5.27 7.23 6.42 5.55 6.45 4.31 8.2 6.05 9.37 1.17 9.56 5.45 11.6 9.26 8.56 0.7 2.97 0 4.74 2.05 0.7 6.51 6.3 8.15 6.17 9.07 11.1 9.77 0 7.57 0 4.06 1.17 0 9.54 6.81 1.53 9.49 8.88 6.58 8.68 9.05 0 7.79 10.9 12.2 9.05 7.85 0 4.99 9.83 10.4 8.88 0 8.58 11.3 10.9 8.48 0.7 4.48 1.53 1.17 10.4 0 8.69 12.8 8.88 0.7 4.52 12 8.24 7.95 7.88 10.1 0.7 0.7 11.2 10.3 9.56 7.38 8.29 8.68 5.69 10.9 9.25 9.31 5.01 0.7 9.56 8.05 11.4 7.11 10.5 6.87 10.5 6.25 9.68 12 2.43 10.1 7.75 9.65 8.65 8.59 1.17 4.67 2.25 8.55 1.17 6.17 10.3 4.48 6.8 8.64 6.89 5.47 10.6 6.81 7.71 8.68 3.62 5.12 8.69 5.9 2.43 0 3.19 0.7 2.73 3.46 3.19 0 1.56 8.05 9.18 8.33 4.63 7.76 10.5 8.14 9.47 10.8 6.83 10.7 10.8 9.04 8.48 8.89 2.25 5.89 6.42 0 2.59 10.2 8.17 6.1 4.11 10.1 10.9 4.87 9 8.03 0 5.45 3.89 0 8.06 8.95 2.86 5.27 10.9 6.89 6.61 10.4 10.1 0.7 5.87 6.17 5.36 8.92 6.59 7.86 11.3 7.89 0 9.9 9.98 10.2 7.63 6.24 13.8 5.36 4.7 1.17 1.17 4.96 6.75 8.84 10.9 7.25 8.95 5.89 4.63 7.82 9.44 1.81 9.27 4.06 0.7 10 8.64 4.06 7.77 9.28 9.37 8.63 7.92 8.91 10.2 6.26 8.27 9.2 11.2 8.12 6.89 5.04 6.94 5.45 9.28 8.66 1.17 8.47 8.63 8.17 9.51 9.84 7.98 10.8 10.2 6.63 9.04 9.36 8.7 9.15 8.97 5.99 7.29 6.62 9.11 6.58 8.22 8.67 6.91 1.53 0.7 6.6 10.9 10.2 9.56 1.81 10.2 3.09 5.25 2.73 6.35 6.65 9.25 5.14 0 4.63 6.86 6.73 9.61 5.51 2.73 7.27 11.6 11.3 8.29 8.73 0 8.97 10.1 7.97 8.29 7.24 9.86 0 9.78 5.2 3.46 4.74 5.12 7.87 9.78 0.7 7.1 8.84 6.01 8.44 11.5 2.25 10.4 9.14 9.03 8.78 8.29 9.09 7.43 10.8 9.14 9.31 10.3 9.7 8.4 9.51 3.19 8.47 10.9 8.49 3.82 6.3 7.61 9.87 8.89 9.91 8.78 8.18 8.22 0 5.76 11.3 8.59 9.32 4.56 9.24 10.1 8.57 9.06 7.34 3.82 5.96 8.94 9.35 7.31 7.05 9.64 12.3 10.2 9.79 6.89 10 6.02 8.67 9.09 8.98 5.89 7.77 8.72 8.9 8.62 8.93 4.84 8.17 6.06 7.56 10.6 1.53 11 8.69 10.6 9.37 8.5 7.96 9.87 9.45 9.66 1.53 9.1 11.5 9.1 2.59 8.69 4.8 8.74 1.53 7.33 1.17 10.8 8.21 11.6 6.39 4.67 5.38 3.82 7.12 10.2 5.38 9.98 8.82 3.82 12.8 6.7 6.06 7.48 8.38 7.65 5.04 6.13 5.36 8.28 8.55 8.92 7.86 0 1.17 1.53 1.89 9.94 9.01 10.7 8.39 3.38 5.9 11 8.81 9.93 6.91 9.31 5.83 1.17 5.36 10.1 8.08 9.62 6.44 5.62 6.64 8.21 9.47 7.66 4.52 10.9 4.44 5.34 10.4 6.38 8.32 7.37 12.3 5.17 8.78 8.76 1.81 10.6 7.24 10 1.17 8.85 7.48 6.06 8.38 9.61 9.63 3.46 3.62 0 7.1 5.47 5.01 2.43 10.8 8.6 5.43 0.7 1.81 4.63 9.87 9.13 3.76 11.7 9.72 11.5 3.76 1.81 4.11 2.05 9.18 9.21 7.07 9.72 10.6 4.06 6.43 10.2 8.89 5.58 0 8.15 9.92 9.87 1.53 4.12 8.72 4.43 1.81 3.46 14 12.9 11.7 0 4.84 7.39 13.2 2.43 8.04 1.81 10.1 10.1 5.75 6.06 11.4 7.92 10.3 5.79 7.05 2.59 2.05 8.68 9.7 5.34 5.77 7.87 11.1 4.48 3.76 7.36 6.02 1.81 3.82 6.75 8.84 11.1 8.74 8.37 5.22 2.86 8.53 9.07 9.53 8.23 3.95 4.87 9.68 8.62 8.6 4.67 2.73 4.84 7.65 10.9 10.5 8.37 7.28 8.71 2.25 8.74 3.89 1.81 6.06 10.3 12.2 4.26 4.56 1.17 0.7 8.65 3.19 6.41 6.31 8.25 7.36 9.01 9.67 7.25 6.66 7 10 6.32 2.43 0 7.56 5.92 12.5 9.01 7.86 10.6 9.25 10.7 9.66 12.1 10.6 8.11 0 8.37 10.3 5.04 9.36 9.26 9.44 5.51 8.48 11.4 4.11 8.86 7.42 5.76 7.01 9.83 8.96 9.43 8.84 4.16 8.98 7.88 7.59 9.31 9.42 9.48 11.7 1.17 5.9 8.09 9.15 6.52 8.61 10.5 8.94 0 7.79 8.19 8.08 9.49 10.2 10.2 9.26 7.7 9.81 2.73 8.34 8.4 3.69 8.73 9.32 7.92 7.53 9.82 8.85 2.25 10.8 3.89 9.67 8.05 5.93 5.87 6.61 8.94 2.05 6.71 9.84 8.01 8.84 11 6.85 2.05 7.85 9.66 9.24 9.96 0 9.23 7.81 2.05 4.93 1.17 8.01 9.91 11.9 1.17 2.43 9.6 10.8 9.81 4.99 10.1 4.67 3.46 10.2 0 11.8 6.34 8.1 9.88 6.93 5.78 10.7 8.67 7.45 7.24 6.19 6.15 9.49 8.93 8.65 4.63 8.86 13.1 8.64 6.35 0.7 10.2 4.16 2.73 11.2 10 12.2 9.15 0.7 7.37 0 10.4 8.77 7.68 8.03 6.95 11.6 6.49 0 8.83 6.33 8.13 8.07 5.9 0.7 5.95 7.7 0.7 9.93 3.89 10.2 2.43 9.87 10.6 8.24 6.81 10.7 8.65 9.97 0 9.11 1.17 5.32 9.1 9.35 11.4 10.9 6.83 10.1 10 9.83 7.54 5.81 7.61 0 7.65 9.91 5.53 13.5 8.29 9.87 7.12 10.3 8.95 12.2 8.11 6.9 5.49 10.5 9.01 8.57 4.8 6.4 11.2 9.27 9.31 8.01 10.2 5.96 8.4 4.4 7.56 8.4 10.3 7.18 4.74 11.1 0.7 5.29 1.53 9.5 3.95 6.46 1.53 9.33 3.72 2.73 11.6 7.58 9.75 5.68 0 10.7 8.77 9.91 10 8.58 6.97 11.3 10.3 9.9 8.45 8.84 8.97 10 2.43 9.7 10.8 8.89 9.89 5.55 7.8 9.38 8.8 9 5.93 5.96 0 10.2 9.07 6.74 9.56 9.38 12.6 2.73 8.03 11.3 9.65 10.9 7.62 11.5 3.09 1.53 9.66 0.7 9.78 8.01 8 3.19 7.71 5.38 13.9 6.11 2.86 2.59 9.56 9.66 9.78 8.52 11.6 9.2 7.87 2.59 7.6 2.86 12.8 4.77 9.12 9.96 9.21 9.02 10.8 6.77 5.89 11.3 9.16 14.4 11.2 12.4 11.7 6.19 11.9 10.8 10.5 11.5 12.2 10.3 8.08 7.58 10.2 11.1 9.01 10.5 6.94 7.93 10.7 8.6 8.68 11.3 10.6 6.94 6.7 10.6 7.72 10.7 9.34 5.84 11.2 4.55 8.3 10.4 9.42 5.6 5.07 4.9 0 10.1 8.21 11.1 9.04 10.1 6.17 11.1 12.6 12.3 10.4 11.3 10.1 8.15 8.34 8.2 11.2 11.9 9.3 9.2 12.1 11 10.2 8.73 4.06 6.33 7.9 7.38 11.5 1.81 2.86 0 0 11.5 11.4 8.84 11.6 9.28 10.9 12.2 10.4 10.8 9.05 4.85 9.52 10.2 9.03 12.8 9.85 8.17 10.1 4.52 10.7 3.46 0.7 2.35 3.38 8.5 5.83 7.86 4.31 10.1 7.39 6.98 10.9 2.73 8.17 12.2 11.8 9.19 14 9.58 6.14 7.1 1.17 1.17 9.84 9.21 2.43 11.3 10.5 2.98 9.92 6.38 3.09 3.89 1.53 15.1 6.91 9.79 8.42 10.8 8.3 6.4 5.27 9.67 8.36 9 12.2 10.2 0.7 6.75 4.7 10.1 0.7 1.81 6.88 9.97 7.39 4.93 12.2 9.75 4.56 8.11 4.96 10.3 6.67 6.33 8.32 8.85 5.36 8.81 7.99 7.74 8.78 10.1 8.69 9.82 10.5 9.16 11.4 8.92 5 15.2 11.3 9.85 10.3 10.1 9.78 12.2 10.3 12.1 10 8.45 9.61 9.34 8.99 10.1 10.7 11.5 9.41 9.53 7.1 10.1 0 6.66 0 9.88 7.04 7.7 10.9 8.22 1.53 7.59 8.25 2.59 5.49 9.7 0 9.89 7.99 9.16 9.71 9.99 9.74 3.83 5.73 1.72 10.2 9.73 10.3 9.95 9.74 7.89 7.51 10.3 7.54 7.72 10.1 12 8.56 9.83 0 3.54 5.36 10.3 2.73 0.7 8.64 8.55 10.8 4 1.17 9.16 6.37 6.77 5.49 7.37 10.3 4.16 4.96 4.06 1.53 0.7 2.73 8.31 6.76 6.8 7.76 11.6 8.69 6.46 3.62 9.4 13.3 11.3 8.29 0 4.26 1.27 3.09 7.5 0.7 7.48 8.43 7.48 6.65 13.3 10.2 11.8 10 1.17 7.32 11.2 10.4 0.7 10.8 3.62 9.6 9.28 8.51 6.1 0 6.79 9.31 11.3 10.7 1.17 8.07 4.99 7.81 6.38 8.33 9.07 0 9.94 10 8.93 0 9.77 8.52 6.46 5.04 6.17 6.63 1.17 11.3 10.3 8.6 8.81 8.35 7.18 9.66 2.73 1.17 5.99 10.9 3.38 0 2.73 0 8.75 11 8.98 10.3 8.27 2.05 4.6 7.67 6.22 10.5 9.15 6.24 8.23 8.71 8.55 2.73 7.86 4.84 7.58 4.87 0 5.2 4.16 7.77 7.31 7.68 8.2 4.06 9.35 7.46 5.51 10.2 10.5 8.95 12.7 8.56 8.4 5.51 7.17 10.2 9.29 9.31 11.9 7.04 7.16 6.49 1.17 8.77 1.53 9.68 9.84 8.95 8.26 4.7 9.79 5.96 2.25 10.1 8.16 0.78 7.13 9.89 9.67 7.86 8.73 1.53 7.68 8.65 6.57 7.31 7.83 2.79 7.12 3.29 11 7.44 7.94 8.61 7.12 9.23 9.69 7.94 7.51 2.43 9.19 2.05 7.02 9.63 8.72 10.5 7.62 9.09 11.7 0 6.25 0.7 13.2 2.98 10.9 8.51 7.8 11.4 3.69 9.65 9.47 7.21 1.53 6.91 10 1.17 10.1 9.86 7.67 7.45 7.78 5.88 1.17 9.43 10.4 11.6 10 9.43 5.45 9.08 8.78 8.17 1.53 10.5 4.8 7.83 10.3 7.99 6.25 11.1 10.6 10.1 7.97 8.36 4.44 11.6 12.4 6.05 9.33 6.89 9.53 5.64 5.66 11.2 8.91 9.51 9.32 2.25 7.38 7.6 8.97 11.5 4.6 5.64 8.9 6.15 1.81 0 5.51 4.11 4 4.74 8.58 7.11 11.8 7.57 8.95 9.74 2.25 9.19 9.23 7.93 10.7 10.4 8.38 4.31 11.4 9.68 11.9 12.8 7.97 6.93 0.7 6.15 6.03 10.3 10.2 0 6.72 8.52 8.18 10 5.2 10.1 8.65 3.46 7.84 9.2 9.41 8.72 0.7 9.64 5.25 2.59 8.16 11.4 5.2 10.9 7.6 1.17 11.4 11 8.25 8.79 2.59 7.9 6.42 9.06 3.95 6.55 4.67 10.7 7.51 6.31 8.35 9.59 10.5 4.74 10 8.21 7.69 7.56 2.73 10.5 8.71 6.56 0.7 8.6 5.64 9.71 6.84 1.53 10.1 5.55 10.5 11.5 6.78 9.84 10.8 7.1 6.69 4.7 4.7 8.41 1.81 5.27 5.22 9.83 8.6 6.78 7.6 6.93 0.7 11.2 7.84 5.84 9.36 7.14 9.01 7.09 3.19 8.34 9.26 8.71 8.59 10.8 9.51 2.25 7.91 7.95 9.35 7.69 6.97 10.1 10.9 6.51 6.74 10.8 7.99 5.47 6.61 8.06 0 8.95 0 9.38 9.46 3.82 1.81 7.57 8.1 10.7 1.81 9.06 4.11 7.51 7.63 9.53 9.18 8.29 7.61 8.32 10.5 10.3 1.81 6.86 6.58 8.25 8.01 6.01 5.76 9.62 6.86 12.5 8.89 12.1 6.5 9.84 9.74 11.9 8.52 10.6 0.7 10.2 10.7 4 9.61 1.17 7.94 8.3 7.5 9.3 5.07 0.7 5.55 5.6 1.17 0.7 11.9 0 7.18 10.2 2.05 11.1 8.83 5.99 6.5 9.1 3.89 7.65 8.88 6.64 14.3 7.88 11.2 3.46 6.31 10.4 9.3 6.93 8.24 9.1 0 6.16 8.65 2.98 7.12 11.7 8.38 1.17 12.6 7.33 4.26 5.57 6.94 3.38 10.3 8.08 4.63 0.7 9 7.87 4.04 7.78 8.01 4.52 8.29 10 12.6 7.57 8.28 8.83 8.3 4.35 9.9 8.68 10.7 7.81 9.3 5.34 8.43 10.6 9.19 7.65 8.72 4.84 10.2 11.6 9.76 9.31 4.52 9.77 8.93 8.55 2.25 9.85 9.14 3.54 9.51 13.8 10.4 7.79 13.4 3.82 8.24 8.43 4.87 8.43 7.96 5.73 10.6 9.99 7.35 4.31 6.61 7.94 7.6 2.59 5.49 1.09 1.81 10 9.93 6.35 7.66 6.53 4.6 5.76 12.1 5.68 1.17 10.3 8.23 8.88 9.85 8.06 5.66 1.81 9.29 10.2 9.14 12.3 5.2 11.2 9.46 10.7 7.71 0.7 8.96 8.26 9.23 9.84 7.76 4.06 8.63 5.79 10.9 5.71 0 10.2 8.27 8.8 9.48 9.4 9.64 10.3 10.6 2.25 10.8 8.69 10.5 4.87 3.38 10.9 12.2 0.7 12.3 7.41 10.7 5.25 10.8 2.59 7.62 0 8.52 7.33 4.31 6.87 9.64 11.2 9.82 0 12.6 8.89 10 8.16 2.59 7.5 9.22 4.35 4.18 2.28 7.94 9.14 8.44 12.4 2.59 11.1 9.22 10.5 7.9 12.5 10.7 0 7.6 13 1.17 9.13 0 9.01 0.7 5.45 0 10.8 7.04 10.8 3.46 9.27 7.75 11.2 0 5.1 2.25 9.46 8.56 6.05 9.12 8.97 7.46 7.33 6.52 5.07 0 11.7 4.16 5.81 6.74 5.66 7.86 10.1 7.64 9.57 10 3.62 10.2 10.5 2.25 8.71 9.65 13.4 8.52 10.1 9.37 8.07 5.58 10.5 2.43 10.1 1.81 11.2 11.5 3.19 11.4 8.12 7.08 7.29 8.03 9.47 10.9 5.68 10.3 12.4 8.06 0 6.56 7.38 2.59 5.93 1.53 8.54 5.1 8.58 7.27 7.39 7.31 10.8 13.7 12.3 2.73 11.3 6.91 6.22 8.97 8.17 9.99 6.77 10.4 6.31 8.09 1.17 9.23 9.17 8.46 6.38 8.75 0.7 6.71 10.2 10.9 5.73 9.01 9.41 9.14 2.43 8.74 7.06 9.58 9.9 5.68 8.3 4.26 5.78 8.06 8.28 13.3 11.6 4.8 3.82 6.89 2.73 0.7 12 13.2 8.59 8.3 8.68 3.46 7.67 7.5 9.18 10.9 10.6 3.89 0 12.1 8.75 9.92 7.55 4.87 10 7.22 9.44 10.2 10.3 11.2 10.3 13.5 9.38 9.02 6.77 9.95 8.74 8.4 7.85 7.96 6.29 9.14 11.8 6.47 7.29 9.24 4.96 6.17 8.58 5.55 11.1 11.1 10.2 9.87 8.74 10.8 11.4 10.1 11.4 10.1 1.53 9.86 12.9 10.3 10.4 7.38 6.68 11.9 10.4 8.56 7.19 9.62 11.8 10.1 10 10.1 7.98 7.43 11.5 6.61 4.67 8.63 13.8 10.2 5.76 9.01 10.7 7.24 3.38 9.45 9.75 14.1 6.6 10.9 9.09 2.86 10.2 4.99 10.7 11 9.92 7.79 10.6 8.7 7.74 7.25 4.31 4.77 2.59 8.99 5.62 7.46 12.1 6.11 0 13.2 9.26 6.82 6.49 10.3 8.04 12.8 11.4 10.4 9.46 11.9 9.7 8.92 7.14 7.93 11.3 10.3 10.6 9.65 8.13 8.48 9.69 7.41 7.39 12.2 13.8 11 5.76 12.3 10.5 6.71 9.64 5.15 10.8 12.8 9.9 2.25 10.5 11.5 9.01 8.7 8.53 9.15 9.33 9.28 11.4 8.5 10.3 9.97 9.95 11.1 9.64 5.96 8.54 12.4 7.23 10.8 9.11 9.91 10.2 11.8 7 8.64 10.4 0 4.8 1.53 7.93 11.2 10.8 11.9 9.29 0.7 5.84 1.17 11.6 6.42 8.62 8.41 9.52 2.43 8.94 2.25 8.28 8.3 15.5 2.73 6.62 9.94 11 8.39 10.4 9.45 5.07 9.69 9.46 9.23 9.72 4.44 6.25 10.3 4.7 6.77 9.6 5.6 12.9 7.04 8.61 7.15 10.8 7.71 9.77 9.09 13.1 6.17 4.16 5.55 8.07 7.16 9.95 7.64 9.31 4.26 13 8.37 8.79 9.17 9.88 8.56 6.52 12.7 8.14 9.5 10.5 11 10.4 11.3 11.1 10.8 10.2 8.65 11 6.86 12 6.34 11.3 10.1 7.82 5.93 12.1 9.9 9.45 11.2 9.15 10.4 9.14 2.05 10.4 10.9 7.79 10.9 12.6 12.4 6.44 9.54 10.4 0 11.5 9.83 10.5 11.1 8.41 9.88 8.34 10.5 9.42 8.58 8.89 11.3 5.69 7 8.88 11.3 7 7.85 8.03 7.47 11.5 7.73 3.76 6.52 1.17 7.89 5.55 7.96 9.68 4.4 8.1 9.52 6.9 9.87 8.67 8.86 8.86 8.8 7.38 8.64 8.96 8.74 7.84 2.73 10.5 8.81 8.81 6.37 10.4 10.5 4.16 4.99 8.23 11.2 11.7 10.2 9.88 9.85 11.1 9.19 10.3 9.26 12 10.8 9.93 10.4 7.45 10.2 7.52 11.3 8.25 9.95 8.66 12.1 8.53 10.6 1.81 8.29 9.16 8.84 8.47 9.91 11.6 3.19 7.04 3.69 5.79 7.99 10.9 9.64 8.8 7.79 9.13 10.9 10.7 6.66 7.68 2.59 4.11 9.45 0 4.44 11 8.9 12 4.63 12.2 11.7 8.83 9.87 8.14 13 12.6 6.09 10.7 4.31 9.92 8.5 4.84 8.8 10.9 8.74 7.88 11.1 9.29 3.09 7.31 9.15 9.69 6.22 8.24 11.9 8.34 5.27 11.1 6.86 5.81 3.62 4.16 9.35 10 8.87 12.2 11.2 8.94 2.86 11.5 9.37 10.2 10.6 11.2 9.59 10.4 10.5 6.78 9.33 12.1 8.6 8 5.9 7.78 11.3 8.79 9.87 12.5 7.43 10.2 1.53 12 7.22 9.43
+TCGA-49-4510-01 10 6.36 3.11 7.84 7.51 8.39 1.69 3.85 3.38 4.03 5.64 8.07 5.89 0.97 3.49 9.27 11.1 9.72 8.11 9.56 11.3 10.8 10.3 3.91 9.42 8.67 3.36 10.4 5.44 8.31 5.76 6.8 1.97 1.38 3.82 2.61 1.95 4.51 3.06 4.7 5.51 3.97 5 1.19 5.83 3.97 0.71 6.12 12.2 6.96 3.53 8.71 10.4 10.1 4.71 2.75 7.12 0 5.6 6.64 7.8 5.95 7.23 6.96 3.45 3.22 6.88 7.24 10.5 5.93 5.01 6.37 2.61 2.17 6.5 3 6.5 6.9 3.2 1.83 5.19 0.4 5.14 6.43 5.44 1.69 7.7 6.43 6.15 4.11 11.1 5.85 6.56 7.05 6.29 3.91 1.19 2.88 6.24 3.88 2.82 6.33 0 5.59 5.32 3.32 7.5 7.47 7.59 5.66 1.38 0.97 7.56 4.56 5.53 1.54 3.13 3.61 3.31 3.64 4.64 4.03 0.97 5.41 0.71 6.15 2.95 3.85 4.75 13.3 4.34 3.61 4.97 7.98 3.61 3.11 4.17 3 3.8 9.8 8.74 11 0 4 4.78 11.3 0 11.8 3.49 0.4 5.57 1.69 7.99 9.66 11.9 3.91 4.6 1.67 8.34 5.84 6.46 7.28 5.81 2.61 8.06 7.17 8.47 4.97 6.73 2.75 9.69 9.28 4 6.43 4.51 3.49 5.15 6.06 6.55 5.7 6.11 8.15 5.45 5.49 5.57 4.55 4.4 0.4 8.4 6.19 7.87 10.7 3.49 4.89 5.49 4.26 6.03 7.04 8.03 9.49 7.3 9.79 9.01 11 9.14 9.87 6.17 10.9 11.1 9.9 7.61 10.3 11.2 11.1 9.31 8.88 9.12 10.7 8.05 9.84 8.66 10.6 11.1 10.6 7.9 8.94 2.75 9.42 9.03 11.9 11.9 4.16 9.29 10.1 8.72 5.88 10.7 7.74 9.77 6.39 9.79 7.52 12.2 12.5 11.7 12.4 11.9 12.2 4.19 13.8 9.01 1.54 6.34 11.2 11 11.9 10.2 12.9 0 12.1 5.51 9.39 5.32 10.2 8.66 10.4 6.72 11.3 11.4 10.3 8.77 5.06 9.98 9.48 12 8.59 6.94 13.3 10.9 10.8 13.1 11.2 11 9.17 9.56 11.9 10.1 10.2 9.85 9.68 5.32 6.92 10.4 5.77 9.95 10 6.38 12.6 8.99 8.68 10 12.2 10.3 8.43 11.2 11.4 1.83 8.7 7.67 8.27 14 10.1 6.97 8.27 4.16 10.6 10.9 9.77 9.54 8.38 10.2 10.8 8.77 9.49 10.5 9.89 12.3 10.1 11.4 8.49 9.52 7.5 11.1 5.46 9.3 9.56 8.15 7.38 8.58 10.3 11.2 11.2 9.01 10.5 8.11 14 8.3 8.18 13.1 9.32 10.9 6.19 10.3 0.71 3.88 9.61 7.5 11.2 1.83 6.14 5.57 10.2 11.3 9.94 9.07 7.66 7.53 15.3 8.77 5.35 6.87 10.6 11.2 11.3 11.4 6.4 7.79 11.3 3.72 8 8.62 11 7.69 9.66 10.4 10.8 4.44 10.6 8.6 9.82 10 10.8 11.1 7.67 6.9 10.5 11.9 9.33 9.34 9.47 8.95 10.8 10.9 9.05 10.3 11.7 8.59 11.9 10.4 9.68 8.53 10.7 9.71 8.92 7.98 11.1 9.77 8.94 8.25 6.19 10.1 6.25 8.49 11.2 5.6 10.6 10.6 10.3 2.96 10.5 11.5 12.5 7.39 9.36 6.81 6.98 8.72 7.75 8.1 9.45 10.3 11.5 10.5 4.94 11.3 9.99 6.72 7.02 0 9.56 3.32 7.92 4.81 11.6 9.12 8.54 4.56 12.9 9.58 3.82 8.3 10.1 10.8 2.82 8.9 9.7 3.17 5.85 7.81 8.55 5.22 4.21 9.02 3.17 10.5 9.19 8.83 10.6 12.1 4.78 13.5 9.67 0 9.36 9.14 7.02 12.1 8.32 8.92 4.16 3.27 9.07 8.45 6.46 13.5 10.6 7.69 11.9 9.74 13.4 12.1 14.9 8.65 10.4 9.12 10.1 8.15 3.91 8.89 15.2 0.4 11.1 5.46 13 9.43 11.4 11.5 10.4 9.95 10.1 7.17 10.9 9.46 11.5 10.9 11.3 7.93 10.1 8.63 8.87 11.6 9.4 12.3 7.22 10.9 11.6 8.85 6.08 10.1 10.1 10.9 10.9 4.8 11.2 9.53 0.4 10.4 6.37 10.4 8.99 10.4 11.9 11.6 11.2 9.63 7.84 8.52 6.64 10.4 7.55 9.48 8.95 12.1 4.08 8.65 5.07 9.62 8.93 11.4 11.3 9.29 11.5 10.8 8.89 8.52 10.2 10.2 10.8 9.38 2.17 12.7 10.1 11.5 9.93 11.3 11 11.5 11.2 7.55 11.1 9.36 8.52 2.68 10.5 7.34 7.74 8.35 9.26 12.6 11.6 7.46 9.94 10.5 10.6 3.61 7.86 12.8 13 8 12.8 8.55 9.48 9.5 12 9.7 11.4 10.1 10.5 1.19 10.8 9.27 8.46 7.27 8.87 8.24 8.04 10.3 10 12.2 10.6 11.3 9.5 11.1 12.3 12.2 14 11.7 9.11 11.4 12.6 8.69 8.68 11 9.72 5.64 9.76 6.92 1.83 8.04 9.99 10.5 2.82 12.1 13.9 10.3 4.44 12.2 10.7 12.2 12 14.9 16.1 7.05 12.3 3.85 8.06 10.8 9.62 0 10 9.13 10.2 11.7 9.83 7.14 12.4 7.9 7.67 10.3 8 9.55 10.8 4.7 10.4 9.96 10 10.9 9.91 6.86 10.1 7.12 9.68 10.3 7.16 11.5 9.52 12.5 4.66 6.59 8.29 5.21 9.05 11 9.47 13.4 13.8 7.9 6.11 11.7 12.5 3.94 8.49 5.69 8.58 4.48 7.4 9.74 9.4 4.55 7.25 9.52 4.94 9.36 11.3 15.2 10.3 7.54 11.7 9.79 11.1 10.9 1.83 7.2 9.62 3.17 8.17 9.1 5.61 10.4 8.78 10.3 5.29 4.06 7.93 10.1 9.48 10.1 4 10.2 10.8 7.09 2.07 5.29 11.6 11.6 6.56 7.07 8.75 5.72 8.76 11.1 7.72 3.9 7.49 13.4 4.06 11.4 11.8 10.8 11.1 13.5 9.09 11.9 8.13 4.56 4.14 11.3 3.49 2.17 0 1.69 9.65 7.91 10.2 0 7.49 8.51 6.37 4.76 11.7 11.3 7.58 7.57 11.2 7.91 4.21 9.96 10.5 11.1 10.5 9.6 11 8.07 10.4 10.6 8.19 9.67 12 8.89 7.37 8.96 9.99 9.47 6.63 11.9 8.69 12.3 7.36 5.32 7.5 9.9 5.9 4.4 4.06 12.6 9.98 0.4 0.4 8.64 9.1 10.6 12.1 7.17 8.72 8.8 1.54 7.56 7.8 12.9 5.21 10.7 7.66 9.91 1.83 5.66 3.91 10.8 9.06 4.42 11.8 10.6 9.03 4.91 11 12.2 4.73 6.41 5.68 6.39 9.21 9.63 10.3 9.15 10.6 7.31 4.53 7.98 10.6 8.5 0 1.38 8.52 8.24 1.38 3.06 11.9 9.68 8.84 10.1 6.78 2.53 10.1 9.46 12.5 9.29 5.74 8.27 10.4 7.96 10.7 8.03 9.38 10.4 9.45 7.85 0 10.3 1.83 11.8 9.46 12.7 0 10.6 10.2 11.4 10.6 11.8 8.91 7.33 10.7 10.1 10.5 6.38 12.1 0.71 12.6 4.26 9.74 9.73 6.93 3.4 9.56 11.4 13 10.7 9.08 10.2 12.6 10.3 9.98 11.1 9.39 9.5 10.8 14.1 10.7 13.3 12.7 12.8 8.62 10.8 6.69 9.39 9.05 10.6 10.5 12.5 13.2 8.47 9.91 11.9 8.02 9.92 11 9.11 8.72 12.6 4.48 10.4 10.4 9.99 10.8 6.39 5.32 11.2 7.42 10.5 8.4 10.2 10.4 5.92 6.09 7.76 8.7 1.87 5.3 8.55 8.99 3.4 13.4 9 11.1 9.3 10 7.29 7.12 9.32 9.79 8.85 0.4 6.15 3.61 6.29 11 12.3 8.84 13.7 7.91 7.79 9.86 10.6 8.18 7.53 9.43 0.8 9.13 10.9 9.08 11.5 12.8 10.2 9.03 11.7 10.2 11.8 10.5 6.8 0.71 7.18 6.59 7.96 11.3 9.49 6.3 11.6 10.8 9.23 8.43 8.77 4.42 10.4 12.2 12.3 8.11 9.24 10.9 9.49 8.46 6.66 10.4 7.25 5.71 9.05 10.8 8.49 12.6 7.09 9.38 8.59 8.02 3.85 8.7 6.05 9.84 13 6.19 9.76 9.06 9.06 9.79 9.23 7.77 9.95 4.26 8.99 8.45 9.74 0.4 6.67 1.19 9.41 7.57 11.3 2.36 8.69 9.92 3.45 11.2 9.96 9.86 1.54 9.12 5.63 6.3 3.68 5.14 9.63 11.3 5.45 5.64 4.95 11.1 8.5 8.13 8.05 9.43 9.75 10.6 5.87 8.62 10.3 8.6 11.6 8.89 5.96 12.1 8.85 11.6 7.85 5 11.9 9.99 7.06 9.11 11 12.1 7.15 9.22 6.7 10.1 9.77 9.28 11.6 6.79 9.79 9.06 7.52 7.65 9.31 9.95 10.7 11.2 8.25 7.32 9.01 10.1 8.75 8.7 8.94 11.1 9.2 8.65 8.46 8.14 3.36 9.76 7.79 11.1 10.9 14.3 9.17 3.88 8 7.26 10 10.9 6.94 7.99 9.56 10.7 8.42 7.12 11.7 9.32 6.18 6.35 10.8 9.26 5.55 8.29 7.08 6.46 7.53 6.51 10.8 8.01 9.57 0.97 4.84 10.3 11.2 7.47 10.2 10.1 9.85 9.23 10.7 3.49 12.4 7.05 8.46 6.42 10.4 8.03 10.9 9.84 7.57 7.53 2.68 5.84 8.53 11.3 7.26 9.18 8.96 5.43 10 8.69 11.4 7.83 6.77 2.27 9.04 4.98 11.3 9.84 8.16 6.03 9.97 9.86 8.31 9.15 10.1 10.3 9.93 8.2 9.96 8.17 9.39 6.84 9.89 3.27 10 3.72 11.3 5.77 7.57 10 12.7 5.88 11.3 6.25 6.63 10.9 5.78 2.07 9.17 8.97 0 10.8 11.7 9.87 10.9 7.45 8.91 12.6 11.4 11.4 9.94 8.84 6.35 7.1 11.9 9.86 1.54 13.4 9.33 11 10.8 12.1 10.2 13.2 11.8 3.36 7.51 9.48 0.4 11.8 10.9 11.8 10.9 10.6 11.1 10.2 11.7 2.53 10.6 7.62 5.52 2.45 7.05 6.18 9.2 7.82 1.43 7.78 8.71 10.4 7.52 5.01 7.07 11.3 1.19 9.61 0.4 9.29 7.92 4.75 4.28 11.4 3.49 2.45 1.19 8.58 8 5.18 1.69 8.94 3.98 5.26 0.71 1.19 6.21 4.03 8.17 6.68 9.52 8.48 6.76 1.19 9.29 9.07 4.98 11.5 5.14 9.29 9.41 7.72 5.03 10.8 4.68 8.7 8.63 5.89 7.8 6.86 5.86 8.85 1.19 6.59 7.36 7.43 10.2 13.1 0.97 8.62 8.06 5.86 6.15 10.3 8.51 6.8 8.53 10.3 11.3 9.34 8.15 7.93 5 6.57 2.45 7.69 6.53 8.32 12.6 8.66 9.39 7.35 10.7 10.4 9.54 5.62 10.2 9.31 9.29 5.17 10.9 10.8 10.1 8.4 7 1.19 5.67 7.2 12.2 8.69 9.89 8.11 9.93 5.71 9.08 7.14 11 12.4 7.21 2.17 2.68 9.38 8.53 7.33 7.44 11.6 9.47 8.46 10.3 7.11 11 8.35 5.66 8.98 0.4 3 9.8 1.38 7.28 8.37 9.14 4.7 8.74 6.77 5.16 7.14 9.34 6.28 0.4 9.48 10.4 5.04 6.42 8.32 2.17 4.26 6.62 7.77 8.87 9.8 5.89 10 7.92 11.7 8.44 11.9 7.69 10.3 11.3 9.16 8.28 5.19 8.4 7.95 10.6 7.84 8.94 9.14 3.4 9.09 7.75 5.29 1.54 8.12 3 8.91 6.5 6.66 4.29 3.49 4.92 9.37 2.07 1.19 9.73 11 7.46 10.7 10.1 0.4 6.17 9.21 7.54 10.3 9.31 3.61 8.36 9.85 1.19 5.51 10.1 8.4 10.5 6.13 7.94 10.7 8.11 3.64 8.25 4.92 4 7.41 13.3 7.5 3.27 9.81 5.37 6.52 6.65 12.3 10.9 10.9 1.83 3.11 5.25 8.57 9.96 6.59 6.33 11.7 0 6.96 9.67 8.71 7.09 10.4 8.28 9.16 0.4 6.13 2.68 7.69 0 10.7 10.6 7.58 6.63 9.05 11.4 5.8 7.31 0.71 7.92 8.01 9.73 9.31 8.21 5.39 8.45 7.66 2.61 8.46 10.1 12.7 13.5 9.92 2.53 5.15 8.28 7.04 0 10.6 12.1 9.34 7.14 9.5 3.57 6.07 9.78 9.8 11.2 9.74 11.1 7.11 3.27 9.44 8.41 9.4 4.29 5.44 7.59 7.03 8.62 10.1 2.07 11.7 12.1 3.27 4.03 7.16 11.1 10.4 10.6 8.3 4.08 8.09 13 1.95 7.72 8.01 4.42 8.27 8.27 9.54 7.78 6.71 10 0 0 1.54 8.11 3.82 8.27 6.4 8.06 6.43 9.36 8.98 5.65 9.42 10 6.73 6.17 7.87 9.1 8.75 2.17 9.66 9.28 7.34 9.61 8.48 8.43 9.33 5.75 10.2 7.46 7.48 4.31 7.88 5.59 8.12 7.34 3.75 7.53 6.42 5.31 4.21 6.07 8.46 6.39 1.38 7.65 5.08 9.67 8.77 9.73 6.29 7.72 4.59 9.34 4.89 7.6 8.23 6.95 4.66 7.97 8.53 7.64 7.06 0.71 7.69 9.13 4.24 3.49 8.24 9.87 8.39 11.8 9.2 5.4 7.95 9.3 7.53 12.4 10.8 3.88 5.52 8.48 9.99 8.31 5.59 1.69 7.35 9.9 9.13 6.47 4.36 6.15 6.73 0.71 5.29 10.8 8.51 10.5 7.74 9.51 8.83 5.16 10.6 10.6 11.4 7.73 8.66 5.65 5.49 15.6 9.26 9.23 2.75 8.19 1.95 8.28 10.3 1.54 7.74 3 6.67 9.93 3.72 10.4 10 3.75 6.75 5.43 6.79 4.53 7.68 6.12 7.66 9.68 9.76 9.87 5.2 4.29 9.93 3.88 3.97 3.68 5.34 7.6 6.75 9.88 9.96 8.32 6.81 9.35 10.1 7.11 11.6 10.7 6.76 8.94 7.49 8.21 7.36 0 9.26 8.48 12.8 8.51 4.86 11.2 5.67 3 8.84 11.5 9.74 11 7.02 8.92 9.14 4.51 3.49 8.4 1.38 4.33 1.54 9.2 2.53 8.35 0.71 3 5.54 8.65 4.16 8.75 6.07 3.22 11 10.4 7.64 7.13 11 2.2 2.45 10.7 6.03 5.69 0 11.3 14 8.49 8.32 9.79 13.8 10.3 4.38 0 9.65 7.68 2.68 12 1.19 7.78 8.11 14 4.08 9.56 13.2 1.38 12.4 2.88 5.3 12.1 10.1 10.4 2.07 9.72 11.5 7.69 7.99 13.1 11.6 8.27 5.06 3.78 8.82 3.31 8.79 3.91 10.4 9.61 3.78 4.48 4.19 4.75 12.3 9.65 11.4 8.86 8.98 10.8 4.89 9.49 12 8.7 12.8 9.37 8.09 12.2 11.4 9.84 7.22 8.06 10.1 1.54 7.96 9.3 8.32 7.21 8.04 9.25 9.19 8.07 11.5 4.81 1.19 7.49 7.41 7.4 5.38 3.61 9.2 6.47 11.1 5.95 6.54 7.02 7.74 8.4 8.88 6.33 6.69 8.91 2.27 6.57 9.45 8.97 1.95 8.7 3.53 7.03 9.27 8.33 8.18 9.64 9.43 5.03 5.93 7.76 3.94 8.17 7.06 9.84 7.53 9.21 4.36 2.61 0 6.65 7.45 2.68 8.48 9.53 9.27 11.5 12.4 8.64 3.97 8.47 11.1 0 7.17 10.1 7.25 11.6 10 9.45 1.38 9.68 8.58 1.83 10.5 7.68 0.71 7.89 9.59 6.39 10.3 7.46 10.8 0.71 0.53 7.55 11.5 6.06 8.36 2.61 5.4 3.05 9.21 8.01 7.28 12.9 8.24 7.67 8.48 6.88 12.8 2.61 7.19 2.95 7.56 7.67 2.45 4.92 6.56 5.72 7.82 2.75 5.04 10.7 8.55 12.4 8.74 1.95 4.06 8.45 4.78 12.4 2.95 8.09 10.1 10.8 8.07 9.07 2.17 6.43 7.93 6.24 9.11 2.82 9.33 12.1 9.71 4.06 9.4 10.6 7.7 6.96 12.6 5.54 11.4 6.8 6.87 13.1 11.9 10.3 9.49 3.38 7.45 7.97 7.8 5.34 8.51 3.94 10.9 1.54 10.2 13.2 4 7.44 8.09 7.89 7.15 7.11 11.6 6.13 4.62 14.1 4.26 2.07 13.7 12.2 12.6 9.76 14.7 8.9 6.8 7.71 8.58 6.59 13.8 7.06 9.45 9.06 9.32 10.7 9.46 9.57 6.21 5.35 7.69 9.54 0.71 1.83 11.4 4.89 5.34 12.6 4.62 3.53 4.75 7.72 6.22 10.3 6.83 0 10.4 9.68 8.14 8.15 4.62 9.79 8.18 7.21 7.17 10.9 8.84 2.45 11.5 11.6 9.61 2.75 7.97 6.66 0.97 6.7 3.82 8.94 7.86 13 12.2 6 2.95 2.45 9.75 6.83 6.35 10.3 11.6 7.61 7.41 2.69 9.82 8.73 9.97 8.95 11.4 10.2 1.19 5.71 5.85 11.4 3.75 2.27 11.1 10.8 7.7 4.51 9.28 7.55 6.58 1.38 9.67 2.19 3.64 5.37 8.39 7.51 7.43 6.28 5 6.68 4.65 7 10.3 8.65 9.72 4.71 1.83 9.31 10.1 1.38 10.6 12 4.83 7.71 7.78 8.08 4.91 5.21 8.77 3.27 10.1 1.38 9.99 1.95 9.27 9.42 3.4 3.57 11.8 9.31 5.12 4.86 2.68 3.82 0.71 3.75 8.48 5.89 10.2 0 9.39 10.3 10.4 12.5 8.71 10.8 10.8 7.28 5.25 10.3 9.92 4.76 7.9 7.56 9.51 3.85 4.86 7.42 6.17 3.53 8.46 7 7.18 7.33 8.77 7.61 7.42 3.78 4.24 8.22 11.3 7.76 9.18 7.81 7.6 7.91 3 3.64 8.91 7.5 2.45 2.45 11 9.36 7.46 8.55 8.05 1.95 0.71 2.45 3.78 9.6 11.1 1.19 4.55 7.53 4.06 9.45 5.03 8.24 5.81 11.3 7.63 8.43 12.3 4.53 1.54 5.29 12 4.4 7.76 11.3 4.44 3.06 6.75 4.67 10 0.4 4.66 8.27 7.66 9.3 10 7.72 3.88 7.78 5.44 8.71 7.73 6.95 3.97 8.34 2.17 5.11 11.5 8.55 4.66 7.85 5.46 4.71 8.94 10.2 5.76 1.38 9.97 2.61 6.39 3.78 9.71 0 9.03 4.44 5.41 9.53 8.23 13 7.59 8.24 5.84 14.4 5.4 7.72 2.07 10.1 8.96 7.2 1.38 6.49 0 8.46 6.83 1.38 0 10.2 2.53 5.52 4 1.95 9.62 2.53 9.31 5.89 4.55 9.15 3.75 9.35 6.3 8.26 9.23 5.79 14.4 7.94 7.79 7.33 9.09 10.1 9.27 9.39 6.15 0 6.95 2.53 6.41 9.15 5.55 5.89 12.8 6.46 6.88 7.99 2.45 3.22 4.21 5.64 7.53 8.38 4.53 9.43 8.23 8.97 2.27 11.9 7.82 6.22 9.78 7.74 4.33 1.38 0 8.79 7.28 9.26 7.28 6.07 7.61 5.39 5.87 8.24 10.3 8.31 8.5 4.16 7.24 6.5 6.52 8.07 5.7 0.4 6.85 6.35 6.6 8.2 5.1 7.45 5.95 5.45 4.89 0.4 6.8 9.57 6.2 7.87 6.3 8.76 3.36 8.46 9.28 7.96 7.31 8.72 6.25 0.4 11.9 3.45 1.54 5.39 9.33 11 9.08 5.24 9.49 5.64 7.52 8.67 0 13.7 9.22 5.22 10.1 7.28 4.64 3.72 8.05 0.4 3.4 4 9.3 8.85 8.91 9.48 3.57 10.2 9.21 5.3 7.19 13.1 11.4 3.97 9.39 5.77 7.36 14.1 11.1 10.2 0.4 7.02 12.3 0 6.27 13.7 1.38 5.6 1.95 3.06 5.5 0.4 8.67 3.97 4.64 8.19 9.48 6.07 7.96 9.15 4.21 6.4 7.82 9.06 6.89 6.53 7.1 1.19 9.18 3.94 9.51 3.57 7.44 3.58 11.5 8.83 11.1 4.83 7.65 7.58 8.12 4.89 8.51 4.73 14.1 8.87 14.8 7.99 2.07 13.2 9.06 10.9 9.4 5.27 3.97 9.59 2.95 8.43 8.62 9.32 15.4 7.94 4.48 5.69 3.49 1.38 5.76 10.1 2.61 7.84 7.82 8.32 11 0.4 11.6 2.45 2.61 2.36 4.85 7.99 1.19 7.28 6.6 8.53 10.4 2.07 4.26 4.19 3.64 6.57 0.4 9.05 3.4 9.95 9.79 6.45 8.44 4.68 11.5 8.23 9.19 8.64 2.75 4.62 9.8 9.04 4.14 10.3 7.68 8.47 7.15 13.2 4.24 8.89 8.07 10.3 7.64 5.04 5.03 4.29 7.19 8.47 10.2 6.9 3.61 7.96 4.7 7.53 3.94 6.47 4.91 2.82 13.6 8.09 4.86 5.89 7.58 8.08 7.16 7.06 9.88 8.31 8.2 8.02 11.8 7.24 7.71 11.8 7.09 6.68 11.9 10.8 9.25 8.88 8.81 8.79 6.31 4.16 5.24 12.6 6.9 5.75 4.24 3.45 0 14.1 5.47 10.1 7.76 7.83 3.72 6.2 7.61 3.11 5.13 0.71 5.95 9.31 8.25 4.51 7.74 8.1 4.23 0.71 9.85 7.17 11.4 11.3 8.8 5.78 3.72 8.7 6.81 7.83 6.55 8.28 8.75 10.8 2.91 3.45 8.2 8.47 7.7 8.45 10.5 13.9 2.68 10.9 4.48 3.06 8.71 6.6 3.36 8.84 6.12 3.4 9.13 10.3 9.63 3.22 5.75 0 11.3 5.65 9.14 9.54 6.98 6.99 1.83 10.6 4.62 6.9 2.44 5.75 8.77 4 9.86 0.71 2.36 4.29 8.76 5.95 5.81 7.89 5.25 5.29 5.21 3.27 6.54 4.55 10.1 3.82 8.26 4.53 5.6 4.55 1.19 5.15 8.55 4.91 6.1 5.03 8.83 8.52 6.88 7.48 6.6 3.11 2.07 3.97 0.4 5.26 4.16 5.36 4.31 10.5 7.06 9.27 6.2 10.5 0.71 1.19 10.3 6.23 7.15 9.77 3.88 2.36 11.8 11.1 0.71 9.45 2.27 6.93 1.19 0.97 11.3 7.03 4.64 2.07 13.1 8.27 0 6.03 12.2 6.58 8.96 7.84 8.72 7.41 3.36 3.68 6.88 8.62 10.4 12.3 4.33 4.86 3.31 9.99 9.88 3.57 5.07 10.8 10.2 3.45 7.96 5.08 3.31 10.6 3.91 6.79 10.2 0.4 3.57 10.8 3 4.24 6.66 2.17 6.27 11 10.5 3.22 11.7 7.66 5.29 8.63 7.72 11.1 9.19 2.27 4.58 3.72 7.09 2.68 3.53 3.85 4.4 10.8 8.87 9.1 6.7 5.14 7.39 9.23 7.12 7.67 6.21 9.95 6.39 0.71 11.9 8.99 7.15 7.71 6.47 6.28 1.54 7.38 5.89 3.49 8.56 8.91 5.31 6.34 8 11.7 0.71 6.83 6.16 4.08 9.09 3.31 13.2 5.65 11.2 9.35 10.3 2.75 7.4 8.07 0.97 4.24 5.31 9.81 9.77 11.5 10.4 2.95 10.3 0.71 12 2.17 7.45 8.43 3.85 6.14 12.6 1.54 12 6.1 6.9 1.54 0.97 8.78 7.34 8.77 12 13.8 5.37 1.83 3.72 5.79 9.18 6.11 10.2 7.33 12.6 13.7 2.27 2.17 11.3 4.91 0.97 9.15 1.83 9.78 4.66 6.1 13.2 11.3 3.64 7.57 7.57 8.52 0.4 7.06 7.39 10.9 10.3 6.03 9 7.64 6.21 7.57 5.25 10.2 9.32 1.83 9.71 3.97 9.4 1.54 7.46 0 4.19 10.9 4.31 9.43 1.19 7.25 6.2 7.24 4.51 8.01 1.95 8.97 8.95 2.75 1.95 7.62 8.68 6.84 3.64 7.21 8.79 4.31 8.52 5.69 4.6 0.4 8.33 8.37 7.75 4.92 5.92 8.45 5.38 8.23 6.12 4.44 6.75 6 3.22 9.98 9.63 5.65 9.28 6.24 2.36 10.9 1.54 2.68 5.63 6.29 1.95 9.53 6.68 6.46 8.19 4.51 10.3 5.78 11 8.23 5.34 7.62 2.61 6.78 12.4 5.92 13 3.45 13.8 9.14 10.4 9.44 13.9 8.12 7.95 6.99 9.74 12.2 12.1 11.3 7.04 6.59 4.21 6.07 9.9 9.78 9.98 9.97 3.88 10.3 9.17 11.8 0 0 7.57 2.07 10.5 8.48 6.69 7.35 5.2 10.1 9.45 5.57 4.98 1.54 8.41 6.98 5.76 9.79 4.21 5.69 10.4 12.1 8.12 5.76 10.1 10.7 11.3 9.26 7.31 8.4 5.8 11.2 7.38 4.91 8.6 9.38 9.23 8.93 5.8 9.55 9.17 8.56 8.06 11.5 10.2 1.19 10.1 3.31 0 9.89 9.24 6.33 3.36 12.4 7.18 9.72 11.1 5.91 13.2 10.4 8.37 7.01 7.92 9.32 3.75 9.96 7.4 13.7 6.59 10.7 9.62 9.27 12.1 9.52 6.46 8.44 4.8 10.1 10.8 9.79 10.8 10.4 9.98 7.16 6.78 4.46 8.83 9.65 8.81 8.5 9.57 6.12 7.81 13.3 0 11.3 12 12.1 9.74 8.8 6.4 9.84 9.8 9.96 9.27 9.3 8.94 12.7 9.79 9.34 12.6 17.8 3.72 7.55 8.34 10.7 6.31 8.71 8.12 13.9 14.4 14.8 15.6 10.7 12.8 8.01 8.36 9.29 8.45 8.75 9.09 4.62 7.57 8.6 9.78 10.8 10.3 8.69 11.6 7.5 3.91 6.21 11.8 5.95 0 3.22 7.43 0.97 8.47 5.56 6.67 8.86 5.78 7.89 10.8 10.1 7.83 8.58 9.37 8.24 9.77 3.06 7.93 9.98 9.29 0.85 9.63 9.15 6.45 4.64 12.4 6.22 7.63 10.8 3.73 1.54 9.53 0.84 9.54 3.49 4.83 8.25 10.4 6.57 13.2 6.35 8.36 9.66 5.1 6.54 9.69 12.9 8.37 13.9 9.1 8.5 12.2 12.4 13.6 11.5 13.1 3.11 8.39 2.17 10.5 5.27 7.49 10.3 0.4 1.19 6.75 9.3 1.38 9.95 7.58 2.88 4.36 10.2 6.93 7.61 8.49 1.19 9.42 5.98 8.19 8.5 12.8 8.39 6.28 10.6 14.2 9.9 9.3 0 4.24 10.4 8.5 6.01 10.8 11 6.67 3.57 5.31 6.5 11.6 10.6 6.05 10.2 7.45 1.18 8.7 3.11 6.65 4.24 7.73 5.8 0.97 0.71 8.95 6.21 6.94 5.22 9.15 12 9.25 6.78 10.9 7.39 8.4 5.88 7.81 9.6 7.34 6.54 7.62 8.82 5.31 8.34 10.9 10.9 10.5 9.92 7.69 8.47 6.33 9.26 7.24 9.06 5.67 11.9 8.79 6.47 10.6 8.79 10.2 6.97 9.08 10.8 0.4 13.3 3.75 8.97 5.4 10.1 2.36 8.28 7.82 7.41 10.7 0.71 5.31 9.18 10.3 4.85 3.97 11.6 7.49 4.11 4.6 7.16 0 10.1 9.39 9.53 6.61 6.6 9.12 7.01 5.56 7.26 8.31 5.1 12.1 8.63 3.85 15.1 3.97 6.34 3.06 3.06 4.36 10.5 10.4 8.74 6.74 12.8 9.6 11.8 11.3 8.87 8.91 12.4 9.35 4.85 0.71 4.91 9.54 7.85 3.64 8.05 8.32 9.26 9.14 10.5 6.71 14.1 8.07 9.75 6.59 7.32 10.2 9.93 8.68 4.06 9.12 12.9 12.3 7.66 6.01 0.71 11.3 3.36 7.31 5.74 10 9.18 7.42 7.05 11.3 7.03 12.8 10.1 8.16 8.33 7.91 7.89 8.13 9.41 1.38 8.8 8.26 10.8 11.1 10.2 10.5 2.36 7.2 12.8 2.68 1.54 13.8 10.3 8.58 2.53 12.4 3.49 9.16 10.4 7.04 9.05 7.8 10.3 8.84 11.3 11.5 8.18 10.9 9.73 5.86 12.8 9.92 4.16 10.3 0 11.1 10.6 11.1 11.3 8.63 10.3 11.9 8.73 5.29 6.99 10.2 12.3 1.83 10.2 7.97 11.3 8.8 8.47 10.2 0.4 11.6 9.39 10.4 2.36 8.21 9.18 4.8 7.56 13.1 6.61 9.42 7.26 4.55 10.4 9.16 9.17 4.03 11.9 3.97 3.88 9 6.84 9.9 6.61 9.7 8.61 4.03 0 11.4 6.19 5.55 6.38 6.93 7.12 7.78 6.3 10.8 11.4 10.7 9.59 8.65 10.1 2.95 7.98 7.19 8.8 10.1 7.54 8.94 9.41 7.08 3.97 6.8 15.8 8.55 11 5.78 5.51 8.02 3.64 4.67 8.59 6.06 8.86 13.7 7.12 8.01 9.41 7.79 12 6.8 4.53 6.02 7.97 7 8.08 9.9 7.32 9.34 7.63 2.17 8.31 8.75 8.97 7.89 10 3.22 9.86 5.55 3.27 7.76 7.64 3.31 1.95 2.88 3.57 5.17 5.89 11.2 2.61 8.89 11.4 7.47 3.75 4.95 1.38 1.38 4.33 7.27 4.36 4.51 8.83 7.36 3.17 2.17 6.6 7.66 5.54 5.26 6.27 7.43 5.6 11.9 5.44 10.9 6.36 5.5 9.47 9.85 3.68 7.12 6.93 7.21 3.49 10.2 7.65 7.16 3.57 9.29 7.32 11.6 4.24 9.5 6.42 8.9 8.99 6.99 4.21 2.95 13.5 9.22 3.88 5.03 6.67 5.1 3.36 8.82 5.46 4.9 6.85 1.95 11.3 4.89 8.84 10.2 4.48 8.8 7.41 8.29 5.42 8.4 5.06 5.49 13.5 8.13 5.64 10.3 8.77 8.53 7.67 4.29 8.92 0 7.92 5.26 8.76 3.72 10.3 12.5 10.2 10.1 9.69 5.94 4.36 12 8.86 11 6.82 5.55 8.63 10.3 7.19 8.89 6.14 2.68 8.11 7.34 8.76 7.44 11.4 10.4 3.75 1.38 3.06 2.53 0.4 7.42 10.3 1.54 2.61 5.69 1.38 4.51 8.36 7.53 4.78 9.58 10.6 9.44 9.68 4.46 8.53 10.1 7.61 11.3 12.7 4.62 9.33 8.72 5.83 2.82 0.4 8.54 4.24 9.03 8.99 6.58 7.22 14.3 8.75 11.1 0.71 6.93 8.05 8.14 10.2 6.25 9.48 9.36 9.41 11.1 7.64 9.34 6.17 12.6 8.13 8.18 0 10.9 4.38 7.96 9.03 10.2 7.14 12.9 5.61 11.8 7.57 9.77 8.64 5.03 11.3 12.3 9.53 0.4 6.18 9.95 7.37 11.2 9.69 10.7 10.8 7.67 5.2 0.97 8.99 8.93 8.92 9.01 6.68 9.42 6.89 8.61 9.85 9.13 8.98 9.78 10.7 9.03 10.7 9.56 11.3 2.17 10.1 7.17 10.5 10.9 2.17 12.2 6.24 9.05 9.99 7.89 9.29 9.52 8.64 9.56 9.63 8.15 9.53 11.9 8.97 7.56 10.7 8.68 10.2 11.7 9.54 3.53 9.93 8.89 2.17 8.47 10.4 7.96 3.11 8.78 5.52 11 8.87 11 10.2 10.7 11 10.5 8.4 7.5 12.1 4.95 7.32 10.5 2.07 10.9 11.2 8.65 9.91 8.26 6.62 10.4 7.63 11.7 9.66 9.91 11.6 6.35 10.5 9.68 11.2 11.5 9.77 8.6 7.34 11.6 8.46 8.44 1.83 8.41 9.82 5.27 1.54 4.62 6.5 8.04 9.24 10.9 4.56 3.85 10.8 9.46 9.1 4.78 9.52 11.3 0 1.19 0.97 9.02 10.7 10.4 8.38 4.68 9.32 6.41 12 10.3 7.91 9.32 7.98 8.1 9.66 8.83 0 9.26 10.3 10.5 9.86 11.8 9.59 10.8 9.71 12.5 11.1 9.06 7.42 3.82 2.36 11 9.3 9.65 7.95 9.92 8.39 9.46 6.86 8.69 8.92 11.8 9.79 10.1 11.6 7.62 6 8.5 9.48 9.85 6.47 9.19 10.5 10.4 10.2 5.57 8.21 5.01 9.67 11.8 10.7 9.9 9.85 10.5 8.4 9.42 10.3 10.5 3.36 6.98 10.1 9.48 8.9 8.35 9.85 8.04 8.2 9.93 9.74 8.02 8.07 9.14 9.83 5.04 8.8 10.2 8.46 10.5 10.5 8.81 8.58 7.56 8.64 10.5 8.63 5.02 10.3 7.87 10.6 9.27 4.33 8.91 8.82 9.42 6.73 7.75 9.61 10.4 7.21 2.82 3.49 9.46 10.1 10.9 3.97 12.7 8.31 9.76 10.1 7.56 9.67 10.4 7.92 9.54 8.44 10 11.1 9.76 10.1 8.76 7.77 9.53 6.4 6.04 8.25 0 8.25 10.4 10.6 9.43 8.52 9.26 9.67 13.5 9.14 10.3 11.6 9.96 11.1 9.37 10 10.9 10.3 7.91 12.7 9 12.1 8.99 9.74 9.52 8.35 9.54 9.3 8.15 9.49 6.43 12.6 9.25 10.2 11.3 9.75 10.2 9.07 12.3 11.6 11 10.5 12.6 6.78 8.66 11.3 10.3 10.4 11.1 9.21 5.71 10.7 12.3 3.88 10.9 8.28 5.03 9.81 8.89 9.61 9.39 9.37 10.4 11.1 8.91 0.97 11.1 10.1 4.36 8.85 11.9 9.92 11.3 10.1 6.3 8.44 6.67 9.22 11.2 8.13 6.19 9.23 9.36 7.81 6.25 9.26 9.11 7.35 10.3 6.87 10.1 11 5.14 8.03 8.6 10.3 13.2 3.94 9.6 9.19 7.33 3.4 9.4 9.68 8.49 4.26 10.2 8.62 9.03 10.6 11.5 9.87 9.04 9.1 9.65 8.95 9.94 10.1 9.87 9.55 8.66 11.3 9.07 7.46 2.07 9.53 4.24 5.17 9.93 7.73 9.43 5.68 9.96 9.69 9.72 11.8 9.06 10.7 9.88 8.57 6.51 9.92 8.95 1.69 9.05 9.23 7.26 9.92 10.5 6.92 8.7 10.4 5.01 9.4 2.07 8.78 9.33 10.5 10.8 7.38 10.7 9.27 12.1 13 9.56 8.45 10.2 8.99 10.3 8.48 8.01 10.8 10.8 5.69 9.1 11.3 10.3 9.2 11.1 1.83 14.4 10.4 10.6 11.6 11.5 8.5 8.66 9.22 9.93 3.72 9.85 9.74 8.66 13.3 11.6 8.14 11.4 10.6 10.9 9.77 11.9 9.85 9.4 8.15 9.51 9.35 10.9 10.5 9.78 9.59 11.9 11.2 9.27 10.7 11.1 8.19 10.5 10.9 9.09 9.99 3.64 8.78 11.2 10.2 8.67 9.96 8.08 9.06 10.2 8.26 5.2 9.14 9.27 9.54 7.06 5.74 1.19 3.88 7.94 1.54 8.93 12.5 7.65 13.1 7.63 5.31 12.2 10.6 3.78 7.76 6.47 11.2 11.4 9.22 7.25 10.6 11.4 12.4 9.29 8.4 5.61 4.48 6.97 7.6 8.26 11.5 6.92 7.53 5.91 11.5 10.2 13.9 9.37 9.36 9.47 10.1 12.2 10.6 12.8 10.8 9.92 7.23 10 4.92 9.14 4.78 3.72 5.54 12 9.03 11.9 8.99 0.71 10.4 9.09 8.83 7.48 10.4 10.1 10.9 10 11.5 11.1 8.84 7.96 10.1 8.88 3.94 1.69 15.8 9.01 10.2 13.3 10.4 9.22 8.91 7.83 12.7 10.1 9.21 4.8 6.96 8.82 6.96 4.33 9.03 8.15 6.91 10.1 0.97 8.45 1.83 2.75 8.68 10.5 10.7 10.4 5.55 7.52 10.2 10.7 9.47 10.2 11.8 11.8 11.1 10.1 2.61 2.54 10.7 5.43 7.23 10.8 1.38 7.17 9.92 3.85 10.6 10.6 11.4 9.63 12.2 7.58 9.62 10.9 10.1 7.65 6.73 10.3 10.5 4.64 7.89 10 9.03 10 8.63 5.77 10.6 9.83 10.7 11.5 9.5 9.22 10.2 2.95 7.45 9.39 9.45 10.7 2.07 0 3.94 6.63 10.9 8.57 10.3 10 5.27 10.4 8.5 9.38 7.81 10.7 10.9 14.6 10.5 9.56 6.88 6.38 12.6 8.7 10.2 9.58 7.87 10.4 10.8 11.5 8.7 6.04 9.38 9.88 11.4 7.75 11.7 9.54 11.4 12 6.36 10.1 10.4 9.56 9.07 5.85 10 7.45 2.53 11.9 5.89 3.06 12.2 9.98 8.14 8.87 9.84 12.7 10.1 0.4 3.4 7.07 8.23 7.83 4.36 9.47 10.4 9.71 6.26 7.65 9.44 7.89 7.28 5.86 11.4 8.65 4.48 5.29 6.51 3.52 7.7 5.26 7 6.93 10.1 5.69 6.71 2.17 7.12 7.21 4.81 5.71 7.1 9 3.53 0.97 11.8 10.5 9.23 8.62 13.3 3 6.17 14.4 8.45 11 6.88 17.2 12.1 9.51 12 8.81 8.84 8.94 6.7 0 6.38 12.9 6.68 3.86 7.74 7.08 6.7 10.3 1.19 4.85 9.31 10.8 9.01 5.63 6.33 7.27 10.6 7.03 8.56 4.92 10.9 7.78 7.5 8.29 4.83 6.32 11.8 6.15 3.78 10.1 1.54 6.81 8.21 8.75 6.62 0.4 11.3 11.3 8.15 8.32 5.95 5.42 3.53 9.14 4.91 6.36 10.1 1.38 1.19 9.45 5.27 0.4 9.63 8.06 7.19 5.33 3.88 0.4 10 7.89 4.56 8.72 10.1 8.76 7.51 3.06 12.4 0.4 6.3 12.8 5.76 11 7.89 8.02 10.1 7.35 5.83 7.72 4.21 3.61 5.31 9.17 10 5.24 5.66 2.68 8.24 1.69 8.71 5.27 7.21 6.23 0.97 9.18 0.71 6.85 5.44 4.31 12.9 7 7.75 5.03 6.76 8.2 8.49 9.3 7.52 4.66 2.53 4.33 7.76 9.72 5.88 8.98 4.6 6.04 4.92 8.24 9.61 3.82 8.26 7.02 8.55 1.69 7.25 7.39 0 8.25 3.06 2.27 0.71 3.94 8.03 0.97 7.6 4.7 1.38 4.16 2.75 3 3.22 2.45 2.68 8.23 3.78 7.53 2.68 5.77 6.35 2.07 6.12 5.96 0.4 1.38 1.54 9.72 9.9 3.68 6.58 3.27 8.95 10.4 10.2 8.36 0.97 9.97 11.6 9.28 7.82 9.59 5.75 4.21 6.59 6.21 6.7 10.3 10.7 6.11 9.87 10.3 11.5 7.94 10.9 11.1 8.94 8.62 9.79 10.6 10.9 7.28 9.07 6.57 8.98 1.83 8.88 11 8.38 6.45 6.1 12 10.7 7.73 7.89 1.54 13.3 11 7.86 11 10.6 5.24 4.44 11.1 7.56 6.72 10.2 6.58 10.7 9.5 12.6 6.74 9.17 10.6 12.2 8.92 9.84 14.9 8.28 7.23 9.17 8.77 10.7 6.49 9.46 5.61 8.11 3.97 10.1 10.3 13.2 9.57 13.4 11 11.3 6.07 8.59 10 8.58 8.2 8.59 7.44 7.46 11.1 8.26 3.85 8.38 8.76 7.54 11.9 10 8.73 11.4 7.05 8.81 7.88 8.3 8.76 9.33 4.95 9.26 5.96 9.17 13.3 8.14 6.84 10.8 9.82 8.87 2.95 8.54 10.6 10.8 1.19 5.82 8.01 11.8 4.6 4.94 6.52 9.52 4.83 7.39 7.89 9.34 1.38 8.42 3 2.82 5.12 8.51 10.5 6.82 12.1 9.21 9.71 8.82 8.5 8.65 8.4 11 10.2 8.73 7.11 10.3 10.4 10.5 8.88 7.18 12.7 8.07 10.6 10.4 9.1 5.62 10.5 11.7 8.93 15.2 10.7 10.1 8.08 6.68 9.71 10.3 10 10.2 10.4 8.37 9.1 3.31 8.45 8.47 9.73 10.7 12 9.9 9.81 8.88 11.7 10.1 11.6 9.46 11.5 8.33 8.93 8.46 9.65 8.09 9.66 8.31 8.56 10.5 12.2 8.9 12.2 11.2 8.55 5.74 7.33 8.2 9.93 9.01 8.93 5.97 1.95 7.21 9.35 9.32 10.3 1.69 8.98 8.38 9.62 7.26 2.53 8.6 2.61 8.03 6.38 1.54 6.64 5.37 10.4 9.83 9.57 10.6 10.4 10.1 8.61 10 11.4 11.5 10.5 11.5 4.66 6.49 7.92 10.6 10.3 9.31 10.6 8.67 7.99 7.19 10.8 8.39 12.2 11.5 4.4 9.86 9.99 13.8 10 10.7 9.37 10.6 8.72 8.59 9.73 11.9 12.3 10.6 1.54 10.3 10.2 8.87 8.58 4.46 9.23 4.44 9.98 8.85 6.74 3.72 11 11.8 7.16 8.75 9.08 4.89 10.4 10.8 10 6.89 11.4 7.94 8.87 9.87 6.11 10.3 5.56 11.1 3.53 8.78 5.46 9.63 10.6 0.97 8.95 4.29 10 10.7 8.1 3 9.81 1.19 3.7 6.6 10.5 8.98 11.8 7.35 9.46 8.31 7.42 4.4 3.17 6.75 0 7.64 9.9 7.49 8.26 4.99 10.3 9.32 3.94 6.49 10.3 9.33 6.28 9.3 6.08 7.93 8.74 9.32 8.74 10.5 6.98 6.12 6.75 10.3 9.41 0.4 10.1 0.4 10.5 7.38 8.74 8.18 11.3 8.66 9.44 2.1 9.71 8.51 10.8 9.88 9.09 1.19 8.42 10.8 5.6 10.5 11.8 11.4 11.1 11.2 10.5 2.88 7.43 7.02 10.3 8.84 9.32 10.4 1.19 8.92 11 9.82 8.42 8.24 9.59 10.3 9.31 9.36 10.6 9.25 9.12 10.6 4.7 3.75 1.42 9.38 2.53 7.92 2.61 9.35 5.83 10.9 9.53 7.55 9.89 2.27 10.3 4.31 6.24 6.64 11.1 12.2 9.31 5.31 4.4 3.98 6.02 11.3 7.16 11.2 3.27 6.93 7.04 0.97 9.53 4.6 11.4 6.08 6.93 3 8.29 10.4 11.9 5.04 12.3 9.16 6.27 1.83 8.17 0.4 12.7 11.3 9.58 6.79 9.44 5.91 5.08 8.47 8.26 11.6 6.9 7.96 11.4 7.46 5.96 8.27 9.82 15.8 9.55 12.2 10.3 10.6 8.9 9.26 3.68 2.17 8.16 0 9.19 7.47 5.54 11.6 10.9 9.12 11.6 8.1 8.39 10.6 2.88 9.91 2.45 5.21 9.58 7.35 8.84 10.1 12 5.95 3.31 3.97 10.3 10.9 12.8 6.83 6.98 10.2 12 12.4 8.45 8.9 8.31 5.69 10.4 4.85 12.9 5.97 11.2 6.76 6.02 11.4 9.3 6.91 0.97 8.86 9.44 10.4 12.6 10.1 9.18 7.16 7.8 2.53 7.61 7.72 11.2 6.25 7.65 11.3 3.17 7.87 7.41 5.68 6.4 11.7 5.69 9.48 8.54 8.04 7.08 3.77 7.8 9.49 9.8 6.03 8.36 9.98 4 9.2 0.4 7.45 8.52 7.81 11.6 8.75 12.3 8.23 5.98 6.07 11.4 6.07 2.27 8.3 0 2.45 8.36 7.33 12.1 6.46 7.33 13 5.51 5.21 8.03 10.2 9.43 8.97 8.03 5.8 7.84 11.2 11.6 8.2 9.11 8.45 9.67 12.3 10.8 12.1 8.29 8.34 7.13 9.16 9.88 1.95 6.54 7.62 4.55 11.6 8.79 7.88 8.81 11.6 4.92 10.5 7.79 4.91 7.79 9.35 9.02 5.06 8.17 4.64 11 6.64 5.39 8.6 11.8 5.16 9.73 9.28 10.4 7.88 4.53 12.2 9.94 8.74 10.6 11.2 7.69 9.67 10.4 9.88 10.7 13.4 8.78 9.31 8.68 8.72 5.2 6.93 8.84 10.6 5.89 6.05 8.04 11.7 9.61 9.55 5.54 11.1 9.01 8.98 10.8 3.75 9.84 9.42 6.9 5.61 9.88 11.5 8.12 9.73 13.8 8.04 10.6 7.75 10.5 7.9 8.4 10.5 8.35 8.34 12.3 10.1 6.88 4.33 10.1 14.4 0.71 5.56 12.8 12.3 4.31 2.27 6.35 11.1 8.19 3.4 9.49 10.7 4.44 10.7 4.6 2.17 13.7 5.8 7.6 8.68 10.7 10.3 10.4 10.8 10 10.4 11.2 3.4 10.2 5.36 2.27 10.5 4.36 9.86 11.9 4.33 7.28 3.82 7.1 8.8 6.79 1.69 1.95 5.69 2.88 5.3 7.23 2.53 8.48 5.21 1.95 6.62 4.89 8.44 10.1 5.71 7.22 8.67 1.69 5.3 5.41 2.36 8.26 12.9 7.04 14.7 10.6 6.31 9.49 5.93 7.65 5.31 7.65 10 8.96 8.41 7.55 5.98 5.86 6.62 4.43 6.75 5.67 6.94 5.69 10.3 5.4 8.24 10.7 10.5 1.69 9.87 10.2 4.26 3.53 3.85 3.11 2.95 0.97 9.65 3.49 7.48 4.97 9.22 4.8 7.98 4.71 1.54 4.71 1.69 8.02 1.19 6.76 0.71 8.16 0.97 7.12 1.54 4.29 12 10.9 6.47 6.07 3.38 7.25 5.65 6.92 6.66 7.52 1.54 2.88 5.14 11.4 7.54 7.19 9.21 6.15 9.33 6.12 9.36 4.76 5.96 5.4 2.27 7.14 9.06 10.5 0 4.64 11.2 9.63 10.5 9.39 4.75 10.2 9.09 1.38 9.94 7.44 3.11 7.43 7.67 8.41 2.75 9.99 6.68 4.81 5.93 2.61 7.99 7.58 0.71 3.45 2.82 10.8 4.36 2.75 7.73 11.8 9.15 8.3 5.49 9.03 7.81 6.87 2.27 3.17 9.89 2.75 4.56 7.23 2.53 9.93 4.85 8.89 5.06 6.53 6.07 9.29 8.23 9.17 5.53 12.7 4.36 4.66 5.53 4.16 6.76 13.4 4.95 7.44 7.52 6.07 6.06 1.54 5.29 6.74 1.38 4.08 6.49 1.83 6.17 9.8 4.62 5.4 6.6 8.82 0 4.92 1.19 7.62 4.89 6.75 0.71 6.61 3.27 7.22 4.21 6.96 3.17 6.74 4.73 7.13 0.71 1.26 5.67 5.25 5.67 6.06 1.38 5.63 5.27 2.53 6.52 1.69 7.51 5.42 7.59 8.14 6.86 4.24 10.4 7.27 1.54 4.75 1.69 5.47 0.97 7.97 10.1 8.45 6.76 9.25 3.17 8.9 1.38 1.69 7.36 7.38 6.52 5.45 9.34 9.42 0 5.69 9.32 9.21 6.55 7.7 8.08 0 10.2 3.82 5.95 11.7 9.74 9.63 10.3 8.33 4.14 2.75 2.27 8.32 2.07 8.92 3.27 6.83 5.6 5.38 9.15 9.29 3.49 9.05 0 9.68 2.61 2.45 2.45 5.5 6.48 5.65 9.13 0.71 7.91 9.64 1.83 7.45 8.93 5.48 6.93 8.02 0 4.24 0.4 9.29 5.93 6.62 8.22 0.71 4.32 9.78 1.54 3.53 6.1 6.07 4.14 6.82 3.78 1.83 5.01 2.68 3.53 2.68 10 9.02 3.57 11.7 5.04 9.75 6.23 3.57 6.22 8.5 4.71 7.66 10.4 10 2.45 1.19 7.15 6.15 4.17 7.04 8.98 8.62 8.17 2.68 6.42 8.87 7.36 8.66 2.27 0.71 6.21 6.96 8.55 3.57 5.45 6.58 6.49 8.83 3.31 5.81 9.51 11.5 11.7 9.8 5.41 13.9 7.43 12.9 12.6 9.35 8.83 11.2 9.85 10.3 1.83 5.21 9.2 9.26 10 10.6 10.2 11.5 11.8 13.6 7.13 8.95 9.82 0.4 8.87 6.39 10.9 0 9.3 7.78 12 11.3 11.1 9.47 9.44 9.03 7.94 5.72 11.5 10.1 9.22 10.4 11.5 9.41 1.19 6.95 10.7 8.59 10.1 10.4 8.99 11 9.44 2.68 2.45 10.9 4.42 7.84 2.17 9.81 3.97 9.66 11.7 6.52 9.89 7.22 10.2 10 12.9 6.98 10.4 10.3 9.75 7.5 9.6 11.8 8.68 8.45 9.83 6.55 11.7 10.9 9.13 11.2 6.18 10.8 8.38 6.17 8.79 9.59 10.1 10.9 11.2 10.1 9.53 11 10.5 11.9 9.81 9.92 7.31 8.91 2.36 9.8 9.3 10.3 1.19 9.58 10.1 10.4 9.93 0 3.36 8.84 5.59 10.6 4.03 4.95 8.28 5.25 2.95 2.07 5.71 13.5 9.04 3.75 14.5 0.71 11.4 14.1 10.7 10.1 13 11.8 8.98 9.7 9.56 2.17 8.6 8.54 7.81 5.88 14.2 0.4 9.24 8.47 10.1 6.25 10.6 8.91 8.17 8.57 10.1 7.9 8.7 5.15 6.71 9.26 10.9 12.4 11 9.52 5.66 10.4 10.1 7.42 8.79 8.92 0 9.63 6.92 4.62 8.35 11 0 7.67 9.64 7.28 10.5 4.55 11.8 2.36 4.62 8.53 8.62 9.51 4.6 11 7.99 8.09 0.71 7.21 10.8 9.22 9 2.75 3.4 10.1 13 10.1 6.53 9.36 10.3 8.71 8.62 10.9 10.2 11.1 5.42 11.6 3.61 10.9 6.23 12.2 6.92 5.59 8.53 9.61 1.95 8.16 4.36 9.05 9.29 7.76 9.78 8.74 9.55 11.1 7.96 9.09 11.6 8.83 9.59 13.2 9.21 7.91 6.75 7.02 8.4 1.54 11.3 9.33 7.73 0.71 3.4 8.55 10.2 6.17 8.77 10.3 1.19 11.8 8.83 12.9 9.98 3.4 10.1 1.54 9.5 9.08 8.04 9.01 7.88 6.76 8.58 10.5 8.69 10.1 11.2 7.08 8.9 8.62 9.4 0.71 8.45 5.48 10.3 6.76 3.82 10 10.5 13.2 9.04 0.42 11 6 10.3 9.82 10.4 3.82 6.72 9.27 6.39 5.37 6.77 13.2 10.5 12.7 3.11 1.54 0.71 11.8 6.17 1.85 8.94 11.7 8.97 12.6 13.2 13.9 11.2 11.1 5.21 11.7 11.3 10.5 8.97 10.2 1.83 4.55 6.1 8.73 10.9 10.6 12 1.19 1.19 1.38 2.07 9.27 2.27 10.6 7.74 9.31 9.71 10.4 11.8 10.3 3.22 12.7 13.5 11.3 4 8 12.5 11.1 9.93 7.27 12.8 5.19 7.46 3.97 11.6 6.68 6.82 5.16 6.24 10.1 3.64 9.64 9.65 6.99 9.41 5.85 2.68 9.83 6.68 11.9 9.17 8.45 11.6 7.61 10.9 6.84 11.6 10.3 10.9 13.4 8.97 11.2 9.02 11.2 7.6 11 11.5 5.75 9.18 15.4 14.9 15.1 11.9 11.3 12 9.85 8.37 12.8 12.7 5.89 11.1 7.41 12.9 7.92 15.2 13.8 9.62 8.69 6.15 9.8 13 9.64 6.57 12.4 5.06 4.11 3.85 7.6 8.79 6.93 9.11 11.1 9.77 15.4 12.2 12.9 11.1 9.35 8.62 11.2 6.48 5.51 11.5 10.1 13.3 7.88 8.02 10.4 8.53 9.53 9.21 4.83 8.14 1.19 7.82 1.19 8.25 0 8.53 13.3 7.09 13.1 11.3 13.1 11.5 12.2 12 11.1 10.6 13.1 0 12.4 12.9 0 3.97 4.06 6.64 6.44 7.5 4.2 5.68 1.69 4.39 0.71 0.71 0 4.98 0 8.13 6.02 7.2 5.26 5.82 5.6 8.06 1.19 4.03 9.26 3.72 4.14 9.2 3 8.24 10.3 10.4 0.97 10.9 12.6 1.95 8.47 10.3 0.4 3.82 3.57 9.13 3.4 6.36 9.51 11.1 9.4 8.18 11.3 4.29 1.95 10.5 11.4 11.6 9.38 12.3 9.22 6.43 5.86 8.09 1.54 11.2 11.5 7.97 8.7 7.34 11.5 10.6 12.9 10.4 5.66 8.03 10.7 14.2 10.6 7.73 7.28 13.9 12.2 12.5 7.02 5.44 13.7 9.85 14.1 12.7 8.07 11.3 10.9 9.65 13 4.33 4.73 13.8 11.4 8.72 3.88 1.54 1.19 4.16 2.27 1.38 2.68 8.05 8.28 10.1 10.3 10.3 4.42 6.42 3.78 0.4 0.69 10 13.5 3.97 7.01 2.82 9.81 9.14 9.6 9.39 1.69 3.22 9.3 3.24 7.38 9.4 6.9 7.36 4.94 9.14 7.92 4.55 2.88 0.4 5.27 7.68 8.87 11.4 6.81 8.74 7.74 3.82 9.62 8.86 9.77 6.77 10.9 8.82 7.62 8.97 5.81 7.36 5.59 2.36 3.06 7.62 2.53 4.26 8.9 7.17 4.97 5.6 7.08 7.99 6.09 5.06 6.34 5.68 6.71 9.49 6.28 1.19 10.3 9.38 5.16 7.78 8.9 5.89 4.86 3.64 0.71 4.85 9.96 7.72 1.69 2.07 4 10.3 7.7 9.92 6.15 0 4.81 4.19 3.64 8.58 6.18 0.71 7.62 2.53 6.49 1.83 11.4 8.7 5.51 3.41 6.13 7.98 5.24 8.03 4.66 1.95 5.75 2.53 4.62 4.53 5.19 7.57 8.26 7.75 12.2 3.68 2.95 0 8.61 1.95 11.8 13.4 10.2 11 6.75 10 0.71 6.28 5.1 9.7 11.2 1.38 7.35 9.52 1.38 10.1 1.19 2.36 7.67 10.9 9.05 6 12.8 5 5.81 5.4 0.97 7.18 4.03 8.78 0.71 8.26 0.4 3.4 8.5 1.69 7.15 7.49 5.32 3.36 2.36 0.97 5.17 3.97 8.36 8.79 7.25 4.21 0.71 5.22 6.72 5.78 0.71 6.2 1.69 1.69 4.42 1.95 8.94 10.4 6.03 8.7 6.21 0.97 9.77 8.18 0.97 6.17 12.6 5.45 11.1 6.36 4.46 2.95 9.7 2.27 2.68 2.88 10.2 3.97 3 4.81 2.27 6.79 0 2.75 4.55 8.9 1.83 11.4 3.78 1.95 11.9 12.2 4.56 4.48 7.25 2.17 9.11 6.24 9.08 6.14 13.3 12.3 5.5 6.72 6.39 7.49 9.42 3.94 7.95 11.5 9.19 0.4 11.4 6.68 6.44 3.27 13.3 12.2 3.75 6.42 14 1.38 7.26 16 5.4 4.48 11.4 5.81 2.68 8.66 13 4.42 11.7 7.82 9.45 1.69 2.68 1.83 5.81 6.8 8.9 8.03 13.9 15.3 9.85 7.57 8.31 6 11.3 6.51 7.28 7.27 0.53 9.08 9.26 7.62 2.45 1.69 4.06 6.62 1.39 8.98 5.89 0.4 1.54 7.04 10.4 10.3 2.07 4.83 11.8 7.23 5.27 6.28 3.17 7.06 8.46 6.94 10.6 3.64 5.65 8.63 9.75 9.6 5.12 6.51 9.07 4.24 4.36 12.9 3.36 2.45 3.57 8.63 9.88 6.71 8.3 2.68 3 4.81 2.36 11.3 1.94 8.27 12.2 10.7 15.1 5.62 8.86 7.19 5.61 3.4 8.18 2.68 7.51 10.6 12.3 12.1 12.1 11.1 8.81 11.3 10.6 12 6.34 6.92 8.4 8.1 11.3 6.64 8.02 1.19 6.96 8.74 7.46 9.18 9.47 9.05 9.25 11.9 8.54 6.99 4.24 11.1 0.4 13.7 7.38 9.23 11.4 9.25 8.86 9.59 10.2 6.34 9.47 11.1 7.38 6.98 8.66 8.75 9.06 11 3.36 9.19 9.37 8.92 4.68 13.5 8.06 10.5 8.36 9.03 8.48 1.95 8.97 8.18 7.3 11 8.3 14.4 10.2 10.8 6.31 10.3 11.8 11.2 10.7 7.87 7.05 0.4 1.95 5.93 13.1 8.06 5.4 10.7 10.3 9.79 7.86 10.5 9.68 8.83 12.4 11.4 8.53 11.6 7.83 8.77 11.1 8.81 11.9 11.7 11 13 8.31 8.32 10.8 8.88 10.7 1.54 4.73 6.98 7.6 4.48 2.07 2.94 9.99 6.36 8.76 2.61 3.11 10.8 6.59 6.74 8.07 0.71 2.27 6.63 0.4 5.22 6.78 6.79 12.1 9.32 8.65 4.85 1.38 9.97 6.02 9.16 3.36 7.66 2.53 4.06 11 6.2 2.45 5.8 5.97 9.84 4.29 1.19 9.57 0.71 4.08 7.38 14 7.73 7.86 5.76 10.1 8.73 9.46 6.03 2.75 6.43 3 6.78 8.81 7.12 6.27 5.48 5.47 1.69 0 7.57 6.93 6.73 3.94 9.08 6.76 2.07 8.78 6.23 2.27 1.83 0.97 3.97 1.69 8.48 7.32 3.11 3.17 9.47 4.96 9.57 1.83 8.39 12.9 5.74 2.07 4.97 4.92 8.52 7.98 3.27 8.88 0 2.27 6.91 6.63 6.5 0 8.54 13.1 5 4.56 5.72 4.31 10.4 8.49 11.6 6.92 5.44 13.1 2.61 2.89 5.33 10.1 10.1 0.4 4.03 4.26 8.39 8.79 0.4 5.62 12.1 8.17 11.2 3.22 9.34 0.71 7.05 7.72 8.22 2.75 12.5 10.2 4.53 11.6 1.38 5.11 0.71 12.3 1.54 3.45 13.2 4.19 0.97 11.2 6.4 3.82 1.83 1.83 5.07 0 10.1 6.12 5.4 9.64 10 11.2 9.68 9.41 8.84 10.4 4.94 10.6 11 10.4 0.71 3.11 15.2 9.78 3.68 9.62 6.69 2.88 13.9 7.62 4.26 11.5 0.4 5.88 4.6 3 9.64 1.86 9.23 4.26 0.71 5.86 9.77 4.29 7.86 15.1 8.79 9.72 6.51 1.38 2.4 3 6.21 9.18 8.74 2.07 7.56 2.53 5.69 1.38 9.38 1.38 5.16 6.61 2.68 4.53 6.97 6.08 3.97 8.66 1.2 5.26 8.96 5.48 1.83 13.7 3.57 9.11 5.97 4.88 9.41 5.43 4.16 8.47 6.43 6.61 5.94 5.83 3.68 6.98 6.25 7.86 5.3 8.27 8.78 5.26 2.27 14.8 2.88 6.26 7.89 7.75 8.22 7.29 6.15 7.13 3.97 2.68 9.01 8 9.7 0.4 7.62 0.97 10.6 3.31 9.75 8.39 0.4 8.48 6.45 9.36 9.97 0.4 9.89 2.07 5.61 6.87 5 9.35 9.18 7.15 1.95 10.8 12.1 9.49 3.45 7.93 5.81 5.67 5.93 8.64 4.58 9.6 1.69 6.08 6.12 0.71 5.29 7.19 7.81 6.93 2.17 11.7 6.17 7.11 11.1 0 3.57 4.88 4.66 8.26 3.53 1.38 6.66 2.36 8.54 4.95 5.64 3.78 0.82 8.55 1.69 9.16 4.26 7.58 8.36 6.47 7.62 2.31 2.36 7.96 5.74 4.56 2.17 6.74 0.97 9.79 8.72 8.85 5.96 8.33 9.68 9.74 3.97 11.8 0.97 11.1 0.97 12.2 0 9.74 12.4 11.6 13 5.34 2.27 10.7 12.2 14.5 4 6.69 5.62 11.5 5.21 12 5.75 1.19 10.3 9.47 7.97 7.22 10.9 10.1 8.1 1.19 13 10.8 12.5 9.85 7.15 1.95 9.4 9.72 9.05 12.3 4.62 11.1 14.7 12.2 5.04 9.92 8.76 13.6 2.82 8.28 9.53 8.48 2.13 8.72 7.66 11.1 10.1 9.77 7.5 11.1 6.52 1.83 6.81 7.82 11.2 2.27 6.98 8.14 8.36 9.02 8.76 9.52 8 7.2 3.11 9.89 2.82 3 7.08 6.33 12 2.17 7.92 3.82 9.95 0 6.65 6.88 9.5 10.6 12.4 8.14 6.72 9.02 7.45 0 0.71 6.6 8.66 7.07 10.8 7.64 7.76 1.83 7.54 8.98 4.38 8.1 6.6 1.69 7.5 2.45 1.95 4.83 8.02 0 8.89 6.54 2.68 7.64 3.26 11.1 7.78 1.95 3.06 9.66 5.82 5.34 6.12 5.01 9.2 7.11 1.38 5.08 0.97 5.71 0 7.31 3.53 2.27 5.72 12.2 1.38 5.52 6.31 5.57 4.06 6.13 3.49 2.36 3 2.75 9.5 5.74 8.16 7.62 1.22 9.26 3.78 1.69 6.25 4.44 10.9 9.27 2.53 8.19 9.63 9.8 4.55 9.39 11.1 6.41 1.69 2.65 3.78 7.57 8.83 2.61 7.3 8.63 7.22 7.3 3.49 8.58 9.63 7.73 2.07 11.8 9.01 10.5 2.45 5.1 7.04 3.4 6.52 10 5.42 7.6 3.94 8.06 11.1 12.5 5.73 10.5 5.25 10.2 1.83 8.72 11.8 4.66 7.7 3.75 3.68 12 6.48 5.72 9.04 9.04 9.19 9.69 9.06 11.3 1.69 10.3 6.55 0.71 9.65 11.9 13.2 11.8 5.74 8.72 3.97 8.34 15.3 8.77 13.2 14.3 5.95 6.33 8.05 7.03 9.7 5 12.3 13 12.4 13.9 11.9 11.5 11.3 0.4 6.15 4.98 8.91 9.49 10.6 10.8 9.18 6.98 8.62 11.1 10.2 10.9 10.1 10.6 8.36 9.88 5.15 8.64 9.49 1.38 7.05 10.8 8.15 9.37 4.11 9.87 7.88 9.24 10.7 10.2 8.42 11.5 9.92 13.3 8.89 7.11 8.37 7.72 11.9 6.64 4.95 5.83 11.2 10.2 8.17 6.21 11.6 6.57 3.78 7.75 4.88 2.69 7.72 6.36 8.03 12.7 6.25 2.25 8.96 9.54 7.82 10.3 8.08 9.98 5.96 12 12.1 6.45 10.2 12 9.36 6.64 11.4 7.14 5.96 0.71 13.5 8.26 9.67 8.43 8.67 7.94 9.89 13.4 2.27 9.9 10.8 0 11.3 12.3 14 14.4 9.71 9.21 8.17 10.8 10.1 10.3 5.26 8.46 11.1 8.15 3.49 7.31 6.47 9.71 8.98 9.57 8.1 8.16 9.64 9.1 3 1.19 10.1 12.3 8.96 9.26 10.7 9.24 10.1 11.1 5.85 8.28 12.3 9.72 5.5 6.9 9.5 10.3 9.42 13.4 13.9 9.36 11.4 8.12 10.8 13.5 6.95 7.74 13.4 8.31 1.54 8.34 6.8 8.02 6.56 9.85 8.94 9.14 6.31 8.37 10.2 9.41 10.3 10.5 5.25 6.5 7.46 11 12.3 9.72 8.31 7.19 11.4 5.16 1.54 2.07 7.33 5.85 10 11.7 6.09 10.4 3.68 7.13 9.8 8.97 2.53 6.14 7.93 7.33 9.22 2.82 8.92 9.61 1.69 9.09 6.2 11.2 11.8 8.99 4.97 2.53 7.84 5.78 6.78 11.5 8.99 4.08 9.57 7.16 9.99 0.4 6.74 11.1 11.7 0 6.21 5.64 8.83 9.88 3.78 0.97 2.75 3.64 6.36 3.22 8.11 3.82 4.75 3.91 8.27 9.09 4.21 11.2 10.1 5.21 7.1 4.4 4.13 6.14 5.5 11.7 7.86 3.88 7.9 0.97 11.4 9.73 7.55 8.09 7.14 0.71 10.2 10.7 6.46 5.08 6.64 2.27 3.72 1.38 7.68 8.31 1.38 1.69 9.14 8.68 9.56 7.38 14.1 2.27 7.05 6.06 6.38 7.82 4.51 6.1 7.67 5.96 5.34 4.36 7.56 7.29 4.11 5.74 5.93 2.45 5.83 6.78 5.96 0.4 0.97 0 1.69 3.49 2.88 5.06 7.33 2.75 8.47 6.08 5.2 11.8 6.23 3.53 10.2 12.7 6.72 0.4 0.4 0 1.38 0.71 8.27 0.97 0.97 8.19 5.21 4.66 2.75 10.5 3.61 9.2 8.02 0.71 7.97 10.8 11.7 8.91 3.53 7.75 5.49 2.27 8.97 13.9 9.16 7.64 9.06 8.87 4.81 10.8 6.99 6.58 6.21 9.52 12.8 7.83 4.94 8.9 7.1 9.1 9.75 9.02 7.71 8.04 2.45 9.65 9.71 10.1 14.1 11.8 10.2 11.3 10 7.98 8.19 8.47 8.57 9.29 10.4 4.26 5.64 6.13 2.27 0.4 1.95 10.7 8.23 5.53 9.93 11.3 0.71 4.14 14.1 9.99 10.6 9.3 1.38 8.33 15.2 10.6 0.71 12 10.4 9.51 8.08 9.25 11.2 5.79 3.94 7.58 10 10.6 9.48 10.4 9.92 5.11 9.85 11.3 14.4 9.8 10.2 9.62 11.1 5.56 12.2 4.26 3.49 10.6 11.5 10.3 12.3 13 11.3 8.8 9 4.42 5.54 8.6 8.18 7.75 8.84 12.8 9.53 11.6 11.8 10.8 13.7 10.7 11.5 10.2 10.6 9.77 5.68 10.8 11.1 10.8 10.7 11.2 9.88 10.2 10.8 11 9.88 11.7 11.5 12.9 11 10.7 11.2 10.7 8.62 10.8 10.5 11.2 9.86 11.8 10.6 10.9 11.4 11.8 9.57 9.69 6.59 13.2 15 11.6 12.8 2.65 2.27 8.13 7.21 9.15 3.36 1.38 2.61 1.54 9.9 7.01 5.3 6.8 5.24 10.2 11.5 15 10.4 6.57 9.23 8.81 4.36 10.1 10 10.3 7.36 12.6 1.69 11.2 11.1 8.71 8.45 9.34 9.88 9.31 13.1 9.19 8.91 9.71 7.62 8.74 9.62 9.13 1.19 9.44 8.8 10.4 4.31 1.38 11.3 14.2 6.26 10.7 11.4 9.93 9.36 7.25 6.58 10.8 5.86 3.97 7.09 10.5 11.4 13.8 10.6 12 9.45 10.8 13.2 3 9.75 12.9 6.05 6.91 13.9 10.1 8 9.23 10.7 11.7 9.3 6.03 2.53 9.23 5.11 8.22 7.55 9.76 7.85 13.4 5.57 1.19 12.5 10.3 7.2 5.3 11.6 6.14 10.6 11.8 10.1 5.79 11.3 8.57 2.68 8.34 5.87 6.19 5.78 13 10.5 9.83 0 10.1 1.83 5.12 3.22 1.38 4.31 0.71 6.15 5.4 0 2.53 7.39 13.3 9.94 12.1 9.99 10.4 8.42 11.1 9.13 7.22 10.2 10.1 10.5 8.84 5.08 10.1 5.52 4.62 9.16 8.3 6.13 10.1 8.74 0 6.57 12.7 9.41 2.63 3.88 2.27 0 13.9 11.3 10.3 14.8 9.37 6.4 11.6 8.57 5.93 0.71 2.36 4.37 7.14 1.83 0 9.85 12.1 13.5 6.47 8.11 9 7.62 9.46 0.4 6.79 4.81 8.45 9.78 9.3 8.14 8.76 6.2 8.74 9.95 4.91 10.3 6.57 5.92 7.32 6.53 11 7.35 5.62 5.19 9.57 5.93 3.91 4.64 6.85 6.9 6.95 11.4 15.2 7.43 6.74 11.5 1.38 2.53 5.33 12.9 9.19 13.9 9.47 11.6 10.2 8.61 6.84 10.9 8.47 9.73 7.34 8.03 8.96 9.37 6.44 13.3 11.3 2.68 9.55 14.2 0.71 5.39 9.14 7.83 10.6 5.06 10.8 9.49 5.52 9.26 10.1 5.24 9 7.71 12.1 5.16 3.82 11.6 10.2 6.81 1.19 3.57 1.69 8.33 8.96 11.2 11.6 7.42 10.8 8.77 8.72 1.69 3.98 2.27 12.6 3.45 7.26 12.6 7.1 5.84 2.61 7.73 9.48 10.1 9.58 10.9 11.7 7.87 8.62 11.2 12.9 7.29 0 14.7 0.4 4.63 2.88 7.94 10.3 10.9 10.3 10.3 10.8 8.69 8.36 8.21 8.25 9.15 8.06 10.7 9.04 9.7 3 7.66 8.14 11.2 9.52 11.8 9.25 7.55 8.88 7.36 9.6 11.7 6.44 8.86 12 9.25 10.8 8.29 9.56 10.8 9.42 10 10.7 10.3 10.7 6.99 7.29 5.74 10.2 5.79 8.22 9.97 11.9 11.4 7.65 7.68 9.83 2.61 8.93 9.91 9.5 10.3 10.3 8.33 10 7.09 10.6 8.2 9.03 10.6 12.3 10.1 11 10.9 4.08 8.49 5.69 1.58 7.02 9.06 9.5 8.18 9.94 9.53 12.2 8.21 9.3 9.43 9.84 9.58 9.95 10.5 8.49 9.16 8.32 8.28 10.3 7.16 13.2 11.5 10.4 9.72 9.76 9.41 9.19 13.2 9.67 10.1 10.8 9.49 11.2 9.1 9.69 10.8 11.6 10.9 10.8 9.03 9.44 10.7 9.48 8.54 10.4 9.54 6.79 8.88 9.04 9.9 9.57 13.7 9.63 10 11 11 7.67 11.8 0.71 10.2 12.3 9.12 8.58 11.5 8.13 11.8 7.86 10.9 5.69 8.28 5.48 13.1 8.49 8.52 7.86 6.95 6.12 9.48 12.6 11.9 8.7 8.93 9.99 10.2 12.1 8.9 11.2 6.24 8.51 9.19 8.8 7.15 6.5 8.25 9.48 10.2 6.72 9.34 7.39 2.68 6.06 1.83 10.2 1.83 9.9 7.42 7 8.81 10.6 9.75 9.61 10.4 1.19 11.6 9.47 11 9.13 10.3 8.87 12.1 11.6 10.2 9.62 6.29 7.42 8.73 6.24 10.9 11.7 8.46 10.2 11.7 8.02 8.08 9.6 10.1 4.99 7.29 3.57 11 11.3 10.3 10.2 8.79 6.14 7.12 8.94 10.9 9.03 11.6 8.12 11.2 11.6 5.89 3.36 9.56 10.2 9.88 7.88 10.8 10.7 8.17 8.93 8.53 6.83 10.1 7.9 9.98 3.31 10.6 11.2 0.97 8.84 10.3 4.6 8.66 10.7 6.15 9.93 10.4 0.71 10.4 6.96 8.83 9.96 6.49 9.55 10.7 11.4 11.3 4.31 11.6 4.56 11.8 4.07 6.73 5.65 12.6 10.8 8.86 6.73 9.76 9.33 9.49 9.37 9.31 4.53 11.4 0 6.8 9 9.27 8.36 11.4 7.97 7.01 11 8.76 11.3 3.49 10.5 12.2 8.33 12.1 7.65 8.52 8.82 7.51 9.31 9.81 2.61 7.92 12.9 9.93 9.61 6.72 9.32 8.33 9.86 11.2 9.54 13.1 9.52 9.56 9.72 9.42 9.32 6.88 7.45 11.3 9.66 8.42 8.17 10.5 10.2 6.52 9.69 10.7 9.17 7.22 10.8 12.3 6.79 11.7 9.08 11.2 12.1 1.83 9.59 9.54 9.77 8.3 3.89 10.8 9.9 8.11 1.38 11.2 10.2 8.17 10.1 3.97 8.27 8.06 10.6 10.7 9.3 10.5 8.72 11.4 10.2 8.76 9.22 11.2 11.5 11.1 9.51 11.1 4.29 5.72 4.42 9.62 8.08 10.2 12.2 8.4 8.86 10.2 9.39 10 12.2 4.91 8.44 7.92 5.73 9.07 10.8 8.64 10.2 9.52 7.25 9.74 10.7 8.78 8.19 9.6 8.35 10.9 4.31 8.44 6.78 10.1 8.09 5.37 11.5 11.2 9.91 9.54 10 7.82 10.6 12.4 8.93 7.6 6.36 12.2 9.53 10.5 7.43 11.4 9.33 10.2 9.28 12.1 12.8 10.2 10.8 6.87 9.85 9.64 13.5 9.14 10.9 10.8 8.78 13.8 9.12 1.83 8.16 10.7 10.8 10.7 8.28 12.4 9.15 10.1 7.9 9.18 9.61 11 10.4 10.3 8.35 12.4 9.91 12 10.6 10.8 7.37 10.3 8.47 11.7 10 13 9.8 6.07 11.9 10.2 8.37 10.6 9.16 10.5 8.52 12.3 4.62 9.43 5.46 4.81 9.09 8.8 6.98 3.75 10 8.63 9.17 9.64 9.25 10.3 13.6 10.6 6.73 8.81 0.71 13.1 7.49 9.93 10.7 7.8 11.9 8.41 4.38 11.3 3.78 7.78 10.5 12.5 9.29 10.8 3.27 11.6 7.44 3.4 3.27 6.67 9.86 4.56 11.6 10.7 9.1 7.76 9.65 8.74 9.6 9.68 14.1 8.71 5 8.71 10.8 0.71 10.2 10.8 8 8.87 4.86 10.8 12.5 7.22 6.89 4.67 8.27 10.8 10.8 10.4 12.8 9.12 8.41 10.8 7.75 9.71 7.44 10.5 9.25 4.11 1.83 8.68 8.16 10.4 10.8 10.3 9.45 15 11.2 0 11 11 11.1 7.71 11.3 1.38 10.3 9.68 13.5 11.3 8.43 11.4 12 7.08 19.3 12 8.2 7.81 11.1 13.8 10.5 7.79 8.53 5.3 4.75 8.87 12.1 4.95 12.7 0.71 10.7 10.1 9.52 9.26 10.7 10.6 3.61 9.54 9.24 12.9 4.33 11.4 12 6.85 8.68 7.73 6.03 10.3 9.62 10.9 9.21 8.97 10.1 9.62 7.59 8.23 11.4 7.8 9.88 9.27 8.68 5.84 9.68 9.41 10.1 10.8 9.74 9.84 1.19 8.47 8.27 11.2 7.25 10.2 8.61 0.99 14 8.46 5.51 7.15 10.9 9.29 6.64 9.81 9.35 8.94 11.7 13.4 9.79 8.86 8.41 8.32 7.3 9.89 6.93 6.78 5.62 9.27 7.32 6.56 3.27 9.09 10.4 2.82 7.68 7.29 6.14 9.67 10.9 9.07 12.8 4.75 7.31 9.2 8.39 3.39 10.9 2.45 5.85 11.7 10.2 7.32 11.8 10.5 1.19 12.2 9.52 9.35 13.4 9.67 12.8 9.85 10.5 1.69 11 2.68 11.9 3.17 12 9.6 7.21 1.78 4.62 12.9 10.5 11.9 9.49 10.6 7.7 8.06 8.44 6.81 5.06 2.36 1.95 9.15 10 5.04 5.85 3.49 5 10.2 4.33 9.47 7.27 1.69 5.54 11.6 10.4 10.2 9.37 9.34 8.53 7.87 10.3 8.57 7.73 9.61 8.68 9.4 10.9 6.64 10.2 9.13 4 6.43 6.42 8.27 8.73 1.69 7.32 4.08 6.99 9.99 10.8 11.3 8.58 5.68 10.6 9.77 11.2 0.97 10.6 8.22 8.2 6.09 7.92 3.63 8.83 8.26 7.28 9.49 8.43 9.45 10.4 11.9 13.9 0.4 8.91 11.3 7.61 9.38 9.17 10.3 8.21 4.55 4.14 10.4 8.35 12 10.9 11.9 3.97 4.42 9.88 7.69 6.95 11.5 10.8 8.25 10.1 10 3.64 9.48 10.6 9.99 10.4 10.6 11.7 12.7 11.5 4.4 9.69 8.69 3.06 4.33 11.5 10.2 8.6 8.92 3.96 9.07 3.75 4.38 9.57 8.08 6.85 9.61 5.6 12.2 10.5 7.63 8.98 2.88 1.69 12.3 10.7 12.2 9.89 8.55 9.21 8.56 0.4 10.1 9.05 10.9 12.2 7.68 9.27 9.94 8.53 9.84 9.09 5.17 11.4 7.59 9.25 11.9 8.76 8.07 10.1 9.52 9.11 7.62 11.9 8.36 8.32 11.3 8.12 8.73 9.17 8.58 4.31 8.34 6.31 7.83 10.1 7.66 7.51 7.34 6.18 8.82 8.13 7.05 10.1 2.07 8.28 9.85 8.29 9.51 8.34 9.2 10.2 11.9 9.66 11.5 7.58 11.5 9.99 4.68 8.89 8.11 9.12 7.92 7.85 6.44 8.54 8.93 4.36 8.11 10.3 7.3 9.55 12.6 3.45 10.2 6.27 9.87 10.7 9.02 7.88 4.64 8.06 8.67 7.17 10.5 11 6.49 7.32 6.19 7.95 12.1 8.03 3.53 9.29 9.22 11.2 8.61 10.2 5.35 11.6 10.3 7.33 6.14 7.22 10.4 9.22 9.88 7.89 9.76 10.6 8.79 10.4 7.48 2.68 4 9.82 5.27 13 9.17 2.07 8.52 8.02 10 7.73 11 5.92 10.4 2.68 8.03 2.95 4.92 8.4 7.99 12.3 6.46 8.3 9.81 8.76 6.95 10.8 9.1 12.8 8.99 8.28 8.36 10.4 14.4 10 8.25 8.98 5.86 8.38 4.06 9.06 10.3 10.4 7.59 8.97 7.81 8.48 8.19 9.03 6.36 8.81 4.71 7.64 10.4 8.22 9.01 10.2 8.83 9.55 9.42 5.69 8.6 7.32 0.4 6.6 0.97 8.93 8.91 4 0.97 9.35 7.87 9.26 11 6.35 8.88 7.71 10.2 7.37 11.4 5.29 9.93 8.2 7.76 7.79 9.13 9.3 11 9.82 0 8.88 9.17 9.91 9.51 10.1 11 7.16 8.34 8.91 10.6 8.75 10 10.6 9.38 8.08 10.5 4.98 9.36 8.5 7.86 6.78 9.94 7.8 10.6 8.74 11.1 7.02 9.51 10.4 11.1 8.37 7.68 9.32 8.88 8.98 9.61 5.06 6.92 7.32 6.1 8.26 10.9 8.43 8.88 0.4 9.66 6.21 11.4 7.6 8.76 10.6 8.28 12.4 9.83 7.53 10.8 8.46 7.77 8.45 10.3 9.61 11.9 9.17 11.1 10.7 9.47 8.4 6.36 10.1 11.6 10.6 0 8.82 10.4 10.6 11 5.71 8.28 5.34 10.4 8.72 9.39 9.53 10.1 7.78 10 9.33 8.54 8.63 7.65 7.67 8.35 10.9 8.41 9.5 5.21 9.66 7.81 8.52 0.4 10.1 8.44 7.82 8.48 9.86 10.9 7.42 8.54 10.5 9.36 2.75 8.71 7.53 8.67 8.62 6.18 9.96 7.21 10.2 3.97 9.06 12 7.76 8.15 11 7.94 7.98 11.1 11.2 7.02 12.6 12.8 11.2 6.61 9.46 8.31 11.2 8.26 7.95 8.36 7.04 9.31 11.1 4.47 10.9 7.7 9.12 6.74 9.09 8.96 5.29 10.7 0 8.12 9.74 7.55 9.34 6.31 4.76 7.61 9.17 9.99 9.81 9.28 8.02 5.4 8.32 7.76 10.4 8.62 8.8 10.5 7.46 11.5 9.05 9.43 7.41 11 9.8 7.26 8.99 3.11 6.55 8.88 6.03 6.7 6.28 8 6 9 2.68 12.3 6.96 7.4 6.39 9.87 6.65 10.2 9.1 8.08 10.2 10.3 10.9 7.43 4.62 3.45 9.19 3.4 7.89 9.35 9.26 8.3 8.04 10.8 4.91 10 9.01 10.6 9.67 7.56 8.06 7.48 11.5 9.36 10.6 8.5 9.7 8.79 9.1 9.16 8.02 9.12 7.7 9.5 1.38 7.96 8.84 7.81 8.67 4.51 7.72 8.58 7.55 7.63 5.06 4.86 10.1 10.6 9.65 8.08 6.86 8.15 8.05 11.1 9.98 9.43 9.29 11.5 5.45 7.07 10.6 9.32 9.2 10.2 8.56 8.39 10.6 9.07 10.8 9.41 8.06 5.92 6.87 9.18 10.7 9.15 7.17 9.26 9.83 9.64 4.78 6.85 10.1 8.96 7.61 12.6 7.53 8.91 10.6 8.26 7.14 10 10.4 6.72 9.11 4.29 9.55 8.11 10.1 10.8 0.71 9.07 11.2 8.93 7.06 2.95 9.59 7.34 9.53 8.62 9.68 9.87 6.7 11.6 7.93 11.3 2.27 8.98 7.4 8.89 11.1 7.87 9.52 6.52 8.76 10.2 3.72 6.55 8.4 7.3 10.1 7.27 9.51 8.53 6.91 8.61 8.75 9.82 2.53 9.14 9.91 8.79 7.6 9.62 11.4 9.66 6.8 9.61 10.2 8.63 2.17 7.26 10.6 11.1 9.91 10.9 7.66 9.33 9.45 8.87 12.2 8.69 9.49 5.4 8.05 6.99 8.71 8.81 3.17 11.3 9.08 10.9 8.48 10.3 8.87 10.2 10.1 7.24 8.09 8.45 8.25 9.78 9.47 8.49 5.08 4.64 11 6.34 7.18 5.93 10 10.8 5.97 8.97 8.88 10.4 10.6 6.87 8.96 8.65 6.41 8.97 8.45 9.73 0 10.6 10.2 3.22 8.48 7.38 10.1 11.4 10.5 11.7 10.4 7.47 7.7 8.43 5.34 9.52 8.33 8.26 10.1 8.25 5.76 9.46 6.22 9.88 8.91 8.36 8.82 3.45 4.83 7.85 8.82 7.02 11 8.99 10.7 4.51 7.64 8.62 10.9 10.9 8.75 9.22 8.82 9.31 9.95 6.05 6.05 8.76 9 3.53 4.48 9.66 12.6 5.04 4.62 9.85 7.32 10.8 9.64 10.7 9.05 11.2 8.9 7.9 10.2 5.9 7.94 11.5 12.9 5.83 2.17 4.14 8.25 9.01 9.39 4.42 0.4 0 7.72 5.58 8.73 8.49 7.63 1.95 8.89 10.3 8.82 10.3 9.33 10.5 8.05 3.22 10.5 11.4 8.39 10.6 10.6 7.86 1.83 9.74 10.6 6.11 4.44 11.2 5.27 7.37 1.63 7.38 1.95 11.1 6.9 3.72 10.3 9.55 6.78 2.75 2.17 8.48 9.9 5.32 6.94 9.75 0 4.03 6.19 4.78 9.52 9.92 7.43 7.97 7.49 6.57 9.85 6.83 10.1 8.97 11.4 3.11 10 9.02 7.09 5.33 11.1 10.9 7.1 10.4 7.33 10.8 8.35 7.28 3.53 8.14 9 11.2 7.59 8.56 8.67 10.1 6.41 8.12 10.6 7.98 2.82 8.43 6.92 8.62 8.1 6.18 10.5 8.2 8.96 6.98 9.98 12 9.74 9.19 11 7.71 11.2 7.27 10.6 8.65 7.92 9.14 7.85 4.89 8.83 10.4 10.9 8.62 10.5 9.35 7.31 10 8.76 8.93 11.4 10.6 11.6 11.1 5.97 9.3 9.35 8.79 7.54 10.2 11 9.8 9.91 8.4 7.94 9.78 12 9.25 7.24 9.16 8.39 8.12 10.3 8.71 7.28 9.87 9.16 8.15 8.76 10.6 11.2 10.4 8.21 8.35 5.9 10.7 7.88 9.95 3.53 9.56 9.87 9.41 6.74 11.3 6.73 10.9 8.92 7.65 6.43 8.29 10.3 7.02 11.2 7.84 11.2 5.77 6.68 4.42 10.3 10.4 10.2 9.39 8.07 9.68 7.56 5.21 6.14 7.85 9.12 5.54 8.84 12.9 10 6.79 7.87 8.37 10.1 10.8 10.9 10.2 11 11.2 9.58 8.32 10.4 9.14 9.83 12.9 9.68 8.03 9.28 9.03 9.75 5.56 12.7 9.3 7.98 8.33 9.91 8.52 8.32 9.8 9.6 7.57 9.43 8.26 10.2 11.3 8.57 8.4 8.74 8.73 2.88 9.63 6.81 9.06 7.29 8.3 8.16 9.51 7.54 8.6 8.97 9.99 9.79 6.85 6.72 10.8 3.72 7.5 7.84 8.18 9.61 9.45 9.11 3.88 7.73 4.81 9.74 10.9 3.17 9.64 7.81 7.74 3.91 9.55 8.15 8.92 9.61 0.4 6.73 9.19 8.88 5.1 10.5 11.1 0.97 9.83 10.1 6.33 10.3 11 9.01 10.6 11.4 14.2 8.6 6.1 10.2 6.51 9.4 5.81 11.4 6.49 9.89 12.7 8.9 8.9 7.6 11.2 8.51 11.5 9.67 3.73 9.97 7.45 9.98 7.55 12.2 3.06 9.45 10.2 11.2 10.2 9.25 0 8.36 6.3 10.2 7.48 3.97 8.92 5.32 10.3 12.1 6.05 2.36 11.9 12.1 8.94 10.4 9.03 11.1 11.2 9.17 6.36 10.3 10.3 11 6 8.75 8.49 11.6 7.46 11.1 9.27 10 9.33 5.38 11.7 8.2 5.76 9.88 1.19 8.95 6.25 10.9 10.6 8.67 7.42 9.07 8.29 4.56 4.33 9.59 10.6 12.1 9.66 10.7 10.4 6.76 9.72 10.8 9.42 8.85 7.6 0.71 7.57 1.19 12.2 9.12 10.1 7.33 11.2 9.35 10.2 11.2 9.85 11 10.4 4.7 8.39 7.99 5.15 9.46 3.14 1.54 6.67 6.88 4.29 7.7 3.78 7.49 4.19 2.7 5.43 4.39 3.84 3.91 10.4 2.68 2.53 2.75 4.44 2.61 9.46 0 5.17 6.21 5.29 5.98 6.58 5.42 5.61 4.38 4.76 7.47 3.53 5.34 4.16 6.15 2.61 0.97 9.35 7.12 1.83 4.8 4.98 9.51 6.17 10.3 10.7 2.45 9.49 11 0.97 8.68 11.8 7.13 11.7 0.71 9.36 9.78 3.4 9.28 10.9 6.22 9.97 9.53 5.95 10.9 10.5 6.33 8.04 8.97 11.6 9.77 10.1 2.53 9.25 9.48 9.24 9.44 8 9.29 9.1 6.84 9.46 11.7 6.95 3.85 4.7 9.59 5.71 8.86 1.38 3.45 13.2 7.81 10.2 5.89 1.69 16 5.75 12 5.21 9.75 7.22 8.2 10.8 9.17 9.88 5.98 12.1 10.8 8.54 9.47 9.48 9.13 3.31 3.31 7.62 2.27 7.59 5.82 10.9 5.3 11.6 9.84 16.2 8.93 5.06 10.4 10.5 10.8 9.52 11.5 8.16 8.31 10.5 9.62 11 10.6 11.2 7.62 6.12 10.4 12.7 12.4 12.3 10.7 10.5 12.5 11.6 10.7 13.3 10.4 10.6 6.25 10.5 10.3 2.45 11.1 10.2 9.3 9.76 10.6 10.4 5.74 9.81 11.6 12 6.81 8.62 6.01 9.45 9.02 6.53 7.6 12.7 7.41 10.3 8.03 7.5 10.7 10.9 9.58 9.79 11.8 7.9 9.9 10.9 4.55 11.4 10.6 9.81 8.26 9.78 9.78 8.57 7.47 10.5 9.39 9.78 10.6 9.26 11.2 6.56 6.32 9.68 9.48 11.5 0 9.61 4.78 9.94 8.19 10.8 7.91 10.1 5.24 4.14 9.35 7.2 3.45 8.3 9.7 6.93 8.42 9.56 10 11.4 2.95 10.8 10.6 9.01 10.1 9.98 11.6 8.05 3.22 8.81 9.15 8.42 11.3 7.03 10.4 6.37 10.8 10.2 10.6 10.6 9.62 7.74 2.36 9.44 8.36 9.64 10.7 9.51 9.73 10.8 9.52 4.56 10.6 9.31 0.99 11.5 10.6 11.8 2.68 11.7 8.79 8.09 11.5 7.14 11.9 0.4 10.6 4.03 8.55 7.4 9.88 11.5 4.26 8.19 8.14 10.6 2.36 9.83 9.04 8.98 9.56 11.8 2.75 9.17 8.28 9.03 5.51 12.2 8.61 9.04 7.77 9.46 9.24 10.4 10.3 11.8 7.7 13 9.22 12.3 11.7 12.3 6.99 9.93 7.82 10.5 9.62 9.96 7.38 12.8 10.4 8.32 8.78 5.06 10.4 7.94 10.4 5.59 4.31 5.73 10.6 9.53 8.69 11.1 9.41 10.9 12 9.39 6.63 8.48 10.3 10.2 10.3 9.13 9.88 8 9.62 11.3 12 4.91 8.89 6 9.65 10.5 12.1 7.65 8.8 11.1 11.9 9.83 9.94 7.48 6.9 9.69 9.04 9.92 7.99 13.4 11.1 8.96 9.61 9.03 7.8 9.45 6.01 5.84 11.8 8.64 10.7 0.71 1.69 11.4 10.9 10.4 4.62 7.38 9.21 14 5.14 8.2 8.81 7.24 5.91 8.42 2.75 7.51 8.93 4.75 3.22 9.08 10.3 7.11 6.14 8.35 8.47 7.61 0 2.36 10.2 8.87 0.4 4.83 7.46 9.98 9.21 10.5 8 12.4 7.65 8.79 7.74 7.68 10.2 3.36 9.73 10.2 9.63 8.78 6.41 2.27 3.94 6.51 9.26 9.49 7.3 9.82 2.17 9.83 9.14 6.93 6.76 4.06 7.37 9.25 3.78 5.57 12 10.6 3.49 9.92 9.88 6.92 4.74 2.95 8.59 8.02 10.1 8.44 5.3 7.62 7 12.1 8.72 4.81 10.3 9.76 9.67 0 9.77 1.38 10 6.27 4.39 3.78 9.7 8.45 10.9 7.64 7.39 11.6 9.47 8.65 10 8.53 11.6 8.66 10 8.09 9.61 6.29 3.78 2.53 0.71 7.4 12.7 6.7 10.7 10.5 10.3 11.9 7.08 11.1 10.5 7.77 12.2 3.75 8.7 9.39 8.06 7.45 6.08 5.47 7.78 6.56 8.93 7.45 0 9.63 6.57 7.14 5.51 11.8 9.41 12.7 6.43 8.79 2.95 8.66 8.29 5.59 14.8 8.55 8.24 9.83 6.33 3.36 5.49 6.35 2.82 7.82 9.73 2.27 10.1 10.3 10 10.1 8.59 10.2 9.59 10 9.22 8.22 5.35 3.27 10 10 5.76 9.41 10.1 6.14 8.51 10.2 9.62 10.3 8.7 7.78 9.11 1.19 6.27 9.62 10.9 8.79 7.73 6.64 8.55 1.69 12.7 9.87 6.33 9.34 9.64 7.91 6.36 6.13 10.6 8.15 7.69 12.3 10.2 4.51 5.17 8.45 11.4 6.32 12.3 12 9.33 9.19 9.22 8.36 9.24 10.6 8.41 7.59 11.3 7.22 10.2 9.3 12.1 10 7.47 5.88 5.31 2.75 8.79 1.69 8.42 7.04 5.89 8.69 8.02 7.55 5.47 9.41 7.11 2.68 9.88 9.35 10.5 8.94 10.2 7.09 7.46 8.25 10.3 8.9 4.65 8.42 4.42 7.83 9.76 6.43 2.07 8.65 11.1 7.95 3.97 9.79 9.7 8.45 4.55 4.11 7.88 1.38 9.08 8.37 7.32 9.6 8.52 9.88 6.61 8.44 10 8.53 9.87 11.8 10.5 8.84 6.58 10.4 10.4 10.5 10.7 10.3 9.41 3.78 6.96 9.17 9.33 9.37 4.86 9.91 1.38 2.36 7.86 6.39 10.9 10.6 2.24 8.22 11.1 8.46 5.68 8.25 11.3 12.9 7.69 7.28 9.61 10.4 9.63 1.95 6.9 1.38 4.55 5.19 4.16 10.3 8.42 3.68 9.94 10.2 7.72 10.5 8.17 10.6 7.68 7.15 12.7 12.3 12.4 9.08 7.19 9.41 11.4 9.44 9.52 7.43 11.2 11 9.29 9.99 11.1 11.2 9.03 11.6 9.81 6.28 10.5 9.75 8.73 10.2 10.3 9.8 10.7 4.42 11.4 9.41 10.2 9.58 9.8 9.82 8.11 7.06 8.35 6.92 7.25 10.2 7.22 8.7 8.32 5.29 11.3 10.8 10.5 8.91 3.31 8.6 10.8 12.4 10.3 9.31 12.1 9.46 8.31 5.93 9.86 1.69 3.97 12.8 7.52 8.88 12.4 10.8 11.3 5.27 0.4 6.96 9.55 10.6 13.1 11.1 11.3 8.14 10.8 9.93 3 9.14 9.06 8.85 11.9 12.7 9.21 9.55 7.7 9.27 13.3 10.9 11.4 3.82 8.03 5.89 7.02 6.49 7.23 11.6 3.82 11.1 12.1 9.8 12.7 10.3 11.3 9.5 11.2 10 9.88 14.7 9.17 11.9 8.63 9.62 10.4 0.97 11.4 6.77 9.28 9.94 8.26 10.4 9.43 9.24 5.47 6.5 5.93 9.72 8.7 7.11 10.4 10.7 8.68 9.1 9.71 12.4 12.3 8.58 11.4 9.92 9.83 10.9 8.41 6.28 0.4 10.3 9.33 11.5 1.19 7.65 12.2 9.21 3 8.84 7.59 9.42 13.9 3.91 5.34 10.9 10.2 11.8 9.23 7.33 0.71 1.38 1.54 12.1 6.68 5.9 0.71 10.6 11.9 0.4 6.05 9.02 4.11 9.96 8.46 6.17 6.81 10.7 8.44 7.53 11 9.45 7.34 5.03 11.7 8.09 9.52 9.12 7.48 7.5 7.28 10.2 11.1 0 9.09 9.29 7.24 5.53 0 9.56 6.68 9.72 8.4 10.5 16.7 9.23 8.34 3.27 10.2 5.94 3.41 11.1 0 10.8 9.9 9.17 2.95 11.1 5.04 9.08 12 10.4 11.1 13.7 3.06 0 10.7 10.5 5.03 6.96 7.74 11.3 4.29 7.39 10.4 3.22 9.83 8.23 0 9.06 11.8 5.11 10 10.4 11.9 1.95 9.78 7.04 10.7 7.47 8.92 8.02 9.52 7.61 9.17 3.53 9.03 7.33 11.4 9.99 10.9 7.7 9.87 8.27 12.1 7.67 8.67 9.88 12 0 7.84 10.4 5.38 7.21 9.37 5.24 11.7 13 2.82 0 6.82 8.44 5.27 12.2 8.91 9.35 10.8 7.72 9.4 7.22 8.33 9.64 6.28 8.52 3.27 10.3 3 7.68 9.27 7.78 2.45 10.4 10.6 8.98 9.36 15.8 15.1 14.8 12.7 11.2 10.2 14.9 3.75 16.9 12.5 15.3 14.6 14.3 14.8 15.9 13.3 15.1 12.1 15 4.53 13.8 13.1 9.57 14.6 14.4 14.4 15.2 14.7 14.9 14.8 15.2 15.2 14.1 14.7 11.9 14.8 15.5 13.6 8.65 12.2 16.3 6.54 15.1 16 14.3 11.1 10.4 13.4 14 14.7 15.6 14.9 16.2 4.64 3.72 6.51 8.23 6.43 15.5 2.75 1.54 15.9 10.8 12.5 10.1 9.5 10.7 14 15.8 15.9 14.8 16.1 14.6 13.3 15.6 12.6 14.9 15.9 14.3 9.3 16.8 15.2 15.7 14.8 14.8 14.8 13.5 11.2 11.3 13.9 10.8 14.1 8.45 10.2 13.6 10.6 8.99 6.61 9.72 3.91 7.28 9.81 9.79 4.62 8.42 11.2 10.6 11.2 4.94 4.6 2.88 4.49 9.43 11.8 8.32 5.72 14.1 4.03 15.4 7.6 10.6 12 13.2 4.06 12.3 7.11 13.7 12.2 10.5 9.99 8.08 8.3 8.74 11 12.1 11.8 13.9 8.47 9.3 10.6 10.3 11.5 6.85 9.35 9.41 9.21 11.2 5.68 8.86 6.86 9.06 0.97 3.78 2.07 5.9 13.5 6.8 4.85 5.07 7.49 14.5 12.1 6.91 9.41 8.69 12.8 2.27 3.64 8.6 6.16 3.64 0.71 6.06 8.6 8.01 7.17 5.62 10.1 7.27 2.82 0.97 8.51 2.27 5.27 5.08 3.11 2.68 11.1 6.98 13.5 7.4 4.38 9.66 15.3 11.6 8.83 8.89 10.4 6 9.93 11.4 11.4 9.83 9.26 9.37 8.38 5.72 8.22 9.71 6.25 8.58 11.5 8.33 11.2 9.07 8.06 11.9 9.34 2.18 7.87 9.64 10.9 10.7 7.3 9.31 3.17 1.69 9.12 7.19 6.86 9.03 7.78 8.94 2.75 10.2 7.37 10.7 11.3 7.95 11.8 1.69 10.4 2.27 8.39 9.86 7.62 7.65 7.79 8.59 4.66 10.8 7.86 3.97 6.11 6.34 8.47 10.1 9.87 8.31 3.61 12.5 3.27 7.72 10.7 9.07 0.71 6.69 6.95 12.2 2.45 11 8.54 2.45 4.66 7.17 7.55 8.43 8.46 8.08 6.03 5.66 4.62 4.89 10.3 10.4 13.1 9.69 11.6 11.6 8.28 8.86 8.52 6.43 10.1 3.21 6.73 8.36 2.95 10.1 5.82 7.23 2.17 10.2 2.17 13.3 9.6 4.21 7.49 8.56 8.53 14.2 4.2 9.22 11.9 9.9 6.63 4.75 5.71 7.07 7.48 6.63 9.62 11.7 0 9.36 7.86 9.17 11.1 11.1 10.4 9.28 9.38 10.4 9.25 6.18 6.07 10.5 10.2 9.87 11.6 2.27 9.71 9.74 9.39 9.09 0.4 0 9.86 1.19 11.7 2.95 11.6 12.3 5.4 8.67 5.81 7.36 10.4 6.94 10.7 8.38 9.14 10.9 5.01 1.83 5.44 3.06 11.7 7.8 0.71 11.9 10.9 8.23 10.5 11.3 9.33 5.39 9.83 8.6 7.53 9.98 10.1 7.79 8.98 5.21 8.87 7.03 6.71 1.19 3.88 4.8 10.9 9.03 10 10.9 10.1 8.63 0.4 2.75 10.6 9.7 9.58 0.4 1.69 8.75 6.46 5.51 7.55 5.45 5.91 6.74 20.2 0.97 5.51 9.07 1.95 10.1 9.4 4.81 10.7 10.6 7.04 7.52 5.4 6.5 9.11 10.5 7.58 8.8 8.95 6 0 4.68 4.4 8.86 2.36 9.42 10.2 6.72 8.66 7.51 9.6 11.2 8.15 9.53 8.86 9.91 9.72 9.07 8.29 8.12 11.8 8.46 1.69 6.14 5.58 1.69 5.25 6.39 4.44 6.95 11.1 5.01 8.5 2.61 10.8 5.37 7.14 8.28 3 10.3 2.36 4.31 3.35 8.52 11.1 5.43 1.54 11.4 4.86 1.19 6.96 3.11 9.01 7.67 6.55 2.45 5.22 2.27 0.71 10.1 0.4 4.85 5.76 5.94 1.95 2.95 6.86 8.05 6.31 3.06 6.95 9.54 10.9 1.38 9.42 1.83 1.38 3.88 9.12 4.68 5.92 3.78 12.1 3 9.88 5.59 8.54 11.7 0 2.82 6.84 10.6 8.55 7.08 10.4 0 5.33 1.95 1.38 5.85 2.95 11 6.96 5.16 7.8 9.96 10.8 12.5 4.55 3.66 9.58 12 3.53 1.38 11.6 11.1 9.37 10.4 10.6 8.5 8.95 2.88 8.8 12 10.2 9.21 10.5 9.61 9.15 6.37 9.37 11.2 9.16 8.12 11.2 9.43 9.58 12.4 9.34 9.49 8.43 10 11 7.33 9.43 9.43 10.7 9.33 6.55 9.97 5.87 3.88 9.55 11.3 8.26 8.47 9.89 8.68 7.6 1.69 10.1 13.3 8.14 4.51 10.8 11.9 4.38 8.72 7.24 3.72 11.8 8.39 11.3 8.72 8.39 9.38 8.44 8.56 9.54 1.38 11.1 9.94 8.52 6.11 9.3 10.2 7.95 13 11.9 11.7 7.22 7.44 8.35 7.25 8.24 10.1 9.18 3.57 3.68 3.36 8.35 7.23 10.7 7.83 8.97 6.71 6.32 3.91 9.55 0.4 10.6 9.77 6.71 7.66 11.6 4.31 4.48 10.1 8.4 11 7.36 6.52 11.1 6.69 11.6 0.4 11.2 10.5 9.04 11.3 10.3 11.3 10.3 9.23 10.8 9.43 9.12 9.76 9.75 10.3 3.27 10.8 13.2 10.3 10.2 9.14 7.06 8.34 4.12 11.9 6.11 8.03 5.31 5 9.07 4.73 10.8 7.62 10.9 5.16 9.39 5.57 6.64 4.4 7.86 5.62 10.1 10.2 8.3 10.2 8.33 9.12 9.75 8.47 9.36 13 11.8 7.76 8.9 9.51 11.6 10.6 9.56 12.2 10.8 11.1 1.19 8.76 5.29 6.68 2.25 8.2 11.3 1.38 11.4 10.8 5.03 4.4 10.2 9.26 10 7.85 7.72 9.85 10.7 8.09 9.29 11.2 11.1 4.96 4.94 7.72 3.17 7.01 4.24 2.53 8.49 2.36 6.21 6.61 7.48 2.88 4.08 6.84 5.04 5.35 5.6 3.94 4.19 11.1 8.97 4.26 6.82 2.45 2.17 0.4 7.89 9.96 9.35 8.34 10.6 4.53 7 5.94 9.01 0.4 10.4 6.95 5.24 2.89 4.56 9.22 4.46 3.53 6.6 7.27 7.29 1.54 7.96 10.2 0.4 1.38 1.83 8.11 8.23 3.61 7.83 0 4.58 7.24 0.4 5.41 4.89 8.19 2.53 9.68 10 4.29 5.57 3.68 3.45 6.96 0.4 8.52 0.71 9.99 1.83 5.95 10.6 6.27 8.73 6.03 7.16 9.35 0.4 1.54 8.3 10.8 10.4 9.53 10.7 3.49 1.19 9.32 5.71 7.55 3.75 8.49 11.3 13.1 6.62 11.6 9.4 8.56 10.9 7.42 9.31 9.75 9.61 9.73 8.55 9.85 9.29 8.92 10 8.96 8.05 4.21 11.2 8.72 11.6 10.6 11 9.6 6.67 9.16 8.09 5.86 8.99 1.69 8.27 11.7 10.1 12.1 10.8 11.4 7.44 7.24 10.2 11.7 3.24 10.2 6.75 9.9 7.68 8.44 9.73 11.3 12 7.88 5.83 4.86 8.39 8.58 7.78 8.45 8.53 5.11 11.2 9.88 12.3 10.4 8.47 12.4 10.2 9.52 11.1 9.87 12.5 9.94 10.3 9.72 11.4 12.4 12.1 9.23 12.1 11.4 10.1 9.51 9.22 0.97 12 2.07 12.1 9.72 11.6 10.2 11.7 8.52 11.9 9.96 9.48 12.4 10.2 3.57 5.86 0.4 6.83 8.83 11.3 9.1 9.44 10.9 7.25 10.3 7.86 9.58 8.48 14.6 8.52 10.5 8.46 3.61 9.07 4.8 13.1 6.59 5.47 11.7 9.84 8.93 11.4 0.4 7.06 12.3 7.77 8.48 10.4 8.84 4.78 11.6 4.73 11.4 10.4 10.5 10 12.8 12.4 9.44 10.2 6.19 10.6 11.1 10.2 9.37 11.4 8.17 9.93 10.4 9.87 11.3 11.5 13.5 12 14.2 11 4.21 4.06 0.4 10.8 9.8 11.9 11.6 5.38 12.4 1.83 11.3 11.8 13 4.94 8.83 10.6 3.68 1.54 1.83 2.68 2.82 3.17 2.68 2.8 13.1 4.24 0.71 0.97 4.91 11.4 11.6 7.93 9.98 2.88 4.46 10.2 8.72 8.9 9.55 8.84 7.18 3.49 4.46 8.42 8.29 4.11 8.18 6.99 7.11 9.47 9.72 9.76 10.3 10.8 8.36 8.43 11.3 9.65 7.02 14.3 7.29 10.3 11.4 12.3 5.85 11.4 9.03 10.9 7.77 13.1 8.96 9.26 7.3 11.7 9.55 8.57 11.1 9.83 3.06 9.56 6.19 2.45 5.22 11.7 4.36 8.96 2.17 6.21 0 10.9 8.5 1.38 10.9 6.47 9.59 9.33 8.44 6.46 13 5.8 10.2 12.1 10.6 10.6 10.2 9.56 9.66 6.76 8.44 6.68 0.4 11.5 13.7 11 10.2 12.3 9.3 10.6 9.81 7.47 0.71 9.1 11.2 9.72 11.6 8.39 10.4 7.71 10 5.84 7.73 6.15 8.54 11.3 8.78 10.2 3.82 4.66 7.68 10.6 3.27 0.97 12.5 0 10.9 9.55 7.83 2.88 10.3 8.18 9.42 8.71 8.35 9.96 2.68 11.8 7.91 6.74 9.26 10.3 11.3 2.82 11.4 9.41 6.85 11 1.83 1.38 11.1 5.41 9.57 5.43 11 11.8 8.33 3.22 11.9 10.1 7.66 10.7 5.81 3.94 9.49 15.6 4.7 7.86 8.9 0.4 8.5 9.04 0.97 9.39 5.37 9.38 5.07 7.91 9.79 8.32 9.28 9.93 7.53 10.9 10.8 11.9 4 8.34 2.17 10.2 10.3 9.54 7.8 7.97 4.42 11.4 10.2 2.27 12.1 7.91 8.75 10.9 6.14 12.4 2.45 10.6 13.3 10.5 9.57 11.1 3.68 3.36 9.01 6.65 9.84 7.37 3.36 10.6 11.4 10.9 10.5 5.31 8.85 13.1 12 14.2 4.42 11.6 11.2 7.73 8.92 14 8.56 8.26 10.6 10.6 6.99 2.68 12 12.3 6.66 9.16 5.38 7.99 16.6 13.3 6.68 8.59 10.8 10.9 8.29 10.2 10.2 10.2 6.98 9.45 17.1 11.2 10.9 9.99 3.06 6.48 10.7 11.3 8.77 11.2 6.81 12.7 9.07 6.42 2.36 9.15 11.3 10.9 3.4 12.8 9.64 12.3 12.2 7.35 3.75 8.4 11.2 8.19 10.2 8.84 9.82 12.5 5.53 8.74 11.6 9.56 11.9 1.38 13.7 11 11 13.1 12.6 12.8 10.4 9.02 10.9 7.63 17.4 1.31 15.5 8.06 10.5 13.9 7.38 10.1 7.47 7.89 6.74 7.83 12.3 0.4 12.2 10 10.7 7.6 12.6 5.25 3.11 6.24 8.67 6.9 8.05 1.38 2.61 4.41 11.4 9.23 11.3 7.24 10.4 3 10.9 10.9 6.88 8.46 9.17 11.9 11.5 9.59 10.2 11.4 9.31 7.05 7.82 3.49 7.76 6.15 9.69 7.64 4.33 13.1 5.68 7.73 10.4 7.9 8.3 4.03 5.07 5.53 6.49 7.54 4.75 7.69 7.27 1.83 9.05 9.42 9.1 4.4 8.71 4.42 3.57 6.63 12.7 6.93 7.26 2.36 8.59 9.42 7.73 1.38 9.96 3.57 10.4 8.36 6.45 3.27 5.01 9.14 6.03 5.17 12.8 3.22 6.67 0.4 5.01 0 4.46 3.17 9.21 3.78 9.43 2.53 1.19 8.89 4.58 9.12 5.32 5.81 6.38 2.07 2.2 0.4 4.97 4.75 6.19 5.89 13.7 3.45 6.45 1.83 5.67 6.37 4 2.82 7.4 11.8 7.92 1.95 9.37 2.68 5.92 10.2 6.16 7.97 2.27 9.27 10.1 1.95 0 3.75 6.27 6.41 8.36 5.61 6.1 1.38 9.38 8.9 0 10.4 8.01 8.19 6.41 8.02 8.34 6.27 6.84 10.4 2.53 10.4 1.95 13.2 2.17 14.6 14.4 12.5 0.4 9.85 10.8 11.1 9.15 11.4 12.8 11.4 8.2 9.77 10.4 10.3 11.2 4.83 10.5 10.5 11.2 9.73 10.7 9.2 11.5 10.8 10.8 6.68 7.41 0.4 3.57 10.8 4.55 9.76 4.71 10.5 8.1 9.56 11.7 1.83 5.89 9.13 8.84 8.4 10.7 11.5 10.5 1.69 11 6.99 12.8 12.3 11.7 11.4 12.1 11.3 10.2 10.2 11.5 9.78 1.38 10.9 9.91 9.01 8.11 11.3 11.8 7.39 9.56 9.77 6.08 11.5 11.9 11.5 10.5 10.7 10.6 12.6 10.8 5.41 3.82 9.35 3.64 13.5 13.4 9.77 3.71 7.68 4.75 4 8.64 7.11 7.74 4.48 1.69 4.97 11.7 11.4 6.97 9.15 11.8 10.7 7.44 7.36 8.7 8.69 9.62 9.64 9.3 6.2 5.49 7.33 9.97 0.97 1.69 9.8 2.61 6.6 4.21 3.97 3.82 2.61 9.64 6.68 0 14.1 1.95 3.36 9.67 7.93 7.34 9.99 7.94 9.34 3.27 11.6 9.44 3.78 7.55 7.06 8.88 12.5 7.51 10.2 10.1 12.3 7.35 13.2 11.4 10.7 14.3 6.32 11.5 13.1 4.91 13.7 8.28 9.19 8.59 7.13 9.81 9.77 6.21 9.76 6.57 12.8 7.75 9.88 6.99 6.58 8.4 7.34 7.1 5.77 6.56 7.48 12.1 9.66 8.16 10.9 7.68 8.3 5.83 9.68 9.98 9.88 7.64 8.31 7.86 7.71 8 9.15 7.31 7.48 5.99 7.76 5.12 8.39 5.73 6.48 7.49 8.87 8.54 10.2 6.67 0.4 8.72 2.61 5.31 8.39 7.56 0.97 5.5 6.37 5.66 4.79 11.4 7.25 1.69 2.82 8.38 7.42 0 3.94 7.44 8.59 5.72 9.02 7.67 5.97 6.99 6.33 8.16 8.92 8.72 6.17 8.93 7.97 10.3 7.98 10.5 8.99 9.86 9.17 10 5.12 7.77 1.38 10.6 6.63 10.4 7.9 6.82 1.83 4.24 4.08 7.81 8.8 8.23 9.31 3.31 8.64 8.84 8.72 7.97 7.56 6.78 10 7.56 7.53 7.46 8.44 11.7 3.31 7.42 9.03 4.89 5.26 13.4 10.5 6.89 8.12 5.89 9.09 4.14 7.45 5.98 6.96 6.99 7.88 7.86 9.13 3.53 4.75 4.03 6.4 8.62 5.44 11.5 9.41 10.2 13 10.5 12.8 4.42 11.5 5.85 12.5 8.22 11.1 7.76 5.11 11.4 10 10 7.98 11.2 10.1 12.6 3.78 4.36 6.21 14.6 10.1 10.4 5.38 9.19 10.7 10.9 9.33 10.3 11.7 10.7 12.2 9.98 5.73 10.1 3.27 11.2 10.4 4.92 6.21 6.66 10.7 9.36 7.41 9.38 0.97 6.31 7.8 8.81 4.26 11.1 11.1 9.19 10.4 9.23 10.3 8.27 8.99 9.41 0 9.76 11.3 7.88 5.75 7.35 11.8 7.3 2.27 12.5 11 7.12 7.98 8.45 10.7 9.4 10.7 10.1 6.12 10.2 9.93 6.66 11.5 8.77 9.41 12.3 7.68 8.5 7.64 10 9.05 10.8 9.53 10.2 5.73 5.17 7.89 10.6 6.88 4.42 10.2 7.55 8.44 9.36 10.1 10.7 9.94 9.03 6.02 10.4 9.62 8.27 8.7 6.24 10.4 9.21 9.11 12.4 8.75 9.7 10.7 10.7 7.68 7.76 8.52 7.85 12.4 11.3 6.39 10.2 12.1 12.7 11.1 8.36 6.68 5.82 9.92 6.14 6.38 8.52 9.46 9.59 9.21 10.1 8.52 12.4 10.1 7.64 2.88 5.46 8.84 12.3 11.1 10.5 5.59 4.97 10.5 7.73 9.02 8.62 8.24 9.49 10.1 8.42 8.32 2.07 11.7 13 10.8 11.1 12.3 9.24 9.01 6.64 6.32 9.13 2.82 0.4 0.4 11 6.66 10.1 6.95 6.05 3.36 5.3 2.45 7.49 3.17 7.27 8.5 4.31 2.36 7.8 11.1 8.98 7.89 5.19 10.6 8.58 9.68 3.61 2.88 3.88 1.56 9.9 8.98 6.15 2.53 8.89 10.6 8.43 8.86 8.27 9.48 11.3 8.56 8.7 9.23 12.6 8.64 10.4 9.4 10.1 9.15 7.32 6.18 9.78 11.1 10.3 5.71 7.71 5.98 7.4 6.54 7.15 7.49 10.1 4.58 6.94 10.3 6.66 9.5 7.95 5.75 6.65 3 7.57 7.39 8.17 5.73 7.7 8.27 6.56 10.2 9.48 7.7 9.24 6.28 10.1 9.85 6.92 7.84 10.6 7.76 5.15 9.38 9.82 9.88 9.15 10 7.11 9.11 7.23 6.99 10.5 8.11 7.78 8.94 10.6 10.1 4.88 8.19 7.23 8.15 7.89 10 7.05 6.36 8.12 8.38 7.72 9.99 5.21 6.17 7.42 9.48 11.5 6.25 8.54 11.4 9.5 8.02 9.85 6.67 7.98 9.51 8.88 7.93 5.92 9.37 8.1 9.62 8.96 9.7 7.42 9.64 8.68 10.3 11.2 11.7 10.3 10.1 1.19 6.92 9.94 7.35 9.1 7.66 8.13 7.6 8.07 4.66 8.3 10.3 8 8.35 3.31 4.23 8.07 8.11 8.91 9.23 2.83 11.6 1.38 8.1 10.4 8.71 8.83 10.5 7.85 7.71 6.56 9.64 8.82 10.7 9.21 8.88 10.3 5.32 7.14 1.38 8.86 9.62 7.2 8.12 3.4 2.88 5.68 11.8 7.63 3.22 7.64 10.9 9.07 11.3 9.27 8.36 7.69 8.38 7.7 4.31 6.49 9.71 4.71 8.26 7.86 5.77 9.99 9.08 9.72 5.38 7.06 7.87 6.62 9.47 5.5 10 2.53 6.19 6.62 6.13 5.33 6.6 8.09 7.53 5.91 8.35 8.03 9.24 5.85 11.3 11.5 7.01 8.81 7.85 4.08 6.11 4.42 8.29 7.72 6.18 9.05 8.11 0.97 8.18 8.94 0.97 4.97 8.52 2.61 7.32 3.64 6.83 9.06 5.65 2.45 5.5 8.09 9 10.1 7.12 6.92 8.81 7.75 8.79 9.14 9.1 9.54 5.57 8.9 9.43 6.71 7.92 9.5 8.46 8.08 15.9 8.29 7.78 10.6 10.3 9.99 5.15 7.92 8.96 7.47 6.6 13.9 9.39 10.6 4.98 6.98 3.31 9.71 8.82 7.46 5.27 8.53 7.82 10 6.84 1.19 7.99 6.24 5.19 4.78 6.44 7.87 2.17 11.8 4.06 10.4 7.8 2.82 10.2 10.3 3.49 8.15 7.38 6.49 9.97 5.69 8.07 8.24 3.61 9.43 6.88 8.42 6.69 11 8.79 6.54 6.18 5.5 8.45 8.08 10.4 3.45 7.17 10.3 8.84 8.1 7.86 5.07 7.14 7.89 6.33 9.99 9.29 1.69 6.38 3.82 11.6 8.75 3.75 7.87 11.7 11.2 9.4 7.95 5.68 7.58 10.7 9.93 8.58 9.52 10.2 8.13 11 7.83 9.92 10.8 10.1 9.45 8.68 9.23 5.44 2.36 1.38 5.43 7.24 7.53 7.04 7.85 0 3.31 4.21 0.4 8.54 11.4 12.8 4.08 8.33 4.44 5.07 3.57 4.38 9.61 7.64 7.08 6.63 8.44 8.47 8.42 7.42 10 9.08 6.77 10.1 11.2 10.3 8.72 7.09 9.34 9.19 9.8 9.38 7.37 8.46 6.74 10.1 6.73 6.44 10.9 8.15 5.58 8.83 4.66 6.58 7.24 9.05 10.3 9.14 8.46 9.13 9.92 7.63 10.4 9.44 4.97 8.42 9.81 10.1 10 7.96 9.03 9.93 8.19 6.38 11 9.97 10.5 9.4 11.2 7.74 7.88 9.66 10 4.8 11.4 9.62 6.54 8.57 5.22 8.5 9.88 8.67 5.81 8.13 6.52 5.27 9.65 8.76 8.64 11.1 9.69 2.53 11.7 8.18 3.4 7.42 10.2 10.1 10.1 6.64 9.79 9.67 8.38 10.3 12.4 7.62 8.05 5.12 8 8.86 10.1 7.22 6.4 5.85 9.63 7.35 7.82 9.77 5.16 4.46 4.48 11.7 4.92 4.24 11.6 9.62 2.07 9.03 5.84 11.2 7.85 8.77 11 10.8 1.54 10.4 8.72 10.5 4.8 5.61 10.6 10.2 14.6 8.68 5.91 9.36 11.2 6.29 8.84 4.38 7.25 8.64 7.38 9.52 10.9 8.96 11.4 3.78 12.2 6.95 3.82 5.81 8.05 7.77 7.09 9.47 5.65 6.07 5.59 3.64 9.27 12.7 8.68 6.2 9.99 8.35 8.12 7.81 11 7.26 10.9 12.4 9.46 12.7 10.2 11.8 8.27 8.81 7.41 6.66 8.27 6.45 10.9 10.1 9.4 7.18 8.37 6.97 11.8 9.92 9.59 11.1 8.93 9.83 5.34 3.68 6.53 5.01 10.2 11.8 8.87 8.48 3.19 1.83 11.2 13 6.93 2.27 5.95 8.11 5.78 8.86 9.37 7.86 12.4 11.5 14.7 2.17 6.47 2.36 5.04 2.53 10.8 11.9 10.3 4.92 3.49 10.1 11.1 10.1 9.17 1.38 7.87 3.4 2.53 11.9 7.68 8.96 9.97 10.9 11.2 9.81 6.15 6.53 9.78 7.58 10.1 6.56 10.5 10.3 9.94 8.36 9.8 10 9.59 10.3 9.57 11 13.5 0.4 7.41 7.2 9.41 9.29 9.05 8.54 8.73 6.45 9.95 5.14 6.83 12.4 10.1 11.7 10.5 8.52 9.59 8.7 6.95 10.9 10.2 10.2 0.97 8.55 12.3 11.5 5.21 6.96 11 3.11 8.54 10.6 6.93 11.2 11.4 11.6 11.8 11.9 9.65 5.33 7.94 10.1 7.29 7.8 9.4 1.19 9.52 8.63 5.56 8.84 7.25 9.74 3.75 8.64 1.69 10.3 7.74 8.14 7.8 8.25 9.13 11.1 5.78 11.9 3.47 9.42 7.26 10.8 11.6 6.71 10.3 8.86 12.2 9.64 10.1 9.59 11.4 9 9.36 0.26 9.19 10.7 7.71 10.3 9.81 8.44 9.47 2.82 3.91 4.21 9.09 9.93 2.17 10.5 9.73 6.25 11.2 14.3 10.1 9.82 4.95 12.2 8.19 3 9.23 8.11 9.92 8.99 12 7.43 10.8 11.2 12.1 10.1 11.1 10 8.05 12.9 10.4 7.3 10.7 8.11 10.1 9.86 1.83 11 2.27 11.4 10.9 8.68 7.19 9.65 1.83 10.6 11.9 11 9.96 8.4 11.7 8.73 9.86 9.25 11 8.41 5.11 4.03 11.9 3.17 9.88 9.23 10.6 8.09 8.49 5.64 2.61 8.93 2.61 0.71 1.83 12.3 5.03 10.9 4.11 5.64 6.65 7.15 0.4 4.14 4.33 8.44 0 0.71 10.2 4.29 10.6 12.1 11 9.42 6.62 2.75 3.94 7.04 10.8 8.93 0.4 9.58 5.46 8.03 8.91 6.38 7.56 6.41 8.08 8.32 8.12 2.53 7.76 9.96 10.3 11.1 9.04 2.36 4.56 0.71 7.53 6.51 0 4.88 8.88 10.1 8.92 9.38 8.7 9.54 1.54 8.62 0.71 3.85 0 0 10.1 6.64 4.19 8.99 8.34 6.89 9.58 9.88 2.17 9.17 10.2 10.2 10.1 8.55 0.4 8.27 9.29 11.8 8.94 2.36 9.08 12 8.84 10.8 6.78 8.07 1.95 4.83 11.6 0.71 6.52 10.7 9.23 2.36 6.81 12.1 8.94 5.84 9.3 9.92 1.54 0 11.4 9.18 8.71 8.61 8.46 8.99 5.55 9.43 9.19 11.4 6.87 1.83 2.45 8.56 6.02 6.5 10.3 9.48 9.69 7.36 9.24 9.85 6.23 5.01 6.73 9.37 9.68 8.69 0.97 5.88 8.52 7.58 6.5 2.5 8.84 4.86 7.11 8.88 6.42 6.21 10 12.1 8.68 9.2 4.42 2.75 9.34 6.41 4.4 1.54 6.48 1.69 6.78 5 4.62 0.4 2.07 11.2 10.1 8.61 3.72 10.6 10.9 7.93 8.85 9.71 7.65 11 10.9 8.32 9.7 6.99 8.66 0 7.47 0.97 6.69 10.7 8.44 7.7 3.72 10.3 11.7 7.83 8.1 8.67 9.79 3.11 3.91 1.19 10.4 9.77 9.43 9.78 10.8 8.26 8.67 12.7 10.2 2.61 7.46 3.17 8.83 10.4 7.63 8.08 12.3 8.14 2.07 9.57 10.6 9.17 7.51 5.9 15.2 4.8 5.39 6.73 4.24 5.37 5.62 8.88 10.2 8.75 8.6 5.27 4.68 8.63 10.7 2.17 9.43 6.45 4.62 7.62 8.43 5.78 7.35 8.13 7.22 9.15 7.61 9.14 8.33 6.45 8.43 8.26 9.29 7.99 7.53 5.99 8.24 5.39 9.15 9.92 11.8 9.56 7.42 10.7 6.27 11.2 8.42 9.86 8.64 6.12 11.2 10.4 7.89 8.99 9.03 5.31 9.05 7.32 10.4 8.34 8.33 9.24 9.27 4.68 2.36 6.41 10.5 9.91 10.6 4.48 8.74 8.05 6.43 3.22 5.92 7.11 9.35 6.37 7.97 4.56 7.4 7.73 7.77 4.68 3.94 7.99 11.5 12.2 8.04 6.9 6.63 8.75 9.98 8.54 8.68 9.92 10.1 1.19 10.9 6.14 5.95 4.89 7.25 10 9.17 4.53 8.43 8.23 8.02 10.7 9.59 8.37 9.26 10.6 8.52 10.4 10.1 9.17 8.57 10.5 8.97 9.81 8.58 7.8 9.45 9.23 5.77 9.64 10.8 8.31 7.09 9.45 8.31 9.28 8.49 9.27 11.1 8.26 9.11 1.83 7.63 10.4 9.61 8.55 5.35 9.7 11.1 8.72 11.7 5.99 4.86 7.92 9.31 10.6 8.24 8.01 11.3 7.55 11.4 10.4 8.04 10.5 9.67 8.29 11.5 10.3 7.45 8.06 8.69 10.6 11 11.1 5.52 8.03 7.46 7.88 11.1 4.06 10.3 9.38 10.2 11.3 9.82 7.14 9.44 8.78 9.77 0.71 11.5 10.6 9.61 4.95 11.2 4.29 8.72 2.17 9.95 5.95 10.5 8.61 10.1 9 6.92 8.79 5.04 7.36 9.21 6.88 9.13 11.1 6.96 10.4 6.1 7.6 11.5 9.38 7.8 6.98 6.85 5.58 9.42 7.97 8.76 7.36 1.54 4.19 2.82 4.94 9.86 8.2 10.4 7.76 5.03 6.5 10.1 9.12 9.87 6.29 10.3 6.05 8.15 5.22 11 8.98 10.9 6.04 16.3 7.38 4.64 9.85 10.9 5.99 10.3 5.55 7.33 11.3 7.1 8.33 7.84 11.1 7.34 9.38 7.72 1.38 11.6 6.74 9.43 0.4 8.67 9.52 3.57 9.74 9.76 8.76 3.36 6.59 0.4 7.47 6.99 5.71 4.36 12.4 11.1 7.61 5.87 1.95 6.45 9.8 10.2 5.11 7.22 10 10.9 3.11 0.97 0.71 2.07 10 9.83 9.73 9.54 9.93 6.45 8.2 3.06 8.95 4.88 3.41 8.07 8.94 10.1 8.13 4.94 8.45 6.41 3.22 4.78 0.71 10.4 10.1 0 8.38 8.15 11.9 9.96 8.84 1.83 9.48 9.15 5.65 7.55 11.6 10.3 11.9 8.38 5.74 1.38 10.2 9.11 8.24 5.89 8.38 8.9 9.92 7.26 6.4 7.88 5.81 6.12 7.43 8.04 8.01 12.5 6.8 8.8 6.03 8.36 10.8 9.49 6.68 7.27 6.27 5.58 9.82 9.52 8.43 5.06 4.55 1.19 6.9 11.5 10.3 7.72 8.99 9.26 5.51 9.65 5.06 5.45 5.17 11 11.2 6.68 7.69 0 4.48 10 4.26 7.59 6.63 9.76 7.54 8.62 9.14 6.95 8.5 8.08 8.84 6.89 3.31 4.03 8.43 8.09 10.8 8.54 8.81 10.3 8.43 9.58 9.9 10.6 9.41 9.21 0.4 8.98 10.4 5.34 8.72 10.1 8.9 7.66 8.43 11.3 7.04 9.61 9.01 6.12 7.23 10 9.74 9.93 9.8 4.95 8.23 13.2 9.4 5.95 9.79 10.3 10.6 7.94 7.25 9.28 9.61 7.53 8.35 10.7 8.81 4.78 8.12 7.57 8.63 9.7 9.08 9.87 9.01 7.55 9.37 3.78 8.3 8.95 1.19 8.84 8.57 7.28 8.37 8.86 9.5 9.19 9.64 5.93 8.57 9.31 6.74 10.3 6.26 8.71 6.57 7.28 9.51 7.85 9.6 5.17 7.47 6.36 8.83 11.2 10.2 7.44 2.17 9.76 9.16 0.4 4.55 9.49 7.94 11.9 10.6 4.4 1.95 10.1 11.7 9.78 7.61 9.46 6.28 6.9 9.27 0.97 8.48 8.45 10.2 11.1 6.95 8.8 10.6 8.86 8.46 7.76 10 9.13 9.53 8.28 8.78 7.39 11 10.9 8.9 7.14 4.86 7.57 7.2 6.86 8.65 9.18 11.1 9.17 3.75 8.05 0 11.4 8.45 6.87 10.2 6.34 0 7.53 0 8.09 6.4 12.1 8.9 7.13 0.17 8 1.19 2.07 10.3 6.13 10.1 7.78 9.54 10.2 9.91 8.21 8.04 8.99 9.64 1.83 8.52 6.05 3.22 8.4 10.4 10.1 10.2 7.64 9.19 9.54 10.9 6.4 8 7.6 1.38 7.19 8.94 2.61 9.9 9.65 10.3 5.55 7.87 7.98 9.01 8.11 8.22 5.21 11.2 8.91 10.3 10.4 3.91 11.5 9.99 8.43 6.33 9.62 8.58 10.5 8.25 6.9 8.15 8.78 9.72 4.47 9.95 10.1 6.2 6.45 8.38 4.4 1.19 7.13 8.5 4.53 5.15 11.4 7.46 8.24 6.47 4.73 9.94 8.32 10.5 9.61 9.54 5.89 11.2 11.6 8.85 9.2 9.07 10.8 10.3 7.99 10.3 10.9 10.2 10.5 4.89 9.5 10.2 8.01 10 8.3 5 3.85 9.32 9.12 8.51 6.85 9.96 4.64 6.53 11.6 10.4 10.6 10.2 7.78 10.7 3.72 5.16 9.66 7.31 8.86 8.9 10.1 7.08 8.39 6.14 9.73 7.23 7.26 3.91 8.28 11.1 10.5 8.77 6.07 10.3 6.71 4.11 8.7 4.62 9.85 9.43 9.46 9.29 10.4 9.42 10.6 7.63 8.49 11.5 9.29 9.42 10.9 11.9 12 6.23 11.6 11.5 11.3 13.1 12.6 9.84 8.39 7.76 9.96 13.6 9.01 10.9 7.3 9.38 11 7.99 9.32 11.5 11.3 6.42 7.99 11.8 8.06 11.1 9.2 7.62 11 7.04 9.01 10.9 10.9 9.14 7.19 6.17 1.83 11.2 8.4 11.1 9.19 9.77 8.12 11.7 12.3 10.5 9.67 11.6 9.54 7.45 9.08 8.04 10.8 14.1 9.42 8.18 12.6 5.5 9.63 7.3 8.88 4.03 10.9 9.33 11.3 5.55 3.17 0 0.4 9.35 12.9 10.9 16.5 9.9 12.2 13 10.6 11.3 9.23 6.93 9.1 10.4 9.77 12.5 9.61 6.28 7.49 3.57 11.2 7.14 3.31 6.77 5.08 8.54 5.32 7.45 6.6 10.6 6.88 9.09 10.3 3.36 7.81 11.6 11.3 8.77 11.6 9.48 4.21 5.46 0.71 2.07 9.78 9.36 3.72 10.8 10.3 3.94 10.7 6.61 3.22 6.34 2.07 9.35 3.45 13 9.27 11.4 7.02 8.26 5.63 9.48 9.27 8.92 7.5 9.95 4.53 8.2 6.51 10.7 7.02 5.84 10.5 10.3 7.82 6.2 12.8 8.18 5.72 7.39 4.14 1.54 9.25 1.38 8.87 11.4 9.54 9.13 10.1 7.42 12.8 10.2 7.96 10.4 9.63 9.92 5.41 6.39 7.66 13.2 10.6 9.89 9.39 8.97 8.65 8.77 10.5 12.3 10.7 9.34 9.2 9.03 9.14 10.1 10.5 11.7 11.2 9.76 9.18 10.6 1.69 6 3.94 11.5 8.09 10.2 9.82 9.33 2.68 8.45 8.51 6.22 8.35 9.66 1.38 8.94 8.21 8.08 10.6 9.74 9.37 7.13 4.08 3.48 9.42 10.2 10.4 8.91 9.57 5.93 8.94 9.64 8.37 8.67 7.57 10.8 8.38 13.6 0.71 1.95 6.21 11.8 1.54 0.4 9.45 9.37 10.7 7.15 6 9.21 7.88 7.17 4.46 8.84 10.1 5.41 8.17 5.12 4.19 2.95 2.36 9.47 6.69 8.22 8.53 10.5 8.94 7.47 5.42 9.04 7.64 8.27 1.38 2.76 6.24 2.45 2.36 8.15 0.71 6.93 10.6 6.92 7.68 12.6 9.66 13.1 10.1 0.97 9.81 11.1 10.9 9.02 10.1 6.37 9.77 6.34 8.85 6.96 7.15 6.97 9.97 11.5 11.3 4.92 7.58 5.51 9.42 5.91 10.2 8.06 1.19 9.75 10.1 9.79 0.4 10.7 7.77 6.88 4.31 5.53 7.44 10.2 11.6 10.8 8.78 7.14 9.33 8.03 11.7 11 3.85 6.14 11.1 6.87 4.92 7.61 2.75 8.58 9.78 8.4 0.4 6.02 4.62 7.1 4.83 2.95 10.1 9.93 6.96 8.17 10.2 9.18 3.53 5.55 8.71 9.09 6.99 4.06 6.92 7.41 6.83 7.26 7.62 8.56 4.43 10.6 8.34 7.09 10.9 10 9.82 11.7 8.91 7.56 6.26 10.6 11 9.58 9.76 14.1 7.8 7.28 4.58 5.96 10.1 4.42 9.72 10.8 9.73 7.87 6.99 9.28 5.37 12.7 9.93 6.67 8.53 8.24 9.24 9.2 7.43 9.84 5.32 8.32 9.78 6.52 7.91 2.36 3.17 7.37 6.32 9.46 9.58 7.47 7.44 7.47 8.32 9.1 8.56 9.6 3.91 10.6 4.85 6.07 8.82 4.89 10.1 8.28 9.11 11.7 4.91 8.22 6.1 7.43 5.21 10.8 8.06 9.24 11.4 7.77 9.15 9.55 6.92 6.76 10.1 10.4 5.35 12.2 10.4 8.71 9.81 6.66 5.56 5.92 11 9.6 10.2 9.88 9.5 5.11 9.93 9.87 8.83 0.97 9.67 4.97 9.37 6.41 9.78 9.89 12.1 9.82 10 9.38 10.4 7 10.6 9.47 8.96 8.43 6.4 9.53 6.07 6.14 9.84 9.68 7.98 10.1 4.53 6.61 6.57 9.2 10.8 8.18 7.81 9.48 8.33 1.19 5.84 5.25 4.31 9.7 9.22 6.65 11.8 11 7.5 9.76 9.51 2.07 9.74 8.68 7.73 10.5 9.34 8.21 5.22 10.3 10.5 11.2 9.86 9.48 9.97 6.06 5.92 4.91 10 8.28 0.4 7.25 9.04 10.7 10.2 7.6 11.4 9.6 7.87 7.46 9.25 10.2 10.8 4.88 10.1 7.82 5.82 7.88 13.2 5.19 9.59 7.03 3.45 9.29 11 6.54 8.72 3.22 9.57 6.92 9.41 3.27 6.63 5.94 6.8 9.75 3.22 7.85 9.69 10.7 5.2 8.98 7.09 7.97 9.01 9.52 10.2 4.4 7.58 2.53 8.78 6.33 9.88 7.64 5.42 11.8 7.09 12.7 15.9 6.9 11.3 11.3 7.97 5.88 5.15 7.8 3.61 5.46 5.47 6.88 10.5 9.71 6.26 6.87 7.6 1.54 10.5 11 7.75 9.5 8.67 10.3 5.43 4.42 11.1 5.69 7.49 8.71 10.6 7.77 7.98 7.79 8.26 9.46 7.58 8.47 10.4 11.2 5.47 5.98 9.83 2.27 4.68 7.83 8.87 0 8.61 6.4 9.04 9.02 5.72 4.19 7.69 8.42 10.2 7.21 10.4 5.15 6.72 9.22 9.91 10 8.72 7.9 8.81 11.2 9.69 5.3 5.52 7.8 8.03 8.03 5.55 8.36 10.4 7.39 11.8 9.04 10.4 6.63 9.68 9.15 12.7 9.05 10.2 3.4 8.16 10.6 1.69 9.01 0.71 8.51 8.76 5.69 10.3 4.88 1.19 7.06 5.88 0.71 6.9 0.71 2.07 6.67 10.8 13.1 11.2 9.88 8.66 6.88 8.86 7.63 7.33 7.81 7.23 10.2 10.3 11.4 0 8.19 10.2 8.25 6.84 8.9 8.82 4.33 5.95 9.68 16 4.31 10 8.4 0.71 12.5 6.98 6.2 7.76 8.89 13.3 10.2 8.94 9.32 7.27 10.8 9.09 5.82 7.64 10 6.65 10.1 10.1 11.9 8.81 12.2 9.5 9.46 7.22 11.4 8.56 10.3 9.32 8.5 2.68 9.26 10.8 10.2 8.32 10.5 7.68 10.2 11.5 9.87 10.3 5.34 10.7 14.9 7.41 10.6 10 8.83 1.69 8.79 8.78 9.59 12.2 10.6 3.53 9.51 9.82 7.84 8.29 8.37 2.75 11.7 11.7 7.17 5.07 9.95 8.63 8.66 4.94 9.74 0.71 5.29 8.67 9.62 7.31 6.99 2.45 4.75 5.69 9.66 7.29 3.94 9.46 9.16 8.25 8.36 10 6.14 5.53 7.95 10.4 9.23 10.1 5.83 10.9 8.13 11.5 10.3 6.62 10.2 8.87 9.75 9.73 8.08 5.11 9.43 4.64 10.9 6.06 0 11.7 9.66 8.43 11.6 9.25 10.1 11.6 9.46 2.29 10.6 8.92 9.93 6.77 0.4 10.8 14.9 0.4 11.7 8.38 10.5 7.17 9.84 0.4 6.95 0.4 9.45 7.28 5.91 5.14 9.21 10.9 9.59 0.97 12.3 8.69 9.17 7.96 4.92 8.14 9.69 6.62 7.19 2.09 9.12 9.09 9.08 9.29 4.76 10.2 8.6 8.96 7.59 11.9 11.2 1.83 2.45 10.2 0.71 9.56 5.3 5.11 0.97 8.63 0.4 11.4 8.08 10.7 4.24 6.71 8.54 12 0.71 4.48 6.4 8.99 10.1 5.07 9.56 10.1 6.31 7.3 8.16 4.62 7.41 12.2 5.51 8.8 2.45 5.85 7.4 10.2 7.54 11 8.76 2.68 8.6 8.63 4 9.37 10.6 12.2 9.04 9.95 9.47 9.31 9.63 8.57 7.21 11.5 2.27 10.3 8.62 3.72 11.9 9.57 7.57 5.33 9.44 8.32 12.4 7.06 6.55 10.3 9.5 7.02 9.41 5.37 3.17 9.05 1.38 8.88 4.56 8.24 8.09 8.59 7.61 10.6 14.1 11.4 4.33 10.2 6.16 6.74 9.65 10 9.72 8.35 6.07 7.05 7.84 1.83 8.66 9.1 6.19 9.07 11.6 3.22 7.41 9.98 10.5 6.51 9.82 9.86 8.97 17.1 8.53 7.1 8.11 4.21 8.28 8.38 7.44 7.32 7.92 10.4 8.59 11.3 5.76 4.51 7.23 5.43 2.68 11 12.8 12.2 9.5 7.15 4.6 7.45 8.56 9.41 10.7 10.5 5.95 0 11.7 9.77 10.6 7.45 8.08 10.8 8.59 10.5 10.5 10.3 11.2 9.74 14.4 9.79 9.92 6.58 11.2 7.69 9.33 9.57 8.94 8.15 11.1 11.2 4.62 8.54 10 1.83 10.1 8.4 6.89 10.4 12.3 12.1 10.2 10.3 9.96 12 10.9 10.1 10.5 7.78 8.95 11.3 10.3 10.1 7.05 9.84 6.81 9.94 9.59 7.79 8.23 11.4 9.03 9.36 10.7 4.6 8.24 11.7 6.12 6.83 9.51 12.8 10.9 3.49 8.85 10.3 7.06 1.95 11.3 10.1 13.2 10.3 10.2 8.53 8.45 12.2 6.32 10.1 11.7 10.6 5.91 11.5 9.13 8.81 10.6 8.47 5.99 1.95 9.4 6.74 7.96 11.6 3.53 3.36 10 9.15 7.4 8.58 9.43 7.17 12.4 10.4 10.3 8.86 9.29 8.83 9.68 8.08 8.02 10.3 8.4 9.84 9.35 8.69 9.79 9.65 8.31 9.09 9.92 13.8 16.1 6.41 12.7 10.8 7.32 9.62 7.27 11.2 16.5 9.71 3.88 10.7 9.49 10.2 9.34 9.29 8.41 8.75 8.98 11.5 7.28 10.1 10.2 10.2 11.4 10.8 10.9 10.1 12.4 6.56 10.5 10.5 9.73 9.09 12.4 9.56 9.28 11 0.71 5.71 2.36 6.05 10.3 9.32 11.8 9.02 1.38 8.86 1.69 12.9 6.67 9.49 9.34 9.2 4.42 8.95 4.08 8.26 9.13 16.1 1.69 4.8 9.07 10.1 8.86 10.2 11.3 9.33 9.36 9.33 9.75 9.36 6.08 6.96 11 7.08 8.89 9.48 6.67 13.4 10.1 8.49 6.88 11.3 7.14 9.88 9.03 14.4 8.87 6.59 7.97 7.52 8.64 10.5 8.62 11 6.2 11.9 11 7.94 9.86 10.5 8.53 5.97 13.1 8.59 10.4 11.1 11.1 10.9 10.4 11.2 10.3 9.64 10.7 10.2 7.92 12.3 7.12 11.2 9.66 7.29 3.75 9.79 9.72 9.79 10.6 10.6 9.41 10.3 4.44 10 11.2 7.83 10.3 13.6 13.1 11.9 9.35 10.7 0.71 10.8 9.17 10.6 11.9 8.42 9.31 7.76 10.4 10.4 8.69 10.2 10.8 8.78 6.41 8.86 10.1 6.19 10.5 5.74 6.78 8.49 8.94 2.05 3.4 6.86 8.43 7.09 8.68 9.44 3.68 8.06 9.47 7.98 10.4 9.94 9.13 5.58 9.09 8.26 10.1 8.5 8.26 7.3 3.17 9.45 9.51 8.91 6.69 10.3 11.1 8.05 5.52 8.08 11.3 10.3 9.92 11.1 9.94 9.86 8.69 10.4 10.3 11.2 10.6 10.1 9.57 8.38 8.29 7.57 11 7 10.2 8.18 10.6 9.02 11.3 6.74 8.33 9.61 9.08 8.28 10 11.7 2.75 5.17 6.39 5.45 10.7 10.7 8.4 10.5 7.83 9.94 11.9 9.63 6.92 7.69 7.56 7.22 9.7 10.2 7.91 9.9 9.76 11.3 5.87 11.1 10.1 9.29 10.8 8.33 10.1 11.4 3.85 10.1 4.14 9.98 7.86 7.65 8.68 11.6 8.09 7.55 10.6 11.6 7.33 6.38 5.61 9.71 6.88 7.34 12.4 7.73 3.31 10.3 2.07 3.4 7.97 8.04 9.95 9.5 9.18 12.3 9.07 5.12 5.22 11.4 9.68 10.6 9.7 2.82 9.61 8.89 11 7.85 11 13.3 9.42 7.95 9.32 8.2 12 9.34 11.3 12.2 9.05 11.3 4.06 11.5 7.26 10.2
+TCGA-4K-AA1I-01 5.53 8.62 9.16 8.22 6.89 9.52 2.42 8.54 7.9 3.01 4.7 8.73 5.94 2.56 7.94 9.17 10.4 9.94 8.49 8.75 8.39 10.6 9.54 1.39 9.92 7.43 5.27 9.28 4.53 6.57 5.93 4.17 1.51 1.66 4.36 0 1.06 7.04 2.09 6.21 5.18 2.56 6.65 1.06 4.7 3.43 0 2.8 11.4 5.05 1.39 4.97 7.17 9.58 6.84 1.89 6.78 5.2 7.3 5.99 8.27 3.5 6.69 4.54 3.43 2.09 7.13 8.58 10.9 3.9 3.97 5.57 3.19 5.51 0 4.02 4.81 4.11 3.17 0.63 3.9 6.01 4.61 5.85 5.42 1.06 6.02 2.8 3.63 1.66 7.79 3.07 6.66 4.07 3.7 4.43 3.01 1.06 2.88 2.09 0 5.42 1.89 5.77 2.42 2.7 8.22 10.9 7.31 6.01 0 4.11 8.44 6.01 6.36 1.89 2.21 4.67 4.7 3.01 7.51 8.93 0.63 2.68 1.66 9.01 1.06 0.63 1.66 7.79 3.96 2.56 4.36 7.54 1.66 2.68 4.92 1.06 3.42 8.65 0.98 10.7 0.63 2.56 5.09 11.6 0 10.4 0 0.63 4.61 1.06 9.69 9.82 12.2 5.09 2.09 0.68 10.4 5.56 8.11 7.04 2.42 0.63 9.9 6.58 7.59 6.73 10.8 3.63 10.2 8.17 2.56 4.32 3.75 5.65 2.8 4.5 8.56 6.14 5.88 8.62 3.81 3.92 4.95 2.1 3.43 0.63 10.1 3.81 8.53 11.3 2.92 2.91 5.79 3.59 4.06 10.3 10.1 8.14 4.4 6.14 9.36 9.91 9.58 8.32 5.8 10.8 10.8 11.2 8.85 6.85 11.8 11.5 11 9.94 7.98 10.7 5.47 11.3 11.1 9.3 11.8 10.5 11 7.13 2.26 9.76 9.86 14 10.1 5.79 9.96 8.17 10.7 6.66 11.4 3.19 10.4 2.68 8.72 7.93 11.9 12.1 12.8 12.8 12.1 12.5 5.34 10.6 9.94 1.66 5.28 10 10.6 5.79 10.5 11.4 0 12.5 3.97 9.58 11 11 9.88 10.7 6.39 10.3 11.5 10.3 8.13 9.04 8.21 10.3 12.7 7.44 1.89 12.1 10.9 10.7 12.2 9.87 11.5 7.6 9.1 8.87 10.4 8.24 11.4 10.6 8.47 5.92 7.78 6.75 10 11.3 8.85 14.1 7.89 7.98 2.09 12 8.98 8.81 10.3 11.2 2.09 10.2 7.73 8.23 13.2 9.51 6.8 9.21 8.32 11.4 10 7.51 7.84 8.88 11.8 11.8 10.3 9.3 11.2 11.2 12.2 9.33 9.7 9 10.1 8.95 12.1 9.4 11.1 10.3 9.21 8.58 8.35 7.5 12.2 6.82 10.1 8.28 8.78 13.7 8.02 9.57 11.2 11.8 10.7 3.24 8.44 0 6.71 10 8.52 10 4.64 7.58 9.69 10.1 8.9 10.4 8.64 6.69 5.88 2.8 8.19 3.63 9.55 11.9 9.98 11.9 9.91 7.33 9.32 10.9 1.66 7.82 8.64 10.7 9.38 9.96 10.6 11 5 9.03 8.4 9.28 8.06 9.63 10.2 9.57 10.6 12 10.3 4.95 7.42 5.65 8.4 8.89 10.4 10 6.85 9.4 9.2 8.99 9.62 6.06 7.29 4.79 9.17 8.45 8.45 12.2 9.48 9.67 9.34 9.88 9.36 7.02 7.71 11.9 8.68 12 9.97 9.85 4.03 9.92 9.76 13.5 6.05 9.61 7.73 7.65 8.03 9.51 7.71 9.48 11 10.4 10.4 6.22 11.4 5.62 8.13 10.8 0 10.5 3.19 7.7 8.82 11.3 9.42 8.97 8.67 11.2 4.02 5.2 8.47 9.97 10.6 1.66 11.2 9.48 3.19 6.35 4.06 7.9 6.67 8.58 9.73 6.95 10.5 10.9 9.34 10.2 8.8 7.55 14.9 11.5 1.51 8.5 11.3 12.3 13.5 9.58 9.21 5.61 6.9 9.4 9.21 7.37 11.7 8.5 8.4 9.72 9.26 10.9 10.8 14.7 8.5 7.66 6.66 10.5 5.16 10 8.21 6.09 4.43 9.41 2.09 13.5 6.61 10.7 8.6 9.98 7.39 11.5 7.45 10.6 9.87 9.88 9.74 11.1 8.92 9.35 10.9 11.6 11.1 11.3 10.3 6.92 10.7 13.4 5.99 5.88 10 10.3 9.86 11 5.16 8.91 10.3 2.91 9.11 7.53 11 9.57 9.46 10.9 13.1 9.05 9.61 11.7 8.74 9.47 8.64 8.73 8.89 9.24 9.71 3.1 10.4 1.06 10.3 8.01 10.5 10.6 9.23 11.1 9.15 9.48 8.96 12.7 11.1 10.7 10.1 2.26 13 9.4 9.72 11 12.9 12.1 11.8 10.3 8.64 9.6 11 10 1.66 10.2 7 8.79 7.98 11.1 9.69 9.31 6.09 9.5 11.3 12.9 1.66 8 10.9 9.73 8.34 13.2 8.79 11.9 9.85 11.9 9.39 11.8 12.8 5.02 2.91 10.4 9.82 8.87 10 7.44 12.3 8.75 10.2 10.3 11.2 11.6 10.8 9.79 9.78 11.1 10.9 0.63 12 8.75 10.1 9.99 10.7 8.91 9.91 9.38 4.81 7.09 9.79 5.11 6.56 10.9 12.6 7.55 10.6 6.22 9.27 4.4 10.3 10.3 13.6 13.1 13.7 12.1 10.1 9.39 10.3 9.27 11.5 8.54 2.09 9.46 9.18 11.2 9.78 9.03 10.1 13.5 2.09 7.15 13.3 9.33 10.6 9.22 8.43 9.68 13 10.3 10.1 7.68 5.64 10.8 7.94 10.3 10.2 11.6 10.3 10 11.9 9.9 10.8 8.29 7.78 9.96 10.4 9.67 12.3 12.9 8.29 11.7 11 11.5 6.57 10.3 8.28 9.31 6.08 4.51 10.4 8.88 8.87 9.87 9.35 4.2 10.1 11.2 11.2 9.15 8.87 11.1 11.4 10.3 6.12 2.91 9.55 11 6.74 7.51 7.15 7.02 9.85 9.18 11.1 8.13 6.01 3.27 9.06 9.05 9.82 7.6 9.22 9.8 8.15 1.06 3.43 13.9 11.2 2.42 9.09 8.27 7.05 10.1 11 8.33 6.47 9.32 14.1 7.74 9.54 11.7 9.67 11.6 13.1 8.85 11.6 7.52 8.98 7.74 11.1 5.96 7.48 5 4.63 10 6.46 9.78 0.63 8.73 9.18 3.92 4.11 13 13.6 8.19 4.92 10 10.4 5.51 11.2 9.76 11.6 10.6 9.92 10.7 7.42 9.66 11 7.61 9.18 12.5 8.46 7.78 10.5 8.66 9.33 8.85 11.6 9.39 9.86 9.77 5.73 9.35 11.2 8.26 1.06 5.86 12.4 9.24 2.8 2.68 7.94 10.2 13 7.46 6.75 3.35 10.2 2.42 4.36 7.85 8.94 6.15 7 8.37 8.53 1.66 1.06 0.63 12.2 10.8 5.3 11.9 7.47 9.36 6.34 11 9.13 5.09 9.68 3.97 6.15 10.2 10.4 11.8 10.1 10.9 9.58 6.65 5.16 3.57 11.1 0 2.26 9.26 10.8 1.66 4.7 11.2 3.63 9.27 10.7 5.11 1.89 9.35 9.3 10.4 9.61 3.63 8.7 10.7 6.31 11 8.69 10.8 9.64 11.1 9.59 1.06 7.16 2.91 12.2 10.3 10.9 0 9.91 9.73 12.2 10.3 11.5 8.29 9.92 10.6 10.1 8.86 1.39 12.2 2.68 11.4 4.6 11 10.7 8.56 4.15 9.51 11.6 11.2 11.4 10.1 9.74 11.6 9.69 11.7 10.7 9.62 8.4 10.3 12.1 10.8 11.7 11.7 12.2 6.8 13 10.7 7.5 5.92 10.6 9.75 12.1 12.2 10.8 6.27 10.4 9.79 10.2 10.8 8 9.73 12.1 5.67 12.7 10.9 11.1 11.5 6.36 4.5 12.9 5.95 9.81 6.43 9.78 9.8 6.23 10.7 11.3 8.37 3.37 2.42 9.02 10.3 6.68 11.7 6.81 10.2 8.73 8.9 9.12 8.43 9.48 10.6 9.35 5.88 8.76 6.8 5.56 12.3 10 8.13 11 8.07 5.74 9.84 13.8 7.85 6.09 8.92 2.42 9.48 12.4 10.7 11.5 11.2 11.4 10.2 11 10.5 11.5 10.1 7.53 2.8 9.66 11.1 9.37 10.5 8.73 5.59 11.6 9.86 9.83 10.4 5.36 3.5 9.99 10.7 12.8 7.39 3.75 11.2 11 6.31 4.6 7.5 4.64 5.9 9.48 8.95 8.65 12.6 8.23 10.4 11.1 9.68 3.01 9.8 9.12 9.72 10.8 8.49 10.9 10.8 10.2 10.5 9.49 7.4 10.4 5.61 8.83 10.6 10.1 7.32 10.6 3.43 8.67 7.71 9.16 2.68 10.7 9.39 6.78 12.3 8.66 12.3 6.12 7.6 8.57 8.14 1.39 7.52 12.9 8.6 6.67 7.54 4.81 7.71 8.8 8.08 7.61 13.4 10.7 9.78 6.82 10.2 10.5 9.26 11.6 11.2 11.4 8.23 6.03 11.6 7.44 5.26 12.6 9.88 10.8 8.28 11.5 11 9.44 9.32 10.3 7.2 9.2 4.4 11.9 3.27 8.16 10.4 7.96 8.94 11 10.1 12.9 8.81 8.58 10.7 7.75 5.97 8.58 9.76 7.92 11.4 9.62 9.59 11.1 9.76 2.56 8.04 7.66 11 5.59 14.2 10.8 1.66 5.61 9.01 8.61 12.1 8.14 9.96 9.39 10.1 8.84 6.61 10.4 9.75 7.48 9.59 9.63 10.1 8.88 7.02 5.82 4.43 6.57 5.91 8.58 8.57 10.7 3.35 1.89 10.3 10.4 7.22 9.46 9.08 8.21 7.01 11.1 4.84 12 7.09 9.18 9.1 7.71 8.46 11 9.63 8.68 6.77 7.2 5.14 7.15 12.2 9.92 8.08 8.43 4.4 10.9 9.1 10.2 8.55 8.43 3.81 8.67 2.26 9.99 9.11 9.23 6.99 9.04 9.04 9.05 9.67 11.9 9.69 8.73 9.11 10.3 9.92 8.67 8.59 10.6 3.1 9.22 7.97 10.4 10.5 9.08 6.89 11.8 6.77 11.9 8.83 4.4 10.3 7.02 2.09 9.21 10.1 0 9.75 9.97 9.92 10.5 3.69 7.96 9.89 11.6 10.9 7.13 8.24 7.64 5.82 9.36 10.4 4.54 13.1 10.6 11.2 9.34 12.9 9.13 12 12.1 9.07 9.61 9.77 2.91 11 9.34 10.4 10.8 9.21 10.1 6.02 6.8 7.54 9.74 8.16 5.88 7.19 8.22 3.57 5.71 7.84 6.65 7.83 8.9 9.99 8.23 9.84 6.4 10.9 7.57 9.85 5.02 7.65 9.22 1.66 5.11 11.7 5.07 3.1 3.97 5.86 9.94 0.75 8.11 7.47 5.41 6.8 0 0 6.53 5.96 6.87 9.01 9.33 7.28 8.68 0 8.84 6.32 3.63 11.1 7.07 8.45 9.34 10.1 3.27 10.8 4.73 5.95 10.4 3.27 6.09 6.63 7.53 8.98 0.63 6.75 5.34 6.8 6.49 10.8 7.39 8.95 9.15 4.77 9.22 8.49 7.79 5.67 7.36 10.1 10.4 6.87 9.01 7.69 3.1 3.92 5.95 8.17 2.91 6.53 11.8 8.6 9.21 7.93 10.2 8.91 8.52 3.43 7.8 8.74 7.56 7.74 3.35 11.2 10.7 9.8 6.66 3.43 5.79 6.92 10.7 7.85 10.4 8.57 11.3 6.33 8.17 6.93 9.86 11.9 5.22 5.73 8.53 8.26 11.9 12.5 5.61 9.14 9.8 11.1 11 8.19 8.4 7.83 6.3 12.1 3.1 4.92 6.16 4.47 8.44 8.22 9.85 7.01 10.5 7.17 3.92 5.07 7.26 8.15 5.57 8.07 9.45 5.65 6.88 9 1.06 1.39 7.75 5.92 9.45 8.34 8.13 9.83 7.06 8.5 9.27 10.8 7.89 10.5 9.59 0 7.08 4.78 8.58 9.46 9.84 7.93 7.21 8.41 0.63 9.92 4.4 5.86 0.63 5.65 2.09 10.7 5.16 5.22 7.1 6.57 1.81 10.3 1.89 2.09 8.74 9.43 5.52 9.01 9.47 1.06 4.73 8.43 7.23 10 9.39 2.56 6.53 6 6.83 3.57 7.71 8.85 11.1 9.17 8.25 9.92 8.95 0.63 8.66 3.69 6.26 1.89 9.66 7.89 2.56 11.6 8.38 2.68 9.27 12.9 8.39 10.4 1.06 3.97 3.35 9.95 9.35 6.55 10.4 11.5 1.66 6.61 9.81 4.67 7.59 9.94 7.69 9.51 0 6.34 0.63 8.98 2.91 9.64 9.15 9.16 5.87 8.66 10.5 6.54 2.68 5.8 10.4 6.73 8.99 6.93 8.8 9.43 7.14 9.24 11.1 9.09 8.24 10.7 12.1 9.11 1.66 3.81 8.72 8.36 1.39 10.2 10.5 8.6 9.89 10.7 4.87 8.43 9.97 10.7 12.4 10.8 9.72 5.95 1.06 5.79 8.25 8.78 2.09 2.8 9.81 7.61 9.18 9.82 4.15 8.29 11.6 2.42 2.8 8.45 11.9 9.46 6.01 9.19 7.86 7.63 13.3 10.8 9.42 9.19 3.75 4.89 10.9 9.79 7.02 8.68 10.1 0.63 1.06 0.63 7.26 5.92 5.54 4.73 7.08 5.88 9.74 6.95 8.27 3.57 9.83 9.2 3.69 11.6 11.4 9.42 3.35 7.19 8.62 5.94 10 9.7 8.73 8.92 4.4 10.7 4.28 9.98 3.27 8.54 7.42 9.18 7.7 6.92 8.36 10.3 7.28 7.89 10.3 7.6 7.46 5.91 8.95 5 4.47 9.08 8.81 3.81 7.65 5.25 9.97 2.09 10.6 6.9 6.3 2.09 5.94 7.95 6.88 5.44 1.66 8.15 11 6 7.49 7.54 8.5 8.23 10.2 10 8.59 11 8.88 7.27 11.2 10.2 4.7 5.38 8.75 9.37 5.51 6.61 2.26 8.52 10.3 9.49 5.04 1.89 2.09 7.51 0.63 6.14 9.38 7.5 11 7.17 1.06 8.41 4.43 10.3 10 7.8 5.91 6.25 7.21 4.47 13.7 8.63 7.16 3.67 8.05 5.73 8.23 8.91 2.09 7.66 4.11 7.52 10.9 1.89 9.54 9.36 2.8 8.91 6.39 6.28 4.97 7.52 7.85 6.58 7.94 6.26 10.5 1.06 2.42 8.71 4.87 2.56 6.22 6.19 7.36 6.75 9.63 10.8 8.83 5.49 10.7 10.2 5.8 11.3 4.15 8.91 7.92 6.9 10.1 7.01 5.51 8.84 8.04 12.1 9.09 5.3 10.1 6.12 6.66 7.84 10.4 5.7 10.9 8.89 7.6 8.04 4.57 3.81 3.57 3.69 0 5.56 8.4 1.89 4.43 0 3.1 8.49 8.21 1.66 9.24 4.32 3.57 9.61 9.42 6.84 7.62 6.72 1.06 1.39 10.2 3.57 5.34 4.4 9.08 13.8 5.99 7.41 5.45 13.1 10.8 9.76 0 2.68 8.24 3.5 11.3 6.82 8.25 9.86 13.5 5.28 5.7 13.4 2.26 2.26 6.69 11.1 10 6.52 9.7 2.91 9.65 7.08 8.58 8.72 13.4 3.5 7.74 5.26 2.68 4.2 5.24 6.5 7.8 10.3 8.82 4.36 8.2 2.8 2.26 11.4 8.42 10.6 9.49 8.69 10.3 4.06 5.16 12.5 9.1 12.8 9.24 6.94 12.6 8.94 4.73 9.18 7.78 6.4 3.1 7.91 8.79 8.29 9.09 7.23 9.66 8.98 7.32 6.86 6.13 1.39 7.29 7.88 6.14 7.24 1.39 3.86 7.53 10.9 3.86 6.64 5.18 3.1 7 7.81 6.08 6.17 4.89 3.57 6.56 9.33 7.86 2.42 8.78 3.5 5.28 9.91 10.6 4.76 9.61 7.61 6.15 3.97 11.8 3.81 11.3 5.77 7.78 8.26 8.74 2.68 7.91 2.91 2.09 8.56 2.8 5.99 8.49 1.66 9.86 12.6 7.85 5.77 8.98 11.6 2.8 7.14 9.09 7.4 10.4 9.47 7.05 0.63 9.61 9.63 0 8.62 5.65 1.06 8.36 7.51 8.89 4.95 8.33 9.75 0.63 3.6 6.76 7.96 8.67 7.99 4.02 4.02 2.56 8.49 8.53 6.86 13 6.99 7.35 7.31 7.73 11.5 2.91 9.23 2.26 6.75 6.98 2.09 7.6 7.38 2.8 9.8 6.4 9.55 10.1 7.88 11.8 9.23 6.05 1.66 7.97 5.95 12.1 3.81 6.2 5.88 9.68 10.3 9.36 5.07 7.3 8.59 6.46 9.03 5.18 7.55 11.7 8.69 2.42 7.04 8.2 5.07 7.63 11.3 5.37 10.9 9.03 8.58 11.6 10.7 9.36 8.73 5.76 5.9 9.1 7.4 0 6.47 7.3 9.18 2.09 10.2 6.5 3.81 2.09 5.7 7.62 7.65 1.39 10.1 6.27 1.39 8.18 0 3.01 7.07 3.57 5.76 9.3 9.64 4.27 10.3 5.42 7.95 7.55 8.98 8.32 10.4 10.1 8.17 9.59 7.96 8.13 8.09 5.94 5.34 9.01 1.89 7.49 12.4 5.28 6.61 10.3 2.42 8.19 4.67 5.18 6.72 4.15 6.58 2.68 8.4 8.74 6.67 2.56 4.95 10 8.78 6.83 7.01 11.6 8.57 2.91 10.3 11.7 8.31 3.35 8.43 7.78 4.64 6.53 4.43 8.75 7.74 11.5 9.97 8.27 5.22 1.66 9.98 10.7 5.57 11.8 11.7 5.4 7.99 2.56 9.88 9.62 8.87 3.19 10.7 8.54 7.54 5.47 7.74 10.3 6.28 2.91 8.65 8.47 7.42 1.06 6.52 8.18 3.35 1.06 8.31 4.81 4.5 5.7 8.48 6.94 5.77 6.37 7.56 8.28 5.82 4.02 10.3 7.12 9.95 7.98 1.06 10.5 9.97 9.01 8.79 10.1 4.75 8.71 6.46 2.8 5.11 8.33 11.1 3.69 9.75 4.92 10.6 7.87 7.97 5.26 3.43 0 13.2 8.22 6.67 1.39 5.2 2.56 2.8 4.32 8.07 6.97 8.98 1.66 9.04 10.9 6.43 12.8 8.58 10 10.8 6.62 4.47 11 12.7 9.15 9.3 8.06 11.1 3.35 3.1 7.17 6.51 6.21 9.07 8.51 5.09 7.64 9.32 10.5 6.27 0 0.63 10.4 8.93 10.7 9.85 8.8 8.01 6.14 3.1 9.01 7.59 6.54 2.42 4.89 11.1 7.96 7.5 8.75 9.02 5 0.63 8.36 3.57 12.6 2.09 7.35 4.07 7.72 6.41 9.51 4.4 8.25 7.14 12.6 8.76 7.55 11.4 1.89 4.95 6.65 11.9 1.66 7.39 12.2 6.07 8.59 6.94 6.48 10.6 4.97 8.04 8.19 8.86 8.82 10.4 9.02 3.19 8.73 4.82 1.06 8.4 10 4.15 9.8 3.43 1.39 11.9 9.75 7.28 9.64 2.68 6.18 8.91 10.6 9.33 3.97 9.01 1.66 4.81 1.66 6.27 0.63 8.36 7.13 6.69 1.39 3.35 10.8 6.89 7.08 3.97 3.01 2.56 8.14 7.58 10.1 9.1 6.39 2.68 9.09 0 3.63 7.66 3.35 0 7.96 3.01 3.57 7.11 1.66 8.08 6.45 9.55 4.06 9.52 9.69 8.09 9.6 7.02 8.68 7.33 5.82 12.1 2.09 10.4 6.38 8.77 9.88 6.36 9.02 1.89 0 1.39 5.04 5.32 6.33 7.5 5.28 12.1 6.37 5.84 9.06 6.3 9.7 2.8 7.43 8.1 8.19 8.51 9.96 3.19 8.13 1.39 4.97 10.2 6.84 7.44 6.2 5.45 6.33 4.76 9.62 5.14 8.84 7.15 7.2 9.15 6.88 6.39 7.2 6.51 9.29 8.17 3.75 6.89 6.34 6.87 7.98 4.64 8.37 9.65 8.63 8.69 8.86 6.51 3.01 6.72 8.65 7.11 1.39 7.38 9.28 3.27 7.74 8.61 8.94 3.27 8.57 9.45 6.66 5.38 7.61 4.36 0.63 10.8 6.14 1.66 5.36 9.22 10.2 6.82 3.1 9.27 5.24 4.4 8.52 1.39 9.07 9.61 1.94 9.16 7.61 4.06 3.43 7.74 4.2 4.36 8.19 5.87 9.03 7.69 3.19 1.39 1.89 6.1 3.1 5 11.4 11.9 8.49 10.1 4.67 6.13 12 9.04 10.3 0.63 7.62 12.1 2.8 5.34 9.23 0.63 1.66 2.91 1.66 4.15 2.56 9 4.24 2.42 8.35 11.4 7.8 7.18 10.8 2.35 2.8 7.46 8.28 9.76 3.91 7.68 3.43 9.96 8.8 9.03 4.15 4.26 5.42 9.05 8.46 2.26 3.86 8.43 5.45 7.75 6.72 8.97 5.88 14.9 10.4 14.6 7.6 4.24 1.06 4.47 9.6 7.87 7.11 0.63 1.89 4.43 7.82 8.16 10.6 12.3 7.24 3.63 8.56 7.18 1.66 3 9.97 5.52 7.98 2.68 6.92 12 0.63 4.92 3.19 11.2 8.92 5.35 8.19 0.63 6.34 7.84 8.19 11 8.83 3.63 4.02 2.42 5.54 5.02 10.5 6.92 8.82 10.8 7.9 9.53 7.63 13 7.98 9.84 11.8 0 3.5 8.76 8.06 4.67 10.4 7.71 5.51 6.05 13.3 3.19 8.8 10.3 9.73 7.84 5.52 6.68 0.63 6.52 8.72 9.18 9.09 3.81 8.7 4.11 8.54 3.35 9.13 5.52 6.54 8.65 8.21 4.24 5.64 8.8 7.97 0.63 8.09 10.1 9.08 8.09 9.13 10 6.69 7.37 10.3 8.81 4.57 11.6 10.3 8.37 5.82 12.2 6.68 3.43 1.06 4.67 10.6 7.91 5.97 2.26 3.19 0 10.2 5.51 10.6 8.26 6.82 7.61 5.71 8.93 8.44 4.2 4.43 4.32 8.53 9.53 5.59 3.43 8.72 5.72 6.84 8.05 7.2 0 9.4 8.15 4.07 3.63 9.64 1.06 9.88 3.97 6.8 9.32 9.08 0.63 4.24 4.47 9.17 7.85 6.6 10.4 1.39 5.09 11.7 3.19 3.57 9.97 6.08 5.54 8.2 2.42 9.72 7.94 9.23 8.27 8.79 5.2 0.63 7.86 6.6 9.69 6.3 8.04 1.06 5.09 9.4 2.68 4.64 2.41 4.57 9.32 4.02 11.6 2.42 1.39 2.56 6.53 5.07 4.81 1.89 5.64 1.39 7.91 1.89 6.57 4.67 9.52 5.97 9.82 2.42 5.26 7.07 1.89 7.06 9.16 6.06 8.71 4.02 4.32 8.14 1.06 7.94 5.9 1.06 2.42 5 3.43 5.32 6.34 3.27 1.89 9.79 7.85 9.15 9.35 10.7 1.06 0.63 10.4 6.71 8.96 10.4 4.95 0 11.7 10.8 0.63 9.98 4.73 4.11 3.92 1.06 11 6.21 7.67 5.32 9.61 8.85 1.06 6.9 10.9 8.78 10 8.63 9.51 4.7 4.95 4.57 7.5 8.31 10.7 10.4 5.52 8.44 5.44 7.97 10.8 2.42 3.81 5.45 10.1 3.81 8.46 6.72 2.42 11 2.8 6.31 11.4 7.69 3.92 9.78 1.06 5.34 8.53 3.63 6.13 12.1 9.63 2.09 10.9 7.67 2.09 8.98 6.25 11 5.68 5.18 2.68 6.63 3.1 3.5 9.58 6.4 8.07 11.2 8 8.89 6.65 9.07 7.81 8.96 5.41 8.57 9.56 10.1 5 0 12.1 5.94 8.65 8.24 7.55 6.02 7.13 7.71 6.92 7.44 8.3 7.58 7.36 5.36 3.43 9.48 9.24 9.66 7.35 6.72 8.96 1.89 10.6 5.97 10.4 8.6 12 1.06 6.97 4.54 0.63 9.01 8.02 9.23 8.88 12.6 11.3 5.61 7.53 4.7 13.2 0.63 8.74 1.39 3.57 0.63 3.1 2.56 2.8 4.5 4.06 5.45 0.63 7.37 3.86 8.79 11.3 12.4 8.12 3.75 6.1 5.54 9.23 6.35 11.7 8.64 12.7 13.9 4.57 5.28 11.7 6.92 3.92 9.49 4.81 10.7 3.75 8.2 11.9 12.8 4.28 9.31 10.9 6.47 1.06 8.85 6.53 11.1 10.2 7.73 10.4 8.02 7.3 7.65 2.8 5.32 9.37 6.84 9.61 3.43 10.2 1.66 6.31 6.13 6.22 7.03 4.06 9.47 5.57 6.65 7.05 8.63 6.26 9.06 3.43 8.01 8.49 1.06 6.33 10.7 6.19 4.06 1.89 8.24 8.07 6.42 7.37 6.94 2.68 6.93 7.35 8.5 9.01 5.87 6.67 7.51 5.79 3.75 1.06 5.52 7.45 1.89 1.89 7.02 9.72 4.15 9.7 9.11 6.01 9.68 7.93 4.24 1.66 4.02 3.69 11.9 8.55 8.63 9.83 5.7 10.8 1.39 10.6 8.25 0 6.67 4.06 9.36 11.7 5.57 11 5.61 10 8.35 10.4 8.3 12.7 8.51 9.53 7.93 10.2 12.2 8.49 12.1 10.4 9.94 2.09 4.47 11.4 9.03 10.8 9.14 3.63 11.4 8.15 11.2 3.1 1.66 5.38 2.56 8.83 11 6.03 6.51 6.92 8.76 8.24 8.61 2.8 5.9 6.96 7.92 6.18 8.06 3.97 9.84 10.7 13.2 10.3 3.86 10.5 10.3 11.9 11.1 6.92 10.4 9.59 8.93 10.7 6.09 9.37 8.15 8.98 8.62 5.62 10.1 10.1 8.52 9 11.8 10.2 0 9.42 4.06 0.63 10.3 9.02 7.68 2.56 12.3 8.94 8.15 9.51 4.43 9.85 11.7 8.21 4.64 9.31 6.62 7.12 9.66 5.2 8.8 8.84 10.2 6.72 9.81 9.48 9.36 2.42 4.89 5.04 9.95 9.83 10.3 11.6 11.1 9.65 9.53 8.79 9.09 9.6 11.4 7.57 9.06 10.1 6.31 8.58 11.2 0 12.2 11.1 11.1 7.61 9.39 6.46 10.8 9.32 7.02 8.26 5.52 6.12 12.7 6.93 12.1 10.4 16.9 3.35 3.63 10.3 10.6 6.33 6.99 11 13.6 12.8 14 17 8.78 6.89 8.03 8.73 4.57 8.98 7.45 7.29 2.26 7.73 7.47 7.05 8.95 8.57 5.2 9.3 7.69 7.04 8.52 9.16 7.12 4.92 3.63 7.28 2.42 7.63 3.81 6.7 9.37 10.7 7.21 11.2 8.76 5.65 9.67 9.84 8.21 11 5.49 9.61 10.8 10.2 0.63 10.9 6.61 6.5 4.28 12 4.47 6.67 7.23 5.24 4.4 5 2.06 11.6 6.16 5.04 8.19 8.16 8.83 14.8 7.54 8.67 7.46 3.5 9.06 10.1 12.5 7.6 13.1 8.95 9.89 12.8 13.1 14.2 12.7 13.3 0.63 10.3 0 9.91 7.43 6.72 10.7 2.56 2.8 1.06 7.97 0 10.1 7.74 11.9 2.91 6.97 8.73 8.17 8.34 6.88 9.48 7.06 7.59 7.13 9.15 9.19 0 8.36 13.6 9.32 9.61 0 3.5 10.4 10.8 5.87 5.95 10.7 0.63 2.42 3.81 3.01 10.9 10.4 7.85 9.88 7.9 1.56 7.49 8.79 8.06 2.56 9.6 3.43 1.39 1.66 9.79 7.34 6.06 5.87 10.1 8.5 7.81 5.57 10.6 7.24 2.02 7.36 9.44 5.95 6.97 6.72 7.23 9 4.06 10 8.36 4.02 9.89 10.4 6.61 7.48 9.57 10.1 7.59 10.1 6.01 8.63 6.51 5.9 9.07 8.94 8.51 7.41 8.96 10.2 4.2 7.48 4.4 9.85 4.67 9.15 5.97 4.79 5.95 6.9 10.9 6.97 1.89 9.17 8.54 8.69 0 9.75 8.09 4.02 4.97 8.18 4.4 7.19 8.01 7.94 7.51 10.2 7.85 4.92 5.34 6.36 6.43 4.57 11.2 7.53 2.56 14.8 6.62 6.78 3.69 2.68 1.89 9.9 6.65 6.53 6.17 11 1.56 7.61 11.1 8.48 7.71 15.4 10.4 6.98 4.4 6.96 8.6 8.93 8.19 7.57 8.63 9.22 8.11 11.9 9.39 10.9 8 10.7 8.87 7.5 11 8.48 12.2 4.87 7.06 10.6 12.4 7.26 2.42 1.89 9.94 5.34 7.8 1.66 10.2 8.97 0.63 11.1 13.2 7.66 9.43 7.88 6.87 8.65 8.37 8.21 8.89 9.82 2.42 7.31 8.41 11.6 7.42 10.4 9.58 3.43 8.56 9.61 5.16 1.66 10.3 8.71 8.78 0 11.5 3.27 9.29 11 7.74 10.2 8.78 9.66 7.12 11.6 10.5 7.3 12.9 9.7 6.01 7.67 10.5 5.24 9.26 4.24 11.2 9.51 10.1 11.3 8.19 11.9 9.69 10.4 4.24 9.11 12.3 11.3 0.63 9.53 7.7 6.23 9.4 10.4 7.54 1.39 13.3 9.58 9.85 4.43 7.66 11.1 2.56 4.11 8.35 7.46 9.46 9.32 2.91 10.2 8.79 10.4 7.07 7.68 6.83 1.89 7.86 4.11 9.7 4.32 8.44 7.79 3.69 0 10.6 8.43 10.3 10.5 7.98 11.2 9.42 2.42 9.71 10 10.9 8.02 10.6 11.9 6.08 8.06 9.73 8.53 12.1 11.2 5 11.6 8.3 5.2 3.86 12.4 9.39 9.94 2.42 4.43 8.75 3.43 3.93 8.37 3.27 8.26 13.6 9.13 7.9 8.74 6.68 10.9 7.61 5.24 7.33 6.94 8.65 7.24 9.27 5.26 9.26 9.11 3.01 12.2 10.3 8.09 9.13 10.2 6.66 10.7 4.02 7.94 8.91 6.05 4.43 2.09 7.72 9.26 4.4 2.91 12.5 1.66 7.81 10.7 8.7 3.19 2.91 3.35 3.75 3.01 2.09 7.37 0.63 11.2 6.05 7.16 2.68 7.95 8.27 5.88 9.26 6.59 9.32 6.28 12.2 7.6 8.69 7.42 8.5 7.54 10.3 3.86 8.71 7.9 7.78 2.8 11.1 8.54 5.97 9.67 9.16 8.96 8.94 7.85 9.47 4.92 9.4 7.01 8.47 6.33 7.28 8.7 10.3 6.87 2.26 4.64 2.8 4.32 9.29 6.38 4.47 9.8 7.48 10.4 2.68 8.89 10.6 2.26 9.64 5 9.27 3.59 9 4.11 5 10.3 8.42 7.29 9.32 9.72 8.38 7.84 4.24 9.54 1.66 7.79 9.95 8.79 6.67 11.1 6.27 9.76 9.98 8.34 4.67 1.39 9.06 7.53 7.55 6.53 5.45 9.04 12 7.33 10.9 6.32 3.01 7.26 8.37 3.96 7.59 10.3 8.02 4.89 0.63 3.01 0 0 4.95 9.89 0 6.65 5.4 4.02 2.42 4.11 6.8 5.71 6.33 10.7 9.49 8.54 4.28 9.23 8.95 11.3 5 9.69 6.15 9.73 12.3 6.3 5.97 0 6.79 3.01 6.92 3.63 8.33 2.26 13.8 12 11.8 0.63 11.2 9.51 10.2 10.1 4.47 7.9 7.15 9.97 11.7 8.64 9.82 9.29 12.1 8.95 7.38 0 11.1 7.87 7.78 9.22 10.6 7.15 11.6 1.66 11.4 9.61 9.38 9.48 6.56 11.2 11.9 11.4 5.45 7.58 8.91 8.78 9.78 8.06 11.8 11 8.63 6.5 4.43 8.29 10.5 9.13 9.6 7.08 9.48 9.03 8.71 7.09 9.98 8.54 11.2 9.88 9.66 9.85 10.2 10.8 2.09 10.2 8.34 10.8 11.7 3.57 12.1 6.91 6.4 7.71 11.5 11.1 10.7 8.87 13 10.1 7 8.61 11.8 8.62 8.39 9.84 7.89 10.2 10.8 10.2 3.27 11.5 10 2.26 8.8 9.27 7.42 0.63 9.57 6.12 9.92 8.42 10.9 9.31 9.73 12.2 10 9.53 9.48 11.6 8.93 6.4 11.3 0 9.78 11.7 9.24 8.22 7.14 5.87 9.73 8.49 10.7 10.8 11.8 9.81 7.37 9.49 8.72 9.27 11.6 11.4 3.43 8.58 13 9.83 10.4 5.11 8.34 8.32 5.77 4.47 2.56 11.6 10.3 4.24 11.8 7.54 2.8 11.5 6.75 9.04 6.46 12.1 12.8 1.06 4.92 1.06 10.5 11.9 10.6 9.62 8.29 8.15 3.63 6.78 11.6 9.82 10.2 7.99 9.47 4.02 7.04 0.63 9.91 9.32 11.8 9.85 11.5 9.91 12.5 6.92 13.3 9.78 8.7 6.31 7.29 6.57 11.3 10.3 9.16 10 10.7 9.22 7.45 8.95 10 8.58 10.2 11.9 9.63 10.6 7.73 9.42 9.63 11.5 11.5 11 9.45 8.66 10.3 10.5 4.79 8.11 5.91 10.4 11.2 10.9 11.3 11.4 9.96 7.04 10.7 12.1 10.7 0.63 9.23 10.6 11.1 10.6 9.28 8.97 7.79 9.61 11.8 10.7 5.22 9.24 9.81 9.08 7.18 10.8 8.42 9.46 9.77 10.2 9.88 7.95 7.51 9.29 12.2 8.66 4.79 10.8 4.87 10.4 10.4 4.15 8.9 9.98 9.51 7.19 8.02 9.79 11 11.6 4.33 3.1 10.2 10.9 11.2 3.35 11.4 9.77 11.8 10.5 7.92 10.9 9.93 9.26 9.37 8.25 11.5 11.8 10.8 10.7 9.07 9.17 10.4 0 9.79 9.06 0 8.03 10.3 10.7 9.87 9.34 10.9 9.05 14.4 11.1 9.24 9.3 10.5 11 10.8 9.36 11.1 11.4 8.43 12.6 9.98 7.58 9.24 10.2 9.03 11.4 10 9.48 10.2 9.83 6.68 10.2 10.4 11.2 10.8 10.1 9.51 10.2 11.4 11.5 11.3 10.2 12.3 7.45 12.3 11.2 10.4 11.4 9.72 9.66 6.82 10.3 12 6.84 11.2 8.4 4.7 8.33 9.46 10.2 11 10.3 11.6 12.8 11.1 4.47 11.1 10.7 6.06 10.3 8.71 12.5 13.1 10.8 8.69 7.99 8.39 9.42 10.6 7.18 7.55 10.1 9.28 6.53 2.91 7.45 8.71 10.7 9.12 7.87 9.69 11.2 6.16 10.5 8.35 10.8 10.2 4.73 8.46 9.85 8.1 8.61 10.5 11 9.02 5.96 7.8 9.44 6.55 11.8 11.1 8.26 11.4 11.1 7.41 9.12 9.14 10.6 9.25 8.56 11.5 11.8 11.3 6.52 4.43 10 4.47 7.07 7.35 8.99 9.04 5 9.53 10.7 9.57 10.6 10.1 6.23 10.7 9.55 6.22 9.62 9.99 4.24 10.5 10.4 8.87 10.4 8.59 9.62 10.6 10.6 5.07 9.18 7.91 10.3 9.95 9.6 9.62 7.64 9.85 10 12.4 7.08 10.3 9.74 10.6 8.91 10.6 8.67 8.76 10.8 10.9 3.97 9.08 11.6 10.2 11.3 9.47 8.78 13.3 11.1 11.2 11.8 10.5 9.58 9.17 10.4 10.4 7.25 10.9 7.35 8.76 8.29 9.57 7.01 12.6 9.91 11.5 10.7 8.85 8.82 9.3 9.52 10.6 9.73 11.5 9.72 11 11.6 11.6 10.2 9.35 10.2 11.5 9.46 11.7 11.7 9.97 10.2 10.1 9.55 11.1 11.6 11.2 9.46 9.14 10.4 12.8 8.61 4.11 8.91 9.86 9.68 7.25 4.97 2.56 5.97 7.27 1.06 10.3 10.9 8.33 10.3 9.52 3.19 12.7 10.1 1.06 9.17 5.47 9.64 11.6 10 6.33 9.8 13.1 12.7 7.37 8.4 7.32 2.42 6.77 7.69 5.07 10.5 10.4 8.4 5.76 10.8 11.2 11.3 8.88 10.1 9.33 11.6 10.8 10.8 4.57 9.69 11.6 7.85 10.2 4.2 8.87 6.99 5.77 7.24 11.5 8.68 7.4 10.6 2.09 10.8 9.23 7.49 7.38 10.3 10.1 11.7 10.3 11.3 9.18 9.91 9.88 10.7 10.7 0.63 2.09 14.8 10.3 11.2 13.5 11.5 9.79 9.33 4.89 8.04 9.45 8.01 13.8 9.14 10.4 7.95 2.8 4.92 4.97 3.19 9.92 2.09 9.88 1.06 7.85 7.36 10.2 8.81 10.5 4.79 6.46 4.7 8.25 8.14 8.82 11.1 9.77 9.35 11.1 1.89 3.45 9.68 3.92 7.62 10.1 3.81 8.18 6.54 6.48 12.4 10.5 9.27 3.35 11.1 10.2 9.65 9.45 10.3 9.87 7.72 9.62 9.03 10 9.89 7.31 9.08 10.4 7.02 4.79 11.8 6.46 10 13.3 9.89 12.6 10.6 9.52 11.2 8.27 10.2 9.76 3.75 1.06 5.26 2.26 10.4 6.92 11.2 9.31 5.51 8.92 9.34 10.2 7.23 10.9 10.9 13.2 9.33 9.29 9.33 1.39 11.2 5.11 8.99 9.16 9.1 9.17 9.09 10.3 9.28 5.26 10.1 6.53 7.55 8.69 12.7 11.2 10.5 10.5 4.28 9.13 11.2 10.7 9.95 6.57 8.08 9.39 3.27 2.8 7.47 3.43 12.3 10.4 7.7 10.4 10.3 11.3 10.4 3.1 6.98 8.82 8.48 9.07 8.91 10 9.51 9.95 6.67 7.9 10.8 7.85 8.13 5.92 12.3 11.2 2.85 4.06 3.27 3.61 7.83 6.78 6.09 3.92 10.1 2.91 3.43 1.66 7.04 9.02 6.78 7.92 6.49 8.89 7.45 4.73 8.86 12 10.5 8.28 13.7 6.44 6.49 14.8 8.28 10.9 7.52 16 11.2 9.58 13 6.37 4.43 3.01 10.3 0 1.89 10.2 4.32 7.16 10.2 6.77 10.1 10.3 1.06 4.4 8.67 8.85 10.7 4.43 3.63 8.99 8.98 11.2 11 6.22 9.44 6.36 8.02 8.68 6.99 4.67 12.6 8.95 4.47 11.3 4.06 7.68 9.36 7.02 6.92 0.63 10.9 11.3 9.69 8.03 2.91 5.86 6.42 10.2 4.02 9.85 10.7 1.66 1.39 8.23 3.43 4.54 8.86 8.06 5.95 5.27 6.57 0.63 5.74 7.61 6.48 9.38 10.2 10.3 5 7.47 13.7 3.97 2.09 10.9 1.89 8.63 8.48 8.39 8.32 6.72 5.69 6.36 2.68 0.63 4.02 9.68 7.92 2.56 7.81 2.26 9.28 0 9.54 4.89 5.68 6.08 1.06 8.58 0 7.16 3.5 5.44 6.15 6.69 6.72 6.53 7.45 8.05 8.57 9.83 8.43 1.06 2.56 3.57 9.59 8.29 1.39 9.79 3.1 3.96 3.57 7.93 9.48 7.85 4.95 7.21 7.98 0 7.89 6.82 5.91 1.39 8.64 3.35 3.43 0.63 8.85 1.89 6.14 4.47 1.06 6.01 4.54 2.8 6.36 1.39 6.35 11.2 6.84 9.53 4.73 5.14 5.18 2.09 8.89 4.97 2.68 8.27 1.66 9.78 8.02 5.45 6.46 4.43 4.5 11.6 8.65 8.54 2.42 9.12 11.5 9.22 8.09 9.1 7.51 2.09 8.73 4.11 10.7 11 11.3 2.09 9.44 8.14 10.4 7.23 11.2 8.96 9.49 8.43 6.72 1.06 11.2 11.2 9.16 6.53 9.33 0.63 10.1 11 9.71 4.6 9.25 8.44 11.3 9.21 8.74 0 11.1 8.45 5.24 11 10.1 6.15 8.24 10.9 9.23 2.09 11.5 1.06 10.7 8.57 9.29 6.4 9.7 9.38 11.2 7.23 9.65 7.63 8.57 6.85 8.59 9.28 11.1 4.32 10.1 0 7.02 3.97 7.96 10.7 10.2 9.81 14.6 9.85 9.99 3.1 9.8 11.4 8.1 7.14 10.9 9.22 8.29 10.2 10.8 7.73 9.68 7.82 10.7 10.2 8 3.1 10.5 9.79 8.17 10.2 9.57 9.97 8.52 4.7 11 5 7.82 11.1 9.17 8.26 9.76 9.32 5.82 7.3 8.35 10.3 11.8 0 6.1 8.59 8.35 3.19 2.91 6.07 10.8 10.5 6.74 8.11 10.2 2.26 9.69 2.26 2.42 3.63 6.22 11.3 10.3 11.2 7.75 9.74 6.4 9.57 12.2 10.3 9.69 11.8 8.24 5.59 11.1 10.1 9.83 8.27 7.25 11.7 7.63 11.2 10.7 9.11 6.01 11 10.8 8.65 16.2 9.33 9.13 7.59 7.64 8.25 10 9.23 8.66 10.3 7.62 10.6 1.66 8.95 8.11 10.2 6.45 10.2 9.25 9.93 8.91 5.2 10.6 11.2 7.58 10.9 8.91 9.02 9.17 9.7 6.52 8.36 7.72 10.7 11.3 10 10.6 11.3 7.4 10.8 6.35 8.2 3.57 8.2 11.1 11.8 8.14 6.86 8.41 8.78 9.8 10.7 4.47 8.15 7.3 7.5 8.36 1.89 9.82 5.3 8.38 8.24 1.66 10.3 3.92 8.23 10.8 9.85 11.4 10.7 9.42 9.57 7.73 9.02 12.3 8.81 11.1 3.01 7.02 6.3 10.5 10.8 9.44 10.2 8.66 10.2 4.47 11.6 9.17 11.2 11.4 3.57 10.3 9.04 11.9 11.6 10.8 9.25 9.84 8.97 9.25 10.1 11.7 12.5 10.1 2.8 8.95 8.69 7.69 9 5.32 8.54 3.86 9.56 8.61 10.8 1.39 12 12.2 9.04 10.6 9.55 3.63 11.2 11.8 9.96 6.12 11.8 8 8.32 11.4 7.41 10.7 8.16 11.6 1.89 9.94 3.92 9.78 9.85 5.59 7.74 2.68 8.74 9.33 11.6 6.36 8.53 0 7.61 5.51 7.14 10 11 6.96 5.45 7.18 7.83 7.96 1.66 9 1.06 10.4 9.88 8.61 7.9 4.15 9.28 9.08 3.1 10.2 9.1 8.5 7.38 10 8.99 6.58 7.82 8.82 9.13 9.84 10.4 11.5 7.36 10.6 10.7 7.31 9.96 7.98 9.21 7.47 8.41 6.85 8.93 8.25 12.6 2.16 11.9 9.33 12.2 9.15 8.86 4.24 9.7 6.9 7.25 10.3 10.2 9.43 9.61 10.2 11.3 8.06 2.8 9.77 10.5 8.05 9.21 11.6 7.21 8.06 10.6 7.57 8.19 9.49 10.4 11.1 9.56 9.6 8.6 9.89 8.48 11.8 5 4.76 4.15 11.2 3.5 3.45 8.2 9.75 3.01 9.31 5.82 10.5 9.39 0 9.61 3.63 8.18 2.26 11.8 12.7 7.92 2.26 7.59 6.2 7.79 7.71 7.4 10.5 0.63 8.32 7.33 1.06 8.93 7.4 10.9 4.02 9 6.35 9.55 7.54 4.67 2.09 10 9.95 5.45 4.28 8.38 0.63 11.7 8.25 9.74 6.76 6.69 3.35 3.63 8.83 8.37 10.3 3.63 5.32 7.07 9.67 5.86 7.72 10.2 16.1 11.3 9.92 9.59 7.06 10.4 10.2 3.35 4.32 10.8 6.58 8.68 8.07 7.21 10.1 8.14 7.31 10.3 8.4 7.42 10.4 5.94 7.87 0.63 8.04 9.6 9.69 9.81 12.4 12.5 5.02 0.63 7.14 8.91 9.38 11.6 3.01 8.76 9.51 10.4 9.44 6.28 6 10.2 8.38 9.7 5.11 10 4.4 8.36 1.66 5.2 9.95 9.73 1.06 1.66 9.87 9.44 11.5 11.3 9.67 9.06 6.63 4.64 9.24 7.47 4.84 7.74 3.27 7.05 10.2 3.1 10.1 3.19 6.56 7.32 11.5 3.97 7.99 8.39 8.93 10.1 0.66 6.81 9.87 5.76 7.19 9.16 11.2 2.68 9.6 1.39 7.75 9.68 5.96 11.6 9.39 11.6 8.17 7.53 7.11 10.8 7.89 2.8 5.68 1.66 4.76 9.41 8.78 10.7 2.8 8.07 10.9 2.91 3.5 8.32 8.56 7.89 8.8 5.73 8.64 7.36 11.9 10.2 9.84 9.49 8.79 9.61 9.9 10.3 11.1 8.86 6.03 2.8 10.4 10.2 2.56 4.02 7.51 11.6 6.72 8.9 9.96 8.4 4.89 2.09 9.18 10.4 5.65 7.64 8.78 10.4 2.68 7.26 2.8 9.06 12.8 5.74 8.71 12.2 4.87 10.4 9.43 12.4 9.25 7.53 13.5 11 10.6 12.7 12.2 11.2 10.3 9.67 9.11 10.6 7.01 10.4 10 9.1 8.05 6.91 8.82 8.66 9.78 8.01 5.9 7.44 10.7 11.9 9.51 2.09 10.2 8.46 9.2 11.3 5.83 9.82 9.97 7.89 7.89 9.54 12.3 9.15 7.82 13.1 1.06 12.5 7.42 9.94 11.3 8.15 10.4 8.43 5.9 13.1 10.7 6.38 8.62 9.84 13.6 1.06 4.43 12.4 11.4 4.9 1.66 4.79 10.7 6.34 1.06 7.91 7.61 6.5 10.2 5.04 0.63 12 1.89 5.85 8.96 10.3 11.4 11.3 10.6 8.93 10.8 10.2 1.89 5.61 8.45 5.26 8.43 3.27 10.2 12.1 4.6 10.1 1.89 5.36 8.89 4.76 2.56 0.63 3.97 4.97 6.43 8.18 3.92 8.01 5.68 4.64 7.84 2.09 6.32 9.69 6.62 6.32 4.93 4.57 4.15 1.66 2.68 8.84 11.5 7.53 11.1 10.3 3.5 5.73 4.7 7.12 5.22 7.3 6.27 7.21 10 7.59 8.79 6.99 9.51 4.64 7.32 9.59 5.83 6.57 8.89 7.63 9.48 6.47 10.8 2.26 8.39 6.18 4.15 3.35 6.75 6.92 5.79 0.63 10.8 6.17 6.98 6.19 9.53 3.81 9.4 4.05 4.02 4.28 4.6 8.2 3.63 4.24 1.89 9.21 2.91 6.86 3.81 3.97 9.72 8.61 8.83 5.22 1.41 9.5 5.62 6.15 6.86 9.2 4.43 4.4 3.79 10.4 5.04 5.67 1.66 4.72 9.36 8.92 9.53 4.28 5.52 5.64 2.68 4.67 7.79 7.93 0.63 2.26 7.05 9.97 10.4 7.45 0.63 8.23 8.91 3.1 3.86 8.19 5.11 7 6.43 7.02 5.01 11.6 8.41 6 5.49 1.89 8.36 8.24 0 7.01 1.66 9.1 4.43 2.42 7.62 11 9.47 7.41 6.73 8.14 0.63 0.63 0 5.94 8.21 3.5 3.92 7.8 6.13 8.01 2.09 5.8 1.66 6.54 7.46 8.58 7.51 8.76 6.61 2.42 4.95 4.95 5.82 2.56 3.5 11.3 3.27 6.99 8.11 5.82 6.72 1.39 10.9 8.13 1.06 6.77 4.64 2.09 5.16 8.53 6.51 7.04 8.25 11.8 4.73 1.89 1.39 9.78 3.92 3.86 2.09 9.95 4.6 7.42 4.73 4.85 3.75 7.92 3.78 8.52 3.35 2.68 5.76 4.32 0.63 4.7 3.19 1.89 7.77 2.8 8.97 1.06 1.39 5.51 6.86 3.19 7.29 7.92 9.66 6.41 4.6 1.66 3.35 5.82 0.63 8.35 10.7 7.74 6.6 8.8 2.68 9.13 4.2 5.96 8 6.52 8.25 4.47 9.58 9.35 0.63 5.2 8.62 7.64 4.2 5.14 8.89 0.63 9.03 3.27 7.58 8.8 11.6 8.14 9.21 5.14 3.35 3.35 6.86 7.87 0.63 6.46 4.06 3.27 5.28 7.97 8.57 10.5 3.35 7.93 1.06 9.72 0 3.92 3.69 4.28 7.04 7.15 9.3 2.91 4.57 8.56 4.47 5.11 8.66 7.47 4.73 6.77 1.06 4.97 0.63 9.95 5.15 3.57 8.91 0 3.7 10.9 0 5.38 8.02 8.18 8.25 6.47 7.98 1.06 2.26 3.19 3.97 3.5 8.18 7.6 2.09 7.01 5.28 9.19 5.76 2.8 1.39 7.34 7.74 7.32 7.56 8.56 6.53 5.24 7.51 3.86 2.7 3.19 8.57 7.59 7.97 3.86 9.94 5.02 10.9 7.51 1.89 2.68 3.69 9.69 3.43 4.79 5.11 7.86 9.36 9.41 0.63 7.81 10.8 10.8 11.6 10.8 2.68 12.6 11.4 9.89 10.9 8.51 7.27 11.7 9.41 11.9 0 4.02 9.39 8.49 8.18 10.3 8.71 9.27 11.6 13.8 8.83 9.1 10.6 0.63 9.41 4.73 9.95 0.63 7.07 5.82 10.2 10.5 11.5 9.15 9.88 8.84 7.45 8.07 8.65 10.1 8 10.8 10.8 9.27 5.09 7.83 9.6 3.35 9.34 9.65 6.01 12.2 11.1 2.26 2.68 9.58 2.09 10.7 2.42 9.76 2.68 8.9 10.6 6.92 8.88 7.5 9.54 9.65 12.1 7.83 9.11 11.4 12.1 9.24 10.1 9.63 9.57 9.73 9.89 7.62 9.97 10.9 8.78 11.2 9.96 9.27 8.55 6.76 7.42 9.08 9.06 9.04 9.8 10.1 9.69 7.77 9.84 11.4 10.3 10.3 7.6 9.56 8.2 8.35 9.72 10.7 2.42 10.3 10.9 8.88 10.7 3.19 6.02 10.5 5.16 12.2 5.83 7.43 11.9 7.01 6.38 1.66 4.06 12.9 3.63 1.89 13.6 2.68 11.2 14.7 10.7 10.1 13.1 11.3 9.39 10.2 7.64 10.1 9.73 8.82 9.93 6.96 12.8 6.09 6.41 10.1 12.7 8.46 10.6 9.85 9 10.4 11.1 9.28 9.62 8.25 7.6 9.76 11.7 13.3 11.2 9.54 1.39 11.6 11.7 7.82 9.88 10.1 1.39 10.1 7.38 3.63 9.06 10.5 6.59 8.58 10.6 11.6 10.7 4.2 10.9 1.66 3.75 7.24 4.7 8.64 6.32 10.5 8.21 7.94 3.01 6.91 12.8 9.64 8.72 0.63 8.2 10.9 11.2 8.38 3.19 9.89 11.4 10.1 11.3 11.4 11.5 10.7 8.44 11.7 1.66 11.1 7.65 11 7.97 7.53 7.56 9.21 8.26 8.21 7.58 7.15 9.82 7.64 9.28 9.15 10.4 10.8 6.91 9.12 10.4 8.34 9.54 12.5 9.82 7.99 3.1 8.71 7.91 2.56 10.3 9.04 7.43 4.32 6.2 10.8 9.86 5.88 10.1 7.96 1.06 10.2 8.93 11.5 8.2 3.01 12.8 2.56 10.5 4.59 8.46 9.6 7.62 9.05 8.63 9.94 5.79 9.73 11.6 9.76 9.46 3.86 8.94 1.39 7.88 7.66 10.6 9.14 7.76 8.4 7.05 12.9 8.9 2.62 9.59 3.63 12.3 9.46 8.31 8.27 10 10.4 10 9.97 8.09 9.85 12.7 12.1 4.24 3.1 3.5 10.4 7.2 4.37 10.3 12.4 10.6 12.9 11.9 13.3 11.9 8.51 4.81 12.2 10.9 9.81 1.39 10.8 3.1 5.26 5.88 4.92 10.7 6.72 5.91 0.63 4.74 1.39 1.89 9 1.89 12.1 10.8 11.6 11.9 11.5 11.1 11.7 5.84 11.7 13.5 8.68 10.7 11.2 11.3 10.8 10 5.76 12.8 2.09 9.1 4.97 9.34 8.75 5.42 4.79 4.36 10.7 5.09 8.88 9.61 6.78 11.4 7.58 6.15 11.4 9.34 9.22 9.81 7.92 10.2 8.75 12.9 7.75 11.3 8.3 10.2 11.6 10.3 11.5 9.32 12.1 10.7 10.6 11.1 9.37 9.08 15 15.1 14.6 11.4 11.7 11.4 10.8 7.28 14.1 13.4 3.81 12.1 10.9 11.6 9.8 15.3 12.9 10.8 9.42 10 6.21 13.8 11.6 8.78 12.2 3.2 6.3 8.36 7.77 9.3 7.4 9.21 11.9 12.5 12.1 12.2 11.8 8.85 10.7 8.99 13.2 7.35 7.81 10.8 10.1 10.8 9.3 6.08 8.3 7.1 9.28 8.64 5.34 6.06 5.56 7.66 0.63 9.21 0.63 10.1 14 8.12 14.6 12.5 14.2 13.1 12.9 12.1 11.2 12.1 13.8 0.63 13 13.9 1.66 5.76 2.56 8.2 5.91 4.36 5.18 4.11 1.06 6.39 5.07 4.43 1.89 4.81 3.75 8.58 8.47 6.66 5.92 1.66 4.06 6.82 2.42 4.79 9.51 5.04 5.71 10.1 5.34 8.81 3.19 8.99 5.84 4.81 4.54 0 9.51 10.6 4.7 5.97 4.67 9.12 2.68 8.39 7.96 10.7 8.6 5.61 11.2 3.1 5.16 10.6 12.1 12.8 5.92 10.7 9.36 9.62 3.01 3.88 1.89 10.9 11.2 8.32 4.22 10.3 10.8 12.9 13.4 10.6 7.2 8.26 12.7 13.7 10.6 7.2 6.78 14.9 13.2 12.7 3.19 9.73 15.7 9.5 15.9 14.1 8.53 13 11.9 9.39 11.7 7.41 6.36 12.4 10.6 9.38 3.19 1.06 2.09 4.06 2.42 2.56 5.09 9.62 11.6 8.16 10.8 10.3 5.52 4.2 0.63 0.63 11.4 7.05 11.4 11 5.68 7.32 8.82 7.13 7.64 10.2 1.39 4.67 5.11 1.06 6.96 9.66 6.73 4.97 4.11 8.65 7.28 2.09 0.63 5.96 7.53 6.09 9.29 9.42 3.01 8.78 7.09 5.28 7.97 10.1 8.6 10 10.1 9.03 7.47 8.62 6.27 7.19 6.46 2.26 1.39 10.6 0.63 5.8 8.65 7.29 1.89 3.1 4.24 7.49 3.57 6.19 6.59 5.16 7.5 8.72 9.35 0.63 8.44 8.36 7.33 5.86 9.58 8.22 3.35 5.36 1.89 2.8 8.65 6.35 0.63 2.26 6.48 9.74 9.66 9.06 3.19 0.63 6 3.81 2.26 8.13 2.56 5.14 8.36 1.39 9.72 2.26 6.57 8.6 4.5 2.72 1.39 5.99 8.38 7.13 4.89 2.09 5.22 1.66 5.18 4.57 3.63 8.83 2.26 8.14 12.5 3.69 0 0.63 9.12 5.34 11.2 10.9 10.2 9.98 2.42 10.1 1.06 3.57 5.84 9.57 11 2.56 7.97 10.3 2.09 6.43 2.26 4.02 7.95 8.58 13.3 5.16 12 6.06 5.65 6.88 2.8 6.69 12.1 9.43 0.63 10.4 8.11 7.56 9.76 2.44 10.1 11.2 6.7 2.91 3.19 3.35 2.09 3.27 11.4 5.38 5.54 5.36 1.39 6.29 5.73 6 0.63 3.35 3.1 2.26 1.66 1.06 3.27 10.1 6.97 9.64 3.01 0 6.94 8.34 6.13 4.57 10.5 1.66 10.4 3.43 6.91 6.27 4.7 2.09 3.75 9.48 7.99 1.66 3.1 7.58 2.09 7.59 0 2.42 8.48 10.6 0.63 10.1 6.59 7.28 9.8 7.14 3.86 4.95 8.54 0.63 9.14 9.4 6.75 7.38 14.7 10.2 4.2 9.93 7.04 9.77 7.55 2.56 9.09 12 10.1 5.56 10.7 1.39 7.24 5.07 11.8 9.89 2.09 9.35 11.4 3.1 8.22 10.4 5.33 2.26 9.71 7.28 2.09 9.95 12 5.62 9.03 8.94 3.43 1.06 5.84 2.72 5.02 5.96 10.5 9.4 13 12.4 10.1 4.89 7.44 6.35 11.3 7.76 1.66 7.96 0 8.63 8.06 6.66 3.86 5.04 6.08 7.2 2.42 6.58 6.82 0.63 3.19 7.83 11.5 10.1 1.06 7.94 9.87 6.09 8 8.81 7 11.4 12.1 9.1 11.5 2.26 5.96 9.57 10.8 9.45 4.43 9.14 3.27 1.66 2.42 10.1 9.71 1.39 4.7 11 10 1.89 6.86 2.26 7.77 8.44 7.04 10.1 2.61 8.35 10.3 7.95 11.7 6.17 7.2 8.6 4.64 2.56 10.9 6.29 9.2 10.8 13.3 13.5 1.66 12.4 9.06 8.8 10.7 11.7 9.39 10.8 8.41 8.86 3.1 4.81 5.2 2.26 11.8 7.23 7.41 9.9 7.46 9.21 11.4 10.1 10.5 1.39 4.84 9.09 0 13.2 6.9 10.4 10.7 11.7 7.72 10.7 11.8 6.28 10.1 9.95 9.18 9.06 7 11.1 7.1 10.3 2.42 8.89 7.86 6.98 6.27 9.45 10.1 10.8 7.06 2.8 8.06 4.67 7.6 11.6 9.32 9.43 11.6 12.4 13.6 9.9 6.72 9.52 11.6 8.41 1.39 9.66 3.75 3.01 1.06 2.68 11.2 6.71 9.26 10.2 8.55 11.9 6.47 9.47 9.34 9.97 11.2 10.3 9.24 11.8 9.2 10.9 11.3 11.1 9.15 10.8 11.3 13 7.6 7.6 10.7 9.5 12.4 5.47 7.58 9.87 3.01 4.32 8.16 2.36 10.3 7.14 5.84 4.73 6.72 8.83 9.78 2.68 7.64 2.56 5.47 7.73 7.19 4.76 5.14 10.2 9.11 8.74 9.83 2.09 1.66 6.34 6.02 8.2 4.11 5.4 3.57 5.38 9.4 7.25 5.87 7.32 7.45 5.4 7.32 3.01 7.95 0 5.09 7.49 13.3 7.67 6.33 5.62 10.7 2.91 7.02 8.06 0.63 3.69 3.57 8.52 9.65 7.13 7.29 5.47 2.91 2.42 5.57 7.4 8.12 9.75 6.62 7.89 6.6 5.88 8.11 5.57 4.81 0.63 5.07 4.7 3.75 9.04 9.12 7.99 0.63 9.1 6.34 7.49 1.06 5.65 9.09 3.26 1.06 6.37 6.42 12.6 9.22 1.39 8.09 0.63 9.3 5.49 4.79 5.51 0.63 7.61 12.5 4.28 1.66 4.06 3.81 3.97 9.33 8.81 3.57 5.74 11.3 5.57 1.06 6.02 8.06 5.84 2.09 1.66 6.66 8.65 6.18 1.06 4.95 9.49 9.3 6.01 4.92 8.63 6.3 5.93 9.22 9.9 7.05 11.7 9.23 7.56 8.96 3.64 5.09 4.89 12.2 4.01 4.51 12.1 2.68 1.06 11.8 8.29 5.86 3.96 4.9 7.59 2.91 10.9 10.9 10.7 11.5 10.3 13.6 13.3 9.81 8.72 10.5 6.12 11.1 11.9 9.89 0 0.63 12.9 6.96 1.06 9.45 6.19 4.7 13.2 7.66 4.67 9.41 1.39 9.18 5.42 8.03 1.06 2.12 9.47 1.06 0.63 3.1 9.21 7.39 7.04 10.7 8.56 11.2 9.29 0.63 6.47 1.66 5.4 8.4 9.57 6.34 2.42 4.06 8.99 2.26 6.13 5.87 4.73 5.38 6.01 4.95 8.37 3.84 1.66 9.35 2.36 3.5 8.36 3.75 0 9.34 5.34 5.38 5.24 2.42 9.67 5.07 3.27 9.23 3.43 7.76 5.24 4.47 7.67 5.34 6.81 6.3 7.37 3.86 11.7 8.13 4.6 15.4 1.66 6 8.8 7.94 8.56 7.71 7.4 6.35 0.63 0.63 3.92 6.2 8.49 1.89 7.99 4.89 8.1 2.26 7.92 7.49 5.2 3.69 5.73 8.79 9.12 3.35 9.92 2.47 1.89 7.27 5.84 9.26 9.18 5.94 2.09 9.45 12.1 8.73 2.42 4.89 3.01 4.89 5.7 6.05 1.39 8.02 8.44 7.26 6.32 0 4.97 3.86 7.62 5.62 2.41 11.9 3.63 6.08 9.63 0.63 5.07 6.08 2.91 9.84 5.04 2.68 6.36 1.66 7.69 2.91 3.63 2.68 5.16 6.5 2.42 7.38 3.27 10.2 7.2 9.75 4.06 0 1.66 10.1 4.02 3.19 0.63 5.71 1.06 8.57 7.5 7.09 8.38 8.32 11.1 10.6 4.73 11.5 0.63 10.9 2.56 9.96 2.56 9.56 6.17 13.3 12.3 6.82 7.34 11.9 10.8 14.5 1.39 0 4.11 12.8 5.2 12.9 2.8 4.54 10.8 10.7 7.29 10.5 3.43 14 10.7 0.63 13.3 10.2 14.6 9.11 3.86 3.01 4.57 10.5 9.63 11.1 8.63 10.8 12.4 12.5 3.27 9.36 11.9 13 3.27 6.96 8.88 10.7 2.09 9.7 7.82 9.75 11.2 11.1 8.42 12.6 8.72 3.75 7.85 8.92 11 2.42 7.18 9.35 8.12 10.4 8.01 10.6 8.67 4.59 2.09 10.9 2.42 3.27 9.42 6.13 10.9 3.86 7.61 9.25 10.3 0 3.43 5.62 9.7 10.3 10.8 7.26 6.16 6.92 11.3 3.43 6.21 4.5 10.6 7.28 8.61 11.1 9.49 2.09 6.55 8.48 1.89 7.19 6.16 3.81 5.91 2.26 2.91 8.23 7.22 7.94 5.86 2.8 5.11 5.24 4.24 7.03 10.2 1.66 2.42 9.25 4.97 1.66 3.01 7.84 9.08 10.5 6.09 6.12 0 3.68 1.06 6.38 3.97 2.09 3.5 10.5 0 7.91 3.63 5.74 3.27 5.95 3.01 3.01 1.54 4.22 7.93 7.96 6.27 5.38 3.03 9.34 5.67 2.42 4.76 5 9.94 5.56 0.63 8.9 6.67 10.8 6.76 1.06 8.04 2.8 2.91 4.55 0.63 5.67 9.21 4.7 6.47 12.8 7.34 0 3.75 6.59 10.2 8.85 1.06 5.11 4.97 10.8 3.1 1.66 6.91 4.95 3.97 8.96 8.31 7.39 2.56 8.3 10.4 12.4 3.43 9.12 12.4 10.4 5.06 6.1 8.38 4.89 6.98 2.69 3.63 10.7 2.91 4.57 12.1 8.65 9.73 9.49 9.43 11 7.64 10.1 11.3 0 8.06 10.1 9.2 8.84 2.26 6.18 1.06 5.8 8.98 7.68 11.2 12.9 8.52 7.89 10 7.53 10.9 8.69 14.9 3.63 8.8 10.3 12.4 12.9 11.4 2.56 6.07 6.43 7.81 9.11 10 10.6 7.48 9.12 7.58 10.3 10.7 9.18 10.6 9.73 7.74 9.35 6.93 9.53 10.2 2.8 8.09 9.07 8.8 9.75 3.1 6.84 7.95 9.18 10.6 9.44 8.28 12.8 9.36 4.02 6.78 10.4 10.1 6.03 13.3 6 4.11 7.74 8.58 11.3 7.78 5.2 12.8 6.36 4.47 8.79 1.66 4.13 6.86 5.79 5.07 11.8 7.9 2.87 7.4 8.84 2.56 10.6 6.97 7.83 5.82 12.3 11 0.63 9.96 11.3 10.2 6.77 10.1 7.58 7.23 1.89 13.5 11.1 12 12.1 12.3 11.4 13.2 10.4 4.24 11.7 9.09 2.09 11.6 11.9 11.2 12.1 10.2 6.99 9.72 10.7 10.7 9.63 4.86 8.52 10.6 8.36 6.34 6.12 4.79 5.91 9.64 10.3 10.2 9.23 11.4 10.5 7.01 1.06 8.47 6.59 9.82 10.7 7.86 8.91 7.84 9.47 8.04 9.15 12.1 9.78 9.33 9 10.2 5.22 7.62 10.3 6.84 8.87 11.4 9.89 11.1 11.5 10.2 5.77 14.2 14.5 1.89 7.94 7.82 9.41 11.9 10.2 7.4 10.4 8.52 8.14 10.4 10.6 10.4 11.2 7.45 6.98 7.85 11.6 11.9 8.13 6.46 7.4 14 5.62 0 0.63 13.7 4.87 6.55 11.8 3.5 12.5 5.91 5.07 8.22 6.98 5 5.91 8.65 9.62 9.13 2.42 8.26 9.71 2.26 11.3 7.43 7.75 9.16 9.36 1.89 5 9.58 8.77 6.53 8.33 9.65 5.11 10.2 8.34 10.3 2.91 0.63 11 9.78 0.63 5.17 4.47 9.48 9.79 4.15 1.06 4.11 4.76 7.99 2.09 7.89 2.42 3.35 5.14 7.73 9.86 6.94 9.78 10.2 3.52 7.2 3.57 4.91 7.4 5.64 11.2 9.14 2.26 7.99 7.23 7.14 5.36 3.69 8.71 2.56 1.39 10.2 9.1 7.86 3.1 7.9 4.2 7.79 3.01 9.06 7.53 2.42 3.1 7.03 6.59 5.63 7.29 13.5 4.5 6.71 4.11 7.03 6 5.54 9.92 10 8.19 3.35 6.02 7.12 8.82 3.57 5.86 6.53 2.26 4.4 6.89 1.82 3.81 4.76 5.57 1.39 3.5 3.27 0.63 6.39 1.06 8.04 6.05 3.75 6.17 8.01 3.57 4.97 11.2 0.63 0.63 2.26 3.69 3.92 3.57 6.34 1.89 1.39 7.5 5.86 2.8 5.9 11.3 2.8 12.1 8.24 3.5 8.44 9.68 9.72 7.85 6.53 9.29 5.65 0.63 9.58 13.6 6.74 7.23 6.46 7.78 4.24 8.07 7.51 8.76 4.64 8.61 10.6 9.86 5.27 8.94 9.97 11.9 8.75 10.6 8.65 11 3.5 10.4 9.06 9.92 5.04 4.06 1.89 9.86 8.61 9.52 8.3 9.51 13.4 10.7 7.88 7.78 7.21 14.5 5.16 3.43 2.42 9.21 10.4 11.9 11.1 9.02 0.63 6.65 13.8 11 9.06 8 2.26 6.13 13.4 9.7 3.57 11.5 8.73 9.81 11.2 7.58 10 7.84 4.84 9.89 11.4 9.43 10.5 7.99 9.21 3.63 8.47 8.7 14.3 10.9 9.13 7.86 12.6 7.14 14.2 7.08 8.21 12.1 11.1 13 12.3 8.39 9.4 9.13 11.1 6.17 5.07 9.74 10.3 9.21 9.24 14.7 10.6 11 10.2 9.97 12.1 9.69 12 11.2 10 10.2 9.33 11.1 10.3 11.5 9.42 10.6 9.71 12.2 10.1 10.1 10.1 11.2 11.4 12.4 10.3 10.3 10.1 10.3 10.8 10.5 11.6 11.1 8.28 12 9.99 10.1 10.7 11.9 9.94 11 9.71 12.8 14.1 11.2 8.56 2.54 8.39 6.65 5.97 10.4 1.06 1.66 11.3 5.09 10.4 9.13 8.38 9.04 8.64 10.4 10.4 13.4 10.4 2.91 11.2 8.9 7.44 7.29 9.91 8.61 7.55 12.8 5.87 10.7 9.1 8 8.54 8.08 10.3 12.6 11.5 10.4 9.96 8.4 10.8 9.4 10.4 9.51 5.02 10.3 9.62 10.4 9.13 3.81 12.2 10.2 6.07 10.3 10.2 6.18 9.55 9.78 4.47 10.9 3.57 8.72 5.4 11.3 11.9 13.6 8.16 9.35 8.85 11.9 8.89 6.44 11.6 13.6 3.57 9.6 10.8 10.7 9.31 9.79 10.6 10 7.56 4.54 5.36 11.2 4.32 6.15 9.73 10.6 5.88 14.1 5.82 2.56 12.6 6.25 6.91 0 2.8 6.12 12.3 9.72 10.3 10.4 11.6 9.14 0 10 7.12 6.14 2.68 13.3 10.4 7.04 1.39 8.52 2.09 5.97 7.37 0 4.36 5.26 7.62 6.13 0.63 4.28 6.81 12.1 9.98 11.6 11 12 5.77 10.8 9.92 3.81 8.7 10.7 11.2 7.39 1.06 8.91 5.41 6.63 7.71 12 4.36 11.7 9.84 1.89 5.07 11.5 9.12 3.5 3.1 4.82 0 13.6 11.2 9.76 9.74 10.9 3.75 11.5 8.26 4.73 8.18 0 3.17 4.15 2.42 0.63 10.2 9.26 13.4 5.97 9.15 9.54 8.7 9.79 2.8 5.64 8.91 9.97 11.8 8.66 9.53 7.62 3.63 1.06 10.9 6.03 10.6 6.38 0 6.18 1.39 11.9 8.51 5.04 6.12 8.59 8.41 7.84 3.75 4.02 8.1 9.6 9.47 13.6 5.59 7.44 12.9 1.89 4.11 2.91 12.2 9.37 12 5.94 11.6 9.8 9.81 7.24 10.7 8.07 9.57 3.01 8.12 8.47 9.82 9.38 13.9 8.33 0.63 10.1 14.2 1.66 9.25 10.2 10.2 10.9 2.57 8.8 10.1 4.5 6.84 8.84 6.1 9.95 2.8 8.54 3.27 5.76 10.9 10.9 6.95 6.99 3.92 2.09 5.32 10.2 8.85 11.1 9.99 10.8 9.24 9.23 3.5 2.92 3.35 11.3 7.6 7.81 11.7 5.42 7.52 0 9.32 8.75 8.2 9.92 10.9 12.2 8.56 6.75 9.84 12.9 6.66 1.39 13.3 2.91 8.76 3.19 7.34 10.2 9.58 9.09 9.36 10.5 7.87 10.1 9.53 7.48 8.75 7.74 9.88 9.03 9.28 4.06 8.89 8.62 9.5 9.43 9.45 8.62 7.4 9.53 8.83 10.6 10.9 6.86 8.94 10.2 8.59 9.59 7.53 9.54 11.2 8.71 10.1 10.7 9.35 9.58 7.22 9.6 7.14 12.1 6.29 7.82 9.05 11.7 10.3 4.76 8.45 10.1 8.12 9.82 8.56 10.2 10.2 10.1 8.66 10.8 8.15 10.8 8.56 9.66 10.6 11.6 12.1 10.8 10.7 1.66 7.33 3.92 1.54 4.43 8.37 8.56 8.46 10.5 9.05 11.7 7.82 10.1 8.03 10.1 8.62 10.8 10.5 7.47 8.42 8.56 7.39 9.65 8.65 11.3 10.2 10.3 11.9 8.46 10.1 9.68 11.3 9.44 10.2 9.22 9.83 10.8 8.47 8.56 10.8 9.85 10.3 8.81 6.34 8.1 5.97 9.1 9.25 9.89 9.38 7.9 8.63 8.18 9.62 7.74 12 10.6 10.7 8.01 8.65 7.33 10.9 0 10.4 12.8 6.88 10.6 10.6 7.89 9.54 9.01 10.2 7.34 8.32 5.18 9.51 7.49 8.62 7.83 7.71 9.16 11.5 9.75 10 9.9 8.96 9.42 8.68 11.5 8.74 10.6 12 8.36 8.83 9.63 6.72 9.27 10.3 7.88 10.9 11.5 9.34 7.73 2 1.39 1.06 10.3 4.84 8.83 9.45 4.32 8.12 9.07 9.67 9.4 9.45 2.09 11 10.6 10.2 8.25 10.8 9.4 12.9 10.9 9.58 9.33 7.59 7.92 8.42 5.84 10.7 10.6 9.87 8.88 9.67 7.7 9.47 10 10.1 3.66 6.62 5.52 10.9 10.8 11 9.19 8.47 7.74 7.21 11.7 8.89 8.89 10.4 6.75 9.81 11.3 7.81 3.63 8.87 9.04 9.48 10 9.95 10.3 6.53 9.12 10.7 6.28 10.5 8.87 10.1 4.5 10.7 10.6 2.26 9.87 10.3 5.8 7.53 8.2 9.39 8.95 8.75 3.63 8.45 9.07 10 9.58 7.19 9.92 10.2 11.8 10.7 6.62 9.83 8.22 7.08 4.43 5.4 4.32 10.5 7.93 7.53 7.51 11 9.57 9.4 10.3 9.97 5.52 8.4 1.06 4.92 8.42 6.22 9.45 8.97 5.02 8.07 11.9 8.76 9.54 3.5 11.1 11.6 8.82 10.4 6.46 8.51 9.08 7.96 7.49 10.1 1.89 10.6 13.8 10.8 10.1 4.43 6.82 9.7 8.33 10.8 9.58 12.1 9.18 8.71 10.7 8.36 10.4 11 8.96 10.2 8.19 7.95 9.48 11 10.6 5.49 10.4 11.4 11.6 7.11 9.46 7.13 3.27 11.6 9.62 11.5 11.3 1.06 9.68 3.35 9.94 9.32 3.43 10.6 11.4 8.35 1.66 10.4 10.3 7.45 10.7 7.47 9.66 9.67 11.2 12.1 9.22 10.3 10.2 11.2 10.3 8.4 9.47 11.5 10.9 10.5 9.46 10.1 10 8.58 10.9 10.1 6.02 11.4 10.4 7.86 9.54 9.3 8.48 9.45 10.4 7.21 10.4 8.3 7.61 9.35 10.9 8.64 8.88 7.36 7.36 9.28 9.16 8.82 8.62 8.14 9.18 10.5 3.86 1.66 9.42 9.06 9.01 5.68 8.95 11.6 9.25 10.4 10.1 6.83 11.2 10.1 10.8 9.18 6.03 12.8 10 12.1 10.1 10.2 10 12.2 11.6 10.2 10.5 9.83 10.2 8.31 12.2 10.2 10.7 9.41 10.7 9.8 9.78 11.7 9.81 1.06 7.45 11.4 11.4 11.4 7.87 11.9 9.04 11.2 8.28 9.16 9.49 12.3 11.5 8.49 8.77 9.73 10.6 10.5 10.7 10.6 7.29 8.85 10.1 9.46 9.67 11.5 9.65 7.74 6.58 9.02 7.25 10.9 8.91 10.8 8 12.1 8.27 7.18 7.8 8.27 11.2 9.62 7.36 2.09 9.82 9.29 10.6 10.1 9.67 9.98 12.8 9.21 8.31 8.58 4.15 9.56 8.61 7.05 8.85 8.31 9.73 8.29 0.63 11 1.66 9.05 10.2 10.3 8.55 11.6 2.42 8.77 8.69 5.67 3.01 6.45 10 5.97 12.1 9.98 10.2 1.9 9.74 7.16 11 11 10.5 3.75 7.44 9.64 9.77 1.06 7.53 9.45 8.64 8.99 7.6 11.5 12.4 7.93 7.63 4.81 9.87 9.2 12.5 10.1 9.68 9.39 9.01 9.44 6.9 7.58 7.7 9.14 8.77 0 0.63 11.6 8.89 11 10.7 11.3 9.48 12.7 5.89 3.01 8.3 10 10.5 9.25 12.4 2.56 10.7 9.84 14.9 8.73 6.68 11.3 12.4 4.4 0.63 12.8 8.17 7.98 10.8 12.9 10 9.28 6.54 4.15 6.88 4.24 12.3 9.98 13.2 3.86 9.74 9.95 10.2 9.74 9.58 12.2 0.63 9.65 6.76 12 0 10.8 11.5 8.1 7.47 11.9 7.4 7.53 9.06 10.9 6.85 8.71 4.02 10 9.94 9.1 11.3 8.14 9.15 11.3 11.1 8.17 10.2 11.6 11.1 10.4 10.8 9.31 0 9.75 11 10.7 10.4 9.79 9.3 0 14.6 9.04 10.2 1.06 6.03 7.83 7.47 9.64 7.35 11.2 8.69 11 9.91 9.42 7.02 8.01 6.89 9.64 7.31 6.38 1.13 9.71 6.58 6.59 7.9 9.62 11.7 1.06 6.82 9.85 8.33 10.6 8.86 8.73 12.7 4.67 6.94 8.9 12 4.93 6.46 1.39 9.94 3.1 10.1 4.95 12.8 9.91 6.77 9.15 10.5 4.92 10.2 10 12.2 10.9 11.6 5.52 10.2 0 11.2 6 7.97 2.64 9.19 1.19 5.64 11.6 11.7 8.39 10 9.22 9.21 7.61 8.11 5.04 3.69 2.26 3.92 9.35 11.2 9.57 5.04 6.93 3.92 9.64 0 9.09 7.17 3.01 6.47 11.9 7.32 9.24 9.04 8.64 10.8 8.34 11.1 9.54 10.3 9.89 8.34 10.8 11.9 10.6 10.4 9.25 6.86 4.84 6.23 7.44 8.17 2.56 10 5.16 2.42 8.94 1.39 5.76 8.6 7.38 11 10 11.8 2.56 9.1 7.91 7.74 5.62 6.77 2.34 10.2 9.64 7.04 8.87 8.71 9.77 10.8 11.9 6.77 4.36 6.8 3.27 9.8 9.94 10.1 11.2 11.7 9.2 2.73 11 9.76 12.6 12.2 10.4 3.81 5.83 11.1 9.25 7.32 11.8 7.82 7.32 10.6 8.96 2.56 4.57 9.66 10.2 10.8 10.7 10.7 11.1 11.4 4.57 8.22 11.7 4.32 6.87 10.8 9.13 9.65 9.89 2.42 10.2 4.95 7.03 9.48 10.9 5.71 9.85 10.8 8.99 7.68 8.9 8.9 4.06 1.66 11.1 10.9 10.9 9.77 5.02 10.2 8.43 1.39 9.75 10.2 11 10.4 7.36 10.7 10.1 10.1 12.3 9.89 6.94 9.96 7.94 10.4 8.5 8.07 6.8 9.41 9.96 10.8 8.83 9.71 8.9 9.46 9.73 8.28 10.8 9.81 9.18 4.67 9.47 6.78 6.28 9.49 8.04 9.55 9.8 8.04 10.1 9.35 7.27 10.4 3.97 9.92 7.66 8.55 9.83 8.73 8.49 7.58 11 10.9 11.8 8.88 11.2 8.57 5.84 10.2 6.94 11.1 8.04 8.99 5.88 7.76 6.75 2.26 8 9.64 8 7.82 7.77 13.2 10.7 14.5 7.87 11.2 11.4 8.61 11.9 9.86 11.1 6.64 10.7 11.6 6.63 6.35 9.03 9.02 11.6 7.4 1.39 9.69 9.97 9.94 9.48 11.4 5.71 8.59 10.1 7.03 9.18 8.97 6.95 7.95 10.6 3.01 9.89 9.33 7.99 8.92 9.46 3.86 5.18 11.3 0 11.5 10.1 6.36 9.92 11.4 7.2 3.19 6.33 2.56 10.2 4.11 9.28 5.02 7.09 8.34 8.34 12 5.99 6.48 9.43 9.27 4.43 10.7 9.49 12.2 9.07 8.95 7.99 10.4 13.3 10.1 8.96 8.35 7.35 8.63 2.91 9.58 8.64 9.75 10.1 8.57 7.31 8.03 8.57 9.46 10.4 11 3.75 8.3 10 7.81 7.64 12.4 9.57 8.05 8.62 10.5 10.9 7.57 2.09 6.41 0.63 8.48 4.73 2.56 0.63 10.2 8.21 8.43 10.2 7.43 9.45 7.69 8.36 7.81 11.3 7.68 10.6 9.64 7.57 4.11 10.7 1.06 10.4 11.1 8.18 8.54 10.1 10.2 9.19 8.56 8.6 9.19 10.3 3.35 10.9 8.92 6.86 11.4 9.49 6.64 11 8.98 9.6 9.38 8.76 8.79 10.5 10.1 11.1 9.5 9.23 4.84 9.98 11.1 11.7 9.66 10.2 10.3 9.07 8.26 6.53 4.57 8.14 7.08 8.16 9.67 10.1 8.97 10.3 1.06 10.6 7.99 11.5 10.3 10 11.3 8.71 11.2 9.39 9.51 11.3 7.45 9.06 9.41 10.7 9.42 11.6 8.56 6.95 10.4 9.63 6.05 2.42 10.6 8.08 10 9.07 9.99 11 10.2 11.4 10 8.68 6.43 9.39 8.46 11.2 10.2 9.82 7.24 8.36 10.4 8.18 9.58 8.98 9.15 6.65 12.6 7.83 6.99 9.03 9.67 6.7 8.17 4.15 9.74 9.3 5.71 8.54 11.4 11.1 7.16 10.1 10.8 10.9 2.8 8.69 8.3 8.3 11.4 9.01 9.13 6.61 9.69 5.86 10.7 12.2 7.26 10.3 11 8.14 4.87 6.44 10.9 5.24 11.6 11.5 11.4 4.64 8.34 9.4 9.91 12 8.2 10.3 9.94 9.18 11.6 8.06 9.57 8.25 9 8.23 8.72 9.54 8.01 10.3 1.89 5.84 8.41 5.18 10.2 7.44 6.03 8.65 10.5 10 10.5 9.98 6.96 2.09 10 4.79 11.4 11.2 8.47 9.72 0.63 12.2 10.9 9.3 9.33 10.6 10.6 10.3 7.24 4.43 5.3 7.57 7.86 5.55 3.5 8.4 5.62 8.85 4.54 11.6 4.5 6.9 8.19 11.7 8.33 7.36 12.9 6.29 8.89 8.65 10.1 5.77 7.38 4.76 7.64 0.63 6.82 9.96 9.82 7.82 9.01 11.2 3.86 10.6 8.7 9.87 9.95 8.48 8.91 6.41 10.4 10 10.2 9.34 9.78 7.76 8.62 10.9 8.72 10.9 7.98 11.1 6.39 10.6 11.6 8.73 9.27 4.36 9.97 10.1 9.18 8.74 2.68 4.11 9.5 11.5 10.3 10 10.1 9.69 8.56 9.95 10.7 9.7 9.94 11.2 3.01 7.56 9.58 11 10.9 10.1 9.81 11.7 10.4 8.96 10.8 9.34 9.47 9.75 7.8 10.4 9.76 8.24 8.67 9.07 9.56 10 7.62 7.8 10 9.33 7.74 12.5 8.89 10.2 10.2 10.7 7.05 9.64 10.2 8.8 8.98 7.65 9.19 8.26 10.4 8.46 3.81 13.3 9.89 8.76 6.48 3.19 10.4 5.34 11.4 6.94 8.95 10.1 9.99 11.1 7.65 11.5 5.76 10.1 8.11 10.1 7.66 11.1 8.88 6.27 10.1 9.25 4.5 2.68 6.69 7.16 10.1 8.34 12.1 5.8 9.01 9.15 8.08 8.91 4.43 10 11.4 9.41 9.14 10.1 11.6 8.34 8.99 10.1 9.8 9.88 7.21 9.34 11.4 10.6 9.61 11.5 9.85 9.75 9 8.99 10.8 8.76 5.68 3.86 8.73 6.77 9.6 8.75 2.68 7.94 10.9 10.8 10.1 11 3.01 10.2 10.3 10.7 6.09 8.91 9.52 10.5 9.72 9.06 3.63 4.89 8.66 6.98 2.31 0 8.91 11 8.84 9.32 9.96 10.9 10.9 7.47 9.39 7.05 5.16 7.98 7.87 10.6 0 8.04 7.97 2.8 11.2 4.36 10.5 11.3 8.53 10.2 8.11 9.44 9.2 9.78 4.09 10.1 8.38 8.98 9.73 10.2 5.16 8.9 10.3 10.7 9.27 8.6 8.71 6.52 6.17 9.29 7.83 7.69 9.85 10.3 10 4.2 5.28 9.75 11.7 10.9 11.1 10.4 9.2 9.14 9.96 9.47 9.17 9.39 6.26 1.39 4.28 9.44 12.7 11.2 7.09 8.93 4.06 10.6 11.2 9.79 8.23 10.3 7.77 8.69 10.2 6.72 8.22 12.6 12 12.3 9.01 4.24 8.41 9.14 8.92 8.66 0 3.81 7.82 4.4 8.04 8.11 9.46 1.39 7.49 7.23 8.76 11.1 10.8 10.5 8.36 3.27 9.46 8.73 9.71 9.74 9.36 5.67 2.56 7.04 11.5 11 4.76 8.82 7.64 10.3 10.4 7.97 2.09 11.5 6.32 6.34 11 10.5 7.63 1.06 3.01 6.32 10.3 4.19 5.34 11.5 4.57 2.09 7.42 3.5 8.56 8.09 8.74 6.06 7.67 6.89 8.63 9.65 9.98 9.12 11.9 1.89 11.5 10.4 8.87 6.23 11 10.8 8.62 8.94 5.62 10.6 10.5 7.38 2.09 10.5 9.87 8.89 8.78 8.99 5.14 9.45 8.17 8.61 10.8 6.59 3.69 8.69 9.4 10.3 6.46 10.2 9.43 6.56 11.1 10.5 10.1 10.3 10.4 10.9 12 8.55 10.8 3.27 8.63 7.71 10.3 9.08 7.63 7.46 11 6.21 9.67 10 9.84 10.1 9.5 9.74 11.1 7.49 10.5 9.17 10.4 10.7 11.6 11.7 8.99 10.6 7.23 10.6 11.5 11.5 10.9 7.89 8.83 9.46 12 8.9 8.02 8.09 9.6 9.07 11.7 9.12 8.89 11.1 7.45 7.36 9.25 10.6 10.3 8.97 8.34 10.9 7.81 11.3 8.64 10.5 5.74 10.2 9.77 10.7 5.52 11.1 6.08 11.2 9.42 10 9.24 10.3 10.9 8.92 11.2 9.21 9.98 6.12 6.83 8.39 7.52 11.9 9.59 9.81 10.6 11.4 7.11 7.03 8.78 10.4 9.75 8.81 10.1 11.5 12.3 8.62 6.61 9.62 10.8 11.4 11.2 10.8 11.2 9.73 8.34 10 9.61 9.04 10.8 11.4 11.3 6.38 9.5 9.1 11.3 9.1 10.8 10.4 10.6 6.73 9.88 10.2 7.69 8.37 10.2 7.81 10 9.09 8.72 8.7 9.22 9.08 8.41 9.87 7.89 10.5 10.7 9.75 7.08 9.27 5.7 7.88 9.04 9.6 8.05 6.71 10.2 5.68 9.02 9 7.82 10.3 6.6 9.13 7.05 8.98 9.42 6.1 8.85 4.11 8.78 10.7 4.89 9.34 8.38 5.88 5.42 10.6 8.59 6.46 8.87 3.92 8.28 11.3 9.9 4.84 10.1 10.9 4.95 9.92 9.07 7.14 9.59 10.9 10.1 9.57 9.9 11.3 12.3 10 9.95 9.95 9.24 7.06 9.3 8.63 9.45 11 8.93 8.42 8.48 11.1 7.07 9.64 10.6 3.65 10.9 7.36 9.67 8.89 10.3 4.4 9.06 10.1 7.93 8.56 8.06 2.09 7.5 6.45 9.94 9.11 9.19 8.19 8.08 11 1.39 5.14 5.84 13.2 11.7 8.09 9.1 2.42 11.2 8.39 8.78 6.8 9.32 10.5 11.6 6.58 9.48 8.37 12.7 9.42 11 10.9 8.83 8.9 1.89 13.8 10.3 4.87 9.79 2.56 8.69 4.07 12.1 9.77 8.35 7.62 9.15 10.8 6.18 3.27 10.5 11.3 10.5 10.7 8.92 8.07 7.18 10.2 9.06 8.89 9.1 7.3 2.91 7.81 1.66 10.2 9.88 8.95 4.15 7.4 6.18 10.5 11.2 8.79 9.78 11.2 3.92 6.27 8.78 6.39 10.4 1.06 1.39 5.2 9.64 5.75 4.02 4.15 4.28 2.56 5.37 4.76 3.86 4.5 5.11 10.4 4.28 3.92 4.43 3.75 3.57 9.03 3.69 4.2 3.1 3.69 2.68 2.42 0.63 2.26 2.26 2.26 10.1 0 2.8 2.8 5.16 6.03 7.65 10 5.67 4.32 1.06 2.42 8.8 3.35 8.85 9.24 1.06 11.1 9.92 1.06 3.57 13.5 9.24 7.38 2.09 10.8 11 7.09 9.38 9.26 2.09 10.9 10.8 5.24 9.75 10.3 9.7 7.92 9.37 11.5 9.31 9.11 5.34 3.53 9.82 9.87 9.75 11.7 10.5 10.1 6.67 2.56 11.3 5.92 0 1.39 6.61 4.7 10.1 4.7 2.91 7.06 3.19 8.16 5.68 0.63 15.5 6.84 7.17 6.01 10.6 6.72 9.48 11.4 9.12 11.3 6.22 2.09 10 10.2 8.28 8.2 9.91 8.53 2.8 4.36 4.92 8.04 2.91 9.98 8.45 11 11.1 16 2.42 1.66 8.64 8.79 11.8 11.3 11.2 11.4 9.3 11.7 7.85 12.4 9.86 10.3 8.83 3.27 11 11.9 11.3 11.3 11.5 10.1 11.1 12.9 8.94 7.67 11.6 9.92 7.9 10.4 8.54 2.09 11.4 9.39 6.69 9.89 9.05 11.7 6.25 8.62 11.9 11.7 6.69 7.58 9.46 9.73 10.7 4.92 11.6 13 7.98 7.6 6.93 8.19 11 10.2 8.72 8.58 11.3 10.2 8.6 8.24 6.8 11.8 9.73 9.78 9.06 9.78 8.18 9.3 7.74 10.4 9.24 11.7 11.6 9.32 10.2 3.86 6.29 9.03 9.38 10.9 9.41 9.03 3.5 9.82 5.42 11.4 3.81 8.47 3.57 6.31 10.7 7.67 3.19 8.92 10.8 7.33 8.68 9.55 11.2 11.2 9.16 11.8 9.26 11 9.63 9.95 7.96 7.79 0.63 9.89 7.42 8.66 10.8 6.92 11.4 2.68 9.68 10.2 10.3 11.8 9.81 9.7 7.85 8.75 8.4 9.56 11.1 8.21 9.12 12.1 10.7 4.97 11 8.22 0.63 12.4 12.2 11.9 10.6 9.73 7.84 8.24 12.1 7.12 9.79 1.66 10.6 5.07 8.63 8.95 10.4 12.2 6.75 9.14 10.7 9.66 6.02 6.86 7.91 10.3 9.49 7.32 7.42 9.06 6.48 9.87 7.02 11.6 9.6 6.96 2.91 9.15 9.65 11 11.6 10.1 10.7 10.8 5.26 12.3 10.6 11.2 7.84 8.68 8.45 10.7 8.46 9.8 6.71 12.6 9.11 6.18 11.1 2.91 9.96 5.18 9.07 4.15 10.3 8.07 11.2 11 8.4 10.8 10.5 12.6 10.6 11 8.75 9.11 8 9.87 8.45 7.93 10.8 8.72 8.41 11.9 11.6 2.09 9.8 7.73 11.5 8.25 11.9 7.64 8.13 12.2 11.3 5.68 8.64 7.38 5.97 9.68 10.1 10.5 4.57 10.3 11.3 7.75 8.92 11.4 8.29 9.92 3.97 8.89 13.5 7.71 10.6 4.02 4.92 8.88 9.2 12.5 1.66 6.59 10.1 11.2 3.77 7.46 8.21 9.62 7.63 7.92 4.5 8.72 9.03 6.83 4.36 9.99 10.9 6.25 6.31 5.67 7.66 7.92 1.66 1.66 9.58 10 0.63 8.69 8.55 8.98 8.84 10.8 7.63 10 7.29 9.72 3.97 7.38 4.57 8.6 9.99 8.71 12.3 7.8 3.35 1.06 6.43 3.01 10.8 9.68 7.58 9.28 2.56 12 9.21 5.52 6.46 9.28 8.14 11.6 5.36 4.95 11.1 10.7 3.81 9.62 9.71 10.5 11.1 7.6 6.83 8.61 10.3 7.7 8.74 6.84 8.87 11.6 8.53 4.81 10.8 9.94 10.3 0 8.96 0.63 9.88 5.32 5.03 8.97 10.8 11.2 11.6 8.43 8.75 9.3 12.1 8.58 8.73 9.39 10.8 8.06 11.5 11.7 8.35 4.32 2.8 1.39 5.47 3.5 8.74 7.08 11.4 11.6 9.11 6.14 6.25 4.6 8.89 7.91 12.3 4.02 9.67 10.1 7.01 7.94 7.52 7.58 5.4 8.93 9.22 10.6 1.66 9.27 8.27 6.46 7.67 10.1 8.05 9.15 5.62 8.19 3.75 8.6 10.4 4.89 14.4 9.55 4.32 12.1 6.6 1.39 7.89 5.82 6.18 8.47 12.8 1.66 9.8 10.4 10 9.25 9.26 10.5 10.7 9.9 5.36 8.29 5.34 4.15 7.51 10.6 5.2 9.44 11.2 3.27 8.68 10.9 10.8 10.1 9.54 8.92 8.76 7.68 8.12 10.7 9.01 8.91 10.3 7.2 9 1.89 12.6 7.47 3.01 11.3 8.44 6.9 7.56 3.69 10.3 10.3 10.8 8.53 11.6 9.31 5.97 6.84 11.9 3.81 9.26 10 11.3 8.21 8.73 8.61 8.71 9.3 8.39 11.2 12.9 7.79 9.83 10.1 11.5 11.7 8.17 5.74 5.09 3.43 7.59 2.09 10.8 8.45 6.08 9.89 9.05 10.4 8.42 9.2 7.95 1.06 11.2 9.87 10.4 10.6 9.57 10.1 9.12 7.34 9.2 10.8 3.4 8.72 7.75 10.1 7.46 3.01 5.14 6.93 10.6 8.57 5.3 9.72 10.5 8.15 5.92 6.26 6.69 7.44 8.4 7.86 5.34 9.39 7.76 11.5 9.95 9.41 8.63 9.87 8.75 8.52 10.8 11.2 4.57 9.57 12.6 11.3 9.91 12.6 11.3 6.59 5.91 12.2 8.77 9.39 6.61 7.43 0.63 1.06 7.94 6.88 10.5 9.8 7.93 2.68 7.94 12.5 4.11 10.6 9.72 11.3 10.2 2.91 10.3 7.03 8.6 2.09 6.56 2.26 8.41 6.39 1.39 10.1 8.05 3.92 10.8 8.84 7.8 9.06 8.24 9.79 7.69 3.5 10.4 11.3 9.93 7.58 5.82 10.7 10.1 8.82 11 6.48 9.4 12 9.09 10.7 9.91 11.5 8.47 12.5 12 4.57 10.2 6.97 6.97 9.56 10.4 9.89 8 6.77 10.7 10.2 8.87 8.54 8.36 9.22 8.13 6.46 6.82 6.98 6.35 9.46 6.66 9.65 7.8 7.83 10.8 10.8 11.3 9.92 9.12 9.47 9.58 11.1 12 10.4 9.83 9 8.04 5.26 10.5 1.06 1.39 12.9 8.55 9.44 10.9 10.7 9.21 5.94 7.35 8.25 8.64 11 11.3 8.76 11 8.72 9.91 9.09 1.06 10.2 9.77 9.23 11.9 12.3 12.2 8.34 8.97 9.66 12.4 12.1 11.6 11.5 8.32 6.03 5.86 8.25 7.86 12 5.38 10.4 10 9.91 11.3 10.5 13.2 11.6 12.7 12.3 9.77 11.9 6.44 5.49 9.44 9.19 10.2 1.39 9.4 7.58 8.33 10.4 9.36 8.86 10.3 8.96 7.34 6.66 7.43 8.82 9.14 8.46 11 6.17 0.63 9.28 6.1 11.6 11.4 9.72 9.32 11 9.67 10.3 9.37 8.51 1.06 10 10.4 10.6 1.89 6.36 11.5 10.1 0.63 9.58 7.66 10.2 13.3 0.63 8.48 11.7 10.2 8.78 7.05 7.53 0 1.13 2.91 8.89 2.09 8.17 1.89 9.69 9.87 0.63 5.44 8.29 7.92 10.2 9.87 7.29 9.15 10.6 9.26 8.57 12.1 10.9 10.4 7.25 10.9 9.85 10.2 10.4 8.8 9.44 8.82 8.45 10.8 4.29 9.31 9.29 6.81 5.54 3.86 10.4 6.62 9.55 8.33 9.36 17.3 10.9 9 1.66 8.45 4.24 0.63 10.5 1.89 9.73 9.06 9.38 4.4 10.2 5.82 10.2 11.6 10.2 9 8.97 3.19 0 6.88 5.5 6.96 9.23 9.06 8.19 7.55 7.91 9.87 0.63 11.1 3.27 0.63 10.1 13.1 7.84 10.7 9.59 11.1 2.09 9.66 7.91 10.4 9.8 9.67 9.31 10.1 9.18 9.52 3.19 8.85 9.66 12.2 8.49 12.4 7.24 11.6 9.98 10.8 8.26 9.14 11.8 8.93 6.18 8.38 10.6 6.17 5.92 10.8 8.01 10.2 12.5 2.56 0.63 6.21 8.56 5.44 9.16 9.62 10.3 10.4 7.78 9.86 6.44 8.62 10.2 4.4 8.09 4.24 6.76 8.85 7.78 8.16 7.46 1.39 11.6 10.9 9.42 8.84 15.8 16.7 14.2 13.8 11 10.8 14.6 3.41 16.6 11.7 14.4 15 14.3 14.9 14.8 12.4 14.9 11.7 15.9 3.35 13.2 12.9 10.7 13.4 15 14.6 15.1 15.1 15 14.6 14.3 15.2 13.7 13.8 12.1 14.5 14.7 14.5 9.21 7.94 14.6 8.16 16.2 16.6 15 10.6 9.53 12.6 13.1 14.9 15 13 16.1 2.8 3.35 3.86 7.59 6.63 13.9 1.89 2.26 15.5 10.6 7.66 10.5 9.67 10.2 13.8 14.8 14 14.2 14.7 14.6 13.5 14.7 14.1 14.4 14.9 15.2 6.8 15.6 14.9 15.2 13.5 14.7 15.8 13.7 11.7 6.5 13.1 4.06 14 7.27 8.67 12.2 10.1 10.5 10.5 7.91 1.66 7.57 10.7 10.9 8.44 8.18 9.04 9.39 9.49 9.59 4.47 3.75 1.15 6.66 9.75 1.06 4.15 10.2 1.39 10.8 6.47 8.72 12.1 11.8 5.64 11.1 6.1 3.27 9.78 10.7 12.2 5.94 9.06 9.29 11.1 8.71 7.47 12.9 8.34 8.96 11.8 9.77 8.62 6.27 9.14 10.5 9.49 12.9 4.63 7.25 6.46 5.04 7.3 1.66 5 4.28 11.8 4.2 1.89 8.05 3.63 4.92 4.2 4.64 7.14 9.44 10.4 4.36 3.81 10.1 9.23 5.65 6.53 9.39 12 5.47 6.79 8.16 9.83 6.75 2.56 3.86 9.01 3.01 3.27 10.1 1.66 6.59 8.14 4.32 8.89 7.4 7.76 10.7 10.8 12.6 10.6 9.9 11.3 4.89 8.58 9 10.8 9.63 10.4 11.4 9.61 4.5 9.27 5.49 6.59 11.5 10.3 8.94 10.2 8.83 7.89 10.7 7.59 1.39 8.46 10.6 8.9 10.1 5.49 9.93 2.26 2.42 11.8 6.53 9.19 7.99 8.35 9.48 6.56 9.7 7.84 11 8.47 7.79 11.5 8.34 10.9 1.89 9.25 4.36 8.34 7.92 9.83 8.24 7.14 10.6 9.64 6.37 11.5 7.2 11 8.46 9.47 9.56 3.35 8.07 3.27 5.42 4.45 7.29 5.18 5.95 6.17 10.8 3.43 10.4 7.87 0.63 5.99 8.74 5.16 7.83 9.14 10.1 9.33 6.67 7.39 7.48 9.52 8.73 11.4 10.6 8.7 10.7 7.8 8.2 7.85 6.99 8.4 4.95 6.06 6.67 1.06 10 5.28 9.97 3.63 7.79 0.63 9.79 9.42 3.97 7.33 7.68 8.25 10.3 10.3 9.71 10.1 5.79 11.1 7.66 7.3 6.3 7.62 6.44 9.98 13.1 5.99 8.6 7.77 11.1 10.4 13 11.5 9.24 8.81 10.4 7.98 5.28 5.92 11.4 9.76 9.31 9.96 6.41 11.9 9.63 8.95 7.62 4.54 1.06 5.2 4.32 12.6 1.06 12.5 13.1 4.84 8.62 6.71 6.36 4.7 9.35 7.87 7.87 6.34 10.9 1.89 4.92 2.8 7.68 11.6 4.7 0 12.2 8.9 9.37 10.5 12.1 9.82 9.07 11.8 7.78 7.19 10.4 9.98 9.78 10.5 6.26 7.62 9.85 4.54 6.03 2.42 4.81 11.9 8.76 9.46 4.7 7.46 7.94 1.39 1.66 8.86 8.85 8.5 0 0.63 7.94 5.95 6.53 5.91 10.6 7.67 4.06 3.75 0.63 5.99 8.18 1.89 11.2 9.12 1.39 9.73 8.25 7.65 6.87 6.31 2.09 7.82 0.63 8.9 7.84 8.21 7.13 0.63 5.9 6.17 6.67 3.1 8.46 12 3.35 7.37 8.03 11.1 9.66 10.2 10.7 9.78 8.6 8.96 9.48 9.54 8.83 10.5 9.91 3.92 3.35 2.91 2.68 5.07 5.22 3.1 3.75 10.6 2.91 8.49 8.71 9.86 6.25 7.61 7.24 0 11 0 5.47 3.97 2.68 8.97 7.38 10.5 10.6 7.64 0.63 5.83 2.56 10.1 10.1 5.84 4.73 5.59 3.69 5.87 10.5 6.74 5.56 4.7 1.66 1.06 2.8 6.58 9.02 1.06 2.56 5.97 7.66 11.6 0 10.5 1.06 5.45 4.32 9.34 0.63 6.14 3.01 10.8 6.4 10.1 5.14 5.22 9.36 0 1.39 8.28 9.52 11.2 4.84 9.57 1.66 1.06 2.42 1.39 5.54 2.09 10.1 7.6 6.46 7.63 9.87 9.69 11.9 6.53 2.09 7.59 10.9 3.57 3.57 9.21 11 9.83 9.64 10.2 8.09 9.31 7.05 8.6 11.1 9.64 6.53 11.2 10.9 11.1 6.56 9.89 10.3 9.71 8.21 10.1 10.2 9.52 12.3 9.33 8.25 7.09 8.87 9.73 8.55 7.76 11.4 9.42 12.4 8.91 10.4 11.2 0 9.71 6.92 6.27 7.11 8.23 10 9.25 4.54 10.1 11.1 8.2 5.68 11 11.6 2.91 7.8 6.72 6.05 9.91 10.8 9.35 9.95 7.83 6.97 8.71 7.58 9.21 1.89 10.8 9.25 8.58 4.54 9.45 10.2 9.85 9.82 9.57 9.16 9.06 9.58 8.62 8.31 9.45 8.11 6.65 1.34 2.68 6.58 9.34 8.3 8.68 8.89 6.92 6.22 9.24 9.07 8.99 1.06 9.7 9.18 10 8.53 10.2 3.86 4.24 10.7 7.11 9.46 6.15 9.58 10.6 4.81 10.4 0 10.4 9.81 9.79 9.93 10.6 10.2 9.62 9.96 11 8.31 9.13 9.64 10.4 10.1 1.66 4.76 11.7 9.78 10.8 9.11 6.25 8.13 4.04 10.9 8.44 10.2 6.32 8.33 3.35 7.7 10.9 9.04 10.3 3.75 9.01 4.64 5.91 1.89 9.61 6.2 7.14 10.5 10.7 12.2 7.29 8.93 8.78 10.9 0.63 10.6 12.1 9.08 9.26 11.1 2.26 11.1 8.17 12.2 9.61 10.3 3.63 10.9 4.06 7.86 1.39 6.18 12 3.19 11.1 10.8 6.45 7.27 10.8 8.68 9.61 8.07 7.56 8.46 9.05 8.57 7.37 11.5 10.2 8.62 7.68 8.87 2.26 8.4 2.26 1.66 7.44 0 0 4.06 8.48 3.01 0.63 6.66 5.34 1.06 1.06 6.14 6.17 11.1 8.26 3.86 9.97 5.34 1.06 0 9.28 10.7 9.74 8.07 9.47 4.54 8.59 4.47 6.2 2.09 11.5 5.67 6.35 2.26 1.39 9.88 3.57 8.18 3.5 6.97 7.54 1.39 8.25 9.36 3.57 5.88 2.8 7.86 5.99 5.82 6.17 2.42 7.57 7.81 2.32 5.36 7.35 8.6 1.39 9.41 10.1 6.67 8.35 0 4.11 5.94 1.06 4.32 0 7.64 7 3.81 9.7 3.81 5.02 10.2 7.71 8.39 1.39 2.09 8.01 10.8 8.76 9.76 8.55 1.66 1.06 6.25 3.5 7.6 3.97 8.26 9.9 2.68 6.99 6.82 11.2 9.72 12.5 7.95 7.85 9.93 11.4 8.87 8.93 8.74 7.32 9.17 8.78 5.68 6.78 7.62 12.4 6.52 10.2 9.18 9.69 8.31 6.75 10.3 8.93 2.68 6.58 0 5.07 9.67 10.5 10.7 11.3 11.6 6.66 9.89 7.01 11.6 2.36 11.2 9.67 8.83 9.91 7.68 9.67 10.9 12.1 10.2 8.78 4.2 9.85 8.97 9.51 7.53 9.93 7.9 5.59 12.7 11.9 11.1 9.65 13 10.1 9.97 11.6 10.8 12.3 12.3 10.3 11.3 11 12.3 9.71 8.05 7.78 11.3 11.9 9.76 9.73 1.06 14 4.87 12.7 7.74 10 9.95 13.1 7.6 9.33 10.1 8.39 12 7.38 2.8 5 0.63 11.8 9.46 11.7 9.31 11.7 10.6 8.63 10.8 6.87 9.6 5.67 13.5 8.9 10.7 11.1 8.06 8 5.76 10.8 10.8 5.18 8.67 8.55 7.97 12.5 3.43 9.35 13.1 7.3 10.5 10.3 7.14 2.68 10.4 10.1 10.3 11.2 11.3 12.6 10.7 12.7 9.22 10.9 7.19 10.9 12.2 10.6 10.9 11.4 9.86 9.04 12 11.5 9.51 11.6 11.8 10.8 11.3 12.5 8.32 4.79 4.5 10.7 10.5 12.5 7.53 4.24 11.3 5.2 14 12 12 8.31 10.4 10.7 1.66 1.06 3.27 1.06 0 4.02 1.39 2.48 10.9 3.01 1.39 1.06 5.05 11.9 11.7 5.07 9.53 0 9.15 10.3 6.45 8.89 8.11 10.9 10.3 4.4 5.36 11.4 10.2 4.7 4.6 7.77 7.25 10.2 9.31 8.81 9.42 10.2 9.09 9.3 7.69 10.3 7.19 14.4 1.06 9.56 11.4 12.2 7.94 11.7 10.6 9.48 9.11 11.9 8.88 10.8 9.29 11.2 9.84 9.36 9.5 9.46 6.83 10.3 7.11 7.28 4.11 9.45 4.28 7.14 3.27 2.09 7.01 10.7 8.82 2.91 8.66 9.18 10.3 9.5 9.26 9.18 10.7 8.61 11.3 11.5 5.82 10.4 10.1 9.9 9.09 9.09 10.1 4.11 0.63 11.8 13.2 12.4 11.7 12.5 9.42 10.2 11 7.98 2.26 8.15 10.4 9.93 12.2 9.41 11.2 9.25 6.92 4.5 2.68 6.37 8.34 10.3 7.68 5.88 3.75 4.73 7.39 10.2 1.66 0 11.3 6.15 11.2 9.35 7.47 4.24 12.5 10.8 7.34 8.89 9.48 10.5 5.11 11.2 8.38 9.43 10.8 10.2 10.5 0 10.3 12 9.22 14.4 2.8 3.92 8.26 10.8 8.25 5.8 10.7 9.82 8.76 7.11 10 9.75 11.7 7.72 9.07 3.57 8.43 13.6 11 8.57 10.1 1.06 10 9.32 4.24 10.6 5.65 9.48 5 8.52 10.1 6.62 8.8 9.95 8.05 9.87 2.91 7.36 4.47 11.7 3.19 6.77 11.3 7.37 2.68 8.75 6.14 10.6 10 1.06 10.9 8.84 10.6 10.7 5.4 11.5 0.63 8.28 10.1 9.89 6.86 9.7 7.6 5.18 9.21 2.68 8.22 3.86 2.68 11.8 10.5 10.5 10.7 11.5 8.4 13.3 10.8 10.8 7.22 12.8 11.2 9.1 9.55 13.4 3.01 8.35 7.74 11.3 9.02 5.92 13.3 10.6 7.95 8.56 5.42 9.06 15.9 13.1 6.13 8.02 11.3 9.69 9.01 7.12 10.7 9.68 10.2 10.9 15.2 13.5 6.93 6.18 7.45 2.91 10.1 11.9 10.8 13.6 4.79 11 11.4 1.06 4.02 6.82 7.89 13.2 1.89 9.89 8.22 11.6 11 6.23 2.42 12.2 11.6 10.3 11.3 10.8 9.42 12.2 5.14 7.6 9.61 5.38 11.7 3.01 13.2 11.8 13 11.3 13.3 13.7 9.28 10.5 12.7 1.06 16.3 7.72 13.5 9.05 10.3 14.3 10.1 9.71 8.76 8.7 8.43 8.73 11 2.8 14.2 9.08 8.5 10.1 1.39 6.16 1.06 2.8 3.75 8.74 8.34 6.13 3.69 3.78 11.7 9.28 10.5 0 11.2 3.86 9.97 10.5 9.32 8.26 7.29 6.93 11.5 9.32 11.2 11.2 9.43 6.01 9 10.2 8.38 6.9 9.68 3.75 5.64 2.09 8.57 6.46 9.57 7.43 8.99 5.2 3.57 6.2 6.92 7.58 10.7 9.42 5.97 6.29 5.22 8 11.2 5.38 9.22 0 4.47 8.32 12.4 7.25 5.56 0.63 7.69 8.14 7.22 4.24 10.9 0 7.19 6.03 4.02 3.01 5.57 9.85 7.5 2.42 15 2.56 8.97 1.66 7.01 5.54 4.36 7.69 7.84 4.5 11.3 2.09 2.8 10.5 3.92 10.8 3.5 6.78 6.07 7.74 1.48 3.57 4.74 5.2 9.1 5.91 0 6.09 8.59 0 4.6 4.73 6.07 5.04 6.82 12.5 9.02 5.38 9.85 2.09 6.14 11.9 5.26 6.02 1.39 8.08 10.7 3.92 0 4.4 8.93 7.92 9.28 3.75 6.71 1.06 7.43 7.85 1.06 11.4 1.06 8.46 5.3 7.04 10.8 8.67 4.73 11.4 1.06 12.1 1.06 14.7 0 14.2 14.5 13 5.11 10 10.5 9.35 9.34 10.4 12.4 10.2 8.85 11 10.7 9.85 11.5 2.42 11.9 11.7 12.1 10 11 9.08 11 10.8 12.1 9.25 8.25 1.06 3.1 12.1 4.67 10.7 4.7 9.9 8.5 8.6 11 3.35 8.08 9.14 11.3 11.7 10.4 10.6 11.3 0.63 10.5 1.66 12.4 12.5 11.2 9.95 11.5 10.6 8.93 10.4 11.4 10.4 1.39 10.4 11.6 9.61 9.61 12.7 11.2 9.98 11.2 9.47 10.4 10.6 13.7 11 11 11.4 8.19 7.79 9.31 6.49 2.68 10 3.19 12.3 14.1 4.54 2.53 4.11 5.62 1.06 8.75 9.53 9.73 3.92 2.91 8.98 11.8 13.7 10.2 11.8 12.3 10.9 8.87 8.61 7.21 10.3 9.74 10.4 10.1 8.63 3.19 7.5 5.76 1.66 3.63 0.63 2.68 4.87 3.69 8.99 3.69 2.68 8.11 10.1 4.54 12.2 5.4 0.63 12.1 3.27 7.47 10.5 4.36 9.11 4.67 12.8 9.51 8.21 9.98 6.84 11.2 13.7 6.63 9.22 11 12.9 7.42 13.9 12.8 11.2 13.7 10.1 12.4 10.4 6.33 12.1 8.28 8.76 8.73 7.94 8.89 9.93 6.28 10 7.66 12.9 8.55 9.76 8.67 8.6 8.28 7.56 8.12 5.51 7.07 7.87 9.52 9.44 8.77 10.2 8.44 10.1 5.83 8.86 9.79 8.88 6.85 8.56 8.74 8.96 6.87 6.94 8.93 8.07 6.99 9.92 5.03 0.63 5.52 6.02 9.59 9 9.42 9.66 7.58 4.74 10 4.87 9.09 10.1 9.2 0 2.8 6.6 7.78 3.24 11.6 7.57 1.89 6.1 3.63 0 6.18 4.86 8.2 9.89 5.44 7.96 8.57 7.36 8.18 6.8 9.39 9.48 7.36 6.84 10.2 8.81 10.2 4.4 11.4 9.69 8.9 9.52 7.52 6.98 7.39 3.27 9.11 6.51 11 7.92 6.78 4.7 6.67 5.3 7.09 8.91 8.7 8.34 6.49 7.23 8.2 9.12 8.24 9.13 6.67 9.92 9.06 7.94 7.43 8.7 12 9.98 3.5 8.39 6.02 8.02 11.3 11.8 6.71 7.55 6.92 8.3 4.28 9.02 6.36 7.89 6.96 8.58 8.76 7.85 1.39 4.11 6.32 4.9 8.83 6.48 12.7 9.97 9.95 11.2 6.15 10.8 7.15 13 5.31 13.6 7.62 11.2 7.02 4.06 10.8 10.3 11.5 10.2 10.5 8.62 13.1 6.88 4.47 6.88 7.72 11.2 10.1 4.06 10.5 9.65 10.2 4.47 10.5 10.4 11.9 13.2 8.02 4.4 9.95 1.39 10 9.54 5.77 5 8.88 9.55 9.24 8.48 8.87 0.63 3.69 7.26 12 8.22 9.77 11.5 8.83 9.37 9.44 5.96 6.6 9.43 10.1 8.24 9.9 9.24 9.29 8.38 8.57 9.09 9.68 1.39 12.9 10.1 9.39 8.52 10.1 9.75 10.7 9.14 11.3 8.82 9.95 11.4 1.66 9.45 10.2 9.69 10.2 10.5 8.46 4.24 9.72 7.51 10.5 11.6 9.25 7.96 12.1 7.76 11.3 7.19 9.23 8.66 7.33 11 8.86 9.9 9.17 10.1 8.98 7.18 9.15 8.1 7.68 3.1 6.86 9.58 7.23 7.42 2.09 9.46 9.17 10.5 10.1 9.44 7.43 9.12 9.18 11.4 11.4 6.51 10.4 9.7 10.5 8.59 8.51 3.81 6 8.23 2.91 5.91 6.89 9.79 8.57 8.56 10.7 8.76 13.7 7.94 7.99 1.66 8.57 9.46 12.6 2.26 11.1 8.15 5.09 9.28 8.82 8.47 7.11 7.08 9.12 11.5 9.44 8.41 7.98 10.6 12.9 5.24 11 11.3 10.2 7.62 8.71 0 8.46 2.56 1.89 0.63 10.7 5 9.88 7.84 7.99 6.33 6.19 6.63 9.26 0.63 11.2 7.27 4.28 5.56 7.02 10.8 9.22 8.91 4.28 9.6 8.83 9.83 5.09 1.66 2.42 0 9.82 8.49 7.13 3.5 9.57 9.95 8.02 6.93 9.25 9.13 10.7 6.63 7.83 10.1 9.55 9.21 10.5 9.84 9.29 10.6 7.94 7.18 7.6 11.5 7.18 5.32 7.84 6.12 7.36 5.4 8.61 8.7 4.5 6.78 8.47 8.99 3.5 10.7 1.39 8.81 8.01 7.15 7.77 7.92 10.9 9.44 6.17 7.2 6.73 8.64 7.09 8.97 8.19 6.55 8.82 10.6 4.02 8.2 11 8.59 9.39 9.73 10.3 10.1 7.23 9.78 5.74 9.84 8.37 7.16 12.7 6.88 8.85 10.9 10.6 8.49 2.42 9.04 5.83 9.44 7.52 9.5 8.29 0 9.49 8.18 10.2 9.89 9.61 6.82 7.75 9.52 9.36 5.96 9.81 8.92 9.92 9.36 7.06 5.73 10.2 9.23 9.08 7.26 8.78 10.1 8.95 11.5 9.67 11.7 8.4 9.43 8.22 8.38 9.31 9.94 10.2 10 6.79 8.35 8.62 8.64 9.61 9.49 8.56 4.79 7.8 5.57 7.84 9.6 8.44 8.31 3.86 1.89 8.09 7.58 7.15 7.36 2.19 8.32 4.11 9.8 8.23 8.85 7.14 1.39 7.17 9.04 7.88 8.15 10.6 10.2 6.47 8.44 10.9 7.69 5.09 4.7 6.7 7.62 9.05 8.12 7.04 0 5.96 8.2 7.95 5.28 7.95 11.5 10.3 10.2 9.62 8.08 9.37 9.11 5.65 9.87 3.92 9.26 7.5 7.66 8.16 6.85 11.6 8.86 11.1 5.77 4.84 6.01 6.74 8.41 4.15 8.93 1.39 10.4 6.41 2.42 5.92 9.49 9.34 8.45 7.4 10.3 9.16 9.78 3.86 9.68 5.24 6.73 7.61 9.07 4.06 6.84 10.1 4.15 9.56 4.15 7.79 9.19 0.63 6.93 6.05 0 4.7 7.95 1.66 5.24 1.39 7.68 8.85 5.07 6.3 8.61 8.81 9.32 11.7 4.64 8.02 10 6.71 8.21 7.93 9.16 8.95 5.82 9.23 11 2.91 7.65 6.83 8.83 13.2 11.6 9.24 8.2 11.5 10.9 9.43 6.23 8.39 9.47 6.56 7.04 8.63 10.3 9.76 9.47 3.43 0.63 9.63 7.83 9.19 8.87 3.1 9.44 9.16 8.82 12.5 6.87 6.27 5.88 7.18 9.63 9.85 4.67 9.9 1.89 8.52 2.8 4.89 10.1 11 0 8.44 7.96 6.19 8.93 3.86 2.68 10.2 1.66 9.37 3.75 9.73 8.53 10.5 10.2 5.49 6.16 8.61 7.83 7.63 6.98 5.36 6.26 1.39 7.65 9.67 7.53 1.06 5.82 8.17 6.61 9.24 9.06 2.26 5.74 4.15 10.9 2.42 1.66 8.95 7.74 7.12 8.41 7.18 6.35 8.07 10.1 9.39 8.66 9.32 10.2 10 9.21 9.97 8.23 9.12 8.22 9.62 8.46 10.3 4.81 2.26 3.63 4.54 5.11 7.27 7.66 8.99 1.51 6.02 3.81 1.66 8.41 10.7 12.6 5.22 7.8 4.84 5.56 9.57 6.93 9.65 6.46 4.89 6 6.77 6.12 9.42 6.18 10.1 10 9.92 9.65 9.79 10.2 8.38 10.2 10.2 11 9.59 11.3 5.86 9.29 7.04 9.6 8.93 9.34 8.45 6.32 7.78 10.4 7.45 9.18 9.26 9.39 8.99 8.77 10.1 9.75 7.46 6.5 10.1 9.05 6.02 8.93 10.7 10.4 11.2 7.8 8.6 9.43 8.46 5 11 9.4 8.96 9.48 10.6 8.59 7.88 9.36 9.65 6.98 11.2 9.95 4.32 6.68 4.28 8.53 8.27 11 2.26 9.62 6.77 8.26 9.51 9.54 8.05 9.09 9.27 2.42 11 10 4.79 7.6 10.2 11.5 7.81 9.28 10 9.26 6.84 10.1 12 5.8 9.5 10.8 6.18 9.13 8.18 6.89 8.15 6.82 7.23 2.09 10.4 8.83 6.57 4.15 5.62 10.5 5.16 3.5 12.4 9.15 4.97 9.97 9.81 10.4 6.18 10.7 10.8 10.2 2.91 10 5.8 9.83 8.37 8.13 10.7 8.13 13.6 8.78 5.02 8.69 10.4 6.33 11.7 6.34 4.64 8.16 7.84 5.32 11.9 7.95 11.1 1.06 5.11 4.6 0.63 4.4 8.34 7.38 8.07 10.1 4.36 5.59 4.46 6.8 8.69 10.5 9.34 6.58 8.41 11.2 8.67 6.37 10.8 7.37 11.5 11.2 8.77 11.9 10.4 12.4 7.92 8.4 6.46 6.58 10.7 7.61 11.5 10.8 11.6 7.95 11.5 2.56 12.6 10.6 10.5 8.49 8.4 10.7 6.08 4.84 7.82 2.92 11.6 9 9.26 9.56 9.33 1.89 12 12.9 7.09 0 3.27 6.05 8.45 5.92 9.26 7.69 11.1 12.2 14.4 6.32 8.73 12.9 8.71 5.45 12.2 11.2 9.53 6.28 6.28 10.5 12.8 9.99 9.87 3.86 6.5 4.87 6.3 12 9.35 9.28 9.42 8.26 10.1 10.4 5.73 7.94 9.44 8.12 10.2 7.64 10.6 9.34 10.5 7.29 9.71 10 9.05 7.72 10.4 11 12.4 0.63 8.13 5.57 9.54 8.78 6.82 9.66 8.5 3.63 7.78 1.06 6.53 11.4 9.97 12.6 7.49 11.7 11.4 8.77 10.1 11.1 10.8 6.29 3.43 6.34 13.2 11.9 11 3.27 10 8.02 10.1 10.5 4.24 10.4 11.3 10.9 10.7 11.8 9.26 7.65 3.01 9.82 0 11.2 9.78 2.42 11.8 10.2 2.09 8.32 6.93 8.58 7.06 5.52 6.71 9.42 10.5 8.58 8.46 8.37 9.2 11.5 4.32 10 2.93 8.91 7.94 10.2 10.5 7.99 9.65 10.1 11.9 11.2 6.39 8.26 11.7 9.01 11.2 2.53 9.77 9.36 4.11 10.4 9.84 6.86 10 6.68 8.73 8.91 7.73 9.15 6.82 11.1 9.06 8.91 10.6 13 9.75 9.61 6.55 12.6 10.2 5.97 9.42 10.3 11.2 7.79 10.6 8.34 10.5 11.8 10.4 10.7 11.7 11.7 7.29 12.3 10 6.53 9.67 6.39 9.52 8.83 13.4 7.71 2.09 11.4 11.9 10.7 5.4 8.9 1.89 11.8 9.65 11 9.6 6.8 10.8 7.97 9.57 8.99 10.9 10.5 8.96 9 12.4 7.68 8.21 8.34 7.75 6.34 6.94 2.68 0.63 10.1 2.26 4.95 5.47 10.8 5.22 8.79 3.43 6.57 4.36 9.65 3.43 8.49 4.64 8.37 3.92 2.8 7.65 6.07 11.2 12.4 10.2 7.63 7.68 3.27 6.32 4.06 8.78 7.27 1.39 9.64 9.9 8.13 9.18 5.44 9.76 4.79 9.08 6.62 8.7 5.07 7.9 4.47 10.3 8.79 10.6 4.36 7.74 6.05 5.9 6 2.09 8.4 8.77 8.96 8.19 7.14 9.21 9.48 5.54 6.69 0.63 5.07 2.42 2.42 9.24 5.64 2.56 10.7 7.01 6.1 9.67 10.5 3.75 5.91 10.5 11 9.62 9.05 0.63 5.62 8.78 11.6 9.23 2.91 9.91 10.4 8.97 6.82 4.32 8.72 2.09 1.89 11.2 1.39 11 10.8 9.48 3.19 7.45 9.07 8.9 6.34 10.4 9.62 0.63 3.43 8.93 10.3 8.1 9.39 11.4 7.39 6.71 4.5 9.84 9.29 6.39 0.63 1.66 10.1 6.03 6.43 10.5 9.23 10.3 6.67 10.6 9.98 4.32 8.15 8.34 9.39 8.49 9.21 5.28 5.67 5.32 8.79 4.5 4.46 9.91 5.38 6.68 10.7 8.7 6.05 8.82 9.43 5.64 8.75 2.42 1.39 9.97 5.57 10.7 3.63 6.26 1.06 2.26 2.09 4.7 4.4 2.57 8.78 10.8 7.95 8.85 9.94 10.2 7.98 8.5 11.2 4.87 10.7 10.6 8.92 6.99 5.45 8.78 0 7.02 2.8 10.4 11.2 8.39 7.95 4.81 10.3 12.9 7.47 6.92 7.11 0.63 8.14 2.09 2.8 9.24 9.32 4.81 5.91 10.1 8.08 9.74 11.5 9.31 0 8.61 8.85 8.86 6.82 5.87 9.08 10.6 8.87 5.59 9.01 9.15 9.27 6.86 3.69 12 4.67 5.42 6.85 2.68 7.98 7.56 9.43 12 7.81 9.62 7.98 6.16 9.25 9.79 0 10.5 4.87 2.91 6.41 7.48 6.9 8.57 8.26 8.59 9.78 8.99 11.7 9.45 8.54 9.95 8.87 8.83 8.81 8.4 6.99 8.45 6.05 9.73 9.5 6.72 9.25 9.97 10.6 2.68 10.5 5.86 10.9 11.2 8.04 8.86 9.9 5.3 10.3 8.16 8.63 6.74 7.3 10.9 5.87 9.67 10.5 10.2 0.63 5.76 7.47 10.4 10.6 10.5 5.91 7.99 6.94 8.14 1.89 4.47 4.57 9.07 6.47 7.89 5.87 6.96 8.15 5.94 5.26 4.2 9.04 11.1 11.5 7.14 8.07 1.06 8.42 10.4 8.74 7.74 8.29 10.2 4.11 9.75 8.36 3.1 3.35 6.58 9.88 9.28 5.38 8.56 9.96 6.63 9 9 5.51 8.7 9.34 8.08 9.91 8.24 9.28 7.83 11.6 8.63 10.2 9.35 8.39 7.82 8.16 5.57 7.94 11 9.35 5.68 9.73 6.66 9.23 10.4 8.14 9.78 5.3 9.07 1.39 8.26 10.3 8.66 9.2 9.23 8.99 9.31 9.98 10.2 6.73 2.91 6.51 8.25 10 9.24 8.4 8.12 0.63 9.25 9.48 9.14 10.4 6.7 9.29 10.1 9.95 9.46 9.28 9.24 10.2 10.2 8.78 3.63 7.68 9.98 9 7.51 2.42 9.37 9.43 9.67 9.44 10.4 7.24 9.94 9.64 8.7 8.21 6.4 11.6 10.7 3.75 9.82 8.73 11 4.5 10.3 1.66 8.83 8.37 9.4 9.95 8.86 7.46 5.32 4.89 10.4 7.55 10.6 9.64 6.33 10.6 4.76 8.15 9.79 9.38 4.15 6.86 8.23 6.6 9.12 8.14 9.81 8.51 2.42 1.06 2.42 5.12 10.7 8.4 10 4.43 5.49 7.24 10.2 9.35 8.86 9.05 11.3 4.76 4.79 6.1 10.7 7.88 9.76 8.28 7.8 8.64 7.16 10 9.02 4.97 11.2 8.08 7.35 10.3 7.95 8.58 10.5 10.4 7.7 8 5.92 1.39 9.65 9.34 10.2 0.63 7.63 6.88 5.42 11 10 9.97 2.09 8.23 3.69 7.38 8.32 6.95 4.7 11.9 10.5 7.99 0 6.08 7.71 8.97 10.2 5.71 8.81 9.46 11.2 4.28 3.27 0.63 3.27 10.2 9.18 9.49 11.1 12.8 7.27 7.56 2.56 10.6 3.75 5.47 7.39 8.05 11.3 3.57 4.24 6.45 7.59 1.66 3.63 5.04 9.78 5.68 7.66 3.63 9.06 9.19 6.45 7.32 1.39 10.1 9.27 7.85 6.25 12.4 9.83 11.7 10.8 5.61 3.01 5.02 10.1 7.68 8.69 7.86 8.17 10.4 7.05 6.38 9.74 8.03 3.57 9.16 7.75 8.92 14.4 7.62 9.75 8.21 6.17 11 10.2 5.24 7.47 6.68 2.8 8.59 9.81 8.51 9.28 4.73 5.79 7.19 9.6 7.07 9.53 8.05 11.5 7.36 7.08 8.56 8.55 5.79 10.3 9.82 4.79 9.61 0 5.82 10.5 3.19 6.92 6.43 6.3 9.2 7.75 9.03 7.1 6.75 9.43 8.77 8.65 5.87 3.01 8.31 7.81 10.9 10.7 8.36 8.3 8.74 8.44 9.44 8.75 9.45 9.73 8.52 9.18 10.3 9.01 8.94 9.34 9.17 7.9 8.28 8.81 8.8 10.1 7.85 7.59 8.93 10.2 7.91 9.85 9.33 6.23 10.2 5.8 9.46 7.24 11 8.48 10.9 7.71 6.4 7.82 10 8.62 8.46 9.24 8.41 5 9.55 9.4 9.25 10.7 8.83 9.91 10.1 8.41 10.2 3.57 9.25 8.42 7.5 8.03 10.9 8.84 7.01 10.7 9.85 5.16 8.3 2.91 8.5 9.74 8.48 8.6 8.38 9.47 1.96 8.63 8.29 7.78 9.32 3.27 8.16 3.81 8.87 9.26 9.58 5.9 7.11 10.9 6.83 0 7.8 4.11 9.4 8.95 8.58 2.41 1.66 11.4 9.78 10.7 5.04 9.47 7.42 6.06 8.34 0 12.6 6.96 8.49 7.69 8.02 6.14 9.44 10.2 9.27 6.83 7.44 8.66 11.2 9.59 9.1 8.49 10.3 9.9 9.12 4.67 3.19 10.2 3.75 4.43 9.58 10.1 13.3 11.1 0.63 9.97 1.89 13.4 11.5 7.72 11.6 3.63 2.42 9.27 5.88 7.92 7.79 12 10 8.7 2.87 7.28 3.01 0 11.1 7.2 9.31 4.06 8.55 10.2 8.43 6.92 8.22 9.85 9.58 2.26 10 3.86 5.67 9.52 10.1 8.39 11.1 8.45 9.36 9.8 10.9 6.76 8.4 7.16 1.89 9.47 7.43 5.51 11.2 11.3 10.2 10.2 8.12 9.26 11 5.09 8.4 5.8 11.2 10.6 9.69 9.26 7.05 10.2 8.43 7.81 7.89 9.77 10.2 8.58 9.63 7.08 9.64 10.3 5.71 2.09 9.66 4.24 6.54 6.9 9.02 1.39 0.63 4.02 10 2.97 4.4 10.9 9.91 10.3 8.25 4.81 9.83 8.11 10.8 11.1 10.9 7.81 11.6 10.6 10.3 11 9.06 9.22 12.5 7.03 8.86 8.93 9.34 8.5 4.87 8.15 6.43 8.75 9.99 7.17 4.11 4.64 9.94 10.2 10 7.64 10.9 2.91 6.62 9.82 9.72 4.36 9.2 5.56 10.7 4.28 5.62 10.2 3.57 9.6 11.3 9.22 5.51 9.95 8.23 6.47 8.19 5.79 2.68 9.57 11.5 10.6 7.22 9.41 9.34 10.3 4.7 10.2 6.99 4.57 7.26 6.44 11.6 9.61 9.78 11.1 8.25 7.18 12.7 10.5 8.83 6.7 13 13.2 12.3 12.8 12.7 12.7 13.8 12.5 10.9 10.3 4.02 10.8 11.2 8.28 11.2 9.02 7.99 9.94 9.59 9.02 11.7 11.4 6.5 6.81 11.1 7.81 9.67 9.91 8.55 12.2 3.05 8.19 9.79 9.07 7.21 6.25 4.02 1.66 11.9 5.82 7.23 8.6 11.8 8.46 11.1 12.1 6.72 9.5 11.9 10 8.33 8.83 9.99 11.3 9.46 9.24 8.56 10.3 3.86 9.44 5.77 7.95 5 9.55 8.96 10.8 5.44 8.28 3.63 1.39 6.18 10.2 9.21 16.8 9.74 11.8 12.2 10.8 11.5 9.23 7.93 8.34 11 9.5 11.1 9.26 5.43 8.85 6.76 9.42 7.19 2.09 2.49 4.02 7.17 5.4 5.56 4.4 9.02 5.57 9.67 9.02 1.06 6.52 9.35 10.1 10.4 10.8 10.2 7.95 7.5 4.06 3.19 10.8 9.17 3.63 12.1 12.5 4.47 9.29 7.51 4.92 6.96 4.24 8.95 1.39 12.1 9.57 9.88 6.02 8.63 9.14 9.9 10.3 8.89 9.57 10.9 1.89 2.09 6.66 10.3 11.6 6.62 10.6 10.2 9.51 5.58 9.58 9.1 7.57 10.9 3.35 1.39 7.92 1.06 8.21 10.9 5.67 7.87 8.78 8.89 8.95 9.21 7.62 11.1 10.2 9.89 7.19 7.32 7.58 12.2 11 11.2 10.4 8.99 11.3 11.2 10.8 11.6 10.8 9.71 10.4 8.75 9.34 10.4 11.3 10.1 10.6 11.2 9.26 11.1 4.7 11.1 4.02 10.7 8.36 10.9 11 8.8 3.01 11.3 8.35 5.92 6.77 8.33 5.8 11.7 8.62 8.51 10.2 10.9 10.7 3.3 8.6 8.03 9.71 10.1 10.2 11.1 9.5 7.83 7.83 9.42 12.6 9.49 8.52 11.8 10.8 10.5 1.06 4.11 8.01 10.7 9.77 2.68 8.2 8.52 9.99 4.32 10.1 10.2 7.52 9.46 4.97 11.3 6.65 8.69 5.14 3.1 6.43 3.01 7.02 10.6 10.4 8.82 7.79 10.2 9.85 9.57 8.98 9.49 6.49 6.62 0.63 5.74 4.54 3.21 0 8.26 5.05 8.91 8.48 7.21 10.7 6.87 10.9 11.2 7.42 0.63 9.24 9.59 10.7 4.15 7.46 7.98 6.22 6.23 9.56 7.9 4.2 7.33 9.68 9.37 11.6 5.94 2.09 6.61 8.49 7.22 10.5 8.3 6.23 9.43 10.1 10.4 1.66 9.19 11.1 9.01 7.07 7.49 6.53 3.1 11.2 9.42 8.69 9.62 8.45 8.69 10.4 6.67 2.09 5 11.1 8.86 3.69 2.09 3.1 9.37 9.77 9.14 2.09 6.22 6.66 2.42 3.01 7.37 12.7 9.46 7.89 9.39 9.78 8.73 3.19 5.68 8.55 9.4 8.15 1.89 6.72 5.64 7.66 7.24 8.29 10.8 10.4 10.5 7.37 8.42 9.82 8.89 8.51 10.1 8.43 10.4 5.73 10.4 10.6 10.6 8.98 14.6 9.54 9.84 8.79 5.18 10.8 3.92 8.64 10.5 9.9 9.18 5.45 7.97 8.89 10.4 9.93 8.33 2.8 7.06 7.7 9.64 11.3 9.69 6.1 9.9 10.9 7.81 8.19 2.56 7.56 8.31 6.23 7.5 9.86 8.33 6.39 7.95 7.72 9.92 8.96 9.41 8.75 8.23 6.69 5.7 8.04 4.84 7.76 8.05 12.1 9.48 6.2 7.78 10.3 6.55 2.09 10.9 7.06 10.2 12.9 1.39 9.23 9.91 8.86 4.79 9.76 10.3 4.36 10.6 9.25 8.78 9.15 9.16 9.29 3.43 7.9 11.3 10.5 9.16 10.3 4.85 9.72 9.41 9.66 5.45 9.82 8.62 7.19 4.2 7.6 6.95 13.1 10.9 10.9 11 10.9 5.91 10.9 2.56 5.91 8.55 8.56 8.76 7.11 6.14 9.85 8.46 9.19 9.98 9.37 9.26 4.36 8.12 10.5 6.2 8.81 8.47 5.87 9.93 1.39 8.21 5.16 6.78 6.02 7.5 10.2 11.3 8.52 8.97 11.8 3.27 8.94 9.64 7.89 10.2 10.3 8.34 5.57 10.2 9.94 11.5 10.2 8.05 9.15 1.39 11.2 6.46 10.2 9.79 5.24 6.58 11.8 8.89 10.9 8.51 11.8 11.5 8.25 11.1 9.11 10 10.3 6.26 11.2 8.23 7.2 8.58 11.3 5.52 9.85 6.32 4.4 8.72 10.3 8.49 10.4 9.18 8.49 9.58 10.1 7.68 10.1 7.89 9.87 8.59 9.76 9.02 10.1 11 5 9.46 11.3 8.94 9.03 9.09 10.2 9.36 8.11 9.41 8.04 7.64 8.66 7.88 6.77 11.3 7.98 11 14.7 8.36 8.66 11.2 9.85 7.09 7.89 10.1 4.24 7.63 1.66 6.59 11.5 10.6 7.84 3.57 7.47 4.57 10.7 7.27 8.44 10.6 8.56 8.4 7.36 3.35 11.9 5.3 7.94 9.84 11.4 5.28 6.68 8.14 3.36 9.35 9.2 8.5 11.6 11.1 6.21 9.69 9.69 4.15 4.57 7.19 8.82 1.06 8.68 5.04 8 8.35 8.1 2.42 5.62 7.92 12.3 4.87 9.54 6.57 8.61 9.38 10.7 10.6 8.85 8.27 7.73 10.7 9.68 3.5 10.1 4.87 8.62 8.85 9.96 6.65 9.04 10.2 10.6 7.73 9.05 5.87 10.2 10 10.6 9.15 11.1 0 9.34 12.5 6.89 8.35 4.24 10.2 8.53 6.27 8.8 4.81 1.39 6.76 6.09 2.26 10.2 4.73 3.81 10.1 10.5 3.19 8.65 11.2 9.88 9.42 10.3 5.47 7.13 7.82 9.09 12 3.86 12.3 5.4 6.66 11.6 9.01 10.2 11.3 8.74 4.32 11.5 3.75 5.94 2.42 11.6 7.53 1.06 9.04 10.1 8.4 10.7 8.63 11.5 10.2 9.05 7.5 5.09 10.4 9.62 4.12 7.51 10.6 8.38 9.73 11.4 11.1 7.8 10.2 10.4 9.49 5.88 9.86 9.09 11.1 8.55 6.33 5.09 9.81 10.2 8.81 9.97 9.34 7.92 10.6 11.2 11.7 8.16 6.94 10.4 12 8.79 6.84 9.72 9.23 1.66 9.57 9.19 11 8.21 10.6 6.8 9.33 11 7.36 9.14 8.49 6.05 11.1 11.2 4.54 2.42 7.88 6.83 9.8 8 10.1 2.33 3.01 8.25 8.4 10.2 7.37 4.79 9.66 7.44 9.66 7.32 7.24 8.01 9.78 11.6 8.02 8.21 4.79 6.14 6.99 10.9 7.37 9.54 8.23 11.8 9.77 8.41 10.2 4.11 10.4 9.8 9.78 10.5 9.63 8.68 10.7 6.43 10.3 9.43 0.63 11.2 8.79 8.57 9.66 5.94 9.16 10.8 10.5 4.86 12.1 10.4 11.4 6.84 3.35 12.2 13.8 3.5 8.73 6.39 10.5 6.48 9.44 4.64 7.26 0 5.76 8.1 5.7 9.13 10.7 11.8 8.25 0.63 11.7 7.49 9.52 8.44 6.07 7.47 9.76 4.36 3.87 0.64 10.2 6.23 8.16 10.5 5.07 9.41 8.69 10.9 8.49 11.1 11.6 2.56 9.94 9.73 6.31 10.1 7.19 6.94 0 9.87 0 11.3 7.63 8.58 7.25 8.99 9.7 10.7 5.9 5.57 2.91 8.15 9.14 8.91 9.61 9.7 7.82 10.8 8.39 7.93 4.95 10.5 7.87 7.39 3.63 8.78 10.2 10.1 6.09 9.73 8.48 1.89 9.41 8.14 7.39 9.86 9.71 11.2 10.8 8.91 9.23 8.76 7.79 9.98 3.1 9.75 5.65 9.72 9.83 4.02 12.4 7.83 9.42 6.01 8.97 4.36 11.5 7.5 10.3 10.1 9.2 5.18 7.36 4.28 6.81 10.9 4.11 9.91 6.73 8.78 9.27 8.46 7.58 10.7 12.9 10.5 7.97 12.5 7.61 7.72 8.9 8.68 9.44 8.07 9.05 7.39 9.84 4.11 9.28 8.49 8.75 9.55 9.71 5.09 7.01 9.52 11 5.38 10.5 10.8 9.05 5.71 9.49 9.21 7.47 2.26 5.92 7.84 9.68 7.03 8.15 9.16 10.1 11.2 10.4 7.84 7.32 10.7 0.63 9.35 11.6 10.5 4.02 8.02 6.27 8.14 10.9 10.1 10.9 10.6 7.59 1.06 11.9 11.5 6.79 8.91 9.61 11.6 8.92 9.07 10.7 9.53 9.94 10.6 10.8 10.7 10.8 8.01 11.5 9.29 11 8.67 9.74 6.37 11.2 9.91 2.68 6.82 10.3 6.12 9 8.82 6.88 10.4 11.5 12.1 10.3 8.96 10 11.3 11 11.4 9.47 2.26 8.31 9.77 9.65 11 7.65 8.77 7.24 10.2 7.83 8.36 9.07 11.4 10.2 11.1 9.3 6.18 8.98 12.2 9.75 4.43 9 11.7 10.9 7.8 13.1 11.4 9.84 2.42 12.4 9.64 12.3 12.5 9.5 7.49 8.01 10.7 5.82 11.3 10.9 10.1 7.94 10.9 8.9 11.1 8.13 5.09 4.64 1.39 11.8 9.15 10.3 11.7 6.01 3.27 11.5 9.48 5.73 11.1 10.5 9.54 11.7 11.2 9.19 8.18 11.1 10.4 10 6.9 7.54 10.9 6.39 9.94 8.77 10.8 8.48 11 8.85 8.58 10.4 11.3 16.5 9.47 10.9 10.4 9.72 11.2 6.71 12.2 13.5 9.83 2.09 10.9 10.9 9.77 9.66 11.3 8.19 10.6 11.3 13.2 9.4 10.8 10.8 10 9.95 8.17 8.42 11.2 12.2 8.54 10.7 9.66 11.2 10.1 10.5 9.68 12.1 10.8 5.02 5.49 4.87 11.4 9.95 8.83 12.2 9.82 1.39 9.37 4.28 11.1 8.98 9.72 11.6 9.01 3.97 12.3 1.66 7.63 4.79 16.8 6.93 2.8 9.78 11.1 10 9.64 10.4 10.2 10.7 8.81 9.2 11.2 9.19 11 11.5 8.46 8.55 11.2 8.71 12.8 7.47 7.78 10.2 10.8 7.48 10.3 9.52 13.8 9.62 7.96 7.96 11 8.46 11.8 7.96 11.6 7.28 13.6 6.97 11 9.05 11 6.19 8.83 10.2 11 7.83 11.1 12.1 11.9 11.5 10.7 10.6 11.3 6.95 11 8.22 12.7 6.6 11.3 11.1 9.48 10.9 10.7 8 11.3 11.4 9.79 12.5 10.4 3.75 10.7 11.3 6.1 9.8 11.7 11.6 9.77 12.1 10.2 0.63 10.9 7.69 9.66 10.7 9.37 10.7 9.93 9.46 10.2 9.03 9.44 11.3 8.85 10.8 9.74 11.5 6.53 7.57 4.6 9.41 10.4 9.48 5.59 9.64 6.73 8.93 8.48 9.98 10.8 8.23 9.34 9.3 8.2 10.7 10 11.1 6.98 10.2 8 9.02 10.9 8.37 7.42 4.4 10.6 8.44 10.2 9.92 11 11 4.15 7.81 7.81 9.92 11.4 10.9 10.2 10.4 10.1 9.88 10.5 11.8 11.5 10.9 10.6 10.9 10.6 12.2 9.05 11.4 9.52 9.08 6.02 11.3 8.88 11 5.26 7.83 9.39 8.46 8.84 10.3 12.1 7.83 9.69 5.64 5.74 9.53 10.3 10.3 10.3 7.06 10 11.3 10.8 10.2 8.74 9.61 8.32 10.3 3.01 5.32 11 11.1 11.3 5.56 12 10.5 9.8 10.9 9.43 9.13 10.5 9.49 10.7 10.8 10.4 10.8 7.05 10.1 8.37 8.88 10.6 11.9 11.5 4.36 7.43 7.03 9.97 7.05 7.87 13 8.4 7.51 10.5 5.02 6.85 6.39 4.11 10.6 10.5 9.12 12.1 11 3.19 4.81 11.8 10 10.9 11 4.39 11.3 9.23 9.3 8.57 10.4 12 9.88 8.35 10.2 8.57 12.9 10.2 10.1 6.45 10.7 11.9 2.42 11.2 9.32 9.3
+TCGA-68-7756-01 5.82 8.46 6.96 7.67 7.35 8.94 1.16 3.13 3.09 1.35 2.04 8.48 5.43 4.36 5.14 8.74 11.1 9.97 9.12 10.3 7.97 12.9 9.26 1.66 10.3 7.59 4.64 9.09 4.51 5.65 2.74 8.02 4.98 1.16 3.08 3.2 0.39 6.01 1.51 3.71 4.36 3.53 5.74 0.7 6.54 2.91 1.16 4.07 11.5 5.08 2.42 5.14 9.12 10.3 5.97 0.95 5.43 1.8 5.38 5.94 6.75 5.08 7.87 4.27 2.57 1.16 5.93 4.52 9.42 4.59 4.87 7.05 2.33 2.91 4.74 3.18 5.26 5.62 3.88 1.35 3.95 1.35 2.31 8.41 4.52 2.24 6.02 2.5 3.08 2.97 8.53 3.02 7.36 5.04 4.65 3.49 2.57 3.32 3.49 5.12 0.7 3.64 2.78 5.32 3.78 4.62 6.67 9.06 7.14 5.6 0.7 3.13 8.01 4.52 5.26 2.33 2.64 4.82 0 5.24 7.66 6.8 0.7 3.02 0.95 7.47 3.13 2.03 1.16 12.9 2.52 3.18 4.85 8.28 2.97 0.95 3.81 1.16 3.63 8.64 9.85 10.1 2.78 3.67 4.12 11.3 0 11.2 2.4 4.97 5.11 0.39 7.3 10.2 10.8 2.78 2.85 2.09 8.89 2.65 6.55 6.98 3.49 0.95 9.83 5.86 5.38 4.27 8.45 1.16 9.64 9.28 2.57 3.93 3.08 2.14 4.24 4.69 8.05 5.65 4.79 7.49 3.84 4.6 5.27 3.36 2.33 0.39 8.2 5.16 7.92 9.05 4.65 4.24 4.65 6.69 3.84 8.71 8.41 8.18 10.8 9.3 9.4 10.7 7.01 8.95 7.05 10.1 10.8 11.2 7.16 9.99 11.5 11.2 10.8 11.7 11.2 10.5 7.04 10.8 8.37 9.64 11.5 10.4 8.05 8.46 2.42 10.9 9.18 12.3 10.6 2.65 9.56 10.6 8.55 8.24 9.47 7.77 9.55 3.84 10.9 7.43 11.9 11.6 12.6 12.4 12.9 12.9 6.88 12.4 9.76 0.7 6.93 9.39 9.31 12.3 11.8 12.7 0.39 13.5 2.5 9.4 8.64 10.2 10 10.9 7.45 10.4 11.2 11.4 9.61 6.91 8.76 9.13 12 7.79 3.27 13.5 10.8 10.6 13.1 12.8 10.9 8.05 9.24 10.9 10.5 10 11.5 9.41 4.5 3.99 9.78 7.19 9.86 10.8 6.26 12.7 7.02 8.97 9.8 11.1 10.6 8.03 10.6 12.9 4.7 9.5 8.2 7.81 13 10 10.9 9.14 6.53 10.5 10.4 6.34 9.73 7.3 9.59 10.2 9.96 8.38 10.5 10.7 12 9.92 10.1 8.24 10.7 9.06 12 8.92 10 11.4 7.92 8.49 7.19 9.2 10.8 12.4 8.91 10.2 8.43 13.8 11.4 9.79 11.7 10.1 11.2 5.47 9.62 0 3.32 9.07 8.6 11.6 1.35 4.85 6.26 10.8 10.5 11.2 8.21 6.68 8.18 9.16 6.42 7.57 4.69 11.8 10 11.7 10.1 7.22 7.71 10.1 3.13 8.15 8.98 9.14 8.34 9.1 10.4 11 5.12 8.35 9.33 9.85 8.97 8.28 12.3 9.43 5.9 10.9 10.1 5.55 6.9 6.25 6.5 10.3 10.3 8.95 9.39 10.3 10.1 12.7 11 9.66 6.82 8.35 11 8.37 8.48 10.4 9.69 10.1 8.41 6.6 9.15 10.7 6.69 11.7 6.17 10.6 9.78 9.93 2.43 10.8 11.8 12.6 11 8.64 6.79 7.04 7.09 8.48 7.25 9.36 9.99 11.8 9.95 2.03 11.4 8.37 6.81 7.06 2.33 9.54 4.62 6.68 5.84 11.5 8.98 8.54 8.13 10.7 10.1 5.61 7.64 9.62 12.3 3.99 10.2 8.66 3.81 4.76 4.6 8.58 6.64 4.07 9.41 5.71 9.99 9.26 7.89 9.95 9.24 7.75 14.4 10.4 2.3 8.42 11.1 6.07 13.4 7.43 7.72 5.54 3.08 9.37 8.94 5.88 13.4 8.52 6.38 10.1 8.19 14.5 11.5 14.2 8.02 9.32 8.72 10.4 6.68 8.09 7.95 12.4 0 10.4 7.14 13.2 7.41 9.94 11.8 10.1 10.2 10.9 6.81 10.3 9.88 10.4 9.79 9.99 8.52 9.49 9.13 7.75 9.84 10.5 11.1 9.39 9.73 11.7 7.78 7.8 10.1 9.06 10.6 10.4 7.62 11.8 8.88 0.39 9.79 8.03 10.8 9.24 9.13 10.1 13.1 11.6 9.06 9.51 7.95 5.46 9.66 8.21 8.43 9.86 9.86 9.83 8.92 4.9 9.04 8.1 10.1 10.5 9 11.3 10.7 9.3 9.18 12.1 10.3 10.8 10.3 1.51 13.4 9.82 10.7 10.7 11.7 12.3 11.9 11.1 8.56 10.3 10.1 8.86 1.16 8.97 6.46 7.89 8.54 9.33 14.4 10.5 10 9.72 11.1 8.7 3.84 7.43 12 9.96 7.21 12.8 9.57 10.1 9.89 12.8 10.2 12.5 11.5 9.93 1.16 11.1 8.95 8.62 8.72 8.82 8.31 6.52 10.9 10.2 11.2 12.2 10.1 8.04 10.9 10.4 11 11.4 12.3 11.5 10.2 11 8.75 8.2 10.8 8.13 9.45 9.2 9.22 6.4 6.55 10.7 10.9 2.33 9.86 13.6 9.49 5.74 10.3 10.1 12.7 12.5 12.2 13.1 4.77 10.7 7.49 7.19 10.9 8.54 0.39 8.9 8.21 10.7 11.2 8.19 9.63 13.1 7.05 6.78 11.3 7.94 9.49 9.29 4.6 10.6 11.4 9.7 9.9 10.4 11.1 11.2 7.22 10.6 10.5 9.72 10.8 10 13 8.32 7.9 8.31 6.9 8.8 12.2 12.6 12.7 11.1 8.13 10.5 13.5 11.5 1.66 10.3 7.9 7.16 2.67 5.82 10.5 7.44 6.57 11.5 10.4 5.53 9.57 11.6 13.3 9.68 5.9 12 11.3 9.24 10.4 0.39 6.13 10.3 3.9 7.7 7.15 6.12 10.7 9.48 11.3 5.53 6 7.75 10.3 9.58 9.33 1.51 6.39 10.5 7.65 0.39 3.9 11.5 10.5 5.04 3.57 7.67 2.65 9.38 10.6 8.91 0.95 8.08 14.4 8.33 11.8 11.5 10.1 11.3 13.1 8.78 11.8 8.32 7.66 3.84 9.37 8.17 2.33 0 1.16 9.17 6.7 11.6 0.7 8.15 9.69 3.57 3.23 12.3 13.3 5.83 7.85 11.5 10.1 2.85 11.3 9.45 11.8 11.2 10 11.9 10.4 10.1 10.5 8.54 9.05 12 8.84 6.81 8.72 8.54 10.7 8.3 12.6 7.16 8.22 5.46 6.22 7.69 11.1 7.58 2.03 4.65 13.6 9.56 0.95 8.25 8.04 9.96 11.3 9.44 5.69 6.49 9.6 2.24 3.74 6.12 9.06 6.59 7.46 7.74 9.13 2.42 5.61 0.39 10.4 9.47 6.68 11.7 10.5 9.21 5.08 10.8 11.6 1.51 6.83 5.11 9.59 9.13 9.29 10 9.14 9.82 6.35 5.29 6.01 3.74 7.92 0 3.53 10.2 10.1 0.7 3.32 12.7 5.7 9.36 7.78 6.27 2.57 10.4 9.41 10.7 10.3 4.34 9.79 9.06 8.98 11.9 9.74 9.84 9.6 9.73 8.93 0.7 6.28 5.98 12 9.73 10.8 1.66 10.1 10.2 11.4 10.3 11.8 8.33 8.29 10.8 10.9 9.84 2.72 12.1 2.14 11 4.69 10.7 10.4 7.86 1.8 9.28 11.6 12 10.8 9.34 9.99 11.7 9.69 11 10.7 10.6 9.82 11.4 13.2 10.6 12.9 11.2 12.5 9.28 12.2 8.29 7.85 9.25 10.6 12.7 13.5 13.1 10.3 10.7 9.73 8.73 9.33 10.9 8.71 9.08 11.6 7.1 11.9 10.2 11.5 11.3 5.04 0.39 12.4 8.83 9.25 6.16 10.4 8.28 6.19 9.43 8.64 8.08 2.69 2.42 9.08 9.43 2.85 12.2 9.1 10.4 9.09 9.01 6.72 7.12 7.35 10.7 7.28 2.65 6.92 2.5 4.27 9.69 11.8 7.92 13 6.64 7.85 10.4 10.4 8.07 8.94 10.4 0.7 9.11 11.8 9.38 10.9 10.5 9.9 9.72 13.7 10.3 11.7 10.4 7.28 1.8 9.01 9.8 7.98 9.35 7.95 7.1 11.9 9.53 9.56 10.6 10.3 3.74 10.9 11.3 12.7 9.51 8.09 10.5 10.4 6.67 4.48 9.23 3.67 6.37 8.35 11.6 8.41 12.7 7.86 8.49 10.2 8.4 4.22 9.86 8.48 9.4 9.69 7.56 11.2 9.74 9.22 10.3 8.98 7.93 9.76 2.24 7.71 9.19 8.89 3.27 9.83 0.7 8.01 7.68 11.5 1.66 10.3 10 4.4 11.4 8.84 10.2 2.33 7.48 6.9 6.68 3.27 7.67 8.92 9.5 6.06 7.07 3.45 9.82 7.78 8.53 8.28 11.7 10.8 10.4 4.88 9.41 9.78 9.06 12.1 10.1 9.17 6.84 7.53 11.8 7.55 5.17 12 10.9 8.03 8.78 9.17 11 7.08 10.2 6.23 6.52 8.62 12.4 10.1 0 8.56 10 8.01 7.95 9.24 10.2 11.8 8.76 8 8.32 8.35 4.85 9.25 10.3 8.92 12.2 9.39 9.02 8.97 8.82 2.12 8.71 8.68 11.9 4.02 13.7 12.2 9.57 8.4 8.11 8.85 10.9 6.92 9.76 10.4 9.91 9.05 6.87 10.8 11.7 5.37 8.21 9.67 9.39 6.08 9.32 8.43 5.42 7.77 3.93 8.77 8.6 9.74 0.39 1.52 11 11.6 7.82 9.36 9.65 9.86 8.12 11.4 6.99 11.8 5.72 10.4 5.78 8.3 8.08 10.3 9.46 8.98 4.91 1.16 4.13 8.05 11.6 8.36 8.75 8.34 2.91 9.85 8.44 10.5 8.36 7.14 1.35 7.12 4.17 11 9.26 8.07 7.21 9.02 8.99 7.21 9.99 10.9 9.01 9.68 7.99 10.2 8.3 8.55 10.7 9.39 6.73 9.11 6.64 11.2 9.76 7.87 14.4 11.7 7.51 10.8 8.1 4.17 10.4 5.47 0.7 9.28 9.09 0.95 7.83 10.9 10.5 10.8 5.07 8.49 10.1 11.6 10.5 7.64 7.78 6.34 8.07 11.6 10.9 1.66 11.9 10.4 11.5 8.58 11.8 10.8 12.3 12 7.08 8.11 9 0.7 11 10.8 10.2 10.2 9.38 10 6.3 11.3 1.16 11 7.12 6.32 0.95 5.86 4.46 7.15 6.78 2.67 6.2 8.05 9.54 5.96 6.57 8.54 10.5 2.24 9.46 0.7 7.65 7.66 1.35 4.42 10.6 3.36 2.33 1.51 6.94 8.47 4.88 3.18 7.76 4.21 5.14 0.39 3.36 6.64 3.74 8.67 6.18 9.34 8.76 7.47 0.39 9.16 6.8 5.84 10.8 7.48 10.9 9.35 8.34 2.14 10.2 4.93 6.06 9.43 5.86 7.12 6.62 3.67 7.09 0.7 6.29 4.6 3.57 6.76 11 0 7.84 8.5 5.24 6.39 9.55 8.17 5.09 8.08 10.6 10.7 9.51 9.2 9.38 3.64 7.19 1.35 9.6 4.52 9.85 13.2 7.71 9 7.38 9.76 9.56 8.06 5.59 9.34 9.35 8.73 8.33 7.34 9.72 9.79 8.33 6.17 0.7 6.36 5.59 11.3 8.16 10.3 8.61 4.07 4.79 8.05 6.87 9.84 11.2 5.9 2.42 3.02 9.97 9.03 8.29 5.78 8.14 8.55 9.93 10.3 6.73 8.97 7.67 3.67 7.19 0.95 3.36 5.55 5.64 5.69 8.01 9.3 4.74 8.35 4.8 2.5 4.58 8.86 8.22 0.7 10.2 9.6 1.51 6.24 7.54 4.7 3.57 8.27 6.92 10.4 9 7.01 9.46 6.67 10.1 8.18 10.7 8.14 10.6 11.2 3.23 7.6 7.9 8.9 9.01 9.44 8.58 8.12 9.44 2.03 9.82 6.64 5.09 0.95 9.36 3.74 9.55 4.04 4.38 2.57 2.42 2.9 9.91 0 0.39 9.09 10 7.05 9.48 8.37 1.16 4.46 9.07 5.85 10.1 9.37 2.03 8.11 8.97 3.93 2.91 9.46 8.86 11.5 6.09 8.77 10.2 7.58 2.33 8.23 4.54 2.97 3.13 9.28 8.87 1.92 10.6 6.3 6.59 6.68 13.7 10.2 10.8 0.39 4.7 4.24 10.3 9.69 5.44 7.57 11.5 3.81 7.05 9.77 5.69 7.13 9.75 7.68 8.98 0 7.51 1.16 8.03 1.8 8.83 8.99 6.97 2.65 8.77 10.4 4.91 1.92 6.19 7.67 5.55 8.93 7.86 8.39 9.33 7.98 9.49 7.34 7.3 7.95 14 13 7.59 1.51 5.71 8.6 7.65 4.84 10 10.7 8.47 5.03 9.23 3.6 6.39 9.83 11.6 12.5 11.2 9.34 6.84 3.36 9.68 5.83 8.87 8.47 4.15 6.82 8.19 8.43 10.8 4.02 11 11.4 2.57 1.92 7.42 12.1 10.3 10.2 9.53 5.3 7.48 13.9 2.14 9.34 9.43 4.12 6.65 8.6 10.2 9.37 7.47 10.7 0 0 1.66 5.9 5.27 7.26 4.9 6.84 5.46 9.35 7.56 4.58 8.42 9.58 7.71 3.49 10.6 9.5 9.39 3.08 8.77 8.36 5.58 9.83 7.29 8.02 10.4 2.24 8.97 3.13 9.4 2.14 8.14 5.04 7.72 7.19 4.04 7.69 6.66 5.66 3.74 5.95 9.94 4.79 3.23 8.32 5.04 3.78 8.63 10.2 4.1 8.29 1.91 9.56 0.7 7.07 8.35 7.1 2.03 3.45 8.57 7.17 5.92 0.95 9.04 9.83 4.02 5.28 7.16 8.92 7.55 10.1 9.06 5.15 8.83 8.78 8.53 11.8 11.2 5.33 1.51 8.71 9.72 8.29 5.48 2.03 5.71 10.5 9.07 4.53 3.57 0.95 6.08 0.39 7.67 10.1 8.37 10.4 6.44 8.25 10.8 4.77 10.1 10.3 6.08 8.39 9.06 6.59 4.91 13.2 7.87 7.64 3.24 9 1.8 7.93 9.26 0.95 6.84 3.08 6.57 10.3 5.49 9 8.7 1.16 6.64 5.57 5.12 3.41 8.29 5.6 7.08 8.5 5.5 9.7 2.57 1.66 9.43 2.78 1.92 1.8 3.87 7.45 6.55 9.67 8.53 9.93 6 10.2 9.84 5.34 10.2 9.74 6.93 6.71 5.03 8.2 6.63 5.82 6.83 8.26 12.7 7.99 2.03 11.4 6.55 3.02 2.91 6.72 8.75 11.3 7.62 8.07 9.14 5.08 2.72 3.57 0 4.6 1.16 11.1 2.03 8.09 0.39 3.33 6.98 8.07 8.9 9.18 4.27 2.14 11 9.37 5.13 7.27 9.08 3.12 9 10.7 2.65 6.26 0.39 9.27 16.9 5.62 8.14 7.29 16.1 10 6.45 1.35 5.53 8.61 4.27 12.1 0.95 7.95 8.25 16.6 3.13 7.92 13.4 1.66 8.17 2.14 8.74 10.7 9.55 8.84 1.8 9.57 5.25 6.96 7.67 13.7 6.96 6.86 5.69 2.03 7.33 7.54 7.39 4.02 10.3 11.3 4.76 10.6 3.41 4.24 12.1 9.33 13.8 8.6 8.94 12.8 3.96 7.44 12.7 8.19 13.6 9.11 4.48 14.3 8.11 13.9 8.31 8.17 10.8 1.35 8.2 8.88 8.25 7.1 11.1 8.96 9.22 6.31 7.47 5.45 2.33 7.54 6.95 7.67 4.36 0.7 10.1 4.76 11.6 10.7 4.76 4.82 2.65 8.24 12.4 9.61 5.29 8.07 5.8 5.42 9.84 8.33 1.16 9.23 2.78 5.88 7.73 10.3 5.37 8.84 10.9 6.28 2.91 13.5 1.16 9.15 7.45 8.52 6.8 8.27 2.24 2.5 0.7 2.72 8.89 3.67 9.21 8.65 7.46 11.4 12.5 8.88 3.87 7.36 11.7 0.7 8.87 11.7 8.17 11 9.49 7.13 1.35 10.6 8.37 1.16 9.72 6.33 1.35 7.51 9.34 6.45 7.37 6.19 7.73 0 0.85 7.14 10.7 7.14 6.33 1.66 4.48 3.03 8.34 8.25 6.33 12.1 7 7.68 8.38 6.61 10.6 3.27 7.35 3.02 11.3 7.01 1.8 6.2 6.62 4.85 9.45 5.57 5.82 10.3 9.07 11.4 9.27 2.03 3.81 8.9 5.69 11.3 4.04 8.59 10.1 11 7.8 9.08 6.85 7.24 6.82 6.97 9.45 3.57 8.02 10.5 9.35 0.95 6.9 9.51 6.32 7.75 11 3.68 11.1 7.83 6.48 11.1 11.6 11.4 9.31 2.88 5.84 8.6 11.9 6 8.29 3.08 9.29 2.5 10.2 13.2 1.8 9.14 6.09 9.81 7.38 1.35 12.4 2.78 2.57 9.23 2.42 2.5 13.3 7.77 12.4 8.64 9.97 4.98 5.18 7.92 9.38 4.62 4.72 7.3 11.6 9.69 7.07 9.05 7.54 8.69 5.11 5.61 5.98 8.84 0.39 4.65 11 5.91 2.72 10.3 4.97 2.33 6.39 4.6 7.94 10.2 7.61 0 6.01 10.3 7.7 4.9 5.19 9.96 8.91 7.4 5.56 10.9 8.77 2.65 10.8 9.87 8.58 1.66 9.42 8.03 2.33 7.51 5.09 7.84 6.63 11.3 11.5 5.64 7.96 2.03 10.3 7.8 5.58 11.6 11.8 5.51 7.47 0.96 9.96 8.78 8.81 5.85 9.03 9.11 3.36 4.76 7.18 13.2 5.03 3.84 9.26 9.97 4.88 3.74 6.53 6.18 4.58 0.39 9.48 4.33 3.38 2.97 8.54 6.83 6.73 4.79 7.58 8.02 5.2 8.66 10.4 8.22 9.26 7.8 1.51 10.4 9.42 4.29 13.5 9.81 4.58 6.16 7.89 6.28 4.31 4.82 9.9 2.5 9.82 0.39 11 3.02 7.19 7.3 1.8 0.39 11.6 8.76 5.48 2.91 1.51 2.5 0.79 3.53 4.15 7.45 9.46 0.95 8.92 10.4 8.22 12.3 8.64 10.4 11.8 6.71 3.96 10.6 12 8.02 8.72 8.11 9.78 2.5 4.79 8.26 9.86 4.45 6.32 7.27 6.38 8.86 10.3 7.61 9.59 0 4.12 9.88 9.45 9.61 10.5 9.45 7.04 7.7 2.65 5.58 6.86 8.09 2.85 6.99 12 8.23 9.45 9.52 9.92 3.32 0.7 8.94 2.5 10.8 11.2 11.6 4.15 7.29 4.02 8.95 4.87 8.11 7.74 11.4 8.48 7.66 12.7 2.42 3.71 6.66 12 1.92 7.85 11.6 5.75 1.66 8.11 5.76 10.3 4.4 6.75 7.37 7.76 9.24 11.1 7.57 5.38 5.33 5.28 1.8 6.43 9 3.49 8.6 4.91 2.97 11.2 8.85 6.67 8.2 0.39 3.67 7.97 12.5 4.52 1.16 9.94 1.92 4.8 0 5.07 0.39 8.91 5.14 6.08 8.46 3.18 12.2 6.7 6.69 5.37 9.73 2.57 8.9 3.41 10.9 8.48 6.48 0.95 5.79 0 6.8 5.32 1.16 0.39 9.64 5.6 0 5.12 1.16 9.12 1.35 8.34 0 8.74 9.5 6.73 9.04 3.74 7.89 11.2 5.57 11.8 4.69 7.55 11.5 8.6 10.7 8.66 9.58 4.4 0 7.82 3.36 6.66 8.04 12.7 5.01 13.3 9.43 5.27 8.1 2.65 2.78 1.92 4.74 7.14 7.52 3.71 9.44 8.5 7.83 1.35 10.8 9.86 6.9 7.48 7.12 4.22 4.27 0 9.43 7.42 8.56 4.17 5.78 6.49 3.18 4.34 7.74 8.51 7.59 9.71 4.87 5.69 8.27 6.75 8.18 5.68 0.7 6.08 5.69 4.42 7.97 6.34 4.87 5.54 4.52 3.93 1.92 7.29 7.9 2.57 8.49 5.82 8.37 3.6 8.68 10.2 6.88 6.36 8.81 6.95 1.35 11.1 2.42 0.95 5.37 9.73 10.9 6.44 1.35 9.98 4.97 6.88 10.4 2.42 12.8 9.57 0 9.12 6.09 5.58 2.24 6.67 0.7 3.18 5.18 7.32 8.72 7.45 7.23 0.7 7.22 7.43 6.34 2.91 12.8 11.3 3.81 9.03 5.08 5.25 13.1 9.06 10.7 0.39 5.32 13.8 0.39 4.77 11.4 0 0.7 1.16 0.7 4.15 0.39 8.87 1.92 1.92 7.93 9.25 7.14 7.1 10.7 1.93 4.72 6.32 8.66 7.82 7.14 6.65 3.27 10.6 8.03 9.34 1.66 5.44 2.85 9.4 8.26 12.3 4.56 6.36 7.29 7.15 4.38 8.42 5.37 16 9.09 15.1 7.45 3.13 11.9 7.12 11.2 8.26 5.46 5.13 7.58 2.57 9.29 7.9 9.88 12.2 7.39 4.84 8.08 2.72 0 4.5 10.2 2.78 7.01 10.2 5.79 10.8 0 7.31 1.66 11.4 8.42 4.61 7.7 0 6.9 7.14 8.58 11.4 6.32 1.16 5.92 1.51 4.79 0.39 11 2.91 9.06 8.69 7.4 8.66 3.84 10.5 9.37 9.56 9.15 2.33 2.14 4.93 6.69 1.92 10.2 9.38 7.58 7.67 12.3 2.97 8.47 7.91 10.4 6.06 4.02 4.36 6.49 7.58 9.2 10.7 7.27 6.16 8.05 6.4 7.88 2.14 6.32 2.24 2.65 11.2 7.54 3.9 2.72 6.64 7.36 5.31 7.66 11.7 7.35 7.62 8.15 10.7 5.61 7.38 11.5 7.52 6.57 10.9 10.5 8.31 4.6 9.32 6.38 1.35 2.42 4.34 11.2 6.93 6.53 4.62 9.18 0.39 12 6.64 9.55 8.14 8.97 2.24 9.6 9.05 0 8.88 5.25 2.4 7.86 9.9 0.95 10.5 8.37 5.28 1.66 7.38 7.29 0 10.2 10.8 0.8 2.65 7.73 5.01 9.99 5.08 6.49 8.64 7.13 0.95 2.57 5.47 8.56 6.1 5.96 10.3 8.45 2.14 11.7 4.77 3.23 8.46 5.88 1.51 9.77 6.77 8 8.99 11.5 7.68 7.89 3.13 0.39 10.2 5.52 9.26 7.72 9.12 2.33 1.35 10.7 4.27 4.69 2.28 5.12 10.7 2.72 10.3 1.16 0 3.41 5.75 3.23 4.76 8.14 4.85 0.95 8.56 4.96 6.82 0.39 10.2 3.13 9.53 2.72 4.79 3.81 3.13 6.63 8.98 5.07 5.49 3.32 6.2 8.7 1.75 7.93 3.32 2.91 0.39 4.24 0.95 4.24 4.1 3.77 4.82 10.8 7.04 9.86 4.8 10.6 9.68 0.7 9.25 7.3 7.54 11 1.51 0.39 11.7 11.2 0.7 10.3 3.32 5.98 0.7 0.39 11.4 9.71 3.57 2.85 11.8 11.2 0 7.69 11.6 6.57 11.2 7.54 10.4 6.71 6.75 5.45 8.26 8.26 10.6 12 4.77 4.8 4.63 8.64 8.8 2.5 2.57 11.3 9.86 5.27 8.44 3.78 2.65 11.2 1.66 5.04 10.6 0.39 2.65 9.92 5.16 5.37 7.19 3.53 6.69 11.7 11.2 2.57 11.1 7.53 4.79 10.5 7.31 10.9 7.32 1.51 3.57 5.85 3.93 1.16 7.07 4.17 7.27 11 7.25 9.32 6.08 3.87 7.3 6.78 3.87 7.13 5.93 9.3 5.31 0.95 12.3 7.31 7.27 6.83 4.15 4.84 4.93 6.69 5.8 2.65 7.71 7.31 3.32 3.84 6.15 9.18 0.39 6.31 3.84 9.08 8.43 11.4 12.5 6.07 10.7 8.94 9.17 0 8.12 8.68 3.71 6.5 7.47 9.68 9.37 12.4 11 0.39 9.12 0 12.7 5.88 10 6.39 2.78 2.72 15.7 1.16 14.5 1.41 2.72 3.18 1.35 10.4 4.96 8.84 13 13.1 6.82 2.91 4.22 2.5 9.87 6.33 11.6 8.3 12.4 13.6 0.95 5.88 11.7 4.5 8.01 8.61 2.03 10.6 6.26 9.37 12.2 12.3 2.85 9.5 9.62 8.34 3.41 7.98 6.24 11.4 9.22 5.74 9.27 7.24 6.08 6.64 8.22 10.3 8.6 0.39 8.98 6.53 9.13 5 4.77 0.39 2.85 7.45 3.45 9.46 2.72 7.31 6 8.01 3.18 7.47 2.65 8.53 8.97 0.39 2.03 6.36 5.65 3.18 3.78 10.4 8.8 7.55 9.22 4.74 1.92 0.95 9.6 10.1 8.39 4.15 5.74 7.37 4.5 2.5 0.39 3.81 8.53 0.39 1.51 9.46 8.76 4.17 10.8 5.44 0.39 10 3.57 6.02 8.19 4.93 1.35 11.4 7.65 6.79 8.06 3.57 10.2 3.13 10.5 6.44 3.49 10.5 0.95 4.85 12 5.53 10.4 0.7 10.4 9.75 9.77 11.2 13.9 7.87 7.71 7.66 9.26 12.3 13.9 12.1 7.91 6.19 1.35 7.84 11.7 9.91 10.7 10.4 6 10.5 7.19 11.5 1.66 3.36 3.57 7.9 8.71 7.4 5.77 8.87 3.18 8.77 9.11 7.07 2.33 1.35 9.05 0.95 5.11 9.34 1.35 4.22 10.1 13.5 9.71 4.52 10.6 11.3 11.3 10.5 6.82 9.4 5.71 10.4 7.97 4.17 8.12 7.81 9.89 6.61 4.97 9.41 9.77 9.07 9.61 10.1 11.8 0 10.4 3.08 3.71 9.87 13.3 6.58 4.04 11.8 12.2 9.5 13 5.65 11.6 14.4 9.15 6.56 9 11.7 5.88 9.63 7.42 10.6 7.48 11.1 8.29 11.2 12 11.5 3.08 7.62 6.15 9.93 11.1 10.3 11.9 10.1 10.1 8.44 6.67 6.92 9.35 10.4 6.67 8.9 8.66 6.3 8.19 13.8 0.7 11.8 11.3 11.3 11.5 11 5.74 10.2 8.13 9.35 8.99 7.93 9.35 12.4 7.39 7.63 11.4 16.3 2.33 6.32 9.46 9.52 7.43 8.25 7.66 12.5 13.1 14.8 15.3 9.64 11.4 7.54 7.82 9.28 12.1 10.4 5.73 6.28 6.28 11.3 9.49 9.66 11.3 10.9 12.1 8.17 7.71 9.4 12.3 9.17 0 6.14 8.28 2.91 9.06 7.43 5.89 8.6 4.84 7.48 10 9.03 5.61 8.85 10.2 8.44 11.2 3.96 5.55 10.6 9.46 0.7 10.3 8.27 6.39 4.85 11.9 4.56 5.55 12.4 3.37 1.66 6.12 1.58 9.23 3.13 4.62 6.82 7.68 7.77 14.6 5.8 8.18 8.7 3.13 5.66 9.61 13.2 7.14 13.2 9.25 11 11.4 14.2 14.9 12.3 14 0.39 8.04 0.95 12.1 6.72 4.87 10.5 0 1.16 4.17 7.12 0.39 10.4 4.63 2.24 3.41 9.42 6.67 6.64 4.98 2.14 9.01 4.2 7.31 7.45 12.9 9.37 2.03 9.18 13.3 10.2 10.9 0 3.93 10 7.98 4.48 11.5 11.2 4.96 2.57 3.96 4.4 10 9.74 5.46 9.9 7.66 0.39 7.84 8.26 8.17 2.42 9.6 1.66 5.61 0.7 10.3 7.76 4.58 4.52 9.52 9.98 8.92 7.1 10.3 7.16 8.03 6.79 6.25 10.1 7.95 7.67 6.88 9.62 5.98 9.93 8.66 11.2 10.5 11.2 6.63 8.52 5.9 10.1 6.95 10.3 4.56 13.7 5.6 7.39 9.48 8.5 9.8 6.6 9.45 9.67 3.23 11.2 2.78 9.12 2.72 9.96 2.42 9.43 7.58 8.03 10.9 0.39 0 8.61 8.94 6.22 4.62 13 7.11 3.02 2.33 9.75 0 8.6 8.16 8.3 6.73 11.2 8.77 4.7 4.94 6.57 7.88 3.67 10.6 7.33 2.24 16 3.87 6.04 2.97 0.39 1.8 10.4 5 6.47 7.7 12.1 10.3 9.68 9.98 7.6 7.72 14.2 8.97 3.9 2.85 2.57 8.82 8.33 4.42 7.73 9.17 8.23 9.88 11.3 5.75 12 9.77 9.9 7.37 7.18 10.8 10.6 9.1 4.17 9.25 11.1 11.7 9.8 5.56 8.65 9.98 2.42 10.1 0.95 10.8 10.6 5.98 9.74 11.7 8.74 12.5 8.43 7.85 9.2 8.14 9.46 9.82 9.97 0 6.07 9.79 11.6 11.2 10.2 9.52 0 9.1 12 1.16 1.35 11.4 10.4 8.86 7.22 12.1 7.97 7.51 10.3 7.45 9.2 8.16 10.8 7.75 10.9 11.1 7.59 11.9 10.1 6.49 11.6 9.82 3.57 10.4 1.35 11.6 10.2 11.3 10.2 7.84 11.2 12.1 8.87 3.57 8.2 10.9 11 0 10.3 8.49 9.88 6.98 7.77 11.7 0.39 12.4 10.7 10.7 4.31 8.63 11.7 6.5 10.4 12.3 7.54 9.19 8.1 0.39 10.3 8.29 9.89 4.82 13.1 7.01 1.51 6.98 4.7 10.6 6.41 8.14 5.87 2.65 0.7 11.1 6.25 8.86 8.47 8.47 8.27 8.2 16.4 10.6 11.7 11.1 9.92 11.3 10.7 5.08 8.2 8.87 10.1 11.6 8.37 5.82 10.1 7.94 5.09 5.59 13 8.61 12.3 2.03 5.39 8.28 12.1 5.45 8.99 3.71 11.2 12.8 2.33 7.2 9.62 6.86 10.5 8.55 6.4 6.88 8.22 10.8 8.13 10.4 6.02 9.2 8.2 4.67 8.48 10.7 8.87 11.2 11 2.91 10.1 2.78 7.89 8.14 7.51 7.81 2.03 2.85 8.27 3.36 5.79 11.2 0.39 8.64 9.48 9.69 4.63 2.91 3.45 2.5 6.37 5.63 5.25 6.17 8.74 7.04 1.35 0.39 6.01 7.19 6.07 7.79 5.98 7.58 4.9 12.7 5.21 8.28 5.68 4.87 9.34 10.5 1.8 7.02 7.39 8.77 2.65 11.9 8.68 5.3 6.92 9.17 7.66 10.1 5.01 9.92 5.23 9.55 7.46 7.47 6.17 6.09 10.4 10.3 2.14 6.78 1.51 4.2 4.4 7.96 2.85 5.24 6.26 2.5 11.1 0 8.5 9.65 6.67 8.42 6.56 8.1 4.71 9.73 4.6 5.02 10.4 8.92 1.51 9.9 8.19 7.43 8.41 7.2 9.19 2.72 7.38 5.36 7.55 3.67 9.67 10.2 12 9.07 9.55 4.79 9.98 9.92 7.17 7.93 8.4 7.77 8.6 12.5 8.93 8.62 6.27 3.53 8.31 7.61 3.5 5.84 11.1 9.03 5.31 4.15 1.92 8.61 0 7.21 10.3 1.16 6.82 2.91 2.33 6.32 4.69 7.13 2.14 6.65 10.3 8.75 8.78 4.9 9.04 10.4 9.99 10 12.3 5.48 7.47 6.81 6.64 2.85 2.5 7.56 2.78 7.96 3.99 4.74 6.42 15.3 9.63 10.9 2.14 10.6 6.17 7.36 9.8 2.91 7.84 10.9 8.56 11 9.02 8.8 5.8 12.6 9.44 9.8 7.49 11.4 2.97 8.74 8.01 9.58 6.72 11.9 1.51 12.6 8.23 12.5 9.21 8.43 11 11.8 9.82 6.03 7.03 9.53 5.62 9.76 9.69 10.2 11.1 7.87 1.98 0.39 9.17 9.13 9.09 9.97 6.33 9.98 7.22 9.43 2.78 11 9.89 8.16 10.2 8.43 9.85 9.38 10.4 4.93 10.1 7.26 10.2 10.9 3.08 11.6 7.1 7.78 8.18 8.8 10.8 9.94 9.43 12.3 10.2 8.29 9.57 14.2 8.71 8.33 10.5 8.04 9.41 10.1 9.65 7.08 9.85 10.2 0.95 9.6 8.91 6.59 1.66 8.2 5.38 8.52 9.11 11.2 10.8 11.1 10.2 8.98 8.8 9.07 12.2 4.42 4.02 11.9 1.66 10.1 12 9.2 7.98 7.91 9.66 10.2 7.46 9.95 9.62 10.9 10.6 7.79 9.24 9.04 11.3 10.4 10.7 9.17 7.71 13.7 12.2 9.61 0.7 9.39 9.49 8.69 8.28 2.65 10.9 8.32 3.78 10.9 5.49 2.85 10.9 8 8.75 1.8 10.7 11.4 1.35 3.71 3.41 10.2 12.4 10.1 8.64 7.12 7.83 2.03 10.1 11.2 10.4 9.49 9.65 10.3 6.44 9.17 0.39 10.6 10.6 11.3 10 9.91 9.55 12 5.09 12.8 12.3 10.1 7.61 1.92 3.57 11 9.73 9.72 7.72 9.87 7.99 8.55 6.98 9.91 7.62 10.7 11.3 9.72 11 8.68 6.23 9.32 9.55 11 10.6 9.11 11.1 10.7 11 3.08 8.62 4.91 10.6 11.1 10.3 10.2 11.2 11.5 6.19 10.1 9.79 11.1 3.32 8.44 11.3 9.72 10.1 8.63 9.9 9.25 9.24 10.8 9.71 9.49 9.09 10.4 10.6 6.02 9.77 8.35 9.46 10.4 10.9 7.83 8.93 7 9.25 11.7 9.35 4.38 10.8 4.02 9.89 11 3.79 9.81 10.4 9.02 7.36 8.47 9.11 10.7 7.39 6.44 8.41 9.06 9.73 10.4 6.23 11.3 8.33 10.2 10.3 7.48 9.31 11.5 7.92 9.95 8.32 9.9 12.4 10.4 11.7 8.78 8.82 9.16 2.72 5.95 6.39 0.39 10 9.88 10.9 9.72 9.03 8.68 9.21 15.5 10.8 9.89 9.3 9.88 10.9 11.1 9.55 10.8 10.4 8.84 12.3 11.7 9.24 8.68 10.8 9.53 9.6 9.86 9.78 7.72 8.58 8.41 8.91 9.03 11 10.6 10.6 10.9 9.88 11.8 11.7 11.9 9.95 13.9 7.18 10.1 12.7 10.4 11.6 10.4 11.4 7.37 10.4 11.9 2.03 11 7.38 3.45 10.2 9.64 9.76 9.55 12.3 11 12.2 9.29 0.7 10.7 10.2 3.02 10.1 10.6 10.7 11.9 10.9 6.14 7.37 6.1 9.53 11.5 7.29 8.25 9.81 9.66 8.09 3.27 9.91 7.56 8.71 10.3 7.1 10.1 11 7.14 9.59 9.28 10.1 10.4 4.02 8.02 9.91 8.63 9.25 10.2 10.7 9.78 5.01 8.93 8.89 7.45 11.4 11.6 9.06 9.59 9.7 7.79 8.44 10.3 10.4 9.11 9.45 8.53 11.8 10.6 5.84 2.03 9.42 6.22 6.5 9.56 8.74 8.9 6.51 9.5 10.3 10.2 10.1 12.2 6.35 10.3 10.8 6 10.1 9.4 1.16 9.78 9.98 7.77 9.41 11 9.93 8.96 12 5.64 9.11 1.35 10.9 8.93 10.5 10.6 7.3 10.2 9.87 12.7 11.3 9.49 7.89 10.4 10.5 9.83 8.64 7.63 9.19 10.7 5.33 9.39 11.7 9.07 10 10.6 6.35 15.5 11.8 10.8 12.2 11.1 8.4 9.2 9.48 10.4 2.14 10.2 9.13 10.5 10.1 12.2 7 12.2 9.56 11.7 10.2 10 7.5 9.44 7.98 10.8 9.62 11.4 10.2 9.79 10.5 11.8 10.6 9.9 11.2 10.7 8.82 11.7 11.4 8.56 9.7 8.88 8.32 11.2 10.8 8 9.1 9.49 10.5 11.1 8.21 2.97 9.08 9.43 8.52 10.6 7.15 1.16 2.97 7.44 0.39 9.55 12.1 7.22 11.2 8.23 6.69 11.7 9.67 7.87 8.52 7.85 10.7 11.9 8.93 8.77 11.9 12.1 12.7 11 8.21 7.81 6.87 5.67 8.68 10.5 11.4 8.19 10.4 6.96 10.1 10.6 12.2 8.8 9.72 6.76 10.8 11.3 9.86 9.27 10.2 11.4 7.6 9.71 5.4 9.17 5.82 3.02 5.64 12.6 6.88 7.73 10 3.84 10.7 8.48 10.1 10.8 11.3 10 11.6 10.2 11.2 9.41 9.39 10.9 10 9.67 0.7 1.8 14.1 9.36 10.5 13.1 9.11 11.1 8.98 9.12 11.9 9.33 8.43 1.51 7.12 10.3 8.12 2.33 13 9.95 7.26 10.9 0 9.39 1.35 3.23 7.76 10.5 12 10.1 5.56 4.91 8.12 10.1 9.04 9.3 11.6 10.2 10.6 10.8 3.6 1.35 9.15 8.19 7.17 10.1 0.7 6.91 9.23 3.13 11.7 9.81 9 7.42 11.1 9.1 9.09 9.53 9.76 8.73 6.84 9.49 10.5 7.71 9.04 8.46 9.28 9.7 8.32 6.79 12.4 6.61 10.7 11.6 8.84 10.6 10.1 1.16 10.6 9.51 10 10.4 4.12 0.95 2.65 3.18 11.1 6.83 10.9 10.6 3.53 9.64 8.37 9.33 7.66 10.1 11.5 12.4 10.7 8.36 8.93 13.9 13.5 12.6 9.18 8.87 8.34 10.8 10 11.9 7.98 10.3 9.94 7.14 9.02 7.97 11.1 8.87 10.8 11 2.85 8.86 9.86 11.2 9.62 5.95 10.6 8.72 1.16 10.3 8.58 3.13 11.8 9.99 9.41 11 11 12.1 11.1 0.95 6.9 7.55 8.55 8.2 9.37 8.37 10.1 9.73 8.49 6.63 10.1 9.67 5.98 8.63 11.5 9.42 6.32 7.61 6.22 4.54 7.5 4.54 6.29 13.3 9.09 2.03 2.24 2.5 7.07 8.75 5 5.33 7.4 7.11 2.72 0.7 8.32 10.9 8.58 7.27 11.5 6.84 4.74 16 9.96 11.1 2.72 16.4 9.46 10.8 12.1 8.09 9.56 9.24 8.55 0.44 6.75 9.86 4.79 4.25 8.84 7.11 5.43 9.72 6.22 2.97 8.54 10.8 10.2 6.55 4.57 8.08 10.8 11.3 8.43 6.23 11.2 6.62 7.49 9.25 6.27 4.24 10.9 8.37 3.53 9.77 0.7 7.24 10.8 8.64 7.32 0.39 14.8 10.6 8.33 7.49 5.23 4.46 5.44 9 2.33 8.26 11.8 2.03 0.7 8.54 2.57 0 9.14 9.2 5.99 5.33 4.65 0.39 6.88 8.28 5.51 8.82 9.74 10 7.67 5.69 13.2 0.7 2.24 12.2 5.73 9.21 8.84 8.43 8.02 4.94 4.87 6.49 5.78 0 3.99 8.6 8.55 3.67 4.84 5.25 8.95 0.7 9.2 4.42 8.2 4.8 0.7 9.06 0.39 7.04 5.22 8.93 8.73 6.86 7.47 4.07 7.54 7.81 7.64 9.07 6.66 4.12 1.8 4.27 6.73 9.51 3.9 8.04 3.78 5.17 5.48 9.19 10.2 3.41 8.93 3.96 7.45 0.39 7.29 6.71 2.14 6 5.25 2.03 1.16 2.91 5.53 0 8.44 4.97 1.66 7.83 1.92 2.5 6.71 2.65 2.24 8.58 5.75 8.66 2.5 3.6 4.4 0.39 7.79 5.24 0.39 0 1.35 10.2 9.1 3.67 6.73 8.49 7.82 10.3 8.83 9.54 0.95 8.74 12.2 8.87 6.94 9.73 5.59 1.8 6.98 4.54 9.59 10.9 10.9 3.6 9.48 6.16 10.5 7.87 10.6 11.1 8.78 7.34 7.26 7.28 10.5 7.94 8.86 6.85 8.31 1.51 9.97 11.1 8.87 6.87 7.32 10.8 10.8 8.56 8.39 1.8 12.1 10.7 5.98 10.7 11.7 7.8 1.16 11.6 7.38 8.05 11.3 5.11 9.9 8.06 9.52 7.84 9.08 9.91 11.1 8.52 10.2 10.1 8.62 4.38 8.58 9.78 10.8 5.28 10.4 7.74 8.31 4.34 7.1 10.8 11.5 10.6 12.9 8.71 9.62 0.95 12 10.5 10 7.32 10.1 7.14 8.33 11.8 6.74 2.24 7.78 8.15 9 10.4 7.82 0.7 12.1 7.14 8.22 10.1 9.54 8.99 8.96 8.32 10.1 10.9 8.06 12.1 8.93 8.28 9.43 9.3 9.22 1.51 8.4 11.1 12.2 0 6.85 9.96 9.07 3.02 2.85 6.78 10.3 9.11 6.52 6.59 9.6 0.95 8.71 1.66 1.51 3.93 7.19 10.3 7.29 12.1 8.81 8.55 10.7 9.58 8.87 10.3 11.2 11.1 9.77 7.63 10.5 10.4 10 8.73 7.14 10.6 5.67 9.54 9.78 9.85 3.84 10.3 11.6 8.35 17 9.02 8.68 7.04 6.13 11.8 9.81 9.71 8.68 9.91 6.83 9.11 9.83 12.5 8.84 9.5 8.48 10.1 10.4 9.75 7.43 5.43 10.1 11 9.54 11.5 9.39 10.3 9.73 11.5 9.63 10.1 5.86 9.14 10.1 11.1 9.85 12.7 9.59 8.92 4.76 8.5 6.71 7.03 11.1 9.67 4.5 0.95 4.88 9.27 8.96 10.9 0.7 9.02 8.15 9.27 9.56 3.13 8.9 2.5 7.01 6.77 3.78 7.27 6.64 9.98 10.2 9.52 10.8 10.8 9.5 8.4 7.48 11.9 11.4 9.87 11.4 1.16 8.93 7.9 10.1 10.4 9.59 10.2 9.06 8.28 2.5 10.7 8.21 12 10.8 3.13 9.36 10.9 10.8 10.6 10.3 8.78 9.86 9.15 9.18 10.3 11.1 13.1 11.4 2.91 7.94 8.94 8.85 9.41 5.33 9.66 5.47 9 8.17 4.29 6.86 11.6 11.6 6.11 8.81 8.6 5.11 10.6 11.3 9.71 8.74 11.5 8.37 8.52 10.6 6.83 11 6.05 11.2 2.24 9.63 2.42 8.66 10.1 1.51 8.38 2.78 9.46 9.98 9.86 2.91 9.82 2.5 5.76 4.9 8.43 8.25 10.5 8.2 7.1 7.28 7.41 4.63 1.51 4.67 1.8 8.87 10.2 8.51 8.91 2.91 9.67 8.91 3.64 7.83 9.15 7.95 9.04 8.34 7.93 8.31 9.29 8.12 8.16 10.5 8.37 6.09 6.7 10.2 10.3 1.51 10.3 0.39 9.51 7.57 8.55 6.38 10.3 9.48 10.4 0 10.3 9.69 10.5 10.8 8.14 0.7 7.64 8.25 7.34 9.94 9.59 8.97 9.35 11.3 10.2 4.9 10.1 9.79 10.2 8.68 9.58 9.64 6.45 9.46 13.4 9.59 7.83 9.42 9.75 9.6 8.95 8.7 9.56 9.77 8.78 10.9 4.82 2.24 0.7 10.7 6.5 5.36 7.62 10.8 10.1 10.8 11.1 9.04 8.19 1.51 9.75 2.14 7.96 4.56 12.2 12.3 8.57 3.18 6.52 1.87 5.53 9.83 7.18 10.6 1.51 6.94 6.88 0.7 8.1 5.77 10.9 3.32 7.46 2.65 9.05 10.3 6.08 0.7 9.86 7.55 3.96 1.66 5.81 0 13 8.27 9.95 8.65 8.46 0.7 4.9 9.21 8.4 10.9 4.02 6.71 12 9.85 4.15 9.1 10.2 15.5 9.23 11.2 9.95 7.95 8.42 10.3 2.78 5.61 9.8 5.9 8.72 6.59 4.58 10.5 11.2 7.85 11.4 8.23 8.48 12.2 4.04 9.03 1.51 5.18 9.37 6.09 9.58 11.1 12.2 11.2 3.9 7.27 9.57 9.83 12.1 11.2 9.44 9.83 10.8 11.2 12.9 7.5 7.66 6.97 9.96 1.51 10.3 9.62 9.32 7.54 6.12 10.1 9.45 2.33 2.65 10.2 6.95 10.4 11.7 8.54 10 7.44 10.8 3.18 7.26 5.14 11.4 3.13 6.08 10.8 2.03 7.71 4.5 3.99 7.97 11.1 4.69 7.33 8.21 7.99 6.04 2.66 7.11 8.73 7.35 6.78 8.43 9.83 1.8 9.56 0.39 9.12 7.79 5.59 10.4 10 11.5 8.25 5.4 4.17 10.3 5.67 0 8.9 0.39 2.91 3.41 9.78 10 2.72 8.09 11.9 2.14 4.27 7.83 9.12 9.83 8.55 5.82 3.87 7.49 12.6 11 8.03 10.8 8.61 8.96 10.6 11.6 10.6 8.33 8.02 5.32 9.61 9.3 0.7 1.35 10.1 4.36 8.88 12.4 8.58 8.2 8.61 3.45 9.86 7.57 3.18 11.4 9.1 9.69 4.77 8.33 5.05 8.92 5.42 6.55 9.63 11.7 4.72 9.65 10 10.8 11 4.77 11.5 11 9.42 12.1 12.6 9.75 10.6 9.72 8.82 5.5 7.19 9.28 9.94 9.59 8.5 6.17 9.36 8.75 10.1 9.83 8.48 6.82 11.2 9.53 9.29 5.83 10.1 8.45 8.3 11.1 2.72 10.7 9.63 5.16 9.08 8.18 12.3 9.22 6.77 13.9 4.84 12.1 9.01 10.6 6.26 8.65 10.7 10.5 10.1 12.4 11.8 6.41 4.98 10.5 14.6 0.39 3.27 13.3 12 7.68 1.66 9.15 10.9 6.18 0.7 9.33 7.9 4.04 10.6 4.93 1.92 12.2 7.08 5.78 9.22 11.7 11.3 10.9 12.2 10.2 11.1 10.4 2.57 14.9 2.62 1.92 14.5 4.22 11.7 13.8 3.64 7.13 3.27 7.38 10.8 6.82 3.08 0.7 3.27 4.65 5.24 6.72 2.33 8.7 4.65 3.67 7.21 6.54 6.53 9.93 3.64 5 6.35 2.24 4.94 0.95 2.03 9.68 11.7 6.75 13.4 12 4.04 3.41 7.33 9.94 4.12 8.93 7.17 7.05 7.52 8.26 6.48 6.38 8.25 2.72 7.47 4.6 6.13 5.27 10.1 4.04 7.71 9.98 10.5 0.7 9.28 6.69 2.33 4.31 1.66 1.16 4.91 1.92 9.8 3.93 7.08 6.06 8.35 6.85 8.31 3.78 0.39 3.3 0.7 7.43 1.92 4.12 0.39 8.3 0 5.69 0 3.02 9.89 11.9 8.54 5.67 1.49 4.15 4.82 6.17 1.16 8.84 0.39 0.95 4.27 10.9 6.02 5.9 1.66 3.42 8.17 6.17 8.82 5.73 5.74 5.16 2.57 3.08 7.39 7.47 0.44 2.78 9.13 9.29 10.9 5.82 2.33 8.52 7.74 1.51 7.57 7.68 3.84 7.52 5.69 7.57 3.23 10.4 5.17 2.5 0 1.16 6.8 8.55 0 2.33 1.51 9.65 4.56 8.41 8.4 13.2 8.13 7.06 3.87 8.13 3.81 4.77 4.76 3.32 10.2 3.13 5.21 10.1 2.24 9.02 2.97 9.01 1.51 5.1 4.7 7.91 7.88 8.32 4.23 10.7 4.54 7.3 5.54 7.09 4.1 11.6 4.69 6.11 7.32 3.53 4.72 0.39 7.87 4.87 0.7 2.42 1.8 1.16 3.08 6.68 4.04 7.05 5.01 8.46 1.16 4.1 0.39 7.51 2.5 4.63 0.95 8.32 3.45 8.88 3.08 5.85 1.92 4.54 2.61 9.33 3.13 5.05 7.72 3.32 0.39 3.23 1.92 3.6 5.83 0.7 7.42 0.39 4.48 5.22 7.11 5.07 7.66 4.12 10.7 8 0.7 3.67 3.36 5.53 0.7 7.28 10.4 6.98 8.37 8.96 1.92 8.76 3.96 3.02 7.11 6.67 6.32 3.45 8.96 8.1 1.51 5.07 8.38 9.67 7.21 5.71 6.64 1.51 8.17 2.03 5.87 9.74 8.32 5.59 8.62 3.78 7.13 1.35 1.8 7.19 0.39 6.91 6.22 6.33 5.34 6.08 7.35 9.66 2.97 7.83 0.39 10.7 1.51 1.51 4.27 4.02 6.96 5.79 10.3 3.08 5.64 8.5 2.33 5.14 8.95 6.55 4.48 9.54 2.57 4.54 1.66 10.1 4.54 3.9 8.06 1.51 3.78 8.79 0.7 4.34 8.14 5.69 7.25 5.82 4.12 3.84 4.46 4.34 4.34 2.72 8.14 7.91 1.66 12.6 4.34 8.51 5.12 2.5 2.91 7.81 1.66 6.64 8.79 9.45 2.42 1.51 7.64 2.14 2.72 0.95 8.54 8.36 7.97 3.45 6.65 8.98 9.13 9.13 3.27 1.35 3.32 6.35 8.49 3.84 5.92 7.59 7.93 9.36 3.57 7.8 9.59 11.7 11 9.9 3.71 12 14.3 12.4 11.3 9.68 7.69 11.8 10.6 11.1 2.33 4.48 11.2 8.57 8.68 9.34 8.58 9.67 10.1 13.9 8.97 9.18 11.2 0.95 7.22 3.18 11.3 1.8 8.69 7.15 10.3 10.2 10.2 10.8 10 9.87 8.09 6.81 9.6 10 7.85 10.2 11.5 9.47 0.39 8.16 8.73 7.66 10.9 9.73 5.29 11.7 8.84 1.35 2.57 9.97 1.8 10.1 3.02 10.4 3.45 8.63 11.2 6.28 10 6.77 9.3 10.4 11.8 7.37 9.28 9.99 9.95 8.17 9.4 9.74 9.23 9.21 10.2 8.43 10.3 9.76 9 9.81 8.39 11.5 8.71 4.22 7.06 8.13 9.61 10.2 9.4 7.9 9.79 8.79 9.18 11.3 10.9 8.9 6.93 9.14 0.7 8.94 8.8 9.07 1.66 9.61 10.3 8.22 9.98 0 1.66 8.4 0.95 11.4 2.33 6.65 10.3 8.58 1.92 2.14 10.8 13.6 7.8 6.1 14 1.16 10.7 13.4 10.2 11.2 14.9 11.8 12.5 10.7 10 13.8 12.8 12.7 9.79 6.01 14.6 0 7.86 9.46 10.5 7.46 9.8 9.17 9 10.8 10.5 8.66 10.4 4.15 8.81 8.86 11.3 12.1 10.5 9.12 3.13 11.1 11 7.51 9.4 10.5 0.7 11.3 6.5 4.62 10.2 9.43 3.32 8.51 9.62 12.2 11.1 3.49 10.4 1.92 4.48 5.94 7.03 9.77 3.53 10.5 9.61 8.21 0.7 9.65 7.73 9.04 7.93 5.97 4.65 10.9 11.3 8.56 2.24 9.39 10.9 8.98 7.55 11.2 10.5 10.8 7.51 10.6 0.39 10.1 9.5 10.3 7.43 5.68 7.87 9.7 0.39 8.6 4.42 9.57 8.77 7.5 9.49 9.09 9.94 11.4 7.5 9.21 11.4 8.83 9.8 13.6 9.08 8.25 5.92 6.69 8.89 0.7 9.53 10.1 6.93 0.95 3.02 8.09 9.69 10.6 7.72 10.1 1.66 10.8 9.27 11.6 9.99 1.8 11.7 1.8 9.41 6.4 7.54 9.92 10.9 10.4 9.52 10.7 9.16 10.3 12.1 7.71 9.38 10.2 8.38 5.76 8.41 4.85 9.61 6.74 2.91 9.57 10.3 12.1 8.04 1.37 9.65 1.51 10.3 12.3 9.88 3.18 6.14 9.34 6.25 5.41 3.64 13.5 9.46 11.2 1.92 3.53 2.03 14.6 5.59 0 10.7 12 8.63 15.7 11.8 13.8 10.1 8.37 8.33 12.2 11.1 9.23 3.41 9.84 4.63 8.53 11.9 2.85 14 7.63 6.9 0 0.39 0 3.78 9.08 5.37 11.4 8.04 10.8 9.45 10.7 12.3 11.4 6.74 13.1 14.2 11.3 8.28 8.13 11.6 10.8 11.7 7.56 12.3 3.6 5.41 3.18 9.97 8.25 4.54 3.18 4.9 9.78 2.85 9.92 8.46 6.28 11 6.28 9.75 11 8.59 11.5 10.3 9.77 12.2 9.59 10.6 8.03 13.1 9.49 10.8 11.3 9.26 11.2 9.48 12.6 12.5 11.3 11.9 7.28 8.78 14.2 14.3 13.9 10 9.57 12.7 9.5 6.86 12.1 11.8 2.33 10.8 7.47 11.5 7.4 13.1 12 9.83 8.62 6.22 5.86 12.9 10.2 6.2 10.6 2.97 3.67 3.96 7.73 8.75 7.12 9.4 12 10.5 11.4 10.9 12.3 9.76 10.3 11.6 13.7 4.67 8.14 10.8 9.75 12.4 8.93 3.87 8.41 7.86 7.88 8.32 4.52 9.24 0.39 8.35 0.7 10 0.7 9.01 12.8 8.2 13.8 11.4 13.2 12.1 12.3 11.9 11.7 11.1 13.9 0 12.5 13.4 0 6.4 2.65 6.51 7.56 6.45 3.84 4.69 1.77 4.11 3.18 7.53 5.22 2.72 3.18 6.62 6.36 6.13 4.67 4.94 5.27 4.67 0.95 2.72 7.31 3.45 2.72 8.95 4.88 8.63 12.3 9.86 0.95 7.97 7.41 3.02 10.7 10.3 0.39 2.14 3.49 10.8 0.7 5.54 9.28 11.3 8.44 9.38 10.7 3.27 2.97 10.1 11.8 11.9 10.2 11 10.1 6.84 7.15 7.51 5.42 10.7 11.3 8.3 6.9 9.13 11 11.9 14.5 11.9 4.74 6.46 11.2 14.4 10.8 8.81 8.01 14.8 12.1 13.9 5.12 9.06 14.9 12.6 15.1 13.3 4.93 11.5 12.1 8.74 13.3 6.77 4.4 14.6 11.3 9.09 0.95 1.35 1.35 4.04 4.96 1.16 6.47 8.53 13.2 7.82 11.8 10.4 3.36 5.42 2.14 0.95 1.05 6.74 12.3 1.92 6.15 1.66 7.52 8.66 8.66 8.21 0.95 3.49 6.36 2.57 6.58 9.61 7.81 8.13 4.36 8.71 7.74 0.95 0.39 1.16 4.07 5.98 9.02 10.4 2.72 9.1 6.73 4.67 8.42 9.93 9.08 7.35 10.9 9.33 6.52 8.31 4.34 7 6.26 1.35 1.66 7.69 0 2.42 8.88 7.06 2.91 4.62 5.44 7.81 4.15 4.56 5.8 2.78 5.77 8.91 6.17 1.16 11.8 9.25 8.58 3.81 9.35 5.76 3.78 2.24 2.33 2.24 10.7 4.42 0.7 1.66 1.8 9.16 8.18 10 0.39 1.8 3.23 3.87 1.66 6.81 1.16 0.95 6.6 3.18 7.14 2.14 8.88 6.65 3.13 1.36 2.85 8.04 6.52 6.33 2.78 3.9 3.49 3.67 6.98 3.84 4.76 7.61 7.82 7 10.2 3.74 4.58 3.08 9.49 0.39 12.3 11.2 10.1 10.5 5.38 10.5 0.39 4.76 6.68 10.1 12.3 0.39 6.6 10.1 0.7 7.08 1.92 3.49 7.02 10.2 12.3 9.76 12.6 3.87 4.97 2.65 1.92 7.09 1.35 5.94 0 9.23 1.35 6.16 8.57 0.7 8.62 8.41 2.91 2.97 3.41 0.7 3.78 2.72 9.52 7.24 7.28 6.89 0.39 4.46 8.08 5.85 0.95 6.28 2.33 1.8 0.95 6.23 2.57 10.5 3.08 8.89 6.93 0.95 8.35 8.51 1.92 3.45 11.2 1.66 10.8 6.26 1.92 3.02 9.16 1.8 2.85 5.58 6.95 2.14 0.95 7.19 3.57 5.82 0 5.39 2.72 9.44 1.66 10.8 2.33 0.39 11 12.4 2.24 1.51 4.02 0.39 9.78 8.19 10.9 6.84 11.9 11.8 5.32 4.96 6.72 8.64 8.55 3.12 7.87 12.6 9.41 0 9.83 1.8 5.74 2.33 12.9 13 0.7 8.76 14 1.92 8 13.2 7.07 0.39 9.42 5.74 7.84 9.02 12.1 4.97 11.7 6.8 5.42 1.16 3.08 1.92 7.26 4.98 8.41 8.61 14 11 8.5 2.91 7.56 5.48 10.8 4.46 7.15 8 0 7.2 8.46 8.48 2.78 4.04 3.74 6.06 2.14 8.28 5.11 0 1.8 8.99 10.4 10.1 7.86 7.15 11.4 10.7 11.9 6.81 2.78 7.55 8.26 6.02 11.1 3.32 6.78 9.16 9.31 8.82 4.42 7.13 10.8 3.84 4.02 12.5 2.85 3.67 3.02 8.77 9.57 6.9 6.19 3.23 1.51 5 7.1 12 3.27 8.29 11.9 9.28 11.9 5.4 8.94 8.55 6.47 1.92 8.14 4.6 9.46 10.8 11.7 12.5 10.4 11 8.55 9.81 11.5 11.5 9.75 8.6 8.26 7.57 2.24 8.6 8.14 0.7 8.21 8.41 0.95 8.72 8.95 8.66 7.97 10.6 10.3 2.14 1.8 9.9 0.39 12.7 7.31 6.27 12.5 13.9 7.97 9.79 10.4 7.33 9.76 10.3 6.44 8.51 11.7 9.03 11.1 9.01 2.42 11.2 9.49 13.1 4.5 14.2 8.87 12.4 4.94 7 6.82 0.7 7.92 7.46 7.79 12.6 8.99 13.8 10.6 10.3 6.82 14.8 12.2 12.6 12.4 7.47 11.3 0 5.3 2.33 12.6 4.52 6.3 12 9.97 10.2 6.25 10.3 8.39 8.89 12.6 10.5 10.7 11.8 8.04 7.88 12.3 9.88 11.5 12.1 11.3 15.4 7.14 8.01 10.7 11 11.7 1.51 4.94 5.81 9.27 1.16 1.16 4.64 8.76 7.66 9.67 4.27 8.34 9.98 5.61 2.91 6.42 0.95 0.39 6.17 1.16 4.4 4.15 6.99 8.42 7.76 8.37 3.36 1.8 7.37 5.07 8.32 2.24 5.23 1.8 4.74 9.68 5.2 1.92 7.54 4.2 7.37 6.22 0.7 7.95 0.39 5.14 8.3 13.3 5.51 6.84 6.24 10.5 1.35 8.18 6.08 2.5 4.22 4.7 6.85 8.27 7.04 5.96 2.33 1.51 1.92 0.39 5.95 7.14 5.86 6.33 9.33 5.74 5.05 6.47 6.07 6.41 0.7 3.36 5 1.51 6.88 5.52 0.95 0 9.61 6.99 8.85 2.72 5.05 14.3 8.34 1.16 7.76 4.46 9.75 7.88 0 9.5 0 3.23 5 5.69 5.65 1.35 7.21 12.7 5.74 2.33 8.92 4.07 9.85 6.43 7.59 3.93 5.46 12.1 1.66 1.8 6.08 9.41 8.59 0 4.48 5.12 8.15 6.4 0.39 6.1 11 10.1 8.86 3.57 8.36 1.8 5.29 9.06 9.4 2.5 11.9 9.41 2.72 9.8 0.7 1.16 0.39 11.3 0 1.16 8.15 2.03 0.39 12 4.52 1.66 1.16 0 4.04 0 11.1 9.85 9.24 9.77 11.3 13.1 11.8 10.1 8.62 11.6 5.9 11.9 11.2 10.3 1.66 3.93 14.7 9.16 12.4 8.21 6.08 4.82 13 6.32 4.38 11.4 0.95 8.23 4.63 5.84 16.9 2.88 9.56 1.8 0.7 4.65 9.39 3.74 7.65 14.2 10.4 11.8 3.57 1.16 2.47 2.03 3.78 8.24 9.07 2.03 3.27 1.92 4.85 1.66 10.6 0 4.24 5 3.96 4.94 8 1.57 2.57 10.6 0 8.66 8.37 3.87 0.39 11.1 3.23 8.18 5.99 5.25 9.34 4.15 3.49 6.79 4.31 6.78 4.07 3.74 3.84 6.33 5.66 4.46 5.72 6.06 8.66 4.56 2.14 12.7 2.72 4.84 8.71 7.64 7.74 5.27 6.08 6.82 5.8 2.57 3.6 7.17 7.22 0.7 9.08 1.8 7.98 2.14 7.92 6.87 4.96 5.67 5.64 9.54 9.01 1.35 8.64 1.16 2.85 6.08 7.25 8.15 8.56 5.89 1.51 9.46 12.8 8.83 1.16 5.22 0.7 6.53 2.52 7.57 3.84 8.41 1.16 4.85 5.77 0 5.67 8.42 7.58 9.17 1.92 12.8 4.76 6.7 9.98 1.66 1.8 4.07 4.96 8.55 4.9 1.66 7.59 2.24 9.04 0.39 2.85 1.16 0.42 6.58 1.92 5.54 2.78 9.7 12 5.52 1.66 0.5 2.91 8.38 2.14 2.33 3.13 6.28 0.95 8.65 13.6 8.51 4.12 8.18 10.5 10.4 8.59 12.6 2.33 12.8 0 10.8 0.7 8.91 14.4 12.4 12.7 6.3 3.27 11.9 12.6 12.3 1.16 2.72 3.6 11.3 5.74 12.9 1.16 3.32 9.36 10.7 5.92 6.25 12.5 11.9 8 0.7 14.7 11.1 13.6 12.5 5.3 2.24 6.76 10 9.26 12.4 4.2 12.5 14.3 13.2 2.42 9.76 9.83 11.2 0.95 9.77 8.83 9.19 1.22 9.32 7.95 11.8 11.3 11.2 9.17 11.1 6.37 2.72 5.28 11.5 10.6 1.16 5.51 8.81 6.36 9.78 9.02 12.4 4.24 5.24 2.78 10.6 3.45 3.74 6.39 5.43 11.9 3.27 7.94 8.79 11.3 2.42 7.98 7.85 10.8 10.4 14.3 6.79 4.9 7.16 9.99 2.03 0.7 3.41 8.97 5.55 7.35 6.41 8.27 2.78 6 8.3 2.14 7.08 5.57 2.57 8.62 1.66 0.7 4.87 6.73 7.66 6.2 3.6 4.93 8.41 3.02 11.6 7.36 0.7 0.95 9.22 4.45 5.39 1.51 3.93 6.75 8.01 0.39 5.84 1.35 6.23 0.39 4.31 0.7 1.66 5.18 11.3 0.95 7.25 5 4.44 4.07 4.02 0.7 0.95 3.61 3.86 8.87 4.42 6.4 6.16 0.7 9.51 4.7 1.92 8.28 2.42 9.24 9.3 3.23 7.8 10.2 10.6 6.69 6.55 9.45 0 0.95 2.3 0 5.53 9.71 2.78 8.42 11.3 4.36 0.39 3.99 7.52 10.1 8.45 0.39 8.52 5.64 9.64 2.03 3.93 8.5 5.71 4.69 8.69 8.69 8.36 0.39 8.56 9.42 13.9 7.05 8.38 9.77 9.19 2.73 9.29 11.1 2.65 5.11 1.92 4.21 11.1 6.46 8.85 9.38 8.79 8.95 9.78 9.39 11.7 2.42 10 6.65 10.9 11.1 11.8 11.4 12.2 3.66 14.5 2.14 3.78 12.6 8.37 13.3 12.1 5.51 6.15 9.82 5.37 10.7 5.05 11.2 14.7 13.4 12 12.2 13.1 11.6 0.39 5.87 5.25 6.71 7.4 10.4 12.1 11.4 8.53 9 11.5 12.1 10.6 9.91 9.79 5.05 8.94 3.67 9.27 11.2 0 8.05 9.53 7.95 9.16 2.97 3.53 8.21 8.85 9.53 9.77 8.82 11 9.12 10.2 8.51 8.22 12 10.7 12.3 5.38 4.34 8.23 10.3 10.9 7.27 4.04 11.4 3.36 3.71 6.62 1.35 5.56 7.36 5.78 1.16 11.4 5.54 0.52 9.33 8.51 8.4 10.4 7.27 8.75 6.02 11.8 11.8 5.16 10.4 12 10.6 7.53 11.3 9.88 9.81 1.66 14.1 11.4 10.8 11.2 11 10.4 11.8 12.3 2.97 10.6 9.63 0 11.4 12.2 11.8 11.1 9.2 11.2 9.48 10.3 10.5 10.4 4.71 8.47 10.7 8.01 3.57 8.47 8.33 9.03 8.64 9.34 9.66 9.78 10.2 10 6.28 0 10 12.1 9.02 9.83 10.3 9.38 9.85 10.9 9.75 7.27 11.8 9.99 5.31 9.09 10.3 11.2 7.56 11.7 12.3 9.25 10.2 7.91 11.9 11.9 6.29 9.8 13.2 8.64 0.7 8.18 7.16 8.65 11.2 10.2 9.29 8.72 8.45 7.26 11.1 10.8 10.3 10.1 4.34 5.87 9.14 11 11.9 8.25 6.61 6.03 13.5 10.4 3.53 1.51 11.7 4.15 10.2 13.9 4.91 10.1 4.04 6.38 9.47 7.87 3.45 9.63 8.76 6.67 10.3 2.03 8.88 9.42 0.7 10.4 7.21 9.43 9.33 9.98 3.67 1.92 7.82 6.08 7.38 9.98 9.94 3.57 7.89 9.07 13.4 0.95 2.42 10.1 12.4 0 6.17 5.53 9.36 10.3 4.07 0.95 3.08 1.66 7.01 2.97 8.71 0.39 5.56 3.74 8.55 9.77 2.57 8.33 10.2 5.16 6.84 3.63 3.98 7.28 7.09 11 6.66 1.16 7.69 0.39 9.14 7.98 5.49 6.93 3.08 0.95 9.17 10 4.31 5.29 5.34 3.13 3.32 1.16 8.87 7.47 6.19 0.39 7.08 6.75 6.95 5.78 12.7 3.32 7.54 5.98 5.46 5.74 4.53 5.64 8.21 6.92 3.78 5.54 7.01 5.65 3.81 5.95 5.98 0.7 6.64 6.5 3.29 3.71 6.44 0.39 0.95 3.41 2.42 1.51 10.8 1.51 9.04 7.71 3.93 8.05 2.72 3.23 8.95 10.8 2.03 0.7 3.13 0.7 1.35 0.95 6.43 1.8 0 7.31 6.39 3.57 1.92 11.9 2.42 9.71 6.08 0.39 7.36 13.5 11.5 10.3 1.8 7.92 7.09 2.14 9.45 14.8 8.81 6.44 5.25 9.73 3.9 9.79 5.75 5.28 6.33 10.5 12 10.9 5.1 9.71 8.43 11.1 9.47 9.97 8.42 8.27 2.03 9.39 9.85 9.29 12.2 12.2 2.42 9.58 9.49 7.67 9.05 9.22 10.5 8.16 10.6 6.14 4.6 10.5 6.3 1.66 4.88 12 7.36 3.32 9.89 10.1 0.7 4.79 15.6 11.1 9.52 9.87 1.51 6.03 13.7 10.3 0.95 12.6 11.4 10.8 10.6 11.3 10.8 7.34 2.5 8.09 10.9 12.2 10.6 9.05 9.54 1.66 10.5 11.2 14 9.99 10.1 10.9 12.2 4.7 13.1 6.5 4.6 11.8 12.1 11 12.7 13.6 12.2 8.3 9.98 3.27 6.16 10.4 9.7 7.33 9.87 14.3 7.77 10.6 9.16 8.87 10.9 9.85 11.9 9.7 8.61 10 4.96 10.6 10.9 9.66 9.2 10.2 9.73 11.4 11.3 10.9 9.52 9.78 10.2 11.5 9.63 8.64 10.6 10.9 10 10.9 10.4 11.3 8.74 11.2 11 10.3 10.6 11 8.61 10.1 8.5 12.8 13.6 11.1 11.8 1.35 7.36 7.72 7.7 7.1 0.39 1.16 2.72 2.03 8.91 7.55 8.38 6.57 8.18 9.82 10.5 14.4 8.66 0.7 9.83 10 5.74 9.34 8.93 8.49 4.6 13.9 1.8 12.7 10.4 9.25 10 9.96 10.4 10.2 11.7 9.05 8.8 8.45 7.95 10 10.4 9.75 0.7 9.77 8.8 9.77 8.73 2.5 11.4 12.7 7.48 10.7 10 7.21 8.9 5.29 3.67 9.69 7.16 4.85 9.58 13.4 11.2 13.6 8.47 10.3 8.61 11.9 10.8 2.5 10.4 13.5 5.54 8.24 10.5 10.3 8.97 10.7 11.4 12.5 8.37 8.06 1.8 10.6 4.36 9.45 9.37 11.5 5.52 13 3.32 1.66 14.2 5.83 7.72 7.69 7.47 4.46 10.1 10.6 11 11.2 11.7 8.39 1.35 11.6 9.9 4.49 3.64 13.5 10.3 9.62 0.39 7.59 4.54 13.3 0.95 1.16 4.98 0 7.73 6.29 4.29 6.16 7.05 12.4 10 12.8 10.3 11.7 9.96 11.8 8.5 3.41 8.57 8.79 9.58 7.17 0 8.91 5.1 6.25 9.04 11.1 4.74 11.5 9.82 0 6.93 11.6 8.84 5.07 2.91 2.91 0.39 13.2 10.6 10.1 13.3 10.4 5.85 11.6 7.61 5.75 1.66 1.92 4.56 7.8 0.7 0.7 11.2 9.81 13.3 5.04 7.14 8.92 7.7 8.89 2.57 4.88 8.13 9.21 11.6 9.08 8.54 8.97 5.94 6.84 11.2 5.21 9.96 6.01 6.95 4.22 10.2 11.2 9.96 3.27 5.11 8.91 6.34 4.2 8.96 8.59 8.92 6.16 12 15.1 5.48 7.04 12.2 0.95 1.16 4.34 11.6 8.75 12.4 7.16 12 9.59 9.03 8.27 12.2 9.68 8.93 8.89 9.88 8.48 6.97 8.09 14.8 13.7 9.96 11.8 13.8 1.51 5.93 10.1 8.53 11.8 4.05 9.24 9.89 4.42 7.64 9.94 9.81 9.01 4.24 11.4 9.23 3.84 10.3 9.94 9.55 2.03 3.71 0 6.47 10.8 10.3 12 9.98 10.9 9.98 9.09 2.57 3.21 0.95 13.7 3.57 8.75 10.1 6.62 5.03 7.9 8.35 10.6 10.3 9.32 9.97 11.2 8.94 10.7 9.78 13.1 7.41 0.39 13.4 1.66 5.86 2.97 7.09 10.7 10.8 11.5 10.4 10.6 8.43 8.31 8.7 8.16 8.2 7.94 10.6 8.87 9.58 4.85 9.32 7.9 11.4 8.68 10.8 8.34 7.78 8.63 8.36 9.63 10.8 6.66 8 10.5 7.46 10.2 6.41 9.27 10.3 10.2 10.2 11.1 9.16 10.4 7.01 8.84 5.99 10.2 6.38 7.03 9.55 10.9 10.4 7.22 7.8 9.3 0.7 8.69 10.9 9.18 9.42 10 8.99 9.83 8.61 11.3 7.99 10.4 10.1 10.6 11.2 10.8 10.7 4.58 7.36 4.34 2.53 2.57 10.2 9.45 7.02 9.78 8.52 11.7 7.75 10.1 8.59 9.06 9.03 10.2 11.3 7.16 8.64 8 8.8 9.94 8.62 12.2 10.7 11 11.3 8.63 10.2 9.52 11.4 9.39 10.2 9.5 9.49 10.7 7.91 9.85 10.5 10.1 10.1 11.4 4.97 8.69 9.92 8.54 8.3 11 9.65 7.88 9.32 8.51 9.28 8.94 11.9 9.55 11 8.43 10.8 5.11 11.8 0.39 10.5 12.1 7.49 8.73 10.5 5.4 7.97 8.56 9.86 5.56 8.68 3.57 9.62 6.41 7.68 8.27 7.2 8.19 9.55 10.8 9.53 8.9 9.28 7.64 10.4 10.9 7.97 11.2 7.44 8.01 9.73 8.65 10.9 8.11 10.4 9.83 10.7 9.96 8.79 8.59 1.35 7.01 1.66 9.87 4.98 9.34 7.11 8.74 7.77 11.7 9.77 9.27 10.9 0.95 10.7 8.83 9.97 7.73 9.73 8.21 11.7 10.2 10 9.66 8.17 7.28 8.62 3.32 10.9 10.4 8.61 8.75 11.1 8.45 9.47 10.2 9.65 3.8 4.88 7.21 11 11.4 10.9 11.2 8 4.29 7.1 10.9 10.6 9.71 11.5 7.37 9.21 10.3 5.49 1.35 10.1 9.22 10.3 8.4 10.1 8.78 7.62 9.05 9.02 5.33 9.63 10.1 11.1 4.6 9.51 11.3 0 8.38 9.87 4.07 7.26 7.56 5.14 9.57 9.24 1.8 8.4 6.2 9.54 9.58 8.27 10.6 10.1 11.4 11 6.67 10.9 4.29 11.5 6.43 4.97 5.04 12 9.36 7.75 8.27 9.53 9.91 10.5 10.2 9.78 2.91 9.78 4.54 6.06 8.59 9.55 9.55 10.5 1.8 5.79 11.4 9.22 9.23 2.33 10.6 9.85 8.42 11.1 9.29 9.24 9.16 5.56 7.42 10.6 6.14 8.16 13 9.74 9.41 4.91 9.42 8.2 7.65 10.2 9.95 12.3 6.55 11.1 9.57 7.86 8.4 6.66 7.46 10.8 8.46 7.54 6.54 10.1 10.5 5.61 9.98 11.6 10.3 10.2 9.22 9.5 3.36 10.9 9.37 10 11.5 2.03 8.49 8.3 9.55 8.18 4.65 10.6 9.26 7.74 0.7 12.6 9.23 7.87 10.9 3.32 9.72 8.59 11.2 10.7 9.58 11.6 9.14 11.6 9.17 9.11 9.73 11.6 10.3 11.3 9.2 11.3 8.24 6.19 8.66 8.77 6.55 10.7 10.7 7.94 9.15 10.2 9.18 9.88 10.6 4.88 8.11 7.85 4.67 10.3 9.97 9.34 9.61 9.73 7.79 9.41 8.59 9.45 7.99 9.64 8.89 11.9 4.63 2.57 8.71 9.49 7.51 4.91 9.63 10.8 10 10.6 10.3 7.51 11 11 9.37 9.49 4.9 11.8 9.89 11.8 8.1 11.7 10.2 10.9 9.92 10.3 12.4 10.2 10.1 6.58 10.8 9.63 12 9.82 10.2 9.76 8.16 12.4 8.93 0.95 7.44 9.7 12.1 9.54 8.33 11.8 10.2 10.9 8.05 9.4 10.6 11.2 11.2 8.69 9 9.8 9.78 11.4 9.58 9.85 7.91 9.33 9.16 11.7 8.77 9.75 9.32 7.96 7.69 7.21 7.75 11.2 9.68 10.2 9.35 12.1 6.2 9.99 5.68 7.71 10.2 8.45 4.42 4.65 8.75 8.71 9.96 8.63 10.5 10.3 12.3 10 11 8.93 11.4 8.9 9.35 6.68 10.4 6.8 11.3 8.92 6.1 11 5.11 8.33 11.5 11.4 8.08 11.1 1.8 9.84 7.39 1.16 2.24 6.39 9.84 3.49 10.5 9.79 8.77 4.24 9.97 7.85 10.8 10.7 11.2 7.4 4.77 8.68 9.77 5.18 9.83 11.7 9.77 10.2 4.91 10.2 11.6 9.66 7.74 4.22 8.48 10.4 9.61 10.1 11.8 7.78 8.29 8.89 7.59 9.13 7.39 10.3 9 1.51 3.99 9.31 4.76 11 9.84 10.2 8.93 11.9 11.2 2.24 9.43 12.4 9.82 8.98 11.7 2.14 10.3 12.1 14.1 12.8 7.87 9.89 13.3 5.43 8.23 14 10.5 8.45 11.5 14.6 10.7 8.75 4.22 4.29 2.78 3.23 11.7 5.99 13.1 5.39 9.7 10.2 8.29 8.53 10.2 11.3 2.5 8.99 7.39 13.9 13.6 10.9 11.4 12.3 9.75 9.21 6.92 9.34 8.82 10.7 8.49 8.17 11.7 10.2 8.85 9.38 11.6 9.78 9.88 11.3 9.51 6.46 9.14 10.7 10.6 10.5 10.3 9.03 0 8.88 9.02 11.2 9.41 10 9.29 0.52 16.1 8.43 9.44 4.02 8.08 8.3 7.49 10.3 13.5 13 11.1 11.1 8.45 10.3 8.34 8.69 6.97 11 4.85 7.12 2.67 8.74 8.14 6.1 3.49 9.4 10.2 2.5 6.01 7.95 9.95 9.21 9.73 9.72 14.9 1.91 8.21 8.41 7.92 4.14 8.6 0.39 9.66 12.8 9.78 6.73 12.4 12.2 0.39 11.9 9.69 9.29 13.7 10.5 12.3 12.7 10.3 3.08 10.7 1.35 10.6 6.97 11.2 8.92 10.2 1.68 4.62 12 11.4 9.22 10.1 10.6 8.29 7.95 9.12 5.83 4.58 2.65 0.7 8.18 10.4 4.62 6.62 4.69 8.47 8.97 10.3 10.1 7.34 2.14 4.93 10.8 10.5 8.99 7.98 9.86 8.53 8.09 10.3 9.91 10.7 8.83 9.76 10.8 10.6 5.3 9.59 7.93 2.65 3.36 5.08 7.22 7.09 0.39 7.66 1.16 0.7 7.73 6.13 9.09 8.11 5.18 11.2 9.9 11 1.51 9.27 9.77 6.96 4.42 8.42 2.07 8.19 8.89 8.59 9.48 9.72 10.2 10.3 11.6 12.2 0.7 7.8 8.35 8.52 8.91 9.32 11.1 9.89 6.91 2.24 10.2 8.51 12.8 10.6 10.4 3.67 4.56 9.78 7.6 8.36 11.2 7.71 5.66 9.61 10.2 3.32 5.92 10.4 8.77 10 9.99 9.84 13.1 10.6 3.84 9.62 9.32 3.02 4.42 11.2 9.46 8.33 11.5 6.78 9.39 4.17 6.05 9.33 7.72 5.5 10.2 10.7 11.1 11 8.18 8.73 2.91 0.39 11.2 9.84 11.1 9.4 6.54 10.2 8.32 2.03 10.3 8.68 10.3 11.5 8.01 10.3 11.2 9.15 9.96 10.3 8.27 11.5 7.73 9.71 7.13 8.63 7.52 10.3 8.03 9.66 9.27 10.8 10.1 8.36 10.4 9.26 7.5 9.09 9.13 3.27 9.56 7.19 7.05 8.98 8.32 9.64 6.93 6.73 9.69 9.73 6.52 9.62 1.92 8.76 8.93 9.33 8.72 9.2 9.16 7.79 9.94 8.47 10.9 9.08 10.9 10.2 7.94 9.4 8.05 9.48 7.75 7.03 3.49 9.16 8.29 0.7 7.64 9.9 7.01 8.41 10.4 4.29 10.5 4.66 9.79 10.6 9.88 6.93 3.67 8.84 8.56 7.58 10.3 11.6 10.3 5.61 7.85 6.52 11.8 9.63 2.33 9.88 9.75 10.8 8.61 10.6 3.45 9.64 10 8.5 6.45 9.01 8.53 10.8 10.6 1.8 9.85 10.4 8.81 9.95 8.54 4.69 4.02 9.96 0.95 12 10.6 1.35 8.9 9.35 9.59 8.96 8.49 3.53 11.4 3.71 6.25 3.02 7.25 9.52 8.06 12.3 2.85 7.41 9.84 10.2 4.4 9.76 9.54 12.3 8.37 7.94 7.76 10.4 13.5 9.26 10.3 10 7.37 8.21 3.45 8.79 9.65 10.7 9.22 8.85 7.75 7.59 7.28 9.14 11.5 8.96 4.17 9 10.4 8.65 8.3 10.8 8.48 7.59 9.58 7.61 9.65 6.57 0.95 6.02 0.7 9.5 9.87 6.03 0.39 10.5 8.55 8.48 10.6 5.79 9.89 6.91 10.9 8.77 11.6 8.56 9.35 8.4 7.69 7.66 8.82 8.25 9.62 9.89 5.61 8.5 7.99 9.05 9.32 10.6 10.8 8.09 9.44 2.33 11.4 9.61 10.2 10.1 9.17 9.48 9.97 6.38 8.91 9.02 8.71 7.86 8.9 9.55 10.2 9.06 9.94 8.38 9.13 11.9 11.5 9.01 9.67 9.33 9.17 8.24 9.78 2.97 5.93 7.54 6.65 7.98 9.54 7.96 10.2 2.24 10.7 7.62 10.4 9.23 10.2 10.6 8.97 12 9.61 7.95 11 6.91 6.63 7.96 11.1 9.77 11.2 8.78 12.4 9.29 9.83 7.47 7.54 9.44 9.34 9.7 2.55 8.93 10.2 10.3 10.4 6.44 9.52 4.48 10.1 9.57 9.54 9.65 9.65 8.38 8.89 9.08 6.96 8.35 7.63 8.3 6.25 12 7.97 10.8 7.25 9.6 7.15 9.66 0 8.37 7.97 8.08 7.4 11.8 10.8 7.42 10.1 8.95 10.5 3.64 6.81 7.31 9.43 10.2 7.49 9.29 5.34 8.83 1.92 10.3 12.3 7.55 6.75 11.3 6.93 7.46 5.29 10.4 7.11 11.6 13.1 11.8 8.58 9.36 9.05 11.1 8.32 8.3 8.58 8.56 9.19 11.7 8.03 9.85 7.65 8.5 7.58 9.3 8.59 5.13 10.4 0 1.16 8.62 7.94 10 6.74 5.04 7.95 8.37 10.3 10.6 9.67 7.8 8.05 9.54 5.47 10.2 10.2 8.35 10.6 9.62 11.9 9.82 8.03 8.22 10.4 10.2 9.03 6.73 8.17 8.86 10 5.98 5.03 5.25 8.47 4.52 9.22 5.09 11.4 5.05 6.94 6.53 9.9 8.21 9.83 9.95 9.98 9.24 10.1 9.97 8.81 7.61 5.67 9.23 5.87 8.69 9 9.09 8.37 7.58 11.1 3.99 10.2 9.56 9.89 9.24 8.56 8.49 6.45 10.9 8.97 9.73 7.91 9.01 7.88 7.44 9.34 8.67 10.2 8.19 10.3 1.51 8.78 10.3 7.86 8.57 0.39 9.16 7.8 8.69 8.33 6.18 5.21 9.66 11.1 9.62 9.7 8.84 10.3 7.63 9.75 10.4 9.52 9.1 11.4 3.23 7.07 8.98 9.45 8.82 9.44 9.81 9.81 11.4 8.59 10.2 10 7.93 10.8 7.19 10.1 9.7 8.64 8.85 8.49 10.2 10.7 5.95 5.75 9.7 8.59 8.43 12.4 7.91 9.03 10.6 10.1 5.14 10.8 10.7 7.63 10.1 6.41 10.4 7.66 9.77 7.52 0.7 9.58 10.3 9.97 7.5 0.95 11.1 9.8 9.24 6.3 10.4 11.2 9.62 11.3 7.1 10.9 2.24 9.95 7.25 8.43 9.16 10 9.34 7.16 8.78 9.42 10.1 4.24 9.2 7.94 8.76 8.72 10.7 8.87 5.53 8.67 9.13 10.6 4.56 10.3 11 10.6 8.37 9.57 12.1 11.4 8.69 7.59 9.03 10.3 5.69 8.2 10.7 10.3 9.87 9.71 9.85 8.89 10.1 8.88 10.8 9.41 8.09 1.51 8.48 6.15 8.82 9.29 3.02 8.67 8.85 11.1 9.13 9.95 3.93 10.1 10.1 9.96 7.11 8.38 8.35 10.1 8.93 9.07 3.02 6.14 9.67 7.38 6.95 8.45 9.27 11.1 4.22 10.1 8.9 10 11.1 8.22 8.46 7.39 6.39 9.06 9.17 10.8 0 10.5 9.13 0 7.59 8.02 9.5 11 8.36 10.7 9.8 7.72 7.8 7.43 6.18 8.74 8.1 8.33 9.64 8.93 4.74 9.85 8.28 10.9 8.74 10.4 10.3 6.6 5.95 8.04 8.01 8.4 10.4 9.55 11 4.25 5.54 8.61 10.6 11.2 7.25 10.8 10.2 10.2 9.11 6.16 8.37 8.91 5.9 3.49 7.18 9.13 12.2 9.21 6.36 11.7 6.67 10.2 10.6 11 10.2 9.21 9.95 7.89 10.6 7.05 7.33 12.2 12.2 6.66 8.11 2.78 8.02 9.85 8.45 4.27 0.95 1.16 7.57 4.44 9.11 8.38 7.21 3.18 8.44 10.3 8.91 10.4 9.82 10.4 8.01 3.23 10.5 8.62 10.1 9.89 8.16 5.93 3.32 8.78 10.6 9.28 8.22 8.15 5.14 6.49 3.22 5.9 1.66 10.7 6.16 5.61 9.01 9.72 5.87 3.66 1.16 7.85 10.2 6.33 5.43 10.6 0 3.93 6.32 6.06 8.94 10.6 7.96 9.31 6.5 3.23 9.82 7.84 10.4 8.82 12.7 2.14 10.2 9 8.19 5.81 10.9 10 7.57 10.8 6.81 10.2 9.14 6.67 2.03 9.48 8.2 9.72 9.31 9.57 7.28 9.77 8.41 8.48 11.5 12.7 1.61 9.39 8.74 8.67 8.44 7.13 11.4 9.26 8.89 8.88 9.55 10.3 10.7 9.5 11.1 8.88 10.7 7.41 8.46 8.32 9.12 9.02 7.1 8.18 10 7.52 10.1 6.93 11.2 8.53 8.54 8.52 9.23 8.73 9.95 10.3 9.13 11.6 5.94 9.39 8.31 9.4 6.73 10.1 11.5 10.9 10.3 7.35 8.83 9.63 12.2 9.7 7.79 10.4 9.02 9.17 10.9 8.03 8.56 10.4 7.79 7.86 10.4 9.56 11.5 9.93 7.96 11.7 7.05 11.3 7.83 8.92 4.4 8.87 9.49 10.1 6.52 11.2 5.86 11.6 8.82 8.1 8.2 10.3 11.1 8.94 10.6 8.48 10.3 4.93 6.66 6.8 8.78 8.85 10.2 9.22 8.93 11.1 6.32 7.87 8.9 9.79 10.1 6.66 9.67 12.6 9.91 7.46 8.32 9.06 10.2 11.4 10.8 9.34 12 10.1 10.6 9.32 9.32 9.45 9.94 12.3 10.2 7.95 9.36 8.76 10.7 3.23 12.3 10.5 8.99 8.04 8.81 9.55 7.64 10.1 10.3 5.64 9.5 9.5 10.4 10.1 8.8 8.42 5.61 9.41 8.21 10.2 8.92 8.31 7.16 7.2 7.45 10.2 7.67 8.45 9.03 9.45 9.68 4.9 7.33 9.58 7.44 7.13 7.67 8.77 8.27 7.95 8.74 5.21 8.77 5.46 9.9 10.2 2.42 9.34 7.13 5.44 10.8 10.8 9.26 7.74 9.53 0.7 6.21 10.1 8.93 2.14 11.2 9.54 0.7 9.83 8.32 7.13 10.3 10.2 10.4 9.39 9.61 11.6 10.5 7.33 9.44 8.96 10.9 6.75 10.1 5.63 9.37 11.2 8.16 8.61 8.07 10.1 7.87 9.72 10.1 3.05 10.9 7.54 9.95 8.34 10.4 1.8 10.6 10 9.52 10.1 8.99 0.95 8.43 7.59 10.3 9.62 8.81 6.77 6.46 11.3 8.59 4.5 0.7 12.7 10.1 9.28 11 4.77 10.9 9.53 7.76 6.11 9.49 10.7 10.9 5.99 10.3 9.15 12.9 7.9 10.5 8.61 9.2 10.3 5.08 12.8 9.36 6.43 8.79 5.16 9.85 4.24 11.8 9.66 7.85 6.78 10 12.2 4.29 1.16 9.88 11.3 11.4 11.8 11.6 11.2 6.96 9.92 9.77 9.09 9.52 7.91 0.7 8.97 2.03 10.6 9.24 8.79 5.87 11.3 8.93 10.6 10.9 8.96 11.1 10.2 3.84 7.78 8.06 5.87 9.6 3.74 2.42 5.33 9.23 5.32 5.65 1.66 4.98 4.52 3.6 9.54 4.73 8.88 3.27 10.5 2.91 4.2 2.33 3.7 3.45 9.95 1.51 5.01 6.96 5.03 5.48 6.32 5.11 4.65 5.93 4.8 9.92 4.6 5.16 4.07 7.84 2.85 7.64 8.01 6.45 0.95 9.02 2.97 10.8 3.57 8.31 9.15 1.16 9.4 12.9 0.39 5.56 10.2 5.19 11.2 0.95 7.13 10.6 3.96 10.4 8.52 7.54 10.4 10 5.57 10.3 14 8.97 8.79 8.84 12.1 8.56 10.7 1.8 1.17 10.2 8.98 10.6 8.93 9.57 10 7.06 7.06 11.7 6.93 8.37 7.66 8.34 4.24 8.78 7.15 3.13 11.3 5.45 10.9 7.64 0.95 15.7 6.96 6.51 6.6 10.3 5.86 7.62 11.1 7.97 10.5 7.32 13.2 11.5 9.08 7.94 9.76 8.44 5.04 2.03 10.6 3.99 7.9 1.51 10.5 6.8 11.2 9.08 15 8.78 0 10.6 9.41 11.8 10.7 11.2 8.17 8.06 11 8.09 11.6 9.54 10.2 7.36 3.41 11.2 11.5 12.2 12.1 11.7 11.1 12.2 11.9 7.16 11.1 10.3 10.6 7.96 10.5 8.13 1.51 11.4 10.2 12.6 9.83 9.89 10.8 5.61 9.21 11.4 12.3 5.27 9.01 9.02 8.84 8.63 7.2 9.18 12 6.77 10.1 9.62 8.16 11 9.55 9.13 9.71 11.6 8.22 7.47 12.1 10.2 11.5 9.27 11 8.51 9.32 10.2 9.89 8.73 10.8 8.97 9.68 11.5 9.66 10.3 7.97 5.16 10.2 9.73 10.4 0.7 9.46 2.42 8.87 8.46 11.2 7.74 9.66 6.38 4.36 9.16 8.38 5.8 8.99 9.73 6.8 7.81 11 9.59 9.83 7.47 11 8.65 10.1 9.88 9.1 10.5 7.78 4.29 9.81 7.97 6.86 11.5 12.2 11.1 3.36 9.53 10.9 9.71 11.7 9.48 8.36 2.42 8.79 8.5 9.5 11.1 9.54 10.5 11.8 9.19 3.49 10.7 8.09 1.19 11.8 11.7 13.2 7.85 10.6 8.89 9.77 11.9 5.28 11.5 6.2 9.91 2.72 7.99 8.38 9.94 11.4 1.8 8.35 8.77 10.2 5.07 7.58 8.2 9.79 10.4 11 4.58 8.09 6.58 9.75 8.21 10.1 10.7 8.15 4.34 8.52 10.1 11.4 10.2 11.4 6.91 12.2 6.27 11.6 10.9 12.8 6.91 9.3 7.69 10.6 8.31 10.2 6.66 11.7 11.6 7.93 9.17 1.8 10.3 9.26 11.3 4.2 7.05 6.17 11.3 11.6 9.56 11.4 8.78 11.4 10.6 10.7 6.55 8.72 9.85 9.78 10.1 9.89 10.6 5.51 11 11.7 11.7 2.42 8.32 7.95 9.13 9.44 11.3 9.23 7.26 11 9.1 8.11 8.19 8.19 13.4 9.25 9.39 10.5 7.49 11.5 11.1 10.4 9.74 9.11 8.3 9.74 5.77 8.5 12.6 8.6 10.5 0.39 2.97 8.61 11.3 9.34 2.85 5.94 8.68 11.3 3.81 7.13 9.41 8.3 5.79 8.28 2.91 9.14 7.61 4.29 5.72 12.6 8.82 6.74 6.49 4.74 7.44 8.69 1.6 2.72 10.9 8.87 0.7 7.13 7.33 9.31 8.58 11.2 6.47 11.5 4.74 8.78 7.04 10.1 11.2 11.9 9.55 10.6 11.1 9.85 5.18 8.66 2.03 1.16 9.26 8.56 9.78 9.83 0.39 8.3 10.4 9.84 6.07 7.5 8.07 9.47 1.51 5.11 11.4 10.2 4.56 9.61 10.1 6.54 7.67 5.09 8.53 10.3 9.76 9.01 6.74 2.14 8.74 11.4 9.46 3.81 10.4 11.1 9.01 2.91 9.52 0.7 11 3.45 3.05 3.18 9.66 8.67 11.2 7.35 8.34 11.5 10.6 8.57 9.38 8.26 11.8 6.95 9.87 8.88 8.81 2.13 5.79 4.04 1.92 10.6 9.97 7.18 11.8 10.4 10.8 11.2 6.71 7.51 8.29 8.47 11.9 1.35 8.68 9.43 6.46 7.76 7.22 6.02 9.54 8.6 9.92 10.2 0.7 9.23 6.49 8.02 6.84 11.6 9.39 10.8 6.77 8.08 0.95 7.89 9.93 6.6 14.2 8.77 3.27 10.5 4.15 1.51 4.5 7.27 2.03 9.4 8.94 0.7 10.8 11.1 9.25 9.25 9.37 10.5 10 9.76 7.06 9.16 4.42 2.97 9.49 9.16 6.07 8.75 10.4 3.02 8.75 9.83 8.71 11.8 8.81 8.66 9.84 0.7 8.76 10.1 9.07 10.2 9.02 6.16 8.67 2.78 12.2 9.23 4.46 10.6 11.5 6.3 6.17 2.42 10.3 10 9.67 13 10.1 8.93 4.98 7.15 10.3 5.49 10.2 11.3 11 8.45 8.73 8.49 9.69 8.34 8.16 7.45 12.6 5.52 8.43 9.58 12.6 10.9 6.96 6.25 9.4 1.8 8.79 3.9 7.62 6.97 4.85 9.4 8.94 9.03 7.4 9.82 6.99 2.91 11.2 8.91 9.73 9.47 10.2 7.06 8.43 9.92 9.72 9.9 4.88 7.45 4.72 5.96 6.91 7.06 8.65 6.97 11.8 7.68 6 9.76 9.42 7.72 4.46 2.97 5.51 1.16 10.3 7.96 6.62 9.05 7.46 9.98 7 9.15 9.49 8.98 9.85 9.34 9.47 9.5 6.74 10.9 11.5 11.5 9.11 11.5 9.61 1.66 10.1 8.5 9.7 9.41 3.23 10.7 0 11.9 7.65 8.1 10.7 9.99 5.01 6.65 8.6 8.95 6.92 6.83 9.33 13.8 7.78 7.83 9.31 11.3 8.44 5.76 5.52 0.7 7.06 5.36 3.23 10.8 9.08 4.72 10.1 9.86 7.89 10.9 8.05 10.5 13.7 5.33 11.5 11.6 10.9 8.97 7.6 9.61 10 9.91 8.77 7.2 9.81 12.6 8.82 9.94 10.7 10.9 9.15 14.1 11.5 2.03 11.9 7.81 8.01 10.6 10.9 9.5 7.32 4.58 10.6 9.85 10.3 7.83 11.1 10.2 5.99 5.81 8.09 5.61 5.42 9.27 8.77 8.14 6.56 6.1 10.5 10.8 10.5 8.65 2.14 9.25 8.47 11.2 11 9.76 10.1 10.1 8.21 2.85 10.8 0.95 1.35 11.5 9.78 7.92 12.1 10.2 10.3 4.36 6.1 7.4 9.37 10 11.8 9.96 11.6 9.18 10.4 9.36 7.13 9.54 9.61 8.46 11.9 12.5 11 8.79 7.81 8.48 12.3 11.3 12.7 7.96 8.27 5.13 6.38 7.36 5.98 10.5 6.2 10.5 11.1 11.6 12.4 11.8 13.1 10.7 11.6 12.1 10.2 11.2 7.72 10.2 9.09 9.16 12.1 1.35 10.4 7.98 11.1 10.2 9.22 10.6 8.42 8.31 7.32 6.66 6.96 10 8.74 7.46 10.5 8.64 6.22 10.2 9.57 11.3 10.4 9.17 9.88 9.88 9.1 11 10.6 7.35 0.7 10.3 10.4 10.1 0.7 10 12.5 10.5 4.29 9.22 6.33 10.1 12.1 2.85 6.48 11.2 10.9 9.71 7.59 10.8 1.35 4.07 0.39 12.7 3.6 6.96 0.95 11.9 10.5 1.8 4.1 6.93 3.45 10.7 10.1 8.2 6.63 11.3 9.24 6.79 11.4 10.3 8.18 4.24 11.9 9.33 9.87 9.45 8.03 9.22 9.48 9.59 10.2 0 8.84 10.7 8.41 6.12 0.39 9.86 5.69 9.35 9.38 10.2 16.7 8.76 9.74 5.08 8.56 1.92 1.51 10.4 0.39 10 10.6 10.2 1.35 11.1 3.96 9.92 11.5 9.65 9.93 11.5 4.04 1.16 10.1 7.82 0.39 7.74 7.33 11.2 4.38 7.93 10.4 0.95 9.37 8.91 0.39 9.46 12.7 7.43 10.3 9.61 11.2 0 9.78 7.6 10.7 8.87 9.46 7.52 9.03 9.14 9.32 2.57 10 9.51 12.4 9.63 10.8 7.93 10.8 8.88 11.2 9.09 8.91 10.7 9.94 0.7 8.43 11.3 5.65 6.92 8.4 4.22 10.6 11 0.95 0.7 4.72 9.01 1.51 12 9.74 8.92 10.8 7.61 9.3 5.21 8.63 10.4 5.8 8.13 2.14 7.46 3.49 6.98 8.3 7.24 1.8 11.8 9.59 8.64 10.1 15.1 15.2 14.3 13.9 10.9 11.9 14.5 5.92 15.3 7.24 14.3 14.5 13.9 14.1 13.8 13.4 14.1 11.3 14.8 1.66 13 12.6 9.72 14 14.2 14.1 14.2 14.2 13.8 13.3 14.2 13.8 12.3 14.2 11.6 15 14.6 13 8.72 9.34 14.4 7.88 15.1 14.9 13.7 10.7 9.62 13.3 13.4 13.6 15.1 12.2 15.1 2.55 3.41 3.96 6.14 6.75 13.6 2.57 0.95 15.2 10.9 9.46 10.5 9.71 9.83 13 14.5 13.8 13.2 14.5 14.1 13.3 13.5 12 13.3 14.1 14.4 8.39 15 14.3 14.2 13.3 13.5 14.3 13.5 10 5.87 13.8 9.5 13.1 10 9.93 13 10.5 11.4 11.2 10.5 0.7 8.14 11.3 10 5.33 7.5 12.3 10 11.2 8.79 5.57 2.5 7.74 3.6 10.8 15.1 6.6 9.65 0 13.9 10 13.2 13.9 14.1 4.84 10.2 6.53 10.3 11.4 10.4 10.7 7.15 7.08 9.53 11.5 9.9 10.8 12.9 9.46 8.29 11.4 10.6 11 5.74 10.4 9.78 8.93 12.9 4.24 8.3 6.6 5.98 1.66 3.32 3.45 4.63 13.9 5.53 0.95 4.65 8.5 12.7 9.69 6.15 9.31 9.08 10.8 4.02 2.03 8.95 5.96 3.98 0 6.33 8.52 4.9 7.2 7.78 9.59 7.07 2.42 2.57 10.1 1.16 9.53 6.58 4.52 3.96 11.7 8.9 15 6.9 6.22 9.56 13.6 11.8 8.27 11.4 10.5 5.75 8.9 9.74 11.7 9.06 9.99 10.5 8.82 6.94 8.72 9.24 7.51 9.41 10.7 9.69 10.6 8.45 8.2 10.8 8.02 1.83 7.62 9.72 9.41 11.1 5.79 7.85 4.34 0 9.3 8.62 7.77 8.24 8.44 8.32 3.74 10.3 8.07 8.25 8.74 7.01 10.8 7.49 11.8 3.23 10.8 6.74 8.65 8.62 8.71 7.36 3.53 11.5 8.66 1.66 6.84 6.77 8.44 10.8 8.86 9.18 1.8 14.6 2.57 7.43 11.6 8.98 3.53 6.11 6.56 11.7 3.9 8.17 8.03 4.22 4.82 7.55 3.18 7.38 8.33 7.33 8.09 10.6 6.81 7.25 10 9.23 13.2 9.89 9.89 11.1 8.69 7.03 7.69 6.96 12.8 6.14 5.22 7.48 1.51 10.3 5.82 9.07 3.23 7.88 0.7 11.2 8.98 4.1 7.27 6.32 7.82 12.1 8.62 9.65 9.75 6.47 10.6 5.53 5.52 5.62 7.33 4.93 10 13.3 0 7.12 6.32 10.2 10.1 12.1 10.2 8.73 8.75 10 9.8 4.5 5.65 10.5 9.47 9.41 10.5 3.23 13.1 8.81 9.68 9.92 1.35 0.39 9.9 3.96 12.2 0.95 12.1 12.3 5.13 8.25 6.46 8.77 7.71 7.41 9.29 7.9 8.76 11 2.24 5.39 0.95 4.72 11.2 5.8 1.66 11.5 9.96 8.99 10.4 11.1 8.87 6.38 10.5 7.39 6.14 9.66 9.86 9.02 9.64 6.32 10 6.87 7.72 0.95 3.64 5.72 11.7 9.27 9.21 4.1 11.5 6.77 0.7 1.92 9.31 7.57 8.58 0 1.66 7.8 6.86 5.6 8.1 4.48 5.34 3.18 16.9 6.17 6.91 8.68 2.33 10.6 9.53 6.88 9.8 8.18 9.38 8.33 3.36 5.31 7.28 11.3 8 8.95 8.72 7.17 3.6 4.07 4.22 8.21 4.8 8.7 9 4.17 9.09 8.07 10.3 11.6 9.46 10.6 8.68 8.45 9.56 9.01 9.23 9.14 9.21 9.11 2.24 6.82 0.7 1.51 3.57 5.61 3.49 4.52 11.8 2.78 6.53 2.33 9.71 2.91 10.1 7.78 0 10.5 0.95 4.96 2.73 11.5 10.6 4.72 0.7 10.2 2.69 1.51 5.9 1.16 9.89 8.45 6.48 0.7 4.42 2.14 1.66 11.1 0.95 4.84 4.78 3.74 4.52 2.33 5.66 7.31 1.51 3.08 7.39 7.75 10.1 3.64 9.61 1.51 4.52 3.64 10.8 2.14 7.15 3.6 12.9 2.5 10.5 3.02 5.11 9.62 2.24 3.02 7.4 9.81 9.87 4.67 9.33 3.18 3.78 3.49 1.16 5.9 2.72 9.96 8.72 6.25 6.26 9.35 11.1 12.5 5.12 3.16 8.95 12 4.12 6.53 10.1 10.2 8.99 10.9 10.8 9.14 9.23 2.33 8.02 10.6 9.65 8.56 11.1 10.5 10.3 8.44 9.19 10.7 8.71 10.1 9.91 8.93 9.62 11.5 8.34 9.22 8.57 8.48 11.8 7.91 11 8.71 10.5 9.5 7.85 9.46 7.82 0 9.86 11.8 6.87 6.7 8.59 9.44 8.58 3.32 10.6 13 7.03 5.79 9.61 11.4 2.72 7.99 7.54 0.7 10.8 8.36 11.2 9.4 6.82 7.85 9.76 8.19 10.1 1.8 11.2 10.1 8.9 5.55 9.28 9.95 9.08 14.2 11.2 9.82 7.87 9.86 8.43 7.54 8.99 11.6 7.72 2.62 6.39 3.78 9.34 8.21 10.7 4.52 8.79 5.64 8.75 8.25 8.65 0.7 9.44 8.42 6.69 8.52 10.2 6.63 3.57 9.83 6.81 10.5 7.31 7.98 9.64 9.03 10.1 1.35 10.2 9.24 9.13 8.41 10.5 10.9 8.78 9.51 10.1 9.27 10.1 8.26 9.63 9.81 2.42 9.49 11.6 9.79 9.98 7.68 9.6 7.78 4.37 9.97 8.06 8.26 5.07 4.56 7.63 4.77 10.3 8.12 9.94 3.71 9.1 5.41 7.68 0.7 6.88 6.79 7.68 9.72 9.3 11.5 8.07 10.4 8.72 9.45 8.24 12.6 11.4 9.25 8.83 10.8 3.74 10.7 11.5 12.2 9.9 14.5 2.85 11 3.93 7.31 1.92 5.46 13.1 0.39 11.1 10.1 5.55 5.55 10.2 9.11 9.74 8.08 6.95 9.02 9.14 8.09 9.04 12.2 10 1.73 1.35 8.81 1.16 3.41 6.34 0.39 7.29 9.13 5.41 3.9 7.48 1.16 12.3 4.44 6.16 3.64 2.57 3.23 2.78 11.1 7.95 3.49 6.41 2.65 0.39 0.39 8.18 11.9 8.78 9.67 10.8 2.78 8.97 5.03 9.25 1.16 10 6.94 5.08 3.41 1.16 9.13 2.42 8.11 6.23 3.6 7.38 0 11.3 8.29 0.39 1.51 0.7 9.25 6.89 5.56 6.93 0 4.22 6.55 5.31 6.14 5 6.81 1.8 7.25 10.7 4.17 5.18 9.24 1.8 4.36 0 8.86 0.95 9.57 2.14 5.62 9.71 2.57 9.42 11.9 7.9 8.19 0.7 4.7 8.24 11.1 12.9 10.6 9.44 6.7 1.66 8.73 4.87 6.58 2.57 8.17 11.1 13.8 10.1 10.6 11.2 10.4 11.5 5.34 8.58 9.85 11 10.4 8.4 8.87 8.05 9.85 8.39 7.5 7.12 6.63 11.2 6.12 10.4 9.38 10 9.31 5.24 9.31 7.81 6.15 6.41 4.24 8.14 10.9 9.84 11.3 11 10.9 5.91 8.68 7.77 11 3 10 9.22 9.26 9.42 7.8 11.1 11.3 11.9 8.02 7.96 5.07 9.93 7.98 9 7.22 8.62 7.23 9.04 13.6 11.6 10.3 9.37 12.4 9.95 10.3 10.2 10.1 11.6 11 9.89 10.4 10.2 9.26 10.7 8.01 8.66 11.3 9.77 9.54 9.34 0.95 11.2 3.02 12.5 8.41 11.9 9.8 12 10.2 11.2 10.1 9.33 11.3 10.8 3.78 11.2 1.35 10 9.9 11.3 9.57 13.4 10.8 7.49 10.8 8.19 10.1 7.05 15.2 10.1 10 8.35 4.58 9.68 0.95 12.9 6.78 8.21 15.5 9.7 8.36 12.4 0.95 7.69 13.1 11.2 10.8 11.4 9.18 1.66 10.3 8.76 11.9 12.5 10.7 10.3 11.6 11.8 8.89 10.7 7.74 11.2 10.8 10.4 10 12.5 8.91 9.6 11.4 10.6 12.9 11.9 12.1 12.2 11.9 12.5 6.91 4.29 0.7 11 10.7 12.2 13.1 7.5 12.5 4.17 12.8 11.4 12.6 5.36 8.54 9.96 1.51 0.39 2.65 0.39 1.16 1.92 1.35 3.17 12.2 2.51 0.39 0.7 6.02 11.6 11.8 9.91 9.28 0.7 5.17 10.9 7.98 8.45 8.86 10.1 9.45 4.2 5 9.42 9.59 4.02 5.51 8.87 9.01 10.3 9.38 10.2 9.03 10.6 9.51 9.25 7.36 8.97 6.09 13.2 8.64 8.76 10.1 11.5 5.47 12.1 9.26 9.16 8.78 12.9 9.33 10.1 7.79 9.47 11.1 7.18 9.89 10 3.18 11.2 5.92 1.16 4.22 12.1 7.54 8.15 1.35 3.9 0.7 10.8 11.1 4.44 9.66 7.49 10.4 9.77 8.89 8.12 12.6 6.77 10.4 9.97 12.4 10.1 10.5 9.16 8.9 8.29 9.66 4.36 0.7 13.7 13 11.5 11.4 12.5 9.61 9.22 12.1 6.79 0.39 8.79 9.79 8.71 10.6 8.54 9.68 8.01 8.45 6.7 3.18 4.82 7.8 10.7 7.18 9.14 1.66 5.74 6.86 9.89 0.7 0.39 10.6 0 11.1 10.9 8.18 3.57 10.7 7.34 9.1 8.28 8.51 10.5 1.51 12.3 6.7 9.07 11.1 9.6 10.7 7.12 9.49 10.5 6.6 12.1 0.95 1.51 9 9.33 10.4 4.74 10.6 10.4 9.51 6.74 10.9 10.9 8.77 10.3 5.04 2.78 9.32 14.3 9.3 6.71 9.93 0.95 8.92 8.94 5.41 9.88 8.1 9.04 9.09 8.1 9.56 7.25 9.25 10.5 9.3 10.5 7.02 10.6 3.74 12.7 4.2 11.6 11.2 9.04 8.02 9.88 2.03 13.8 10.6 1.51 10.9 7.74 9.52 10.8 9.19 12.7 6.6 12 13.2 12.5 8.84 11.6 5.89 5.43 9.43 2.42 8.91 8.66 0 11.7 11.6 9.9 10.5 9 8.33 13.3 12.2 12.8 4.24 11.4 11.5 10.9 8.85 14.5 5.74 9.87 8.09 10.3 9.67 4.67 12.8 11.7 6.1 8.67 6.69 7.06 16.8 12.3 7.79 11 10.4 8.62 8.7 8.33 9.73 9.74 6.29 10.6 14.8 10.7 8.46 6.76 3.84 2.65 11.2 11.8 10.6 10.7 8.63 12.1 9.64 4.62 4.54 0.39 6.47 10.6 2.5 11.9 7.07 12.9 11.8 7.1 3.02 11.9 10.9 9.4 8.97 10.1 10.5 12.8 5.95 10.6 11.1 11.1 12 0.95 14.1 11.8 11.7 10.7 13.4 14.1 9.92 9.49 11.3 10.4 15.5 1.38 13.8 8.52 9.54 14.9 7.83 8.96 8.88 8.15 8.29 6.78 12.8 0 12.7 11.6 10.9 7.12 10.6 5.53 1.16 1.92 7.45 7.75 9.2 4.22 3.6 4.17 11 9.8 9.84 2.57 10.9 2.65 9.49 11 9.18 9.35 10.1 9.84 10.6 9.27 10.9 11.2 9.47 8.21 8.77 8.58 7.45 5.52 11.8 6.58 5.76 11.2 5.97 7.71 9.87 8.88 9.72 4.8 2.85 3.53 4.63 6.67 1.16 7.2 7.37 7.27 7.26 8.24 10.5 4.48 7.16 0 2.78 5.9 11.8 6.48 4.84 3.13 7.19 8.44 6.65 2.17 10.4 1.16 6.43 7.68 3.67 3.27 5.43 8.51 8.08 1.16 12.7 2.24 6.19 2.57 6.16 0 2.91 7 6.54 3.84 9.23 2.65 0.95 9.91 5.74 9.62 4.67 4.55 4.59 7.03 1.46 4.84 5.54 6.12 4.42 4.84 16.1 4.38 5.79 0.95 4.67 6.17 2.78 4.63 7.15 14 8.49 4.84 9.31 2.42 5.42 14.3 4.94 6.33 1.51 7.75 9.89 1.66 0 4.85 9.45 7.57 7.8 4.5 5.05 0.7 7.61 8.05 2.65 11.2 4.34 6.52 4.93 8.5 9.13 7.43 1.92 9.43 1.51 10.7 1.16 12.8 3.23 13.4 14.9 12.6 0 8.91 10.9 9.72 8.6 10.5 11.9 10.2 8.18 10.8 10.1 11.4 11.2 0.7 11.1 11.3 11.9 10.2 10.5 9.93 11.2 10.5 11.4 11.9 9.49 3.87 0.7 11 4.52 10.4 3.64 9.96 9.98 12 11.6 8.69 9.41 10.1 9.13 10.7 10 11 11.1 5.07 11 0.7 11.5 11.4 11.5 10.4 11.1 9.82 8.78 9.44 10.7 10.1 1.35 10.5 11.1 8.95 8.92 10.9 11.6 6.82 11 10.4 8.49 12.3 13.6 11.7 11.5 11.2 9.88 12.2 10.2 7.45 2.03 9.11 0.7 14.1 14.1 8.75 0.85 10 5.04 4.56 6.74 8.27 9.38 8.54 1.35 7.55 11.9 12.6 7.02 9.3 12.6 10.6 8.63 6.87 11.2 11.5 9.66 10.6 9.4 5.65 0.95 4.04 10.9 0.39 6.47 11.5 0.7 3.18 6.64 7.18 7.51 1.51 8.29 8.87 6.29 12.2 1.8 1.35 2.57 5.6 7.73 9.15 5.78 10.6 4.36 12.5 9.36 6.09 9.07 7.15 8.48 13.3 6.52 11 10.8 12.8 7.08 13.9 12.9 11.8 15 5.48 12.4 11.6 5.09 12.2 8.09 9.52 8.72 6.59 8.29 9 7.07 8.46 6.61 13.6 6.65 9.32 5.85 5.72 7.61 6.65 7.57 4.98 6.02 6.64 9.19 8.75 7.01 10.7 8 8.05 5.74 7.55 8.83 8.19 7.04 9.13 7.72 7.47 7.08 8.06 5.89 7.59 6.31 8.42 3.81 1.92 4.1 6.79 7.54 7.86 7.31 8.96 7.03 2.03 8.51 3.18 4.04 7.38 6.62 1.51 4.94 5.86 6.53 3.21 12.5 5.43 1.35 2.78 1.92 0.95 0.39 2.78 8.43 10.1 5.29 8.11 8.1 5.93 6.67 4.07 6.16 8.09 6.52 5.36 9.39 8.42 10.2 4.79 10.9 10.6 10.6 8.87 13.4 5.04 7.01 0 10.5 6.56 10.4 6.94 6.42 2.5 4.36 2.57 6.96 8.44 7.32 11.4 2.14 7.13 8.74 7.56 7 8.16 7.52 10.5 7.63 8.4 5.59 7.48 12 3.57 5.16 7.7 4.88 5.73 12.4 10.6 6.43 7.34 5.79 7.69 3.67 7.74 5.81 7.52 5.99 6.87 8.16 8.13 1.51 0.7 4.63 7.87 6.53 5.72 12.7 10.6 10.2 13.4 7.4 12.4 10.8 11.6 3.65 14 8.61 11.2 7.58 3.87 11.1 12.6 8.89 9.22 11.1 9.64 11.7 3.23 3.57 6.38 12.7 9.84 9.35 5.83 8.84 9.7 9.68 8.03 10 10.3 11.2 13.1 7.04 4.82 9.67 1.92 8.68 9.16 5 6.45 7.65 9.74 8.71 7.43 9.85 0 4.79 9.44 11.3 5.91 10 10.3 8.85 9.2 8.59 6.36 8.64 7.77 9.65 0.7 9.53 10.5 8.79 7.95 7.62 10.4 9.23 3.41 15.5 10.4 8.02 8.97 9.06 10.1 8.51 9.64 10.2 5.31 9.86 11.4 5 10.1 9.93 9.88 11 8.86 9.56 9.47 9.04 8.54 11 9.67 9.35 6.46 8.34 7.76 11.6 7.47 7.29 9.46 7.06 10 9.6 10.1 9.2 9.63 9.48 6.9 9.98 8.08 7.43 6.81 7.47 10 8.63 8.71 11.1 10.1 10.5 11.1 11.7 8.16 7.02 9.83 7.79 11.4 11.1 5.39 10.5 10.7 12.2 9.31 8.78 8.35 6.14 8.28 6.86 5.37 6.95 9.61 7.09 9.2 10.7 8.64 12.9 8.03 7.33 0.7 5.62 7.92 12.3 7.43 10.4 7.52 4.2 10.2 7.88 7.15 7.72 7.84 8.13 12.4 9.66 9.06 2.33 11.3 12.2 8.64 9.62 12 8.92 8.37 7.06 3.18 9.74 0.39 4.62 0.39 10.4 6.12 10.5 9.01 5.3 4.4 5.12 4.69 6.56 1.66 7.17 7.04 4.98 8.38 7.15 10.6 8.25 7.66 3.02 9.68 7.24 9.21 7.32 1.8 4.54 3.88 10.5 8.86 5.67 3.84 9.56 11.5 7.41 7.18 8.66 9.93 10.4 8.44 6.3 8.88 12.1 8.99 9.96 8.82 9.67 9.96 7.8 7.58 8.03 11.4 8.96 6.4 8.52 3.74 7.75 6.47 7.68 8.03 8.55 7.16 8.33 8.78 10.3 8.94 8.87 5.51 7.65 6.92 6.86 6.76 8.69 5.84 6.95 8.19 6.08 8.73 8.01 8.12 8.96 8.51 8.55 8.83 4.02 8.68 11.1 9.08 8.78 8.91 10.3 10.2 7.31 9.98 4.54 9.66 7.82 8.61 9.81 5.38 8.23 9.53 10.3 9.42 2.5 8.02 10 9.94 9.44 9.59 7.78 5.95 8.45 8.37 10.3 9.03 9.21 6.27 7.12 8.52 9.92 7.62 9.95 9.09 9.24 8.52 8.93 5.19 8.25 8.92 9.01 8.71 8.74 8.78 8.28 11.6 9.96 11 8.67 6.64 8.59 9.15 9.86 11.9 10.6 11.8 0.95 7.65 9.48 6.02 9.27 8.39 6.92 5.05 8.52 7.22 7.01 9.22 7.49 7.99 7.42 1.35 7.54 6.65 10.7 7.91 0.7 11.2 1.8 9.86 9.38 8.61 8.42 10.1 6.47 7.91 5.68 8.03 7.61 9.61 9.63 8.87 9.11 6.67 7.09 3.87 6.63 9.47 7.87 8.88 8.64 0.39 5.43 13.2 8.23 2.14 8.92 11.1 8.89 10.5 9.97 8.67 9.07 8.01 6.06 8.03 3.99 8.92 5.17 7.34 8.21 6.52 10.7 8.64 10.6 6.24 7 3.41 8.52 7.18 3.53 9.03 2.42 8.37 5.99 4.29 6.61 8.94 9.3 8.02 5.68 10.5 7.36 9.03 5.61 11.2 9.6 7.24 10.1 7.75 4.88 6.6 3.41 6.54 8.38 5.89 7.32 8.01 1.51 10.3 7.61 0.95 4.02 7.3 1.51 6.47 8.09 6.17 8.66 6.81 2.85 7.63 8.84 8.86 11.1 5.69 7.98 9.38 7.45 8.67 8.86 10 9.63 6.74 8.7 9.95 7.59 7.26 8.04 8.81 9.57 12.3 9.02 5.68 10.6 10.5 9.37 5.21 7.47 8.52 6.02 9.08 10.3 10.1 10.2 7.44 5.72 0.39 10.3 8.25 7.75 7.65 5.67 7.94 10.6 6.94 0.7 7.12 4.12 2.78 5.9 7.47 6.95 5.91 11 1.66 9.11 1.51 9.02 10.5 10.6 3.78 7.31 8.22 4.06 9.78 2.03 7.83 9.95 2.78 13.1 4.38 7.36 7.47 7.76 9.31 5.67 9.19 8.08 7.38 6.41 10.6 2.24 6.08 10.5 8.82 8.69 8.05 9.35 4.48 7.49 7.05 9.49 9.3 3.64 6.52 3.02 12.2 9.95 1.92 8.53 10.2 9.43 8.02 7.24 5.21 8.08 10 10.2 8.07 8.66 9.03 9.76 8.97 9.06 8.73 8.4 9.65 9.76 9.42 9.38 7.01 2.78 1.51 7.37 5.24 9.45 4.97 8.42 1.24 5.66 3.6 1.51 6.9 10.6 12.8 2.24 7.12 6.45 7.51 6.32 0.7 9.42 6.73 4.2 4.2 9.93 8.67 9.79 7.64 10.7 9.64 8.31 9.77 10.5 10.4 10.3 6.13 8.47 9.7 10.5 10.1 5.83 9.59 6.12 9 7.94 7.44 11.2 6.44 6.63 10.8 5.58 8.63 8.29 9.73 9.57 9.16 9.24 8.87 7.41 7.76 10.4 9.55 9.19 9.44 10.5 9.62 10.6 7.68 8.89 9.34 8.25 2.85 12.8 10 8.67 9.09 12.7 7.95 9 9.46 9.19 4.97 11.6 9.79 6.4 6.73 3.81 8.85 10.1 9.91 3.87 8.77 6.9 6.06 9.53 9.73 8.22 11.4 9.74 3.18 10.9 9.07 3.45 7.05 10.8 10.2 6.17 7.68 10.4 8.74 7.22 9.85 12.2 6.19 7.85 3.71 6.32 8.24 8.79 5.52 4.74 7.81 8.88 8.27 9.42 8.84 5.84 9.21 6.08 12 4.4 3.41 11.1 8.23 3.27 7.65 5.65 11 5.74 11 11.3 9.64 1.35 10.7 8.02 9.4 10.4 5.47 11.7 9.8 13 9.58 11.4 9.85 10.7 4.76 9.44 3.49 8.44 9.16 4.2 6.25 11.4 7.84 11.1 3.08 9.57 5.65 8.09 3.02 7.73 8.05 6.64 9.03 4.42 6.18 4.49 7.45 5.64 10.6 8.49 7.9 9.56 8.58 7.24 6.37 10.4 5.74 11.5 12.8 9.68 12.2 11.7 12.2 7.25 9.73 8.3 8.53 7.83 6.82 9.97 11.5 10.2 7.66 8.13 3.78 11.6 9.55 10.5 10.7 9.5 9.51 4.22 3.93 5.25 2.37 11.8 8.43 8.77 8.4 9.51 3.23 11.8 14.3 7.06 2.97 3.81 7.19 5.7 9.02 9.49 8.68 12 11.5 14.4 2.33 8.32 3.18 2.33 1.66 11.7 12.4 9.4 6.92 2.33 12.7 11.8 9.61 9.21 1.16 6.75 4.58 3.67 12.2 5.04 9.64 9.56 7.83 12.4 10.7 5.09 6.41 9.29 7.96 10.8 6.56 10.2 10.2 9.96 8.85 8.15 9.42 9.57 9.17 10.6 9.25 12.9 0.7 8.82 6.72 9.09 8.91 7.69 7.91 8.61 6.47 8.68 4.8 6.66 11.1 10.3 11.3 10.7 8.96 9.68 9.1 9.78 10.6 10.4 7.07 0.7 7.27 11.2 12.3 8.26 5.4 9.84 6.81 8.23 9.87 4.04 10.2 10.7 10.8 11.6 11.3 9.38 6.32 6.12 9.5 1.16 8.2 10.6 0.95 9.86 9.07 8.89 9.22 6.42 8.13 4.17 6.4 2.5 9.99 9.19 10.3 8.92 9.94 8.21 9.59 6.92 9.96 2.26 8.95 6 9.56 9.95 5.13 10.7 9.88 12.6 10.2 7.08 8.69 11.1 8.63 9.62 1.27 9.62 8.78 2.58 8.94 8.35 7.52 10 4.27 8.32 3.71 8.79 8.22 0.95 11.2 10.3 7.39 10 13.4 8.44 9.63 7.44 11.5 8.7 0.7 9.12 7.46 9.32 7.78 13.3 6.96 10.6 11.3 13.2 10.3 11.1 10.9 6.66 13.2 10.5 7.37 10.9 7.51 8.88 10.5 0 8.83 0.39 11 12.3 8.63 4.11 8.37 0 10.5 11.2 12.2 9.76 6.47 12.3 7.91 9.75 6.97 10.6 9.37 7.58 8.88 12.3 2.72 9.3 8.41 10.9 10.8 6.11 4.12 1.92 10.4 0.95 1.16 0.39 9.92 2.57 8.77 2.5 4.58 9.53 8.86 0.39 2.57 2.78 7.73 0 0.95 9.42 4.44 10.6 12.5 10.4 9.08 7.71 1.8 3.36 4.38 9.46 7.57 0.95 8.97 8.48 6.72 7.52 7.37 7.27 3.81 7.98 7.39 8.4 2.03 8.24 10.6 10.4 9.3 10.2 0.95 4.67 1.35 5.51 3.02 0 7.96 9.4 8.4 8.27 7.05 8.96 9.14 2.85 9.17 0.7 3.32 0 0 9.72 5.78 4.04 9.99 7.43 10.3 8.47 10 0.95 8.06 10.3 10.9 10 8.1 0.39 4.34 8.17 11.2 9.34 0.39 8.49 10.8 9.02 7.66 5.93 7.3 1.35 0.95 11 0.7 8.65 11.4 8.49 1.8 6.21 9.58 8.71 3.78 9.38 8.27 0.7 0.7 7.59 10.4 8.47 8.36 8.37 8.76 4.29 9.06 11 9.26 6.19 0.95 2.14 9.38 2.33 5.9 10.9 10.8 9.88 6.69 9.9 9.86 7.34 5.42 7.69 11.9 9.55 8.9 1.35 7.02 5.45 7.51 2.85 3.53 10.1 5.82 9.32 8.76 7.21 7.74 9.38 11.1 10.1 9.63 3.23 3.57 10.4 4.2 8.41 1.66 3.13 0.7 7.56 0.39 3.71 0 0.95 8.46 10.8 8.02 7.24 9.64 10.4 7.71 9.25 8.99 4.6 11.5 10.5 8.73 8.64 5.05 6.13 0 7.25 1.51 8.61 10.4 8.22 8.14 3.53 9.83 11 9.04 7.75 8.39 5.07 7.38 3.45 0 11.3 9.3 8.26 11.4 10.4 9.56 8.43 11.2 10 2.24 7.39 5.56 8.69 8.04 8.19 8.11 11.8 7.53 0.39 9.15 9.69 9.52 7.34 7.72 14.2 3.13 4.72 6.09 1.35 3.53 6.19 10.1 10.8 7.45 9.52 5.92 5.29 8.97 9.65 1.51 9.32 5.87 5.77 7.1 7.31 4.27 7.13 9.05 9.86 8.73 7.17 10.2 8.7 8.12 8.75 8.37 7.74 8.2 7.54 7.1 7.22 5.6 9.54 8.64 8.31 8.59 9.12 10.3 6.08 9.78 6.89 10.8 9.01 6.18 11.5 9.66 10.8 9.48 7.45 5.41 6.74 8.87 10.8 7.26 8.72 9.95 11.1 8.04 1.8 6.74 9.29 10.4 10.2 5.05 8.68 6.59 5.61 1.16 7.34 4.1 7.88 6.58 6.54 4.29 7.34 7.64 5.42 5.58 0.39 9.73 12.1 10.9 8.33 8.63 7.98 8.38 10.9 8.37 9.86 9.73 11.1 1.66 11.8 7.1 5.63 5.14 8.9 9.5 9.82 2.78 9.97 8.21 7.46 9.53 9.77 4.56 8.12 8.49 8.46 9.07 8.84 9.63 9.48 11.1 9.69 8.93 8.92 7.47 7.19 8.41 5.34 7.4 11.9 10.2 4.63 8.51 9.53 8.97 9.39 7.73 9.7 5.96 8.81 4.12 6.64 11.4 8.72 9.73 8.17 10 9.99 8.34 9.92 6.95 9.79 6.91 9.24 9.55 7.35 7.76 8.43 4.1 9.62 9.99 7.65 10.5 7.68 7.27 9.38 10 7.37 9.68 8.63 9.79 9.71 8.92 3.67 8.44 6.17 6.74 7.98 2.5 9.1 9.03 10.3 9.82 9.4 6.76 9.09 8.05 9.85 1.35 9.23 11.1 10.4 7.62 9.84 7.97 9.36 1.8 10.1 0.39 9.77 9.13 9.63 9.33 7.9 9.18 5.25 8.5 9 7.91 9.9 11 4.46 10.6 5.9 6.36 9.5 8.49 8.53 6.34 7.97 6.8 9.64 5 9.17 7.95 2.03 4.42 5.49 2.11 9.91 9.26 11 6.14 2.42 5.19 10.6 9.48 8.93 8.97 10.4 5.98 6.44 3.78 10.8 7.62 8.95 7.69 10.1 7.44 7.97 9.41 10.2 4.85 10.4 5.19 8.04 9.98 6.32 9.29 9.36 11.7 9.54 8.49 10 1.35 9.48 9.49 9.49 1.16 8.87 8.53 4.07 12 9.6 9.39 3.67 6.22 2.42 10.1 6.96 8.98 4.67 11.5 9.54 8.73 1.16 2.72 6.33 8.92 11.1 7.05 6.76 8.93 10.7 3.13 1.8 7.04 0.95 9.69 9.71 8.76 10.1 10.9 4.65 9.23 2.24 9.17 6.21 0.42 6.67 8.82 10.5 2.03 5.13 6.61 7.05 1.35 4.24 0 10.8 7.82 0 5.96 7.86 8.61 7.3 6.94 2.14 9.62 9.95 7.67 6.12 12.7 7.27 11.4 9.04 5.77 1.16 4.2 10.2 7.85 6.85 8.67 8.46 9.91 5.72 7.31 7.77 5.25 4.31 5.21 7.69 7.86 13.5 6.84 8.68 6.3 6.32 10.2 10 8.21 8.61 5.84 6.33 7.48 8.9 8.97 5.88 4.44 3.18 7.04 11.7 8.49 9.32 8.47 11.7 5.16 8.49 10.4 5.39 6.42 9.61 9.14 6.71 8.49 0 5.65 9.67 3.67 6.43 4.72 8.09 8.78 7.68 9.88 7.36 7.52 8.15 7.71 7.65 4.77 0.7 7.29 7.19 9.87 8.88 7.9 9.26 9.22 9.78 10.6 10.2 9.57 9.19 0.39 7.35 10.7 5.61 8.95 9.81 9.57 8.84 7.61 9.21 4.56 9.71 8.62 7.77 6.78 10.4 9.74 10.1 10.6 2.85 8.96 7.36 9.02 6.46 10.2 10.9 10.9 8.28 7.6 8.14 10.2 6.33 9.44 10.5 9.18 8.03 8.04 8.69 9 8.39 8.95 8.77 9.18 7.07 8.98 7.23 7.51 8.48 1.16 8.54 9.16 7.55 7.25 8.87 9.52 12.8 8.26 6.38 8.16 9.08 8.62 8.17 9.24 10.6 1.66 7.32 10.3 7.42 8.37 4.07 6.48 6.45 8.71 8.64 9.7 6.51 5.76 9.82 9.03 1.92 6.58 11.6 8.46 9.38 8.94 4.07 2.72 10.8 9.78 9.65 5.31 10.3 5.6 6.6 8.27 0.7 6.73 8.7 8 9.96 7.08 8.21 11.2 10.2 8.16 7.18 9.23 7.77 8.82 7.9 8.59 7.33 10.3 11 8.53 6.92 3.27 8.64 3.84 4.69 9.93 9.98 11.5 10.5 0.7 9.19 0.7 10.5 9.82 7.85 9.82 3.45 0.95 6.51 0 8.84 7 13.2 9.54 6.94 0.91 8.56 2.78 2.42 10.7 7.05 9.24 6.34 8.89 9.32 7.15 7.7 9.39 9.36 9.67 1.92 9.36 7.95 3.78 11.6 9.36 11.6 11.5 7.75 10.6 9.7 10.2 4.76 8.05 6.93 0.7 7.18 9.66 2.24 14 9.72 9.73 9.24 10.4 9.72 10.5 7.63 7.86 6.32 9.96 10.9 9.45 8.75 5.53 12.8 9.25 7.84 8.37 9.89 9.02 10.5 8.61 7.5 9.62 11.6 6.57 3.29 10.8 8.57 2.03 3.87 9.26 5.14 1.35 4.02 9.11 2.3 3.9 12.7 8.67 8.84 6.87 1.8 9.37 8.64 9.96 11 10 5.12 11.6 11.3 9.96 9.5 9.89 12.5 11.4 9.61 9.9 9.41 9.96 9.36 5.65 7.35 11.6 8.16 11.1 8.15 5.08 6.81 10.1 8.63 9.13 4.58 11.4 3.93 8.1 11.4 8.11 11.1 9.76 10.9 10.6 2.78 3.27 9.76 3.23 8.39 8.87 9.3 13.4 8.42 5.53 6.48 4.63 5.44 4.85 9.71 9.44 9.99 7.19 9.11 9.86 7.97 5.35 9.09 3.74 14.6 8.49 6.66 9.73 9.14 10.1 10.6 6.45 8.08 12.1 10.4 10.4 9.72 12.9 12.7 8.51 12.5 12 10.8 12.2 12.1 11 10.1 6.93 11.1 11.4 7.78 10.7 7.48 7.77 11 9.97 10 11.6 11.8 7.73 8.82 10.3 9.52 9.11 8.97 5.33 13.7 5.17 12.4 10.2 10.9 8.41 8.11 2.91 1.16 12.9 9.07 12 8.91 10 7.31 11.6 12 8.99 9.89 11.4 10.3 9.06 9.54 10.1 11.4 12.1 10.2 9.03 11 3.45 9.84 7.29 8.95 3.02 9.11 7.77 11.9 6.3 10.9 0.95 1.16 8.93 11.6 12.9 16.2 10 12.3 12.3 9.42 11.8 8.56 8.29 9.39 10.2 9.58 11.2 10.4 5.33 8.44 4.38 11.8 7.51 2.03 4.59 3.67 8.23 5.37 8.99 6.14 11.9 9.01 7.1 8.82 1.51 6.26 9.28 10.5 8.72 11.3 9.15 3.32 6.61 3.13 1.35 10.7 9.86 5.53 11.3 10.5 1.51 9.9 6.73 1.8 8.48 1.8 11.4 1.92 12.8 11.6 10.2 7.45 8.04 5.86 11.2 9.53 9.33 9.58 10.6 0 7.21 8.49 10.1 5.62 6.79 9.29 10 8.14 5.66 12.3 7.33 8.96 10.9 6.03 1.51 8.84 1.16 8.07 10.3 7.16 8.29 11.6 7.5 8.46 11.3 9.6 10.4 9.55 9.81 5.11 4.56 9.65 13.7 11.8 11 9.62 10.5 9.59 9.46 11.6 11.8 10.2 9.16 9.56 8.69 9.74 10.6 11.4 11 10.4 10.6 10.8 10.5 2.03 8.73 10.2 11.5 7.43 10 9.57 5.04 2.03 10 8.26 2.14 7.03 9.15 3.32 10.3 10.2 9.2 10.4 10.7 9.75 4.91 3.49 1.92 10.1 11.5 10.8 8.68 9.57 8.38 5.08 10.7 10.6 8.39 11.8 11.7 9.05 10.5 1.16 2.78 6.36 11.8 2.91 0.95 10.6 9.34 11.1 2.42 4.04 9.76 8.48 7.3 7.68 10.1 9.98 6.99 4.76 4.84 3.1 2.33 5.24 9.2 7.51 8.05 7.34 11.1 6.91 7.81 2.42 10.9 5.91 9.01 0 2.68 1.8 2.57 5.89 7.41 2.65 7.92 10.1 8.69 8.16 9.99 10.4 11.4 7.24 0 8.8 9.46 10.2 8.21 8.6 9.48 9.59 7.21 8.48 7.87 6.53 5.52 10.5 9.68 11.9 8.85 6.9 5.87 8.59 5.41 9.41 12.3 3.18 10.7 9.48 9.34 0.7 10.9 8.04 8.16 6.35 7.45 7.15 10.3 11.4 9.92 8.74 9.58 8.5 8.24 12.3 8.24 6.88 7.7 10.6 7.27 1.92 3.23 1.92 8.71 10.7 10.3 0 5.91 4.02 5.58 1.51 8.19 10.8 9.06 6.79 8.36 9.87 7.63 2.85 4.74 8.12 9.31 5.85 0.7 5.92 8.03 5.21 8.22 8.25 8.88 7.89 9.76 7.73 7.72 10.4 10.8 8.59 11.8 8.31 8.82 6.22 8.74 11.3 9.74 9.96 12.7 8.93 6.41 6.61 9.46 9.2 2.14 10.2 9.56 9.74 7.63 3.84 7.7 5.62 12.6 9.43 6.59 9.29 8.79 10.4 8.94 10.6 9.68 5.61 8.14 9.38 5.65 7.52 1.16 3.9 7.3 4.8 9.89 10.6 7.43 7.76 8.42 6.16 7.54 8.17 9.3 4.79 7.38 3.41 5.73 9 4.04 9.74 7.16 10 9.6 8.82 7.03 0.7 6.7 5.17 9.95 7.72 8.8 12.7 5.33 8.22 9.56 7.04 4.4 9.42 9.86 8.36 11.7 9.25 10.8 9.67 8.78 8.3 6.71 9.22 11 10 8.96 8.81 6.24 9.28 8.85 9.12 7.39 10.7 5.17 7.17 6.47 8.59 9.59 10.9 10.8 10.3 9.44 9.81 6.49 10.6 6.02 7.24 9.37 8.54 8.62 4.43 4.94 10.1 10.7 8.97 10.5 4.65 8.56 7.2 8.54 10.9 7.79 7.02 8.17 8.17 7.52 2.97 5.09 4.6 9.97 7.12 4.96 12.6 12.6 8.65 9.67 10.6 2.85 9.38 10.3 9.57 10.6 9.52 8.8 4.44 10.6 10.7 11.1 9.52 7.54 9.17 0.95 9.42 7.57 10.4 8.19 0 6.47 8.8 8.1 10.6 9.4 10.9 9.21 5.16 7.01 8.84 10.5 9.78 3.27 9.84 7.51 3.96 7.94 12.4 6.23 9.87 7.42 2.42 8.99 11.4 7.73 9.44 3.57 9.16 6.02 9.53 5.19 7.49 4.67 7.75 7.95 7.61 8.6 10.2 10.1 7.04 9.65 7.13 8.58 8.42 4.87 9.84 6.53 7.09 0.7 8.57 6.95 8.89 7.45 2.03 13.2 7.82 11.2 14.8 7.29 9.27 11.3 8.65 7.14 3.41 7.84 3.23 5.14 7.43 5.6 10.2 10.2 6.9 6.6 7.27 2.14 10.4 7.94 9.3 10.2 8.11 12 7.58 0.7 10.4 2.03 9.68 8.71 11 8.2 6.56 7.47 8.01 8.83 7.81 8.07 11.7 10.4 7.37 5.75 9.7 2.14 4.85 6.71 8.65 0 8.79 3.67 8.85 9.62 5.5 3.53 4.44 8.11 10.2 6.8 9 6.69 7.75 9.5 10.1 8.93 8.42 7.77 7.64 12.2 10.1 6.08 6.38 8.12 9.14 7 9.2 7.45 11.1 6.57 11.7 7.17 10.2 5.14 10.7 9.13 12 9.41 11.7 4.46 8.06 11.8 6.3 7.91 0 6.58 6.67 6.84 7.9 2.14 0.39 5.9 3.9 3.13 9.53 0.39 0.39 6.81 10.8 8.8 9.17 11.4 8.25 9.26 9.31 6.74 6.79 7.57 7.09 10.1 8.03 11 2.57 7.89 10.3 9.56 6.78 10.3 9.67 3.74 9.41 9.08 8.64 7.75 10.8 7.73 1.92 11.2 6.66 7.22 9.59 9.62 8.26 9.59 8.41 6.51 4.4 9.69 10.5 3.33 6.71 8.54 3.99 10.4 9.77 11.8 7.41 10.4 10.8 9.45 6.41 10.3 9.51 11.3 9.67 9.4 3.02 10.6 10.1 10.1 8.14 8.99 9.51 10.3 12.4 9.96 8.97 5.7 10.6 14.6 8.18 5.08 10.3 8.52 2.14 8.32 6.24 9.78 13 10.2 3.27 9.69 10.1 6.72 7.9 8.17 6.25 11.2 10.8 5.52 3.32 8.98 8.11 7.87 5.22 12 2.03 2.03 6.42 9.66 8.41 7.02 3.41 5.73 6.23 11.1 8.4 2.42 9.11 8.89 12 8.44 9.62 6.69 5.27 7.11 10.9 8.25 9.68 9.88 12.2 9.54 9.44 10.3 3.49 9.48 9.12 9.1 10.6 9.21 5.9 9.95 7.97 9.19 7.26 4.91 12.1 8.94 8.58 9.76 7.75 10.2 11.2 9.45 0.39 11.5 8.94 10.1 5.86 0.39 11.4 14.2 0.39 9.74 7.49 10.8 7.67 10.7 1.35 5.77 1.16 9.41 6.76 4.5 7.32 10.2 10.4 7.62 0.7 12.1 7.84 9.03 7.6 3.93 7.71 9.18 3.78 3.67 0.4 9 8.64 8.38 12.9 6.48 10.6 9.1 10.1 8.33 11.6 10.8 0.39 5.27 10.6 1.51 9.36 0 8.44 0 7.12 0.7 10.7 7.95 10.6 4.24 6.98 8.51 10.3 0.7 5.27 5.66 7.91 8.7 5.72 9.21 11.1 7.17 8.39 7.5 4.85 9.59 11.6 3.45 11.4 4.34 5.68 8.54 9.96 7.58 9.68 10.2 1.51 9.01 8.74 5 10.2 9.27 10.7 8.41 9.6 9.2 9.75 7.31 8.18 6.21 9.53 4.29 11.7 11.9 2.14 11.3 8.99 7.96 5.65 9.19 8.53 11.3 8.35 8.03 10.3 10.1 1.35 6.16 6.86 4.9 8.82 0.39 9.02 4.56 9.48 8.27 8.81 6.9 10.1 13 11.4 5.69 12.6 5.41 6.43 9.99 6.61 9.28 9.47 8.9 8.44 7.68 4.15 9.88 9.25 5.11 7.8 9.13 2.78 9.89 9.24 10.8 5.83 9.52 9.82 9.69 13 9.1 7.49 8.48 4.02 4.94 8.37 5.94 6.34 7.96 9.58 10 11.7 9.48 4.58 9.23 6.45 0.95 9.44 12 11.8 7.75 9.57 4.77 8.16 7.72 10.4 10 10.3 3.02 2.42 12 10.9 9.43 8.49 6.59 11.4 8.11 9.27 10.3 11.3 10.6 10.2 12.1 10.8 9.38 8.24 11.9 9.24 9.11 6.59 7.44 9.53 11.5 11.5 5.88 9.56 9.51 1.16 10 7.4 10 11.8 11.6 10.7 10 9.4 10.2 11.7 10.1 9.18 10.9 9.87 8.88 11 11.2 10.6 7.24 9.29 7.86 10.2 9.14 7.64 9.24 12.1 8.57 10.6 9.56 9.81 9.11 11.8 8.77 6.66 9.02 12.4 10.9 2.5 9.21 10.9 8.08 2.65 14.8 10.5 13.2 10 8.88 8.36 6.83 11.5 10 11.2 12.4 11 6.65 11 9.91 7.38 12.8 6.48 6.28 5.67 9.12 5.52 10.3 11.4 5.89 13 10.5 9.96 8.31 9.67 10.3 8.14 12.5 12.6 11.5 8.79 10.8 9.52 9.65 7.24 8.54 9.41 8.22 9.78 10.1 9.39 9.13 9.79 9.37 9.35 9.7 13.8 15.3 6.79 9.28 10.3 7.32 10.1 6.36 12.3 13.6 9.98 2.42 10.3 9.76 9.93 9.18 9.6 9.17 9.57 10.7 12.4 8.44 10.6 10.7 8.33 11.1 10.8 5.86 10.1 12.6 5.32 11.5 9.53 8.92 9.99 11.8 9.02 10.8 11.1 4.62 6.48 2.33 8.46 10.3 9.88 12.5 9.21 3.32 8.15 2.97 10.9 6.08 8.48 9.87 9.23 5.83 10.1 3.02 8.66 8.08 14.9 3.29 4.97 9.17 9.43 8.73 8.88 9.75 8.2 9.54 9.27 8.59 10.7 7.89 9.23 11.5 6.1 8.84 9.47 5.8 12.4 8.52 11.3 6.94 10.1 7.32 11.3 9.42 13.1 5.38 5.3 7.36 6.78 7.94 10.1 8.58 10.4 6.46 12.3 8.73 8.74 8.94 11.5 7.74 8.49 13 8.57 9.64 10.6 11.6 11.6 11.3 11.3 9.68 9.57 4.29 11.6 8.04 12.2 5.41 11.2 10.3 8.25 9.45 10.5 9.63 10.6 11.8 10.9 11.3 9.8 5.83 9.95 11.2 5.98 10.3 13 12.2 11.2 8.91 9.85 0.39 11.1 9.73 9.32 11.7 8.24 9.68 8.82 11 9.88 10.1 9.99 10.9 9.14 9.05 9.45 9.93 7.88 10.4 3.15 9.98 10.2 8.32 3.96 9.22 6 8.26 8.42 8.57 9.97 4.76 8.28 10.3 8.4 7.36 8.98 9.38 4.62 8.35 8.95 8.8 8.2 8.19 7.4 7.25 9.71 9.19 9.61 7.86 9.65 10.7 7.06 6.17 7.51 10.6 11.4 9.47 10.1 10.5 10.1 9.39 10.4 9.97 11.6 11 10.3 9.92 8.06 8.74 9.67 11.4 8.6 10.6 8.35 11.5 9.74 11.5 5.64 9.45 9.07 9.23 7.97 10.2 11.6 2.97 9.43 6.34 7 12.2 11.5 10.2 10.1 7.18 9.68 11.3 9.94 10.5 8.4 6.99 7.47 10.1 8.78 8.04 11 11.8 11.8 7.82 11.8 9.79 9.24 9.22 9.41 9.96 12.1 8.18 11.5 7.27 9.95 10.5 4.88 10.1 9 7.98 8.35 10.9 10.7 3.08 6.57 5.9 10.2 8.84 6.9 12.6 9.85 6.04 10.4 3.87 5.7 6.2 9.3 9.93 10.5 9.79 12.7 9.33 1.66 3.6 11.7 10.5 11.1 9.24 2.18 10.6 8.78 9.73 9.21 9.96 12.7 8.93 8.44 9.19 9.22 11.6 9.43 11.7 13.1 10.8 12.6 1.35 11.8 8.21 9.24
+TCGA-68-8251-01 6 8.51 6.58 8.24 7.46 8.56 0 4.28 6.46 3.67 3.87 7.92 5.81 1.42 7.15 8.64 10.5 9.79 7.01 10.4 9.4 11.5 9.81 3.76 10.5 7.92 5.02 9.14 3.71 6.56 4.41 7.19 4.22 6.83 2.86 0 1.17 7.14 2.48 5.05 3.23 3.09 6.01 0.5 4.66 2.68 0.88 4.92 10.9 6.4 3.02 5.03 7.8 9.79 5.8 1.17 6.04 1.63 6.55 6.67 8.03 3.89 8.56 3.53 2.86 2.59 6.96 4.45 9.81 3.78 3.71 4.73 2.37 5.81 1.63 3.41 5.28 5.25 5.49 1.17 4.04 3.84 2.65 9.5 5.35 0.88 6.28 0.5 2.68 2.12 8.53 4.57 7.17 5.3 4.87 3.29 1.42 0 3.64 1.42 0.88 1.97 2.94 5.69 1.17 3.52 7.19 9.28 6.03 6.07 3.93 1.97 8.77 4.7 5.12 1.97 2.19 4.42 0.88 2.25 5.49 6.46 0.5 4.08 1.81 7.51 0.88 2.25 3.71 13.4 1.62 1.42 6.03 6.24 3.02 1.63 4.48 0.5 3.71 8.79 7.64 10.3 5.82 3.93 4.56 11 0 10.7 1.62 1.63 5.57 0.88 8.8 10.6 11.3 3.29 2.48 0 10.6 7.57 6.45 6.31 3.02 0.5 7.27 5.53 6.28 4.61 9.83 3.16 10.5 9.15 2.25 4.94 4.42 0.88 4.4 5.8 8.14 4.71 6.65 7.75 3.29 4.58 4.83 2.69 4.37 2.48 8.55 4.04 8.6 9.19 3.93 3.16 4.75 6.01 3.89 10.8 8.45 7.67 5.3 10.4 9.41 9.99 7.49 9.23 7.19 10.3 11 11.7 6.59 10.3 12 11.8 10.8 10.8 9.06 11.1 8.99 11.3 8.25 10 10.8 10.9 7.86 8.94 2.59 10.8 8.84 13.4 9.62 4.37 9.1 9.53 9.17 8.62 10.6 8.2 8.96 3.8 11.3 8.87 11.8 11.6 11.8 11.7 12.5 12.9 6.99 12 10.9 2.78 6.46 9.6 9.77 8.38 11.4 12.6 4 13 2.94 9.74 10 10.4 10.2 10.7 8.31 10.2 11.2 11.3 8.63 6.82 9.24 8.99 12 7.36 1.17 12.8 11.5 10.6 12.5 11.1 11.2 8.62 9.57 9.69 9.99 9.14 11.4 10.4 3.62 3.89 10.4 7.3 9.69 10.6 7.59 13.5 6.87 7.61 7.77 11.7 10.5 9.12 10.2 12.7 0.88 9.8 8.18 7.87 12.6 10.3 4.56 9.41 6.95 9.85 9.72 7.21 9.05 7.7 10.2 10.2 9.78 8.89 9.95 11.3 12.3 9.26 10.1 9.31 11 9.7 12.7 7.81 10 10.7 8.43 8.74 7.39 8.52 10.8 10.3 8.74 10.1 8.49 14.1 9.28 8.47 11.2 11.3 11.1 4.18 8.58 0.5 5.07 8.5 8.28 11.6 3.09 6.07 7.62 10.5 10.6 11.5 8.46 6.52 9.34 3.29 6.9 6.61 6.27 11.9 10.1 12.2 9.81 7.82 7.64 10.3 3.16 7.97 8.68 10.1 8.26 9.37 10.3 11.4 5.62 8.61 8.92 9.15 8.99 9.62 11.5 10.2 6.24 11.3 9.08 5.33 7.9 9.32 6.45 10.7 10.2 9.86 10.8 9.9 9.96 11.3 11.1 9.18 7.97 7.39 10.7 8.79 8.97 10.7 9.51 9.88 8.48 7.81 8.82 3.16 6.85 11.9 7.27 10.4 9.67 10.2 2.96 10.8 11.3 13.3 6.11 9.1 6.17 7.03 7.73 8.88 7.02 9.99 10.5 11.1 11.1 3.23 11.9 9.01 7.47 8.41 2.12 9.41 2.48 8.24 6.96 11.2 8.86 9.01 7.17 10.6 6.93 6.78 8.6 10.6 11.8 2.25 10.2 8.19 3.93 4.68 4.96 8.79 8.07 2.25 9.7 6.03 10.9 9.87 7.48 9.52 12.1 7.72 15.1 9.16 2.29 9.63 9.9 7.78 12 9.04 10.2 2.25 7.49 8.65 8.77 4.79 12.3 8.29 7.3 9.47 8.05 14.9 12.2 15.1 8.3 8.5 8.08 10.2 5.74 8.74 8.52 10.3 0.5 9.58 4.18 12.7 5.69 10 11.1 9.7 10.3 10.6 7.06 10.2 9.89 10.2 9.77 10.4 9.07 9.87 9.43 7.89 10.4 10.4 10.9 7.59 10.1 12.5 8.04 11.4 10.6 9.57 10.1 10.6 5.87 9.97 8.21 0.88 10 9.39 11.3 9.44 6.39 10.6 15.1 9.36 10 10.7 8.26 3.71 10.2 7.94 9.55 9.81 9.98 7.37 9.95 6.66 9.39 8.68 11.1 10.3 9.63 10.9 10.6 9.36 9.12 11.8 10.5 10.6 10.3 3.16 12.6 9.13 11 9.57 11.4 12.9 11 11 9.26 9.18 11.1 9.7 5.57 8.59 6.34 8.29 7.67 10.2 11.2 9.93 10.2 9.84 11.5 8.93 0.88 6.95 10.5 9.88 7.18 12.8 8.63 11.4 9.44 12.3 10.6 12.2 12.2 7.69 0.88 10.3 9.33 8.38 9.85 9.04 14.2 6.42 10.3 10.3 11.4 11.8 10.3 7.8 9.92 11 11.4 4.98 11.5 10.2 11 9.3 8.64 8.04 10.1 7.79 8.65 9.03 9.53 6.83 16.2 10.6 10.8 3.67 10.5 8.87 10.5 4.34 9.81 9.72 12.7 12.3 12.8 11.1 7.37 8.63 7.93 7.51 10.8 8.38 0 8.34 7.83 10.3 11.3 9.49 9.77 12.8 1.42 7.11 11.2 8.22 9.87 10.2 4.48 10.4 12.3 9.95 9.79 10.5 9.8 11.4 7.45 9.71 10.5 10.8 10.2 9.58 12 9.12 8.61 8.48 7.39 9.45 11.8 10.7 12.6 12.5 8.25 11.7 13.3 11.1 1.81 9.29 9.36 8.89 2.06 6.37 10.1 7.68 9.94 9.04 11.5 6.5 9.67 11.5 13.5 9.12 7.04 12.5 11.4 9.06 8.92 2.86 6.57 10.4 4.21 7.57 6.67 9.11 10.2 8.69 11.3 5.86 4.18 5.19 9.21 8.41 9.5 2.78 5.79 9.89 7.76 0.5 5.83 12.3 10.5 7.07 6.36 7.51 3.96 10.2 10.7 9 1.17 8.86 14.4 9.77 12.1 11 9.64 11.6 13.2 8.12 11.3 8.07 8.51 3.62 11.7 8.47 3.02 2.12 1.09 9.7 8.58 9.93 2.25 9.05 9.54 3.62 5.09 10.5 12.1 6.58 7.47 11.1 10.3 2.59 10.6 10 11.7 9.82 10.7 11.9 8.71 10 10.9 7.88 9.34 11.9 8.9 7.8 9.79 7.72 10.2 8.66 12 7.5 8.16 6.98 6.03 8.59 11.2 8.01 3.67 3.93 13 9.41 0 8.2 9.2 9.54 11.3 9.81 5.19 4.15 9.75 1.17 4.15 7.14 9.9 6.99 5.73 8.35 9.78 2.25 10.6 1.63 10.4 9.89 5.59 11.6 9.49 10.1 6.78 11.6 11.5 3.62 7.02 4.45 7.36 9.84 10.1 10.9 9.45 10.3 6.83 6.14 5.82 4.34 7.7 0 1.42 8.47 10.9 1.63 1.42 11.7 4.77 10.1 7.44 6.39 1.42 10 9.33 11.3 10.4 4.31 9.29 10 6.58 10.6 9.3 10.5 10 11.3 9.1 1.17 6.08 2.59 12.2 10.2 11.2 2.48 10.7 10.3 11.5 10.2 12 8.19 8.98 10.8 11.5 9.74 2.68 12.1 1.63 10.8 3.8 10.6 10.8 9.57 9.16 10 12 11.8 11.3 10.1 10.1 12.2 9.78 11.3 10.2 10.8 10.7 11 13 11.1 12.6 11.8 11.6 8.78 12 8.74 6.49 8.25 11 12.4 13 11.9 11.3 9.73 10.9 8.64 9.45 10.7 10.1 9.06 12.2 6.25 12.4 10.4 11.6 11.3 7.88 3.23 12.3 6.96 9.61 7.49 9.2 7.74 4.28 10.3 9.22 7.62 3.69 3.57 9.5 9.87 2.37 11.9 8.65 10.4 8.97 9.48 6.92 7.92 8.28 10.6 7.12 0.88 6.97 5.76 4.7 8.51 11.4 6.79 12.1 7.27 8.31 11.1 9.47 8.07 8.41 10.1 0 7.99 11.4 9.75 10.8 11.6 9.94 10.1 13 10.3 11.2 10.2 7.22 2.86 8.84 10.3 8.53 11.5 8.1 6.06 12.7 9.6 10 11.2 4.9 5.64 10.3 10.9 13.2 8.72 8.79 10.6 10.4 6.57 6.11 8.57 4.37 6.81 9.36 11 7.43 13.3 7.25 8.63 10.1 9.01 5.35 10.3 8.58 9.11 10.4 8.12 11.9 10.3 9.62 9.91 9.33 7.33 10.2 2.78 8.55 9.04 9.59 1.17 9.91 2.12 8.42 7.18 10.9 1.97 10.8 8.53 3.16 12.1 10 10.3 2.59 6.55 7.27 6.14 1.17 6.36 9.86 9.98 5.32 4.81 2.48 11.7 8.77 8.87 8.31 10.9 10.1 9.57 5.81 9.2 9.53 9.18 12.7 10.3 8.68 5.92 6.23 12 8.75 5.19 11.5 11.2 8.54 8.23 7.97 11.5 8.21 9.78 7.3 5.09 8.49 10.6 10.3 0.88 8.08 9.86 7.37 8.11 9.46 9.94 11.6 9.89 7.88 9.12 8.28 6.42 8.97 9.43 7.65 11.5 9.85 8.21 9.03 9.08 3.99 9.17 11.6 12.4 2.68 13 9.04 7.74 8.15 8.9 9.41 11.5 7.64 9.1 10.3 9.44 7.8 6.86 10.7 9.5 5.4 11.2 9.97 8.94 8.44 7.92 7.67 4.42 7.8 4.7 8.21 8.22 10.3 1.17 1.97 9.43 10.6 7.84 8.64 9.39 10.1 7.77 11.9 4.68 10.8 6.7 8.49 6.74 8.11 8.41 10.8 9.48 8.57 8.12 0.88 4.38 8.27 11.4 9.93 9.2 8.26 4.08 10.3 7.6 10.4 8.05 6.61 1.81 8.2 3.47 11.2 9.78 8.04 6.52 9.8 8.8 7.54 9.82 11.7 9.44 9.36 7.84 9.11 8.2 8.88 7.36 10.4 7.1 9.61 7.9 11 10.2 7.67 10.5 12.2 6.95 11.4 7.85 5.25 10.6 5.89 0.88 10.1 8.97 2.37 8.92 10.5 10.2 10.5 4.04 8.6 9.72 11.9 10.6 9.22 7.38 6.79 5.98 11.4 10.1 0.88 12.4 9.52 11.7 8.53 12.2 10.5 11.9 12.5 7.24 8.17 9.62 0.5 10.9 10.6 10.5 10.1 9.69 10.1 8.23 10 0.88 11 7.57 5.73 3.46 7.13 4.92 8.48 6.26 2.41 7.37 12.1 9.84 8.08 5.32 8.5 10.5 2.12 9.89 3.89 7.08 8 3.35 4.7 10.8 5.72 3.46 1.97 7.29 8.26 5.48 4.31 7.93 3.51 7.58 0.88 1.17 6.43 4.53 8.09 5.66 8.84 8.74 6.99 2.48 9.23 4.66 6.85 10.3 10.2 9.31 9.17 9.16 3.29 10.8 3.35 5.58 9.25 3.67 10.6 7.05 4.63 8.5 4.58 7.99 4.96 7.22 8.05 11.9 1.17 8.72 7.65 5.26 7.36 9.44 8.74 4.15 8.3 10.7 11.3 7.74 9.85 10.5 4.73 8.15 0.88 9.89 3.96 9.57 12.8 8.12 9.04 7.4 10.2 9.84 8.36 4.34 8.82 9.07 7.96 8.13 7.45 9.9 10.8 9.23 5.74 4.58 6.17 7.41 7.75 8.33 10.2 8.09 3.35 4.58 8.56 7.34 10.2 12.2 5.09 2.86 5.14 9.43 9.92 8.85 5.58 8.17 8.81 8.99 10.8 6.56 8.7 8.75 4.98 5.36 1.17 3.62 4.31 9.49 6.83 7.77 8.72 5.55 9.08 5.76 2.25 3.93 7.9 7.37 0.5 11.7 9.37 2.12 6.93 7.65 3.96 2.68 8.62 5.96 11.2 8.04 6.12 9.72 7.07 11.5 8.62 11.5 8.39 10.8 10.1 4.98 6.74 3.07 8.2 8.49 8.85 7.99 8.23 8.68 1.42 10 5.98 5.14 0.88 11.1 5.66 8.93 5.03 4.79 3.23 3.23 1.87 10.1 0.5 0.88 9.73 9.78 8.29 9.05 9.15 2.94 3.93 9.56 6.44 9.53 9.94 2.12 9.41 6.65 6.6 5.89 8.35 8.73 11.3 7.85 8.87 10.8 8.35 2.59 5.63 4.61 2.86 1.42 9.47 10.3 1.81 11.1 7.35 8.2 7.26 13.6 10 11.3 1.42 5.12 7.24 9.6 9.75 6.96 6.76 11.9 1.42 7.08 10.2 6.85 8.16 10.5 7.29 9.85 0.88 7.03 0 8.05 1.17 8.81 8.57 7.13 3.47 8.27 10.5 6.08 3.35 4.4 9.23 6.25 8.87 6.96 8.19 10.3 8.42 8.8 9.68 7.13 7.01 12.8 12.2 10.2 2.12 4.24 5.71 7.3 1.81 10 10.2 8.35 7.97 9.89 4.28 7.55 10.1 10.8 11.6 9.93 9.06 7.35 6.72 3.71 7.16 9.12 6.18 4.24 7.13 8.15 8.95 11.2 4 6.51 12.1 4.18 1.63 8.35 10.8 11 9.94 9.03 5.5 7.7 13 1.42 12.5 8.46 3.96 5.98 8.03 10.2 6.58 9.42 10.7 2.48 0.5 2.12 4.66 3.23 5.09 2.59 5.91 4.86 8.72 7.57 3.57 5.77 9.06 7.77 3.76 10.5 8.86 8.45 1.63 9.24 7.52 5.59 9.01 7.64 7.79 10.2 2.37 8.79 2.59 8.82 1.81 6.88 4.58 7.83 7.38 5.64 8.99 7.36 6.17 4.7 7.27 8.66 4.92 4.31 7.92 4.9 4.28 8.09 8.89 2.78 6.97 2.42 10 1.81 7.82 6.98 6.42 3.71 5.62 6.99 7.03 2.12 1.17 9.64 10 6.14 1.42 7.86 8.74 7.8 10 9.62 5.65 7.79 8.88 8.65 11.1 10.9 2.78 4 8.69 8.93 6.61 4.04 2.12 6.14 11 9.69 4.98 2.78 0.5 6.5 3.71 9.89 8.82 7.33 10.7 6.48 8.71 7.11 5.05 10.1 10.3 4.9 9.42 10.4 7.52 5.32 12.8 7.2 6.42 2.03 8.52 0.5 8.34 9.3 0 4.36 2.37 7.57 11.6 9.39 10.1 9.08 0.5 7.37 5.95 5.62 3.41 8.76 5.64 6.9 8.67 5.62 10.3 2.86 1.81 9.67 4.28 1.97 3.52 4.61 7.81 6.83 9.77 9.5 8.41 4.58 10.4 10.6 5.87 11.3 7.56 7.07 6.36 6.66 9.14 5.79 3.46 7.36 7.64 12.6 9.2 5.97 12.6 6.41 5.12 2.68 5.24 9.07 12.1 8.01 7.82 9.49 7.88 2.12 4.51 3.93 3.93 1.97 9.78 2.37 7.97 0 2.44 7.73 8.37 8.12 8.8 4 3.41 10.3 9.88 5.35 7.9 9.5 3.65 7.95 11.3 2.25 7.28 0.88 9.09 17.5 4.66 8.72 5.58 16.6 10.2 4.04 0 4.18 8.71 5.19 12.3 2.59 8.7 9.2 17.1 5.32 10.6 13.5 1.81 7.21 2.86 9.22 11.2 10.2 9.17 1.97 9.38 3.96 7.03 8.24 13.8 8.81 7.76 5 2.48 8.27 5.93 10.2 5.73 9.56 10.3 4.18 6.7 5.38 3.89 11.9 9.18 14.1 8.25 8.25 13.8 4.88 9.54 13.4 8.97 14.2 8.97 7.04 15.1 7.67 12.4 7.83 7.66 10.3 2.25 7.53 9.5 10.4 7.89 7.26 9.49 8.01 6.52 9.73 5.66 0.5 7.78 7.53 6.64 2.12 1.42 11.2 6.48 11.8 12.6 5.8 5.45 4.56 6.22 13.6 7.64 5.43 8.8 6.55 5.5 9.67 8.69 1.63 8.94 3.09 4.45 8.18 11.4 6.48 8.49 12.7 2.94 3.93 12.5 0.5 7.41 6.8 8.52 6.5 8.24 2.12 1.97 9.42 4.04 9.18 5.07 10.9 9.62 0 11.5 11.9 7.61 4.11 8.5 11.2 1.17 8.28 10.1 6.01 11.5 10.1 7.12 1.42 9.68 8.46 0.5 9.8 5.92 1.42 7.76 8.64 7.1 6.36 6.44 8.18 0.88 1.67 7.43 10.8 8.5 6.8 2.12 7.32 3.27 7.79 8.45 4.61 12.2 7.03 8.74 8.13 7.18 10.2 6.93 8.34 2.78 10.8 8.58 6.36 8.3 6.01 2.94 9.36 5.62 6.99 10.4 8.85 11.5 9.38 2.94 2.59 8 6.52 11.6 7.89 8.23 9.18 10.7 7.67 8.68 6.19 7.97 7.23 7.41 9.71 3.8 9.3 11.2 10.4 3.35 7 10.2 6.34 8.42 11.2 6.73 10.8 9.26 6.59 11.6 10.8 9.78 9.62 7.07 7.18 8.34 10.1 2.37 8.79 7.34 10.1 2.25 9.49 8.74 0.5 8.84 2.48 5.63 7.09 0.5 11.5 5.29 0 11.7 2.68 2.12 12.4 10.7 10.9 8.95 8.43 5.06 6.77 5.35 9.24 4.53 7.26 7.6 10.2 8.8 7.94 9.2 8.34 8.84 6.35 5.05 4.34 8.85 2.59 9.03 11 4.53 8.45 11.4 2.12 7.41 5.6 5.66 7.26 11.3 6.96 0 6.13 7.83 6.81 2.37 4.77 10.1 8.55 6.8 5.84 11.1 7.9 0.88 11.6 9.63 8.92 3.52 9.11 9.44 0 7.55 6.55 8.74 7.48 8.31 9.66 6.33 7.47 1.97 9.32 8.71 7.55 11.1 11.6 6.86 6.91 2.96 9.3 8.52 9.36 8.72 9.71 10.2 6.81 5.5 7.58 12 6.53 1.17 10.2 10.2 5.98 2.59 7.92 8.2 5.29 0.5 9.12 9.94 3.96 2.37 8.59 7.83 5.71 4.68 7.55 8.22 4.3 5.4 10.8 7.32 9.44 8.23 1.17 9.27 8.83 2.48 9.94 9.75 4.44 6.24 7.49 7.61 8.45 7.54 10.4 5.19 10 1.42 10.4 0.88 8.99 7.61 2.12 0.88 13.8 9.04 5.39 1.17 3.71 3.46 3.67 3.99 1.17 6.8 9.66 1.17 9.06 10.6 6.99 12.4 7.93 10.8 11.7 6.56 3.71 10.8 11.2 9.33 9.19 8.12 10.2 3.02 3.29 7.96 6.37 6.49 6.44 7.51 5.64 8.71 9.48 9.87 6.72 0.88 3.09 9.54 7.65 8.27 9.28 6.34 7.21 7.27 3.84 5.27 7.19 8.23 2.78 7.4 12.2 7.45 7.82 9.45 8.25 2.48 3.16 7.97 4.15 11.1 9.2 10.3 4.58 7.57 4.48 10.2 4.98 8.22 8.21 12.2 8.22 7.74 12.1 1.81 0.5 6.79 12.1 2.94 6.44 11.7 6.61 0.88 4.11 4.98 11.7 0.5 6.99 7.12 8.24 9.9 10.9 7.83 5.45 6.31 4.69 1.63 7.85 10.6 2.48 8.92 4.73 2.12 11.6 9.11 6.55 7.89 0.88 4.92 8.29 12.8 6.96 1.97 9.34 2.25 4.08 2.12 5.27 0.5 10.6 7.11 3.46 7.28 2.48 12.6 7.05 6.39 6.04 4.96 2.68 9.9 3.16 9.65 8.97 6.42 0.5 5.54 0.5 7.35 6.04 5.21 0.88 10.3 2.59 0 5.35 0.88 6.65 2.48 8.32 1.17 9.75 8.88 7.53 9.45 3.52 8.99 9.26 6.5 11.7 4.92 10.3 7.41 8.6 10.2 8.22 9.53 4.84 7.96 3.84 2.12 7.56 8.1 11.9 5.07 11.4 4.79 4.21 8.8 3.09 2.68 1.17 4.31 7.36 8.18 4.92 8.52 6.23 8.01 1.42 9.46 9.21 7.23 7.43 7.06 4 6.23 0.5 10.9 7.73 8.7 6.78 6.21 5.68 2.68 5.16 7.12 7.81 7.94 9.93 5.95 6.1 8.46 7.42 9.14 5.87 0 5.12 8.57 3.09 8.49 4.34 4.28 5.54 3.96 3.57 0 8.2 8.65 2.68 8.14 4.8 8.65 5.24 8.4 9.72 7.09 5.39 8.51 2.48 0.5 11.3 3.46 2.25 5.4 9.93 10.1 6.06 2.25 10.1 5.31 6.5 8.2 4.96 13.7 9.43 0.53 9.56 4.66 6.54 2.59 5.99 1.42 5.05 6.27 6.89 8.43 7.89 6.36 5.16 7 7.49 4.77 2.59 12.7 11.7 5.36 7.76 4.31 6.27 12.9 10.2 9.91 0 7.14 12.9 0 5.33 11.2 0 0.75 1.17 3.23 3.29 1.42 9.16 4.51 0.88 7.75 9.29 7.06 7.67 11.1 2.65 4.66 6.41 8.12 8.98 5.99 7.11 2.86 9.85 8.15 8.88 0.88 5.93 3.57 9.2 7.2 9.65 4.11 9.18 7.79 3.46 4.24 8.71 4.63 14.5 9.38 13.8 7.72 3.71 8.26 5.64 10.5 8.15 5.3 2.78 2.86 3.02 9.3 8.4 9.16 11.2 7.82 4.18 8.47 1.42 0.5 2.69 11.7 3.35 7.92 9 6.77 11.5 0.5 4.98 2.25 6.14 7.54 5.11 7.13 0 6.27 7.8 9.08 11.7 7.1 1.17 5.94 2.37 5.43 0.5 11.9 2.59 9.67 8.82 7.92 8.69 5.74 11.2 9.8 9.25 8.78 2.59 1.97 6.92 7.21 0 11.3 9.22 6.64 4.11 12 3.52 8.85 8.4 10.7 6.18 4.34 3.35 6.84 8.42 9.08 9.76 8.2 4.18 8.8 2.48 8.93 3.29 3.52 3.35 4 9.85 7.64 4.51 3.89 7.85 7.9 2.48 8.25 10.7 7.38 7.87 9.29 10.7 7.48 7.17 11.2 7.9 7.49 10.7 10.6 7.51 9.06 10.1 6.97 1.42 2.94 4.18 11.6 7.52 6.68 5.9 7.02 2.48 12.4 5.05 9.84 8.43 9.76 6.11 9.04 9.29 7.56 6.86 4.34 2.99 8.75 9.79 3.35 9.55 8.07 5.68 5.57 7.03 7.52 0 9.91 11.4 1.77 2.94 7.64 1.42 7.09 3.35 8 9.23 8.35 1.81 5.46 4.96 7.94 4.04 7.39 10.3 2.48 0.88 10.9 5.05 4.51 8.71 6.07 1.17 8.5 7.63 8.12 8.89 8.17 8.83 7.99 5.64 0.5 10.1 6.59 9.72 10.3 9.24 5 3.67 10.8 4.56 5.21 2.46 5.12 10.2 2.78 10.8 4.18 0 2.48 4.63 5.68 5.03 6.83 3.8 0.5 6.66 1.97 6.79 2.48 9.59 3.52 8.52 3.16 5.17 3.57 3.02 5.14 8.4 4.96 6.85 3.62 7.98 8.17 0.88 7.69 4.37 3.02 2.48 4.31 2.48 4 4.42 2.54 4.81 10.9 8.19 10.2 5.93 9.25 5.74 1.97 8.16 6.69 6.9 10.2 3.46 3.41 11.3 11.4 1.81 10.3 2.25 4.88 0.88 0 10.8 9.16 5.35 2.78 10.6 11.2 0.5 9.99 11.5 6.48 10.1 8.15 9.85 5.53 5.22 5.5 8.06 9.6 10.2 11.1 5.03 7.32 5.21 7.68 8.3 1.17 3.46 9.42 10.6 4.18 8.45 4.28 3.29 10.9 1.42 5.91 10.7 0.88 3.29 10.3 5.17 5.47 7.02 2.94 6.38 12 9.95 2.68 11.2 7.29 4.88 10.6 6.68 11.1 5.03 1.42 8 5.88 3.35 1.63 5.51 6.4 7.29 12.5 8.19 9.39 5.68 3.16 4.98 5.96 4.65 8.17 7.06 9.33 6.97 0.5 12.4 7.8 7.96 7.61 4.77 3.62 0.88 7.28 6.44 1.42 7.7 7.96 5.94 5.38 5.77 8.29 0.5 6.79 3.41 6.09 9.2 8.85 13.3 6.43 11.2 8.72 9.49 0.88 4.92 7.79 0.5 7.29 8.04 10 9.4 11.9 10.7 3.35 8.34 1.17 12.8 5.3 9.18 4.21 3.23 1.97 9.49 0.88 7.78 2.06 3.02 5.6 0 11.4 6.13 7.88 14 12.8 7.11 3.23 6.34 2.86 9.67 7.96 11.3 8.38 12.8 13.8 0 6.09 11.1 4.37 3.52 8.8 6.15 11 6.59 8.36 12.6 12.5 3.67 9.78 11 9.63 1.17 8.72 7.2 11.9 10.6 7.4 10.6 7.88 6.35 8.07 8.8 8.6 8.05 1.42 9.51 0 9.42 3.84 5.87 6.86 4.04 6.68 3.96 10 2.78 7.8 7.98 8.09 8.05 7.33 2.12 8.56 8.98 0.88 4.28 6.91 6.89 2.37 4.28 8.28 8.74 8.83 9.63 5.97 0.88 1.17 8.73 9.85 7.57 3.29 6.22 8.28 6.18 2.48 0.5 3.62 7.13 0 2.86 8.2 9.19 5.14 11.2 5.97 0.5 9.75 5.9 4.63 6.8 6.97 4.37 11.1 7.89 8.06 6.55 3.23 10.4 4.53 10.6 12.6 0.5 8.75 2.86 6.92 11.3 5.64 9.64 0.88 10.7 9.13 9.92 10.5 12.3 8.99 7.38 7.43 10 12.2 9.73 11.6 8.06 7.43 1.81 8.94 11.9 9.32 10.7 11.3 6.27 10.3 7.96 10.5 2.94 1.17 5.82 10.2 8.48 10 5.96 7.84 6.58 9.44 9.79 8.18 7.27 1.42 6.36 1.63 4.53 8.71 1.17 0.88 10.9 13 9.89 7.58 10.6 10.9 11.8 12.2 7.21 9.5 7.17 10.1 9.22 4.7 7.8 8.57 9.3 5.74 4.04 9.26 10.1 7.6 7.75 9.79 12.3 0.88 10.4 3.09 3.16 9.4 11.4 5.4 4.04 12.5 13.4 9.28 12.8 5.19 12.1 14.5 8.57 8.8 8.98 8.71 5.81 9.8 8.07 11.5 8.45 10.3 6.75 9.1 8.79 9.81 3.89 6.2 8.54 10.6 10.2 9.11 12 10.6 9.8 9.28 7.2 8.59 9.9 10.3 9.4 8.59 8.65 6.52 8.37 12.7 0.88 11.4 11.2 10.4 9.9 11.6 5.38 10.2 8.2 8.04 8.74 8.69 9.21 12.6 6.38 9.19 11.9 16.4 4.68 2.37 10 10.2 7.52 8.27 7.94 11.8 13.1 13.8 16.2 10.4 10.4 5.73 7.56 8.08 11.1 10.3 5.97 2.78 5.74 10.6 9.77 11.2 8.76 10.6 11.5 6.27 7.4 7.59 10.8 8.19 1.81 7.46 7.53 1.42 8.65 5.46 6.26 9.84 4.18 7.9 11 9.19 6.14 10.3 10 8.03 10.8 4.66 8.73 10.8 9.96 2.48 10.7 9.1 6.44 5.74 12.8 3.29 5.81 10 4.62 1.97 3.29 2.05 9.04 4.15 4.79 5.66 8.37 7.97 13.9 5.93 8.38 9.21 3.93 6.73 9.71 13.3 7.82 13.3 9.46 10.2 11.3 14.7 14.7 11.7 13.5 0.88 8.31 0.5 10.6 6.23 5.43 11.6 0 3.02 5.78 8.41 0.88 10.4 6.24 6.89 3.02 8.1 6.79 7.18 4.18 3.09 9.42 5.35 7.61 7.53 11.9 9.51 1.97 9.18 13.1 9.58 10.5 0.88 2.68 9.94 8.54 4.96 10.2 11.2 7.17 2.25 7.59 3.46 10.3 10.3 6.88 10.3 9.98 0.76 7.74 7.32 8.79 3.52 9.54 0.5 2.12 1.42 10.1 7.79 6.34 6.41 9.78 9.53 9.18 6.34 9.65 6.69 8.25 6.12 6.23 5.46 8.15 7.11 8.88 9.91 6.02 10.3 7.23 9.11 9.99 10.5 6.86 7.73 6.74 8.81 7.49 9.06 5.79 11.6 8.14 5.76 9.07 8.52 9.62 6.76 10.1 8.65 4.96 11.4 2.78 9.65 2.37 9.74 6.48 7.92 8.09 7.62 10 3.16 4.18 8.93 9.47 7.01 1.81 12.2 9 1.81 2.48 7.05 0 9.55 8.9 9.08 7.46 11.3 8.29 5.29 5.25 6.78 6.62 6.41 11 7.88 1.17 15.8 3.41 4.73 1.97 0 0 9.76 5.05 6.77 7.84 11.9 8.14 7.9 10.9 7.03 9.3 15.3 9.21 2.48 0.5 6.6 9.84 8.33 4.61 7.18 8.64 7.51 9.59 11 5.79 11.6 9.67 10.5 8.38 6.42 10.7 9.71 11.4 5.05 8.56 12 11.7 8.88 5.19 3.57 7.79 9.79 10.4 0 10.4 7.74 8.36 8.14 10.2 7.98 9.86 7.3 8.99 8.27 7.74 10.8 9.05 10.7 0.88 5.36 9.28 12.2 8.68 10.8 9.9 1.42 9 12.4 2.68 1.42 10.3 9.61 8.9 2.68 11.6 5.12 8.83 10.5 7.42 9.66 7.99 10.8 7.21 10.9 11.8 7.09 12.8 10.2 8.14 12.7 8.92 4.21 9.84 5.32 11.5 9.94 9.38 9.8 7.96 12.3 11.9 8.01 2.94 8.6 7.23 7.98 0 12.1 9.47 11.4 7.67 8.2 9.64 6.59 13 10.9 10.7 4.08 7.9 10.4 6.41 11.8 10.5 8.08 9.5 9.37 0 9.57 8.75 6.27 3.46 9.66 7.97 0.88 7.29 4.86 8.99 7.61 9.53 8.9 3.89 0 11.9 6.19 9.02 8.23 8.1 9.46 8.67 6.73 10.4 10.2 10.6 9.2 8.88 11.2 6.33 9.32 8.19 11.3 12 9.2 6.19 11.5 7.37 5.06 4.53 13.5 8.36 11.7 1.17 3.71 8.1 10.6 5.48 8.73 2.12 10.7 12.7 4.04 7.74 8.68 7.41 10.4 7.7 6 6.12 7.31 7.83 8.15 11.6 7.72 9.61 8.13 5.36 9.25 10.6 9.39 9.09 12.1 3.76 10 1.81 8.9 7.65 6.76 10.5 3.23 4.53 8.36 4.21 5.05 9.61 0.88 7.65 9.22 9.42 2.25 4.75 3.89 1.42 7.6 6.23 4.31 6.34 9.34 6.78 2.25 1.63 6.67 7.23 6.03 6.52 6.17 7.36 5.57 12.8 5.69 7.32 6.26 7.64 8.09 9.8 2.48 10.8 7.42 8.4 4.66 11.6 8.49 6.17 8.05 8.91 7.73 8.98 3.41 11.2 6.24 10.5 8.14 7.98 7.81 5.95 9.22 10.9 3.46 7.99 2.12 2.68 6.17 8.56 4.24 3.95 7.04 0.5 11.1 2.68 8.16 10.1 5.98 8.23 7.12 8.09 4.93 9.85 5.29 4.15 10.9 9.21 0.88 8.2 8.59 7.73 8.37 7.59 9.64 6.27 8.78 5.72 7.75 5.78 9.98 9.33 11.3 8.97 8.86 3.71 8.65 9.92 8.57 9.58 6.33 5.8 8.73 11.4 8.34 8.8 6.38 3.09 8.07 7.56 3.4 7.24 11.7 8.52 6.25 1.63 2.37 8.25 0 5.45 11.1 1.81 6 6.19 1.17 7.07 5.3 7.67 2.12 6.65 10.9 8.64 9.58 8.3 8.71 9.36 10.3 8.91 9.93 5.12 7.9 7.89 9.26 3.41 3.35 8.14 1.17 8.3 6.35 5.12 5.17 13.9 10.1 9.97 0.88 9.88 8.14 7.79 10.5 4.08 7.62 10.2 9.22 11.7 9.83 9.7 6.46 13.2 8.97 10.8 5.07 11.7 7.53 8.04 8.58 11 5.16 12.1 5.49 12.8 8.72 10.2 9.14 8.93 11.2 12.1 10.4 6.8 7.7 10 6.44 10.5 9.15 11.6 11.5 8.18 3.41 5.38 7.97 8.59 9.61 10 5.35 10 6.84 8.91 2.59 10.9 9.67 8.99 9.1 9.93 10 8.47 10.8 1.97 10.3 7.1 9.88 11.6 4.21 12 8.84 8.77 10.2 8.29 10.6 10.1 9.06 12.1 10.8 9.86 10.3 12.8 8.41 6.71 10.5 8.52 9.88 11.3 9.15 5.78 9.92 10 0.88 9.15 8.54 6.39 9.91 8.12 6.61 8.84 9.76 11.9 9.31 9.96 11.2 9.34 8.98 9.06 11.8 5.8 5.87 12.1 1.97 10.6 11.8 10.5 8.03 9.51 7.53 10.9 7.41 10.3 10.1 10.7 10.1 7 9.8 9.37 9.92 10.7 10.4 6.02 7.3 13 8.69 9.46 0.88 7.96 9.06 9.42 4.45 3.76 11.6 8.92 3.46 9.66 3.62 3.89 10.9 9.11 8.65 7.14 10.9 11.6 1.42 3.93 3.57 10.1 11.3 10.3 8.91 7.71 7.29 4.9 7.7 11.7 8.94 9.29 8.01 10.1 6.92 8.8 1.63 10.3 11.2 11.4 10.5 10.8 9.36 12.2 3.02 12.9 12.4 10.3 8.76 2.68 5.03 12.3 9.91 10.1 8.67 10.2 9.3 7.7 6.99 10.1 8.14 11.4 11.2 10 10.8 8.43 7.1 9.46 11.1 10.9 11.6 9.11 8.82 9.93 10.5 4.45 8.4 4.68 10.7 11.9 11.5 10.3 10.3 11.3 6.3 10.1 10.4 9.91 4.81 8.58 10.4 11 10.2 8.83 10 8.72 8.69 10.8 11.4 8.1 8.41 9.05 11.2 6.23 10.8 9.24 9.45 10.8 10.7 8.45 9.1 8.89 8.38 8.43 9.86 4.81 10.6 6.83 10.4 8.78 7.5 9.62 9.72 9.97 6.65 8.24 8.31 11.4 8.02 2.59 6.36 9.4 9.66 10.8 5.33 11 7.85 9.98 10.8 7.95 11.1 10.3 10.3 9.44 8.45 10.1 10.9 10.1 11.9 9.11 9.28 9.68 5.73 5.87 8.36 0 9.34 10.8 11.2 9.71 9.61 8.93 9.65 15.4 10.8 9.43 10.3 9.72 10.6 11.4 10.7 10.9 10.8 8.77 12.8 11.4 9.02 8.24 10.8 9.6 9.5 11.1 10.4 8.83 8.69 8.9 11.8 9.09 10.3 10.2 9.51 10.5 9.04 12.7 11.8 11.9 9.78 13.6 8.09 11 11.8 11.4 11.6 10.6 10.9 7.26 10.3 11.4 2.12 11.3 8.69 2.59 9.85 9.33 10 9.94 12.8 11.2 13.1 10.3 0 10.8 9.31 2.12 8.55 8.42 10.7 11.3 12 8.38 8.95 6.77 8.88 10.6 6.83 6.78 9.56 9.15 8.8 3.96 8.5 8.33 9.47 9.61 6.02 10.1 11.6 7.96 10.6 8.95 10.4 9.52 4.88 8.31 8.9 8.53 7.23 9.2 10 9.62 6.27 8.73 9.36 9.01 11.9 11.8 9.22 8.21 10.6 7.88 9.1 10.3 10.2 10.1 9.18 8.93 11.2 11.3 7.75 2.37 9.36 6.07 5.69 10.5 8.56 9.28 6.34 10.7 9.52 10.8 10.1 10.5 3.76 10.1 9.97 6.13 9.09 9.13 2.94 10.6 9.71 8.68 10.4 11.5 10.1 9.65 10.9 7.31 8.44 1.17 10.8 9.36 10.5 10.2 7.17 10.2 10.6 10.8 10.7 8.74 8.75 12.1 9.72 10 8.83 8.16 9.99 11 7.52 8.76 11.1 9.46 10.2 9.81 5.76 16.7 12.5 10.7 12.1 11.2 9.29 9.67 9.06 10.2 4.04 10.7 9.28 9.43 9.49 11.5 7.02 12.6 9.62 11.5 10.5 9.67 7.89 10.1 8.41 10.6 9.64 11.5 8.58 10.8 10.2 11.7 11.1 9.33 11.3 11.3 8.88 11 10.7 9.31 10.2 9.69 8.4 10.6 10.3 8.95 9.63 9.25 10.1 10.8 8.21 4.37 8.16 9.58 8.99 10.7 7.3 2.59 7.76 7.41 1.17 9.07 12.2 8.34 11.1 8.61 7.99 10.1 10.2 6.17 8.76 8.29 10.1 12.3 9.34 7.48 11.2 12.4 12.7 11.6 9.35 8.29 6.36 5.95 7.54 9.08 10.9 9.2 10.7 10.7 12 10.8 11.6 8.71 9.07 6.09 11.9 10.7 11.1 4.51 10.2 11.9 7.73 9.41 6.39 8.61 4.51 3.52 7.25 12.2 8.92 8.31 9.05 0.88 10.4 8.97 10.4 8.59 10.9 9.37 10.8 9.78 11.2 11.5 9.49 11.2 10.3 10.1 1.17 1.97 14.6 8.93 10.9 13.5 9.12 11.2 9.15 5.8 10.3 10.3 9.47 12.2 8.41 10.5 7.89 2.48 9.91 7.9 5.93 11.1 0.88 9.47 0.5 2.59 8.33 10.4 11.8 9.06 6.15 7.37 6.98 9.89 9.34 9.57 11.1 10.1 10.3 10.8 5.36 2.13 9.44 7.08 8.6 10.1 1.42 7.47 8.12 6.92 13.7 9.8 9.87 2.25 11.5 9.23 8.69 8.92 9.52 9.45 6.95 9.7 10.1 8.46 9.49 8.96 9.28 10.2 8.15 8.45 11.7 6.43 10.5 11.2 8.95 10.3 9.32 6.13 9.78 9.31 9.68 9.92 2.59 2.37 2.68 3.23 11.2 8.2 11.8 10.2 4.63 10.6 9.69 10.2 6.37 10.4 10.6 12.9 10.5 9.91 9.33 12.2 12.6 7.55 9.75 8.51 8.36 10.1 10 10.9 8.62 3.62 10.3 8.06 10.4 8.62 10.2 8.5 9.48 11.2 2.25 8.03 10.1 11.2 10.2 5.99 9.07 8.6 0.5 4.24 7.56 1.63 12.5 9.89 8.24 9.51 10.3 11.7 11.2 1.42 4.32 8.43 10.5 9.41 10 8.51 8.91 10.1 6.82 6.88 9.93 9.12 7.02 9 11.5 9.36 4.24 8.28 5.97 3.18 7.7 4.45 6.8 2.78 9.93 0.5 3.09 3.09 6.21 9.03 5.51 5.45 6.94 0 2.86 0.5 6.04 11.1 8.82 6.39 8.21 7.08 5.19 15 8.44 11.3 0.5 15.8 9.27 10.3 12.3 8.38 6.74 7.23 9.35 2.48 4.7 10.8 4.68 4.36 8.46 7.73 2.48 8.33 5.1 3.52 7.88 10.4 10.4 3.76 3.97 4.81 9.33 9.58 9.43 6.01 10.6 7.4 7.75 8.87 5.6 5.91 10.9 9.09 3.57 9.93 1.17 6.98 10.2 9.29 7.83 0 10.6 10.8 7.74 8.66 5.77 4.51 6.16 8.74 4.66 8.48 9.75 2.68 1.42 7.92 1.42 0 8.61 9.11 10.4 5.37 2.78 0.5 5.22 8.02 6.28 8.19 10 8.61 8.23 8.21 13.2 0 3.09 11.8 7.79 7.83 7.91 8.61 8.71 1.63 5.16 6.95 2.25 0.88 4.31 9.18 8.87 5.27 6.69 2.68 8.64 1.63 9.76 4.96 6.81 2.48 1.17 10.3 0 7.35 6.2 7.26 9.82 7.44 6.96 3.71 7.24 6.94 7.09 9.45 6.99 4.73 2.25 5.22 5.77 8.25 4.58 7.56 3.71 3.38 5.49 9.53 9.76 4.96 8.48 3.84 7.72 0.5 7.84 7.43 0 4 8.27 3.02 5.95 6.27 5.33 1.17 4.86 4.7 0.88 6.55 3.35 3.29 5.9 7.46 4 9.1 9.38 8.09 1.97 3.16 5.38 3.29 8.77 4.51 0.5 1.97 3.02 9.63 10.6 2.37 6.86 10.4 6.83 10.2 8.51 8.98 1.42 8.96 12.2 9.27 7.47 10.4 6.32 1.17 7.82 5.3 5.32 10.6 10.8 2.12 9.76 6.06 9.81 7.74 10.8 11.6 9.03 8.87 8.51 2.25 11.6 6.76 8.69 6.64 8.36 1.42 10.4 11.6 9.79 7.58 8.56 8.78 10.8 8.7 8.94 0.5 11.3 10.2 6.11 10.4 10.6 7.37 6.92 11.1 8.88 6.26 11.1 3.35 10.3 8.24 9.16 9.55 9.45 10 11.2 8.07 10.4 12.4 8.2 6.39 8.04 10.3 10.4 5.93 10.1 3.41 8.49 4.96 6.74 10.6 10.9 10.4 13.6 9.05 9.7 1.97 12.6 10.7 8.72 7.36 10.3 7.32 8.07 11.1 6.57 1.81 9.74 8.11 9.69 11.4 8.94 2.86 12.5 7.55 9.27 10.5 10.2 9.12 9.25 8.39 10.8 9.47 8.27 12.2 9.21 8.55 9.76 9.5 6.96 1.97 8.51 10.4 11.5 0 5.82 8.45 9.08 3.16 0.88 7.73 11 9.77 6.87 4.63 10.5 0 9.73 2.25 1.17 4.81 7.8 10.3 9.09 12.4 7.98 9.1 8.84 9.09 9.52 10.2 11 11.1 8.49 6.04 10.9 10.2 10.2 8.44 7.66 10.2 7.24 10.7 9.7 9.82 2.66 10.7 10.6 10.1 16.3 9.67 8.87 7.06 7.96 10.4 9.6 9.34 8 9.94 7.1 8.83 5.16 10.8 8.45 9.92 8.83 9.94 9.79 10 9.75 7.53 10 9.95 11.4 11.3 9.68 10.1 9.8 11.2 10.4 8.99 6.27 9.96 10.9 10.4 9.83 11.4 8.69 8.96 4.98 7.51 6.92 8.76 10.4 8.78 5.03 2.68 7.11 9.77 9.28 10.1 1.42 8.42 7.67 8.82 9.44 3.52 9.14 12.7 7.65 6.97 4.73 7.47 7.35 10.6 10.9 9.71 11.7 10.6 10.1 8.91 7.81 13.1 11.9 9.98 11.6 2.94 7.28 8.52 10.3 10.3 9.25 10.1 8.84 8.8 6.04 11.2 8.52 12.2 10.8 5.14 8.36 10.4 10.9 9.55 11.3 9.02 9.8 8.85 8.49 9.87 11.3 13.5 10.7 3.96 8.61 9.48 9.13 8.73 4.73 9.6 3.46 9.58 9.08 4.75 5.98 11.9 11.9 7.07 8.83 9.11 5.4 10.2 11.7 10 9.64 12.1 9.2 7.18 11.1 9.55 10.4 6.75 11.2 3.35 9.38 3.67 7.84 11.5 0.5 8.15 4.79 9.2 9.96 11.7 4.37 9.76 2.12 7.4 4.73 6.39 8.81 10.2 8.94 6.28 8.91 6.01 7.24 2.48 5.5 4.4 7.24 10.5 8.9 10 2.45 11.1 8.89 4.11 7.5 9.78 8.39 7.25 8.77 8.15 8.26 9.56 8.89 8.34 9.6 10 4.96 7.78 10.8 9.72 1.63 9.94 1.17 9.7 7.57 8.35 7.23 10.1 9.57 10.1 2.13 9.71 8.59 11.5 11.4 9.76 0.5 8.3 6.95 7.1 9.41 9.67 9.38 10.8 10.8 11 3.29 9.06 7.89 10.7 8.55 8.84 9.19 6.29 8.56 10.8 9.34 8.19 8.94 9.41 11 10.1 8.37 8.85 10.1 9.11 11.7 4.31 3.8 0 11.2 3.35 2.98 10.2 9.19 5.68 10.3 12.5 9.95 8.56 0.88 9.27 2.68 7.72 1.81 11.3 12.1 8.95 1.97 7.8 3.04 6.59 9.03 7.62 10.3 1.97 6.55 5.93 0.5 7.94 6.51 10.5 6.76 8.16 4.18 9.09 9.19 7.76 0 9.2 8.19 3.76 2.68 5.92 0.5 12.1 8.82 10.2 8.73 7.18 1.63 5.7 8.56 9.21 10.4 2.78 5.97 13.8 8.77 2.12 9.49 10.1 15.1 10.3 10.7 8.98 8.93 10.6 10.1 1.17 6.36 10.3 1.97 8.9 6.84 5.33 10 11.7 9.49 11.1 7.96 8.61 13.2 3.89 8.31 0 5.21 9.71 6.78 10.2 10.8 12.4 10.8 2.37 3.76 9.61 10.5 11.3 10.7 9.03 9.88 8.61 8.41 8.63 7.02 7.79 8.23 10.2 2.48 10.1 8.54 8.52 2.94 6.17 10.3 9.88 3.76 1.42 10.8 7.63 10.9 12.3 10.6 9.56 6.44 7.06 8.75 7.8 5.9 11.2 5.53 9.17 10.9 2.25 8.24 5.54 4.81 7.71 10.8 4.79 7.05 8.58 8.02 7.76 4.88 6.14 9.15 5.54 6.53 9.04 9.85 2.86 8.41 0.88 9.07 8.34 8.83 11.4 8.71 11.4 8 6.17 4.08 10.7 7.24 1.63 7.54 0 2.59 1.63 8.07 10.1 5.79 8.42 12.3 2.86 8.73 7.47 9.61 8.56 9.13 5.72 5.51 7.77 11.7 11.1 8.89 10.1 8.87 8.25 10.1 11 10.4 9.33 7.37 6.72 8.88 9.49 5.65 2.94 8.54 4.75 6.58 10.2 8.49 9.17 8.95 3.57 9.87 8.17 3.76 8.84 8.79 10.2 5.33 7.25 5.49 9.59 3.16 6.19 8.5 12.2 5.36 9.83 9.23 10.6 10.8 4.48 11.8 11 10.2 11.9 12 10.5 11 9.34 8.79 2.48 7.08 10.1 9.33 8.67 8.6 5.12 9.66 8.27 10.1 6.68 9.53 6.56 11.7 9.29 9.45 6.29 11.5 7.51 8.42 11.5 3.62 12.2 10.3 7.38 7.05 7.78 10.6 7.69 5.91 13.4 9.88 10.5 8.75 10.4 6.98 9.07 11.4 9.56 9.35 12.5 11.4 8.5 6.05 9.37 13.3 1.81 6.94 13.4 11.7 4.32 2.37 7.21 10.7 5.55 4.31 8.51 7.67 4.48 10.6 3.93 2.86 11.6 3.67 7 8.34 10.3 11.1 10.7 12.1 9.32 11.4 10.6 0 13.2 3.96 1.17 11.6 4.75 9.98 13.1 5.19 7.43 3.76 4.9 9.16 8.3 4.08 0 2.68 1.42 4.68 7.19 2.86 8.49 3.8 1.97 6.76 4.15 5.74 9.13 5 4.88 5.84 2.12 4.63 3.23 2.78 9.39 8.23 5.62 12.8 10.5 2.12 6.9 7.59 9.76 2.78 6.73 3.93 7.18 8.18 7.7 7 6.54 8.45 3.09 7.74 5.7 7.06 6.45 10.2 2.94 7.15 7.33 11.2 1.42 8.24 5 4.48 3.71 3.96 0.88 5.64 1.81 10 5.72 6.93 6.64 8.96 5.57 8.75 4.19 1.42 3.2 0.5 7.43 0.5 3.62 1.17 8.12 0.5 6.06 0.5 3.29 8.97 10.4 8.03 5.24 3.19 5.01 5.79 6.72 3.52 9.43 0.88 1.81 4.39 9.72 5.82 5.99 1.81 3.23 7.91 5.58 8.98 5.84 5.47 5.14 1.81 3.67 7.57 7.6 0 2.78 8.92 9.24 10.7 6.89 1.63 9.13 8.23 0 6.8 7.56 3.52 6.8 4.4 6.94 2.37 10.4 6.47 4.88 0.5 1.63 6.87 8.35 0.5 2.78 2.68 9.88 5.46 1.63 8.11 12.3 7.23 6.11 5.54 8.99 1.42 1.81 0 4.37 9.03 2.86 5.33 8.69 3.57 9.28 3.02 8.88 0.88 5.16 4.11 8.54 8.03 8.28 5.37 6.31 4.7 5.82 5.95 6.07 4.18 12.6 4.51 6.79 7.8 3.46 4.18 1.97 8.89 6.79 0.88 3.93 0.88 0 5.09 6.24 3.62 6.87 3.67 8.6 2.12 1.17 0 7.98 2.12 3.67 2.25 8.53 3.16 8.22 4.48 5.85 2.48 5.88 3.89 9.21 2.37 4.58 4.53 3.84 1.63 4.7 3.76 0.88 6.45 0.88 6.9 1.17 5.03 6.98 7.42 4.56 6.72 6.78 9.79 8.98 1.97 2.37 8.75 5.07 0.88 7.7 10.9 6.79 8.92 9.16 1.97 8.14 1.97 3.02 6.81 5.81 9.88 4.79 9.4 8.16 0.5 5.65 8.93 9.64 10.6 6.75 7.73 2.25 7.96 3.29 5.42 8.98 8.27 5.49 8.62 4.63 5.73 1.42 3.23 7.78 0 6.83 3.57 1.81 4.42 6.49 8.51 9.77 3.71 7.83 0 11.6 0.5 2.78 5.53 4.11 7.74 6.03 10.1 4.24 6.54 9.55 2.37 6.4 8.74 7.53 5.14 9.2 2.48 4.03 0.5 10.8 3.88 4.18 6.27 1.42 4.15 9.14 0 4.7 8.1 7.63 7.32 5.94 3.62 1.17 3.62 4.75 2.94 3.84 8.78 8.46 2.12 11.3 5.38 8.53 5.21 2.59 3.23 7.82 3.29 7.22 8.26 10.1 4.75 6.26 7.84 2.12 2.25 3.41 8.21 7.36 8.26 3.46 6.79 9.35 10.7 8.5 7.37 1.63 7.14 6.15 9.3 4.04 5.45 8.25 9.41 7.43 1.81 8.07 10.5 11.2 11.4 9.27 4.53 11.8 9.09 9.94 11.7 9.67 9.21 11.8 10.8 10.8 2.12 4.73 9.25 9.26 8.53 9.4 8.04 10.1 10.3 13.6 8.15 9.58 11.3 1.17 6.99 5.03 11.3 1.17 7.96 6.42 10.5 9.98 10.9 10.6 10.7 9.69 8.6 7.17 8.41 9.98 8.66 10.4 11.5 8.88 0 7.88 9.46 7.02 11.1 9.9 6.65 10.7 9.77 2.48 2.59 10.7 3.52 10.7 6.58 9.68 4.45 9.5 11 7.46 10.3 7.46 9.57 10.8 12.6 7.96 8.82 10.6 10.1 8.57 9.54 9.29 9.52 9.34 9.68 8.31 9.65 10.7 9.05 10.1 9.03 11.2 8.7 7.71 7.76 8.18 7.99 9.28 9.67 7.65 9.11 9.52 9.2 10.7 10.8 7.56 6.99 9.28 2.78 9.03 9.45 8.82 1.63 9.36 10.8 8.33 9.91 2.12 2.86 9.91 10.5 11.4 4.21 5.65 10.7 10.3 5.93 0.88 7.6 13.4 6.19 4.61 13.1 1.97 11.3 13.9 11.4 11.2 12.5 11.7 9.45 10.2 8.81 11.7 11.3 9.57 9.32 5.71 13.4 9.34 6.23 8.01 11.3 7.34 9.77 9.32 9.12 9.32 11.6 9.48 9.61 7.39 8.91 9.15 10.4 12 10.6 8.68 4.34 11.3 11.2 7.82 9.51 9.38 0.88 10.9 8.22 4.21 8.14 10.2 4.31 10.4 9.7 7.87 11.2 4.42 10 1.17 4.9 6.94 7.27 10.1 3.57 12.1 9.64 9.1 0 6.56 7.44 9.87 9.1 0.5 5.17 10 11.6 8.7 2.68 9.13 10.4 8.72 9.33 11.4 11.2 11.2 8.68 11.1 1.17 10.3 9.35 10.2 7.45 7.7 8.37 10.3 2.86 8 5.82 9.95 9.25 7.89 9.4 9.06 10.7 10.9 8.14 9.46 11.7 8.5 9.16 13.9 8.69 8.7 5.58 8.55 7.94 0.5 9.85 11.6 6.95 1.63 7.56 8.95 8.96 5.39 8.12 8.67 4.24 10.3 8.63 11.4 10 1.17 11.1 2.59 9.51 5.14 8.03 8.68 10 9.46 9.43 10.8 9.58 10.4 11.3 8.29 8.73 7.85 9.08 1.17 7.47 5.78 9.65 8.33 6.27 9.43 10.4 12.1 8.45 1.84 9.44 3.57 11.7 10 9.87 4.45 7.69 8.92 7.19 8.07 5.7 12 7.88 8.06 2.59 4 1.17 11.7 3.62 1.09 9.79 12.8 5.66 13.9 11.8 14.3 11.2 8.21 6.13 11.8 10.3 9.8 1.42 10.3 6.04 7.45 7.7 2.68 12.4 6.77 6.56 0.5 0 0 2.78 9.29 2.25 11.8 9.18 10.9 9.13 11.2 11.9 12.4 6.44 13.7 13.6 10.9 8.33 9.35 10.8 10.5 10.8 8.53 12.3 0.88 5.73 3.41 9.44 8.92 5.54 2.78 5.19 10.1 3.62 9.36 9.14 8.48 10.9 7.22 5.55 10.1 9.01 10.4 11 8.76 11.7 6.11 12 7.51 12.4 9.49 11.2 11.7 10.7 10.7 10.3 11.4 11.1 12 11.2 8.24 8.87 14.4 15.1 14.4 10.4 10.1 11.5 10.6 7.67 12.2 12 2.86 12.9 9.05 11.8 8.92 14.8 13.3 11.3 9.07 6.27 7 12.9 10.8 8.35 10.6 4.58 5.86 3.52 7.94 8.92 7.67 8.56 12.7 12.3 11.2 11.5 12.8 9.11 10.1 11.3 13.4 5.96 9.51 8.85 9.54 11 8.56 6.5 8.03 8.19 7.9 7.88 4.92 8.94 0.5 8.11 1.81 9.83 1.63 9.64 13.4 7.77 14.4 13.1 13.5 12.6 11.9 13.1 11.1 11.3 13.8 0.5 13.3 13.6 0.5 6.32 3.52 6.59 6.52 7.94 6.32 4.9 3.89 4.12 4.61 9.03 7.59 3.02 4.24 9.81 6.75 8.4 7.26 5.55 7.23 8.73 4.96 9.13 7.65 6.48 8.36 9.46 5.25 9.46 4.73 9.89 1.42 9.23 7.6 1.42 9.84 10.3 5.87 4.04 2.48 9.76 0.88 4.98 9.6 11.3 7.01 7.21 10.3 2.78 7.05 10.4 12.9 11.9 10.4 10.9 10.6 6.17 7.54 8.56 1.17 10.4 11.1 9 6.27 11.7 10.6 11.7 12.7 10.6 4.4 7.67 11.7 13.6 10.3 8.27 7.82 14.4 12.1 13.7 6.21 10.6 14.2 11.8 15.3 13.3 4.68 11.5 11.2 8.39 14.3 4.96 3.84 12.6 11.2 8.65 1.42 0.88 2.12 5.84 5.89 0.88 3.02 8.63 13 5.19 11.8 10.1 1.63 6.67 3.84 1.17 5.03 8.87 13.8 1.42 5.14 2.68 8.18 10.3 8.59 8.35 1.17 0.88 7.48 1.17 6.52 9.15 7.67 8.84 3.67 9.12 7.21 3.16 0.5 0.88 4.68 5.62 9.19 10.4 3.16 9.02 7.56 4.11 8.88 10.3 9.73 7.63 10.7 9.39 6.85 9.8 5.53 7.74 4.88 6.03 0 9.08 0 4.58 9 7.8 2.12 4.61 5.22 7.72 3.16 5.01 5.53 2.48 7.09 9.17 6.28 2.59 7.56 9.46 5.97 3.09 9.22 3.96 4.18 1.42 2.86 2.86 9.02 6.66 2.68 2.25 4.63 9.75 6.51 10.3 2.94 2.48 4.48 4.34 3.89 7.59 6.32 1.63 5.74 1.81 8.28 2.48 8.41 7.37 4.4 1.64 0.5 6.54 5.94 7.29 5.73 4.58 3.23 2.59 2.94 4.75 4.96 8.28 6.98 6.55 8.38 4.9 5.17 4.11 9.07 2.12 11 11.7 9.92 10.7 5.05 10.2 0 4.68 5.66 9.47 11.6 0.88 7.05 9.94 1.42 7.51 5.35 3.16 6.97 8.81 12.6 4.94 10.1 4.34 6.04 1.63 1.97 6.55 3.02 5.69 1.63 8.94 1.81 7.25 8.55 0 9.01 9.17 2.86 3.62 3.71 0.5 0.88 2.86 9.85 6.73 6.99 7.21 0 3.93 7.72 7.31 4.18 3.62 2.12 1.63 0.88 2.12 2.68 10.1 2.94 8.64 2.59 2.48 7.85 9.15 2.37 3.62 11.4 3.46 11.2 3.16 6.02 0 9.2 1.81 1.63 7.67 8.56 3.02 1.17 7.4 3.89 7.57 0 4.66 2.94 9.12 0.88 10.2 1.63 1.63 11 11.1 2.48 4.31 5.54 0.88 9.44 7.75 8.11 7.27 11.1 12.2 5.22 4.75 6.47 9.8 6.53 4.4 8.21 12.6 9.97 0.88 10.6 3.57 6.91 3.62 13.3 11.7 3.67 8.57 13.6 2.68 8.33 13.3 7.01 0 7.12 5.74 6.57 10.2 11.5 5.07 12.7 6.79 5.83 0 3.62 3.65 7.89 4.34 8.43 8.71 14.7 11.5 9.42 3.02 7.28 5.46 10.2 2.25 4 7.97 5 8.28 8.87 7.82 3.16 2.12 4.04 6.69 4.18 9.07 5.6 0.5 0.88 10.3 10.6 10.3 6.31 7.25 10.9 9.54 9.25 7.96 3.46 8.71 11.5 6.87 10.6 0.88 5.49 9.34 7.56 9.11 6.82 9.79 10.8 3.16 5.07 9.91 1.63 5 2.37 9.34 8.94 6.78 8.06 6.14 0.5 6.16 3.93 11.4 2.66 8.07 11.8 8.25 11 7.92 9.16 8.53 5.54 2.86 8.37 7.91 5.91 11.3 12.7 13.4 4.81 11.1 9.43 9.92 10.9 11.3 9.92 10.4 8.49 7.51 2.37 9.97 7.43 1.81 10.2 11.2 0.5 10.6 8.44 8.89 8.23 10.9 9.78 1.17 2.94 9.85 5.16 12.9 7.89 9.11 12.2 12.2 8.02 10.2 10.1 8.22 10.3 10.5 6.15 9.43 11.6 8.96 8.64 8.68 7.73 11.8 9.31 11.2 2.68 11.6 8.16 12.6 6.75 3.09 5.96 1.42 8.15 8.46 11.3 13.1 9.36 13.3 10.9 10.5 8.46 13.2 11.3 11.9 11.7 8.04 10.9 2.86 2.86 3.52 12 5.25 7.74 11 10.5 9.58 3.89 10.8 10.2 8.68 12.2 9.98 10.4 11.8 9.45 10.6 11.7 10.2 11.9 12.7 10.9 14.3 7.75 6.85 10.4 10.8 11.8 0.88 4.86 5.22 6.53 0.88 3.89 0.9 9.82 6.58 10.1 5.54 8.93 9.55 6.87 3.02 6.81 3.02 2.12 6.59 1.17 6.44 5.33 8.27 8.84 8.08 8.14 0 2.78 6.55 5.88 8.34 3.46 6.44 5.07 4.53 9.47 5.89 1.17 8.48 3.86 5.86 6.33 2.68 7.97 0.5 4.86 8.48 13.4 7.23 6.16 6.64 10.3 1.81 8.45 7.87 1.97 5.53 3.89 7.28 7.85 7.04 6.61 1.42 0.88 2.68 0.88 6.37 7.51 9.12 6.26 9.93 9.1 3.35 7.94 6.62 2.68 0.5 1.81 4.88 2.59 6.81 7.26 0.5 0 8.99 6.26 7.82 1.17 5.43 13.2 1.14 1.42 7.3 5.19 8.05 7.62 1.81 8.23 0.5 3.09 5.99 6.41 6.64 0 7.39 13.5 5.25 3.46 6.86 5.16 9.38 6.19 8.19 0.5 8.27 12 3.35 2.37 5.97 6.75 7.54 0.5 3.29 1.42 8.39 6.67 1.17 6.98 10.1 6.79 8.1 4.08 9.51 10.4 7.9 9.52 9.68 3.35 11.6 9 4.92 9.63 0 3.09 0.88 11.7 1.63 0 8.7 3.23 0.88 11.2 4.08 4.24 2.55 1.88 5.07 0.5 10.1 9.83 10.1 10.2 11.8 13.2 12.6 10.3 7.25 11.5 6.34 11.1 11.7 10.3 3.23 1.42 14.3 9 11.7 8.48 6.07 7.82 13.2 6.97 5.09 11.1 1.97 9.97 5.63 6.12 15.5 1.96 9.62 1.17 1.17 5.62 9.57 5.24 4.58 12.7 7.46 10 4.24 2.25 4 2.59 4.63 6.41 8.8 4.24 1.42 1.81 6.33 0.88 9 0.88 4.37 6.36 3.62 6.64 8.2 2.19 2.25 10.1 0 6.73 8.7 2.37 0.88 11.4 2.48 8.05 5.54 2.12 9.7 4.42 3.09 7.66 2.78 7.29 4 3.23 3.52 5.86 5.07 4.81 7.12 6.73 8.07 4.24 6.9 13 1.17 6.16 8.75 5.03 8.6 6.3 6.71 7.7 2.94 0.5 3.57 8.5 4.31 0.92 8.98 3.84 9.06 1.42 7.65 8.07 1.97 5.07 5.72 8.27 8.74 1.63 9.03 1.26 5.85 5.95 7.1 9.55 8.07 5.56 1.17 9.46 11.7 8.87 0.88 4.24 0.5 7.3 3.77 9.02 3.57 8.64 4.48 5.36 5.7 3.57 6.09 6.53 8.24 5.07 1.17 11.8 5.83 7.32 10.4 3.76 2.78 3.57 4.86 8.71 7.65 2.59 6.58 0 7.08 0.5 2.37 2.48 1.66 7.07 2.25 4.75 2.37 10.2 10.4 6.77 2.94 1.36 2.94 8.68 2.59 2.48 1.97 4.96 0.5 8.97 11.9 9.61 2.48 8.32 10 10.9 8.37 11.6 2.25 12.4 2.25 11.7 2.94 8.78 13.8 12.5 12.3 6.4 2.12 11.9 12.2 12.9 0 2.12 3.76 13 5.58 12.3 3.29 0 9.3 10.6 5.62 7.83 3.52 13 9.16 0.5 13.9 10.2 9.63 11.1 9.52 1.63 6.24 10.6 7.98 12.7 0.88 10.9 13.9 13.3 1.97 10 11.8 10.7 1.63 6.96 10.5 10.8 0 10.6 8.07 10.8 9.98 11.1 10.2 10 7.27 3.23 3.16 10.4 9.67 2.37 5.87 8.62 5.37 9.46 9.46 10.5 4.9 2.27 2.25 10.6 1.97 4.04 5.12 5.33 12.6 4.24 7.38 7.56 10.8 1.17 11.8 6.86 10.4 10.8 12.3 7.03 8.14 6.83 10.7 0 0.88 3.84 10.1 6.43 8.82 6.37 8.88 1.63 4.9 6.92 0.5 6.71 6.97 0.5 8.2 3.09 0 4.53 7.67 2.86 1.42 4.18 4.34 7.06 1.42 10.4 8.06 0.5 2.12 7.66 3.64 4.34 9.41 2.59 7.54 7.78 2.12 5.7 0.88 7.2 1.81 5.36 3.67 1.97 5.57 10.9 2.37 7.44 5.09 3.96 6.66 4.93 0.5 0 4.05 2.85 8.47 5.7 6.26 6.64 1.42 9.55 1.17 3.76 7.09 3.76 9.58 9.55 2.48 6.57 9.86 10.3 6.82 5.01 8.92 1.63 0 2.62 0.5 6.22 9.9 6.88 6.76 11.1 3.41 0 5.88 7.94 10.8 8.69 1.42 8.73 2.86 9.65 2.59 3.41 7.67 5.46 4.31 8.94 5.43 7.36 0.5 8.12 9.54 13.5 3.67 9.46 9.15 10.1 3.89 8.95 11.1 1.81 8.16 2.12 4.77 11.2 11.2 5.97 11.4 7.48 8.77 9.79 9.27 11.1 3.76 9.94 8.31 1.81 12.7 12 10.7 11.7 2.94 11.4 1.81 3.23 10.4 7.32 14.1 12.9 5.45 5.85 10.3 5.47 9.81 6.07 11.1 13.1 13 11.4 11.7 13.5 11.7 0.88 6.5 6.01 6.89 8.09 10.2 12.3 9.18 10.7 10.8 11.1 10.2 10.6 9.26 11.1 5.91 9.5 3.52 10.9 9.76 1.63 6.96 9.67 8.83 9.7 5.21 6.02 8.06 9.39 9.99 10.3 8.37 11.7 9.76 8.79 7.36 8.61 9.07 8.67 13 6 4.56 10.4 10.2 9.95 6.02 4.18 11.6 6.07 5.07 6.44 1.81 4.55 7.33 3.57 2.48 11.9 6.14 2.71 7.13 9.39 6 10.4 6.19 8.23 4.58 11.9 11.7 3.76 10.3 12.2 9.6 6.54 11.6 9.53 5.25 0.88 12.8 12.2 12.3 12.3 11.7 10.9 12.9 11.5 2.94 9.18 8.49 1.81 11.7 12.1 11.7 11.3 9.92 9.81 10.5 10.2 10.3 10.5 6.05 10.4 10.3 8.55 4.31 8.33 9.81 8.36 8.43 9.19 10.3 9.39 10.6 10.2 2.78 0 11.2 10.4 9.62 9.74 12 9.44 9.75 11.9 7.93 6.68 12.3 9.74 11.1 8.45 9.09 10.7 7.74 10.1 10.5 9.22 10.5 9.75 11.6 10.8 7.83 8.98 12.9 9.54 0.5 8.95 7.21 8.03 11.5 10.1 9.6 9.12 6.6 8.73 10.7 10.2 11.5 11.1 7.88 3.93 7.83 11.4 12.5 9 8.78 8.72 14.1 11.9 4.75 2.37 12.1 4.15 13.4 14.2 4.24 7.66 4.4 5.07 10.1 6.6 3.29 6.97 7.78 7.32 8.94 1.63 7.92 8.63 0.5 10.7 8.23 9.05 9.02 9.23 3.09 2.12 8.31 7.24 6.23 9.51 9.57 4.53 10.5 9.06 11.8 0.5 0.88 10.7 10.7 1.17 5.1 5.58 10 9.19 3.02 1.17 4.37 4.21 8.54 2.59 9.7 3.52 3.23 4.15 9.39 10.2 4.61 8.86 10.5 4.49 7.22 3.14 3.7 6.56 6.25 10.4 7.47 3.96 7.66 0.5 7.64 6.66 5.77 5.96 0.88 0.88 9.34 10.6 5.24 1.42 4.33 3.52 6.47 6 9.2 7.45 2.48 0 7.51 6.45 6.93 9.61 13.2 3.67 7.12 5.49 6.51 5.24 4.7 6.14 8.22 6.39 4.48 5.63 7.21 6.11 3.35 5.78 5.64 0.5 4.66 6.83 2.77 2.68 3.23 0.5 1.97 1.42 1.81 0 8.43 2.12 9.71 5.57 3.67 10.9 1.97 4.18 10.3 10.1 0.5 0.5 0.88 1.17 0.5 3.02 6.85 2.94 3.16 8.01 5.86 3.46 0.88 11.5 2.68 9.97 8.59 0.88 8.21 11.6 10.2 9.01 3.09 7.64 6.45 2.86 9.18 13.9 9.78 6.61 5.5 10.2 4.7 7.91 6.41 7.2 4.51 8.87 11.1 6.3 4.86 9.06 8.61 10.5 8.92 9.93 7.94 8.61 3.46 10.5 9.55 9.59 10 7.43 0.5 10.2 9.35 7.79 9.06 8.74 10.8 9.02 10 8.29 6.75 11.5 11.3 1.81 1.17 13.5 8.85 4.75 10.6 9.96 1.81 4.66 15.2 11 9.69 9.01 2.78 6.76 13.6 11.4 2.78 11.6 11 11 9.83 10.2 12.3 6.76 4.42 7.31 11.5 11.2 10.7 9.14 10.2 3.62 10.1 9.77 14.1 9.53 9.85 10.2 12.9 5.12 13.6 6.51 5.4 11.7 11.9 11.8 12.6 5.6 12.7 8.43 11.1 3.67 5.92 9.9 9.13 8.69 11.2 14.8 9.26 10.4 9.23 8.95 11.6 9.86 13 9.78 9.83 9.32 7.37 10.8 10.4 9.71 8.61 10.3 9.47 11.3 11.8 10.7 8.98 10.6 10.4 12.1 9.85 9.26 10.8 10.2 9.57 11 10.7 11.2 8.36 11.5 9.62 9.98 10.2 11.6 9.15 10.3 8.46 13 13.8 10.6 11.6 1.91 5.95 7.33 6.45 7.67 0.88 1.42 2.48 11.1 9.63 8.17 9.1 7.59 8.12 10.1 9.67 13.6 10.3 1.63 10.2 7.98 5.72 10.3 9.19 9.31 2.78 13.3 3.89 12.3 10 10.1 9.45 11.1 11.6 11.6 11.6 9.43 9.81 8.92 9.62 9.41 9.65 9.27 0.88 10.4 9.51 9.95 9.02 1.42 11.5 12 8.39 10.6 10.6 6.42 9.12 7.24 4.34 10 5.91 3.35 7.28 11.2 12.2 14 7.84 9.56 6.75 11.7 11.4 2.94 11 13.7 4.9 8.39 10.6 10.7 8.81 10.4 12.6 12.8 9.3 9.25 8.73 9.97 1.81 9.04 8.53 10.2 6.76 14.8 3.35 1.17 13.2 6.31 7.09 5.79 4 5.32 9.38 9.3 11.1 7.36 11.7 8.83 1.17 9.57 5.7 3.81 5.49 13.4 10.5 7.5 1.97 8.03 4.34 11.2 1.81 3.29 4.81 0.5 8.75 7.65 1.63 4.9 6.54 12.6 8.78 12.6 10.1 11.2 7.27 11.7 9.06 6.22 8.35 8.8 8.67 5.9 0.88 9.13 8.54 4.75 9.23 10.3 5.6 11.1 9.47 0 6.75 10.3 8.95 8.43 3.84 3.29 3.29 13.6 11.2 10.5 12.7 9.98 7.72 11.5 7.63 5.33 0.5 1.63 4.85 8.67 1.63 0 11.5 9.45 12.9 9.54 6.61 8.45 7.69 9.95 1.17 5 8.96 9.29 11.3 9.22 9.11 6.73 2.59 3.02 10.5 5.39 7.06 5.12 5.55 5.3 6.83 10.6 10.4 5.9 5.22 9.35 6.23 5.29 5.64 6.44 6.27 6.15 10.1 14.2 6.2 6.02 12.5 1.81 1.42 3.8 12.8 8.44 11.8 8.49 11.1 10.1 9.1 7.49 11 9.22 9.8 5.01 10.9 7.65 12.1 8.54 12.7 12.9 10.5 10.3 13.9 1.17 8.12 10.6 8.51 12.2 3.99 9.01 10.1 5.16 8 9.41 7.96 9.09 4.45 11.9 7.3 4.81 10.9 10.2 8.85 5.49 6.25 0.5 8.42 11 10.6 12.1 10.8 11.1 9.46 8.89 2.12 2.34 1.63 13 5.16 5.39 10.2 5.54 6.41 4.81 9.32 10.1 9.12 11 10.3 11.2 7.45 8.81 9.22 12.9 8.62 1.63 13.6 3.41 6.58 3.52 7.01 11.4 7.93 10.4 9.9 10.1 8.72 9.18 8.57 6.26 7.31 7.51 10.5 8.85 8.44 2.59 8.74 8.25 10 8.71 10.2 9.07 6.5 9.75 8.43 10 10.6 6.88 8.55 10.4 7.42 10.2 7.59 9.37 10.9 8.81 9.96 10.9 9.1 10 7.55 9.24 6.59 11.4 7.35 7.97 8.64 10.9 9.53 6.29 8.36 9.32 0 9.41 10.9 9.39 10.2 9.4 9.09 11 9.16 10.7 7.74 9.86 10.6 11.6 10.8 10.9 10.9 7.88 7.37 4 2.8 2.37 11.3 5.86 8.38 9.19 8.28 11.6 8.03 10.6 9.33 9.3 8.42 10.6 11.3 8.3 8.76 8.27 8.32 10.3 7.87 12.2 10.2 10.1 11.9 8.45 9.49 9.23 10.6 9.4 9.83 9 9.82 10.2 9.1 10.5 10.2 10.1 10.6 10.1 5.96 8.17 9.24 8.66 8.56 10.9 10.7 8.53 9.23 8.4 9.39 8.84 12.1 9.62 10.1 9.53 10.7 6.42 11.6 1.17 11 11.9 8.34 9.9 10.5 5.54 7.87 9.44 10.1 7.11 8.75 2.86 9 6.42 7.67 8.08 7.73 8.51 10.1 11.4 8.47 8.98 9.29 8.32 10.4 11.1 8.08 10.5 8.2 7.35 10.3 9.11 10.2 5.07 10.2 8.49 11 11.1 9.23 8.72 0.5 4 2.59 9.39 4.34 8.17 7.25 7.56 6.64 10.8 10.2 9.51 9.34 0 10.7 9.38 7.99 8.38 9.33 8.08 11.6 10.5 9.4 10.2 6.55 7.65 8.58 5.73 11.1 9.95 9.29 8.44 11.4 8.27 9.41 10.2 9.75 4.57 8.77 6.48 11.4 10.2 10.1 10.2 8.79 4.86 6.35 9.15 9.85 9.66 11.1 7.89 9.29 10.2 4.84 1.42 9.98 10.9 9.75 9.49 9.39 10.4 7.83 9.57 9.13 8.03 10.2 8.8 12.1 3.46 9.16 9.96 3.93 8.09 10.2 4.92 6.4 7.88 5.74 8.56 9.9 0 8.92 9.49 10.7 9.6 9.37 9.89 10.1 11.1 11.1 5.94 11.6 5.85 9.94 6 4.28 6.35 10.7 9.19 8.16 8.73 10.2 9.79 9.79 10.7 9.03 2.94 9.58 4.56 5.69 9.33 9.6 9.51 10.1 1.81 5.07 11.4 8.84 9.31 2.48 10.7 10.1 8.25 10.6 8.61 10.1 9.63 5.78 8.23 9.52 1.42 8.8 12.7 9.65 9.85 6.45 8.61 8.89 8.04 11.1 8.78 11 7.96 10.6 9.61 7.89 9.47 6.98 10.8 10.1 8.7 8.52 7.87 10.9 10.6 3.8 9.93 12.4 10.8 9.95 9.28 8 2.48 11.3 9.7 9.98 9.79 1.81 8.51 7.75 9.46 7.01 4.56 10.7 10.7 8.85 1.63 12.4 9.96 7.65 10 2.68 8.95 9.96 12.1 10.9 9.66 10.5 9.43 11.4 11.3 9.33 9.36 11.3 10.9 10.2 8.98 10.3 8.87 8.28 9.65 8.6 8.03 11.6 10.2 8.66 9.16 9.41 8.1 9.04 10.8 6.75 8.8 7.11 4.63 10.6 10.6 8.57 9.66 8.85 9.09 9.54 8.73 8.87 9.12 9.29 8.57 11.3 4.28 0.5 8.46 11.5 8.1 9.14 7.96 10.8 10.4 9.79 10.2 8.63 10.8 10.3 9.98 9.48 6.96 11.7 9.1 11.3 8.7 12.1 10.2 11.6 9.99 10.9 12.3 10.9 10.6 6.2 11.3 10.5 11.7 9.72 10.2 9.71 8.85 12.1 9.36 0.5 7.63 9.8 12.4 10.6 8.51 12 9.56 11.4 9.13 9.21 9.71 11.1 10.6 8.75 9.09 9.54 9.87 10.7 9.45 10.5 7.77 9.41 9.11 11 9.2 6.65 8.45 8.53 6.73 8.7 8.54 11.2 9.09 11.4 8.29 11.2 8.11 7.05 3.8 7.89 9.41 9.12 2.28 3.29 10.3 8.9 10.2 8.75 11.6 9.96 12.3 9.62 8.41 8.19 9.58 8.94 7.68 5.19 10.7 7.02 11.5 8.69 2.48 11.1 2.59 9.62 11.3 11.7 8.64 11.6 2.25 8.28 7.7 0.5 1.97 7.97 10.2 2.12 11.4 9.24 9.19 2.59 11.1 7.49 10.9 10.6 13.3 3.93 2.48 8.53 9.22 0 10.6 11.7 9.62 9.95 4.58 11 10.7 9.01 8.39 6.15 8.66 10.3 9.82 10.4 11.1 8.19 9.26 9.39 7.59 8.86 7.44 10.3 9.19 1.97 0 9.47 7.5 10.9 10.1 10.8 8.26 11.9 9.75 1.17 8.59 11.9 10.7 7.09 12.4 1.81 11 11.1 13.6 11.3 10.1 10.2 12.1 4.18 4 12 7.8 8.21 10.8 13.8 9.84 9.03 5.07 5.27 3.93 2.48 12.1 4.24 13.2 2.37 9.07 9.69 8.69 9.47 9.72 11 1.97 8.36 7.39 10.8 5.94 11 11 10.9 8.9 8.65 6.96 8.78 9.39 10.9 7.55 7.6 4.88 9.94 8.91 9.39 11.3 9.39 10.7 9.55 8.47 6.16 9.82 11.6 10.6 11.3 10.1 9.94 0 8.68 9.37 10.7 8.25 10 9.47 0.61 15.3 8.87 10.2 1.42 8.56 4.53 8.49 10.5 11 12.5 10.8 11.2 8.62 9.69 8.57 7.42 9.57 10.8 6.7 6.68 3.82 8.41 7.61 7 5.6 8.58 11.1 3.35 6.02 7.9 10.7 9.9 9.15 9.33 13.4 3.41 5.39 9.15 9.65 4.16 8.92 0 10.1 12.4 9.79 7.81 11.9 11.9 6.58 11.6 9.92 8.54 13 10.8 12 12.9 11.8 8.19 9.93 2.25 11.2 7.87 11.7 8.16 11 1.38 3.16 11.3 11.9 7.86 9.85 10.6 8.54 8.24 8.74 6.52 4.84 3.41 2.12 10.7 9.76 5.53 6.07 5.81 7.16 9.23 10.4 10.1 7.55 1.81 5.35 11.3 7.64 8.82 9.19 9.1 9.48 8.11 10.7 9.59 8.66 8.96 12.9 10.2 10.2 6.51 10.2 8.99 5.7 4.73 6.78 7.46 8.04 2.37 8.45 4.94 1.81 8.41 8.83 10.1 8.7 5.3 10.9 10.1 11.4 3.29 9.77 9.71 7.08 3.71 7.86 4.01 8.39 8.66 7.04 9.67 9.95 9.52 11.2 11.6 11.1 1.42 7.78 8.85 9.97 9.42 10.7 11.6 10.6 6.67 1.42 10.6 8.65 12.8 11.7 10.1 4.53 5.63 10.1 9.94 8.75 12 7.29 9.32 9.87 10.3 5.14 8.06 11 9.58 10.2 10.2 10.3 11.9 10.3 5.55 7.6 10.3 4.28 4.37 11.5 9.28 9.08 10.4 4.92 10.6 6.44 6.27 9.69 7.82 6.27 10.3 10.5 10.4 10.1 8.99 9 2.37 2.48 11.1 10.4 11.3 9.62 6.92 10.5 8.57 2.12 10.1 9.25 10.3 10.6 7.93 10.7 9.57 9.65 10.7 8.97 8.57 11.1 8.13 9.96 7.04 9.94 6.61 10.3 8.7 9.55 7.55 11 10.7 11.2 9.99 8.79 8.89 9.43 8.85 3.62 7.04 6.59 7.27 9.5 7.85 10.2 6.99 6.29 9.6 8.83 7.23 9.89 3.02 9.21 9.44 8.93 8.38 7.99 8.76 8.06 10.8 9.38 13.8 8.66 10.8 9.81 10.9 10.2 8.47 10.8 7.73 7.36 5.62 8.28 7.97 2.68 7.97 9.98 7.41 8.85 11.3 3.96 10.8 5.46 10.2 10.8 9.84 8.01 7.03 9.45 8.05 7.93 10.4 12.1 6.64 6.63 7.23 7.32 11.3 8.39 3.67 8.88 9.51 10.1 8.98 10.5 2.12 9.72 10.5 8.44 5.05 9.91 7.58 8.84 10.9 7.26 9.8 8.78 8.61 9.86 9.57 3.35 5.39 10.3 7.98 12.4 9.87 5.3 8.99 9.16 8.99 5.91 9.22 4.08 11 4.53 8.72 3.02 5.46 8.18 8.43 11.2 1.97 5.73 9.27 10.2 4.7 10.2 9.39 12.8 8.8 8.13 7.3 9.46 12.9 9.9 8.62 8.77 8.16 7.94 3.76 9.57 9.46 11 9.65 9.15 6.33 8.22 6.91 9.28 8.98 10.1 3.02 6.83 10.3 8.11 8.54 11.8 8.95 7.77 8.78 8.34 10.1 6.81 1.81 6 1.17 9.8 11 6.14 0.5 10.2 8.37 7.33 10.3 7.4 9.07 8.16 10.2 8.68 11.2 5.84 9.26 8.71 7.25 6.77 8.4 6.02 7.55 10.6 1.42 9.28 8.31 9.05 10.2 7.49 9.22 6.76 10.6 1.17 11 9.54 7.53 10.3 9.67 8.61 10.3 7.8 9.91 8.25 8.73 7.64 9.58 9.7 10.4 8.61 9.85 7.99 9.84 11.6 10.4 8.47 10.2 9.12 10.8 8.11 8.97 5.86 7.11 6.87 5.53 10.1 9.43 8.72 9.91 1.97 10.8 9.2 10.8 9.55 9.3 10.7 8.18 11.7 10 7.74 11.1 6.65 6.85 8.06 10.8 9.92 11.6 9.94 8.91 8.58 9.52 6.33 7.42 9.59 8.65 9.75 3.62 9.53 9.9 10.3 10.8 6.67 8.76 3.57 11 8.31 9.45 9.42 9.67 8.52 8.77 8.95 8.3 8.89 8.07 8.14 6.09 12 8.26 8.58 7.41 9.6 6.06 9.79 6.26 8.72 8.81 6.23 7.69 11.1 10.7 8.46 9.75 9.5 9.81 1.17 7.61 7.09 6.74 10.3 7.35 8.95 5.07 9.02 1.81 10.1 11.6 8.05 8.3 11.2 6.79 7.89 9.02 10.3 5.45 11.3 12.5 11.6 6.79 9.34 9.61 10.5 9.06 8.15 8.97 8.62 9.87 12.2 8.61 10.5 7.89 8.35 7.21 9.09 8.62 6.23 9.45 0 1.63 7.77 6.32 10.5 4.98 5.16 8.13 9.53 9.56 10.7 9.05 8 8.73 9.24 6.12 10 9.62 8.41 11.1 8.87 11.2 9.88 8.68 8.34 10.7 9.08 9.32 6.98 6.64 10.1 9.99 5.22 5.64 4.11 8.95 6.22 9.1 6.86 11.6 4.58 7.02 6.46 9.7 7.73 9.61 9.81 10.3 9.88 9.78 10.4 9.43 6.25 6.28 8.08 3.62 6.63 7.7 8.94 7.93 8.01 11.5 3.89 9.92 9.64 10 9.25 8.21 8.8 6.99 11 9.2 10.2 8.42 10.1 7.67 7.48 10.1 8.76 10.6 8.44 10.4 2.12 9.46 11.2 7.45 8.38 3.35 9.75 8.72 8.34 8.17 6.61 6.48 9.78 10.9 9.21 9.17 9.74 9.47 7.69 9.68 10.3 9.65 9.05 11.2 2.68 7.25 8.52 10.1 9.79 9.96 9.68 10 10.3 9.22 11 10 8.63 9.81 8.17 10.3 9.54 9.93 9.15 8.55 10.6 9.94 6.29 7.11 9.41 7.86 8.66 12.8 7.41 9.4 10.6 9.92 6.23 11.2 10 8.25 10.1 8.34 10.2 7.75 10.7 7.2 0 9.74 11 9.52 7.76 3.84 10.2 8.05 10.2 11.9 9.48 11.6 9.37 10.5 7.44 10.8 4.15 10.5 8.19 9.11 12.4 10.8 9.03 7.25 8.75 10.6 6.44 3.93 7.2 7.41 7.13 8.59 11.8 10.2 4.31 8.87 9.23 8.96 5.95 9.64 10.4 10.1 7.83 9.67 11.1 11.5 8.14 5 9.16 9.98 6.59 8.9 11 9.09 10.4 9.81 9.56 8.82 9.89 9.44 11.2 8.83 8.74 1.97 8.06 5.84 8.56 10.8 3.23 9.65 9.43 10.2 9.46 10.6 3.8 11 9.53 10.6 6.8 9.04 7.54 10.3 8.71 8.73 2.48 7.04 9.32 7.57 6.18 6.06 9.08 11.5 6.19 9.1 7.5 9.59 11 7.35 8.74 7.83 6.63 8.95 8.78 10.5 0 9.75 9.48 0.5 8.45 6.93 9.9 10.5 9.33 11.3 8.49 7.57 7.63 7.99 6.03 9.96 8.17 9.42 9.7 9.39 5.07 9.91 8.97 10.9 8.61 9.93 9.15 4.31 7.91 7.99 8.37 7.78 9.84 9.23 10.4 4.11 5.04 9.29 10.7 10.9 7.88 11.2 8.76 9.5 8.56 7.75 8.32 9.58 7.91 3.09 5.03 8.78 13 8.91 6.24 8.74 6.47 11 9.38 10.8 8.97 9.34 9.91 7.83 10.3 5.8 7.56 12.4 11.7 6.29 8.7 2.59 7.79 9.11 8.72 5.33 1.42 5.01 8.08 4.61 8.43 9.13 7.16 3.23 8.67 8.2 9.62 11.1 9.12 10.2 8.02 3.23 10.6 12.7 10.7 10.2 9.27 9.36 8.77 10.6 10.2 9.78 5.17 7.78 5.66 8.2 8.74 4.08 1.81 10.9 7.1 3.16 9.77 10.7 7.07 4.14 0.5 7.35 9.65 4.91 7.48 10.4 0.88 2.12 5.76 9.5 9.09 9.43 8.16 8.63 6.88 4.18 9.63 7.86 10.3 8.85 12.6 4.04 10.1 9.39 8.29 5.94 11.1 10.2 9.3 10.6 7.13 10.7 8.84 7.06 0 9.42 8.6 8.48 9.65 8.9 8.52 10.9 7.6 8.17 11.3 11.5 4.75 8.07 8.48 7.79 8.36 8.98 10.6 10.3 9.91 9.41 9.4 10.9 10.1 10.2 11.3 8.55 10.3 6.3 9.09 9.23 8.86 8.93 7.65 6.31 10.3 7.78 9.26 6.62 11.3 8.31 9.7 8.38 8.88 7.5 11.6 8.79 9.34 10.8 4.9 10 9.09 10.6 6.66 11.3 11.6 9.69 9.93 7.38 7.91 9.29 12.3 9.15 7.82 10.8 9.21 9.09 10.1 7.75 8.51 10.5 8.2 7.62 10.4 10.2 11.1 9.48 8.62 11.4 8.1 11.1 9.86 9.08 5.07 9.16 9.56 10.2 5.1 11.7 5.85 11.7 9.23 9.05 9.29 9.66 11.6 9.58 11.3 8.74 10.3 7.94 3.93 10.4 8.64 8.72 10.1 9.59 8.41 10.8 6.87 7.37 9.48 9.98 9.04 7.54 10.1 12.2 9.76 8.9 7.7 8.97 10.7 11.1 10.8 9.45 12.8 9.2 10.4 9.18 9.96 8.91 10.5 12 10.7 8.54 9.74 9.22 11.3 6.2 13 10 8.76 8.49 8.8 9.73 7.75 9.37 9.34 5.01 9.67 9.51 10 7.8 9.15 7.92 8.49 10.2 8.56 9.73 8.65 9.01 7.8 7.91 7.4 8.28 8.47 8.25 8.19 10.3 9.92 4.21 8.25 9.41 8.75 7.04 7.17 7.88 8.2 8.26 9.22 6.22 8.18 4.15 9.91 9.69 2.48 9.33 7.26 4.94 8.38 6.7 8.44 8.85 9.55 4.7 6.48 9.69 8.87 3.84 10.3 10.3 0.5 9.21 7.43 6.23 11.2 9.72 9.84 9.52 9.11 12.3 9.8 8.7 9.04 8.91 10.7 5.85 9.91 5.74 8.49 10.9 9.12 9.79 8.48 11.4 8.83 10.1 9.67 3.43 10.8 6.52 8.45 7.63 10.5 3.67 10.3 9.49 9.89 10.7 8.83 0.5 8.9 8.2 10.8 8.87 9.06 7.09 7.18 11.2 3.62 3.89 3.8 12.9 8.97 9.79 10.2 3.35 10.8 7.11 8.51 5.01 8.79 10.4 9.95 5.43 10.6 8.6 14.1 8.39 10.5 8.97 8.91 10.4 5.98 13.7 9.25 5.46 9.05 3.76 8.96 4.63 11.2 8.64 7.8 6.77 9.3 10.7 5.72 2.37 9.77 10.8 10.4 10.5 11.8 10.3 7.33 9.5 9.23 9.72 8.2 8.48 0 7.49 0.88 10.9 9.42 9.74 6.46 11 8.97 10.7 11.4 8.51 9.84 10.6 3.62 8.2 9.66 6.64 10.4 3.02 1.17 7.71 9.1 4.11 5.07 2.37 4.11 2.94 4.23 4.73 4.9 2.94 4.04 9.93 2.68 4.11 3.45 4.15 3.23 10.2 0 5.29 6.63 4.75 5.16 6.35 6.14 5.84 4.4 5.27 10.2 3.96 5.39 7.5 6.62 3.84 8.36 8.67 5.17 0 4.34 3.29 12.7 9.83 8.2 9.2 2.37 8.97 12.3 0 5.38 8.76 7.05 11.4 0.5 9.55 10.9 5.07 9.96 9.3 3.29 9.85 10.2 4.8 9.41 10.6 9.9 8.74 8.51 12.2 9.3 9.67 1.17 0 10.7 9.14 10.9 10.4 9.56 8.82 7.74 7.24 11.3 5.92 3.76 4.15 9.59 2.12 8.99 8.62 4.66 10.1 7.71 11.2 6.66 0.5 15 6.44 11.7 6.3 10.3 5.88 7.97 10.2 9.15 9.72 9.38 10 11 9.29 7.59 9.83 8.63 4.45 2.59 5.62 3.16 8.3 5.16 9.51 6.49 10.7 9.71 15.7 8.38 3.02 9.32 9.88 11.2 10.2 11.6 9.4 9.02 10.6 8.85 11.8 10.1 9.71 8.22 4.18 11.1 11 12.1 12.1 11 10.5 11.8 12.2 8.19 11.9 10.7 11.5 8.62 10.8 8.84 1.42 11.9 9.93 11.3 10.1 9.73 10.4 5.69 9.6 11.7 12.2 6.08 8.49 7.7 10.2 9.85 7.55 9.36 12.6 7.18 10.4 8.97 8.53 11.6 9.93 10.2 8.69 11.1 9.75 7.92 10.9 9.26 10.6 9.28 11.1 8.5 10.1 9.62 9.78 8.67 10.5 8.71 10.7 11.3 10.2 10.6 7.11 6.07 10.6 9.4 11.2 0.5 8.33 3.35 9.71 7.72 11.2 6.23 9.57 6.43 4.81 10 7.92 3.62 10 10.3 7.13 8.07 10.7 9.73 10.1 8.5 11 8.48 10.1 9.74 10 9.55 7.85 4.37 9.02 7.94 7.69 11.5 9.87 11 2.82 9.51 10.8 9.89 11.7 9.38 9.13 2.12 8.73 7.76 9.81 11.4 10.6 9.57 11.8 9.55 1.63 10 8.73 1.98 11.4 11.6 13.3 8.2 9.8 8.31 9.37 12.5 5.65 11.3 1.63 10.5 1.63 8.57 8.67 10.1 11.9 1.63 9.3 9.08 9.76 2.68 8.26 8.58 9.65 9.58 10.4 6.59 8.82 8.99 9.92 6.54 10.7 10.9 8.24 5.33 9.1 10.5 11.2 11.3 10.8 6.91 11.8 2.69 11.8 10.4 11.9 7.43 8.68 8.26 10.5 7.99 10.2 6.33 11.5 10.4 5.29 9.81 1.81 10.1 7.6 10.6 4.51 5.09 7.02 9.79 11.3 7.9 10.7 9.32 10.6 11.5 10.4 8.01 9.37 9.39 9.13 9.75 9.19 11.2 4.24 11 11.3 11.9 3.96 9.17 7.63 9.88 9.62 11.2 8.69 7.14 10.7 9.15 9.01 9.69 8.16 10.3 9.1 11.5 9.69 7.82 11.8 10.8 9.97 10.2 8.6 8.01 9.52 4.75 7.29 13.1 7.64 10.2 2.25 4.24 9.99 9.98 8.78 3.35 5.94 9.75 11.1 5.53 7.46 10.1 8.63 5.45 8.01 2.68 8.34 8.43 2.25 3.67 12.3 9.82 6.51 7.54 5.78 9.01 7.86 0 2.12 9.1 8.04 0 7.59 5.68 9.41 8.63 10.7 5.69 11.1 7.56 9.7 7.95 8.88 11.2 9.31 9.67 8.87 10.9 9.58 4.08 11.4 2.59 5.12 10.4 8.67 9.4 10.4 2.37 9.2 10.6 6.27 4.7 4.81 8.19 10.2 2.37 5.37 11.7 10.7 5.62 10.8 10 7.79 7.17 5.62 8.53 10.1 10.7 11.7 9.42 9.34 9.09 10.9 9.03 5.6 11.4 11.2 8.95 1.17 9.33 5.21 10.8 4.98 4.51 4.11 9.28 9.59 11.1 7.95 8.68 11 10.9 8.66 9.21 10.7 11.8 7.28 10.3 8.64 9.98 0.93 10.7 1.81 2.48 7.26 8.44 8.2 11.7 10.8 11.4 9.29 6.42 6.34 7.73 9.1 12.4 1.97 8.58 9.82 8 7.72 6.78 5.12 11.5 8.75 12.5 10.3 1.81 9.13 9.46 7.14 6.75 11.1 9.73 10.6 5.38 9.13 3.16 7.82 9.12 4.79 14.8 8.71 4.37 9.96 4.77 2.86 2.94 7.4 2.12 9.19 9.64 5.96 10.4 10.2 9.43 10.7 9.09 9.86 10.2 9.99 6.98 8.82 4.81 3.35 8.67 9.9 7.85 8.44 11.1 4.53 7.81 10 9.21 11.2 9.17 9.04 9.24 0.5 8.52 9.6 10.5 9.38 8.91 7.02 8.01 0 12.4 9.24 4.24 11.2 11.1 6.91 4.18 3.35 10.8 9.1 10.4 12.6 10.2 9.54 5.81 7.67 11.4 6.91 10.3 10.1 10.3 9.52 9.53 8.39 9.98 7.69 9.19 8.42 12.1 7.12 8.29 9.34 11.6 10.9 8.43 5.94 8.07 4.53 8.85 2.94 8.34 7.45 6.61 9.88 8.46 9.57 7.04 9.18 6.05 2.48 10.4 8.59 9.79 9.43 9.46 7.73 9.11 7.71 9.69 8.81 4.97 8.2 5.33 6.52 5.98 6.19 4.15 6.81 11.1 8.34 6.74 9.49 10.2 8.62 3.89 3.46 6.8 0.88 9.33 7.25 6.13 8.92 7.97 9.83 7.3 8.61 9.85 9.68 9.64 9.01 9.39 10 4.98 9.42 11.4 11.9 10.1 11.4 9.24 1.97 8.98 7.67 9.44 9.34 1.42 10.4 0.5 5.91 7.76 9.55 10.5 9.51 3.02 2.48 7.89 9.97 7.13 7.4 8.39 14.5 9.78 3.41 8.5 11.9 9.79 7.64 5.25 2.68 6.87 5.83 6.92 10.7 7.66 5.81 10.1 9.76 7.67 10.4 8.09 9.82 12.9 6.78 11.3 10.7 10.8 8.72 7.61 10.4 10.6 9.65 8.45 7.81 9.94 10.9 8.9 10.7 10.9 11.6 9.36 11.1 9.99 2.68 9.74 8.48 8.15 9.75 11 10.4 7.41 5.29 10.1 9.94 10.4 8.47 10 9.93 8.32 7.41 7.48 5.55 5.54 9.86 8.23 8.03 7.1 7.13 10.6 11.4 10.2 9.66 3.02 10.1 8.73 12.1 10.9 11.3 10.3 12.1 8.91 1.42 10.1 1.63 4.63 11.5 10.4 10.1 11.6 10.1 10.1 6.35 3.67 8.36 9.67 9.82 11.8 10.7 11.2 8.19 11.4 8.72 6.17 8.92 10.1 8.36 12 12.4 10.1 5.78 7.91 8.78 12.7 12.3 12 8.83 8.7 5.17 6.82 7.8 6.82 10.9 6.32 10.8 10 9.52 13.2 10.7 13.2 10.9 11.5 12.1 10.2 11.3 8.17 6.74 9.9 9.8 12.2 1.97 9.59 9.5 10.4 10.8 8.14 10.9 8.1 9.28 7.5 4 7.11 10.2 8.07 9.61 11 7.57 4.28 9.2 9.05 12.1 11.3 9.21 10.5 9.76 7.82 11.9 10.3 8.52 0.88 9.79 9.57 10.5 2.59 8.34 12.2 10.6 3.76 10.9 7.11 10.2 12.6 2.12 4.77 11.4 11.4 8.97 8.46 9.79 0.5 1.82 1.63 12.2 3.52 5.24 0.88 11.9 11.2 0.88 4.57 10.7 3.62 10.2 10.5 7.8 7.33 11.2 11.8 7.9 12.1 9.87 8.51 5.4 10.7 8.88 10.8 9.9 9.17 10.3 9.83 9.52 10.9 1.49 8.71 9.45 5.98 5.93 0 11.2 6.63 11.1 9.44 9.49 17.2 8.97 9.55 3.09 10.4 4.11 2.48 10.4 0 9.93 8.96 9.3 2.37 11.4 6.67 10.7 11.4 9.93 8.98 12.4 4.4 0.5 7.67 7.79 3.8 9.18 7.38 9.78 5.58 7.79 10.6 0.5 11.2 3.52 0 9.14 12.5 8.03 10.6 9.84 10.9 0.88 9.06 9.04 10.9 9.55 9.86 7.9 9.06 9.03 8.44 3.23 9.94 9.9 11.3 9.62 11.1 8.74 10.6 9.54 11.4 8.81 9.32 11.5 10.2 0.88 8.65 10.5 6.44 6.93 8.86 4.4 10.2 11.5 2.48 6.91 4.55 9.29 1.63 11.8 10.9 9.76 10.6 7.36 10.5 4.53 13.2 10.4 5.07 8.84 3.96 3.41 5.12 7.7 9.04 8.35 1.42 11.4 10.2 8.67 9.72 15.4 15 14.4 13.8 11.3 11.6 13.7 1.97 15.6 7.8 14.1 14.1 13.2 13.6 13.7 12.9 14.2 12.2 15.1 3.02 12.9 12.4 9.47 13.8 13.1 13.3 13.9 13.8 14.2 12.9 13.4 13.7 12.9 14.3 10.7 14.2 14.1 13 8.54 9.07 14.2 8.11 15.3 14.8 13 11.1 10.2 13.3 13.1 13.7 14.8 12.3 14.8 1.42 2.78 4.37 7.3 6.78 14.2 1.17 0.88 14.5 10.8 9.1 10.7 10.2 9.98 13.1 14.4 14.2 13 15.1 14.6 13.3 13.7 12.6 12.7 14.1 13.7 9.74 15 14.8 14.1 13.1 13.4 13.9 12.4 10.1 9.8 13.7 10.4 12 6.58 9.34 12.2 10.6 10.9 10.8 10.3 1.42 7.68 10.7 10.1 7.02 7 10.3 10.3 11.2 6.1 4.88 8.63 4.84 8.43 10.8 13 4.86 10.4 1.63 12.8 8.07 9.25 11 13.3 0 10 7.03 4.45 9.78 10.6 11.7 5.16 8.11 8.17 11.3 9.5 10.6 12.5 9.3 9.16 11.2 10 9.69 4.15 9.62 9.95 9.09 12.2 4.07 8.11 7.71 6.6 2.86 2.86 2.86 1.97 14.2 5.33 3.52 5.14 5.62 9.92 7.37 4.63 8.28 8.64 11 4.11 9 8.62 8.01 5.8 0.5 7.85 11.7 8.88 5.64 8.83 11.2 6.56 3.16 2.25 9.97 1.97 3.46 8.23 11.1 5.1 9.37 8.84 12.4 5.96 3.57 10.2 12.4 10.9 9.09 8.95 10 6.21 8.91 9.72 10.7 9.59 10.1 10.7 8.71 6.01 9.41 8.52 6.8 10.1 10.6 9.46 10.1 8.33 7.87 10.8 8.37 1.63 8.03 9.42 10.4 10 6.39 8.47 3.71 2.12 9.66 8.24 7.73 8.61 8.24 8.64 5.29 10.2 6.74 8.99 7.48 7.63 10.9 8.27 11.2 7.23 10.3 2.78 8.12 9.12 7.8 8.66 5 10.7 8.69 3.52 7.6 4.73 9.31 10.9 8.87 9.9 2.12 14.8 6.78 8.85 5.95 8.06 7.5 4.58 6.38 11 6.35 11.2 7.09 1.81 6.76 8.04 6.04 8.77 8.02 7.91 9.1 7.38 7.5 7.7 10.4 8.85 11.4 9.32 9.11 11.7 8.55 5.95 7.65 6.54 10.8 4.85 4.24 8.99 1.97 10.5 5.99 9.8 2.37 7.13 0.5 13.2 8.98 4.96 7.31 6.94 9.23 11.3 9.86 9.1 10.7 6.11 10.8 5.17 6.33 4.51 7.52 5.19 10.2 12.7 0 8.72 6.8 11.5 10.1 12.9 9.94 8.23 9.58 9.86 9.73 5.21 5.9 11.3 9.48 9.46 11.3 1.63 12.1 9 8.72 10 0.5 0 5.46 2.48 12.6 0.5 12.5 12.7 4 8.19 5.5 8.35 8.34 8.89 7.64 6.75 7.5 11.2 2.37 5.46 2.12 5.86 11.5 4.15 1.17 11.8 9.82 8.91 10.7 11.5 8.75 4.86 11.5 7.24 6.34 10.1 9.86 9.45 10.2 7.72 8.71 8.08 4.21 0.88 2.94 6.45 12 9.34 9 5.03 11 7.65 1.17 2.25 9.23 7.82 8.27 1.42 3.16 9.17 6.89 5.59 6.25 4.48 7.04 3.35 11.4 0 7.18 8.57 3.16 10.7 9.05 1.42 9.51 8.15 4.66 6.99 3.23 5.95 7.93 8.56 7.69 8.15 8.43 7.56 0.5 7.76 3.09 8.1 2.12 9.5 9.3 4.28 8.21 7.51 10.2 10.1 9.53 10.5 8.68 8.52 8.87 9.27 9.17 9.46 9.34 9.4 4.66 8.02 2.78 1.81 3.67 5.39 4.66 5 13.6 3.76 6.25 1.63 9.47 3.84 7.74 7.61 0 11.4 0.88 6.64 2.78 10.6 8.61 4.68 2.25 11.5 4.38 1.42 6 1.42 10.4 9.27 6.82 0.88 3.51 1.81 2.25 11.7 1.17 4.08 5.1 4.18 1.63 4.18 4.63 11.7 1.63 3.41 8.64 7.78 10.2 1.81 9.63 0.5 5.21 2.59 9.91 0.5 7.15 3.29 11.3 3.93 10.5 3.96 5.16 9.07 1.17 1.42 8.34 9.63 10.3 6.25 9.51 1.63 3.02 1.81 1.42 5.51 3.62 8.36 7.51 6.79 6.71 10.2 10.5 13.3 6.17 4.04 8.42 12 3.09 8.56 10.4 10.6 9.12 10.5 10.8 8.37 9.09 4.92 8.92 10.4 9.46 8.84 11.5 9.76 10.8 6.12 9.25 10.5 8.89 8.43 10.1 8.9 10.5 11.9 8.84 8.97 6.9 9.63 12 7.71 10.6 9.42 10.5 9.24 7.67 9.7 8.07 0 10.2 8.71 6.9 7.43 8.84 9.09 8.49 1.63 10.8 12.5 7.46 5.39 9.74 11.7 3.41 8.64 7.04 2.78 9.71 9.57 10.4 10.3 6.66 8.92 8.52 8.07 10.1 4.56 10.8 9.05 9.29 7.08 9.16 9.75 9.11 11.7 9.98 9.24 8.72 8.27 8.39 8.05 9.72 11.1 8.08 3.21 3.57 6.43 8.79 8.46 10.5 4.18 8.35 7.78 8.87 6.98 8.28 0.88 9.78 9.09 7.61 8.21 10.2 8.07 3.62 9.21 6.46 10.1 5.81 8.79 9.98 7.77 10.2 1.42 10 9.34 9.3 9.03 9.97 11.3 8.05 9.24 10.1 8.62 10.3 9.69 9.51 10.7 2.86 8.34 11.8 9.91 10.3 8.42 7.14 7.57 5.04 9.98 9.12 9.42 4.77 5.32 5.85 3.57 10.7 8.56 9.15 3.23 10.1 5.76 5.87 5.1 7.86 6.33 7.77 9.01 9.47 10.9 8.23 9.39 10.7 10.8 3.41 12.1 13.1 9.52 8.54 10.5 2.25 11 9.93 11.9 10.1 12.7 4.68 10.8 6.83 8.28 2.2 5.07 11.1 0 11.1 10.1 5.16 6.54 10.6 10.2 9.66 8.36 7.16 9.1 8.88 8.26 9.46 12.3 10.9 1.97 6.53 11.1 0 5.39 5.46 0 5.83 0.5 3.41 4.77 7.27 2.25 11.2 4.48 5.8 0 1.63 3.57 3.16 10.6 7.42 2.25 7.09 3.46 0 0.88 7.97 11.8 9.7 8.91 9.94 3.84 7.32 5.59 8.88 2.25 9.95 6.67 5.63 2.59 2.25 9.38 2.12 8.14 6.67 4.42 4.95 1.42 10.9 10.4 0.5 1.42 2.25 8.42 6.41 5.46 8.26 0 8.36 7.33 2.37 3.78 3.52 7.3 2.48 2.12 10.3 4.73 5.07 8.83 1.17 3.84 0.5 9.51 0.5 9.64 1.42 6.11 9.77 3.29 8.72 11.4 7.88 8.6 0.88 4.34 9.29 10.1 10.4 10.1 8.83 5.59 1.42 4.21 4.5 6.83 3.71 7.82 10.4 8.69 9.21 9.99 12.5 10.4 13.3 8.35 8.3 10.6 11.4 10.3 8.14 7.02 8.35 11.4 8.58 4.4 7.3 3.76 12.4 6.85 10.4 9.21 9.88 9.6 7.06 8.55 10.3 1.63 5.51 1.63 6.91 10.3 9.36 11.7 11.6 11.6 5.99 8.4 7.64 12.3 2.62 10.5 9.01 9.39 8.87 8.82 10.9 11.4 12 9.19 7.74 5 8.84 8.58 8.54 8.24 9.17 6.47 10.2 12.5 12.2 11.2 9.61 12.5 10.4 10.2 11.2 10.7 12.4 11 10.8 10.8 10.3 10.5 9.7 7.27 7.71 11.4 10.3 9.28 9.53 0.5 11.7 1.81 12.5 7.92 10.9 9.99 12.4 10.3 11.9 10.4 8.96 13.1 7.89 4.98 11 0 3.62 8.7 11.3 9.67 13.6 10.7 7.96 10.2 8.9 10 5.5 15.4 9.37 9.91 9.15 11.8 9.43 0 12 7.16 8.84 13.7 8.99 8.5 11.9 0.5 7.98 12.3 10.2 11.1 10.7 9.72 0.88 11.1 9.86 11.3 12.5 11.1 11.5 12 12 9.5 9.94 7.41 11.4 11.2 11.5 10 11.9 8.38 9.78 11.6 10.9 10.4 11.7 12.2 12.2 11.3 12.3 6.86 9.72 0.5 10.8 10.6 12 13.1 5.77 13.1 10.2 12.3 11.1 13.2 6.04 10.6 10.9 3.29 1.17 1.81 0 0.88 3.71 1.63 2.41 12.5 3.55 0.5 1.97 6.64 11.6 11.1 8.92 9.51 7.44 6.55 9.52 7.92 8.79 8.84 10.2 8.54 4.58 5.21 10.5 10.4 3.89 3.09 8.56 6.87 8.94 9.51 9.49 9.45 10.9 9.75 8.8 6.93 8.31 4.21 13.9 5.09 8.26 10.6 12.1 6.07 12 9.24 9.14 8.17 12 9.19 9.91 9.09 11.4 10.3 6.49 9.63 10.3 2.59 10.8 5.1 1.17 4.42 11.2 8.61 7.41 1.17 4.24 2.94 10.4 9.95 0.88 10.2 8.23 9.89 10.2 8.25 9.38 13.5 7.23 10.2 10.8 9.85 9.84 9.82 9.85 9 7.68 10.7 4.73 2.78 11.2 12.8 12.2 11.2 13.2 10.3 9.74 11.7 7.6 5.68 8.44 10.6 8.74 12.2 9 9.21 8.75 8.18 4.08 5.01 5.63 7.59 10.7 8.32 6.57 1.81 4.21 6.93 10 1.63 0.5 10.7 0 11.2 10.6 9.05 4.53 12.1 7.7 8.81 8.74 8.91 10.9 4.77 12 8.83 9 11.3 10.2 10.6 3.16 9.72 11.2 6.92 12.9 0.5 0 8.65 10.2 9.1 5.42 10.4 10.7 10.3 6.75 12.3 10.5 8.79 10.1 4.73 3.09 8.69 13.8 10.7 5.74 9.12 1.81 9.13 8.67 4.56 9.34 5.07 9.37 10 9.19 9.91 6.16 9.86 11.3 10.2 10.3 6.36 9.53 6.26 13.2 7.48 8.14 10.3 9.28 8.25 10.8 1.97 13.2 10.1 0.88 10.4 6.36 10 10.4 4.28 11.4 1.63 9.54 13.7 13.6 9.13 11.8 4.96 4.61 10.7 2.59 9.01 6.29 0 12.5 10.1 10.5 10.1 7.89 8.31 12.5 13.3 14.2 1.42 11.1 11.4 11.9 8.31 12.5 7.72 9.19 6.42 11 8.14 3.93 12.8 11.5 9.49 9.34 6.22 7.78 16.7 12.8 8.14 7.88 10.2 9.25 9.16 7.88 10.2 9.62 8.63 11.7 15.5 11.5 7.36 6.36 4.84 3.67 10.8 13 12.8 11.6 8.64 11 10.6 1.42 5.39 0 6.31 11.4 5.7 11.1 7.18 12.5 11.7 6.96 2.37 12.7 11.8 8.6 8.62 10.4 11 13 7.4 9.92 11.4 10.4 11.2 2.48 13.9 12.3 12 10.2 12.8 14.2 9.26 9.56 12.1 9.83 14.9 0.64 11.4 8.38 9.65 14.5 9.23 9.43 9.53 8.64 7.6 8.52 10.6 0.5 13.2 11.2 10.9 8.97 5.53 5.86 1.42 2.37 5.43 9.25 9.72 1.42 4.28 5.3 11 8.94 10.4 4.28 9.65 1.42 10.4 11.1 6.99 8.99 7.84 8.41 10.5 10.7 11.3 11.6 9.6 5.45 8.5 9.43 9.94 8.67 9.61 4.56 4.81 5.07 6.79 6.7 9.88 9.82 12.7 4.73 3.52 4.31 5.45 7.17 1.42 8.34 7.61 5.07 6.88 8.66 10.7 4.61 8.45 1.17 3.93 6.34 11.7 7.63 6.85 3.41 6.42 10.1 7.95 4.4 10.1 3.8 6.19 7.93 5.12 1.97 5.55 9.26 7.88 1.17 12.9 4.21 7.13 1.63 5.14 1.17 3.02 6.82 8.72 1.42 9.8 2.37 2.48 10.2 5.51 9.16 5.32 4.82 4.17 8.28 1.75 2.59 5.68 6.92 4.75 5.24 8.42 4.42 6.3 0.88 5.03 6.18 3.76 0.5 7.54 11.3 8.77 6.31 9.06 4 4.56 11.8 6.08 6.05 0.88 8.65 11.5 1.17 6.99 3.02 10.3 6.77 7.7 1.81 4.66 0.88 8.01 9.06 0.5 8 1.63 7.31 5.39 7.18 7.47 8.92 1.81 9.72 1.63 11.2 0.88 13.9 3.71 13.4 14.5 13.3 1.17 9.88 10.6 9.84 8.67 10.7 12.3 10.4 8.49 10.3 10.6 10.4 11.1 3.35 11.3 11.3 10.8 10.6 10.9 9.36 11 10.6 11.8 12.4 8.82 8.65 0 11.2 3.41 10.2 4.48 10.1 8.35 10.1 10.3 9.64 10.4 11.1 8.91 11 10.1 11 8.62 1.81 11 0.5 11.4 11.4 11 10.7 11.3 9.82 8.49 9.95 11.2 10.3 2.86 10 9.97 9.74 10 12 11.1 8 10.3 10.2 12.3 12.1 12.9 12.3 10.2 11.2 10.7 12.1 9.57 6.88 1.81 9.26 3.23 12.9 14.1 6.73 2 8.36 5.01 6.67 6.24 8.98 9.66 7.13 3.52 7.8 11.6 11.5 7.75 10.6 12.6 10.3 8.65 7.14 9.88 9.96 9.29 11.2 9.73 6.99 0.88 5.21 9.64 2.12 3.57 9.63 1.81 8 3.67 2.68 3.89 0.5 7.94 8.46 7.42 10.9 7.36 1.81 1.53 7.16 6.93 9.41 5.24 10.7 3.02 12.2 10 7.16 8.18 6.81 9.66 13.1 6.59 10.9 10.1 12.8 8.73 13.6 13.2 11.6 14.2 7.4 12.5 11.1 5.51 12.1 8.38 9.4 8.87 6.43 8.62 9.5 9.02 9.06 7.25 13.8 7.36 9.13 6.54 4.73 7.65 7.01 7.23 4.69 5.87 7.77 8.79 9.37 7.42 10.8 8.12 5.62 6.14 8.32 9.4 8.66 7.38 9.5 8.1 7.5 8.13 7.82 5 8.38 5.95 7.13 4.08 1.17 3.52 7.02 9 7.69 7.74 9.54 6.17 2.96 9.14 4.86 8.64 7.31 5.03 0.5 0.5 5.8 7.63 4.13 12.1 7.28 3.71 3.8 1.81 1.97 7.12 3.09 7.92 9.55 5.01 8.27 8.49 4.84 7.46 3.23 7.28 8.94 7.79 5.62 9.72 8.52 9.33 4.34 11.8 10.9 10.6 9.4 9.35 5.24 7.21 0.5 10.5 5.98 10.8 7.21 5.76 5.99 4.8 3.09 7.69 8.38 8.19 8.54 4.4 7.91 9.72 8.69 7.72 8.63 7.42 10.2 7.1 7.67 6.99 7.67 11.9 2.94 5.58 8.62 2.37 6.75 11.6 9.81 6.78 7.42 6.66 8.29 2.37 8.36 6.96 3.02 6.81 7.44 8.15 7 3.02 1.63 5.53 8.07 7.62 4.88 12.6 10.3 11.1 13 7.27 11.5 9.4 12.5 4.31 13.9 8.68 11.2 7.69 3.76 11 11.9 9.22 9.84 10.7 9.14 13 7.01 4.11 7.18 7.76 11.6 8.05 4.86 8.81 10.1 9.25 6.78 9.71 10 11.3 13.6 7.85 5.07 10.1 2.78 7.61 9.11 4.42 5.21 7.94 10.3 9.18 8.18 9.9 0 6.1 9.09 11.6 7.85 9.86 11 8.12 9.88 9.12 4.98 8.63 7.99 9.56 5.77 10.7 10.6 7.67 8.77 8.32 10 9.51 1.81 13.7 10.2 8.21 7.6 9.1 10.7 9.61 10.4 11 6.31 7.99 11.6 6.25 9.79 7.66 9.58 10.8 9.38 8.9 8.7 9.32 7.71 10.7 9.47 9.97 7.29 8.32 7.74 11.5 7.34 8.4 9.34 6.83 10 9.19 10.7 10.1 10.2 8.67 6.64 9.68 8.69 7.52 5.96 6.55 8.99 8.4 9.32 7.66 8.95 10.1 10.5 12.1 8.78 7.7 8.95 8.08 10.8 11.1 9.18 9.71 10.1 10.7 9.16 8.95 6.56 6.84 9.2 5.74 2.95 7.02 10.3 9.6 8.7 11 9.02 13.4 7.53 7.04 1.63 7.16 9 12.4 7.58 10.9 8.19 3.29 8.98 8.35 6.79 8.87 7.8 8.55 11.8 9.65 9.34 5.43 11 12.7 8.22 9.51 11.8 8.99 6.64 7.62 2.2 9.19 4.98 7.48 2.37 10.6 5.36 10.9 8.56 9.34 4.24 4.31 6.44 6.7 3.09 7.21 7.29 10.2 4.75 7.46 10.4 8.83 8.24 3.62 9.55 7.18 9.45 6.38 2.68 3.76 2.38 10.7 8.15 7.35 3.46 9.37 11.9 8.43 7.22 9.09 10.1 10.3 4.53 8.32 10.1 11.7 9.53 10.3 9.02 9.63 9.92 8.36 7.65 9.37 11.6 9.13 6.78 8.12 3.23 6.75 4.98 7.61 8.19 10.8 6.23 9 8.49 9.55 9.13 6.2 5.9 9.78 4.56 6.55 6.39 9.06 5.94 7.17 8.52 5.27 8.43 7.12 8.37 7.61 5.83 9.94 9.1 2.25 8.98 10.7 9.03 8.26 9.19 10.3 10.1 8.22 9.75 7.13 9.85 8.67 8.05 9.43 6.54 8.69 9.91 10.7 9.43 4 8.53 8.4 9.22 8.71 9.93 5.47 4.86 8.48 8.27 9.69 9.73 10.5 6.82 6.86 8.87 7.09 8.09 10.1 10 9.56 9.38 7.28 3.89 8.41 9.39 9.13 5.9 9.61 9.06 7.99 12.1 8.29 11 8.25 6.55 7.61 9.06 9.85 11.7 10.3 10.3 0.5 8.17 9.24 6.86 9.56 8.49 5.62 5.1 8.12 6.49 8.46 9.37 7.38 8.57 4.77 0.88 7.37 7.33 8.36 4.28 0.5 9.82 3.02 9.96 9.26 8.33 10.4 9.23 6.59 8.4 7.15 8.87 8.74 9.79 8.78 9.08 9.36 6.54 6.97 8.63 6.27 10.5 7.51 8.52 7.05 0 6.31 10.8 7.75 2.25 7.02 11.5 9.62 10.5 9.59 8.08 8.53 8.09 6.39 8.11 1.97 8.77 9.12 8.44 8.46 7.01 11.1 8.98 10.4 2.94 7.11 2.48 9.78 7.31 5.51 9.02 4.58 7.61 6.46 4.84 7.6 9.59 9.14 8.28 6.42 11 7.7 9.39 5.35 10.7 5.66 6.95 8.76 7.61 4.7 5.63 3.57 2.94 8.55 5.9 7.24 8.18 0.5 9.31 9.32 0 4.66 7.69 1.81 6.36 4.66 6.87 8.76 5.96 6.67 7.53 8.64 8.57 11.1 4.56 8.22 9.31 7.01 8.68 5.9 10.6 10.5 6.48 8.62 9.63 8.14 9.3 7.76 8.59 8.59 9.52 9.23 5.53 10.7 10.6 9.52 6.39 7.57 8.87 6.69 10.7 10.3 10.2 10.1 5.24 5.53 1.63 9.98 8.57 7.8 8.43 4.79 8.53 10.4 7.66 1.42 9.19 7.09 2.68 6.23 6.2 7.1 5.93 10.5 2.12 9.53 4.84 4.08 11.1 11.3 3.67 7.48 7.44 2.98 9.68 0 4.77 10.2 3.84 9.33 5.83 8.22 8.75 8.71 8.86 4.27 10.9 5.09 8 7.43 10.4 1.97 5.73 10.8 8.67 8.71 7.85 9.74 3.29 8.74 7.64 9.08 8.57 3.09 6.79 3.41 13.2 3.41 3.02 8.59 10.4 7.78 8.54 7.58 8.6 8.27 10.1 10.3 8.14 9.1 9.03 9.83 7.65 9.97 8.54 7.42 9.4 9.53 9.01 8.66 7.57 3.46 0 6.14 4.53 8.96 5.62 8.78 0.9 5.43 2.94 1.81 4.72 10.4 11.9 2.78 8.25 7.46 5.22 7.65 0.5 9.16 6.21 6.48 4.7 7.41 6.73 9.88 7.1 9.7 10.1 11.7 10 10.9 10.1 8.35 6.42 8.66 10 10.5 11 6.43 8.84 6.7 9.19 5.6 8.51 9.72 5.82 7.46 10.7 9.5 9.05 8.1 9.67 8.52 8.38 9.89 8.99 8.21 1.17 10.3 9.04 10.7 9.43 10.3 10.8 10.4 8.36 9.96 9.52 9.26 3.35 12.4 8.94 7.12 9.69 11.1 7.72 8.13 9.85 9.96 4.63 11.5 10.4 6.04 6.33 2.12 9.87 8.63 8.31 7.08 8.35 6.63 7.25 9.84 8.36 8.79 10.6 9.6 2.12 11.1 8.85 4.34 6.95 10 9.97 5.35 8.66 10.2 9.65 6.01 10.6 11.2 6.94 8.12 6.34 6.14 7.76 8.94 5.89 4.7 8.02 8.99 3.23 9.88 9.11 6.02 7.63 5.62 11.6 5.33 4.31 11.4 8.58 6.01 7.43 6.58 10.1 7.17 9.37 11.2 10 2.25 10.4 5.17 9.59 10.4 6.66 12 8.11 12.9 9.91 7.62 9.45 11.2 4.75 9.84 4.45 6.11 9.54 6.06 4.9 12.1 8.1 11 7.42 8.74 1.63 2.25 4.37 8.38 7.6 7.46 9.75 4.15 7.51 5.64 7.34 6.31 10.4 8.36 7.3 8.47 10.1 8.5 7.49 9.96 6.49 11.6 12.8 9.66 12.4 11.2 12.5 8.57 9.09 8.53 5.89 8.74 7.07 10.1 10.8 10 9.67 10.1 0.5 11.2 10.1 9.01 11.2 8.46 10.2 4.57 4.52 6.27 2.81 12.4 9.39 9.01 11.5 7.26 2.59 11.7 13.8 7.28 2.59 1.63 9.25 5.55 7.9 10.1 9.57 11.6 11.6 14.8 2.68 9.3 3.93 6.31 4.31 12.1 12.4 9.44 5.83 4.18 11.3 12.7 9.54 8.4 5.96 6.33 3.71 2.12 11.4 4.24 8.72 9.2 8.27 12.2 10.1 5.47 8.37 9.24 7.93 10.7 6.67 10.2 9.58 10.2 9.1 9.88 9.32 8.25 8.8 9.54 9.9 12.7 8.34 8.42 7.09 9.2 8.92 8.8 8.84 8.84 3.71 9.23 6.21 6.56 11.1 9.66 11.1 10.1 9.8 9.94 9.41 9.48 11.3 10.1 8.99 0 7.26 11.7 11.5 9.2 5.21 9.51 8.52 8.54 9.77 4.23 10 11.7 11.2 11.1 11.2 9.14 6.18 5.64 8.51 0 8.89 8.69 0 10.9 9.39 4.68 9.31 6.39 8.22 7.52 7.52 8.5 9.32 8.89 9.53 8.11 9.37 9.57 8.76 7.67 10.2 2.14 9.42 6.58 10.2 9.89 6.14 9.56 10.2 12.1 11 6.45 7.92 12 10.1 9.39 0.37 8.58 8.62 4.56 10 8.86 7.51 10.7 4.4 7.77 5.81 8.43 9.64 3.71 10.1 10.3 8.74 10.1 13.8 7.62 10.1 6.17 11.1 8.85 1.63 9.13 8.36 9.65 7.91 12.4 7.57 11.1 11.9 11.3 10.8 11.9 12.2 6.5 12.8 10.1 7.44 10.3 7.05 8.87 9.24 0.88 7.37 0.5 11.9 12 8.87 5.51 9.4 1.17 11.4 10.9 12.1 10.3 4.21 11.5 8.76 9.71 7.49 10.9 9.65 8.24 9.64 12.6 6.07 9.88 8.15 11.3 9.75 6.64 3.93 1.63 10.2 2.12 1.63 0.88 7.04 1.81 6.73 3.71 2.78 5.29 8.42 1.81 2.86 2.12 6.6 2.68 1.42 9.85 2.12 10.4 12.3 10.8 8.47 7.45 3.76 5.42 4.28 9.77 7.46 2.25 7.83 8.88 7.82 7.73 8.14 4.18 5.27 8.89 8.4 8.2 0.88 7.86 9.86 10.6 5.86 10.5 0 3.68 2.86 2.78 4.84 1.42 8.81 8.63 9.02 8.36 6.12 8.56 8.77 3.67 9.28 0 2.25 2.59 0.5 9.34 7.13 3.57 11 6.99 7.1 9.24 10.6 2.25 8.32 10.1 10.8 9.8 8.1 0 5.22 9.28 12.3 9.13 2.48 7.34 10.1 8.45 7.96 6.35 4.18 1.63 2.94 10.5 1.97 9.26 11 8.08 2.59 8.26 9.48 8.64 3.02 9.96 9.94 0 5.12 9.13 9.53 5.51 8.59 9.09 8.09 5.42 9.99 11.7 9.09 5.44 0 6.42 9.89 6.54 7.15 10.2 10.2 10.8 6.16 9.87 9.72 3.16 8.81 7.56 10.6 9.32 8.87 1.63 4.24 5.24 7.26 1.63 1.81 9.87 6.12 7.71 9.22 7.6 7.35 8.37 10.8 9.15 9.11 3.23 3.71 9.12 4.04 9.72 1.97 3.67 0 3.71 2.68 0.5 0.5 1.63 8.34 11 9.24 7.3 9.51 10.1 8.61 9.03 9.29 3.71 11.8 10.7 8.52 9.01 6.46 2.78 1.97 8.18 2.25 7.41 10.9 7.96 8.76 4.21 9.78 11 9.88 11 8.65 1.63 7.71 5.16 0 11.9 9.51 8.77 10.7 9.85 10.5 9.61 10.9 10.3 1.81 7.99 6.58 7.78 7.52 7.41 7.74 10.9 8.78 1.42 9.37 9.72 9.3 7.11 5.99 14.8 3.67 5.62 1.42 2.78 4.24 6.37 10.3 11.3 6.13 9.9 6.07 5.22 8.84 9.9 1.17 8.79 6.61 1.81 7.52 7.36 4.34 7.47 9.55 7.89 8.47 7.94 10.2 9.19 7.96 8.59 9.85 9.14 8.67 7.12 6.95 6.61 6.55 10 8.48 9.43 9.16 9.5 10.6 4.42 9.8 7.41 10.7 9.85 7.73 12.9 9.98 9.32 10.4 7.77 6.27 6.09 7.61 11.4 8.22 8.68 9.57 10.2 4.11 0.88 7.09 9.88 9.72 10.1 6.54 8.35 7.01 7.56 1.63 7.79 3.76 8 5.4 7.69 3.29 11.4 7.41 5.95 5.38 0.5 8.62 11.1 11.1 8.25 7.95 3.8 8.13 10.1 9.53 9.85 10.3 11.3 1.81 11.4 7.3 6.52 4.96 8.64 10.1 9.33 3.29 9.59 9.2 9.55 9.88 8 6.23 8.68 8.39 6.13 9.33 8.12 9.78 7.72 10.8 9.39 9.03 9.11 8.85 7.51 8.33 4.24 7.34 11.4 9.68 5.54 9 8.21 9.32 8.72 7.78 9.07 5.74 8.63 5.25 7.33 10.2 8.91 10.6 9.81 9.71 10.2 7.39 10 6.56 8.47 8.74 8.55 9.2 8.49 7.83 8.33 2.48 9.61 10.2 7.31 10.8 7.68 7.88 9.13 9.3 8.63 10.4 9.6 10.8 10.3 8.8 5.57 7.86 9.14 7.94 7.77 5.74 9.5 8.22 10.7 9.49 10.2 7.39 9.55 8.72 10.3 1.17 7.08 11.3 10.1 7.56 10.3 9.27 8.98 3.89 10.5 1.17 9.18 7.77 10.2 8.04 5.09 8.59 6.91 8.1 9.38 8.67 10.7 10.3 6.45 9.89 8.59 7.84 10.6 10.1 7.99 7.35 8.76 5.85 9.49 5.81 9.05 7.67 1.63 2.25 7.07 3.64 10.4 9.67 10.6 2.78 3.09 5.88 10.4 8.72 9.03 9.47 10.3 6.88 4.92 3.89 10.8 6.65 9.11 7.41 7.87 8.04 9.72 9.74 10.8 5.05 11.1 5.32 7.33 9.67 7.08 9.56 9.29 10.9 9.29 8.44 8.86 2.78 9.27 10.3 9.41 4.34 9.1 5.98 3.96 11 9.63 9.35 5.73 5.65 1.63 11.3 8.65 8.95 5.83 11.5 11.6 9.48 1.17 3.71 7.22 9.48 10.3 5.57 10.3 8.15 10.8 4.08 2.86 3.67 1.63 9.48 10.1 9.07 10 11.4 3.93 7.83 0.88 10.6 8.77 2.8 7.35 7.54 11.5 1.81 4.51 6.13 7.64 2.37 3.96 0 10.5 8 2.68 3.93 9.32 9.25 9.95 7.53 1.97 10.8 9.09 8.22 6.59 12.4 7.14 11.4 10.3 5.03 1.17 12.1 10.5 8.39 7.49 7.92 7.76 9.9 6.53 7.89 8.97 5.32 2.12 7.69 7.76 8.31 13.5 5.86 8.83 6.87 4.53 11.3 9.17 3.67 7.72 4.94 4.68 8.47 9.95 8.99 5.51 3.84 3.89 7.61 9.61 7.72 9.59 7.58 12.6 5.4 7.84 10.7 9.01 7.16 9.16 9.1 5.05 9.05 0.88 7.25 9.55 3.35 7.03 5.58 8.73 8.94 8.37 10.2 7.11 7.41 8.41 9.2 7.53 10.2 3.16 7.71 6.95 10.1 8.88 8.6 7.12 9.13 8.65 9.12 11.1 9.77 8.85 0 8.54 10.3 6.68 8.31 9.67 8.93 9.04 9.22 9.52 6.48 9.41 9.02 7.66 7.06 10.2 8.9 8.85 9.49 3.16 9.06 5.42 9.82 8.87 9.96 9.31 10.7 9.27 7.27 8.33 9.7 7.26 8.84 10.5 9.2 5.7 8.04 9.11 8.74 8.93 9.36 8.45 9.12 7.91 9.37 6.63 7.61 8.7 1.81 8.33 10.2 7.53 7.77 11.9 10.2 11.2 8.98 6.84 8.68 9.77 8.78 9.76 6.47 10.7 1.72 7.25 8.74 7.2 9.02 6.54 6.48 7.32 9.68 8.38 9.32 6.9 2.68 10.9 6.85 1.63 6.79 6.1 8.85 9.66 9.57 1.44 3.23 10.7 10.5 10.1 6.15 10.2 4.75 4.11 8.79 0 7.61 8.65 9.24 9.12 8.51 8.01 10.5 10.9 7.63 6.66 9.73 8.67 9.67 8.68 8.87 7.98 10.1 11.4 8.94 6.36 3.29 8.11 4.7 4.04 9.32 9.93 10.9 10.4 1.81 9.43 2.37 8.3 11.5 8.02 9.26 5 0 7.29 0 9.74 8.31 12.7 9.54 8.13 1.07 8.77 0.88 0.88 10.4 6.71 8.66 4.68 8.96 9.02 7.05 8.32 8.95 8.98 8.56 2.86 9.5 4.15 3.8 10.1 9.83 10.7 11.3 7.9 10.5 9.58 10.9 5.22 8.56 7.09 2.12 7.6 9.63 3.62 11.8 11.7 10.4 8.5 8.87 9.99 10.4 1.97 9.46 5.82 10.4 10.3 9.89 9.44 3.8 11.8 8.93 8.12 8.12 9.91 9.68 10.8 7.3 7.58 10.1 10.2 5.38 2.27 11.1 6.14 3.29 7.7 8.82 6.23 12.3 4.98 9.59 3.26 4.08 13.4 9.49 7.8 6.96 2.25 8.92 8.49 10.3 11.3 9.79 5.33 11.5 11.3 10.3 10.2 9.14 9.63 11.6 10.2 11.1 9.68 9.86 9.06 5.79 7.35 9.68 8.11 11.7 9.18 5.53 4.11 11 9.42 8.99 8.71 12.3 6.33 8.07 11.3 9.21 10.4 10.7 10.2 10.7 4.11 1.81 10.1 5.51 8.93 9.48 10.3 12.8 8.94 5.43 6.67 7.84 9.06 5.89 9.82 10.1 9.65 8.31 10.1 10.2 10.4 3.16 9.67 2.68 9.09 9.59 6.7 9.84 9.17 10.4 9.76 9.1 8.86 11.7 9.83 8.74 9.59 12.7 13.1 7.89 12.6 11.6 11.7 12.3 12.4 11 9.32 4.18 11.2 10.8 8.24 10.3 6.36 8.96 11.1 9.3 8.97 11.9 11.8 10.6 8.18 10.2 7.59 9.47 9.49 5.07 12.6 6.33 9.73 10.3 10.6 7.61 9.17 3.67 0 12.3 7.4 8.06 8.22 10.2 7.71 11.4 11.6 10.1 10.5 11.6 11.2 9.02 8.62 12.6 10.7 10.3 10.5 10.5 11.3 4.18 9.86 7.14 6.89 2.48 8.82 8.24 13.8 4.34 11.4 2.68 1.42 11.4 11.4 11.2 15.9 8.91 12.1 12.3 9.89 11.3 9.17 8.3 9.35 10.3 9.22 11.5 10.8 6.73 8.18 5.98 10.3 6.13 5.24 3.02 4.4 8.21 8.19 7.81 4.37 11 7.59 8.88 9.55 2.78 5.82 9.26 10.3 8.96 10.7 9.58 5.1 7.37 3.46 0.5 10.1 8.62 4.11 11.5 10.1 3.16 9.52 7.63 3.41 7.27 5.69 9.5 1.63 12.2 11.2 10.5 6.31 8.49 6.95 11.2 8.75 9.06 10.3 10.5 6.19 7.96 8.97 10.3 3.09 8.54 10.9 9.98 7.21 6.12 12.4 7.78 7.67 9.46 3.02 3.57 11.2 1.17 8.08 10.6 8.15 7.89 8.22 7.6 7.79 10.3 9.31 10.5 10.1 10 8.58 7.46 10.3 13.8 10.8 11.2 9.68 9.62 10.2 11 11.3 11.2 11 9.39 9.61 9.23 8.74 11.3 11.3 11.4 10.3 10.1 9.79 10.9 2.37 10 7.26 11.8 7.76 9.53 10.6 7.43 0.5 10.7 7.48 3.16 6.8 9.36 4.31 11.3 8.66 7.84 11.3 11.6 10.3 6.04 4.45 2.22 10.3 10.9 10.8 9.22 9.56 10.1 3.85 10.5 9.01 8.69 6.71 12.2 8.57 10.3 3.09 2.48 4 12.2 3.57 7.68 9.97 10 10.3 3.84 4.86 9.94 8.75 7.5 6.36 11.6 11.8 8.61 5.72 2.68 5.12 3.35 6.56 9.18 7.53 8.25 7.71 11.2 9.01 7.83 4.04 10.7 6.88 7.71 5.14 3.19 1.97 2.06 5.81 7.66 6.29 9.06 9.83 6.78 9.79 7.85 10.3 11.7 6.79 0.5 11.8 9.32 10.2 9.08 8.91 7.77 7.94 9.96 8.57 6.49 1.97 5.19 9.84 11.3 11.2 6.83 6.54 6.89 8.57 5.19 9.61 8.65 1.81 10 10.4 9.62 0.5 9.55 8.33 8.08 5.74 7.3 7.51 9.72 12 10 8.89 9.6 7.73 7.84 11.7 3.57 6.92 6.89 10.6 7.48 0 1.17 4.61 9.39 10.2 11.3 0.5 5.79 3.57 3.57 1.63 8.4 11.3 8.59 7.12 8.62 10.2 8.22 1.42 4.86 5 6.39 5.54 0 5.73 7.8 6.88 8.97 8.51 9.67 8.85 10.2 8.24 8.13 10.7 10.5 8.95 10.7 8.48 9.54 5.42 10.3 11.5 9.3 9.5 12.7 8.32 7.61 7.79 6.39 10.1 1.42 9.77 9.51 9.16 8.03 5.12 9.37 7.09 7.76 9.73 6.39 5.23 7.73 9.86 8.91 11 8.4 5.91 8.49 9.94 6.16 8.73 3.02 2.59 7.9 5.14 8.92 10.9 8.04 8.68 8.27 6.83 7.44 7.85 10.3 2.59 9.3 4.56 5.09 8.09 4.68 9.48 7.67 9.95 9.39 1.91 7.89 4 4.58 5.19 10.3 7.27 9.27 12.8 5.33 9.45 8.74 7.7 5.25 9.93 9.99 8.09 11.5 8.97 6.75 8.98 8.27 9.17 7.84 9.01 10.9 9.97 10.1 9.29 6.83 8.66 8.82 9.68 6.43 10.8 4.73 8.55 5.94 7.64 10.9 10.3 10.8 10.2 10.3 10.2 7.42 11 3.76 8.45 9.29 8.72 9.39 5.38 4.15 10.4 10.6 9.24 10.3 3.23 9.11 7.92 9.03 10.3 8.05 6.95 8.27 8.64 6.74 0 3.52 5.68 5.53 6.85 5.42 11 11.2 8.72 10.1 10.5 2.59 10.3 9.91 8.94 10 9.98 9.28 4.31 10.3 11.4 11.6 9.99 7.78 8.95 4.28 10.4 7.82 9.85 8.69 0.88 7.11 9.24 9.06 10.8 7.43 11.6 10.4 6.78 8.59 8.84 9.56 9.74 5.12 10.6 6.5 4.79 8.04 13.8 6.1 9.71 7.57 3.09 8.52 11.6 10.1 9.52 8.24 8.94 7.02 9.72 6.37 6.7 6.02 8.97 8.76 9.36 8.69 10.1 10.6 6.72 9.37 8.77 8.85 10.2 6.25 9.15 7.49 8.43 10.4 7.98 7.46 8.72 7.91 2.59 11.2 7.83 10.7 14.4 7.89 8.73 11.7 9.04 7.96 5.65 8.61 4.18 7.84 4.84 6.32 10.5 9.93 6.98 6.43 6.64 3.23 10.2 8.74 8.33 9.87 8.82 10.3 7.36 2.25 10.7 6.23 8.9 8 10.9 7.51 6.78 8.12 8.07 9.16 8.4 8.05 11.7 11.5 5.94 6.75 9.97 3.52 4.56 6.9 7.96 0.5 8.97 3.76 8.98 9.76 7.21 2.86 5.36 7.92 10.8 2.48 8.91 7.72 7.4 8.88 11 10.2 8.5 7.09 8.07 11.2 9.58 6.31 7.12 8.26 9.25 7.91 9.45 7.56 10.5 7.12 12.1 8.98 10.6 3.8 8.98 9.02 11.3 9.77 11.6 9.06 8.33 12 5.1 8.56 0 7.98 8.46 7.09 7.46 5.73 0.5 5.72 5.14 5.94 5.57 0.5 0 8.09 11.3 3.84 9.54 10.7 10.7 11.2 9.61 4.41 6.97 8.98 8.25 12.2 8.3 10.1 7.55 10.2 10.7 8.74 7.41 8.79 9.05 2.37 9.24 9.14 3.96 6.02 10.8 6.95 1.17 10.4 8.22 7.39 8.89 9.23 4.61 10.1 7.63 7.41 5.33 10.7 9.29 3.52 7.19 8.98 7.05 11 10.4 12.6 9.29 10.1 9.6 9.04 7.59 10.6 9.14 10.7 10.3 9.11 4.31 9.02 10.4 8.68 8.38 8.73 9.23 9.83 12.6 10.6 9.07 6.31 11.1 13.3 7.69 4.53 11.4 9.03 2.86 8.74 3.89 9.62 11.2 11.2 7.1 9.36 9.37 7.13 8.25 9.23 5.19 11.8 10.8 5.05 1.42 8.85 8.27 8.06 4.81 7.14 1.31 7.35 7.5 8.28 8.1 6.94 4.18 6.32 6.07 9.52 7.92 2.12 7.79 10.2 9.74 9.65 10.9 6.02 6 8.5 10.9 9.22 10.2 10.4 11.9 9.02 9.63 9.94 1.97 11 8.84 9.7 11.2 9.01 5.55 9.94 8.72 11.3 8.13 4.04 10.4 9.48 9.29 10.2 7.58 9.81 11 9.28 0 12.4 10.3 9.68 7.08 2.59 10.4 13.9 0.88 9.15 8.47 10.3 7.87 10.3 7.02 6.78 4.04 8.58 7.61 5.38 8.41 10.5 11.6 8.12 2.12 12.8 7.9 8.73 7.94 4.08 8.37 9.65 3.09 4.81 1.82 8.87 8.93 10.2 10.5 4.28 10.6 9.38 9.65 8.7 11.1 10.8 8.45 7.75 10.4 3.84 9.7 2.63 6.28 0.5 7.39 0.5 10.6 9.07 11.8 3.57 7.65 8.74 10.2 1.42 5.45 6.7 8.32 9.01 7.32 9.33 11 7.5 9.32 7.31 5.32 7.9 11.8 4.11 12.2 4.53 6.79 7.82 10.2 7.43 10.7 11 1.17 9.07 7.25 6.03 10.5 9.33 10.9 9.22 9.35 7.77 9.33 9.89 7.41 4.61 8.19 2.48 10.7 11.9 3.41 12 8.37 8.55 6.58 9.54 9.69 11.4 6.83 8.85 9.51 9.98 4.81 4.48 4.18 5.45 10.9 3.93 9.7 6.1 9.16 9 8.25 7.61 11.3 13.2 10.9 7.22 11.7 5.95 6.23 8.68 6.94 9.17 9.87 7.08 7.62 8.29 4.28 9.13 9.16 7.66 10.5 10.7 6.19 10.2 9.19 10.7 7.25 9.75 10.1 9.12 8.13 8.84 6.24 7.24 4.53 6.08 7.6 8.73 6.56 8.12 10.2 10.8 11.4 9.89 5.54 9.17 4.18 1.63 9.11 12.2 12.6 7.45 9.95 7.33 9.69 9.07 9.12 10.4 9.63 1.81 2.94 11.5 9.31 4.84 9.94 6.61 11.3 8.89 9.83 10.7 10.4 9.61 10.6 11.7 9.97 10 7.27 10.4 9.02 9.8 8.81 7.92 9.55 10.6 11.3 1.97 8.87 9.42 2.12 8.09 8.96 8.61 10.6 10.5 10.8 9.13 8.63 10.7 12 9.58 10.2 10.1 7.46 8.86 11.7 10.1 10.7 7.79 9.33 6.76 10.3 9.99 8.12 8.68 11 10.4 9.49 9.81 11.6 8.67 11.7 8.75 6.73 8.67 12 11.3 4.4 9.15 10.6 8.68 3.8 12.5 9.17 12.5 11.7 9.43 7.69 8.62 11.3 7.51 10.7 12.7 10.8 6.83 12 8.92 7.42 11.8 5.24 10.3 1.97 9.79 3.76 10.2 11.1 6.3 7.32 10.5 9.22 7.38 9.16 10 10.4 12.6 12 11.7 8.38 10.3 9.81 9.67 6.51 7.56 9.75 8.17 10.2 10 9.91 9.24 10.8 10.3 9.06 11.9 14.2 14.4 9.9 11.3 10.2 8.03 10.9 6.8 12.2 13.3 9.86 3.57 10.4 9.87 9.32 9.86 10.1 9.1 10.5 10.9 11.7 8.91 10.7 10.4 9.3 11.9 11.3 8.87 10.4 12 7.53 11.7 8.99 8.61 9.63 10.4 10.4 10.4 11.3 3.46 6.22 4.73 9.64 10.3 8.83 12.8 10.3 2.37 8.95 1.43 10.6 5.57 9.37 9.77 8.74 5.01 10.1 3.71 9.54 8.6 16 1.83 4 9.15 9.1 8.47 8.92 9.26 7.87 9.91 9.75 8.56 11.1 7.99 9.67 11.5 6.58 8.87 9.88 5.49 12.3 8.29 9.33 7.71 11.2 8.14 10 8.89 12.8 6.61 5.77 7.64 7.51 8.68 10.9 8.26 10.8 6.44 11.9 9.94 7.63 8.92 11.3 9.31 8.52 11.3 9.62 9.57 11 11.8 11.7 11.3 10.9 9.38 10.1 4.45 11.5 9.39 12.6 9.5 11.5 10.4 7.86 9.58 11.1 9.17 10.7 11.9 11.3 12 10.9 4.34 10.8 11 5.78 10.6 12.7 13 9.81 12.9 10.2 0.5 10.9 9.83 9.51 11 8.88 9.95 9.77 11.1 10.1 9.04 10.3 11.1 7.7 10 7.96 10.3 6.94 9.81 4.98 10.1 10.3 9.06 4.6 9.06 4.42 7.96 9.41 9.51 10.1 5 9.33 9.37 9.31 9.04 8.29 9.56 6.39 8.24 8.2 8.77 8.87 8.01 7.84 5.14 10.1 9.13 10.7 7.47 10.1 11.6 7.59 6.61 7.78 10.3 11.2 10.2 10.5 9.88 11 9.86 10.1 10.8 11.8 10.3 10.6 10.4 8.94 9.36 9.66 11.9 7.43 9.74 8.33 11.5 10.2 11.5 5.47 10.6 9.78 9.46 9.03 10.5 12.5 7.64 10.3 7.68 6.32 12.2 10.9 10.7 9.31 8.46 9.12 11.9 10.3 10.7 9.1 7.76 4.45 9.94 4.68 11.3 10.9 12.3 11.2 6.98 11.9 10.6 10.1 9.82 9.05 10.8 11.5 9.13 10.9 8.4 10.8 10.3 4.15 9.74 8.7 8.36 8.02 11.5 10.1 1.97 6.96 7.17 10.6 9.57 7.75 12.9 9.98 6.94 9.86 4.04 6.07 6.58 7.25 10.2 11 9.32 11.4 9.53 1.97 3.8 11.8 10.9 11.1 10.2 2.74 11.6 9 10.5 9.87 10.1 12.5 9.59 8.77 5.68 8.46 12.1 9.59 11.4 12.1 8.96 11.6 2.78 11.2 8.98 9.27
+TCGA-75-7031-01 4.19 7.47 6.89 8.42 6.45 9.3 1.05 4.19 3.27 2.67 4.25 9.86 4 2.08 7.15 8.17 10.7 9.88 10 9.87 8.87 6.6 10.6 2.67 9.57 8.21 3.7 9.91 6.26 7.57 2.9 6.4 2.9 0 3.8 1.08 1.05 5.9 0 3.8 5.53 3.26 4.74 1.05 7.2 2.08 0 5.1 10.7 7.98 2.9 7.24 10.2 10.2 6.03 2.9 6.38 0 6.15 8.78 7.03 5.63 7 5.57 2.08 2.08 5.64 6.01 10.1 3.75 4.69 5.34 5.56 4.96 1.66 2.9 5.95 6.95 4.44 0 3.55 5.26 3.38 5.17 5.88 1.66 6.76 7.26 2.67 3.09 9.45 4.56 7.05 5.27 4.74 3.26 1.05 0 5.27 6.35 2.67 4.27 1.05 5.52 5.16 2.9 7.92 9.33 7.39 3.9 2.08 1.05 8.56 6.06 5.63 4.35 1.14 4.35 0 6.1 4.69 6.06 0 3.42 3.8 7.27 1.66 1.05 2.41 11.5 1.87 4.56 3.68 7.43 1.66 2.08 4.35 1.05 4.26 7.97 8.28 9.6 1.66 5.15 4.8 11.5 1.05 12.7 2.41 1.05 4.51 1.05 7.75 9.4 11.6 3.68 4.49 4.19 8.92 2.41 6.44 7.12 6.59 0 8.93 6.56 7.5 4.56 7.84 5.56 9.93 9.1 3.9 4.19 3.9 3.55 3.55 6.03 7.56 2.68 6.23 7.5 3.55 4.86 3.71 2.42 2.67 0 10.2 6.67 8.51 8.8 4.49 4.27 4.27 7.27 4.49 8.39 8.08 8.29 4 9.5 8.28 10.8 7.3 7.57 5.01 10.2 9.95 10.8 6.15 10.2 10.8 10.4 9.89 9.64 10.9 10.5 6.56 10.2 9.06 9.44 11.3 10.7 9.49 8.57 2.9 11.1 8.74 12.9 8.47 3.42 9.81 9.88 8.22 7.3 10.5 5.31 8.89 3.68 8.76 7.21 11.9 12.1 12.2 12.3 12.1 12.4 6.92 12.9 8.94 5.78 5.15 10.3 9.48 10.4 10.1 11.9 0 11.7 7.03 10.4 9.56 10 9.13 10.1 5.35 10.7 10.7 10.5 8.28 6.48 10.9 9.5 11.5 9.19 6.95 13.1 11.6 10.3 13 12 10.6 7.66 10.7 11.6 10.6 10.8 11 9.6 5.94 4.42 10.4 8.24 9.31 9.92 6.48 12 8.08 9.42 10.8 11.7 12.4 8.39 10.2 11.5 2.67 10.1 8.66 7.03 13.2 9.16 4.69 8.88 6.1 8.82 11.1 9.44 9.36 7.96 10 10.8 9.78 7.72 9.86 10.7 11.5 9.83 9.09 7.76 10.7 9 11.7 7.06 9.34 9.63 7.91 7.56 7.7 8.11 11.2 10.2 8.75 10.8 8.79 13.6 9.47 9.04 12.3 9.49 12.5 5.82 9.39 0 4 7.9 6.77 12.3 4.1 5.39 7.77 9.53 12 10.1 8.72 7.32 11.1 7.16 7.75 4.74 5.86 11.5 10.6 11.7 11 7.36 8.17 11.4 1.05 9.02 8.39 10.3 11.1 9.23 11.2 10.9 7.18 8.23 7.77 10.2 8.71 11.1 10.4 8.6 7.37 11.3 11.5 7.54 7.01 11.1 7.14 10.7 9.89 9.11 8.12 10.6 8.92 11.1 9.79 7.8 7.8 8.24 10.9 8.79 8.21 11.3 10 9.34 8.22 7.57 8.92 6.61 2.41 11.3 6.46 11.2 10.1 10.6 2.68 10.2 12.2 13 7.09 9.83 6.58 7.45 8.57 8.3 7.38 9.91 11.1 12.4 9.72 3.68 11.9 6.95 7.4 8.78 2.41 8.56 2.9 6.67 5.8 11.7 8.93 8.55 7.81 11.2 7.73 4.42 7.05 10.1 11.4 1.66 10.6 9.62 2.41 4.19 6.15 8.74 6.58 3.42 8.39 2.41 9.42 9.39 7.89 10 10.2 5.19 14.1 11 0 10.2 6.83 5.72 12.6 9.39 9.02 4.1 4.62 8.48 8.72 3.09 12.5 8.08 7.31 9.57 11.1 16 10.2 14.4 8.25 9.55 7.9 10.8 6.01 8.43 9.39 12.5 2.08 10.3 2.41 13.9 6.82 10.4 11.4 8.52 8.2 11.3 5.94 10.6 9.58 10.5 11.1 10.7 8.88 9.29 9.28 8.94 10.1 10.2 11.1 6.85 9.93 12.7 8.12 5.86 10.4 9.82 10.9 10.3 5.1 10 9.23 4.42 9.58 6.03 10.3 10.9 9.45 11 11.5 10.4 8.2 10.2 9.06 6.75 10.5 7.57 8.64 9.22 10.9 7.46 8.47 4.86 9.99 10.9 9.84 10.6 9.1 11.6 11.3 9.37 8.41 11.5 10.4 11.3 9.95 8.1 12.5 10 11 10.3 10.6 12.2 11.7 10.6 7.9 13 9.61 8.64 0 9.33 5.49 6.19 7.1 10.3 11.5 10.8 7.83 9.49 9.81 9.74 3.68 5.15 11.8 11.8 6.64 14 10.3 9.99 10.1 12.7 10.1 11.9 10.9 9.99 0 10.6 9.36 8.62 8.39 6.78 11.4 8.63 10.3 9.81 11.5 12.2 10.6 7.46 11.8 11 11.6 13.6 10.9 11.5 10.9 12.7 8.16 9.24 10.6 8.31 9.46 10.7 8.52 2.41 10.4 9.81 11.1 2.67 11.1 12.6 10.3 3.8 10.5 10.6 12.5 11.4 11.9 13 9.03 12.4 6.01 6.41 12 10.3 0 9.83 9.29 10.5 11.4 9.99 9.7 12.4 3.26 6.41 11.8 7.99 9.21 9.35 3.42 10.9 11.9 9.96 11.5 10.7 4.69 10.6 8.01 9.53 10.3 9.2 10.4 10.1 12.3 6.89 6.31 8.3 5.27 8.95 11.1 10.4 12.2 13.3 8.49 9.96 9.21 11.8 1.05 8.14 7.49 8.06 8.29 6.47 10.8 8.37 10.3 8.3 10.1 5.19 11.4 11.6 13.8 10.3 10.2 11.7 11.2 10.1 11.9 2.08 7.61 10.1 5.19 7.64 7.95 5.03 10.6 9.07 10.6 7.26 5.91 4.86 9.26 7.76 10 5.53 9.62 9.59 7.06 2.08 4.1 11.6 10.5 3.42 6.91 8.17 2.9 9.4 10.2 8.89 2.41 8.51 14.4 6.43 14.3 10.5 9.75 11.6 12.8 8.74 11.6 7.5 7.32 3 11 7.47 1.66 2.67 3.55 8.6 6.61 9.79 3.26 7.96 8.63 3.42 4 10.9 13.1 6.58 8.66 10.7 8.13 3.09 9.15 8.62 10.5 10.6 9.81 11.9 5.83 10.7 11.1 8.4 8.97 11.5 8.56 6.39 8.12 7.86 10.8 6.51 13.5 8.9 10.6 6.13 4.19 8.03 10.9 6.73 1.66 4.96 13.3 10.5 2.08 2.08 9.19 9.59 11.1 12.7 7.07 7.41 9.34 9.85 6.03 7.21 8.97 5.19 8.7 8.52 8.73 1.66 5.1 0 9.93 9.03 9.24 12.1 7.22 7.8 6.8 10.5 12.2 5.23 7.98 6.06 8.99 8.68 10.1 9.04 9.66 10.5 7.33 5.66 7.56 5.1 9.85 2.08 0 9.59 9.93 2.41 5.1 11.6 8.72 7.99 9.76 5.01 2.67 10.9 9.42 11.5 9.08 0 10.7 10.2 8.53 9.67 9.03 10.5 10 9.94 9.5 0 10.6 4.56 12.7 10.3 12.3 1.05 10.4 9.69 11.7 10.4 12.4 8.99 8.04 11.2 11.1 10.7 2.08 11.6 2.41 12.5 4.35 9.97 11.2 8.09 1.66 8.88 11.9 11.8 10.8 8.49 9.99 12.4 9.52 10.9 11.8 9.49 9.33 10.6 13 11.2 13.5 12.4 12.8 7.59 12.7 9.22 8.55 9.81 10.2 11.9 12.5 13.7 10.4 6.66 10.2 8.58 9.48 11.1 7.85 10.1 11.7 6.66 12 10.8 10.9 11.4 6.76 4.1 12.4 8.17 9.21 4.77 9.85 9.24 8.1 8.58 9.38 7.97 2.45 3.42 8.38 9.42 2.08 12.1 9.55 10.4 8.61 9.32 7.21 7.57 9.72 10.5 8.59 4.27 6.64 2.41 4.49 10.3 11.2 6.99 14 7.54 6.91 10.3 9.91 8.53 7.33 10.3 0 8.97 11.2 8.92 11.5 10.8 10.9 9.68 13.7 11.4 11.3 10.3 6.66 3.26 8.55 8.97 9.36 10.1 8.91 5.42 12.5 9.91 8.51 9.33 8.86 4.56 11.3 11.2 12.7 7.89 7.2 11.7 10.4 8.56 6.8 10.6 5.15 5.01 9.46 9.81 7.29 12.1 7.95 9.14 9.5 8.12 3.42 9.59 8.04 9.65 11.5 8.28 9.93 9.57 9.03 10.2 8.95 6.66 8.95 4.69 8.7 8.24 9 3.68 8.49 1.05 8.53 6.31 10.6 4.1 9.67 11 3.26 11.2 8.07 10.3 2.41 8.59 6.44 5.99 3.09 6.27 10.7 9.76 5.86 6.06 3.09 13.3 7.88 10.3 9.22 8.17 11.1 11.2 5.71 8.9 9.62 8.89 10.5 9.25 8.12 6.94 7.9 11.5 6.19 5.23 11.5 10.7 6.37 8.61 10.2 11.9 6.96 9.89 7.21 8.51 9.46 11.4 10.4 9.64 10 9.41 6.06 8.44 9.36 10.7 11.4 10.5 8.85 7.89 8.86 7.82 8.47 9.49 10.4 11.9 9.92 7.43 9.42 8.46 3.09 10.3 9.62 10.8 8.64 13.2 9.65 5.99 7.6 7.25 9.79 11.8 7.28 8.93 9.48 12 8.54 6.42 10.6 11.7 5.46 6.06 10.2 11.3 5.01 7.62 9.3 5.27 8.38 3.8 8.79 8.55 10.7 0 2.68 9.04 11.4 5.8 9.79 9.5 8.93 7.73 11.1 5.88 11.4 7.54 8.53 6.92 9.49 8.22 9.99 9.64 7.75 3.56 2.67 4.96 5.01 11.6 8.18 8.14 8.53 3.68 10 8.17 9.93 7.74 6.83 1.05 7.23 3.26 11.1 7.95 8.44 8.04 9.3 8.35 8.05 9.96 10.5 9.09 9.3 8.16 10.6 8.82 8.75 5.39 10.5 2.08 9.84 6.01 11 8.93 8.56 6.43 11.9 6.31 11.1 7.36 6.79 10.3 6.73 0 8.25 7.85 1.66 10.7 10.8 9.33 11.1 5.83 9.09 9.79 12 10.6 9.92 7.94 6.89 3.55 11.6 10 1.66 11.5 9.32 11.9 8.99 12.8 10.5 12.5 11.4 5.88 8.38 9.37 1.05 11.2 10.5 10.3 10.4 9.12 10.5 5.15 9.64 2.9 9.98 7.49 5.99 1.66 6.6 6.27 10.9 8.61 2.41 8.06 9.13 9.88 7.09 7.99 8.79 11.8 5.49 9.81 1.05 6.43 7.61 1.05 5.36 11.1 5.01 1.05 5.31 7.56 9.03 4.62 2.41 7.33 3.36 6.87 1.05 0 6.6 5.56 6.56 6.51 8.57 7.07 7.46 0 9.8 5.42 3.09 10.7 6.27 10.2 7.46 10.9 5.35 10.8 8.78 5.19 8.08 4.27 6.82 6.08 4.74 8.88 0 7 5.96 5.78 8.49 10.7 2.41 8.84 7.03 5.15 7.75 9.25 10.2 6.35 7.99 10.2 11.1 10.3 8.51 7.8 2.9 5.88 0 9.31 2.67 9.77 12.7 7.48 9.65 7.05 10.9 10.1 8.54 6.41 7.97 9.64 9.67 6.53 8.33 10.1 9.77 7.6 5.12 6.34 5.88 6.63 10.6 8.35 10.8 8.4 9.67 4.86 8.11 4.69 11.2 11.9 6.15 1.66 4.19 8.8 10.1 9.15 8.83 9.09 8.97 8.64 10.2 7.73 9.1 5.78 5.39 6.75 1.05 2.67 5.88 3.9 6.69 7.83 9.85 4.19 8.43 6.51 7.41 6.51 8.78 6.9 0 9.19 9.79 2.41 6.33 8.47 3.42 2.41 9.46 8.77 9.11 8.82 8.01 9.18 6.46 10.8 8.1 10.4 7.69 10.7 9.94 9.39 6.75 3.07 9.03 8.91 9.56 8.61 9.45 8.92 1.05 10.2 6.53 3.9 2.08 6.2 4.62 10.5 3.26 2.41 4 4.69 1.66 7.78 1.66 1.66 9.85 10.3 5.31 9.5 8.56 1.05 4.91 7.7 5.46 9.61 9.5 2.41 8.84 9.22 1.05 5.06 9.11 8.96 11 6.38 8.67 10.6 8.34 2.41 8.37 3.42 3.55 7.91 9.7 7.76 2.9 10.4 7.07 3.42 6.64 12.1 9.28 9.64 1.05 2.67 5.15 9.48 10.5 6.44 9.56 12.1 1.05 6.53 9.29 7.6 9.43 9.72 6.13 8.94 1.66 5.91 1.66 8.26 0 8.43 9.28 6.86 3.42 8.7 11 5.94 2.41 2.9 8.75 5.35 8.7 7.85 8.1 9.16 7.54 8.9 2.41 7.93 8.44 14.4 12.9 10.3 1.66 2.08 3.68 6.56 0 10.1 10.9 9.65 7.06 9.61 5.27 5.53 9.7 10.8 12.2 10.3 10.5 8.68 2.67 10.7 9.2 8.7 6.53 4.69 8.36 7.45 8.54 10.9 3.42 10.5 11 3.42 2.08 8.37 11.9 10.1 9.9 9.02 3.55 7.07 13.8 4.91 8.94 7.93 3.9 9.23 8.66 10.1 5.88 7.97 10.2 0 1.05 4.1 8.21 3.42 6.08 8.17 7.92 6.41 9.76 8.98 5.35 10.6 9.94 8.95 6.01 6.85 9.53 9.36 2.08 9.1 8.98 5.49 10.7 8.96 8.95 12.5 2.08 8.44 8.1 8.31 2.41 7.84 6.01 6.87 8.24 4 7.83 7.68 5.53 4.19 7.17 10.4 4.86 3.55 7.82 4.96 9.66 7.51 9.82 4.35 7.67 2 8.81 2.08 8.91 8.29 6.79 3.09 3.42 7.38 7.98 3.8 1.05 9.42 9.97 5.06 4.56 8.52 9.62 7.62 10.9 9.43 6.36 8.44 9.07 8.63 12.5 10.7 4.27 6.76 7.97 8.58 7.32 5.49 2.08 6.52 10.9 10 5.58 2.9 1.05 5.49 0 7.33 10.4 7.47 9.87 6.56 7.16 6.65 5.23 10 10.4 8.1 9.89 9.52 6.37 5.49 12.5 7.75 6.56 0 8.09 0 7.73 10.6 1.66 6.72 6.15 5.39 10 0 9.05 8.3 3.9 7.24 4.1 5.06 3.42 6.85 5.99 6.63 6.87 3.26 8.83 1.05 2.08 9.1 4.1 3.26 4.56 2.41 6.29 5.94 9.19 8.53 7.8 4.8 9.77 9.81 5.49 10.1 9.13 8 5.01 5.15 7.37 7.55 1.05 7.89 3.55 10 8.46 3.9 9.94 6.29 4.49 5.1 7.56 8.86 11.4 7.73 7.54 8.74 5.72 2.67 7.7 0 2.41 0 8.48 2.67 9.71 2.08 3.8 5.66 8.83 8.6 8.63 3.09 2.08 9.81 8.94 4.74 7.02 8.42 2.92 0 8.78 5.46 7.1 0 9.8 14.4 8.39 6.89 8.82 13.9 10.1 5.31 1.05 8.36 7.67 4.1 12 1.05 8.97 7.53 14 6.13 9.86 11.6 1.66 10.6 3.26 8.43 11.4 8.99 9.17 2.08 9.11 6.78 8.45 7.73 11.9 8.83 7.86 5.69 3.09 7.76 4 8.87 5.91 9.03 7.94 3.26 0 2.08 2.08 11.9 9.62 11.3 8.27 8.06 10.6 6.72 7.4 10.4 11.1 11.5 8.62 7.6 12.2 10.1 3.9 9.98 7.93 7.95 2.9 8.22 8.72 7.24 7.83 8.72 9.4 8.69 8.33 8.29 6.17 4.19 7.79 6.37 8.73 3.55 3.42 7.26 5.1 11.4 5.78 2.67 4.62 1.05 6.99 7.45 7.66 5.19 7.69 5.27 6.73 11.2 8.58 2.08 8.78 5.53 8.35 10.3 8 3.55 8.76 9.2 3.55 3.68 2.67 2.08 8.4 6.72 8.69 5.72 8.27 5.39 3.26 0 2.08 7.94 4.56 8.62 8.61 9 10.6 12.9 7.87 3.55 8.3 12.1 0 8.16 9.44 5.86 11.6 8.98 8.17 1.05 11.1 9.29 0 9.99 5.39 0 7.56 8.63 5.75 9.12 7.73 8.47 0 2.08 6.49 11.1 7.19 7.87 1.05 5.31 2.58 7.22 8.36 5.27 12.2 7.73 7.68 8.91 6.86 11.2 2.67 7 0 7.58 7.5 3.26 6.8 7.26 1.05 10.2 4.1 4.91 11.2 10.3 11.8 8.32 2.41 3.09 9.56 4 11.6 3.09 9.16 9.31 10.9 7.17 9.61 2.9 6.46 6.86 8.56 9.98 5.06 8.93 13.7 9.6 1.66 8.3 10.2 4.74 8.06 11.3 5.72 10.9 7.59 6.87 11.6 11.6 9.75 10.1 3.13 6.23 7.08 6.31 4.1 10.1 6.78 9.63 1.66 9.64 14.4 1.05 7.22 5.15 5.56 7.61 6.8 12.3 2.67 4 8.4 1.66 0 12.8 12.9 11.4 9.41 12.7 5.47 6.39 8.39 8.46 8.08 8.24 7.73 10.4 9.22 10.3 9.92 9.32 8.71 6.29 4.42 6.37 10.3 3.9 2.67 11.6 5.39 8.42 11 8.24 5.01 5.49 5.46 7.7 6.89 7.25 1.66 9.94 8.67 7.92 5.27 3.8 9.24 8.93 7.19 7.25 11.1 8.82 1.05 11.6 10.1 8.75 6.79 9.05 7.2 1.66 6.99 4.96 8.31 7.41 12 13.5 6.7 1.05 0 9.06 7.38 6.94 10.2 11.1 8.02 6.56 3.68 9.86 8.64 9.64 6.99 9.18 9.26 1.05 6.17 6.44 10.7 6.06 3.42 8.88 10.4 6.17 2.9 7.19 5.46 5.46 0 8.4 3.64 3.68 3.68 9.01 8.92 7.37 4.69 6.8 6.46 4.52 7.3 10.8 6.51 9.25 4.27 1.66 8.49 10.7 6.25 10.6 10.1 4.52 6.76 8.07 5.15 3.26 7.55 9.7 3.9 9.89 1.05 9.22 4.1 8.14 9.42 2.08 4.42 11.8 8.61 7.03 1.05 1.66 3.8 1.05 2.08 7.83 4.96 10.5 0 8 10.5 10.1 12.1 8.91 10.3 11.2 6.85 4.49 10.9 10.8 5.06 9.57 8.29 10.7 4.35 5.78 7.87 7.16 6.17 6.87 5.61 6.41 8.4 9.43 7.83 5.83 2.41 4.42 8.56 10.8 9.34 9.85 8.52 7.5 4.62 2.41 3.55 7.52 7.4 2.9 5.01 12 8.21 8.99 9.81 6.43 3.42 1.05 5.46 2.41 9.95 9.64 1.05 5.43 7.31 3.09 9.89 5.1 7.98 7.13 10.8 8.9 6.1 12.2 3.68 2.08 6.13 12.5 6.13 8.25 12.8 6.83 1.05 9.27 4.62 9.78 0 7.55 8.13 7.18 8.82 9.21 7.65 3.8 6.42 8.06 10.4 6.75 8.02 1.66 8.66 2.08 2.41 11.6 8.43 3.9 7.37 1.66 3.26 7.81 10.4 5.69 0 11.3 1.66 1.66 5.31 4.42 1.05 7.89 4.56 5.42 7.71 9.38 12.6 7.08 7.9 4.42 12.1 5.56 8.29 1.66 9.54 8.84 7.1 0 7.12 0 6.06 4.56 3.8 0 10.5 4.74 1.66 5.46 1.05 9.26 1.05 8.54 3.8 8.61 9.94 6.89 8.91 6.63 7.97 7.97 4.86 12.4 6.96 8.83 9.03 7.81 10.3 6.7 8.86 3.26 0 4.35 3.09 7.17 7.39 5.72 5.19 11.4 4.86 5.75 7.59 2.08 2.67 0 5.53 6.61 7.16 3.55 9.27 4 8.24 1.05 10.9 9.29 7.08 7.59 5.53 4 2.9 0 10 5.39 8.64 6.46 5.69 6.66 4.62 4.27 6.79 9.07 7.34 8.19 4.62 5.01 6.03 6.27 5.01 5.39 2.08 6.72 6.15 7.1 7.93 3.8 1.05 4.86 5.35 5.23 2.67 6.97 9.43 4.27 8.35 4.06 8.69 3.42 8.1 8.81 7.9 8.1 8.2 6.63 0 12 3.09 2.67 6.08 9.72 11.5 6.73 1.66 10 5.19 5.42 8.21 1.66 11.9 9.88 0 8.85 5.94 4.19 5.75 4.8 1.05 1.05 6.85 6.55 9.22 8.17 7.2 2.67 9.11 7.18 3.68 3.55 13.6 11.8 5.1 8.25 7.24 7.02 12.8 10.6 10.4 1.05 12.7 13 2.08 5.88 11.7 3.09 3.09 0 2.67 2.9 3.42 11.6 3.55 1.05 7.43 9.26 5.91 8.35 9.68 1.13 5.1 6.17 8.85 8.51 4.69 6.13 2.08 9.21 7.32 9.46 3.09 6.54 4.69 9 7.63 10.3 2.41 7.17 8.49 2.08 5.23 7.96 5.39 14.6 8.33 14.4 6.92 2.08 9.64 10 9.8 8.96 5.06 4.27 8.27 3.42 8.97 7.74 8.28 12.5 8.72 6.39 7.33 3.55 4.91 1.66 8.71 4.49 6.67 6.86 7.21 11.2 0 12 1.05 3.42 7.97 4.12 7.49 3.68 7.97 7.78 9.26 11.6 5.72 4 5.75 3.26 5.56 1.05 10.2 5.35 9.93 9.85 5.66 8.04 2.08 11.9 8.49 10.2 8.7 2.41 4.56 7.71 7.62 3.26 9.21 7.56 8.19 7.52 13.5 2.9 8.3 7.45 10.3 7.28 4.74 4.42 0 6.35 7.99 9.51 8.32 4.69 8.01 6.87 7.92 2.41 7.93 2.08 4.49 12.3 7.83 10.1 6.66 7.65 7.12 4.62 8.48 10.4 10.3 7.8 8.08 10.7 6.82 7.12 12.5 7.73 3.8 12.4 11.2 8.09 5.63 11.1 5.63 2.08 3.26 6.08 13.3 8.44 5.63 4.96 4.27 0 12.6 6.66 9.63 9.22 9.63 4 5.31 9.05 1.66 5.42 6.39 4.19 9.22 8.71 4.1 5.46 7.43 4.38 7.65 8.41 7.2 7.51 10.7 9.32 5.99 3.42 7.17 3.68 7.81 4.56 7.3 8.97 8.76 1.05 2.9 5.06 8.56 2.67 7.33 9.98 12.9 1.05 11 4.19 2.67 11.4 2.08 0 9.01 7.15 6.9 11.8 9.77 10.7 6.61 5.53 0 13.1 7.63 9.88 9.95 8.78 2.9 3.42 12.6 4.56 6.43 2.46 6.87 9.51 2.67 10.8 1.66 0 4.19 6.27 5.49 6.21 8.96 5.86 5.27 7.07 3.8 7.05 2.08 11.1 6.31 8.82 3.68 6.63 3.26 2.08 6.03 9.33 6.56 6.43 5.35 8.11 8.15 1.66 7.87 5.42 1.66 0 3.26 2.67 2.41 4.8 4.84 3.8 10.6 7.96 9.18 5.06 8.98 1.05 0 9.55 6.13 6.92 11.1 1.66 5.35 12.1 10.6 1.05 9.8 2.41 4.35 0 1.05 11.7 8.64 5.06 3.8 10.8 9.22 1.66 7.36 11.4 6.5 8.63 7.18 9.23 5.06 3.8 4.35 8.35 9.08 11.5 13.4 5.01 6.08 3.42 8.1 11.9 3.26 4.8 11 9.24 4.35 8.35 4.69 2.08 10.9 1.05 8.03 9.9 0 2.9 9.42 3.26 4.19 5.15 0 3.68 11.7 11.1 2.41 10.8 7.08 7.98 10.5 7.99 11.5 8.65 3.09 3.09 0 4.27 1.05 4.91 4.27 5.27 10.7 7.42 9.14 4.96 4.35 7.07 8.74 3.81 7 6.03 9.18 5.49 0 11.8 6.61 6.61 6.85 4.62 5.31 1.66 6.85 5.53 2.08 7.6 6.75 4.27 3.26 8.47 9.93 1.05 6.31 6.13 5.72 8.5 2.9 11.2 5.15 10.5 9.09 9.37 0 6.15 6.33 1.05 1.66 7.15 9.44 10.1 12.3 11.1 1.05 9.25 2.9 12.7 3.42 7.72 6.7 2.41 11.3 16 2.08 14 2.48 3.9 3.9 0 8.18 7.39 8.23 11.3 12.3 6.1 2.67 4.1 4.19 11.2 4.69 10.7 7.14 12.8 13.7 1.05 1.05 11.7 5.19 7.92 8.88 1.66 10.5 4.42 5.86 11.8 12.2 3.09 8.79 9.48 8.25 5.86 7.05 6.01 11.6 11.2 4.19 9.21 7.93 6.27 7.17 6.37 10.7 9.16 3.09 9.17 6.23 9.24 5.31 5.69 0 4 7.43 3.55 8.92 4.42 6.17 5.91 7.96 5.42 7.55 2.08 8.69 7.81 2.41 2.41 7.25 8.27 8.19 4.49 6.64 8.45 5.72 9.89 5.06 2.9 1.66 6.95 9.49 7.63 2.9 6.61 7.63 5.06 2.08 4.96 3.9 6.72 3.8 1.05 8.77 8.99 7.01 9.63 6.97 1.05 9.19 1.05 3.09 5.31 4.49 3.68 9.59 6.63 5.56 8.08 2.9 10.3 4.42 10.4 6.66 3.68 6.41 6.35 6.5 12.1 6.78 12.3 3.26 9.95 9.14 10.2 11.3 14.1 7.45 8.46 7.48 8.85 11 14.9 12.2 7.61 7.59 4.91 7.76 10.9 10.5 10.4 9.53 5.53 10.8 5.91 12.8 1.05 1.05 4.69 2.08 9.83 7.83 4.86 5.49 5.06 9.05 7.85 6.7 2.9 2.08 10.7 2.08 6.33 8.16 3.9 2.9 9.95 13.4 9.06 4.62 11.3 12.1 11.3 10.5 7.33 9.96 6.8 11.2 9.22 2.9 8.07 8.71 10.7 8.38 8.19 9.14 8.65 10.8 9.8 11.1 11.7 0 9.72 8.68 0 9.13 7.91 5.66 3.8 11.3 8.32 9.27 11.6 10.1 12.1 13.1 9.82 8.5 8.57 7.69 4 9.11 5.63 11.7 7.27 11.4 9.71 8.18 10 8.85 7.43 8.23 1.66 9.52 10 9.07 10.5 10.1 9.92 7.93 5.72 7.14 9.22 10.4 9.84 8.1 9.22 5.15 8.39 11.8 0 11.4 11.3 10.8 6.76 9.67 6.46 9.26 8.22 10.1 7.83 7.98 6.96 11.7 7.2 8.23 11.8 15.6 5.8 1.66 9.57 10.2 6.08 7.44 6.23 11.6 14.4 14 14.6 9.35 11.6 5.83 7.14 10.6 7.91 8.64 3.68 8.13 7.44 8.33 7.78 9.75 12 8.84 9.84 7.98 7.24 6.61 10.4 7.18 0 2.08 8.41 1.66 7.73 5.8 6.77 8.05 3.68 5.96 10.7 6.53 5.75 9.09 10.1 8.95 11.4 1.66 6.99 9.43 8.9 2.29 10.5 6.86 5.99 7.44 12.1 5.99 7.26 8.15 3.69 1.66 9.89 0 9.21 4.19 4.96 7.22 8.5 7.38 13.4 6.29 7.89 8.93 4.56 7.1 10.3 11.2 7.91 12.6 9.28 10.6 10.9 13.1 14.5 12.2 13.4 0 9.25 1.05 11.8 5.39 5.78 10.6 0 2.9 5.35 7.14 0 10.3 6.67 1.66 2.08 5.8 7.03 7.21 6.67 2.41 9.25 3.55 8.15 7.7 12.8 8.47 0 9.24 13.2 8.12 8.27 0 4.74 9.36 8.37 4.42 11.7 10.9 8.15 2.41 3.8 3.26 11.7 9.92 5.98 8.81 9.17 0 7.77 4 8.08 1.66 7.03 5.39 0 0 9.57 7.29 4.86 5.83 8.93 9.53 8.05 6.06 8.92 6.63 8.32 6.35 7.09 8.43 6.72 7.02 7.45 8.33 5.69 8.49 9.66 12.8 10.2 10.9 6.72 7.45 5.06 9.09 7.36 8.87 3.26 10.8 7.05 5.8 10.3 9.51 10.5 6.86 8.8 8.6 4.1 13.1 3.8 8.6 3.26 10.5 3.55 5.75 6.29 7.15 11.1 0 3.68 9.41 9.16 7.36 2.9 12.7 8.04 4.19 3.9 7.34 0 11 9.03 8.8 7.36 9.14 9.95 7.12 5.06 7.15 8.45 5.1 10.5 8.41 2.9 16.1 4.74 5.69 4.56 1.05 1.05 8.28 10.8 8.09 5.69 12.5 8.77 10.1 10.8 8.93 11.2 13.6 9.4 4.8 1.05 9.94 10 7.82 4.69 8.51 8.48 8.48 9.88 10.9 6.13 12.1 9.09 10.4 6.8 7.04 9.94 9.18 9.44 5.63 6.21 11.1 11.9 8.06 5.49 2.67 7.3 5.78 8.4 0 10.6 6.78 8.79 9.78 10.4 4.91 14.2 5.06 9.73 8.58 7.08 9.26 9.9 8.97 1.05 6.46 8.82 11.8 11.1 10.1 10.6 2.08 7.99 12.5 2.41 2.9 12.7 8.22 7.76 2.9 12.3 2.9 7.99 9.47 7.94 10.1 6.99 9.63 7.08 12 10.8 7.32 11.1 10.2 4.19 12.8 10.9 3.42 10.4 0 11.7 10.4 10.3 10.8 8.38 10.8 12.2 7.7 2.08 7.08 6.89 8.38 1.05 10.5 8.28 11.2 7.54 9.04 9.9 4.27 12.2 9.39 10.2 3.42 7.05 9.08 5.96 4.27 12.6 6.15 8.85 8.23 8.63 8.69 9.99 8.44 3.09 10.5 7.5 4.27 7.51 4.69 13.3 7.38 9.03 7.89 5.1 0 12.6 6.96 7.23 8.29 8.36 8.31 6.44 4 11.7 11.7 10.8 9.07 9.64 10.6 4.19 9.57 8.13 9.74 10.1 9.82 8.73 10.2 8.15 3.68 3.26 14.5 8.91 11.7 3.09 2.08 8.34 2.41 4.8 8.09 3.55 8.48 12.6 6.21 6.44 8.58 6.61 10.7 8.23 5.75 7.25 7.58 7.93 8.27 9.15 6.31 9.35 8.13 1.05 9.36 10.2 8.77 6.89 9.57 1.66 9.87 4 5.91 8.62 7.14 5.01 2.67 3.42 7.17 3.68 5.19 9.21 1.66 7.86 12.3 7.23 4.69 4.8 1.05 3.09 4.35 3.26 6.55 4.8 10.1 5.91 0 1.66 7.23 8.04 4.42 4.42 4.22 6.58 5.59 13.6 6.37 12.4 7.64 6.5 8.6 10 3.09 8.48 7.47 8.09 2.67 11.8 7.12 6.46 7.02 9.65 8.64 9.45 6.58 9.8 7.98 9.66 8.8 7.7 4.86 3.8 11.2 11.2 3.42 5.59 3.9 4.56 3.42 9.36 5.19 4.69 7.56 2.08 11.4 4 7.92 10.2 5.35 7.82 7.41 8.01 3.42 8.77 4.1 3.76 11.1 8.18 4.49 8.93 8.55 7.79 8.74 4.91 8.91 0 7.67 5.42 8.27 2.08 9.36 10.1 9.45 8.33 8.6 4 7.34 10.4 7.81 8.8 6.1 3.42 9.05 13.9 7.84 8.48 6.67 2.41 7.56 7.24 5.94 7.34 11.7 10.6 4 2.41 2.9 3.09 1.05 7.84 9.93 0 7.53 2.41 1.05 6.1 7.29 7.88 1.05 10.3 10.4 9.57 8.76 7.08 7.26 10.8 9.84 10.6 11.6 5.31 8.73 6.53 5.43 4 1.66 5.56 4.1 6.64 7.43 5.06 5.99 15.7 10.4 6.9 5.46 8.72 9.37 8.64 10.7 5.78 7.8 8.51 8.41 11.1 6.69 9.73 7.64 11.7 8.99 7.62 0 11.2 5.31 8.44 8.05 10.4 8.02 12.7 2.41 12.3 8.22 8.94 8.93 8.09 10.7 13.7 10.2 0 7.22 10.4 6.78 11.3 10.8 10.9 10.4 7.84 6.17 0 9.33 9.02 8.81 9.04 6.76 8.88 7.16 8.69 1.05 9.66 9.45 6.31 11 7.21 10.6 9.1 10.1 1.66 9.66 7.51 11.5 10.5 2.08 12 6.88 10.1 10.2 8.29 10.6 9.21 9.69 11 10.6 7.78 8.12 11.4 8.56 7.29 10.2 8.04 9.64 12.1 9.88 3.9 8.76 8.99 2.08 8.5 11.1 5.63 3.26 8.05 4.19 9.34 8.51 10.4 8.24 10.1 10.6 10 7.52 7.08 11.9 7.46 5.66 11 1.05 9.77 11.3 9.06 9.59 7.79 7.26 10.7 8.15 11.8 10.1 9.83 11 6.02 9.23 9.38 11.1 10.8 10.8 9.53 8.15 13.9 9.85 8.81 1.05 9 8.89 4.49 2.41 4.27 9.84 9.06 11.1 9.92 5.06 1.05 11.2 8.83 8.92 1.05 9.55 11.7 2.9 2.9 0 9.92 11.6 10.4 9.1 6.06 11.3 0 12 11.4 9.22 9.37 8.73 6.99 10 8.62 0 9.72 9.42 10.1 9.94 10.1 9.34 12.7 9.86 12.5 11 9.03 6.56 2.08 8.8 10.9 9.37 9.26 7.64 9.83 9.37 8.58 7.15 9.56 9.03 10.4 10.6 9.71 12.2 7.17 8.98 9.08 9.9 11 9.73 9.39 10.2 9.64 9.95 2.08 8.92 3.55 9.91 11.3 11 9.64 10.4 10.5 6.31 9.69 10.3 11.5 1.66 7.91 10.6 9.24 9.44 8.06 9.41 8.05 8.73 10.1 9.7 9.08 8.06 8.54 11.7 4.27 10.3 11.9 9.08 10.4 10.1 8.48 9.12 7.75 8.93 11.1 10 3.68 9.87 6.23 9.39 9.91 4.69 9.81 9.86 8.97 5.86 8.71 10.2 11.1 9.54 2.08 8.84 9.14 9.1 10.6 4.56 10.9 7.89 10.2 10.3 7.19 11.2 10.7 9.56 10.3 7.53 9.39 10.5 9.8 10.3 9.37 7.99 10.8 2.67 4 4.86 1.66 8.53 10.6 10.5 9.39 9.29 9.48 9.62 12.2 10.3 9.6 10.2 9.95 10 10.2 10.7 12.7 10.1 8.19 13.7 9.47 9.87 9.47 10.7 8.78 8.82 9.75 8.79 6.91 8.91 7.01 9.63 9.71 10.6 11.6 10.1 9.73 9.11 11.7 11.3 13.3 9.78 13.5 6.21 9.39 13 10.9 11 11.7 9.62 6.82 10.8 12.5 1.05 10.3 7.68 4.8 9.41 9.35 9.89 10.6 10.8 10.9 12.5 8.9 0 11.1 10.3 4 10.2 10.7 9.58 11.5 10.9 6.53 7.48 6.21 9.81 11.5 7.08 3.9 8.81 10.6 10.1 4.42 9.15 6.94 9.52 10.9 8.11 9.99 11.7 5.56 11 9.11 10.5 13.9 4.96 7.7 10.6 5.32 4 10.4 10.4 9.73 3.26 8.36 9.01 10.4 10.9 11.2 8.53 9.58 9.81 8.43 9.22 9.64 10.3 9.9 8.92 8.8 11 10 6.33 3.26 9.49 5.66 5.99 10.1 8.9 8.07 5.39 10.1 9.07 10.1 11.3 10.1 8.37 9.95 8.79 3.68 10.4 9.44 2.08 9.25 10.4 7.17 9.02 9.27 9.25 8.77 11.2 5.96 9.33 2.08 9.58 8.21 10.3 10 6.08 10.7 9.71 11.5 11.8 9.46 7.55 9.73 9.67 9.76 8.67 7.1 10.2 10.1 2.9 9.04 10.9 10.9 9.71 10.2 1.66 14.6 10.9 11.5 11.7 9.98 8.01 8.18 10.4 10 4.62 10.4 8.84 8.87 7.26 12.3 7.54 12.9 11.5 11.2 9.37 10.5 9.01 10.2 8.53 10.6 9.17 11.7 10.7 9.66 11.2 11.9 10.6 9.68 11.6 10.2 8.66 12 10.4 8.76 9.06 8.11 7.81 10.6 9.92 8.59 8.86 9.21 10.5 11.4 9.03 4.56 9.53 8.24 9.02 6.25 4.62 1.05 5.1 8.53 0 9.64 11.9 7.5 12.1 8.98 6.44 10.2 9.62 3.42 7.61 4.86 10.7 11.8 9.87 8.39 11.9 11.7 12.4 8.59 9.34 6.55 8.19 4.1 8.61 7.8 10.8 9.1 9.75 5.72 12.4 10.8 13.6 8.77 8.22 11.6 10.5 11.2 9.83 10.4 10.8 11 7.33 9.79 7.17 8.59 3.55 3.42 5.15 11.7 7.81 8.54 9.47 7.61 10.6 9.18 9.03 9.84 10.1 10.1 10.7 9.84 12.8 10.3 9.03 8.56 10.6 8.64 1.66 2.67 13.2 8.52 12.1 13.5 9.94 9.24 9.32 6.86 11.7 11.2 8.47 12.6 8.23 8.93 7.58 5.53 11.1 6.72 9.47 11.8 1.66 9.06 0 2.9 9.23 10.2 10.4 10.3 3.9 8.27 10.5 10.2 8.48 9.25 12.1 10.7 11 11.5 2.67 1.05 9.12 2.08 7.7 10.5 1.05 7.87 11.6 5.31 10.4 8.84 10.3 6.33 11.6 8.69 9.2 10.9 10.3 9.23 7.28 9.58 9.92 7.41 8.58 10.2 9.28 10.1 10.7 6.61 10.9 7.53 11.7 11.8 8.44 7.6 9.78 1.66 9.42 8.13 9.45 9.83 0 1.66 1.05 2.9 10.8 7.76 9.86 10.5 7.13 9.06 6.51 9.42 9.17 10.3 9.64 12.6 11.5 8.98 8.82 2.9 12.8 9.17 9.44 8.9 8.23 11.6 10.2 11.3 9.1 6.92 9.37 11.2 10.5 6.17 11.4 8.2 10.9 10.5 0 11.1 12.2 10.4 8.65 7.26 10.9 7.71 3.09 10.2 8.62 2.9 11.6 10.1 7.51 12.6 9.7 11.9 11.1 3.09 1.05 7.09 9.3 9.24 8.67 8.47 8.7 9.45 4.69 7.35 11 8.94 5.1 4.56 12.7 8.8 2.16 7.61 1.05 3.49 7.09 4.62 7.28 3.42 9.44 3.26 7.5 4.1 7.44 8.18 4.96 5.99 4.86 6.77 3.09 1.66 9.29 10.4 9.24 7.47 10.1 4.62 4.49 15.4 9.43 11.2 2.41 16.2 10.4 11.2 12.8 7.16 7.92 7.16 8.31 0 8.26 12.3 5.94 3.09 10.2 6.96 2.08 9.84 7.39 4.86 10 10.3 9.39 2.41 5.94 5.94 10.2 9.44 9.69 4.27 9.66 5.63 7.73 10 3.8 6.17 11.6 7.46 3.68 9.56 1.66 7.1 10.5 6.96 7.06 1.05 13.9 11.1 8.58 6.87 2.9 5.15 7 8.96 4.69 7.02 10.2 1.05 1.05 8.92 2.9 0 9.75 8.37 4.91 5.65 2.41 0 11.1 8.39 5.15 8.28 9.09 8.6 7.09 5.01 12.5 1.05 3.26 12.2 7.24 8.29 6.72 7.66 6.43 2.67 6.04 5.72 2.08 0 4.42 9.31 9.62 2.41 6.29 2.41 7.33 1.05 8.72 5.42 7.05 5.69 0 8.79 0 7.26 5.39 7.43 9.87 3.9 6.99 4.74 6.78 6.64 8.18 9.13 6.56 7.69 3.68 5.01 7.57 9.38 3.09 6.85 6.48 5.59 4.62 8.74 9.6 6.15 4.96 5.49 8.43 1.05 7.55 6.87 0 5.01 5.06 2.67 4.56 2.41 5.27 0 6.76 4.49 2.08 1.66 4.19 2.67 5.94 2.41 5.15 9.45 4.35 8.56 3.55 5.15 3.9 3.09 7.31 7.13 0 1.66 1.05 10.7 9.02 4.19 7.12 2.67 5.99 9.75 8.79 7.66 0 12.1 13.4 8.5 7.56 10.2 4.42 5.01 8.61 7.36 2.67 10.7 10.8 4.27 9.39 11.6 11.2 6.8 11 10.3 10.2 8.45 6.96 10.8 11.1 8.14 8.47 4.69 9.57 3.55 7.84 9.77 7.95 5.75 6.94 11.6 10.4 8.53 6.78 1.66 11.9 12.1 7.14 12.3 12.9 3.68 0 11.4 8.21 5.42 11.2 7.91 10.5 8.94 11.4 7.45 9.14 10.1 11.7 9.59 10 12.4 8.44 5.75 8.88 8.94 11.4 8.61 10.3 4.1 7.85 4.27 8.86 9.64 12.1 9.28 11.8 11 9.56 4.42 9.81 9.97 7.1 8.51 9.45 8.1 6.76 10.5 7.26 1.05 8.39 8.92 8.15 12 8.69 11.3 11.8 7.2 9.04 9.35 8.5 8.69 9.28 5.94 9.98 9.06 7.56 12.4 8.09 6.55 9.56 9.31 7.73 3.8 8.48 10.8 11.6 0 4.74 9.12 9.08 2.08 2.9 4.49 10 8.77 6.06 4 9.65 1.66 9.4 1.05 1.05 5.1 4.69 10.5 9.23 11.2 8.49 9.49 8.89 9.21 9.46 9.66 9.85 10.5 8.98 5.69 9.82 10.1 10.1 7.63 7.52 11.4 5.53 10.6 9.18 8.49 4.62 11.7 10.3 8.17 16.5 10 9.66 7.64 6.86 9.49 9.98 10 8.06 9.86 7.29 9.83 1.05 11.5 8.51 8.98 7.09 10.5 9.56 10.4 7.12 11.3 10.7 10.7 8.96 12.9 8.88 9.78 9 11.3 6.72 12.6 7.07 8.65 10 12.1 10.2 12.6 8.8 8.93 3.55 5.19 7.6 8.43 9.51 8.54 5.59 0 6.96 8.84 8.95 10.1 0 8.57 8.8 9.28 7.28 1.05 8.55 7.75 8.1 5.1 4.91 7.76 5.83 7.83 10.4 8.25 10.9 10.5 10.2 7.49 10 11.6 11.1 9.98 11.4 1.66 8.42 5.83 12.2 11.1 8.92 10.3 8.22 9 0 11 7.99 11.5 9.9 7.24 9.59 10.2 12.4 8.78 9.74 8.51 9.72 8.7 8.8 10.4 10.9 12.6 10.5 2.41 8.33 9.26 8.43 9.57 2.67 8.45 3.09 10.2 8.67 3.42 6.21 11.3 12 7.46 8.1 9.63 6.31 9.54 11.6 9.99 9.39 10.6 7.8 8.6 10.5 6.25 10.7 6.7 11.5 9.28 10 3.09 7.95 9.64 0 8.78 4.8 8.85 10.9 10.7 3.26 10.3 1.05 5.78 4.96 5.72 10.1 10.6 8.02 7.76 8.1 6.78 5.8 3.26 5.53 4.19 9.69 9.09 7.83 9.95 1.05 10.4 8.26 1.05 7.34 10 8.67 7.59 8.03 7.85 8.03 9.26 9.68 8.64 10.2 9.27 8.45 8.02 10.2 9.5 0 10.4 1.05 9.54 8.69 8.95 6.55 11 8.94 10.9 1.05 10.5 8.95 11.3 10.2 8.05 1.66 8.96 7.84 3.68 10.1 10.2 7.06 12.6 10.9 10.9 3.8 9.63 9.18 11.1 9.34 9 9.86 2.9 8.46 10.2 8.87 8.17 8.84 9.95 10.2 9.01 9.56 9.62 9.66 8.16 10.9 2.67 1.66 0 10.5 6.67 0 5.39 10.2 4.19 11.2 8.36 9.72 8.97 1.66 10.7 3.55 7.23 4.56 11 12.5 9.39 5.06 5.69 4.47 6.6 11.9 8.66 11 1.05 7.6 6.29 2.41 8.99 5.69 11.7 3.55 7.58 3.68 8.77 10.3 9 6.66 11.8 12.9 8.83 2.67 6.29 0 12.6 10.1 8.45 8.57 6.15 4.19 3.26 8.45 7.69 10.1 2.9 5.72 10.7 9.75 2.08 8.42 9.63 17 9.35 10.5 9.86 9.21 10.5 10.3 3.68 1.05 9.19 1.66 8.91 5.59 5.49 10.8 9.84 7.77 10.4 8.66 8.23 11 3.09 9.71 2.67 6.27 8.89 6.71 9.68 10.6 12.5 9.44 6.53 3.26 10.5 9.85 11.8 2.61 7.87 9.8 11.1 11.7 4 5.35 7.63 5.99 10.2 5.15 11.7 1.05 11 5.99 7 10.1 9.51 4.69 1.05 9.81 8.83 11.3 11.4 9.4 9.24 7.05 5.49 4.74 6.61 6.67 8.92 6.39 9.43 11.4 1.05 8.36 4.8 5.69 7.47 11.5 8.23 9.49 8.88 7.77 5.69 1.75 4.8 8.2 7.27 4.86 8.17 10.2 4.1 8.63 2.67 10.1 7.98 5.86 10.9 9.89 12.4 8.08 6.53 5.31 10.6 7.51 5.39 8.84 0 5.06 8.25 8.76 10.8 3.42 6.44 12.3 3.8 3.9 7.66 9.94 9.02 8.94 4.35 5.8 7.07 10.8 10.7 8.39 8.18 8.83 9.32 10.8 10.7 12.6 7.87 6.92 5.01 9.75 9.26 1.05 4.96 6.06 4.35 10.1 12.4 7.53 7.81 9.63 4.1 10.3 8.44 4.69 9.61 7.44 9.11 3.09 7.65 4.27 9.86 6.67 4.8 9.42 11.9 4.69 9.79 10.5 11 8.24 4.86 11 10.8 7.5 11.4 11.9 8.91 9.03 9.41 8.48 7.46 8.52 11.8 10.5 9.32 7.46 4.1 7.56 8.71 11.5 5.49 7.21 8.07 11.1 10.3 9.22 6.37 10.8 8.85 8.75 10.6 3.8 9.99 8.81 5.69 8.38 9.06 10.9 7.99 7.92 14.1 8.21 11.2 9.64 10.8 7.08 7.89 9.63 7.22 11.4 12.2 10.7 7.73 4.49 11 14.1 0 7.82 12.7 12.2 3.68 2.41 4.8 11.3 5.01 3.26 9.31 8.48 5.19 10.4 3.68 0 12.5 7.18 6.25 9.51 11.6 11.6 10.8 11.4 9.68 11.9 10.3 4.1 9.59 2.41 1.05 7.52 5.23 10.8 13.3 2.9 6.82 6.13 6.03 7.64 6.44 1.66 2.08 5.46 4.27 3.42 6.29 3.26 8.69 5.46 2.67 6.01 2.41 7.89 8.58 3.09 6.97 8.54 1.05 3.68 4.19 4.69 7.74 10.1 7.42 13.3 11.1 3.9 3.09 5.35 8.9 6.67 8.11 9.97 10.9 8.64 7.79 7.21 7.16 7.53 5.16 5.94 6.48 6.72 6.1 9.69 4.42 7.35 9.18 10.4 6.63 9.23 8.36 2.41 3.26 5.88 1.66 4.62 1.05 10.5 2.41 8.85 4.35 8.55 6.86 9.31 4.11 2.08 1.14 1.66 8.42 2.67 6.6 1.05 8.37 1.05 7.16 1.05 4.56 11 11.3 8.5 4.91 3.68 6.78 6.73 5.56 4.19 8.06 0 0 3.31 10.4 6.61 5.86 7.44 5.34 9.17 6.51 9.19 3.68 7.26 6.76 1.66 2.08 8.33 8.57 0 5.1 11.8 9.67 10.3 6.91 1.66 9.58 10.4 0 4.91 7.73 4.62 6.67 4.74 7.78 3.26 10.1 2.9 4.74 4.35 1.05 7.27 8.54 1.05 4.49 0 10.6 3.42 1.66 7.48 10.4 8.76 7.9 6.15 8.3 5.59 5.53 0 5.27 9.46 3.09 0 7.14 1.05 9.18 4.19 8.01 3.26 2.42 4.27 7.56 7.1 8.73 6.86 14.4 4.35 3.9 4.49 4.62 2.67 11.6 3.26 6.5 6.9 4.35 4.96 1.05 6.5 5.69 1.05 3.26 2.08 0 1.05 8.14 3.42 6.66 5.23 9.08 0 5.15 0 7.08 2.41 4.19 1.05 7.89 3.55 7.83 4.19 6.66 1.66 1.05 3.46 8.76 1.66 2.41 6.83 3.68 1.66 4.1 2.08 6.13 6.06 3.09 6.51 1.05 6.27 4.19 6.71 5.35 8.3 4.1 10.6 7.47 0 3.68 4.56 4.91 0 7.96 11 6.82 7.46 8.35 2.9 8.87 1.05 4.27 7.35 6.46 7.01 4.27 7.69 8.33 0 5.01 8.58 9.43 6.86 6.75 7.38 1.66 9.05 1.05 6.99 9.93 9.36 4.96 9.19 3.55 3.26 1.05 3.55 8.14 1.66 11.6 3.26 7.23 5.14 6.7 8.89 9.68 2.9 7.97 1.05 11.5 2.08 2.08 2.08 3.68 7.05 4.52 10.7 3.8 5.35 9.04 2.9 7.91 8.38 6.63 6.06 7.25 0 3.82 0 9.99 6.75 3.26 7.43 0 3.42 9.27 0 3.8 7.44 5.86 7.16 6.17 4.69 5.29 3.8 4.74 4.8 1.05 10.8 9.83 1.66 12.9 4.35 10.4 6.79 3.68 2.08 5.92 6.85 7.6 11.5 10.1 3.9 4.27 7.49 2.67 3.42 4 8.09 10.3 8.18 3.09 7.85 8.48 8.44 8.58 2.41 1.05 3.26 7.03 8.46 5.15 6.67 7.08 7.18 9.33 1.05 9.97 9.42 11.7 11.7 9.69 6.5 12 13.6 11.7 10.7 8.37 5.39 11.8 9.98 11.5 1.05 2.9 7.86 9.12 9.38 10 10.2 11.8 12.7 13.4 9.43 8.89 10.5 2.08 7.9 3.42 10.4 0 9.15 7.22 11.2 11.4 9.9 9.62 9.71 8.98 8.68 7.4 11.4 10.1 9.03 10.2 11 9.25 0 6.87 11 7.6 10.9 8.81 8.68 10.4 8.22 1.05 3.26 11.6 4.62 11.9 0 10.2 3.42 8.25 11.8 5.27 8.02 7.66 10.7 10.1 13 7.88 10 10.3 10.1 8.02 9.67 10.1 9.22 9.67 10.8 6.48 11.4 9.49 8.94 10.6 8.73 10.4 8.37 3.9 8.06 9.58 9.39 9.74 10.5 9.39 9.6 9.83 9.96 11.1 10.6 9.74 6.31 9.72 2.08 9.08 8.46 9.01 3.9 9.3 10.4 9.08 9.79 0 2.08 9.32 2.08 11.5 3.55 5.31 9.61 8.26 4.69 0 5.66 12.7 8.24 4 13.8 2.41 11.2 12.4 10.2 9.76 12.6 12.3 10.8 10 8.84 8.06 8.84 8.15 7.94 4.49 14 11.1 4.42 8.77 10.2 6.33 9.79 9.54 8.21 9.2 10.2 8.64 9.48 5.39 7.41 8.62 10.8 12 11.5 10 6.06 10.9 10.2 6.33 9.26 9.03 0 9.76 5.78 4.62 11.1 9.55 0 7.34 10.2 5.8 11.5 4.86 10.4 1.66 3.42 8.59 6.7 8.66 3.09 11.8 9.97 8.63 2.08 8.5 11.9 8.24 7.81 3.42 5.63 10.4 11.6 10.1 8.55 9.8 10.4 7.68 8.93 10 10.2 10.8 7.39 12.1 2.08 10.7 7.49 10.8 7.2 7.78 7.41 10.1 2.41 8.2 6.79 9.4 8.89 7.91 9.12 9.26 9.93 10.6 8.03 8.33 10.7 8.67 9.31 13.3 8.47 8.78 5.23 6.97 7.78 0 9.74 8.79 7 0 2.41 9.21 9.29 9.89 7.59 8.54 1.05 9.33 9.94 12.8 9.55 1.05 10.3 1.66 8.61 6.92 9.64 9.88 7.65 9.97 9.34 9.25 7.02 10.2 11.8 7.59 8.08 7.59 8.3 0 8.88 4.8 9.6 6.63 4.8 10.1 8.62 11.2 9.06 0 10.1 1.05 10.3 11.7 8.2 5.1 8.96 9.66 8.25 6.03 5.53 14.8 7.45 10.9 1.66 1.66 2.08 10.2 4.27 0 9.98 12.1 7.94 13.2 12.3 14 10.5 9.58 7.03 12 10.9 10.4 6.31 10.6 1.05 3.9 5.83 5.01 11.9 9.35 9.55 1.05 1.05 2.08 5.39 9.05 1.05 11.2 8.76 11.4 9.06 11.2 11.3 11.7 4.49 13.4 13.5 10.9 5.88 9.51 10.9 10.2 12.7 6.73 12.3 10.1 6.27 1.05 10.7 7.97 7.69 3.8 5.56 9.77 2.9 9.49 8.81 6.94 10 6.43 4 9.33 6.67 9.29 9.12 7.9 10.6 6.41 10.2 6.66 11.8 8.63 11.4 12.3 9.06 10.8 9.57 11 10.1 11.9 11.2 8.18 8.89 15.9 15.7 15 11.6 11 11.4 10 6.97 13.1 12.3 3.8 12.4 7.76 13.1 6.5 14.3 13.1 10.6 9.11 6.73 7.23 13.3 10.9 8.6 12.4 4.36 6.5 3.26 7.57 8.67 5.75 9.55 11.7 11.4 14.6 11.7 12.5 10.6 9.67 10.9 12.4 6.31 8.59 10 9.92 12.1 8.69 8.49 9.22 8.41 9.08 8.1 4 8.55 0 9.88 0 9.89 1.66 8.96 12.4 7.73 14.1 12 13.4 12.3 12.2 12.5 11.4 11.2 14 1.05 13 13.6 0 4.27 1.05 6.7 6.79 2.41 2.9 3.55 1.05 3.9 0 0 0 1.05 0 5.86 4.8 4.74 4.62 3.09 3.55 4.96 0 0 7.65 6.69 3.68 8.7 2.67 8.91 9.61 10.9 2.41 9.27 10.3 1.05 9.88 9.75 1.05 8.94 3.09 9.12 1.05 6.48 9.6 10.5 9.86 6.87 10.7 3.68 3.9 9.99 10.9 10.8 9.96 11.8 9.79 6.35 6.9 5.42 1.05 11.3 12.5 8.47 7.3 9.28 10.9 12.1 13.2 10.6 5.63 6.53 11.2 14.9 10.6 6.73 5.35 14.3 13.2 13.4 4.1 9.08 15.7 10 15.4 13.9 2.9 12 10.7 9.34 11.4 4.69 5.15 14.1 11.4 9.11 2.67 3.42 0 3.09 4.8 0 3.42 7.73 10 7.12 11.5 11.3 2.9 5.15 3.42 0 0 9.44 11 1.05 5.15 2.41 7.37 10.2 8.05 8.2 1.66 2.08 5.59 2.12 6.95 8.83 7.35 0 5.1 8.8 8.63 2.9 5.01 0 5.01 7.28 8.62 10.5 2.41 9.16 7.67 3.42 9.76 9.99 9.35 5.27 10.8 8.66 6.66 8.32 4.62 6.51 2.67 1.05 3.9 8.11 1.05 2.67 8.21 6.31 0 3.68 5.27 7.45 5.14 3.8 4 4.69 5.83 9.64 6.55 1.66 11.1 8.56 2.67 2.41 10.4 5.75 3.8 1.05 4.1 3.55 10.4 5.39 0 1.66 3.26 11 9.16 9.4 0 0 6.41 5.31 1.66 7.64 4.49 0 6.33 2.9 7.67 1.05 10.5 10.5 4.42 2.42 2.9 8.08 5.72 7.7 4.96 2.41 5.56 3.09 2.67 3.26 4.86 8.36 6.95 8.02 11.1 4.56 1.68 0 8.53 1.66 12.2 12.4 9.31 9.75 5.53 10.1 0 4.1 4.74 11.4 10.9 1.66 7.79 9.69 1.66 6.03 1.05 4.42 8.22 12.8 10.7 0 13.3 3.55 4.1 1.05 1.05 6.44 1.05 7.43 0 9.81 1.05 5.19 8.82 1.05 7.56 8.1 4 5.06 6.6 0 3.9 3.8 9.42 8.4 9.76 6.56 0 3.8 6.66 4.86 0 6.76 4 2.67 4.27 0 1.66 10.4 5.83 8.86 7.16 2.9 8.19 7.39 2.08 4.8 11.3 3.55 10.7 3.26 4.19 2.67 9.72 1.66 2.41 4.35 8.94 4.96 1.05 7.59 4.1 6.58 2.08 5.27 4.35 10.1 2.41 10.2 1.66 3.55 10.8 11.1 2.08 0 6.33 3.68 9.99 7.76 9.57 7.64 13 10.8 3.55 4.91 6.46 6.35 9.33 2.9 7.96 12.6 9.52 0 10.7 9.31 5.27 1.66 12.5 12.7 3.09 7.91 11.7 3.42 6.97 13.3 4.75 1.66 6.15 6.27 2.67 9.12 10.6 3.43 10.9 6.44 4.69 0 3.09 1.05 3.42 5.1 8.64 8.53 13.6 12.3 9.95 2.67 6.84 6.6 11.3 6.25 0 6.44 0 9.9 8.48 8.18 1.66 3.55 3.09 6.46 2.9 6.23 5.15 1.05 2.9 6.95 11.1 10.2 2.41 6.56 11.1 8.56 7.26 7.43 5.1 8.78 9.6 6.13 10.5 2.41 4.8 8.02 8.84 10.1 5.91 7.85 6.33 1.05 2.9 11.8 7.27 3.55 3.55 9.28 9.86 1.05 6.46 2.08 0 6.58 5.31 11.4 2.76 7.07 12.3 10.4 14.7 7.19 9.06 8.59 6.35 0 7.97 4.69 8.01 11.2 12.6 12.2 10.1 11.3 9.78 12.2 10 11.8 8.8 10.9 9 7.54 0 6.5 6.27 1.05 9.64 7.73 1.66 9.35 8.09 8.09 9.22 11.8 10.2 5.8 1.05 10.2 0 11.9 6.9 8.32 12.1 7.84 6.67 10.1 11.2 6.87 9.38 9.59 7.09 7.5 8.49 10.3 9.24 10.9 7.08 9.54 9.66 8.38 1.66 12 8.5 9.64 5.46 7.64 6.17 2.67 8.62 9.25 8.09 10.7 9.6 13 11.6 10.4 4 7.29 11.8 9.97 11.2 8.5 5.06 2.41 1.05 2.41 11.6 7 7.56 12.3 10.7 10.5 1.66 8.62 8.21 10.4 11.5 9.83 9.4 11.2 7.76 8.63 12.4 8.4 12 10.4 11.7 15.2 7.06 8.51 10.5 9.27 11.5 1.05 4.69 6.78 6.63 2.41 1.05 3.01 9.29 5.88 9.42 5.66 7.65 10.7 7.28 5.39 6.78 2.41 1.05 6.43 1.66 6.15 5.1 5.15 11.7 9.04 9.58 0 1.66 7.02 5.49 8.57 4.96 8.04 2.41 3.9 10.8 5.68 2.67 5.91 5.72 6.75 6.73 0 7.65 0 3.42 8.14 14 5.19 5.35 5.35 11.1 8.1 6.66 8.85 2.08 4.35 3.8 6.15 7.76 6.53 7.95 3.55 2.9 0 1.66 6.82 7.13 7.06 6.39 7.48 8.45 2.67 7.56 5.8 3.26 2.08 4.96 2.68 1.66 7.82 7.43 1.05 1.66 9.93 5.38 8.89 1.05 11.1 11.4 1.36 5.15 6.7 5.39 10.2 6.99 2.9 7.41 0 6.13 5.72 8.42 4.19 0 8.11 12.8 4.8 0 7.39 2.67 11.1 9.53 7.33 9.5 5.35 12.6 1.05 1.05 5.19 5.94 10.6 0 3.09 3.09 8.55 6.89 1.05 6.15 12.2 5.53 11.1 5.42 7.63 2.08 6.49 8.88 6.61 1.66 11.7 11 6.66 10.4 2.08 5.31 1.66 11.5 3.42 0 12.1 0 1.66 11.9 6.5 4.49 4.56 3.8 6.29 1.05 10.6 8.44 8.75 10.2 10.2 12.7 12.1 9.84 8.84 10.5 6.23 10.5 11.9 10.6 1.05 0 15.9 8.76 1.05 10.5 6.92 8.48 13.6 7 4 8.69 1.66 7.73 5.46 4.42 7.51 3.03 9.75 4.96 0 4.56 9.39 5.35 8.51 15 6.46 9.67 7.14 1.05 1.05 2.41 4.1 7.59 6.84 0 4.8 1.05 6.87 2.41 8.78 1.05 6.03 5.66 2.67 3.8 10.1 3.96 1.66 9.56 5.09 7.06 8.88 3.55 1.05 13.1 2.9 7.18 5.15 6.15 10.5 4.1 4.86 8.72 4.56 7.2 5.56 4 5.49 6.31 4.62 6.41 7.09 7.49 8.85 4.19 0 12.6 2.08 6.03 7.82 6.69 7.5 6.01 5.27 6.21 4.1 1.05 1.66 6.69 8.26 1.11 7.76 1.66 8.74 2.08 8.88 7.92 1.05 7.76 5.31 9.8 9.76 1.66 8.25 0 3.9 10 6.23 8.92 8.21 6.43 3.09 10.4 11.3 7.63 0 6.46 2.08 4.27 4 7.47 2.41 9.5 3.55 5.31 5.66 1.66 5.69 8.89 7.73 7.86 0 13.6 6.03 8.7 10.1 1.66 3.42 6.6 5.94 9.59 2.41 1.05 5.27 4.62 9.47 1.05 5.8 5.35 1.08 9.12 3.68 7.92 4.96 9.22 8.6 8.75 7.92 0 1.66 9.85 2.67 2.41 2.08 6.27 0 7.32 10.5 9.69 4.1 7.02 10.2 8.47 4.35 11.9 1.66 9.92 1.05 11.3 4 8.66 13.2 11.8 13 7.53 1.66 11.4 12 12.4 3.26 4.19 7.39 11.6 3.42 13.6 2.67 5.39 9.34 11.4 5.83 7.75 16.2 11.6 9.34 1.05 15.1 11.3 14.5 10.3 4.62 2.41 8.22 10.8 7.87 11.1 4.49 11.7 14.8 12.7 3.42 10.5 10.3 12.4 1.66 9.79 11.3 8.51 0 8.88 8.8 10.3 9.98 9.78 7.66 11.1 8.06 6.92 4.91 10.4 11.7 1.66 3.87 7.09 8.77 7.46 8.61 11.1 4.62 6.25 7.04 11 2.67 2.41 7.97 6.19 12 4.96 7.08 7.25 10.8 0 9.05 5.27 10.5 11 13 7.1 9.74 7.44 10.7 1.66 2.41 6.64 10.6 4.55 10.4 6.63 8.62 1.66 6.03 7.6 0 7.08 6.06 4.19 7.3 3.68 1.05 6.35 5.69 0 8.59 4.19 5.56 9.24 2.41 11.1 6.68 1.66 0 10.6 6.27 3.55 1.05 5.15 9.71 7.48 5.94 6.41 2.08 5.08 0 2.08 2.9 3.55 5.27 11.2 1.05 6.13 4.49 4.8 3.9 6.74 1.66 2.08 5.2 3.26 10.5 3.09 7.05 6.27 0 9.53 1.05 5.1 7.53 4 11.3 9.77 2.67 8.53 8.04 10.5 5.85 9.77 10.3 2.9 1.66 1.66 0 6.15 7.24 3.9 6.79 7.99 4.56 1.05 2.9 5.97 9.91 9.66 2.08 11.4 7.33 9.61 1.66 1.66 8.62 4.1 6.01 8.2 6.17 7.97 2.08 8.62 10.8 11.7 11 8.51 6.54 10.2 0 7.73 11.6 2.9 5.35 2.67 4.8 11.6 3.8 4.56 9.86 8.97 9.6 10.6 9.58 10.9 3.55 10.3 7.68 3.26 8.62 10.5 11.1 11.9 3.68 12.3 0 2.67 11.2 7.8 12.1 13.2 5.83 7.02 10.8 5.83 11.3 6.1 12.2 12.5 12.9 13.4 11.3 12.7 12.2 1.05 6.39 7.06 7.71 10.6 9.84 12.4 8.76 8.85 8.39 10.5 9.06 10.2 9.76 10.4 7.07 9.35 5.1 8.52 10.4 0 3.55 11.4 8.09 9.32 4.74 4.74 9.39 9.44 10.3 9.12 9.02 10.9 9.21 11.3 7.24 6.99 7.7 9.73 12.1 4.62 2.41 8.77 11.9 10.7 7.63 5.39 11.6 6.6 2.9 6.75 8.26 1.22 6.44 6.83 9.66 12.1 4.19 1.21 11.6 8.67 5.49 10.8 6.64 11.1 10.9 12.5 12.3 6.37 9.83 11.4 9.69 5.42 10.4 6.43 6.17 0 13.5 10.2 11.2 10.3 11.9 9.65 11.9 13.5 0 7.48 9.95 0 10.7 12.6 12.8 10.6 9.81 11.8 9.02 10.1 9.77 10.5 5.07 7.76 11.2 7.13 3.8 6.31 5.86 8.05 9.99 8.9 8.45 8.63 10.2 10 2.08 0 10.5 10.4 9.01 9.14 8.09 9.5 9.04 10 3.55 7.83 12.4 10.5 6.08 6.35 11.4 11.7 6.1 11 13.8 9.27 10.7 8.86 10.6 13.2 6.46 9.09 14.4 11.4 2.41 7.88 7.43 8.98 11 10.5 8.43 8.91 7.78 7.18 10.4 10.1 9.93 10.6 4.74 8.69 9.1 11.6 12.1 8.88 8.28 5.15 11.2 8.83 2.08 0 10.7 2.67 7.03 11.2 7.59 12 5.56 2.9 9.39 9.19 3.09 4.86 8.71 8.09 9.6 2.41 7.53 10.2 0 10.3 6.23 9.34 10 9.58 3.9 3.68 8.67 5.06 6.06 12.5 9.8 4 9.48 8.76 10.6 1.66 11.6 9.79 9.94 0 5.76 4.86 10.3 10.5 3.8 0 3.09 2.08 7.28 2.67 9.37 2.9 6.37 5.23 8.09 10.8 2.08 8.55 9.12 5.2 7.89 2.99 4.35 6 6.5 10.9 7.17 2.08 6.71 0 10.6 7.96 5.06 7.21 1.05 2.41 9.01 10.1 3.68 8.23 6.46 1.05 3.55 3.26 7.82 8.7 1.66 0 8.33 6.83 7.26 8.59 12.1 2.9 7.72 5.66 6.96 6.23 3.91 8.46 6.19 5.69 3.09 5.49 7.8 6.43 3.26 4.9 6.21 0 6.67 5.96 4.8 1.05 2.9 1.05 2.9 6.06 3.55 1.05 7.85 2.08 8.05 6.27 5.75 9.38 5.19 4.27 9.79 9.73 5.27 1.05 1.05 1.66 1.05 0 9.11 2.67 1.66 6.33 4.49 3.42 2.41 10.8 2.67 9.17 7.21 0 8.78 12.6 14.1 8.42 5.59 7.55 6.85 4.91 10 12.7 10 5.96 5.83 7.54 2.9 7.51 4.74 5.46 3.8 7.92 10.8 9.24 4.91 8.59 7.23 11 10.1 8.86 7.74 9.14 7.3 9.98 10.1 9.93 14.3 12.6 5.53 10.7 9.66 6.92 9.96 8.72 10.4 8.92 10.6 7.15 6.33 9.99 2.08 0 1.66 12.2 9.22 5.27 10 10.5 2.41 2.41 16.5 10.2 8.72 9.48 0 6.03 13.8 9.33 0 11.6 11 9.34 8.27 10.1 11.8 8.63 2.67 7.65 10.4 11.7 9.99 8.84 10.2 2.08 9.05 9.25 13.4 9.78 10.9 10.1 12.4 4.62 12.6 3.55 4.49 11.6 11.8 11.4 14.1 11.5 10.6 8.77 10.8 8.14 4.35 9.79 8.52 7.72 8.7 13.9 7.25 10.6 10.3 8.76 10.9 10.4 12.7 9.9 9.02 10.5 7.8 10.5 10.9 10.4 9.77 10.3 9.64 11 10.7 10.1 9.32 9.72 9.98 14.4 10.7 9.2 11 10.4 9.36 10.9 10.5 11.5 9.9 11.3 11.8 10.9 12.1 11.2 9.13 9.85 8.36 12.8 12.7 11.8 11.2 3.26 6.61 7.84 6.49 8.56 1.66 2.08 8.73 0 10.2 6.87 8.35 6.58 6.76 8.41 11.2 13.9 10.7 1.66 9.19 7.18 4.35 9.86 9.31 11.2 5.27 12.7 3.55 12.4 11.2 8.29 8.85 8.4 10.2 9.15 12.3 9.67 8.43 8.87 9.44 9.5 10.8 10.3 0 9.53 9.42 10.1 4.56 1.66 11.1 14.4 7.67 9.2 10.6 7.97 9.38 8.05 4.35 10 5.69 2.67 5.35 10.3 11.5 13.3 9.14 9.88 9.28 11.6 12.9 1.05 10.2 13.2 4.1 10.8 10.4 9.79 8.14 9.55 11.6 10.6 7.91 5.91 2.08 10.4 2.9 5.59 8.05 10.2 7 13.5 2.67 1.05 13.2 7.64 5.19 4.35 7.7 3.8 11.8 10.8 10.5 6.44 11.2 8.42 1.05 9.59 8.56 5.55 3.09 12.8 11.1 11.1 0 9.28 1.66 4.56 1.05 2.08 5.15 0 5.88 5.23 1.05 4.62 7.57 12.2 10.9 12.9 9.61 11.3 9.19 11.6 8.81 5.39 9.36 8.91 10 7.85 5.66 10 5.86 5.19 10 10.1 6.9 11.1 9.27 0 6.96 14.6 8.78 1.05 4.56 3.8 0 12.9 10.4 9.1 13.2 10.5 3.26 11.1 7.15 4.27 3.55 2.08 2.08 8.33 2.08 1.05 10.2 10.6 12.9 7.33 7.35 8.77 8.2 8.48 1.05 5.56 7.19 8.36 10.8 9 8.25 8.34 3.42 8.12 11.2 4.19 10.3 6.13 5.53 7.27 5.49 11.2 10 4.1 4.35 9.36 5.73 5.27 3.8 6.01 9.51 7.73 11 15.6 5.19 6.82 12.1 1.66 2.9 3.9 12.5 11.8 12.2 11.2 11.1 8.77 8.45 7.78 10.3 7.73 9.3 4.27 5.94 8.65 10 8.13 13.5 11.4 1.05 11.2 13.5 1.05 7.25 9.67 8.42 10.4 6.04 11.3 9.24 4.1 6.64 9.22 5.56 8.66 5.59 13.3 4.35 8.14 11.1 10.1 8.22 2.67 3.68 0 7.35 11.2 10.7 11 6.1 10.9 9.27 9.27 2.41 2.56 1.66 13.2 4.86 5.35 10.3 6.66 5.94 1.05 7.33 10.3 9.96 10.2 10.8 12.1 9.06 9.42 10.8 13 8.08 0 13.4 2.41 6.1 1.05 8.26 10.2 10.6 10 10.8 10.9 8.63 9.83 8.14 6.2 9.22 7.44 10.1 8.77 9.04 5.15 8.59 8.39 11.2 8.47 11.5 10 7.62 9.36 8.24 9.52 10.6 7.32 8.21 10.8 8.21 10.2 7.88 9.41 10.7 8.73 9.97 11.1 8.73 11 6.33 8.68 6.01 11.8 4.49 8.24 10.3 11 11.7 7.15 7.08 9.83 1.66 8.57 9.67 9.41 8.95 10.1 8.66 9.53 8.49 11.3 7.86 10 9.29 11 11.1 10.9 11 8.16 9.07 5.1 1.12 8.33 8.59 6.91 8.73 10.1 9.88 11.6 8.35 9.88 11.8 8.58 8.87 10.4 10.9 8.93 8.5 7.39 8.78 11.5 7.99 12.2 10.6 12 11.4 8.57 10.2 9.09 11.1 10.6 10.3 9.95 9.43 10.8 8.44 8.92 9.9 10.8 10.7 10.9 2.67 9.76 8.48 8.47 8.65 10.9 10.6 7.61 8.71 8.77 9.37 9.1 12.3 9.31 11.1 9.52 10 6.49 11.2 1.05 10.2 12.2 7.85 9.56 11.5 5.8 8.83 7.61 10.6 5.59 8.44 3.26 9.36 7.57 7.23 7.44 6.96 6.39 9.46 8.79 11.1 9.53 8.94 8.79 9.99 12.7 8.25 11.4 6.75 8.92 8.86 7.63 6.1 6.06 9.78 9.57 10 8.59 9.61 7.03 0 9.6 0 10.6 5.35 7.78 8.8 5.53 8.3 9.95 9.42 8.56 10.4 0 9.93 10.8 9.24 7.48 9.69 8.23 12.5 11.7 9.65 8.69 5.53 7.97 10.1 5.88 10.2 10.6 8.4 8.36 10.6 8.22 9.87 10.3 9.89 3.82 4.56 8.93 11.2 12 11.2 10.4 8.4 5.42 6.17 8.7 9.83 8.61 14.4 7.1 10.1 10.7 6.96 2.67 10.6 9.76 9.96 8.51 10.4 8.62 7.09 8.54 9.77 8.37 10.1 7.9 10.2 2.41 9.49 10.5 5.99 8.58 10.8 4.19 6.33 5.91 7.22 9.52 10.8 2.9 9.89 5.75 9.34 9.62 7.5 9.12 10.9 11.2 10.6 6.2 11.6 6.99 8.77 4.35 5.75 4.91 12 8.25 8.36 6.41 9.97 9.76 8.99 9.16 8.86 4.91 9.05 3.09 6.5 9.45 10.4 9.15 11.9 6.19 7.96 10.9 8.51 10.8 2.41 11 10.1 8.66 11.1 8.78 9.5 8.41 4.56 7.58 10.6 4.27 7.01 14 9.25 9.98 9.28 9.67 8.35 9.64 10.7 10.3 12.8 9.82 10.6 9.95 8.32 7.98 7.57 7.38 9.46 8.47 7.66 7.65 10.6 10.6 5.53 9.64 11.1 10.5 7.36 10.3 10 2.67 11.3 9.54 10.8 10.9 3.8 9.04 10.4 9.28 7.66 4 11.4 10.7 7.19 2.9 10.4 8.29 9.61 10.1 4.19 9.31 8.97 10.3 11.8 8.23 11.2 9.29 11.6 9.3 8.84 9.97 11.2 11 10.3 9.72 11.6 6.17 7.41 7.67 9.22 7.23 10.9 11.1 8.08 9.07 9.36 9.7 10.1 11.1 6.06 8.24 8.35 5.1 10.4 9.94 9.38 9.34 7.85 8.08 9.4 7.76 8.85 7.83 7.99 9.17 11.8 6.97 10.4 8.44 8.87 9.43 4.1 10.1 9.66 10.5 9.44 11 7.68 12.6 11.4 9.78 8.99 4.35 10.9 9.69 10.6 7.19 9.65 10 11 9.19 11 11.5 10.2 11.1 7.02 11.2 10.2 12 8.36 10.8 9.52 8.2 12.3 9.48 0 8.24 10.4 10.8 8.92 7.61 12.3 9.83 11 9.51 9.17 10.4 11.4 10.2 8.78 9.34 10.3 9.56 11.3 11.4 10.3 7.34 9.87 9.74 11.2 9.13 11.1 9.49 7.96 10.7 10.3 8.76 11.1 8.07 10.7 8.25 12.6 6.37 8.97 5.99 7.36 11.5 7.94 5.09 1.66 8.97 8.92 9.98 8.78 9.53 10.4 12.3 10.4 7.25 8.58 0 12.8 6.23 6.48 10.6 7.35 10.8 7.32 4.91 10.4 8.21 8.43 10.5 12.1 9.02 11.2 3.9 10.5 7.73 1.66 1.66 7.54 9.94 5.49 11.8 9.75 9.43 3.9 9.77 8.7 10.8 10.6 13.5 8.51 3.26 8.86 9.29 1.66 9.39 10.6 8.97 8.68 4.1 11.3 12.7 8.45 6.44 4.19 8.67 10.9 10.6 8.22 12 8.81 8.68 9 7.89 8.91 6.92 9.77 9.03 1.05 0 8.75 4.86 11.1 10.2 10.2 8.18 11.6 11.4 0 9.27 11.6 10.6 8.01 11.4 1.05 9.57 12.1 13.6 11.4 6.58 10.6 11.8 6.06 13.3 13.8 5.78 9.08 11 14.7 10.4 8.78 4.91 3.09 5.99 4.74 12.1 2.9 12.9 2.67 9.47 10.3 9.52 7.82 11 10.7 0 9.63 9.3 13.4 2.41 9.94 11.6 8.17 7.72 8.5 6.95 8.78 9.79 10 8.24 9 16.3 10.2 7.7 8.37 10.9 7.66 8.99 8.84 8.09 6.63 9.05 10 10.5 11 11 9.36 1.66 9.19 9.97 10.3 9.45 9.76 8.7 0 15.2 8.24 7.73 5.06 9.4 7.92 9.13 9.59 8.66 8.25 8.94 11.3 9.47 9.51 7.84 6.94 7.25 10.1 5.35 7.73 4.88 9.97 7.36 6.5 4.74 8.68 9.53 1.66 5.86 7.26 7.68 9 11.1 8.42 13.9 4.49 8.6 9.41 9 6.92 11.4 2.08 9.07 8.18 10.9 5.49 11.7 11.7 0 9.02 9.84 9.17 12.5 9.76 11.1 10.3 11.1 2.41 10.6 7.18 10.9 2.67 10.1 1.66 8.38 1.2 4.27 12.1 10.4 9.95 10.6 9.68 7.83 7.92 9.11 5.31 3.26 6.15 1.05 7.74 9.15 6.8 5.78 5.31 5.56 9.32 1.05 9.47 8.02 1.66 4.86 11.1 8.95 8.9 8.79 10.2 8.58 8.08 10.1 8.12 6.56 7.89 7.92 10.8 11.1 8.18 9.51 8.04 4.86 3.8 6.67 7.02 7.22 2.08 8.3 1.05 2.67 8.36 9.82 12.8 8.43 5.93 11.3 12.2 11.5 1.66 10.4 5.63 5.59 1.4 7.34 2.32 8.28 7.72 6.21 8.67 8.49 11.3 10.4 12.2 12.5 0 8.36 8.91 8.31 8.62 8.98 11.2 9.72 6.83 4.03 10.1 8.08 12.4 10.9 10.8 4.35 4.86 9.43 7.71 6.21 11 8.69 6.64 11.5 9.96 1.66 8.28 9.92 9.03 10.1 10.4 12.5 12.3 10.5 3.68 10.4 8.7 0 3.55 13.5 9.54 8.99 9.47 2.67 9.9 6.76 5.06 9.7 8.84 5.15 9.38 9.12 10.7 10.1 7.8 8.93 2.67 0 11.9 10.5 11.8 9.08 7.17 9.29 7.94 0 10.2 8.13 10.7 12.5 7.4 11.7 10.2 8.74 8.81 9.76 6.61 10.8 8.05 9.47 10.7 8.46 8.53 9.88 8.18 8.85 8.05 11.8 9.03 8.53 12.4 9 8.84 11 8.07 4.86 6.62 7.5 5.63 10.7 8.3 8.58 8.37 6.76 8.44 8.44 7.37 9.65 2.08 7.73 9.35 10.2 9.14 7.85 7.87 7.45 11.3 9.33 12.1 8.51 10.7 10.8 5.69 8.95 7.78 9.28 7.41 7.67 5.49 9.42 8.6 2.9 7.62 10.3 4.91 8.46 8.76 2.41 10.7 4.37 9.42 11 9.1 7.25 6.35 9.32 6.15 7.7 10.3 11.5 3.42 8.04 6.41 6.53 11.4 7.91 3.55 10 9.71 10.6 8.35 9.94 4 10.4 9.86 6.08 6.44 8.46 9.01 9.3 10.4 1.66 9.67 10.7 8.01 9.41 9.07 4.96 4.27 10 2.08 12.9 9.85 3.26 9.47 9.29 8.85 2.67 8.18 2.41 8.54 2.9 5.27 2.08 5.53 9.54 8.09 11.3 4.74 7.87 9.97 10.1 5.01 9.42 8.72 12.9 9.71 7.95 7.86 9.72 13.5 8.81 8.9 8.96 6.19 8.21 3.26 9.51 9.94 9.72 8.37 9.61 6.29 8.18 6.56 8.83 8.54 9.44 4.19 8.09 9.96 8.57 7.43 10.1 8.39 8.9 8.01 6.53 8.55 7.28 0 7.16 1.66 8.56 5.99 4.91 1.05 10.7 7.88 10.6 9.7 4.69 8.96 8.08 10.1 6.89 12.6 8.32 8.58 8.26 7.96 6.31 9.22 8.19 9.98 9.81 1.05 9.2 8.62 9.3 9.06 8.6 9.35 8.33 9.52 5.39 11.3 9.77 5.86 10.2 9.72 6.85 10.8 5.46 9.56 8.65 8.36 7.7 9.71 8.72 11.3 9.18 10.5 7.02 9.8 11.8 9.99 8.31 9.06 8.89 10.3 8.67 8.76 3.8 6.43 7.91 6.25 8.1 9.52 8.43 10.1 0 10 8.26 9.49 7.31 8.91 12.1 8.78 11.1 8.56 8.02 11.3 6.9 7.14 8.06 11.6 9.66 11.5 8.77 10.2 9.55 9.08 7.86 7.7 8.83 9.96 9.61 2.08 8.46 9.47 10.9 12.1 7.24 9.06 5.27 9.72 8.23 9.89 9.72 10.1 8.46 8.25 10.8 7.01 8.37 8.03 7.65 5.42 11.4 8.3 9.89 6.08 10.2 7.75 8.65 0 10.2 7.63 6.7 7.47 9.94 10.2 7.37 9.55 9.26 9.98 0 7.21 7.01 9.47 10.2 8.02 9.3 3.8 9 2.41 8.72 12.1 7.38 7.94 12.4 7.54 6.83 11.3 10.4 7.13 12.1 12.6 12.1 4.56 9.68 8.96 10.9 8.1 7.67 6.79 8.26 8.92 11.3 7.18 9.55 7.78 8.75 6.7 9.76 9.14 6.37 10.5 0 3.09 8.28 6.64 10.2 6.48 4.86 8.25 9.64 10.2 11.1 8.43 7.83 6.43 9.02 7.27 9.99 8.57 10.4 9.86 8.8 11.3 10.1 8.39 8.16 10.2 8.8 8.66 6.82 1.66 6.83 9.42 6.03 4.56 7.29 8.7 2.67 9.42 3.8 11.6 8.2 5.49 6.95 10.5 7.3 8.73 7.59 8.28 11.8 10.1 11.1 7.94 5.31 5.42 8.05 0 8.43 8.72 8.52 9.76 7.63 10.2 4.27 9.92 9.32 9.54 10 7.93 8.01 6.63 10.6 8.96 9.69 8.78 9.18 8.45 7.84 9.38 7.99 10.1 7.66 9.58 0 8.64 9.78 10.3 9.07 2.41 8.55 8.6 7.92 7.26 8.72 4.35 9.33 11.6 11.2 8.32 8.48 9.33 7.62 8.34 11.1 10.1 9.31 11.8 4.49 8.06 8.9 10 9.28 9.48 8.87 9.35 10.4 10.8 11.5 10.1 7.96 8.13 7.27 9.24 9.99 8.29 7.6 9.03 9.84 10.1 5.06 7.43 9.99 8.42 8.09 12 8.58 8.74 10.1 8.82 6.67 9.88 9.87 7.33 10.3 1.66 9.59 7.13 9.85 8.02 4.49 9.52 9.55 9.25 7.82 4.27 9.85 5.75 9.14 8.4 9.81 9.46 8.18 10.4 8.48 11.2 2.9 9.83 7.3 8.58 9.04 9.94 9.73 5.66 10.1 10.3 1.66 1.05 7.5 7.26 6.23 7.56 10.6 8.62 4.42 7.89 7.89 9.83 5.01 9.43 10.5 9.4 8.2 10.2 12 9.55 5.66 7.8 8.97 9.99 6.19 7.14 10.8 10.5 9.07 10.8 8.64 8.38 9.1 8.24 12.1 8.58 9.74 2.9 7.5 6.97 8.54 9.22 2.41 9.02 9.34 11.3 8.92 10.5 6.15 10.8 9.33 8.29 5.8 8.85 8.11 10.1 8.05 8.5 5.35 4.91 9.86 6.31 9.4 5.01 9.28 11.6 4.74 9.23 8.68 9.61 11.3 8.04 9.42 7.72 6.33 8.28 9 10.9 1.05 10.2 10.9 0 8.94 9.05 9.62 11.2 9.53 10.9 11.5 7.92 7.77 7.66 3.98 9.06 9.1 8.44 9.17 9.04 3.55 9.8 4 9.93 8.72 10.6 9.74 4 7.52 7.62 9.07 8.27 11.6 9.79 11.6 3.42 7.94 8.78 10.4 10.2 8.73 9.42 9.76 9.99 10.4 6.5 7.11 8.44 8.48 5.42 6.51 9.09 15.9 7.92 7.07 11.1 7.64 9.71 9.02 10.7 10 11.8 10.9 8.64 10.8 3.8 8.18 12.5 11.5 4.1 7.51 1.66 8.46 8.68 6.66 7.31 0 2.08 7.69 4.86 8.32 8.69 7.35 2.9 9.93 7.07 8.69 10.5 9.25 10.1 6.89 3.68 9.89 9.45 9.65 10.6 8.18 9.29 0 10 9.51 6.1 4.74 7.62 4.35 8.54 5.51 7.17 0 11.2 7.15 6.5 10.8 9.03 7.86 2.67 1.05 8.64 9.14 4.13 7.43 11.1 0 1.66 5.86 8.77 8.97 9.44 8.15 7.73 7.45 3.8 10.1 6.8 11.3 9.15 11.8 1.66 9.61 9.68 7.12 5.53 11.1 10.1 7.18 10.4 8.39 10.9 9.11 6.63 0 9.22 8.02 10.3 8.38 9.54 8.5 10.5 7.02 8.01 11.4 8.53 1.66 8.89 6.58 7.97 7.99 8.3 12.4 8.36 8.44 7.64 10.2 9.29 10.1 9.63 10.3 7.8 10.6 8.44 11.1 8.48 8.85 8.83 7.37 7.43 10.3 10.2 11.9 8.82 10.5 7.66 8.93 10.3 8.73 9.26 11 9.43 9.44 10.5 3.42 11.4 9.51 8.72 5.66 10.2 11.5 10.5 9.14 7.86 8.48 9.51 12 9.49 7.44 9.34 8.58 8.17 11.2 7.56 7.37 9.71 6.92 7.05 10.3 10.6 11.3 8.45 7.03 9.68 7.4 12.1 8.53 9.81 4 9.38 10.1 9.94 3.09 11.6 9.14 10.1 7.77 8.08 7.88 9 11.2 7.68 10.2 7.57 10.3 8.39 3.26 5.49 9.25 8.41 10.2 9.61 7.7 9.83 6.55 6.55 8.13 8.54 9.74 7.87 8.8 13.3 9.17 7.45 7.39 7.97 10.2 11.5 12.3 11.8 11.2 9.57 10.7 9.42 9.69 9.53 10 13.7 10.6 6.03 8.83 8.53 10.1 0 12.4 10.3 8.76 8.33 9.38 8.82 8.12 10.6 10.8 6.43 9.24 7.96 9.2 10.1 8.67 8.21 8.3 8.88 6.19 9.09 8.13 9.04 6.86 8.63 7.24 8.19 8.39 8.25 8.52 9.79 9.14 3.9 7.6 10.1 6.56 8.26 6.56 8.29 9.68 8.36 9.83 4.74 7.99 2.08 9.39 11.2 2.9 9.22 8.07 6.56 3.68 10.9 8.62 7.05 9.21 2.08 7.4 10.1 8.6 2.67 10 10.8 1.66 9.61 8.59 5.83 10.8 11.3 9.14 9.79 10.2 11.4 10.4 8.41 10.4 8.57 9.38 6.27 10.8 6.41 8.84 11.3 8.32 8.58 8.36 10.8 7.96 10.5 10.4 4.78 10.6 7.45 9.56 7.15 10.9 1.66 10.8 10.3 9.05 9.54 8.89 1.05 7.7 8.41 10.4 8.36 8.5 8.57 6.27 9.84 11.4 3.26 0 12.2 11.6 7.97 9.85 6.82 11.1 10.4 8.33 4.62 10.9 10.1 10.9 4.56 10.1 8.67 12.4 8.76 10 8.9 8.72 9.26 3.42 12.1 8.51 5.19 9.21 5.39 9.31 2.9 13.1 10.3 7.74 7.32 9.43 8.54 3.8 1.66 9.61 10.2 11.6 9.21 10 10.5 5.91 9.63 11.4 8.77 7.6 7.74 1.05 5.75 1.05 10.8 8.81 10.2 4.96 10.2 8.71 9.59 10.4 9.9 9.48 11.1 4.19 7.31 7.35 7.74 9.07 2.41 1.05 4 8.26 4.19 6.48 2.9 4.96 4.96 1.72 3.42 2.08 4.33 3.8 11.9 4.27 7.61 4.35 5.03 2.67 10.1 0 6.06 6.1 6.13 5.31 5.23 4.35 3.68 3.9 3.68 8.38 3.42 5.69 2.9 6.82 4 1.05 8.52 4.27 0 7.45 5.01 10.7 9.39 7.98 9.58 2.41 9.64 10.6 0 10.2 10 6.69 11.2 0 11.2 10.8 4.91 10.5 10.4 6.15 10.6 9.4 5.45 10.1 10.3 6.35 8.33 8.06 12.8 8.7 10.1 0 1.67 9.99 9.92 10.8 9.06 9.86 8.51 7.06 6.94 12.2 5.37 1.05 2.41 9.58 3.55 8.65 3.09 7.31 12.1 10.5 9.28 6.8 1.05 14.8 4.35 9.83 4.56 10.3 4.42 7.75 11.3 8.2 11.3 5.42 10.4 9.7 8.25 7.19 9.25 8.64 4.91 2.9 8.89 3.68 8.38 3.8 10.5 6.27 10.9 9.6 15.8 7.48 2.41 11.3 9.54 11.7 11.1 11.3 9.69 9.21 12 8.23 11.6 10.3 9.72 7.44 4.56 11.3 12.3 12.1 11.7 11 10.3 11.8 12 6.99 13.4 10.7 10.7 8.16 10.7 8.91 2.41 11.4 9.96 11.1 9.35 10.4 10.2 3.09 9.19 11.9 11.9 5.46 8.01 7.23 8.79 9.18 5.23 8.08 12.4 7.18 10.2 7.03 7.1 10.7 10.1 10.7 9.87 11.7 7.33 9.65 8.89 5.72 10.9 9.36 10.1 9.08 9.25 8.85 8.43 8.09 9.99 9.23 9.86 11.6 9.05 11.6 6.15 5.06 9.2 9.54 12.3 0 5.99 4.56 9.32 6.86 11.1 6.41 8.24 5.69 4.27 11 7.73 1.05 7.99 10.3 5.96 8.08 9.84 10.9 11.2 6.46 12.7 9.8 9.55 9.83 10.4 9.82 7.44 5.69 10 8.63 7.72 12.1 9.55 10.6 5.01 11 9.9 11.1 11.5 9.95 9.84 1.05 8.39 6.7 9.3 10.9 9.19 8.21 11.8 9.72 4 10.9 8.51 2.1 12 11.1 11.9 6.1 9.79 7.63 7.91 12.2 5.23 11 2.67 9.66 3.26 7.86 6.55 9.31 12.1 3.09 8.14 8.26 10.3 4.49 6.99 8.88 10 10.4 11.4 4.91 8 5.78 9.86 6.46 9.68 8.6 6.8 4.1 8.39 9.11 11.6 10.6 12.5 6.85 11.7 8.04 11.1 10.9 12.2 8.39 9.18 8.72 10 8.75 9.82 5.96 12 10.3 5.8 8.98 2.9 9.99 9.71 10 3.9 2.41 5.69 10.3 10.4 9.66 11.2 9.31 10.5 10.9 10.3 7.02 9.07 9.69 9.27 9.63 9.44 10.5 6.13 10 12.1 11.4 1.66 8.25 7.37 8.91 9.71 12.9 7.51 8.2 12.5 10.7 9.11 7.57 8.35 6.31 9.28 6.46 9.7 9.26 13 10.3 10.6 9.77 8.25 8.12 10.4 5.69 7.17 12.3 8.74 8.57 3.09 2.9 9.92 10.9 9.86 3.26 6.35 9.25 11.6 6.1 8.1 7.66 6.99 4.1 7.57 6.48 7.8 7.61 0 3.26 9.22 10 5.1 5.49 7.42 8.1 8.42 0 2.41 10.1 8.82 0 6.95 6.03 10 9.11 11 4.74 12.1 7.7 8.87 7.5 9.07 7.78 4.8 10.2 8.31 10.5 9.38 3.8 0 2.9 1.66 9.17 8.96 7.71 9.96 5.01 9.97 9.29 8.73 5.49 6.35 8.88 9.56 0 4.58 13.8 10.2 4.49 10.1 11.5 7 6.57 4.96 7.47 8.64 8.48 7.67 5.91 3.9 8.46 11.3 8.92 5.96 10.9 9.35 9.47 0 9.93 2.67 10 13.2 5.01 2.9 9.62 8.59 11.6 6.63 8.51 11.5 10.6 8.78 9.1 8.19 11.9 8.26 9.92 8.06 10 4.2 3.55 3.09 3.26 6.25 11.8 6.39 11 10.5 10.2 13.5 6.17 6.86 10.8 8.01 11.1 0 8.5 9.67 7.48 7.6 7.51 5.66 8.06 7.57 8.46 7.6 0 6.58 6.37 7.36 6.44 10.8 9.52 10 7.55 7.85 2.67 9.11 9.64 4.96 14.1 9.53 4.27 8.47 5.35 1.66 3.68 6.61 1.66 8.14 9.67 0 10 10.3 9.15 9.79 8.55 10.1 10.3 9.89 7.96 9.4 3.68 3.09 9.42 9.35 5.72 9.12 10.8 5.06 8.48 10 8.98 9.78 8.49 6.94 9.24 4.62 5.72 9.46 10.8 9.26 9.13 3.8 10.1 7.56 13.2 9.61 3.26 10.5 7.95 6.33 7.56 4.27 10.4 9.52 9.47 11.6 10 7.17 5.15 9.69 10.7 5.46 10.4 9.88 10.2 8.96 7.09 9 9.72 9.82 9.25 8.83 13.4 6.25 8.67 9.12 13.3 10.8 4.62 5.39 7.6 3.26 7.88 3.42 8.62 6.44 5.39 8.59 8.29 9.53 7.15 10.1 6.43 3.9 10.5 8.6 8.59 10.2 9.92 9.01 9.69 8.46 9.59 9.76 3.45 7.42 5.96 8.18 7.37 4.91 4.96 5.8 11.8 7.18 4.1 9.13 9.92 7.43 2.08 2.41 7.25 1.66 9.85 6.7 6.87 7.78 7.74 10.2 8.22 6.94 8.8 8.87 9.84 11 8.94 8.96 4.62 10.4 10.8 10.9 9.72 10.8 8.29 6.96 4.19 8.85 9.3 9.52 2.08 9.11 0 2.9 7.32 6.31 10.8 9.92 5.74 5.8 8.5 10.2 4.42 8.34 8.44 12.9 6.37 2.67 9.46 11.4 7.78 1.05 5.19 3.26 5.39 6.69 2.67 7.09 8.69 4.96 9.22 10.2 8.4 10.3 9.36 9.93 10.1 4.42 11.4 11.4 10.4 9.17 9.01 9.2 10.3 10.8 8.39 8.49 11.6 11 9.41 10.2 12.9 11.2 9.25 11.7 11.3 2.67 10.3 9.92 8.99 9.43 11 9.97 11.1 5.78 10.7 9.68 10.5 9.63 7.89 9.76 6.9 5.66 8.18 5.35 5.63 9.58 8.4 7.44 9.07 7.23 11.1 10.3 11.1 8.19 1.66 9.38 9.25 11.3 11 9.61 10.5 9.99 8.75 3.42 10.4 1.66 1.66 11.6 9.21 9.15 12.1 10.8 10.2 4.42 0 5.99 9.15 10.7 11.9 9.8 11.7 7.93 10.6 10.6 5.53 9.36 9.74 8.76 12 11.8 9.53 8.48 7.76 8.53 11.7 11.1 12.6 7.13 7.85 6.35 7.57 5.59 6.99 10.8 3.68 10.2 11.7 9.35 11.3 10.7 13.1 9.7 11.4 11 10.1 10.7 8.24 10.5 9.5 10.1 9.22 1.05 10.4 6.44 7.86 10.5 7.91 10.1 11.5 8.56 5.19 7.6 5.46 9.18 9.02 7.29 10.4 9.84 6.64 8.96 8.56 11.8 10.5 8.72 10.2 10.3 10.4 11.4 9.48 6.69 2.08 11.9 9.06 10.6 0 5.86 11.3 9.28 1.05 10.1 6.86 10.2 12 2.41 2.67 11.4 11.3 9.84 8.1 6.46 0 0 1.05 11 6.31 5.19 1.66 12.4 10 1.05 2.9 8.66 2.41 11.2 9.2 6.13 7.12 11 7.95 7.64 11.4 9.94 7 11.2 10.6 8.87 10.7 9.86 8.38 8.11 8.43 9.91 11.1 0 8.57 10.9 8.08 5.42 4.8 10.7 6.76 10.8 9.37 9.57 16.1 8.96 9.76 3.8 8.4 4.42 1.66 10.9 2.41 9.71 10.9 8.75 3.09 9.72 5.19 8.58 11 9.37 10.2 13.3 5.1 1.05 7.92 8.57 1.66 8.37 8.26 10.5 2.9 7.97 10.2 0 10.2 7.63 0 8.44 12.5 5.27 10.4 10.1 12.2 2.08 10.3 7.95 10.9 8.02 9.26 7.67 9.07 7.3 9.78 1.66 10.5 7.6 12 9.24 10.5 8.78 10.1 9.44 11.8 9.37 8.5 10.8 11.6 0 7.7 10.9 4.35 7.15 8.41 6.1 10.3 10.2 1.05 4.86 4.27 8.47 1.66 12.8 10.4 9.05 10.9 8.07 9.95 5.69 9.72 10 6.31 8.56 6.99 10.1 2.41 7.32 8.63 7.57 0 10.5 9.37 7.6 9.16 15.8 14.3 13.5 12.4 10.5 12.5 14.1 3.42 16.4 8.41 13.4 13.7 13.7 13.6 13.5 11.4 12.9 9.86 14.4 2.67 12.4 12 9.79 12.5 12.5 13.1 15.3 13.6 12.3 13.2 12.9 13.2 12 12.6 12.2 14.2 13.1 12.4 8.52 9.39 13.4 5.96 14.2 14.3 13.5 11.2 9.04 13 13.2 13.2 14.3 11.9 14.8 2.42 3.9 2.41 5.78 7.98 12.4 1.66 4 14 9.71 10.5 11.2 10 10.3 11.9 13.3 13.2 12.3 13.6 13.2 12.7 13.6 11.3 13 13.6 12.7 8.75 13.8 13.2 13.6 12.7 12.8 13.2 12.6 9.44 9.86 12.6 3.09 12.6 9.1 8.52 14.9 9.92 10.6 8.87 9.81 2.41 7.53 10.9 10.2 6.75 7.34 11 10 9.5 3.9 4.1 1.66 3.09 3.09 11.4 4.74 2.9 9.96 0 11.8 5.86 8.08 11.7 13.3 1.05 9.42 7.33 12.2 13.4 10.3 11 10.4 8.6 7.11 11.3 9.84 11.5 12.6 8.56 8.76 12.6 10.6 10.7 7.01 8.78 9.97 9.41 13.6 4.35 6.73 7.44 6.61 4.74 2.67 9.44 0 12.6 4.86 2.08 5.49 11.1 14.3 10.7 3.09 10 8.91 11.3 3.09 1.66 7.08 7.17 4.42 0 8.2 9.85 6.35 5.31 5.66 10.3 5.8 3.09 0 8 1.66 4.74 6.53 5.69 6.03 9.09 5.86 13.6 6.81 1.66 9.57 12.6 12.6 7.94 9.2 10.8 4.91 8.59 10.3 12.1 9.24 9.23 10.3 8.83 5.31 7.51 9.27 6.1 8.33 10.4 9.76 10.5 8.01 8.8 11.4 9.54 2.92 8.39 9.44 9.56 10.9 6.8 8.44 3.09 1.05 8.79 7.58 8.32 8.75 7.97 8.72 2.67 9.49 8.19 9.51 8.92 7.86 11.3 6.27 10.9 2.08 8.15 5.46 7.27 7.9 9.51 8.14 3.42 11.8 8.12 4.8 7.98 6.44 9.05 8.49 9.97 8.98 4.86 12.4 4.19 4.62 5.64 9.03 2.41 4 9.76 12.7 3.26 10.7 8.97 4.86 4 8.37 11.1 11.2 8.7 8.16 7.46 4.62 5.69 7.05 10.5 10.4 12 9.93 11.1 11.5 7.7 10 6.92 5.66 7.97 3.45 4.8 8.36 4.69 9.49 6.08 10 1.66 9.53 1.66 11.7 8.98 6.03 7.27 6.76 7.82 11.4 8.96 8.94 10.6 6.13 7.29 5.72 8.09 4.35 7.52 5.69 8.91 12.9 1.05 7.85 6.85 9.81 11.3 12.6 9.42 9.84 9.06 9.59 9.19 4.27 4.27 10.4 9.95 8.9 10.2 1.05 9.31 9.83 7.52 9.49 0 0 7.99 4.1 12.5 3.09 12.2 12.3 3.8 8.99 6.57 7.78 8.93 7.83 9.49 8.17 9.03 11 4.86 6.33 2.41 4.1 12.2 4.74 1.05 12.1 10 7.63 10.7 11.2 8.43 3.42 10.8 7.96 6.72 10.4 8.95 8.74 9.78 5.06 9.11 8.19 4.86 1.05 2.08 5.69 11.4 10.1 9.46 9.61 8.91 7.26 1.05 1.66 10.8 8.59 9.44 0 3.12 8.68 6.17 5.42 8.26 6.25 7.53 4.1 18.2 2.08 5.99 7.83 2.08 9.57 9.43 6.41 10.5 9.35 6.58 8.26 5.46 2.41 8.01 11.3 7.19 6.53 9.58 7.38 0 2.08 7.21 8.69 3.9 9.06 9.5 5.35 8.77 8.39 9.59 11.3 8.83 10.8 8.54 8.89 9.63 8.53 9.46 9.98 10.2 8.82 2.9 5.1 4.56 0 4.1 4.91 4.56 4.49 10.1 3.42 8.11 2.41 10.8 2.9 5.56 8.92 2.67 10.5 2.41 5.59 1.68 9.51 10.6 7.49 1.05 10.7 7.07 2.08 6.64 2.08 9.79 8.1 7.38 1.66 6.01 2.67 2.08 10 3.42 3.8 5.11 4.42 1.05 3.9 5.99 8.68 2.41 3.9 7.93 8.99 10.1 0 9.56 2.68 0 5.94 9.75 1.05 6.21 3.09 11.5 4.56 9.97 5.46 6.69 10 0 3.42 6.95 9.8 8.82 8.6 9.93 1.05 3.8 5.01 2.08 6.08 2.41 9.19 6.7 7.78 6.7 9.12 10.1 13 6.99 4.49 9.09 11.8 5.86 4.35 10.4 11.1 8.61 10.5 10.1 7.76 8.23 2.41 8.8 11.4 9.64 9.25 11.4 9.79 10.2 7.05 8.91 12.1 8.42 8.95 10 9.12 9.28 12 8.23 9.02 8.91 9.53 11.1 7.92 9.15 9.44 8.82 9.84 7.55 9.25 7.97 2.41 9.79 12.2 7.81 7.03 6.06 8.37 8.38 4.62 10.4 12.4 7.74 4.1 9.24 10.9 1.05 7.94 7.84 4.62 11.8 7.36 10.9 8.66 4 9.29 10.1 6.44 10.9 1.66 11 10.6 9.03 8.2 10.6 10.3 8.22 13 12.6 10.3 7.48 7.72 7.87 7.76 9.4 10.1 7.62 3.79 3.09 3.8 7.85 7.58 9.24 5.88 8.02 5.75 7.31 6.35 9.09 2.9 9.6 8.52 7.97 6.37 10.8 4.19 5.46 9.69 7.14 9.79 7.4 7.22 10.4 9.01 10.3 0 10.3 9.78 9.16 9.41 10.2 9.76 9.66 8.89 10.7 9.12 9.31 7.98 9.72 9.86 3.09 9.79 12.6 9.45 10.3 8.48 7.25 7.87 2.08 9.92 7.85 10.3 4.49 5.63 7.52 3.09 11.4 7.93 10.6 5.53 8.6 4.27 6.15 3.26 8.39 3.09 1.66 9.33 9.38 11.1 9.07 9.95 9.34 9.37 9.56 11.3 12.2 8.56 9.48 10.4 4.1 11.2 8.54 11.4 10.9 10.8 1.05 8.51 3.26 8.72 2.41 6.87 12.4 1.05 12 10.5 5.31 4.27 9.05 7.64 8.99 8.36 7.09 10.2 8.48 8.48 10.9 11.6 12.2 3.54 5.46 9.82 0 0 4.35 0 8.45 1.05 8.26 6.55 7.22 0 5.5 6.23 5.15 4.27 4.27 6.69 3.09 11 8.44 4.42 7.73 3.42 1.05 0 7.33 6.75 9.75 9.07 11.3 4.56 6.56 5.83 8.65 2.08 10.5 6.87 5.1 1.66 2.67 9.34 2.08 6.83 6.63 4.42 6.74 2.08 10.3 9.57 0 1.05 0 8.45 7.38 4.49 7.61 0 1.66 7.49 2.08 4.95 1.05 8.33 1.66 7.85 9.52 4.74 5.91 5.46 0 4.91 1.66 8.31 0 11.6 2.41 5.01 8.92 4.27 8.47 6.76 7.47 8.27 0 2.08 9.25 10.7 10.6 10.4 8.63 8.02 1.66 10.2 5.75 7.86 2.67 7.21 10.1 10.7 5.75 11.7 10.3 8.89 11.4 6.99 9.13 9.4 12.2 10.7 7.34 8.15 9.44 10 10.5 9.35 8.22 2.41 11.4 7.08 10.2 10.3 10.8 8.51 4.62 8.46 7.86 2.67 8.34 0 5.31 9.96 9.32 11.2 10.7 11.3 7.38 7.7 7.46 11.9 1.33 9.33 6.63 10.3 8.39 8.07 9.94 10.2 12 9.25 5.66 4.1 8.02 7.76 8.5 8.61 9.14 5.35 6.21 8.2 11.5 10.6 9.99 11.5 10.7 9.73 11 10.2 10.6 12.6 10.3 10.8 9.89 10.8 10.5 6.91 10.8 10.7 10.5 8.72 10.6 2.67 11.9 4.91 13.4 8.63 11.5 9.75 12 9.95 11.3 9.45 9.61 12.2 9.69 4.91 9.52 0 4.27 8.88 10.9 9.31 9.43 11.3 6.95 9.88 9.8 10.3 8.12 13.3 8.39 10.5 9.64 3.68 8.4 0 12 8.04 4.1 13.8 9.34 8.76 12.1 1.66 6.79 12.2 9.63 13.4 10.6 9.82 1.66 11 9.19 12.1 12.5 10.7 10.4 12.2 11.7 10.1 11 7.17 11.5 11 10.9 9.12 12.2 9.77 10 12.7 10.3 12.9 12.3 12.3 11.6 12.2 12.3 6.51 5.01 1.66 10.7 9.99 12.7 13 6.35 12.2 4 13.4 11.1 13.4 5.94 9.53 10.1 3.55 2.08 3.68 0 1.05 3.42 0 3.49 12.1 1.88 1.66 0 5.22 11.2 11.1 7.64 10 4 7.17 11.3 8.3 8.72 10.9 9.55 8.38 4.96 2.08 9.01 9.15 2.67 7.79 7.73 6.94 10.3 9.66 10.4 10.3 10.7 9.29 9.17 9.78 8.39 8.44 13.2 3.9 10.3 10.7 11.6 6.33 11.6 8.51 10.6 8.63 13.5 9.79 10.2 8.13 12 10.3 6.69 10.6 10.4 5.01 10.7 3.68 1.66 5.27 11 7.67 8.15 0 2.08 1.05 10.7 9.2 4.69 12 7.62 9.34 8.51 8.93 7.86 11.1 6.01 10.4 11.2 9.76 10.1 10.2 9.37 9.17 7.25 9.32 4.96 1.05 13.3 12.5 12.7 12 13.6 9.32 9.34 12.2 4.42 0 9.27 9.79 9.01 12.5 8.79 10 8.74 6.82 5.1 8.49 5.1 9.06 11.1 6.97 6.79 1.05 4.62 6.87 10.4 1.05 0 11.3 0 11 8.95 5.49 9.76 9.85 7.92 9.32 7.65 9.1 11.5 0 12 7.7 8.48 9.77 10.4 10.3 5.72 10.7 10.9 7.24 11.8 3.42 0 9.86 8.44 9.46 5.19 10.9 11.3 9.47 4.86 11.5 10.1 7.74 9.82 6.51 4.19 8.53 14.9 7.52 5.96 8.67 0 8.65 9.23 6.43 9.1 12.9 8.89 5.59 8.72 9.24 7.54 9.83 11 8.31 10.9 12.5 11.9 3.55 11.6 2.41 7.23 9.34 6.89 8.72 7.94 1.66 10.7 11.7 0 12.1 6.44 9.66 10.2 5.19 13.4 0 9.19 11.5 10.7 9.34 9.63 3.26 3.09 9.53 8.17 8.78 7.63 2.9 9.53 10.3 9.95 10.9 6.58 7.63 12.5 11.4 11.5 0 10.6 10.4 10.8 9.43 14.7 4.42 9.16 8.72 10.5 7.74 1.66 12.7 12 7.87 9.12 7.27 8.01 16.5 11.9 6.85 8.91 10.4 9.18 8.72 8.7 9.29 9.81 7.48 10.9 15.2 12.5 8.37 7.84 4.1 2.9 10.7 11.2 9.61 12.7 4.27 11.5 10.1 5.42 2.67 0 0 12.1 0 11.2 7.8 11.7 11 6.66 3.42 11.4 10.9 7.2 10.7 8.69 10.1 11.8 3.09 9.79 13.3 9.11 12.4 2.9 14 11.2 9.36 12.7 13.3 11.8 9.68 9.87 11.4 8.08 15.5 0 12.8 8.05 9.51 15.2 7.89 10.9 8.6 9.44 7.06 9.14 13.7 0 13.5 11.2 9.7 7.35 12.8 6.17 0 2.67 5.39 8.92 8.44 5.23 5.69 4.19 10.6 9.87 10.9 7.8 10.9 2.08 10.7 11.3 8.6 8.95 7.5 12.5 11.8 10.1 11.5 10.9 8.72 13.4 8.02 7.98 6.78 7.21 11 5.94 5.99 10.7 4.56 6.51 10.6 8.35 9.74 4.91 5.19 5.06 5.99 6.41 2.08 9.48 3.55 2.08 6.13 9.03 10.8 4 6.95 0 5.91 4.96 12.4 7.33 5.46 2.41 7.97 8.49 7.43 3.42 9.88 1.66 9.34 9.06 4.86 4.69 5.96 8.15 6.19 2.08 12.7 3.9 6.41 1.05 6.55 0 4.19 5.83 8.93 3.09 8.39 2.08 1.05 9.36 4.49 7.6 4 4.42 4.56 2.41 0 2.41 4.49 6.25 6.23 5.59 15.9 3.68 5.78 1.05 3.09 5.93 5.1 0 6.01 13.2 8.25 4.1 8.5 2.08 5.35 13.8 7.69 6.44 2.41 8.76 9.76 0 3.26 4.69 8.98 6.03 8.65 3.09 5.15 1.05 7.76 7.78 0 9.64 5.27 6.59 5.15 7.71 7.32 6.5 4 10.4 0 10.3 2.9 12.2 2.08 14.4 15 12.5 0 9.52 10.3 10.5 8.76 11.1 12.4 10.7 8.98 9.71 10.4 10.6 11.1 4.8 12.7 11.2 11.5 10.2 9.99 9.71 11.3 10.2 11.2 10 8.32 0 3.26 12.9 4.62 9.64 4.86 10.9 7.56 14 11 8.75 9.57 9.24 8.08 9.41 9.9 9.74 9.08 1.66 11 1.66 13.2 11.6 11.7 11 10.8 9.79 10.2 10.1 10.6 9.46 2.08 10.7 11 8.74 9.76 11.5 10.3 7.19 11.1 10 7.43 10.7 13.1 12.6 10 11.1 8.2 12 10.9 5.83 2.67 9.07 9.65 14.4 13 7.67 5.85 8.21 5.15 2.41 6.67 9.19 8.95 3.09 3.68 7.87 10.9 14.2 8.5 10.1 12.4 10.8 6.94 7.63 10.8 9.54 9.08 10.8 9.76 7.21 1.66 5.59 7.4 1.66 1.66 6.8 1.66 3.55 3.09 3.09 4.42 0 8.73 7.82 3.55 14 2.41 3.09 13.2 8.95 8.23 9.6 5.1 10.4 2.08 11.6 9.7 5.19 8.04 6.64 8.89 12.5 7.54 11.3 10.6 12.5 7.91 13.5 12.6 11.5 14.2 7.5 12.7 11.8 2.08 12.6 8.54 9.39 8.5 5.99 7.87 9.61 6.76 10.6 5.76 12.9 7.46 8.37 6.01 6.35 9.12 5.86 6.94 4.62 5.39 7.6 9.66 10.1 7.12 10.7 8.25 7.78 5.49 8.22 9.5 8.58 6.35 9.22 8.48 8.04 6.96 7.48 5.99 6.69 6.59 7.5 6.75 4.62 4.8 8.03 7.22 8.12 7.94 10.1 6.5 3.55 9.04 1.66 4.86 8.85 8 1.05 6.51 4.61 5.56 5.15 11.4 6.29 0 2.9 2.19 1.96 2.9 3.09 7.68 9.86 4 8.4 6.61 3.68 6.64 4.56 7.13 8.67 8.44 5.39 8.62 7.78 10.5 7.46 10.7 10.3 9.59 8.97 11 3.55 6.35 1.05 9.88 6.01 10.6 7.5 4.74 3.09 2.41 2.67 6.44 8.32 6.85 8.38 0 6.69 10.2 7.75 7.08 8.7 6.12 10.8 7.09 7.89 5.19 8.44 11.7 2.9 8.65 9.12 5.27 5.01 12.8 9.71 5.15 7.11 5.06 7.15 1.66 6.99 4 3.55 5.46 6.97 8.26 8.3 3.42 0 3.09 6.91 6.89 4.96 11.7 8.27 9.3 11.9 8.99 13.4 7.99 12.7 5.53 13 8.9 11.1 6.76 5.66 11.6 8.69 8.12 7.58 10.7 10.7 10.6 6.33 5.99 5.69 11.8 10.3 9.98 4.86 8.9 9.86 9.45 6.37 9.55 11.3 11.2 12.5 9.32 4.19 10.2 2.67 9.85 9.84 2.67 6.55 7.43 9.68 9.42 7.16 9.04 1.05 5.1 5.35 9.61 5.96 10.1 10.5 8.48 9.3 9.1 5.63 9.21 8.23 8.92 1.05 9.18 10.7 7.89 7.01 7.67 9.76 8.88 1.05 13 10.2 6.58 8.66 9.12 9.52 7.8 9.45 10.3 5.8 9.86 11.3 6.23 10.2 7.1 10.3 12.6 9.32 10 8.39 10.4 9.21 10.4 9.12 9.43 4.91 8.08 8.57 11.2 7.18 7.09 9.97 7.2 9.92 9.68 10.6 9.87 9.59 9.86 5.69 10.6 8.78 7.66 10.7 6.5 10.4 9.39 9.66 11.2 9.46 10.3 10.8 11.6 8.54 7.3 8.66 7.57 10.8 10.7 5.42 9.49 9.69 11.1 10.4 8.02 6.19 5.56 8.66 7.78 4.72 7.2 9.58 9.22 9.44 10.1 10.3 12.5 8.02 6.76 2.9 6.19 8.95 12.4 11.5 10.6 6.46 4.27 10.8 6.87 7.37 7.05 8.62 8.49 10.3 8.4 9.8 4.42 10.1 12.4 9.58 11.1 12.6 8.94 7.71 5.96 1.76 9.87 2.9 1.05 0 10.3 6.17 9.61 7.23 8.35 3.9 4.1 5.39 7.59 2.08 7.84 6.78 2.08 5.63 4.96 11.8 9.19 8.88 3.42 9.84 8.52 9.47 4 2.08 4.19 2.41 9.25 9.02 6.23 2.08 9.2 11.2 9.28 6.89 8.58 9.89 12.1 8.06 6.91 10.2 9.5 8.84 10.5 8.47 8.44 8.73 7.78 5.86 8.72 10.9 10.4 5.91 8.3 2.9 7.51 7.43 7.96 6.25 9.6 5.49 8.64 9.44 6.21 9.65 9.15 6.79 7.75 2.9 6.87 6.15 8.39 6.7 6.31 8.9 6.35 8.71 8.89 8.23 9.6 7.96 9.13 8.52 4.86 8.34 10.4 9.11 6.35 8.83 11.1 9.4 7.37 9.8 5.15 9.13 8.72 6.7 11.4 5.1 6.87 9.21 10.8 10.4 3.42 9.06 7.22 9.17 7.75 9.97 6.95 6.75 8.87 8.86 9.14 9.12 8.35 7.17 7.8 9.18 11.7 8.01 8.52 8.52 8.57 8.64 10.4 6.89 9.01 9.21 8.06 7.64 7.23 9.52 7.68 10.6 8.86 10.9 7.5 7.96 7.99 9.41 10.4 11.4 10.4 10.5 0 8.06 10.4 6.8 9.18 8.17 5.9 8.91 9.02 6.76 9.37 9.06 7.22 7.78 6.15 2.41 6.66 6.91 8.18 9.61 1.05 9.22 2.08 9.48 10.8 8.16 8.57 8.76 8.59 8.26 6.9 8.08 10.9 8.28 8.7 7.63 10.2 5.01 7.72 8.73 8.1 7.78 7.51 8.27 5.99 4.42 3.8 11.4 8.31 2.08 9.17 11.6 9.59 11.8 9.81 9.56 8.52 8.68 6.03 8.09 3.55 8.63 4.62 7.72 9.3 6.01 10.4 7.56 10.4 5.35 8.97 4.56 7.05 7.64 4.91 9.57 7.63 4.27 6.91 5.35 4.96 8.76 9.21 7.03 5.88 9.76 7.69 8.84 7.54 10.3 11.7 5.49 8.54 5.88 0 6.15 3.09 5.15 6.83 6.15 6.75 8.67 1.05 8.14 7.22 0 4.69 7.49 2.08 6.92 2.08 5.42 8.82 5.01 2.08 6.88 7.76 9.17 11 7.16 7.1 8.88 6.99 9.26 7.56 9.75 10 5.35 8.82 9.75 5.1 8.1 9.43 9 9.01 15.4 8.79 5.53 10.9 10.7 10.2 6.17 7.41 8.33 6.25 7.3 9.38 10.2 10.8 5.27 4.96 2.08 11.3 8.4 7.45 7.09 7.95 9.18 10.1 7.94 0 11.7 5.39 3.42 5.72 6.61 8.92 4.35 11.9 1.05 9.05 5.72 1.05 10.2 10.5 2.08 9.19 8.23 4.11 9.13 0 10.4 9.19 1.66 10.8 5.46 8.07 6.78 11.3 9.64 5.95 6.37 6.8 7.31 7.61 9.42 2.08 6.1 10.2 8.85 8.82 7.96 8.24 5.72 6.6 6.97 9.81 8.39 3.42 7.67 3.26 11 1.05 1.05 7.62 10.9 7.85 8.27 8.18 4.56 9.63 11.2 9.59 7.6 9.26 10.2 9.39 8.1 10.5 10.1 6.83 9.19 9.56 9.4 8.37 5.19 3.09 0 4.49 5.91 7.73 5.88 9.03 1.05 4.35 3.09 0 7.32 10.4 13.2 2.41 7.63 3.9 9.54 6.17 2.08 9.95 7.33 6.76 5.42 8.69 7.4 8.77 6.37 10.9 9.25 7.97 9.81 9.86 9.96 9.04 6.6 8.86 9.04 10.5 9.88 6.26 13 6.44 9.46 7.56 7.64 9.25 5.96 7.65 9.22 5.1 8.18 7.94 10.2 9.07 8.64 9.21 9.02 7.91 7.07 9.77 9.31 3.26 8.56 9.66 10.5 10.5 7.37 9.78 10.4 8.7 3.42 11.1 9.74 8.77 9.24 12.1 8.59 9.46 9.63 9.98 5.46 11.5 10.2 4.96 7.16 3.68 8.67 9.76 8.29 3.26 8.25 5.99 5.15 10.6 9.25 8.39 10.1 9.97 4.42 11.2 8.32 2.08 8.28 10.5 9.9 5.1 7.3 10.3 9.22 8.44 9.84 11.9 6.55 7.69 4.27 7.01 8.53 10 6.01 7.19 4.19 8.74 6.8 9.44 8.15 2.41 3.42 3.55 13.1 3.55 3.68 11.2 8.31 3.09 8.16 6.78 11.4 7.2 9.41 11.9 9.67 1.05 9.95 3.42 10.2 8.08 6.17 10.2 11.1 13.4 9.97 5.75 9.91 10.2 5.69 10 3.68 3.8 9.22 6.46 5.88 10.6 10.1 11.1 1.66 12.3 7.85 0 5.96 8.26 7.61 7.19 10 3.8 5.19 3.55 2.9 5.42 11.5 8.08 6.41 8.81 9.11 8.04 5.69 10.5 8.76 11.2 12.1 9.84 12.4 11.9 11.9 7.93 7.31 6.7 6.97 9.23 5.59 10.4 10.8 13.6 11.6 11.9 4.27 11.1 9.96 8.95 10.9 11.1 9.46 4.76 1.05 5.15 2.85 10.4 8.72 8.54 8.43 3.26 0 11.9 12.9 7.17 2.67 3.68 4.86 5.96 5.59 8.5 8.08 12.2 12 14.4 3.68 6.6 3.42 0 3.26 11.5 11.9 9.9 5.06 3.26 12.1 12.2 11.1 10.6 4.27 7.86 1.05 4.42 12.1 5.75 9.17 10.1 10.4 10.7 10.8 3.42 8.41 10.6 7.34 10.1 6.08 10.4 10.3 10.1 4.19 7.95 9.61 9.47 8.93 9.14 8.88 12.6 3.09 8.82 7.2 8.78 8.44 8.44 7.63 8.22 7.67 9.35 7.03 7.32 10.7 10.6 10.4 9.25 9.73 10.1 8.88 8.73 10.6 12.2 6.89 0 8.29 10.4 10.8 8.73 6 11.4 6.61 8.81 9.62 4.65 10.6 10.9 10.7 11.5 11.6 9.42 6.55 3.09 10.7 9.42 9.23 7.29 0 9.85 8.71 3.8 9.45 6.94 9.47 4.42 4.56 5.06 9.25 8.88 8.44 8.4 9.35 9.32 8.86 5.42 10.6 2.69 8.14 6.53 9.36 11.8 7.12 10.7 9.36 12.6 9.77 7.56 9.26 10.8 8.32 9.77 1.61 8.65 9.52 0 9.12 8.58 6.31 10.8 0 6.64 5.01 9.64 10.1 0 9.74 11.1 7.54 10.5 14.9 13.3 8.84 4.62 11.2 8.36 2.08 9.17 9.01 9.38 8.71 12.2 7.71 10.4 11.7 12.3 10.7 11.2 11.5 6.72 12.7 10.6 7.83 9.9 8.13 9.1 9.29 0 8.35 1.05 11.4 11.7 8.58 3.3 7.26 1.05 11 11.1 11.7 10.5 8.45 11.4 8.88 9.84 8.69 10.3 9.17 7.18 7.43 12.1 4.1 8.65 8.46 8.87 8.5 7.2 2.08 0 10.3 0 0 0 9.15 2.9 8.77 1.66 2.67 6.67 8.1 2.08 0 2.9 7.02 1.05 2.08 8.9 2.41 10.2 11.8 10.8 8.54 6.17 2.41 2.67 3.42 11 8.45 0 8.3 7.74 7.84 8.55 5.75 5.49 4.1 8.46 8.08 8.54 1.05 8.19 11.2 10 9.57 9.61 0 3.26 0 4.35 5.63 0 8.13 7.37 9.22 9.35 6.87 9.35 9.15 0 7.5 0 3.09 1.05 1.05 10.6 6.61 6.01 9.54 7.76 6.08 7.81 9.72 1.66 8.58 10.1 12.4 9.15 8.09 1.05 3.26 8.89 11.8 9.12 1.05 8.43 12.6 9.15 7.13 8.87 6.51 1.05 3.09 10.7 0 6.9 11.3 8.6 1.05 3.9 12 9.22 6.06 9.14 11.6 0 0 11.6 10.4 8.9 7.53 9.42 8.75 3.9 8.36 9.22 9.9 4.83 3.68 1.66 9.25 4.1 5.53 9.6 8.11 9.41 6.39 9.14 10.1 4.1 4.74 7.73 9.43 9.23 7.93 3.42 6.39 6.53 7.66 5.23 3.21 8.9 5.1 7.67 8.91 7.22 7.85 9 10.7 7.26 8.82 2.67 2.9 10.3 4 8.78 1.66 3.55 1.05 5.01 4.19 3.09 0 3.09 9.42 10.2 8.14 6.1 9.92 10.5 8.48 8.93 10.8 4.1 10.6 10.2 10.9 8.15 7.14 6.58 3.9 7.34 2.67 4.56 10.5 10.8 7.41 4.19 10.3 11.7 5.56 9.03 7.76 5.63 5.15 3.68 1.05 11.2 9.64 8.93 9.41 10 7.42 9.22 10.4 10.4 1.05 7.43 5.39 8.36 8.69 5.75 7.99 12.1 8.45 0 9.3 10.3 9.62 8.26 3.68 15.1 3.42 5.1 1.05 2.9 5.35 6.5 9.08 10.2 8.17 9.66 4.8 6.67 8.82 9.75 4.19 9.12 5.63 3.55 10.3 8.35 5.91 6.6 9.07 7.22 8.87 7.7 9.93 7.65 8.03 7.7 8.32 8.59 7.26 7.22 5.46 6.31 5.75 9.59 10.2 7.43 8.61 9.06 8.88 4.86 9.67 7.09 10.1 9.97 6.55 10.7 10.1 5.06 9.78 8.01 6.87 7.75 8.46 10.1 7.3 8.79 9.8 10.5 2.67 2.41 6.87 9.15 10.8 9.57 4.35 8.51 6.1 6.92 2.67 4.56 4.86 8.47 4.74 7.52 3.42 7.47 4.56 5.83 4.74 4.91 8.14 10.9 12.8 8 7.78 8.91 8.27 9.32 7.15 8.31 8.46 9.97 0 8.8 6.27 4.27 4.49 6.96 10.2 8 2.41 9.24 8.18 7.81 8.44 10.3 4.56 8.29 8.27 8.8 8.95 8.18 9.36 8.65 9.85 9.58 9.05 9.56 8.14 8.3 8.78 4.91 8.2 11.8 8.7 6.29 9.24 7.37 8.97 9.2 9.17 10.2 8.54 8.23 0 6.8 9.43 8.58 8.99 7.8 9.49 10.4 9.15 10.7 5.83 5.66 6.15 9.11 9.67 7.32 7.54 10.1 5.72 9.69 10.3 8.68 10.9 7.36 7.21 8.87 9.24 7.05 8.47 8.62 10.2 9.96 10.1 5.06 7.91 6.94 7.2 9.43 4.42 9.67 9.09 9.8 9.5 9.62 6.6 8.15 8.55 9.44 0 9.62 11.3 9.66 5.46 11.2 6.72 9.38 1.05 9.67 2.08 10.1 8.69 10.2 7.97 6.6 8.27 4.1 7.06 10.2 6.63 9.11 9.63 2.9 11.3 6.27 6.23 9.1 8.44 10 5.66 7.96 5.46 8.55 6.13 8.93 7.76 3.09 2.41 1.66 2.49 9.52 8.89 10.2 8.54 2.9 6.06 11.3 10.3 10.1 8.22 10.4 4.74 3.09 3.9 10.1 8.59 10.4 7.72 10.3 7.15 5.15 9.11 10.8 2.67 10.4 6.19 5.94 9.54 5.91 8.35 8.9 10.7 5.8 7.9 8.97 5.99 9.65 7.99 9.97 1.05 8.06 7.99 3.9 9.56 11 8.9 2.67 6.39 0 7.03 6.89 6.5 7.67 10.8 9.6 6.31 1.05 3.09 6.39 10 10.8 6.95 8.36 9.81 11.4 3.9 1.05 1.05 1.66 9.57 9.36 8.88 9.87 10.9 5.78 9.1 2.41 9.05 5.27 1.76 7.85 9.43 10.6 2.41 4.63 6.83 6.08 0 4.42 2.08 10.8 9.9 2.08 4.35 7.49 12.9 6.5 8.87 1.66 9.77 9.9 7.29 6.7 12.5 9.51 11.1 10.1 5.35 1.66 10.8 10.6 8.22 5.66 6.92 7.88 9.41 6.31 7.13 8.01 6.41 2.41 6.97 6.43 9.2 12.4 8.17 7.57 6.19 6.17 9.54 9.71 5.56 7.87 4.56 3.55 8.34 9.37 8.7 4.91 3.09 3.55 6.61 9.87 9.13 6.5 7.67 10.6 3.68 8.45 7.48 6.37 6.08 9.42 9.97 6.82 7.95 1.05 5.42 9.05 3.8 7.97 6.01 8.09 7.21 7.99 10.5 6.96 8.81 8.75 8.26 7.21 3.55 3.9 7.12 7.73 11.6 8.44 7.47 8.78 8.38 9.08 10.4 11 8.95 8.53 0 6.55 10.5 4.8 8.67 9.8 9.42 7.74 9.92 9.83 8.95 9.45 8.4 7.94 7.15 10.1 9.84 8.75 10.3 4.19 7.78 12.5 8.29 5.35 9.78 9.83 11 4.1 6.03 8.19 10.2 6.55 8.79 10 9.22 2.08 8.61 8.2 8.9 11.4 8.51 8.77 8.6 7.37 8.04 3.8 8.01 8.76 1.05 9.38 9.7 7.76 9.5 8.74 9.34 3.26 9.44 6.56 7.83 8.6 7.32 8.04 7.54 8.87 4.91 7.67 8.96 6.99 8.23 3.42 6.83 6.17 8.14 10 9.53 7.26 3.68 9.85 8.45 1.05 4.49 13 7.73 9.48 11.5 5.11 2.9 10.7 10 9.36 6.29 9.99 6.03 7.09 8.48 3.68 9.12 7.64 9.14 10.6 7.2 8.55 11.6 9.5 8.56 7.96 8.35 8.08 9.88 8.12 8.24 6.91 10.8 10.9 8.15 6.19 3.26 8.01 4.27 2.41 8.81 9.99 12.5 10.4 2.67 8.58 0 9.92 9.49 7.02 8.85 5.75 0 6.64 0 9.6 7.57 12.1 9.5 8.02 4.13 6.83 2.08 1.05 9.5 6.58 10.3 2.41 9.81 9.07 8.16 6.29 10.1 8.83 10.4 1.66 9.05 6.33 6.43 11.1 9.64 12.1 11.1 7.4 10.9 9.64 10.2 5.78 5.01 7.56 1.66 5.83 9.92 2.67 16 11.3 9.35 7.99 10.8 8.18 9.95 5.19 10.2 5.27 10.4 8.21 10.1 12.2 4.62 12.4 9.83 7.14 7.78 9.32 8.71 9.82 8.09 8.37 9.43 10.8 7.59 3.7 9.74 10.6 2.41 5.39 8.94 1.66 2.08 5.72 9.12 3.29 4.1 10.9 7.88 7.94 6.5 3.26 9.43 8.62 10 10.9 8.79 8.16 11.3 10.4 9.89 9.04 9.02 10.1 10.6 6.55 9.85 9.89 10.4 9.42 5.26 7.2 9.61 8.07 9.5 8.83 6.89 2.67 10.7 9.71 8.83 5.72 10.7 1.66 6.97 11.4 13.4 11 9.72 10.4 10.9 3.42 4 9.79 4.69 7.57 9.5 8.63 4.1 9.28 5.46 6.79 6.27 6.14 4.1 8.99 10.6 10.9 9.48 7.01 8.97 8.51 6.06 8.14 3.26 13.7 9.79 9.33 9.55 9.89 9.53 11.3 7.54 7.55 11.6 10.1 7.8 11.2 12.8 11.7 6.17 13.8 11.3 10.6 11.6 11.8 10.6 8.76 8.06 9.79 11.9 8.09 10.9 7.72 7.91 10.8 8.82 7.87 11.3 11.5 9.65 8.44 9.77 9.92 10.4 10.1 6.17 12 6.48 9.04 9.83 9.39 7.96 6.91 3.9 0 12.3 7.32 12 9.3 9.25 7.78 11.8 12.4 7.89 9.94 11.3 9.82 8.6 9.33 8.22 10.4 13.3 9.61 8.29 12.5 3.09 9.86 7.14 8.17 2.67 9.94 8.2 10.3 3.8 0 1.66 1.05 10.1 12.4 12.4 16.6 9.58 11.3 13.1 9.62 11.9 10.7 6.03 9.4 9.9 10 11.3 9.44 7 8.34 5.75 11 6.35 1.05 2.67 2.67 7.46 6.51 6.97 4.86 9.95 7.79 7.37 10.3 1.66 7.03 10.8 11 9.36 11.4 10.6 5.35 6.35 2.41 1.66 10.5 9.06 4.62 11.9 11 3.09 11.2 7.57 3.09 7.65 0 11.6 4.27 12.4 8.63 10.5 5.66 6.91 7.17 9.87 7.84 7.63 8.77 10.4 4 6.9 7.39 10 11.2 6.89 11.3 10.2 8.27 5.17 12.4 8.31 5.63 7.84 11.8 1.05 11.1 4.1 8.85 9.32 6.48 7.41 10.2 7.29 10.3 9.03 9.4 10.5 10.1 9.68 8.81 5.39 7.2 14.7 10.3 10.8 10.5 9.05 9.85 8.91 10.6 12.2 10.6 9.29 9.7 8.73 10.1 10.1 10.9 12.7 10.5 9.38 9.53 10.3 0 8.77 5.01 11.2 7.93 10.4 9.62 9.48 1.05 9.58 8.47 3.9 5.86 8.69 2.41 10.1 8.44 7.89 10.7 9.66 9.34 4.45 3.55 3.38 9.4 10.7 10.3 8.56 8.93 8.47 6.01 10.7 9.39 10.2 10.7 11.7 8.02 10.7 0 2.67 4.96 10.8 1.05 1.05 10.8 7.88 10.3 5.46 6.19 10.3 7.55 8.98 4.96 10.7 11.7 5.72 5.31 4.19 3.26 0 3.9 9.16 7.61 6.07 8.59 10.5 9.18 8.18 2.9 9.44 6.51 9.17 1.66 4.57 4.8 2.44 2.9 7.01 1.05 8.17 11.1 7.61 8.78 11.8 10.2 11.9 5.35 0 8.56 11.3 10.4 10.7 9.42 7.56 9.02 7.26 8.95 6.53 7.19 7.28 10.1 10.3 10.6 4 7.49 6.17 8.42 2.67 9.54 7.53 6.73 10.5 10.8 9.22 1.66 10.3 6.1 7.15 5.23 5.46 6.79 10.1 11.7 9.71 8.21 8.08 6.57 7.8 11.2 6.21 1.05 4.42 10.6 5.56 6.29 5.15 1.05 8.3 11.2 9.36 0 7.53 4.96 4.27 5.31 3.8 11 9.09 6.35 7.9 9.55 7.56 2.67 3.55 8.05 8.41 6.87 2.41 6.13 9.31 5.72 8.63 7.58 8.6 7.38 9.8 7.28 6.63 9.6 9.05 9.52 11 8.11 8.39 6.55 9.05 10.1 8.64 10.1 12.7 8.69 8.15 6.9 3.8 9.44 2.41 10.8 9.9 9.35 7.1 6.19 8.15 6.1 11.7 9.52 5.78 6.88 6.89 10.5 8.55 9.94 9.66 4.49 9.36 9.14 5.78 7.6 1.66 1.05 7.09 4.27 10.1 9.85 8.12 7.31 6.9 7.18 6.83 7.4 8.83 6.19 11.6 3.26 6.92 9.78 8.79 10.5 6.92 10.5 11.2 10.1 8.57 3.55 11 2.67 10.4 6.66 8.57 12.3 4.96 9.15 8.72 7.35 4.96 9.63 10.3 6.15 12.5 9.45 7.25 8.91 7.57 8.27 4.1 9.47 10.7 10.5 10.2 8.69 4.96 8.67 9.57 8.17 7.29 11.1 5.1 9.85 6.8 10.9 12.4 10.5 10.7 9.17 8.6 9.49 7.8 10.9 5.91 8.8 8.87 9.17 9.2 5.78 4.62 10.2 9.57 9.56 10.7 5.78 7.91 6.6 8.28 11.4 9.31 6.41 8.76 5.99 1.05 3.8 6.1 4.35 8.51 7.29 10.4 12.3 11 7.25 9.73 10.8 2.08 9.27 10.1 8.1 12.4 9.92 8.73 4.69 11.1 10.3 10.7 10.6 8.9 8.97 2.67 8.51 8.48 9.27 8.87 1.05 8.58 8.44 9.56 10.3 7.35 10.6 9.4 6.19 8.61 9.15 11.2 10 2.41 9.97 5.99 5.23 8.64 13.5 5.06 9.38 4.56 1.66 9.84 11.5 6.48 9.55 5.91 10.1 8.05 9.23 2.08 9 5.27 8.08 8.06 7.25 9.04 9.92 12.1 5.49 9.97 9.13 7.73 9.92 5.69 10.4 4 7.51 0 8.02 5.94 9.29 7.14 1.05 10.3 6.58 10.6 14.7 6.9 9.7 11.3 8.23 4.73 6.23 7.17 8.23 3.42 6.06 7.33 11 10.1 6.48 5.94 7.81 2.41 11.4 9.81 7.89 9.91 7.93 10.7 6.5 3.8 10.7 4.19 8.45 9.23 11.3 8.34 7.22 8.03 7.52 9.32 7.7 6.46 10.5 10.9 6.19 7.14 9.46 3.09 5.91 7.06 9.84 0 8.87 1.66 8.32 8.71 6.27 2.41 5.53 7.36 11.1 6.15 8.26 6.82 7.62 8.68 9.81 10.2 7.92 7.83 9.45 11.3 9.81 5.19 7.26 9.74 8.62 7.6 8.16 7.39 10.7 7.34 13.6 8.74 9.07 5.06 10.8 8.55 12.8 9.06 11.1 0 9.72 11.4 1.05 8.12 1.05 8.57 8.06 7.48 8.45 2.67 0 5.78 6.08 2.41 7.23 4.86 0 8.39 11.2 11.1 10.5 8.84 8.34 8.86 9.48 4.85 7.48 7.74 7.48 10.1 8.33 13.6 1.66 7.31 10.8 9.27 9.26 10.3 9.56 0 5.31 11.1 11 6.99 11.7 8.17 2.08 10.8 9.32 7.1 7.41 7.69 8.97 9.97 7.37 7.33 7.79 11.8 9.55 4.49 7.51 9.33 6.48 9.18 10 11.3 8.79 10.2 8.72 8.18 5.88 9.54 9.55 10.5 9.32 9.28 2.9 8.8 10.2 10.4 8.76 8.91 7.46 10.2 11.8 9.81 9.33 4.56 10 12.9 9.13 5.96 10 8.7 2.67 8.42 4.56 8.89 13.1 11.2 3.09 9.23 9.37 6.51 8.54 8.23 3.09 11.3 10.7 6.58 5.06 9.21 7.45 8.5 4 7.89 1.64 3.42 6.92 9.03 8.13 8.18 2.67 5.23 5.42 11.7 6.08 3.68 8.84 8.09 9.47 5.83 10.8 6.15 3.8 8.66 9.62 9.81 9.1 9.44 11.2 9.47 11.5 9.03 3.42 11 8.62 8.94 10.4 9.18 4.8 9.21 5.53 11 6.86 0 10.5 8.53 9.27 10.6 8.06 9.8 10.7 9.72 0 11.6 8.73 10.5 4.69 0 11.6 13.3 0 11.9 6.43 10.1 6.21 10.6 1.66 6.91 0 8.2 7.77 5.27 6.43 11.1 10.5 6.87 1.05 12.7 9.3 9.76 8.2 3.8 8.13 9.43 5.46 4.11 1.06 9.83 9.73 8.5 10.8 8.94 9.85 7.48 9.53 7.86 12.6 10.8 2.41 3.9 10.8 3.42 10.6 9.09 6.53 0 8.04 0 11 7.64 10.2 4.8 6.85 8.25 10.4 2.67 6.46 6.44 8.37 8.76 5.78 9.57 10.4 6.19 9.86 7.4 5.94 1.05 11.7 3.8 8.59 2.08 6.29 8.72 10.7 6.31 9.97 10 1.66 8.92 7.36 5.1 9.35 9.75 11.8 9.05 9.83 8.87 8.81 9 6.43 6.29 10 0 11.1 11.4 2.9 11.5 8.19 8.44 7.64 7.64 8.05 11.7 6.85 8.97 12.1 9.46 4.27 5.69 4.69 4.69 9.69 2.41 9.03 5.42 9.16 7.85 8.67 7.85 11.5 13.4 9.85 6.25 10.8 6.44 6.85 9.73 9.62 10.5 7.28 7.87 7.05 8.6 2.08 8.7 11.8 6.63 7.33 10.4 3.26 6.63 8.62 10.6 6.53 9.66 9.41 8.75 13.3 9.24 7.77 8.01 2.67 5.59 7.47 7 5.23 8.85 9.36 9.11 10.7 8.12 6.5 8.83 7.12 1.05 10.3 12.3 12.7 10 6.46 5.31 6.13 8.44 7.97 9.76 9.71 7.74 1.05 12.2 10.5 9.91 7.93 7.81 11.1 8.74 9.53 10.3 10.1 11.1 10.2 12.6 10.4 8.94 7.07 11.2 9.06 9.35 8.02 8.11 10.1 11.7 11.7 0 7.58 10.7 1.66 10.7 7.7 5.75 11.1 11.9 11.1 9.92 9.02 10.2 12.6 10.5 10.5 9.79 7.56 8.64 11.3 9.75 12.7 7.79 8.82 8.41 10 8.23 7.21 9.31 11.7 7.92 8.64 10.2 8.2 8.93 11.6 6.92 8.27 8.85 13 11 4.91 9.02 10.3 9.23 2.08 11.2 9.84 13.7 9.17 9.87 8.54 8.96 11.9 4.74 10.6 12 10 7.01 11.1 9.27 7.97 10.4 5.63 5.49 2.08 10.3 8.52 9.18 11.1 5.8 0 10.5 9.46 5.8 8.47 9.96 8.18 12.7 10.5 12.3 9.27 10.3 9.71 9.96 8.02 7.35 10.2 3.9 9.24 9.78 8.7 8.61 10.1 8.08 9.14 9.52 12.7 14.7 6.43 10.8 10.5 7.66 10.4 5.27 12.7 14.2 9.21 0 10.7 9.79 10.2 9.18 9.25 5.96 9.03 10.3 12 7.54 9.86 9.53 11.4 12 10.1 7.16 10.6 12.1 7.12 10.2 9.36 9.05 9.34 10.6 7.85 9.27 11.1 0 5.19 3.42 8.47 11.5 9.11 11.8 8.53 3.55 7.51 6.88 12.3 7.56 8.23 8.9 8.97 2.67 9.12 2.67 7.85 7.28 16.2 2.9 5.69 9.65 10.6 9.06 9.87 10.1 8.05 9.59 8.86 8.04 10.1 4.74 8.67 10.6 5.69 8.74 9.86 5.23 12.1 9.27 9.74 7.93 10.8 8 9.63 9.66 13.4 6.33 5.23 7.39 6.94 9.03 9.7 11.2 10.7 9.27 13.9 11.7 8.81 8.6 10.8 8.77 8.32 12.9 8.77 8.42 11.1 11.6 12.2 10.7 10.8 10.9 9.86 1.05 10.2 8.23 12.6 4.74 10.9 9.9 8.19 8.69 11.1 10.6 10.1 11.7 9.39 11 10 4.1 10.3 11.1 6.1 10.1 12.7 12.5 8.18 10.6 9.85 1.05 11.5 9.03 9.51 11.2 8.17 9.68 8.76 10.6 9.66 8.27 10 10.6 8.53 7.89 8.24 10 6.6 9.5 5.39 8.67 10.3 9.97 4.69 9.06 4.19 6.97 8.93 8.83 9.63 5.01 8.79 9.21 6.61 7.89 9.76 9.54 5.66 8.76 7.77 9.43 7.23 8.92 7.82 2.08 10.1 9.36 9.26 6.76 10.3 11.3 6.85 6.44 8.3 11.2 10.7 10.2 10.9 10.2 10.9 9.05 11.3 9.99 11.7 10.8 10.7 10 7.81 9.27 8.74 10.9 8.14 10.5 10.4 10.8 9.9 10.6 3.26 7.59 9.74 9.57 8.34 12.1 12.2 4.86 9.04 5.06 7.16 10.7 9.83 9.09 9.87 7.48 8.58 11.5 9.77 9.91 7.55 4.86 8.44 9.52 9.39 5.91 10.4 10.8 12.1 6.1 12 9.65 9.67 9.65 8.77 9.41 10.9 6.92 11.6 7.25 10.1 9.1 4.91 9.79 10.6 7.88 7.88 11 12.4 4.49 6.27 5.01 9.76 6.63 7.69 12.6 9.28 6.82 11 2.9 3.09 5.23 8.12 9.96 9.91 9.88 12.7 9.91 3.8 5.88 11.8 9.68 10.9 8.91 3.04 10.1 9.4 9.61 6.51 11 12.6 10.1 9.12 6.86 8.68 12.1 9.17 11.7 12.6 8.14 11.6 2.41 11.1 8.27 8.51
+TCGA-78-7150-01 5.22 8.52 5.91 8.24 6.66 8.82 0 3.83 2.15 0.65 1.59 8.81 5.26 0 5.26 8.06 10.8 9.34 10.6 9.45 7.7 9.81 10.2 2.98 10 7.05 4.8 8.93 3.56 7.26 3.74 6.75 2.06 2.75 3.18 1.98 0.65 7.41 3.35 3.57 3.99 3.08 5.81 1.44 6.56 1.95 0 2.75 11.4 4.77 4.32 3.88 9.48 10.5 5.4 0 5.69 0.65 7.12 8.08 6.72 6.35 6.89 4.5 2.87 2.33 3.95 4.27 10 0.65 3.88 3.97 4.19 7.51 4.81 1.72 3.09 5.28 3.87 1.44 2.98 0.65 4.58 6.86 7.34 1.1 6.3 5.57 3.08 2.62 7.73 4.14 8.3 7.31 3.05 2.87 2.33 2.62 7.42 6.33 1.44 2.33 3.57 4.96 4.4 2.98 6.04 8.15 8.67 4.89 3.5 2.33 6.75 4.14 5.05 3.08 3.23 5.02 0.65 3.83 3.35 5.29 0 2.15 2.75 6.19 0.65 4.95 3.08 12.8 2.93 4.4 6.29 6.57 3.26 2.33 3.57 3.5 3.11 8.49 5.15 9.25 0 3.18 4.4 11.9 1.1 10.7 0 6.22 5.37 1.1 7.03 9.47 11.1 2.48 0.65 0 8.39 2.62 7.33 6.02 4.47 1.1 10.6 4.81 6.48 2.48 8.65 0.65 8.74 10 2.87 3.71 2.48 4.47 3.99 4.74 7.47 5.09 5.98 7.05 3.08 3.08 3.85 1.11 1.44 1.1 7.91 2.98 8.81 8.75 3.57 1.44 3.94 7.84 3.26 8.76 8.65 7.87 4.97 10.7 9.8 11.1 7.3 8.48 5.34 10.1 10.2 11.1 6.55 10.8 12.1 11.5 10.7 9.84 11.4 10.5 7.28 10.1 8.55 8.86 11.4 10.9 7.56 8.03 6.39 10.4 9.44 13.2 10.9 0.65 9.13 11.1 8.7 9.79 9.9 9.28 9.25 3.5 11.5 5.12 12.5 11.2 12.3 12.4 12.8 13.2 6.21 11 8.14 1.44 6.65 9.46 9.7 7.45 10.2 12.7 3.83 12.5 8.12 10.4 9.19 11.2 10.7 10.9 7.88 10.5 11 10.8 9.54 8.05 9.27 9.35 11.8 8.84 2.62 14.1 11.1 10.1 12.2 11.9 11.4 7.72 7.9 9.97 10.7 10.2 11.3 8.73 3.88 4.58 10.1 7.84 9.39 10.9 8.36 13.3 5.17 6.79 8.46 12.1 11.1 7.04 11.3 12.1 2.33 10.1 9.23 7.71 13 10.1 4.62 7.16 7.3 9.07 10.6 5.87 10.3 5.35 9.21 9.72 9.92 8.59 9.4 9.91 10.8 10.9 9.82 7.97 10.8 8.93 11.6 6.84 9.71 11.7 7.3 7.7 7.82 7.9 10.5 10.9 9.32 10.9 8.59 13.3 9.7 12 11.8 10.1 11.6 7.82 9.45 0.65 4.19 8.39 6.46 10.1 4.32 4.81 5.57 11.2 11.2 10.3 8.09 7.41 7.71 13.9 9.26 5.57 2.98 12 10 11.5 9.83 8.16 8.54 11.2 3.08 7.72 9.35 9.42 7.79 8.69 10.2 11 7 8.33 8.19 10.2 9.3 10.4 11.2 8.5 5.42 11.4 10.7 5.62 6.44 6.63 5.72 11.6 10.7 9.89 10.9 10 9.67 10.2 10.4 7.43 8.37 7.22 10.7 9.13 8.68 11.2 9.8 9.7 8.5 6.27 9.39 2.15 3.94 12.2 6.34 11.3 9.49 11.6 3.09 11.4 11.4 13.7 6.36 8.24 7.2 7.55 5.3 8.66 7.21 9.77 10.4 12.6 12.9 1.1 11.7 7.76 6.15 6.89 4.27 9.36 2.62 7.13 6.05 11.1 8.86 8.92 8.29 10.8 11.3 6.27 9.07 10.2 12.2 3.26 8.95 8.18 2.87 4.83 4.27 8.95 7.08 1.95 8.8 5.75 10.8 9.51 8.39 10.5 10.1 8.82 14.4 10.2 2.9 10.2 7.07 7.66 12.3 8.53 7.08 4.62 5.79 8.67 9.26 4.86 13.2 7.76 6.7 8.77 6.31 14.2 12.2 13.3 8.58 9.51 7.96 9.49 5.53 9.79 8.09 11.7 0 12.6 6 13.6 5.26 9.7 12.6 9.89 10.8 10.5 5.95 10.2 8.82 10.6 10.3 9.37 9.59 9.89 8.74 6.97 11.2 10.2 10.8 6.99 10.6 11.4 8.22 4.14 10.9 9.74 9.58 10.2 7.37 9.96 9.93 7.05 9.47 10.8 10.7 9.32 9.3 10.7 11.2 9.59 8.66 10.9 8.09 2.15 11.1 9.44 8.22 10 9.78 5.69 9.18 8.11 9.58 7.76 10.4 9.93 8.36 11.2 10.1 9.72 8.67 11.7 9.87 11.4 11 6.36 12.9 11.3 10.8 9.7 11.1 12.3 12.1 10.6 6.51 10.3 9.78 9.45 1.1 11 6.18 7.07 7.84 9.33 11.9 11.5 12 9.96 9.78 9.33 1.72 7.64 11.2 10.1 7.14 13.3 7.7 10.9 9.53 12.8 10.6 12.6 10.7 7.55 1.72 9.86 8.99 8.37 9.17 8.61 8.9 5.26 10.5 11.4 11.2 11.2 10.7 9.73 10.6 11.1 10.9 13.8 11.7 11.9 10.9 10.4 8.98 8.29 10.8 9.86 2.15 8.87 10.1 2.33 7.75 11.2 10.3 6.09 10.5 12.6 9.32 5.69 9.95 9.94 12.2 12.3 12.1 10.8 6.17 12.9 7.98 9.14 10.3 8.25 0 8.67 9.83 9.62 10.8 8.49 9.74 12.6 1.1 7.56 10.3 7.68 10.1 9.51 5.36 10.6 12.7 9.77 9.25 9.5 7.43 11.8 7.16 11.4 11 11.1 10.9 9.89 13.2 8.61 7.93 7.54 6.74 8.63 11.9 10.6 13.2 11.1 7.52 11.3 13.4 11.9 2.48 10.3 9.65 7.94 3.02 6.37 10.2 7.74 11.3 8.97 9.92 4.51 10.4 12.1 14.2 9.81 5.75 12.2 10.4 10.8 13.8 1.1 5.92 10.3 3.5 6.74 7.28 5.44 10 8.25 10.7 6.31 5.44 4.75 9.73 9.89 10.6 4.19 6.35 9.7 8.1 0.65 3.77 12.2 9.91 7.77 6.21 7.67 2.98 9.53 10.3 9.18 3.23 8.24 14.1 7.89 11.2 11 10.2 11 13.3 7.86 12.2 7.49 8.17 3.12 11.3 2.75 2.33 0 4.36 9.29 7.07 9.77 0 9.12 10.1 1.44 3.35 10.5 12.3 5.7 11.9 10.4 9.29 4.65 11.2 8.56 11.7 10.9 10.4 11.7 9.52 10.2 10.9 8.04 9.95 12.2 8.64 7.64 8.14 9.38 10.3 8.29 12.8 7.69 7.8 6.07 6.76 8.87 11.7 7.31 3.57 2.62 12.3 10.7 0 4.32 8.33 8.76 11.2 11.4 6.37 5.6 9.42 8.85 6.47 6.14 9.64 6.07 6.17 8.19 8.38 0.65 7.65 0 10.3 9.98 10.6 12 11.3 9.47 8.36 11.3 11.5 3.26 5.5 6.69 6.83 8.72 9.68 10.5 8.01 10.3 5.99 4.14 6.8 5.75 7.41 0 3.26 9.4 10.5 1.95 1.44 12.8 10.4 8.48 7.79 6.07 1.1 10.6 8.13 11.5 9.52 2.48 8.71 9.41 8.9 10.3 10.1 9.28 9.11 9.64 9.61 0 5.22 8.61 12.7 9.59 11.8 0 10.1 10.1 11.2 9.89 10.9 7.86 8.25 11 11.4 10.1 1.72 12.5 3.83 12 3.88 10.1 10.9 8.08 7.92 8.47 12 13.3 10.6 8.61 9.36 11.5 10.9 10.7 10.5 9.17 9.57 11.2 12.8 10.7 12.9 11.9 11.7 8.97 11.9 9.38 7.08 8.39 10.3 12.4 13 13.1 10.8 4.14 9.6 8.02 10 10.8 10.1 9.58 12.2 6.62 11.4 9.88 11.1 11.1 4.14 2.15 12.3 6.49 10.9 4.27 9.49 7.57 8.54 9.69 7.65 7.33 3.56 3.35 8.44 9.3 2.33 13.7 10.9 10.2 9.2 9.23 8.07 7.22 9.32 10 8.97 0 5.33 3.5 3.35 9.25 12.2 10.4 13.6 8.25 8.37 10.2 8.24 7.57 7.88 8.43 3.71 8.3 11.1 9.75 12 10.7 9.2 11 13.3 9.98 11.2 9.25 7.41 1.95 8.87 9.16 7.89 9.93 8.8 5.99 11.4 9.67 8.47 10.2 3.35 6.66 11.1 11.6 12.4 9.56 8.07 10.4 9.3 5.5 3.83 8.62 2.87 7.52 9.23 12.6 9.12 13.2 8.27 8.7 9.47 8.29 6.35 9.54 9.07 11 8.76 8.62 11.2 9.79 10 10.4 9.06 8.26 9.7 1.44 8.05 9.14 8.57 3.26 10.3 0 8.21 8.4 10.4 5.02 9.59 9.39 11.4 11.3 8.89 9.42 5.07 10.5 6.94 7.2 4.86 7.1 8.33 9.59 7.27 5.9 3.94 8.23 7.85 8.34 7.8 9.04 9.72 10.2 6.24 9.1 9.36 8.72 13.4 8.73 8.43 7.81 4.55 12.6 8.2 5.5 12 9.13 7.83 8.12 4.32 10.5 5.84 9.89 4.92 6.59 7.9 10.7 9.42 0.65 9.48 9.49 8.66 9.19 9.1 11.2 11.2 10.1 8.07 9.36 7.72 5.24 9.69 9.01 8.65 11.4 10.8 8.67 9.53 8.22 1.44 10.8 6.54 11.5 6.33 11.8 10.2 6.88 8.15 8.95 8.77 11.3 6.42 9.9 9.87 8.61 9.56 6.4 10.8 11.4 6.5 6.02 9.73 9.17 9.67 8.42 3.77 3.35 8.28 4.92 8.61 8.67 9.8 0 1.1 11.4 10.1 7.54 9.38 9.05 10.1 7.52 11 5.12 12.9 7.36 7 5.78 5.17 8.21 10.9 9.25 8.24 6.27 0.65 5.4 7.43 12 10.6 9.51 7.35 2.62 10.7 7.08 10.6 6.73 5.44 4.86 7.07 3.38 10.6 9.66 8.31 6.87 8.53 8.28 7.77 10.3 10.3 9.26 9.77 7.93 10.1 8.37 8.56 9.63 8.98 6.62 9.5 7.53 10.3 9.75 6.56 12.5 11.6 7.15 10.9 7.92 2.75 10.4 6.21 1.44 9.07 9.61 2.48 9.88 12.2 10.4 10.6 4.4 10.3 10.6 11.2 11.2 8.67 7.29 7.62 8.95 12.5 11.7 5.15 12.8 8.89 11.1 8.74 12.5 10 11.8 11.9 8.26 8.88 9.28 0 10.8 10.3 12.1 9.62 9.21 10.1 7.25 10.5 0 10.6 7.5 6.51 1.72 7.37 6.75 6.7 7.03 2.71 5.88 8.13 8.32 7.1 8.11 8.95 10.3 2.48 10.3 2.98 8.49 8.02 3.71 4.77 10.8 7.12 5.6 2.48 7.91 8.54 5.25 3.64 6.87 3.12 4.27 0.65 0.65 8.37 2.48 7.43 6.3 9.96 8.23 5.76 0 8.74 8.87 6.85 10.7 7.66 8.17 8.6 8.54 3.18 9.55 1.95 7.36 10.4 3.18 8.09 6.67 4.67 6.33 0.65 5 4.62 6.2 6.9 10.7 3.18 7.86 7.6 3.83 5.78 11.1 7.98 5.72 6.54 10.3 11.7 9.95 8.91 8.64 3.88 8.33 1.72 10.1 4.09 8.23 13.4 6.73 8.74 6.61 10.8 9.57 8.43 5.28 9.55 9.47 9.24 7.61 3.18 9.67 10 8.19 4.66 1.95 4.81 5.5 10.5 8.24 9.83 7.71 10.8 6.39 7.88 9.2 9.76 9.46 5.48 0 3.18 10 9.09 8.58 4.44 6.54 9.08 8.09 10.1 7.09 9.18 7.85 5.05 6.14 5.81 2.48 9.18 6.25 5.76 7.82 8.55 3.26 9.1 6.43 4.36 6.54 7.75 6.92 1.72 11.2 9.61 3.18 6.4 6.85 1.44 3.08 8.64 6.38 10.4 9.35 9 9.47 7.2 9.7 9.01 10.2 7.75 11.3 9.74 3.18 6.59 4.86 8.15 8.21 10.1 9.52 9.63 9.81 3.99 10.3 4.4 6.57 2.33 6.09 1.44 8.68 4.55 3.88 3.64 3.5 3.63 8.34 0.65 1.44 9.63 9.72 7.56 8.85 8.36 0 3.99 9.16 5.72 8.19 9.48 1.72 9.34 11.1 2.98 6.03 8.01 9.85 10.9 5.06 8.71 9.39 8.36 3.08 8.35 3.83 2.98 3.5 10.3 9.47 6.08 10.3 5.55 7.8 6 12.7 9.66 10.9 0.65 4.92 6.1 10.4 10.9 5.72 8.52 12.6 2.62 6.92 11 8.5 8 9.71 8.72 10.1 1.95 6.38 0 7.42 5.38 8.63 9.14 5.9 1.95 7.55 10.3 5.22 2.48 5.64 8.3 6.54 8.82 7.31 8.83 7.94 8.06 10.7 4.04 6.46 9.25 10.7 13.4 7.24 6.66 1.95 8.08 7.24 2.87 9.71 10.7 9.16 8.48 9.01 4.89 7.97 9.25 11.5 12.1 8.63 11 8.79 5.6 11.1 7.25 9.91 3.43 5.32 4.78 8.19 8.74 12.2 3.26 8.01 12.3 4.36 1.72 8.3 11.8 10.1 8.32 9.66 3.99 7.37 13.8 10.3 8.78 8.59 3.08 3.18 9.41 9.5 6.56 7.47 9.72 2.33 0 3.83 7.84 2.62 6.24 8.32 6.49 5.65 8.83 7.11 2.33 10.4 8.97 7.22 4.4 9.7 8.91 8.73 1.72 8.93 7.67 7.24 10.7 7.55 8.76 11.6 2.33 8.02 8.13 9.4 1.1 7.37 5.17 7.93 8.4 3.08 7.8 6.91 4.32 3.18 3.43 9.78 5.69 3.71 7.77 5.12 4.55 8.75 10.4 1.44 7.36 3.01 9.46 0 6.86 7.84 7.86 6.67 3.18 6.05 7.45 1.72 1.44 8.75 9.45 7.56 11.7 7.49 8.29 8.5 10.6 8.83 3.99 8.49 8.54 8.65 11.3 11 1.95 1.1 8.04 9.16 7.63 5.1 1.44 6.79 10.5 9.61 4.08 2.62 1.95 6.07 0 4.97 9.12 7.45 9.54 4.47 4.75 8.44 5.42 9.71 8.77 2.98 8.26 9.79 6.89 4.97 11.6 7.15 7 1.5 8.94 1.44 7.51 11.6 0.65 6.47 2.33 7.21 10.4 3.35 8.68 8.24 0 6.88 7.8 4.89 3.08 5.52 5.64 6.21 8.07 5.84 8.88 1.44 1.44 9.88 4.78 3.88 1.72 3.26 7.21 5.22 9.54 8.98 7.56 4.32 9.83 12.2 8.26 10.1 12.1 6.22 8.8 7.32 7.9 6.23 1.1 8.78 9.43 12.6 9.06 5.69 11.2 6.54 4.23 0.65 5.19 9.11 11.4 8.61 8.17 8.54 5.07 1.72 3.77 1.1 6.63 0.65 9.05 2.33 9.37 7.64 2.98 5.55 8.79 10.1 9.2 1.44 3.83 9.79 9.08 5.79 7.31 10.4 2.16 2.87 10.5 3.18 7.41 1.44 9.47 17.1 5.79 8.15 8.09 16.5 9.85 3.57 3.5 7.15 9.71 3.5 11.8 1.44 8.84 8.1 16.8 5.98 8.48 13.1 2.33 9.38 4.27 9.23 11.4 7.59 9.04 2.15 10 6.58 5.76 8.29 12.9 3.43 6.59 5.82 1.72 7.62 5.3 10.8 3.35 10 9.16 4.81 3.77 2.33 4.19 11.6 9.83 13.8 8.44 9.13 13.5 6.84 6.53 12.8 9.09 13.6 9.46 2.98 15 7.91 9.91 8.4 7.97 10.7 3.94 8.71 8.51 9.73 8.82 9.47 9.61 8.96 5.84 7.32 5.48 0 7.75 6.91 6.62 6.39 8.39 12 5.59 11.5 12.9 5.53 3.64 1.44 7.89 14.2 10.6 5.46 10.9 5.73 5.15 10.4 8.8 1.44 8.56 6.98 9.14 10.1 11.5 6.16 8.67 9.45 3.43 3.26 6.31 4.19 9.63 7.61 7.64 6.66 8.78 1.95 1.1 0.65 6.36 8.3 2.33 8.94 8.93 0 11.5 13.2 8.77 2.75 7.94 12.3 1.95 8.82 9.32 5.85 10.5 8.91 6.29 0.65 10.5 7.36 0 9.25 3.94 1.44 7.76 8.4 5.32 7.31 5.17 8.14 0.65 0 6.75 10.5 7.58 7.35 2.98 5.1 1.73 7.97 9.13 5.57 11.8 8.59 9.12 10.3 8.15 11.9 2.15 8.47 3.57 11 7.87 4.71 5.94 7.05 5.76 10.2 2.98 6.87 11 9.24 10.6 8.23 4.47 2.62 8.1 5.3 12.3 4.62 7.07 12.8 10.2 9.06 8.24 5.19 7.42 6.69 8.2 9.4 3.26 8.5 10.2 9.44 2.87 8.01 10.6 6.37 6.8 11.5 6.08 11.1 10.1 6.22 11.4 10.9 12.3 10.5 3.29 6.26 8.74 9.94 5.82 10.5 5.98 9.85 2.98 10.6 14.2 0 6.83 3.08 6.88 6.88 3.35 13.3 4.95 1.1 13.2 2.33 2.15 12 9.71 11.7 9.47 12.7 4.95 8.31 6.77 8.9 5.28 13.2 6.74 11 9.4 6.69 8.54 6.49 8.5 4.23 3.26 1.72 9.1 2.62 5.05 10.7 6.47 7.76 12.5 2.87 3.5 5.92 4.09 7.72 7.73 6.37 0 7.67 9.62 5.99 5.07 5.02 9.95 9.76 6.74 5.12 11.5 8.72 2.33 10.9 10.9 8.93 3.64 9.82 7.87 1.1 8.56 4.51 8.76 6.2 8.6 8.53 5.26 2.75 2.15 10.1 7.12 8.21 12 11.5 4.68 6.46 3.75 8.95 8.67 8.63 8.06 9.39 9.71 4.04 4.81 7.69 12 5.62 2.48 10.6 10.6 4.4 3.35 6.96 7.26 4.14 0 8.55 4.55 4.74 3.18 8.42 6.98 6.47 4.44 7.2 7.66 4.58 3.64 9.65 7.72 9.52 6.53 0 9.86 8.97 4.89 14.3 9.99 4 6.74 7.83 6.92 5.53 8.2 9.81 3.35 10 0 10.4 0.65 8.57 6.85 1.72 0.65 12.4 8.31 7.07 1.72 1.1 2.75 1.72 1.95 7.01 7.4 11.2 1.1 9.83 11.3 9.1 12.5 9.14 11.1 10.6 8.31 3.18 10.6 11.3 8.05 8.24 9.25 8.59 3.88 2.87 8.23 6.1 5.33 5.57 9.59 6.93 8.5 11 6.62 7.09 0 2.15 8.83 5.19 9.13 10.4 6.48 6.84 7.63 8.19 7.77 7.9 7.52 2.98 6.85 11.4 7.51 9.14 8.11 7.2 5.32 3.08 6.73 1.95 10.2 12.2 5.3 4.55 7.41 4.95 10.2 3.64 8.52 9.16 10.7 9.24 8.4 11.9 3.99 3.57 6.46 11.4 4.92 6.9 11.8 6.95 1.72 8.44 5.65 9.77 6 6.2 5.94 8.01 9.11 10.8 7.03 8.1 6.98 5.48 1.1 6.18 8.15 3.71 8.72 6.55 1.72 11.4 9.32 6.1 8.24 0 2.33 7.39 14.3 5.12 0.65 11 2.33 5.9 2.62 3.18 0 8.08 4.51 6.92 8.06 2.15 12.3 6.16 6.57 3.18 3.08 3.35 7.39 5.76 8.43 7.56 5.35 0.65 4.36 0.65 4.27 0.65 1.44 0 9.66 2.87 0.65 3.5 0 9.82 0.65 7.49 0 8.52 8.98 6.21 9.77 5.26 9.57 8.99 5.22 11.6 5.46 7.13 8.81 9 10.6 8.81 9.07 4.44 2.33 4.75 3.26 4.23 9.21 8.74 5.48 13.4 7.72 4.27 9.31 2.62 3.08 3.08 6.33 7.45 8.21 4.36 9.37 5.84 6.61 0.65 11.5 8.97 8.08 8.58 7.83 3.26 5.19 2.15 9.06 7.83 9.8 7.2 6.42 9.36 5.26 6.23 7.2 9.18 8.55 10.1 5.53 6.61 8.61 6.67 8.04 5.7 0.65 7.04 6.8 5.72 7.52 6.44 3.5 5.26 6.42 6.29 0.65 6.77 7.84 2.33 9.53 8.4 8.33 6.34 8.2 8.8 4.47 8.99 10.5 5.62 1.1 11.9 3.5 1.1 4.81 9.95 11.3 6.8 0 10.3 3.57 5.5 8.34 2.87 12.8 9.14 0 9.61 8.94 5.3 2.62 8.54 1.1 2.75 4.81 8.8 9.31 8.05 7.73 1.78 8.56 7.92 3.99 1.95 13.5 10.7 3.08 7.92 6.46 7.02 13.5 9.61 9.49 0 3.88 13.4 3.71 4.81 12.7 1.44 0.65 2.33 0 5.07 2.33 8.92 2.62 2.48 8.31 10.4 8.15 7.4 9.44 2.03 4.44 4.32 8.24 5.82 5.85 7.27 1.44 9.66 8.05 7.75 3.35 7.27 2.48 9.72 8.17 9.85 5.12 7.2 8.13 7.39 6.13 7.37 7.04 13.7 8.88 13.8 7.08 2.48 4.78 4.19 11 9.98 2.62 1.44 4.47 2.15 9.19 9.23 10.1 9.83 8.44 5.4 9.31 5.26 1.72 3.26 11.4 2.87 8.3 4.75 7 12 0.65 10.3 3.77 8 9.51 4.3 8.09 0.65 6.64 8.12 9.1 11.7 7.31 1.1 5.64 0 3.94 0.65 11.9 3.35 9.65 8.62 9.28 9.12 2.87 10.4 8.49 10 8.41 4.14 3.43 5.72 7.67 2.48 10.9 8.43 8.14 7.63 11.1 2.15 7.7 7.47 10.5 6.37 5.5 3.26 5.42 7.96 10.6 10.4 9 3.94 8.48 2.62 8.64 4.09 7.85 3.43 2.98 9.95 8.13 5.92 5.07 6.95 8.06 2.33 7.85 8.8 8.49 7.56 8.42 12 6.53 8.04 10 8.01 3.94 11.5 10.7 9.13 2.75 9.02 7.17 4.27 2.15 4.36 11.1 7.16 7.03 5.44 5.62 0 11.1 2.75 9.46 7.5 7.44 3.99 7.07 7.79 0 8.34 2.87 3.35 8.62 9.56 2.48 4.09 7.69 3.77 1.44 6.31 7.71 0 10 10.4 7.2 2.98 7.83 3.71 6.66 4.92 5.12 8.58 8.1 0.65 4.27 5.53 8.54 4.36 5.55 9.68 8.62 0.65 10.1 2.33 5.36 9.97 1.95 1.44 7.7 7.83 6.91 8.62 13.7 7.87 6.96 5.53 0.65 9.32 6.3 9.13 7.62 6.66 4.09 3.18 10.5 2.98 3.99 0.91 6.5 8.73 3.57 10.7 4.04 1.95 1.1 4.04 3.88 3.71 7.64 5.05 0.65 6.91 4.47 6.49 1.44 10.3 2.15 8.26 2.87 5.75 2.62 5.28 6.16 8.5 4.95 6.88 4.55 8.82 9.06 0 8.49 3.77 1.95 1.1 3.08 0.65 3.57 4.65 1.5 3.88 10.7 7.5 9.48 4.71 9.56 0.65 10.9 9.1 7.61 6.33 11.6 3.99 4.55 11.7 11.9 2.48 9.73 2.75 4.14 0 0.65 11 8.55 3.08 0 15.5 10.5 0 8.36 12.3 10 9.63 5.55 10.6 4.89 6.1 7.72 9.21 8.86 11.2 11.9 5.46 5.4 2.33 7.41 12.4 0.65 2.33 10.1 9.17 4.09 7.38 4.36 3.94 11.2 0.65 6.07 10.3 0.65 1.72 9.72 1.1 4.78 7.43 4.23 3.64 11.6 11.4 1.1 10.7 6.57 7.57 8.57 6.56 10.6 8.38 7.39 2.87 2.62 2.87 1.44 3.78 5.26 8.41 11 7.89 9.21 6.85 3.77 7.17 7.77 5.16 8.33 6.09 9.48 4.71 0 12.8 8.49 7.16 6.65 4.32 3.35 8.22 7.65 6.66 2.33 7.86 8.11 3.83 3.83 4.95 10.4 0.65 5.78 3.64 6.31 9.62 1.72 13.2 6.66 10.4 9.92 8.03 0 7.36 5.36 3.83 6.52 8.25 9.86 9.47 11.5 11.3 0.65 10.4 0.65 12.5 6.2 8.01 2.75 2.48 8.57 14 0.65 15.6 3.59 2.15 1.95 1.72 7.55 5.55 8.55 14.1 13 6.29 2.63 6.53 2.87 9.92 8.44 11.8 9.55 13.1 13.1 1.44 5.95 11.8 2.48 6.16 8.7 2.75 10.2 6.15 8.34 12.4 12.3 5.48 9.6 6.93 7.86 8.05 9.01 7.03 12.1 10.3 5.65 10.1 7.53 6.88 6.92 8.83 9.7 8.98 3.83 9.5 7.21 8.8 5.07 4.65 0 3.57 9.86 4.23 8.97 4.09 6.58 5.73 7.6 4.36 7.53 3.43 8.8 8.6 1.1 2.15 5.98 7.35 4.4 3.64 10 8.32 7.92 9.57 2.98 1.1 1.1 9.18 8.76 9.45 3.88 5.64 7.13 4.86 1.44 1.44 1.95 8.26 0 4.92 9.58 8.16 1.95 10.2 4.68 0.65 9.97 3.35 7.93 6.38 4.27 3.43 9.86 8.48 5.73 8.82 2.33 11.5 4.68 10.4 7.69 4.27 12.5 1.44 6.68 12.5 7.18 11.2 0.65 9.55 11.7 9.53 11.2 13.6 8.78 3.99 6.82 9.43 12.3 13.1 11.8 8 5.17 0.65 9.72 10.7 11.1 11 10.1 5.32 10.1 6.97 10.7 1.1 1.44 5 6.5 9.6 6.64 5.24 7.99 5.44 8.68 9.49 8.04 4.04 1.1 3.71 1.44 6.7 9.29 3.64 0 10.4 12.8 10.5 4.47 11.8 11.1 11.4 10.7 6.05 10.5 8.09 10.7 7.07 5.84 7.43 7.98 10.7 7 7.8 7.97 9.32 8.56 7.72 9.52 12.2 0 10.4 0.65 0.65 8.83 10.2 8.67 4.65 12.6 10.6 9.32 12.7 3.83 9.6 12.8 9.41 5.78 8.01 8.44 5.12 9.98 8.83 11.5 5.73 10.9 9.18 8.52 9.62 8.25 4.92 7.55 3.35 10 10.3 9.56 11.7 10.4 9.44 8.83 5.84 7.89 8.98 10.2 7.38 9.62 8.57 5.65 5.4 11.7 2.15 11.8 12.4 10.8 9.58 11.6 5.69 9.28 7.21 9.62 8.37 8.63 9.25 11.9 6.8 8.93 11.3 15.6 3.43 6.07 9.37 9.8 7.48 8.4 8.04 11.9 11.9 13.5 14.7 10.3 12.2 10.1 8.47 10.5 8.32 8.93 5.67 9.46 7.66 7.81 9.75 10.5 10.8 9.89 10 7.33 7.85 7.62 12.3 5.94 0.65 7.53 8.69 1.1 10.2 7.42 6.4 8.05 2.62 8.1 10.7 8.78 8.79 9.35 9.87 8.76 10.6 5.26 8.66 11.1 9.52 3.07 9.57 8.38 6.3 4.12 12.8 7.08 5.24 10.4 5.77 0 6.65 0 10.8 2.48 5 6.45 7.71 8.5 12.9 5.64 7.4 7.27 3.57 5.69 9.71 13.1 8.29 12.4 9.18 9.26 11.6 14 14.7 12 12.7 1.44 6.8 1.1 11.1 5.4 4.65 10.7 1.95 3.35 4.4 7.76 1.72 11.3 7.52 6.67 2.48 9.05 7.56 6.72 4.36 0.65 9.06 3.18 7.9 7.27 12.7 8.26 0.65 8.73 13.6 8.49 9.56 0.65 2.87 9.88 7.39 4.62 9.47 11.1 1.72 2.15 4.97 2.15 11.3 10.1 6.38 9.53 7.27 2.15 8.49 4.19 8.57 0 9.71 4.47 3.71 2.15 10.1 7.94 4.55 5.22 10.1 9.17 11.2 7.3 9.86 6.92 5.22 4.44 6.87 11.6 8.42 7.79 8.49 8.41 2.33 10 7.74 11 9.79 10.8 7.79 8.37 6.75 9.11 5.5 9.79 3.99 11.6 6.8 8.09 9.2 8.52 10.1 7.66 8.69 9.41 4.75 12.1 2.15 8.88 2.75 9.88 2.15 4.23 5.72 9.08 11 0 0 9.04 8.2 5.95 1.95 12.9 7.15 6.88 3.26 7.53 0 11 8.65 8.86 7.51 9.48 9.15 6.82 5.17 6.6 7.11 3.64 10.4 7.1 6.11 15.2 2.33 5.5 4.95 0.65 1.44 10.2 3.43 5.48 8.01 12 10.7 8.71 11.6 6.22 5.26 14.5 8.13 2.48 1.1 7.85 7.94 6.49 4.04 8.21 9.19 9.34 8.7 12.3 4.04 14.3 9.68 10.6 6.13 6.98 10.3 11.2 9.7 7.58 8.61 11.1 12.2 7.54 4.47 2.33 8.44 3.57 7.05 1.1 10.7 8.39 6.82 9.75 10.8 4.58 10.6 7.3 5.59 9.13 6.89 8.55 7.08 10 0.65 6.52 8.85 11.7 13.1 10.8 11.5 7.91 8.52 11.9 1.95 2.48 12.7 10.3 9.19 4.09 11.8 5.76 9.14 10.5 8.25 9.87 7.96 10.5 7.47 10.6 11.4 7.88 11.1 10.8 5.82 5.3 9.57 4.75 9.56 0.65 11.4 10.6 10.6 10.7 8.36 10.3 11.7 8.92 3.18 7.48 9.02 9.03 0.65 10.6 9.22 11.2 7.14 7.4 10.6 4.86 12.1 10.6 10.8 3.94 8.65 9.56 2.33 7.15 12.3 6.56 8.38 7.52 5.15 11.3 9.07 11.4 11 9.62 10.2 5.22 7.35 4.86 12.2 6.46 6.6 7.89 3.26 0 12.5 6.04 7.25 6.8 7.99 8.07 7.39 9.29 10 11.9 13.4 9.72 8.3 10.8 5.28 9.18 9.61 10.5 12.1 8.79 5.32 9.79 8.78 8.58 3.83 12.2 9.02 13 1.72 4.09 8.15 2.62 5.64 8.89 4.32 10.2 12.2 6.89 7.8 9.8 6.79 10.6 7.76 5.15 7.66 8.4 5.75 8.73 10.9 7.94 9.08 8.81 0.65 8.13 10.6 8.98 7.29 12.6 2.87 9.87 3.08 8.41 7.34 7.57 3.77 2.48 5.05 7.65 2.33 5.64 9.83 1.44 7.57 8.34 8.02 4.04 2.98 2.87 3.18 5.46 1.44 4.78 3.94 8.45 7.39 0 1.44 6.01 7.66 4.8 2.15 5.63 7.97 4.14 12.7 5.42 11.4 5.91 8.6 10.1 10.5 1.44 6.44 6.48 8.5 4.97 11.7 7.16 6.04 8.43 9.79 8.39 10.1 3.77 9.36 6.93 9.61 6.6 7.55 6.78 6.54 8.68 10.2 1.95 10.2 4.09 1.95 1.72 8.29 2.33 5.35 5.9 1.1 10.9 2.75 7.27 9.84 4.23 8.23 6.89 8.67 5.42 8.77 4.81 3.18 10.8 8.7 3.51 9.2 8.49 7.63 8.82 6.69 9.91 3.08 8.28 2.87 7.42 3.71 10.1 8.59 10.4 9.65 10.6 5.4 7.98 10.7 7.03 6.18 10 6.35 8.59 10.5 8.64 8.52 5.24 3.08 8.77 6.9 3.36 7.89 12.1 9.62 5.02 1.1 4.86 8.71 0 5.57 11.1 4.04 3.71 3.08 1.95 4.04 6.05 7.07 2.33 10.3 10.8 11.2 9.67 6.96 7.71 10.3 10.2 9.01 11.7 6.13 8.72 8.15 8.58 3.18 1.72 7.73 0.65 9.62 2.62 3.94 6.96 15.2 10.5 9.11 2.33 8.17 8.15 6.68 10.8 4.62 8.31 11.2 8.97 11 9.47 10.2 5.75 12.1 9.26 11.7 0 11.5 3.26 6.83 8.79 10.3 7.21 12.4 5.81 13 8.92 8.82 8.7 5.34 10.8 11.2 10.3 7 7.88 10.2 7.52 10 10.4 10.3 10.4 8.47 5.04 4.89 8.54 7.69 9.88 9.44 6.11 9.36 7.27 9.79 2.15 10.2 9.92 7.86 10.3 6.08 12.1 8.53 10.1 0.65 10.5 7.22 10.1 11.8 4.97 12.5 9.36 10.8 8.89 8.48 10.1 9.89 9.55 12.1 10.4 8.52 9.09 12 7.38 7.09 10.7 7.58 10.3 10.7 9.92 5.46 9.63 10.7 1.72 8.97 8.11 5.87 0 9.21 4.23 9.2 9.94 11.5 9.15 11.3 10.6 9.92 8.33 8 10.9 4.97 5.36 11.3 1.1 9.55 11.8 9.67 8.51 7.95 7.82 11 7.85 12.1 9.78 10.7 10.9 7.51 9.39 8.64 10.5 9.98 10.3 9.63 7.83 12.8 12.5 10.1 0.65 8.45 9.03 8.87 5.3 2.62 11 8.32 7.28 11.4 4.51 1.44 8.3 8.68 9.55 5.34 10.5 11.4 0 1.1 0.65 9.62 11.8 10 7.41 6.86 9.84 5.05 9.98 11.2 8.42 10.4 8.74 8.5 8.19 8.75 2.15 10.8 10 10.8 10.2 7.17 8.03 12.1 8.81 14.2 12.4 10.5 7.93 2.87 4.36 10.9 10 9.46 8.24 10.5 9.07 7.17 6.48 9.34 9 9.86 9.92 9.3 12.1 6.13 7.61 9.42 9.8 11.3 11.6 8.9 10.2 9.9 11.1 8.58 7.79 4.97 10.8 11 9.78 10.8 10.2 11.1 5.52 9.21 9.7 10.6 7.84 9.21 10.3 11.1 10.3 9.98 9.76 9.5 7.65 10.3 11.5 7.71 7.51 6.99 9.83 6.42 11.2 10.6 8.47 11 10.7 8.39 9.14 8.12 7.96 9.25 8.7 4.23 9.98 5.15 10.2 9.85 3.09 10.8 10.1 8.4 5.75 7.48 7.68 11.8 8.27 5.28 5.07 9.49 8.89 10.8 3.83 11.4 7.33 9.25 10.6 7.19 9.81 9.29 7.11 9.63 6.49 9.78 11.6 9.83 11.1 9.79 9.15 8.68 1.1 5.4 8.14 0.65 8.52 10.7 10.7 8.74 10.1 9.4 9.42 13.4 10.8 10.4 7.77 9.29 10.1 10.2 7.71 10.9 10.8 9.48 12.2 10.4 8.57 9.14 10.6 9.72 8.48 10.1 7.75 8.83 7.92 9.48 8.73 9.22 11.3 10.4 10.4 10.3 8.65 12.6 12 11.8 9.45 13.6 7.54 9.71 12.2 11 11.7 10.6 11.2 7.93 9.48 12.9 1.1 10.4 7.92 4.19 9.82 8.81 10.2 9.1 13.7 11.2 12.8 10.6 1.1 10 10.6 1.1 10.9 9.33 10.5 11.8 10.3 6.77 7.77 5.12 8.5 12.1 8.04 7.86 9.68 10.8 9.42 2.33 8.21 7.81 7.13 9.95 11.3 9.8 12.3 5.6 7.69 9.84 10.4 12.9 5.79 8.18 9.56 6.67 7.45 10.2 10.3 10.3 7.86 8.19 9.36 8.19 11.1 10.9 10.3 9.81 10.6 8.91 8.24 10.9 10.6 10.2 9.6 8.57 10.8 11.1 5.88 1.95 10 1.95 7.19 10 8.46 9.95 5.59 9.78 9.62 9.97 10.5 9.45 7.64 10.5 11.2 4.44 9.91 9.75 3.88 9.75 9.44 6.25 10.3 11.2 10.1 10.1 11 7.57 9.14 0 10.4 9.89 10.2 9.75 7.82 11.6 10.8 11.7 10.6 9.1 8.94 10.6 12 8.71 8.44 7.45 9.42 11 5.65 9.34 10.9 8.8 11.3 10.4 2.98 16.9 11.7 10.8 11.8 11.6 8.21 8.77 8.3 10.4 2.98 9.37 10.1 8.82 11.4 12.5 9.39 12.6 8.32 11.8 10.3 9.26 7.62 9.76 7.93 10.2 9.29 11.8 11.7 9.68 10.8 12.1 11 10.3 10.9 11.1 8.34 11.1 11.1 8.56 10.5 10.5 8.29 10.7 9.05 9.16 9.39 8.41 10.6 9.92 7.75 3.88 9.18 9.91 8.38 7.48 6.83 1.1 2.15 7.27 0 9.07 12.6 7.28 11.6 9.07 8.26 9.5 10.3 3.43 8.06 7.34 10.7 11.8 9.3 9.63 12.8 11.5 12.9 11.7 9.27 5.3 5.05 5.53 8.39 6.29 11.6 9.72 8.21 7.21 10.9 12.7 12.9 9.03 10.1 10.6 11.7 11.1 10.5 11.7 10.9 11.2 8.55 9.39 3.08 7.95 4.62 0.65 6.31 11.8 5.55 7.26 9 0 11.6 9 10.1 8.75 11.2 9.29 10 11.3 10.2 9.71 8.96 11.1 10.3 9.66 3.64 4.4 13.7 9.23 10.4 13.3 8.68 10.9 9.83 7.62 11.5 9.83 9.27 11.9 5.38 10.1 7.94 2.62 6.39 9.13 6.69 11 0.65 8.32 3.77 0 8.3 10.4 12 9.22 4.83 5.57 9.37 9.74 9.16 9.17 10.7 9.55 9.87 10.6 3.18 1.72 10.4 5.6 7.3 10.8 0 5.1 11.6 4.27 10.2 9.89 10.1 3.57 11.5 12.8 9.18 9.17 10.5 8.07 7.06 9.44 10.7 7.98 9.35 12.4 9.75 9.99 8.99 6.39 12.2 6.24 11.7 10.8 8.79 9.82 8.81 4.47 9.79 9.49 10.3 9.41 2.15 1.44 3.18 2.87 11.4 6.09 11.3 9.94 5.32 10.7 6.16 8.51 6 9.64 10.7 12.2 9.97 8.1 9.1 13 13.1 11.4 9.86 8.13 8.21 11.5 10.2 11.2 8.28 8.99 10.2 7.16 7.6 5.4 13 7.43 10.9 11.2 3.18 9.53 10.6 11.1 9.22 8.1 9.71 8.8 4.62 9.62 7.66 3.08 11.3 9.99 8.63 11.2 11.5 11.6 10.6 0.65 1.72 7.52 7.15 7.4 9.85 8.97 11.1 10.2 5.1 5.49 10.6 9.5 5.95 5.94 11.1 9.24 3.88 7.83 4.97 4.09 7.36 4.51 8.58 0.65 9.37 1.44 3.35 3.18 7.45 9.17 5.88 3.77 7.36 7.35 3.5 2.15 6.54 11 8.68 6.2 6.81 7.29 8.21 15.4 9.55 11.2 2.33 16.6 10.2 12.1 11.8 7.33 9.2 7.16 9.59 0 4.23 11.2 4.55 2.11 6.95 8 4.36 10.1 0.65 1.1 8.23 9.84 10.8 5.17 4.95 1.95 9.69 8.65 8.41 7.04 11.2 6.83 9.07 9.75 5.9 5.79 12.8 8.92 4.47 9.39 3.43 5.53 10.2 9.52 9.01 1.1 13.1 10.8 8.18 8.07 6.5 5.42 7.4 8.63 2.87 8.59 10.4 1.72 1.1 7.97 1.1 0.65 8.63 9.25 7.48 6.3 3.64 1.72 5.7 7.72 6.26 7.48 9.52 8.82 6.3 1.95 13.9 0.65 1.1 11.6 8.64 8.62 8.23 8.17 7.35 1.1 4.96 6.09 4.58 0 5.12 10.1 9.75 5.26 4.04 3.18 9.18 0.65 8.97 4.04 7 6.66 1.72 7.28 0 8.1 5.36 10 11.8 6.73 7.2 3.08 7.19 7.31 8.26 9.53 8.01 5.38 1.95 7.78 4.04 8.33 3.88 7.43 5.32 5.61 6.35 9.14 8.81 1.72 7.13 4.55 7.98 3.43 8.32 6.98 1.72 1.95 2.98 2.75 1.1 2.87 4.92 0.65 8.82 3.77 1.1 6.83 1.95 1.1 6.16 7.94 4.27 7.31 2.62 8.97 1.95 3.64 6.67 0 8.24 6.11 0 2.48 0.65 10.4 9.03 8.32 5.53 6.81 5.81 9.89 8.99 9.7 0 8.94 10.9 8.94 7.33 10.3 5.55 6.24 6.94 3.08 7.6 10.4 11.3 4.44 10.5 10.5 10.5 6.8 11.4 10.7 9.06 8.97 8.82 7.3 10.6 8.98 9.62 6.8 9.93 0.65 10.5 11.7 8.16 8.77 7.02 10.8 11.1 8.61 7.37 1.95 11.8 12 6.61 10.4 12.3 8.64 2.75 11.8 6.29 6.54 10.8 6.02 9.65 8.71 8.87 9.03 9.13 10.4 11.3 6.71 10.2 10.4 9.05 5.7 7.74 9.56 11.4 4.86 9.89 0.65 7.34 3.83 7.73 10.7 11.4 9.6 11.4 11.2 8.92 1.44 13.3 9.99 10 7.7 9.7 8.05 8.27 11.1 5.73 0.65 6.35 8.12 9.92 9.97 8.44 4.71 12.6 6.58 7.37 10.8 9.4 9.21 8.43 8.19 10.7 12.7 7.64 12.3 8.49 6.57 9.52 9.38 8.96 1.72 9.25 9.99 11.7 0 7.35 9.6 8.72 6.65 3.5 7.53 10 10.2 6.83 1.44 11.1 0 8.69 1.1 0 4.09 6.17 10.2 7.48 12.3 8.35 9.58 8.78 11.1 9.86 10.3 9.39 10.8 7.89 6.28 9.66 10.6 10 7.71 7.6 12.1 2.98 9.78 10.8 9.99 4.79 10.3 11.2 9.27 17 9.21 9.72 7.25 7.3 8.99 10.6 10.5 8.11 9.89 5.75 8.44 3.57 12.1 8.06 8.77 9.62 10.9 10.8 11.6 8.38 10.5 10.4 10.5 10.1 12.8 9.78 9.18 9.65 10.9 8.72 8.8 5.92 9.58 10.9 9.65 9.54 12.6 9.9 8.47 5.07 8.39 3.83 6.6 8.15 9.53 6.63 3.18 3.94 10.9 8.05 9.41 0 7.69 6.73 9.42 8.99 1.44 9.97 9.44 7.4 8.16 1.95 6.43 4.75 7.09 11 10.1 11.5 11.1 9.93 8.15 8.59 11.4 12.2 9.75 12.1 1.44 6.04 7.46 10.1 10.3 9.74 11.1 9.62 7.11 2.48 11 8.03 11.6 11.1 4.83 10 11.2 10.7 9.29 10.6 9.11 10.9 8.92 9.63 10 11.1 12.7 11.2 3.77 6.12 9.67 9.78 8.05 4.58 9.77 4.92 8.96 7.73 3.71 8.19 11.2 11.9 5.82 8.04 8.51 8.88 9.67 12.3 10.4 11 13 7.66 8.26 10.8 8.74 10.4 5.57 11.6 6.31 8.73 2.62 6.97 10.6 0 4.36 8.29 9.76 10.1 10.8 1.44 8.85 1.1 5.73 4.58 7.66 7.51 10.6 8.52 6.27 7.22 6.74 5.91 0.65 6.52 3.64 11.4 10.3 7.95 7.76 2.87 9.64 9.19 1.95 8.2 9.67 8.62 7.16 8.96 8.53 7.68 9.13 9.35 8.57 9.5 8.69 3.77 9.97 11 11.8 2.33 10.7 4.14 9.48 7.94 8.85 6.45 11.5 9.81 10.4 1.1 10.6 10.2 10.8 9.96 7.62 0 9.26 8.7 3.43 9.42 9.63 10.9 11.7 10.7 9.22 4.78 8.48 7.59 9.55 9.85 11.8 10.4 7.47 8.41 13 10 8.9 9.92 9.7 9.85 8.31 8.61 9.64 10.4 10.2 10.9 2.33 1.72 1.55 10.4 3.5 2.48 9.77 9.8 4.68 10.8 12.3 9.78 8.84 1.1 9.88 1.72 7.58 2.62 10.9 12 8.15 2.98 6.33 0.85 5.82 8.77 8.87 12.4 1.44 6.96 6.81 1.95 8.75 4.19 12.6 2.98 8.33 2.48 9.94 10.4 1.1 8.4 9.98 10.2 6.43 0.65 4.81 0 14 7.64 9.61 9.93 8.49 0.65 4.04 7.56 7.69 10.6 2.33 8.52 13.7 10.3 5.96 7.95 10.7 14 9.5 10.9 8.6 9.59 10 9.84 1.95 1.44 9.53 5.36 8.52 6.67 5.65 9.97 10.7 10.4 11.8 7.76 7.92 10.9 1.44 8.71 1.44 4.44 9.56 5.71 9.59 10.5 12.3 10.2 3.35 2.15 10.4 10.1 12.4 9.2 6.83 10.8 9.91 12.8 12 7.13 7.54 5.69 10.7 6.94 10.4 3.94 8.3 2.87 6.14 10.3 9.76 5.1 0.65 9.41 9.59 10.7 13.1 10.3 9.36 6.55 10.8 5.81 6.14 5.7 11 5.12 5.22 10.9 2.75 6.77 7.35 6.98 7.85 10.8 2.62 11.1 7.31 5.85 9.07 1.8 5.99 8.36 8.19 5.64 8.2 11.1 5.02 9.16 2.75 8.63 8.15 3.88 10.4 10.8 12.1 7.39 3.83 2.48 10.2 7.42 1.95 6.91 0.65 1.1 3.08 8.46 10.9 7.24 8.61 12.1 0.65 3.08 8.54 9.82 9.69 9.41 4.04 4.71 8.3 12.2 11.7 7.01 8.83 8.93 9.56 11.5 11.5 10.4 8.83 7.56 7.16 9.52 9.09 1.44 2.48 9.26 2.48 8.05 13.6 8.77 8.26 10.6 4.04 9.84 6.41 5.28 11.4 10.3 9.54 3.99 7.66 2.15 8.68 4.78 5.92 8.95 11.7 4.92 10.3 9.63 11.3 9.9 3.83 12.1 11 9.29 11.2 12.3 10.2 10.7 9.66 8.62 3.88 6.36 11.2 9.75 9.31 8.79 4.47 7.72 9.99 10.4 8.73 7.61 6.47 11.4 10.2 8.47 7.34 10.3 6.7 9.03 11.7 3.08 9.78 8.72 7.8 7.57 10 11.4 8.91 2.15 13.9 1.44 12.5 8.52 10.7 5.24 8.78 11 9.11 9.82 11.5 11.3 8.58 4.58 10.5 14.4 1.1 4.09 13.3 11.5 2.52 1.44 10.6 11.1 4.32 0 9.71 8.16 4.65 10.1 2.75 0.65 12.4 2.48 3.5 9.22 10.9 11.8 11.2 11.6 11.7 10.9 9.39 3.5 13.7 3.09 1.1 9.98 7.78 10.9 14.4 3.57 6.84 4.19 6.04 7.86 8.29 5.15 1.1 1.72 7.27 2.75 7.09 1.95 9.28 3.94 0 6.53 5.48 5.26 9.88 7.22 5.46 8.55 2.75 3.77 4.44 2.98 9.6 7.27 7.16 12.2 12.3 3.77 5.15 7.55 8.92 3.57 10.1 10.3 6.88 6.53 8.28 5.69 6.36 8.36 4.12 8.12 4.95 7.14 7.09 9.29 7.1 8.04 10.6 11.3 4.14 7.77 5.02 5.48 2.98 4.65 0.65 5.55 1.44 9.75 5.07 7.93 4.92 9.02 7.57 9.12 4.47 0.65 1.96 1.1 9.24 1.44 5.24 0 7.52 0 4.65 0 2.15 10.7 10.6 7.36 6.11 2.39 5.76 2.62 5.73 3.88 9.01 0.65 0.65 4.64 11.4 4.95 4.93 9.7 2.76 8.96 4.09 9.09 4.51 6.2 7.14 2.15 2.48 7.99 6.03 0 2.15 11 8.45 9.06 8.18 1.72 7.53 6.51 0.65 3.77 7.63 2.15 5.05 4.65 7.57 2.95 10.1 5.81 6.2 3.71 1.1 6.8 7.2 0.65 2.15 3.18 8.99 2.15 6.61 7.4 12.4 7.93 8.62 6.52 7.67 3.83 3.35 0.65 6.6 7.95 4.32 4.36 9.77 0.65 8.11 0.65 9.18 2.98 4.36 3.83 8.36 8.99 7.98 5.37 5.44 6.13 6.09 6.8 2.15 6.38 12 2.15 7.66 8.29 2.48 3.26 2.15 8.36 6.66 0.65 5.72 5.24 0 4.27 6.42 3.83 7.91 5.24 9.23 0.65 2.62 0 6.88 1.95 3.43 2.33 9.32 5.79 7.08 3.26 5.8 2.62 6.64 5.99 8.21 4.14 5.23 8.69 2.62 0.65 3.83 0.65 1.95 4.92 1.1 7.93 0.65 8.2 4.09 6.81 8.85 6.66 5.38 10.4 8.09 4.86 0 1.44 6.64 1.72 7.42 10.3 7.01 6.07 9.23 1.72 9.02 2.15 2.62 7.06 5.99 5.22 5.67 9 8.19 0 6.07 8.77 8.93 5.36 7.59 6.68 1.44 9.23 2.75 5.24 9.37 8.17 4.32 9.42 7.26 3.88 0 3.5 8.43 1.1 7.45 4.68 5.82 3.93 10 8.89 10.2 1.44 8.71 0.65 10.2 1.72 3.57 3.94 5.28 7.36 3.79 10.1 5.28 6.92 8.83 3.18 5.12 7.77 7.36 4.36 9.45 0 4.31 2.87 10.3 9.59 6.11 5.85 1.95 3.02 7.14 0 4.83 6.27 5.69 4.12 4.92 3.08 2.33 2.87 5.17 2.33 2.33 7.78 6.98 1.72 11.6 3.99 8.76 5.96 0.65 4.71 7.82 7.37 6.98 9.11 10.1 3.08 1.1 7.33 2.15 2.63 3.43 8.22 7.77 6.08 3.5 7 6.96 8.43 10.1 3.26 0.65 5.17 4.81 8.17 1.95 5.46 8.3 8.83 9.18 2.87 5.53 8.5 11.7 10.9 10 4.97 11.4 13 13.2 11.3 9.77 7.2 11.8 10.2 10.9 1.44 2.82 9.74 8.45 8.97 9.38 7.87 10.1 10.2 12.6 9.37 9.46 10.9 1.44 8.1 5.59 12.2 0.65 10.2 7.94 10.6 10.2 10.4 9.43 10.4 10.1 10.4 8.81 8.62 9.75 8.09 9.78 11.1 8.41 0.65 7.17 8.04 6.3 9.44 9.13 4.92 10.2 7.87 1.44 2.15 8.4 3.64 10.1 1.72 10.2 1.72 7.94 11.7 8.66 8.37 8.48 9.8 10.6 11.1 7.55 9.63 10.5 10.2 8.49 9.95 10.6 9 10.1 9.67 7.94 10 10.8 9.19 10 8.93 11.7 7.91 6.26 7.39 8.43 7.9 10.3 9.83 7.99 9.27 8.54 9.15 11.4 9.96 11.5 7.42 8.84 3.35 8.5 9.44 8.1 2.33 9.4 9.91 7.68 10.7 0 2.48 8.27 7.79 11.1 2.15 4.36 10.4 8.7 1.1 0.65 6.22 12.6 4.27 4.32 14.1 1.72 11.2 12.8 11.3 10.4 12.2 11.7 11.4 10.1 9.58 9.52 9.17 8.78 10.2 5.64 14.3 0 8.96 7.68 11.1 7.61 10 8.87 8.95 8.91 10.4 9.62 10 6.9 7.28 8.64 11.7 11.8 11.5 9.45 4.27 11.8 11.2 5.67 10.4 9.68 0.65 12 6.4 3.18 10.2 9.11 4.92 8.73 9.94 9.9 11.3 3.64 10.8 0.65 3.88 6.97 6.96 9.16 4.04 10.2 8.78 7.46 8.04 8.25 10 9.27 8.42 2.33 4.23 10.8 10.7 9.64 1.95 8.64 9.74 9.78 10.4 11.7 10.5 10.7 6.44 9.87 0 10.5 9.66 10.8 7.83 4.75 7.93 9.57 2.33 9.07 3.71 8.56 9.18 7.45 8.7 9.58 9.66 10.3 7.74 10.3 12.3 8.61 10.8 13.9 8.33 7.28 4.55 5.7 7.72 1.44 9.67 10.1 7.49 1.72 2.75 8.73 9.82 10.4 7.24 9.01 1.95 9.24 8.22 12.2 10.4 2.62 11.7 3.64 9.94 5.3 8.14 9.52 10.1 10.9 9.52 11.2 8.56 10.6 11.6 8.98 9.46 9.98 8.39 0.65 8.32 5.36 7.89 6.28 2.48 9.77 9.33 12 8.93 0.69 9.08 1.95 9.56 13.8 9.72 3.94 6.35 9.42 6.58 5.94 4.68 14.3 9.32 11.2 2.62 3.18 1.72 12.5 6.3 2.4 9.79 11.9 9.08 13.8 11.7 12.6 10.2 8.83 7.55 12.2 11.3 9.22 8.07 9.62 1.72 6.37 6.62 1.23 12.7 5.77 5.3 0 0.65 2.33 6.51 9.54 2.87 11.6 7.42 7.71 9.37 11.3 11.6 11.5 2.15 13.3 14.7 11.5 8.99 6.98 11.5 11.2 10.9 8.43 12.9 11.4 5.02 1.72 8.5 7.3 3.5 3.77 5.19 9.16 3.08 6.46 8.33 6.39 11.7 7.81 2.33 10.9 8.26 11.8 9.67 11.5 11.2 6.21 11.2 7.39 11.7 10.2 11.7 11.1 9.07 11.6 10.8 12.1 10.3 10.9 11.7 5.52 7.81 13.8 14.4 14.4 9.37 8.45 12.4 6.51 6.47 9.95 8.71 1.72 8.99 6.91 9.88 3.08 11.6 11.2 9.86 6.33 4.81 4.55 12.2 10.4 6.04 10.5 2.39 4.04 5.57 7.96 9.66 6.56 9.71 12.5 9.98 11.6 12.1 11.7 9.54 10.4 11.9 12.4 8.55 9.5 10.3 9.17 11.4 7.8 7.66 9.36 8.35 9.05 8.8 3.88 9.81 0 7.7 1.1 9.37 0.65 7.58 12 7.7 14.2 11.1 13.6 12.2 12.5 11.7 11.5 11.2 13.4 0 12.7 13.8 1.44 7.63 3.94 8.63 6.14 8.43 7.17 6.34 4.89 8.99 5.1 9.99 6.94 2.87 6.56 7.51 8.31 7.35 7.28 7.05 7.61 9.16 6.74 7.19 7.95 4.81 7.54 10.1 7.49 9.2 8.16 10 7.78 8.21 10.6 0 9.64 10.1 0 1.44 0.65 8.36 1.1 4.83 8.64 12.8 7.88 8.29 10.6 4.86 4.65 10.4 11.6 11.1 10.6 10.7 11.2 6.41 5.81 5.83 1.1 10.9 10.6 7.96 4.09 11.7 11.6 12.7 14.2 12.1 5.94 9.33 11.8 14.8 10.8 8.44 5.69 14.9 12.8 11.8 5.51 9.34 14.1 11.3 15.7 13.2 8.42 11.3 11.2 8.79 13.1 5.28 3.5 13.6 10.3 9.77 1.95 1.1 4.32 3.5 9.56 1.1 1.44 8.93 12.1 9.46 11.5 11.2 3.35 6.81 3.71 0 0.99 10.7 11.1 2.48 2.48 1.1 6.83 8.43 6.9 7.97 1.95 2.15 6.2 4.91 6.44 8.36 8.39 2.15 4.65 8.64 5.17 3.18 1.57 4.32 5.38 4.44 8.49 10.4 0.65 8.86 7.07 3.94 7.43 9.31 8.1 7.92 11 9.33 7.4 9.99 5.75 8.03 7.7 1.1 1.95 6.54 0 3.18 9.37 6.13 2.75 3.57 4.04 8.59 3.49 5.24 4.86 2.87 7.25 8.65 6.63 1.72 10.6 9.76 6.94 4.89 8.33 4.81 2.87 2.62 4.95 1.95 9.63 2.87 1.44 6.47 4.58 9.74 6.61 8.26 5.42 2.75 3.57 4.36 0 7.79 1.44 4.95 6.74 2.75 7.62 2.87 8.03 6.7 0.65 1.72 0 6.66 5.65 5.67 4.75 0 5.32 1.44 3.08 5 5.12 7.7 6.98 6.36 9.73 5.64 0 3.08 10.3 1.1 14.1 11.3 9.88 10.2 3.57 9.56 1.1 4.47 5.82 10.8 11.4 0 8.58 9.98 0 7.8 1.1 2.33 8.41 9.79 11.4 7.09 12.1 3.57 5.26 3.35 3.08 7.27 2.75 4.68 1.1 10.5 0 6.5 9.31 0 8.8 9.93 2.33 4.04 6.42 0.65 1.95 3.5 9.57 5.1 3.77 2.75 0 4.04 7.85 5.57 3.5 7.4 3.26 0 0.65 0 5.05 11.1 3.5 9.22 1.1 0.65 7.51 8.56 3.94 4.09 11 1.95 11.7 8.42 4.19 7.74 9.3 1.44 2.33 2.48 7.3 2.48 0.65 7.33 3.99 7.18 2.15 0 3.08 9.34 1.72 10.2 3.08 2.87 11.8 12.4 3.18 1.1 2.15 0 9.82 6.1 10.3 5.73 12.5 11.3 4.75 8.72 5.44 10.2 8.08 2.15 7.17 12.2 9.21 1.1 10.2 3.18 6.62 1.72 11.4 15.3 1.72 8.8 12.9 3.71 7.99 14.2 5.03 0.65 7.2 7.1 3.94 9.88 11.7 6.95 11.9 7.13 6.16 0.65 2.33 1.72 4.86 5.7 8.26 7.97 14 10.2 9.3 5.84 7.54 4.71 10.2 3.57 6.47 7.05 0 3.35 8.81 6.65 3.08 2.98 2.98 6.39 3.79 9.77 5.28 0 1.44 7.65 11 9.57 2.98 6.2 11.4 9.61 7.33 5.17 3.99 7.97 8.72 5.38 11.6 0 7.64 8.47 8.2 9.94 6.03 6.31 9.79 1.95 1.1 9.82 3.18 2.15 1.44 7.32 10.7 6.74 6.75 2.48 1.72 3.64 4.51 12.2 3.7 8.19 12.7 9.36 13.2 5.36 10.1 8.08 7 0.65 7.55 4.32 10.2 10.8 12.4 12.2 2.15 11.1 8.73 12.6 8.41 10.9 9.18 6.5 8.46 8.48 10.5 9.84 7.5 1.72 8.33 8.73 1.44 9.36 8.51 7.49 7 10.9 9.06 6.03 1.95 10.6 1.72 12 7.97 5.15 12.1 11.9 8.52 10.8 9.86 7.17 9.5 10.8 5.32 7.45 9.49 10.5 10.8 8.93 3.18 11.1 9.53 10.3 2.75 11.9 7.51 12.1 6.38 7.31 4.97 0.65 8.11 6.94 7.62 12.5 7.53 14.4 9.47 10.2 6.68 12.2 11.2 11.9 11.1 6.71 9.19 0 3.26 1.44 11.3 2.33 4.97 12.7 9.34 10.2 6.55 9.3 8.14 9.8 12.3 9.74 7.91 12.3 7.46 8.33 13.2 8.87 11.4 11.8 11.3 13.8 7.37 7.32 9.79 9.26 11.4 0 3.18 5.72 8.98 2.15 5.72 1.52 9.09 8.34 7.99 5.4 8.53 10.4 5.19 7.25 6.43 2.48 1.1 5.44 0.65 5.46 4.71 6.63 8.15 8.07 7.82 1.1 2.87 8.42 5.5 8.13 2.87 5.81 0 4.4 10.4 5.33 2.98 6.77 6.16 6.39 7.32 1.72 8.06 0 3.57 9.72 13.6 6.83 6.79 6.27 10.9 1.72 8.44 6.94 2.87 6.07 3.43 5.48 7.69 7.62 5.59 1.1 4.71 2.48 1.44 6.6 6.86 5.42 5.62 8.92 7.36 2.98 6.04 1.95 3.64 0.65 0.65 5.22 0.65 6.94 3.83 2.15 0.65 9.23 6.47 8.43 0.65 3.5 12.7 2.25 1.1 5.3 2.15 11.2 7.68 3.5 8.58 0.65 2.75 5.95 5.07 4.92 0.65 7.13 12.8 6.69 4.04 6.21 6.26 10.1 5.67 5.81 7.22 6.9 12.9 2.75 0.65 4.04 9.34 9.92 1.1 3.5 7.07 7.65 5.1 0 5.05 9.66 9.01 7.82 3.43 8.5 2.33 7.1 9.13 8.96 3.18 12.5 9.22 3.35 9.68 0 1.72 0 10 0 0 11.4 1.1 2.15 10.9 3.99 4.04 3.5 0.65 4.78 6.4 9.88 10.1 9.64 9.93 11.5 12.7 11.8 11.1 8.66 11 6.17 12.1 11.6 11.3 0 0 14.5 8.89 0 7.02 6.74 3.71 13.2 6.3 3.5 9.82 1.95 8.27 4.59 4.65 13.7 1.53 9.63 3.64 0 5.19 9.05 4.36 6.51 14.5 7.82 11.1 9.43 2.62 1.19 2.33 6.38 8.82 8.21 0.65 1.44 1.1 5.17 1.44 7.61 4.86 5.05 7.02 4.04 4.09 9.31 2.64 1.44 9.63 1.07 5.7 10.4 3.94 1.72 12.6 0 8.1 5.94 4.58 8.23 4.92 5.12 8.8 6.42 8.01 3.5 3.88 2.33 5.3 7.87 4.78 5.95 6.61 8.54 4.51 0.65 12.4 3.35 5.36 9.01 8.14 9.31 4.44 6.74 6.51 3.57 1.1 5.84 7.55 8.7 2.17 8.99 8.13 7.46 2.62 8.34 8.28 3.88 5.85 6.5 9.69 8.97 0.65 7.49 1.1 3.77 7.45 5.78 8.34 7.88 4.69 3.43 9.82 12.1 8.87 3.94 4.27 0.65 3.71 2.74 9.42 3.77 9.53 3.5 3.57 5.91 1.72 5.32 7.44 6.27 8.44 1.59 11.6 6.37 7.72 9.15 1.72 2.15 2.75 2.15 8.61 3.08 1.44 6.87 1.44 9.36 0.65 2.98 1.1 4.13 6.42 3.94 2.48 4.89 11.2 9.17 6.18 1.44 1.56 3.77 7.45 0 1.72 1.44 6.34 0.65 8.89 13.1 10.1 3.08 8.53 9.8 10.8 8.19 11.8 0.65 12.6 0 11.7 0 8.8 13.7 13.1 12.7 8.06 0 11.5 12.1 11.8 0 0 7.39 11.8 4.92 12.7 5.17 8.5 8.03 11 4.75 6.55 10.8 9.98 7.62 1.44 15.8 10.6 14.2 10.2 4.51 2.62 8.44 11.3 8.46 11.8 1.95 12.7 13.5 11.9 9.34 9.97 8.8 9.92 1.1 10.5 8.55 10.4 0 9.35 8.86 13.2 10.5 11 9.32 11.1 5.59 5.07 2.62 11.1 11.3 1.44 6.58 7.41 6.81 8.55 9.46 10.2 6.84 4.55 4.03 11 1.72 3.18 5.99 4.95 12.6 6.1 7.78 6.45 10.7 1.95 2.75 7.81 11.3 12.1 13.1 6.26 8.71 5.98 10.2 2.33 1.1 3.35 7.31 6.18 8.51 6.51 8.85 1.72 6.57 8.03 1.15 6.96 5.7 0 7.6 2.33 0.65 8.25 7.27 2.75 8.83 3.26 3.88 8.88 2.75 12.7 6.57 4.89 2.15 10.4 5.57 4.65 1.44 3.57 7.25 7.58 3.26 6.29 0 4.62 0.65 5 1.72 3.57 5.48 11.4 1.1 7.72 5.1 4.71 7.69 4.72 1.72 1.72 4.65 1.72 9.66 5.34 5.07 7.35 1.1 8.82 0.65 4.65 6.89 2.76 8.72 8.02 1.95 6.45 11.4 10.9 5.26 7.28 7.87 1.44 0 0.78 0 5.12 9.39 2.33 4.89 11 5.44 1.72 1.95 6.73 9.86 9.1 1.44 5.65 5.55 8.08 2.15 1.95 9.36 5.28 4.44 9.27 3.71 6.77 0 8.1 9.14 13.5 3.18 9.81 11.3 10.8 3.6 8.15 12.2 5.05 6.08 1.1 4.65 12.1 6.48 7.93 8.4 9.36 9.38 10.1 8.48 12.1 3.5 10.8 5.96 11.4 12 12.3 10.7 13.1 1.44 6.34 1.1 7.42 12.3 7.76 14.3 11.6 3.71 5.38 9.42 4.65 9.79 4.83 11.2 12.5 11.6 14.2 12.3 12.7 11.6 1.44 6.83 3.88 6.7 6.8 11.8 11.5 7.46 8.95 8.79 11.1 11.3 9.98 9.44 9.81 7.56 9.16 5.07 9.12 9.85 0 5.19 9.25 9.07 8.91 2.75 4.51 8.13 9.92 10.7 9.44 9.54 11.3 9.6 11.6 7.53 8.34 8.26 11.4 12.3 5.5 2.98 8.46 10.5 10.3 6.87 4.78 12 3.26 1.1 5.42 6.35 3.13 7.72 6.58 1.72 11.3 3.94 1.56 8.36 8.92 7.51 9.65 6.76 7.16 10.3 11.6 12.1 5.65 9.88 11.3 9.24 4.89 9.68 7.88 6.99 1.1 12.6 10.8 11.4 11.7 11.1 10.4 11.5 13.8 0.65 9.4 10.3 0.65 11.7 11.8 11.5 11.3 9.17 11.6 8.95 9.97 9.51 9.81 3.39 7.53 10.9 6.83 4.27 7.64 7.56 9.27 8.33 8.13 9.22 9.65 11 9.88 0.65 0 10.8 11.7 9.35 10.1 9.35 10.1 10.4 10.8 5.69 6.6 11.4 9.54 4.23 7.69 10.3 11.2 8.3 9.34 13.3 9.17 11.8 5.65 11.6 11.2 7.58 11 13.2 8.38 0 9.07 7.68 8.1 12.1 9.93 8.67 9.26 7.38 8.3 10.8 10.8 10.1 11 5.76 3.08 5.32 11.6 10.5 7.56 8.19 9.17 14.2 7.08 2.15 1.72 9.69 5.26 12.9 13.5 6.47 10.1 3.5 6.92 8.47 7.19 5.36 7.64 7.77 6.42 8.83 1.72 6.9 8.52 0.65 10.6 7.73 10.1 9.42 8.86 4.51 1.95 8.78 6 6.53 11.3 9.53 3.88 6.83 9.37 12.6 1.1 1.1 9.69 10.4 1.44 6.8 6 10.7 10.6 1.72 0.65 3.71 3.71 5.72 2.33 8.26 1.72 3.26 5.44 9.94 9.4 4.4 6.69 10.3 5.03 6.69 2.4 3.81 6.64 7.53 10.5 6.77 3.88 6.4 1.44 8.8 7 5.24 6.35 1.1 2.98 9.56 9.58 5.94 9.51 6.75 1.95 1.1 2.62 6.13 6.78 4.47 0 6.84 5.91 6.87 7.74 12.1 2.62 7.04 6 4.78 6.02 1.95 4.92 8.8 6.34 4.58 6.43 7.44 6.34 3.08 5.83 6.85 1.44 7.05 7.12 4.89 2.48 1.95 0 2.15 2.87 1.44 0 7.98 2.15 8.37 6.44 2.87 6.83 4.68 5.32 4.4 9.39 0.65 0.65 2.15 3.35 0 3.5 7.34 3.94 1.1 6.08 5.15 2.62 2.15 11.9 2.48 10.2 8.19 1.1 7.51 13.7 11.8 9.51 2.87 7.98 6.63 6.17 9.75 13.1 8.78 5.57 4.92 9.31 4.14 7.45 6.03 4.55 5.19 8.23 10.1 6.31 5.93 9.1 8.66 10.6 9.64 10.4 8.15 6.54 1.1 9.83 9.77 10.3 14.3 10.9 3.83 9.43 9.41 7.43 9.2 8.36 12.3 9.98 9.74 6.79 7.25 10.8 1.72 0 0.65 10 7.53 3.5 10.2 9.97 0 4.09 14.8 11.4 11.3 9.61 0.65 5.76 13.9 11.3 6.29 12.2 12.7 12.5 9.3 10.7 11.8 9.2 6.26 7.62 11.2 11.6 10.5 10.1 8.62 0.65 11.2 8.98 13.6 10.9 8.68 10 12 3.94 11.8 5.28 5.52 11.2 12.2 11 12.9 9.5 12.2 8.53 10.5 3.88 5.12 9.91 8.17 5.94 10.2 14 8.01 10.1 8.97 10 12.1 9.67 12.1 10.8 8.06 9.62 9.88 11.8 10.9 10.2 9.71 9.54 9.94 12.4 11.4 11.1 12.2 9.54 10.6 11 10.8 9.08 11.6 11.8 9.89 11.4 10.7 10.9 8.77 11.2 9.96 10.5 10.8 11.3 9.78 11 9.67 14.1 12.5 10.7 8.92 2.92 6.35 8.08 6.27 6.9 0.65 0.65 8.45 9.41 9.01 8.14 9.79 8.05 5.55 10.9 10.1 13.9 11.4 0.65 9.63 6.41 6.18 8.69 8.92 8.03 5 12.7 5.1 11.8 9.61 9.05 10.6 8.89 10.2 11.1 10.3 10 8.65 8.23 8.24 9.51 10.6 13.8 0 9.79 9.49 10.6 4.19 2.62 11.4 14.3 7.58 10.8 9.05 7.09 9.5 6.42 3.88 9.45 6.3 3.43 8.65 11 10.6 12.4 9.26 11.1 8.31 11.4 11.9 2.33 11.4 12.7 2.48 6.41 10.2 11.1 8.4 9.88 11.8 14.2 7.53 5.79 5.53 9.95 5.76 10.4 8.91 11.3 6.18 12.7 3.35 1.1 14.3 8.1 7.13 7.13 5.17 4.65 10.4 10.3 11.8 5.07 12.4 8.21 1.44 12.1 4.65 3.77 2.75 12.9 10.7 9.4 0 7.8 1.95 3.94 0.65 1.1 4.14 0 8.5 7.55 0.65 5.94 7.17 13.2 11.3 11.9 10.1 11.8 9.79 12.5 8.66 4.89 9.09 8.51 10.9 8.62 0 9.85 4.62 7.32 10.2 10.6 6.74 11.7 9.8 0 7.28 11.8 8.41 3.08 3.35 4.81 0.65 12.3 10.7 10.7 10.8 8.89 7.57 11.8 7.91 5.78 1.1 1.1 4.14 8.13 1.1 2.33 11.3 10.2 12.9 6.66 9.07 8.48 7.56 8.5 0 6.07 8.61 9.91 12.5 9.48 8.19 9.93 6.31 11.1 11 5.05 9.82 3.5 8.39 7.02 8.56 10.7 6.85 5.87 2.33 8.69 4.85 4.19 5.22 5.85 6.86 5.67 11.6 14.2 4.59 5.84 11.9 1.1 1.1 4.58 11.1 8.92 15.7 10.3 11.2 9.46 9.77 7.64 11 10.3 9.88 6.59 9.01 9.4 6.81 10.1 14.3 11.3 1.44 12.8 14.4 0 5.19 11.1 6.56 12.3 3.46 8.8 8.83 6.14 8.2 9.74 8.9 9.08 5.7 11.1 7.12 8.33 10.7 10.5 8.98 1.1 3.57 0.65 9.12 10.3 9.38 11.7 10.3 11.4 9.09 9.1 1.1 2.27 1.95 12.7 3.26 8.61 9.65 6.87 4.71 2.33 7.41 10.7 10.3 10.5 10.3 11.4 8.37 10 10.2 13.1 6.89 1.1 13.2 7.9 5.62 3.99 9.64 9.97 10.8 9.93 11.2 11.2 8.99 8.14 8.34 7.18 7.96 6.85 9.98 9.44 9.24 5.81 8.9 8.34 11 8.7 11.9 8.94 7.55 9.49 8.18 10.5 11.2 7.15 8.53 9.62 7.53 11.1 7.75 10.7 11.1 10.1 10.3 10.6 8.8 11.3 7.05 8.33 7.69 11.5 5.26 6.82 9.62 11.2 11.2 7.44 7.65 9.43 1.44 8.79 10.4 9.16 10.1 10.8 9.1 9.16 8.37 11.4 7.92 9.67 10.1 10.4 11.1 10.1 10.7 1.72 8.35 3.71 2.45 5.52 11 8.33 8.1 10 9.07 12.2 7.89 9.45 10.2 8.87 9.01 10.3 11.4 7.57 7.67 7.83 8.39 9.8 7.98 12.1 12.1 10.9 11.4 9.28 10.4 9.43 11.6 8.83 8.94 8.79 9.55 10.4 7.35 9.65 9.29 9.94 10.2 10.4 5 9.59 9.97 8.37 8.59 10.6 10.4 6.72 8.84 8.61 9.57 9.39 12.4 9.62 11.4 8.81 10.3 5.7 11.3 1.1 9.98 11.6 6.91 9.12 9.58 6.64 9.3 8.57 9.82 5.95 9.23 3.77 10.4 9.31 8.01 8.1 7.32 7.74 8.79 10.8 8.88 8.87 9.06 8.07 10.7 10.8 7.46 10.6 8.64 8.05 10.1 9.09 10.2 7.67 9.52 9.64 11.4 10.4 8.89 7.46 2.33 1.1 2.75 9.59 12.1 8.52 6.5 6.69 8.54 10.3 9.55 9.92 11.5 1.1 10.9 8.6 6.87 8.15 9.16 8.08 11.9 9.71 9.27 9.44 5.73 7.51 9.78 6.25 10.4 9.9 7.34 8.62 11.2 8.06 8.94 10.2 9.53 2.5 3.43 4.14 11.7 11.4 10.8 11.9 7.82 5.62 6.08 10.1 11.8 8.69 13.7 5.82 9.16 10.6 4.36 2.48 9.83 8.53 10.3 8.54 9.73 7.64 7.68 8.69 8.16 3.94 9.76 9.16 10 4.27 10.7 10.3 2.98 8.32 9.5 4.09 8.21 8.31 4.55 9.12 9.81 0.65 10.1 7.22 9.52 9.29 8.4 9.57 10 11.7 11.4 6.17 9.9 4.92 10.3 4.68 6.27 6.42 11.8 8.41 6.94 9.44 10.1 9.51 9.44 9.34 9.46 0.65 7.98 3.71 6.41 10 10.3 9.26 9.67 1.44 4.44 10.2 7.96 9.31 4.36 11.3 9.57 8.69 11.4 9.45 9.44 9.19 4.92 5.46 9.87 2.87 6.44 13.3 9.43 9.42 9.29 9.68 7.47 8.36 9.77 9.36 11.7 7.46 10.5 9.29 7.56 10.4 6.29 7.26 9.97 9.12 8.32 7.13 9.91 11.5 7.11 10.8 10.5 10.8 7.33 10.6 10.8 2.15 11.2 8.13 9.54 11.2 3.18 9.83 11 9.49 8.88 3.48 10.9 9.07 9.27 0 11.4 10.6 8.65 10.6 2.33 8.24 7.47 11.6 11.8 10.1 10.3 8.83 11.5 9.07 8.8 9.78 10.5 11.6 10.8 9.54 11.9 8.9 6.51 9.21 8.59 7.51 10.5 9.88 8.95 9.27 9.31 10.2 9.5 10.2 5.36 8.04 7.15 4.65 11 9.82 9.03 9.28 10.2 8.2 9.89 8.81 9 8.2 9.64 8.93 11.2 4.97 10.8 9.29 11.3 7.71 5.4 8 10.4 10.8 11.4 11.8 8.99 9.57 11.6 9.74 9.16 6.14 11.2 9.12 11.3 7.94 11.9 10.2 10.9 10.4 10.1 12.3 9.99 10.5 7.57 10.5 9.31 11.7 10.1 9.19 10.6 8.39 12.1 8.09 0 8.4 10.2 11.2 10.7 8.16 11.3 9.58 10.4 7.42 8.85 10.2 10.6 10.7 8.31 8.31 10.6 9.64 11.1 9.1 10 7.74 8.96 9.2 11.2 8.54 9.27 10 7.6 11.1 8.88 7.98 11.4 9.01 10.2 8.39 10.9 9.04 6.52 4.04 7.78 8.25 8.85 3.3 1.95 7.86 8.14 10.6 8.32 9.73 10.1 12 9.95 8.54 9.42 4.32 9.64 6.79 5.52 9.83 6.48 10.9 9.23 7.1 11.7 3.57 7.81 11.6 12.4 8.27 11.4 1.44 11.7 7.3 0.65 2.15 7.73 10.2 3.35 10.5 9.18 8.36 2.98 11.7 6.86 11 9.77 11.1 9.09 1.72 9.59 9.15 0.65 9.7 10.7 11.4 12.5 5.29 11 12.8 7.14 7.69 7.11 8.71 11.2 10.8 11.5 9.53 7.95 8.89 10.4 7.43 8.71 7.38 10.4 8.47 0.65 0 8.83 1.95 11.3 10.2 10.1 9.18 11.5 10.2 1.1 10.8 11.6 10.1 7.64 11.3 0.65 10.2 12.5 13.1 11.5 8.63 11 11.8 3.71 2.62 13.8 6.42 8.61 10.9 13.7 11.8 11 5.05 4.89 2.75 2.15 11.6 5.92 11.5 3.08 9.32 9.71 9 8.76 10.8 10.1 2.33 8.74 8.67 13.8 10.2 10.2 11.5 9.6 7.96 9.19 6.96 8.29 9.87 10.4 8.45 8.06 6.35 11.1 10.5 8.78 11.8 9.29 9.1 10.3 8.23 4.36 8.87 9.62 10.2 10.4 10.1 8.29 1.72 8.35 9.14 10.3 6.54 9.53 9.92 0.86 15 8.24 9.81 0 11.9 5.95 10.1 10.3 10.3 11.3 11.4 10.5 5.15 9.53 4.89 7.62 4.04 10.5 4.97 7.64 3.48 9.78 5.5 6.23 4.51 8.78 9.57 8.53 7.9 8.08 9.66 9.91 9.54 9.25 13.1 1.1 4.09 9.75 7.51 3.58 4.65 1.44 10 11.8 10.2 7.74 12 12.7 1.44 11 9.9 11.6 12.9 10.9 10.4 10.3 9.95 3.99 8.11 6.7 11.4 5.79 9.67 2.15 6.74 2.84 2.48 11.6 10.5 9.7 10.4 10.7 8.14 7.96 9.14 5.81 3.94 6.83 0.65 9.18 10.6 3.64 5.5 4.83 7.02 10.3 5.32 10.3 8.06 8.76 4.81 11.4 8.79 9.37 7.04 9.32 8.31 8.01 10.7 9.88 9.95 9.36 10.9 11.2 9.08 7.12 10 9.19 6.27 3.71 5.73 7.54 8.13 2.98 8.6 1.72 0 7.58 9.87 9.76 7.89 4.58 10.2 9.6 10.7 3.99 10.5 8.61 6.07 2.83 7.88 1.44 8.75 8.03 6.33 8.34 10.4 9.73 10.2 13.1 13.1 1.44 6.51 7.19 8.6 9.06 10.2 11.3 9.33 6.28 3.35 9.7 8.54 12.9 12.2 11.8 2.62 3.64 9.62 7.24 7.99 11 7.38 6.42 9.47 9.32 3.08 6.64 9.99 9.07 9.48 9.74 9.68 11.7 11 4.4 10.2 9.81 1.72 2.15 12.3 9.66 8.53 11.4 3.39 7.79 5.84 3.57 10.4 6.84 5.62 9.78 11.6 12.7 10.6 9.41 8.74 2.15 2.33 11.6 9.4 11.2 9.89 8.87 9.66 8.11 1.72 10.7 9.41 10.8 10.7 6.95 10.7 9.91 7.63 10.8 9.58 6.34 10.4 7.35 9.41 8 9.07 8.17 9.93 8.46 9.35 8.47 11.7 8.82 6.28 11.9 8.35 7.72 9.57 6.85 2.15 11.3 7.35 7.43 8.33 8.82 9.34 7.59 5.96 9.85 8.86 6.25 9.89 1.95 8.33 9.56 8.5 9.15 8.81 9.34 7.24 10.5 7.39 11.1 8.56 11 9.88 5.19 9.92 7.4 9.29 7.33 7.83 5.28 8.27 8.16 7.35 7.48 12 6.89 8.28 10.9 3.5 10.6 5.05 11 11.3 9.52 8.4 3.43 9.32 9.34 7.83 11 11.8 4.47 5.48 8.9 6.91 11.4 10.9 1.72 9.37 8.8 12.2 8.52 9.83 2.48 10.4 10.1 6.7 9.31 8.98 8.96 11.4 10.8 12.5 10.4 8.23 8.5 10.4 9.61 2.33 3.35 10.3 3.08 11.7 11.2 5.12 9.56 9.22 10.1 7.76 10.2 5.17 10.5 3.18 7.15 0.65 7.13 7.4 6.57 12.4 4.86 8.53 9.75 10.2 3.57 9.57 9.65 12.5 9.25 7.44 6.66 9.93 13.7 9.44 8.89 10.7 7.8 8.54 2.62 8.73 11.2 10.6 8.09 8.3 7.65 8.43 7.07 8.85 10.2 9.48 8.76 8.82 10.5 8.5 8.6 10.2 8.7 8.62 8.7 7.46 10.1 6.78 3.88 6.05 0 8.67 12 6.75 0 10.3 9.55 9.18 10.9 6.54 10.2 8.45 10.8 9.14 10.8 7.19 6.68 8.12 8.45 10.4 9.07 9.93 7.43 9.99 1.1 9.1 7.83 9.18 9.01 9.96 8.23 8.41 10.1 6.41 11.9 9.44 10.4 10.5 10.1 7.23 11.3 6.44 10.1 8.49 9.18 7.21 10.5 8.19 10.4 8.19 9.93 8.59 10.3 11.1 11 9.83 9.69 9.07 10.2 8.49 9.17 5 6.81 7.77 5.3 8.15 9.22 7.08 10.7 2.87 10.1 8.57 9.75 7.83 6.09 10.6 8.81 11.5 11 6.85 11 6.66 7.03 8.38 10.2 9.77 11.4 8.48 11.6 9.68 9.05 7.55 9.52 8.95 9.38 9.38 4.03 9.71 9.58 9.75 11.9 5.15 8.54 4.55 9.13 10.2 9.31 9.53 10.6 9.16 8.47 9.61 6.13 8.18 7.76 7.45 6.26 11.8 7.87 9.64 7.48 9 7.6 9.36 5.79 8.96 8.39 7.17 8.32 8.37 10.2 6.58 8.9 9.06 10.8 3.57 7.3 7.22 8.61 10 5.38 9.72 5.59 8.75 0 11.2 11.7 7.3 7.88 10.5 7 8.25 12.3 10.3 6.66 11.4 13 12.4 8.33 10.6 8.24 10.8 8.61 8.42 7.68 8.8 8.78 11.9 8.12 10.4 8.4 8.23 7.27 8.98 7.94 5.59 10.4 3.43 2.33 9.53 7.99 10.4 5.91 4.04 8.97 9.15 9.46 10.9 9.38 8.76 8.05 9.14 6.18 9.62 9.14 7.75 10.8 8.68 12 9.16 8.03 8.19 10.1 10.5 9.35 6.01 8.35 8.32 9.59 4.92 4.81 3.77 8.81 3.83 9.64 6.51 11.7 6.68 6.74 5.82 9.41 7.04 9.21 10.3 9.3 8.62 8.95 9.81 9.92 5.19 4.14 9.83 5.85 8.22 8.27 8.89 7.26 9.23 11.6 2.62 10.2 8.4 10.2 9.7 9.82 8.79 6.18 10.4 9.38 9.86 8.75 8.58 7.94 7.77 10.6 8.24 9.95 8.8 10 2.87 9.38 10.9 8.29 9.13 3.94 8.88 8.86 8.83 7.57 7.06 6.87 9.47 10.3 8.96 9.74 8.93 9.05 8.02 10.1 9.88 9.46 9.4 11.3 4.71 8.15 8.89 10 9.52 9.82 9.95 9.98 9.85 9.12 11.9 8.91 8.55 9.92 6.36 9.18 10 8.97 8.99 8.06 10.3 9.48 5.22 6.47 9.5 7.39 7.68 12.9 7.76 9.07 10.2 10 5.44 9.91 10.4 7.9 11.7 4.71 9.64 7.39 10.3 8.07 0 9.65 10.2 11.1 7.59 4.95 9.18 10.2 10.1 7.08 9.86 10.9 9.08 11 7.27 11 3.5 9.72 8.14 8.7 10.7 10.5 9.66 7.52 8.88 9.36 11.9 2.75 8.72 7.07 8.11 8.8 10.3 9.45 6.61 8.51 8.12 11 2.33 10.3 11.2 10.4 8.59 10.3 11.1 10.2 7.72 5.79 9 8.44 9.3 8.44 10.8 10.9 9.51 9.41 9.89 8.93 10.2 9.18 10.6 9.12 10 1.95 8.13 8.33 7.21 10.4 3.57 8.19 9.71 11.2 10.3 10.1 4.36 11.2 9.77 10.5 5.9 9.47 7.38 10.2 9.58 9.01 2.15 6.45 9.62 7.98 8.92 2.87 10.4 10.9 1.72 9.77 7.14 10.4 11.6 9.18 8.43 7.25 6.63 9.07 9.61 9.92 0.65 10.4 10 2.15 7.91 6.25 9.47 10.9 9.67 10.3 11.5 7.7 8.73 7.44 3.47 8.67 7.94 8.85 9.94 8.41 4.27 9.8 8.17 10.5 8.51 8.84 10.1 7.64 6.9 7.04 9.1 8.92 11.1 9.9 10.9 3.35 4.27 8.96 10.8 10.6 7.1 10.8 9.51 10.2 8.78 6.13 7.82 9.08 5.5 5.69 3.99 9.29 11.5 9.84 6.11 10 9.45 11 9.1 11.2 11.4 9.55 11.8 7.94 10.6 5.67 6.53 12.6 11.7 4.27 7.83 0 7.58 9.94 9.85 4.81 0 2.33 8.65 4.71 8.51 9.45 7.17 1.72 8.28 8.84 10.2 10.8 10 11.2 7.97 2.48 9.93 11.1 9.9 11.5 8.32 6.13 1.1 8.3 10.5 9.59 5.82 8.52 5.48 7.54 8.22 7.89 0.65 13.3 5.73 5.07 10.1 9.73 6.85 1.72 6.5 8.43 10.6 5.25 5.02 9.34 2.33 2.15 5.88 4.68 9.47 8.55 7.84 7.85 5.88 4.36 9.69 8.79 10.7 8.84 12.2 3.57 9.27 10.4 7.64 5.57 11.1 11.1 7.78 11.3 5.44 10.3 9.11 6.14 0.65 10.2 9.1 10.2 9.91 11 9.11 9.65 6.44 8.95 10.9 10.3 4.14 9.93 9.66 8.09 7.74 7.17 11 8.63 8.51 9.82 10.4 10.6 10.6 9.29 10.7 8.1 10.8 9.68 8.89 8.69 8.79 9.05 7.39 9.19 8.65 7.83 8.89 6.84 10.3 7.8 9.55 8.81 9.44 8.19 9.87 9.66 8.11 12.6 12.6 9.8 8.13 9.27 6.52 9.98 11.5 10.7 10.7 7.56 7.55 10.1 12 9.37 7.26 10.4 10.4 9.45 11.3 8.01 9.58 11 8.41 8.02 10.3 11.3 10.5 8.93 8.38 10.6 7.02 11.7 6.96 8.67 4.97 9.24 9.58 9.6 4.4 11.9 9.5 10.9 8.76 8.04 7.89 9.01 11.6 9.51 10 8.57 10 4.23 2.98 7.85 11.5 7.88 10.3 8.26 9.22 10.4 5.84 5.59 8.61 9.48 10.4 9.61 9.72 12.6 11.6 8.56 7.87 9.5 10.3 12.1 10.6 9.64 12.2 10.7 10.1 8.83 9.56 9.65 10.5 11.4 10.8 8.29 8.03 9.51 11.4 4.51 13.3 10.2 7.28 9.12 9.24 9.56 8.24 10.5 10.8 7.63 10.4 8.73 11.7 9.38 9.53 9.1 8.58 9.57 7.53 9.9 8.58 8.42 8.46 7.77 6.04 9.86 7.95 8.03 8.67 8.41 11.2 5.5 7.44 10.1 7.62 5.52 9.75 10.1 8.21 7.3 9.63 7.05 7.94 4.04 11.7 9.44 5.38 9.17 7.72 4.23 3.57 7.9 8.09 7.75 10.4 2.33 6.66 10.9 9.89 2.15 10 9.57 2.75 10.1 7.81 9.06 10.9 10.7 8.47 9.2 9.77 11.6 9.41 8.24 8.94 9 11 6.04 9.98 4.32 9.11 10.8 8.03 9.38 7.72 10.7 8.54 10.8 9.87 3.19 10.8 8.23 10.1 8.47 11.4 4.19 10.8 9.92 9.62 10.1 9.4 0.65 8.44 7.13 10.9 7.73 7.98 6.3 7.91 11.1 4.68 3.83 1.44 12.1 9.86 8.65 9.02 3.99 10.5 8.32 9.05 5.38 9.53 10.7 10.6 4.89 10.2 7.28 13 6.17 10.9 9.59 9.39 9.61 6.74 12 8.22 4.04 8.88 5.24 10.3 4.14 12.6 10.6 8.4 7.25 7.61 10.7 5.81 1.72 10.6 10.9 12.2 11.4 11.4 11 7.62 10.2 11.2 10.1 8.19 8.92 3.08 5.59 0 11.2 9.64 9.94 4.19 10.8 10.3 11.2 10.8 8.93 9.91 11 3.18 7.09 7.64 9.43 8.96 2.75 1.1 6.58 10.9 4.83 6.47 2.48 4.27 5.19 4.62 5.19 4.81 3.37 3.71 12.1 4.05 4.09 2.91 3.94 4.78 9.88 0 4.68 6.08 6.68 5.65 6.53 6.25 5.57 6.88 4.92 8.35 6.6 5.65 8.12 8.31 2.75 5.34 8.62 7.91 9.5 4.62 1.95 10.6 7.92 8.1 9.97 1.1 8.43 10.7 0 5.34 6.43 4.51 10.6 1.1 9.21 10.5 3.26 9.98 9.25 7.46 9.54 9.77 4.4 11.3 10.7 8.62 8.35 10.6 11.9 7.73 9.92 0.65 6.6 9.76 8.41 10.2 8.35 9.33 8.77 7.83 8.14 11.6 4.45 0 7.42 9.66 6.9 9.23 2.98 4.27 11.2 9.09 10.8 4.95 1.72 14.6 8.15 8.63 5.72 9.56 5.67 7.44 11.2 9.04 10.3 8.16 11 10.7 8.64 7.09 8.86 8.55 3.35 1.1 9.92 2.48 8.13 1.44 10.3 5.99 11.5 9.64 15.4 5.12 0.65 10.6 8.77 11.8 10.6 11.7 8.63 9.04 10.4 8.64 11.6 9.72 10.7 7.47 3.08 11.3 11.4 11.5 11.5 12.1 11 12.9 12.1 7.23 10.2 10.3 10.7 8.66 9.58 8.15 4.32 11.4 9.98 6.99 9.65 9.21 10.4 5.84 10 11.2 13.3 5.65 8.49 10 8.95 9.5 7.02 8.32 12.2 6.55 9.42 8.02 8.97 11.3 9.65 9.05 8.47 11.6 7.89 9.41 12.5 8.92 11.1 8.68 10.2 8.69 8.67 9.79 9.19 8.14 11.6 7.84 10.1 11 9.51 11.6 7.66 4.44 9.83 9.7 11.1 0.65 5.85 3.18 9.71 8.01 10.8 7 10.8 7.76 3.94 9.13 7.74 4.83 7.84 10 5.96 8.08 10.5 9.13 11.4 7.48 11.1 10.8 9.88 8.52 8.5 8.9 9.53 0.65 9.48 8.07 8.49 11.7 8.79 10.9 3.51 11.1 8.77 10.7 11.6 9.97 7.21 4.19 7.84 9.4 9.51 12 11.1 8.35 11.6 9.62 2.98 10.5 9.12 2.5 11.2 12.4 13.1 8.63 10.4 9.02 10.1 11.6 6.73 11.3 4.09 9.14 4.51 8.09 7.68 11.2 12 0 9.55 9.92 11.5 2.98 7.25 8.84 8.74 10.1 11.3 4.58 8.41 5.5 10.9 7.05 10.3 9.94 7.28 3.08 8.21 10.1 11.3 10.1 12.1 6.21 10.9 7.83 12.1 11.4 12.2 6.96 10.2 8.33 10.6 8.36 9.18 7.09 12.3 10.9 3.35 9.79 1.72 9.93 7.39 8.73 3.77 5.99 8.1 10.7 12.1 8.66 11.3 9.6 10.9 10.8 10.5 6.4 10.4 9.39 9.05 9.11 9.45 10.7 4.4 10 10.3 11.8 3.64 8.3 7.63 8.65 9.04 10.8 9.54 6.98 10.9 12.4 8.23 8.47 8.43 11 9.45 10.4 11.1 8.7 12.1 11.6 8.72 10.1 9.44 9.21 11.1 5.64 7.7 12.9 7.24 10.8 1.72 2.75 8.94 11.6 7.04 1.44 5.95 9.24 10.9 4.59 6.95 9.6 7.75 5.59 7.43 3.83 6.11 8.22 3.18 4.4 12.3 9.34 6.09 7.27 3.43 6.7 7.77 0.65 0.65 10.3 8.78 0 8.41 6.8 9.32 8.22 10.7 8.66 10.2 7.26 9.49 8.14 7.98 11.6 7.31 10.4 8.02 11.1 7.3 4.89 2.62 0.65 2.87 8.86 8.64 10.2 9.43 1.1 9.18 9.23 10.8 5.15 7.54 7.98 9.54 0.65 5.75 10.6 10.2 5.28 9.95 8.34 6.96 7.04 8.49 8.12 8.69 10.9 10.8 7.88 4.36 9.73 11.6 9.51 3.43 11.5 10.6 13.6 2.48 9.93 0 11.2 2.62 5.34 4.86 10.9 8.27 11.3 6.88 8.68 11.7 10.7 10.5 9.08 8.58 12.1 8.44 10.2 9.56 9.61 3.71 5.76 3.5 1.1 7.7 12.1 7.92 11.7 11.4 12.1 5.62 5.88 5.52 8.3 7.99 11.8 1.72 8.08 9.55 6.52 9.02 6.62 6.9 7.56 9.72 10.4 10.1 1.1 8.21 9.75 8.27 6.82 11.5 9.08 10.7 7.45 8.5 0.65 7.94 8.99 5.48 14.2 8.05 3.35 9.33 4.36 2.62 3.43 6.68 1.95 9.77 9.78 0 11.2 10.6 9.67 9.78 8.12 11.1 11.3 9.85 6.84 7.84 3.18 3.71 9.39 9.31 7.61 7.91 9.87 4.14 7.85 10.7 9.49 11.4 8.6 7.58 9.09 0.65 8.23 11.3 11.5 9.36 9.51 5.95 7.31 0 11.4 9.24 4.83 10.4 8.46 4.44 7.32 1.1 11.3 10 9.39 12.7 10.4 8.67 3.43 8.13 12.3 6.68 9.6 10.7 9.86 8.99 8.88 9.01 8.43 9.31 9.28 7.65 12.6 7.65 8.56 9.69 12.7 10.6 9.28 5.98 7.26 4.75 8.23 2.98 7.83 6.42 6.92 9.06 9.64 8.63 6.52 11.3 4.92 2.15 10.2 9.66 8.62 9.95 10.2 4.44 8.79 8.96 9.75 10 6.27 8.23 4.58 10.9 7.56 8.15 1.44 7.34 11.7 8.1 5.87 8.98 9.98 7.69 3.83 5.76 7.97 0 9.51 7.49 5.17 10.6 7.45 10.8 6.51 9.5 10.1 8.41 9.94 10.3 9.07 10.1 5.59 10.2 9.86 12.1 9.38 11.8 7.84 4.23 5.07 7.46 10.1 8.84 4.55 8.35 0 11.4 7.67 8.39 10.3 9.56 3.46 1.72 8.2 8.62 6.99 6.22 8.79 13.3 9.08 10.7 11.6 11 10.6 10.4 6.78 4.36 7.63 4.86 5.96 9.27 8.75 3.94 9.44 9.41 8.22 10.7 7.09 11.8 8.65 8.24 11.9 11.6 12.1 8.75 4.47 9.78 10.7 11 8.25 6.98 10.6 10.8 9.56 10.3 11.1 12 9.55 11.4 11.4 2.48 12.1 7.94 6.94 11.9 10.8 10.2 9.97 5.19 9.67 9.58 10.4 8.69 10.4 9.91 5.05 5.59 7.52 7.2 4.73 9.74 5.17 8.61 6.23 4.71 11.6 11.5 9.84 8.64 4.65 10.2 8.48 10.7 10.7 10 9.9 9.72 6.74 1.1 10.5 1.1 3.18 11.5 9.19 9.03 12.7 10.5 9.94 4.32 4.81 7.48 9.22 10.2 12.1 10.2 12.2 9.03 10.8 9.95 8.22 8.23 9.4 9.02 11.7 13.1 8.06 6.54 7.6 8.86 12 11.3 12.2 8.47 7.52 5.1 5.34 7.55 7.54 10.6 7.22 11.3 11.3 10.6 13.1 9.05 11.8 10.7 11.6 11 10.3 10.9 8.2 10.3 9.17 9.67 10.2 1.1 9.34 9.18 9.28 10.8 9.66 10.8 7.48 9.53 6.34 2.75 7.17 10.7 7.78 7.37 11.7 7.64 5.96 9.65 9.35 12 10.4 9.85 10.1 11.2 9.03 11.3 11.3 7.9 0.65 11 9.46 10.7 2.33 8.68 10.6 10.8 2.33 11 7.96 10.2 12.4 1.44 5.02 11.2 11.7 10.9 8.53 7.73 0 2.55 0.65 13 10.9 5.51 1.1 12.6 10.6 1.72 5.54 5.88 4.95 12.9 10.6 6.79 6.56 11.3 10.6 4.83 11.3 10.2 8.95 4.04 11.4 7.96 10.5 9.31 9.72 9.53 7.83 9.2 10.1 0 8.46 9.01 7.16 5.64 0 9.59 5.96 8.1 8.5 9.27 16.7 8.12 8.78 2.87 9.77 1.72 1.72 10.2 1.1 9.43 10.5 8.83 0.65 11.4 4.09 10.8 11.3 9.04 9.2 10.2 3.71 0.65 10.4 9.66 0.65 7.9 6.49 9.82 4.09 9.91 9.82 0 8.93 6.54 0 10.1 12.2 7.52 11.5 9.58 11.4 0.65 9.35 7.87 10.7 8.51 10.2 7.16 9.81 10 9.1 3.18 10.7 8.51 11.7 9.75 11.6 9.25 10 9.59 11.9 8.49 8.74 11.1 11.3 1.72 7.7 10.9 6.25 7.82 8.68 3.26 9.97 9.14 3.64 1.72 3.52 8.29 3.43 11.4 10.8 9.66 11 7.15 9.89 3.35 10.2 11.9 3.94 8.05 1.1 8.56 6.99 7.23 9.22 7.46 1.44 10.6 9.39 8.37 11.2 13.8 14.4 13.4 12.3 10 11.3 12.7 4.32 14 7.52 13.2 13.2 12.2 12.8 12.8 11.3 13.3 11 13.5 3.35 12.3 12 9.3 12.2 12.6 12.2 12.6 13.1 13.5 12.2 12.5 12.7 11.6 12.8 10.8 12.7 13 11.6 8.51 8.57 13.3 6.49 13.8 13.6 13.8 10.2 10.2 13.2 13.4 13.1 13.5 11.5 13.6 4.6 3.83 2.15 6.8 7.11 13.6 0 2.48 13.1 10.2 10.3 11.6 10.1 9.15 12.4 13.3 13.4 11.7 14.6 13.5 12.3 12.4 11.2 12.5 14 13.3 9.52 13.6 13.7 13.1 11.6 12.8 13.3 12.9 9.13 9.75 13 6.08 11.4 4.04 10.4 12.5 10.9 10.8 11.6 9.6 1.1 7.96 11.6 9.94 3.57 8.85 10.2 9.25 10.1 8.5 3.43 2.75 2.17 1.95 11.2 5.15 3.99 10 0 14 8.36 11.7 13.6 13.5 2.62 9.47 2.33 14.1 11.2 10.3 10.6 9.42 7.49 7.53 11.1 9.65 9.69 11.6 9.4 8.05 10.6 11.7 11.7 6.1 9.79 9.97 8.84 13.5 5.61 7.57 6.39 7.97 1.95 1.44 3.88 0.65 14.4 3.83 2.75 6.86 9.79 12.2 7.5 4.14 7.14 8.75 11.7 1.95 2.62 9.37 7.4 4.47 4.62 7.02 8.89 5.48 4.11 7.17 8.82 7.65 1.1 0.65 10.2 0 4.04 5.64 4.51 3.77 7.88 6.92 13.3 6.65 5.48 9.94 12.6 11.7 9.28 9.84 10.3 5.07 9.28 10.5 11.1 8.88 9.75 9.27 8.42 5.52 8.56 8.92 7.97 8.99 11.1 9.71 9.99 8.02 6.93 11.3 6.86 3.21 7.73 9.83 9.23 11.4 7.02 8.22 3.5 5.72 9.1 9.05 9.01 8.79 7.93 8.14 4.14 9.86 8.9 7.31 8.44 7.17 11.2 8.45 10.4 0.65 9.84 3.5 7.95 8.95 7.72 7.25 1.72 11.2 6.64 0.65 6.47 3.26 7.8 9.1 8.83 10.1 2.33 13.3 3.35 2.48 10.9 9.44 4.71 5.85 7.43 11.7 5.65 10.7 7.69 0 3.35 6.27 10.4 8.89 7.04 5.64 8.92 3.64 7.42 5.72 9.69 8.22 13.3 9.09 9.45 9.94 8.24 9.9 7.44 7.61 9.13 3.29 5.07 9.37 4.23 9.12 6.54 10.7 3.99 7.82 1.1 10.7 8.63 7.13 7.39 6.09 8.62 10.9 10.2 9.83 8.83 6.33 10.7 6.04 2.98 4.47 7.22 3.57 10.2 12.4 1.72 7.63 6.49 9.89 9.75 12.6 10.2 8.71 9.26 8.35 9.43 5.78 6.74 9.81 9.6 10.6 10.8 3.64 11.9 7.54 8.59 10.4 1.72 1.44 7.16 0 12.2 1.1 11.5 12.2 6.02 9.43 5.43 8.31 8.44 6.14 9.2 9.24 8.74 10.2 9.08 7.16 1.1 3.35 10.7 2.48 0 11.7 10.7 9.03 10.7 11 8.72 6.88 10.9 7.45 4.68 10.1 9.73 9.94 9.08 6.54 7.9 5.3 5.55 0 3.43 5.79 11.4 9.77 9.76 9.57 10.9 6.9 0.65 2.15 9.59 7.87 8.2 3.5 0 8.76 6.54 6.37 8.16 7.4 5.19 3.71 9.01 0 7.31 8.77 3.26 10.6 9.66 0 9.89 9.39 6.16 8.66 2.48 5.38 7.01 11.9 7.55 8.48 8.41 6.36 0 7.78 1.1 8.46 2.87 8.9 8.93 4.55 9.03 7.35 9.51 11.1 8.57 9.69 8.62 8.82 8.99 9.88 8.91 9.04 9.1 8.05 2.33 8.4 0 1.44 6.05 7.08 3.94 5.6 10.4 5 7.87 1.44 8.67 2.98 7.58 8.06 1.1 10.1 0.65 6.04 0 8.14 12.3 5.85 2.98 10.9 4.93 2.48 7.02 1.72 10.2 9.69 6.61 1.44 4.73 1.1 2.33 10.8 0 5.1 4.36 5.75 1.72 2.98 2.48 6.61 0.65 2.75 7.51 7.86 8.83 0 9.19 2.15 2.98 1.1 9.07 2.15 7.58 2.87 11.6 2.62 10.1 3.35 4.07 8.97 0.65 1.95 8.87 9.39 9.9 5.52 9.17 2.33 0 4.75 1.44 11.2 4.4 9.17 8.01 7.72 6.02 10.1 10.2 13 6.47 2.33 8.65 10.8 4.36 6.1 9.91 8.92 8.08 11.5 9.89 9.32 8.67 4.27 8.29 11.6 9.71 8.85 12.5 8.28 9.69 8.46 9.48 11.2 8.88 8.21 9.93 10.1 8.97 11.8 6.13 7.75 7.27 8.88 11.7 7.53 9.87 8.28 9.78 9.14 8.1 10.6 7.04 2.33 9.87 11.4 6.53 7.48 8.58 8.93 7.76 4.32 11.3 12.7 7.36 4.58 10.5 11.3 3.5 8.95 7.07 1.1 9.72 7.75 10.9 9.06 7.78 8.93 10.2 9.29 10.4 3.99 11.2 7.72 8.84 3.71 8.71 10.5 9.1 12.4 9.71 10.4 8.01 8.89 8.88 8.77 8.56 11.4 6.51 1.72 7.02 4.89 8.73 7.63 9.65 6.82 7.88 2.87 8.48 6.89 8.64 3.18 10.3 8.41 5.75 8.32 10.9 9.13 6.17 10.2 7.21 8.74 9.01 7.6 9.2 7.13 10.5 3.08 10.7 9 9.27 9.2 11.7 11.2 8.63 9.61 9.84 7.57 11.2 10.3 10 10.2 1.95 8.23 11.7 9.78 9.94 8.85 6.26 8.15 4.46 10.1 7.58 7.58 4.65 3.99 6.63 4.97 10.4 7.82 10.4 3.99 9.24 6.56 8.73 2.15 7.92 6.52 7.21 10 9.11 11.4 9.46 9.53 9.5 8.95 4.23 13.1 11.5 8.03 8.96 9.51 3.99 10.9 10.2 14.1 9.55 14.4 0.65 13.2 1.72 7.64 8.06 6.9 12.7 0 10.7 11.9 5.15 4.92 10.2 9.3 11.1 8.68 7.42 9.71 10.2 8.17 7.93 11.6 9.15 5.19 5.4 7.23 1.44 8.05 5.17 0 9.27 1.44 3.83 4.58 7.95 1.44 6.66 4.62 3.77 2.98 0 4.95 1.44 10.9 6.38 2.48 6.15 2.98 0.65 0 8.06 8.96 9.05 7.77 11.3 2.33 7.62 5.82 8.77 2.33 8.96 6.83 5 2.62 0.65 7.16 0.65 7.88 4.14 5.1 6.72 1.1 11.3 12.3 0 1.95 2.33 8.01 7.95 3.94 6.25 1.1 6.59 5.88 7.64 4.97 4.81 6.22 1.1 1.95 10.6 3.64 3.08 6.37 1.1 4.09 0 8.8 0 11.2 1.44 6.15 9.57 0.65 4.71 8.69 8.19 9.26 0 3.71 8.58 10.7 9.41 10.9 8.63 8.4 0.65 9.57 4.23 8.32 2.62 6.63 11.4 13.2 8.48 11.4 9.44 10.1 8.22 4.83 9.03 10.3 10.7 8.98 7.03 7.41 8.44 9.66 8.64 8.69 7.43 4.86 11.2 7.12 10.1 9.44 10.3 9.45 5.48 8.69 7.74 0.65 4.4 6.41 6.31 10.4 10.2 11.4 10.4 10.7 6.36 7.3 6.67 11.4 1.01 10 8.88 8.66 7.76 7.83 10.4 10.9 11.5 7.49 6.8 6.77 7.3 7.97 8.24 7.23 7.4 5.72 5.53 11.4 10.8 10.2 10 11.7 9.91 9.05 10.1 10.8 11.7 11.3 9.59 9.46 9.55 7.87 10.5 8.16 6.92 10.7 10.3 9.45 11.6 2.15 12.1 1.95 13.8 8.49 10.7 9.8 12.5 10 12.5 10.8 9.07 12.3 9.67 2.62 9.09 0.65 6.54 8.85 11.4 8.9 10.5 12.1 8.12 11.3 9.24 10.9 7.19 15.6 10.1 9.47 7.66 2.15 8.64 1.44 13.1 5.9 9.99 13.3 9.7 7.87 11.9 0 6.76 13.2 9.33 11 11.2 8.04 9.74 11.7 9.3 9.96 13 10.1 10.3 12.2 12 9.62 10.7 7.19 11.4 12.4 11.6 9.81 13.1 9.41 10.3 12.3 10.1 11.8 12.1 12.6 12.4 11.9 11.9 8.43 4.09 0 11.6 9.34 12.9 12.8 3.88 12.2 0 13.6 11.6 13.6 7.5 7.98 9.97 1.44 1.44 2.48 1.72 0 2.75 0.65 1.22 11.5 2.17 0 0 2.06 12.5 12.1 9.67 11 4.09 5.42 10.6 6.7 9.1 9.09 9.89 10.6 5.72 5.96 8.78 8.75 3.71 6.14 9.24 6.54 9.77 9.63 9.95 9.19 10.4 9.68 9.13 9.15 10.9 3.71 14 11.5 9.12 10.3 12.1 5.95 12 9.01 8.87 6.99 12.6 8.53 8.68 8.09 9.16 10.8 6.5 9.39 10.9 3.08 9.96 3.64 4.4 4.51 11.2 7.22 7.79 6.31 3.26 2.15 11 11.3 2.87 9.31 6.89 9.51 9.38 9.03 7.77 13.3 6.61 10.2 10.7 12.7 10.3 9.75 9.52 8.78 8.96 10 3.83 0 13.8 12.3 11.9 10.6 12.7 9.2 8.81 11.5 4.55 3.08 8.15 9.89 8.39 9.15 10 11 8.6 8.29 4.65 6.99 6.18 6.04 11.1 6.7 9.3 2.15 6.07 6.7 10 1.44 0 10.8 5.49 10.6 9.86 7.98 7.93 10.4 9.09 9.69 8.72 9.17 10.8 0.65 11.2 7.24 9.18 11.2 10.2 9.99 1.72 8.97 10.1 5.28 12.8 1.44 1.1 8.75 9.88 9.78 4.75 11.4 10.8 10.5 7.04 11.3 11.2 9.47 10.2 6.24 2.62 9.25 14.9 9.68 5.12 9.02 1.1 9.16 8.95 2.48 10.6 3.35 9.95 9.69 7.18 9.44 7.74 11.1 11.3 8.58 10.6 4.32 12.2 5.73 13 2.48 10.2 9.63 9.3 6.48 8.91 1.1 11.7 12.6 0 11.1 7.64 9.86 11.8 3.35 12.2 6.24 8.08 13.3 13.9 8.41 10.7 2.87 4.58 8.94 2.33 8.34 8.98 0.65 11.9 10.1 8.85 10.5 4.97 7.75 12.5 13.7 13.9 1.44 10.6 12 11.4 8.26 13.7 5.42 9.96 7.64 9.8 7.69 3.77 13.8 12.1 7.32 7.59 7.39 7.3 15.7 12.9 8.48 9.28 10.5 9.1 7.46 9.69 10.2 10.1 5.87 11.6 13.8 9.82 7.61 5.26 3.08 2.48 11.8 11.1 8.83 9.98 7.72 12.5 9.66 6.81 2.33 6.07 7.66 9.78 0 12.7 6.46 12.7 11.5 6.7 2.48 12.1 11.7 8.01 10.1 10.9 10.7 13.2 3.88 10.4 11.1 9.59 11.8 0.65 14.4 12.2 12.1 9.19 13.4 14.1 9.61 9.88 12.2 7.3 15.7 0.94 14 8.41 9.71 14.8 6.79 8.86 8.71 8.29 7.46 6.89 9.79 0 13.1 10.6 8.13 6.45 8.16 6.57 0 1.1 6.02 8 8.54 0 6.04 2.01 11.2 8.57 10.4 8.45 11 2.15 11.5 10.4 13.4 9.5 8.66 11 10.2 9.56 10.4 11.5 9.3 11.4 8.03 8.89 6.11 6.91 12.5 6.17 6.63 12.4 7 7.29 9.38 8.13 8.1 4.55 5.34 5.55 6.48 7.31 1.44 8.23 5.35 4.95 6.43 7.23 9.97 5.07 8.13 0 7.05 4.36 12.3 6.48 2.15 2.75 5.65 8.43 7.37 4.59 9.97 1.1 5.85 7.05 5.87 3.18 4.51 9.15 6.83 1.72 13.4 3.5 6.02 0.65 5.79 1.1 1.1 7 8.08 2.33 10.2 2.87 1.72 9.55 7.22 9.95 4.23 4.51 2.74 6.03 0 2.98 6.83 7.13 4.44 6.77 6.61 4.04 5.75 1.95 4.55 5.1 3.5 4.58 7.2 12.1 8.67 5.57 8.81 4.51 4.36 16.3 5.02 5.07 1.44 7.71 9.65 0 3.57 3.43 11.1 6.95 8.29 3.64 5.12 0 8.09 7.89 0 3.5 5 7.42 4.51 8.17 8.22 6.72 1.1 8.43 1.1 10.3 2.87 12.2 3.64 13.3 14.9 13.1 7.45 8.09 10.5 9.75 10 10.6 12.1 10.6 8.85 10.6 9.99 10.9 10.8 0.65 11.5 10.5 11.5 10.3 10.8 10.2 11.3 9.97 11.3 12.4 8.58 8.94 2.48 10.6 4.04 11 4.44 10.6 8.72 14 11.8 1.95 9.53 9.65 7.74 10.1 8.74 11 10.1 3.99 10.4 1.44 11.3 12.3 12.4 11.4 11.2 8.85 9.24 9.51 10.7 10.4 3.18 10.6 11 9.09 8.84 11.7 12.9 6.81 10.3 10.2 10.9 11.8 14.1 13.2 11.6 11.7 9.97 11.7 10.6 9.1 2.33 8.69 5.64 13.9 13.4 5.15 4.51 7.72 4.36 2.48 6.66 8.47 10.1 5.19 2.98 9.31 9.64 11.6 6.1 11.2 12.4 10.3 9.32 6.2 10.2 9.61 10.9 12.3 10.1 6.62 1.1 5.9 9.77 1.1 4.83 10.7 1.44 1.72 1.72 3.08 2.75 0.65 7.96 7.66 5.36 13.3 4.51 0 2.48 8.18 7.3 8.45 5.15 10.4 1.95 12.6 9.83 6.84 8.83 7.94 10 13.5 5.91 11.8 11 13 6.31 13.2 13.1 11.8 14.2 4.86 12 11 3.88 13.3 8.36 9.28 9.12 7.72 8.03 8.92 7.46 8.19 7.35 12.7 5.46 10.1 6.4 5.78 7.15 7.02 6.85 4.64 6.1 7.51 9.07 9.41 7.26 10.3 7.37 9.71 6.54 8.88 8.91 9.3 7.27 9.18 7.92 7.26 7.49 7.79 6.18 8.32 6.14 9.66 1.44 1.72 3.18 7.95 8.4 8.1 8.89 8.74 6.61 0 8.48 4.09 3.99 8.06 7.22 0 7.75 6.52 6.33 3 11.8 5.72 1.44 1.95 1.95 0.65 6.56 1.72 8.59 9.26 4.04 7.41 7.86 4.78 7.2 5.69 6.62 8.5 5 5.76 9.32 9.12 9.38 2.33 12.2 10.3 10.1 8.75 12.7 4.75 7.56 1.1 9.74 6.4 10.2 8.17 7.88 2.75 4.11 3.64 7.97 8 7.3 10.5 6.48 6.85 8.24 7.95 6.72 7.63 7.78 11 8.73 8.61 6.04 8.33 11.9 3.77 6.61 8.24 4.47 5.62 12.2 10.3 7.13 7.93 7.06 7.59 3.18 8.1 7.07 2.15 7.16 7.21 7.63 9.5 1.95 4.71 6.08 8.15 6.06 5.7 11.4 9.89 10.1 12.2 4.86 15.7 8.78 11 9.07 13.6 8.46 10.7 4.58 7.13 8.53 11 8.34 8.73 10.2 10.9 11.1 6.22 3.57 9.2 9.65 9.17 11.3 5.32 8.75 9.79 9.22 7.61 10.7 10.2 11.6 12.6 9.16 4.32 10.9 0.65 7.93 9.49 3.26 6.35 5.75 9.93 8.87 7.5 9.62 1.44 4.14 9.71 11.2 7.35 10.1 10.2 8.48 9.14 9.36 7.1 1.95 9.2 9.56 1.1 10.8 10.5 7.5 7.87 8.87 10.8 9.31 3.64 13.2 10.1 7.86 6.83 8.91 9.59 9.34 9.66 10.1 4.36 9.09 9.95 8.2 10.9 10.3 8.98 11.1 8.34 11.3 8.1 8.43 8.98 11.2 9.43 10.3 7.48 7.37 7.06 10.6 7.85 7.35 9.3 7.08 9.47 9.26 9.6 11.5 10.4 10.1 6.55 9.76 8.35 6.9 8.36 8.96 8.46 7.97 10.1 9.39 9.61 10.9 10.1 11.2 7.77 7.04 9.3 7.88 11.2 10.9 5.44 9.45 11.5 11 8.69 9.02 4.36 7.51 7.95 10.8 5.38 7.39 10.1 7.19 8.91 11 8.36 12.5 7.61 7.7 1.1 5.56 7.9 12.2 9.76 11.2 7.98 3.64 9.92 7.48 7.37 8.43 6.92 8.31 10.5 9.23 9.53 2.87 10.6 11.9 9.9 9.58 12.3 8.75 8.51 6.73 1.51 10.4 0 1.1 1.1 10.7 4.75 9.79 6.96 6.71 2.48 2.75 6.18 5.4 2.48 6.8 7.31 5.48 4.68 8.62 10.2 7.89 8.82 4.09 9.9 7.04 9.31 5.81 1.44 3.71 3.09 9.77 9.13 6.48 4.23 9.25 11.9 8.32 9.52 8.61 10.7 10.3 9.54 5.79 8.42 12.2 9.35 10.1 8.73 9.33 9.38 9.21 7.09 8.41 12.3 8.19 4.95 8.96 0 6.36 6.2 8.04 7.51 7.83 6.31 9.05 8.39 8.78 10.5 8.81 4.89 7.83 3.18 9.18 5.82 8.68 6.89 6.69 8.58 7.3 8.95 8.46 9.79 8.11 5.57 8.39 11.2 2.48 9.25 11.4 7.76 6.33 9.54 10.1 9.65 7.76 9.87 5.36 9.76 8.05 7.02 9.79 5.9 6.52 9.56 10.3 8.32 2.98 8.05 7.17 9.17 9.27 9.94 8.6 5.85 9.13 7.65 9.52 9.7 8.66 7.25 6.93 8.96 10.5 6.8 9.26 9.51 8.62 9.14 9.42 5.62 8.15 9.67 7.85 8.07 8.87 8.42 7.97 11.7 8.5 9.61 8.81 8.9 8.75 8.37 10.8 12.3 10.9 9.38 0 7.32 9.78 6.83 8.61 8.28 8.1 8.48 9.71 8.77 7.92 9.76 8.01 7.99 6.9 1.95 6.94 7.75 9.44 3.43 0 12.4 1.72 9.9 8.63 8.19 7.77 4.92 8.08 8.37 6.13 9 9.98 9.76 9.32 9.5 9.54 5.99 8.46 5.05 7.39 9.31 7.71 9.32 8.06 4.71 6.54 14.7 8.11 2.48 9.14 10.9 7.73 9.71 9.99 9.05 8.12 7.93 5.3 8.93 10.4 8.78 6.61 8.7 9.31 5.95 11 7.5 9.88 7.32 7.28 6.35 7.51 7.58 6.24 8.47 4.04 7.7 6.71 5.1 8.77 8.9 8.99 8.41 6.61 9.98 7.93 9.56 7.46 11.6 10.7 6.31 9.15 8.43 2.75 5.57 3.26 4.09 6.66 5.42 7.61 7.81 4.92 8.74 3.83 9.76 3.18 7.58 1.1 6.93 2.98 6.46 7.09 8.12 1.95 8.25 8.22 8.92 10.7 3.83 8.21 9 5.81 8.42 6.69 9.99 8.67 6.03 7.56 10.2 8.1 8.6 8.44 8.08 12.5 10.7 9.64 4.81 10.7 10.6 10.2 4.14 7.27 8.29 6.74 7.26 11.8 9.64 10.6 8.72 6.25 2.33 9.45 8.5 8.03 8.12 6.7 7.78 10.4 6.51 0.65 8.67 6.39 2.75 5.48 6.38 6.6 5.3 10.7 3.35 9.69 2.75 4.81 11.8 10.6 1.95 6.88 6.82 5.78 9.92 7.38 3.64 10.2 3.08 9.59 3.18 7.63 8.25 9.72 9.68 7.5 6.62 8.74 6.87 5.75 9.91 1.72 6.39 10.3 8.89 9.12 8.57 10.2 5.17 9 6.25 8.16 9 3.18 8.24 2.15 12.6 1.72 8.55 7.62 9.8 8.92 7.41 8.5 6.26 8.43 10.4 10.2 8.09 10.5 7.29 9.65 8.27 8.21 10.6 6.99 9.6 9.04 8.89 10.6 4.71 0 1.44 7.02 6.07 7.16 6.38 9.99 0.65 6.27 3.18 0 8.31 9.46 12.1 2.75 7.33 8.93 5.53 5.34 0.65 9.45 6.31 4.36 4.32 7.61 7.94 9.61 7.82 9.09 10.1 6.92 9.4 9.29 7.85 8.5 8.62 7.85 9.87 9.01 10.5 3.71 8.98 7.19 9.08 4.65 7.86 10.7 6.26 7.44 9.93 5.07 8.69 7 9.92 8.01 9.8 8.89 8.66 8.51 11.4 10.7 10.2 6.85 10.4 10.6 11.1 10.5 7.72 9.49 9.56 8.9 4.58 11.8 9.86 10.3 8.84 9.48 7.71 8.49 9.13 9.74 3.5 11.7 8.9 5.79 7.87 2.33 8.91 10.5 8.73 3.83 8.48 6.52 6.39 11 9.22 9.3 10.1 10.1 2.48 10 8.1 3.35 6.35 11.5 9.22 7.64 7.71 10.3 9.96 6.52 10.3 12.2 8.46 7.88 7.17 5.95 8.31 9.66 6.15 5.28 8.03 8.69 9.1 8.37 8.05 6.75 6.11 6.13 10.5 4.86 3.57 11.2 7.18 6.24 8.15 5.44 9.94 6.94 7.99 11.1 9.57 3.35 10.6 6.26 10.5 10.9 5.57 11.5 10 13.2 10.5 8.49 10.3 10.1 5.55 8.5 3.43 8.52 8.57 4.62 5.32 11.5 7.87 11.9 2.87 11.6 7.26 1.72 4.27 7.71 7.99 6.47 8.67 3.99 3.35 4.36 9.32 6.3 11 8.87 6.15 9.46 7.23 7.83 6.61 11.2 5.9 12.2 11.6 9.05 12.8 11.5 13.1 7.93 8.75 9.05 7.94 7.89 6.29 11.7 11.2 10.9 7.66 7.36 1.1 11.4 9.49 9.13 11.6 9.71 9.52 4.17 4.71 3.75 3.22 11.4 8.58 8.74 7.26 3.83 2.33 10.6 14.2 8.03 3.88 1.95 4.89 4.51 10.3 9.16 8.05 11.2 10.7 14.6 1.95 8.19 1.72 6.74 0.65 11.6 12.8 9.76 6.77 3.26 13.8 10.9 9.89 10.2 4.86 6.76 2.98 3.08 12.3 7.18 8.37 10.6 10.6 11.6 10.3 5.19 5.53 9.35 8.04 10.5 4.27 9.61 10.6 9.99 7.13 7.83 9.28 10.2 8.01 9.98 10 12.4 1.44 8.7 4.55 8.29 9.51 7.74 7.74 8.37 1.72 9.6 1.44 7 11.2 9.5 11.2 9.63 11.4 10.5 9.24 9.22 12.5 10.7 2.62 0 7.62 11.4 11.2 8.47 5.64 11 8.57 9.87 8.95 3.09 10.1 10.2 9.42 11.8 11.1 9.33 6.05 8.81 8.66 0.65 9.1 9.96 0 9.93 8.1 6.54 6.63 6.72 10.1 3.08 6.77 2.15 9.69 8.56 10 8.75 10.1 9.36 9 7.7 9.79 1.12 9.79 7.78 10.7 9.78 6.38 9.66 9.77 11.8 9.93 7.47 9.47 11.9 8.1 8.66 1.15 8.52 8.61 1.75 8.78 8.17 7.66 10.2 1.1 8.07 3.64 9.36 9.96 0 12.1 10.5 8.98 10.6 14.3 10.1 9.71 9.25 11.8 9.09 5.32 8.93 9.1 9.5 8.22 12.2 6.87 11.1 12 12.6 10.4 11.3 12 3.5 12.8 9.53 6.98 10.2 6 7.84 9.47 9.93 7.79 0 12.1 12.6 8.64 4.14 8.72 1.1 11 11.1 12.4 8.74 6.75 12.2 8.84 9.93 8.97 10.1 9.34 8.4 9.25 12.2 3.88 10.3 9.52 9.86 9.02 6.54 2.87 0 10.7 0.65 1.1 1.1 8.82 2.33 9.08 2.87 5.17 6.5 7.24 1.72 7.31 3.35 5 2.15 3.99 8.54 3.71 10 11.7 10.7 8.11 7.79 1.95 3.18 3.5 8.98 8.67 0 8.25 9.18 6.56 7.74 8.54 7.07 5.6 7.27 7.52 9.48 2.15 8.37 8.68 9.84 8.41 9.39 0 5.94 0 2.75 3.94 0.65 8.95 8.17 8.19 7.86 6.98 9.88 8.61 0.65 8.78 0 3.94 1.1 0 8.65 7.12 5.65 8.52 8.21 5.53 9.47 9.58 0 8.99 9.98 11.7 9.57 7.21 0 3.18 9.34 11 8.78 1.1 8.75 11.7 7.45 8.38 5.42 5.85 0 2.62 10.9 0.65 9.16 11.3 8.7 1.72 9.09 9.68 8.52 3.08 10.8 9.46 1.44 0 11.5 11 6.95 8.75 7.42 8.49 3.64 5.82 10.9 9.01 6.63 0 3.35 8.76 3.71 7.13 10.8 10.2 10.5 6.26 9.92 11.1 2.98 3.5 8.43 10.1 9.29 9.15 2.33 4.65 3.77 7.6 3.35 1.65 9.03 6.59 11.6 9.83 7.45 8.05 9.26 11.3 8.24 9.58 4.4 3.83 9.65 3.77 9.44 3.18 5.87 0.65 4.83 2.15 4.4 0.65 1.72 7.51 10.3 9.05 6.8 10.3 11.1 8.95 9.32 7.74 6.72 11.1 10.8 7.73 8.83 6.65 6.46 0 7.35 3.57 6.47 10.5 6.46 6.88 4.62 10.2 10.5 7.15 6.66 8.41 7.3 7.3 1.95 0 11.1 9.62 10.4 10.3 9.57 8.25 8.81 10.2 9.62 1.1 8.07 6.09 6.35 8.49 7.72 7.54 11.6 7.21 6.44 8.13 8.85 9.15 7.51 5.67 14 3.35 5.82 8.16 3.77 4.81 7.59 10.3 10.8 6.95 9.76 4.36 7.03 9.81 9.75 2.48 9.95 6.05 5.42 10.2 6.9 3.5 7.71 9.1 8.65 8.13 6.73 9.98 7.72 7.83 9.19 10.9 7.97 7.9 7.66 7.4 7.62 6.87 10.2 8.85 2.15 8.71 8.67 9.72 6.41 9.69 7.93 10.9 9.15 7.58 13.3 10.5 8.3 9.25 7.09 4.71 5.44 6.83 9.66 8.31 8.33 11.1 10.3 6.52 1.44 6.78 10.2 10.6 10.3 6.25 9.85 5.02 5.96 1.1 7.17 3.35 8.54 6.43 6.09 5.15 6.86 5.88 4.78 5.92 1.1 7.79 11.8 10.2 9.19 8.4 3.26 8.65 11 8.18 8.46 10.2 10.8 1.72 10.6 8.81 6.75 4.27 6.7 9.74 8.73 2.75 9.89 8.61 6.31 10.4 10.1 4.95 8.04 8.16 9.48 8.41 8.01 8.79 7.62 11.1 10.2 9.86 8.7 8.13 7.32 7.55 3.64 7.31 12.5 9.44 6.53 9.12 7.76 9.17 9.4 7.89 9.33 7.7 8.79 1.44 6.69 10.2 8.47 9.69 8.21 9.48 9.56 8.39 10.2 6.75 8.23 6.14 8.74 9.14 8.15 6.85 9.18 0.65 10.3 10.8 7.2 10.1 6.92 6.88 8.76 9.94 8.79 8.55 8.77 9.69 9.52 9.16 4.71 8.97 7.16 6.7 8.44 4.78 12.6 8.98 10.9 9.02 9.06 8.14 8.88 8.55 10.5 0 8.25 10.2 9.68 6.82 10.6 7.58 9 0 10.3 0.65 10.2 9.03 11 6.88 5.3 8.97 7.45 6.92 9.72 7.3 9.61 10.3 5.46 10.7 6.13 6.68 9.58 9.1 9.83 6.92 8.26 7.38 9 5.78 8.15 8.71 1.1 3.26 5.4 3.42 10.2 9.64 10.9 0.65 2.33 6.51 11 10.8 6.33 9.52 10.7 6.52 5.64 2.62 11.4 8.58 9.57 6.84 8.99 7.15 7.49 9.98 6.38 4.81 10.3 4.47 8.68 10.1 6.17 8.47 8.12 10.9 6.17 5.75 8.71 7.37 9.92 9.57 9.4 1.95 9.09 7.87 4.86 10.7 8.92 8.76 5.15 6.61 1.72 11.6 5.95 8.27 4.55 12.4 10.8 8.41 4.4 2.75 6.36 9.31 10.4 5.3 4.75 9.46 11 1.95 2.48 0 1.1 10.3 9.88 9.48 10.7 11.3 4.62 8.47 1.44 8.75 5.79 0.65 6.94 8.88 9.77 1.95 3.43 6.54 7.8 2.48 6.22 0.65 10.9 8.41 3.18 3.77 8.57 9.77 7.8 9.19 1.1 9.15 10.8 6.85 8.18 11.9 9.4 10.3 9.22 5.26 2.62 2.48 8.81 7.86 6.55 8.35 7.53 11.4 6.14 7.72 7.74 4.97 1.72 7.45 6.74 8 13.1 7.54 9.42 5.72 7.38 10.5 9.26 10.2 8.22 3.64 4.14 6.55 9.66 8.87 6.22 4.95 3.08 7.06 9.6 8.07 8.76 7.3 11.1 2.62 7.26 5.81 4.32 7.07 9.87 9.26 5.17 8.1 0.65 2.15 9.81 2.33 6.05 5.67 10.3 9.46 8.54 9.61 7.15 8.08 7.16 7.95 6.8 11.6 2.75 7.54 8.33 9.28 8.31 8.63 9.46 9.4 10.8 9 11.3 10.8 9.45 5.91 8.94 10.2 5.57 7.6 10.2 9.71 8.99 9.08 9.81 6.71 9.35 8.43 9.17 7.03 10.7 9.13 10.1 10.9 5 8.78 3.43 9.74 8.68 9.32 11.8 11.5 4.89 7.12 9.37 9.75 7.57 8.54 9.95 8.69 4.4 8.02 9.42 9.06 8.83 8.28 9.09 9.12 7.51 8.55 4.75 8.29 8.23 4.47 9.5 10.3 8.64 7.28 8.96 9.94 8.14 7.52 4.09 7.24 8.83 6.56 7.44 9.27 10.6 0.65 6.45 10 7.28 8.86 3.18 6.02 4.44 8.49 6.31 9.72 8.65 4.65 9.7 6.76 2.15 6.98 12.4 8.06 9.53 8.85 4.19 1.72 10.1 10.5 9.6 6.7 10.6 3.88 6.08 7.71 1.44 6.13 7.83 9.64 9.39 7.16 8.87 10.6 9.69 8.31 5.91 8.92 6.55 8.33 8.79 9.21 6.8 10.4 11.7 8.33 6.28 2.87 6.97 2.33 4.92 8.55 9.68 10.6 11.2 2.48 9.37 0 10.4 8.79 7.05 10.6 2.98 4.09 5.69 0 5.92 5.29 12.7 9.96 6.88 0.85 8.53 2.98 1.44 9.48 5.94 9.89 3.57 8.46 9 6.9 9 9.43 9.09 9.77 1.95 9.02 10.6 6.73 10.9 8.82 11.5 11.3 7 11.8 10.2 10.5 5.1 7.05 7.2 0 7.79 12.3 5.91 13.6 10.4 9.96 7.2 10.7 9.79 11.3 1.1 8.66 7.02 10.5 8.93 9.43 9.3 5.53 11 8.62 7.8 8.65 10.5 10.5 10.2 6.74 9.4 9.54 11.3 3.94 3.1 9.72 7.86 2.62 2.33 9.52 1.1 4.44 3.99 9.18 0.24 2.98 12.5 8.98 9.08 6.77 1.44 8.66 8.08 10.1 10.4 10.1 4.68 11.7 12.9 9.55 9.26 9.06 10.7 10.8 7.14 10.2 9.29 10.1 9.28 6.4 6 10.6 8.23 11 8.28 5.67 4.89 9.41 10 9.37 4.97 10.8 3.08 8.23 11.4 9.14 10.2 10.5 11.4 11.7 4.78 1.1 10.7 3.5 8.53 9.28 8.99 7.95 7.44 3.35 6.67 7.51 5.18 4.78 10.1 11.4 9.4 6.27 9.17 10.4 7.13 4.95 9.53 2.33 13 6.87 5.78 10.8 9.43 10 10.8 5.48 8.97 11.7 9.01 8.15 11.7 12.9 12.9 9.55 12.6 11.1 10.6 11.5 12.2 10.9 9.84 6.54 11.2 10.7 8.57 9.68 6.41 8.04 11.2 8.57 6.92 11.6 10.5 6.35 9.02 9.96 11.8 9.12 9.58 6.46 12.2 7.61 10.8 9.93 9.78 8.02 8.07 3.08 0 12.6 7.89 11 8.96 10.2 4.81 11.4 11.3 8.78 9.99 11.4 10.8 9.15 8.9 9.22 11.8 11.1 10.3 9.12 10.4 6.36 9.51 6.58 7.36 3.08 8.44 8.4 10.3 6.56 4.86 5 0 10.1 10.4 12.2 14.2 9.52 11.1 12.9 8.9 11.9 9.32 5.94 9.29 10.8 10.5 11.2 9.4 6.9 8.13 4.47 11.7 4.75 3.83 2.7 2.98 9.33 6.49 7.04 4.51 8.57 5.72 8.98 8.38 1.95 6.71 10.5 10.4 10.3 12.3 9.05 2.48 6.64 3.77 2.75 10.6 9.04 4.44 11 9.94 1.44 8.91 6.18 2.15 8.61 1.1 9.22 2.33 12.6 9.96 11.8 6.04 7.43 5.36 11 8.72 5.65 10.4 10.1 0.65 9.86 8.75 9.21 9.7 4.75 10.3 10.1 7.79 6.03 11.2 7.26 5.95 11.5 4.4 0.65 4.44 0.65 7.75 9.65 7.05 8.64 10.2 7.36 5.96 11.6 9.44 10 10.2 9.78 4.71 8.84 8.79 13.9 11.5 11.5 10.4 10.7 9.22 10.2 11.3 12.9 11 9.34 10 8.5 8.99 10.4 11.2 11 10.1 10.8 10.9 10.5 0 9.74 5.79 10.9 7.1 8.9 9.69 8.38 0.65 10.2 7.82 3.64 9.34 8.51 1.72 10.7 9.02 8.7 10.6 10.7 9.28 1.9 3.71 2.15 9.14 11.2 10.2 8.79 11.4 6.84 4.51 10.4 8.76 8.28 5.34 11.9 9.22 12.4 1.72 0 5 10.6 1.72 0 10.2 8.78 10.1 5.53 1.1 9.76 8.57 6.4 5.38 10.4 10.5 8.46 5.52 1.1 5.33 1.72 4.58 8.87 5.67 7.55 5.53 9.91 7.37 5.73 2.33 9.9 7.95 8.15 5.88 4.6 4.62 1.63 3.94 7.74 4.76 8.41 9.96 7.81 9 9.5 10.5 11.5 7.48 0 7.53 9.87 9.41 9.55 9.66 8.28 8.7 6.47 9.21 7.78 6.05 7.37 10.7 9.33 11.1 5.05 6.94 6.43 9 7.19 9.83 9.82 1.95 9.82 9.6 8.74 3.43 10.9 8.29 8.59 6.14 7.36 6.61 4.36 12.2 9.62 8.23 7.71 8.87 8.1 11.1 8.11 4.92 3.57 10.6 7.25 2.98 6.18 2.33 8.43 8.68 8.98 1.95 7.47 2.75 6.07 2.33 3.57 11.3 9.1 7.48 9.25 10.8 7.96 1.44 4.27 8.63 7.45 4.78 1.1 6.29 8.21 5.98 8.45 7.79 8.19 7.62 9.74 6.95 7.66 10.7 11 9.51 12.1 8.06 9.85 6.77 8.3 11.2 9.17 9.22 12.2 7.71 5.87 5.9 7.02 9.29 2.15 10.4 9.51 8.95 6.4 4.62 8.09 4.68 14.6 9.77 6.86 7.69 8 11.4 8.69 10.3 10.6 6.17 9.72 9.26 5.84 7.65 2.48 3.51 5.95 4.4 11.9 10.2 7.91 7.93 7.46 6.24 10.5 8.73 9.77 3.5 8.94 2.62 3.88 7.98 5.15 10.5 8.93 9.55 9.58 9.9 7.38 9.74 2.33 7.81 10.6 7.21 8.06 13 4.71 9.1 8.44 7.64 4.19 9.68 10 8 13 8.66 5.3 8.06 7.82 8.37 0 9 10.4 10.7 8.08 9.22 5.96 8.06 8.25 9.43 8.59 11.9 5 8.23 4.75 6.86 9.7 11 10.2 10.7 8.92 9.51 5.02 10.6 4.4 9.35 10 9.81 9.96 5.36 1.1 9.99 9.25 9.65 9.9 2.98 9.8 7.02 8.52 9.96 6.53 8.18 8.17 8.49 7.15 1.1 2.98 2.75 8.63 12 7.3 11.4 10.4 8.37 9.58 10.9 2.48 9.49 9.5 9.06 10.4 9.77 8.54 0.65 9.77 10.4 10.3 10.2 7.15 7.16 1.1 9.27 6.25 9.53 9.33 0.65 5.1 8.31 8.08 10.3 7.71 10.6 9.13 4.27 7.1 9.48 9.61 10.1 4.23 10.2 7.13 6.46 8.08 12.3 7.13 10.2 7.45 0 11.2 10.9 7.57 9.05 8.49 8.12 5.69 8.63 3.35 7.22 4.68 9.14 6.81 9.19 7.69 9.84 10.2 6.23 9.02 7.4 8.24 11.5 4.68 9.68 6.29 8.63 1.44 7.82 7.39 8.81 8.9 4.23 12.1 8.59 11.4 14.3 8.11 9.02 11.1 7.5 7.16 5.17 8.28 5.38 1.95 3.71 6.23 10.6 9.08 7.18 5.56 7.14 1.72 10.3 9.68 7.01 9.15 8.84 12.1 8.48 2.48 10.2 1.1 9.45 8.81 10.9 6.74 3.83 8.28 8.52 8.61 7.49 7.39 12 11.9 6.54 5.79 9.61 2.75 7.7 7.07 8.07 0 9.18 2.87 8.01 10.3 5.95 5.3 5.38 8.56 9.53 8 8.27 5.85 7.61 8.29 10.9 9.76 8.77 8.02 8.96 12.5 9.52 6.42 5.85 8.22 10.3 7.24 7.51 9.12 11.2 5.26 11.8 6.14 8.65 2.87 10.2 9.23 12.4 9.64 10.8 1.95 8.62 11.7 0 8.29 1.1 6.21 8.54 7.8 8.3 3.71 0 7.49 6.92 2.75 8.19 6.38 0.65 6.13 11 3.83 8.9 10.9 8.15 8.43 8.52 3.67 7.51 8.22 7.82 11 9.1 11.4 2.33 7.91 11.1 8.3 6.93 9.37 9.18 4.68 8.08 8.96 4.32 10.4 10.1 8.45 2.87 11 7.1 5.28 10.2 9.84 4.32 10.2 10 4.27 5.36 9.54 9.23 1.72 7.38 9.91 4.97 10.4 10.9 12.1 7.48 10.1 9.81 9.73 7.44 10.3 8.29 9.38 8.7 10.7 5.6 9.81 10.1 9.16 7.73 8.52 8.64 10.1 12.7 9.93 8 5.78 11.3 13.1 5.07 4.81 10.6 7.75 5.42 8.32 8.4 9.27 12.6 9.36 0 9.56 10.2 7.78 7.83 7.59 4.95 11.1 10.1 4.81 2.48 7.81 7.71 8.08 1.72 8.29 2.15 3.26 7.26 9.42 6.94 7.39 3.5 3.18 6.95 10.5 8 3.99 8.06 8.62 9.91 9.55 10.3 5 5.9 9.55 10.7 9.13 10.5 8.87 12.7 10.3 8.64 10.4 3.57 10.2 9.82 8.68 9.93 8.49 3.64 9.95 7.27 8.79 7.71 0.65 11.3 9.15 9.39 9.8 7.38 10.1 11.3 10.3 0.65 11.1 8.19 10.4 7.02 1.1 11.2 12.1 0 10 2.33 10.3 7.18 11.6 2.62 7.7 0 10 7.81 4.71 8.21 11.3 10.4 8.1 0 12.9 7.89 10.7 8.16 3.71 8.82 9.22 3.88 2.39 0 9.15 9.44 9.18 9.19 3.77 10.9 9.18 8.87 7.56 12.4 10.9 1.72 3.64 10.3 5.92 9.28 0 5.34 0 5.38 0.65 11.9 8.49 8.57 1.95 7.11 8.39 10.3 2.33 5.34 5.42 7.27 8.5 4.44 8.44 11.7 7.83 7.79 4.43 4.27 11.3 12.1 3.43 11.5 3.77 5.72 7.21 11.5 6.96 10.2 10.5 2.33 8.49 8.28 3.94 9.88 9.25 9.86 9.2 9.16 9.24 8.58 7.77 8.02 5.3 9.95 0.65 10.8 11.7 2.62 12.3 9.28 7.25 7.19 10 6.08 11.5 8.45 10.4 8.38 8.91 8.65 6.52 7.87 3.57 7.28 0.65 9.86 3.94 9.91 8.18 7.73 7.1 10.4 13.8 10.6 4.32 12 4.32 5.62 9.3 5.75 10.2 8.56 7.18 7.69 7.62 1.95 9.95 8.49 7.46 8.01 8.65 3.18 8.46 8.52 11.2 4.86 8.36 10.5 12 6.71 9.58 5.5 5.7 6.47 2.62 8.4 7.63 4.19 8.14 8.41 10.4 11.3 9.81 8.05 7.87 4.32 2.33 8.46 12.7 12.2 6.98 9.15 4.68 9.8 7.38 8.69 10.2 9.42 8.37 5.64 13.1 9.56 10.9 8.27 8.24 11.5 8.16 9.89 9.93 10.4 10.1 11.1 12.6 10.7 9.83 8.42 10.5 9.56 8.68 7.68 6.24 10.7 11.5 11.8 6.1 10.2 10.2 5.32 10.4 8 6.14 10.1 10.9 10.6 9.2 9.38 11.5 11.5 10.2 9.88 11.7 6.14 9.62 11.9 10.8 10.5 7.22 9.42 7.51 9.83 8.69 8.87 9.12 12.8 8.76 7.71 10.8 6.95 8.08 11.3 9.24 6.25 9.11 12.5 11.2 3.18 14.4 9.93 6.61 2.15 12.8 10.8 13.1 10.7 9.77 8.13 6.22 10.1 6.73 11.2 12.3 10.4 7.78 11.9 9.86 6.74 12.4 5.79 4.65 1.1 8.35 6.37 9.92 11.8 7.38 2.15 10.7 9.86 7.55 8.43 10.4 7.47 12.6 11.2 11.2 8.44 10.6 8.64 8.68 8.13 7.74 10.2 1.95 9.79 10.5 10.1 9.82 10 8.9 7.84 10.6 11.8 13.4 8.07 11.7 10.7 8.3 10.2 6.63 13.1 13.5 9.45 3.64 10.3 9.74 9.91 9.38 9.07 8.55 10.6 9.08 11.6 8.78 10.2 11 8.17 11.3 10.7 9.27 10.5 13 5.38 11 8.55 9.4 9.16 10.7 7.19 10.8 11.5 6.47 6.03 2.15 9.02 10 10.1 13.2 8.31 1.1 8.43 3.18 11.3 5.07 9.88 9.59 8.43 3.99 10.6 3.35 8.87 7.69 13.1 2.29 4.44 10.5 10.3 8.95 8.48 10.3 6.51 9.97 9.46 7 10.4 5.6 8.87 11.8 5.55 8.44 9.85 4.14 13.1 8.5 11 5.1 11.1 8.21 11.3 10.3 12.2 5.42 6.88 6.92 6.9 8.18 10.6 9.54 9.74 3.99 12 9.32 9.42 9.94 10.4 8.71 9.63 13.5 8.23 8.95 10.2 12 11.6 11 11.2 10.9 10.4 10.1 10.9 10.1 12.4 6.94 11.2 9.92 7.47 9.03 8.02 10.3 10.9 10.3 9.65 11.4 10.1 2.15 10.3 11.1 6.16 10.8 13.1 12.1 12.4 8.72 10 0 11.1 8.05 9.13 11.5 7.75 9.64 9.04 7.66 11.1 8.7 9.75 10.4 9.57 9.76 8.68 10.9 8.93 9.64 5.96 10.4 9.98 8.49 5.7 10.1 2.48 7.76 9.02 8.97 9.59 2.87 8.47 8.95 9.42 9.39 10.7 9.96 8.14 9.79 8.12 8 9.64 7.82 8.21 10.3 10.7 9.36 9.29 6.99 9.74 10.3 6.72 7.59 5.98 11.3 11 9.98 10.8 9.64 11.1 9.26 11.7 10.1 11.9 10.2 10.7 9.69 8.37 8.79 8.76 11.3 7.84 10.2 9.43 12.1 10.4 11.9 4.86 9.84 8.3 8.85 8.83 9.85 11.2 4.09 10.4 6.8 5.65 11.4 9.1 8.49 8.4 8.11 9.25 12.1 9.44 10.4 8.27 6.54 9.09 10.1 10.1 7.64 11.1 12.4 11.7 7.88 11.3 9.96 9.32 8.12 8.83 11.4 11.4 8.89 12.1 7.59 9.67 8.48 4.51 8.99 9.49 9.35 6.97 10.4 10.3 0.65 5.75 6.83 10.2 10.1 7.84 13.3 9.53 7.05 11.1 4.44 6.13 4.36 7.23 9.59 10.8 9.14 12.4 11 6.18 6.89 12 10.5 11 9.8 2.43 10.7 8.87 9.97 7.45 10.3 12.4 9.59 9.11 4.44 8.76 11.5 8.75 12.1 13.1 9.42 12.5 2.87 12.1 8.91 9.34
+TCGA-A2-A0YL-01 6.82 6.1 5.85 9.9 5.99 8.33 3.27 4.63 5.98 2.83 5.19 8.36 6.15 2.28 5.52 7.49 10.6 10.4 6.35 10.6 10.3 10.9 10.3 2.18 9.85 8.36 4.45 8.58 3.32 7.46 4.19 6.46 6.71 6.36 2.54 2.84 0.97 6.39 2.37 4.19 4.27 4.91 6.32 0 6.25 3.06 0 6.25 11 7.27 4.27 7.1 8.85 11.2 7.01 0.4 6.72 3.17 7.58 5.02 8.98 6.22 7.6 6.84 3.41 2.95 6.59 8.71 9.89 3.73 5.3 6.23 2.37 6.67 3.72 6.11 5.6 5.39 2.73 1.83 6.56 1.55 1.27 7.82 6.32 0 5.55 1.83 3.82 4.31 9.92 5.72 7.46 3.98 5.2 2.54 0.97 3.53 4.4 0 3.75 6.28 6.87 5.94 3.38 3.01 6.7 8.07 8.09 5.87 0 0.71 10.4 4.09 6.94 1.7 2.66 4.85 2.37 1.55 4.01 5.78 2.54 1.38 0.4 6.94 1.96 1.96 3.82 12.5 3.2 3.17 3.72 6.45 3.45 2.07 4.01 0.71 1.71 7.17 8.12 10.3 0 3.57 5.4 11.8 0 10.5 3.46 2.28 4.7 0 6.11 10.9 10.6 2.69 3.36 4.68 9.79 6.69 7.14 7.25 4.44 1.7 8.98 5.82 6.88 4.31 7.15 3.27 10.1 9.78 4.17 4.93 4.64 3.49 5.57 4.34 8.98 3.44 4.38 7.91 4.19 4.97 4.17 4.03 3.85 0.4 7.03 5.71 9.19 10.8 4.47 3.36 6.22 6.61 4.97 8.25 8.68 9.28 7.08 10.7 9.86 9.79 8.57 8.22 6.42 10 10.7 11 8.28 10.6 11 10.9 10.3 9.98 7.23 10.4 8.62 10.2 8.62 8.35 11 10.5 7.53 8.85 1.19 9.81 8.92 13.1 8.97 3.36 8.34 11.6 8.98 7.15 9.64 7.6 10.5 2.46 11.6 7.51 11.3 11.4 11.5 10.4 11.8 12.5 7.74 11.2 6.87 4.03 7.57 9.1 9.13 11.3 9.37 12.8 0 11.9 2.61 10.9 8.92 10.1 10.6 11.8 8.29 10 11.1 10.4 10 7.01 9.22 9.69 12.2 9.86 2.37 12 10.6 10.8 11.5 10.6 11.3 7.89 8.61 11.3 11.8 9.71 11.5 10.4 5.54 3.85 10.9 6.12 10.9 10.6 9.74 12.5 8.56 9.04 8.55 11.7 11.8 9.88 10.6 12.5 3.49 8.76 8.12 9.08 12.3 9.67 4.36 8.78 7.1 10.8 10.3 4.14 9.35 5.79 9.79 10.8 11.1 10.4 9.99 9.18 11.1 9.22 10.1 9.9 9.09 8.32 10.7 8.28 9.73 11.3 7.88 7.89 7.71 10 10.1 10 9.45 11.9 10.1 12.9 9.27 9.6 11.3 9.51 9.84 4.71 10.9 2.61 4.63 9.4 6.93 11.1 2.46 7.77 7.61 10.3 9.87 10.5 9.17 6.42 8.65 2.18 7.13 9.11 5.41 11.6 9.34 11.1 10.2 7.72 8.13 11.1 2.46 7.8 9.14 8.55 7.49 8.7 9.68 10.7 6 11 9.42 10.1 9.37 7.51 10.5 9.46 6.76 10.9 9.27 9.4 9.22 7.17 8.26 10.6 11.1 9.22 9.16 9.77 10.4 11.8 10.7 10.2 6.63 8.73 9.96 8.45 8.94 10.6 9.28 9.4 7.69 5.98 9.29 5.97 8.49 11.8 5.89 10.3 9.96 10.1 2.61 10.1 11.6 13.6 8.19 8.26 6.55 6.4 7.82 8.6 7.14 10 9.26 12.3 11 3.12 11.1 6.95 7.22 8.55 3.72 9.34 5.39 8.09 6.38 11 8.2 8.56 6.64 10.1 5.53 6.49 9.69 10.6 10.8 4.27 10.4 7.76 6.31 8.59 7.64 8.83 6.83 6.93 8.63 4.12 10.8 9.82 9.53 10.3 10.7 5.86 13.8 10.6 3.75 10 8.11 4.75 12.2 9.08 8.09 8.02 4.01 9.19 9.36 7.12 12.3 8.81 6.9 10.2 8.59 11.4 12.2 15.2 9.32 10.2 7.72 10.7 6.32 7.27 9.67 9.54 0.97 8.7 8.76 12.6 8.76 11.4 11.9 10.7 10.6 10.8 8.37 9.96 9.37 10.7 10.6 9.96 8.79 10.7 9.17 8.16 10.1 10 10.7 7.87 8.85 10.4 6.95 8.5 10 10.3 10.9 9.68 8.65 9.67 9.89 0 9.39 12.2 9.26 9.41 9.86 10.5 12.8 10 8.65 9.09 7.81 7.12 10.7 8.88 8.43 10.2 9.7 7.28 8.43 9.44 8.18 11.5 10.6 10.7 9.18 10.1 9.14 9.33 8.07 11.7 10.9 10.7 10.4 2.37 13.1 9.82 10.9 9.92 12 12.1 12 10.2 8.54 10 10.3 10.4 2.54 7.61 8.59 7.63 8.3 9.32 11.6 9.9 12.8 11.5 9.62 10.8 0.4 6.78 10.5 10 8.43 13.5 9.44 10.3 9.87 11.4 10.6 12.5 10.7 12.2 0.97 10.5 9.58 8.27 8.67 9.09 8.25 6.75 9.42 9.56 11.2 11.3 9.85 8.53 10.8 9.89 11.7 12.6 11.2 8.38 10.9 9.19 8.66 8.18 10.7 9.55 3.72 9.12 9.18 9.08 5.97 11.4 11.2 5.17 9.7 10 10.4 6.16 9.29 8.89 12.1 12.1 11.6 11.7 4.75 9.82 6.58 10.8 10.9 9.17 0 8.09 8.13 9.4 10.5 7.65 9.68 12.8 0 7.14 10.4 8.92 10.3 9.68 4.17 10.3 11.8 9.55 10.8 8.25 10.2 11.8 8.83 10.2 9.85 8.03 10.4 9.24 12.8 8.34 7.27 8.22 6.03 9.68 11.2 8.35 12.2 14.4 7.69 11.3 15.4 11.3 5.1 9.47 7.34 8.5 2.46 6.62 10.3 8.22 2.54 6.71 10.9 5.49 9.23 10.5 12.5 9.44 8.11 12.1 10.9 9.87 7.14 1.19 6.83 10.7 5.35 8.07 7.85 7.94 10.8 9.14 10.7 6.26 3.45 4.55 10.5 8.9 8.82 1.55 7.17 10.4 7.87 1.96 5.55 11.9 9.97 6.99 8.79 8.58 3.32 9.96 10 9.06 3.97 8.19 13.4 6.57 10.8 12 10.9 10.4 12.6 8.55 12.1 8.51 7.4 4.86 11.8 7.29 1.96 1.19 4.85 10.2 10.9 9.99 0 8.29 9.82 4.63 5.25 10.6 10.6 7.38 7.65 10 10 3.06 10.8 10.6 12.3 11.6 10.5 11.9 11.6 11.6 10.7 8.91 8.91 12 9.66 8.28 9.7 8.28 10 7.29 12.1 10.5 8.04 7.56 5.87 9.62 11.1 7.21 7.11 7.35 12.5 9.77 1.7 0.4 9.03 9.08 11.5 10.3 7.86 7.37 9.43 0 6.85 6.45 10.5 7.38 9.94 8.98 9.1 1.38 5.41 0.97 10.4 9.65 6.85 12.1 10.1 9.24 5.55 10.3 11.7 3.68 6.72 5.12 7.19 10.3 10.2 11.2 9.28 10.5 6.88 4.24 8.04 0 9.62 0 5.87 9.04 10.2 1.96 1.55 11.7 5.91 9.35 8.27 5.68 1.83 9.58 8.61 11.1 10.4 2.76 8.79 10.5 9.05 11 10.4 9.99 8.99 9.93 8.88 0.4 6.85 4.9 12 9.85 13.5 0 10.7 10.4 11.1 9.47 11 7.75 7.79 12.1 10.9 10.3 0.4 11.8 2.37 11.7 5.68 10.3 10.1 7.26 3.53 9.3 11.6 11.6 10.8 9.37 9.26 11.4 8.64 11.2 9.88 9.58 8.27 11.3 12.2 11.1 12.5 11.2 11 8.36 11.2 9.9 8.38 8.48 9.97 11.3 13.1 12.9 10.7 8.73 10.1 8.06 9.92 10.4 8.57 9.53 13.2 7.13 11.7 10.1 10.8 10.9 5.06 5.35 11.9 6.71 9.38 6.69 9.25 8.49 7.16 8.82 7.75 7.8 4.35 9.28 9.59 8.98 3.01 11.8 9.06 11.4 8.7 8.47 8 8.77 8.37 9.94 9.24 3.49 4.7 1.19 5.51 10.6 12.4 6.7 13.2 7.84 9.36 9.77 8.36 9.09 9.79 9.27 0.4 8.92 9.67 10.4 11.2 10.7 9.11 8.76 13.6 11.2 11.6 10.1 7.59 1.7 9.51 8.31 8.12 11.4 7.7 8.37 11.8 9.68 8.08 10.2 6.29 5.13 10.7 11.2 13.1 9.09 6.28 10.9 9.84 7.78 5.56 9.52 4.66 9.62 8.37 11.7 9.56 12.6 8.65 8.95 10.1 8.42 6.05 9.98 7.96 10.1 8.79 8 10.1 10.4 9.97 10.8 9.06 8.08 9.71 3.82 9.16 9.59 8.27 1.38 9.09 6.14 7.09 7.33 10.5 1.19 9.88 10.2 3.27 10.8 8.7 10.5 3.92 11.2 7.49 6.75 0 6.15 9.24 9.67 6.28 6.21 4.96 8.46 7.56 8.95 8.41 10.6 11.1 9.62 6.12 10.2 9.2 8.99 13.4 9.91 8.39 7.71 7.21 11.2 7.3 5.54 11.7 10.3 8.94 9.36 8.29 11 5.49 10.2 6.97 7.23 8.67 9.83 11.1 1.19 8.72 9.2 8.69 7.74 8.96 10.5 11.9 10.1 7.95 7.82 9.31 6.46 9.76 9.95 8.23 12.2 10.8 8.88 9.91 9.23 1.83 10.5 8.48 10.7 4.61 12.9 11.7 7.14 9.97 7.97 8.36 11.5 6.22 10.1 9.1 10 9.1 8.12 10 10.7 8.81 10 9.64 10.1 7.2 7.85 4.09 7.08 8.65 5.88 8.57 8.24 9.75 1.19 4.22 10.3 10.5 7.98 9.91 9.56 9.73 8.35 10.8 6.66 11.6 6.23 9.17 5.91 9.68 7.92 9.51 9.32 8.57 6 4.34 5.36 7.46 11.1 8.58 8.77 7.85 5.48 10.1 7.94 10.1 9.6 8.52 3.27 6.92 3.79 10.6 8.58 8.51 6.53 8.66 9.11 8.3 10.5 10.6 9.92 9.1 7.03 8.86 10.8 8.03 9.76 10.1 4.24 10.1 5.39 10.3 8.36 6.5 10.2 11.6 6.48 10.2 7.53 4.94 10.6 5.63 3.27 9.12 9.88 1.96 10.7 11.5 9.74 9.02 7.62 9.51 10.8 11.2 10.4 7.75 9.03 7.38 8.1 11.8 10.3 2.18 12 8.61 10.3 8.64 12 10 12.4 11.2 6.36 7.58 8.63 4.73 11.2 10.4 10.9 9.59 8.8 10.2 7.51 9.29 5.88 11.2 8.08 6.76 1.55 8.51 6.29 7.71 6.87 1.79 6.07 7.4 10.5 3.89 7.81 8.05 11.1 6.33 8.41 3.53 7.25 8.13 3.57 5.28 9.75 7.03 6.02 1.7 8.91 8.02 5.66 1.7 8.94 4.28 6.8 0.4 0 8.09 3.79 8.6 7.39 9.29 8.68 7.67 6.21 9.39 7.56 4.73 10.6 6.85 9.07 8.71 8.49 3.36 9.57 1.55 7.03 9.44 5.87 8.56 7.91 7.31 8.71 5.98 8.01 5.78 5.9 7.96 10.6 0.71 9.07 8.27 5.98 6.86 10.4 8.95 6.55 8.01 12.3 10.9 8.85 8.93 8.67 5.28 8.01 5.07 10.3 5.18 11.3 12.8 8.97 9.03 8.64 10.4 9.17 8.55 7.72 8.61 9.98 9.95 6.61 0.97 8.42 8.53 8.55 5.7 2.83 7.42 7.5 8.93 8.09 11.4 8.6 4.88 5.35 8.17 7.46 10.8 12.2 7.32 2.18 4.14 9.43 10.5 7.91 7.49 10.2 7.95 9.76 9.83 7.88 9.87 8.45 7.12 9.59 0 1.7 9.4 4.66 7.21 8.25 7.77 4.27 9.6 5.03 0.71 6.38 8.41 7.65 2.18 11 8.63 2.76 6.2 7.65 4.91 4.19 7.38 7.14 10.8 9.35 6.48 8.66 7.33 10.8 8.39 10.8 8.02 10.4 12.1 2.69 9.62 1.58 9.34 7.91 10.7 7.97 6.07 9.65 5.25 9.4 6.22 7.11 3.17 5.41 3.36 8.76 5.61 8.13 5.67 3.95 0.43 8.89 0.4 1.7 9.37 10.8 7.75 8.61 8.52 0 4.63 7.74 7.88 9.25 9.85 2.28 8.83 10 6.22 5.34 8.69 9.26 11.1 6.42 9.29 10.1 8.43 0.97 8.73 4.97 3.17 4.36 9.71 9.94 9.27 9.54 2.76 7.27 7.7 12.5 9.15 10.1 2.18 5.92 7.2 9.09 9.36 7.3 7.72 12.4 3.27 7.06 11 7.47 7.43 9.55 6.61 10.2 0.4 6.99 1.19 7.5 0.4 8.25 8.87 6.22 6.52 9.05 10.4 5.52 2.18 5.1 8.31 7.75 8.87 6.27 8.59 6.61 9.99 9.22 5.17 6.83 9.72 13.3 12.3 8.57 1.83 5.09 8.6 6.98 0.4 10.8 11 8.65 9.08 9.54 3.89 7.46 9.18 10.6 12 8.82 10.2 7.18 5.3 7.62 7.54 9.21 4.68 6.78 7.61 8.38 9.41 10.7 3.95 8.01 11.1 3.72 1.38 7.63 10.9 9.06 9.77 9.44 4.36 7.94 14.5 2.28 9.57 8.65 3.41 8.15 9.08 9.39 7.86 8.28 10.6 1.55 0.71 2.37 5.79 7.97 6.09 4.94 5.73 6.46 9.33 8.3 7.19 6.31 8.66 7.51 5.9 11.6 9.14 9.46 3.85 8.75 7.93 7.9 10.4 7.65 9.46 12.3 2.54 9.37 11.1 9.54 0.71 7.74 6.26 7.47 7.93 5.38 8.1 7.85 6.56 3.61 6.75 8.43 5.9 2.61 8.59 6.25 5.85 9.02 9.8 4.77 7.4 1.77 10.7 1.96 8.3 7.16 7.28 2.83 5.17 7.17 9.42 9.68 0.97 8.48 9.01 7.67 3.68 7.47 8.35 8.5 10.8 9.48 5.29 8.56 8.31 9.92 10.5 11.2 3.17 3.57 9.54 8.23 6.71 6.65 2.69 5.91 9.52 8.36 4.56 3.75 2.18 4.14 0.4 7.34 9.42 8.39 9.58 8.13 8.38 8.42 5.34 9.96 9.73 9.16 9.08 9.39 5.76 5.5 13.1 7.78 8.19 2.03 8.21 2.18 7.01 9.4 0 8.09 5.18 8.02 10.3 5.4 9.06 8.67 3.95 5.5 7.46 7.78 5.66 8.68 6.27 7.24 7.27 6.04 8.94 3.06 1.83 8.4 5.49 2.54 2.54 5.67 8.32 7.03 9.15 8.62 8.67 2.07 10.2 9.58 7.18 10.2 9.81 6.73 7.54 7.67 8.78 8.42 9.39 7.76 6.29 11.9 8.1 2.89 11.8 6.84 5.19 3.45 8.31 8.59 10.5 8.76 7.71 9.17 6.68 3.72 6.65 0.97 0.71 0.97 9.48 1.19 8.17 1.55 3.92 6.6 8.66 8.4 9.46 5.81 4.36 10.6 10.2 5.69 7.98 11.4 2.79 1.7 9.5 4.59 7.45 3.41 8.75 17.3 8.43 8.78 9.86 17 10.3 3.36 1.83 6.15 10.5 3.27 11.3 6.54 7.94 9.02 17 6.01 8.05 12.8 2.37 8.56 2.46 9.23 10.7 9.37 8.39 0 9.79 7.68 6.82 8.12 12.8 3.01 7.38 5.98 2.69 3.06 9.37 5.63 5.7 10.5 11.4 6.05 10 6.15 5.65 11.3 8.84 13.2 8.88 8.6 13.7 7.01 5.89 14 8.51 14.2 8.97 4.45 15.4 8.35 8 8.4 7.86 8.9 3.06 7.48 8.77 10.4 8.03 9.99 9.11 9.31 7.72 7.63 8.53 0.4 7.61 8.07 7.84 4.68 0 11 6.9 11.2 9.2 6.41 6.27 3.22 7.92 13.2 7.12 5.95 6.15 4.68 6.59 10.4 8.63 0.97 7.58 9.95 8.29 8.35 11.2 5.58 8.1 10.9 5.76 6.67 11.9 3.85 8.98 6.84 8.18 7.8 8.5 5.78 6.09 1.19 0 7.58 5.63 9.38 8.7 2.76 10.3 12.7 7.7 5.38 7.68 11.9 1.55 8.35 9.36 7.86 13 9.16 6.75 0 9.94 8.04 0 9.29 6.83 0.71 8.18 8.91 7.75 8.2 5.56 8.71 0 0 7.25 9.4 7.72 7.51 2.28 6.39 2.79 8.17 8.6 8.41 11.3 9.76 8.87 9.52 7.47 10.4 3.32 9.01 4.84 6.84 8.07 3.49 7.29 7.99 2.95 9.58 4.24 8.48 11.1 8.94 10.8 9.95 2.54 3.22 8.56 6.83 10.9 5.91 8.01 10.1 10.1 8.28 8.9 2.28 8.31 7.99 5.55 10.1 5.87 8.37 10.8 9.3 8.67 9.21 10.6 6.87 6.56 10.3 5.88 10 8.92 9.27 11.3 10.8 10.8 10.2 3.3 5.82 8.05 11.6 5.76 8.27 4.51 9.3 0.71 10.1 9.93 0.97 8.23 6.98 6.16 7.83 0 11.4 1.83 0.4 11.6 4.47 5.61 11.9 10.3 10.1 8.63 8.58 5.06 6.39 7.1 7.54 6.4 7.12 6.15 11.4 9.56 7.47 9.18 8.07 8.65 5.17 6.22 6.42 10.2 0.97 2.18 10.6 5.59 1.55 11.2 7.15 6.46 5.78 7.99 7.94 11.6 7.42 0.4 7.48 9.68 7.26 5.51 5.4 10.7 9.41 7.92 5.92 11.9 8.41 0.71 11 11 8.22 4.38 9.35 7.71 2.37 7.95 6.19 8.34 7.68 12.6 11.6 6.63 2.18 3.12 10.1 8.66 7.56 11.2 10.9 7.75 7.28 3.4 9.62 9.06 9.7 4.65 9.07 10.2 2.61 5.54 7.06 11.9 4.09 4.31 10.7 9.86 7.67 0 8.72 8.36 2.54 0.71 10.4 4.34 4.75 4.65 9.14 6.93 6 6.54 6.98 9.2 3.81 7.18 11.1 6.51 8.75 7.04 0.4 10.3 10.3 4.47 9.38 8.65 4.47 6.86 7.43 9.66 6.33 3.32 10.4 5.18 10.6 1.19 10.1 3.57 8.13 10.5 2.89 1.38 12.1 7.39 6.47 1.19 2.69 3.06 2.07 3.49 2.46 7.42 9.87 2.37 9.42 10.6 9.69 12.1 8.67 10.6 9.52 9.27 4.45 11.1 11.4 10.6 9.16 8.44 10.1 3.01 4.22 8.4 8.11 6.01 7.69 8.01 7.68 9.26 9.93 8.21 8.37 6.15 0.71 8.26 7.57 9.15 10.4 8.54 6.41 9.88 3.61 3.53 8.02 8.54 5.06 6.91 12.4 8.43 7.36 7.82 6.8 3.41 1.55 6.36 4.29 9.95 8.79 1.19 5.22 6.94 4.63 9.28 5.11 7.87 7.36 11.9 8.84 8.1 12.8 2.46 0.97 8.09 11.5 3.49 7.44 11.2 7.52 2.07 8.63 8.22 9.93 1.55 7.12 7.5 7.88 10.1 10.6 7.4 6.92 7.51 5.98 4.7 7.15 8.01 3.61 8.91 0.97 2.95 11.2 9.24 8.11 8.93 0.4 4.03 10 14 5.13 1.19 9.52 1.38 4.87 3.17 9.16 2.07 8.02 7.72 6.68 6.99 0.97 13.1 8.12 6.94 4.49 7.56 5.3 7.95 4.47 10.1 7.7 5.85 0.4 5.4 0 7.73 9.05 0.71 0 9.13 2.54 1.83 5.02 1.19 7.97 2.83 7.43 5.28 6.1 9.68 5.1 8.44 3.36 7.02 8.57 5.43 11.4 3.85 7.57 7.1 8.56 10.2 8.5 9.28 4.55 4.72 6.32 3.53 6.48 9.29 7.6 5.67 10.8 5.47 5.39 9.23 2.61 5.71 3.32 7.81 8.16 8.64 4.94 9.42 7.4 9.06 2.61 10.4 8.58 6.39 7.4 6.54 6.36 4.47 0.97 9.16 7.16 9.25 8.37 6.29 9.05 6.33 6.73 7.57 6.2 9.37 9.15 3.79 7.26 7.78 7.37 9.01 5.59 4.12 7.89 8.33 7.69 8.58 4.72 7.64 6.83 7.75 6.82 4.47 7.14 10.7 2.83 9.62 5.36 7.79 4.38 7.85 9.85 7.32 6.05 8.87 6.94 1.84 10.7 3.57 1.83 6.62 9.7 11.7 5.92 2.61 9.79 5.32 7.42 8.62 5.23 13.6 9.7 0 9.88 6.7 7.34 3.32 7.99 0.97 4.49 4.01 7.94 9.11 9.07 10.1 4.55 7.9 7.59 4.43 2.37 13.5 11.3 5.4 8.54 6 6.13 13.6 9.95 9.86 0.71 9 13.2 8.51 6.78 11.1 0.4 0.97 2.61 1.38 3.85 2.28 8.08 5.94 1.19 7.75 9.97 8.02 6.29 8.95 1.27 5.97 4.34 8.56 7.42 5.59 7.22 3.12 9.87 7.3 9.14 3.22 7.31 2.46 9.64 8.28 11.4 5.49 7.73 8.37 5.8 6.09 8.82 6.04 13.8 9.52 14 7.41 4.66 2.54 5.03 10.2 8.39 5.73 5.52 7.23 2.28 7.99 7.54 8.48 11 7.87 0.97 8.35 2.46 2.95 3.07 12.6 2.83 7.7 7.42 6.45 9.94 0 7.38 2.61 6.63 5.62 5.93 7.85 0 7.78 7.24 9.41 11.5 6.2 4.51 6.36 1.55 5.3 0 12.2 5.2 10.5 7.86 8.27 9.37 5.25 10.6 8.62 10.6 9.13 5.48 4.53 6.94 7.07 8.47 10.6 9.02 6.93 6.31 11.5 2.46 7.75 9.78 9.72 6.51 7.7 8.72 1.38 9.38 8.98 11.2 8.4 5.03 8.3 2.61 8.42 2.54 8.18 4.27 3.12 10 8.65 4.06 4.9 7.65 8.38 2.28 7.76 10.8 7.47 9.78 9.38 11 8.03 8.05 10.4 8.42 8.07 8.66 10.5 8.68 6.4 9.85 7.54 5.13 4.68 4.7 10.2 7.72 5.61 6.48 7.43 0.97 10.1 6.51 10.2 8.35 8.31 5.38 7.72 10.1 3.75 6.9 3.98 5.42 7.58 10.7 6.32 3.36 8.4 6.26 0.4 7.03 9.64 2.18 10.3 11.2 5.37 5.57 8.78 3.49 8.84 7.22 7.43 8.8 10.1 1.96 4.17 6.28 8.57 6.06 5.45 9.75 9.05 1.38 10.7 2.61 2.76 9.82 3.76 0 10.9 7.43 7.69 8.04 8.15 8.47 7.49 3.22 1.19 10.9 7.03 10.6 7.84 6.98 2.89 0.97 10.2 4.14 4.91 2.33 8.6 10.3 3.72 9.86 4.31 6.28 4.22 5.83 6.56 6.48 9.33 4.29 2.46 6.66 3.36 7.7 2.83 10.9 8.21 10.2 4.06 4.63 6.12 2.28 7.45 9.65 7.26 6.97 5.19 8.45 9.39 0.71 8.44 6.49 3.92 0.97 4.63 0.71 6.1 5.91 8.66 4.27 11.1 7.93 9.14 4.59 10 6.34 0.4 10.2 5.97 5.32 10.7 4.17 1.19 10.9 10.8 1.55 11.1 3.45 9.04 0.4 0.4 11.1 9.74 3.27 2.54 10.2 9.81 0 8.81 11.8 9.05 9.37 6.63 8.89 4.14 5.49 5.6 7.29 8.14 10.8 11.8 3.89 8.42 6 9.29 8.47 2.46 6.34 10.8 9.18 7.35 8.34 6.25 2.69 10.5 2.18 7.32 10.6 0.4 3.27 10.4 1.83 5.25 7.9 7.23 6.4 11.2 11.4 2.37 10.8 8.01 5.29 9.5 6.04 10.6 3.22 2.28 5.57 1.55 4.55 3.68 8.52 6.21 6.56 10.4 8.37 9.7 8.08 7.51 7.47 9.3 6.77 8.36 6.48 9.01 6.55 0 13 7.43 8.79 8.49 7.38 6.87 3.01 7.26 7.26 5.31 7.75 8.6 4.06 5.23 7.12 9.43 4.51 8.22 6.55 5.65 9.5 3.17 13.9 8.99 10.6 9.35 8.91 0.4 7.38 10.6 0.4 7.8 7.97 9.47 10.1 11.9 11.1 1.7 8.49 1.55 12.7 6.4 8.95 2.07 5.43 0 6.19 1.83 5.76 1.93 6.68 3.12 4.12 10.3 6.51 7.52 13.8 12 6.46 1.97 3.68 2.46 9.52 8.75 11.2 8.35 13 13.2 4.4 4.45 12.5 3.01 7.59 10.3 4.06 9.99 1.83 8.2 12.3 12.3 3.22 9.31 7.81 10.4 1.19 8.18 7.25 11.6 9.83 7.58 9.67 8.44 7.21 7.92 9.07 9.06 9.53 4.12 9.98 6.74 10.5 3.36 8.71 0 6.59 8.05 4.36 9.43 3.82 8.85 7.13 7.15 6.93 9.72 2.83 9.32 8.24 1.38 4.59 8.3 8.77 1.7 4.66 8.2 9.26 3.98 8.7 6.81 3.17 0.4 10.2 8.22 8.55 5.74 6.38 8.85 5.97 2.46 0.71 5.22 8.16 1.7 1.19 8.69 9.01 4.7 9.9 6.68 1.19 10.1 5.39 8.52 7.09 6.06 5.43 10.3 8.7 8.05 9.45 4.38 10.4 3.65 11.1 10.9 0.71 8.57 2.07 8.02 10.7 6.2 10 1.83 9.91 8.45 9.07 9.74 13.4 8.72 7.26 6.65 9.6 11.8 11.2 11.6 7.83 6.43 8.95 9.83 10.4 9.92 10.3 10.6 6.45 10.4 7.9 11 1.19 6.41 4.51 3.12 8.62 9.74 7.32 8.48 5.07 8.85 9.16 7.13 6.08 0 4.29 3.06 6.08 8.7 3.06 4.73 10.3 13.7 12.3 4.75 11.6 11.2 10.8 11.1 7 9.04 6.51 11.2 8.69 4.43 8.15 8.05 9.82 10.3 5.1 8.84 8.96 9.87 9.84 12 11.8 0 10.6 4.49 0 8.99 11.2 6.02 2.89 12.2 10.5 11.2 12.5 8.17 12.4 14.9 10.1 7.37 8.96 7.67 7.52 8.45 8.82 12.5 7.16 10.4 11 10.5 11.4 8.85 7.7 7.82 3.57 9.83 9.53 9.15 11.1 11.2 9.89 7.25 10 7 9.16 9.27 7.49 8.34 8.32 7.92 7.85 12.8 0 9.78 10.6 11 10.4 9.99 5.91 10.7 9.99 9.3 9.42 8.78 10.4 12 8.34 9.52 11.6 17.3 1.7 7.63 8.61 9.84 7.79 8.94 8.28 12.1 12.5 14.9 16.3 10.7 11.2 7.77 8.67 8.73 8.88 10.5 7.83 7.69 6.46 11.9 9.95 10.2 11.8 9.71 13.8 6.96 7.32 9.94 11.4 10.4 4.77 7.16 8.89 1.19 8.47 5.98 6.6 8.96 4.88 7.62 10.7 9.34 2.83 9.72 9.83 8.26 10.7 5.32 8.8 11.5 10.6 1.96 10 9.33 6.91 4.52 13 5.81 7.81 8.29 5.64 3.17 8.5 2.06 10.2 3.32 3.98 4.43 8.2 7.47 13 6.7 7.88 9.07 4.45 7.32 9.78 12.8 7.94 13.4 8.75 9.05 12.2 12.7 14.5 12.4 11.5 1.19 8.33 1.19 10.6 6 6.95 10.7 0.4 1.19 0 9.48 0.71 10.8 7.91 3.36 3.12 9.27 7.1 6.18 8.66 2.54 10.1 5 7.8 8.25 11.9 8.59 9.63 8.92 14.9 10.4 9.34 0.4 2.61 9.35 9.27 5.71 8.19 10.9 8.6 3.79 7.88 1.96 10.4 9.88 6.16 9.77 7.49 0.4 7.87 2.95 7.89 1.83 9.93 1.96 1.83 3.12 9.87 8.06 5.2 5.22 10 11.7 8.18 5.9 11.1 7.25 2.29 5.66 7.2 7.35 8.18 8.24 8.4 8.78 4.73 9.4 8.42 6.49 9.82 10.7 7.63 7.16 5.35 9.25 6.61 8.55 3.17 12 7.08 5.64 8.26 8.02 9.79 7.29 8.41 8.07 2.37 12 2.69 8.58 4.65 9.24 4.12 9.62 7.65 8.72 11.1 0.71 2.37 9.03 9.73 5.89 1.19 11.7 8.03 0.97 3.95 6.95 3.72 11.1 8.93 8.93 7.82 11.8 9.98 6.99 5.05 7.99 6.51 5.38 11.7 9.39 1.19 14.1 6.41 10.1 2.28 0.71 0 9.72 4.49 7.76 7.52 12.4 7.8 8.39 11.3 6.55 7.62 14.3 9.2 2.83 4.8 2.54 9.65 7.74 7.03 7.64 8.23 7.72 6.84 12 10.4 11.7 9.1 10.3 7.6 7.58 9.88 10.7 10.5 3.41 8.96 10.8 12.4 8.8 5.78 3.82 8.11 7 6.77 0 11.3 10.7 5.94 8.96 11.1 7.37 10.8 7.09 9.65 9.04 7.98 8.89 8.1 9.35 0.71 5.98 10.2 12.4 11 10.8 9.56 1.19 8.67 12.1 3.17 0.4 13.6 9.85 8.69 7.39 11.7 1.38 8.44 9.93 8.44 10.1 8.96 9.89 8.97 11 10.9 7.64 11.6 10.8 12.2 10.3 10.3 3.79 8.16 1.83 11.5 9.59 8.51 9.2 8.71 11.7 10.6 9.63 3.92 8.75 8.04 9.3 0 11.1 10.1 8.48 7.62 8.45 8.83 8.48 11.4 10.1 10.9 5.11 8.7 9.7 2.18 8.84 11.2 8.23 9.76 8.59 0 12.2 7.98 8.69 11.6 9.67 4.97 5.24 9.44 5.19 10.2 7.31 10.2 8.68 7.91 0 10.2 6.98 5.7 6.62 8.44 8.83 6.99 4.14 11 11.5 9.78 9.78 9.36 11.6 5.32 9.17 8.37 9.22 12.2 10.6 6.45 9.75 9.22 5.48 6.27 13.4 9.73 12.9 2.61 5.19 8.35 10.5 7.62 10.6 2.69 10.4 12.3 7.25 7.39 8.88 8.64 10.8 7.46 5.75 7.64 8.08 7.51 9.07 12 7.84 8.11 7.95 7.74 9.76 10.1 9.69 9.51 13.1 3.57 9.99 4.14 7.52 7.61 8.49 8.16 1.83 5.06 5.86 4.85 7.72 11.2 0.71 8.74 9.58 9.43 3.98 4.59 1.19 2.54 6.68 7.24 2.83 6.33 8.26 7.09 2.46 0.71 5.93 7.8 6.4 6.43 7.31 8.98 5.85 12.1 6.51 7.22 5.5 7.78 9.58 11.3 2.89 9.04 7.93 8.36 6.92 11.5 8.02 6.83 6.13 9.37 9.03 9.17 5.32 9.58 8.11 9.95 7.51 7.58 7.53 5.48 10.3 9.81 3.89 1.84 1.83 4.87 5.1 9.05 4.77 4.13 6.51 6.37 11.4 1.96 8.19 9.17 0 8.85 7.47 7.42 5.96 9.75 3.79 4.59 11 8.6 2.54 9.24 8.85 8.21 9.51 7.01 9.06 0.71 8.48 4.34 7.53 3.61 9.62 8.15 9.73 8.88 7.66 7.33 9.2 9.93 8.78 10.5 8.53 5.96 9.3 11.1 8.28 8.02 6.9 4.34 9.09 8.15 4 8.68 10.6 10.2 2.69 0.71 2.95 7.71 0.4 6.51 11 1.19 7.34 5.41 3.53 5.39 6.48 5.81 3.79 6.62 11.6 7.98 9.93 7.39 6.93 9.26 9.1 10.2 10.5 6.99 7.87 8.05 8.47 3.79 2.18 8.04 2.95 5.94 3.79 7.71 7.9 13.9 11.6 6.29 2.07 9.49 5.13 7.18 10.5 5.74 9.52 10.2 8.8 11.1 9.95 10.3 6.77 11.7 7.45 9.79 4.66 11.4 5.8 9.27 9.34 9.13 5.72 11.8 3.61 11.6 9.14 10.8 9.17 6.64 10.7 10.8 10.9 0.71 8.21 11 8.45 9.32 9.86 10.4 10.9 8.96 4.04 3.53 8.52 9.22 9.69 10.6 7.78 9.62 8.62 9.01 7.85 11.4 9.92 10 8.21 8.3 10.6 9.56 10.3 3.68 10.1 9.13 10.4 10.4 5.34 12.5 8.12 11.3 9.61 9.59 10 10.1 9.09 12 9.92 8.68 10.5 12.7 8.78 9.01 10.8 8.61 9.65 11.4 9.95 6.9 9.29 9.86 1.38 9.35 8.08 8.63 1.7 9.19 8.99 9.69 9.87 10.7 9.9 10.7 10.2 9.61 9.09 9.57 10.9 6.6 9.4 11 1.96 11.5 11.2 10.2 8.6 8.19 8.92 11.1 7.74 11.2 10.4 10.6 11 7.72 9.58 8.38 9.82 10.4 10.6 10.2 7.78 11.9 9.58 9.34 0.97 9.53 9.9 8.32 2.37 4.45 10 9.1 7.74 10.5 6.42 2.61 10.6 8.37 10.1 3.68 10.6 11.4 0.71 0.71 6.7 10.9 12.1 10.5 7.96 6.35 11.4 5.79 11.1 10.4 7.99 11.2 10.1 9.52 8.04 9.9 0 9.86 10.2 11.9 10.6 8.52 8.28 12.2 3.36 12.9 13 10 10.1 2.07 3.41 11.1 9.61 11.1 8.63 11 9.74 8.25 8.26 10.5 9.84 11.3 11 10.3 11.4 9.14 7.06 10.1 10.6 12.2 9.21 9.76 10.4 10.5 11 5.25 9.07 5.14 10.9 11.7 10.9 11.2 11.5 10.4 6.47 9.88 10.2 10 2.61 9.58 11.2 10.3 10.8 9.59 10 9.08 9.38 10.2 11.2 8.75 8.55 10.3 12.1 8.11 10.8 9.69 9.8 10.4 11 8.52 10.7 8.22 9.03 9.55 11 3.7 10.9 5.39 10.9 7.91 0.99 9.92 10.3 9.74 9.23 9.69 7.89 11.1 7.35 4.94 2.07 10.3 9.81 11.8 5.89 11.7 9.14 10.6 10.5 8.15 10.3 10.1 8.86 10 9.3 10.5 11.3 10.4 10.4 9.58 9.69 8.85 4.72 7.02 6.41 3.12 9.43 9.31 11 9.76 9.68 9.76 12.9 14.7 10 10.3 8.84 9.27 10.5 10.8 9.91 11 11.1 9.98 13.7 11.8 10.9 9.12 10.2 10.3 9.42 11.2 10.6 7.9 9.63 8.73 10.8 9.84 10.2 10.5 10.5 11.3 10.2 10.7 11.7 11.9 9.53 13.1 8.7 11 12.7 10.9 11.1 11.2 9.94 9.03 9.61 12.7 2.28 10.5 8.95 6.01 10.4 8.26 10.2 7.94 11.7 10.7 12.7 10.4 1.38 9.68 11 6.54 8.29 9.35 9.55 12.8 10.8 8.58 9.22 7.09 9.58 9.22 9.01 7.96 9.74 9.89 8.47 5.48 9.19 8.99 9.56 10.1 10.4 10.9 11.9 8.22 6.46 9.7 11.5 9.34 6.15 8.57 10.7 10 7.07 9.98 11.1 10 7.36 8.72 10.2 9.66 11.5 11.3 10.4 10.2 11 10.5 10.3 10.7 11 9.63 9.1 8.49 9.87 10.7 5.95 3.22 9.89 6.64 7.69 10.5 8.64 9.65 7 10.4 10.2 10.2 10.7 9.87 7.95 11.1 9.87 6.11 11.2 10.3 2.95 9.58 10.2 8.47 10.2 11.8 9.59 9.21 11 6.13 8.63 1.96 10.7 8.87 9.94 10.3 7.9 10.4 10.4 12 10.9 11.2 9.87 10.7 8.87 10.1 9.24 11.9 10.7 10.9 5.4 10.2 12.2 10.8 10.8 10.7 4.51 16.2 11.1 10.6 12.4 11.2 8.05 9.84 9.04 11.1 3.65 10.3 10.2 10.4 9.56 12.8 8.51 12.2 10 12 9.95 10.8 8.61 10.1 8.34 10.7 9.92 11 9.27 10.4 11.1 11.7 11.2 11.4 12.4 10.6 9.61 12 12.1 8.8 10.5 7.85 8.83 10.4 10.3 8.41 9.02 8.63 11.2 10.6 8.33 4.29 9.43 10.1 10.3 8.62 7.14 1.7 3.79 7.18 3.17 9.65 11.6 7.86 11 8.96 7.68 11.9 10.7 6.96 8.83 7.68 10.5 11.6 9.82 9.61 12.2 11.8 13.1 11.3 9 6.94 6.44 8.07 8.89 8.04 11.3 7.85 9.04 8.72 11.8 11.6 12 9.93 8.76 7.25 10.7 11.4 10.5 7.51 9.04 10.3 7.39 10.1 4.66 9.86 7.9 2.37 6.24 13.4 7.64 8.67 10.4 2.95 11.1 10.4 9.54 10.1 11 9.72 10.8 9.57 10.1 9.92 10.1 10.3 10.9 9.76 0.71 0.97 14.4 10.8 10.9 13.7 8.66 10.6 10.1 7.03 13.3 9.85 8.62 1.19 7.53 10.4 8.31 2.07 11.6 11 8.15 11.5 3.72 8.51 3.27 5.78 8.35 10.5 11.4 10.4 7.26 7.91 7.94 11.3 9.14 9.57 10.9 10.3 9.43 10.1 1.19 1.56 10.3 5.92 8.25 10.4 0 6.56 10.7 0.71 11.1 10.2 8.69 6.49 11.5 10.9 8.67 10.3 9.59 8.61 6.05 9.62 10.6 5.09 9.51 9.48 8.55 11.3 8.61 4.84 11.1 7.85 10.8 11.7 9.62 9.06 10.8 2.76 8.38 10.2 9.87 9.96 7.02 0.4 1.55 4.59 11.2 9.51 10.8 10.8 6.33 8.87 9.97 9.73 7.15 10 10.3 11.7 10.4 10.1 8.71 11.6 12.9 5.73 9.09 8.86 8.91 11.1 10.3 11.7 9.63 8.59 9.81 10.3 8.67 7.46 9.4 8.85 11.3 11.6 5.75 7.09 9.99 10.6 9.08 7.36 8.88 8.44 0.71 7.19 9.57 2.61 11.2 9.93 8.55 9.72 10.6 11.2 10.6 2.89 2.69 7.55 8.47 8.28 8.56 9.36 8.89 9.17 9.81 6.75 9.79 9.12 6.62 7.27 11.5 10.1 1.19 8.08 3.75 2.38 8.12 3.36 4.84 3.57 10.8 1.38 4.96 1.19 6.7 8.05 6.29 5.09 7.59 7.11 4.94 1.38 6.78 11 9.38 9.73 8.74 6.58 6.94 15.2 7.82 11.3 0 14.5 10.2 10 11.7 7.06 6.85 3.41 7.72 0.71 2.37 10.7 6.6 3.45 8.62 8.47 5.25 10.4 5.68 3.98 9.55 10.9 10.8 6.81 6.85 9.69 10.3 8.97 9.5 6.03 11.4 6.6 8.52 8.91 6.65 6 11.3 8.48 4.88 10.6 6.78 7.45 11.8 10.6 8.13 0.4 9.69 11 9.7 7.61 4.77 5.93 6.63 10.3 4.29 8.66 9.12 0.97 0.71 7.75 0.97 0 9.28 10.1 7.47 6.72 5.92 1.83 8.62 7.85 6.99 6.86 9.62 8.13 5.03 6.67 12.7 0.4 3.36 10.9 9.68 8.04 7.69 10.5 8.74 7.26 6.69 5.35 4.43 0 6.31 9.84 8.92 2.37 4.79 3.36 8.44 2.18 9.09 4.49 7.98 7.24 1.96 10.5 2.18 8.07 4.63 3.61 13 7.13 7.48 4.24 7.15 8.81 7.62 10.7 8.38 4.51 3.12 3.61 7.6 7.69 5.23 8.99 4.53 4.61 1.96 9.36 9.47 5.46 4.59 6.85 8.29 1.38 6.59 7.95 0 9.33 1.7 1.83 1.19 2.07 6.67 0 8.24 4.24 1.55 7.54 6.62 3.85 5.91 2.61 5.63 8.6 5.86 8.46 4.24 6.04 7.96 1.55 9.48 6.24 1.19 2.07 1.55 9.96 9.97 5.78 6.78 8.65 8.3 8.82 8.51 8.55 0.97 9.36 11.6 10.4 8.23 10.6 4.7 0.97 7.37 5.74 6.21 10.9 10.8 3.72 9.98 7.58 9.84 7.8 10.3 12.5 8.38 8.33 9.45 11.1 10 10.9 7.98 8.35 9.98 0 10 11.4 8.44 5.06 6.77 9.09 11.1 9.1 7.16 4.09 10.6 10.3 7.89 10.7 11.2 4.62 4.53 12 9.56 7.57 11.7 5.3 9.81 7.04 11.5 6.37 8.93 9.74 11.2 8.59 10.2 9.42 8.22 6.81 7.77 9.44 10.9 5.55 9.13 5.76 8.09 5.07 7.45 9.98 11.4 10.2 13.3 10.1 10.4 5.03 13.4 9.7 8.26 7.57 10.2 7.19 8.35 10.9 9.59 7.49 8.32 8.23 10 10.8 9.36 3.79 10.8 7.19 8.66 7.98 10.9 9.51 8.59 5.14 10.8 10.2 8.55 12.5 9.49 8.42 9.12 10 6.48 2.18 7.71 10.2 11.5 0 7.65 9.61 9.65 3.12 7.36 10.3 10.1 9.53 7.97 7.3 11 0.4 9.85 1.38 0.97 4.09 8.69 10.1 5.78 12.4 8.95 9.54 9.8 9.83 10.3 9.56 9.77 11.4 9.36 6.6 10 10.5 10.2 8.4 7.93 10.3 6.27 10.7 11.2 10.9 5.5 11.7 11.3 9.17 15.5 9.3 9.05 7.38 7.54 11.3 9.63 9.73 8.23 10.2 7.25 8.87 9.36 10.1 8.67 9.28 9.65 10.1 9.87 10.6 9.51 2.69 9.93 10.6 7.97 10.9 10.1 9.62 10.7 11.7 8.14 9.64 6.13 9.24 10.5 12.4 10.4 12.4 10.5 8.19 5.45 6.25 9.66 7.02 9.83 8.58 5.63 5.03 6.31 10.7 9.52 10.8 2.07 8.78 10.6 10.8 9.39 5.28 10.2 9.04 8.41 7.57 4.93 7.97 6.94 11.5 10.9 10.4 12 11.3 11.2 8.6 8.51 10.6 11.4 9.58 10.3 5.35 9.39 8.21 9.8 9.88 10.1 11.2 7.94 8.53 6.75 10.7 9.19 11.7 10.5 5.07 8.64 10.6 10.1 9.81 9.7 9.96 10.6 8.86 9.69 10.4 11 12.7 11 6.02 8.38 9.11 9.44 9 6.14 11.2 6.21 8.2 8.72 6.8 8.1 10.5 12.5 7.69 9.85 8.62 6.55 9.23 10.9 10.2 9.68 11.1 8.09 8.41 10.7 9.27 11.2 5.88 10.6 4.53 8.87 4.4 8.47 11.5 0 8.46 3.82 10.5 9.51 10.2 2.83 8.68 0.97 7.57 5.38 8.24 8.11 11.5 8.77 6.78 7.6 7.29 13.5 1.83 4.49 1.19 7.2 10.5 9.24 9.05 2.96 9.46 9.09 1.97 8.05 10 8.74 7.03 8.68 7.84 7.71 9.68 8.97 8.21 10.4 9.09 7.16 9.46 9.29 10 10.1 10.5 0.97 9.89 8.32 8.52 7.17 10.5 9.1 10.3 1.21 12.2 9.78 10.5 9.78 8.34 0 6.94 6.48 7.48 10.8 9.23 9.52 10.5 9.92 9.03 4.77 6.85 8.99 8.99 9.27 10.1 10.3 4.9 9.07 12.6 9.32 7.96 9.77 9.91 9.56 8.41 9.37 8.77 10.3 9.07 10.1 4.91 2.07 2.55 9.33 3.12 2.81 2.95 9.15 6.47 10.8 10.8 9.42 8.26 1.7 9.68 4.47 7.97 5.18 11.3 13 9.74 3.22 6.99 4.05 7.04 10.5 7.36 11.7 6.34 8.16 6.91 0.4 8.41 5.78 11.1 11 7.41 3.92 9.75 10.9 2.54 0.4 9.83 7.08 4.85 3.49 8.03 0 12.5 8.51 9.81 7.34 8.52 0.71 8.12 9.76 9.59 11.4 4.49 8.75 12.2 8.84 7.07 8.45 10.8 15.2 9.05 11.4 9.08 10.3 10.8 10.6 4.36 1.7 9.28 0.4 9.24 8.33 6.15 10.6 9.27 8.92 11.3 9.36 9.06 11.4 2.95 8.8 1.19 5.06 8.88 6.59 9.8 9.88 12 7.92 0.97 6.7 9.83 9.9 11.6 3.59 8.29 10.2 6.99 11.8 8.98 7.06 7.44 6.86 11.5 4.27 10.9 4.65 7.86 11.1 5.94 9.9 9.5 6.96 0.4 9.48 6.39 10.3 12 9.51 9.74 7.18 5.31 4.22 7.05 7.29 10.9 7.11 9.35 12.1 1.38 7.86 5.63 3.79 8.22 11 5.89 9.61 8.18 8.6 6.85 4.47 6.47 9.78 8.59 7.99 8.76 10.6 1.7 8.92 0.71 7.7 8.43 6.25 10.4 11.8 11.7 7.84 4.99 6.45 10.1 7.34 0 8.18 5.24 3.92 9.44 8.01 10.3 7.92 8.62 11.4 2.07 6.13 7.68 10.3 8.11 8.73 6.79 5.29 8.71 9.97 10.3 10.2 10.6 9.5 8.98 10.5 10.8 13.1 8.78 8.28 6.29 8.96 9.68 0.4 5.63 8.97 3.01 8.64 9.44 8.89 8.77 7.63 3.36 10.1 4.77 7.35 8.65 9.39 9.18 7.28 7.71 4.93 9.33 2.46 8.58 9.41 12.1 5.78 10.5 10 11.8 9.69 4.7 11.4 10.8 7.91 11.7 12.1 10 8.55 9.77 9.1 3.95 6.27 8.37 9.28 9.25 8.44 6.07 8.54 7.97 9.77 7.53 11.8 6.79 11.6 7.78 9.06 7.92 10.7 8.02 8.81 10.3 4.09 10.2 8.77 2.37 8.33 9.03 11.7 8.73 6.04 13.9 3.57 11.1 8.65 10.5 7.41 9.43 10.7 6.75 7.88 12.3 11.3 8.13 6.32 11.5 14.4 0.71 8.29 13.1 11.6 3.58 4.47 4.01 10.4 8.6 0.71 8.46 9.32 4.19 9.5 4.75 3.36 12.5 4.53 6.39 9.65 10.7 10.8 11.6 12.7 9.38 10.6 9.74 2.37 9.46 3.93 1.96 10.3 5.47 10.6 12 3.06 6.9 6.41 4.56 8.88 9.4 3.72 0.4 4.06 5.64 4.65 7.35 1.83 8.56 6.82 2.89 5.63 4.65 7.46 9.32 8.67 7 7.34 3.95 4.87 6.61 3.01 9.31 11.2 7.1 11.7 11.4 5.22 6.45 7.71 10.7 5.59 8.78 9.36 7.88 6.04 8.29 4.29 6.18 7.39 3.98 8.47 6.04 6.61 6.52 10.1 3.68 8.48 9.02 10.2 0.4 8.06 7.08 4.87 3.49 4.7 4.29 6.15 1.7 10.7 5.83 6.22 5.85 9.5 6.09 9.19 5.54 2.54 2.87 2.37 8.5 3.61 6.64 1.83 9.22 0.97 6.58 0 3.65 9.78 9.81 6.71 6.85 3.8 7.13 4.7 5.64 5.1 8.91 0.4 0.71 5.29 9.8 5.36 5.74 1.83 2.19 7.45 5.96 8.9 6.18 5.39 6.58 4.55 6.71 7.67 6.77 0 3.12 9.69 8.14 8.98 5.43 2.89 8.78 7.7 1.38 1.96 9.12 4.17 6.99 6.33 7.5 5.35 10.9 5.32 1.96 0 3.53 6.33 7.16 0 3.45 0.97 8.74 3.98 3.41 7.22 12.5 8.55 7.19 7.32 7.69 3.36 2.61 2.61 4.66 7.52 3.82 3.17 9.89 5.19 9.92 4.22 9.76 0.97 6.08 6.42 9.88 8.65 8.31 5.67 4.27 5.28 6.82 6.89 5.14 5.1 10.9 3.82 8.54 8.13 6.88 8.79 2.18 7.3 7.5 0.4 2.37 1.55 0.4 5.24 7.3 6.7 6.47 8.63 9.59 3.57 2.18 0 7.58 3.22 3.92 4.03 10.5 4.47 7.8 4.99 5.19 5.7 6.25 6.43 8.76 5.09 3.41 6.05 3.68 1.19 4.79 2.28 2.18 5.57 1.7 8.11 2.18 2.76 5.4 7.57 0.4 6.75 3.98 10.1 8.55 4.38 2.54 3.41 5.58 0 7.92 9.3 7.82 7.22 9.09 2.89 9.21 1.83 1.96 7.81 6.5 7.56 6.34 9.1 8.79 0 6.78 9.44 9.7 8.07 6.61 8.83 0.4 8.55 4.45 5.19 10.3 8.64 8.26 9.04 6.32 8.77 2.37 1.38 8.39 1.96 7.56 6.89 3.49 5.08 7.38 8.5 11.1 4.06 8.84 0.97 12 3.17 0.97 5.31 6.85 8.09 4.54 10.1 3.45 7.27 9.12 4.59 7.77 9.82 7.18 7.08 8.06 0.71 4.94 0.71 10.4 3.48 4.66 7.02 1.19 3.93 8.27 0.4 6.41 9.12 5.62 2.52 6.16 3.68 3.92 3.57 3.79 5.23 2.69 8.36 7.4 1.55 11.1 6.07 9.68 6.07 3.22 3.27 7.89 6.01 6.31 9.67 10 4.01 4.65 9.02 4.73 4.25 3.17 8.16 9.25 8.84 3.53 7.4 9.79 8.82 8.69 3.49 0.97 4.98 7.17 8.1 3.22 6.09 7.74 8.08 8.28 2.18 8.8 9.34 11.9 10.2 9.12 5.06 11.2 5.87 9.57 11.4 10.6 8.15 11.2 10.4 10.9 8.36 6.65 11 8.67 8.76 9.43 7.9 9.07 10.1 12 8.52 8.93 10.1 7.85 7.31 3.12 11 1.96 9.69 8.18 10.7 10.4 9.97 9.74 9.54 8.74 8.93 8.01 8.41 9.49 8.61 10.3 10.4 8.01 8.8 7.86 8.59 7.08 11.2 9 6.32 10.6 11 6.06 6.37 10.5 2.46 10 6.25 10.4 2.95 8.46 11 4.87 8.61 7.72 10.2 11.3 12.1 8.42 9.05 11.1 9.43 7.66 9.32 10.8 8.57 8.72 9.55 7.13 9.57 9.96 9.5 9.53 7.85 12 8.1 4.06 8.57 8.4 8.58 8.92 9.7 7.86 9.53 8.2 8.37 10.9 10.5 9.21 9.02 8.7 4.66 8.1 9.33 8.73 2.18 9.44 9.46 10.5 9.85 1.38 2.76 8.74 2.83 10.9 2.46 5.53 9.85 8.15 4.55 2.46 5.1 12.3 7.85 3.92 12.7 10.6 11.2 13.2 10.6 10.8 13.1 12 10 9.58 7.75 10.5 10.1 10.6 9 5.83 11.1 0 7.13 8.4 10.9 8.48 9.45 9.21 8.57 9.09 10.7 8.47 10 6.19 8.38 8.66 12.3 12.8 11.1 9.18 1.7 11.7 10.5 8.49 10.3 8.2 0 10.4 8.92 4.24 8.51 8.81 1.55 8.73 9.31 5.89 11.9 4.12 9.95 0.71 5.7 8.8 7.45 8.83 1.83 11 10.9 8.39 1.19 10 8.64 9.52 7.37 1.96 4.27 10.7 10.7 8.61 3.32 9.07 11 8.34 7.82 10.2 10.6 11 5.72 10.2 0.71 10.2 9.36 10.4 8.53 6.48 7.52 10.5 1.19 9.36 5.13 8.82 9.52 8.69 9.09 8.15 9.92 10.1 8.92 8.25 10.5 7.45 9.03 12.7 8.41 8.67 5.41 7.22 8.52 0 10 9.74 8.06 3.27 1.19 8.98 9.5 5.05 8.9 8.1 2.18 10.1 9.32 12.7 10.7 5.14 11 2.69 9.25 6.05 9.12 9.55 8.08 6.06 9.93 10.1 7.43 10.5 11.7 7.75 8.7 8.94 8.55 4.47 8.23 5.56 9.78 6.22 6.29 10.5 11.1 12.8 8.39 0 9.53 3.12 10.7 9.22 10.2 4.79 7.23 9.52 4.94 7.73 4.84 12.6 6.06 15.3 0 1.55 0.4 11.9 4.14 0.71 9.32 11.2 7.1 13.6 12.2 13.1 10 8.21 5.73 12.5 11.4 10.6 1.19 9.94 0.4 6.72 6.32 3.53 11.9 5.58 5.92 0.4 0 0 2.46 8.41 1.38 11.1 7.83 9.01 9.71 11.2 11.1 11.2 4.09 12.8 13.8 10.4 7.99 8.83 10.9 11.1 10.7 7.64 12.2 3.32 7.35 4.43 9.88 7.16 6.4 4.4 7.12 9.05 7.26 7.6 8.32 6.24 10.7 6.27 7.62 10.6 8.72 11.2 10.3 8.58 10.9 6.82 12.4 8.21 10.5 11.4 11.1 11.8 10.3 10.4 9.59 11.9 10.3 10.7 11.4 3.61 8.1 13.1 14.2 13.9 10.2 9.72 11.7 9.81 5.67 12.6 11.8 2.83 11.6 5.27 11.7 7.6 13.4 12.2 11.1 6.85 7.42 10.4 12.6 9.56 5.23 9.99 4.21 3.06 1.83 7.99 9.61 6.44 8.16 12.8 10.8 8.99 11.7 12.6 9.55 10.2 10.1 10.6 7.56 8.2 9.11 9.25 10.4 9.32 4.01 10.4 8.32 9.97 8.96 4.53 8.47 2.76 7.72 2.95 9.18 0.4 9.03 13.3 8.9 13.2 11.1 13.1 11.7 12.5 11.8 11.8 10.8 13.7 0.97 12 13.5 0.71 4.66 5.06 8.99 7.72 7.02 6.1 6.61 4.46 7.46 6.26 6.07 3.01 3.22 0.71 5.6 9.91 9.07 7.92 5.02 6.09 6.63 2.89 4.03 9.48 7.35 8.39 11.3 7.29 10.5 1.7 9.11 0 5.2 9 0.4 8.64 10.1 0 5.52 2.07 7.9 0.4 5.95 8.73 10.6 8.45 8.11 10.4 4.09 3.95 11 10.6 11.5 10.2 10.9 10.7 5.06 6.18 6.54 0 11.1 10.2 8.41 4.98 9.13 10.5 11.5 12.8 10.5 5.97 9.49 11.5 13.2 10.9 5.91 5.19 14.6 12.2 11.9 7.05 8.27 14.5 11.7 14.7 12.5 4.09 10.1 11.2 9.52 13.4 7.94 4.31 13.3 12.1 8.08 2.95 3.82 4.53 6.3 0.71 0.71 5.02 8.14 14.6 5.81 11.6 10.1 2.76 7.34 1.7 0.72 1.48 9.34 9.99 0.97 6.35 0 8.01 6.23 4.84 8.11 1.96 8.63 3.12 3.07 6.25 8.68 8.56 9.27 4.75 10.5 7.89 4.4 2.41 1.19 5.63 4.25 7.59 10.3 0.4 8.24 7.05 4.34 7.56 8.18 8.71 7.54 10.8 9.09 8.61 10.2 6.47 7.16 5.92 0 3.72 8.17 0.71 3.41 8.51 6.24 2.37 3.85 5.97 7.12 3.12 7.35 6.81 4.01 6.57 7.64 6.02 2.54 7.64 10.9 2.69 3.41 10.8 6.23 3.8 4.59 4.72 1.83 9.4 5.06 5.3 3.49 3.92 10 9.53 9.77 0.71 0 2.89 5.76 1.19 8.92 3.53 5.44 5.86 4.03 7.73 2.28 9.11 7.96 2.69 1.7 0 7.97 7.93 8.34 6.74 4.75 5.24 4.97 4.49 5.71 4.84 7.72 10.1 7.41 10.2 3.27 2.71 1.83 9.38 6.17 10.3 10.6 9.37 9.83 5.61 9.48 2.61 5.87 7.2 9.55 12.2 2.54 8.24 10.4 1.55 7.76 0.71 2.07 4.94 8.66 11.6 5.55 10.3 5.94 6.15 6.2 1.19 7.29 2.76 4.09 1.19 9 2.07 6.07 9.94 4.04 9.39 10.2 5.24 3.75 1.55 1.55 2.89 3.27 10.3 9.04 6.09 8.18 0 5.29 7.35 8.05 0 6.81 1.83 2.46 2.18 5.23 2.18 11 6.8 8.78 5.91 2.28 8.01 9.69 1.7 3.92 11 3.89 11.2 4.53 5.32 1.83 9.95 3.01 2.69 5.63 12.6 0.71 0.4 8.28 2.83 8.07 0 2.69 3.17 8.87 2.07 10.9 4.09 2.83 10.2 11.6 1.55 3.01 7.42 0 10.2 9.75 9.86 6.55 11.7 12.3 5.1 5.36 5.77 12.2 8.17 1.38 7.1 12.1 10.2 0 9.68 5.83 6.8 3.01 11.4 11.6 0.97 8.69 13.5 2.54 7.39 12.8 6.52 0 7.21 7 3.72 9.98 13 7.15 12.7 6.68 6.71 5.18 3.45 3.36 7.99 5.65 8.32 8.44 14.9 12.3 9.67 7.48 7.75 4.55 10.1 7.98 2.46 7.66 0 4.03 9.41 5.68 3.17 3.82 6.49 6.74 4.12 6.9 3.06 0 0.71 8.66 10.8 10.7 0 5.4 11.1 8.27 7.11 4.4 4.27 8.37 8.53 7.25 10.4 0.97 4.7 9.19 7.68 13.1 4.24 8.19 5.81 0.71 3.72 12.5 3.22 3.72 3.17 8.99 9.13 3.45 7.54 4.01 2.46 5.11 4.9 12.4 1.86 8.37 12.6 11.1 7.41 6.03 10.7 7.6 6.03 0.4 9.43 3.95 7.88 10.4 12.1 12.3 4.47 11.1 7.78 7.72 9.34 12.3 8.63 6.26 7.95 7.66 2.07 8.8 9.09 2.46 8.75 8.21 1.96 9.48 9 9.25 9.33 10.8 9.14 2.83 2.07 11.6 1.38 13.1 8.39 8.44 10.9 11.7 6.74 10.5 10.2 1.38 9.82 8.75 5.79 7.41 10.4 9.3 11.2 6.8 10.4 11.9 10.4 11.5 0.97 11.2 8.51 11.2 7.78 4.51 8.88 2.83 7.38 8.83 8.17 12 7.47 13.9 9.69 10.1 7.43 12.1 10.8 12.4 10.8 6.74 9.61 0.71 0.97 4.14 11.1 4.57 6.81 11.7 8.94 11.1 2.18 10.3 12.2 11.4 10.8 11.2 9.41 13.1 9.54 8.11 12.1 9.83 12.6 11.6 10.8 12.6 8.63 9.46 10.9 10.1 11.1 1.7 5.28 5.5 10.9 2.89 6.32 0.4 8.79 8.28 8.71 6 9.14 9.66 6.49 0.97 7.69 0.4 1.83 7.54 3.53 7.47 4.72 6.71 8.35 7.47 7.5 2.89 2.83 7.35 6.76 8.93 3.22 6.87 3.85 6.14 9.94 3.77 5.94 7.81 7.99 6.28 7.75 2.61 8.28 0.97 4.09 9.84 13 7.19 8.23 6.47 11.5 4.93 6.38 6.23 3.95 5.99 5.57 8.06 6.98 9.21 6.36 7.55 0.97 2.69 2.07 6.53 7.18 7.18 6.07 10.1 6.95 4.63 6.66 1.83 8.49 2.69 0 2.37 1.19 6.48 3.45 4.99 1.38 10.6 7.67 8.52 1.19 7.62 12.3 3.97 0 7.18 5.65 9.68 7.9 0.71 10.1 0 3.06 6.24 8.44 5.2 2.89 9.21 12.2 4.97 2.54 4.47 6.03 9.08 7.12 8.78 4.27 8.36 11.8 2.95 0.4 5.43 8.8 7.56 0.71 4.19 3.85 7.54 5.75 0 6.33 11.8 6.32 9.45 2.76 10.3 1.55 6.51 9.63 10.1 5.75 12.1 9.72 10.2 7.99 0.4 1.19 0.4 11.1 0 0.4 11.6 3.17 1.83 11.8 6.42 2.69 2.68 2.38 4.66 0 10.5 9.7 8.54 9.98 10.6 12.4 10.9 9.56 7.66 10.8 7.58 11.6 11.6 10.3 0.4 0.71 14.2 7.41 1.19 7.89 5.11 4.17 13 7.62 6.85 9.68 0.71 7.26 6.58 5.75 11.4 1.77 9.91 1.7 0.4 4.63 9.53 5.97 8.67 13.6 8.5 8.6 6.77 3.06 4.33 0.71 6.66 8.71 9.59 1.38 4.84 2.95 7.63 0.97 7.35 0 4.68 4.94 4.09 4.4 8.93 0.89 3.49 9.47 1.24 12.2 8.95 5.74 2.76 13.3 4.14 7.69 6.21 4.09 7.31 4.66 4.27 9.7 4.68 6.21 4.45 3.53 4.55 5.56 6.85 5.71 5.9 6.85 10.7 8.29 2.18 13.2 2.76 7.36 8.48 8.01 8.83 7.62 7.17 7.2 2.61 0.71 5.44 6.51 8 0.99 8.12 2.89 9.18 2.54 7.36 8.37 3.82 5.13 5.77 8.37 9.21 1.38 7.9 0 6.47 8.01 3.79 8.05 7.65 7.34 0.71 9.72 12.6 9.21 1.55 7.52 1.7 5.29 4.82 7.55 4.82 8.53 1.7 4.87 6.66 0 5.4 9.39 6.85 8.65 1.6 12.9 8.19 6.06 9.72 2.69 1.7 3.65 1.19 9.25 5.37 3.27 7.2 0.4 8.45 0.4 4.68 5.66 2.18 7.14 1.55 11.2 1.55 8.82 10.8 5.37 5.2 1.08 2.95 8.38 1.83 2.95 0.97 6.21 1.19 11.4 10.8 8.69 7.61 8.39 9.54 11.3 7.76 11.4 0.72 12.2 1.96 12.1 0 8.7 11.7 12.4 12.3 5.94 1.7 12.3 12.1 12.8 3.01 2.76 3.53 11.9 6.24 12.1 4.01 1.83 7.9 9.17 5.83 7.4 5.77 11.2 8.43 1.19 13.1 11.4 11.4 9.65 6.59 4.9 9.13 9.94 9.7 12.4 5.14 11.6 13 12.1 0.71 10.9 10.4 12.2 0.4 6.98 10.2 9.34 0 9.38 7.58 12.1 10.2 11.1 8.69 11.3 10.2 2.61 7.25 8.06 9.43 1.38 6.23 7.91 6.83 9.45 8.93 11.7 6.61 6.56 4.19 10 6.49 3.72 7.06 6.87 11.5 3.57 8.25 6.58 10.5 0.97 7.46 9 11 10.9 12.5 8.64 8.13 8 9.96 0 4.19 5.05 8.96 5.05 10.4 8.89 8.85 1.38 6.86 7.13 2.73 7.92 6.87 2.46 6.86 1.38 2.28 8.2 8.14 1.83 6.58 5.79 4.65 10.5 4.49 9.06 8.3 3.32 2.07 7.88 5.31 5.11 1.19 4.34 7.68 8.45 10.4 4.55 0.4 6.06 0 3.68 2.76 2.76 6.76 11.6 0.4 9.17 6.37 6.23 5.62 3.32 0 1.19 4.68 4.79 9.92 5.22 6.56 8.35 1.23 9.25 2.18 4.43 7.42 5.46 9.15 8.98 2.46 8.27 10.1 9.58 7.32 9.25 9.69 0.4 1.19 1.21 0.4 6.27 10.7 4.12 6.48 9.52 4.7 0.4 4.68 6.62 9.8 8.09 2.07 8.9 2.28 9.5 1.38 2.37 10.3 0 4.09 9.8 6.23 8.63 0.71 8.65 9.21 13.4 10.7 9.43 8.49 10.7 4.65 9.66 10.7 5.05 8.85 3.37 5.34 10.3 6.47 6.4 9.65 8.64 9.54 9.56 10.1 11 3.06 10.8 5.37 3.36 9.93 13.2 11.7 10.7 5.16 12.6 2.61 2.18 12.5 7.91 13.7 12.2 5.84 6.62 10.7 6.11 9.22 5.68 11.2 12.1 11.9 11.8 11.5 13.5 11.7 1.96 5.79 4.4 5.4 9.61 10.8 11.7 9.11 8.06 10.3 10.9 10.9 10.8 9.22 11.2 7.14 9.24 6.07 9.5 8.73 5.7 6.74 9.2 8.77 8.62 5.93 3.75 8.73 10.2 9.89 9.38 9.63 10.7 10.3 7.97 11.4 9.61 11 8.51 12.4 6.49 10.7 6.97 11.6 10.2 6 4.43 10.7 6.04 4.19 6.16 1.19 3.79 8.22 5.83 3.45 12 4.73 0.73 10.8 9.12 8.48 10.4 8.2 8.23 6.49 11.5 10.1 4.61 9.79 11.6 9.44 5.98 10.8 10.4 4.85 1.19 13.4 9.97 11.1 10.5 9.99 10.2 10.8 12.5 3.45 8.2 9.12 3.72 10.9 11.3 11 10.8 9.76 6.41 8.88 9.81 10.8 10.7 5.42 9.78 11 8.44 2.76 7.81 8.03 8.81 12.4 9.76 10.1 9.17 10.5 9.87 7.48 0 10.6 10.3 8.2 9.86 10.1 10.7 11.2 11.8 7.59 7.74 11.1 9.48 6.7 8.73 9.22 10.2 8.79 15.5 10.8 9.1 11.2 8.27 10.4 12.7 7.23 9.27 12.3 10.1 0 8.53 8.35 9.22 10.9 10.9 9.12 9.53 6.38 7.04 10.2 11.9 10.9 11.5 4.51 4.75 9.56 11.6 11.4 9.82 8.17 10.3 14.2 9.44 0 3.06 6.45 3.32 13.5 13.4 4.7 8.31 7.88 5.87 8.77 9.03 1.7 8.83 8.25 7.32 9.16 0.4 10 9.42 0.4 10.3 8.13 8.73 8.96 9.37 4.14 2.83 7.95 7.5 6.4 8.72 9.22 3.41 7.74 9.12 10.3 0.4 1.7 10.4 10.8 1.55 4.25 6.4 8.58 9.18 1.55 1.96 2.95 4.87 5.49 3.75 7.19 3.12 1.38 3.32 7.84 10.6 4.75 8.1 10.5 4.42 5.93 2.16 4.61 7.77 5.25 10.2 6.77 2.28 7.42 2.76 9.64 6.56 5.31 8.94 1.19 0.4 8.61 10.4 5.76 3.75 4.99 4.19 4.14 3.06 6.78 7.43 2.37 0.71 7.09 6.59 8.19 7.94 13.2 4.17 6.55 6.99 6.33 6.1 4.22 5.67 8.05 7.23 4.63 5.44 6.91 7.96 2.28 5.39 6.85 0.71 7.08 7.77 4.49 1.38 2.83 2.28 2.18 3.61 1.55 0.97 8.02 1.55 8.25 5.74 4.75 7.47 5.81 3.95 7.61 11.3 2.37 0 0.97 1.19 4.31 3.92 6.41 0.71 2.46 6.98 6 2.69 1.7 11.1 6.72 9.92 9.46 0.4 6.98 12.6 9.24 8.92 2.95 9.2 7.4 1.19 10.4 12.6 9.33 7.04 5.79 7.93 5.4 10.5 6.43 6.38 4.73 10.7 11.8 9.55 4.13 9.63 6.92 10.8 9.74 9.88 8.6 8.13 1.7 10.7 9.16 9.15 13 1.7 7.09 10.9 9.74 7.32 7.34 8.09 11.7 8.81 10.6 11.6 7.47 8.23 0.71 0.97 0.97 12 8.34 3.92 10.6 9.86 0.71 4.91 14.9 11.1 12 9.51 2.37 7.11 13.5 12 0 11.8 11.3 10.7 10.1 11.1 12.4 5.81 3.45 10.2 10.8 9.87 10.7 9.03 10.7 1.83 10.5 9.41 14.2 10.3 8.95 10.4 11.8 7.45 13.3 6.29 7.1 11.5 11.3 10.4 12.3 8.04 11.5 8.61 10.9 6.2 10.4 10.4 7.59 6.62 9.04 13.3 8.76 9.92 9.52 8.98 11.3 10.2 11.3 9.71 8.99 9.27 4.9 9.92 10.9 9.53 9.07 9.77 9.23 11 11.1 10.2 9.07 9.15 9.64 10.8 9.89 9.44 10.8 10.5 10.7 11.1 10 10.1 9.31 10.8 8.9 9.43 9.98 11.9 9.28 10.2 9.62 13.2 14.2 10.5 10.9 3.32 6.97 7.27 6.71 9.16 1.19 0.4 8.89 4.27 9.88 9.45 8.98 6.69 6.58 11.6 10.5 13.7 10.9 5.86 9.6 8.9 7.15 11.5 9.89 10.5 5.74 12.7 3.45 11.6 12.4 10.6 9.72 11.6 10.7 9.3 11.7 7.53 7.68 8.36 7.93 10.2 10.5 9.69 2.69 10.1 9.58 9.83 9.1 1.55 10.9 12.1 7.85 11.9 11.5 6.86 9.16 6.67 6.04 10.4 8.48 4.14 6.15 10.4 9.81 12.6 9.27 10.5 8.93 11.2 11.1 2.54 9.14 13 3.51 8.18 10.5 9.91 9.47 10.6 12.9 12.6 9.48 8.11 1.38 8.62 4.29 8.62 9.79 10.2 7.49 13.3 1.96 1.38 12.5 7.68 8.11 5.2 7.1 5.85 10.1 10.8 10.6 6.6 11.4 9.06 2.07 10.1 6.04 4.67 4.01 12 10.4 8.48 4.38 7.37 1.96 11.8 8.7 0.4 6.99 0 9.2 8.91 0.4 4.63 8 12.1 10.2 13.5 9.35 11.7 9.11 12.6 10.3 6.61 9.14 8.94 10.4 9.49 0 8.77 5.22 4.68 10.2 11 7.11 11.5 9.58 0 4.79 11.8 8.82 6.52 4.38 4.17 1.56 12.8 10.9 10.3 9.7 10.2 7.18 11 8.55 9.07 2.61 1.96 6.46 7.61 0 0 10.8 9.94 12.8 7.98 8.9 9.01 8.84 8.34 2.07 5.96 6.82 9.16 11.3 9.45 8.73 8.38 3.95 2.54 11.1 3.01 11 9.39 4.87 5.91 8.27 11.1 9.33 10.1 3.89 9.42 5.08 6.82 5.07 7.59 5.4 5.63 10.3 13.5 6.62 5.63 11.7 0 0.97 5.74 12.5 8.64 10.7 9.74 11.4 9.38 9.41 4.47 10.6 9.7 9.56 4.01 8.78 9.18 8.49 7.34 12.5 11.1 0.71 10.4 13 0 5.4 10.2 8.31 11.9 4.92 9.23 9.21 3.61 9.09 9.86 6.16 10.8 5.43 11.7 8.08 6.34 11.3 10.2 9.12 1.38 5.65 1.7 8.28 10.4 10.3 12 10.1 10.3 8.62 9.03 1.96 3.29 3.27 12.4 4.38 7.49 10.7 5.94 5.43 0.71 9.56 10.7 10.3 12.8 10.1 11 7.94 9.06 10.1 12.5 9.85 2.61 13.4 5.78 5.81 4.34 8.03 10.3 11.1 10.9 10.2 9.98 8.8 7.8 8.88 6.67 8.27 7.84 9.62 9.23 8.63 3.53 8.45 7.52 10.4 8.48 11.1 9.75 6.04 9.08 7.99 9.38 10.9 6.81 8.18 10.2 7.19 9.32 7.86 9.73 10.3 8.87 9.71 10.1 8.32 11 8.6 8.27 6.17 11.1 7.01 7.9 9.9 10.1 9.75 8.22 10.1 9.97 3.49 8.46 10.2 8.43 9.08 8.82 8.49 9.29 7.68 10.9 7.88 9.91 9.87 10.2 12.6 9.3 11.2 3.68 8.22 2.83 4.81 4.12 10.7 7.26 8.75 10.3 9.01 11.6 8.46 9.62 11 9.66 9.32 10.5 11.4 8.35 8.51 8 8.29 10.1 7.71 12.5 11 10.3 10.7 7.03 10.6 9.17 10.4 9.3 9.79 9.48 9.13 10.6 7.84 9.65 9.86 9.45 10.3 10.2 4.8 8.95 5.83 8.57 8.83 10.9 12 8.22 8.6 8.54 9.81 9.35 11.6 9.88 10.8 9.6 10.5 7.68 10.9 1.7 9.63 9.9 8.3 9.93 10.3 7.22 8.72 8.51 11.2 4.97 8.23 4.29 9.4 6.99 7.33 8.55 7.58 8.62 9.38 10.8 9.2 9.18 8.8 9.82 9.14 11.3 7.65 10.2 8.22 7.96 8.6 9.85 7.37 7.63 10.1 8.08 10 9.77 7.73 8.46 1.55 1.96 3.22 9.71 3.27 8.95 7.57 7.96 7.75 9.69 11 9.36 12.4 0.71 10.3 8.94 6.35 6.94 9.37 9.02 11.3 10.9 9.57 9.77 8.12 7.88 8.91 3.17 10.5 9.48 7.74 9.01 10.5 8.29 8.66 10.3 9.12 5.21 5.94 3.82 10.8 10.6 10.9 10.6 8.42 6.92 7.82 9.75 10.2 9.92 12.2 8.23 9.18 10.6 7.73 1.55 9.34 8.57 9.41 8.34 10.4 8.49 8.99 9.24 9.28 7.9 9.12 8.64 9.77 5.64 8.02 10.2 0 10.7 10.4 5.87 10 9.26 5.79 9.43 12.8 1.83 9.58 5.58 9.89 9.78 7.68 10.2 10.2 11.9 10.8 5.87 9.82 4.79 8.65 6.03 6.41 4.82 11.4 9.5 7.39 8.71 9.99 10.5 9.86 9.89 10.4 1.19 10.3 1.7 7.38 9.4 10.1 9.56 10.7 8.24 5.76 12.2 8.05 9.41 6.47 10.7 9.52 7.81 10.7 8.9 8.83 8.13 8.36 8.09 10.1 1.55 8.3 13.8 8.57 9.91 6.31 9.61 7.27 8.53 10.8 9.91 11.8 5.59 10.2 9.07 8.2 8.65 7.51 10.1 10.6 9.02 9.35 9.63 9.99 11.4 2.18 11.1 11 10.1 10.4 10.6 8.38 1.19 11.3 8.9 10.4 11.5 1.96 9.57 7.8 9.72 8.75 4.84 11 11.5 8.2 2.37 11.8 10.2 7.78 10.9 3.85 8.67 7.36 10.7 12.2 9.76 10.7 8.84 11.3 9.82 8.53 9.47 10.6 11.6 11 8.59 10.2 7.96 6.04 8.98 9.01 7.37 11.5 10.7 9.59 8.69 9.72 8.86 10.1 9.46 6.58 8.54 8.27 5.76 10 9.86 7.71 9.73 8.97 8 9.57 9.14 7.84 7.62 9.56 8.59 11.7 5.13 0 8.82 11.9 7.23 3.45 7.92 11 11.2 9.57 10.2 9.55 9.51 11.3 9.95 8.84 7.65 12.1 10.7 10.7 8.71 12.8 10.5 10.5 10.9 11 10.7 9.03 9.71 7.23 10.5 9.93 11.9 8.18 9.93 8.78 9 12 10.1 1.83 8.31 9.69 10.9 10.3 8.75 10.2 8.27 11.1 7.72 8.89 10.6 11.3 10.3 9.71 8.32 10.3 9.3 10.8 8.44 10.2 8.54 8.89 9.23 11.7 8.54 8.51 9.51 7.53 11.3 8.33 8.51 11.3 8.64 10.6 8.26 12.7 10.9 6.31 5.3 5.38 9.78 9.77 6.11 4.53 8.31 8.69 9.67 8.61 10.3 9.78 12.5 10.7 7.52 8.39 2.69 9.53 10.1 9.25 10.6 8.27 10.8 8.46 1.55 11 5.41 8.8 9.6 11.2 8.58 11.1 3.41 9.02 9.42 2.28 6.91 7.67 11 4.06 11 10.3 8.61 4.97 10.7 9.3 10.3 10.2 11.5 7.54 7.02 9.5 9.32 0.4 9.16 10.7 10.3 10.8 9.88 11.5 11 9.51 7.14 5.66 9.24 11 9.93 9.91 10.7 8.34 9.37 9.92 7.68 8.84 7.87 9.97 8.19 0 0 8.97 4.29 10.7 10.1 8.74 8.4 12.2 10.6 2.46 9.1 11.9 9.85 7.16 11 7.12 10.3 9.39 12.4 9.78 9.72 10.3 11.3 3.41 0 10.9 7.38 9.01 11.2 12.4 9.79 8.41 8.15 13.2 8.49 4.24 10.9 9.21 12.6 5.18 10 10.5 9.02 9.21 10.5 11 2.69 8.75 8.71 9.55 4.8 10.9 11 9.23 7.62 8.52 7.34 7.84 9.54 10.7 8.4 8.42 10.5 11.1 10.2 9.4 10.7 9.49 10.2 8.21 8.98 7.04 12.5 11.2 11.4 11 9.83 8.47 0 8.46 9.97 10.6 8.49 10.9 9.69 0.57 13.8 9.15 9.56 0.4 6.88 4.87 8.28 9.47 11 9.54 7.94 10.5 7.47 9.37 8.59 8.66 7.25 10.6 10.2 6.89 4.49 9.23 8.33 6.91 5.11 10.1 10.6 8.35 6.73 8.87 8.99 9.83 10.4 9.96 12.8 6.19 7.17 9.4 8.44 5.24 7.2 6.67 8.19 11 10.1 5.87 11.3 10.4 6.2 11.1 9.79 8.41 11.4 9.81 10.6 10.6 9.71 7.59 9.26 2.18 10.4 5.41 10.8 7.58 8.05 3.4 2.69 11.8 10.8 8.7 9.28 11.8 8.67 8.41 9.8 6.2 4.82 5.09 0.71 9.74 10.8 7.12 5.82 3.36 2.61 8.88 5.93 9.59 7.92 0 5.28 11.3 8.55 8.31 8.12 8.71 8.74 8.48 10.9 10.2 7.49 9.67 11.3 10.4 9.66 9.5 11.5 9.17 5.67 4.29 6.08 7.56 8.2 1.96 7.98 1.83 4.34 8.51 4.47 6.52 8.14 4.24 10.8 9.15 10.8 3.22 11 9.47 8.43 4.74 7.77 2.78 8.29 9.4 7.9 8.99 9.13 9.88 11.8 10.4 12 1.19 8.3 1.83 9.6 9.01 8.45 10.6 10.1 6.51 2.04 9.86 9.93 12.4 11.3 10.2 5.06 5.53 9.18 8.77 8.45 10.7 7.82 7.48 8.64 10 5.18 6.99 9.39 8.72 10.1 9.31 9.52 12.4 10.4 5.57 9.77 8.9 3.27 2.46 11.6 9.87 8.23 10.7 5.29 7.96 4.53 6.11 10.3 8.17 6.34 9.27 9.2 10.5 11.2 9.02 9.12 3.57 0.97 10.7 10.3 10.2 10.5 9.19 10.3 9.06 1.38 10.9 9.58 10.8 9.93 7.99 10.2 10.1 8.25 10.3 10.3 5.63 10.1 7.94 9.63 8.82 10.2 8.25 9.88 8.67 10.5 6.99 11.4 9.78 6.92 11.5 8.47 9.15 10.3 7.1 4.27 6.8 7.53 9.99 7.79 7.72 8.9 7.84 6.26 9.4 8.8 7.43 10.3 3.32 8.34 10.2 8.65 8.41 9.5 9.75 9.39 10.1 9.05 11.9 9.5 11.1 10.4 8.12 9.84 8.48 9.5 8.14 7.97 8.05 9.09 8.08 0.71 8.2 9.33 5.71 9.5 12.4 5.83 11.5 1.55 9.13 10.3 10.2 7.51 3.68 8.71 8.47 9.3 10.1 11.7 5.74 6.91 8.82 7.69 11.7 8.81 3.61 9.93 8.9 11 9.88 9.72 6.31 9.29 9.34 9.46 6.87 8.66 8.91 9.9 10.6 2.07 10.4 9.86 8.1 10.3 9.27 4.24 4.93 10.7 0 10.9 9.38 2.95 9.72 9.88 10.1 5.91 7.92 4.36 10.5 3.27 8.38 0.71 11.4 8.04 6.93 11.1 6.75 8.28 10.3 10.7 6.43 9.1 9.97 12 8.94 7.84 6.87 10.3 12.3 10.3 9.55 9.97 8.77 8.26 6.09 9.61 9.45 10.8 9.37 8.51 7.39 8.85 8.18 9.75 10.1 9.61 6 9.7 11.1 9.05 7.92 10.4 9.67 8.36 9.59 6.91 10.5 7.74 0.97 7.5 0.71 10.1 11.2 5.52 0 10.8 8.7 10.7 11.4 7.95 9.26 8.17 10.6 10.9 11.1 10.1 9.02 8.07 7.95 7.6 8.96 5.64 8.84 10.8 2.54 9.26 8.03 10.6 9.57 6.5 9.75 7.8 9.4 0.97 10.9 8.25 8.73 10.3 9.47 9.33 11.9 7.7 10.2 9.18 9.44 8.63 10.2 8.94 11.6 8.13 11 7.94 9.64 10.3 10.6 9.65 9.28 9.93 10.5 7.9 10.6 11.3 7.78 8.06 5.39 8.52 9.03 9.47 10.7 0 10.9 7.93 9.89 7.24 10.4 10.2 9.04 11.1 9.74 6.98 11.2 8.35 5.7 8.48 11 9.68 11.1 8.54 10.7 9.79 9.34 7.26 5.48 9.2 9.53 9.19 2.28 8.41 9.59 11 11.3 8.41 8.92 5.41 9.5 10 8.95 9.31 9.86 7.74 8.4 10.1 8.45 8.57 8.64 7.65 6.06 11.2 8.72 10.2 6.93 8.81 7.19 9.76 0 8.57 8.5 8.92 8.01 8.81 10.2 8 8.36 9.48 10.8 6.75 8.07 8.12 8.02 9.72 6.62 9.84 6.38 8.96 4.4 10.6 11.2 7.34 8.66 10.8 7.69 7.89 7.23 9.47 4.88 10.7 12.4 12.6 6.43 10.4 8.42 10.8 9.14 8.26 8.45 9.14 8.49 11.6 7.11 9.68 8.04 8.34 9.11 10.2 9.42 6.28 9.94 0 6.97 9.13 6.78 11.7 4.27 6.49 7.75 9.54 9.89 11.2 9.41 8.42 7.51 10.2 7.11 10.1 8.74 8.64 10.2 8.6 11.3 9.77 7.48 8.61 10 9.63 8.91 8.38 5.55 6.93 9.32 6.81 6.05 6.48 8.54 4.87 10.7 6.18 11.5 8.15 7.29 6.78 9.94 8.06 10.1 11 8.38 8.92 9.5 10.3 8.64 7.47 4.63 9.89 5.94 8.53 8.22 7.96 7.83 8.19 10.9 4.97 9.72 9.09 9.85 10.5 10.6 8.83 6.9 11.1 10 10.1 7.75 9.08 8.97 7.68 10 8.09 9.94 8.49 9.48 2.07 9.4 10.9 8.14 8.86 4.29 8.66 8.75 9.02 7.32 5.28 4.22 9.27 10.7 9.98 9.45 8.12 9.59 7.99 9.79 10.7 10.6 9.07 11.5 4.34 7.68 9.46 10.2 9.12 9.39 9.6 9.45 10.7 9.59 10.6 10.3 9.36 8.47 6.92 10.2 9.2 8.62 8.31 8.35 9.76 9.72 6.16 6.92 9.64 7.44 8.2 12.3 8.49 9.93 10.1 10.8 7.36 10.5 11.4 9.05 9.31 5.56 9.38 7.48 10.9 9.56 0 10.7 9.98 10.7 7.85 5.79 10.6 7.42 9.6 7.29 10.4 11.2 9.89 11.5 7.96 11.5 6.14 8.42 7.97 9.55 8.17 9.77 9.91 7.84 10.1 10.3 3.53 4.7 8.15 8.19 9.37 9.21 10.8 9.54 8.67 8.44 9.48 9.77 5.27 9.87 10.8 9.89 7.86 9.59 11.9 10.6 9.48 6.21 9.55 10 5.79 7.34 11.3 10.7 10.8 10.5 9.97 9.36 9.28 9.73 10.7 7.92 9.92 6.07 8.73 6.94 8.03 9.34 3.61 8.6 9.27 11.2 8.28 9.76 5.76 10.6 9.71 10.1 7.42 8.9 8.96 10.4 8.93 9.06 2.54 5.94 9.37 7.77 5.78 4.63 9.47 11.8 1.55 10.1 8.59 9.14 11.1 8.84 9.25 8.15 7.67 8.91 8.99 9.14 0.97 10.8 9.05 0 9.39 7.74 9.55 10.4 8.64 10.6 8.78 8.75 9.56 8.6 5.65 9.46 7.85 8.59 10.3 9.43 3.61 9.31 7.77 9.78 9.45 10.4 9.48 6.61 8.04 8.35 8.08 8.78 9.14 10.3 11.8 5.7 5.66 8.93 10.4 10.6 8.65 10 10.2 8.77 7.31 6.6 7.62 9.1 9.47 0.4 8.47 8.78 11.3 7.54 6.13 8.91 6.39 9.84 9.72 10.2 10.2 9.07 10.2 7.68 11 6.27 7.81 10.9 12.3 6.28 6.91 4.66 8.25 8.96 8.72 5.72 0 2.37 8.27 4.96 7.36 9.56 7.94 0 9.9 11.3 9.5 10.8 10 11.7 7.71 3.32 9.56 11 9.8 10.5 7.94 6.04 7.61 9.57 9.39 8.21 2.18 8.26 4.73 6.38 2.46 7.67 0 9.64 6.91 4.91 10.2 10.1 7.5 2.61 0 9.4 8.5 4.79 8.43 9.32 2.95 1.19 8.25 5.14 8.25 10.2 7.17 9.37 7.07 2.83 11.2 7.95 10.1 8.43 12.6 5.34 9.72 9.46 7.75 7.56 10.8 10.8 9.71 10.8 7.77 10.3 9.28 7.6 0.4 10.5 9.45 9.43 9.81 8.83 9.75 9.94 6.59 9.49 10.4 6.96 3.65 11.1 7.72 10 7.79 9.2 10.5 9.11 8.85 9.04 10.8 10.6 10.1 10.2 10.9 8.84 11.7 9.01 8.06 8.64 9.01 8.71 8.19 7.87 9.41 9.7 9.58 6.41 10.9 8.23 7.91 8.06 9.38 8.99 10.4 9.68 9.84 11.5 9.4 9.93 8.58 8.61 7.63 11 11.3 9.8 10.4 8.23 8.83 9.71 10.8 10.9 8.12 9.72 9.28 9.32 10.8 10.3 8.71 10 8.84 8.53 10.2 11 10.4 10.6 7.19 10.2 6.6 11.2 9.57 9.08 5.77 8.71 10.5 9.48 6.89 11.9 8.63 10.4 10.2 8.5 8.5 9.16 11.3 9.52 10.4 9.47 10.1 8.45 6.97 7.9 8.2 8.57 10.3 9.22 10.2 10.1 7.17 6.22 8.82 9.21 10.4 8.46 10.8 12.4 9.53 8.44 8.54 8.83 9.95 11.4 9.71 9.53 12.6 8.89 11.3 8.55 9.43 9.62 11.1 11.5 10.6 8.34 8.96 9.47 11.9 2.61 12.1 10.7 8.95 8.61 10.3 9.29 8.53 10 10.5 8.22 9.19 10.3 6 9.4 9.19 9.48 10.8 10.1 7.84 9.89 9.03 9.44 9.01 8.27 8.37 7.77 8.51 8.99 9.31 7.52 10.3 8.41 8.53 10.1 6.56 7.34 8.94 8.91 10.1 7.79 9.12 6.94 8.49 4.63 10.5 10.8 6.25 9.88 7.75 5.51 7.55 3.68 9.5 8.7 10.1 2.07 8.26 9.14 10.4 4.87 10.8 10.8 0 10.4 8.27 6.8 11.3 9.55 9.77 9.98 9.98 12.1 10.1 7.48 10 7.8 10.1 4.96 10.8 6.44 9.18 11.6 9.1 7.89 9 10.9 7.93 10.2 10.9 2.18 10.5 7.61 8.63 8.75 10.2 4.19 10.7 10 10.7 9.08 8.87 2.95 7.94 7.82 12.2 9.24 8.01 4.34 5.89 10.3 5.23 6.94 0.97 11.8 8.5 9.08 11.4 4.66 10.6 8.95 10.3 7.68 9.45 11.7 10.9 7.22 8.96 8.51 12.8 6.33 11.7 9.39 8.51 10.3 7.29 12.2 8.51 5.67 8.95 4.09 11.2 6.07 11.9 10.6 7.93 7.08 10.9 12.3 8.23 3.12 8.98 10.2 9.78 10.4 12.3 9.67 8.07 10.1 9.94 9.37 8.22 8.99 0.71 7.25 0.4 9.9 9.31 10 6.54 9.94 9.8 9.71 10.6 9.22 8.87 10.6 5.17 7.54 8.78 6.78 9.55 4.16 2.07 8.8 9.38 7.15 7.29 3.92 6.03 6.08 5.09 7.98 5.64 6.92 6.73 10.6 6.09 5.87 4.34 7.26 3.85 10.2 0.71 5.31 7.01 6.23 5.65 5.15 6.25 6.56 5.97 7.37 9.42 5.66 7.74 5.65 7.63 3.92 0.71 8.12 2.37 2.95 2.89 7.21 10.7 13.2 7.85 9.93 2.46 11.5 11.4 0.4 1.83 9.62 8.82 12.2 0 8.19 11.1 5.36 10.7 9.68 8.77 10.5 9.36 4.99 9.61 10.8 10.6 9.89 10.1 10.7 9.56 9.68 3.32 1.39 9.63 9.35 9.58 7.59 9.91 8.46 7.6 7.49 11 5.62 0.4 3.85 9.89 8.9 9.62 5.27 7.92 11.5 9.47 13.5 6.17 2.07 14.8 5.22 7.9 6.49 9.49 5.63 8 11.1 8.68 10.2 7.32 7.43 10 8.68 10.1 8.32 8.55 4.09 0.71 6.7 2.28 7.82 1.83 10.4 10.2 11.4 9.36 15.1 5.34 0.97 9.87 9.45 11 10.5 10.8 8.13 8.68 10.1 7.93 10.8 9.22 9.42 8.9 2.54 10.4 11 10.5 11.5 11.1 10.2 12.3 11.2 8.41 11.6 10.9 11.2 7.66 10 9.61 7.75 10.5 10.6 7.26 8.85 10.2 10.1 6.43 9.62 9.83 11.8 6.07 9.82 7.33 8.46 10.3 8.24 8.75 11.9 9.13 8.49 7.9 8.67 9.81 9.76 9.16 9.69 10.7 8 7.2 11.9 5.94 9.62 9.39 9.95 7.4 8.56 10.6 8.8 9.48 9.98 8.7 9.95 10.7 9.54 10.7 7.05 5.57 9.53 10.8 10.5 0.97 8.57 5.25 9.37 10.7 9.92 4.17 9.5 5.83 4.85 8.55 8.6 4.87 8.82 9.63 7.54 8.85 11 9.06 10.6 6.81 10.2 11.3 10.2 9.28 10 9.84 9.1 0.97 9.01 6.94 7.57 10.9 8.58 10.4 4.42 8.96 10.4 9.31 10.6 10.4 7.76 5.06 8.25 8.99 9.46 10 9.82 9.47 10.3 9.49 3.12 10.1 8.32 0.99 11.4 11.2 11.7 8.3 9.74 9.94 9.35 10.4 4.99 11.1 0.97 9.76 3.45 8.24 7.28 10.4 11.2 5.64 8.88 7.4 10.8 5.13 8.16 8.61 9.01 10.5 11 5.64 9.36 7.36 10.4 6.72 10 9.9 10.1 3.22 8.84 9.08 9.85 10.5 10.1 8.59 12 7.15 11.1 10.2 12.5 6.91 9.75 9.51 11.4 8.83 9.52 6.58 12.6 9.8 9.15 9.24 0.4 9.62 8.4 9.85 4.99 4.51 6.35 11.5 9.53 8.47 10.3 9.48 12.1 11.3 9.75 7.76 10.2 11.3 10.2 9.95 9.71 10.7 6.59 10.6 10.6 12.1 4.24 8.68 7.74 10.2 9.07 11.5 9.42 8.76 10.5 8.48 7.86 9.39 7.04 6.26 8.92 10.2 9.22 10.8 12.4 11.3 8.36 9.96 8.01 8.53 10.5 6.26 6.96 12.4 8.46 11.6 2.61 4.47 10.7 10 9.07 1.19 5.64 9.42 11.2 10.8 6.36 9.21 8.61 7.49 9.12 2.69 8.3 9.47 7.41 5.86 11.8 9.4 8.56 5.27 5.1 9.07 9.78 2.54 1.55 10.3 9.71 0.71 6.81 6.48 9.05 8 10.4 8.21 10.5 8.41 8.66 9.57 8.2 6.84 7.54 10.1 11.5 11.9 8.26 5.28 8.64 9.71 3.27 9.14 9.65 8.65 10.5 4.66 10.9 9.29 9.27 6.87 5.78 8.51 9.79 0.4 5.79 11 10.1 2.76 10.7 9.4 8.52 8.35 4.27 8.9 9.99 10.2 9.32 7.88 7.52 9.21 11.7 9.38 5.79 11.4 11.7 8.71 0.97 11.7 3.06 11.8 6.04 4.48 7.62 10.2 8.8 11.1 9.54 8.06 11.5 10.4 8.98 9.37 10 12.8 8.08 9.75 9.1 9.43 4.31 6.16 2.18 6.07 6.49 10.6 8.24 11.2 10.9 11.3 12.9 7.61 8.33 7.55 9.97 12 4.68 9.42 9.93 9.4 8.87 7.23 7.1 10.6 9.61 8.92 10.5 0.4 9.33 9.2 7.25 6.86 11.1 9.16 12 9.17 8.97 4.24 7.93 10.6 7.43 13.9 9.34 4.77 9.66 7.05 1.19 4.79 8.05 3.27 7.65 12.1 1.96 10.9 10.9 9.98 10.5 10 10.6 10.2 10.2 7.67 9.06 5.65 5 8.8 10.6 9.17 9.67 10.3 8.12 6.95 10.5 10.4 11.1 9.43 10.5 9.31 3.32 8.86 9.5 12.3 9.35 8.99 6.26 8.06 0.4 11.9 11 9.74 11.1 9.38 7.5 6.38 2.95 10.9 9.47 8.62 12.4 10 7.54 7.02 7.36 10.3 6.15 10.8 11.4 9.88 9.45 9.56 8.65 8.89 9.56 8.71 7.62 12.6 8.68 9.2 9.66 11.7 11.5 7.67 7.36 9.98 4.99 9.12 8.66 9.98 6.75 7.66 9.85 9.93 8.96 7.9 10.9 6.85 4.03 10.4 9.86 8.89 9.38 9.75 7.77 9.26 8.93 10.3 8.94 6.12 8.37 7.54 7.41 7.76 8.12 1.96 8.37 11.4 9.04 7.47 10.4 10.4 9.78 6.04 4.57 6.98 0.4 9.99 8.46 13.1 9.43 8.65 9.32 6.98 9.53 9.41 8.73 9.99 9.1 8.44 10.5 6.18 9.73 11.2 11.6 9.64 10.9 9.35 2.28 6.23 8.31 9.85 8.9 5.67 11.4 0.4 5.52 8 9.13 11.3 10.2 8.97 2.89 10.5 10 7.62 6.83 9.15 13.9 9.71 4.36 9.29 12.6 10.1 4.84 6.6 2.61 8.15 5.91 4.68 10.8 7.88 5.97 8.26 9.32 7.77 11.1 8.63 8.42 10.8 4.85 11.8 11.6 10.3 10.4 6.81 9.27 11.3 11.2 9.19 7.62 10 11.7 9.92 9.82 10.4 11.1 8.45 11.6 9.59 2.76 11 8.19 11.3 9.31 10.2 9.52 9.63 5.1 9.68 10.1 10.2 8.53 7.33 9.78 7.69 6.3 8.15 8.37 4.72 10.4 9.09 9.24 8.32 5.74 10.6 10.1 12 8.56 2.54 9.78 8.47 10.4 10.9 10.6 9.72 8.83 8.08 4.29 10.6 1.55 0.4 11.7 7.83 9.89 11.6 10 10.7 6.6 3.06 8.52 9.94 10.3 12.2 9.22 11.9 8.44 10.7 9.1 8.48 8.48 9.57 8.64 11.1 12.3 9.5 8 7.83 9.66 12.4 10.7 12 6.63 8.22 7.22 7.94 7.28 7.32 11 5.75 10.7 9.54 10.7 13.3 11.1 11.9 9.66 12.3 10.8 10.1 10.9 10.6 8.56 10.1 9.38 9.6 0 10.7 8.28 10.4 10.8 9.36 8.87 11.6 10.3 7.85 5.1 7.06 10.4 9.52 9.47 11.3 8.38 3.01 8.94 13 12.3 10.4 9.87 9.73 10.7 9.22 11.2 10.2 8.05 0.97 9.66 9.69 11.1 0 6.62 11.8 9.64 3.85 9.95 8.27 10.2 12.7 0.4 9.33 11.1 10.6 10.1 8.73 8.62 0 2.1 0 12.8 4.63 6.43 1.7 11.6 10.2 0.71 4.63 11.3 5.15 10.5 9.99 8.2 4.61 11.1 8.15 5.89 11.4 10.6 9.47 8.47 11.1 10.1 10.9 9.29 8.15 8.13 8.7 9.14 10.5 2.27 8.94 9.64 7.42 8.13 0 10.2 6.18 10.6 9.61 10.1 16 9.79 9.44 2.28 7.82 4.09 2.54 9.61 1.96 9.09 9.87 9.74 5.11 10.2 3.89 11.1 11.6 9.69 8.74 10.6 2.28 0.4 6.64 9.82 0.97 6.86 8.15 10.6 7.42 8.92 10.9 0.4 9.68 2.95 0 9.62 12.4 8.28 10.7 9.64 13.9 0.71 10.2 7.65 10.5 8.4 9.81 7.36 8.73 9.51 8.7 3.53 9.75 9.6 11.1 9.55 9.99 8.62 9.96 9.93 11 9.29 8.78 10.8 10.6 1.38 8.42 11 6.95 5.66 8.04 4.43 8.98 11.5 0.97 2.18 5.47 8.41 5 10.8 9.06 10.2 10.9 8.19 10.8 4.59 9.54 10.6 5.48 9.04 3.65 9.9 2.18 6.89 8.8 7.58 0.4 10.9 10 8.26 9.51 15.8 15 14.6 13.8 10.9 10.6 14.5 5.73 14.7 11.7 14.6 14.4 14.1 14.2 14.7 13.2 14.1 11.4 13.9 3.79 13.5 12.1 8.77 13.3 13.3 12.8 13.9 13.8 14 13.4 14.2 14.5 13.7 13.8 11.2 13.9 14.2 12.2 8.39 9.42 14.8 6.85 15.4 15.1 13.7 9.1 8.54 12.2 12.5 14.3 14.7 13 15.9 2.09 0.97 3.45 8.12 9.24 13.9 1.96 2.61 15.4 9.72 10.2 10 10.5 8.86 12.8 14.9 13.8 12.1 14.8 14.6 13.3 14.2 12.3 14 13.5 13.8 8.48 15.5 14.1 13.9 12.9 14.1 14.4 13.7 10.3 10.7 13.7 2.76 13 4.03 8.69 11.5 10.4 11.2 9.75 9.31 1.83 8.83 10.7 10.5 11.1 8.59 11.1 9.69 10.7 6.71 4.77 4.22 3.67 8.96 11.7 5.22 3.32 9.15 0.4 12.1 3.57 7.09 11.4 12.6 0.97 11.3 7.33 8.13 13.8 10.6 10.3 6.45 10.2 6.2 11.5 9.65 9.88 11.5 9.3 9.01 10 9.43 9.93 6.11 10.7 9.86 9.62 11.6 3.84 8.62 6.09 7.29 6.75 6.42 6.31 5.4 13.6 9.3 5.45 5.83 4.7 11.9 7.28 4.96 9.85 8.4 11.2 2.54 4.87 7.02 6.28 4.14 0 6.78 9.6 3.95 9.23 8.39 7.24 6.99 2.61 0 8.45 0.71 2.18 7.27 3.72 4.29 12.1 8.18 12.7 7.74 3.12 10.4 12.4 11.6 11.6 9.78 9.82 2.89 9.47 9.09 10.6 8.92 10.4 9.72 8.97 10.3 9.93 8.43 7.18 9.45 10.1 10.3 9.84 8.02 8.17 11 4.34 3.06 8.59 9.7 10.2 10.5 7.39 7.54 8.51 4.41 9.11 8.46 8.43 8.82 8.04 8.11 6.84 9.97 8.12 8.56 8.87 7.25 10.4 6.86 10.8 5.73 10.9 4.55 8.17 8.61 8.28 8.12 3.12 11.7 6.55 6.97 8.42 8.52 9.17 10.4 9.02 9.55 1.55 12.5 6.79 7.81 7.51 8.18 6.33 7.28 7.5 11.3 10.6 11.1 8.13 1.38 5.75 6.6 6.27 11.6 9.72 7.32 7.42 6.34 5.88 7.12 9.79 9.84 11.5 9.33 8.8 9.92 8.81 8.09 9.84 6.31 9.88 6.85 4.29 9.44 1.7 9.32 6.56 9.86 3.22 9.1 1.7 13.1 10.1 3.27 6.69 7.24 7.12 11.3 8.55 9.71 9.74 6.77 7.09 5.97 5.22 7.18 7.65 4.97 9.75 12.8 0 9.62 7.22 9.84 10.9 12.1 10.4 10 8.76 10.1 9.41 13.6 6.51 10.1 9.39 9.68 10.3 5.18 13.7 9.49 9.12 11.3 2.28 1.38 6 1.38 12.3 0.97 11.5 12.4 5.97 7.99 6.85 9.18 8.73 5.91 9.15 8.95 7.56 10.4 4.38 5.38 5.06 3.32 11.7 2.95 0.4 11.8 10.4 9.26 10.3 11.1 8.46 7.12 11.6 7.62 6.09 10.1 10.4 9.5 9.57 7.91 7.89 7.05 4.9 0.4 3.36 4.65 11.3 9.05 10.1 3.45 9.78 9.2 1.83 1.7 9.27 8.25 9.43 2.54 0.4 9.98 7.58 5.8 8.14 4.19 6.31 7.5 0 0.97 7.86 9.09 2.28 11.5 9.82 1.96 10.2 9.17 6.66 7.71 5.85 5.61 7.24 3.22 7.7 9 9.01 8.15 0 4.97 1.7 8.35 3.22 9.68 9.58 2.28 7.9 8.54 9.37 10.7 9.4 10.5 9.16 8.6 9.84 9.78 10.3 9.4 8.96 8.79 3.85 9.65 0.4 0 3.45 6.31 4.75 5.18 12 4.14 7.39 4.99 9.59 3.36 6.7 9.03 0.71 10.5 1.19 4.01 0 9.63 9.32 7.32 5.61 12.2 5.97 1.19 6.72 3.41 10.1 10.1 7.15 1.19 4.88 1.7 2.07 10.6 2.28 6.45 5.47 4.97 0 2.46 5 6.84 2.07 3.89 7.1 8.55 10.4 1.19 9.57 2.18 0.4 0.4 9.24 1.19 7.08 0.71 12 3.89 10.6 4.8 4.92 10.6 0 2.28 8.05 10.2 9.88 7.14 9.99 0 0 3.32 2.46 11.9 4.63 8.88 7.5 5.54 6.53 9.35 10.3 13.2 5.74 0.97 8.58 10.5 3.22 7.02 9.99 10.1 8.61 10.7 10.5 9.43 9.1 5.03 9.11 10.7 10 7.74 11.3 10 9.48 7.09 9.12 11.4 9.42 8.97 10.9 8.85 9.91 11.5 7.65 8.46 8.84 9.88 11 7.85 10.1 8.63 9.72 8.36 7.48 10.9 7.3 3.06 9.9 10.2 7.72 7.48 9.79 8.97 8.84 4.55 11.2 13.7 10.4 6.38 11.4 10.9 7.4 9.02 8.45 5.52 10.5 8.77 10.4 8.62 7.11 9.33 9.48 7.7 9.98 0.4 11.1 7.79 9.9 5.59 8.77 10.4 9.79 11.6 10.3 8.99 8.35 7.87 8.5 7.72 10 10.2 7.56 3.56 3.89 7.33 9.1 8.16 9.17 6.81 8.21 5.72 8.49 7.23 10.1 1.38 10.6 8.63 7.24 8.8 8.96 4.4 2.69 9.49 6.98 9.59 6.94 7.96 8.83 8.86 9.35 1.7 9.61 8.71 8.81 9.46 9.23 11.3 8.49 9.11 8.7 8.19 10.1 8.9 9.42 9.81 2.46 5.09 12.6 9.17 10.2 8.57 6.59 5.93 2.98 10.3 7.03 8.99 4.82 5.5 11.3 8.03 11.3 8.07 11.2 6.85 10.2 6.02 8.57 3.22 8.21 6.95 8.02 9.24 9.23 10.1 9.3 11 8.97 9.31 3.49 11.1 12.2 8.13 8.5 10.6 4.4 11.5 8.83 12.4 10.5 10.5 3.22 8.89 4.49 3.89 2.07 7.16 11.3 0.71 11 9.84 6.09 6.02 9.53 8.64 9.52 9.82 8.44 9.01 10.5 8.18 8.13 11.3 10.2 10.3 4.38 9.13 2.28 2.28 4.38 0.4 7.93 3.82 5.36 5.56 8.97 1.19 7.44 4.36 8.08 1.19 6.73 9.82 4.59 10.8 6.95 5.18 6.22 2.69 0.4 0 8.69 9.37 9.74 7.1 10.3 2.28 7.33 5.53 8.42 0 9.1 6.13 6.91 2.62 0.97 8.91 2.46 4.88 5 4.65 6.9 0 10.4 13.3 1.55 3.53 1.19 7.96 8.02 4.09 4.75 2.46 3.53 6.55 2.28 6.76 6.29 7.61 2.76 4.14 11.2 4.73 4.61 2.28 1.96 4.12 0.71 4.96 1.96 12 2.37 5.81 10.1 5.35 5.57 8.87 8.92 9.45 0.4 3.82 7.95 10.8 10.4 9.62 9.58 5.82 1.55 4.57 6.87 9.2 2.28 9.91 12.3 9.07 10.6 9.91 11.8 10.4 11.5 2.54 8.54 10.7 10.5 9.43 8.15 9.63 10.3 9.47 9.52 8.17 7.92 6 11.5 7.15 9.95 8.99 9.54 9.42 8.21 9.52 7.65 5.88 6.69 2.69 7.35 10.4 10.8 11.5 10.7 10.6 7.24 9.11 8.61 11 4.26 10.3 9.26 9.62 8.79 8.11 11.4 11.2 11.2 7.9 6.25 3.22 7.62 8.81 9.25 7.35 8.49 6.63 7.37 10.4 10.7 9.83 8.48 10.8 9.78 9.73 9.95 9.16 11.3 10.7 10.1 9.44 9.24 10.6 9.15 8.11 7.67 11.6 10.5 9.64 9.11 0.4 11.5 5.84 11.8 8.05 11.5 9.16 13 9.36 12.1 10.8 10.5 12.5 9.6 4.49 11.2 10.2 5.18 10.2 12.2 9.53 13.6 11.5 8.42 10.8 7.73 10.8 4.55 16.2 9.4 9.29 7.94 3.61 9.11 2.18 11.7 7.71 9.8 8.03 8.45 8.69 12.9 2.18 6.51 13 10.2 9.89 9.67 8.01 0.97 10.6 8.25 12.2 11.4 10.2 9.94 12.7 11.8 9.08 10.3 8.03 10.4 11.6 10.3 10.7 11.7 8.53 10.5 11.1 10 11.3 11.8 12.7 11.9 10.6 11.8 7.19 7.88 1.55 10.6 10.8 12.7 11.2 6.32 13.4 2.07 12.8 11.5 12.6 6.18 10.2 10.9 2.83 0 0.97 1.19 0 1.19 0 2.72 11.7 2.53 0.97 0.4 4.63 13.3 11.6 9.02 10.4 3.17 5.47 10.6 7.82 9.15 9.07 10 7.99 3.12 6.42 9.38 9.85 3.53 4.94 9.21 6.87 9.69 8.82 9.91 9.42 9.84 10 9.35 8.7 8.22 2.18 12.6 6.15 9.35 11.2 11 6.22 11.2 9.07 9.21 7.31 12.2 9.62 8.97 7.79 11.3 11.8 8.08 10.4 9.96 3.61 9.16 4.19 7.77 4.85 11.4 8.25 9.11 0.4 4.66 0 11.2 9.84 6.96 11.5 7.15 10.6 9.71 8.93 7.24 13.2 6.77 10.2 11.3 9.03 10.4 9.29 9.13 8.95 7.35 9.77 6.65 2.83 11.2 13.8 11 9.97 11.7 9.64 8.49 11.1 7.88 4.45 7.61 10.2 8.87 10.3 8.71 11.1 8.03 7.31 5.07 7.91 5.65 7.69 10.4 7.94 9.78 1.19 5.51 6.42 8.88 1.7 0 10.3 6.98 10.8 11.7 11.7 3.92 10.8 9.04 10.2 10.2 8.91 11.4 1.55 11.9 8.46 9.05 10.6 9.81 9.64 7.18 8.56 9.67 7.1 11.8 1.7 0.71 9.49 8.62 9.83 6.15 10.6 10.6 8.91 4.31 11.2 11.4 7.83 9.48 5.43 4.79 9.86 14.3 8.51 8.85 9.94 0 9.02 8.93 0.71 9.25 6.89 9.42 11.2 7.88 9.59 9.13 11.1 10.2 8.88 10.1 10.5 9.58 5.27 12 2.46 7.15 10.2 9.77 10.8 11.3 3.82 10.5 9.95 0.4 11.9 11.2 8.59 10.5 3.17 10.2 0 9.21 13.7 13.3 9.86 10.2 8.77 2.46 9.03 2.83 9.5 10.3 6.21 11.5 10.4 10.6 10.5 10 9.7 12.1 13.7 13.1 5.24 10.4 10.9 9.41 9.65 11.4 3.89 8.4 9.03 11.5 8.73 3.12 13 11.6 7.65 8.65 8.29 9.18 16.3 12.9 8.43 8.76 10.6 9.07 8.37 8.51 10.3 10.6 7.46 10.8 14.4 10.2 8.2 7.2 4.73 0.97 10.2 12.7 10 10.3 8.13 11.2 9.49 2.46 3.75 3.45 9.78 10.2 2.69 12.5 9.87 12.5 11.4 6.49 2.07 10.4 12.5 8.76 10.8 11 10.9 13 6.27 10.2 11.7 9.61 11.1 1.38 12 12.4 10.4 8.99 13.3 13.8 9.25 10.1 12.2 8.54 15.5 1.6 13.1 8.44 10.3 13.6 7.75 8.35 7.73 9.27 8.27 8.21 16.2 2.07 13 11.6 10.3 7.58 2.61 6.8 1.55 1.96 7.55 7.59 13.8 0.97 3.72 2.56 11.3 9.93 10.7 0.71 10.5 2.76 10.1 11.5 8.18 8.63 6.05 7.82 10.1 9.99 10.1 12.9 9.09 7.68 8.74 7.96 7.34 8.16 9.14 6.92 4.17 7.89 8.15 6.72 9.07 6.94 8.93 4.75 5.09 4.57 6.27 6.94 2.07 7.73 6.37 5.91 8.5 7.43 8.9 5.98 9.57 0 5.02 6.49 11.4 6.94 5.72 3.79 6.75 6.16 6.87 1.19 10.3 7.8 6.18 7.7 7.43 3.57 5.17 7.94 6.12 3.95 13.5 4.27 7.05 1.19 5.61 0.97 5.23 3.36 8.42 4.85 9.61 2.89 1.38 9.68 4.63 9.6 7.64 5.76 5.51 7.25 0 1.83 5.1 7.33 7.25 5.89 0.4 5.39 5.11 1.19 7.4 5.4 3.12 0 7.09 11.4 8.8 4.53 9.41 3.22 4.94 10.2 4.4 6.96 0 9 10 3.27 0.4 3.98 8.64 7.58 7.56 2.83 5.39 1.55 8.08 7.66 6.23 9.39 3.79 8.62 4.17 8.35 7.04 7.46 3.01 8.96 2.28 10.1 3.32 13.2 3.32 13 14.8 12.9 0.4 9.37 10.1 10.1 8.43 10.7 12.2 10.2 7.75 9.89 10.2 11.6 10.8 1.55 10.7 11 11.4 9.43 11.4 9.53 10.9 11 11.2 6.72 7.64 0.4 2.07 11.9 4.22 9.69 5.94 9.14 10.2 11.9 11.2 7.86 8.59 9.62 12.8 10 10.4 9.82 6.23 2.54 11 4.45 11.3 10.4 11.4 10.1 10.3 9.89 9.01 9.6 10.6 10.8 2.07 10.5 12 10.2 9.59 10.6 10.4 7.37 9.86 9.53 8.91 12.2 12.5 11.5 10.7 10.7 11 10.5 10.1 7.89 1.38 10 0 12.5 14.5 8.03 4.76 8.21 5.34 5.84 7.12 7.86 8.88 7 2.46 6.49 12.4 11.2 7.23 10.6 12.1 9.95 9.08 7.05 10.5 10.9 11.2 10.5 9.2 7.81 1.55 5.41 10.3 3.65 1.38 10.4 2.69 2.54 4.63 4.19 5.39 2.95 8.88 9.06 4.12 15 5.97 0.97 13.3 5.07 8.07 10.5 6.9 9.8 3.49 12 9.84 6.42 7.45 7.01 8.57 13.3 6.83 10.8 10.6 12.8 11.6 12.8 11.8 11.5 13.7 6 12 12.3 7.17 12.7 8.66 8.86 10.2 7.64 8.11 10.2 7.33 8.9 6.73 12.9 7.94 10.1 8.57 7.87 8.52 7.83 7.42 6.49 7.99 8.02 10.2 9.85 7.82 11.6 7.91 9.63 6.77 9.34 11 10.4 6.98 11.5 10.2 8.11 8.77 8.08 9.73 8.87 6.87 7.8 4.71 5.87 6.23 7.73 8.57 8.63 8.42 8.94 7.15 3.04 10.1 5.95 7.72 7.49 9.77 0 8.78 6.54 7.09 4.59 11.9 6.25 2.83 2.69 2.61 0 2.07 2.76 9.09 9.47 7 8.26 9.16 7.83 8.57 5.98 8.47 8.98 7.01 6.94 9.71 8.79 9.77 7.66 11.6 10.1 10.7 8.54 13.4 7.07 7.85 2.37 12.1 6.95 10.3 8.15 7.81 4.01 6.76 2.69 8.36 7.63 8.72 10.6 1.55 8.93 9.52 9.59 7.96 8.97 9.1 10.7 7.73 8.48 7.56 7.71 11.4 5.72 9.21 9.12 6.98 3.72 12 11.4 7.13 8.33 7.29 8.72 2.69 9.08 8.16 7.71 7.41 7.54 8.69 9.16 3.27 1.55 7.27 7.78 8.17 6.74 12 10.5 11 12.4 10.2 10.9 6.37 11.5 4.21 14 8.79 11.4 6.91 4.68 13.5 11.9 9.96 10.6 9.88 10.7 13 2.28 6.75 2.95 9.19 10.8 7.75 7.83 9.33 8.73 9.49 7.94 10.5 9.31 11.5 12.2 7.54 6.17 9.79 1.96 8.74 8.88 3.12 7.02 7.98 9.73 9.45 5.64 9.2 0.97 6.32 8.71 10.7 5.88 10.4 10.2 8.34 9.25 8.73 8.67 8.41 8.51 10.2 0 9.16 10.9 8.3 6.83 8.25 10.5 8.37 3.06 16.3 10.4 7.95 8.24 8.53 9.72 9 9.55 9.85 6.01 10.1 10.2 5.34 9.9 9.17 9.92 12.3 7.87 9.4 8.29 8.2 8.19 10.4 9.66 10.6 7.29 8.6 7.54 11.5 7.16 7.18 9.75 7.49 8.9 8.89 9.33 9.98 10.3 9.02 8.22 9.24 8.33 7.08 7.27 4.85 9.42 7.46 9.17 9.75 9.71 9.9 10.7 11.3 8.48 6.88 9.51 7.81 11.7 10.9 5.56 9.13 10.9 11.9 7.94 7.84 6.15 6.13 8.06 5.9 5.03 6.75 8.76 7.7 8.82 10.8 7.64 12.8 7.72 6.61 0 4.32 7.78 11.9 9.66 9.67 7.03 6.69 8.49 8.5 7.26 7.91 8.55 8.09 9.33 9.07 9.18 2.54 11.7 12.3 10.3 9.82 10.7 8.38 7.68 8.28 5.24 11.1 0.71 1.55 1.7 9.71 5.88 10.3 11.1 6.22 2.76 3.01 4.63 6.42 0.41 6.22 8.89 2.07 3.49 7.78 10 7.98 8.57 5.09 10.7 8 9.44 3.98 2.46 5.89 2.95 9.87 8.18 7.39 8.82 9.51 11.1 8.42 7.83 8.22 10.4 9.5 8.14 7.38 8.77 10.6 8.69 9.77 9.53 9.49 9.56 8.36 8.19 9.68 11 10.1 6.29 7.83 6.74 6.97 7.8 8.13 8.27 8.57 7.74 8.27 8.94 5.36 9.67 6.85 5.95 9.67 6.27 7.62 7.18 9.86 5.78 9.25 8.6 7.04 8.01 8 8.81 9.38 8.89 8.48 9.44 6.48 10.3 10.2 9.13 7.3 8.64 8.9 8.67 9.14 10.1 6.77 9.46 8.33 10.3 10.7 6.79 7.42 10.4 12 10.2 5.49 8.44 7.81 10.1 8.61 9.51 8.66 5.68 8.21 7.74 10.1 9.75 8.94 7.77 7.62 10.4 9.19 8.78 9.41 10.2 8.4 8.72 5.38 5.84 8.22 10.3 8.25 8.16 9.5 8.51 8.21 10.9 9.33 10.7 8.36 5.81 7.38 8.3 10.1 12.4 10.6 9.75 2.46 7.44 10.2 7.4 8.95 8.75 8.31 7.27 8.41 7.2 7.08 9.85 6.91 9.33 5.25 3.93 9.62 7.89 9.11 7.99 1.19 8.36 8.15 8.71 9.14 8.64 10.1 7.34 7.47 8 6.76 7.91 9.36 9 8.48 8.56 10.1 7.75 7.47 8.87 7.04 8.3 8.07 7.93 8.54 6.17 5.94 10.8 7.37 5.9 10.2 10 9.34 9.67 9.09 9.28 8.2 8.38 7.22 6.6 1.83 8.8 8.4 9.81 9.43 7.38 10.8 10.1 10.6 4.34 8.35 5.91 9.15 10.3 7.86 8.97 6.04 7.62 6.53 5.83 8.82 8.96 8.97 8.71 6.51 10.9 7.55 11 5.56 10.1 10.4 6.34 9.42 8.15 4.88 7.09 6.15 5.5 6.95 7.82 6.17 8.83 0 8.03 2.46 0.71 3.49 7.28 1.55 8.46 3.82 7.69 8.16 6.88 2.46 6.77 9.69 8.66 11.1 5.58 8.6 10 6.72 8.04 11.8 9.4 9.5 6.16 8.29 10.6 8.47 9.52 9.31 8.52 8.77 10.7 8.7 7.99 10.7 10 9.5 6.28 7.74 7.92 7.33 7.73 13.8 8.92 9.99 5.91 6.66 0 9.56 8.19 7.75 6.45 4.75 7.87 10.7 6.09 1.83 7.34 8.32 5.73 6.17 7.98 6.51 2.46 11.3 1.55 9.03 3.32 7.22 11.3 11.4 6.49 7.92 8.28 4 9.53 7.9 11.2 9.55 2.89 11.8 5.3 7.05 7.44 9.97 9.47 7.09 8.58 8.26 8.28 7.76 11.5 5.72 8.73 10.8 8.5 8.67 8.64 6.31 7.85 10.4 7.69 8.9 9.61 2.95 7.72 3.89 13 4.75 9.67 9.03 9.57 9.88 8.94 7.84 6.15 8.77 9.55 11 8.66 9.13 9.47 9.59 7.89 9.96 9.53 8.84 9.63 9.47 8.95 8.01 9.15 1.96 1.19 6.02 4.59 8.68 6.4 9.32 3.85 6.83 4.72 0.97 8.8 9.89 12.4 6.53 8.13 8.47 2.18 3.98 0.97 9.87 9 7.39 7.28 6.59 8.92 9.54 9.55 8.62 9.56 7.51 9.63 9.56 9.24 7.39 7.88 8.04 9.8 7.43 10.5 2.95 8.25 7.13 9.57 8.87 6.2 9.62 8.4 5.93 8.78 6.68 9.53 8.33 10.3 8.83 10.5 9.69 8.91 9.01 0.71 10.6 10.9 8.46 8.79 11.4 9.43 10.9 9.4 9.84 9.11 9.71 6.9 11.6 8.99 9.74 9.52 11.9 8.53 8.79 10.1 10.2 4.84 11.9 9.63 6.21 7.76 7.9 9.2 10.1 8.4 5.14 8.94 8 7.91 11.2 9.27 9.09 9.79 9.13 6.72 10.4 9.69 5.41 8.89 12 9.94 12.9 8.16 9.01 9.45 4.14 9.74 12.2 10 8.48 6.66 8.05 9.84 10.4 6.91 6.71 8.8 8.9 6.78 7.65 8.82 4.31 2.69 2.69 10.4 7.87 4.61 11.8 7.85 3.06 7.91 6.96 11.3 7.26 8.63 9.93 9.88 2.76 10.9 7.3 11.1 11.8 6.4 11.7 7.95 13.2 9.08 4.79 10.2 10.5 6.2 9.44 2.95 6.22 8.99 8.25 7.34 10.7 8.31 11.8 6.74 11.4 4.88 5.59 4.99 8.14 7.92 7.42 8.34 5.97 5.87 4.57 7.84 9.03 11.7 7.98 6.86 9.02 7.69 7.77 6.67 10.1 6.77 10.7 12.6 9.82 11.3 10.3 11.8 8.15 10.8 10.3 8.32 8.05 7.19 11.3 11.3 11.5 8.76 9.72 3.17 11.6 10 9.75 11.6 9.73 9.26 5.12 5.71 6.3 3.32 11.3 8.42 8.57 7.39 3.22 2.83 11.1 13.2 8.23 3.01 3.12 7.38 4.59 10.3 8.75 9.76 10.6 10.4 13.3 4.93 7.01 3.95 6.18 6.23 11.3 12 9.56 6.67 4.9 8.15 10 10.2 8.99 2.37 7.14 2.76 2.37 11.1 6.13 8.65 9.64 7.8 13.1 10 5.87 7.72 9.83 8.62 10 7.26 9.63 10.3 10.1 8.03 8.81 8.56 9.8 11.7 9.36 10.6 12.4 0.4 8.28 6.61 9.34 9.35 10.7 8.09 9.21 5.47 10.4 6.5 7.11 11.1 10.1 11.4 10.6 9.36 10.7 9.94 8.05 10.3 10 7.18 2.46 9.82 9.71 11.4 7.21 6.25 9.2 6.22 9.29 9.9 4.27 10.6 11.7 10.5 11.9 11.8 9.99 6.64 0.4 11.4 7.6 9.61 6.15 1.38 10.3 8.63 3.41 7.35 8.08 8.85 4.84 6.81 2.69 9.2 7.96 10.4 8.55 10.6 9.44 10 7.01 9.42 4.09 10.3 8.41 10.2 9.37 7.62 9.23 10.3 11.9 9.5 8.69 9.57 10.5 8.31 9.11 0.43 8.58 10.1 8.09 9.14 8.61 7.91 9.36 2.07 7.14 7.36 9.19 9.72 2.07 10.7 12.6 8.19 10.5 13.8 8.68 9.71 5.1 11.3 8.27 2.89 8.31 7.95 9.06 8.96 11.8 7.9 10.7 12.1 12.2 10.1 11.3 11.5 5.75 12.5 9.35 6.79 10 7.96 8.97 9.39 0.71 7.16 1.83 12 11.7 9.21 5.19 9.62 0.71 11.5 10.8 11.9 9.54 6.75 12.3 9.55 9.25 8.56 10.4 9.55 8.13 6.89 12.1 6 10.6 10.1 9.03 10.8 8.96 2.54 0 9.7 1.55 0.4 0 9.16 1.38 6.85 2.95 3.17 5.94 9.18 0 3.06 2.89 4.31 0 0.71 9.97 1.83 9.64 11 10.1 7.93 8.03 0.71 4.06 6.88 9.26 8.74 0 7.54 6.97 6.67 9.3 9.51 3.68 5.73 6.86 8.02 8.73 2.07 8.23 10.7 11 8.67 10.4 0 2.28 0 4.45 4.91 0.4 7.42 8.55 9.86 9.52 5.5 9.46 9.19 0 9.22 0 0.4 0.97 0 8.66 7.11 3.27 8.72 8.79 7.02 7.88 9.47 0 9.52 9.51 11.2 10 7.98 0 3.98 8.76 10.8 9.58 1.38 8.5 10.5 7.94 8.32 6.55 5.06 0.71 5.41 10.3 0 10.6 11.3 8.8 0.97 9.57 9.73 9.51 5.73 9.11 9.22 0.71 4.29 9.21 9.84 7.87 10.3 7.94 8.24 7.05 8.57 11.1 9.89 6.04 2.83 1.38 8.96 2.89 6.22 10.5 10.5 9.61 7.29 9.81 10.7 2.61 6.68 8.42 10.2 9.75 8.3 0 7.33 5.44 8.75 4.8 0.85 8.2 6.83 10.2 7.22 8.01 7.91 9.2 10.2 11 9.01 3.22 5.18 9.69 5.53 4.57 0 5.53 0.97 4.91 2.07 2.54 1.7 2.07 7.78 10.9 9.37 5.11 9 10.2 8.18 7.84 8.64 4.57 11.6 10.7 8.95 8.84 6.83 6.14 0 6.82 2.18 5.46 11.1 7.69 7.18 4.61 9.6 10.9 9.59 9.6 9.59 3.68 8.26 7.25 0.4 9.61 9.82 9.48 7.85 9.39 9.21 8.28 13.7 10.3 3.32 9.77 5.25 7.83 9.69 8.49 8.15 11.2 8.33 1.38 9.24 9.57 9.55 7.84 6.33 13.5 3.12 5.85 0 3.17 5.97 7.69 9.46 10.4 7.62 9.26 7.3 7.58 9.01 9.76 0.4 9.34 6.75 4.09 7.56 8.64 4.19 7.34 10.1 9.84 8.49 7.8 10.8 8.28 8.72 9.1 8.43 8.68 8.57 7.05 6.6 9.26 8.34 10.4 8.88 10.3 8.87 8.92 11.6 8.45 11.7 8.95 9.95 9.41 8.09 12.8 10.4 6.87 9.95 8.5 5.83 7.4 7.88 11.3 8.21 9.19 11.2 10.3 9.47 2.07 7.41 9.09 10.3 10.6 5.89 8.59 5.94 7.39 3.75 6.59 5.61 8.44 6.97 7.68 4.87 8.15 7.83 6.24 6.15 1.96 9.08 11 10.6 8.04 9.01 6.17 8.2 9.35 9.3 8.15 11.1 10.9 4.66 10.1 7.74 6.87 7.7 7.55 9.59 8.91 1.55 8.57 8.37 8.04 8.45 10.4 6.13 8.87 9.28 9.24 8.7 8.56 9.47 8.64 11.2 9.32 10 8.95 7.04 7.75 8.25 5.19 7.65 11.1 9.34 7.19 9.05 9.09 9.1 9.07 8.19 9.25 8 8.65 0.4 7.01 10.5 9.3 8.55 7.36 9.29 8.61 7.65 8.78 7.92 6.39 6.49 8.2 8.86 7.31 8.73 8.96 0.71 8.89 9.82 7.22 9.55 7.59 6.96 8.37 9.74 7.76 8.72 8.94 8.99 9.5 8.97 5.73 8.93 6.63 7.59 7.61 4.96 10.2 8.92 10 9.08 9.55 9.17 9.72 8.68 9.47 3.17 9.25 10.9 10.1 4.51 10.4 6.89 9.28 2.28 9.98 9.01 9.14 8.86 10.5 6.62 9.18 8.35 5.92 8.89 8.72 9.85 9.3 10.3 6.52 10.5 6.64 8.01 10.1 10.2 7.02 7.67 7.65 8.33 9.2 8.55 8.72 7.93 1.83 6.59 4.73 4.83 9.43 10.2 11.3 5.81 4.73 7.27 10.6 9 8.89 8.2 10.4 5.17 6.47 4.7 11.1 7.86 9.22 7.9 7.94 8.67 6.97 9.76 9.43 6.18 10.6 4.97 8.03 10 6.43 9.04 8.86 11.5 8.75 7.67 7.85 3.92 9.61 8.8 9.11 0 8.45 9.4 6.07 9.77 7.82 9.61 7.94 8.01 2.37 10 7.7 9.7 3.32 11.5 10.3 9.67 5.14 4.17 7.31 9.94 10.5 5.86 7.11 8.64 11.1 3.41 1.55 4.29 1.7 9.45 8.64 9.54 11.4 11.6 8.08 7.82 0.71 9.48 7.52 0 6.89 8.09 9.75 1.7 8.07 7.14 6.03 5.07 5.77 0 10.7 11.2 5.02 4.43 8.23 8.5 6.95 8.87 3.85 9.36 10 7.2 6.8 12.8 6.25 11.7 7.75 5.59 1.19 3.61 9.94 9.15 7.63 8.39 7.94 11.3 7.65 6.99 7.86 6.03 5.39 8.14 7.62 8.03 11.4 7.05 9.08 5.05 7.01 10.1 9.57 6.25 7.19 4.22 5.05 8.11 9.91 8.92 7.14 5.73 3.22 6.65 8.52 9.34 6.16 7.83 10 4.12 8.66 11.2 6.5 7.07 9.03 10.6 5.99 8.88 0.4 4.09 8.83 3.98 7.35 6.72 7.31 9 8.55 9.15 7.42 10.5 7.87 9.37 7.19 6.63 4.43 7.93 8.42 9.53 8.21 8.49 8.01 9.2 7.9 8.9 11.3 9.72 9.4 0.4 8.72 10.6 7.09 8.17 10.2 9.37 10.7 8.51 12.2 5.82 9.78 9.46 6.43 7.27 9.4 7.86 9.94 10.8 5.75 8.73 6.28 10.4 6.5 9.44 9.87 11.2 6.16 7.32 8.55 9.76 7.9 8.57 10.1 9.69 2.95 9.32 8.8 9.15 7.85 8.79 8.81 8.54 7.93 10.1 4.87 6.07 8.53 1.38 8.62 8.9 8.61 6.68 10.1 10.2 10.9 9.99 6.76 8.16 8.87 6.88 8.81 7.02 10.6 3.95 7.39 9.77 6.07 8.12 4.14 5.59 4.43 7.98 9.7 9.27 8.45 4.55 9.93 6.63 1.7 6.46 3.36 10 8.64 9.03 3.25 2.28 10.3 10.7 9.73 6.2 10.5 4.99 7.64 8.23 0.4 8.53 8.59 9.24 9.54 7.72 9.75 11.6 9.95 8.37 6.46 9.63 7.6 12.4 8.52 9.01 7.12 11.5 10.7 9.57 6.45 0.71 7.57 8.49 6.57 7.86 10.4 12.1 10.4 3.12 11 0 7.95 9.24 7.77 9.45 6.79 0.4 6.36 0 7.24 6.13 11.3 9.58 8.97 2.66 9.08 7.67 1.83 9.67 7.07 8.82 6.11 9.51 9.34 7.57 8.42 8.93 8.94 9.69 0.71 9.57 7.59 5.13 9.45 9.63 11.8 11.6 7 9.72 9.93 10.4 6.65 8.02 6.21 0.97 6.49 9.98 2.89 10.8 11.2 9.78 8.53 6.95 10.1 10 4.91 9.41 8.56 11.4 9.71 9.22 9.14 6.3 11.8 10.5 10.4 9.46 10.5 9.29 10.8 8.76 7.35 9.26 10.7 3.41 3.61 10.3 7.56 5.61 3.53 9.52 4.97 3.65 3.89 9.03 3.84 4.17 13 9.13 8.41 7.96 1.7 8.47 8.68 11.2 10.7 9.62 5.2 10.6 10.4 10.7 8.49 8.83 11.1 11 9.23 10.6 10.2 9.86 9.22 6.2 7.34 9.74 8.68 9.97 8.69 4.36 0.71 10.1 10.1 9.67 6.96 9.97 3.06 7.93 12.8 10.1 10.2 11.2 12.4 10.9 7.1 2.28 10.3 7.51 9.09 7.93 9.41 10.9 8.46 6.46 6.15 8.49 4.53 7.23 8.91 9.57 8.92 8.4 7.22 9.63 8.46 5.43 10.6 6.24 8.67 7.39 7.74 11.1 10 9.79 10.6 5.84 9.58 11.1 10.9 8.92 9.86 12.6 11.8 7.96 12.5 11.9 11.3 12.7 11.8 10.6 10.3 4.19 11.4 10.3 8.82 10.1 5.76 7.8 10.4 9.31 8.27 12.2 10.6 3.01 8.08 10.2 9.08 8.95 9.73 4.49 12.8 1.2 8.53 10.5 9.72 6.78 8.95 3.45 4.03 11.8 8.67 8.62 7.59 9.39 5.51 11.7 11.1 10.6 9.49 11.4 10.4 8.51 9.02 8.45 11.2 9.56 10.1 8.95 10.9 6.13 10.1 6.81 8.54 2.18 9.62 9 11.8 1.96 5.9 4.14 0.97 8.19 11.9 11.1 14.3 9.67 11.5 13.1 9.64 11.9 8.72 5.48 8.86 10.5 9.03 11.4 9.75 5.32 10.3 5.05 10.3 6.74 0.97 4.26 5.82 8.96 6.44 5.99 5.6 9.93 7.46 7.52 9.99 0.97 8.27 10.3 10.3 9.04 11.5 9.7 3.41 5.56 3.65 0 9.89 8.78 5.35 10.6 10.8 3.72 9.26 7.65 3.95 10.3 0.71 9.69 4.57 13.7 9.91 11.9 6.56 9.23 6.84 10.4 7.96 9.14 7.73 9.72 7.05 6.18 9 10 11.3 4.7 8.56 10.2 8.38 5.16 12.3 8.27 6.82 9.8 6.99 2.46 9.16 0.97 8.49 10.9 5.31 10.1 10.6 8.68 7.5 11.2 9.7 9.79 10.1 9.36 3.92 4.9 8.6 12.6 11.6 11 10 9.32 9.45 11.1 11 11.7 11 9.55 9.61 8.86 9.03 10.1 10.3 11.6 9.82 10.7 9.75 11.1 0.4 8.37 2.76 10.9 8.8 9.74 9.78 5.45 2.37 9.73 9.29 3.49 8.83 10.4 5.66 9.62 9.12 9.44 9.99 11 11.3 6.49 6.67 2.92 10.1 10 10.1 9.26 9.4 7.24 6.75 10.1 10.1 8.16 6.53 11.3 10.1 10.9 0 1.55 3.79 11 1.55 3.61 9.46 9.03 11 6.89 2.69 9.67 8.54 7.35 8.47 10.6 11.5 5.3 5.62 6 5.18 3.22 5.11 8.67 9.91 7.85 7.56 9.87 8.58 7.2 0.4 8.82 7.69 8.75 0 4.33 8.06 2.09 2.28 6.96 2.47 8.84 10.6 7.7 8.58 10.4 10.6 11.2 8.9 0 9.47 9.6 9.61 6.7 8.87 7.84 7.73 8.97 9.19 7.13 5.17 10 10.3 11 11.3 6.53 6.87 5.58 8.97 7.4 12.5 10.2 2.18 9.27 8.91 8.97 0 9.62 8.85 8.15 6.79 7.21 7.25 6.41 12.4 10.1 8.9 8.93 8.54 8.16 10.1 5.24 1.38 6.42 10.2 8.19 1.38 4.01 5.94 8.42 9.55 8.9 2.69 6.81 3.61 4.38 6.82 9.39 11.5 7.98 8.32 9.58 10.3 8 1.96 6.34 9.36 9.79 5.55 2.28 4.8 9.5 9.6 11.3 8.4 8.74 6.96 10 7.18 8.48 9.35 9.28 7.99 11.5 8.82 8.11 5.79 9.88 11 10.4 9 13.1 8.85 6.22 5.35 4.34 8.34 4.66 10.3 9.25 9.94 8.07 6.28 8.2 5.65 12.1 8.77 7.34 3.92 7.79 10 8.47 9.85 9.25 9.65 8.11 9.41 8.2 7.6 0 6.12 8.52 7.87 8.82 11.1 8.75 9.41 7.98 9 7.3 7.98 9.96 8.17 11.1 3.61 6.19 9.19 6.58 10.7 7.65 10.2 8.77 4 7.65 0 2.07 6.41 10.9 9 8.86 12.1 2.07 9.68 8.82 8.26 5.7 9.93 9.05 5.18 11.8 9.34 9.31 9.41 8.28 7.51 2.95 9.77 9.09 9.94 8.95 8.42 6.43 9.62 9.68 9.46 7.18 10.3 6.46 8.8 6.81 7.73 9.33 10.5 10.4 10.8 10.5 9.82 6.04 10.2 5.29 9.41 8.31 8.48 9.45 5.86 6.38 11.3 9.17 9.21 10.1 6.53 9.82 6.92 9.37 10.2 8.49 8.96 8.8 8.89 0.97 0.97 5.06 9.3 7.33 8.43 3.92 7.26 11 7.87 9.55 11.1 0.4 10.1 10.2 7.81 10.1 9.89 8.61 5.58 8.93 10.3 10.2 9.07 7.51 7.52 3.32 8.39 7.08 11.4 9.58 0 5.62 7.83 8.62 10.4 8.39 10.1 10.1 7.49 8.29 8.99 11 10.1 9.04 9.34 6.83 4.34 6.87 11.4 6.47 10.4 8.62 1.55 9.72 10.4 6.15 9.98 6.26 9.43 6.71 8.39 5.64 7.25 6.91 9 8.74 7.67 7.82 10.1 9.22 7.66 9.06 8.43 8.15 9.4 4.94 10.8 4.61 7.84 1.38 7.61 10.4 8.65 8.3 3.12 11.7 8.66 10.9 13.8 7.94 9.58 11.8 8.58 6.2 6.07 8.37 2.76 4.29 3.95 5.46 10.9 10.9 6.85 6.51 7.62 3.61 11.2 9.98 9.19 10.2 9.06 10.9 8.17 2.18 11.7 2.83 9.05 9.22 11.4 9.69 9.2 8.58 7.96 8.82 9.47 8.5 11.1 10.5 7.62 6.66 9.8 0.97 5.5 7.2 9.51 0 9.36 3.36 8.92 9.26 7.03 7.77 6.35 8.93 10.1 4.17 7.48 8.98 7.7 9.86 11.3 10 9.12 8.19 8.78 11.9 9.99 5.86 7.19 8.83 9.6 7.96 6.32 8.64 11.1 9.21 11.8 10.3 9.77 5.19 10.1 8.72 11.6 10.2 10.7 4.7 7.6 11.4 4.87 9.9 2.76 8.71 9.24 8.22 8.3 5.67 3.12 7.21 7.3 5.72 9.75 5.34 6.59 7.06 10.6 6.53 9.34 11.8 10.5 8.11 8.67 5.06 8.44 8.29 8.12 8.84 7.94 11 3.45 9.15 9.65 9.06 6.13 10.4 9.91 2.28 6.8 8.79 5.76 2.69 11.3 7.06 1.55 9.81 8.72 8.92 7.74 8.35 6.9 10.1 7.02 9.58 7.8 9.72 7.97 4.19 7.68 9.73 6.63 9.99 9.23 12 9.08 10.1 9.04 10.5 6.64 10.5 9.41 9.72 8.68 9.96 3.85 9.55 10.2 9.55 8.03 9.18 7.03 9.35 11.9 9.61 8.69 6.95 9.18 12.8 7.92 3.79 10.5 8.48 2.37 9 10.2 8.92 11.1 9.62 4.03 9.39 10.3 6.94 7.71 8.07 7.4 11.5 10.2 5.89 5.28 8.31 8.39 9.16 0 5.98 2.37 5.72 6.41 10.1 7.63 6.51 4.47 5.63 7.15 6.22 7.53 2.69 8.98 10.5 9.77 7.31 11.7 7.82 5.36 9.13 11.1 9.18 9.96 7.73 12.2 10.8 8.93 9.48 5.97 9.69 9.17 8.79 9.88 10.2 7.65 9.47 6.01 8.84 6.81 4.14 11.2 9.24 8.38 10.7 8.71 9.63 11.1 10.9 1.36 10.4 9.07 10.3 7.39 2.18 10.5 13.2 0 9.81 7.4 10.3 9.16 11.2 1.55 7.82 0 10.1 7.58 5.66 7.16 10.3 9.89 8.17 0.4 12.5 8.65 10.2 9.45 4.93 8.03 8.98 6.24 5.81 1.56 9.49 10.3 8.96 11 6.68 11.4 9.72 10 8.39 11.8 10.5 5.67 7.27 10.3 3.36 9.68 4.39 7.2 0.4 7.11 0 10.8 8.89 10.6 3.45 8.34 9.17 10.5 0 5.97 5.17 7.36 9.24 6.44 8.4 10.1 7.41 7.41 7.7 6.2 8.21 11.5 4.49 10 3.32 7.67 8.26 10.5 6.11 10.3 9.28 0.97 8.19 8.83 3.61 9.83 8.98 9.92 9.31 9.49 12 9.39 7.65 9.29 9.57 10.1 2.28 10.9 10.9 2.69 11.2 8.85 7.03 7.61 10 9.04 11.8 7.59 7.85 11.1 9.33 2.07 5.1 8.1 4.01 6.64 0.4 10.6 6.14 9.58 7.99 7.89 7.89 11.2 13.1 9.93 2.37 11.3 5.71 7.14 9.75 9.79 10.3 8.57 9.61 8.09 11.8 2.83 10.6 8.45 7.27 8.73 10.7 5.31 10.3 10.8 10.2 7.49 7.72 9.6 9.73 2.54 9.08 8.37 8.91 3.01 6.57 7.72 7.58 5.52 7.83 8.79 10.2 11.3 8.98 7.13 11.2 9.5 1.83 9.02 12.8 12 6.84 9.66 6.16 9.64 8.37 10.4 10.4 9.05 4.06 1.38 12.2 12 7.07 7.8 4.06 11.5 7.85 10.8 10.5 10.6 9.55 9.84 12.3 10.6 11.1 8.49 10.3 6.96 8.81 8.9 7.93 8.25 12 11.3 8.09 8.36 9.71 5.47 10.7 7.71 11.8 10.2 11 10.1 8.59 9.04 10.5 11.8 9.82 9.33 10.5 6.84 8.99 11.5 9.86 10.4 8.45 9.69 8.63 10.2 9.25 9.56 9.5 11.8 7.91 10.3 11.1 7.46 9.25 12 9.12 7.14 8.65 11.7 10.8 6.02 10.5 11.2 8.42 2.37 13.7 8.61 11.6 8.98 10.3 7.48 9.87 11.5 7.16 11 12.1 10.2 6.41 9.71 10.6 8.32 12.7 5.29 7.45 3.95 9.17 5.9 9.95 11.4 9.2 8.31 9.56 9.8 6.75 9.85 10.4 6.83 12 11.5 11.3 10.2 10.9 9.79 10.6 8.2 7.6 8.63 7.29 11 10.1 9.48 10.2 10.2 8.64 9 11.3 13.5 11.9 8.15 10.2 11.5 8.68 9.83 7.53 11.7 12.9 9.55 5.11 11.9 9.9 11.7 9.28 9.18 9.84 10.4 9.6 10.9 8.62 10.9 10.2 9.36 10.5 11.7 12.1 9.38 12 7.56 11.2 9.54 10.1 9.03 10.9 8.34 10.8 11.8 3.12 6.31 1.83 8.35 9.93 9.88 11.7 8.99 1.38 9.14 2.76 11.1 5.09 10.3 9.87 9.53 7.91 10.6 3.45 6.83 6.76 14.9 5.62 8.12 10.3 10.9 9.4 9.86 10.7 6.2 9.85 9.9 9.33 10.4 7.14 8.94 12 8.58 10 9.68 5.97 13.1 9.99 11.7 6.58 10.8 9.19 11.2 9.5 13.1 7.96 6.4 8.12 8.26 7.88 10.3 8.89 9.36 6.25 12.2 7.52 8.6 10.5 11.8 10.4 8.43 12 9.24 9.64 9.99 12.2 11 10.9 11.1 11.1 10.8 5.38 11.3 9.71 13.1 7.74 10.9 9.64 9.27 8.52 10.3 8.78 10.2 10.5 10.8 11.6 10.9 5.49 10.3 11.2 7.14 10.3 12.7 12.9 11 8.97 10.5 1.7 11.2 9.8 10.5 12.1 9.23 10.4 8.93 10.2 9.77 9.26 10.4 10.9 10.5 8.88 8.87 10.7 7.71 10.9 6.58 9.23 10.8 9.38 3.53 7.89 3.27 8.76 7.85 9.79 9.36 5.35 9.16 9.34 9.59 8.63 10 10.3 8.83 9.65 8.85 10.3 9.38 9.24 8.68 0.4 11.3 9.49 10.3 8.58 9.88 10.4 7.89 9.75 7.92 11.7 11.1 10.6 12.2 10 10.6 9.75 10.9 10.5 12.1 11 10.7 10.2 8.22 10.2 10.7 11.2 8.13 9.72 9.25 11.4 9.71 11.7 6.88 9.61 8.83 9.72 9.75 10.6 12.1 6.56 7.4 7.63 8.45 11.6 10.6 9.06 10 9.29 8.62 11.7 9.53 8.8 8.59 5.83 7.69 9.86 6.98 10.3 11 11 12.2 7.33 11.7 10.9 9.94 9.33 9.34 11.1 11.2 7.97 10.8 5.34 10.8 9.44 5.85 11.4 10.4 9.11 8.09 11.2 9.35 4.09 6.41 8.05 10.4 8.52 8.44 12.4 9.97 6.48 10.3 4.36 4.51 5.53 6.7 9.95 10.6 9.6 11.1 9.65 3.22 4.87 12 11 11.1 8.71 3.07 10.8 7.84 10.9 7.85 9.65 12.6 11.3 8.6 5.4 8.36 11.9 9.58 10.6 11.7 9.7 11.6 3.27 11.6 9.65 8.29
+TCGA-A3-3362-01 5.04 6.52 10.9 10.3 6.32 7.96 1.24 5.33 5.8 4.12 6.59 9.37 5.68 1.9 6.29 8.15 10.2 10.6 11.4 9.1 9.99 6.74 9.19 4.36 9.82 8.9 3.08 9.1 4.36 8.41 4.51 5.39 5.3 7.73 3.52 1.52 0 5.3 1.9 5.39 6.09 2.79 6.06 1.71 6.22 4.68 1.9 5.12 10.8 8.11 3.2 6.1 8.54 12.6 5.34 1.24 6.37 3.63 6.31 4.68 8.47 6.39 7.6 7.17 2.97 4.19 7.04 8.59 11.3 5.74 5.1 7.73 0.54 2.79 0.93 4.04 6.34 5.06 5.34 2.47 7.09 2.47 2.05 6.78 6.02 4.43 4.94 6.27 2.59 4.43 8.72 6.94 7.68 5.97 6.11 3.05 2.07 9.18 4.76 0 3.78 6.12 6.65 6.55 2.88 4.87 8.51 7.78 7.04 6.71 2.22 0.54 8.26 4.73 6.65 1.71 2.91 4.12 2.69 4.51 6.26 4.03 1.71 4.04 0.54 6.91 4.39 3.05 3.34 15.5 2.28 3.4 3.52 6.59 2.79 2.69 3.27 2.35 2.1 8.01 8.01 10.5 0.54 1.9 5.6 11.3 0.93 10.4 4.04 3.05 4.85 5.33 5.19 9.56 10.4 2.22 3.63 3.3 11.3 5.42 7.25 8.14 1.5 7.57 10.2 7.04 5.61 4.94 5.23 4.23 9.9 9.63 4.08 4.54 5.28 3.78 5.81 5.45 8.31 4.9 5.58 8.51 5.1 5.98 3.67 2.37 6.34 0.54 8.73 5.81 8.77 11.8 4.51 6.51 5.54 7.04 4.7 7.43 8.49 8.36 11.6 10.6 8.42 10.1 10 7.07 6.85 9.51 10.2 9.45 10.6 8.4 10.9 10.3 9.44 9.41 10.6 10.3 9.74 10 9.5 8.85 11.3 10.1 8.91 8.68 0.93 9.44 8.63 12.5 9.47 4.6 8.6 10.3 8.53 10.5 9.84 10 10.2 3.2 9.64 5.65 11.5 11.1 11.4 10.7 11.7 12.3 6.3 11.9 6.96 0.93 6.61 9.2 9.08 11.1 9.73 12.3 7.3 11.8 8.45 11.1 6.92 10.1 10.4 10.5 11.2 10.7 11.2 9.52 8.16 8.9 8.92 9.25 11.9 9.92 0.93 12.7 11.3 11.9 12.1 10.8 10.5 8.36 9.48 10.2 10.4 11.2 11.1 10.4 5.86 5.26 10.9 5.8 10.7 10.2 7.22 11.9 9.16 8.98 12.7 11.8 12.2 9.89 11.2 12.3 1.5 10 7.75 8.09 12.4 8.71 3.68 7.97 6.93 11.1 10.3 9.11 9.1 7.87 10.3 10.7 9.15 11 9.92 8.79 10.3 9.05 9.9 10.2 8.99 7.84 10.7 7.52 9.01 10.8 7.69 7.24 6.83 11.2 10.3 10.9 10.1 11.8 8.72 13.8 9.42 8.97 11.9 9.4 9.65 1.51 10.7 5.73 5 8.65 8.51 8.98 4.23 6.59 6.72 9.77 10.1 9.91 8.82 7.09 11.9 4.26 8.79 8.12 7.96 10.9 9.7 11.5 11 7.49 8.49 11.5 3.27 9.16 8.34 8.7 11 8.21 9.85 10.5 6.46 11.2 9.66 9.7 3.73 10.6 12 9.67 6.62 9.93 10.4 5.93 10.2 5.39 10.6 10.7 10.7 9.97 11.3 10.6 9.92 11.3 10.2 6.87 6.8 9.12 9.44 8.57 8.43 11.6 9.16 9.06 7.51 7.91 9.28 6.19 5.68 11.5 4 10.7 11 10.2 2.36 9.71 11.3 12.7 8.37 8.22 7.37 6.47 8.88 8.34 8.99 10.8 9.71 11.6 10.8 6.97 13.3 9.64 6.92 8.07 0.93 9.56 3.84 7.99 7.57 11.7 8.45 8.3 5.47 10.3 3.27 4.68 10.3 10.3 10.8 4.16 10.9 7.52 5 6.03 8.49 8.53 6.47 5.12 6.87 3.96 10.2 9.82 9.58 10.8 11 5.02 13.4 10.3 4.87 9.14 6.56 7.38 12 9.8 8.83 5.34 4.91 9.44 9.49 6.77 12.6 8.28 6.81 11.2 9.67 16 12.2 15.1 10 9.2 7.93 9.36 7.11 6.42 10.8 9.24 1.24 7.21 4.96 12.9 9.8 10.8 11.3 9.83 12.2 10.7 6.32 10.7 9.32 11.1 11.3 10 8.97 10.5 10.5 7.91 10 9.71 9.78 7.92 8.6 10.8 7.69 5.8 9.74 10.5 10.6 9.76 7.29 10 13.5 0 9.54 10.6 9.43 9.43 10.8 10.6 10.7 9.82 7.68 7.95 9.1 6.12 10.9 8.36 7.39 9.49 10.1 4.91 8.96 1.71 8.58 9.24 10.7 10.2 10.4 11.2 10.3 8.75 8.97 11.4 10.9 10.8 10.6 1.5 12.7 10.2 10.7 10.7 12 11.7 12.8 11.1 7.79 11 9.5 9.39 2.35 7.53 7.93 9.29 7.68 10.3 10 8.79 8.04 10.1 9.2 11.1 0.93 6.13 10.5 11.5 7.93 13.4 9.29 9.87 10.3 11.7 10.7 11.8 10.3 10.1 1.5 10.7 9.15 8.39 7.73 7.39 10.9 4.46 9.56 9.45 11.3 11.4 11.2 8.14 10.9 11.1 11.9 2.97 11.3 9.17 11.5 9.3 8.55 7.78 10.5 9.11 4.7 7.35 9.69 5.64 2.97 10.6 10.6 4.98 10.1 10.4 10.2 0.93 9.67 9.95 12 11.8 11.2 11.7 6.11 9.95 4.23 10.8 11.3 9.75 0.93 9.07 9.68 9.61 10.9 9.96 8.7 12.7 0.54 7.03 10.3 8.21 9.83 9.26 5.31 9.87 11 9.76 11.2 8.47 7.41 11.4 7.78 9.98 10.2 10.1 10.7 9.47 13.4 5.31 6.84 7.97 4.51 9.11 13.3 8.46 12.3 14.7 7.76 7.45 10.4 11.1 3.4 9.13 5.26 9.6 2.35 6.92 10.6 8.19 3.63 6 10.6 4.75 9.21 10.3 12.2 10.2 8.52 11.8 10.8 8.98 5.1 1.5 6.04 10.5 4.82 8.29 8.08 8.79 11.4 9.49 11.1 6.57 1.9 5.71 9.76 9.36 8.97 0 10.8 10.2 7.17 1.71 4.19 11.7 10.2 4.6 8.53 7.63 7.89 9.13 9.24 8.7 1.63 8.4 13.2 4.04 12 12.3 10.9 11 12.4 10.2 11.6 7.83 5.53 4.14 11.2 2.59 2.88 1.71 3.63 9.93 9.02 9.72 0 8.14 9.15 5.06 4.63 11.7 11.8 8.84 7.51 10 9.85 0 10 11.8 10.4 11.3 9.85 11.8 11.2 11 10 7.94 9.08 11.9 9.45 7.83 9.38 9.45 11 6.89 12.1 10.4 9.55 5.39 5.7 8.49 8.23 5.93 7.71 5.87 12.4 10.1 0.54 0.93 8.72 9.07 10.1 8.83 7.22 7.77 8.55 0 6.35 6.96 9.02 6.49 8.6 9.07 8.81 2.07 12.1 9.49 10.9 9.26 7.68 11.4 10.1 7.85 6.28 10.4 12.8 5.39 7.61 8.06 7.82 9.61 9.96 11.8 9.15 9.98 6.79 5.64 8.46 2.88 10.7 1.24 7.4 8.42 9.28 2.69 1.71 11.4 9.78 10.2 10.2 8.95 2.35 9.82 8.31 10.7 10.4 3.34 11.2 9.97 9.92 10.2 9.61 9.67 9.51 10.3 9.19 0 6.83 6.33 11.7 9.76 12.3 1.24 9.97 10.1 10.5 10.1 11 10.8 6.33 11.6 10.7 10.4 2.47 12.1 2.47 12 3.92 11.5 11.2 7.59 0.54 8.92 11.5 11.8 10.6 9.46 9.62 11.5 7.39 10.4 10.2 9.37 9.99 11.2 12.9 11.8 12.1 12.1 11.1 5.6 10.9 10.5 8.91 8.35 9.99 10 12.5 12.7 9.92 11.9 10.1 7.6 11.1 10.8 9.13 11 12.7 7.92 11.2 9.97 10.7 11.1 7.53 2.59 11.9 6.38 11.1 5.96 9.24 9.19 11 5.61 7.97 8.72 0 6.01 8.86 8.98 5.66 11.9 7.04 10.7 8.56 9.2 7.89 10.3 8.53 9.91 6.83 4.75 7.01 3.63 6.21 11.9 10.7 7.62 12.7 6.5 9.42 7.54 8.08 10.3 8.88 9.6 0 9.47 10.2 9.62 10.7 10.2 10.3 8.89 11.7 11.1 11 10.5 7.04 1.71 7.99 5.82 8.4 12.6 7.93 9.5 11 9.91 8.45 9.07 9.5 2.69 11 11.5 12.4 9.05 11.6 10.7 10.1 7.6 6.19 9.16 5.06 10 8.34 11.6 9.23 11.9 8.13 8.47 9.02 8.29 5.26 10 7.09 10.9 11.2 8.85 9.71 11.3 10.4 11 9.82 5.06 9.68 3.58 8.79 8.58 8.8 0 7.54 4.87 8.05 7.06 10.1 10.2 9.91 9.36 5.53 11.6 10.2 10.1 3.52 11 6.84 6.93 9.89 6.48 9.5 9.94 6.08 6.69 6.65 9.29 7.6 8.55 8.35 7.44 11.2 9.27 7.23 10.2 9.15 8.64 14.3 10.5 6.11 6.58 9.09 11 8.12 4.16 11.4 9.47 9.94 9 3.27 11.5 6.22 9.8 6.35 8.61 9.08 1.9 10.8 2.07 7.99 9.6 8.38 8.29 9.17 9.97 11 10.9 7.97 6.31 9.46 7.49 9.45 10.6 8.9 11.9 10.7 9.07 10.8 8.73 2.59 9.07 6.65 10.2 7.09 12.4 6.54 5.69 9.39 7.48 8.96 11.2 7.11 9 9 9.41 8.13 7.72 9.89 13.6 7.22 6.19 9.6 10 9.02 9.71 6.27 7.38 8.1 5.6 10.2 7.61 9.93 0.93 3.34 10.6 10.8 7.85 9.86 9.92 11.2 7.64 10 4.46 11.1 7.33 7.79 5.06 8.13 7.64 9.73 9.44 8.37 4.49 0 5.2 8.13 11 8.04 8.41 8.51 6.47 10.4 8.32 10.3 9.68 9.57 2.97 7.43 9.58 11.5 8.63 8.32 7.68 9.21 8.22 8.1 10 9.83 10.5 8.92 7.34 8.96 9.18 8.26 7.85 11.2 6.24 9.44 3.46 10.2 6.37 7.92 11.3 11.5 1.5 10.8 6.84 4.63 10.1 5.58 3.2 8.97 9.16 1.5 10.9 11.5 9.47 9 7.36 10.1 10.4 11.5 10 9.54 7.55 9.17 5.99 11.5 10.2 1.24 11.7 10.2 10.7 8.65 11.1 11.4 12.6 11.1 3.96 8.09 8.49 3.78 11.3 10.8 12.4 9.41 9.63 10.8 7.13 8.49 1.5 12 8.34 6.93 1.5 8.22 3.73 7.93 8.26 2.41 4.91 7.32 9.63 2.88 5.44 3.58 11.5 4.51 7.95 0.93 8.08 7.58 3.27 4.22 9.56 8.64 2.59 4.54 9.01 8.85 5.89 2.35 8.71 4.43 6.67 0 0.54 7.54 5.29 8.78 6.76 9.2 10.9 7.95 0 9.19 3.27 4.75 10.2 5.81 8.82 8.45 7.64 6.47 10.6 5.12 7.33 8.46 7.4 10.7 7.17 8.3 8.69 2.47 7.83 7 6 7.78 12.1 2.47 9.12 8.6 3.18 6.81 10.8 9.15 4.3 7.8 10.8 11.1 9.71 8.92 9.98 5.02 8.39 3.34 8.34 6.48 7.09 12.4 10.2 9.07 9.1 10.2 9.25 7.99 6.85 10 10 10.7 5.64 9.09 9.31 9.8 7.62 8.53 7.82 6.37 7.12 9.91 8.73 10.8 8.19 10.6 3.92 8.56 11.6 10.5 13 8.04 1.24 1.9 9.16 11.1 8.11 4.51 10.8 8.61 9.59 9.71 7.08 10.2 8.55 5.69 5.42 5.65 2.07 10.3 11.3 8.47 8.62 8.37 5.84 9.37 5.24 1.71 5.47 8.87 7.73 2.47 6.22 9.65 4.16 7.25 8.15 4.49 4.49 5.5 3.13 10.4 9.25 7.25 8.37 7.06 9.25 7.82 10.8 7.44 10.7 10.2 3.63 10.4 1.31 9.24 7.47 10.3 8.82 5.08 10.1 3.87 7.85 6.99 9.66 1.5 5.93 0 6.92 5.55 10.1 4.78 4.51 1.94 8.47 4.12 2.69 8.14 9.38 6.63 8.95 9.45 1.24 6.4 5.24 8.69 9.35 9.01 6.28 8.42 6.41 2.35 7.23 9.49 8.86 11.2 7.12 9.02 9.88 8.09 2.07 8.58 4.62 4 7.25 11.7 9.28 3.2 10 6.43 9.75 7.19 12.6 9.71 9.74 1.5 3.13 6.55 9.57 9.87 7.52 8.46 12.7 0.93 6.84 10.6 8.87 12 9.49 6.24 10.2 0 6.8 0.93 7.84 9.59 8.79 8.42 6.31 6.94 9.74 10.6 4.46 7.02 3.2 9.85 7.7 9.5 7.33 9.28 4.85 9.14 9.46 3.2 7.91 9.91 15.2 12.9 8.44 3.34 7.83 7.96 7.37 0 11.2 11.3 8.98 8.88 9.62 3.83 7.55 9.82 12 13 7.45 9.7 7.42 5.33 5.33 7.35 10.2 6.84 6.33 8.17 8.15 9.11 10.1 3.2 12.2 11.5 9.06 2.59 6.85 11.4 9.99 10.1 10.4 3.34 8.17 13.3 1.71 8.56 9.5 5.02 6.97 9.57 9.6 5.7 7.92 10.1 1.71 1.24 0.93 7.15 4.39 5.87 6.44 6.28 6.68 9.34 8.39 7.25 10.4 9 6.34 6.5 8.95 9.13 9.25 3.92 9.02 8.44 8.65 15.3 7.46 8.16 9.08 3.87 8.71 4.49 8.75 1.5 7.47 6.87 7.92 8.92 4.46 7.83 7.59 5.69 4.33 5.26 9.35 5.08 0.54 8.42 5.55 4.7 9.23 9.52 4.39 7.84 1.73 9.43 2.97 8.99 7.89 7.34 1.9 3.46 8.08 8.98 2.79 1.24 7.24 9.61 6.79 9.24 8.79 8.52 7.84 11 9.41 5.41 9.21 8.58 8.03 11.2 9.74 5.12 4.49 10.2 9.1 6.22 6.55 0.54 7.48 9.42 8.93 5.09 6.85 1.5 8.18 0 5.83 9.67 9.26 9.4 8.08 7 11.4 5.22 9.97 10.1 9.6 9.22 9.75 6.98 5.51 13.2 8.77 8.64 11.5 9.37 4.51 8.49 6.51 1.24 7.44 6.76 7.03 9.93 1.9 9.64 8.72 4.04 6.16 6.04 7.75 5.71 7.78 5.65 7.9 8.16 6.25 9.34 2.97 2.07 8.4 4.98 2.79 1.71 6.31 8.75 6.24 9.53 8.88 7.83 0.54 10.7 10.7 9.32 10.2 6.94 7.31 7.43 7.46 7.89 8.42 1.24 7.97 5.89 9.96 7.65 3.37 12.8 6.69 4.08 5.41 9.12 6.71 10.7 7.25 6.52 8.96 4.91 2.69 6.86 3.33 3.83 0 9.98 1.5 9.53 0 3.4 6.22 9.04 6.4 9.36 2.47 3.4 11 9.72 6.92 7.42 8.44 2.9 0.93 10.1 1.5 5.38 0.93 8.49 13.7 8.16 8.12 7.42 13.7 9.98 3.83 0.54 7.19 8.55 5.29 11.8 0 7.29 9.7 13.8 5.23 5.9 14.7 0 8.19 0.54 7.2 10.3 5.82 8.65 0 9.78 8.12 8.4 8.18 14.4 3.13 6.82 6.49 3.63 8.8 6.26 9.53 5.64 10.4 7.68 4 4.91 5.89 4.8 11.3 8.69 10.7 9.01 9.11 10.8 7.56 7.89 12.3 8.6 13 9.98 4.16 11.1 9.22 6.16 7.94 7.75 9.21 8.6 7.66 8.73 6.43 7.76 7.92 9 9.33 7.26 6.25 6.37 2.97 7.24 7.43 6.33 2.07 9.52 4.26 7.21 11.6 4 6.74 6 4.6 9.14 10.7 8.05 5.74 7.96 3.73 5.36 10.3 8.57 2.07 8.43 3.27 3.63 10.2 11.3 6.76 9.51 9.27 6.97 6.2 2.97 1.24 9.32 6.07 8.89 6.86 8.94 5.98 3.05 5.19 1.24 7.91 2.22 8.18 8.76 2.47 10.3 12.3 8.12 5.74 7.67 11.6 0.54 8.54 9.63 9.14 12.9 8.81 7.28 1.9 10.1 8.98 2.59 9.75 2.47 0.93 7.32 7.65 6.55 6.28 8.31 8.83 0.54 0 7.47 11.4 7.07 8.01 4.91 7.25 3.69 7.74 8.68 10.4 12 9.04 8.59 10.7 7.21 11.2 0 8.05 2.35 12.2 7.25 7.62 6.05 6.09 1.5 8.59 5.65 8.52 10.8 9.46 10.8 8.99 2.22 2.35 8.62 6 11.1 8.9 7.73 13.2 9.6 10.2 9.47 8.33 8.16 6.76 7.52 9.67 5.76 8.34 10.3 9.04 4.36 8.51 10.8 7.57 7.2 10.1 5.94 10.6 7.57 8.28 11.8 11 10.8 9.6 3.51 6.61 8.01 10.4 4.04 9.45 5.77 10.1 0 10.6 12.8 3.63 8.1 9.9 5.79 7.13 0 11.2 2.88 0.93 12 1.5 3.83 11.1 9.15 7.92 8.5 11 4.97 6.86 6.97 7.84 6.14 5.45 7.24 12 9.64 8.56 10.8 6.9 8.25 6.66 5.82 7.41 10 1.9 6.33 11 5.12 6.88 11.3 7.67 3.68 6.45 7.18 7.47 5.5 6.91 1.71 7.29 11 6.84 0.93 4.16 10.1 9.02 7.55 5.8 11 8.35 2.07 10.7 11.4 9.36 8.02 8.74 7.67 6.42 7.87 5.34 8.22 7.94 9.68 11.7 7.46 10.5 1.71 10.4 9.43 6.22 10.7 11 7.99 8.17 4.56 9.23 8.62 9.63 7.04 9.9 10.4 4.33 5.86 6.62 10.9 4.65 5.61 9.01 10.2 7.15 2.69 8.04 9.04 0.93 0.93 9.72 3.89 5.29 4.96 8.85 6.85 6.88 8.51 6.18 8.23 4.89 5.93 10.4 12 8.64 4.57 1.71 10.1 11.1 4.8 9.39 9.01 5.79 6.44 7.17 6.06 7.52 3.27 11.7 4.85 10.3 2.35 9.55 3.2 8.95 14 3.27 2.22 10.8 9.36 6.55 7.18 2.47 3.2 1.71 5.29 8.65 6.74 12.2 1.5 8.79 11.1 7.21 11.7 8.42 10.5 10.1 8.17 4 9.87 10.8 8.11 8.99 8.21 11 3.87 7.24 7.78 6.37 6.3 7.28 9.57 7.04 8.93 10.7 8.39 7.9 3.63 1.5 8.11 7.89 10 9.33 7.93 7.82 8.23 7.46 5.31 7.13 8.14 0.93 3.46 11.4 8.42 9.06 8.64 7.73 2.22 3.87 4.7 2.59 9.74 7.57 0 5.63 6.69 4.73 9.04 4.51 7.9 8.42 11.1 8.88 8.36 12.1 1.71 4.39 6.27 11.3 1.24 7.52 10.7 6.71 2.47 9.35 7.39 10.2 3.63 5.34 8.04 9.66 9.34 10.2 7.81 5.47 5.66 5.59 7.32 6.39 6.71 1.9 9.24 2.22 2.97 11.4 8.75 7.3 8 1.5 4.12 9.47 10.7 4.57 3.46 10.1 2.22 3.27 0 10.4 0.54 12 6.52 5.68 6.78 6.85 12 8.28 7.97 4.91 6.65 3.87 11 5.66 10.8 8.34 5.01 1.71 5.73 0 0.93 5.08 2.59 3.05 9.85 8.86 1.71 5.92 0 10.5 2.79 8.97 5.86 5.23 9.11 4.12 8.75 3.96 8.01 9.49 6.37 12.1 0.54 8.03 7.27 9.15 10.7 8.28 9.31 4.73 1.71 2.79 2.07 6.64 8.01 5.38 6.61 10.7 5.29 6.13 8.33 2.47 6.05 3.13 7.49 7.81 8.31 2.59 9.35 3.34 9.07 2.07 8.15 7.73 6.92 7.97 7.21 6.5 2.97 0 8.88 7.77 8.13 7.47 5.87 8.35 5.36 6.63 8.02 9.99 8.1 9.46 3.78 6.67 4.78 6.47 8.26 5.34 2.59 6.73 5.92 5.66 8.81 5.66 4.68 6.28 7.24 6.24 4.46 6.63 7.85 2.22 8.39 6.49 8.15 4.12 7.82 8.67 8.18 7.66 9.31 2.22 2.79 11.1 4.3 1.9 4.12 8.72 10.9 8.22 6.22 9.85 6.31 6 9.11 8.1 12.5 9.63 1.33 9.87 5.81 4.91 3.92 5.44 0.54 4.12 4.16 6.7 8.7 7.78 3.46 3.73 8.66 6.93 6.07 4.39 13.5 12.1 4.89 8.83 4.63 6.09 13 10.4 9.68 0 6.97 13.1 0 5.8 10.1 0.54 0 2.79 2.07 3.83 1.9 8 2.47 1.9 7.79 9.21 6.69 6.77 8.81 1.31 4.4 4.36 6.96 8.4 5.86 7.59 3.34 9 4.54 9.09 2.22 4.73 3.78 8.51 8.37 7.39 5.7 5.57 7.75 5.51 4.46 8.06 5.86 14.3 8.66 14.8 7.03 7.49 3.05 4.96 10.9 10.5 6.14 4.19 7.28 2.97 7.85 7.62 9.5 11.7 7.86 0.54 6.01 3.58 7.13 11.3 8.29 4.51 5.26 8.76 6.96 11.9 3.34 6.45 3.34 6.23 6.41 7.27 7.97 5.81 8.46 9.6 9.58 10.7 2.88 4.94 6.44 0.93 5.29 0.54 10.2 3.27 10.8 8.04 8.32 8.58 6.16 10.9 8.14 10.4 8.26 0.54 4 7.11 6.87 2.59 11.5 8.23 6.3 6.79 11.9 3.27 7.75 10.7 11 5.82 8.01 7.61 5.31 8.04 6.21 10.6 7.66 4.49 7.62 7.33 8.58 6.31 7.3 4.82 3.73 12.9 8.39 3.68 4.43 8 7.65 3.63 8.17 11.1 7.25 9.29 9.29 10.9 7.57 7.9 10.3 8.07 2.97 10.6 10.8 7.91 11.2 10.6 7.65 4.26 3.58 4.87 11.1 7.15 5.75 7.67 7.36 2.35 11.4 5.61 10.3 8.67 10.6 5.33 6.11 7.39 1.5 6.47 0.93 5.86 7.24 9.27 6.44 1.24 8.31 6.85 0.54 7.57 10.5 0.93 9.63 11.3 4.31 6.17 8.8 8.4 10.5 6.11 7.5 8.47 9.64 5.1 2.88 7.37 8.5 7.91 6.68 10.4 2.22 6.65 10.8 4.54 4.04 8.65 5.31 0.54 8.49 12.5 8.99 8.48 9.65 9.6 4.82 5.68 3.52 10.8 6.54 10.7 9.35 8.27 8.94 1.24 10.2 5.26 5.26 0.72 9.24 9.92 7.63 10.2 0.54 6.97 3.68 8.6 6.33 6.23 7.5 5.6 8 7.5 3.2 7.49 3.96 11.1 6.84 9.46 6.69 4.36 4.7 3.13 7.06 8.92 6.59 12.6 5.47 7.39 8.54 7.48 8.04 6.05 1.9 1.5 4.96 0.93 6.68 6.33 6.3 4.12 9.63 8.06 8.98 4.87 8.76 0 0.54 10.6 6.04 6.63 9.93 4.08 0.54 11.4 10.9 0.54 13.6 4.04 7.19 1.9 1.9 11.3 9.39 5.19 2.59 9.15 9.75 0.54 6.88 10.9 9.31 8 8.06 9.31 5.15 6.45 6.37 7.87 8.23 11.4 11.4 3.4 7.12 5.24 11 10.5 3.13 2.88 7.34 9.41 6.16 8.26 5.81 2.59 12 1.71 6.04 10.1 0.54 5.75 10.7 2.35 4.65 7.57 4.7 5.61 11.4 10.7 4.04 10.7 8.01 3.2 9.14 5.51 10.6 6.56 4.85 3.34 1.86 4.08 3.2 8.88 5.7 6.48 10 8.11 9.57 7.3 6.03 7.42 9.68 5.66 7.66 3.92 8.92 6.04 0.54 12.6 7.59 8.26 7.96 6.9 7.25 3.73 6.69 6.76 6.32 7.77 8.51 5.99 8.4 3.78 10.3 6.18 7.17 7.13 5.91 8.57 1.71 11.8 5.39 10.5 8.48 9.86 0.93 6.85 8.82 0.93 7 6.13 9.01 9.39 12.2 11.5 0 9.87 0.54 12.3 4.75 9.68 5.51 2.97 11.2 9.6 3.2 8.7 2.43 1.9 3.58 3.58 10.7 6.24 8.06 12.6 12.1 4.89 3.05 7.13 2.79 10.3 7.34 11.2 7.81 13 13.5 4.43 0 11.5 4.12 1.24 10.8 1.9 9.62 2.22 7.18 12.4 11.8 7.71 9.02 8.6 9.67 3.05 7.51 8.39 11.2 10.7 8.09 9.35 9.08 6.37 7.21 9.08 10 8.74 3.73 9.77 9.88 9.74 5.41 8.04 6.85 7.6 8.41 4.57 9.08 4.73 7.88 6.73 6.81 3.58 7.2 3.46 9.38 7.5 2.22 5.33 9.71 7.28 3.2 4.51 8.47 8.65 5.92 9.79 7.02 3.2 0.93 12.2 8.76 9.65 6.99 6.67 7.59 5.57 2.07 1.24 4.68 9.35 6.87 0 7.33 9.1 4.04 9.55 8.27 1.5 10.2 3.96 5.02 7.29 5.48 5.08 10.3 7.89 6.61 8.92 6.68 10.6 3.4 10.8 11 0 3.58 6.61 6.41 11.1 8.39 9.21 2.35 10.2 7.56 8.65 8.71 10.9 8.04 8.08 8.15 9.78 13 9.62 12.5 8.71 6.74 8.52 6.67 9.38 10.1 11.1 10.4 6.05 9.68 8.12 11.5 3.13 1.24 2.35 5.23 9.05 8.98 7.62 7.81 8.51 9.14 9.1 5.51 5.21 1.5 6.97 4.26 6.2 9.4 4 7.76 9.94 12.9 9.6 7.42 11 11.6 11.6 9.57 7.64 8.49 6.16 10.9 8.85 3.52 8.02 8.45 9.68 10.3 10.6 9.59 8.8 12.2 8.67 12.1 9.95 0 9.76 4 0 9.42 12.2 6.52 0.93 11.9 9.93 10.8 11.6 11.3 12.6 11.4 9.36 7.05 7.48 9.35 5.74 8.12 9.29 13.4 6.34 12 6.97 8.86 11 9.6 9.7 7.58 6.04 9.39 9.96 8.99 10.7 10.5 9.58 6.46 11 5.14 8.65 9.96 7.21 7.69 8.53 9.33 7.41 11.7 5.14 10.3 12.8 12.1 8.7 7.9 8.51 10.9 11.2 8.17 11 9.82 10.2 11.9 12.7 9.78 12.1 17 2.22 2.47 7.84 9.93 7.12 8.23 9.17 11.7 12.7 14 15.8 10.2 11.2 6.4 6.02 6.27 10.2 11.1 6.5 8.24 4.08 10.4 8.73 10.9 9.88 10.7 11.5 7.75 7.35 6.33 10.8 6.26 11.7 4.91 8.52 0.54 12.3 4.49 5.52 9.38 4.63 7.4 10.9 9.11 10 9.81 9.48 7.93 10.6 3.87 8.36 12.1 9.68 1.81 9.84 10 7.78 4.62 12.3 5.19 8.88 10 5.12 3.92 5.76 1.01 9.81 4.19 5.31 8.73 9.37 9.11 13.2 6.55 8.73 9.33 4.39 7.6 10.1 13.1 7.42 13.9 8.55 9.33 12.8 12.7 13.9 11.9 11.8 0.93 8.94 0.54 10.1 7.21 6.09 10.4 4.04 1.5 3.52 8.55 2.79 10.3 7.29 1.24 2.88 7.91 6.98 6.99 7.5 2.22 9.4 3.73 8.06 8.12 10.7 8.48 1.71 8.52 15.2 10.4 9.07 0 5.82 9.64 8.7 4.91 7.09 10.8 3.2 3.05 7.35 4.36 10.2 9.77 7.39 9.03 8.79 1.19 8.34 5.23 7.42 3.52 9.46 1.24 4.04 1.9 8.96 7.51 4.7 6.41 9.91 10.6 4 6.45 10.1 7.05 1.92 4.8 7.27 4.36 7.98 7.82 9.63 7.77 6.94 7.99 9.11 10.2 9.82 9.82 8.29 7.31 6.84 9.73 7.03 9.71 6.84 11.3 8.54 8.57 8.32 8.01 8.15 7 8.78 7.59 2.22 10.2 5.31 9.53 6.48 9.84 5.54 5.75 7.66 7.1 10.1 7.7 1.24 8.66 9.2 5.34 2.07 11.9 6.95 1.9 3.34 5.69 10.6 8.54 9.78 8.95 7.46 10.7 9.5 6.04 6.99 8.42 7.51 4.91 13.2 7.82 4.33 16.4 5.69 8.83 2.07 1.5 0 11.5 5.47 7.38 13.9 11.4 7.48 8.29 9.71 6.89 8.03 13.6 9.76 2.35 2.69 7.14 7.57 8.05 4.96 7.5 9.73 9.14 9.35 11.2 7 14.7 9.03 9.84 7.74 7.93 9.91 11.9 11.2 6.22 10.9 11.6 13 5.77 9.71 0.54 8.82 5.45 6.37 5.44 10.8 6.89 8.4 10.8 10.6 8.46 11 7.24 11.1 8.14 9.13 9.41 9.62 9.43 4.3 8.76 9.22 11.5 12.2 10.7 9.56 2.35 9.17 11.6 3.2 1.71 11.7 9.66 8.92 2.35 11.4 6.1 9.17 9.73 8.13 10.7 7.63 10.2 9.92 10.1 11 7.34 10.9 11.5 8.23 10.7 10.9 4 10.5 3.46 11.4 10.9 10.9 9.51 9.99 12.8 12 7.33 3.52 6.99 4.46 8.83 2.47 9.28 10.8 9.4 7.78 8.54 7.53 9.42 11.7 9.75 10.9 2.88 8.89 10.4 1.71 6.14 9.95 7.36 10.4 6.85 0.93 11.1 9 9.91 4.6 7.67 5.68 1.9 10.2 6.29 13.2 5.51 10.8 9.53 8.14 0.93 12.3 10.3 5.69 6.12 9.3 5.88 5.81 4.08 13.5 10.3 10.8 10.5 9.35 10.7 2.22 8.47 7.69 10.6 10.8 10.4 7.48 9.93 9 5.29 7.92 9.7 9.89 12.2 3.58 5.1 7.58 4.04 7.77 9.18 3.68 11.2 12.4 4.04 6.86 8.86 8.94 11 5.58 4.78 6.65 8.01 8.19 8.55 9.77 8.17 8.94 9.64 4.04 10.1 10.1 9.13 6.71 10.7 6.97 9.87 3.96 3.78 7.73 7.82 5.66 2.59 6.07 4.08 5.76 8.12 10.7 2.97 9.29 10.8 11.1 2.47 5.81 3.2 3.34 8.66 5.91 7.43 6.03 9.01 7.4 0.93 0.93 6.51 7.73 6.96 12.1 7.94 8.6 6.57 12 5.79 9.18 6.37 5.65 9.04 10.6 2.35 9.93 7.5 7.49 4.12 11.7 8.14 6.76 5.02 9.98 9.06 10.2 4.08 10.6 7.03 9.68 7.1 7.23 6.41 4.33 12.3 11.3 5.1 10.7 4.68 5.1 6.02 8.51 4.04 5.03 7.76 6.78 11.4 2.07 7.44 10 7.03 7.53 5.75 7.88 4.44 9.22 4.94 5.19 12.3 8.25 3.2 10.1 8.33 7.55 9.39 0 8.58 3.46 9.17 7.76 7.44 3.34 9.79 6.93 10.3 8.78 8.57 7.75 1.71 10.5 8.19 10 5.42 4.6 8.41 10.3 7.87 8.22 6.66 4.16 9.65 8.25 7.19 9.3 10.9 8.85 4 1.5 7.77 3.13 0.54 9.42 10.6 1.24 5.44 5.33 3.05 5.65 6.76 6.2 2.69 9.57 11.6 9.13 9.29 8.49 8.54 9.75 8.11 10.5 12.2 6.18 8.53 7.25 8.11 4.49 2.07 6.66 5.76 9.24 7.56 7.2 6.33 15.4 10.9 9.79 2.97 9.58 10.8 8.2 10.5 6.63 11.7 9.2 8.23 11.3 10.2 9.27 10.1 12.3 8.93 8.27 0 10.8 4.19 6.72 9.15 9.37 5.54 11.6 3.87 11.8 9 11.1 8.46 9.63 10.8 10.8 10.1 0 7.65 9.65 7.8 9.62 10.8 10.4 10.8 9.48 4.89 5.1 8.67 11 9.12 10.2 7.2 9.18 7.2 9.05 5.06 10.4 9.11 8.47 10.1 9.16 11.1 9.31 10.5 2.47 9.84 8.17 9.93 10.6 8.76 12.6 9.98 10.9 9.83 9.03 9.89 10 9.35 11.1 9.43 9.43 10.5 12.6 9.18 11.7 12.8 8.03 9.79 11.4 9.78 3.13 9.62 9.82 1.24 8.89 10.3 10.1 14.5 9.83 6.73 10.2 10.4 10.3 9.83 10.2 10.3 9.65 9.21 9 10.9 6.75 7.79 10.2 0.93 12.3 11.2 10.2 9.62 8.3 8.32 10.4 9.46 11.7 9.95 10.6 10.7 7.49 10.4 8.1 9.7 10.2 10.2 8.89 7.35 11.6 11 9.25 0 8.64 10.5 9.24 4.89 4.65 7.35 8.21 10 10 5.98 3.52 10.9 8.73 10.5 0.93 9.82 11.3 0.54 4.04 6.67 10.7 11.3 10.4 7.66 6.54 9.78 4.51 10.8 10.6 11.4 11.6 7.84 9.05 7.35 10 0.93 10.9 9.43 11.2 10.4 11.1 7.98 12.1 3.46 12.4 11.2 11 8.9 4.19 1.5 10.2 9.29 10.2 9.41 10.4 9.72 10.1 8.48 10.3 10.4 10.5 10.8 10.2 11.5 8.92 7.01 9.89 10.3 11.3 7.27 10.9 11.2 11 10.3 4.16 9.08 7.04 9.98 12.4 11.1 10.5 11.2 10.4 5.65 9.82 10.1 10.6 7.15 9.14 11.3 9.18 10.5 9.88 9.47 7.94 9.52 9.49 10.7 7.59 9.22 10.3 10.9 7.36 10.3 10.6 8.94 9.69 11 8.73 9.91 9.17 8.08 12 9.61 2.22 10.7 4.26 10.3 8.31 6.44 11.6 9.67 9.56 9.88 9.2 9.52 11 7.39 6.28 0.93 9.75 10.3 10.9 4.16 12.7 10.1 9.32 10.2 7.57 9.29 10 10.4 9.62 6.72 9.33 11.5 10.4 10.6 10 10.1 8.82 4.8 6.18 4.75 1.9 10.6 9.25 10.7 9.34 9.61 9.16 9.77 14.3 9.52 10.2 10.2 9.49 11.7 9.84 11.5 10.8 10.4 9.42 12.2 9.1 9.31 8.91 9.92 10.1 8.29 10.9 10.1 7.62 11.2 7.54 10.7 9.61 10.3 10.2 9.82 11.2 10.6 11.6 11.5 11.6 9.73 13.3 8.81 9.69 12.2 10.9 10 10.2 10.4 8.28 9.98 11.7 2.79 10.6 9.75 2.59 13.7 8.99 9.59 8.25 10.8 10.4 11.7 11.3 0.54 9.63 9.9 5.08 9.31 9.38 8.78 12.3 8.75 9.29 9.82 6.71 10.5 11.6 8.76 7.64 8.44 10.7 10.1 5.66 8.07 11.3 8.67 10.6 9.58 9.35 11.2 8.46 7.16 8.84 10.8 12.6 3.87 8.8 10.1 9.78 9.09 10.1 11.4 10.3 11.7 8.65 9.72 10.9 12 11.8 11.3 9.44 9.53 10.1 9.83 10.3 10.3 9.02 9.31 8.16 11.5 10.3 7.42 1.24 9.66 5.89 6.45 11.9 9.02 9.31 8.66 10.7 10.2 10.3 11.2 10.1 7.54 10.5 10.7 8.61 10.7 9.73 3.58 8.64 10.2 9.11 10.3 8.93 8.26 9.54 10.3 9.39 9.4 2.69 10.8 9.61 10.1 10.3 8.08 10.3 10.5 12.4 10.9 10.9 10.8 10.7 9.36 10.1 9.19 10.7 10.9 10.9 6.01 10.1 11.8 11.6 10 11.1 3.4 14 10.7 10.8 12.1 11.2 7.78 9.71 9.22 10.6 6.11 10.2 9.42 7.35 10.9 12.8 8.14 12.6 9.79 11.4 9.84 12.1 8.5 10.1 8.12 10 10.1 11.5 9.7 10.3 10.6 11.5 11 10.1 11.1 10.2 9.56 11.5 10.8 8.65 10.5 5.21 8.67 10.9 9.95 6.82 7.93 8.93 10.5 11.4 8.61 5.21 9.68 9.44 9.29 8.76 6.91 1.71 3.58 9.35 2.22 9.46 11.4 7.09 9.89 9.31 5.44 10.9 10.4 4.68 8.23 6.18 10.5 11.5 9.77 8.54 10.7 11.6 12.6 9.85 9.03 6.14 9.48 6.28 9.18 9.01 11.2 7.29 9.93 6.66 11.6 11.1 12.4 9 8.22 10 10.4 11 10.9 10.8 9.93 10.7 8.04 11 9.78 11.4 8.08 0.93 9.94 12.5 9.43 9.87 9.8 4.57 10.4 9.44 8.17 7.37 10.7 10.3 9.88 9.46 9.82 9.17 9.57 11.3 10.3 8.88 3.2 1.71 13.3 9.69 10.4 13.6 9.42 10.1 7.82 7.74 11.3 10.6 7.97 3.4 8.12 9.78 7.93 3.78 7.93 8.18 3.34 11.2 0.93 8.57 0 3.73 8.9 10.5 11.6 9.19 7.58 8.24 11.5 9.03 8.59 9.09 11.6 10.7 9.15 9.41 3.27 2.35 9.95 0.54 8.59 11 3.78 8.56 12.2 5.38 10.4 10.2 8.81 5.15 11.2 9.97 9.27 10.6 11.1 9.6 7.09 9.31 9.82 4.65 8.96 8.36 8.81 9.73 11.1 6.25 11.7 6.15 10.9 11 8.8 9.16 9.07 2.22 7.07 10.3 9.5 9.4 5 0.54 1.71 2.88 10.9 8.48 10.3 10.6 7.09 9.06 9.72 9.5 6.16 10.1 10.2 11.8 9.89 9.16 7.43 4.16 13.2 5.97 8.35 9.93 8.36 11.1 10.7 10.4 8.98 7.65 10.1 10.3 9.09 7.98 11.2 9.18 11.5 12.2 12.2 8.03 10.2 10.5 9.53 6.62 8.42 8.5 1.24 9.46 7.03 3.58 12 9.45 7.35 10 10.6 12.1 11.1 1.71 3.58 7.69 9.19 7.61 6.09 9.66 8.89 8.67 4.89 7.01 9.55 8.61 7.55 8.53 11.2 9.65 4.26 7.03 2.69 4.1 8.51 8.15 7.05 0.54 10.5 0 7.09 3.2 6.63 7.48 6.56 6.05 8.02 7.3 6.78 0.93 3.46 10.2 8.86 9.96 10.4 2.97 6.47 15.3 7.86 10.9 0 15.4 10.6 11 11.9 7.05 2.97 6.24 8.21 0.54 10.1 11 6.28 2.81 8.73 7.94 3.58 8.2 5.55 6.11 8.6 10.8 9.79 4.49 3.46 7.55 9.5 9.1 10.7 6.14 11.1 5.53 10.3 8.25 5.86 5.39 11 7.18 3.78 10.9 6.9 8.09 9.86 9.96 7.1 0.93 8.95 10.8 9.12 7.68 6.27 6.46 6.23 9.38 3.34 7.92 10.1 1.5 0.93 8.13 1.9 0.54 12.3 9.17 8.23 6.17 2.35 0 6.82 8.07 6.39 8.07 10.7 8.06 6.78 3.58 12.3 0 5.95 11.2 6.36 8.89 7.77 9.57 9.28 6.1 6.51 6.14 2.97 0.93 5.89 9.76 9.19 2.88 3.92 3.34 7.98 0.54 8.21 5.47 7.11 6.93 1.24 10.2 3.46 7.52 2.88 0.93 10.5 6.21 7.32 4.73 8.63 10.4 8.04 9.85 7.91 6.5 2.59 3.58 6.76 9.14 9.17 8.88 6.77 6.15 4.7 8.8 9.83 4.96 8.42 8.07 8.72 1.5 8.09 8.07 0.54 6.3 7.6 3.27 2.69 0.54 9.14 1.24 6.55 5.19 3.78 2.59 8.92 4.54 4.82 3.83 3.92 9.22 3.96 8.73 3.92 5.41 7.49 1.5 8.56 5.1 0.54 1.71 2.79 10.6 9.59 8.05 6.32 4.49 8.9 9.23 8.28 8.92 2.22 8.96 11.8 9.57 10.1 10.3 5.08 7.11 5.63 2.47 8.34 10.8 11.3 1.9 9.73 7.3 10.6 7.28 10.6 10.5 8.45 8.02 9.27 0.54 9.77 9.47 7.43 6.88 10.4 1.9 10.2 10.9 9.67 6.45 7.36 9.56 10.4 9.06 8.39 2.97 11.6 9.29 7.48 10.7 11.3 5.84 2.88 11.6 7.89 3.96 10.6 1.71 10.4 8.2 12.3 8.21 8.42 9.54 11.3 10.1 10.1 11.2 9.12 6.54 8.37 9.4 10 10.1 9.2 2.47 7.23 4.6 7.99 10.5 11.6 9.82 12.5 11 10.6 5.58 10.3 9.07 9.08 7.67 9.05 5.08 7.72 10.4 10.4 4.25 7.85 9.08 7.84 11 9.2 6.84 10.8 9.01 9.21 8.41 9.92 8.64 8.52 4.19 10.2 6.99 9.14 12.4 9.17 7.51 9.52 9.11 8.35 3.13 9.06 10.6 11.4 0 10.7 8.94 9.6 2.88 6.45 7.87 9.76 6.36 8.32 6.25 10.3 2.35 9.55 1.5 2.35 4.43 9.94 9.93 8.66 14.2 9.02 9.23 10.5 8.88 9.84 9.68 9.76 10.4 9.97 8.47 8.24 10 10.2 8.4 7.61 9.97 7.82 10.9 11.9 11.3 6.68 10.3 10.2 9.75 16.8 10.1 9.27 7.21 7.28 9.01 9.45 9.78 8.99 9.86 7.92 8.7 1.5 9 8.62 9.72 9.53 10.2 10 10.5 8.69 12.8 10.1 11.1 8.83 10.6 8.99 10.3 9.51 12 6.35 10.6 7.39 9.12 10.4 10.2 9.62 11.9 9.59 8.08 6.1 6.95 7.55 8.24 10.3 9.06 6.08 6.3 7.44 9.54 9.35 11.2 2.79 8.57 9.55 8.4 8.31 3.34 9.59 4.12 7.94 5.69 7.05 10.4 7.06 10.6 10.7 11.4 11.2 10.9 10.1 8.26 10.2 10.4 11.6 9.88 11.3 2.59 6.18 7.11 10 10.1 9.72 10.8 8.56 8.23 6.8 10.3 8.48 11.6 10.3 0.93 8.76 9.65 11.6 8.69 10 9.13 10.5 9.03 9.44 10.3 10.8 12.4 10.4 5.47 9.37 9 8.95 8.18 5.94 11.5 2.07 8.73 9.41 7.61 6.83 10.5 11.7 8.02 9.22 8.19 9.75 9.89 10.4 9.61 9.03 11 7.98 7.99 9.79 7.04 10.7 6.33 11.7 5.08 8.73 5.44 9.85 11.2 0 9.5 10.1 10.4 9.82 9.44 4.23 9.03 1.24 4.93 6.64 5 7.7 13 8.55 8.14 7.87 7.42 6.76 2.88 5.7 0 4.23 10.3 8.53 8.94 2.72 9.87 8.89 2.35 7.77 10 8.93 5.9 7.55 6.28 6.99 10.2 10.5 7.84 9.99 8.77 2.88 13.4 9.71 10.7 2.22 10.8 0 8.72 8.51 9.1 7.19 9.98 10.8 10.7 1.41 11 10.7 9.17 10.8 8.25 4.98 7.95 8.22 7.28 11 10.1 9.61 9.93 9.2 10 3.68 6.76 6.25 9.36 10.1 8.43 9.97 7.79 10.7 11.5 9.14 7.46 9.31 9.41 9.66 8.69 9.13 9.08 9.95 9.88 10.2 5.19 2.35 1.79 10.1 0.93 1.42 10.4 9.55 3.73 10.6 8.24 8.51 9.14 4.04 9.7 3.34 8.43 3.2 11.8 12.6 9.67 3.4 7.39 3.85 7.85 10.3 6.89 11.3 3.27 7.01 6.55 0 8.58 4.78 11 8.66 7.44 5.08 8.82 9.84 1.9 9.46 9.83 12.7 8.61 2.69 8.53 0 11.5 8.92 10.5 6.9 9.02 1.24 9.47 9.29 7.61 10.8 1.71 9.11 11.6 8.16 6 8.2 10.1 13.9 9.72 11.5 9.22 9.09 12.2 10 0.93 3.2 8.57 6.87 8.49 10.6 8.02 11.8 10.9 9.92 11.2 9.44 9.07 11.4 2.35 9.27 0.54 5.64 9.31 6.82 9.18 10.1 11.9 8.7 3.46 4.94 9.54 9.95 12.1 1.08 5.74 10.3 6.05 8.97 3.73 8.45 7.12 5.38 9.16 4.26 10.8 1.5 7.95 1.24 5.44 9.95 8.69 3.34 2.07 10 9.13 10.1 11.4 11.1 9.22 6.63 6.26 3.34 6.88 9.21 10.6 4.68 6.55 12 1.9 8.36 5.62 5.91 8.79 11.5 3.46 4.75 10.5 9.3 8.49 0.98 8.49 9.42 7.78 7.09 8.25 10.3 6.09 8.67 1.24 7.35 8.22 5.08 11.2 8.75 11.7 8.74 6.1 6.37 11.2 8.28 0.54 8.3 1.9 3.87 3.92 8 9.88 6.08 8.17 11.5 2.69 9.6 7.01 9.54 9.68 8.7 6.24 5.1 8.67 12 11.1 9.55 10.1 8.74 9.57 10.3 10.6 10.4 8.7 9.97 8.36 8.58 8.97 3.2 4.85 5.79 5.45 5.6 9.71 8.65 8.19 6.43 6.32 9.82 2.35 4.89 8.53 8.97 8.7 6.41 7.45 5.58 8.95 9.66 6.01 8.83 12.1 3.4 10.4 9.84 11.1 10.5 4.73 11.5 10.3 6.8 10.8 12.8 9.24 9.31 9.68 9.74 8.02 6.18 7.97 9.24 8.85 8.51 6.78 8.23 7.73 9.91 7.62 7.3 6.75 11.1 10.6 9.34 3.92 11.2 7.09 8.94 10.8 3.92 12.3 9.43 3.34 8.43 10.9 12.3 9.26 8.6 12.4 3.13 10.9 8 10.6 6.66 9.22 10.3 6.68 10 12.6 10.8 6.04 5.73 11.1 13.8 0.54 6.38 13.2 11.8 3.23 1.9 1.9 10.2 8.51 1.5 8.87 11.1 5.36 10.4 5.95 3.13 12.7 7.09 8.7 9.35 10.6 10.6 10.7 12 11.5 11.2 9.58 2.47 4.68 4.29 2.59 9.69 11.3 9.44 14 3.58 6.9 5.34 8.1 9.67 5.26 4.19 1.5 5.04 5.95 6.37 10.6 1.9 8.65 5.88 2.22 7.63 2.79 5.91 9 5.89 5.95 9.63 4.73 3.05 3.92 0 8.74 10.6 7.69 14.2 10.7 3.87 6.83 6.02 9.24 1.24 8.08 7.02 8.15 7.72 8.24 2.69 5.45 8.96 2.35 8.68 5.38 9.78 7.28 9.73 4.82 7.51 5.41 10.5 10.8 8.97 5.1 3.34 2.79 8.83 3.87 8.27 2.07 10.2 4.04 5.14 5.39 9.28 5.79 8.84 5.75 1.71 3.28 2.59 9.34 2.22 5.12 0.54 9.57 0.93 6.22 1.71 4.49 9.71 10.2 5.69 5.12 3.95 5.47 5.14 6.36 3.63 8.41 3.34 1.5 4.13 10.2 7.26 8.81 1.24 5.24 8.03 5.95 9.43 7.4 6.86 5.42 3.83 5.06 6.86 7.96 9.09 4.7 8.19 8.22 8.9 8.44 3.96 8.88 8.63 1.71 5.74 7.49 3.87 6.89 6.33 7.89 6.24 10.2 4.73 3.2 6.7 2.22 7.06 7.03 0.54 3.27 6.65 10.1 4 0.54 7.55 13.1 8.46 7.98 4.8 7.96 4.26 2.88 0 2.79 8.63 3.2 2.47 8.29 0.93 9.63 5.06 7.53 2.88 5.33 6.76 8.98 8.31 8.5 1.28 0.54 4.94 5.62 5.86 2.47 4.08 11.2 4.08 8.17 8.08 6.29 7.8 4 5.39 7.03 0.54 5.17 11.9 1.24 2.97 10.2 7.01 5.99 7.76 9.72 0 2.07 0 8.24 5.81 3.46 2.69 8.6 7.87 9.29 4.91 6.78 3.34 1.5 5.21 8.47 3.73 5.5 10.7 7.68 3.87 4.96 5.83 3.05 7.41 0.93 7.91 1.5 1.24 3.78 8.01 4.51 6.8 7.56 10.4 10.9 2.88 8.61 6.01 5.63 0 7.59 10 7.89 9.28 9.27 2.88 9.04 4.08 1.9 7.17 6.55 8.9 8.78 8.87 8.35 0 5.83 8.97 9.44 3.87 6.85 7.47 2.22 9.29 4.51 6.2 9.78 8.13 5.38 8.81 8.44 3.34 1.5 2.97 10.7 1.71 9.26 2.97 3.96 7.03 8.8 8.51 10.6 2.79 8.79 0.93 9.11 1.71 6.65 7.12 6.06 8.23 5.01 9.21 2.35 7.48 9.24 5.42 7.78 8.22 7.09 6.47 8.21 0.54 6.65 4.73 9.63 4.5 3.05 7.77 2.97 3.68 7.96 0 5.77 9.01 5.58 6.03 7.08 7.71 1.71 5.29 3.78 3.4 3.13 7.98 7.03 2.35 9.64 7.3 8.97 5.83 3.68 3.34 7.98 4.94 8.09 9.87 9.49 2.59 5.6 7.63 2.69 5.63 5.31 7.77 8.63 9.71 3.05 8.02 8.04 9.84 8.35 1.71 0.93 4.84 9.92 7.35 3.05 5.87 5.88 7.58 9.28 3.2 11.3 8.74 11.4 10.6 9.97 8.68 11.2 3.52 15.7 11.7 11.7 7.76 11.4 12.5 11.8 10.8 6.48 11.3 8.93 9.27 9.34 8.12 10.4 13.5 12.5 8.16 9.89 10.5 0.54 8.45 5.04 8.77 0 12.2 8.01 10.2 10.8 10 10 9.36 9.12 8.44 7.07 11.4 9.52 9.15 9.97 10.5 8.22 10.3 7.54 8.55 7.66 13.4 8.91 8.66 10.5 13.9 1.71 5.21 9.72 0 7.59 5.79 10.2 4.3 9.72 10.9 3.2 10.4 7.23 10.1 10.9 12.4 5.51 8.94 10.3 9.43 7.64 9.44 11.3 8.26 8.64 10.1 7.23 10.4 9.97 8.82 9.52 5.64 11.5 8.78 3.92 7.8 9.01 9.71 8.95 9.88 7.89 9.67 10.6 9 10.9 9.83 9.38 8.18 8.71 2.07 7.33 7.28 9.81 2.35 9.22 10.1 10.3 9.82 2.59 2.88 9.05 4 11.2 4.3 5.5 8.25 5.45 0.93 4.36 7.38 12.1 6.27 2.79 13.2 1.24 11.1 13.5 10.4 10.2 13.6 11.2 9.97 10.2 9.26 1.24 9.3 8.21 9.32 5.79 12.3 0.54 7.37 8.34 9.91 7.35 8.91 8.84 7.82 8.73 10.8 8.38 9.44 5.76 7.29 9 11.4 12.4 10.5 9.4 6.15 10.6 10.1 7.61 9.97 7.84 0.54 10.3 9.94 3.63 10 8.66 0.54 8.61 9.72 5.1 10.7 4.8 9.84 1.24 4.7 7.51 7.88 9.52 2.69 10.4 11.8 10.3 1.5 5.8 9.66 8.6 7.67 1.5 3.05 10.1 11.4 9.3 2.88 9.7 10.6 7.83 10.4 10.5 9.95 10.1 5.58 10 0.93 9.44 7.32 10.6 6.55 7.12 8.97 9.79 4.04 8.7 5.36 9.51 8.96 8.95 9.14 8.88 9.3 10.1 8.28 12.1 11.4 7.85 9.45 12.8 8.78 8.04 4.82 6.42 7.79 0.54 10.1 9.16 8.12 3.2 4.33 8.86 8.28 6.8 10.2 8.26 4.04 11.1 9.32 13 9.8 11 10.9 3.2 9.1 6.88 10.4 9.48 8.35 9.2 9.87 11 9.02 10.3 11.4 7.25 8.23 7.42 8.12 0 8.41 5.57 10.3 7.87 4.46 9.55 8.83 12.8 7.89 1.92 11.1 0.54 10.9 10.5 10.9 4.36 7.21 9.61 5.95 7.67 4.78 11 9.35 12 0 1.5 0 11.5 4 0 8.02 10.8 9.33 12.6 10.9 12.9 9.82 9.87 5.04 13.1 12.2 10.6 2.69 10.6 2.07 4.23 6.25 9.74 10.9 10.4 10.7 2.88 2.59 0 1.5 8.58 1.24 10.4 8.37 10.1 8.08 10.9 10.8 10.5 4.82 12.7 13.2 13.2 5.26 8.89 11.2 11.2 10.1 8.23 12.9 11 8.3 4.57 10.3 7.63 6.26 5.89 7.3 10 6.35 9.05 8.26 7.98 10.2 6.67 7.17 11 9.69 12.6 9.78 8.55 10.7 7.11 12.1 7.4 11.9 10.5 10.6 12.5 9.56 10.9 10.4 11.4 10.6 9.23 11.5 6.91 8.75 15.3 15.8 15.2 10.7 10.5 11.9 10 4.72 12.7 12 2.69 11.6 5.99 12.4 5.15 14 13.3 12.1 6.15 8.36 9.24 13.8 11.1 7.41 11.9 7.03 5.76 4.36 7.76 9.3 8.3 7.62 12 9.64 7.76 10.9 12.2 10.6 9.31 10 7.56 10.3 6.08 12.4 9.92 10.6 8.95 3.05 10.7 8.39 9.85 9.09 4.3 5.82 1.71 9.71 1.9 9.67 0 8.86 12.5 7.76 13.3 10.9 12.9 11.9 11.4 12.3 11 11.2 13.4 0.54 11.9 13.1 0 4.82 3.92 9.81 7.57 7.96 9.06 7.1 4.47 7.68 8.41 8.81 5.39 2.59 1.9 4.46 9.41 8.96 7.75 7.12 8.58 8.64 7.64 6.87 10.2 7.37 7.76 10.9 9.59 10.2 3.34 11.9 10.3 7.7 11.9 0.93 8.88 10.2 1.5 1.9 4.19 9.01 1.24 7.28 9.4 10.5 8.24 7.5 10.5 8.39 9.56 11 10.5 11.4 9.97 11 10.5 3.4 10.7 4.93 3.63 11.5 10.4 7.97 9.6 11 11.1 11.4 12.3 9.58 6.25 8.05 11.2 13.5 10.3 7.68 7.53 14.5 13.1 12.8 7.92 5.56 14 9.76 14.6 13.1 4.26 10.4 11 9.17 14.2 3.4 4.51 13.7 12.2 9.16 2.97 6.02 2.22 6.83 0.54 2.59 3.46 7.91 10.8 9.69 11.2 10.4 2.47 6.36 3.92 0.93 9.98 7.72 11.1 3.27 7.39 2.59 9.87 8.6 3.13 8.22 3.4 4.26 2.69 0.81 7.3 8.43 8.36 2.07 4.87 8.02 8.56 3.58 3.47 1.9 8.1 5.88 8.22 10.7 0 8.22 7.1 3.96 7.91 8.27 8.82 7.83 10.4 9.5 7.98 8.92 6.97 7.14 4.3 2.22 3.92 8.98 0.54 4.89 8.54 6.81 2.88 2.88 8.01 7.13 2.99 4.73 6.12 2.79 6.32 8.46 6.57 0.54 10.1 9.61 2.69 1.71 11.1 9.1 4.49 2.69 4.94 3.27 11.6 5.55 3.46 5.65 3.58 11.3 9.4 9.86 2.07 0.54 4.65 6.49 2.22 7.57 3.96 0.54 5.7 3.27 10.9 5.53 10.1 7.78 5.12 2.6 0 7.29 7.1 7.87 6.18 4.36 6.84 2.47 4 6.21 5.19 7.86 2.79 6.51 9.14 2.69 0.94 0.54 8.89 4.16 10.1 11.4 9.97 10.7 5.71 10.1 1.71 4.16 4.98 9.38 11.7 3.05 6.92 10.6 0.54 7.91 2.47 9.34 4.63 11.6 11 2.59 10.9 4.89 6.17 5.74 0.93 6.63 0.93 8.69 0 9.39 0.93 4.96 8.5 1.02 9.84 10.5 4.23 4.75 2.07 0.93 2.69 0 10.3 8.13 6.3 7.29 0 5.76 8.34 7.07 0.54 5.47 1.24 3.78 1.71 4.57 5.02 11.4 6.74 9.23 6.71 0.54 8.51 9.15 0.93 3.4 10.7 2.22 10.8 3.68 4.51 3.96 10.3 3.2 3.78 2.47 7.95 4 0 6.63 2.79 7 0.54 1.24 4.12 9.13 1.24 11.2 1.5 4.68 10.2 10.5 3.96 2.22 7.1 0.54 10.6 8.25 7.69 6.79 12.6 11.2 7.83 9.05 6.1 10.6 8.4 11.3 7.39 12.2 8.94 0.54 9.94 3.63 5.68 3.52 8.85 14.7 3.63 7.26 14 1.9 6.75 14.2 6.77 0.54 8.94 5.79 1.24 9.33 14.8 5.61 12.3 6.63 2.69 1.24 7.86 3.53 7.52 5.24 10.2 8.32 14.9 8.05 9.72 3.63 7.42 6.9 10.4 7.43 3.27 8.14 0.83 11.2 8.92 7.88 1.24 3.34 4.39 7.43 4.23 7.83 6.33 0 6.06 9.47 11.2 9.8 0.54 6.07 10.4 8.45 4.12 6.08 4.39 7.82 8.16 8.23 10.4 0 4.43 7.73 9.58 10.9 5.33 7.47 5.41 4.87 5.48 14.9 4.12 1.71 4.04 9.91 10.2 3.05 8.12 2.79 1.71 5.17 3.68 10.9 3.94 10.4 12.1 10.5 11 6.7 9.07 8.32 5.64 2.22 8.93 3.68 8.24 9.86 11.2 12.3 5.76 11.9 8.74 12.7 8.47 11 7.69 8.58 8.2 7.58 3.13 6.33 9.88 2.07 8.69 8.71 7.42 9.1 9.41 8.95 9.79 11.2 8.83 7.89 0.93 13.1 2.59 12.5 8.2 9.38 11 12.5 7.14 10.5 10.2 6.27 9.42 9.75 4.43 8.92 8.53 8.72 8.06 7.22 7.83 9.3 11.8 9.99 2.59 11.6 9.76 11.8 10.9 10.1 7.81 4 7.16 8.75 9.02 12.1 8.54 13.8 10.9 10.5 9.43 8.23 11.1 11.3 8.68 8.34 11.9 0 1.5 4.94 13.6 6.68 6.82 11.6 9 9.93 1.9 10.4 9.82 9.67 9.8 11.1 9.75 12.8 8.62 7.63 11.9 8.67 11.9 11.8 10.6 12.4 8.58 7.66 11.7 7.66 11.4 1.24 4.23 6.54 5.06 5.38 4.19 0.89 9.76 7.25 10.2 8.42 6.41 9.63 6.6 0.54 6.29 1.24 0.54 7.39 1.71 7.33 5.15 6.21 8.31 8.11 8.44 0.54 2.47 7.37 7.64 9.09 4.16 7.11 0 5.64 11 6.72 4.23 8.13 6.89 4.75 7.13 0 7.61 0 5.7 9.79 13.1 5.44 10.1 6.59 10.5 7.08 6.51 7.86 0.54 6.48 3.52 7.07 8.1 8.57 7.99 4.19 5.12 3.4 0.93 6.68 7.71 7.85 3.87 10.1 7.44 1.5 6.72 0 3.13 0.93 3.96 7.62 2.59 6.71 3.87 2.69 4.26 10.7 7.21 8.14 1.24 8.6 13.3 1.63 9.04 8.06 6.23 7.93 10.2 1.71 9.54 1.5 7.32 4.16 4.3 6.55 4.16 8.44 12.3 4.65 3.46 11.6 12.1 7.67 6.71 11.2 5 7.03 11 7.39 2.97 7.71 4.7 8.75 0.54 4.04 3.13 8.8 6.61 3.96 5.55 13 7.11 8.14 4.89 12.9 1.24 12.8 8.68 7.88 1.5 11.5 12.5 7.76 10.8 0 1.5 0.54 10.7 2.22 0 8.44 5.7 6.57 11.2 4.49 2.59 1.71 1.24 4.6 9.8 10.2 6.88 5.84 8.89 10.5 11.9 9.38 9.65 8.71 10.4 6.31 11.1 11.8 10.1 1.9 3.46 12.9 7.66 2.69 9.07 5.77 5 13.2 7.08 5.06 11.3 1.24 4.89 7.96 5.8 5.08 3.37 9.83 1.9 1.5 4.3 9.07 5.06 8.74 12.8 7 8.99 6.04 5.97 6.3 4.19 4.96 9.2 9.47 2.47 11.1 3.73 7.55 1.71 9.52 0 5.16 3.87 5.76 5.45 9.69 2.03 6.27 8.97 3.41 4.96 9.54 6.31 0.93 14 7.59 7.8 5.36 2.69 7.64 4.36 2.35 5.17 5.75 7.28 6.34 4.08 5.16 5.93 8.45 6.04 4.49 8.11 10.7 7.23 2.07 11.9 2.59 7.03 7.69 7.94 8.09 7.25 6.24 7.02 4.98 2.59 5.48 8.21 5.9 3.18 7.51 4.68 7.68 0.93 8.16 8.09 4.51 3.52 5.76 7.61 8.97 0.54 7.93 2.1 6.17 9.68 2.07 9.06 8.02 6.97 1.71 9.76 12.3 8.82 1.9 7.48 0 6.34 6.71 7.44 4.43 8.81 1.9 5.42 6.44 8.52 6.23 10.5 7.41 9.15 1.71 12.2 7.39 6.37 9.87 1.24 2.22 5.31 2.88 8.54 7.42 1.24 7.53 2.07 9.41 0.54 3.73 0 3.25 7.44 0.93 8.65 6.84 7.95 9.59 5.61 5.93 0.63 1.71 8.99 1.24 3.4 2.22 5.1 1.5 8.2 7.77 8.34 7.41 7.98 9.63 11.3 5.84 12.1 3.13 12.2 1.5 13.1 0 7.71 6.91 12.6 12.5 2.35 1.24 11.7 12.4 11.2 0 3.4 4.16 9.97 6.86 12.6 1.9 3.13 9.09 10 7.78 7.03 4.39 11 9.08 0.93 15.3 11.1 13.4 7.38 8.53 4.3 8.71 9.95 7.76 11.8 10.2 10.9 12.7 12.5 8.65 9.82 9.51 12.4 0.54 7.46 11.2 8.82 0 8.43 8.08 11.8 8.55 9.68 8.49 11.7 5.41 6.97 7.35 9.16 9.99 1.24 8.53 8.99 6.07 8.9 8.04 9.65 8.16 6.41 2.99 10.3 3.52 7.13 6.37 6.61 12.1 0 8.06 3.46 10.1 0.54 8.1 7.24 10.8 11.2 12.4 7.79 6.66 7.3 8.1 2.69 2.07 6.18 9.72 5.9 7.8 9.45 7.6 1.71 7.09 8.47 3.28 7.81 6.1 2.35 6.72 3.92 0.54 6.84 7.77 4.16 4.46 5.51 4.96 6.69 3.13 10.5 7.88 2.07 4.19 9.59 5.6 5.88 0.54 4 9.57 9.45 5 4.36 0.54 6.67 0.93 1.9 2.97 3.2 5.12 12.4 2.79 7.85 5.44 6.39 4.26 6.27 1.24 4.46 5.23 2.95 8.71 4.94 7.18 8.26 1.24 9.5 2.35 3.58 7.26 4.16 8.84 7.64 2.79 7.66 11 9.51 4.65 1.5 10.5 1.5 1.24 3.67 0.93 5.95 7.64 3.73 3.34 10.4 8.05 0 5.12 8.46 9.93 7.9 1.9 10.1 1.9 10 0 2.47 9.26 4.04 4.43 9.81 8.46 7.87 0 8.35 9.17 12.7 14.4 9.6 7.99 10.3 5.09 8.06 11 7.36 5.66 4.08 4.12 11.4 1.5 4.04 9.14 8.54 8.88 9.22 9.82 11.4 3.05 10.3 6.27 6.93 9.6 10.7 11 11.1 6.11 10 1.5 3.05 12.2 8.9 10.8 11.4 4.68 6.16 8.54 6.82 9.39 5.91 10.9 9.13 11 10.7 11.5 12.3 11.2 0.54 5.48 5.44 7.23 8.45 9.98 11.6 8.75 6.44 8.74 10.5 10.6 10.8 9.75 10.6 7.49 9.45 6.16 12.2 9.48 0.54 3.4 9.02 10.1 8.2 1.71 9.79 9.99 10.6 10.4 10.7 9.85 10.8 9.81 11.4 12.3 8.45 11.1 9.39 12.6 6.73 11.4 7.12 11.2 9.97 6 4.26 10.3 2.22 4.12 6.66 7.57 2.65 8.53 7.97 2.59 12.7 6.02 1.8 9.98 8.77 4.8 10.3 8.06 8.77 10.9 11.4 10.7 2.69 10.2 11.5 10.1 6.04 13.1 9.81 1.5 3.4 12.9 8.24 10.1 8.55 9.56 8.76 10.2 12.3 4.16 6.23 11 1.71 11.4 11.4 7.79 11 10 7.37 9.23 9.85 10.8 11.1 5.67 11.1 11 8.55 5.12 8.1 8.07 8.6 10.1 9.92 9.36 9.18 10.2 9.41 4.33 1.24 8.19 12.5 8.62 9.59 5.14 10.4 9.8 11.2 1.9 8.49 11.9 9.33 7.78 8.11 11 10.4 8.14 13.3 11.3 9.64 11.3 8.83 10.1 13.1 6.18 9.86 13.2 9.31 1.71 9.15 10.5 8.64 8.51 10.8 8.09 9.04 5.45 7.83 11.2 10.8 10.2 12 5.28 3.52 8.76 11.2 11.9 9 8.67 12.1 11 9.96 0.54 0 6.07 3.34 8.32 12.2 3.83 9.61 5.12 2.22 7.85 10.7 3.92 7.22 7.7 8.19 9.03 0 10.1 9.89 1.24 9.94 9.63 10.3 8.97 11 4.75 1.5 10.3 4.39 5.99 9.89 9.42 5.8 9.4 8.41 10.1 0.54 0.93 10.5 12.1 0.54 4.67 6.28 8.08 9.29 2.07 1.24 7.62 5.1 6.78 4.8 7.59 5.02 1.24 4.36 8.03 9.16 7.04 9.35 9.99 4.47 7.04 2.76 5.39 7.05 5.38 11.1 7.11 2.22 7.57 2.35 9.69 7.39 5.21 8.64 5.54 0.93 8.29 9.74 4.8 3.78 3.87 1.24 8.1 2.69 6.73 7.63 5.57 0.54 7.58 6.34 7.03 9.19 13.1 4.12 6.29 7.01 6.91 5.64 4.08 7.32 7.86 6.5 5.33 5.45 6.92 6.96 3.2 4.77 5.89 0 6.09 8.17 3.87 3.73 3.58 0 1.9 2.69 1.24 3.63 9.46 0 8.88 7.34 5.47 6.4 5.76 3.05 5.93 10.6 0.54 0.54 0.93 0.54 4.16 4.49 7.1 0.54 5.21 7.76 6.41 3.63 9.2 11.8 1.24 8.9 9.02 5.1 8.52 11.9 12.4 8.63 2.69 8.34 6.68 0.93 11.2 14.1 10.4 10.2 9.06 4.63 6.53 10.2 9.67 12 5.97 9.67 11 8.99 5.78 8.87 6.33 11.1 10.6 9.52 8.74 8.7 5.73 10.8 10.1 9.42 10.8 5.86 3.13 8.74 10.1 7.3 8.59 9.56 10.7 8.12 11.1 3.05 6.41 6.06 2.07 1.71 0.54 11.4 5.33 5.62 9.95 10.1 3.4 5.9 14.7 11.2 11.8 9.87 3.83 8.04 13.9 12.4 1.5 12.4 10.7 10.6 9.95 10 11.6 8.78 9.32 10.3 10.7 10.2 10.5 8.49 11.1 2.69 10.5 9.23 13.7 9.94 10 9.36 11.8 6.55 12.4 7.31 5.58 10.8 11.5 10.6 12.2 0 10.3 9.16 10.6 5.73 1.24 9.46 8.42 7.51 9.29 13.1 9.66 10.6 10 9.17 10.7 10.6 13.4 9.84 9.01 9.75 4.78 10.2 11.1 10 9.28 10.4 9.39 10.2 10.9 10.4 9.46 10.1 10.6 10.8 10.6 10.4 10.2 10.6 10.9 11.2 10.3 11.4 9.6 10.7 9.39 9.8 10.6 12.1 9.39 10 9.62 13 13.1 10.6 11.6 2.59 7.74 6.95 6.49 10.7 0 0 4.51 6.11 10.1 8.65 4.82 7.95 5.68 10.9 10.9 14.1 11.1 7.02 10.2 9.1 5.9 10.9 9.55 9.62 4.08 13.3 2.35 11.3 11.8 9.93 10.3 10.4 10.7 10.7 11.6 8.47 9.49 9.01 6.08 9.46 10.3 11.2 0 9.12 8.88 10 10.7 1.5 10.8 14.1 9.11 12.4 10.6 4.6 9.96 7.19 9.67 10.5 4 2.79 7.23 10.4 9.37 11.9 9.09 9.31 10.8 11.3 13.1 2.97 8.97 12.6 6.77 9.59 10.2 9.54 9.17 10.7 11.3 12.9 11.9 8.89 13.9 11.1 4.08 9.07 8.63 9.76 7.5 13.8 3.63 0.93 12.4 10.1 7.98 10.1 2.97 8.65 9.66 9.98 10.9 10.1 11.2 8.49 3.34 9.84 7.67 4.82 4.6 12.4 10 9.77 6.31 7.08 2.47 11.3 6.6 0.54 6.64 0 5.1 7.39 1.5 3.68 9.37 13.2 10.2 12.6 9.16 10.9 6.97 11.7 8.36 5.02 9.14 8.88 10.5 8.8 0.54 10 5.2 5.36 9.28 10.5 6.04 10.7 8.86 0.54 4.6 9.94 8.8 6.97 4.65 6.12 1.9 12.4 11.7 9.6 11 9.49 6.31 12.4 8.61 8.06 0.93 11.2 5.94 8.91 2.07 0.93 10.6 10.2 13.4 8.93 7.72 8.86 8.84 8.31 1.71 5.42 4.57 8.61 12.7 9.39 8.06 10.1 6.06 1.24 11.2 5.29 11.7 5.84 0 6.37 6 11.5 9.5 4.57 5.57 9.42 4.39 6.75 6.37 4.12 5.82 6.9 11.7 14.3 5.13 6.92 11.2 2.07 2.79 4.89 13.6 6.96 11.1 10.4 11.9 10.5 9.04 7.87 10.9 8.92 7.19 3.2 9.69 9.23 5.71 6.97 12.3 10.5 0 10.3 13.8 9.07 5.3 10.5 7.21 11.2 4.09 9.17 8.94 5.44 9.38 9.51 4.78 9.31 7.04 12.9 8.11 8.47 11.5 9.55 7.58 0.54 6.4 1.44 9.31 10.7 11 11.9 8.62 10.6 8.58 8.79 2.59 2.81 3.63 11.5 3.87 7.71 10.4 5.65 5.79 1.5 9.15 9.96 9.82 10.5 10.7 11.8 7.68 10.2 10.6 13.2 9.64 1.9 13.8 5.58 3.14 3.63 10.5 10.2 10.1 11.6 11.5 10.7 8.73 7.93 8.3 6.9 8.68 8.35 9.61 9.26 9.01 4.16 7.72 7.92 9.78 7.59 11.8 9.37 7.81 8.79 9.04 9.8 10.3 6.29 8.23 10.6 6.74 9.44 7.76 10.3 9.62 9.14 10.3 10.7 7.45 10.4 4.36 7.71 5.51 11.2 6.75 8.19 11 10.3 10.5 7.1 8.86 10.7 3.05 7.86 10.4 9.07 9.37 10.2 7.76 9.49 8.58 10.7 8.25 9.34 9.89 11.1 11.5 10.1 10.8 0 12 10.2 5.22 5.34 10.2 8.9 9.31 9.82 8.73 11.2 7.78 9.38 10.1 9.11 8.58 10.1 11.7 7.85 8.29 8.41 8.74 9.61 7.25 11.6 12.1 11.4 9.98 9.24 9.94 9.45 11.3 9.73 10.1 9.95 8.67 11.1 7.73 9.72 9.65 10.1 10.4 9.76 3.46 9.43 14.3 7.82 9.16 10.2 10.8 7.03 8.97 7.99 9.91 10.5 11.5 9.14 10.4 9.35 9.36 8.39 11.6 2.47 9.16 8.9 9.07 9.2 11 7.21 10.9 8.33 10.9 6.12 8.05 3.34 10.5 9.51 7.9 7.54 8.23 7.6 9.51 9.75 8.95 8.57 8.37 9.32 9.75 10.9 7.01 10.7 8.11 7.91 9 9.68 6.69 7.65 10.3 9.29 9.86 7.99 9 8.03 3.27 2.88 3.46 9.47 3.2 9.56 9.1 7.17 8.65 10.1 9.87 9.78 12.3 3.63 10.3 8.49 3.83 7.18 9.25 8.36 11.4 11.3 9.15 8.66 7.44 8.03 9.01 0.54 10.5 10.4 7.89 9.27 10.4 7.1 8.34 9.67 9.55 5.62 7.49 9.35 10.6 10.4 11.2 10.4 7.88 6.55 7.91 8.76 9.73 9.59 10.8 7.62 9.47 10.5 7.09 2.79 9.75 13 9.09 8.05 10.9 9.4 11.2 9.87 9.17 7.3 10.4 8.54 9.94 4.3 8.15 10.1 6.47 9.86 9.71 3.34 9.25 8.89 6.35 9.11 11.3 1.5 9.41 4.33 9.7 9.59 7.3 9.37 10.5 11.8 10.6 6.61 11.3 5.1 10.3 6.05 5.66 6.55 11 9.64 8.61 8.06 9.16 9.12 9.51 9.7 9.71 3.58 9.21 3.46 8.57 9.32 10.7 9.45 10.9 6.11 9.78 10.9 8.21 9.88 7.14 10.3 9.07 7.3 10.8 9.78 8.49 8.17 10.1 8.87 10.6 1.9 7.9 12.8 8.68 9.56 8.22 10.9 8.58 9.28 10.5 9.75 11.2 6.74 10.3 9.5 8.74 9.21 7.81 8.58 11.4 9.28 9.24 7.05 11 10.9 6.11 9.48 10.9 9.61 8.53 10.5 9.96 5.7 10.7 8.62 9.97 11.8 1.5 9.19 7.86 9.73 7.53 4.19 11 10.7 8.12 9.3 11.3 9.63 8.65 10.7 2.59 8.19 7.83 10.8 11.1 9.15 10.6 8.55 11.5 9.3 8.15 9.71 10.7 11 11.1 10.6 10.6 5.62 6.9 6.42 9.86 9.03 11.6 10.7 10.3 8.78 9.38 8.22 9.95 9.12 9.23 9.52 8.16 5.48 9.79 9.41 10.2 8.86 9.06 8.75 9.66 8.63 7.78 8.02 10.7 8.51 11.5 6.17 3.05 8.74 9.01 9.07 1.9 8.5 10.9 10.9 10.4 11 6.01 9.26 10.1 9.73 8.29 7.45 11 10.3 10.8 8.04 12.9 10.2 10.5 10.5 11 9.74 9.35 10.7 7.07 9.47 9.31 11 8.03 10.1 9.59 8.53 11.9 9.46 2.59 8.4 9.76 11.6 9.39 9.17 10.7 10.2 10.9 7.78 8.24 10.4 10.6 9.7 11.1 8.57 10.3 9.01 10.9 9.74 9.24 7.77 9.06 7.96 11.4 8.43 10.6 8.85 6.28 13.4 9.52 7.74 11.1 9.09 10.6 8.39 13.7 7.9 10.2 5.24 8.2 12.2 9.63 3.79 12.9 7.97 7.7 9.2 9.4 9.82 10.1 12.2 10.6 4.12 9.37 0.54 8.89 9.62 11 10.3 8.28 10.7 8.21 0.54 10.9 4.68 8.96 9.89 11.4 7.31 10.4 10.4 10.4 8.44 1.24 12.7 8.3 9.81 4.46 11.2 11.9 8.68 7.27 10.9 8.94 10.1 10.4 9.49 5.87 3.68 9.81 9.79 0.54 5.51 12.3 9.41 10.3 7.33 11.5 11.7 3.92 6.68 6.39 9.04 7.86 10.4 11.7 11.3 9.18 9.24 9.61 7.78 9.19 7.89 9.14 8.68 2.07 4.16 8.98 6.23 10.6 10.6 8.54 7.59 12.4 9.08 1.9 8.8 11.9 10.2 9.51 13 2.07 10.4 13.3 12.9 10.9 9.68 10.5 13.3 5.54 0 10.2 10.9 8.49 11.7 14.9 11.8 8.59 8.87 6.65 9.87 7.89 11.5 8.69 12.8 1.24 10.5 10 7.31 11.7 10.9 12 3.4 8.55 10.4 13.4 0.93 11.7 11.7 10.8 7.6 8.86 9.29 8.01 8.91 11.1 8.15 8.69 13 11 9.73 9.39 11.4 8.98 10.6 8.79 8.86 6.93 11.7 10.4 10.8 10.9 10 9.5 0 8.29 10.2 11.2 0.54 10.7 11.3 10.3 15.7 8.75 8.31 0.93 6.84 5.29 9.67 8.43 10.2 9.57 7.85 10.6 8.57 9.03 7.9 7.91 6.14 10.3 9.92 7.44 2.54 9.14 9.06 6.74 4.39 9.63 11 2.22 9.76 9.47 10.2 9.29 11.2 9.12 12.7 4.62 9.79 8.77 8.28 6.48 10.3 6.68 6.25 1.71 11.3 9.51 12.6 11.6 2.88 9.21 9.74 10 11.4 10.3 10.8 9.85 10.7 6.65 11.1 7.58 10.9 5.41 10.7 5.61 4.33 2.25 1.9 11.7 11.3 10.5 9 10.9 7.99 7.46 9.01 4.54 5.26 2.47 2.22 10.6 10.2 6.99 5.28 4.19 5.68 9.37 0 9.25 7.45 11.9 5.99 11.7 4.51 8.22 9.85 9.88 8.55 8.39 10.3 9.18 10.6 9.59 8.2 9.6 9.87 9.01 10.1 7.83 3.2 2.79 5.57 7.43 7.92 4.3 6.84 0.93 0 8.45 5.58 5.68 9.1 3.83 10.1 9.24 11 3.46 10 8.92 9.58 6.74 8.61 3.31 8.79 7.96 8.2 8.46 8.66 9.06 13.6 10.7 12 4.85 7.95 5.64 8.42 7.62 7.93 10.8 8.65 3.83 4.23 10.4 9.83 12.1 10.8 10.9 3.58 5.14 8.51 9.08 7.68 11.6 7.6 9.43 8.91 9.36 4.91 3.4 9.46 8.63 10.2 9.24 9.41 12 10.1 4.63 10.8 9.87 3.13 3.73 10.9 9.15 8.14 10.3 7.18 10.4 11.5 7.08 9.73 8.25 7.46 8.47 7.02 10.5 10.7 8.16 9.31 4.87 2.35 11.4 9.82 11.1 10.3 10.8 9.75 8.77 0.54 11 9.09 10.2 10.5 7.67 10.4 11.1 8.63 10 10.4 4.39 9.84 8.03 9.52 7.88 11 8.21 10.1 8.79 9.89 8.52 10.9 9.16 3.58 11.4 8.15 10.6 9.9 7.52 6.47 6.6 6.97 8.57 8.06 8.39 8.51 9.7 6.28 10 8.58 7.22 9.73 3.34 8.61 9.55 8.73 9.5 8.47 9.96 11.2 10.2 9.98 12.9 8.85 10.9 10.2 5.48 9.31 8.04 9.62 8.54 7.92 7.18 4.75 10.8 0.54 9.07 11.6 5.64 8.86 9.15 2.69 10.8 8.09 10.2 10.4 9.73 7.09 6.09 8.5 8.62 9.09 10.4 11.6 5.88 6.1 8.27 8.42 10.9 10.6 3.46 10.5 9.22 10.6 9.28 10.2 3.92 9.65 9.86 8.64 9.06 8.53 9 8.8 9.98 1.24 10 9.09 8.14 9.5 7.94 4.73 5.33 10.1 2.79 11.8 8.23 3.13 9.95 10.2 10.3 2.35 9.51 2.97 9.5 3.46 7.1 3.4 9.6 7.95 8.59 11.9 5.95 8.43 9.87 10.9 7.97 10.6 9.5 11.9 8.53 8.03 7.91 10.4 12.7 9.29 9.96 8.92 8.73 7.94 3.4 8.8 9.17 10.3 8.25 8.54 8.6 8.16 7.59 9.46 8.97 9.05 10.2 8.71 11 8.22 7.39 10.5 9.78 8.09 8.12 3.58 9.91 8 8.34 7.22 0.93 9.15 8.22 5.68 0.54 10.6 8.07 8.47 10.8 7.49 8.69 10.4 9.36 9.61 5.39 5.8 9.94 8.14 7.77 10.1 9.49 0.93 7.75 10.1 2.47 11 8.27 11.4 9.41 9.15 9.11 8.06 8.67 4.94 11.2 8.43 5.15 10 9.62 8.75 11.2 8.25 9.23 9.08 8.77 8.41 9.68 8.7 11.6 8.85 11.2 9.02 8.92 9.98 11.6 9.31 7.72 10.8 7.11 7.93 6.88 6.95 7.5 8.96 3.92 8.28 10.2 7.79 9.97 2.07 10.4 7.6 10 6.88 9.71 9.96 8.79 10.3 9.15 7.5 11.1 9.62 9.75 7.79 10.8 9.71 11.1 8.99 8.43 9.98 8.57 8.1 4.23 8.81 9.2 9.9 2.22 8.13 9.37 10.9 11.4 7.71 8.36 5.92 9.55 8.16 9.55 8.94 9.41 8.41 8.22 9.57 8.1 8.07 8.33 7.57 6.09 10.8 9.16 8.96 6.08 9.29 7 8.94 1.71 8.46 8.52 7.81 7.61 8.33 9.92 7.95 9.48 8.75 11.2 4.26 8.11 7.73 9.29 9.72 6.71 10.7 5.06 9.56 9.71 10.3 11.3 6.96 8.88 10.6 7.48 10 8.32 10.2 5.79 10.8 12.3 12 6.39 10.2 7.85 10.8 9.72 8.05 8.37 8.82 8.75 11.5 5.15 9.76 8.21 8.69 6.22 9.9 8.97 6.45 9.51 0 6.65 10.9 6.86 10.2 7.7 4.46 8.25 9.18 9.24 10.6 9.97 7.2 2.97 9.03 6.96 9.77 7.09 7.99 9.91 4.57 12 9.22 8.45 8.12 10.1 9.02 7.07 7.93 1.24 5.15 9.19 6.47 5.36 6.37 8.63 2.22 11.7 5.08 11.5 11.2 7.19 6.44 9.78 7.48 9.81 11.6 10.7 9.34 9.95 11.2 4.96 7.69 7.09 8.93 6.23 7.77 8.59 9.61 6.97 8.1 10.5 3.58 10.2 8.38 9.71 9.99 7.59 7.94 7.65 11 9.65 9.5 6.97 9.55 9.71 7.57 10.5 7.9 9.78 7.56 9.12 2.79 8.81 9.68 8.07 9.51 2.22 8.3 8.9 8.71 7.54 6.84 4.57 10.5 10.2 9.84 8.59 6.08 9.6 7.63 9.81 10.3 10.2 8.96 11.5 2.59 9.13 9.18 9.41 8.84 9 8.87 8.8 11.3 10.6 10.2 10.6 8.34 6.21 5.8 9.52 9.38 8.52 8.29 7.81 9.2 9.62 5.38 6.8 10 8.22 7.83 12.5 7.75 8.65 10 9.48 7.06 10.7 10.6 9.35 9.48 3.83 10.4 7.66 9.71 8.41 11.1 10 10.1 9.84 6.96 6.8 9.92 4.78 9.68 6.33 9.87 10.4 8.72 10.4 7.71 10.5 5.17 8.47 8.54 9.87 11.7 7.8 9.89 8.06 9.31 9.89 2.35 4.8 7.22 7.37 10.1 9.25 10.1 8.42 7.56 8.54 10.7 10.4 3.92 9.34 10.5 9.5 7.77 9.16 11.5 7.24 9.07 12.6 9.74 9.89 3.58 7.86 10.6 10.3 10.3 10.4 9.52 8.82 8.66 9.16 11 8.19 10.6 6.45 9.07 8.42 7.66 10 3.96 11 9.05 10.8 8.53 10.4 6.02 10.3 9.7 9.2 8.68 8.81 8.84 10.2 9.04 11 5.1 5.98 9.17 7.65 8.67 0 9.53 11.5 0.54 9.35 8.19 8.87 10.9 7.86 8.6 7.34 7.89 8.45 9.62 8.61 6.32 9.48 8.85 2.59 10.4 10.5 9.8 10.1 8.69 10.6 9.44 10.2 8.19 7.15 4.06 9.76 8.03 7.99 9.89 8.22 6.42 8.46 8.53 9.93 10.1 10.3 9.35 8.51 7.66 8.71 7.71 8.53 10.8 10.6 11.2 6.05 6.66 9.22 10.6 10.3 10.4 9.47 8.3 8.7 7.04 5.99 8.52 9.92 10.5 3.34 10.1 9.05 11.1 5.47 5.36 7.63 2.07 10.1 9.46 9.86 9.62 13.2 11 8.11 10.8 6.8 7.76 10.9 12 6.9 4.57 5.02 8.11 9.39 8.8 4.75 7.54 3.73 8.18 5.45 7.98 9.15 9.63 0 9.74 11 9.2 10.1 9 11.9 8.16 3.2 9.88 9.68 9.31 10.1 8.49 4.87 5.04 9.51 9.77 7.72 2.47 7.81 5.38 8.02 2.35 5.02 1.5 11.1 7.38 4 10.8 9.72 8.07 3.4 1.24 8.51 7.84 3.75 10.5 8.4 0.93 3.05 7.05 9.51 10.2 9.39 7.98 7.39 7.39 1.71 9.56 6.37 9.97 8.56 11.6 1.9 9.77 9.6 6.47 6.46 10.7 10.8 9.13 10.3 8.34 10.4 9.13 8.26 1.71 10.1 8.51 9.49 9.08 10.3 8.74 10.7 6 8.82 10.4 6.71 3.78 9.05 7.94 8.2 7.35 8.92 10.7 9.42 9.04 8.86 10.1 10.9 10.1 9.73 10.3 8.35 11.1 10.8 7.54 8.73 8.06 9.16 7.9 5.12 9.09 6.81 11 8.44 10.9 8.31 7.33 9.53 9.55 9.09 10.1 9.47 8.68 11.4 3.87 9.22 8.89 9.06 7.02 10.8 10.6 9.58 10.4 7.48 8.47 10.2 11.4 10.7 7.54 9.25 10.2 8.83 10.5 9.26 7.87 9.74 10 8.67 9.34 10.3 10.8 6.19 8.57 10.7 6.12 10.9 9.85 9.52 4.73 8.13 10.2 9.91 3.27 11.4 4.75 10.4 10.7 8.51 7.76 9.94 10.7 7.75 10.6 8.6 10.2 6.7 7.01 5.39 10.8 8.92 10.5 9.08 9.73 10.3 6.49 4.6 6.57 9.42 10.4 6.77 9.74 12.7 9.33 6.38 7.99 8.16 10.5 11.5 10.1 10.1 9.98 9.37 10.9 8.58 8.91 9.46 9.89 14.7 10.1 8.42 9.06 9.26 12 10.9 12.1 9.93 8.47 8.85 9.85 8.56 7.93 9.79 10.3 7.11 10 10.3 9.62 9.47 8.89 10.7 6.9 9.5 3.96 9.54 8.24 8.78 8.85 8.38 7.25 10 8.88 8.86 9.18 8.69 9.16 7.76 7.74 11.3 4.82 7.2 8.68 7.52 9.5 7.89 9.16 7.46 7.75 4.3 10.3 9.1 4.91 9.2 8.76 6.79 4.91 2.59 7.42 8.78 9.72 2.97 8.52 9.35 9.71 6.31 10.6 11.4 0.54 10.8 10.1 9.2 10.8 9.43 10.4 9.32 9.56 11.1 9.5 6.52 9.43 7.31 9.36 7.16 10.3 7.37 9.36 11.1 9.09 9.66 7.51 11.7 8.73 9.41 10.8 2.39 10.2 7.47 9.79 8.54 9.94 4.98 10.3 10.1 9.07 10.4 9.23 12.2 7.96 9.03 11 9.74 5.8 6.5 6.84 10.9 5.34 5.92 0.93 12.4 11.1 8.53 14 4.6 10.8 8.76 9.54 7.67 10.3 10.7 10.7 7.98 9.31 8.45 11.3 7.57 10.9 9.29 7.78 10.3 8.1 10.6 8.21 6.57 9.65 0.93 8.45 10.6 12.5 10.8 8.06 6.95 10.3 10.8 3.05 8.38 9.51 10.8 9.62 9.59 12 7.2 7.33 10.2 8.84 9.04 8.78 8.2 0 8.29 1.24 10.4 8.51 10.1 8.8 8.68 9.58 10.3 10.6 8.94 10.3 10.2 6.44 8.25 8.48 6.08 9.64 3.13 2.35 9.97 8.58 6.59 6.71 4.49 5.35 4.6 5.17 6.04 5.79 3.96 8.16 11.3 4.08 4.36 4.85 5.69 6.08 9.68 2.79 6.21 7.22 6.42 6.26 6.59 7.26 7.24 5.7 6.46 9.43 7.77 6.53 6.71 6.36 1.71 0.93 8.48 0.93 1.9 0 6.91 10.3 9.03 7.67 10.6 2.59 9.48 11.1 1.24 5.28 9.52 7.7 11 8.21 10.6 10.6 4.51 10.3 9.75 5.34 10.4 9.77 5.65 9.42 10.9 7.54 8.9 11.4 11 10.3 9.87 2.59 2.8 9.71 9.29 9.11 8.41 9.22 9.15 8.51 4.94 11.6 6.01 0 0.93 8.57 8.32 9.77 3.73 5.1 9.99 6.11 12 7.34 0 14.9 6.58 9.4 9.17 9.46 4.51 8.31 10.9 8.39 10 7.17 6.59 10.5 7.91 10.2 8.98 8.87 4.65 0 4 7.66 8.34 0.54 10 4.54 11.2 9.27 15.9 5.08 1.24 10.9 9.84 10.7 10.5 10.8 7.5 8.77 9.97 8.43 10.6 9.72 10.1 6.67 5.26 9.95 10.7 10.8 10.8 10.8 9.99 12 11.2 7.97 9.45 9.82 11.7 8.27 9.95 11.4 7.6 10.4 10.2 15.2 8.78 9.73 10 5.9 10.6 10.2 11.5 8.01 9.36 8.73 8.18 9.62 6.82 8.22 11.6 9.46 9.47 4.93 8.73 10.3 10.6 10.3 10.2 10.8 8.5 7.88 11.3 4.96 10.5 9.52 9.47 8.22 8.94 9.09 9.02 8.7 10.3 9.34 10.2 10.8 10.4 11.8 6.27 5 10.7 9.33 11.1 0 6.93 4.89 9.86 6.96 9.89 6.06 10.8 6.97 4.39 9.57 7.92 4.78 8.42 9.83 7.11 8.09 10.8 9.81 11.6 4.36 10.1 9.8 9.02 9.51 9.99 8.71 10.7 2.07 8.98 6.59 7.42 11.5 10.6 10.4 2.79 10.6 10 9.62 11 10.5 9.14 2.88 9.35 9.1 9.33 10.4 9.69 9.69 11.2 9.23 3.46 10.1 8.21 2.9 11.8 10.5 11.6 5.24 9.69 9.62 8.33 10.9 6.17 11.3 3.73 9.29 3.34 8.01 7.28 9.69 11 6.47 8.59 8.8 10.6 4.12 7.85 9.17 9.3 9.39 5.83 1.24 8.51 6.67 9.83 7.1 9.17 10.8 10 2.97 7.97 8.65 10.2 9.71 10.6 7.89 10.9 9.83 11.2 10.8 12.7 6.84 9.9 8.11 10.6 9.4 9.67 6.74 12.3 9.93 3.2 8.68 0.93 9.59 8.49 10 5.51 1.9 5.06 11 9.9 7.47 10.3 9.59 11.5 12.4 9.46 6.65 9.4 9.57 10.8 10.3 8.82 10.1 8.88 10.9 10.6 11.2 4.89 8.59 7.2 9.44 9.7 11.8 10.2 9.51 10.6 9.7 10.6 9.22 8.73 5.02 9.35 7.26 10.1 7.68 12.9 11.2 9.17 9.64 8.04 8.16 10.4 6.03 7.16 12.1 7.99 11.5 1.5 5.06 7.94 10.2 8.42 4 6.11 9.24 11.6 10.1 5.9 8.8 8.29 7.07 9.05 2.59 7.84 8.55 2.47 6.31 10.2 9.45 8.33 7.26 12.2 10 8.28 2.88 4.16 9.97 9.38 0 4.63 9.54 9.04 8.45 10.8 9.14 10.5 5.6 9.6 5.65 9.85 7.14 6.81 9.7 11.3 11 8.61 10.8 6.24 7.86 8.13 9.37 8.97 10.1 9.71 6.11 8.38 8.91 8.58 8.69 7.09 8.38 9.43 3.92 5.94 11.5 10.1 2.47 9.94 9.67 7.51 9.06 6.59 10.3 9.14 9.52 10.1 5.9 5.57 8.61 11.7 8.58 4.91 10.3 11.6 9.8 0.93 9.92 0 11.2 4.43 1.9 6.32 9.32 8.9 11.6 8.85 8.35 10.2 9.82 9.05 10.9 10.3 13 10.1 9.43 8.5 9.24 1.81 5.19 7.16 1.5 3.4 8.45 8.17 11 11 10.1 4.19 7.5 6.17 9.43 9.48 9.07 0.54 8.67 9.23 8.35 9.42 6.85 6.58 2.47 8.74 11 11.4 5.48 8.67 12 7.44 8.03 10.5 9.5 11.7 7.73 8.75 4.89 8.26 9.96 5.87 13.6 8.8 3.58 11.3 8.16 5.33 5.36 8.11 3.78 8.88 11 2.35 9.57 10.5 9.47 10.3 9.54 10.5 10.3 9.64 7.1 8.76 6.28 4.89 8.79 9.6 5.06 10.2 10.2 8.67 9.08 10.3 11.7 10.2 9.61 8.62 9.41 1.9 7.43 9.78 9.34 9.28 8.33 5.06 9.46 1.24 12 9.49 4.12 10.3 9.91 9.86 9.03 4.96 10.4 8.99 8.75 10.6 9.8 6.73 7.12 8.24 10 6.88 11.2 11.5 9.93 9.12 9.46 8.77 8.85 9.82 9.75 6.31 12.1 8.03 8.2 9.3 10.9 10.4 7.21 6.49 8.01 4.8 8.95 2.22 8.63 7.36 6.96 9.46 9.27 8.44 6.56 10 8.06 4.08 10.8 9.56 8.78 9.25 11.1 7.87 9.98 8.34 9.66 8.71 7.84 8.15 6.83 8.96 7.91 9.42 1.9 7.9 11.3 8.46 4.57 9.58 9.81 8.91 4.43 5 8.13 11.7 10.5 7.33 5.68 8.08 7.59 9.29 6.44 9 9.61 8.96 9.99 9.64 8.46 10.5 6.99 9.79 10.9 11.4 8.7 11.5 9.87 4.89 2.07 6.41 9.17 9.38 4.19 10.2 1.9 2.59 5.63 8.32 11 9.75 5.34 2.97 11.9 10 10.7 7.07 9.15 11.6 11.1 1.24 10.5 11.3 11.8 2.47 7.99 3.83 5.69 8.4 6.8 10.3 7.88 5.86 9.32 8.66 9.35 10.9 8.84 9.82 8.72 8.16 10.5 12.2 10.6 10.7 6.94 8.98 10.9 11.2 10.2 9.18 9.56 11.7 9.73 10.4 5.93 10.8 8.72 10.8 10.9 7.39 10.6 6.47 10.2 11 10.2 9.58 9.27 6.44 9.99 9.87 10.6 8.87 7.15 9.58 7.27 5.62 7.42 7.73 6.67 9.62 9.18 8.66 8.11 6.48 10.5 10.3 10.9 8.58 2.59 9.46 8.34 9.8 10.6 10.1 8.87 8.26 10.9 4.85 10.3 2.07 2.35 11.2 8.29 10.3 11.9 9.89 10.6 6.22 1.71 8.89 9.52 9.8 11.9 9.19 11.7 8.47 10.9 8.32 0.93 8.83 10.6 7.96 11.7 12.4 8.42 4.51 7.7 9.39 11.3 11.2 11.5 5.15 7.7 5.89 7.77 7.52 7.46 10.6 6.32 9.8 10.1 11.7 13.5 10.2 11.4 9.3 11.3 9.95 10.6 11.4 9.35 9.12 9.49 10.5 9.33 0.54 10.6 9.12 9.24 10.7 6.79 10.7 10.1 9.82 6.71 3.87 8.63 10.8 9.33 6.74 10.2 8.81 11.3 9.05 11.8 11.5 10.3 8.8 10.4 9.84 9.31 10.7 9.58 6.61 0.54 11.8 11.9 11 0.54 10.2 10.4 9.3 0.54 9.63 8.18 9.66 11.7 4.57 3.92 10.7 10.4 11.2 8.31 7.79 0 0.54 0.54 14.5 12.8 6.32 2.47 11.3 9.74 0 8.01 11.2 2.59 11.6 9.69 5.79 4.73 10.9 9.3 8.7 11.2 9.93 8.26 4.43 12 9.57 10.5 8.8 7.25 7.6 7.8 9.57 10.1 0 8.46 10.8 8.24 6.31 0.54 9.59 6.76 10.2 9 10.4 15.8 7.69 10 2.07 8.01 3.05 0.54 9.6 0.93 9.86 10.8 9.58 4.23 9.55 4.98 10.2 11.1 9.7 9.61 12.1 3.78 0.54 7.13 11 0.54 7.09 8.45 10.4 8.26 9.03 10.4 0 8.77 3.92 0 8.8 12.1 5.73 10.5 11.1 10.9 4.08 9.44 7.72 10.4 8.23 9.49 7.34 8.21 9.2 8.66 3.13 9.84 8.75 11.7 10 10.8 8.79 10.3 8.95 11.3 8.3 8.81 10.2 10.3 0.93 8.01 10.6 6.64 6.14 7.3 4.51 9.13 11 2.07 6.91 7.45 9.15 1.5 10.3 9.76 9.74 10.9 7.77 8.86 1.5 10 10.9 5.87 10 2.07 10.4 2.47 6.73 9.01 7.21 1.24 10.7 9.66 8.14 9.41 14.9 14.4 14.1 12.8 10.4 10.5 13.7 7.24 14.1 11.1 13.9 13.7 12.8 13.9 13.5 12.3 13.2 10.4 14 2.22 12.9 11.9 9.42 13 12.9 12.3 13.1 13.2 13 12.3 13.1 12.9 12.6 12.7 11.7 12.9 13.3 12.2 8.63 8.27 14 6.67 14.1 13.8 12.9 9.58 8.36 12.4 12.5 12.8 13.8 12.2 14.7 3.35 2.69 4.8 8.63 8.39 13.2 2.88 3.96 14.5 9.49 10.5 10.6 9.42 8.96 12 13.7 13.1 12 14.1 13.3 12.5 13.9 11.6 13.2 13.1 12.6 6.66 14 13 13.5 11.9 13.4 13.6 13.1 8.15 6.75 13.1 10 12.1 8.76 9.75 12.3 10.2 9.83 7.65 10.4 2.22 7.33 10.5 10.6 6.84 6.57 10.6 10.1 9.87 5.65 3.05 4.85 6.53 9.05 11 8.44 4.49 9.53 1.71 12 7.44 8.4 12.6 11.7 4.16 10.4 1.71 3.2 10.7 10.3 10.5 9.23 8.72 8.51 11.5 10.1 9.52 12 8.74 8.99 11 9.67 9.49 3.96 10 9.7 9.67 12.9 5.34 8.22 7.89 8.46 5.82 3.78 5.58 8.08 14.3 10.1 1.9 3.87 7.33 9.34 6.79 6.8 9.18 8.89 11.7 0.93 6.13 10.5 5.24 3.05 12.8 6.44 9.16 3.27 8.85 7.51 4.16 4.19 2.59 0 8.34 0.93 6.49 6.14 3.4 2.88 12.3 2.97 11.7 7.38 3.05 11.7 12.4 11.7 11 9.39 10.1 5.12 9.32 9.23 11.9 9.28 9.83 9.29 9.17 9.78 8.61 8.3 6.34 9.35 10.6 9.94 9.86 8.07 7.99 11.5 5.53 3.97 9.47 9.86 11.7 11.2 8.23 7 5.65 3.76 8.91 7.33 7.92 8.2 7.68 8.14 7.87 9.89 7.48 8.99 7.72 7 10.1 5.17 12.4 1.24 9.98 5.98 7.45 7.36 8.57 8.29 1.71 11.6 7.54 6.28 7.78 7.69 8.82 11.3 9.44 9.35 1.5 11.4 4.65 6.34 8.43 8.51 0.54 8.47 11.5 10.8 6.61 10.8 7.55 1.24 7.31 6.95 6.25 9.42 11.1 8.02 4.43 6.84 4.49 7.81 9.34 10.1 12.2 10.2 10.9 9.94 8.56 9.54 11 5.65 11.7 4.52 4.39 8.29 0.93 9.68 5.83 9.75 2.79 9.5 3.83 13.7 9.15 3.34 8.03 6.65 8.1 11.4 6.39 9.82 9.15 9.13 10.7 7.59 5.26 8.28 7.52 6.16 9.56 12.2 2.79 7.48 7.6 10.2 9.39 11.5 10.1 10.5 8.09 8.11 9.01 11.4 6.41 9.41 9.45 9.68 9.69 4.26 9.09 10.1 9.51 8.61 2.22 0.54 6.2 0.54 11.8 1.71 11.3 11.7 4.43 8.65 6.82 10.5 10.4 7.96 8.63 8.56 8.12 10.8 2.69 6.52 6.18 1.71 12 6.02 2.79 11.4 9.95 8.96 10.5 10.2 8.53 2.35 11.1 7.65 6.21 9.2 9.91 9.19 9.84 8.27 8.37 7.54 5.48 1.5 4.3 4.91 10.7 10.5 9.35 6.29 7.91 9.3 3.2 2.88 10.1 8 8.92 1.9 3.46 9.45 7.46 5.06 7.81 5.99 7.62 3.34 1.5 0.54 7.47 8.25 1.71 11.1 10.4 4.16 9.89 9.64 6.71 7.27 6.29 4.96 7.88 4.78 6.91 10.1 8.37 6.95 0 4.85 6.37 7.41 6.07 9.34 9.15 5.39 7.86 7.65 9.57 12.2 8.57 9.88 9.4 8.94 10.1 11.9 9.83 8.77 9.33 8.75 4 6.3 0.54 3.52 1.9 8.52 4.82 5.7 12.3 3.68 4.6 4.16 9.47 0.93 5.14 8.65 0.54 10.4 2.07 4.33 0.56 9.17 9.72 5.88 2.07 11.4 3.82 1.71 7.36 2.97 12.2 9.81 7.01 6.64 3 2.35 1.9 11.1 8.1 6.17 5.04 4.33 1.24 10.9 3.63 7.75 2.79 4.91 7.3 8.2 10.4 0 9.74 8 0.93 4.09 9.62 3.46 6.23 2.22 11.5 3.96 10.2 4.61 7.06 9.35 0 2.47 8.42 10.6 9.07 5.89 9.72 0.54 5.38 3.73 2.07 4.16 3.27 12.4 4 5.15 7.16 8.97 9.56 12.8 5.12 1.24 8.13 11.8 3.05 0.54 11.4 10.2 9.28 10 10.6 9.08 8.73 3.73 7.76 11 10.7 7.8 12.5 9.82 9.47 9.38 8.36 11.3 9.14 8.13 9.83 8.88 9.6 12 9.19 9.95 8.9 9.34 11.4 7.63 9.71 9.51 10.1 9.34 7.03 10.5 6.19 1.71 10.1 12.4 8.11 7.17 9.4 7.58 8.27 2.47 10.8 12.9 8.73 5.52 10.3 10.6 6.44 8.36 8.25 4.46 10.6 9.58 10.4 8.89 5.51 9.49 8.37 6.43 9.25 1.71 10.4 9.7 10.1 11.2 9.11 10.3 8.7 11.5 11.7 10 7.21 7.79 8.06 8 8.8 7.17 8.01 4.35 7.16 4.6 8.02 8.17 9.67 5.39 10.1 3.92 5.68 6.1 9.24 9.7 9.85 8.08 7.88 8.69 9.03 5.28 3.34 9.9 7.64 9.14 6.94 5.62 9.33 5.31 9.71 1.24 9.72 8.67 9.2 8.64 9.83 11.3 8.78 9.4 9.69 7.77 8.68 9.33 9.69 9.76 2.88 8.11 12.8 9.48 9.48 8.57 5.26 7.55 5.49 11.8 6.06 9.34 5.41 4.3 11.3 6.28 10.9 8.36 10.3 5.55 8.13 6.39 8.39 5.58 8.31 4.36 4.23 9.56 8.79 9.61 9.67 9.6 8.67 9.12 3.73 9.92 10.8 7.68 9.24 10.3 3.37 11.1 9.87 11.9 10.9 12 3.46 10.7 6.84 10.6 14.3 7.94 11.7 8.98 11.3 9.66 5.41 4.23 9.13 8.23 11.1 8.87 7.69 9.52 9.43 7.6 7.93 11.3 9.63 7.03 4 3.68 5.77 0.93 7.16 0.93 7.85 0.93 4.46 5.79 7.45 1.71 0.54 3.58 6.34 6.78 2.47 6.4 1.71 10.1 9.71 2.69 6.77 2.79 0.54 0 8.13 13.2 9.72 7.97 10.4 3.58 7.25 5.6 7.02 1.24 10.4 5.48 6.73 2.35 1.71 8.42 3.2 4.78 5.57 10.5 7.33 12.4 10.1 10.7 1.71 2.59 1.24 8.49 9.47 3.4 5.75 0 7 7.98 2.22 7.31 2.07 9.43 2.88 2.22 9.22 4.78 5.9 5.98 8.01 5.38 0 8.28 9.51 10.3 10.7 4.78 11.1 7.12 7.48 11 9.25 8.73 0.54 4.08 6.87 9.09 9.27 10.9 12.5 5 3.87 8.18 8.81 11 2.88 10.8 11.6 6.39 7.56 10.1 11.2 9.6 11.1 6.94 8.52 10.6 10.4 9.07 8.41 10.7 9.52 9.07 9.09 8.44 8.04 3.78 10.6 6.92 10.8 9.98 9.72 9.32 6.1 9.61 8.15 4.94 3.73 3.87 8.27 10.6 10.7 11.4 10.3 9.71 8.24 8.93 8.4 11.2 2.98 9.83 9.74 10.1 8.35 8.04 10.5 11 11.2 9.21 7.42 6.61 8.26 7.8 9.32 7.73 8.15 5.58 7.7 10.8 11.5 9.67 8.32 10.3 9.55 9.55 9.49 8.94 10.6 10.2 9.32 8.5 8.58 11.4 13.4 9.48 9.87 11.6 11.3 9.74 9.48 2.07 11.9 7.42 14 9.47 12.6 10.3 12.5 9.76 11.3 10.4 10.3 10.1 10.5 4.98 10.4 1.71 3.46 9.5 11.3 9.23 11.2 10.6 7.39 10.7 7.43 9.71 9.6 15.9 8.33 10.7 8.45 2.59 9.51 0 10.7 7.52 10.2 14.5 9.53 9.7 12.8 2.59 6.88 14.1 8.33 8.45 9.82 8.03 1.9 10.4 6.85 10.5 10.9 10.3 9.32 11.6 11.8 8.92 10.2 7.39 10.9 11 9.54 9.09 12 9.25 9.76 10.6 9.81 11.3 11.7 12.4 11.3 10.8 11.4 6.06 7.64 0 10.7 9.5 12.9 9.9 5.42 12.4 1.24 12.1 10.7 12.2 6.64 8.9 11.3 2.59 2.97 4.26 0.93 1.9 2.22 2.22 4.11 12.4 2.73 0.93 1.24 5.15 11.7 11.7 11.6 9.76 2.88 5.04 10.2 8.17 8.08 8.65 9.79 6.41 2.79 6.8 10.1 9.86 2.69 3.27 8.2 5.23 10.6 9.91 9.71 10.8 10.5 9.97 8.46 8.28 9.71 9.9 13.6 2.35 9.84 10.2 11.4 7.09 11.5 8.92 9.59 7.56 12.2 9.57 9.38 7.31 10.9 11.1 7.64 11.3 9.76 3.2 9.07 3.83 2.97 5.99 11.7 5.12 9.03 0.54 2.88 0 12.2 9.02 4.26 12.2 7.39 9.56 9.07 8.47 7.29 12.6 6.47 9.85 11.4 7.94 9.84 8.77 9.24 8.28 7.35 9.35 8.17 5.15 10.8 12.8 11.5 10.7 12.5 8.93 8.07 10.6 1.71 1.71 8.6 10.4 8.39 10.8 8.73 11.1 8.12 11.2 5.94 6.5 7.85 8.66 10.1 8.75 11.6 2.22 5.34 7.09 8.92 1.24 0 10.6 4.34 10 11.6 7.46 10.2 9.58 6.57 9.08 10.7 9.12 10.4 3.58 12.4 8.87 8.24 9.85 9.35 9.96 0.54 12.6 9.9 7.07 11.8 1.5 0.93 10.7 5.77 9.83 5.66 10.7 10.4 8.31 5.48 12 11.1 8.3 8.96 6.25 4.33 9.97 14.7 5.48 10.1 9.44 0 9.15 9.14 0 9.51 3.68 8.74 5.31 7.2 8.92 9.07 11.7 10 8.19 10.5 5.42 11.3 3.4 11.1 5.36 10.8 10.8 9.47 7.82 8.76 4.04 12.2 10.5 0.54 12.8 9.96 8.38 9.87 3.73 12.7 0.93 9.88 13.5 10.6 9.22 9.91 6.27 2.47 8.92 3.78 10.6 8.15 4.08 12.7 11.7 10.2 10.5 7.18 10.5 12.1 12.6 14.7 6.07 10.4 11.3 8.09 9.65 11.1 1.5 9.64 8.7 10.1 8.04 2.59 13.6 12.1 7.8 8.71 10.5 9.86 15.2 12.1 7.03 10.3 9.99 10.8 9.75 8.61 10.1 10.1 7.68 9.88 14.3 11.4 9.21 10.6 3.52 0.54 11 10.6 10.3 11.6 10.4 11.7 10.4 4.33 1.9 0 0 11.3 4.04 14.4 9.82 11.3 10.9 6.47 1.71 8.33 11 8.63 9.84 9.96 9.55 11.3 2.88 7.98 10.2 8.26 11.1 0.54 14.5 13.3 11.4 9.35 12.4 12.8 10.9 9.95 11.3 7.62 16.1 0.67 14.2 8.59 9.78 14.1 8.48 8.56 8.14 8.43 8 8.43 15 1.24 12.1 10.5 10.7 8.05 0 7.97 2.47 2.88 8.72 7.44 8.95 8.04 2.59 2.28 10.7 10.2 10.7 1.24 10.3 1.9 9.6 11.9 9.21 8.67 5.12 9.88 9.29 10.5 10.7 11.8 9.05 7.34 8.32 5.08 7.64 8.46 10.4 7.21 4.04 2.59 3.34 8.42 8.9 9.16 8.76 4.19 4.73 5.02 6.26 7.62 2.07 8.4 3.55 4.12 10.1 10 9.31 4.43 8.76 2.79 1.5 7.45 11.7 6.49 7.15 5.61 6.79 7.38 6.65 2.22 8.99 2.35 8.31 7.01 7.44 4.36 5.08 8.59 5.65 1.5 13.4 3.2 6.58 1.5 5.45 0.54 4.16 3.13 7.52 3.34 9.87 3.13 1.71 9.87 4.54 8.96 4.26 5.29 5.39 5.44 0 3.05 4.65 5.6 6.59 4 0 4.08 7.7 0.93 7.16 4.23 4.87 0 7.16 11.5 8.8 2.22 9.25 4.68 5.33 10.5 5.93 6.57 2.79 9.2 10.5 2.59 0.54 4.78 10.2 6.68 7.91 2.07 6.64 0.54 8.28 8.06 6.97 12.4 6.69 8.67 6.65 8.43 7.54 7.59 2.69 9.83 2.47 10.3 3.83 12.7 4.91 13.8 15.4 12.7 0.54 9.74 10.3 10.3 8.12 11.2 12.6 9.82 8.56 9.91 10.9 10.1 10.2 1.24 10.8 10.6 11.3 9.34 10.8 9.07 10.7 9.83 11 7.07 8.32 5.33 2.47 9.44 4.33 9.84 4.68 8.75 8.99 9.44 11.4 7.79 6.93 9.22 10.5 9.52 10.1 10.6 8.33 1.9 11.1 0.54 11.9 11.2 12.1 10.7 10.3 10.8 9.04 9.55 11 9.56 2.97 10.4 11.7 9.63 9.27 10.4 10.7 7.47 10 9.45 14.2 12 12.5 13 10.8 10.7 9.57 15.4 11.2 8.11 0.54 8.7 10.8 14.3 16.2 6.25 4.69 10.1 6.5 6.85 7.83 7.12 8.19 0.93 5.33 9.54 14.5 11.5 7.57 10.9 12.4 9.61 9.6 7.4 5.41 8.76 9.24 10 8.91 6.82 1.5 3.2 6.26 4.8 2.69 2.69 1.5 3.05 3.34 5.39 1.5 3.27 9.55 7.78 6.93 11.6 3.52 3.05 13.6 3.83 8 10.2 5.6 10.7 10.8 11.2 9.38 4.19 7.49 6.96 9.12 12.4 8.18 10.8 10.2 12.5 9.26 13.5 11.8 12.2 13.3 6.74 12.1 12.1 6.52 13.4 8.66 8.8 9.48 7.05 8.87 9.23 8.64 8.74 6.59 12.7 8.05 9.55 7.42 7.2 7.96 7.26 7.47 6.79 6.78 7.81 9.96 9.54 7.67 10.8 7.8 8.13 6.23 9.44 10.5 10.8 6.9 9.5 9.07 8.02 8.14 8.79 8.08 8.09 7.09 11.7 5.15 8.16 6.44 7.77 7.7 8.86 8.05 9.61 6.6 3.34 9.75 4.33 6.36 6.63 8.64 0 4.68 6.01 6.36 5.61 11.7 5.97 2.22 4.39 4.04 0.93 1.5 4.57 9 8.59 7.07 8.42 8.24 7.81 7.74 6.13 6.89 8.5 7.01 6.33 9.03 8.71 9.95 8.91 10.5 10.6 10.3 8.86 13.7 7.28 7.47 1.24 10.7 5.56 10.4 7.9 8.02 4.68 6.22 4.51 7.2 8.12 7.75 8.78 1.5 8.66 10.4 8.94 7.39 8.74 9.18 10.1 7.09 8.02 8.37 8.42 11.2 8.54 7.66 8.32 6.24 5.76 11.7 9.81 6.87 7.98 6.52 8.31 5.24 8.1 7.27 7.23 6.99 7.53 8.16 8.89 2.22 1.24 7.19 6.64 8.17 6.71 11.6 10.8 9.53 11.7 9.54 11.5 3.78 11.9 4.69 13.7 8.54 10.2 5.64 7.63 11 10.8 7.88 9.21 10.2 9.7 11.5 11.9 4.85 5.29 10.3 11.4 9.63 5.29 8.45 9.12 10.2 8.75 9.62 9.21 11.1 12.3 9.03 8.39 9.37 3.46 9.6 9.61 6.52 6.05 7.77 9.43 9.33 3.96 9.89 1.5 4.43 6.01 9.4 4.04 11.3 10.7 8.28 10.2 8.37 6.76 8.54 9.03 9.98 0 9.1 8.44 8.9 4.54 8.23 10.6 7.74 0.54 14.7 10.3 7.57 9.68 8.51 10.1 8.84 9.29 10.2 6.11 9.78 10.6 5.54 9.53 9.4 10.3 12.5 7.87 9.13 7.56 8.45 8.19 10.5 9.69 11.1 8.14 7.72 7.71 11.6 6.71 5.08 9.31 7.47 9.03 8.49 9.14 11.3 10.4 9.23 6.99 9.9 8.45 7.04 3.96 4.36 8.36 8.24 8.99 6.94 10.3 9.9 10.5 11.1 8.21 7.2 8.53 7.44 11.9 11 5.53 9.57 9.77 11.8 8.39 8.74 6.16 6.04 9.67 4.43 6.28 7.24 9.15 6.27 8.66 9.97 8.05 12.1 9.1 7.31 0 5.73 7.7 12 6.51 9.96 6.35 3.83 8.93 8.42 8.31 7.51 8.84 8.98 9.8 8.31 8.16 0.93 10.9 12.4 11 9.82 11.3 8.58 8.63 7.2 1.29 9.92 0.54 9.07 0.93 10.2 6.89 10.4 10.8 6.41 0.93 6.34 0.93 7.04 4.43 6.08 9.23 1.24 2.59 6.55 10.2 9.11 8.23 5.06 9.89 7.81 9.65 4.75 2.79 5.66 1.71 11.2 8.66 7.94 2.59 8.86 11.1 8.16 7.98 8.03 9.95 8.98 8.45 7.47 9.56 10.6 9.3 10.1 9.6 9.95 9.26 8.16 6.68 10.2 10.7 9.71 8.65 7.93 5 6.59 9.84 8.09 8.99 7.42 7.09 8.15 8.39 12.3 9.72 7.7 6.37 8.42 5.61 8.57 7.6 9.1 5.57 9.38 8.24 6.81 8.45 7.47 8.39 8.79 8.55 9.31 8.96 1.5 8.73 9.99 8.64 8.45 8.42 9.19 9.53 10.4 10.4 8.21 8.64 8.66 9.53 10.8 7.17 7.02 9.68 10.7 9.32 5.63 9.07 5.84 9.11 9.21 9.24 8.55 8.87 8.42 8.52 9.25 8.81 6.77 7.77 8.11 10.6 11.8 7.96 8.66 9.42 8.03 9.5 7.69 7.51 7.51 10.2 8.09 7.28 8.68 8.97 7.98 11.1 8.89 10.2 8.49 6.76 7.7 10.3 10.2 11.4 9.28 9.3 1.5 7.09 10.4 7.87 9.63 7.86 8.16 6.9 8.18 3.96 6.91 9.78 7.48 8.73 7.06 4.1 11.2 7.76 7.21 10.4 0.93 9.93 3.58 8.08 9.46 7.99 10.8 3.68 8.53 7.18 6.41 8.17 10.9 10.4 9.22 8.15 10.9 6.45 6.44 5.91 9.79 8.55 7.28 9.16 6.79 2.47 8.28 7.84 8.66 4.36 10.9 9.63 9.3 10.8 9.78 9.44 7.6 8.04 7.71 6.21 0 8.76 5.29 7.59 9.17 6.81 10.7 11.5 9.84 10.9 7.81 3.2 10 7.29 7.53 9.98 0.54 8.1 6.48 6.11 3.83 7.93 8.45 7.76 7.27 9.86 7.42 10.7 6.61 9.77 1.24 7.74 8.39 9.7 5.17 6.35 5.88 5.89 7.74 7.29 6.21 8.01 8.26 9.7 4.8 0.93 5.21 7.06 1.9 8.18 4.65 6.37 8.72 7.03 2.97 5